diff --git a/importers/ISCNdefuser.py b/bin/ISCNdefuser.py similarity index 100% rename from importers/ISCNdefuser.py rename to bin/ISCNdefuser.py diff --git a/importers/ISCNsegmenter.py b/bin/ISCNsegmenter.py similarity index 100% rename from importers/ISCNsegmenter.py rename to bin/ISCNsegmenter.py diff --git a/housekeepers/examplezSampler.py b/bin/examplezSampler.py similarity index 100% rename from housekeepers/examplezSampler.py rename to bin/examplezSampler.py diff --git a/housekeepers/examplezUpdater.py b/bin/examplezUpdater.py similarity index 100% rename from housekeepers/examplezUpdater.py rename to bin/examplezUpdater.py diff --git a/housekeepers/geosoftRetriever.py b/bin/geosoftRetriever.py similarity index 100% rename from housekeepers/geosoftRetriever.py rename to bin/geosoftRetriever.py diff --git a/housekeepers/publicationsInserter.py b/bin/publicationsInserter.py similarity index 100% rename from housekeepers/publicationsInserter.py rename to bin/publicationsInserter.py diff --git a/housekeepers/templateTablesCreator.py b/bin/templateTablesCreator.py similarity index 100% rename from housekeepers/templateTablesCreator.py rename to bin/templateTablesCreator.py diff --git a/importers/tmpBiosamplesTCGAupdater.py b/bin/tmpBiosamplesTCGAupdater.py similarity index 100% rename from importers/tmpBiosamplesTCGAupdater.py rename to bin/tmpBiosamplesTCGAupdater.py diff --git "a/bin/\357\243\277ontologyTermLister.py" "b/bin/\357\243\277ontologyTermLister.py" new file mode 100644 index 00000000..0b4541d1 --- /dev/null +++ "b/bin/\357\243\277ontologyTermLister.py" @@ -0,0 +1,77 @@ +#!/usr/local/bin/python3 + +import re, json, yaml +from os import path, environ, pardir +import sys, datetime +import argparse + +################################################################################ +################################################################################ +################################################################################ + +""" +./ontologyTermLister.py -c rsrc/NCITstage/NCITstage-codes.tsv -l rsrc/NCITstage/NCITstage-labels.tsv -o rsrc/NCITstage/numbered_hierarchies.tsv +""" + +################################################################################ +################################################################################ +################################################################################ + +def _get_args(): + + parser = argparse.ArgumentParser() + + parser.add_argument("-c", "--codefile", help="") + parser.add_argument("-l", "--labelfile",help="") + parser.add_argument("-o", "--hierarchyfile", help="") + + return parser.parse_args() + +################################################################################ + +def main(): + + args = _get_args() + + codes_f = args.codefile + labels_f = args.labelfile + hierarchy_f = args.hierarchyfile + + f = open(labels_f, 'r+') + labels = [line for line in f.readlines()] + f.close() + f = open(codes_f, 'r+') + codes = [line for line in f.readlines()] + f.close() + + n_h_f = open( hierarchy_f, 'w' ) + + i = 0 + for c_l in codes: + c_l = c_l.rstrip() + if not "NCIT" in c_l: + c_l = "NCIT:" + c_l + else: + c_l = c_l.replace("obo:NCIT", "NCIT") + c_l = c_l.replace("_", ":") + tab_n = c_l.count("\t") + c = re.sub(r"\s+", "", c_l) + l = labels[ i ].strip() + + # c_l = c_l.replace("NCIT", l+" (NCIT") + ")" + # h_f.write( c_l + "\n") + # l_d.update( { c: l } ) + + i += 1 + + n_h_f.write( "{}\t{}\t{}\t{}\n".format(c, l, tab_n, i) ) + + n_h_f.close() + +################################################################################ +################################################################################ +################################################################################ + + +if __name__ == '__main__': + main() diff --git "a/bin/\357\243\277ontologymapsCreator.py" "b/bin/\357\243\277ontologymapsCreator.py" new file mode 100644 index 00000000..266fcfc2 --- /dev/null +++ "b/bin/\357\243\277ontologymapsCreator.py" @@ -0,0 +1,282 @@ +#!/usr/local/bin/python3 + +import re, json, yaml +from os import path, environ, pardir +import sys, datetime +from pymongo import MongoClient +from progress.bar import Bar +from pyexcel import get_sheet + +# bycon is supposed to be in the same parent directory +dir_path = path.dirname( path.abspath(__file__) ) +pkg_path = path.join( dir_path, pardir ) +parent_path = path.join( pkg_path, pardir ) +sys.path.append( parent_path ) + +from bycon import * +from byconeer import * + +""" + +## `ontologymapsCreator` + +""" + +################################################################################ +################################################################################ +################################################################################ + +def main(): + + ontologymaps_creator() + +################################################################################ + +def ontologymaps_creator(): + + initialize_bycon_service(byc) + run_beacon_init_stack(byc) + + if len(byc["dataset_ids"]) > 1: + print("Please give only one dataset using -d") + exit() + + ds_id = byc["dataset_ids"][0] + print("=> Using data values from {}".format(ds_id)) + + execute_bycon_queries( ds_id, byc ) + ds_results = byc["dataset_results"][ds_id] + + mongo_client = MongoClient( ) + data_db = mongo_client[ ds_id ] + bios_coll = data_db[ "biosamples" ] + + if not "biosamples._id" in ds_results.keys(): + bios_ids = bios_coll.distinct("_id", {}) + print("¡¡¡ Using all {} biosamples from {} !!!".format(len(bios_ids), ds_id)) + else: + bios_ids = ds_results["biosamples._id"]["target_values"] + + no = len(bios_ids) + + o_m_all = { } + + for mt, mv in byc["service_config"]["map_types"].items(): + + o_m = { } + + o_l_max = len(mv["ontology_types"]) + + if not byc["test_mode"]: + bar = Bar("Analyzing samples", max = no, suffix="%(percent)d%%"+" of "+str(no) ) + + for bios__id in bios_ids: + + s = bios_coll.find_one({"_id": bios__id}) + o_l_c = 0 + k_l = [ ] + o_l = [ ] + d = "" + if "description" in s: + d = s["description"].strip() + + o_t_l = len(mv["ontology_types"]) + + for o_t in mv["ontology_types"]: + + data_key = byc["filter_definitions"][ o_t ]["db_key"] + parent_key = re.sub(".id", "", data_key) + data_re = re.compile( byc["filter_definitions"][ o_t ]["pattern"] ) + + try: + o_p = s[ parent_key ] + except: + continue + + if not o_p: + continue + + if not "id" in o_p: + continue + + if not data_re.match( o_p["id"] ): + continue + + if not "label" in o_p: + o_p.update({"label":""}) + + k_l.append( o_p["id"] ) + o_l.append( o_p ) + + if len(k_l) < o_t_l: + continue + k = "::".join(k_l) + + if k in o_m: + if len(o_m[k]["examples"]) < byc["service_config"]["example_length"]: + o_m[k]["examples"].add(d) + o_m_all[k]["examples"].add(d) + + else: + if byc["test_mode"]: + print(k) + o_m[k] = { + "id": k, + "examples": set([d]), + "code_group": o_l, + "note": ds_id + } + + o_m_all[k] = o_m[k].copy() + o_m_all[k].pop("note") + + if byc["args"].filters: + o_m[k].update({"note": byc["args"].filters}) + if "TCGA" in byc["args"].filters: + e_r_s = s.get("external_references", []) + for e_r in e_r_s: + if "pgx:TCGA" in e_r["id"]: + if "project" in e_r["label"]: + n = re.sub("pgx:", "", e_r["id"]) + o_m[k].update({"note":n}) + + if not byc["test_mode"]: + bar.next() + if not byc["test_mode"]: + bar.finish() + + mt_l = mt + + if byc["args"].filters: + mt_l = "{}-{}".format(mt, byc["args"].filters) + mt_l = re.sub(":", "", mt_l) + + print("{} code combinations for {}".format(len(o_m.keys()), mt)) + _export_currentmaps(dir_path, mt_l, o_m) + + def_m = _read_mapping_defaults(dir_path, mt, **byc) + + for def_k in def_m: + if not def_k in o_m.keys(): + o_m.update( { def_k: def_m[def_k] } ) + print("Now {} code combinations after defaults ...".format(len(o_m.keys()))) + _export_ontologymaps(dir_path, mt_l, o_m) + + if not byc["test_mode"]: + + for om_k, om_v in o_m_all.items(): + o_m_all[om_k].update({"examples": list(om_v["examples"]) }) + + + if not byc["args"].filters: + om_coll = mongo_client["progenetix"]["ontologymaps"] + om_coll.drop() + om_coll.insert_many( o_m_all.values() ) + print("==> Rewrote {}.{} collection".format(byc["config"]["services_db"], byc["config"]["ontologymaps_coll"])) + +################################################################################ +################################################################################ +################################################################################ + +def _export_currentmaps(dir_path, map_type, o_m): + + f_p = path.join(dir_path, "exports", "ontologymaps", "{}.tsv".format(map_type)) + f = open(f_p, "w") + for o_k in sorted(o_m.keys()): + l = [o_m[o_k]["note"]] + for g_m in o_m[o_k]["code_group"]: + l.append(str(g_m["id"])) + l.append(str(g_m["label"])) + l.append(str(sorted(o_m[o_k]["examples"])[0])) + f.write("\t".join(l)+"\n") + f.close() + +################################################################################ + +def _export_ontologymaps(dir_path, map_type, o_m): + for k, content in o_m.items(): + if "examples" in content: + content["examples"] = sorted(content["examples"]) + export = [ ] + for o_k in sorted(o_m.keys()): + export.append(o_m[o_k]) + yaml.dump(export, open(path.join(dir_path, "exports", "ontologymaps", "{}.yaml".format(map_type)),"w")) + +################################################################################ +################################################################################ +################################################################################ + +def _read_mapping_defaults(dir_path, map_type, **byc): + + if not "mappingfile" in byc["service_config"]["map_types"][ map_type ]: + return {} + + mf = path.join( dir_path, *byc["service_config"]["map_types"][ map_type ]["mappingfile"] ) + o_m_r = { } + equiv_keys = [ ] + pre_fs = byc["service_config"]["map_types"][ map_type ]["ontology_types"] + o_l_max = len(pre_fs) + + for o_t in pre_fs: + equiv_keys.append( o_t+"::id" ) + equiv_keys.append( o_t+"::label" ) + + sheet_name = "__".join(pre_fs)+"__matched" + + try: + table = get_sheet(file_name=mf, sheet_name=sheet_name) + except Exception as e: + print(e) + print("No matching mapping file could be found!") + exit() + + header = table[0] + col_inds = { } + hi = 0 + fi = 0 + for col_name in header: + if col_name in equiv_keys: + col_inds[ col_name ] = hi + + hi += 1 + + for i in range(1, len(table)): + id_s = [ ] + bioc_s = [ ] + bioc = { } + col_match_count = 0 + for col_name in equiv_keys: + try: + cell_val = table[ i, col_inds[ col_name ] ] + if "id" in col_name: + o_t, code = re.split("[:-]", cell_val) + data_re = re.compile( byc["filter_definitions"][ o_t ]["pattern"] ) + if data_re.match( cell_val ): + bioc = { "id": cell_val } + id_s.append( cell_val ) + else: + bioc.update( { "label": cell_val } ) + bioc_s.append(bioc) + if len(id_s) == o_l_max: + o_k = "::".join(id_s) + o_m_r.update( + { o_k: + { + "id": o_k, + "code_group": bioc_s + } + } + ) + fi += 1 + except: + continue + + print("default mappings: "+str(fi)) + return o_m_r + +################################################################################ +################################################################################ +################################################################################ + +if __name__ == "__main__": + main() diff --git a/housekeepers/analysesStatusmapsRefresher.py b/housekeepers/analysesStatusmapsRefresher.py deleted file mode 100755 index 784d094b..00000000 --- a/housekeepers/analysesStatusmapsRefresher.py +++ /dev/null @@ -1,135 +0,0 @@ -#!/usr/bin/env python3 -from os import environ -import sys, datetime -from isodate import date_isoformat -from pymongo import MongoClient -from progress.bar import Bar - -from bycon import * -from bycon.services import collation_utils, file_utils, interval_utils, service_helpers - -loc_path = path.dirname( path.abspath(__file__) ) -log_path = path.join( loc_path, pardir, "logs" ) - -""" - -## `analysesStatusmapsRefresher` - -""" - -################################################################################ -""" -* `bin/analysesStatusmapsRefresher.py -d progenetix -f "icdom-81703"` -* `bin/analysesStatusmapsRefresher.py` - - default; new statusmaps for all `progenetix` analyses -""" -################################################################################ - -def main(): - analyses_refresher() - -################################################################################ - -def analyses_refresher(): - initialize_bycon_service() - interval_utils.generate_genome_bins() - service_helpers.ask_limit_reset() - - if len(BYC["BYC_DATASET_IDS"]) > 1: - print("Please give only one dataset using -d") - exit() - - ds_id = BYC["BYC_DATASET_IDS"][0] - collation_utils.set_collation_types() - print(f'=> Using data values from {ds_id} for {BYC.get("genomic_interval_count", 0)} intervals...') - - limit = BYC_PARS.get("limit", 0) - data_client = MongoClient(host=DB_MONGOHOST) - data_db = data_client[ ds_id ] - cs_coll = data_db[ "analyses" ] - v_coll = data_db[ "variants" ] - - record_queries = ByconQuery().recordsQuery() - ds_results = {} - if len(record_queries["entities"].keys()) > 0: - DR = ByconDatasetResults(ds_id, record_queries) - ds_results = DR.retrieveResults() - - if not ds_results.get("analyses.id"): - print(f'... collecting analysis id values from {ds_id} ...') - cs_ids = [] - c_i = 0 - for ana in cs_coll.find( {} ): - c_i += 1 - cs_ids.append(ana["id"]) - if limit > 0: - if limit == c_i: - break - cs_no = len(cs_ids) - print(f'¡¡¡ Using {cs_no} analyses from {ds_id} !!!') - else: - cs_ids = ds_results["analyses.id"]["target_values"] - cs_no = len(cs_ids) - - print(f'Re-generating statusmaps with {BYC["genomic_interval_count"]} intervals for {cs_no} analyses...') - bar = Bar("{} analyses".format(ds_id), max = cs_no, suffix='%(percent)d%%'+" of "+str(cs_no) ) - counter = 0 - updated = 0 - - proceed = input(f'Do you want to continue to update database **{ds_id}**?\n(Y|n): ') - if "n" in proceed.lower(): - exit() - - no_cnv_type = 0 - for ana_id in cs_ids: - - ana = cs_coll.find_one( { "id": ana_id } ) - _id = ana.get("_id") - counter += 1 - - bar.next() - - if "SNV" in ana.get("variant_class", "CNV"): - no_cnv_type += 1 - continue - - # only the defined parameters will be overwritten - cs_update_obj = { "info": ana.get("info", {}) } - cs_update_obj["info"].pop("statusmaps", None) - cs_update_obj["info"].pop("cnvstatistics", None) - - cs_vars = v_coll.find({ "analysis_id": ana_id }) - maps, cs_cnv_stats, cs_chro_stats = interval_utils.interval_cnv_arrays(cs_vars) - - cs_update_obj.update({"cnv_statusmaps": maps}) - cs_update_obj.update({"cnv_stats": cs_cnv_stats}) - cs_update_obj.update({"cnv_chro_stats": cs_chro_stats}) - cs_update_obj.update({ "updated": datetime.datetime.now().isoformat() }) - - if BYC.get("TEST_MODE", False) is True: - prjsonnice(cs_chro_stats) - else: - cs_coll.update_one( { "_id": _id }, { '$set': cs_update_obj } ) - updated += 1 - - #################################################################### - #################################################################### - #################################################################### - - bar.finish() - - print(f"{counter} analyses were processed") - print(f"{no_cnv_type} analyses were not from CNV calling") - print(f'{updated} analyses were updated for\n `cnv_statusmaps`\n `cnv_stats`\n `cnv_chro_stats`\nusing {BYC["genomic_interval_count"]} bins ({BYC_PARS.get("genome_binning", "")})') - - log = BYC.get("WARNINGS", []) - file_utils.write_log(log, path.join( log_path, "analyses_statusmaps" )) - - -################################################################################ -################################################################################ -################################################################################ - - -if __name__ == '__main__': - main() diff --git a/housekeepers/collationsCreator.py b/housekeepers/collationsCreator.py deleted file mode 100755 index 43998198..00000000 --- a/housekeepers/collationsCreator.py +++ /dev/null @@ -1,372 +0,0 @@ -#!/usr/bin/env python3 - -import datetime, json, re, sys, yaml -from os import path, environ, pardir -from pymongo import MongoClient -from progress.bar import Bar - -from bycon import * -from bycon.services import collation_utils - -dir_path = path.dirname( path.abspath(__file__) ) -pkg_path = path.join( dir_path, pardir ) - - -""" -## `collationsCreator` - -""" - -################################################################################ -################################################################################ -################################################################################ - -def main(): - collations_creator() - -################################################################################ - -def collations_creator(): - initialize_bycon_service() - - if len(BYC["BYC_DATASET_IDS"]) > 1: - print("Please give only one dataset using -d") - exit() - ds_id = BYC["BYC_DATASET_IDS"][0] - - print(f'Creating collations for {ds_id}') - - collation_utils.set_collation_types() - f_d_s = BYC.get("filter_definitions", {}) - - for coll_type, coll_defs in f_d_s.items(): - collationed = coll_defs.get("collationed") - if not collationed: - continue - pre_h_f = path.join( pkg_path, "rsrc", "classificationTrees", coll_type, "numbered_hierarchies.tsv" ) - collection = coll_defs["scope"] - db_key = coll_defs["db_key"] - - if "pubmed" in coll_type: - hier = _make_dummy_publication_hierarchy() - elif path.exists( pre_h_f ): - print( "Creating hierarchy for " + coll_type) - hier = get_prefix_hierarchy(ds_id, coll_type, pre_h_f) - else: - # create /retrieve hierarchy tree; method to be developed - print( "Creating dummy hierarchy for " + coll_type) - hier = _get_dummy_hierarchy(ds_id, coll_type, coll_defs) - - coll_client = MongoClient(host=DB_MONGOHOST) - coll_coll = coll_client[ ds_id ]["collations"] - - data_client = MongoClient(host=DB_MONGOHOST) - data_db = data_client[ ds_id ] - data_coll = data_db[ collection ] - - onto_ids = _get_ids_for_prefix( data_coll, coll_defs ) - onto_keys = list( set( onto_ids ) & hier.keys() ) - - # get the set of all parents for sample codes - onto_keys = set() - for o_id in onto_ids: - if o_id in hier.keys(): - onto_keys.update( hier[ o_id ][ "parent_terms" ] ) - - sel_hiers = [ ] - no = len(hier.keys()) - matched = 0 - if not BYC["TEST_MODE"]: - bar = Bar("Writing "+coll_type, max = no, suffix='%(percent)d%%'+" of "+str(no) ) - for count, code in enumerate(hier.keys(), start=1): - if not BYC["TEST_MODE"]: - bar.next() - children = list(set(hier[ code ]["child_terms"]) & onto_keys) - hier[ code ].update( {"child_terms": children}) - if len( children ) < 1: - if BYC["TEST_MODE"]: - print(code+" w/o children") - continue - code_no = data_coll.count_documents({db_key: code}) - if code_no < 1: - code_no = 0 - if len( children ) < 2: - child_no = code_no - else: - child_no = data_coll.count_documents( { db_key: { "$in": children } } ) - if child_no > 0: - sub_id = code - update_obj = hier[code].copy() - update_obj.update({ - "id": sub_id, - "ft_type": coll_defs.get("ft_type", "ontologyTerm"), - "name": coll_defs.get("name", ""), - "collation_type": coll_type, - "reference": "https://progenetix.org/services/ids/"+code, - "namespace_prefix": coll_defs.get("namespace_prefix", ""), - "scope": coll_defs.get("scope", ""), - "entity": coll_defs.get("entity", ""), - "code_matches": code_no, - "code": code, - "count": child_no, - "dataset_id": ds_id, - "updated": datetime.datetime.now().isoformat(), - "db_key": db_key - }) - if "reference" in coll_defs: - url = coll_defs["reference"].get("root", "https://progenetix.org/services/ids/") - r = coll_defs["reference"].get("replace", ["___nothing___", ""]) - ref = url+re.sub(r[0], r[1], code) - update_obj.update({"reference": ref }) - matched += 1 - if not BYC["TEST_MODE"]: - sel_hiers.append( update_obj ) - else: - print(f'{sub_id}:\t{code_no} ({child_no} deep) samples - {count} / {no} {coll_type}') - # UPDATE - if not BYC["TEST_MODE"]: - bar.finish() - print("==> Updating database ...") - if matched > 0: - coll_coll.delete_many( { "collation_type": coll_type } ) - coll_coll.insert_many( sel_hiers ) - - print(f'===> Found {matched} of {no} {coll_type} codes & added them to {ds_id}.collations <===') - - -################################################################################ - -def get_prefix_hierarchy( ds_id, coll_type, pre_h_f): - f_d_s = BYC.get("filter_definitions", {}) - - if not (coll_defs := f_d_s.get(coll_type)): - print(f'¡¡¡ missing {coll_type} !!!') - return - - hier = collation_utils.hierarchy_from_file(ds_id, coll_type, pre_h_f) - no = len(hier.keys()) - - # now adding terms missing from the tree ################################### - print("Looking for missing {} codes in {}.{} ...".format(coll_type, ds_id, coll_defs["scope"])) - data_client = MongoClient(host=DB_MONGOHOST) - data_db = data_client[ ds_id ] - data_coll = data_db[coll_defs["scope"]] - - db_key = coll_defs.get("db_key", "") - onto_ids = _get_ids_for_prefix( data_coll, coll_defs ) - - added_no = 0 - - if coll_type == "NCIT": - added_no += 1 - no += 1 - hier.update( { - "NCIT:C000000": { - "id": "NCIT:C000000", - "label": "Unplaced Entities", - "ft_type": "ontologyTerm", - "name": "NCI Thesaurus OBO Edition", - "collation_type": coll_type, - "namespace_prefix": coll_defs.get("namespace_prefix", ""), - "scope": coll_defs.get("scope", ""), - "entity": coll_defs.get("entity", ""), - "db_key": coll_defs.get("db_key", ""), - "hierarchy_paths": [ { "order": no, "depth": 1, "path": [ "NCIT:C3262", "NCIT:C000000" ] } ] - } - } ) - - for o in onto_ids: - if o in hier.keys(): - continue - added_no += 1 - no += 1 - l = _get_label_for_code(data_coll, coll_defs, o) - if coll_type == "NCIT": - hier.update( { - o: { "id": o, "label": l, "hierarchy_paths": - [ { "order": int(no), "depth": 3, "path": [ "NCIT:C3262", "NCIT:C000000", o ] } ] - } - } - ) - else: - o_p = { "order": int(no), "depth": 0, "path": [ o ] } - hier.update( { o: { "id": o, "label": l, "hierarchy_paths": [ o_p ] } } ) - print("Added:\t{}\t{}".format(o, l)) - if added_no > 0: - print("===> Added {} {} codes from {}.{} <===".format(added_no, coll_type, ds_id, coll_defs["scope"] ) ) - - #--------------------------------------------------------------------------# - - no = len(hier) - bar = Bar(" parsing parents ", max = no, suffix='%(percent)d%%'+" of "+str(no) ) - for c, h in hier.items(): - bar.next() - all_parents = { } - for h_p in h["hierarchy_paths"]: - for parent in h_p["path"]: - all_parents.update( { parent: 1 } ) - hier[ c ].update( { "parent_terms": list(all_parents.keys()) } ) - - bar.finish() - - #--------------------------------------------------------------------------# - - bar = Bar(" parsing children ", max = no, suffix='%(percent)d%%'+" of "+str(no) ) - for c, h in hier.items(): - bar.next() - all_children = set() - for c_2, h_2 in hier.items(): - if c in h_2["parent_terms"]: - all_children.add( c_2 ) - hier[c].update({"child_terms": list(all_children)}) - bar.finish() - - return hier - -################################################################################ - -def _make_dummy_publication_hierarchy(): - f_d_s = BYC.get("filter_definitions", {}) - coll_type = "pubmed" - coll_defs = f_d_s[coll_type] - data_db = "progenetix" - data_coll = MongoClient(host=DB_MONGOHOST)[data_db]["publications"] - query = { "id": { "$regex": r'^PMID\:\d+?$' } } - no = data_coll.count_documents( query ) - bar = Bar("Publications...", max = no, suffix='%(percent)d%%'+" of "+str(no) ) - - hier = {} - - for order, pub in enumerate( data_coll.find( query, { "_id": 0 } ) ): - code = pub["id"] - bar.next() - hier.update( { - code: { - "id": code, - "label": pub["label"], - "ft_type": "ontologyTerm", - "name": "NCBI PubMed", - "collation_type": coll_type, - "namespace_prefix": coll_defs.get("namespace_prefix", ""), - "scope": coll_defs.get("scope", ""), - "entity": coll_defs.get("entity", ""), - "db_key": coll_defs.get("db_key", ""), - "updated": datetime.datetime.now().isoformat(), - "hierarchy_paths": [ { "order": int(order), "depth": 0, "path": [ code ] } ], - "parent_terms": [ code ], - "child_terms": [ code ] - } - } ) - bar.finish() - return hier - -################################################################################ - -def _get_dummy_hierarchy(ds_id, coll_type, coll_defs): - data_client = MongoClient(host=DB_MONGOHOST) - data_db = data_client[ ds_id ] - data_coll = data_db[ coll_defs["scope"] ] - data_pat = coll_defs["pattern"] - db_key = coll_defs["db_key"] - - pre_ids = _get_ids_for_prefix(data_coll, coll_defs) - hier = { } - no = len(pre_ids) - bar = Bar(coll_type, max = no, suffix='%(percent)d%%'+" of "+str(no) ) - - for order, c in enumerate(sorted(pre_ids), start=1): - bar.next() - hier.update( { c: _get_hierarchy_item( data_coll, coll_defs, coll_type, c, order, 0, [ c ] ) } ) - - bar.finish() - return hier - - -################################################################################ - -def _get_hierarchy_item(data_coll, coll_defs, coll_type, code, order, depth, path): - - return { - "id": code, - "label": _get_label_for_code(data_coll, coll_defs, code), - "ft_type": coll_defs.get("ft_type", ""), - "collation_type": coll_type, - "namespace_prefix": coll_defs.get("namespace_prefix", ""), - "scope": coll_defs.get("scope", ""), - "entity": coll_defs.get("entity", ""), - "db_key": coll_defs.get("db_key", ""), - "updated": datetime.datetime.now().isoformat(), - "hierarchy_paths": [ { "order": int(order), "depth": int(depth), "path": list(path) } ], - "parent_terms": list(path), - "child_terms": [ code ] - } - -################################################################################ - -def _get_ids_for_prefix(data_coll, coll_defs): - - db_key = coll_defs["db_key"] - pre_re = re.compile( coll_defs["pattern"] ) - - prdbug(f'_get_ids_for_prefix ... : "{db_key}"" - pattern {pre_re}') - pre_ids = data_coll.distinct( db_key, { db_key: { "$regex": pre_re } } ) - pre_ids = list(filter(lambda d: pre_re.match(d), pre_ids)) - prdbug(f'_get_ids_for_prefix ... : found {len(pre_ids)}') - - return pre_ids - -################################################################################ - -def _get_child_ids_for_prefix(data_coll, coll_defs): - - child_ids = [] - - if not "series_pattern" in coll_defs: - return child_ids - - db_key = coll_defs["db_key"] - - child_re = re.compile( coll_defs["series_pattern"] ) - - child_ids = data_coll.distinct( db_key, { db_key: { "$regex": child_re } } ) - child_ids = list(filter(lambda d: child_re.match(d), child_ids)) - - return child_ids - -################################################################################ - -def _get_label_for_code(data_coll, coll_defs, code): - - label_keys = ["label", "description", "note"] - - db_key = coll_defs["db_key"] - id_key = re.sub(".id", "", db_key) - example = data_coll.find_one( { db_key: code } ) - - # prdbug(f'{db_key} - example {example}') - - if id_key in example.keys(): - if isinstance(example[ id_key ], list): - for o_t in example[ id_key ]: - if code in o_t["id"]: - for k in label_keys: - if k in o_t: - return o_t[k] - continue - elif type(example[ id_key ]) is object: - o_t = example[ id_key ] - if code in o_t.get("id", "___none___"): - for k in label_keys: - if k in o_t: - return o_t[k] - - - return code - -################################################################################ -################################################################################ -################################################################################ - - -if __name__ == '__main__': - main() diff --git a/housekeepers/config/housekeeping.yaml b/housekeepers/config/housekeeping.yaml deleted file mode 100644 index c27f33cd..00000000 --- a/housekeepers/config/housekeeping.yaml +++ /dev/null @@ -1,180 +0,0 @@ -indexed_response_types: - biosample: - collection: biosamples - individual: - collection: individuals - genomicVariant: - collection: variants - analysis: - collection: analyses - -indexed_special_collections: - collations: - id: - db_key: id - code: - db_key: code - child_terms: - db_key: child_terms - collation_type: - db_key: collation_type - scope: - db_key: scope - count: - db_key: count - code_matches: - db_key: code_matches - frequencymaps: - id: - db_key: id - -indexed_special_dbs: - cellz: - biosamples: - location: - db_key: provenance.geo_location.geometry - type: 2dsphere - individuals: - location: - db_key: provenance.geo_location.geometry - type: 2dsphere - variants: - id_aggregate: - db_key: - variant_state.id: 1 - location.sequence_id: 1 - location.start: 1 - location.end: 1 - info.var_length: 1 - type: compound - variantbracketquery: - db_key: - variant_state.id: 1 - location.sequence_id: 1 - location.start: 1 - location.end: 1 - info.var_length: 1 - type: compound - variantallelequery: - db_key: - location.sequence_id: 1 - location.start: 1 - sequence: 1 - reference_sequence: 1 - type: compound - variantrangequery: - db_key: - location.sequence_id: 1 - location.start: 1 - location.end: 1 - variant_state.id: 1 - sequence: 1 - type: compound - - progenetix: - biosamples: - location: - db_key: provenance.geo_location.geometry - type: 2dsphere - individuals: - location: - db_key: provenance.geo_location.geometry - type: 2dsphere - variants: - variantbracketquery: - db_key: - variant_state.id: 1 - location.sequence_id: 1 - location.start: 1 - location.end: 1 - info.var_length: 1 - type: compound - variantallelequery: - db_key: - location.sequence_id: 1 - location.start: 1 - sequence: 1 - reference_sequence: 1 - type: compound - variantrangequery: - db_key: - location.sequence_id: 1 - location.start: 1 - location.end: 1 - variant_state.id: 1 - sequence: 1 - type: compound - - publications: - id: - db_key: id - pubmedid: - db_key: pubmedid - ccgh_count: - db_key: counts.ccgh - acgh_count: - db_key: counts.acgh - wes_count: - db_key: counts.wes - wgs_count: - db_key: counts.wgs - genomes_count: - db_key: counts.genomes - geoprov_city: - db_key: provenance.geo_location.properties.city - geoprov_country: - db_key: provenance.geo_location.properties.country - geoprov_iso_alpha3: - db_key: provenance.geo_location.properties.ISO3166alpha3 - location: - db_key: provenance.geo_location.geometry - type: 2dsphere - - - ontologymaps: - id: - db_key: id - code_group_id: - db_key: code_group.id - code_group_label: - db_key: code_group.label - - _byconHousekeepingDB: - querybuffer: - id: - db_key: id - target_count: - db_key: target_count - beaconinfo: - date: - db_key: date - - _byconServicesDB: - genes: - symbol: - db_key: symbol - synonyms: - db_key: synonyms - start: - db_key: start - end: - db_key: end - - geolocs: - id: - db_key: id - geoprov_city: - db_key: geo_location.properties.city - geoprov_country: - db_key: geo_location.properties.country - geoprov_iso_alpha3: - db_key: geo_location.properties.ISO3166alpha3 - location: - db_key: geo_location.geometry - type: 2dsphere - - - - - - diff --git a/housekeepers/config/publications_inserter.yaml b/housekeepers/config/publications_inserter.yaml deleted file mode 100644 index e98d8025..00000000 --- a/housekeepers/config/publications_inserter.yaml +++ /dev/null @@ -1,11 +0,0 @@ -google_spreadsheet_tsv_url: - base_url: https://docs.google.com/spreadsheets/d/e/2PACX-1vTtXHn655F6jBrvWX_qe5a__3wxGyDYXc5ozkWJnoicFfSsImLkUrMtFVIQaAdY-7Z5P5OIj6SH2o_o/pub - params: - output: tsv - single: true - gid: 0 -skipped_columns: - - SKIP - - PROVENANCE_ID - - LINK - - SAMPLE_TYPES diff --git a/housekeepers/databaseArchiver.py b/housekeepers/databaseArchiver.py deleted file mode 100755 index 7df99fb9..00000000 --- a/housekeepers/databaseArchiver.py +++ /dev/null @@ -1,62 +0,0 @@ -#!/usr/bin/env python3 - -from pymongo import MongoClient -from os import path, pardir, mkdir, system, environ -import datetime, shutil -from pathlib import Path -from isodate import date_isoformat - -from bycon import * - -dir_path = path.dirname( path.abspath(__file__) ) -pkg_path = path.join( dir_path, pardir ) - -################################################################################ -################################################################################ -################################################################################ - -def main(): - """ - ./bin/database_archiver -d progenetix - """ - database_archiver() - -################################################################################ - -def database_archiver(): - initialize_bycon_service() - - if len(BYC["BYC_DATASET_IDS"]) != 1: - print("No single existing dataset was provided with -d ...") - exit() - ds_id = BYC["BYC_DATASET_IDS"][0] - - output_dir = BYC_PARS.get("outputdir") - if not output_dir: - print("No output directory specified (--outputdir) => quitting ...") - exit() - elif not path.isdir(output_dir): - print("Output directory does not exist => quitting ...") - exit() - - ############################################################################ - - tmp_dir = path.join( output_dir, ds_id ) - if path.isdir(tmp_dir): - shutil.rmtree(tmp_dir) - mkdir(tmp_dir) - for db in [ds_id, "_byconServicesDB"]: - db_tmp = path.join( tmp_dir, db ) - e_ds_archive = f'{db}.tar.gz' - system(f'rm -rf {db_tmp}') - system(f'mongodump --db {db} --out {tmp_dir}') - sysCmd = f'cd {output_dir} && tar -czf {date_isoformat(datetime.datetime.now())}-{ds_id}.tar.gz {ds_id} && rm -rf {tmp_dir}' - print(sysCmd) - system(sysCmd) - -################################################################################ -################################################################################ -################################################################################ - -if __name__ == '__main__': - main() diff --git a/housekeepers/deleteAnalyses.py b/housekeepers/deleteAnalyses.py deleted file mode 100755 index 11c5b56d..00000000 --- a/housekeepers/deleteAnalyses.py +++ /dev/null @@ -1,26 +0,0 @@ -#!/usr/bin/env python3 - -from os import pardir, path -from bycon import * - -loc_path = path.dirname( path.abspath(__file__) ) -lib_path = path.join(loc_path , pardir, "importers", "lib") -sys.path.append( lib_path ) -from importer_helpers import * - -################################################################################ -################################################################################ -################################################################################ - -def main(): - initialize_bycon_service() - BI = ByconautImporter() - BI.delete_analyses() - - -################################################################################ -################################################################################ -################################################################################ - -if __name__ == '__main__': - main() diff --git a/housekeepers/deleteAnalysesWDS.py b/housekeepers/deleteAnalysesWDS.py deleted file mode 100755 index 7ece979e..00000000 --- a/housekeepers/deleteAnalysesWDS.py +++ /dev/null @@ -1,26 +0,0 @@ -#!/usr/bin/env python3 - -from os import pardir, path -from bycon import * - -loc_path = path.dirname( path.abspath(__file__) ) -lib_path = path.join(loc_path , pardir, "importers", "lib") -sys.path.append( lib_path ) -from importer_helpers import * - -################################################################################ -################################################################################ -################################################################################ - -def main(): - initialize_bycon_service() - BI = ByconautImporter() - BI.delete_analyses_and_downstream() - - -################################################################################ -################################################################################ -################################################################################ - -if __name__ == '__main__': - main() diff --git a/housekeepers/deleteBiosamples.py b/housekeepers/deleteBiosamples.py deleted file mode 100755 index 0a5be8f8..00000000 --- a/housekeepers/deleteBiosamples.py +++ /dev/null @@ -1,26 +0,0 @@ -#!/usr/bin/env python3 - -from os import pardir, path -from bycon import * - -loc_path = path.dirname( path.abspath(__file__) ) -lib_path = path.join(loc_path , pardir, "importers", "lib") -sys.path.append( lib_path ) -from importer_helpers import * - -################################################################################ -################################################################################ -################################################################################ - -def main(): - initialize_bycon_service() - BI = ByconautImporter() - BI.delete_biosamples() - - -################################################################################ -################################################################################ -################################################################################ - -if __name__ == '__main__': - main() diff --git a/housekeepers/deleteBiosamplesWDS.py b/housekeepers/deleteBiosamplesWDS.py deleted file mode 100755 index 7b3bb06f..00000000 --- a/housekeepers/deleteBiosamplesWDS.py +++ /dev/null @@ -1,26 +0,0 @@ -#!/usr/bin/env python3 - -from os import pardir, path -from bycon import * - -loc_path = path.dirname( path.abspath(__file__) ) -lib_path = path.join(loc_path , pardir, "importers", "lib") -sys.path.append( lib_path ) -from importer_helpers import * - -################################################################################ -################################################################################ -################################################################################ - -def main(): - initialize_bycon_service() - BI = ByconautImporter() - BI.delete_biosamples_and_downstream() - - -################################################################################ -################################################################################ -################################################################################ - -if __name__ == '__main__': - main() diff --git a/housekeepers/deleteIndividuals.py b/housekeepers/deleteIndividuals.py deleted file mode 100755 index fb6c4979..00000000 --- a/housekeepers/deleteIndividuals.py +++ /dev/null @@ -1,26 +0,0 @@ -#!/usr/bin/env python3 - -from os import pardir, path -from bycon import * - -loc_path = path.dirname( path.abspath(__file__) ) -lib_path = path.join(loc_path , pardir, "importers", "lib") -sys.path.append( lib_path ) -from importer_helpers import * - -################################################################################ -################################################################################ -################################################################################ - -def main(): - initialize_bycon_service() - BI = ByconautImporter() - BI.delete_individuals() - - -################################################################################ -################################################################################ -################################################################################ - -if __name__ == '__main__': - main() diff --git a/housekeepers/deleteIndividualsWDS.py b/housekeepers/deleteIndividualsWDS.py deleted file mode 100755 index f732fbb1..00000000 --- a/housekeepers/deleteIndividualsWDS.py +++ /dev/null @@ -1,26 +0,0 @@ -#!/usr/bin/env python3 - -from os import pardir, path -from bycon import * - -loc_path = path.dirname( path.abspath(__file__) ) -lib_path = path.join(loc_path , pardir, "importers", "lib") -sys.path.append( lib_path ) -from importer_helpers import * - -################################################################################ -################################################################################ -################################################################################ - -def main(): - initialize_bycon_service() - BI = ByconautImporter() - BI.delete_individuals_and_downstream() - - -################################################################################ -################################################################################ -################################################################################ - -if __name__ == '__main__': - main() diff --git a/housekeepers/deleteVariants.py b/housekeepers/deleteVariants.py deleted file mode 100644 index 4cf84575..00000000 --- a/housekeepers/deleteVariants.py +++ /dev/null @@ -1,26 +0,0 @@ -#!/usr/bin/env python3 - -from os import pardir, path -from bycon import * - -loc_path = path.dirname( path.abspath(__file__) ) -lib_path = path.join(loc_path , pardir, "importers", "lib") -sys.path.append( lib_path ) -from importer_helpers import * - -################################################################################ -################################################################################ -################################################################################ - -def main(): - initialize_bycon_service() - BI = ByconautImporter() - BI.delete_variants_of_analyses() - - -################################################################################ -################################################################################ -################################################################################ - -if __name__ == '__main__': - main() diff --git a/housekeepers/frequencymapsCreator.py b/housekeepers/frequencymapsCreator.py deleted file mode 100755 index 65112890..00000000 --- a/housekeepers/frequencymapsCreator.py +++ /dev/null @@ -1,162 +0,0 @@ -#!/usr/bin/env python3 - -import re, json, yaml -from os import path, environ, pardir -import sys, datetime -from isodate import date_isoformat -from pymongo import MongoClient -import argparse -from progress.bar import Bar -import time - -from bycon import * -from bycon.services import bycon_bundler, interval_utils, collation_utils, service_helpers - -""" -## `frequencymapsCreator` -""" - -################################################################################ -################################################################################ -################################################################################ - -def main(): - frequencymaps_creator() - -################################################################################ - -def frequencymaps_creator(): - initialize_bycon_service() - interval_utils.generate_genome_bins() - service_helpers.ask_limit_reset() - - if len(BYC["BYC_DATASET_IDS"]) > 1: - print("Please give only one dataset using -d") - exit() - - ds_id = BYC["BYC_DATASET_IDS"][0] - collation_utils.set_collation_types() - print(f'=> Using data values from {ds_id} for {BYC.get("genomic_interval_count", 0)} intervals...') - - data_client = MongoClient(host=DB_MONGOHOST) - data_db = data_client[ ds_id ] - coll_coll = data_db[ "collations" ] - fm_coll = data_db[ "frequencymaps" ] - ind_coll = data_db["individuals"] - bios_coll = data_db[ "biosamples" ] - cs_coll = data_db["analyses"] - - coll_ids = _filter_coll_ids(coll_coll) - coll_no = len(coll_ids) - - if not BYC["TEST_MODE"]: - bar = Bar(f'{coll_no} {ds_id} fMaps', max = coll_no, suffix='%(percent)d%%'+f' of {coll_no}' ) - - coll_i = 0 - - for c_id in coll_ids: - coll = coll_coll.find_one({"id": c_id}) - c_o_id = coll.get("_id") - if not coll: - print(f"\n¡¡¡ some error - collation {c_id} not found !!!") - if not BYC["TEST_MODE"]: - bar.next() - continue - coll_i += 1 - - start_time = time.time() - - # prdbug(coll) - - BYC.update({"BYC_FILTERS":[{"id":c_id}, {"id": "EDAM:operation_3961"}]}) - BYC.update({"PAGINATED_STATUS": False}) - BYC.update({"FMAPS_SCOPE": coll.get("scope", "biosamples")}) - - prdbug(f'=> processing {c_id} with limit {BYC_PARS.get("limit")}') - RSS = ByconResultSets().datasetsResults() - pdb = bycon_bundler.ByconBundler().resultsets_frequencies_bundles(RSS) - if_bundles = pdb.get("interval_frequencies_bundles") - - if not BYC["TEST_MODE"]: - bar.next() - - if len(if_bundles) < 1: - prdbug(f'No interval_frequencies for {c_id}') - continue - - analyses_count = RSS[ds_id]["analyses.id"]["target_count"] - cnv_cs_count = if_bundles[0].get("sample_count", 0) - - coll_coll.update_one( - {"_id": c_o_id}, - {"$set": {"cnv_analyses": analyses_count}} - ) - if cnv_cs_count < 1: - continue - - - update_obj = { - "id": c_id, - "label": coll["label"], - "dataset_id": coll["dataset_id"], - "scope": coll["scope"], - "db_key": coll["db_key"], - "collation_type": coll["collation_type"], - "child_terms": coll["child_terms"], - "updated": datetime.datetime.now().isoformat(), - "frequencymap": { - "interval_count": BYC["genomic_interval_count"], - "binning": BYC_PARS.get("genome_binning", ""), - "intervals": if_bundles[0].get("interval_frequencies", []), - "frequencymap_samples": cnv_cs_count, - "cnv_analyses": analyses_count - } - } - - if cnv_cs_count > 2000: - proc_time = time.time() - start_time - print(f'\n==> Processed {c_id}: {cnv_cs_count} of {analyses_count} in {"%.2f" % proc_time}s: {"%.4f" % (proc_time/cnv_cs_count)}s per analysis') - - if not BYC["TEST_MODE"]: - fm_coll.delete_many( { "id": c_id } ) - fm_coll.insert_one( update_obj ) - - if not BYC["TEST_MODE"]: - bar.finish() - - -################################################################################ - -def _filter_coll_ids(coll_coll): - # collation types have been limited potentially before - f_d_s = BYC.get("filter_definitions", {}) - c_t_s = list(f_d_s.keys()) - query = { "collation_type":{"$in": c_t_s } } - if len(BYC["BYC_FILTERS"]) > 0: - f_l = [] - for c_t in BYC["BYC_FILTERS"]: - f_l.append( c_t["id"]) - if len(f_l) > 1: - query = { "$and": [ - { "collation_type":{"$in": c_t_s }}, - { "id": {"$in": f_l }} - ] - } - elif len(f_l) == 1: - query = { "$and": [ - {"collation_type":{"$in": c_t_s }}, - {"id": f_l[0]} - ] - } - - coll_ids = coll_coll.distinct("id", query) - - return coll_ids - - -################################################################################ -################################################################################ -################################################################################ - -if __name__ == '__main__': - main() diff --git a/housekeepers/housekeeping.py b/housekeepers/housekeeping.py deleted file mode 100755 index 76cc5605..00000000 --- a/housekeepers/housekeeping.py +++ /dev/null @@ -1,267 +0,0 @@ -#!/usr/bin/env python3 - -import re, json, yaml, sys, datetime -from isodate import date_isoformat -from os import path, environ, pardir, system -from pymongo import MongoClient -from progress.bar import Bar - -from bycon import * -from bycon.services import collation_utils, service_helpers - -# from collation_utils import * -from service_helpers import * - - -loc_path = path.dirname( path.abspath(__file__) ) -lib_path = path.join(loc_path , "lib") -sys.path.append( lib_path ) -from mongodb_utils import mongodb_update_indexes -from doc_generator import doc_generator - -services_conf_path = path.join( loc_path, "config" ) - -""" -The housekeeping script contains **non-destructive** maintenance scripts which -e.g. may insert derived helper values (e.g. `age_days`). -""" - -################################################################################ -################################################################################ -################################################################################ - -def main(): - housekeeping() - -################################################################################ - -def housekeeping(): - initialize_bycon_service() - read_service_prefs("housekeeping", services_conf_path) - - collation_utils.set_collation_types() - - # TODO: rewrap, use config etc. - generated_docs_path = path.join( loc_path, pardir, "docs", "generated") - bycon_generated_docs_path = path.join( loc_path, pardir, pardir, "bycon", "docs", "generated") - doc_generator(generated_docs_path) - doc_generator(bycon_generated_docs_path) - - if len(BYC["BYC_DATASET_IDS"]) != 1: - print("No single existing dataset was provided with -d ...") - exit() - - ds_id = BYC["BYC_DATASET_IDS"][0] - - # collecting the actions - todos = { - "mongodb_index_creation": input("Check & refresh MongoDB indexes?\n(y|N): "), - "individual_age_days": input("Recalculate `age_days` in individuals?\n(y|N): "), - "analyses_labels": input("Create/update `label` field for analyses, from biosamples?\n(y|N): "), - "variant_lengths": input("Recalculate `info.var_length` in variants?\n(y|N): "), - "update_cs_statusmaps": input(f'Update statusmaps in `analyses` for {ds_id}?\n(y|N): '), - "update_collations": input(f'Create `collations` for {ds_id}?\n(Y|n): '), - "update_frequencymaps": input(f'Create `frequencymaps` for {ds_id} collations?\n(Y|n): '), - "datasets_counts": input("Recalculate counts for all datasets?\n(y|N): ") - } - - data_db = MongoClient(host=DB_MONGOHOST)[ ds_id ] - - #>-------------------- MongoDB index updates -----------------------------<# - - if "y" in todos.get("mongodb_index_creation", "n").lower(): - print(f'\n{__hl()}==> updating indexes for {ds_id}"') - mongodb_update_indexes(ds_id) - - #>------------------- / MongoDB index updates ----------------------------<# - - #>------------------------- analyses -------------------------------------<# - - if "y" in todos.get("analyses_labels", "n").lower(): - cs_query = {} - analyses_coll = data_db["analyses"] - bios_coll = data_db["biosamples"] - no = analyses_coll.count_documents(cs_query) - - relabf = path.join( services_conf_path, "relabel.tsv" ) - relabel = [] - with open(relabf, newline='') as csvfile: - data = csv.DictReader(filter(lambda row: row.startswith('#') is False, csvfile), delimiter="\t") - fieldnames = list(data.fieldnames) - for l in data: - relabel.append(dict(l)) - - if not BYC["TEST_MODE"]: - bar = Bar(f"=> `labels` for {no} analyses", max = no, suffix='%(percent)d%%'+" of "+str(no) ) - for cs in analyses_coll.find(cs_query): - if not BYC["TEST_MODE"]: - bar.next() - bs_id = cs.get("biosample_id", "___none___") - bios = bios_coll.find_one({"id": bs_id}) - if not bios: - continue - bs_label = bios.get("label", "") - if len(bs_label) < 2: - bs_label = bios.get("notes", "") - if len(bs_label) < 2: - bs_label = bs_id - - # TODO: this is very temporary ......... - for r_l in relabel: - bs_label = re.sub(f'{r_l.get("from", "___none___")}', f'{r_l.get("to", "")}', bs_label, flags=re.I) - - if BYC["TEST_MODE"] is True: - print(f'{cs["id"]} => {bs_label}') - else: - analyses_coll.update_one({"_id": cs["_id"]}, {"$set": {"label": bs_label}}) - - if not BYC["TEST_MODE"]: - bar.finish() - - #>------------------------------------------------------------------------<# - - if "y" in todos.get("update_cs_statusmaps", "y").lower(): - print(f'==> executing "{loc_path}/analysesStatusmapsRefresher.py -d {ds_id}"') - system(f'{loc_path}/analysesStatusmapsRefresher.py -d {ds_id}') - - #>------------------------ / analyses ------------------------------------<# - - #>------------------------ individuals -----------------------------------<# - - ind_coll = data_db["individuals"] - - # age_days - if "y" in todos.get("individual_age_days", "n").lower(): - query = {"index_disease.onset.age": {"$regex": '^P'}} - no = ind_coll.count_documents(query) - bar = Bar(f"=> `age_days` ...", max = no, suffix='%(percent)d%%'+" of "+str(no) ) - - age_c = 0 - for ind in ind_coll.find(query): - age_days = days_from_iso8601duration(ind["index_disease"]["onset"]["age"]) - if age_days is False: - continue - ind_coll.update_one({"_id": ind["_id"]}, {"$set": {"index_disease.onset.age_days": age_days}}) - age_c += 1 - bar.next() - - bar.finish() - - print(f'=> {age_c} individuals received an `index_disease.onset.age_days` value.') - - #>----------------------- / individuals ----------------------------------<# - - #>-------------------------- variants ------------------------------------<# - - ind_coll = data_db["variants"] - update_field = "info.var_length" - - # length - if "y" in todos.get("variant_lengths", "n").lower(): - # query = {"location.start": {"$exists": True}, "location.end": {"$exists": True}} - # no = ind_coll.count_documents(query) - query = {} - no = ind_coll.estimated_document_count(query) - bar = Bar(f"=> `{update_field}` ...", max = no, suffix='%(percent)d%%'+" of "+str(no) ) - - v_c = 0 - e_c = 0 - for ind in ind_coll.find(query): - loc = ind.get("location", {}) - s = loc.get("start") - e = loc.get("end") - if not s or not e: - e_c += 1 - continue - ind_coll.update_one({"_id": ind["_id"]}, {"$set": {update_field: e - s}}) - v_c += 1 - bar.next() - - bar.finish() - - print(f'=> {v_c} variants with updated `{update_field}` value.') - print(f'=> {e_c} variants failed to update...') - - #>------------------------- / variants -----------------------------------<# - - #>---------------------- info db update ----------------------------------<# - - if "y" in todos.get("datasets_counts", "n").lower(): - - print(f'\n{__hl()}==> Updating dataset statistics in "{HOUSEKEEPING_DB}.{HOUSEKEEPING_INFO_COLL}"') - - b_info = __dataset_update_counts() - - info_coll = MongoClient(host=DB_MONGOHOST)[ HOUSEKEEPING_DB ][ HOUSEKEEPING_INFO_COLL ] - info_coll.delete_many( { "date": b_info["date"] } ) #, upsert=True - info_coll.insert_one( b_info ) #, upsert=True - - print(f'\n{__hl()}==> updated entry {b_info["date"]} in {HOUSEKEEPING_DB}.{HOUSEKEEPING_INFO_COLL}') - - #>--------------------- / info db update ---------------------------------<# - - #>---------------------- update collations -------------------------------<# - - if not "n" in todos.get("update_collations", "y").lower(): - print(f'\n{__hl()}==> executing "{loc_path}/collationsCreator.py -d {ds_id}"\n') - system(f'{loc_path}/collationsCreator.py -d {ds_id}') - - #>--------------------- / update collations ------------------------------<# - - #>--------------------- update frequencymaps -----------------------------<# - - if not "n" in todos.get("update_frequencymaps", "y").lower(): - print(f'\n{__hl()}==> executing "{loc_path}/frequencymapsCreator.py -d {ds_id}"\n') - system(f'{loc_path}/frequencymapsCreator.py -d {ds_id}') - - #>-------------------- / update frequencymaps ----------------------------<# - -################################################################################ -#################################### subs ###################################### -################################################################################ - -def __dataset_update_counts(): - - b_info = { "date": date_isoformat(datetime.datetime.now()), "datasets": { } } - mongo_client = MongoClient(host=DB_MONGOHOST) - - # this is independend of the dataset selected for the script & will update - # for all in any run - for i_ds_id in BYC["dataset_definitions"].keys(): - if not i_ds_id in BYC["DATABASE_NAMES"]: - print(f'¡¡¡ Dataset "{i_ds_id}" does not exist !!!') - continue - - ds_db = mongo_client[ i_ds_id ] - b_i_ds = { "counts": { }, "updated": datetime.datetime.now().isoformat() } - c_n = ds_db.list_collection_names() - for c in ["biosamples", "individuals", "variants", "analyses"]: - if c not in c_n: - continue - - no = ds_db[ c ].estimated_document_count() - b_i_ds["counts"].update( { c: no } ) - if c == "variants": - v_d = { } - bar = Bar(i_ds_id+' variants', max = no, suffix='%(percent)d%%'+" of "+str(no) ) - for v in ds_db[ c ].find({ "variant_internal_id": {"$exists": True }}): - v_d[ v["variant_internal_id"] ] = 1 - bar.next() - bar.finish() - b_i_ds["counts"].update( { "variants_distinct": len(v_d.keys()) } ) - - b_info["datasets"].update({i_ds_id: b_i_ds}) - - return b_info - -################################################################################ - -def __hl(): - return "".join(["#"] * 80) + "\n" - -################################################################################ -################################################################################ -################################################################################ - -if __name__ == '__main__': - main() diff --git a/housekeepers/lib/__init__.py b/housekeepers/lib/__init__.py deleted file mode 100644 index 49de6d5a..00000000 --- a/housekeepers/lib/__init__.py +++ /dev/null @@ -1,3 +0,0 @@ -# __init__.py - -from mongodb_utils import * diff --git a/housekeepers/lib/doc_generator.py b/housekeepers/lib/doc_generator.py deleted file mode 100644 index 49868d2e..00000000 --- a/housekeepers/lib/doc_generator.py +++ /dev/null @@ -1,65 +0,0 @@ -from config import * - -def doc_generator(generated_docs_path): - if path.exists(generated_docs_path): - file_pars = { - "plot_defaults":{ - "chapters": { - "plot_type_defs": "Plot Types", - "plot_parameters": "Plot Parameters" - }, - "title": "Plot Parameters and Information" - }, - "argument_definitions": { - "title": "`bycon` Arguments and Parameters", - "preamble": "The following is a list of arguments and parameters used in the `bycon` package as well as the `byconaut` tools." - } - } - - for d_k, d_v in file_pars.items(): - if d_k not in BYC: - continue - - pp_f = path.join(generated_docs_path, f"{d_k}.md") - - ls = [f'# {d_v.get("title")}'] - ls.append(f'{d_v.get("preamble", "")}') - - if not "chapters" in d_v: - d_v = { - "chapters":{ - "root": "Definitions"} - } - - for chapter, title in d_v.get("chapters").items(): - if "root" in chapter: - pp = BYC[d_k] - else: - pp = BYC[d_k].get(chapter, {}) - ls.append(f'## {title}') - for pk, pi in pp.items(): - ls.append(f'### `{pk}` \n') - - for pik, piv in pi.items(): - if type(piv) is dict: - js = ' \n' - ls.append(f'**{pik}:** \n') - ls.append(js.join([f' - `{k}`: `{v}` ' for k, v in piv.items()])) - elif type(piv) is list: - js = ',' - piv = js.join([str(x) for x in piv]) - ls.append(f'**{pik}:** `{piv}` ') - elif "default" in pik or "pattern" in pik and len(str(piv)) > 0: - ls.append(f'**{pik}:** `{piv}` ') - elif "description" in pik: - ls.append(f'**{pik}:**\n') - piv = piv.replace("*", " \n*") - ls.append(f'{piv} ') - else: - ls.append(f'**{pik}:** {piv} ') - ls.append(f'\n') - ls.append(f'\n') - - pp_fh = open(pp_f, "w") - pp_fh.write("\n".join(ls).replace("\n\n", "\n").replace("\n\n", "\n")) - pp_fh.close() diff --git a/housekeepers/lib/mongodb_utils.py b/housekeepers/lib/mongodb_utils.py deleted file mode 100644 index 80e75dad..00000000 --- a/housekeepers/lib/mongodb_utils.py +++ /dev/null @@ -1,88 +0,0 @@ -import re -from os import environ -from pymongo import MongoClient, GEOSPHERE - -from bycon import BYC, DB_MONGOHOST - -################################################################################ - -def mongodb_update_indexes(ds_id): - dt_m = BYC["datatable_mappings"] - s_c = BYC.get("service_config", {}) - b_rt_s = s_c["indexed_response_types"] - mongo_client = MongoClient(host=DB_MONGOHOST) - data_db = mongo_client[ds_id] - coll_names = data_db.list_collection_names() - for r_t, r_d in b_rt_s.items(): - collname = r_d.get("collection", False) - if collname not in coll_names: - print(f"¡¡¡ Collection {collname} does not exist in {ds_id} !!!") - continue - i_coll = data_db[ collname ] - io_params = dt_m["definitions"][ r_t ]["parameters"] - - for p_k, p_v in io_params.items(): - if (i_t := p_v.get("indexed", False)) is False: - continue - - if (k := p_v.get("db_key")): - if (i_d := p_v.get("items")): - if (i_d_i := i_d.get("indexed")): - for i_p in i_d_i: - i_k = f'{k}.{i_p}' - print(f'Creating index "{i_k}" in {collname} from {ds_id}') - i_m = i_coll.create_index(i_k) - print(i_m) - continue - print(f'Creating index "{k}" in {collname} from {ds_id}') - m = i_coll.create_index(k) - print(m) - - # TODO: - - # if "geoprov_lat" in io_params.keys(): - # k = re.sub("properties.latitude", "geometry", io_params["geoprov_lat"]["db_key"]) - # m = i_coll.create_index([(k, GEOSPHERE)]) - # print(m) - - #<------------------------ special collections ---------------------------># - - special_colls = s_c.get("indexed_special_collections", {}) - __index_by_colldef(ds_id, special_colls) - - #<------------------------- special databases ----------------------------># - - for s_db, coll_defs in s_c.get("indexed_special_dbs", {}).items(): - __index_by_colldef(s_db, coll_defs) - -################################################################################ - -def __index_by_colldef(ds_id, coll_defs): - mongo_client = MongoClient(host=DB_MONGOHOST) - i_db = mongo_client[ds_id] - coll_names = i_db.list_collection_names() - - for collname, io_params in coll_defs.items(): - if collname not in coll_names: - continue - - i_coll = i_db[ collname ] - for p_k, p_v in io_params.items(): - special = p_v.get("type", "___none___") - k = p_v["db_key"] - if "2dsphere" in special: - print(f'Creating GEOSPHERE index "{k}" in {collname} from {ds_id}') - i_coll.create_index([(k, GEOSPHERE)]) - pass - elif "compound" in special: - print(f'Creating compound index "{k}" in {collname} from {ds_id}') - i_coll.create_index(k) - pass - else: - print(f'Creating index "{k}" in {collname} from {ds_id}') - try: - m = i_coll.create_index(k) - print(m) - except Exception: - print(f'¡¡¡ Index "{k}" in {collname} from {ds_id} has one with same id !!!') - diff --git a/housekeepers/recordsMoverWDS.py b/housekeepers/recordsMoverWDS.py deleted file mode 100755 index 8c583c39..00000000 --- a/housekeepers/recordsMoverWDS.py +++ /dev/null @@ -1,30 +0,0 @@ -#!/usr/bin/env python3 - -from os import pardir, path -from bycon import * - -loc_path = path.dirname( path.abspath(__file__) ) -lib_path = path.join(loc_path , pardir, "importers", "lib") -sys.path.append( lib_path ) -from importer_helpers import * - -""" -./housekeepers/recordsMoverWDS.py -d progenetix --output cellz -i ./imports/1kdeltest.tsv --testMode false -""" - -################################################################################ -################################################################################ -################################################################################ - -def main(): - initialize_bycon_service() - BI = ByconautImporter() - BI.move_individuals_and_downstream() - - -################################################################################ -################################################################################ -################################################################################ - -if __name__ == '__main__': - main() diff --git a/importers/analysesInserter.py b/importers/analysesInserter.py deleted file mode 100755 index 26cf9003..00000000 --- a/importers/analysesInserter.py +++ /dev/null @@ -1,25 +0,0 @@ -#!/usr/bin/env python3 - -from os import path -from bycon import * - -loc_path = path.dirname( path.abspath(__file__) ) -lib_path = path.join(loc_path , "lib") -sys.path.append( lib_path ) -from importer_helpers import ByconautImporter - -################################################################################ -################################################################################ -################################################################################ - -def main(): - initialize_bycon_service() - BI = ByconautImporter() - BI.import_analyses() - -################################################################################ -################################################################################ -################################################################################ - -if __name__ == '__main__': - main() diff --git a/importers/analysesUpdater.py b/importers/analysesUpdater.py deleted file mode 100755 index 8230b9c5..00000000 --- a/importers/analysesUpdater.py +++ /dev/null @@ -1,25 +0,0 @@ -#!/usr/bin/env python3 - -from os import path -from bycon import * - -loc_path = path.dirname( path.abspath(__file__) ) -lib_path = path.join(loc_path , "lib") -sys.path.append( lib_path ) -from importer_helpers import ByconautImporter - -################################################################################ -################################################################################ -################################################################################ - -def main(): - initialize_bycon_service() - BI = ByconautImporter() - BI.update_analyses() - -################################################################################ -################################################################################ -################################################################################ - -if __name__ == '__main__': - main() diff --git a/importers/biosamplesInserter.py b/importers/biosamplesInserter.py deleted file mode 100755 index fcf30278..00000000 --- a/importers/biosamplesInserter.py +++ /dev/null @@ -1,26 +0,0 @@ -#!/usr/bin/env python3 - -from os import path -from bycon import * - -loc_path = path.dirname( path.abspath(__file__) ) -lib_path = path.join(loc_path , "lib") -sys.path.append( lib_path ) -from importer_helpers import ByconautImporter - -################################################################################ -################################################################################ -################################################################################ - -def main(): - initialize_bycon_service() - BI = ByconautImporter() - BI.import_biosamples() - - -################################################################################ -################################################################################ -################################################################################ - -if __name__ == '__main__': - main() diff --git a/importers/biosamplesUpdater.py b/importers/biosamplesUpdater.py deleted file mode 100755 index b0f9acfd..00000000 --- a/importers/biosamplesUpdater.py +++ /dev/null @@ -1,26 +0,0 @@ -#!/usr/bin/env python3 - -from os import path -from bycon import * - -loc_path = path.dirname( path.abspath(__file__) ) -lib_path = path.join(loc_path , "lib") -sys.path.append( lib_path ) -from importer_helpers import ByconautImporter - -################################################################################ -################################################################################ -################################################################################ - -def main(): - initialize_bycon_service() - BI = ByconautImporter() - BI.update_biosamples() - - -################################################################################ -################################################################################ -################################################################################ - -if __name__ == '__main__': - main() diff --git a/importers/individualsInserter.py b/importers/individualsInserter.py deleted file mode 100755 index b5c579b3..00000000 --- a/importers/individualsInserter.py +++ /dev/null @@ -1,25 +0,0 @@ -#!/usr/bin/env python3 - -from os import path -from bycon import * - -loc_path = path.dirname( path.abspath(__file__) ) -lib_path = path.join(loc_path , "lib") -sys.path.append( lib_path ) -from importer_helpers import ByconautImporter - -################################################################################ -################################################################################ -################################################################################ - -def main(): - initialize_bycon_service() - BI = ByconautImporter() - BI.import_individuals() - -################################################################################ -################################################################################ -################################################################################ - -if __name__ == '__main__': - main() diff --git a/importers/individualsUpdater.py b/importers/individualsUpdater.py deleted file mode 100755 index 6d661abc..00000000 --- a/importers/individualsUpdater.py +++ /dev/null @@ -1,26 +0,0 @@ -#!/usr/bin/env python3 - -from os import path -from bycon import * - -loc_path = path.dirname( path.abspath(__file__) ) -lib_path = path.join(loc_path , "lib") -sys.path.append( lib_path ) -from importer_helpers import ByconautImporter - -################################################################################ -################################################################################ -################################################################################ - -def main(): - initialize_bycon_service() - BI = ByconautImporter() - BI.update_individuals() - - -################################################################################ -################################################################################ -################################################################################ - -if __name__ == '__main__': - main() diff --git a/importers/lib/importer_helpers.py b/importers/lib/importer_helpers.py deleted file mode 100644 index c4efcc4d..00000000 --- a/importers/lib/importer_helpers.py +++ /dev/null @@ -1,608 +0,0 @@ -import datetime -from os import path -from progress.bar import Bar - -# bycon -from config import * -from bycon_helpers import prjsonnice, prdbug -from variant_mapping import ByconVariant - -from bycon.services import bycon_bundler, datatable_utils, file_utils - -################################################################################ -################################################################################ -################################################################################ - -class ByconautImporter(): - def __init__(self): - self.log = [] - self.entity = None - self.dataset_id = BYC["BYC_DATASET_IDS"][0] - self.input_file = None - self.import_collname = None - self.import_entity = None - self.import_id = None - self.upstream = ["individuals", "biosamples", "analyses"] - self.downstream = [] - self.downstream_only = False - self.mongo_client = MongoClient(host=DB_MONGOHOST) - self.ind_coll = mongo_client[ self.dataset_id ]["individuals"] - self.bios_coll = mongo_client[ self.dataset_id ]["biosamples"] - self.ana_coll = mongo_client[ self.dataset_id ]["analyses"] - self.target_db = "___none___" - self.allow_duplicates = False - - self.__initialize_importer() - - - #--------------------------------------------------------------------------# - #----------------------------- public -------------------------------------# - #--------------------------------------------------------------------------# - - def get_dataset_id(self): - return self.dataset_id - - - #--------------------------------------------------------------------------# - - def get_input_file(self): - return self.input_file - - - #--------------------------------------------------------------------------# - - def import_individuals(self): - self.__prepare_individuals() - self.__insert_database_records_from_file() - - - #--------------------------------------------------------------------------# - - def update_individuals(self): - self.__prepare_individuals() - self.__update_database_records_from_file() - - - #--------------------------------------------------------------------------# - - def import_biosamples(self): - self.__prepare_biosamples() - self.__insert_database_records_from_file() - - - #--------------------------------------------------------------------------# - - def update_biosamples(self): - self.__prepare_biosamples() - self.__update_database_records_from_file() - - - #--------------------------------------------------------------------------# - - def import_analyses(self): - self.__prepare_analyses() - self.__insert_database_records_from_file() - - - #--------------------------------------------------------------------------# - - def update_analyses(self): - self.__prepare_analyses() - self.__update_database_records_from_file() - - - #--------------------------------------------------------------------------# - - def delete_individuals(self): - self.__prepare_individuals() - self.__delete_database_records() - - - #--------------------------------------------------------------------------# - - def delete_individuals_and_downstream(self): - self.__prepare_individuals() - self.downstream = ["biosamples", "analyses", "variants"] - self.__delete_database_records() - - - #--------------------------------------------------------------------------# - - def delete_biosamples(self): - self.__prepare_biosamples() - self.__delete_database_records() - - - #--------------------------------------------------------------------------# - - def delete_biosamples_and_downstream(self): - self.__prepare_biosamples() - self.downstream = ["analyses", "variants"] - self.__delete_database_records() - - - #--------------------------------------------------------------------------# - - def delete_analyses(self): - self.__prepare_analyses() - self.__delete_database_records() - - - #--------------------------------------------------------------------------# - - def delete_analyses_and_downstream(self): - self.__prepare_analyses() - self.downstream = ["variants"] - self.__delete_database_records() - - - #--------------------------------------------------------------------------# - - def delete_variants_of_analyses(self): - self.__prepare_analyses() - self.downstream = ["variants"] - self.downstream_only = True - self.__delete_database_records() - - - #--------------------------------------------------------------------------# - - def import_variants(self): - self.__prepare_variants() - self.__insert_variant_records_from_file() - - - #--------------------------------------------------------------------------# - - def move_individuals_and_downstream(self): - self.__prepare_individuals() - self.target_db = BYC_PARS.get("output", "___none___") - self.downstream = ["biosamples", "analyses", "variants"] - self.__move_database_records() - - - #--------------------------------------------------------------------------# - #----------------------------- Private ------------------------------------# - #--------------------------------------------------------------------------# - - def __initialize_importer(self): - BYC.update({"BYC_DATASET_IDS": BYC_PARS.get("dataset_ids", [])}) - if len(BYC["BYC_DATASET_IDS"]) != 1: - print("No single existing dataset was provided with -d ...") - exit() - self.dataset_id = BYC["BYC_DATASET_IDS"][0] - self.input_file = BYC_PARS.get("inputfile") - if not self.input_file: - print("No input file file specified (-i, --inputfile) => quitting ...") - exit() - if not BYC["TEST_MODE"]: - tmi = input("Do you want to run in TEST MODE (i.e. no database insertions/updates)?\n(Y|n): ") - if not "n" in tmi.lower(): - BYC.update({"TEST_MODE": True}) - if BYC["TEST_MODE"]: - print("... running in TEST MODE") - - return - - - #--------------------------------------------------------------------------# - #--------------------------------------------------------------------------# - - def __prepare_individuals(self): - # TODO: have those parameters read from bycon globals - self.import_collname = "individuals" - self.import_entity = "individual" - self.import_id = "individual_id" - self.upstream = [] - self.__check_dataset() - self.__read_data_file() - - - #--------------------------------------------------------------------------# - #--------------------------------------------------------------------------# - - def __prepare_biosamples(self): - # TODO: have those parameters read from bycon globals - self.import_collname = "biosamples" - self.import_entity = "biosample" - self.import_id = "biosample_id" - self.upstream = ["individuals"] - self.__check_dataset() - self.__read_data_file() - - - #--------------------------------------------------------------------------# - #--------------------------------------------------------------------------# - - def __prepare_analyses(self): - # TODO: have those parameters read from bycon globals - self.import_collname = "analyses" - self.import_entity = "analysis" - self.import_id = "analysis_id" - self.upstream = ["individuals", "biosamples"] - self.__check_dataset() - self.__read_data_file() - - - #--------------------------------------------------------------------------# - #--------------------------------------------------------------------------# - - def __prepare_variants(self): - # TODO: have those parameters read from bycon globals - self.import_collname = "variants" - self.import_entity = "genomicVariant" - self.import_id = "analysis_id" - self.upstream = ["individuals", "biosamples", "analyses"] - self.allow_duplicates = True - self.__check_dataset() - self.__read_data_file() - - - #--------------------------------------------------------------------------# - #--------------------------------------------------------------------------# - - def __check_dataset(self): - # done after assignment of import_collname - if self.dataset_id not in BYC.get("DATABASE_NAMES",[]): - print(f'Dataset {self.dataset_id} does not exist. You have to create it first.') - if "individuals" in str(self.import_collname): - proceed = input(f'Please type the name of the dataset and hit Enter: ') - if not str(self.dataset_id) in proceed: - exit() - else: - exit() - - - #--------------------------------------------------------------------------# - #--------------------------------------------------------------------------# - - def __read_data_file(self): - iid = self.import_id - - bb = bycon_bundler.ByconBundler() - self.data_in = bb.read_pgx_file(self.input_file) - print(f'=> The input file contains {len(self.data_in.data)} items') - - self.import_docs = [] - - import_ids = [] - l_no = 0 - for new_doc in self.data_in.data: - l_no += 1 - if not (import_id_v := new_doc.get(iid)): - self.log.append(f'¡¡¡ no {iid} value in entry {l_no} => skipping !!!') - continue - if import_id_v in import_ids and not self.allow_duplicates: - self.log.append(f'¡¡¡ duplicated {iid} value in entry {l_no} => skipping !!!') - continue - - import_ids.append(import_id_v) - self.import_docs.append(dict(new_doc)) - - - #--------------------------------------------------------------------------# - #--------------------------------------------------------------------------# - - def __move_database_records(self): - ds_id = self.dataset_id - tds_id = self.target_db - icn = self.import_collname - dcs = self.downstream - iid = self.import_id - fn = self.data_in.fieldnames - - if tds_id not in BYC["DATABASE_NAMES"]: - print(f'¡¡¡ No existing target database defined using `--output` !!!') - exit() - - source_coll = self.mongo_client[ds_id][icn] - target_coll = self.mongo_client[tds_id][icn] - - #----------------------- Checking database content --------------------# - - source_ids = [] - for test_doc in self.import_docs: - s_id_v = test_doc[iid] - if not source_coll.find_one({"id": s_id_v}): - self.log.append(f'id {s_id_v} does not exist in {ds_id}.{icn} => maybe deleted already ...') - else: - source_ids.append(s_id_v) - - self.__parse_log() - - #---------------------------- Mover Stage -----------------------------# - - mov_nos = {icn: 0} - bar = Bar("Moving ", max = len(source_ids), suffix='%(percent)d%%'+f' of {str(len(source_ids))} {icn}' ) if not BYC["TEST_MODE"] else False - for m_id in source_ids: - d_c = source_coll.count_documents({"id": m_id}) - t_c = target_coll.count_documents({"id": m_id}) - if d_c > 0 and t_c < 1: - mov_nos[icn] += d_c - if not BYC["TEST_MODE"]: - s = source_coll.find_one({"id": m_id}) - t = target_coll.insert_one(s) - if not BYC["TEST_MODE"]: - bar.next() - if not BYC["TEST_MODE"]: - bar.finish() - - for c in dcs: - bar = Bar(f'Moving {c} for ', max = len(source_ids), suffix='%(percent)d%%'+f' of {str(len(source_ids))} {icn}' ) if not BYC["TEST_MODE"] else False - source_coll = self.mongo_client[ds_id][c] - target_coll = self.mongo_client[tds_id][c] - mov_nos.update({c: 0}) - for m_id in source_ids: - d_c = source_coll.count_documents({iid: m_id}) - if d_c > 0: - mov_nos[c] += d_c - if not BYC["TEST_MODE"]: - target_coll.delete_many({iid: m_id}) - for s in source_coll.find({iid: m_id}): - t = target_coll.insert_one(s) - if not BYC["TEST_MODE"]: - bar.next() - if not BYC["TEST_MODE"]: - bar.finish() - - if not BYC["TEST_MODE"]: - for k, v in mov_nos.items(): - print(f'==> moved {v} {k} from {ds_id} to {tds_id}') - else: - for k, v in mov_nos.items(): - print(f'==> would have moved {v} {k} from {ds_id} to {tds_id}') - - - #--------------------------------------------------------------------------# - #--------------------------------------------------------------------------# - - def __delete_database_records(self): - ds_id = self.dataset_id - icn = self.import_collname - dcs = self.downstream - iid = self.import_id - fn = self.data_in.fieldnames - - del_coll = self.mongo_client[ds_id][icn] - - #----------------------- Checking database content --------------------# - - del_ids = set() - for test_doc in self.import_docs: - del_id_v = test_doc[iid] - if not del_coll.find_one({"id": del_id_v}): - self.log.append(f'id {del_id_v} does not exist in {ds_id}.{icn} => maybe deleted already ...') - del_ids.add(del_id_v) - - self.__parse_log() - - #---------------------------- Delete Stage ----------------------------# - - del_nos = { icn: 0 } - if not self.downstream_only: - bar = Bar("Deleting ", max = len(del_ids), suffix='%(percent)d%%'+f' of {str(len(del_ids))} {icn}' ) if not BYC["TEST_MODE"] else False - for del_id in del_ids: - d_c = del_coll.count_documents({"id": del_id}) - del_nos[icn] += d_c - if not BYC["TEST_MODE"]: - del_coll.delete_many({"id": del_id}) - bar.next() - if not BYC["TEST_MODE"]: - bar.finish() - - for c in dcs: - bar = Bar(f'Deleting {c} for ', max = len(del_ids), suffix='%(percent)d%%'+f' of {str(len(del_ids))} {icn}' ) if not BYC["TEST_MODE"] else False - del_coll = self.mongo_client[ds_id][c] - del_nos.update({c: 0}) - for del_id in del_ids: - d_c = del_coll.count_documents({iid: del_id}) - del_nos[c] += d_c - if not BYC["TEST_MODE"]: - del_coll.delete_many({iid: del_id}) - bar.next() - if not BYC["TEST_MODE"]: - bar.finish() - - if not BYC["TEST_MODE"]: - for k, v in del_nos.items(): - print(f'==> deleted {v} {k}') - else: - for k, v in del_nos.items(): - print(f'==> would have deleted {v} {k}') - - - #--------------------------------------------------------------------------# - #--------------------------------------------------------------------------# - - def __update_database_records_from_file(self): - ds_id = self.dataset_id - icn = self.import_collname - ien = self.import_entity - iid = self.import_id - fn = self.data_in.fieldnames - - import_coll = self.mongo_client[ ds_id ][icn] - - #----------------------- Checking database content --------------------# - - checked_docs = [] - for test_doc in self.import_docs: - import_id_v = test_doc[iid] - self.__check_upstream_ids(test_doc) - if not import_coll.find_one({"id": import_id_v}): - self.log.append(f'id {import_id_v} does not exist in {ds_id}.{icn} => you might need to run an importer ...') - continue - checked_docs.append(test_doc) - - self.__parse_log() - - #---------------------- Updating checked records-----------------------# - - bar = Bar("Processing ", max = len(checked_docs), suffix='%(percent)d%%'+" of "+str(len(checked_docs)) ) if not BYC["TEST_MODE"] else False - - #---------------------------- Import Stage ----------------------------# - - i_no = 0 - for new_doc in checked_docs: - o_id = new_doc[iid] - update_i = import_coll.find_one({"id": o_id}) - update_i = datatable_utils.import_datatable_dict_line(update_i, fn, new_doc, ien) - update_i.update({"updated": datetime.datetime.now().isoformat()}) - - if not BYC["TEST_MODE"]: - import_coll.update_one({"id": o_id}, {"$set": update_i}) - bar.next() - else: - prjsonnice(update_i) - i_no += 1 - - #---------------------------- Summary ---------------------------------# - - if not BYC["TEST_MODE"]: - bar.finish() - print(f'==> updated {i_no} {ien}') - else: - print(f'==> tested {i_no} {ien}') - - - #--------------------------------------------------------------------------# - #--------------------------------------------------------------------------# - - def __insert_database_records_from_file(self): - ds_id = self.dataset_id - icn = self.import_collname - ien = self.import_entity - iid = self.import_id - fn = self.data_in.fieldnames - - import_coll = self.mongo_client[ ds_id ][icn] - - #----------------------- Checking database content --------------------# - - checked_docs = [] - for test_doc in self.import_docs: - import_id_v = test_doc[iid] - self.__check_upstream_ids(test_doc) - if import_coll.find_one({"id": import_id_v}): - self.log.append(f'existing id {import_id_v} in {ds_id}.{icn} => please check or remove') - continue - checked_docs.append(test_doc) - - self.__parse_log() - - #---------------------------- Import Stage ----------------------------# - - i_no = 0 - for new_doc in checked_docs: - update_i = {"id": new_doc[iid]} - update_i = datatable_utils.import_datatable_dict_line(update_i, fn, new_doc, ien) - update_i.update({"updated": datetime.datetime.now().isoformat()}) - - if not BYC["TEST_MODE"]: - import_coll.insert_one(update_i) - i_no += 1 - else: - prjsonnice(update_i) - - #-------------------------------- Summary -----------------------------# - - print(f'=> {i_no} records were inserted into {ds_id}.{icn}') - - #--------------------------------------------------------------------------# - #--------------------------------------------------------------------------# - - def __insert_variant_records_from_file(self): - ds_id = self.dataset_id - icn = self.import_collname - ien = self.import_entity - iid = self.import_id - fn = self.data_in.fieldnames - - import_coll = self.mongo_client[ ds_id ][icn] - - delMatchedVars = "y" - if not BYC["TEST_MODE"]: - delMatchedVars = input(f'Delete the variants of the same analysis ids as in the input file?\n(Y|n): ') - - #----------------------- Checking database content --------------------# - - for test_doc in self.import_docs: - self.__check_upstream_ids(test_doc) - self.__parse_log() - - #---------------------------- Delete Stage ----------------------------# - - ana_del_ids = set() - import_vars = [] - for v in self.import_docs: - if not (vs_id := v.get("variant_state_id")): - print(f"¡¡¡ The `variant_state_id` parameter is required for variant assignment line {c}!!!") - exit() - if not (ana_id := v.get("analysis_id")): - print(f"¡¡¡ The `analysis_id` parameter is required for variant assignment line {c}!!!") - exit() - if not "n" in delMatchedVars.lower(): - ana_del_ids.add(ana_id) - if not "delete" in vs_id.lower(): - import_vars.append(v) - - for ana_id in ana_del_ids: - v_dels = import_coll.delete_many({"analysis_id": ana_id}) - print(f'==>> deleted {v_dels.deleted_count} variants from {ana_id}') - - #---------------------------- Import Stage ----------------------------# - - i_no = 0 - for new_doc in import_vars: - insert_v = datatable_utils.import_datatable_dict_line({}, fn, new_doc, ien) - insert_v = ByconVariant().pgxVariant(insert_v) - insert_v.update({"updated": datetime.datetime.now().isoformat()}) - - if not BYC["TEST_MODE"]: - vid = import_coll.insert_one(insert_v).inserted_id - vstr = f'pgxvar-{vid}' - import_coll.update_one({'_id': vid}, {'$set': {'id': vstr}}) - i_no += 1 - else: - prjsonnice(insert_v) - - #-------------------------------- Summary -----------------------------# - - print(f'=> {i_no} records were inserted into {ds_id}.{icn}') - - - #--------------------------------------------------------------------------# - #--------------------------------------------------------------------------# - - def __check_upstream_ids(self, new_doc): - ind_id = new_doc.get("individual_id", "___none___") - bios_id = new_doc.get("biosample_id", "___none___") - ana_id = new_doc.get("analysis_id", "___none___") - ien = self.import_entity - iid = self.import_id - import_id_v = new_doc[iid] - if "individuals" in self.upstream: - if not self.ind_coll.find_one({"id": ind_id}): - self.log.append(f'individual {ind_id} for {ien} {import_id_v} should exist before {ien} import') - if "biosamples" in self.upstream: - if not self.bios_coll.find_one({"id": bios_id}): - self.log.append(f'biosample {bios_id} for {ien} {import_id_v} should exist before {ien} import') - if "analyses" in self.upstream: - if not self.ana_coll.find_one({"id": ana_id}): - self.log.append(f'analysis {ana_id} for {ien} {import_id_v} should exist before {ien} import') - - - #--------------------------------------------------------------------------# - #--------------------------------------------------------------------------# - - def __parse_log(self): - if len(self.log) < 1: - return - - file_utils.write_log(self.log, self.input_file) - if (force := BYC_PARS.get("force")): - print(f'¡¡¡ {len(self.log)} errors => still proceeding since"--force {force}" in effect') - else: - print(f'¡¡¡ {len(self.log)} errors => quitting w/o data changes\n... override with "--force true"') - exit() - diff --git a/importers/variantsInserter.py b/importers/variantsInserter.py deleted file mode 100755 index ba582e4a..00000000 --- a/importers/variantsInserter.py +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env python3 - -from os import path -from bycon import * - -loc_path = path.dirname( path.abspath(__file__) ) -lib_path = path.join(loc_path , "lib") -sys.path.append( lib_path ) -from importer_helpers import ByconautImporter -""" - -""" - -################################################################################ -################################################################################ -################################################################################ - -def main(): - initialize_bycon_service() - BI = ByconautImporter() - BI.import_variants() - - -################################################################################ -################################################################################ - -if __name__ == '__main__': - main() diff --git a/rsrc/classificationTrees/EFOcnvassessment/numbered_hierarchies.tsv b/rsrc/classificationTrees/EFOcnvassessment/numbered_hierarchies.tsv deleted file mode 100644 index c5effd51..00000000 --- a/rsrc/classificationTrees/EFOcnvassessment/numbered_hierarchies.tsv +++ /dev/null @@ -1,12 +0,0 @@ -EFO:0030063 genomic copy number assessment 0 1 -EFO:0030064 regional base ploidy 1 2 -EFO:0030065 copy-neutral loss of heterozygosity 2 3 -EFO:0030066 relative copy number variation 1 4 -EFO:0030067 copy number loss 2 5 -EFO:0030068 low-level copy number loss 3 6 -EFO:0020073 high-level copy number loss 3 7 -EFO:0030069 complete genomic deletion 4 8 -EFO:0030070 copy number gain 2 9 -EFO:0030071 low-level copy number gain 3 10 -EFO:0030072 high-level copy number gain 3 11 -EFO:0030073 focal genome amplification 4 12 diff --git a/rsrc/classificationTrees/EFOfus/numbered-hierarchies.tsv b/rsrc/classificationTrees/EFOfus/numbered-hierarchies.tsv deleted file mode 100644 index f714f767..00000000 --- a/rsrc/classificationTrees/EFOfus/numbered-hierarchies.tsv +++ /dev/null @@ -1,14 +0,0 @@ -EFO:0030038 follow-up status 0 1 -EFO:0030039 no followup status 1 2 -EFO:0030040 recorded followup status 1 3 -EFO:0030041 alive (follow-up status) 2 4 -EFO:0030042 alive with disease 3 5 -EFO:0030043 alive in partial remission 4 6 -EFO:0030044 alive with stable disease 4 7 -EFO:0030045 alive with recurrent disease 4 8 -EFO:0030046 alive with progressive disease 4 9 -EFO:0030047 alive with metastatic disease 4 10 -EFO:0030048 alive in complete remission 3 11 -EFO:0030049 dead (follow-up status) 2 12 -EFO:0030050 death from disease 3 13 -EFO:0030051 death from other causes 3 14 diff --git a/rsrc/classificationTrees/EFOmaterial/numbered_hierarchies.tsv b/rsrc/classificationTrees/EFOmaterial/numbered_hierarchies.tsv deleted file mode 100644 index 2044f6c0..00000000 --- a/rsrc/classificationTrees/EFOmaterial/numbered_hierarchies.tsv +++ /dev/null @@ -1,8 +0,0 @@ -OBI:0000747 material sample 0 1 -EFO:0009654 reference sample 1 2 -EFO:0009655 abnormal sample 1 3 -EFO:0009656 neoplastic sample 2 4 -EFO:0010941 metastasis sample 3 5 -EFO:0010942 primary tumor sample 3 6 -EFO:0010943 recurrent tumor sample 3 7 -EFO:0030035 cancer cell line sample 3 8 diff --git a/rsrc/classificationTrees/GenomePlatforms/numbered_hierarchies.tsv b/rsrc/classificationTrees/GenomePlatforms/numbered_hierarchies.tsv deleted file mode 100644 index 4d58b21d..00000000 --- a/rsrc/classificationTrees/GenomePlatforms/numbered_hierarchies.tsv +++ /dev/null @@ -1,295 +0,0 @@ -EFO:0001456 DNA assay 0 1 -EFO:0002701 DNA array 1 2 -EFO:0030075 cDNA microarray 2 3 -geo:GPL6468 Stanford Microarray Facility cDNA array [Print_1185] 3 4 -geo:GPL1282 Stanford Microarray Facility cDNA array [SHBX] 3 5 -geo:GPL3254 Stanford Microarray Facility cDNA array [SHCK] 3 6 -geo:GPL2790 Stanford Microarray Facility cDNA array [SHCP] 3 7 -geo:GPL3355 Stanford Microarray Facility cDNA array [SHDJ] 3 8 -geo:GPL1448 Stanford Microarray Facility cDNA array [SHDK] 3 9 -geo:GPL3291 Stanford Microarray Facility cDNA array [SHDS] 3 10 -geo:GPL3381 Stanford Microarray Facility cDNA array [SHDV] 3 11 -geo:GPL3522 Stanford Microarray Facility cDNA array [SHDW] 3 12 -geo:GPL3528 Stanford Microarray Facility cDNA array [SHDZ] 3 13 -geo:GPL3523 Stanford Microarray Facility cDNA array [SHEG] 3 14 -geo:GPL3524 Stanford Microarray Facility cDNA array [SHEH] 3 15 -geo:GPL3332 Stanford Microarray Facility cDNA array [SHEJ] 3 16 -geo:GPL4640 Stanford Microarray Facility cDNA array [SHEL] 3 17 -geo:GPL1715 Stanford Microarray Facility cDNA array [SHEM] 3 18 -geo:GPL3382 Stanford Microarray Facility cDNA array [SHEN] 3 19 -geo:GPL3383 Stanford Microarray Facility cDNA array [SHEP] 3 20 -geo:GPL1831 Stanford Microarray Facility cDNA array [SHFA] 3 21 -geo:GPL3372 Stanford Microarray Facility cDNA array [SHFK] 3 22 -geo:GPL4639 Stanford Microarray Facility cDNA array [SHFM2] 3 23 -geo:GPL5620 Stanford Microarray Facility cDNA array [SHGS] 3 24 -geo:GPL179 Stanford Microarray Facility cDNA array [SVA] 3 25 -geo:GPL2830 Stanford Microarray Facility cDNA array [SVI] 3 26 -geo:GPL7778 Stanford Microarray Facility cDNA array [Print_1060] 3 27 -geo:GPL7779 Stanford Microarray Facility cDNA array [Print_1126] 3 28 -geo:GPL7780 Stanford Microarray Facility cDNA array [Print_1257] 3 29 -geo:GPL8999 Stanford Microarray Facility cDNA array [Print_1553 Homo sapiens] 3 30 -geo:GPL8641 Stanford Microarray Facility cDNA array [Print_798 Homo sapiens] 3 31 -geo:GPL7781 Stanford Microarray Facility cDNA array [Print_849] 3 32 -geo:GPL7782 Stanford Microarray Facility cDNA array [Print_924] 3 33 -geo:GPL7783 Stanford Microarray Facility cDNA array [Print_989] 3 34 -geo:GPL7784 Stanford Microarray Facility cDNA array [Print_999] 3 35 -geo:GPL4453 UGI Human 14112 V2.0 (cDNA) 3 36 -geo:GPL6382 UHN cDNA microarray 3 37 -geo:GPL6514 UHN Homo Sapiens cDNA microarray 10K 3 38 -geo:GPL6478 University Health Network Microarray Centre 19k human cDNA microarray 3 39 -EFO:0010938 large-insert clone DNA microarray 2 40 -geo:GPL4012 3.7k full genome LUMC BAC array 3 41 -geo:GPL8634 3.7k full genome LUMC BAC array, condensed version 3 42 -geo:GPL13392 3.7k LUMC BAC array 3 43 -geo:GPL4483 5808-v4-1q 3 44 -geo:GPL1432 6k-array, version 3/4. 3 45 -geo:GPL18197 ACC human 2K ver6.0. 3 46 -geo:GPL1424 AECOM-H3-H11 3 47 -geo:GPL8774 BCCRC 27K SMRT array 3 48 -geo:GPL2043 BCCRC Lam SMRT array 32k 3 49 -geo:GPL2735 BCCRC Lam SMRT array 32k_1.2 3 50 -geo:GPL2616 BCCRC Lam SMRTr array 3 51 -geo:GPL14360 BCCRC whole genome tilling path array v2 (March 2006 build) 3 52 -geo:GPL11285 Bluegnome human Cytochip_1.1_3 3 53 -geo:GPL11286 Bluegnome human Cytochip_1[1].1_4 3 54 -geo:GPL11287 Bluegnome human Cytochip_1[1].1_5 3 55 -geo:GPL11284 Bluegnome human Cytochip_v2 3 56 -geo:GPL3895 CCDTM Hs_CCDTM17.5k 3 57 -geo:GPL4505 Celltrans_5808_Osman_3xplt6 3 58 -geo:GPL1506 CGH array LUMC, 1 Mb clone set 3 59 -geo:GPL3892 CGH-CHROM14 2K 1 3 60 -geo:GPL3894 CGH-CHROM14 2K 2 3 61 -geo:GPL4003 CGH-SANGER 3K 1 3 62 -geo:GPL3888 CGH-SANGER 3K 2 3 63 -geo:GPL3889 CGH-SANGER 3K 3 3 64 -geo:GPL3893 CGH-SANGER 3K 5 3 65 -geo:GPL3887 CGH-SANGER 5K 2 3 66 -geo:GPL2013 Chinnaiyan Human 20K Hs6 3 67 -geo:GPL4615 Chr8 BACs 5.7K DNA array 3 68 -geo:GPL8186 Chromosome 3 dedicated BAC/PAC array for arrayCGH 3 69 -geo:GPL8187 Chromosome 3 dedicated BAC/PAC array with 3q26.3 tiling coverage for arrayCGH 3 70 -geo:GPL6575 CiC Homo sapiens Bac array version 1 3 71 -geo:GPL1998 CNIO H. sapiens 13.6k Oncochip 1 3 72 -geo:GPL2920 DKFZ Homo sapiens 6k-array, version 3/4, upgrade 3 73 -geo:GPL5713 DKFZ Homo sapiens 8k BAC array 3 74 -geo:GPL5452 DKFZ Homo sapiens 8k BAC-array 3 75 -geo:GPL6365 DKFZ Homo sapiens 8k BAC-array version 2 3 76 -geo:GPL5685 DKFZ Homo sapiens array-CGH 6k BAC array 3 77 -geo:GPL8175 DKFZ human 8k BAC chip 3 78 -geo:GPL9189 DKFZ SC112 / human 9k BAC chip (3k V6 - r24) 3 79 -geo:GPL6737 Fred Hutchinson Cancer Research Center human 4.3K BAC array 3 80 -geo:GPL7321 Homo sapiens 41.5K Print_1009 3 81 -geo:GPL7325 Homo sapiens 41.6K Print_933 3 82 -geo:GPL7323 Homo sapiens 41.7K Print_926 3 83 -geo:GPL7324 Homo sapiens 41.7K Print_931 3 84 -geo:GPL7322 Homo sapiens 43.1K Print_849 3 85 -geo:GPL6322 Homo sapiens 43K Print_769 3 86 -geo:GPL6181 Human 3K BAC/PAC array (Ensembl Ver39) 3 87 -geo:GPL5015 Human BAC array 2-4Mb NoGap 3 88 -geo:GPL28 HumArray 1.14 3 89 -geo:GPL3898 Institute of Cancer Research 5808-spot slide_version3 3 90 -geo:GPL9715 IntegraChip genome-wide BAC arrays 3 91 -geo:GPL5841 klingenkhh_BAC_3.7k_condensed_array 3 92 -geo:GPL5840 klingenkhh_BAC_32K_Full 3 93 -geo:GPL11237 Konyang-homo sapiens-Macarrray4.5k-v1.0 3 94 -geo:GPL3091 KUL Human 4k BAC array Aneuploidy Screening 3 95 -geo:GPL3455 KUL Human 4K_2 BAC array Aneuploidy Screening 3 96 -geo:GPL16895 LinkGenomics Whole Genome DNA Microarray 3 97 -geo:GPL8690 MacArary Karyo 4000 3 98 -geo:GPL10538 Macrogen Human BAC clone 4K array 3 99 -geo:GPL6853 Mermaid_Human_32K_CGH_v1.0 3 100 -geo:GPL7199 MHP Human 1Mb CGH array 3 101 -geo:GPL9336 MHP Human 1Mb_Chr18 CGH array 3 102 -geo:GPL6782 MHP Human 1Mb-resolution CGH array 3 103 -geo:GPL5055 MHP Human Chromosome 1 tile path CGH array version 1 3 104 -geo:GPL5056 MHP Human Chromosome 1 tile path CGH array version 2 3 105 -geo:GPL6783 MHP Human Chromosome 7 tiling-path CGH array 3 106 -geo:GPL5114 MPIMG Homo sapiens 36k_arrayCGH8 3 107 -geo:GPL3749 MPIMG Homo sapiens 44K aCGH2_MPIMG_BERLIN 3 108 -geo:GPL3960 MPIMG Homo sapiens 44K aCGH3_MPIMG_BERLIN 3 109 -geo:GPL5000 MPIMG Homo sapiens 44K ArrayCGH4 3 110 -geo:GPL6520 National Cancer Center of Singapore Human 32k BAC array(A) version 1 3 111 -geo:GPL6521 National Cancer Center of Singapore Human 32k BAC array(B) version 1 3 112 -geo:GPL4560 Netherlands Cancer Institute human 3.5k BAC array 3 113 -geo:GPL4894 Penn/CHOP Homo sapiens 4.5K (BAC array for studying Neuroblastoma) 3 114 -geo:GPL4939 Sanger Homo sapiens 4K CGH (CGH_SANGER_4K_1) 3 115 -geo:GPL3778 SMRT_arrays_human_BAC 3 116 -geo:GPL5772 SNU_Breast_CGH_v1.0 3 117 -geo:GPL5679 Spectral Chip 2600 BAC array 3 118 -geo:GPL2030 Spectral Genomics 2600 3 119 -geo:GPL5749 Spectral Genomics 2600 Human BAC array v. 1 3 120 -geo:GPL5750 Spectral Genomics 2600 Human BAC array v. 2 3 121 -geo:GPL3780 Spectral_Genomics_Human_BAC_array 3 122 -geo:GPL4482 spotted DNA/cDNA 3 123 -geo:GPL4723 SWEGENE_BAC_32K_Full 3 124 -geo:GPL7247 SWEGENE_BAC_33K_Full 3 125 -geo:GPL9077 SWEGENE_BAC_38K 3 126 -geo:GPL6088 UAB 32K v1 3 127 -geo:GPL4998 UCSF Cancer Center HumArray1.14 3 128 -geo:GPL4999 UCSF Cancer Center HumArray2.0 3 129 -geo:GPL6359 UCSF Cancer Center HumArray3.2 3 130 -geo:GPL4242 UCSF Homo sapiens 2.5K 3 131 -geo:GPL7298 UCSF Homo sapiens CGH 8p11q 3 132 -geo:GPL3789 UCSF HUMAN 1.14 3 133 -geo:GPL3868 UCSF HUMAN 1.14 v2 3 134 -geo:GPL3869 UCSF HUMAN 1.14 v3 3 135 -geo:GPL3993 UCSF HUMAN 1.14 v4 3 136 -geo:GPL2024 UCSF_HumArray 3 137 -geo:GPL3632 UCSF_HumArray 3 138 -geo:GPL13244 UCSF_PARK_Human BAC Array3.2Kuf 3 139 -geo:GPL4896 UCSF-CCC Homo sapiens 2.5K HumArray2.0 (2464 BAC clones each printed in triplicate) 3 140 -geo:GPL10093 UHN Human 19K cDNA microarray 3 141 -geo:GPL7096 UMCG_6.5KBAC_ARRAY 3 142 -geo:GPL7394 UMCG_6KBAC_ARRAY 3 143 -geo:GPL13177 University of Cambridge, Dept of Pathology, Centre for Microarray Resources 1 Mb aCGH platform_3584 unique clones 3 144 -geo:GPL13176 University of Pennsylvania/Nathanson Lab_HomoSapiens_5212 unique BACS_coleman_collaboration 3 145 -geo:GPL5338 University of Pennsylvania/Nathanson Lab_HomoSapiens_ChromosomeRegion_Virtual 3 146 -geo:GPL5672 UPenn Homo sapiens 6K BAC array (1MB interval spacing) 3 147 -geo:GPL3441 VUMC MACF human 5K BAC v12 3 148 -geo:GPL3442 VUMC MACF human 5K BAC v16 3 149 -geo:GPL3443 VUMC MACF human 5K BAC v21 3 150 -geo:GPL2842 VUMC MACF human 5K BAC v22 3 151 -geo:GPL2843 VUMC MACF human 6K BAC v45 3 152 -EFO:0010939 oligonucleotide DNA microarray 2 153 -geo:GPL21558 [OncoScan_CNV] Affymetrix OncoScan CNV FFPE Assay 3 154 -geo:GPL18602 [OncoScan] Affymetrix OncoScan FFPE Assay 3 155 -geo:GPL10722 021764 Agilent Human Genotypic Designed CGH 105k Microarray 3 156 -geo:GPL9775 85KBGL2V3 ROMA Custom Human Microarray 3 157 -geo:GPL9776 85KBGL2V4 ROMA Custom Human Microarray 3 158 -geo:GPL8581 85KV4 ROMA Custom Human Microarray (Format 28) 3 159 -geo:GPL2014 Affymetrix GeneChip Human Mapping 50K Hind - prerelease 3 160 -geo:GPL2015 Affymetrix GeneChip Human Mapping 50K Xba - prerelease 3 161 -geo:GPL8876 Agilent custom 105K array (Agilent-019507) 3 162 -geo:GPL13346 Agilent custom 2 x 415K human CGH 3 163 -geo:GPL5149 Agilent Homo sapiens 185K array 3 164 -arrayexpress:A-MEXP-1134 Agilent Human Genome CGH Microarray 44K 014950 G4426B 3 165 -arrayexpress:A-MEXP-1886 Agilent Human Genome CGH Microarray 4x180K 3 166 -geo:GPL10383 Agilent MQD Lab Human 60K probes v1.0 - custom oligo array of 2Kb resolutoin covering 7q region 3 167 -geo:GPL8687 Agilent SurePrint G3 CGH array (4X180K) CCA_VUMC design AMADID#022522 3 168 -arrayexpress:A-MEXP-1981 Agilent SurePrint G3 Human CGH Microarray 1x1M 021529 3 169 -geo:GPL8355 Agilent-012700 Human Genome CGH Microarray 44A G4410A_beta (Feature Number version) 3 170 -geo:GPL2873 Agilent-012750 Human Genome CGH Microarray 44A (Feature number version) 3 171 -geo:GPL11069 Agilent-012750 Human Genome CGH Microarray 44A (Probe name version) 3 172 -geo:GPL2879 Agilent-013282 Human Genome CGH Microarray 44B (Feature number version) 3 173 -geo:GPL11068 Agilent-013282 Human Genome CGH Microarray 44B (Probe name version) 3 174 -geo:GPL11340 Agilent-014068 Homo sapiens 185K microarray 3 175 -geo:GPL4544 Agilent-014584 Human Genome 244K CGH Microarray (Alpha Test) 3 176 -geo:GPL4091 Agilent-014693 Human Genome CGH Microarray 244A (Feature number version) 3 177 -geo:GPL9128 Agilent-014693 Human Genome CGH Microarray 244A (Probe name version) 3 178 -geo:GPL4093 Agilent-014698 Human Genome CGH Microarray 105A (G4412A) 3 179 -geo:GPL9075 Agilent-014698 Human Genome CGH Microarray 105A (G4412A) [Probe Name version] 3 180 -geo:GPL5477 Agilent-014950 Human Genome CGH Microarray 4x44K (Feature Number version) 3 181 -geo:GPL8841 Agilent-014950 Human Genome CGH Microarray 4x44K (Probe Name version) 3 182 -geo:GPL5571 Agilent-015092 Whole Human Genome Microarray 4x44K 3 183 -geo:GPL14791 Agilent-018519 Human Chromosome 17 Custom Tiling Array 3 184 -geo:GPL8693 Agilent-019015 HD CGH Microarray (2X105K) Oxford design AMADID#019015 (Feature number version) 3 185 -geo:GPL8736 Agilent-021529 Human CGH Whole Genome Microarray 1x1M (G4447A) (Feature Number version) 3 186 -geo:GPL8737 Agilent-021529 Human CGH Whole Genome Microarray 1x1M (G4447A) (Probe Name version) 3 187 -geo:GPL15068 Agilent-021825 3q7q_nov2008 3 188 -geo:GPL9777 Agilent-021850 SurePrint G3 Human CGH Microarray (Feature Number version) 3 189 -geo:GPL10152 Agilent-021924 SurePrint G3 Human CGH Microarray 8x60K (Feature Number version) 3 190 -geo:GPL17052 Agilent-021924 SurePrint G3 Human CGH Microarray 8x60K (Probe Name version) 3 191 -geo:GPL10123 Agilent-022060 SurePrint G3 Human CGH Microarray 4x180K (Feature Number version) 3 192 -geo:GPL10150 Agilent-022060 SurePrint G3 Human CGH Microarray 4x180K (Probe Name version) 3 193 -geo:GPL16694 Agilent-022522 SurePrint G3 CGH array 4X180K (Probe Name version) 3 194 -geo:GPL16050 Agilent-023797 Lymphoma (Agilent Probe ID) 3 195 -geo:GPL7314 CSHL Homo Sapiens 385k oligo array 1.0 3 196 -geo:GPL7313 CSHL Homo Sapiens 85k oligo array 4.0 3 197 -geo:GPL13519 Custom Agilent Human Chromosome 5q21 Tiling Array 3 198 -geo:GPL6745 Eppendorf DualChip Human Cancer v1.1 3 199 -geo:GPL13171 German Cancer Research Center human 33K BAC array 3 200 -geo:GPL18586 Human 1 Mb - resolution CGH array 3 201 -geo:GPL5737 Human 30K 60-mer oligo array 3 202 -geo:GPL6984 Illumina Human1M-Duov3 DNA Analysis BeadChip (Human1M-Duov3_B) 3 203 -geo:GPL6983 Illumina Human1Mv1 DNA Analysis BeadChip (Human1Mv1_C) 3 204 -geo:GPL8887 Illumina Human610-Quad v1.0 BeadChip 3 205 -arrayexpress:A-GEOD-8887 Illumina Human610-Quad v1.0 BeadChip 4 206 -geo:GPL8888 Illumina Human660W-Quad v1.0 BeadChip 3 207 -arrayexpress:A-GEOD-8888 Illumina Human660W-Quad v1.0 BeadChip 4 208 -geo:GPL18636 Illumina Human660W-Quad v1.0 BeadChip (hg19) 3 209 -geo:GPL6986 Illumina HumanCNV370-Duov1 DNA Analysis BeadChip (HumanCNV370v1) 3 210 -arrayexpress:A-GEOD-6986 Illumina HumanCNV370-Duov1 DNA Analysis BeadChip (HumanCNV370v1) 4 211 -geo:GPL6985 Illumina HumanCNV370-QuadV3 DNA Analysis BeadChip (HumanCNV370-QuadV3_C) 3 212 -arrayexpress:A-GEOD-6985 Illumina HumanCNV370-QuadV3 DNA Analysis BeadChip (HumanCNV370-QuadV3_C) 4 213 -geo:GPL6988 Illumina HumanExon510-Sv1 DNA Analysis BeadChip (HumanExon510Sv1_D) 3 214 -geo:GPL9798 IRCL Human Genome CGH Microarray 44B G4410B (probe version) 3 215 -geo:GPL7203 LUH Human Genome CGH Microarray 244A 3 216 -geo:GPL6400 NCI NimbleGen Homo sapiens HG17 Whole Genome 385K Tiling Set version 1 3 217 -geo:GPL13786 NCI NimbleGen Homo sapiens HG19 Whole Genome 385K Tiling Set version 1 3 218 -geo:GPL5326 NCI Qiagen Homo sapiens 36K v3 cgh expression 3 219 -geo:GPL5046 nhgri_qiagenv3_cgh 3 220 -geo:GPL8233 Nimblegen 2006-08-02_GRI4489_HG18_ChIP array 3 221 -geo:GPL6639 Nimblegen 385K custom array (Human tiling array of hg16 at 50bp resolution (chr17q, chr20q, etc)). 3 222 -geo:GPL5144 Nimblegen Homo sapiens 4 array Tiling Set 3 223 -geo:GPL10197 Nimblegen Human 12x135K array [090527_HG18_WG_CGH_v3.1_HX12] 3 224 -geo:GPL9944 NimbleGen Human 2.1M array [HG18_CGH_LISOv1_HX1] 3 225 -geo:GPL14965 NimbleGen Human 3x720k Whole Genome CGH [100718_HG18_WG_CGH_v3.1_HX3] 3 226 -geo:GPL13190 NimbleGen Human CGH 2.1M Whole-Genome Tiling Array [080131_HG18_WG_CGH_v2D_HX1] 3 227 -geo:GPL9708 NimbleGen Human CGH 385K Whole-Genome Tiling Array v1.0 3 228 -geo:GPL15436 NimbleGen Human CGH 3x720K Whole-Genome Tiling v3.0 Array [090527_HG18_WG_CGH_v3.1_HX3] 3 229 -geo:GPL16707 NimbleGen Human Whole Genome CGH array [100718_HG18_WG_CGH_v3.1_HX12] 3 230 -geo:GPL9041 NimbleGen_HG18_WG_385k_v2 3 231 -geo:GPL9042 NimbleGen_HG18_WG_385k_v2 3 232 -geo:GPL10461 NimbleGen_Homo Sapiens_720k_080530_HG18_WG_CGH_v2_HX3 3 233 -geo:GPL6254 Phalanx Human OneArray 3 234 -geo:GPL8720 ROMA 390K Rubble Rep Human Microarray (Design 36) 3 235 -geo:GPL3896 Sentrix庐 Linkage IV Panel BeadChip 3 236 -geo:GPL9852 UMR745 INSERM Human NF1 8x15K v1.0 3 237 -geo:GPL10001 VUMC MACF Human 30K oligo (batch68.gal) 3 238 -geo:GPL3055 VUMC MACF human 30K oligo v30 3 239 -geo:GPL2826 VUMC MACF human 30K oligo v31 3 240 -geo:GPL2834 VUMC MACF human 30K oligo v36 3 241 -geo:GPL2819 VUMC MACF human 30K oligo v42 3 242 -geo:GPL2827 VUMC MACF human 30K oligo v44 3 243 -geo:GPL8368 VUMC MACF Human 30k oligo v62 3 244 -EFO:0002703 SNP array 3 245 -geo:GPL18637 [CytoScan750K_Array] Affymetrix CytoScan 750K Array 4 246 -arrayexpress:A-GEOD-18637 [CytoScan750K_Array] Affymetrix CytoScan 750K Array 5 247 -geo:GPL16131 [CytoScanHD_Array] Affymetrix CytoScan HD Array 4 248 -arrayexpress:A-GEOD-16131 [CytoScanHD_Array] Affymetrix CytoScan HD array 2.8M 5 249 -geo:GPL6804 [GenomeWideSNP_5] Affymetrix Genome-Wide Human SNP 5.0 Array 4 250 -geo:GPL6801 [GenomeWideSNP_6] Affymetrix Genome-Wide Human SNP 6.0 Array 4 251 -arrayexpress:A-AFFY-142 [GenomeWideSNP_6] Affymetrix Genome-Wide Human SNP 6.0 Array 5 252 -geo:GPL8226 Johns Hopkins University/Affymetrix GeneChip Genome-Wide Human SNP Array 6.0 5 253 -geo:GPL1266 [Mapping10K_Xba131] Affymetrix Human Mapping 10K SNP Array 4 254 -geo:GPL2641 [Mapping10K_Xba142] Affymetrix Human Mapping 10K 2.0 Array 4 255 -arrayexpress:A-AFFY-65 Affymetrix GeneChip Human Mapping 10K 2.0 Array Xba 142 5 256 -geo:GPL3718 [Mapping250K_Nsp] Affymetrix Mapping 250K Nsp SNP Array 4 257 -arrayexpress:A-AFFY-107 Affymetrix GeneChip Human Mapping 250K Array Nsp [Mapping250K_Nsp] 5 258 -geo:GPL3720 [Mapping250K_Sty] Affymetrix Mapping 250K Sty2 SNP Array 4 259 -arrayexpress:A-AFFY-72 Affymetrix GeneChip Human Mapping 250K Array Sty [Mapping250K_Sty] 5 260 -geo:GPL16237 Agilent-030587 CCMC CGH plus SNP 180k Microarray 4 261 -geo:GPL9202 Agilent/FIMM Human 95K Array 4 262 -geo:GPL2004 [Mapping50K_Hind240] Affymetrix Human Mapping 50K Hind240 SNP Array 4 263 -arrayexpress:A-AFFY-69 Affymetrix GeneChip Human Mapping 50K Array Hind 240 [Mapping50K_Hind240] 5 264 -geo:GPL2005 [Mapping50K_Xba240] Affymetrix Human Mapping 50K Xba240 SNP Array 4 265 -arrayexpress:A-AFFY-70 Affymetrix GeneChip Human Mapping 50K Array Xba 240 [Mapping50K_Xba240] 5 266 -geo:GPL13135 HumanOmniExpress BeadChip 4 267 -arrayexpress:A-GEOD-17913 Illumina HumanCore-12v1 SNP array 4 268 -geo:GPL8856 Illumina HumanCytoSnp-12 Beadchip version 1.0 4 269 -geo:GPL8855 Illumina HumanCytoSnp-12 Beadchip version 2.0 4 270 -geo:GPL13829 Illumina HumanCytoSNP-12 v2.1 BeadChip 4 271 -arrayexpress:A-MEXP-1677 Illumina Human Custom GoldenGate 1536 SNPs 4 272 -arrayexpress:A-GEOD-17886 Illumina GoldenGate custom 96 SNP microarray 4 273 -arrayexpress:A-MTAB-613 Illumina HumanOmni1-Quad v1.0 4 274 -arrayexpress:A-MTAB-614 Illumina HumanOmniExpress-12 v1.0 4 275 -arrayexpress:A-GEOD-18643 Illumina HumanOmniExpressFFPE-12 BeadChip 4 276 -arrayexpress:A-GEOD-14157 Illumina HumanOmni5-Quad BeadChip (HumanOmni5-4v1_B) 4 277 -geo:GPL6980 Illumina HumanHap300-Duov2 Genotyping BeadChip (HumanHap300v2_A) 4 278 -geo:GPL6979 Illumina HumanHap300v1 Genotyping BeadChip (HumanHap300_(v1.0.0)) 4 279 -geo:GPL6982 Illumina HumanHap550-Duov3 Genotyping BeadChip (HumanHap550-2v3_B) 4 280 -geo:GPL6981 Illumina HumanHap550v3 Genotyping BeadChip (HumanHap550v3_B) 4 281 -geo:GPL8882 Illumina HumanOmni1-Quad BeadChip 4 282 -arrayexpress:A-GEOD-8882 Illumina HumanOmni1-Quad BeadChip 5 283 -geo:GPL16573 Illumina HumanOmni1-Quad BeadChip (15004098) 4 284 -geo:GPL16110 Illumina HumanOmni2.5 BeadChip (hg19) 4 285 -geo:GPL13314 Illumina HumanOmni2.5-Quad BeadChip 4 286 -arrayexpress:A-GEOD-13314 Illumina HumanOmni2.5-Quad BeadChip 5 287 -geo:GPL5711 Sentrix BeadChip Array HumanHap300 Genotyping BeadChip 317K, TagSNP Phase I, v1.1 4 288 -geo:GPL11365 Agilent-029830 Human Genome CGH + SNP Microarray (Probe Name version) 4 289 -EFO:0030076 methylation-specific microarray 3 290 -geo:GPL23976 Illumina Infinium HumanMethylation850 BeadChip 4 291 -EFO:0010937 comparative genomic hybridization (CGH) 1 292 -OBI:0002117 whole genome sequencing assay 1 293 -OBI:0002118 exome sequencing assay 1 294 -NCIT:C16437 Chromosome Banding 1 295 \ No newline at end of file diff --git a/rsrc/classificationTrees/NCIT/numbered_hierarchies.tsv b/rsrc/classificationTrees/NCIT/numbered_hierarchies.tsv deleted file mode 100644 index 5d38f08c..00000000 --- a/rsrc/classificationTrees/NCIT/numbered_hierarchies.tsv +++ /dev/null @@ -1,286547 +0,0 @@ -NCIT:C132256 Unspecified Tissue 0 0 -NCIT:C3262 Neoplasm 0 1 -NCIT:C3263 Neoplasm by Site 1 2 -NCIT:C156482 Genitourinary System Neoplasm 2 3 -NCIT:C156483 Benign Genitourinary System Neoplasm 3 4 -NCIT:C190602 Childhood Benign Genitourinary System Neoplasm 4 5 -NCIT:C123837 Childhood Testicular Mature Teratoma 5 6 -NCIT:C189337 Childhood Mullerian Papilloma 5 7 -NCIT:C190608 Childhood Benign Kidney Neoplasm 5 8 -NCIT:C157745 Childhood Cystic Nephroma 6 9 -NCIT:C66774 Ossifying Renal Tumor of Infancy 6 10 -NCIT:C190658 Childhood Benign Ovarian Neoplasm 5 11 -NCIT:C189288 Childhood Ovarian Fibroma 6 12 -NCIT:C189289 Childhood Ovarian Sclerosing Stromal Tumor 6 13 -NCIT:C6548 Childhood Ovarian Mature Teratoma 6 14 -NCIT:C40330 Vulvar Congenital Melanocytic Nevus 5 15 -NCIT:C4893 Benign Urinary System Neoplasm 4 16 -NCIT:C191740 Squamous Papilloma of the Urinary Tract 5 17 -NCIT:C39834 Bladder Squamous Papilloma 6 18 -NCIT:C191750 Villous Adenoma of the Urinary Tract 5 19 -NCIT:C7414 Bladder Villous Adenoma 6 20 -NCIT:C3617 Benign Ureter Neoplasm 5 21 -NCIT:C4530 Ureter Polyp 6 22 -NCIT:C6160 Ureter Urothelial Papilloma 6 23 -NCIT:C6174 Ureter Inverted Papilloma 7 24 -NCIT:C6161 Ureter Leiomyoma 6 25 -NCIT:C6162 Ureter Schwannoma 6 26 -NCIT:C3618 Benign Bladder Neoplasm 5 27 -NCIT:C159674 Bladder Benign PEComa 6 28 -NCIT:C159680 Bladder Hemangioma 6 29 -NCIT:C159682 Bladder Neurofibroma 6 30 -NCIT:C39834 Bladder Squamous Papilloma 6 31 -NCIT:C39858 Bladder Urothelial Papilloma 6 32 -NCIT:C39859 Bladder Inverted Papilloma 7 33 -NCIT:C6178 Bladder Leiomyoma 6 34 -NCIT:C7414 Bladder Villous Adenoma 6 35 -NCIT:C3619 Benign Urethral Neoplasm 5 36 -NCIT:C39872 Urethral Villous Adenoma 6 37 -NCIT:C4532 Benign Accessory Urethral Gland Neoplasm 6 38 -NCIT:C5061 Urethral Urothelial Papilloma 6 39 -NCIT:C6173 Urethral Inverted Papilloma 7 40 -NCIT:C6169 Urethral Condyloma Acuminatum 6 41 -NCIT:C6171 Urethral Leiomyoma 6 42 -NCIT:C3842 Urothelial Papilloma 5 43 -NCIT:C39858 Bladder Urothelial Papilloma 6 44 -NCIT:C39859 Bladder Inverted Papilloma 7 45 -NCIT:C4528 Renal Pelvis Urothelial Papilloma 6 46 -NCIT:C6187 Renal Pelvis Inverted Papilloma 7 47 -NCIT:C5061 Urethral Urothelial Papilloma 6 48 -NCIT:C6173 Urethral Inverted Papilloma 7 49 -NCIT:C6160 Ureter Urothelial Papilloma 6 50 -NCIT:C6174 Ureter Inverted Papilloma 7 51 -NCIT:C6192 Inverted Urothelial Papilloma 6 52 -NCIT:C39859 Bladder Inverted Papilloma 7 53 -NCIT:C6173 Urethral Inverted Papilloma 7 54 -NCIT:C6174 Ureter Inverted Papilloma 7 55 -NCIT:C6187 Renal Pelvis Inverted Papilloma 7 56 -NCIT:C4778 Benign Kidney Neoplasm 5 57 -NCIT:C157748 Metanephric Tumor 6 58 -NCIT:C157749 Metanephric Stromal Tumor 7 59 -NCIT:C27253 Metanephric Adenoma 7 60 -NCIT:C39812 Metanephric Adenofibroma 7 61 -NCIT:C159209 Kidney Leiomyoma 6 62 -NCIT:C159211 Kidney Hemangioma 6 63 -NCIT:C159214 Kidney Lymphangioma 6 64 -NCIT:C159221 Kidney Schwannoma 6 65 -NCIT:C190608 Childhood Benign Kidney Neoplasm 6 66 -NCIT:C157745 Childhood Cystic Nephroma 7 67 -NCIT:C66774 Ossifying Renal Tumor of Infancy 7 68 -NCIT:C191391 Kidney Classic Angiomyolipoma 6 69 -NCIT:C191392 Kidney Oncocytoma-Like Angiomyolipoma 7 70 -NCIT:C191393 Kidney Angiomyolipoma with Epithelial Cysts 7 71 -NCIT:C3616 Benign Renal Pelvis Neoplasm 6 72 -NCIT:C4528 Renal Pelvis Urothelial Papilloma 7 73 -NCIT:C6187 Renal Pelvis Inverted Papilloma 8 74 -NCIT:C37264 Benign Kidney Mixed Epithelial and Stromal Tumor 6 75 -NCIT:C4162 Juxtaglomerular Cell Tumor 6 76 -NCIT:C4526 Kidney Oncocytoma 6 77 -NCIT:C8960 Hereditary Kidney Oncocytoma 7 78 -NCIT:C5100 Renomedullary Interstitial Cell Tumor 6 79 -NCIT:C5101 Kidney Lipoma 6 80 -NCIT:C8383 Kidney Adenoma 6 81 -NCIT:C27253 Metanephric Adenoma 7 82 -NCIT:C3687 Renal Papillary Adenoma 7 83 -NCIT:C7617 Benign Reproductive System Neoplasm 4 84 -NCIT:C139547 Fibroadenoma of Anogenital Mammary-Type Glands 5 85 -NCIT:C128242 Vulvar Fibroadenoma 6 86 -NCIT:C139546 Anal Fibroadenoma 6 87 -NCIT:C2860 Adrenal Rest Tumor 5 88 -NCIT:C4777 Benign Male Reproductive System Neoplasm 5 89 -NCIT:C161643 Benign Seminal Vesicle Neoplasm 6 90 -NCIT:C161638 Seminal Vesicle Leiomyoma 7 91 -NCIT:C161639 Seminal Vesicle Schwannoma 7 92 -NCIT:C161640 Seminal Vesicle Mammary-Type Myofibroblastoma 7 93 -NCIT:C39907 Seminal Vesicle Cystadenoma 7 94 -NCIT:C162476 Paratesticular Adenomatoid Tumor 6 95 -NCIT:C6382 Epididymal Adenomatoid Tumor 7 96 -NCIT:C162494 Paratesticular Leiomyoma 6 97 -NCIT:C161638 Seminal Vesicle Leiomyoma 7 98 -NCIT:C162496 Paratesticular Rhabdomyoma 6 99 -NCIT:C162498 Paratesticular Cellular Angiofibroma 6 100 -NCIT:C162500 Paratesticular Mammary-Type Myofibroblastoma 6 101 -NCIT:C161640 Seminal Vesicle Mammary-Type Myofibroblastoma 7 102 -NCIT:C162501 Paratesticular Deep (Aggressive) Angiomyxoma 6 103 -NCIT:C162502 Paratesticular Schwannoma 6 104 -NCIT:C161639 Seminal Vesicle Schwannoma 7 105 -NCIT:C162503 Paratesticular Hemangioma 6 106 -NCIT:C3489 Benign Penile Neoplasm 6 107 -NCIT:C162579 Penile Hemangioma 7 108 -NCIT:C162580 Penile Epithelioid Hemangioma 8 109 -NCIT:C162583 Penile Leiomyoma 7 110 -NCIT:C162586 Penile Schwannoma 7 111 -NCIT:C162587 Penile Neurofibroma 7 112 -NCIT:C162590 Penile Myointimoma 7 113 -NCIT:C162592 Penile Lymphangioma 7 114 -NCIT:C3612 Benign Testicular Neoplasm 6 115 -NCIT:C39951 Testicular Fibroma 7 116 -NCIT:C6355 Mature Testicular Teratoma 7 117 -NCIT:C123837 Childhood Testicular Mature Teratoma 8 118 -NCIT:C36092 Testicular Dermoid Cyst 8 119 -NCIT:C6522 Benign Testicular Sertoli Cell Tumor 7 120 -NCIT:C39943 Testicular Sertoli Cell Tumor, Lipid Rich Variant 8 121 -NCIT:C39945 Testicular Sclerosing Sertoli Cell Tumor 8 122 -NCIT:C3613 Benign Prostate Neoplasm 6 123 -NCIT:C161581 Prostate Hemangioma 7 124 -NCIT:C161606 Prostate Cystadenoma 7 125 -NCIT:C3972 Prostate Fibroma 7 126 -NCIT:C4795 Prostate Adenoma 7 127 -NCIT:C5532 Benign Prostate Phyllodes Tumor 7 128 -NCIT:C5544 Prostate Leiomyoma 7 129 -NCIT:C3614 Benign Epididymal Neoplasm 6 130 -NCIT:C162483 Epididymal Cystadenoma 7 131 -NCIT:C155953 Epididymal Papillary Cystadenoma 8 132 -NCIT:C6382 Epididymal Adenomatoid Tumor 7 133 -NCIT:C39956 Rete Testis Adenoma 6 134 -NCIT:C6384 Paratesticular Lipoma 6 135 -NCIT:C3606 Spermatic Cord Lipoma 7 136 -NCIT:C4934 Benign Female Reproductive System Neoplasm 5 137 -NCIT:C126493 Benign Uterine Ligament Neoplasm 6 138 -NCIT:C155952 Uterine Ligament Papillary Cystadenoma 7 139 -NCIT:C179921 Broad Ligament Papillary Cystadenoma 8 140 -NCIT:C40142 Uterine Ligament Papillary Cystadenoma Associated with von Hippel-Lindau Disease 8 141 -NCIT:C179923 Uterine Ligament Leiomyoma 7 142 -NCIT:C179924 Broad Ligament Leiomyoma 8 143 -NCIT:C179925 Uterine Ligament Adenomyoma 7 144 -NCIT:C179933 Benign Broad Ligament Neoplasm 7 145 -NCIT:C126476 Broad Ligament Serous Cystadenoma 8 146 -NCIT:C179921 Broad Ligament Papillary Cystadenoma 8 147 -NCIT:C179924 Broad Ligament Leiomyoma 8 148 -NCIT:C2895 Benign Ovarian Neoplasm 6 149 -NCIT:C126331 Ovarian Adenomatoid Tumor 7 150 -NCIT:C179360 Ovarian Leiomyoma 7 151 -NCIT:C190658 Childhood Benign Ovarian Neoplasm 7 152 -NCIT:C189288 Childhood Ovarian Fibroma 8 153 -NCIT:C189289 Childhood Ovarian Sclerosing Stromal Tumor 8 154 -NCIT:C6548 Childhood Ovarian Mature Teratoma 8 155 -NCIT:C4510 Benign Ovarian Epithelial Tumor 7 156 -NCIT:C40039 Benign Ovarian Mucinous Tumor 8 157 -NCIT:C40040 Ovarian Mucinous Adenofibroma 9 158 -NCIT:C40041 Ovarian Mucinous Cystadenofibroma 10 159 -NCIT:C4512 Ovarian Mucinous Cystadenoma 9 160 -NCIT:C40072 Benign Ovarian Endometrioid Tumor 8 161 -NCIT:C27287 Ovarian Endometrioid Adenofibroma 9 162 -NCIT:C27288 Ovarian Endometrioid Cystadenofibroma 10 163 -NCIT:C40075 Ovarian Endometrioid Cystadenoma 9 164 -NCIT:C40084 Benign Ovarian Clear Cell Tumor 8 165 -NCIT:C40085 Ovarian Clear Cell Adenofibroma 9 166 -NCIT:C40086 Ovarian Clear Cell Cystadenofibroma 10 167 -NCIT:C4060 Ovarian Cystadenoma 8 168 -NCIT:C126310 Ovarian Seromucinous Cystadenoma 9 169 -NCIT:C40075 Ovarian Endometrioid Cystadenoma 9 170 -NCIT:C4511 Ovarian Serous Cystadenoma 9 171 -NCIT:C7278 Ovarian Papillary Cystadenoma 10 172 -NCIT:C4512 Ovarian Mucinous Cystadenoma 9 173 -NCIT:C4746 Benign Ovarian Brenner Tumor 8 174 -NCIT:C7282 Benign Ovarian Seromucinous Tumor 8 175 -NCIT:C126310 Ovarian Seromucinous Cystadenoma 9 176 -NCIT:C126311 Ovarian Seromucinous Adenofibroma 9 177 -NCIT:C7313 Benign Ovarian Serous Tumor 8 178 -NCIT:C40031 Ovarian Serous Adenofibroma 9 179 -NCIT:C40032 Ovarian Serous Cystadenofibroma 10 180 -NCIT:C4511 Ovarian Serous Cystadenoma 9 181 -NCIT:C7278 Ovarian Papillary Cystadenoma 10 182 -NCIT:C7279 Ovarian Surface Papilloma 9 183 -NCIT:C4516 Benign Ovarian Germ Cell Tumor 7 184 -NCIT:C8112 Mature Ovarian Teratoma 8 185 -NCIT:C3856 Ovarian Dermoid Cyst 9 186 -NCIT:C39996 Ovarian Fetiform Teratoma 9 187 -NCIT:C6548 Childhood Ovarian Mature Teratoma 9 188 -NCIT:C7285 Ovarian Solid Teratoma 9 189 -NCIT:C5245 Ovarian Myxoma 7 190 -NCIT:C6803 Benign Ovarian Sex Cord-Stromal Tumor 7 191 -NCIT:C121953 Ovarian Microcystic Stromal Tumor 8 192 -NCIT:C3498 Ovarian Fibroma 8 193 -NCIT:C189288 Childhood Ovarian Fibroma 9 194 -NCIT:C7291 Ovarian Cellular Fibroma 9 195 -NCIT:C39977 Ovarian Stromal-Leydig Cell Tumor 8 196 -NCIT:C4204 Ovarian Sclerosing Stromal Tumor 8 197 -NCIT:C189289 Childhood Ovarian Sclerosing Stromal Tumor 9 198 -NCIT:C5219 Benign Ovarian Thecoma 8 199 -NCIT:C39964 Typical Ovarian Thecoma 9 200 -NCIT:C6264 Benign Ovarian Luteinized Thecoma 9 201 -NCIT:C126321 Ovarian Luteinized Thecoma Associated with Sclerosing Peritonitis 10 202 -NCIT:C3609 Benign Uterine Neoplasm 6 203 -NCIT:C3607 Benign Cervical Neoplasm 7 204 -NCIT:C128053 Benign Cervical Soft Tissue Neoplasm 8 205 -NCIT:C128046 Cervical Leiomyoma 9 206 -NCIT:C40266 Cervical Rhabdomyoma 9 207 -NCIT:C34584 Endocervical Polyp 8 208 -NCIT:C6856 Cervical Microglandular Polyp 9 209 -NCIT:C40215 Cervical Mullerian Papilloma 8 210 -NCIT:C40227 Benign Cervical Mixed Epithelial and Mesenchymal Neoplasm 8 211 -NCIT:C40230 Cervical Adenofibroma 9 212 -NCIT:C40231 Cervical Adenomyoma 9 213 -NCIT:C40232 Cervical Adenomyoma, Endocervical-Type 10 214 -NCIT:C40233 Cervical Adenomyoma, Mesonephric-Type 10 215 -NCIT:C40234 Cervical Atypical Polypoid Adenomyoma 10 216 -NCIT:C40240 Cervical Blue Nevus 8 217 -NCIT:C6342 Cervical Squamous Papilloma 8 218 -NCIT:C3608 Benign Uterine Corpus Neoplasm 7 219 -NCIT:C127071 Benign Uterine Corpus PEComa 8 220 -NCIT:C27250 Uterine Corpus Adenomatoid Tumor 8 221 -NCIT:C3434 Uterine Corpus Leiomyoma 8 222 -NCIT:C126975 Uterine Corpus Hydropic Leiomyoma 9 223 -NCIT:C3511 Uterine Corpus Degenerated Leiomyoma 9 224 -NCIT:C40162 Uterine Corpus Leiomyoma, Mitotically Active Variant 9 225 -NCIT:C40163 Uterine Corpus Cellular Leiomyoma 9 226 -NCIT:C40164 Uterine Corpus Epithelioid Leiomyoma 9 227 -NCIT:C40165 Uterine Corpus Apoplectic Leiomyoma 9 228 -NCIT:C40166 Uterine Corpus Myxoid Leiomyoma 9 229 -NCIT:C40167 Uterine Corpus Bizarre Leiomyoma 9 230 -NCIT:C40168 Uterine Corpus Lipoleiomyoma 9 231 -NCIT:C40170 Uterine Corpus Diffuse Leiomyomatosis 9 232 -NCIT:C40172 Uterine Corpus Dissecting Leiomyoma 9 233 -NCIT:C40173 Uterine Corpus Metastasizing Leiomyoma 9 234 -NCIT:C5356 Uterine Corpus Intravenous Leiomyomatosis 9 235 -NCIT:C4262 Endometrial Stromal Nodule 8 236 -NCIT:C4894 Benign Endometrial Neoplasm 8 237 -NCIT:C6335 Benign Uterine Corpus Mixed Epithelial and Mesenchymal Neoplasm 8 238 -NCIT:C6337 Uterine Corpus Adenofibroma 9 239 -NCIT:C6338 Uterine Corpus Adenomyoma 9 240 -NCIT:C40235 Uterine Corpus Atypical Polypoid Adenomyoma 10 241 -NCIT:C6433 Endometrial Polyp 8 242 -NCIT:C3610 Benign Vaginal Neoplasm 6 243 -NCIT:C128079 Vaginal Superficial Myofibroblastoma 7 244 -NCIT:C128113 Vaginal Dermoid Cyst 7 245 -NCIT:C40255 Vaginal Mullerian Papilloma 7 246 -NCIT:C40273 Vaginal Deep (Aggressive) Angiomyxoma 7 247 -NCIT:C40275 Benign Vaginal Mixed Epithelial and Mesenchymal Neoplasm 7 248 -NCIT:C40280 Benign Vaginal Mixed Tumor 8 249 -NCIT:C40281 Benign Vaginal Melanocytic Nevus 7 250 -NCIT:C40282 Vaginal Blue Nevus 8 251 -NCIT:C45445 Vaginal Angiomyofibroblastoma 7 252 -NCIT:C6372 Vaginal Rhabdomyoma 7 253 -NCIT:C6373 Vaginal Leiomyoma 7 254 -NCIT:C6374 Vaginal Squamous Papilloma 7 255 -NCIT:C3611 Benign Vulvar Neoplasm 6 256 -NCIT:C128240 Vulvar Hidradenoma Papilliferum 7 257 -NCIT:C128242 Vulvar Fibroadenoma 7 258 -NCIT:C128270 Vulvar Lipoma 7 259 -NCIT:C128271 Vulvar Fibrolipoma 8 260 -NCIT:C128272 Vulvar Superficial Myofibroblastoma 7 261 -NCIT:C139548 Vulvar Composite Hidradenoma Papilliferum and Fibroadenoma 7 262 -NCIT:C181906 Benign Vulvar Phyllodes Tumor 7 263 -NCIT:C181925 Vulvar Lipoblastoma-Like Tumor 7 264 -NCIT:C181926 Vulvar Prepubertal Fibroma 7 265 -NCIT:C181942 Vulvar Rhabdomyoma 7 266 -NCIT:C40301 Adenoma of Minor Vestibular Glands 7 267 -NCIT:C40302 Vulvar Chondroid Syringoma 7 268 -NCIT:C40311 Vulvar Syringoma 7 269 -NCIT:C40312 Vulvar Nodular Hidradenoma 7 270 -NCIT:C40314 Vulvar Trichoepithelioma 7 271 -NCIT:C40325 Vulvar Angiomyxoma 7 272 -NCIT:C40322 Vulvar Deep (Aggressive) Angiomyxoma 8 273 -NCIT:C40324 Vulvar Superficial Angiomyxoma 8 274 -NCIT:C40326 Vulvar Leiomyoma 7 275 -NCIT:C40327 Vulvar Cellular Angiofibroma 7 276 -NCIT:C40330 Vulvar Congenital Melanocytic Nevus 7 277 -NCIT:C40331 Vulvar Acquired Melanocytic Nevus 7 278 -NCIT:C40332 Vulvar Blue Nevus 7 279 -NCIT:C45446 Vulvar Angiomyofibroblastoma 7 280 -NCIT:C6375 Vulvar Seborrheic Keratosis 7 281 -NCIT:C40291 Vulvar Inverted Follicular Keratosis 8 282 -NCIT:C6376 Vulvar Squamous Papilloma 7 283 -NCIT:C40290 Vulvar Squamous Papillomatosis 8 284 -NCIT:C8418 Benign Bartholin Gland Neoplasm 7 285 -NCIT:C40299 Bartholin Gland Adenoma 8 286 -NCIT:C40300 Bartholin Gland Adenomyoma 8 287 -NCIT:C3726 Adenomyoma 6 288 -NCIT:C179925 Uterine Ligament Adenomyoma 7 289 -NCIT:C40231 Cervical Adenomyoma 7 290 -NCIT:C40232 Cervical Adenomyoma, Endocervical-Type 8 291 -NCIT:C40233 Cervical Adenomyoma, Mesonephric-Type 8 292 -NCIT:C40234 Cervical Atypical Polypoid Adenomyoma 8 293 -NCIT:C6338 Uterine Corpus Adenomyoma 7 294 -NCIT:C40235 Uterine Corpus Atypical Polypoid Adenomyoma 8 295 -NCIT:C6895 Atypical Polypoid Adenomyoma 7 296 -NCIT:C40234 Cervical Atypical Polypoid Adenomyoma 8 297 -NCIT:C40235 Uterine Corpus Atypical Polypoid Adenomyoma 8 298 -NCIT:C40018 Rete Ovarii Adenoma 6 299 -NCIT:C4517 Benign Fallopian Tube Neoplasm 6 300 -NCIT:C40112 Fallopian Tube Serous Papilloma 7 301 -NCIT:C40113 Fallopian Tube Serous Adenofibroma 7 302 -NCIT:C40114 Fallopian Tube Serous Cystadenofibroma 8 303 -NCIT:C40116 Fallopian Tube Metaplastic Papillary Tumor 7 304 -NCIT:C40127 Fallopian Tube Leiomyoma 7 305 -NCIT:C40129 Fallopian Tube Adenomatoid Tumor 7 306 -NCIT:C6517 Genital Rhabdomyoma 6 307 -NCIT:C181942 Vulvar Rhabdomyoma 7 308 -NCIT:C40266 Cervical Rhabdomyoma 7 309 -NCIT:C6372 Vaginal Rhabdomyoma 7 310 -NCIT:C8545 Benign Placental Neoplasm 6 311 -NCIT:C3521 Placental Polyp 7 312 -NCIT:C4868 Placental Hemangioma 7 313 -NCIT:C8979 Mucinous Cystadenofibroma 6 314 -NCIT:C40041 Ovarian Mucinous Cystadenofibroma 7 315 -NCIT:C67012 Benign Sertoli Cell Tumor 5 316 -NCIT:C6522 Benign Testicular Sertoli Cell Tumor 6 317 -NCIT:C39943 Testicular Sertoli Cell Tumor, Lipid Rich Variant 7 318 -NCIT:C39945 Testicular Sclerosing Sertoli Cell Tumor 7 319 -NCIT:C156484 Malignant Genitourinary System Neoplasm 3 320 -NCIT:C157774 Metastatic Malignant Genitourinary System Neoplasm 4 321 -NCIT:C146893 Metastatic Genitourinary System Carcinoma 5 322 -NCIT:C126109 Metastatic Urothelial Carcinoma 6 323 -NCIT:C148493 Advanced Urothelial Carcinoma 7 324 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 325 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 326 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 327 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 328 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 329 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 7 330 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 331 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 332 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 7 333 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 334 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 335 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 336 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 337 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 338 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 339 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 340 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 341 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 342 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 8 343 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 7 344 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 345 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 346 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 347 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 348 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 349 -NCIT:C191692 Metastatic Clear Cell (Glycogen-Rich) Urothelial Carcinoma 7 350 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 351 -NCIT:C191693 Metastatic Giant Cell Urothelial Carcinoma 7 352 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 353 -NCIT:C191694 Metastatic Lipid-Rich Urothelial Carcinoma 7 354 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 355 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 7 356 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 357 -NCIT:C191696 Metastatic Nested Urothelial Carcinoma 7 358 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 359 -NCIT:C191697 Metastatic Plasmacytoid Urothelial Carcinoma 7 360 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 361 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 7 362 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 363 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 7 364 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 8 365 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 366 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 367 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 8 368 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 369 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 370 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 371 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 372 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 373 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 374 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 375 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 376 -NCIT:C153387 Metastatic Cervical Carcinoma 6 377 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 7 378 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 379 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 8 380 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 7 381 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 8 382 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 383 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 384 -NCIT:C153390 Metastatic Cervical Adenosquamous Carcinoma 7 385 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 8 386 -NCIT:C156294 Advanced Cervical Carcinoma 7 387 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 388 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 389 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 8 390 -NCIT:C156295 Locally Advanced Cervical Carcinoma 7 391 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 8 392 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 393 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 8 394 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 395 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 8 396 -NCIT:C156062 Metastatic Bladder Carcinoma 6 397 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 7 398 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 399 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 400 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 401 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 402 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 403 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 404 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 405 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 406 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 407 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 8 408 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 7 409 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 7 410 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 7 411 -NCIT:C167071 Locally Advanced Bladder Carcinoma 7 412 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 413 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 8 414 -NCIT:C167338 Advanced Bladder Carcinoma 7 415 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 416 -NCIT:C190772 Metastatic Non-Muscle Invasive Bladder Carcinoma 7 417 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 8 418 -NCIT:C156063 Metastatic Fallopian Tube Carcinoma 6 419 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 7 420 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 8 421 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 7 422 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 7 423 -NCIT:C156064 Metastatic Ovarian Carcinoma 6 424 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 7 425 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 426 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 427 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 428 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 8 429 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 430 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 431 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 8 432 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 433 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 434 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 435 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 436 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 437 -NCIT:C165458 Advanced Ovarian Carcinoma 7 438 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 439 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 440 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 441 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 442 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 443 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 8 444 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 8 445 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 7 446 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 447 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 448 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 449 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 8 450 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 7 451 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 452 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 7 453 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 454 -NCIT:C172234 Metastatic Ovarian Undifferentiated Carcinoma 7 455 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 7 456 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 8 457 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 8 458 -NCIT:C180333 Metastatic Microsatellite Stable Ovarian Carcinoma 7 459 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 8 460 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 7 461 -NCIT:C27391 Metastatic Ovarian Small Cell Carcinoma, Hypercalcemic Type 7 462 -NCIT:C156065 Metastatic Vaginal Carcinoma 6 463 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 7 464 -NCIT:C170788 Advanced Vaginal Carcinoma 7 465 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 466 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 8 467 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 468 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 469 -NCIT:C181028 Metastatic Vaginal Adenosquamous Carcinoma 7 470 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 8 471 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 7 472 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 473 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 474 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 7 475 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 476 -NCIT:C156066 Metastatic Vulvar Carcinoma 6 477 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 7 478 -NCIT:C170786 Advanced Vulvar Carcinoma 7 479 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 7 480 -NCIT:C156068 Metastatic Endometrial Carcinoma 6 481 -NCIT:C159676 Advanced Endometrial Carcinoma 7 482 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 8 483 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 484 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 485 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 8 486 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 7 487 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 8 488 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 489 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 8 490 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 7 491 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 7 492 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 8 493 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 7 494 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 8 495 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 496 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 8 497 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 498 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 499 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 8 500 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 501 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 502 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 8 503 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 504 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 8 505 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 8 506 -NCIT:C164143 Advanced Genitourinary System Carcinoma 6 507 -NCIT:C148493 Advanced Urothelial Carcinoma 7 508 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 509 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 510 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 511 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 512 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 513 -NCIT:C156284 Advanced Prostate Carcinoma 7 514 -NCIT:C156286 Advanced Prostate Adenocarcinoma 8 515 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 516 -NCIT:C156294 Advanced Cervical Carcinoma 7 517 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 518 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 519 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 8 520 -NCIT:C159676 Advanced Endometrial Carcinoma 7 521 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 8 522 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 523 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 524 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 8 525 -NCIT:C165458 Advanced Ovarian Carcinoma 7 526 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 527 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 528 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 529 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 530 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 531 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 8 532 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 8 533 -NCIT:C167338 Advanced Bladder Carcinoma 7 534 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 535 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 7 536 -NCIT:C170786 Advanced Vulvar Carcinoma 7 537 -NCIT:C170788 Advanced Vaginal Carcinoma 7 538 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 539 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 8 540 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 541 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 542 -NCIT:C170790 Advanced Penile Carcinoma 7 543 -NCIT:C172617 Advanced Kidney Carcinoma 7 544 -NCIT:C153170 Advanced Renal Cell Carcinoma 8 545 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 546 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 547 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 548 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 549 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 550 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 8 551 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 552 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 8 553 -NCIT:C167069 Locally Advanced Genitourinary System Carcinoma 6 554 -NCIT:C156285 Locally Advanced Prostate Carcinoma 7 555 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 8 556 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 557 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 8 558 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 559 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 560 -NCIT:C156295 Locally Advanced Cervical Carcinoma 7 561 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 8 562 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 563 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 8 564 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 565 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 8 566 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 7 567 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 568 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 569 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 570 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 571 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 572 -NCIT:C167071 Locally Advanced Bladder Carcinoma 7 573 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 574 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 8 575 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 7 576 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 577 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 578 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 579 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 8 580 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 7 581 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 8 582 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 7 583 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 8 584 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 585 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 8 586 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 7 587 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 7 588 -NCIT:C170789 Locally Advanced Penile Carcinoma 7 589 -NCIT:C172618 Locally Advanced Kidney Carcinoma 7 590 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 8 591 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 592 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 593 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 594 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 595 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 596 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 597 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 8 598 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 599 -NCIT:C185381 Metastatic Mesonephric Adenocarcinoma 6 600 -NCIT:C27784 Metastatic Penile Carcinoma 6 601 -NCIT:C170789 Locally Advanced Penile Carcinoma 7 602 -NCIT:C170790 Advanced Penile Carcinoma 7 603 -NCIT:C182111 Metastatic Squamous Cell Carcinoma of the Penis 7 604 -NCIT:C27806 Metastatic Kidney Carcinoma 6 605 -NCIT:C150595 Metastatic Renal Cell Carcinoma 7 606 -NCIT:C153170 Advanced Renal Cell Carcinoma 8 607 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 608 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 609 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 610 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 611 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 612 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 8 613 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 614 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 615 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 8 616 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 617 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 618 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 8 619 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 620 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 621 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 8 622 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 623 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 624 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 625 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 626 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 627 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 628 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 8 629 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 630 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 631 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 8 632 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 633 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 634 -NCIT:C157755 Metastatic Kidney Medullary Carcinoma 7 635 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 8 636 -NCIT:C163965 Metastatic Renal Pelvis Carcinoma 7 637 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 8 638 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 639 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 640 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 8 641 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 642 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 8 643 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 644 -NCIT:C172617 Advanced Kidney Carcinoma 7 645 -NCIT:C153170 Advanced Renal Cell Carcinoma 8 646 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 647 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 648 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 649 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 650 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 651 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 8 652 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 653 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 8 654 -NCIT:C172618 Locally Advanced Kidney Carcinoma 7 655 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 8 656 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 657 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 658 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 659 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 660 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 661 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 662 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 8 663 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 664 -NCIT:C27818 Metastatic Ureter Carcinoma 6 665 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 7 666 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 8 667 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 8 668 -NCIT:C27819 Metastatic Urethral Carcinoma 6 669 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 7 670 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 671 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 672 -NCIT:C8946 Metastatic Prostate Carcinoma 6 673 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 7 674 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 8 675 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 8 676 -NCIT:C161609 Double-Negative Prostate Carcinoma 8 677 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 8 678 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 8 679 -NCIT:C132881 Prostate Carcinoma Metastatic in the Soft Tissue 7 680 -NCIT:C148536 Castration-Naive Prostate Carcinoma 7 681 -NCIT:C153336 Castration-Sensitive Prostate Carcinoma 7 682 -NCIT:C156284 Advanced Prostate Carcinoma 7 683 -NCIT:C156286 Advanced Prostate Adenocarcinoma 8 684 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 685 -NCIT:C156285 Locally Advanced Prostate Carcinoma 7 686 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 8 687 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 688 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 8 689 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 690 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 691 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 7 692 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 693 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 694 -NCIT:C161584 Prostate Carcinoma Metastatic in the Pelvic Cavity 7 695 -NCIT:C161587 Prostate Carcinoma Metastatic in the Lymph Nodes 7 696 -NCIT:C171265 Oligometastatic Prostate Carcinoma 7 697 -NCIT:C36307 Prostate Carcinoma Metastatic in the Lung 7 698 -NCIT:C36308 Prostate Carcinoma Metastatic in the Bone 7 699 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 7 700 -NCIT:C156286 Advanced Prostate Adenocarcinoma 8 701 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 702 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 8 703 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 704 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 8 705 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 706 -NCIT:C162254 Metastatic Malignant Female Reproductive System Neoplasm 5 707 -NCIT:C153387 Metastatic Cervical Carcinoma 6 708 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 7 709 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 710 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 8 711 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 7 712 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 8 713 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 714 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 715 -NCIT:C153390 Metastatic Cervical Adenosquamous Carcinoma 7 716 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 8 717 -NCIT:C156294 Advanced Cervical Carcinoma 7 718 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 719 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 720 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 8 721 -NCIT:C156295 Locally Advanced Cervical Carcinoma 7 722 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 8 723 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 724 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 8 725 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 726 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 8 727 -NCIT:C156063 Metastatic Fallopian Tube Carcinoma 6 728 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 7 729 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 8 730 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 7 731 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 7 732 -NCIT:C156064 Metastatic Ovarian Carcinoma 6 733 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 7 734 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 735 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 736 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 737 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 8 738 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 739 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 740 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 8 741 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 742 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 743 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 744 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 745 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 746 -NCIT:C165458 Advanced Ovarian Carcinoma 7 747 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 748 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 749 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 750 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 751 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 752 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 8 753 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 8 754 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 7 755 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 756 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 757 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 758 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 8 759 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 7 760 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 761 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 7 762 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 763 -NCIT:C172234 Metastatic Ovarian Undifferentiated Carcinoma 7 764 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 7 765 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 8 766 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 8 767 -NCIT:C180333 Metastatic Microsatellite Stable Ovarian Carcinoma 7 768 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 8 769 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 7 770 -NCIT:C27391 Metastatic Ovarian Small Cell Carcinoma, Hypercalcemic Type 7 771 -NCIT:C156065 Metastatic Vaginal Carcinoma 6 772 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 7 773 -NCIT:C170788 Advanced Vaginal Carcinoma 7 774 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 775 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 8 776 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 777 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 778 -NCIT:C181028 Metastatic Vaginal Adenosquamous Carcinoma 7 779 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 8 780 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 7 781 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 782 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 783 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 7 784 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 785 -NCIT:C156066 Metastatic Vulvar Carcinoma 6 786 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 7 787 -NCIT:C170786 Advanced Vulvar Carcinoma 7 788 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 7 789 -NCIT:C156068 Metastatic Endometrial Carcinoma 6 790 -NCIT:C159676 Advanced Endometrial Carcinoma 7 791 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 8 792 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 793 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 794 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 8 795 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 7 796 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 8 797 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 798 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 8 799 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 7 800 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 7 801 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 8 802 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 7 803 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 8 804 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 805 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 8 806 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 807 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 808 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 8 809 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 810 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 811 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 8 812 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 813 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 8 814 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 8 815 -NCIT:C167260 Advanced Malignant Female Reproductive System Neoplasm 6 816 -NCIT:C156294 Advanced Cervical Carcinoma 7 817 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 818 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 819 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 8 820 -NCIT:C165458 Advanced Ovarian Carcinoma 7 821 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 822 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 823 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 824 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 825 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 826 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 8 827 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 8 828 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 7 829 -NCIT:C170786 Advanced Vulvar Carcinoma 7 830 -NCIT:C170788 Advanced Vaginal Carcinoma 7 831 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 832 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 8 833 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 834 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 835 -NCIT:C170930 Advanced Malignant Mixed Mesodermal (Mullerian) Tumor 7 836 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 8 837 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 8 838 -NCIT:C172450 Advanced Uterine Corpus Cancer 7 839 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 8 840 -NCIT:C159676 Advanced Endometrial Carcinoma 8 841 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 842 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 843 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 844 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 845 -NCIT:C170460 Locally Advanced Malignant Female Reproductive System Neoplasm 6 846 -NCIT:C156295 Locally Advanced Cervical Carcinoma 7 847 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 8 848 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 849 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 8 850 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 851 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 8 852 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 7 853 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 854 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 855 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 856 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 8 857 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 7 858 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 8 859 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 7 860 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 8 861 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 862 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 8 863 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 7 864 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 7 865 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 7 866 -NCIT:C185381 Metastatic Mesonephric Adenocarcinoma 6 867 -NCIT:C190009 Metastatic Uterine Corpus Sarcoma 6 868 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 7 869 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 870 -NCIT:C176859 Advanced Malignant Genitourinary System Neoplasm 5 871 -NCIT:C164143 Advanced Genitourinary System Carcinoma 6 872 -NCIT:C148493 Advanced Urothelial Carcinoma 7 873 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 874 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 875 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 876 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 877 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 878 -NCIT:C156284 Advanced Prostate Carcinoma 7 879 -NCIT:C156286 Advanced Prostate Adenocarcinoma 8 880 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 881 -NCIT:C156294 Advanced Cervical Carcinoma 7 882 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 883 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 884 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 8 885 -NCIT:C159676 Advanced Endometrial Carcinoma 7 886 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 8 887 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 888 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 889 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 8 890 -NCIT:C165458 Advanced Ovarian Carcinoma 7 891 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 892 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 893 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 894 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 895 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 896 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 8 897 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 8 898 -NCIT:C167338 Advanced Bladder Carcinoma 7 899 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 900 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 7 901 -NCIT:C170786 Advanced Vulvar Carcinoma 7 902 -NCIT:C170788 Advanced Vaginal Carcinoma 7 903 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 904 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 8 905 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 906 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 907 -NCIT:C170790 Advanced Penile Carcinoma 7 908 -NCIT:C172617 Advanced Kidney Carcinoma 7 909 -NCIT:C153170 Advanced Renal Cell Carcinoma 8 910 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 911 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 912 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 913 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 914 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 915 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 8 916 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 917 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 8 918 -NCIT:C167260 Advanced Malignant Female Reproductive System Neoplasm 6 919 -NCIT:C156294 Advanced Cervical Carcinoma 7 920 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 921 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 922 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 8 923 -NCIT:C165458 Advanced Ovarian Carcinoma 7 924 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 925 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 926 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 927 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 928 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 929 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 8 930 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 8 931 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 7 932 -NCIT:C170786 Advanced Vulvar Carcinoma 7 933 -NCIT:C170788 Advanced Vaginal Carcinoma 7 934 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 935 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 8 936 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 937 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 938 -NCIT:C170930 Advanced Malignant Mixed Mesodermal (Mullerian) Tumor 7 939 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 8 940 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 8 941 -NCIT:C172450 Advanced Uterine Corpus Cancer 7 942 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 8 943 -NCIT:C159676 Advanced Endometrial Carcinoma 8 944 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 945 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 946 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 947 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 948 -NCIT:C187316 Advanced Malignant Testicular Germ Cell Tumor 6 949 -NCIT:C164141 Genitourinary System Carcinoma 4 950 -NCIT:C146893 Metastatic Genitourinary System Carcinoma 5 951 -NCIT:C126109 Metastatic Urothelial Carcinoma 6 952 -NCIT:C148493 Advanced Urothelial Carcinoma 7 953 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 954 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 955 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 956 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 957 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 958 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 7 959 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 960 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 961 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 7 962 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 963 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 964 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 965 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 966 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 967 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 968 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 969 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 970 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 971 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 8 972 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 7 973 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 974 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 975 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 976 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 977 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 978 -NCIT:C191692 Metastatic Clear Cell (Glycogen-Rich) Urothelial Carcinoma 7 979 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 980 -NCIT:C191693 Metastatic Giant Cell Urothelial Carcinoma 7 981 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 982 -NCIT:C191694 Metastatic Lipid-Rich Urothelial Carcinoma 7 983 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 984 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 7 985 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 986 -NCIT:C191696 Metastatic Nested Urothelial Carcinoma 7 987 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 988 -NCIT:C191697 Metastatic Plasmacytoid Urothelial Carcinoma 7 989 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 990 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 7 991 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 992 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 7 993 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 8 994 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 995 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 996 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 8 997 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 998 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 999 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 1000 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 1001 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 1002 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 1003 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 1004 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 1005 -NCIT:C153387 Metastatic Cervical Carcinoma 6 1006 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 7 1007 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 1008 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 8 1009 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 7 1010 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 8 1011 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 1012 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 1013 -NCIT:C153390 Metastatic Cervical Adenosquamous Carcinoma 7 1014 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 8 1015 -NCIT:C156294 Advanced Cervical Carcinoma 7 1016 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 1017 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 1018 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 8 1019 -NCIT:C156295 Locally Advanced Cervical Carcinoma 7 1020 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 8 1021 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 1022 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 8 1023 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 1024 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 8 1025 -NCIT:C156062 Metastatic Bladder Carcinoma 6 1026 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 7 1027 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 1028 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 1029 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 1030 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 1031 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 1032 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 1033 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 1034 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 1035 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 1036 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 8 1037 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 7 1038 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 7 1039 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 7 1040 -NCIT:C167071 Locally Advanced Bladder Carcinoma 7 1041 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 1042 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 8 1043 -NCIT:C167338 Advanced Bladder Carcinoma 7 1044 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 1045 -NCIT:C190772 Metastatic Non-Muscle Invasive Bladder Carcinoma 7 1046 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 8 1047 -NCIT:C156063 Metastatic Fallopian Tube Carcinoma 6 1048 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 7 1049 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 8 1050 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 7 1051 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 7 1052 -NCIT:C156064 Metastatic Ovarian Carcinoma 6 1053 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 7 1054 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 1055 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 1056 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 1057 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 8 1058 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 1059 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 1060 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 8 1061 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 1062 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 1063 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 1064 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 1065 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 1066 -NCIT:C165458 Advanced Ovarian Carcinoma 7 1067 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 1068 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 1069 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 1070 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 1071 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 1072 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 8 1073 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 8 1074 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 7 1075 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 1076 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 1077 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 1078 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 8 1079 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 7 1080 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 1081 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 7 1082 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 1083 -NCIT:C172234 Metastatic Ovarian Undifferentiated Carcinoma 7 1084 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 7 1085 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 8 1086 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 8 1087 -NCIT:C180333 Metastatic Microsatellite Stable Ovarian Carcinoma 7 1088 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 8 1089 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 7 1090 -NCIT:C27391 Metastatic Ovarian Small Cell Carcinoma, Hypercalcemic Type 7 1091 -NCIT:C156065 Metastatic Vaginal Carcinoma 6 1092 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 7 1093 -NCIT:C170788 Advanced Vaginal Carcinoma 7 1094 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 1095 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 8 1096 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 1097 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 1098 -NCIT:C181028 Metastatic Vaginal Adenosquamous Carcinoma 7 1099 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 8 1100 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 7 1101 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 1102 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 1103 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 7 1104 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 1105 -NCIT:C156066 Metastatic Vulvar Carcinoma 6 1106 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 7 1107 -NCIT:C170786 Advanced Vulvar Carcinoma 7 1108 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 7 1109 -NCIT:C156068 Metastatic Endometrial Carcinoma 6 1110 -NCIT:C159676 Advanced Endometrial Carcinoma 7 1111 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 8 1112 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 1113 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 1114 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 8 1115 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 7 1116 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 8 1117 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 1118 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 8 1119 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 7 1120 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 7 1121 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 8 1122 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 7 1123 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 8 1124 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 1125 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 8 1126 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 1127 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 1128 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 8 1129 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 1130 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 1131 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 8 1132 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 1133 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 8 1134 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 8 1135 -NCIT:C164143 Advanced Genitourinary System Carcinoma 6 1136 -NCIT:C148493 Advanced Urothelial Carcinoma 7 1137 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 1138 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 1139 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 1140 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 1141 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 1142 -NCIT:C156284 Advanced Prostate Carcinoma 7 1143 -NCIT:C156286 Advanced Prostate Adenocarcinoma 8 1144 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 1145 -NCIT:C156294 Advanced Cervical Carcinoma 7 1146 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 1147 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 1148 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 8 1149 -NCIT:C159676 Advanced Endometrial Carcinoma 7 1150 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 8 1151 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 1152 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 1153 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 8 1154 -NCIT:C165458 Advanced Ovarian Carcinoma 7 1155 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 1156 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 1157 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 1158 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 1159 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 1160 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 8 1161 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 8 1162 -NCIT:C167338 Advanced Bladder Carcinoma 7 1163 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 1164 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 7 1165 -NCIT:C170786 Advanced Vulvar Carcinoma 7 1166 -NCIT:C170788 Advanced Vaginal Carcinoma 7 1167 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 1168 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 8 1169 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 1170 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 1171 -NCIT:C170790 Advanced Penile Carcinoma 7 1172 -NCIT:C172617 Advanced Kidney Carcinoma 7 1173 -NCIT:C153170 Advanced Renal Cell Carcinoma 8 1174 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 1175 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 1176 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 1177 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 1178 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 1179 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 8 1180 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 1181 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 8 1182 -NCIT:C167069 Locally Advanced Genitourinary System Carcinoma 6 1183 -NCIT:C156285 Locally Advanced Prostate Carcinoma 7 1184 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 8 1185 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 1186 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 8 1187 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 1188 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 1189 -NCIT:C156295 Locally Advanced Cervical Carcinoma 7 1190 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 8 1191 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 1192 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 8 1193 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 1194 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 8 1195 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 7 1196 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 1197 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 1198 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 1199 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 1200 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 1201 -NCIT:C167071 Locally Advanced Bladder Carcinoma 7 1202 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 1203 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 8 1204 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 7 1205 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 1206 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 1207 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 1208 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 8 1209 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 7 1210 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 8 1211 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 7 1212 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 8 1213 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 1214 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 8 1215 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 7 1216 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 7 1217 -NCIT:C170789 Locally Advanced Penile Carcinoma 7 1218 -NCIT:C172618 Locally Advanced Kidney Carcinoma 7 1219 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 8 1220 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 1221 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 1222 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 1223 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 1224 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 1225 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 1226 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 8 1227 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 1228 -NCIT:C185381 Metastatic Mesonephric Adenocarcinoma 6 1229 -NCIT:C27784 Metastatic Penile Carcinoma 6 1230 -NCIT:C170789 Locally Advanced Penile Carcinoma 7 1231 -NCIT:C170790 Advanced Penile Carcinoma 7 1232 -NCIT:C182111 Metastatic Squamous Cell Carcinoma of the Penis 7 1233 -NCIT:C27806 Metastatic Kidney Carcinoma 6 1234 -NCIT:C150595 Metastatic Renal Cell Carcinoma 7 1235 -NCIT:C153170 Advanced Renal Cell Carcinoma 8 1236 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 1237 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 1238 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 1239 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 1240 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 1241 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 8 1242 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 1243 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 1244 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 8 1245 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 1246 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 1247 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 8 1248 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 1249 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 1250 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 8 1251 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 1252 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 1253 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 1254 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 1255 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 1256 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 1257 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 8 1258 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 1259 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 1260 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 8 1261 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 1262 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 1263 -NCIT:C157755 Metastatic Kidney Medullary Carcinoma 7 1264 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 8 1265 -NCIT:C163965 Metastatic Renal Pelvis Carcinoma 7 1266 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 8 1267 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 1268 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 1269 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 8 1270 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 1271 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 8 1272 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 1273 -NCIT:C172617 Advanced Kidney Carcinoma 7 1274 -NCIT:C153170 Advanced Renal Cell Carcinoma 8 1275 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 1276 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 1277 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 1278 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 1279 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 1280 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 8 1281 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 1282 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 8 1283 -NCIT:C172618 Locally Advanced Kidney Carcinoma 7 1284 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 8 1285 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 1286 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 1287 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 1288 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 1289 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 1290 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 1291 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 8 1292 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 1293 -NCIT:C27818 Metastatic Ureter Carcinoma 6 1294 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 7 1295 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 8 1296 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 8 1297 -NCIT:C27819 Metastatic Urethral Carcinoma 6 1298 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 7 1299 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 1300 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 1301 -NCIT:C8946 Metastatic Prostate Carcinoma 6 1302 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 7 1303 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 8 1304 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 8 1305 -NCIT:C161609 Double-Negative Prostate Carcinoma 8 1306 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 8 1307 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 8 1308 -NCIT:C132881 Prostate Carcinoma Metastatic in the Soft Tissue 7 1309 -NCIT:C148536 Castration-Naive Prostate Carcinoma 7 1310 -NCIT:C153336 Castration-Sensitive Prostate Carcinoma 7 1311 -NCIT:C156284 Advanced Prostate Carcinoma 7 1312 -NCIT:C156286 Advanced Prostate Adenocarcinoma 8 1313 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 1314 -NCIT:C156285 Locally Advanced Prostate Carcinoma 7 1315 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 8 1316 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 1317 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 8 1318 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 1319 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 1320 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 7 1321 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 1322 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 1323 -NCIT:C161584 Prostate Carcinoma Metastatic in the Pelvic Cavity 7 1324 -NCIT:C161587 Prostate Carcinoma Metastatic in the Lymph Nodes 7 1325 -NCIT:C171265 Oligometastatic Prostate Carcinoma 7 1326 -NCIT:C36307 Prostate Carcinoma Metastatic in the Lung 7 1327 -NCIT:C36308 Prostate Carcinoma Metastatic in the Bone 7 1328 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 7 1329 -NCIT:C156286 Advanced Prostate Adenocarcinoma 8 1330 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 1331 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 8 1332 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 1333 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 8 1334 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 1335 -NCIT:C181162 Female Reproductive System Carcinoma 5 1336 -NCIT:C3867 Fallopian Tube Carcinoma 6 1337 -NCIT:C115429 Recurrent Fallopian Tube Carcinoma 7 1338 -NCIT:C170750 Recurrent Platinum-Resistant Fallopian Tube Carcinoma 8 1339 -NCIT:C170755 Recurrent Fallopian Tube Undifferentiated Carcinoma 8 1340 -NCIT:C170757 Recurrent Fallopian Tube Transitional Cell Carcinoma 8 1341 -NCIT:C170766 Recurrent Fallopian Tube Adenocarcinoma 8 1342 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 9 1343 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 9 1344 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 9 1345 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 9 1346 -NCIT:C191395 Recurrent Platinum-Sensitive Fallopian Tube Carcinoma 8 1347 -NCIT:C139983 Fallopian Tube Cancer by AJCC v8 Stage 7 1348 -NCIT:C139984 Stage I Fallopian Tube Cancer AJCC v8 8 1349 -NCIT:C139985 Stage IA Fallopian Tube Cancer AJCC v8 9 1350 -NCIT:C139986 Stage IB Fallopian Tube Cancer AJCC v8 9 1351 -NCIT:C139987 Stage IC Fallopian Tube Cancer AJCC v8 9 1352 -NCIT:C139988 Stage II Fallopian Tube Cancer AJCC v8 8 1353 -NCIT:C139989 Stage IIA Fallopian Tube Cancer AJCC v8 9 1354 -NCIT:C139990 Stage IIB Fallopian Tube Cancer AJCC v8 9 1355 -NCIT:C139991 Stage III Fallopian Tube Cancer AJCC v8 8 1356 -NCIT:C139992 Stage IIIA Fallopian Tube Cancer AJCC v8 9 1357 -NCIT:C139993 Stage IIIA1 Fallopian Tube Cancer AJCC v8 10 1358 -NCIT:C139994 Stage IIIA2 Fallopian Tube Cancer AJCC v8 10 1359 -NCIT:C139995 Stage IIIB Fallopian Tube Cancer AJCC v8 9 1360 -NCIT:C139996 Stage IIIC Fallopian Tube Cancer AJCC v8 9 1361 -NCIT:C139997 Stage IV Fallopian Tube Cancer AJCC v8 8 1362 -NCIT:C139998 Stage IVA Fallopian Tube Cancer AJCC v8 9 1363 -NCIT:C139999 Stage IVB Fallopian Tube Cancer AJCC v8 9 1364 -NCIT:C152047 Refractory Fallopian Tube Carcinoma 7 1365 -NCIT:C157621 Platinum-Resistant Fallopian Tube Carcinoma 8 1366 -NCIT:C170750 Recurrent Platinum-Resistant Fallopian Tube Carcinoma 9 1367 -NCIT:C170971 Refractory Fallopian Tube Adenocarcinoma 8 1368 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 9 1369 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 9 1370 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 9 1371 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 9 1372 -NCIT:C178674 Refractory Fallopian Tube Transitional Cell Carcinoma 8 1373 -NCIT:C178675 Refractory Fallopian Tube Undifferentiated Carcinoma 8 1374 -NCIT:C178698 Platinum-Refractory Fallopian Tube Carcinoma 8 1375 -NCIT:C156063 Metastatic Fallopian Tube Carcinoma 7 1376 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 8 1377 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 9 1378 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 8 1379 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 8 1380 -NCIT:C160873 Platinum-Sensitive Fallopian Tube Carcinoma 7 1381 -NCIT:C191395 Recurrent Platinum-Sensitive Fallopian Tube Carcinoma 8 1382 -NCIT:C170969 Unresectable Fallopian Tube Carcinoma 7 1383 -NCIT:C170970 Unresectable Fallopian Tube Adenocarcinoma 8 1384 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 9 1385 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 9 1386 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 8 1387 -NCIT:C40104 Fallopian Tube Transitional Cell Carcinoma 7 1388 -NCIT:C170757 Recurrent Fallopian Tube Transitional Cell Carcinoma 8 1389 -NCIT:C178674 Refractory Fallopian Tube Transitional Cell Carcinoma 8 1390 -NCIT:C40455 Hereditary Fallopian Tube Carcinoma 7 1391 -NCIT:C6265 Fallopian Tube Adenocarcinoma 7 1392 -NCIT:C170766 Recurrent Fallopian Tube Adenocarcinoma 8 1393 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 9 1394 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 9 1395 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 9 1396 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 9 1397 -NCIT:C170970 Unresectable Fallopian Tube Adenocarcinoma 8 1398 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 9 1399 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 9 1400 -NCIT:C170971 Refractory Fallopian Tube Adenocarcinoma 8 1401 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 9 1402 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 9 1403 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 9 1404 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 9 1405 -NCIT:C40099 Fallopian Tube Serous Adenocarcinoma 8 1406 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 9 1407 -NCIT:C126456 Fallopian Tube High Grade Serous Adenocarcinoma 9 1408 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 10 1409 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 10 1410 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 10 1411 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 10 1412 -NCIT:C40103 Fallopian Tube Mucinous Adenocarcinoma 8 1413 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 9 1414 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 9 1415 -NCIT:C40105 Stage 0 Fallopian Tube Cancer AJCC v7 8 1416 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 9 1417 -NCIT:C6279 Fallopian Tube Endometrioid Adenocarcinoma 8 1418 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 9 1419 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 9 1420 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 9 1421 -NCIT:C6280 Fallopian Tube Clear Cell Adenocarcinoma 8 1422 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 9 1423 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 9 1424 -NCIT:C6278 Fallopian Tube Gestational Choriocarcinoma 7 1425 -NCIT:C6281 Fallopian Tube Undifferentiated Carcinoma 7 1426 -NCIT:C170755 Recurrent Fallopian Tube Undifferentiated Carcinoma 8 1427 -NCIT:C178675 Refractory Fallopian Tube Undifferentiated Carcinoma 8 1428 -NCIT:C6282 Fallopian Tube Squamous Cell Carcinoma 7 1429 -NCIT:C90499 Fallopian Tube Cancer by AJCC v6 Stage 7 1430 -NCIT:C8720 Stage I Fallopian Tube Cancer AJCC v6 and v7 8 1431 -NCIT:C6269 Stage IA Fallopian Tube Cancer AJCC v6 and v7 9 1432 -NCIT:C6270 Stage IB Fallopian Tube Cancer AJCC v6 and v7 9 1433 -NCIT:C6271 Stage IC Fallopian Tube Cancer AJCC v6 and v7 9 1434 -NCIT:C8721 Stage II Fallopian Tube Cancer AJCC v6 and v7 8 1435 -NCIT:C6272 Stage IIA Fallopian Tube Cancer AJCC v6 and v7 9 1436 -NCIT:C6276 Stage IIC Fallopian Tube Cancer AJCC v6 and v7 9 1437 -NCIT:C6277 Stage IIB Fallopian Tube Cancer AJCC v6 and v7 9 1438 -NCIT:C8722 Stage III Fallopian Tube Cancer AJCC v6 8 1439 -NCIT:C8963 Stage IV Fallopian Tube Cancer AJCC v6 and v7 8 1440 -NCIT:C91219 Fallopian Tube Cancer by AJCC v7 Stage 7 1441 -NCIT:C40105 Stage 0 Fallopian Tube Cancer AJCC v7 8 1442 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 9 1443 -NCIT:C8720 Stage I Fallopian Tube Cancer AJCC v6 and v7 8 1444 -NCIT:C6269 Stage IA Fallopian Tube Cancer AJCC v6 and v7 9 1445 -NCIT:C6270 Stage IB Fallopian Tube Cancer AJCC v6 and v7 9 1446 -NCIT:C6271 Stage IC Fallopian Tube Cancer AJCC v6 and v7 9 1447 -NCIT:C8721 Stage II Fallopian Tube Cancer AJCC v6 and v7 8 1448 -NCIT:C6272 Stage IIA Fallopian Tube Cancer AJCC v6 and v7 9 1449 -NCIT:C6276 Stage IIC Fallopian Tube Cancer AJCC v6 and v7 9 1450 -NCIT:C6277 Stage IIB Fallopian Tube Cancer AJCC v6 and v7 9 1451 -NCIT:C8963 Stage IV Fallopian Tube Cancer AJCC v6 and v7 8 1452 -NCIT:C89692 Stage III Fallopian Tube Cancer AJCC v7 8 1453 -NCIT:C6273 Stage IIIA Fallopian Tube Cancer AJCC v7 9 1454 -NCIT:C6274 Stage IIIB Fallopian Tube Cancer AJCC v7 9 1455 -NCIT:C6275 Stage IIIC Fallopian Tube Cancer AJCC v7 9 1456 -NCIT:C3917 Vaginal Carcinoma 6 1457 -NCIT:C128073 Vaginal Neuroendocrine Carcinoma 7 1458 -NCIT:C128075 Vaginal Large Cell Neuroendocrine Carcinoma 8 1459 -NCIT:C40263 Vaginal Small Cell Neuroendocrine Carcinoma 8 1460 -NCIT:C139657 Vaginal Cancer by AJCC v8 Stage 7 1461 -NCIT:C139658 Stage I Vaginal Cancer AJCC v8 8 1462 -NCIT:C139659 Stage IA Vaginal Cancer AJCC v8 9 1463 -NCIT:C139660 Stage IB Vaginal Cancer AJCC v8 9 1464 -NCIT:C139661 Stage II Vaginal Cancer AJCC v8 8 1465 -NCIT:C139662 Stage IIA Vaginal Cancer AJCC v8 9 1466 -NCIT:C139664 Stage IIB Vaginal Cancer AJCC v8 9 1467 -NCIT:C139665 Stage III Vaginal Cancer AJCC v8 8 1468 -NCIT:C139667 Stage IV Vaginal Cancer AJCC v8 8 1469 -NCIT:C139669 Stage IVA Vaginal Cancer AJCC v8 9 1470 -NCIT:C139670 Stage IVB Vaginal Cancer AJCC v8 9 1471 -NCIT:C156065 Metastatic Vaginal Carcinoma 7 1472 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 8 1473 -NCIT:C170788 Advanced Vaginal Carcinoma 8 1474 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 1475 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 1476 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 1477 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 1478 -NCIT:C181028 Metastatic Vaginal Adenosquamous Carcinoma 8 1479 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 1480 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 8 1481 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 1482 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 1483 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 8 1484 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 1485 -NCIT:C174509 Refractory Vaginal Carcinoma 7 1486 -NCIT:C185303 Refractory Vaginal Squamous Cell Carcinoma 8 1487 -NCIT:C175434 Unresectable Vaginal Carcinoma 7 1488 -NCIT:C180915 Vaginal Squamous Cell Carcinoma 7 1489 -NCIT:C128060 Vaginal Papillary Carcinoma 8 1490 -NCIT:C180917 Human Papillomavirus-Related Vaginal Squamous Cell Carcinoma 8 1491 -NCIT:C40248 Vaginal Warty Carcinoma 9 1492 -NCIT:C180919 Human Papillomavirus-Independent Vaginal Squamous Cell Carcinoma 8 1493 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 8 1494 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 1495 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 1496 -NCIT:C185302 Recurrent Vaginal Squamous Cell Carcinoma 8 1497 -NCIT:C185303 Refractory Vaginal Squamous Cell Carcinoma 8 1498 -NCIT:C40243 Vaginal Keratinizing Squamous Cell Carcinoma 8 1499 -NCIT:C40244 Vaginal Non-Keratinizing Squamous Cell Carcinoma 8 1500 -NCIT:C40245 Vaginal Basaloid Carcinoma 8 1501 -NCIT:C6325 Vaginal Verrucous Carcinoma 8 1502 -NCIT:C7736 Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 8 1503 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 1504 -NCIT:C40260 Vaginal Adenosquamous Carcinoma 7 1505 -NCIT:C181028 Metastatic Vaginal Adenosquamous Carcinoma 8 1506 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 1507 -NCIT:C40261 Vaginal Adenoid Cystic Carcinoma 7 1508 -NCIT:C40262 Vaginal Adenoid Basal Carcinoma 7 1509 -NCIT:C40264 Vaginal Undifferentiated Carcinoma 7 1510 -NCIT:C7860 Recurrent Vaginal Carcinoma 7 1511 -NCIT:C185302 Recurrent Vaginal Squamous Cell Carcinoma 8 1512 -NCIT:C7981 Vaginal Adenocarcinoma 7 1513 -NCIT:C180943 Human Papillomavirus-Related Vaginal Adenocarcinoma 8 1514 -NCIT:C180947 Vaginal Adenocarcinoma of Skene Gland Origin 8 1515 -NCIT:C40251 Vaginal Endometrioid Adenocarcinoma 8 1516 -NCIT:C40252 Vaginal Mucinous Adenocarcinoma 8 1517 -NCIT:C180945 Vaginal Mucinous Adenocarcinoma, Gastric-Type 9 1518 -NCIT:C180946 Vaginal Mucinous Adenocarcinoma, Intestinal-Type 9 1519 -NCIT:C40253 Vaginal Mesonephric Adenocarcinoma 8 1520 -NCIT:C7735 Vaginal Clear Cell Adenocarcinoma 8 1521 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 8 1522 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 1523 -NCIT:C90347 Vaginal Cancer by AJCC v6 Stage 7 1524 -NCIT:C7597 Stage IV Vaginal Cancer AJCC v6 and v7 8 1525 -NCIT:C7859 Stage IVA Vaginal Cancer AJCC v6 and v7 9 1526 -NCIT:C9355 Stage IVB Vaginal Cancer AJCC v6 and v7 9 1527 -NCIT:C7855 Stage 0 Vaginal Cancer AJCC v6 8 1528 -NCIT:C7856 Stage I Vaginal Cancer AJCC v6 and v7 8 1529 -NCIT:C7857 Stage II Vaginal Cancer AJCC v6 and v7 8 1530 -NCIT:C7858 Stage III Vaginal Cancer AJCC v6 and v7 8 1531 -NCIT:C91204 Vaginal Cancer by AJCC v7 Stage 7 1532 -NCIT:C7597 Stage IV Vaginal Cancer AJCC v6 and v7 8 1533 -NCIT:C7859 Stage IVA Vaginal Cancer AJCC v6 and v7 9 1534 -NCIT:C9355 Stage IVB Vaginal Cancer AJCC v6 and v7 9 1535 -NCIT:C7856 Stage I Vaginal Cancer AJCC v6 and v7 8 1536 -NCIT:C7857 Stage II Vaginal Cancer AJCC v6 and v7 8 1537 -NCIT:C7858 Stage III Vaginal Cancer AJCC v6 and v7 8 1538 -NCIT:C89476 Stage 0 Vaginal Cancer AJCC v7 8 1539 -NCIT:C4072 Mesonephric Adenocarcinoma 6 1540 -NCIT:C185381 Metastatic Mesonephric Adenocarcinoma 7 1541 -NCIT:C40253 Vaginal Mesonephric Adenocarcinoma 7 1542 -NCIT:C40254 Cervical Mesonephric Adenocarcinoma 7 1543 -NCIT:C4866 Vulvar Carcinoma 6 1544 -NCIT:C128243 Vulvar Neuroendocrine Carcinoma 7 1545 -NCIT:C128244 Vulvar Small Cell Neuroendocrine Carcinoma 8 1546 -NCIT:C40298 Bartholin Gland Small Cell Neuroendocrine Carcinoma 9 1547 -NCIT:C128245 Vulvar Large Cell Neuroendocrine Carcinoma 8 1548 -NCIT:C128247 Vulvar Merkel Cell Carcinoma 8 1549 -NCIT:C139618 Vulvar Cancer by AJCC v8 Stage 7 1550 -NCIT:C139619 Stage I Vulvar Cancer AJCC v8 8 1551 -NCIT:C139620 Stage IA Vulvar Cancer AJCC v8 9 1552 -NCIT:C139621 Stage IB Vulvar Cancer AJCC v8 9 1553 -NCIT:C139622 Stage II Vulvar Cancer AJCC v8 8 1554 -NCIT:C139623 Stage III Vulvar Cancer AJCC v8 8 1555 -NCIT:C139624 Stage IIIA Vulvar Cancer AJCC v8 9 1556 -NCIT:C139625 Stage IIIB Vulvar Cancer AJCC v8 9 1557 -NCIT:C139626 Stage IIIC Vulvar Cancer AJCC v8 9 1558 -NCIT:C139627 Stage IV Vulvar Cancer AJCC v8 8 1559 -NCIT:C139628 Stage IVA Vulvar Cancer AJCC v8 9 1560 -NCIT:C139630 Stage IVB Vulvar Cancer AJCC v8 9 1561 -NCIT:C156066 Metastatic Vulvar Carcinoma 7 1562 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 8 1563 -NCIT:C170786 Advanced Vulvar Carcinoma 8 1564 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 8 1565 -NCIT:C174198 Unresectable Vulvar Carcinoma 7 1566 -NCIT:C174199 Unresectable Vulvar Squamous Cell Carcinoma 8 1567 -NCIT:C174508 Refractory Vulvar Carcinoma 7 1568 -NCIT:C185304 Refractory Vulvar Squamous Cell Carcinoma 8 1569 -NCIT:C4052 Vulvar Squamous Cell Carcinoma 7 1570 -NCIT:C128167 Vulvar Keratoacanthoma 8 1571 -NCIT:C174199 Unresectable Vulvar Squamous Cell Carcinoma 8 1572 -NCIT:C174200 Recurrent Vulvar Squamous Cell Carcinoma 8 1573 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 8 1574 -NCIT:C181902 Vulvar Squamous Cell Carcinoma, Not Otherwise Specified 8 1575 -NCIT:C181903 Human Papillomavirus-Independent Vulvar Squamous Cell Carcinoma 8 1576 -NCIT:C185304 Refractory Vulvar Squamous Cell Carcinoma 8 1577 -NCIT:C27679 Human Papillomavirus-Related Vulvar Squamous Cell Carcinoma 8 1578 -NCIT:C40287 Vulvar Warty Carcinoma 9 1579 -NCIT:C40284 Vulvar Keratinizing Squamous Cell Carcinoma 8 1580 -NCIT:C40285 Vulvar Non-Keratinizing Squamous Cell Carcinoma 8 1581 -NCIT:C40286 Vulvar Basaloid Carcinoma 8 1582 -NCIT:C40289 Vulvar Squamous Cell Carcinoma with Tumor Giant Cells 8 1583 -NCIT:C40293 Bartholin Gland Squamous Cell Carcinoma 8 1584 -NCIT:C6383 Vulvar Verrucous Carcinoma 8 1585 -NCIT:C6380 Vulvar Adenocarcinoma 7 1586 -NCIT:C128162 Vulvar Adenocarcinoma of Mammary Gland Type 8 1587 -NCIT:C128164 Vulvar Adenocarcinoma of Sweat Gland Origin 8 1588 -NCIT:C4027 Vulvar Paget Disease 9 1589 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 9 1590 -NCIT:C40306 Vulvar Porocarcinoma 10 1591 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 9 1592 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 9 1593 -NCIT:C128166 Vulvar Adenocarcinoma, Intestinal-Type 8 1594 -NCIT:C40309 Vulvar Sebaceous Carcinoma 8 1595 -NCIT:C7719 Bartholin Gland Adenocarcinoma 8 1596 -NCIT:C6381 Vulvar Basal Cell Carcinoma 7 1597 -NCIT:C90345 Vulvar Cancer by AJCC v6 Stage 7 1598 -NCIT:C4522 Stage 0 Vulvar Cancer AJCC v6 8 1599 -NCIT:C7854 Stage I Vulvar Cancer AJCC v6 8 1600 -NCIT:C6328 Stage IA Vulvar Carcinoma AJCC v6 9 1601 -NCIT:C6329 Stage IB Vulvar Carcinoma AJCC v6 9 1602 -NCIT:C9051 Stage II Vulvar Cancer AJCC v6 8 1603 -NCIT:C9052 Stage III Vulvar Cancer AJCC v6 8 1604 -NCIT:C9053 Stage IV Vulvar Cancer AJCC v6 8 1605 -NCIT:C27247 Stage IVB Vulvar Cancer AJCC v6 and v7 9 1606 -NCIT:C6330 Stage IVA Vulvar Cancer AJCC v6 9 1607 -NCIT:C9054 Recurrent Vulvar Carcinoma 7 1608 -NCIT:C174200 Recurrent Vulvar Squamous Cell Carcinoma 8 1609 -NCIT:C9055 Bartholin Gland Carcinoma 7 1610 -NCIT:C40293 Bartholin Gland Squamous Cell Carcinoma 8 1611 -NCIT:C40295 Bartholin Gland Adenoid Cystic Carcinoma 8 1612 -NCIT:C40296 Bartholin Gland Adenosquamous Carcinoma 8 1613 -NCIT:C40297 Bartholin Gland Transitional Cell Carcinoma 8 1614 -NCIT:C40298 Bartholin Gland Small Cell Neuroendocrine Carcinoma 8 1615 -NCIT:C7719 Bartholin Gland Adenocarcinoma 8 1616 -NCIT:C91203 Vulvar Cancer by AJCC v7 Stage 7 1617 -NCIT:C89445 Stage 0 Vulvar Cancer AJCC v7 8 1618 -NCIT:C89447 Stage I Vulvar Cancer AJCC v7 8 1619 -NCIT:C89448 Stage IA Vulvar Cancer AJCC v7 9 1620 -NCIT:C89449 Stage IB Vulvar Cancer AJCC v7 9 1621 -NCIT:C89451 Stage II Vulvar Cancer AJCC v7 8 1622 -NCIT:C89452 Stage III Vulvar Cancer AJCC v7 8 1623 -NCIT:C87003 Stage IIIA Vulvar Cancer AJCC v7 9 1624 -NCIT:C87004 Stage IIIB Vulvar Cancer AJCC v7 9 1625 -NCIT:C87005 Stage IIIC Vulvar Cancer AJCC v7 9 1626 -NCIT:C89453 Stage IV Vulvar Cancer AJCC v7 8 1627 -NCIT:C27247 Stage IVB Vulvar Cancer AJCC v6 and v7 9 1628 -NCIT:C89454 Stage IVA Vulvar Cancer AJCC v7 9 1629 -NCIT:C9362 Clitoral Carcinoma 7 1630 -NCIT:C9363 Labia Majora Carcinoma 7 1631 -NCIT:C9364 Labia Minora Carcinoma 7 1632 -NCIT:C4908 Ovarian Carcinoma 6 1633 -NCIT:C128081 Ovarian Cancer by FIGO Stage 7 1634 -NCIT:C128082 FIGO Stage IC1 Ovarian Cancer 8 1635 -NCIT:C128083 FIGO Stage IC2 Ovarian Cancer 8 1636 -NCIT:C128084 FIGO Stage IC3 Ovarian Cancer 8 1637 -NCIT:C128085 FIGO Stage II Ovarian Cancer 8 1638 -NCIT:C5223 Stage IIA Ovarian Cancer AJCC V6 and v7 9 1639 -NCIT:C5224 Stage IIB Ovarian Cancer AJCC v6 and v7 9 1640 -NCIT:C128086 FIGO Stage III Ovarian Cancer 8 1641 -NCIT:C128087 FIGO Stage IIIA Ovarian Cancer 9 1642 -NCIT:C128088 FIGO Stage IIIA1 Ovarian Cancer 10 1643 -NCIT:C128089 FIGO Stage IIIA1(i) Ovarian Cancer 11 1644 -NCIT:C128090 FIGO Stage IIIA1(ii) Ovarian Cancer 11 1645 -NCIT:C128091 FIGO Stage IIIA2 Ovarian Cancer 10 1646 -NCIT:C128092 FIGO Stage IIIB Ovarian Cancer 9 1647 -NCIT:C128093 FIGO Stage IIIC Ovarian Cancer 9 1648 -NCIT:C128094 FIGO Stage IVA Ovarian Cancer 8 1649 -NCIT:C128095 FIGO Stage IVB Ovarian Cancer 8 1650 -NCIT:C7829 Stage I Ovarian Cancer AJCC v6 and v7 8 1651 -NCIT:C5220 Stage IA Ovarian Cancer AJCC v6 and v7 9 1652 -NCIT:C5221 Stage IB Ovarian Cancer AJCC v6 and v7 9 1653 -NCIT:C5222 Stage IC Ovarian Cancer AJCC v6 and v7 9 1654 -NCIT:C7832 Stage IV Ovarian Cancer AJCC v6 and v7 8 1655 -NCIT:C128106 Ovarian Cancer by AJCC v6 and v7 Stage 7 1656 -NCIT:C7829 Stage I Ovarian Cancer AJCC v6 and v7 8 1657 -NCIT:C5220 Stage IA Ovarian Cancer AJCC v6 and v7 9 1658 -NCIT:C5221 Stage IB Ovarian Cancer AJCC v6 and v7 9 1659 -NCIT:C5222 Stage IC Ovarian Cancer AJCC v6 and v7 9 1660 -NCIT:C7830 Stage II Ovarian Cancer AJCC v6 and v7 8 1661 -NCIT:C5223 Stage IIA Ovarian Cancer AJCC V6 and v7 9 1662 -NCIT:C5224 Stage IIB Ovarian Cancer AJCC v6 and v7 9 1663 -NCIT:C5225 Stage IIC Ovarian Cancer AJCC v6 and v7 9 1664 -NCIT:C7831 Stage III Ovarian Cancer AJCC v6 and v7 8 1665 -NCIT:C6258 Stage IIIA Ovarian Cancer AJCC v6 and v7 9 1666 -NCIT:C6259 Stage IIIB Ovarian Cancer AJCC v6 and v7 9 1667 -NCIT:C6260 Stage IIIC Ovarian Cancer AJCC v6 and v7 9 1668 -NCIT:C7832 Stage IV Ovarian Cancer AJCC v6 and v7 8 1669 -NCIT:C139963 Ovarian Cancer by AJCC v8 Stage 7 1670 -NCIT:C139964 Stage I Ovarian Cancer AJCC v8 8 1671 -NCIT:C139965 Stage IA Ovarian Cancer AJCC v8 9 1672 -NCIT:C139966 Stage IB Ovarian Cancer AJCC v8 9 1673 -NCIT:C139967 Stage IC Ovarian Cancer AJCC v8 9 1674 -NCIT:C139968 Stage II Ovarian Cancer AJCC v8 8 1675 -NCIT:C139969 Stage IIA Ovarian Cancer AJCC v8 9 1676 -NCIT:C139970 Stage IIB Ovarian Cancer AJCC v8 9 1677 -NCIT:C139971 Stage III Ovarian Cancer AJCC v8 8 1678 -NCIT:C139972 Stage IIIA Ovarian Cancer AJCC v8 9 1679 -NCIT:C139973 Stage IIIA1 Ovarian Cancer AJCC v8 10 1680 -NCIT:C139974 Stage IIIA2 Ovarian Cancer AJCC v8 10 1681 -NCIT:C139975 Stage IIIB Ovarian Cancer AJCC v8 9 1682 -NCIT:C139976 Stage IIIC Ovarian Cancer AJCC v8 9 1683 -NCIT:C139977 Stage IV Ovarian Cancer AJCC v8 8 1684 -NCIT:C139978 Stage IVA Ovarian Cancer AJCC v8 9 1685 -NCIT:C139979 Stage IVB Ovarian Cancer AJCC v8 9 1686 -NCIT:C150091 Refractory Ovarian Carcinoma 7 1687 -NCIT:C147561 Platinum-Resistant Ovarian Carcinoma 8 1688 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 9 1689 -NCIT:C179459 Unresectable Platinum-Resistant Ovarian Carcinoma 9 1690 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 9 1691 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 10 1692 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 10 1693 -NCIT:C170968 Refractory Ovarian Adenocarcinoma 8 1694 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 9 1695 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 9 1696 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 10 1697 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 10 1698 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 9 1699 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 9 1700 -NCIT:C178671 Refractory Ovarian Seromucinous Carcinoma 8 1701 -NCIT:C178682 Refractory Ovarian Transitional Cell Carcinoma 8 1702 -NCIT:C178683 Refractory Ovarian Undifferentiated Carcinoma 8 1703 -NCIT:C178700 Platinum-Refractory Ovarian Carcinoma 8 1704 -NCIT:C179207 Refractory Ovarian Squamous Cell Carcinoma 8 1705 -NCIT:C183126 Refractory Malignant Ovarian Brenner Tumor 8 1706 -NCIT:C156064 Metastatic Ovarian Carcinoma 7 1707 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 8 1708 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 1709 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 1710 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 1711 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 9 1712 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 1713 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 1714 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 9 1715 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 1716 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 1717 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 1718 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 1719 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 1720 -NCIT:C165458 Advanced Ovarian Carcinoma 8 1721 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 1722 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 1723 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 1724 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 1725 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 1726 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 1727 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 1728 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 8 1729 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 1730 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 1731 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 1732 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 1733 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 8 1734 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 1735 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 8 1736 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 1737 -NCIT:C172234 Metastatic Ovarian Undifferentiated Carcinoma 8 1738 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 8 1739 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 1740 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 1741 -NCIT:C180333 Metastatic Microsatellite Stable Ovarian Carcinoma 8 1742 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 1743 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 8 1744 -NCIT:C27391 Metastatic Ovarian Small Cell Carcinoma, Hypercalcemic Type 8 1745 -NCIT:C159902 Platinum-Sensitive Ovarian Carcinoma 7 1746 -NCIT:C188391 Recurrent Platinum-Sensitive Ovarian Carcinoma 8 1747 -NCIT:C167073 Unresectable Ovarian Carcinoma 7 1748 -NCIT:C160781 Unresectable Ovarian Serous Adenocarcinoma 8 1749 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 9 1750 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 1751 -NCIT:C172235 Unresectable Ovarian Undifferentiated Carcinoma 8 1752 -NCIT:C179459 Unresectable Platinum-Resistant Ovarian Carcinoma 8 1753 -NCIT:C183245 Unresectable Ovarian Mucinous Adenocarcinoma 8 1754 -NCIT:C186273 Unresectable Ovarian Endometrioid Adenocarcinoma 8 1755 -NCIT:C171032 Ovarian Neuroendocrine Carcinoma 7 1756 -NCIT:C40440 Ovarian Small Cell Carcinoma, Pulmonary-Type 8 1757 -NCIT:C5238 Ovarian Large Cell Neuroendocrine Carcinoma 8 1758 -NCIT:C179334 Ovarian Dedifferentiated Carcinoma 7 1759 -NCIT:C180332 Microsatellite Stable Ovarian Carcinoma 7 1760 -NCIT:C180333 Metastatic Microsatellite Stable Ovarian Carcinoma 8 1761 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 1762 -NCIT:C27390 Ovarian Small Cell Carcinoma 7 1763 -NCIT:C40439 Ovarian Small Cell Carcinoma, Hypercalcemic Type 8 1764 -NCIT:C189334 Childhood Ovarian Small Cell Carcinoma, Hypercalcemic Type 9 1765 -NCIT:C27391 Metastatic Ovarian Small Cell Carcinoma, Hypercalcemic Type 9 1766 -NCIT:C40440 Ovarian Small Cell Carcinoma, Pulmonary-Type 8 1767 -NCIT:C36102 Hereditary Ovarian Carcinoma 7 1768 -NCIT:C148024 BRCA-Associated Ovarian Carcinoma 8 1769 -NCIT:C148025 Recurrent BRCA- Associated Ovarian Carcinoma 9 1770 -NCIT:C40090 Ovarian Seromucinous Carcinoma 7 1771 -NCIT:C178669 Recurrent Ovarian Seromucinous Carcinoma 8 1772 -NCIT:C178671 Refractory Ovarian Seromucinous Carcinoma 8 1773 -NCIT:C40093 Ovarian Squamous Cell Carcinoma 7 1774 -NCIT:C179207 Refractory Ovarian Squamous Cell Carcinoma 8 1775 -NCIT:C4270 Malignant Ovarian Brenner Tumor 7 1776 -NCIT:C153818 Recurrent Malignant Ovarian Brenner Tumor 8 1777 -NCIT:C183126 Refractory Malignant Ovarian Brenner Tumor 8 1778 -NCIT:C4509 Ovarian Undifferentiated Carcinoma 7 1779 -NCIT:C170754 Recurrent Ovarian Undifferentiated Carcinoma 8 1780 -NCIT:C172234 Metastatic Ovarian Undifferentiated Carcinoma 8 1781 -NCIT:C172235 Unresectable Ovarian Undifferentiated Carcinoma 8 1782 -NCIT:C178683 Refractory Ovarian Undifferentiated Carcinoma 8 1783 -NCIT:C5240 Ovarian Transitional Cell Carcinoma 7 1784 -NCIT:C153819 Recurrent Ovarian Transitional Cell Carcinoma 8 1785 -NCIT:C178682 Refractory Ovarian Transitional Cell Carcinoma 8 1786 -NCIT:C7700 Ovarian Adenocarcinoma 7 1787 -NCIT:C153614 Recurrent Ovarian Adenocarcinoma 8 1788 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 9 1789 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 9 1790 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 10 1791 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 10 1792 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 10 1793 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 9 1794 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 9 1795 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 10 1796 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 9 1797 -NCIT:C170968 Refractory Ovarian Adenocarcinoma 8 1798 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 9 1799 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 9 1800 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 10 1801 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 10 1802 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 9 1803 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 9 1804 -NCIT:C179208 Ovarian Signet Ring Cell Carcinoma 8 1805 -NCIT:C179321 Ovarian Mesonephric-Like Adenocarcinoma 8 1806 -NCIT:C179339 Ovarian Mixed Cell Adenocarcinoma 8 1807 -NCIT:C40078 Ovarian Clear Cell Adenocarcinoma 8 1808 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 9 1809 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 9 1810 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 10 1811 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 9 1812 -NCIT:C7980 Ovarian Clear Cell Cystadenocarcinoma 9 1813 -NCIT:C5228 Ovarian Cystadenocarcinoma 8 1814 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 9 1815 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 10 1816 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 9 1817 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 9 1818 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 10 1819 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 11 1820 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 11 1821 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 10 1822 -NCIT:C7980 Ovarian Clear Cell Cystadenocarcinoma 9 1823 -NCIT:C5243 Ovarian Mucinous Adenocarcinoma 8 1824 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 9 1825 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 9 1826 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 9 1827 -NCIT:C183245 Unresectable Ovarian Mucinous Adenocarcinoma 9 1828 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 9 1829 -NCIT:C7550 Ovarian Serous Adenocarcinoma 8 1830 -NCIT:C105555 Ovarian High Grade Serous Adenocarcinoma 9 1831 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 10 1832 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 10 1833 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 10 1834 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 11 1835 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 10 1836 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 11 1837 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 11 1838 -NCIT:C105556 Ovarian Low Grade Serous Adenocarcinoma 9 1839 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 10 1840 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 10 1841 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 9 1842 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 10 1843 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 10 1844 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 10 1845 -NCIT:C160781 Unresectable Ovarian Serous Adenocarcinoma 9 1846 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 10 1847 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 11 1848 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 9 1849 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 10 1850 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 11 1851 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 11 1852 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 10 1853 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 11 1854 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 11 1855 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 10 1856 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 11 1857 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 11 1858 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 10 1859 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 11 1860 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 11 1861 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 9 1862 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 10 1863 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 10 1864 -NCIT:C6256 Ovarian Serous Surface Papillary Adenocarcinoma 9 1865 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 9 1866 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 10 1867 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 11 1868 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 11 1869 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 10 1870 -NCIT:C7979 Ovarian Endometrioid Adenocarcinoma 8 1871 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 9 1872 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 9 1873 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 9 1874 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 10 1875 -NCIT:C186273 Unresectable Ovarian Endometrioid Adenocarcinoma 9 1876 -NCIT:C40061 Ovarian Endometrioid Adenocarcinoma with Squamous Differentiation 9 1877 -NCIT:C7833 Recurrent Ovarian Carcinoma 7 1878 -NCIT:C148025 Recurrent BRCA- Associated Ovarian Carcinoma 8 1879 -NCIT:C153614 Recurrent Ovarian Adenocarcinoma 8 1880 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 9 1881 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 9 1882 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 10 1883 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 10 1884 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 10 1885 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 9 1886 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 9 1887 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 10 1888 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 9 1889 -NCIT:C153818 Recurrent Malignant Ovarian Brenner Tumor 8 1890 -NCIT:C153819 Recurrent Ovarian Transitional Cell Carcinoma 8 1891 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 8 1892 -NCIT:C170754 Recurrent Ovarian Undifferentiated Carcinoma 8 1893 -NCIT:C178669 Recurrent Ovarian Seromucinous Carcinoma 8 1894 -NCIT:C188391 Recurrent Platinum-Sensitive Ovarian Carcinoma 8 1895 -NCIT:C190201 Locally Recurrent Ovarian Carcinoma 8 1896 -NCIT:C7558 Endometrial Carcinoma 6 1897 -NCIT:C114656 Endometrial Adenosquamous Carcinoma 7 1898 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 8 1899 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 8 1900 -NCIT:C126769 Endometrial Dedifferentiated Carcinoma 7 1901 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 8 1902 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 8 1903 -NCIT:C150093 Refractory Endometrial Carcinoma 7 1904 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 8 1905 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 8 1906 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 8 1907 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 8 1908 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 9 1909 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 9 1910 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 9 1911 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 9 1912 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 9 1913 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 8 1914 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 8 1915 -NCIT:C150094 Recurrent Endometrial Carcinoma 7 1916 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 8 1917 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 8 1918 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 9 1919 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 9 1920 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 9 1921 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 9 1922 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 9 1923 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 8 1924 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 8 1925 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 8 1926 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 8 1927 -NCIT:C190200 Locally Recurrent Endometrial Carcinoma 8 1928 -NCIT:C156068 Metastatic Endometrial Carcinoma 7 1929 -NCIT:C159676 Advanced Endometrial Carcinoma 8 1930 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 1931 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 1932 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 1933 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 1934 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 8 1935 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 1936 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 1937 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 9 1938 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 8 1939 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 8 1940 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 1941 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 8 1942 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 9 1943 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 1944 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 1945 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 1946 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 1947 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 9 1948 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 1949 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 1950 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 1951 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 1952 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 9 1953 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 9 1954 -NCIT:C171033 Endometrial Neuroendocrine Carcinoma 7 1955 -NCIT:C126772 Endometrial Large Cell Neuroendocrine Carcinoma 8 1956 -NCIT:C40155 Endometrial Small Cell Neuroendocrine Carcinoma 8 1957 -NCIT:C171610 Unresectable Endometrial Carcinoma 7 1958 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 8 1959 -NCIT:C180335 Microsatellite Stable Endometrial Carcinoma 7 1960 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 8 1961 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 1962 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 8 1963 -NCIT:C190680 High Grade Endometrial Carcinoma 7 1964 -NCIT:C27838 Endometrial Serous Adenocarcinoma 8 1965 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 9 1966 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 9 1967 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 9 1968 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 1969 -NCIT:C187374 Platinum-Sensitive Endometrial Serous Adenocarcinoma 9 1970 -NCIT:C40148 High Grade Endometrial Endometrioid Adenocarcinoma 8 1971 -NCIT:C40156 Endometrial Undifferentiated Carcinoma 8 1972 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 9 1973 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 9 1974 -NCIT:C8028 Endometrial Clear Cell Adenocarcinoma 8 1975 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 9 1976 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 9 1977 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 9 1978 -NCIT:C40154 Endometrial Transitional Cell Carcinoma 7 1979 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 8 1980 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 8 1981 -NCIT:C7359 Endometrial Adenocarcinoma 7 1982 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 8 1983 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 9 1984 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 9 1985 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 9 1986 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 9 1987 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 9 1988 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 8 1989 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 9 1990 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 9 1991 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 9 1992 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 9 1993 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 9 1994 -NCIT:C179322 Endometrial Mesonephric-Like Adenocarcinoma 8 1995 -NCIT:C180536 Endometrial Mucinous Adenocarcinoma, Intestinal-Type 8 1996 -NCIT:C180537 Endometrial Mucinous Adenocarcinoma, Gastric-Type 8 1997 -NCIT:C39749 Type II Endometrial Adenocarcinoma 8 1998 -NCIT:C27838 Endometrial Serous Adenocarcinoma 9 1999 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 10 2000 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 10 2001 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 10 2002 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 11 2003 -NCIT:C187374 Platinum-Sensitive Endometrial Serous Adenocarcinoma 10 2004 -NCIT:C40152 Serous Endometrial Intraepithelial Carcinoma 9 2005 -NCIT:C8028 Endometrial Clear Cell Adenocarcinoma 9 2006 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 10 2007 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 10 2008 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 10 2009 -NCIT:C40145 Type I Endometrial Adenocarcinoma 8 2010 -NCIT:C40144 Endometrial Mucinous Adenocarcinoma 9 2011 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 10 2012 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 10 2013 -NCIT:C40149 FIGO Grade 1 Endometrial Mucinous Adenocarcinoma 10 2014 -NCIT:C40150 FIGO Grade 2 Endometrial Mucinous Adenocarcinoma 10 2015 -NCIT:C40151 FIGO Grade 3 Endometrial Mucinous Adenocarcinoma 10 2016 -NCIT:C6287 Endometrial Endometrioid Adenocarcinoma 9 2017 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 10 2018 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 10 2019 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 10 2020 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 11 2021 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 11 2022 -NCIT:C180510 Low Grade Endometrial Endometrioid Adenocarcinoma 10 2023 -NCIT:C40146 FIGO Grade 1 Endometrial Endometrioid Adenocarcinoma 11 2024 -NCIT:C40147 FIGO Grade 2 Endometrial Endometrioid Adenocarcinoma 11 2025 -NCIT:C180512 POLE-Ultramutated Endometrial Endometrioid Adenocarcinoma 10 2026 -NCIT:C180514 Mismatch Repair-Deficient Endometrial Endometrioid Adenocarcinoma 10 2027 -NCIT:C180515 p53-Mutant Endometrial Endometrioid Adenocarcinoma 10 2028 -NCIT:C180516 No Specific Molecular Profile Endometrial Endometrioid Adenocarcinoma 10 2029 -NCIT:C27839 Endometrial Endometrioid Adenocarcinoma, Secretory Variant 10 2030 -NCIT:C27843 Endometrial Endometrioid Adenocarcinoma with Clear Cell Change 10 2031 -NCIT:C27844 Endometrial Endometrioid Adenocarcinoma with a Poorly Differentiated Carcinomatous Component 10 2032 -NCIT:C27845 Endometrial Endometrioid Adenocarcinoma with an Undifferentiated Carcinomatous Component 10 2033 -NCIT:C27846 Villoglandular Endometrial Endometrioid Adenocarcinoma 10 2034 -NCIT:C27848 Endometrial Endometrioid Adenocarcinoma, Ciliated Variant 10 2035 -NCIT:C27849 Oxyphilic Endometrial Endometrioid Adenocarcinoma 10 2036 -NCIT:C27850 Endometrial Endometrioid Adenocarcinoma with Spindled Epithelial Cells 10 2037 -NCIT:C40148 High Grade Endometrial Endometrioid Adenocarcinoma 10 2038 -NCIT:C6290 Endometrial Endometrioid Adenocarcinoma, Variant with Squamous Differentiation 10 2039 -NCIT:C40153 Endometrial Mixed Cell Adenocarcinoma 8 2040 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 9 2041 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 9 2042 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 9 2043 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 8 2044 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 9 2045 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 2046 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 2047 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 2048 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 2049 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 9 2050 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 2051 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 2052 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 2053 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 2054 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 9 2055 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 9 2056 -NCIT:C8719 Endometrial Squamous Cell Carcinoma 7 2057 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 8 2058 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 8 2059 -NCIT:C9039 Cervical Carcinoma 6 2060 -NCIT:C128045 Cervical Neuroendocrine Carcinoma 7 2061 -NCIT:C40214 Cervical Large Cell Neuroendocrine Carcinoma 8 2062 -NCIT:C7982 Cervical Small Cell Neuroendocrine Carcinoma 8 2063 -NCIT:C139733 Cervical Cancer by AJCC v8 Stage 7 2064 -NCIT:C139734 Stage I Cervical Cancer AJCC v8 8 2065 -NCIT:C139735 Stage IA Cervical Cancer AJCC v8 9 2066 -NCIT:C139736 Stage IA1 Cervical Cancer AJCC v8 10 2067 -NCIT:C139737 Stage IA2 Cervical Cancer AJCC v8 10 2068 -NCIT:C139738 Stage IB Cervical Cancer AJCC v8 9 2069 -NCIT:C139739 Stage IB1 Cervical Cancer AJCC v8 10 2070 -NCIT:C139740 Stage IB2 Cervical Cancer AJCC v8 10 2071 -NCIT:C139743 Stage II Cervical Cancer AJCC v8 8 2072 -NCIT:C139744 Stage IIA Cervical Cancer AJCC v8 9 2073 -NCIT:C139745 Stage IIA1 Cervical Cancer AJCC v8 10 2074 -NCIT:C139746 Stage IIA2 Cervical Cancer AJCC v8 10 2075 -NCIT:C139748 Stage IIB Cervical Cancer AJCC v8 9 2076 -NCIT:C139749 Stage III Cervical Cancer AJCC v8 8 2077 -NCIT:C139750 Stage IIIA Cervical Cancer AJCC v8 9 2078 -NCIT:C139752 Stage IIIB Cervical Cancer AJCC v8 9 2079 -NCIT:C139753 Stage IV Cervical Cancer AJCC v8 8 2080 -NCIT:C139754 Stage IVA Cervical Cancer AJCC v8 9 2081 -NCIT:C139755 Stage IVB Cervical Cancer AJCC v8 9 2082 -NCIT:C153387 Metastatic Cervical Carcinoma 7 2083 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 8 2084 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 2085 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 2086 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 8 2087 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 2088 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 2089 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 2090 -NCIT:C153390 Metastatic Cervical Adenosquamous Carcinoma 8 2091 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 2092 -NCIT:C156294 Advanced Cervical Carcinoma 8 2093 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 2094 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 2095 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 2096 -NCIT:C156295 Locally Advanced Cervical Carcinoma 8 2097 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 2098 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 2099 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 9 2100 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 2101 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 2102 -NCIT:C162225 Cervical Cancer by FIGO Stage 2018 7 2103 -NCIT:C162226 Stage I Cervical Cancer FIGO 2018 8 2104 -NCIT:C162227 Stage IA Cervical Cancer FIGO 2018 9 2105 -NCIT:C162228 Stage IA1 Cervical Cancer FIGO 2018 10 2106 -NCIT:C162229 Stage IA2 Cervical Cancer FIGO 2018 10 2107 -NCIT:C162230 Stage IB Cervical Cancer FIGO 2018 9 2108 -NCIT:C162231 Stage IB1 Cervical Cancer FIGO 2018 10 2109 -NCIT:C162232 Stage IB2 Cervical Cancer FIGO 2018 10 2110 -NCIT:C162233 Stage IB3 Cervical Cancer FIGO 2018 10 2111 -NCIT:C162234 Stage II Cervical Cancer FIGO 2018 8 2112 -NCIT:C162235 Stage IIA Cervical Cancer FIGO 2018 9 2113 -NCIT:C162236 Stage IIA1 Cervical Cancer FIGO 2018 10 2114 -NCIT:C162237 Stage IIA2 Cervical Cancer FIGO 2018 10 2115 -NCIT:C162238 Stage IIB Cervical Cancer FIGO 2018 9 2116 -NCIT:C162239 Stage III Cervical Cancer FIGO 2018 8 2117 -NCIT:C162240 Stage IIIA Cervical Cancer FIGO 2018 9 2118 -NCIT:C162241 Stage IIIB Cervical Cancer FIGO 2018 9 2119 -NCIT:C162242 Stage IIIC Cervical Cancer FIGO 2018 9 2120 -NCIT:C162243 Stage IIIC1 Cervical Cancer FIGO 2018 10 2121 -NCIT:C162244 Stage IIIC2 Cervical Cancer FIGO 2018 10 2122 -NCIT:C162245 Stage IV Cervical Cancer FIGO 2018 8 2123 -NCIT:C162246 Stage IVA Cervical Cancer FIGO 2018 9 2124 -NCIT:C162247 Stage IVB Cervical Cancer FIGO 2018 9 2125 -NCIT:C170513 Refractory Cervical Carcinoma 7 2126 -NCIT:C181034 Refractory Cervical Squamous Cell Carcinoma 8 2127 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 9 2128 -NCIT:C181036 Refractory Cervical Adenocarcinoma 8 2129 -NCIT:C174024 Unresectable Cervical Carcinoma 7 2130 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 8 2131 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 2132 -NCIT:C174025 Unresectable Cervical Squamous Cell Carcinoma 8 2133 -NCIT:C174027 Unresectable Cervical Adenosquamous Carcinoma 8 2134 -NCIT:C174029 Unresectable Cervical Adenocarcinoma 8 2135 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 2136 -NCIT:C180878 Cervical Mucoepidermoid Carcinoma 7 2137 -NCIT:C181562 Cervical Cancer by AJCC v9 Stage 7 2138 -NCIT:C181564 Stage I Cervical Cancer AJCC v9 8 2139 -NCIT:C181565 Stage IA Cervical Cancer AJCC v9 9 2140 -NCIT:C181567 Stage IA1 Cervical Cancer AJCC v9 10 2141 -NCIT:C181568 Stage IA2 Cervical Cancer AJCC v9 10 2142 -NCIT:C181570 Stage IB Cervical Cancer AJCC v9 9 2143 -NCIT:C181571 Stage IB1 Cervical Cancer AJCC v9 10 2144 -NCIT:C181576 Stage IB2 Cervical Cancer AJCC v9 10 2145 -NCIT:C181579 Stage IB3 Cervical Cancer AJCC v9 10 2146 -NCIT:C181583 Stage II Cervical Cancer AJCC v9 8 2147 -NCIT:C181584 Stage IIA Cervical Cancer AJCC v9 9 2148 -NCIT:C181586 Stage IIA1 Cervical Cancer AJCC v9 10 2149 -NCIT:C181588 Stage IIA2 Cervical Cancer AJCC v9 10 2150 -NCIT:C181591 Stage IIB Cervical Cancer AJCC v9 9 2151 -NCIT:C181592 Stage III Cervical Cancer AJCC v9 8 2152 -NCIT:C181594 Stage IIIA Cervical Cancer AJCC v9 9 2153 -NCIT:C181595 Stage IIIB Cervical Cancer AJCC v9 9 2154 -NCIT:C181596 Stage IIIC Cervical Cancer AJCC v9 9 2155 -NCIT:C181597 Stage IIIC1 Cervical Cancer AJCC v9 10 2156 -NCIT:C181598 Stage IIIC2 Cervical Cancer AJCC v9 10 2157 -NCIT:C181599 Stage IV Cervical Cancer AJCC v9 8 2158 -NCIT:C181601 Stage IVA Cervical Cancer AJCC v9 9 2159 -NCIT:C181603 Stage IVB Cervical Cancer AJCC v9 9 2160 -NCIT:C186619 Cervical Cancer by FIGO Stage 2009 7 2161 -NCIT:C186620 Stage I Cervical Cancer FIGO 2009 8 2162 -NCIT:C186621 Stage IA Cervical Cancer FIGO 2009 9 2163 -NCIT:C186622 Stage IA1 Cervical Cancer FIGO 2009 10 2164 -NCIT:C186623 Stage IA2 Cervical Cancer FIGO 2009 10 2165 -NCIT:C186624 Stage IB Cervical Cancer FIGO 2009 9 2166 -NCIT:C186625 Stage IB1 Cervical Cancer FIGO 2009 10 2167 -NCIT:C186626 Stage IB2 Cervical Cancer FIGO 2009 10 2168 -NCIT:C186627 Stage II Cervical Cancer FIGO 2009 8 2169 -NCIT:C186628 Stage IIA Cervical Cancer FIGO 2009 9 2170 -NCIT:C186629 Stage IIA1 Cervical Cancer FIGO 2009 10 2171 -NCIT:C186630 Stage IIA2 Cervical Cancer FIGO 2009 10 2172 -NCIT:C186631 Stage IIB Cervical Cancer FIGO 2009 9 2173 -NCIT:C186632 Stage III Cervical Cancer FIGO 2009 8 2174 -NCIT:C186633 Stage IIIA Cervical Cancer FIGO 2009 9 2175 -NCIT:C186634 Stage IIIB Cervical Cancer FIGO 2009 9 2176 -NCIT:C186635 Stage IV Cervical Cancer FIGO 2009 8 2177 -NCIT:C186636 Stage IVA Cervical Cancer FIGO 2009 9 2178 -NCIT:C186637 Stage IVB Cervical Cancer FIGO 2009 9 2179 -NCIT:C27675 Human Papillomavirus-Related Cervical Carcinoma 7 2180 -NCIT:C27676 Human Papillomavirus-Related Cervical Squamous Cell Carcinoma 8 2181 -NCIT:C40192 Cervical Papillary Squamous Cell Carcinoma 9 2182 -NCIT:C40191 Cervical Warty Carcinoma 10 2183 -NCIT:C40194 Cervical Squamotransitional Carcinoma 10 2184 -NCIT:C27677 Human Papillomavirus-Related Cervical Adenocarcinoma 8 2185 -NCIT:C127907 Endocervical Adenocarcinoma, Usual-Type 9 2186 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 10 2187 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 10 2188 -NCIT:C40208 Cervical Villoglandular Adenocarcinoma 10 2189 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 9 2190 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 9 2191 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 9 2192 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 9 2193 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 9 2194 -NCIT:C40213 Cervical Adenoid Basal Carcinoma 7 2195 -NCIT:C4028 Cervical Squamous Cell Carcinoma 7 2196 -NCIT:C136649 Recurrent Cervical Squamous Cell Carcinoma 8 2197 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 8 2198 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 2199 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 2200 -NCIT:C174025 Unresectable Cervical Squamous Cell Carcinoma 8 2201 -NCIT:C180839 Cervical Squamous Cell Carcinoma, Not Otherwise Specified 8 2202 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 9 2203 -NCIT:C180841 Human Papillomavirus-Independent Cervical Squamous Cell Carcinoma 8 2204 -NCIT:C181034 Refractory Cervical Squamous Cell Carcinoma 8 2205 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 9 2206 -NCIT:C27676 Human Papillomavirus-Related Cervical Squamous Cell Carcinoma 8 2207 -NCIT:C40192 Cervical Papillary Squamous Cell Carcinoma 9 2208 -NCIT:C40191 Cervical Warty Carcinoma 10 2209 -NCIT:C40194 Cervical Squamotransitional Carcinoma 10 2210 -NCIT:C36094 Early Invasive Cervical Squamous Cell Carcinoma 8 2211 -NCIT:C40187 Cervical Keratinizing Squamous Cell Carcinoma 8 2212 -NCIT:C40188 Cervical Non-Keratinizing Squamous Cell Carcinoma 8 2213 -NCIT:C40189 Cervical Basaloid Carcinoma 8 2214 -NCIT:C40190 Cervical Verrucous Carcinoma 8 2215 -NCIT:C40193 Cervical Lymphoepithelioma-Like Carcinoma 8 2216 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 8 2217 -NCIT:C4029 Cervical Adenocarcinoma 7 2218 -NCIT:C127915 Cervical Adenocarcinoma Admixed with Neuroendocrine Carcinoma 8 2219 -NCIT:C136651 Recurrent Cervical Adenocarcinoma 8 2220 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 9 2221 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 8 2222 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 2223 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 2224 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 2225 -NCIT:C174029 Unresectable Cervical Adenocarcinoma 8 2226 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 2227 -NCIT:C180848 Human Papillomavirus-Independent Cervical Adenocarcinoma 8 2228 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 9 2229 -NCIT:C40201 Cervical Serous Adenocarcinoma 9 2230 -NCIT:C40206 Human Papillomavirus-Independent Cervical Adenocarcinoma, Gastric-Type 9 2231 -NCIT:C40254 Cervical Mesonephric Adenocarcinoma 9 2232 -NCIT:C6343 Cervical Endometrioid Adenocarcinoma 9 2233 -NCIT:C6344 Human Papillomavirus-Independent Cervical Adenocarcinoma, Clear Cell-Type 9 2234 -NCIT:C180870 Cervical Adenocarcinoma, Not Otherwise Specified 8 2235 -NCIT:C181036 Refractory Cervical Adenocarcinoma 8 2236 -NCIT:C27677 Human Papillomavirus-Related Cervical Adenocarcinoma 8 2237 -NCIT:C127907 Endocervical Adenocarcinoma, Usual-Type 9 2238 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 10 2239 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 10 2240 -NCIT:C40208 Cervical Villoglandular Adenocarcinoma 10 2241 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 9 2242 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 9 2243 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 9 2244 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 9 2245 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 9 2246 -NCIT:C36095 Cervical Mucinous Adenocarcinoma 8 2247 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 9 2248 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 9 2249 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 9 2250 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 9 2251 -NCIT:C40206 Human Papillomavirus-Independent Cervical Adenocarcinoma, Gastric-Type 9 2252 -NCIT:C36096 Early Invasive Cervical Adenocarcinoma 8 2253 -NCIT:C4520 Cervical Adenocarcinoma In Situ 8 2254 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 9 2255 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 9 2256 -NCIT:C4519 Cervical Adenosquamous Carcinoma 7 2257 -NCIT:C136650 Recurrent Cervical Adenosquamous Carcinoma 8 2258 -NCIT:C153390 Metastatic Cervical Adenosquamous Carcinoma 8 2259 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 2260 -NCIT:C174027 Unresectable Cervical Adenosquamous Carcinoma 8 2261 -NCIT:C40212 Cervical Poorly Differentiated Adenosquamous Carcinoma 8 2262 -NCIT:C6345 Cervical Undifferentiated Carcinoma 7 2263 -NCIT:C6346 Cervical Adenoid Cystic Carcinoma 7 2264 -NCIT:C7432 AIDS-Related Cervical Carcinoma 7 2265 -NCIT:C7453 Exocervical Carcinoma 7 2266 -NCIT:C7804 Recurrent Cervical Carcinoma 7 2267 -NCIT:C136649 Recurrent Cervical Squamous Cell Carcinoma 8 2268 -NCIT:C136650 Recurrent Cervical Adenosquamous Carcinoma 8 2269 -NCIT:C136651 Recurrent Cervical Adenocarcinoma 8 2270 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 9 2271 -NCIT:C8577 Invasive Cervical Carcinoma 7 2272 -NCIT:C90493 Cervical Cancer by AJCC v6 Stage 7 2273 -NCIT:C4000 Stage 0 Cervical Cancer AJCC v6 8 2274 -NCIT:C7803 Stage II Cervical Cancer AJCC v6 8 2275 -NCIT:C6319 Stage IIA Cervical Cancer AJCC v6 9 2276 -NCIT:C6320 Stage IIB Cervical Cancer AJCC v6 and v7 9 2277 -NCIT:C9204 Stage I Cervical Cancer AJCC v6 and v7 8 2278 -NCIT:C6313 Stage IA Cervical Cancer AJCC v6 and v7 9 2279 -NCIT:C6314 Stage IA1 Cervical Cancer AJCC v6 and v7 10 2280 -NCIT:C6315 Stage IA2 Cervical Cancer AJCC v6 and v7 10 2281 -NCIT:C6316 Stage IB Cervical Cancer AJCC v6 and v7 9 2282 -NCIT:C6317 Stage IB1 Cervical Cancer AJCC v6 and v7 10 2283 -NCIT:C6318 Stage IB2 Cervical Cancer AJCC v6 and v7 10 2284 -NCIT:C9205 Stage III Cervical Cancer AJCC v6 and v7 8 2285 -NCIT:C6321 Stage IIIB Cervical Cancer AJCC v6 and v7 9 2286 -NCIT:C6322 Stage IIIA Cervical Cancer AJCC v6 and v7 9 2287 -NCIT:C9206 Stage IV Cervical Cancer AJCC v6 and v7 8 2288 -NCIT:C6323 Stage IVA Cervical Cancer AJCC v6 and v7 9 2289 -NCIT:C6324 Stage IVB Cervical Cancer AJCC v6 and v7 9 2290 -NCIT:C91208 Cervical Cancer by AJCC v7 Stage 7 2291 -NCIT:C89550 Stage 0 Cervical Cancer AJCC v7 8 2292 -NCIT:C4520 Cervical Adenocarcinoma In Situ 9 2293 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 10 2294 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 10 2295 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 9 2296 -NCIT:C89551 Stage II Cervical Cancer AJCC v7 8 2297 -NCIT:C6320 Stage IIB Cervical Cancer AJCC v6 and v7 9 2298 -NCIT:C89552 Stage IIA Cervical Cancer AJCC v7 9 2299 -NCIT:C95172 Stage IIA1 Cervical Cancer AJCC v7 10 2300 -NCIT:C95173 Stage IIA2 Cervical Cancer AJCC v7 10 2301 -NCIT:C9204 Stage I Cervical Cancer AJCC v6 and v7 8 2302 -NCIT:C6313 Stage IA Cervical Cancer AJCC v6 and v7 9 2303 -NCIT:C6314 Stage IA1 Cervical Cancer AJCC v6 and v7 10 2304 -NCIT:C6315 Stage IA2 Cervical Cancer AJCC v6 and v7 10 2305 -NCIT:C6316 Stage IB Cervical Cancer AJCC v6 and v7 9 2306 -NCIT:C6317 Stage IB1 Cervical Cancer AJCC v6 and v7 10 2307 -NCIT:C6318 Stage IB2 Cervical Cancer AJCC v6 and v7 10 2308 -NCIT:C9205 Stage III Cervical Cancer AJCC v6 and v7 8 2309 -NCIT:C6321 Stage IIIB Cervical Cancer AJCC v6 and v7 9 2310 -NCIT:C6322 Stage IIIA Cervical Cancer AJCC v6 and v7 9 2311 -NCIT:C9206 Stage IV Cervical Cancer AJCC v6 and v7 8 2312 -NCIT:C6323 Stage IVA Cervical Cancer AJCC v6 and v7 9 2313 -NCIT:C6324 Stage IVB Cervical Cancer AJCC v6 and v7 9 2314 -NCIT:C181196 Male Reproductive System Carcinoma 5 2315 -NCIT:C177149 Refractory Male Reproductive System Carcinoma 6 2316 -NCIT:C167255 Refractory Prostate Carcinoma 7 2317 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 8 2318 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 9 2319 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 9 2320 -NCIT:C161609 Double-Negative Prostate Carcinoma 9 2321 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 9 2322 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 9 2323 -NCIT:C167256 Refractory Prostate Adenocarcinoma 8 2324 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 8 2325 -NCIT:C177150 Refractory Penile Carcinoma 7 2326 -NCIT:C39906 Seminal Vesicle Adenocarcinoma 6 2327 -NCIT:C39957 Epididymal Adenocarcinoma 6 2328 -NCIT:C4863 Prostate Carcinoma 6 2329 -NCIT:C103817 Hereditary Prostate Carcinoma 7 2330 -NCIT:C114933 Hormone-Resistant Prostate Carcinoma 7 2331 -NCIT:C138167 Prostate Carcinoma by Gene Expression Profile 7 2332 -NCIT:C138168 Luminal A Prostate Carcinoma 8 2333 -NCIT:C138169 Luminal B Prostate Carcinoma 8 2334 -NCIT:C138170 Basal-Like Prostate Carcinoma 8 2335 -NCIT:C140163 Prostate Cancer by AJCC v8 Stage 7 2336 -NCIT:C140164 Stage I Prostate Cancer AJCC v8 8 2337 -NCIT:C140165 Stage II Prostate Cancer AJCC v8 8 2338 -NCIT:C140166 Stage IIA Prostate Cancer AJCC v8 9 2339 -NCIT:C140167 Stage IIB Prostate Cancer AJCC v8 9 2340 -NCIT:C140168 Stage IIC Prostate Cancer AJCC v8 9 2341 -NCIT:C140169 Stage III Prostate Cancer AJCC v8 8 2342 -NCIT:C140170 Stage IIIA Prostate Cancer AJCC v8 9 2343 -NCIT:C140171 Stage IIIB Prostate Cancer AJCC v8 9 2344 -NCIT:C140172 Stage IIIC Prostate Cancer AJCC v8 9 2345 -NCIT:C140173 Stage IV Prostate Cancer AJCC v8 8 2346 -NCIT:C140174 Stage IVA Prostate Cancer AJCC v8 9 2347 -NCIT:C140175 Stage IVB Prostate Cancer AJCC v8 9 2348 -NCIT:C161022 Intraductal Prostate Carcinoma 7 2349 -NCIT:C167255 Refractory Prostate Carcinoma 7 2350 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 8 2351 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 9 2352 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 9 2353 -NCIT:C161609 Double-Negative Prostate Carcinoma 9 2354 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 9 2355 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 9 2356 -NCIT:C167256 Refractory Prostate Adenocarcinoma 8 2357 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 8 2358 -NCIT:C171611 Unresectable Prostate Carcinoma 7 2359 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 8 2360 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 2361 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 8 2362 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 8 2363 -NCIT:C176517 Localized Prostate Carcinoma 7 2364 -NCIT:C39898 Primary Prostate Urothelial Carcinoma 7 2365 -NCIT:C39900 Prostatic Urethra Urothelial Carcinoma 8 2366 -NCIT:C39901 Prostatic Duct Urothelial Carcinoma 8 2367 -NCIT:C48596 Invasive Prostate Carcinoma 7 2368 -NCIT:C158912 Prostate Neuroendocrine Carcinoma 8 2369 -NCIT:C158650 Prostate Large Cell Neuroendocrine Carcinoma 9 2370 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 9 2371 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 10 2372 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 10 2373 -NCIT:C6766 Prostate Small Cell Neuroendocrine Carcinoma 9 2374 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 10 2375 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 10 2376 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 10 2377 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 10 2378 -NCIT:C2919 Prostate Adenocarcinoma 8 2379 -NCIT:C150557 Prostate Adenocarcinoma without Neuroendocrine Differentiation 9 2380 -NCIT:C164185 Aggressive Prostate Adenocarcinoma 9 2381 -NCIT:C164186 Prostate Adenocarcinoma by AJCC v7 Stage 9 2382 -NCIT:C8947 Stage I Prostate Adenocarcinoma AJCC v7 10 2383 -NCIT:C8948 Stage II Prostate Adenocarcinoma AJCC v7 10 2384 -NCIT:C8949 Stage III Prostate Adenocarcinoma AJCC v7 10 2385 -NCIT:C8950 Stage IV Prostate Adenocarcinoma AJCC v7 10 2386 -NCIT:C167256 Refractory Prostate Adenocarcinoma 9 2387 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 9 2388 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 10 2389 -NCIT:C27905 Well Differentiated Prostate Adenocarcinoma 9 2390 -NCIT:C39896 Prostate Ductal Adenocarcinoma, Papillary Pattern 10 2391 -NCIT:C27906 Moderately Differentiated Prostate Adenocarcinoma 9 2392 -NCIT:C27916 Poorly Differentiated Prostate Adenocarcinoma 9 2393 -NCIT:C5530 Prostate Acinar Adenocarcinoma, Sarcomatoid Variant 10 2394 -NCIT:C39903 Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 2395 -NCIT:C158656 Usual Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 2396 -NCIT:C158664 Prostate Adenocarcinoma with Paneth Cell-Like Neuroendocrine Differentiation 10 2397 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 2398 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 2399 -NCIT:C5596 Prostate Acinar Adenocarcinoma 9 2400 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 10 2401 -NCIT:C158656 Usual Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 2402 -NCIT:C160817 Prostate Acinar Adenocarcinoma, Microcystic Variant 10 2403 -NCIT:C160818 Prostate Acinar Adenocarcinoma, Pleomorphic Giant Cell Variant 10 2404 -NCIT:C39880 Prostate Acinar Adenocarcinoma, Atrophic Variant 10 2405 -NCIT:C39881 Prostate Acinar Adenocarcinoma, Pseudohyperplastic Variant 10 2406 -NCIT:C39882 Prostate Acinar Adenocarcinoma, Foamy Gland Variant 10 2407 -NCIT:C39884 Prostate Acinar Adenocarcinoma, Oncocytic Variant 10 2408 -NCIT:C39885 Prostate Acinar Adenocarcinoma, Lymphoepithelioma-Like Variant 10 2409 -NCIT:C5530 Prostate Acinar Adenocarcinoma, Sarcomatoid Variant 10 2410 -NCIT:C5535 Prostate Acinar Adenocarcinoma, Signet Ring-Like Cell Variant 10 2411 -NCIT:C5537 Prostate Acinar Mucinous Adenocarcinoma 10 2412 -NCIT:C6813 Prostate Ductal Adenocarcinoma 9 2413 -NCIT:C39895 Prostate Ductal Adenocarcinoma, Cribriform Pattern 10 2414 -NCIT:C39896 Prostate Ductal Adenocarcinoma, Papillary Pattern 10 2415 -NCIT:C39897 Prostate Ductal Adenocarcinoma, Solid Pattern 10 2416 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 9 2417 -NCIT:C156286 Advanced Prostate Adenocarcinoma 10 2418 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 2419 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 10 2420 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 11 2421 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 2422 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 2423 -NCIT:C39902 Prostate Basal Cell Carcinoma 8 2424 -NCIT:C5536 Prostate Squamous Cell Carcinoma 8 2425 -NCIT:C5538 Prostate Adenosquamous Carcinoma 8 2426 -NCIT:C5539 Prostate Adenoid Cystic Carcinoma 8 2427 -NCIT:C5597 Prostate Undifferentiated Carcinoma 8 2428 -NCIT:C7079 Prostate Cancer by Whitmore-Jewett Stage 7 2429 -NCIT:C7099 Stage D Prostate Cancer 8 2430 -NCIT:C7552 Stage C Prostate Cancer 8 2431 -NCIT:C7554 Stage B Prostate Cancer 8 2432 -NCIT:C7556 Stage A Prostate Cancer 8 2433 -NCIT:C7902 Recurrent Prostate Carcinoma 7 2434 -NCIT:C156771 Biochemically Recurrent Prostate Carcinoma 8 2435 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 8 2436 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 9 2437 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 8 2438 -NCIT:C8946 Metastatic Prostate Carcinoma 7 2439 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 8 2440 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 9 2441 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 9 2442 -NCIT:C161609 Double-Negative Prostate Carcinoma 9 2443 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 9 2444 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 9 2445 -NCIT:C132881 Prostate Carcinoma Metastatic in the Soft Tissue 8 2446 -NCIT:C148536 Castration-Naive Prostate Carcinoma 8 2447 -NCIT:C153336 Castration-Sensitive Prostate Carcinoma 8 2448 -NCIT:C156284 Advanced Prostate Carcinoma 8 2449 -NCIT:C156286 Advanced Prostate Adenocarcinoma 9 2450 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 2451 -NCIT:C156285 Locally Advanced Prostate Carcinoma 8 2452 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 9 2453 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 2454 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 9 2455 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 2456 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 9 2457 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 8 2458 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 9 2459 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 9 2460 -NCIT:C161584 Prostate Carcinoma Metastatic in the Pelvic Cavity 8 2461 -NCIT:C161587 Prostate Carcinoma Metastatic in the Lymph Nodes 8 2462 -NCIT:C171265 Oligometastatic Prostate Carcinoma 8 2463 -NCIT:C36307 Prostate Carcinoma Metastatic in the Lung 8 2464 -NCIT:C36308 Prostate Carcinoma Metastatic in the Bone 8 2465 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 8 2466 -NCIT:C156286 Advanced Prostate Adenocarcinoma 9 2467 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 2468 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 9 2469 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 2470 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 2471 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 2472 -NCIT:C90521 Prostate Cancer by AJCC v6 Stage 7 2473 -NCIT:C7551 Stage III Prostate Cancer AJCC v6 8 2474 -NCIT:C7553 Stage II Prostate Cancer AJCC v6 8 2475 -NCIT:C7555 Stage I Prostate Cancer AJCC v6 8 2476 -NCIT:C9075 Stage IV Prostate Cancer AJCC v6 8 2477 -NCIT:C91233 Prostate Cancer by AJCC v7 Stage 7 2478 -NCIT:C164186 Prostate Adenocarcinoma by AJCC v7 Stage 8 2479 -NCIT:C8947 Stage I Prostate Adenocarcinoma AJCC v7 9 2480 -NCIT:C8948 Stage II Prostate Adenocarcinoma AJCC v7 9 2481 -NCIT:C8949 Stage III Prostate Adenocarcinoma AJCC v7 9 2482 -NCIT:C8950 Stage IV Prostate Adenocarcinoma AJCC v7 9 2483 -NCIT:C89232 Stage I Prostate Cancer AJCC v7 8 2484 -NCIT:C8947 Stage I Prostate Adenocarcinoma AJCC v7 9 2485 -NCIT:C89233 Stage II Prostate Cancer AJCC v7 8 2486 -NCIT:C88106 Stage IIA Prostate Cancer AJCC v7 9 2487 -NCIT:C88107 Stage IIB Prostate Cancer AJCC v7 9 2488 -NCIT:C8948 Stage II Prostate Adenocarcinoma AJCC v7 9 2489 -NCIT:C89234 Stage III Prostate Cancer AJCC v7 8 2490 -NCIT:C8949 Stage III Prostate Adenocarcinoma AJCC v7 9 2491 -NCIT:C89235 Stage IV Prostate Cancer AJCC v7 8 2492 -NCIT:C8950 Stage IV Prostate Adenocarcinoma AJCC v7 9 2493 -NCIT:C7621 Recurrent Male Reproductive System Carcinoma 6 2494 -NCIT:C7870 Recurrent Penile Carcinoma 7 2495 -NCIT:C7902 Recurrent Prostate Carcinoma 7 2496 -NCIT:C156771 Biochemically Recurrent Prostate Carcinoma 8 2497 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 8 2498 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 9 2499 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 8 2500 -NCIT:C8955 Rete Testis Adenocarcinoma 6 2501 -NCIT:C9061 Penile Carcinoma 6 2502 -NCIT:C118820 Adult Penile Carcinoma 7 2503 -NCIT:C140075 Penile Cancer by AJCC v8 Stage 7 2504 -NCIT:C140076 Stage 0 Penile Cancer AJCC v8 8 2505 -NCIT:C140077 Stage 0is Penile Cancer AJCC v8 9 2506 -NCIT:C140078 Stage 0a Penile Cancer AJCC v8 9 2507 -NCIT:C140079 Stage I Penile Cancer AJCC v8 8 2508 -NCIT:C140080 Stage II Penile Cancer AJCC v8 8 2509 -NCIT:C140081 Stage IIA Penile Cancer AJCC v8 9 2510 -NCIT:C140083 Stage IIB Penile Cancer AJCC v8 9 2511 -NCIT:C140084 Stage III Penile Cancer AJCC v8 8 2512 -NCIT:C140085 Stage IIIA Penile Cancer AJCC v8 9 2513 -NCIT:C140086 Stage IIIB Penile Cancer AJCC v8 9 2514 -NCIT:C140087 Stage IV Penile Cancer AJCC v8 8 2515 -NCIT:C177150 Refractory Penile Carcinoma 7 2516 -NCIT:C27784 Metastatic Penile Carcinoma 7 2517 -NCIT:C170789 Locally Advanced Penile Carcinoma 8 2518 -NCIT:C170790 Advanced Penile Carcinoma 8 2519 -NCIT:C182111 Metastatic Squamous Cell Carcinoma of the Penis 8 2520 -NCIT:C27817 Penile Paget Disease 7 2521 -NCIT:C39961 Penile Basal Cell Carcinoma 7 2522 -NCIT:C7729 Squamous Cell Carcinoma of the Penis 7 2523 -NCIT:C159244 Non-Human Papillomavirus-Related Squamous Cell Carcinoma of the Penis 8 2524 -NCIT:C103340 Papillary Carcinoma of the Penis, Not Otherwise Specified 9 2525 -NCIT:C159245 Pseudohyperplastic Carcinoma of the Penis 9 2526 -NCIT:C159246 Pseudoglandular Carcinoma of the Penis 9 2527 -NCIT:C159248 Adenosquamous Carcinoma of the Penis 9 2528 -NCIT:C39959 Mixed Squamous Cell Carcinoma of the Penis 9 2529 -NCIT:C6979 Squamous Cell Carcinoma of the Penis, Usual Type 9 2530 -NCIT:C6982 Verrucous Carcinoma of the Penis 9 2531 -NCIT:C159247 Carcinoma Cuniculatum of the Penis 10 2532 -NCIT:C6984 Sarcomatoid Carcinoma of the Penis 9 2533 -NCIT:C182111 Metastatic Squamous Cell Carcinoma of the Penis 8 2534 -NCIT:C27682 Human Papillomavirus-Related Squamous Cell Carcinoma of the Penis 8 2535 -NCIT:C159250 Warty-Basaloid Carcinoma of the Penis 9 2536 -NCIT:C159251 Clear Cell Squamous Cell Carcinoma of the Penis 9 2537 -NCIT:C159252 Lymphoepithelioma-Like Carcinoma of the Penis 9 2538 -NCIT:C6980 Basaloid Squamous Cell Carcinoma of the Penis 9 2539 -NCIT:C159249 Papillary-Basaloid Carcinoma of the Penis 10 2540 -NCIT:C6981 Warty Carcinoma of the Penis 9 2541 -NCIT:C27790 Penile Carcinoma In Situ 8 2542 -NCIT:C6983 Papillary Carcinoma of the Penis 8 2543 -NCIT:C103340 Papillary Carcinoma of the Penis, Not Otherwise Specified 9 2544 -NCIT:C159249 Papillary-Basaloid Carcinoma of the Penis 9 2545 -NCIT:C6981 Warty Carcinoma of the Penis 9 2546 -NCIT:C6982 Verrucous Carcinoma of the Penis 9 2547 -NCIT:C159247 Carcinoma Cuniculatum of the Penis 10 2548 -NCIT:C7870 Recurrent Penile Carcinoma 7 2549 -NCIT:C90520 Penile Cancer by AJCC v6 Stage 7 2550 -NCIT:C3643 Stage 0 Penile Cancer AJCC v6 8 2551 -NCIT:C7867 Stage I Penile Cancer AJCC v6 8 2552 -NCIT:C7868 Stage II Penile Cancer AJCC v6 8 2553 -NCIT:C7869 Stage III Penile Cancer AJCC v6 8 2554 -NCIT:C8959 Stage IV Penile Cancer AJCC v6 8 2555 -NCIT:C91234 Penile Cancer by AJCC v7 Stage 7 2556 -NCIT:C89194 Stage 0 Penile Cancer AJCC v7 8 2557 -NCIT:C27790 Penile Carcinoma In Situ 9 2558 -NCIT:C89195 Stage I Penile Cancer AJCC v7 8 2559 -NCIT:C89196 Stage II Penile Cancer AJCC v7 8 2560 -NCIT:C89197 Stage III Penile Cancer AJCC v7 8 2561 -NCIT:C88104 Stage IIIa Penile Cancer AJCC v7 9 2562 -NCIT:C88105 Stage IIIb Penile Cancer AJCC v7 9 2563 -NCIT:C89198 Stage IV Penile Cancer AJCC v7 8 2564 -NCIT:C181197 Urinary System Carcinoma 5 2565 -NCIT:C162719 Refractory Urinary System Carcinoma 6 2566 -NCIT:C150316 Refractory Bladder Carcinoma 7 2567 -NCIT:C148286 Refractory Stage 0 Bladder Cancer AJCC v6 and v7 8 2568 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 8 2569 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 2570 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 8 2571 -NCIT:C150364 Refractory Urothelial Carcinoma 7 2572 -NCIT:C150365 Platinum-Resistant Urothelial Carcinoma 8 2573 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 8 2574 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 2575 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 8 2576 -NCIT:C176996 Refractory Urethral Urothelial Carcinoma 8 2577 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 8 2578 -NCIT:C172623 Refractory Kidney Carcinoma 7 2579 -NCIT:C162727 Refractory Kidney Medullary Carcinoma 8 2580 -NCIT:C165745 Refractory Renal Cell Carcinoma 8 2581 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 9 2582 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 8 2583 -NCIT:C191749 Squamous Cell Carcinoma of the Urinary Tract 6 2584 -NCIT:C4031 Bladder Squamous Cell Carcinoma 7 2585 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 8 2586 -NCIT:C27768 Schistosoma Hematobium-Related Bladder Squamous Cell Carcinoma 8 2587 -NCIT:C39833 Schistosoma Hematobium-Related Bladder Verrucous Carcinoma 9 2588 -NCIT:C39832 Bladder Verrucous Carcinoma 8 2589 -NCIT:C39833 Schistosoma Hematobium-Related Bladder Verrucous Carcinoma 9 2590 -NCIT:C39845 Urachal Squamous Cell Carcinoma 8 2591 -NCIT:C4994 Stage II Bladder Squamous Cell Carcinoma AJCC v6 and v7 8 2592 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 8 2593 -NCIT:C8903 Stage 0 Bladder Squamous Cell Carcinoma AJCC v6 and v7 8 2594 -NCIT:C8904 Stage I Squamous Cell Carcinoma of the Bladder AJCC v6 and v7 8 2595 -NCIT:C8905 Stage III Bladder Squamous Cell Carcinoma AJCC v6 and v7 8 2596 -NCIT:C8906 Stage IV Bladder Squamous Cell Carcinoma AJCC v7 8 2597 -NCIT:C191751 Adenocarcinoma of the Urinary Tract 6 2598 -NCIT:C4032 Bladder Adenocarcinoma 7 2599 -NCIT:C39835 Bladder Enteric Type Adenocarcinoma 8 2600 -NCIT:C39836 Bladder Adenocarcinoma, Not Otherwise Specified 8 2601 -NCIT:C39837 Bladder Mucinous Adenocarcinoma 8 2602 -NCIT:C39838 Bladder Hepatoid Adenocarcinoma 8 2603 -NCIT:C39839 Bladder Mixed Adenocarcinoma 8 2604 -NCIT:C39843 Urachal Adenocarcinoma 8 2605 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 8 2606 -NCIT:C6163 Bladder Signet Ring Cell Adenocarcinoma 8 2607 -NCIT:C8894 Stage 0 Bladder Adenocarcinoma AJCC v6 and v7 8 2608 -NCIT:C8895 Stage I Bladder Adenocarcinoma AJCC v6 and v7 8 2609 -NCIT:C8896 Stage II Bladder Adenocarcinoma AJCC v6 and v7 8 2610 -NCIT:C8897 Stage III Bladder Adenocarcinoma AJCC v6 and v7 8 2611 -NCIT:C8898 Stage IV Bladder Adenocarcinoma AJCC v7 8 2612 -NCIT:C191753 Diverticular Carcinoma of the Urinary Tract 6 2613 -NCIT:C191768 Clear Cell Adenocarcinoma of the Urinary Tract 6 2614 -NCIT:C6172 Urethral Clear Cell Adenocarcinoma 7 2615 -NCIT:C6179 Bladder Clear Cell Adenocarcinoma 7 2616 -NCIT:C39847 Bladder Tubulo-Cystic Clear Cell Adenocarcinoma 8 2617 -NCIT:C39848 Bladder Papillary Clear Cell Adenocarcinoma 8 2618 -NCIT:C39849 Bladder Diffuse Clear Cell Adenocarcinoma 8 2619 -NCIT:C191769 Endometrioid Adenocarcinoma of the Urinary Tract 6 2620 -NCIT:C159542 Bladder Endometrioid Adenocarcinoma 7 2621 -NCIT:C4030 Urothelial Carcinoma 6 2622 -NCIT:C126109 Metastatic Urothelial Carcinoma 7 2623 -NCIT:C148493 Advanced Urothelial Carcinoma 8 2624 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 2625 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 2626 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 2627 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 2628 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 2629 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 2630 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 2631 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 2632 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 2633 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 2634 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 2635 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 2636 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 2637 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 2638 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 2639 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 2640 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 2641 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 2642 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 2643 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 8 2644 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 2645 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 2646 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 2647 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 2648 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 2649 -NCIT:C191692 Metastatic Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 2650 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 2651 -NCIT:C191693 Metastatic Giant Cell Urothelial Carcinoma 8 2652 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 2653 -NCIT:C191694 Metastatic Lipid-Rich Urothelial Carcinoma 8 2654 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 2655 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 8 2656 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 2657 -NCIT:C191696 Metastatic Nested Urothelial Carcinoma 8 2658 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 2659 -NCIT:C191697 Metastatic Plasmacytoid Urothelial Carcinoma 8 2660 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 2661 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 8 2662 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 2663 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 8 2664 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 2665 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 2666 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 2667 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 9 2668 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 2669 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 2670 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 2671 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 2672 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 2673 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 2674 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 2675 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 2676 -NCIT:C150364 Refractory Urothelial Carcinoma 7 2677 -NCIT:C150365 Platinum-Resistant Urothelial Carcinoma 8 2678 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 8 2679 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 2680 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 8 2681 -NCIT:C176996 Refractory Urethral Urothelial Carcinoma 8 2682 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 8 2683 -NCIT:C150521 Unresectable Urothelial Carcinoma 7 2684 -NCIT:C158585 Unresectable Urethral Urothelial Carcinoma 8 2685 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 8 2686 -NCIT:C164160 Unresectable Renal Pelvis and Ureter Urothelial Carcinoma 8 2687 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 9 2688 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 9 2689 -NCIT:C157631 Recurrent Urothelial Carcinoma 7 2690 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 2691 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 2692 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 2693 -NCIT:C8254 Recurrent Renal Pelvis and Ureter Urothelial Carcinoma 8 2694 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 9 2695 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 2696 -NCIT:C180606 Urothelial Carcinoma, High Grade 7 2697 -NCIT:C180607 Renal Pelvis Urothelial Carcinoma, High Grade 8 2698 -NCIT:C180608 Ureter Urothelial Carcinoma, High Grade 8 2699 -NCIT:C180609 Bladder Urothelial Carcinoma, High Grade 8 2700 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 9 2701 -NCIT:C191675 Non-Invasive Papillary Urothelial Carcinoma, High Grade 8 2702 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 9 2703 -NCIT:C191673 Non-Invasive Papillary Urothelial Carcinoma, Low Grade 7 2704 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 8 2705 -NCIT:C39851 Bladder Urothelial Carcinoma 7 2706 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 2707 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 2708 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 2709 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 2710 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 2711 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 2712 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 2713 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 2714 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 2715 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 2716 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 2717 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 2718 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 2719 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 8 2720 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 8 2721 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 2722 -NCIT:C177531 Bladder Flat Urothelial Carcinoma 8 2723 -NCIT:C37266 Bladder Urothelial Carcinoma In Situ 9 2724 -NCIT:C140418 Stage 0is Bladder Cancer AJCC v8 10 2725 -NCIT:C3644 Stage 0is Bladder Urothelial Carcinoma AJCC v6 and v7 10 2726 -NCIT:C180609 Bladder Urothelial Carcinoma, High Grade 8 2727 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 9 2728 -NCIT:C188032 Resectable Bladder Urothelial Carcinoma 8 2729 -NCIT:C27634 Transplant-Related Bladder Urothelial Carcinoma 8 2730 -NCIT:C27885 Invasive Bladder Urothelial Carcinoma 8 2731 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 9 2732 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 2733 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 10 2734 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 9 2735 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 10 2736 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 9 2737 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 9 2738 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 9 2739 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 9 2740 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 2741 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 2742 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 9 2743 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 9 2744 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 9 2745 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 9 2746 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 10 2747 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 9 2748 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 9 2749 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 9 2750 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 10 2751 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 9 2752 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 10 2753 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 10 2754 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 10 2755 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 2756 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 10 2757 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 9 2758 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 10 2759 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 9 2760 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 10 2761 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 2762 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 2763 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 2764 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 9 2765 -NCIT:C39844 Urachal Urothelial Carcinoma 8 2766 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 2767 -NCIT:C7383 Bladder Papillary Urothelial Carcinoma 8 2768 -NCIT:C158382 Bladder Non-Invasive Papillary Urothelial Carcinoma 9 2769 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 10 2770 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 10 2771 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 10 2772 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 10 2773 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 2774 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 2775 -NCIT:C39853 Invasive Urothelial Carcinoma 7 2776 -NCIT:C115966 Invasive Bladder Urothelial Carcinoma Associated with Urethral Carcinoma 8 2777 -NCIT:C164252 Invasive Sarcomatoid Urothelial Carcinoma 8 2778 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 9 2779 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 10 2780 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 9 2781 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 10 2782 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 10 2783 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 10 2784 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 9 2785 -NCIT:C191678 Invasive Lymphoepithelioma-Like Urothelial Carcinoma 8 2786 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 9 2787 -NCIT:C191679 Invasive Giant Cell Urothelial Carcinoma 8 2788 -NCIT:C191693 Metastatic Giant Cell Urothelial Carcinoma 9 2789 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 10 2790 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 9 2791 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 10 2792 -NCIT:C191680 Invasive Urothelial Carcinoma with Glandular Differentiation 8 2793 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 9 2794 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 9 2795 -NCIT:C191681 Invasive Urothelial Carcinoma with Squamous Differentiation 8 2796 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 9 2797 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 9 2798 -NCIT:C191682 Invasive Urothelial Carcinoma with Trophoblastic Differentiation 8 2799 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 9 2800 -NCIT:C191683 Invasive Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 2801 -NCIT:C191692 Metastatic Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 2802 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 10 2803 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 2804 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 10 2805 -NCIT:C191684 Invasive Lipid-Rich Urothelial Carcinoma 8 2806 -NCIT:C191694 Metastatic Lipid-Rich Urothelial Carcinoma 9 2807 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 10 2808 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 9 2809 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 10 2810 -NCIT:C191685 Invasive Microcystic Urothelial Carcinoma 8 2811 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 9 2812 -NCIT:C191686 Invasive Micropapillary Urothelial Carcinoma 8 2813 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 9 2814 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 2815 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 2816 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 2817 -NCIT:C191687 Invasive Nested Urothelial Carcinoma 8 2818 -NCIT:C191696 Metastatic Nested Urothelial Carcinoma 9 2819 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 10 2820 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 9 2821 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 10 2822 -NCIT:C191688 Invasive Plasmacytoid Urothelial Carcinoma 8 2823 -NCIT:C191697 Metastatic Plasmacytoid Urothelial Carcinoma 9 2824 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 10 2825 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 9 2826 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 10 2827 -NCIT:C191725 Invasive Large Nested Urothelial Carcinoma 8 2828 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 9 2829 -NCIT:C191728 Invasive Tubular Urothelial Carcinoma 8 2830 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 9 2831 -NCIT:C191730 Invasive Poorly Differentiated Urothelial Carcinoma 8 2832 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 9 2833 -NCIT:C191734 Invasive Conventional Urothelial Carcinoma 8 2834 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 9 2835 -NCIT:C27885 Invasive Bladder Urothelial Carcinoma 8 2836 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 9 2837 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 2838 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 10 2839 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 9 2840 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 10 2841 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 9 2842 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 9 2843 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 9 2844 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 9 2845 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 2846 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 2847 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 9 2848 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 9 2849 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 9 2850 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 9 2851 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 10 2852 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 9 2853 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 9 2854 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 9 2855 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 10 2856 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 9 2857 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 10 2858 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 10 2859 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 10 2860 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 2861 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 10 2862 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 9 2863 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 10 2864 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 9 2865 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 10 2866 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 2867 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 2868 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 2869 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 9 2870 -NCIT:C39879 Invasive Renal Pelvis and Ureter Urothelial Carcinoma 8 2871 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 9 2872 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 9 2873 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 9 2874 -NCIT:C39898 Primary Prostate Urothelial Carcinoma 7 2875 -NCIT:C39900 Prostatic Urethra Urothelial Carcinoma 8 2876 -NCIT:C39901 Prostatic Duct Urothelial Carcinoma 8 2877 -NCIT:C6166 Urethral Urothelial Carcinoma 7 2878 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 2879 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 2880 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 2881 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 2882 -NCIT:C158585 Unresectable Urethral Urothelial Carcinoma 8 2883 -NCIT:C176996 Refractory Urethral Urothelial Carcinoma 8 2884 -NCIT:C39900 Prostatic Urethra Urothelial Carcinoma 8 2885 -NCIT:C7716 Renal Pelvis and Ureter Urothelial Carcinoma 7 2886 -NCIT:C140355 Renal Pelvis and Ureter Cancer by AJCC v8 Stage 8 2887 -NCIT:C140356 Renal Pelvis Cancer by AJCC v8 Stage 9 2888 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 2889 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 10 2890 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 10 2891 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 10 2892 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 10 2893 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 10 2894 -NCIT:C140357 Ureter Cancer by AJCC v8 Stage 9 2895 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 10 2896 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 10 2897 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 10 2898 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 10 2899 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 10 2900 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 10 2901 -NCIT:C140358 Stage 0a Renal Pelvis and Ureter Cancer AJCC v8 9 2902 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 2903 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 10 2904 -NCIT:C140361 Stage 0is Renal Pelvis and Ureter Cancer AJCC v8 9 2905 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 10 2906 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 10 2907 -NCIT:C140364 Stage I Renal Pelvis and Ureter Cancer AJCC v8 9 2908 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 10 2909 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 10 2910 -NCIT:C140367 Stage II Renal Pelvis and Ureter Cancer AJCC v8 9 2911 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 10 2912 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 10 2913 -NCIT:C140370 Stage III Renal Pelvis and Ureter Cancer AJCC v8 9 2914 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 10 2915 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 10 2916 -NCIT:C140373 Stage IV Renal Pelvis and Ureter Cancer AJCC v8 9 2917 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 10 2918 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 10 2919 -NCIT:C140376 Renal Pelvis and Ureter Cancer by AJCC v7 Stage 8 2920 -NCIT:C140377 Renal Pelvis Cancer by AJCC v7 Stage 9 2921 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 10 2922 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 10 2923 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 10 2924 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 10 2925 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 10 2926 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 2927 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 2928 -NCIT:C140378 Ureter Cancer by AJCC v7 Stage 9 2929 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 10 2930 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 11 2931 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 11 2932 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 10 2933 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 10 2934 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 10 2935 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 10 2936 -NCIT:C39850 Stage 0 Renal Pelvis and Ureter Cancer AJCC v7 9 2937 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 10 2938 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 11 2939 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 11 2940 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 10 2941 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 2942 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 2943 -NCIT:C7517 Stage 0a Renal Pelvis and Ureter Cancer AJCC v7 10 2944 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 2945 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 11 2946 -NCIT:C7518 Stage 0is Renal Pelvis and Ureter Cancer AJCC v7 10 2947 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 11 2948 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 2949 -NCIT:C7519 Stage I Renal Pelvis and Ureter Cancer AJCC v7 9 2950 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 10 2951 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 10 2952 -NCIT:C7520 Stage II Renal Pelvis and Ureter Cancer AJCC v7 9 2953 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 10 2954 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 10 2955 -NCIT:C7521 Stage III Renal Pelvis and Ureter Cancer AJCC v7 9 2956 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 10 2957 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 10 2958 -NCIT:C7522 Stage IV Renal Pelvis and Ureter Cancer AJCC v7 9 2959 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 10 2960 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 10 2961 -NCIT:C164160 Unresectable Renal Pelvis and Ureter Urothelial Carcinoma 8 2962 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 9 2963 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 9 2964 -NCIT:C39879 Invasive Renal Pelvis and Ureter Urothelial Carcinoma 8 2965 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 9 2966 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 9 2967 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 9 2968 -NCIT:C4830 Ureter Urothelial Carcinoma 8 2969 -NCIT:C140357 Ureter Cancer by AJCC v8 Stage 9 2970 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 10 2971 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 10 2972 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 10 2973 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 10 2974 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 10 2975 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 10 2976 -NCIT:C140378 Ureter Cancer by AJCC v7 Stage 9 2977 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 10 2978 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 11 2979 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 11 2980 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 10 2981 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 10 2982 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 10 2983 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 10 2984 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 9 2985 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 2986 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 2987 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 9 2988 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 9 2989 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 9 2990 -NCIT:C180608 Ureter Urothelial Carcinoma, High Grade 9 2991 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 9 2992 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 9 2993 -NCIT:C7355 Renal Pelvis Urothelial Carcinoma 8 2994 -NCIT:C140356 Renal Pelvis Cancer by AJCC v8 Stage 9 2995 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 2996 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 10 2997 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 10 2998 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 10 2999 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 10 3000 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 10 3001 -NCIT:C140377 Renal Pelvis Cancer by AJCC v7 Stage 9 3002 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 10 3003 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 10 3004 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 10 3005 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 10 3006 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 10 3007 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 3008 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 3009 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 3010 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 3011 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 3012 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 3013 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 9 3014 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 9 3015 -NCIT:C180607 Renal Pelvis Urothelial Carcinoma, High Grade 9 3016 -NCIT:C6148 Renal Pelvis Papillary Urothelial Carcinoma 9 3017 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 3018 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 10 3019 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 9 3020 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 8 3021 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 3022 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 3023 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 3024 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 9 3025 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 3026 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 3027 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 3028 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 3029 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 3030 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 3031 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 3032 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 3033 -NCIT:C8167 Localized Renal Pelvis and Ureter Urothelial Carcinoma 8 3034 -NCIT:C8168 Regional Renal Pelvis and Ureter Urothelial Carcinoma 8 3035 -NCIT:C8254 Recurrent Renal Pelvis and Ureter Urothelial Carcinoma 8 3036 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 9 3037 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 3038 -NCIT:C4912 Bladder Carcinoma 6 3039 -NCIT:C118816 Childhood Bladder Carcinoma 7 3040 -NCIT:C140416 Bladder Cancer by AJCC v8 Stage 7 3041 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 8 3042 -NCIT:C140418 Stage 0is Bladder Cancer AJCC v8 8 3043 -NCIT:C140419 Stage I Bladder Cancer AJCC v8 8 3044 -NCIT:C140420 Stage II Bladder Cancer AJCC v8 8 3045 -NCIT:C140421 Stage III Bladder Cancer AJCC v8 8 3046 -NCIT:C140422 Stage IIIA Bladder Cancer AJCC v8 9 3047 -NCIT:C140423 Stage IIIB Bladder Cancer AJCC v8 9 3048 -NCIT:C140424 Stage IV Bladder Cancer AJCC v8 8 3049 -NCIT:C140425 Stage IVA Bladder Cancer AJCC v8 9 3050 -NCIT:C140426 Stage IVB Bladder Cancer AJCC v8 9 3051 -NCIT:C150316 Refractory Bladder Carcinoma 7 3052 -NCIT:C148286 Refractory Stage 0 Bladder Cancer AJCC v6 and v7 8 3053 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 8 3054 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 3055 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 8 3056 -NCIT:C150570 Invasive Bladder Carcinoma 7 3057 -NCIT:C150572 Muscle Invasive Bladder Carcinoma 8 3058 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 9 3059 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 10 3060 -NCIT:C165716 Invasive Bladder Mixed Carcinoma 8 3061 -NCIT:C27474 Non-Muscle Invasive Bladder Carcinoma 8 3062 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 9 3063 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 3064 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 10 3065 -NCIT:C190772 Metastatic Non-Muscle Invasive Bladder Carcinoma 9 3066 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 10 3067 -NCIT:C190774 Recurrent Non-Muscle Invasive Bladder Carcinoma 9 3068 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 3069 -NCIT:C27885 Invasive Bladder Urothelial Carcinoma 8 3070 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 9 3071 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 3072 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 10 3073 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 9 3074 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 10 3075 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 9 3076 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 9 3077 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 9 3078 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 9 3079 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 3080 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 3081 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 9 3082 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 9 3083 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 9 3084 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 9 3085 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 10 3086 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 9 3087 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 9 3088 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 9 3089 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 10 3090 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 9 3091 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 10 3092 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 10 3093 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 10 3094 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 3095 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 10 3096 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 9 3097 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 10 3098 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 9 3099 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 10 3100 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 3101 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 3102 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 3103 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 9 3104 -NCIT:C156062 Metastatic Bladder Carcinoma 7 3105 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 3106 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 3107 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 3108 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 3109 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 3110 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 3111 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 3112 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 3113 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 3114 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 3115 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 3116 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 8 3117 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 8 3118 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 8 3119 -NCIT:C167071 Locally Advanced Bladder Carcinoma 8 3120 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 3121 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 9 3122 -NCIT:C167338 Advanced Bladder Carcinoma 8 3123 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 3124 -NCIT:C190772 Metastatic Non-Muscle Invasive Bladder Carcinoma 8 3125 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 9 3126 -NCIT:C157759 Bladder Neuroendocrine Carcinoma 7 3127 -NCIT:C157760 Bladder Large Cell Neuroendocrine Carcinoma 8 3128 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 9 3129 -NCIT:C9461 Bladder Small Cell Neuroendocrine Carcinoma 8 3130 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 9 3131 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 9 3132 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 9 3133 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 9 3134 -NCIT:C159542 Bladder Endometrioid Adenocarcinoma 7 3135 -NCIT:C160158 Carcinoma Arising in Bladder Diverticulum 7 3136 -NCIT:C167075 Unresectable Bladder Carcinoma 7 3137 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 8 3138 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 8 3139 -NCIT:C39842 Urachal Carcinoma 7 3140 -NCIT:C39843 Urachal Adenocarcinoma 8 3141 -NCIT:C39844 Urachal Urothelial Carcinoma 8 3142 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 3143 -NCIT:C39845 Urachal Squamous Cell Carcinoma 8 3144 -NCIT:C39851 Bladder Urothelial Carcinoma 7 3145 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 3146 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 3147 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 3148 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 3149 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 3150 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 3151 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 3152 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 3153 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 3154 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 3155 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 3156 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 3157 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 3158 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 8 3159 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 8 3160 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 3161 -NCIT:C177531 Bladder Flat Urothelial Carcinoma 8 3162 -NCIT:C37266 Bladder Urothelial Carcinoma In Situ 9 3163 -NCIT:C140418 Stage 0is Bladder Cancer AJCC v8 10 3164 -NCIT:C3644 Stage 0is Bladder Urothelial Carcinoma AJCC v6 and v7 10 3165 -NCIT:C180609 Bladder Urothelial Carcinoma, High Grade 8 3166 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 9 3167 -NCIT:C188032 Resectable Bladder Urothelial Carcinoma 8 3168 -NCIT:C27634 Transplant-Related Bladder Urothelial Carcinoma 8 3169 -NCIT:C27885 Invasive Bladder Urothelial Carcinoma 8 3170 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 9 3171 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 3172 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 10 3173 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 9 3174 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 10 3175 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 9 3176 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 9 3177 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 9 3178 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 9 3179 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 3180 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 3181 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 9 3182 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 9 3183 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 9 3184 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 9 3185 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 10 3186 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 9 3187 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 9 3188 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 9 3189 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 10 3190 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 9 3191 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 10 3192 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 10 3193 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 10 3194 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 3195 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 10 3196 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 9 3197 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 10 3198 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 9 3199 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 10 3200 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 3201 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 3202 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 3203 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 9 3204 -NCIT:C39844 Urachal Urothelial Carcinoma 8 3205 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 3206 -NCIT:C7383 Bladder Papillary Urothelial Carcinoma 8 3207 -NCIT:C158382 Bladder Non-Invasive Papillary Urothelial Carcinoma 9 3208 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 10 3209 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 10 3210 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 10 3211 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 10 3212 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 3213 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 3214 -NCIT:C4031 Bladder Squamous Cell Carcinoma 7 3215 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 8 3216 -NCIT:C27768 Schistosoma Hematobium-Related Bladder Squamous Cell Carcinoma 8 3217 -NCIT:C39833 Schistosoma Hematobium-Related Bladder Verrucous Carcinoma 9 3218 -NCIT:C39832 Bladder Verrucous Carcinoma 8 3219 -NCIT:C39833 Schistosoma Hematobium-Related Bladder Verrucous Carcinoma 9 3220 -NCIT:C39845 Urachal Squamous Cell Carcinoma 8 3221 -NCIT:C4994 Stage II Bladder Squamous Cell Carcinoma AJCC v6 and v7 8 3222 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 8 3223 -NCIT:C8903 Stage 0 Bladder Squamous Cell Carcinoma AJCC v6 and v7 8 3224 -NCIT:C8904 Stage I Squamous Cell Carcinoma of the Bladder AJCC v6 and v7 8 3225 -NCIT:C8905 Stage III Bladder Squamous Cell Carcinoma AJCC v6 and v7 8 3226 -NCIT:C8906 Stage IV Bladder Squamous Cell Carcinoma AJCC v7 8 3227 -NCIT:C4032 Bladder Adenocarcinoma 7 3228 -NCIT:C39835 Bladder Enteric Type Adenocarcinoma 8 3229 -NCIT:C39836 Bladder Adenocarcinoma, Not Otherwise Specified 8 3230 -NCIT:C39837 Bladder Mucinous Adenocarcinoma 8 3231 -NCIT:C39838 Bladder Hepatoid Adenocarcinoma 8 3232 -NCIT:C39839 Bladder Mixed Adenocarcinoma 8 3233 -NCIT:C39843 Urachal Adenocarcinoma 8 3234 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 8 3235 -NCIT:C6163 Bladder Signet Ring Cell Adenocarcinoma 8 3236 -NCIT:C8894 Stage 0 Bladder Adenocarcinoma AJCC v6 and v7 8 3237 -NCIT:C8895 Stage I Bladder Adenocarcinoma AJCC v6 and v7 8 3238 -NCIT:C8896 Stage II Bladder Adenocarcinoma AJCC v6 and v7 8 3239 -NCIT:C8897 Stage III Bladder Adenocarcinoma AJCC v6 and v7 8 3240 -NCIT:C8898 Stage IV Bladder Adenocarcinoma AJCC v7 8 3241 -NCIT:C6179 Bladder Clear Cell Adenocarcinoma 7 3242 -NCIT:C39847 Bladder Tubulo-Cystic Clear Cell Adenocarcinoma 8 3243 -NCIT:C39848 Bladder Papillary Clear Cell Adenocarcinoma 8 3244 -NCIT:C39849 Bladder Diffuse Clear Cell Adenocarcinoma 8 3245 -NCIT:C7899 Recurrent Bladder Carcinoma 7 3246 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 3247 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 3248 -NCIT:C190774 Recurrent Non-Muscle Invasive Bladder Carcinoma 8 3249 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 3250 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 3251 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 8 3252 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 8 3253 -NCIT:C90344 Bladder Cancer by AJCC v6 Stage 7 3254 -NCIT:C7895 Stage 0 Bladder Cancer AJCC v6 and v7 8 3255 -NCIT:C148286 Refractory Stage 0 Bladder Cancer AJCC v6 and v7 9 3256 -NCIT:C6188 Stage 0 Bladder Urothelial Carcinoma AJCC v6 and v7 9 3257 -NCIT:C3644 Stage 0is Bladder Urothelial Carcinoma AJCC v6 and v7 10 3258 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 10 3259 -NCIT:C8894 Stage 0 Bladder Adenocarcinoma AJCC v6 and v7 9 3260 -NCIT:C8903 Stage 0 Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 3261 -NCIT:C7896 Stage I Bladder Cancer AJCC v6 and v7 8 3262 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 3263 -NCIT:C8895 Stage I Bladder Adenocarcinoma AJCC v6 and v7 9 3264 -NCIT:C8899 Stage I Bladder Cancer with Carcinoma In Situ 9 3265 -NCIT:C8901 Stage I Bladder Cancer without Carcinoma In Situ 9 3266 -NCIT:C8904 Stage I Squamous Cell Carcinoma of the Bladder AJCC v6 and v7 9 3267 -NCIT:C7897 Stage II Bladder Cancer AJCC v6 and v7 8 3268 -NCIT:C4994 Stage II Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 3269 -NCIT:C8896 Stage II Bladder Adenocarcinoma AJCC v6 and v7 9 3270 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 3271 -NCIT:C7898 Stage III Bladder Cancer AJCC v6 and v7 8 3272 -NCIT:C8897 Stage III Bladder Adenocarcinoma AJCC v6 and v7 9 3273 -NCIT:C8905 Stage III Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 3274 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 3275 -NCIT:C7900 Stage IV Bladder Cancer AJCC v6 8 3276 -NCIT:C91202 Bladder Cancer by AJCC v7 Stage 7 3277 -NCIT:C7895 Stage 0 Bladder Cancer AJCC v6 and v7 8 3278 -NCIT:C148286 Refractory Stage 0 Bladder Cancer AJCC v6 and v7 9 3279 -NCIT:C6188 Stage 0 Bladder Urothelial Carcinoma AJCC v6 and v7 9 3280 -NCIT:C3644 Stage 0is Bladder Urothelial Carcinoma AJCC v6 and v7 10 3281 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 10 3282 -NCIT:C8894 Stage 0 Bladder Adenocarcinoma AJCC v6 and v7 9 3283 -NCIT:C8903 Stage 0 Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 3284 -NCIT:C7896 Stage I Bladder Cancer AJCC v6 and v7 8 3285 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 3286 -NCIT:C8895 Stage I Bladder Adenocarcinoma AJCC v6 and v7 9 3287 -NCIT:C8899 Stage I Bladder Cancer with Carcinoma In Situ 9 3288 -NCIT:C8901 Stage I Bladder Cancer without Carcinoma In Situ 9 3289 -NCIT:C8904 Stage I Squamous Cell Carcinoma of the Bladder AJCC v6 and v7 9 3290 -NCIT:C7897 Stage II Bladder Cancer AJCC v6 and v7 8 3291 -NCIT:C4994 Stage II Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 3292 -NCIT:C8896 Stage II Bladder Adenocarcinoma AJCC v6 and v7 9 3293 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 3294 -NCIT:C7898 Stage III Bladder Cancer AJCC v6 and v7 8 3295 -NCIT:C8897 Stage III Bladder Adenocarcinoma AJCC v6 and v7 9 3296 -NCIT:C8905 Stage III Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 3297 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 3298 -NCIT:C89366 Stage IV Bladder Cancer AJCC v7 8 3299 -NCIT:C8898 Stage IV Bladder Adenocarcinoma AJCC v7 9 3300 -NCIT:C8906 Stage IV Bladder Squamous Cell Carcinoma AJCC v7 9 3301 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 9 3302 -NCIT:C7515 Renal Pelvis and Ureter Carcinoma 6 3303 -NCIT:C7716 Renal Pelvis and Ureter Urothelial Carcinoma 7 3304 -NCIT:C140355 Renal Pelvis and Ureter Cancer by AJCC v8 Stage 8 3305 -NCIT:C140356 Renal Pelvis Cancer by AJCC v8 Stage 9 3306 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 3307 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 10 3308 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 10 3309 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 10 3310 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 10 3311 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 10 3312 -NCIT:C140357 Ureter Cancer by AJCC v8 Stage 9 3313 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 10 3314 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 10 3315 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 10 3316 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 10 3317 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 10 3318 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 10 3319 -NCIT:C140358 Stage 0a Renal Pelvis and Ureter Cancer AJCC v8 9 3320 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 3321 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 10 3322 -NCIT:C140361 Stage 0is Renal Pelvis and Ureter Cancer AJCC v8 9 3323 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 10 3324 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 10 3325 -NCIT:C140364 Stage I Renal Pelvis and Ureter Cancer AJCC v8 9 3326 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 10 3327 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 10 3328 -NCIT:C140367 Stage II Renal Pelvis and Ureter Cancer AJCC v8 9 3329 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 10 3330 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 10 3331 -NCIT:C140370 Stage III Renal Pelvis and Ureter Cancer AJCC v8 9 3332 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 10 3333 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 10 3334 -NCIT:C140373 Stage IV Renal Pelvis and Ureter Cancer AJCC v8 9 3335 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 10 3336 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 10 3337 -NCIT:C140376 Renal Pelvis and Ureter Cancer by AJCC v7 Stage 8 3338 -NCIT:C140377 Renal Pelvis Cancer by AJCC v7 Stage 9 3339 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 10 3340 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 10 3341 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 10 3342 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 10 3343 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 10 3344 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 3345 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 3346 -NCIT:C140378 Ureter Cancer by AJCC v7 Stage 9 3347 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 10 3348 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 11 3349 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 11 3350 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 10 3351 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 10 3352 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 10 3353 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 10 3354 -NCIT:C39850 Stage 0 Renal Pelvis and Ureter Cancer AJCC v7 9 3355 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 10 3356 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 11 3357 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 11 3358 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 10 3359 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 3360 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 3361 -NCIT:C7517 Stage 0a Renal Pelvis and Ureter Cancer AJCC v7 10 3362 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 3363 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 11 3364 -NCIT:C7518 Stage 0is Renal Pelvis and Ureter Cancer AJCC v7 10 3365 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 11 3366 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 3367 -NCIT:C7519 Stage I Renal Pelvis and Ureter Cancer AJCC v7 9 3368 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 10 3369 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 10 3370 -NCIT:C7520 Stage II Renal Pelvis and Ureter Cancer AJCC v7 9 3371 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 10 3372 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 10 3373 -NCIT:C7521 Stage III Renal Pelvis and Ureter Cancer AJCC v7 9 3374 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 10 3375 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 10 3376 -NCIT:C7522 Stage IV Renal Pelvis and Ureter Cancer AJCC v7 9 3377 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 10 3378 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 10 3379 -NCIT:C164160 Unresectable Renal Pelvis and Ureter Urothelial Carcinoma 8 3380 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 9 3381 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 9 3382 -NCIT:C39879 Invasive Renal Pelvis and Ureter Urothelial Carcinoma 8 3383 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 9 3384 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 9 3385 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 9 3386 -NCIT:C4830 Ureter Urothelial Carcinoma 8 3387 -NCIT:C140357 Ureter Cancer by AJCC v8 Stage 9 3388 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 10 3389 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 10 3390 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 10 3391 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 10 3392 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 10 3393 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 10 3394 -NCIT:C140378 Ureter Cancer by AJCC v7 Stage 9 3395 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 10 3396 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 11 3397 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 11 3398 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 10 3399 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 10 3400 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 10 3401 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 10 3402 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 9 3403 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 3404 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 3405 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 9 3406 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 9 3407 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 9 3408 -NCIT:C180608 Ureter Urothelial Carcinoma, High Grade 9 3409 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 9 3410 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 9 3411 -NCIT:C7355 Renal Pelvis Urothelial Carcinoma 8 3412 -NCIT:C140356 Renal Pelvis Cancer by AJCC v8 Stage 9 3413 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 3414 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 10 3415 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 10 3416 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 10 3417 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 10 3418 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 10 3419 -NCIT:C140377 Renal Pelvis Cancer by AJCC v7 Stage 9 3420 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 10 3421 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 10 3422 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 10 3423 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 10 3424 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 10 3425 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 3426 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 3427 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 3428 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 3429 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 3430 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 3431 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 9 3432 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 9 3433 -NCIT:C180607 Renal Pelvis Urothelial Carcinoma, High Grade 9 3434 -NCIT:C6148 Renal Pelvis Papillary Urothelial Carcinoma 9 3435 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 3436 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 10 3437 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 9 3438 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 8 3439 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 3440 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 3441 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 3442 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 9 3443 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 3444 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 3445 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 3446 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 3447 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 3448 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 3449 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 3450 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 3451 -NCIT:C8167 Localized Renal Pelvis and Ureter Urothelial Carcinoma 8 3452 -NCIT:C8168 Regional Renal Pelvis and Ureter Urothelial Carcinoma 8 3453 -NCIT:C8254 Recurrent Renal Pelvis and Ureter Urothelial Carcinoma 8 3454 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 9 3455 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 3456 -NCIT:C7623 Recurrent Urinary System Carcinoma 6 3457 -NCIT:C157631 Recurrent Urothelial Carcinoma 7 3458 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 3459 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 3460 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 3461 -NCIT:C8254 Recurrent Renal Pelvis and Ureter Urothelial Carcinoma 8 3462 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 9 3463 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 3464 -NCIT:C172622 Recurrent Kidney Carcinoma 7 3465 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 8 3466 -NCIT:C162726 Recurrent Kidney Medullary Carcinoma 8 3467 -NCIT:C7825 Recurrent Renal Cell Carcinoma 8 3468 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 9 3469 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 10 3470 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 9 3471 -NCIT:C7508 Recurrent Urethral Carcinoma 7 3472 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 3473 -NCIT:C7899 Recurrent Bladder Carcinoma 7 3474 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 3475 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 3476 -NCIT:C190774 Recurrent Non-Muscle Invasive Bladder Carcinoma 8 3477 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 3478 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 3479 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 8 3480 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 8 3481 -NCIT:C9255 Recurrent Ureter Carcinoma 7 3482 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 8 3483 -NCIT:C8993 Ureter Carcinoma 6 3484 -NCIT:C27818 Metastatic Ureter Carcinoma 7 3485 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 8 3486 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 3487 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 3488 -NCIT:C4830 Ureter Urothelial Carcinoma 7 3489 -NCIT:C140357 Ureter Cancer by AJCC v8 Stage 8 3490 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 9 3491 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 9 3492 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 9 3493 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 9 3494 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 9 3495 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 9 3496 -NCIT:C140378 Ureter Cancer by AJCC v7 Stage 8 3497 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 9 3498 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 10 3499 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 10 3500 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 9 3501 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 9 3502 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 9 3503 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 9 3504 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 8 3505 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 3506 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 3507 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 8 3508 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 8 3509 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 8 3510 -NCIT:C180608 Ureter Urothelial Carcinoma, High Grade 8 3511 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 8 3512 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 8 3513 -NCIT:C6154 Ureter Squamous Cell Carcinoma 7 3514 -NCIT:C6155 Ureter Adenocarcinoma 7 3515 -NCIT:C6159 Ureter Undifferentiated Carcinoma 7 3516 -NCIT:C6176 Ureter Small Cell Neuroendocrine Carcinoma 7 3517 -NCIT:C9255 Recurrent Ureter Carcinoma 7 3518 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 8 3519 -NCIT:C9356 Regional Ureter Carcinoma 7 3520 -NCIT:C9106 Urethral Carcinoma 6 3521 -NCIT:C115210 Distal Urethral Carcinoma 7 3522 -NCIT:C115334 Proximal Urethral Carcinoma 7 3523 -NCIT:C140457 Urethral Cancer by AJCC v8 Stage 7 3524 -NCIT:C140458 Stage 0a Urethral Cancer AJCC v8 8 3525 -NCIT:C140459 Stage 0is Urethral Cancer AJCC v8 8 3526 -NCIT:C140460 Stage I Urethral Cancer AJCC v8 8 3527 -NCIT:C140461 Stage II Urethral Cancer AJCC v8 8 3528 -NCIT:C140462 Stage III Urethral Cancer AJCC v8 8 3529 -NCIT:C140463 Stage IV Urethral Cancer AJCC v8 8 3530 -NCIT:C140464 Urethral Cancer by AJCC v7 Stage 7 3531 -NCIT:C6195 Stage 0 Urethral Cancer AJCC v7 8 3532 -NCIT:C4531 Stage 0is Urethral Cancer AJCC v7 9 3533 -NCIT:C6196 Stage 0a Urethral Cancer AJCC v7 9 3534 -NCIT:C6197 Stage I Urethral Cancer AJCC v7 8 3535 -NCIT:C6198 Stage II Urethral Cancer AJCC v7 8 3536 -NCIT:C6199 Stage III Urethral Cancer AJCC v7 8 3537 -NCIT:C6200 Stage IV Urethral Cancer AJCC v7 8 3538 -NCIT:C27819 Metastatic Urethral Carcinoma 7 3539 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 3540 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 3541 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 3542 -NCIT:C6165 Urethral Squamous Cell Carcinoma 7 3543 -NCIT:C39862 Human Papillomavirus-Related Urethral Squamous Cell Carcinoma 8 3544 -NCIT:C39874 Urethral Verrucous Carcinoma 8 3545 -NCIT:C6166 Urethral Urothelial Carcinoma 7 3546 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 3547 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 3548 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 3549 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 3550 -NCIT:C158585 Unresectable Urethral Urothelial Carcinoma 8 3551 -NCIT:C176996 Refractory Urethral Urothelial Carcinoma 8 3552 -NCIT:C39900 Prostatic Urethra Urothelial Carcinoma 8 3553 -NCIT:C6167 Urethral Adenocarcinoma 7 3554 -NCIT:C6172 Urethral Clear Cell Adenocarcinoma 8 3555 -NCIT:C7371 Accessory Urethral Gland Adenocarcinoma 8 3556 -NCIT:C180948 Skene Gland Adenocarcinoma of the Urethra 9 3557 -NCIT:C39864 Cowper Gland Adenocarcinoma of the Urethra 9 3558 -NCIT:C39865 Littre Gland Adenocarcinoma of the Urethra 9 3559 -NCIT:C6168 Urethral Undifferentiated Carcinoma 7 3560 -NCIT:C7508 Recurrent Urethral Carcinoma 7 3561 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 3562 -NCIT:C9384 Kidney Carcinoma 6 3563 -NCIT:C159224 Kidney Neuroendocrine Carcinoma 7 3564 -NCIT:C116317 Kidney Small Cell Neuroendocrine Carcinoma 8 3565 -NCIT:C159225 Kidney Large Cell Neuroendocrine Carcinoma 8 3566 -NCIT:C172622 Recurrent Kidney Carcinoma 7 3567 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 8 3568 -NCIT:C162726 Recurrent Kidney Medullary Carcinoma 8 3569 -NCIT:C7825 Recurrent Renal Cell Carcinoma 8 3570 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 9 3571 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 10 3572 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 9 3573 -NCIT:C172623 Refractory Kidney Carcinoma 7 3574 -NCIT:C162727 Refractory Kidney Medullary Carcinoma 8 3575 -NCIT:C165745 Refractory Renal Cell Carcinoma 8 3576 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 9 3577 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 8 3578 -NCIT:C174565 Unresectable Kidney Carcinoma 7 3579 -NCIT:C154545 Unresectable Renal Cell Carcinoma 8 3580 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 3581 -NCIT:C165449 Unresectable Clear Cell Renal Cell Carcinoma 9 3582 -NCIT:C183251 Unresectable Sarcomatoid Renal Cell Carcinoma 9 3583 -NCIT:C190505 Unresectable Papillary Renal Cell Carcinoma 9 3584 -NCIT:C190508 Unresectable Unclassified Renal Cell Carcinoma 9 3585 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 8 3586 -NCIT:C174567 Unresectable Kidney Medullary Carcinoma 8 3587 -NCIT:C189241 Kidney Carcinoma Molecular Subtypes 7 3588 -NCIT:C154494 Renal Cell Carcinoma with MiT Translocations 8 3589 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 9 3590 -NCIT:C27891 TFE3-Rearranged Renal Cell Carcinoma 9 3591 -NCIT:C37872 Renal Cell Carcinoma Associated with t(X;1)(p11.2;q21) 10 3592 -NCIT:C37874 Renal Cell Carcinoma Associated with t(X;1)(p11.2;p34) 10 3593 -NCIT:C37876 Renal Cell Carcinoma Associated with t(X;17)(p11.2;q25) 10 3594 -NCIT:C39802 Renal Cell Carcinoma Associated with inv(X)(p11;q12) 10 3595 -NCIT:C37210 TFEB-Rearranged Renal Cell Carcinoma 9 3596 -NCIT:C156464 Succinate Dehydrogenase-Deficient Renal Cell Carcinoma 8 3597 -NCIT:C164156 Fumarate Hydratase-Deficient Renal Cell Carcinoma 8 3598 -NCIT:C189247 SMARCB1-Deficient Kidney Medullary Carcinoma 8 3599 -NCIT:C189248 Childhood SMARCB1-Deficient Kidney Medullary Carcinoma 9 3600 -NCIT:C189249 ALK-Rearranged Renal Cell Carcinoma 8 3601 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 9 3602 -NCIT:C191375 ELOC-Mutated Renal Cell Carcinoma 8 3603 -NCIT:C189244 Childhood Kidney Carcinoma 7 3604 -NCIT:C189248 Childhood SMARCB1-Deficient Kidney Medullary Carcinoma 8 3605 -NCIT:C6568 Childhood Renal Cell Carcinoma 8 3606 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 9 3607 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 9 3608 -NCIT:C189255 Childhood Eosinophilic Solid and Cystic Renal Cell Carcinoma 9 3609 -NCIT:C27806 Metastatic Kidney Carcinoma 7 3610 -NCIT:C150595 Metastatic Renal Cell Carcinoma 8 3611 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 3612 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 3613 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 3614 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 3615 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 3616 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 3617 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 9 3618 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 3619 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 3620 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 9 3621 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 3622 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 3623 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 9 3624 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 3625 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 3626 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 3627 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 3628 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 3629 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 3630 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 3631 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 3632 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 3633 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 9 3634 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 3635 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 3636 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 9 3637 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 3638 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 3639 -NCIT:C157755 Metastatic Kidney Medullary Carcinoma 8 3640 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 3641 -NCIT:C163965 Metastatic Renal Pelvis Carcinoma 8 3642 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 3643 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 3644 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 3645 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 3646 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 3647 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 3648 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 3649 -NCIT:C172617 Advanced Kidney Carcinoma 8 3650 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 3651 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 3652 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 3653 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 3654 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 3655 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 3656 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 3657 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 3658 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 3659 -NCIT:C172618 Locally Advanced Kidney Carcinoma 8 3660 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 3661 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 3662 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 3663 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 3664 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 3665 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 3666 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 3667 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 3668 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 3669 -NCIT:C39807 Mucinous Tubular and Spindle Cell Carcinoma of the Kidney 7 3670 -NCIT:C6142 Renal Pelvis Carcinoma 7 3671 -NCIT:C163965 Metastatic Renal Pelvis Carcinoma 8 3672 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 3673 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 3674 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 3675 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 3676 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 3677 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 3678 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 3679 -NCIT:C6143 Renal Pelvis Adenocarcinoma 8 3680 -NCIT:C7355 Renal Pelvis Urothelial Carcinoma 8 3681 -NCIT:C140356 Renal Pelvis Cancer by AJCC v8 Stage 9 3682 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 3683 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 10 3684 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 10 3685 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 10 3686 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 10 3687 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 10 3688 -NCIT:C140377 Renal Pelvis Cancer by AJCC v7 Stage 9 3689 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 10 3690 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 10 3691 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 10 3692 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 10 3693 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 10 3694 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 3695 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 3696 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 3697 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 3698 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 3699 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 3700 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 9 3701 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 9 3702 -NCIT:C180607 Renal Pelvis Urothelial Carcinoma, High Grade 9 3703 -NCIT:C6148 Renal Pelvis Papillary Urothelial Carcinoma 9 3704 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 3705 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 10 3706 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 9 3707 -NCIT:C7732 Renal Pelvis Squamous Cell Carcinoma 8 3708 -NCIT:C6194 Collecting Duct Carcinoma 7 3709 -NCIT:C7572 Kidney Medullary Carcinoma 7 3710 -NCIT:C157755 Metastatic Kidney Medullary Carcinoma 8 3711 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 3712 -NCIT:C162726 Recurrent Kidney Medullary Carcinoma 8 3713 -NCIT:C162727 Refractory Kidney Medullary Carcinoma 8 3714 -NCIT:C174567 Unresectable Kidney Medullary Carcinoma 8 3715 -NCIT:C189247 SMARCB1-Deficient Kidney Medullary Carcinoma 8 3716 -NCIT:C189248 Childhood SMARCB1-Deficient Kidney Medullary Carcinoma 9 3717 -NCIT:C9385 Renal Cell Carcinoma 7 3718 -NCIT:C100051 Renal Cell Carcinoma Associated with Neuroblastoma 8 3719 -NCIT:C126303 Tubulocystic Renal Cell Carcinoma 8 3720 -NCIT:C140322 Renal Cell Cancer by AJCC v8 Stage 8 3721 -NCIT:C140323 Stage I Renal Cell Cancer AJCC v8 9 3722 -NCIT:C140324 Stage II Renal Cell Cancer AJCC v8 9 3723 -NCIT:C140325 Stage III Renal Cell Cancer AJCC v8 9 3724 -NCIT:C140326 Stage IV Renal Cell Cancer AJCC v8 9 3725 -NCIT:C150359 Bilateral Synchronous Sporadic Renal Cell Carcinoma 8 3726 -NCIT:C150595 Metastatic Renal Cell Carcinoma 8 3727 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 3728 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 3729 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 3730 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 3731 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 3732 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 3733 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 9 3734 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 3735 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 3736 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 9 3737 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 3738 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 3739 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 9 3740 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 3741 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 3742 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 3743 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 3744 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 3745 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 3746 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 3747 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 3748 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 3749 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 9 3750 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 3751 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 3752 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 9 3753 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 3754 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 3755 -NCIT:C154494 Renal Cell Carcinoma with MiT Translocations 8 3756 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 9 3757 -NCIT:C27891 TFE3-Rearranged Renal Cell Carcinoma 9 3758 -NCIT:C37872 Renal Cell Carcinoma Associated with t(X;1)(p11.2;q21) 10 3759 -NCIT:C37874 Renal Cell Carcinoma Associated with t(X;1)(p11.2;p34) 10 3760 -NCIT:C37876 Renal Cell Carcinoma Associated with t(X;17)(p11.2;q25) 10 3761 -NCIT:C39802 Renal Cell Carcinoma Associated with inv(X)(p11;q12) 10 3762 -NCIT:C37210 TFEB-Rearranged Renal Cell Carcinoma 9 3763 -NCIT:C154545 Unresectable Renal Cell Carcinoma 8 3764 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 3765 -NCIT:C165449 Unresectable Clear Cell Renal Cell Carcinoma 9 3766 -NCIT:C183251 Unresectable Sarcomatoid Renal Cell Carcinoma 9 3767 -NCIT:C190505 Unresectable Papillary Renal Cell Carcinoma 9 3768 -NCIT:C190508 Unresectable Unclassified Renal Cell Carcinoma 9 3769 -NCIT:C154547 Resectable Renal Cell Carcinoma 8 3770 -NCIT:C156464 Succinate Dehydrogenase-Deficient Renal Cell Carcinoma 8 3771 -NCIT:C157718 Acquired Cystic Disease-Associated Renal Cell Carcinoma 8 3772 -NCIT:C164156 Fumarate Hydratase-Deficient Renal Cell Carcinoma 8 3773 -NCIT:C165745 Refractory Renal Cell Carcinoma 8 3774 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 9 3775 -NCIT:C189249 ALK-Rearranged Renal Cell Carcinoma 8 3776 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 9 3777 -NCIT:C189254 Eosinophilic Solid and Cystic Renal Cell Carcinoma 8 3778 -NCIT:C189255 Childhood Eosinophilic Solid and Cystic Renal Cell Carcinoma 9 3779 -NCIT:C191370 Renal Cell Carcinoma, Not Otherwise Specified 8 3780 -NCIT:C191375 ELOC-Mutated Renal Cell Carcinoma 8 3781 -NCIT:C27638 Transplant-Related Renal Cell Carcinoma 8 3782 -NCIT:C27892 Unclassified Renal Cell Carcinoma 8 3783 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 9 3784 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 3785 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 3786 -NCIT:C190508 Unresectable Unclassified Renal Cell Carcinoma 9 3787 -NCIT:C27893 Sarcomatoid Renal Cell Carcinoma 8 3788 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 9 3789 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 3790 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 3791 -NCIT:C183251 Unresectable Sarcomatoid Renal Cell Carcinoma 9 3792 -NCIT:C39789 Hereditary Renal Cell Carcinoma 8 3793 -NCIT:C36260 Hereditary Clear Cell Renal Cell Carcinoma 9 3794 -NCIT:C39790 Renal Cell Carcinoma with Constitutional Chromosome 3 Translocations 9 3795 -NCIT:C51302 Hereditary Leiomyomatosis and Renal Cell Carcinoma 9 3796 -NCIT:C9222 Hereditary Papillary Renal Cell Carcinoma 9 3797 -NCIT:C4033 Clear Cell Renal Cell Carcinoma 8 3798 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 9 3799 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 10 3800 -NCIT:C157614 BAP1-Mutant Clear Cell Renal Cell Carcinoma 9 3801 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 9 3802 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 3803 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 3804 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 9 3805 -NCIT:C165449 Unresectable Clear Cell Renal Cell Carcinoma 9 3806 -NCIT:C35851 Grade 1 Clear Cell Renal Cell Carcinoma 9 3807 -NCIT:C35852 Grade 2 Clear Cell Renal Cell Carcinoma 9 3808 -NCIT:C35853 Grade 3 Clear Cell Renal Cell Carcinoma 9 3809 -NCIT:C35854 Grade 4 Clear Cell Renal Cell Carcinoma 9 3810 -NCIT:C36260 Hereditary Clear Cell Renal Cell Carcinoma 9 3811 -NCIT:C36261 Non-Hereditary Clear Cell Renal Cell Carcinoma 9 3812 -NCIT:C4146 Chromophobe Renal Cell Carcinoma 8 3813 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 9 3814 -NCIT:C155951 Chromophobe Renal Cell Carcinoma Associated with Birt-Hogg-Dube Syndrome 9 3815 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 9 3816 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 3817 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 3818 -NCIT:C27888 Classic Variant of Chromophobe Renal Cell Carcinoma 9 3819 -NCIT:C27889 Eosinophilic Variant of Chromophobe Renal Cell Carcinoma 9 3820 -NCIT:C6568 Childhood Renal Cell Carcinoma 8 3821 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 9 3822 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 9 3823 -NCIT:C189255 Childhood Eosinophilic Solid and Cystic Renal Cell Carcinoma 9 3824 -NCIT:C6975 Papillary Renal Cell Carcinoma 8 3825 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 9 3826 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 3827 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 3828 -NCIT:C190505 Unresectable Papillary Renal Cell Carcinoma 9 3829 -NCIT:C27886 Type 1 Papillary Renal Cell Carcinoma 9 3830 -NCIT:C27887 Type 2 Papillary Renal Cell Carcinoma 9 3831 -NCIT:C27890 Sporadic Papillary Renal Cell Carcinoma 9 3832 -NCIT:C9222 Hereditary Papillary Renal Cell Carcinoma 9 3833 -NCIT:C7825 Recurrent Renal Cell Carcinoma 8 3834 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 9 3835 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 10 3836 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 9 3837 -NCIT:C90343 Renal Cell Cancer by AJCC v6 Stage 8 3838 -NCIT:C4003 Stage IV Renal Cell Cancer AJCC v6 9 3839 -NCIT:C7823 Stage I Renal Cell Cancer AJCC v6 and v7 9 3840 -NCIT:C7824 Stage II Renal Cell Cancer AJCC v6 9 3841 -NCIT:C9220 Stage III Renal Cell Cancer AJCC v6 9 3842 -NCIT:C91201 Renal Cell Cancer by AJCC v7 Stage 8 3843 -NCIT:C7823 Stage I Renal Cell Cancer AJCC v6 and v7 9 3844 -NCIT:C89301 Stage II Renal Cell Cancer AJCC v7 9 3845 -NCIT:C89302 Stage III Renal Cell Cancer AJCC v7 9 3846 -NCIT:C89303 Stage IV Renal Cell Cancer AJCC v7 9 3847 -NCIT:C190783 Unresectable Genitourinary System Carcinoma 5 3848 -NCIT:C150521 Unresectable Urothelial Carcinoma 6 3849 -NCIT:C158585 Unresectable Urethral Urothelial Carcinoma 7 3850 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 7 3851 -NCIT:C164160 Unresectable Renal Pelvis and Ureter Urothelial Carcinoma 7 3852 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 8 3853 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 8 3854 -NCIT:C167073 Unresectable Ovarian Carcinoma 6 3855 -NCIT:C160781 Unresectable Ovarian Serous Adenocarcinoma 7 3856 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 8 3857 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 3858 -NCIT:C172235 Unresectable Ovarian Undifferentiated Carcinoma 7 3859 -NCIT:C179459 Unresectable Platinum-Resistant Ovarian Carcinoma 7 3860 -NCIT:C183245 Unresectable Ovarian Mucinous Adenocarcinoma 7 3861 -NCIT:C186273 Unresectable Ovarian Endometrioid Adenocarcinoma 7 3862 -NCIT:C167075 Unresectable Bladder Carcinoma 6 3863 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 7 3864 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 7 3865 -NCIT:C170969 Unresectable Fallopian Tube Carcinoma 6 3866 -NCIT:C170970 Unresectable Fallopian Tube Adenocarcinoma 7 3867 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 8 3868 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 8 3869 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 7 3870 -NCIT:C171610 Unresectable Endometrial Carcinoma 6 3871 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 7 3872 -NCIT:C171611 Unresectable Prostate Carcinoma 6 3873 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 7 3874 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 8 3875 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 7 3876 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 7 3877 -NCIT:C174024 Unresectable Cervical Carcinoma 6 3878 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 7 3879 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 8 3880 -NCIT:C174025 Unresectable Cervical Squamous Cell Carcinoma 7 3881 -NCIT:C174027 Unresectable Cervical Adenosquamous Carcinoma 7 3882 -NCIT:C174029 Unresectable Cervical Adenocarcinoma 7 3883 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 8 3884 -NCIT:C174198 Unresectable Vulvar Carcinoma 6 3885 -NCIT:C174199 Unresectable Vulvar Squamous Cell Carcinoma 7 3886 -NCIT:C174565 Unresectable Kidney Carcinoma 6 3887 -NCIT:C154545 Unresectable Renal Cell Carcinoma 7 3888 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 8 3889 -NCIT:C165449 Unresectable Clear Cell Renal Cell Carcinoma 8 3890 -NCIT:C183251 Unresectable Sarcomatoid Renal Cell Carcinoma 8 3891 -NCIT:C190505 Unresectable Papillary Renal Cell Carcinoma 8 3892 -NCIT:C190508 Unresectable Unclassified Renal Cell Carcinoma 8 3893 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 7 3894 -NCIT:C174567 Unresectable Kidney Medullary Carcinoma 7 3895 -NCIT:C175434 Unresectable Vaginal Carcinoma 6 3896 -NCIT:C177724 Recurrent Malignant Genitourinary System Neoplasm 4 3897 -NCIT:C150526 Recurrent Malignant Female Reproductive System Neoplasm 5 3898 -NCIT:C153347 Recurrent Ovarian Carcinosarcoma 6 3899 -NCIT:C160619 Recurrent Malignant Ovarian Granulosa Cell Tumor 6 3900 -NCIT:C171170 Recurrent Extrarenal Rhabdoid Tumor of the Ovary 6 3901 -NCIT:C7620 Recurrent Female Reproductive System Carcinoma 6 3902 -NCIT:C115429 Recurrent Fallopian Tube Carcinoma 7 3903 -NCIT:C170750 Recurrent Platinum-Resistant Fallopian Tube Carcinoma 8 3904 -NCIT:C170755 Recurrent Fallopian Tube Undifferentiated Carcinoma 8 3905 -NCIT:C170757 Recurrent Fallopian Tube Transitional Cell Carcinoma 8 3906 -NCIT:C170766 Recurrent Fallopian Tube Adenocarcinoma 8 3907 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 9 3908 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 9 3909 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 9 3910 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 9 3911 -NCIT:C191395 Recurrent Platinum-Sensitive Fallopian Tube Carcinoma 8 3912 -NCIT:C150094 Recurrent Endometrial Carcinoma 7 3913 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 8 3914 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 8 3915 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 9 3916 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 9 3917 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 9 3918 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 9 3919 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 9 3920 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 8 3921 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 8 3922 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 8 3923 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 8 3924 -NCIT:C190200 Locally Recurrent Endometrial Carcinoma 8 3925 -NCIT:C7804 Recurrent Cervical Carcinoma 7 3926 -NCIT:C136649 Recurrent Cervical Squamous Cell Carcinoma 8 3927 -NCIT:C136650 Recurrent Cervical Adenosquamous Carcinoma 8 3928 -NCIT:C136651 Recurrent Cervical Adenocarcinoma 8 3929 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 9 3930 -NCIT:C7833 Recurrent Ovarian Carcinoma 7 3931 -NCIT:C148025 Recurrent BRCA- Associated Ovarian Carcinoma 8 3932 -NCIT:C153614 Recurrent Ovarian Adenocarcinoma 8 3933 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 9 3934 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 9 3935 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 10 3936 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 10 3937 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 10 3938 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 9 3939 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 9 3940 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 10 3941 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 9 3942 -NCIT:C153818 Recurrent Malignant Ovarian Brenner Tumor 8 3943 -NCIT:C153819 Recurrent Ovarian Transitional Cell Carcinoma 8 3944 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 8 3945 -NCIT:C170754 Recurrent Ovarian Undifferentiated Carcinoma 8 3946 -NCIT:C178669 Recurrent Ovarian Seromucinous Carcinoma 8 3947 -NCIT:C188391 Recurrent Platinum-Sensitive Ovarian Carcinoma 8 3948 -NCIT:C190201 Locally Recurrent Ovarian Carcinoma 8 3949 -NCIT:C7860 Recurrent Vaginal Carcinoma 7 3950 -NCIT:C185302 Recurrent Vaginal Squamous Cell Carcinoma 8 3951 -NCIT:C9054 Recurrent Vulvar Carcinoma 7 3952 -NCIT:C174200 Recurrent Vulvar Squamous Cell Carcinoma 8 3953 -NCIT:C8087 Recurrent Ovarian Germ Cell Tumor 6 3954 -NCIT:C8261 Recurrent Uterine Corpus Sarcoma 6 3955 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 7 3956 -NCIT:C9072 Recurrent Uterine Corpus Cancer 6 3957 -NCIT:C150094 Recurrent Endometrial Carcinoma 7 3958 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 8 3959 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 8 3960 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 9 3961 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 9 3962 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 9 3963 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 9 3964 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 9 3965 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 8 3966 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 8 3967 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 8 3968 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 8 3969 -NCIT:C190200 Locally Recurrent Endometrial Carcinoma 8 3970 -NCIT:C155818 Recurrent Uterine Corpus Carcinosarcoma 7 3971 -NCIT:C9269 Recurrent Malignant Endocervical Neoplasm 6 3972 -NCIT:C150533 Recurrent Malignant Male Reproductive System Neoplasm 5 3973 -NCIT:C138021 Recurrent Testicular Lymphoma 6 3974 -NCIT:C179466 Recurrent Malignant Spermatic Cord Neoplasm 6 3975 -NCIT:C7621 Recurrent Male Reproductive System Carcinoma 6 3976 -NCIT:C7870 Recurrent Penile Carcinoma 7 3977 -NCIT:C7902 Recurrent Prostate Carcinoma 7 3978 -NCIT:C156771 Biochemically Recurrent Prostate Carcinoma 8 3979 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 8 3980 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 9 3981 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 8 3982 -NCIT:C9369 Recurrent Malignant Testicular Germ Cell Tumor 6 3983 -NCIT:C150542 Recurrent Malignant Urinary System Neoplasm 5 3984 -NCIT:C162730 Recurrent Rhabdoid Tumor of the Kidney 6 3985 -NCIT:C7623 Recurrent Urinary System Carcinoma 6 3986 -NCIT:C157631 Recurrent Urothelial Carcinoma 7 3987 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 3988 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 3989 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 3990 -NCIT:C8254 Recurrent Renal Pelvis and Ureter Urothelial Carcinoma 8 3991 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 9 3992 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 3993 -NCIT:C172622 Recurrent Kidney Carcinoma 7 3994 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 8 3995 -NCIT:C162726 Recurrent Kidney Medullary Carcinoma 8 3996 -NCIT:C7825 Recurrent Renal Cell Carcinoma 8 3997 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 9 3998 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 10 3999 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 9 4000 -NCIT:C7508 Recurrent Urethral Carcinoma 7 4001 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 4002 -NCIT:C7899 Recurrent Bladder Carcinoma 7 4003 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 4004 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 4005 -NCIT:C190774 Recurrent Non-Muscle Invasive Bladder Carcinoma 8 4006 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 4007 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 4008 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 8 4009 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 8 4010 -NCIT:C9255 Recurrent Ureter Carcinoma 7 4011 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 8 4012 -NCIT:C7845 Recurrent Kidney Wilms Tumor 6 4013 -NCIT:C9266 Recurrent Malignant Bladder Neoplasm 6 4014 -NCIT:C7899 Recurrent Bladder Carcinoma 7 4015 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 4016 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 4017 -NCIT:C190774 Recurrent Non-Muscle Invasive Bladder Carcinoma 8 4018 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 4019 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 4020 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 8 4021 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 8 4022 -NCIT:C178443 Mucosal Melanoma of the Genitourinary System 4 4023 -NCIT:C178437 Mucosal Melanoma of the Female Genital Tract 5 4024 -NCIT:C27394 Vaginal Melanoma 6 4025 -NCIT:C40239 Cervical Melanoma 6 4026 -NCIT:C40329 Vulvar Melanoma 6 4027 -NCIT:C178453 Mucosal Melanoma of the Urinary System 5 4028 -NCIT:C159663 Bladder Melanoma 6 4029 -NCIT:C159665 Urethral Melanoma 6 4030 -NCIT:C178517 Penile Mucosal Melanoma 5 4031 -NCIT:C189269 Childhood Malignant Genitourinary System Neoplasm 4 4032 -NCIT:C118816 Childhood Bladder Carcinoma 5 4033 -NCIT:C118821 Childhood Malignant Penile Neoplasm 5 4034 -NCIT:C123907 Childhood Malignant Kidney Neoplasm 5 4035 -NCIT:C189244 Childhood Kidney Carcinoma 6 4036 -NCIT:C189248 Childhood SMARCB1-Deficient Kidney Medullary Carcinoma 7 4037 -NCIT:C6568 Childhood Renal Cell Carcinoma 7 4038 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 8 4039 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 8 4040 -NCIT:C189255 Childhood Eosinophilic Solid and Cystic Renal Cell Carcinoma 8 4041 -NCIT:C189260 Childhood Anaplastic Sarcoma of the Kidney 6 4042 -NCIT:C189261 Childhood Kidney Ewing Sarcoma 6 4043 -NCIT:C27730 Childhood Kidney Wilms Tumor 6 4044 -NCIT:C6897 Cystic Partially Differentiated Kidney Nephroblastoma 7 4045 -NCIT:C4264 Clear Cell Sarcoma of the Kidney 6 4046 -NCIT:C6569 Congenital Mesoblastic Nephroma 6 4047 -NCIT:C39814 Classic Congenital Mesoblastic Nephroma 7 4048 -NCIT:C39815 Cellular Congenital Mesoblastic Nephroma 7 4049 -NCIT:C97058 Mixed Congenital Mesoblastic Nephroma 7 4050 -NCIT:C8715 Rhabdoid Tumor of the Kidney 6 4051 -NCIT:C162730 Recurrent Rhabdoid Tumor of the Kidney 7 4052 -NCIT:C162731 Refractory Rhabdoid Tumor of the Kidney 7 4053 -NCIT:C188888 Unresectable Rhabdoid Tumor of the Kidney 7 4054 -NCIT:C161608 Extrarenal Rhabdoid Tumor of the Prostate 5 4055 -NCIT:C190659 Childhood Malignant Ovarian Neoplasm 5 4056 -NCIT:C171169 Extrarenal Rhabdoid Tumor of the Ovary 6 4057 -NCIT:C171170 Recurrent Extrarenal Rhabdoid Tumor of the Ovary 7 4058 -NCIT:C171171 Refractory Extrarenal Rhabdoid Tumor of the Ovary 7 4059 -NCIT:C189334 Childhood Ovarian Small Cell Carcinoma, Hypercalcemic Type 6 4060 -NCIT:C68629 Childhood Malignant Ovarian Germ Cell Tumor 6 4061 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 7 4062 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 7 4063 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 7 4064 -NCIT:C6550 Childhood Ovarian Dysgerminoma 7 4065 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 7 4066 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 5 4067 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 5 4068 -NCIT:C68628 Childhood Malignant Testicular Germ Cell Tumor 5 4069 -NCIT:C6542 Childhood Testicular Mixed Germ Cell Tumor 6 4070 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 7 4071 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 6 4072 -NCIT:C6544 Childhood Testicular Choriocarcinoma 6 4073 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 6 4074 -NCIT:C36076 Malignant Reproductive System Neoplasm 4 4075 -NCIT:C4913 Malignant Female Reproductive System Neoplasm 5 4076 -NCIT:C126498 Malignant Uterine Ligament Neoplasm 6 4077 -NCIT:C179934 Malignant Broad Ligament Neoplasm 7 4078 -NCIT:C102570 Broad Ligament Adenosarcoma 8 4079 -NCIT:C179926 Broad Ligament Leiomyosarcoma 8 4080 -NCIT:C40135 Broad Ligament Adenocarcinoma 8 4081 -NCIT:C126479 Broad Ligament Serous Adenocarcinoma 9 4082 -NCIT:C40137 Broad Ligament Mucinous Adenocarcinoma 9 4083 -NCIT:C40138 Broad Ligament Endometrioid Adenocarcinoma 9 4084 -NCIT:C40139 Broad Ligament Clear Cell Adenocarcinoma 9 4085 -NCIT:C150526 Recurrent Malignant Female Reproductive System Neoplasm 6 4086 -NCIT:C153347 Recurrent Ovarian Carcinosarcoma 7 4087 -NCIT:C160619 Recurrent Malignant Ovarian Granulosa Cell Tumor 7 4088 -NCIT:C171170 Recurrent Extrarenal Rhabdoid Tumor of the Ovary 7 4089 -NCIT:C7620 Recurrent Female Reproductive System Carcinoma 7 4090 -NCIT:C115429 Recurrent Fallopian Tube Carcinoma 8 4091 -NCIT:C170750 Recurrent Platinum-Resistant Fallopian Tube Carcinoma 9 4092 -NCIT:C170755 Recurrent Fallopian Tube Undifferentiated Carcinoma 9 4093 -NCIT:C170757 Recurrent Fallopian Tube Transitional Cell Carcinoma 9 4094 -NCIT:C170766 Recurrent Fallopian Tube Adenocarcinoma 9 4095 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 10 4096 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 10 4097 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 10 4098 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 10 4099 -NCIT:C191395 Recurrent Platinum-Sensitive Fallopian Tube Carcinoma 9 4100 -NCIT:C150094 Recurrent Endometrial Carcinoma 8 4101 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 9 4102 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 9 4103 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 10 4104 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 10 4105 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 10 4106 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 10 4107 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 10 4108 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 9 4109 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 9 4110 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 9 4111 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 9 4112 -NCIT:C190200 Locally Recurrent Endometrial Carcinoma 9 4113 -NCIT:C7804 Recurrent Cervical Carcinoma 8 4114 -NCIT:C136649 Recurrent Cervical Squamous Cell Carcinoma 9 4115 -NCIT:C136650 Recurrent Cervical Adenosquamous Carcinoma 9 4116 -NCIT:C136651 Recurrent Cervical Adenocarcinoma 9 4117 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 10 4118 -NCIT:C7833 Recurrent Ovarian Carcinoma 8 4119 -NCIT:C148025 Recurrent BRCA- Associated Ovarian Carcinoma 9 4120 -NCIT:C153614 Recurrent Ovarian Adenocarcinoma 9 4121 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 10 4122 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 10 4123 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 11 4124 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 11 4125 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 11 4126 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 10 4127 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 10 4128 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 11 4129 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 10 4130 -NCIT:C153818 Recurrent Malignant Ovarian Brenner Tumor 9 4131 -NCIT:C153819 Recurrent Ovarian Transitional Cell Carcinoma 9 4132 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 9 4133 -NCIT:C170754 Recurrent Ovarian Undifferentiated Carcinoma 9 4134 -NCIT:C178669 Recurrent Ovarian Seromucinous Carcinoma 9 4135 -NCIT:C188391 Recurrent Platinum-Sensitive Ovarian Carcinoma 9 4136 -NCIT:C190201 Locally Recurrent Ovarian Carcinoma 9 4137 -NCIT:C7860 Recurrent Vaginal Carcinoma 8 4138 -NCIT:C185302 Recurrent Vaginal Squamous Cell Carcinoma 9 4139 -NCIT:C9054 Recurrent Vulvar Carcinoma 8 4140 -NCIT:C174200 Recurrent Vulvar Squamous Cell Carcinoma 9 4141 -NCIT:C8087 Recurrent Ovarian Germ Cell Tumor 7 4142 -NCIT:C8261 Recurrent Uterine Corpus Sarcoma 7 4143 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 8 4144 -NCIT:C9072 Recurrent Uterine Corpus Cancer 7 4145 -NCIT:C150094 Recurrent Endometrial Carcinoma 8 4146 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 9 4147 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 9 4148 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 10 4149 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 10 4150 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 10 4151 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 10 4152 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 10 4153 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 9 4154 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 9 4155 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 9 4156 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 9 4157 -NCIT:C190200 Locally Recurrent Endometrial Carcinoma 9 4158 -NCIT:C155818 Recurrent Uterine Corpus Carcinosarcoma 8 4159 -NCIT:C9269 Recurrent Malignant Endocervical Neoplasm 7 4160 -NCIT:C150527 Refractory Malignant Female Reproductive System Neoplasm 6 4161 -NCIT:C150092 Refractory Uterine Corpus Cancer 7 4162 -NCIT:C150093 Refractory Endometrial Carcinoma 8 4163 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 9 4164 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 9 4165 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 9 4166 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 9 4167 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 10 4168 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 10 4169 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 10 4170 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 10 4171 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 10 4172 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 9 4173 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 9 4174 -NCIT:C158381 Refractory Uterine Corpus Carcinosarcoma 8 4175 -NCIT:C152048 Refractory Female Reproductive System Carcinoma 7 4176 -NCIT:C150091 Refractory Ovarian Carcinoma 8 4177 -NCIT:C147561 Platinum-Resistant Ovarian Carcinoma 9 4178 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 10 4179 -NCIT:C179459 Unresectable Platinum-Resistant Ovarian Carcinoma 10 4180 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 10 4181 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 11 4182 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 11 4183 -NCIT:C170968 Refractory Ovarian Adenocarcinoma 9 4184 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 10 4185 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 10 4186 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 11 4187 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 11 4188 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 10 4189 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 10 4190 -NCIT:C178671 Refractory Ovarian Seromucinous Carcinoma 9 4191 -NCIT:C178682 Refractory Ovarian Transitional Cell Carcinoma 9 4192 -NCIT:C178683 Refractory Ovarian Undifferentiated Carcinoma 9 4193 -NCIT:C178700 Platinum-Refractory Ovarian Carcinoma 9 4194 -NCIT:C179207 Refractory Ovarian Squamous Cell Carcinoma 9 4195 -NCIT:C183126 Refractory Malignant Ovarian Brenner Tumor 9 4196 -NCIT:C150093 Refractory Endometrial Carcinoma 8 4197 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 9 4198 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 9 4199 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 9 4200 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 9 4201 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 10 4202 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 10 4203 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 10 4204 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 10 4205 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 10 4206 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 9 4207 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 9 4208 -NCIT:C152047 Refractory Fallopian Tube Carcinoma 8 4209 -NCIT:C157621 Platinum-Resistant Fallopian Tube Carcinoma 9 4210 -NCIT:C170750 Recurrent Platinum-Resistant Fallopian Tube Carcinoma 10 4211 -NCIT:C170971 Refractory Fallopian Tube Adenocarcinoma 9 4212 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 10 4213 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 10 4214 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 10 4215 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 10 4216 -NCIT:C178674 Refractory Fallopian Tube Transitional Cell Carcinoma 9 4217 -NCIT:C178675 Refractory Fallopian Tube Undifferentiated Carcinoma 9 4218 -NCIT:C178698 Platinum-Refractory Fallopian Tube Carcinoma 9 4219 -NCIT:C170513 Refractory Cervical Carcinoma 8 4220 -NCIT:C181034 Refractory Cervical Squamous Cell Carcinoma 9 4221 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 10 4222 -NCIT:C181036 Refractory Cervical Adenocarcinoma 9 4223 -NCIT:C174508 Refractory Vulvar Carcinoma 8 4224 -NCIT:C185304 Refractory Vulvar Squamous Cell Carcinoma 9 4225 -NCIT:C174509 Refractory Vaginal Carcinoma 8 4226 -NCIT:C185303 Refractory Vaginal Squamous Cell Carcinoma 9 4227 -NCIT:C169021 Platinum-Resistant Malignant Female Reproductive System Neoplasm 7 4228 -NCIT:C147561 Platinum-Resistant Ovarian Carcinoma 8 4229 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 9 4230 -NCIT:C179459 Unresectable Platinum-Resistant Ovarian Carcinoma 9 4231 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 9 4232 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 10 4233 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 10 4234 -NCIT:C157621 Platinum-Resistant Fallopian Tube Carcinoma 8 4235 -NCIT:C170750 Recurrent Platinum-Resistant Fallopian Tube Carcinoma 9 4236 -NCIT:C171171 Refractory Extrarenal Rhabdoid Tumor of the Ovary 7 4237 -NCIT:C178697 Platinum-Refractory Malignant Female Reproductive System Neoplasm 7 4238 -NCIT:C178698 Platinum-Refractory Fallopian Tube Carcinoma 8 4239 -NCIT:C178700 Platinum-Refractory Ovarian Carcinoma 8 4240 -NCIT:C162254 Metastatic Malignant Female Reproductive System Neoplasm 6 4241 -NCIT:C153387 Metastatic Cervical Carcinoma 7 4242 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 8 4243 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 4244 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 4245 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 8 4246 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 4247 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 4248 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 4249 -NCIT:C153390 Metastatic Cervical Adenosquamous Carcinoma 8 4250 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 4251 -NCIT:C156294 Advanced Cervical Carcinoma 8 4252 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 4253 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 4254 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 4255 -NCIT:C156295 Locally Advanced Cervical Carcinoma 8 4256 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 4257 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 4258 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 9 4259 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 4260 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 4261 -NCIT:C156063 Metastatic Fallopian Tube Carcinoma 7 4262 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 8 4263 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 9 4264 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 8 4265 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 8 4266 -NCIT:C156064 Metastatic Ovarian Carcinoma 7 4267 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 8 4268 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 4269 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 4270 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 4271 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 9 4272 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 4273 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 4274 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 9 4275 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 4276 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 4277 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 4278 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 4279 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 4280 -NCIT:C165458 Advanced Ovarian Carcinoma 8 4281 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 4282 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 4283 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 4284 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 4285 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 4286 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 4287 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 4288 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 8 4289 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 4290 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 4291 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 4292 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 4293 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 8 4294 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 4295 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 8 4296 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 4297 -NCIT:C172234 Metastatic Ovarian Undifferentiated Carcinoma 8 4298 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 8 4299 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 4300 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 4301 -NCIT:C180333 Metastatic Microsatellite Stable Ovarian Carcinoma 8 4302 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 4303 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 8 4304 -NCIT:C27391 Metastatic Ovarian Small Cell Carcinoma, Hypercalcemic Type 8 4305 -NCIT:C156065 Metastatic Vaginal Carcinoma 7 4306 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 8 4307 -NCIT:C170788 Advanced Vaginal Carcinoma 8 4308 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 4309 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 4310 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 4311 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 4312 -NCIT:C181028 Metastatic Vaginal Adenosquamous Carcinoma 8 4313 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 4314 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 8 4315 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 4316 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 4317 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 8 4318 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 4319 -NCIT:C156066 Metastatic Vulvar Carcinoma 7 4320 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 8 4321 -NCIT:C170786 Advanced Vulvar Carcinoma 8 4322 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 8 4323 -NCIT:C156068 Metastatic Endometrial Carcinoma 7 4324 -NCIT:C159676 Advanced Endometrial Carcinoma 8 4325 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 4326 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 4327 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 4328 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 4329 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 8 4330 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 4331 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 4332 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 9 4333 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 8 4334 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 8 4335 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 4336 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 8 4337 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 9 4338 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 4339 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 4340 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 4341 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 4342 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 9 4343 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 4344 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 4345 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 4346 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 4347 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 9 4348 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 9 4349 -NCIT:C167260 Advanced Malignant Female Reproductive System Neoplasm 7 4350 -NCIT:C156294 Advanced Cervical Carcinoma 8 4351 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 4352 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 4353 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 4354 -NCIT:C165458 Advanced Ovarian Carcinoma 8 4355 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 4356 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 4357 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 4358 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 4359 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 4360 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 4361 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 4362 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 8 4363 -NCIT:C170786 Advanced Vulvar Carcinoma 8 4364 -NCIT:C170788 Advanced Vaginal Carcinoma 8 4365 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 4366 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 4367 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 4368 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 4369 -NCIT:C170930 Advanced Malignant Mixed Mesodermal (Mullerian) Tumor 8 4370 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 9 4371 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 9 4372 -NCIT:C172450 Advanced Uterine Corpus Cancer 8 4373 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 9 4374 -NCIT:C159676 Advanced Endometrial Carcinoma 9 4375 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 10 4376 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 11 4377 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 11 4378 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 10 4379 -NCIT:C170460 Locally Advanced Malignant Female Reproductive System Neoplasm 7 4380 -NCIT:C156295 Locally Advanced Cervical Carcinoma 8 4381 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 4382 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 4383 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 9 4384 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 4385 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 4386 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 8 4387 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 4388 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 4389 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 4390 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 4391 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 8 4392 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 9 4393 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 8 4394 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 4395 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 4396 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 9 4397 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 8 4398 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 8 4399 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 4400 -NCIT:C185381 Metastatic Mesonephric Adenocarcinoma 7 4401 -NCIT:C190009 Metastatic Uterine Corpus Sarcoma 7 4402 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 8 4403 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 9 4404 -NCIT:C170963 Resectable Malignant Female Reproductive System Neoplasm 6 4405 -NCIT:C178437 Mucosal Melanoma of the Female Genital Tract 6 4406 -NCIT:C27394 Vaginal Melanoma 7 4407 -NCIT:C40239 Cervical Melanoma 7 4408 -NCIT:C40329 Vulvar Melanoma 7 4409 -NCIT:C179320 Mesonephric-Like Adenocarcinoma 6 4410 -NCIT:C179321 Ovarian Mesonephric-Like Adenocarcinoma 7 4411 -NCIT:C179322 Endometrial Mesonephric-Like Adenocarcinoma 7 4412 -NCIT:C181162 Female Reproductive System Carcinoma 6 4413 -NCIT:C3867 Fallopian Tube Carcinoma 7 4414 -NCIT:C115429 Recurrent Fallopian Tube Carcinoma 8 4415 -NCIT:C170750 Recurrent Platinum-Resistant Fallopian Tube Carcinoma 9 4416 -NCIT:C170755 Recurrent Fallopian Tube Undifferentiated Carcinoma 9 4417 -NCIT:C170757 Recurrent Fallopian Tube Transitional Cell Carcinoma 9 4418 -NCIT:C170766 Recurrent Fallopian Tube Adenocarcinoma 9 4419 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 10 4420 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 10 4421 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 10 4422 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 10 4423 -NCIT:C191395 Recurrent Platinum-Sensitive Fallopian Tube Carcinoma 9 4424 -NCIT:C139983 Fallopian Tube Cancer by AJCC v8 Stage 8 4425 -NCIT:C139984 Stage I Fallopian Tube Cancer AJCC v8 9 4426 -NCIT:C139985 Stage IA Fallopian Tube Cancer AJCC v8 10 4427 -NCIT:C139986 Stage IB Fallopian Tube Cancer AJCC v8 10 4428 -NCIT:C139987 Stage IC Fallopian Tube Cancer AJCC v8 10 4429 -NCIT:C139988 Stage II Fallopian Tube Cancer AJCC v8 9 4430 -NCIT:C139989 Stage IIA Fallopian Tube Cancer AJCC v8 10 4431 -NCIT:C139990 Stage IIB Fallopian Tube Cancer AJCC v8 10 4432 -NCIT:C139991 Stage III Fallopian Tube Cancer AJCC v8 9 4433 -NCIT:C139992 Stage IIIA Fallopian Tube Cancer AJCC v8 10 4434 -NCIT:C139993 Stage IIIA1 Fallopian Tube Cancer AJCC v8 11 4435 -NCIT:C139994 Stage IIIA2 Fallopian Tube Cancer AJCC v8 11 4436 -NCIT:C139995 Stage IIIB Fallopian Tube Cancer AJCC v8 10 4437 -NCIT:C139996 Stage IIIC Fallopian Tube Cancer AJCC v8 10 4438 -NCIT:C139997 Stage IV Fallopian Tube Cancer AJCC v8 9 4439 -NCIT:C139998 Stage IVA Fallopian Tube Cancer AJCC v8 10 4440 -NCIT:C139999 Stage IVB Fallopian Tube Cancer AJCC v8 10 4441 -NCIT:C152047 Refractory Fallopian Tube Carcinoma 8 4442 -NCIT:C157621 Platinum-Resistant Fallopian Tube Carcinoma 9 4443 -NCIT:C170750 Recurrent Platinum-Resistant Fallopian Tube Carcinoma 10 4444 -NCIT:C170971 Refractory Fallopian Tube Adenocarcinoma 9 4445 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 10 4446 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 10 4447 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 10 4448 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 10 4449 -NCIT:C178674 Refractory Fallopian Tube Transitional Cell Carcinoma 9 4450 -NCIT:C178675 Refractory Fallopian Tube Undifferentiated Carcinoma 9 4451 -NCIT:C178698 Platinum-Refractory Fallopian Tube Carcinoma 9 4452 -NCIT:C156063 Metastatic Fallopian Tube Carcinoma 8 4453 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 9 4454 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 10 4455 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 9 4456 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 9 4457 -NCIT:C160873 Platinum-Sensitive Fallopian Tube Carcinoma 8 4458 -NCIT:C191395 Recurrent Platinum-Sensitive Fallopian Tube Carcinoma 9 4459 -NCIT:C170969 Unresectable Fallopian Tube Carcinoma 8 4460 -NCIT:C170970 Unresectable Fallopian Tube Adenocarcinoma 9 4461 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 10 4462 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 10 4463 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 9 4464 -NCIT:C40104 Fallopian Tube Transitional Cell Carcinoma 8 4465 -NCIT:C170757 Recurrent Fallopian Tube Transitional Cell Carcinoma 9 4466 -NCIT:C178674 Refractory Fallopian Tube Transitional Cell Carcinoma 9 4467 -NCIT:C40455 Hereditary Fallopian Tube Carcinoma 8 4468 -NCIT:C6265 Fallopian Tube Adenocarcinoma 8 4469 -NCIT:C170766 Recurrent Fallopian Tube Adenocarcinoma 9 4470 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 10 4471 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 10 4472 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 10 4473 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 10 4474 -NCIT:C170970 Unresectable Fallopian Tube Adenocarcinoma 9 4475 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 10 4476 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 10 4477 -NCIT:C170971 Refractory Fallopian Tube Adenocarcinoma 9 4478 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 10 4479 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 10 4480 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 10 4481 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 10 4482 -NCIT:C40099 Fallopian Tube Serous Adenocarcinoma 9 4483 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 10 4484 -NCIT:C126456 Fallopian Tube High Grade Serous Adenocarcinoma 10 4485 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 11 4486 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 11 4487 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 11 4488 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 11 4489 -NCIT:C40103 Fallopian Tube Mucinous Adenocarcinoma 9 4490 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 10 4491 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 10 4492 -NCIT:C40105 Stage 0 Fallopian Tube Cancer AJCC v7 9 4493 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 10 4494 -NCIT:C6279 Fallopian Tube Endometrioid Adenocarcinoma 9 4495 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 10 4496 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 10 4497 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 10 4498 -NCIT:C6280 Fallopian Tube Clear Cell Adenocarcinoma 9 4499 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 10 4500 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 10 4501 -NCIT:C6278 Fallopian Tube Gestational Choriocarcinoma 8 4502 -NCIT:C6281 Fallopian Tube Undifferentiated Carcinoma 8 4503 -NCIT:C170755 Recurrent Fallopian Tube Undifferentiated Carcinoma 9 4504 -NCIT:C178675 Refractory Fallopian Tube Undifferentiated Carcinoma 9 4505 -NCIT:C6282 Fallopian Tube Squamous Cell Carcinoma 8 4506 -NCIT:C90499 Fallopian Tube Cancer by AJCC v6 Stage 8 4507 -NCIT:C8720 Stage I Fallopian Tube Cancer AJCC v6 and v7 9 4508 -NCIT:C6269 Stage IA Fallopian Tube Cancer AJCC v6 and v7 10 4509 -NCIT:C6270 Stage IB Fallopian Tube Cancer AJCC v6 and v7 10 4510 -NCIT:C6271 Stage IC Fallopian Tube Cancer AJCC v6 and v7 10 4511 -NCIT:C8721 Stage II Fallopian Tube Cancer AJCC v6 and v7 9 4512 -NCIT:C6272 Stage IIA Fallopian Tube Cancer AJCC v6 and v7 10 4513 -NCIT:C6276 Stage IIC Fallopian Tube Cancer AJCC v6 and v7 10 4514 -NCIT:C6277 Stage IIB Fallopian Tube Cancer AJCC v6 and v7 10 4515 -NCIT:C8722 Stage III Fallopian Tube Cancer AJCC v6 9 4516 -NCIT:C8963 Stage IV Fallopian Tube Cancer AJCC v6 and v7 9 4517 -NCIT:C91219 Fallopian Tube Cancer by AJCC v7 Stage 8 4518 -NCIT:C40105 Stage 0 Fallopian Tube Cancer AJCC v7 9 4519 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 10 4520 -NCIT:C8720 Stage I Fallopian Tube Cancer AJCC v6 and v7 9 4521 -NCIT:C6269 Stage IA Fallopian Tube Cancer AJCC v6 and v7 10 4522 -NCIT:C6270 Stage IB Fallopian Tube Cancer AJCC v6 and v7 10 4523 -NCIT:C6271 Stage IC Fallopian Tube Cancer AJCC v6 and v7 10 4524 -NCIT:C8721 Stage II Fallopian Tube Cancer AJCC v6 and v7 9 4525 -NCIT:C6272 Stage IIA Fallopian Tube Cancer AJCC v6 and v7 10 4526 -NCIT:C6276 Stage IIC Fallopian Tube Cancer AJCC v6 and v7 10 4527 -NCIT:C6277 Stage IIB Fallopian Tube Cancer AJCC v6 and v7 10 4528 -NCIT:C8963 Stage IV Fallopian Tube Cancer AJCC v6 and v7 9 4529 -NCIT:C89692 Stage III Fallopian Tube Cancer AJCC v7 9 4530 -NCIT:C6273 Stage IIIA Fallopian Tube Cancer AJCC v7 10 4531 -NCIT:C6274 Stage IIIB Fallopian Tube Cancer AJCC v7 10 4532 -NCIT:C6275 Stage IIIC Fallopian Tube Cancer AJCC v7 10 4533 -NCIT:C3917 Vaginal Carcinoma 7 4534 -NCIT:C128073 Vaginal Neuroendocrine Carcinoma 8 4535 -NCIT:C128075 Vaginal Large Cell Neuroendocrine Carcinoma 9 4536 -NCIT:C40263 Vaginal Small Cell Neuroendocrine Carcinoma 9 4537 -NCIT:C139657 Vaginal Cancer by AJCC v8 Stage 8 4538 -NCIT:C139658 Stage I Vaginal Cancer AJCC v8 9 4539 -NCIT:C139659 Stage IA Vaginal Cancer AJCC v8 10 4540 -NCIT:C139660 Stage IB Vaginal Cancer AJCC v8 10 4541 -NCIT:C139661 Stage II Vaginal Cancer AJCC v8 9 4542 -NCIT:C139662 Stage IIA Vaginal Cancer AJCC v8 10 4543 -NCIT:C139664 Stage IIB Vaginal Cancer AJCC v8 10 4544 -NCIT:C139665 Stage III Vaginal Cancer AJCC v8 9 4545 -NCIT:C139667 Stage IV Vaginal Cancer AJCC v8 9 4546 -NCIT:C139669 Stage IVA Vaginal Cancer AJCC v8 10 4547 -NCIT:C139670 Stage IVB Vaginal Cancer AJCC v8 10 4548 -NCIT:C156065 Metastatic Vaginal Carcinoma 8 4549 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 9 4550 -NCIT:C170788 Advanced Vaginal Carcinoma 9 4551 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 10 4552 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 10 4553 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 10 4554 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 11 4555 -NCIT:C181028 Metastatic Vaginal Adenosquamous Carcinoma 9 4556 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 10 4557 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 9 4558 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 10 4559 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 11 4560 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 9 4561 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 10 4562 -NCIT:C174509 Refractory Vaginal Carcinoma 8 4563 -NCIT:C185303 Refractory Vaginal Squamous Cell Carcinoma 9 4564 -NCIT:C175434 Unresectable Vaginal Carcinoma 8 4565 -NCIT:C180915 Vaginal Squamous Cell Carcinoma 8 4566 -NCIT:C128060 Vaginal Papillary Carcinoma 9 4567 -NCIT:C180917 Human Papillomavirus-Related Vaginal Squamous Cell Carcinoma 9 4568 -NCIT:C40248 Vaginal Warty Carcinoma 10 4569 -NCIT:C180919 Human Papillomavirus-Independent Vaginal Squamous Cell Carcinoma 9 4570 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 9 4571 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 10 4572 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 11 4573 -NCIT:C185302 Recurrent Vaginal Squamous Cell Carcinoma 9 4574 -NCIT:C185303 Refractory Vaginal Squamous Cell Carcinoma 9 4575 -NCIT:C40243 Vaginal Keratinizing Squamous Cell Carcinoma 9 4576 -NCIT:C40244 Vaginal Non-Keratinizing Squamous Cell Carcinoma 9 4577 -NCIT:C40245 Vaginal Basaloid Carcinoma 9 4578 -NCIT:C6325 Vaginal Verrucous Carcinoma 9 4579 -NCIT:C7736 Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 4580 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 4581 -NCIT:C40260 Vaginal Adenosquamous Carcinoma 8 4582 -NCIT:C181028 Metastatic Vaginal Adenosquamous Carcinoma 9 4583 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 10 4584 -NCIT:C40261 Vaginal Adenoid Cystic Carcinoma 8 4585 -NCIT:C40262 Vaginal Adenoid Basal Carcinoma 8 4586 -NCIT:C40264 Vaginal Undifferentiated Carcinoma 8 4587 -NCIT:C7860 Recurrent Vaginal Carcinoma 8 4588 -NCIT:C185302 Recurrent Vaginal Squamous Cell Carcinoma 9 4589 -NCIT:C7981 Vaginal Adenocarcinoma 8 4590 -NCIT:C180943 Human Papillomavirus-Related Vaginal Adenocarcinoma 9 4591 -NCIT:C180947 Vaginal Adenocarcinoma of Skene Gland Origin 9 4592 -NCIT:C40251 Vaginal Endometrioid Adenocarcinoma 9 4593 -NCIT:C40252 Vaginal Mucinous Adenocarcinoma 9 4594 -NCIT:C180945 Vaginal Mucinous Adenocarcinoma, Gastric-Type 10 4595 -NCIT:C180946 Vaginal Mucinous Adenocarcinoma, Intestinal-Type 10 4596 -NCIT:C40253 Vaginal Mesonephric Adenocarcinoma 9 4597 -NCIT:C7735 Vaginal Clear Cell Adenocarcinoma 9 4598 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 9 4599 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 10 4600 -NCIT:C90347 Vaginal Cancer by AJCC v6 Stage 8 4601 -NCIT:C7597 Stage IV Vaginal Cancer AJCC v6 and v7 9 4602 -NCIT:C7859 Stage IVA Vaginal Cancer AJCC v6 and v7 10 4603 -NCIT:C9355 Stage IVB Vaginal Cancer AJCC v6 and v7 10 4604 -NCIT:C7855 Stage 0 Vaginal Cancer AJCC v6 9 4605 -NCIT:C7856 Stage I Vaginal Cancer AJCC v6 and v7 9 4606 -NCIT:C7857 Stage II Vaginal Cancer AJCC v6 and v7 9 4607 -NCIT:C7858 Stage III Vaginal Cancer AJCC v6 and v7 9 4608 -NCIT:C91204 Vaginal Cancer by AJCC v7 Stage 8 4609 -NCIT:C7597 Stage IV Vaginal Cancer AJCC v6 and v7 9 4610 -NCIT:C7859 Stage IVA Vaginal Cancer AJCC v6 and v7 10 4611 -NCIT:C9355 Stage IVB Vaginal Cancer AJCC v6 and v7 10 4612 -NCIT:C7856 Stage I Vaginal Cancer AJCC v6 and v7 9 4613 -NCIT:C7857 Stage II Vaginal Cancer AJCC v6 and v7 9 4614 -NCIT:C7858 Stage III Vaginal Cancer AJCC v6 and v7 9 4615 -NCIT:C89476 Stage 0 Vaginal Cancer AJCC v7 9 4616 -NCIT:C4072 Mesonephric Adenocarcinoma 7 4617 -NCIT:C185381 Metastatic Mesonephric Adenocarcinoma 8 4618 -NCIT:C40253 Vaginal Mesonephric Adenocarcinoma 8 4619 -NCIT:C40254 Cervical Mesonephric Adenocarcinoma 8 4620 -NCIT:C4866 Vulvar Carcinoma 7 4621 -NCIT:C128243 Vulvar Neuroendocrine Carcinoma 8 4622 -NCIT:C128244 Vulvar Small Cell Neuroendocrine Carcinoma 9 4623 -NCIT:C40298 Bartholin Gland Small Cell Neuroendocrine Carcinoma 10 4624 -NCIT:C128245 Vulvar Large Cell Neuroendocrine Carcinoma 9 4625 -NCIT:C128247 Vulvar Merkel Cell Carcinoma 9 4626 -NCIT:C139618 Vulvar Cancer by AJCC v8 Stage 8 4627 -NCIT:C139619 Stage I Vulvar Cancer AJCC v8 9 4628 -NCIT:C139620 Stage IA Vulvar Cancer AJCC v8 10 4629 -NCIT:C139621 Stage IB Vulvar Cancer AJCC v8 10 4630 -NCIT:C139622 Stage II Vulvar Cancer AJCC v8 9 4631 -NCIT:C139623 Stage III Vulvar Cancer AJCC v8 9 4632 -NCIT:C139624 Stage IIIA Vulvar Cancer AJCC v8 10 4633 -NCIT:C139625 Stage IIIB Vulvar Cancer AJCC v8 10 4634 -NCIT:C139626 Stage IIIC Vulvar Cancer AJCC v8 10 4635 -NCIT:C139627 Stage IV Vulvar Cancer AJCC v8 9 4636 -NCIT:C139628 Stage IVA Vulvar Cancer AJCC v8 10 4637 -NCIT:C139630 Stage IVB Vulvar Cancer AJCC v8 10 4638 -NCIT:C156066 Metastatic Vulvar Carcinoma 8 4639 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 9 4640 -NCIT:C170786 Advanced Vulvar Carcinoma 9 4641 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 9 4642 -NCIT:C174198 Unresectable Vulvar Carcinoma 8 4643 -NCIT:C174199 Unresectable Vulvar Squamous Cell Carcinoma 9 4644 -NCIT:C174508 Refractory Vulvar Carcinoma 8 4645 -NCIT:C185304 Refractory Vulvar Squamous Cell Carcinoma 9 4646 -NCIT:C4052 Vulvar Squamous Cell Carcinoma 8 4647 -NCIT:C128167 Vulvar Keratoacanthoma 9 4648 -NCIT:C174199 Unresectable Vulvar Squamous Cell Carcinoma 9 4649 -NCIT:C174200 Recurrent Vulvar Squamous Cell Carcinoma 9 4650 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 9 4651 -NCIT:C181902 Vulvar Squamous Cell Carcinoma, Not Otherwise Specified 9 4652 -NCIT:C181903 Human Papillomavirus-Independent Vulvar Squamous Cell Carcinoma 9 4653 -NCIT:C185304 Refractory Vulvar Squamous Cell Carcinoma 9 4654 -NCIT:C27679 Human Papillomavirus-Related Vulvar Squamous Cell Carcinoma 9 4655 -NCIT:C40287 Vulvar Warty Carcinoma 10 4656 -NCIT:C40284 Vulvar Keratinizing Squamous Cell Carcinoma 9 4657 -NCIT:C40285 Vulvar Non-Keratinizing Squamous Cell Carcinoma 9 4658 -NCIT:C40286 Vulvar Basaloid Carcinoma 9 4659 -NCIT:C40289 Vulvar Squamous Cell Carcinoma with Tumor Giant Cells 9 4660 -NCIT:C40293 Bartholin Gland Squamous Cell Carcinoma 9 4661 -NCIT:C6383 Vulvar Verrucous Carcinoma 9 4662 -NCIT:C6380 Vulvar Adenocarcinoma 8 4663 -NCIT:C128162 Vulvar Adenocarcinoma of Mammary Gland Type 9 4664 -NCIT:C128164 Vulvar Adenocarcinoma of Sweat Gland Origin 9 4665 -NCIT:C4027 Vulvar Paget Disease 10 4666 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 10 4667 -NCIT:C40306 Vulvar Porocarcinoma 11 4668 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 10 4669 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 10 4670 -NCIT:C128166 Vulvar Adenocarcinoma, Intestinal-Type 9 4671 -NCIT:C40309 Vulvar Sebaceous Carcinoma 9 4672 -NCIT:C7719 Bartholin Gland Adenocarcinoma 9 4673 -NCIT:C6381 Vulvar Basal Cell Carcinoma 8 4674 -NCIT:C90345 Vulvar Cancer by AJCC v6 Stage 8 4675 -NCIT:C4522 Stage 0 Vulvar Cancer AJCC v6 9 4676 -NCIT:C7854 Stage I Vulvar Cancer AJCC v6 9 4677 -NCIT:C6328 Stage IA Vulvar Carcinoma AJCC v6 10 4678 -NCIT:C6329 Stage IB Vulvar Carcinoma AJCC v6 10 4679 -NCIT:C9051 Stage II Vulvar Cancer AJCC v6 9 4680 -NCIT:C9052 Stage III Vulvar Cancer AJCC v6 9 4681 -NCIT:C9053 Stage IV Vulvar Cancer AJCC v6 9 4682 -NCIT:C27247 Stage IVB Vulvar Cancer AJCC v6 and v7 10 4683 -NCIT:C6330 Stage IVA Vulvar Cancer AJCC v6 10 4684 -NCIT:C9054 Recurrent Vulvar Carcinoma 8 4685 -NCIT:C174200 Recurrent Vulvar Squamous Cell Carcinoma 9 4686 -NCIT:C9055 Bartholin Gland Carcinoma 8 4687 -NCIT:C40293 Bartholin Gland Squamous Cell Carcinoma 9 4688 -NCIT:C40295 Bartholin Gland Adenoid Cystic Carcinoma 9 4689 -NCIT:C40296 Bartholin Gland Adenosquamous Carcinoma 9 4690 -NCIT:C40297 Bartholin Gland Transitional Cell Carcinoma 9 4691 -NCIT:C40298 Bartholin Gland Small Cell Neuroendocrine Carcinoma 9 4692 -NCIT:C7719 Bartholin Gland Adenocarcinoma 9 4693 -NCIT:C91203 Vulvar Cancer by AJCC v7 Stage 8 4694 -NCIT:C89445 Stage 0 Vulvar Cancer AJCC v7 9 4695 -NCIT:C89447 Stage I Vulvar Cancer AJCC v7 9 4696 -NCIT:C89448 Stage IA Vulvar Cancer AJCC v7 10 4697 -NCIT:C89449 Stage IB Vulvar Cancer AJCC v7 10 4698 -NCIT:C89451 Stage II Vulvar Cancer AJCC v7 9 4699 -NCIT:C89452 Stage III Vulvar Cancer AJCC v7 9 4700 -NCIT:C87003 Stage IIIA Vulvar Cancer AJCC v7 10 4701 -NCIT:C87004 Stage IIIB Vulvar Cancer AJCC v7 10 4702 -NCIT:C87005 Stage IIIC Vulvar Cancer AJCC v7 10 4703 -NCIT:C89453 Stage IV Vulvar Cancer AJCC v7 9 4704 -NCIT:C27247 Stage IVB Vulvar Cancer AJCC v6 and v7 10 4705 -NCIT:C89454 Stage IVA Vulvar Cancer AJCC v7 10 4706 -NCIT:C9362 Clitoral Carcinoma 8 4707 -NCIT:C9363 Labia Majora Carcinoma 8 4708 -NCIT:C9364 Labia Minora Carcinoma 8 4709 -NCIT:C4908 Ovarian Carcinoma 7 4710 -NCIT:C128081 Ovarian Cancer by FIGO Stage 8 4711 -NCIT:C128082 FIGO Stage IC1 Ovarian Cancer 9 4712 -NCIT:C128083 FIGO Stage IC2 Ovarian Cancer 9 4713 -NCIT:C128084 FIGO Stage IC3 Ovarian Cancer 9 4714 -NCIT:C128085 FIGO Stage II Ovarian Cancer 9 4715 -NCIT:C5223 Stage IIA Ovarian Cancer AJCC V6 and v7 10 4716 -NCIT:C5224 Stage IIB Ovarian Cancer AJCC v6 and v7 10 4717 -NCIT:C128086 FIGO Stage III Ovarian Cancer 9 4718 -NCIT:C128087 FIGO Stage IIIA Ovarian Cancer 10 4719 -NCIT:C128088 FIGO Stage IIIA1 Ovarian Cancer 11 4720 -NCIT:C128089 FIGO Stage IIIA1(i) Ovarian Cancer 12 4721 -NCIT:C128090 FIGO Stage IIIA1(ii) Ovarian Cancer 12 4722 -NCIT:C128091 FIGO Stage IIIA2 Ovarian Cancer 11 4723 -NCIT:C128092 FIGO Stage IIIB Ovarian Cancer 10 4724 -NCIT:C128093 FIGO Stage IIIC Ovarian Cancer 10 4725 -NCIT:C128094 FIGO Stage IVA Ovarian Cancer 9 4726 -NCIT:C128095 FIGO Stage IVB Ovarian Cancer 9 4727 -NCIT:C7829 Stage I Ovarian Cancer AJCC v6 and v7 9 4728 -NCIT:C5220 Stage IA Ovarian Cancer AJCC v6 and v7 10 4729 -NCIT:C5221 Stage IB Ovarian Cancer AJCC v6 and v7 10 4730 -NCIT:C5222 Stage IC Ovarian Cancer AJCC v6 and v7 10 4731 -NCIT:C7832 Stage IV Ovarian Cancer AJCC v6 and v7 9 4732 -NCIT:C128106 Ovarian Cancer by AJCC v6 and v7 Stage 8 4733 -NCIT:C7829 Stage I Ovarian Cancer AJCC v6 and v7 9 4734 -NCIT:C5220 Stage IA Ovarian Cancer AJCC v6 and v7 10 4735 -NCIT:C5221 Stage IB Ovarian Cancer AJCC v6 and v7 10 4736 -NCIT:C5222 Stage IC Ovarian Cancer AJCC v6 and v7 10 4737 -NCIT:C7830 Stage II Ovarian Cancer AJCC v6 and v7 9 4738 -NCIT:C5223 Stage IIA Ovarian Cancer AJCC V6 and v7 10 4739 -NCIT:C5224 Stage IIB Ovarian Cancer AJCC v6 and v7 10 4740 -NCIT:C5225 Stage IIC Ovarian Cancer AJCC v6 and v7 10 4741 -NCIT:C7831 Stage III Ovarian Cancer AJCC v6 and v7 9 4742 -NCIT:C6258 Stage IIIA Ovarian Cancer AJCC v6 and v7 10 4743 -NCIT:C6259 Stage IIIB Ovarian Cancer AJCC v6 and v7 10 4744 -NCIT:C6260 Stage IIIC Ovarian Cancer AJCC v6 and v7 10 4745 -NCIT:C7832 Stage IV Ovarian Cancer AJCC v6 and v7 9 4746 -NCIT:C139963 Ovarian Cancer by AJCC v8 Stage 8 4747 -NCIT:C139964 Stage I Ovarian Cancer AJCC v8 9 4748 -NCIT:C139965 Stage IA Ovarian Cancer AJCC v8 10 4749 -NCIT:C139966 Stage IB Ovarian Cancer AJCC v8 10 4750 -NCIT:C139967 Stage IC Ovarian Cancer AJCC v8 10 4751 -NCIT:C139968 Stage II Ovarian Cancer AJCC v8 9 4752 -NCIT:C139969 Stage IIA Ovarian Cancer AJCC v8 10 4753 -NCIT:C139970 Stage IIB Ovarian Cancer AJCC v8 10 4754 -NCIT:C139971 Stage III Ovarian Cancer AJCC v8 9 4755 -NCIT:C139972 Stage IIIA Ovarian Cancer AJCC v8 10 4756 -NCIT:C139973 Stage IIIA1 Ovarian Cancer AJCC v8 11 4757 -NCIT:C139974 Stage IIIA2 Ovarian Cancer AJCC v8 11 4758 -NCIT:C139975 Stage IIIB Ovarian Cancer AJCC v8 10 4759 -NCIT:C139976 Stage IIIC Ovarian Cancer AJCC v8 10 4760 -NCIT:C139977 Stage IV Ovarian Cancer AJCC v8 9 4761 -NCIT:C139978 Stage IVA Ovarian Cancer AJCC v8 10 4762 -NCIT:C139979 Stage IVB Ovarian Cancer AJCC v8 10 4763 -NCIT:C150091 Refractory Ovarian Carcinoma 8 4764 -NCIT:C147561 Platinum-Resistant Ovarian Carcinoma 9 4765 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 10 4766 -NCIT:C179459 Unresectable Platinum-Resistant Ovarian Carcinoma 10 4767 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 10 4768 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 11 4769 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 11 4770 -NCIT:C170968 Refractory Ovarian Adenocarcinoma 9 4771 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 10 4772 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 10 4773 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 11 4774 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 11 4775 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 10 4776 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 10 4777 -NCIT:C178671 Refractory Ovarian Seromucinous Carcinoma 9 4778 -NCIT:C178682 Refractory Ovarian Transitional Cell Carcinoma 9 4779 -NCIT:C178683 Refractory Ovarian Undifferentiated Carcinoma 9 4780 -NCIT:C178700 Platinum-Refractory Ovarian Carcinoma 9 4781 -NCIT:C179207 Refractory Ovarian Squamous Cell Carcinoma 9 4782 -NCIT:C183126 Refractory Malignant Ovarian Brenner Tumor 9 4783 -NCIT:C156064 Metastatic Ovarian Carcinoma 8 4784 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 9 4785 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 10 4786 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 11 4787 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 11 4788 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 10 4789 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 11 4790 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 11 4791 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 10 4792 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 11 4793 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 11 4794 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 10 4795 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 11 4796 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 11 4797 -NCIT:C165458 Advanced Ovarian Carcinoma 9 4798 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 10 4799 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 11 4800 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 11 4801 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 10 4802 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 10 4803 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 10 4804 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 10 4805 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 9 4806 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 10 4807 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 11 4808 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 11 4809 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 10 4810 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 9 4811 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 10 4812 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 9 4813 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 10 4814 -NCIT:C172234 Metastatic Ovarian Undifferentiated Carcinoma 9 4815 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 9 4816 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 10 4817 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 10 4818 -NCIT:C180333 Metastatic Microsatellite Stable Ovarian Carcinoma 9 4819 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 10 4820 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 9 4821 -NCIT:C27391 Metastatic Ovarian Small Cell Carcinoma, Hypercalcemic Type 9 4822 -NCIT:C159902 Platinum-Sensitive Ovarian Carcinoma 8 4823 -NCIT:C188391 Recurrent Platinum-Sensitive Ovarian Carcinoma 9 4824 -NCIT:C167073 Unresectable Ovarian Carcinoma 8 4825 -NCIT:C160781 Unresectable Ovarian Serous Adenocarcinoma 9 4826 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 10 4827 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 11 4828 -NCIT:C172235 Unresectable Ovarian Undifferentiated Carcinoma 9 4829 -NCIT:C179459 Unresectable Platinum-Resistant Ovarian Carcinoma 9 4830 -NCIT:C183245 Unresectable Ovarian Mucinous Adenocarcinoma 9 4831 -NCIT:C186273 Unresectable Ovarian Endometrioid Adenocarcinoma 9 4832 -NCIT:C171032 Ovarian Neuroendocrine Carcinoma 8 4833 -NCIT:C40440 Ovarian Small Cell Carcinoma, Pulmonary-Type 9 4834 -NCIT:C5238 Ovarian Large Cell Neuroendocrine Carcinoma 9 4835 -NCIT:C179334 Ovarian Dedifferentiated Carcinoma 8 4836 -NCIT:C180332 Microsatellite Stable Ovarian Carcinoma 8 4837 -NCIT:C180333 Metastatic Microsatellite Stable Ovarian Carcinoma 9 4838 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 10 4839 -NCIT:C27390 Ovarian Small Cell Carcinoma 8 4840 -NCIT:C40439 Ovarian Small Cell Carcinoma, Hypercalcemic Type 9 4841 -NCIT:C189334 Childhood Ovarian Small Cell Carcinoma, Hypercalcemic Type 10 4842 -NCIT:C27391 Metastatic Ovarian Small Cell Carcinoma, Hypercalcemic Type 10 4843 -NCIT:C40440 Ovarian Small Cell Carcinoma, Pulmonary-Type 9 4844 -NCIT:C36102 Hereditary Ovarian Carcinoma 8 4845 -NCIT:C148024 BRCA-Associated Ovarian Carcinoma 9 4846 -NCIT:C148025 Recurrent BRCA- Associated Ovarian Carcinoma 10 4847 -NCIT:C40090 Ovarian Seromucinous Carcinoma 8 4848 -NCIT:C178669 Recurrent Ovarian Seromucinous Carcinoma 9 4849 -NCIT:C178671 Refractory Ovarian Seromucinous Carcinoma 9 4850 -NCIT:C40093 Ovarian Squamous Cell Carcinoma 8 4851 -NCIT:C179207 Refractory Ovarian Squamous Cell Carcinoma 9 4852 -NCIT:C4270 Malignant Ovarian Brenner Tumor 8 4853 -NCIT:C153818 Recurrent Malignant Ovarian Brenner Tumor 9 4854 -NCIT:C183126 Refractory Malignant Ovarian Brenner Tumor 9 4855 -NCIT:C4509 Ovarian Undifferentiated Carcinoma 8 4856 -NCIT:C170754 Recurrent Ovarian Undifferentiated Carcinoma 9 4857 -NCIT:C172234 Metastatic Ovarian Undifferentiated Carcinoma 9 4858 -NCIT:C172235 Unresectable Ovarian Undifferentiated Carcinoma 9 4859 -NCIT:C178683 Refractory Ovarian Undifferentiated Carcinoma 9 4860 -NCIT:C5240 Ovarian Transitional Cell Carcinoma 8 4861 -NCIT:C153819 Recurrent Ovarian Transitional Cell Carcinoma 9 4862 -NCIT:C178682 Refractory Ovarian Transitional Cell Carcinoma 9 4863 -NCIT:C7700 Ovarian Adenocarcinoma 8 4864 -NCIT:C153614 Recurrent Ovarian Adenocarcinoma 9 4865 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 10 4866 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 10 4867 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 11 4868 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 11 4869 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 11 4870 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 10 4871 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 10 4872 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 11 4873 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 10 4874 -NCIT:C170968 Refractory Ovarian Adenocarcinoma 9 4875 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 10 4876 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 10 4877 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 11 4878 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 11 4879 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 10 4880 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 10 4881 -NCIT:C179208 Ovarian Signet Ring Cell Carcinoma 9 4882 -NCIT:C179321 Ovarian Mesonephric-Like Adenocarcinoma 9 4883 -NCIT:C179339 Ovarian Mixed Cell Adenocarcinoma 9 4884 -NCIT:C40078 Ovarian Clear Cell Adenocarcinoma 9 4885 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 10 4886 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 10 4887 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 11 4888 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 10 4889 -NCIT:C7980 Ovarian Clear Cell Cystadenocarcinoma 10 4890 -NCIT:C5228 Ovarian Cystadenocarcinoma 9 4891 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 10 4892 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 11 4893 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 10 4894 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 10 4895 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 11 4896 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 12 4897 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 12 4898 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 11 4899 -NCIT:C7980 Ovarian Clear Cell Cystadenocarcinoma 10 4900 -NCIT:C5243 Ovarian Mucinous Adenocarcinoma 9 4901 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 10 4902 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 10 4903 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 10 4904 -NCIT:C183245 Unresectable Ovarian Mucinous Adenocarcinoma 10 4905 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 10 4906 -NCIT:C7550 Ovarian Serous Adenocarcinoma 9 4907 -NCIT:C105555 Ovarian High Grade Serous Adenocarcinoma 10 4908 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 11 4909 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 11 4910 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 11 4911 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 4912 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 11 4913 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 4914 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 12 4915 -NCIT:C105556 Ovarian Low Grade Serous Adenocarcinoma 10 4916 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 11 4917 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 11 4918 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 10 4919 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 11 4920 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 11 4921 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 11 4922 -NCIT:C160781 Unresectable Ovarian Serous Adenocarcinoma 10 4923 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 11 4924 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 4925 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 10 4926 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 11 4927 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 12 4928 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 12 4929 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 11 4930 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 4931 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 12 4932 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 11 4933 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 12 4934 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 12 4935 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 11 4936 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 12 4937 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 4938 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 10 4939 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 11 4940 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 11 4941 -NCIT:C6256 Ovarian Serous Surface Papillary Adenocarcinoma 10 4942 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 10 4943 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 11 4944 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 12 4945 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 12 4946 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 11 4947 -NCIT:C7979 Ovarian Endometrioid Adenocarcinoma 9 4948 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 10 4949 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 10 4950 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 10 4951 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 11 4952 -NCIT:C186273 Unresectable Ovarian Endometrioid Adenocarcinoma 10 4953 -NCIT:C40061 Ovarian Endometrioid Adenocarcinoma with Squamous Differentiation 10 4954 -NCIT:C7833 Recurrent Ovarian Carcinoma 8 4955 -NCIT:C148025 Recurrent BRCA- Associated Ovarian Carcinoma 9 4956 -NCIT:C153614 Recurrent Ovarian Adenocarcinoma 9 4957 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 10 4958 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 10 4959 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 11 4960 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 11 4961 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 11 4962 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 10 4963 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 10 4964 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 11 4965 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 10 4966 -NCIT:C153818 Recurrent Malignant Ovarian Brenner Tumor 9 4967 -NCIT:C153819 Recurrent Ovarian Transitional Cell Carcinoma 9 4968 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 9 4969 -NCIT:C170754 Recurrent Ovarian Undifferentiated Carcinoma 9 4970 -NCIT:C178669 Recurrent Ovarian Seromucinous Carcinoma 9 4971 -NCIT:C188391 Recurrent Platinum-Sensitive Ovarian Carcinoma 9 4972 -NCIT:C190201 Locally Recurrent Ovarian Carcinoma 9 4973 -NCIT:C7558 Endometrial Carcinoma 7 4974 -NCIT:C114656 Endometrial Adenosquamous Carcinoma 8 4975 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 9 4976 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 9 4977 -NCIT:C126769 Endometrial Dedifferentiated Carcinoma 8 4978 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 9 4979 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 9 4980 -NCIT:C150093 Refractory Endometrial Carcinoma 8 4981 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 9 4982 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 9 4983 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 9 4984 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 9 4985 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 10 4986 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 10 4987 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 10 4988 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 10 4989 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 10 4990 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 9 4991 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 9 4992 -NCIT:C150094 Recurrent Endometrial Carcinoma 8 4993 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 9 4994 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 9 4995 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 10 4996 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 10 4997 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 10 4998 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 10 4999 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 10 5000 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 9 5001 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 9 5002 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 9 5003 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 9 5004 -NCIT:C190200 Locally Recurrent Endometrial Carcinoma 9 5005 -NCIT:C156068 Metastatic Endometrial Carcinoma 8 5006 -NCIT:C159676 Advanced Endometrial Carcinoma 9 5007 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 10 5008 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 11 5009 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 11 5010 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 10 5011 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 9 5012 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 10 5013 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 11 5014 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 10 5015 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 9 5016 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 9 5017 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 10 5018 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 9 5019 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 10 5020 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 11 5021 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 10 5022 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 11 5023 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 11 5024 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 10 5025 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 11 5026 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 11 5027 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 10 5028 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 11 5029 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 10 5030 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 10 5031 -NCIT:C171033 Endometrial Neuroendocrine Carcinoma 8 5032 -NCIT:C126772 Endometrial Large Cell Neuroendocrine Carcinoma 9 5033 -NCIT:C40155 Endometrial Small Cell Neuroendocrine Carcinoma 9 5034 -NCIT:C171610 Unresectable Endometrial Carcinoma 8 5035 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 9 5036 -NCIT:C180335 Microsatellite Stable Endometrial Carcinoma 8 5037 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 9 5038 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 10 5039 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 9 5040 -NCIT:C190680 High Grade Endometrial Carcinoma 8 5041 -NCIT:C27838 Endometrial Serous Adenocarcinoma 9 5042 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 10 5043 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 10 5044 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 10 5045 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 11 5046 -NCIT:C187374 Platinum-Sensitive Endometrial Serous Adenocarcinoma 10 5047 -NCIT:C40148 High Grade Endometrial Endometrioid Adenocarcinoma 9 5048 -NCIT:C40156 Endometrial Undifferentiated Carcinoma 9 5049 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 10 5050 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 10 5051 -NCIT:C8028 Endometrial Clear Cell Adenocarcinoma 9 5052 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 10 5053 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 10 5054 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 10 5055 -NCIT:C40154 Endometrial Transitional Cell Carcinoma 8 5056 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 9 5057 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 9 5058 -NCIT:C7359 Endometrial Adenocarcinoma 8 5059 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 9 5060 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 10 5061 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 10 5062 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 10 5063 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 10 5064 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 10 5065 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 9 5066 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 10 5067 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 10 5068 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 10 5069 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 10 5070 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 10 5071 -NCIT:C179322 Endometrial Mesonephric-Like Adenocarcinoma 9 5072 -NCIT:C180536 Endometrial Mucinous Adenocarcinoma, Intestinal-Type 9 5073 -NCIT:C180537 Endometrial Mucinous Adenocarcinoma, Gastric-Type 9 5074 -NCIT:C39749 Type II Endometrial Adenocarcinoma 9 5075 -NCIT:C27838 Endometrial Serous Adenocarcinoma 10 5076 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 11 5077 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 11 5078 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 11 5079 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 12 5080 -NCIT:C187374 Platinum-Sensitive Endometrial Serous Adenocarcinoma 11 5081 -NCIT:C40152 Serous Endometrial Intraepithelial Carcinoma 10 5082 -NCIT:C8028 Endometrial Clear Cell Adenocarcinoma 10 5083 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 11 5084 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 11 5085 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 11 5086 -NCIT:C40145 Type I Endometrial Adenocarcinoma 9 5087 -NCIT:C40144 Endometrial Mucinous Adenocarcinoma 10 5088 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 11 5089 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 11 5090 -NCIT:C40149 FIGO Grade 1 Endometrial Mucinous Adenocarcinoma 11 5091 -NCIT:C40150 FIGO Grade 2 Endometrial Mucinous Adenocarcinoma 11 5092 -NCIT:C40151 FIGO Grade 3 Endometrial Mucinous Adenocarcinoma 11 5093 -NCIT:C6287 Endometrial Endometrioid Adenocarcinoma 10 5094 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 11 5095 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 11 5096 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 11 5097 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 12 5098 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 12 5099 -NCIT:C180510 Low Grade Endometrial Endometrioid Adenocarcinoma 11 5100 -NCIT:C40146 FIGO Grade 1 Endometrial Endometrioid Adenocarcinoma 12 5101 -NCIT:C40147 FIGO Grade 2 Endometrial Endometrioid Adenocarcinoma 12 5102 -NCIT:C180512 POLE-Ultramutated Endometrial Endometrioid Adenocarcinoma 11 5103 -NCIT:C180514 Mismatch Repair-Deficient Endometrial Endometrioid Adenocarcinoma 11 5104 -NCIT:C180515 p53-Mutant Endometrial Endometrioid Adenocarcinoma 11 5105 -NCIT:C180516 No Specific Molecular Profile Endometrial Endometrioid Adenocarcinoma 11 5106 -NCIT:C27839 Endometrial Endometrioid Adenocarcinoma, Secretory Variant 11 5107 -NCIT:C27843 Endometrial Endometrioid Adenocarcinoma with Clear Cell Change 11 5108 -NCIT:C27844 Endometrial Endometrioid Adenocarcinoma with a Poorly Differentiated Carcinomatous Component 11 5109 -NCIT:C27845 Endometrial Endometrioid Adenocarcinoma with an Undifferentiated Carcinomatous Component 11 5110 -NCIT:C27846 Villoglandular Endometrial Endometrioid Adenocarcinoma 11 5111 -NCIT:C27848 Endometrial Endometrioid Adenocarcinoma, Ciliated Variant 11 5112 -NCIT:C27849 Oxyphilic Endometrial Endometrioid Adenocarcinoma 11 5113 -NCIT:C27850 Endometrial Endometrioid Adenocarcinoma with Spindled Epithelial Cells 11 5114 -NCIT:C40148 High Grade Endometrial Endometrioid Adenocarcinoma 11 5115 -NCIT:C6290 Endometrial Endometrioid Adenocarcinoma, Variant with Squamous Differentiation 11 5116 -NCIT:C40153 Endometrial Mixed Cell Adenocarcinoma 9 5117 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 10 5118 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 10 5119 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 10 5120 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 9 5121 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 10 5122 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 11 5123 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 10 5124 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 11 5125 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 11 5126 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 10 5127 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 11 5128 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 11 5129 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 10 5130 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 11 5131 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 10 5132 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 10 5133 -NCIT:C8719 Endometrial Squamous Cell Carcinoma 8 5134 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 9 5135 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 9 5136 -NCIT:C9039 Cervical Carcinoma 7 5137 -NCIT:C128045 Cervical Neuroendocrine Carcinoma 8 5138 -NCIT:C40214 Cervical Large Cell Neuroendocrine Carcinoma 9 5139 -NCIT:C7982 Cervical Small Cell Neuroendocrine Carcinoma 9 5140 -NCIT:C139733 Cervical Cancer by AJCC v8 Stage 8 5141 -NCIT:C139734 Stage I Cervical Cancer AJCC v8 9 5142 -NCIT:C139735 Stage IA Cervical Cancer AJCC v8 10 5143 -NCIT:C139736 Stage IA1 Cervical Cancer AJCC v8 11 5144 -NCIT:C139737 Stage IA2 Cervical Cancer AJCC v8 11 5145 -NCIT:C139738 Stage IB Cervical Cancer AJCC v8 10 5146 -NCIT:C139739 Stage IB1 Cervical Cancer AJCC v8 11 5147 -NCIT:C139740 Stage IB2 Cervical Cancer AJCC v8 11 5148 -NCIT:C139743 Stage II Cervical Cancer AJCC v8 9 5149 -NCIT:C139744 Stage IIA Cervical Cancer AJCC v8 10 5150 -NCIT:C139745 Stage IIA1 Cervical Cancer AJCC v8 11 5151 -NCIT:C139746 Stage IIA2 Cervical Cancer AJCC v8 11 5152 -NCIT:C139748 Stage IIB Cervical Cancer AJCC v8 10 5153 -NCIT:C139749 Stage III Cervical Cancer AJCC v8 9 5154 -NCIT:C139750 Stage IIIA Cervical Cancer AJCC v8 10 5155 -NCIT:C139752 Stage IIIB Cervical Cancer AJCC v8 10 5156 -NCIT:C139753 Stage IV Cervical Cancer AJCC v8 9 5157 -NCIT:C139754 Stage IVA Cervical Cancer AJCC v8 10 5158 -NCIT:C139755 Stage IVB Cervical Cancer AJCC v8 10 5159 -NCIT:C153387 Metastatic Cervical Carcinoma 8 5160 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 9 5161 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 10 5162 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 10 5163 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 9 5164 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 10 5165 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 11 5166 -NCIT:C156304 Advanced Cervical Adenocarcinoma 10 5167 -NCIT:C153390 Metastatic Cervical Adenosquamous Carcinoma 9 5168 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 10 5169 -NCIT:C156294 Advanced Cervical Carcinoma 9 5170 -NCIT:C156304 Advanced Cervical Adenocarcinoma 10 5171 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 10 5172 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 10 5173 -NCIT:C156295 Locally Advanced Cervical Carcinoma 9 5174 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 10 5175 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 11 5176 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 10 5177 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 11 5178 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 10 5179 -NCIT:C162225 Cervical Cancer by FIGO Stage 2018 8 5180 -NCIT:C162226 Stage I Cervical Cancer FIGO 2018 9 5181 -NCIT:C162227 Stage IA Cervical Cancer FIGO 2018 10 5182 -NCIT:C162228 Stage IA1 Cervical Cancer FIGO 2018 11 5183 -NCIT:C162229 Stage IA2 Cervical Cancer FIGO 2018 11 5184 -NCIT:C162230 Stage IB Cervical Cancer FIGO 2018 10 5185 -NCIT:C162231 Stage IB1 Cervical Cancer FIGO 2018 11 5186 -NCIT:C162232 Stage IB2 Cervical Cancer FIGO 2018 11 5187 -NCIT:C162233 Stage IB3 Cervical Cancer FIGO 2018 11 5188 -NCIT:C162234 Stage II Cervical Cancer FIGO 2018 9 5189 -NCIT:C162235 Stage IIA Cervical Cancer FIGO 2018 10 5190 -NCIT:C162236 Stage IIA1 Cervical Cancer FIGO 2018 11 5191 -NCIT:C162237 Stage IIA2 Cervical Cancer FIGO 2018 11 5192 -NCIT:C162238 Stage IIB Cervical Cancer FIGO 2018 10 5193 -NCIT:C162239 Stage III Cervical Cancer FIGO 2018 9 5194 -NCIT:C162240 Stage IIIA Cervical Cancer FIGO 2018 10 5195 -NCIT:C162241 Stage IIIB Cervical Cancer FIGO 2018 10 5196 -NCIT:C162242 Stage IIIC Cervical Cancer FIGO 2018 10 5197 -NCIT:C162243 Stage IIIC1 Cervical Cancer FIGO 2018 11 5198 -NCIT:C162244 Stage IIIC2 Cervical Cancer FIGO 2018 11 5199 -NCIT:C162245 Stage IV Cervical Cancer FIGO 2018 9 5200 -NCIT:C162246 Stage IVA Cervical Cancer FIGO 2018 10 5201 -NCIT:C162247 Stage IVB Cervical Cancer FIGO 2018 10 5202 -NCIT:C170513 Refractory Cervical Carcinoma 8 5203 -NCIT:C181034 Refractory Cervical Squamous Cell Carcinoma 9 5204 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 10 5205 -NCIT:C181036 Refractory Cervical Adenocarcinoma 9 5206 -NCIT:C174024 Unresectable Cervical Carcinoma 8 5207 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 9 5208 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 5209 -NCIT:C174025 Unresectable Cervical Squamous Cell Carcinoma 9 5210 -NCIT:C174027 Unresectable Cervical Adenosquamous Carcinoma 9 5211 -NCIT:C174029 Unresectable Cervical Adenocarcinoma 9 5212 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 5213 -NCIT:C180878 Cervical Mucoepidermoid Carcinoma 8 5214 -NCIT:C181562 Cervical Cancer by AJCC v9 Stage 8 5215 -NCIT:C181564 Stage I Cervical Cancer AJCC v9 9 5216 -NCIT:C181565 Stage IA Cervical Cancer AJCC v9 10 5217 -NCIT:C181567 Stage IA1 Cervical Cancer AJCC v9 11 5218 -NCIT:C181568 Stage IA2 Cervical Cancer AJCC v9 11 5219 -NCIT:C181570 Stage IB Cervical Cancer AJCC v9 10 5220 -NCIT:C181571 Stage IB1 Cervical Cancer AJCC v9 11 5221 -NCIT:C181576 Stage IB2 Cervical Cancer AJCC v9 11 5222 -NCIT:C181579 Stage IB3 Cervical Cancer AJCC v9 11 5223 -NCIT:C181583 Stage II Cervical Cancer AJCC v9 9 5224 -NCIT:C181584 Stage IIA Cervical Cancer AJCC v9 10 5225 -NCIT:C181586 Stage IIA1 Cervical Cancer AJCC v9 11 5226 -NCIT:C181588 Stage IIA2 Cervical Cancer AJCC v9 11 5227 -NCIT:C181591 Stage IIB Cervical Cancer AJCC v9 10 5228 -NCIT:C181592 Stage III Cervical Cancer AJCC v9 9 5229 -NCIT:C181594 Stage IIIA Cervical Cancer AJCC v9 10 5230 -NCIT:C181595 Stage IIIB Cervical Cancer AJCC v9 10 5231 -NCIT:C181596 Stage IIIC Cervical Cancer AJCC v9 10 5232 -NCIT:C181597 Stage IIIC1 Cervical Cancer AJCC v9 11 5233 -NCIT:C181598 Stage IIIC2 Cervical Cancer AJCC v9 11 5234 -NCIT:C181599 Stage IV Cervical Cancer AJCC v9 9 5235 -NCIT:C181601 Stage IVA Cervical Cancer AJCC v9 10 5236 -NCIT:C181603 Stage IVB Cervical Cancer AJCC v9 10 5237 -NCIT:C186619 Cervical Cancer by FIGO Stage 2009 8 5238 -NCIT:C186620 Stage I Cervical Cancer FIGO 2009 9 5239 -NCIT:C186621 Stage IA Cervical Cancer FIGO 2009 10 5240 -NCIT:C186622 Stage IA1 Cervical Cancer FIGO 2009 11 5241 -NCIT:C186623 Stage IA2 Cervical Cancer FIGO 2009 11 5242 -NCIT:C186624 Stage IB Cervical Cancer FIGO 2009 10 5243 -NCIT:C186625 Stage IB1 Cervical Cancer FIGO 2009 11 5244 -NCIT:C186626 Stage IB2 Cervical Cancer FIGO 2009 11 5245 -NCIT:C186627 Stage II Cervical Cancer FIGO 2009 9 5246 -NCIT:C186628 Stage IIA Cervical Cancer FIGO 2009 10 5247 -NCIT:C186629 Stage IIA1 Cervical Cancer FIGO 2009 11 5248 -NCIT:C186630 Stage IIA2 Cervical Cancer FIGO 2009 11 5249 -NCIT:C186631 Stage IIB Cervical Cancer FIGO 2009 10 5250 -NCIT:C186632 Stage III Cervical Cancer FIGO 2009 9 5251 -NCIT:C186633 Stage IIIA Cervical Cancer FIGO 2009 10 5252 -NCIT:C186634 Stage IIIB Cervical Cancer FIGO 2009 10 5253 -NCIT:C186635 Stage IV Cervical Cancer FIGO 2009 9 5254 -NCIT:C186636 Stage IVA Cervical Cancer FIGO 2009 10 5255 -NCIT:C186637 Stage IVB Cervical Cancer FIGO 2009 10 5256 -NCIT:C27675 Human Papillomavirus-Related Cervical Carcinoma 8 5257 -NCIT:C27676 Human Papillomavirus-Related Cervical Squamous Cell Carcinoma 9 5258 -NCIT:C40192 Cervical Papillary Squamous Cell Carcinoma 10 5259 -NCIT:C40191 Cervical Warty Carcinoma 11 5260 -NCIT:C40194 Cervical Squamotransitional Carcinoma 11 5261 -NCIT:C27677 Human Papillomavirus-Related Cervical Adenocarcinoma 9 5262 -NCIT:C127907 Endocervical Adenocarcinoma, Usual-Type 10 5263 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 11 5264 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 11 5265 -NCIT:C40208 Cervical Villoglandular Adenocarcinoma 11 5266 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 10 5267 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 10 5268 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 10 5269 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 10 5270 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 10 5271 -NCIT:C40213 Cervical Adenoid Basal Carcinoma 8 5272 -NCIT:C4028 Cervical Squamous Cell Carcinoma 8 5273 -NCIT:C136649 Recurrent Cervical Squamous Cell Carcinoma 9 5274 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 9 5275 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 10 5276 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 10 5277 -NCIT:C174025 Unresectable Cervical Squamous Cell Carcinoma 9 5278 -NCIT:C180839 Cervical Squamous Cell Carcinoma, Not Otherwise Specified 9 5279 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 10 5280 -NCIT:C180841 Human Papillomavirus-Independent Cervical Squamous Cell Carcinoma 9 5281 -NCIT:C181034 Refractory Cervical Squamous Cell Carcinoma 9 5282 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 10 5283 -NCIT:C27676 Human Papillomavirus-Related Cervical Squamous Cell Carcinoma 9 5284 -NCIT:C40192 Cervical Papillary Squamous Cell Carcinoma 10 5285 -NCIT:C40191 Cervical Warty Carcinoma 11 5286 -NCIT:C40194 Cervical Squamotransitional Carcinoma 11 5287 -NCIT:C36094 Early Invasive Cervical Squamous Cell Carcinoma 9 5288 -NCIT:C40187 Cervical Keratinizing Squamous Cell Carcinoma 9 5289 -NCIT:C40188 Cervical Non-Keratinizing Squamous Cell Carcinoma 9 5290 -NCIT:C40189 Cervical Basaloid Carcinoma 9 5291 -NCIT:C40190 Cervical Verrucous Carcinoma 9 5292 -NCIT:C40193 Cervical Lymphoepithelioma-Like Carcinoma 9 5293 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 9 5294 -NCIT:C4029 Cervical Adenocarcinoma 8 5295 -NCIT:C127915 Cervical Adenocarcinoma Admixed with Neuroendocrine Carcinoma 9 5296 -NCIT:C136651 Recurrent Cervical Adenocarcinoma 9 5297 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 10 5298 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 9 5299 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 10 5300 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 11 5301 -NCIT:C156304 Advanced Cervical Adenocarcinoma 10 5302 -NCIT:C174029 Unresectable Cervical Adenocarcinoma 9 5303 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 5304 -NCIT:C180848 Human Papillomavirus-Independent Cervical Adenocarcinoma 9 5305 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 10 5306 -NCIT:C40201 Cervical Serous Adenocarcinoma 10 5307 -NCIT:C40206 Human Papillomavirus-Independent Cervical Adenocarcinoma, Gastric-Type 10 5308 -NCIT:C40254 Cervical Mesonephric Adenocarcinoma 10 5309 -NCIT:C6343 Cervical Endometrioid Adenocarcinoma 10 5310 -NCIT:C6344 Human Papillomavirus-Independent Cervical Adenocarcinoma, Clear Cell-Type 10 5311 -NCIT:C180870 Cervical Adenocarcinoma, Not Otherwise Specified 9 5312 -NCIT:C181036 Refractory Cervical Adenocarcinoma 9 5313 -NCIT:C27677 Human Papillomavirus-Related Cervical Adenocarcinoma 9 5314 -NCIT:C127907 Endocervical Adenocarcinoma, Usual-Type 10 5315 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 11 5316 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 11 5317 -NCIT:C40208 Cervical Villoglandular Adenocarcinoma 11 5318 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 10 5319 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 10 5320 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 10 5321 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 10 5322 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 10 5323 -NCIT:C36095 Cervical Mucinous Adenocarcinoma 9 5324 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 10 5325 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 10 5326 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 10 5327 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 10 5328 -NCIT:C40206 Human Papillomavirus-Independent Cervical Adenocarcinoma, Gastric-Type 10 5329 -NCIT:C36096 Early Invasive Cervical Adenocarcinoma 9 5330 -NCIT:C4520 Cervical Adenocarcinoma In Situ 9 5331 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 10 5332 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 10 5333 -NCIT:C4519 Cervical Adenosquamous Carcinoma 8 5334 -NCIT:C136650 Recurrent Cervical Adenosquamous Carcinoma 9 5335 -NCIT:C153390 Metastatic Cervical Adenosquamous Carcinoma 9 5336 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 10 5337 -NCIT:C174027 Unresectable Cervical Adenosquamous Carcinoma 9 5338 -NCIT:C40212 Cervical Poorly Differentiated Adenosquamous Carcinoma 9 5339 -NCIT:C6345 Cervical Undifferentiated Carcinoma 8 5340 -NCIT:C6346 Cervical Adenoid Cystic Carcinoma 8 5341 -NCIT:C7432 AIDS-Related Cervical Carcinoma 8 5342 -NCIT:C7453 Exocervical Carcinoma 8 5343 -NCIT:C7804 Recurrent Cervical Carcinoma 8 5344 -NCIT:C136649 Recurrent Cervical Squamous Cell Carcinoma 9 5345 -NCIT:C136650 Recurrent Cervical Adenosquamous Carcinoma 9 5346 -NCIT:C136651 Recurrent Cervical Adenocarcinoma 9 5347 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 10 5348 -NCIT:C8577 Invasive Cervical Carcinoma 8 5349 -NCIT:C90493 Cervical Cancer by AJCC v6 Stage 8 5350 -NCIT:C4000 Stage 0 Cervical Cancer AJCC v6 9 5351 -NCIT:C7803 Stage II Cervical Cancer AJCC v6 9 5352 -NCIT:C6319 Stage IIA Cervical Cancer AJCC v6 10 5353 -NCIT:C6320 Stage IIB Cervical Cancer AJCC v6 and v7 10 5354 -NCIT:C9204 Stage I Cervical Cancer AJCC v6 and v7 9 5355 -NCIT:C6313 Stage IA Cervical Cancer AJCC v6 and v7 10 5356 -NCIT:C6314 Stage IA1 Cervical Cancer AJCC v6 and v7 11 5357 -NCIT:C6315 Stage IA2 Cervical Cancer AJCC v6 and v7 11 5358 -NCIT:C6316 Stage IB Cervical Cancer AJCC v6 and v7 10 5359 -NCIT:C6317 Stage IB1 Cervical Cancer AJCC v6 and v7 11 5360 -NCIT:C6318 Stage IB2 Cervical Cancer AJCC v6 and v7 11 5361 -NCIT:C9205 Stage III Cervical Cancer AJCC v6 and v7 9 5362 -NCIT:C6321 Stage IIIB Cervical Cancer AJCC v6 and v7 10 5363 -NCIT:C6322 Stage IIIA Cervical Cancer AJCC v6 and v7 10 5364 -NCIT:C9206 Stage IV Cervical Cancer AJCC v6 and v7 9 5365 -NCIT:C6323 Stage IVA Cervical Cancer AJCC v6 and v7 10 5366 -NCIT:C6324 Stage IVB Cervical Cancer AJCC v6 and v7 10 5367 -NCIT:C91208 Cervical Cancer by AJCC v7 Stage 8 5368 -NCIT:C89550 Stage 0 Cervical Cancer AJCC v7 9 5369 -NCIT:C4520 Cervical Adenocarcinoma In Situ 10 5370 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 11 5371 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 11 5372 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 10 5373 -NCIT:C89551 Stage II Cervical Cancer AJCC v7 9 5374 -NCIT:C6320 Stage IIB Cervical Cancer AJCC v6 and v7 10 5375 -NCIT:C89552 Stage IIA Cervical Cancer AJCC v7 10 5376 -NCIT:C95172 Stage IIA1 Cervical Cancer AJCC v7 11 5377 -NCIT:C95173 Stage IIA2 Cervical Cancer AJCC v7 11 5378 -NCIT:C9204 Stage I Cervical Cancer AJCC v6 and v7 9 5379 -NCIT:C6313 Stage IA Cervical Cancer AJCC v6 and v7 10 5380 -NCIT:C6314 Stage IA1 Cervical Cancer AJCC v6 and v7 11 5381 -NCIT:C6315 Stage IA2 Cervical Cancer AJCC v6 and v7 11 5382 -NCIT:C6316 Stage IB Cervical Cancer AJCC v6 and v7 10 5383 -NCIT:C6317 Stage IB1 Cervical Cancer AJCC v6 and v7 11 5384 -NCIT:C6318 Stage IB2 Cervical Cancer AJCC v6 and v7 11 5385 -NCIT:C9205 Stage III Cervical Cancer AJCC v6 and v7 9 5386 -NCIT:C6321 Stage IIIB Cervical Cancer AJCC v6 and v7 10 5387 -NCIT:C6322 Stage IIIA Cervical Cancer AJCC v6 and v7 10 5388 -NCIT:C9206 Stage IV Cervical Cancer AJCC v6 and v7 9 5389 -NCIT:C6323 Stage IVA Cervical Cancer AJCC v6 and v7 10 5390 -NCIT:C6324 Stage IVB Cervical Cancer AJCC v6 and v7 10 5391 -NCIT:C3552 Malignant Uterine Neoplasm 6 5392 -NCIT:C3556 Malignant Uterine Corpus Neoplasm 7 5393 -NCIT:C127072 Uterine Corpus Malignant PEComa 8 5394 -NCIT:C188074 Extramedullary Disease in Plasma Cell Myeloma Involving the Uterine Corpus 8 5395 -NCIT:C27246 Uterine Corpus Choriocarcinoma 8 5396 -NCIT:C27815 Malignant Endometrial Neoplasm 8 5397 -NCIT:C181910 Endometrial Mucosa-Associated Lymphoid Tissue Lymphoma 9 5398 -NCIT:C40219 Uterine Corpus Endometrial Stromal Sarcoma 9 5399 -NCIT:C126998 Uterine Corpus High Grade Endometrial Stromal Sarcoma 10 5400 -NCIT:C139882 Uterine Corpus Endometrial Stromal Sarcoma by AJCC v8 Stage 10 5401 -NCIT:C139883 Stage I Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 5402 -NCIT:C139884 Stage IA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 5403 -NCIT:C139885 Stage IB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 5404 -NCIT:C139886 Stage II Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 5405 -NCIT:C139887 Stage III Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 5406 -NCIT:C139888 Stage IIIA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 5407 -NCIT:C139889 Stage IIIB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 5408 -NCIT:C139890 Stage IIIC Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 5409 -NCIT:C139891 Stage IV Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 5410 -NCIT:C139892 Stage IVA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 5411 -NCIT:C139893 Stage IVB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 5412 -NCIT:C40223 Uterine Corpus Low Grade Endometrial Stromal Sarcoma 10 5413 -NCIT:C7558 Endometrial Carcinoma 9 5414 -NCIT:C114656 Endometrial Adenosquamous Carcinoma 10 5415 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 11 5416 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 11 5417 -NCIT:C126769 Endometrial Dedifferentiated Carcinoma 10 5418 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 11 5419 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 11 5420 -NCIT:C150093 Refractory Endometrial Carcinoma 10 5421 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 11 5422 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 11 5423 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 11 5424 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 11 5425 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 12 5426 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 12 5427 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 12 5428 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 12 5429 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 12 5430 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 11 5431 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 11 5432 -NCIT:C150094 Recurrent Endometrial Carcinoma 10 5433 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 11 5434 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 11 5435 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 12 5436 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 12 5437 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 12 5438 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 12 5439 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 12 5440 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 11 5441 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 11 5442 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 11 5443 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 11 5444 -NCIT:C190200 Locally Recurrent Endometrial Carcinoma 11 5445 -NCIT:C156068 Metastatic Endometrial Carcinoma 10 5446 -NCIT:C159676 Advanced Endometrial Carcinoma 11 5447 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 12 5448 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 5449 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 5450 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 12 5451 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 11 5452 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 12 5453 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 5454 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 12 5455 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 11 5456 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 11 5457 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 12 5458 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 11 5459 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 12 5460 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 5461 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 12 5462 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 5463 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 5464 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 12 5465 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 5466 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 5467 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 12 5468 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 5469 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 12 5470 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 12 5471 -NCIT:C171033 Endometrial Neuroendocrine Carcinoma 10 5472 -NCIT:C126772 Endometrial Large Cell Neuroendocrine Carcinoma 11 5473 -NCIT:C40155 Endometrial Small Cell Neuroendocrine Carcinoma 11 5474 -NCIT:C171610 Unresectable Endometrial Carcinoma 10 5475 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 11 5476 -NCIT:C180335 Microsatellite Stable Endometrial Carcinoma 10 5477 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 11 5478 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 12 5479 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 11 5480 -NCIT:C190680 High Grade Endometrial Carcinoma 10 5481 -NCIT:C27838 Endometrial Serous Adenocarcinoma 11 5482 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 12 5483 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 12 5484 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 12 5485 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 5486 -NCIT:C187374 Platinum-Sensitive Endometrial Serous Adenocarcinoma 12 5487 -NCIT:C40148 High Grade Endometrial Endometrioid Adenocarcinoma 11 5488 -NCIT:C40156 Endometrial Undifferentiated Carcinoma 11 5489 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 12 5490 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 12 5491 -NCIT:C8028 Endometrial Clear Cell Adenocarcinoma 11 5492 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 12 5493 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 12 5494 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 12 5495 -NCIT:C40154 Endometrial Transitional Cell Carcinoma 10 5496 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 11 5497 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 11 5498 -NCIT:C7359 Endometrial Adenocarcinoma 10 5499 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 11 5500 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 12 5501 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 12 5502 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 12 5503 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 12 5504 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 12 5505 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 11 5506 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 12 5507 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 12 5508 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 12 5509 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 12 5510 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 12 5511 -NCIT:C179322 Endometrial Mesonephric-Like Adenocarcinoma 11 5512 -NCIT:C180536 Endometrial Mucinous Adenocarcinoma, Intestinal-Type 11 5513 -NCIT:C180537 Endometrial Mucinous Adenocarcinoma, Gastric-Type 11 5514 -NCIT:C39749 Type II Endometrial Adenocarcinoma 11 5515 -NCIT:C27838 Endometrial Serous Adenocarcinoma 12 5516 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 13 5517 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 13 5518 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 13 5519 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 14 5520 -NCIT:C187374 Platinum-Sensitive Endometrial Serous Adenocarcinoma 13 5521 -NCIT:C40152 Serous Endometrial Intraepithelial Carcinoma 12 5522 -NCIT:C8028 Endometrial Clear Cell Adenocarcinoma 12 5523 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 13 5524 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 13 5525 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 13 5526 -NCIT:C40145 Type I Endometrial Adenocarcinoma 11 5527 -NCIT:C40144 Endometrial Mucinous Adenocarcinoma 12 5528 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 13 5529 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 13 5530 -NCIT:C40149 FIGO Grade 1 Endometrial Mucinous Adenocarcinoma 13 5531 -NCIT:C40150 FIGO Grade 2 Endometrial Mucinous Adenocarcinoma 13 5532 -NCIT:C40151 FIGO Grade 3 Endometrial Mucinous Adenocarcinoma 13 5533 -NCIT:C6287 Endometrial Endometrioid Adenocarcinoma 12 5534 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 13 5535 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 13 5536 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 13 5537 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 14 5538 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 14 5539 -NCIT:C180510 Low Grade Endometrial Endometrioid Adenocarcinoma 13 5540 -NCIT:C40146 FIGO Grade 1 Endometrial Endometrioid Adenocarcinoma 14 5541 -NCIT:C40147 FIGO Grade 2 Endometrial Endometrioid Adenocarcinoma 14 5542 -NCIT:C180512 POLE-Ultramutated Endometrial Endometrioid Adenocarcinoma 13 5543 -NCIT:C180514 Mismatch Repair-Deficient Endometrial Endometrioid Adenocarcinoma 13 5544 -NCIT:C180515 p53-Mutant Endometrial Endometrioid Adenocarcinoma 13 5545 -NCIT:C180516 No Specific Molecular Profile Endometrial Endometrioid Adenocarcinoma 13 5546 -NCIT:C27839 Endometrial Endometrioid Adenocarcinoma, Secretory Variant 13 5547 -NCIT:C27843 Endometrial Endometrioid Adenocarcinoma with Clear Cell Change 13 5548 -NCIT:C27844 Endometrial Endometrioid Adenocarcinoma with a Poorly Differentiated Carcinomatous Component 13 5549 -NCIT:C27845 Endometrial Endometrioid Adenocarcinoma with an Undifferentiated Carcinomatous Component 13 5550 -NCIT:C27846 Villoglandular Endometrial Endometrioid Adenocarcinoma 13 5551 -NCIT:C27848 Endometrial Endometrioid Adenocarcinoma, Ciliated Variant 13 5552 -NCIT:C27849 Oxyphilic Endometrial Endometrioid Adenocarcinoma 13 5553 -NCIT:C27850 Endometrial Endometrioid Adenocarcinoma with Spindled Epithelial Cells 13 5554 -NCIT:C40148 High Grade Endometrial Endometrioid Adenocarcinoma 13 5555 -NCIT:C6290 Endometrial Endometrioid Adenocarcinoma, Variant with Squamous Differentiation 13 5556 -NCIT:C40153 Endometrial Mixed Cell Adenocarcinoma 11 5557 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 12 5558 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 12 5559 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 12 5560 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 11 5561 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 12 5562 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 5563 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 12 5564 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 5565 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 5566 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 12 5567 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 5568 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 5569 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 12 5570 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 5571 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 12 5572 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 12 5573 -NCIT:C8719 Endometrial Squamous Cell Carcinoma 10 5574 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 11 5575 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 11 5576 -NCIT:C61574 Uterine Corpus Cancer 8 5577 -NCIT:C139801 Uterine Corpus Cancer by AJCC v8 Stage 9 5578 -NCIT:C139802 Stage I Uterine Corpus Cancer AJCC v8 10 5579 -NCIT:C139803 Stage IA Uterine Corpus Cancer AJCC v8 11 5580 -NCIT:C139804 Stage IB Uterine Corpus Cancer AJCC v8 11 5581 -NCIT:C139805 Stage II Uterine Corpus Cancer AJCC v8 10 5582 -NCIT:C139806 Stage III Uterine Corpus Cancer AJCC v8 10 5583 -NCIT:C139807 Stage IIIA Uterine Corpus Cancer AJCC v8 11 5584 -NCIT:C139808 Stage IIIB Uterine Corpus Cancer AJCC v8 11 5585 -NCIT:C139809 Stage IIIC Uterine Corpus Cancer AJCC v8 11 5586 -NCIT:C139810 Stage IIIC1 Uterine Corpus Cancer AJCC v8 12 5587 -NCIT:C139811 Stage IIIC2 Uterine Corpus Cancer AJCC v8 12 5588 -NCIT:C139812 Stage IV Uterine Corpus Cancer AJCC v8 10 5589 -NCIT:C139813 Stage IVA Uterine Corpus Cancer AJCC v8 11 5590 -NCIT:C139814 Stage IVB Uterine Corpus Cancer AJCC v8 11 5591 -NCIT:C150092 Refractory Uterine Corpus Cancer 9 5592 -NCIT:C150093 Refractory Endometrial Carcinoma 10 5593 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 11 5594 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 11 5595 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 11 5596 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 11 5597 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 12 5598 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 12 5599 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 12 5600 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 12 5601 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 12 5602 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 11 5603 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 11 5604 -NCIT:C158381 Refractory Uterine Corpus Carcinosarcoma 10 5605 -NCIT:C172450 Advanced Uterine Corpus Cancer 9 5606 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 10 5607 -NCIT:C159676 Advanced Endometrial Carcinoma 10 5608 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 11 5609 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 12 5610 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 12 5611 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 11 5612 -NCIT:C7558 Endometrial Carcinoma 9 5613 -NCIT:C114656 Endometrial Adenosquamous Carcinoma 10 5614 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 11 5615 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 11 5616 -NCIT:C126769 Endometrial Dedifferentiated Carcinoma 10 5617 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 11 5618 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 11 5619 -NCIT:C150093 Refractory Endometrial Carcinoma 10 5620 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 11 5621 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 11 5622 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 11 5623 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 11 5624 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 12 5625 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 12 5626 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 12 5627 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 12 5628 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 12 5629 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 11 5630 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 11 5631 -NCIT:C150094 Recurrent Endometrial Carcinoma 10 5632 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 11 5633 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 11 5634 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 12 5635 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 12 5636 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 12 5637 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 12 5638 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 12 5639 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 11 5640 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 11 5641 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 11 5642 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 11 5643 -NCIT:C190200 Locally Recurrent Endometrial Carcinoma 11 5644 -NCIT:C156068 Metastatic Endometrial Carcinoma 10 5645 -NCIT:C159676 Advanced Endometrial Carcinoma 11 5646 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 12 5647 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 5648 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 5649 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 12 5650 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 11 5651 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 12 5652 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 5653 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 12 5654 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 11 5655 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 11 5656 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 12 5657 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 11 5658 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 12 5659 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 5660 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 12 5661 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 5662 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 5663 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 12 5664 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 5665 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 5666 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 12 5667 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 5668 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 12 5669 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 12 5670 -NCIT:C171033 Endometrial Neuroendocrine Carcinoma 10 5671 -NCIT:C126772 Endometrial Large Cell Neuroendocrine Carcinoma 11 5672 -NCIT:C40155 Endometrial Small Cell Neuroendocrine Carcinoma 11 5673 -NCIT:C171610 Unresectable Endometrial Carcinoma 10 5674 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 11 5675 -NCIT:C180335 Microsatellite Stable Endometrial Carcinoma 10 5676 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 11 5677 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 12 5678 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 11 5679 -NCIT:C190680 High Grade Endometrial Carcinoma 10 5680 -NCIT:C27838 Endometrial Serous Adenocarcinoma 11 5681 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 12 5682 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 12 5683 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 12 5684 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 5685 -NCIT:C187374 Platinum-Sensitive Endometrial Serous Adenocarcinoma 12 5686 -NCIT:C40148 High Grade Endometrial Endometrioid Adenocarcinoma 11 5687 -NCIT:C40156 Endometrial Undifferentiated Carcinoma 11 5688 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 12 5689 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 12 5690 -NCIT:C8028 Endometrial Clear Cell Adenocarcinoma 11 5691 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 12 5692 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 12 5693 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 12 5694 -NCIT:C40154 Endometrial Transitional Cell Carcinoma 10 5695 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 11 5696 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 11 5697 -NCIT:C7359 Endometrial Adenocarcinoma 10 5698 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 11 5699 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 12 5700 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 12 5701 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 12 5702 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 12 5703 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 12 5704 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 11 5705 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 12 5706 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 12 5707 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 12 5708 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 12 5709 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 12 5710 -NCIT:C179322 Endometrial Mesonephric-Like Adenocarcinoma 11 5711 -NCIT:C180536 Endometrial Mucinous Adenocarcinoma, Intestinal-Type 11 5712 -NCIT:C180537 Endometrial Mucinous Adenocarcinoma, Gastric-Type 11 5713 -NCIT:C39749 Type II Endometrial Adenocarcinoma 11 5714 -NCIT:C27838 Endometrial Serous Adenocarcinoma 12 5715 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 13 5716 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 13 5717 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 13 5718 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 14 5719 -NCIT:C187374 Platinum-Sensitive Endometrial Serous Adenocarcinoma 13 5720 -NCIT:C40152 Serous Endometrial Intraepithelial Carcinoma 12 5721 -NCIT:C8028 Endometrial Clear Cell Adenocarcinoma 12 5722 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 13 5723 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 13 5724 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 13 5725 -NCIT:C40145 Type I Endometrial Adenocarcinoma 11 5726 -NCIT:C40144 Endometrial Mucinous Adenocarcinoma 12 5727 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 13 5728 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 13 5729 -NCIT:C40149 FIGO Grade 1 Endometrial Mucinous Adenocarcinoma 13 5730 -NCIT:C40150 FIGO Grade 2 Endometrial Mucinous Adenocarcinoma 13 5731 -NCIT:C40151 FIGO Grade 3 Endometrial Mucinous Adenocarcinoma 13 5732 -NCIT:C6287 Endometrial Endometrioid Adenocarcinoma 12 5733 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 13 5734 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 13 5735 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 13 5736 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 14 5737 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 14 5738 -NCIT:C180510 Low Grade Endometrial Endometrioid Adenocarcinoma 13 5739 -NCIT:C40146 FIGO Grade 1 Endometrial Endometrioid Adenocarcinoma 14 5740 -NCIT:C40147 FIGO Grade 2 Endometrial Endometrioid Adenocarcinoma 14 5741 -NCIT:C180512 POLE-Ultramutated Endometrial Endometrioid Adenocarcinoma 13 5742 -NCIT:C180514 Mismatch Repair-Deficient Endometrial Endometrioid Adenocarcinoma 13 5743 -NCIT:C180515 p53-Mutant Endometrial Endometrioid Adenocarcinoma 13 5744 -NCIT:C180516 No Specific Molecular Profile Endometrial Endometrioid Adenocarcinoma 13 5745 -NCIT:C27839 Endometrial Endometrioid Adenocarcinoma, Secretory Variant 13 5746 -NCIT:C27843 Endometrial Endometrioid Adenocarcinoma with Clear Cell Change 13 5747 -NCIT:C27844 Endometrial Endometrioid Adenocarcinoma with a Poorly Differentiated Carcinomatous Component 13 5748 -NCIT:C27845 Endometrial Endometrioid Adenocarcinoma with an Undifferentiated Carcinomatous Component 13 5749 -NCIT:C27846 Villoglandular Endometrial Endometrioid Adenocarcinoma 13 5750 -NCIT:C27848 Endometrial Endometrioid Adenocarcinoma, Ciliated Variant 13 5751 -NCIT:C27849 Oxyphilic Endometrial Endometrioid Adenocarcinoma 13 5752 -NCIT:C27850 Endometrial Endometrioid Adenocarcinoma with Spindled Epithelial Cells 13 5753 -NCIT:C40148 High Grade Endometrial Endometrioid Adenocarcinoma 13 5754 -NCIT:C6290 Endometrial Endometrioid Adenocarcinoma, Variant with Squamous Differentiation 13 5755 -NCIT:C40153 Endometrial Mixed Cell Adenocarcinoma 11 5756 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 12 5757 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 12 5758 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 12 5759 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 11 5760 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 12 5761 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 5762 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 12 5763 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 5764 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 5765 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 12 5766 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 5767 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 5768 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 12 5769 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 5770 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 12 5771 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 12 5772 -NCIT:C8719 Endometrial Squamous Cell Carcinoma 10 5773 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 11 5774 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 11 5775 -NCIT:C90494 Uterine Corpus Cancer by AJCC v6 Stage 9 5776 -NCIT:C4006 Stage IV Uterine Corpus Cancer AJCC v6 10 5777 -NCIT:C9071 Stage 0 Uterine Corpus Cancer AJCC v6 10 5778 -NCIT:C9207 Stage I Uterine Corpus Cancer AJCC v6 10 5779 -NCIT:C6303 Stage IC Uterine Corpus Cancer AJCC v6 11 5780 -NCIT:C9208 Stage II Uterine Corpus Cancer AJCC v6 10 5781 -NCIT:C6304 Stage IIA Uterine Corpus Cancer AJCC v6 11 5782 -NCIT:C6305 Stage IIB Uterine Corpus Cancer AJCC v6 11 5783 -NCIT:C9209 Stage III Uterine Corpus Cancer AJCC v6 10 5784 -NCIT:C9072 Recurrent Uterine Corpus Cancer 9 5785 -NCIT:C150094 Recurrent Endometrial Carcinoma 10 5786 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 11 5787 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 11 5788 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 12 5789 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 12 5790 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 12 5791 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 12 5792 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 12 5793 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 11 5794 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 11 5795 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 11 5796 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 11 5797 -NCIT:C190200 Locally Recurrent Endometrial Carcinoma 11 5798 -NCIT:C155818 Recurrent Uterine Corpus Carcinosarcoma 10 5799 -NCIT:C91218 Uterine Corpus Cancer by AJCC v7 Stage 9 5800 -NCIT:C89632 Stage 0 Uterine Corpus Cancer AJCC v7 10 5801 -NCIT:C89633 Stage I Uterine Corpus Cancer AJCC v7 10 5802 -NCIT:C6301 Stage IA Uterine Corpus Cancer AJCC v7 11 5803 -NCIT:C6302 Stage IB Uterine Corpus Cancer AJCC v7 11 5804 -NCIT:C89634 Stage II Uterine Corpus Cancer AJCC v7 10 5805 -NCIT:C89635 Stage III Uterine Corpus Cancer AJCC v7 10 5806 -NCIT:C6306 Stage IIIA Uterine Corpus Cancer AJCC v7 11 5807 -NCIT:C6307 Stage IIIB Uterine Corpus Cancer AJCC v7 11 5808 -NCIT:C6308 Stage IIIC Uterine Corpus Cancer AJCC v7 11 5809 -NCIT:C95174 Stage IIIC1 Uterine Corpus Cancer AJCC v7 12 5810 -NCIT:C95176 Stage IIIC2 Uterine Corpus Cancer AJCC v7 12 5811 -NCIT:C89636 Stage IV Uterine Corpus Cancer AJCC v7 10 5812 -NCIT:C6309 Stage IVA Uterine Corpus Cancer AJCC v7 11 5813 -NCIT:C6310 Stage IVB Uterine Corpus Cancer AJCC v7 11 5814 -NCIT:C9180 Uterine Corpus Carcinosarcoma 9 5815 -NCIT:C155818 Recurrent Uterine Corpus Carcinosarcoma 10 5816 -NCIT:C158381 Refractory Uterine Corpus Carcinosarcoma 10 5817 -NCIT:C170931 Metastatic Uterine Corpus Carcinosarcoma 10 5818 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 11 5819 -NCIT:C6311 Malignant Uterine Corpus Mixed Epithelial and Mesenchymal Neoplasm 8 5820 -NCIT:C40182 Uterine Corpus Carcinofibroma 9 5821 -NCIT:C6336 Uterine Corpus Adenosarcoma 9 5822 -NCIT:C139894 Uterine Corpus Adenosarcoma by AJCC v8 Stage 10 5823 -NCIT:C139895 Stage I Uterine Corpus Adenosarcoma AJCC v8 11 5824 -NCIT:C139896 Stage IA Uterine Corpus Adenosarcoma AJCC v8 12 5825 -NCIT:C139897 Stage IB Uterine Corpus Adenosarcoma AJCC v8 12 5826 -NCIT:C139898 Stage IC Uterine Corpus Adenosarcoma AJCC v8 12 5827 -NCIT:C139899 Stage II Uterine Corpus Adenosarcoma AJCC v8 11 5828 -NCIT:C139900 Stage III Uterine Corpus Adenosarcoma AJCC v8 11 5829 -NCIT:C139901 Stage IIIA Uterine Corpus Adenosarcoma AJCC v8 12 5830 -NCIT:C139902 Stage IIIB Uterine Corpus Adenosarcoma AJCC v8 12 5831 -NCIT:C139903 Stage IIIC Uterine Corpus Adenosarcoma AJCC v8 12 5832 -NCIT:C139904 Stage IV Uterine Corpus Adenosarcoma AJCC v8 11 5833 -NCIT:C139905 Stage IVA Uterine Corpus Adenosarcoma AJCC v8 12 5834 -NCIT:C139906 Stage IVB Uterine Corpus Adenosarcoma AJCC v8 12 5835 -NCIT:C9180 Uterine Corpus Carcinosarcoma 9 5836 -NCIT:C155818 Recurrent Uterine Corpus Carcinosarcoma 10 5837 -NCIT:C158381 Refractory Uterine Corpus Carcinosarcoma 10 5838 -NCIT:C170931 Metastatic Uterine Corpus Carcinosarcoma 10 5839 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 11 5840 -NCIT:C6339 Uterine Corpus Sarcoma 8 5841 -NCIT:C127058 Uterine Corpus Rhabdomyosarcoma 9 5842 -NCIT:C136708 Uterine Corpus Sarcoma by AJCC v7 Stage 9 5843 -NCIT:C8258 Stage I Uterine Sarcoma AJCC v7 10 5844 -NCIT:C87132 Stage IA Uterine Sarcoma AJCC v7 11 5845 -NCIT:C87133 Stage IB Uterine Sarcoma AJCC v7 11 5846 -NCIT:C87134 Stage IC Uterine Sarcoma AJCC v7 11 5847 -NCIT:C8259 Stage II Uterine Sarcoma AJCC v7 10 5848 -NCIT:C115130 Stage IIA Uterine Sarcoma AJCC v7 11 5849 -NCIT:C115131 Stage IIB Uterine Sarcoma AJCC v7 11 5850 -NCIT:C8260 Stage III Uterine Sarcoma AJCC v7 10 5851 -NCIT:C87135 Stage IIIA Uterine Sarcoma AJCC v7 11 5852 -NCIT:C87137 Stage IIIB Uterine Sarcoma AJCC v7 11 5853 -NCIT:C87138 Stage IIIC Uterine Sarcoma AJCC v7 11 5854 -NCIT:C9179 Stage IV Uterine Sarcoma AJCC v7 10 5855 -NCIT:C87140 Stage IVA Uterine Sarcoma AJCC v7 11 5856 -NCIT:C87144 Stage IVB Uterine Sarcoma AJCC v7 11 5857 -NCIT:C139869 Uterine Corpus Sarcoma by AJCC v8 Stage 9 5858 -NCIT:C139870 Uterine Corpus Leiomyosarcoma by AJCC v8 Stage 10 5859 -NCIT:C139871 Stage I Uterine Corpus Leiomyosarcoma AJCC v8 11 5860 -NCIT:C139872 Stage IA Uterine Corpus Leiomyosarcoma AJCC v8 12 5861 -NCIT:C139873 Stage IB Uterine Corpus Leiomyosarcoma AJCC v8 12 5862 -NCIT:C139874 Stage II Uterine Corpus Leiomyosarcoma AJCC v8 11 5863 -NCIT:C139875 Stage III Uterine Corpus Leiomyosarcoma AJCC v8 11 5864 -NCIT:C139876 Stage IIIA Uterine Corpus Leiomyosarcoma AJCC v8 12 5865 -NCIT:C139877 Stage IIIB Uterine Corpus Leiomyosarcoma AJCC v8 12 5866 -NCIT:C139878 Stage IIIC Uterine Corpus Leiomyosarcoma AJCC v8 12 5867 -NCIT:C139879 Stage IV Uterine Corpus Leiomyosarcoma AJCC v8 11 5868 -NCIT:C139880 Stage IVA Uterine Corpus Leiomyosarcoma AJCC v8 12 5869 -NCIT:C139881 Stage IVB Uterine Corpus Leiomyosarcoma AJCC v8 12 5870 -NCIT:C139882 Uterine Corpus Endometrial Stromal Sarcoma by AJCC v8 Stage 10 5871 -NCIT:C139883 Stage I Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 5872 -NCIT:C139884 Stage IA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 5873 -NCIT:C139885 Stage IB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 5874 -NCIT:C139886 Stage II Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 5875 -NCIT:C139887 Stage III Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 5876 -NCIT:C139888 Stage IIIA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 5877 -NCIT:C139889 Stage IIIB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 5878 -NCIT:C139890 Stage IIIC Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 5879 -NCIT:C139891 Stage IV Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 5880 -NCIT:C139892 Stage IVA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 5881 -NCIT:C139893 Stage IVB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 5882 -NCIT:C139894 Uterine Corpus Adenosarcoma by AJCC v8 Stage 10 5883 -NCIT:C139895 Stage I Uterine Corpus Adenosarcoma AJCC v8 11 5884 -NCIT:C139896 Stage IA Uterine Corpus Adenosarcoma AJCC v8 12 5885 -NCIT:C139897 Stage IB Uterine Corpus Adenosarcoma AJCC v8 12 5886 -NCIT:C139898 Stage IC Uterine Corpus Adenosarcoma AJCC v8 12 5887 -NCIT:C139899 Stage II Uterine Corpus Adenosarcoma AJCC v8 11 5888 -NCIT:C139900 Stage III Uterine Corpus Adenosarcoma AJCC v8 11 5889 -NCIT:C139901 Stage IIIA Uterine Corpus Adenosarcoma AJCC v8 12 5890 -NCIT:C139902 Stage IIIB Uterine Corpus Adenosarcoma AJCC v8 12 5891 -NCIT:C139903 Stage IIIC Uterine Corpus Adenosarcoma AJCC v8 12 5892 -NCIT:C139904 Stage IV Uterine Corpus Adenosarcoma AJCC v8 11 5893 -NCIT:C139905 Stage IVA Uterine Corpus Adenosarcoma AJCC v8 12 5894 -NCIT:C139906 Stage IVB Uterine Corpus Adenosarcoma AJCC v8 12 5895 -NCIT:C180546 Uterine Corpus Central Primitive Neuroectodermal Tumor 9 5896 -NCIT:C190009 Metastatic Uterine Corpus Sarcoma 9 5897 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 10 5898 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 11 5899 -NCIT:C190016 Unresectable Uterine Corpus Sarcoma 9 5900 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 10 5901 -NCIT:C40219 Uterine Corpus Endometrial Stromal Sarcoma 9 5902 -NCIT:C126998 Uterine Corpus High Grade Endometrial Stromal Sarcoma 10 5903 -NCIT:C139882 Uterine Corpus Endometrial Stromal Sarcoma by AJCC v8 Stage 10 5904 -NCIT:C139883 Stage I Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 5905 -NCIT:C139884 Stage IA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 5906 -NCIT:C139885 Stage IB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 5907 -NCIT:C139886 Stage II Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 5908 -NCIT:C139887 Stage III Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 5909 -NCIT:C139888 Stage IIIA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 5910 -NCIT:C139889 Stage IIIB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 5911 -NCIT:C139890 Stage IIIC Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 5912 -NCIT:C139891 Stage IV Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 5913 -NCIT:C139892 Stage IVA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 5914 -NCIT:C139893 Stage IVB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 5915 -NCIT:C40223 Uterine Corpus Low Grade Endometrial Stromal Sarcoma 10 5916 -NCIT:C6336 Uterine Corpus Adenosarcoma 9 5917 -NCIT:C139894 Uterine Corpus Adenosarcoma by AJCC v8 Stage 10 5918 -NCIT:C139895 Stage I Uterine Corpus Adenosarcoma AJCC v8 11 5919 -NCIT:C139896 Stage IA Uterine Corpus Adenosarcoma AJCC v8 12 5920 -NCIT:C139897 Stage IB Uterine Corpus Adenosarcoma AJCC v8 12 5921 -NCIT:C139898 Stage IC Uterine Corpus Adenosarcoma AJCC v8 12 5922 -NCIT:C139899 Stage II Uterine Corpus Adenosarcoma AJCC v8 11 5923 -NCIT:C139900 Stage III Uterine Corpus Adenosarcoma AJCC v8 11 5924 -NCIT:C139901 Stage IIIA Uterine Corpus Adenosarcoma AJCC v8 12 5925 -NCIT:C139902 Stage IIIB Uterine Corpus Adenosarcoma AJCC v8 12 5926 -NCIT:C139903 Stage IIIC Uterine Corpus Adenosarcoma AJCC v8 12 5927 -NCIT:C139904 Stage IV Uterine Corpus Adenosarcoma AJCC v8 11 5928 -NCIT:C139905 Stage IVA Uterine Corpus Adenosarcoma AJCC v8 12 5929 -NCIT:C139906 Stage IVB Uterine Corpus Adenosarcoma AJCC v8 12 5930 -NCIT:C6340 Uterine Corpus Leiomyosarcoma 9 5931 -NCIT:C139870 Uterine Corpus Leiomyosarcoma by AJCC v8 Stage 10 5932 -NCIT:C139871 Stage I Uterine Corpus Leiomyosarcoma AJCC v8 11 5933 -NCIT:C139872 Stage IA Uterine Corpus Leiomyosarcoma AJCC v8 12 5934 -NCIT:C139873 Stage IB Uterine Corpus Leiomyosarcoma AJCC v8 12 5935 -NCIT:C139874 Stage II Uterine Corpus Leiomyosarcoma AJCC v8 11 5936 -NCIT:C139875 Stage III Uterine Corpus Leiomyosarcoma AJCC v8 11 5937 -NCIT:C139876 Stage IIIA Uterine Corpus Leiomyosarcoma AJCC v8 12 5938 -NCIT:C139877 Stage IIIB Uterine Corpus Leiomyosarcoma AJCC v8 12 5939 -NCIT:C139878 Stage IIIC Uterine Corpus Leiomyosarcoma AJCC v8 12 5940 -NCIT:C139879 Stage IV Uterine Corpus Leiomyosarcoma AJCC v8 11 5941 -NCIT:C139880 Stage IVA Uterine Corpus Leiomyosarcoma AJCC v8 12 5942 -NCIT:C139881 Stage IVB Uterine Corpus Leiomyosarcoma AJCC v8 12 5943 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 10 5944 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 10 5945 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 11 5946 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 10 5947 -NCIT:C40174 Uterine Corpus Epithelioid Leiomyosarcoma 10 5948 -NCIT:C40175 Uterine Corpus Myxoid Leiomyosarcoma 10 5949 -NCIT:C8261 Recurrent Uterine Corpus Sarcoma 9 5950 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 10 5951 -NCIT:C8972 Uterine Corpus Undifferentiated Sarcoma 9 5952 -NCIT:C42700 Uterine Carcinosarcoma 7 5953 -NCIT:C113238 Uterine Carcinosarcoma, Homologous Type 8 5954 -NCIT:C113239 Uterine Carcinosarcoma, Heterologous Type 8 5955 -NCIT:C36097 Cervical Carcinosarcoma 8 5956 -NCIT:C9180 Uterine Corpus Carcinosarcoma 8 5957 -NCIT:C155818 Recurrent Uterine Corpus Carcinosarcoma 9 5958 -NCIT:C158381 Refractory Uterine Corpus Carcinosarcoma 9 5959 -NCIT:C170931 Metastatic Uterine Corpus Carcinosarcoma 9 5960 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 10 5961 -NCIT:C5385 Uterine Angiosarcoma 7 5962 -NCIT:C128049 Cervical Angiosarcoma 8 5963 -NCIT:C9311 Malignant Cervical Neoplasm 7 5964 -NCIT:C128054 Malignant Cervical Soft Tissue Neoplasm 8 5965 -NCIT:C128047 Cervical Leiomyosarcoma 9 5966 -NCIT:C128048 Cervical Rhabdomyosarcoma 9 5967 -NCIT:C128049 Cervical Angiosarcoma 9 5968 -NCIT:C128050 Cervical Malignant Peripheral Nerve Sheath Tumor 9 5969 -NCIT:C40222 Cervical Low Grade Endometrioid Stromal Sarcoma 9 5970 -NCIT:C40224 Endocervical Undifferentiated Sarcoma 9 5971 -NCIT:C40225 Cervical Alveolar Soft Part Sarcoma 9 5972 -NCIT:C40229 Cervical Adenosarcoma 9 5973 -NCIT:C7433 AIDS-Related Cervical Kaposi Sarcoma 9 5974 -NCIT:C128055 Cervical Yolk Sac Tumor 8 5975 -NCIT:C3553 Malignant Endocervical Neoplasm 8 5976 -NCIT:C9269 Recurrent Malignant Endocervical Neoplasm 9 5977 -NCIT:C3554 Malignant Exocervical Neoplasm 8 5978 -NCIT:C7453 Exocervical Carcinoma 9 5979 -NCIT:C40228 Malignant Mixed Epithelial and Mesenchymal Neoplasm of the Cervix 8 5980 -NCIT:C36097 Cervical Carcinosarcoma 9 5981 -NCIT:C40229 Cervical Adenosarcoma 9 5982 -NCIT:C40236 Cervical Wilms Tumor 8 5983 -NCIT:C40239 Cervical Melanoma 8 5984 -NCIT:C5052 AIDS-Related Malignant Cervical Neoplasm 8 5985 -NCIT:C7432 AIDS-Related Cervical Carcinoma 9 5986 -NCIT:C7433 AIDS-Related Cervical Kaposi Sarcoma 9 5987 -NCIT:C7434 AIDS-Related Non-Hodgkin Lymphoma of the Cervix 9 5988 -NCIT:C6385 Metastatic Malignant Neoplasm in the Uterine Cervix 8 5989 -NCIT:C6334 Metastatic Carcinoma in the Uterine Cervix 9 5990 -NCIT:C9039 Cervical Carcinoma 8 5991 -NCIT:C128045 Cervical Neuroendocrine Carcinoma 9 5992 -NCIT:C40214 Cervical Large Cell Neuroendocrine Carcinoma 10 5993 -NCIT:C7982 Cervical Small Cell Neuroendocrine Carcinoma 10 5994 -NCIT:C139733 Cervical Cancer by AJCC v8 Stage 9 5995 -NCIT:C139734 Stage I Cervical Cancer AJCC v8 10 5996 -NCIT:C139735 Stage IA Cervical Cancer AJCC v8 11 5997 -NCIT:C139736 Stage IA1 Cervical Cancer AJCC v8 12 5998 -NCIT:C139737 Stage IA2 Cervical Cancer AJCC v8 12 5999 -NCIT:C139738 Stage IB Cervical Cancer AJCC v8 11 6000 -NCIT:C139739 Stage IB1 Cervical Cancer AJCC v8 12 6001 -NCIT:C139740 Stage IB2 Cervical Cancer AJCC v8 12 6002 -NCIT:C139743 Stage II Cervical Cancer AJCC v8 10 6003 -NCIT:C139744 Stage IIA Cervical Cancer AJCC v8 11 6004 -NCIT:C139745 Stage IIA1 Cervical Cancer AJCC v8 12 6005 -NCIT:C139746 Stage IIA2 Cervical Cancer AJCC v8 12 6006 -NCIT:C139748 Stage IIB Cervical Cancer AJCC v8 11 6007 -NCIT:C139749 Stage III Cervical Cancer AJCC v8 10 6008 -NCIT:C139750 Stage IIIA Cervical Cancer AJCC v8 11 6009 -NCIT:C139752 Stage IIIB Cervical Cancer AJCC v8 11 6010 -NCIT:C139753 Stage IV Cervical Cancer AJCC v8 10 6011 -NCIT:C139754 Stage IVA Cervical Cancer AJCC v8 11 6012 -NCIT:C139755 Stage IVB Cervical Cancer AJCC v8 11 6013 -NCIT:C153387 Metastatic Cervical Carcinoma 9 6014 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 10 6015 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 11 6016 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 11 6017 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 10 6018 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 11 6019 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 12 6020 -NCIT:C156304 Advanced Cervical Adenocarcinoma 11 6021 -NCIT:C153390 Metastatic Cervical Adenosquamous Carcinoma 10 6022 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 11 6023 -NCIT:C156294 Advanced Cervical Carcinoma 10 6024 -NCIT:C156304 Advanced Cervical Adenocarcinoma 11 6025 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 11 6026 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 11 6027 -NCIT:C156295 Locally Advanced Cervical Carcinoma 10 6028 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 11 6029 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 12 6030 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 11 6031 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 12 6032 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 11 6033 -NCIT:C162225 Cervical Cancer by FIGO Stage 2018 9 6034 -NCIT:C162226 Stage I Cervical Cancer FIGO 2018 10 6035 -NCIT:C162227 Stage IA Cervical Cancer FIGO 2018 11 6036 -NCIT:C162228 Stage IA1 Cervical Cancer FIGO 2018 12 6037 -NCIT:C162229 Stage IA2 Cervical Cancer FIGO 2018 12 6038 -NCIT:C162230 Stage IB Cervical Cancer FIGO 2018 11 6039 -NCIT:C162231 Stage IB1 Cervical Cancer FIGO 2018 12 6040 -NCIT:C162232 Stage IB2 Cervical Cancer FIGO 2018 12 6041 -NCIT:C162233 Stage IB3 Cervical Cancer FIGO 2018 12 6042 -NCIT:C162234 Stage II Cervical Cancer FIGO 2018 10 6043 -NCIT:C162235 Stage IIA Cervical Cancer FIGO 2018 11 6044 -NCIT:C162236 Stage IIA1 Cervical Cancer FIGO 2018 12 6045 -NCIT:C162237 Stage IIA2 Cervical Cancer FIGO 2018 12 6046 -NCIT:C162238 Stage IIB Cervical Cancer FIGO 2018 11 6047 -NCIT:C162239 Stage III Cervical Cancer FIGO 2018 10 6048 -NCIT:C162240 Stage IIIA Cervical Cancer FIGO 2018 11 6049 -NCIT:C162241 Stage IIIB Cervical Cancer FIGO 2018 11 6050 -NCIT:C162242 Stage IIIC Cervical Cancer FIGO 2018 11 6051 -NCIT:C162243 Stage IIIC1 Cervical Cancer FIGO 2018 12 6052 -NCIT:C162244 Stage IIIC2 Cervical Cancer FIGO 2018 12 6053 -NCIT:C162245 Stage IV Cervical Cancer FIGO 2018 10 6054 -NCIT:C162246 Stage IVA Cervical Cancer FIGO 2018 11 6055 -NCIT:C162247 Stage IVB Cervical Cancer FIGO 2018 11 6056 -NCIT:C170513 Refractory Cervical Carcinoma 9 6057 -NCIT:C181034 Refractory Cervical Squamous Cell Carcinoma 10 6058 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 11 6059 -NCIT:C181036 Refractory Cervical Adenocarcinoma 10 6060 -NCIT:C174024 Unresectable Cervical Carcinoma 9 6061 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 10 6062 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 11 6063 -NCIT:C174025 Unresectable Cervical Squamous Cell Carcinoma 10 6064 -NCIT:C174027 Unresectable Cervical Adenosquamous Carcinoma 10 6065 -NCIT:C174029 Unresectable Cervical Adenocarcinoma 10 6066 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 11 6067 -NCIT:C180878 Cervical Mucoepidermoid Carcinoma 9 6068 -NCIT:C181562 Cervical Cancer by AJCC v9 Stage 9 6069 -NCIT:C181564 Stage I Cervical Cancer AJCC v9 10 6070 -NCIT:C181565 Stage IA Cervical Cancer AJCC v9 11 6071 -NCIT:C181567 Stage IA1 Cervical Cancer AJCC v9 12 6072 -NCIT:C181568 Stage IA2 Cervical Cancer AJCC v9 12 6073 -NCIT:C181570 Stage IB Cervical Cancer AJCC v9 11 6074 -NCIT:C181571 Stage IB1 Cervical Cancer AJCC v9 12 6075 -NCIT:C181576 Stage IB2 Cervical Cancer AJCC v9 12 6076 -NCIT:C181579 Stage IB3 Cervical Cancer AJCC v9 12 6077 -NCIT:C181583 Stage II Cervical Cancer AJCC v9 10 6078 -NCIT:C181584 Stage IIA Cervical Cancer AJCC v9 11 6079 -NCIT:C181586 Stage IIA1 Cervical Cancer AJCC v9 12 6080 -NCIT:C181588 Stage IIA2 Cervical Cancer AJCC v9 12 6081 -NCIT:C181591 Stage IIB Cervical Cancer AJCC v9 11 6082 -NCIT:C181592 Stage III Cervical Cancer AJCC v9 10 6083 -NCIT:C181594 Stage IIIA Cervical Cancer AJCC v9 11 6084 -NCIT:C181595 Stage IIIB Cervical Cancer AJCC v9 11 6085 -NCIT:C181596 Stage IIIC Cervical Cancer AJCC v9 11 6086 -NCIT:C181597 Stage IIIC1 Cervical Cancer AJCC v9 12 6087 -NCIT:C181598 Stage IIIC2 Cervical Cancer AJCC v9 12 6088 -NCIT:C181599 Stage IV Cervical Cancer AJCC v9 10 6089 -NCIT:C181601 Stage IVA Cervical Cancer AJCC v9 11 6090 -NCIT:C181603 Stage IVB Cervical Cancer AJCC v9 11 6091 -NCIT:C186619 Cervical Cancer by FIGO Stage 2009 9 6092 -NCIT:C186620 Stage I Cervical Cancer FIGO 2009 10 6093 -NCIT:C186621 Stage IA Cervical Cancer FIGO 2009 11 6094 -NCIT:C186622 Stage IA1 Cervical Cancer FIGO 2009 12 6095 -NCIT:C186623 Stage IA2 Cervical Cancer FIGO 2009 12 6096 -NCIT:C186624 Stage IB Cervical Cancer FIGO 2009 11 6097 -NCIT:C186625 Stage IB1 Cervical Cancer FIGO 2009 12 6098 -NCIT:C186626 Stage IB2 Cervical Cancer FIGO 2009 12 6099 -NCIT:C186627 Stage II Cervical Cancer FIGO 2009 10 6100 -NCIT:C186628 Stage IIA Cervical Cancer FIGO 2009 11 6101 -NCIT:C186629 Stage IIA1 Cervical Cancer FIGO 2009 12 6102 -NCIT:C186630 Stage IIA2 Cervical Cancer FIGO 2009 12 6103 -NCIT:C186631 Stage IIB Cervical Cancer FIGO 2009 11 6104 -NCIT:C186632 Stage III Cervical Cancer FIGO 2009 10 6105 -NCIT:C186633 Stage IIIA Cervical Cancer FIGO 2009 11 6106 -NCIT:C186634 Stage IIIB Cervical Cancer FIGO 2009 11 6107 -NCIT:C186635 Stage IV Cervical Cancer FIGO 2009 10 6108 -NCIT:C186636 Stage IVA Cervical Cancer FIGO 2009 11 6109 -NCIT:C186637 Stage IVB Cervical Cancer FIGO 2009 11 6110 -NCIT:C27675 Human Papillomavirus-Related Cervical Carcinoma 9 6111 -NCIT:C27676 Human Papillomavirus-Related Cervical Squamous Cell Carcinoma 10 6112 -NCIT:C40192 Cervical Papillary Squamous Cell Carcinoma 11 6113 -NCIT:C40191 Cervical Warty Carcinoma 12 6114 -NCIT:C40194 Cervical Squamotransitional Carcinoma 12 6115 -NCIT:C27677 Human Papillomavirus-Related Cervical Adenocarcinoma 10 6116 -NCIT:C127907 Endocervical Adenocarcinoma, Usual-Type 11 6117 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 12 6118 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 12 6119 -NCIT:C40208 Cervical Villoglandular Adenocarcinoma 12 6120 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 11 6121 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 11 6122 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 11 6123 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 11 6124 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 11 6125 -NCIT:C40213 Cervical Adenoid Basal Carcinoma 9 6126 -NCIT:C4028 Cervical Squamous Cell Carcinoma 9 6127 -NCIT:C136649 Recurrent Cervical Squamous Cell Carcinoma 10 6128 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 10 6129 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 11 6130 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 11 6131 -NCIT:C174025 Unresectable Cervical Squamous Cell Carcinoma 10 6132 -NCIT:C180839 Cervical Squamous Cell Carcinoma, Not Otherwise Specified 10 6133 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 11 6134 -NCIT:C180841 Human Papillomavirus-Independent Cervical Squamous Cell Carcinoma 10 6135 -NCIT:C181034 Refractory Cervical Squamous Cell Carcinoma 10 6136 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 11 6137 -NCIT:C27676 Human Papillomavirus-Related Cervical Squamous Cell Carcinoma 10 6138 -NCIT:C40192 Cervical Papillary Squamous Cell Carcinoma 11 6139 -NCIT:C40191 Cervical Warty Carcinoma 12 6140 -NCIT:C40194 Cervical Squamotransitional Carcinoma 12 6141 -NCIT:C36094 Early Invasive Cervical Squamous Cell Carcinoma 10 6142 -NCIT:C40187 Cervical Keratinizing Squamous Cell Carcinoma 10 6143 -NCIT:C40188 Cervical Non-Keratinizing Squamous Cell Carcinoma 10 6144 -NCIT:C40189 Cervical Basaloid Carcinoma 10 6145 -NCIT:C40190 Cervical Verrucous Carcinoma 10 6146 -NCIT:C40193 Cervical Lymphoepithelioma-Like Carcinoma 10 6147 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 10 6148 -NCIT:C4029 Cervical Adenocarcinoma 9 6149 -NCIT:C127915 Cervical Adenocarcinoma Admixed with Neuroendocrine Carcinoma 10 6150 -NCIT:C136651 Recurrent Cervical Adenocarcinoma 10 6151 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 11 6152 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 10 6153 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 11 6154 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 12 6155 -NCIT:C156304 Advanced Cervical Adenocarcinoma 11 6156 -NCIT:C174029 Unresectable Cervical Adenocarcinoma 10 6157 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 11 6158 -NCIT:C180848 Human Papillomavirus-Independent Cervical Adenocarcinoma 10 6159 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 11 6160 -NCIT:C40201 Cervical Serous Adenocarcinoma 11 6161 -NCIT:C40206 Human Papillomavirus-Independent Cervical Adenocarcinoma, Gastric-Type 11 6162 -NCIT:C40254 Cervical Mesonephric Adenocarcinoma 11 6163 -NCIT:C6343 Cervical Endometrioid Adenocarcinoma 11 6164 -NCIT:C6344 Human Papillomavirus-Independent Cervical Adenocarcinoma, Clear Cell-Type 11 6165 -NCIT:C180870 Cervical Adenocarcinoma, Not Otherwise Specified 10 6166 -NCIT:C181036 Refractory Cervical Adenocarcinoma 10 6167 -NCIT:C27677 Human Papillomavirus-Related Cervical Adenocarcinoma 10 6168 -NCIT:C127907 Endocervical Adenocarcinoma, Usual-Type 11 6169 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 12 6170 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 12 6171 -NCIT:C40208 Cervical Villoglandular Adenocarcinoma 12 6172 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 11 6173 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 11 6174 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 11 6175 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 11 6176 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 11 6177 -NCIT:C36095 Cervical Mucinous Adenocarcinoma 10 6178 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 11 6179 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 11 6180 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 11 6181 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 11 6182 -NCIT:C40206 Human Papillomavirus-Independent Cervical Adenocarcinoma, Gastric-Type 11 6183 -NCIT:C36096 Early Invasive Cervical Adenocarcinoma 10 6184 -NCIT:C4520 Cervical Adenocarcinoma In Situ 10 6185 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 11 6186 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 11 6187 -NCIT:C4519 Cervical Adenosquamous Carcinoma 9 6188 -NCIT:C136650 Recurrent Cervical Adenosquamous Carcinoma 10 6189 -NCIT:C153390 Metastatic Cervical Adenosquamous Carcinoma 10 6190 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 11 6191 -NCIT:C174027 Unresectable Cervical Adenosquamous Carcinoma 10 6192 -NCIT:C40212 Cervical Poorly Differentiated Adenosquamous Carcinoma 10 6193 -NCIT:C6345 Cervical Undifferentiated Carcinoma 9 6194 -NCIT:C6346 Cervical Adenoid Cystic Carcinoma 9 6195 -NCIT:C7432 AIDS-Related Cervical Carcinoma 9 6196 -NCIT:C7453 Exocervical Carcinoma 9 6197 -NCIT:C7804 Recurrent Cervical Carcinoma 9 6198 -NCIT:C136649 Recurrent Cervical Squamous Cell Carcinoma 10 6199 -NCIT:C136650 Recurrent Cervical Adenosquamous Carcinoma 10 6200 -NCIT:C136651 Recurrent Cervical Adenocarcinoma 10 6201 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 11 6202 -NCIT:C8577 Invasive Cervical Carcinoma 9 6203 -NCIT:C90493 Cervical Cancer by AJCC v6 Stage 9 6204 -NCIT:C4000 Stage 0 Cervical Cancer AJCC v6 10 6205 -NCIT:C7803 Stage II Cervical Cancer AJCC v6 10 6206 -NCIT:C6319 Stage IIA Cervical Cancer AJCC v6 11 6207 -NCIT:C6320 Stage IIB Cervical Cancer AJCC v6 and v7 11 6208 -NCIT:C9204 Stage I Cervical Cancer AJCC v6 and v7 10 6209 -NCIT:C6313 Stage IA Cervical Cancer AJCC v6 and v7 11 6210 -NCIT:C6314 Stage IA1 Cervical Cancer AJCC v6 and v7 12 6211 -NCIT:C6315 Stage IA2 Cervical Cancer AJCC v6 and v7 12 6212 -NCIT:C6316 Stage IB Cervical Cancer AJCC v6 and v7 11 6213 -NCIT:C6317 Stage IB1 Cervical Cancer AJCC v6 and v7 12 6214 -NCIT:C6318 Stage IB2 Cervical Cancer AJCC v6 and v7 12 6215 -NCIT:C9205 Stage III Cervical Cancer AJCC v6 and v7 10 6216 -NCIT:C6321 Stage IIIB Cervical Cancer AJCC v6 and v7 11 6217 -NCIT:C6322 Stage IIIA Cervical Cancer AJCC v6 and v7 11 6218 -NCIT:C9206 Stage IV Cervical Cancer AJCC v6 and v7 10 6219 -NCIT:C6323 Stage IVA Cervical Cancer AJCC v6 and v7 11 6220 -NCIT:C6324 Stage IVB Cervical Cancer AJCC v6 and v7 11 6221 -NCIT:C91208 Cervical Cancer by AJCC v7 Stage 9 6222 -NCIT:C89550 Stage 0 Cervical Cancer AJCC v7 10 6223 -NCIT:C4520 Cervical Adenocarcinoma In Situ 11 6224 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 12 6225 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 12 6226 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 11 6227 -NCIT:C89551 Stage II Cervical Cancer AJCC v7 10 6228 -NCIT:C6320 Stage IIB Cervical Cancer AJCC v6 and v7 11 6229 -NCIT:C89552 Stage IIA Cervical Cancer AJCC v7 11 6230 -NCIT:C95172 Stage IIA1 Cervical Cancer AJCC v7 12 6231 -NCIT:C95173 Stage IIA2 Cervical Cancer AJCC v7 12 6232 -NCIT:C9204 Stage I Cervical Cancer AJCC v6 and v7 10 6233 -NCIT:C6313 Stage IA Cervical Cancer AJCC v6 and v7 11 6234 -NCIT:C6314 Stage IA1 Cervical Cancer AJCC v6 and v7 12 6235 -NCIT:C6315 Stage IA2 Cervical Cancer AJCC v6 and v7 12 6236 -NCIT:C6316 Stage IB Cervical Cancer AJCC v6 and v7 11 6237 -NCIT:C6317 Stage IB1 Cervical Cancer AJCC v6 and v7 12 6238 -NCIT:C6318 Stage IB2 Cervical Cancer AJCC v6 and v7 12 6239 -NCIT:C9205 Stage III Cervical Cancer AJCC v6 and v7 10 6240 -NCIT:C6321 Stage IIIB Cervical Cancer AJCC v6 and v7 11 6241 -NCIT:C6322 Stage IIIA Cervical Cancer AJCC v6 and v7 11 6242 -NCIT:C9206 Stage IV Cervical Cancer AJCC v6 and v7 10 6243 -NCIT:C6323 Stage IVA Cervical Cancer AJCC v6 and v7 11 6244 -NCIT:C6324 Stage IVB Cervical Cancer AJCC v6 and v7 11 6245 -NCIT:C3555 Malignant Placental Neoplasm 6 6246 -NCIT:C8546 Metastatic Malignant Neoplasm in the Placenta 7 6247 -NCIT:C8893 Placental Choriocarcinoma 7 6248 -NCIT:C40017 Rete Ovarii Adenocarcinoma 6 6249 -NCIT:C4646 Gestational Choriocarcinoma 6 6250 -NCIT:C27246 Uterine Corpus Choriocarcinoma 7 6251 -NCIT:C40442 Ovarian Gestational Choriocarcinoma 7 6252 -NCIT:C6278 Fallopian Tube Gestational Choriocarcinoma 7 6253 -NCIT:C8893 Placental Choriocarcinoma 7 6254 -NCIT:C53994 Undifferentiated Stromal Sarcoma 6 6255 -NCIT:C40066 Ovarian Undifferentiated Sarcoma 7 6256 -NCIT:C40224 Endocervical Undifferentiated Sarcoma 7 6257 -NCIT:C40272 Vaginal Undifferentiated Sarcoma 7 6258 -NCIT:C8972 Uterine Corpus Undifferentiated Sarcoma 7 6259 -NCIT:C7410 Malignant Vaginal Neoplasm 6 6260 -NCIT:C27394 Vaginal Melanoma 7 6261 -NCIT:C3917 Vaginal Carcinoma 7 6262 -NCIT:C128073 Vaginal Neuroendocrine Carcinoma 8 6263 -NCIT:C128075 Vaginal Large Cell Neuroendocrine Carcinoma 9 6264 -NCIT:C40263 Vaginal Small Cell Neuroendocrine Carcinoma 9 6265 -NCIT:C139657 Vaginal Cancer by AJCC v8 Stage 8 6266 -NCIT:C139658 Stage I Vaginal Cancer AJCC v8 9 6267 -NCIT:C139659 Stage IA Vaginal Cancer AJCC v8 10 6268 -NCIT:C139660 Stage IB Vaginal Cancer AJCC v8 10 6269 -NCIT:C139661 Stage II Vaginal Cancer AJCC v8 9 6270 -NCIT:C139662 Stage IIA Vaginal Cancer AJCC v8 10 6271 -NCIT:C139664 Stage IIB Vaginal Cancer AJCC v8 10 6272 -NCIT:C139665 Stage III Vaginal Cancer AJCC v8 9 6273 -NCIT:C139667 Stage IV Vaginal Cancer AJCC v8 9 6274 -NCIT:C139669 Stage IVA Vaginal Cancer AJCC v8 10 6275 -NCIT:C139670 Stage IVB Vaginal Cancer AJCC v8 10 6276 -NCIT:C156065 Metastatic Vaginal Carcinoma 8 6277 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 9 6278 -NCIT:C170788 Advanced Vaginal Carcinoma 9 6279 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 10 6280 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 10 6281 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 10 6282 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 11 6283 -NCIT:C181028 Metastatic Vaginal Adenosquamous Carcinoma 9 6284 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 10 6285 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 9 6286 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 10 6287 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 11 6288 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 9 6289 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 10 6290 -NCIT:C174509 Refractory Vaginal Carcinoma 8 6291 -NCIT:C185303 Refractory Vaginal Squamous Cell Carcinoma 9 6292 -NCIT:C175434 Unresectable Vaginal Carcinoma 8 6293 -NCIT:C180915 Vaginal Squamous Cell Carcinoma 8 6294 -NCIT:C128060 Vaginal Papillary Carcinoma 9 6295 -NCIT:C180917 Human Papillomavirus-Related Vaginal Squamous Cell Carcinoma 9 6296 -NCIT:C40248 Vaginal Warty Carcinoma 10 6297 -NCIT:C180919 Human Papillomavirus-Independent Vaginal Squamous Cell Carcinoma 9 6298 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 9 6299 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 10 6300 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 11 6301 -NCIT:C185302 Recurrent Vaginal Squamous Cell Carcinoma 9 6302 -NCIT:C185303 Refractory Vaginal Squamous Cell Carcinoma 9 6303 -NCIT:C40243 Vaginal Keratinizing Squamous Cell Carcinoma 9 6304 -NCIT:C40244 Vaginal Non-Keratinizing Squamous Cell Carcinoma 9 6305 -NCIT:C40245 Vaginal Basaloid Carcinoma 9 6306 -NCIT:C6325 Vaginal Verrucous Carcinoma 9 6307 -NCIT:C7736 Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 6308 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 6309 -NCIT:C40260 Vaginal Adenosquamous Carcinoma 8 6310 -NCIT:C181028 Metastatic Vaginal Adenosquamous Carcinoma 9 6311 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 10 6312 -NCIT:C40261 Vaginal Adenoid Cystic Carcinoma 8 6313 -NCIT:C40262 Vaginal Adenoid Basal Carcinoma 8 6314 -NCIT:C40264 Vaginal Undifferentiated Carcinoma 8 6315 -NCIT:C7860 Recurrent Vaginal Carcinoma 8 6316 -NCIT:C185302 Recurrent Vaginal Squamous Cell Carcinoma 9 6317 -NCIT:C7981 Vaginal Adenocarcinoma 8 6318 -NCIT:C180943 Human Papillomavirus-Related Vaginal Adenocarcinoma 9 6319 -NCIT:C180947 Vaginal Adenocarcinoma of Skene Gland Origin 9 6320 -NCIT:C40251 Vaginal Endometrioid Adenocarcinoma 9 6321 -NCIT:C40252 Vaginal Mucinous Adenocarcinoma 9 6322 -NCIT:C180945 Vaginal Mucinous Adenocarcinoma, Gastric-Type 10 6323 -NCIT:C180946 Vaginal Mucinous Adenocarcinoma, Intestinal-Type 10 6324 -NCIT:C40253 Vaginal Mesonephric Adenocarcinoma 9 6325 -NCIT:C7735 Vaginal Clear Cell Adenocarcinoma 9 6326 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 9 6327 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 10 6328 -NCIT:C90347 Vaginal Cancer by AJCC v6 Stage 8 6329 -NCIT:C7597 Stage IV Vaginal Cancer AJCC v6 and v7 9 6330 -NCIT:C7859 Stage IVA Vaginal Cancer AJCC v6 and v7 10 6331 -NCIT:C9355 Stage IVB Vaginal Cancer AJCC v6 and v7 10 6332 -NCIT:C7855 Stage 0 Vaginal Cancer AJCC v6 9 6333 -NCIT:C7856 Stage I Vaginal Cancer AJCC v6 and v7 9 6334 -NCIT:C7857 Stage II Vaginal Cancer AJCC v6 and v7 9 6335 -NCIT:C7858 Stage III Vaginal Cancer AJCC v6 and v7 9 6336 -NCIT:C91204 Vaginal Cancer by AJCC v7 Stage 8 6337 -NCIT:C7597 Stage IV Vaginal Cancer AJCC v6 and v7 9 6338 -NCIT:C7859 Stage IVA Vaginal Cancer AJCC v6 and v7 10 6339 -NCIT:C9355 Stage IVB Vaginal Cancer AJCC v6 and v7 10 6340 -NCIT:C7856 Stage I Vaginal Cancer AJCC v6 and v7 9 6341 -NCIT:C7857 Stage II Vaginal Cancer AJCC v6 and v7 9 6342 -NCIT:C7858 Stage III Vaginal Cancer AJCC v6 and v7 9 6343 -NCIT:C89476 Stage 0 Vaginal Cancer AJCC v7 9 6344 -NCIT:C40276 Malignant Vaginal Mixed Epithelial and Mesenchymal Neoplasm 7 6345 -NCIT:C40277 Vaginal Adenosarcoma 8 6346 -NCIT:C40278 Vaginal Carcinosarcoma 8 6347 -NCIT:C40279 Malignant Vaginal Mixed Tumor Resembling Synovial Sarcoma 8 6348 -NCIT:C6333 Metastatic Malignant Neoplasm in the Vagina 7 6349 -NCIT:C6379 Vaginal Yolk Sac Tumor 7 6350 -NCIT:C7737 Vaginal Sarcoma 7 6351 -NCIT:C128080 Vaginal Rhabdomyosarcoma 8 6352 -NCIT:C40268 Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 9 6353 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 6354 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 6355 -NCIT:C40271 Vaginal Low Grade Endometrioid Stromal Sarcoma 8 6356 -NCIT:C40272 Vaginal Undifferentiated Sarcoma 8 6357 -NCIT:C40277 Vaginal Adenosarcoma 8 6358 -NCIT:C6326 Vaginal Leiomyosarcoma 8 6359 -NCIT:C7431 Malignant Ovarian Neoplasm 6 6360 -NCIT:C165261 Solid Pseudopapillary Neoplasm of the Ovary 7 6361 -NCIT:C178441 Ovarian Melanoma 7 6362 -NCIT:C179474 Ovarian Neuroectodermal-Type Tumor 7 6363 -NCIT:C190659 Childhood Malignant Ovarian Neoplasm 7 6364 -NCIT:C171169 Extrarenal Rhabdoid Tumor of the Ovary 8 6365 -NCIT:C171170 Recurrent Extrarenal Rhabdoid Tumor of the Ovary 9 6366 -NCIT:C171171 Refractory Extrarenal Rhabdoid Tumor of the Ovary 9 6367 -NCIT:C189334 Childhood Ovarian Small Cell Carcinoma, Hypercalcemic Type 8 6368 -NCIT:C68629 Childhood Malignant Ovarian Germ Cell Tumor 8 6369 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 9 6370 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 9 6371 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 9 6372 -NCIT:C6550 Childhood Ovarian Dysgerminoma 9 6373 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 9 6374 -NCIT:C40021 Ovarian Lymphoma 7 6375 -NCIT:C40026 Malignant Ovarian Epithelial Tumor 7 6376 -NCIT:C40025 Malignant Ovarian Serous Tumor 8 6377 -NCIT:C67092 Ovarian Serous Adenocarcinofibroma 9 6378 -NCIT:C7550 Ovarian Serous Adenocarcinoma 9 6379 -NCIT:C105555 Ovarian High Grade Serous Adenocarcinoma 10 6380 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 11 6381 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 11 6382 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 11 6383 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 6384 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 11 6385 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 6386 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 12 6387 -NCIT:C105556 Ovarian Low Grade Serous Adenocarcinoma 10 6388 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 11 6389 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 11 6390 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 10 6391 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 11 6392 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 11 6393 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 11 6394 -NCIT:C160781 Unresectable Ovarian Serous Adenocarcinoma 10 6395 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 11 6396 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 6397 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 10 6398 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 11 6399 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 12 6400 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 12 6401 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 11 6402 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 6403 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 12 6404 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 11 6405 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 12 6406 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 12 6407 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 11 6408 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 12 6409 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 6410 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 10 6411 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 11 6412 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 11 6413 -NCIT:C6256 Ovarian Serous Surface Papillary Adenocarcinoma 10 6414 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 10 6415 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 11 6416 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 12 6417 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 12 6418 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 11 6419 -NCIT:C40033 Malignant Ovarian Mucinous Tumor 8 6420 -NCIT:C40034 Ovarian Mucinous Adenocarcinofibroma 9 6421 -NCIT:C5243 Ovarian Mucinous Adenocarcinoma 9 6422 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 10 6423 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 10 6424 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 10 6425 -NCIT:C183245 Unresectable Ovarian Mucinous Adenocarcinoma 10 6426 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 10 6427 -NCIT:C40051 Malignant Ovarian Endometrioid Tumor 8 6428 -NCIT:C7979 Ovarian Endometrioid Adenocarcinoma 9 6429 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 10 6430 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 10 6431 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 10 6432 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 11 6433 -NCIT:C186273 Unresectable Ovarian Endometrioid Adenocarcinoma 10 6434 -NCIT:C40061 Ovarian Endometrioid Adenocarcinoma with Squamous Differentiation 10 6435 -NCIT:C9192 Ovarian Carcinosarcoma 9 6436 -NCIT:C153347 Recurrent Ovarian Carcinosarcoma 10 6437 -NCIT:C170933 Metastatic Ovarian Carcinosarcoma 10 6438 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 11 6439 -NCIT:C40077 Malignant Ovarian Clear Cell Tumor 8 6440 -NCIT:C40078 Ovarian Clear Cell Adenocarcinoma 9 6441 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 10 6442 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 10 6443 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 11 6444 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 10 6445 -NCIT:C7980 Ovarian Clear Cell Cystadenocarcinoma 10 6446 -NCIT:C40079 Ovarian Clear Cell Adenocarcinofibroma 9 6447 -NCIT:C4908 Ovarian Carcinoma 8 6448 -NCIT:C128081 Ovarian Cancer by FIGO Stage 9 6449 -NCIT:C128082 FIGO Stage IC1 Ovarian Cancer 10 6450 -NCIT:C128083 FIGO Stage IC2 Ovarian Cancer 10 6451 -NCIT:C128084 FIGO Stage IC3 Ovarian Cancer 10 6452 -NCIT:C128085 FIGO Stage II Ovarian Cancer 10 6453 -NCIT:C5223 Stage IIA Ovarian Cancer AJCC V6 and v7 11 6454 -NCIT:C5224 Stage IIB Ovarian Cancer AJCC v6 and v7 11 6455 -NCIT:C128086 FIGO Stage III Ovarian Cancer 10 6456 -NCIT:C128087 FIGO Stage IIIA Ovarian Cancer 11 6457 -NCIT:C128088 FIGO Stage IIIA1 Ovarian Cancer 12 6458 -NCIT:C128089 FIGO Stage IIIA1(i) Ovarian Cancer 13 6459 -NCIT:C128090 FIGO Stage IIIA1(ii) Ovarian Cancer 13 6460 -NCIT:C128091 FIGO Stage IIIA2 Ovarian Cancer 12 6461 -NCIT:C128092 FIGO Stage IIIB Ovarian Cancer 11 6462 -NCIT:C128093 FIGO Stage IIIC Ovarian Cancer 11 6463 -NCIT:C128094 FIGO Stage IVA Ovarian Cancer 10 6464 -NCIT:C128095 FIGO Stage IVB Ovarian Cancer 10 6465 -NCIT:C7829 Stage I Ovarian Cancer AJCC v6 and v7 10 6466 -NCIT:C5220 Stage IA Ovarian Cancer AJCC v6 and v7 11 6467 -NCIT:C5221 Stage IB Ovarian Cancer AJCC v6 and v7 11 6468 -NCIT:C5222 Stage IC Ovarian Cancer AJCC v6 and v7 11 6469 -NCIT:C7832 Stage IV Ovarian Cancer AJCC v6 and v7 10 6470 -NCIT:C128106 Ovarian Cancer by AJCC v6 and v7 Stage 9 6471 -NCIT:C7829 Stage I Ovarian Cancer AJCC v6 and v7 10 6472 -NCIT:C5220 Stage IA Ovarian Cancer AJCC v6 and v7 11 6473 -NCIT:C5221 Stage IB Ovarian Cancer AJCC v6 and v7 11 6474 -NCIT:C5222 Stage IC Ovarian Cancer AJCC v6 and v7 11 6475 -NCIT:C7830 Stage II Ovarian Cancer AJCC v6 and v7 10 6476 -NCIT:C5223 Stage IIA Ovarian Cancer AJCC V6 and v7 11 6477 -NCIT:C5224 Stage IIB Ovarian Cancer AJCC v6 and v7 11 6478 -NCIT:C5225 Stage IIC Ovarian Cancer AJCC v6 and v7 11 6479 -NCIT:C7831 Stage III Ovarian Cancer AJCC v6 and v7 10 6480 -NCIT:C6258 Stage IIIA Ovarian Cancer AJCC v6 and v7 11 6481 -NCIT:C6259 Stage IIIB Ovarian Cancer AJCC v6 and v7 11 6482 -NCIT:C6260 Stage IIIC Ovarian Cancer AJCC v6 and v7 11 6483 -NCIT:C7832 Stage IV Ovarian Cancer AJCC v6 and v7 10 6484 -NCIT:C139963 Ovarian Cancer by AJCC v8 Stage 9 6485 -NCIT:C139964 Stage I Ovarian Cancer AJCC v8 10 6486 -NCIT:C139965 Stage IA Ovarian Cancer AJCC v8 11 6487 -NCIT:C139966 Stage IB Ovarian Cancer AJCC v8 11 6488 -NCIT:C139967 Stage IC Ovarian Cancer AJCC v8 11 6489 -NCIT:C139968 Stage II Ovarian Cancer AJCC v8 10 6490 -NCIT:C139969 Stage IIA Ovarian Cancer AJCC v8 11 6491 -NCIT:C139970 Stage IIB Ovarian Cancer AJCC v8 11 6492 -NCIT:C139971 Stage III Ovarian Cancer AJCC v8 10 6493 -NCIT:C139972 Stage IIIA Ovarian Cancer AJCC v8 11 6494 -NCIT:C139973 Stage IIIA1 Ovarian Cancer AJCC v8 12 6495 -NCIT:C139974 Stage IIIA2 Ovarian Cancer AJCC v8 12 6496 -NCIT:C139975 Stage IIIB Ovarian Cancer AJCC v8 11 6497 -NCIT:C139976 Stage IIIC Ovarian Cancer AJCC v8 11 6498 -NCIT:C139977 Stage IV Ovarian Cancer AJCC v8 10 6499 -NCIT:C139978 Stage IVA Ovarian Cancer AJCC v8 11 6500 -NCIT:C139979 Stage IVB Ovarian Cancer AJCC v8 11 6501 -NCIT:C150091 Refractory Ovarian Carcinoma 9 6502 -NCIT:C147561 Platinum-Resistant Ovarian Carcinoma 10 6503 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 11 6504 -NCIT:C179459 Unresectable Platinum-Resistant Ovarian Carcinoma 11 6505 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 11 6506 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 12 6507 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 12 6508 -NCIT:C170968 Refractory Ovarian Adenocarcinoma 10 6509 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 11 6510 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 11 6511 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 12 6512 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 12 6513 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 11 6514 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 11 6515 -NCIT:C178671 Refractory Ovarian Seromucinous Carcinoma 10 6516 -NCIT:C178682 Refractory Ovarian Transitional Cell Carcinoma 10 6517 -NCIT:C178683 Refractory Ovarian Undifferentiated Carcinoma 10 6518 -NCIT:C178700 Platinum-Refractory Ovarian Carcinoma 10 6519 -NCIT:C179207 Refractory Ovarian Squamous Cell Carcinoma 10 6520 -NCIT:C183126 Refractory Malignant Ovarian Brenner Tumor 10 6521 -NCIT:C156064 Metastatic Ovarian Carcinoma 9 6522 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 10 6523 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 11 6524 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 12 6525 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 12 6526 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 11 6527 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 6528 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 12 6529 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 11 6530 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 12 6531 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 12 6532 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 11 6533 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 12 6534 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 6535 -NCIT:C165458 Advanced Ovarian Carcinoma 10 6536 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 11 6537 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 12 6538 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 12 6539 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 11 6540 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 11 6541 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 11 6542 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 11 6543 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 10 6544 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 11 6545 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 12 6546 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 6547 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 11 6548 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 10 6549 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 11 6550 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 10 6551 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 11 6552 -NCIT:C172234 Metastatic Ovarian Undifferentiated Carcinoma 10 6553 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 10 6554 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 11 6555 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 11 6556 -NCIT:C180333 Metastatic Microsatellite Stable Ovarian Carcinoma 10 6557 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 11 6558 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 10 6559 -NCIT:C27391 Metastatic Ovarian Small Cell Carcinoma, Hypercalcemic Type 10 6560 -NCIT:C159902 Platinum-Sensitive Ovarian Carcinoma 9 6561 -NCIT:C188391 Recurrent Platinum-Sensitive Ovarian Carcinoma 10 6562 -NCIT:C167073 Unresectable Ovarian Carcinoma 9 6563 -NCIT:C160781 Unresectable Ovarian Serous Adenocarcinoma 10 6564 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 11 6565 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 6566 -NCIT:C172235 Unresectable Ovarian Undifferentiated Carcinoma 10 6567 -NCIT:C179459 Unresectable Platinum-Resistant Ovarian Carcinoma 10 6568 -NCIT:C183245 Unresectable Ovarian Mucinous Adenocarcinoma 10 6569 -NCIT:C186273 Unresectable Ovarian Endometrioid Adenocarcinoma 10 6570 -NCIT:C171032 Ovarian Neuroendocrine Carcinoma 9 6571 -NCIT:C40440 Ovarian Small Cell Carcinoma, Pulmonary-Type 10 6572 -NCIT:C5238 Ovarian Large Cell Neuroendocrine Carcinoma 10 6573 -NCIT:C179334 Ovarian Dedifferentiated Carcinoma 9 6574 -NCIT:C180332 Microsatellite Stable Ovarian Carcinoma 9 6575 -NCIT:C180333 Metastatic Microsatellite Stable Ovarian Carcinoma 10 6576 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 11 6577 -NCIT:C27390 Ovarian Small Cell Carcinoma 9 6578 -NCIT:C40439 Ovarian Small Cell Carcinoma, Hypercalcemic Type 10 6579 -NCIT:C189334 Childhood Ovarian Small Cell Carcinoma, Hypercalcemic Type 11 6580 -NCIT:C27391 Metastatic Ovarian Small Cell Carcinoma, Hypercalcemic Type 11 6581 -NCIT:C40440 Ovarian Small Cell Carcinoma, Pulmonary-Type 10 6582 -NCIT:C36102 Hereditary Ovarian Carcinoma 9 6583 -NCIT:C148024 BRCA-Associated Ovarian Carcinoma 10 6584 -NCIT:C148025 Recurrent BRCA- Associated Ovarian Carcinoma 11 6585 -NCIT:C40090 Ovarian Seromucinous Carcinoma 9 6586 -NCIT:C178669 Recurrent Ovarian Seromucinous Carcinoma 10 6587 -NCIT:C178671 Refractory Ovarian Seromucinous Carcinoma 10 6588 -NCIT:C40093 Ovarian Squamous Cell Carcinoma 9 6589 -NCIT:C179207 Refractory Ovarian Squamous Cell Carcinoma 10 6590 -NCIT:C4270 Malignant Ovarian Brenner Tumor 9 6591 -NCIT:C153818 Recurrent Malignant Ovarian Brenner Tumor 10 6592 -NCIT:C183126 Refractory Malignant Ovarian Brenner Tumor 10 6593 -NCIT:C4509 Ovarian Undifferentiated Carcinoma 9 6594 -NCIT:C170754 Recurrent Ovarian Undifferentiated Carcinoma 10 6595 -NCIT:C172234 Metastatic Ovarian Undifferentiated Carcinoma 10 6596 -NCIT:C172235 Unresectable Ovarian Undifferentiated Carcinoma 10 6597 -NCIT:C178683 Refractory Ovarian Undifferentiated Carcinoma 10 6598 -NCIT:C5240 Ovarian Transitional Cell Carcinoma 9 6599 -NCIT:C153819 Recurrent Ovarian Transitional Cell Carcinoma 10 6600 -NCIT:C178682 Refractory Ovarian Transitional Cell Carcinoma 10 6601 -NCIT:C7700 Ovarian Adenocarcinoma 9 6602 -NCIT:C153614 Recurrent Ovarian Adenocarcinoma 10 6603 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 11 6604 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 11 6605 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 12 6606 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 12 6607 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 12 6608 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 11 6609 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 11 6610 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 12 6611 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 11 6612 -NCIT:C170968 Refractory Ovarian Adenocarcinoma 10 6613 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 11 6614 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 11 6615 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 12 6616 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 12 6617 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 11 6618 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 11 6619 -NCIT:C179208 Ovarian Signet Ring Cell Carcinoma 10 6620 -NCIT:C179321 Ovarian Mesonephric-Like Adenocarcinoma 10 6621 -NCIT:C179339 Ovarian Mixed Cell Adenocarcinoma 10 6622 -NCIT:C40078 Ovarian Clear Cell Adenocarcinoma 10 6623 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 11 6624 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 11 6625 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 12 6626 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 11 6627 -NCIT:C7980 Ovarian Clear Cell Cystadenocarcinoma 11 6628 -NCIT:C5228 Ovarian Cystadenocarcinoma 10 6629 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 11 6630 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 12 6631 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 11 6632 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 11 6633 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 12 6634 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 13 6635 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 13 6636 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 12 6637 -NCIT:C7980 Ovarian Clear Cell Cystadenocarcinoma 11 6638 -NCIT:C5243 Ovarian Mucinous Adenocarcinoma 10 6639 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 11 6640 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 11 6641 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 11 6642 -NCIT:C183245 Unresectable Ovarian Mucinous Adenocarcinoma 11 6643 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 11 6644 -NCIT:C7550 Ovarian Serous Adenocarcinoma 10 6645 -NCIT:C105555 Ovarian High Grade Serous Adenocarcinoma 11 6646 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 12 6647 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 12 6648 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 12 6649 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 13 6650 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 12 6651 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 13 6652 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 13 6653 -NCIT:C105556 Ovarian Low Grade Serous Adenocarcinoma 11 6654 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 12 6655 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 12 6656 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 11 6657 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 12 6658 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 12 6659 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 12 6660 -NCIT:C160781 Unresectable Ovarian Serous Adenocarcinoma 11 6661 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 12 6662 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 13 6663 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 11 6664 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 12 6665 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 13 6666 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 13 6667 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 12 6668 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 13 6669 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 13 6670 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 12 6671 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 13 6672 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 13 6673 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 12 6674 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 13 6675 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 13 6676 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 11 6677 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 12 6678 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 12 6679 -NCIT:C6256 Ovarian Serous Surface Papillary Adenocarcinoma 11 6680 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 11 6681 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 12 6682 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 13 6683 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 13 6684 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 12 6685 -NCIT:C7979 Ovarian Endometrioid Adenocarcinoma 10 6686 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 11 6687 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 11 6688 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 11 6689 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 12 6690 -NCIT:C186273 Unresectable Ovarian Endometrioid Adenocarcinoma 11 6691 -NCIT:C40061 Ovarian Endometrioid Adenocarcinoma with Squamous Differentiation 11 6692 -NCIT:C7833 Recurrent Ovarian Carcinoma 9 6693 -NCIT:C148025 Recurrent BRCA- Associated Ovarian Carcinoma 10 6694 -NCIT:C153614 Recurrent Ovarian Adenocarcinoma 10 6695 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 11 6696 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 11 6697 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 12 6698 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 12 6699 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 12 6700 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 11 6701 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 11 6702 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 12 6703 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 11 6704 -NCIT:C153818 Recurrent Malignant Ovarian Brenner Tumor 10 6705 -NCIT:C153819 Recurrent Ovarian Transitional Cell Carcinoma 10 6706 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 10 6707 -NCIT:C170754 Recurrent Ovarian Undifferentiated Carcinoma 10 6708 -NCIT:C178669 Recurrent Ovarian Seromucinous Carcinoma 10 6709 -NCIT:C188391 Recurrent Platinum-Sensitive Ovarian Carcinoma 10 6710 -NCIT:C190201 Locally Recurrent Ovarian Carcinoma 10 6711 -NCIT:C40035 Adenocarcinofibroma 7 6712 -NCIT:C40034 Ovarian Mucinous Adenocarcinofibroma 8 6713 -NCIT:C40079 Ovarian Clear Cell Adenocarcinofibroma 8 6714 -NCIT:C67092 Ovarian Serous Adenocarcinofibroma 8 6715 -NCIT:C40443 Ovarian Wilms Tumor 7 6716 -NCIT:C40444 Ovarian Malignant Mesothelioma 7 6717 -NCIT:C4514 Malignant Ovarian Germ Cell Tumor 7 6718 -NCIT:C39986 Ovarian Primitive Germ Cell Tumor 8 6719 -NCIT:C102870 Ovarian Non-Dysgerminomatous Germ Cell Tumor 9 6720 -NCIT:C39990 Ovarian Polyembryoma 10 6721 -NCIT:C8739 Stage I Ovarian Polyembryoma AJCC v6 and v7 11 6722 -NCIT:C8740 Stage II Ovarian Polyembryoma AJCC v6 and v7 11 6723 -NCIT:C8741 Stage III Ovarian Polyembryoma AJCC v6 and v7 11 6724 -NCIT:C8742 Stage IV Ovarian Polyembryoma AJCC v6 and v7 11 6725 -NCIT:C39991 Non-Gestational Ovarian Choriocarcinoma 10 6726 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 11 6727 -NCIT:C8107 Ovarian Yolk Sac Tumor 10 6728 -NCIT:C39987 Ovarian Yolk Sac Tumor, Polyvesicular Vitelline Pattern 11 6729 -NCIT:C39988 Ovarian Yolk Sac Tumor, Glandular Pattern 11 6730 -NCIT:C39989 Ovarian Yolk Sac Tumor, Hepatoid Pattern 11 6731 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 11 6732 -NCIT:C8735 Stage I Ovarian Yolk Sac Tumor AJCC v6 and v7 11 6733 -NCIT:C8736 Stage II Ovarian Yolk Sac Tumor AJCC v6 and v7 11 6734 -NCIT:C8737 Stage III Ovarian Yolk Sac Tumor AJCC v6 and v7 11 6735 -NCIT:C8738 Stage IV Ovarian Yolk Sac Tumor AJCC v6 and v7 11 6736 -NCIT:C8108 Ovarian Embryonal Carcinoma 10 6737 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 11 6738 -NCIT:C8725 Stage II Ovarian Embryonal Carcinoma AJCC v6 and v7 11 6739 -NCIT:C8728 Stage III Ovarian Embryonal Carcinoma AJCC v6 and v7 11 6740 -NCIT:C8729 Stage IV Ovarian Embryonal Carcinoma AJCC v6 and v7 11 6741 -NCIT:C8734 Stage I Ovarian Embryonal Carcinoma AJCC v6 and v7 11 6742 -NCIT:C8106 Ovarian Dysgerminoma 9 6743 -NCIT:C6550 Childhood Ovarian Dysgerminoma 10 6744 -NCIT:C8723 Stage I Ovarian Dysgerminoma AJCC v6 and v7 10 6745 -NCIT:C8724 Stage II Ovarian Dysgerminoma AJCC v6 and v7 10 6746 -NCIT:C8726 Stage III Ovarian Dysgerminoma AJCC v6 and v7 10 6747 -NCIT:C8727 Stage IV Ovarian Dysgerminoma AJCC v6 and v7 10 6748 -NCIT:C8114 Ovarian Mixed Germ Cell Tumor 9 6749 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 10 6750 -NCIT:C39995 Malignant Ovarian Teratoma 8 6751 -NCIT:C4291 Thyroid Carcinoma Arising in Struma Ovarii 8 6752 -NCIT:C68629 Childhood Malignant Ovarian Germ Cell Tumor 8 6753 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 9 6754 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 9 6755 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 9 6756 -NCIT:C6550 Childhood Ovarian Dysgerminoma 9 6757 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 9 6758 -NCIT:C8083 Stage I Ovarian Germ Cell Tumor AJCC v6 and v7 8 6759 -NCIT:C6291 Stage IA Ovarian Germ Cell Tumor AJCC v6 and v7 9 6760 -NCIT:C6292 Stage IB Ovarian Germ Cell Tumor AJCC v6 and v7 9 6761 -NCIT:C6293 Stage IC Ovarian Germ Cell Tumor AJCC v6 and v7 9 6762 -NCIT:C8723 Stage I Ovarian Dysgerminoma AJCC v6 and v7 9 6763 -NCIT:C8734 Stage I Ovarian Embryonal Carcinoma AJCC v6 and v7 9 6764 -NCIT:C8735 Stage I Ovarian Yolk Sac Tumor AJCC v6 and v7 9 6765 -NCIT:C8739 Stage I Ovarian Polyembryoma AJCC v6 and v7 9 6766 -NCIT:C8743 Stage I Ovarian Teratoma AJCC v6 and v7 9 6767 -NCIT:C8084 Stage II Ovarian Germ Cell Tumor AJCC v6 and v7 8 6768 -NCIT:C6294 Stage IIC Ovarian Germ Cell Tumor AJCC v6 and v7 9 6769 -NCIT:C6295 Stage IIB Ovarian Germ Cell Tumor AJCC v6 and v7 9 6770 -NCIT:C6296 Stage IIA Ovarian Germ Cell Tumor AJCC v6 and v7 9 6771 -NCIT:C8724 Stage II Ovarian Dysgerminoma AJCC v6 and v7 9 6772 -NCIT:C8725 Stage II Ovarian Embryonal Carcinoma AJCC v6 and v7 9 6773 -NCIT:C8736 Stage II Ovarian Yolk Sac Tumor AJCC v6 and v7 9 6774 -NCIT:C8740 Stage II Ovarian Polyembryoma AJCC v6 and v7 9 6775 -NCIT:C8744 Stage II Ovarian Teratoma AJCC v6 and v7 9 6776 -NCIT:C8085 Stage III Ovarian Germ Cell Tumor AJCC v6 and v7 8 6777 -NCIT:C6297 Stage IIIA Ovarian Germ Cell Tumor AJCC v6 and v7 9 6778 -NCIT:C6298 Stage IIIB Ovarian Germ Cell Tumor AJCC v6 and v7 9 6779 -NCIT:C6299 Stage IIIC Ovarian Germ Cell Tumor AJCC v6 and v7 9 6780 -NCIT:C8726 Stage III Ovarian Dysgerminoma AJCC v6 and v7 9 6781 -NCIT:C8728 Stage III Ovarian Embryonal Carcinoma AJCC v6 and v7 9 6782 -NCIT:C8737 Stage III Ovarian Yolk Sac Tumor AJCC v6 and v7 9 6783 -NCIT:C8741 Stage III Ovarian Polyembryoma AJCC v6 and v7 9 6784 -NCIT:C8745 Stage III Ovarian Teratoma AJCC v6 and v7 9 6785 -NCIT:C8086 Stage IV Ovarian Germ Cell Tumor AJCC v6 and v7 8 6786 -NCIT:C8727 Stage IV Ovarian Dysgerminoma AJCC v6 and v7 9 6787 -NCIT:C8729 Stage IV Ovarian Embryonal Carcinoma AJCC v6 and v7 9 6788 -NCIT:C8738 Stage IV Ovarian Yolk Sac Tumor AJCC v6 and v7 9 6789 -NCIT:C8742 Stage IV Ovarian Polyembryoma AJCC v6 and v7 9 6790 -NCIT:C8746 Stage IV Ovarian Teratoma AJCC v6 and v7 9 6791 -NCIT:C8087 Recurrent Ovarian Germ Cell Tumor 8 6792 -NCIT:C4515 Ovarian Choriocarcinoma 7 6793 -NCIT:C39991 Non-Gestational Ovarian Choriocarcinoma 8 6794 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 9 6795 -NCIT:C40442 Ovarian Gestational Choriocarcinoma 8 6796 -NCIT:C8730 Stage I Ovarian Choriocarcinoma 8 6797 -NCIT:C8731 Stage II Ovarian Choriocarcinoma 8 6798 -NCIT:C8732 Stage III Ovarian Choriocarcinoma 8 6799 -NCIT:C8733 Stage IV Ovarian Choriocarcinoma 8 6800 -NCIT:C7456 Metastatic Malignant Neoplasm in the Ovary 7 6801 -NCIT:C3153 Krukenberg Tumor 8 6802 -NCIT:C8053 Malignant Ovarian Sex Cord-Stromal Tumor 7 6803 -NCIT:C39981 Malignant Ovarian Steroid Cell Tumor 8 6804 -NCIT:C4210 Poorly Differentiated Ovarian Sertoli-Leydig Cell Tumor 8 6805 -NCIT:C39973 Poorly Differentiated Ovarian Sertoli-Leydig Cell Tumor, Variant with Heterologous Elements 9 6806 -NCIT:C6929 Malignant Ovarian Thecoma 8 6807 -NCIT:C6263 Malignant Ovarian Luteinized Thecoma 9 6808 -NCIT:C8403 Malignant Ovarian Granulosa Cell Tumor 8 6809 -NCIT:C160619 Recurrent Malignant Ovarian Granulosa Cell Tumor 9 6810 -NCIT:C8267 Ovarian Sarcoma 7 6811 -NCIT:C40063 Ovarian Low Grade Endometrioid Stromal Sarcoma 8 6812 -NCIT:C40066 Ovarian Undifferentiated Sarcoma 8 6813 -NCIT:C5232 Ovarian Angiosarcoma 8 6814 -NCIT:C5233 Ovarian Fibrosarcoma 8 6815 -NCIT:C5234 Ovarian Leiomyosarcoma 8 6816 -NCIT:C5236 Ovarian Rhabdomyosarcoma 8 6817 -NCIT:C6419 Ovarian Liposarcoma 8 6818 -NCIT:C5235 Ovarian Myxoid Liposarcoma 9 6819 -NCIT:C7317 Ovarian Adenosarcoma 8 6820 -NCIT:C7480 Malignant Fallopian Tube Neoplasm 6 6821 -NCIT:C126464 Fallopian Tube Lymphoma 7 6822 -NCIT:C3867 Fallopian Tube Carcinoma 7 6823 -NCIT:C115429 Recurrent Fallopian Tube Carcinoma 8 6824 -NCIT:C170750 Recurrent Platinum-Resistant Fallopian Tube Carcinoma 9 6825 -NCIT:C170755 Recurrent Fallopian Tube Undifferentiated Carcinoma 9 6826 -NCIT:C170757 Recurrent Fallopian Tube Transitional Cell Carcinoma 9 6827 -NCIT:C170766 Recurrent Fallopian Tube Adenocarcinoma 9 6828 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 10 6829 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 10 6830 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 10 6831 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 10 6832 -NCIT:C191395 Recurrent Platinum-Sensitive Fallopian Tube Carcinoma 9 6833 -NCIT:C139983 Fallopian Tube Cancer by AJCC v8 Stage 8 6834 -NCIT:C139984 Stage I Fallopian Tube Cancer AJCC v8 9 6835 -NCIT:C139985 Stage IA Fallopian Tube Cancer AJCC v8 10 6836 -NCIT:C139986 Stage IB Fallopian Tube Cancer AJCC v8 10 6837 -NCIT:C139987 Stage IC Fallopian Tube Cancer AJCC v8 10 6838 -NCIT:C139988 Stage II Fallopian Tube Cancer AJCC v8 9 6839 -NCIT:C139989 Stage IIA Fallopian Tube Cancer AJCC v8 10 6840 -NCIT:C139990 Stage IIB Fallopian Tube Cancer AJCC v8 10 6841 -NCIT:C139991 Stage III Fallopian Tube Cancer AJCC v8 9 6842 -NCIT:C139992 Stage IIIA Fallopian Tube Cancer AJCC v8 10 6843 -NCIT:C139993 Stage IIIA1 Fallopian Tube Cancer AJCC v8 11 6844 -NCIT:C139994 Stage IIIA2 Fallopian Tube Cancer AJCC v8 11 6845 -NCIT:C139995 Stage IIIB Fallopian Tube Cancer AJCC v8 10 6846 -NCIT:C139996 Stage IIIC Fallopian Tube Cancer AJCC v8 10 6847 -NCIT:C139997 Stage IV Fallopian Tube Cancer AJCC v8 9 6848 -NCIT:C139998 Stage IVA Fallopian Tube Cancer AJCC v8 10 6849 -NCIT:C139999 Stage IVB Fallopian Tube Cancer AJCC v8 10 6850 -NCIT:C152047 Refractory Fallopian Tube Carcinoma 8 6851 -NCIT:C157621 Platinum-Resistant Fallopian Tube Carcinoma 9 6852 -NCIT:C170750 Recurrent Platinum-Resistant Fallopian Tube Carcinoma 10 6853 -NCIT:C170971 Refractory Fallopian Tube Adenocarcinoma 9 6854 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 10 6855 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 10 6856 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 10 6857 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 10 6858 -NCIT:C178674 Refractory Fallopian Tube Transitional Cell Carcinoma 9 6859 -NCIT:C178675 Refractory Fallopian Tube Undifferentiated Carcinoma 9 6860 -NCIT:C178698 Platinum-Refractory Fallopian Tube Carcinoma 9 6861 -NCIT:C156063 Metastatic Fallopian Tube Carcinoma 8 6862 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 9 6863 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 10 6864 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 9 6865 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 9 6866 -NCIT:C160873 Platinum-Sensitive Fallopian Tube Carcinoma 8 6867 -NCIT:C191395 Recurrent Platinum-Sensitive Fallopian Tube Carcinoma 9 6868 -NCIT:C170969 Unresectable Fallopian Tube Carcinoma 8 6869 -NCIT:C170970 Unresectable Fallopian Tube Adenocarcinoma 9 6870 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 10 6871 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 10 6872 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 9 6873 -NCIT:C40104 Fallopian Tube Transitional Cell Carcinoma 8 6874 -NCIT:C170757 Recurrent Fallopian Tube Transitional Cell Carcinoma 9 6875 -NCIT:C178674 Refractory Fallopian Tube Transitional Cell Carcinoma 9 6876 -NCIT:C40455 Hereditary Fallopian Tube Carcinoma 8 6877 -NCIT:C6265 Fallopian Tube Adenocarcinoma 8 6878 -NCIT:C170766 Recurrent Fallopian Tube Adenocarcinoma 9 6879 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 10 6880 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 10 6881 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 10 6882 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 10 6883 -NCIT:C170970 Unresectable Fallopian Tube Adenocarcinoma 9 6884 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 10 6885 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 10 6886 -NCIT:C170971 Refractory Fallopian Tube Adenocarcinoma 9 6887 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 10 6888 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 10 6889 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 10 6890 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 10 6891 -NCIT:C40099 Fallopian Tube Serous Adenocarcinoma 9 6892 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 10 6893 -NCIT:C126456 Fallopian Tube High Grade Serous Adenocarcinoma 10 6894 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 11 6895 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 11 6896 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 11 6897 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 11 6898 -NCIT:C40103 Fallopian Tube Mucinous Adenocarcinoma 9 6899 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 10 6900 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 10 6901 -NCIT:C40105 Stage 0 Fallopian Tube Cancer AJCC v7 9 6902 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 10 6903 -NCIT:C6279 Fallopian Tube Endometrioid Adenocarcinoma 9 6904 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 10 6905 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 10 6906 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 10 6907 -NCIT:C6280 Fallopian Tube Clear Cell Adenocarcinoma 9 6908 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 10 6909 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 10 6910 -NCIT:C6278 Fallopian Tube Gestational Choriocarcinoma 8 6911 -NCIT:C6281 Fallopian Tube Undifferentiated Carcinoma 8 6912 -NCIT:C170755 Recurrent Fallopian Tube Undifferentiated Carcinoma 9 6913 -NCIT:C178675 Refractory Fallopian Tube Undifferentiated Carcinoma 9 6914 -NCIT:C6282 Fallopian Tube Squamous Cell Carcinoma 8 6915 -NCIT:C90499 Fallopian Tube Cancer by AJCC v6 Stage 8 6916 -NCIT:C8720 Stage I Fallopian Tube Cancer AJCC v6 and v7 9 6917 -NCIT:C6269 Stage IA Fallopian Tube Cancer AJCC v6 and v7 10 6918 -NCIT:C6270 Stage IB Fallopian Tube Cancer AJCC v6 and v7 10 6919 -NCIT:C6271 Stage IC Fallopian Tube Cancer AJCC v6 and v7 10 6920 -NCIT:C8721 Stage II Fallopian Tube Cancer AJCC v6 and v7 9 6921 -NCIT:C6272 Stage IIA Fallopian Tube Cancer AJCC v6 and v7 10 6922 -NCIT:C6276 Stage IIC Fallopian Tube Cancer AJCC v6 and v7 10 6923 -NCIT:C6277 Stage IIB Fallopian Tube Cancer AJCC v6 and v7 10 6924 -NCIT:C8722 Stage III Fallopian Tube Cancer AJCC v6 9 6925 -NCIT:C8963 Stage IV Fallopian Tube Cancer AJCC v6 and v7 9 6926 -NCIT:C91219 Fallopian Tube Cancer by AJCC v7 Stage 8 6927 -NCIT:C40105 Stage 0 Fallopian Tube Cancer AJCC v7 9 6928 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 10 6929 -NCIT:C8720 Stage I Fallopian Tube Cancer AJCC v6 and v7 9 6930 -NCIT:C6269 Stage IA Fallopian Tube Cancer AJCC v6 and v7 10 6931 -NCIT:C6270 Stage IB Fallopian Tube Cancer AJCC v6 and v7 10 6932 -NCIT:C6271 Stage IC Fallopian Tube Cancer AJCC v6 and v7 10 6933 -NCIT:C8721 Stage II Fallopian Tube Cancer AJCC v6 and v7 9 6934 -NCIT:C6272 Stage IIA Fallopian Tube Cancer AJCC v6 and v7 10 6935 -NCIT:C6276 Stage IIC Fallopian Tube Cancer AJCC v6 and v7 10 6936 -NCIT:C6277 Stage IIB Fallopian Tube Cancer AJCC v6 and v7 10 6937 -NCIT:C8963 Stage IV Fallopian Tube Cancer AJCC v6 and v7 9 6938 -NCIT:C89692 Stage III Fallopian Tube Cancer AJCC v7 9 6939 -NCIT:C6273 Stage IIIA Fallopian Tube Cancer AJCC v7 10 6940 -NCIT:C6274 Stage IIIB Fallopian Tube Cancer AJCC v7 10 6941 -NCIT:C6275 Stage IIIC Fallopian Tube Cancer AJCC v7 10 6942 -NCIT:C40124 Fallopian Tube Carcinosarcoma 7 6943 -NCIT:C40125 Fallopian Tube Adenosarcoma 7 6944 -NCIT:C40128 Fallopian Tube Leiomyosarcoma 7 6945 -NCIT:C7502 Malignant Vulvar Neoplasm 6 6946 -NCIT:C128165 Malignant Vulvar Phyllodes Tumor 7 6947 -NCIT:C128295 Vulvar Yolk Sac Tumor 7 6948 -NCIT:C3557 Malignant Clitoral Neoplasm 7 6949 -NCIT:C9362 Clitoral Carcinoma 8 6950 -NCIT:C40304 Malignant Vulvar Sweat Gland Neoplasm 7 6951 -NCIT:C128164 Vulvar Adenocarcinoma of Sweat Gland Origin 8 6952 -NCIT:C4027 Vulvar Paget Disease 9 6953 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 9 6954 -NCIT:C40306 Vulvar Porocarcinoma 10 6955 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 9 6956 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 9 6957 -NCIT:C40317 Vulvar Sarcoma 7 6958 -NCIT:C176515 Vulvar Angiosarcoma 8 6959 -NCIT:C181938 Vulvar Kaposi Sarcoma 8 6960 -NCIT:C181944 Vulvar Rhabdomyosarcoma 8 6961 -NCIT:C128273 Vulvar Alveolar Rhabdomyosarcoma 9 6962 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 9 6963 -NCIT:C181971 Vulvar Epithelioid Sarcoma 8 6964 -NCIT:C181973 Vulvar Distal-Type Epithelioid Sarcoma 9 6965 -NCIT:C40319 Vulvar Proximal-Type Epithelioid Sarcoma 9 6966 -NCIT:C181977 Vulvar Ewing Sarcoma 8 6967 -NCIT:C40318 Vulvar Leiomyosarcoma 8 6968 -NCIT:C40320 Vulvar Alveolar Soft Part Sarcoma 8 6969 -NCIT:C40321 Vulvar Liposarcoma 8 6970 -NCIT:C40329 Vulvar Melanoma 7 6971 -NCIT:C4866 Vulvar Carcinoma 7 6972 -NCIT:C128243 Vulvar Neuroendocrine Carcinoma 8 6973 -NCIT:C128244 Vulvar Small Cell Neuroendocrine Carcinoma 9 6974 -NCIT:C40298 Bartholin Gland Small Cell Neuroendocrine Carcinoma 10 6975 -NCIT:C128245 Vulvar Large Cell Neuroendocrine Carcinoma 9 6976 -NCIT:C128247 Vulvar Merkel Cell Carcinoma 9 6977 -NCIT:C139618 Vulvar Cancer by AJCC v8 Stage 8 6978 -NCIT:C139619 Stage I Vulvar Cancer AJCC v8 9 6979 -NCIT:C139620 Stage IA Vulvar Cancer AJCC v8 10 6980 -NCIT:C139621 Stage IB Vulvar Cancer AJCC v8 10 6981 -NCIT:C139622 Stage II Vulvar Cancer AJCC v8 9 6982 -NCIT:C139623 Stage III Vulvar Cancer AJCC v8 9 6983 -NCIT:C139624 Stage IIIA Vulvar Cancer AJCC v8 10 6984 -NCIT:C139625 Stage IIIB Vulvar Cancer AJCC v8 10 6985 -NCIT:C139626 Stage IIIC Vulvar Cancer AJCC v8 10 6986 -NCIT:C139627 Stage IV Vulvar Cancer AJCC v8 9 6987 -NCIT:C139628 Stage IVA Vulvar Cancer AJCC v8 10 6988 -NCIT:C139630 Stage IVB Vulvar Cancer AJCC v8 10 6989 -NCIT:C156066 Metastatic Vulvar Carcinoma 8 6990 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 9 6991 -NCIT:C170786 Advanced Vulvar Carcinoma 9 6992 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 9 6993 -NCIT:C174198 Unresectable Vulvar Carcinoma 8 6994 -NCIT:C174199 Unresectable Vulvar Squamous Cell Carcinoma 9 6995 -NCIT:C174508 Refractory Vulvar Carcinoma 8 6996 -NCIT:C185304 Refractory Vulvar Squamous Cell Carcinoma 9 6997 -NCIT:C4052 Vulvar Squamous Cell Carcinoma 8 6998 -NCIT:C128167 Vulvar Keratoacanthoma 9 6999 -NCIT:C174199 Unresectable Vulvar Squamous Cell Carcinoma 9 7000 -NCIT:C174200 Recurrent Vulvar Squamous Cell Carcinoma 9 7001 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 9 7002 -NCIT:C181902 Vulvar Squamous Cell Carcinoma, Not Otherwise Specified 9 7003 -NCIT:C181903 Human Papillomavirus-Independent Vulvar Squamous Cell Carcinoma 9 7004 -NCIT:C185304 Refractory Vulvar Squamous Cell Carcinoma 9 7005 -NCIT:C27679 Human Papillomavirus-Related Vulvar Squamous Cell Carcinoma 9 7006 -NCIT:C40287 Vulvar Warty Carcinoma 10 7007 -NCIT:C40284 Vulvar Keratinizing Squamous Cell Carcinoma 9 7008 -NCIT:C40285 Vulvar Non-Keratinizing Squamous Cell Carcinoma 9 7009 -NCIT:C40286 Vulvar Basaloid Carcinoma 9 7010 -NCIT:C40289 Vulvar Squamous Cell Carcinoma with Tumor Giant Cells 9 7011 -NCIT:C40293 Bartholin Gland Squamous Cell Carcinoma 9 7012 -NCIT:C6383 Vulvar Verrucous Carcinoma 9 7013 -NCIT:C6380 Vulvar Adenocarcinoma 8 7014 -NCIT:C128162 Vulvar Adenocarcinoma of Mammary Gland Type 9 7015 -NCIT:C128164 Vulvar Adenocarcinoma of Sweat Gland Origin 9 7016 -NCIT:C4027 Vulvar Paget Disease 10 7017 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 10 7018 -NCIT:C40306 Vulvar Porocarcinoma 11 7019 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 10 7020 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 10 7021 -NCIT:C128166 Vulvar Adenocarcinoma, Intestinal-Type 9 7022 -NCIT:C40309 Vulvar Sebaceous Carcinoma 9 7023 -NCIT:C7719 Bartholin Gland Adenocarcinoma 9 7024 -NCIT:C6381 Vulvar Basal Cell Carcinoma 8 7025 -NCIT:C90345 Vulvar Cancer by AJCC v6 Stage 8 7026 -NCIT:C4522 Stage 0 Vulvar Cancer AJCC v6 9 7027 -NCIT:C7854 Stage I Vulvar Cancer AJCC v6 9 7028 -NCIT:C6328 Stage IA Vulvar Carcinoma AJCC v6 10 7029 -NCIT:C6329 Stage IB Vulvar Carcinoma AJCC v6 10 7030 -NCIT:C9051 Stage II Vulvar Cancer AJCC v6 9 7031 -NCIT:C9052 Stage III Vulvar Cancer AJCC v6 9 7032 -NCIT:C9053 Stage IV Vulvar Cancer AJCC v6 9 7033 -NCIT:C27247 Stage IVB Vulvar Cancer AJCC v6 and v7 10 7034 -NCIT:C6330 Stage IVA Vulvar Cancer AJCC v6 10 7035 -NCIT:C9054 Recurrent Vulvar Carcinoma 8 7036 -NCIT:C174200 Recurrent Vulvar Squamous Cell Carcinoma 9 7037 -NCIT:C9055 Bartholin Gland Carcinoma 8 7038 -NCIT:C40293 Bartholin Gland Squamous Cell Carcinoma 9 7039 -NCIT:C40295 Bartholin Gland Adenoid Cystic Carcinoma 9 7040 -NCIT:C40296 Bartholin Gland Adenosquamous Carcinoma 9 7041 -NCIT:C40297 Bartholin Gland Transitional Cell Carcinoma 9 7042 -NCIT:C40298 Bartholin Gland Small Cell Neuroendocrine Carcinoma 9 7043 -NCIT:C7719 Bartholin Gland Adenocarcinoma 9 7044 -NCIT:C91203 Vulvar Cancer by AJCC v7 Stage 8 7045 -NCIT:C89445 Stage 0 Vulvar Cancer AJCC v7 9 7046 -NCIT:C89447 Stage I Vulvar Cancer AJCC v7 9 7047 -NCIT:C89448 Stage IA Vulvar Cancer AJCC v7 10 7048 -NCIT:C89449 Stage IB Vulvar Cancer AJCC v7 10 7049 -NCIT:C89451 Stage II Vulvar Cancer AJCC v7 9 7050 -NCIT:C89452 Stage III Vulvar Cancer AJCC v7 9 7051 -NCIT:C87003 Stage IIIA Vulvar Cancer AJCC v7 10 7052 -NCIT:C87004 Stage IIIB Vulvar Cancer AJCC v7 10 7053 -NCIT:C87005 Stage IIIC Vulvar Cancer AJCC v7 10 7054 -NCIT:C89453 Stage IV Vulvar Cancer AJCC v7 9 7055 -NCIT:C27247 Stage IVB Vulvar Cancer AJCC v6 and v7 10 7056 -NCIT:C89454 Stage IVA Vulvar Cancer AJCC v7 10 7057 -NCIT:C9362 Clitoral Carcinoma 8 7058 -NCIT:C9363 Labia Majora Carcinoma 8 7059 -NCIT:C9364 Labia Minora Carcinoma 8 7060 -NCIT:C6332 Metastatic Malignant Neoplasm in the Vulva 7 7061 -NCIT:C7637 Malignant Labia Minora Neoplasm 7 7062 -NCIT:C9364 Labia Minora Carcinoma 8 7063 -NCIT:C7638 Malignant Labia Majora Neoplasm 7 7064 -NCIT:C9363 Labia Majora Carcinoma 8 7065 -NCIT:C8975 Malignant Mixed Mesodermal (Mullerian) Tumor 6 7066 -NCIT:C159507 Primary Peritoneal Carcinosarcoma 7 7067 -NCIT:C170929 Metastatic Malignant Mixed Mesodermal (Mullerian) Tumor 7 7068 -NCIT:C170930 Advanced Malignant Mixed Mesodermal (Mullerian) Tumor 8 7069 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 9 7070 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 9 7071 -NCIT:C170931 Metastatic Uterine Corpus Carcinosarcoma 8 7072 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 9 7073 -NCIT:C170933 Metastatic Ovarian Carcinosarcoma 8 7074 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 9 7075 -NCIT:C40124 Fallopian Tube Carcinosarcoma 7 7076 -NCIT:C40278 Vaginal Carcinosarcoma 7 7077 -NCIT:C42700 Uterine Carcinosarcoma 7 7078 -NCIT:C113238 Uterine Carcinosarcoma, Homologous Type 8 7079 -NCIT:C113239 Uterine Carcinosarcoma, Heterologous Type 8 7080 -NCIT:C36097 Cervical Carcinosarcoma 8 7081 -NCIT:C9180 Uterine Corpus Carcinosarcoma 8 7082 -NCIT:C155818 Recurrent Uterine Corpus Carcinosarcoma 9 7083 -NCIT:C158381 Refractory Uterine Corpus Carcinosarcoma 9 7084 -NCIT:C170931 Metastatic Uterine Corpus Carcinosarcoma 9 7085 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 10 7086 -NCIT:C9192 Ovarian Carcinosarcoma 7 7087 -NCIT:C153347 Recurrent Ovarian Carcinosarcoma 8 7088 -NCIT:C170933 Metastatic Ovarian Carcinosarcoma 8 7089 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 9 7090 -NCIT:C9474 Adenosarcoma 6 7091 -NCIT:C102570 Broad Ligament Adenosarcoma 7 7092 -NCIT:C40125 Fallopian Tube Adenosarcoma 7 7093 -NCIT:C40229 Cervical Adenosarcoma 7 7094 -NCIT:C40277 Vaginal Adenosarcoma 7 7095 -NCIT:C6336 Uterine Corpus Adenosarcoma 7 7096 -NCIT:C139894 Uterine Corpus Adenosarcoma by AJCC v8 Stage 8 7097 -NCIT:C139895 Stage I Uterine Corpus Adenosarcoma AJCC v8 9 7098 -NCIT:C139896 Stage IA Uterine Corpus Adenosarcoma AJCC v8 10 7099 -NCIT:C139897 Stage IB Uterine Corpus Adenosarcoma AJCC v8 10 7100 -NCIT:C139898 Stage IC Uterine Corpus Adenosarcoma AJCC v8 10 7101 -NCIT:C139899 Stage II Uterine Corpus Adenosarcoma AJCC v8 9 7102 -NCIT:C139900 Stage III Uterine Corpus Adenosarcoma AJCC v8 9 7103 -NCIT:C139901 Stage IIIA Uterine Corpus Adenosarcoma AJCC v8 10 7104 -NCIT:C139902 Stage IIIB Uterine Corpus Adenosarcoma AJCC v8 10 7105 -NCIT:C139903 Stage IIIC Uterine Corpus Adenosarcoma AJCC v8 10 7106 -NCIT:C139904 Stage IV Uterine Corpus Adenosarcoma AJCC v8 9 7107 -NCIT:C139905 Stage IVA Uterine Corpus Adenosarcoma AJCC v8 10 7108 -NCIT:C139906 Stage IVB Uterine Corpus Adenosarcoma AJCC v8 10 7109 -NCIT:C7317 Ovarian Adenosarcoma 7 7110 -NCIT:C67561 Malignant Sex Cord-Stromal Tumor 5 7111 -NCIT:C39948 Malignant Testicular Sex Cord-Stromal Tumor 6 7112 -NCIT:C8053 Malignant Ovarian Sex Cord-Stromal Tumor 6 7113 -NCIT:C39981 Malignant Ovarian Steroid Cell Tumor 7 7114 -NCIT:C4210 Poorly Differentiated Ovarian Sertoli-Leydig Cell Tumor 7 7115 -NCIT:C39973 Poorly Differentiated Ovarian Sertoli-Leydig Cell Tumor, Variant with Heterologous Elements 8 7116 -NCIT:C6929 Malignant Ovarian Thecoma 7 7117 -NCIT:C6263 Malignant Ovarian Luteinized Thecoma 8 7118 -NCIT:C8403 Malignant Ovarian Granulosa Cell Tumor 7 7119 -NCIT:C160619 Recurrent Malignant Ovarian Granulosa Cell Tumor 8 7120 -NCIT:C8561 Malignant Male Reproductive System Neoplasm 5 7121 -NCIT:C150533 Recurrent Malignant Male Reproductive System Neoplasm 6 7122 -NCIT:C138021 Recurrent Testicular Lymphoma 7 7123 -NCIT:C179466 Recurrent Malignant Spermatic Cord Neoplasm 7 7124 -NCIT:C7621 Recurrent Male Reproductive System Carcinoma 7 7125 -NCIT:C7870 Recurrent Penile Carcinoma 8 7126 -NCIT:C7902 Recurrent Prostate Carcinoma 8 7127 -NCIT:C156771 Biochemically Recurrent Prostate Carcinoma 9 7128 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 9 7129 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 10 7130 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 9 7131 -NCIT:C9369 Recurrent Malignant Testicular Germ Cell Tumor 7 7132 -NCIT:C150534 Refractory Malignant Male Reproductive System Neoplasm 6 7133 -NCIT:C138022 Refractory Testicular Lymphoma 7 7134 -NCIT:C177149 Refractory Male Reproductive System Carcinoma 7 7135 -NCIT:C167255 Refractory Prostate Carcinoma 8 7136 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 9 7137 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 10 7138 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 10 7139 -NCIT:C161609 Double-Negative Prostate Carcinoma 10 7140 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 10 7141 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 10 7142 -NCIT:C167256 Refractory Prostate Adenocarcinoma 9 7143 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 9 7144 -NCIT:C177150 Refractory Penile Carcinoma 8 7145 -NCIT:C9077 Refractory Malignant Testicular Germ Cell Tumor 7 7146 -NCIT:C161644 Malignant Seminal Vesicle Neoplasm 6 7147 -NCIT:C161634 Seminal Vesicle Squamous Cell Carcinoma 7 7148 -NCIT:C161641 Seminal Vesicle Leiomyosarcoma 7 7149 -NCIT:C161642 Seminal Vesicle Angiosarcoma 7 7150 -NCIT:C161649 Metastatic Malignant Neoplasm in the Seminal Vesicle 7 7151 -NCIT:C39906 Seminal Vesicle Adenocarcinoma 7 7152 -NCIT:C162477 Paratesticular Malignant Mesothelioma 6 7153 -NCIT:C173605 Paratesticular Epithelioid Mesothelioma 7 7154 -NCIT:C173609 Unresectable Paratesticular Epithelioid Mesothelioma 8 7155 -NCIT:C173606 Paratesticular Sarcomatoid Mesothelioma 7 7156 -NCIT:C173610 Unresectable Paratesticular Sarcomatoid Mesothelioma 8 7157 -NCIT:C173607 Paratesticular Biphasic Mesothelioma 7 7158 -NCIT:C173611 Unresectable Paratesticular Biphasic Mesothelioma 8 7159 -NCIT:C173608 Unresectable Paratesticular Malignant Mesothelioma 7 7160 -NCIT:C173609 Unresectable Paratesticular Epithelioid Mesothelioma 8 7161 -NCIT:C173610 Unresectable Paratesticular Sarcomatoid Mesothelioma 8 7162 -NCIT:C173611 Unresectable Paratesticular Biphasic Mesothelioma 8 7163 -NCIT:C162486 Paratesticular Squamous Cell Carcinoma 6 7164 -NCIT:C161634 Seminal Vesicle Squamous Cell Carcinoma 7 7165 -NCIT:C162489 Paratesticular Wilms Tumor 6 7166 -NCIT:C162493 Paratesticular Liposarcoma 6 7167 -NCIT:C162495 Paratesticular Leiomyosarcoma 6 7168 -NCIT:C161641 Seminal Vesicle Leiomyosarcoma 7 7169 -NCIT:C162497 Paratesticular Rhabdomyosarcoma 6 7170 -NCIT:C181196 Male Reproductive System Carcinoma 6 7171 -NCIT:C177149 Refractory Male Reproductive System Carcinoma 7 7172 -NCIT:C167255 Refractory Prostate Carcinoma 8 7173 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 9 7174 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 10 7175 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 10 7176 -NCIT:C161609 Double-Negative Prostate Carcinoma 10 7177 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 10 7178 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 10 7179 -NCIT:C167256 Refractory Prostate Adenocarcinoma 9 7180 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 9 7181 -NCIT:C177150 Refractory Penile Carcinoma 8 7182 -NCIT:C39906 Seminal Vesicle Adenocarcinoma 7 7183 -NCIT:C39957 Epididymal Adenocarcinoma 7 7184 -NCIT:C4863 Prostate Carcinoma 7 7185 -NCIT:C103817 Hereditary Prostate Carcinoma 8 7186 -NCIT:C114933 Hormone-Resistant Prostate Carcinoma 8 7187 -NCIT:C138167 Prostate Carcinoma by Gene Expression Profile 8 7188 -NCIT:C138168 Luminal A Prostate Carcinoma 9 7189 -NCIT:C138169 Luminal B Prostate Carcinoma 9 7190 -NCIT:C138170 Basal-Like Prostate Carcinoma 9 7191 -NCIT:C140163 Prostate Cancer by AJCC v8 Stage 8 7192 -NCIT:C140164 Stage I Prostate Cancer AJCC v8 9 7193 -NCIT:C140165 Stage II Prostate Cancer AJCC v8 9 7194 -NCIT:C140166 Stage IIA Prostate Cancer AJCC v8 10 7195 -NCIT:C140167 Stage IIB Prostate Cancer AJCC v8 10 7196 -NCIT:C140168 Stage IIC Prostate Cancer AJCC v8 10 7197 -NCIT:C140169 Stage III Prostate Cancer AJCC v8 9 7198 -NCIT:C140170 Stage IIIA Prostate Cancer AJCC v8 10 7199 -NCIT:C140171 Stage IIIB Prostate Cancer AJCC v8 10 7200 -NCIT:C140172 Stage IIIC Prostate Cancer AJCC v8 10 7201 -NCIT:C140173 Stage IV Prostate Cancer AJCC v8 9 7202 -NCIT:C140174 Stage IVA Prostate Cancer AJCC v8 10 7203 -NCIT:C140175 Stage IVB Prostate Cancer AJCC v8 10 7204 -NCIT:C161022 Intraductal Prostate Carcinoma 8 7205 -NCIT:C167255 Refractory Prostate Carcinoma 8 7206 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 9 7207 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 10 7208 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 10 7209 -NCIT:C161609 Double-Negative Prostate Carcinoma 10 7210 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 10 7211 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 10 7212 -NCIT:C167256 Refractory Prostate Adenocarcinoma 9 7213 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 9 7214 -NCIT:C171611 Unresectable Prostate Carcinoma 8 7215 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 9 7216 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 7217 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 9 7218 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 9 7219 -NCIT:C176517 Localized Prostate Carcinoma 8 7220 -NCIT:C39898 Primary Prostate Urothelial Carcinoma 8 7221 -NCIT:C39900 Prostatic Urethra Urothelial Carcinoma 9 7222 -NCIT:C39901 Prostatic Duct Urothelial Carcinoma 9 7223 -NCIT:C48596 Invasive Prostate Carcinoma 8 7224 -NCIT:C158912 Prostate Neuroendocrine Carcinoma 9 7225 -NCIT:C158650 Prostate Large Cell Neuroendocrine Carcinoma 10 7226 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 10 7227 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 11 7228 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 11 7229 -NCIT:C6766 Prostate Small Cell Neuroendocrine Carcinoma 10 7230 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 11 7231 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 11 7232 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 11 7233 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 11 7234 -NCIT:C2919 Prostate Adenocarcinoma 9 7235 -NCIT:C150557 Prostate Adenocarcinoma without Neuroendocrine Differentiation 10 7236 -NCIT:C164185 Aggressive Prostate Adenocarcinoma 10 7237 -NCIT:C164186 Prostate Adenocarcinoma by AJCC v7 Stage 10 7238 -NCIT:C8947 Stage I Prostate Adenocarcinoma AJCC v7 11 7239 -NCIT:C8948 Stage II Prostate Adenocarcinoma AJCC v7 11 7240 -NCIT:C8949 Stage III Prostate Adenocarcinoma AJCC v7 11 7241 -NCIT:C8950 Stage IV Prostate Adenocarcinoma AJCC v7 11 7242 -NCIT:C167256 Refractory Prostate Adenocarcinoma 10 7243 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 10 7244 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 11 7245 -NCIT:C27905 Well Differentiated Prostate Adenocarcinoma 10 7246 -NCIT:C39896 Prostate Ductal Adenocarcinoma, Papillary Pattern 11 7247 -NCIT:C27906 Moderately Differentiated Prostate Adenocarcinoma 10 7248 -NCIT:C27916 Poorly Differentiated Prostate Adenocarcinoma 10 7249 -NCIT:C5530 Prostate Acinar Adenocarcinoma, Sarcomatoid Variant 11 7250 -NCIT:C39903 Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 7251 -NCIT:C158656 Usual Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 7252 -NCIT:C158664 Prostate Adenocarcinoma with Paneth Cell-Like Neuroendocrine Differentiation 11 7253 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 7254 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 12 7255 -NCIT:C5596 Prostate Acinar Adenocarcinoma 10 7256 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 11 7257 -NCIT:C158656 Usual Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 7258 -NCIT:C160817 Prostate Acinar Adenocarcinoma, Microcystic Variant 11 7259 -NCIT:C160818 Prostate Acinar Adenocarcinoma, Pleomorphic Giant Cell Variant 11 7260 -NCIT:C39880 Prostate Acinar Adenocarcinoma, Atrophic Variant 11 7261 -NCIT:C39881 Prostate Acinar Adenocarcinoma, Pseudohyperplastic Variant 11 7262 -NCIT:C39882 Prostate Acinar Adenocarcinoma, Foamy Gland Variant 11 7263 -NCIT:C39884 Prostate Acinar Adenocarcinoma, Oncocytic Variant 11 7264 -NCIT:C39885 Prostate Acinar Adenocarcinoma, Lymphoepithelioma-Like Variant 11 7265 -NCIT:C5530 Prostate Acinar Adenocarcinoma, Sarcomatoid Variant 11 7266 -NCIT:C5535 Prostate Acinar Adenocarcinoma, Signet Ring-Like Cell Variant 11 7267 -NCIT:C5537 Prostate Acinar Mucinous Adenocarcinoma 11 7268 -NCIT:C6813 Prostate Ductal Adenocarcinoma 10 7269 -NCIT:C39895 Prostate Ductal Adenocarcinoma, Cribriform Pattern 11 7270 -NCIT:C39896 Prostate Ductal Adenocarcinoma, Papillary Pattern 11 7271 -NCIT:C39897 Prostate Ductal Adenocarcinoma, Solid Pattern 11 7272 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 10 7273 -NCIT:C156286 Advanced Prostate Adenocarcinoma 11 7274 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 12 7275 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 11 7276 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 12 7277 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 7278 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 12 7279 -NCIT:C39902 Prostate Basal Cell Carcinoma 9 7280 -NCIT:C5536 Prostate Squamous Cell Carcinoma 9 7281 -NCIT:C5538 Prostate Adenosquamous Carcinoma 9 7282 -NCIT:C5539 Prostate Adenoid Cystic Carcinoma 9 7283 -NCIT:C5597 Prostate Undifferentiated Carcinoma 9 7284 -NCIT:C7079 Prostate Cancer by Whitmore-Jewett Stage 8 7285 -NCIT:C7099 Stage D Prostate Cancer 9 7286 -NCIT:C7552 Stage C Prostate Cancer 9 7287 -NCIT:C7554 Stage B Prostate Cancer 9 7288 -NCIT:C7556 Stage A Prostate Cancer 9 7289 -NCIT:C7902 Recurrent Prostate Carcinoma 8 7290 -NCIT:C156771 Biochemically Recurrent Prostate Carcinoma 9 7291 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 9 7292 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 10 7293 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 9 7294 -NCIT:C8946 Metastatic Prostate Carcinoma 8 7295 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 9 7296 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 10 7297 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 10 7298 -NCIT:C161609 Double-Negative Prostate Carcinoma 10 7299 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 10 7300 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 10 7301 -NCIT:C132881 Prostate Carcinoma Metastatic in the Soft Tissue 9 7302 -NCIT:C148536 Castration-Naive Prostate Carcinoma 9 7303 -NCIT:C153336 Castration-Sensitive Prostate Carcinoma 9 7304 -NCIT:C156284 Advanced Prostate Carcinoma 9 7305 -NCIT:C156286 Advanced Prostate Adenocarcinoma 10 7306 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 7307 -NCIT:C156285 Locally Advanced Prostate Carcinoma 9 7308 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 10 7309 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 11 7310 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 10 7311 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 11 7312 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 10 7313 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 9 7314 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 10 7315 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 10 7316 -NCIT:C161584 Prostate Carcinoma Metastatic in the Pelvic Cavity 9 7317 -NCIT:C161587 Prostate Carcinoma Metastatic in the Lymph Nodes 9 7318 -NCIT:C171265 Oligometastatic Prostate Carcinoma 9 7319 -NCIT:C36307 Prostate Carcinoma Metastatic in the Lung 9 7320 -NCIT:C36308 Prostate Carcinoma Metastatic in the Bone 9 7321 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 9 7322 -NCIT:C156286 Advanced Prostate Adenocarcinoma 10 7323 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 7324 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 10 7325 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 11 7326 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 7327 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 7328 -NCIT:C90521 Prostate Cancer by AJCC v6 Stage 8 7329 -NCIT:C7551 Stage III Prostate Cancer AJCC v6 9 7330 -NCIT:C7553 Stage II Prostate Cancer AJCC v6 9 7331 -NCIT:C7555 Stage I Prostate Cancer AJCC v6 9 7332 -NCIT:C9075 Stage IV Prostate Cancer AJCC v6 9 7333 -NCIT:C91233 Prostate Cancer by AJCC v7 Stage 8 7334 -NCIT:C164186 Prostate Adenocarcinoma by AJCC v7 Stage 9 7335 -NCIT:C8947 Stage I Prostate Adenocarcinoma AJCC v7 10 7336 -NCIT:C8948 Stage II Prostate Adenocarcinoma AJCC v7 10 7337 -NCIT:C8949 Stage III Prostate Adenocarcinoma AJCC v7 10 7338 -NCIT:C8950 Stage IV Prostate Adenocarcinoma AJCC v7 10 7339 -NCIT:C89232 Stage I Prostate Cancer AJCC v7 9 7340 -NCIT:C8947 Stage I Prostate Adenocarcinoma AJCC v7 10 7341 -NCIT:C89233 Stage II Prostate Cancer AJCC v7 9 7342 -NCIT:C88106 Stage IIA Prostate Cancer AJCC v7 10 7343 -NCIT:C88107 Stage IIB Prostate Cancer AJCC v7 10 7344 -NCIT:C8948 Stage II Prostate Adenocarcinoma AJCC v7 10 7345 -NCIT:C89234 Stage III Prostate Cancer AJCC v7 9 7346 -NCIT:C8949 Stage III Prostate Adenocarcinoma AJCC v7 10 7347 -NCIT:C89235 Stage IV Prostate Cancer AJCC v7 9 7348 -NCIT:C8950 Stage IV Prostate Adenocarcinoma AJCC v7 10 7349 -NCIT:C7621 Recurrent Male Reproductive System Carcinoma 7 7350 -NCIT:C7870 Recurrent Penile Carcinoma 8 7351 -NCIT:C7902 Recurrent Prostate Carcinoma 8 7352 -NCIT:C156771 Biochemically Recurrent Prostate Carcinoma 9 7353 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 9 7354 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 10 7355 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 9 7356 -NCIT:C8955 Rete Testis Adenocarcinoma 7 7357 -NCIT:C9061 Penile Carcinoma 7 7358 -NCIT:C118820 Adult Penile Carcinoma 8 7359 -NCIT:C140075 Penile Cancer by AJCC v8 Stage 8 7360 -NCIT:C140076 Stage 0 Penile Cancer AJCC v8 9 7361 -NCIT:C140077 Stage 0is Penile Cancer AJCC v8 10 7362 -NCIT:C140078 Stage 0a Penile Cancer AJCC v8 10 7363 -NCIT:C140079 Stage I Penile Cancer AJCC v8 9 7364 -NCIT:C140080 Stage II Penile Cancer AJCC v8 9 7365 -NCIT:C140081 Stage IIA Penile Cancer AJCC v8 10 7366 -NCIT:C140083 Stage IIB Penile Cancer AJCC v8 10 7367 -NCIT:C140084 Stage III Penile Cancer AJCC v8 9 7368 -NCIT:C140085 Stage IIIA Penile Cancer AJCC v8 10 7369 -NCIT:C140086 Stage IIIB Penile Cancer AJCC v8 10 7370 -NCIT:C140087 Stage IV Penile Cancer AJCC v8 9 7371 -NCIT:C177150 Refractory Penile Carcinoma 8 7372 -NCIT:C27784 Metastatic Penile Carcinoma 8 7373 -NCIT:C170789 Locally Advanced Penile Carcinoma 9 7374 -NCIT:C170790 Advanced Penile Carcinoma 9 7375 -NCIT:C182111 Metastatic Squamous Cell Carcinoma of the Penis 9 7376 -NCIT:C27817 Penile Paget Disease 8 7377 -NCIT:C39961 Penile Basal Cell Carcinoma 8 7378 -NCIT:C7729 Squamous Cell Carcinoma of the Penis 8 7379 -NCIT:C159244 Non-Human Papillomavirus-Related Squamous Cell Carcinoma of the Penis 9 7380 -NCIT:C103340 Papillary Carcinoma of the Penis, Not Otherwise Specified 10 7381 -NCIT:C159245 Pseudohyperplastic Carcinoma of the Penis 10 7382 -NCIT:C159246 Pseudoglandular Carcinoma of the Penis 10 7383 -NCIT:C159248 Adenosquamous Carcinoma of the Penis 10 7384 -NCIT:C39959 Mixed Squamous Cell Carcinoma of the Penis 10 7385 -NCIT:C6979 Squamous Cell Carcinoma of the Penis, Usual Type 10 7386 -NCIT:C6982 Verrucous Carcinoma of the Penis 10 7387 -NCIT:C159247 Carcinoma Cuniculatum of the Penis 11 7388 -NCIT:C6984 Sarcomatoid Carcinoma of the Penis 10 7389 -NCIT:C182111 Metastatic Squamous Cell Carcinoma of the Penis 9 7390 -NCIT:C27682 Human Papillomavirus-Related Squamous Cell Carcinoma of the Penis 9 7391 -NCIT:C159250 Warty-Basaloid Carcinoma of the Penis 10 7392 -NCIT:C159251 Clear Cell Squamous Cell Carcinoma of the Penis 10 7393 -NCIT:C159252 Lymphoepithelioma-Like Carcinoma of the Penis 10 7394 -NCIT:C6980 Basaloid Squamous Cell Carcinoma of the Penis 10 7395 -NCIT:C159249 Papillary-Basaloid Carcinoma of the Penis 11 7396 -NCIT:C6981 Warty Carcinoma of the Penis 10 7397 -NCIT:C27790 Penile Carcinoma In Situ 9 7398 -NCIT:C6983 Papillary Carcinoma of the Penis 9 7399 -NCIT:C103340 Papillary Carcinoma of the Penis, Not Otherwise Specified 10 7400 -NCIT:C159249 Papillary-Basaloid Carcinoma of the Penis 10 7401 -NCIT:C6981 Warty Carcinoma of the Penis 10 7402 -NCIT:C6982 Verrucous Carcinoma of the Penis 10 7403 -NCIT:C159247 Carcinoma Cuniculatum of the Penis 11 7404 -NCIT:C7870 Recurrent Penile Carcinoma 8 7405 -NCIT:C90520 Penile Cancer by AJCC v6 Stage 8 7406 -NCIT:C3643 Stage 0 Penile Cancer AJCC v6 9 7407 -NCIT:C7867 Stage I Penile Cancer AJCC v6 9 7408 -NCIT:C7868 Stage II Penile Cancer AJCC v6 9 7409 -NCIT:C7869 Stage III Penile Cancer AJCC v6 9 7410 -NCIT:C8959 Stage IV Penile Cancer AJCC v6 9 7411 -NCIT:C91234 Penile Cancer by AJCC v7 Stage 8 7412 -NCIT:C89194 Stage 0 Penile Cancer AJCC v7 9 7413 -NCIT:C27790 Penile Carcinoma In Situ 10 7414 -NCIT:C89195 Stage I Penile Cancer AJCC v7 9 7415 -NCIT:C89196 Stage II Penile Cancer AJCC v7 9 7416 -NCIT:C89197 Stage III Penile Cancer AJCC v7 9 7417 -NCIT:C88104 Stage IIIa Penile Cancer AJCC v7 10 7418 -NCIT:C88105 Stage IIIb Penile Cancer AJCC v7 10 7419 -NCIT:C89198 Stage IV Penile Cancer AJCC v7 9 7420 -NCIT:C3558 Malignant Epididymal Neoplasm 6 7421 -NCIT:C39957 Epididymal Adenocarcinoma 7 7422 -NCIT:C8544 Metastatic Malignant Neoplasm in the Epididymis 7 7423 -NCIT:C3559 Malignant Spermatic Cord Neoplasm 6 7424 -NCIT:C179466 Recurrent Malignant Spermatic Cord Neoplasm 7 7425 -NCIT:C7251 Malignant Testicular Neoplasm 6 7426 -NCIT:C140225 Testicular Cancer by AJCC v8 Stage 7 7427 -NCIT:C140226 Stage 0 Testicular Cancer AJCC v8 8 7428 -NCIT:C40345 Testicular Intratubular Germ Cell Neoplasia 9 7429 -NCIT:C7325 Intratubular Non-Seminoma 10 7430 -NCIT:C7329 Intratubular Seminoma 10 7431 -NCIT:C140227 Stage I Testicular Cancer AJCC v8 8 7432 -NCIT:C140228 Stage IA Testicular Cancer AJCC v8 9 7433 -NCIT:C140229 Stage IB Testicular Cancer AJCC v8 9 7434 -NCIT:C140232 Stage IS Testicular Cancer AJCC v8 9 7435 -NCIT:C140233 Stage II Testicular Cancer AJCC v8 8 7436 -NCIT:C140234 Stage IIA Testicular Cancer AJCC v8 9 7437 -NCIT:C140235 Stage IIB Testicular Cancer AJCC v8 9 7438 -NCIT:C140236 Stage IIC Testicular Cancer AJCC v8 9 7439 -NCIT:C140237 Stage III Testicular Cancer AJCC v8 8 7440 -NCIT:C140238 Stage IIIA Testicular Cancer AJCC v8 9 7441 -NCIT:C140239 Stage IIIB Testicular Cancer AJCC v8 9 7442 -NCIT:C140240 Stage IIIC Testicular Cancer AJCC v8 9 7443 -NCIT:C140241 Testicular Cancer by AJCC v6 and v7 Stage 7 7444 -NCIT:C4523 Stage 0 Testicular Cancer AJCC v6 and v7 8 7445 -NCIT:C40345 Testicular Intratubular Germ Cell Neoplasia 9 7446 -NCIT:C7325 Intratubular Non-Seminoma 10 7447 -NCIT:C7329 Intratubular Seminoma 10 7448 -NCIT:C7901 Stage I Testicular Cancer AJCC v6 and v7 8 7449 -NCIT:C27785 Stage I Testicular Non-Seminomatous Germ Cell Tumor AJCC v6 and v7 9 7450 -NCIT:C8907 Stage I Testicular Choriocarcinoma AJCC v6 and v7 10 7451 -NCIT:C8908 Stage I Testicular Embryonal Carcinoma AJCC v6 and v7 10 7452 -NCIT:C8914 Stage I Immature Testicular Teratoma AJCC v6 and v7 10 7453 -NCIT:C8920 Stage I Testicular Yolk Sac Tumor AJCC v6 and v7 10 7454 -NCIT:C6361 Stage IA Testicular Cancer AJCC v6 and v7 9 7455 -NCIT:C6362 Stage IB Testicular Cancer AJCC v6 and v7 9 7456 -NCIT:C6363 Stage IS Testicular Cancer AJCC v6 and v7 9 7457 -NCIT:C8912 Stage I Testicular Mixed Germ Cell Tumor AJCC v6 and v7 9 7458 -NCIT:C8917 Stage I Testicular Seminoma AJCC v6 and v7 9 7459 -NCIT:C9073 Stage II Testicular Cancer AJCC v6 and v7 8 7460 -NCIT:C27786 Stage II Testicular Non-Seminomatous Germ Cell Tumor AJCC v6 and v7 9 7461 -NCIT:C8606 Stage II Testicular Choriocarcinoma AJCC v6 and v7 10 7462 -NCIT:C8909 Stage II Testicular Embryonal Carcinoma AJCC v6 and v7 10 7463 -NCIT:C8915 Stage II Immature Testicular Teratoma AJCC v6 and v7 10 7464 -NCIT:C8921 Stage II Testicular Yolk Sac Tumor AJCC v6 and v7 10 7465 -NCIT:C6364 Stage IIA Testicular Cancer AJCC v6 and v7 9 7466 -NCIT:C6365 Stage IIB Testicular Cancer AJCC v6 and v7 9 7467 -NCIT:C6366 Stage IIC Testicular Cancer AJCC v6 and v7 9 7468 -NCIT:C8911 Stage II Testicular Mixed Germ Cell Tumor AJCC v6 and v7 9 7469 -NCIT:C8918 Stage II Testicular Seminoma AJCC v6 and v7 9 7470 -NCIT:C9074 Stage III Testicular Cancer AJCC v6 and v7 8 7471 -NCIT:C27787 Stage III Testicular Non-Seminomatous Germ Cell Tumor AJCC v6 and v7 9 7472 -NCIT:C8900 Stage III Testicular Choriocarcinoma AJCC v6 and v7 10 7473 -NCIT:C8910 Stage III Testicular Embryonal Carcinoma AJCC v6 and v7 10 7474 -NCIT:C8916 Stage III Immature Testicular Teratoma AJCC v6 and v7 10 7475 -NCIT:C8922 Stage III Testicular Yolk Sac Tumor AJCC v6 and v7 10 7476 -NCIT:C6367 Stage IIIC Testicular Cancer AJCC v6 and v7 9 7477 -NCIT:C6368 Stage IIIB Testicular Cancer AJCC v6 and v7 9 7478 -NCIT:C6369 Stage IIIA Testicular Cancer AJCC v6 and v7 9 7479 -NCIT:C8913 Stage III Testicular Mixed Germ Cell Tumor AJCC v6 and v7 9 7480 -NCIT:C8919 Stage III Testicular Seminoma AJCC v6 and v7 9 7481 -NCIT:C162469 Testicular Myeloid Sarcoma 7 7482 -NCIT:C162470 Testicular Plasmacytoma 7 7483 -NCIT:C39948 Malignant Testicular Sex Cord-Stromal Tumor 7 7484 -NCIT:C4584 Metastatic Malignant Neoplasm in the Testis 7 7485 -NCIT:C6359 Testicular Sarcoma 7 7486 -NCIT:C6378 Testicular Rhabdomyosarcoma 8 7487 -NCIT:C6810 Testicular Lymphoma 7 7488 -NCIT:C138021 Recurrent Testicular Lymphoma 8 7489 -NCIT:C138022 Refractory Testicular Lymphoma 8 7490 -NCIT:C150589 Testicular Follicular Lymphoma 8 7491 -NCIT:C162467 Testicular Diffuse Large B-Cell Lymphoma 8 7492 -NCIT:C162468 Testicular Nasal Type Extranodal NK/T-Cell Lymphoma 8 7493 -NCIT:C9063 Malignant Testicular Germ Cell Tumor 7 7494 -NCIT:C189057 Postpubertal-Type Testicular Teratoma 8 7495 -NCIT:C25771 Metastatic Malignant Testicular Germ Cell Tumor 8 7496 -NCIT:C187316 Advanced Malignant Testicular Germ Cell Tumor 9 7497 -NCIT:C39921 Testicular Spermatocytic Tumor 8 7498 -NCIT:C39922 Testicular Spermatocytic Tumor with Sarcoma 9 7499 -NCIT:C40962 Testicular Polyembryoma 8 7500 -NCIT:C5027 Malignant Testicular Non-Seminomatous Germ Cell Tumor 8 7501 -NCIT:C27785 Stage I Testicular Non-Seminomatous Germ Cell Tumor AJCC v6 and v7 9 7502 -NCIT:C8907 Stage I Testicular Choriocarcinoma AJCC v6 and v7 10 7503 -NCIT:C8908 Stage I Testicular Embryonal Carcinoma AJCC v6 and v7 10 7504 -NCIT:C8914 Stage I Immature Testicular Teratoma AJCC v6 and v7 10 7505 -NCIT:C8920 Stage I Testicular Yolk Sac Tumor AJCC v6 and v7 10 7506 -NCIT:C27786 Stage II Testicular Non-Seminomatous Germ Cell Tumor AJCC v6 and v7 9 7507 -NCIT:C8606 Stage II Testicular Choriocarcinoma AJCC v6 and v7 10 7508 -NCIT:C8909 Stage II Testicular Embryonal Carcinoma AJCC v6 and v7 10 7509 -NCIT:C8915 Stage II Immature Testicular Teratoma AJCC v6 and v7 10 7510 -NCIT:C8921 Stage II Testicular Yolk Sac Tumor AJCC v6 and v7 10 7511 -NCIT:C27787 Stage III Testicular Non-Seminomatous Germ Cell Tumor AJCC v6 and v7 9 7512 -NCIT:C8900 Stage III Testicular Choriocarcinoma AJCC v6 and v7 10 7513 -NCIT:C8910 Stage III Testicular Embryonal Carcinoma AJCC v6 and v7 10 7514 -NCIT:C8916 Stage III Immature Testicular Teratoma AJCC v6 and v7 10 7515 -NCIT:C8922 Stage III Testicular Yolk Sac Tumor AJCC v6 and v7 10 7516 -NCIT:C35711 Testicular Teratoma with Somatic-Type Malignancy 9 7517 -NCIT:C6341 Testicular Embryonal Carcinoma 9 7518 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 10 7519 -NCIT:C7325 Intratubular Non-Seminoma 10 7520 -NCIT:C8908 Stage I Testicular Embryonal Carcinoma AJCC v6 and v7 10 7521 -NCIT:C8909 Stage II Testicular Embryonal Carcinoma AJCC v6 and v7 10 7522 -NCIT:C8910 Stage III Testicular Embryonal Carcinoma AJCC v6 and v7 10 7523 -NCIT:C6351 Testicular Mixed Embryonal Carcinoma and Teratoma 9 7524 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 10 7525 -NCIT:C7733 Testicular Choriocarcinoma 9 7526 -NCIT:C39935 Testicular Monophasic Choriocarcinoma 10 7527 -NCIT:C6544 Childhood Testicular Choriocarcinoma 10 7528 -NCIT:C8606 Stage II Testicular Choriocarcinoma AJCC v6 and v7 10 7529 -NCIT:C8900 Stage III Testicular Choriocarcinoma AJCC v6 and v7 10 7530 -NCIT:C8907 Stage I Testicular Choriocarcinoma AJCC v6 and v7 10 7531 -NCIT:C8000 Testicular Yolk Sac Tumor 9 7532 -NCIT:C39923 Testicular Yolk Sac Tumor, Microcystic Pattern 10 7533 -NCIT:C39924 Testicular Yolk Sac Tumor, Macrocystic Pattern 10 7534 -NCIT:C39925 Testicular Yolk Sac Tumor, Solid Pattern 10 7535 -NCIT:C39926 Testicular Yolk Sac Tumor, Glandular-Alveolar Pattern 10 7536 -NCIT:C39927 Testicular Yolk Sac Tumor, Endodermal Sinus/Perivascular Pattern 10 7537 -NCIT:C39928 Testicular Yolk Sac Tumor, Papillary Pattern 10 7538 -NCIT:C39929 Testicular Yolk Sac Tumor, Myxomatous Pattern 10 7539 -NCIT:C39930 Testicular Yolk Sac Tumor, Polyvesicular Vitelline Pattern 10 7540 -NCIT:C39931 Testicular Yolk Sac Tumor, Hepatoid Pattern 10 7541 -NCIT:C39932 Testicular Yolk Sac Tumor, Enteric Pattern 10 7542 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 10 7543 -NCIT:C8920 Stage I Testicular Yolk Sac Tumor AJCC v6 and v7 10 7544 -NCIT:C8921 Stage II Testicular Yolk Sac Tumor AJCC v6 and v7 10 7545 -NCIT:C8922 Stage III Testicular Yolk Sac Tumor AJCC v6 and v7 10 7546 -NCIT:C8001 Testicular Mixed Embryonal Carcinoma and Yolk Sac Tumor 9 7547 -NCIT:C8002 Testicular Mixed Yolk Sac Tumor and Teratoma 9 7548 -NCIT:C6347 Testicular Mixed Germ Cell Tumor 8 7549 -NCIT:C6348 Testicular Mixed Choriocarcinoma and Embryonal Carcinoma 9 7550 -NCIT:C6349 Testicular Mixed Choriocarcinoma and Teratoma 9 7551 -NCIT:C6350 Testicular Mixed Embryonal Carcinoma and Seminoma 9 7552 -NCIT:C6351 Testicular Mixed Embryonal Carcinoma and Teratoma 9 7553 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 10 7554 -NCIT:C6352 Testicular Mixed Embryonal Carcinoma and Teratoma with Seminoma 9 7555 -NCIT:C6542 Childhood Testicular Mixed Germ Cell Tumor 9 7556 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 10 7557 -NCIT:C67548 Testicular Mixed Choriocarcinoma and Yolk Sac Tumor 9 7558 -NCIT:C8001 Testicular Mixed Embryonal Carcinoma and Yolk Sac Tumor 9 7559 -NCIT:C8002 Testicular Mixed Yolk Sac Tumor and Teratoma 9 7560 -NCIT:C8003 Testicular Mixed Yolk Sac Tumor and Teratoma with Seminoma 9 7561 -NCIT:C8911 Stage II Testicular Mixed Germ Cell Tumor AJCC v6 and v7 9 7562 -NCIT:C8912 Stage I Testicular Mixed Germ Cell Tumor AJCC v6 and v7 9 7563 -NCIT:C8913 Stage III Testicular Mixed Germ Cell Tumor AJCC v6 and v7 9 7564 -NCIT:C9172 Testicular Mixed Embryonal Carcinoma and Yolk Sac Tumor with Seminoma 9 7565 -NCIT:C9173 Testicular Mixed Choriocarcinoma and Seminoma 9 7566 -NCIT:C68628 Childhood Malignant Testicular Germ Cell Tumor 8 7567 -NCIT:C6542 Childhood Testicular Mixed Germ Cell Tumor 9 7568 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 10 7569 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 9 7570 -NCIT:C6544 Childhood Testicular Choriocarcinoma 9 7571 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 9 7572 -NCIT:C7326 Testicular Germ Cell Neoplasia In Situ with Extratubular Extension 8 7573 -NCIT:C7328 Testicular Seminoma 8 7574 -NCIT:C39919 Testicular Seminoma with Syncytiotrophoblastic Cells 9 7575 -NCIT:C39920 Testicular Seminoma with High Mitotic Index 9 7576 -NCIT:C40957 Testicular Seminoma, Cribriform Variant 9 7577 -NCIT:C40958 Testicular Seminoma, Pseudoglandular Variant 9 7578 -NCIT:C40959 Testicular Seminoma, Tubular Variant 9 7579 -NCIT:C61383 Testicular Typical Seminoma 9 7580 -NCIT:C7329 Intratubular Seminoma 9 7581 -NCIT:C8917 Stage I Testicular Seminoma AJCC v6 and v7 9 7582 -NCIT:C8918 Stage II Testicular Seminoma AJCC v6 and v7 9 7583 -NCIT:C8919 Stage III Testicular Seminoma AJCC v6 and v7 9 7584 -NCIT:C9077 Refractory Malignant Testicular Germ Cell Tumor 8 7585 -NCIT:C9369 Recurrent Malignant Testicular Germ Cell Tumor 8 7586 -NCIT:C9277 Testicular Leukemia 7 7587 -NCIT:C7378 Malignant Prostate Neoplasm 6 7588 -NCIT:C161580 Prostate Malignant Solitary Fibrous Tumor 7 7589 -NCIT:C161607 Prostate Wilms Tumor 7 7590 -NCIT:C161608 Extrarenal Rhabdoid Tumor of the Prostate 7 7591 -NCIT:C161611 Prostate Melanoma 7 7592 -NCIT:C3642 Grade III Prostatic Intraepithelial Neoplasia 7 7593 -NCIT:C4863 Prostate Carcinoma 7 7594 -NCIT:C103817 Hereditary Prostate Carcinoma 8 7595 -NCIT:C114933 Hormone-Resistant Prostate Carcinoma 8 7596 -NCIT:C138167 Prostate Carcinoma by Gene Expression Profile 8 7597 -NCIT:C138168 Luminal A Prostate Carcinoma 9 7598 -NCIT:C138169 Luminal B Prostate Carcinoma 9 7599 -NCIT:C138170 Basal-Like Prostate Carcinoma 9 7600 -NCIT:C140163 Prostate Cancer by AJCC v8 Stage 8 7601 -NCIT:C140164 Stage I Prostate Cancer AJCC v8 9 7602 -NCIT:C140165 Stage II Prostate Cancer AJCC v8 9 7603 -NCIT:C140166 Stage IIA Prostate Cancer AJCC v8 10 7604 -NCIT:C140167 Stage IIB Prostate Cancer AJCC v8 10 7605 -NCIT:C140168 Stage IIC Prostate Cancer AJCC v8 10 7606 -NCIT:C140169 Stage III Prostate Cancer AJCC v8 9 7607 -NCIT:C140170 Stage IIIA Prostate Cancer AJCC v8 10 7608 -NCIT:C140171 Stage IIIB Prostate Cancer AJCC v8 10 7609 -NCIT:C140172 Stage IIIC Prostate Cancer AJCC v8 10 7610 -NCIT:C140173 Stage IV Prostate Cancer AJCC v8 9 7611 -NCIT:C140174 Stage IVA Prostate Cancer AJCC v8 10 7612 -NCIT:C140175 Stage IVB Prostate Cancer AJCC v8 10 7613 -NCIT:C161022 Intraductal Prostate Carcinoma 8 7614 -NCIT:C167255 Refractory Prostate Carcinoma 8 7615 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 9 7616 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 10 7617 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 10 7618 -NCIT:C161609 Double-Negative Prostate Carcinoma 10 7619 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 10 7620 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 10 7621 -NCIT:C167256 Refractory Prostate Adenocarcinoma 9 7622 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 9 7623 -NCIT:C171611 Unresectable Prostate Carcinoma 8 7624 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 9 7625 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 7626 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 9 7627 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 9 7628 -NCIT:C176517 Localized Prostate Carcinoma 8 7629 -NCIT:C39898 Primary Prostate Urothelial Carcinoma 8 7630 -NCIT:C39900 Prostatic Urethra Urothelial Carcinoma 9 7631 -NCIT:C39901 Prostatic Duct Urothelial Carcinoma 9 7632 -NCIT:C48596 Invasive Prostate Carcinoma 8 7633 -NCIT:C158912 Prostate Neuroendocrine Carcinoma 9 7634 -NCIT:C158650 Prostate Large Cell Neuroendocrine Carcinoma 10 7635 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 10 7636 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 11 7637 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 11 7638 -NCIT:C6766 Prostate Small Cell Neuroendocrine Carcinoma 10 7639 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 11 7640 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 11 7641 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 11 7642 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 11 7643 -NCIT:C2919 Prostate Adenocarcinoma 9 7644 -NCIT:C150557 Prostate Adenocarcinoma without Neuroendocrine Differentiation 10 7645 -NCIT:C164185 Aggressive Prostate Adenocarcinoma 10 7646 -NCIT:C164186 Prostate Adenocarcinoma by AJCC v7 Stage 10 7647 -NCIT:C8947 Stage I Prostate Adenocarcinoma AJCC v7 11 7648 -NCIT:C8948 Stage II Prostate Adenocarcinoma AJCC v7 11 7649 -NCIT:C8949 Stage III Prostate Adenocarcinoma AJCC v7 11 7650 -NCIT:C8950 Stage IV Prostate Adenocarcinoma AJCC v7 11 7651 -NCIT:C167256 Refractory Prostate Adenocarcinoma 10 7652 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 10 7653 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 11 7654 -NCIT:C27905 Well Differentiated Prostate Adenocarcinoma 10 7655 -NCIT:C39896 Prostate Ductal Adenocarcinoma, Papillary Pattern 11 7656 -NCIT:C27906 Moderately Differentiated Prostate Adenocarcinoma 10 7657 -NCIT:C27916 Poorly Differentiated Prostate Adenocarcinoma 10 7658 -NCIT:C5530 Prostate Acinar Adenocarcinoma, Sarcomatoid Variant 11 7659 -NCIT:C39903 Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 7660 -NCIT:C158656 Usual Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 7661 -NCIT:C158664 Prostate Adenocarcinoma with Paneth Cell-Like Neuroendocrine Differentiation 11 7662 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 7663 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 12 7664 -NCIT:C5596 Prostate Acinar Adenocarcinoma 10 7665 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 11 7666 -NCIT:C158656 Usual Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 7667 -NCIT:C160817 Prostate Acinar Adenocarcinoma, Microcystic Variant 11 7668 -NCIT:C160818 Prostate Acinar Adenocarcinoma, Pleomorphic Giant Cell Variant 11 7669 -NCIT:C39880 Prostate Acinar Adenocarcinoma, Atrophic Variant 11 7670 -NCIT:C39881 Prostate Acinar Adenocarcinoma, Pseudohyperplastic Variant 11 7671 -NCIT:C39882 Prostate Acinar Adenocarcinoma, Foamy Gland Variant 11 7672 -NCIT:C39884 Prostate Acinar Adenocarcinoma, Oncocytic Variant 11 7673 -NCIT:C39885 Prostate Acinar Adenocarcinoma, Lymphoepithelioma-Like Variant 11 7674 -NCIT:C5530 Prostate Acinar Adenocarcinoma, Sarcomatoid Variant 11 7675 -NCIT:C5535 Prostate Acinar Adenocarcinoma, Signet Ring-Like Cell Variant 11 7676 -NCIT:C5537 Prostate Acinar Mucinous Adenocarcinoma 11 7677 -NCIT:C6813 Prostate Ductal Adenocarcinoma 10 7678 -NCIT:C39895 Prostate Ductal Adenocarcinoma, Cribriform Pattern 11 7679 -NCIT:C39896 Prostate Ductal Adenocarcinoma, Papillary Pattern 11 7680 -NCIT:C39897 Prostate Ductal Adenocarcinoma, Solid Pattern 11 7681 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 10 7682 -NCIT:C156286 Advanced Prostate Adenocarcinoma 11 7683 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 12 7684 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 11 7685 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 12 7686 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 7687 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 12 7688 -NCIT:C39902 Prostate Basal Cell Carcinoma 9 7689 -NCIT:C5536 Prostate Squamous Cell Carcinoma 9 7690 -NCIT:C5538 Prostate Adenosquamous Carcinoma 9 7691 -NCIT:C5539 Prostate Adenoid Cystic Carcinoma 9 7692 -NCIT:C5597 Prostate Undifferentiated Carcinoma 9 7693 -NCIT:C7079 Prostate Cancer by Whitmore-Jewett Stage 8 7694 -NCIT:C7099 Stage D Prostate Cancer 9 7695 -NCIT:C7552 Stage C Prostate Cancer 9 7696 -NCIT:C7554 Stage B Prostate Cancer 9 7697 -NCIT:C7556 Stage A Prostate Cancer 9 7698 -NCIT:C7902 Recurrent Prostate Carcinoma 8 7699 -NCIT:C156771 Biochemically Recurrent Prostate Carcinoma 9 7700 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 9 7701 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 10 7702 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 9 7703 -NCIT:C8946 Metastatic Prostate Carcinoma 8 7704 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 9 7705 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 10 7706 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 10 7707 -NCIT:C161609 Double-Negative Prostate Carcinoma 10 7708 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 10 7709 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 10 7710 -NCIT:C132881 Prostate Carcinoma Metastatic in the Soft Tissue 9 7711 -NCIT:C148536 Castration-Naive Prostate Carcinoma 9 7712 -NCIT:C153336 Castration-Sensitive Prostate Carcinoma 9 7713 -NCIT:C156284 Advanced Prostate Carcinoma 9 7714 -NCIT:C156286 Advanced Prostate Adenocarcinoma 10 7715 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 7716 -NCIT:C156285 Locally Advanced Prostate Carcinoma 9 7717 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 10 7718 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 11 7719 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 10 7720 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 11 7721 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 10 7722 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 9 7723 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 10 7724 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 10 7725 -NCIT:C161584 Prostate Carcinoma Metastatic in the Pelvic Cavity 9 7726 -NCIT:C161587 Prostate Carcinoma Metastatic in the Lymph Nodes 9 7727 -NCIT:C171265 Oligometastatic Prostate Carcinoma 9 7728 -NCIT:C36307 Prostate Carcinoma Metastatic in the Lung 9 7729 -NCIT:C36308 Prostate Carcinoma Metastatic in the Bone 9 7730 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 9 7731 -NCIT:C156286 Advanced Prostate Adenocarcinoma 10 7732 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 7733 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 10 7734 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 11 7735 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 7736 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 7737 -NCIT:C90521 Prostate Cancer by AJCC v6 Stage 8 7738 -NCIT:C7551 Stage III Prostate Cancer AJCC v6 9 7739 -NCIT:C7553 Stage II Prostate Cancer AJCC v6 9 7740 -NCIT:C7555 Stage I Prostate Cancer AJCC v6 9 7741 -NCIT:C9075 Stage IV Prostate Cancer AJCC v6 9 7742 -NCIT:C91233 Prostate Cancer by AJCC v7 Stage 8 7743 -NCIT:C164186 Prostate Adenocarcinoma by AJCC v7 Stage 9 7744 -NCIT:C8947 Stage I Prostate Adenocarcinoma AJCC v7 10 7745 -NCIT:C8948 Stage II Prostate Adenocarcinoma AJCC v7 10 7746 -NCIT:C8949 Stage III Prostate Adenocarcinoma AJCC v7 10 7747 -NCIT:C8950 Stage IV Prostate Adenocarcinoma AJCC v7 10 7748 -NCIT:C89232 Stage I Prostate Cancer AJCC v7 9 7749 -NCIT:C8947 Stage I Prostate Adenocarcinoma AJCC v7 10 7750 -NCIT:C89233 Stage II Prostate Cancer AJCC v7 9 7751 -NCIT:C88106 Stage IIA Prostate Cancer AJCC v7 10 7752 -NCIT:C88107 Stage IIB Prostate Cancer AJCC v7 10 7753 -NCIT:C8948 Stage II Prostate Adenocarcinoma AJCC v7 10 7754 -NCIT:C89234 Stage III Prostate Cancer AJCC v7 9 7755 -NCIT:C8949 Stage III Prostate Adenocarcinoma AJCC v7 10 7756 -NCIT:C89235 Stage IV Prostate Cancer AJCC v7 9 7757 -NCIT:C8950 Stage IV Prostate Adenocarcinoma AJCC v7 10 7758 -NCIT:C5527 Prostate Myeloid Sarcoma 7 7759 -NCIT:C5531 Malignant Prostate Phyllodes Tumor 7 7760 -NCIT:C5533 Prostate Lymphoma 7 7761 -NCIT:C5534 Prostate Non-Hodgkin Lymphoma 8 7762 -NCIT:C161602 Prostate Diffuse Large B-Cell Lymphoma 9 7763 -NCIT:C161603 Prostate Follicular Lymphoma 9 7764 -NCIT:C161604 Prostate Mantle Cell Lymphoma 9 7765 -NCIT:C161605 Prostate Small Lymphocytic Lymphoma 9 7766 -NCIT:C7080 Metastatic Malignant Neoplasm in the Prostate Gland 7 7767 -NCIT:C39899 Secondary Prostate Urothelial Carcinoma 8 7768 -NCIT:C7731 Prostate Sarcoma 7 7769 -NCIT:C161034 Prostate Synovial Sarcoma 8 7770 -NCIT:C161035 Prostate Osteosarcoma 8 7771 -NCIT:C161038 Prostate Undifferentiated Pleomorphic Sarcoma 8 7772 -NCIT:C5522 Prostate Rhabdomyosarcoma 8 7773 -NCIT:C188070 Prostate Alveolar Rhabdomyosarcoma 9 7774 -NCIT:C5525 Prostate Embryonal Rhabdomyosarcoma 9 7775 -NCIT:C5523 Prostate Kaposi Sarcoma 8 7776 -NCIT:C5524 Prostate Stromal Sarcoma 8 7777 -NCIT:C5526 Prostate Leiomyosarcoma 8 7778 -NCIT:C5528 Prostate Angiosarcoma 8 7779 -NCIT:C7547 Malignant Penile Neoplasm 6 7780 -NCIT:C118821 Childhood Malignant Penile Neoplasm 7 7781 -NCIT:C162547 Penile Melanoma 7 7782 -NCIT:C178517 Penile Mucosal Melanoma 8 7783 -NCIT:C178518 Penile Cutaneous Melanoma 8 7784 -NCIT:C162548 Penile Lymphoma 7 7785 -NCIT:C162549 Metastatic Malignant Neoplasm in the Penis 7 7786 -NCIT:C162581 Penile Epithelioid Hemangioendothelioma 7 7787 -NCIT:C7730 Penile Sarcoma 7 7788 -NCIT:C162578 Penile Angiosarcoma 8 7789 -NCIT:C162584 Penile Malignant Peripheral Nerve Sheath Tumor 8 7790 -NCIT:C162585 Penile Leiomyosarcoma 8 7791 -NCIT:C162588 Penile Rhabdomyosarcoma 8 7792 -NCIT:C162589 Penile Undifferentiated Pleomorphic Sarcoma 8 7793 -NCIT:C6377 Penile Kaposi Sarcoma 8 7794 -NCIT:C9061 Penile Carcinoma 7 7795 -NCIT:C118820 Adult Penile Carcinoma 8 7796 -NCIT:C140075 Penile Cancer by AJCC v8 Stage 8 7797 -NCIT:C140076 Stage 0 Penile Cancer AJCC v8 9 7798 -NCIT:C140077 Stage 0is Penile Cancer AJCC v8 10 7799 -NCIT:C140078 Stage 0a Penile Cancer AJCC v8 10 7800 -NCIT:C140079 Stage I Penile Cancer AJCC v8 9 7801 -NCIT:C140080 Stage II Penile Cancer AJCC v8 9 7802 -NCIT:C140081 Stage IIA Penile Cancer AJCC v8 10 7803 -NCIT:C140083 Stage IIB Penile Cancer AJCC v8 10 7804 -NCIT:C140084 Stage III Penile Cancer AJCC v8 9 7805 -NCIT:C140085 Stage IIIA Penile Cancer AJCC v8 10 7806 -NCIT:C140086 Stage IIIB Penile Cancer AJCC v8 10 7807 -NCIT:C140087 Stage IV Penile Cancer AJCC v8 9 7808 -NCIT:C177150 Refractory Penile Carcinoma 8 7809 -NCIT:C27784 Metastatic Penile Carcinoma 8 7810 -NCIT:C170789 Locally Advanced Penile Carcinoma 9 7811 -NCIT:C170790 Advanced Penile Carcinoma 9 7812 -NCIT:C182111 Metastatic Squamous Cell Carcinoma of the Penis 9 7813 -NCIT:C27817 Penile Paget Disease 8 7814 -NCIT:C39961 Penile Basal Cell Carcinoma 8 7815 -NCIT:C7729 Squamous Cell Carcinoma of the Penis 8 7816 -NCIT:C159244 Non-Human Papillomavirus-Related Squamous Cell Carcinoma of the Penis 9 7817 -NCIT:C103340 Papillary Carcinoma of the Penis, Not Otherwise Specified 10 7818 -NCIT:C159245 Pseudohyperplastic Carcinoma of the Penis 10 7819 -NCIT:C159246 Pseudoglandular Carcinoma of the Penis 10 7820 -NCIT:C159248 Adenosquamous Carcinoma of the Penis 10 7821 -NCIT:C39959 Mixed Squamous Cell Carcinoma of the Penis 10 7822 -NCIT:C6979 Squamous Cell Carcinoma of the Penis, Usual Type 10 7823 -NCIT:C6982 Verrucous Carcinoma of the Penis 10 7824 -NCIT:C159247 Carcinoma Cuniculatum of the Penis 11 7825 -NCIT:C6984 Sarcomatoid Carcinoma of the Penis 10 7826 -NCIT:C182111 Metastatic Squamous Cell Carcinoma of the Penis 9 7827 -NCIT:C27682 Human Papillomavirus-Related Squamous Cell Carcinoma of the Penis 9 7828 -NCIT:C159250 Warty-Basaloid Carcinoma of the Penis 10 7829 -NCIT:C159251 Clear Cell Squamous Cell Carcinoma of the Penis 10 7830 -NCIT:C159252 Lymphoepithelioma-Like Carcinoma of the Penis 10 7831 -NCIT:C6980 Basaloid Squamous Cell Carcinoma of the Penis 10 7832 -NCIT:C159249 Papillary-Basaloid Carcinoma of the Penis 11 7833 -NCIT:C6981 Warty Carcinoma of the Penis 10 7834 -NCIT:C27790 Penile Carcinoma In Situ 9 7835 -NCIT:C6983 Papillary Carcinoma of the Penis 9 7836 -NCIT:C103340 Papillary Carcinoma of the Penis, Not Otherwise Specified 10 7837 -NCIT:C159249 Papillary-Basaloid Carcinoma of the Penis 10 7838 -NCIT:C6981 Warty Carcinoma of the Penis 10 7839 -NCIT:C6982 Verrucous Carcinoma of the Penis 10 7840 -NCIT:C159247 Carcinoma Cuniculatum of the Penis 11 7841 -NCIT:C7870 Recurrent Penile Carcinoma 8 7842 -NCIT:C90520 Penile Cancer by AJCC v6 Stage 8 7843 -NCIT:C3643 Stage 0 Penile Cancer AJCC v6 9 7844 -NCIT:C7867 Stage I Penile Cancer AJCC v6 9 7845 -NCIT:C7868 Stage II Penile Cancer AJCC v6 9 7846 -NCIT:C7869 Stage III Penile Cancer AJCC v6 9 7847 -NCIT:C8959 Stage IV Penile Cancer AJCC v6 9 7848 -NCIT:C91234 Penile Cancer by AJCC v7 Stage 8 7849 -NCIT:C89194 Stage 0 Penile Cancer AJCC v7 9 7850 -NCIT:C27790 Penile Carcinoma In Situ 10 7851 -NCIT:C89195 Stage I Penile Cancer AJCC v7 9 7852 -NCIT:C89196 Stage II Penile Cancer AJCC v7 9 7853 -NCIT:C89197 Stage III Penile Cancer AJCC v7 9 7854 -NCIT:C88104 Stage IIIa Penile Cancer AJCC v7 10 7855 -NCIT:C88105 Stage IIIb Penile Cancer AJCC v7 10 7856 -NCIT:C89198 Stage IV Penile Cancer AJCC v7 9 7857 -NCIT:C9297 Malignant Urinary System Neoplasm 4 7858 -NCIT:C150542 Recurrent Malignant Urinary System Neoplasm 5 7859 -NCIT:C162730 Recurrent Rhabdoid Tumor of the Kidney 6 7860 -NCIT:C7623 Recurrent Urinary System Carcinoma 6 7861 -NCIT:C157631 Recurrent Urothelial Carcinoma 7 7862 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 7863 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 7864 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 7865 -NCIT:C8254 Recurrent Renal Pelvis and Ureter Urothelial Carcinoma 8 7866 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 9 7867 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 7868 -NCIT:C172622 Recurrent Kidney Carcinoma 7 7869 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 8 7870 -NCIT:C162726 Recurrent Kidney Medullary Carcinoma 8 7871 -NCIT:C7825 Recurrent Renal Cell Carcinoma 8 7872 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 9 7873 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 10 7874 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 9 7875 -NCIT:C7508 Recurrent Urethral Carcinoma 7 7876 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 7877 -NCIT:C7899 Recurrent Bladder Carcinoma 7 7878 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 7879 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 7880 -NCIT:C190774 Recurrent Non-Muscle Invasive Bladder Carcinoma 8 7881 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 7882 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 7883 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 8 7884 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 8 7885 -NCIT:C9255 Recurrent Ureter Carcinoma 7 7886 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 8 7887 -NCIT:C7845 Recurrent Kidney Wilms Tumor 6 7888 -NCIT:C9266 Recurrent Malignant Bladder Neoplasm 6 7889 -NCIT:C7899 Recurrent Bladder Carcinoma 7 7890 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 7891 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 7892 -NCIT:C190774 Recurrent Non-Muscle Invasive Bladder Carcinoma 8 7893 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 7894 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 7895 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 8 7896 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 8 7897 -NCIT:C150543 Refractory Malignant Urinary System Neoplasm 5 7898 -NCIT:C162719 Refractory Urinary System Carcinoma 6 7899 -NCIT:C150316 Refractory Bladder Carcinoma 7 7900 -NCIT:C148286 Refractory Stage 0 Bladder Cancer AJCC v6 and v7 8 7901 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 8 7902 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 7903 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 8 7904 -NCIT:C150364 Refractory Urothelial Carcinoma 7 7905 -NCIT:C150365 Platinum-Resistant Urothelial Carcinoma 8 7906 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 8 7907 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 7908 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 8 7909 -NCIT:C176996 Refractory Urethral Urothelial Carcinoma 8 7910 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 8 7911 -NCIT:C172623 Refractory Kidney Carcinoma 7 7912 -NCIT:C162727 Refractory Kidney Medullary Carcinoma 8 7913 -NCIT:C165745 Refractory Renal Cell Carcinoma 8 7914 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 9 7915 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 8 7916 -NCIT:C162731 Refractory Rhabdoid Tumor of the Kidney 6 7917 -NCIT:C155950 Hereditary Malignant Urinary System Neoplasm 5 7918 -NCIT:C39789 Hereditary Renal Cell Carcinoma 6 7919 -NCIT:C36260 Hereditary Clear Cell Renal Cell Carcinoma 7 7920 -NCIT:C39790 Renal Cell Carcinoma with Constitutional Chromosome 3 Translocations 7 7921 -NCIT:C51302 Hereditary Leiomyomatosis and Renal Cell Carcinoma 7 7922 -NCIT:C9222 Hereditary Papillary Renal Cell Carcinoma 7 7923 -NCIT:C8496 Hereditary Kidney Wilms Tumor 6 7924 -NCIT:C170943 Metastatic Malignant Neoplasm in the Urinary System 5 7925 -NCIT:C7544 Metastatic Malignant Neoplasm in the Ureter 6 7926 -NCIT:C7549 Metastatic Malignant Neoplasm in the Kidney 6 7927 -NCIT:C185153 Extramedullary Disease in Plasma Cell Myeloma Involving the Kidney 7 7928 -NCIT:C7573 Metastatic Malignant Neoplasm in the Urethra 6 7929 -NCIT:C7650 Metastatic Malignant Neoplasm in the Bladder 6 7930 -NCIT:C178453 Mucosal Melanoma of the Urinary System 5 7931 -NCIT:C159663 Bladder Melanoma 6 7932 -NCIT:C159665 Urethral Melanoma 6 7933 -NCIT:C181197 Urinary System Carcinoma 5 7934 -NCIT:C162719 Refractory Urinary System Carcinoma 6 7935 -NCIT:C150316 Refractory Bladder Carcinoma 7 7936 -NCIT:C148286 Refractory Stage 0 Bladder Cancer AJCC v6 and v7 8 7937 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 8 7938 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 7939 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 8 7940 -NCIT:C150364 Refractory Urothelial Carcinoma 7 7941 -NCIT:C150365 Platinum-Resistant Urothelial Carcinoma 8 7942 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 8 7943 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 7944 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 8 7945 -NCIT:C176996 Refractory Urethral Urothelial Carcinoma 8 7946 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 8 7947 -NCIT:C172623 Refractory Kidney Carcinoma 7 7948 -NCIT:C162727 Refractory Kidney Medullary Carcinoma 8 7949 -NCIT:C165745 Refractory Renal Cell Carcinoma 8 7950 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 9 7951 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 8 7952 -NCIT:C191749 Squamous Cell Carcinoma of the Urinary Tract 6 7953 -NCIT:C4031 Bladder Squamous Cell Carcinoma 7 7954 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 8 7955 -NCIT:C27768 Schistosoma Hematobium-Related Bladder Squamous Cell Carcinoma 8 7956 -NCIT:C39833 Schistosoma Hematobium-Related Bladder Verrucous Carcinoma 9 7957 -NCIT:C39832 Bladder Verrucous Carcinoma 8 7958 -NCIT:C39833 Schistosoma Hematobium-Related Bladder Verrucous Carcinoma 9 7959 -NCIT:C39845 Urachal Squamous Cell Carcinoma 8 7960 -NCIT:C4994 Stage II Bladder Squamous Cell Carcinoma AJCC v6 and v7 8 7961 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 8 7962 -NCIT:C8903 Stage 0 Bladder Squamous Cell Carcinoma AJCC v6 and v7 8 7963 -NCIT:C8904 Stage I Squamous Cell Carcinoma of the Bladder AJCC v6 and v7 8 7964 -NCIT:C8905 Stage III Bladder Squamous Cell Carcinoma AJCC v6 and v7 8 7965 -NCIT:C8906 Stage IV Bladder Squamous Cell Carcinoma AJCC v7 8 7966 -NCIT:C191751 Adenocarcinoma of the Urinary Tract 6 7967 -NCIT:C4032 Bladder Adenocarcinoma 7 7968 -NCIT:C39835 Bladder Enteric Type Adenocarcinoma 8 7969 -NCIT:C39836 Bladder Adenocarcinoma, Not Otherwise Specified 8 7970 -NCIT:C39837 Bladder Mucinous Adenocarcinoma 8 7971 -NCIT:C39838 Bladder Hepatoid Adenocarcinoma 8 7972 -NCIT:C39839 Bladder Mixed Adenocarcinoma 8 7973 -NCIT:C39843 Urachal Adenocarcinoma 8 7974 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 8 7975 -NCIT:C6163 Bladder Signet Ring Cell Adenocarcinoma 8 7976 -NCIT:C8894 Stage 0 Bladder Adenocarcinoma AJCC v6 and v7 8 7977 -NCIT:C8895 Stage I Bladder Adenocarcinoma AJCC v6 and v7 8 7978 -NCIT:C8896 Stage II Bladder Adenocarcinoma AJCC v6 and v7 8 7979 -NCIT:C8897 Stage III Bladder Adenocarcinoma AJCC v6 and v7 8 7980 -NCIT:C8898 Stage IV Bladder Adenocarcinoma AJCC v7 8 7981 -NCIT:C191753 Diverticular Carcinoma of the Urinary Tract 6 7982 -NCIT:C191768 Clear Cell Adenocarcinoma of the Urinary Tract 6 7983 -NCIT:C6172 Urethral Clear Cell Adenocarcinoma 7 7984 -NCIT:C6179 Bladder Clear Cell Adenocarcinoma 7 7985 -NCIT:C39847 Bladder Tubulo-Cystic Clear Cell Adenocarcinoma 8 7986 -NCIT:C39848 Bladder Papillary Clear Cell Adenocarcinoma 8 7987 -NCIT:C39849 Bladder Diffuse Clear Cell Adenocarcinoma 8 7988 -NCIT:C191769 Endometrioid Adenocarcinoma of the Urinary Tract 6 7989 -NCIT:C159542 Bladder Endometrioid Adenocarcinoma 7 7990 -NCIT:C4030 Urothelial Carcinoma 6 7991 -NCIT:C126109 Metastatic Urothelial Carcinoma 7 7992 -NCIT:C148493 Advanced Urothelial Carcinoma 8 7993 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 7994 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 7995 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 7996 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 7997 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 7998 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 7999 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 8000 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 8001 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 8002 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 8003 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 8004 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 8005 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 8006 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 8007 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 8008 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 8009 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 8010 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 8011 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 8012 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 8 8013 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 8014 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 8015 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 8016 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 8017 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 8018 -NCIT:C191692 Metastatic Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 8019 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 8020 -NCIT:C191693 Metastatic Giant Cell Urothelial Carcinoma 8 8021 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 8022 -NCIT:C191694 Metastatic Lipid-Rich Urothelial Carcinoma 8 8023 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 8024 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 8 8025 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 8026 -NCIT:C191696 Metastatic Nested Urothelial Carcinoma 8 8027 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 8028 -NCIT:C191697 Metastatic Plasmacytoid Urothelial Carcinoma 8 8029 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 8030 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 8 8031 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 8032 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 8 8033 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 8034 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 8035 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 8036 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 9 8037 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 8038 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 8039 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 8040 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 8041 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 8042 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 8043 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 8044 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 8045 -NCIT:C150364 Refractory Urothelial Carcinoma 7 8046 -NCIT:C150365 Platinum-Resistant Urothelial Carcinoma 8 8047 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 8 8048 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 8049 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 8 8050 -NCIT:C176996 Refractory Urethral Urothelial Carcinoma 8 8051 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 8 8052 -NCIT:C150521 Unresectable Urothelial Carcinoma 7 8053 -NCIT:C158585 Unresectable Urethral Urothelial Carcinoma 8 8054 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 8 8055 -NCIT:C164160 Unresectable Renal Pelvis and Ureter Urothelial Carcinoma 8 8056 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 9 8057 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 9 8058 -NCIT:C157631 Recurrent Urothelial Carcinoma 7 8059 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 8060 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 8061 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 8062 -NCIT:C8254 Recurrent Renal Pelvis and Ureter Urothelial Carcinoma 8 8063 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 9 8064 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 8065 -NCIT:C180606 Urothelial Carcinoma, High Grade 7 8066 -NCIT:C180607 Renal Pelvis Urothelial Carcinoma, High Grade 8 8067 -NCIT:C180608 Ureter Urothelial Carcinoma, High Grade 8 8068 -NCIT:C180609 Bladder Urothelial Carcinoma, High Grade 8 8069 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 9 8070 -NCIT:C191675 Non-Invasive Papillary Urothelial Carcinoma, High Grade 8 8071 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 9 8072 -NCIT:C191673 Non-Invasive Papillary Urothelial Carcinoma, Low Grade 7 8073 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 8 8074 -NCIT:C39851 Bladder Urothelial Carcinoma 7 8075 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 8076 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 8077 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 8078 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 8079 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 8080 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 8081 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 8082 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 8083 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 8084 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 8085 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 8086 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 8087 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 8088 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 8 8089 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 8 8090 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 8091 -NCIT:C177531 Bladder Flat Urothelial Carcinoma 8 8092 -NCIT:C37266 Bladder Urothelial Carcinoma In Situ 9 8093 -NCIT:C140418 Stage 0is Bladder Cancer AJCC v8 10 8094 -NCIT:C3644 Stage 0is Bladder Urothelial Carcinoma AJCC v6 and v7 10 8095 -NCIT:C180609 Bladder Urothelial Carcinoma, High Grade 8 8096 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 9 8097 -NCIT:C188032 Resectable Bladder Urothelial Carcinoma 8 8098 -NCIT:C27634 Transplant-Related Bladder Urothelial Carcinoma 8 8099 -NCIT:C27885 Invasive Bladder Urothelial Carcinoma 8 8100 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 9 8101 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 8102 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 10 8103 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 9 8104 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 10 8105 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 9 8106 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 9 8107 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 9 8108 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 9 8109 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 8110 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 8111 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 9 8112 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 9 8113 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 9 8114 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 9 8115 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 10 8116 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 9 8117 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 9 8118 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 9 8119 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 10 8120 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 9 8121 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 10 8122 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 10 8123 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 10 8124 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 8125 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 10 8126 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 9 8127 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 10 8128 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 9 8129 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 10 8130 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 8131 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 8132 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 8133 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 9 8134 -NCIT:C39844 Urachal Urothelial Carcinoma 8 8135 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 8136 -NCIT:C7383 Bladder Papillary Urothelial Carcinoma 8 8137 -NCIT:C158382 Bladder Non-Invasive Papillary Urothelial Carcinoma 9 8138 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 10 8139 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 10 8140 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 10 8141 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 10 8142 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 8143 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 8144 -NCIT:C39853 Invasive Urothelial Carcinoma 7 8145 -NCIT:C115966 Invasive Bladder Urothelial Carcinoma Associated with Urethral Carcinoma 8 8146 -NCIT:C164252 Invasive Sarcomatoid Urothelial Carcinoma 8 8147 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 9 8148 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 10 8149 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 9 8150 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 10 8151 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 10 8152 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 10 8153 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 9 8154 -NCIT:C191678 Invasive Lymphoepithelioma-Like Urothelial Carcinoma 8 8155 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 9 8156 -NCIT:C191679 Invasive Giant Cell Urothelial Carcinoma 8 8157 -NCIT:C191693 Metastatic Giant Cell Urothelial Carcinoma 9 8158 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 10 8159 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 9 8160 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 10 8161 -NCIT:C191680 Invasive Urothelial Carcinoma with Glandular Differentiation 8 8162 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 9 8163 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 9 8164 -NCIT:C191681 Invasive Urothelial Carcinoma with Squamous Differentiation 8 8165 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 9 8166 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 9 8167 -NCIT:C191682 Invasive Urothelial Carcinoma with Trophoblastic Differentiation 8 8168 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 9 8169 -NCIT:C191683 Invasive Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 8170 -NCIT:C191692 Metastatic Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 8171 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 10 8172 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 8173 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 10 8174 -NCIT:C191684 Invasive Lipid-Rich Urothelial Carcinoma 8 8175 -NCIT:C191694 Metastatic Lipid-Rich Urothelial Carcinoma 9 8176 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 10 8177 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 9 8178 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 10 8179 -NCIT:C191685 Invasive Microcystic Urothelial Carcinoma 8 8180 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 9 8181 -NCIT:C191686 Invasive Micropapillary Urothelial Carcinoma 8 8182 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 9 8183 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 8184 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 8185 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 8186 -NCIT:C191687 Invasive Nested Urothelial Carcinoma 8 8187 -NCIT:C191696 Metastatic Nested Urothelial Carcinoma 9 8188 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 10 8189 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 9 8190 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 10 8191 -NCIT:C191688 Invasive Plasmacytoid Urothelial Carcinoma 8 8192 -NCIT:C191697 Metastatic Plasmacytoid Urothelial Carcinoma 9 8193 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 10 8194 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 9 8195 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 10 8196 -NCIT:C191725 Invasive Large Nested Urothelial Carcinoma 8 8197 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 9 8198 -NCIT:C191728 Invasive Tubular Urothelial Carcinoma 8 8199 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 9 8200 -NCIT:C191730 Invasive Poorly Differentiated Urothelial Carcinoma 8 8201 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 9 8202 -NCIT:C191734 Invasive Conventional Urothelial Carcinoma 8 8203 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 9 8204 -NCIT:C27885 Invasive Bladder Urothelial Carcinoma 8 8205 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 9 8206 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 8207 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 10 8208 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 9 8209 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 10 8210 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 9 8211 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 9 8212 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 9 8213 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 9 8214 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 8215 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 8216 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 9 8217 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 9 8218 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 9 8219 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 9 8220 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 10 8221 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 9 8222 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 9 8223 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 9 8224 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 10 8225 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 9 8226 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 10 8227 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 10 8228 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 10 8229 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 8230 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 10 8231 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 9 8232 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 10 8233 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 9 8234 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 10 8235 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 8236 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 8237 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 8238 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 9 8239 -NCIT:C39879 Invasive Renal Pelvis and Ureter Urothelial Carcinoma 8 8240 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 9 8241 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 9 8242 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 9 8243 -NCIT:C39898 Primary Prostate Urothelial Carcinoma 7 8244 -NCIT:C39900 Prostatic Urethra Urothelial Carcinoma 8 8245 -NCIT:C39901 Prostatic Duct Urothelial Carcinoma 8 8246 -NCIT:C6166 Urethral Urothelial Carcinoma 7 8247 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 8248 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 8249 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 8250 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 8251 -NCIT:C158585 Unresectable Urethral Urothelial Carcinoma 8 8252 -NCIT:C176996 Refractory Urethral Urothelial Carcinoma 8 8253 -NCIT:C39900 Prostatic Urethra Urothelial Carcinoma 8 8254 -NCIT:C7716 Renal Pelvis and Ureter Urothelial Carcinoma 7 8255 -NCIT:C140355 Renal Pelvis and Ureter Cancer by AJCC v8 Stage 8 8256 -NCIT:C140356 Renal Pelvis Cancer by AJCC v8 Stage 9 8257 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 8258 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 10 8259 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 10 8260 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 10 8261 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 10 8262 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 10 8263 -NCIT:C140357 Ureter Cancer by AJCC v8 Stage 9 8264 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 10 8265 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 10 8266 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 10 8267 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 10 8268 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 10 8269 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 10 8270 -NCIT:C140358 Stage 0a Renal Pelvis and Ureter Cancer AJCC v8 9 8271 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 8272 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 10 8273 -NCIT:C140361 Stage 0is Renal Pelvis and Ureter Cancer AJCC v8 9 8274 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 10 8275 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 10 8276 -NCIT:C140364 Stage I Renal Pelvis and Ureter Cancer AJCC v8 9 8277 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 10 8278 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 10 8279 -NCIT:C140367 Stage II Renal Pelvis and Ureter Cancer AJCC v8 9 8280 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 10 8281 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 10 8282 -NCIT:C140370 Stage III Renal Pelvis and Ureter Cancer AJCC v8 9 8283 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 10 8284 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 10 8285 -NCIT:C140373 Stage IV Renal Pelvis and Ureter Cancer AJCC v8 9 8286 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 10 8287 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 10 8288 -NCIT:C140376 Renal Pelvis and Ureter Cancer by AJCC v7 Stage 8 8289 -NCIT:C140377 Renal Pelvis Cancer by AJCC v7 Stage 9 8290 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 10 8291 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 10 8292 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 10 8293 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 10 8294 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 10 8295 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 8296 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 8297 -NCIT:C140378 Ureter Cancer by AJCC v7 Stage 9 8298 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 10 8299 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 11 8300 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 11 8301 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 10 8302 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 10 8303 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 10 8304 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 10 8305 -NCIT:C39850 Stage 0 Renal Pelvis and Ureter Cancer AJCC v7 9 8306 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 10 8307 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 11 8308 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 11 8309 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 10 8310 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 8311 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 8312 -NCIT:C7517 Stage 0a Renal Pelvis and Ureter Cancer AJCC v7 10 8313 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 8314 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 11 8315 -NCIT:C7518 Stage 0is Renal Pelvis and Ureter Cancer AJCC v7 10 8316 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 11 8317 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 8318 -NCIT:C7519 Stage I Renal Pelvis and Ureter Cancer AJCC v7 9 8319 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 10 8320 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 10 8321 -NCIT:C7520 Stage II Renal Pelvis and Ureter Cancer AJCC v7 9 8322 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 10 8323 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 10 8324 -NCIT:C7521 Stage III Renal Pelvis and Ureter Cancer AJCC v7 9 8325 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 10 8326 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 10 8327 -NCIT:C7522 Stage IV Renal Pelvis and Ureter Cancer AJCC v7 9 8328 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 10 8329 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 10 8330 -NCIT:C164160 Unresectable Renal Pelvis and Ureter Urothelial Carcinoma 8 8331 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 9 8332 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 9 8333 -NCIT:C39879 Invasive Renal Pelvis and Ureter Urothelial Carcinoma 8 8334 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 9 8335 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 9 8336 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 9 8337 -NCIT:C4830 Ureter Urothelial Carcinoma 8 8338 -NCIT:C140357 Ureter Cancer by AJCC v8 Stage 9 8339 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 10 8340 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 10 8341 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 10 8342 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 10 8343 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 10 8344 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 10 8345 -NCIT:C140378 Ureter Cancer by AJCC v7 Stage 9 8346 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 10 8347 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 11 8348 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 11 8349 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 10 8350 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 10 8351 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 10 8352 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 10 8353 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 9 8354 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 8355 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 8356 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 9 8357 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 9 8358 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 9 8359 -NCIT:C180608 Ureter Urothelial Carcinoma, High Grade 9 8360 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 9 8361 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 9 8362 -NCIT:C7355 Renal Pelvis Urothelial Carcinoma 8 8363 -NCIT:C140356 Renal Pelvis Cancer by AJCC v8 Stage 9 8364 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 8365 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 10 8366 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 10 8367 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 10 8368 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 10 8369 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 10 8370 -NCIT:C140377 Renal Pelvis Cancer by AJCC v7 Stage 9 8371 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 10 8372 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 10 8373 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 10 8374 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 10 8375 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 10 8376 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 8377 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 8378 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 8379 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 8380 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 8381 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 8382 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 9 8383 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 9 8384 -NCIT:C180607 Renal Pelvis Urothelial Carcinoma, High Grade 9 8385 -NCIT:C6148 Renal Pelvis Papillary Urothelial Carcinoma 9 8386 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 8387 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 10 8388 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 9 8389 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 8 8390 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 8391 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 8392 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 8393 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 9 8394 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 8395 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 8396 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 8397 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 8398 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 8399 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 8400 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 8401 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 8402 -NCIT:C8167 Localized Renal Pelvis and Ureter Urothelial Carcinoma 8 8403 -NCIT:C8168 Regional Renal Pelvis and Ureter Urothelial Carcinoma 8 8404 -NCIT:C8254 Recurrent Renal Pelvis and Ureter Urothelial Carcinoma 8 8405 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 9 8406 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 8407 -NCIT:C4912 Bladder Carcinoma 6 8408 -NCIT:C118816 Childhood Bladder Carcinoma 7 8409 -NCIT:C140416 Bladder Cancer by AJCC v8 Stage 7 8410 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 8 8411 -NCIT:C140418 Stage 0is Bladder Cancer AJCC v8 8 8412 -NCIT:C140419 Stage I Bladder Cancer AJCC v8 8 8413 -NCIT:C140420 Stage II Bladder Cancer AJCC v8 8 8414 -NCIT:C140421 Stage III Bladder Cancer AJCC v8 8 8415 -NCIT:C140422 Stage IIIA Bladder Cancer AJCC v8 9 8416 -NCIT:C140423 Stage IIIB Bladder Cancer AJCC v8 9 8417 -NCIT:C140424 Stage IV Bladder Cancer AJCC v8 8 8418 -NCIT:C140425 Stage IVA Bladder Cancer AJCC v8 9 8419 -NCIT:C140426 Stage IVB Bladder Cancer AJCC v8 9 8420 -NCIT:C150316 Refractory Bladder Carcinoma 7 8421 -NCIT:C148286 Refractory Stage 0 Bladder Cancer AJCC v6 and v7 8 8422 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 8 8423 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 8424 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 8 8425 -NCIT:C150570 Invasive Bladder Carcinoma 7 8426 -NCIT:C150572 Muscle Invasive Bladder Carcinoma 8 8427 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 9 8428 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 10 8429 -NCIT:C165716 Invasive Bladder Mixed Carcinoma 8 8430 -NCIT:C27474 Non-Muscle Invasive Bladder Carcinoma 8 8431 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 9 8432 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 8433 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 10 8434 -NCIT:C190772 Metastatic Non-Muscle Invasive Bladder Carcinoma 9 8435 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 10 8436 -NCIT:C190774 Recurrent Non-Muscle Invasive Bladder Carcinoma 9 8437 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 8438 -NCIT:C27885 Invasive Bladder Urothelial Carcinoma 8 8439 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 9 8440 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 8441 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 10 8442 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 9 8443 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 10 8444 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 9 8445 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 9 8446 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 9 8447 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 9 8448 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 8449 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 8450 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 9 8451 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 9 8452 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 9 8453 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 9 8454 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 10 8455 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 9 8456 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 9 8457 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 9 8458 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 10 8459 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 9 8460 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 10 8461 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 10 8462 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 10 8463 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 8464 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 10 8465 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 9 8466 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 10 8467 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 9 8468 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 10 8469 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 8470 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 8471 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 8472 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 9 8473 -NCIT:C156062 Metastatic Bladder Carcinoma 7 8474 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 8475 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 8476 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 8477 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 8478 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 8479 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 8480 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 8481 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 8482 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 8483 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 8484 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 8485 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 8 8486 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 8 8487 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 8 8488 -NCIT:C167071 Locally Advanced Bladder Carcinoma 8 8489 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 8490 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 9 8491 -NCIT:C167338 Advanced Bladder Carcinoma 8 8492 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 8493 -NCIT:C190772 Metastatic Non-Muscle Invasive Bladder Carcinoma 8 8494 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 9 8495 -NCIT:C157759 Bladder Neuroendocrine Carcinoma 7 8496 -NCIT:C157760 Bladder Large Cell Neuroendocrine Carcinoma 8 8497 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 9 8498 -NCIT:C9461 Bladder Small Cell Neuroendocrine Carcinoma 8 8499 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 9 8500 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 9 8501 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 9 8502 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 9 8503 -NCIT:C159542 Bladder Endometrioid Adenocarcinoma 7 8504 -NCIT:C160158 Carcinoma Arising in Bladder Diverticulum 7 8505 -NCIT:C167075 Unresectable Bladder Carcinoma 7 8506 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 8 8507 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 8 8508 -NCIT:C39842 Urachal Carcinoma 7 8509 -NCIT:C39843 Urachal Adenocarcinoma 8 8510 -NCIT:C39844 Urachal Urothelial Carcinoma 8 8511 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 8512 -NCIT:C39845 Urachal Squamous Cell Carcinoma 8 8513 -NCIT:C39851 Bladder Urothelial Carcinoma 7 8514 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 8515 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 8516 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 8517 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 8518 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 8519 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 8520 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 8521 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 8522 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 8523 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 8524 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 8525 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 8526 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 8527 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 8 8528 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 8 8529 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 8530 -NCIT:C177531 Bladder Flat Urothelial Carcinoma 8 8531 -NCIT:C37266 Bladder Urothelial Carcinoma In Situ 9 8532 -NCIT:C140418 Stage 0is Bladder Cancer AJCC v8 10 8533 -NCIT:C3644 Stage 0is Bladder Urothelial Carcinoma AJCC v6 and v7 10 8534 -NCIT:C180609 Bladder Urothelial Carcinoma, High Grade 8 8535 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 9 8536 -NCIT:C188032 Resectable Bladder Urothelial Carcinoma 8 8537 -NCIT:C27634 Transplant-Related Bladder Urothelial Carcinoma 8 8538 -NCIT:C27885 Invasive Bladder Urothelial Carcinoma 8 8539 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 9 8540 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 8541 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 10 8542 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 9 8543 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 10 8544 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 9 8545 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 9 8546 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 9 8547 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 9 8548 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 8549 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 8550 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 9 8551 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 9 8552 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 9 8553 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 9 8554 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 10 8555 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 9 8556 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 9 8557 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 9 8558 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 10 8559 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 9 8560 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 10 8561 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 10 8562 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 10 8563 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 8564 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 10 8565 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 9 8566 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 10 8567 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 9 8568 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 10 8569 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 8570 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 8571 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 8572 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 9 8573 -NCIT:C39844 Urachal Urothelial Carcinoma 8 8574 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 8575 -NCIT:C7383 Bladder Papillary Urothelial Carcinoma 8 8576 -NCIT:C158382 Bladder Non-Invasive Papillary Urothelial Carcinoma 9 8577 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 10 8578 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 10 8579 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 10 8580 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 10 8581 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 8582 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 8583 -NCIT:C4031 Bladder Squamous Cell Carcinoma 7 8584 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 8 8585 -NCIT:C27768 Schistosoma Hematobium-Related Bladder Squamous Cell Carcinoma 8 8586 -NCIT:C39833 Schistosoma Hematobium-Related Bladder Verrucous Carcinoma 9 8587 -NCIT:C39832 Bladder Verrucous Carcinoma 8 8588 -NCIT:C39833 Schistosoma Hematobium-Related Bladder Verrucous Carcinoma 9 8589 -NCIT:C39845 Urachal Squamous Cell Carcinoma 8 8590 -NCIT:C4994 Stage II Bladder Squamous Cell Carcinoma AJCC v6 and v7 8 8591 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 8 8592 -NCIT:C8903 Stage 0 Bladder Squamous Cell Carcinoma AJCC v6 and v7 8 8593 -NCIT:C8904 Stage I Squamous Cell Carcinoma of the Bladder AJCC v6 and v7 8 8594 -NCIT:C8905 Stage III Bladder Squamous Cell Carcinoma AJCC v6 and v7 8 8595 -NCIT:C8906 Stage IV Bladder Squamous Cell Carcinoma AJCC v7 8 8596 -NCIT:C4032 Bladder Adenocarcinoma 7 8597 -NCIT:C39835 Bladder Enteric Type Adenocarcinoma 8 8598 -NCIT:C39836 Bladder Adenocarcinoma, Not Otherwise Specified 8 8599 -NCIT:C39837 Bladder Mucinous Adenocarcinoma 8 8600 -NCIT:C39838 Bladder Hepatoid Adenocarcinoma 8 8601 -NCIT:C39839 Bladder Mixed Adenocarcinoma 8 8602 -NCIT:C39843 Urachal Adenocarcinoma 8 8603 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 8 8604 -NCIT:C6163 Bladder Signet Ring Cell Adenocarcinoma 8 8605 -NCIT:C8894 Stage 0 Bladder Adenocarcinoma AJCC v6 and v7 8 8606 -NCIT:C8895 Stage I Bladder Adenocarcinoma AJCC v6 and v7 8 8607 -NCIT:C8896 Stage II Bladder Adenocarcinoma AJCC v6 and v7 8 8608 -NCIT:C8897 Stage III Bladder Adenocarcinoma AJCC v6 and v7 8 8609 -NCIT:C8898 Stage IV Bladder Adenocarcinoma AJCC v7 8 8610 -NCIT:C6179 Bladder Clear Cell Adenocarcinoma 7 8611 -NCIT:C39847 Bladder Tubulo-Cystic Clear Cell Adenocarcinoma 8 8612 -NCIT:C39848 Bladder Papillary Clear Cell Adenocarcinoma 8 8613 -NCIT:C39849 Bladder Diffuse Clear Cell Adenocarcinoma 8 8614 -NCIT:C7899 Recurrent Bladder Carcinoma 7 8615 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 8616 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 8617 -NCIT:C190774 Recurrent Non-Muscle Invasive Bladder Carcinoma 8 8618 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 8619 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 8620 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 8 8621 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 8 8622 -NCIT:C90344 Bladder Cancer by AJCC v6 Stage 7 8623 -NCIT:C7895 Stage 0 Bladder Cancer AJCC v6 and v7 8 8624 -NCIT:C148286 Refractory Stage 0 Bladder Cancer AJCC v6 and v7 9 8625 -NCIT:C6188 Stage 0 Bladder Urothelial Carcinoma AJCC v6 and v7 9 8626 -NCIT:C3644 Stage 0is Bladder Urothelial Carcinoma AJCC v6 and v7 10 8627 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 10 8628 -NCIT:C8894 Stage 0 Bladder Adenocarcinoma AJCC v6 and v7 9 8629 -NCIT:C8903 Stage 0 Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 8630 -NCIT:C7896 Stage I Bladder Cancer AJCC v6 and v7 8 8631 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 8632 -NCIT:C8895 Stage I Bladder Adenocarcinoma AJCC v6 and v7 9 8633 -NCIT:C8899 Stage I Bladder Cancer with Carcinoma In Situ 9 8634 -NCIT:C8901 Stage I Bladder Cancer without Carcinoma In Situ 9 8635 -NCIT:C8904 Stage I Squamous Cell Carcinoma of the Bladder AJCC v6 and v7 9 8636 -NCIT:C7897 Stage II Bladder Cancer AJCC v6 and v7 8 8637 -NCIT:C4994 Stage II Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 8638 -NCIT:C8896 Stage II Bladder Adenocarcinoma AJCC v6 and v7 9 8639 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 8640 -NCIT:C7898 Stage III Bladder Cancer AJCC v6 and v7 8 8641 -NCIT:C8897 Stage III Bladder Adenocarcinoma AJCC v6 and v7 9 8642 -NCIT:C8905 Stage III Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 8643 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 8644 -NCIT:C7900 Stage IV Bladder Cancer AJCC v6 8 8645 -NCIT:C91202 Bladder Cancer by AJCC v7 Stage 7 8646 -NCIT:C7895 Stage 0 Bladder Cancer AJCC v6 and v7 8 8647 -NCIT:C148286 Refractory Stage 0 Bladder Cancer AJCC v6 and v7 9 8648 -NCIT:C6188 Stage 0 Bladder Urothelial Carcinoma AJCC v6 and v7 9 8649 -NCIT:C3644 Stage 0is Bladder Urothelial Carcinoma AJCC v6 and v7 10 8650 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 10 8651 -NCIT:C8894 Stage 0 Bladder Adenocarcinoma AJCC v6 and v7 9 8652 -NCIT:C8903 Stage 0 Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 8653 -NCIT:C7896 Stage I Bladder Cancer AJCC v6 and v7 8 8654 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 8655 -NCIT:C8895 Stage I Bladder Adenocarcinoma AJCC v6 and v7 9 8656 -NCIT:C8899 Stage I Bladder Cancer with Carcinoma In Situ 9 8657 -NCIT:C8901 Stage I Bladder Cancer without Carcinoma In Situ 9 8658 -NCIT:C8904 Stage I Squamous Cell Carcinoma of the Bladder AJCC v6 and v7 9 8659 -NCIT:C7897 Stage II Bladder Cancer AJCC v6 and v7 8 8660 -NCIT:C4994 Stage II Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 8661 -NCIT:C8896 Stage II Bladder Adenocarcinoma AJCC v6 and v7 9 8662 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 8663 -NCIT:C7898 Stage III Bladder Cancer AJCC v6 and v7 8 8664 -NCIT:C8897 Stage III Bladder Adenocarcinoma AJCC v6 and v7 9 8665 -NCIT:C8905 Stage III Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 8666 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 8667 -NCIT:C89366 Stage IV Bladder Cancer AJCC v7 8 8668 -NCIT:C8898 Stage IV Bladder Adenocarcinoma AJCC v7 9 8669 -NCIT:C8906 Stage IV Bladder Squamous Cell Carcinoma AJCC v7 9 8670 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 9 8671 -NCIT:C7515 Renal Pelvis and Ureter Carcinoma 6 8672 -NCIT:C7716 Renal Pelvis and Ureter Urothelial Carcinoma 7 8673 -NCIT:C140355 Renal Pelvis and Ureter Cancer by AJCC v8 Stage 8 8674 -NCIT:C140356 Renal Pelvis Cancer by AJCC v8 Stage 9 8675 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 8676 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 10 8677 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 10 8678 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 10 8679 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 10 8680 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 10 8681 -NCIT:C140357 Ureter Cancer by AJCC v8 Stage 9 8682 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 10 8683 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 10 8684 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 10 8685 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 10 8686 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 10 8687 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 10 8688 -NCIT:C140358 Stage 0a Renal Pelvis and Ureter Cancer AJCC v8 9 8689 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 8690 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 10 8691 -NCIT:C140361 Stage 0is Renal Pelvis and Ureter Cancer AJCC v8 9 8692 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 10 8693 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 10 8694 -NCIT:C140364 Stage I Renal Pelvis and Ureter Cancer AJCC v8 9 8695 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 10 8696 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 10 8697 -NCIT:C140367 Stage II Renal Pelvis and Ureter Cancer AJCC v8 9 8698 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 10 8699 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 10 8700 -NCIT:C140370 Stage III Renal Pelvis and Ureter Cancer AJCC v8 9 8701 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 10 8702 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 10 8703 -NCIT:C140373 Stage IV Renal Pelvis and Ureter Cancer AJCC v8 9 8704 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 10 8705 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 10 8706 -NCIT:C140376 Renal Pelvis and Ureter Cancer by AJCC v7 Stage 8 8707 -NCIT:C140377 Renal Pelvis Cancer by AJCC v7 Stage 9 8708 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 10 8709 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 10 8710 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 10 8711 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 10 8712 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 10 8713 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 8714 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 8715 -NCIT:C140378 Ureter Cancer by AJCC v7 Stage 9 8716 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 10 8717 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 11 8718 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 11 8719 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 10 8720 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 10 8721 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 10 8722 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 10 8723 -NCIT:C39850 Stage 0 Renal Pelvis and Ureter Cancer AJCC v7 9 8724 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 10 8725 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 11 8726 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 11 8727 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 10 8728 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 8729 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 8730 -NCIT:C7517 Stage 0a Renal Pelvis and Ureter Cancer AJCC v7 10 8731 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 8732 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 11 8733 -NCIT:C7518 Stage 0is Renal Pelvis and Ureter Cancer AJCC v7 10 8734 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 11 8735 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 8736 -NCIT:C7519 Stage I Renal Pelvis and Ureter Cancer AJCC v7 9 8737 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 10 8738 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 10 8739 -NCIT:C7520 Stage II Renal Pelvis and Ureter Cancer AJCC v7 9 8740 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 10 8741 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 10 8742 -NCIT:C7521 Stage III Renal Pelvis and Ureter Cancer AJCC v7 9 8743 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 10 8744 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 10 8745 -NCIT:C7522 Stage IV Renal Pelvis and Ureter Cancer AJCC v7 9 8746 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 10 8747 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 10 8748 -NCIT:C164160 Unresectable Renal Pelvis and Ureter Urothelial Carcinoma 8 8749 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 9 8750 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 9 8751 -NCIT:C39879 Invasive Renal Pelvis and Ureter Urothelial Carcinoma 8 8752 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 9 8753 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 9 8754 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 9 8755 -NCIT:C4830 Ureter Urothelial Carcinoma 8 8756 -NCIT:C140357 Ureter Cancer by AJCC v8 Stage 9 8757 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 10 8758 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 10 8759 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 10 8760 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 10 8761 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 10 8762 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 10 8763 -NCIT:C140378 Ureter Cancer by AJCC v7 Stage 9 8764 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 10 8765 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 11 8766 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 11 8767 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 10 8768 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 10 8769 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 10 8770 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 10 8771 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 9 8772 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 8773 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 8774 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 9 8775 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 9 8776 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 9 8777 -NCIT:C180608 Ureter Urothelial Carcinoma, High Grade 9 8778 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 9 8779 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 9 8780 -NCIT:C7355 Renal Pelvis Urothelial Carcinoma 8 8781 -NCIT:C140356 Renal Pelvis Cancer by AJCC v8 Stage 9 8782 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 8783 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 10 8784 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 10 8785 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 10 8786 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 10 8787 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 10 8788 -NCIT:C140377 Renal Pelvis Cancer by AJCC v7 Stage 9 8789 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 10 8790 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 10 8791 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 10 8792 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 10 8793 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 10 8794 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 8795 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 8796 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 8797 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 8798 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 8799 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 8800 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 9 8801 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 9 8802 -NCIT:C180607 Renal Pelvis Urothelial Carcinoma, High Grade 9 8803 -NCIT:C6148 Renal Pelvis Papillary Urothelial Carcinoma 9 8804 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 8805 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 10 8806 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 9 8807 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 8 8808 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 8809 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 8810 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 8811 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 9 8812 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 8813 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 8814 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 8815 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 8816 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 8817 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 8818 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 8819 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 8820 -NCIT:C8167 Localized Renal Pelvis and Ureter Urothelial Carcinoma 8 8821 -NCIT:C8168 Regional Renal Pelvis and Ureter Urothelial Carcinoma 8 8822 -NCIT:C8254 Recurrent Renal Pelvis and Ureter Urothelial Carcinoma 8 8823 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 9 8824 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 8825 -NCIT:C7623 Recurrent Urinary System Carcinoma 6 8826 -NCIT:C157631 Recurrent Urothelial Carcinoma 7 8827 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 8828 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 8829 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 8830 -NCIT:C8254 Recurrent Renal Pelvis and Ureter Urothelial Carcinoma 8 8831 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 9 8832 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 8833 -NCIT:C172622 Recurrent Kidney Carcinoma 7 8834 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 8 8835 -NCIT:C162726 Recurrent Kidney Medullary Carcinoma 8 8836 -NCIT:C7825 Recurrent Renal Cell Carcinoma 8 8837 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 9 8838 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 10 8839 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 9 8840 -NCIT:C7508 Recurrent Urethral Carcinoma 7 8841 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 8842 -NCIT:C7899 Recurrent Bladder Carcinoma 7 8843 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 8844 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 8845 -NCIT:C190774 Recurrent Non-Muscle Invasive Bladder Carcinoma 8 8846 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 8847 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 8848 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 8 8849 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 8 8850 -NCIT:C9255 Recurrent Ureter Carcinoma 7 8851 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 8 8852 -NCIT:C8993 Ureter Carcinoma 6 8853 -NCIT:C27818 Metastatic Ureter Carcinoma 7 8854 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 8 8855 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 8856 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 8857 -NCIT:C4830 Ureter Urothelial Carcinoma 7 8858 -NCIT:C140357 Ureter Cancer by AJCC v8 Stage 8 8859 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 9 8860 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 9 8861 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 9 8862 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 9 8863 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 9 8864 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 9 8865 -NCIT:C140378 Ureter Cancer by AJCC v7 Stage 8 8866 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 9 8867 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 10 8868 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 10 8869 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 9 8870 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 9 8871 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 9 8872 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 9 8873 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 8 8874 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 8875 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 8876 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 8 8877 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 8 8878 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 8 8879 -NCIT:C180608 Ureter Urothelial Carcinoma, High Grade 8 8880 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 8 8881 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 8 8882 -NCIT:C6154 Ureter Squamous Cell Carcinoma 7 8883 -NCIT:C6155 Ureter Adenocarcinoma 7 8884 -NCIT:C6159 Ureter Undifferentiated Carcinoma 7 8885 -NCIT:C6176 Ureter Small Cell Neuroendocrine Carcinoma 7 8886 -NCIT:C9255 Recurrent Ureter Carcinoma 7 8887 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 8 8888 -NCIT:C9356 Regional Ureter Carcinoma 7 8889 -NCIT:C9106 Urethral Carcinoma 6 8890 -NCIT:C115210 Distal Urethral Carcinoma 7 8891 -NCIT:C115334 Proximal Urethral Carcinoma 7 8892 -NCIT:C140457 Urethral Cancer by AJCC v8 Stage 7 8893 -NCIT:C140458 Stage 0a Urethral Cancer AJCC v8 8 8894 -NCIT:C140459 Stage 0is Urethral Cancer AJCC v8 8 8895 -NCIT:C140460 Stage I Urethral Cancer AJCC v8 8 8896 -NCIT:C140461 Stage II Urethral Cancer AJCC v8 8 8897 -NCIT:C140462 Stage III Urethral Cancer AJCC v8 8 8898 -NCIT:C140463 Stage IV Urethral Cancer AJCC v8 8 8899 -NCIT:C140464 Urethral Cancer by AJCC v7 Stage 7 8900 -NCIT:C6195 Stage 0 Urethral Cancer AJCC v7 8 8901 -NCIT:C4531 Stage 0is Urethral Cancer AJCC v7 9 8902 -NCIT:C6196 Stage 0a Urethral Cancer AJCC v7 9 8903 -NCIT:C6197 Stage I Urethral Cancer AJCC v7 8 8904 -NCIT:C6198 Stage II Urethral Cancer AJCC v7 8 8905 -NCIT:C6199 Stage III Urethral Cancer AJCC v7 8 8906 -NCIT:C6200 Stage IV Urethral Cancer AJCC v7 8 8907 -NCIT:C27819 Metastatic Urethral Carcinoma 7 8908 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 8909 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 8910 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 8911 -NCIT:C6165 Urethral Squamous Cell Carcinoma 7 8912 -NCIT:C39862 Human Papillomavirus-Related Urethral Squamous Cell Carcinoma 8 8913 -NCIT:C39874 Urethral Verrucous Carcinoma 8 8914 -NCIT:C6166 Urethral Urothelial Carcinoma 7 8915 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 8916 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 8917 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 8918 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 8919 -NCIT:C158585 Unresectable Urethral Urothelial Carcinoma 8 8920 -NCIT:C176996 Refractory Urethral Urothelial Carcinoma 8 8921 -NCIT:C39900 Prostatic Urethra Urothelial Carcinoma 8 8922 -NCIT:C6167 Urethral Adenocarcinoma 7 8923 -NCIT:C6172 Urethral Clear Cell Adenocarcinoma 8 8924 -NCIT:C7371 Accessory Urethral Gland Adenocarcinoma 8 8925 -NCIT:C180948 Skene Gland Adenocarcinoma of the Urethra 9 8926 -NCIT:C39864 Cowper Gland Adenocarcinoma of the Urethra 9 8927 -NCIT:C39865 Littre Gland Adenocarcinoma of the Urethra 9 8928 -NCIT:C6168 Urethral Undifferentiated Carcinoma 7 8929 -NCIT:C7508 Recurrent Urethral Carcinoma 7 8930 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 8931 -NCIT:C9384 Kidney Carcinoma 6 8932 -NCIT:C159224 Kidney Neuroendocrine Carcinoma 7 8933 -NCIT:C116317 Kidney Small Cell Neuroendocrine Carcinoma 8 8934 -NCIT:C159225 Kidney Large Cell Neuroendocrine Carcinoma 8 8935 -NCIT:C172622 Recurrent Kidney Carcinoma 7 8936 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 8 8937 -NCIT:C162726 Recurrent Kidney Medullary Carcinoma 8 8938 -NCIT:C7825 Recurrent Renal Cell Carcinoma 8 8939 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 9 8940 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 10 8941 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 9 8942 -NCIT:C172623 Refractory Kidney Carcinoma 7 8943 -NCIT:C162727 Refractory Kidney Medullary Carcinoma 8 8944 -NCIT:C165745 Refractory Renal Cell Carcinoma 8 8945 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 9 8946 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 8 8947 -NCIT:C174565 Unresectable Kidney Carcinoma 7 8948 -NCIT:C154545 Unresectable Renal Cell Carcinoma 8 8949 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 8950 -NCIT:C165449 Unresectable Clear Cell Renal Cell Carcinoma 9 8951 -NCIT:C183251 Unresectable Sarcomatoid Renal Cell Carcinoma 9 8952 -NCIT:C190505 Unresectable Papillary Renal Cell Carcinoma 9 8953 -NCIT:C190508 Unresectable Unclassified Renal Cell Carcinoma 9 8954 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 8 8955 -NCIT:C174567 Unresectable Kidney Medullary Carcinoma 8 8956 -NCIT:C189241 Kidney Carcinoma Molecular Subtypes 7 8957 -NCIT:C154494 Renal Cell Carcinoma with MiT Translocations 8 8958 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 9 8959 -NCIT:C27891 TFE3-Rearranged Renal Cell Carcinoma 9 8960 -NCIT:C37872 Renal Cell Carcinoma Associated with t(X;1)(p11.2;q21) 10 8961 -NCIT:C37874 Renal Cell Carcinoma Associated with t(X;1)(p11.2;p34) 10 8962 -NCIT:C37876 Renal Cell Carcinoma Associated with t(X;17)(p11.2;q25) 10 8963 -NCIT:C39802 Renal Cell Carcinoma Associated with inv(X)(p11;q12) 10 8964 -NCIT:C37210 TFEB-Rearranged Renal Cell Carcinoma 9 8965 -NCIT:C156464 Succinate Dehydrogenase-Deficient Renal Cell Carcinoma 8 8966 -NCIT:C164156 Fumarate Hydratase-Deficient Renal Cell Carcinoma 8 8967 -NCIT:C189247 SMARCB1-Deficient Kidney Medullary Carcinoma 8 8968 -NCIT:C189248 Childhood SMARCB1-Deficient Kidney Medullary Carcinoma 9 8969 -NCIT:C189249 ALK-Rearranged Renal Cell Carcinoma 8 8970 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 9 8971 -NCIT:C191375 ELOC-Mutated Renal Cell Carcinoma 8 8972 -NCIT:C189244 Childhood Kidney Carcinoma 7 8973 -NCIT:C189248 Childhood SMARCB1-Deficient Kidney Medullary Carcinoma 8 8974 -NCIT:C6568 Childhood Renal Cell Carcinoma 8 8975 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 9 8976 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 9 8977 -NCIT:C189255 Childhood Eosinophilic Solid and Cystic Renal Cell Carcinoma 9 8978 -NCIT:C27806 Metastatic Kidney Carcinoma 7 8979 -NCIT:C150595 Metastatic Renal Cell Carcinoma 8 8980 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 8981 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 8982 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 8983 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 8984 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 8985 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 8986 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 9 8987 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 8988 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 8989 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 9 8990 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 8991 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 8992 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 9 8993 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 8994 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 8995 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 8996 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 8997 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 8998 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 8999 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 9000 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 9001 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 9002 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 9 9003 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 9004 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 9005 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 9 9006 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 9007 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 9008 -NCIT:C157755 Metastatic Kidney Medullary Carcinoma 8 9009 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 9010 -NCIT:C163965 Metastatic Renal Pelvis Carcinoma 8 9011 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 9012 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 9013 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 9014 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 9015 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 9016 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 9017 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 9018 -NCIT:C172617 Advanced Kidney Carcinoma 8 9019 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 9020 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 9021 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 9022 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 9023 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 9024 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 9025 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 9026 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 9027 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 9028 -NCIT:C172618 Locally Advanced Kidney Carcinoma 8 9029 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 9030 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 9031 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 9032 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 9033 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 9034 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 9035 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 9036 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 9037 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 9038 -NCIT:C39807 Mucinous Tubular and Spindle Cell Carcinoma of the Kidney 7 9039 -NCIT:C6142 Renal Pelvis Carcinoma 7 9040 -NCIT:C163965 Metastatic Renal Pelvis Carcinoma 8 9041 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 9042 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 9043 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 9044 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 9045 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 9046 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 9047 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 9048 -NCIT:C6143 Renal Pelvis Adenocarcinoma 8 9049 -NCIT:C7355 Renal Pelvis Urothelial Carcinoma 8 9050 -NCIT:C140356 Renal Pelvis Cancer by AJCC v8 Stage 9 9051 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 9052 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 10 9053 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 10 9054 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 10 9055 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 10 9056 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 10 9057 -NCIT:C140377 Renal Pelvis Cancer by AJCC v7 Stage 9 9058 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 10 9059 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 10 9060 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 10 9061 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 10 9062 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 10 9063 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 9064 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 9065 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 9066 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 9067 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 9068 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 9069 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 9 9070 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 9 9071 -NCIT:C180607 Renal Pelvis Urothelial Carcinoma, High Grade 9 9072 -NCIT:C6148 Renal Pelvis Papillary Urothelial Carcinoma 9 9073 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 9074 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 10 9075 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 9 9076 -NCIT:C7732 Renal Pelvis Squamous Cell Carcinoma 8 9077 -NCIT:C6194 Collecting Duct Carcinoma 7 9078 -NCIT:C7572 Kidney Medullary Carcinoma 7 9079 -NCIT:C157755 Metastatic Kidney Medullary Carcinoma 8 9080 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 9081 -NCIT:C162726 Recurrent Kidney Medullary Carcinoma 8 9082 -NCIT:C162727 Refractory Kidney Medullary Carcinoma 8 9083 -NCIT:C174567 Unresectable Kidney Medullary Carcinoma 8 9084 -NCIT:C189247 SMARCB1-Deficient Kidney Medullary Carcinoma 8 9085 -NCIT:C189248 Childhood SMARCB1-Deficient Kidney Medullary Carcinoma 9 9086 -NCIT:C9385 Renal Cell Carcinoma 7 9087 -NCIT:C100051 Renal Cell Carcinoma Associated with Neuroblastoma 8 9088 -NCIT:C126303 Tubulocystic Renal Cell Carcinoma 8 9089 -NCIT:C140322 Renal Cell Cancer by AJCC v8 Stage 8 9090 -NCIT:C140323 Stage I Renal Cell Cancer AJCC v8 9 9091 -NCIT:C140324 Stage II Renal Cell Cancer AJCC v8 9 9092 -NCIT:C140325 Stage III Renal Cell Cancer AJCC v8 9 9093 -NCIT:C140326 Stage IV Renal Cell Cancer AJCC v8 9 9094 -NCIT:C150359 Bilateral Synchronous Sporadic Renal Cell Carcinoma 8 9095 -NCIT:C150595 Metastatic Renal Cell Carcinoma 8 9096 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 9097 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 9098 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 9099 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 9100 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 9101 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 9102 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 9 9103 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 9104 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 9105 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 9 9106 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 9107 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 9108 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 9 9109 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 9110 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 9111 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 9112 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 9113 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 9114 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 9115 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 9116 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 9117 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 9118 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 9 9119 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 9120 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 9121 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 9 9122 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 9123 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 9124 -NCIT:C154494 Renal Cell Carcinoma with MiT Translocations 8 9125 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 9 9126 -NCIT:C27891 TFE3-Rearranged Renal Cell Carcinoma 9 9127 -NCIT:C37872 Renal Cell Carcinoma Associated with t(X;1)(p11.2;q21) 10 9128 -NCIT:C37874 Renal Cell Carcinoma Associated with t(X;1)(p11.2;p34) 10 9129 -NCIT:C37876 Renal Cell Carcinoma Associated with t(X;17)(p11.2;q25) 10 9130 -NCIT:C39802 Renal Cell Carcinoma Associated with inv(X)(p11;q12) 10 9131 -NCIT:C37210 TFEB-Rearranged Renal Cell Carcinoma 9 9132 -NCIT:C154545 Unresectable Renal Cell Carcinoma 8 9133 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 9134 -NCIT:C165449 Unresectable Clear Cell Renal Cell Carcinoma 9 9135 -NCIT:C183251 Unresectable Sarcomatoid Renal Cell Carcinoma 9 9136 -NCIT:C190505 Unresectable Papillary Renal Cell Carcinoma 9 9137 -NCIT:C190508 Unresectable Unclassified Renal Cell Carcinoma 9 9138 -NCIT:C154547 Resectable Renal Cell Carcinoma 8 9139 -NCIT:C156464 Succinate Dehydrogenase-Deficient Renal Cell Carcinoma 8 9140 -NCIT:C157718 Acquired Cystic Disease-Associated Renal Cell Carcinoma 8 9141 -NCIT:C164156 Fumarate Hydratase-Deficient Renal Cell Carcinoma 8 9142 -NCIT:C165745 Refractory Renal Cell Carcinoma 8 9143 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 9 9144 -NCIT:C189249 ALK-Rearranged Renal Cell Carcinoma 8 9145 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 9 9146 -NCIT:C189254 Eosinophilic Solid and Cystic Renal Cell Carcinoma 8 9147 -NCIT:C189255 Childhood Eosinophilic Solid and Cystic Renal Cell Carcinoma 9 9148 -NCIT:C191370 Renal Cell Carcinoma, Not Otherwise Specified 8 9149 -NCIT:C191375 ELOC-Mutated Renal Cell Carcinoma 8 9150 -NCIT:C27638 Transplant-Related Renal Cell Carcinoma 8 9151 -NCIT:C27892 Unclassified Renal Cell Carcinoma 8 9152 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 9 9153 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 9154 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 9155 -NCIT:C190508 Unresectable Unclassified Renal Cell Carcinoma 9 9156 -NCIT:C27893 Sarcomatoid Renal Cell Carcinoma 8 9157 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 9 9158 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 9159 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 9160 -NCIT:C183251 Unresectable Sarcomatoid Renal Cell Carcinoma 9 9161 -NCIT:C39789 Hereditary Renal Cell Carcinoma 8 9162 -NCIT:C36260 Hereditary Clear Cell Renal Cell Carcinoma 9 9163 -NCIT:C39790 Renal Cell Carcinoma with Constitutional Chromosome 3 Translocations 9 9164 -NCIT:C51302 Hereditary Leiomyomatosis and Renal Cell Carcinoma 9 9165 -NCIT:C9222 Hereditary Papillary Renal Cell Carcinoma 9 9166 -NCIT:C4033 Clear Cell Renal Cell Carcinoma 8 9167 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 9 9168 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 10 9169 -NCIT:C157614 BAP1-Mutant Clear Cell Renal Cell Carcinoma 9 9170 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 9 9171 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 9172 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 9173 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 9 9174 -NCIT:C165449 Unresectable Clear Cell Renal Cell Carcinoma 9 9175 -NCIT:C35851 Grade 1 Clear Cell Renal Cell Carcinoma 9 9176 -NCIT:C35852 Grade 2 Clear Cell Renal Cell Carcinoma 9 9177 -NCIT:C35853 Grade 3 Clear Cell Renal Cell Carcinoma 9 9178 -NCIT:C35854 Grade 4 Clear Cell Renal Cell Carcinoma 9 9179 -NCIT:C36260 Hereditary Clear Cell Renal Cell Carcinoma 9 9180 -NCIT:C36261 Non-Hereditary Clear Cell Renal Cell Carcinoma 9 9181 -NCIT:C4146 Chromophobe Renal Cell Carcinoma 8 9182 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 9 9183 -NCIT:C155951 Chromophobe Renal Cell Carcinoma Associated with Birt-Hogg-Dube Syndrome 9 9184 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 9 9185 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 9186 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 9187 -NCIT:C27888 Classic Variant of Chromophobe Renal Cell Carcinoma 9 9188 -NCIT:C27889 Eosinophilic Variant of Chromophobe Renal Cell Carcinoma 9 9189 -NCIT:C6568 Childhood Renal Cell Carcinoma 8 9190 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 9 9191 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 9 9192 -NCIT:C189255 Childhood Eosinophilic Solid and Cystic Renal Cell Carcinoma 9 9193 -NCIT:C6975 Papillary Renal Cell Carcinoma 8 9194 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 9 9195 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 9196 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 9197 -NCIT:C190505 Unresectable Papillary Renal Cell Carcinoma 9 9198 -NCIT:C27886 Type 1 Papillary Renal Cell Carcinoma 9 9199 -NCIT:C27887 Type 2 Papillary Renal Cell Carcinoma 9 9200 -NCIT:C27890 Sporadic Papillary Renal Cell Carcinoma 9 9201 -NCIT:C9222 Hereditary Papillary Renal Cell Carcinoma 9 9202 -NCIT:C7825 Recurrent Renal Cell Carcinoma 8 9203 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 9 9204 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 10 9205 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 9 9206 -NCIT:C90343 Renal Cell Cancer by AJCC v6 Stage 8 9207 -NCIT:C4003 Stage IV Renal Cell Cancer AJCC v6 9 9208 -NCIT:C7823 Stage I Renal Cell Cancer AJCC v6 and v7 9 9209 -NCIT:C7824 Stage II Renal Cell Cancer AJCC v6 9 9210 -NCIT:C9220 Stage III Renal Cell Cancer AJCC v6 9 9211 -NCIT:C91201 Renal Cell Cancer by AJCC v7 Stage 8 9212 -NCIT:C7823 Stage I Renal Cell Cancer AJCC v6 and v7 9 9213 -NCIT:C89301 Stage II Renal Cell Cancer AJCC v7 9 9214 -NCIT:C89302 Stage III Renal Cell Cancer AJCC v7 9 9215 -NCIT:C89303 Stage IV Renal Cell Cancer AJCC v7 9 9216 -NCIT:C7507 Malignant Urethral Neoplasm 5 9217 -NCIT:C159665 Urethral Melanoma 6 9218 -NCIT:C3561 Malignant Accessory Urethral Gland Neoplasm 6 9219 -NCIT:C7371 Accessory Urethral Gland Adenocarcinoma 7 9220 -NCIT:C180948 Skene Gland Adenocarcinoma of the Urethra 8 9221 -NCIT:C39864 Cowper Gland Adenocarcinoma of the Urethra 8 9222 -NCIT:C39865 Littre Gland Adenocarcinoma of the Urethra 8 9223 -NCIT:C39866 Female Urethral Malignant Neoplasm 6 9224 -NCIT:C39867 Male Urethral Malignant Neoplasm 6 9225 -NCIT:C39864 Cowper Gland Adenocarcinoma of the Urethra 7 9226 -NCIT:C39865 Littre Gland Adenocarcinoma of the Urethra 7 9227 -NCIT:C39868 Penile Urethral Malignant Neoplasm 7 9228 -NCIT:C39869 Bulbomembranous Urethral Malignant Neoplasm 7 9229 -NCIT:C39870 Prostatic Urethral Malignant Neoplasm 7 9230 -NCIT:C39900 Prostatic Urethra Urothelial Carcinoma 8 9231 -NCIT:C7573 Metastatic Malignant Neoplasm in the Urethra 6 9232 -NCIT:C7639 Regional Malignant Urethral Neoplasm 6 9233 -NCIT:C7640 Posterior Urethral Malignant Neoplasm 6 9234 -NCIT:C7641 Anterior Urethral Malignant Neoplasm 6 9235 -NCIT:C9106 Urethral Carcinoma 6 9236 -NCIT:C115210 Distal Urethral Carcinoma 7 9237 -NCIT:C115334 Proximal Urethral Carcinoma 7 9238 -NCIT:C140457 Urethral Cancer by AJCC v8 Stage 7 9239 -NCIT:C140458 Stage 0a Urethral Cancer AJCC v8 8 9240 -NCIT:C140459 Stage 0is Urethral Cancer AJCC v8 8 9241 -NCIT:C140460 Stage I Urethral Cancer AJCC v8 8 9242 -NCIT:C140461 Stage II Urethral Cancer AJCC v8 8 9243 -NCIT:C140462 Stage III Urethral Cancer AJCC v8 8 9244 -NCIT:C140463 Stage IV Urethral Cancer AJCC v8 8 9245 -NCIT:C140464 Urethral Cancer by AJCC v7 Stage 7 9246 -NCIT:C6195 Stage 0 Urethral Cancer AJCC v7 8 9247 -NCIT:C4531 Stage 0is Urethral Cancer AJCC v7 9 9248 -NCIT:C6196 Stage 0a Urethral Cancer AJCC v7 9 9249 -NCIT:C6197 Stage I Urethral Cancer AJCC v7 8 9250 -NCIT:C6198 Stage II Urethral Cancer AJCC v7 8 9251 -NCIT:C6199 Stage III Urethral Cancer AJCC v7 8 9252 -NCIT:C6200 Stage IV Urethral Cancer AJCC v7 8 9253 -NCIT:C27819 Metastatic Urethral Carcinoma 7 9254 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 9255 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 9256 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 9257 -NCIT:C6165 Urethral Squamous Cell Carcinoma 7 9258 -NCIT:C39862 Human Papillomavirus-Related Urethral Squamous Cell Carcinoma 8 9259 -NCIT:C39874 Urethral Verrucous Carcinoma 8 9260 -NCIT:C6166 Urethral Urothelial Carcinoma 7 9261 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 9262 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 9263 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 9264 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 9265 -NCIT:C158585 Unresectable Urethral Urothelial Carcinoma 8 9266 -NCIT:C176996 Refractory Urethral Urothelial Carcinoma 8 9267 -NCIT:C39900 Prostatic Urethra Urothelial Carcinoma 8 9268 -NCIT:C6167 Urethral Adenocarcinoma 7 9269 -NCIT:C6172 Urethral Clear Cell Adenocarcinoma 8 9270 -NCIT:C7371 Accessory Urethral Gland Adenocarcinoma 8 9271 -NCIT:C180948 Skene Gland Adenocarcinoma of the Urethra 9 9272 -NCIT:C39864 Cowper Gland Adenocarcinoma of the Urethra 9 9273 -NCIT:C39865 Littre Gland Adenocarcinoma of the Urethra 9 9274 -NCIT:C6168 Urethral Undifferentiated Carcinoma 7 9275 -NCIT:C7508 Recurrent Urethral Carcinoma 7 9276 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 9277 -NCIT:C7543 Malignant Ureter Neoplasm 5 9278 -NCIT:C6175 Ureter Lymphoma 6 9279 -NCIT:C7544 Metastatic Malignant Neoplasm in the Ureter 6 9280 -NCIT:C8716 Regional Malignant Ureter Neoplasm 6 9281 -NCIT:C9356 Regional Ureter Carcinoma 7 9282 -NCIT:C8993 Ureter Carcinoma 6 9283 -NCIT:C27818 Metastatic Ureter Carcinoma 7 9284 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 8 9285 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 9286 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 9287 -NCIT:C4830 Ureter Urothelial Carcinoma 7 9288 -NCIT:C140357 Ureter Cancer by AJCC v8 Stage 8 9289 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 9 9290 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 9 9291 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 9 9292 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 9 9293 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 9 9294 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 9 9295 -NCIT:C140378 Ureter Cancer by AJCC v7 Stage 8 9296 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 9 9297 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 10 9298 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 10 9299 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 9 9300 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 9 9301 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 9 9302 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 9 9303 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 8 9304 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 9305 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 9306 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 8 9307 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 8 9308 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 8 9309 -NCIT:C180608 Ureter Urothelial Carcinoma, High Grade 8 9310 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 8 9311 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 8 9312 -NCIT:C6154 Ureter Squamous Cell Carcinoma 7 9313 -NCIT:C6155 Ureter Adenocarcinoma 7 9314 -NCIT:C6159 Ureter Undifferentiated Carcinoma 7 9315 -NCIT:C6176 Ureter Small Cell Neuroendocrine Carcinoma 7 9316 -NCIT:C9255 Recurrent Ureter Carcinoma 7 9317 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 8 9318 -NCIT:C9356 Regional Ureter Carcinoma 7 9319 -NCIT:C7548 Malignant Kidney Neoplasm 5 9320 -NCIT:C120456 Malignant Kidney Neoplasm Except Pelvis 6 9321 -NCIT:C123907 Childhood Malignant Kidney Neoplasm 6 9322 -NCIT:C189244 Childhood Kidney Carcinoma 7 9323 -NCIT:C189248 Childhood SMARCB1-Deficient Kidney Medullary Carcinoma 8 9324 -NCIT:C6568 Childhood Renal Cell Carcinoma 8 9325 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 9 9326 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 9 9327 -NCIT:C189255 Childhood Eosinophilic Solid and Cystic Renal Cell Carcinoma 9 9328 -NCIT:C189260 Childhood Anaplastic Sarcoma of the Kidney 7 9329 -NCIT:C189261 Childhood Kidney Ewing Sarcoma 7 9330 -NCIT:C27730 Childhood Kidney Wilms Tumor 7 9331 -NCIT:C6897 Cystic Partially Differentiated Kidney Nephroblastoma 8 9332 -NCIT:C4264 Clear Cell Sarcoma of the Kidney 7 9333 -NCIT:C6569 Congenital Mesoblastic Nephroma 7 9334 -NCIT:C39814 Classic Congenital Mesoblastic Nephroma 8 9335 -NCIT:C39815 Cellular Congenital Mesoblastic Nephroma 8 9336 -NCIT:C97058 Mixed Congenital Mesoblastic Nephroma 8 9337 -NCIT:C8715 Rhabdoid Tumor of the Kidney 7 9338 -NCIT:C162730 Recurrent Rhabdoid Tumor of the Kidney 8 9339 -NCIT:C162731 Refractory Rhabdoid Tumor of the Kidney 8 9340 -NCIT:C188888 Unresectable Rhabdoid Tumor of the Kidney 8 9341 -NCIT:C37265 Malignant Mixed Epithelial and Stromal Tumor of the Kidney 6 9342 -NCIT:C40407 Kidney Wilms Tumor 6 9343 -NCIT:C27730 Childhood Kidney Wilms Tumor 7 9344 -NCIT:C6897 Cystic Partially Differentiated Kidney Nephroblastoma 8 9345 -NCIT:C38158 Metachronous Kidney Wilms Tumor 7 9346 -NCIT:C6180 Adult Kidney Wilms Tumor 7 9347 -NCIT:C6951 Nonanaplastic Kidney Wilms Tumor 7 9348 -NCIT:C6952 Anaplastic Kidney Wilms Tumor 7 9349 -NCIT:C7840 Stage I Kidney Wilms Tumor 7 9350 -NCIT:C7841 Stage II Kidney Wilms Tumor 7 9351 -NCIT:C7842 Stage III Kidney Wilms Tumor 7 9352 -NCIT:C7843 Stage IV Kidney Wilms Tumor 7 9353 -NCIT:C7844 Stage V Kidney Wilms Tumor 7 9354 -NCIT:C7845 Recurrent Kidney Wilms Tumor 7 9355 -NCIT:C8496 Hereditary Kidney Wilms Tumor 7 9356 -NCIT:C9146 Epithelial Predominant Kidney Wilms Tumor 7 9357 -NCIT:C9147 Blastema Predominant Kidney Wilms Tumor 7 9358 -NCIT:C9148 Stromal Predominant Kidney Wilms Tumor 7 9359 -NCIT:C9149 Mixed Cell Type Kidney Wilms Tumor 7 9360 -NCIT:C4525 Kidney Sarcoma 6 9361 -NCIT:C154496 Anaplastic Sarcoma of the Kidney 7 9362 -NCIT:C189260 Childhood Anaplastic Sarcoma of the Kidney 8 9363 -NCIT:C157737 Kidney Synovial Sarcoma 7 9364 -NCIT:C159205 Kidney Angiosarcoma 7 9365 -NCIT:C159206 Kidney Rhabdomyosarcoma 7 9366 -NCIT:C159208 Kidney Ewing Sarcoma 7 9367 -NCIT:C189261 Childhood Kidney Ewing Sarcoma 8 9368 -NCIT:C4264 Clear Cell Sarcoma of the Kidney 7 9369 -NCIT:C6181 Kidney Extraskeletal Osteosarcoma 7 9370 -NCIT:C6183 Kidney Leiomyosarcoma 7 9371 -NCIT:C6185 Kidney Liposarcoma 7 9372 -NCIT:C7726 Kidney Fibrosarcoma 7 9373 -NCIT:C63532 Kidney Lymphoma 6 9374 -NCIT:C188075 Kidney Burkitt Lymphoma 7 9375 -NCIT:C63533 Kidney Diffuse Large B-Cell Lymphoma 7 9376 -NCIT:C67214 Peripheral Primitive Neuroectodermal Tumor of the Kidney 6 9377 -NCIT:C7525 Malignant Renal Pelvis Neoplasm 6 9378 -NCIT:C6142 Renal Pelvis Carcinoma 7 9379 -NCIT:C163965 Metastatic Renal Pelvis Carcinoma 8 9380 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 9381 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 9382 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 9383 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 9384 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 9385 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 9386 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 9387 -NCIT:C6143 Renal Pelvis Adenocarcinoma 8 9388 -NCIT:C7355 Renal Pelvis Urothelial Carcinoma 8 9389 -NCIT:C140356 Renal Pelvis Cancer by AJCC v8 Stage 9 9390 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 9391 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 10 9392 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 10 9393 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 10 9394 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 10 9395 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 10 9396 -NCIT:C140377 Renal Pelvis Cancer by AJCC v7 Stage 9 9397 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 10 9398 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 10 9399 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 10 9400 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 10 9401 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 10 9402 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 9403 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 9404 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 9405 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 9406 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 9407 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 9408 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 9 9409 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 9 9410 -NCIT:C180607 Renal Pelvis Urothelial Carcinoma, High Grade 9 9411 -NCIT:C6148 Renal Pelvis Papillary Urothelial Carcinoma 9 9412 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 9413 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 10 9414 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 9 9415 -NCIT:C7732 Renal Pelvis Squamous Cell Carcinoma 8 9416 -NCIT:C7549 Metastatic Malignant Neoplasm in the Kidney 6 9417 -NCIT:C185153 Extramedullary Disease in Plasma Cell Myeloma Involving the Kidney 7 9418 -NCIT:C9384 Kidney Carcinoma 6 9419 -NCIT:C159224 Kidney Neuroendocrine Carcinoma 7 9420 -NCIT:C116317 Kidney Small Cell Neuroendocrine Carcinoma 8 9421 -NCIT:C159225 Kidney Large Cell Neuroendocrine Carcinoma 8 9422 -NCIT:C172622 Recurrent Kidney Carcinoma 7 9423 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 8 9424 -NCIT:C162726 Recurrent Kidney Medullary Carcinoma 8 9425 -NCIT:C7825 Recurrent Renal Cell Carcinoma 8 9426 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 9 9427 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 10 9428 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 9 9429 -NCIT:C172623 Refractory Kidney Carcinoma 7 9430 -NCIT:C162727 Refractory Kidney Medullary Carcinoma 8 9431 -NCIT:C165745 Refractory Renal Cell Carcinoma 8 9432 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 9 9433 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 8 9434 -NCIT:C174565 Unresectable Kidney Carcinoma 7 9435 -NCIT:C154545 Unresectable Renal Cell Carcinoma 8 9436 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 9437 -NCIT:C165449 Unresectable Clear Cell Renal Cell Carcinoma 9 9438 -NCIT:C183251 Unresectable Sarcomatoid Renal Cell Carcinoma 9 9439 -NCIT:C190505 Unresectable Papillary Renal Cell Carcinoma 9 9440 -NCIT:C190508 Unresectable Unclassified Renal Cell Carcinoma 9 9441 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 8 9442 -NCIT:C174567 Unresectable Kidney Medullary Carcinoma 8 9443 -NCIT:C189241 Kidney Carcinoma Molecular Subtypes 7 9444 -NCIT:C154494 Renal Cell Carcinoma with MiT Translocations 8 9445 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 9 9446 -NCIT:C27891 TFE3-Rearranged Renal Cell Carcinoma 9 9447 -NCIT:C37872 Renal Cell Carcinoma Associated with t(X;1)(p11.2;q21) 10 9448 -NCIT:C37874 Renal Cell Carcinoma Associated with t(X;1)(p11.2;p34) 10 9449 -NCIT:C37876 Renal Cell Carcinoma Associated with t(X;17)(p11.2;q25) 10 9450 -NCIT:C39802 Renal Cell Carcinoma Associated with inv(X)(p11;q12) 10 9451 -NCIT:C37210 TFEB-Rearranged Renal Cell Carcinoma 9 9452 -NCIT:C156464 Succinate Dehydrogenase-Deficient Renal Cell Carcinoma 8 9453 -NCIT:C164156 Fumarate Hydratase-Deficient Renal Cell Carcinoma 8 9454 -NCIT:C189247 SMARCB1-Deficient Kidney Medullary Carcinoma 8 9455 -NCIT:C189248 Childhood SMARCB1-Deficient Kidney Medullary Carcinoma 9 9456 -NCIT:C189249 ALK-Rearranged Renal Cell Carcinoma 8 9457 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 9 9458 -NCIT:C191375 ELOC-Mutated Renal Cell Carcinoma 8 9459 -NCIT:C189244 Childhood Kidney Carcinoma 7 9460 -NCIT:C189248 Childhood SMARCB1-Deficient Kidney Medullary Carcinoma 8 9461 -NCIT:C6568 Childhood Renal Cell Carcinoma 8 9462 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 9 9463 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 9 9464 -NCIT:C189255 Childhood Eosinophilic Solid and Cystic Renal Cell Carcinoma 9 9465 -NCIT:C27806 Metastatic Kidney Carcinoma 7 9466 -NCIT:C150595 Metastatic Renal Cell Carcinoma 8 9467 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 9468 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 9469 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 9470 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 9471 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 9472 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 9473 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 9 9474 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 9475 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 9476 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 9 9477 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 9478 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 9479 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 9 9480 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 9481 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 9482 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 9483 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 9484 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 9485 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 9486 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 9487 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 9488 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 9489 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 9 9490 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 9491 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 9492 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 9 9493 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 9494 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 9495 -NCIT:C157755 Metastatic Kidney Medullary Carcinoma 8 9496 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 9497 -NCIT:C163965 Metastatic Renal Pelvis Carcinoma 8 9498 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 9499 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 9500 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 9501 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 9502 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 9503 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 9504 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 9505 -NCIT:C172617 Advanced Kidney Carcinoma 8 9506 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 9507 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 9508 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 9509 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 9510 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 9511 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 9512 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 9513 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 9514 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 9515 -NCIT:C172618 Locally Advanced Kidney Carcinoma 8 9516 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 9517 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 9518 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 9519 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 9520 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 9521 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 9522 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 9523 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 9524 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 9525 -NCIT:C39807 Mucinous Tubular and Spindle Cell Carcinoma of the Kidney 7 9526 -NCIT:C6142 Renal Pelvis Carcinoma 7 9527 -NCIT:C163965 Metastatic Renal Pelvis Carcinoma 8 9528 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 9529 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 9530 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 9531 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 9532 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 9533 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 9534 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 9535 -NCIT:C6143 Renal Pelvis Adenocarcinoma 8 9536 -NCIT:C7355 Renal Pelvis Urothelial Carcinoma 8 9537 -NCIT:C140356 Renal Pelvis Cancer by AJCC v8 Stage 9 9538 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 9539 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 10 9540 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 10 9541 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 10 9542 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 10 9543 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 10 9544 -NCIT:C140377 Renal Pelvis Cancer by AJCC v7 Stage 9 9545 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 10 9546 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 10 9547 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 10 9548 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 10 9549 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 10 9550 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 9551 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 9552 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 9553 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 9554 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 9555 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 9556 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 9 9557 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 9 9558 -NCIT:C180607 Renal Pelvis Urothelial Carcinoma, High Grade 9 9559 -NCIT:C6148 Renal Pelvis Papillary Urothelial Carcinoma 9 9560 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 9561 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 10 9562 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 9 9563 -NCIT:C7732 Renal Pelvis Squamous Cell Carcinoma 8 9564 -NCIT:C6194 Collecting Duct Carcinoma 7 9565 -NCIT:C7572 Kidney Medullary Carcinoma 7 9566 -NCIT:C157755 Metastatic Kidney Medullary Carcinoma 8 9567 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 9568 -NCIT:C162726 Recurrent Kidney Medullary Carcinoma 8 9569 -NCIT:C162727 Refractory Kidney Medullary Carcinoma 8 9570 -NCIT:C174567 Unresectable Kidney Medullary Carcinoma 8 9571 -NCIT:C189247 SMARCB1-Deficient Kidney Medullary Carcinoma 8 9572 -NCIT:C189248 Childhood SMARCB1-Deficient Kidney Medullary Carcinoma 9 9573 -NCIT:C9385 Renal Cell Carcinoma 7 9574 -NCIT:C100051 Renal Cell Carcinoma Associated with Neuroblastoma 8 9575 -NCIT:C126303 Tubulocystic Renal Cell Carcinoma 8 9576 -NCIT:C140322 Renal Cell Cancer by AJCC v8 Stage 8 9577 -NCIT:C140323 Stage I Renal Cell Cancer AJCC v8 9 9578 -NCIT:C140324 Stage II Renal Cell Cancer AJCC v8 9 9579 -NCIT:C140325 Stage III Renal Cell Cancer AJCC v8 9 9580 -NCIT:C140326 Stage IV Renal Cell Cancer AJCC v8 9 9581 -NCIT:C150359 Bilateral Synchronous Sporadic Renal Cell Carcinoma 8 9582 -NCIT:C150595 Metastatic Renal Cell Carcinoma 8 9583 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 9584 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 9585 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 9586 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 9587 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 9588 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 9589 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 9 9590 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 9591 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 9592 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 9 9593 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 9594 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 9595 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 9 9596 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 9597 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 9598 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 9599 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 9600 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 9601 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 9602 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 9603 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 9604 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 9605 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 9 9606 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 9607 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 9608 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 9 9609 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 9610 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 9611 -NCIT:C154494 Renal Cell Carcinoma with MiT Translocations 8 9612 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 9 9613 -NCIT:C27891 TFE3-Rearranged Renal Cell Carcinoma 9 9614 -NCIT:C37872 Renal Cell Carcinoma Associated with t(X;1)(p11.2;q21) 10 9615 -NCIT:C37874 Renal Cell Carcinoma Associated with t(X;1)(p11.2;p34) 10 9616 -NCIT:C37876 Renal Cell Carcinoma Associated with t(X;17)(p11.2;q25) 10 9617 -NCIT:C39802 Renal Cell Carcinoma Associated with inv(X)(p11;q12) 10 9618 -NCIT:C37210 TFEB-Rearranged Renal Cell Carcinoma 9 9619 -NCIT:C154545 Unresectable Renal Cell Carcinoma 8 9620 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 9621 -NCIT:C165449 Unresectable Clear Cell Renal Cell Carcinoma 9 9622 -NCIT:C183251 Unresectable Sarcomatoid Renal Cell Carcinoma 9 9623 -NCIT:C190505 Unresectable Papillary Renal Cell Carcinoma 9 9624 -NCIT:C190508 Unresectable Unclassified Renal Cell Carcinoma 9 9625 -NCIT:C154547 Resectable Renal Cell Carcinoma 8 9626 -NCIT:C156464 Succinate Dehydrogenase-Deficient Renal Cell Carcinoma 8 9627 -NCIT:C157718 Acquired Cystic Disease-Associated Renal Cell Carcinoma 8 9628 -NCIT:C164156 Fumarate Hydratase-Deficient Renal Cell Carcinoma 8 9629 -NCIT:C165745 Refractory Renal Cell Carcinoma 8 9630 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 9 9631 -NCIT:C189249 ALK-Rearranged Renal Cell Carcinoma 8 9632 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 9 9633 -NCIT:C189254 Eosinophilic Solid and Cystic Renal Cell Carcinoma 8 9634 -NCIT:C189255 Childhood Eosinophilic Solid and Cystic Renal Cell Carcinoma 9 9635 -NCIT:C191370 Renal Cell Carcinoma, Not Otherwise Specified 8 9636 -NCIT:C191375 ELOC-Mutated Renal Cell Carcinoma 8 9637 -NCIT:C27638 Transplant-Related Renal Cell Carcinoma 8 9638 -NCIT:C27892 Unclassified Renal Cell Carcinoma 8 9639 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 9 9640 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 9641 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 9642 -NCIT:C190508 Unresectable Unclassified Renal Cell Carcinoma 9 9643 -NCIT:C27893 Sarcomatoid Renal Cell Carcinoma 8 9644 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 9 9645 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 9646 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 9647 -NCIT:C183251 Unresectable Sarcomatoid Renal Cell Carcinoma 9 9648 -NCIT:C39789 Hereditary Renal Cell Carcinoma 8 9649 -NCIT:C36260 Hereditary Clear Cell Renal Cell Carcinoma 9 9650 -NCIT:C39790 Renal Cell Carcinoma with Constitutional Chromosome 3 Translocations 9 9651 -NCIT:C51302 Hereditary Leiomyomatosis and Renal Cell Carcinoma 9 9652 -NCIT:C9222 Hereditary Papillary Renal Cell Carcinoma 9 9653 -NCIT:C4033 Clear Cell Renal Cell Carcinoma 8 9654 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 9 9655 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 10 9656 -NCIT:C157614 BAP1-Mutant Clear Cell Renal Cell Carcinoma 9 9657 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 9 9658 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 9659 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 9660 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 9 9661 -NCIT:C165449 Unresectable Clear Cell Renal Cell Carcinoma 9 9662 -NCIT:C35851 Grade 1 Clear Cell Renal Cell Carcinoma 9 9663 -NCIT:C35852 Grade 2 Clear Cell Renal Cell Carcinoma 9 9664 -NCIT:C35853 Grade 3 Clear Cell Renal Cell Carcinoma 9 9665 -NCIT:C35854 Grade 4 Clear Cell Renal Cell Carcinoma 9 9666 -NCIT:C36260 Hereditary Clear Cell Renal Cell Carcinoma 9 9667 -NCIT:C36261 Non-Hereditary Clear Cell Renal Cell Carcinoma 9 9668 -NCIT:C4146 Chromophobe Renal Cell Carcinoma 8 9669 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 9 9670 -NCIT:C155951 Chromophobe Renal Cell Carcinoma Associated with Birt-Hogg-Dube Syndrome 9 9671 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 9 9672 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 9673 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 9674 -NCIT:C27888 Classic Variant of Chromophobe Renal Cell Carcinoma 9 9675 -NCIT:C27889 Eosinophilic Variant of Chromophobe Renal Cell Carcinoma 9 9676 -NCIT:C6568 Childhood Renal Cell Carcinoma 8 9677 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 9 9678 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 9 9679 -NCIT:C189255 Childhood Eosinophilic Solid and Cystic Renal Cell Carcinoma 9 9680 -NCIT:C6975 Papillary Renal Cell Carcinoma 8 9681 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 9 9682 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 9683 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 9684 -NCIT:C190505 Unresectable Papillary Renal Cell Carcinoma 9 9685 -NCIT:C27886 Type 1 Papillary Renal Cell Carcinoma 9 9686 -NCIT:C27887 Type 2 Papillary Renal Cell Carcinoma 9 9687 -NCIT:C27890 Sporadic Papillary Renal Cell Carcinoma 9 9688 -NCIT:C9222 Hereditary Papillary Renal Cell Carcinoma 9 9689 -NCIT:C7825 Recurrent Renal Cell Carcinoma 8 9690 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 9 9691 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 10 9692 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 9 9693 -NCIT:C90343 Renal Cell Cancer by AJCC v6 Stage 8 9694 -NCIT:C4003 Stage IV Renal Cell Cancer AJCC v6 9 9695 -NCIT:C7823 Stage I Renal Cell Cancer AJCC v6 and v7 9 9696 -NCIT:C7824 Stage II Renal Cell Cancer AJCC v6 9 9697 -NCIT:C9220 Stage III Renal Cell Cancer AJCC v6 9 9698 -NCIT:C91201 Renal Cell Cancer by AJCC v7 Stage 8 9699 -NCIT:C7823 Stage I Renal Cell Cancer AJCC v6 and v7 9 9700 -NCIT:C89301 Stage II Renal Cell Cancer AJCC v7 9 9701 -NCIT:C89302 Stage III Renal Cell Cancer AJCC v7 9 9702 -NCIT:C89303 Stage IV Renal Cell Cancer AJCC v7 9 9703 -NCIT:C9334 Malignant Bladder Neoplasm 5 9704 -NCIT:C159663 Bladder Melanoma 6 9705 -NCIT:C159677 Bladder Malignant PEComa 6 9706 -NCIT:C4669 Bladder Sarcoma 6 9707 -NCIT:C156277 Bladder Alveolar Soft Part Sarcoma 7 9708 -NCIT:C159667 Bladder Rhabdomyosarcoma 7 9709 -NCIT:C159668 Bladder Embryonal Rhabdomyosarcoma 8 9710 -NCIT:C159669 Bladder Alveolar Rhabdomyosarcoma 8 9711 -NCIT:C159670 Bladder Leiomyosarcoma 7 9712 -NCIT:C159671 Bladder Angiosarcoma 7 9713 -NCIT:C4912 Bladder Carcinoma 6 9714 -NCIT:C118816 Childhood Bladder Carcinoma 7 9715 -NCIT:C140416 Bladder Cancer by AJCC v8 Stage 7 9716 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 8 9717 -NCIT:C140418 Stage 0is Bladder Cancer AJCC v8 8 9718 -NCIT:C140419 Stage I Bladder Cancer AJCC v8 8 9719 -NCIT:C140420 Stage II Bladder Cancer AJCC v8 8 9720 -NCIT:C140421 Stage III Bladder Cancer AJCC v8 8 9721 -NCIT:C140422 Stage IIIA Bladder Cancer AJCC v8 9 9722 -NCIT:C140423 Stage IIIB Bladder Cancer AJCC v8 9 9723 -NCIT:C140424 Stage IV Bladder Cancer AJCC v8 8 9724 -NCIT:C140425 Stage IVA Bladder Cancer AJCC v8 9 9725 -NCIT:C140426 Stage IVB Bladder Cancer AJCC v8 9 9726 -NCIT:C150316 Refractory Bladder Carcinoma 7 9727 -NCIT:C148286 Refractory Stage 0 Bladder Cancer AJCC v6 and v7 8 9728 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 8 9729 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 9730 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 8 9731 -NCIT:C150570 Invasive Bladder Carcinoma 7 9732 -NCIT:C150572 Muscle Invasive Bladder Carcinoma 8 9733 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 9 9734 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 10 9735 -NCIT:C165716 Invasive Bladder Mixed Carcinoma 8 9736 -NCIT:C27474 Non-Muscle Invasive Bladder Carcinoma 8 9737 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 9 9738 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 9739 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 10 9740 -NCIT:C190772 Metastatic Non-Muscle Invasive Bladder Carcinoma 9 9741 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 10 9742 -NCIT:C190774 Recurrent Non-Muscle Invasive Bladder Carcinoma 9 9743 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 9744 -NCIT:C27885 Invasive Bladder Urothelial Carcinoma 8 9745 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 9 9746 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 9747 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 10 9748 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 9 9749 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 10 9750 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 9 9751 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 9 9752 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 9 9753 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 9 9754 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 9755 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 9756 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 9 9757 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 9 9758 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 9 9759 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 9 9760 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 10 9761 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 9 9762 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 9 9763 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 9 9764 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 10 9765 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 9 9766 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 10 9767 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 10 9768 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 10 9769 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 9770 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 10 9771 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 9 9772 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 10 9773 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 9 9774 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 10 9775 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 9776 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 9777 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 9778 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 9 9779 -NCIT:C156062 Metastatic Bladder Carcinoma 7 9780 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 9781 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 9782 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 9783 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 9784 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 9785 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 9786 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 9787 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 9788 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 9789 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 9790 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 9791 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 8 9792 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 8 9793 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 8 9794 -NCIT:C167071 Locally Advanced Bladder Carcinoma 8 9795 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 9796 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 9 9797 -NCIT:C167338 Advanced Bladder Carcinoma 8 9798 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 9799 -NCIT:C190772 Metastatic Non-Muscle Invasive Bladder Carcinoma 8 9800 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 9 9801 -NCIT:C157759 Bladder Neuroendocrine Carcinoma 7 9802 -NCIT:C157760 Bladder Large Cell Neuroendocrine Carcinoma 8 9803 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 9 9804 -NCIT:C9461 Bladder Small Cell Neuroendocrine Carcinoma 8 9805 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 9 9806 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 9 9807 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 9 9808 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 9 9809 -NCIT:C159542 Bladder Endometrioid Adenocarcinoma 7 9810 -NCIT:C160158 Carcinoma Arising in Bladder Diverticulum 7 9811 -NCIT:C167075 Unresectable Bladder Carcinoma 7 9812 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 8 9813 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 8 9814 -NCIT:C39842 Urachal Carcinoma 7 9815 -NCIT:C39843 Urachal Adenocarcinoma 8 9816 -NCIT:C39844 Urachal Urothelial Carcinoma 8 9817 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 9818 -NCIT:C39845 Urachal Squamous Cell Carcinoma 8 9819 -NCIT:C39851 Bladder Urothelial Carcinoma 7 9820 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 9821 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 9822 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 9823 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 9824 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 9825 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 9826 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 9827 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 9828 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 9829 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 9830 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 9831 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 9832 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 9833 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 8 9834 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 8 9835 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 9836 -NCIT:C177531 Bladder Flat Urothelial Carcinoma 8 9837 -NCIT:C37266 Bladder Urothelial Carcinoma In Situ 9 9838 -NCIT:C140418 Stage 0is Bladder Cancer AJCC v8 10 9839 -NCIT:C3644 Stage 0is Bladder Urothelial Carcinoma AJCC v6 and v7 10 9840 -NCIT:C180609 Bladder Urothelial Carcinoma, High Grade 8 9841 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 9 9842 -NCIT:C188032 Resectable Bladder Urothelial Carcinoma 8 9843 -NCIT:C27634 Transplant-Related Bladder Urothelial Carcinoma 8 9844 -NCIT:C27885 Invasive Bladder Urothelial Carcinoma 8 9845 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 9 9846 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 9847 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 10 9848 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 9 9849 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 10 9850 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 9 9851 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 9 9852 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 9 9853 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 9 9854 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 9855 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 9856 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 9 9857 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 9 9858 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 9 9859 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 9 9860 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 10 9861 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 9 9862 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 9 9863 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 9 9864 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 10 9865 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 9 9866 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 10 9867 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 10 9868 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 10 9869 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 9870 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 10 9871 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 9 9872 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 10 9873 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 9 9874 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 10 9875 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 9876 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 9877 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 9878 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 9 9879 -NCIT:C39844 Urachal Urothelial Carcinoma 8 9880 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 9881 -NCIT:C7383 Bladder Papillary Urothelial Carcinoma 8 9882 -NCIT:C158382 Bladder Non-Invasive Papillary Urothelial Carcinoma 9 9883 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 10 9884 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 10 9885 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 10 9886 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 10 9887 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 9888 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 9889 -NCIT:C4031 Bladder Squamous Cell Carcinoma 7 9890 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 8 9891 -NCIT:C27768 Schistosoma Hematobium-Related Bladder Squamous Cell Carcinoma 8 9892 -NCIT:C39833 Schistosoma Hematobium-Related Bladder Verrucous Carcinoma 9 9893 -NCIT:C39832 Bladder Verrucous Carcinoma 8 9894 -NCIT:C39833 Schistosoma Hematobium-Related Bladder Verrucous Carcinoma 9 9895 -NCIT:C39845 Urachal Squamous Cell Carcinoma 8 9896 -NCIT:C4994 Stage II Bladder Squamous Cell Carcinoma AJCC v6 and v7 8 9897 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 8 9898 -NCIT:C8903 Stage 0 Bladder Squamous Cell Carcinoma AJCC v6 and v7 8 9899 -NCIT:C8904 Stage I Squamous Cell Carcinoma of the Bladder AJCC v6 and v7 8 9900 -NCIT:C8905 Stage III Bladder Squamous Cell Carcinoma AJCC v6 and v7 8 9901 -NCIT:C8906 Stage IV Bladder Squamous Cell Carcinoma AJCC v7 8 9902 -NCIT:C4032 Bladder Adenocarcinoma 7 9903 -NCIT:C39835 Bladder Enteric Type Adenocarcinoma 8 9904 -NCIT:C39836 Bladder Adenocarcinoma, Not Otherwise Specified 8 9905 -NCIT:C39837 Bladder Mucinous Adenocarcinoma 8 9906 -NCIT:C39838 Bladder Hepatoid Adenocarcinoma 8 9907 -NCIT:C39839 Bladder Mixed Adenocarcinoma 8 9908 -NCIT:C39843 Urachal Adenocarcinoma 8 9909 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 8 9910 -NCIT:C6163 Bladder Signet Ring Cell Adenocarcinoma 8 9911 -NCIT:C8894 Stage 0 Bladder Adenocarcinoma AJCC v6 and v7 8 9912 -NCIT:C8895 Stage I Bladder Adenocarcinoma AJCC v6 and v7 8 9913 -NCIT:C8896 Stage II Bladder Adenocarcinoma AJCC v6 and v7 8 9914 -NCIT:C8897 Stage III Bladder Adenocarcinoma AJCC v6 and v7 8 9915 -NCIT:C8898 Stage IV Bladder Adenocarcinoma AJCC v7 8 9916 -NCIT:C6179 Bladder Clear Cell Adenocarcinoma 7 9917 -NCIT:C39847 Bladder Tubulo-Cystic Clear Cell Adenocarcinoma 8 9918 -NCIT:C39848 Bladder Papillary Clear Cell Adenocarcinoma 8 9919 -NCIT:C39849 Bladder Diffuse Clear Cell Adenocarcinoma 8 9920 -NCIT:C7899 Recurrent Bladder Carcinoma 7 9921 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 9922 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 9923 -NCIT:C190774 Recurrent Non-Muscle Invasive Bladder Carcinoma 8 9924 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 9925 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 9926 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 8 9927 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 8 9928 -NCIT:C90344 Bladder Cancer by AJCC v6 Stage 7 9929 -NCIT:C7895 Stage 0 Bladder Cancer AJCC v6 and v7 8 9930 -NCIT:C148286 Refractory Stage 0 Bladder Cancer AJCC v6 and v7 9 9931 -NCIT:C6188 Stage 0 Bladder Urothelial Carcinoma AJCC v6 and v7 9 9932 -NCIT:C3644 Stage 0is Bladder Urothelial Carcinoma AJCC v6 and v7 10 9933 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 10 9934 -NCIT:C8894 Stage 0 Bladder Adenocarcinoma AJCC v6 and v7 9 9935 -NCIT:C8903 Stage 0 Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 9936 -NCIT:C7896 Stage I Bladder Cancer AJCC v6 and v7 8 9937 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 9938 -NCIT:C8895 Stage I Bladder Adenocarcinoma AJCC v6 and v7 9 9939 -NCIT:C8899 Stage I Bladder Cancer with Carcinoma In Situ 9 9940 -NCIT:C8901 Stage I Bladder Cancer without Carcinoma In Situ 9 9941 -NCIT:C8904 Stage I Squamous Cell Carcinoma of the Bladder AJCC v6 and v7 9 9942 -NCIT:C7897 Stage II Bladder Cancer AJCC v6 and v7 8 9943 -NCIT:C4994 Stage II Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 9944 -NCIT:C8896 Stage II Bladder Adenocarcinoma AJCC v6 and v7 9 9945 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 9946 -NCIT:C7898 Stage III Bladder Cancer AJCC v6 and v7 8 9947 -NCIT:C8897 Stage III Bladder Adenocarcinoma AJCC v6 and v7 9 9948 -NCIT:C8905 Stage III Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 9949 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 9950 -NCIT:C7900 Stage IV Bladder Cancer AJCC v6 8 9951 -NCIT:C91202 Bladder Cancer by AJCC v7 Stage 7 9952 -NCIT:C7895 Stage 0 Bladder Cancer AJCC v6 and v7 8 9953 -NCIT:C148286 Refractory Stage 0 Bladder Cancer AJCC v6 and v7 9 9954 -NCIT:C6188 Stage 0 Bladder Urothelial Carcinoma AJCC v6 and v7 9 9955 -NCIT:C3644 Stage 0is Bladder Urothelial Carcinoma AJCC v6 and v7 10 9956 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 10 9957 -NCIT:C8894 Stage 0 Bladder Adenocarcinoma AJCC v6 and v7 9 9958 -NCIT:C8903 Stage 0 Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 9959 -NCIT:C7896 Stage I Bladder Cancer AJCC v6 and v7 8 9960 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 9961 -NCIT:C8895 Stage I Bladder Adenocarcinoma AJCC v6 and v7 9 9962 -NCIT:C8899 Stage I Bladder Cancer with Carcinoma In Situ 9 9963 -NCIT:C8901 Stage I Bladder Cancer without Carcinoma In Situ 9 9964 -NCIT:C8904 Stage I Squamous Cell Carcinoma of the Bladder AJCC v6 and v7 9 9965 -NCIT:C7897 Stage II Bladder Cancer AJCC v6 and v7 8 9966 -NCIT:C4994 Stage II Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 9967 -NCIT:C8896 Stage II Bladder Adenocarcinoma AJCC v6 and v7 9 9968 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 9969 -NCIT:C7898 Stage III Bladder Cancer AJCC v6 and v7 8 9970 -NCIT:C8897 Stage III Bladder Adenocarcinoma AJCC v6 and v7 9 9971 -NCIT:C8905 Stage III Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 9972 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 9973 -NCIT:C89366 Stage IV Bladder Cancer AJCC v7 8 9974 -NCIT:C8898 Stage IV Bladder Adenocarcinoma AJCC v7 9 9975 -NCIT:C8906 Stage IV Bladder Squamous Cell Carcinoma AJCC v7 9 9976 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 9 9977 -NCIT:C6164 Bladder Lymphoma 6 9978 -NCIT:C39878 Bladder Mucosa-Associated Lymphoid Tissue Lymphoma 7 9979 -NCIT:C6416 Metastatic Bladder Paraganglioma 6 9980 -NCIT:C7650 Metastatic Malignant Neoplasm in the Bladder 6 9981 -NCIT:C9266 Recurrent Malignant Bladder Neoplasm 6 9982 -NCIT:C7899 Recurrent Bladder Carcinoma 7 9983 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 9984 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 9985 -NCIT:C190774 Recurrent Non-Muscle Invasive Bladder Carcinoma 8 9986 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 9987 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 9988 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 8 9989 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 8 9990 -NCIT:C189258 Childhood Genitourinary System Neoplasm 3 9991 -NCIT:C114801 Childhood Gonadal Germ Cell Tumor 4 9992 -NCIT:C6552 Childhood Testicular Germ Cell Tumor 5 9993 -NCIT:C123843 Childhood Testicular Non-Seminomatous Germ Cell Tumor 6 9994 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 7 9995 -NCIT:C6540 Childhood Testicular Teratoma 7 9996 -NCIT:C123835 Childhood Testicular Immature Teratoma 8 9997 -NCIT:C123837 Childhood Testicular Mature Teratoma 8 9998 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 7 9999 -NCIT:C6544 Childhood Testicular Choriocarcinoma 7 10000 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 7 10001 -NCIT:C68628 Childhood Malignant Testicular Germ Cell Tumor 6 10002 -NCIT:C6542 Childhood Testicular Mixed Germ Cell Tumor 7 10003 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 8 10004 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 7 10005 -NCIT:C6544 Childhood Testicular Choriocarcinoma 7 10006 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 7 10007 -NCIT:C8588 Childhood Ovarian Germ Cell Tumor 5 10008 -NCIT:C123842 Childhood Ovarian Nongerminomatous Germ Cell Tumor 6 10009 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 7 10010 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 7 10011 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 7 10012 -NCIT:C6554 Childhood Ovarian Teratoma 7 10013 -NCIT:C6547 Childhood Ovarian Immature Teratoma 8 10014 -NCIT:C6548 Childhood Ovarian Mature Teratoma 8 10015 -NCIT:C68629 Childhood Malignant Ovarian Germ Cell Tumor 6 10016 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 7 10017 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 7 10018 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 7 10019 -NCIT:C6550 Childhood Ovarian Dysgerminoma 7 10020 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 7 10021 -NCIT:C189269 Childhood Malignant Genitourinary System Neoplasm 4 10022 -NCIT:C118816 Childhood Bladder Carcinoma 5 10023 -NCIT:C118821 Childhood Malignant Penile Neoplasm 5 10024 -NCIT:C123907 Childhood Malignant Kidney Neoplasm 5 10025 -NCIT:C189244 Childhood Kidney Carcinoma 6 10026 -NCIT:C189248 Childhood SMARCB1-Deficient Kidney Medullary Carcinoma 7 10027 -NCIT:C6568 Childhood Renal Cell Carcinoma 7 10028 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 8 10029 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 8 10030 -NCIT:C189255 Childhood Eosinophilic Solid and Cystic Renal Cell Carcinoma 8 10031 -NCIT:C189260 Childhood Anaplastic Sarcoma of the Kidney 6 10032 -NCIT:C189261 Childhood Kidney Ewing Sarcoma 6 10033 -NCIT:C27730 Childhood Kidney Wilms Tumor 6 10034 -NCIT:C6897 Cystic Partially Differentiated Kidney Nephroblastoma 7 10035 -NCIT:C4264 Clear Cell Sarcoma of the Kidney 6 10036 -NCIT:C6569 Congenital Mesoblastic Nephroma 6 10037 -NCIT:C39814 Classic Congenital Mesoblastic Nephroma 7 10038 -NCIT:C39815 Cellular Congenital Mesoblastic Nephroma 7 10039 -NCIT:C97058 Mixed Congenital Mesoblastic Nephroma 7 10040 -NCIT:C8715 Rhabdoid Tumor of the Kidney 6 10041 -NCIT:C162730 Recurrent Rhabdoid Tumor of the Kidney 7 10042 -NCIT:C162731 Refractory Rhabdoid Tumor of the Kidney 7 10043 -NCIT:C188888 Unresectable Rhabdoid Tumor of the Kidney 7 10044 -NCIT:C161608 Extrarenal Rhabdoid Tumor of the Prostate 5 10045 -NCIT:C190659 Childhood Malignant Ovarian Neoplasm 5 10046 -NCIT:C171169 Extrarenal Rhabdoid Tumor of the Ovary 6 10047 -NCIT:C171170 Recurrent Extrarenal Rhabdoid Tumor of the Ovary 7 10048 -NCIT:C171171 Refractory Extrarenal Rhabdoid Tumor of the Ovary 7 10049 -NCIT:C189334 Childhood Ovarian Small Cell Carcinoma, Hypercalcemic Type 6 10050 -NCIT:C68629 Childhood Malignant Ovarian Germ Cell Tumor 6 10051 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 7 10052 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 7 10053 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 7 10054 -NCIT:C6550 Childhood Ovarian Dysgerminoma 7 10055 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 7 10056 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 5 10057 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 5 10058 -NCIT:C68628 Childhood Malignant Testicular Germ Cell Tumor 5 10059 -NCIT:C6542 Childhood Testicular Mixed Germ Cell Tumor 6 10060 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 7 10061 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 6 10062 -NCIT:C6544 Childhood Testicular Choriocarcinoma 6 10063 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 6 10064 -NCIT:C189286 Childhood Ovarian Neoplasm 4 10065 -NCIT:C189292 Childhood Ovarian Sertoli-Leydig Cell Tumor 5 10066 -NCIT:C189333 Childhood Ovarian Gynandroblastoma 5 10067 -NCIT:C190658 Childhood Benign Ovarian Neoplasm 5 10068 -NCIT:C189288 Childhood Ovarian Fibroma 6 10069 -NCIT:C189289 Childhood Ovarian Sclerosing Stromal Tumor 6 10070 -NCIT:C6548 Childhood Ovarian Mature Teratoma 6 10071 -NCIT:C190659 Childhood Malignant Ovarian Neoplasm 5 10072 -NCIT:C171169 Extrarenal Rhabdoid Tumor of the Ovary 6 10073 -NCIT:C171170 Recurrent Extrarenal Rhabdoid Tumor of the Ovary 7 10074 -NCIT:C171171 Refractory Extrarenal Rhabdoid Tumor of the Ovary 7 10075 -NCIT:C189334 Childhood Ovarian Small Cell Carcinoma, Hypercalcemic Type 6 10076 -NCIT:C68629 Childhood Malignant Ovarian Germ Cell Tumor 6 10077 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 7 10078 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 7 10079 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 7 10080 -NCIT:C6550 Childhood Ovarian Dysgerminoma 7 10081 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 7 10082 -NCIT:C7289 Juvenile Ovarian Granulosa Cell Tumor 5 10083 -NCIT:C40434 Juvenile Bilateral Ovarian Granulosa Cell Tumor 6 10084 -NCIT:C8588 Childhood Ovarian Germ Cell Tumor 5 10085 -NCIT:C123842 Childhood Ovarian Nongerminomatous Germ Cell Tumor 6 10086 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 7 10087 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 7 10088 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 7 10089 -NCIT:C6554 Childhood Ovarian Teratoma 7 10090 -NCIT:C6547 Childhood Ovarian Immature Teratoma 8 10091 -NCIT:C6548 Childhood Ovarian Mature Teratoma 8 10092 -NCIT:C68629 Childhood Malignant Ovarian Germ Cell Tumor 6 10093 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 7 10094 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 7 10095 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 7 10096 -NCIT:C6550 Childhood Ovarian Dysgerminoma 7 10097 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 7 10098 -NCIT:C190602 Childhood Benign Genitourinary System Neoplasm 4 10099 -NCIT:C123837 Childhood Testicular Mature Teratoma 5 10100 -NCIT:C189337 Childhood Mullerian Papilloma 5 10101 -NCIT:C190608 Childhood Benign Kidney Neoplasm 5 10102 -NCIT:C157745 Childhood Cystic Nephroma 6 10103 -NCIT:C66774 Ossifying Renal Tumor of Infancy 6 10104 -NCIT:C190658 Childhood Benign Ovarian Neoplasm 5 10105 -NCIT:C189288 Childhood Ovarian Fibroma 6 10106 -NCIT:C189289 Childhood Ovarian Sclerosing Stromal Tumor 6 10107 -NCIT:C6548 Childhood Ovarian Mature Teratoma 6 10108 -NCIT:C40330 Vulvar Congenital Melanocytic Nevus 5 10109 -NCIT:C4207 Juvenile Granulosa Cell Tumor 4 10110 -NCIT:C39947 Juvenile Testicular Granulosa Cell Tumor 5 10111 -NCIT:C7289 Juvenile Ovarian Granulosa Cell Tumor 5 10112 -NCIT:C40434 Juvenile Bilateral Ovarian Granulosa Cell Tumor 6 10113 -NCIT:C5053 Childhood Testicular Neoplasm 4 10114 -NCIT:C39947 Juvenile Testicular Granulosa Cell Tumor 5 10115 -NCIT:C6552 Childhood Testicular Germ Cell Tumor 5 10116 -NCIT:C123843 Childhood Testicular Non-Seminomatous Germ Cell Tumor 6 10117 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 7 10118 -NCIT:C6540 Childhood Testicular Teratoma 7 10119 -NCIT:C123835 Childhood Testicular Immature Teratoma 8 10120 -NCIT:C123837 Childhood Testicular Mature Teratoma 8 10121 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 7 10122 -NCIT:C6544 Childhood Testicular Choriocarcinoma 7 10123 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 7 10124 -NCIT:C68628 Childhood Malignant Testicular Germ Cell Tumor 6 10125 -NCIT:C6542 Childhood Testicular Mixed Germ Cell Tumor 7 10126 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 8 10127 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 7 10128 -NCIT:C6544 Childhood Testicular Choriocarcinoma 7 10129 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 7 10130 -NCIT:C6563 Childhood Kidney Neoplasm 4 10131 -NCIT:C115445 Recurrent Childhood Kidney Neoplasm 5 10132 -NCIT:C162730 Recurrent Rhabdoid Tumor of the Kidney 6 10133 -NCIT:C123907 Childhood Malignant Kidney Neoplasm 5 10134 -NCIT:C189244 Childhood Kidney Carcinoma 6 10135 -NCIT:C189248 Childhood SMARCB1-Deficient Kidney Medullary Carcinoma 7 10136 -NCIT:C6568 Childhood Renal Cell Carcinoma 7 10137 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 8 10138 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 8 10139 -NCIT:C189255 Childhood Eosinophilic Solid and Cystic Renal Cell Carcinoma 8 10140 -NCIT:C189260 Childhood Anaplastic Sarcoma of the Kidney 6 10141 -NCIT:C189261 Childhood Kidney Ewing Sarcoma 6 10142 -NCIT:C27730 Childhood Kidney Wilms Tumor 6 10143 -NCIT:C6897 Cystic Partially Differentiated Kidney Nephroblastoma 7 10144 -NCIT:C4264 Clear Cell Sarcoma of the Kidney 6 10145 -NCIT:C6569 Congenital Mesoblastic Nephroma 6 10146 -NCIT:C39814 Classic Congenital Mesoblastic Nephroma 7 10147 -NCIT:C39815 Cellular Congenital Mesoblastic Nephroma 7 10148 -NCIT:C97058 Mixed Congenital Mesoblastic Nephroma 7 10149 -NCIT:C8715 Rhabdoid Tumor of the Kidney 6 10150 -NCIT:C162730 Recurrent Rhabdoid Tumor of the Kidney 7 10151 -NCIT:C162731 Refractory Rhabdoid Tumor of the Kidney 7 10152 -NCIT:C188888 Unresectable Rhabdoid Tumor of the Kidney 7 10153 -NCIT:C190608 Childhood Benign Kidney Neoplasm 5 10154 -NCIT:C157745 Childhood Cystic Nephroma 6 10155 -NCIT:C66774 Ossifying Renal Tumor of Infancy 6 10156 -NCIT:C6565 Childhood Kidney Angiomyolipoma 5 10157 -NCIT:C6566 Childhood Multilocular Cystic Renal Neoplasm 5 10158 -NCIT:C157745 Childhood Cystic Nephroma 6 10159 -NCIT:C6897 Cystic Partially Differentiated Kidney Nephroblastoma 6 10160 -NCIT:C3431 Urinary System Neoplasm 3 10161 -NCIT:C2901 Bladder Neoplasm 4 10162 -NCIT:C157758 Bladder Neuroendocrine Neoplasm 5 10163 -NCIT:C157759 Bladder Neuroendocrine Carcinoma 6 10164 -NCIT:C157760 Bladder Large Cell Neuroendocrine Carcinoma 7 10165 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 8 10166 -NCIT:C9461 Bladder Small Cell Neuroendocrine Carcinoma 7 10167 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 8 10168 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 8 10169 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 10170 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 8 10171 -NCIT:C159582 Bladder Neuroendocrine Tumor 6 10172 -NCIT:C6414 Bladder Paraganglioma 6 10173 -NCIT:C6416 Metastatic Bladder Paraganglioma 7 10174 -NCIT:C158374 Bladder Non-Invasive Urothelial Neoplasm 5 10175 -NCIT:C27880 Bladder Urothelial Proliferation of Uncertain Malignant Potential 6 10176 -NCIT:C27882 Bladder Urothelial Dysplasia 6 10177 -NCIT:C37266 Bladder Urothelial Carcinoma In Situ 6 10178 -NCIT:C140418 Stage 0is Bladder Cancer AJCC v8 7 10179 -NCIT:C3644 Stage 0is Bladder Urothelial Carcinoma AJCC v6 and v7 7 10180 -NCIT:C39831 Bladder Non-Invasive Papillary Urothelial Neoplasm 6 10181 -NCIT:C158382 Bladder Non-Invasive Papillary Urothelial Carcinoma 7 10182 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 8 10183 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 8 10184 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 8 10185 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 8 10186 -NCIT:C27884 Bladder Papillary Urothelial Neoplasm of Low Malignant Potential 7 10187 -NCIT:C39858 Bladder Urothelial Papilloma 7 10188 -NCIT:C39859 Bladder Inverted Papilloma 8 10189 -NCIT:C158636 Bladder Soft Tissue Neoplasm 5 10190 -NCIT:C159673 Bladder PEComa 6 10191 -NCIT:C159674 Bladder Benign PEComa 7 10192 -NCIT:C159677 Bladder Malignant PEComa 7 10193 -NCIT:C159679 Bladder Solitary Fibrous Tumor 6 10194 -NCIT:C4669 Bladder Sarcoma 6 10195 -NCIT:C156277 Bladder Alveolar Soft Part Sarcoma 7 10196 -NCIT:C159667 Bladder Rhabdomyosarcoma 7 10197 -NCIT:C159668 Bladder Embryonal Rhabdomyosarcoma 8 10198 -NCIT:C159669 Bladder Alveolar Rhabdomyosarcoma 8 10199 -NCIT:C159670 Bladder Leiomyosarcoma 7 10200 -NCIT:C159671 Bladder Angiosarcoma 7 10201 -NCIT:C6177 Bladder Inflammatory Myofibroblastic Tumor 6 10202 -NCIT:C6178 Bladder Leiomyoma 6 10203 -NCIT:C159681 Bladder Granular Cell Tumor 5 10204 -NCIT:C3618 Benign Bladder Neoplasm 5 10205 -NCIT:C159674 Bladder Benign PEComa 6 10206 -NCIT:C159680 Bladder Hemangioma 6 10207 -NCIT:C159682 Bladder Neurofibroma 6 10208 -NCIT:C39834 Bladder Squamous Papilloma 6 10209 -NCIT:C39858 Bladder Urothelial Papilloma 6 10210 -NCIT:C39859 Bladder Inverted Papilloma 7 10211 -NCIT:C6178 Bladder Leiomyoma 6 10212 -NCIT:C7414 Bladder Villous Adenoma 6 10213 -NCIT:C39857 Bladder Papillary Urothelial Neoplasm 5 10214 -NCIT:C39831 Bladder Non-Invasive Papillary Urothelial Neoplasm 6 10215 -NCIT:C158382 Bladder Non-Invasive Papillary Urothelial Carcinoma 7 10216 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 8 10217 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 8 10218 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 8 10219 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 8 10220 -NCIT:C27884 Bladder Papillary Urothelial Neoplasm of Low Malignant Potential 7 10221 -NCIT:C39858 Bladder Urothelial Papilloma 7 10222 -NCIT:C39859 Bladder Inverted Papilloma 8 10223 -NCIT:C7383 Bladder Papillary Urothelial Carcinoma 6 10224 -NCIT:C158382 Bladder Non-Invasive Papillary Urothelial Carcinoma 7 10225 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 8 10226 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 8 10227 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 8 10228 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 8 10229 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 7 10230 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 10231 -NCIT:C9334 Malignant Bladder Neoplasm 5 10232 -NCIT:C159663 Bladder Melanoma 6 10233 -NCIT:C159677 Bladder Malignant PEComa 6 10234 -NCIT:C4669 Bladder Sarcoma 6 10235 -NCIT:C156277 Bladder Alveolar Soft Part Sarcoma 7 10236 -NCIT:C159667 Bladder Rhabdomyosarcoma 7 10237 -NCIT:C159668 Bladder Embryonal Rhabdomyosarcoma 8 10238 -NCIT:C159669 Bladder Alveolar Rhabdomyosarcoma 8 10239 -NCIT:C159670 Bladder Leiomyosarcoma 7 10240 -NCIT:C159671 Bladder Angiosarcoma 7 10241 -NCIT:C4912 Bladder Carcinoma 6 10242 -NCIT:C118816 Childhood Bladder Carcinoma 7 10243 -NCIT:C140416 Bladder Cancer by AJCC v8 Stage 7 10244 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 8 10245 -NCIT:C140418 Stage 0is Bladder Cancer AJCC v8 8 10246 -NCIT:C140419 Stage I Bladder Cancer AJCC v8 8 10247 -NCIT:C140420 Stage II Bladder Cancer AJCC v8 8 10248 -NCIT:C140421 Stage III Bladder Cancer AJCC v8 8 10249 -NCIT:C140422 Stage IIIA Bladder Cancer AJCC v8 9 10250 -NCIT:C140423 Stage IIIB Bladder Cancer AJCC v8 9 10251 -NCIT:C140424 Stage IV Bladder Cancer AJCC v8 8 10252 -NCIT:C140425 Stage IVA Bladder Cancer AJCC v8 9 10253 -NCIT:C140426 Stage IVB Bladder Cancer AJCC v8 9 10254 -NCIT:C150316 Refractory Bladder Carcinoma 7 10255 -NCIT:C148286 Refractory Stage 0 Bladder Cancer AJCC v6 and v7 8 10256 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 8 10257 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 10258 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 8 10259 -NCIT:C150570 Invasive Bladder Carcinoma 7 10260 -NCIT:C150572 Muscle Invasive Bladder Carcinoma 8 10261 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 9 10262 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 10 10263 -NCIT:C165716 Invasive Bladder Mixed Carcinoma 8 10264 -NCIT:C27474 Non-Muscle Invasive Bladder Carcinoma 8 10265 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 9 10266 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 10267 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 10 10268 -NCIT:C190772 Metastatic Non-Muscle Invasive Bladder Carcinoma 9 10269 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 10 10270 -NCIT:C190774 Recurrent Non-Muscle Invasive Bladder Carcinoma 9 10271 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 10272 -NCIT:C27885 Invasive Bladder Urothelial Carcinoma 8 10273 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 9 10274 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 10275 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 10 10276 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 9 10277 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 10 10278 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 9 10279 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 9 10280 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 9 10281 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 9 10282 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 10283 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 10284 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 9 10285 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 9 10286 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 9 10287 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 9 10288 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 10 10289 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 9 10290 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 9 10291 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 9 10292 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 10 10293 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 9 10294 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 10 10295 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 10 10296 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 10 10297 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 10298 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 10 10299 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 9 10300 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 10 10301 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 9 10302 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 10 10303 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 10304 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 10305 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 10306 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 9 10307 -NCIT:C156062 Metastatic Bladder Carcinoma 7 10308 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 10309 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 10310 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 10311 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 10312 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 10313 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 10314 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 10315 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 10316 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 10317 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 10318 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 10319 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 8 10320 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 8 10321 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 8 10322 -NCIT:C167071 Locally Advanced Bladder Carcinoma 8 10323 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 10324 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 9 10325 -NCIT:C167338 Advanced Bladder Carcinoma 8 10326 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 10327 -NCIT:C190772 Metastatic Non-Muscle Invasive Bladder Carcinoma 8 10328 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 9 10329 -NCIT:C157759 Bladder Neuroendocrine Carcinoma 7 10330 -NCIT:C157760 Bladder Large Cell Neuroendocrine Carcinoma 8 10331 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 9 10332 -NCIT:C9461 Bladder Small Cell Neuroendocrine Carcinoma 8 10333 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 9 10334 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 9 10335 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 9 10336 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 9 10337 -NCIT:C159542 Bladder Endometrioid Adenocarcinoma 7 10338 -NCIT:C160158 Carcinoma Arising in Bladder Diverticulum 7 10339 -NCIT:C167075 Unresectable Bladder Carcinoma 7 10340 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 8 10341 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 8 10342 -NCIT:C39842 Urachal Carcinoma 7 10343 -NCIT:C39843 Urachal Adenocarcinoma 8 10344 -NCIT:C39844 Urachal Urothelial Carcinoma 8 10345 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 10346 -NCIT:C39845 Urachal Squamous Cell Carcinoma 8 10347 -NCIT:C39851 Bladder Urothelial Carcinoma 7 10348 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 10349 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 10350 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 10351 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 10352 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 10353 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 10354 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 10355 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 10356 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 10357 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 10358 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 10359 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 10360 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 10361 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 8 10362 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 8 10363 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 10364 -NCIT:C177531 Bladder Flat Urothelial Carcinoma 8 10365 -NCIT:C37266 Bladder Urothelial Carcinoma In Situ 9 10366 -NCIT:C140418 Stage 0is Bladder Cancer AJCC v8 10 10367 -NCIT:C3644 Stage 0is Bladder Urothelial Carcinoma AJCC v6 and v7 10 10368 -NCIT:C180609 Bladder Urothelial Carcinoma, High Grade 8 10369 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 9 10370 -NCIT:C188032 Resectable Bladder Urothelial Carcinoma 8 10371 -NCIT:C27634 Transplant-Related Bladder Urothelial Carcinoma 8 10372 -NCIT:C27885 Invasive Bladder Urothelial Carcinoma 8 10373 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 9 10374 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 10375 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 10 10376 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 9 10377 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 10 10378 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 9 10379 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 9 10380 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 9 10381 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 9 10382 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 10383 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 10384 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 9 10385 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 9 10386 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 9 10387 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 9 10388 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 10 10389 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 9 10390 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 9 10391 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 9 10392 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 10 10393 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 9 10394 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 10 10395 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 10 10396 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 10 10397 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 10398 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 10 10399 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 9 10400 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 10 10401 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 9 10402 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 10 10403 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 10404 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 10405 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 10406 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 9 10407 -NCIT:C39844 Urachal Urothelial Carcinoma 8 10408 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 10409 -NCIT:C7383 Bladder Papillary Urothelial Carcinoma 8 10410 -NCIT:C158382 Bladder Non-Invasive Papillary Urothelial Carcinoma 9 10411 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 10 10412 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 10 10413 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 10 10414 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 10 10415 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 10416 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 10417 -NCIT:C4031 Bladder Squamous Cell Carcinoma 7 10418 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 8 10419 -NCIT:C27768 Schistosoma Hematobium-Related Bladder Squamous Cell Carcinoma 8 10420 -NCIT:C39833 Schistosoma Hematobium-Related Bladder Verrucous Carcinoma 9 10421 -NCIT:C39832 Bladder Verrucous Carcinoma 8 10422 -NCIT:C39833 Schistosoma Hematobium-Related Bladder Verrucous Carcinoma 9 10423 -NCIT:C39845 Urachal Squamous Cell Carcinoma 8 10424 -NCIT:C4994 Stage II Bladder Squamous Cell Carcinoma AJCC v6 and v7 8 10425 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 8 10426 -NCIT:C8903 Stage 0 Bladder Squamous Cell Carcinoma AJCC v6 and v7 8 10427 -NCIT:C8904 Stage I Squamous Cell Carcinoma of the Bladder AJCC v6 and v7 8 10428 -NCIT:C8905 Stage III Bladder Squamous Cell Carcinoma AJCC v6 and v7 8 10429 -NCIT:C8906 Stage IV Bladder Squamous Cell Carcinoma AJCC v7 8 10430 -NCIT:C4032 Bladder Adenocarcinoma 7 10431 -NCIT:C39835 Bladder Enteric Type Adenocarcinoma 8 10432 -NCIT:C39836 Bladder Adenocarcinoma, Not Otherwise Specified 8 10433 -NCIT:C39837 Bladder Mucinous Adenocarcinoma 8 10434 -NCIT:C39838 Bladder Hepatoid Adenocarcinoma 8 10435 -NCIT:C39839 Bladder Mixed Adenocarcinoma 8 10436 -NCIT:C39843 Urachal Adenocarcinoma 8 10437 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 8 10438 -NCIT:C6163 Bladder Signet Ring Cell Adenocarcinoma 8 10439 -NCIT:C8894 Stage 0 Bladder Adenocarcinoma AJCC v6 and v7 8 10440 -NCIT:C8895 Stage I Bladder Adenocarcinoma AJCC v6 and v7 8 10441 -NCIT:C8896 Stage II Bladder Adenocarcinoma AJCC v6 and v7 8 10442 -NCIT:C8897 Stage III Bladder Adenocarcinoma AJCC v6 and v7 8 10443 -NCIT:C8898 Stage IV Bladder Adenocarcinoma AJCC v7 8 10444 -NCIT:C6179 Bladder Clear Cell Adenocarcinoma 7 10445 -NCIT:C39847 Bladder Tubulo-Cystic Clear Cell Adenocarcinoma 8 10446 -NCIT:C39848 Bladder Papillary Clear Cell Adenocarcinoma 8 10447 -NCIT:C39849 Bladder Diffuse Clear Cell Adenocarcinoma 8 10448 -NCIT:C7899 Recurrent Bladder Carcinoma 7 10449 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 10450 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 10451 -NCIT:C190774 Recurrent Non-Muscle Invasive Bladder Carcinoma 8 10452 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 10453 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 10454 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 8 10455 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 8 10456 -NCIT:C90344 Bladder Cancer by AJCC v6 Stage 7 10457 -NCIT:C7895 Stage 0 Bladder Cancer AJCC v6 and v7 8 10458 -NCIT:C148286 Refractory Stage 0 Bladder Cancer AJCC v6 and v7 9 10459 -NCIT:C6188 Stage 0 Bladder Urothelial Carcinoma AJCC v6 and v7 9 10460 -NCIT:C3644 Stage 0is Bladder Urothelial Carcinoma AJCC v6 and v7 10 10461 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 10 10462 -NCIT:C8894 Stage 0 Bladder Adenocarcinoma AJCC v6 and v7 9 10463 -NCIT:C8903 Stage 0 Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 10464 -NCIT:C7896 Stage I Bladder Cancer AJCC v6 and v7 8 10465 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 10466 -NCIT:C8895 Stage I Bladder Adenocarcinoma AJCC v6 and v7 9 10467 -NCIT:C8899 Stage I Bladder Cancer with Carcinoma In Situ 9 10468 -NCIT:C8901 Stage I Bladder Cancer without Carcinoma In Situ 9 10469 -NCIT:C8904 Stage I Squamous Cell Carcinoma of the Bladder AJCC v6 and v7 9 10470 -NCIT:C7897 Stage II Bladder Cancer AJCC v6 and v7 8 10471 -NCIT:C4994 Stage II Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 10472 -NCIT:C8896 Stage II Bladder Adenocarcinoma AJCC v6 and v7 9 10473 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 10474 -NCIT:C7898 Stage III Bladder Cancer AJCC v6 and v7 8 10475 -NCIT:C8897 Stage III Bladder Adenocarcinoma AJCC v6 and v7 9 10476 -NCIT:C8905 Stage III Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 10477 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 10478 -NCIT:C7900 Stage IV Bladder Cancer AJCC v6 8 10479 -NCIT:C91202 Bladder Cancer by AJCC v7 Stage 7 10480 -NCIT:C7895 Stage 0 Bladder Cancer AJCC v6 and v7 8 10481 -NCIT:C148286 Refractory Stage 0 Bladder Cancer AJCC v6 and v7 9 10482 -NCIT:C6188 Stage 0 Bladder Urothelial Carcinoma AJCC v6 and v7 9 10483 -NCIT:C3644 Stage 0is Bladder Urothelial Carcinoma AJCC v6 and v7 10 10484 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 10 10485 -NCIT:C8894 Stage 0 Bladder Adenocarcinoma AJCC v6 and v7 9 10486 -NCIT:C8903 Stage 0 Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 10487 -NCIT:C7896 Stage I Bladder Cancer AJCC v6 and v7 8 10488 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 10489 -NCIT:C8895 Stage I Bladder Adenocarcinoma AJCC v6 and v7 9 10490 -NCIT:C8899 Stage I Bladder Cancer with Carcinoma In Situ 9 10491 -NCIT:C8901 Stage I Bladder Cancer without Carcinoma In Situ 9 10492 -NCIT:C8904 Stage I Squamous Cell Carcinoma of the Bladder AJCC v6 and v7 9 10493 -NCIT:C7897 Stage II Bladder Cancer AJCC v6 and v7 8 10494 -NCIT:C4994 Stage II Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 10495 -NCIT:C8896 Stage II Bladder Adenocarcinoma AJCC v6 and v7 9 10496 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 10497 -NCIT:C7898 Stage III Bladder Cancer AJCC v6 and v7 8 10498 -NCIT:C8897 Stage III Bladder Adenocarcinoma AJCC v6 and v7 9 10499 -NCIT:C8905 Stage III Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 10500 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 10501 -NCIT:C89366 Stage IV Bladder Cancer AJCC v7 8 10502 -NCIT:C8898 Stage IV Bladder Adenocarcinoma AJCC v7 9 10503 -NCIT:C8906 Stage IV Bladder Squamous Cell Carcinoma AJCC v7 9 10504 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 9 10505 -NCIT:C6164 Bladder Lymphoma 6 10506 -NCIT:C39878 Bladder Mucosa-Associated Lymphoid Tissue Lymphoma 7 10507 -NCIT:C6416 Metastatic Bladder Paraganglioma 6 10508 -NCIT:C7650 Metastatic Malignant Neoplasm in the Bladder 6 10509 -NCIT:C9266 Recurrent Malignant Bladder Neoplasm 6 10510 -NCIT:C7899 Recurrent Bladder Carcinoma 7 10511 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 10512 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 10513 -NCIT:C190774 Recurrent Non-Muscle Invasive Bladder Carcinoma 8 10514 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 10515 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 10516 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 8 10517 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 8 10518 -NCIT:C3428 Urethra Neoplasm 4 10519 -NCIT:C3619 Benign Urethral Neoplasm 5 10520 -NCIT:C39872 Urethral Villous Adenoma 6 10521 -NCIT:C4532 Benign Accessory Urethral Gland Neoplasm 6 10522 -NCIT:C5061 Urethral Urothelial Papilloma 6 10523 -NCIT:C6173 Urethral Inverted Papilloma 7 10524 -NCIT:C6169 Urethral Condyloma Acuminatum 6 10525 -NCIT:C6171 Urethral Leiomyoma 6 10526 -NCIT:C4378 Accessory Urethral Gland Neoplasm 5 10527 -NCIT:C3561 Malignant Accessory Urethral Gland Neoplasm 6 10528 -NCIT:C7371 Accessory Urethral Gland Adenocarcinoma 7 10529 -NCIT:C180948 Skene Gland Adenocarcinoma of the Urethra 8 10530 -NCIT:C39864 Cowper Gland Adenocarcinoma of the Urethra 8 10531 -NCIT:C39865 Littre Gland Adenocarcinoma of the Urethra 8 10532 -NCIT:C4532 Benign Accessory Urethral Gland Neoplasm 6 10533 -NCIT:C7507 Malignant Urethral Neoplasm 5 10534 -NCIT:C159665 Urethral Melanoma 6 10535 -NCIT:C3561 Malignant Accessory Urethral Gland Neoplasm 6 10536 -NCIT:C7371 Accessory Urethral Gland Adenocarcinoma 7 10537 -NCIT:C180948 Skene Gland Adenocarcinoma of the Urethra 8 10538 -NCIT:C39864 Cowper Gland Adenocarcinoma of the Urethra 8 10539 -NCIT:C39865 Littre Gland Adenocarcinoma of the Urethra 8 10540 -NCIT:C39866 Female Urethral Malignant Neoplasm 6 10541 -NCIT:C39867 Male Urethral Malignant Neoplasm 6 10542 -NCIT:C39864 Cowper Gland Adenocarcinoma of the Urethra 7 10543 -NCIT:C39865 Littre Gland Adenocarcinoma of the Urethra 7 10544 -NCIT:C39868 Penile Urethral Malignant Neoplasm 7 10545 -NCIT:C39869 Bulbomembranous Urethral Malignant Neoplasm 7 10546 -NCIT:C39870 Prostatic Urethral Malignant Neoplasm 7 10547 -NCIT:C39900 Prostatic Urethra Urothelial Carcinoma 8 10548 -NCIT:C7573 Metastatic Malignant Neoplasm in the Urethra 6 10549 -NCIT:C7639 Regional Malignant Urethral Neoplasm 6 10550 -NCIT:C7640 Posterior Urethral Malignant Neoplasm 6 10551 -NCIT:C7641 Anterior Urethral Malignant Neoplasm 6 10552 -NCIT:C9106 Urethral Carcinoma 6 10553 -NCIT:C115210 Distal Urethral Carcinoma 7 10554 -NCIT:C115334 Proximal Urethral Carcinoma 7 10555 -NCIT:C140457 Urethral Cancer by AJCC v8 Stage 7 10556 -NCIT:C140458 Stage 0a Urethral Cancer AJCC v8 8 10557 -NCIT:C140459 Stage 0is Urethral Cancer AJCC v8 8 10558 -NCIT:C140460 Stage I Urethral Cancer AJCC v8 8 10559 -NCIT:C140461 Stage II Urethral Cancer AJCC v8 8 10560 -NCIT:C140462 Stage III Urethral Cancer AJCC v8 8 10561 -NCIT:C140463 Stage IV Urethral Cancer AJCC v8 8 10562 -NCIT:C140464 Urethral Cancer by AJCC v7 Stage 7 10563 -NCIT:C6195 Stage 0 Urethral Cancer AJCC v7 8 10564 -NCIT:C4531 Stage 0is Urethral Cancer AJCC v7 9 10565 -NCIT:C6196 Stage 0a Urethral Cancer AJCC v7 9 10566 -NCIT:C6197 Stage I Urethral Cancer AJCC v7 8 10567 -NCIT:C6198 Stage II Urethral Cancer AJCC v7 8 10568 -NCIT:C6199 Stage III Urethral Cancer AJCC v7 8 10569 -NCIT:C6200 Stage IV Urethral Cancer AJCC v7 8 10570 -NCIT:C27819 Metastatic Urethral Carcinoma 7 10571 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 10572 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 10573 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 10574 -NCIT:C6165 Urethral Squamous Cell Carcinoma 7 10575 -NCIT:C39862 Human Papillomavirus-Related Urethral Squamous Cell Carcinoma 8 10576 -NCIT:C39874 Urethral Verrucous Carcinoma 8 10577 -NCIT:C6166 Urethral Urothelial Carcinoma 7 10578 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 10579 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 10580 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 10581 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 10582 -NCIT:C158585 Unresectable Urethral Urothelial Carcinoma 8 10583 -NCIT:C176996 Refractory Urethral Urothelial Carcinoma 8 10584 -NCIT:C39900 Prostatic Urethra Urothelial Carcinoma 8 10585 -NCIT:C6167 Urethral Adenocarcinoma 7 10586 -NCIT:C6172 Urethral Clear Cell Adenocarcinoma 8 10587 -NCIT:C7371 Accessory Urethral Gland Adenocarcinoma 8 10588 -NCIT:C180948 Skene Gland Adenocarcinoma of the Urethra 9 10589 -NCIT:C39864 Cowper Gland Adenocarcinoma of the Urethra 9 10590 -NCIT:C39865 Littre Gland Adenocarcinoma of the Urethra 9 10591 -NCIT:C6168 Urethral Undifferentiated Carcinoma 7 10592 -NCIT:C7508 Recurrent Urethral Carcinoma 7 10593 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 10594 -NCIT:C39852 Urothelial Neoplasm 4 10595 -NCIT:C27883 Papillary Urothelial Neoplasm 5 10596 -NCIT:C140358 Stage 0a Renal Pelvis and Ureter Cancer AJCC v8 6 10597 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 7 10598 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 7 10599 -NCIT:C191672 Papillary Urothelial Neoplasm of Low Malignant Potential 6 10600 -NCIT:C27884 Bladder Papillary Urothelial Neoplasm of Low Malignant Potential 7 10601 -NCIT:C191673 Non-Invasive Papillary Urothelial Carcinoma, Low Grade 6 10602 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 7 10603 -NCIT:C191675 Non-Invasive Papillary Urothelial Carcinoma, High Grade 6 10604 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 7 10605 -NCIT:C191686 Invasive Micropapillary Urothelial Carcinoma 6 10606 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 7 10607 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 10608 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 7 10609 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 10610 -NCIT:C3842 Urothelial Papilloma 6 10611 -NCIT:C39858 Bladder Urothelial Papilloma 7 10612 -NCIT:C39859 Bladder Inverted Papilloma 8 10613 -NCIT:C4528 Renal Pelvis Urothelial Papilloma 7 10614 -NCIT:C6187 Renal Pelvis Inverted Papilloma 8 10615 -NCIT:C5061 Urethral Urothelial Papilloma 7 10616 -NCIT:C6173 Urethral Inverted Papilloma 8 10617 -NCIT:C6160 Ureter Urothelial Papilloma 7 10618 -NCIT:C6174 Ureter Inverted Papilloma 8 10619 -NCIT:C6192 Inverted Urothelial Papilloma 7 10620 -NCIT:C39859 Bladder Inverted Papilloma 8 10621 -NCIT:C6173 Urethral Inverted Papilloma 8 10622 -NCIT:C6174 Ureter Inverted Papilloma 8 10623 -NCIT:C6187 Renal Pelvis Inverted Papilloma 8 10624 -NCIT:C39857 Bladder Papillary Urothelial Neoplasm 6 10625 -NCIT:C39831 Bladder Non-Invasive Papillary Urothelial Neoplasm 7 10626 -NCIT:C158382 Bladder Non-Invasive Papillary Urothelial Carcinoma 8 10627 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 9 10628 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 9 10629 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 9 10630 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 9 10631 -NCIT:C27884 Bladder Papillary Urothelial Neoplasm of Low Malignant Potential 8 10632 -NCIT:C39858 Bladder Urothelial Papilloma 8 10633 -NCIT:C39859 Bladder Inverted Papilloma 9 10634 -NCIT:C7383 Bladder Papillary Urothelial Carcinoma 7 10635 -NCIT:C158382 Bladder Non-Invasive Papillary Urothelial Carcinoma 8 10636 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 9 10637 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 9 10638 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 9 10639 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 9 10640 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 8 10641 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 10642 -NCIT:C7517 Stage 0a Renal Pelvis and Ureter Cancer AJCC v7 6 10643 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 7 10644 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 7 10645 -NCIT:C8603 Renal Pelvis Papillary Urothelial Neoplasm 6 10646 -NCIT:C4528 Renal Pelvis Urothelial Papilloma 7 10647 -NCIT:C6187 Renal Pelvis Inverted Papilloma 8 10648 -NCIT:C6148 Renal Pelvis Papillary Urothelial Carcinoma 7 10649 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 8 10650 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 8 10651 -NCIT:C39854 Non-Invasive Urothelial Neoplasm 5 10652 -NCIT:C140358 Stage 0a Renal Pelvis and Ureter Cancer AJCC v8 6 10653 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 7 10654 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 7 10655 -NCIT:C140361 Stage 0is Renal Pelvis and Ureter Cancer AJCC v8 6 10656 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 7 10657 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 7 10658 -NCIT:C158374 Bladder Non-Invasive Urothelial Neoplasm 6 10659 -NCIT:C27880 Bladder Urothelial Proliferation of Uncertain Malignant Potential 7 10660 -NCIT:C27882 Bladder Urothelial Dysplasia 7 10661 -NCIT:C37266 Bladder Urothelial Carcinoma In Situ 7 10662 -NCIT:C140418 Stage 0is Bladder Cancer AJCC v8 8 10663 -NCIT:C3644 Stage 0is Bladder Urothelial Carcinoma AJCC v6 and v7 8 10664 -NCIT:C39831 Bladder Non-Invasive Papillary Urothelial Neoplasm 7 10665 -NCIT:C158382 Bladder Non-Invasive Papillary Urothelial Carcinoma 8 10666 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 9 10667 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 9 10668 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 9 10669 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 9 10670 -NCIT:C27884 Bladder Papillary Urothelial Neoplasm of Low Malignant Potential 8 10671 -NCIT:C39858 Bladder Urothelial Papilloma 8 10672 -NCIT:C39859 Bladder Inverted Papilloma 9 10673 -NCIT:C191672 Papillary Urothelial Neoplasm of Low Malignant Potential 6 10674 -NCIT:C27884 Bladder Papillary Urothelial Neoplasm of Low Malignant Potential 7 10675 -NCIT:C191673 Non-Invasive Papillary Urothelial Carcinoma, Low Grade 6 10676 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 7 10677 -NCIT:C191675 Non-Invasive Papillary Urothelial Carcinoma, High Grade 6 10678 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 7 10679 -NCIT:C3842 Urothelial Papilloma 6 10680 -NCIT:C39858 Bladder Urothelial Papilloma 7 10681 -NCIT:C39859 Bladder Inverted Papilloma 8 10682 -NCIT:C4528 Renal Pelvis Urothelial Papilloma 7 10683 -NCIT:C6187 Renal Pelvis Inverted Papilloma 8 10684 -NCIT:C5061 Urethral Urothelial Papilloma 7 10685 -NCIT:C6173 Urethral Inverted Papilloma 8 10686 -NCIT:C6160 Ureter Urothelial Papilloma 7 10687 -NCIT:C6174 Ureter Inverted Papilloma 8 10688 -NCIT:C6192 Inverted Urothelial Papilloma 7 10689 -NCIT:C39859 Bladder Inverted Papilloma 8 10690 -NCIT:C6173 Urethral Inverted Papilloma 8 10691 -NCIT:C6174 Ureter Inverted Papilloma 8 10692 -NCIT:C6187 Renal Pelvis Inverted Papilloma 8 10693 -NCIT:C39850 Stage 0 Renal Pelvis and Ureter Cancer AJCC v7 6 10694 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 7 10695 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 8 10696 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 8 10697 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 7 10698 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 8 10699 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 8 10700 -NCIT:C7517 Stage 0a Renal Pelvis and Ureter Cancer AJCC v7 7 10701 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 8 10702 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 8 10703 -NCIT:C7518 Stage 0is Renal Pelvis and Ureter Cancer AJCC v7 7 10704 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 8 10705 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 8 10706 -NCIT:C4030 Urothelial Carcinoma 5 10707 -NCIT:C126109 Metastatic Urothelial Carcinoma 6 10708 -NCIT:C148493 Advanced Urothelial Carcinoma 7 10709 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 10710 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 10711 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 10712 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 10713 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 10714 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 7 10715 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 10716 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 10717 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 7 10718 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 10719 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 10720 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 10721 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 10722 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 10723 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 10724 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 10725 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 10726 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 10727 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 8 10728 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 7 10729 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 10730 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 10731 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 10732 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 10733 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 10734 -NCIT:C191692 Metastatic Clear Cell (Glycogen-Rich) Urothelial Carcinoma 7 10735 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 10736 -NCIT:C191693 Metastatic Giant Cell Urothelial Carcinoma 7 10737 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 10738 -NCIT:C191694 Metastatic Lipid-Rich Urothelial Carcinoma 7 10739 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 10740 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 7 10741 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 10742 -NCIT:C191696 Metastatic Nested Urothelial Carcinoma 7 10743 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 10744 -NCIT:C191697 Metastatic Plasmacytoid Urothelial Carcinoma 7 10745 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 10746 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 7 10747 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 10748 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 7 10749 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 8 10750 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 10751 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 10752 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 8 10753 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 10754 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 10755 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 10756 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 10757 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 10758 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 10759 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 10760 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 10761 -NCIT:C150364 Refractory Urothelial Carcinoma 6 10762 -NCIT:C150365 Platinum-Resistant Urothelial Carcinoma 7 10763 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 7 10764 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 8 10765 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 7 10766 -NCIT:C176996 Refractory Urethral Urothelial Carcinoma 7 10767 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 7 10768 -NCIT:C150521 Unresectable Urothelial Carcinoma 6 10769 -NCIT:C158585 Unresectable Urethral Urothelial Carcinoma 7 10770 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 7 10771 -NCIT:C164160 Unresectable Renal Pelvis and Ureter Urothelial Carcinoma 7 10772 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 8 10773 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 8 10774 -NCIT:C157631 Recurrent Urothelial Carcinoma 6 10775 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 7 10776 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 8 10777 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 7 10778 -NCIT:C8254 Recurrent Renal Pelvis and Ureter Urothelial Carcinoma 7 10779 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 8 10780 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 8 10781 -NCIT:C180606 Urothelial Carcinoma, High Grade 6 10782 -NCIT:C180607 Renal Pelvis Urothelial Carcinoma, High Grade 7 10783 -NCIT:C180608 Ureter Urothelial Carcinoma, High Grade 7 10784 -NCIT:C180609 Bladder Urothelial Carcinoma, High Grade 7 10785 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 8 10786 -NCIT:C191675 Non-Invasive Papillary Urothelial Carcinoma, High Grade 7 10787 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 8 10788 -NCIT:C191673 Non-Invasive Papillary Urothelial Carcinoma, Low Grade 6 10789 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 7 10790 -NCIT:C39851 Bladder Urothelial Carcinoma 6 10791 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 7 10792 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 8 10793 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 7 10794 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 10795 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 10796 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 10797 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 10798 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 10799 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 10800 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 10801 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 10802 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 10803 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 8 10804 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 7 10805 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 7 10806 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 8 10807 -NCIT:C177531 Bladder Flat Urothelial Carcinoma 7 10808 -NCIT:C37266 Bladder Urothelial Carcinoma In Situ 8 10809 -NCIT:C140418 Stage 0is Bladder Cancer AJCC v8 9 10810 -NCIT:C3644 Stage 0is Bladder Urothelial Carcinoma AJCC v6 and v7 9 10811 -NCIT:C180609 Bladder Urothelial Carcinoma, High Grade 7 10812 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 8 10813 -NCIT:C188032 Resectable Bladder Urothelial Carcinoma 7 10814 -NCIT:C27634 Transplant-Related Bladder Urothelial Carcinoma 7 10815 -NCIT:C27885 Invasive Bladder Urothelial Carcinoma 7 10816 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 8 10817 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 10818 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 10819 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 8 10820 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 9 10821 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 8 10822 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 8 10823 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 8 10824 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 8 10825 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 8 10826 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 10827 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 8 10828 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 8 10829 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 8 10830 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 8 10831 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 10832 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 8 10833 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 8 10834 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 8 10835 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 10836 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 8 10837 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 10838 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 9 10839 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 9 10840 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 10841 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 10842 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 8 10843 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 10844 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 8 10845 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 10846 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 8 10847 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 8 10848 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 8 10849 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 8 10850 -NCIT:C39844 Urachal Urothelial Carcinoma 7 10851 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 8 10852 -NCIT:C7383 Bladder Papillary Urothelial Carcinoma 7 10853 -NCIT:C158382 Bladder Non-Invasive Papillary Urothelial Carcinoma 8 10854 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 9 10855 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 9 10856 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 9 10857 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 9 10858 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 8 10859 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 10860 -NCIT:C39853 Invasive Urothelial Carcinoma 6 10861 -NCIT:C115966 Invasive Bladder Urothelial Carcinoma Associated with Urethral Carcinoma 7 10862 -NCIT:C164252 Invasive Sarcomatoid Urothelial Carcinoma 7 10863 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 8 10864 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 10865 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 8 10866 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 10867 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 9 10868 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 9 10869 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 8 10870 -NCIT:C191678 Invasive Lymphoepithelioma-Like Urothelial Carcinoma 7 10871 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 8 10872 -NCIT:C191679 Invasive Giant Cell Urothelial Carcinoma 7 10873 -NCIT:C191693 Metastatic Giant Cell Urothelial Carcinoma 8 10874 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 10875 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 8 10876 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 10877 -NCIT:C191680 Invasive Urothelial Carcinoma with Glandular Differentiation 7 10878 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 8 10879 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 8 10880 -NCIT:C191681 Invasive Urothelial Carcinoma with Squamous Differentiation 7 10881 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 8 10882 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 8 10883 -NCIT:C191682 Invasive Urothelial Carcinoma with Trophoblastic Differentiation 7 10884 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 8 10885 -NCIT:C191683 Invasive Clear Cell (Glycogen-Rich) Urothelial Carcinoma 7 10886 -NCIT:C191692 Metastatic Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 10887 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 10888 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 10889 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 10890 -NCIT:C191684 Invasive Lipid-Rich Urothelial Carcinoma 7 10891 -NCIT:C191694 Metastatic Lipid-Rich Urothelial Carcinoma 8 10892 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 10893 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 8 10894 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 10895 -NCIT:C191685 Invasive Microcystic Urothelial Carcinoma 7 10896 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 8 10897 -NCIT:C191686 Invasive Micropapillary Urothelial Carcinoma 7 10898 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 8 10899 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 10900 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 8 10901 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 10902 -NCIT:C191687 Invasive Nested Urothelial Carcinoma 7 10903 -NCIT:C191696 Metastatic Nested Urothelial Carcinoma 8 10904 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 10905 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 8 10906 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 10907 -NCIT:C191688 Invasive Plasmacytoid Urothelial Carcinoma 7 10908 -NCIT:C191697 Metastatic Plasmacytoid Urothelial Carcinoma 8 10909 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 10910 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 8 10911 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 10912 -NCIT:C191725 Invasive Large Nested Urothelial Carcinoma 7 10913 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 8 10914 -NCIT:C191728 Invasive Tubular Urothelial Carcinoma 7 10915 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 8 10916 -NCIT:C191730 Invasive Poorly Differentiated Urothelial Carcinoma 7 10917 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 8 10918 -NCIT:C191734 Invasive Conventional Urothelial Carcinoma 7 10919 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 8 10920 -NCIT:C27885 Invasive Bladder Urothelial Carcinoma 7 10921 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 8 10922 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 10923 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 10924 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 8 10925 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 9 10926 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 8 10927 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 8 10928 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 8 10929 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 8 10930 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 8 10931 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 10932 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 8 10933 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 8 10934 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 8 10935 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 8 10936 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 10937 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 8 10938 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 8 10939 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 8 10940 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 10941 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 8 10942 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 10943 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 9 10944 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 9 10945 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 10946 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 10947 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 8 10948 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 10949 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 8 10950 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 10951 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 8 10952 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 8 10953 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 8 10954 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 8 10955 -NCIT:C39879 Invasive Renal Pelvis and Ureter Urothelial Carcinoma 7 10956 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 8 10957 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 8 10958 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 8 10959 -NCIT:C39898 Primary Prostate Urothelial Carcinoma 6 10960 -NCIT:C39900 Prostatic Urethra Urothelial Carcinoma 7 10961 -NCIT:C39901 Prostatic Duct Urothelial Carcinoma 7 10962 -NCIT:C6166 Urethral Urothelial Carcinoma 6 10963 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 7 10964 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 7 10965 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 10966 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 10967 -NCIT:C158585 Unresectable Urethral Urothelial Carcinoma 7 10968 -NCIT:C176996 Refractory Urethral Urothelial Carcinoma 7 10969 -NCIT:C39900 Prostatic Urethra Urothelial Carcinoma 7 10970 -NCIT:C7716 Renal Pelvis and Ureter Urothelial Carcinoma 6 10971 -NCIT:C140355 Renal Pelvis and Ureter Cancer by AJCC v8 Stage 7 10972 -NCIT:C140356 Renal Pelvis Cancer by AJCC v8 Stage 8 10973 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 9 10974 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 9 10975 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 9 10976 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 9 10977 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 9 10978 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 9 10979 -NCIT:C140357 Ureter Cancer by AJCC v8 Stage 8 10980 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 9 10981 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 9 10982 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 9 10983 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 9 10984 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 9 10985 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 9 10986 -NCIT:C140358 Stage 0a Renal Pelvis and Ureter Cancer AJCC v8 8 10987 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 9 10988 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 9 10989 -NCIT:C140361 Stage 0is Renal Pelvis and Ureter Cancer AJCC v8 8 10990 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 9 10991 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 9 10992 -NCIT:C140364 Stage I Renal Pelvis and Ureter Cancer AJCC v8 8 10993 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 9 10994 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 9 10995 -NCIT:C140367 Stage II Renal Pelvis and Ureter Cancer AJCC v8 8 10996 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 9 10997 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 9 10998 -NCIT:C140370 Stage III Renal Pelvis and Ureter Cancer AJCC v8 8 10999 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 9 11000 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 9 11001 -NCIT:C140373 Stage IV Renal Pelvis and Ureter Cancer AJCC v8 8 11002 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 9 11003 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 9 11004 -NCIT:C140376 Renal Pelvis and Ureter Cancer by AJCC v7 Stage 7 11005 -NCIT:C140377 Renal Pelvis Cancer by AJCC v7 Stage 8 11006 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 9 11007 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 9 11008 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 9 11009 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 9 11010 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 9 11011 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 10 11012 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 10 11013 -NCIT:C140378 Ureter Cancer by AJCC v7 Stage 8 11014 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 9 11015 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 10 11016 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 10 11017 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 9 11018 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 9 11019 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 9 11020 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 9 11021 -NCIT:C39850 Stage 0 Renal Pelvis and Ureter Cancer AJCC v7 8 11022 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 9 11023 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 10 11024 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 10 11025 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 9 11026 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 10 11027 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 10 11028 -NCIT:C7517 Stage 0a Renal Pelvis and Ureter Cancer AJCC v7 9 11029 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 10 11030 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 10 11031 -NCIT:C7518 Stage 0is Renal Pelvis and Ureter Cancer AJCC v7 9 11032 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 10 11033 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 10 11034 -NCIT:C7519 Stage I Renal Pelvis and Ureter Cancer AJCC v7 8 11035 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 9 11036 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 9 11037 -NCIT:C7520 Stage II Renal Pelvis and Ureter Cancer AJCC v7 8 11038 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 9 11039 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 9 11040 -NCIT:C7521 Stage III Renal Pelvis and Ureter Cancer AJCC v7 8 11041 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 9 11042 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 9 11043 -NCIT:C7522 Stage IV Renal Pelvis and Ureter Cancer AJCC v7 8 11044 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 9 11045 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 9 11046 -NCIT:C164160 Unresectable Renal Pelvis and Ureter Urothelial Carcinoma 7 11047 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 8 11048 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 8 11049 -NCIT:C39879 Invasive Renal Pelvis and Ureter Urothelial Carcinoma 7 11050 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 8 11051 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 8 11052 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 8 11053 -NCIT:C4830 Ureter Urothelial Carcinoma 7 11054 -NCIT:C140357 Ureter Cancer by AJCC v8 Stage 8 11055 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 9 11056 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 9 11057 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 9 11058 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 9 11059 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 9 11060 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 9 11061 -NCIT:C140378 Ureter Cancer by AJCC v7 Stage 8 11062 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 9 11063 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 10 11064 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 10 11065 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 9 11066 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 9 11067 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 9 11068 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 9 11069 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 8 11070 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 11071 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 11072 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 8 11073 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 8 11074 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 8 11075 -NCIT:C180608 Ureter Urothelial Carcinoma, High Grade 8 11076 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 8 11077 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 8 11078 -NCIT:C7355 Renal Pelvis Urothelial Carcinoma 7 11079 -NCIT:C140356 Renal Pelvis Cancer by AJCC v8 Stage 8 11080 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 9 11081 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 9 11082 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 9 11083 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 9 11084 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 9 11085 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 9 11086 -NCIT:C140377 Renal Pelvis Cancer by AJCC v7 Stage 8 11087 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 9 11088 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 9 11089 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 9 11090 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 9 11091 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 9 11092 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 10 11093 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 10 11094 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 8 11095 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 11096 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 11097 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 8 11098 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 8 11099 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 8 11100 -NCIT:C180607 Renal Pelvis Urothelial Carcinoma, High Grade 8 11101 -NCIT:C6148 Renal Pelvis Papillary Urothelial Carcinoma 8 11102 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 9 11103 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 9 11104 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 8 11105 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 7 11106 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 8 11107 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 11108 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 11109 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 8 11110 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 11111 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 11112 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 11113 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 11114 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 11115 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 11116 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 11117 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 11118 -NCIT:C8167 Localized Renal Pelvis and Ureter Urothelial Carcinoma 7 11119 -NCIT:C8168 Regional Renal Pelvis and Ureter Urothelial Carcinoma 7 11120 -NCIT:C8254 Recurrent Renal Pelvis and Ureter Urothelial Carcinoma 7 11121 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 8 11122 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 8 11123 -NCIT:C4893 Benign Urinary System Neoplasm 4 11124 -NCIT:C191740 Squamous Papilloma of the Urinary Tract 5 11125 -NCIT:C39834 Bladder Squamous Papilloma 6 11126 -NCIT:C191750 Villous Adenoma of the Urinary Tract 5 11127 -NCIT:C7414 Bladder Villous Adenoma 6 11128 -NCIT:C3617 Benign Ureter Neoplasm 5 11129 -NCIT:C4530 Ureter Polyp 6 11130 -NCIT:C6160 Ureter Urothelial Papilloma 6 11131 -NCIT:C6174 Ureter Inverted Papilloma 7 11132 -NCIT:C6161 Ureter Leiomyoma 6 11133 -NCIT:C6162 Ureter Schwannoma 6 11134 -NCIT:C3618 Benign Bladder Neoplasm 5 11135 -NCIT:C159674 Bladder Benign PEComa 6 11136 -NCIT:C159680 Bladder Hemangioma 6 11137 -NCIT:C159682 Bladder Neurofibroma 6 11138 -NCIT:C39834 Bladder Squamous Papilloma 6 11139 -NCIT:C39858 Bladder Urothelial Papilloma 6 11140 -NCIT:C39859 Bladder Inverted Papilloma 7 11141 -NCIT:C6178 Bladder Leiomyoma 6 11142 -NCIT:C7414 Bladder Villous Adenoma 6 11143 -NCIT:C3619 Benign Urethral Neoplasm 5 11144 -NCIT:C39872 Urethral Villous Adenoma 6 11145 -NCIT:C4532 Benign Accessory Urethral Gland Neoplasm 6 11146 -NCIT:C5061 Urethral Urothelial Papilloma 6 11147 -NCIT:C6173 Urethral Inverted Papilloma 7 11148 -NCIT:C6169 Urethral Condyloma Acuminatum 6 11149 -NCIT:C6171 Urethral Leiomyoma 6 11150 -NCIT:C3842 Urothelial Papilloma 5 11151 -NCIT:C39858 Bladder Urothelial Papilloma 6 11152 -NCIT:C39859 Bladder Inverted Papilloma 7 11153 -NCIT:C4528 Renal Pelvis Urothelial Papilloma 6 11154 -NCIT:C6187 Renal Pelvis Inverted Papilloma 7 11155 -NCIT:C5061 Urethral Urothelial Papilloma 6 11156 -NCIT:C6173 Urethral Inverted Papilloma 7 11157 -NCIT:C6160 Ureter Urothelial Papilloma 6 11158 -NCIT:C6174 Ureter Inverted Papilloma 7 11159 -NCIT:C6192 Inverted Urothelial Papilloma 6 11160 -NCIT:C39859 Bladder Inverted Papilloma 7 11161 -NCIT:C6173 Urethral Inverted Papilloma 7 11162 -NCIT:C6174 Ureter Inverted Papilloma 7 11163 -NCIT:C6187 Renal Pelvis Inverted Papilloma 7 11164 -NCIT:C4778 Benign Kidney Neoplasm 5 11165 -NCIT:C157748 Metanephric Tumor 6 11166 -NCIT:C157749 Metanephric Stromal Tumor 7 11167 -NCIT:C27253 Metanephric Adenoma 7 11168 -NCIT:C39812 Metanephric Adenofibroma 7 11169 -NCIT:C159209 Kidney Leiomyoma 6 11170 -NCIT:C159211 Kidney Hemangioma 6 11171 -NCIT:C159214 Kidney Lymphangioma 6 11172 -NCIT:C159221 Kidney Schwannoma 6 11173 -NCIT:C190608 Childhood Benign Kidney Neoplasm 6 11174 -NCIT:C157745 Childhood Cystic Nephroma 7 11175 -NCIT:C66774 Ossifying Renal Tumor of Infancy 7 11176 -NCIT:C191391 Kidney Classic Angiomyolipoma 6 11177 -NCIT:C191392 Kidney Oncocytoma-Like Angiomyolipoma 7 11178 -NCIT:C191393 Kidney Angiomyolipoma with Epithelial Cysts 7 11179 -NCIT:C3616 Benign Renal Pelvis Neoplasm 6 11180 -NCIT:C4528 Renal Pelvis Urothelial Papilloma 7 11181 -NCIT:C6187 Renal Pelvis Inverted Papilloma 8 11182 -NCIT:C37264 Benign Kidney Mixed Epithelial and Stromal Tumor 6 11183 -NCIT:C4162 Juxtaglomerular Cell Tumor 6 11184 -NCIT:C4526 Kidney Oncocytoma 6 11185 -NCIT:C8960 Hereditary Kidney Oncocytoma 7 11186 -NCIT:C5100 Renomedullary Interstitial Cell Tumor 6 11187 -NCIT:C5101 Kidney Lipoma 6 11188 -NCIT:C8383 Kidney Adenoma 6 11189 -NCIT:C27253 Metanephric Adenoma 7 11190 -NCIT:C3687 Renal Papillary Adenoma 7 11191 -NCIT:C7046 Urinary System Paraganglioma 4 11192 -NCIT:C159226 Kidney Paraganglioma 5 11193 -NCIT:C6414 Bladder Paraganglioma 5 11194 -NCIT:C6416 Metastatic Bladder Paraganglioma 6 11195 -NCIT:C7514 Kidney and Ureter Neoplasm 4 11196 -NCIT:C3150 Kidney Neoplasm 5 11197 -NCIT:C121955 Clear Cell Papillary Renal Tumor 6 11198 -NCIT:C157743 Kidney Neuroendocrine Neoplasm 6 11199 -NCIT:C159223 Kidney Neuroendocrine Tumor 7 11200 -NCIT:C159224 Kidney Neuroendocrine Carcinoma 7 11201 -NCIT:C116317 Kidney Small Cell Neuroendocrine Carcinoma 8 11202 -NCIT:C159225 Kidney Large Cell Neuroendocrine Carcinoma 8 11203 -NCIT:C159226 Kidney Paraganglioma 7 11204 -NCIT:C158046 Kidney Mixed Epithelial and Stromal Tumor Family 6 11205 -NCIT:C37263 Kidney Mixed Epithelial and Stromal Tumor 7 11206 -NCIT:C37264 Benign Kidney Mixed Epithelial and Stromal Tumor 8 11207 -NCIT:C37265 Malignant Mixed Epithelial and Stromal Tumor of the Kidney 8 11208 -NCIT:C7504 Adult Cystic Nephroma 7 11209 -NCIT:C159222 Kidney Solitary Fibrous Tumor 6 11210 -NCIT:C159227 Kidney Germ Cell Tumor 6 11211 -NCIT:C191394 Kidney Hemangioblastoma 6 11212 -NCIT:C3888 Kidney Angiomyolipoma 6 11213 -NCIT:C158032 Kidney Epithelioid Angiomyolipoma 7 11214 -NCIT:C191391 Kidney Classic Angiomyolipoma 7 11215 -NCIT:C191392 Kidney Oncocytoma-Like Angiomyolipoma 8 11216 -NCIT:C191393 Kidney Angiomyolipoma with Epithelial Cysts 8 11217 -NCIT:C6565 Childhood Kidney Angiomyolipoma 7 11218 -NCIT:C4524 Multilocular Cystic Renal Neoplasm of Low Malignant Potential 6 11219 -NCIT:C4778 Benign Kidney Neoplasm 6 11220 -NCIT:C157748 Metanephric Tumor 7 11221 -NCIT:C157749 Metanephric Stromal Tumor 8 11222 -NCIT:C27253 Metanephric Adenoma 8 11223 -NCIT:C39812 Metanephric Adenofibroma 8 11224 -NCIT:C159209 Kidney Leiomyoma 7 11225 -NCIT:C159211 Kidney Hemangioma 7 11226 -NCIT:C159214 Kidney Lymphangioma 7 11227 -NCIT:C159221 Kidney Schwannoma 7 11228 -NCIT:C190608 Childhood Benign Kidney Neoplasm 7 11229 -NCIT:C157745 Childhood Cystic Nephroma 8 11230 -NCIT:C66774 Ossifying Renal Tumor of Infancy 8 11231 -NCIT:C191391 Kidney Classic Angiomyolipoma 7 11232 -NCIT:C191392 Kidney Oncocytoma-Like Angiomyolipoma 8 11233 -NCIT:C191393 Kidney Angiomyolipoma with Epithelial Cysts 8 11234 -NCIT:C3616 Benign Renal Pelvis Neoplasm 7 11235 -NCIT:C4528 Renal Pelvis Urothelial Papilloma 8 11236 -NCIT:C6187 Renal Pelvis Inverted Papilloma 9 11237 -NCIT:C37264 Benign Kidney Mixed Epithelial and Stromal Tumor 7 11238 -NCIT:C4162 Juxtaglomerular Cell Tumor 7 11239 -NCIT:C4526 Kidney Oncocytoma 7 11240 -NCIT:C8960 Hereditary Kidney Oncocytoma 8 11241 -NCIT:C5100 Renomedullary Interstitial Cell Tumor 7 11242 -NCIT:C5101 Kidney Lipoma 7 11243 -NCIT:C8383 Kidney Adenoma 7 11244 -NCIT:C27253 Metanephric Adenoma 8 11245 -NCIT:C3687 Renal Papillary Adenoma 8 11246 -NCIT:C6563 Childhood Kidney Neoplasm 6 11247 -NCIT:C115445 Recurrent Childhood Kidney Neoplasm 7 11248 -NCIT:C162730 Recurrent Rhabdoid Tumor of the Kidney 8 11249 -NCIT:C123907 Childhood Malignant Kidney Neoplasm 7 11250 -NCIT:C189244 Childhood Kidney Carcinoma 8 11251 -NCIT:C189248 Childhood SMARCB1-Deficient Kidney Medullary Carcinoma 9 11252 -NCIT:C6568 Childhood Renal Cell Carcinoma 9 11253 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 10 11254 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 10 11255 -NCIT:C189255 Childhood Eosinophilic Solid and Cystic Renal Cell Carcinoma 10 11256 -NCIT:C189260 Childhood Anaplastic Sarcoma of the Kidney 8 11257 -NCIT:C189261 Childhood Kidney Ewing Sarcoma 8 11258 -NCIT:C27730 Childhood Kidney Wilms Tumor 8 11259 -NCIT:C6897 Cystic Partially Differentiated Kidney Nephroblastoma 9 11260 -NCIT:C4264 Clear Cell Sarcoma of the Kidney 8 11261 -NCIT:C6569 Congenital Mesoblastic Nephroma 8 11262 -NCIT:C39814 Classic Congenital Mesoblastic Nephroma 9 11263 -NCIT:C39815 Cellular Congenital Mesoblastic Nephroma 9 11264 -NCIT:C97058 Mixed Congenital Mesoblastic Nephroma 9 11265 -NCIT:C8715 Rhabdoid Tumor of the Kidney 8 11266 -NCIT:C162730 Recurrent Rhabdoid Tumor of the Kidney 9 11267 -NCIT:C162731 Refractory Rhabdoid Tumor of the Kidney 9 11268 -NCIT:C188888 Unresectable Rhabdoid Tumor of the Kidney 9 11269 -NCIT:C190608 Childhood Benign Kidney Neoplasm 7 11270 -NCIT:C157745 Childhood Cystic Nephroma 8 11271 -NCIT:C66774 Ossifying Renal Tumor of Infancy 8 11272 -NCIT:C6565 Childhood Kidney Angiomyolipoma 7 11273 -NCIT:C6566 Childhood Multilocular Cystic Renal Neoplasm 7 11274 -NCIT:C157745 Childhood Cystic Nephroma 8 11275 -NCIT:C6897 Cystic Partially Differentiated Kidney Nephroblastoma 8 11276 -NCIT:C7548 Malignant Kidney Neoplasm 6 11277 -NCIT:C120456 Malignant Kidney Neoplasm Except Pelvis 7 11278 -NCIT:C123907 Childhood Malignant Kidney Neoplasm 7 11279 -NCIT:C189244 Childhood Kidney Carcinoma 8 11280 -NCIT:C189248 Childhood SMARCB1-Deficient Kidney Medullary Carcinoma 9 11281 -NCIT:C6568 Childhood Renal Cell Carcinoma 9 11282 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 10 11283 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 10 11284 -NCIT:C189255 Childhood Eosinophilic Solid and Cystic Renal Cell Carcinoma 10 11285 -NCIT:C189260 Childhood Anaplastic Sarcoma of the Kidney 8 11286 -NCIT:C189261 Childhood Kidney Ewing Sarcoma 8 11287 -NCIT:C27730 Childhood Kidney Wilms Tumor 8 11288 -NCIT:C6897 Cystic Partially Differentiated Kidney Nephroblastoma 9 11289 -NCIT:C4264 Clear Cell Sarcoma of the Kidney 8 11290 -NCIT:C6569 Congenital Mesoblastic Nephroma 8 11291 -NCIT:C39814 Classic Congenital Mesoblastic Nephroma 9 11292 -NCIT:C39815 Cellular Congenital Mesoblastic Nephroma 9 11293 -NCIT:C97058 Mixed Congenital Mesoblastic Nephroma 9 11294 -NCIT:C8715 Rhabdoid Tumor of the Kidney 8 11295 -NCIT:C162730 Recurrent Rhabdoid Tumor of the Kidney 9 11296 -NCIT:C162731 Refractory Rhabdoid Tumor of the Kidney 9 11297 -NCIT:C188888 Unresectable Rhabdoid Tumor of the Kidney 9 11298 -NCIT:C37265 Malignant Mixed Epithelial and Stromal Tumor of the Kidney 7 11299 -NCIT:C40407 Kidney Wilms Tumor 7 11300 -NCIT:C27730 Childhood Kidney Wilms Tumor 8 11301 -NCIT:C6897 Cystic Partially Differentiated Kidney Nephroblastoma 9 11302 -NCIT:C38158 Metachronous Kidney Wilms Tumor 8 11303 -NCIT:C6180 Adult Kidney Wilms Tumor 8 11304 -NCIT:C6951 Nonanaplastic Kidney Wilms Tumor 8 11305 -NCIT:C6952 Anaplastic Kidney Wilms Tumor 8 11306 -NCIT:C7840 Stage I Kidney Wilms Tumor 8 11307 -NCIT:C7841 Stage II Kidney Wilms Tumor 8 11308 -NCIT:C7842 Stage III Kidney Wilms Tumor 8 11309 -NCIT:C7843 Stage IV Kidney Wilms Tumor 8 11310 -NCIT:C7844 Stage V Kidney Wilms Tumor 8 11311 -NCIT:C7845 Recurrent Kidney Wilms Tumor 8 11312 -NCIT:C8496 Hereditary Kidney Wilms Tumor 8 11313 -NCIT:C9146 Epithelial Predominant Kidney Wilms Tumor 8 11314 -NCIT:C9147 Blastema Predominant Kidney Wilms Tumor 8 11315 -NCIT:C9148 Stromal Predominant Kidney Wilms Tumor 8 11316 -NCIT:C9149 Mixed Cell Type Kidney Wilms Tumor 8 11317 -NCIT:C4525 Kidney Sarcoma 7 11318 -NCIT:C154496 Anaplastic Sarcoma of the Kidney 8 11319 -NCIT:C189260 Childhood Anaplastic Sarcoma of the Kidney 9 11320 -NCIT:C157737 Kidney Synovial Sarcoma 8 11321 -NCIT:C159205 Kidney Angiosarcoma 8 11322 -NCIT:C159206 Kidney Rhabdomyosarcoma 8 11323 -NCIT:C159208 Kidney Ewing Sarcoma 8 11324 -NCIT:C189261 Childhood Kidney Ewing Sarcoma 9 11325 -NCIT:C4264 Clear Cell Sarcoma of the Kidney 8 11326 -NCIT:C6181 Kidney Extraskeletal Osteosarcoma 8 11327 -NCIT:C6183 Kidney Leiomyosarcoma 8 11328 -NCIT:C6185 Kidney Liposarcoma 8 11329 -NCIT:C7726 Kidney Fibrosarcoma 8 11330 -NCIT:C63532 Kidney Lymphoma 7 11331 -NCIT:C188075 Kidney Burkitt Lymphoma 8 11332 -NCIT:C63533 Kidney Diffuse Large B-Cell Lymphoma 8 11333 -NCIT:C67214 Peripheral Primitive Neuroectodermal Tumor of the Kidney 7 11334 -NCIT:C7525 Malignant Renal Pelvis Neoplasm 7 11335 -NCIT:C6142 Renal Pelvis Carcinoma 8 11336 -NCIT:C163965 Metastatic Renal Pelvis Carcinoma 9 11337 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 10 11338 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 11 11339 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 11 11340 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 10 11341 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 11 11342 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 10 11343 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 11 11344 -NCIT:C6143 Renal Pelvis Adenocarcinoma 9 11345 -NCIT:C7355 Renal Pelvis Urothelial Carcinoma 9 11346 -NCIT:C140356 Renal Pelvis Cancer by AJCC v8 Stage 10 11347 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 11 11348 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 11 11349 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 11 11350 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 11 11351 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 11 11352 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 11 11353 -NCIT:C140377 Renal Pelvis Cancer by AJCC v7 Stage 10 11354 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 11 11355 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 11 11356 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 11 11357 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 11 11358 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 11 11359 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 12 11360 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 12 11361 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 10 11362 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 11 11363 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 11 11364 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 10 11365 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 10 11366 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 10 11367 -NCIT:C180607 Renal Pelvis Urothelial Carcinoma, High Grade 10 11368 -NCIT:C6148 Renal Pelvis Papillary Urothelial Carcinoma 10 11369 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 11 11370 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 11371 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 10 11372 -NCIT:C7732 Renal Pelvis Squamous Cell Carcinoma 9 11373 -NCIT:C7549 Metastatic Malignant Neoplasm in the Kidney 7 11374 -NCIT:C185153 Extramedullary Disease in Plasma Cell Myeloma Involving the Kidney 8 11375 -NCIT:C9384 Kidney Carcinoma 7 11376 -NCIT:C159224 Kidney Neuroendocrine Carcinoma 8 11377 -NCIT:C116317 Kidney Small Cell Neuroendocrine Carcinoma 9 11378 -NCIT:C159225 Kidney Large Cell Neuroendocrine Carcinoma 9 11379 -NCIT:C172622 Recurrent Kidney Carcinoma 8 11380 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 11381 -NCIT:C162726 Recurrent Kidney Medullary Carcinoma 9 11382 -NCIT:C7825 Recurrent Renal Cell Carcinoma 9 11383 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 10 11384 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 11 11385 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 10 11386 -NCIT:C172623 Refractory Kidney Carcinoma 8 11387 -NCIT:C162727 Refractory Kidney Medullary Carcinoma 9 11388 -NCIT:C165745 Refractory Renal Cell Carcinoma 9 11389 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 10 11390 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 9 11391 -NCIT:C174565 Unresectable Kidney Carcinoma 8 11392 -NCIT:C154545 Unresectable Renal Cell Carcinoma 9 11393 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 11394 -NCIT:C165449 Unresectable Clear Cell Renal Cell Carcinoma 10 11395 -NCIT:C183251 Unresectable Sarcomatoid Renal Cell Carcinoma 10 11396 -NCIT:C190505 Unresectable Papillary Renal Cell Carcinoma 10 11397 -NCIT:C190508 Unresectable Unclassified Renal Cell Carcinoma 10 11398 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 9 11399 -NCIT:C174567 Unresectable Kidney Medullary Carcinoma 9 11400 -NCIT:C189241 Kidney Carcinoma Molecular Subtypes 8 11401 -NCIT:C154494 Renal Cell Carcinoma with MiT Translocations 9 11402 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 10 11403 -NCIT:C27891 TFE3-Rearranged Renal Cell Carcinoma 10 11404 -NCIT:C37872 Renal Cell Carcinoma Associated with t(X;1)(p11.2;q21) 11 11405 -NCIT:C37874 Renal Cell Carcinoma Associated with t(X;1)(p11.2;p34) 11 11406 -NCIT:C37876 Renal Cell Carcinoma Associated with t(X;17)(p11.2;q25) 11 11407 -NCIT:C39802 Renal Cell Carcinoma Associated with inv(X)(p11;q12) 11 11408 -NCIT:C37210 TFEB-Rearranged Renal Cell Carcinoma 10 11409 -NCIT:C156464 Succinate Dehydrogenase-Deficient Renal Cell Carcinoma 9 11410 -NCIT:C164156 Fumarate Hydratase-Deficient Renal Cell Carcinoma 9 11411 -NCIT:C189247 SMARCB1-Deficient Kidney Medullary Carcinoma 9 11412 -NCIT:C189248 Childhood SMARCB1-Deficient Kidney Medullary Carcinoma 10 11413 -NCIT:C189249 ALK-Rearranged Renal Cell Carcinoma 9 11414 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 10 11415 -NCIT:C191375 ELOC-Mutated Renal Cell Carcinoma 9 11416 -NCIT:C189244 Childhood Kidney Carcinoma 8 11417 -NCIT:C189248 Childhood SMARCB1-Deficient Kidney Medullary Carcinoma 9 11418 -NCIT:C6568 Childhood Renal Cell Carcinoma 9 11419 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 10 11420 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 10 11421 -NCIT:C189255 Childhood Eosinophilic Solid and Cystic Renal Cell Carcinoma 10 11422 -NCIT:C27806 Metastatic Kidney Carcinoma 8 11423 -NCIT:C150595 Metastatic Renal Cell Carcinoma 9 11424 -NCIT:C153170 Advanced Renal Cell Carcinoma 10 11425 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 11 11426 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 11 11427 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 11 11428 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 11 11429 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 11 11430 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 10 11431 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 11 11432 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 11 11433 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 10 11434 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 11 11435 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 11 11436 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 10 11437 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 11 11438 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 11 11439 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 10 11440 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 11 11441 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 11 11442 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 11 11443 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 11 11444 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 11 11445 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 11 11446 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 10 11447 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 11 11448 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 11 11449 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 10 11450 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 11 11451 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 11 11452 -NCIT:C157755 Metastatic Kidney Medullary Carcinoma 9 11453 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 10 11454 -NCIT:C163965 Metastatic Renal Pelvis Carcinoma 9 11455 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 10 11456 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 11 11457 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 11 11458 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 10 11459 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 11 11460 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 10 11461 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 11 11462 -NCIT:C172617 Advanced Kidney Carcinoma 9 11463 -NCIT:C153170 Advanced Renal Cell Carcinoma 10 11464 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 11 11465 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 11 11466 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 11 11467 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 11 11468 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 11 11469 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 10 11470 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 11 11471 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 10 11472 -NCIT:C172618 Locally Advanced Kidney Carcinoma 9 11473 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 10 11474 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 11 11475 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 11 11476 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 11 11477 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 11 11478 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 11 11479 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 11 11480 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 10 11481 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 11 11482 -NCIT:C39807 Mucinous Tubular and Spindle Cell Carcinoma of the Kidney 8 11483 -NCIT:C6142 Renal Pelvis Carcinoma 8 11484 -NCIT:C163965 Metastatic Renal Pelvis Carcinoma 9 11485 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 10 11486 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 11 11487 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 11 11488 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 10 11489 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 11 11490 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 10 11491 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 11 11492 -NCIT:C6143 Renal Pelvis Adenocarcinoma 9 11493 -NCIT:C7355 Renal Pelvis Urothelial Carcinoma 9 11494 -NCIT:C140356 Renal Pelvis Cancer by AJCC v8 Stage 10 11495 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 11 11496 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 11 11497 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 11 11498 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 11 11499 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 11 11500 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 11 11501 -NCIT:C140377 Renal Pelvis Cancer by AJCC v7 Stage 10 11502 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 11 11503 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 11 11504 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 11 11505 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 11 11506 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 11 11507 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 12 11508 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 12 11509 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 10 11510 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 11 11511 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 11 11512 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 10 11513 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 10 11514 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 10 11515 -NCIT:C180607 Renal Pelvis Urothelial Carcinoma, High Grade 10 11516 -NCIT:C6148 Renal Pelvis Papillary Urothelial Carcinoma 10 11517 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 11 11518 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 11519 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 10 11520 -NCIT:C7732 Renal Pelvis Squamous Cell Carcinoma 9 11521 -NCIT:C6194 Collecting Duct Carcinoma 8 11522 -NCIT:C7572 Kidney Medullary Carcinoma 8 11523 -NCIT:C157755 Metastatic Kidney Medullary Carcinoma 9 11524 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 10 11525 -NCIT:C162726 Recurrent Kidney Medullary Carcinoma 9 11526 -NCIT:C162727 Refractory Kidney Medullary Carcinoma 9 11527 -NCIT:C174567 Unresectable Kidney Medullary Carcinoma 9 11528 -NCIT:C189247 SMARCB1-Deficient Kidney Medullary Carcinoma 9 11529 -NCIT:C189248 Childhood SMARCB1-Deficient Kidney Medullary Carcinoma 10 11530 -NCIT:C9385 Renal Cell Carcinoma 8 11531 -NCIT:C100051 Renal Cell Carcinoma Associated with Neuroblastoma 9 11532 -NCIT:C126303 Tubulocystic Renal Cell Carcinoma 9 11533 -NCIT:C140322 Renal Cell Cancer by AJCC v8 Stage 9 11534 -NCIT:C140323 Stage I Renal Cell Cancer AJCC v8 10 11535 -NCIT:C140324 Stage II Renal Cell Cancer AJCC v8 10 11536 -NCIT:C140325 Stage III Renal Cell Cancer AJCC v8 10 11537 -NCIT:C140326 Stage IV Renal Cell Cancer AJCC v8 10 11538 -NCIT:C150359 Bilateral Synchronous Sporadic Renal Cell Carcinoma 9 11539 -NCIT:C150595 Metastatic Renal Cell Carcinoma 9 11540 -NCIT:C153170 Advanced Renal Cell Carcinoma 10 11541 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 11 11542 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 11 11543 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 11 11544 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 11 11545 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 11 11546 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 10 11547 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 11 11548 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 11 11549 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 10 11550 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 11 11551 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 11 11552 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 10 11553 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 11 11554 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 11 11555 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 10 11556 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 11 11557 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 11 11558 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 11 11559 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 11 11560 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 11 11561 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 11 11562 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 10 11563 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 11 11564 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 11 11565 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 10 11566 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 11 11567 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 11 11568 -NCIT:C154494 Renal Cell Carcinoma with MiT Translocations 9 11569 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 10 11570 -NCIT:C27891 TFE3-Rearranged Renal Cell Carcinoma 10 11571 -NCIT:C37872 Renal Cell Carcinoma Associated with t(X;1)(p11.2;q21) 11 11572 -NCIT:C37874 Renal Cell Carcinoma Associated with t(X;1)(p11.2;p34) 11 11573 -NCIT:C37876 Renal Cell Carcinoma Associated with t(X;17)(p11.2;q25) 11 11574 -NCIT:C39802 Renal Cell Carcinoma Associated with inv(X)(p11;q12) 11 11575 -NCIT:C37210 TFEB-Rearranged Renal Cell Carcinoma 10 11576 -NCIT:C154545 Unresectable Renal Cell Carcinoma 9 11577 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 11578 -NCIT:C165449 Unresectable Clear Cell Renal Cell Carcinoma 10 11579 -NCIT:C183251 Unresectable Sarcomatoid Renal Cell Carcinoma 10 11580 -NCIT:C190505 Unresectable Papillary Renal Cell Carcinoma 10 11581 -NCIT:C190508 Unresectable Unclassified Renal Cell Carcinoma 10 11582 -NCIT:C154547 Resectable Renal Cell Carcinoma 9 11583 -NCIT:C156464 Succinate Dehydrogenase-Deficient Renal Cell Carcinoma 9 11584 -NCIT:C157718 Acquired Cystic Disease-Associated Renal Cell Carcinoma 9 11585 -NCIT:C164156 Fumarate Hydratase-Deficient Renal Cell Carcinoma 9 11586 -NCIT:C165745 Refractory Renal Cell Carcinoma 9 11587 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 10 11588 -NCIT:C189249 ALK-Rearranged Renal Cell Carcinoma 9 11589 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 10 11590 -NCIT:C189254 Eosinophilic Solid and Cystic Renal Cell Carcinoma 9 11591 -NCIT:C189255 Childhood Eosinophilic Solid and Cystic Renal Cell Carcinoma 10 11592 -NCIT:C191370 Renal Cell Carcinoma, Not Otherwise Specified 9 11593 -NCIT:C191375 ELOC-Mutated Renal Cell Carcinoma 9 11594 -NCIT:C27638 Transplant-Related Renal Cell Carcinoma 9 11595 -NCIT:C27892 Unclassified Renal Cell Carcinoma 9 11596 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 10 11597 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 11 11598 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 11 11599 -NCIT:C190508 Unresectable Unclassified Renal Cell Carcinoma 10 11600 -NCIT:C27893 Sarcomatoid Renal Cell Carcinoma 9 11601 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 10 11602 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 11 11603 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 11 11604 -NCIT:C183251 Unresectable Sarcomatoid Renal Cell Carcinoma 10 11605 -NCIT:C39789 Hereditary Renal Cell Carcinoma 9 11606 -NCIT:C36260 Hereditary Clear Cell Renal Cell Carcinoma 10 11607 -NCIT:C39790 Renal Cell Carcinoma with Constitutional Chromosome 3 Translocations 10 11608 -NCIT:C51302 Hereditary Leiomyomatosis and Renal Cell Carcinoma 10 11609 -NCIT:C9222 Hereditary Papillary Renal Cell Carcinoma 10 11610 -NCIT:C4033 Clear Cell Renal Cell Carcinoma 9 11611 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 10 11612 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 11 11613 -NCIT:C157614 BAP1-Mutant Clear Cell Renal Cell Carcinoma 10 11614 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 10 11615 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 11 11616 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 11 11617 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 10 11618 -NCIT:C165449 Unresectable Clear Cell Renal Cell Carcinoma 10 11619 -NCIT:C35851 Grade 1 Clear Cell Renal Cell Carcinoma 10 11620 -NCIT:C35852 Grade 2 Clear Cell Renal Cell Carcinoma 10 11621 -NCIT:C35853 Grade 3 Clear Cell Renal Cell Carcinoma 10 11622 -NCIT:C35854 Grade 4 Clear Cell Renal Cell Carcinoma 10 11623 -NCIT:C36260 Hereditary Clear Cell Renal Cell Carcinoma 10 11624 -NCIT:C36261 Non-Hereditary Clear Cell Renal Cell Carcinoma 10 11625 -NCIT:C4146 Chromophobe Renal Cell Carcinoma 9 11626 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 10 11627 -NCIT:C155951 Chromophobe Renal Cell Carcinoma Associated with Birt-Hogg-Dube Syndrome 10 11628 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 10 11629 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 11 11630 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 11 11631 -NCIT:C27888 Classic Variant of Chromophobe Renal Cell Carcinoma 10 11632 -NCIT:C27889 Eosinophilic Variant of Chromophobe Renal Cell Carcinoma 10 11633 -NCIT:C6568 Childhood Renal Cell Carcinoma 9 11634 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 10 11635 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 10 11636 -NCIT:C189255 Childhood Eosinophilic Solid and Cystic Renal Cell Carcinoma 10 11637 -NCIT:C6975 Papillary Renal Cell Carcinoma 9 11638 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 10 11639 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 11 11640 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 11 11641 -NCIT:C190505 Unresectable Papillary Renal Cell Carcinoma 10 11642 -NCIT:C27886 Type 1 Papillary Renal Cell Carcinoma 10 11643 -NCIT:C27887 Type 2 Papillary Renal Cell Carcinoma 10 11644 -NCIT:C27890 Sporadic Papillary Renal Cell Carcinoma 10 11645 -NCIT:C9222 Hereditary Papillary Renal Cell Carcinoma 10 11646 -NCIT:C7825 Recurrent Renal Cell Carcinoma 9 11647 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 10 11648 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 11 11649 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 10 11650 -NCIT:C90343 Renal Cell Cancer by AJCC v6 Stage 9 11651 -NCIT:C4003 Stage IV Renal Cell Cancer AJCC v6 10 11652 -NCIT:C7823 Stage I Renal Cell Cancer AJCC v6 and v7 10 11653 -NCIT:C7824 Stage II Renal Cell Cancer AJCC v6 10 11654 -NCIT:C9220 Stage III Renal Cell Cancer AJCC v6 10 11655 -NCIT:C91201 Renal Cell Cancer by AJCC v7 Stage 9 11656 -NCIT:C7823 Stage I Renal Cell Cancer AJCC v6 and v7 10 11657 -NCIT:C89301 Stage II Renal Cell Cancer AJCC v7 10 11658 -NCIT:C89302 Stage III Renal Cell Cancer AJCC v7 10 11659 -NCIT:C89303 Stage IV Renal Cell Cancer AJCC v7 10 11660 -NCIT:C8404 Renal Pelvis Neoplasm 6 11661 -NCIT:C3616 Benign Renal Pelvis Neoplasm 7 11662 -NCIT:C4528 Renal Pelvis Urothelial Papilloma 8 11663 -NCIT:C6187 Renal Pelvis Inverted Papilloma 9 11664 -NCIT:C7525 Malignant Renal Pelvis Neoplasm 7 11665 -NCIT:C6142 Renal Pelvis Carcinoma 8 11666 -NCIT:C163965 Metastatic Renal Pelvis Carcinoma 9 11667 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 10 11668 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 11 11669 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 11 11670 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 10 11671 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 11 11672 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 10 11673 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 11 11674 -NCIT:C6143 Renal Pelvis Adenocarcinoma 9 11675 -NCIT:C7355 Renal Pelvis Urothelial Carcinoma 9 11676 -NCIT:C140356 Renal Pelvis Cancer by AJCC v8 Stage 10 11677 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 11 11678 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 11 11679 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 11 11680 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 11 11681 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 11 11682 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 11 11683 -NCIT:C140377 Renal Pelvis Cancer by AJCC v7 Stage 10 11684 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 11 11685 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 11 11686 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 11 11687 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 11 11688 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 11 11689 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 12 11690 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 12 11691 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 10 11692 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 11 11693 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 11 11694 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 10 11695 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 10 11696 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 10 11697 -NCIT:C180607 Renal Pelvis Urothelial Carcinoma, High Grade 10 11698 -NCIT:C6148 Renal Pelvis Papillary Urothelial Carcinoma 10 11699 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 11 11700 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 11701 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 10 11702 -NCIT:C7732 Renal Pelvis Squamous Cell Carcinoma 9 11703 -NCIT:C8603 Renal Pelvis Papillary Urothelial Neoplasm 7 11704 -NCIT:C4528 Renal Pelvis Urothelial Papilloma 8 11705 -NCIT:C6187 Renal Pelvis Inverted Papilloma 9 11706 -NCIT:C6148 Renal Pelvis Papillary Urothelial Carcinoma 8 11707 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 9 11708 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 9 11709 -NCIT:C3427 Ureter Neoplasm 5 11710 -NCIT:C3617 Benign Ureter Neoplasm 6 11711 -NCIT:C4530 Ureter Polyp 7 11712 -NCIT:C6160 Ureter Urothelial Papilloma 7 11713 -NCIT:C6174 Ureter Inverted Papilloma 8 11714 -NCIT:C6161 Ureter Leiomyoma 7 11715 -NCIT:C6162 Ureter Schwannoma 7 11716 -NCIT:C7543 Malignant Ureter Neoplasm 6 11717 -NCIT:C6175 Ureter Lymphoma 7 11718 -NCIT:C7544 Metastatic Malignant Neoplasm in the Ureter 7 11719 -NCIT:C8716 Regional Malignant Ureter Neoplasm 7 11720 -NCIT:C9356 Regional Ureter Carcinoma 8 11721 -NCIT:C8993 Ureter Carcinoma 7 11722 -NCIT:C27818 Metastatic Ureter Carcinoma 8 11723 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 9 11724 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 11725 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 11726 -NCIT:C4830 Ureter Urothelial Carcinoma 8 11727 -NCIT:C140357 Ureter Cancer by AJCC v8 Stage 9 11728 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 10 11729 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 10 11730 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 10 11731 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 10 11732 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 10 11733 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 10 11734 -NCIT:C140378 Ureter Cancer by AJCC v7 Stage 9 11735 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 10 11736 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 11 11737 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 11 11738 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 10 11739 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 10 11740 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 10 11741 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 10 11742 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 9 11743 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 11744 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 11745 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 9 11746 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 9 11747 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 9 11748 -NCIT:C180608 Ureter Urothelial Carcinoma, High Grade 9 11749 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 9 11750 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 9 11751 -NCIT:C6154 Ureter Squamous Cell Carcinoma 8 11752 -NCIT:C6155 Ureter Adenocarcinoma 8 11753 -NCIT:C6159 Ureter Undifferentiated Carcinoma 8 11754 -NCIT:C6176 Ureter Small Cell Neuroendocrine Carcinoma 8 11755 -NCIT:C9255 Recurrent Ureter Carcinoma 8 11756 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 9 11757 -NCIT:C9356 Regional Ureter Carcinoma 8 11758 -NCIT:C7515 Renal Pelvis and Ureter Carcinoma 5 11759 -NCIT:C7716 Renal Pelvis and Ureter Urothelial Carcinoma 6 11760 -NCIT:C140355 Renal Pelvis and Ureter Cancer by AJCC v8 Stage 7 11761 -NCIT:C140356 Renal Pelvis Cancer by AJCC v8 Stage 8 11762 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 9 11763 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 9 11764 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 9 11765 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 9 11766 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 9 11767 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 9 11768 -NCIT:C140357 Ureter Cancer by AJCC v8 Stage 8 11769 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 9 11770 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 9 11771 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 9 11772 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 9 11773 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 9 11774 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 9 11775 -NCIT:C140358 Stage 0a Renal Pelvis and Ureter Cancer AJCC v8 8 11776 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 9 11777 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 9 11778 -NCIT:C140361 Stage 0is Renal Pelvis and Ureter Cancer AJCC v8 8 11779 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 9 11780 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 9 11781 -NCIT:C140364 Stage I Renal Pelvis and Ureter Cancer AJCC v8 8 11782 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 9 11783 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 9 11784 -NCIT:C140367 Stage II Renal Pelvis and Ureter Cancer AJCC v8 8 11785 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 9 11786 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 9 11787 -NCIT:C140370 Stage III Renal Pelvis and Ureter Cancer AJCC v8 8 11788 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 9 11789 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 9 11790 -NCIT:C140373 Stage IV Renal Pelvis and Ureter Cancer AJCC v8 8 11791 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 9 11792 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 9 11793 -NCIT:C140376 Renal Pelvis and Ureter Cancer by AJCC v7 Stage 7 11794 -NCIT:C140377 Renal Pelvis Cancer by AJCC v7 Stage 8 11795 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 9 11796 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 9 11797 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 9 11798 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 9 11799 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 9 11800 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 10 11801 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 10 11802 -NCIT:C140378 Ureter Cancer by AJCC v7 Stage 8 11803 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 9 11804 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 10 11805 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 10 11806 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 9 11807 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 9 11808 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 9 11809 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 9 11810 -NCIT:C39850 Stage 0 Renal Pelvis and Ureter Cancer AJCC v7 8 11811 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 9 11812 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 10 11813 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 10 11814 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 9 11815 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 10 11816 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 10 11817 -NCIT:C7517 Stage 0a Renal Pelvis and Ureter Cancer AJCC v7 9 11818 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 10 11819 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 10 11820 -NCIT:C7518 Stage 0is Renal Pelvis and Ureter Cancer AJCC v7 9 11821 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 10 11822 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 10 11823 -NCIT:C7519 Stage I Renal Pelvis and Ureter Cancer AJCC v7 8 11824 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 9 11825 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 9 11826 -NCIT:C7520 Stage II Renal Pelvis and Ureter Cancer AJCC v7 8 11827 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 9 11828 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 9 11829 -NCIT:C7521 Stage III Renal Pelvis and Ureter Cancer AJCC v7 8 11830 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 9 11831 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 9 11832 -NCIT:C7522 Stage IV Renal Pelvis and Ureter Cancer AJCC v7 8 11833 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 9 11834 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 9 11835 -NCIT:C164160 Unresectable Renal Pelvis and Ureter Urothelial Carcinoma 7 11836 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 8 11837 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 8 11838 -NCIT:C39879 Invasive Renal Pelvis and Ureter Urothelial Carcinoma 7 11839 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 8 11840 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 8 11841 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 8 11842 -NCIT:C4830 Ureter Urothelial Carcinoma 7 11843 -NCIT:C140357 Ureter Cancer by AJCC v8 Stage 8 11844 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 9 11845 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 9 11846 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 9 11847 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 9 11848 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 9 11849 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 9 11850 -NCIT:C140378 Ureter Cancer by AJCC v7 Stage 8 11851 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 9 11852 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 10 11853 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 10 11854 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 9 11855 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 9 11856 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 9 11857 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 9 11858 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 8 11859 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 11860 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 11861 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 8 11862 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 8 11863 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 8 11864 -NCIT:C180608 Ureter Urothelial Carcinoma, High Grade 8 11865 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 8 11866 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 8 11867 -NCIT:C7355 Renal Pelvis Urothelial Carcinoma 7 11868 -NCIT:C140356 Renal Pelvis Cancer by AJCC v8 Stage 8 11869 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 9 11870 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 9 11871 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 9 11872 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 9 11873 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 9 11874 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 9 11875 -NCIT:C140377 Renal Pelvis Cancer by AJCC v7 Stage 8 11876 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 9 11877 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 9 11878 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 9 11879 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 9 11880 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 9 11881 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 10 11882 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 10 11883 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 8 11884 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 11885 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 11886 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 8 11887 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 8 11888 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 8 11889 -NCIT:C180607 Renal Pelvis Urothelial Carcinoma, High Grade 8 11890 -NCIT:C6148 Renal Pelvis Papillary Urothelial Carcinoma 8 11891 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 9 11892 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 9 11893 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 8 11894 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 7 11895 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 8 11896 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 11897 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 11898 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 8 11899 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 11900 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 11901 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 11902 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 11903 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 11904 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 11905 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 11906 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 11907 -NCIT:C8167 Localized Renal Pelvis and Ureter Urothelial Carcinoma 7 11908 -NCIT:C8168 Regional Renal Pelvis and Ureter Urothelial Carcinoma 7 11909 -NCIT:C8254 Recurrent Renal Pelvis and Ureter Urothelial Carcinoma 7 11910 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 8 11911 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 8 11912 -NCIT:C9297 Malignant Urinary System Neoplasm 4 11913 -NCIT:C150542 Recurrent Malignant Urinary System Neoplasm 5 11914 -NCIT:C162730 Recurrent Rhabdoid Tumor of the Kidney 6 11915 -NCIT:C7623 Recurrent Urinary System Carcinoma 6 11916 -NCIT:C157631 Recurrent Urothelial Carcinoma 7 11917 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 11918 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 11919 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 11920 -NCIT:C8254 Recurrent Renal Pelvis and Ureter Urothelial Carcinoma 8 11921 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 9 11922 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 11923 -NCIT:C172622 Recurrent Kidney Carcinoma 7 11924 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 8 11925 -NCIT:C162726 Recurrent Kidney Medullary Carcinoma 8 11926 -NCIT:C7825 Recurrent Renal Cell Carcinoma 8 11927 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 9 11928 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 10 11929 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 9 11930 -NCIT:C7508 Recurrent Urethral Carcinoma 7 11931 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 11932 -NCIT:C7899 Recurrent Bladder Carcinoma 7 11933 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 11934 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 11935 -NCIT:C190774 Recurrent Non-Muscle Invasive Bladder Carcinoma 8 11936 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 11937 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 11938 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 8 11939 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 8 11940 -NCIT:C9255 Recurrent Ureter Carcinoma 7 11941 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 8 11942 -NCIT:C7845 Recurrent Kidney Wilms Tumor 6 11943 -NCIT:C9266 Recurrent Malignant Bladder Neoplasm 6 11944 -NCIT:C7899 Recurrent Bladder Carcinoma 7 11945 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 11946 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 11947 -NCIT:C190774 Recurrent Non-Muscle Invasive Bladder Carcinoma 8 11948 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 11949 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 11950 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 8 11951 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 8 11952 -NCIT:C150543 Refractory Malignant Urinary System Neoplasm 5 11953 -NCIT:C162719 Refractory Urinary System Carcinoma 6 11954 -NCIT:C150316 Refractory Bladder Carcinoma 7 11955 -NCIT:C148286 Refractory Stage 0 Bladder Cancer AJCC v6 and v7 8 11956 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 8 11957 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 11958 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 8 11959 -NCIT:C150364 Refractory Urothelial Carcinoma 7 11960 -NCIT:C150365 Platinum-Resistant Urothelial Carcinoma 8 11961 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 8 11962 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 11963 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 8 11964 -NCIT:C176996 Refractory Urethral Urothelial Carcinoma 8 11965 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 8 11966 -NCIT:C172623 Refractory Kidney Carcinoma 7 11967 -NCIT:C162727 Refractory Kidney Medullary Carcinoma 8 11968 -NCIT:C165745 Refractory Renal Cell Carcinoma 8 11969 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 9 11970 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 8 11971 -NCIT:C162731 Refractory Rhabdoid Tumor of the Kidney 6 11972 -NCIT:C155950 Hereditary Malignant Urinary System Neoplasm 5 11973 -NCIT:C39789 Hereditary Renal Cell Carcinoma 6 11974 -NCIT:C36260 Hereditary Clear Cell Renal Cell Carcinoma 7 11975 -NCIT:C39790 Renal Cell Carcinoma with Constitutional Chromosome 3 Translocations 7 11976 -NCIT:C51302 Hereditary Leiomyomatosis and Renal Cell Carcinoma 7 11977 -NCIT:C9222 Hereditary Papillary Renal Cell Carcinoma 7 11978 -NCIT:C8496 Hereditary Kidney Wilms Tumor 6 11979 -NCIT:C170943 Metastatic Malignant Neoplasm in the Urinary System 5 11980 -NCIT:C7544 Metastatic Malignant Neoplasm in the Ureter 6 11981 -NCIT:C7549 Metastatic Malignant Neoplasm in the Kidney 6 11982 -NCIT:C185153 Extramedullary Disease in Plasma Cell Myeloma Involving the Kidney 7 11983 -NCIT:C7573 Metastatic Malignant Neoplasm in the Urethra 6 11984 -NCIT:C7650 Metastatic Malignant Neoplasm in the Bladder 6 11985 -NCIT:C178453 Mucosal Melanoma of the Urinary System 5 11986 -NCIT:C159663 Bladder Melanoma 6 11987 -NCIT:C159665 Urethral Melanoma 6 11988 -NCIT:C181197 Urinary System Carcinoma 5 11989 -NCIT:C162719 Refractory Urinary System Carcinoma 6 11990 -NCIT:C150316 Refractory Bladder Carcinoma 7 11991 -NCIT:C148286 Refractory Stage 0 Bladder Cancer AJCC v6 and v7 8 11992 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 8 11993 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 11994 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 8 11995 -NCIT:C150364 Refractory Urothelial Carcinoma 7 11996 -NCIT:C150365 Platinum-Resistant Urothelial Carcinoma 8 11997 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 8 11998 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 11999 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 8 12000 -NCIT:C176996 Refractory Urethral Urothelial Carcinoma 8 12001 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 8 12002 -NCIT:C172623 Refractory Kidney Carcinoma 7 12003 -NCIT:C162727 Refractory Kidney Medullary Carcinoma 8 12004 -NCIT:C165745 Refractory Renal Cell Carcinoma 8 12005 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 9 12006 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 8 12007 -NCIT:C191749 Squamous Cell Carcinoma of the Urinary Tract 6 12008 -NCIT:C4031 Bladder Squamous Cell Carcinoma 7 12009 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 8 12010 -NCIT:C27768 Schistosoma Hematobium-Related Bladder Squamous Cell Carcinoma 8 12011 -NCIT:C39833 Schistosoma Hematobium-Related Bladder Verrucous Carcinoma 9 12012 -NCIT:C39832 Bladder Verrucous Carcinoma 8 12013 -NCIT:C39833 Schistosoma Hematobium-Related Bladder Verrucous Carcinoma 9 12014 -NCIT:C39845 Urachal Squamous Cell Carcinoma 8 12015 -NCIT:C4994 Stage II Bladder Squamous Cell Carcinoma AJCC v6 and v7 8 12016 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 8 12017 -NCIT:C8903 Stage 0 Bladder Squamous Cell Carcinoma AJCC v6 and v7 8 12018 -NCIT:C8904 Stage I Squamous Cell Carcinoma of the Bladder AJCC v6 and v7 8 12019 -NCIT:C8905 Stage III Bladder Squamous Cell Carcinoma AJCC v6 and v7 8 12020 -NCIT:C8906 Stage IV Bladder Squamous Cell Carcinoma AJCC v7 8 12021 -NCIT:C191751 Adenocarcinoma of the Urinary Tract 6 12022 -NCIT:C4032 Bladder Adenocarcinoma 7 12023 -NCIT:C39835 Bladder Enteric Type Adenocarcinoma 8 12024 -NCIT:C39836 Bladder Adenocarcinoma, Not Otherwise Specified 8 12025 -NCIT:C39837 Bladder Mucinous Adenocarcinoma 8 12026 -NCIT:C39838 Bladder Hepatoid Adenocarcinoma 8 12027 -NCIT:C39839 Bladder Mixed Adenocarcinoma 8 12028 -NCIT:C39843 Urachal Adenocarcinoma 8 12029 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 8 12030 -NCIT:C6163 Bladder Signet Ring Cell Adenocarcinoma 8 12031 -NCIT:C8894 Stage 0 Bladder Adenocarcinoma AJCC v6 and v7 8 12032 -NCIT:C8895 Stage I Bladder Adenocarcinoma AJCC v6 and v7 8 12033 -NCIT:C8896 Stage II Bladder Adenocarcinoma AJCC v6 and v7 8 12034 -NCIT:C8897 Stage III Bladder Adenocarcinoma AJCC v6 and v7 8 12035 -NCIT:C8898 Stage IV Bladder Adenocarcinoma AJCC v7 8 12036 -NCIT:C191753 Diverticular Carcinoma of the Urinary Tract 6 12037 -NCIT:C191768 Clear Cell Adenocarcinoma of the Urinary Tract 6 12038 -NCIT:C6172 Urethral Clear Cell Adenocarcinoma 7 12039 -NCIT:C6179 Bladder Clear Cell Adenocarcinoma 7 12040 -NCIT:C39847 Bladder Tubulo-Cystic Clear Cell Adenocarcinoma 8 12041 -NCIT:C39848 Bladder Papillary Clear Cell Adenocarcinoma 8 12042 -NCIT:C39849 Bladder Diffuse Clear Cell Adenocarcinoma 8 12043 -NCIT:C191769 Endometrioid Adenocarcinoma of the Urinary Tract 6 12044 -NCIT:C159542 Bladder Endometrioid Adenocarcinoma 7 12045 -NCIT:C4030 Urothelial Carcinoma 6 12046 -NCIT:C126109 Metastatic Urothelial Carcinoma 7 12047 -NCIT:C148493 Advanced Urothelial Carcinoma 8 12048 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 12049 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 12050 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 12051 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 12052 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 12053 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 12054 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 12055 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 12056 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 12057 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 12058 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 12059 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 12060 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 12061 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 12062 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 12063 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 12064 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 12065 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 12066 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 12067 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 8 12068 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 12069 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 12070 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 12071 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 12072 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 12073 -NCIT:C191692 Metastatic Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 12074 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 12075 -NCIT:C191693 Metastatic Giant Cell Urothelial Carcinoma 8 12076 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 12077 -NCIT:C191694 Metastatic Lipid-Rich Urothelial Carcinoma 8 12078 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 12079 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 8 12080 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 12081 -NCIT:C191696 Metastatic Nested Urothelial Carcinoma 8 12082 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 12083 -NCIT:C191697 Metastatic Plasmacytoid Urothelial Carcinoma 8 12084 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 12085 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 8 12086 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 12087 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 8 12088 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 12089 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 12090 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 12091 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 9 12092 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 12093 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 12094 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 12095 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 12096 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 12097 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 12098 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 12099 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 12100 -NCIT:C150364 Refractory Urothelial Carcinoma 7 12101 -NCIT:C150365 Platinum-Resistant Urothelial Carcinoma 8 12102 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 8 12103 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 12104 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 8 12105 -NCIT:C176996 Refractory Urethral Urothelial Carcinoma 8 12106 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 8 12107 -NCIT:C150521 Unresectable Urothelial Carcinoma 7 12108 -NCIT:C158585 Unresectable Urethral Urothelial Carcinoma 8 12109 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 8 12110 -NCIT:C164160 Unresectable Renal Pelvis and Ureter Urothelial Carcinoma 8 12111 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 9 12112 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 9 12113 -NCIT:C157631 Recurrent Urothelial Carcinoma 7 12114 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 12115 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 12116 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 12117 -NCIT:C8254 Recurrent Renal Pelvis and Ureter Urothelial Carcinoma 8 12118 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 9 12119 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 12120 -NCIT:C180606 Urothelial Carcinoma, High Grade 7 12121 -NCIT:C180607 Renal Pelvis Urothelial Carcinoma, High Grade 8 12122 -NCIT:C180608 Ureter Urothelial Carcinoma, High Grade 8 12123 -NCIT:C180609 Bladder Urothelial Carcinoma, High Grade 8 12124 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 9 12125 -NCIT:C191675 Non-Invasive Papillary Urothelial Carcinoma, High Grade 8 12126 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 9 12127 -NCIT:C191673 Non-Invasive Papillary Urothelial Carcinoma, Low Grade 7 12128 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 8 12129 -NCIT:C39851 Bladder Urothelial Carcinoma 7 12130 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 12131 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 12132 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 12133 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 12134 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 12135 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 12136 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 12137 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 12138 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 12139 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 12140 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 12141 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 12142 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 12143 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 8 12144 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 8 12145 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 12146 -NCIT:C177531 Bladder Flat Urothelial Carcinoma 8 12147 -NCIT:C37266 Bladder Urothelial Carcinoma In Situ 9 12148 -NCIT:C140418 Stage 0is Bladder Cancer AJCC v8 10 12149 -NCIT:C3644 Stage 0is Bladder Urothelial Carcinoma AJCC v6 and v7 10 12150 -NCIT:C180609 Bladder Urothelial Carcinoma, High Grade 8 12151 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 9 12152 -NCIT:C188032 Resectable Bladder Urothelial Carcinoma 8 12153 -NCIT:C27634 Transplant-Related Bladder Urothelial Carcinoma 8 12154 -NCIT:C27885 Invasive Bladder Urothelial Carcinoma 8 12155 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 9 12156 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 12157 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 10 12158 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 9 12159 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 10 12160 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 9 12161 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 9 12162 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 9 12163 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 9 12164 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 12165 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 12166 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 9 12167 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 9 12168 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 9 12169 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 9 12170 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 10 12171 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 9 12172 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 9 12173 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 9 12174 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 10 12175 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 9 12176 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 10 12177 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 10 12178 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 10 12179 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 12180 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 10 12181 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 9 12182 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 10 12183 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 9 12184 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 10 12185 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 12186 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 12187 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 12188 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 9 12189 -NCIT:C39844 Urachal Urothelial Carcinoma 8 12190 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 12191 -NCIT:C7383 Bladder Papillary Urothelial Carcinoma 8 12192 -NCIT:C158382 Bladder Non-Invasive Papillary Urothelial Carcinoma 9 12193 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 10 12194 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 10 12195 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 10 12196 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 10 12197 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 12198 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 12199 -NCIT:C39853 Invasive Urothelial Carcinoma 7 12200 -NCIT:C115966 Invasive Bladder Urothelial Carcinoma Associated with Urethral Carcinoma 8 12201 -NCIT:C164252 Invasive Sarcomatoid Urothelial Carcinoma 8 12202 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 9 12203 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 10 12204 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 9 12205 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 10 12206 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 10 12207 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 10 12208 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 9 12209 -NCIT:C191678 Invasive Lymphoepithelioma-Like Urothelial Carcinoma 8 12210 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 9 12211 -NCIT:C191679 Invasive Giant Cell Urothelial Carcinoma 8 12212 -NCIT:C191693 Metastatic Giant Cell Urothelial Carcinoma 9 12213 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 10 12214 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 9 12215 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 10 12216 -NCIT:C191680 Invasive Urothelial Carcinoma with Glandular Differentiation 8 12217 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 9 12218 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 9 12219 -NCIT:C191681 Invasive Urothelial Carcinoma with Squamous Differentiation 8 12220 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 9 12221 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 9 12222 -NCIT:C191682 Invasive Urothelial Carcinoma with Trophoblastic Differentiation 8 12223 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 9 12224 -NCIT:C191683 Invasive Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 12225 -NCIT:C191692 Metastatic Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 12226 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 10 12227 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 12228 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 10 12229 -NCIT:C191684 Invasive Lipid-Rich Urothelial Carcinoma 8 12230 -NCIT:C191694 Metastatic Lipid-Rich Urothelial Carcinoma 9 12231 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 10 12232 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 9 12233 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 10 12234 -NCIT:C191685 Invasive Microcystic Urothelial Carcinoma 8 12235 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 9 12236 -NCIT:C191686 Invasive Micropapillary Urothelial Carcinoma 8 12237 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 9 12238 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 12239 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 12240 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 12241 -NCIT:C191687 Invasive Nested Urothelial Carcinoma 8 12242 -NCIT:C191696 Metastatic Nested Urothelial Carcinoma 9 12243 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 10 12244 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 9 12245 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 10 12246 -NCIT:C191688 Invasive Plasmacytoid Urothelial Carcinoma 8 12247 -NCIT:C191697 Metastatic Plasmacytoid Urothelial Carcinoma 9 12248 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 10 12249 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 9 12250 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 10 12251 -NCIT:C191725 Invasive Large Nested Urothelial Carcinoma 8 12252 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 9 12253 -NCIT:C191728 Invasive Tubular Urothelial Carcinoma 8 12254 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 9 12255 -NCIT:C191730 Invasive Poorly Differentiated Urothelial Carcinoma 8 12256 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 9 12257 -NCIT:C191734 Invasive Conventional Urothelial Carcinoma 8 12258 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 9 12259 -NCIT:C27885 Invasive Bladder Urothelial Carcinoma 8 12260 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 9 12261 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 12262 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 10 12263 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 9 12264 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 10 12265 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 9 12266 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 9 12267 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 9 12268 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 9 12269 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 12270 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 12271 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 9 12272 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 9 12273 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 9 12274 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 9 12275 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 10 12276 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 9 12277 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 9 12278 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 9 12279 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 10 12280 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 9 12281 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 10 12282 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 10 12283 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 10 12284 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 12285 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 10 12286 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 9 12287 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 10 12288 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 9 12289 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 10 12290 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 12291 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 12292 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 12293 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 9 12294 -NCIT:C39879 Invasive Renal Pelvis and Ureter Urothelial Carcinoma 8 12295 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 9 12296 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 9 12297 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 9 12298 -NCIT:C39898 Primary Prostate Urothelial Carcinoma 7 12299 -NCIT:C39900 Prostatic Urethra Urothelial Carcinoma 8 12300 -NCIT:C39901 Prostatic Duct Urothelial Carcinoma 8 12301 -NCIT:C6166 Urethral Urothelial Carcinoma 7 12302 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 12303 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 12304 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 12305 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 12306 -NCIT:C158585 Unresectable Urethral Urothelial Carcinoma 8 12307 -NCIT:C176996 Refractory Urethral Urothelial Carcinoma 8 12308 -NCIT:C39900 Prostatic Urethra Urothelial Carcinoma 8 12309 -NCIT:C7716 Renal Pelvis and Ureter Urothelial Carcinoma 7 12310 -NCIT:C140355 Renal Pelvis and Ureter Cancer by AJCC v8 Stage 8 12311 -NCIT:C140356 Renal Pelvis Cancer by AJCC v8 Stage 9 12312 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 12313 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 10 12314 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 10 12315 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 10 12316 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 10 12317 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 10 12318 -NCIT:C140357 Ureter Cancer by AJCC v8 Stage 9 12319 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 10 12320 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 10 12321 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 10 12322 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 10 12323 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 10 12324 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 10 12325 -NCIT:C140358 Stage 0a Renal Pelvis and Ureter Cancer AJCC v8 9 12326 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 12327 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 10 12328 -NCIT:C140361 Stage 0is Renal Pelvis and Ureter Cancer AJCC v8 9 12329 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 10 12330 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 10 12331 -NCIT:C140364 Stage I Renal Pelvis and Ureter Cancer AJCC v8 9 12332 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 10 12333 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 10 12334 -NCIT:C140367 Stage II Renal Pelvis and Ureter Cancer AJCC v8 9 12335 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 10 12336 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 10 12337 -NCIT:C140370 Stage III Renal Pelvis and Ureter Cancer AJCC v8 9 12338 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 10 12339 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 10 12340 -NCIT:C140373 Stage IV Renal Pelvis and Ureter Cancer AJCC v8 9 12341 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 10 12342 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 10 12343 -NCIT:C140376 Renal Pelvis and Ureter Cancer by AJCC v7 Stage 8 12344 -NCIT:C140377 Renal Pelvis Cancer by AJCC v7 Stage 9 12345 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 10 12346 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 10 12347 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 10 12348 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 10 12349 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 10 12350 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 12351 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 12352 -NCIT:C140378 Ureter Cancer by AJCC v7 Stage 9 12353 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 10 12354 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 11 12355 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 11 12356 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 10 12357 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 10 12358 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 10 12359 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 10 12360 -NCIT:C39850 Stage 0 Renal Pelvis and Ureter Cancer AJCC v7 9 12361 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 10 12362 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 11 12363 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 11 12364 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 10 12365 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 12366 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 12367 -NCIT:C7517 Stage 0a Renal Pelvis and Ureter Cancer AJCC v7 10 12368 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 12369 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 11 12370 -NCIT:C7518 Stage 0is Renal Pelvis and Ureter Cancer AJCC v7 10 12371 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 11 12372 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 12373 -NCIT:C7519 Stage I Renal Pelvis and Ureter Cancer AJCC v7 9 12374 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 10 12375 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 10 12376 -NCIT:C7520 Stage II Renal Pelvis and Ureter Cancer AJCC v7 9 12377 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 10 12378 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 10 12379 -NCIT:C7521 Stage III Renal Pelvis and Ureter Cancer AJCC v7 9 12380 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 10 12381 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 10 12382 -NCIT:C7522 Stage IV Renal Pelvis and Ureter Cancer AJCC v7 9 12383 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 10 12384 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 10 12385 -NCIT:C164160 Unresectable Renal Pelvis and Ureter Urothelial Carcinoma 8 12386 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 9 12387 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 9 12388 -NCIT:C39879 Invasive Renal Pelvis and Ureter Urothelial Carcinoma 8 12389 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 9 12390 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 9 12391 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 9 12392 -NCIT:C4830 Ureter Urothelial Carcinoma 8 12393 -NCIT:C140357 Ureter Cancer by AJCC v8 Stage 9 12394 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 10 12395 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 10 12396 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 10 12397 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 10 12398 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 10 12399 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 10 12400 -NCIT:C140378 Ureter Cancer by AJCC v7 Stage 9 12401 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 10 12402 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 11 12403 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 11 12404 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 10 12405 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 10 12406 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 10 12407 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 10 12408 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 9 12409 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 12410 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 12411 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 9 12412 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 9 12413 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 9 12414 -NCIT:C180608 Ureter Urothelial Carcinoma, High Grade 9 12415 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 9 12416 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 9 12417 -NCIT:C7355 Renal Pelvis Urothelial Carcinoma 8 12418 -NCIT:C140356 Renal Pelvis Cancer by AJCC v8 Stage 9 12419 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 12420 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 10 12421 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 10 12422 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 10 12423 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 10 12424 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 10 12425 -NCIT:C140377 Renal Pelvis Cancer by AJCC v7 Stage 9 12426 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 10 12427 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 10 12428 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 10 12429 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 10 12430 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 10 12431 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 12432 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 12433 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 12434 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 12435 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 12436 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 12437 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 9 12438 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 9 12439 -NCIT:C180607 Renal Pelvis Urothelial Carcinoma, High Grade 9 12440 -NCIT:C6148 Renal Pelvis Papillary Urothelial Carcinoma 9 12441 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 12442 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 10 12443 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 9 12444 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 8 12445 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 12446 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 12447 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 12448 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 9 12449 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 12450 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 12451 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 12452 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 12453 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 12454 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 12455 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 12456 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 12457 -NCIT:C8167 Localized Renal Pelvis and Ureter Urothelial Carcinoma 8 12458 -NCIT:C8168 Regional Renal Pelvis and Ureter Urothelial Carcinoma 8 12459 -NCIT:C8254 Recurrent Renal Pelvis and Ureter Urothelial Carcinoma 8 12460 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 9 12461 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 12462 -NCIT:C4912 Bladder Carcinoma 6 12463 -NCIT:C118816 Childhood Bladder Carcinoma 7 12464 -NCIT:C140416 Bladder Cancer by AJCC v8 Stage 7 12465 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 8 12466 -NCIT:C140418 Stage 0is Bladder Cancer AJCC v8 8 12467 -NCIT:C140419 Stage I Bladder Cancer AJCC v8 8 12468 -NCIT:C140420 Stage II Bladder Cancer AJCC v8 8 12469 -NCIT:C140421 Stage III Bladder Cancer AJCC v8 8 12470 -NCIT:C140422 Stage IIIA Bladder Cancer AJCC v8 9 12471 -NCIT:C140423 Stage IIIB Bladder Cancer AJCC v8 9 12472 -NCIT:C140424 Stage IV Bladder Cancer AJCC v8 8 12473 -NCIT:C140425 Stage IVA Bladder Cancer AJCC v8 9 12474 -NCIT:C140426 Stage IVB Bladder Cancer AJCC v8 9 12475 -NCIT:C150316 Refractory Bladder Carcinoma 7 12476 -NCIT:C148286 Refractory Stage 0 Bladder Cancer AJCC v6 and v7 8 12477 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 8 12478 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 12479 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 8 12480 -NCIT:C150570 Invasive Bladder Carcinoma 7 12481 -NCIT:C150572 Muscle Invasive Bladder Carcinoma 8 12482 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 9 12483 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 10 12484 -NCIT:C165716 Invasive Bladder Mixed Carcinoma 8 12485 -NCIT:C27474 Non-Muscle Invasive Bladder Carcinoma 8 12486 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 9 12487 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 12488 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 10 12489 -NCIT:C190772 Metastatic Non-Muscle Invasive Bladder Carcinoma 9 12490 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 10 12491 -NCIT:C190774 Recurrent Non-Muscle Invasive Bladder Carcinoma 9 12492 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 12493 -NCIT:C27885 Invasive Bladder Urothelial Carcinoma 8 12494 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 9 12495 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 12496 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 10 12497 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 9 12498 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 10 12499 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 9 12500 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 9 12501 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 9 12502 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 9 12503 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 12504 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 12505 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 9 12506 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 9 12507 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 9 12508 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 9 12509 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 10 12510 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 9 12511 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 9 12512 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 9 12513 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 10 12514 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 9 12515 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 10 12516 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 10 12517 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 10 12518 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 12519 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 10 12520 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 9 12521 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 10 12522 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 9 12523 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 10 12524 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 12525 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 12526 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 12527 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 9 12528 -NCIT:C156062 Metastatic Bladder Carcinoma 7 12529 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 12530 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 12531 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 12532 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 12533 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 12534 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 12535 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 12536 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 12537 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 12538 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 12539 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 12540 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 8 12541 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 8 12542 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 8 12543 -NCIT:C167071 Locally Advanced Bladder Carcinoma 8 12544 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 12545 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 9 12546 -NCIT:C167338 Advanced Bladder Carcinoma 8 12547 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 12548 -NCIT:C190772 Metastatic Non-Muscle Invasive Bladder Carcinoma 8 12549 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 9 12550 -NCIT:C157759 Bladder Neuroendocrine Carcinoma 7 12551 -NCIT:C157760 Bladder Large Cell Neuroendocrine Carcinoma 8 12552 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 9 12553 -NCIT:C9461 Bladder Small Cell Neuroendocrine Carcinoma 8 12554 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 9 12555 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 9 12556 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 9 12557 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 9 12558 -NCIT:C159542 Bladder Endometrioid Adenocarcinoma 7 12559 -NCIT:C160158 Carcinoma Arising in Bladder Diverticulum 7 12560 -NCIT:C167075 Unresectable Bladder Carcinoma 7 12561 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 8 12562 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 8 12563 -NCIT:C39842 Urachal Carcinoma 7 12564 -NCIT:C39843 Urachal Adenocarcinoma 8 12565 -NCIT:C39844 Urachal Urothelial Carcinoma 8 12566 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 12567 -NCIT:C39845 Urachal Squamous Cell Carcinoma 8 12568 -NCIT:C39851 Bladder Urothelial Carcinoma 7 12569 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 12570 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 12571 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 12572 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 12573 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 12574 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 12575 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 12576 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 12577 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 12578 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 12579 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 12580 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 12581 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 12582 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 8 12583 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 8 12584 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 12585 -NCIT:C177531 Bladder Flat Urothelial Carcinoma 8 12586 -NCIT:C37266 Bladder Urothelial Carcinoma In Situ 9 12587 -NCIT:C140418 Stage 0is Bladder Cancer AJCC v8 10 12588 -NCIT:C3644 Stage 0is Bladder Urothelial Carcinoma AJCC v6 and v7 10 12589 -NCIT:C180609 Bladder Urothelial Carcinoma, High Grade 8 12590 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 9 12591 -NCIT:C188032 Resectable Bladder Urothelial Carcinoma 8 12592 -NCIT:C27634 Transplant-Related Bladder Urothelial Carcinoma 8 12593 -NCIT:C27885 Invasive Bladder Urothelial Carcinoma 8 12594 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 9 12595 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 12596 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 10 12597 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 9 12598 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 10 12599 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 9 12600 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 9 12601 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 9 12602 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 9 12603 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 12604 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 12605 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 9 12606 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 9 12607 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 9 12608 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 9 12609 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 10 12610 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 9 12611 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 9 12612 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 9 12613 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 10 12614 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 9 12615 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 10 12616 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 10 12617 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 10 12618 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 12619 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 10 12620 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 9 12621 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 10 12622 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 9 12623 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 10 12624 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 12625 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 12626 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 12627 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 9 12628 -NCIT:C39844 Urachal Urothelial Carcinoma 8 12629 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 12630 -NCIT:C7383 Bladder Papillary Urothelial Carcinoma 8 12631 -NCIT:C158382 Bladder Non-Invasive Papillary Urothelial Carcinoma 9 12632 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 10 12633 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 10 12634 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 10 12635 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 10 12636 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 12637 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 12638 -NCIT:C4031 Bladder Squamous Cell Carcinoma 7 12639 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 8 12640 -NCIT:C27768 Schistosoma Hematobium-Related Bladder Squamous Cell Carcinoma 8 12641 -NCIT:C39833 Schistosoma Hematobium-Related Bladder Verrucous Carcinoma 9 12642 -NCIT:C39832 Bladder Verrucous Carcinoma 8 12643 -NCIT:C39833 Schistosoma Hematobium-Related Bladder Verrucous Carcinoma 9 12644 -NCIT:C39845 Urachal Squamous Cell Carcinoma 8 12645 -NCIT:C4994 Stage II Bladder Squamous Cell Carcinoma AJCC v6 and v7 8 12646 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 8 12647 -NCIT:C8903 Stage 0 Bladder Squamous Cell Carcinoma AJCC v6 and v7 8 12648 -NCIT:C8904 Stage I Squamous Cell Carcinoma of the Bladder AJCC v6 and v7 8 12649 -NCIT:C8905 Stage III Bladder Squamous Cell Carcinoma AJCC v6 and v7 8 12650 -NCIT:C8906 Stage IV Bladder Squamous Cell Carcinoma AJCC v7 8 12651 -NCIT:C4032 Bladder Adenocarcinoma 7 12652 -NCIT:C39835 Bladder Enteric Type Adenocarcinoma 8 12653 -NCIT:C39836 Bladder Adenocarcinoma, Not Otherwise Specified 8 12654 -NCIT:C39837 Bladder Mucinous Adenocarcinoma 8 12655 -NCIT:C39838 Bladder Hepatoid Adenocarcinoma 8 12656 -NCIT:C39839 Bladder Mixed Adenocarcinoma 8 12657 -NCIT:C39843 Urachal Adenocarcinoma 8 12658 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 8 12659 -NCIT:C6163 Bladder Signet Ring Cell Adenocarcinoma 8 12660 -NCIT:C8894 Stage 0 Bladder Adenocarcinoma AJCC v6 and v7 8 12661 -NCIT:C8895 Stage I Bladder Adenocarcinoma AJCC v6 and v7 8 12662 -NCIT:C8896 Stage II Bladder Adenocarcinoma AJCC v6 and v7 8 12663 -NCIT:C8897 Stage III Bladder Adenocarcinoma AJCC v6 and v7 8 12664 -NCIT:C8898 Stage IV Bladder Adenocarcinoma AJCC v7 8 12665 -NCIT:C6179 Bladder Clear Cell Adenocarcinoma 7 12666 -NCIT:C39847 Bladder Tubulo-Cystic Clear Cell Adenocarcinoma 8 12667 -NCIT:C39848 Bladder Papillary Clear Cell Adenocarcinoma 8 12668 -NCIT:C39849 Bladder Diffuse Clear Cell Adenocarcinoma 8 12669 -NCIT:C7899 Recurrent Bladder Carcinoma 7 12670 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 12671 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 12672 -NCIT:C190774 Recurrent Non-Muscle Invasive Bladder Carcinoma 8 12673 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 12674 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 12675 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 8 12676 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 8 12677 -NCIT:C90344 Bladder Cancer by AJCC v6 Stage 7 12678 -NCIT:C7895 Stage 0 Bladder Cancer AJCC v6 and v7 8 12679 -NCIT:C148286 Refractory Stage 0 Bladder Cancer AJCC v6 and v7 9 12680 -NCIT:C6188 Stage 0 Bladder Urothelial Carcinoma AJCC v6 and v7 9 12681 -NCIT:C3644 Stage 0is Bladder Urothelial Carcinoma AJCC v6 and v7 10 12682 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 10 12683 -NCIT:C8894 Stage 0 Bladder Adenocarcinoma AJCC v6 and v7 9 12684 -NCIT:C8903 Stage 0 Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 12685 -NCIT:C7896 Stage I Bladder Cancer AJCC v6 and v7 8 12686 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 12687 -NCIT:C8895 Stage I Bladder Adenocarcinoma AJCC v6 and v7 9 12688 -NCIT:C8899 Stage I Bladder Cancer with Carcinoma In Situ 9 12689 -NCIT:C8901 Stage I Bladder Cancer without Carcinoma In Situ 9 12690 -NCIT:C8904 Stage I Squamous Cell Carcinoma of the Bladder AJCC v6 and v7 9 12691 -NCIT:C7897 Stage II Bladder Cancer AJCC v6 and v7 8 12692 -NCIT:C4994 Stage II Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 12693 -NCIT:C8896 Stage II Bladder Adenocarcinoma AJCC v6 and v7 9 12694 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 12695 -NCIT:C7898 Stage III Bladder Cancer AJCC v6 and v7 8 12696 -NCIT:C8897 Stage III Bladder Adenocarcinoma AJCC v6 and v7 9 12697 -NCIT:C8905 Stage III Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 12698 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 12699 -NCIT:C7900 Stage IV Bladder Cancer AJCC v6 8 12700 -NCIT:C91202 Bladder Cancer by AJCC v7 Stage 7 12701 -NCIT:C7895 Stage 0 Bladder Cancer AJCC v6 and v7 8 12702 -NCIT:C148286 Refractory Stage 0 Bladder Cancer AJCC v6 and v7 9 12703 -NCIT:C6188 Stage 0 Bladder Urothelial Carcinoma AJCC v6 and v7 9 12704 -NCIT:C3644 Stage 0is Bladder Urothelial Carcinoma AJCC v6 and v7 10 12705 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 10 12706 -NCIT:C8894 Stage 0 Bladder Adenocarcinoma AJCC v6 and v7 9 12707 -NCIT:C8903 Stage 0 Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 12708 -NCIT:C7896 Stage I Bladder Cancer AJCC v6 and v7 8 12709 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 12710 -NCIT:C8895 Stage I Bladder Adenocarcinoma AJCC v6 and v7 9 12711 -NCIT:C8899 Stage I Bladder Cancer with Carcinoma In Situ 9 12712 -NCIT:C8901 Stage I Bladder Cancer without Carcinoma In Situ 9 12713 -NCIT:C8904 Stage I Squamous Cell Carcinoma of the Bladder AJCC v6 and v7 9 12714 -NCIT:C7897 Stage II Bladder Cancer AJCC v6 and v7 8 12715 -NCIT:C4994 Stage II Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 12716 -NCIT:C8896 Stage II Bladder Adenocarcinoma AJCC v6 and v7 9 12717 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 12718 -NCIT:C7898 Stage III Bladder Cancer AJCC v6 and v7 8 12719 -NCIT:C8897 Stage III Bladder Adenocarcinoma AJCC v6 and v7 9 12720 -NCIT:C8905 Stage III Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 12721 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 12722 -NCIT:C89366 Stage IV Bladder Cancer AJCC v7 8 12723 -NCIT:C8898 Stage IV Bladder Adenocarcinoma AJCC v7 9 12724 -NCIT:C8906 Stage IV Bladder Squamous Cell Carcinoma AJCC v7 9 12725 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 9 12726 -NCIT:C7515 Renal Pelvis and Ureter Carcinoma 6 12727 -NCIT:C7716 Renal Pelvis and Ureter Urothelial Carcinoma 7 12728 -NCIT:C140355 Renal Pelvis and Ureter Cancer by AJCC v8 Stage 8 12729 -NCIT:C140356 Renal Pelvis Cancer by AJCC v8 Stage 9 12730 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 12731 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 10 12732 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 10 12733 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 10 12734 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 10 12735 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 10 12736 -NCIT:C140357 Ureter Cancer by AJCC v8 Stage 9 12737 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 10 12738 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 10 12739 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 10 12740 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 10 12741 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 10 12742 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 10 12743 -NCIT:C140358 Stage 0a Renal Pelvis and Ureter Cancer AJCC v8 9 12744 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 12745 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 10 12746 -NCIT:C140361 Stage 0is Renal Pelvis and Ureter Cancer AJCC v8 9 12747 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 10 12748 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 10 12749 -NCIT:C140364 Stage I Renal Pelvis and Ureter Cancer AJCC v8 9 12750 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 10 12751 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 10 12752 -NCIT:C140367 Stage II Renal Pelvis and Ureter Cancer AJCC v8 9 12753 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 10 12754 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 10 12755 -NCIT:C140370 Stage III Renal Pelvis and Ureter Cancer AJCC v8 9 12756 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 10 12757 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 10 12758 -NCIT:C140373 Stage IV Renal Pelvis and Ureter Cancer AJCC v8 9 12759 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 10 12760 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 10 12761 -NCIT:C140376 Renal Pelvis and Ureter Cancer by AJCC v7 Stage 8 12762 -NCIT:C140377 Renal Pelvis Cancer by AJCC v7 Stage 9 12763 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 10 12764 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 10 12765 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 10 12766 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 10 12767 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 10 12768 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 12769 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 12770 -NCIT:C140378 Ureter Cancer by AJCC v7 Stage 9 12771 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 10 12772 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 11 12773 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 11 12774 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 10 12775 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 10 12776 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 10 12777 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 10 12778 -NCIT:C39850 Stage 0 Renal Pelvis and Ureter Cancer AJCC v7 9 12779 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 10 12780 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 11 12781 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 11 12782 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 10 12783 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 12784 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 12785 -NCIT:C7517 Stage 0a Renal Pelvis and Ureter Cancer AJCC v7 10 12786 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 12787 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 11 12788 -NCIT:C7518 Stage 0is Renal Pelvis and Ureter Cancer AJCC v7 10 12789 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 11 12790 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 12791 -NCIT:C7519 Stage I Renal Pelvis and Ureter Cancer AJCC v7 9 12792 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 10 12793 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 10 12794 -NCIT:C7520 Stage II Renal Pelvis and Ureter Cancer AJCC v7 9 12795 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 10 12796 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 10 12797 -NCIT:C7521 Stage III Renal Pelvis and Ureter Cancer AJCC v7 9 12798 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 10 12799 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 10 12800 -NCIT:C7522 Stage IV Renal Pelvis and Ureter Cancer AJCC v7 9 12801 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 10 12802 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 10 12803 -NCIT:C164160 Unresectable Renal Pelvis and Ureter Urothelial Carcinoma 8 12804 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 9 12805 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 9 12806 -NCIT:C39879 Invasive Renal Pelvis and Ureter Urothelial Carcinoma 8 12807 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 9 12808 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 9 12809 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 9 12810 -NCIT:C4830 Ureter Urothelial Carcinoma 8 12811 -NCIT:C140357 Ureter Cancer by AJCC v8 Stage 9 12812 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 10 12813 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 10 12814 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 10 12815 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 10 12816 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 10 12817 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 10 12818 -NCIT:C140378 Ureter Cancer by AJCC v7 Stage 9 12819 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 10 12820 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 11 12821 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 11 12822 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 10 12823 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 10 12824 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 10 12825 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 10 12826 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 9 12827 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 12828 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 12829 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 9 12830 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 9 12831 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 9 12832 -NCIT:C180608 Ureter Urothelial Carcinoma, High Grade 9 12833 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 9 12834 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 9 12835 -NCIT:C7355 Renal Pelvis Urothelial Carcinoma 8 12836 -NCIT:C140356 Renal Pelvis Cancer by AJCC v8 Stage 9 12837 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 12838 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 10 12839 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 10 12840 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 10 12841 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 10 12842 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 10 12843 -NCIT:C140377 Renal Pelvis Cancer by AJCC v7 Stage 9 12844 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 10 12845 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 10 12846 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 10 12847 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 10 12848 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 10 12849 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 12850 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 12851 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 12852 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 12853 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 12854 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 12855 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 9 12856 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 9 12857 -NCIT:C180607 Renal Pelvis Urothelial Carcinoma, High Grade 9 12858 -NCIT:C6148 Renal Pelvis Papillary Urothelial Carcinoma 9 12859 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 12860 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 10 12861 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 9 12862 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 8 12863 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 12864 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 12865 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 12866 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 9 12867 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 12868 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 12869 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 12870 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 12871 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 12872 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 12873 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 12874 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 12875 -NCIT:C8167 Localized Renal Pelvis and Ureter Urothelial Carcinoma 8 12876 -NCIT:C8168 Regional Renal Pelvis and Ureter Urothelial Carcinoma 8 12877 -NCIT:C8254 Recurrent Renal Pelvis and Ureter Urothelial Carcinoma 8 12878 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 9 12879 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 12880 -NCIT:C7623 Recurrent Urinary System Carcinoma 6 12881 -NCIT:C157631 Recurrent Urothelial Carcinoma 7 12882 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 12883 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 12884 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 12885 -NCIT:C8254 Recurrent Renal Pelvis and Ureter Urothelial Carcinoma 8 12886 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 9 12887 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 12888 -NCIT:C172622 Recurrent Kidney Carcinoma 7 12889 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 8 12890 -NCIT:C162726 Recurrent Kidney Medullary Carcinoma 8 12891 -NCIT:C7825 Recurrent Renal Cell Carcinoma 8 12892 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 9 12893 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 10 12894 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 9 12895 -NCIT:C7508 Recurrent Urethral Carcinoma 7 12896 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 12897 -NCIT:C7899 Recurrent Bladder Carcinoma 7 12898 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 12899 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 12900 -NCIT:C190774 Recurrent Non-Muscle Invasive Bladder Carcinoma 8 12901 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 12902 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 12903 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 8 12904 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 8 12905 -NCIT:C9255 Recurrent Ureter Carcinoma 7 12906 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 8 12907 -NCIT:C8993 Ureter Carcinoma 6 12908 -NCIT:C27818 Metastatic Ureter Carcinoma 7 12909 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 8 12910 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 12911 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 12912 -NCIT:C4830 Ureter Urothelial Carcinoma 7 12913 -NCIT:C140357 Ureter Cancer by AJCC v8 Stage 8 12914 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 9 12915 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 9 12916 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 9 12917 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 9 12918 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 9 12919 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 9 12920 -NCIT:C140378 Ureter Cancer by AJCC v7 Stage 8 12921 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 9 12922 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 10 12923 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 10 12924 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 9 12925 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 9 12926 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 9 12927 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 9 12928 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 8 12929 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 12930 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 12931 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 8 12932 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 8 12933 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 8 12934 -NCIT:C180608 Ureter Urothelial Carcinoma, High Grade 8 12935 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 8 12936 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 8 12937 -NCIT:C6154 Ureter Squamous Cell Carcinoma 7 12938 -NCIT:C6155 Ureter Adenocarcinoma 7 12939 -NCIT:C6159 Ureter Undifferentiated Carcinoma 7 12940 -NCIT:C6176 Ureter Small Cell Neuroendocrine Carcinoma 7 12941 -NCIT:C9255 Recurrent Ureter Carcinoma 7 12942 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 8 12943 -NCIT:C9356 Regional Ureter Carcinoma 7 12944 -NCIT:C9106 Urethral Carcinoma 6 12945 -NCIT:C115210 Distal Urethral Carcinoma 7 12946 -NCIT:C115334 Proximal Urethral Carcinoma 7 12947 -NCIT:C140457 Urethral Cancer by AJCC v8 Stage 7 12948 -NCIT:C140458 Stage 0a Urethral Cancer AJCC v8 8 12949 -NCIT:C140459 Stage 0is Urethral Cancer AJCC v8 8 12950 -NCIT:C140460 Stage I Urethral Cancer AJCC v8 8 12951 -NCIT:C140461 Stage II Urethral Cancer AJCC v8 8 12952 -NCIT:C140462 Stage III Urethral Cancer AJCC v8 8 12953 -NCIT:C140463 Stage IV Urethral Cancer AJCC v8 8 12954 -NCIT:C140464 Urethral Cancer by AJCC v7 Stage 7 12955 -NCIT:C6195 Stage 0 Urethral Cancer AJCC v7 8 12956 -NCIT:C4531 Stage 0is Urethral Cancer AJCC v7 9 12957 -NCIT:C6196 Stage 0a Urethral Cancer AJCC v7 9 12958 -NCIT:C6197 Stage I Urethral Cancer AJCC v7 8 12959 -NCIT:C6198 Stage II Urethral Cancer AJCC v7 8 12960 -NCIT:C6199 Stage III Urethral Cancer AJCC v7 8 12961 -NCIT:C6200 Stage IV Urethral Cancer AJCC v7 8 12962 -NCIT:C27819 Metastatic Urethral Carcinoma 7 12963 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 12964 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 12965 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 12966 -NCIT:C6165 Urethral Squamous Cell Carcinoma 7 12967 -NCIT:C39862 Human Papillomavirus-Related Urethral Squamous Cell Carcinoma 8 12968 -NCIT:C39874 Urethral Verrucous Carcinoma 8 12969 -NCIT:C6166 Urethral Urothelial Carcinoma 7 12970 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 12971 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 12972 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 12973 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 12974 -NCIT:C158585 Unresectable Urethral Urothelial Carcinoma 8 12975 -NCIT:C176996 Refractory Urethral Urothelial Carcinoma 8 12976 -NCIT:C39900 Prostatic Urethra Urothelial Carcinoma 8 12977 -NCIT:C6167 Urethral Adenocarcinoma 7 12978 -NCIT:C6172 Urethral Clear Cell Adenocarcinoma 8 12979 -NCIT:C7371 Accessory Urethral Gland Adenocarcinoma 8 12980 -NCIT:C180948 Skene Gland Adenocarcinoma of the Urethra 9 12981 -NCIT:C39864 Cowper Gland Adenocarcinoma of the Urethra 9 12982 -NCIT:C39865 Littre Gland Adenocarcinoma of the Urethra 9 12983 -NCIT:C6168 Urethral Undifferentiated Carcinoma 7 12984 -NCIT:C7508 Recurrent Urethral Carcinoma 7 12985 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 12986 -NCIT:C9384 Kidney Carcinoma 6 12987 -NCIT:C159224 Kidney Neuroendocrine Carcinoma 7 12988 -NCIT:C116317 Kidney Small Cell Neuroendocrine Carcinoma 8 12989 -NCIT:C159225 Kidney Large Cell Neuroendocrine Carcinoma 8 12990 -NCIT:C172622 Recurrent Kidney Carcinoma 7 12991 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 8 12992 -NCIT:C162726 Recurrent Kidney Medullary Carcinoma 8 12993 -NCIT:C7825 Recurrent Renal Cell Carcinoma 8 12994 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 9 12995 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 10 12996 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 9 12997 -NCIT:C172623 Refractory Kidney Carcinoma 7 12998 -NCIT:C162727 Refractory Kidney Medullary Carcinoma 8 12999 -NCIT:C165745 Refractory Renal Cell Carcinoma 8 13000 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 9 13001 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 8 13002 -NCIT:C174565 Unresectable Kidney Carcinoma 7 13003 -NCIT:C154545 Unresectable Renal Cell Carcinoma 8 13004 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 13005 -NCIT:C165449 Unresectable Clear Cell Renal Cell Carcinoma 9 13006 -NCIT:C183251 Unresectable Sarcomatoid Renal Cell Carcinoma 9 13007 -NCIT:C190505 Unresectable Papillary Renal Cell Carcinoma 9 13008 -NCIT:C190508 Unresectable Unclassified Renal Cell Carcinoma 9 13009 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 8 13010 -NCIT:C174567 Unresectable Kidney Medullary Carcinoma 8 13011 -NCIT:C189241 Kidney Carcinoma Molecular Subtypes 7 13012 -NCIT:C154494 Renal Cell Carcinoma with MiT Translocations 8 13013 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 9 13014 -NCIT:C27891 TFE3-Rearranged Renal Cell Carcinoma 9 13015 -NCIT:C37872 Renal Cell Carcinoma Associated with t(X;1)(p11.2;q21) 10 13016 -NCIT:C37874 Renal Cell Carcinoma Associated with t(X;1)(p11.2;p34) 10 13017 -NCIT:C37876 Renal Cell Carcinoma Associated with t(X;17)(p11.2;q25) 10 13018 -NCIT:C39802 Renal Cell Carcinoma Associated with inv(X)(p11;q12) 10 13019 -NCIT:C37210 TFEB-Rearranged Renal Cell Carcinoma 9 13020 -NCIT:C156464 Succinate Dehydrogenase-Deficient Renal Cell Carcinoma 8 13021 -NCIT:C164156 Fumarate Hydratase-Deficient Renal Cell Carcinoma 8 13022 -NCIT:C189247 SMARCB1-Deficient Kidney Medullary Carcinoma 8 13023 -NCIT:C189248 Childhood SMARCB1-Deficient Kidney Medullary Carcinoma 9 13024 -NCIT:C189249 ALK-Rearranged Renal Cell Carcinoma 8 13025 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 9 13026 -NCIT:C191375 ELOC-Mutated Renal Cell Carcinoma 8 13027 -NCIT:C189244 Childhood Kidney Carcinoma 7 13028 -NCIT:C189248 Childhood SMARCB1-Deficient Kidney Medullary Carcinoma 8 13029 -NCIT:C6568 Childhood Renal Cell Carcinoma 8 13030 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 9 13031 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 9 13032 -NCIT:C189255 Childhood Eosinophilic Solid and Cystic Renal Cell Carcinoma 9 13033 -NCIT:C27806 Metastatic Kidney Carcinoma 7 13034 -NCIT:C150595 Metastatic Renal Cell Carcinoma 8 13035 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 13036 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 13037 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 13038 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 13039 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 13040 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 13041 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 9 13042 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 13043 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 13044 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 9 13045 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 13046 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 13047 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 9 13048 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 13049 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 13050 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 13051 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 13052 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 13053 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 13054 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 13055 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 13056 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 13057 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 9 13058 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 13059 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 13060 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 9 13061 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 13062 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 13063 -NCIT:C157755 Metastatic Kidney Medullary Carcinoma 8 13064 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 13065 -NCIT:C163965 Metastatic Renal Pelvis Carcinoma 8 13066 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 13067 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 13068 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 13069 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 13070 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 13071 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 13072 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 13073 -NCIT:C172617 Advanced Kidney Carcinoma 8 13074 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 13075 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 13076 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 13077 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 13078 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 13079 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 13080 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 13081 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 13082 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 13083 -NCIT:C172618 Locally Advanced Kidney Carcinoma 8 13084 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 13085 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 13086 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 13087 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 13088 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 13089 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 13090 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 13091 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 13092 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 13093 -NCIT:C39807 Mucinous Tubular and Spindle Cell Carcinoma of the Kidney 7 13094 -NCIT:C6142 Renal Pelvis Carcinoma 7 13095 -NCIT:C163965 Metastatic Renal Pelvis Carcinoma 8 13096 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 13097 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 13098 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 13099 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 13100 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 13101 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 13102 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 13103 -NCIT:C6143 Renal Pelvis Adenocarcinoma 8 13104 -NCIT:C7355 Renal Pelvis Urothelial Carcinoma 8 13105 -NCIT:C140356 Renal Pelvis Cancer by AJCC v8 Stage 9 13106 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 13107 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 10 13108 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 10 13109 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 10 13110 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 10 13111 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 10 13112 -NCIT:C140377 Renal Pelvis Cancer by AJCC v7 Stage 9 13113 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 10 13114 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 10 13115 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 10 13116 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 10 13117 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 10 13118 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 13119 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 13120 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 13121 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 13122 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 13123 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 13124 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 9 13125 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 9 13126 -NCIT:C180607 Renal Pelvis Urothelial Carcinoma, High Grade 9 13127 -NCIT:C6148 Renal Pelvis Papillary Urothelial Carcinoma 9 13128 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 13129 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 10 13130 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 9 13131 -NCIT:C7732 Renal Pelvis Squamous Cell Carcinoma 8 13132 -NCIT:C6194 Collecting Duct Carcinoma 7 13133 -NCIT:C7572 Kidney Medullary Carcinoma 7 13134 -NCIT:C157755 Metastatic Kidney Medullary Carcinoma 8 13135 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 13136 -NCIT:C162726 Recurrent Kidney Medullary Carcinoma 8 13137 -NCIT:C162727 Refractory Kidney Medullary Carcinoma 8 13138 -NCIT:C174567 Unresectable Kidney Medullary Carcinoma 8 13139 -NCIT:C189247 SMARCB1-Deficient Kidney Medullary Carcinoma 8 13140 -NCIT:C189248 Childhood SMARCB1-Deficient Kidney Medullary Carcinoma 9 13141 -NCIT:C9385 Renal Cell Carcinoma 7 13142 -NCIT:C100051 Renal Cell Carcinoma Associated with Neuroblastoma 8 13143 -NCIT:C126303 Tubulocystic Renal Cell Carcinoma 8 13144 -NCIT:C140322 Renal Cell Cancer by AJCC v8 Stage 8 13145 -NCIT:C140323 Stage I Renal Cell Cancer AJCC v8 9 13146 -NCIT:C140324 Stage II Renal Cell Cancer AJCC v8 9 13147 -NCIT:C140325 Stage III Renal Cell Cancer AJCC v8 9 13148 -NCIT:C140326 Stage IV Renal Cell Cancer AJCC v8 9 13149 -NCIT:C150359 Bilateral Synchronous Sporadic Renal Cell Carcinoma 8 13150 -NCIT:C150595 Metastatic Renal Cell Carcinoma 8 13151 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 13152 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 13153 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 13154 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 13155 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 13156 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 13157 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 9 13158 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 13159 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 13160 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 9 13161 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 13162 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 13163 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 9 13164 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 13165 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 13166 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 13167 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 13168 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 13169 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 13170 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 13171 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 13172 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 13173 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 9 13174 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 13175 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 13176 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 9 13177 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 13178 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 13179 -NCIT:C154494 Renal Cell Carcinoma with MiT Translocations 8 13180 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 9 13181 -NCIT:C27891 TFE3-Rearranged Renal Cell Carcinoma 9 13182 -NCIT:C37872 Renal Cell Carcinoma Associated with t(X;1)(p11.2;q21) 10 13183 -NCIT:C37874 Renal Cell Carcinoma Associated with t(X;1)(p11.2;p34) 10 13184 -NCIT:C37876 Renal Cell Carcinoma Associated with t(X;17)(p11.2;q25) 10 13185 -NCIT:C39802 Renal Cell Carcinoma Associated with inv(X)(p11;q12) 10 13186 -NCIT:C37210 TFEB-Rearranged Renal Cell Carcinoma 9 13187 -NCIT:C154545 Unresectable Renal Cell Carcinoma 8 13188 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 13189 -NCIT:C165449 Unresectable Clear Cell Renal Cell Carcinoma 9 13190 -NCIT:C183251 Unresectable Sarcomatoid Renal Cell Carcinoma 9 13191 -NCIT:C190505 Unresectable Papillary Renal Cell Carcinoma 9 13192 -NCIT:C190508 Unresectable Unclassified Renal Cell Carcinoma 9 13193 -NCIT:C154547 Resectable Renal Cell Carcinoma 8 13194 -NCIT:C156464 Succinate Dehydrogenase-Deficient Renal Cell Carcinoma 8 13195 -NCIT:C157718 Acquired Cystic Disease-Associated Renal Cell Carcinoma 8 13196 -NCIT:C164156 Fumarate Hydratase-Deficient Renal Cell Carcinoma 8 13197 -NCIT:C165745 Refractory Renal Cell Carcinoma 8 13198 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 9 13199 -NCIT:C189249 ALK-Rearranged Renal Cell Carcinoma 8 13200 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 9 13201 -NCIT:C189254 Eosinophilic Solid and Cystic Renal Cell Carcinoma 8 13202 -NCIT:C189255 Childhood Eosinophilic Solid and Cystic Renal Cell Carcinoma 9 13203 -NCIT:C191370 Renal Cell Carcinoma, Not Otherwise Specified 8 13204 -NCIT:C191375 ELOC-Mutated Renal Cell Carcinoma 8 13205 -NCIT:C27638 Transplant-Related Renal Cell Carcinoma 8 13206 -NCIT:C27892 Unclassified Renal Cell Carcinoma 8 13207 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 9 13208 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 13209 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 13210 -NCIT:C190508 Unresectable Unclassified Renal Cell Carcinoma 9 13211 -NCIT:C27893 Sarcomatoid Renal Cell Carcinoma 8 13212 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 9 13213 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 13214 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 13215 -NCIT:C183251 Unresectable Sarcomatoid Renal Cell Carcinoma 9 13216 -NCIT:C39789 Hereditary Renal Cell Carcinoma 8 13217 -NCIT:C36260 Hereditary Clear Cell Renal Cell Carcinoma 9 13218 -NCIT:C39790 Renal Cell Carcinoma with Constitutional Chromosome 3 Translocations 9 13219 -NCIT:C51302 Hereditary Leiomyomatosis and Renal Cell Carcinoma 9 13220 -NCIT:C9222 Hereditary Papillary Renal Cell Carcinoma 9 13221 -NCIT:C4033 Clear Cell Renal Cell Carcinoma 8 13222 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 9 13223 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 10 13224 -NCIT:C157614 BAP1-Mutant Clear Cell Renal Cell Carcinoma 9 13225 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 9 13226 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 13227 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 13228 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 9 13229 -NCIT:C165449 Unresectable Clear Cell Renal Cell Carcinoma 9 13230 -NCIT:C35851 Grade 1 Clear Cell Renal Cell Carcinoma 9 13231 -NCIT:C35852 Grade 2 Clear Cell Renal Cell Carcinoma 9 13232 -NCIT:C35853 Grade 3 Clear Cell Renal Cell Carcinoma 9 13233 -NCIT:C35854 Grade 4 Clear Cell Renal Cell Carcinoma 9 13234 -NCIT:C36260 Hereditary Clear Cell Renal Cell Carcinoma 9 13235 -NCIT:C36261 Non-Hereditary Clear Cell Renal Cell Carcinoma 9 13236 -NCIT:C4146 Chromophobe Renal Cell Carcinoma 8 13237 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 9 13238 -NCIT:C155951 Chromophobe Renal Cell Carcinoma Associated with Birt-Hogg-Dube Syndrome 9 13239 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 9 13240 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 13241 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 13242 -NCIT:C27888 Classic Variant of Chromophobe Renal Cell Carcinoma 9 13243 -NCIT:C27889 Eosinophilic Variant of Chromophobe Renal Cell Carcinoma 9 13244 -NCIT:C6568 Childhood Renal Cell Carcinoma 8 13245 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 9 13246 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 9 13247 -NCIT:C189255 Childhood Eosinophilic Solid and Cystic Renal Cell Carcinoma 9 13248 -NCIT:C6975 Papillary Renal Cell Carcinoma 8 13249 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 9 13250 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 13251 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 13252 -NCIT:C190505 Unresectable Papillary Renal Cell Carcinoma 9 13253 -NCIT:C27886 Type 1 Papillary Renal Cell Carcinoma 9 13254 -NCIT:C27887 Type 2 Papillary Renal Cell Carcinoma 9 13255 -NCIT:C27890 Sporadic Papillary Renal Cell Carcinoma 9 13256 -NCIT:C9222 Hereditary Papillary Renal Cell Carcinoma 9 13257 -NCIT:C7825 Recurrent Renal Cell Carcinoma 8 13258 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 9 13259 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 10 13260 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 9 13261 -NCIT:C90343 Renal Cell Cancer by AJCC v6 Stage 8 13262 -NCIT:C4003 Stage IV Renal Cell Cancer AJCC v6 9 13263 -NCIT:C7823 Stage I Renal Cell Cancer AJCC v6 and v7 9 13264 -NCIT:C7824 Stage II Renal Cell Cancer AJCC v6 9 13265 -NCIT:C9220 Stage III Renal Cell Cancer AJCC v6 9 13266 -NCIT:C91201 Renal Cell Cancer by AJCC v7 Stage 8 13267 -NCIT:C7823 Stage I Renal Cell Cancer AJCC v6 and v7 9 13268 -NCIT:C89301 Stage II Renal Cell Cancer AJCC v7 9 13269 -NCIT:C89302 Stage III Renal Cell Cancer AJCC v7 9 13270 -NCIT:C89303 Stage IV Renal Cell Cancer AJCC v7 9 13271 -NCIT:C7507 Malignant Urethral Neoplasm 5 13272 -NCIT:C159665 Urethral Melanoma 6 13273 -NCIT:C3561 Malignant Accessory Urethral Gland Neoplasm 6 13274 -NCIT:C7371 Accessory Urethral Gland Adenocarcinoma 7 13275 -NCIT:C180948 Skene Gland Adenocarcinoma of the Urethra 8 13276 -NCIT:C39864 Cowper Gland Adenocarcinoma of the Urethra 8 13277 -NCIT:C39865 Littre Gland Adenocarcinoma of the Urethra 8 13278 -NCIT:C39866 Female Urethral Malignant Neoplasm 6 13279 -NCIT:C39867 Male Urethral Malignant Neoplasm 6 13280 -NCIT:C39864 Cowper Gland Adenocarcinoma of the Urethra 7 13281 -NCIT:C39865 Littre Gland Adenocarcinoma of the Urethra 7 13282 -NCIT:C39868 Penile Urethral Malignant Neoplasm 7 13283 -NCIT:C39869 Bulbomembranous Urethral Malignant Neoplasm 7 13284 -NCIT:C39870 Prostatic Urethral Malignant Neoplasm 7 13285 -NCIT:C39900 Prostatic Urethra Urothelial Carcinoma 8 13286 -NCIT:C7573 Metastatic Malignant Neoplasm in the Urethra 6 13287 -NCIT:C7639 Regional Malignant Urethral Neoplasm 6 13288 -NCIT:C7640 Posterior Urethral Malignant Neoplasm 6 13289 -NCIT:C7641 Anterior Urethral Malignant Neoplasm 6 13290 -NCIT:C9106 Urethral Carcinoma 6 13291 -NCIT:C115210 Distal Urethral Carcinoma 7 13292 -NCIT:C115334 Proximal Urethral Carcinoma 7 13293 -NCIT:C140457 Urethral Cancer by AJCC v8 Stage 7 13294 -NCIT:C140458 Stage 0a Urethral Cancer AJCC v8 8 13295 -NCIT:C140459 Stage 0is Urethral Cancer AJCC v8 8 13296 -NCIT:C140460 Stage I Urethral Cancer AJCC v8 8 13297 -NCIT:C140461 Stage II Urethral Cancer AJCC v8 8 13298 -NCIT:C140462 Stage III Urethral Cancer AJCC v8 8 13299 -NCIT:C140463 Stage IV Urethral Cancer AJCC v8 8 13300 -NCIT:C140464 Urethral Cancer by AJCC v7 Stage 7 13301 -NCIT:C6195 Stage 0 Urethral Cancer AJCC v7 8 13302 -NCIT:C4531 Stage 0is Urethral Cancer AJCC v7 9 13303 -NCIT:C6196 Stage 0a Urethral Cancer AJCC v7 9 13304 -NCIT:C6197 Stage I Urethral Cancer AJCC v7 8 13305 -NCIT:C6198 Stage II Urethral Cancer AJCC v7 8 13306 -NCIT:C6199 Stage III Urethral Cancer AJCC v7 8 13307 -NCIT:C6200 Stage IV Urethral Cancer AJCC v7 8 13308 -NCIT:C27819 Metastatic Urethral Carcinoma 7 13309 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 13310 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 13311 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 13312 -NCIT:C6165 Urethral Squamous Cell Carcinoma 7 13313 -NCIT:C39862 Human Papillomavirus-Related Urethral Squamous Cell Carcinoma 8 13314 -NCIT:C39874 Urethral Verrucous Carcinoma 8 13315 -NCIT:C6166 Urethral Urothelial Carcinoma 7 13316 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 13317 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 13318 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 13319 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 13320 -NCIT:C158585 Unresectable Urethral Urothelial Carcinoma 8 13321 -NCIT:C176996 Refractory Urethral Urothelial Carcinoma 8 13322 -NCIT:C39900 Prostatic Urethra Urothelial Carcinoma 8 13323 -NCIT:C6167 Urethral Adenocarcinoma 7 13324 -NCIT:C6172 Urethral Clear Cell Adenocarcinoma 8 13325 -NCIT:C7371 Accessory Urethral Gland Adenocarcinoma 8 13326 -NCIT:C180948 Skene Gland Adenocarcinoma of the Urethra 9 13327 -NCIT:C39864 Cowper Gland Adenocarcinoma of the Urethra 9 13328 -NCIT:C39865 Littre Gland Adenocarcinoma of the Urethra 9 13329 -NCIT:C6168 Urethral Undifferentiated Carcinoma 7 13330 -NCIT:C7508 Recurrent Urethral Carcinoma 7 13331 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 13332 -NCIT:C7543 Malignant Ureter Neoplasm 5 13333 -NCIT:C6175 Ureter Lymphoma 6 13334 -NCIT:C7544 Metastatic Malignant Neoplasm in the Ureter 6 13335 -NCIT:C8716 Regional Malignant Ureter Neoplasm 6 13336 -NCIT:C9356 Regional Ureter Carcinoma 7 13337 -NCIT:C8993 Ureter Carcinoma 6 13338 -NCIT:C27818 Metastatic Ureter Carcinoma 7 13339 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 8 13340 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 13341 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 13342 -NCIT:C4830 Ureter Urothelial Carcinoma 7 13343 -NCIT:C140357 Ureter Cancer by AJCC v8 Stage 8 13344 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 9 13345 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 9 13346 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 9 13347 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 9 13348 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 9 13349 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 9 13350 -NCIT:C140378 Ureter Cancer by AJCC v7 Stage 8 13351 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 9 13352 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 10 13353 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 10 13354 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 9 13355 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 9 13356 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 9 13357 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 9 13358 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 8 13359 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 13360 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 13361 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 8 13362 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 8 13363 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 8 13364 -NCIT:C180608 Ureter Urothelial Carcinoma, High Grade 8 13365 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 8 13366 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 8 13367 -NCIT:C6154 Ureter Squamous Cell Carcinoma 7 13368 -NCIT:C6155 Ureter Adenocarcinoma 7 13369 -NCIT:C6159 Ureter Undifferentiated Carcinoma 7 13370 -NCIT:C6176 Ureter Small Cell Neuroendocrine Carcinoma 7 13371 -NCIT:C9255 Recurrent Ureter Carcinoma 7 13372 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 8 13373 -NCIT:C9356 Regional Ureter Carcinoma 7 13374 -NCIT:C7548 Malignant Kidney Neoplasm 5 13375 -NCIT:C120456 Malignant Kidney Neoplasm Except Pelvis 6 13376 -NCIT:C123907 Childhood Malignant Kidney Neoplasm 6 13377 -NCIT:C189244 Childhood Kidney Carcinoma 7 13378 -NCIT:C189248 Childhood SMARCB1-Deficient Kidney Medullary Carcinoma 8 13379 -NCIT:C6568 Childhood Renal Cell Carcinoma 8 13380 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 9 13381 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 9 13382 -NCIT:C189255 Childhood Eosinophilic Solid and Cystic Renal Cell Carcinoma 9 13383 -NCIT:C189260 Childhood Anaplastic Sarcoma of the Kidney 7 13384 -NCIT:C189261 Childhood Kidney Ewing Sarcoma 7 13385 -NCIT:C27730 Childhood Kidney Wilms Tumor 7 13386 -NCIT:C6897 Cystic Partially Differentiated Kidney Nephroblastoma 8 13387 -NCIT:C4264 Clear Cell Sarcoma of the Kidney 7 13388 -NCIT:C6569 Congenital Mesoblastic Nephroma 7 13389 -NCIT:C39814 Classic Congenital Mesoblastic Nephroma 8 13390 -NCIT:C39815 Cellular Congenital Mesoblastic Nephroma 8 13391 -NCIT:C97058 Mixed Congenital Mesoblastic Nephroma 8 13392 -NCIT:C8715 Rhabdoid Tumor of the Kidney 7 13393 -NCIT:C162730 Recurrent Rhabdoid Tumor of the Kidney 8 13394 -NCIT:C162731 Refractory Rhabdoid Tumor of the Kidney 8 13395 -NCIT:C188888 Unresectable Rhabdoid Tumor of the Kidney 8 13396 -NCIT:C37265 Malignant Mixed Epithelial and Stromal Tumor of the Kidney 6 13397 -NCIT:C40407 Kidney Wilms Tumor 6 13398 -NCIT:C27730 Childhood Kidney Wilms Tumor 7 13399 -NCIT:C6897 Cystic Partially Differentiated Kidney Nephroblastoma 8 13400 -NCIT:C38158 Metachronous Kidney Wilms Tumor 7 13401 -NCIT:C6180 Adult Kidney Wilms Tumor 7 13402 -NCIT:C6951 Nonanaplastic Kidney Wilms Tumor 7 13403 -NCIT:C6952 Anaplastic Kidney Wilms Tumor 7 13404 -NCIT:C7840 Stage I Kidney Wilms Tumor 7 13405 -NCIT:C7841 Stage II Kidney Wilms Tumor 7 13406 -NCIT:C7842 Stage III Kidney Wilms Tumor 7 13407 -NCIT:C7843 Stage IV Kidney Wilms Tumor 7 13408 -NCIT:C7844 Stage V Kidney Wilms Tumor 7 13409 -NCIT:C7845 Recurrent Kidney Wilms Tumor 7 13410 -NCIT:C8496 Hereditary Kidney Wilms Tumor 7 13411 -NCIT:C9146 Epithelial Predominant Kidney Wilms Tumor 7 13412 -NCIT:C9147 Blastema Predominant Kidney Wilms Tumor 7 13413 -NCIT:C9148 Stromal Predominant Kidney Wilms Tumor 7 13414 -NCIT:C9149 Mixed Cell Type Kidney Wilms Tumor 7 13415 -NCIT:C4525 Kidney Sarcoma 6 13416 -NCIT:C154496 Anaplastic Sarcoma of the Kidney 7 13417 -NCIT:C189260 Childhood Anaplastic Sarcoma of the Kidney 8 13418 -NCIT:C157737 Kidney Synovial Sarcoma 7 13419 -NCIT:C159205 Kidney Angiosarcoma 7 13420 -NCIT:C159206 Kidney Rhabdomyosarcoma 7 13421 -NCIT:C159208 Kidney Ewing Sarcoma 7 13422 -NCIT:C189261 Childhood Kidney Ewing Sarcoma 8 13423 -NCIT:C4264 Clear Cell Sarcoma of the Kidney 7 13424 -NCIT:C6181 Kidney Extraskeletal Osteosarcoma 7 13425 -NCIT:C6183 Kidney Leiomyosarcoma 7 13426 -NCIT:C6185 Kidney Liposarcoma 7 13427 -NCIT:C7726 Kidney Fibrosarcoma 7 13428 -NCIT:C63532 Kidney Lymphoma 6 13429 -NCIT:C188075 Kidney Burkitt Lymphoma 7 13430 -NCIT:C63533 Kidney Diffuse Large B-Cell Lymphoma 7 13431 -NCIT:C67214 Peripheral Primitive Neuroectodermal Tumor of the Kidney 6 13432 -NCIT:C7525 Malignant Renal Pelvis Neoplasm 6 13433 -NCIT:C6142 Renal Pelvis Carcinoma 7 13434 -NCIT:C163965 Metastatic Renal Pelvis Carcinoma 8 13435 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 13436 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 13437 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 13438 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 13439 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 13440 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 13441 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 13442 -NCIT:C6143 Renal Pelvis Adenocarcinoma 8 13443 -NCIT:C7355 Renal Pelvis Urothelial Carcinoma 8 13444 -NCIT:C140356 Renal Pelvis Cancer by AJCC v8 Stage 9 13445 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 13446 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 10 13447 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 10 13448 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 10 13449 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 10 13450 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 10 13451 -NCIT:C140377 Renal Pelvis Cancer by AJCC v7 Stage 9 13452 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 10 13453 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 10 13454 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 10 13455 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 10 13456 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 10 13457 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 13458 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 13459 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 13460 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 13461 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 13462 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 13463 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 9 13464 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 9 13465 -NCIT:C180607 Renal Pelvis Urothelial Carcinoma, High Grade 9 13466 -NCIT:C6148 Renal Pelvis Papillary Urothelial Carcinoma 9 13467 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 13468 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 10 13469 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 9 13470 -NCIT:C7732 Renal Pelvis Squamous Cell Carcinoma 8 13471 -NCIT:C7549 Metastatic Malignant Neoplasm in the Kidney 6 13472 -NCIT:C185153 Extramedullary Disease in Plasma Cell Myeloma Involving the Kidney 7 13473 -NCIT:C9384 Kidney Carcinoma 6 13474 -NCIT:C159224 Kidney Neuroendocrine Carcinoma 7 13475 -NCIT:C116317 Kidney Small Cell Neuroendocrine Carcinoma 8 13476 -NCIT:C159225 Kidney Large Cell Neuroendocrine Carcinoma 8 13477 -NCIT:C172622 Recurrent Kidney Carcinoma 7 13478 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 8 13479 -NCIT:C162726 Recurrent Kidney Medullary Carcinoma 8 13480 -NCIT:C7825 Recurrent Renal Cell Carcinoma 8 13481 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 9 13482 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 10 13483 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 9 13484 -NCIT:C172623 Refractory Kidney Carcinoma 7 13485 -NCIT:C162727 Refractory Kidney Medullary Carcinoma 8 13486 -NCIT:C165745 Refractory Renal Cell Carcinoma 8 13487 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 9 13488 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 8 13489 -NCIT:C174565 Unresectable Kidney Carcinoma 7 13490 -NCIT:C154545 Unresectable Renal Cell Carcinoma 8 13491 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 13492 -NCIT:C165449 Unresectable Clear Cell Renal Cell Carcinoma 9 13493 -NCIT:C183251 Unresectable Sarcomatoid Renal Cell Carcinoma 9 13494 -NCIT:C190505 Unresectable Papillary Renal Cell Carcinoma 9 13495 -NCIT:C190508 Unresectable Unclassified Renal Cell Carcinoma 9 13496 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 8 13497 -NCIT:C174567 Unresectable Kidney Medullary Carcinoma 8 13498 -NCIT:C189241 Kidney Carcinoma Molecular Subtypes 7 13499 -NCIT:C154494 Renal Cell Carcinoma with MiT Translocations 8 13500 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 9 13501 -NCIT:C27891 TFE3-Rearranged Renal Cell Carcinoma 9 13502 -NCIT:C37872 Renal Cell Carcinoma Associated with t(X;1)(p11.2;q21) 10 13503 -NCIT:C37874 Renal Cell Carcinoma Associated with t(X;1)(p11.2;p34) 10 13504 -NCIT:C37876 Renal Cell Carcinoma Associated with t(X;17)(p11.2;q25) 10 13505 -NCIT:C39802 Renal Cell Carcinoma Associated with inv(X)(p11;q12) 10 13506 -NCIT:C37210 TFEB-Rearranged Renal Cell Carcinoma 9 13507 -NCIT:C156464 Succinate Dehydrogenase-Deficient Renal Cell Carcinoma 8 13508 -NCIT:C164156 Fumarate Hydratase-Deficient Renal Cell Carcinoma 8 13509 -NCIT:C189247 SMARCB1-Deficient Kidney Medullary Carcinoma 8 13510 -NCIT:C189248 Childhood SMARCB1-Deficient Kidney Medullary Carcinoma 9 13511 -NCIT:C189249 ALK-Rearranged Renal Cell Carcinoma 8 13512 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 9 13513 -NCIT:C191375 ELOC-Mutated Renal Cell Carcinoma 8 13514 -NCIT:C189244 Childhood Kidney Carcinoma 7 13515 -NCIT:C189248 Childhood SMARCB1-Deficient Kidney Medullary Carcinoma 8 13516 -NCIT:C6568 Childhood Renal Cell Carcinoma 8 13517 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 9 13518 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 9 13519 -NCIT:C189255 Childhood Eosinophilic Solid and Cystic Renal Cell Carcinoma 9 13520 -NCIT:C27806 Metastatic Kidney Carcinoma 7 13521 -NCIT:C150595 Metastatic Renal Cell Carcinoma 8 13522 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 13523 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 13524 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 13525 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 13526 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 13527 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 13528 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 9 13529 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 13530 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 13531 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 9 13532 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 13533 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 13534 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 9 13535 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 13536 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 13537 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 13538 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 13539 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 13540 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 13541 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 13542 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 13543 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 13544 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 9 13545 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 13546 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 13547 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 9 13548 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 13549 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 13550 -NCIT:C157755 Metastatic Kidney Medullary Carcinoma 8 13551 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 13552 -NCIT:C163965 Metastatic Renal Pelvis Carcinoma 8 13553 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 13554 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 13555 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 13556 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 13557 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 13558 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 13559 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 13560 -NCIT:C172617 Advanced Kidney Carcinoma 8 13561 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 13562 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 13563 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 13564 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 13565 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 13566 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 13567 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 13568 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 13569 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 13570 -NCIT:C172618 Locally Advanced Kidney Carcinoma 8 13571 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 13572 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 13573 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 13574 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 13575 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 13576 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 13577 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 13578 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 13579 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 13580 -NCIT:C39807 Mucinous Tubular and Spindle Cell Carcinoma of the Kidney 7 13581 -NCIT:C6142 Renal Pelvis Carcinoma 7 13582 -NCIT:C163965 Metastatic Renal Pelvis Carcinoma 8 13583 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 13584 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 13585 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 13586 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 13587 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 13588 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 13589 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 13590 -NCIT:C6143 Renal Pelvis Adenocarcinoma 8 13591 -NCIT:C7355 Renal Pelvis Urothelial Carcinoma 8 13592 -NCIT:C140356 Renal Pelvis Cancer by AJCC v8 Stage 9 13593 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 13594 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 10 13595 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 10 13596 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 10 13597 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 10 13598 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 10 13599 -NCIT:C140377 Renal Pelvis Cancer by AJCC v7 Stage 9 13600 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 10 13601 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 10 13602 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 10 13603 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 10 13604 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 10 13605 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 13606 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 13607 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 13608 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 13609 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 13610 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 13611 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 9 13612 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 9 13613 -NCIT:C180607 Renal Pelvis Urothelial Carcinoma, High Grade 9 13614 -NCIT:C6148 Renal Pelvis Papillary Urothelial Carcinoma 9 13615 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 13616 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 10 13617 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 9 13618 -NCIT:C7732 Renal Pelvis Squamous Cell Carcinoma 8 13619 -NCIT:C6194 Collecting Duct Carcinoma 7 13620 -NCIT:C7572 Kidney Medullary Carcinoma 7 13621 -NCIT:C157755 Metastatic Kidney Medullary Carcinoma 8 13622 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 13623 -NCIT:C162726 Recurrent Kidney Medullary Carcinoma 8 13624 -NCIT:C162727 Refractory Kidney Medullary Carcinoma 8 13625 -NCIT:C174567 Unresectable Kidney Medullary Carcinoma 8 13626 -NCIT:C189247 SMARCB1-Deficient Kidney Medullary Carcinoma 8 13627 -NCIT:C189248 Childhood SMARCB1-Deficient Kidney Medullary Carcinoma 9 13628 -NCIT:C9385 Renal Cell Carcinoma 7 13629 -NCIT:C100051 Renal Cell Carcinoma Associated with Neuroblastoma 8 13630 -NCIT:C126303 Tubulocystic Renal Cell Carcinoma 8 13631 -NCIT:C140322 Renal Cell Cancer by AJCC v8 Stage 8 13632 -NCIT:C140323 Stage I Renal Cell Cancer AJCC v8 9 13633 -NCIT:C140324 Stage II Renal Cell Cancer AJCC v8 9 13634 -NCIT:C140325 Stage III Renal Cell Cancer AJCC v8 9 13635 -NCIT:C140326 Stage IV Renal Cell Cancer AJCC v8 9 13636 -NCIT:C150359 Bilateral Synchronous Sporadic Renal Cell Carcinoma 8 13637 -NCIT:C150595 Metastatic Renal Cell Carcinoma 8 13638 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 13639 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 13640 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 13641 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 13642 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 13643 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 13644 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 9 13645 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 13646 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 13647 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 9 13648 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 13649 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 13650 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 9 13651 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 13652 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 13653 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 13654 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 13655 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 13656 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 13657 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 13658 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 13659 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 13660 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 9 13661 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 13662 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 13663 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 9 13664 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 13665 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 13666 -NCIT:C154494 Renal Cell Carcinoma with MiT Translocations 8 13667 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 9 13668 -NCIT:C27891 TFE3-Rearranged Renal Cell Carcinoma 9 13669 -NCIT:C37872 Renal Cell Carcinoma Associated with t(X;1)(p11.2;q21) 10 13670 -NCIT:C37874 Renal Cell Carcinoma Associated with t(X;1)(p11.2;p34) 10 13671 -NCIT:C37876 Renal Cell Carcinoma Associated with t(X;17)(p11.2;q25) 10 13672 -NCIT:C39802 Renal Cell Carcinoma Associated with inv(X)(p11;q12) 10 13673 -NCIT:C37210 TFEB-Rearranged Renal Cell Carcinoma 9 13674 -NCIT:C154545 Unresectable Renal Cell Carcinoma 8 13675 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 13676 -NCIT:C165449 Unresectable Clear Cell Renal Cell Carcinoma 9 13677 -NCIT:C183251 Unresectable Sarcomatoid Renal Cell Carcinoma 9 13678 -NCIT:C190505 Unresectable Papillary Renal Cell Carcinoma 9 13679 -NCIT:C190508 Unresectable Unclassified Renal Cell Carcinoma 9 13680 -NCIT:C154547 Resectable Renal Cell Carcinoma 8 13681 -NCIT:C156464 Succinate Dehydrogenase-Deficient Renal Cell Carcinoma 8 13682 -NCIT:C157718 Acquired Cystic Disease-Associated Renal Cell Carcinoma 8 13683 -NCIT:C164156 Fumarate Hydratase-Deficient Renal Cell Carcinoma 8 13684 -NCIT:C165745 Refractory Renal Cell Carcinoma 8 13685 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 9 13686 -NCIT:C189249 ALK-Rearranged Renal Cell Carcinoma 8 13687 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 9 13688 -NCIT:C189254 Eosinophilic Solid and Cystic Renal Cell Carcinoma 8 13689 -NCIT:C189255 Childhood Eosinophilic Solid and Cystic Renal Cell Carcinoma 9 13690 -NCIT:C191370 Renal Cell Carcinoma, Not Otherwise Specified 8 13691 -NCIT:C191375 ELOC-Mutated Renal Cell Carcinoma 8 13692 -NCIT:C27638 Transplant-Related Renal Cell Carcinoma 8 13693 -NCIT:C27892 Unclassified Renal Cell Carcinoma 8 13694 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 9 13695 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 13696 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 13697 -NCIT:C190508 Unresectable Unclassified Renal Cell Carcinoma 9 13698 -NCIT:C27893 Sarcomatoid Renal Cell Carcinoma 8 13699 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 9 13700 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 13701 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 13702 -NCIT:C183251 Unresectable Sarcomatoid Renal Cell Carcinoma 9 13703 -NCIT:C39789 Hereditary Renal Cell Carcinoma 8 13704 -NCIT:C36260 Hereditary Clear Cell Renal Cell Carcinoma 9 13705 -NCIT:C39790 Renal Cell Carcinoma with Constitutional Chromosome 3 Translocations 9 13706 -NCIT:C51302 Hereditary Leiomyomatosis and Renal Cell Carcinoma 9 13707 -NCIT:C9222 Hereditary Papillary Renal Cell Carcinoma 9 13708 -NCIT:C4033 Clear Cell Renal Cell Carcinoma 8 13709 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 9 13710 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 10 13711 -NCIT:C157614 BAP1-Mutant Clear Cell Renal Cell Carcinoma 9 13712 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 9 13713 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 13714 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 13715 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 9 13716 -NCIT:C165449 Unresectable Clear Cell Renal Cell Carcinoma 9 13717 -NCIT:C35851 Grade 1 Clear Cell Renal Cell Carcinoma 9 13718 -NCIT:C35852 Grade 2 Clear Cell Renal Cell Carcinoma 9 13719 -NCIT:C35853 Grade 3 Clear Cell Renal Cell Carcinoma 9 13720 -NCIT:C35854 Grade 4 Clear Cell Renal Cell Carcinoma 9 13721 -NCIT:C36260 Hereditary Clear Cell Renal Cell Carcinoma 9 13722 -NCIT:C36261 Non-Hereditary Clear Cell Renal Cell Carcinoma 9 13723 -NCIT:C4146 Chromophobe Renal Cell Carcinoma 8 13724 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 9 13725 -NCIT:C155951 Chromophobe Renal Cell Carcinoma Associated with Birt-Hogg-Dube Syndrome 9 13726 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 9 13727 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 13728 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 13729 -NCIT:C27888 Classic Variant of Chromophobe Renal Cell Carcinoma 9 13730 -NCIT:C27889 Eosinophilic Variant of Chromophobe Renal Cell Carcinoma 9 13731 -NCIT:C6568 Childhood Renal Cell Carcinoma 8 13732 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 9 13733 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 9 13734 -NCIT:C189255 Childhood Eosinophilic Solid and Cystic Renal Cell Carcinoma 9 13735 -NCIT:C6975 Papillary Renal Cell Carcinoma 8 13736 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 9 13737 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 13738 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 13739 -NCIT:C190505 Unresectable Papillary Renal Cell Carcinoma 9 13740 -NCIT:C27886 Type 1 Papillary Renal Cell Carcinoma 9 13741 -NCIT:C27887 Type 2 Papillary Renal Cell Carcinoma 9 13742 -NCIT:C27890 Sporadic Papillary Renal Cell Carcinoma 9 13743 -NCIT:C9222 Hereditary Papillary Renal Cell Carcinoma 9 13744 -NCIT:C7825 Recurrent Renal Cell Carcinoma 8 13745 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 9 13746 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 10 13747 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 9 13748 -NCIT:C90343 Renal Cell Cancer by AJCC v6 Stage 8 13749 -NCIT:C4003 Stage IV Renal Cell Cancer AJCC v6 9 13750 -NCIT:C7823 Stage I Renal Cell Cancer AJCC v6 and v7 9 13751 -NCIT:C7824 Stage II Renal Cell Cancer AJCC v6 9 13752 -NCIT:C9220 Stage III Renal Cell Cancer AJCC v6 9 13753 -NCIT:C91201 Renal Cell Cancer by AJCC v7 Stage 8 13754 -NCIT:C7823 Stage I Renal Cell Cancer AJCC v6 and v7 9 13755 -NCIT:C89301 Stage II Renal Cell Cancer AJCC v7 9 13756 -NCIT:C89302 Stage III Renal Cell Cancer AJCC v7 9 13757 -NCIT:C89303 Stage IV Renal Cell Cancer AJCC v7 9 13758 -NCIT:C9334 Malignant Bladder Neoplasm 5 13759 -NCIT:C159663 Bladder Melanoma 6 13760 -NCIT:C159677 Bladder Malignant PEComa 6 13761 -NCIT:C4669 Bladder Sarcoma 6 13762 -NCIT:C156277 Bladder Alveolar Soft Part Sarcoma 7 13763 -NCIT:C159667 Bladder Rhabdomyosarcoma 7 13764 -NCIT:C159668 Bladder Embryonal Rhabdomyosarcoma 8 13765 -NCIT:C159669 Bladder Alveolar Rhabdomyosarcoma 8 13766 -NCIT:C159670 Bladder Leiomyosarcoma 7 13767 -NCIT:C159671 Bladder Angiosarcoma 7 13768 -NCIT:C4912 Bladder Carcinoma 6 13769 -NCIT:C118816 Childhood Bladder Carcinoma 7 13770 -NCIT:C140416 Bladder Cancer by AJCC v8 Stage 7 13771 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 8 13772 -NCIT:C140418 Stage 0is Bladder Cancer AJCC v8 8 13773 -NCIT:C140419 Stage I Bladder Cancer AJCC v8 8 13774 -NCIT:C140420 Stage II Bladder Cancer AJCC v8 8 13775 -NCIT:C140421 Stage III Bladder Cancer AJCC v8 8 13776 -NCIT:C140422 Stage IIIA Bladder Cancer AJCC v8 9 13777 -NCIT:C140423 Stage IIIB Bladder Cancer AJCC v8 9 13778 -NCIT:C140424 Stage IV Bladder Cancer AJCC v8 8 13779 -NCIT:C140425 Stage IVA Bladder Cancer AJCC v8 9 13780 -NCIT:C140426 Stage IVB Bladder Cancer AJCC v8 9 13781 -NCIT:C150316 Refractory Bladder Carcinoma 7 13782 -NCIT:C148286 Refractory Stage 0 Bladder Cancer AJCC v6 and v7 8 13783 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 8 13784 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 13785 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 8 13786 -NCIT:C150570 Invasive Bladder Carcinoma 7 13787 -NCIT:C150572 Muscle Invasive Bladder Carcinoma 8 13788 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 9 13789 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 10 13790 -NCIT:C165716 Invasive Bladder Mixed Carcinoma 8 13791 -NCIT:C27474 Non-Muscle Invasive Bladder Carcinoma 8 13792 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 9 13793 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 13794 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 10 13795 -NCIT:C190772 Metastatic Non-Muscle Invasive Bladder Carcinoma 9 13796 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 10 13797 -NCIT:C190774 Recurrent Non-Muscle Invasive Bladder Carcinoma 9 13798 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 13799 -NCIT:C27885 Invasive Bladder Urothelial Carcinoma 8 13800 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 9 13801 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 13802 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 10 13803 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 9 13804 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 10 13805 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 9 13806 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 9 13807 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 9 13808 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 9 13809 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 13810 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 13811 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 9 13812 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 9 13813 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 9 13814 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 9 13815 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 10 13816 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 9 13817 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 9 13818 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 9 13819 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 10 13820 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 9 13821 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 10 13822 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 10 13823 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 10 13824 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 13825 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 10 13826 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 9 13827 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 10 13828 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 9 13829 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 10 13830 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 13831 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 13832 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 13833 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 9 13834 -NCIT:C156062 Metastatic Bladder Carcinoma 7 13835 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 13836 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 13837 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 13838 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 13839 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 13840 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 13841 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 13842 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 13843 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 13844 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 13845 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 13846 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 8 13847 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 8 13848 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 8 13849 -NCIT:C167071 Locally Advanced Bladder Carcinoma 8 13850 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 13851 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 9 13852 -NCIT:C167338 Advanced Bladder Carcinoma 8 13853 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 13854 -NCIT:C190772 Metastatic Non-Muscle Invasive Bladder Carcinoma 8 13855 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 9 13856 -NCIT:C157759 Bladder Neuroendocrine Carcinoma 7 13857 -NCIT:C157760 Bladder Large Cell Neuroendocrine Carcinoma 8 13858 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 9 13859 -NCIT:C9461 Bladder Small Cell Neuroendocrine Carcinoma 8 13860 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 9 13861 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 9 13862 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 9 13863 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 9 13864 -NCIT:C159542 Bladder Endometrioid Adenocarcinoma 7 13865 -NCIT:C160158 Carcinoma Arising in Bladder Diverticulum 7 13866 -NCIT:C167075 Unresectable Bladder Carcinoma 7 13867 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 8 13868 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 8 13869 -NCIT:C39842 Urachal Carcinoma 7 13870 -NCIT:C39843 Urachal Adenocarcinoma 8 13871 -NCIT:C39844 Urachal Urothelial Carcinoma 8 13872 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 13873 -NCIT:C39845 Urachal Squamous Cell Carcinoma 8 13874 -NCIT:C39851 Bladder Urothelial Carcinoma 7 13875 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 13876 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 13877 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 13878 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 13879 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 13880 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 13881 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 13882 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 13883 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 13884 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 13885 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 13886 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 13887 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 13888 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 8 13889 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 8 13890 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 13891 -NCIT:C177531 Bladder Flat Urothelial Carcinoma 8 13892 -NCIT:C37266 Bladder Urothelial Carcinoma In Situ 9 13893 -NCIT:C140418 Stage 0is Bladder Cancer AJCC v8 10 13894 -NCIT:C3644 Stage 0is Bladder Urothelial Carcinoma AJCC v6 and v7 10 13895 -NCIT:C180609 Bladder Urothelial Carcinoma, High Grade 8 13896 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 9 13897 -NCIT:C188032 Resectable Bladder Urothelial Carcinoma 8 13898 -NCIT:C27634 Transplant-Related Bladder Urothelial Carcinoma 8 13899 -NCIT:C27885 Invasive Bladder Urothelial Carcinoma 8 13900 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 9 13901 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 13902 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 10 13903 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 9 13904 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 10 13905 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 9 13906 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 9 13907 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 9 13908 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 9 13909 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 13910 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 13911 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 9 13912 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 9 13913 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 9 13914 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 9 13915 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 10 13916 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 9 13917 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 9 13918 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 9 13919 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 10 13920 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 9 13921 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 10 13922 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 10 13923 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 10 13924 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 13925 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 10 13926 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 9 13927 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 10 13928 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 9 13929 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 10 13930 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 13931 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 13932 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 13933 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 9 13934 -NCIT:C39844 Urachal Urothelial Carcinoma 8 13935 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 13936 -NCIT:C7383 Bladder Papillary Urothelial Carcinoma 8 13937 -NCIT:C158382 Bladder Non-Invasive Papillary Urothelial Carcinoma 9 13938 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 10 13939 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 10 13940 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 10 13941 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 10 13942 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 13943 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 13944 -NCIT:C4031 Bladder Squamous Cell Carcinoma 7 13945 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 8 13946 -NCIT:C27768 Schistosoma Hematobium-Related Bladder Squamous Cell Carcinoma 8 13947 -NCIT:C39833 Schistosoma Hematobium-Related Bladder Verrucous Carcinoma 9 13948 -NCIT:C39832 Bladder Verrucous Carcinoma 8 13949 -NCIT:C39833 Schistosoma Hematobium-Related Bladder Verrucous Carcinoma 9 13950 -NCIT:C39845 Urachal Squamous Cell Carcinoma 8 13951 -NCIT:C4994 Stage II Bladder Squamous Cell Carcinoma AJCC v6 and v7 8 13952 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 8 13953 -NCIT:C8903 Stage 0 Bladder Squamous Cell Carcinoma AJCC v6 and v7 8 13954 -NCIT:C8904 Stage I Squamous Cell Carcinoma of the Bladder AJCC v6 and v7 8 13955 -NCIT:C8905 Stage III Bladder Squamous Cell Carcinoma AJCC v6 and v7 8 13956 -NCIT:C8906 Stage IV Bladder Squamous Cell Carcinoma AJCC v7 8 13957 -NCIT:C4032 Bladder Adenocarcinoma 7 13958 -NCIT:C39835 Bladder Enteric Type Adenocarcinoma 8 13959 -NCIT:C39836 Bladder Adenocarcinoma, Not Otherwise Specified 8 13960 -NCIT:C39837 Bladder Mucinous Adenocarcinoma 8 13961 -NCIT:C39838 Bladder Hepatoid Adenocarcinoma 8 13962 -NCIT:C39839 Bladder Mixed Adenocarcinoma 8 13963 -NCIT:C39843 Urachal Adenocarcinoma 8 13964 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 8 13965 -NCIT:C6163 Bladder Signet Ring Cell Adenocarcinoma 8 13966 -NCIT:C8894 Stage 0 Bladder Adenocarcinoma AJCC v6 and v7 8 13967 -NCIT:C8895 Stage I Bladder Adenocarcinoma AJCC v6 and v7 8 13968 -NCIT:C8896 Stage II Bladder Adenocarcinoma AJCC v6 and v7 8 13969 -NCIT:C8897 Stage III Bladder Adenocarcinoma AJCC v6 and v7 8 13970 -NCIT:C8898 Stage IV Bladder Adenocarcinoma AJCC v7 8 13971 -NCIT:C6179 Bladder Clear Cell Adenocarcinoma 7 13972 -NCIT:C39847 Bladder Tubulo-Cystic Clear Cell Adenocarcinoma 8 13973 -NCIT:C39848 Bladder Papillary Clear Cell Adenocarcinoma 8 13974 -NCIT:C39849 Bladder Diffuse Clear Cell Adenocarcinoma 8 13975 -NCIT:C7899 Recurrent Bladder Carcinoma 7 13976 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 13977 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 13978 -NCIT:C190774 Recurrent Non-Muscle Invasive Bladder Carcinoma 8 13979 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 13980 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 13981 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 8 13982 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 8 13983 -NCIT:C90344 Bladder Cancer by AJCC v6 Stage 7 13984 -NCIT:C7895 Stage 0 Bladder Cancer AJCC v6 and v7 8 13985 -NCIT:C148286 Refractory Stage 0 Bladder Cancer AJCC v6 and v7 9 13986 -NCIT:C6188 Stage 0 Bladder Urothelial Carcinoma AJCC v6 and v7 9 13987 -NCIT:C3644 Stage 0is Bladder Urothelial Carcinoma AJCC v6 and v7 10 13988 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 10 13989 -NCIT:C8894 Stage 0 Bladder Adenocarcinoma AJCC v6 and v7 9 13990 -NCIT:C8903 Stage 0 Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 13991 -NCIT:C7896 Stage I Bladder Cancer AJCC v6 and v7 8 13992 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 13993 -NCIT:C8895 Stage I Bladder Adenocarcinoma AJCC v6 and v7 9 13994 -NCIT:C8899 Stage I Bladder Cancer with Carcinoma In Situ 9 13995 -NCIT:C8901 Stage I Bladder Cancer without Carcinoma In Situ 9 13996 -NCIT:C8904 Stage I Squamous Cell Carcinoma of the Bladder AJCC v6 and v7 9 13997 -NCIT:C7897 Stage II Bladder Cancer AJCC v6 and v7 8 13998 -NCIT:C4994 Stage II Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 13999 -NCIT:C8896 Stage II Bladder Adenocarcinoma AJCC v6 and v7 9 14000 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 14001 -NCIT:C7898 Stage III Bladder Cancer AJCC v6 and v7 8 14002 -NCIT:C8897 Stage III Bladder Adenocarcinoma AJCC v6 and v7 9 14003 -NCIT:C8905 Stage III Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 14004 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 14005 -NCIT:C7900 Stage IV Bladder Cancer AJCC v6 8 14006 -NCIT:C91202 Bladder Cancer by AJCC v7 Stage 7 14007 -NCIT:C7895 Stage 0 Bladder Cancer AJCC v6 and v7 8 14008 -NCIT:C148286 Refractory Stage 0 Bladder Cancer AJCC v6 and v7 9 14009 -NCIT:C6188 Stage 0 Bladder Urothelial Carcinoma AJCC v6 and v7 9 14010 -NCIT:C3644 Stage 0is Bladder Urothelial Carcinoma AJCC v6 and v7 10 14011 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 10 14012 -NCIT:C8894 Stage 0 Bladder Adenocarcinoma AJCC v6 and v7 9 14013 -NCIT:C8903 Stage 0 Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 14014 -NCIT:C7896 Stage I Bladder Cancer AJCC v6 and v7 8 14015 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 14016 -NCIT:C8895 Stage I Bladder Adenocarcinoma AJCC v6 and v7 9 14017 -NCIT:C8899 Stage I Bladder Cancer with Carcinoma In Situ 9 14018 -NCIT:C8901 Stage I Bladder Cancer without Carcinoma In Situ 9 14019 -NCIT:C8904 Stage I Squamous Cell Carcinoma of the Bladder AJCC v6 and v7 9 14020 -NCIT:C7897 Stage II Bladder Cancer AJCC v6 and v7 8 14021 -NCIT:C4994 Stage II Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 14022 -NCIT:C8896 Stage II Bladder Adenocarcinoma AJCC v6 and v7 9 14023 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 14024 -NCIT:C7898 Stage III Bladder Cancer AJCC v6 and v7 8 14025 -NCIT:C8897 Stage III Bladder Adenocarcinoma AJCC v6 and v7 9 14026 -NCIT:C8905 Stage III Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 14027 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 14028 -NCIT:C89366 Stage IV Bladder Cancer AJCC v7 8 14029 -NCIT:C8898 Stage IV Bladder Adenocarcinoma AJCC v7 9 14030 -NCIT:C8906 Stage IV Bladder Squamous Cell Carcinoma AJCC v7 9 14031 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 9 14032 -NCIT:C6164 Bladder Lymphoma 6 14033 -NCIT:C39878 Bladder Mucosa-Associated Lymphoid Tissue Lymphoma 7 14034 -NCIT:C6416 Metastatic Bladder Paraganglioma 6 14035 -NCIT:C7650 Metastatic Malignant Neoplasm in the Bladder 6 14036 -NCIT:C9266 Recurrent Malignant Bladder Neoplasm 6 14037 -NCIT:C7899 Recurrent Bladder Carcinoma 7 14038 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 14039 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 14040 -NCIT:C190774 Recurrent Non-Muscle Invasive Bladder Carcinoma 8 14041 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 14042 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 14043 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 8 14044 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 8 14045 -NCIT:C3674 Reproductive System Neoplasm 3 14046 -NCIT:C3053 Female Reproductive System Neoplasm 4 14047 -NCIT:C181941 Female Reproductive System Smooth Muscle Tumor of Uncertain Malignant Potential 5 14048 -NCIT:C179362 Ovarian Smooth Muscle Tumor of Uncertain Malignant Potential 6 14049 -NCIT:C181939 Vulvar Smooth Muscle Tumor of Uncertain Malignant Potential 6 14050 -NCIT:C181940 Vaginal Smooth Muscle Tumor of Uncertain Malignant Potential 6 14051 -NCIT:C40177 Uterine Corpus Smooth Muscle Tumor of Uncertain Malignant Potential 6 14052 -NCIT:C180540 Uterine Corpus Spindle Smooth Muscle Tumor of Uncertain Malignant Potential 7 14053 -NCIT:C180541 Uterine Corpus Myxoid Smooth Muscle Tumor of Uncertain Malignant Potential 7 14054 -NCIT:C180542 Uterine Corpus Epithelioid Smooth Muscle Tumor of Uncertain Malignant Potential 7 14055 -NCIT:C3032 Fallopian Tube Neoplasm 5 14056 -NCIT:C40102 Fallopian Tube Serous Neoplasm 6 14057 -NCIT:C179738 Serous Tubal Intraepithelial Lesion 7 14058 -NCIT:C40099 Fallopian Tube Serous Adenocarcinoma 7 14059 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 8 14060 -NCIT:C126456 Fallopian Tube High Grade Serous Adenocarcinoma 8 14061 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 9 14062 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 9 14063 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 9 14064 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 9 14065 -NCIT:C40107 Borderline Fallopian Tube Serous Tumor 7 14066 -NCIT:C40113 Fallopian Tube Serous Adenofibroma 7 14067 -NCIT:C40114 Fallopian Tube Serous Cystadenofibroma 8 14068 -NCIT:C40106 Borderline Fallopian Tube Neoplasm 6 14069 -NCIT:C40107 Borderline Fallopian Tube Serous Tumor 7 14070 -NCIT:C40108 Borderline Fallopian Tube Mucinous Tumor 7 14071 -NCIT:C40110 Borderline Fallopian Tube Endometrioid Tumor 7 14072 -NCIT:C40109 Fallopian Tube Mucinous Neoplasm 6 14073 -NCIT:C40103 Fallopian Tube Mucinous Adenocarcinoma 7 14074 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 8 14075 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 8 14076 -NCIT:C40108 Borderline Fallopian Tube Mucinous Tumor 7 14077 -NCIT:C40111 Fallopian Tube Endometrioid Tumor 6 14078 -NCIT:C40110 Borderline Fallopian Tube Endometrioid Tumor 7 14079 -NCIT:C40115 Fallopian Tube Endometrioid Polyp 7 14080 -NCIT:C40124 Fallopian Tube Carcinosarcoma 7 14081 -NCIT:C6279 Fallopian Tube Endometrioid Adenocarcinoma 7 14082 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 8 14083 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 8 14084 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 8 14085 -NCIT:C40126 Fallopian Tube Soft Tissue Neoplasm 6 14086 -NCIT:C40125 Fallopian Tube Adenosarcoma 7 14087 -NCIT:C40127 Fallopian Tube Leiomyoma 7 14088 -NCIT:C40128 Fallopian Tube Leiomyosarcoma 7 14089 -NCIT:C40130 Fallopian Tube Germ Cell Tumor 6 14090 -NCIT:C40131 Fallopian Tube Teratoma 7 14091 -NCIT:C4517 Benign Fallopian Tube Neoplasm 6 14092 -NCIT:C40112 Fallopian Tube Serous Papilloma 7 14093 -NCIT:C40113 Fallopian Tube Serous Adenofibroma 7 14094 -NCIT:C40114 Fallopian Tube Serous Cystadenofibroma 8 14095 -NCIT:C40116 Fallopian Tube Metaplastic Papillary Tumor 7 14096 -NCIT:C40127 Fallopian Tube Leiomyoma 7 14097 -NCIT:C40129 Fallopian Tube Adenomatoid Tumor 7 14098 -NCIT:C7480 Malignant Fallopian Tube Neoplasm 6 14099 -NCIT:C126464 Fallopian Tube Lymphoma 7 14100 -NCIT:C3867 Fallopian Tube Carcinoma 7 14101 -NCIT:C115429 Recurrent Fallopian Tube Carcinoma 8 14102 -NCIT:C170750 Recurrent Platinum-Resistant Fallopian Tube Carcinoma 9 14103 -NCIT:C170755 Recurrent Fallopian Tube Undifferentiated Carcinoma 9 14104 -NCIT:C170757 Recurrent Fallopian Tube Transitional Cell Carcinoma 9 14105 -NCIT:C170766 Recurrent Fallopian Tube Adenocarcinoma 9 14106 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 10 14107 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 10 14108 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 10 14109 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 10 14110 -NCIT:C191395 Recurrent Platinum-Sensitive Fallopian Tube Carcinoma 9 14111 -NCIT:C139983 Fallopian Tube Cancer by AJCC v8 Stage 8 14112 -NCIT:C139984 Stage I Fallopian Tube Cancer AJCC v8 9 14113 -NCIT:C139985 Stage IA Fallopian Tube Cancer AJCC v8 10 14114 -NCIT:C139986 Stage IB Fallopian Tube Cancer AJCC v8 10 14115 -NCIT:C139987 Stage IC Fallopian Tube Cancer AJCC v8 10 14116 -NCIT:C139988 Stage II Fallopian Tube Cancer AJCC v8 9 14117 -NCIT:C139989 Stage IIA Fallopian Tube Cancer AJCC v8 10 14118 -NCIT:C139990 Stage IIB Fallopian Tube Cancer AJCC v8 10 14119 -NCIT:C139991 Stage III Fallopian Tube Cancer AJCC v8 9 14120 -NCIT:C139992 Stage IIIA Fallopian Tube Cancer AJCC v8 10 14121 -NCIT:C139993 Stage IIIA1 Fallopian Tube Cancer AJCC v8 11 14122 -NCIT:C139994 Stage IIIA2 Fallopian Tube Cancer AJCC v8 11 14123 -NCIT:C139995 Stage IIIB Fallopian Tube Cancer AJCC v8 10 14124 -NCIT:C139996 Stage IIIC Fallopian Tube Cancer AJCC v8 10 14125 -NCIT:C139997 Stage IV Fallopian Tube Cancer AJCC v8 9 14126 -NCIT:C139998 Stage IVA Fallopian Tube Cancer AJCC v8 10 14127 -NCIT:C139999 Stage IVB Fallopian Tube Cancer AJCC v8 10 14128 -NCIT:C152047 Refractory Fallopian Tube Carcinoma 8 14129 -NCIT:C157621 Platinum-Resistant Fallopian Tube Carcinoma 9 14130 -NCIT:C170750 Recurrent Platinum-Resistant Fallopian Tube Carcinoma 10 14131 -NCIT:C170971 Refractory Fallopian Tube Adenocarcinoma 9 14132 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 10 14133 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 10 14134 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 10 14135 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 10 14136 -NCIT:C178674 Refractory Fallopian Tube Transitional Cell Carcinoma 9 14137 -NCIT:C178675 Refractory Fallopian Tube Undifferentiated Carcinoma 9 14138 -NCIT:C178698 Platinum-Refractory Fallopian Tube Carcinoma 9 14139 -NCIT:C156063 Metastatic Fallopian Tube Carcinoma 8 14140 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 9 14141 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 10 14142 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 9 14143 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 9 14144 -NCIT:C160873 Platinum-Sensitive Fallopian Tube Carcinoma 8 14145 -NCIT:C191395 Recurrent Platinum-Sensitive Fallopian Tube Carcinoma 9 14146 -NCIT:C170969 Unresectable Fallopian Tube Carcinoma 8 14147 -NCIT:C170970 Unresectable Fallopian Tube Adenocarcinoma 9 14148 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 10 14149 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 10 14150 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 9 14151 -NCIT:C40104 Fallopian Tube Transitional Cell Carcinoma 8 14152 -NCIT:C170757 Recurrent Fallopian Tube Transitional Cell Carcinoma 9 14153 -NCIT:C178674 Refractory Fallopian Tube Transitional Cell Carcinoma 9 14154 -NCIT:C40455 Hereditary Fallopian Tube Carcinoma 8 14155 -NCIT:C6265 Fallopian Tube Adenocarcinoma 8 14156 -NCIT:C170766 Recurrent Fallopian Tube Adenocarcinoma 9 14157 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 10 14158 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 10 14159 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 10 14160 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 10 14161 -NCIT:C170970 Unresectable Fallopian Tube Adenocarcinoma 9 14162 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 10 14163 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 10 14164 -NCIT:C170971 Refractory Fallopian Tube Adenocarcinoma 9 14165 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 10 14166 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 10 14167 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 10 14168 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 10 14169 -NCIT:C40099 Fallopian Tube Serous Adenocarcinoma 9 14170 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 10 14171 -NCIT:C126456 Fallopian Tube High Grade Serous Adenocarcinoma 10 14172 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 11 14173 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 11 14174 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 11 14175 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 11 14176 -NCIT:C40103 Fallopian Tube Mucinous Adenocarcinoma 9 14177 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 10 14178 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 10 14179 -NCIT:C40105 Stage 0 Fallopian Tube Cancer AJCC v7 9 14180 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 10 14181 -NCIT:C6279 Fallopian Tube Endometrioid Adenocarcinoma 9 14182 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 10 14183 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 10 14184 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 10 14185 -NCIT:C6280 Fallopian Tube Clear Cell Adenocarcinoma 9 14186 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 10 14187 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 10 14188 -NCIT:C6278 Fallopian Tube Gestational Choriocarcinoma 8 14189 -NCIT:C6281 Fallopian Tube Undifferentiated Carcinoma 8 14190 -NCIT:C170755 Recurrent Fallopian Tube Undifferentiated Carcinoma 9 14191 -NCIT:C178675 Refractory Fallopian Tube Undifferentiated Carcinoma 9 14192 -NCIT:C6282 Fallopian Tube Squamous Cell Carcinoma 8 14193 -NCIT:C90499 Fallopian Tube Cancer by AJCC v6 Stage 8 14194 -NCIT:C8720 Stage I Fallopian Tube Cancer AJCC v6 and v7 9 14195 -NCIT:C6269 Stage IA Fallopian Tube Cancer AJCC v6 and v7 10 14196 -NCIT:C6270 Stage IB Fallopian Tube Cancer AJCC v6 and v7 10 14197 -NCIT:C6271 Stage IC Fallopian Tube Cancer AJCC v6 and v7 10 14198 -NCIT:C8721 Stage II Fallopian Tube Cancer AJCC v6 and v7 9 14199 -NCIT:C6272 Stage IIA Fallopian Tube Cancer AJCC v6 and v7 10 14200 -NCIT:C6276 Stage IIC Fallopian Tube Cancer AJCC v6 and v7 10 14201 -NCIT:C6277 Stage IIB Fallopian Tube Cancer AJCC v6 and v7 10 14202 -NCIT:C8722 Stage III Fallopian Tube Cancer AJCC v6 9 14203 -NCIT:C8963 Stage IV Fallopian Tube Cancer AJCC v6 and v7 9 14204 -NCIT:C91219 Fallopian Tube Cancer by AJCC v7 Stage 8 14205 -NCIT:C40105 Stage 0 Fallopian Tube Cancer AJCC v7 9 14206 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 10 14207 -NCIT:C8720 Stage I Fallopian Tube Cancer AJCC v6 and v7 9 14208 -NCIT:C6269 Stage IA Fallopian Tube Cancer AJCC v6 and v7 10 14209 -NCIT:C6270 Stage IB Fallopian Tube Cancer AJCC v6 and v7 10 14210 -NCIT:C6271 Stage IC Fallopian Tube Cancer AJCC v6 and v7 10 14211 -NCIT:C8721 Stage II Fallopian Tube Cancer AJCC v6 and v7 9 14212 -NCIT:C6272 Stage IIA Fallopian Tube Cancer AJCC v6 and v7 10 14213 -NCIT:C6276 Stage IIC Fallopian Tube Cancer AJCC v6 and v7 10 14214 -NCIT:C6277 Stage IIB Fallopian Tube Cancer AJCC v6 and v7 10 14215 -NCIT:C8963 Stage IV Fallopian Tube Cancer AJCC v6 and v7 9 14216 -NCIT:C89692 Stage III Fallopian Tube Cancer AJCC v7 9 14217 -NCIT:C6273 Stage IIIA Fallopian Tube Cancer AJCC v7 10 14218 -NCIT:C6274 Stage IIIB Fallopian Tube Cancer AJCC v7 10 14219 -NCIT:C6275 Stage IIIC Fallopian Tube Cancer AJCC v7 10 14220 -NCIT:C40124 Fallopian Tube Carcinosarcoma 7 14221 -NCIT:C40125 Fallopian Tube Adenosarcoma 7 14222 -NCIT:C40128 Fallopian Tube Leiomyosarcoma 7 14223 -NCIT:C3435 Uterine Neoplasm 5 14224 -NCIT:C2940 Cervical Neoplasm 6 14225 -NCIT:C128041 Cervical Neuroendocrine Neoplasm 7 14226 -NCIT:C128045 Cervical Neuroendocrine Carcinoma 8 14227 -NCIT:C40214 Cervical Large Cell Neuroendocrine Carcinoma 9 14228 -NCIT:C7982 Cervical Small Cell Neuroendocrine Carcinoma 9 14229 -NCIT:C188221 Cervical Neuroendocrine Tumor 8 14230 -NCIT:C128043 Cervical Neuroendocrine Tumor G1 9 14231 -NCIT:C128044 Cervical Neuroendocrine Tumor G2 9 14232 -NCIT:C180879 Cervical Germ Cell Tumor 7 14233 -NCIT:C128055 Cervical Yolk Sac Tumor 8 14234 -NCIT:C3607 Benign Cervical Neoplasm 7 14235 -NCIT:C128053 Benign Cervical Soft Tissue Neoplasm 8 14236 -NCIT:C128046 Cervical Leiomyoma 9 14237 -NCIT:C40266 Cervical Rhabdomyoma 9 14238 -NCIT:C34584 Endocervical Polyp 8 14239 -NCIT:C6856 Cervical Microglandular Polyp 9 14240 -NCIT:C40215 Cervical Mullerian Papilloma 8 14241 -NCIT:C40227 Benign Cervical Mixed Epithelial and Mesenchymal Neoplasm 8 14242 -NCIT:C40230 Cervical Adenofibroma 9 14243 -NCIT:C40231 Cervical Adenomyoma 9 14244 -NCIT:C40232 Cervical Adenomyoma, Endocervical-Type 10 14245 -NCIT:C40233 Cervical Adenomyoma, Mesonephric-Type 10 14246 -NCIT:C40234 Cervical Atypical Polypoid Adenomyoma 10 14247 -NCIT:C40240 Cervical Blue Nevus 8 14248 -NCIT:C6342 Cervical Squamous Papilloma 8 14249 -NCIT:C3782 Cervical Intraepithelial Neoplasia 7 14250 -NCIT:C4630 Low Grade Cervical Intraepithelial Neoplasia 8 14251 -NCIT:C40196 Low Grade Cervical Squamous Intraepithelial Neoplasia 9 14252 -NCIT:C40199 Cervical Squamous Intraepithelial Neoplasia 1 10 14253 -NCIT:C7674 Low Grade Cervical Glandular Intraepithelial Neoplasia 9 14254 -NCIT:C7346 Cervical Squamous Intraepithelial Neoplasia 8 14255 -NCIT:C40196 Low Grade Cervical Squamous Intraepithelial Neoplasia 9 14256 -NCIT:C40199 Cervical Squamous Intraepithelial Neoplasia 1 10 14257 -NCIT:C40197 High Grade Cervical Squamous Intraepithelial Neoplasia 9 14258 -NCIT:C40198 Cervical Squamous Intraepithelial Neoplasia 2 10 14259 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 10 14260 -NCIT:C7670 High Grade Cervical Intraepithelial Neoplasia 8 14261 -NCIT:C4000 Stage 0 Cervical Cancer AJCC v6 9 14262 -NCIT:C40197 High Grade Cervical Squamous Intraepithelial Neoplasia 9 14263 -NCIT:C40198 Cervical Squamous Intraepithelial Neoplasia 2 10 14264 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 10 14265 -NCIT:C7675 High Grade Cervical Glandular Intraepithelial Neoplasia 9 14266 -NCIT:C4520 Cervical Adenocarcinoma In Situ 10 14267 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 11 14268 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 11 14269 -NCIT:C89550 Stage 0 Cervical Cancer AJCC v7 9 14270 -NCIT:C4520 Cervical Adenocarcinoma In Situ 10 14271 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 11 14272 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 11 14273 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 10 14274 -NCIT:C94676 Cervical Intraepithelial Neoplasia Grade 2/3 9 14275 -NCIT:C7673 Cervical Glandular Intraepithelial Neoplasia 8 14276 -NCIT:C7674 Low Grade Cervical Glandular Intraepithelial Neoplasia 9 14277 -NCIT:C7675 High Grade Cervical Glandular Intraepithelial Neoplasia 9 14278 -NCIT:C4520 Cervical Adenocarcinoma In Situ 10 14279 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 11 14280 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 11 14281 -NCIT:C40195 Cervical Squamous Neoplasm 7 14282 -NCIT:C4028 Cervical Squamous Cell Carcinoma 8 14283 -NCIT:C136649 Recurrent Cervical Squamous Cell Carcinoma 9 14284 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 9 14285 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 10 14286 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 10 14287 -NCIT:C174025 Unresectable Cervical Squamous Cell Carcinoma 9 14288 -NCIT:C180839 Cervical Squamous Cell Carcinoma, Not Otherwise Specified 9 14289 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 10 14290 -NCIT:C180841 Human Papillomavirus-Independent Cervical Squamous Cell Carcinoma 9 14291 -NCIT:C181034 Refractory Cervical Squamous Cell Carcinoma 9 14292 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 10 14293 -NCIT:C27676 Human Papillomavirus-Related Cervical Squamous Cell Carcinoma 9 14294 -NCIT:C40192 Cervical Papillary Squamous Cell Carcinoma 10 14295 -NCIT:C40191 Cervical Warty Carcinoma 11 14296 -NCIT:C40194 Cervical Squamotransitional Carcinoma 11 14297 -NCIT:C36094 Early Invasive Cervical Squamous Cell Carcinoma 9 14298 -NCIT:C40187 Cervical Keratinizing Squamous Cell Carcinoma 9 14299 -NCIT:C40188 Cervical Non-Keratinizing Squamous Cell Carcinoma 9 14300 -NCIT:C40189 Cervical Basaloid Carcinoma 9 14301 -NCIT:C40190 Cervical Verrucous Carcinoma 9 14302 -NCIT:C40193 Cervical Lymphoepithelioma-Like Carcinoma 9 14303 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 9 14304 -NCIT:C6342 Cervical Squamous Papilloma 8 14305 -NCIT:C7346 Cervical Squamous Intraepithelial Neoplasia 8 14306 -NCIT:C40196 Low Grade Cervical Squamous Intraepithelial Neoplasia 9 14307 -NCIT:C40199 Cervical Squamous Intraepithelial Neoplasia 1 10 14308 -NCIT:C40197 High Grade Cervical Squamous Intraepithelial Neoplasia 9 14309 -NCIT:C40198 Cervical Squamous Intraepithelial Neoplasia 2 10 14310 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 10 14311 -NCIT:C8421 Cervical Condyloma Acuminatum 8 14312 -NCIT:C40210 Cervical Glandular Neoplasm 7 14313 -NCIT:C180860 Cervical Stratified Mucin-Producing Intraepithelial Lesion 8 14314 -NCIT:C34584 Endocervical Polyp 8 14315 -NCIT:C6856 Cervical Microglandular Polyp 9 14316 -NCIT:C40215 Cervical Mullerian Papilloma 8 14317 -NCIT:C4029 Cervical Adenocarcinoma 8 14318 -NCIT:C127915 Cervical Adenocarcinoma Admixed with Neuroendocrine Carcinoma 9 14319 -NCIT:C136651 Recurrent Cervical Adenocarcinoma 9 14320 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 10 14321 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 9 14322 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 10 14323 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 11 14324 -NCIT:C156304 Advanced Cervical Adenocarcinoma 10 14325 -NCIT:C174029 Unresectable Cervical Adenocarcinoma 9 14326 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 14327 -NCIT:C180848 Human Papillomavirus-Independent Cervical Adenocarcinoma 9 14328 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 10 14329 -NCIT:C40201 Cervical Serous Adenocarcinoma 10 14330 -NCIT:C40206 Human Papillomavirus-Independent Cervical Adenocarcinoma, Gastric-Type 10 14331 -NCIT:C40254 Cervical Mesonephric Adenocarcinoma 10 14332 -NCIT:C6343 Cervical Endometrioid Adenocarcinoma 10 14333 -NCIT:C6344 Human Papillomavirus-Independent Cervical Adenocarcinoma, Clear Cell-Type 10 14334 -NCIT:C180870 Cervical Adenocarcinoma, Not Otherwise Specified 9 14335 -NCIT:C181036 Refractory Cervical Adenocarcinoma 9 14336 -NCIT:C27677 Human Papillomavirus-Related Cervical Adenocarcinoma 9 14337 -NCIT:C127907 Endocervical Adenocarcinoma, Usual-Type 10 14338 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 11 14339 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 11 14340 -NCIT:C40208 Cervical Villoglandular Adenocarcinoma 11 14341 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 10 14342 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 10 14343 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 10 14344 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 10 14345 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 10 14346 -NCIT:C36095 Cervical Mucinous Adenocarcinoma 9 14347 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 10 14348 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 10 14349 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 10 14350 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 10 14351 -NCIT:C40206 Human Papillomavirus-Independent Cervical Adenocarcinoma, Gastric-Type 10 14352 -NCIT:C36096 Early Invasive Cervical Adenocarcinoma 9 14353 -NCIT:C4520 Cervical Adenocarcinoma In Situ 9 14354 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 10 14355 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 10 14356 -NCIT:C7673 Cervical Glandular Intraepithelial Neoplasia 8 14357 -NCIT:C7674 Low Grade Cervical Glandular Intraepithelial Neoplasia 9 14358 -NCIT:C7675 High Grade Cervical Glandular Intraepithelial Neoplasia 9 14359 -NCIT:C4520 Cervical Adenocarcinoma In Situ 10 14360 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 11 14361 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 11 14362 -NCIT:C40216 Cervical Soft Tissue Neoplasm 7 14363 -NCIT:C128053 Benign Cervical Soft Tissue Neoplasm 8 14364 -NCIT:C128046 Cervical Leiomyoma 9 14365 -NCIT:C40266 Cervical Rhabdomyoma 9 14366 -NCIT:C128054 Malignant Cervical Soft Tissue Neoplasm 8 14367 -NCIT:C128047 Cervical Leiomyosarcoma 9 14368 -NCIT:C128048 Cervical Rhabdomyosarcoma 9 14369 -NCIT:C128049 Cervical Angiosarcoma 9 14370 -NCIT:C128050 Cervical Malignant Peripheral Nerve Sheath Tumor 9 14371 -NCIT:C40222 Cervical Low Grade Endometrioid Stromal Sarcoma 9 14372 -NCIT:C40224 Endocervical Undifferentiated Sarcoma 9 14373 -NCIT:C40225 Cervical Alveolar Soft Part Sarcoma 9 14374 -NCIT:C40229 Cervical Adenosarcoma 9 14375 -NCIT:C7433 AIDS-Related Cervical Kaposi Sarcoma 9 14376 -NCIT:C40218 Cervical Endometrioid Stromal and Related Neoplasms 8 14377 -NCIT:C40222 Cervical Low Grade Endometrioid Stromal Sarcoma 9 14378 -NCIT:C40224 Endocervical Undifferentiated Sarcoma 9 14379 -NCIT:C40226 Cervical Mixed Epithelial and Mesenchymal Neoplasm 7 14380 -NCIT:C40227 Benign Cervical Mixed Epithelial and Mesenchymal Neoplasm 8 14381 -NCIT:C40230 Cervical Adenofibroma 9 14382 -NCIT:C40231 Cervical Adenomyoma 9 14383 -NCIT:C40232 Cervical Adenomyoma, Endocervical-Type 10 14384 -NCIT:C40233 Cervical Adenomyoma, Mesonephric-Type 10 14385 -NCIT:C40234 Cervical Atypical Polypoid Adenomyoma 10 14386 -NCIT:C40228 Malignant Mixed Epithelial and Mesenchymal Neoplasm of the Cervix 8 14387 -NCIT:C36097 Cervical Carcinosarcoma 9 14388 -NCIT:C40229 Cervical Adenosarcoma 9 14389 -NCIT:C9311 Malignant Cervical Neoplasm 7 14390 -NCIT:C128054 Malignant Cervical Soft Tissue Neoplasm 8 14391 -NCIT:C128047 Cervical Leiomyosarcoma 9 14392 -NCIT:C128048 Cervical Rhabdomyosarcoma 9 14393 -NCIT:C128049 Cervical Angiosarcoma 9 14394 -NCIT:C128050 Cervical Malignant Peripheral Nerve Sheath Tumor 9 14395 -NCIT:C40222 Cervical Low Grade Endometrioid Stromal Sarcoma 9 14396 -NCIT:C40224 Endocervical Undifferentiated Sarcoma 9 14397 -NCIT:C40225 Cervical Alveolar Soft Part Sarcoma 9 14398 -NCIT:C40229 Cervical Adenosarcoma 9 14399 -NCIT:C7433 AIDS-Related Cervical Kaposi Sarcoma 9 14400 -NCIT:C128055 Cervical Yolk Sac Tumor 8 14401 -NCIT:C3553 Malignant Endocervical Neoplasm 8 14402 -NCIT:C9269 Recurrent Malignant Endocervical Neoplasm 9 14403 -NCIT:C3554 Malignant Exocervical Neoplasm 8 14404 -NCIT:C7453 Exocervical Carcinoma 9 14405 -NCIT:C40228 Malignant Mixed Epithelial and Mesenchymal Neoplasm of the Cervix 8 14406 -NCIT:C36097 Cervical Carcinosarcoma 9 14407 -NCIT:C40229 Cervical Adenosarcoma 9 14408 -NCIT:C40236 Cervical Wilms Tumor 8 14409 -NCIT:C40239 Cervical Melanoma 8 14410 -NCIT:C5052 AIDS-Related Malignant Cervical Neoplasm 8 14411 -NCIT:C7432 AIDS-Related Cervical Carcinoma 9 14412 -NCIT:C7433 AIDS-Related Cervical Kaposi Sarcoma 9 14413 -NCIT:C7434 AIDS-Related Non-Hodgkin Lymphoma of the Cervix 9 14414 -NCIT:C6385 Metastatic Malignant Neoplasm in the Uterine Cervix 8 14415 -NCIT:C6334 Metastatic Carcinoma in the Uterine Cervix 9 14416 -NCIT:C9039 Cervical Carcinoma 8 14417 -NCIT:C128045 Cervical Neuroendocrine Carcinoma 9 14418 -NCIT:C40214 Cervical Large Cell Neuroendocrine Carcinoma 10 14419 -NCIT:C7982 Cervical Small Cell Neuroendocrine Carcinoma 10 14420 -NCIT:C139733 Cervical Cancer by AJCC v8 Stage 9 14421 -NCIT:C139734 Stage I Cervical Cancer AJCC v8 10 14422 -NCIT:C139735 Stage IA Cervical Cancer AJCC v8 11 14423 -NCIT:C139736 Stage IA1 Cervical Cancer AJCC v8 12 14424 -NCIT:C139737 Stage IA2 Cervical Cancer AJCC v8 12 14425 -NCIT:C139738 Stage IB Cervical Cancer AJCC v8 11 14426 -NCIT:C139739 Stage IB1 Cervical Cancer AJCC v8 12 14427 -NCIT:C139740 Stage IB2 Cervical Cancer AJCC v8 12 14428 -NCIT:C139743 Stage II Cervical Cancer AJCC v8 10 14429 -NCIT:C139744 Stage IIA Cervical Cancer AJCC v8 11 14430 -NCIT:C139745 Stage IIA1 Cervical Cancer AJCC v8 12 14431 -NCIT:C139746 Stage IIA2 Cervical Cancer AJCC v8 12 14432 -NCIT:C139748 Stage IIB Cervical Cancer AJCC v8 11 14433 -NCIT:C139749 Stage III Cervical Cancer AJCC v8 10 14434 -NCIT:C139750 Stage IIIA Cervical Cancer AJCC v8 11 14435 -NCIT:C139752 Stage IIIB Cervical Cancer AJCC v8 11 14436 -NCIT:C139753 Stage IV Cervical Cancer AJCC v8 10 14437 -NCIT:C139754 Stage IVA Cervical Cancer AJCC v8 11 14438 -NCIT:C139755 Stage IVB Cervical Cancer AJCC v8 11 14439 -NCIT:C153387 Metastatic Cervical Carcinoma 9 14440 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 10 14441 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 11 14442 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 11 14443 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 10 14444 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 11 14445 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 12 14446 -NCIT:C156304 Advanced Cervical Adenocarcinoma 11 14447 -NCIT:C153390 Metastatic Cervical Adenosquamous Carcinoma 10 14448 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 11 14449 -NCIT:C156294 Advanced Cervical Carcinoma 10 14450 -NCIT:C156304 Advanced Cervical Adenocarcinoma 11 14451 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 11 14452 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 11 14453 -NCIT:C156295 Locally Advanced Cervical Carcinoma 10 14454 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 11 14455 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 12 14456 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 11 14457 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 12 14458 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 11 14459 -NCIT:C162225 Cervical Cancer by FIGO Stage 2018 9 14460 -NCIT:C162226 Stage I Cervical Cancer FIGO 2018 10 14461 -NCIT:C162227 Stage IA Cervical Cancer FIGO 2018 11 14462 -NCIT:C162228 Stage IA1 Cervical Cancer FIGO 2018 12 14463 -NCIT:C162229 Stage IA2 Cervical Cancer FIGO 2018 12 14464 -NCIT:C162230 Stage IB Cervical Cancer FIGO 2018 11 14465 -NCIT:C162231 Stage IB1 Cervical Cancer FIGO 2018 12 14466 -NCIT:C162232 Stage IB2 Cervical Cancer FIGO 2018 12 14467 -NCIT:C162233 Stage IB3 Cervical Cancer FIGO 2018 12 14468 -NCIT:C162234 Stage II Cervical Cancer FIGO 2018 10 14469 -NCIT:C162235 Stage IIA Cervical Cancer FIGO 2018 11 14470 -NCIT:C162236 Stage IIA1 Cervical Cancer FIGO 2018 12 14471 -NCIT:C162237 Stage IIA2 Cervical Cancer FIGO 2018 12 14472 -NCIT:C162238 Stage IIB Cervical Cancer FIGO 2018 11 14473 -NCIT:C162239 Stage III Cervical Cancer FIGO 2018 10 14474 -NCIT:C162240 Stage IIIA Cervical Cancer FIGO 2018 11 14475 -NCIT:C162241 Stage IIIB Cervical Cancer FIGO 2018 11 14476 -NCIT:C162242 Stage IIIC Cervical Cancer FIGO 2018 11 14477 -NCIT:C162243 Stage IIIC1 Cervical Cancer FIGO 2018 12 14478 -NCIT:C162244 Stage IIIC2 Cervical Cancer FIGO 2018 12 14479 -NCIT:C162245 Stage IV Cervical Cancer FIGO 2018 10 14480 -NCIT:C162246 Stage IVA Cervical Cancer FIGO 2018 11 14481 -NCIT:C162247 Stage IVB Cervical Cancer FIGO 2018 11 14482 -NCIT:C170513 Refractory Cervical Carcinoma 9 14483 -NCIT:C181034 Refractory Cervical Squamous Cell Carcinoma 10 14484 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 11 14485 -NCIT:C181036 Refractory Cervical Adenocarcinoma 10 14486 -NCIT:C174024 Unresectable Cervical Carcinoma 9 14487 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 10 14488 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 11 14489 -NCIT:C174025 Unresectable Cervical Squamous Cell Carcinoma 10 14490 -NCIT:C174027 Unresectable Cervical Adenosquamous Carcinoma 10 14491 -NCIT:C174029 Unresectable Cervical Adenocarcinoma 10 14492 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 11 14493 -NCIT:C180878 Cervical Mucoepidermoid Carcinoma 9 14494 -NCIT:C181562 Cervical Cancer by AJCC v9 Stage 9 14495 -NCIT:C181564 Stage I Cervical Cancer AJCC v9 10 14496 -NCIT:C181565 Stage IA Cervical Cancer AJCC v9 11 14497 -NCIT:C181567 Stage IA1 Cervical Cancer AJCC v9 12 14498 -NCIT:C181568 Stage IA2 Cervical Cancer AJCC v9 12 14499 -NCIT:C181570 Stage IB Cervical Cancer AJCC v9 11 14500 -NCIT:C181571 Stage IB1 Cervical Cancer AJCC v9 12 14501 -NCIT:C181576 Stage IB2 Cervical Cancer AJCC v9 12 14502 -NCIT:C181579 Stage IB3 Cervical Cancer AJCC v9 12 14503 -NCIT:C181583 Stage II Cervical Cancer AJCC v9 10 14504 -NCIT:C181584 Stage IIA Cervical Cancer AJCC v9 11 14505 -NCIT:C181586 Stage IIA1 Cervical Cancer AJCC v9 12 14506 -NCIT:C181588 Stage IIA2 Cervical Cancer AJCC v9 12 14507 -NCIT:C181591 Stage IIB Cervical Cancer AJCC v9 11 14508 -NCIT:C181592 Stage III Cervical Cancer AJCC v9 10 14509 -NCIT:C181594 Stage IIIA Cervical Cancer AJCC v9 11 14510 -NCIT:C181595 Stage IIIB Cervical Cancer AJCC v9 11 14511 -NCIT:C181596 Stage IIIC Cervical Cancer AJCC v9 11 14512 -NCIT:C181597 Stage IIIC1 Cervical Cancer AJCC v9 12 14513 -NCIT:C181598 Stage IIIC2 Cervical Cancer AJCC v9 12 14514 -NCIT:C181599 Stage IV Cervical Cancer AJCC v9 10 14515 -NCIT:C181601 Stage IVA Cervical Cancer AJCC v9 11 14516 -NCIT:C181603 Stage IVB Cervical Cancer AJCC v9 11 14517 -NCIT:C186619 Cervical Cancer by FIGO Stage 2009 9 14518 -NCIT:C186620 Stage I Cervical Cancer FIGO 2009 10 14519 -NCIT:C186621 Stage IA Cervical Cancer FIGO 2009 11 14520 -NCIT:C186622 Stage IA1 Cervical Cancer FIGO 2009 12 14521 -NCIT:C186623 Stage IA2 Cervical Cancer FIGO 2009 12 14522 -NCIT:C186624 Stage IB Cervical Cancer FIGO 2009 11 14523 -NCIT:C186625 Stage IB1 Cervical Cancer FIGO 2009 12 14524 -NCIT:C186626 Stage IB2 Cervical Cancer FIGO 2009 12 14525 -NCIT:C186627 Stage II Cervical Cancer FIGO 2009 10 14526 -NCIT:C186628 Stage IIA Cervical Cancer FIGO 2009 11 14527 -NCIT:C186629 Stage IIA1 Cervical Cancer FIGO 2009 12 14528 -NCIT:C186630 Stage IIA2 Cervical Cancer FIGO 2009 12 14529 -NCIT:C186631 Stage IIB Cervical Cancer FIGO 2009 11 14530 -NCIT:C186632 Stage III Cervical Cancer FIGO 2009 10 14531 -NCIT:C186633 Stage IIIA Cervical Cancer FIGO 2009 11 14532 -NCIT:C186634 Stage IIIB Cervical Cancer FIGO 2009 11 14533 -NCIT:C186635 Stage IV Cervical Cancer FIGO 2009 10 14534 -NCIT:C186636 Stage IVA Cervical Cancer FIGO 2009 11 14535 -NCIT:C186637 Stage IVB Cervical Cancer FIGO 2009 11 14536 -NCIT:C27675 Human Papillomavirus-Related Cervical Carcinoma 9 14537 -NCIT:C27676 Human Papillomavirus-Related Cervical Squamous Cell Carcinoma 10 14538 -NCIT:C40192 Cervical Papillary Squamous Cell Carcinoma 11 14539 -NCIT:C40191 Cervical Warty Carcinoma 12 14540 -NCIT:C40194 Cervical Squamotransitional Carcinoma 12 14541 -NCIT:C27677 Human Papillomavirus-Related Cervical Adenocarcinoma 10 14542 -NCIT:C127907 Endocervical Adenocarcinoma, Usual-Type 11 14543 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 12 14544 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 12 14545 -NCIT:C40208 Cervical Villoglandular Adenocarcinoma 12 14546 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 11 14547 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 11 14548 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 11 14549 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 11 14550 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 11 14551 -NCIT:C40213 Cervical Adenoid Basal Carcinoma 9 14552 -NCIT:C4028 Cervical Squamous Cell Carcinoma 9 14553 -NCIT:C136649 Recurrent Cervical Squamous Cell Carcinoma 10 14554 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 10 14555 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 11 14556 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 11 14557 -NCIT:C174025 Unresectable Cervical Squamous Cell Carcinoma 10 14558 -NCIT:C180839 Cervical Squamous Cell Carcinoma, Not Otherwise Specified 10 14559 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 11 14560 -NCIT:C180841 Human Papillomavirus-Independent Cervical Squamous Cell Carcinoma 10 14561 -NCIT:C181034 Refractory Cervical Squamous Cell Carcinoma 10 14562 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 11 14563 -NCIT:C27676 Human Papillomavirus-Related Cervical Squamous Cell Carcinoma 10 14564 -NCIT:C40192 Cervical Papillary Squamous Cell Carcinoma 11 14565 -NCIT:C40191 Cervical Warty Carcinoma 12 14566 -NCIT:C40194 Cervical Squamotransitional Carcinoma 12 14567 -NCIT:C36094 Early Invasive Cervical Squamous Cell Carcinoma 10 14568 -NCIT:C40187 Cervical Keratinizing Squamous Cell Carcinoma 10 14569 -NCIT:C40188 Cervical Non-Keratinizing Squamous Cell Carcinoma 10 14570 -NCIT:C40189 Cervical Basaloid Carcinoma 10 14571 -NCIT:C40190 Cervical Verrucous Carcinoma 10 14572 -NCIT:C40193 Cervical Lymphoepithelioma-Like Carcinoma 10 14573 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 10 14574 -NCIT:C4029 Cervical Adenocarcinoma 9 14575 -NCIT:C127915 Cervical Adenocarcinoma Admixed with Neuroendocrine Carcinoma 10 14576 -NCIT:C136651 Recurrent Cervical Adenocarcinoma 10 14577 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 11 14578 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 10 14579 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 11 14580 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 12 14581 -NCIT:C156304 Advanced Cervical Adenocarcinoma 11 14582 -NCIT:C174029 Unresectable Cervical Adenocarcinoma 10 14583 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 11 14584 -NCIT:C180848 Human Papillomavirus-Independent Cervical Adenocarcinoma 10 14585 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 11 14586 -NCIT:C40201 Cervical Serous Adenocarcinoma 11 14587 -NCIT:C40206 Human Papillomavirus-Independent Cervical Adenocarcinoma, Gastric-Type 11 14588 -NCIT:C40254 Cervical Mesonephric Adenocarcinoma 11 14589 -NCIT:C6343 Cervical Endometrioid Adenocarcinoma 11 14590 -NCIT:C6344 Human Papillomavirus-Independent Cervical Adenocarcinoma, Clear Cell-Type 11 14591 -NCIT:C180870 Cervical Adenocarcinoma, Not Otherwise Specified 10 14592 -NCIT:C181036 Refractory Cervical Adenocarcinoma 10 14593 -NCIT:C27677 Human Papillomavirus-Related Cervical Adenocarcinoma 10 14594 -NCIT:C127907 Endocervical Adenocarcinoma, Usual-Type 11 14595 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 12 14596 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 12 14597 -NCIT:C40208 Cervical Villoglandular Adenocarcinoma 12 14598 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 11 14599 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 11 14600 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 11 14601 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 11 14602 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 11 14603 -NCIT:C36095 Cervical Mucinous Adenocarcinoma 10 14604 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 11 14605 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 11 14606 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 11 14607 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 11 14608 -NCIT:C40206 Human Papillomavirus-Independent Cervical Adenocarcinoma, Gastric-Type 11 14609 -NCIT:C36096 Early Invasive Cervical Adenocarcinoma 10 14610 -NCIT:C4520 Cervical Adenocarcinoma In Situ 10 14611 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 11 14612 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 11 14613 -NCIT:C4519 Cervical Adenosquamous Carcinoma 9 14614 -NCIT:C136650 Recurrent Cervical Adenosquamous Carcinoma 10 14615 -NCIT:C153390 Metastatic Cervical Adenosquamous Carcinoma 10 14616 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 11 14617 -NCIT:C174027 Unresectable Cervical Adenosquamous Carcinoma 10 14618 -NCIT:C40212 Cervical Poorly Differentiated Adenosquamous Carcinoma 10 14619 -NCIT:C6345 Cervical Undifferentiated Carcinoma 9 14620 -NCIT:C6346 Cervical Adenoid Cystic Carcinoma 9 14621 -NCIT:C7432 AIDS-Related Cervical Carcinoma 9 14622 -NCIT:C7453 Exocervical Carcinoma 9 14623 -NCIT:C7804 Recurrent Cervical Carcinoma 9 14624 -NCIT:C136649 Recurrent Cervical Squamous Cell Carcinoma 10 14625 -NCIT:C136650 Recurrent Cervical Adenosquamous Carcinoma 10 14626 -NCIT:C136651 Recurrent Cervical Adenocarcinoma 10 14627 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 11 14628 -NCIT:C8577 Invasive Cervical Carcinoma 9 14629 -NCIT:C90493 Cervical Cancer by AJCC v6 Stage 9 14630 -NCIT:C4000 Stage 0 Cervical Cancer AJCC v6 10 14631 -NCIT:C7803 Stage II Cervical Cancer AJCC v6 10 14632 -NCIT:C6319 Stage IIA Cervical Cancer AJCC v6 11 14633 -NCIT:C6320 Stage IIB Cervical Cancer AJCC v6 and v7 11 14634 -NCIT:C9204 Stage I Cervical Cancer AJCC v6 and v7 10 14635 -NCIT:C6313 Stage IA Cervical Cancer AJCC v6 and v7 11 14636 -NCIT:C6314 Stage IA1 Cervical Cancer AJCC v6 and v7 12 14637 -NCIT:C6315 Stage IA2 Cervical Cancer AJCC v6 and v7 12 14638 -NCIT:C6316 Stage IB Cervical Cancer AJCC v6 and v7 11 14639 -NCIT:C6317 Stage IB1 Cervical Cancer AJCC v6 and v7 12 14640 -NCIT:C6318 Stage IB2 Cervical Cancer AJCC v6 and v7 12 14641 -NCIT:C9205 Stage III Cervical Cancer AJCC v6 and v7 10 14642 -NCIT:C6321 Stage IIIB Cervical Cancer AJCC v6 and v7 11 14643 -NCIT:C6322 Stage IIIA Cervical Cancer AJCC v6 and v7 11 14644 -NCIT:C9206 Stage IV Cervical Cancer AJCC v6 and v7 10 14645 -NCIT:C6323 Stage IVA Cervical Cancer AJCC v6 and v7 11 14646 -NCIT:C6324 Stage IVB Cervical Cancer AJCC v6 and v7 11 14647 -NCIT:C91208 Cervical Cancer by AJCC v7 Stage 9 14648 -NCIT:C89550 Stage 0 Cervical Cancer AJCC v7 10 14649 -NCIT:C4520 Cervical Adenocarcinoma In Situ 11 14650 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 12 14651 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 12 14652 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 11 14653 -NCIT:C89551 Stage II Cervical Cancer AJCC v7 10 14654 -NCIT:C6320 Stage IIB Cervical Cancer AJCC v6 and v7 11 14655 -NCIT:C89552 Stage IIA Cervical Cancer AJCC v7 11 14656 -NCIT:C95172 Stage IIA1 Cervical Cancer AJCC v7 12 14657 -NCIT:C95173 Stage IIA2 Cervical Cancer AJCC v7 12 14658 -NCIT:C9204 Stage I Cervical Cancer AJCC v6 and v7 10 14659 -NCIT:C6313 Stage IA Cervical Cancer AJCC v6 and v7 11 14660 -NCIT:C6314 Stage IA1 Cervical Cancer AJCC v6 and v7 12 14661 -NCIT:C6315 Stage IA2 Cervical Cancer AJCC v6 and v7 12 14662 -NCIT:C6316 Stage IB Cervical Cancer AJCC v6 and v7 11 14663 -NCIT:C6317 Stage IB1 Cervical Cancer AJCC v6 and v7 12 14664 -NCIT:C6318 Stage IB2 Cervical Cancer AJCC v6 and v7 12 14665 -NCIT:C9205 Stage III Cervical Cancer AJCC v6 and v7 10 14666 -NCIT:C6321 Stage IIIB Cervical Cancer AJCC v6 and v7 11 14667 -NCIT:C6322 Stage IIIA Cervical Cancer AJCC v6 and v7 11 14668 -NCIT:C9206 Stage IV Cervical Cancer AJCC v6 and v7 10 14669 -NCIT:C6323 Stage IVA Cervical Cancer AJCC v6 and v7 11 14670 -NCIT:C6324 Stage IVB Cervical Cancer AJCC v6 and v7 11 14671 -NCIT:C3552 Malignant Uterine Neoplasm 6 14672 -NCIT:C3556 Malignant Uterine Corpus Neoplasm 7 14673 -NCIT:C127072 Uterine Corpus Malignant PEComa 8 14674 -NCIT:C188074 Extramedullary Disease in Plasma Cell Myeloma Involving the Uterine Corpus 8 14675 -NCIT:C27246 Uterine Corpus Choriocarcinoma 8 14676 -NCIT:C27815 Malignant Endometrial Neoplasm 8 14677 -NCIT:C181910 Endometrial Mucosa-Associated Lymphoid Tissue Lymphoma 9 14678 -NCIT:C40219 Uterine Corpus Endometrial Stromal Sarcoma 9 14679 -NCIT:C126998 Uterine Corpus High Grade Endometrial Stromal Sarcoma 10 14680 -NCIT:C139882 Uterine Corpus Endometrial Stromal Sarcoma by AJCC v8 Stage 10 14681 -NCIT:C139883 Stage I Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 14682 -NCIT:C139884 Stage IA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 14683 -NCIT:C139885 Stage IB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 14684 -NCIT:C139886 Stage II Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 14685 -NCIT:C139887 Stage III Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 14686 -NCIT:C139888 Stage IIIA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 14687 -NCIT:C139889 Stage IIIB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 14688 -NCIT:C139890 Stage IIIC Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 14689 -NCIT:C139891 Stage IV Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 14690 -NCIT:C139892 Stage IVA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 14691 -NCIT:C139893 Stage IVB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 14692 -NCIT:C40223 Uterine Corpus Low Grade Endometrial Stromal Sarcoma 10 14693 -NCIT:C7558 Endometrial Carcinoma 9 14694 -NCIT:C114656 Endometrial Adenosquamous Carcinoma 10 14695 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 11 14696 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 11 14697 -NCIT:C126769 Endometrial Dedifferentiated Carcinoma 10 14698 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 11 14699 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 11 14700 -NCIT:C150093 Refractory Endometrial Carcinoma 10 14701 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 11 14702 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 11 14703 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 11 14704 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 11 14705 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 12 14706 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 12 14707 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 12 14708 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 12 14709 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 12 14710 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 11 14711 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 11 14712 -NCIT:C150094 Recurrent Endometrial Carcinoma 10 14713 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 11 14714 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 11 14715 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 12 14716 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 12 14717 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 12 14718 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 12 14719 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 12 14720 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 11 14721 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 11 14722 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 11 14723 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 11 14724 -NCIT:C190200 Locally Recurrent Endometrial Carcinoma 11 14725 -NCIT:C156068 Metastatic Endometrial Carcinoma 10 14726 -NCIT:C159676 Advanced Endometrial Carcinoma 11 14727 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 12 14728 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 14729 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 14730 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 12 14731 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 11 14732 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 12 14733 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 14734 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 12 14735 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 11 14736 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 11 14737 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 12 14738 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 11 14739 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 12 14740 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 14741 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 12 14742 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 14743 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 14744 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 12 14745 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 14746 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 14747 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 12 14748 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 14749 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 12 14750 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 12 14751 -NCIT:C171033 Endometrial Neuroendocrine Carcinoma 10 14752 -NCIT:C126772 Endometrial Large Cell Neuroendocrine Carcinoma 11 14753 -NCIT:C40155 Endometrial Small Cell Neuroendocrine Carcinoma 11 14754 -NCIT:C171610 Unresectable Endometrial Carcinoma 10 14755 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 11 14756 -NCIT:C180335 Microsatellite Stable Endometrial Carcinoma 10 14757 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 11 14758 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 12 14759 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 11 14760 -NCIT:C190680 High Grade Endometrial Carcinoma 10 14761 -NCIT:C27838 Endometrial Serous Adenocarcinoma 11 14762 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 12 14763 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 12 14764 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 12 14765 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 14766 -NCIT:C187374 Platinum-Sensitive Endometrial Serous Adenocarcinoma 12 14767 -NCIT:C40148 High Grade Endometrial Endometrioid Adenocarcinoma 11 14768 -NCIT:C40156 Endometrial Undifferentiated Carcinoma 11 14769 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 12 14770 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 12 14771 -NCIT:C8028 Endometrial Clear Cell Adenocarcinoma 11 14772 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 12 14773 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 12 14774 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 12 14775 -NCIT:C40154 Endometrial Transitional Cell Carcinoma 10 14776 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 11 14777 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 11 14778 -NCIT:C7359 Endometrial Adenocarcinoma 10 14779 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 11 14780 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 12 14781 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 12 14782 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 12 14783 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 12 14784 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 12 14785 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 11 14786 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 12 14787 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 12 14788 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 12 14789 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 12 14790 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 12 14791 -NCIT:C179322 Endometrial Mesonephric-Like Adenocarcinoma 11 14792 -NCIT:C180536 Endometrial Mucinous Adenocarcinoma, Intestinal-Type 11 14793 -NCIT:C180537 Endometrial Mucinous Adenocarcinoma, Gastric-Type 11 14794 -NCIT:C39749 Type II Endometrial Adenocarcinoma 11 14795 -NCIT:C27838 Endometrial Serous Adenocarcinoma 12 14796 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 13 14797 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 13 14798 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 13 14799 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 14 14800 -NCIT:C187374 Platinum-Sensitive Endometrial Serous Adenocarcinoma 13 14801 -NCIT:C40152 Serous Endometrial Intraepithelial Carcinoma 12 14802 -NCIT:C8028 Endometrial Clear Cell Adenocarcinoma 12 14803 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 13 14804 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 13 14805 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 13 14806 -NCIT:C40145 Type I Endometrial Adenocarcinoma 11 14807 -NCIT:C40144 Endometrial Mucinous Adenocarcinoma 12 14808 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 13 14809 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 13 14810 -NCIT:C40149 FIGO Grade 1 Endometrial Mucinous Adenocarcinoma 13 14811 -NCIT:C40150 FIGO Grade 2 Endometrial Mucinous Adenocarcinoma 13 14812 -NCIT:C40151 FIGO Grade 3 Endometrial Mucinous Adenocarcinoma 13 14813 -NCIT:C6287 Endometrial Endometrioid Adenocarcinoma 12 14814 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 13 14815 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 13 14816 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 13 14817 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 14 14818 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 14 14819 -NCIT:C180510 Low Grade Endometrial Endometrioid Adenocarcinoma 13 14820 -NCIT:C40146 FIGO Grade 1 Endometrial Endometrioid Adenocarcinoma 14 14821 -NCIT:C40147 FIGO Grade 2 Endometrial Endometrioid Adenocarcinoma 14 14822 -NCIT:C180512 POLE-Ultramutated Endometrial Endometrioid Adenocarcinoma 13 14823 -NCIT:C180514 Mismatch Repair-Deficient Endometrial Endometrioid Adenocarcinoma 13 14824 -NCIT:C180515 p53-Mutant Endometrial Endometrioid Adenocarcinoma 13 14825 -NCIT:C180516 No Specific Molecular Profile Endometrial Endometrioid Adenocarcinoma 13 14826 -NCIT:C27839 Endometrial Endometrioid Adenocarcinoma, Secretory Variant 13 14827 -NCIT:C27843 Endometrial Endometrioid Adenocarcinoma with Clear Cell Change 13 14828 -NCIT:C27844 Endometrial Endometrioid Adenocarcinoma with a Poorly Differentiated Carcinomatous Component 13 14829 -NCIT:C27845 Endometrial Endometrioid Adenocarcinoma with an Undifferentiated Carcinomatous Component 13 14830 -NCIT:C27846 Villoglandular Endometrial Endometrioid Adenocarcinoma 13 14831 -NCIT:C27848 Endometrial Endometrioid Adenocarcinoma, Ciliated Variant 13 14832 -NCIT:C27849 Oxyphilic Endometrial Endometrioid Adenocarcinoma 13 14833 -NCIT:C27850 Endometrial Endometrioid Adenocarcinoma with Spindled Epithelial Cells 13 14834 -NCIT:C40148 High Grade Endometrial Endometrioid Adenocarcinoma 13 14835 -NCIT:C6290 Endometrial Endometrioid Adenocarcinoma, Variant with Squamous Differentiation 13 14836 -NCIT:C40153 Endometrial Mixed Cell Adenocarcinoma 11 14837 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 12 14838 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 12 14839 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 12 14840 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 11 14841 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 12 14842 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 14843 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 12 14844 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 14845 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 14846 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 12 14847 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 14848 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 14849 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 12 14850 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 14851 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 12 14852 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 12 14853 -NCIT:C8719 Endometrial Squamous Cell Carcinoma 10 14854 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 11 14855 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 11 14856 -NCIT:C61574 Uterine Corpus Cancer 8 14857 -NCIT:C139801 Uterine Corpus Cancer by AJCC v8 Stage 9 14858 -NCIT:C139802 Stage I Uterine Corpus Cancer AJCC v8 10 14859 -NCIT:C139803 Stage IA Uterine Corpus Cancer AJCC v8 11 14860 -NCIT:C139804 Stage IB Uterine Corpus Cancer AJCC v8 11 14861 -NCIT:C139805 Stage II Uterine Corpus Cancer AJCC v8 10 14862 -NCIT:C139806 Stage III Uterine Corpus Cancer AJCC v8 10 14863 -NCIT:C139807 Stage IIIA Uterine Corpus Cancer AJCC v8 11 14864 -NCIT:C139808 Stage IIIB Uterine Corpus Cancer AJCC v8 11 14865 -NCIT:C139809 Stage IIIC Uterine Corpus Cancer AJCC v8 11 14866 -NCIT:C139810 Stage IIIC1 Uterine Corpus Cancer AJCC v8 12 14867 -NCIT:C139811 Stage IIIC2 Uterine Corpus Cancer AJCC v8 12 14868 -NCIT:C139812 Stage IV Uterine Corpus Cancer AJCC v8 10 14869 -NCIT:C139813 Stage IVA Uterine Corpus Cancer AJCC v8 11 14870 -NCIT:C139814 Stage IVB Uterine Corpus Cancer AJCC v8 11 14871 -NCIT:C150092 Refractory Uterine Corpus Cancer 9 14872 -NCIT:C150093 Refractory Endometrial Carcinoma 10 14873 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 11 14874 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 11 14875 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 11 14876 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 11 14877 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 12 14878 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 12 14879 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 12 14880 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 12 14881 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 12 14882 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 11 14883 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 11 14884 -NCIT:C158381 Refractory Uterine Corpus Carcinosarcoma 10 14885 -NCIT:C172450 Advanced Uterine Corpus Cancer 9 14886 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 10 14887 -NCIT:C159676 Advanced Endometrial Carcinoma 10 14888 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 11 14889 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 12 14890 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 12 14891 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 11 14892 -NCIT:C7558 Endometrial Carcinoma 9 14893 -NCIT:C114656 Endometrial Adenosquamous Carcinoma 10 14894 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 11 14895 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 11 14896 -NCIT:C126769 Endometrial Dedifferentiated Carcinoma 10 14897 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 11 14898 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 11 14899 -NCIT:C150093 Refractory Endometrial Carcinoma 10 14900 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 11 14901 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 11 14902 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 11 14903 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 11 14904 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 12 14905 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 12 14906 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 12 14907 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 12 14908 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 12 14909 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 11 14910 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 11 14911 -NCIT:C150094 Recurrent Endometrial Carcinoma 10 14912 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 11 14913 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 11 14914 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 12 14915 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 12 14916 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 12 14917 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 12 14918 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 12 14919 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 11 14920 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 11 14921 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 11 14922 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 11 14923 -NCIT:C190200 Locally Recurrent Endometrial Carcinoma 11 14924 -NCIT:C156068 Metastatic Endometrial Carcinoma 10 14925 -NCIT:C159676 Advanced Endometrial Carcinoma 11 14926 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 12 14927 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 14928 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 14929 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 12 14930 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 11 14931 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 12 14932 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 14933 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 12 14934 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 11 14935 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 11 14936 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 12 14937 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 11 14938 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 12 14939 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 14940 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 12 14941 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 14942 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 14943 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 12 14944 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 14945 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 14946 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 12 14947 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 14948 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 12 14949 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 12 14950 -NCIT:C171033 Endometrial Neuroendocrine Carcinoma 10 14951 -NCIT:C126772 Endometrial Large Cell Neuroendocrine Carcinoma 11 14952 -NCIT:C40155 Endometrial Small Cell Neuroendocrine Carcinoma 11 14953 -NCIT:C171610 Unresectable Endometrial Carcinoma 10 14954 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 11 14955 -NCIT:C180335 Microsatellite Stable Endometrial Carcinoma 10 14956 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 11 14957 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 12 14958 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 11 14959 -NCIT:C190680 High Grade Endometrial Carcinoma 10 14960 -NCIT:C27838 Endometrial Serous Adenocarcinoma 11 14961 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 12 14962 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 12 14963 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 12 14964 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 14965 -NCIT:C187374 Platinum-Sensitive Endometrial Serous Adenocarcinoma 12 14966 -NCIT:C40148 High Grade Endometrial Endometrioid Adenocarcinoma 11 14967 -NCIT:C40156 Endometrial Undifferentiated Carcinoma 11 14968 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 12 14969 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 12 14970 -NCIT:C8028 Endometrial Clear Cell Adenocarcinoma 11 14971 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 12 14972 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 12 14973 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 12 14974 -NCIT:C40154 Endometrial Transitional Cell Carcinoma 10 14975 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 11 14976 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 11 14977 -NCIT:C7359 Endometrial Adenocarcinoma 10 14978 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 11 14979 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 12 14980 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 12 14981 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 12 14982 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 12 14983 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 12 14984 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 11 14985 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 12 14986 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 12 14987 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 12 14988 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 12 14989 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 12 14990 -NCIT:C179322 Endometrial Mesonephric-Like Adenocarcinoma 11 14991 -NCIT:C180536 Endometrial Mucinous Adenocarcinoma, Intestinal-Type 11 14992 -NCIT:C180537 Endometrial Mucinous Adenocarcinoma, Gastric-Type 11 14993 -NCIT:C39749 Type II Endometrial Adenocarcinoma 11 14994 -NCIT:C27838 Endometrial Serous Adenocarcinoma 12 14995 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 13 14996 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 13 14997 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 13 14998 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 14 14999 -NCIT:C187374 Platinum-Sensitive Endometrial Serous Adenocarcinoma 13 15000 -NCIT:C40152 Serous Endometrial Intraepithelial Carcinoma 12 15001 -NCIT:C8028 Endometrial Clear Cell Adenocarcinoma 12 15002 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 13 15003 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 13 15004 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 13 15005 -NCIT:C40145 Type I Endometrial Adenocarcinoma 11 15006 -NCIT:C40144 Endometrial Mucinous Adenocarcinoma 12 15007 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 13 15008 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 13 15009 -NCIT:C40149 FIGO Grade 1 Endometrial Mucinous Adenocarcinoma 13 15010 -NCIT:C40150 FIGO Grade 2 Endometrial Mucinous Adenocarcinoma 13 15011 -NCIT:C40151 FIGO Grade 3 Endometrial Mucinous Adenocarcinoma 13 15012 -NCIT:C6287 Endometrial Endometrioid Adenocarcinoma 12 15013 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 13 15014 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 13 15015 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 13 15016 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 14 15017 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 14 15018 -NCIT:C180510 Low Grade Endometrial Endometrioid Adenocarcinoma 13 15019 -NCIT:C40146 FIGO Grade 1 Endometrial Endometrioid Adenocarcinoma 14 15020 -NCIT:C40147 FIGO Grade 2 Endometrial Endometrioid Adenocarcinoma 14 15021 -NCIT:C180512 POLE-Ultramutated Endometrial Endometrioid Adenocarcinoma 13 15022 -NCIT:C180514 Mismatch Repair-Deficient Endometrial Endometrioid Adenocarcinoma 13 15023 -NCIT:C180515 p53-Mutant Endometrial Endometrioid Adenocarcinoma 13 15024 -NCIT:C180516 No Specific Molecular Profile Endometrial Endometrioid Adenocarcinoma 13 15025 -NCIT:C27839 Endometrial Endometrioid Adenocarcinoma, Secretory Variant 13 15026 -NCIT:C27843 Endometrial Endometrioid Adenocarcinoma with Clear Cell Change 13 15027 -NCIT:C27844 Endometrial Endometrioid Adenocarcinoma with a Poorly Differentiated Carcinomatous Component 13 15028 -NCIT:C27845 Endometrial Endometrioid Adenocarcinoma with an Undifferentiated Carcinomatous Component 13 15029 -NCIT:C27846 Villoglandular Endometrial Endometrioid Adenocarcinoma 13 15030 -NCIT:C27848 Endometrial Endometrioid Adenocarcinoma, Ciliated Variant 13 15031 -NCIT:C27849 Oxyphilic Endometrial Endometrioid Adenocarcinoma 13 15032 -NCIT:C27850 Endometrial Endometrioid Adenocarcinoma with Spindled Epithelial Cells 13 15033 -NCIT:C40148 High Grade Endometrial Endometrioid Adenocarcinoma 13 15034 -NCIT:C6290 Endometrial Endometrioid Adenocarcinoma, Variant with Squamous Differentiation 13 15035 -NCIT:C40153 Endometrial Mixed Cell Adenocarcinoma 11 15036 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 12 15037 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 12 15038 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 12 15039 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 11 15040 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 12 15041 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 15042 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 12 15043 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 15044 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 15045 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 12 15046 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 15047 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 15048 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 12 15049 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 15050 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 12 15051 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 12 15052 -NCIT:C8719 Endometrial Squamous Cell Carcinoma 10 15053 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 11 15054 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 11 15055 -NCIT:C90494 Uterine Corpus Cancer by AJCC v6 Stage 9 15056 -NCIT:C4006 Stage IV Uterine Corpus Cancer AJCC v6 10 15057 -NCIT:C9071 Stage 0 Uterine Corpus Cancer AJCC v6 10 15058 -NCIT:C9207 Stage I Uterine Corpus Cancer AJCC v6 10 15059 -NCIT:C6303 Stage IC Uterine Corpus Cancer AJCC v6 11 15060 -NCIT:C9208 Stage II Uterine Corpus Cancer AJCC v6 10 15061 -NCIT:C6304 Stage IIA Uterine Corpus Cancer AJCC v6 11 15062 -NCIT:C6305 Stage IIB Uterine Corpus Cancer AJCC v6 11 15063 -NCIT:C9209 Stage III Uterine Corpus Cancer AJCC v6 10 15064 -NCIT:C9072 Recurrent Uterine Corpus Cancer 9 15065 -NCIT:C150094 Recurrent Endometrial Carcinoma 10 15066 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 11 15067 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 11 15068 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 12 15069 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 12 15070 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 12 15071 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 12 15072 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 12 15073 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 11 15074 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 11 15075 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 11 15076 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 11 15077 -NCIT:C190200 Locally Recurrent Endometrial Carcinoma 11 15078 -NCIT:C155818 Recurrent Uterine Corpus Carcinosarcoma 10 15079 -NCIT:C91218 Uterine Corpus Cancer by AJCC v7 Stage 9 15080 -NCIT:C89632 Stage 0 Uterine Corpus Cancer AJCC v7 10 15081 -NCIT:C89633 Stage I Uterine Corpus Cancer AJCC v7 10 15082 -NCIT:C6301 Stage IA Uterine Corpus Cancer AJCC v7 11 15083 -NCIT:C6302 Stage IB Uterine Corpus Cancer AJCC v7 11 15084 -NCIT:C89634 Stage II Uterine Corpus Cancer AJCC v7 10 15085 -NCIT:C89635 Stage III Uterine Corpus Cancer AJCC v7 10 15086 -NCIT:C6306 Stage IIIA Uterine Corpus Cancer AJCC v7 11 15087 -NCIT:C6307 Stage IIIB Uterine Corpus Cancer AJCC v7 11 15088 -NCIT:C6308 Stage IIIC Uterine Corpus Cancer AJCC v7 11 15089 -NCIT:C95174 Stage IIIC1 Uterine Corpus Cancer AJCC v7 12 15090 -NCIT:C95176 Stage IIIC2 Uterine Corpus Cancer AJCC v7 12 15091 -NCIT:C89636 Stage IV Uterine Corpus Cancer AJCC v7 10 15092 -NCIT:C6309 Stage IVA Uterine Corpus Cancer AJCC v7 11 15093 -NCIT:C6310 Stage IVB Uterine Corpus Cancer AJCC v7 11 15094 -NCIT:C9180 Uterine Corpus Carcinosarcoma 9 15095 -NCIT:C155818 Recurrent Uterine Corpus Carcinosarcoma 10 15096 -NCIT:C158381 Refractory Uterine Corpus Carcinosarcoma 10 15097 -NCIT:C170931 Metastatic Uterine Corpus Carcinosarcoma 10 15098 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 11 15099 -NCIT:C6311 Malignant Uterine Corpus Mixed Epithelial and Mesenchymal Neoplasm 8 15100 -NCIT:C40182 Uterine Corpus Carcinofibroma 9 15101 -NCIT:C6336 Uterine Corpus Adenosarcoma 9 15102 -NCIT:C139894 Uterine Corpus Adenosarcoma by AJCC v8 Stage 10 15103 -NCIT:C139895 Stage I Uterine Corpus Adenosarcoma AJCC v8 11 15104 -NCIT:C139896 Stage IA Uterine Corpus Adenosarcoma AJCC v8 12 15105 -NCIT:C139897 Stage IB Uterine Corpus Adenosarcoma AJCC v8 12 15106 -NCIT:C139898 Stage IC Uterine Corpus Adenosarcoma AJCC v8 12 15107 -NCIT:C139899 Stage II Uterine Corpus Adenosarcoma AJCC v8 11 15108 -NCIT:C139900 Stage III Uterine Corpus Adenosarcoma AJCC v8 11 15109 -NCIT:C139901 Stage IIIA Uterine Corpus Adenosarcoma AJCC v8 12 15110 -NCIT:C139902 Stage IIIB Uterine Corpus Adenosarcoma AJCC v8 12 15111 -NCIT:C139903 Stage IIIC Uterine Corpus Adenosarcoma AJCC v8 12 15112 -NCIT:C139904 Stage IV Uterine Corpus Adenosarcoma AJCC v8 11 15113 -NCIT:C139905 Stage IVA Uterine Corpus Adenosarcoma AJCC v8 12 15114 -NCIT:C139906 Stage IVB Uterine Corpus Adenosarcoma AJCC v8 12 15115 -NCIT:C9180 Uterine Corpus Carcinosarcoma 9 15116 -NCIT:C155818 Recurrent Uterine Corpus Carcinosarcoma 10 15117 -NCIT:C158381 Refractory Uterine Corpus Carcinosarcoma 10 15118 -NCIT:C170931 Metastatic Uterine Corpus Carcinosarcoma 10 15119 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 11 15120 -NCIT:C6339 Uterine Corpus Sarcoma 8 15121 -NCIT:C127058 Uterine Corpus Rhabdomyosarcoma 9 15122 -NCIT:C136708 Uterine Corpus Sarcoma by AJCC v7 Stage 9 15123 -NCIT:C8258 Stage I Uterine Sarcoma AJCC v7 10 15124 -NCIT:C87132 Stage IA Uterine Sarcoma AJCC v7 11 15125 -NCIT:C87133 Stage IB Uterine Sarcoma AJCC v7 11 15126 -NCIT:C87134 Stage IC Uterine Sarcoma AJCC v7 11 15127 -NCIT:C8259 Stage II Uterine Sarcoma AJCC v7 10 15128 -NCIT:C115130 Stage IIA Uterine Sarcoma AJCC v7 11 15129 -NCIT:C115131 Stage IIB Uterine Sarcoma AJCC v7 11 15130 -NCIT:C8260 Stage III Uterine Sarcoma AJCC v7 10 15131 -NCIT:C87135 Stage IIIA Uterine Sarcoma AJCC v7 11 15132 -NCIT:C87137 Stage IIIB Uterine Sarcoma AJCC v7 11 15133 -NCIT:C87138 Stage IIIC Uterine Sarcoma AJCC v7 11 15134 -NCIT:C9179 Stage IV Uterine Sarcoma AJCC v7 10 15135 -NCIT:C87140 Stage IVA Uterine Sarcoma AJCC v7 11 15136 -NCIT:C87144 Stage IVB Uterine Sarcoma AJCC v7 11 15137 -NCIT:C139869 Uterine Corpus Sarcoma by AJCC v8 Stage 9 15138 -NCIT:C139870 Uterine Corpus Leiomyosarcoma by AJCC v8 Stage 10 15139 -NCIT:C139871 Stage I Uterine Corpus Leiomyosarcoma AJCC v8 11 15140 -NCIT:C139872 Stage IA Uterine Corpus Leiomyosarcoma AJCC v8 12 15141 -NCIT:C139873 Stage IB Uterine Corpus Leiomyosarcoma AJCC v8 12 15142 -NCIT:C139874 Stage II Uterine Corpus Leiomyosarcoma AJCC v8 11 15143 -NCIT:C139875 Stage III Uterine Corpus Leiomyosarcoma AJCC v8 11 15144 -NCIT:C139876 Stage IIIA Uterine Corpus Leiomyosarcoma AJCC v8 12 15145 -NCIT:C139877 Stage IIIB Uterine Corpus Leiomyosarcoma AJCC v8 12 15146 -NCIT:C139878 Stage IIIC Uterine Corpus Leiomyosarcoma AJCC v8 12 15147 -NCIT:C139879 Stage IV Uterine Corpus Leiomyosarcoma AJCC v8 11 15148 -NCIT:C139880 Stage IVA Uterine Corpus Leiomyosarcoma AJCC v8 12 15149 -NCIT:C139881 Stage IVB Uterine Corpus Leiomyosarcoma AJCC v8 12 15150 -NCIT:C139882 Uterine Corpus Endometrial Stromal Sarcoma by AJCC v8 Stage 10 15151 -NCIT:C139883 Stage I Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 15152 -NCIT:C139884 Stage IA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 15153 -NCIT:C139885 Stage IB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 15154 -NCIT:C139886 Stage II Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 15155 -NCIT:C139887 Stage III Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 15156 -NCIT:C139888 Stage IIIA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 15157 -NCIT:C139889 Stage IIIB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 15158 -NCIT:C139890 Stage IIIC Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 15159 -NCIT:C139891 Stage IV Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 15160 -NCIT:C139892 Stage IVA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 15161 -NCIT:C139893 Stage IVB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 15162 -NCIT:C139894 Uterine Corpus Adenosarcoma by AJCC v8 Stage 10 15163 -NCIT:C139895 Stage I Uterine Corpus Adenosarcoma AJCC v8 11 15164 -NCIT:C139896 Stage IA Uterine Corpus Adenosarcoma AJCC v8 12 15165 -NCIT:C139897 Stage IB Uterine Corpus Adenosarcoma AJCC v8 12 15166 -NCIT:C139898 Stage IC Uterine Corpus Adenosarcoma AJCC v8 12 15167 -NCIT:C139899 Stage II Uterine Corpus Adenosarcoma AJCC v8 11 15168 -NCIT:C139900 Stage III Uterine Corpus Adenosarcoma AJCC v8 11 15169 -NCIT:C139901 Stage IIIA Uterine Corpus Adenosarcoma AJCC v8 12 15170 -NCIT:C139902 Stage IIIB Uterine Corpus Adenosarcoma AJCC v8 12 15171 -NCIT:C139903 Stage IIIC Uterine Corpus Adenosarcoma AJCC v8 12 15172 -NCIT:C139904 Stage IV Uterine Corpus Adenosarcoma AJCC v8 11 15173 -NCIT:C139905 Stage IVA Uterine Corpus Adenosarcoma AJCC v8 12 15174 -NCIT:C139906 Stage IVB Uterine Corpus Adenosarcoma AJCC v8 12 15175 -NCIT:C180546 Uterine Corpus Central Primitive Neuroectodermal Tumor 9 15176 -NCIT:C190009 Metastatic Uterine Corpus Sarcoma 9 15177 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 10 15178 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 11 15179 -NCIT:C190016 Unresectable Uterine Corpus Sarcoma 9 15180 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 10 15181 -NCIT:C40219 Uterine Corpus Endometrial Stromal Sarcoma 9 15182 -NCIT:C126998 Uterine Corpus High Grade Endometrial Stromal Sarcoma 10 15183 -NCIT:C139882 Uterine Corpus Endometrial Stromal Sarcoma by AJCC v8 Stage 10 15184 -NCIT:C139883 Stage I Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 15185 -NCIT:C139884 Stage IA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 15186 -NCIT:C139885 Stage IB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 15187 -NCIT:C139886 Stage II Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 15188 -NCIT:C139887 Stage III Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 15189 -NCIT:C139888 Stage IIIA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 15190 -NCIT:C139889 Stage IIIB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 15191 -NCIT:C139890 Stage IIIC Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 15192 -NCIT:C139891 Stage IV Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 15193 -NCIT:C139892 Stage IVA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 15194 -NCIT:C139893 Stage IVB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 15195 -NCIT:C40223 Uterine Corpus Low Grade Endometrial Stromal Sarcoma 10 15196 -NCIT:C6336 Uterine Corpus Adenosarcoma 9 15197 -NCIT:C139894 Uterine Corpus Adenosarcoma by AJCC v8 Stage 10 15198 -NCIT:C139895 Stage I Uterine Corpus Adenosarcoma AJCC v8 11 15199 -NCIT:C139896 Stage IA Uterine Corpus Adenosarcoma AJCC v8 12 15200 -NCIT:C139897 Stage IB Uterine Corpus Adenosarcoma AJCC v8 12 15201 -NCIT:C139898 Stage IC Uterine Corpus Adenosarcoma AJCC v8 12 15202 -NCIT:C139899 Stage II Uterine Corpus Adenosarcoma AJCC v8 11 15203 -NCIT:C139900 Stage III Uterine Corpus Adenosarcoma AJCC v8 11 15204 -NCIT:C139901 Stage IIIA Uterine Corpus Adenosarcoma AJCC v8 12 15205 -NCIT:C139902 Stage IIIB Uterine Corpus Adenosarcoma AJCC v8 12 15206 -NCIT:C139903 Stage IIIC Uterine Corpus Adenosarcoma AJCC v8 12 15207 -NCIT:C139904 Stage IV Uterine Corpus Adenosarcoma AJCC v8 11 15208 -NCIT:C139905 Stage IVA Uterine Corpus Adenosarcoma AJCC v8 12 15209 -NCIT:C139906 Stage IVB Uterine Corpus Adenosarcoma AJCC v8 12 15210 -NCIT:C6340 Uterine Corpus Leiomyosarcoma 9 15211 -NCIT:C139870 Uterine Corpus Leiomyosarcoma by AJCC v8 Stage 10 15212 -NCIT:C139871 Stage I Uterine Corpus Leiomyosarcoma AJCC v8 11 15213 -NCIT:C139872 Stage IA Uterine Corpus Leiomyosarcoma AJCC v8 12 15214 -NCIT:C139873 Stage IB Uterine Corpus Leiomyosarcoma AJCC v8 12 15215 -NCIT:C139874 Stage II Uterine Corpus Leiomyosarcoma AJCC v8 11 15216 -NCIT:C139875 Stage III Uterine Corpus Leiomyosarcoma AJCC v8 11 15217 -NCIT:C139876 Stage IIIA Uterine Corpus Leiomyosarcoma AJCC v8 12 15218 -NCIT:C139877 Stage IIIB Uterine Corpus Leiomyosarcoma AJCC v8 12 15219 -NCIT:C139878 Stage IIIC Uterine Corpus Leiomyosarcoma AJCC v8 12 15220 -NCIT:C139879 Stage IV Uterine Corpus Leiomyosarcoma AJCC v8 11 15221 -NCIT:C139880 Stage IVA Uterine Corpus Leiomyosarcoma AJCC v8 12 15222 -NCIT:C139881 Stage IVB Uterine Corpus Leiomyosarcoma AJCC v8 12 15223 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 10 15224 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 10 15225 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 11 15226 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 10 15227 -NCIT:C40174 Uterine Corpus Epithelioid Leiomyosarcoma 10 15228 -NCIT:C40175 Uterine Corpus Myxoid Leiomyosarcoma 10 15229 -NCIT:C8261 Recurrent Uterine Corpus Sarcoma 9 15230 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 10 15231 -NCIT:C8972 Uterine Corpus Undifferentiated Sarcoma 9 15232 -NCIT:C42700 Uterine Carcinosarcoma 7 15233 -NCIT:C113238 Uterine Carcinosarcoma, Homologous Type 8 15234 -NCIT:C113239 Uterine Carcinosarcoma, Heterologous Type 8 15235 -NCIT:C36097 Cervical Carcinosarcoma 8 15236 -NCIT:C9180 Uterine Corpus Carcinosarcoma 8 15237 -NCIT:C155818 Recurrent Uterine Corpus Carcinosarcoma 9 15238 -NCIT:C158381 Refractory Uterine Corpus Carcinosarcoma 9 15239 -NCIT:C170931 Metastatic Uterine Corpus Carcinosarcoma 9 15240 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 10 15241 -NCIT:C5385 Uterine Angiosarcoma 7 15242 -NCIT:C128049 Cervical Angiosarcoma 8 15243 -NCIT:C9311 Malignant Cervical Neoplasm 7 15244 -NCIT:C128054 Malignant Cervical Soft Tissue Neoplasm 8 15245 -NCIT:C128047 Cervical Leiomyosarcoma 9 15246 -NCIT:C128048 Cervical Rhabdomyosarcoma 9 15247 -NCIT:C128049 Cervical Angiosarcoma 9 15248 -NCIT:C128050 Cervical Malignant Peripheral Nerve Sheath Tumor 9 15249 -NCIT:C40222 Cervical Low Grade Endometrioid Stromal Sarcoma 9 15250 -NCIT:C40224 Endocervical Undifferentiated Sarcoma 9 15251 -NCIT:C40225 Cervical Alveolar Soft Part Sarcoma 9 15252 -NCIT:C40229 Cervical Adenosarcoma 9 15253 -NCIT:C7433 AIDS-Related Cervical Kaposi Sarcoma 9 15254 -NCIT:C128055 Cervical Yolk Sac Tumor 8 15255 -NCIT:C3553 Malignant Endocervical Neoplasm 8 15256 -NCIT:C9269 Recurrent Malignant Endocervical Neoplasm 9 15257 -NCIT:C3554 Malignant Exocervical Neoplasm 8 15258 -NCIT:C7453 Exocervical Carcinoma 9 15259 -NCIT:C40228 Malignant Mixed Epithelial and Mesenchymal Neoplasm of the Cervix 8 15260 -NCIT:C36097 Cervical Carcinosarcoma 9 15261 -NCIT:C40229 Cervical Adenosarcoma 9 15262 -NCIT:C40236 Cervical Wilms Tumor 8 15263 -NCIT:C40239 Cervical Melanoma 8 15264 -NCIT:C5052 AIDS-Related Malignant Cervical Neoplasm 8 15265 -NCIT:C7432 AIDS-Related Cervical Carcinoma 9 15266 -NCIT:C7433 AIDS-Related Cervical Kaposi Sarcoma 9 15267 -NCIT:C7434 AIDS-Related Non-Hodgkin Lymphoma of the Cervix 9 15268 -NCIT:C6385 Metastatic Malignant Neoplasm in the Uterine Cervix 8 15269 -NCIT:C6334 Metastatic Carcinoma in the Uterine Cervix 9 15270 -NCIT:C9039 Cervical Carcinoma 8 15271 -NCIT:C128045 Cervical Neuroendocrine Carcinoma 9 15272 -NCIT:C40214 Cervical Large Cell Neuroendocrine Carcinoma 10 15273 -NCIT:C7982 Cervical Small Cell Neuroendocrine Carcinoma 10 15274 -NCIT:C139733 Cervical Cancer by AJCC v8 Stage 9 15275 -NCIT:C139734 Stage I Cervical Cancer AJCC v8 10 15276 -NCIT:C139735 Stage IA Cervical Cancer AJCC v8 11 15277 -NCIT:C139736 Stage IA1 Cervical Cancer AJCC v8 12 15278 -NCIT:C139737 Stage IA2 Cervical Cancer AJCC v8 12 15279 -NCIT:C139738 Stage IB Cervical Cancer AJCC v8 11 15280 -NCIT:C139739 Stage IB1 Cervical Cancer AJCC v8 12 15281 -NCIT:C139740 Stage IB2 Cervical Cancer AJCC v8 12 15282 -NCIT:C139743 Stage II Cervical Cancer AJCC v8 10 15283 -NCIT:C139744 Stage IIA Cervical Cancer AJCC v8 11 15284 -NCIT:C139745 Stage IIA1 Cervical Cancer AJCC v8 12 15285 -NCIT:C139746 Stage IIA2 Cervical Cancer AJCC v8 12 15286 -NCIT:C139748 Stage IIB Cervical Cancer AJCC v8 11 15287 -NCIT:C139749 Stage III Cervical Cancer AJCC v8 10 15288 -NCIT:C139750 Stage IIIA Cervical Cancer AJCC v8 11 15289 -NCIT:C139752 Stage IIIB Cervical Cancer AJCC v8 11 15290 -NCIT:C139753 Stage IV Cervical Cancer AJCC v8 10 15291 -NCIT:C139754 Stage IVA Cervical Cancer AJCC v8 11 15292 -NCIT:C139755 Stage IVB Cervical Cancer AJCC v8 11 15293 -NCIT:C153387 Metastatic Cervical Carcinoma 9 15294 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 10 15295 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 11 15296 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 11 15297 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 10 15298 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 11 15299 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 12 15300 -NCIT:C156304 Advanced Cervical Adenocarcinoma 11 15301 -NCIT:C153390 Metastatic Cervical Adenosquamous Carcinoma 10 15302 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 11 15303 -NCIT:C156294 Advanced Cervical Carcinoma 10 15304 -NCIT:C156304 Advanced Cervical Adenocarcinoma 11 15305 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 11 15306 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 11 15307 -NCIT:C156295 Locally Advanced Cervical Carcinoma 10 15308 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 11 15309 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 12 15310 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 11 15311 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 12 15312 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 11 15313 -NCIT:C162225 Cervical Cancer by FIGO Stage 2018 9 15314 -NCIT:C162226 Stage I Cervical Cancer FIGO 2018 10 15315 -NCIT:C162227 Stage IA Cervical Cancer FIGO 2018 11 15316 -NCIT:C162228 Stage IA1 Cervical Cancer FIGO 2018 12 15317 -NCIT:C162229 Stage IA2 Cervical Cancer FIGO 2018 12 15318 -NCIT:C162230 Stage IB Cervical Cancer FIGO 2018 11 15319 -NCIT:C162231 Stage IB1 Cervical Cancer FIGO 2018 12 15320 -NCIT:C162232 Stage IB2 Cervical Cancer FIGO 2018 12 15321 -NCIT:C162233 Stage IB3 Cervical Cancer FIGO 2018 12 15322 -NCIT:C162234 Stage II Cervical Cancer FIGO 2018 10 15323 -NCIT:C162235 Stage IIA Cervical Cancer FIGO 2018 11 15324 -NCIT:C162236 Stage IIA1 Cervical Cancer FIGO 2018 12 15325 -NCIT:C162237 Stage IIA2 Cervical Cancer FIGO 2018 12 15326 -NCIT:C162238 Stage IIB Cervical Cancer FIGO 2018 11 15327 -NCIT:C162239 Stage III Cervical Cancer FIGO 2018 10 15328 -NCIT:C162240 Stage IIIA Cervical Cancer FIGO 2018 11 15329 -NCIT:C162241 Stage IIIB Cervical Cancer FIGO 2018 11 15330 -NCIT:C162242 Stage IIIC Cervical Cancer FIGO 2018 11 15331 -NCIT:C162243 Stage IIIC1 Cervical Cancer FIGO 2018 12 15332 -NCIT:C162244 Stage IIIC2 Cervical Cancer FIGO 2018 12 15333 -NCIT:C162245 Stage IV Cervical Cancer FIGO 2018 10 15334 -NCIT:C162246 Stage IVA Cervical Cancer FIGO 2018 11 15335 -NCIT:C162247 Stage IVB Cervical Cancer FIGO 2018 11 15336 -NCIT:C170513 Refractory Cervical Carcinoma 9 15337 -NCIT:C181034 Refractory Cervical Squamous Cell Carcinoma 10 15338 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 11 15339 -NCIT:C181036 Refractory Cervical Adenocarcinoma 10 15340 -NCIT:C174024 Unresectable Cervical Carcinoma 9 15341 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 10 15342 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 11 15343 -NCIT:C174025 Unresectable Cervical Squamous Cell Carcinoma 10 15344 -NCIT:C174027 Unresectable Cervical Adenosquamous Carcinoma 10 15345 -NCIT:C174029 Unresectable Cervical Adenocarcinoma 10 15346 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 11 15347 -NCIT:C180878 Cervical Mucoepidermoid Carcinoma 9 15348 -NCIT:C181562 Cervical Cancer by AJCC v9 Stage 9 15349 -NCIT:C181564 Stage I Cervical Cancer AJCC v9 10 15350 -NCIT:C181565 Stage IA Cervical Cancer AJCC v9 11 15351 -NCIT:C181567 Stage IA1 Cervical Cancer AJCC v9 12 15352 -NCIT:C181568 Stage IA2 Cervical Cancer AJCC v9 12 15353 -NCIT:C181570 Stage IB Cervical Cancer AJCC v9 11 15354 -NCIT:C181571 Stage IB1 Cervical Cancer AJCC v9 12 15355 -NCIT:C181576 Stage IB2 Cervical Cancer AJCC v9 12 15356 -NCIT:C181579 Stage IB3 Cervical Cancer AJCC v9 12 15357 -NCIT:C181583 Stage II Cervical Cancer AJCC v9 10 15358 -NCIT:C181584 Stage IIA Cervical Cancer AJCC v9 11 15359 -NCIT:C181586 Stage IIA1 Cervical Cancer AJCC v9 12 15360 -NCIT:C181588 Stage IIA2 Cervical Cancer AJCC v9 12 15361 -NCIT:C181591 Stage IIB Cervical Cancer AJCC v9 11 15362 -NCIT:C181592 Stage III Cervical Cancer AJCC v9 10 15363 -NCIT:C181594 Stage IIIA Cervical Cancer AJCC v9 11 15364 -NCIT:C181595 Stage IIIB Cervical Cancer AJCC v9 11 15365 -NCIT:C181596 Stage IIIC Cervical Cancer AJCC v9 11 15366 -NCIT:C181597 Stage IIIC1 Cervical Cancer AJCC v9 12 15367 -NCIT:C181598 Stage IIIC2 Cervical Cancer AJCC v9 12 15368 -NCIT:C181599 Stage IV Cervical Cancer AJCC v9 10 15369 -NCIT:C181601 Stage IVA Cervical Cancer AJCC v9 11 15370 -NCIT:C181603 Stage IVB Cervical Cancer AJCC v9 11 15371 -NCIT:C186619 Cervical Cancer by FIGO Stage 2009 9 15372 -NCIT:C186620 Stage I Cervical Cancer FIGO 2009 10 15373 -NCIT:C186621 Stage IA Cervical Cancer FIGO 2009 11 15374 -NCIT:C186622 Stage IA1 Cervical Cancer FIGO 2009 12 15375 -NCIT:C186623 Stage IA2 Cervical Cancer FIGO 2009 12 15376 -NCIT:C186624 Stage IB Cervical Cancer FIGO 2009 11 15377 -NCIT:C186625 Stage IB1 Cervical Cancer FIGO 2009 12 15378 -NCIT:C186626 Stage IB2 Cervical Cancer FIGO 2009 12 15379 -NCIT:C186627 Stage II Cervical Cancer FIGO 2009 10 15380 -NCIT:C186628 Stage IIA Cervical Cancer FIGO 2009 11 15381 -NCIT:C186629 Stage IIA1 Cervical Cancer FIGO 2009 12 15382 -NCIT:C186630 Stage IIA2 Cervical Cancer FIGO 2009 12 15383 -NCIT:C186631 Stage IIB Cervical Cancer FIGO 2009 11 15384 -NCIT:C186632 Stage III Cervical Cancer FIGO 2009 10 15385 -NCIT:C186633 Stage IIIA Cervical Cancer FIGO 2009 11 15386 -NCIT:C186634 Stage IIIB Cervical Cancer FIGO 2009 11 15387 -NCIT:C186635 Stage IV Cervical Cancer FIGO 2009 10 15388 -NCIT:C186636 Stage IVA Cervical Cancer FIGO 2009 11 15389 -NCIT:C186637 Stage IVB Cervical Cancer FIGO 2009 11 15390 -NCIT:C27675 Human Papillomavirus-Related Cervical Carcinoma 9 15391 -NCIT:C27676 Human Papillomavirus-Related Cervical Squamous Cell Carcinoma 10 15392 -NCIT:C40192 Cervical Papillary Squamous Cell Carcinoma 11 15393 -NCIT:C40191 Cervical Warty Carcinoma 12 15394 -NCIT:C40194 Cervical Squamotransitional Carcinoma 12 15395 -NCIT:C27677 Human Papillomavirus-Related Cervical Adenocarcinoma 10 15396 -NCIT:C127907 Endocervical Adenocarcinoma, Usual-Type 11 15397 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 12 15398 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 12 15399 -NCIT:C40208 Cervical Villoglandular Adenocarcinoma 12 15400 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 11 15401 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 11 15402 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 11 15403 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 11 15404 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 11 15405 -NCIT:C40213 Cervical Adenoid Basal Carcinoma 9 15406 -NCIT:C4028 Cervical Squamous Cell Carcinoma 9 15407 -NCIT:C136649 Recurrent Cervical Squamous Cell Carcinoma 10 15408 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 10 15409 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 11 15410 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 11 15411 -NCIT:C174025 Unresectable Cervical Squamous Cell Carcinoma 10 15412 -NCIT:C180839 Cervical Squamous Cell Carcinoma, Not Otherwise Specified 10 15413 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 11 15414 -NCIT:C180841 Human Papillomavirus-Independent Cervical Squamous Cell Carcinoma 10 15415 -NCIT:C181034 Refractory Cervical Squamous Cell Carcinoma 10 15416 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 11 15417 -NCIT:C27676 Human Papillomavirus-Related Cervical Squamous Cell Carcinoma 10 15418 -NCIT:C40192 Cervical Papillary Squamous Cell Carcinoma 11 15419 -NCIT:C40191 Cervical Warty Carcinoma 12 15420 -NCIT:C40194 Cervical Squamotransitional Carcinoma 12 15421 -NCIT:C36094 Early Invasive Cervical Squamous Cell Carcinoma 10 15422 -NCIT:C40187 Cervical Keratinizing Squamous Cell Carcinoma 10 15423 -NCIT:C40188 Cervical Non-Keratinizing Squamous Cell Carcinoma 10 15424 -NCIT:C40189 Cervical Basaloid Carcinoma 10 15425 -NCIT:C40190 Cervical Verrucous Carcinoma 10 15426 -NCIT:C40193 Cervical Lymphoepithelioma-Like Carcinoma 10 15427 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 10 15428 -NCIT:C4029 Cervical Adenocarcinoma 9 15429 -NCIT:C127915 Cervical Adenocarcinoma Admixed with Neuroendocrine Carcinoma 10 15430 -NCIT:C136651 Recurrent Cervical Adenocarcinoma 10 15431 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 11 15432 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 10 15433 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 11 15434 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 12 15435 -NCIT:C156304 Advanced Cervical Adenocarcinoma 11 15436 -NCIT:C174029 Unresectable Cervical Adenocarcinoma 10 15437 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 11 15438 -NCIT:C180848 Human Papillomavirus-Independent Cervical Adenocarcinoma 10 15439 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 11 15440 -NCIT:C40201 Cervical Serous Adenocarcinoma 11 15441 -NCIT:C40206 Human Papillomavirus-Independent Cervical Adenocarcinoma, Gastric-Type 11 15442 -NCIT:C40254 Cervical Mesonephric Adenocarcinoma 11 15443 -NCIT:C6343 Cervical Endometrioid Adenocarcinoma 11 15444 -NCIT:C6344 Human Papillomavirus-Independent Cervical Adenocarcinoma, Clear Cell-Type 11 15445 -NCIT:C180870 Cervical Adenocarcinoma, Not Otherwise Specified 10 15446 -NCIT:C181036 Refractory Cervical Adenocarcinoma 10 15447 -NCIT:C27677 Human Papillomavirus-Related Cervical Adenocarcinoma 10 15448 -NCIT:C127907 Endocervical Adenocarcinoma, Usual-Type 11 15449 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 12 15450 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 12 15451 -NCIT:C40208 Cervical Villoglandular Adenocarcinoma 12 15452 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 11 15453 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 11 15454 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 11 15455 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 11 15456 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 11 15457 -NCIT:C36095 Cervical Mucinous Adenocarcinoma 10 15458 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 11 15459 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 11 15460 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 11 15461 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 11 15462 -NCIT:C40206 Human Papillomavirus-Independent Cervical Adenocarcinoma, Gastric-Type 11 15463 -NCIT:C36096 Early Invasive Cervical Adenocarcinoma 10 15464 -NCIT:C4520 Cervical Adenocarcinoma In Situ 10 15465 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 11 15466 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 11 15467 -NCIT:C4519 Cervical Adenosquamous Carcinoma 9 15468 -NCIT:C136650 Recurrent Cervical Adenosquamous Carcinoma 10 15469 -NCIT:C153390 Metastatic Cervical Adenosquamous Carcinoma 10 15470 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 11 15471 -NCIT:C174027 Unresectable Cervical Adenosquamous Carcinoma 10 15472 -NCIT:C40212 Cervical Poorly Differentiated Adenosquamous Carcinoma 10 15473 -NCIT:C6345 Cervical Undifferentiated Carcinoma 9 15474 -NCIT:C6346 Cervical Adenoid Cystic Carcinoma 9 15475 -NCIT:C7432 AIDS-Related Cervical Carcinoma 9 15476 -NCIT:C7453 Exocervical Carcinoma 9 15477 -NCIT:C7804 Recurrent Cervical Carcinoma 9 15478 -NCIT:C136649 Recurrent Cervical Squamous Cell Carcinoma 10 15479 -NCIT:C136650 Recurrent Cervical Adenosquamous Carcinoma 10 15480 -NCIT:C136651 Recurrent Cervical Adenocarcinoma 10 15481 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 11 15482 -NCIT:C8577 Invasive Cervical Carcinoma 9 15483 -NCIT:C90493 Cervical Cancer by AJCC v6 Stage 9 15484 -NCIT:C4000 Stage 0 Cervical Cancer AJCC v6 10 15485 -NCIT:C7803 Stage II Cervical Cancer AJCC v6 10 15486 -NCIT:C6319 Stage IIA Cervical Cancer AJCC v6 11 15487 -NCIT:C6320 Stage IIB Cervical Cancer AJCC v6 and v7 11 15488 -NCIT:C9204 Stage I Cervical Cancer AJCC v6 and v7 10 15489 -NCIT:C6313 Stage IA Cervical Cancer AJCC v6 and v7 11 15490 -NCIT:C6314 Stage IA1 Cervical Cancer AJCC v6 and v7 12 15491 -NCIT:C6315 Stage IA2 Cervical Cancer AJCC v6 and v7 12 15492 -NCIT:C6316 Stage IB Cervical Cancer AJCC v6 and v7 11 15493 -NCIT:C6317 Stage IB1 Cervical Cancer AJCC v6 and v7 12 15494 -NCIT:C6318 Stage IB2 Cervical Cancer AJCC v6 and v7 12 15495 -NCIT:C9205 Stage III Cervical Cancer AJCC v6 and v7 10 15496 -NCIT:C6321 Stage IIIB Cervical Cancer AJCC v6 and v7 11 15497 -NCIT:C6322 Stage IIIA Cervical Cancer AJCC v6 and v7 11 15498 -NCIT:C9206 Stage IV Cervical Cancer AJCC v6 and v7 10 15499 -NCIT:C6323 Stage IVA Cervical Cancer AJCC v6 and v7 11 15500 -NCIT:C6324 Stage IVB Cervical Cancer AJCC v6 and v7 11 15501 -NCIT:C91208 Cervical Cancer by AJCC v7 Stage 9 15502 -NCIT:C89550 Stage 0 Cervical Cancer AJCC v7 10 15503 -NCIT:C4520 Cervical Adenocarcinoma In Situ 11 15504 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 12 15505 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 12 15506 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 11 15507 -NCIT:C89551 Stage II Cervical Cancer AJCC v7 10 15508 -NCIT:C6320 Stage IIB Cervical Cancer AJCC v6 and v7 11 15509 -NCIT:C89552 Stage IIA Cervical Cancer AJCC v7 11 15510 -NCIT:C95172 Stage IIA1 Cervical Cancer AJCC v7 12 15511 -NCIT:C95173 Stage IIA2 Cervical Cancer AJCC v7 12 15512 -NCIT:C9204 Stage I Cervical Cancer AJCC v6 and v7 10 15513 -NCIT:C6313 Stage IA Cervical Cancer AJCC v6 and v7 11 15514 -NCIT:C6314 Stage IA1 Cervical Cancer AJCC v6 and v7 12 15515 -NCIT:C6315 Stage IA2 Cervical Cancer AJCC v6 and v7 12 15516 -NCIT:C6316 Stage IB Cervical Cancer AJCC v6 and v7 11 15517 -NCIT:C6317 Stage IB1 Cervical Cancer AJCC v6 and v7 12 15518 -NCIT:C6318 Stage IB2 Cervical Cancer AJCC v6 and v7 12 15519 -NCIT:C9205 Stage III Cervical Cancer AJCC v6 and v7 10 15520 -NCIT:C6321 Stage IIIB Cervical Cancer AJCC v6 and v7 11 15521 -NCIT:C6322 Stage IIIA Cervical Cancer AJCC v6 and v7 11 15522 -NCIT:C9206 Stage IV Cervical Cancer AJCC v6 and v7 10 15523 -NCIT:C6323 Stage IVA Cervical Cancer AJCC v6 and v7 11 15524 -NCIT:C6324 Stage IVB Cervical Cancer AJCC v6 and v7 11 15525 -NCIT:C3609 Benign Uterine Neoplasm 6 15526 -NCIT:C3607 Benign Cervical Neoplasm 7 15527 -NCIT:C128053 Benign Cervical Soft Tissue Neoplasm 8 15528 -NCIT:C128046 Cervical Leiomyoma 9 15529 -NCIT:C40266 Cervical Rhabdomyoma 9 15530 -NCIT:C34584 Endocervical Polyp 8 15531 -NCIT:C6856 Cervical Microglandular Polyp 9 15532 -NCIT:C40215 Cervical Mullerian Papilloma 8 15533 -NCIT:C40227 Benign Cervical Mixed Epithelial and Mesenchymal Neoplasm 8 15534 -NCIT:C40230 Cervical Adenofibroma 9 15535 -NCIT:C40231 Cervical Adenomyoma 9 15536 -NCIT:C40232 Cervical Adenomyoma, Endocervical-Type 10 15537 -NCIT:C40233 Cervical Adenomyoma, Mesonephric-Type 10 15538 -NCIT:C40234 Cervical Atypical Polypoid Adenomyoma 10 15539 -NCIT:C40240 Cervical Blue Nevus 8 15540 -NCIT:C6342 Cervical Squamous Papilloma 8 15541 -NCIT:C3608 Benign Uterine Corpus Neoplasm 7 15542 -NCIT:C127071 Benign Uterine Corpus PEComa 8 15543 -NCIT:C27250 Uterine Corpus Adenomatoid Tumor 8 15544 -NCIT:C3434 Uterine Corpus Leiomyoma 8 15545 -NCIT:C126975 Uterine Corpus Hydropic Leiomyoma 9 15546 -NCIT:C3511 Uterine Corpus Degenerated Leiomyoma 9 15547 -NCIT:C40162 Uterine Corpus Leiomyoma, Mitotically Active Variant 9 15548 -NCIT:C40163 Uterine Corpus Cellular Leiomyoma 9 15549 -NCIT:C40164 Uterine Corpus Epithelioid Leiomyoma 9 15550 -NCIT:C40165 Uterine Corpus Apoplectic Leiomyoma 9 15551 -NCIT:C40166 Uterine Corpus Myxoid Leiomyoma 9 15552 -NCIT:C40167 Uterine Corpus Bizarre Leiomyoma 9 15553 -NCIT:C40168 Uterine Corpus Lipoleiomyoma 9 15554 -NCIT:C40170 Uterine Corpus Diffuse Leiomyomatosis 9 15555 -NCIT:C40172 Uterine Corpus Dissecting Leiomyoma 9 15556 -NCIT:C40173 Uterine Corpus Metastasizing Leiomyoma 9 15557 -NCIT:C5356 Uterine Corpus Intravenous Leiomyomatosis 9 15558 -NCIT:C4262 Endometrial Stromal Nodule 8 15559 -NCIT:C4894 Benign Endometrial Neoplasm 8 15560 -NCIT:C6335 Benign Uterine Corpus Mixed Epithelial and Mesenchymal Neoplasm 8 15561 -NCIT:C6337 Uterine Corpus Adenofibroma 9 15562 -NCIT:C6338 Uterine Corpus Adenomyoma 9 15563 -NCIT:C40235 Uterine Corpus Atypical Polypoid Adenomyoma 10 15564 -NCIT:C6433 Endometrial Polyp 8 15565 -NCIT:C6300 Uterine Corpus Neoplasm 6 15566 -NCIT:C126771 Uterine Corpus Neuroendocrine Neoplasm 7 15567 -NCIT:C126773 Uterine Corpus Neuroendocrine Tumor G1 8 15568 -NCIT:C171033 Endometrial Neuroendocrine Carcinoma 8 15569 -NCIT:C126772 Endometrial Large Cell Neuroendocrine Carcinoma 9 15570 -NCIT:C40155 Endometrial Small Cell Neuroendocrine Carcinoma 9 15571 -NCIT:C127077 Uterine Corpus Germ Cell Tumor 7 15572 -NCIT:C3012 Endometrial Neoplasm 7 15573 -NCIT:C27789 Endometrial Atypical Hyperplasia/Endometrioid Intraepithelial Neoplasia 8 15574 -NCIT:C27815 Malignant Endometrial Neoplasm 8 15575 -NCIT:C181910 Endometrial Mucosa-Associated Lymphoid Tissue Lymphoma 9 15576 -NCIT:C40219 Uterine Corpus Endometrial Stromal Sarcoma 9 15577 -NCIT:C126998 Uterine Corpus High Grade Endometrial Stromal Sarcoma 10 15578 -NCIT:C139882 Uterine Corpus Endometrial Stromal Sarcoma by AJCC v8 Stage 10 15579 -NCIT:C139883 Stage I Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 15580 -NCIT:C139884 Stage IA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 15581 -NCIT:C139885 Stage IB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 15582 -NCIT:C139886 Stage II Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 15583 -NCIT:C139887 Stage III Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 15584 -NCIT:C139888 Stage IIIA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 15585 -NCIT:C139889 Stage IIIB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 15586 -NCIT:C139890 Stage IIIC Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 15587 -NCIT:C139891 Stage IV Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 15588 -NCIT:C139892 Stage IVA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 15589 -NCIT:C139893 Stage IVB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 15590 -NCIT:C40223 Uterine Corpus Low Grade Endometrial Stromal Sarcoma 10 15591 -NCIT:C7558 Endometrial Carcinoma 9 15592 -NCIT:C114656 Endometrial Adenosquamous Carcinoma 10 15593 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 11 15594 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 11 15595 -NCIT:C126769 Endometrial Dedifferentiated Carcinoma 10 15596 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 11 15597 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 11 15598 -NCIT:C150093 Refractory Endometrial Carcinoma 10 15599 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 11 15600 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 11 15601 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 11 15602 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 11 15603 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 12 15604 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 12 15605 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 12 15606 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 12 15607 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 12 15608 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 11 15609 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 11 15610 -NCIT:C150094 Recurrent Endometrial Carcinoma 10 15611 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 11 15612 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 11 15613 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 12 15614 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 12 15615 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 12 15616 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 12 15617 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 12 15618 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 11 15619 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 11 15620 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 11 15621 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 11 15622 -NCIT:C190200 Locally Recurrent Endometrial Carcinoma 11 15623 -NCIT:C156068 Metastatic Endometrial Carcinoma 10 15624 -NCIT:C159676 Advanced Endometrial Carcinoma 11 15625 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 12 15626 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 15627 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 15628 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 12 15629 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 11 15630 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 12 15631 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 15632 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 12 15633 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 11 15634 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 11 15635 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 12 15636 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 11 15637 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 12 15638 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 15639 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 12 15640 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 15641 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 15642 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 12 15643 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 15644 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 15645 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 12 15646 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 15647 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 12 15648 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 12 15649 -NCIT:C171033 Endometrial Neuroendocrine Carcinoma 10 15650 -NCIT:C126772 Endometrial Large Cell Neuroendocrine Carcinoma 11 15651 -NCIT:C40155 Endometrial Small Cell Neuroendocrine Carcinoma 11 15652 -NCIT:C171610 Unresectable Endometrial Carcinoma 10 15653 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 11 15654 -NCIT:C180335 Microsatellite Stable Endometrial Carcinoma 10 15655 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 11 15656 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 12 15657 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 11 15658 -NCIT:C190680 High Grade Endometrial Carcinoma 10 15659 -NCIT:C27838 Endometrial Serous Adenocarcinoma 11 15660 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 12 15661 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 12 15662 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 12 15663 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 15664 -NCIT:C187374 Platinum-Sensitive Endometrial Serous Adenocarcinoma 12 15665 -NCIT:C40148 High Grade Endometrial Endometrioid Adenocarcinoma 11 15666 -NCIT:C40156 Endometrial Undifferentiated Carcinoma 11 15667 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 12 15668 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 12 15669 -NCIT:C8028 Endometrial Clear Cell Adenocarcinoma 11 15670 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 12 15671 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 12 15672 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 12 15673 -NCIT:C40154 Endometrial Transitional Cell Carcinoma 10 15674 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 11 15675 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 11 15676 -NCIT:C7359 Endometrial Adenocarcinoma 10 15677 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 11 15678 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 12 15679 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 12 15680 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 12 15681 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 12 15682 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 12 15683 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 11 15684 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 12 15685 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 12 15686 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 12 15687 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 12 15688 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 12 15689 -NCIT:C179322 Endometrial Mesonephric-Like Adenocarcinoma 11 15690 -NCIT:C180536 Endometrial Mucinous Adenocarcinoma, Intestinal-Type 11 15691 -NCIT:C180537 Endometrial Mucinous Adenocarcinoma, Gastric-Type 11 15692 -NCIT:C39749 Type II Endometrial Adenocarcinoma 11 15693 -NCIT:C27838 Endometrial Serous Adenocarcinoma 12 15694 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 13 15695 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 13 15696 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 13 15697 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 14 15698 -NCIT:C187374 Platinum-Sensitive Endometrial Serous Adenocarcinoma 13 15699 -NCIT:C40152 Serous Endometrial Intraepithelial Carcinoma 12 15700 -NCIT:C8028 Endometrial Clear Cell Adenocarcinoma 12 15701 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 13 15702 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 13 15703 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 13 15704 -NCIT:C40145 Type I Endometrial Adenocarcinoma 11 15705 -NCIT:C40144 Endometrial Mucinous Adenocarcinoma 12 15706 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 13 15707 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 13 15708 -NCIT:C40149 FIGO Grade 1 Endometrial Mucinous Adenocarcinoma 13 15709 -NCIT:C40150 FIGO Grade 2 Endometrial Mucinous Adenocarcinoma 13 15710 -NCIT:C40151 FIGO Grade 3 Endometrial Mucinous Adenocarcinoma 13 15711 -NCIT:C6287 Endometrial Endometrioid Adenocarcinoma 12 15712 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 13 15713 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 13 15714 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 13 15715 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 14 15716 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 14 15717 -NCIT:C180510 Low Grade Endometrial Endometrioid Adenocarcinoma 13 15718 -NCIT:C40146 FIGO Grade 1 Endometrial Endometrioid Adenocarcinoma 14 15719 -NCIT:C40147 FIGO Grade 2 Endometrial Endometrioid Adenocarcinoma 14 15720 -NCIT:C180512 POLE-Ultramutated Endometrial Endometrioid Adenocarcinoma 13 15721 -NCIT:C180514 Mismatch Repair-Deficient Endometrial Endometrioid Adenocarcinoma 13 15722 -NCIT:C180515 p53-Mutant Endometrial Endometrioid Adenocarcinoma 13 15723 -NCIT:C180516 No Specific Molecular Profile Endometrial Endometrioid Adenocarcinoma 13 15724 -NCIT:C27839 Endometrial Endometrioid Adenocarcinoma, Secretory Variant 13 15725 -NCIT:C27843 Endometrial Endometrioid Adenocarcinoma with Clear Cell Change 13 15726 -NCIT:C27844 Endometrial Endometrioid Adenocarcinoma with a Poorly Differentiated Carcinomatous Component 13 15727 -NCIT:C27845 Endometrial Endometrioid Adenocarcinoma with an Undifferentiated Carcinomatous Component 13 15728 -NCIT:C27846 Villoglandular Endometrial Endometrioid Adenocarcinoma 13 15729 -NCIT:C27848 Endometrial Endometrioid Adenocarcinoma, Ciliated Variant 13 15730 -NCIT:C27849 Oxyphilic Endometrial Endometrioid Adenocarcinoma 13 15731 -NCIT:C27850 Endometrial Endometrioid Adenocarcinoma with Spindled Epithelial Cells 13 15732 -NCIT:C40148 High Grade Endometrial Endometrioid Adenocarcinoma 13 15733 -NCIT:C6290 Endometrial Endometrioid Adenocarcinoma, Variant with Squamous Differentiation 13 15734 -NCIT:C40153 Endometrial Mixed Cell Adenocarcinoma 11 15735 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 12 15736 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 12 15737 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 12 15738 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 11 15739 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 12 15740 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 15741 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 12 15742 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 15743 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 15744 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 12 15745 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 15746 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 15747 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 12 15748 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 15749 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 12 15750 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 12 15751 -NCIT:C8719 Endometrial Squamous Cell Carcinoma 10 15752 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 11 15753 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 11 15754 -NCIT:C4894 Benign Endometrial Neoplasm 8 15755 -NCIT:C3556 Malignant Uterine Corpus Neoplasm 7 15756 -NCIT:C127072 Uterine Corpus Malignant PEComa 8 15757 -NCIT:C188074 Extramedullary Disease in Plasma Cell Myeloma Involving the Uterine Corpus 8 15758 -NCIT:C27246 Uterine Corpus Choriocarcinoma 8 15759 -NCIT:C27815 Malignant Endometrial Neoplasm 8 15760 -NCIT:C181910 Endometrial Mucosa-Associated Lymphoid Tissue Lymphoma 9 15761 -NCIT:C40219 Uterine Corpus Endometrial Stromal Sarcoma 9 15762 -NCIT:C126998 Uterine Corpus High Grade Endometrial Stromal Sarcoma 10 15763 -NCIT:C139882 Uterine Corpus Endometrial Stromal Sarcoma by AJCC v8 Stage 10 15764 -NCIT:C139883 Stage I Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 15765 -NCIT:C139884 Stage IA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 15766 -NCIT:C139885 Stage IB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 15767 -NCIT:C139886 Stage II Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 15768 -NCIT:C139887 Stage III Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 15769 -NCIT:C139888 Stage IIIA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 15770 -NCIT:C139889 Stage IIIB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 15771 -NCIT:C139890 Stage IIIC Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 15772 -NCIT:C139891 Stage IV Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 15773 -NCIT:C139892 Stage IVA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 15774 -NCIT:C139893 Stage IVB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 15775 -NCIT:C40223 Uterine Corpus Low Grade Endometrial Stromal Sarcoma 10 15776 -NCIT:C7558 Endometrial Carcinoma 9 15777 -NCIT:C114656 Endometrial Adenosquamous Carcinoma 10 15778 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 11 15779 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 11 15780 -NCIT:C126769 Endometrial Dedifferentiated Carcinoma 10 15781 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 11 15782 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 11 15783 -NCIT:C150093 Refractory Endometrial Carcinoma 10 15784 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 11 15785 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 11 15786 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 11 15787 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 11 15788 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 12 15789 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 12 15790 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 12 15791 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 12 15792 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 12 15793 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 11 15794 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 11 15795 -NCIT:C150094 Recurrent Endometrial Carcinoma 10 15796 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 11 15797 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 11 15798 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 12 15799 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 12 15800 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 12 15801 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 12 15802 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 12 15803 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 11 15804 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 11 15805 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 11 15806 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 11 15807 -NCIT:C190200 Locally Recurrent Endometrial Carcinoma 11 15808 -NCIT:C156068 Metastatic Endometrial Carcinoma 10 15809 -NCIT:C159676 Advanced Endometrial Carcinoma 11 15810 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 12 15811 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 15812 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 15813 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 12 15814 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 11 15815 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 12 15816 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 15817 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 12 15818 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 11 15819 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 11 15820 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 12 15821 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 11 15822 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 12 15823 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 15824 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 12 15825 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 15826 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 15827 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 12 15828 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 15829 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 15830 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 12 15831 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 15832 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 12 15833 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 12 15834 -NCIT:C171033 Endometrial Neuroendocrine Carcinoma 10 15835 -NCIT:C126772 Endometrial Large Cell Neuroendocrine Carcinoma 11 15836 -NCIT:C40155 Endometrial Small Cell Neuroendocrine Carcinoma 11 15837 -NCIT:C171610 Unresectable Endometrial Carcinoma 10 15838 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 11 15839 -NCIT:C180335 Microsatellite Stable Endometrial Carcinoma 10 15840 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 11 15841 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 12 15842 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 11 15843 -NCIT:C190680 High Grade Endometrial Carcinoma 10 15844 -NCIT:C27838 Endometrial Serous Adenocarcinoma 11 15845 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 12 15846 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 12 15847 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 12 15848 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 15849 -NCIT:C187374 Platinum-Sensitive Endometrial Serous Adenocarcinoma 12 15850 -NCIT:C40148 High Grade Endometrial Endometrioid Adenocarcinoma 11 15851 -NCIT:C40156 Endometrial Undifferentiated Carcinoma 11 15852 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 12 15853 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 12 15854 -NCIT:C8028 Endometrial Clear Cell Adenocarcinoma 11 15855 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 12 15856 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 12 15857 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 12 15858 -NCIT:C40154 Endometrial Transitional Cell Carcinoma 10 15859 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 11 15860 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 11 15861 -NCIT:C7359 Endometrial Adenocarcinoma 10 15862 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 11 15863 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 12 15864 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 12 15865 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 12 15866 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 12 15867 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 12 15868 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 11 15869 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 12 15870 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 12 15871 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 12 15872 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 12 15873 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 12 15874 -NCIT:C179322 Endometrial Mesonephric-Like Adenocarcinoma 11 15875 -NCIT:C180536 Endometrial Mucinous Adenocarcinoma, Intestinal-Type 11 15876 -NCIT:C180537 Endometrial Mucinous Adenocarcinoma, Gastric-Type 11 15877 -NCIT:C39749 Type II Endometrial Adenocarcinoma 11 15878 -NCIT:C27838 Endometrial Serous Adenocarcinoma 12 15879 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 13 15880 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 13 15881 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 13 15882 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 14 15883 -NCIT:C187374 Platinum-Sensitive Endometrial Serous Adenocarcinoma 13 15884 -NCIT:C40152 Serous Endometrial Intraepithelial Carcinoma 12 15885 -NCIT:C8028 Endometrial Clear Cell Adenocarcinoma 12 15886 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 13 15887 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 13 15888 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 13 15889 -NCIT:C40145 Type I Endometrial Adenocarcinoma 11 15890 -NCIT:C40144 Endometrial Mucinous Adenocarcinoma 12 15891 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 13 15892 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 13 15893 -NCIT:C40149 FIGO Grade 1 Endometrial Mucinous Adenocarcinoma 13 15894 -NCIT:C40150 FIGO Grade 2 Endometrial Mucinous Adenocarcinoma 13 15895 -NCIT:C40151 FIGO Grade 3 Endometrial Mucinous Adenocarcinoma 13 15896 -NCIT:C6287 Endometrial Endometrioid Adenocarcinoma 12 15897 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 13 15898 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 13 15899 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 13 15900 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 14 15901 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 14 15902 -NCIT:C180510 Low Grade Endometrial Endometrioid Adenocarcinoma 13 15903 -NCIT:C40146 FIGO Grade 1 Endometrial Endometrioid Adenocarcinoma 14 15904 -NCIT:C40147 FIGO Grade 2 Endometrial Endometrioid Adenocarcinoma 14 15905 -NCIT:C180512 POLE-Ultramutated Endometrial Endometrioid Adenocarcinoma 13 15906 -NCIT:C180514 Mismatch Repair-Deficient Endometrial Endometrioid Adenocarcinoma 13 15907 -NCIT:C180515 p53-Mutant Endometrial Endometrioid Adenocarcinoma 13 15908 -NCIT:C180516 No Specific Molecular Profile Endometrial Endometrioid Adenocarcinoma 13 15909 -NCIT:C27839 Endometrial Endometrioid Adenocarcinoma, Secretory Variant 13 15910 -NCIT:C27843 Endometrial Endometrioid Adenocarcinoma with Clear Cell Change 13 15911 -NCIT:C27844 Endometrial Endometrioid Adenocarcinoma with a Poorly Differentiated Carcinomatous Component 13 15912 -NCIT:C27845 Endometrial Endometrioid Adenocarcinoma with an Undifferentiated Carcinomatous Component 13 15913 -NCIT:C27846 Villoglandular Endometrial Endometrioid Adenocarcinoma 13 15914 -NCIT:C27848 Endometrial Endometrioid Adenocarcinoma, Ciliated Variant 13 15915 -NCIT:C27849 Oxyphilic Endometrial Endometrioid Adenocarcinoma 13 15916 -NCIT:C27850 Endometrial Endometrioid Adenocarcinoma with Spindled Epithelial Cells 13 15917 -NCIT:C40148 High Grade Endometrial Endometrioid Adenocarcinoma 13 15918 -NCIT:C6290 Endometrial Endometrioid Adenocarcinoma, Variant with Squamous Differentiation 13 15919 -NCIT:C40153 Endometrial Mixed Cell Adenocarcinoma 11 15920 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 12 15921 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 12 15922 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 12 15923 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 11 15924 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 12 15925 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 15926 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 12 15927 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 15928 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 15929 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 12 15930 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 15931 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 15932 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 12 15933 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 15934 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 12 15935 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 12 15936 -NCIT:C8719 Endometrial Squamous Cell Carcinoma 10 15937 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 11 15938 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 11 15939 -NCIT:C61574 Uterine Corpus Cancer 8 15940 -NCIT:C139801 Uterine Corpus Cancer by AJCC v8 Stage 9 15941 -NCIT:C139802 Stage I Uterine Corpus Cancer AJCC v8 10 15942 -NCIT:C139803 Stage IA Uterine Corpus Cancer AJCC v8 11 15943 -NCIT:C139804 Stage IB Uterine Corpus Cancer AJCC v8 11 15944 -NCIT:C139805 Stage II Uterine Corpus Cancer AJCC v8 10 15945 -NCIT:C139806 Stage III Uterine Corpus Cancer AJCC v8 10 15946 -NCIT:C139807 Stage IIIA Uterine Corpus Cancer AJCC v8 11 15947 -NCIT:C139808 Stage IIIB Uterine Corpus Cancer AJCC v8 11 15948 -NCIT:C139809 Stage IIIC Uterine Corpus Cancer AJCC v8 11 15949 -NCIT:C139810 Stage IIIC1 Uterine Corpus Cancer AJCC v8 12 15950 -NCIT:C139811 Stage IIIC2 Uterine Corpus Cancer AJCC v8 12 15951 -NCIT:C139812 Stage IV Uterine Corpus Cancer AJCC v8 10 15952 -NCIT:C139813 Stage IVA Uterine Corpus Cancer AJCC v8 11 15953 -NCIT:C139814 Stage IVB Uterine Corpus Cancer AJCC v8 11 15954 -NCIT:C150092 Refractory Uterine Corpus Cancer 9 15955 -NCIT:C150093 Refractory Endometrial Carcinoma 10 15956 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 11 15957 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 11 15958 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 11 15959 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 11 15960 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 12 15961 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 12 15962 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 12 15963 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 12 15964 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 12 15965 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 11 15966 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 11 15967 -NCIT:C158381 Refractory Uterine Corpus Carcinosarcoma 10 15968 -NCIT:C172450 Advanced Uterine Corpus Cancer 9 15969 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 10 15970 -NCIT:C159676 Advanced Endometrial Carcinoma 10 15971 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 11 15972 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 12 15973 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 12 15974 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 11 15975 -NCIT:C7558 Endometrial Carcinoma 9 15976 -NCIT:C114656 Endometrial Adenosquamous Carcinoma 10 15977 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 11 15978 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 11 15979 -NCIT:C126769 Endometrial Dedifferentiated Carcinoma 10 15980 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 11 15981 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 11 15982 -NCIT:C150093 Refractory Endometrial Carcinoma 10 15983 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 11 15984 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 11 15985 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 11 15986 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 11 15987 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 12 15988 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 12 15989 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 12 15990 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 12 15991 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 12 15992 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 11 15993 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 11 15994 -NCIT:C150094 Recurrent Endometrial Carcinoma 10 15995 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 11 15996 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 11 15997 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 12 15998 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 12 15999 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 12 16000 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 12 16001 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 12 16002 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 11 16003 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 11 16004 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 11 16005 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 11 16006 -NCIT:C190200 Locally Recurrent Endometrial Carcinoma 11 16007 -NCIT:C156068 Metastatic Endometrial Carcinoma 10 16008 -NCIT:C159676 Advanced Endometrial Carcinoma 11 16009 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 12 16010 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 16011 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 16012 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 12 16013 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 11 16014 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 12 16015 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 16016 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 12 16017 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 11 16018 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 11 16019 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 12 16020 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 11 16021 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 12 16022 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 16023 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 12 16024 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 16025 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 16026 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 12 16027 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 16028 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 16029 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 12 16030 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 16031 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 12 16032 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 12 16033 -NCIT:C171033 Endometrial Neuroendocrine Carcinoma 10 16034 -NCIT:C126772 Endometrial Large Cell Neuroendocrine Carcinoma 11 16035 -NCIT:C40155 Endometrial Small Cell Neuroendocrine Carcinoma 11 16036 -NCIT:C171610 Unresectable Endometrial Carcinoma 10 16037 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 11 16038 -NCIT:C180335 Microsatellite Stable Endometrial Carcinoma 10 16039 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 11 16040 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 12 16041 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 11 16042 -NCIT:C190680 High Grade Endometrial Carcinoma 10 16043 -NCIT:C27838 Endometrial Serous Adenocarcinoma 11 16044 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 12 16045 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 12 16046 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 12 16047 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 16048 -NCIT:C187374 Platinum-Sensitive Endometrial Serous Adenocarcinoma 12 16049 -NCIT:C40148 High Grade Endometrial Endometrioid Adenocarcinoma 11 16050 -NCIT:C40156 Endometrial Undifferentiated Carcinoma 11 16051 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 12 16052 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 12 16053 -NCIT:C8028 Endometrial Clear Cell Adenocarcinoma 11 16054 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 12 16055 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 12 16056 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 12 16057 -NCIT:C40154 Endometrial Transitional Cell Carcinoma 10 16058 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 11 16059 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 11 16060 -NCIT:C7359 Endometrial Adenocarcinoma 10 16061 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 11 16062 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 12 16063 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 12 16064 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 12 16065 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 12 16066 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 12 16067 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 11 16068 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 12 16069 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 12 16070 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 12 16071 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 12 16072 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 12 16073 -NCIT:C179322 Endometrial Mesonephric-Like Adenocarcinoma 11 16074 -NCIT:C180536 Endometrial Mucinous Adenocarcinoma, Intestinal-Type 11 16075 -NCIT:C180537 Endometrial Mucinous Adenocarcinoma, Gastric-Type 11 16076 -NCIT:C39749 Type II Endometrial Adenocarcinoma 11 16077 -NCIT:C27838 Endometrial Serous Adenocarcinoma 12 16078 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 13 16079 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 13 16080 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 13 16081 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 14 16082 -NCIT:C187374 Platinum-Sensitive Endometrial Serous Adenocarcinoma 13 16083 -NCIT:C40152 Serous Endometrial Intraepithelial Carcinoma 12 16084 -NCIT:C8028 Endometrial Clear Cell Adenocarcinoma 12 16085 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 13 16086 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 13 16087 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 13 16088 -NCIT:C40145 Type I Endometrial Adenocarcinoma 11 16089 -NCIT:C40144 Endometrial Mucinous Adenocarcinoma 12 16090 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 13 16091 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 13 16092 -NCIT:C40149 FIGO Grade 1 Endometrial Mucinous Adenocarcinoma 13 16093 -NCIT:C40150 FIGO Grade 2 Endometrial Mucinous Adenocarcinoma 13 16094 -NCIT:C40151 FIGO Grade 3 Endometrial Mucinous Adenocarcinoma 13 16095 -NCIT:C6287 Endometrial Endometrioid Adenocarcinoma 12 16096 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 13 16097 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 13 16098 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 13 16099 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 14 16100 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 14 16101 -NCIT:C180510 Low Grade Endometrial Endometrioid Adenocarcinoma 13 16102 -NCIT:C40146 FIGO Grade 1 Endometrial Endometrioid Adenocarcinoma 14 16103 -NCIT:C40147 FIGO Grade 2 Endometrial Endometrioid Adenocarcinoma 14 16104 -NCIT:C180512 POLE-Ultramutated Endometrial Endometrioid Adenocarcinoma 13 16105 -NCIT:C180514 Mismatch Repair-Deficient Endometrial Endometrioid Adenocarcinoma 13 16106 -NCIT:C180515 p53-Mutant Endometrial Endometrioid Adenocarcinoma 13 16107 -NCIT:C180516 No Specific Molecular Profile Endometrial Endometrioid Adenocarcinoma 13 16108 -NCIT:C27839 Endometrial Endometrioid Adenocarcinoma, Secretory Variant 13 16109 -NCIT:C27843 Endometrial Endometrioid Adenocarcinoma with Clear Cell Change 13 16110 -NCIT:C27844 Endometrial Endometrioid Adenocarcinoma with a Poorly Differentiated Carcinomatous Component 13 16111 -NCIT:C27845 Endometrial Endometrioid Adenocarcinoma with an Undifferentiated Carcinomatous Component 13 16112 -NCIT:C27846 Villoglandular Endometrial Endometrioid Adenocarcinoma 13 16113 -NCIT:C27848 Endometrial Endometrioid Adenocarcinoma, Ciliated Variant 13 16114 -NCIT:C27849 Oxyphilic Endometrial Endometrioid Adenocarcinoma 13 16115 -NCIT:C27850 Endometrial Endometrioid Adenocarcinoma with Spindled Epithelial Cells 13 16116 -NCIT:C40148 High Grade Endometrial Endometrioid Adenocarcinoma 13 16117 -NCIT:C6290 Endometrial Endometrioid Adenocarcinoma, Variant with Squamous Differentiation 13 16118 -NCIT:C40153 Endometrial Mixed Cell Adenocarcinoma 11 16119 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 12 16120 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 12 16121 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 12 16122 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 11 16123 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 12 16124 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 16125 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 12 16126 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 16127 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 16128 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 12 16129 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 16130 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 16131 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 12 16132 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 16133 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 12 16134 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 12 16135 -NCIT:C8719 Endometrial Squamous Cell Carcinoma 10 16136 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 11 16137 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 11 16138 -NCIT:C90494 Uterine Corpus Cancer by AJCC v6 Stage 9 16139 -NCIT:C4006 Stage IV Uterine Corpus Cancer AJCC v6 10 16140 -NCIT:C9071 Stage 0 Uterine Corpus Cancer AJCC v6 10 16141 -NCIT:C9207 Stage I Uterine Corpus Cancer AJCC v6 10 16142 -NCIT:C6303 Stage IC Uterine Corpus Cancer AJCC v6 11 16143 -NCIT:C9208 Stage II Uterine Corpus Cancer AJCC v6 10 16144 -NCIT:C6304 Stage IIA Uterine Corpus Cancer AJCC v6 11 16145 -NCIT:C6305 Stage IIB Uterine Corpus Cancer AJCC v6 11 16146 -NCIT:C9209 Stage III Uterine Corpus Cancer AJCC v6 10 16147 -NCIT:C9072 Recurrent Uterine Corpus Cancer 9 16148 -NCIT:C150094 Recurrent Endometrial Carcinoma 10 16149 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 11 16150 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 11 16151 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 12 16152 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 12 16153 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 12 16154 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 12 16155 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 12 16156 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 11 16157 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 11 16158 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 11 16159 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 11 16160 -NCIT:C190200 Locally Recurrent Endometrial Carcinoma 11 16161 -NCIT:C155818 Recurrent Uterine Corpus Carcinosarcoma 10 16162 -NCIT:C91218 Uterine Corpus Cancer by AJCC v7 Stage 9 16163 -NCIT:C89632 Stage 0 Uterine Corpus Cancer AJCC v7 10 16164 -NCIT:C89633 Stage I Uterine Corpus Cancer AJCC v7 10 16165 -NCIT:C6301 Stage IA Uterine Corpus Cancer AJCC v7 11 16166 -NCIT:C6302 Stage IB Uterine Corpus Cancer AJCC v7 11 16167 -NCIT:C89634 Stage II Uterine Corpus Cancer AJCC v7 10 16168 -NCIT:C89635 Stage III Uterine Corpus Cancer AJCC v7 10 16169 -NCIT:C6306 Stage IIIA Uterine Corpus Cancer AJCC v7 11 16170 -NCIT:C6307 Stage IIIB Uterine Corpus Cancer AJCC v7 11 16171 -NCIT:C6308 Stage IIIC Uterine Corpus Cancer AJCC v7 11 16172 -NCIT:C95174 Stage IIIC1 Uterine Corpus Cancer AJCC v7 12 16173 -NCIT:C95176 Stage IIIC2 Uterine Corpus Cancer AJCC v7 12 16174 -NCIT:C89636 Stage IV Uterine Corpus Cancer AJCC v7 10 16175 -NCIT:C6309 Stage IVA Uterine Corpus Cancer AJCC v7 11 16176 -NCIT:C6310 Stage IVB Uterine Corpus Cancer AJCC v7 11 16177 -NCIT:C9180 Uterine Corpus Carcinosarcoma 9 16178 -NCIT:C155818 Recurrent Uterine Corpus Carcinosarcoma 10 16179 -NCIT:C158381 Refractory Uterine Corpus Carcinosarcoma 10 16180 -NCIT:C170931 Metastatic Uterine Corpus Carcinosarcoma 10 16181 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 11 16182 -NCIT:C6311 Malignant Uterine Corpus Mixed Epithelial and Mesenchymal Neoplasm 8 16183 -NCIT:C40182 Uterine Corpus Carcinofibroma 9 16184 -NCIT:C6336 Uterine Corpus Adenosarcoma 9 16185 -NCIT:C139894 Uterine Corpus Adenosarcoma by AJCC v8 Stage 10 16186 -NCIT:C139895 Stage I Uterine Corpus Adenosarcoma AJCC v8 11 16187 -NCIT:C139896 Stage IA Uterine Corpus Adenosarcoma AJCC v8 12 16188 -NCIT:C139897 Stage IB Uterine Corpus Adenosarcoma AJCC v8 12 16189 -NCIT:C139898 Stage IC Uterine Corpus Adenosarcoma AJCC v8 12 16190 -NCIT:C139899 Stage II Uterine Corpus Adenosarcoma AJCC v8 11 16191 -NCIT:C139900 Stage III Uterine Corpus Adenosarcoma AJCC v8 11 16192 -NCIT:C139901 Stage IIIA Uterine Corpus Adenosarcoma AJCC v8 12 16193 -NCIT:C139902 Stage IIIB Uterine Corpus Adenosarcoma AJCC v8 12 16194 -NCIT:C139903 Stage IIIC Uterine Corpus Adenosarcoma AJCC v8 12 16195 -NCIT:C139904 Stage IV Uterine Corpus Adenosarcoma AJCC v8 11 16196 -NCIT:C139905 Stage IVA Uterine Corpus Adenosarcoma AJCC v8 12 16197 -NCIT:C139906 Stage IVB Uterine Corpus Adenosarcoma AJCC v8 12 16198 -NCIT:C9180 Uterine Corpus Carcinosarcoma 9 16199 -NCIT:C155818 Recurrent Uterine Corpus Carcinosarcoma 10 16200 -NCIT:C158381 Refractory Uterine Corpus Carcinosarcoma 10 16201 -NCIT:C170931 Metastatic Uterine Corpus Carcinosarcoma 10 16202 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 11 16203 -NCIT:C6339 Uterine Corpus Sarcoma 8 16204 -NCIT:C127058 Uterine Corpus Rhabdomyosarcoma 9 16205 -NCIT:C136708 Uterine Corpus Sarcoma by AJCC v7 Stage 9 16206 -NCIT:C8258 Stage I Uterine Sarcoma AJCC v7 10 16207 -NCIT:C87132 Stage IA Uterine Sarcoma AJCC v7 11 16208 -NCIT:C87133 Stage IB Uterine Sarcoma AJCC v7 11 16209 -NCIT:C87134 Stage IC Uterine Sarcoma AJCC v7 11 16210 -NCIT:C8259 Stage II Uterine Sarcoma AJCC v7 10 16211 -NCIT:C115130 Stage IIA Uterine Sarcoma AJCC v7 11 16212 -NCIT:C115131 Stage IIB Uterine Sarcoma AJCC v7 11 16213 -NCIT:C8260 Stage III Uterine Sarcoma AJCC v7 10 16214 -NCIT:C87135 Stage IIIA Uterine Sarcoma AJCC v7 11 16215 -NCIT:C87137 Stage IIIB Uterine Sarcoma AJCC v7 11 16216 -NCIT:C87138 Stage IIIC Uterine Sarcoma AJCC v7 11 16217 -NCIT:C9179 Stage IV Uterine Sarcoma AJCC v7 10 16218 -NCIT:C87140 Stage IVA Uterine Sarcoma AJCC v7 11 16219 -NCIT:C87144 Stage IVB Uterine Sarcoma AJCC v7 11 16220 -NCIT:C139869 Uterine Corpus Sarcoma by AJCC v8 Stage 9 16221 -NCIT:C139870 Uterine Corpus Leiomyosarcoma by AJCC v8 Stage 10 16222 -NCIT:C139871 Stage I Uterine Corpus Leiomyosarcoma AJCC v8 11 16223 -NCIT:C139872 Stage IA Uterine Corpus Leiomyosarcoma AJCC v8 12 16224 -NCIT:C139873 Stage IB Uterine Corpus Leiomyosarcoma AJCC v8 12 16225 -NCIT:C139874 Stage II Uterine Corpus Leiomyosarcoma AJCC v8 11 16226 -NCIT:C139875 Stage III Uterine Corpus Leiomyosarcoma AJCC v8 11 16227 -NCIT:C139876 Stage IIIA Uterine Corpus Leiomyosarcoma AJCC v8 12 16228 -NCIT:C139877 Stage IIIB Uterine Corpus Leiomyosarcoma AJCC v8 12 16229 -NCIT:C139878 Stage IIIC Uterine Corpus Leiomyosarcoma AJCC v8 12 16230 -NCIT:C139879 Stage IV Uterine Corpus Leiomyosarcoma AJCC v8 11 16231 -NCIT:C139880 Stage IVA Uterine Corpus Leiomyosarcoma AJCC v8 12 16232 -NCIT:C139881 Stage IVB Uterine Corpus Leiomyosarcoma AJCC v8 12 16233 -NCIT:C139882 Uterine Corpus Endometrial Stromal Sarcoma by AJCC v8 Stage 10 16234 -NCIT:C139883 Stage I Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 16235 -NCIT:C139884 Stage IA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 16236 -NCIT:C139885 Stage IB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 16237 -NCIT:C139886 Stage II Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 16238 -NCIT:C139887 Stage III Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 16239 -NCIT:C139888 Stage IIIA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 16240 -NCIT:C139889 Stage IIIB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 16241 -NCIT:C139890 Stage IIIC Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 16242 -NCIT:C139891 Stage IV Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 16243 -NCIT:C139892 Stage IVA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 16244 -NCIT:C139893 Stage IVB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 16245 -NCIT:C139894 Uterine Corpus Adenosarcoma by AJCC v8 Stage 10 16246 -NCIT:C139895 Stage I Uterine Corpus Adenosarcoma AJCC v8 11 16247 -NCIT:C139896 Stage IA Uterine Corpus Adenosarcoma AJCC v8 12 16248 -NCIT:C139897 Stage IB Uterine Corpus Adenosarcoma AJCC v8 12 16249 -NCIT:C139898 Stage IC Uterine Corpus Adenosarcoma AJCC v8 12 16250 -NCIT:C139899 Stage II Uterine Corpus Adenosarcoma AJCC v8 11 16251 -NCIT:C139900 Stage III Uterine Corpus Adenosarcoma AJCC v8 11 16252 -NCIT:C139901 Stage IIIA Uterine Corpus Adenosarcoma AJCC v8 12 16253 -NCIT:C139902 Stage IIIB Uterine Corpus Adenosarcoma AJCC v8 12 16254 -NCIT:C139903 Stage IIIC Uterine Corpus Adenosarcoma AJCC v8 12 16255 -NCIT:C139904 Stage IV Uterine Corpus Adenosarcoma AJCC v8 11 16256 -NCIT:C139905 Stage IVA Uterine Corpus Adenosarcoma AJCC v8 12 16257 -NCIT:C139906 Stage IVB Uterine Corpus Adenosarcoma AJCC v8 12 16258 -NCIT:C180546 Uterine Corpus Central Primitive Neuroectodermal Tumor 9 16259 -NCIT:C190009 Metastatic Uterine Corpus Sarcoma 9 16260 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 10 16261 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 11 16262 -NCIT:C190016 Unresectable Uterine Corpus Sarcoma 9 16263 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 10 16264 -NCIT:C40219 Uterine Corpus Endometrial Stromal Sarcoma 9 16265 -NCIT:C126998 Uterine Corpus High Grade Endometrial Stromal Sarcoma 10 16266 -NCIT:C139882 Uterine Corpus Endometrial Stromal Sarcoma by AJCC v8 Stage 10 16267 -NCIT:C139883 Stage I Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 16268 -NCIT:C139884 Stage IA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 16269 -NCIT:C139885 Stage IB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 16270 -NCIT:C139886 Stage II Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 16271 -NCIT:C139887 Stage III Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 16272 -NCIT:C139888 Stage IIIA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 16273 -NCIT:C139889 Stage IIIB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 16274 -NCIT:C139890 Stage IIIC Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 16275 -NCIT:C139891 Stage IV Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 16276 -NCIT:C139892 Stage IVA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 16277 -NCIT:C139893 Stage IVB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 16278 -NCIT:C40223 Uterine Corpus Low Grade Endometrial Stromal Sarcoma 10 16279 -NCIT:C6336 Uterine Corpus Adenosarcoma 9 16280 -NCIT:C139894 Uterine Corpus Adenosarcoma by AJCC v8 Stage 10 16281 -NCIT:C139895 Stage I Uterine Corpus Adenosarcoma AJCC v8 11 16282 -NCIT:C139896 Stage IA Uterine Corpus Adenosarcoma AJCC v8 12 16283 -NCIT:C139897 Stage IB Uterine Corpus Adenosarcoma AJCC v8 12 16284 -NCIT:C139898 Stage IC Uterine Corpus Adenosarcoma AJCC v8 12 16285 -NCIT:C139899 Stage II Uterine Corpus Adenosarcoma AJCC v8 11 16286 -NCIT:C139900 Stage III Uterine Corpus Adenosarcoma AJCC v8 11 16287 -NCIT:C139901 Stage IIIA Uterine Corpus Adenosarcoma AJCC v8 12 16288 -NCIT:C139902 Stage IIIB Uterine Corpus Adenosarcoma AJCC v8 12 16289 -NCIT:C139903 Stage IIIC Uterine Corpus Adenosarcoma AJCC v8 12 16290 -NCIT:C139904 Stage IV Uterine Corpus Adenosarcoma AJCC v8 11 16291 -NCIT:C139905 Stage IVA Uterine Corpus Adenosarcoma AJCC v8 12 16292 -NCIT:C139906 Stage IVB Uterine Corpus Adenosarcoma AJCC v8 12 16293 -NCIT:C6340 Uterine Corpus Leiomyosarcoma 9 16294 -NCIT:C139870 Uterine Corpus Leiomyosarcoma by AJCC v8 Stage 10 16295 -NCIT:C139871 Stage I Uterine Corpus Leiomyosarcoma AJCC v8 11 16296 -NCIT:C139872 Stage IA Uterine Corpus Leiomyosarcoma AJCC v8 12 16297 -NCIT:C139873 Stage IB Uterine Corpus Leiomyosarcoma AJCC v8 12 16298 -NCIT:C139874 Stage II Uterine Corpus Leiomyosarcoma AJCC v8 11 16299 -NCIT:C139875 Stage III Uterine Corpus Leiomyosarcoma AJCC v8 11 16300 -NCIT:C139876 Stage IIIA Uterine Corpus Leiomyosarcoma AJCC v8 12 16301 -NCIT:C139877 Stage IIIB Uterine Corpus Leiomyosarcoma AJCC v8 12 16302 -NCIT:C139878 Stage IIIC Uterine Corpus Leiomyosarcoma AJCC v8 12 16303 -NCIT:C139879 Stage IV Uterine Corpus Leiomyosarcoma AJCC v8 11 16304 -NCIT:C139880 Stage IVA Uterine Corpus Leiomyosarcoma AJCC v8 12 16305 -NCIT:C139881 Stage IVB Uterine Corpus Leiomyosarcoma AJCC v8 12 16306 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 10 16307 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 10 16308 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 11 16309 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 10 16310 -NCIT:C40174 Uterine Corpus Epithelioid Leiomyosarcoma 10 16311 -NCIT:C40175 Uterine Corpus Myxoid Leiomyosarcoma 10 16312 -NCIT:C8261 Recurrent Uterine Corpus Sarcoma 9 16313 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 10 16314 -NCIT:C8972 Uterine Corpus Undifferentiated Sarcoma 9 16315 -NCIT:C3608 Benign Uterine Corpus Neoplasm 7 16316 -NCIT:C127071 Benign Uterine Corpus PEComa 8 16317 -NCIT:C27250 Uterine Corpus Adenomatoid Tumor 8 16318 -NCIT:C3434 Uterine Corpus Leiomyoma 8 16319 -NCIT:C126975 Uterine Corpus Hydropic Leiomyoma 9 16320 -NCIT:C3511 Uterine Corpus Degenerated Leiomyoma 9 16321 -NCIT:C40162 Uterine Corpus Leiomyoma, Mitotically Active Variant 9 16322 -NCIT:C40163 Uterine Corpus Cellular Leiomyoma 9 16323 -NCIT:C40164 Uterine Corpus Epithelioid Leiomyoma 9 16324 -NCIT:C40165 Uterine Corpus Apoplectic Leiomyoma 9 16325 -NCIT:C40166 Uterine Corpus Myxoid Leiomyoma 9 16326 -NCIT:C40167 Uterine Corpus Bizarre Leiomyoma 9 16327 -NCIT:C40168 Uterine Corpus Lipoleiomyoma 9 16328 -NCIT:C40170 Uterine Corpus Diffuse Leiomyomatosis 9 16329 -NCIT:C40172 Uterine Corpus Dissecting Leiomyoma 9 16330 -NCIT:C40173 Uterine Corpus Metastasizing Leiomyoma 9 16331 -NCIT:C5356 Uterine Corpus Intravenous Leiomyomatosis 9 16332 -NCIT:C4262 Endometrial Stromal Nodule 8 16333 -NCIT:C4894 Benign Endometrial Neoplasm 8 16334 -NCIT:C6335 Benign Uterine Corpus Mixed Epithelial and Mesenchymal Neoplasm 8 16335 -NCIT:C6337 Uterine Corpus Adenofibroma 9 16336 -NCIT:C6338 Uterine Corpus Adenomyoma 9 16337 -NCIT:C40235 Uterine Corpus Atypical Polypoid Adenomyoma 10 16338 -NCIT:C6433 Endometrial Polyp 8 16339 -NCIT:C40179 Uterine Corpus Soft Tissue Neoplasm 7 16340 -NCIT:C180545 Uterine Corpus Inflammatory Myofibroblastic Tumor 8 16341 -NCIT:C40176 Uterine Corpus Smooth Muscle Neoplasm 8 16342 -NCIT:C3434 Uterine Corpus Leiomyoma 9 16343 -NCIT:C126975 Uterine Corpus Hydropic Leiomyoma 10 16344 -NCIT:C3511 Uterine Corpus Degenerated Leiomyoma 10 16345 -NCIT:C40162 Uterine Corpus Leiomyoma, Mitotically Active Variant 10 16346 -NCIT:C40163 Uterine Corpus Cellular Leiomyoma 10 16347 -NCIT:C40164 Uterine Corpus Epithelioid Leiomyoma 10 16348 -NCIT:C40165 Uterine Corpus Apoplectic Leiomyoma 10 16349 -NCIT:C40166 Uterine Corpus Myxoid Leiomyoma 10 16350 -NCIT:C40167 Uterine Corpus Bizarre Leiomyoma 10 16351 -NCIT:C40168 Uterine Corpus Lipoleiomyoma 10 16352 -NCIT:C40170 Uterine Corpus Diffuse Leiomyomatosis 10 16353 -NCIT:C40172 Uterine Corpus Dissecting Leiomyoma 10 16354 -NCIT:C40173 Uterine Corpus Metastasizing Leiomyoma 10 16355 -NCIT:C5356 Uterine Corpus Intravenous Leiomyomatosis 10 16356 -NCIT:C40177 Uterine Corpus Smooth Muscle Tumor of Uncertain Malignant Potential 9 16357 -NCIT:C180540 Uterine Corpus Spindle Smooth Muscle Tumor of Uncertain Malignant Potential 10 16358 -NCIT:C180541 Uterine Corpus Myxoid Smooth Muscle Tumor of Uncertain Malignant Potential 10 16359 -NCIT:C180542 Uterine Corpus Epithelioid Smooth Muscle Tumor of Uncertain Malignant Potential 10 16360 -NCIT:C6340 Uterine Corpus Leiomyosarcoma 9 16361 -NCIT:C139870 Uterine Corpus Leiomyosarcoma by AJCC v8 Stage 10 16362 -NCIT:C139871 Stage I Uterine Corpus Leiomyosarcoma AJCC v8 11 16363 -NCIT:C139872 Stage IA Uterine Corpus Leiomyosarcoma AJCC v8 12 16364 -NCIT:C139873 Stage IB Uterine Corpus Leiomyosarcoma AJCC v8 12 16365 -NCIT:C139874 Stage II Uterine Corpus Leiomyosarcoma AJCC v8 11 16366 -NCIT:C139875 Stage III Uterine Corpus Leiomyosarcoma AJCC v8 11 16367 -NCIT:C139876 Stage IIIA Uterine Corpus Leiomyosarcoma AJCC v8 12 16368 -NCIT:C139877 Stage IIIB Uterine Corpus Leiomyosarcoma AJCC v8 12 16369 -NCIT:C139878 Stage IIIC Uterine Corpus Leiomyosarcoma AJCC v8 12 16370 -NCIT:C139879 Stage IV Uterine Corpus Leiomyosarcoma AJCC v8 11 16371 -NCIT:C139880 Stage IVA Uterine Corpus Leiomyosarcoma AJCC v8 12 16372 -NCIT:C139881 Stage IVB Uterine Corpus Leiomyosarcoma AJCC v8 12 16373 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 10 16374 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 10 16375 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 11 16376 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 10 16377 -NCIT:C40174 Uterine Corpus Epithelioid Leiomyosarcoma 10 16378 -NCIT:C40175 Uterine Corpus Myxoid Leiomyosarcoma 10 16379 -NCIT:C40178 Mixed Endometrial Stromal and Smooth Muscle Neoplasm 8 16380 -NCIT:C40180 Uterine Corpus PEComa 8 16381 -NCIT:C127071 Benign Uterine Corpus PEComa 9 16382 -NCIT:C127072 Uterine Corpus Malignant PEComa 9 16383 -NCIT:C40217 Uterine Corpus Endometrial Stromal and Related Neoplasms 8 16384 -NCIT:C127005 Uterine Corpus Tumor Resembling Ovarian Sex Cord Tumor 9 16385 -NCIT:C40219 Uterine Corpus Endometrial Stromal Sarcoma 9 16386 -NCIT:C126998 Uterine Corpus High Grade Endometrial Stromal Sarcoma 10 16387 -NCIT:C139882 Uterine Corpus Endometrial Stromal Sarcoma by AJCC v8 Stage 10 16388 -NCIT:C139883 Stage I Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 16389 -NCIT:C139884 Stage IA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 16390 -NCIT:C139885 Stage IB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 16391 -NCIT:C139886 Stage II Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 16392 -NCIT:C139887 Stage III Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 16393 -NCIT:C139888 Stage IIIA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 16394 -NCIT:C139889 Stage IIIB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 16395 -NCIT:C139890 Stage IIIC Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 16396 -NCIT:C139891 Stage IV Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 16397 -NCIT:C139892 Stage IVA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 16398 -NCIT:C139893 Stage IVB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 16399 -NCIT:C40223 Uterine Corpus Low Grade Endometrial Stromal Sarcoma 10 16400 -NCIT:C4262 Endometrial Stromal Nodule 9 16401 -NCIT:C8972 Uterine Corpus Undifferentiated Sarcoma 9 16402 -NCIT:C6339 Uterine Corpus Sarcoma 8 16403 -NCIT:C127058 Uterine Corpus Rhabdomyosarcoma 9 16404 -NCIT:C136708 Uterine Corpus Sarcoma by AJCC v7 Stage 9 16405 -NCIT:C8258 Stage I Uterine Sarcoma AJCC v7 10 16406 -NCIT:C87132 Stage IA Uterine Sarcoma AJCC v7 11 16407 -NCIT:C87133 Stage IB Uterine Sarcoma AJCC v7 11 16408 -NCIT:C87134 Stage IC Uterine Sarcoma AJCC v7 11 16409 -NCIT:C8259 Stage II Uterine Sarcoma AJCC v7 10 16410 -NCIT:C115130 Stage IIA Uterine Sarcoma AJCC v7 11 16411 -NCIT:C115131 Stage IIB Uterine Sarcoma AJCC v7 11 16412 -NCIT:C8260 Stage III Uterine Sarcoma AJCC v7 10 16413 -NCIT:C87135 Stage IIIA Uterine Sarcoma AJCC v7 11 16414 -NCIT:C87137 Stage IIIB Uterine Sarcoma AJCC v7 11 16415 -NCIT:C87138 Stage IIIC Uterine Sarcoma AJCC v7 11 16416 -NCIT:C9179 Stage IV Uterine Sarcoma AJCC v7 10 16417 -NCIT:C87140 Stage IVA Uterine Sarcoma AJCC v7 11 16418 -NCIT:C87144 Stage IVB Uterine Sarcoma AJCC v7 11 16419 -NCIT:C139869 Uterine Corpus Sarcoma by AJCC v8 Stage 9 16420 -NCIT:C139870 Uterine Corpus Leiomyosarcoma by AJCC v8 Stage 10 16421 -NCIT:C139871 Stage I Uterine Corpus Leiomyosarcoma AJCC v8 11 16422 -NCIT:C139872 Stage IA Uterine Corpus Leiomyosarcoma AJCC v8 12 16423 -NCIT:C139873 Stage IB Uterine Corpus Leiomyosarcoma AJCC v8 12 16424 -NCIT:C139874 Stage II Uterine Corpus Leiomyosarcoma AJCC v8 11 16425 -NCIT:C139875 Stage III Uterine Corpus Leiomyosarcoma AJCC v8 11 16426 -NCIT:C139876 Stage IIIA Uterine Corpus Leiomyosarcoma AJCC v8 12 16427 -NCIT:C139877 Stage IIIB Uterine Corpus Leiomyosarcoma AJCC v8 12 16428 -NCIT:C139878 Stage IIIC Uterine Corpus Leiomyosarcoma AJCC v8 12 16429 -NCIT:C139879 Stage IV Uterine Corpus Leiomyosarcoma AJCC v8 11 16430 -NCIT:C139880 Stage IVA Uterine Corpus Leiomyosarcoma AJCC v8 12 16431 -NCIT:C139881 Stage IVB Uterine Corpus Leiomyosarcoma AJCC v8 12 16432 -NCIT:C139882 Uterine Corpus Endometrial Stromal Sarcoma by AJCC v8 Stage 10 16433 -NCIT:C139883 Stage I Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 16434 -NCIT:C139884 Stage IA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 16435 -NCIT:C139885 Stage IB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 16436 -NCIT:C139886 Stage II Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 16437 -NCIT:C139887 Stage III Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 16438 -NCIT:C139888 Stage IIIA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 16439 -NCIT:C139889 Stage IIIB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 16440 -NCIT:C139890 Stage IIIC Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 16441 -NCIT:C139891 Stage IV Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 16442 -NCIT:C139892 Stage IVA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 16443 -NCIT:C139893 Stage IVB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 16444 -NCIT:C139894 Uterine Corpus Adenosarcoma by AJCC v8 Stage 10 16445 -NCIT:C139895 Stage I Uterine Corpus Adenosarcoma AJCC v8 11 16446 -NCIT:C139896 Stage IA Uterine Corpus Adenosarcoma AJCC v8 12 16447 -NCIT:C139897 Stage IB Uterine Corpus Adenosarcoma AJCC v8 12 16448 -NCIT:C139898 Stage IC Uterine Corpus Adenosarcoma AJCC v8 12 16449 -NCIT:C139899 Stage II Uterine Corpus Adenosarcoma AJCC v8 11 16450 -NCIT:C139900 Stage III Uterine Corpus Adenosarcoma AJCC v8 11 16451 -NCIT:C139901 Stage IIIA Uterine Corpus Adenosarcoma AJCC v8 12 16452 -NCIT:C139902 Stage IIIB Uterine Corpus Adenosarcoma AJCC v8 12 16453 -NCIT:C139903 Stage IIIC Uterine Corpus Adenosarcoma AJCC v8 12 16454 -NCIT:C139904 Stage IV Uterine Corpus Adenosarcoma AJCC v8 11 16455 -NCIT:C139905 Stage IVA Uterine Corpus Adenosarcoma AJCC v8 12 16456 -NCIT:C139906 Stage IVB Uterine Corpus Adenosarcoma AJCC v8 12 16457 -NCIT:C180546 Uterine Corpus Central Primitive Neuroectodermal Tumor 9 16458 -NCIT:C190009 Metastatic Uterine Corpus Sarcoma 9 16459 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 10 16460 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 11 16461 -NCIT:C190016 Unresectable Uterine Corpus Sarcoma 9 16462 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 10 16463 -NCIT:C40219 Uterine Corpus Endometrial Stromal Sarcoma 9 16464 -NCIT:C126998 Uterine Corpus High Grade Endometrial Stromal Sarcoma 10 16465 -NCIT:C139882 Uterine Corpus Endometrial Stromal Sarcoma by AJCC v8 Stage 10 16466 -NCIT:C139883 Stage I Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 16467 -NCIT:C139884 Stage IA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 16468 -NCIT:C139885 Stage IB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 16469 -NCIT:C139886 Stage II Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 16470 -NCIT:C139887 Stage III Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 16471 -NCIT:C139888 Stage IIIA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 16472 -NCIT:C139889 Stage IIIB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 16473 -NCIT:C139890 Stage IIIC Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 16474 -NCIT:C139891 Stage IV Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 16475 -NCIT:C139892 Stage IVA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 16476 -NCIT:C139893 Stage IVB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 16477 -NCIT:C40223 Uterine Corpus Low Grade Endometrial Stromal Sarcoma 10 16478 -NCIT:C6336 Uterine Corpus Adenosarcoma 9 16479 -NCIT:C139894 Uterine Corpus Adenosarcoma by AJCC v8 Stage 10 16480 -NCIT:C139895 Stage I Uterine Corpus Adenosarcoma AJCC v8 11 16481 -NCIT:C139896 Stage IA Uterine Corpus Adenosarcoma AJCC v8 12 16482 -NCIT:C139897 Stage IB Uterine Corpus Adenosarcoma AJCC v8 12 16483 -NCIT:C139898 Stage IC Uterine Corpus Adenosarcoma AJCC v8 12 16484 -NCIT:C139899 Stage II Uterine Corpus Adenosarcoma AJCC v8 11 16485 -NCIT:C139900 Stage III Uterine Corpus Adenosarcoma AJCC v8 11 16486 -NCIT:C139901 Stage IIIA Uterine Corpus Adenosarcoma AJCC v8 12 16487 -NCIT:C139902 Stage IIIB Uterine Corpus Adenosarcoma AJCC v8 12 16488 -NCIT:C139903 Stage IIIC Uterine Corpus Adenosarcoma AJCC v8 12 16489 -NCIT:C139904 Stage IV Uterine Corpus Adenosarcoma AJCC v8 11 16490 -NCIT:C139905 Stage IVA Uterine Corpus Adenosarcoma AJCC v8 12 16491 -NCIT:C139906 Stage IVB Uterine Corpus Adenosarcoma AJCC v8 12 16492 -NCIT:C6340 Uterine Corpus Leiomyosarcoma 9 16493 -NCIT:C139870 Uterine Corpus Leiomyosarcoma by AJCC v8 Stage 10 16494 -NCIT:C139871 Stage I Uterine Corpus Leiomyosarcoma AJCC v8 11 16495 -NCIT:C139872 Stage IA Uterine Corpus Leiomyosarcoma AJCC v8 12 16496 -NCIT:C139873 Stage IB Uterine Corpus Leiomyosarcoma AJCC v8 12 16497 -NCIT:C139874 Stage II Uterine Corpus Leiomyosarcoma AJCC v8 11 16498 -NCIT:C139875 Stage III Uterine Corpus Leiomyosarcoma AJCC v8 11 16499 -NCIT:C139876 Stage IIIA Uterine Corpus Leiomyosarcoma AJCC v8 12 16500 -NCIT:C139877 Stage IIIB Uterine Corpus Leiomyosarcoma AJCC v8 12 16501 -NCIT:C139878 Stage IIIC Uterine Corpus Leiomyosarcoma AJCC v8 12 16502 -NCIT:C139879 Stage IV Uterine Corpus Leiomyosarcoma AJCC v8 11 16503 -NCIT:C139880 Stage IVA Uterine Corpus Leiomyosarcoma AJCC v8 12 16504 -NCIT:C139881 Stage IVB Uterine Corpus Leiomyosarcoma AJCC v8 12 16505 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 10 16506 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 10 16507 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 11 16508 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 10 16509 -NCIT:C40174 Uterine Corpus Epithelioid Leiomyosarcoma 10 16510 -NCIT:C40175 Uterine Corpus Myxoid Leiomyosarcoma 10 16511 -NCIT:C8261 Recurrent Uterine Corpus Sarcoma 9 16512 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 10 16513 -NCIT:C8972 Uterine Corpus Undifferentiated Sarcoma 9 16514 -NCIT:C40181 Uterine Corpus Mixed Epithelial and Mesenchymal Neoplasm 7 16515 -NCIT:C6311 Malignant Uterine Corpus Mixed Epithelial and Mesenchymal Neoplasm 8 16516 -NCIT:C40182 Uterine Corpus Carcinofibroma 9 16517 -NCIT:C6336 Uterine Corpus Adenosarcoma 9 16518 -NCIT:C139894 Uterine Corpus Adenosarcoma by AJCC v8 Stage 10 16519 -NCIT:C139895 Stage I Uterine Corpus Adenosarcoma AJCC v8 11 16520 -NCIT:C139896 Stage IA Uterine Corpus Adenosarcoma AJCC v8 12 16521 -NCIT:C139897 Stage IB Uterine Corpus Adenosarcoma AJCC v8 12 16522 -NCIT:C139898 Stage IC Uterine Corpus Adenosarcoma AJCC v8 12 16523 -NCIT:C139899 Stage II Uterine Corpus Adenosarcoma AJCC v8 11 16524 -NCIT:C139900 Stage III Uterine Corpus Adenosarcoma AJCC v8 11 16525 -NCIT:C139901 Stage IIIA Uterine Corpus Adenosarcoma AJCC v8 12 16526 -NCIT:C139902 Stage IIIB Uterine Corpus Adenosarcoma AJCC v8 12 16527 -NCIT:C139903 Stage IIIC Uterine Corpus Adenosarcoma AJCC v8 12 16528 -NCIT:C139904 Stage IV Uterine Corpus Adenosarcoma AJCC v8 11 16529 -NCIT:C139905 Stage IVA Uterine Corpus Adenosarcoma AJCC v8 12 16530 -NCIT:C139906 Stage IVB Uterine Corpus Adenosarcoma AJCC v8 12 16531 -NCIT:C9180 Uterine Corpus Carcinosarcoma 9 16532 -NCIT:C155818 Recurrent Uterine Corpus Carcinosarcoma 10 16533 -NCIT:C158381 Refractory Uterine Corpus Carcinosarcoma 10 16534 -NCIT:C170931 Metastatic Uterine Corpus Carcinosarcoma 10 16535 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 11 16536 -NCIT:C6335 Benign Uterine Corpus Mixed Epithelial and Mesenchymal Neoplasm 8 16537 -NCIT:C6337 Uterine Corpus Adenofibroma 9 16538 -NCIT:C6338 Uterine Corpus Adenomyoma 9 16539 -NCIT:C40235 Uterine Corpus Atypical Polypoid Adenomyoma 10 16540 -NCIT:C3437 Vaginal Neoplasm 5 16541 -NCIT:C128112 Vaginal Germ Cell Tumor 6 16542 -NCIT:C128113 Vaginal Dermoid Cyst 7 16543 -NCIT:C6379 Vaginal Yolk Sac Tumor 7 16544 -NCIT:C3610 Benign Vaginal Neoplasm 6 16545 -NCIT:C128079 Vaginal Superficial Myofibroblastoma 7 16546 -NCIT:C128113 Vaginal Dermoid Cyst 7 16547 -NCIT:C40255 Vaginal Mullerian Papilloma 7 16548 -NCIT:C40273 Vaginal Deep (Aggressive) Angiomyxoma 7 16549 -NCIT:C40275 Benign Vaginal Mixed Epithelial and Mesenchymal Neoplasm 7 16550 -NCIT:C40280 Benign Vaginal Mixed Tumor 8 16551 -NCIT:C40281 Benign Vaginal Melanocytic Nevus 7 16552 -NCIT:C40282 Vaginal Blue Nevus 8 16553 -NCIT:C45445 Vaginal Angiomyofibroblastoma 7 16554 -NCIT:C6372 Vaginal Rhabdomyoma 7 16555 -NCIT:C6373 Vaginal Leiomyoma 7 16556 -NCIT:C6374 Vaginal Squamous Papilloma 7 16557 -NCIT:C40242 Vaginal Squamous Neoplasm 6 16558 -NCIT:C180915 Vaginal Squamous Cell Carcinoma 7 16559 -NCIT:C128060 Vaginal Papillary Carcinoma 8 16560 -NCIT:C180917 Human Papillomavirus-Related Vaginal Squamous Cell Carcinoma 8 16561 -NCIT:C40248 Vaginal Warty Carcinoma 9 16562 -NCIT:C180919 Human Papillomavirus-Independent Vaginal Squamous Cell Carcinoma 8 16563 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 8 16564 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 16565 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 16566 -NCIT:C185302 Recurrent Vaginal Squamous Cell Carcinoma 8 16567 -NCIT:C185303 Refractory Vaginal Squamous Cell Carcinoma 8 16568 -NCIT:C40243 Vaginal Keratinizing Squamous Cell Carcinoma 8 16569 -NCIT:C40244 Vaginal Non-Keratinizing Squamous Cell Carcinoma 8 16570 -NCIT:C40245 Vaginal Basaloid Carcinoma 8 16571 -NCIT:C6325 Vaginal Verrucous Carcinoma 8 16572 -NCIT:C7736 Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 8 16573 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 16574 -NCIT:C4521 Vaginal Intraepithelial Neoplasia 7 16575 -NCIT:C4644 Low Grade Vaginal Intraepithelial Neoplasia 8 16576 -NCIT:C7663 High Grade Vaginal Intraepithelial Neoplasia 8 16577 -NCIT:C4645 Grade 2 Vaginal Intraepithelial Neoplasia 9 16578 -NCIT:C7855 Stage 0 Vaginal Cancer AJCC v6 9 16579 -NCIT:C89476 Stage 0 Vaginal Cancer AJCC v7 9 16580 -NCIT:C4947 Vaginal Condyloma Acuminatum 7 16581 -NCIT:C6374 Vaginal Squamous Papilloma 7 16582 -NCIT:C40250 Vaginal Glandular Neoplasm 6 16583 -NCIT:C40255 Vaginal Mullerian Papilloma 7 16584 -NCIT:C40256 Vaginal Adenoma 7 16585 -NCIT:C40258 Vaginal Tubulovillous Adenoma 8 16586 -NCIT:C40259 Vaginal Villous Adenoma 8 16587 -NCIT:C7981 Vaginal Adenocarcinoma 7 16588 -NCIT:C180943 Human Papillomavirus-Related Vaginal Adenocarcinoma 8 16589 -NCIT:C180947 Vaginal Adenocarcinoma of Skene Gland Origin 8 16590 -NCIT:C40251 Vaginal Endometrioid Adenocarcinoma 8 16591 -NCIT:C40252 Vaginal Mucinous Adenocarcinoma 8 16592 -NCIT:C180945 Vaginal Mucinous Adenocarcinoma, Gastric-Type 9 16593 -NCIT:C180946 Vaginal Mucinous Adenocarcinoma, Intestinal-Type 9 16594 -NCIT:C40253 Vaginal Mesonephric Adenocarcinoma 8 16595 -NCIT:C7735 Vaginal Clear Cell Adenocarcinoma 8 16596 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 8 16597 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 16598 -NCIT:C40265 Vaginal Soft Tissue Neoplasm 6 16599 -NCIT:C128079 Vaginal Superficial Myofibroblastoma 7 16600 -NCIT:C181936 Vaginal Solitary Fibrous Tumor 7 16601 -NCIT:C181940 Vaginal Smooth Muscle Tumor of Uncertain Malignant Potential 7 16602 -NCIT:C40269 Vaginal Endometrioid Stromal and Related Neoplasms 7 16603 -NCIT:C40271 Vaginal Low Grade Endometrioid Stromal Sarcoma 8 16604 -NCIT:C40272 Vaginal Undifferentiated Sarcoma 8 16605 -NCIT:C40273 Vaginal Deep (Aggressive) Angiomyxoma 7 16606 -NCIT:C45445 Vaginal Angiomyofibroblastoma 7 16607 -NCIT:C6372 Vaginal Rhabdomyoma 7 16608 -NCIT:C6373 Vaginal Leiomyoma 7 16609 -NCIT:C7737 Vaginal Sarcoma 7 16610 -NCIT:C128080 Vaginal Rhabdomyosarcoma 8 16611 -NCIT:C40268 Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 9 16612 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 16613 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 16614 -NCIT:C40271 Vaginal Low Grade Endometrioid Stromal Sarcoma 8 16615 -NCIT:C40272 Vaginal Undifferentiated Sarcoma 8 16616 -NCIT:C40277 Vaginal Adenosarcoma 8 16617 -NCIT:C6326 Vaginal Leiomyosarcoma 8 16618 -NCIT:C40274 Vaginal Mixed Epithelial and Mesenchymal Neoplasm 6 16619 -NCIT:C40275 Benign Vaginal Mixed Epithelial and Mesenchymal Neoplasm 7 16620 -NCIT:C40280 Benign Vaginal Mixed Tumor 8 16621 -NCIT:C40276 Malignant Vaginal Mixed Epithelial and Mesenchymal Neoplasm 7 16622 -NCIT:C40277 Vaginal Adenosarcoma 8 16623 -NCIT:C40278 Vaginal Carcinosarcoma 8 16624 -NCIT:C40279 Malignant Vaginal Mixed Tumor Resembling Synovial Sarcoma 8 16625 -NCIT:C7410 Malignant Vaginal Neoplasm 6 16626 -NCIT:C27394 Vaginal Melanoma 7 16627 -NCIT:C3917 Vaginal Carcinoma 7 16628 -NCIT:C128073 Vaginal Neuroendocrine Carcinoma 8 16629 -NCIT:C128075 Vaginal Large Cell Neuroendocrine Carcinoma 9 16630 -NCIT:C40263 Vaginal Small Cell Neuroendocrine Carcinoma 9 16631 -NCIT:C139657 Vaginal Cancer by AJCC v8 Stage 8 16632 -NCIT:C139658 Stage I Vaginal Cancer AJCC v8 9 16633 -NCIT:C139659 Stage IA Vaginal Cancer AJCC v8 10 16634 -NCIT:C139660 Stage IB Vaginal Cancer AJCC v8 10 16635 -NCIT:C139661 Stage II Vaginal Cancer AJCC v8 9 16636 -NCIT:C139662 Stage IIA Vaginal Cancer AJCC v8 10 16637 -NCIT:C139664 Stage IIB Vaginal Cancer AJCC v8 10 16638 -NCIT:C139665 Stage III Vaginal Cancer AJCC v8 9 16639 -NCIT:C139667 Stage IV Vaginal Cancer AJCC v8 9 16640 -NCIT:C139669 Stage IVA Vaginal Cancer AJCC v8 10 16641 -NCIT:C139670 Stage IVB Vaginal Cancer AJCC v8 10 16642 -NCIT:C156065 Metastatic Vaginal Carcinoma 8 16643 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 9 16644 -NCIT:C170788 Advanced Vaginal Carcinoma 9 16645 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 10 16646 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 10 16647 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 10 16648 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 11 16649 -NCIT:C181028 Metastatic Vaginal Adenosquamous Carcinoma 9 16650 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 10 16651 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 9 16652 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 10 16653 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 11 16654 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 9 16655 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 10 16656 -NCIT:C174509 Refractory Vaginal Carcinoma 8 16657 -NCIT:C185303 Refractory Vaginal Squamous Cell Carcinoma 9 16658 -NCIT:C175434 Unresectable Vaginal Carcinoma 8 16659 -NCIT:C180915 Vaginal Squamous Cell Carcinoma 8 16660 -NCIT:C128060 Vaginal Papillary Carcinoma 9 16661 -NCIT:C180917 Human Papillomavirus-Related Vaginal Squamous Cell Carcinoma 9 16662 -NCIT:C40248 Vaginal Warty Carcinoma 10 16663 -NCIT:C180919 Human Papillomavirus-Independent Vaginal Squamous Cell Carcinoma 9 16664 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 9 16665 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 10 16666 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 11 16667 -NCIT:C185302 Recurrent Vaginal Squamous Cell Carcinoma 9 16668 -NCIT:C185303 Refractory Vaginal Squamous Cell Carcinoma 9 16669 -NCIT:C40243 Vaginal Keratinizing Squamous Cell Carcinoma 9 16670 -NCIT:C40244 Vaginal Non-Keratinizing Squamous Cell Carcinoma 9 16671 -NCIT:C40245 Vaginal Basaloid Carcinoma 9 16672 -NCIT:C6325 Vaginal Verrucous Carcinoma 9 16673 -NCIT:C7736 Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 16674 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 16675 -NCIT:C40260 Vaginal Adenosquamous Carcinoma 8 16676 -NCIT:C181028 Metastatic Vaginal Adenosquamous Carcinoma 9 16677 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 10 16678 -NCIT:C40261 Vaginal Adenoid Cystic Carcinoma 8 16679 -NCIT:C40262 Vaginal Adenoid Basal Carcinoma 8 16680 -NCIT:C40264 Vaginal Undifferentiated Carcinoma 8 16681 -NCIT:C7860 Recurrent Vaginal Carcinoma 8 16682 -NCIT:C185302 Recurrent Vaginal Squamous Cell Carcinoma 9 16683 -NCIT:C7981 Vaginal Adenocarcinoma 8 16684 -NCIT:C180943 Human Papillomavirus-Related Vaginal Adenocarcinoma 9 16685 -NCIT:C180947 Vaginal Adenocarcinoma of Skene Gland Origin 9 16686 -NCIT:C40251 Vaginal Endometrioid Adenocarcinoma 9 16687 -NCIT:C40252 Vaginal Mucinous Adenocarcinoma 9 16688 -NCIT:C180945 Vaginal Mucinous Adenocarcinoma, Gastric-Type 10 16689 -NCIT:C180946 Vaginal Mucinous Adenocarcinoma, Intestinal-Type 10 16690 -NCIT:C40253 Vaginal Mesonephric Adenocarcinoma 9 16691 -NCIT:C7735 Vaginal Clear Cell Adenocarcinoma 9 16692 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 9 16693 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 10 16694 -NCIT:C90347 Vaginal Cancer by AJCC v6 Stage 8 16695 -NCIT:C7597 Stage IV Vaginal Cancer AJCC v6 and v7 9 16696 -NCIT:C7859 Stage IVA Vaginal Cancer AJCC v6 and v7 10 16697 -NCIT:C9355 Stage IVB Vaginal Cancer AJCC v6 and v7 10 16698 -NCIT:C7855 Stage 0 Vaginal Cancer AJCC v6 9 16699 -NCIT:C7856 Stage I Vaginal Cancer AJCC v6 and v7 9 16700 -NCIT:C7857 Stage II Vaginal Cancer AJCC v6 and v7 9 16701 -NCIT:C7858 Stage III Vaginal Cancer AJCC v6 and v7 9 16702 -NCIT:C91204 Vaginal Cancer by AJCC v7 Stage 8 16703 -NCIT:C7597 Stage IV Vaginal Cancer AJCC v6 and v7 9 16704 -NCIT:C7859 Stage IVA Vaginal Cancer AJCC v6 and v7 10 16705 -NCIT:C9355 Stage IVB Vaginal Cancer AJCC v6 and v7 10 16706 -NCIT:C7856 Stage I Vaginal Cancer AJCC v6 and v7 9 16707 -NCIT:C7857 Stage II Vaginal Cancer AJCC v6 and v7 9 16708 -NCIT:C7858 Stage III Vaginal Cancer AJCC v6 and v7 9 16709 -NCIT:C89476 Stage 0 Vaginal Cancer AJCC v7 9 16710 -NCIT:C40276 Malignant Vaginal Mixed Epithelial and Mesenchymal Neoplasm 7 16711 -NCIT:C40277 Vaginal Adenosarcoma 8 16712 -NCIT:C40278 Vaginal Carcinosarcoma 8 16713 -NCIT:C40279 Malignant Vaginal Mixed Tumor Resembling Synovial Sarcoma 8 16714 -NCIT:C6333 Metastatic Malignant Neoplasm in the Vagina 7 16715 -NCIT:C6379 Vaginal Yolk Sac Tumor 7 16716 -NCIT:C7737 Vaginal Sarcoma 7 16717 -NCIT:C128080 Vaginal Rhabdomyosarcoma 8 16718 -NCIT:C40268 Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 9 16719 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 16720 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 16721 -NCIT:C40271 Vaginal Low Grade Endometrioid Stromal Sarcoma 8 16722 -NCIT:C40272 Vaginal Undifferentiated Sarcoma 8 16723 -NCIT:C40277 Vaginal Adenosarcoma 8 16724 -NCIT:C6326 Vaginal Leiomyosarcoma 8 16725 -NCIT:C3443 Vulvar Neoplasm 5 16726 -NCIT:C128294 Vulvar Germ Cell Tumor 6 16727 -NCIT:C128295 Vulvar Yolk Sac Tumor 7 16728 -NCIT:C181905 Vulvar Phyllodes Tumor 6 16729 -NCIT:C128165 Malignant Vulvar Phyllodes Tumor 7 16730 -NCIT:C181906 Benign Vulvar Phyllodes Tumor 7 16731 -NCIT:C181907 Borderline Vulvar Phyllodes Tumor 7 16732 -NCIT:C3611 Benign Vulvar Neoplasm 6 16733 -NCIT:C128240 Vulvar Hidradenoma Papilliferum 7 16734 -NCIT:C128242 Vulvar Fibroadenoma 7 16735 -NCIT:C128270 Vulvar Lipoma 7 16736 -NCIT:C128271 Vulvar Fibrolipoma 8 16737 -NCIT:C128272 Vulvar Superficial Myofibroblastoma 7 16738 -NCIT:C139548 Vulvar Composite Hidradenoma Papilliferum and Fibroadenoma 7 16739 -NCIT:C181906 Benign Vulvar Phyllodes Tumor 7 16740 -NCIT:C181925 Vulvar Lipoblastoma-Like Tumor 7 16741 -NCIT:C181926 Vulvar Prepubertal Fibroma 7 16742 -NCIT:C181942 Vulvar Rhabdomyoma 7 16743 -NCIT:C40301 Adenoma of Minor Vestibular Glands 7 16744 -NCIT:C40302 Vulvar Chondroid Syringoma 7 16745 -NCIT:C40311 Vulvar Syringoma 7 16746 -NCIT:C40312 Vulvar Nodular Hidradenoma 7 16747 -NCIT:C40314 Vulvar Trichoepithelioma 7 16748 -NCIT:C40325 Vulvar Angiomyxoma 7 16749 -NCIT:C40322 Vulvar Deep (Aggressive) Angiomyxoma 8 16750 -NCIT:C40324 Vulvar Superficial Angiomyxoma 8 16751 -NCIT:C40326 Vulvar Leiomyoma 7 16752 -NCIT:C40327 Vulvar Cellular Angiofibroma 7 16753 -NCIT:C40330 Vulvar Congenital Melanocytic Nevus 7 16754 -NCIT:C40331 Vulvar Acquired Melanocytic Nevus 7 16755 -NCIT:C40332 Vulvar Blue Nevus 7 16756 -NCIT:C45446 Vulvar Angiomyofibroblastoma 7 16757 -NCIT:C6375 Vulvar Seborrheic Keratosis 7 16758 -NCIT:C40291 Vulvar Inverted Follicular Keratosis 8 16759 -NCIT:C6376 Vulvar Squamous Papilloma 7 16760 -NCIT:C40290 Vulvar Squamous Papillomatosis 8 16761 -NCIT:C8418 Benign Bartholin Gland Neoplasm 7 16762 -NCIT:C40299 Bartholin Gland Adenoma 8 16763 -NCIT:C40300 Bartholin Gland Adenomyoma 8 16764 -NCIT:C40283 Vulvar Squamous Neoplasm 6 16765 -NCIT:C4052 Vulvar Squamous Cell Carcinoma 7 16766 -NCIT:C128167 Vulvar Keratoacanthoma 8 16767 -NCIT:C174199 Unresectable Vulvar Squamous Cell Carcinoma 8 16768 -NCIT:C174200 Recurrent Vulvar Squamous Cell Carcinoma 8 16769 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 8 16770 -NCIT:C181902 Vulvar Squamous Cell Carcinoma, Not Otherwise Specified 8 16771 -NCIT:C181903 Human Papillomavirus-Independent Vulvar Squamous Cell Carcinoma 8 16772 -NCIT:C185304 Refractory Vulvar Squamous Cell Carcinoma 8 16773 -NCIT:C27679 Human Papillomavirus-Related Vulvar Squamous Cell Carcinoma 8 16774 -NCIT:C40287 Vulvar Warty Carcinoma 9 16775 -NCIT:C40284 Vulvar Keratinizing Squamous Cell Carcinoma 8 16776 -NCIT:C40285 Vulvar Non-Keratinizing Squamous Cell Carcinoma 8 16777 -NCIT:C40286 Vulvar Basaloid Carcinoma 8 16778 -NCIT:C40289 Vulvar Squamous Cell Carcinoma with Tumor Giant Cells 8 16779 -NCIT:C40293 Bartholin Gland Squamous Cell Carcinoma 8 16780 -NCIT:C6383 Vulvar Verrucous Carcinoma 8 16781 -NCIT:C4382 Vulvar Condyloma Acuminatum 7 16782 -NCIT:C4756 Vulvar Intraepithelial Neoplasia 7 16783 -NCIT:C128142 Vulvar Squamous Intraepithelial Lesion, HPV-Associated 8 16784 -NCIT:C4760 Low Grade Vulvar Squamous Intraepithelial Lesion 9 16785 -NCIT:C4761 High Grade Vulvar Squamous Intraepithelial Lesion 9 16786 -NCIT:C37272 Vulvar Intraepithelial Neoplasia, HPV-Independent 8 16787 -NCIT:C4522 Stage 0 Vulvar Cancer AJCC v6 8 16788 -NCIT:C89445 Stage 0 Vulvar Cancer AJCC v7 8 16789 -NCIT:C6375 Vulvar Seborrheic Keratosis 7 16790 -NCIT:C40291 Vulvar Inverted Follicular Keratosis 8 16791 -NCIT:C6376 Vulvar Squamous Papilloma 7 16792 -NCIT:C40290 Vulvar Squamous Papillomatosis 8 16793 -NCIT:C40292 Vulvar Glandular Neoplasm 6 16794 -NCIT:C128240 Vulvar Hidradenoma Papilliferum 7 16795 -NCIT:C40299 Bartholin Gland Adenoma 7 16796 -NCIT:C40300 Bartholin Gland Adenomyoma 7 16797 -NCIT:C40301 Adenoma of Minor Vestibular Glands 7 16798 -NCIT:C6380 Vulvar Adenocarcinoma 7 16799 -NCIT:C128162 Vulvar Adenocarcinoma of Mammary Gland Type 8 16800 -NCIT:C128164 Vulvar Adenocarcinoma of Sweat Gland Origin 8 16801 -NCIT:C4027 Vulvar Paget Disease 9 16802 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 9 16803 -NCIT:C40306 Vulvar Porocarcinoma 10 16804 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 9 16805 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 9 16806 -NCIT:C128166 Vulvar Adenocarcinoma, Intestinal-Type 8 16807 -NCIT:C40309 Vulvar Sebaceous Carcinoma 8 16808 -NCIT:C7719 Bartholin Gland Adenocarcinoma 8 16809 -NCIT:C40303 Vulvar Neoplasm of Skin Appendage Origin 6 16810 -NCIT:C128240 Vulvar Hidradenoma Papilliferum 7 16811 -NCIT:C40304 Malignant Vulvar Sweat Gland Neoplasm 7 16812 -NCIT:C128164 Vulvar Adenocarcinoma of Sweat Gland Origin 8 16813 -NCIT:C4027 Vulvar Paget Disease 9 16814 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 9 16815 -NCIT:C40306 Vulvar Porocarcinoma 10 16816 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 9 16817 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 9 16818 -NCIT:C40309 Vulvar Sebaceous Carcinoma 7 16819 -NCIT:C40311 Vulvar Syringoma 7 16820 -NCIT:C40312 Vulvar Nodular Hidradenoma 7 16821 -NCIT:C40314 Vulvar Trichoepithelioma 7 16822 -NCIT:C40316 Vulvar Soft Tissue Neoplasm 6 16823 -NCIT:C128270 Vulvar Lipoma 7 16824 -NCIT:C128271 Vulvar Fibrolipoma 8 16825 -NCIT:C128272 Vulvar Superficial Myofibroblastoma 7 16826 -NCIT:C181925 Vulvar Lipoblastoma-Like Tumor 7 16827 -NCIT:C181926 Vulvar Prepubertal Fibroma 7 16828 -NCIT:C181935 Vulvar Solitary Fibrous Tumor 7 16829 -NCIT:C181939 Vulvar Smooth Muscle Tumor of Uncertain Malignant Potential 7 16830 -NCIT:C181942 Vulvar Rhabdomyoma 7 16831 -NCIT:C40317 Vulvar Sarcoma 7 16832 -NCIT:C176515 Vulvar Angiosarcoma 8 16833 -NCIT:C181938 Vulvar Kaposi Sarcoma 8 16834 -NCIT:C181944 Vulvar Rhabdomyosarcoma 8 16835 -NCIT:C128273 Vulvar Alveolar Rhabdomyosarcoma 9 16836 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 9 16837 -NCIT:C181971 Vulvar Epithelioid Sarcoma 8 16838 -NCIT:C181973 Vulvar Distal-Type Epithelioid Sarcoma 9 16839 -NCIT:C40319 Vulvar Proximal-Type Epithelioid Sarcoma 9 16840 -NCIT:C181977 Vulvar Ewing Sarcoma 8 16841 -NCIT:C40318 Vulvar Leiomyosarcoma 8 16842 -NCIT:C40320 Vulvar Alveolar Soft Part Sarcoma 8 16843 -NCIT:C40321 Vulvar Liposarcoma 8 16844 -NCIT:C40325 Vulvar Angiomyxoma 7 16845 -NCIT:C40322 Vulvar Deep (Aggressive) Angiomyxoma 8 16846 -NCIT:C40324 Vulvar Superficial Angiomyxoma 8 16847 -NCIT:C40326 Vulvar Leiomyoma 7 16848 -NCIT:C40327 Vulvar Cellular Angiofibroma 7 16849 -NCIT:C45446 Vulvar Angiomyofibroblastoma 7 16850 -NCIT:C40328 Vulvar Granular Cell Tumor 6 16851 -NCIT:C40335 Vulvar Melanocytic Neoplasm 6 16852 -NCIT:C128289 Vulvar Melanocytic Nevus 7 16853 -NCIT:C40330 Vulvar Congenital Melanocytic Nevus 8 16854 -NCIT:C40331 Vulvar Acquired Melanocytic Nevus 8 16855 -NCIT:C40332 Vulvar Blue Nevus 8 16856 -NCIT:C40333 Atypical Melanocytic Nevus of Genital Type 8 16857 -NCIT:C40334 Vulvar Dysplastic Melanocytic Nevus 8 16858 -NCIT:C40329 Vulvar Melanoma 7 16859 -NCIT:C6434 Bartholin Gland Neoplasm 6 16860 -NCIT:C8418 Benign Bartholin Gland Neoplasm 7 16861 -NCIT:C40299 Bartholin Gland Adenoma 8 16862 -NCIT:C40300 Bartholin Gland Adenomyoma 8 16863 -NCIT:C9055 Bartholin Gland Carcinoma 7 16864 -NCIT:C40293 Bartholin Gland Squamous Cell Carcinoma 8 16865 -NCIT:C40295 Bartholin Gland Adenoid Cystic Carcinoma 8 16866 -NCIT:C40296 Bartholin Gland Adenosquamous Carcinoma 8 16867 -NCIT:C40297 Bartholin Gland Transitional Cell Carcinoma 8 16868 -NCIT:C40298 Bartholin Gland Small Cell Neuroendocrine Carcinoma 8 16869 -NCIT:C7719 Bartholin Gland Adenocarcinoma 8 16870 -NCIT:C7502 Malignant Vulvar Neoplasm 6 16871 -NCIT:C128165 Malignant Vulvar Phyllodes Tumor 7 16872 -NCIT:C128295 Vulvar Yolk Sac Tumor 7 16873 -NCIT:C3557 Malignant Clitoral Neoplasm 7 16874 -NCIT:C9362 Clitoral Carcinoma 8 16875 -NCIT:C40304 Malignant Vulvar Sweat Gland Neoplasm 7 16876 -NCIT:C128164 Vulvar Adenocarcinoma of Sweat Gland Origin 8 16877 -NCIT:C4027 Vulvar Paget Disease 9 16878 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 9 16879 -NCIT:C40306 Vulvar Porocarcinoma 10 16880 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 9 16881 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 9 16882 -NCIT:C40317 Vulvar Sarcoma 7 16883 -NCIT:C176515 Vulvar Angiosarcoma 8 16884 -NCIT:C181938 Vulvar Kaposi Sarcoma 8 16885 -NCIT:C181944 Vulvar Rhabdomyosarcoma 8 16886 -NCIT:C128273 Vulvar Alveolar Rhabdomyosarcoma 9 16887 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 9 16888 -NCIT:C181971 Vulvar Epithelioid Sarcoma 8 16889 -NCIT:C181973 Vulvar Distal-Type Epithelioid Sarcoma 9 16890 -NCIT:C40319 Vulvar Proximal-Type Epithelioid Sarcoma 9 16891 -NCIT:C181977 Vulvar Ewing Sarcoma 8 16892 -NCIT:C40318 Vulvar Leiomyosarcoma 8 16893 -NCIT:C40320 Vulvar Alveolar Soft Part Sarcoma 8 16894 -NCIT:C40321 Vulvar Liposarcoma 8 16895 -NCIT:C40329 Vulvar Melanoma 7 16896 -NCIT:C4866 Vulvar Carcinoma 7 16897 -NCIT:C128243 Vulvar Neuroendocrine Carcinoma 8 16898 -NCIT:C128244 Vulvar Small Cell Neuroendocrine Carcinoma 9 16899 -NCIT:C40298 Bartholin Gland Small Cell Neuroendocrine Carcinoma 10 16900 -NCIT:C128245 Vulvar Large Cell Neuroendocrine Carcinoma 9 16901 -NCIT:C128247 Vulvar Merkel Cell Carcinoma 9 16902 -NCIT:C139618 Vulvar Cancer by AJCC v8 Stage 8 16903 -NCIT:C139619 Stage I Vulvar Cancer AJCC v8 9 16904 -NCIT:C139620 Stage IA Vulvar Cancer AJCC v8 10 16905 -NCIT:C139621 Stage IB Vulvar Cancer AJCC v8 10 16906 -NCIT:C139622 Stage II Vulvar Cancer AJCC v8 9 16907 -NCIT:C139623 Stage III Vulvar Cancer AJCC v8 9 16908 -NCIT:C139624 Stage IIIA Vulvar Cancer AJCC v8 10 16909 -NCIT:C139625 Stage IIIB Vulvar Cancer AJCC v8 10 16910 -NCIT:C139626 Stage IIIC Vulvar Cancer AJCC v8 10 16911 -NCIT:C139627 Stage IV Vulvar Cancer AJCC v8 9 16912 -NCIT:C139628 Stage IVA Vulvar Cancer AJCC v8 10 16913 -NCIT:C139630 Stage IVB Vulvar Cancer AJCC v8 10 16914 -NCIT:C156066 Metastatic Vulvar Carcinoma 8 16915 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 9 16916 -NCIT:C170786 Advanced Vulvar Carcinoma 9 16917 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 9 16918 -NCIT:C174198 Unresectable Vulvar Carcinoma 8 16919 -NCIT:C174199 Unresectable Vulvar Squamous Cell Carcinoma 9 16920 -NCIT:C174508 Refractory Vulvar Carcinoma 8 16921 -NCIT:C185304 Refractory Vulvar Squamous Cell Carcinoma 9 16922 -NCIT:C4052 Vulvar Squamous Cell Carcinoma 8 16923 -NCIT:C128167 Vulvar Keratoacanthoma 9 16924 -NCIT:C174199 Unresectable Vulvar Squamous Cell Carcinoma 9 16925 -NCIT:C174200 Recurrent Vulvar Squamous Cell Carcinoma 9 16926 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 9 16927 -NCIT:C181902 Vulvar Squamous Cell Carcinoma, Not Otherwise Specified 9 16928 -NCIT:C181903 Human Papillomavirus-Independent Vulvar Squamous Cell Carcinoma 9 16929 -NCIT:C185304 Refractory Vulvar Squamous Cell Carcinoma 9 16930 -NCIT:C27679 Human Papillomavirus-Related Vulvar Squamous Cell Carcinoma 9 16931 -NCIT:C40287 Vulvar Warty Carcinoma 10 16932 -NCIT:C40284 Vulvar Keratinizing Squamous Cell Carcinoma 9 16933 -NCIT:C40285 Vulvar Non-Keratinizing Squamous Cell Carcinoma 9 16934 -NCIT:C40286 Vulvar Basaloid Carcinoma 9 16935 -NCIT:C40289 Vulvar Squamous Cell Carcinoma with Tumor Giant Cells 9 16936 -NCIT:C40293 Bartholin Gland Squamous Cell Carcinoma 9 16937 -NCIT:C6383 Vulvar Verrucous Carcinoma 9 16938 -NCIT:C6380 Vulvar Adenocarcinoma 8 16939 -NCIT:C128162 Vulvar Adenocarcinoma of Mammary Gland Type 9 16940 -NCIT:C128164 Vulvar Adenocarcinoma of Sweat Gland Origin 9 16941 -NCIT:C4027 Vulvar Paget Disease 10 16942 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 10 16943 -NCIT:C40306 Vulvar Porocarcinoma 11 16944 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 10 16945 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 10 16946 -NCIT:C128166 Vulvar Adenocarcinoma, Intestinal-Type 9 16947 -NCIT:C40309 Vulvar Sebaceous Carcinoma 9 16948 -NCIT:C7719 Bartholin Gland Adenocarcinoma 9 16949 -NCIT:C6381 Vulvar Basal Cell Carcinoma 8 16950 -NCIT:C90345 Vulvar Cancer by AJCC v6 Stage 8 16951 -NCIT:C4522 Stage 0 Vulvar Cancer AJCC v6 9 16952 -NCIT:C7854 Stage I Vulvar Cancer AJCC v6 9 16953 -NCIT:C6328 Stage IA Vulvar Carcinoma AJCC v6 10 16954 -NCIT:C6329 Stage IB Vulvar Carcinoma AJCC v6 10 16955 -NCIT:C9051 Stage II Vulvar Cancer AJCC v6 9 16956 -NCIT:C9052 Stage III Vulvar Cancer AJCC v6 9 16957 -NCIT:C9053 Stage IV Vulvar Cancer AJCC v6 9 16958 -NCIT:C27247 Stage IVB Vulvar Cancer AJCC v6 and v7 10 16959 -NCIT:C6330 Stage IVA Vulvar Cancer AJCC v6 10 16960 -NCIT:C9054 Recurrent Vulvar Carcinoma 8 16961 -NCIT:C174200 Recurrent Vulvar Squamous Cell Carcinoma 9 16962 -NCIT:C9055 Bartholin Gland Carcinoma 8 16963 -NCIT:C40293 Bartholin Gland Squamous Cell Carcinoma 9 16964 -NCIT:C40295 Bartholin Gland Adenoid Cystic Carcinoma 9 16965 -NCIT:C40296 Bartholin Gland Adenosquamous Carcinoma 9 16966 -NCIT:C40297 Bartholin Gland Transitional Cell Carcinoma 9 16967 -NCIT:C40298 Bartholin Gland Small Cell Neuroendocrine Carcinoma 9 16968 -NCIT:C7719 Bartholin Gland Adenocarcinoma 9 16969 -NCIT:C91203 Vulvar Cancer by AJCC v7 Stage 8 16970 -NCIT:C89445 Stage 0 Vulvar Cancer AJCC v7 9 16971 -NCIT:C89447 Stage I Vulvar Cancer AJCC v7 9 16972 -NCIT:C89448 Stage IA Vulvar Cancer AJCC v7 10 16973 -NCIT:C89449 Stage IB Vulvar Cancer AJCC v7 10 16974 -NCIT:C89451 Stage II Vulvar Cancer AJCC v7 9 16975 -NCIT:C89452 Stage III Vulvar Cancer AJCC v7 9 16976 -NCIT:C87003 Stage IIIA Vulvar Cancer AJCC v7 10 16977 -NCIT:C87004 Stage IIIB Vulvar Cancer AJCC v7 10 16978 -NCIT:C87005 Stage IIIC Vulvar Cancer AJCC v7 10 16979 -NCIT:C89453 Stage IV Vulvar Cancer AJCC v7 9 16980 -NCIT:C27247 Stage IVB Vulvar Cancer AJCC v6 and v7 10 16981 -NCIT:C89454 Stage IVA Vulvar Cancer AJCC v7 10 16982 -NCIT:C9362 Clitoral Carcinoma 8 16983 -NCIT:C9363 Labia Majora Carcinoma 8 16984 -NCIT:C9364 Labia Minora Carcinoma 8 16985 -NCIT:C6332 Metastatic Malignant Neoplasm in the Vulva 7 16986 -NCIT:C7637 Malignant Labia Minora Neoplasm 7 16987 -NCIT:C9364 Labia Minora Carcinoma 8 16988 -NCIT:C7638 Malignant Labia Majora Neoplasm 7 16989 -NCIT:C9363 Labia Majora Carcinoma 8 16990 -NCIT:C3730 Mixed Mesodermal (Mullerian) Tumor 5 16991 -NCIT:C3726 Adenomyoma 6 16992 -NCIT:C179925 Uterine Ligament Adenomyoma 7 16993 -NCIT:C40231 Cervical Adenomyoma 7 16994 -NCIT:C40232 Cervical Adenomyoma, Endocervical-Type 8 16995 -NCIT:C40233 Cervical Adenomyoma, Mesonephric-Type 8 16996 -NCIT:C40234 Cervical Atypical Polypoid Adenomyoma 8 16997 -NCIT:C6338 Uterine Corpus Adenomyoma 7 16998 -NCIT:C40235 Uterine Corpus Atypical Polypoid Adenomyoma 8 16999 -NCIT:C6895 Atypical Polypoid Adenomyoma 7 17000 -NCIT:C40234 Cervical Atypical Polypoid Adenomyoma 8 17001 -NCIT:C40235 Uterine Corpus Atypical Polypoid Adenomyoma 8 17002 -NCIT:C40035 Adenocarcinofibroma 6 17003 -NCIT:C40034 Ovarian Mucinous Adenocarcinofibroma 7 17004 -NCIT:C40079 Ovarian Clear Cell Adenocarcinofibroma 7 17005 -NCIT:C67092 Ovarian Serous Adenocarcinofibroma 7 17006 -NCIT:C8975 Malignant Mixed Mesodermal (Mullerian) Tumor 6 17007 -NCIT:C159507 Primary Peritoneal Carcinosarcoma 7 17008 -NCIT:C170929 Metastatic Malignant Mixed Mesodermal (Mullerian) Tumor 7 17009 -NCIT:C170930 Advanced Malignant Mixed Mesodermal (Mullerian) Tumor 8 17010 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 9 17011 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 9 17012 -NCIT:C170931 Metastatic Uterine Corpus Carcinosarcoma 8 17013 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 9 17014 -NCIT:C170933 Metastatic Ovarian Carcinosarcoma 8 17015 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 9 17016 -NCIT:C40124 Fallopian Tube Carcinosarcoma 7 17017 -NCIT:C40278 Vaginal Carcinosarcoma 7 17018 -NCIT:C42700 Uterine Carcinosarcoma 7 17019 -NCIT:C113238 Uterine Carcinosarcoma, Homologous Type 8 17020 -NCIT:C113239 Uterine Carcinosarcoma, Heterologous Type 8 17021 -NCIT:C36097 Cervical Carcinosarcoma 8 17022 -NCIT:C9180 Uterine Corpus Carcinosarcoma 8 17023 -NCIT:C155818 Recurrent Uterine Corpus Carcinosarcoma 9 17024 -NCIT:C158381 Refractory Uterine Corpus Carcinosarcoma 9 17025 -NCIT:C170931 Metastatic Uterine Corpus Carcinosarcoma 9 17026 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 10 17027 -NCIT:C9192 Ovarian Carcinosarcoma 7 17028 -NCIT:C153347 Recurrent Ovarian Carcinosarcoma 8 17029 -NCIT:C170933 Metastatic Ovarian Carcinosarcoma 8 17030 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 9 17031 -NCIT:C8984 Female Reproductive System Adenofibroma 6 17032 -NCIT:C126311 Ovarian Seromucinous Adenofibroma 7 17033 -NCIT:C27287 Ovarian Endometrioid Adenofibroma 7 17034 -NCIT:C27288 Ovarian Endometrioid Cystadenofibroma 8 17035 -NCIT:C40069 Borderline Ovarian Endometrioid Adenofibroma 7 17036 -NCIT:C27289 Borderline Ovarian Endometrioid Cystadenofibroma 8 17037 -NCIT:C40230 Cervical Adenofibroma 7 17038 -NCIT:C6337 Uterine Corpus Adenofibroma 7 17039 -NCIT:C67090 Serous Adenofibroma 7 17040 -NCIT:C158622 Borderline Serous Cystadenofibroma 8 17041 -NCIT:C40029 Borderline Ovarian Serous Cystadenofibroma 9 17042 -NCIT:C40028 Borderline Ovarian Serous Adenofibroma 8 17043 -NCIT:C40029 Borderline Ovarian Serous Cystadenofibroma 9 17044 -NCIT:C40031 Ovarian Serous Adenofibroma 8 17045 -NCIT:C40032 Ovarian Serous Cystadenofibroma 9 17046 -NCIT:C40113 Fallopian Tube Serous Adenofibroma 8 17047 -NCIT:C40114 Fallopian Tube Serous Cystadenofibroma 9 17048 -NCIT:C8978 Mucinous Adenofibroma 7 17049 -NCIT:C40040 Ovarian Mucinous Adenofibroma 8 17050 -NCIT:C40041 Ovarian Mucinous Cystadenofibroma 9 17051 -NCIT:C66775 Borderline Ovarian Mucinous Adenofibroma 8 17052 -NCIT:C8979 Mucinous Cystadenofibroma 8 17053 -NCIT:C40041 Ovarian Mucinous Cystadenofibroma 9 17054 -NCIT:C8985 Cystadenofibroma 7 17055 -NCIT:C158622 Borderline Serous Cystadenofibroma 8 17056 -NCIT:C40029 Borderline Ovarian Serous Cystadenofibroma 9 17057 -NCIT:C27288 Ovarian Endometrioid Cystadenofibroma 8 17058 -NCIT:C27289 Borderline Ovarian Endometrioid Cystadenofibroma 8 17059 -NCIT:C40020 Rete Ovarii Cystadenofibroma 8 17060 -NCIT:C40032 Ovarian Serous Cystadenofibroma 8 17061 -NCIT:C40114 Fallopian Tube Serous Cystadenofibroma 8 17062 -NCIT:C8979 Mucinous Cystadenofibroma 8 17063 -NCIT:C40041 Ovarian Mucinous Cystadenofibroma 9 17064 -NCIT:C8988 Clear Cell Cystadenofibroma 8 17065 -NCIT:C40083 Borderline Ovarian Clear Cell Cystadenofibroma 9 17066 -NCIT:C40086 Ovarian Clear Cell Cystadenofibroma 9 17067 -NCIT:C8986 Papillary Adenofibroma 7 17068 -NCIT:C158622 Borderline Serous Cystadenofibroma 8 17069 -NCIT:C40029 Borderline Ovarian Serous Cystadenofibroma 9 17070 -NCIT:C40028 Borderline Ovarian Serous Adenofibroma 8 17071 -NCIT:C40029 Borderline Ovarian Serous Cystadenofibroma 9 17072 -NCIT:C8987 Clear Cell Adenofibroma 7 17073 -NCIT:C40081 Borderline Ovarian Clear Cell Adenofibroma 8 17074 -NCIT:C126308 Borderline Ovarian Clear Cell Tumor/Atypical Proliferative Ovarian Clear Cell Tumor 9 17075 -NCIT:C40082 Borderline Ovarian Clear Cell Tumor/Atypical Proliferative Ovarian Clear Cell Tumor with Intraepithelial Carcinoma 10 17076 -NCIT:C40083 Borderline Ovarian Clear Cell Cystadenofibroma 9 17077 -NCIT:C40085 Ovarian Clear Cell Adenofibroma 8 17078 -NCIT:C40086 Ovarian Clear Cell Cystadenofibroma 9 17079 -NCIT:C8988 Clear Cell Cystadenofibroma 8 17080 -NCIT:C40083 Borderline Ovarian Clear Cell Cystadenofibroma 9 17081 -NCIT:C40086 Ovarian Clear Cell Cystadenofibroma 9 17082 -NCIT:C9474 Adenosarcoma 6 17083 -NCIT:C102570 Broad Ligament Adenosarcoma 7 17084 -NCIT:C40125 Fallopian Tube Adenosarcoma 7 17085 -NCIT:C40229 Cervical Adenosarcoma 7 17086 -NCIT:C40277 Vaginal Adenosarcoma 7 17087 -NCIT:C6336 Uterine Corpus Adenosarcoma 7 17088 -NCIT:C139894 Uterine Corpus Adenosarcoma by AJCC v8 Stage 8 17089 -NCIT:C139895 Stage I Uterine Corpus Adenosarcoma AJCC v8 9 17090 -NCIT:C139896 Stage IA Uterine Corpus Adenosarcoma AJCC v8 10 17091 -NCIT:C139897 Stage IB Uterine Corpus Adenosarcoma AJCC v8 10 17092 -NCIT:C139898 Stage IC Uterine Corpus Adenosarcoma AJCC v8 10 17093 -NCIT:C139899 Stage II Uterine Corpus Adenosarcoma AJCC v8 9 17094 -NCIT:C139900 Stage III Uterine Corpus Adenosarcoma AJCC v8 9 17095 -NCIT:C139901 Stage IIIA Uterine Corpus Adenosarcoma AJCC v8 10 17096 -NCIT:C139902 Stage IIIB Uterine Corpus Adenosarcoma AJCC v8 10 17097 -NCIT:C139903 Stage IIIC Uterine Corpus Adenosarcoma AJCC v8 10 17098 -NCIT:C139904 Stage IV Uterine Corpus Adenosarcoma AJCC v8 9 17099 -NCIT:C139905 Stage IVA Uterine Corpus Adenosarcoma AJCC v8 10 17100 -NCIT:C139906 Stage IVB Uterine Corpus Adenosarcoma AJCC v8 10 17101 -NCIT:C7317 Ovarian Adenosarcoma 7 17102 -NCIT:C40016 Rete Ovarii Neoplasm 5 17103 -NCIT:C40017 Rete Ovarii Adenocarcinoma 6 17104 -NCIT:C40018 Rete Ovarii Adenoma 6 17105 -NCIT:C40019 Rete Ovarii Cystadenoma 6 17106 -NCIT:C40020 Rete Ovarii Cystadenofibroma 6 17107 -NCIT:C40133 Uterine Ligament Neoplasm 5 17108 -NCIT:C126493 Benign Uterine Ligament Neoplasm 6 17109 -NCIT:C155952 Uterine Ligament Papillary Cystadenoma 7 17110 -NCIT:C179921 Broad Ligament Papillary Cystadenoma 8 17111 -NCIT:C40142 Uterine Ligament Papillary Cystadenoma Associated with von Hippel-Lindau Disease 8 17112 -NCIT:C179923 Uterine Ligament Leiomyoma 7 17113 -NCIT:C179924 Broad Ligament Leiomyoma 8 17114 -NCIT:C179925 Uterine Ligament Adenomyoma 7 17115 -NCIT:C179933 Benign Broad Ligament Neoplasm 7 17116 -NCIT:C126476 Broad Ligament Serous Cystadenoma 8 17117 -NCIT:C179921 Broad Ligament Papillary Cystadenoma 8 17118 -NCIT:C179924 Broad Ligament Leiomyoma 8 17119 -NCIT:C126498 Malignant Uterine Ligament Neoplasm 6 17120 -NCIT:C179934 Malignant Broad Ligament Neoplasm 7 17121 -NCIT:C102570 Broad Ligament Adenosarcoma 8 17122 -NCIT:C179926 Broad Ligament Leiomyosarcoma 8 17123 -NCIT:C40135 Broad Ligament Adenocarcinoma 8 17124 -NCIT:C126479 Broad Ligament Serous Adenocarcinoma 9 17125 -NCIT:C40137 Broad Ligament Mucinous Adenocarcinoma 9 17126 -NCIT:C40138 Broad Ligament Endometrioid Adenocarcinoma 9 17127 -NCIT:C40139 Broad Ligament Clear Cell Adenocarcinoma 9 17128 -NCIT:C179927 Uterine Ligament Wolffian Tumor 6 17129 -NCIT:C179547 Broad Ligament Wolffian Tumor 7 17130 -NCIT:C179928 Uterine Ligament Ependymoma 6 17131 -NCIT:C179929 Broad Ligament Ependymoma 7 17132 -NCIT:C179931 Broad Ligament Neoplasm 6 17133 -NCIT:C126469 Borderline Broad Ligament Serous Tumor 7 17134 -NCIT:C179547 Broad Ligament Wolffian Tumor 7 17135 -NCIT:C179929 Broad Ligament Ependymoma 7 17136 -NCIT:C179933 Benign Broad Ligament Neoplasm 7 17137 -NCIT:C126476 Broad Ligament Serous Cystadenoma 8 17138 -NCIT:C179921 Broad Ligament Papillary Cystadenoma 8 17139 -NCIT:C179924 Broad Ligament Leiomyoma 8 17140 -NCIT:C179934 Malignant Broad Ligament Neoplasm 7 17141 -NCIT:C102570 Broad Ligament Adenosarcoma 8 17142 -NCIT:C179926 Broad Ligament Leiomyosarcoma 8 17143 -NCIT:C40135 Broad Ligament Adenocarcinoma 8 17144 -NCIT:C126479 Broad Ligament Serous Adenocarcinoma 9 17145 -NCIT:C40137 Broad Ligament Mucinous Adenocarcinoma 9 17146 -NCIT:C40138 Broad Ligament Endometrioid Adenocarcinoma 9 17147 -NCIT:C40139 Broad Ligament Clear Cell Adenocarcinoma 9 17148 -NCIT:C40141 Wolffian Tumor 5 17149 -NCIT:C179548 Ovarian Wolffian Tumor 6 17150 -NCIT:C179927 Uterine Ligament Wolffian Tumor 6 17151 -NCIT:C179547 Broad Ligament Wolffian Tumor 7 17152 -NCIT:C4699 Gestational Trophoblastic Tumor 5 17153 -NCIT:C140032 Gestational Trophoblastic Tumor by AJCC v7 Stage 6 17154 -NCIT:C87150 Stage I Gestational Trophoblastic Tumor AJCC v7 7 17155 -NCIT:C87151 Stage IA Gestational Trophoblastic Tumor AJCC v7 8 17156 -NCIT:C87152 Stage IB Gestational Trophoblastic Tumor AJCC v7 8 17157 -NCIT:C87153 Stage II Gestational Trophoblastic Tumor AJCC v7 7 17158 -NCIT:C87154 Stage IIA Gestational Trophoblastic Tumor AJCC v7 8 17159 -NCIT:C87155 Stage IIB Gestational Trophoblastic Tumor AJCC v7 8 17160 -NCIT:C87156 Stage III Gestational Trophoblastic Tumor AJCC v7 7 17161 -NCIT:C87157 Stage IIIA Gestational Trophoblastic Tumor AJCC v7 8 17162 -NCIT:C87158 Stage IIIB Gestational Trophoblastic Tumor AJCC v7 8 17163 -NCIT:C87159 Stage IV Gestational Trophoblastic Tumor AJCC v7 7 17164 -NCIT:C87160 Stage IVA Gestational Trophoblastic Tumor AJCC v7 8 17165 -NCIT:C87161 Stage IVB Gestational Trophoblastic Tumor AJCC v7 8 17166 -NCIT:C180634 Mixed Trophoblastic Tumor 6 17167 -NCIT:C3757 Placental Site Trophoblastic Tumor 6 17168 -NCIT:C4646 Gestational Choriocarcinoma 6 17169 -NCIT:C27246 Uterine Corpus Choriocarcinoma 7 17170 -NCIT:C40442 Ovarian Gestational Choriocarcinoma 7 17171 -NCIT:C6278 Fallopian Tube Gestational Choriocarcinoma 7 17172 -NCIT:C8893 Placental Choriocarcinoma 7 17173 -NCIT:C6900 Epithelioid Trophoblastic Tumor 6 17174 -NCIT:C7887 Recurrent Gestational Trophoblastic Tumor 6 17175 -NCIT:C9176 Non-Metastatic Gestational Trophoblastic Tumor 6 17176 -NCIT:C9177 Good Prognosis Metastatic Gestational Trophoblastic Tumor 6 17177 -NCIT:C9178 Poor Prognosis Metastatic Gestational Trophoblastic Tumor 6 17178 -NCIT:C4858 Placental Neoplasm 5 17179 -NCIT:C3555 Malignant Placental Neoplasm 6 17180 -NCIT:C8546 Metastatic Malignant Neoplasm in the Placenta 7 17181 -NCIT:C8893 Placental Choriocarcinoma 7 17182 -NCIT:C6985 Invasive Hydatidiform Mole 6 17183 -NCIT:C180635 Metastatic Hydatidiform Mole 7 17184 -NCIT:C8545 Benign Placental Neoplasm 6 17185 -NCIT:C3521 Placental Polyp 7 17186 -NCIT:C4868 Placental Hemangioma 7 17187 -NCIT:C4913 Malignant Female Reproductive System Neoplasm 5 17188 -NCIT:C126498 Malignant Uterine Ligament Neoplasm 6 17189 -NCIT:C179934 Malignant Broad Ligament Neoplasm 7 17190 -NCIT:C102570 Broad Ligament Adenosarcoma 8 17191 -NCIT:C179926 Broad Ligament Leiomyosarcoma 8 17192 -NCIT:C40135 Broad Ligament Adenocarcinoma 8 17193 -NCIT:C126479 Broad Ligament Serous Adenocarcinoma 9 17194 -NCIT:C40137 Broad Ligament Mucinous Adenocarcinoma 9 17195 -NCIT:C40138 Broad Ligament Endometrioid Adenocarcinoma 9 17196 -NCIT:C40139 Broad Ligament Clear Cell Adenocarcinoma 9 17197 -NCIT:C150526 Recurrent Malignant Female Reproductive System Neoplasm 6 17198 -NCIT:C153347 Recurrent Ovarian Carcinosarcoma 7 17199 -NCIT:C160619 Recurrent Malignant Ovarian Granulosa Cell Tumor 7 17200 -NCIT:C171170 Recurrent Extrarenal Rhabdoid Tumor of the Ovary 7 17201 -NCIT:C7620 Recurrent Female Reproductive System Carcinoma 7 17202 -NCIT:C115429 Recurrent Fallopian Tube Carcinoma 8 17203 -NCIT:C170750 Recurrent Platinum-Resistant Fallopian Tube Carcinoma 9 17204 -NCIT:C170755 Recurrent Fallopian Tube Undifferentiated Carcinoma 9 17205 -NCIT:C170757 Recurrent Fallopian Tube Transitional Cell Carcinoma 9 17206 -NCIT:C170766 Recurrent Fallopian Tube Adenocarcinoma 9 17207 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 10 17208 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 10 17209 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 10 17210 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 10 17211 -NCIT:C191395 Recurrent Platinum-Sensitive Fallopian Tube Carcinoma 9 17212 -NCIT:C150094 Recurrent Endometrial Carcinoma 8 17213 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 9 17214 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 9 17215 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 10 17216 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 10 17217 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 10 17218 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 10 17219 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 10 17220 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 9 17221 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 9 17222 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 9 17223 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 9 17224 -NCIT:C190200 Locally Recurrent Endometrial Carcinoma 9 17225 -NCIT:C7804 Recurrent Cervical Carcinoma 8 17226 -NCIT:C136649 Recurrent Cervical Squamous Cell Carcinoma 9 17227 -NCIT:C136650 Recurrent Cervical Adenosquamous Carcinoma 9 17228 -NCIT:C136651 Recurrent Cervical Adenocarcinoma 9 17229 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 10 17230 -NCIT:C7833 Recurrent Ovarian Carcinoma 8 17231 -NCIT:C148025 Recurrent BRCA- Associated Ovarian Carcinoma 9 17232 -NCIT:C153614 Recurrent Ovarian Adenocarcinoma 9 17233 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 10 17234 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 10 17235 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 11 17236 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 11 17237 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 11 17238 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 10 17239 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 10 17240 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 11 17241 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 10 17242 -NCIT:C153818 Recurrent Malignant Ovarian Brenner Tumor 9 17243 -NCIT:C153819 Recurrent Ovarian Transitional Cell Carcinoma 9 17244 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 9 17245 -NCIT:C170754 Recurrent Ovarian Undifferentiated Carcinoma 9 17246 -NCIT:C178669 Recurrent Ovarian Seromucinous Carcinoma 9 17247 -NCIT:C188391 Recurrent Platinum-Sensitive Ovarian Carcinoma 9 17248 -NCIT:C190201 Locally Recurrent Ovarian Carcinoma 9 17249 -NCIT:C7860 Recurrent Vaginal Carcinoma 8 17250 -NCIT:C185302 Recurrent Vaginal Squamous Cell Carcinoma 9 17251 -NCIT:C9054 Recurrent Vulvar Carcinoma 8 17252 -NCIT:C174200 Recurrent Vulvar Squamous Cell Carcinoma 9 17253 -NCIT:C8087 Recurrent Ovarian Germ Cell Tumor 7 17254 -NCIT:C8261 Recurrent Uterine Corpus Sarcoma 7 17255 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 8 17256 -NCIT:C9072 Recurrent Uterine Corpus Cancer 7 17257 -NCIT:C150094 Recurrent Endometrial Carcinoma 8 17258 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 9 17259 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 9 17260 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 10 17261 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 10 17262 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 10 17263 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 10 17264 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 10 17265 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 9 17266 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 9 17267 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 9 17268 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 9 17269 -NCIT:C190200 Locally Recurrent Endometrial Carcinoma 9 17270 -NCIT:C155818 Recurrent Uterine Corpus Carcinosarcoma 8 17271 -NCIT:C9269 Recurrent Malignant Endocervical Neoplasm 7 17272 -NCIT:C150527 Refractory Malignant Female Reproductive System Neoplasm 6 17273 -NCIT:C150092 Refractory Uterine Corpus Cancer 7 17274 -NCIT:C150093 Refractory Endometrial Carcinoma 8 17275 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 9 17276 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 9 17277 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 9 17278 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 9 17279 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 10 17280 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 10 17281 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 10 17282 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 10 17283 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 10 17284 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 9 17285 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 9 17286 -NCIT:C158381 Refractory Uterine Corpus Carcinosarcoma 8 17287 -NCIT:C152048 Refractory Female Reproductive System Carcinoma 7 17288 -NCIT:C150091 Refractory Ovarian Carcinoma 8 17289 -NCIT:C147561 Platinum-Resistant Ovarian Carcinoma 9 17290 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 10 17291 -NCIT:C179459 Unresectable Platinum-Resistant Ovarian Carcinoma 10 17292 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 10 17293 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 11 17294 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 11 17295 -NCIT:C170968 Refractory Ovarian Adenocarcinoma 9 17296 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 10 17297 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 10 17298 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 11 17299 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 11 17300 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 10 17301 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 10 17302 -NCIT:C178671 Refractory Ovarian Seromucinous Carcinoma 9 17303 -NCIT:C178682 Refractory Ovarian Transitional Cell Carcinoma 9 17304 -NCIT:C178683 Refractory Ovarian Undifferentiated Carcinoma 9 17305 -NCIT:C178700 Platinum-Refractory Ovarian Carcinoma 9 17306 -NCIT:C179207 Refractory Ovarian Squamous Cell Carcinoma 9 17307 -NCIT:C183126 Refractory Malignant Ovarian Brenner Tumor 9 17308 -NCIT:C150093 Refractory Endometrial Carcinoma 8 17309 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 9 17310 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 9 17311 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 9 17312 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 9 17313 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 10 17314 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 10 17315 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 10 17316 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 10 17317 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 10 17318 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 9 17319 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 9 17320 -NCIT:C152047 Refractory Fallopian Tube Carcinoma 8 17321 -NCIT:C157621 Platinum-Resistant Fallopian Tube Carcinoma 9 17322 -NCIT:C170750 Recurrent Platinum-Resistant Fallopian Tube Carcinoma 10 17323 -NCIT:C170971 Refractory Fallopian Tube Adenocarcinoma 9 17324 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 10 17325 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 10 17326 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 10 17327 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 10 17328 -NCIT:C178674 Refractory Fallopian Tube Transitional Cell Carcinoma 9 17329 -NCIT:C178675 Refractory Fallopian Tube Undifferentiated Carcinoma 9 17330 -NCIT:C178698 Platinum-Refractory Fallopian Tube Carcinoma 9 17331 -NCIT:C170513 Refractory Cervical Carcinoma 8 17332 -NCIT:C181034 Refractory Cervical Squamous Cell Carcinoma 9 17333 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 10 17334 -NCIT:C181036 Refractory Cervical Adenocarcinoma 9 17335 -NCIT:C174508 Refractory Vulvar Carcinoma 8 17336 -NCIT:C185304 Refractory Vulvar Squamous Cell Carcinoma 9 17337 -NCIT:C174509 Refractory Vaginal Carcinoma 8 17338 -NCIT:C185303 Refractory Vaginal Squamous Cell Carcinoma 9 17339 -NCIT:C169021 Platinum-Resistant Malignant Female Reproductive System Neoplasm 7 17340 -NCIT:C147561 Platinum-Resistant Ovarian Carcinoma 8 17341 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 9 17342 -NCIT:C179459 Unresectable Platinum-Resistant Ovarian Carcinoma 9 17343 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 9 17344 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 10 17345 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 10 17346 -NCIT:C157621 Platinum-Resistant Fallopian Tube Carcinoma 8 17347 -NCIT:C170750 Recurrent Platinum-Resistant Fallopian Tube Carcinoma 9 17348 -NCIT:C171171 Refractory Extrarenal Rhabdoid Tumor of the Ovary 7 17349 -NCIT:C178697 Platinum-Refractory Malignant Female Reproductive System Neoplasm 7 17350 -NCIT:C178698 Platinum-Refractory Fallopian Tube Carcinoma 8 17351 -NCIT:C178700 Platinum-Refractory Ovarian Carcinoma 8 17352 -NCIT:C162254 Metastatic Malignant Female Reproductive System Neoplasm 6 17353 -NCIT:C153387 Metastatic Cervical Carcinoma 7 17354 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 8 17355 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 17356 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 17357 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 8 17358 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 17359 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 17360 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 17361 -NCIT:C153390 Metastatic Cervical Adenosquamous Carcinoma 8 17362 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 17363 -NCIT:C156294 Advanced Cervical Carcinoma 8 17364 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 17365 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 17366 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 17367 -NCIT:C156295 Locally Advanced Cervical Carcinoma 8 17368 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 17369 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 17370 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 9 17371 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 17372 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 17373 -NCIT:C156063 Metastatic Fallopian Tube Carcinoma 7 17374 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 8 17375 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 9 17376 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 8 17377 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 8 17378 -NCIT:C156064 Metastatic Ovarian Carcinoma 7 17379 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 8 17380 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 17381 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 17382 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 17383 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 9 17384 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 17385 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 17386 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 9 17387 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 17388 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 17389 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 17390 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 17391 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 17392 -NCIT:C165458 Advanced Ovarian Carcinoma 8 17393 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 17394 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 17395 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 17396 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 17397 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 17398 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 17399 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 17400 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 8 17401 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 17402 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 17403 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 17404 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 17405 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 8 17406 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 17407 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 8 17408 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 17409 -NCIT:C172234 Metastatic Ovarian Undifferentiated Carcinoma 8 17410 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 8 17411 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 17412 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 17413 -NCIT:C180333 Metastatic Microsatellite Stable Ovarian Carcinoma 8 17414 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 17415 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 8 17416 -NCIT:C27391 Metastatic Ovarian Small Cell Carcinoma, Hypercalcemic Type 8 17417 -NCIT:C156065 Metastatic Vaginal Carcinoma 7 17418 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 8 17419 -NCIT:C170788 Advanced Vaginal Carcinoma 8 17420 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 17421 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 17422 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 17423 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 17424 -NCIT:C181028 Metastatic Vaginal Adenosquamous Carcinoma 8 17425 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 17426 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 8 17427 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 17428 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 17429 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 8 17430 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 17431 -NCIT:C156066 Metastatic Vulvar Carcinoma 7 17432 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 8 17433 -NCIT:C170786 Advanced Vulvar Carcinoma 8 17434 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 8 17435 -NCIT:C156068 Metastatic Endometrial Carcinoma 7 17436 -NCIT:C159676 Advanced Endometrial Carcinoma 8 17437 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 17438 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 17439 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 17440 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 17441 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 8 17442 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 17443 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 17444 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 9 17445 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 8 17446 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 8 17447 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 17448 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 8 17449 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 9 17450 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 17451 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 17452 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 17453 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 17454 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 9 17455 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 17456 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 17457 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 17458 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 17459 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 9 17460 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 9 17461 -NCIT:C167260 Advanced Malignant Female Reproductive System Neoplasm 7 17462 -NCIT:C156294 Advanced Cervical Carcinoma 8 17463 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 17464 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 17465 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 17466 -NCIT:C165458 Advanced Ovarian Carcinoma 8 17467 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 17468 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 17469 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 17470 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 17471 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 17472 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 17473 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 17474 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 8 17475 -NCIT:C170786 Advanced Vulvar Carcinoma 8 17476 -NCIT:C170788 Advanced Vaginal Carcinoma 8 17477 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 17478 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 17479 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 17480 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 17481 -NCIT:C170930 Advanced Malignant Mixed Mesodermal (Mullerian) Tumor 8 17482 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 9 17483 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 9 17484 -NCIT:C172450 Advanced Uterine Corpus Cancer 8 17485 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 9 17486 -NCIT:C159676 Advanced Endometrial Carcinoma 9 17487 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 10 17488 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 11 17489 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 11 17490 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 10 17491 -NCIT:C170460 Locally Advanced Malignant Female Reproductive System Neoplasm 7 17492 -NCIT:C156295 Locally Advanced Cervical Carcinoma 8 17493 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 17494 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 17495 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 9 17496 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 17497 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 17498 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 8 17499 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 17500 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 17501 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 17502 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 17503 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 8 17504 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 9 17505 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 8 17506 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 17507 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 17508 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 9 17509 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 8 17510 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 8 17511 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 17512 -NCIT:C185381 Metastatic Mesonephric Adenocarcinoma 7 17513 -NCIT:C190009 Metastatic Uterine Corpus Sarcoma 7 17514 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 8 17515 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 9 17516 -NCIT:C170963 Resectable Malignant Female Reproductive System Neoplasm 6 17517 -NCIT:C178437 Mucosal Melanoma of the Female Genital Tract 6 17518 -NCIT:C27394 Vaginal Melanoma 7 17519 -NCIT:C40239 Cervical Melanoma 7 17520 -NCIT:C40329 Vulvar Melanoma 7 17521 -NCIT:C179320 Mesonephric-Like Adenocarcinoma 6 17522 -NCIT:C179321 Ovarian Mesonephric-Like Adenocarcinoma 7 17523 -NCIT:C179322 Endometrial Mesonephric-Like Adenocarcinoma 7 17524 -NCIT:C181162 Female Reproductive System Carcinoma 6 17525 -NCIT:C3867 Fallopian Tube Carcinoma 7 17526 -NCIT:C115429 Recurrent Fallopian Tube Carcinoma 8 17527 -NCIT:C170750 Recurrent Platinum-Resistant Fallopian Tube Carcinoma 9 17528 -NCIT:C170755 Recurrent Fallopian Tube Undifferentiated Carcinoma 9 17529 -NCIT:C170757 Recurrent Fallopian Tube Transitional Cell Carcinoma 9 17530 -NCIT:C170766 Recurrent Fallopian Tube Adenocarcinoma 9 17531 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 10 17532 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 10 17533 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 10 17534 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 10 17535 -NCIT:C191395 Recurrent Platinum-Sensitive Fallopian Tube Carcinoma 9 17536 -NCIT:C139983 Fallopian Tube Cancer by AJCC v8 Stage 8 17537 -NCIT:C139984 Stage I Fallopian Tube Cancer AJCC v8 9 17538 -NCIT:C139985 Stage IA Fallopian Tube Cancer AJCC v8 10 17539 -NCIT:C139986 Stage IB Fallopian Tube Cancer AJCC v8 10 17540 -NCIT:C139987 Stage IC Fallopian Tube Cancer AJCC v8 10 17541 -NCIT:C139988 Stage II Fallopian Tube Cancer AJCC v8 9 17542 -NCIT:C139989 Stage IIA Fallopian Tube Cancer AJCC v8 10 17543 -NCIT:C139990 Stage IIB Fallopian Tube Cancer AJCC v8 10 17544 -NCIT:C139991 Stage III Fallopian Tube Cancer AJCC v8 9 17545 -NCIT:C139992 Stage IIIA Fallopian Tube Cancer AJCC v8 10 17546 -NCIT:C139993 Stage IIIA1 Fallopian Tube Cancer AJCC v8 11 17547 -NCIT:C139994 Stage IIIA2 Fallopian Tube Cancer AJCC v8 11 17548 -NCIT:C139995 Stage IIIB Fallopian Tube Cancer AJCC v8 10 17549 -NCIT:C139996 Stage IIIC Fallopian Tube Cancer AJCC v8 10 17550 -NCIT:C139997 Stage IV Fallopian Tube Cancer AJCC v8 9 17551 -NCIT:C139998 Stage IVA Fallopian Tube Cancer AJCC v8 10 17552 -NCIT:C139999 Stage IVB Fallopian Tube Cancer AJCC v8 10 17553 -NCIT:C152047 Refractory Fallopian Tube Carcinoma 8 17554 -NCIT:C157621 Platinum-Resistant Fallopian Tube Carcinoma 9 17555 -NCIT:C170750 Recurrent Platinum-Resistant Fallopian Tube Carcinoma 10 17556 -NCIT:C170971 Refractory Fallopian Tube Adenocarcinoma 9 17557 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 10 17558 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 10 17559 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 10 17560 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 10 17561 -NCIT:C178674 Refractory Fallopian Tube Transitional Cell Carcinoma 9 17562 -NCIT:C178675 Refractory Fallopian Tube Undifferentiated Carcinoma 9 17563 -NCIT:C178698 Platinum-Refractory Fallopian Tube Carcinoma 9 17564 -NCIT:C156063 Metastatic Fallopian Tube Carcinoma 8 17565 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 9 17566 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 10 17567 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 9 17568 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 9 17569 -NCIT:C160873 Platinum-Sensitive Fallopian Tube Carcinoma 8 17570 -NCIT:C191395 Recurrent Platinum-Sensitive Fallopian Tube Carcinoma 9 17571 -NCIT:C170969 Unresectable Fallopian Tube Carcinoma 8 17572 -NCIT:C170970 Unresectable Fallopian Tube Adenocarcinoma 9 17573 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 10 17574 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 10 17575 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 9 17576 -NCIT:C40104 Fallopian Tube Transitional Cell Carcinoma 8 17577 -NCIT:C170757 Recurrent Fallopian Tube Transitional Cell Carcinoma 9 17578 -NCIT:C178674 Refractory Fallopian Tube Transitional Cell Carcinoma 9 17579 -NCIT:C40455 Hereditary Fallopian Tube Carcinoma 8 17580 -NCIT:C6265 Fallopian Tube Adenocarcinoma 8 17581 -NCIT:C170766 Recurrent Fallopian Tube Adenocarcinoma 9 17582 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 10 17583 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 10 17584 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 10 17585 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 10 17586 -NCIT:C170970 Unresectable Fallopian Tube Adenocarcinoma 9 17587 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 10 17588 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 10 17589 -NCIT:C170971 Refractory Fallopian Tube Adenocarcinoma 9 17590 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 10 17591 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 10 17592 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 10 17593 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 10 17594 -NCIT:C40099 Fallopian Tube Serous Adenocarcinoma 9 17595 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 10 17596 -NCIT:C126456 Fallopian Tube High Grade Serous Adenocarcinoma 10 17597 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 11 17598 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 11 17599 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 11 17600 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 11 17601 -NCIT:C40103 Fallopian Tube Mucinous Adenocarcinoma 9 17602 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 10 17603 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 10 17604 -NCIT:C40105 Stage 0 Fallopian Tube Cancer AJCC v7 9 17605 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 10 17606 -NCIT:C6279 Fallopian Tube Endometrioid Adenocarcinoma 9 17607 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 10 17608 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 10 17609 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 10 17610 -NCIT:C6280 Fallopian Tube Clear Cell Adenocarcinoma 9 17611 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 10 17612 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 10 17613 -NCIT:C6278 Fallopian Tube Gestational Choriocarcinoma 8 17614 -NCIT:C6281 Fallopian Tube Undifferentiated Carcinoma 8 17615 -NCIT:C170755 Recurrent Fallopian Tube Undifferentiated Carcinoma 9 17616 -NCIT:C178675 Refractory Fallopian Tube Undifferentiated Carcinoma 9 17617 -NCIT:C6282 Fallopian Tube Squamous Cell Carcinoma 8 17618 -NCIT:C90499 Fallopian Tube Cancer by AJCC v6 Stage 8 17619 -NCIT:C8720 Stage I Fallopian Tube Cancer AJCC v6 and v7 9 17620 -NCIT:C6269 Stage IA Fallopian Tube Cancer AJCC v6 and v7 10 17621 -NCIT:C6270 Stage IB Fallopian Tube Cancer AJCC v6 and v7 10 17622 -NCIT:C6271 Stage IC Fallopian Tube Cancer AJCC v6 and v7 10 17623 -NCIT:C8721 Stage II Fallopian Tube Cancer AJCC v6 and v7 9 17624 -NCIT:C6272 Stage IIA Fallopian Tube Cancer AJCC v6 and v7 10 17625 -NCIT:C6276 Stage IIC Fallopian Tube Cancer AJCC v6 and v7 10 17626 -NCIT:C6277 Stage IIB Fallopian Tube Cancer AJCC v6 and v7 10 17627 -NCIT:C8722 Stage III Fallopian Tube Cancer AJCC v6 9 17628 -NCIT:C8963 Stage IV Fallopian Tube Cancer AJCC v6 and v7 9 17629 -NCIT:C91219 Fallopian Tube Cancer by AJCC v7 Stage 8 17630 -NCIT:C40105 Stage 0 Fallopian Tube Cancer AJCC v7 9 17631 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 10 17632 -NCIT:C8720 Stage I Fallopian Tube Cancer AJCC v6 and v7 9 17633 -NCIT:C6269 Stage IA Fallopian Tube Cancer AJCC v6 and v7 10 17634 -NCIT:C6270 Stage IB Fallopian Tube Cancer AJCC v6 and v7 10 17635 -NCIT:C6271 Stage IC Fallopian Tube Cancer AJCC v6 and v7 10 17636 -NCIT:C8721 Stage II Fallopian Tube Cancer AJCC v6 and v7 9 17637 -NCIT:C6272 Stage IIA Fallopian Tube Cancer AJCC v6 and v7 10 17638 -NCIT:C6276 Stage IIC Fallopian Tube Cancer AJCC v6 and v7 10 17639 -NCIT:C6277 Stage IIB Fallopian Tube Cancer AJCC v6 and v7 10 17640 -NCIT:C8963 Stage IV Fallopian Tube Cancer AJCC v6 and v7 9 17641 -NCIT:C89692 Stage III Fallopian Tube Cancer AJCC v7 9 17642 -NCIT:C6273 Stage IIIA Fallopian Tube Cancer AJCC v7 10 17643 -NCIT:C6274 Stage IIIB Fallopian Tube Cancer AJCC v7 10 17644 -NCIT:C6275 Stage IIIC Fallopian Tube Cancer AJCC v7 10 17645 -NCIT:C3917 Vaginal Carcinoma 7 17646 -NCIT:C128073 Vaginal Neuroendocrine Carcinoma 8 17647 -NCIT:C128075 Vaginal Large Cell Neuroendocrine Carcinoma 9 17648 -NCIT:C40263 Vaginal Small Cell Neuroendocrine Carcinoma 9 17649 -NCIT:C139657 Vaginal Cancer by AJCC v8 Stage 8 17650 -NCIT:C139658 Stage I Vaginal Cancer AJCC v8 9 17651 -NCIT:C139659 Stage IA Vaginal Cancer AJCC v8 10 17652 -NCIT:C139660 Stage IB Vaginal Cancer AJCC v8 10 17653 -NCIT:C139661 Stage II Vaginal Cancer AJCC v8 9 17654 -NCIT:C139662 Stage IIA Vaginal Cancer AJCC v8 10 17655 -NCIT:C139664 Stage IIB Vaginal Cancer AJCC v8 10 17656 -NCIT:C139665 Stage III Vaginal Cancer AJCC v8 9 17657 -NCIT:C139667 Stage IV Vaginal Cancer AJCC v8 9 17658 -NCIT:C139669 Stage IVA Vaginal Cancer AJCC v8 10 17659 -NCIT:C139670 Stage IVB Vaginal Cancer AJCC v8 10 17660 -NCIT:C156065 Metastatic Vaginal Carcinoma 8 17661 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 9 17662 -NCIT:C170788 Advanced Vaginal Carcinoma 9 17663 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 10 17664 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 10 17665 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 10 17666 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 11 17667 -NCIT:C181028 Metastatic Vaginal Adenosquamous Carcinoma 9 17668 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 10 17669 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 9 17670 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 10 17671 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 11 17672 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 9 17673 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 10 17674 -NCIT:C174509 Refractory Vaginal Carcinoma 8 17675 -NCIT:C185303 Refractory Vaginal Squamous Cell Carcinoma 9 17676 -NCIT:C175434 Unresectable Vaginal Carcinoma 8 17677 -NCIT:C180915 Vaginal Squamous Cell Carcinoma 8 17678 -NCIT:C128060 Vaginal Papillary Carcinoma 9 17679 -NCIT:C180917 Human Papillomavirus-Related Vaginal Squamous Cell Carcinoma 9 17680 -NCIT:C40248 Vaginal Warty Carcinoma 10 17681 -NCIT:C180919 Human Papillomavirus-Independent Vaginal Squamous Cell Carcinoma 9 17682 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 9 17683 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 10 17684 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 11 17685 -NCIT:C185302 Recurrent Vaginal Squamous Cell Carcinoma 9 17686 -NCIT:C185303 Refractory Vaginal Squamous Cell Carcinoma 9 17687 -NCIT:C40243 Vaginal Keratinizing Squamous Cell Carcinoma 9 17688 -NCIT:C40244 Vaginal Non-Keratinizing Squamous Cell Carcinoma 9 17689 -NCIT:C40245 Vaginal Basaloid Carcinoma 9 17690 -NCIT:C6325 Vaginal Verrucous Carcinoma 9 17691 -NCIT:C7736 Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 17692 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 17693 -NCIT:C40260 Vaginal Adenosquamous Carcinoma 8 17694 -NCIT:C181028 Metastatic Vaginal Adenosquamous Carcinoma 9 17695 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 10 17696 -NCIT:C40261 Vaginal Adenoid Cystic Carcinoma 8 17697 -NCIT:C40262 Vaginal Adenoid Basal Carcinoma 8 17698 -NCIT:C40264 Vaginal Undifferentiated Carcinoma 8 17699 -NCIT:C7860 Recurrent Vaginal Carcinoma 8 17700 -NCIT:C185302 Recurrent Vaginal Squamous Cell Carcinoma 9 17701 -NCIT:C7981 Vaginal Adenocarcinoma 8 17702 -NCIT:C180943 Human Papillomavirus-Related Vaginal Adenocarcinoma 9 17703 -NCIT:C180947 Vaginal Adenocarcinoma of Skene Gland Origin 9 17704 -NCIT:C40251 Vaginal Endometrioid Adenocarcinoma 9 17705 -NCIT:C40252 Vaginal Mucinous Adenocarcinoma 9 17706 -NCIT:C180945 Vaginal Mucinous Adenocarcinoma, Gastric-Type 10 17707 -NCIT:C180946 Vaginal Mucinous Adenocarcinoma, Intestinal-Type 10 17708 -NCIT:C40253 Vaginal Mesonephric Adenocarcinoma 9 17709 -NCIT:C7735 Vaginal Clear Cell Adenocarcinoma 9 17710 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 9 17711 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 10 17712 -NCIT:C90347 Vaginal Cancer by AJCC v6 Stage 8 17713 -NCIT:C7597 Stage IV Vaginal Cancer AJCC v6 and v7 9 17714 -NCIT:C7859 Stage IVA Vaginal Cancer AJCC v6 and v7 10 17715 -NCIT:C9355 Stage IVB Vaginal Cancer AJCC v6 and v7 10 17716 -NCIT:C7855 Stage 0 Vaginal Cancer AJCC v6 9 17717 -NCIT:C7856 Stage I Vaginal Cancer AJCC v6 and v7 9 17718 -NCIT:C7857 Stage II Vaginal Cancer AJCC v6 and v7 9 17719 -NCIT:C7858 Stage III Vaginal Cancer AJCC v6 and v7 9 17720 -NCIT:C91204 Vaginal Cancer by AJCC v7 Stage 8 17721 -NCIT:C7597 Stage IV Vaginal Cancer AJCC v6 and v7 9 17722 -NCIT:C7859 Stage IVA Vaginal Cancer AJCC v6 and v7 10 17723 -NCIT:C9355 Stage IVB Vaginal Cancer AJCC v6 and v7 10 17724 -NCIT:C7856 Stage I Vaginal Cancer AJCC v6 and v7 9 17725 -NCIT:C7857 Stage II Vaginal Cancer AJCC v6 and v7 9 17726 -NCIT:C7858 Stage III Vaginal Cancer AJCC v6 and v7 9 17727 -NCIT:C89476 Stage 0 Vaginal Cancer AJCC v7 9 17728 -NCIT:C4072 Mesonephric Adenocarcinoma 7 17729 -NCIT:C185381 Metastatic Mesonephric Adenocarcinoma 8 17730 -NCIT:C40253 Vaginal Mesonephric Adenocarcinoma 8 17731 -NCIT:C40254 Cervical Mesonephric Adenocarcinoma 8 17732 -NCIT:C4866 Vulvar Carcinoma 7 17733 -NCIT:C128243 Vulvar Neuroendocrine Carcinoma 8 17734 -NCIT:C128244 Vulvar Small Cell Neuroendocrine Carcinoma 9 17735 -NCIT:C40298 Bartholin Gland Small Cell Neuroendocrine Carcinoma 10 17736 -NCIT:C128245 Vulvar Large Cell Neuroendocrine Carcinoma 9 17737 -NCIT:C128247 Vulvar Merkel Cell Carcinoma 9 17738 -NCIT:C139618 Vulvar Cancer by AJCC v8 Stage 8 17739 -NCIT:C139619 Stage I Vulvar Cancer AJCC v8 9 17740 -NCIT:C139620 Stage IA Vulvar Cancer AJCC v8 10 17741 -NCIT:C139621 Stage IB Vulvar Cancer AJCC v8 10 17742 -NCIT:C139622 Stage II Vulvar Cancer AJCC v8 9 17743 -NCIT:C139623 Stage III Vulvar Cancer AJCC v8 9 17744 -NCIT:C139624 Stage IIIA Vulvar Cancer AJCC v8 10 17745 -NCIT:C139625 Stage IIIB Vulvar Cancer AJCC v8 10 17746 -NCIT:C139626 Stage IIIC Vulvar Cancer AJCC v8 10 17747 -NCIT:C139627 Stage IV Vulvar Cancer AJCC v8 9 17748 -NCIT:C139628 Stage IVA Vulvar Cancer AJCC v8 10 17749 -NCIT:C139630 Stage IVB Vulvar Cancer AJCC v8 10 17750 -NCIT:C156066 Metastatic Vulvar Carcinoma 8 17751 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 9 17752 -NCIT:C170786 Advanced Vulvar Carcinoma 9 17753 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 9 17754 -NCIT:C174198 Unresectable Vulvar Carcinoma 8 17755 -NCIT:C174199 Unresectable Vulvar Squamous Cell Carcinoma 9 17756 -NCIT:C174508 Refractory Vulvar Carcinoma 8 17757 -NCIT:C185304 Refractory Vulvar Squamous Cell Carcinoma 9 17758 -NCIT:C4052 Vulvar Squamous Cell Carcinoma 8 17759 -NCIT:C128167 Vulvar Keratoacanthoma 9 17760 -NCIT:C174199 Unresectable Vulvar Squamous Cell Carcinoma 9 17761 -NCIT:C174200 Recurrent Vulvar Squamous Cell Carcinoma 9 17762 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 9 17763 -NCIT:C181902 Vulvar Squamous Cell Carcinoma, Not Otherwise Specified 9 17764 -NCIT:C181903 Human Papillomavirus-Independent Vulvar Squamous Cell Carcinoma 9 17765 -NCIT:C185304 Refractory Vulvar Squamous Cell Carcinoma 9 17766 -NCIT:C27679 Human Papillomavirus-Related Vulvar Squamous Cell Carcinoma 9 17767 -NCIT:C40287 Vulvar Warty Carcinoma 10 17768 -NCIT:C40284 Vulvar Keratinizing Squamous Cell Carcinoma 9 17769 -NCIT:C40285 Vulvar Non-Keratinizing Squamous Cell Carcinoma 9 17770 -NCIT:C40286 Vulvar Basaloid Carcinoma 9 17771 -NCIT:C40289 Vulvar Squamous Cell Carcinoma with Tumor Giant Cells 9 17772 -NCIT:C40293 Bartholin Gland Squamous Cell Carcinoma 9 17773 -NCIT:C6383 Vulvar Verrucous Carcinoma 9 17774 -NCIT:C6380 Vulvar Adenocarcinoma 8 17775 -NCIT:C128162 Vulvar Adenocarcinoma of Mammary Gland Type 9 17776 -NCIT:C128164 Vulvar Adenocarcinoma of Sweat Gland Origin 9 17777 -NCIT:C4027 Vulvar Paget Disease 10 17778 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 10 17779 -NCIT:C40306 Vulvar Porocarcinoma 11 17780 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 10 17781 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 10 17782 -NCIT:C128166 Vulvar Adenocarcinoma, Intestinal-Type 9 17783 -NCIT:C40309 Vulvar Sebaceous Carcinoma 9 17784 -NCIT:C7719 Bartholin Gland Adenocarcinoma 9 17785 -NCIT:C6381 Vulvar Basal Cell Carcinoma 8 17786 -NCIT:C90345 Vulvar Cancer by AJCC v6 Stage 8 17787 -NCIT:C4522 Stage 0 Vulvar Cancer AJCC v6 9 17788 -NCIT:C7854 Stage I Vulvar Cancer AJCC v6 9 17789 -NCIT:C6328 Stage IA Vulvar Carcinoma AJCC v6 10 17790 -NCIT:C6329 Stage IB Vulvar Carcinoma AJCC v6 10 17791 -NCIT:C9051 Stage II Vulvar Cancer AJCC v6 9 17792 -NCIT:C9052 Stage III Vulvar Cancer AJCC v6 9 17793 -NCIT:C9053 Stage IV Vulvar Cancer AJCC v6 9 17794 -NCIT:C27247 Stage IVB Vulvar Cancer AJCC v6 and v7 10 17795 -NCIT:C6330 Stage IVA Vulvar Cancer AJCC v6 10 17796 -NCIT:C9054 Recurrent Vulvar Carcinoma 8 17797 -NCIT:C174200 Recurrent Vulvar Squamous Cell Carcinoma 9 17798 -NCIT:C9055 Bartholin Gland Carcinoma 8 17799 -NCIT:C40293 Bartholin Gland Squamous Cell Carcinoma 9 17800 -NCIT:C40295 Bartholin Gland Adenoid Cystic Carcinoma 9 17801 -NCIT:C40296 Bartholin Gland Adenosquamous Carcinoma 9 17802 -NCIT:C40297 Bartholin Gland Transitional Cell Carcinoma 9 17803 -NCIT:C40298 Bartholin Gland Small Cell Neuroendocrine Carcinoma 9 17804 -NCIT:C7719 Bartholin Gland Adenocarcinoma 9 17805 -NCIT:C91203 Vulvar Cancer by AJCC v7 Stage 8 17806 -NCIT:C89445 Stage 0 Vulvar Cancer AJCC v7 9 17807 -NCIT:C89447 Stage I Vulvar Cancer AJCC v7 9 17808 -NCIT:C89448 Stage IA Vulvar Cancer AJCC v7 10 17809 -NCIT:C89449 Stage IB Vulvar Cancer AJCC v7 10 17810 -NCIT:C89451 Stage II Vulvar Cancer AJCC v7 9 17811 -NCIT:C89452 Stage III Vulvar Cancer AJCC v7 9 17812 -NCIT:C87003 Stage IIIA Vulvar Cancer AJCC v7 10 17813 -NCIT:C87004 Stage IIIB Vulvar Cancer AJCC v7 10 17814 -NCIT:C87005 Stage IIIC Vulvar Cancer AJCC v7 10 17815 -NCIT:C89453 Stage IV Vulvar Cancer AJCC v7 9 17816 -NCIT:C27247 Stage IVB Vulvar Cancer AJCC v6 and v7 10 17817 -NCIT:C89454 Stage IVA Vulvar Cancer AJCC v7 10 17818 -NCIT:C9362 Clitoral Carcinoma 8 17819 -NCIT:C9363 Labia Majora Carcinoma 8 17820 -NCIT:C9364 Labia Minora Carcinoma 8 17821 -NCIT:C4908 Ovarian Carcinoma 7 17822 -NCIT:C128081 Ovarian Cancer by FIGO Stage 8 17823 -NCIT:C128082 FIGO Stage IC1 Ovarian Cancer 9 17824 -NCIT:C128083 FIGO Stage IC2 Ovarian Cancer 9 17825 -NCIT:C128084 FIGO Stage IC3 Ovarian Cancer 9 17826 -NCIT:C128085 FIGO Stage II Ovarian Cancer 9 17827 -NCIT:C5223 Stage IIA Ovarian Cancer AJCC V6 and v7 10 17828 -NCIT:C5224 Stage IIB Ovarian Cancer AJCC v6 and v7 10 17829 -NCIT:C128086 FIGO Stage III Ovarian Cancer 9 17830 -NCIT:C128087 FIGO Stage IIIA Ovarian Cancer 10 17831 -NCIT:C128088 FIGO Stage IIIA1 Ovarian Cancer 11 17832 -NCIT:C128089 FIGO Stage IIIA1(i) Ovarian Cancer 12 17833 -NCIT:C128090 FIGO Stage IIIA1(ii) Ovarian Cancer 12 17834 -NCIT:C128091 FIGO Stage IIIA2 Ovarian Cancer 11 17835 -NCIT:C128092 FIGO Stage IIIB Ovarian Cancer 10 17836 -NCIT:C128093 FIGO Stage IIIC Ovarian Cancer 10 17837 -NCIT:C128094 FIGO Stage IVA Ovarian Cancer 9 17838 -NCIT:C128095 FIGO Stage IVB Ovarian Cancer 9 17839 -NCIT:C7829 Stage I Ovarian Cancer AJCC v6 and v7 9 17840 -NCIT:C5220 Stage IA Ovarian Cancer AJCC v6 and v7 10 17841 -NCIT:C5221 Stage IB Ovarian Cancer AJCC v6 and v7 10 17842 -NCIT:C5222 Stage IC Ovarian Cancer AJCC v6 and v7 10 17843 -NCIT:C7832 Stage IV Ovarian Cancer AJCC v6 and v7 9 17844 -NCIT:C128106 Ovarian Cancer by AJCC v6 and v7 Stage 8 17845 -NCIT:C7829 Stage I Ovarian Cancer AJCC v6 and v7 9 17846 -NCIT:C5220 Stage IA Ovarian Cancer AJCC v6 and v7 10 17847 -NCIT:C5221 Stage IB Ovarian Cancer AJCC v6 and v7 10 17848 -NCIT:C5222 Stage IC Ovarian Cancer AJCC v6 and v7 10 17849 -NCIT:C7830 Stage II Ovarian Cancer AJCC v6 and v7 9 17850 -NCIT:C5223 Stage IIA Ovarian Cancer AJCC V6 and v7 10 17851 -NCIT:C5224 Stage IIB Ovarian Cancer AJCC v6 and v7 10 17852 -NCIT:C5225 Stage IIC Ovarian Cancer AJCC v6 and v7 10 17853 -NCIT:C7831 Stage III Ovarian Cancer AJCC v6 and v7 9 17854 -NCIT:C6258 Stage IIIA Ovarian Cancer AJCC v6 and v7 10 17855 -NCIT:C6259 Stage IIIB Ovarian Cancer AJCC v6 and v7 10 17856 -NCIT:C6260 Stage IIIC Ovarian Cancer AJCC v6 and v7 10 17857 -NCIT:C7832 Stage IV Ovarian Cancer AJCC v6 and v7 9 17858 -NCIT:C139963 Ovarian Cancer by AJCC v8 Stage 8 17859 -NCIT:C139964 Stage I Ovarian Cancer AJCC v8 9 17860 -NCIT:C139965 Stage IA Ovarian Cancer AJCC v8 10 17861 -NCIT:C139966 Stage IB Ovarian Cancer AJCC v8 10 17862 -NCIT:C139967 Stage IC Ovarian Cancer AJCC v8 10 17863 -NCIT:C139968 Stage II Ovarian Cancer AJCC v8 9 17864 -NCIT:C139969 Stage IIA Ovarian Cancer AJCC v8 10 17865 -NCIT:C139970 Stage IIB Ovarian Cancer AJCC v8 10 17866 -NCIT:C139971 Stage III Ovarian Cancer AJCC v8 9 17867 -NCIT:C139972 Stage IIIA Ovarian Cancer AJCC v8 10 17868 -NCIT:C139973 Stage IIIA1 Ovarian Cancer AJCC v8 11 17869 -NCIT:C139974 Stage IIIA2 Ovarian Cancer AJCC v8 11 17870 -NCIT:C139975 Stage IIIB Ovarian Cancer AJCC v8 10 17871 -NCIT:C139976 Stage IIIC Ovarian Cancer AJCC v8 10 17872 -NCIT:C139977 Stage IV Ovarian Cancer AJCC v8 9 17873 -NCIT:C139978 Stage IVA Ovarian Cancer AJCC v8 10 17874 -NCIT:C139979 Stage IVB Ovarian Cancer AJCC v8 10 17875 -NCIT:C150091 Refractory Ovarian Carcinoma 8 17876 -NCIT:C147561 Platinum-Resistant Ovarian Carcinoma 9 17877 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 10 17878 -NCIT:C179459 Unresectable Platinum-Resistant Ovarian Carcinoma 10 17879 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 10 17880 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 11 17881 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 11 17882 -NCIT:C170968 Refractory Ovarian Adenocarcinoma 9 17883 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 10 17884 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 10 17885 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 11 17886 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 11 17887 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 10 17888 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 10 17889 -NCIT:C178671 Refractory Ovarian Seromucinous Carcinoma 9 17890 -NCIT:C178682 Refractory Ovarian Transitional Cell Carcinoma 9 17891 -NCIT:C178683 Refractory Ovarian Undifferentiated Carcinoma 9 17892 -NCIT:C178700 Platinum-Refractory Ovarian Carcinoma 9 17893 -NCIT:C179207 Refractory Ovarian Squamous Cell Carcinoma 9 17894 -NCIT:C183126 Refractory Malignant Ovarian Brenner Tumor 9 17895 -NCIT:C156064 Metastatic Ovarian Carcinoma 8 17896 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 9 17897 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 10 17898 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 11 17899 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 11 17900 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 10 17901 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 11 17902 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 11 17903 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 10 17904 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 11 17905 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 11 17906 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 10 17907 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 11 17908 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 11 17909 -NCIT:C165458 Advanced Ovarian Carcinoma 9 17910 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 10 17911 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 11 17912 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 11 17913 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 10 17914 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 10 17915 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 10 17916 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 10 17917 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 9 17918 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 10 17919 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 11 17920 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 11 17921 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 10 17922 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 9 17923 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 10 17924 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 9 17925 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 10 17926 -NCIT:C172234 Metastatic Ovarian Undifferentiated Carcinoma 9 17927 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 9 17928 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 10 17929 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 10 17930 -NCIT:C180333 Metastatic Microsatellite Stable Ovarian Carcinoma 9 17931 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 10 17932 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 9 17933 -NCIT:C27391 Metastatic Ovarian Small Cell Carcinoma, Hypercalcemic Type 9 17934 -NCIT:C159902 Platinum-Sensitive Ovarian Carcinoma 8 17935 -NCIT:C188391 Recurrent Platinum-Sensitive Ovarian Carcinoma 9 17936 -NCIT:C167073 Unresectable Ovarian Carcinoma 8 17937 -NCIT:C160781 Unresectable Ovarian Serous Adenocarcinoma 9 17938 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 10 17939 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 11 17940 -NCIT:C172235 Unresectable Ovarian Undifferentiated Carcinoma 9 17941 -NCIT:C179459 Unresectable Platinum-Resistant Ovarian Carcinoma 9 17942 -NCIT:C183245 Unresectable Ovarian Mucinous Adenocarcinoma 9 17943 -NCIT:C186273 Unresectable Ovarian Endometrioid Adenocarcinoma 9 17944 -NCIT:C171032 Ovarian Neuroendocrine Carcinoma 8 17945 -NCIT:C40440 Ovarian Small Cell Carcinoma, Pulmonary-Type 9 17946 -NCIT:C5238 Ovarian Large Cell Neuroendocrine Carcinoma 9 17947 -NCIT:C179334 Ovarian Dedifferentiated Carcinoma 8 17948 -NCIT:C180332 Microsatellite Stable Ovarian Carcinoma 8 17949 -NCIT:C180333 Metastatic Microsatellite Stable Ovarian Carcinoma 9 17950 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 10 17951 -NCIT:C27390 Ovarian Small Cell Carcinoma 8 17952 -NCIT:C40439 Ovarian Small Cell Carcinoma, Hypercalcemic Type 9 17953 -NCIT:C189334 Childhood Ovarian Small Cell Carcinoma, Hypercalcemic Type 10 17954 -NCIT:C27391 Metastatic Ovarian Small Cell Carcinoma, Hypercalcemic Type 10 17955 -NCIT:C40440 Ovarian Small Cell Carcinoma, Pulmonary-Type 9 17956 -NCIT:C36102 Hereditary Ovarian Carcinoma 8 17957 -NCIT:C148024 BRCA-Associated Ovarian Carcinoma 9 17958 -NCIT:C148025 Recurrent BRCA- Associated Ovarian Carcinoma 10 17959 -NCIT:C40090 Ovarian Seromucinous Carcinoma 8 17960 -NCIT:C178669 Recurrent Ovarian Seromucinous Carcinoma 9 17961 -NCIT:C178671 Refractory Ovarian Seromucinous Carcinoma 9 17962 -NCIT:C40093 Ovarian Squamous Cell Carcinoma 8 17963 -NCIT:C179207 Refractory Ovarian Squamous Cell Carcinoma 9 17964 -NCIT:C4270 Malignant Ovarian Brenner Tumor 8 17965 -NCIT:C153818 Recurrent Malignant Ovarian Brenner Tumor 9 17966 -NCIT:C183126 Refractory Malignant Ovarian Brenner Tumor 9 17967 -NCIT:C4509 Ovarian Undifferentiated Carcinoma 8 17968 -NCIT:C170754 Recurrent Ovarian Undifferentiated Carcinoma 9 17969 -NCIT:C172234 Metastatic Ovarian Undifferentiated Carcinoma 9 17970 -NCIT:C172235 Unresectable Ovarian Undifferentiated Carcinoma 9 17971 -NCIT:C178683 Refractory Ovarian Undifferentiated Carcinoma 9 17972 -NCIT:C5240 Ovarian Transitional Cell Carcinoma 8 17973 -NCIT:C153819 Recurrent Ovarian Transitional Cell Carcinoma 9 17974 -NCIT:C178682 Refractory Ovarian Transitional Cell Carcinoma 9 17975 -NCIT:C7700 Ovarian Adenocarcinoma 8 17976 -NCIT:C153614 Recurrent Ovarian Adenocarcinoma 9 17977 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 10 17978 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 10 17979 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 11 17980 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 11 17981 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 11 17982 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 10 17983 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 10 17984 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 11 17985 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 10 17986 -NCIT:C170968 Refractory Ovarian Adenocarcinoma 9 17987 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 10 17988 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 10 17989 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 11 17990 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 11 17991 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 10 17992 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 10 17993 -NCIT:C179208 Ovarian Signet Ring Cell Carcinoma 9 17994 -NCIT:C179321 Ovarian Mesonephric-Like Adenocarcinoma 9 17995 -NCIT:C179339 Ovarian Mixed Cell Adenocarcinoma 9 17996 -NCIT:C40078 Ovarian Clear Cell Adenocarcinoma 9 17997 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 10 17998 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 10 17999 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 11 18000 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 10 18001 -NCIT:C7980 Ovarian Clear Cell Cystadenocarcinoma 10 18002 -NCIT:C5228 Ovarian Cystadenocarcinoma 9 18003 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 10 18004 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 11 18005 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 10 18006 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 10 18007 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 11 18008 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 12 18009 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 12 18010 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 11 18011 -NCIT:C7980 Ovarian Clear Cell Cystadenocarcinoma 10 18012 -NCIT:C5243 Ovarian Mucinous Adenocarcinoma 9 18013 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 10 18014 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 10 18015 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 10 18016 -NCIT:C183245 Unresectable Ovarian Mucinous Adenocarcinoma 10 18017 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 10 18018 -NCIT:C7550 Ovarian Serous Adenocarcinoma 9 18019 -NCIT:C105555 Ovarian High Grade Serous Adenocarcinoma 10 18020 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 11 18021 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 11 18022 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 11 18023 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 18024 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 11 18025 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 18026 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 12 18027 -NCIT:C105556 Ovarian Low Grade Serous Adenocarcinoma 10 18028 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 11 18029 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 11 18030 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 10 18031 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 11 18032 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 11 18033 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 11 18034 -NCIT:C160781 Unresectable Ovarian Serous Adenocarcinoma 10 18035 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 11 18036 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 18037 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 10 18038 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 11 18039 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 12 18040 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 12 18041 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 11 18042 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 18043 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 12 18044 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 11 18045 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 12 18046 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 12 18047 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 11 18048 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 12 18049 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 18050 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 10 18051 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 11 18052 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 11 18053 -NCIT:C6256 Ovarian Serous Surface Papillary Adenocarcinoma 10 18054 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 10 18055 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 11 18056 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 12 18057 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 12 18058 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 11 18059 -NCIT:C7979 Ovarian Endometrioid Adenocarcinoma 9 18060 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 10 18061 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 10 18062 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 10 18063 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 11 18064 -NCIT:C186273 Unresectable Ovarian Endometrioid Adenocarcinoma 10 18065 -NCIT:C40061 Ovarian Endometrioid Adenocarcinoma with Squamous Differentiation 10 18066 -NCIT:C7833 Recurrent Ovarian Carcinoma 8 18067 -NCIT:C148025 Recurrent BRCA- Associated Ovarian Carcinoma 9 18068 -NCIT:C153614 Recurrent Ovarian Adenocarcinoma 9 18069 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 10 18070 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 10 18071 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 11 18072 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 11 18073 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 11 18074 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 10 18075 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 10 18076 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 11 18077 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 10 18078 -NCIT:C153818 Recurrent Malignant Ovarian Brenner Tumor 9 18079 -NCIT:C153819 Recurrent Ovarian Transitional Cell Carcinoma 9 18080 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 9 18081 -NCIT:C170754 Recurrent Ovarian Undifferentiated Carcinoma 9 18082 -NCIT:C178669 Recurrent Ovarian Seromucinous Carcinoma 9 18083 -NCIT:C188391 Recurrent Platinum-Sensitive Ovarian Carcinoma 9 18084 -NCIT:C190201 Locally Recurrent Ovarian Carcinoma 9 18085 -NCIT:C7558 Endometrial Carcinoma 7 18086 -NCIT:C114656 Endometrial Adenosquamous Carcinoma 8 18087 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 9 18088 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 9 18089 -NCIT:C126769 Endometrial Dedifferentiated Carcinoma 8 18090 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 9 18091 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 9 18092 -NCIT:C150093 Refractory Endometrial Carcinoma 8 18093 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 9 18094 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 9 18095 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 9 18096 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 9 18097 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 10 18098 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 10 18099 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 10 18100 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 10 18101 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 10 18102 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 9 18103 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 9 18104 -NCIT:C150094 Recurrent Endometrial Carcinoma 8 18105 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 9 18106 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 9 18107 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 10 18108 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 10 18109 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 10 18110 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 10 18111 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 10 18112 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 9 18113 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 9 18114 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 9 18115 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 9 18116 -NCIT:C190200 Locally Recurrent Endometrial Carcinoma 9 18117 -NCIT:C156068 Metastatic Endometrial Carcinoma 8 18118 -NCIT:C159676 Advanced Endometrial Carcinoma 9 18119 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 10 18120 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 11 18121 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 11 18122 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 10 18123 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 9 18124 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 10 18125 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 11 18126 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 10 18127 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 9 18128 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 9 18129 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 10 18130 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 9 18131 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 10 18132 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 11 18133 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 10 18134 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 11 18135 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 11 18136 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 10 18137 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 11 18138 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 11 18139 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 10 18140 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 11 18141 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 10 18142 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 10 18143 -NCIT:C171033 Endometrial Neuroendocrine Carcinoma 8 18144 -NCIT:C126772 Endometrial Large Cell Neuroendocrine Carcinoma 9 18145 -NCIT:C40155 Endometrial Small Cell Neuroendocrine Carcinoma 9 18146 -NCIT:C171610 Unresectable Endometrial Carcinoma 8 18147 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 9 18148 -NCIT:C180335 Microsatellite Stable Endometrial Carcinoma 8 18149 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 9 18150 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 10 18151 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 9 18152 -NCIT:C190680 High Grade Endometrial Carcinoma 8 18153 -NCIT:C27838 Endometrial Serous Adenocarcinoma 9 18154 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 10 18155 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 10 18156 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 10 18157 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 11 18158 -NCIT:C187374 Platinum-Sensitive Endometrial Serous Adenocarcinoma 10 18159 -NCIT:C40148 High Grade Endometrial Endometrioid Adenocarcinoma 9 18160 -NCIT:C40156 Endometrial Undifferentiated Carcinoma 9 18161 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 10 18162 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 10 18163 -NCIT:C8028 Endometrial Clear Cell Adenocarcinoma 9 18164 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 10 18165 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 10 18166 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 10 18167 -NCIT:C40154 Endometrial Transitional Cell Carcinoma 8 18168 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 9 18169 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 9 18170 -NCIT:C7359 Endometrial Adenocarcinoma 8 18171 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 9 18172 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 10 18173 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 10 18174 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 10 18175 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 10 18176 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 10 18177 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 9 18178 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 10 18179 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 10 18180 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 10 18181 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 10 18182 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 10 18183 -NCIT:C179322 Endometrial Mesonephric-Like Adenocarcinoma 9 18184 -NCIT:C180536 Endometrial Mucinous Adenocarcinoma, Intestinal-Type 9 18185 -NCIT:C180537 Endometrial Mucinous Adenocarcinoma, Gastric-Type 9 18186 -NCIT:C39749 Type II Endometrial Adenocarcinoma 9 18187 -NCIT:C27838 Endometrial Serous Adenocarcinoma 10 18188 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 11 18189 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 11 18190 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 11 18191 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 12 18192 -NCIT:C187374 Platinum-Sensitive Endometrial Serous Adenocarcinoma 11 18193 -NCIT:C40152 Serous Endometrial Intraepithelial Carcinoma 10 18194 -NCIT:C8028 Endometrial Clear Cell Adenocarcinoma 10 18195 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 11 18196 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 11 18197 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 11 18198 -NCIT:C40145 Type I Endometrial Adenocarcinoma 9 18199 -NCIT:C40144 Endometrial Mucinous Adenocarcinoma 10 18200 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 11 18201 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 11 18202 -NCIT:C40149 FIGO Grade 1 Endometrial Mucinous Adenocarcinoma 11 18203 -NCIT:C40150 FIGO Grade 2 Endometrial Mucinous Adenocarcinoma 11 18204 -NCIT:C40151 FIGO Grade 3 Endometrial Mucinous Adenocarcinoma 11 18205 -NCIT:C6287 Endometrial Endometrioid Adenocarcinoma 10 18206 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 11 18207 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 11 18208 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 11 18209 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 12 18210 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 12 18211 -NCIT:C180510 Low Grade Endometrial Endometrioid Adenocarcinoma 11 18212 -NCIT:C40146 FIGO Grade 1 Endometrial Endometrioid Adenocarcinoma 12 18213 -NCIT:C40147 FIGO Grade 2 Endometrial Endometrioid Adenocarcinoma 12 18214 -NCIT:C180512 POLE-Ultramutated Endometrial Endometrioid Adenocarcinoma 11 18215 -NCIT:C180514 Mismatch Repair-Deficient Endometrial Endometrioid Adenocarcinoma 11 18216 -NCIT:C180515 p53-Mutant Endometrial Endometrioid Adenocarcinoma 11 18217 -NCIT:C180516 No Specific Molecular Profile Endometrial Endometrioid Adenocarcinoma 11 18218 -NCIT:C27839 Endometrial Endometrioid Adenocarcinoma, Secretory Variant 11 18219 -NCIT:C27843 Endometrial Endometrioid Adenocarcinoma with Clear Cell Change 11 18220 -NCIT:C27844 Endometrial Endometrioid Adenocarcinoma with a Poorly Differentiated Carcinomatous Component 11 18221 -NCIT:C27845 Endometrial Endometrioid Adenocarcinoma with an Undifferentiated Carcinomatous Component 11 18222 -NCIT:C27846 Villoglandular Endometrial Endometrioid Adenocarcinoma 11 18223 -NCIT:C27848 Endometrial Endometrioid Adenocarcinoma, Ciliated Variant 11 18224 -NCIT:C27849 Oxyphilic Endometrial Endometrioid Adenocarcinoma 11 18225 -NCIT:C27850 Endometrial Endometrioid Adenocarcinoma with Spindled Epithelial Cells 11 18226 -NCIT:C40148 High Grade Endometrial Endometrioid Adenocarcinoma 11 18227 -NCIT:C6290 Endometrial Endometrioid Adenocarcinoma, Variant with Squamous Differentiation 11 18228 -NCIT:C40153 Endometrial Mixed Cell Adenocarcinoma 9 18229 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 10 18230 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 10 18231 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 10 18232 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 9 18233 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 10 18234 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 11 18235 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 10 18236 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 11 18237 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 11 18238 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 10 18239 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 11 18240 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 11 18241 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 10 18242 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 11 18243 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 10 18244 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 10 18245 -NCIT:C8719 Endometrial Squamous Cell Carcinoma 8 18246 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 9 18247 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 9 18248 -NCIT:C9039 Cervical Carcinoma 7 18249 -NCIT:C128045 Cervical Neuroendocrine Carcinoma 8 18250 -NCIT:C40214 Cervical Large Cell Neuroendocrine Carcinoma 9 18251 -NCIT:C7982 Cervical Small Cell Neuroendocrine Carcinoma 9 18252 -NCIT:C139733 Cervical Cancer by AJCC v8 Stage 8 18253 -NCIT:C139734 Stage I Cervical Cancer AJCC v8 9 18254 -NCIT:C139735 Stage IA Cervical Cancer AJCC v8 10 18255 -NCIT:C139736 Stage IA1 Cervical Cancer AJCC v8 11 18256 -NCIT:C139737 Stage IA2 Cervical Cancer AJCC v8 11 18257 -NCIT:C139738 Stage IB Cervical Cancer AJCC v8 10 18258 -NCIT:C139739 Stage IB1 Cervical Cancer AJCC v8 11 18259 -NCIT:C139740 Stage IB2 Cervical Cancer AJCC v8 11 18260 -NCIT:C139743 Stage II Cervical Cancer AJCC v8 9 18261 -NCIT:C139744 Stage IIA Cervical Cancer AJCC v8 10 18262 -NCIT:C139745 Stage IIA1 Cervical Cancer AJCC v8 11 18263 -NCIT:C139746 Stage IIA2 Cervical Cancer AJCC v8 11 18264 -NCIT:C139748 Stage IIB Cervical Cancer AJCC v8 10 18265 -NCIT:C139749 Stage III Cervical Cancer AJCC v8 9 18266 -NCIT:C139750 Stage IIIA Cervical Cancer AJCC v8 10 18267 -NCIT:C139752 Stage IIIB Cervical Cancer AJCC v8 10 18268 -NCIT:C139753 Stage IV Cervical Cancer AJCC v8 9 18269 -NCIT:C139754 Stage IVA Cervical Cancer AJCC v8 10 18270 -NCIT:C139755 Stage IVB Cervical Cancer AJCC v8 10 18271 -NCIT:C153387 Metastatic Cervical Carcinoma 8 18272 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 9 18273 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 10 18274 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 10 18275 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 9 18276 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 10 18277 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 11 18278 -NCIT:C156304 Advanced Cervical Adenocarcinoma 10 18279 -NCIT:C153390 Metastatic Cervical Adenosquamous Carcinoma 9 18280 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 10 18281 -NCIT:C156294 Advanced Cervical Carcinoma 9 18282 -NCIT:C156304 Advanced Cervical Adenocarcinoma 10 18283 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 10 18284 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 10 18285 -NCIT:C156295 Locally Advanced Cervical Carcinoma 9 18286 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 10 18287 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 11 18288 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 10 18289 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 11 18290 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 10 18291 -NCIT:C162225 Cervical Cancer by FIGO Stage 2018 8 18292 -NCIT:C162226 Stage I Cervical Cancer FIGO 2018 9 18293 -NCIT:C162227 Stage IA Cervical Cancer FIGO 2018 10 18294 -NCIT:C162228 Stage IA1 Cervical Cancer FIGO 2018 11 18295 -NCIT:C162229 Stage IA2 Cervical Cancer FIGO 2018 11 18296 -NCIT:C162230 Stage IB Cervical Cancer FIGO 2018 10 18297 -NCIT:C162231 Stage IB1 Cervical Cancer FIGO 2018 11 18298 -NCIT:C162232 Stage IB2 Cervical Cancer FIGO 2018 11 18299 -NCIT:C162233 Stage IB3 Cervical Cancer FIGO 2018 11 18300 -NCIT:C162234 Stage II Cervical Cancer FIGO 2018 9 18301 -NCIT:C162235 Stage IIA Cervical Cancer FIGO 2018 10 18302 -NCIT:C162236 Stage IIA1 Cervical Cancer FIGO 2018 11 18303 -NCIT:C162237 Stage IIA2 Cervical Cancer FIGO 2018 11 18304 -NCIT:C162238 Stage IIB Cervical Cancer FIGO 2018 10 18305 -NCIT:C162239 Stage III Cervical Cancer FIGO 2018 9 18306 -NCIT:C162240 Stage IIIA Cervical Cancer FIGO 2018 10 18307 -NCIT:C162241 Stage IIIB Cervical Cancer FIGO 2018 10 18308 -NCIT:C162242 Stage IIIC Cervical Cancer FIGO 2018 10 18309 -NCIT:C162243 Stage IIIC1 Cervical Cancer FIGO 2018 11 18310 -NCIT:C162244 Stage IIIC2 Cervical Cancer FIGO 2018 11 18311 -NCIT:C162245 Stage IV Cervical Cancer FIGO 2018 9 18312 -NCIT:C162246 Stage IVA Cervical Cancer FIGO 2018 10 18313 -NCIT:C162247 Stage IVB Cervical Cancer FIGO 2018 10 18314 -NCIT:C170513 Refractory Cervical Carcinoma 8 18315 -NCIT:C181034 Refractory Cervical Squamous Cell Carcinoma 9 18316 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 10 18317 -NCIT:C181036 Refractory Cervical Adenocarcinoma 9 18318 -NCIT:C174024 Unresectable Cervical Carcinoma 8 18319 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 9 18320 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 18321 -NCIT:C174025 Unresectable Cervical Squamous Cell Carcinoma 9 18322 -NCIT:C174027 Unresectable Cervical Adenosquamous Carcinoma 9 18323 -NCIT:C174029 Unresectable Cervical Adenocarcinoma 9 18324 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 18325 -NCIT:C180878 Cervical Mucoepidermoid Carcinoma 8 18326 -NCIT:C181562 Cervical Cancer by AJCC v9 Stage 8 18327 -NCIT:C181564 Stage I Cervical Cancer AJCC v9 9 18328 -NCIT:C181565 Stage IA Cervical Cancer AJCC v9 10 18329 -NCIT:C181567 Stage IA1 Cervical Cancer AJCC v9 11 18330 -NCIT:C181568 Stage IA2 Cervical Cancer AJCC v9 11 18331 -NCIT:C181570 Stage IB Cervical Cancer AJCC v9 10 18332 -NCIT:C181571 Stage IB1 Cervical Cancer AJCC v9 11 18333 -NCIT:C181576 Stage IB2 Cervical Cancer AJCC v9 11 18334 -NCIT:C181579 Stage IB3 Cervical Cancer AJCC v9 11 18335 -NCIT:C181583 Stage II Cervical Cancer AJCC v9 9 18336 -NCIT:C181584 Stage IIA Cervical Cancer AJCC v9 10 18337 -NCIT:C181586 Stage IIA1 Cervical Cancer AJCC v9 11 18338 -NCIT:C181588 Stage IIA2 Cervical Cancer AJCC v9 11 18339 -NCIT:C181591 Stage IIB Cervical Cancer AJCC v9 10 18340 -NCIT:C181592 Stage III Cervical Cancer AJCC v9 9 18341 -NCIT:C181594 Stage IIIA Cervical Cancer AJCC v9 10 18342 -NCIT:C181595 Stage IIIB Cervical Cancer AJCC v9 10 18343 -NCIT:C181596 Stage IIIC Cervical Cancer AJCC v9 10 18344 -NCIT:C181597 Stage IIIC1 Cervical Cancer AJCC v9 11 18345 -NCIT:C181598 Stage IIIC2 Cervical Cancer AJCC v9 11 18346 -NCIT:C181599 Stage IV Cervical Cancer AJCC v9 9 18347 -NCIT:C181601 Stage IVA Cervical Cancer AJCC v9 10 18348 -NCIT:C181603 Stage IVB Cervical Cancer AJCC v9 10 18349 -NCIT:C186619 Cervical Cancer by FIGO Stage 2009 8 18350 -NCIT:C186620 Stage I Cervical Cancer FIGO 2009 9 18351 -NCIT:C186621 Stage IA Cervical Cancer FIGO 2009 10 18352 -NCIT:C186622 Stage IA1 Cervical Cancer FIGO 2009 11 18353 -NCIT:C186623 Stage IA2 Cervical Cancer FIGO 2009 11 18354 -NCIT:C186624 Stage IB Cervical Cancer FIGO 2009 10 18355 -NCIT:C186625 Stage IB1 Cervical Cancer FIGO 2009 11 18356 -NCIT:C186626 Stage IB2 Cervical Cancer FIGO 2009 11 18357 -NCIT:C186627 Stage II Cervical Cancer FIGO 2009 9 18358 -NCIT:C186628 Stage IIA Cervical Cancer FIGO 2009 10 18359 -NCIT:C186629 Stage IIA1 Cervical Cancer FIGO 2009 11 18360 -NCIT:C186630 Stage IIA2 Cervical Cancer FIGO 2009 11 18361 -NCIT:C186631 Stage IIB Cervical Cancer FIGO 2009 10 18362 -NCIT:C186632 Stage III Cervical Cancer FIGO 2009 9 18363 -NCIT:C186633 Stage IIIA Cervical Cancer FIGO 2009 10 18364 -NCIT:C186634 Stage IIIB Cervical Cancer FIGO 2009 10 18365 -NCIT:C186635 Stage IV Cervical Cancer FIGO 2009 9 18366 -NCIT:C186636 Stage IVA Cervical Cancer FIGO 2009 10 18367 -NCIT:C186637 Stage IVB Cervical Cancer FIGO 2009 10 18368 -NCIT:C27675 Human Papillomavirus-Related Cervical Carcinoma 8 18369 -NCIT:C27676 Human Papillomavirus-Related Cervical Squamous Cell Carcinoma 9 18370 -NCIT:C40192 Cervical Papillary Squamous Cell Carcinoma 10 18371 -NCIT:C40191 Cervical Warty Carcinoma 11 18372 -NCIT:C40194 Cervical Squamotransitional Carcinoma 11 18373 -NCIT:C27677 Human Papillomavirus-Related Cervical Adenocarcinoma 9 18374 -NCIT:C127907 Endocervical Adenocarcinoma, Usual-Type 10 18375 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 11 18376 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 11 18377 -NCIT:C40208 Cervical Villoglandular Adenocarcinoma 11 18378 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 10 18379 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 10 18380 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 10 18381 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 10 18382 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 10 18383 -NCIT:C40213 Cervical Adenoid Basal Carcinoma 8 18384 -NCIT:C4028 Cervical Squamous Cell Carcinoma 8 18385 -NCIT:C136649 Recurrent Cervical Squamous Cell Carcinoma 9 18386 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 9 18387 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 10 18388 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 10 18389 -NCIT:C174025 Unresectable Cervical Squamous Cell Carcinoma 9 18390 -NCIT:C180839 Cervical Squamous Cell Carcinoma, Not Otherwise Specified 9 18391 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 10 18392 -NCIT:C180841 Human Papillomavirus-Independent Cervical Squamous Cell Carcinoma 9 18393 -NCIT:C181034 Refractory Cervical Squamous Cell Carcinoma 9 18394 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 10 18395 -NCIT:C27676 Human Papillomavirus-Related Cervical Squamous Cell Carcinoma 9 18396 -NCIT:C40192 Cervical Papillary Squamous Cell Carcinoma 10 18397 -NCIT:C40191 Cervical Warty Carcinoma 11 18398 -NCIT:C40194 Cervical Squamotransitional Carcinoma 11 18399 -NCIT:C36094 Early Invasive Cervical Squamous Cell Carcinoma 9 18400 -NCIT:C40187 Cervical Keratinizing Squamous Cell Carcinoma 9 18401 -NCIT:C40188 Cervical Non-Keratinizing Squamous Cell Carcinoma 9 18402 -NCIT:C40189 Cervical Basaloid Carcinoma 9 18403 -NCIT:C40190 Cervical Verrucous Carcinoma 9 18404 -NCIT:C40193 Cervical Lymphoepithelioma-Like Carcinoma 9 18405 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 9 18406 -NCIT:C4029 Cervical Adenocarcinoma 8 18407 -NCIT:C127915 Cervical Adenocarcinoma Admixed with Neuroendocrine Carcinoma 9 18408 -NCIT:C136651 Recurrent Cervical Adenocarcinoma 9 18409 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 10 18410 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 9 18411 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 10 18412 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 11 18413 -NCIT:C156304 Advanced Cervical Adenocarcinoma 10 18414 -NCIT:C174029 Unresectable Cervical Adenocarcinoma 9 18415 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 18416 -NCIT:C180848 Human Papillomavirus-Independent Cervical Adenocarcinoma 9 18417 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 10 18418 -NCIT:C40201 Cervical Serous Adenocarcinoma 10 18419 -NCIT:C40206 Human Papillomavirus-Independent Cervical Adenocarcinoma, Gastric-Type 10 18420 -NCIT:C40254 Cervical Mesonephric Adenocarcinoma 10 18421 -NCIT:C6343 Cervical Endometrioid Adenocarcinoma 10 18422 -NCIT:C6344 Human Papillomavirus-Independent Cervical Adenocarcinoma, Clear Cell-Type 10 18423 -NCIT:C180870 Cervical Adenocarcinoma, Not Otherwise Specified 9 18424 -NCIT:C181036 Refractory Cervical Adenocarcinoma 9 18425 -NCIT:C27677 Human Papillomavirus-Related Cervical Adenocarcinoma 9 18426 -NCIT:C127907 Endocervical Adenocarcinoma, Usual-Type 10 18427 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 11 18428 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 11 18429 -NCIT:C40208 Cervical Villoglandular Adenocarcinoma 11 18430 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 10 18431 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 10 18432 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 10 18433 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 10 18434 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 10 18435 -NCIT:C36095 Cervical Mucinous Adenocarcinoma 9 18436 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 10 18437 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 10 18438 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 10 18439 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 10 18440 -NCIT:C40206 Human Papillomavirus-Independent Cervical Adenocarcinoma, Gastric-Type 10 18441 -NCIT:C36096 Early Invasive Cervical Adenocarcinoma 9 18442 -NCIT:C4520 Cervical Adenocarcinoma In Situ 9 18443 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 10 18444 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 10 18445 -NCIT:C4519 Cervical Adenosquamous Carcinoma 8 18446 -NCIT:C136650 Recurrent Cervical Adenosquamous Carcinoma 9 18447 -NCIT:C153390 Metastatic Cervical Adenosquamous Carcinoma 9 18448 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 10 18449 -NCIT:C174027 Unresectable Cervical Adenosquamous Carcinoma 9 18450 -NCIT:C40212 Cervical Poorly Differentiated Adenosquamous Carcinoma 9 18451 -NCIT:C6345 Cervical Undifferentiated Carcinoma 8 18452 -NCIT:C6346 Cervical Adenoid Cystic Carcinoma 8 18453 -NCIT:C7432 AIDS-Related Cervical Carcinoma 8 18454 -NCIT:C7453 Exocervical Carcinoma 8 18455 -NCIT:C7804 Recurrent Cervical Carcinoma 8 18456 -NCIT:C136649 Recurrent Cervical Squamous Cell Carcinoma 9 18457 -NCIT:C136650 Recurrent Cervical Adenosquamous Carcinoma 9 18458 -NCIT:C136651 Recurrent Cervical Adenocarcinoma 9 18459 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 10 18460 -NCIT:C8577 Invasive Cervical Carcinoma 8 18461 -NCIT:C90493 Cervical Cancer by AJCC v6 Stage 8 18462 -NCIT:C4000 Stage 0 Cervical Cancer AJCC v6 9 18463 -NCIT:C7803 Stage II Cervical Cancer AJCC v6 9 18464 -NCIT:C6319 Stage IIA Cervical Cancer AJCC v6 10 18465 -NCIT:C6320 Stage IIB Cervical Cancer AJCC v6 and v7 10 18466 -NCIT:C9204 Stage I Cervical Cancer AJCC v6 and v7 9 18467 -NCIT:C6313 Stage IA Cervical Cancer AJCC v6 and v7 10 18468 -NCIT:C6314 Stage IA1 Cervical Cancer AJCC v6 and v7 11 18469 -NCIT:C6315 Stage IA2 Cervical Cancer AJCC v6 and v7 11 18470 -NCIT:C6316 Stage IB Cervical Cancer AJCC v6 and v7 10 18471 -NCIT:C6317 Stage IB1 Cervical Cancer AJCC v6 and v7 11 18472 -NCIT:C6318 Stage IB2 Cervical Cancer AJCC v6 and v7 11 18473 -NCIT:C9205 Stage III Cervical Cancer AJCC v6 and v7 9 18474 -NCIT:C6321 Stage IIIB Cervical Cancer AJCC v6 and v7 10 18475 -NCIT:C6322 Stage IIIA Cervical Cancer AJCC v6 and v7 10 18476 -NCIT:C9206 Stage IV Cervical Cancer AJCC v6 and v7 9 18477 -NCIT:C6323 Stage IVA Cervical Cancer AJCC v6 and v7 10 18478 -NCIT:C6324 Stage IVB Cervical Cancer AJCC v6 and v7 10 18479 -NCIT:C91208 Cervical Cancer by AJCC v7 Stage 8 18480 -NCIT:C89550 Stage 0 Cervical Cancer AJCC v7 9 18481 -NCIT:C4520 Cervical Adenocarcinoma In Situ 10 18482 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 11 18483 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 11 18484 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 10 18485 -NCIT:C89551 Stage II Cervical Cancer AJCC v7 9 18486 -NCIT:C6320 Stage IIB Cervical Cancer AJCC v6 and v7 10 18487 -NCIT:C89552 Stage IIA Cervical Cancer AJCC v7 10 18488 -NCIT:C95172 Stage IIA1 Cervical Cancer AJCC v7 11 18489 -NCIT:C95173 Stage IIA2 Cervical Cancer AJCC v7 11 18490 -NCIT:C9204 Stage I Cervical Cancer AJCC v6 and v7 9 18491 -NCIT:C6313 Stage IA Cervical Cancer AJCC v6 and v7 10 18492 -NCIT:C6314 Stage IA1 Cervical Cancer AJCC v6 and v7 11 18493 -NCIT:C6315 Stage IA2 Cervical Cancer AJCC v6 and v7 11 18494 -NCIT:C6316 Stage IB Cervical Cancer AJCC v6 and v7 10 18495 -NCIT:C6317 Stage IB1 Cervical Cancer AJCC v6 and v7 11 18496 -NCIT:C6318 Stage IB2 Cervical Cancer AJCC v6 and v7 11 18497 -NCIT:C9205 Stage III Cervical Cancer AJCC v6 and v7 9 18498 -NCIT:C6321 Stage IIIB Cervical Cancer AJCC v6 and v7 10 18499 -NCIT:C6322 Stage IIIA Cervical Cancer AJCC v6 and v7 10 18500 -NCIT:C9206 Stage IV Cervical Cancer AJCC v6 and v7 9 18501 -NCIT:C6323 Stage IVA Cervical Cancer AJCC v6 and v7 10 18502 -NCIT:C6324 Stage IVB Cervical Cancer AJCC v6 and v7 10 18503 -NCIT:C3552 Malignant Uterine Neoplasm 6 18504 -NCIT:C3556 Malignant Uterine Corpus Neoplasm 7 18505 -NCIT:C127072 Uterine Corpus Malignant PEComa 8 18506 -NCIT:C188074 Extramedullary Disease in Plasma Cell Myeloma Involving the Uterine Corpus 8 18507 -NCIT:C27246 Uterine Corpus Choriocarcinoma 8 18508 -NCIT:C27815 Malignant Endometrial Neoplasm 8 18509 -NCIT:C181910 Endometrial Mucosa-Associated Lymphoid Tissue Lymphoma 9 18510 -NCIT:C40219 Uterine Corpus Endometrial Stromal Sarcoma 9 18511 -NCIT:C126998 Uterine Corpus High Grade Endometrial Stromal Sarcoma 10 18512 -NCIT:C139882 Uterine Corpus Endometrial Stromal Sarcoma by AJCC v8 Stage 10 18513 -NCIT:C139883 Stage I Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 18514 -NCIT:C139884 Stage IA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 18515 -NCIT:C139885 Stage IB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 18516 -NCIT:C139886 Stage II Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 18517 -NCIT:C139887 Stage III Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 18518 -NCIT:C139888 Stage IIIA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 18519 -NCIT:C139889 Stage IIIB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 18520 -NCIT:C139890 Stage IIIC Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 18521 -NCIT:C139891 Stage IV Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 18522 -NCIT:C139892 Stage IVA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 18523 -NCIT:C139893 Stage IVB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 18524 -NCIT:C40223 Uterine Corpus Low Grade Endometrial Stromal Sarcoma 10 18525 -NCIT:C7558 Endometrial Carcinoma 9 18526 -NCIT:C114656 Endometrial Adenosquamous Carcinoma 10 18527 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 11 18528 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 11 18529 -NCIT:C126769 Endometrial Dedifferentiated Carcinoma 10 18530 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 11 18531 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 11 18532 -NCIT:C150093 Refractory Endometrial Carcinoma 10 18533 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 11 18534 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 11 18535 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 11 18536 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 11 18537 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 12 18538 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 12 18539 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 12 18540 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 12 18541 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 12 18542 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 11 18543 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 11 18544 -NCIT:C150094 Recurrent Endometrial Carcinoma 10 18545 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 11 18546 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 11 18547 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 12 18548 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 12 18549 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 12 18550 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 12 18551 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 12 18552 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 11 18553 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 11 18554 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 11 18555 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 11 18556 -NCIT:C190200 Locally Recurrent Endometrial Carcinoma 11 18557 -NCIT:C156068 Metastatic Endometrial Carcinoma 10 18558 -NCIT:C159676 Advanced Endometrial Carcinoma 11 18559 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 12 18560 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 18561 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 18562 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 12 18563 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 11 18564 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 12 18565 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 18566 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 12 18567 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 11 18568 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 11 18569 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 12 18570 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 11 18571 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 12 18572 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 18573 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 12 18574 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 18575 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 18576 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 12 18577 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 18578 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 18579 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 12 18580 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 18581 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 12 18582 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 12 18583 -NCIT:C171033 Endometrial Neuroendocrine Carcinoma 10 18584 -NCIT:C126772 Endometrial Large Cell Neuroendocrine Carcinoma 11 18585 -NCIT:C40155 Endometrial Small Cell Neuroendocrine Carcinoma 11 18586 -NCIT:C171610 Unresectable Endometrial Carcinoma 10 18587 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 11 18588 -NCIT:C180335 Microsatellite Stable Endometrial Carcinoma 10 18589 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 11 18590 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 12 18591 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 11 18592 -NCIT:C190680 High Grade Endometrial Carcinoma 10 18593 -NCIT:C27838 Endometrial Serous Adenocarcinoma 11 18594 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 12 18595 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 12 18596 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 12 18597 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 18598 -NCIT:C187374 Platinum-Sensitive Endometrial Serous Adenocarcinoma 12 18599 -NCIT:C40148 High Grade Endometrial Endometrioid Adenocarcinoma 11 18600 -NCIT:C40156 Endometrial Undifferentiated Carcinoma 11 18601 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 12 18602 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 12 18603 -NCIT:C8028 Endometrial Clear Cell Adenocarcinoma 11 18604 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 12 18605 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 12 18606 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 12 18607 -NCIT:C40154 Endometrial Transitional Cell Carcinoma 10 18608 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 11 18609 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 11 18610 -NCIT:C7359 Endometrial Adenocarcinoma 10 18611 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 11 18612 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 12 18613 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 12 18614 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 12 18615 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 12 18616 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 12 18617 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 11 18618 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 12 18619 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 12 18620 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 12 18621 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 12 18622 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 12 18623 -NCIT:C179322 Endometrial Mesonephric-Like Adenocarcinoma 11 18624 -NCIT:C180536 Endometrial Mucinous Adenocarcinoma, Intestinal-Type 11 18625 -NCIT:C180537 Endometrial Mucinous Adenocarcinoma, Gastric-Type 11 18626 -NCIT:C39749 Type II Endometrial Adenocarcinoma 11 18627 -NCIT:C27838 Endometrial Serous Adenocarcinoma 12 18628 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 13 18629 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 13 18630 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 13 18631 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 14 18632 -NCIT:C187374 Platinum-Sensitive Endometrial Serous Adenocarcinoma 13 18633 -NCIT:C40152 Serous Endometrial Intraepithelial Carcinoma 12 18634 -NCIT:C8028 Endometrial Clear Cell Adenocarcinoma 12 18635 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 13 18636 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 13 18637 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 13 18638 -NCIT:C40145 Type I Endometrial Adenocarcinoma 11 18639 -NCIT:C40144 Endometrial Mucinous Adenocarcinoma 12 18640 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 13 18641 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 13 18642 -NCIT:C40149 FIGO Grade 1 Endometrial Mucinous Adenocarcinoma 13 18643 -NCIT:C40150 FIGO Grade 2 Endometrial Mucinous Adenocarcinoma 13 18644 -NCIT:C40151 FIGO Grade 3 Endometrial Mucinous Adenocarcinoma 13 18645 -NCIT:C6287 Endometrial Endometrioid Adenocarcinoma 12 18646 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 13 18647 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 13 18648 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 13 18649 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 14 18650 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 14 18651 -NCIT:C180510 Low Grade Endometrial Endometrioid Adenocarcinoma 13 18652 -NCIT:C40146 FIGO Grade 1 Endometrial Endometrioid Adenocarcinoma 14 18653 -NCIT:C40147 FIGO Grade 2 Endometrial Endometrioid Adenocarcinoma 14 18654 -NCIT:C180512 POLE-Ultramutated Endometrial Endometrioid Adenocarcinoma 13 18655 -NCIT:C180514 Mismatch Repair-Deficient Endometrial Endometrioid Adenocarcinoma 13 18656 -NCIT:C180515 p53-Mutant Endometrial Endometrioid Adenocarcinoma 13 18657 -NCIT:C180516 No Specific Molecular Profile Endometrial Endometrioid Adenocarcinoma 13 18658 -NCIT:C27839 Endometrial Endometrioid Adenocarcinoma, Secretory Variant 13 18659 -NCIT:C27843 Endometrial Endometrioid Adenocarcinoma with Clear Cell Change 13 18660 -NCIT:C27844 Endometrial Endometrioid Adenocarcinoma with a Poorly Differentiated Carcinomatous Component 13 18661 -NCIT:C27845 Endometrial Endometrioid Adenocarcinoma with an Undifferentiated Carcinomatous Component 13 18662 -NCIT:C27846 Villoglandular Endometrial Endometrioid Adenocarcinoma 13 18663 -NCIT:C27848 Endometrial Endometrioid Adenocarcinoma, Ciliated Variant 13 18664 -NCIT:C27849 Oxyphilic Endometrial Endometrioid Adenocarcinoma 13 18665 -NCIT:C27850 Endometrial Endometrioid Adenocarcinoma with Spindled Epithelial Cells 13 18666 -NCIT:C40148 High Grade Endometrial Endometrioid Adenocarcinoma 13 18667 -NCIT:C6290 Endometrial Endometrioid Adenocarcinoma, Variant with Squamous Differentiation 13 18668 -NCIT:C40153 Endometrial Mixed Cell Adenocarcinoma 11 18669 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 12 18670 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 12 18671 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 12 18672 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 11 18673 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 12 18674 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 18675 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 12 18676 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 18677 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 18678 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 12 18679 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 18680 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 18681 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 12 18682 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 18683 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 12 18684 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 12 18685 -NCIT:C8719 Endometrial Squamous Cell Carcinoma 10 18686 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 11 18687 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 11 18688 -NCIT:C61574 Uterine Corpus Cancer 8 18689 -NCIT:C139801 Uterine Corpus Cancer by AJCC v8 Stage 9 18690 -NCIT:C139802 Stage I Uterine Corpus Cancer AJCC v8 10 18691 -NCIT:C139803 Stage IA Uterine Corpus Cancer AJCC v8 11 18692 -NCIT:C139804 Stage IB Uterine Corpus Cancer AJCC v8 11 18693 -NCIT:C139805 Stage II Uterine Corpus Cancer AJCC v8 10 18694 -NCIT:C139806 Stage III Uterine Corpus Cancer AJCC v8 10 18695 -NCIT:C139807 Stage IIIA Uterine Corpus Cancer AJCC v8 11 18696 -NCIT:C139808 Stage IIIB Uterine Corpus Cancer AJCC v8 11 18697 -NCIT:C139809 Stage IIIC Uterine Corpus Cancer AJCC v8 11 18698 -NCIT:C139810 Stage IIIC1 Uterine Corpus Cancer AJCC v8 12 18699 -NCIT:C139811 Stage IIIC2 Uterine Corpus Cancer AJCC v8 12 18700 -NCIT:C139812 Stage IV Uterine Corpus Cancer AJCC v8 10 18701 -NCIT:C139813 Stage IVA Uterine Corpus Cancer AJCC v8 11 18702 -NCIT:C139814 Stage IVB Uterine Corpus Cancer AJCC v8 11 18703 -NCIT:C150092 Refractory Uterine Corpus Cancer 9 18704 -NCIT:C150093 Refractory Endometrial Carcinoma 10 18705 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 11 18706 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 11 18707 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 11 18708 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 11 18709 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 12 18710 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 12 18711 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 12 18712 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 12 18713 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 12 18714 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 11 18715 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 11 18716 -NCIT:C158381 Refractory Uterine Corpus Carcinosarcoma 10 18717 -NCIT:C172450 Advanced Uterine Corpus Cancer 9 18718 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 10 18719 -NCIT:C159676 Advanced Endometrial Carcinoma 10 18720 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 11 18721 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 12 18722 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 12 18723 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 11 18724 -NCIT:C7558 Endometrial Carcinoma 9 18725 -NCIT:C114656 Endometrial Adenosquamous Carcinoma 10 18726 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 11 18727 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 11 18728 -NCIT:C126769 Endometrial Dedifferentiated Carcinoma 10 18729 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 11 18730 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 11 18731 -NCIT:C150093 Refractory Endometrial Carcinoma 10 18732 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 11 18733 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 11 18734 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 11 18735 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 11 18736 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 12 18737 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 12 18738 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 12 18739 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 12 18740 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 12 18741 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 11 18742 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 11 18743 -NCIT:C150094 Recurrent Endometrial Carcinoma 10 18744 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 11 18745 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 11 18746 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 12 18747 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 12 18748 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 12 18749 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 12 18750 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 12 18751 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 11 18752 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 11 18753 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 11 18754 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 11 18755 -NCIT:C190200 Locally Recurrent Endometrial Carcinoma 11 18756 -NCIT:C156068 Metastatic Endometrial Carcinoma 10 18757 -NCIT:C159676 Advanced Endometrial Carcinoma 11 18758 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 12 18759 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 18760 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 18761 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 12 18762 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 11 18763 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 12 18764 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 18765 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 12 18766 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 11 18767 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 11 18768 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 12 18769 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 11 18770 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 12 18771 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 18772 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 12 18773 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 18774 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 18775 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 12 18776 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 18777 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 18778 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 12 18779 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 18780 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 12 18781 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 12 18782 -NCIT:C171033 Endometrial Neuroendocrine Carcinoma 10 18783 -NCIT:C126772 Endometrial Large Cell Neuroendocrine Carcinoma 11 18784 -NCIT:C40155 Endometrial Small Cell Neuroendocrine Carcinoma 11 18785 -NCIT:C171610 Unresectable Endometrial Carcinoma 10 18786 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 11 18787 -NCIT:C180335 Microsatellite Stable Endometrial Carcinoma 10 18788 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 11 18789 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 12 18790 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 11 18791 -NCIT:C190680 High Grade Endometrial Carcinoma 10 18792 -NCIT:C27838 Endometrial Serous Adenocarcinoma 11 18793 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 12 18794 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 12 18795 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 12 18796 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 18797 -NCIT:C187374 Platinum-Sensitive Endometrial Serous Adenocarcinoma 12 18798 -NCIT:C40148 High Grade Endometrial Endometrioid Adenocarcinoma 11 18799 -NCIT:C40156 Endometrial Undifferentiated Carcinoma 11 18800 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 12 18801 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 12 18802 -NCIT:C8028 Endometrial Clear Cell Adenocarcinoma 11 18803 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 12 18804 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 12 18805 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 12 18806 -NCIT:C40154 Endometrial Transitional Cell Carcinoma 10 18807 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 11 18808 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 11 18809 -NCIT:C7359 Endometrial Adenocarcinoma 10 18810 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 11 18811 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 12 18812 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 12 18813 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 12 18814 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 12 18815 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 12 18816 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 11 18817 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 12 18818 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 12 18819 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 12 18820 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 12 18821 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 12 18822 -NCIT:C179322 Endometrial Mesonephric-Like Adenocarcinoma 11 18823 -NCIT:C180536 Endometrial Mucinous Adenocarcinoma, Intestinal-Type 11 18824 -NCIT:C180537 Endometrial Mucinous Adenocarcinoma, Gastric-Type 11 18825 -NCIT:C39749 Type II Endometrial Adenocarcinoma 11 18826 -NCIT:C27838 Endometrial Serous Adenocarcinoma 12 18827 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 13 18828 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 13 18829 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 13 18830 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 14 18831 -NCIT:C187374 Platinum-Sensitive Endometrial Serous Adenocarcinoma 13 18832 -NCIT:C40152 Serous Endometrial Intraepithelial Carcinoma 12 18833 -NCIT:C8028 Endometrial Clear Cell Adenocarcinoma 12 18834 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 13 18835 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 13 18836 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 13 18837 -NCIT:C40145 Type I Endometrial Adenocarcinoma 11 18838 -NCIT:C40144 Endometrial Mucinous Adenocarcinoma 12 18839 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 13 18840 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 13 18841 -NCIT:C40149 FIGO Grade 1 Endometrial Mucinous Adenocarcinoma 13 18842 -NCIT:C40150 FIGO Grade 2 Endometrial Mucinous Adenocarcinoma 13 18843 -NCIT:C40151 FIGO Grade 3 Endometrial Mucinous Adenocarcinoma 13 18844 -NCIT:C6287 Endometrial Endometrioid Adenocarcinoma 12 18845 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 13 18846 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 13 18847 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 13 18848 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 14 18849 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 14 18850 -NCIT:C180510 Low Grade Endometrial Endometrioid Adenocarcinoma 13 18851 -NCIT:C40146 FIGO Grade 1 Endometrial Endometrioid Adenocarcinoma 14 18852 -NCIT:C40147 FIGO Grade 2 Endometrial Endometrioid Adenocarcinoma 14 18853 -NCIT:C180512 POLE-Ultramutated Endometrial Endometrioid Adenocarcinoma 13 18854 -NCIT:C180514 Mismatch Repair-Deficient Endometrial Endometrioid Adenocarcinoma 13 18855 -NCIT:C180515 p53-Mutant Endometrial Endometrioid Adenocarcinoma 13 18856 -NCIT:C180516 No Specific Molecular Profile Endometrial Endometrioid Adenocarcinoma 13 18857 -NCIT:C27839 Endometrial Endometrioid Adenocarcinoma, Secretory Variant 13 18858 -NCIT:C27843 Endometrial Endometrioid Adenocarcinoma with Clear Cell Change 13 18859 -NCIT:C27844 Endometrial Endometrioid Adenocarcinoma with a Poorly Differentiated Carcinomatous Component 13 18860 -NCIT:C27845 Endometrial Endometrioid Adenocarcinoma with an Undifferentiated Carcinomatous Component 13 18861 -NCIT:C27846 Villoglandular Endometrial Endometrioid Adenocarcinoma 13 18862 -NCIT:C27848 Endometrial Endometrioid Adenocarcinoma, Ciliated Variant 13 18863 -NCIT:C27849 Oxyphilic Endometrial Endometrioid Adenocarcinoma 13 18864 -NCIT:C27850 Endometrial Endometrioid Adenocarcinoma with Spindled Epithelial Cells 13 18865 -NCIT:C40148 High Grade Endometrial Endometrioid Adenocarcinoma 13 18866 -NCIT:C6290 Endometrial Endometrioid Adenocarcinoma, Variant with Squamous Differentiation 13 18867 -NCIT:C40153 Endometrial Mixed Cell Adenocarcinoma 11 18868 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 12 18869 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 12 18870 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 12 18871 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 11 18872 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 12 18873 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 18874 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 12 18875 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 18876 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 18877 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 12 18878 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 18879 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 18880 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 12 18881 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 18882 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 12 18883 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 12 18884 -NCIT:C8719 Endometrial Squamous Cell Carcinoma 10 18885 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 11 18886 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 11 18887 -NCIT:C90494 Uterine Corpus Cancer by AJCC v6 Stage 9 18888 -NCIT:C4006 Stage IV Uterine Corpus Cancer AJCC v6 10 18889 -NCIT:C9071 Stage 0 Uterine Corpus Cancer AJCC v6 10 18890 -NCIT:C9207 Stage I Uterine Corpus Cancer AJCC v6 10 18891 -NCIT:C6303 Stage IC Uterine Corpus Cancer AJCC v6 11 18892 -NCIT:C9208 Stage II Uterine Corpus Cancer AJCC v6 10 18893 -NCIT:C6304 Stage IIA Uterine Corpus Cancer AJCC v6 11 18894 -NCIT:C6305 Stage IIB Uterine Corpus Cancer AJCC v6 11 18895 -NCIT:C9209 Stage III Uterine Corpus Cancer AJCC v6 10 18896 -NCIT:C9072 Recurrent Uterine Corpus Cancer 9 18897 -NCIT:C150094 Recurrent Endometrial Carcinoma 10 18898 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 11 18899 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 11 18900 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 12 18901 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 12 18902 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 12 18903 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 12 18904 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 12 18905 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 11 18906 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 11 18907 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 11 18908 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 11 18909 -NCIT:C190200 Locally Recurrent Endometrial Carcinoma 11 18910 -NCIT:C155818 Recurrent Uterine Corpus Carcinosarcoma 10 18911 -NCIT:C91218 Uterine Corpus Cancer by AJCC v7 Stage 9 18912 -NCIT:C89632 Stage 0 Uterine Corpus Cancer AJCC v7 10 18913 -NCIT:C89633 Stage I Uterine Corpus Cancer AJCC v7 10 18914 -NCIT:C6301 Stage IA Uterine Corpus Cancer AJCC v7 11 18915 -NCIT:C6302 Stage IB Uterine Corpus Cancer AJCC v7 11 18916 -NCIT:C89634 Stage II Uterine Corpus Cancer AJCC v7 10 18917 -NCIT:C89635 Stage III Uterine Corpus Cancer AJCC v7 10 18918 -NCIT:C6306 Stage IIIA Uterine Corpus Cancer AJCC v7 11 18919 -NCIT:C6307 Stage IIIB Uterine Corpus Cancer AJCC v7 11 18920 -NCIT:C6308 Stage IIIC Uterine Corpus Cancer AJCC v7 11 18921 -NCIT:C95174 Stage IIIC1 Uterine Corpus Cancer AJCC v7 12 18922 -NCIT:C95176 Stage IIIC2 Uterine Corpus Cancer AJCC v7 12 18923 -NCIT:C89636 Stage IV Uterine Corpus Cancer AJCC v7 10 18924 -NCIT:C6309 Stage IVA Uterine Corpus Cancer AJCC v7 11 18925 -NCIT:C6310 Stage IVB Uterine Corpus Cancer AJCC v7 11 18926 -NCIT:C9180 Uterine Corpus Carcinosarcoma 9 18927 -NCIT:C155818 Recurrent Uterine Corpus Carcinosarcoma 10 18928 -NCIT:C158381 Refractory Uterine Corpus Carcinosarcoma 10 18929 -NCIT:C170931 Metastatic Uterine Corpus Carcinosarcoma 10 18930 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 11 18931 -NCIT:C6311 Malignant Uterine Corpus Mixed Epithelial and Mesenchymal Neoplasm 8 18932 -NCIT:C40182 Uterine Corpus Carcinofibroma 9 18933 -NCIT:C6336 Uterine Corpus Adenosarcoma 9 18934 -NCIT:C139894 Uterine Corpus Adenosarcoma by AJCC v8 Stage 10 18935 -NCIT:C139895 Stage I Uterine Corpus Adenosarcoma AJCC v8 11 18936 -NCIT:C139896 Stage IA Uterine Corpus Adenosarcoma AJCC v8 12 18937 -NCIT:C139897 Stage IB Uterine Corpus Adenosarcoma AJCC v8 12 18938 -NCIT:C139898 Stage IC Uterine Corpus Adenosarcoma AJCC v8 12 18939 -NCIT:C139899 Stage II Uterine Corpus Adenosarcoma AJCC v8 11 18940 -NCIT:C139900 Stage III Uterine Corpus Adenosarcoma AJCC v8 11 18941 -NCIT:C139901 Stage IIIA Uterine Corpus Adenosarcoma AJCC v8 12 18942 -NCIT:C139902 Stage IIIB Uterine Corpus Adenosarcoma AJCC v8 12 18943 -NCIT:C139903 Stage IIIC Uterine Corpus Adenosarcoma AJCC v8 12 18944 -NCIT:C139904 Stage IV Uterine Corpus Adenosarcoma AJCC v8 11 18945 -NCIT:C139905 Stage IVA Uterine Corpus Adenosarcoma AJCC v8 12 18946 -NCIT:C139906 Stage IVB Uterine Corpus Adenosarcoma AJCC v8 12 18947 -NCIT:C9180 Uterine Corpus Carcinosarcoma 9 18948 -NCIT:C155818 Recurrent Uterine Corpus Carcinosarcoma 10 18949 -NCIT:C158381 Refractory Uterine Corpus Carcinosarcoma 10 18950 -NCIT:C170931 Metastatic Uterine Corpus Carcinosarcoma 10 18951 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 11 18952 -NCIT:C6339 Uterine Corpus Sarcoma 8 18953 -NCIT:C127058 Uterine Corpus Rhabdomyosarcoma 9 18954 -NCIT:C136708 Uterine Corpus Sarcoma by AJCC v7 Stage 9 18955 -NCIT:C8258 Stage I Uterine Sarcoma AJCC v7 10 18956 -NCIT:C87132 Stage IA Uterine Sarcoma AJCC v7 11 18957 -NCIT:C87133 Stage IB Uterine Sarcoma AJCC v7 11 18958 -NCIT:C87134 Stage IC Uterine Sarcoma AJCC v7 11 18959 -NCIT:C8259 Stage II Uterine Sarcoma AJCC v7 10 18960 -NCIT:C115130 Stage IIA Uterine Sarcoma AJCC v7 11 18961 -NCIT:C115131 Stage IIB Uterine Sarcoma AJCC v7 11 18962 -NCIT:C8260 Stage III Uterine Sarcoma AJCC v7 10 18963 -NCIT:C87135 Stage IIIA Uterine Sarcoma AJCC v7 11 18964 -NCIT:C87137 Stage IIIB Uterine Sarcoma AJCC v7 11 18965 -NCIT:C87138 Stage IIIC Uterine Sarcoma AJCC v7 11 18966 -NCIT:C9179 Stage IV Uterine Sarcoma AJCC v7 10 18967 -NCIT:C87140 Stage IVA Uterine Sarcoma AJCC v7 11 18968 -NCIT:C87144 Stage IVB Uterine Sarcoma AJCC v7 11 18969 -NCIT:C139869 Uterine Corpus Sarcoma by AJCC v8 Stage 9 18970 -NCIT:C139870 Uterine Corpus Leiomyosarcoma by AJCC v8 Stage 10 18971 -NCIT:C139871 Stage I Uterine Corpus Leiomyosarcoma AJCC v8 11 18972 -NCIT:C139872 Stage IA Uterine Corpus Leiomyosarcoma AJCC v8 12 18973 -NCIT:C139873 Stage IB Uterine Corpus Leiomyosarcoma AJCC v8 12 18974 -NCIT:C139874 Stage II Uterine Corpus Leiomyosarcoma AJCC v8 11 18975 -NCIT:C139875 Stage III Uterine Corpus Leiomyosarcoma AJCC v8 11 18976 -NCIT:C139876 Stage IIIA Uterine Corpus Leiomyosarcoma AJCC v8 12 18977 -NCIT:C139877 Stage IIIB Uterine Corpus Leiomyosarcoma AJCC v8 12 18978 -NCIT:C139878 Stage IIIC Uterine Corpus Leiomyosarcoma AJCC v8 12 18979 -NCIT:C139879 Stage IV Uterine Corpus Leiomyosarcoma AJCC v8 11 18980 -NCIT:C139880 Stage IVA Uterine Corpus Leiomyosarcoma AJCC v8 12 18981 -NCIT:C139881 Stage IVB Uterine Corpus Leiomyosarcoma AJCC v8 12 18982 -NCIT:C139882 Uterine Corpus Endometrial Stromal Sarcoma by AJCC v8 Stage 10 18983 -NCIT:C139883 Stage I Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 18984 -NCIT:C139884 Stage IA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 18985 -NCIT:C139885 Stage IB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 18986 -NCIT:C139886 Stage II Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 18987 -NCIT:C139887 Stage III Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 18988 -NCIT:C139888 Stage IIIA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 18989 -NCIT:C139889 Stage IIIB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 18990 -NCIT:C139890 Stage IIIC Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 18991 -NCIT:C139891 Stage IV Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 18992 -NCIT:C139892 Stage IVA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 18993 -NCIT:C139893 Stage IVB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 18994 -NCIT:C139894 Uterine Corpus Adenosarcoma by AJCC v8 Stage 10 18995 -NCIT:C139895 Stage I Uterine Corpus Adenosarcoma AJCC v8 11 18996 -NCIT:C139896 Stage IA Uterine Corpus Adenosarcoma AJCC v8 12 18997 -NCIT:C139897 Stage IB Uterine Corpus Adenosarcoma AJCC v8 12 18998 -NCIT:C139898 Stage IC Uterine Corpus Adenosarcoma AJCC v8 12 18999 -NCIT:C139899 Stage II Uterine Corpus Adenosarcoma AJCC v8 11 19000 -NCIT:C139900 Stage III Uterine Corpus Adenosarcoma AJCC v8 11 19001 -NCIT:C139901 Stage IIIA Uterine Corpus Adenosarcoma AJCC v8 12 19002 -NCIT:C139902 Stage IIIB Uterine Corpus Adenosarcoma AJCC v8 12 19003 -NCIT:C139903 Stage IIIC Uterine Corpus Adenosarcoma AJCC v8 12 19004 -NCIT:C139904 Stage IV Uterine Corpus Adenosarcoma AJCC v8 11 19005 -NCIT:C139905 Stage IVA Uterine Corpus Adenosarcoma AJCC v8 12 19006 -NCIT:C139906 Stage IVB Uterine Corpus Adenosarcoma AJCC v8 12 19007 -NCIT:C180546 Uterine Corpus Central Primitive Neuroectodermal Tumor 9 19008 -NCIT:C190009 Metastatic Uterine Corpus Sarcoma 9 19009 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 10 19010 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 11 19011 -NCIT:C190016 Unresectable Uterine Corpus Sarcoma 9 19012 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 10 19013 -NCIT:C40219 Uterine Corpus Endometrial Stromal Sarcoma 9 19014 -NCIT:C126998 Uterine Corpus High Grade Endometrial Stromal Sarcoma 10 19015 -NCIT:C139882 Uterine Corpus Endometrial Stromal Sarcoma by AJCC v8 Stage 10 19016 -NCIT:C139883 Stage I Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 19017 -NCIT:C139884 Stage IA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 19018 -NCIT:C139885 Stage IB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 19019 -NCIT:C139886 Stage II Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 19020 -NCIT:C139887 Stage III Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 19021 -NCIT:C139888 Stage IIIA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 19022 -NCIT:C139889 Stage IIIB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 19023 -NCIT:C139890 Stage IIIC Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 19024 -NCIT:C139891 Stage IV Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 19025 -NCIT:C139892 Stage IVA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 19026 -NCIT:C139893 Stage IVB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 19027 -NCIT:C40223 Uterine Corpus Low Grade Endometrial Stromal Sarcoma 10 19028 -NCIT:C6336 Uterine Corpus Adenosarcoma 9 19029 -NCIT:C139894 Uterine Corpus Adenosarcoma by AJCC v8 Stage 10 19030 -NCIT:C139895 Stage I Uterine Corpus Adenosarcoma AJCC v8 11 19031 -NCIT:C139896 Stage IA Uterine Corpus Adenosarcoma AJCC v8 12 19032 -NCIT:C139897 Stage IB Uterine Corpus Adenosarcoma AJCC v8 12 19033 -NCIT:C139898 Stage IC Uterine Corpus Adenosarcoma AJCC v8 12 19034 -NCIT:C139899 Stage II Uterine Corpus Adenosarcoma AJCC v8 11 19035 -NCIT:C139900 Stage III Uterine Corpus Adenosarcoma AJCC v8 11 19036 -NCIT:C139901 Stage IIIA Uterine Corpus Adenosarcoma AJCC v8 12 19037 -NCIT:C139902 Stage IIIB Uterine Corpus Adenosarcoma AJCC v8 12 19038 -NCIT:C139903 Stage IIIC Uterine Corpus Adenosarcoma AJCC v8 12 19039 -NCIT:C139904 Stage IV Uterine Corpus Adenosarcoma AJCC v8 11 19040 -NCIT:C139905 Stage IVA Uterine Corpus Adenosarcoma AJCC v8 12 19041 -NCIT:C139906 Stage IVB Uterine Corpus Adenosarcoma AJCC v8 12 19042 -NCIT:C6340 Uterine Corpus Leiomyosarcoma 9 19043 -NCIT:C139870 Uterine Corpus Leiomyosarcoma by AJCC v8 Stage 10 19044 -NCIT:C139871 Stage I Uterine Corpus Leiomyosarcoma AJCC v8 11 19045 -NCIT:C139872 Stage IA Uterine Corpus Leiomyosarcoma AJCC v8 12 19046 -NCIT:C139873 Stage IB Uterine Corpus Leiomyosarcoma AJCC v8 12 19047 -NCIT:C139874 Stage II Uterine Corpus Leiomyosarcoma AJCC v8 11 19048 -NCIT:C139875 Stage III Uterine Corpus Leiomyosarcoma AJCC v8 11 19049 -NCIT:C139876 Stage IIIA Uterine Corpus Leiomyosarcoma AJCC v8 12 19050 -NCIT:C139877 Stage IIIB Uterine Corpus Leiomyosarcoma AJCC v8 12 19051 -NCIT:C139878 Stage IIIC Uterine Corpus Leiomyosarcoma AJCC v8 12 19052 -NCIT:C139879 Stage IV Uterine Corpus Leiomyosarcoma AJCC v8 11 19053 -NCIT:C139880 Stage IVA Uterine Corpus Leiomyosarcoma AJCC v8 12 19054 -NCIT:C139881 Stage IVB Uterine Corpus Leiomyosarcoma AJCC v8 12 19055 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 10 19056 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 10 19057 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 11 19058 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 10 19059 -NCIT:C40174 Uterine Corpus Epithelioid Leiomyosarcoma 10 19060 -NCIT:C40175 Uterine Corpus Myxoid Leiomyosarcoma 10 19061 -NCIT:C8261 Recurrent Uterine Corpus Sarcoma 9 19062 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 10 19063 -NCIT:C8972 Uterine Corpus Undifferentiated Sarcoma 9 19064 -NCIT:C42700 Uterine Carcinosarcoma 7 19065 -NCIT:C113238 Uterine Carcinosarcoma, Homologous Type 8 19066 -NCIT:C113239 Uterine Carcinosarcoma, Heterologous Type 8 19067 -NCIT:C36097 Cervical Carcinosarcoma 8 19068 -NCIT:C9180 Uterine Corpus Carcinosarcoma 8 19069 -NCIT:C155818 Recurrent Uterine Corpus Carcinosarcoma 9 19070 -NCIT:C158381 Refractory Uterine Corpus Carcinosarcoma 9 19071 -NCIT:C170931 Metastatic Uterine Corpus Carcinosarcoma 9 19072 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 10 19073 -NCIT:C5385 Uterine Angiosarcoma 7 19074 -NCIT:C128049 Cervical Angiosarcoma 8 19075 -NCIT:C9311 Malignant Cervical Neoplasm 7 19076 -NCIT:C128054 Malignant Cervical Soft Tissue Neoplasm 8 19077 -NCIT:C128047 Cervical Leiomyosarcoma 9 19078 -NCIT:C128048 Cervical Rhabdomyosarcoma 9 19079 -NCIT:C128049 Cervical Angiosarcoma 9 19080 -NCIT:C128050 Cervical Malignant Peripheral Nerve Sheath Tumor 9 19081 -NCIT:C40222 Cervical Low Grade Endometrioid Stromal Sarcoma 9 19082 -NCIT:C40224 Endocervical Undifferentiated Sarcoma 9 19083 -NCIT:C40225 Cervical Alveolar Soft Part Sarcoma 9 19084 -NCIT:C40229 Cervical Adenosarcoma 9 19085 -NCIT:C7433 AIDS-Related Cervical Kaposi Sarcoma 9 19086 -NCIT:C128055 Cervical Yolk Sac Tumor 8 19087 -NCIT:C3553 Malignant Endocervical Neoplasm 8 19088 -NCIT:C9269 Recurrent Malignant Endocervical Neoplasm 9 19089 -NCIT:C3554 Malignant Exocervical Neoplasm 8 19090 -NCIT:C7453 Exocervical Carcinoma 9 19091 -NCIT:C40228 Malignant Mixed Epithelial and Mesenchymal Neoplasm of the Cervix 8 19092 -NCIT:C36097 Cervical Carcinosarcoma 9 19093 -NCIT:C40229 Cervical Adenosarcoma 9 19094 -NCIT:C40236 Cervical Wilms Tumor 8 19095 -NCIT:C40239 Cervical Melanoma 8 19096 -NCIT:C5052 AIDS-Related Malignant Cervical Neoplasm 8 19097 -NCIT:C7432 AIDS-Related Cervical Carcinoma 9 19098 -NCIT:C7433 AIDS-Related Cervical Kaposi Sarcoma 9 19099 -NCIT:C7434 AIDS-Related Non-Hodgkin Lymphoma of the Cervix 9 19100 -NCIT:C6385 Metastatic Malignant Neoplasm in the Uterine Cervix 8 19101 -NCIT:C6334 Metastatic Carcinoma in the Uterine Cervix 9 19102 -NCIT:C9039 Cervical Carcinoma 8 19103 -NCIT:C128045 Cervical Neuroendocrine Carcinoma 9 19104 -NCIT:C40214 Cervical Large Cell Neuroendocrine Carcinoma 10 19105 -NCIT:C7982 Cervical Small Cell Neuroendocrine Carcinoma 10 19106 -NCIT:C139733 Cervical Cancer by AJCC v8 Stage 9 19107 -NCIT:C139734 Stage I Cervical Cancer AJCC v8 10 19108 -NCIT:C139735 Stage IA Cervical Cancer AJCC v8 11 19109 -NCIT:C139736 Stage IA1 Cervical Cancer AJCC v8 12 19110 -NCIT:C139737 Stage IA2 Cervical Cancer AJCC v8 12 19111 -NCIT:C139738 Stage IB Cervical Cancer AJCC v8 11 19112 -NCIT:C139739 Stage IB1 Cervical Cancer AJCC v8 12 19113 -NCIT:C139740 Stage IB2 Cervical Cancer AJCC v8 12 19114 -NCIT:C139743 Stage II Cervical Cancer AJCC v8 10 19115 -NCIT:C139744 Stage IIA Cervical Cancer AJCC v8 11 19116 -NCIT:C139745 Stage IIA1 Cervical Cancer AJCC v8 12 19117 -NCIT:C139746 Stage IIA2 Cervical Cancer AJCC v8 12 19118 -NCIT:C139748 Stage IIB Cervical Cancer AJCC v8 11 19119 -NCIT:C139749 Stage III Cervical Cancer AJCC v8 10 19120 -NCIT:C139750 Stage IIIA Cervical Cancer AJCC v8 11 19121 -NCIT:C139752 Stage IIIB Cervical Cancer AJCC v8 11 19122 -NCIT:C139753 Stage IV Cervical Cancer AJCC v8 10 19123 -NCIT:C139754 Stage IVA Cervical Cancer AJCC v8 11 19124 -NCIT:C139755 Stage IVB Cervical Cancer AJCC v8 11 19125 -NCIT:C153387 Metastatic Cervical Carcinoma 9 19126 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 10 19127 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 11 19128 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 11 19129 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 10 19130 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 11 19131 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 12 19132 -NCIT:C156304 Advanced Cervical Adenocarcinoma 11 19133 -NCIT:C153390 Metastatic Cervical Adenosquamous Carcinoma 10 19134 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 11 19135 -NCIT:C156294 Advanced Cervical Carcinoma 10 19136 -NCIT:C156304 Advanced Cervical Adenocarcinoma 11 19137 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 11 19138 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 11 19139 -NCIT:C156295 Locally Advanced Cervical Carcinoma 10 19140 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 11 19141 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 12 19142 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 11 19143 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 12 19144 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 11 19145 -NCIT:C162225 Cervical Cancer by FIGO Stage 2018 9 19146 -NCIT:C162226 Stage I Cervical Cancer FIGO 2018 10 19147 -NCIT:C162227 Stage IA Cervical Cancer FIGO 2018 11 19148 -NCIT:C162228 Stage IA1 Cervical Cancer FIGO 2018 12 19149 -NCIT:C162229 Stage IA2 Cervical Cancer FIGO 2018 12 19150 -NCIT:C162230 Stage IB Cervical Cancer FIGO 2018 11 19151 -NCIT:C162231 Stage IB1 Cervical Cancer FIGO 2018 12 19152 -NCIT:C162232 Stage IB2 Cervical Cancer FIGO 2018 12 19153 -NCIT:C162233 Stage IB3 Cervical Cancer FIGO 2018 12 19154 -NCIT:C162234 Stage II Cervical Cancer FIGO 2018 10 19155 -NCIT:C162235 Stage IIA Cervical Cancer FIGO 2018 11 19156 -NCIT:C162236 Stage IIA1 Cervical Cancer FIGO 2018 12 19157 -NCIT:C162237 Stage IIA2 Cervical Cancer FIGO 2018 12 19158 -NCIT:C162238 Stage IIB Cervical Cancer FIGO 2018 11 19159 -NCIT:C162239 Stage III Cervical Cancer FIGO 2018 10 19160 -NCIT:C162240 Stage IIIA Cervical Cancer FIGO 2018 11 19161 -NCIT:C162241 Stage IIIB Cervical Cancer FIGO 2018 11 19162 -NCIT:C162242 Stage IIIC Cervical Cancer FIGO 2018 11 19163 -NCIT:C162243 Stage IIIC1 Cervical Cancer FIGO 2018 12 19164 -NCIT:C162244 Stage IIIC2 Cervical Cancer FIGO 2018 12 19165 -NCIT:C162245 Stage IV Cervical Cancer FIGO 2018 10 19166 -NCIT:C162246 Stage IVA Cervical Cancer FIGO 2018 11 19167 -NCIT:C162247 Stage IVB Cervical Cancer FIGO 2018 11 19168 -NCIT:C170513 Refractory Cervical Carcinoma 9 19169 -NCIT:C181034 Refractory Cervical Squamous Cell Carcinoma 10 19170 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 11 19171 -NCIT:C181036 Refractory Cervical Adenocarcinoma 10 19172 -NCIT:C174024 Unresectable Cervical Carcinoma 9 19173 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 10 19174 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 11 19175 -NCIT:C174025 Unresectable Cervical Squamous Cell Carcinoma 10 19176 -NCIT:C174027 Unresectable Cervical Adenosquamous Carcinoma 10 19177 -NCIT:C174029 Unresectable Cervical Adenocarcinoma 10 19178 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 11 19179 -NCIT:C180878 Cervical Mucoepidermoid Carcinoma 9 19180 -NCIT:C181562 Cervical Cancer by AJCC v9 Stage 9 19181 -NCIT:C181564 Stage I Cervical Cancer AJCC v9 10 19182 -NCIT:C181565 Stage IA Cervical Cancer AJCC v9 11 19183 -NCIT:C181567 Stage IA1 Cervical Cancer AJCC v9 12 19184 -NCIT:C181568 Stage IA2 Cervical Cancer AJCC v9 12 19185 -NCIT:C181570 Stage IB Cervical Cancer AJCC v9 11 19186 -NCIT:C181571 Stage IB1 Cervical Cancer AJCC v9 12 19187 -NCIT:C181576 Stage IB2 Cervical Cancer AJCC v9 12 19188 -NCIT:C181579 Stage IB3 Cervical Cancer AJCC v9 12 19189 -NCIT:C181583 Stage II Cervical Cancer AJCC v9 10 19190 -NCIT:C181584 Stage IIA Cervical Cancer AJCC v9 11 19191 -NCIT:C181586 Stage IIA1 Cervical Cancer AJCC v9 12 19192 -NCIT:C181588 Stage IIA2 Cervical Cancer AJCC v9 12 19193 -NCIT:C181591 Stage IIB Cervical Cancer AJCC v9 11 19194 -NCIT:C181592 Stage III Cervical Cancer AJCC v9 10 19195 -NCIT:C181594 Stage IIIA Cervical Cancer AJCC v9 11 19196 -NCIT:C181595 Stage IIIB Cervical Cancer AJCC v9 11 19197 -NCIT:C181596 Stage IIIC Cervical Cancer AJCC v9 11 19198 -NCIT:C181597 Stage IIIC1 Cervical Cancer AJCC v9 12 19199 -NCIT:C181598 Stage IIIC2 Cervical Cancer AJCC v9 12 19200 -NCIT:C181599 Stage IV Cervical Cancer AJCC v9 10 19201 -NCIT:C181601 Stage IVA Cervical Cancer AJCC v9 11 19202 -NCIT:C181603 Stage IVB Cervical Cancer AJCC v9 11 19203 -NCIT:C186619 Cervical Cancer by FIGO Stage 2009 9 19204 -NCIT:C186620 Stage I Cervical Cancer FIGO 2009 10 19205 -NCIT:C186621 Stage IA Cervical Cancer FIGO 2009 11 19206 -NCIT:C186622 Stage IA1 Cervical Cancer FIGO 2009 12 19207 -NCIT:C186623 Stage IA2 Cervical Cancer FIGO 2009 12 19208 -NCIT:C186624 Stage IB Cervical Cancer FIGO 2009 11 19209 -NCIT:C186625 Stage IB1 Cervical Cancer FIGO 2009 12 19210 -NCIT:C186626 Stage IB2 Cervical Cancer FIGO 2009 12 19211 -NCIT:C186627 Stage II Cervical Cancer FIGO 2009 10 19212 -NCIT:C186628 Stage IIA Cervical Cancer FIGO 2009 11 19213 -NCIT:C186629 Stage IIA1 Cervical Cancer FIGO 2009 12 19214 -NCIT:C186630 Stage IIA2 Cervical Cancer FIGO 2009 12 19215 -NCIT:C186631 Stage IIB Cervical Cancer FIGO 2009 11 19216 -NCIT:C186632 Stage III Cervical Cancer FIGO 2009 10 19217 -NCIT:C186633 Stage IIIA Cervical Cancer FIGO 2009 11 19218 -NCIT:C186634 Stage IIIB Cervical Cancer FIGO 2009 11 19219 -NCIT:C186635 Stage IV Cervical Cancer FIGO 2009 10 19220 -NCIT:C186636 Stage IVA Cervical Cancer FIGO 2009 11 19221 -NCIT:C186637 Stage IVB Cervical Cancer FIGO 2009 11 19222 -NCIT:C27675 Human Papillomavirus-Related Cervical Carcinoma 9 19223 -NCIT:C27676 Human Papillomavirus-Related Cervical Squamous Cell Carcinoma 10 19224 -NCIT:C40192 Cervical Papillary Squamous Cell Carcinoma 11 19225 -NCIT:C40191 Cervical Warty Carcinoma 12 19226 -NCIT:C40194 Cervical Squamotransitional Carcinoma 12 19227 -NCIT:C27677 Human Papillomavirus-Related Cervical Adenocarcinoma 10 19228 -NCIT:C127907 Endocervical Adenocarcinoma, Usual-Type 11 19229 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 12 19230 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 12 19231 -NCIT:C40208 Cervical Villoglandular Adenocarcinoma 12 19232 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 11 19233 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 11 19234 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 11 19235 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 11 19236 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 11 19237 -NCIT:C40213 Cervical Adenoid Basal Carcinoma 9 19238 -NCIT:C4028 Cervical Squamous Cell Carcinoma 9 19239 -NCIT:C136649 Recurrent Cervical Squamous Cell Carcinoma 10 19240 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 10 19241 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 11 19242 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 11 19243 -NCIT:C174025 Unresectable Cervical Squamous Cell Carcinoma 10 19244 -NCIT:C180839 Cervical Squamous Cell Carcinoma, Not Otherwise Specified 10 19245 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 11 19246 -NCIT:C180841 Human Papillomavirus-Independent Cervical Squamous Cell Carcinoma 10 19247 -NCIT:C181034 Refractory Cervical Squamous Cell Carcinoma 10 19248 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 11 19249 -NCIT:C27676 Human Papillomavirus-Related Cervical Squamous Cell Carcinoma 10 19250 -NCIT:C40192 Cervical Papillary Squamous Cell Carcinoma 11 19251 -NCIT:C40191 Cervical Warty Carcinoma 12 19252 -NCIT:C40194 Cervical Squamotransitional Carcinoma 12 19253 -NCIT:C36094 Early Invasive Cervical Squamous Cell Carcinoma 10 19254 -NCIT:C40187 Cervical Keratinizing Squamous Cell Carcinoma 10 19255 -NCIT:C40188 Cervical Non-Keratinizing Squamous Cell Carcinoma 10 19256 -NCIT:C40189 Cervical Basaloid Carcinoma 10 19257 -NCIT:C40190 Cervical Verrucous Carcinoma 10 19258 -NCIT:C40193 Cervical Lymphoepithelioma-Like Carcinoma 10 19259 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 10 19260 -NCIT:C4029 Cervical Adenocarcinoma 9 19261 -NCIT:C127915 Cervical Adenocarcinoma Admixed with Neuroendocrine Carcinoma 10 19262 -NCIT:C136651 Recurrent Cervical Adenocarcinoma 10 19263 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 11 19264 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 10 19265 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 11 19266 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 12 19267 -NCIT:C156304 Advanced Cervical Adenocarcinoma 11 19268 -NCIT:C174029 Unresectable Cervical Adenocarcinoma 10 19269 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 11 19270 -NCIT:C180848 Human Papillomavirus-Independent Cervical Adenocarcinoma 10 19271 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 11 19272 -NCIT:C40201 Cervical Serous Adenocarcinoma 11 19273 -NCIT:C40206 Human Papillomavirus-Independent Cervical Adenocarcinoma, Gastric-Type 11 19274 -NCIT:C40254 Cervical Mesonephric Adenocarcinoma 11 19275 -NCIT:C6343 Cervical Endometrioid Adenocarcinoma 11 19276 -NCIT:C6344 Human Papillomavirus-Independent Cervical Adenocarcinoma, Clear Cell-Type 11 19277 -NCIT:C180870 Cervical Adenocarcinoma, Not Otherwise Specified 10 19278 -NCIT:C181036 Refractory Cervical Adenocarcinoma 10 19279 -NCIT:C27677 Human Papillomavirus-Related Cervical Adenocarcinoma 10 19280 -NCIT:C127907 Endocervical Adenocarcinoma, Usual-Type 11 19281 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 12 19282 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 12 19283 -NCIT:C40208 Cervical Villoglandular Adenocarcinoma 12 19284 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 11 19285 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 11 19286 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 11 19287 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 11 19288 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 11 19289 -NCIT:C36095 Cervical Mucinous Adenocarcinoma 10 19290 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 11 19291 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 11 19292 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 11 19293 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 11 19294 -NCIT:C40206 Human Papillomavirus-Independent Cervical Adenocarcinoma, Gastric-Type 11 19295 -NCIT:C36096 Early Invasive Cervical Adenocarcinoma 10 19296 -NCIT:C4520 Cervical Adenocarcinoma In Situ 10 19297 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 11 19298 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 11 19299 -NCIT:C4519 Cervical Adenosquamous Carcinoma 9 19300 -NCIT:C136650 Recurrent Cervical Adenosquamous Carcinoma 10 19301 -NCIT:C153390 Metastatic Cervical Adenosquamous Carcinoma 10 19302 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 11 19303 -NCIT:C174027 Unresectable Cervical Adenosquamous Carcinoma 10 19304 -NCIT:C40212 Cervical Poorly Differentiated Adenosquamous Carcinoma 10 19305 -NCIT:C6345 Cervical Undifferentiated Carcinoma 9 19306 -NCIT:C6346 Cervical Adenoid Cystic Carcinoma 9 19307 -NCIT:C7432 AIDS-Related Cervical Carcinoma 9 19308 -NCIT:C7453 Exocervical Carcinoma 9 19309 -NCIT:C7804 Recurrent Cervical Carcinoma 9 19310 -NCIT:C136649 Recurrent Cervical Squamous Cell Carcinoma 10 19311 -NCIT:C136650 Recurrent Cervical Adenosquamous Carcinoma 10 19312 -NCIT:C136651 Recurrent Cervical Adenocarcinoma 10 19313 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 11 19314 -NCIT:C8577 Invasive Cervical Carcinoma 9 19315 -NCIT:C90493 Cervical Cancer by AJCC v6 Stage 9 19316 -NCIT:C4000 Stage 0 Cervical Cancer AJCC v6 10 19317 -NCIT:C7803 Stage II Cervical Cancer AJCC v6 10 19318 -NCIT:C6319 Stage IIA Cervical Cancer AJCC v6 11 19319 -NCIT:C6320 Stage IIB Cervical Cancer AJCC v6 and v7 11 19320 -NCIT:C9204 Stage I Cervical Cancer AJCC v6 and v7 10 19321 -NCIT:C6313 Stage IA Cervical Cancer AJCC v6 and v7 11 19322 -NCIT:C6314 Stage IA1 Cervical Cancer AJCC v6 and v7 12 19323 -NCIT:C6315 Stage IA2 Cervical Cancer AJCC v6 and v7 12 19324 -NCIT:C6316 Stage IB Cervical Cancer AJCC v6 and v7 11 19325 -NCIT:C6317 Stage IB1 Cervical Cancer AJCC v6 and v7 12 19326 -NCIT:C6318 Stage IB2 Cervical Cancer AJCC v6 and v7 12 19327 -NCIT:C9205 Stage III Cervical Cancer AJCC v6 and v7 10 19328 -NCIT:C6321 Stage IIIB Cervical Cancer AJCC v6 and v7 11 19329 -NCIT:C6322 Stage IIIA Cervical Cancer AJCC v6 and v7 11 19330 -NCIT:C9206 Stage IV Cervical Cancer AJCC v6 and v7 10 19331 -NCIT:C6323 Stage IVA Cervical Cancer AJCC v6 and v7 11 19332 -NCIT:C6324 Stage IVB Cervical Cancer AJCC v6 and v7 11 19333 -NCIT:C91208 Cervical Cancer by AJCC v7 Stage 9 19334 -NCIT:C89550 Stage 0 Cervical Cancer AJCC v7 10 19335 -NCIT:C4520 Cervical Adenocarcinoma In Situ 11 19336 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 12 19337 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 12 19338 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 11 19339 -NCIT:C89551 Stage II Cervical Cancer AJCC v7 10 19340 -NCIT:C6320 Stage IIB Cervical Cancer AJCC v6 and v7 11 19341 -NCIT:C89552 Stage IIA Cervical Cancer AJCC v7 11 19342 -NCIT:C95172 Stage IIA1 Cervical Cancer AJCC v7 12 19343 -NCIT:C95173 Stage IIA2 Cervical Cancer AJCC v7 12 19344 -NCIT:C9204 Stage I Cervical Cancer AJCC v6 and v7 10 19345 -NCIT:C6313 Stage IA Cervical Cancer AJCC v6 and v7 11 19346 -NCIT:C6314 Stage IA1 Cervical Cancer AJCC v6 and v7 12 19347 -NCIT:C6315 Stage IA2 Cervical Cancer AJCC v6 and v7 12 19348 -NCIT:C6316 Stage IB Cervical Cancer AJCC v6 and v7 11 19349 -NCIT:C6317 Stage IB1 Cervical Cancer AJCC v6 and v7 12 19350 -NCIT:C6318 Stage IB2 Cervical Cancer AJCC v6 and v7 12 19351 -NCIT:C9205 Stage III Cervical Cancer AJCC v6 and v7 10 19352 -NCIT:C6321 Stage IIIB Cervical Cancer AJCC v6 and v7 11 19353 -NCIT:C6322 Stage IIIA Cervical Cancer AJCC v6 and v7 11 19354 -NCIT:C9206 Stage IV Cervical Cancer AJCC v6 and v7 10 19355 -NCIT:C6323 Stage IVA Cervical Cancer AJCC v6 and v7 11 19356 -NCIT:C6324 Stage IVB Cervical Cancer AJCC v6 and v7 11 19357 -NCIT:C3555 Malignant Placental Neoplasm 6 19358 -NCIT:C8546 Metastatic Malignant Neoplasm in the Placenta 7 19359 -NCIT:C8893 Placental Choriocarcinoma 7 19360 -NCIT:C40017 Rete Ovarii Adenocarcinoma 6 19361 -NCIT:C4646 Gestational Choriocarcinoma 6 19362 -NCIT:C27246 Uterine Corpus Choriocarcinoma 7 19363 -NCIT:C40442 Ovarian Gestational Choriocarcinoma 7 19364 -NCIT:C6278 Fallopian Tube Gestational Choriocarcinoma 7 19365 -NCIT:C8893 Placental Choriocarcinoma 7 19366 -NCIT:C53994 Undifferentiated Stromal Sarcoma 6 19367 -NCIT:C40066 Ovarian Undifferentiated Sarcoma 7 19368 -NCIT:C40224 Endocervical Undifferentiated Sarcoma 7 19369 -NCIT:C40272 Vaginal Undifferentiated Sarcoma 7 19370 -NCIT:C8972 Uterine Corpus Undifferentiated Sarcoma 7 19371 -NCIT:C7410 Malignant Vaginal Neoplasm 6 19372 -NCIT:C27394 Vaginal Melanoma 7 19373 -NCIT:C3917 Vaginal Carcinoma 7 19374 -NCIT:C128073 Vaginal Neuroendocrine Carcinoma 8 19375 -NCIT:C128075 Vaginal Large Cell Neuroendocrine Carcinoma 9 19376 -NCIT:C40263 Vaginal Small Cell Neuroendocrine Carcinoma 9 19377 -NCIT:C139657 Vaginal Cancer by AJCC v8 Stage 8 19378 -NCIT:C139658 Stage I Vaginal Cancer AJCC v8 9 19379 -NCIT:C139659 Stage IA Vaginal Cancer AJCC v8 10 19380 -NCIT:C139660 Stage IB Vaginal Cancer AJCC v8 10 19381 -NCIT:C139661 Stage II Vaginal Cancer AJCC v8 9 19382 -NCIT:C139662 Stage IIA Vaginal Cancer AJCC v8 10 19383 -NCIT:C139664 Stage IIB Vaginal Cancer AJCC v8 10 19384 -NCIT:C139665 Stage III Vaginal Cancer AJCC v8 9 19385 -NCIT:C139667 Stage IV Vaginal Cancer AJCC v8 9 19386 -NCIT:C139669 Stage IVA Vaginal Cancer AJCC v8 10 19387 -NCIT:C139670 Stage IVB Vaginal Cancer AJCC v8 10 19388 -NCIT:C156065 Metastatic Vaginal Carcinoma 8 19389 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 9 19390 -NCIT:C170788 Advanced Vaginal Carcinoma 9 19391 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 10 19392 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 10 19393 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 10 19394 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 11 19395 -NCIT:C181028 Metastatic Vaginal Adenosquamous Carcinoma 9 19396 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 10 19397 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 9 19398 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 10 19399 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 11 19400 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 9 19401 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 10 19402 -NCIT:C174509 Refractory Vaginal Carcinoma 8 19403 -NCIT:C185303 Refractory Vaginal Squamous Cell Carcinoma 9 19404 -NCIT:C175434 Unresectable Vaginal Carcinoma 8 19405 -NCIT:C180915 Vaginal Squamous Cell Carcinoma 8 19406 -NCIT:C128060 Vaginal Papillary Carcinoma 9 19407 -NCIT:C180917 Human Papillomavirus-Related Vaginal Squamous Cell Carcinoma 9 19408 -NCIT:C40248 Vaginal Warty Carcinoma 10 19409 -NCIT:C180919 Human Papillomavirus-Independent Vaginal Squamous Cell Carcinoma 9 19410 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 9 19411 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 10 19412 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 11 19413 -NCIT:C185302 Recurrent Vaginal Squamous Cell Carcinoma 9 19414 -NCIT:C185303 Refractory Vaginal Squamous Cell Carcinoma 9 19415 -NCIT:C40243 Vaginal Keratinizing Squamous Cell Carcinoma 9 19416 -NCIT:C40244 Vaginal Non-Keratinizing Squamous Cell Carcinoma 9 19417 -NCIT:C40245 Vaginal Basaloid Carcinoma 9 19418 -NCIT:C6325 Vaginal Verrucous Carcinoma 9 19419 -NCIT:C7736 Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 19420 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 19421 -NCIT:C40260 Vaginal Adenosquamous Carcinoma 8 19422 -NCIT:C181028 Metastatic Vaginal Adenosquamous Carcinoma 9 19423 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 10 19424 -NCIT:C40261 Vaginal Adenoid Cystic Carcinoma 8 19425 -NCIT:C40262 Vaginal Adenoid Basal Carcinoma 8 19426 -NCIT:C40264 Vaginal Undifferentiated Carcinoma 8 19427 -NCIT:C7860 Recurrent Vaginal Carcinoma 8 19428 -NCIT:C185302 Recurrent Vaginal Squamous Cell Carcinoma 9 19429 -NCIT:C7981 Vaginal Adenocarcinoma 8 19430 -NCIT:C180943 Human Papillomavirus-Related Vaginal Adenocarcinoma 9 19431 -NCIT:C180947 Vaginal Adenocarcinoma of Skene Gland Origin 9 19432 -NCIT:C40251 Vaginal Endometrioid Adenocarcinoma 9 19433 -NCIT:C40252 Vaginal Mucinous Adenocarcinoma 9 19434 -NCIT:C180945 Vaginal Mucinous Adenocarcinoma, Gastric-Type 10 19435 -NCIT:C180946 Vaginal Mucinous Adenocarcinoma, Intestinal-Type 10 19436 -NCIT:C40253 Vaginal Mesonephric Adenocarcinoma 9 19437 -NCIT:C7735 Vaginal Clear Cell Adenocarcinoma 9 19438 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 9 19439 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 10 19440 -NCIT:C90347 Vaginal Cancer by AJCC v6 Stage 8 19441 -NCIT:C7597 Stage IV Vaginal Cancer AJCC v6 and v7 9 19442 -NCIT:C7859 Stage IVA Vaginal Cancer AJCC v6 and v7 10 19443 -NCIT:C9355 Stage IVB Vaginal Cancer AJCC v6 and v7 10 19444 -NCIT:C7855 Stage 0 Vaginal Cancer AJCC v6 9 19445 -NCIT:C7856 Stage I Vaginal Cancer AJCC v6 and v7 9 19446 -NCIT:C7857 Stage II Vaginal Cancer AJCC v6 and v7 9 19447 -NCIT:C7858 Stage III Vaginal Cancer AJCC v6 and v7 9 19448 -NCIT:C91204 Vaginal Cancer by AJCC v7 Stage 8 19449 -NCIT:C7597 Stage IV Vaginal Cancer AJCC v6 and v7 9 19450 -NCIT:C7859 Stage IVA Vaginal Cancer AJCC v6 and v7 10 19451 -NCIT:C9355 Stage IVB Vaginal Cancer AJCC v6 and v7 10 19452 -NCIT:C7856 Stage I Vaginal Cancer AJCC v6 and v7 9 19453 -NCIT:C7857 Stage II Vaginal Cancer AJCC v6 and v7 9 19454 -NCIT:C7858 Stage III Vaginal Cancer AJCC v6 and v7 9 19455 -NCIT:C89476 Stage 0 Vaginal Cancer AJCC v7 9 19456 -NCIT:C40276 Malignant Vaginal Mixed Epithelial and Mesenchymal Neoplasm 7 19457 -NCIT:C40277 Vaginal Adenosarcoma 8 19458 -NCIT:C40278 Vaginal Carcinosarcoma 8 19459 -NCIT:C40279 Malignant Vaginal Mixed Tumor Resembling Synovial Sarcoma 8 19460 -NCIT:C6333 Metastatic Malignant Neoplasm in the Vagina 7 19461 -NCIT:C6379 Vaginal Yolk Sac Tumor 7 19462 -NCIT:C7737 Vaginal Sarcoma 7 19463 -NCIT:C128080 Vaginal Rhabdomyosarcoma 8 19464 -NCIT:C40268 Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 9 19465 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 19466 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 19467 -NCIT:C40271 Vaginal Low Grade Endometrioid Stromal Sarcoma 8 19468 -NCIT:C40272 Vaginal Undifferentiated Sarcoma 8 19469 -NCIT:C40277 Vaginal Adenosarcoma 8 19470 -NCIT:C6326 Vaginal Leiomyosarcoma 8 19471 -NCIT:C7431 Malignant Ovarian Neoplasm 6 19472 -NCIT:C165261 Solid Pseudopapillary Neoplasm of the Ovary 7 19473 -NCIT:C178441 Ovarian Melanoma 7 19474 -NCIT:C179474 Ovarian Neuroectodermal-Type Tumor 7 19475 -NCIT:C190659 Childhood Malignant Ovarian Neoplasm 7 19476 -NCIT:C171169 Extrarenal Rhabdoid Tumor of the Ovary 8 19477 -NCIT:C171170 Recurrent Extrarenal Rhabdoid Tumor of the Ovary 9 19478 -NCIT:C171171 Refractory Extrarenal Rhabdoid Tumor of the Ovary 9 19479 -NCIT:C189334 Childhood Ovarian Small Cell Carcinoma, Hypercalcemic Type 8 19480 -NCIT:C68629 Childhood Malignant Ovarian Germ Cell Tumor 8 19481 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 9 19482 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 9 19483 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 9 19484 -NCIT:C6550 Childhood Ovarian Dysgerminoma 9 19485 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 9 19486 -NCIT:C40021 Ovarian Lymphoma 7 19487 -NCIT:C40026 Malignant Ovarian Epithelial Tumor 7 19488 -NCIT:C40025 Malignant Ovarian Serous Tumor 8 19489 -NCIT:C67092 Ovarian Serous Adenocarcinofibroma 9 19490 -NCIT:C7550 Ovarian Serous Adenocarcinoma 9 19491 -NCIT:C105555 Ovarian High Grade Serous Adenocarcinoma 10 19492 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 11 19493 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 11 19494 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 11 19495 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 19496 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 11 19497 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 19498 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 12 19499 -NCIT:C105556 Ovarian Low Grade Serous Adenocarcinoma 10 19500 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 11 19501 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 11 19502 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 10 19503 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 11 19504 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 11 19505 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 11 19506 -NCIT:C160781 Unresectable Ovarian Serous Adenocarcinoma 10 19507 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 11 19508 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 19509 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 10 19510 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 11 19511 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 12 19512 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 12 19513 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 11 19514 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 19515 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 12 19516 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 11 19517 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 12 19518 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 12 19519 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 11 19520 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 12 19521 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 19522 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 10 19523 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 11 19524 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 11 19525 -NCIT:C6256 Ovarian Serous Surface Papillary Adenocarcinoma 10 19526 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 10 19527 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 11 19528 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 12 19529 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 12 19530 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 11 19531 -NCIT:C40033 Malignant Ovarian Mucinous Tumor 8 19532 -NCIT:C40034 Ovarian Mucinous Adenocarcinofibroma 9 19533 -NCIT:C5243 Ovarian Mucinous Adenocarcinoma 9 19534 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 10 19535 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 10 19536 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 10 19537 -NCIT:C183245 Unresectable Ovarian Mucinous Adenocarcinoma 10 19538 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 10 19539 -NCIT:C40051 Malignant Ovarian Endometrioid Tumor 8 19540 -NCIT:C7979 Ovarian Endometrioid Adenocarcinoma 9 19541 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 10 19542 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 10 19543 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 10 19544 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 11 19545 -NCIT:C186273 Unresectable Ovarian Endometrioid Adenocarcinoma 10 19546 -NCIT:C40061 Ovarian Endometrioid Adenocarcinoma with Squamous Differentiation 10 19547 -NCIT:C9192 Ovarian Carcinosarcoma 9 19548 -NCIT:C153347 Recurrent Ovarian Carcinosarcoma 10 19549 -NCIT:C170933 Metastatic Ovarian Carcinosarcoma 10 19550 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 11 19551 -NCIT:C40077 Malignant Ovarian Clear Cell Tumor 8 19552 -NCIT:C40078 Ovarian Clear Cell Adenocarcinoma 9 19553 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 10 19554 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 10 19555 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 11 19556 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 10 19557 -NCIT:C7980 Ovarian Clear Cell Cystadenocarcinoma 10 19558 -NCIT:C40079 Ovarian Clear Cell Adenocarcinofibroma 9 19559 -NCIT:C4908 Ovarian Carcinoma 8 19560 -NCIT:C128081 Ovarian Cancer by FIGO Stage 9 19561 -NCIT:C128082 FIGO Stage IC1 Ovarian Cancer 10 19562 -NCIT:C128083 FIGO Stage IC2 Ovarian Cancer 10 19563 -NCIT:C128084 FIGO Stage IC3 Ovarian Cancer 10 19564 -NCIT:C128085 FIGO Stage II Ovarian Cancer 10 19565 -NCIT:C5223 Stage IIA Ovarian Cancer AJCC V6 and v7 11 19566 -NCIT:C5224 Stage IIB Ovarian Cancer AJCC v6 and v7 11 19567 -NCIT:C128086 FIGO Stage III Ovarian Cancer 10 19568 -NCIT:C128087 FIGO Stage IIIA Ovarian Cancer 11 19569 -NCIT:C128088 FIGO Stage IIIA1 Ovarian Cancer 12 19570 -NCIT:C128089 FIGO Stage IIIA1(i) Ovarian Cancer 13 19571 -NCIT:C128090 FIGO Stage IIIA1(ii) Ovarian Cancer 13 19572 -NCIT:C128091 FIGO Stage IIIA2 Ovarian Cancer 12 19573 -NCIT:C128092 FIGO Stage IIIB Ovarian Cancer 11 19574 -NCIT:C128093 FIGO Stage IIIC Ovarian Cancer 11 19575 -NCIT:C128094 FIGO Stage IVA Ovarian Cancer 10 19576 -NCIT:C128095 FIGO Stage IVB Ovarian Cancer 10 19577 -NCIT:C7829 Stage I Ovarian Cancer AJCC v6 and v7 10 19578 -NCIT:C5220 Stage IA Ovarian Cancer AJCC v6 and v7 11 19579 -NCIT:C5221 Stage IB Ovarian Cancer AJCC v6 and v7 11 19580 -NCIT:C5222 Stage IC Ovarian Cancer AJCC v6 and v7 11 19581 -NCIT:C7832 Stage IV Ovarian Cancer AJCC v6 and v7 10 19582 -NCIT:C128106 Ovarian Cancer by AJCC v6 and v7 Stage 9 19583 -NCIT:C7829 Stage I Ovarian Cancer AJCC v6 and v7 10 19584 -NCIT:C5220 Stage IA Ovarian Cancer AJCC v6 and v7 11 19585 -NCIT:C5221 Stage IB Ovarian Cancer AJCC v6 and v7 11 19586 -NCIT:C5222 Stage IC Ovarian Cancer AJCC v6 and v7 11 19587 -NCIT:C7830 Stage II Ovarian Cancer AJCC v6 and v7 10 19588 -NCIT:C5223 Stage IIA Ovarian Cancer AJCC V6 and v7 11 19589 -NCIT:C5224 Stage IIB Ovarian Cancer AJCC v6 and v7 11 19590 -NCIT:C5225 Stage IIC Ovarian Cancer AJCC v6 and v7 11 19591 -NCIT:C7831 Stage III Ovarian Cancer AJCC v6 and v7 10 19592 -NCIT:C6258 Stage IIIA Ovarian Cancer AJCC v6 and v7 11 19593 -NCIT:C6259 Stage IIIB Ovarian Cancer AJCC v6 and v7 11 19594 -NCIT:C6260 Stage IIIC Ovarian Cancer AJCC v6 and v7 11 19595 -NCIT:C7832 Stage IV Ovarian Cancer AJCC v6 and v7 10 19596 -NCIT:C139963 Ovarian Cancer by AJCC v8 Stage 9 19597 -NCIT:C139964 Stage I Ovarian Cancer AJCC v8 10 19598 -NCIT:C139965 Stage IA Ovarian Cancer AJCC v8 11 19599 -NCIT:C139966 Stage IB Ovarian Cancer AJCC v8 11 19600 -NCIT:C139967 Stage IC Ovarian Cancer AJCC v8 11 19601 -NCIT:C139968 Stage II Ovarian Cancer AJCC v8 10 19602 -NCIT:C139969 Stage IIA Ovarian Cancer AJCC v8 11 19603 -NCIT:C139970 Stage IIB Ovarian Cancer AJCC v8 11 19604 -NCIT:C139971 Stage III Ovarian Cancer AJCC v8 10 19605 -NCIT:C139972 Stage IIIA Ovarian Cancer AJCC v8 11 19606 -NCIT:C139973 Stage IIIA1 Ovarian Cancer AJCC v8 12 19607 -NCIT:C139974 Stage IIIA2 Ovarian Cancer AJCC v8 12 19608 -NCIT:C139975 Stage IIIB Ovarian Cancer AJCC v8 11 19609 -NCIT:C139976 Stage IIIC Ovarian Cancer AJCC v8 11 19610 -NCIT:C139977 Stage IV Ovarian Cancer AJCC v8 10 19611 -NCIT:C139978 Stage IVA Ovarian Cancer AJCC v8 11 19612 -NCIT:C139979 Stage IVB Ovarian Cancer AJCC v8 11 19613 -NCIT:C150091 Refractory Ovarian Carcinoma 9 19614 -NCIT:C147561 Platinum-Resistant Ovarian Carcinoma 10 19615 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 11 19616 -NCIT:C179459 Unresectable Platinum-Resistant Ovarian Carcinoma 11 19617 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 11 19618 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 12 19619 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 12 19620 -NCIT:C170968 Refractory Ovarian Adenocarcinoma 10 19621 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 11 19622 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 11 19623 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 12 19624 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 12 19625 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 11 19626 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 11 19627 -NCIT:C178671 Refractory Ovarian Seromucinous Carcinoma 10 19628 -NCIT:C178682 Refractory Ovarian Transitional Cell Carcinoma 10 19629 -NCIT:C178683 Refractory Ovarian Undifferentiated Carcinoma 10 19630 -NCIT:C178700 Platinum-Refractory Ovarian Carcinoma 10 19631 -NCIT:C179207 Refractory Ovarian Squamous Cell Carcinoma 10 19632 -NCIT:C183126 Refractory Malignant Ovarian Brenner Tumor 10 19633 -NCIT:C156064 Metastatic Ovarian Carcinoma 9 19634 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 10 19635 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 11 19636 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 12 19637 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 12 19638 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 11 19639 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 19640 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 12 19641 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 11 19642 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 12 19643 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 12 19644 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 11 19645 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 12 19646 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 19647 -NCIT:C165458 Advanced Ovarian Carcinoma 10 19648 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 11 19649 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 12 19650 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 12 19651 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 11 19652 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 11 19653 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 11 19654 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 11 19655 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 10 19656 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 11 19657 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 12 19658 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 19659 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 11 19660 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 10 19661 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 11 19662 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 10 19663 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 11 19664 -NCIT:C172234 Metastatic Ovarian Undifferentiated Carcinoma 10 19665 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 10 19666 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 11 19667 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 11 19668 -NCIT:C180333 Metastatic Microsatellite Stable Ovarian Carcinoma 10 19669 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 11 19670 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 10 19671 -NCIT:C27391 Metastatic Ovarian Small Cell Carcinoma, Hypercalcemic Type 10 19672 -NCIT:C159902 Platinum-Sensitive Ovarian Carcinoma 9 19673 -NCIT:C188391 Recurrent Platinum-Sensitive Ovarian Carcinoma 10 19674 -NCIT:C167073 Unresectable Ovarian Carcinoma 9 19675 -NCIT:C160781 Unresectable Ovarian Serous Adenocarcinoma 10 19676 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 11 19677 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 19678 -NCIT:C172235 Unresectable Ovarian Undifferentiated Carcinoma 10 19679 -NCIT:C179459 Unresectable Platinum-Resistant Ovarian Carcinoma 10 19680 -NCIT:C183245 Unresectable Ovarian Mucinous Adenocarcinoma 10 19681 -NCIT:C186273 Unresectable Ovarian Endometrioid Adenocarcinoma 10 19682 -NCIT:C171032 Ovarian Neuroendocrine Carcinoma 9 19683 -NCIT:C40440 Ovarian Small Cell Carcinoma, Pulmonary-Type 10 19684 -NCIT:C5238 Ovarian Large Cell Neuroendocrine Carcinoma 10 19685 -NCIT:C179334 Ovarian Dedifferentiated Carcinoma 9 19686 -NCIT:C180332 Microsatellite Stable Ovarian Carcinoma 9 19687 -NCIT:C180333 Metastatic Microsatellite Stable Ovarian Carcinoma 10 19688 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 11 19689 -NCIT:C27390 Ovarian Small Cell Carcinoma 9 19690 -NCIT:C40439 Ovarian Small Cell Carcinoma, Hypercalcemic Type 10 19691 -NCIT:C189334 Childhood Ovarian Small Cell Carcinoma, Hypercalcemic Type 11 19692 -NCIT:C27391 Metastatic Ovarian Small Cell Carcinoma, Hypercalcemic Type 11 19693 -NCIT:C40440 Ovarian Small Cell Carcinoma, Pulmonary-Type 10 19694 -NCIT:C36102 Hereditary Ovarian Carcinoma 9 19695 -NCIT:C148024 BRCA-Associated Ovarian Carcinoma 10 19696 -NCIT:C148025 Recurrent BRCA- Associated Ovarian Carcinoma 11 19697 -NCIT:C40090 Ovarian Seromucinous Carcinoma 9 19698 -NCIT:C178669 Recurrent Ovarian Seromucinous Carcinoma 10 19699 -NCIT:C178671 Refractory Ovarian Seromucinous Carcinoma 10 19700 -NCIT:C40093 Ovarian Squamous Cell Carcinoma 9 19701 -NCIT:C179207 Refractory Ovarian Squamous Cell Carcinoma 10 19702 -NCIT:C4270 Malignant Ovarian Brenner Tumor 9 19703 -NCIT:C153818 Recurrent Malignant Ovarian Brenner Tumor 10 19704 -NCIT:C183126 Refractory Malignant Ovarian Brenner Tumor 10 19705 -NCIT:C4509 Ovarian Undifferentiated Carcinoma 9 19706 -NCIT:C170754 Recurrent Ovarian Undifferentiated Carcinoma 10 19707 -NCIT:C172234 Metastatic Ovarian Undifferentiated Carcinoma 10 19708 -NCIT:C172235 Unresectable Ovarian Undifferentiated Carcinoma 10 19709 -NCIT:C178683 Refractory Ovarian Undifferentiated Carcinoma 10 19710 -NCIT:C5240 Ovarian Transitional Cell Carcinoma 9 19711 -NCIT:C153819 Recurrent Ovarian Transitional Cell Carcinoma 10 19712 -NCIT:C178682 Refractory Ovarian Transitional Cell Carcinoma 10 19713 -NCIT:C7700 Ovarian Adenocarcinoma 9 19714 -NCIT:C153614 Recurrent Ovarian Adenocarcinoma 10 19715 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 11 19716 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 11 19717 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 12 19718 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 12 19719 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 12 19720 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 11 19721 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 11 19722 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 12 19723 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 11 19724 -NCIT:C170968 Refractory Ovarian Adenocarcinoma 10 19725 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 11 19726 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 11 19727 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 12 19728 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 12 19729 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 11 19730 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 11 19731 -NCIT:C179208 Ovarian Signet Ring Cell Carcinoma 10 19732 -NCIT:C179321 Ovarian Mesonephric-Like Adenocarcinoma 10 19733 -NCIT:C179339 Ovarian Mixed Cell Adenocarcinoma 10 19734 -NCIT:C40078 Ovarian Clear Cell Adenocarcinoma 10 19735 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 11 19736 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 11 19737 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 12 19738 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 11 19739 -NCIT:C7980 Ovarian Clear Cell Cystadenocarcinoma 11 19740 -NCIT:C5228 Ovarian Cystadenocarcinoma 10 19741 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 11 19742 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 12 19743 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 11 19744 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 11 19745 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 12 19746 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 13 19747 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 13 19748 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 12 19749 -NCIT:C7980 Ovarian Clear Cell Cystadenocarcinoma 11 19750 -NCIT:C5243 Ovarian Mucinous Adenocarcinoma 10 19751 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 11 19752 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 11 19753 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 11 19754 -NCIT:C183245 Unresectable Ovarian Mucinous Adenocarcinoma 11 19755 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 11 19756 -NCIT:C7550 Ovarian Serous Adenocarcinoma 10 19757 -NCIT:C105555 Ovarian High Grade Serous Adenocarcinoma 11 19758 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 12 19759 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 12 19760 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 12 19761 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 13 19762 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 12 19763 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 13 19764 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 13 19765 -NCIT:C105556 Ovarian Low Grade Serous Adenocarcinoma 11 19766 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 12 19767 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 12 19768 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 11 19769 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 12 19770 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 12 19771 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 12 19772 -NCIT:C160781 Unresectable Ovarian Serous Adenocarcinoma 11 19773 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 12 19774 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 13 19775 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 11 19776 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 12 19777 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 13 19778 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 13 19779 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 12 19780 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 13 19781 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 13 19782 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 12 19783 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 13 19784 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 13 19785 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 12 19786 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 13 19787 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 13 19788 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 11 19789 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 12 19790 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 12 19791 -NCIT:C6256 Ovarian Serous Surface Papillary Adenocarcinoma 11 19792 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 11 19793 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 12 19794 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 13 19795 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 13 19796 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 12 19797 -NCIT:C7979 Ovarian Endometrioid Adenocarcinoma 10 19798 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 11 19799 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 11 19800 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 11 19801 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 12 19802 -NCIT:C186273 Unresectable Ovarian Endometrioid Adenocarcinoma 11 19803 -NCIT:C40061 Ovarian Endometrioid Adenocarcinoma with Squamous Differentiation 11 19804 -NCIT:C7833 Recurrent Ovarian Carcinoma 9 19805 -NCIT:C148025 Recurrent BRCA- Associated Ovarian Carcinoma 10 19806 -NCIT:C153614 Recurrent Ovarian Adenocarcinoma 10 19807 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 11 19808 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 11 19809 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 12 19810 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 12 19811 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 12 19812 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 11 19813 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 11 19814 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 12 19815 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 11 19816 -NCIT:C153818 Recurrent Malignant Ovarian Brenner Tumor 10 19817 -NCIT:C153819 Recurrent Ovarian Transitional Cell Carcinoma 10 19818 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 10 19819 -NCIT:C170754 Recurrent Ovarian Undifferentiated Carcinoma 10 19820 -NCIT:C178669 Recurrent Ovarian Seromucinous Carcinoma 10 19821 -NCIT:C188391 Recurrent Platinum-Sensitive Ovarian Carcinoma 10 19822 -NCIT:C190201 Locally Recurrent Ovarian Carcinoma 10 19823 -NCIT:C40035 Adenocarcinofibroma 7 19824 -NCIT:C40034 Ovarian Mucinous Adenocarcinofibroma 8 19825 -NCIT:C40079 Ovarian Clear Cell Adenocarcinofibroma 8 19826 -NCIT:C67092 Ovarian Serous Adenocarcinofibroma 8 19827 -NCIT:C40443 Ovarian Wilms Tumor 7 19828 -NCIT:C40444 Ovarian Malignant Mesothelioma 7 19829 -NCIT:C4514 Malignant Ovarian Germ Cell Tumor 7 19830 -NCIT:C39986 Ovarian Primitive Germ Cell Tumor 8 19831 -NCIT:C102870 Ovarian Non-Dysgerminomatous Germ Cell Tumor 9 19832 -NCIT:C39990 Ovarian Polyembryoma 10 19833 -NCIT:C8739 Stage I Ovarian Polyembryoma AJCC v6 and v7 11 19834 -NCIT:C8740 Stage II Ovarian Polyembryoma AJCC v6 and v7 11 19835 -NCIT:C8741 Stage III Ovarian Polyembryoma AJCC v6 and v7 11 19836 -NCIT:C8742 Stage IV Ovarian Polyembryoma AJCC v6 and v7 11 19837 -NCIT:C39991 Non-Gestational Ovarian Choriocarcinoma 10 19838 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 11 19839 -NCIT:C8107 Ovarian Yolk Sac Tumor 10 19840 -NCIT:C39987 Ovarian Yolk Sac Tumor, Polyvesicular Vitelline Pattern 11 19841 -NCIT:C39988 Ovarian Yolk Sac Tumor, Glandular Pattern 11 19842 -NCIT:C39989 Ovarian Yolk Sac Tumor, Hepatoid Pattern 11 19843 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 11 19844 -NCIT:C8735 Stage I Ovarian Yolk Sac Tumor AJCC v6 and v7 11 19845 -NCIT:C8736 Stage II Ovarian Yolk Sac Tumor AJCC v6 and v7 11 19846 -NCIT:C8737 Stage III Ovarian Yolk Sac Tumor AJCC v6 and v7 11 19847 -NCIT:C8738 Stage IV Ovarian Yolk Sac Tumor AJCC v6 and v7 11 19848 -NCIT:C8108 Ovarian Embryonal Carcinoma 10 19849 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 11 19850 -NCIT:C8725 Stage II Ovarian Embryonal Carcinoma AJCC v6 and v7 11 19851 -NCIT:C8728 Stage III Ovarian Embryonal Carcinoma AJCC v6 and v7 11 19852 -NCIT:C8729 Stage IV Ovarian Embryonal Carcinoma AJCC v6 and v7 11 19853 -NCIT:C8734 Stage I Ovarian Embryonal Carcinoma AJCC v6 and v7 11 19854 -NCIT:C8106 Ovarian Dysgerminoma 9 19855 -NCIT:C6550 Childhood Ovarian Dysgerminoma 10 19856 -NCIT:C8723 Stage I Ovarian Dysgerminoma AJCC v6 and v7 10 19857 -NCIT:C8724 Stage II Ovarian Dysgerminoma AJCC v6 and v7 10 19858 -NCIT:C8726 Stage III Ovarian Dysgerminoma AJCC v6 and v7 10 19859 -NCIT:C8727 Stage IV Ovarian Dysgerminoma AJCC v6 and v7 10 19860 -NCIT:C8114 Ovarian Mixed Germ Cell Tumor 9 19861 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 10 19862 -NCIT:C39995 Malignant Ovarian Teratoma 8 19863 -NCIT:C4291 Thyroid Carcinoma Arising in Struma Ovarii 8 19864 -NCIT:C68629 Childhood Malignant Ovarian Germ Cell Tumor 8 19865 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 9 19866 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 9 19867 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 9 19868 -NCIT:C6550 Childhood Ovarian Dysgerminoma 9 19869 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 9 19870 -NCIT:C8083 Stage I Ovarian Germ Cell Tumor AJCC v6 and v7 8 19871 -NCIT:C6291 Stage IA Ovarian Germ Cell Tumor AJCC v6 and v7 9 19872 -NCIT:C6292 Stage IB Ovarian Germ Cell Tumor AJCC v6 and v7 9 19873 -NCIT:C6293 Stage IC Ovarian Germ Cell Tumor AJCC v6 and v7 9 19874 -NCIT:C8723 Stage I Ovarian Dysgerminoma AJCC v6 and v7 9 19875 -NCIT:C8734 Stage I Ovarian Embryonal Carcinoma AJCC v6 and v7 9 19876 -NCIT:C8735 Stage I Ovarian Yolk Sac Tumor AJCC v6 and v7 9 19877 -NCIT:C8739 Stage I Ovarian Polyembryoma AJCC v6 and v7 9 19878 -NCIT:C8743 Stage I Ovarian Teratoma AJCC v6 and v7 9 19879 -NCIT:C8084 Stage II Ovarian Germ Cell Tumor AJCC v6 and v7 8 19880 -NCIT:C6294 Stage IIC Ovarian Germ Cell Tumor AJCC v6 and v7 9 19881 -NCIT:C6295 Stage IIB Ovarian Germ Cell Tumor AJCC v6 and v7 9 19882 -NCIT:C6296 Stage IIA Ovarian Germ Cell Tumor AJCC v6 and v7 9 19883 -NCIT:C8724 Stage II Ovarian Dysgerminoma AJCC v6 and v7 9 19884 -NCIT:C8725 Stage II Ovarian Embryonal Carcinoma AJCC v6 and v7 9 19885 -NCIT:C8736 Stage II Ovarian Yolk Sac Tumor AJCC v6 and v7 9 19886 -NCIT:C8740 Stage II Ovarian Polyembryoma AJCC v6 and v7 9 19887 -NCIT:C8744 Stage II Ovarian Teratoma AJCC v6 and v7 9 19888 -NCIT:C8085 Stage III Ovarian Germ Cell Tumor AJCC v6 and v7 8 19889 -NCIT:C6297 Stage IIIA Ovarian Germ Cell Tumor AJCC v6 and v7 9 19890 -NCIT:C6298 Stage IIIB Ovarian Germ Cell Tumor AJCC v6 and v7 9 19891 -NCIT:C6299 Stage IIIC Ovarian Germ Cell Tumor AJCC v6 and v7 9 19892 -NCIT:C8726 Stage III Ovarian Dysgerminoma AJCC v6 and v7 9 19893 -NCIT:C8728 Stage III Ovarian Embryonal Carcinoma AJCC v6 and v7 9 19894 -NCIT:C8737 Stage III Ovarian Yolk Sac Tumor AJCC v6 and v7 9 19895 -NCIT:C8741 Stage III Ovarian Polyembryoma AJCC v6 and v7 9 19896 -NCIT:C8745 Stage III Ovarian Teratoma AJCC v6 and v7 9 19897 -NCIT:C8086 Stage IV Ovarian Germ Cell Tumor AJCC v6 and v7 8 19898 -NCIT:C8727 Stage IV Ovarian Dysgerminoma AJCC v6 and v7 9 19899 -NCIT:C8729 Stage IV Ovarian Embryonal Carcinoma AJCC v6 and v7 9 19900 -NCIT:C8738 Stage IV Ovarian Yolk Sac Tumor AJCC v6 and v7 9 19901 -NCIT:C8742 Stage IV Ovarian Polyembryoma AJCC v6 and v7 9 19902 -NCIT:C8746 Stage IV Ovarian Teratoma AJCC v6 and v7 9 19903 -NCIT:C8087 Recurrent Ovarian Germ Cell Tumor 8 19904 -NCIT:C4515 Ovarian Choriocarcinoma 7 19905 -NCIT:C39991 Non-Gestational Ovarian Choriocarcinoma 8 19906 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 9 19907 -NCIT:C40442 Ovarian Gestational Choriocarcinoma 8 19908 -NCIT:C8730 Stage I Ovarian Choriocarcinoma 8 19909 -NCIT:C8731 Stage II Ovarian Choriocarcinoma 8 19910 -NCIT:C8732 Stage III Ovarian Choriocarcinoma 8 19911 -NCIT:C8733 Stage IV Ovarian Choriocarcinoma 8 19912 -NCIT:C7456 Metastatic Malignant Neoplasm in the Ovary 7 19913 -NCIT:C3153 Krukenberg Tumor 8 19914 -NCIT:C8053 Malignant Ovarian Sex Cord-Stromal Tumor 7 19915 -NCIT:C39981 Malignant Ovarian Steroid Cell Tumor 8 19916 -NCIT:C4210 Poorly Differentiated Ovarian Sertoli-Leydig Cell Tumor 8 19917 -NCIT:C39973 Poorly Differentiated Ovarian Sertoli-Leydig Cell Tumor, Variant with Heterologous Elements 9 19918 -NCIT:C6929 Malignant Ovarian Thecoma 8 19919 -NCIT:C6263 Malignant Ovarian Luteinized Thecoma 9 19920 -NCIT:C8403 Malignant Ovarian Granulosa Cell Tumor 8 19921 -NCIT:C160619 Recurrent Malignant Ovarian Granulosa Cell Tumor 9 19922 -NCIT:C8267 Ovarian Sarcoma 7 19923 -NCIT:C40063 Ovarian Low Grade Endometrioid Stromal Sarcoma 8 19924 -NCIT:C40066 Ovarian Undifferentiated Sarcoma 8 19925 -NCIT:C5232 Ovarian Angiosarcoma 8 19926 -NCIT:C5233 Ovarian Fibrosarcoma 8 19927 -NCIT:C5234 Ovarian Leiomyosarcoma 8 19928 -NCIT:C5236 Ovarian Rhabdomyosarcoma 8 19929 -NCIT:C6419 Ovarian Liposarcoma 8 19930 -NCIT:C5235 Ovarian Myxoid Liposarcoma 9 19931 -NCIT:C7317 Ovarian Adenosarcoma 8 19932 -NCIT:C7480 Malignant Fallopian Tube Neoplasm 6 19933 -NCIT:C126464 Fallopian Tube Lymphoma 7 19934 -NCIT:C3867 Fallopian Tube Carcinoma 7 19935 -NCIT:C115429 Recurrent Fallopian Tube Carcinoma 8 19936 -NCIT:C170750 Recurrent Platinum-Resistant Fallopian Tube Carcinoma 9 19937 -NCIT:C170755 Recurrent Fallopian Tube Undifferentiated Carcinoma 9 19938 -NCIT:C170757 Recurrent Fallopian Tube Transitional Cell Carcinoma 9 19939 -NCIT:C170766 Recurrent Fallopian Tube Adenocarcinoma 9 19940 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 10 19941 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 10 19942 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 10 19943 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 10 19944 -NCIT:C191395 Recurrent Platinum-Sensitive Fallopian Tube Carcinoma 9 19945 -NCIT:C139983 Fallopian Tube Cancer by AJCC v8 Stage 8 19946 -NCIT:C139984 Stage I Fallopian Tube Cancer AJCC v8 9 19947 -NCIT:C139985 Stage IA Fallopian Tube Cancer AJCC v8 10 19948 -NCIT:C139986 Stage IB Fallopian Tube Cancer AJCC v8 10 19949 -NCIT:C139987 Stage IC Fallopian Tube Cancer AJCC v8 10 19950 -NCIT:C139988 Stage II Fallopian Tube Cancer AJCC v8 9 19951 -NCIT:C139989 Stage IIA Fallopian Tube Cancer AJCC v8 10 19952 -NCIT:C139990 Stage IIB Fallopian Tube Cancer AJCC v8 10 19953 -NCIT:C139991 Stage III Fallopian Tube Cancer AJCC v8 9 19954 -NCIT:C139992 Stage IIIA Fallopian Tube Cancer AJCC v8 10 19955 -NCIT:C139993 Stage IIIA1 Fallopian Tube Cancer AJCC v8 11 19956 -NCIT:C139994 Stage IIIA2 Fallopian Tube Cancer AJCC v8 11 19957 -NCIT:C139995 Stage IIIB Fallopian Tube Cancer AJCC v8 10 19958 -NCIT:C139996 Stage IIIC Fallopian Tube Cancer AJCC v8 10 19959 -NCIT:C139997 Stage IV Fallopian Tube Cancer AJCC v8 9 19960 -NCIT:C139998 Stage IVA Fallopian Tube Cancer AJCC v8 10 19961 -NCIT:C139999 Stage IVB Fallopian Tube Cancer AJCC v8 10 19962 -NCIT:C152047 Refractory Fallopian Tube Carcinoma 8 19963 -NCIT:C157621 Platinum-Resistant Fallopian Tube Carcinoma 9 19964 -NCIT:C170750 Recurrent Platinum-Resistant Fallopian Tube Carcinoma 10 19965 -NCIT:C170971 Refractory Fallopian Tube Adenocarcinoma 9 19966 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 10 19967 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 10 19968 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 10 19969 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 10 19970 -NCIT:C178674 Refractory Fallopian Tube Transitional Cell Carcinoma 9 19971 -NCIT:C178675 Refractory Fallopian Tube Undifferentiated Carcinoma 9 19972 -NCIT:C178698 Platinum-Refractory Fallopian Tube Carcinoma 9 19973 -NCIT:C156063 Metastatic Fallopian Tube Carcinoma 8 19974 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 9 19975 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 10 19976 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 9 19977 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 9 19978 -NCIT:C160873 Platinum-Sensitive Fallopian Tube Carcinoma 8 19979 -NCIT:C191395 Recurrent Platinum-Sensitive Fallopian Tube Carcinoma 9 19980 -NCIT:C170969 Unresectable Fallopian Tube Carcinoma 8 19981 -NCIT:C170970 Unresectable Fallopian Tube Adenocarcinoma 9 19982 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 10 19983 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 10 19984 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 9 19985 -NCIT:C40104 Fallopian Tube Transitional Cell Carcinoma 8 19986 -NCIT:C170757 Recurrent Fallopian Tube Transitional Cell Carcinoma 9 19987 -NCIT:C178674 Refractory Fallopian Tube Transitional Cell Carcinoma 9 19988 -NCIT:C40455 Hereditary Fallopian Tube Carcinoma 8 19989 -NCIT:C6265 Fallopian Tube Adenocarcinoma 8 19990 -NCIT:C170766 Recurrent Fallopian Tube Adenocarcinoma 9 19991 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 10 19992 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 10 19993 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 10 19994 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 10 19995 -NCIT:C170970 Unresectable Fallopian Tube Adenocarcinoma 9 19996 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 10 19997 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 10 19998 -NCIT:C170971 Refractory Fallopian Tube Adenocarcinoma 9 19999 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 10 20000 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 10 20001 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 10 20002 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 10 20003 -NCIT:C40099 Fallopian Tube Serous Adenocarcinoma 9 20004 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 10 20005 -NCIT:C126456 Fallopian Tube High Grade Serous Adenocarcinoma 10 20006 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 11 20007 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 11 20008 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 11 20009 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 11 20010 -NCIT:C40103 Fallopian Tube Mucinous Adenocarcinoma 9 20011 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 10 20012 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 10 20013 -NCIT:C40105 Stage 0 Fallopian Tube Cancer AJCC v7 9 20014 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 10 20015 -NCIT:C6279 Fallopian Tube Endometrioid Adenocarcinoma 9 20016 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 10 20017 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 10 20018 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 10 20019 -NCIT:C6280 Fallopian Tube Clear Cell Adenocarcinoma 9 20020 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 10 20021 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 10 20022 -NCIT:C6278 Fallopian Tube Gestational Choriocarcinoma 8 20023 -NCIT:C6281 Fallopian Tube Undifferentiated Carcinoma 8 20024 -NCIT:C170755 Recurrent Fallopian Tube Undifferentiated Carcinoma 9 20025 -NCIT:C178675 Refractory Fallopian Tube Undifferentiated Carcinoma 9 20026 -NCIT:C6282 Fallopian Tube Squamous Cell Carcinoma 8 20027 -NCIT:C90499 Fallopian Tube Cancer by AJCC v6 Stage 8 20028 -NCIT:C8720 Stage I Fallopian Tube Cancer AJCC v6 and v7 9 20029 -NCIT:C6269 Stage IA Fallopian Tube Cancer AJCC v6 and v7 10 20030 -NCIT:C6270 Stage IB Fallopian Tube Cancer AJCC v6 and v7 10 20031 -NCIT:C6271 Stage IC Fallopian Tube Cancer AJCC v6 and v7 10 20032 -NCIT:C8721 Stage II Fallopian Tube Cancer AJCC v6 and v7 9 20033 -NCIT:C6272 Stage IIA Fallopian Tube Cancer AJCC v6 and v7 10 20034 -NCIT:C6276 Stage IIC Fallopian Tube Cancer AJCC v6 and v7 10 20035 -NCIT:C6277 Stage IIB Fallopian Tube Cancer AJCC v6 and v7 10 20036 -NCIT:C8722 Stage III Fallopian Tube Cancer AJCC v6 9 20037 -NCIT:C8963 Stage IV Fallopian Tube Cancer AJCC v6 and v7 9 20038 -NCIT:C91219 Fallopian Tube Cancer by AJCC v7 Stage 8 20039 -NCIT:C40105 Stage 0 Fallopian Tube Cancer AJCC v7 9 20040 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 10 20041 -NCIT:C8720 Stage I Fallopian Tube Cancer AJCC v6 and v7 9 20042 -NCIT:C6269 Stage IA Fallopian Tube Cancer AJCC v6 and v7 10 20043 -NCIT:C6270 Stage IB Fallopian Tube Cancer AJCC v6 and v7 10 20044 -NCIT:C6271 Stage IC Fallopian Tube Cancer AJCC v6 and v7 10 20045 -NCIT:C8721 Stage II Fallopian Tube Cancer AJCC v6 and v7 9 20046 -NCIT:C6272 Stage IIA Fallopian Tube Cancer AJCC v6 and v7 10 20047 -NCIT:C6276 Stage IIC Fallopian Tube Cancer AJCC v6 and v7 10 20048 -NCIT:C6277 Stage IIB Fallopian Tube Cancer AJCC v6 and v7 10 20049 -NCIT:C8963 Stage IV Fallopian Tube Cancer AJCC v6 and v7 9 20050 -NCIT:C89692 Stage III Fallopian Tube Cancer AJCC v7 9 20051 -NCIT:C6273 Stage IIIA Fallopian Tube Cancer AJCC v7 10 20052 -NCIT:C6274 Stage IIIB Fallopian Tube Cancer AJCC v7 10 20053 -NCIT:C6275 Stage IIIC Fallopian Tube Cancer AJCC v7 10 20054 -NCIT:C40124 Fallopian Tube Carcinosarcoma 7 20055 -NCIT:C40125 Fallopian Tube Adenosarcoma 7 20056 -NCIT:C40128 Fallopian Tube Leiomyosarcoma 7 20057 -NCIT:C7502 Malignant Vulvar Neoplasm 6 20058 -NCIT:C128165 Malignant Vulvar Phyllodes Tumor 7 20059 -NCIT:C128295 Vulvar Yolk Sac Tumor 7 20060 -NCIT:C3557 Malignant Clitoral Neoplasm 7 20061 -NCIT:C9362 Clitoral Carcinoma 8 20062 -NCIT:C40304 Malignant Vulvar Sweat Gland Neoplasm 7 20063 -NCIT:C128164 Vulvar Adenocarcinoma of Sweat Gland Origin 8 20064 -NCIT:C4027 Vulvar Paget Disease 9 20065 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 9 20066 -NCIT:C40306 Vulvar Porocarcinoma 10 20067 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 9 20068 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 9 20069 -NCIT:C40317 Vulvar Sarcoma 7 20070 -NCIT:C176515 Vulvar Angiosarcoma 8 20071 -NCIT:C181938 Vulvar Kaposi Sarcoma 8 20072 -NCIT:C181944 Vulvar Rhabdomyosarcoma 8 20073 -NCIT:C128273 Vulvar Alveolar Rhabdomyosarcoma 9 20074 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 9 20075 -NCIT:C181971 Vulvar Epithelioid Sarcoma 8 20076 -NCIT:C181973 Vulvar Distal-Type Epithelioid Sarcoma 9 20077 -NCIT:C40319 Vulvar Proximal-Type Epithelioid Sarcoma 9 20078 -NCIT:C181977 Vulvar Ewing Sarcoma 8 20079 -NCIT:C40318 Vulvar Leiomyosarcoma 8 20080 -NCIT:C40320 Vulvar Alveolar Soft Part Sarcoma 8 20081 -NCIT:C40321 Vulvar Liposarcoma 8 20082 -NCIT:C40329 Vulvar Melanoma 7 20083 -NCIT:C4866 Vulvar Carcinoma 7 20084 -NCIT:C128243 Vulvar Neuroendocrine Carcinoma 8 20085 -NCIT:C128244 Vulvar Small Cell Neuroendocrine Carcinoma 9 20086 -NCIT:C40298 Bartholin Gland Small Cell Neuroendocrine Carcinoma 10 20087 -NCIT:C128245 Vulvar Large Cell Neuroendocrine Carcinoma 9 20088 -NCIT:C128247 Vulvar Merkel Cell Carcinoma 9 20089 -NCIT:C139618 Vulvar Cancer by AJCC v8 Stage 8 20090 -NCIT:C139619 Stage I Vulvar Cancer AJCC v8 9 20091 -NCIT:C139620 Stage IA Vulvar Cancer AJCC v8 10 20092 -NCIT:C139621 Stage IB Vulvar Cancer AJCC v8 10 20093 -NCIT:C139622 Stage II Vulvar Cancer AJCC v8 9 20094 -NCIT:C139623 Stage III Vulvar Cancer AJCC v8 9 20095 -NCIT:C139624 Stage IIIA Vulvar Cancer AJCC v8 10 20096 -NCIT:C139625 Stage IIIB Vulvar Cancer AJCC v8 10 20097 -NCIT:C139626 Stage IIIC Vulvar Cancer AJCC v8 10 20098 -NCIT:C139627 Stage IV Vulvar Cancer AJCC v8 9 20099 -NCIT:C139628 Stage IVA Vulvar Cancer AJCC v8 10 20100 -NCIT:C139630 Stage IVB Vulvar Cancer AJCC v8 10 20101 -NCIT:C156066 Metastatic Vulvar Carcinoma 8 20102 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 9 20103 -NCIT:C170786 Advanced Vulvar Carcinoma 9 20104 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 9 20105 -NCIT:C174198 Unresectable Vulvar Carcinoma 8 20106 -NCIT:C174199 Unresectable Vulvar Squamous Cell Carcinoma 9 20107 -NCIT:C174508 Refractory Vulvar Carcinoma 8 20108 -NCIT:C185304 Refractory Vulvar Squamous Cell Carcinoma 9 20109 -NCIT:C4052 Vulvar Squamous Cell Carcinoma 8 20110 -NCIT:C128167 Vulvar Keratoacanthoma 9 20111 -NCIT:C174199 Unresectable Vulvar Squamous Cell Carcinoma 9 20112 -NCIT:C174200 Recurrent Vulvar Squamous Cell Carcinoma 9 20113 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 9 20114 -NCIT:C181902 Vulvar Squamous Cell Carcinoma, Not Otherwise Specified 9 20115 -NCIT:C181903 Human Papillomavirus-Independent Vulvar Squamous Cell Carcinoma 9 20116 -NCIT:C185304 Refractory Vulvar Squamous Cell Carcinoma 9 20117 -NCIT:C27679 Human Papillomavirus-Related Vulvar Squamous Cell Carcinoma 9 20118 -NCIT:C40287 Vulvar Warty Carcinoma 10 20119 -NCIT:C40284 Vulvar Keratinizing Squamous Cell Carcinoma 9 20120 -NCIT:C40285 Vulvar Non-Keratinizing Squamous Cell Carcinoma 9 20121 -NCIT:C40286 Vulvar Basaloid Carcinoma 9 20122 -NCIT:C40289 Vulvar Squamous Cell Carcinoma with Tumor Giant Cells 9 20123 -NCIT:C40293 Bartholin Gland Squamous Cell Carcinoma 9 20124 -NCIT:C6383 Vulvar Verrucous Carcinoma 9 20125 -NCIT:C6380 Vulvar Adenocarcinoma 8 20126 -NCIT:C128162 Vulvar Adenocarcinoma of Mammary Gland Type 9 20127 -NCIT:C128164 Vulvar Adenocarcinoma of Sweat Gland Origin 9 20128 -NCIT:C4027 Vulvar Paget Disease 10 20129 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 10 20130 -NCIT:C40306 Vulvar Porocarcinoma 11 20131 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 10 20132 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 10 20133 -NCIT:C128166 Vulvar Adenocarcinoma, Intestinal-Type 9 20134 -NCIT:C40309 Vulvar Sebaceous Carcinoma 9 20135 -NCIT:C7719 Bartholin Gland Adenocarcinoma 9 20136 -NCIT:C6381 Vulvar Basal Cell Carcinoma 8 20137 -NCIT:C90345 Vulvar Cancer by AJCC v6 Stage 8 20138 -NCIT:C4522 Stage 0 Vulvar Cancer AJCC v6 9 20139 -NCIT:C7854 Stage I Vulvar Cancer AJCC v6 9 20140 -NCIT:C6328 Stage IA Vulvar Carcinoma AJCC v6 10 20141 -NCIT:C6329 Stage IB Vulvar Carcinoma AJCC v6 10 20142 -NCIT:C9051 Stage II Vulvar Cancer AJCC v6 9 20143 -NCIT:C9052 Stage III Vulvar Cancer AJCC v6 9 20144 -NCIT:C9053 Stage IV Vulvar Cancer AJCC v6 9 20145 -NCIT:C27247 Stage IVB Vulvar Cancer AJCC v6 and v7 10 20146 -NCIT:C6330 Stage IVA Vulvar Cancer AJCC v6 10 20147 -NCIT:C9054 Recurrent Vulvar Carcinoma 8 20148 -NCIT:C174200 Recurrent Vulvar Squamous Cell Carcinoma 9 20149 -NCIT:C9055 Bartholin Gland Carcinoma 8 20150 -NCIT:C40293 Bartholin Gland Squamous Cell Carcinoma 9 20151 -NCIT:C40295 Bartholin Gland Adenoid Cystic Carcinoma 9 20152 -NCIT:C40296 Bartholin Gland Adenosquamous Carcinoma 9 20153 -NCIT:C40297 Bartholin Gland Transitional Cell Carcinoma 9 20154 -NCIT:C40298 Bartholin Gland Small Cell Neuroendocrine Carcinoma 9 20155 -NCIT:C7719 Bartholin Gland Adenocarcinoma 9 20156 -NCIT:C91203 Vulvar Cancer by AJCC v7 Stage 8 20157 -NCIT:C89445 Stage 0 Vulvar Cancer AJCC v7 9 20158 -NCIT:C89447 Stage I Vulvar Cancer AJCC v7 9 20159 -NCIT:C89448 Stage IA Vulvar Cancer AJCC v7 10 20160 -NCIT:C89449 Stage IB Vulvar Cancer AJCC v7 10 20161 -NCIT:C89451 Stage II Vulvar Cancer AJCC v7 9 20162 -NCIT:C89452 Stage III Vulvar Cancer AJCC v7 9 20163 -NCIT:C87003 Stage IIIA Vulvar Cancer AJCC v7 10 20164 -NCIT:C87004 Stage IIIB Vulvar Cancer AJCC v7 10 20165 -NCIT:C87005 Stage IIIC Vulvar Cancer AJCC v7 10 20166 -NCIT:C89453 Stage IV Vulvar Cancer AJCC v7 9 20167 -NCIT:C27247 Stage IVB Vulvar Cancer AJCC v6 and v7 10 20168 -NCIT:C89454 Stage IVA Vulvar Cancer AJCC v7 10 20169 -NCIT:C9362 Clitoral Carcinoma 8 20170 -NCIT:C9363 Labia Majora Carcinoma 8 20171 -NCIT:C9364 Labia Minora Carcinoma 8 20172 -NCIT:C6332 Metastatic Malignant Neoplasm in the Vulva 7 20173 -NCIT:C7637 Malignant Labia Minora Neoplasm 7 20174 -NCIT:C9364 Labia Minora Carcinoma 8 20175 -NCIT:C7638 Malignant Labia Majora Neoplasm 7 20176 -NCIT:C9363 Labia Majora Carcinoma 8 20177 -NCIT:C8975 Malignant Mixed Mesodermal (Mullerian) Tumor 6 20178 -NCIT:C159507 Primary Peritoneal Carcinosarcoma 7 20179 -NCIT:C170929 Metastatic Malignant Mixed Mesodermal (Mullerian) Tumor 7 20180 -NCIT:C170930 Advanced Malignant Mixed Mesodermal (Mullerian) Tumor 8 20181 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 9 20182 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 9 20183 -NCIT:C170931 Metastatic Uterine Corpus Carcinosarcoma 8 20184 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 9 20185 -NCIT:C170933 Metastatic Ovarian Carcinosarcoma 8 20186 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 9 20187 -NCIT:C40124 Fallopian Tube Carcinosarcoma 7 20188 -NCIT:C40278 Vaginal Carcinosarcoma 7 20189 -NCIT:C42700 Uterine Carcinosarcoma 7 20190 -NCIT:C113238 Uterine Carcinosarcoma, Homologous Type 8 20191 -NCIT:C113239 Uterine Carcinosarcoma, Heterologous Type 8 20192 -NCIT:C36097 Cervical Carcinosarcoma 8 20193 -NCIT:C9180 Uterine Corpus Carcinosarcoma 8 20194 -NCIT:C155818 Recurrent Uterine Corpus Carcinosarcoma 9 20195 -NCIT:C158381 Refractory Uterine Corpus Carcinosarcoma 9 20196 -NCIT:C170931 Metastatic Uterine Corpus Carcinosarcoma 9 20197 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 10 20198 -NCIT:C9192 Ovarian Carcinosarcoma 7 20199 -NCIT:C153347 Recurrent Ovarian Carcinosarcoma 8 20200 -NCIT:C170933 Metastatic Ovarian Carcinosarcoma 8 20201 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 9 20202 -NCIT:C9474 Adenosarcoma 6 20203 -NCIT:C102570 Broad Ligament Adenosarcoma 7 20204 -NCIT:C40125 Fallopian Tube Adenosarcoma 7 20205 -NCIT:C40229 Cervical Adenosarcoma 7 20206 -NCIT:C40277 Vaginal Adenosarcoma 7 20207 -NCIT:C6336 Uterine Corpus Adenosarcoma 7 20208 -NCIT:C139894 Uterine Corpus Adenosarcoma by AJCC v8 Stage 8 20209 -NCIT:C139895 Stage I Uterine Corpus Adenosarcoma AJCC v8 9 20210 -NCIT:C139896 Stage IA Uterine Corpus Adenosarcoma AJCC v8 10 20211 -NCIT:C139897 Stage IB Uterine Corpus Adenosarcoma AJCC v8 10 20212 -NCIT:C139898 Stage IC Uterine Corpus Adenosarcoma AJCC v8 10 20213 -NCIT:C139899 Stage II Uterine Corpus Adenosarcoma AJCC v8 9 20214 -NCIT:C139900 Stage III Uterine Corpus Adenosarcoma AJCC v8 9 20215 -NCIT:C139901 Stage IIIA Uterine Corpus Adenosarcoma AJCC v8 10 20216 -NCIT:C139902 Stage IIIB Uterine Corpus Adenosarcoma AJCC v8 10 20217 -NCIT:C139903 Stage IIIC Uterine Corpus Adenosarcoma AJCC v8 10 20218 -NCIT:C139904 Stage IV Uterine Corpus Adenosarcoma AJCC v8 9 20219 -NCIT:C139905 Stage IVA Uterine Corpus Adenosarcoma AJCC v8 10 20220 -NCIT:C139906 Stage IVB Uterine Corpus Adenosarcoma AJCC v8 10 20221 -NCIT:C7317 Ovarian Adenosarcoma 7 20222 -NCIT:C4934 Benign Female Reproductive System Neoplasm 5 20223 -NCIT:C126493 Benign Uterine Ligament Neoplasm 6 20224 -NCIT:C155952 Uterine Ligament Papillary Cystadenoma 7 20225 -NCIT:C179921 Broad Ligament Papillary Cystadenoma 8 20226 -NCIT:C40142 Uterine Ligament Papillary Cystadenoma Associated with von Hippel-Lindau Disease 8 20227 -NCIT:C179923 Uterine Ligament Leiomyoma 7 20228 -NCIT:C179924 Broad Ligament Leiomyoma 8 20229 -NCIT:C179925 Uterine Ligament Adenomyoma 7 20230 -NCIT:C179933 Benign Broad Ligament Neoplasm 7 20231 -NCIT:C126476 Broad Ligament Serous Cystadenoma 8 20232 -NCIT:C179921 Broad Ligament Papillary Cystadenoma 8 20233 -NCIT:C179924 Broad Ligament Leiomyoma 8 20234 -NCIT:C2895 Benign Ovarian Neoplasm 6 20235 -NCIT:C126331 Ovarian Adenomatoid Tumor 7 20236 -NCIT:C179360 Ovarian Leiomyoma 7 20237 -NCIT:C190658 Childhood Benign Ovarian Neoplasm 7 20238 -NCIT:C189288 Childhood Ovarian Fibroma 8 20239 -NCIT:C189289 Childhood Ovarian Sclerosing Stromal Tumor 8 20240 -NCIT:C6548 Childhood Ovarian Mature Teratoma 8 20241 -NCIT:C4510 Benign Ovarian Epithelial Tumor 7 20242 -NCIT:C40039 Benign Ovarian Mucinous Tumor 8 20243 -NCIT:C40040 Ovarian Mucinous Adenofibroma 9 20244 -NCIT:C40041 Ovarian Mucinous Cystadenofibroma 10 20245 -NCIT:C4512 Ovarian Mucinous Cystadenoma 9 20246 -NCIT:C40072 Benign Ovarian Endometrioid Tumor 8 20247 -NCIT:C27287 Ovarian Endometrioid Adenofibroma 9 20248 -NCIT:C27288 Ovarian Endometrioid Cystadenofibroma 10 20249 -NCIT:C40075 Ovarian Endometrioid Cystadenoma 9 20250 -NCIT:C40084 Benign Ovarian Clear Cell Tumor 8 20251 -NCIT:C40085 Ovarian Clear Cell Adenofibroma 9 20252 -NCIT:C40086 Ovarian Clear Cell Cystadenofibroma 10 20253 -NCIT:C4060 Ovarian Cystadenoma 8 20254 -NCIT:C126310 Ovarian Seromucinous Cystadenoma 9 20255 -NCIT:C40075 Ovarian Endometrioid Cystadenoma 9 20256 -NCIT:C4511 Ovarian Serous Cystadenoma 9 20257 -NCIT:C7278 Ovarian Papillary Cystadenoma 10 20258 -NCIT:C4512 Ovarian Mucinous Cystadenoma 9 20259 -NCIT:C4746 Benign Ovarian Brenner Tumor 8 20260 -NCIT:C7282 Benign Ovarian Seromucinous Tumor 8 20261 -NCIT:C126310 Ovarian Seromucinous Cystadenoma 9 20262 -NCIT:C126311 Ovarian Seromucinous Adenofibroma 9 20263 -NCIT:C7313 Benign Ovarian Serous Tumor 8 20264 -NCIT:C40031 Ovarian Serous Adenofibroma 9 20265 -NCIT:C40032 Ovarian Serous Cystadenofibroma 10 20266 -NCIT:C4511 Ovarian Serous Cystadenoma 9 20267 -NCIT:C7278 Ovarian Papillary Cystadenoma 10 20268 -NCIT:C7279 Ovarian Surface Papilloma 9 20269 -NCIT:C4516 Benign Ovarian Germ Cell Tumor 7 20270 -NCIT:C8112 Mature Ovarian Teratoma 8 20271 -NCIT:C3856 Ovarian Dermoid Cyst 9 20272 -NCIT:C39996 Ovarian Fetiform Teratoma 9 20273 -NCIT:C6548 Childhood Ovarian Mature Teratoma 9 20274 -NCIT:C7285 Ovarian Solid Teratoma 9 20275 -NCIT:C5245 Ovarian Myxoma 7 20276 -NCIT:C6803 Benign Ovarian Sex Cord-Stromal Tumor 7 20277 -NCIT:C121953 Ovarian Microcystic Stromal Tumor 8 20278 -NCIT:C3498 Ovarian Fibroma 8 20279 -NCIT:C189288 Childhood Ovarian Fibroma 9 20280 -NCIT:C7291 Ovarian Cellular Fibroma 9 20281 -NCIT:C39977 Ovarian Stromal-Leydig Cell Tumor 8 20282 -NCIT:C4204 Ovarian Sclerosing Stromal Tumor 8 20283 -NCIT:C189289 Childhood Ovarian Sclerosing Stromal Tumor 9 20284 -NCIT:C5219 Benign Ovarian Thecoma 8 20285 -NCIT:C39964 Typical Ovarian Thecoma 9 20286 -NCIT:C6264 Benign Ovarian Luteinized Thecoma 9 20287 -NCIT:C126321 Ovarian Luteinized Thecoma Associated with Sclerosing Peritonitis 10 20288 -NCIT:C3609 Benign Uterine Neoplasm 6 20289 -NCIT:C3607 Benign Cervical Neoplasm 7 20290 -NCIT:C128053 Benign Cervical Soft Tissue Neoplasm 8 20291 -NCIT:C128046 Cervical Leiomyoma 9 20292 -NCIT:C40266 Cervical Rhabdomyoma 9 20293 -NCIT:C34584 Endocervical Polyp 8 20294 -NCIT:C6856 Cervical Microglandular Polyp 9 20295 -NCIT:C40215 Cervical Mullerian Papilloma 8 20296 -NCIT:C40227 Benign Cervical Mixed Epithelial and Mesenchymal Neoplasm 8 20297 -NCIT:C40230 Cervical Adenofibroma 9 20298 -NCIT:C40231 Cervical Adenomyoma 9 20299 -NCIT:C40232 Cervical Adenomyoma, Endocervical-Type 10 20300 -NCIT:C40233 Cervical Adenomyoma, Mesonephric-Type 10 20301 -NCIT:C40234 Cervical Atypical Polypoid Adenomyoma 10 20302 -NCIT:C40240 Cervical Blue Nevus 8 20303 -NCIT:C6342 Cervical Squamous Papilloma 8 20304 -NCIT:C3608 Benign Uterine Corpus Neoplasm 7 20305 -NCIT:C127071 Benign Uterine Corpus PEComa 8 20306 -NCIT:C27250 Uterine Corpus Adenomatoid Tumor 8 20307 -NCIT:C3434 Uterine Corpus Leiomyoma 8 20308 -NCIT:C126975 Uterine Corpus Hydropic Leiomyoma 9 20309 -NCIT:C3511 Uterine Corpus Degenerated Leiomyoma 9 20310 -NCIT:C40162 Uterine Corpus Leiomyoma, Mitotically Active Variant 9 20311 -NCIT:C40163 Uterine Corpus Cellular Leiomyoma 9 20312 -NCIT:C40164 Uterine Corpus Epithelioid Leiomyoma 9 20313 -NCIT:C40165 Uterine Corpus Apoplectic Leiomyoma 9 20314 -NCIT:C40166 Uterine Corpus Myxoid Leiomyoma 9 20315 -NCIT:C40167 Uterine Corpus Bizarre Leiomyoma 9 20316 -NCIT:C40168 Uterine Corpus Lipoleiomyoma 9 20317 -NCIT:C40170 Uterine Corpus Diffuse Leiomyomatosis 9 20318 -NCIT:C40172 Uterine Corpus Dissecting Leiomyoma 9 20319 -NCIT:C40173 Uterine Corpus Metastasizing Leiomyoma 9 20320 -NCIT:C5356 Uterine Corpus Intravenous Leiomyomatosis 9 20321 -NCIT:C4262 Endometrial Stromal Nodule 8 20322 -NCIT:C4894 Benign Endometrial Neoplasm 8 20323 -NCIT:C6335 Benign Uterine Corpus Mixed Epithelial and Mesenchymal Neoplasm 8 20324 -NCIT:C6337 Uterine Corpus Adenofibroma 9 20325 -NCIT:C6338 Uterine Corpus Adenomyoma 9 20326 -NCIT:C40235 Uterine Corpus Atypical Polypoid Adenomyoma 10 20327 -NCIT:C6433 Endometrial Polyp 8 20328 -NCIT:C3610 Benign Vaginal Neoplasm 6 20329 -NCIT:C128079 Vaginal Superficial Myofibroblastoma 7 20330 -NCIT:C128113 Vaginal Dermoid Cyst 7 20331 -NCIT:C40255 Vaginal Mullerian Papilloma 7 20332 -NCIT:C40273 Vaginal Deep (Aggressive) Angiomyxoma 7 20333 -NCIT:C40275 Benign Vaginal Mixed Epithelial and Mesenchymal Neoplasm 7 20334 -NCIT:C40280 Benign Vaginal Mixed Tumor 8 20335 -NCIT:C40281 Benign Vaginal Melanocytic Nevus 7 20336 -NCIT:C40282 Vaginal Blue Nevus 8 20337 -NCIT:C45445 Vaginal Angiomyofibroblastoma 7 20338 -NCIT:C6372 Vaginal Rhabdomyoma 7 20339 -NCIT:C6373 Vaginal Leiomyoma 7 20340 -NCIT:C6374 Vaginal Squamous Papilloma 7 20341 -NCIT:C3611 Benign Vulvar Neoplasm 6 20342 -NCIT:C128240 Vulvar Hidradenoma Papilliferum 7 20343 -NCIT:C128242 Vulvar Fibroadenoma 7 20344 -NCIT:C128270 Vulvar Lipoma 7 20345 -NCIT:C128271 Vulvar Fibrolipoma 8 20346 -NCIT:C128272 Vulvar Superficial Myofibroblastoma 7 20347 -NCIT:C139548 Vulvar Composite Hidradenoma Papilliferum and Fibroadenoma 7 20348 -NCIT:C181906 Benign Vulvar Phyllodes Tumor 7 20349 -NCIT:C181925 Vulvar Lipoblastoma-Like Tumor 7 20350 -NCIT:C181926 Vulvar Prepubertal Fibroma 7 20351 -NCIT:C181942 Vulvar Rhabdomyoma 7 20352 -NCIT:C40301 Adenoma of Minor Vestibular Glands 7 20353 -NCIT:C40302 Vulvar Chondroid Syringoma 7 20354 -NCIT:C40311 Vulvar Syringoma 7 20355 -NCIT:C40312 Vulvar Nodular Hidradenoma 7 20356 -NCIT:C40314 Vulvar Trichoepithelioma 7 20357 -NCIT:C40325 Vulvar Angiomyxoma 7 20358 -NCIT:C40322 Vulvar Deep (Aggressive) Angiomyxoma 8 20359 -NCIT:C40324 Vulvar Superficial Angiomyxoma 8 20360 -NCIT:C40326 Vulvar Leiomyoma 7 20361 -NCIT:C40327 Vulvar Cellular Angiofibroma 7 20362 -NCIT:C40330 Vulvar Congenital Melanocytic Nevus 7 20363 -NCIT:C40331 Vulvar Acquired Melanocytic Nevus 7 20364 -NCIT:C40332 Vulvar Blue Nevus 7 20365 -NCIT:C45446 Vulvar Angiomyofibroblastoma 7 20366 -NCIT:C6375 Vulvar Seborrheic Keratosis 7 20367 -NCIT:C40291 Vulvar Inverted Follicular Keratosis 8 20368 -NCIT:C6376 Vulvar Squamous Papilloma 7 20369 -NCIT:C40290 Vulvar Squamous Papillomatosis 8 20370 -NCIT:C8418 Benign Bartholin Gland Neoplasm 7 20371 -NCIT:C40299 Bartholin Gland Adenoma 8 20372 -NCIT:C40300 Bartholin Gland Adenomyoma 8 20373 -NCIT:C3726 Adenomyoma 6 20374 -NCIT:C179925 Uterine Ligament Adenomyoma 7 20375 -NCIT:C40231 Cervical Adenomyoma 7 20376 -NCIT:C40232 Cervical Adenomyoma, Endocervical-Type 8 20377 -NCIT:C40233 Cervical Adenomyoma, Mesonephric-Type 8 20378 -NCIT:C40234 Cervical Atypical Polypoid Adenomyoma 8 20379 -NCIT:C6338 Uterine Corpus Adenomyoma 7 20380 -NCIT:C40235 Uterine Corpus Atypical Polypoid Adenomyoma 8 20381 -NCIT:C6895 Atypical Polypoid Adenomyoma 7 20382 -NCIT:C40234 Cervical Atypical Polypoid Adenomyoma 8 20383 -NCIT:C40235 Uterine Corpus Atypical Polypoid Adenomyoma 8 20384 -NCIT:C40018 Rete Ovarii Adenoma 6 20385 -NCIT:C4517 Benign Fallopian Tube Neoplasm 6 20386 -NCIT:C40112 Fallopian Tube Serous Papilloma 7 20387 -NCIT:C40113 Fallopian Tube Serous Adenofibroma 7 20388 -NCIT:C40114 Fallopian Tube Serous Cystadenofibroma 8 20389 -NCIT:C40116 Fallopian Tube Metaplastic Papillary Tumor 7 20390 -NCIT:C40127 Fallopian Tube Leiomyoma 7 20391 -NCIT:C40129 Fallopian Tube Adenomatoid Tumor 7 20392 -NCIT:C6517 Genital Rhabdomyoma 6 20393 -NCIT:C181942 Vulvar Rhabdomyoma 7 20394 -NCIT:C40266 Cervical Rhabdomyoma 7 20395 -NCIT:C6372 Vaginal Rhabdomyoma 7 20396 -NCIT:C8545 Benign Placental Neoplasm 6 20397 -NCIT:C3521 Placental Polyp 7 20398 -NCIT:C4868 Placental Hemangioma 7 20399 -NCIT:C8979 Mucinous Cystadenofibroma 6 20400 -NCIT:C40041 Ovarian Mucinous Cystadenofibroma 7 20401 -NCIT:C4984 Ovarian Neoplasm 5 20402 -NCIT:C189286 Childhood Ovarian Neoplasm 6 20403 -NCIT:C189292 Childhood Ovarian Sertoli-Leydig Cell Tumor 7 20404 -NCIT:C189333 Childhood Ovarian Gynandroblastoma 7 20405 -NCIT:C190658 Childhood Benign Ovarian Neoplasm 7 20406 -NCIT:C189288 Childhood Ovarian Fibroma 8 20407 -NCIT:C189289 Childhood Ovarian Sclerosing Stromal Tumor 8 20408 -NCIT:C6548 Childhood Ovarian Mature Teratoma 8 20409 -NCIT:C190659 Childhood Malignant Ovarian Neoplasm 7 20410 -NCIT:C171169 Extrarenal Rhabdoid Tumor of the Ovary 8 20411 -NCIT:C171170 Recurrent Extrarenal Rhabdoid Tumor of the Ovary 9 20412 -NCIT:C171171 Refractory Extrarenal Rhabdoid Tumor of the Ovary 9 20413 -NCIT:C189334 Childhood Ovarian Small Cell Carcinoma, Hypercalcemic Type 8 20414 -NCIT:C68629 Childhood Malignant Ovarian Germ Cell Tumor 8 20415 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 9 20416 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 9 20417 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 9 20418 -NCIT:C6550 Childhood Ovarian Dysgerminoma 9 20419 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 9 20420 -NCIT:C7289 Juvenile Ovarian Granulosa Cell Tumor 7 20421 -NCIT:C40434 Juvenile Bilateral Ovarian Granulosa Cell Tumor 8 20422 -NCIT:C8588 Childhood Ovarian Germ Cell Tumor 7 20423 -NCIT:C123842 Childhood Ovarian Nongerminomatous Germ Cell Tumor 8 20424 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 9 20425 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 9 20426 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 9 20427 -NCIT:C6554 Childhood Ovarian Teratoma 9 20428 -NCIT:C6547 Childhood Ovarian Immature Teratoma 10 20429 -NCIT:C6548 Childhood Ovarian Mature Teratoma 10 20430 -NCIT:C68629 Childhood Malignant Ovarian Germ Cell Tumor 8 20431 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 9 20432 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 9 20433 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 9 20434 -NCIT:C6550 Childhood Ovarian Dysgerminoma 9 20435 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 9 20436 -NCIT:C2895 Benign Ovarian Neoplasm 6 20437 -NCIT:C126331 Ovarian Adenomatoid Tumor 7 20438 -NCIT:C179360 Ovarian Leiomyoma 7 20439 -NCIT:C190658 Childhood Benign Ovarian Neoplasm 7 20440 -NCIT:C189288 Childhood Ovarian Fibroma 8 20441 -NCIT:C189289 Childhood Ovarian Sclerosing Stromal Tumor 8 20442 -NCIT:C6548 Childhood Ovarian Mature Teratoma 8 20443 -NCIT:C4510 Benign Ovarian Epithelial Tumor 7 20444 -NCIT:C40039 Benign Ovarian Mucinous Tumor 8 20445 -NCIT:C40040 Ovarian Mucinous Adenofibroma 9 20446 -NCIT:C40041 Ovarian Mucinous Cystadenofibroma 10 20447 -NCIT:C4512 Ovarian Mucinous Cystadenoma 9 20448 -NCIT:C40072 Benign Ovarian Endometrioid Tumor 8 20449 -NCIT:C27287 Ovarian Endometrioid Adenofibroma 9 20450 -NCIT:C27288 Ovarian Endometrioid Cystadenofibroma 10 20451 -NCIT:C40075 Ovarian Endometrioid Cystadenoma 9 20452 -NCIT:C40084 Benign Ovarian Clear Cell Tumor 8 20453 -NCIT:C40085 Ovarian Clear Cell Adenofibroma 9 20454 -NCIT:C40086 Ovarian Clear Cell Cystadenofibroma 10 20455 -NCIT:C4060 Ovarian Cystadenoma 8 20456 -NCIT:C126310 Ovarian Seromucinous Cystadenoma 9 20457 -NCIT:C40075 Ovarian Endometrioid Cystadenoma 9 20458 -NCIT:C4511 Ovarian Serous Cystadenoma 9 20459 -NCIT:C7278 Ovarian Papillary Cystadenoma 10 20460 -NCIT:C4512 Ovarian Mucinous Cystadenoma 9 20461 -NCIT:C4746 Benign Ovarian Brenner Tumor 8 20462 -NCIT:C7282 Benign Ovarian Seromucinous Tumor 8 20463 -NCIT:C126310 Ovarian Seromucinous Cystadenoma 9 20464 -NCIT:C126311 Ovarian Seromucinous Adenofibroma 9 20465 -NCIT:C7313 Benign Ovarian Serous Tumor 8 20466 -NCIT:C40031 Ovarian Serous Adenofibroma 9 20467 -NCIT:C40032 Ovarian Serous Cystadenofibroma 10 20468 -NCIT:C4511 Ovarian Serous Cystadenoma 9 20469 -NCIT:C7278 Ovarian Papillary Cystadenoma 10 20470 -NCIT:C7279 Ovarian Surface Papilloma 9 20471 -NCIT:C4516 Benign Ovarian Germ Cell Tumor 7 20472 -NCIT:C8112 Mature Ovarian Teratoma 8 20473 -NCIT:C3856 Ovarian Dermoid Cyst 9 20474 -NCIT:C39996 Ovarian Fetiform Teratoma 9 20475 -NCIT:C6548 Childhood Ovarian Mature Teratoma 9 20476 -NCIT:C7285 Ovarian Solid Teratoma 9 20477 -NCIT:C5245 Ovarian Myxoma 7 20478 -NCIT:C6803 Benign Ovarian Sex Cord-Stromal Tumor 7 20479 -NCIT:C121953 Ovarian Microcystic Stromal Tumor 8 20480 -NCIT:C3498 Ovarian Fibroma 8 20481 -NCIT:C189288 Childhood Ovarian Fibroma 9 20482 -NCIT:C7291 Ovarian Cellular Fibroma 9 20483 -NCIT:C39977 Ovarian Stromal-Leydig Cell Tumor 8 20484 -NCIT:C4204 Ovarian Sclerosing Stromal Tumor 8 20485 -NCIT:C189289 Childhood Ovarian Sclerosing Stromal Tumor 9 20486 -NCIT:C5219 Benign Ovarian Thecoma 8 20487 -NCIT:C39964 Typical Ovarian Thecoma 9 20488 -NCIT:C6264 Benign Ovarian Luteinized Thecoma 9 20489 -NCIT:C126321 Ovarian Luteinized Thecoma Associated with Sclerosing Peritonitis 10 20490 -NCIT:C3873 Ovarian Germ Cell Tumor 6 20491 -NCIT:C4514 Malignant Ovarian Germ Cell Tumor 7 20492 -NCIT:C39986 Ovarian Primitive Germ Cell Tumor 8 20493 -NCIT:C102870 Ovarian Non-Dysgerminomatous Germ Cell Tumor 9 20494 -NCIT:C39990 Ovarian Polyembryoma 10 20495 -NCIT:C8739 Stage I Ovarian Polyembryoma AJCC v6 and v7 11 20496 -NCIT:C8740 Stage II Ovarian Polyembryoma AJCC v6 and v7 11 20497 -NCIT:C8741 Stage III Ovarian Polyembryoma AJCC v6 and v7 11 20498 -NCIT:C8742 Stage IV Ovarian Polyembryoma AJCC v6 and v7 11 20499 -NCIT:C39991 Non-Gestational Ovarian Choriocarcinoma 10 20500 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 11 20501 -NCIT:C8107 Ovarian Yolk Sac Tumor 10 20502 -NCIT:C39987 Ovarian Yolk Sac Tumor, Polyvesicular Vitelline Pattern 11 20503 -NCIT:C39988 Ovarian Yolk Sac Tumor, Glandular Pattern 11 20504 -NCIT:C39989 Ovarian Yolk Sac Tumor, Hepatoid Pattern 11 20505 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 11 20506 -NCIT:C8735 Stage I Ovarian Yolk Sac Tumor AJCC v6 and v7 11 20507 -NCIT:C8736 Stage II Ovarian Yolk Sac Tumor AJCC v6 and v7 11 20508 -NCIT:C8737 Stage III Ovarian Yolk Sac Tumor AJCC v6 and v7 11 20509 -NCIT:C8738 Stage IV Ovarian Yolk Sac Tumor AJCC v6 and v7 11 20510 -NCIT:C8108 Ovarian Embryonal Carcinoma 10 20511 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 11 20512 -NCIT:C8725 Stage II Ovarian Embryonal Carcinoma AJCC v6 and v7 11 20513 -NCIT:C8728 Stage III Ovarian Embryonal Carcinoma AJCC v6 and v7 11 20514 -NCIT:C8729 Stage IV Ovarian Embryonal Carcinoma AJCC v6 and v7 11 20515 -NCIT:C8734 Stage I Ovarian Embryonal Carcinoma AJCC v6 and v7 11 20516 -NCIT:C8106 Ovarian Dysgerminoma 9 20517 -NCIT:C6550 Childhood Ovarian Dysgerminoma 10 20518 -NCIT:C8723 Stage I Ovarian Dysgerminoma AJCC v6 and v7 10 20519 -NCIT:C8724 Stage II Ovarian Dysgerminoma AJCC v6 and v7 10 20520 -NCIT:C8726 Stage III Ovarian Dysgerminoma AJCC v6 and v7 10 20521 -NCIT:C8727 Stage IV Ovarian Dysgerminoma AJCC v6 and v7 10 20522 -NCIT:C8114 Ovarian Mixed Germ Cell Tumor 9 20523 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 10 20524 -NCIT:C39995 Malignant Ovarian Teratoma 8 20525 -NCIT:C4291 Thyroid Carcinoma Arising in Struma Ovarii 8 20526 -NCIT:C68629 Childhood Malignant Ovarian Germ Cell Tumor 8 20527 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 9 20528 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 9 20529 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 9 20530 -NCIT:C6550 Childhood Ovarian Dysgerminoma 9 20531 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 9 20532 -NCIT:C8083 Stage I Ovarian Germ Cell Tumor AJCC v6 and v7 8 20533 -NCIT:C6291 Stage IA Ovarian Germ Cell Tumor AJCC v6 and v7 9 20534 -NCIT:C6292 Stage IB Ovarian Germ Cell Tumor AJCC v6 and v7 9 20535 -NCIT:C6293 Stage IC Ovarian Germ Cell Tumor AJCC v6 and v7 9 20536 -NCIT:C8723 Stage I Ovarian Dysgerminoma AJCC v6 and v7 9 20537 -NCIT:C8734 Stage I Ovarian Embryonal Carcinoma AJCC v6 and v7 9 20538 -NCIT:C8735 Stage I Ovarian Yolk Sac Tumor AJCC v6 and v7 9 20539 -NCIT:C8739 Stage I Ovarian Polyembryoma AJCC v6 and v7 9 20540 -NCIT:C8743 Stage I Ovarian Teratoma AJCC v6 and v7 9 20541 -NCIT:C8084 Stage II Ovarian Germ Cell Tumor AJCC v6 and v7 8 20542 -NCIT:C6294 Stage IIC Ovarian Germ Cell Tumor AJCC v6 and v7 9 20543 -NCIT:C6295 Stage IIB Ovarian Germ Cell Tumor AJCC v6 and v7 9 20544 -NCIT:C6296 Stage IIA Ovarian Germ Cell Tumor AJCC v6 and v7 9 20545 -NCIT:C8724 Stage II Ovarian Dysgerminoma AJCC v6 and v7 9 20546 -NCIT:C8725 Stage II Ovarian Embryonal Carcinoma AJCC v6 and v7 9 20547 -NCIT:C8736 Stage II Ovarian Yolk Sac Tumor AJCC v6 and v7 9 20548 -NCIT:C8740 Stage II Ovarian Polyembryoma AJCC v6 and v7 9 20549 -NCIT:C8744 Stage II Ovarian Teratoma AJCC v6 and v7 9 20550 -NCIT:C8085 Stage III Ovarian Germ Cell Tumor AJCC v6 and v7 8 20551 -NCIT:C6297 Stage IIIA Ovarian Germ Cell Tumor AJCC v6 and v7 9 20552 -NCIT:C6298 Stage IIIB Ovarian Germ Cell Tumor AJCC v6 and v7 9 20553 -NCIT:C6299 Stage IIIC Ovarian Germ Cell Tumor AJCC v6 and v7 9 20554 -NCIT:C8726 Stage III Ovarian Dysgerminoma AJCC v6 and v7 9 20555 -NCIT:C8728 Stage III Ovarian Embryonal Carcinoma AJCC v6 and v7 9 20556 -NCIT:C8737 Stage III Ovarian Yolk Sac Tumor AJCC v6 and v7 9 20557 -NCIT:C8741 Stage III Ovarian Polyembryoma AJCC v6 and v7 9 20558 -NCIT:C8745 Stage III Ovarian Teratoma AJCC v6 and v7 9 20559 -NCIT:C8086 Stage IV Ovarian Germ Cell Tumor AJCC v6 and v7 8 20560 -NCIT:C8727 Stage IV Ovarian Dysgerminoma AJCC v6 and v7 9 20561 -NCIT:C8729 Stage IV Ovarian Embryonal Carcinoma AJCC v6 and v7 9 20562 -NCIT:C8738 Stage IV Ovarian Yolk Sac Tumor AJCC v6 and v7 9 20563 -NCIT:C8742 Stage IV Ovarian Polyembryoma AJCC v6 and v7 9 20564 -NCIT:C8746 Stage IV Ovarian Teratoma AJCC v6 and v7 9 20565 -NCIT:C8087 Recurrent Ovarian Germ Cell Tumor 8 20566 -NCIT:C4516 Benign Ovarian Germ Cell Tumor 7 20567 -NCIT:C8112 Mature Ovarian Teratoma 8 20568 -NCIT:C3856 Ovarian Dermoid Cyst 9 20569 -NCIT:C39996 Ovarian Fetiform Teratoma 9 20570 -NCIT:C6548 Childhood Ovarian Mature Teratoma 9 20571 -NCIT:C7285 Ovarian Solid Teratoma 9 20572 -NCIT:C8110 Ovarian Teratoma 7 20573 -NCIT:C188015 Ovarian Teratoma with Carcinoid Tumor 8 20574 -NCIT:C4292 Strumal Carcinoid 9 20575 -NCIT:C39992 Ovarian Biphasic or Triphasic Teratoma 8 20576 -NCIT:C39993 Grade 1 Ovarian Teratoma 9 20577 -NCIT:C39995 Malignant Ovarian Teratoma 9 20578 -NCIT:C7283 Ovarian Cystic Teratoma 9 20579 -NCIT:C3856 Ovarian Dermoid Cyst 10 20580 -NCIT:C8111 Immature Ovarian Teratoma 9 20581 -NCIT:C6547 Childhood Ovarian Immature Teratoma 10 20582 -NCIT:C8112 Mature Ovarian Teratoma 9 20583 -NCIT:C3856 Ovarian Dermoid Cyst 10 20584 -NCIT:C39996 Ovarian Fetiform Teratoma 10 20585 -NCIT:C6548 Childhood Ovarian Mature Teratoma 10 20586 -NCIT:C7285 Ovarian Solid Teratoma 10 20587 -NCIT:C6554 Childhood Ovarian Teratoma 8 20588 -NCIT:C6547 Childhood Ovarian Immature Teratoma 9 20589 -NCIT:C6548 Childhood Ovarian Mature Teratoma 9 20590 -NCIT:C7286 Ovarian Monodermal Teratoma 8 20591 -NCIT:C7284 Ovarian Dermoid Cyst with Secondary Tumor 9 20592 -NCIT:C177774 Ovarian Dermoid Cyst with Somatic-Type Malignancy 10 20593 -NCIT:C39997 Ovarian Dermoid Cyst with Secondary Carcinoma 11 20594 -NCIT:C39998 Ovarian Dermoid Cyst with Squamous Cell Carcinoma 12 20595 -NCIT:C39999 Ovarian Dermoid Cyst with Adenocarcinoma 12 20596 -NCIT:C40004 Ovarian Dermoid Cyst with Sebaceous Carcinoma 13 20597 -NCIT:C40001 Ovarian Dermoid Cyst with Melanoma 11 20598 -NCIT:C40009 Ovarian Dermoid Cyst with Secondary Sarcoma 11 20599 -NCIT:C40010 Ovarian Dermoid Cyst with Leiomyosarcoma 12 20600 -NCIT:C40011 Ovarian Dermoid Cyst with Angiosarcoma 12 20601 -NCIT:C40000 Ovarian Dermoid Cyst with Secondary Melanocytic Lesion 10 20602 -NCIT:C40001 Ovarian Dermoid Cyst with Melanoma 11 20603 -NCIT:C40002 Ovarian Dermoid Cyst with Melanocytic Nevus 11 20604 -NCIT:C40003 Ovarian Dermoid Cyst with Secondary Sebaceous Tumor 10 20605 -NCIT:C40004 Ovarian Dermoid Cyst with Sebaceous Carcinoma 11 20606 -NCIT:C40005 Ovarian Dermoid Cyst with Sebaceous Adenoma 11 20607 -NCIT:C40006 Ovarian Dermoid Cyst with Secondary Pituitary-Type Tumor 10 20608 -NCIT:C40007 Ovarian Dermoid Cyst with Corticotropin Secreting Adenoma 11 20609 -NCIT:C40008 Ovarian Dermoid Cyst with Prolactin Secreting Adenoma 11 20610 -NCIT:C8113 Ovarian Monodermal and Highly Specialized Teratoma 9 20611 -NCIT:C4291 Thyroid Carcinoma Arising in Struma Ovarii 10 20612 -NCIT:C7468 Struma Ovarii 10 20613 -NCIT:C8743 Stage I Ovarian Teratoma AJCC v6 and v7 8 20614 -NCIT:C8744 Stage II Ovarian Teratoma AJCC v6 and v7 8 20615 -NCIT:C8745 Stage III Ovarian Teratoma AJCC v6 and v7 8 20616 -NCIT:C8746 Stage IV Ovarian Teratoma AJCC v6 and v7 8 20617 -NCIT:C8588 Childhood Ovarian Germ Cell Tumor 7 20618 -NCIT:C123842 Childhood Ovarian Nongerminomatous Germ Cell Tumor 8 20619 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 9 20620 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 9 20621 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 9 20622 -NCIT:C6554 Childhood Ovarian Teratoma 9 20623 -NCIT:C6547 Childhood Ovarian Immature Teratoma 10 20624 -NCIT:C6548 Childhood Ovarian Mature Teratoma 10 20625 -NCIT:C68629 Childhood Malignant Ovarian Germ Cell Tumor 8 20626 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 9 20627 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 9 20628 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 9 20629 -NCIT:C6550 Childhood Ovarian Dysgerminoma 9 20630 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 9 20631 -NCIT:C4381 Ovarian Epithelial Tumor 6 20632 -NCIT:C179548 Ovarian Wolffian Tumor 7 20633 -NCIT:C3872 Ovarian Brenner Tumor 7 20634 -NCIT:C4270 Malignant Ovarian Brenner Tumor 8 20635 -NCIT:C153818 Recurrent Malignant Ovarian Brenner Tumor 9 20636 -NCIT:C183126 Refractory Malignant Ovarian Brenner Tumor 9 20637 -NCIT:C4746 Benign Ovarian Brenner Tumor 8 20638 -NCIT:C9459 Borderline Ovarian Brenner Tumor 8 20639 -NCIT:C40026 Malignant Ovarian Epithelial Tumor 7 20640 -NCIT:C40025 Malignant Ovarian Serous Tumor 8 20641 -NCIT:C67092 Ovarian Serous Adenocarcinofibroma 9 20642 -NCIT:C7550 Ovarian Serous Adenocarcinoma 9 20643 -NCIT:C105555 Ovarian High Grade Serous Adenocarcinoma 10 20644 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 11 20645 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 11 20646 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 11 20647 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 20648 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 11 20649 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 20650 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 12 20651 -NCIT:C105556 Ovarian Low Grade Serous Adenocarcinoma 10 20652 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 11 20653 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 11 20654 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 10 20655 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 11 20656 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 11 20657 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 11 20658 -NCIT:C160781 Unresectable Ovarian Serous Adenocarcinoma 10 20659 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 11 20660 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 20661 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 10 20662 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 11 20663 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 12 20664 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 12 20665 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 11 20666 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 20667 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 12 20668 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 11 20669 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 12 20670 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 12 20671 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 11 20672 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 12 20673 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 20674 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 10 20675 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 11 20676 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 11 20677 -NCIT:C6256 Ovarian Serous Surface Papillary Adenocarcinoma 10 20678 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 10 20679 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 11 20680 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 12 20681 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 12 20682 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 11 20683 -NCIT:C40033 Malignant Ovarian Mucinous Tumor 8 20684 -NCIT:C40034 Ovarian Mucinous Adenocarcinofibroma 9 20685 -NCIT:C5243 Ovarian Mucinous Adenocarcinoma 9 20686 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 10 20687 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 10 20688 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 10 20689 -NCIT:C183245 Unresectable Ovarian Mucinous Adenocarcinoma 10 20690 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 10 20691 -NCIT:C40051 Malignant Ovarian Endometrioid Tumor 8 20692 -NCIT:C7979 Ovarian Endometrioid Adenocarcinoma 9 20693 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 10 20694 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 10 20695 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 10 20696 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 11 20697 -NCIT:C186273 Unresectable Ovarian Endometrioid Adenocarcinoma 10 20698 -NCIT:C40061 Ovarian Endometrioid Adenocarcinoma with Squamous Differentiation 10 20699 -NCIT:C9192 Ovarian Carcinosarcoma 9 20700 -NCIT:C153347 Recurrent Ovarian Carcinosarcoma 10 20701 -NCIT:C170933 Metastatic Ovarian Carcinosarcoma 10 20702 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 11 20703 -NCIT:C40077 Malignant Ovarian Clear Cell Tumor 8 20704 -NCIT:C40078 Ovarian Clear Cell Adenocarcinoma 9 20705 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 10 20706 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 10 20707 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 11 20708 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 10 20709 -NCIT:C7980 Ovarian Clear Cell Cystadenocarcinoma 10 20710 -NCIT:C40079 Ovarian Clear Cell Adenocarcinofibroma 9 20711 -NCIT:C4908 Ovarian Carcinoma 8 20712 -NCIT:C128081 Ovarian Cancer by FIGO Stage 9 20713 -NCIT:C128082 FIGO Stage IC1 Ovarian Cancer 10 20714 -NCIT:C128083 FIGO Stage IC2 Ovarian Cancer 10 20715 -NCIT:C128084 FIGO Stage IC3 Ovarian Cancer 10 20716 -NCIT:C128085 FIGO Stage II Ovarian Cancer 10 20717 -NCIT:C5223 Stage IIA Ovarian Cancer AJCC V6 and v7 11 20718 -NCIT:C5224 Stage IIB Ovarian Cancer AJCC v6 and v7 11 20719 -NCIT:C128086 FIGO Stage III Ovarian Cancer 10 20720 -NCIT:C128087 FIGO Stage IIIA Ovarian Cancer 11 20721 -NCIT:C128088 FIGO Stage IIIA1 Ovarian Cancer 12 20722 -NCIT:C128089 FIGO Stage IIIA1(i) Ovarian Cancer 13 20723 -NCIT:C128090 FIGO Stage IIIA1(ii) Ovarian Cancer 13 20724 -NCIT:C128091 FIGO Stage IIIA2 Ovarian Cancer 12 20725 -NCIT:C128092 FIGO Stage IIIB Ovarian Cancer 11 20726 -NCIT:C128093 FIGO Stage IIIC Ovarian Cancer 11 20727 -NCIT:C128094 FIGO Stage IVA Ovarian Cancer 10 20728 -NCIT:C128095 FIGO Stage IVB Ovarian Cancer 10 20729 -NCIT:C7829 Stage I Ovarian Cancer AJCC v6 and v7 10 20730 -NCIT:C5220 Stage IA Ovarian Cancer AJCC v6 and v7 11 20731 -NCIT:C5221 Stage IB Ovarian Cancer AJCC v6 and v7 11 20732 -NCIT:C5222 Stage IC Ovarian Cancer AJCC v6 and v7 11 20733 -NCIT:C7832 Stage IV Ovarian Cancer AJCC v6 and v7 10 20734 -NCIT:C128106 Ovarian Cancer by AJCC v6 and v7 Stage 9 20735 -NCIT:C7829 Stage I Ovarian Cancer AJCC v6 and v7 10 20736 -NCIT:C5220 Stage IA Ovarian Cancer AJCC v6 and v7 11 20737 -NCIT:C5221 Stage IB Ovarian Cancer AJCC v6 and v7 11 20738 -NCIT:C5222 Stage IC Ovarian Cancer AJCC v6 and v7 11 20739 -NCIT:C7830 Stage II Ovarian Cancer AJCC v6 and v7 10 20740 -NCIT:C5223 Stage IIA Ovarian Cancer AJCC V6 and v7 11 20741 -NCIT:C5224 Stage IIB Ovarian Cancer AJCC v6 and v7 11 20742 -NCIT:C5225 Stage IIC Ovarian Cancer AJCC v6 and v7 11 20743 -NCIT:C7831 Stage III Ovarian Cancer AJCC v6 and v7 10 20744 -NCIT:C6258 Stage IIIA Ovarian Cancer AJCC v6 and v7 11 20745 -NCIT:C6259 Stage IIIB Ovarian Cancer AJCC v6 and v7 11 20746 -NCIT:C6260 Stage IIIC Ovarian Cancer AJCC v6 and v7 11 20747 -NCIT:C7832 Stage IV Ovarian Cancer AJCC v6 and v7 10 20748 -NCIT:C139963 Ovarian Cancer by AJCC v8 Stage 9 20749 -NCIT:C139964 Stage I Ovarian Cancer AJCC v8 10 20750 -NCIT:C139965 Stage IA Ovarian Cancer AJCC v8 11 20751 -NCIT:C139966 Stage IB Ovarian Cancer AJCC v8 11 20752 -NCIT:C139967 Stage IC Ovarian Cancer AJCC v8 11 20753 -NCIT:C139968 Stage II Ovarian Cancer AJCC v8 10 20754 -NCIT:C139969 Stage IIA Ovarian Cancer AJCC v8 11 20755 -NCIT:C139970 Stage IIB Ovarian Cancer AJCC v8 11 20756 -NCIT:C139971 Stage III Ovarian Cancer AJCC v8 10 20757 -NCIT:C139972 Stage IIIA Ovarian Cancer AJCC v8 11 20758 -NCIT:C139973 Stage IIIA1 Ovarian Cancer AJCC v8 12 20759 -NCIT:C139974 Stage IIIA2 Ovarian Cancer AJCC v8 12 20760 -NCIT:C139975 Stage IIIB Ovarian Cancer AJCC v8 11 20761 -NCIT:C139976 Stage IIIC Ovarian Cancer AJCC v8 11 20762 -NCIT:C139977 Stage IV Ovarian Cancer AJCC v8 10 20763 -NCIT:C139978 Stage IVA Ovarian Cancer AJCC v8 11 20764 -NCIT:C139979 Stage IVB Ovarian Cancer AJCC v8 11 20765 -NCIT:C150091 Refractory Ovarian Carcinoma 9 20766 -NCIT:C147561 Platinum-Resistant Ovarian Carcinoma 10 20767 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 11 20768 -NCIT:C179459 Unresectable Platinum-Resistant Ovarian Carcinoma 11 20769 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 11 20770 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 12 20771 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 12 20772 -NCIT:C170968 Refractory Ovarian Adenocarcinoma 10 20773 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 11 20774 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 11 20775 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 12 20776 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 12 20777 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 11 20778 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 11 20779 -NCIT:C178671 Refractory Ovarian Seromucinous Carcinoma 10 20780 -NCIT:C178682 Refractory Ovarian Transitional Cell Carcinoma 10 20781 -NCIT:C178683 Refractory Ovarian Undifferentiated Carcinoma 10 20782 -NCIT:C178700 Platinum-Refractory Ovarian Carcinoma 10 20783 -NCIT:C179207 Refractory Ovarian Squamous Cell Carcinoma 10 20784 -NCIT:C183126 Refractory Malignant Ovarian Brenner Tumor 10 20785 -NCIT:C156064 Metastatic Ovarian Carcinoma 9 20786 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 10 20787 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 11 20788 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 12 20789 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 12 20790 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 11 20791 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 20792 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 12 20793 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 11 20794 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 12 20795 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 12 20796 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 11 20797 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 12 20798 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 20799 -NCIT:C165458 Advanced Ovarian Carcinoma 10 20800 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 11 20801 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 12 20802 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 12 20803 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 11 20804 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 11 20805 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 11 20806 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 11 20807 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 10 20808 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 11 20809 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 12 20810 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 20811 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 11 20812 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 10 20813 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 11 20814 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 10 20815 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 11 20816 -NCIT:C172234 Metastatic Ovarian Undifferentiated Carcinoma 10 20817 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 10 20818 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 11 20819 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 11 20820 -NCIT:C180333 Metastatic Microsatellite Stable Ovarian Carcinoma 10 20821 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 11 20822 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 10 20823 -NCIT:C27391 Metastatic Ovarian Small Cell Carcinoma, Hypercalcemic Type 10 20824 -NCIT:C159902 Platinum-Sensitive Ovarian Carcinoma 9 20825 -NCIT:C188391 Recurrent Platinum-Sensitive Ovarian Carcinoma 10 20826 -NCIT:C167073 Unresectable Ovarian Carcinoma 9 20827 -NCIT:C160781 Unresectable Ovarian Serous Adenocarcinoma 10 20828 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 11 20829 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 20830 -NCIT:C172235 Unresectable Ovarian Undifferentiated Carcinoma 10 20831 -NCIT:C179459 Unresectable Platinum-Resistant Ovarian Carcinoma 10 20832 -NCIT:C183245 Unresectable Ovarian Mucinous Adenocarcinoma 10 20833 -NCIT:C186273 Unresectable Ovarian Endometrioid Adenocarcinoma 10 20834 -NCIT:C171032 Ovarian Neuroendocrine Carcinoma 9 20835 -NCIT:C40440 Ovarian Small Cell Carcinoma, Pulmonary-Type 10 20836 -NCIT:C5238 Ovarian Large Cell Neuroendocrine Carcinoma 10 20837 -NCIT:C179334 Ovarian Dedifferentiated Carcinoma 9 20838 -NCIT:C180332 Microsatellite Stable Ovarian Carcinoma 9 20839 -NCIT:C180333 Metastatic Microsatellite Stable Ovarian Carcinoma 10 20840 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 11 20841 -NCIT:C27390 Ovarian Small Cell Carcinoma 9 20842 -NCIT:C40439 Ovarian Small Cell Carcinoma, Hypercalcemic Type 10 20843 -NCIT:C189334 Childhood Ovarian Small Cell Carcinoma, Hypercalcemic Type 11 20844 -NCIT:C27391 Metastatic Ovarian Small Cell Carcinoma, Hypercalcemic Type 11 20845 -NCIT:C40440 Ovarian Small Cell Carcinoma, Pulmonary-Type 10 20846 -NCIT:C36102 Hereditary Ovarian Carcinoma 9 20847 -NCIT:C148024 BRCA-Associated Ovarian Carcinoma 10 20848 -NCIT:C148025 Recurrent BRCA- Associated Ovarian Carcinoma 11 20849 -NCIT:C40090 Ovarian Seromucinous Carcinoma 9 20850 -NCIT:C178669 Recurrent Ovarian Seromucinous Carcinoma 10 20851 -NCIT:C178671 Refractory Ovarian Seromucinous Carcinoma 10 20852 -NCIT:C40093 Ovarian Squamous Cell Carcinoma 9 20853 -NCIT:C179207 Refractory Ovarian Squamous Cell Carcinoma 10 20854 -NCIT:C4270 Malignant Ovarian Brenner Tumor 9 20855 -NCIT:C153818 Recurrent Malignant Ovarian Brenner Tumor 10 20856 -NCIT:C183126 Refractory Malignant Ovarian Brenner Tumor 10 20857 -NCIT:C4509 Ovarian Undifferentiated Carcinoma 9 20858 -NCIT:C170754 Recurrent Ovarian Undifferentiated Carcinoma 10 20859 -NCIT:C172234 Metastatic Ovarian Undifferentiated Carcinoma 10 20860 -NCIT:C172235 Unresectable Ovarian Undifferentiated Carcinoma 10 20861 -NCIT:C178683 Refractory Ovarian Undifferentiated Carcinoma 10 20862 -NCIT:C5240 Ovarian Transitional Cell Carcinoma 9 20863 -NCIT:C153819 Recurrent Ovarian Transitional Cell Carcinoma 10 20864 -NCIT:C178682 Refractory Ovarian Transitional Cell Carcinoma 10 20865 -NCIT:C7700 Ovarian Adenocarcinoma 9 20866 -NCIT:C153614 Recurrent Ovarian Adenocarcinoma 10 20867 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 11 20868 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 11 20869 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 12 20870 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 12 20871 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 12 20872 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 11 20873 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 11 20874 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 12 20875 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 11 20876 -NCIT:C170968 Refractory Ovarian Adenocarcinoma 10 20877 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 11 20878 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 11 20879 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 12 20880 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 12 20881 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 11 20882 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 11 20883 -NCIT:C179208 Ovarian Signet Ring Cell Carcinoma 10 20884 -NCIT:C179321 Ovarian Mesonephric-Like Adenocarcinoma 10 20885 -NCIT:C179339 Ovarian Mixed Cell Adenocarcinoma 10 20886 -NCIT:C40078 Ovarian Clear Cell Adenocarcinoma 10 20887 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 11 20888 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 11 20889 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 12 20890 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 11 20891 -NCIT:C7980 Ovarian Clear Cell Cystadenocarcinoma 11 20892 -NCIT:C5228 Ovarian Cystadenocarcinoma 10 20893 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 11 20894 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 12 20895 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 11 20896 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 11 20897 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 12 20898 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 13 20899 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 13 20900 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 12 20901 -NCIT:C7980 Ovarian Clear Cell Cystadenocarcinoma 11 20902 -NCIT:C5243 Ovarian Mucinous Adenocarcinoma 10 20903 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 11 20904 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 11 20905 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 11 20906 -NCIT:C183245 Unresectable Ovarian Mucinous Adenocarcinoma 11 20907 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 11 20908 -NCIT:C7550 Ovarian Serous Adenocarcinoma 10 20909 -NCIT:C105555 Ovarian High Grade Serous Adenocarcinoma 11 20910 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 12 20911 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 12 20912 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 12 20913 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 13 20914 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 12 20915 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 13 20916 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 13 20917 -NCIT:C105556 Ovarian Low Grade Serous Adenocarcinoma 11 20918 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 12 20919 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 12 20920 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 11 20921 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 12 20922 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 12 20923 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 12 20924 -NCIT:C160781 Unresectable Ovarian Serous Adenocarcinoma 11 20925 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 12 20926 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 13 20927 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 11 20928 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 12 20929 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 13 20930 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 13 20931 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 12 20932 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 13 20933 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 13 20934 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 12 20935 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 13 20936 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 13 20937 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 12 20938 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 13 20939 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 13 20940 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 11 20941 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 12 20942 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 12 20943 -NCIT:C6256 Ovarian Serous Surface Papillary Adenocarcinoma 11 20944 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 11 20945 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 12 20946 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 13 20947 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 13 20948 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 12 20949 -NCIT:C7979 Ovarian Endometrioid Adenocarcinoma 10 20950 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 11 20951 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 11 20952 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 11 20953 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 12 20954 -NCIT:C186273 Unresectable Ovarian Endometrioid Adenocarcinoma 11 20955 -NCIT:C40061 Ovarian Endometrioid Adenocarcinoma with Squamous Differentiation 11 20956 -NCIT:C7833 Recurrent Ovarian Carcinoma 9 20957 -NCIT:C148025 Recurrent BRCA- Associated Ovarian Carcinoma 10 20958 -NCIT:C153614 Recurrent Ovarian Adenocarcinoma 10 20959 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 11 20960 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 11 20961 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 12 20962 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 12 20963 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 12 20964 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 11 20965 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 11 20966 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 12 20967 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 11 20968 -NCIT:C153818 Recurrent Malignant Ovarian Brenner Tumor 10 20969 -NCIT:C153819 Recurrent Ovarian Transitional Cell Carcinoma 10 20970 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 10 20971 -NCIT:C170754 Recurrent Ovarian Undifferentiated Carcinoma 10 20972 -NCIT:C178669 Recurrent Ovarian Seromucinous Carcinoma 10 20973 -NCIT:C188391 Recurrent Platinum-Sensitive Ovarian Carcinoma 10 20974 -NCIT:C190201 Locally Recurrent Ovarian Carcinoma 10 20975 -NCIT:C40076 Ovarian Clear Cell Tumor 7 20976 -NCIT:C40077 Malignant Ovarian Clear Cell Tumor 8 20977 -NCIT:C40078 Ovarian Clear Cell Adenocarcinoma 9 20978 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 10 20979 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 10 20980 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 11 20981 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 10 20982 -NCIT:C7980 Ovarian Clear Cell Cystadenocarcinoma 10 20983 -NCIT:C40079 Ovarian Clear Cell Adenocarcinofibroma 9 20984 -NCIT:C40080 Borderline Ovarian Clear Cell Tumor 8 20985 -NCIT:C40081 Borderline Ovarian Clear Cell Adenofibroma 9 20986 -NCIT:C126308 Borderline Ovarian Clear Cell Tumor/Atypical Proliferative Ovarian Clear Cell Tumor 10 20987 -NCIT:C40082 Borderline Ovarian Clear Cell Tumor/Atypical Proliferative Ovarian Clear Cell Tumor with Intraepithelial Carcinoma 11 20988 -NCIT:C40083 Borderline Ovarian Clear Cell Cystadenofibroma 10 20989 -NCIT:C40084 Benign Ovarian Clear Cell Tumor 8 20990 -NCIT:C40085 Ovarian Clear Cell Adenofibroma 9 20991 -NCIT:C40086 Ovarian Clear Cell Cystadenofibroma 10 20992 -NCIT:C4508 Ovarian Seromucinous Tumor 7 20993 -NCIT:C179259 Borderline Ovarian Seromucinous Tumor 8 20994 -NCIT:C159313 Borderline Ovarian Seromucinous Tumor/Atypical Proliferative Ovarian Seromucinous Tumor with Microinvasion 9 20995 -NCIT:C7281 Borderline Ovarian Seromucinous Tumor/Atypical Proliferative Ovarian Seromucinous Tumor 9 20996 -NCIT:C40090 Ovarian Seromucinous Carcinoma 8 20997 -NCIT:C178669 Recurrent Ovarian Seromucinous Carcinoma 9 20998 -NCIT:C178671 Refractory Ovarian Seromucinous Carcinoma 9 20999 -NCIT:C7282 Benign Ovarian Seromucinous Tumor 8 21000 -NCIT:C126310 Ovarian Seromucinous Cystadenoma 9 21001 -NCIT:C126311 Ovarian Seromucinous Adenofibroma 9 21002 -NCIT:C4510 Benign Ovarian Epithelial Tumor 7 21003 -NCIT:C40039 Benign Ovarian Mucinous Tumor 8 21004 -NCIT:C40040 Ovarian Mucinous Adenofibroma 9 21005 -NCIT:C40041 Ovarian Mucinous Cystadenofibroma 10 21006 -NCIT:C4512 Ovarian Mucinous Cystadenoma 9 21007 -NCIT:C40072 Benign Ovarian Endometrioid Tumor 8 21008 -NCIT:C27287 Ovarian Endometrioid Adenofibroma 9 21009 -NCIT:C27288 Ovarian Endometrioid Cystadenofibroma 10 21010 -NCIT:C40075 Ovarian Endometrioid Cystadenoma 9 21011 -NCIT:C40084 Benign Ovarian Clear Cell Tumor 8 21012 -NCIT:C40085 Ovarian Clear Cell Adenofibroma 9 21013 -NCIT:C40086 Ovarian Clear Cell Cystadenofibroma 10 21014 -NCIT:C4060 Ovarian Cystadenoma 8 21015 -NCIT:C126310 Ovarian Seromucinous Cystadenoma 9 21016 -NCIT:C40075 Ovarian Endometrioid Cystadenoma 9 21017 -NCIT:C4511 Ovarian Serous Cystadenoma 9 21018 -NCIT:C7278 Ovarian Papillary Cystadenoma 10 21019 -NCIT:C4512 Ovarian Mucinous Cystadenoma 9 21020 -NCIT:C4746 Benign Ovarian Brenner Tumor 8 21021 -NCIT:C7282 Benign Ovarian Seromucinous Tumor 8 21022 -NCIT:C126310 Ovarian Seromucinous Cystadenoma 9 21023 -NCIT:C126311 Ovarian Seromucinous Adenofibroma 9 21024 -NCIT:C7313 Benign Ovarian Serous Tumor 8 21025 -NCIT:C40031 Ovarian Serous Adenofibroma 9 21026 -NCIT:C40032 Ovarian Serous Cystadenofibroma 10 21027 -NCIT:C4511 Ovarian Serous Cystadenoma 9 21028 -NCIT:C7278 Ovarian Papillary Cystadenoma 10 21029 -NCIT:C7279 Ovarian Surface Papilloma 9 21030 -NCIT:C4783 Borderline Ovarian Epithelial Tumor 7 21031 -NCIT:C115352 Recurrent Borderline Ovarian Surface Epithelial-Stromal Tumor 8 21032 -NCIT:C158616 Borderline Ovarian Mixed Epithelial Tumor/Atypical Proliferative Ovarian Mixed Epithelial Tumor 8 21033 -NCIT:C7281 Borderline Ovarian Seromucinous Tumor/Atypical Proliferative Ovarian Seromucinous Tumor 9 21034 -NCIT:C179251 Borderline Ovarian Endometrioid Tumor 8 21035 -NCIT:C159486 Borderline Ovarian Endometrioid Tumor/Atypical Proliferative Ovarian Endometrioid Tumor with Microinvasion 9 21036 -NCIT:C7983 Borderline Ovarian Endometrioid Tumor/Atypical Proliferative Ovarian Endometrioid Tumor 9 21037 -NCIT:C40069 Borderline Ovarian Endometrioid Adenofibroma 10 21038 -NCIT:C27289 Borderline Ovarian Endometrioid Cystadenofibroma 11 21039 -NCIT:C179259 Borderline Ovarian Seromucinous Tumor 8 21040 -NCIT:C159313 Borderline Ovarian Seromucinous Tumor/Atypical Proliferative Ovarian Seromucinous Tumor with Microinvasion 9 21041 -NCIT:C7281 Borderline Ovarian Seromucinous Tumor/Atypical Proliferative Ovarian Seromucinous Tumor 9 21042 -NCIT:C40036 Borderline Ovarian Mucinous Tumor 8 21043 -NCIT:C122586 Borderline Ovarian Mucinous Tumor/Atypical Proliferative Ovarian Mucinous Tumor 9 21044 -NCIT:C159312 Borderline Ovarian Mucinous Tumor/Atypical Proliferative Ovarian Mucinous Tumor with Intraepithelial Carcinoma 10 21045 -NCIT:C40037 Borderline Ovarian Mucinous Tumor, Intestinal Type 9 21046 -NCIT:C40038 Borderline Ovarian Mucinous Tumor, Endocervical-Like 9 21047 -NCIT:C66775 Borderline Ovarian Mucinous Adenofibroma 9 21048 -NCIT:C40080 Borderline Ovarian Clear Cell Tumor 8 21049 -NCIT:C40081 Borderline Ovarian Clear Cell Adenofibroma 9 21050 -NCIT:C126308 Borderline Ovarian Clear Cell Tumor/Atypical Proliferative Ovarian Clear Cell Tumor 10 21051 -NCIT:C40082 Borderline Ovarian Clear Cell Tumor/Atypical Proliferative Ovarian Clear Cell Tumor with Intraepithelial Carcinoma 11 21052 -NCIT:C40083 Borderline Ovarian Clear Cell Cystadenofibroma 10 21053 -NCIT:C5226 Borderline Ovarian Serous Tumor 8 21054 -NCIT:C122584 Borderline Ovarian Serous Tumor/Atypical Proliferative Ovarian Serous Tumor 9 21055 -NCIT:C122585 Borderline Ovarian Serous Tumor-Micropapillary Variant/Non-Invasive Low Grade Ovarian Serous Carcinoma 9 21056 -NCIT:C40028 Borderline Ovarian Serous Adenofibroma 9 21057 -NCIT:C40029 Borderline Ovarian Serous Cystadenofibroma 10 21058 -NCIT:C9459 Borderline Ovarian Brenner Tumor 8 21059 -NCIT:C94821 Stage I Borderline Ovarian Surface Epithelial-Stromal Tumor 8 21060 -NCIT:C94822 Stage II Borderline Ovarian Surface Epithelial-Stromal Tumor 8 21061 -NCIT:C94824 Stage III Borderline Ovarian Surface Epithelial-Stromal Tumor 8 21062 -NCIT:C94825 Stage IV Borderline Ovarian Surface Epithelial-Stromal Tumor 8 21063 -NCIT:C5242 Ovarian Mucinous Tumor 7 21064 -NCIT:C159311 Borderline Ovarian Mucinous Tumor/Atypical Proliferative Ovarian Mucinous Tumor with Microinvasion 8 21065 -NCIT:C40033 Malignant Ovarian Mucinous Tumor 8 21066 -NCIT:C40034 Ovarian Mucinous Adenocarcinofibroma 9 21067 -NCIT:C5243 Ovarian Mucinous Adenocarcinoma 9 21068 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 10 21069 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 10 21070 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 10 21071 -NCIT:C183245 Unresectable Ovarian Mucinous Adenocarcinoma 10 21072 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 10 21073 -NCIT:C40036 Borderline Ovarian Mucinous Tumor 8 21074 -NCIT:C122586 Borderline Ovarian Mucinous Tumor/Atypical Proliferative Ovarian Mucinous Tumor 9 21075 -NCIT:C159312 Borderline Ovarian Mucinous Tumor/Atypical Proliferative Ovarian Mucinous Tumor with Intraepithelial Carcinoma 10 21076 -NCIT:C40037 Borderline Ovarian Mucinous Tumor, Intestinal Type 9 21077 -NCIT:C40038 Borderline Ovarian Mucinous Tumor, Endocervical-Like 9 21078 -NCIT:C66775 Borderline Ovarian Mucinous Adenofibroma 9 21079 -NCIT:C40039 Benign Ovarian Mucinous Tumor 8 21080 -NCIT:C40040 Ovarian Mucinous Adenofibroma 9 21081 -NCIT:C40041 Ovarian Mucinous Cystadenofibroma 10 21082 -NCIT:C4512 Ovarian Mucinous Cystadenoma 9 21083 -NCIT:C40042 Ovarian Mucinous Cystic Tumor with Mural Nodules 8 21084 -NCIT:C40043 Ovarian Mucinous Cystic Tumor Associated with Pseudomyxoma Peritonei 8 21085 -NCIT:C6257 Ovarian Endometrioid Tumor 7 21086 -NCIT:C179251 Borderline Ovarian Endometrioid Tumor 8 21087 -NCIT:C159486 Borderline Ovarian Endometrioid Tumor/Atypical Proliferative Ovarian Endometrioid Tumor with Microinvasion 9 21088 -NCIT:C7983 Borderline Ovarian Endometrioid Tumor/Atypical Proliferative Ovarian Endometrioid Tumor 9 21089 -NCIT:C40069 Borderline Ovarian Endometrioid Adenofibroma 10 21090 -NCIT:C27289 Borderline Ovarian Endometrioid Cystadenofibroma 11 21091 -NCIT:C40051 Malignant Ovarian Endometrioid Tumor 8 21092 -NCIT:C7979 Ovarian Endometrioid Adenocarcinoma 9 21093 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 10 21094 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 10 21095 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 10 21096 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 11 21097 -NCIT:C186273 Unresectable Ovarian Endometrioid Adenocarcinoma 10 21098 -NCIT:C40061 Ovarian Endometrioid Adenocarcinoma with Squamous Differentiation 10 21099 -NCIT:C9192 Ovarian Carcinosarcoma 9 21100 -NCIT:C153347 Recurrent Ovarian Carcinosarcoma 10 21101 -NCIT:C170933 Metastatic Ovarian Carcinosarcoma 10 21102 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 11 21103 -NCIT:C40072 Benign Ovarian Endometrioid Tumor 8 21104 -NCIT:C27287 Ovarian Endometrioid Adenofibroma 9 21105 -NCIT:C27288 Ovarian Endometrioid Cystadenofibroma 10 21106 -NCIT:C40075 Ovarian Endometrioid Cystadenoma 9 21107 -NCIT:C8430 Ovarian Papillary Tumor 7 21108 -NCIT:C6256 Ovarian Serous Surface Papillary Adenocarcinoma 8 21109 -NCIT:C7278 Ovarian Papillary Cystadenoma 8 21110 -NCIT:C7279 Ovarian Surface Papilloma 8 21111 -NCIT:C8431 Ovarian Serous Tumor 7 21112 -NCIT:C40025 Malignant Ovarian Serous Tumor 8 21113 -NCIT:C67092 Ovarian Serous Adenocarcinofibroma 9 21114 -NCIT:C7550 Ovarian Serous Adenocarcinoma 9 21115 -NCIT:C105555 Ovarian High Grade Serous Adenocarcinoma 10 21116 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 11 21117 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 11 21118 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 11 21119 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 21120 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 11 21121 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 21122 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 12 21123 -NCIT:C105556 Ovarian Low Grade Serous Adenocarcinoma 10 21124 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 11 21125 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 11 21126 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 10 21127 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 11 21128 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 11 21129 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 11 21130 -NCIT:C160781 Unresectable Ovarian Serous Adenocarcinoma 10 21131 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 11 21132 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 21133 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 10 21134 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 11 21135 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 12 21136 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 12 21137 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 11 21138 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 21139 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 12 21140 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 11 21141 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 12 21142 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 12 21143 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 11 21144 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 12 21145 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 21146 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 10 21147 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 11 21148 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 11 21149 -NCIT:C6256 Ovarian Serous Surface Papillary Adenocarcinoma 10 21150 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 10 21151 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 11 21152 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 12 21153 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 12 21154 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 11 21155 -NCIT:C40027 Borderline Ovarian Serous Tumor/Atypical Proliferative Ovarian Serous Tumor with Microinvasion 8 21156 -NCIT:C5226 Borderline Ovarian Serous Tumor 8 21157 -NCIT:C122584 Borderline Ovarian Serous Tumor/Atypical Proliferative Ovarian Serous Tumor 9 21158 -NCIT:C122585 Borderline Ovarian Serous Tumor-Micropapillary Variant/Non-Invasive Low Grade Ovarian Serous Carcinoma 9 21159 -NCIT:C40028 Borderline Ovarian Serous Adenofibroma 9 21160 -NCIT:C40029 Borderline Ovarian Serous Cystadenofibroma 10 21161 -NCIT:C7313 Benign Ovarian Serous Tumor 8 21162 -NCIT:C40031 Ovarian Serous Adenofibroma 9 21163 -NCIT:C40032 Ovarian Serous Cystadenofibroma 10 21164 -NCIT:C4511 Ovarian Serous Cystadenoma 9 21165 -NCIT:C7278 Ovarian Papillary Cystadenoma 10 21166 -NCIT:C7279 Ovarian Surface Papilloma 9 21167 -NCIT:C4862 Ovarian Sex Cord-Stromal Tumor 6 21168 -NCIT:C3072 Ovarian Gynandroblastoma 7 21169 -NCIT:C189333 Childhood Ovarian Gynandroblastoma 8 21170 -NCIT:C39966 Ovarian Sertoli-Stromal Cell Tumor 7 21171 -NCIT:C2880 Ovarian Sertoli-Leydig Cell Tumor 8 21172 -NCIT:C189292 Childhood Ovarian Sertoli-Leydig Cell Tumor 9 21173 -NCIT:C189319 Ovarian Sertoli-Leydig Cell Tumor Molecular Subtypes 9 21174 -NCIT:C189328 DICER1-Mutant Ovarian Sertoli-Leydig Cell Tumor 10 21175 -NCIT:C189329 FOXL2 c.402C>G (p.Cys134Trp)-Mutant Ovarian Sertoli-Leydig Cell Tumor 10 21176 -NCIT:C189331 DICER1/FOXL2-Wildtype Ovarian Sertoli-Leydig Cell Tumor 10 21177 -NCIT:C39968 Moderately Differentiated Ovarian Sertoli-Leydig Cell Tumor 9 21178 -NCIT:C39972 Moderately Differentiated Ovarian Sertoli-Leydig Cell Tumor, Variant with Heterologous Elements 10 21179 -NCIT:C39970 Ovarian Sertoli-Leydig Cell Tumor with Heterologous Elements 9 21180 -NCIT:C126322 Ovarian Retiform Sertoli-Leydig Cell Tumor, Variant with Heterologous Elements 10 21181 -NCIT:C39972 Moderately Differentiated Ovarian Sertoli-Leydig Cell Tumor, Variant with Heterologous Elements 10 21182 -NCIT:C39973 Poorly Differentiated Ovarian Sertoli-Leydig Cell Tumor, Variant with Heterologous Elements 10 21183 -NCIT:C39971 Ovarian Retiform Sertoli-Leydig Cell Tumor 9 21184 -NCIT:C126322 Ovarian Retiform Sertoli-Leydig Cell Tumor, Variant with Heterologous Elements 10 21185 -NCIT:C39974 Ovarian Sertoli-Leydig Cell Tumor with Retiform Elements 9 21186 -NCIT:C4209 Well Differentiated Ovarian Sertoli-Leydig Cell Tumor 9 21187 -NCIT:C4210 Poorly Differentiated Ovarian Sertoli-Leydig Cell Tumor 9 21188 -NCIT:C39973 Poorly Differentiated Ovarian Sertoli-Leydig Cell Tumor, Variant with Heterologous Elements 10 21189 -NCIT:C39977 Ovarian Stromal-Leydig Cell Tumor 8 21190 -NCIT:C7133 Ovarian Sertoli Cell Tumor 8 21191 -NCIT:C4211 Ovarian Sertoli Cell Tumor with Lipid Storage 9 21192 -NCIT:C39978 Ovarian Sex Cord-Stromal Tumor, Not Otherwise Specified 7 21193 -NCIT:C40436 Ovarian Sex Cord-Stromal Tumor Associated with Peutz-Jeghers Syndrome 7 21194 -NCIT:C4208 Ovarian Sex Cord Tumor with Annular Tubules 7 21195 -NCIT:C4215 Ovarian Steroid Cell Tumor 7 21196 -NCIT:C3202 Ovarian Stromal Luteoma 8 21197 -NCIT:C39979 Ovarian Steroid Cell Tumor, Not Otherwise Specified 8 21198 -NCIT:C39980 Well Differentiated Ovarian Steroid Cell Tumor 9 21199 -NCIT:C39981 Malignant Ovarian Steroid Cell Tumor 9 21200 -NCIT:C5231 Ovarian Leydig Cell Tumor 8 21201 -NCIT:C39983 Ovarian Leydig Cell Tumor, Non-Hilar Type 9 21202 -NCIT:C39984 Ovarian Leydig Cell Tumor, Not Otherwise Specified 9 21203 -NCIT:C4214 Ovarian Hilus Cell Tumor 9 21204 -NCIT:C66749 Ovarian Stromal Tumor with Minor Sex Cord Elements 7 21205 -NCIT:C6803 Benign Ovarian Sex Cord-Stromal Tumor 7 21206 -NCIT:C121953 Ovarian Microcystic Stromal Tumor 8 21207 -NCIT:C3498 Ovarian Fibroma 8 21208 -NCIT:C189288 Childhood Ovarian Fibroma 9 21209 -NCIT:C7291 Ovarian Cellular Fibroma 9 21210 -NCIT:C39977 Ovarian Stromal-Leydig Cell Tumor 8 21211 -NCIT:C4204 Ovarian Sclerosing Stromal Tumor 8 21212 -NCIT:C189289 Childhood Ovarian Sclerosing Stromal Tumor 9 21213 -NCIT:C5219 Benign Ovarian Thecoma 8 21214 -NCIT:C39964 Typical Ovarian Thecoma 9 21215 -NCIT:C6264 Benign Ovarian Luteinized Thecoma 9 21216 -NCIT:C126321 Ovarian Luteinized Thecoma Associated with Sclerosing Peritonitis 10 21217 -NCIT:C7287 Ovarian Granulosa-Stromal Cell Tumor 7 21218 -NCIT:C6261 Ovarian Granulosa Cell Tumor 8 21219 -NCIT:C7288 Adult Ovarian Granulosa Cell Tumor 9 21220 -NCIT:C7289 Juvenile Ovarian Granulosa Cell Tumor 9 21221 -NCIT:C40434 Juvenile Bilateral Ovarian Granulosa Cell Tumor 10 21222 -NCIT:C8403 Malignant Ovarian Granulosa Cell Tumor 9 21223 -NCIT:C160619 Recurrent Malignant Ovarian Granulosa Cell Tumor 10 21224 -NCIT:C7290 Ovarian Tumor of the Thecoma/Fibroma Group 8 21225 -NCIT:C3498 Ovarian Fibroma 9 21226 -NCIT:C189288 Childhood Ovarian Fibroma 10 21227 -NCIT:C7291 Ovarian Cellular Fibroma 10 21228 -NCIT:C39965 Ovarian Signet Ring Stromal Tumor 9 21229 -NCIT:C4204 Ovarian Sclerosing Stromal Tumor 9 21230 -NCIT:C189289 Childhood Ovarian Sclerosing Stromal Tumor 10 21231 -NCIT:C66989 Ovarian Thecoma 9 21232 -NCIT:C4203 Ovarian Luteinized Thecoma 10 21233 -NCIT:C6263 Malignant Ovarian Luteinized Thecoma 11 21234 -NCIT:C6264 Benign Ovarian Luteinized Thecoma 11 21235 -NCIT:C126321 Ovarian Luteinized Thecoma Associated with Sclerosing Peritonitis 12 21236 -NCIT:C5219 Benign Ovarian Thecoma 10 21237 -NCIT:C39964 Typical Ovarian Thecoma 11 21238 -NCIT:C6264 Benign Ovarian Luteinized Thecoma 11 21239 -NCIT:C126321 Ovarian Luteinized Thecoma Associated with Sclerosing Peritonitis 12 21240 -NCIT:C6929 Malignant Ovarian Thecoma 10 21241 -NCIT:C6263 Malignant Ovarian Luteinized Thecoma 11 21242 -NCIT:C8053 Malignant Ovarian Sex Cord-Stromal Tumor 7 21243 -NCIT:C39981 Malignant Ovarian Steroid Cell Tumor 8 21244 -NCIT:C4210 Poorly Differentiated Ovarian Sertoli-Leydig Cell Tumor 8 21245 -NCIT:C39973 Poorly Differentiated Ovarian Sertoli-Leydig Cell Tumor, Variant with Heterologous Elements 9 21246 -NCIT:C6929 Malignant Ovarian Thecoma 8 21247 -NCIT:C6263 Malignant Ovarian Luteinized Thecoma 9 21248 -NCIT:C8403 Malignant Ovarian Granulosa Cell Tumor 8 21249 -NCIT:C160619 Recurrent Malignant Ovarian Granulosa Cell Tumor 9 21250 -NCIT:C5237 Ovarian Neuroendocrine Neoplasm 6 21251 -NCIT:C171032 Ovarian Neuroendocrine Carcinoma 7 21252 -NCIT:C40440 Ovarian Small Cell Carcinoma, Pulmonary-Type 8 21253 -NCIT:C5238 Ovarian Large Cell Neuroendocrine Carcinoma 8 21254 -NCIT:C5229 Ovarian Carcinoid Tumor 7 21255 -NCIT:C188015 Ovarian Teratoma with Carcinoid Tumor 8 21256 -NCIT:C4292 Strumal Carcinoid 9 21257 -NCIT:C40013 Ovarian Insular Carcinoid Tumor 8 21258 -NCIT:C40014 Ovarian Trabecular Carcinoid Tumor 8 21259 -NCIT:C40015 Ovarian Mucinous Carcinoid Tumor 8 21260 -NCIT:C5244 Ovarian Soft Tissue Neoplasm 6 21261 -NCIT:C179359 Ovarian Smooth Muscle Neoplasm 7 21262 -NCIT:C179360 Ovarian Leiomyoma 8 21263 -NCIT:C179362 Ovarian Smooth Muscle Tumor of Uncertain Malignant Potential 8 21264 -NCIT:C5234 Ovarian Leiomyosarcoma 8 21265 -NCIT:C3498 Ovarian Fibroma 7 21266 -NCIT:C189288 Childhood Ovarian Fibroma 8 21267 -NCIT:C7291 Ovarian Cellular Fibroma 8 21268 -NCIT:C40065 Ovarian Endometrioid Stromal and Related Neoplasms 7 21269 -NCIT:C40063 Ovarian Low Grade Endometrioid Stromal Sarcoma 8 21270 -NCIT:C40066 Ovarian Undifferentiated Sarcoma 8 21271 -NCIT:C5245 Ovarian Myxoma 7 21272 -NCIT:C8267 Ovarian Sarcoma 7 21273 -NCIT:C40063 Ovarian Low Grade Endometrioid Stromal Sarcoma 8 21274 -NCIT:C40066 Ovarian Undifferentiated Sarcoma 8 21275 -NCIT:C5232 Ovarian Angiosarcoma 8 21276 -NCIT:C5233 Ovarian Fibrosarcoma 8 21277 -NCIT:C5234 Ovarian Leiomyosarcoma 8 21278 -NCIT:C5236 Ovarian Rhabdomyosarcoma 8 21279 -NCIT:C6419 Ovarian Liposarcoma 8 21280 -NCIT:C5235 Ovarian Myxoid Liposarcoma 9 21281 -NCIT:C7317 Ovarian Adenosarcoma 8 21282 -NCIT:C7321 Ovarian Mixed Germ Cell-Sex Cord-Stromal Tumor 6 21283 -NCIT:C179475 Ovarian Mixed Germ Cell-Sex Cord-Stromal Tumor, Unclassified 7 21284 -NCIT:C39985 Ovarian Gonadoblastoma 7 21285 -NCIT:C7431 Malignant Ovarian Neoplasm 6 21286 -NCIT:C165261 Solid Pseudopapillary Neoplasm of the Ovary 7 21287 -NCIT:C178441 Ovarian Melanoma 7 21288 -NCIT:C179474 Ovarian Neuroectodermal-Type Tumor 7 21289 -NCIT:C190659 Childhood Malignant Ovarian Neoplasm 7 21290 -NCIT:C171169 Extrarenal Rhabdoid Tumor of the Ovary 8 21291 -NCIT:C171170 Recurrent Extrarenal Rhabdoid Tumor of the Ovary 9 21292 -NCIT:C171171 Refractory Extrarenal Rhabdoid Tumor of the Ovary 9 21293 -NCIT:C189334 Childhood Ovarian Small Cell Carcinoma, Hypercalcemic Type 8 21294 -NCIT:C68629 Childhood Malignant Ovarian Germ Cell Tumor 8 21295 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 9 21296 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 9 21297 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 9 21298 -NCIT:C6550 Childhood Ovarian Dysgerminoma 9 21299 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 9 21300 -NCIT:C40021 Ovarian Lymphoma 7 21301 -NCIT:C40026 Malignant Ovarian Epithelial Tumor 7 21302 -NCIT:C40025 Malignant Ovarian Serous Tumor 8 21303 -NCIT:C67092 Ovarian Serous Adenocarcinofibroma 9 21304 -NCIT:C7550 Ovarian Serous Adenocarcinoma 9 21305 -NCIT:C105555 Ovarian High Grade Serous Adenocarcinoma 10 21306 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 11 21307 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 11 21308 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 11 21309 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 21310 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 11 21311 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 21312 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 12 21313 -NCIT:C105556 Ovarian Low Grade Serous Adenocarcinoma 10 21314 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 11 21315 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 11 21316 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 10 21317 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 11 21318 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 11 21319 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 11 21320 -NCIT:C160781 Unresectable Ovarian Serous Adenocarcinoma 10 21321 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 11 21322 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 21323 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 10 21324 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 11 21325 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 12 21326 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 12 21327 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 11 21328 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 21329 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 12 21330 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 11 21331 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 12 21332 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 12 21333 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 11 21334 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 12 21335 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 21336 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 10 21337 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 11 21338 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 11 21339 -NCIT:C6256 Ovarian Serous Surface Papillary Adenocarcinoma 10 21340 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 10 21341 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 11 21342 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 12 21343 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 12 21344 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 11 21345 -NCIT:C40033 Malignant Ovarian Mucinous Tumor 8 21346 -NCIT:C40034 Ovarian Mucinous Adenocarcinofibroma 9 21347 -NCIT:C5243 Ovarian Mucinous Adenocarcinoma 9 21348 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 10 21349 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 10 21350 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 10 21351 -NCIT:C183245 Unresectable Ovarian Mucinous Adenocarcinoma 10 21352 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 10 21353 -NCIT:C40051 Malignant Ovarian Endometrioid Tumor 8 21354 -NCIT:C7979 Ovarian Endometrioid Adenocarcinoma 9 21355 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 10 21356 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 10 21357 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 10 21358 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 11 21359 -NCIT:C186273 Unresectable Ovarian Endometrioid Adenocarcinoma 10 21360 -NCIT:C40061 Ovarian Endometrioid Adenocarcinoma with Squamous Differentiation 10 21361 -NCIT:C9192 Ovarian Carcinosarcoma 9 21362 -NCIT:C153347 Recurrent Ovarian Carcinosarcoma 10 21363 -NCIT:C170933 Metastatic Ovarian Carcinosarcoma 10 21364 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 11 21365 -NCIT:C40077 Malignant Ovarian Clear Cell Tumor 8 21366 -NCIT:C40078 Ovarian Clear Cell Adenocarcinoma 9 21367 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 10 21368 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 10 21369 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 11 21370 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 10 21371 -NCIT:C7980 Ovarian Clear Cell Cystadenocarcinoma 10 21372 -NCIT:C40079 Ovarian Clear Cell Adenocarcinofibroma 9 21373 -NCIT:C4908 Ovarian Carcinoma 8 21374 -NCIT:C128081 Ovarian Cancer by FIGO Stage 9 21375 -NCIT:C128082 FIGO Stage IC1 Ovarian Cancer 10 21376 -NCIT:C128083 FIGO Stage IC2 Ovarian Cancer 10 21377 -NCIT:C128084 FIGO Stage IC3 Ovarian Cancer 10 21378 -NCIT:C128085 FIGO Stage II Ovarian Cancer 10 21379 -NCIT:C5223 Stage IIA Ovarian Cancer AJCC V6 and v7 11 21380 -NCIT:C5224 Stage IIB Ovarian Cancer AJCC v6 and v7 11 21381 -NCIT:C128086 FIGO Stage III Ovarian Cancer 10 21382 -NCIT:C128087 FIGO Stage IIIA Ovarian Cancer 11 21383 -NCIT:C128088 FIGO Stage IIIA1 Ovarian Cancer 12 21384 -NCIT:C128089 FIGO Stage IIIA1(i) Ovarian Cancer 13 21385 -NCIT:C128090 FIGO Stage IIIA1(ii) Ovarian Cancer 13 21386 -NCIT:C128091 FIGO Stage IIIA2 Ovarian Cancer 12 21387 -NCIT:C128092 FIGO Stage IIIB Ovarian Cancer 11 21388 -NCIT:C128093 FIGO Stage IIIC Ovarian Cancer 11 21389 -NCIT:C128094 FIGO Stage IVA Ovarian Cancer 10 21390 -NCIT:C128095 FIGO Stage IVB Ovarian Cancer 10 21391 -NCIT:C7829 Stage I Ovarian Cancer AJCC v6 and v7 10 21392 -NCIT:C5220 Stage IA Ovarian Cancer AJCC v6 and v7 11 21393 -NCIT:C5221 Stage IB Ovarian Cancer AJCC v6 and v7 11 21394 -NCIT:C5222 Stage IC Ovarian Cancer AJCC v6 and v7 11 21395 -NCIT:C7832 Stage IV Ovarian Cancer AJCC v6 and v7 10 21396 -NCIT:C128106 Ovarian Cancer by AJCC v6 and v7 Stage 9 21397 -NCIT:C7829 Stage I Ovarian Cancer AJCC v6 and v7 10 21398 -NCIT:C5220 Stage IA Ovarian Cancer AJCC v6 and v7 11 21399 -NCIT:C5221 Stage IB Ovarian Cancer AJCC v6 and v7 11 21400 -NCIT:C5222 Stage IC Ovarian Cancer AJCC v6 and v7 11 21401 -NCIT:C7830 Stage II Ovarian Cancer AJCC v6 and v7 10 21402 -NCIT:C5223 Stage IIA Ovarian Cancer AJCC V6 and v7 11 21403 -NCIT:C5224 Stage IIB Ovarian Cancer AJCC v6 and v7 11 21404 -NCIT:C5225 Stage IIC Ovarian Cancer AJCC v6 and v7 11 21405 -NCIT:C7831 Stage III Ovarian Cancer AJCC v6 and v7 10 21406 -NCIT:C6258 Stage IIIA Ovarian Cancer AJCC v6 and v7 11 21407 -NCIT:C6259 Stage IIIB Ovarian Cancer AJCC v6 and v7 11 21408 -NCIT:C6260 Stage IIIC Ovarian Cancer AJCC v6 and v7 11 21409 -NCIT:C7832 Stage IV Ovarian Cancer AJCC v6 and v7 10 21410 -NCIT:C139963 Ovarian Cancer by AJCC v8 Stage 9 21411 -NCIT:C139964 Stage I Ovarian Cancer AJCC v8 10 21412 -NCIT:C139965 Stage IA Ovarian Cancer AJCC v8 11 21413 -NCIT:C139966 Stage IB Ovarian Cancer AJCC v8 11 21414 -NCIT:C139967 Stage IC Ovarian Cancer AJCC v8 11 21415 -NCIT:C139968 Stage II Ovarian Cancer AJCC v8 10 21416 -NCIT:C139969 Stage IIA Ovarian Cancer AJCC v8 11 21417 -NCIT:C139970 Stage IIB Ovarian Cancer AJCC v8 11 21418 -NCIT:C139971 Stage III Ovarian Cancer AJCC v8 10 21419 -NCIT:C139972 Stage IIIA Ovarian Cancer AJCC v8 11 21420 -NCIT:C139973 Stage IIIA1 Ovarian Cancer AJCC v8 12 21421 -NCIT:C139974 Stage IIIA2 Ovarian Cancer AJCC v8 12 21422 -NCIT:C139975 Stage IIIB Ovarian Cancer AJCC v8 11 21423 -NCIT:C139976 Stage IIIC Ovarian Cancer AJCC v8 11 21424 -NCIT:C139977 Stage IV Ovarian Cancer AJCC v8 10 21425 -NCIT:C139978 Stage IVA Ovarian Cancer AJCC v8 11 21426 -NCIT:C139979 Stage IVB Ovarian Cancer AJCC v8 11 21427 -NCIT:C150091 Refractory Ovarian Carcinoma 9 21428 -NCIT:C147561 Platinum-Resistant Ovarian Carcinoma 10 21429 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 11 21430 -NCIT:C179459 Unresectable Platinum-Resistant Ovarian Carcinoma 11 21431 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 11 21432 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 12 21433 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 12 21434 -NCIT:C170968 Refractory Ovarian Adenocarcinoma 10 21435 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 11 21436 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 11 21437 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 12 21438 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 12 21439 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 11 21440 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 11 21441 -NCIT:C178671 Refractory Ovarian Seromucinous Carcinoma 10 21442 -NCIT:C178682 Refractory Ovarian Transitional Cell Carcinoma 10 21443 -NCIT:C178683 Refractory Ovarian Undifferentiated Carcinoma 10 21444 -NCIT:C178700 Platinum-Refractory Ovarian Carcinoma 10 21445 -NCIT:C179207 Refractory Ovarian Squamous Cell Carcinoma 10 21446 -NCIT:C183126 Refractory Malignant Ovarian Brenner Tumor 10 21447 -NCIT:C156064 Metastatic Ovarian Carcinoma 9 21448 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 10 21449 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 11 21450 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 12 21451 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 12 21452 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 11 21453 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 21454 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 12 21455 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 11 21456 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 12 21457 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 12 21458 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 11 21459 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 12 21460 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 21461 -NCIT:C165458 Advanced Ovarian Carcinoma 10 21462 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 11 21463 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 12 21464 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 12 21465 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 11 21466 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 11 21467 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 11 21468 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 11 21469 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 10 21470 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 11 21471 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 12 21472 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 21473 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 11 21474 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 10 21475 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 11 21476 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 10 21477 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 11 21478 -NCIT:C172234 Metastatic Ovarian Undifferentiated Carcinoma 10 21479 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 10 21480 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 11 21481 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 11 21482 -NCIT:C180333 Metastatic Microsatellite Stable Ovarian Carcinoma 10 21483 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 11 21484 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 10 21485 -NCIT:C27391 Metastatic Ovarian Small Cell Carcinoma, Hypercalcemic Type 10 21486 -NCIT:C159902 Platinum-Sensitive Ovarian Carcinoma 9 21487 -NCIT:C188391 Recurrent Platinum-Sensitive Ovarian Carcinoma 10 21488 -NCIT:C167073 Unresectable Ovarian Carcinoma 9 21489 -NCIT:C160781 Unresectable Ovarian Serous Adenocarcinoma 10 21490 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 11 21491 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 21492 -NCIT:C172235 Unresectable Ovarian Undifferentiated Carcinoma 10 21493 -NCIT:C179459 Unresectable Platinum-Resistant Ovarian Carcinoma 10 21494 -NCIT:C183245 Unresectable Ovarian Mucinous Adenocarcinoma 10 21495 -NCIT:C186273 Unresectable Ovarian Endometrioid Adenocarcinoma 10 21496 -NCIT:C171032 Ovarian Neuroendocrine Carcinoma 9 21497 -NCIT:C40440 Ovarian Small Cell Carcinoma, Pulmonary-Type 10 21498 -NCIT:C5238 Ovarian Large Cell Neuroendocrine Carcinoma 10 21499 -NCIT:C179334 Ovarian Dedifferentiated Carcinoma 9 21500 -NCIT:C180332 Microsatellite Stable Ovarian Carcinoma 9 21501 -NCIT:C180333 Metastatic Microsatellite Stable Ovarian Carcinoma 10 21502 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 11 21503 -NCIT:C27390 Ovarian Small Cell Carcinoma 9 21504 -NCIT:C40439 Ovarian Small Cell Carcinoma, Hypercalcemic Type 10 21505 -NCIT:C189334 Childhood Ovarian Small Cell Carcinoma, Hypercalcemic Type 11 21506 -NCIT:C27391 Metastatic Ovarian Small Cell Carcinoma, Hypercalcemic Type 11 21507 -NCIT:C40440 Ovarian Small Cell Carcinoma, Pulmonary-Type 10 21508 -NCIT:C36102 Hereditary Ovarian Carcinoma 9 21509 -NCIT:C148024 BRCA-Associated Ovarian Carcinoma 10 21510 -NCIT:C148025 Recurrent BRCA- Associated Ovarian Carcinoma 11 21511 -NCIT:C40090 Ovarian Seromucinous Carcinoma 9 21512 -NCIT:C178669 Recurrent Ovarian Seromucinous Carcinoma 10 21513 -NCIT:C178671 Refractory Ovarian Seromucinous Carcinoma 10 21514 -NCIT:C40093 Ovarian Squamous Cell Carcinoma 9 21515 -NCIT:C179207 Refractory Ovarian Squamous Cell Carcinoma 10 21516 -NCIT:C4270 Malignant Ovarian Brenner Tumor 9 21517 -NCIT:C153818 Recurrent Malignant Ovarian Brenner Tumor 10 21518 -NCIT:C183126 Refractory Malignant Ovarian Brenner Tumor 10 21519 -NCIT:C4509 Ovarian Undifferentiated Carcinoma 9 21520 -NCIT:C170754 Recurrent Ovarian Undifferentiated Carcinoma 10 21521 -NCIT:C172234 Metastatic Ovarian Undifferentiated Carcinoma 10 21522 -NCIT:C172235 Unresectable Ovarian Undifferentiated Carcinoma 10 21523 -NCIT:C178683 Refractory Ovarian Undifferentiated Carcinoma 10 21524 -NCIT:C5240 Ovarian Transitional Cell Carcinoma 9 21525 -NCIT:C153819 Recurrent Ovarian Transitional Cell Carcinoma 10 21526 -NCIT:C178682 Refractory Ovarian Transitional Cell Carcinoma 10 21527 -NCIT:C7700 Ovarian Adenocarcinoma 9 21528 -NCIT:C153614 Recurrent Ovarian Adenocarcinoma 10 21529 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 11 21530 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 11 21531 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 12 21532 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 12 21533 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 12 21534 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 11 21535 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 11 21536 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 12 21537 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 11 21538 -NCIT:C170968 Refractory Ovarian Adenocarcinoma 10 21539 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 11 21540 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 11 21541 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 12 21542 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 12 21543 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 11 21544 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 11 21545 -NCIT:C179208 Ovarian Signet Ring Cell Carcinoma 10 21546 -NCIT:C179321 Ovarian Mesonephric-Like Adenocarcinoma 10 21547 -NCIT:C179339 Ovarian Mixed Cell Adenocarcinoma 10 21548 -NCIT:C40078 Ovarian Clear Cell Adenocarcinoma 10 21549 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 11 21550 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 11 21551 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 12 21552 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 11 21553 -NCIT:C7980 Ovarian Clear Cell Cystadenocarcinoma 11 21554 -NCIT:C5228 Ovarian Cystadenocarcinoma 10 21555 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 11 21556 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 12 21557 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 11 21558 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 11 21559 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 12 21560 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 13 21561 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 13 21562 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 12 21563 -NCIT:C7980 Ovarian Clear Cell Cystadenocarcinoma 11 21564 -NCIT:C5243 Ovarian Mucinous Adenocarcinoma 10 21565 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 11 21566 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 11 21567 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 11 21568 -NCIT:C183245 Unresectable Ovarian Mucinous Adenocarcinoma 11 21569 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 11 21570 -NCIT:C7550 Ovarian Serous Adenocarcinoma 10 21571 -NCIT:C105555 Ovarian High Grade Serous Adenocarcinoma 11 21572 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 12 21573 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 12 21574 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 12 21575 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 13 21576 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 12 21577 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 13 21578 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 13 21579 -NCIT:C105556 Ovarian Low Grade Serous Adenocarcinoma 11 21580 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 12 21581 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 12 21582 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 11 21583 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 12 21584 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 12 21585 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 12 21586 -NCIT:C160781 Unresectable Ovarian Serous Adenocarcinoma 11 21587 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 12 21588 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 13 21589 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 11 21590 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 12 21591 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 13 21592 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 13 21593 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 12 21594 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 13 21595 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 13 21596 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 12 21597 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 13 21598 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 13 21599 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 12 21600 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 13 21601 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 13 21602 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 11 21603 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 12 21604 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 12 21605 -NCIT:C6256 Ovarian Serous Surface Papillary Adenocarcinoma 11 21606 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 11 21607 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 12 21608 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 13 21609 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 13 21610 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 12 21611 -NCIT:C7979 Ovarian Endometrioid Adenocarcinoma 10 21612 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 11 21613 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 11 21614 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 11 21615 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 12 21616 -NCIT:C186273 Unresectable Ovarian Endometrioid Adenocarcinoma 11 21617 -NCIT:C40061 Ovarian Endometrioid Adenocarcinoma with Squamous Differentiation 11 21618 -NCIT:C7833 Recurrent Ovarian Carcinoma 9 21619 -NCIT:C148025 Recurrent BRCA- Associated Ovarian Carcinoma 10 21620 -NCIT:C153614 Recurrent Ovarian Adenocarcinoma 10 21621 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 11 21622 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 11 21623 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 12 21624 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 12 21625 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 12 21626 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 11 21627 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 11 21628 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 12 21629 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 11 21630 -NCIT:C153818 Recurrent Malignant Ovarian Brenner Tumor 10 21631 -NCIT:C153819 Recurrent Ovarian Transitional Cell Carcinoma 10 21632 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 10 21633 -NCIT:C170754 Recurrent Ovarian Undifferentiated Carcinoma 10 21634 -NCIT:C178669 Recurrent Ovarian Seromucinous Carcinoma 10 21635 -NCIT:C188391 Recurrent Platinum-Sensitive Ovarian Carcinoma 10 21636 -NCIT:C190201 Locally Recurrent Ovarian Carcinoma 10 21637 -NCIT:C40035 Adenocarcinofibroma 7 21638 -NCIT:C40034 Ovarian Mucinous Adenocarcinofibroma 8 21639 -NCIT:C40079 Ovarian Clear Cell Adenocarcinofibroma 8 21640 -NCIT:C67092 Ovarian Serous Adenocarcinofibroma 8 21641 -NCIT:C40443 Ovarian Wilms Tumor 7 21642 -NCIT:C40444 Ovarian Malignant Mesothelioma 7 21643 -NCIT:C4514 Malignant Ovarian Germ Cell Tumor 7 21644 -NCIT:C39986 Ovarian Primitive Germ Cell Tumor 8 21645 -NCIT:C102870 Ovarian Non-Dysgerminomatous Germ Cell Tumor 9 21646 -NCIT:C39990 Ovarian Polyembryoma 10 21647 -NCIT:C8739 Stage I Ovarian Polyembryoma AJCC v6 and v7 11 21648 -NCIT:C8740 Stage II Ovarian Polyembryoma AJCC v6 and v7 11 21649 -NCIT:C8741 Stage III Ovarian Polyembryoma AJCC v6 and v7 11 21650 -NCIT:C8742 Stage IV Ovarian Polyembryoma AJCC v6 and v7 11 21651 -NCIT:C39991 Non-Gestational Ovarian Choriocarcinoma 10 21652 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 11 21653 -NCIT:C8107 Ovarian Yolk Sac Tumor 10 21654 -NCIT:C39987 Ovarian Yolk Sac Tumor, Polyvesicular Vitelline Pattern 11 21655 -NCIT:C39988 Ovarian Yolk Sac Tumor, Glandular Pattern 11 21656 -NCIT:C39989 Ovarian Yolk Sac Tumor, Hepatoid Pattern 11 21657 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 11 21658 -NCIT:C8735 Stage I Ovarian Yolk Sac Tumor AJCC v6 and v7 11 21659 -NCIT:C8736 Stage II Ovarian Yolk Sac Tumor AJCC v6 and v7 11 21660 -NCIT:C8737 Stage III Ovarian Yolk Sac Tumor AJCC v6 and v7 11 21661 -NCIT:C8738 Stage IV Ovarian Yolk Sac Tumor AJCC v6 and v7 11 21662 -NCIT:C8108 Ovarian Embryonal Carcinoma 10 21663 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 11 21664 -NCIT:C8725 Stage II Ovarian Embryonal Carcinoma AJCC v6 and v7 11 21665 -NCIT:C8728 Stage III Ovarian Embryonal Carcinoma AJCC v6 and v7 11 21666 -NCIT:C8729 Stage IV Ovarian Embryonal Carcinoma AJCC v6 and v7 11 21667 -NCIT:C8734 Stage I Ovarian Embryonal Carcinoma AJCC v6 and v7 11 21668 -NCIT:C8106 Ovarian Dysgerminoma 9 21669 -NCIT:C6550 Childhood Ovarian Dysgerminoma 10 21670 -NCIT:C8723 Stage I Ovarian Dysgerminoma AJCC v6 and v7 10 21671 -NCIT:C8724 Stage II Ovarian Dysgerminoma AJCC v6 and v7 10 21672 -NCIT:C8726 Stage III Ovarian Dysgerminoma AJCC v6 and v7 10 21673 -NCIT:C8727 Stage IV Ovarian Dysgerminoma AJCC v6 and v7 10 21674 -NCIT:C8114 Ovarian Mixed Germ Cell Tumor 9 21675 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 10 21676 -NCIT:C39995 Malignant Ovarian Teratoma 8 21677 -NCIT:C4291 Thyroid Carcinoma Arising in Struma Ovarii 8 21678 -NCIT:C68629 Childhood Malignant Ovarian Germ Cell Tumor 8 21679 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 9 21680 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 9 21681 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 9 21682 -NCIT:C6550 Childhood Ovarian Dysgerminoma 9 21683 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 9 21684 -NCIT:C8083 Stage I Ovarian Germ Cell Tumor AJCC v6 and v7 8 21685 -NCIT:C6291 Stage IA Ovarian Germ Cell Tumor AJCC v6 and v7 9 21686 -NCIT:C6292 Stage IB Ovarian Germ Cell Tumor AJCC v6 and v7 9 21687 -NCIT:C6293 Stage IC Ovarian Germ Cell Tumor AJCC v6 and v7 9 21688 -NCIT:C8723 Stage I Ovarian Dysgerminoma AJCC v6 and v7 9 21689 -NCIT:C8734 Stage I Ovarian Embryonal Carcinoma AJCC v6 and v7 9 21690 -NCIT:C8735 Stage I Ovarian Yolk Sac Tumor AJCC v6 and v7 9 21691 -NCIT:C8739 Stage I Ovarian Polyembryoma AJCC v6 and v7 9 21692 -NCIT:C8743 Stage I Ovarian Teratoma AJCC v6 and v7 9 21693 -NCIT:C8084 Stage II Ovarian Germ Cell Tumor AJCC v6 and v7 8 21694 -NCIT:C6294 Stage IIC Ovarian Germ Cell Tumor AJCC v6 and v7 9 21695 -NCIT:C6295 Stage IIB Ovarian Germ Cell Tumor AJCC v6 and v7 9 21696 -NCIT:C6296 Stage IIA Ovarian Germ Cell Tumor AJCC v6 and v7 9 21697 -NCIT:C8724 Stage II Ovarian Dysgerminoma AJCC v6 and v7 9 21698 -NCIT:C8725 Stage II Ovarian Embryonal Carcinoma AJCC v6 and v7 9 21699 -NCIT:C8736 Stage II Ovarian Yolk Sac Tumor AJCC v6 and v7 9 21700 -NCIT:C8740 Stage II Ovarian Polyembryoma AJCC v6 and v7 9 21701 -NCIT:C8744 Stage II Ovarian Teratoma AJCC v6 and v7 9 21702 -NCIT:C8085 Stage III Ovarian Germ Cell Tumor AJCC v6 and v7 8 21703 -NCIT:C6297 Stage IIIA Ovarian Germ Cell Tumor AJCC v6 and v7 9 21704 -NCIT:C6298 Stage IIIB Ovarian Germ Cell Tumor AJCC v6 and v7 9 21705 -NCIT:C6299 Stage IIIC Ovarian Germ Cell Tumor AJCC v6 and v7 9 21706 -NCIT:C8726 Stage III Ovarian Dysgerminoma AJCC v6 and v7 9 21707 -NCIT:C8728 Stage III Ovarian Embryonal Carcinoma AJCC v6 and v7 9 21708 -NCIT:C8737 Stage III Ovarian Yolk Sac Tumor AJCC v6 and v7 9 21709 -NCIT:C8741 Stage III Ovarian Polyembryoma AJCC v6 and v7 9 21710 -NCIT:C8745 Stage III Ovarian Teratoma AJCC v6 and v7 9 21711 -NCIT:C8086 Stage IV Ovarian Germ Cell Tumor AJCC v6 and v7 8 21712 -NCIT:C8727 Stage IV Ovarian Dysgerminoma AJCC v6 and v7 9 21713 -NCIT:C8729 Stage IV Ovarian Embryonal Carcinoma AJCC v6 and v7 9 21714 -NCIT:C8738 Stage IV Ovarian Yolk Sac Tumor AJCC v6 and v7 9 21715 -NCIT:C8742 Stage IV Ovarian Polyembryoma AJCC v6 and v7 9 21716 -NCIT:C8746 Stage IV Ovarian Teratoma AJCC v6 and v7 9 21717 -NCIT:C8087 Recurrent Ovarian Germ Cell Tumor 8 21718 -NCIT:C4515 Ovarian Choriocarcinoma 7 21719 -NCIT:C39991 Non-Gestational Ovarian Choriocarcinoma 8 21720 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 9 21721 -NCIT:C40442 Ovarian Gestational Choriocarcinoma 8 21722 -NCIT:C8730 Stage I Ovarian Choriocarcinoma 8 21723 -NCIT:C8731 Stage II Ovarian Choriocarcinoma 8 21724 -NCIT:C8732 Stage III Ovarian Choriocarcinoma 8 21725 -NCIT:C8733 Stage IV Ovarian Choriocarcinoma 8 21726 -NCIT:C7456 Metastatic Malignant Neoplasm in the Ovary 7 21727 -NCIT:C3153 Krukenberg Tumor 8 21728 -NCIT:C8053 Malignant Ovarian Sex Cord-Stromal Tumor 7 21729 -NCIT:C39981 Malignant Ovarian Steroid Cell Tumor 8 21730 -NCIT:C4210 Poorly Differentiated Ovarian Sertoli-Leydig Cell Tumor 8 21731 -NCIT:C39973 Poorly Differentiated Ovarian Sertoli-Leydig Cell Tumor, Variant with Heterologous Elements 9 21732 -NCIT:C6929 Malignant Ovarian Thecoma 8 21733 -NCIT:C6263 Malignant Ovarian Luteinized Thecoma 9 21734 -NCIT:C8403 Malignant Ovarian Granulosa Cell Tumor 8 21735 -NCIT:C160619 Recurrent Malignant Ovarian Granulosa Cell Tumor 9 21736 -NCIT:C8267 Ovarian Sarcoma 7 21737 -NCIT:C40063 Ovarian Low Grade Endometrioid Stromal Sarcoma 8 21738 -NCIT:C40066 Ovarian Undifferentiated Sarcoma 8 21739 -NCIT:C5232 Ovarian Angiosarcoma 8 21740 -NCIT:C5233 Ovarian Fibrosarcoma 8 21741 -NCIT:C5234 Ovarian Leiomyosarcoma 8 21742 -NCIT:C5236 Ovarian Rhabdomyosarcoma 8 21743 -NCIT:C6419 Ovarian Liposarcoma 8 21744 -NCIT:C5235 Ovarian Myxoid Liposarcoma 9 21745 -NCIT:C7317 Ovarian Adenosarcoma 8 21746 -NCIT:C7578 Nevus of Female Genitalia 5 21747 -NCIT:C128289 Vulvar Melanocytic Nevus 6 21748 -NCIT:C40330 Vulvar Congenital Melanocytic Nevus 7 21749 -NCIT:C40331 Vulvar Acquired Melanocytic Nevus 7 21750 -NCIT:C40332 Vulvar Blue Nevus 7 21751 -NCIT:C40333 Atypical Melanocytic Nevus of Genital Type 7 21752 -NCIT:C40334 Vulvar Dysplastic Melanocytic Nevus 7 21753 -NCIT:C40240 Cervical Blue Nevus 6 21754 -NCIT:C40281 Benign Vaginal Melanocytic Nevus 6 21755 -NCIT:C40282 Vaginal Blue Nevus 7 21756 -NCIT:C3054 Male Reproductive System Neoplasm 4 21757 -NCIT:C162485 Paratesticular Neoplasm 5 21758 -NCIT:C162476 Paratesticular Adenomatoid Tumor 6 21759 -NCIT:C6382 Epididymal Adenomatoid Tumor 7 21760 -NCIT:C162477 Paratesticular Malignant Mesothelioma 6 21761 -NCIT:C173605 Paratesticular Epithelioid Mesothelioma 7 21762 -NCIT:C173609 Unresectable Paratesticular Epithelioid Mesothelioma 8 21763 -NCIT:C173606 Paratesticular Sarcomatoid Mesothelioma 7 21764 -NCIT:C173610 Unresectable Paratesticular Sarcomatoid Mesothelioma 8 21765 -NCIT:C173607 Paratesticular Biphasic Mesothelioma 7 21766 -NCIT:C173611 Unresectable Paratesticular Biphasic Mesothelioma 8 21767 -NCIT:C173608 Unresectable Paratesticular Malignant Mesothelioma 7 21768 -NCIT:C173609 Unresectable Paratesticular Epithelioid Mesothelioma 8 21769 -NCIT:C173610 Unresectable Paratesticular Sarcomatoid Mesothelioma 8 21770 -NCIT:C173611 Unresectable Paratesticular Biphasic Mesothelioma 8 21771 -NCIT:C162486 Paratesticular Squamous Cell Carcinoma 6 21772 -NCIT:C161634 Seminal Vesicle Squamous Cell Carcinoma 7 21773 -NCIT:C162487 Paratesticular Melanotic Neuroectodermal Tumor 6 21774 -NCIT:C162488 Epididymal Melanotic Neuroectodermal Tumor 7 21775 -NCIT:C162489 Paratesticular Wilms Tumor 6 21776 -NCIT:C162490 Paratesticular Paraganglioma 6 21777 -NCIT:C162492 Paratesticular Soft Tissue Neoplasm 6 21778 -NCIT:C161637 Seminal Vesicle Soft Tissue Neoplasm 7 21779 -NCIT:C161638 Seminal Vesicle Leiomyoma 8 21780 -NCIT:C161639 Seminal Vesicle Schwannoma 8 21781 -NCIT:C161640 Seminal Vesicle Mammary-Type Myofibroblastoma 8 21782 -NCIT:C161641 Seminal Vesicle Leiomyosarcoma 8 21783 -NCIT:C161642 Seminal Vesicle Angiosarcoma 8 21784 -NCIT:C162493 Paratesticular Liposarcoma 7 21785 -NCIT:C162494 Paratesticular Leiomyoma 7 21786 -NCIT:C161638 Seminal Vesicle Leiomyoma 8 21787 -NCIT:C162495 Paratesticular Leiomyosarcoma 7 21788 -NCIT:C161641 Seminal Vesicle Leiomyosarcoma 8 21789 -NCIT:C162496 Paratesticular Rhabdomyoma 7 21790 -NCIT:C162497 Paratesticular Rhabdomyosarcoma 7 21791 -NCIT:C162498 Paratesticular Cellular Angiofibroma 7 21792 -NCIT:C162500 Paratesticular Mammary-Type Myofibroblastoma 7 21793 -NCIT:C161640 Seminal Vesicle Mammary-Type Myofibroblastoma 8 21794 -NCIT:C162501 Paratesticular Deep (Aggressive) Angiomyxoma 7 21795 -NCIT:C162502 Paratesticular Schwannoma 7 21796 -NCIT:C161639 Seminal Vesicle Schwannoma 8 21797 -NCIT:C162503 Paratesticular Hemangioma 7 21798 -NCIT:C6384 Paratesticular Lipoma 7 21799 -NCIT:C3606 Spermatic Cord Lipoma 8 21800 -NCIT:C39908 Seminal Vesicle Neoplasm 6 21801 -NCIT:C161636 Seminal Vesicle Mixed Epithelial and Stromal Tumor 7 21802 -NCIT:C39907 Seminal Vesicle Cystadenoma 8 21803 -NCIT:C161637 Seminal Vesicle Soft Tissue Neoplasm 7 21804 -NCIT:C161638 Seminal Vesicle Leiomyoma 8 21805 -NCIT:C161639 Seminal Vesicle Schwannoma 8 21806 -NCIT:C161640 Seminal Vesicle Mammary-Type Myofibroblastoma 8 21807 -NCIT:C161641 Seminal Vesicle Leiomyosarcoma 8 21808 -NCIT:C161642 Seminal Vesicle Angiosarcoma 8 21809 -NCIT:C161643 Benign Seminal Vesicle Neoplasm 7 21810 -NCIT:C161638 Seminal Vesicle Leiomyoma 8 21811 -NCIT:C161639 Seminal Vesicle Schwannoma 8 21812 -NCIT:C161640 Seminal Vesicle Mammary-Type Myofibroblastoma 8 21813 -NCIT:C39907 Seminal Vesicle Cystadenoma 8 21814 -NCIT:C161644 Malignant Seminal Vesicle Neoplasm 7 21815 -NCIT:C161634 Seminal Vesicle Squamous Cell Carcinoma 8 21816 -NCIT:C161641 Seminal Vesicle Leiomyosarcoma 8 21817 -NCIT:C161642 Seminal Vesicle Angiosarcoma 8 21818 -NCIT:C161649 Metastatic Malignant Neoplasm in the Seminal Vesicle 8 21819 -NCIT:C39906 Seminal Vesicle Adenocarcinoma 8 21820 -NCIT:C39955 Rete Testis Neoplasm 6 21821 -NCIT:C39956 Rete Testis Adenoma 7 21822 -NCIT:C8955 Rete Testis Adenocarcinoma 7 21823 -NCIT:C39958 Epididymal Neoplasm 6 21824 -NCIT:C162488 Epididymal Melanotic Neuroectodermal Tumor 7 21825 -NCIT:C3558 Malignant Epididymal Neoplasm 7 21826 -NCIT:C39957 Epididymal Adenocarcinoma 8 21827 -NCIT:C8544 Metastatic Malignant Neoplasm in the Epididymis 8 21828 -NCIT:C3614 Benign Epididymal Neoplasm 7 21829 -NCIT:C162483 Epididymal Cystadenoma 8 21830 -NCIT:C155953 Epididymal Papillary Cystadenoma 9 21831 -NCIT:C6382 Epididymal Adenomatoid Tumor 8 21832 -NCIT:C3317 Penile Neoplasm 5 21833 -NCIT:C162574 Penile Soft Tissue Neoplasm 6 21834 -NCIT:C162579 Penile Hemangioma 7 21835 -NCIT:C162580 Penile Epithelioid Hemangioma 8 21836 -NCIT:C162581 Penile Epithelioid Hemangioendothelioma 7 21837 -NCIT:C162582 Penile Glomus Tumor 7 21838 -NCIT:C162583 Penile Leiomyoma 7 21839 -NCIT:C162590 Penile Myointimoma 7 21840 -NCIT:C162592 Penile Lymphangioma 7 21841 -NCIT:C7730 Penile Sarcoma 7 21842 -NCIT:C162578 Penile Angiosarcoma 8 21843 -NCIT:C162584 Penile Malignant Peripheral Nerve Sheath Tumor 8 21844 -NCIT:C162585 Penile Leiomyosarcoma 8 21845 -NCIT:C162588 Penile Rhabdomyosarcoma 8 21846 -NCIT:C162589 Penile Undifferentiated Pleomorphic Sarcoma 8 21847 -NCIT:C6377 Penile Kaposi Sarcoma 8 21848 -NCIT:C3489 Benign Penile Neoplasm 6 21849 -NCIT:C162579 Penile Hemangioma 7 21850 -NCIT:C162580 Penile Epithelioid Hemangioma 8 21851 -NCIT:C162583 Penile Leiomyoma 7 21852 -NCIT:C162586 Penile Schwannoma 7 21853 -NCIT:C162587 Penile Neurofibroma 7 21854 -NCIT:C162590 Penile Myointimoma 7 21855 -NCIT:C162592 Penile Lymphangioma 7 21856 -NCIT:C4596 Penile Intraepithelial Neoplasia 6 21857 -NCIT:C162536 Non-Human Papillomavirus-Related Penile Intraepithelial Neoplasia 7 21858 -NCIT:C162539 Differentiated (Simplex) Penile Intraepithelial Neoplasia 8 21859 -NCIT:C162541 Human Papillomavirus-Related Penile Intraepithelial Neoplasia 7 21860 -NCIT:C162542 Basaloid (Undifferentiated) Penile Intraepithelial Neoplasia 8 21861 -NCIT:C162543 Warty (Bowenoid) Penile Intraepithelial Neoplasia 8 21862 -NCIT:C162546 Warty-Basaloid Penile Intraepithelial Neoplasia 8 21863 -NCIT:C39963 Penile Bowenoid Papulosis 8 21864 -NCIT:C7666 Low Grade Penile Intraepithelial Neoplasia 7 21865 -NCIT:C7667 High Grade Penile Intraepithelial Neoplasia 7 21866 -NCIT:C27790 Penile Carcinoma In Situ 8 21867 -NCIT:C7665 Grade II Penile Intraepithelial Neoplasia 8 21868 -NCIT:C7547 Malignant Penile Neoplasm 6 21869 -NCIT:C118821 Childhood Malignant Penile Neoplasm 7 21870 -NCIT:C162547 Penile Melanoma 7 21871 -NCIT:C178517 Penile Mucosal Melanoma 8 21872 -NCIT:C178518 Penile Cutaneous Melanoma 8 21873 -NCIT:C162548 Penile Lymphoma 7 21874 -NCIT:C162549 Metastatic Malignant Neoplasm in the Penis 7 21875 -NCIT:C162581 Penile Epithelioid Hemangioendothelioma 7 21876 -NCIT:C7730 Penile Sarcoma 7 21877 -NCIT:C162578 Penile Angiosarcoma 8 21878 -NCIT:C162584 Penile Malignant Peripheral Nerve Sheath Tumor 8 21879 -NCIT:C162585 Penile Leiomyosarcoma 8 21880 -NCIT:C162588 Penile Rhabdomyosarcoma 8 21881 -NCIT:C162589 Penile Undifferentiated Pleomorphic Sarcoma 8 21882 -NCIT:C6377 Penile Kaposi Sarcoma 8 21883 -NCIT:C9061 Penile Carcinoma 7 21884 -NCIT:C118820 Adult Penile Carcinoma 8 21885 -NCIT:C140075 Penile Cancer by AJCC v8 Stage 8 21886 -NCIT:C140076 Stage 0 Penile Cancer AJCC v8 9 21887 -NCIT:C140077 Stage 0is Penile Cancer AJCC v8 10 21888 -NCIT:C140078 Stage 0a Penile Cancer AJCC v8 10 21889 -NCIT:C140079 Stage I Penile Cancer AJCC v8 9 21890 -NCIT:C140080 Stage II Penile Cancer AJCC v8 9 21891 -NCIT:C140081 Stage IIA Penile Cancer AJCC v8 10 21892 -NCIT:C140083 Stage IIB Penile Cancer AJCC v8 10 21893 -NCIT:C140084 Stage III Penile Cancer AJCC v8 9 21894 -NCIT:C140085 Stage IIIA Penile Cancer AJCC v8 10 21895 -NCIT:C140086 Stage IIIB Penile Cancer AJCC v8 10 21896 -NCIT:C140087 Stage IV Penile Cancer AJCC v8 9 21897 -NCIT:C177150 Refractory Penile Carcinoma 8 21898 -NCIT:C27784 Metastatic Penile Carcinoma 8 21899 -NCIT:C170789 Locally Advanced Penile Carcinoma 9 21900 -NCIT:C170790 Advanced Penile Carcinoma 9 21901 -NCIT:C182111 Metastatic Squamous Cell Carcinoma of the Penis 9 21902 -NCIT:C27817 Penile Paget Disease 8 21903 -NCIT:C39961 Penile Basal Cell Carcinoma 8 21904 -NCIT:C7729 Squamous Cell Carcinoma of the Penis 8 21905 -NCIT:C159244 Non-Human Papillomavirus-Related Squamous Cell Carcinoma of the Penis 9 21906 -NCIT:C103340 Papillary Carcinoma of the Penis, Not Otherwise Specified 10 21907 -NCIT:C159245 Pseudohyperplastic Carcinoma of the Penis 10 21908 -NCIT:C159246 Pseudoglandular Carcinoma of the Penis 10 21909 -NCIT:C159248 Adenosquamous Carcinoma of the Penis 10 21910 -NCIT:C39959 Mixed Squamous Cell Carcinoma of the Penis 10 21911 -NCIT:C6979 Squamous Cell Carcinoma of the Penis, Usual Type 10 21912 -NCIT:C6982 Verrucous Carcinoma of the Penis 10 21913 -NCIT:C159247 Carcinoma Cuniculatum of the Penis 11 21914 -NCIT:C6984 Sarcomatoid Carcinoma of the Penis 10 21915 -NCIT:C182111 Metastatic Squamous Cell Carcinoma of the Penis 9 21916 -NCIT:C27682 Human Papillomavirus-Related Squamous Cell Carcinoma of the Penis 9 21917 -NCIT:C159250 Warty-Basaloid Carcinoma of the Penis 10 21918 -NCIT:C159251 Clear Cell Squamous Cell Carcinoma of the Penis 10 21919 -NCIT:C159252 Lymphoepithelioma-Like Carcinoma of the Penis 10 21920 -NCIT:C6980 Basaloid Squamous Cell Carcinoma of the Penis 10 21921 -NCIT:C159249 Papillary-Basaloid Carcinoma of the Penis 11 21922 -NCIT:C6981 Warty Carcinoma of the Penis 10 21923 -NCIT:C27790 Penile Carcinoma In Situ 9 21924 -NCIT:C6983 Papillary Carcinoma of the Penis 9 21925 -NCIT:C103340 Papillary Carcinoma of the Penis, Not Otherwise Specified 10 21926 -NCIT:C159249 Papillary-Basaloid Carcinoma of the Penis 10 21927 -NCIT:C6981 Warty Carcinoma of the Penis 10 21928 -NCIT:C6982 Verrucous Carcinoma of the Penis 10 21929 -NCIT:C159247 Carcinoma Cuniculatum of the Penis 11 21930 -NCIT:C7870 Recurrent Penile Carcinoma 8 21931 -NCIT:C90520 Penile Cancer by AJCC v6 Stage 8 21932 -NCIT:C3643 Stage 0 Penile Cancer AJCC v6 9 21933 -NCIT:C7867 Stage I Penile Cancer AJCC v6 9 21934 -NCIT:C7868 Stage II Penile Cancer AJCC v6 9 21935 -NCIT:C7869 Stage III Penile Cancer AJCC v6 9 21936 -NCIT:C8959 Stage IV Penile Cancer AJCC v6 9 21937 -NCIT:C91234 Penile Cancer by AJCC v7 Stage 8 21938 -NCIT:C89194 Stage 0 Penile Cancer AJCC v7 9 21939 -NCIT:C27790 Penile Carcinoma In Situ 10 21940 -NCIT:C89195 Stage I Penile Cancer AJCC v7 9 21941 -NCIT:C89196 Stage II Penile Cancer AJCC v7 9 21942 -NCIT:C89197 Stage III Penile Cancer AJCC v7 9 21943 -NCIT:C88104 Stage IIIa Penile Cancer AJCC v7 10 21944 -NCIT:C88105 Stage IIIb Penile Cancer AJCC v7 10 21945 -NCIT:C89198 Stage IV Penile Cancer AJCC v7 9 21946 -NCIT:C3343 Prostate Neoplasm 5 21947 -NCIT:C161045 Prostate Soft Tissue Neoplasm 6 21948 -NCIT:C161042 Prostate Inflammatory Myofibroblastic Tumor 7 21949 -NCIT:C161579 Prostate Solitary Fibrous Tumor 7 21950 -NCIT:C161580 Prostate Malignant Solitary Fibrous Tumor 8 21951 -NCIT:C161582 Prostate Granular Cell Tumor 7 21952 -NCIT:C3972 Prostate Fibroma 7 21953 -NCIT:C39904 Tumor of Specialized Prostatic Stroma 7 21954 -NCIT:C39905 Prostate Stromal Tumor of Uncertain Malignant Potential 8 21955 -NCIT:C5524 Prostate Stromal Sarcoma 8 21956 -NCIT:C5544 Prostate Leiomyoma 7 21957 -NCIT:C7731 Prostate Sarcoma 7 21958 -NCIT:C161034 Prostate Synovial Sarcoma 8 21959 -NCIT:C161035 Prostate Osteosarcoma 8 21960 -NCIT:C161038 Prostate Undifferentiated Pleomorphic Sarcoma 8 21961 -NCIT:C5522 Prostate Rhabdomyosarcoma 8 21962 -NCIT:C188070 Prostate Alveolar Rhabdomyosarcoma 9 21963 -NCIT:C5525 Prostate Embryonal Rhabdomyosarcoma 9 21964 -NCIT:C5523 Prostate Kaposi Sarcoma 8 21965 -NCIT:C5524 Prostate Stromal Sarcoma 8 21966 -NCIT:C5526 Prostate Leiomyosarcoma 8 21967 -NCIT:C5528 Prostate Angiosarcoma 8 21968 -NCIT:C3613 Benign Prostate Neoplasm 6 21969 -NCIT:C161581 Prostate Hemangioma 7 21970 -NCIT:C161606 Prostate Cystadenoma 7 21971 -NCIT:C3972 Prostate Fibroma 7 21972 -NCIT:C4795 Prostate Adenoma 7 21973 -NCIT:C5532 Benign Prostate Phyllodes Tumor 7 21974 -NCIT:C5544 Prostate Leiomyoma 7 21975 -NCIT:C37268 Atypical Small Acinar Proliferation of the Prostate Gland 6 21976 -NCIT:C4064 Prostatic Intraepithelial Neoplasia 6 21977 -NCIT:C5541 High Grade Prostatic Intraepithelial Neoplasia 7 21978 -NCIT:C3642 Grade III Prostatic Intraepithelial Neoplasia 8 21979 -NCIT:C39887 High Grade Prostatic Intraepithelial Neoplasia, Signet Ring Variant 8 21980 -NCIT:C39888 High Grade Prostatic Intraepithelial Neoplasia, Mucinous Variant 8 21981 -NCIT:C39889 High Grade Prostatic Intraepithelial Neoplasia, Foamy Variant 8 21982 -NCIT:C39890 High Grade Prostatic Intraepithelial Neoplasia, Inverted Variant 8 21983 -NCIT:C39891 High Grade Prostatic Intraepithelial Neoplasia, Small Cell Neuroendocrine Variant 8 21984 -NCIT:C7360 Grade II Prostatic Intraepithelial Neoplasia 8 21985 -NCIT:C5542 Low Grade Prostatic Intraepithelial Neoplasia 7 21986 -NCIT:C5545 Prostate Neuroendocrine Neoplasm 6 21987 -NCIT:C158912 Prostate Neuroendocrine Carcinoma 7 21988 -NCIT:C158650 Prostate Large Cell Neuroendocrine Carcinoma 8 21989 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 8 21990 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 9 21991 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 9 21992 -NCIT:C6766 Prostate Small Cell Neuroendocrine Carcinoma 8 21993 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 9 21994 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 9 21995 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 9 21996 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 9 21997 -NCIT:C161612 Prostate Paraganglioma 7 21998 -NCIT:C39903 Prostate Adenocarcinoma with Neuroendocrine Differentiation 7 21999 -NCIT:C158656 Usual Prostate Adenocarcinoma with Neuroendocrine Differentiation 8 22000 -NCIT:C158664 Prostate Adenocarcinoma with Paneth Cell-Like Neuroendocrine Differentiation 8 22001 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 8 22002 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 22003 -NCIT:C5024 Prostate Neuroendocrine Tumor 7 22004 -NCIT:C7378 Malignant Prostate Neoplasm 6 22005 -NCIT:C161580 Prostate Malignant Solitary Fibrous Tumor 7 22006 -NCIT:C161607 Prostate Wilms Tumor 7 22007 -NCIT:C161608 Extrarenal Rhabdoid Tumor of the Prostate 7 22008 -NCIT:C161611 Prostate Melanoma 7 22009 -NCIT:C3642 Grade III Prostatic Intraepithelial Neoplasia 7 22010 -NCIT:C4863 Prostate Carcinoma 7 22011 -NCIT:C103817 Hereditary Prostate Carcinoma 8 22012 -NCIT:C114933 Hormone-Resistant Prostate Carcinoma 8 22013 -NCIT:C138167 Prostate Carcinoma by Gene Expression Profile 8 22014 -NCIT:C138168 Luminal A Prostate Carcinoma 9 22015 -NCIT:C138169 Luminal B Prostate Carcinoma 9 22016 -NCIT:C138170 Basal-Like Prostate Carcinoma 9 22017 -NCIT:C140163 Prostate Cancer by AJCC v8 Stage 8 22018 -NCIT:C140164 Stage I Prostate Cancer AJCC v8 9 22019 -NCIT:C140165 Stage II Prostate Cancer AJCC v8 9 22020 -NCIT:C140166 Stage IIA Prostate Cancer AJCC v8 10 22021 -NCIT:C140167 Stage IIB Prostate Cancer AJCC v8 10 22022 -NCIT:C140168 Stage IIC Prostate Cancer AJCC v8 10 22023 -NCIT:C140169 Stage III Prostate Cancer AJCC v8 9 22024 -NCIT:C140170 Stage IIIA Prostate Cancer AJCC v8 10 22025 -NCIT:C140171 Stage IIIB Prostate Cancer AJCC v8 10 22026 -NCIT:C140172 Stage IIIC Prostate Cancer AJCC v8 10 22027 -NCIT:C140173 Stage IV Prostate Cancer AJCC v8 9 22028 -NCIT:C140174 Stage IVA Prostate Cancer AJCC v8 10 22029 -NCIT:C140175 Stage IVB Prostate Cancer AJCC v8 10 22030 -NCIT:C161022 Intraductal Prostate Carcinoma 8 22031 -NCIT:C167255 Refractory Prostate Carcinoma 8 22032 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 9 22033 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 10 22034 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 10 22035 -NCIT:C161609 Double-Negative Prostate Carcinoma 10 22036 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 10 22037 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 10 22038 -NCIT:C167256 Refractory Prostate Adenocarcinoma 9 22039 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 9 22040 -NCIT:C171611 Unresectable Prostate Carcinoma 8 22041 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 9 22042 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 22043 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 9 22044 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 9 22045 -NCIT:C176517 Localized Prostate Carcinoma 8 22046 -NCIT:C39898 Primary Prostate Urothelial Carcinoma 8 22047 -NCIT:C39900 Prostatic Urethra Urothelial Carcinoma 9 22048 -NCIT:C39901 Prostatic Duct Urothelial Carcinoma 9 22049 -NCIT:C48596 Invasive Prostate Carcinoma 8 22050 -NCIT:C158912 Prostate Neuroendocrine Carcinoma 9 22051 -NCIT:C158650 Prostate Large Cell Neuroendocrine Carcinoma 10 22052 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 10 22053 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 11 22054 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 11 22055 -NCIT:C6766 Prostate Small Cell Neuroendocrine Carcinoma 10 22056 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 11 22057 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 11 22058 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 11 22059 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 11 22060 -NCIT:C2919 Prostate Adenocarcinoma 9 22061 -NCIT:C150557 Prostate Adenocarcinoma without Neuroendocrine Differentiation 10 22062 -NCIT:C164185 Aggressive Prostate Adenocarcinoma 10 22063 -NCIT:C164186 Prostate Adenocarcinoma by AJCC v7 Stage 10 22064 -NCIT:C8947 Stage I Prostate Adenocarcinoma AJCC v7 11 22065 -NCIT:C8948 Stage II Prostate Adenocarcinoma AJCC v7 11 22066 -NCIT:C8949 Stage III Prostate Adenocarcinoma AJCC v7 11 22067 -NCIT:C8950 Stage IV Prostate Adenocarcinoma AJCC v7 11 22068 -NCIT:C167256 Refractory Prostate Adenocarcinoma 10 22069 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 10 22070 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 11 22071 -NCIT:C27905 Well Differentiated Prostate Adenocarcinoma 10 22072 -NCIT:C39896 Prostate Ductal Adenocarcinoma, Papillary Pattern 11 22073 -NCIT:C27906 Moderately Differentiated Prostate Adenocarcinoma 10 22074 -NCIT:C27916 Poorly Differentiated Prostate Adenocarcinoma 10 22075 -NCIT:C5530 Prostate Acinar Adenocarcinoma, Sarcomatoid Variant 11 22076 -NCIT:C39903 Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 22077 -NCIT:C158656 Usual Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 22078 -NCIT:C158664 Prostate Adenocarcinoma with Paneth Cell-Like Neuroendocrine Differentiation 11 22079 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 22080 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 12 22081 -NCIT:C5596 Prostate Acinar Adenocarcinoma 10 22082 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 11 22083 -NCIT:C158656 Usual Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 22084 -NCIT:C160817 Prostate Acinar Adenocarcinoma, Microcystic Variant 11 22085 -NCIT:C160818 Prostate Acinar Adenocarcinoma, Pleomorphic Giant Cell Variant 11 22086 -NCIT:C39880 Prostate Acinar Adenocarcinoma, Atrophic Variant 11 22087 -NCIT:C39881 Prostate Acinar Adenocarcinoma, Pseudohyperplastic Variant 11 22088 -NCIT:C39882 Prostate Acinar Adenocarcinoma, Foamy Gland Variant 11 22089 -NCIT:C39884 Prostate Acinar Adenocarcinoma, Oncocytic Variant 11 22090 -NCIT:C39885 Prostate Acinar Adenocarcinoma, Lymphoepithelioma-Like Variant 11 22091 -NCIT:C5530 Prostate Acinar Adenocarcinoma, Sarcomatoid Variant 11 22092 -NCIT:C5535 Prostate Acinar Adenocarcinoma, Signet Ring-Like Cell Variant 11 22093 -NCIT:C5537 Prostate Acinar Mucinous Adenocarcinoma 11 22094 -NCIT:C6813 Prostate Ductal Adenocarcinoma 10 22095 -NCIT:C39895 Prostate Ductal Adenocarcinoma, Cribriform Pattern 11 22096 -NCIT:C39896 Prostate Ductal Adenocarcinoma, Papillary Pattern 11 22097 -NCIT:C39897 Prostate Ductal Adenocarcinoma, Solid Pattern 11 22098 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 10 22099 -NCIT:C156286 Advanced Prostate Adenocarcinoma 11 22100 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 12 22101 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 11 22102 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 12 22103 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 22104 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 12 22105 -NCIT:C39902 Prostate Basal Cell Carcinoma 9 22106 -NCIT:C5536 Prostate Squamous Cell Carcinoma 9 22107 -NCIT:C5538 Prostate Adenosquamous Carcinoma 9 22108 -NCIT:C5539 Prostate Adenoid Cystic Carcinoma 9 22109 -NCIT:C5597 Prostate Undifferentiated Carcinoma 9 22110 -NCIT:C7079 Prostate Cancer by Whitmore-Jewett Stage 8 22111 -NCIT:C7099 Stage D Prostate Cancer 9 22112 -NCIT:C7552 Stage C Prostate Cancer 9 22113 -NCIT:C7554 Stage B Prostate Cancer 9 22114 -NCIT:C7556 Stage A Prostate Cancer 9 22115 -NCIT:C7902 Recurrent Prostate Carcinoma 8 22116 -NCIT:C156771 Biochemically Recurrent Prostate Carcinoma 9 22117 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 9 22118 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 10 22119 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 9 22120 -NCIT:C8946 Metastatic Prostate Carcinoma 8 22121 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 9 22122 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 10 22123 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 10 22124 -NCIT:C161609 Double-Negative Prostate Carcinoma 10 22125 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 10 22126 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 10 22127 -NCIT:C132881 Prostate Carcinoma Metastatic in the Soft Tissue 9 22128 -NCIT:C148536 Castration-Naive Prostate Carcinoma 9 22129 -NCIT:C153336 Castration-Sensitive Prostate Carcinoma 9 22130 -NCIT:C156284 Advanced Prostate Carcinoma 9 22131 -NCIT:C156286 Advanced Prostate Adenocarcinoma 10 22132 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 22133 -NCIT:C156285 Locally Advanced Prostate Carcinoma 9 22134 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 10 22135 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 11 22136 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 10 22137 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 11 22138 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 10 22139 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 9 22140 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 10 22141 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 10 22142 -NCIT:C161584 Prostate Carcinoma Metastatic in the Pelvic Cavity 9 22143 -NCIT:C161587 Prostate Carcinoma Metastatic in the Lymph Nodes 9 22144 -NCIT:C171265 Oligometastatic Prostate Carcinoma 9 22145 -NCIT:C36307 Prostate Carcinoma Metastatic in the Lung 9 22146 -NCIT:C36308 Prostate Carcinoma Metastatic in the Bone 9 22147 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 9 22148 -NCIT:C156286 Advanced Prostate Adenocarcinoma 10 22149 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 22150 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 10 22151 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 11 22152 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 22153 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 22154 -NCIT:C90521 Prostate Cancer by AJCC v6 Stage 8 22155 -NCIT:C7551 Stage III Prostate Cancer AJCC v6 9 22156 -NCIT:C7553 Stage II Prostate Cancer AJCC v6 9 22157 -NCIT:C7555 Stage I Prostate Cancer AJCC v6 9 22158 -NCIT:C9075 Stage IV Prostate Cancer AJCC v6 9 22159 -NCIT:C91233 Prostate Cancer by AJCC v7 Stage 8 22160 -NCIT:C164186 Prostate Adenocarcinoma by AJCC v7 Stage 9 22161 -NCIT:C8947 Stage I Prostate Adenocarcinoma AJCC v7 10 22162 -NCIT:C8948 Stage II Prostate Adenocarcinoma AJCC v7 10 22163 -NCIT:C8949 Stage III Prostate Adenocarcinoma AJCC v7 10 22164 -NCIT:C8950 Stage IV Prostate Adenocarcinoma AJCC v7 10 22165 -NCIT:C89232 Stage I Prostate Cancer AJCC v7 9 22166 -NCIT:C8947 Stage I Prostate Adenocarcinoma AJCC v7 10 22167 -NCIT:C89233 Stage II Prostate Cancer AJCC v7 9 22168 -NCIT:C88106 Stage IIA Prostate Cancer AJCC v7 10 22169 -NCIT:C88107 Stage IIB Prostate Cancer AJCC v7 10 22170 -NCIT:C8948 Stage II Prostate Adenocarcinoma AJCC v7 10 22171 -NCIT:C89234 Stage III Prostate Cancer AJCC v7 9 22172 -NCIT:C8949 Stage III Prostate Adenocarcinoma AJCC v7 10 22173 -NCIT:C89235 Stage IV Prostate Cancer AJCC v7 9 22174 -NCIT:C8950 Stage IV Prostate Adenocarcinoma AJCC v7 10 22175 -NCIT:C5527 Prostate Myeloid Sarcoma 7 22176 -NCIT:C5531 Malignant Prostate Phyllodes Tumor 7 22177 -NCIT:C5533 Prostate Lymphoma 7 22178 -NCIT:C5534 Prostate Non-Hodgkin Lymphoma 8 22179 -NCIT:C161602 Prostate Diffuse Large B-Cell Lymphoma 9 22180 -NCIT:C161603 Prostate Follicular Lymphoma 9 22181 -NCIT:C161604 Prostate Mantle Cell Lymphoma 9 22182 -NCIT:C161605 Prostate Small Lymphocytic Lymphoma 9 22183 -NCIT:C7080 Metastatic Malignant Neoplasm in the Prostate Gland 7 22184 -NCIT:C39899 Secondary Prostate Urothelial Carcinoma 8 22185 -NCIT:C7731 Prostate Sarcoma 7 22186 -NCIT:C161034 Prostate Synovial Sarcoma 8 22187 -NCIT:C161035 Prostate Osteosarcoma 8 22188 -NCIT:C161038 Prostate Undifferentiated Pleomorphic Sarcoma 8 22189 -NCIT:C5522 Prostate Rhabdomyosarcoma 8 22190 -NCIT:C188070 Prostate Alveolar Rhabdomyosarcoma 9 22191 -NCIT:C5525 Prostate Embryonal Rhabdomyosarcoma 9 22192 -NCIT:C5523 Prostate Kaposi Sarcoma 8 22193 -NCIT:C5524 Prostate Stromal Sarcoma 8 22194 -NCIT:C5526 Prostate Leiomyosarcoma 8 22195 -NCIT:C5528 Prostate Angiosarcoma 8 22196 -NCIT:C7574 Prostate Phyllodes Tumor 6 22197 -NCIT:C5531 Malignant Prostate Phyllodes Tumor 7 22198 -NCIT:C5532 Benign Prostate Phyllodes Tumor 7 22199 -NCIT:C3404 Testicular Neoplasm 5 22200 -NCIT:C3612 Benign Testicular Neoplasm 6 22201 -NCIT:C39951 Testicular Fibroma 7 22202 -NCIT:C6355 Mature Testicular Teratoma 7 22203 -NCIT:C123837 Childhood Testicular Mature Teratoma 8 22204 -NCIT:C36092 Testicular Dermoid Cyst 8 22205 -NCIT:C6522 Benign Testicular Sertoli Cell Tumor 7 22206 -NCIT:C39943 Testicular Sertoli Cell Tumor, Lipid Rich Variant 8 22207 -NCIT:C39945 Testicular Sclerosing Sertoli Cell Tumor 8 22208 -NCIT:C39953 Testicular Brenner Tumor 6 22209 -NCIT:C5053 Childhood Testicular Neoplasm 6 22210 -NCIT:C39947 Juvenile Testicular Granulosa Cell Tumor 7 22211 -NCIT:C6552 Childhood Testicular Germ Cell Tumor 7 22212 -NCIT:C123843 Childhood Testicular Non-Seminomatous Germ Cell Tumor 8 22213 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 9 22214 -NCIT:C6540 Childhood Testicular Teratoma 9 22215 -NCIT:C123835 Childhood Testicular Immature Teratoma 10 22216 -NCIT:C123837 Childhood Testicular Mature Teratoma 10 22217 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 9 22218 -NCIT:C6544 Childhood Testicular Choriocarcinoma 9 22219 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 9 22220 -NCIT:C68628 Childhood Malignant Testicular Germ Cell Tumor 8 22221 -NCIT:C6542 Childhood Testicular Mixed Germ Cell Tumor 9 22222 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 10 22223 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 9 22224 -NCIT:C6544 Childhood Testicular Choriocarcinoma 9 22225 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 9 22226 -NCIT:C6358 Testicular Sex Cord-Stromal Tumor 6 22227 -NCIT:C162466 Intratubular Large Cell Hyalinizing Sertoli Cell Neoplasia 7 22228 -NCIT:C39948 Malignant Testicular Sex Cord-Stromal Tumor 7 22229 -NCIT:C39949 Testicular Tumor of the Thecoma/Fibroma Group 7 22230 -NCIT:C162966 Testicular Signet Ring Stromal Tumor 8 22231 -NCIT:C39951 Testicular Fibroma 8 22232 -NCIT:C39952 Testicular Thecoma 8 22233 -NCIT:C4672 Testicular Sertoli Cell Tumor 7 22234 -NCIT:C39944 Testicular Large Cell Calcifying Sertoli Cell Tumor 8 22235 -NCIT:C6522 Benign Testicular Sertoli Cell Tumor 8 22236 -NCIT:C39943 Testicular Sertoli Cell Tumor, Lipid Rich Variant 9 22237 -NCIT:C39945 Testicular Sclerosing Sertoli Cell Tumor 9 22238 -NCIT:C6523 Malignant Testicular Sertoli Cell Tumor 8 22239 -NCIT:C6356 Testicular Leydig Cell Tumor 7 22240 -NCIT:C39942 Malignant Testicular Leydig Cell Tumor 8 22241 -NCIT:C6357 Testicular Granulosa Cell Tumor 7 22242 -NCIT:C39946 Adult Testicular Granulosa Cell Tumor 8 22243 -NCIT:C39947 Juvenile Testicular Granulosa Cell Tumor 8 22244 -NCIT:C66748 Unclassified Testicular Sex Cord-Stromal Tumor 7 22245 -NCIT:C66991 Mixed Testicular Sex Cord-Stromal Tumor 7 22246 -NCIT:C6360 Testicular Neuroendocrine Tumor G1 6 22247 -NCIT:C7251 Malignant Testicular Neoplasm 6 22248 -NCIT:C140225 Testicular Cancer by AJCC v8 Stage 7 22249 -NCIT:C140226 Stage 0 Testicular Cancer AJCC v8 8 22250 -NCIT:C40345 Testicular Intratubular Germ Cell Neoplasia 9 22251 -NCIT:C7325 Intratubular Non-Seminoma 10 22252 -NCIT:C7329 Intratubular Seminoma 10 22253 -NCIT:C140227 Stage I Testicular Cancer AJCC v8 8 22254 -NCIT:C140228 Stage IA Testicular Cancer AJCC v8 9 22255 -NCIT:C140229 Stage IB Testicular Cancer AJCC v8 9 22256 -NCIT:C140232 Stage IS Testicular Cancer AJCC v8 9 22257 -NCIT:C140233 Stage II Testicular Cancer AJCC v8 8 22258 -NCIT:C140234 Stage IIA Testicular Cancer AJCC v8 9 22259 -NCIT:C140235 Stage IIB Testicular Cancer AJCC v8 9 22260 -NCIT:C140236 Stage IIC Testicular Cancer AJCC v8 9 22261 -NCIT:C140237 Stage III Testicular Cancer AJCC v8 8 22262 -NCIT:C140238 Stage IIIA Testicular Cancer AJCC v8 9 22263 -NCIT:C140239 Stage IIIB Testicular Cancer AJCC v8 9 22264 -NCIT:C140240 Stage IIIC Testicular Cancer AJCC v8 9 22265 -NCIT:C140241 Testicular Cancer by AJCC v6 and v7 Stage 7 22266 -NCIT:C4523 Stage 0 Testicular Cancer AJCC v6 and v7 8 22267 -NCIT:C40345 Testicular Intratubular Germ Cell Neoplasia 9 22268 -NCIT:C7325 Intratubular Non-Seminoma 10 22269 -NCIT:C7329 Intratubular Seminoma 10 22270 -NCIT:C7901 Stage I Testicular Cancer AJCC v6 and v7 8 22271 -NCIT:C27785 Stage I Testicular Non-Seminomatous Germ Cell Tumor AJCC v6 and v7 9 22272 -NCIT:C8907 Stage I Testicular Choriocarcinoma AJCC v6 and v7 10 22273 -NCIT:C8908 Stage I Testicular Embryonal Carcinoma AJCC v6 and v7 10 22274 -NCIT:C8914 Stage I Immature Testicular Teratoma AJCC v6 and v7 10 22275 -NCIT:C8920 Stage I Testicular Yolk Sac Tumor AJCC v6 and v7 10 22276 -NCIT:C6361 Stage IA Testicular Cancer AJCC v6 and v7 9 22277 -NCIT:C6362 Stage IB Testicular Cancer AJCC v6 and v7 9 22278 -NCIT:C6363 Stage IS Testicular Cancer AJCC v6 and v7 9 22279 -NCIT:C8912 Stage I Testicular Mixed Germ Cell Tumor AJCC v6 and v7 9 22280 -NCIT:C8917 Stage I Testicular Seminoma AJCC v6 and v7 9 22281 -NCIT:C9073 Stage II Testicular Cancer AJCC v6 and v7 8 22282 -NCIT:C27786 Stage II Testicular Non-Seminomatous Germ Cell Tumor AJCC v6 and v7 9 22283 -NCIT:C8606 Stage II Testicular Choriocarcinoma AJCC v6 and v7 10 22284 -NCIT:C8909 Stage II Testicular Embryonal Carcinoma AJCC v6 and v7 10 22285 -NCIT:C8915 Stage II Immature Testicular Teratoma AJCC v6 and v7 10 22286 -NCIT:C8921 Stage II Testicular Yolk Sac Tumor AJCC v6 and v7 10 22287 -NCIT:C6364 Stage IIA Testicular Cancer AJCC v6 and v7 9 22288 -NCIT:C6365 Stage IIB Testicular Cancer AJCC v6 and v7 9 22289 -NCIT:C6366 Stage IIC Testicular Cancer AJCC v6 and v7 9 22290 -NCIT:C8911 Stage II Testicular Mixed Germ Cell Tumor AJCC v6 and v7 9 22291 -NCIT:C8918 Stage II Testicular Seminoma AJCC v6 and v7 9 22292 -NCIT:C9074 Stage III Testicular Cancer AJCC v6 and v7 8 22293 -NCIT:C27787 Stage III Testicular Non-Seminomatous Germ Cell Tumor AJCC v6 and v7 9 22294 -NCIT:C8900 Stage III Testicular Choriocarcinoma AJCC v6 and v7 10 22295 -NCIT:C8910 Stage III Testicular Embryonal Carcinoma AJCC v6 and v7 10 22296 -NCIT:C8916 Stage III Immature Testicular Teratoma AJCC v6 and v7 10 22297 -NCIT:C8922 Stage III Testicular Yolk Sac Tumor AJCC v6 and v7 10 22298 -NCIT:C6367 Stage IIIC Testicular Cancer AJCC v6 and v7 9 22299 -NCIT:C6368 Stage IIIB Testicular Cancer AJCC v6 and v7 9 22300 -NCIT:C6369 Stage IIIA Testicular Cancer AJCC v6 and v7 9 22301 -NCIT:C8913 Stage III Testicular Mixed Germ Cell Tumor AJCC v6 and v7 9 22302 -NCIT:C8919 Stage III Testicular Seminoma AJCC v6 and v7 9 22303 -NCIT:C162469 Testicular Myeloid Sarcoma 7 22304 -NCIT:C162470 Testicular Plasmacytoma 7 22305 -NCIT:C39948 Malignant Testicular Sex Cord-Stromal Tumor 7 22306 -NCIT:C4584 Metastatic Malignant Neoplasm in the Testis 7 22307 -NCIT:C6359 Testicular Sarcoma 7 22308 -NCIT:C6378 Testicular Rhabdomyosarcoma 8 22309 -NCIT:C6810 Testicular Lymphoma 7 22310 -NCIT:C138021 Recurrent Testicular Lymphoma 8 22311 -NCIT:C138022 Refractory Testicular Lymphoma 8 22312 -NCIT:C150589 Testicular Follicular Lymphoma 8 22313 -NCIT:C162467 Testicular Diffuse Large B-Cell Lymphoma 8 22314 -NCIT:C162468 Testicular Nasal Type Extranodal NK/T-Cell Lymphoma 8 22315 -NCIT:C9063 Malignant Testicular Germ Cell Tumor 7 22316 -NCIT:C189057 Postpubertal-Type Testicular Teratoma 8 22317 -NCIT:C25771 Metastatic Malignant Testicular Germ Cell Tumor 8 22318 -NCIT:C187316 Advanced Malignant Testicular Germ Cell Tumor 9 22319 -NCIT:C39921 Testicular Spermatocytic Tumor 8 22320 -NCIT:C39922 Testicular Spermatocytic Tumor with Sarcoma 9 22321 -NCIT:C40962 Testicular Polyembryoma 8 22322 -NCIT:C5027 Malignant Testicular Non-Seminomatous Germ Cell Tumor 8 22323 -NCIT:C27785 Stage I Testicular Non-Seminomatous Germ Cell Tumor AJCC v6 and v7 9 22324 -NCIT:C8907 Stage I Testicular Choriocarcinoma AJCC v6 and v7 10 22325 -NCIT:C8908 Stage I Testicular Embryonal Carcinoma AJCC v6 and v7 10 22326 -NCIT:C8914 Stage I Immature Testicular Teratoma AJCC v6 and v7 10 22327 -NCIT:C8920 Stage I Testicular Yolk Sac Tumor AJCC v6 and v7 10 22328 -NCIT:C27786 Stage II Testicular Non-Seminomatous Germ Cell Tumor AJCC v6 and v7 9 22329 -NCIT:C8606 Stage II Testicular Choriocarcinoma AJCC v6 and v7 10 22330 -NCIT:C8909 Stage II Testicular Embryonal Carcinoma AJCC v6 and v7 10 22331 -NCIT:C8915 Stage II Immature Testicular Teratoma AJCC v6 and v7 10 22332 -NCIT:C8921 Stage II Testicular Yolk Sac Tumor AJCC v6 and v7 10 22333 -NCIT:C27787 Stage III Testicular Non-Seminomatous Germ Cell Tumor AJCC v6 and v7 9 22334 -NCIT:C8900 Stage III Testicular Choriocarcinoma AJCC v6 and v7 10 22335 -NCIT:C8910 Stage III Testicular Embryonal Carcinoma AJCC v6 and v7 10 22336 -NCIT:C8916 Stage III Immature Testicular Teratoma AJCC v6 and v7 10 22337 -NCIT:C8922 Stage III Testicular Yolk Sac Tumor AJCC v6 and v7 10 22338 -NCIT:C35711 Testicular Teratoma with Somatic-Type Malignancy 9 22339 -NCIT:C6341 Testicular Embryonal Carcinoma 9 22340 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 10 22341 -NCIT:C7325 Intratubular Non-Seminoma 10 22342 -NCIT:C8908 Stage I Testicular Embryonal Carcinoma AJCC v6 and v7 10 22343 -NCIT:C8909 Stage II Testicular Embryonal Carcinoma AJCC v6 and v7 10 22344 -NCIT:C8910 Stage III Testicular Embryonal Carcinoma AJCC v6 and v7 10 22345 -NCIT:C6351 Testicular Mixed Embryonal Carcinoma and Teratoma 9 22346 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 10 22347 -NCIT:C7733 Testicular Choriocarcinoma 9 22348 -NCIT:C39935 Testicular Monophasic Choriocarcinoma 10 22349 -NCIT:C6544 Childhood Testicular Choriocarcinoma 10 22350 -NCIT:C8606 Stage II Testicular Choriocarcinoma AJCC v6 and v7 10 22351 -NCIT:C8900 Stage III Testicular Choriocarcinoma AJCC v6 and v7 10 22352 -NCIT:C8907 Stage I Testicular Choriocarcinoma AJCC v6 and v7 10 22353 -NCIT:C8000 Testicular Yolk Sac Tumor 9 22354 -NCIT:C39923 Testicular Yolk Sac Tumor, Microcystic Pattern 10 22355 -NCIT:C39924 Testicular Yolk Sac Tumor, Macrocystic Pattern 10 22356 -NCIT:C39925 Testicular Yolk Sac Tumor, Solid Pattern 10 22357 -NCIT:C39926 Testicular Yolk Sac Tumor, Glandular-Alveolar Pattern 10 22358 -NCIT:C39927 Testicular Yolk Sac Tumor, Endodermal Sinus/Perivascular Pattern 10 22359 -NCIT:C39928 Testicular Yolk Sac Tumor, Papillary Pattern 10 22360 -NCIT:C39929 Testicular Yolk Sac Tumor, Myxomatous Pattern 10 22361 -NCIT:C39930 Testicular Yolk Sac Tumor, Polyvesicular Vitelline Pattern 10 22362 -NCIT:C39931 Testicular Yolk Sac Tumor, Hepatoid Pattern 10 22363 -NCIT:C39932 Testicular Yolk Sac Tumor, Enteric Pattern 10 22364 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 10 22365 -NCIT:C8920 Stage I Testicular Yolk Sac Tumor AJCC v6 and v7 10 22366 -NCIT:C8921 Stage II Testicular Yolk Sac Tumor AJCC v6 and v7 10 22367 -NCIT:C8922 Stage III Testicular Yolk Sac Tumor AJCC v6 and v7 10 22368 -NCIT:C8001 Testicular Mixed Embryonal Carcinoma and Yolk Sac Tumor 9 22369 -NCIT:C8002 Testicular Mixed Yolk Sac Tumor and Teratoma 9 22370 -NCIT:C6347 Testicular Mixed Germ Cell Tumor 8 22371 -NCIT:C6348 Testicular Mixed Choriocarcinoma and Embryonal Carcinoma 9 22372 -NCIT:C6349 Testicular Mixed Choriocarcinoma and Teratoma 9 22373 -NCIT:C6350 Testicular Mixed Embryonal Carcinoma and Seminoma 9 22374 -NCIT:C6351 Testicular Mixed Embryonal Carcinoma and Teratoma 9 22375 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 10 22376 -NCIT:C6352 Testicular Mixed Embryonal Carcinoma and Teratoma with Seminoma 9 22377 -NCIT:C6542 Childhood Testicular Mixed Germ Cell Tumor 9 22378 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 10 22379 -NCIT:C67548 Testicular Mixed Choriocarcinoma and Yolk Sac Tumor 9 22380 -NCIT:C8001 Testicular Mixed Embryonal Carcinoma and Yolk Sac Tumor 9 22381 -NCIT:C8002 Testicular Mixed Yolk Sac Tumor and Teratoma 9 22382 -NCIT:C8003 Testicular Mixed Yolk Sac Tumor and Teratoma with Seminoma 9 22383 -NCIT:C8911 Stage II Testicular Mixed Germ Cell Tumor AJCC v6 and v7 9 22384 -NCIT:C8912 Stage I Testicular Mixed Germ Cell Tumor AJCC v6 and v7 9 22385 -NCIT:C8913 Stage III Testicular Mixed Germ Cell Tumor AJCC v6 and v7 9 22386 -NCIT:C9172 Testicular Mixed Embryonal Carcinoma and Yolk Sac Tumor with Seminoma 9 22387 -NCIT:C9173 Testicular Mixed Choriocarcinoma and Seminoma 9 22388 -NCIT:C68628 Childhood Malignant Testicular Germ Cell Tumor 8 22389 -NCIT:C6542 Childhood Testicular Mixed Germ Cell Tumor 9 22390 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 10 22391 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 9 22392 -NCIT:C6544 Childhood Testicular Choriocarcinoma 9 22393 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 9 22394 -NCIT:C7326 Testicular Germ Cell Neoplasia In Situ with Extratubular Extension 8 22395 -NCIT:C7328 Testicular Seminoma 8 22396 -NCIT:C39919 Testicular Seminoma with Syncytiotrophoblastic Cells 9 22397 -NCIT:C39920 Testicular Seminoma with High Mitotic Index 9 22398 -NCIT:C40957 Testicular Seminoma, Cribriform Variant 9 22399 -NCIT:C40958 Testicular Seminoma, Pseudoglandular Variant 9 22400 -NCIT:C40959 Testicular Seminoma, Tubular Variant 9 22401 -NCIT:C61383 Testicular Typical Seminoma 9 22402 -NCIT:C7329 Intratubular Seminoma 9 22403 -NCIT:C8917 Stage I Testicular Seminoma AJCC v6 and v7 9 22404 -NCIT:C8918 Stage II Testicular Seminoma AJCC v6 and v7 9 22405 -NCIT:C8919 Stage III Testicular Seminoma AJCC v6 and v7 9 22406 -NCIT:C9077 Refractory Malignant Testicular Germ Cell Tumor 8 22407 -NCIT:C9369 Recurrent Malignant Testicular Germ Cell Tumor 8 22408 -NCIT:C9277 Testicular Leukemia 7 22409 -NCIT:C7322 Testicular Mixed Germ Cell-Sex Cord-Stromal Tumor 6 22410 -NCIT:C39911 Testicular Gonadoblastoma 7 22411 -NCIT:C39912 Testicular Mixed Germ Cell-Sex Cord-Stromal Tumor, Unclassified 7 22412 -NCIT:C8591 Testicular Germ Cell Tumor 6 22413 -NCIT:C115211 Familial Testicular Germ Cell Tumor 7 22414 -NCIT:C162139 Regressed Testicular Germ Cell Tumor 7 22415 -NCIT:C39915 Testicular Pure Germ Cell Tumor 7 22416 -NCIT:C3877 Testicular Teratoma 8 22417 -NCIT:C189054 Prepubertal-Type Testicular Teratoma 9 22418 -NCIT:C189057 Postpubertal-Type Testicular Teratoma 9 22419 -NCIT:C35711 Testicular Teratoma with Somatic-Type Malignancy 9 22420 -NCIT:C39936 Monodermal Testicular Teratoma 9 22421 -NCIT:C6353 Immature Testicular Teratoma 9 22422 -NCIT:C123835 Childhood Testicular Immature Teratoma 10 22423 -NCIT:C8914 Stage I Immature Testicular Teratoma AJCC v6 and v7 10 22424 -NCIT:C8915 Stage II Immature Testicular Teratoma AJCC v6 and v7 10 22425 -NCIT:C8916 Stage III Immature Testicular Teratoma AJCC v6 and v7 10 22426 -NCIT:C6355 Mature Testicular Teratoma 9 22427 -NCIT:C123837 Childhood Testicular Mature Teratoma 10 22428 -NCIT:C36092 Testicular Dermoid Cyst 10 22429 -NCIT:C6540 Childhood Testicular Teratoma 9 22430 -NCIT:C123835 Childhood Testicular Immature Teratoma 10 22431 -NCIT:C123837 Childhood Testicular Mature Teratoma 10 22432 -NCIT:C39934 Testicular Trophoblastic Tumor 8 22433 -NCIT:C7733 Testicular Choriocarcinoma 9 22434 -NCIT:C39935 Testicular Monophasic Choriocarcinoma 10 22435 -NCIT:C6544 Childhood Testicular Choriocarcinoma 10 22436 -NCIT:C8606 Stage II Testicular Choriocarcinoma AJCC v6 and v7 10 22437 -NCIT:C8900 Stage III Testicular Choriocarcinoma AJCC v6 and v7 10 22438 -NCIT:C8907 Stage I Testicular Choriocarcinoma AJCC v6 and v7 10 22439 -NCIT:C6341 Testicular Embryonal Carcinoma 8 22440 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 9 22441 -NCIT:C7325 Intratubular Non-Seminoma 9 22442 -NCIT:C8908 Stage I Testicular Embryonal Carcinoma AJCC v6 and v7 9 22443 -NCIT:C8909 Stage II Testicular Embryonal Carcinoma AJCC v6 and v7 9 22444 -NCIT:C8910 Stage III Testicular Embryonal Carcinoma AJCC v6 and v7 9 22445 -NCIT:C7328 Testicular Seminoma 8 22446 -NCIT:C39919 Testicular Seminoma with Syncytiotrophoblastic Cells 9 22447 -NCIT:C39920 Testicular Seminoma with High Mitotic Index 9 22448 -NCIT:C40957 Testicular Seminoma, Cribriform Variant 9 22449 -NCIT:C40958 Testicular Seminoma, Pseudoglandular Variant 9 22450 -NCIT:C40959 Testicular Seminoma, Tubular Variant 9 22451 -NCIT:C61383 Testicular Typical Seminoma 9 22452 -NCIT:C7329 Intratubular Seminoma 9 22453 -NCIT:C8917 Stage I Testicular Seminoma AJCC v6 and v7 9 22454 -NCIT:C8918 Stage II Testicular Seminoma AJCC v6 and v7 9 22455 -NCIT:C8919 Stage III Testicular Seminoma AJCC v6 and v7 9 22456 -NCIT:C8000 Testicular Yolk Sac Tumor 8 22457 -NCIT:C39923 Testicular Yolk Sac Tumor, Microcystic Pattern 9 22458 -NCIT:C39924 Testicular Yolk Sac Tumor, Macrocystic Pattern 9 22459 -NCIT:C39925 Testicular Yolk Sac Tumor, Solid Pattern 9 22460 -NCIT:C39926 Testicular Yolk Sac Tumor, Glandular-Alveolar Pattern 9 22461 -NCIT:C39927 Testicular Yolk Sac Tumor, Endodermal Sinus/Perivascular Pattern 9 22462 -NCIT:C39928 Testicular Yolk Sac Tumor, Papillary Pattern 9 22463 -NCIT:C39929 Testicular Yolk Sac Tumor, Myxomatous Pattern 9 22464 -NCIT:C39930 Testicular Yolk Sac Tumor, Polyvesicular Vitelline Pattern 9 22465 -NCIT:C39931 Testicular Yolk Sac Tumor, Hepatoid Pattern 9 22466 -NCIT:C39932 Testicular Yolk Sac Tumor, Enteric Pattern 9 22467 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 9 22468 -NCIT:C8920 Stage I Testicular Yolk Sac Tumor AJCC v6 and v7 9 22469 -NCIT:C8921 Stage II Testicular Yolk Sac Tumor AJCC v6 and v7 9 22470 -NCIT:C8922 Stage III Testicular Yolk Sac Tumor AJCC v6 and v7 9 22471 -NCIT:C6552 Childhood Testicular Germ Cell Tumor 7 22472 -NCIT:C123843 Childhood Testicular Non-Seminomatous Germ Cell Tumor 8 22473 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 9 22474 -NCIT:C6540 Childhood Testicular Teratoma 9 22475 -NCIT:C123835 Childhood Testicular Immature Teratoma 10 22476 -NCIT:C123837 Childhood Testicular Mature Teratoma 10 22477 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 9 22478 -NCIT:C6544 Childhood Testicular Choriocarcinoma 9 22479 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 9 22480 -NCIT:C68628 Childhood Malignant Testicular Germ Cell Tumor 8 22481 -NCIT:C6542 Childhood Testicular Mixed Germ Cell Tumor 9 22482 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 10 22483 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 9 22484 -NCIT:C6544 Childhood Testicular Choriocarcinoma 9 22485 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 9 22486 -NCIT:C9063 Malignant Testicular Germ Cell Tumor 7 22487 -NCIT:C189057 Postpubertal-Type Testicular Teratoma 8 22488 -NCIT:C25771 Metastatic Malignant Testicular Germ Cell Tumor 8 22489 -NCIT:C187316 Advanced Malignant Testicular Germ Cell Tumor 9 22490 -NCIT:C39921 Testicular Spermatocytic Tumor 8 22491 -NCIT:C39922 Testicular Spermatocytic Tumor with Sarcoma 9 22492 -NCIT:C40962 Testicular Polyembryoma 8 22493 -NCIT:C5027 Malignant Testicular Non-Seminomatous Germ Cell Tumor 8 22494 -NCIT:C27785 Stage I Testicular Non-Seminomatous Germ Cell Tumor AJCC v6 and v7 9 22495 -NCIT:C8907 Stage I Testicular Choriocarcinoma AJCC v6 and v7 10 22496 -NCIT:C8908 Stage I Testicular Embryonal Carcinoma AJCC v6 and v7 10 22497 -NCIT:C8914 Stage I Immature Testicular Teratoma AJCC v6 and v7 10 22498 -NCIT:C8920 Stage I Testicular Yolk Sac Tumor AJCC v6 and v7 10 22499 -NCIT:C27786 Stage II Testicular Non-Seminomatous Germ Cell Tumor AJCC v6 and v7 9 22500 -NCIT:C8606 Stage II Testicular Choriocarcinoma AJCC v6 and v7 10 22501 -NCIT:C8909 Stage II Testicular Embryonal Carcinoma AJCC v6 and v7 10 22502 -NCIT:C8915 Stage II Immature Testicular Teratoma AJCC v6 and v7 10 22503 -NCIT:C8921 Stage II Testicular Yolk Sac Tumor AJCC v6 and v7 10 22504 -NCIT:C27787 Stage III Testicular Non-Seminomatous Germ Cell Tumor AJCC v6 and v7 9 22505 -NCIT:C8900 Stage III Testicular Choriocarcinoma AJCC v6 and v7 10 22506 -NCIT:C8910 Stage III Testicular Embryonal Carcinoma AJCC v6 and v7 10 22507 -NCIT:C8916 Stage III Immature Testicular Teratoma AJCC v6 and v7 10 22508 -NCIT:C8922 Stage III Testicular Yolk Sac Tumor AJCC v6 and v7 10 22509 -NCIT:C35711 Testicular Teratoma with Somatic-Type Malignancy 9 22510 -NCIT:C6341 Testicular Embryonal Carcinoma 9 22511 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 10 22512 -NCIT:C7325 Intratubular Non-Seminoma 10 22513 -NCIT:C8908 Stage I Testicular Embryonal Carcinoma AJCC v6 and v7 10 22514 -NCIT:C8909 Stage II Testicular Embryonal Carcinoma AJCC v6 and v7 10 22515 -NCIT:C8910 Stage III Testicular Embryonal Carcinoma AJCC v6 and v7 10 22516 -NCIT:C6351 Testicular Mixed Embryonal Carcinoma and Teratoma 9 22517 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 10 22518 -NCIT:C7733 Testicular Choriocarcinoma 9 22519 -NCIT:C39935 Testicular Monophasic Choriocarcinoma 10 22520 -NCIT:C6544 Childhood Testicular Choriocarcinoma 10 22521 -NCIT:C8606 Stage II Testicular Choriocarcinoma AJCC v6 and v7 10 22522 -NCIT:C8900 Stage III Testicular Choriocarcinoma AJCC v6 and v7 10 22523 -NCIT:C8907 Stage I Testicular Choriocarcinoma AJCC v6 and v7 10 22524 -NCIT:C8000 Testicular Yolk Sac Tumor 9 22525 -NCIT:C39923 Testicular Yolk Sac Tumor, Microcystic Pattern 10 22526 -NCIT:C39924 Testicular Yolk Sac Tumor, Macrocystic Pattern 10 22527 -NCIT:C39925 Testicular Yolk Sac Tumor, Solid Pattern 10 22528 -NCIT:C39926 Testicular Yolk Sac Tumor, Glandular-Alveolar Pattern 10 22529 -NCIT:C39927 Testicular Yolk Sac Tumor, Endodermal Sinus/Perivascular Pattern 10 22530 -NCIT:C39928 Testicular Yolk Sac Tumor, Papillary Pattern 10 22531 -NCIT:C39929 Testicular Yolk Sac Tumor, Myxomatous Pattern 10 22532 -NCIT:C39930 Testicular Yolk Sac Tumor, Polyvesicular Vitelline Pattern 10 22533 -NCIT:C39931 Testicular Yolk Sac Tumor, Hepatoid Pattern 10 22534 -NCIT:C39932 Testicular Yolk Sac Tumor, Enteric Pattern 10 22535 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 10 22536 -NCIT:C8920 Stage I Testicular Yolk Sac Tumor AJCC v6 and v7 10 22537 -NCIT:C8921 Stage II Testicular Yolk Sac Tumor AJCC v6 and v7 10 22538 -NCIT:C8922 Stage III Testicular Yolk Sac Tumor AJCC v6 and v7 10 22539 -NCIT:C8001 Testicular Mixed Embryonal Carcinoma and Yolk Sac Tumor 9 22540 -NCIT:C8002 Testicular Mixed Yolk Sac Tumor and Teratoma 9 22541 -NCIT:C6347 Testicular Mixed Germ Cell Tumor 8 22542 -NCIT:C6348 Testicular Mixed Choriocarcinoma and Embryonal Carcinoma 9 22543 -NCIT:C6349 Testicular Mixed Choriocarcinoma and Teratoma 9 22544 -NCIT:C6350 Testicular Mixed Embryonal Carcinoma and Seminoma 9 22545 -NCIT:C6351 Testicular Mixed Embryonal Carcinoma and Teratoma 9 22546 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 10 22547 -NCIT:C6352 Testicular Mixed Embryonal Carcinoma and Teratoma with Seminoma 9 22548 -NCIT:C6542 Childhood Testicular Mixed Germ Cell Tumor 9 22549 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 10 22550 -NCIT:C67548 Testicular Mixed Choriocarcinoma and Yolk Sac Tumor 9 22551 -NCIT:C8001 Testicular Mixed Embryonal Carcinoma and Yolk Sac Tumor 9 22552 -NCIT:C8002 Testicular Mixed Yolk Sac Tumor and Teratoma 9 22553 -NCIT:C8003 Testicular Mixed Yolk Sac Tumor and Teratoma with Seminoma 9 22554 -NCIT:C8911 Stage II Testicular Mixed Germ Cell Tumor AJCC v6 and v7 9 22555 -NCIT:C8912 Stage I Testicular Mixed Germ Cell Tumor AJCC v6 and v7 9 22556 -NCIT:C8913 Stage III Testicular Mixed Germ Cell Tumor AJCC v6 and v7 9 22557 -NCIT:C9172 Testicular Mixed Embryonal Carcinoma and Yolk Sac Tumor with Seminoma 9 22558 -NCIT:C9173 Testicular Mixed Choriocarcinoma and Seminoma 9 22559 -NCIT:C68628 Childhood Malignant Testicular Germ Cell Tumor 8 22560 -NCIT:C6542 Childhood Testicular Mixed Germ Cell Tumor 9 22561 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 10 22562 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 9 22563 -NCIT:C6544 Childhood Testicular Choriocarcinoma 9 22564 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 9 22565 -NCIT:C7326 Testicular Germ Cell Neoplasia In Situ with Extratubular Extension 8 22566 -NCIT:C7328 Testicular Seminoma 8 22567 -NCIT:C39919 Testicular Seminoma with Syncytiotrophoblastic Cells 9 22568 -NCIT:C39920 Testicular Seminoma with High Mitotic Index 9 22569 -NCIT:C40957 Testicular Seminoma, Cribriform Variant 9 22570 -NCIT:C40958 Testicular Seminoma, Pseudoglandular Variant 9 22571 -NCIT:C40959 Testicular Seminoma, Tubular Variant 9 22572 -NCIT:C61383 Testicular Typical Seminoma 9 22573 -NCIT:C7329 Intratubular Seminoma 9 22574 -NCIT:C8917 Stage I Testicular Seminoma AJCC v6 and v7 9 22575 -NCIT:C8918 Stage II Testicular Seminoma AJCC v6 and v7 9 22576 -NCIT:C8919 Stage III Testicular Seminoma AJCC v6 and v7 9 22577 -NCIT:C9077 Refractory Malignant Testicular Germ Cell Tumor 8 22578 -NCIT:C9369 Recurrent Malignant Testicular Germ Cell Tumor 8 22579 -NCIT:C9313 Testicular Non-Seminomatous Germ Cell Tumor 7 22580 -NCIT:C123843 Childhood Testicular Non-Seminomatous Germ Cell Tumor 8 22581 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 9 22582 -NCIT:C6540 Childhood Testicular Teratoma 9 22583 -NCIT:C123835 Childhood Testicular Immature Teratoma 10 22584 -NCIT:C123837 Childhood Testicular Mature Teratoma 10 22585 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 9 22586 -NCIT:C6544 Childhood Testicular Choriocarcinoma 9 22587 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 9 22588 -NCIT:C3877 Testicular Teratoma 8 22589 -NCIT:C189054 Prepubertal-Type Testicular Teratoma 9 22590 -NCIT:C189057 Postpubertal-Type Testicular Teratoma 9 22591 -NCIT:C35711 Testicular Teratoma with Somatic-Type Malignancy 9 22592 -NCIT:C39936 Monodermal Testicular Teratoma 9 22593 -NCIT:C6353 Immature Testicular Teratoma 9 22594 -NCIT:C123835 Childhood Testicular Immature Teratoma 10 22595 -NCIT:C8914 Stage I Immature Testicular Teratoma AJCC v6 and v7 10 22596 -NCIT:C8915 Stage II Immature Testicular Teratoma AJCC v6 and v7 10 22597 -NCIT:C8916 Stage III Immature Testicular Teratoma AJCC v6 and v7 10 22598 -NCIT:C6355 Mature Testicular Teratoma 9 22599 -NCIT:C123837 Childhood Testicular Mature Teratoma 10 22600 -NCIT:C36092 Testicular Dermoid Cyst 10 22601 -NCIT:C6540 Childhood Testicular Teratoma 9 22602 -NCIT:C123835 Childhood Testicular Immature Teratoma 10 22603 -NCIT:C123837 Childhood Testicular Mature Teratoma 10 22604 -NCIT:C39934 Testicular Trophoblastic Tumor 8 22605 -NCIT:C7733 Testicular Choriocarcinoma 9 22606 -NCIT:C39935 Testicular Monophasic Choriocarcinoma 10 22607 -NCIT:C6544 Childhood Testicular Choriocarcinoma 10 22608 -NCIT:C8606 Stage II Testicular Choriocarcinoma AJCC v6 and v7 10 22609 -NCIT:C8900 Stage III Testicular Choriocarcinoma AJCC v6 and v7 10 22610 -NCIT:C8907 Stage I Testicular Choriocarcinoma AJCC v6 and v7 10 22611 -NCIT:C5027 Malignant Testicular Non-Seminomatous Germ Cell Tumor 8 22612 -NCIT:C27785 Stage I Testicular Non-Seminomatous Germ Cell Tumor AJCC v6 and v7 9 22613 -NCIT:C8907 Stage I Testicular Choriocarcinoma AJCC v6 and v7 10 22614 -NCIT:C8908 Stage I Testicular Embryonal Carcinoma AJCC v6 and v7 10 22615 -NCIT:C8914 Stage I Immature Testicular Teratoma AJCC v6 and v7 10 22616 -NCIT:C8920 Stage I Testicular Yolk Sac Tumor AJCC v6 and v7 10 22617 -NCIT:C27786 Stage II Testicular Non-Seminomatous Germ Cell Tumor AJCC v6 and v7 9 22618 -NCIT:C8606 Stage II Testicular Choriocarcinoma AJCC v6 and v7 10 22619 -NCIT:C8909 Stage II Testicular Embryonal Carcinoma AJCC v6 and v7 10 22620 -NCIT:C8915 Stage II Immature Testicular Teratoma AJCC v6 and v7 10 22621 -NCIT:C8921 Stage II Testicular Yolk Sac Tumor AJCC v6 and v7 10 22622 -NCIT:C27787 Stage III Testicular Non-Seminomatous Germ Cell Tumor AJCC v6 and v7 9 22623 -NCIT:C8900 Stage III Testicular Choriocarcinoma AJCC v6 and v7 10 22624 -NCIT:C8910 Stage III Testicular Embryonal Carcinoma AJCC v6 and v7 10 22625 -NCIT:C8916 Stage III Immature Testicular Teratoma AJCC v6 and v7 10 22626 -NCIT:C8922 Stage III Testicular Yolk Sac Tumor AJCC v6 and v7 10 22627 -NCIT:C35711 Testicular Teratoma with Somatic-Type Malignancy 9 22628 -NCIT:C6341 Testicular Embryonal Carcinoma 9 22629 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 10 22630 -NCIT:C7325 Intratubular Non-Seminoma 10 22631 -NCIT:C8908 Stage I Testicular Embryonal Carcinoma AJCC v6 and v7 10 22632 -NCIT:C8909 Stage II Testicular Embryonal Carcinoma AJCC v6 and v7 10 22633 -NCIT:C8910 Stage III Testicular Embryonal Carcinoma AJCC v6 and v7 10 22634 -NCIT:C6351 Testicular Mixed Embryonal Carcinoma and Teratoma 9 22635 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 10 22636 -NCIT:C7733 Testicular Choriocarcinoma 9 22637 -NCIT:C39935 Testicular Monophasic Choriocarcinoma 10 22638 -NCIT:C6544 Childhood Testicular Choriocarcinoma 10 22639 -NCIT:C8606 Stage II Testicular Choriocarcinoma AJCC v6 and v7 10 22640 -NCIT:C8900 Stage III Testicular Choriocarcinoma AJCC v6 and v7 10 22641 -NCIT:C8907 Stage I Testicular Choriocarcinoma AJCC v6 and v7 10 22642 -NCIT:C8000 Testicular Yolk Sac Tumor 9 22643 -NCIT:C39923 Testicular Yolk Sac Tumor, Microcystic Pattern 10 22644 -NCIT:C39924 Testicular Yolk Sac Tumor, Macrocystic Pattern 10 22645 -NCIT:C39925 Testicular Yolk Sac Tumor, Solid Pattern 10 22646 -NCIT:C39926 Testicular Yolk Sac Tumor, Glandular-Alveolar Pattern 10 22647 -NCIT:C39927 Testicular Yolk Sac Tumor, Endodermal Sinus/Perivascular Pattern 10 22648 -NCIT:C39928 Testicular Yolk Sac Tumor, Papillary Pattern 10 22649 -NCIT:C39929 Testicular Yolk Sac Tumor, Myxomatous Pattern 10 22650 -NCIT:C39930 Testicular Yolk Sac Tumor, Polyvesicular Vitelline Pattern 10 22651 -NCIT:C39931 Testicular Yolk Sac Tumor, Hepatoid Pattern 10 22652 -NCIT:C39932 Testicular Yolk Sac Tumor, Enteric Pattern 10 22653 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 10 22654 -NCIT:C8920 Stage I Testicular Yolk Sac Tumor AJCC v6 and v7 10 22655 -NCIT:C8921 Stage II Testicular Yolk Sac Tumor AJCC v6 and v7 10 22656 -NCIT:C8922 Stage III Testicular Yolk Sac Tumor AJCC v6 and v7 10 22657 -NCIT:C8001 Testicular Mixed Embryonal Carcinoma and Yolk Sac Tumor 9 22658 -NCIT:C8002 Testicular Mixed Yolk Sac Tumor and Teratoma 9 22659 -NCIT:C38164 Male Reproductive System Precancerous Condition 5 22660 -NCIT:C39905 Prostate Stromal Tumor of Uncertain Malignant Potential 6 22661 -NCIT:C4064 Prostatic Intraepithelial Neoplasia 6 22662 -NCIT:C5541 High Grade Prostatic Intraepithelial Neoplasia 7 22663 -NCIT:C3642 Grade III Prostatic Intraepithelial Neoplasia 8 22664 -NCIT:C39887 High Grade Prostatic Intraepithelial Neoplasia, Signet Ring Variant 8 22665 -NCIT:C39888 High Grade Prostatic Intraepithelial Neoplasia, Mucinous Variant 8 22666 -NCIT:C39889 High Grade Prostatic Intraepithelial Neoplasia, Foamy Variant 8 22667 -NCIT:C39890 High Grade Prostatic Intraepithelial Neoplasia, Inverted Variant 8 22668 -NCIT:C39891 High Grade Prostatic Intraepithelial Neoplasia, Small Cell Neuroendocrine Variant 8 22669 -NCIT:C7360 Grade II Prostatic Intraepithelial Neoplasia 8 22670 -NCIT:C5542 Low Grade Prostatic Intraepithelial Neoplasia 7 22671 -NCIT:C4596 Penile Intraepithelial Neoplasia 6 22672 -NCIT:C162536 Non-Human Papillomavirus-Related Penile Intraepithelial Neoplasia 7 22673 -NCIT:C162539 Differentiated (Simplex) Penile Intraepithelial Neoplasia 8 22674 -NCIT:C162541 Human Papillomavirus-Related Penile Intraepithelial Neoplasia 7 22675 -NCIT:C162542 Basaloid (Undifferentiated) Penile Intraepithelial Neoplasia 8 22676 -NCIT:C162543 Warty (Bowenoid) Penile Intraepithelial Neoplasia 8 22677 -NCIT:C162546 Warty-Basaloid Penile Intraepithelial Neoplasia 8 22678 -NCIT:C39963 Penile Bowenoid Papulosis 8 22679 -NCIT:C7666 Low Grade Penile Intraepithelial Neoplasia 7 22680 -NCIT:C7667 High Grade Penile Intraepithelial Neoplasia 7 22681 -NCIT:C27790 Penile Carcinoma In Situ 8 22682 -NCIT:C7665 Grade II Penile Intraepithelial Neoplasia 8 22683 -NCIT:C4777 Benign Male Reproductive System Neoplasm 5 22684 -NCIT:C161643 Benign Seminal Vesicle Neoplasm 6 22685 -NCIT:C161638 Seminal Vesicle Leiomyoma 7 22686 -NCIT:C161639 Seminal Vesicle Schwannoma 7 22687 -NCIT:C161640 Seminal Vesicle Mammary-Type Myofibroblastoma 7 22688 -NCIT:C39907 Seminal Vesicle Cystadenoma 7 22689 -NCIT:C162476 Paratesticular Adenomatoid Tumor 6 22690 -NCIT:C6382 Epididymal Adenomatoid Tumor 7 22691 -NCIT:C162494 Paratesticular Leiomyoma 6 22692 -NCIT:C161638 Seminal Vesicle Leiomyoma 7 22693 -NCIT:C162496 Paratesticular Rhabdomyoma 6 22694 -NCIT:C162498 Paratesticular Cellular Angiofibroma 6 22695 -NCIT:C162500 Paratesticular Mammary-Type Myofibroblastoma 6 22696 -NCIT:C161640 Seminal Vesicle Mammary-Type Myofibroblastoma 7 22697 -NCIT:C162501 Paratesticular Deep (Aggressive) Angiomyxoma 6 22698 -NCIT:C162502 Paratesticular Schwannoma 6 22699 -NCIT:C161639 Seminal Vesicle Schwannoma 7 22700 -NCIT:C162503 Paratesticular Hemangioma 6 22701 -NCIT:C3489 Benign Penile Neoplasm 6 22702 -NCIT:C162579 Penile Hemangioma 7 22703 -NCIT:C162580 Penile Epithelioid Hemangioma 8 22704 -NCIT:C162583 Penile Leiomyoma 7 22705 -NCIT:C162586 Penile Schwannoma 7 22706 -NCIT:C162587 Penile Neurofibroma 7 22707 -NCIT:C162590 Penile Myointimoma 7 22708 -NCIT:C162592 Penile Lymphangioma 7 22709 -NCIT:C3612 Benign Testicular Neoplasm 6 22710 -NCIT:C39951 Testicular Fibroma 7 22711 -NCIT:C6355 Mature Testicular Teratoma 7 22712 -NCIT:C123837 Childhood Testicular Mature Teratoma 8 22713 -NCIT:C36092 Testicular Dermoid Cyst 8 22714 -NCIT:C6522 Benign Testicular Sertoli Cell Tumor 7 22715 -NCIT:C39943 Testicular Sertoli Cell Tumor, Lipid Rich Variant 8 22716 -NCIT:C39945 Testicular Sclerosing Sertoli Cell Tumor 8 22717 -NCIT:C3613 Benign Prostate Neoplasm 6 22718 -NCIT:C161581 Prostate Hemangioma 7 22719 -NCIT:C161606 Prostate Cystadenoma 7 22720 -NCIT:C3972 Prostate Fibroma 7 22721 -NCIT:C4795 Prostate Adenoma 7 22722 -NCIT:C5532 Benign Prostate Phyllodes Tumor 7 22723 -NCIT:C5544 Prostate Leiomyoma 7 22724 -NCIT:C3614 Benign Epididymal Neoplasm 6 22725 -NCIT:C162483 Epididymal Cystadenoma 7 22726 -NCIT:C155953 Epididymal Papillary Cystadenoma 8 22727 -NCIT:C6382 Epididymal Adenomatoid Tumor 7 22728 -NCIT:C39956 Rete Testis Adenoma 6 22729 -NCIT:C6384 Paratesticular Lipoma 6 22730 -NCIT:C3606 Spermatic Cord Lipoma 7 22731 -NCIT:C8561 Malignant Male Reproductive System Neoplasm 5 22732 -NCIT:C150533 Recurrent Malignant Male Reproductive System Neoplasm 6 22733 -NCIT:C138021 Recurrent Testicular Lymphoma 7 22734 -NCIT:C179466 Recurrent Malignant Spermatic Cord Neoplasm 7 22735 -NCIT:C7621 Recurrent Male Reproductive System Carcinoma 7 22736 -NCIT:C7870 Recurrent Penile Carcinoma 8 22737 -NCIT:C7902 Recurrent Prostate Carcinoma 8 22738 -NCIT:C156771 Biochemically Recurrent Prostate Carcinoma 9 22739 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 9 22740 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 10 22741 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 9 22742 -NCIT:C9369 Recurrent Malignant Testicular Germ Cell Tumor 7 22743 -NCIT:C150534 Refractory Malignant Male Reproductive System Neoplasm 6 22744 -NCIT:C138022 Refractory Testicular Lymphoma 7 22745 -NCIT:C177149 Refractory Male Reproductive System Carcinoma 7 22746 -NCIT:C167255 Refractory Prostate Carcinoma 8 22747 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 9 22748 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 10 22749 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 10 22750 -NCIT:C161609 Double-Negative Prostate Carcinoma 10 22751 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 10 22752 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 10 22753 -NCIT:C167256 Refractory Prostate Adenocarcinoma 9 22754 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 9 22755 -NCIT:C177150 Refractory Penile Carcinoma 8 22756 -NCIT:C9077 Refractory Malignant Testicular Germ Cell Tumor 7 22757 -NCIT:C161644 Malignant Seminal Vesicle Neoplasm 6 22758 -NCIT:C161634 Seminal Vesicle Squamous Cell Carcinoma 7 22759 -NCIT:C161641 Seminal Vesicle Leiomyosarcoma 7 22760 -NCIT:C161642 Seminal Vesicle Angiosarcoma 7 22761 -NCIT:C161649 Metastatic Malignant Neoplasm in the Seminal Vesicle 7 22762 -NCIT:C39906 Seminal Vesicle Adenocarcinoma 7 22763 -NCIT:C162477 Paratesticular Malignant Mesothelioma 6 22764 -NCIT:C173605 Paratesticular Epithelioid Mesothelioma 7 22765 -NCIT:C173609 Unresectable Paratesticular Epithelioid Mesothelioma 8 22766 -NCIT:C173606 Paratesticular Sarcomatoid Mesothelioma 7 22767 -NCIT:C173610 Unresectable Paratesticular Sarcomatoid Mesothelioma 8 22768 -NCIT:C173607 Paratesticular Biphasic Mesothelioma 7 22769 -NCIT:C173611 Unresectable Paratesticular Biphasic Mesothelioma 8 22770 -NCIT:C173608 Unresectable Paratesticular Malignant Mesothelioma 7 22771 -NCIT:C173609 Unresectable Paratesticular Epithelioid Mesothelioma 8 22772 -NCIT:C173610 Unresectable Paratesticular Sarcomatoid Mesothelioma 8 22773 -NCIT:C173611 Unresectable Paratesticular Biphasic Mesothelioma 8 22774 -NCIT:C162486 Paratesticular Squamous Cell Carcinoma 6 22775 -NCIT:C161634 Seminal Vesicle Squamous Cell Carcinoma 7 22776 -NCIT:C162489 Paratesticular Wilms Tumor 6 22777 -NCIT:C162493 Paratesticular Liposarcoma 6 22778 -NCIT:C162495 Paratesticular Leiomyosarcoma 6 22779 -NCIT:C161641 Seminal Vesicle Leiomyosarcoma 7 22780 -NCIT:C162497 Paratesticular Rhabdomyosarcoma 6 22781 -NCIT:C181196 Male Reproductive System Carcinoma 6 22782 -NCIT:C177149 Refractory Male Reproductive System Carcinoma 7 22783 -NCIT:C167255 Refractory Prostate Carcinoma 8 22784 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 9 22785 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 10 22786 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 10 22787 -NCIT:C161609 Double-Negative Prostate Carcinoma 10 22788 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 10 22789 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 10 22790 -NCIT:C167256 Refractory Prostate Adenocarcinoma 9 22791 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 9 22792 -NCIT:C177150 Refractory Penile Carcinoma 8 22793 -NCIT:C39906 Seminal Vesicle Adenocarcinoma 7 22794 -NCIT:C39957 Epididymal Adenocarcinoma 7 22795 -NCIT:C4863 Prostate Carcinoma 7 22796 -NCIT:C103817 Hereditary Prostate Carcinoma 8 22797 -NCIT:C114933 Hormone-Resistant Prostate Carcinoma 8 22798 -NCIT:C138167 Prostate Carcinoma by Gene Expression Profile 8 22799 -NCIT:C138168 Luminal A Prostate Carcinoma 9 22800 -NCIT:C138169 Luminal B Prostate Carcinoma 9 22801 -NCIT:C138170 Basal-Like Prostate Carcinoma 9 22802 -NCIT:C140163 Prostate Cancer by AJCC v8 Stage 8 22803 -NCIT:C140164 Stage I Prostate Cancer AJCC v8 9 22804 -NCIT:C140165 Stage II Prostate Cancer AJCC v8 9 22805 -NCIT:C140166 Stage IIA Prostate Cancer AJCC v8 10 22806 -NCIT:C140167 Stage IIB Prostate Cancer AJCC v8 10 22807 -NCIT:C140168 Stage IIC Prostate Cancer AJCC v8 10 22808 -NCIT:C140169 Stage III Prostate Cancer AJCC v8 9 22809 -NCIT:C140170 Stage IIIA Prostate Cancer AJCC v8 10 22810 -NCIT:C140171 Stage IIIB Prostate Cancer AJCC v8 10 22811 -NCIT:C140172 Stage IIIC Prostate Cancer AJCC v8 10 22812 -NCIT:C140173 Stage IV Prostate Cancer AJCC v8 9 22813 -NCIT:C140174 Stage IVA Prostate Cancer AJCC v8 10 22814 -NCIT:C140175 Stage IVB Prostate Cancer AJCC v8 10 22815 -NCIT:C161022 Intraductal Prostate Carcinoma 8 22816 -NCIT:C167255 Refractory Prostate Carcinoma 8 22817 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 9 22818 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 10 22819 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 10 22820 -NCIT:C161609 Double-Negative Prostate Carcinoma 10 22821 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 10 22822 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 10 22823 -NCIT:C167256 Refractory Prostate Adenocarcinoma 9 22824 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 9 22825 -NCIT:C171611 Unresectable Prostate Carcinoma 8 22826 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 9 22827 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 22828 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 9 22829 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 9 22830 -NCIT:C176517 Localized Prostate Carcinoma 8 22831 -NCIT:C39898 Primary Prostate Urothelial Carcinoma 8 22832 -NCIT:C39900 Prostatic Urethra Urothelial Carcinoma 9 22833 -NCIT:C39901 Prostatic Duct Urothelial Carcinoma 9 22834 -NCIT:C48596 Invasive Prostate Carcinoma 8 22835 -NCIT:C158912 Prostate Neuroendocrine Carcinoma 9 22836 -NCIT:C158650 Prostate Large Cell Neuroendocrine Carcinoma 10 22837 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 10 22838 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 11 22839 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 11 22840 -NCIT:C6766 Prostate Small Cell Neuroendocrine Carcinoma 10 22841 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 11 22842 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 11 22843 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 11 22844 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 11 22845 -NCIT:C2919 Prostate Adenocarcinoma 9 22846 -NCIT:C150557 Prostate Adenocarcinoma without Neuroendocrine Differentiation 10 22847 -NCIT:C164185 Aggressive Prostate Adenocarcinoma 10 22848 -NCIT:C164186 Prostate Adenocarcinoma by AJCC v7 Stage 10 22849 -NCIT:C8947 Stage I Prostate Adenocarcinoma AJCC v7 11 22850 -NCIT:C8948 Stage II Prostate Adenocarcinoma AJCC v7 11 22851 -NCIT:C8949 Stage III Prostate Adenocarcinoma AJCC v7 11 22852 -NCIT:C8950 Stage IV Prostate Adenocarcinoma AJCC v7 11 22853 -NCIT:C167256 Refractory Prostate Adenocarcinoma 10 22854 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 10 22855 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 11 22856 -NCIT:C27905 Well Differentiated Prostate Adenocarcinoma 10 22857 -NCIT:C39896 Prostate Ductal Adenocarcinoma, Papillary Pattern 11 22858 -NCIT:C27906 Moderately Differentiated Prostate Adenocarcinoma 10 22859 -NCIT:C27916 Poorly Differentiated Prostate Adenocarcinoma 10 22860 -NCIT:C5530 Prostate Acinar Adenocarcinoma, Sarcomatoid Variant 11 22861 -NCIT:C39903 Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 22862 -NCIT:C158656 Usual Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 22863 -NCIT:C158664 Prostate Adenocarcinoma with Paneth Cell-Like Neuroendocrine Differentiation 11 22864 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 22865 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 12 22866 -NCIT:C5596 Prostate Acinar Adenocarcinoma 10 22867 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 11 22868 -NCIT:C158656 Usual Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 22869 -NCIT:C160817 Prostate Acinar Adenocarcinoma, Microcystic Variant 11 22870 -NCIT:C160818 Prostate Acinar Adenocarcinoma, Pleomorphic Giant Cell Variant 11 22871 -NCIT:C39880 Prostate Acinar Adenocarcinoma, Atrophic Variant 11 22872 -NCIT:C39881 Prostate Acinar Adenocarcinoma, Pseudohyperplastic Variant 11 22873 -NCIT:C39882 Prostate Acinar Adenocarcinoma, Foamy Gland Variant 11 22874 -NCIT:C39884 Prostate Acinar Adenocarcinoma, Oncocytic Variant 11 22875 -NCIT:C39885 Prostate Acinar Adenocarcinoma, Lymphoepithelioma-Like Variant 11 22876 -NCIT:C5530 Prostate Acinar Adenocarcinoma, Sarcomatoid Variant 11 22877 -NCIT:C5535 Prostate Acinar Adenocarcinoma, Signet Ring-Like Cell Variant 11 22878 -NCIT:C5537 Prostate Acinar Mucinous Adenocarcinoma 11 22879 -NCIT:C6813 Prostate Ductal Adenocarcinoma 10 22880 -NCIT:C39895 Prostate Ductal Adenocarcinoma, Cribriform Pattern 11 22881 -NCIT:C39896 Prostate Ductal Adenocarcinoma, Papillary Pattern 11 22882 -NCIT:C39897 Prostate Ductal Adenocarcinoma, Solid Pattern 11 22883 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 10 22884 -NCIT:C156286 Advanced Prostate Adenocarcinoma 11 22885 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 12 22886 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 11 22887 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 12 22888 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 22889 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 12 22890 -NCIT:C39902 Prostate Basal Cell Carcinoma 9 22891 -NCIT:C5536 Prostate Squamous Cell Carcinoma 9 22892 -NCIT:C5538 Prostate Adenosquamous Carcinoma 9 22893 -NCIT:C5539 Prostate Adenoid Cystic Carcinoma 9 22894 -NCIT:C5597 Prostate Undifferentiated Carcinoma 9 22895 -NCIT:C7079 Prostate Cancer by Whitmore-Jewett Stage 8 22896 -NCIT:C7099 Stage D Prostate Cancer 9 22897 -NCIT:C7552 Stage C Prostate Cancer 9 22898 -NCIT:C7554 Stage B Prostate Cancer 9 22899 -NCIT:C7556 Stage A Prostate Cancer 9 22900 -NCIT:C7902 Recurrent Prostate Carcinoma 8 22901 -NCIT:C156771 Biochemically Recurrent Prostate Carcinoma 9 22902 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 9 22903 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 10 22904 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 9 22905 -NCIT:C8946 Metastatic Prostate Carcinoma 8 22906 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 9 22907 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 10 22908 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 10 22909 -NCIT:C161609 Double-Negative Prostate Carcinoma 10 22910 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 10 22911 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 10 22912 -NCIT:C132881 Prostate Carcinoma Metastatic in the Soft Tissue 9 22913 -NCIT:C148536 Castration-Naive Prostate Carcinoma 9 22914 -NCIT:C153336 Castration-Sensitive Prostate Carcinoma 9 22915 -NCIT:C156284 Advanced Prostate Carcinoma 9 22916 -NCIT:C156286 Advanced Prostate Adenocarcinoma 10 22917 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 22918 -NCIT:C156285 Locally Advanced Prostate Carcinoma 9 22919 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 10 22920 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 11 22921 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 10 22922 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 11 22923 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 10 22924 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 9 22925 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 10 22926 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 10 22927 -NCIT:C161584 Prostate Carcinoma Metastatic in the Pelvic Cavity 9 22928 -NCIT:C161587 Prostate Carcinoma Metastatic in the Lymph Nodes 9 22929 -NCIT:C171265 Oligometastatic Prostate Carcinoma 9 22930 -NCIT:C36307 Prostate Carcinoma Metastatic in the Lung 9 22931 -NCIT:C36308 Prostate Carcinoma Metastatic in the Bone 9 22932 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 9 22933 -NCIT:C156286 Advanced Prostate Adenocarcinoma 10 22934 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 22935 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 10 22936 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 11 22937 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 22938 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 22939 -NCIT:C90521 Prostate Cancer by AJCC v6 Stage 8 22940 -NCIT:C7551 Stage III Prostate Cancer AJCC v6 9 22941 -NCIT:C7553 Stage II Prostate Cancer AJCC v6 9 22942 -NCIT:C7555 Stage I Prostate Cancer AJCC v6 9 22943 -NCIT:C9075 Stage IV Prostate Cancer AJCC v6 9 22944 -NCIT:C91233 Prostate Cancer by AJCC v7 Stage 8 22945 -NCIT:C164186 Prostate Adenocarcinoma by AJCC v7 Stage 9 22946 -NCIT:C8947 Stage I Prostate Adenocarcinoma AJCC v7 10 22947 -NCIT:C8948 Stage II Prostate Adenocarcinoma AJCC v7 10 22948 -NCIT:C8949 Stage III Prostate Adenocarcinoma AJCC v7 10 22949 -NCIT:C8950 Stage IV Prostate Adenocarcinoma AJCC v7 10 22950 -NCIT:C89232 Stage I Prostate Cancer AJCC v7 9 22951 -NCIT:C8947 Stage I Prostate Adenocarcinoma AJCC v7 10 22952 -NCIT:C89233 Stage II Prostate Cancer AJCC v7 9 22953 -NCIT:C88106 Stage IIA Prostate Cancer AJCC v7 10 22954 -NCIT:C88107 Stage IIB Prostate Cancer AJCC v7 10 22955 -NCIT:C8948 Stage II Prostate Adenocarcinoma AJCC v7 10 22956 -NCIT:C89234 Stage III Prostate Cancer AJCC v7 9 22957 -NCIT:C8949 Stage III Prostate Adenocarcinoma AJCC v7 10 22958 -NCIT:C89235 Stage IV Prostate Cancer AJCC v7 9 22959 -NCIT:C8950 Stage IV Prostate Adenocarcinoma AJCC v7 10 22960 -NCIT:C7621 Recurrent Male Reproductive System Carcinoma 7 22961 -NCIT:C7870 Recurrent Penile Carcinoma 8 22962 -NCIT:C7902 Recurrent Prostate Carcinoma 8 22963 -NCIT:C156771 Biochemically Recurrent Prostate Carcinoma 9 22964 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 9 22965 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 10 22966 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 9 22967 -NCIT:C8955 Rete Testis Adenocarcinoma 7 22968 -NCIT:C9061 Penile Carcinoma 7 22969 -NCIT:C118820 Adult Penile Carcinoma 8 22970 -NCIT:C140075 Penile Cancer by AJCC v8 Stage 8 22971 -NCIT:C140076 Stage 0 Penile Cancer AJCC v8 9 22972 -NCIT:C140077 Stage 0is Penile Cancer AJCC v8 10 22973 -NCIT:C140078 Stage 0a Penile Cancer AJCC v8 10 22974 -NCIT:C140079 Stage I Penile Cancer AJCC v8 9 22975 -NCIT:C140080 Stage II Penile Cancer AJCC v8 9 22976 -NCIT:C140081 Stage IIA Penile Cancer AJCC v8 10 22977 -NCIT:C140083 Stage IIB Penile Cancer AJCC v8 10 22978 -NCIT:C140084 Stage III Penile Cancer AJCC v8 9 22979 -NCIT:C140085 Stage IIIA Penile Cancer AJCC v8 10 22980 -NCIT:C140086 Stage IIIB Penile Cancer AJCC v8 10 22981 -NCIT:C140087 Stage IV Penile Cancer AJCC v8 9 22982 -NCIT:C177150 Refractory Penile Carcinoma 8 22983 -NCIT:C27784 Metastatic Penile Carcinoma 8 22984 -NCIT:C170789 Locally Advanced Penile Carcinoma 9 22985 -NCIT:C170790 Advanced Penile Carcinoma 9 22986 -NCIT:C182111 Metastatic Squamous Cell Carcinoma of the Penis 9 22987 -NCIT:C27817 Penile Paget Disease 8 22988 -NCIT:C39961 Penile Basal Cell Carcinoma 8 22989 -NCIT:C7729 Squamous Cell Carcinoma of the Penis 8 22990 -NCIT:C159244 Non-Human Papillomavirus-Related Squamous Cell Carcinoma of the Penis 9 22991 -NCIT:C103340 Papillary Carcinoma of the Penis, Not Otherwise Specified 10 22992 -NCIT:C159245 Pseudohyperplastic Carcinoma of the Penis 10 22993 -NCIT:C159246 Pseudoglandular Carcinoma of the Penis 10 22994 -NCIT:C159248 Adenosquamous Carcinoma of the Penis 10 22995 -NCIT:C39959 Mixed Squamous Cell Carcinoma of the Penis 10 22996 -NCIT:C6979 Squamous Cell Carcinoma of the Penis, Usual Type 10 22997 -NCIT:C6982 Verrucous Carcinoma of the Penis 10 22998 -NCIT:C159247 Carcinoma Cuniculatum of the Penis 11 22999 -NCIT:C6984 Sarcomatoid Carcinoma of the Penis 10 23000 -NCIT:C182111 Metastatic Squamous Cell Carcinoma of the Penis 9 23001 -NCIT:C27682 Human Papillomavirus-Related Squamous Cell Carcinoma of the Penis 9 23002 -NCIT:C159250 Warty-Basaloid Carcinoma of the Penis 10 23003 -NCIT:C159251 Clear Cell Squamous Cell Carcinoma of the Penis 10 23004 -NCIT:C159252 Lymphoepithelioma-Like Carcinoma of the Penis 10 23005 -NCIT:C6980 Basaloid Squamous Cell Carcinoma of the Penis 10 23006 -NCIT:C159249 Papillary-Basaloid Carcinoma of the Penis 11 23007 -NCIT:C6981 Warty Carcinoma of the Penis 10 23008 -NCIT:C27790 Penile Carcinoma In Situ 9 23009 -NCIT:C6983 Papillary Carcinoma of the Penis 9 23010 -NCIT:C103340 Papillary Carcinoma of the Penis, Not Otherwise Specified 10 23011 -NCIT:C159249 Papillary-Basaloid Carcinoma of the Penis 10 23012 -NCIT:C6981 Warty Carcinoma of the Penis 10 23013 -NCIT:C6982 Verrucous Carcinoma of the Penis 10 23014 -NCIT:C159247 Carcinoma Cuniculatum of the Penis 11 23015 -NCIT:C7870 Recurrent Penile Carcinoma 8 23016 -NCIT:C90520 Penile Cancer by AJCC v6 Stage 8 23017 -NCIT:C3643 Stage 0 Penile Cancer AJCC v6 9 23018 -NCIT:C7867 Stage I Penile Cancer AJCC v6 9 23019 -NCIT:C7868 Stage II Penile Cancer AJCC v6 9 23020 -NCIT:C7869 Stage III Penile Cancer AJCC v6 9 23021 -NCIT:C8959 Stage IV Penile Cancer AJCC v6 9 23022 -NCIT:C91234 Penile Cancer by AJCC v7 Stage 8 23023 -NCIT:C89194 Stage 0 Penile Cancer AJCC v7 9 23024 -NCIT:C27790 Penile Carcinoma In Situ 10 23025 -NCIT:C89195 Stage I Penile Cancer AJCC v7 9 23026 -NCIT:C89196 Stage II Penile Cancer AJCC v7 9 23027 -NCIT:C89197 Stage III Penile Cancer AJCC v7 9 23028 -NCIT:C88104 Stage IIIa Penile Cancer AJCC v7 10 23029 -NCIT:C88105 Stage IIIb Penile Cancer AJCC v7 10 23030 -NCIT:C89198 Stage IV Penile Cancer AJCC v7 9 23031 -NCIT:C3558 Malignant Epididymal Neoplasm 6 23032 -NCIT:C39957 Epididymal Adenocarcinoma 7 23033 -NCIT:C8544 Metastatic Malignant Neoplasm in the Epididymis 7 23034 -NCIT:C3559 Malignant Spermatic Cord Neoplasm 6 23035 -NCIT:C179466 Recurrent Malignant Spermatic Cord Neoplasm 7 23036 -NCIT:C7251 Malignant Testicular Neoplasm 6 23037 -NCIT:C140225 Testicular Cancer by AJCC v8 Stage 7 23038 -NCIT:C140226 Stage 0 Testicular Cancer AJCC v8 8 23039 -NCIT:C40345 Testicular Intratubular Germ Cell Neoplasia 9 23040 -NCIT:C7325 Intratubular Non-Seminoma 10 23041 -NCIT:C7329 Intratubular Seminoma 10 23042 -NCIT:C140227 Stage I Testicular Cancer AJCC v8 8 23043 -NCIT:C140228 Stage IA Testicular Cancer AJCC v8 9 23044 -NCIT:C140229 Stage IB Testicular Cancer AJCC v8 9 23045 -NCIT:C140232 Stage IS Testicular Cancer AJCC v8 9 23046 -NCIT:C140233 Stage II Testicular Cancer AJCC v8 8 23047 -NCIT:C140234 Stage IIA Testicular Cancer AJCC v8 9 23048 -NCIT:C140235 Stage IIB Testicular Cancer AJCC v8 9 23049 -NCIT:C140236 Stage IIC Testicular Cancer AJCC v8 9 23050 -NCIT:C140237 Stage III Testicular Cancer AJCC v8 8 23051 -NCIT:C140238 Stage IIIA Testicular Cancer AJCC v8 9 23052 -NCIT:C140239 Stage IIIB Testicular Cancer AJCC v8 9 23053 -NCIT:C140240 Stage IIIC Testicular Cancer AJCC v8 9 23054 -NCIT:C140241 Testicular Cancer by AJCC v6 and v7 Stage 7 23055 -NCIT:C4523 Stage 0 Testicular Cancer AJCC v6 and v7 8 23056 -NCIT:C40345 Testicular Intratubular Germ Cell Neoplasia 9 23057 -NCIT:C7325 Intratubular Non-Seminoma 10 23058 -NCIT:C7329 Intratubular Seminoma 10 23059 -NCIT:C7901 Stage I Testicular Cancer AJCC v6 and v7 8 23060 -NCIT:C27785 Stage I Testicular Non-Seminomatous Germ Cell Tumor AJCC v6 and v7 9 23061 -NCIT:C8907 Stage I Testicular Choriocarcinoma AJCC v6 and v7 10 23062 -NCIT:C8908 Stage I Testicular Embryonal Carcinoma AJCC v6 and v7 10 23063 -NCIT:C8914 Stage I Immature Testicular Teratoma AJCC v6 and v7 10 23064 -NCIT:C8920 Stage I Testicular Yolk Sac Tumor AJCC v6 and v7 10 23065 -NCIT:C6361 Stage IA Testicular Cancer AJCC v6 and v7 9 23066 -NCIT:C6362 Stage IB Testicular Cancer AJCC v6 and v7 9 23067 -NCIT:C6363 Stage IS Testicular Cancer AJCC v6 and v7 9 23068 -NCIT:C8912 Stage I Testicular Mixed Germ Cell Tumor AJCC v6 and v7 9 23069 -NCIT:C8917 Stage I Testicular Seminoma AJCC v6 and v7 9 23070 -NCIT:C9073 Stage II Testicular Cancer AJCC v6 and v7 8 23071 -NCIT:C27786 Stage II Testicular Non-Seminomatous Germ Cell Tumor AJCC v6 and v7 9 23072 -NCIT:C8606 Stage II Testicular Choriocarcinoma AJCC v6 and v7 10 23073 -NCIT:C8909 Stage II Testicular Embryonal Carcinoma AJCC v6 and v7 10 23074 -NCIT:C8915 Stage II Immature Testicular Teratoma AJCC v6 and v7 10 23075 -NCIT:C8921 Stage II Testicular Yolk Sac Tumor AJCC v6 and v7 10 23076 -NCIT:C6364 Stage IIA Testicular Cancer AJCC v6 and v7 9 23077 -NCIT:C6365 Stage IIB Testicular Cancer AJCC v6 and v7 9 23078 -NCIT:C6366 Stage IIC Testicular Cancer AJCC v6 and v7 9 23079 -NCIT:C8911 Stage II Testicular Mixed Germ Cell Tumor AJCC v6 and v7 9 23080 -NCIT:C8918 Stage II Testicular Seminoma AJCC v6 and v7 9 23081 -NCIT:C9074 Stage III Testicular Cancer AJCC v6 and v7 8 23082 -NCIT:C27787 Stage III Testicular Non-Seminomatous Germ Cell Tumor AJCC v6 and v7 9 23083 -NCIT:C8900 Stage III Testicular Choriocarcinoma AJCC v6 and v7 10 23084 -NCIT:C8910 Stage III Testicular Embryonal Carcinoma AJCC v6 and v7 10 23085 -NCIT:C8916 Stage III Immature Testicular Teratoma AJCC v6 and v7 10 23086 -NCIT:C8922 Stage III Testicular Yolk Sac Tumor AJCC v6 and v7 10 23087 -NCIT:C6367 Stage IIIC Testicular Cancer AJCC v6 and v7 9 23088 -NCIT:C6368 Stage IIIB Testicular Cancer AJCC v6 and v7 9 23089 -NCIT:C6369 Stage IIIA Testicular Cancer AJCC v6 and v7 9 23090 -NCIT:C8913 Stage III Testicular Mixed Germ Cell Tumor AJCC v6 and v7 9 23091 -NCIT:C8919 Stage III Testicular Seminoma AJCC v6 and v7 9 23092 -NCIT:C162469 Testicular Myeloid Sarcoma 7 23093 -NCIT:C162470 Testicular Plasmacytoma 7 23094 -NCIT:C39948 Malignant Testicular Sex Cord-Stromal Tumor 7 23095 -NCIT:C4584 Metastatic Malignant Neoplasm in the Testis 7 23096 -NCIT:C6359 Testicular Sarcoma 7 23097 -NCIT:C6378 Testicular Rhabdomyosarcoma 8 23098 -NCIT:C6810 Testicular Lymphoma 7 23099 -NCIT:C138021 Recurrent Testicular Lymphoma 8 23100 -NCIT:C138022 Refractory Testicular Lymphoma 8 23101 -NCIT:C150589 Testicular Follicular Lymphoma 8 23102 -NCIT:C162467 Testicular Diffuse Large B-Cell Lymphoma 8 23103 -NCIT:C162468 Testicular Nasal Type Extranodal NK/T-Cell Lymphoma 8 23104 -NCIT:C9063 Malignant Testicular Germ Cell Tumor 7 23105 -NCIT:C189057 Postpubertal-Type Testicular Teratoma 8 23106 -NCIT:C25771 Metastatic Malignant Testicular Germ Cell Tumor 8 23107 -NCIT:C187316 Advanced Malignant Testicular Germ Cell Tumor 9 23108 -NCIT:C39921 Testicular Spermatocytic Tumor 8 23109 -NCIT:C39922 Testicular Spermatocytic Tumor with Sarcoma 9 23110 -NCIT:C40962 Testicular Polyembryoma 8 23111 -NCIT:C5027 Malignant Testicular Non-Seminomatous Germ Cell Tumor 8 23112 -NCIT:C27785 Stage I Testicular Non-Seminomatous Germ Cell Tumor AJCC v6 and v7 9 23113 -NCIT:C8907 Stage I Testicular Choriocarcinoma AJCC v6 and v7 10 23114 -NCIT:C8908 Stage I Testicular Embryonal Carcinoma AJCC v6 and v7 10 23115 -NCIT:C8914 Stage I Immature Testicular Teratoma AJCC v6 and v7 10 23116 -NCIT:C8920 Stage I Testicular Yolk Sac Tumor AJCC v6 and v7 10 23117 -NCIT:C27786 Stage II Testicular Non-Seminomatous Germ Cell Tumor AJCC v6 and v7 9 23118 -NCIT:C8606 Stage II Testicular Choriocarcinoma AJCC v6 and v7 10 23119 -NCIT:C8909 Stage II Testicular Embryonal Carcinoma AJCC v6 and v7 10 23120 -NCIT:C8915 Stage II Immature Testicular Teratoma AJCC v6 and v7 10 23121 -NCIT:C8921 Stage II Testicular Yolk Sac Tumor AJCC v6 and v7 10 23122 -NCIT:C27787 Stage III Testicular Non-Seminomatous Germ Cell Tumor AJCC v6 and v7 9 23123 -NCIT:C8900 Stage III Testicular Choriocarcinoma AJCC v6 and v7 10 23124 -NCIT:C8910 Stage III Testicular Embryonal Carcinoma AJCC v6 and v7 10 23125 -NCIT:C8916 Stage III Immature Testicular Teratoma AJCC v6 and v7 10 23126 -NCIT:C8922 Stage III Testicular Yolk Sac Tumor AJCC v6 and v7 10 23127 -NCIT:C35711 Testicular Teratoma with Somatic-Type Malignancy 9 23128 -NCIT:C6341 Testicular Embryonal Carcinoma 9 23129 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 10 23130 -NCIT:C7325 Intratubular Non-Seminoma 10 23131 -NCIT:C8908 Stage I Testicular Embryonal Carcinoma AJCC v6 and v7 10 23132 -NCIT:C8909 Stage II Testicular Embryonal Carcinoma AJCC v6 and v7 10 23133 -NCIT:C8910 Stage III Testicular Embryonal Carcinoma AJCC v6 and v7 10 23134 -NCIT:C6351 Testicular Mixed Embryonal Carcinoma and Teratoma 9 23135 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 10 23136 -NCIT:C7733 Testicular Choriocarcinoma 9 23137 -NCIT:C39935 Testicular Monophasic Choriocarcinoma 10 23138 -NCIT:C6544 Childhood Testicular Choriocarcinoma 10 23139 -NCIT:C8606 Stage II Testicular Choriocarcinoma AJCC v6 and v7 10 23140 -NCIT:C8900 Stage III Testicular Choriocarcinoma AJCC v6 and v7 10 23141 -NCIT:C8907 Stage I Testicular Choriocarcinoma AJCC v6 and v7 10 23142 -NCIT:C8000 Testicular Yolk Sac Tumor 9 23143 -NCIT:C39923 Testicular Yolk Sac Tumor, Microcystic Pattern 10 23144 -NCIT:C39924 Testicular Yolk Sac Tumor, Macrocystic Pattern 10 23145 -NCIT:C39925 Testicular Yolk Sac Tumor, Solid Pattern 10 23146 -NCIT:C39926 Testicular Yolk Sac Tumor, Glandular-Alveolar Pattern 10 23147 -NCIT:C39927 Testicular Yolk Sac Tumor, Endodermal Sinus/Perivascular Pattern 10 23148 -NCIT:C39928 Testicular Yolk Sac Tumor, Papillary Pattern 10 23149 -NCIT:C39929 Testicular Yolk Sac Tumor, Myxomatous Pattern 10 23150 -NCIT:C39930 Testicular Yolk Sac Tumor, Polyvesicular Vitelline Pattern 10 23151 -NCIT:C39931 Testicular Yolk Sac Tumor, Hepatoid Pattern 10 23152 -NCIT:C39932 Testicular Yolk Sac Tumor, Enteric Pattern 10 23153 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 10 23154 -NCIT:C8920 Stage I Testicular Yolk Sac Tumor AJCC v6 and v7 10 23155 -NCIT:C8921 Stage II Testicular Yolk Sac Tumor AJCC v6 and v7 10 23156 -NCIT:C8922 Stage III Testicular Yolk Sac Tumor AJCC v6 and v7 10 23157 -NCIT:C8001 Testicular Mixed Embryonal Carcinoma and Yolk Sac Tumor 9 23158 -NCIT:C8002 Testicular Mixed Yolk Sac Tumor and Teratoma 9 23159 -NCIT:C6347 Testicular Mixed Germ Cell Tumor 8 23160 -NCIT:C6348 Testicular Mixed Choriocarcinoma and Embryonal Carcinoma 9 23161 -NCIT:C6349 Testicular Mixed Choriocarcinoma and Teratoma 9 23162 -NCIT:C6350 Testicular Mixed Embryonal Carcinoma and Seminoma 9 23163 -NCIT:C6351 Testicular Mixed Embryonal Carcinoma and Teratoma 9 23164 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 10 23165 -NCIT:C6352 Testicular Mixed Embryonal Carcinoma and Teratoma with Seminoma 9 23166 -NCIT:C6542 Childhood Testicular Mixed Germ Cell Tumor 9 23167 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 10 23168 -NCIT:C67548 Testicular Mixed Choriocarcinoma and Yolk Sac Tumor 9 23169 -NCIT:C8001 Testicular Mixed Embryonal Carcinoma and Yolk Sac Tumor 9 23170 -NCIT:C8002 Testicular Mixed Yolk Sac Tumor and Teratoma 9 23171 -NCIT:C8003 Testicular Mixed Yolk Sac Tumor and Teratoma with Seminoma 9 23172 -NCIT:C8911 Stage II Testicular Mixed Germ Cell Tumor AJCC v6 and v7 9 23173 -NCIT:C8912 Stage I Testicular Mixed Germ Cell Tumor AJCC v6 and v7 9 23174 -NCIT:C8913 Stage III Testicular Mixed Germ Cell Tumor AJCC v6 and v7 9 23175 -NCIT:C9172 Testicular Mixed Embryonal Carcinoma and Yolk Sac Tumor with Seminoma 9 23176 -NCIT:C9173 Testicular Mixed Choriocarcinoma and Seminoma 9 23177 -NCIT:C68628 Childhood Malignant Testicular Germ Cell Tumor 8 23178 -NCIT:C6542 Childhood Testicular Mixed Germ Cell Tumor 9 23179 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 10 23180 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 9 23181 -NCIT:C6544 Childhood Testicular Choriocarcinoma 9 23182 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 9 23183 -NCIT:C7326 Testicular Germ Cell Neoplasia In Situ with Extratubular Extension 8 23184 -NCIT:C7328 Testicular Seminoma 8 23185 -NCIT:C39919 Testicular Seminoma with Syncytiotrophoblastic Cells 9 23186 -NCIT:C39920 Testicular Seminoma with High Mitotic Index 9 23187 -NCIT:C40957 Testicular Seminoma, Cribriform Variant 9 23188 -NCIT:C40958 Testicular Seminoma, Pseudoglandular Variant 9 23189 -NCIT:C40959 Testicular Seminoma, Tubular Variant 9 23190 -NCIT:C61383 Testicular Typical Seminoma 9 23191 -NCIT:C7329 Intratubular Seminoma 9 23192 -NCIT:C8917 Stage I Testicular Seminoma AJCC v6 and v7 9 23193 -NCIT:C8918 Stage II Testicular Seminoma AJCC v6 and v7 9 23194 -NCIT:C8919 Stage III Testicular Seminoma AJCC v6 and v7 9 23195 -NCIT:C9077 Refractory Malignant Testicular Germ Cell Tumor 8 23196 -NCIT:C9369 Recurrent Malignant Testicular Germ Cell Tumor 8 23197 -NCIT:C9277 Testicular Leukemia 7 23198 -NCIT:C7378 Malignant Prostate Neoplasm 6 23199 -NCIT:C161580 Prostate Malignant Solitary Fibrous Tumor 7 23200 -NCIT:C161607 Prostate Wilms Tumor 7 23201 -NCIT:C161608 Extrarenal Rhabdoid Tumor of the Prostate 7 23202 -NCIT:C161611 Prostate Melanoma 7 23203 -NCIT:C3642 Grade III Prostatic Intraepithelial Neoplasia 7 23204 -NCIT:C4863 Prostate Carcinoma 7 23205 -NCIT:C103817 Hereditary Prostate Carcinoma 8 23206 -NCIT:C114933 Hormone-Resistant Prostate Carcinoma 8 23207 -NCIT:C138167 Prostate Carcinoma by Gene Expression Profile 8 23208 -NCIT:C138168 Luminal A Prostate Carcinoma 9 23209 -NCIT:C138169 Luminal B Prostate Carcinoma 9 23210 -NCIT:C138170 Basal-Like Prostate Carcinoma 9 23211 -NCIT:C140163 Prostate Cancer by AJCC v8 Stage 8 23212 -NCIT:C140164 Stage I Prostate Cancer AJCC v8 9 23213 -NCIT:C140165 Stage II Prostate Cancer AJCC v8 9 23214 -NCIT:C140166 Stage IIA Prostate Cancer AJCC v8 10 23215 -NCIT:C140167 Stage IIB Prostate Cancer AJCC v8 10 23216 -NCIT:C140168 Stage IIC Prostate Cancer AJCC v8 10 23217 -NCIT:C140169 Stage III Prostate Cancer AJCC v8 9 23218 -NCIT:C140170 Stage IIIA Prostate Cancer AJCC v8 10 23219 -NCIT:C140171 Stage IIIB Prostate Cancer AJCC v8 10 23220 -NCIT:C140172 Stage IIIC Prostate Cancer AJCC v8 10 23221 -NCIT:C140173 Stage IV Prostate Cancer AJCC v8 9 23222 -NCIT:C140174 Stage IVA Prostate Cancer AJCC v8 10 23223 -NCIT:C140175 Stage IVB Prostate Cancer AJCC v8 10 23224 -NCIT:C161022 Intraductal Prostate Carcinoma 8 23225 -NCIT:C167255 Refractory Prostate Carcinoma 8 23226 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 9 23227 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 10 23228 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 10 23229 -NCIT:C161609 Double-Negative Prostate Carcinoma 10 23230 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 10 23231 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 10 23232 -NCIT:C167256 Refractory Prostate Adenocarcinoma 9 23233 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 9 23234 -NCIT:C171611 Unresectable Prostate Carcinoma 8 23235 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 9 23236 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 23237 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 9 23238 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 9 23239 -NCIT:C176517 Localized Prostate Carcinoma 8 23240 -NCIT:C39898 Primary Prostate Urothelial Carcinoma 8 23241 -NCIT:C39900 Prostatic Urethra Urothelial Carcinoma 9 23242 -NCIT:C39901 Prostatic Duct Urothelial Carcinoma 9 23243 -NCIT:C48596 Invasive Prostate Carcinoma 8 23244 -NCIT:C158912 Prostate Neuroendocrine Carcinoma 9 23245 -NCIT:C158650 Prostate Large Cell Neuroendocrine Carcinoma 10 23246 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 10 23247 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 11 23248 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 11 23249 -NCIT:C6766 Prostate Small Cell Neuroendocrine Carcinoma 10 23250 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 11 23251 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 11 23252 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 11 23253 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 11 23254 -NCIT:C2919 Prostate Adenocarcinoma 9 23255 -NCIT:C150557 Prostate Adenocarcinoma without Neuroendocrine Differentiation 10 23256 -NCIT:C164185 Aggressive Prostate Adenocarcinoma 10 23257 -NCIT:C164186 Prostate Adenocarcinoma by AJCC v7 Stage 10 23258 -NCIT:C8947 Stage I Prostate Adenocarcinoma AJCC v7 11 23259 -NCIT:C8948 Stage II Prostate Adenocarcinoma AJCC v7 11 23260 -NCIT:C8949 Stage III Prostate Adenocarcinoma AJCC v7 11 23261 -NCIT:C8950 Stage IV Prostate Adenocarcinoma AJCC v7 11 23262 -NCIT:C167256 Refractory Prostate Adenocarcinoma 10 23263 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 10 23264 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 11 23265 -NCIT:C27905 Well Differentiated Prostate Adenocarcinoma 10 23266 -NCIT:C39896 Prostate Ductal Adenocarcinoma, Papillary Pattern 11 23267 -NCIT:C27906 Moderately Differentiated Prostate Adenocarcinoma 10 23268 -NCIT:C27916 Poorly Differentiated Prostate Adenocarcinoma 10 23269 -NCIT:C5530 Prostate Acinar Adenocarcinoma, Sarcomatoid Variant 11 23270 -NCIT:C39903 Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 23271 -NCIT:C158656 Usual Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 23272 -NCIT:C158664 Prostate Adenocarcinoma with Paneth Cell-Like Neuroendocrine Differentiation 11 23273 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 23274 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 12 23275 -NCIT:C5596 Prostate Acinar Adenocarcinoma 10 23276 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 11 23277 -NCIT:C158656 Usual Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 23278 -NCIT:C160817 Prostate Acinar Adenocarcinoma, Microcystic Variant 11 23279 -NCIT:C160818 Prostate Acinar Adenocarcinoma, Pleomorphic Giant Cell Variant 11 23280 -NCIT:C39880 Prostate Acinar Adenocarcinoma, Atrophic Variant 11 23281 -NCIT:C39881 Prostate Acinar Adenocarcinoma, Pseudohyperplastic Variant 11 23282 -NCIT:C39882 Prostate Acinar Adenocarcinoma, Foamy Gland Variant 11 23283 -NCIT:C39884 Prostate Acinar Adenocarcinoma, Oncocytic Variant 11 23284 -NCIT:C39885 Prostate Acinar Adenocarcinoma, Lymphoepithelioma-Like Variant 11 23285 -NCIT:C5530 Prostate Acinar Adenocarcinoma, Sarcomatoid Variant 11 23286 -NCIT:C5535 Prostate Acinar Adenocarcinoma, Signet Ring-Like Cell Variant 11 23287 -NCIT:C5537 Prostate Acinar Mucinous Adenocarcinoma 11 23288 -NCIT:C6813 Prostate Ductal Adenocarcinoma 10 23289 -NCIT:C39895 Prostate Ductal Adenocarcinoma, Cribriform Pattern 11 23290 -NCIT:C39896 Prostate Ductal Adenocarcinoma, Papillary Pattern 11 23291 -NCIT:C39897 Prostate Ductal Adenocarcinoma, Solid Pattern 11 23292 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 10 23293 -NCIT:C156286 Advanced Prostate Adenocarcinoma 11 23294 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 12 23295 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 11 23296 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 12 23297 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 23298 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 12 23299 -NCIT:C39902 Prostate Basal Cell Carcinoma 9 23300 -NCIT:C5536 Prostate Squamous Cell Carcinoma 9 23301 -NCIT:C5538 Prostate Adenosquamous Carcinoma 9 23302 -NCIT:C5539 Prostate Adenoid Cystic Carcinoma 9 23303 -NCIT:C5597 Prostate Undifferentiated Carcinoma 9 23304 -NCIT:C7079 Prostate Cancer by Whitmore-Jewett Stage 8 23305 -NCIT:C7099 Stage D Prostate Cancer 9 23306 -NCIT:C7552 Stage C Prostate Cancer 9 23307 -NCIT:C7554 Stage B Prostate Cancer 9 23308 -NCIT:C7556 Stage A Prostate Cancer 9 23309 -NCIT:C7902 Recurrent Prostate Carcinoma 8 23310 -NCIT:C156771 Biochemically Recurrent Prostate Carcinoma 9 23311 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 9 23312 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 10 23313 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 9 23314 -NCIT:C8946 Metastatic Prostate Carcinoma 8 23315 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 9 23316 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 10 23317 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 10 23318 -NCIT:C161609 Double-Negative Prostate Carcinoma 10 23319 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 10 23320 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 10 23321 -NCIT:C132881 Prostate Carcinoma Metastatic in the Soft Tissue 9 23322 -NCIT:C148536 Castration-Naive Prostate Carcinoma 9 23323 -NCIT:C153336 Castration-Sensitive Prostate Carcinoma 9 23324 -NCIT:C156284 Advanced Prostate Carcinoma 9 23325 -NCIT:C156286 Advanced Prostate Adenocarcinoma 10 23326 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 23327 -NCIT:C156285 Locally Advanced Prostate Carcinoma 9 23328 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 10 23329 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 11 23330 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 10 23331 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 11 23332 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 10 23333 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 9 23334 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 10 23335 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 10 23336 -NCIT:C161584 Prostate Carcinoma Metastatic in the Pelvic Cavity 9 23337 -NCIT:C161587 Prostate Carcinoma Metastatic in the Lymph Nodes 9 23338 -NCIT:C171265 Oligometastatic Prostate Carcinoma 9 23339 -NCIT:C36307 Prostate Carcinoma Metastatic in the Lung 9 23340 -NCIT:C36308 Prostate Carcinoma Metastatic in the Bone 9 23341 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 9 23342 -NCIT:C156286 Advanced Prostate Adenocarcinoma 10 23343 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 23344 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 10 23345 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 11 23346 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 23347 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 23348 -NCIT:C90521 Prostate Cancer by AJCC v6 Stage 8 23349 -NCIT:C7551 Stage III Prostate Cancer AJCC v6 9 23350 -NCIT:C7553 Stage II Prostate Cancer AJCC v6 9 23351 -NCIT:C7555 Stage I Prostate Cancer AJCC v6 9 23352 -NCIT:C9075 Stage IV Prostate Cancer AJCC v6 9 23353 -NCIT:C91233 Prostate Cancer by AJCC v7 Stage 8 23354 -NCIT:C164186 Prostate Adenocarcinoma by AJCC v7 Stage 9 23355 -NCIT:C8947 Stage I Prostate Adenocarcinoma AJCC v7 10 23356 -NCIT:C8948 Stage II Prostate Adenocarcinoma AJCC v7 10 23357 -NCIT:C8949 Stage III Prostate Adenocarcinoma AJCC v7 10 23358 -NCIT:C8950 Stage IV Prostate Adenocarcinoma AJCC v7 10 23359 -NCIT:C89232 Stage I Prostate Cancer AJCC v7 9 23360 -NCIT:C8947 Stage I Prostate Adenocarcinoma AJCC v7 10 23361 -NCIT:C89233 Stage II Prostate Cancer AJCC v7 9 23362 -NCIT:C88106 Stage IIA Prostate Cancer AJCC v7 10 23363 -NCIT:C88107 Stage IIB Prostate Cancer AJCC v7 10 23364 -NCIT:C8948 Stage II Prostate Adenocarcinoma AJCC v7 10 23365 -NCIT:C89234 Stage III Prostate Cancer AJCC v7 9 23366 -NCIT:C8949 Stage III Prostate Adenocarcinoma AJCC v7 10 23367 -NCIT:C89235 Stage IV Prostate Cancer AJCC v7 9 23368 -NCIT:C8950 Stage IV Prostate Adenocarcinoma AJCC v7 10 23369 -NCIT:C5527 Prostate Myeloid Sarcoma 7 23370 -NCIT:C5531 Malignant Prostate Phyllodes Tumor 7 23371 -NCIT:C5533 Prostate Lymphoma 7 23372 -NCIT:C5534 Prostate Non-Hodgkin Lymphoma 8 23373 -NCIT:C161602 Prostate Diffuse Large B-Cell Lymphoma 9 23374 -NCIT:C161603 Prostate Follicular Lymphoma 9 23375 -NCIT:C161604 Prostate Mantle Cell Lymphoma 9 23376 -NCIT:C161605 Prostate Small Lymphocytic Lymphoma 9 23377 -NCIT:C7080 Metastatic Malignant Neoplasm in the Prostate Gland 7 23378 -NCIT:C39899 Secondary Prostate Urothelial Carcinoma 8 23379 -NCIT:C7731 Prostate Sarcoma 7 23380 -NCIT:C161034 Prostate Synovial Sarcoma 8 23381 -NCIT:C161035 Prostate Osteosarcoma 8 23382 -NCIT:C161038 Prostate Undifferentiated Pleomorphic Sarcoma 8 23383 -NCIT:C5522 Prostate Rhabdomyosarcoma 8 23384 -NCIT:C188070 Prostate Alveolar Rhabdomyosarcoma 9 23385 -NCIT:C5525 Prostate Embryonal Rhabdomyosarcoma 9 23386 -NCIT:C5523 Prostate Kaposi Sarcoma 8 23387 -NCIT:C5524 Prostate Stromal Sarcoma 8 23388 -NCIT:C5526 Prostate Leiomyosarcoma 8 23389 -NCIT:C5528 Prostate Angiosarcoma 8 23390 -NCIT:C7547 Malignant Penile Neoplasm 6 23391 -NCIT:C118821 Childhood Malignant Penile Neoplasm 7 23392 -NCIT:C162547 Penile Melanoma 7 23393 -NCIT:C178517 Penile Mucosal Melanoma 8 23394 -NCIT:C178518 Penile Cutaneous Melanoma 8 23395 -NCIT:C162548 Penile Lymphoma 7 23396 -NCIT:C162549 Metastatic Malignant Neoplasm in the Penis 7 23397 -NCIT:C162581 Penile Epithelioid Hemangioendothelioma 7 23398 -NCIT:C7730 Penile Sarcoma 7 23399 -NCIT:C162578 Penile Angiosarcoma 8 23400 -NCIT:C162584 Penile Malignant Peripheral Nerve Sheath Tumor 8 23401 -NCIT:C162585 Penile Leiomyosarcoma 8 23402 -NCIT:C162588 Penile Rhabdomyosarcoma 8 23403 -NCIT:C162589 Penile Undifferentiated Pleomorphic Sarcoma 8 23404 -NCIT:C6377 Penile Kaposi Sarcoma 8 23405 -NCIT:C9061 Penile Carcinoma 7 23406 -NCIT:C118820 Adult Penile Carcinoma 8 23407 -NCIT:C140075 Penile Cancer by AJCC v8 Stage 8 23408 -NCIT:C140076 Stage 0 Penile Cancer AJCC v8 9 23409 -NCIT:C140077 Stage 0is Penile Cancer AJCC v8 10 23410 -NCIT:C140078 Stage 0a Penile Cancer AJCC v8 10 23411 -NCIT:C140079 Stage I Penile Cancer AJCC v8 9 23412 -NCIT:C140080 Stage II Penile Cancer AJCC v8 9 23413 -NCIT:C140081 Stage IIA Penile Cancer AJCC v8 10 23414 -NCIT:C140083 Stage IIB Penile Cancer AJCC v8 10 23415 -NCIT:C140084 Stage III Penile Cancer AJCC v8 9 23416 -NCIT:C140085 Stage IIIA Penile Cancer AJCC v8 10 23417 -NCIT:C140086 Stage IIIB Penile Cancer AJCC v8 10 23418 -NCIT:C140087 Stage IV Penile Cancer AJCC v8 9 23419 -NCIT:C177150 Refractory Penile Carcinoma 8 23420 -NCIT:C27784 Metastatic Penile Carcinoma 8 23421 -NCIT:C170789 Locally Advanced Penile Carcinoma 9 23422 -NCIT:C170790 Advanced Penile Carcinoma 9 23423 -NCIT:C182111 Metastatic Squamous Cell Carcinoma of the Penis 9 23424 -NCIT:C27817 Penile Paget Disease 8 23425 -NCIT:C39961 Penile Basal Cell Carcinoma 8 23426 -NCIT:C7729 Squamous Cell Carcinoma of the Penis 8 23427 -NCIT:C159244 Non-Human Papillomavirus-Related Squamous Cell Carcinoma of the Penis 9 23428 -NCIT:C103340 Papillary Carcinoma of the Penis, Not Otherwise Specified 10 23429 -NCIT:C159245 Pseudohyperplastic Carcinoma of the Penis 10 23430 -NCIT:C159246 Pseudoglandular Carcinoma of the Penis 10 23431 -NCIT:C159248 Adenosquamous Carcinoma of the Penis 10 23432 -NCIT:C39959 Mixed Squamous Cell Carcinoma of the Penis 10 23433 -NCIT:C6979 Squamous Cell Carcinoma of the Penis, Usual Type 10 23434 -NCIT:C6982 Verrucous Carcinoma of the Penis 10 23435 -NCIT:C159247 Carcinoma Cuniculatum of the Penis 11 23436 -NCIT:C6984 Sarcomatoid Carcinoma of the Penis 10 23437 -NCIT:C182111 Metastatic Squamous Cell Carcinoma of the Penis 9 23438 -NCIT:C27682 Human Papillomavirus-Related Squamous Cell Carcinoma of the Penis 9 23439 -NCIT:C159250 Warty-Basaloid Carcinoma of the Penis 10 23440 -NCIT:C159251 Clear Cell Squamous Cell Carcinoma of the Penis 10 23441 -NCIT:C159252 Lymphoepithelioma-Like Carcinoma of the Penis 10 23442 -NCIT:C6980 Basaloid Squamous Cell Carcinoma of the Penis 10 23443 -NCIT:C159249 Papillary-Basaloid Carcinoma of the Penis 11 23444 -NCIT:C6981 Warty Carcinoma of the Penis 10 23445 -NCIT:C27790 Penile Carcinoma In Situ 9 23446 -NCIT:C6983 Papillary Carcinoma of the Penis 9 23447 -NCIT:C103340 Papillary Carcinoma of the Penis, Not Otherwise Specified 10 23448 -NCIT:C159249 Papillary-Basaloid Carcinoma of the Penis 10 23449 -NCIT:C6981 Warty Carcinoma of the Penis 10 23450 -NCIT:C6982 Verrucous Carcinoma of the Penis 10 23451 -NCIT:C159247 Carcinoma Cuniculatum of the Penis 11 23452 -NCIT:C7870 Recurrent Penile Carcinoma 8 23453 -NCIT:C90520 Penile Cancer by AJCC v6 Stage 8 23454 -NCIT:C3643 Stage 0 Penile Cancer AJCC v6 9 23455 -NCIT:C7867 Stage I Penile Cancer AJCC v6 9 23456 -NCIT:C7868 Stage II Penile Cancer AJCC v6 9 23457 -NCIT:C7869 Stage III Penile Cancer AJCC v6 9 23458 -NCIT:C8959 Stage IV Penile Cancer AJCC v6 9 23459 -NCIT:C91234 Penile Cancer by AJCC v7 Stage 8 23460 -NCIT:C89194 Stage 0 Penile Cancer AJCC v7 9 23461 -NCIT:C27790 Penile Carcinoma In Situ 10 23462 -NCIT:C89195 Stage I Penile Cancer AJCC v7 9 23463 -NCIT:C89196 Stage II Penile Cancer AJCC v7 9 23464 -NCIT:C89197 Stage III Penile Cancer AJCC v7 9 23465 -NCIT:C88104 Stage IIIa Penile Cancer AJCC v7 10 23466 -NCIT:C88105 Stage IIIb Penile Cancer AJCC v7 10 23467 -NCIT:C89198 Stage IV Penile Cancer AJCC v7 9 23468 -NCIT:C36076 Malignant Reproductive System Neoplasm 4 23469 -NCIT:C4913 Malignant Female Reproductive System Neoplasm 5 23470 -NCIT:C126498 Malignant Uterine Ligament Neoplasm 6 23471 -NCIT:C179934 Malignant Broad Ligament Neoplasm 7 23472 -NCIT:C102570 Broad Ligament Adenosarcoma 8 23473 -NCIT:C179926 Broad Ligament Leiomyosarcoma 8 23474 -NCIT:C40135 Broad Ligament Adenocarcinoma 8 23475 -NCIT:C126479 Broad Ligament Serous Adenocarcinoma 9 23476 -NCIT:C40137 Broad Ligament Mucinous Adenocarcinoma 9 23477 -NCIT:C40138 Broad Ligament Endometrioid Adenocarcinoma 9 23478 -NCIT:C40139 Broad Ligament Clear Cell Adenocarcinoma 9 23479 -NCIT:C150526 Recurrent Malignant Female Reproductive System Neoplasm 6 23480 -NCIT:C153347 Recurrent Ovarian Carcinosarcoma 7 23481 -NCIT:C160619 Recurrent Malignant Ovarian Granulosa Cell Tumor 7 23482 -NCIT:C171170 Recurrent Extrarenal Rhabdoid Tumor of the Ovary 7 23483 -NCIT:C7620 Recurrent Female Reproductive System Carcinoma 7 23484 -NCIT:C115429 Recurrent Fallopian Tube Carcinoma 8 23485 -NCIT:C170750 Recurrent Platinum-Resistant Fallopian Tube Carcinoma 9 23486 -NCIT:C170755 Recurrent Fallopian Tube Undifferentiated Carcinoma 9 23487 -NCIT:C170757 Recurrent Fallopian Tube Transitional Cell Carcinoma 9 23488 -NCIT:C170766 Recurrent Fallopian Tube Adenocarcinoma 9 23489 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 10 23490 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 10 23491 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 10 23492 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 10 23493 -NCIT:C191395 Recurrent Platinum-Sensitive Fallopian Tube Carcinoma 9 23494 -NCIT:C150094 Recurrent Endometrial Carcinoma 8 23495 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 9 23496 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 9 23497 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 10 23498 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 10 23499 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 10 23500 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 10 23501 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 10 23502 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 9 23503 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 9 23504 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 9 23505 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 9 23506 -NCIT:C190200 Locally Recurrent Endometrial Carcinoma 9 23507 -NCIT:C7804 Recurrent Cervical Carcinoma 8 23508 -NCIT:C136649 Recurrent Cervical Squamous Cell Carcinoma 9 23509 -NCIT:C136650 Recurrent Cervical Adenosquamous Carcinoma 9 23510 -NCIT:C136651 Recurrent Cervical Adenocarcinoma 9 23511 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 10 23512 -NCIT:C7833 Recurrent Ovarian Carcinoma 8 23513 -NCIT:C148025 Recurrent BRCA- Associated Ovarian Carcinoma 9 23514 -NCIT:C153614 Recurrent Ovarian Adenocarcinoma 9 23515 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 10 23516 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 10 23517 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 11 23518 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 11 23519 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 11 23520 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 10 23521 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 10 23522 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 11 23523 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 10 23524 -NCIT:C153818 Recurrent Malignant Ovarian Brenner Tumor 9 23525 -NCIT:C153819 Recurrent Ovarian Transitional Cell Carcinoma 9 23526 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 9 23527 -NCIT:C170754 Recurrent Ovarian Undifferentiated Carcinoma 9 23528 -NCIT:C178669 Recurrent Ovarian Seromucinous Carcinoma 9 23529 -NCIT:C188391 Recurrent Platinum-Sensitive Ovarian Carcinoma 9 23530 -NCIT:C190201 Locally Recurrent Ovarian Carcinoma 9 23531 -NCIT:C7860 Recurrent Vaginal Carcinoma 8 23532 -NCIT:C185302 Recurrent Vaginal Squamous Cell Carcinoma 9 23533 -NCIT:C9054 Recurrent Vulvar Carcinoma 8 23534 -NCIT:C174200 Recurrent Vulvar Squamous Cell Carcinoma 9 23535 -NCIT:C8087 Recurrent Ovarian Germ Cell Tumor 7 23536 -NCIT:C8261 Recurrent Uterine Corpus Sarcoma 7 23537 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 8 23538 -NCIT:C9072 Recurrent Uterine Corpus Cancer 7 23539 -NCIT:C150094 Recurrent Endometrial Carcinoma 8 23540 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 9 23541 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 9 23542 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 10 23543 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 10 23544 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 10 23545 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 10 23546 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 10 23547 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 9 23548 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 9 23549 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 9 23550 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 9 23551 -NCIT:C190200 Locally Recurrent Endometrial Carcinoma 9 23552 -NCIT:C155818 Recurrent Uterine Corpus Carcinosarcoma 8 23553 -NCIT:C9269 Recurrent Malignant Endocervical Neoplasm 7 23554 -NCIT:C150527 Refractory Malignant Female Reproductive System Neoplasm 6 23555 -NCIT:C150092 Refractory Uterine Corpus Cancer 7 23556 -NCIT:C150093 Refractory Endometrial Carcinoma 8 23557 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 9 23558 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 9 23559 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 9 23560 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 9 23561 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 10 23562 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 10 23563 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 10 23564 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 10 23565 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 10 23566 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 9 23567 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 9 23568 -NCIT:C158381 Refractory Uterine Corpus Carcinosarcoma 8 23569 -NCIT:C152048 Refractory Female Reproductive System Carcinoma 7 23570 -NCIT:C150091 Refractory Ovarian Carcinoma 8 23571 -NCIT:C147561 Platinum-Resistant Ovarian Carcinoma 9 23572 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 10 23573 -NCIT:C179459 Unresectable Platinum-Resistant Ovarian Carcinoma 10 23574 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 10 23575 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 11 23576 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 11 23577 -NCIT:C170968 Refractory Ovarian Adenocarcinoma 9 23578 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 10 23579 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 10 23580 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 11 23581 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 11 23582 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 10 23583 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 10 23584 -NCIT:C178671 Refractory Ovarian Seromucinous Carcinoma 9 23585 -NCIT:C178682 Refractory Ovarian Transitional Cell Carcinoma 9 23586 -NCIT:C178683 Refractory Ovarian Undifferentiated Carcinoma 9 23587 -NCIT:C178700 Platinum-Refractory Ovarian Carcinoma 9 23588 -NCIT:C179207 Refractory Ovarian Squamous Cell Carcinoma 9 23589 -NCIT:C183126 Refractory Malignant Ovarian Brenner Tumor 9 23590 -NCIT:C150093 Refractory Endometrial Carcinoma 8 23591 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 9 23592 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 9 23593 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 9 23594 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 9 23595 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 10 23596 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 10 23597 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 10 23598 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 10 23599 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 10 23600 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 9 23601 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 9 23602 -NCIT:C152047 Refractory Fallopian Tube Carcinoma 8 23603 -NCIT:C157621 Platinum-Resistant Fallopian Tube Carcinoma 9 23604 -NCIT:C170750 Recurrent Platinum-Resistant Fallopian Tube Carcinoma 10 23605 -NCIT:C170971 Refractory Fallopian Tube Adenocarcinoma 9 23606 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 10 23607 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 10 23608 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 10 23609 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 10 23610 -NCIT:C178674 Refractory Fallopian Tube Transitional Cell Carcinoma 9 23611 -NCIT:C178675 Refractory Fallopian Tube Undifferentiated Carcinoma 9 23612 -NCIT:C178698 Platinum-Refractory Fallopian Tube Carcinoma 9 23613 -NCIT:C170513 Refractory Cervical Carcinoma 8 23614 -NCIT:C181034 Refractory Cervical Squamous Cell Carcinoma 9 23615 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 10 23616 -NCIT:C181036 Refractory Cervical Adenocarcinoma 9 23617 -NCIT:C174508 Refractory Vulvar Carcinoma 8 23618 -NCIT:C185304 Refractory Vulvar Squamous Cell Carcinoma 9 23619 -NCIT:C174509 Refractory Vaginal Carcinoma 8 23620 -NCIT:C185303 Refractory Vaginal Squamous Cell Carcinoma 9 23621 -NCIT:C169021 Platinum-Resistant Malignant Female Reproductive System Neoplasm 7 23622 -NCIT:C147561 Platinum-Resistant Ovarian Carcinoma 8 23623 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 9 23624 -NCIT:C179459 Unresectable Platinum-Resistant Ovarian Carcinoma 9 23625 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 9 23626 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 10 23627 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 10 23628 -NCIT:C157621 Platinum-Resistant Fallopian Tube Carcinoma 8 23629 -NCIT:C170750 Recurrent Platinum-Resistant Fallopian Tube Carcinoma 9 23630 -NCIT:C171171 Refractory Extrarenal Rhabdoid Tumor of the Ovary 7 23631 -NCIT:C178697 Platinum-Refractory Malignant Female Reproductive System Neoplasm 7 23632 -NCIT:C178698 Platinum-Refractory Fallopian Tube Carcinoma 8 23633 -NCIT:C178700 Platinum-Refractory Ovarian Carcinoma 8 23634 -NCIT:C162254 Metastatic Malignant Female Reproductive System Neoplasm 6 23635 -NCIT:C153387 Metastatic Cervical Carcinoma 7 23636 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 8 23637 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 23638 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 23639 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 8 23640 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 23641 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 23642 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 23643 -NCIT:C153390 Metastatic Cervical Adenosquamous Carcinoma 8 23644 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 23645 -NCIT:C156294 Advanced Cervical Carcinoma 8 23646 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 23647 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 23648 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 23649 -NCIT:C156295 Locally Advanced Cervical Carcinoma 8 23650 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 23651 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 23652 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 9 23653 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 23654 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 23655 -NCIT:C156063 Metastatic Fallopian Tube Carcinoma 7 23656 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 8 23657 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 9 23658 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 8 23659 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 8 23660 -NCIT:C156064 Metastatic Ovarian Carcinoma 7 23661 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 8 23662 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 23663 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 23664 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 23665 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 9 23666 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 23667 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 23668 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 9 23669 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 23670 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 23671 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 23672 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 23673 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 23674 -NCIT:C165458 Advanced Ovarian Carcinoma 8 23675 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 23676 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 23677 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 23678 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 23679 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 23680 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 23681 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 23682 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 8 23683 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 23684 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 23685 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 23686 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 23687 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 8 23688 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 23689 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 8 23690 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 23691 -NCIT:C172234 Metastatic Ovarian Undifferentiated Carcinoma 8 23692 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 8 23693 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 23694 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 23695 -NCIT:C180333 Metastatic Microsatellite Stable Ovarian Carcinoma 8 23696 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 23697 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 8 23698 -NCIT:C27391 Metastatic Ovarian Small Cell Carcinoma, Hypercalcemic Type 8 23699 -NCIT:C156065 Metastatic Vaginal Carcinoma 7 23700 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 8 23701 -NCIT:C170788 Advanced Vaginal Carcinoma 8 23702 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 23703 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 23704 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 23705 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 23706 -NCIT:C181028 Metastatic Vaginal Adenosquamous Carcinoma 8 23707 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 23708 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 8 23709 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 23710 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 23711 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 8 23712 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 23713 -NCIT:C156066 Metastatic Vulvar Carcinoma 7 23714 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 8 23715 -NCIT:C170786 Advanced Vulvar Carcinoma 8 23716 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 8 23717 -NCIT:C156068 Metastatic Endometrial Carcinoma 7 23718 -NCIT:C159676 Advanced Endometrial Carcinoma 8 23719 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 23720 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 23721 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 23722 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 23723 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 8 23724 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 23725 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 23726 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 9 23727 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 8 23728 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 8 23729 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 23730 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 8 23731 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 9 23732 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 23733 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 23734 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 23735 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 23736 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 9 23737 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 23738 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 23739 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 23740 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 23741 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 9 23742 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 9 23743 -NCIT:C167260 Advanced Malignant Female Reproductive System Neoplasm 7 23744 -NCIT:C156294 Advanced Cervical Carcinoma 8 23745 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 23746 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 23747 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 23748 -NCIT:C165458 Advanced Ovarian Carcinoma 8 23749 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 23750 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 23751 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 23752 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 23753 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 23754 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 23755 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 23756 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 8 23757 -NCIT:C170786 Advanced Vulvar Carcinoma 8 23758 -NCIT:C170788 Advanced Vaginal Carcinoma 8 23759 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 23760 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 23761 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 23762 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 23763 -NCIT:C170930 Advanced Malignant Mixed Mesodermal (Mullerian) Tumor 8 23764 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 9 23765 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 9 23766 -NCIT:C172450 Advanced Uterine Corpus Cancer 8 23767 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 9 23768 -NCIT:C159676 Advanced Endometrial Carcinoma 9 23769 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 10 23770 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 11 23771 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 11 23772 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 10 23773 -NCIT:C170460 Locally Advanced Malignant Female Reproductive System Neoplasm 7 23774 -NCIT:C156295 Locally Advanced Cervical Carcinoma 8 23775 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 23776 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 23777 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 9 23778 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 23779 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 23780 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 8 23781 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 23782 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 23783 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 23784 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 23785 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 8 23786 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 9 23787 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 8 23788 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 23789 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 23790 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 9 23791 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 8 23792 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 8 23793 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 23794 -NCIT:C185381 Metastatic Mesonephric Adenocarcinoma 7 23795 -NCIT:C190009 Metastatic Uterine Corpus Sarcoma 7 23796 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 8 23797 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 9 23798 -NCIT:C170963 Resectable Malignant Female Reproductive System Neoplasm 6 23799 -NCIT:C178437 Mucosal Melanoma of the Female Genital Tract 6 23800 -NCIT:C27394 Vaginal Melanoma 7 23801 -NCIT:C40239 Cervical Melanoma 7 23802 -NCIT:C40329 Vulvar Melanoma 7 23803 -NCIT:C179320 Mesonephric-Like Adenocarcinoma 6 23804 -NCIT:C179321 Ovarian Mesonephric-Like Adenocarcinoma 7 23805 -NCIT:C179322 Endometrial Mesonephric-Like Adenocarcinoma 7 23806 -NCIT:C181162 Female Reproductive System Carcinoma 6 23807 -NCIT:C3867 Fallopian Tube Carcinoma 7 23808 -NCIT:C115429 Recurrent Fallopian Tube Carcinoma 8 23809 -NCIT:C170750 Recurrent Platinum-Resistant Fallopian Tube Carcinoma 9 23810 -NCIT:C170755 Recurrent Fallopian Tube Undifferentiated Carcinoma 9 23811 -NCIT:C170757 Recurrent Fallopian Tube Transitional Cell Carcinoma 9 23812 -NCIT:C170766 Recurrent Fallopian Tube Adenocarcinoma 9 23813 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 10 23814 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 10 23815 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 10 23816 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 10 23817 -NCIT:C191395 Recurrent Platinum-Sensitive Fallopian Tube Carcinoma 9 23818 -NCIT:C139983 Fallopian Tube Cancer by AJCC v8 Stage 8 23819 -NCIT:C139984 Stage I Fallopian Tube Cancer AJCC v8 9 23820 -NCIT:C139985 Stage IA Fallopian Tube Cancer AJCC v8 10 23821 -NCIT:C139986 Stage IB Fallopian Tube Cancer AJCC v8 10 23822 -NCIT:C139987 Stage IC Fallopian Tube Cancer AJCC v8 10 23823 -NCIT:C139988 Stage II Fallopian Tube Cancer AJCC v8 9 23824 -NCIT:C139989 Stage IIA Fallopian Tube Cancer AJCC v8 10 23825 -NCIT:C139990 Stage IIB Fallopian Tube Cancer AJCC v8 10 23826 -NCIT:C139991 Stage III Fallopian Tube Cancer AJCC v8 9 23827 -NCIT:C139992 Stage IIIA Fallopian Tube Cancer AJCC v8 10 23828 -NCIT:C139993 Stage IIIA1 Fallopian Tube Cancer AJCC v8 11 23829 -NCIT:C139994 Stage IIIA2 Fallopian Tube Cancer AJCC v8 11 23830 -NCIT:C139995 Stage IIIB Fallopian Tube Cancer AJCC v8 10 23831 -NCIT:C139996 Stage IIIC Fallopian Tube Cancer AJCC v8 10 23832 -NCIT:C139997 Stage IV Fallopian Tube Cancer AJCC v8 9 23833 -NCIT:C139998 Stage IVA Fallopian Tube Cancer AJCC v8 10 23834 -NCIT:C139999 Stage IVB Fallopian Tube Cancer AJCC v8 10 23835 -NCIT:C152047 Refractory Fallopian Tube Carcinoma 8 23836 -NCIT:C157621 Platinum-Resistant Fallopian Tube Carcinoma 9 23837 -NCIT:C170750 Recurrent Platinum-Resistant Fallopian Tube Carcinoma 10 23838 -NCIT:C170971 Refractory Fallopian Tube Adenocarcinoma 9 23839 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 10 23840 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 10 23841 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 10 23842 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 10 23843 -NCIT:C178674 Refractory Fallopian Tube Transitional Cell Carcinoma 9 23844 -NCIT:C178675 Refractory Fallopian Tube Undifferentiated Carcinoma 9 23845 -NCIT:C178698 Platinum-Refractory Fallopian Tube Carcinoma 9 23846 -NCIT:C156063 Metastatic Fallopian Tube Carcinoma 8 23847 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 9 23848 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 10 23849 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 9 23850 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 9 23851 -NCIT:C160873 Platinum-Sensitive Fallopian Tube Carcinoma 8 23852 -NCIT:C191395 Recurrent Platinum-Sensitive Fallopian Tube Carcinoma 9 23853 -NCIT:C170969 Unresectable Fallopian Tube Carcinoma 8 23854 -NCIT:C170970 Unresectable Fallopian Tube Adenocarcinoma 9 23855 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 10 23856 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 10 23857 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 9 23858 -NCIT:C40104 Fallopian Tube Transitional Cell Carcinoma 8 23859 -NCIT:C170757 Recurrent Fallopian Tube Transitional Cell Carcinoma 9 23860 -NCIT:C178674 Refractory Fallopian Tube Transitional Cell Carcinoma 9 23861 -NCIT:C40455 Hereditary Fallopian Tube Carcinoma 8 23862 -NCIT:C6265 Fallopian Tube Adenocarcinoma 8 23863 -NCIT:C170766 Recurrent Fallopian Tube Adenocarcinoma 9 23864 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 10 23865 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 10 23866 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 10 23867 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 10 23868 -NCIT:C170970 Unresectable Fallopian Tube Adenocarcinoma 9 23869 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 10 23870 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 10 23871 -NCIT:C170971 Refractory Fallopian Tube Adenocarcinoma 9 23872 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 10 23873 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 10 23874 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 10 23875 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 10 23876 -NCIT:C40099 Fallopian Tube Serous Adenocarcinoma 9 23877 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 10 23878 -NCIT:C126456 Fallopian Tube High Grade Serous Adenocarcinoma 10 23879 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 11 23880 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 11 23881 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 11 23882 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 11 23883 -NCIT:C40103 Fallopian Tube Mucinous Adenocarcinoma 9 23884 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 10 23885 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 10 23886 -NCIT:C40105 Stage 0 Fallopian Tube Cancer AJCC v7 9 23887 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 10 23888 -NCIT:C6279 Fallopian Tube Endometrioid Adenocarcinoma 9 23889 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 10 23890 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 10 23891 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 10 23892 -NCIT:C6280 Fallopian Tube Clear Cell Adenocarcinoma 9 23893 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 10 23894 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 10 23895 -NCIT:C6278 Fallopian Tube Gestational Choriocarcinoma 8 23896 -NCIT:C6281 Fallopian Tube Undifferentiated Carcinoma 8 23897 -NCIT:C170755 Recurrent Fallopian Tube Undifferentiated Carcinoma 9 23898 -NCIT:C178675 Refractory Fallopian Tube Undifferentiated Carcinoma 9 23899 -NCIT:C6282 Fallopian Tube Squamous Cell Carcinoma 8 23900 -NCIT:C90499 Fallopian Tube Cancer by AJCC v6 Stage 8 23901 -NCIT:C8720 Stage I Fallopian Tube Cancer AJCC v6 and v7 9 23902 -NCIT:C6269 Stage IA Fallopian Tube Cancer AJCC v6 and v7 10 23903 -NCIT:C6270 Stage IB Fallopian Tube Cancer AJCC v6 and v7 10 23904 -NCIT:C6271 Stage IC Fallopian Tube Cancer AJCC v6 and v7 10 23905 -NCIT:C8721 Stage II Fallopian Tube Cancer AJCC v6 and v7 9 23906 -NCIT:C6272 Stage IIA Fallopian Tube Cancer AJCC v6 and v7 10 23907 -NCIT:C6276 Stage IIC Fallopian Tube Cancer AJCC v6 and v7 10 23908 -NCIT:C6277 Stage IIB Fallopian Tube Cancer AJCC v6 and v7 10 23909 -NCIT:C8722 Stage III Fallopian Tube Cancer AJCC v6 9 23910 -NCIT:C8963 Stage IV Fallopian Tube Cancer AJCC v6 and v7 9 23911 -NCIT:C91219 Fallopian Tube Cancer by AJCC v7 Stage 8 23912 -NCIT:C40105 Stage 0 Fallopian Tube Cancer AJCC v7 9 23913 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 10 23914 -NCIT:C8720 Stage I Fallopian Tube Cancer AJCC v6 and v7 9 23915 -NCIT:C6269 Stage IA Fallopian Tube Cancer AJCC v6 and v7 10 23916 -NCIT:C6270 Stage IB Fallopian Tube Cancer AJCC v6 and v7 10 23917 -NCIT:C6271 Stage IC Fallopian Tube Cancer AJCC v6 and v7 10 23918 -NCIT:C8721 Stage II Fallopian Tube Cancer AJCC v6 and v7 9 23919 -NCIT:C6272 Stage IIA Fallopian Tube Cancer AJCC v6 and v7 10 23920 -NCIT:C6276 Stage IIC Fallopian Tube Cancer AJCC v6 and v7 10 23921 -NCIT:C6277 Stage IIB Fallopian Tube Cancer AJCC v6 and v7 10 23922 -NCIT:C8963 Stage IV Fallopian Tube Cancer AJCC v6 and v7 9 23923 -NCIT:C89692 Stage III Fallopian Tube Cancer AJCC v7 9 23924 -NCIT:C6273 Stage IIIA Fallopian Tube Cancer AJCC v7 10 23925 -NCIT:C6274 Stage IIIB Fallopian Tube Cancer AJCC v7 10 23926 -NCIT:C6275 Stage IIIC Fallopian Tube Cancer AJCC v7 10 23927 -NCIT:C3917 Vaginal Carcinoma 7 23928 -NCIT:C128073 Vaginal Neuroendocrine Carcinoma 8 23929 -NCIT:C128075 Vaginal Large Cell Neuroendocrine Carcinoma 9 23930 -NCIT:C40263 Vaginal Small Cell Neuroendocrine Carcinoma 9 23931 -NCIT:C139657 Vaginal Cancer by AJCC v8 Stage 8 23932 -NCIT:C139658 Stage I Vaginal Cancer AJCC v8 9 23933 -NCIT:C139659 Stage IA Vaginal Cancer AJCC v8 10 23934 -NCIT:C139660 Stage IB Vaginal Cancer AJCC v8 10 23935 -NCIT:C139661 Stage II Vaginal Cancer AJCC v8 9 23936 -NCIT:C139662 Stage IIA Vaginal Cancer AJCC v8 10 23937 -NCIT:C139664 Stage IIB Vaginal Cancer AJCC v8 10 23938 -NCIT:C139665 Stage III Vaginal Cancer AJCC v8 9 23939 -NCIT:C139667 Stage IV Vaginal Cancer AJCC v8 9 23940 -NCIT:C139669 Stage IVA Vaginal Cancer AJCC v8 10 23941 -NCIT:C139670 Stage IVB Vaginal Cancer AJCC v8 10 23942 -NCIT:C156065 Metastatic Vaginal Carcinoma 8 23943 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 9 23944 -NCIT:C170788 Advanced Vaginal Carcinoma 9 23945 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 10 23946 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 10 23947 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 10 23948 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 11 23949 -NCIT:C181028 Metastatic Vaginal Adenosquamous Carcinoma 9 23950 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 10 23951 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 9 23952 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 10 23953 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 11 23954 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 9 23955 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 10 23956 -NCIT:C174509 Refractory Vaginal Carcinoma 8 23957 -NCIT:C185303 Refractory Vaginal Squamous Cell Carcinoma 9 23958 -NCIT:C175434 Unresectable Vaginal Carcinoma 8 23959 -NCIT:C180915 Vaginal Squamous Cell Carcinoma 8 23960 -NCIT:C128060 Vaginal Papillary Carcinoma 9 23961 -NCIT:C180917 Human Papillomavirus-Related Vaginal Squamous Cell Carcinoma 9 23962 -NCIT:C40248 Vaginal Warty Carcinoma 10 23963 -NCIT:C180919 Human Papillomavirus-Independent Vaginal Squamous Cell Carcinoma 9 23964 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 9 23965 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 10 23966 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 11 23967 -NCIT:C185302 Recurrent Vaginal Squamous Cell Carcinoma 9 23968 -NCIT:C185303 Refractory Vaginal Squamous Cell Carcinoma 9 23969 -NCIT:C40243 Vaginal Keratinizing Squamous Cell Carcinoma 9 23970 -NCIT:C40244 Vaginal Non-Keratinizing Squamous Cell Carcinoma 9 23971 -NCIT:C40245 Vaginal Basaloid Carcinoma 9 23972 -NCIT:C6325 Vaginal Verrucous Carcinoma 9 23973 -NCIT:C7736 Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 23974 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 23975 -NCIT:C40260 Vaginal Adenosquamous Carcinoma 8 23976 -NCIT:C181028 Metastatic Vaginal Adenosquamous Carcinoma 9 23977 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 10 23978 -NCIT:C40261 Vaginal Adenoid Cystic Carcinoma 8 23979 -NCIT:C40262 Vaginal Adenoid Basal Carcinoma 8 23980 -NCIT:C40264 Vaginal Undifferentiated Carcinoma 8 23981 -NCIT:C7860 Recurrent Vaginal Carcinoma 8 23982 -NCIT:C185302 Recurrent Vaginal Squamous Cell Carcinoma 9 23983 -NCIT:C7981 Vaginal Adenocarcinoma 8 23984 -NCIT:C180943 Human Papillomavirus-Related Vaginal Adenocarcinoma 9 23985 -NCIT:C180947 Vaginal Adenocarcinoma of Skene Gland Origin 9 23986 -NCIT:C40251 Vaginal Endometrioid Adenocarcinoma 9 23987 -NCIT:C40252 Vaginal Mucinous Adenocarcinoma 9 23988 -NCIT:C180945 Vaginal Mucinous Adenocarcinoma, Gastric-Type 10 23989 -NCIT:C180946 Vaginal Mucinous Adenocarcinoma, Intestinal-Type 10 23990 -NCIT:C40253 Vaginal Mesonephric Adenocarcinoma 9 23991 -NCIT:C7735 Vaginal Clear Cell Adenocarcinoma 9 23992 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 9 23993 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 10 23994 -NCIT:C90347 Vaginal Cancer by AJCC v6 Stage 8 23995 -NCIT:C7597 Stage IV Vaginal Cancer AJCC v6 and v7 9 23996 -NCIT:C7859 Stage IVA Vaginal Cancer AJCC v6 and v7 10 23997 -NCIT:C9355 Stage IVB Vaginal Cancer AJCC v6 and v7 10 23998 -NCIT:C7855 Stage 0 Vaginal Cancer AJCC v6 9 23999 -NCIT:C7856 Stage I Vaginal Cancer AJCC v6 and v7 9 24000 -NCIT:C7857 Stage II Vaginal Cancer AJCC v6 and v7 9 24001 -NCIT:C7858 Stage III Vaginal Cancer AJCC v6 and v7 9 24002 -NCIT:C91204 Vaginal Cancer by AJCC v7 Stage 8 24003 -NCIT:C7597 Stage IV Vaginal Cancer AJCC v6 and v7 9 24004 -NCIT:C7859 Stage IVA Vaginal Cancer AJCC v6 and v7 10 24005 -NCIT:C9355 Stage IVB Vaginal Cancer AJCC v6 and v7 10 24006 -NCIT:C7856 Stage I Vaginal Cancer AJCC v6 and v7 9 24007 -NCIT:C7857 Stage II Vaginal Cancer AJCC v6 and v7 9 24008 -NCIT:C7858 Stage III Vaginal Cancer AJCC v6 and v7 9 24009 -NCIT:C89476 Stage 0 Vaginal Cancer AJCC v7 9 24010 -NCIT:C4072 Mesonephric Adenocarcinoma 7 24011 -NCIT:C185381 Metastatic Mesonephric Adenocarcinoma 8 24012 -NCIT:C40253 Vaginal Mesonephric Adenocarcinoma 8 24013 -NCIT:C40254 Cervical Mesonephric Adenocarcinoma 8 24014 -NCIT:C4866 Vulvar Carcinoma 7 24015 -NCIT:C128243 Vulvar Neuroendocrine Carcinoma 8 24016 -NCIT:C128244 Vulvar Small Cell Neuroendocrine Carcinoma 9 24017 -NCIT:C40298 Bartholin Gland Small Cell Neuroendocrine Carcinoma 10 24018 -NCIT:C128245 Vulvar Large Cell Neuroendocrine Carcinoma 9 24019 -NCIT:C128247 Vulvar Merkel Cell Carcinoma 9 24020 -NCIT:C139618 Vulvar Cancer by AJCC v8 Stage 8 24021 -NCIT:C139619 Stage I Vulvar Cancer AJCC v8 9 24022 -NCIT:C139620 Stage IA Vulvar Cancer AJCC v8 10 24023 -NCIT:C139621 Stage IB Vulvar Cancer AJCC v8 10 24024 -NCIT:C139622 Stage II Vulvar Cancer AJCC v8 9 24025 -NCIT:C139623 Stage III Vulvar Cancer AJCC v8 9 24026 -NCIT:C139624 Stage IIIA Vulvar Cancer AJCC v8 10 24027 -NCIT:C139625 Stage IIIB Vulvar Cancer AJCC v8 10 24028 -NCIT:C139626 Stage IIIC Vulvar Cancer AJCC v8 10 24029 -NCIT:C139627 Stage IV Vulvar Cancer AJCC v8 9 24030 -NCIT:C139628 Stage IVA Vulvar Cancer AJCC v8 10 24031 -NCIT:C139630 Stage IVB Vulvar Cancer AJCC v8 10 24032 -NCIT:C156066 Metastatic Vulvar Carcinoma 8 24033 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 9 24034 -NCIT:C170786 Advanced Vulvar Carcinoma 9 24035 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 9 24036 -NCIT:C174198 Unresectable Vulvar Carcinoma 8 24037 -NCIT:C174199 Unresectable Vulvar Squamous Cell Carcinoma 9 24038 -NCIT:C174508 Refractory Vulvar Carcinoma 8 24039 -NCIT:C185304 Refractory Vulvar Squamous Cell Carcinoma 9 24040 -NCIT:C4052 Vulvar Squamous Cell Carcinoma 8 24041 -NCIT:C128167 Vulvar Keratoacanthoma 9 24042 -NCIT:C174199 Unresectable Vulvar Squamous Cell Carcinoma 9 24043 -NCIT:C174200 Recurrent Vulvar Squamous Cell Carcinoma 9 24044 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 9 24045 -NCIT:C181902 Vulvar Squamous Cell Carcinoma, Not Otherwise Specified 9 24046 -NCIT:C181903 Human Papillomavirus-Independent Vulvar Squamous Cell Carcinoma 9 24047 -NCIT:C185304 Refractory Vulvar Squamous Cell Carcinoma 9 24048 -NCIT:C27679 Human Papillomavirus-Related Vulvar Squamous Cell Carcinoma 9 24049 -NCIT:C40287 Vulvar Warty Carcinoma 10 24050 -NCIT:C40284 Vulvar Keratinizing Squamous Cell Carcinoma 9 24051 -NCIT:C40285 Vulvar Non-Keratinizing Squamous Cell Carcinoma 9 24052 -NCIT:C40286 Vulvar Basaloid Carcinoma 9 24053 -NCIT:C40289 Vulvar Squamous Cell Carcinoma with Tumor Giant Cells 9 24054 -NCIT:C40293 Bartholin Gland Squamous Cell Carcinoma 9 24055 -NCIT:C6383 Vulvar Verrucous Carcinoma 9 24056 -NCIT:C6380 Vulvar Adenocarcinoma 8 24057 -NCIT:C128162 Vulvar Adenocarcinoma of Mammary Gland Type 9 24058 -NCIT:C128164 Vulvar Adenocarcinoma of Sweat Gland Origin 9 24059 -NCIT:C4027 Vulvar Paget Disease 10 24060 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 10 24061 -NCIT:C40306 Vulvar Porocarcinoma 11 24062 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 10 24063 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 10 24064 -NCIT:C128166 Vulvar Adenocarcinoma, Intestinal-Type 9 24065 -NCIT:C40309 Vulvar Sebaceous Carcinoma 9 24066 -NCIT:C7719 Bartholin Gland Adenocarcinoma 9 24067 -NCIT:C6381 Vulvar Basal Cell Carcinoma 8 24068 -NCIT:C90345 Vulvar Cancer by AJCC v6 Stage 8 24069 -NCIT:C4522 Stage 0 Vulvar Cancer AJCC v6 9 24070 -NCIT:C7854 Stage I Vulvar Cancer AJCC v6 9 24071 -NCIT:C6328 Stage IA Vulvar Carcinoma AJCC v6 10 24072 -NCIT:C6329 Stage IB Vulvar Carcinoma AJCC v6 10 24073 -NCIT:C9051 Stage II Vulvar Cancer AJCC v6 9 24074 -NCIT:C9052 Stage III Vulvar Cancer AJCC v6 9 24075 -NCIT:C9053 Stage IV Vulvar Cancer AJCC v6 9 24076 -NCIT:C27247 Stage IVB Vulvar Cancer AJCC v6 and v7 10 24077 -NCIT:C6330 Stage IVA Vulvar Cancer AJCC v6 10 24078 -NCIT:C9054 Recurrent Vulvar Carcinoma 8 24079 -NCIT:C174200 Recurrent Vulvar Squamous Cell Carcinoma 9 24080 -NCIT:C9055 Bartholin Gland Carcinoma 8 24081 -NCIT:C40293 Bartholin Gland Squamous Cell Carcinoma 9 24082 -NCIT:C40295 Bartholin Gland Adenoid Cystic Carcinoma 9 24083 -NCIT:C40296 Bartholin Gland Adenosquamous Carcinoma 9 24084 -NCIT:C40297 Bartholin Gland Transitional Cell Carcinoma 9 24085 -NCIT:C40298 Bartholin Gland Small Cell Neuroendocrine Carcinoma 9 24086 -NCIT:C7719 Bartholin Gland Adenocarcinoma 9 24087 -NCIT:C91203 Vulvar Cancer by AJCC v7 Stage 8 24088 -NCIT:C89445 Stage 0 Vulvar Cancer AJCC v7 9 24089 -NCIT:C89447 Stage I Vulvar Cancer AJCC v7 9 24090 -NCIT:C89448 Stage IA Vulvar Cancer AJCC v7 10 24091 -NCIT:C89449 Stage IB Vulvar Cancer AJCC v7 10 24092 -NCIT:C89451 Stage II Vulvar Cancer AJCC v7 9 24093 -NCIT:C89452 Stage III Vulvar Cancer AJCC v7 9 24094 -NCIT:C87003 Stage IIIA Vulvar Cancer AJCC v7 10 24095 -NCIT:C87004 Stage IIIB Vulvar Cancer AJCC v7 10 24096 -NCIT:C87005 Stage IIIC Vulvar Cancer AJCC v7 10 24097 -NCIT:C89453 Stage IV Vulvar Cancer AJCC v7 9 24098 -NCIT:C27247 Stage IVB Vulvar Cancer AJCC v6 and v7 10 24099 -NCIT:C89454 Stage IVA Vulvar Cancer AJCC v7 10 24100 -NCIT:C9362 Clitoral Carcinoma 8 24101 -NCIT:C9363 Labia Majora Carcinoma 8 24102 -NCIT:C9364 Labia Minora Carcinoma 8 24103 -NCIT:C4908 Ovarian Carcinoma 7 24104 -NCIT:C128081 Ovarian Cancer by FIGO Stage 8 24105 -NCIT:C128082 FIGO Stage IC1 Ovarian Cancer 9 24106 -NCIT:C128083 FIGO Stage IC2 Ovarian Cancer 9 24107 -NCIT:C128084 FIGO Stage IC3 Ovarian Cancer 9 24108 -NCIT:C128085 FIGO Stage II Ovarian Cancer 9 24109 -NCIT:C5223 Stage IIA Ovarian Cancer AJCC V6 and v7 10 24110 -NCIT:C5224 Stage IIB Ovarian Cancer AJCC v6 and v7 10 24111 -NCIT:C128086 FIGO Stage III Ovarian Cancer 9 24112 -NCIT:C128087 FIGO Stage IIIA Ovarian Cancer 10 24113 -NCIT:C128088 FIGO Stage IIIA1 Ovarian Cancer 11 24114 -NCIT:C128089 FIGO Stage IIIA1(i) Ovarian Cancer 12 24115 -NCIT:C128090 FIGO Stage IIIA1(ii) Ovarian Cancer 12 24116 -NCIT:C128091 FIGO Stage IIIA2 Ovarian Cancer 11 24117 -NCIT:C128092 FIGO Stage IIIB Ovarian Cancer 10 24118 -NCIT:C128093 FIGO Stage IIIC Ovarian Cancer 10 24119 -NCIT:C128094 FIGO Stage IVA Ovarian Cancer 9 24120 -NCIT:C128095 FIGO Stage IVB Ovarian Cancer 9 24121 -NCIT:C7829 Stage I Ovarian Cancer AJCC v6 and v7 9 24122 -NCIT:C5220 Stage IA Ovarian Cancer AJCC v6 and v7 10 24123 -NCIT:C5221 Stage IB Ovarian Cancer AJCC v6 and v7 10 24124 -NCIT:C5222 Stage IC Ovarian Cancer AJCC v6 and v7 10 24125 -NCIT:C7832 Stage IV Ovarian Cancer AJCC v6 and v7 9 24126 -NCIT:C128106 Ovarian Cancer by AJCC v6 and v7 Stage 8 24127 -NCIT:C7829 Stage I Ovarian Cancer AJCC v6 and v7 9 24128 -NCIT:C5220 Stage IA Ovarian Cancer AJCC v6 and v7 10 24129 -NCIT:C5221 Stage IB Ovarian Cancer AJCC v6 and v7 10 24130 -NCIT:C5222 Stage IC Ovarian Cancer AJCC v6 and v7 10 24131 -NCIT:C7830 Stage II Ovarian Cancer AJCC v6 and v7 9 24132 -NCIT:C5223 Stage IIA Ovarian Cancer AJCC V6 and v7 10 24133 -NCIT:C5224 Stage IIB Ovarian Cancer AJCC v6 and v7 10 24134 -NCIT:C5225 Stage IIC Ovarian Cancer AJCC v6 and v7 10 24135 -NCIT:C7831 Stage III Ovarian Cancer AJCC v6 and v7 9 24136 -NCIT:C6258 Stage IIIA Ovarian Cancer AJCC v6 and v7 10 24137 -NCIT:C6259 Stage IIIB Ovarian Cancer AJCC v6 and v7 10 24138 -NCIT:C6260 Stage IIIC Ovarian Cancer AJCC v6 and v7 10 24139 -NCIT:C7832 Stage IV Ovarian Cancer AJCC v6 and v7 9 24140 -NCIT:C139963 Ovarian Cancer by AJCC v8 Stage 8 24141 -NCIT:C139964 Stage I Ovarian Cancer AJCC v8 9 24142 -NCIT:C139965 Stage IA Ovarian Cancer AJCC v8 10 24143 -NCIT:C139966 Stage IB Ovarian Cancer AJCC v8 10 24144 -NCIT:C139967 Stage IC Ovarian Cancer AJCC v8 10 24145 -NCIT:C139968 Stage II Ovarian Cancer AJCC v8 9 24146 -NCIT:C139969 Stage IIA Ovarian Cancer AJCC v8 10 24147 -NCIT:C139970 Stage IIB Ovarian Cancer AJCC v8 10 24148 -NCIT:C139971 Stage III Ovarian Cancer AJCC v8 9 24149 -NCIT:C139972 Stage IIIA Ovarian Cancer AJCC v8 10 24150 -NCIT:C139973 Stage IIIA1 Ovarian Cancer AJCC v8 11 24151 -NCIT:C139974 Stage IIIA2 Ovarian Cancer AJCC v8 11 24152 -NCIT:C139975 Stage IIIB Ovarian Cancer AJCC v8 10 24153 -NCIT:C139976 Stage IIIC Ovarian Cancer AJCC v8 10 24154 -NCIT:C139977 Stage IV Ovarian Cancer AJCC v8 9 24155 -NCIT:C139978 Stage IVA Ovarian Cancer AJCC v8 10 24156 -NCIT:C139979 Stage IVB Ovarian Cancer AJCC v8 10 24157 -NCIT:C150091 Refractory Ovarian Carcinoma 8 24158 -NCIT:C147561 Platinum-Resistant Ovarian Carcinoma 9 24159 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 10 24160 -NCIT:C179459 Unresectable Platinum-Resistant Ovarian Carcinoma 10 24161 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 10 24162 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 11 24163 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 11 24164 -NCIT:C170968 Refractory Ovarian Adenocarcinoma 9 24165 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 10 24166 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 10 24167 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 11 24168 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 11 24169 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 10 24170 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 10 24171 -NCIT:C178671 Refractory Ovarian Seromucinous Carcinoma 9 24172 -NCIT:C178682 Refractory Ovarian Transitional Cell Carcinoma 9 24173 -NCIT:C178683 Refractory Ovarian Undifferentiated Carcinoma 9 24174 -NCIT:C178700 Platinum-Refractory Ovarian Carcinoma 9 24175 -NCIT:C179207 Refractory Ovarian Squamous Cell Carcinoma 9 24176 -NCIT:C183126 Refractory Malignant Ovarian Brenner Tumor 9 24177 -NCIT:C156064 Metastatic Ovarian Carcinoma 8 24178 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 9 24179 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 10 24180 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 11 24181 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 11 24182 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 10 24183 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 11 24184 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 11 24185 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 10 24186 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 11 24187 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 11 24188 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 10 24189 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 11 24190 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 11 24191 -NCIT:C165458 Advanced Ovarian Carcinoma 9 24192 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 10 24193 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 11 24194 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 11 24195 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 10 24196 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 10 24197 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 10 24198 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 10 24199 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 9 24200 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 10 24201 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 11 24202 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 11 24203 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 10 24204 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 9 24205 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 10 24206 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 9 24207 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 10 24208 -NCIT:C172234 Metastatic Ovarian Undifferentiated Carcinoma 9 24209 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 9 24210 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 10 24211 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 10 24212 -NCIT:C180333 Metastatic Microsatellite Stable Ovarian Carcinoma 9 24213 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 10 24214 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 9 24215 -NCIT:C27391 Metastatic Ovarian Small Cell Carcinoma, Hypercalcemic Type 9 24216 -NCIT:C159902 Platinum-Sensitive Ovarian Carcinoma 8 24217 -NCIT:C188391 Recurrent Platinum-Sensitive Ovarian Carcinoma 9 24218 -NCIT:C167073 Unresectable Ovarian Carcinoma 8 24219 -NCIT:C160781 Unresectable Ovarian Serous Adenocarcinoma 9 24220 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 10 24221 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 11 24222 -NCIT:C172235 Unresectable Ovarian Undifferentiated Carcinoma 9 24223 -NCIT:C179459 Unresectable Platinum-Resistant Ovarian Carcinoma 9 24224 -NCIT:C183245 Unresectable Ovarian Mucinous Adenocarcinoma 9 24225 -NCIT:C186273 Unresectable Ovarian Endometrioid Adenocarcinoma 9 24226 -NCIT:C171032 Ovarian Neuroendocrine Carcinoma 8 24227 -NCIT:C40440 Ovarian Small Cell Carcinoma, Pulmonary-Type 9 24228 -NCIT:C5238 Ovarian Large Cell Neuroendocrine Carcinoma 9 24229 -NCIT:C179334 Ovarian Dedifferentiated Carcinoma 8 24230 -NCIT:C180332 Microsatellite Stable Ovarian Carcinoma 8 24231 -NCIT:C180333 Metastatic Microsatellite Stable Ovarian Carcinoma 9 24232 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 10 24233 -NCIT:C27390 Ovarian Small Cell Carcinoma 8 24234 -NCIT:C40439 Ovarian Small Cell Carcinoma, Hypercalcemic Type 9 24235 -NCIT:C189334 Childhood Ovarian Small Cell Carcinoma, Hypercalcemic Type 10 24236 -NCIT:C27391 Metastatic Ovarian Small Cell Carcinoma, Hypercalcemic Type 10 24237 -NCIT:C40440 Ovarian Small Cell Carcinoma, Pulmonary-Type 9 24238 -NCIT:C36102 Hereditary Ovarian Carcinoma 8 24239 -NCIT:C148024 BRCA-Associated Ovarian Carcinoma 9 24240 -NCIT:C148025 Recurrent BRCA- Associated Ovarian Carcinoma 10 24241 -NCIT:C40090 Ovarian Seromucinous Carcinoma 8 24242 -NCIT:C178669 Recurrent Ovarian Seromucinous Carcinoma 9 24243 -NCIT:C178671 Refractory Ovarian Seromucinous Carcinoma 9 24244 -NCIT:C40093 Ovarian Squamous Cell Carcinoma 8 24245 -NCIT:C179207 Refractory Ovarian Squamous Cell Carcinoma 9 24246 -NCIT:C4270 Malignant Ovarian Brenner Tumor 8 24247 -NCIT:C153818 Recurrent Malignant Ovarian Brenner Tumor 9 24248 -NCIT:C183126 Refractory Malignant Ovarian Brenner Tumor 9 24249 -NCIT:C4509 Ovarian Undifferentiated Carcinoma 8 24250 -NCIT:C170754 Recurrent Ovarian Undifferentiated Carcinoma 9 24251 -NCIT:C172234 Metastatic Ovarian Undifferentiated Carcinoma 9 24252 -NCIT:C172235 Unresectable Ovarian Undifferentiated Carcinoma 9 24253 -NCIT:C178683 Refractory Ovarian Undifferentiated Carcinoma 9 24254 -NCIT:C5240 Ovarian Transitional Cell Carcinoma 8 24255 -NCIT:C153819 Recurrent Ovarian Transitional Cell Carcinoma 9 24256 -NCIT:C178682 Refractory Ovarian Transitional Cell Carcinoma 9 24257 -NCIT:C7700 Ovarian Adenocarcinoma 8 24258 -NCIT:C153614 Recurrent Ovarian Adenocarcinoma 9 24259 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 10 24260 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 10 24261 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 11 24262 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 11 24263 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 11 24264 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 10 24265 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 10 24266 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 11 24267 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 10 24268 -NCIT:C170968 Refractory Ovarian Adenocarcinoma 9 24269 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 10 24270 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 10 24271 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 11 24272 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 11 24273 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 10 24274 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 10 24275 -NCIT:C179208 Ovarian Signet Ring Cell Carcinoma 9 24276 -NCIT:C179321 Ovarian Mesonephric-Like Adenocarcinoma 9 24277 -NCIT:C179339 Ovarian Mixed Cell Adenocarcinoma 9 24278 -NCIT:C40078 Ovarian Clear Cell Adenocarcinoma 9 24279 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 10 24280 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 10 24281 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 11 24282 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 10 24283 -NCIT:C7980 Ovarian Clear Cell Cystadenocarcinoma 10 24284 -NCIT:C5228 Ovarian Cystadenocarcinoma 9 24285 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 10 24286 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 11 24287 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 10 24288 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 10 24289 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 11 24290 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 12 24291 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 12 24292 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 11 24293 -NCIT:C7980 Ovarian Clear Cell Cystadenocarcinoma 10 24294 -NCIT:C5243 Ovarian Mucinous Adenocarcinoma 9 24295 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 10 24296 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 10 24297 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 10 24298 -NCIT:C183245 Unresectable Ovarian Mucinous Adenocarcinoma 10 24299 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 10 24300 -NCIT:C7550 Ovarian Serous Adenocarcinoma 9 24301 -NCIT:C105555 Ovarian High Grade Serous Adenocarcinoma 10 24302 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 11 24303 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 11 24304 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 11 24305 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 24306 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 11 24307 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 24308 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 12 24309 -NCIT:C105556 Ovarian Low Grade Serous Adenocarcinoma 10 24310 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 11 24311 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 11 24312 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 10 24313 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 11 24314 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 11 24315 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 11 24316 -NCIT:C160781 Unresectable Ovarian Serous Adenocarcinoma 10 24317 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 11 24318 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 24319 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 10 24320 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 11 24321 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 12 24322 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 12 24323 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 11 24324 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 24325 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 12 24326 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 11 24327 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 12 24328 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 12 24329 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 11 24330 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 12 24331 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 24332 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 10 24333 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 11 24334 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 11 24335 -NCIT:C6256 Ovarian Serous Surface Papillary Adenocarcinoma 10 24336 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 10 24337 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 11 24338 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 12 24339 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 12 24340 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 11 24341 -NCIT:C7979 Ovarian Endometrioid Adenocarcinoma 9 24342 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 10 24343 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 10 24344 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 10 24345 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 11 24346 -NCIT:C186273 Unresectable Ovarian Endometrioid Adenocarcinoma 10 24347 -NCIT:C40061 Ovarian Endometrioid Adenocarcinoma with Squamous Differentiation 10 24348 -NCIT:C7833 Recurrent Ovarian Carcinoma 8 24349 -NCIT:C148025 Recurrent BRCA- Associated Ovarian Carcinoma 9 24350 -NCIT:C153614 Recurrent Ovarian Adenocarcinoma 9 24351 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 10 24352 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 10 24353 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 11 24354 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 11 24355 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 11 24356 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 10 24357 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 10 24358 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 11 24359 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 10 24360 -NCIT:C153818 Recurrent Malignant Ovarian Brenner Tumor 9 24361 -NCIT:C153819 Recurrent Ovarian Transitional Cell Carcinoma 9 24362 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 9 24363 -NCIT:C170754 Recurrent Ovarian Undifferentiated Carcinoma 9 24364 -NCIT:C178669 Recurrent Ovarian Seromucinous Carcinoma 9 24365 -NCIT:C188391 Recurrent Platinum-Sensitive Ovarian Carcinoma 9 24366 -NCIT:C190201 Locally Recurrent Ovarian Carcinoma 9 24367 -NCIT:C7558 Endometrial Carcinoma 7 24368 -NCIT:C114656 Endometrial Adenosquamous Carcinoma 8 24369 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 9 24370 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 9 24371 -NCIT:C126769 Endometrial Dedifferentiated Carcinoma 8 24372 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 9 24373 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 9 24374 -NCIT:C150093 Refractory Endometrial Carcinoma 8 24375 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 9 24376 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 9 24377 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 9 24378 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 9 24379 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 10 24380 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 10 24381 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 10 24382 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 10 24383 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 10 24384 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 9 24385 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 9 24386 -NCIT:C150094 Recurrent Endometrial Carcinoma 8 24387 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 9 24388 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 9 24389 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 10 24390 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 10 24391 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 10 24392 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 10 24393 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 10 24394 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 9 24395 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 9 24396 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 9 24397 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 9 24398 -NCIT:C190200 Locally Recurrent Endometrial Carcinoma 9 24399 -NCIT:C156068 Metastatic Endometrial Carcinoma 8 24400 -NCIT:C159676 Advanced Endometrial Carcinoma 9 24401 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 10 24402 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 11 24403 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 11 24404 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 10 24405 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 9 24406 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 10 24407 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 11 24408 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 10 24409 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 9 24410 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 9 24411 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 10 24412 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 9 24413 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 10 24414 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 11 24415 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 10 24416 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 11 24417 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 11 24418 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 10 24419 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 11 24420 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 11 24421 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 10 24422 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 11 24423 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 10 24424 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 10 24425 -NCIT:C171033 Endometrial Neuroendocrine Carcinoma 8 24426 -NCIT:C126772 Endometrial Large Cell Neuroendocrine Carcinoma 9 24427 -NCIT:C40155 Endometrial Small Cell Neuroendocrine Carcinoma 9 24428 -NCIT:C171610 Unresectable Endometrial Carcinoma 8 24429 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 9 24430 -NCIT:C180335 Microsatellite Stable Endometrial Carcinoma 8 24431 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 9 24432 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 10 24433 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 9 24434 -NCIT:C190680 High Grade Endometrial Carcinoma 8 24435 -NCIT:C27838 Endometrial Serous Adenocarcinoma 9 24436 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 10 24437 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 10 24438 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 10 24439 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 11 24440 -NCIT:C187374 Platinum-Sensitive Endometrial Serous Adenocarcinoma 10 24441 -NCIT:C40148 High Grade Endometrial Endometrioid Adenocarcinoma 9 24442 -NCIT:C40156 Endometrial Undifferentiated Carcinoma 9 24443 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 10 24444 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 10 24445 -NCIT:C8028 Endometrial Clear Cell Adenocarcinoma 9 24446 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 10 24447 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 10 24448 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 10 24449 -NCIT:C40154 Endometrial Transitional Cell Carcinoma 8 24450 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 9 24451 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 9 24452 -NCIT:C7359 Endometrial Adenocarcinoma 8 24453 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 9 24454 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 10 24455 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 10 24456 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 10 24457 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 10 24458 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 10 24459 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 9 24460 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 10 24461 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 10 24462 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 10 24463 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 10 24464 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 10 24465 -NCIT:C179322 Endometrial Mesonephric-Like Adenocarcinoma 9 24466 -NCIT:C180536 Endometrial Mucinous Adenocarcinoma, Intestinal-Type 9 24467 -NCIT:C180537 Endometrial Mucinous Adenocarcinoma, Gastric-Type 9 24468 -NCIT:C39749 Type II Endometrial Adenocarcinoma 9 24469 -NCIT:C27838 Endometrial Serous Adenocarcinoma 10 24470 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 11 24471 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 11 24472 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 11 24473 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 12 24474 -NCIT:C187374 Platinum-Sensitive Endometrial Serous Adenocarcinoma 11 24475 -NCIT:C40152 Serous Endometrial Intraepithelial Carcinoma 10 24476 -NCIT:C8028 Endometrial Clear Cell Adenocarcinoma 10 24477 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 11 24478 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 11 24479 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 11 24480 -NCIT:C40145 Type I Endometrial Adenocarcinoma 9 24481 -NCIT:C40144 Endometrial Mucinous Adenocarcinoma 10 24482 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 11 24483 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 11 24484 -NCIT:C40149 FIGO Grade 1 Endometrial Mucinous Adenocarcinoma 11 24485 -NCIT:C40150 FIGO Grade 2 Endometrial Mucinous Adenocarcinoma 11 24486 -NCIT:C40151 FIGO Grade 3 Endometrial Mucinous Adenocarcinoma 11 24487 -NCIT:C6287 Endometrial Endometrioid Adenocarcinoma 10 24488 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 11 24489 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 11 24490 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 11 24491 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 12 24492 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 12 24493 -NCIT:C180510 Low Grade Endometrial Endometrioid Adenocarcinoma 11 24494 -NCIT:C40146 FIGO Grade 1 Endometrial Endometrioid Adenocarcinoma 12 24495 -NCIT:C40147 FIGO Grade 2 Endometrial Endometrioid Adenocarcinoma 12 24496 -NCIT:C180512 POLE-Ultramutated Endometrial Endometrioid Adenocarcinoma 11 24497 -NCIT:C180514 Mismatch Repair-Deficient Endometrial Endometrioid Adenocarcinoma 11 24498 -NCIT:C180515 p53-Mutant Endometrial Endometrioid Adenocarcinoma 11 24499 -NCIT:C180516 No Specific Molecular Profile Endometrial Endometrioid Adenocarcinoma 11 24500 -NCIT:C27839 Endometrial Endometrioid Adenocarcinoma, Secretory Variant 11 24501 -NCIT:C27843 Endometrial Endometrioid Adenocarcinoma with Clear Cell Change 11 24502 -NCIT:C27844 Endometrial Endometrioid Adenocarcinoma with a Poorly Differentiated Carcinomatous Component 11 24503 -NCIT:C27845 Endometrial Endometrioid Adenocarcinoma with an Undifferentiated Carcinomatous Component 11 24504 -NCIT:C27846 Villoglandular Endometrial Endometrioid Adenocarcinoma 11 24505 -NCIT:C27848 Endometrial Endometrioid Adenocarcinoma, Ciliated Variant 11 24506 -NCIT:C27849 Oxyphilic Endometrial Endometrioid Adenocarcinoma 11 24507 -NCIT:C27850 Endometrial Endometrioid Adenocarcinoma with Spindled Epithelial Cells 11 24508 -NCIT:C40148 High Grade Endometrial Endometrioid Adenocarcinoma 11 24509 -NCIT:C6290 Endometrial Endometrioid Adenocarcinoma, Variant with Squamous Differentiation 11 24510 -NCIT:C40153 Endometrial Mixed Cell Adenocarcinoma 9 24511 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 10 24512 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 10 24513 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 10 24514 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 9 24515 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 10 24516 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 11 24517 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 10 24518 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 11 24519 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 11 24520 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 10 24521 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 11 24522 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 11 24523 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 10 24524 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 11 24525 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 10 24526 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 10 24527 -NCIT:C8719 Endometrial Squamous Cell Carcinoma 8 24528 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 9 24529 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 9 24530 -NCIT:C9039 Cervical Carcinoma 7 24531 -NCIT:C128045 Cervical Neuroendocrine Carcinoma 8 24532 -NCIT:C40214 Cervical Large Cell Neuroendocrine Carcinoma 9 24533 -NCIT:C7982 Cervical Small Cell Neuroendocrine Carcinoma 9 24534 -NCIT:C139733 Cervical Cancer by AJCC v8 Stage 8 24535 -NCIT:C139734 Stage I Cervical Cancer AJCC v8 9 24536 -NCIT:C139735 Stage IA Cervical Cancer AJCC v8 10 24537 -NCIT:C139736 Stage IA1 Cervical Cancer AJCC v8 11 24538 -NCIT:C139737 Stage IA2 Cervical Cancer AJCC v8 11 24539 -NCIT:C139738 Stage IB Cervical Cancer AJCC v8 10 24540 -NCIT:C139739 Stage IB1 Cervical Cancer AJCC v8 11 24541 -NCIT:C139740 Stage IB2 Cervical Cancer AJCC v8 11 24542 -NCIT:C139743 Stage II Cervical Cancer AJCC v8 9 24543 -NCIT:C139744 Stage IIA Cervical Cancer AJCC v8 10 24544 -NCIT:C139745 Stage IIA1 Cervical Cancer AJCC v8 11 24545 -NCIT:C139746 Stage IIA2 Cervical Cancer AJCC v8 11 24546 -NCIT:C139748 Stage IIB Cervical Cancer AJCC v8 10 24547 -NCIT:C139749 Stage III Cervical Cancer AJCC v8 9 24548 -NCIT:C139750 Stage IIIA Cervical Cancer AJCC v8 10 24549 -NCIT:C139752 Stage IIIB Cervical Cancer AJCC v8 10 24550 -NCIT:C139753 Stage IV Cervical Cancer AJCC v8 9 24551 -NCIT:C139754 Stage IVA Cervical Cancer AJCC v8 10 24552 -NCIT:C139755 Stage IVB Cervical Cancer AJCC v8 10 24553 -NCIT:C153387 Metastatic Cervical Carcinoma 8 24554 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 9 24555 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 10 24556 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 10 24557 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 9 24558 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 10 24559 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 11 24560 -NCIT:C156304 Advanced Cervical Adenocarcinoma 10 24561 -NCIT:C153390 Metastatic Cervical Adenosquamous Carcinoma 9 24562 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 10 24563 -NCIT:C156294 Advanced Cervical Carcinoma 9 24564 -NCIT:C156304 Advanced Cervical Adenocarcinoma 10 24565 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 10 24566 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 10 24567 -NCIT:C156295 Locally Advanced Cervical Carcinoma 9 24568 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 10 24569 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 11 24570 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 10 24571 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 11 24572 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 10 24573 -NCIT:C162225 Cervical Cancer by FIGO Stage 2018 8 24574 -NCIT:C162226 Stage I Cervical Cancer FIGO 2018 9 24575 -NCIT:C162227 Stage IA Cervical Cancer FIGO 2018 10 24576 -NCIT:C162228 Stage IA1 Cervical Cancer FIGO 2018 11 24577 -NCIT:C162229 Stage IA2 Cervical Cancer FIGO 2018 11 24578 -NCIT:C162230 Stage IB Cervical Cancer FIGO 2018 10 24579 -NCIT:C162231 Stage IB1 Cervical Cancer FIGO 2018 11 24580 -NCIT:C162232 Stage IB2 Cervical Cancer FIGO 2018 11 24581 -NCIT:C162233 Stage IB3 Cervical Cancer FIGO 2018 11 24582 -NCIT:C162234 Stage II Cervical Cancer FIGO 2018 9 24583 -NCIT:C162235 Stage IIA Cervical Cancer FIGO 2018 10 24584 -NCIT:C162236 Stage IIA1 Cervical Cancer FIGO 2018 11 24585 -NCIT:C162237 Stage IIA2 Cervical Cancer FIGO 2018 11 24586 -NCIT:C162238 Stage IIB Cervical Cancer FIGO 2018 10 24587 -NCIT:C162239 Stage III Cervical Cancer FIGO 2018 9 24588 -NCIT:C162240 Stage IIIA Cervical Cancer FIGO 2018 10 24589 -NCIT:C162241 Stage IIIB Cervical Cancer FIGO 2018 10 24590 -NCIT:C162242 Stage IIIC Cervical Cancer FIGO 2018 10 24591 -NCIT:C162243 Stage IIIC1 Cervical Cancer FIGO 2018 11 24592 -NCIT:C162244 Stage IIIC2 Cervical Cancer FIGO 2018 11 24593 -NCIT:C162245 Stage IV Cervical Cancer FIGO 2018 9 24594 -NCIT:C162246 Stage IVA Cervical Cancer FIGO 2018 10 24595 -NCIT:C162247 Stage IVB Cervical Cancer FIGO 2018 10 24596 -NCIT:C170513 Refractory Cervical Carcinoma 8 24597 -NCIT:C181034 Refractory Cervical Squamous Cell Carcinoma 9 24598 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 10 24599 -NCIT:C181036 Refractory Cervical Adenocarcinoma 9 24600 -NCIT:C174024 Unresectable Cervical Carcinoma 8 24601 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 9 24602 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 24603 -NCIT:C174025 Unresectable Cervical Squamous Cell Carcinoma 9 24604 -NCIT:C174027 Unresectable Cervical Adenosquamous Carcinoma 9 24605 -NCIT:C174029 Unresectable Cervical Adenocarcinoma 9 24606 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 24607 -NCIT:C180878 Cervical Mucoepidermoid Carcinoma 8 24608 -NCIT:C181562 Cervical Cancer by AJCC v9 Stage 8 24609 -NCIT:C181564 Stage I Cervical Cancer AJCC v9 9 24610 -NCIT:C181565 Stage IA Cervical Cancer AJCC v9 10 24611 -NCIT:C181567 Stage IA1 Cervical Cancer AJCC v9 11 24612 -NCIT:C181568 Stage IA2 Cervical Cancer AJCC v9 11 24613 -NCIT:C181570 Stage IB Cervical Cancer AJCC v9 10 24614 -NCIT:C181571 Stage IB1 Cervical Cancer AJCC v9 11 24615 -NCIT:C181576 Stage IB2 Cervical Cancer AJCC v9 11 24616 -NCIT:C181579 Stage IB3 Cervical Cancer AJCC v9 11 24617 -NCIT:C181583 Stage II Cervical Cancer AJCC v9 9 24618 -NCIT:C181584 Stage IIA Cervical Cancer AJCC v9 10 24619 -NCIT:C181586 Stage IIA1 Cervical Cancer AJCC v9 11 24620 -NCIT:C181588 Stage IIA2 Cervical Cancer AJCC v9 11 24621 -NCIT:C181591 Stage IIB Cervical Cancer AJCC v9 10 24622 -NCIT:C181592 Stage III Cervical Cancer AJCC v9 9 24623 -NCIT:C181594 Stage IIIA Cervical Cancer AJCC v9 10 24624 -NCIT:C181595 Stage IIIB Cervical Cancer AJCC v9 10 24625 -NCIT:C181596 Stage IIIC Cervical Cancer AJCC v9 10 24626 -NCIT:C181597 Stage IIIC1 Cervical Cancer AJCC v9 11 24627 -NCIT:C181598 Stage IIIC2 Cervical Cancer AJCC v9 11 24628 -NCIT:C181599 Stage IV Cervical Cancer AJCC v9 9 24629 -NCIT:C181601 Stage IVA Cervical Cancer AJCC v9 10 24630 -NCIT:C181603 Stage IVB Cervical Cancer AJCC v9 10 24631 -NCIT:C186619 Cervical Cancer by FIGO Stage 2009 8 24632 -NCIT:C186620 Stage I Cervical Cancer FIGO 2009 9 24633 -NCIT:C186621 Stage IA Cervical Cancer FIGO 2009 10 24634 -NCIT:C186622 Stage IA1 Cervical Cancer FIGO 2009 11 24635 -NCIT:C186623 Stage IA2 Cervical Cancer FIGO 2009 11 24636 -NCIT:C186624 Stage IB Cervical Cancer FIGO 2009 10 24637 -NCIT:C186625 Stage IB1 Cervical Cancer FIGO 2009 11 24638 -NCIT:C186626 Stage IB2 Cervical Cancer FIGO 2009 11 24639 -NCIT:C186627 Stage II Cervical Cancer FIGO 2009 9 24640 -NCIT:C186628 Stage IIA Cervical Cancer FIGO 2009 10 24641 -NCIT:C186629 Stage IIA1 Cervical Cancer FIGO 2009 11 24642 -NCIT:C186630 Stage IIA2 Cervical Cancer FIGO 2009 11 24643 -NCIT:C186631 Stage IIB Cervical Cancer FIGO 2009 10 24644 -NCIT:C186632 Stage III Cervical Cancer FIGO 2009 9 24645 -NCIT:C186633 Stage IIIA Cervical Cancer FIGO 2009 10 24646 -NCIT:C186634 Stage IIIB Cervical Cancer FIGO 2009 10 24647 -NCIT:C186635 Stage IV Cervical Cancer FIGO 2009 9 24648 -NCIT:C186636 Stage IVA Cervical Cancer FIGO 2009 10 24649 -NCIT:C186637 Stage IVB Cervical Cancer FIGO 2009 10 24650 -NCIT:C27675 Human Papillomavirus-Related Cervical Carcinoma 8 24651 -NCIT:C27676 Human Papillomavirus-Related Cervical Squamous Cell Carcinoma 9 24652 -NCIT:C40192 Cervical Papillary Squamous Cell Carcinoma 10 24653 -NCIT:C40191 Cervical Warty Carcinoma 11 24654 -NCIT:C40194 Cervical Squamotransitional Carcinoma 11 24655 -NCIT:C27677 Human Papillomavirus-Related Cervical Adenocarcinoma 9 24656 -NCIT:C127907 Endocervical Adenocarcinoma, Usual-Type 10 24657 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 11 24658 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 11 24659 -NCIT:C40208 Cervical Villoglandular Adenocarcinoma 11 24660 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 10 24661 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 10 24662 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 10 24663 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 10 24664 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 10 24665 -NCIT:C40213 Cervical Adenoid Basal Carcinoma 8 24666 -NCIT:C4028 Cervical Squamous Cell Carcinoma 8 24667 -NCIT:C136649 Recurrent Cervical Squamous Cell Carcinoma 9 24668 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 9 24669 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 10 24670 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 10 24671 -NCIT:C174025 Unresectable Cervical Squamous Cell Carcinoma 9 24672 -NCIT:C180839 Cervical Squamous Cell Carcinoma, Not Otherwise Specified 9 24673 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 10 24674 -NCIT:C180841 Human Papillomavirus-Independent Cervical Squamous Cell Carcinoma 9 24675 -NCIT:C181034 Refractory Cervical Squamous Cell Carcinoma 9 24676 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 10 24677 -NCIT:C27676 Human Papillomavirus-Related Cervical Squamous Cell Carcinoma 9 24678 -NCIT:C40192 Cervical Papillary Squamous Cell Carcinoma 10 24679 -NCIT:C40191 Cervical Warty Carcinoma 11 24680 -NCIT:C40194 Cervical Squamotransitional Carcinoma 11 24681 -NCIT:C36094 Early Invasive Cervical Squamous Cell Carcinoma 9 24682 -NCIT:C40187 Cervical Keratinizing Squamous Cell Carcinoma 9 24683 -NCIT:C40188 Cervical Non-Keratinizing Squamous Cell Carcinoma 9 24684 -NCIT:C40189 Cervical Basaloid Carcinoma 9 24685 -NCIT:C40190 Cervical Verrucous Carcinoma 9 24686 -NCIT:C40193 Cervical Lymphoepithelioma-Like Carcinoma 9 24687 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 9 24688 -NCIT:C4029 Cervical Adenocarcinoma 8 24689 -NCIT:C127915 Cervical Adenocarcinoma Admixed with Neuroendocrine Carcinoma 9 24690 -NCIT:C136651 Recurrent Cervical Adenocarcinoma 9 24691 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 10 24692 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 9 24693 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 10 24694 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 11 24695 -NCIT:C156304 Advanced Cervical Adenocarcinoma 10 24696 -NCIT:C174029 Unresectable Cervical Adenocarcinoma 9 24697 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 24698 -NCIT:C180848 Human Papillomavirus-Independent Cervical Adenocarcinoma 9 24699 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 10 24700 -NCIT:C40201 Cervical Serous Adenocarcinoma 10 24701 -NCIT:C40206 Human Papillomavirus-Independent Cervical Adenocarcinoma, Gastric-Type 10 24702 -NCIT:C40254 Cervical Mesonephric Adenocarcinoma 10 24703 -NCIT:C6343 Cervical Endometrioid Adenocarcinoma 10 24704 -NCIT:C6344 Human Papillomavirus-Independent Cervical Adenocarcinoma, Clear Cell-Type 10 24705 -NCIT:C180870 Cervical Adenocarcinoma, Not Otherwise Specified 9 24706 -NCIT:C181036 Refractory Cervical Adenocarcinoma 9 24707 -NCIT:C27677 Human Papillomavirus-Related Cervical Adenocarcinoma 9 24708 -NCIT:C127907 Endocervical Adenocarcinoma, Usual-Type 10 24709 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 11 24710 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 11 24711 -NCIT:C40208 Cervical Villoglandular Adenocarcinoma 11 24712 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 10 24713 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 10 24714 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 10 24715 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 10 24716 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 10 24717 -NCIT:C36095 Cervical Mucinous Adenocarcinoma 9 24718 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 10 24719 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 10 24720 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 10 24721 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 10 24722 -NCIT:C40206 Human Papillomavirus-Independent Cervical Adenocarcinoma, Gastric-Type 10 24723 -NCIT:C36096 Early Invasive Cervical Adenocarcinoma 9 24724 -NCIT:C4520 Cervical Adenocarcinoma In Situ 9 24725 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 10 24726 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 10 24727 -NCIT:C4519 Cervical Adenosquamous Carcinoma 8 24728 -NCIT:C136650 Recurrent Cervical Adenosquamous Carcinoma 9 24729 -NCIT:C153390 Metastatic Cervical Adenosquamous Carcinoma 9 24730 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 10 24731 -NCIT:C174027 Unresectable Cervical Adenosquamous Carcinoma 9 24732 -NCIT:C40212 Cervical Poorly Differentiated Adenosquamous Carcinoma 9 24733 -NCIT:C6345 Cervical Undifferentiated Carcinoma 8 24734 -NCIT:C6346 Cervical Adenoid Cystic Carcinoma 8 24735 -NCIT:C7432 AIDS-Related Cervical Carcinoma 8 24736 -NCIT:C7453 Exocervical Carcinoma 8 24737 -NCIT:C7804 Recurrent Cervical Carcinoma 8 24738 -NCIT:C136649 Recurrent Cervical Squamous Cell Carcinoma 9 24739 -NCIT:C136650 Recurrent Cervical Adenosquamous Carcinoma 9 24740 -NCIT:C136651 Recurrent Cervical Adenocarcinoma 9 24741 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 10 24742 -NCIT:C8577 Invasive Cervical Carcinoma 8 24743 -NCIT:C90493 Cervical Cancer by AJCC v6 Stage 8 24744 -NCIT:C4000 Stage 0 Cervical Cancer AJCC v6 9 24745 -NCIT:C7803 Stage II Cervical Cancer AJCC v6 9 24746 -NCIT:C6319 Stage IIA Cervical Cancer AJCC v6 10 24747 -NCIT:C6320 Stage IIB Cervical Cancer AJCC v6 and v7 10 24748 -NCIT:C9204 Stage I Cervical Cancer AJCC v6 and v7 9 24749 -NCIT:C6313 Stage IA Cervical Cancer AJCC v6 and v7 10 24750 -NCIT:C6314 Stage IA1 Cervical Cancer AJCC v6 and v7 11 24751 -NCIT:C6315 Stage IA2 Cervical Cancer AJCC v6 and v7 11 24752 -NCIT:C6316 Stage IB Cervical Cancer AJCC v6 and v7 10 24753 -NCIT:C6317 Stage IB1 Cervical Cancer AJCC v6 and v7 11 24754 -NCIT:C6318 Stage IB2 Cervical Cancer AJCC v6 and v7 11 24755 -NCIT:C9205 Stage III Cervical Cancer AJCC v6 and v7 9 24756 -NCIT:C6321 Stage IIIB Cervical Cancer AJCC v6 and v7 10 24757 -NCIT:C6322 Stage IIIA Cervical Cancer AJCC v6 and v7 10 24758 -NCIT:C9206 Stage IV Cervical Cancer AJCC v6 and v7 9 24759 -NCIT:C6323 Stage IVA Cervical Cancer AJCC v6 and v7 10 24760 -NCIT:C6324 Stage IVB Cervical Cancer AJCC v6 and v7 10 24761 -NCIT:C91208 Cervical Cancer by AJCC v7 Stage 8 24762 -NCIT:C89550 Stage 0 Cervical Cancer AJCC v7 9 24763 -NCIT:C4520 Cervical Adenocarcinoma In Situ 10 24764 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 11 24765 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 11 24766 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 10 24767 -NCIT:C89551 Stage II Cervical Cancer AJCC v7 9 24768 -NCIT:C6320 Stage IIB Cervical Cancer AJCC v6 and v7 10 24769 -NCIT:C89552 Stage IIA Cervical Cancer AJCC v7 10 24770 -NCIT:C95172 Stage IIA1 Cervical Cancer AJCC v7 11 24771 -NCIT:C95173 Stage IIA2 Cervical Cancer AJCC v7 11 24772 -NCIT:C9204 Stage I Cervical Cancer AJCC v6 and v7 9 24773 -NCIT:C6313 Stage IA Cervical Cancer AJCC v6 and v7 10 24774 -NCIT:C6314 Stage IA1 Cervical Cancer AJCC v6 and v7 11 24775 -NCIT:C6315 Stage IA2 Cervical Cancer AJCC v6 and v7 11 24776 -NCIT:C6316 Stage IB Cervical Cancer AJCC v6 and v7 10 24777 -NCIT:C6317 Stage IB1 Cervical Cancer AJCC v6 and v7 11 24778 -NCIT:C6318 Stage IB2 Cervical Cancer AJCC v6 and v7 11 24779 -NCIT:C9205 Stage III Cervical Cancer AJCC v6 and v7 9 24780 -NCIT:C6321 Stage IIIB Cervical Cancer AJCC v6 and v7 10 24781 -NCIT:C6322 Stage IIIA Cervical Cancer AJCC v6 and v7 10 24782 -NCIT:C9206 Stage IV Cervical Cancer AJCC v6 and v7 9 24783 -NCIT:C6323 Stage IVA Cervical Cancer AJCC v6 and v7 10 24784 -NCIT:C6324 Stage IVB Cervical Cancer AJCC v6 and v7 10 24785 -NCIT:C3552 Malignant Uterine Neoplasm 6 24786 -NCIT:C3556 Malignant Uterine Corpus Neoplasm 7 24787 -NCIT:C127072 Uterine Corpus Malignant PEComa 8 24788 -NCIT:C188074 Extramedullary Disease in Plasma Cell Myeloma Involving the Uterine Corpus 8 24789 -NCIT:C27246 Uterine Corpus Choriocarcinoma 8 24790 -NCIT:C27815 Malignant Endometrial Neoplasm 8 24791 -NCIT:C181910 Endometrial Mucosa-Associated Lymphoid Tissue Lymphoma 9 24792 -NCIT:C40219 Uterine Corpus Endometrial Stromal Sarcoma 9 24793 -NCIT:C126998 Uterine Corpus High Grade Endometrial Stromal Sarcoma 10 24794 -NCIT:C139882 Uterine Corpus Endometrial Stromal Sarcoma by AJCC v8 Stage 10 24795 -NCIT:C139883 Stage I Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 24796 -NCIT:C139884 Stage IA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 24797 -NCIT:C139885 Stage IB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 24798 -NCIT:C139886 Stage II Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 24799 -NCIT:C139887 Stage III Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 24800 -NCIT:C139888 Stage IIIA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 24801 -NCIT:C139889 Stage IIIB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 24802 -NCIT:C139890 Stage IIIC Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 24803 -NCIT:C139891 Stage IV Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 24804 -NCIT:C139892 Stage IVA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 24805 -NCIT:C139893 Stage IVB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 24806 -NCIT:C40223 Uterine Corpus Low Grade Endometrial Stromal Sarcoma 10 24807 -NCIT:C7558 Endometrial Carcinoma 9 24808 -NCIT:C114656 Endometrial Adenosquamous Carcinoma 10 24809 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 11 24810 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 11 24811 -NCIT:C126769 Endometrial Dedifferentiated Carcinoma 10 24812 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 11 24813 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 11 24814 -NCIT:C150093 Refractory Endometrial Carcinoma 10 24815 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 11 24816 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 11 24817 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 11 24818 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 11 24819 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 12 24820 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 12 24821 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 12 24822 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 12 24823 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 12 24824 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 11 24825 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 11 24826 -NCIT:C150094 Recurrent Endometrial Carcinoma 10 24827 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 11 24828 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 11 24829 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 12 24830 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 12 24831 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 12 24832 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 12 24833 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 12 24834 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 11 24835 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 11 24836 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 11 24837 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 11 24838 -NCIT:C190200 Locally Recurrent Endometrial Carcinoma 11 24839 -NCIT:C156068 Metastatic Endometrial Carcinoma 10 24840 -NCIT:C159676 Advanced Endometrial Carcinoma 11 24841 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 12 24842 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 24843 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 24844 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 12 24845 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 11 24846 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 12 24847 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 24848 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 12 24849 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 11 24850 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 11 24851 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 12 24852 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 11 24853 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 12 24854 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 24855 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 12 24856 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 24857 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 24858 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 12 24859 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 24860 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 24861 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 12 24862 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 24863 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 12 24864 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 12 24865 -NCIT:C171033 Endometrial Neuroendocrine Carcinoma 10 24866 -NCIT:C126772 Endometrial Large Cell Neuroendocrine Carcinoma 11 24867 -NCIT:C40155 Endometrial Small Cell Neuroendocrine Carcinoma 11 24868 -NCIT:C171610 Unresectable Endometrial Carcinoma 10 24869 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 11 24870 -NCIT:C180335 Microsatellite Stable Endometrial Carcinoma 10 24871 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 11 24872 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 12 24873 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 11 24874 -NCIT:C190680 High Grade Endometrial Carcinoma 10 24875 -NCIT:C27838 Endometrial Serous Adenocarcinoma 11 24876 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 12 24877 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 12 24878 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 12 24879 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 24880 -NCIT:C187374 Platinum-Sensitive Endometrial Serous Adenocarcinoma 12 24881 -NCIT:C40148 High Grade Endometrial Endometrioid Adenocarcinoma 11 24882 -NCIT:C40156 Endometrial Undifferentiated Carcinoma 11 24883 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 12 24884 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 12 24885 -NCIT:C8028 Endometrial Clear Cell Adenocarcinoma 11 24886 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 12 24887 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 12 24888 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 12 24889 -NCIT:C40154 Endometrial Transitional Cell Carcinoma 10 24890 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 11 24891 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 11 24892 -NCIT:C7359 Endometrial Adenocarcinoma 10 24893 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 11 24894 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 12 24895 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 12 24896 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 12 24897 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 12 24898 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 12 24899 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 11 24900 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 12 24901 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 12 24902 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 12 24903 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 12 24904 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 12 24905 -NCIT:C179322 Endometrial Mesonephric-Like Adenocarcinoma 11 24906 -NCIT:C180536 Endometrial Mucinous Adenocarcinoma, Intestinal-Type 11 24907 -NCIT:C180537 Endometrial Mucinous Adenocarcinoma, Gastric-Type 11 24908 -NCIT:C39749 Type II Endometrial Adenocarcinoma 11 24909 -NCIT:C27838 Endometrial Serous Adenocarcinoma 12 24910 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 13 24911 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 13 24912 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 13 24913 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 14 24914 -NCIT:C187374 Platinum-Sensitive Endometrial Serous Adenocarcinoma 13 24915 -NCIT:C40152 Serous Endometrial Intraepithelial Carcinoma 12 24916 -NCIT:C8028 Endometrial Clear Cell Adenocarcinoma 12 24917 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 13 24918 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 13 24919 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 13 24920 -NCIT:C40145 Type I Endometrial Adenocarcinoma 11 24921 -NCIT:C40144 Endometrial Mucinous Adenocarcinoma 12 24922 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 13 24923 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 13 24924 -NCIT:C40149 FIGO Grade 1 Endometrial Mucinous Adenocarcinoma 13 24925 -NCIT:C40150 FIGO Grade 2 Endometrial Mucinous Adenocarcinoma 13 24926 -NCIT:C40151 FIGO Grade 3 Endometrial Mucinous Adenocarcinoma 13 24927 -NCIT:C6287 Endometrial Endometrioid Adenocarcinoma 12 24928 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 13 24929 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 13 24930 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 13 24931 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 14 24932 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 14 24933 -NCIT:C180510 Low Grade Endometrial Endometrioid Adenocarcinoma 13 24934 -NCIT:C40146 FIGO Grade 1 Endometrial Endometrioid Adenocarcinoma 14 24935 -NCIT:C40147 FIGO Grade 2 Endometrial Endometrioid Adenocarcinoma 14 24936 -NCIT:C180512 POLE-Ultramutated Endometrial Endometrioid Adenocarcinoma 13 24937 -NCIT:C180514 Mismatch Repair-Deficient Endometrial Endometrioid Adenocarcinoma 13 24938 -NCIT:C180515 p53-Mutant Endometrial Endometrioid Adenocarcinoma 13 24939 -NCIT:C180516 No Specific Molecular Profile Endometrial Endometrioid Adenocarcinoma 13 24940 -NCIT:C27839 Endometrial Endometrioid Adenocarcinoma, Secretory Variant 13 24941 -NCIT:C27843 Endometrial Endometrioid Adenocarcinoma with Clear Cell Change 13 24942 -NCIT:C27844 Endometrial Endometrioid Adenocarcinoma with a Poorly Differentiated Carcinomatous Component 13 24943 -NCIT:C27845 Endometrial Endometrioid Adenocarcinoma with an Undifferentiated Carcinomatous Component 13 24944 -NCIT:C27846 Villoglandular Endometrial Endometrioid Adenocarcinoma 13 24945 -NCIT:C27848 Endometrial Endometrioid Adenocarcinoma, Ciliated Variant 13 24946 -NCIT:C27849 Oxyphilic Endometrial Endometrioid Adenocarcinoma 13 24947 -NCIT:C27850 Endometrial Endometrioid Adenocarcinoma with Spindled Epithelial Cells 13 24948 -NCIT:C40148 High Grade Endometrial Endometrioid Adenocarcinoma 13 24949 -NCIT:C6290 Endometrial Endometrioid Adenocarcinoma, Variant with Squamous Differentiation 13 24950 -NCIT:C40153 Endometrial Mixed Cell Adenocarcinoma 11 24951 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 12 24952 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 12 24953 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 12 24954 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 11 24955 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 12 24956 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 24957 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 12 24958 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 24959 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 24960 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 12 24961 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 24962 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 24963 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 12 24964 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 24965 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 12 24966 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 12 24967 -NCIT:C8719 Endometrial Squamous Cell Carcinoma 10 24968 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 11 24969 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 11 24970 -NCIT:C61574 Uterine Corpus Cancer 8 24971 -NCIT:C139801 Uterine Corpus Cancer by AJCC v8 Stage 9 24972 -NCIT:C139802 Stage I Uterine Corpus Cancer AJCC v8 10 24973 -NCIT:C139803 Stage IA Uterine Corpus Cancer AJCC v8 11 24974 -NCIT:C139804 Stage IB Uterine Corpus Cancer AJCC v8 11 24975 -NCIT:C139805 Stage II Uterine Corpus Cancer AJCC v8 10 24976 -NCIT:C139806 Stage III Uterine Corpus Cancer AJCC v8 10 24977 -NCIT:C139807 Stage IIIA Uterine Corpus Cancer AJCC v8 11 24978 -NCIT:C139808 Stage IIIB Uterine Corpus Cancer AJCC v8 11 24979 -NCIT:C139809 Stage IIIC Uterine Corpus Cancer AJCC v8 11 24980 -NCIT:C139810 Stage IIIC1 Uterine Corpus Cancer AJCC v8 12 24981 -NCIT:C139811 Stage IIIC2 Uterine Corpus Cancer AJCC v8 12 24982 -NCIT:C139812 Stage IV Uterine Corpus Cancer AJCC v8 10 24983 -NCIT:C139813 Stage IVA Uterine Corpus Cancer AJCC v8 11 24984 -NCIT:C139814 Stage IVB Uterine Corpus Cancer AJCC v8 11 24985 -NCIT:C150092 Refractory Uterine Corpus Cancer 9 24986 -NCIT:C150093 Refractory Endometrial Carcinoma 10 24987 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 11 24988 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 11 24989 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 11 24990 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 11 24991 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 12 24992 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 12 24993 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 12 24994 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 12 24995 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 12 24996 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 11 24997 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 11 24998 -NCIT:C158381 Refractory Uterine Corpus Carcinosarcoma 10 24999 -NCIT:C172450 Advanced Uterine Corpus Cancer 9 25000 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 10 25001 -NCIT:C159676 Advanced Endometrial Carcinoma 10 25002 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 11 25003 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 12 25004 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 12 25005 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 11 25006 -NCIT:C7558 Endometrial Carcinoma 9 25007 -NCIT:C114656 Endometrial Adenosquamous Carcinoma 10 25008 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 11 25009 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 11 25010 -NCIT:C126769 Endometrial Dedifferentiated Carcinoma 10 25011 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 11 25012 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 11 25013 -NCIT:C150093 Refractory Endometrial Carcinoma 10 25014 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 11 25015 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 11 25016 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 11 25017 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 11 25018 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 12 25019 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 12 25020 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 12 25021 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 12 25022 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 12 25023 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 11 25024 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 11 25025 -NCIT:C150094 Recurrent Endometrial Carcinoma 10 25026 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 11 25027 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 11 25028 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 12 25029 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 12 25030 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 12 25031 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 12 25032 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 12 25033 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 11 25034 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 11 25035 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 11 25036 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 11 25037 -NCIT:C190200 Locally Recurrent Endometrial Carcinoma 11 25038 -NCIT:C156068 Metastatic Endometrial Carcinoma 10 25039 -NCIT:C159676 Advanced Endometrial Carcinoma 11 25040 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 12 25041 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 25042 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 25043 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 12 25044 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 11 25045 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 12 25046 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 25047 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 12 25048 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 11 25049 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 11 25050 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 12 25051 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 11 25052 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 12 25053 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 25054 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 12 25055 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 25056 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 25057 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 12 25058 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 25059 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 25060 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 12 25061 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 25062 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 12 25063 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 12 25064 -NCIT:C171033 Endometrial Neuroendocrine Carcinoma 10 25065 -NCIT:C126772 Endometrial Large Cell Neuroendocrine Carcinoma 11 25066 -NCIT:C40155 Endometrial Small Cell Neuroendocrine Carcinoma 11 25067 -NCIT:C171610 Unresectable Endometrial Carcinoma 10 25068 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 11 25069 -NCIT:C180335 Microsatellite Stable Endometrial Carcinoma 10 25070 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 11 25071 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 12 25072 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 11 25073 -NCIT:C190680 High Grade Endometrial Carcinoma 10 25074 -NCIT:C27838 Endometrial Serous Adenocarcinoma 11 25075 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 12 25076 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 12 25077 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 12 25078 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 25079 -NCIT:C187374 Platinum-Sensitive Endometrial Serous Adenocarcinoma 12 25080 -NCIT:C40148 High Grade Endometrial Endometrioid Adenocarcinoma 11 25081 -NCIT:C40156 Endometrial Undifferentiated Carcinoma 11 25082 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 12 25083 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 12 25084 -NCIT:C8028 Endometrial Clear Cell Adenocarcinoma 11 25085 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 12 25086 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 12 25087 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 12 25088 -NCIT:C40154 Endometrial Transitional Cell Carcinoma 10 25089 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 11 25090 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 11 25091 -NCIT:C7359 Endometrial Adenocarcinoma 10 25092 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 11 25093 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 12 25094 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 12 25095 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 12 25096 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 12 25097 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 12 25098 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 11 25099 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 12 25100 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 12 25101 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 12 25102 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 12 25103 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 12 25104 -NCIT:C179322 Endometrial Mesonephric-Like Adenocarcinoma 11 25105 -NCIT:C180536 Endometrial Mucinous Adenocarcinoma, Intestinal-Type 11 25106 -NCIT:C180537 Endometrial Mucinous Adenocarcinoma, Gastric-Type 11 25107 -NCIT:C39749 Type II Endometrial Adenocarcinoma 11 25108 -NCIT:C27838 Endometrial Serous Adenocarcinoma 12 25109 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 13 25110 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 13 25111 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 13 25112 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 14 25113 -NCIT:C187374 Platinum-Sensitive Endometrial Serous Adenocarcinoma 13 25114 -NCIT:C40152 Serous Endometrial Intraepithelial Carcinoma 12 25115 -NCIT:C8028 Endometrial Clear Cell Adenocarcinoma 12 25116 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 13 25117 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 13 25118 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 13 25119 -NCIT:C40145 Type I Endometrial Adenocarcinoma 11 25120 -NCIT:C40144 Endometrial Mucinous Adenocarcinoma 12 25121 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 13 25122 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 13 25123 -NCIT:C40149 FIGO Grade 1 Endometrial Mucinous Adenocarcinoma 13 25124 -NCIT:C40150 FIGO Grade 2 Endometrial Mucinous Adenocarcinoma 13 25125 -NCIT:C40151 FIGO Grade 3 Endometrial Mucinous Adenocarcinoma 13 25126 -NCIT:C6287 Endometrial Endometrioid Adenocarcinoma 12 25127 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 13 25128 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 13 25129 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 13 25130 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 14 25131 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 14 25132 -NCIT:C180510 Low Grade Endometrial Endometrioid Adenocarcinoma 13 25133 -NCIT:C40146 FIGO Grade 1 Endometrial Endometrioid Adenocarcinoma 14 25134 -NCIT:C40147 FIGO Grade 2 Endometrial Endometrioid Adenocarcinoma 14 25135 -NCIT:C180512 POLE-Ultramutated Endometrial Endometrioid Adenocarcinoma 13 25136 -NCIT:C180514 Mismatch Repair-Deficient Endometrial Endometrioid Adenocarcinoma 13 25137 -NCIT:C180515 p53-Mutant Endometrial Endometrioid Adenocarcinoma 13 25138 -NCIT:C180516 No Specific Molecular Profile Endometrial Endometrioid Adenocarcinoma 13 25139 -NCIT:C27839 Endometrial Endometrioid Adenocarcinoma, Secretory Variant 13 25140 -NCIT:C27843 Endometrial Endometrioid Adenocarcinoma with Clear Cell Change 13 25141 -NCIT:C27844 Endometrial Endometrioid Adenocarcinoma with a Poorly Differentiated Carcinomatous Component 13 25142 -NCIT:C27845 Endometrial Endometrioid Adenocarcinoma with an Undifferentiated Carcinomatous Component 13 25143 -NCIT:C27846 Villoglandular Endometrial Endometrioid Adenocarcinoma 13 25144 -NCIT:C27848 Endometrial Endometrioid Adenocarcinoma, Ciliated Variant 13 25145 -NCIT:C27849 Oxyphilic Endometrial Endometrioid Adenocarcinoma 13 25146 -NCIT:C27850 Endometrial Endometrioid Adenocarcinoma with Spindled Epithelial Cells 13 25147 -NCIT:C40148 High Grade Endometrial Endometrioid Adenocarcinoma 13 25148 -NCIT:C6290 Endometrial Endometrioid Adenocarcinoma, Variant with Squamous Differentiation 13 25149 -NCIT:C40153 Endometrial Mixed Cell Adenocarcinoma 11 25150 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 12 25151 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 12 25152 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 12 25153 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 11 25154 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 12 25155 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 25156 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 12 25157 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 25158 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 25159 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 12 25160 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 25161 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 25162 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 12 25163 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 25164 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 12 25165 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 12 25166 -NCIT:C8719 Endometrial Squamous Cell Carcinoma 10 25167 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 11 25168 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 11 25169 -NCIT:C90494 Uterine Corpus Cancer by AJCC v6 Stage 9 25170 -NCIT:C4006 Stage IV Uterine Corpus Cancer AJCC v6 10 25171 -NCIT:C9071 Stage 0 Uterine Corpus Cancer AJCC v6 10 25172 -NCIT:C9207 Stage I Uterine Corpus Cancer AJCC v6 10 25173 -NCIT:C6303 Stage IC Uterine Corpus Cancer AJCC v6 11 25174 -NCIT:C9208 Stage II Uterine Corpus Cancer AJCC v6 10 25175 -NCIT:C6304 Stage IIA Uterine Corpus Cancer AJCC v6 11 25176 -NCIT:C6305 Stage IIB Uterine Corpus Cancer AJCC v6 11 25177 -NCIT:C9209 Stage III Uterine Corpus Cancer AJCC v6 10 25178 -NCIT:C9072 Recurrent Uterine Corpus Cancer 9 25179 -NCIT:C150094 Recurrent Endometrial Carcinoma 10 25180 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 11 25181 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 11 25182 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 12 25183 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 12 25184 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 12 25185 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 12 25186 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 12 25187 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 11 25188 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 11 25189 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 11 25190 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 11 25191 -NCIT:C190200 Locally Recurrent Endometrial Carcinoma 11 25192 -NCIT:C155818 Recurrent Uterine Corpus Carcinosarcoma 10 25193 -NCIT:C91218 Uterine Corpus Cancer by AJCC v7 Stage 9 25194 -NCIT:C89632 Stage 0 Uterine Corpus Cancer AJCC v7 10 25195 -NCIT:C89633 Stage I Uterine Corpus Cancer AJCC v7 10 25196 -NCIT:C6301 Stage IA Uterine Corpus Cancer AJCC v7 11 25197 -NCIT:C6302 Stage IB Uterine Corpus Cancer AJCC v7 11 25198 -NCIT:C89634 Stage II Uterine Corpus Cancer AJCC v7 10 25199 -NCIT:C89635 Stage III Uterine Corpus Cancer AJCC v7 10 25200 -NCIT:C6306 Stage IIIA Uterine Corpus Cancer AJCC v7 11 25201 -NCIT:C6307 Stage IIIB Uterine Corpus Cancer AJCC v7 11 25202 -NCIT:C6308 Stage IIIC Uterine Corpus Cancer AJCC v7 11 25203 -NCIT:C95174 Stage IIIC1 Uterine Corpus Cancer AJCC v7 12 25204 -NCIT:C95176 Stage IIIC2 Uterine Corpus Cancer AJCC v7 12 25205 -NCIT:C89636 Stage IV Uterine Corpus Cancer AJCC v7 10 25206 -NCIT:C6309 Stage IVA Uterine Corpus Cancer AJCC v7 11 25207 -NCIT:C6310 Stage IVB Uterine Corpus Cancer AJCC v7 11 25208 -NCIT:C9180 Uterine Corpus Carcinosarcoma 9 25209 -NCIT:C155818 Recurrent Uterine Corpus Carcinosarcoma 10 25210 -NCIT:C158381 Refractory Uterine Corpus Carcinosarcoma 10 25211 -NCIT:C170931 Metastatic Uterine Corpus Carcinosarcoma 10 25212 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 11 25213 -NCIT:C6311 Malignant Uterine Corpus Mixed Epithelial and Mesenchymal Neoplasm 8 25214 -NCIT:C40182 Uterine Corpus Carcinofibroma 9 25215 -NCIT:C6336 Uterine Corpus Adenosarcoma 9 25216 -NCIT:C139894 Uterine Corpus Adenosarcoma by AJCC v8 Stage 10 25217 -NCIT:C139895 Stage I Uterine Corpus Adenosarcoma AJCC v8 11 25218 -NCIT:C139896 Stage IA Uterine Corpus Adenosarcoma AJCC v8 12 25219 -NCIT:C139897 Stage IB Uterine Corpus Adenosarcoma AJCC v8 12 25220 -NCIT:C139898 Stage IC Uterine Corpus Adenosarcoma AJCC v8 12 25221 -NCIT:C139899 Stage II Uterine Corpus Adenosarcoma AJCC v8 11 25222 -NCIT:C139900 Stage III Uterine Corpus Adenosarcoma AJCC v8 11 25223 -NCIT:C139901 Stage IIIA Uterine Corpus Adenosarcoma AJCC v8 12 25224 -NCIT:C139902 Stage IIIB Uterine Corpus Adenosarcoma AJCC v8 12 25225 -NCIT:C139903 Stage IIIC Uterine Corpus Adenosarcoma AJCC v8 12 25226 -NCIT:C139904 Stage IV Uterine Corpus Adenosarcoma AJCC v8 11 25227 -NCIT:C139905 Stage IVA Uterine Corpus Adenosarcoma AJCC v8 12 25228 -NCIT:C139906 Stage IVB Uterine Corpus Adenosarcoma AJCC v8 12 25229 -NCIT:C9180 Uterine Corpus Carcinosarcoma 9 25230 -NCIT:C155818 Recurrent Uterine Corpus Carcinosarcoma 10 25231 -NCIT:C158381 Refractory Uterine Corpus Carcinosarcoma 10 25232 -NCIT:C170931 Metastatic Uterine Corpus Carcinosarcoma 10 25233 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 11 25234 -NCIT:C6339 Uterine Corpus Sarcoma 8 25235 -NCIT:C127058 Uterine Corpus Rhabdomyosarcoma 9 25236 -NCIT:C136708 Uterine Corpus Sarcoma by AJCC v7 Stage 9 25237 -NCIT:C8258 Stage I Uterine Sarcoma AJCC v7 10 25238 -NCIT:C87132 Stage IA Uterine Sarcoma AJCC v7 11 25239 -NCIT:C87133 Stage IB Uterine Sarcoma AJCC v7 11 25240 -NCIT:C87134 Stage IC Uterine Sarcoma AJCC v7 11 25241 -NCIT:C8259 Stage II Uterine Sarcoma AJCC v7 10 25242 -NCIT:C115130 Stage IIA Uterine Sarcoma AJCC v7 11 25243 -NCIT:C115131 Stage IIB Uterine Sarcoma AJCC v7 11 25244 -NCIT:C8260 Stage III Uterine Sarcoma AJCC v7 10 25245 -NCIT:C87135 Stage IIIA Uterine Sarcoma AJCC v7 11 25246 -NCIT:C87137 Stage IIIB Uterine Sarcoma AJCC v7 11 25247 -NCIT:C87138 Stage IIIC Uterine Sarcoma AJCC v7 11 25248 -NCIT:C9179 Stage IV Uterine Sarcoma AJCC v7 10 25249 -NCIT:C87140 Stage IVA Uterine Sarcoma AJCC v7 11 25250 -NCIT:C87144 Stage IVB Uterine Sarcoma AJCC v7 11 25251 -NCIT:C139869 Uterine Corpus Sarcoma by AJCC v8 Stage 9 25252 -NCIT:C139870 Uterine Corpus Leiomyosarcoma by AJCC v8 Stage 10 25253 -NCIT:C139871 Stage I Uterine Corpus Leiomyosarcoma AJCC v8 11 25254 -NCIT:C139872 Stage IA Uterine Corpus Leiomyosarcoma AJCC v8 12 25255 -NCIT:C139873 Stage IB Uterine Corpus Leiomyosarcoma AJCC v8 12 25256 -NCIT:C139874 Stage II Uterine Corpus Leiomyosarcoma AJCC v8 11 25257 -NCIT:C139875 Stage III Uterine Corpus Leiomyosarcoma AJCC v8 11 25258 -NCIT:C139876 Stage IIIA Uterine Corpus Leiomyosarcoma AJCC v8 12 25259 -NCIT:C139877 Stage IIIB Uterine Corpus Leiomyosarcoma AJCC v8 12 25260 -NCIT:C139878 Stage IIIC Uterine Corpus Leiomyosarcoma AJCC v8 12 25261 -NCIT:C139879 Stage IV Uterine Corpus Leiomyosarcoma AJCC v8 11 25262 -NCIT:C139880 Stage IVA Uterine Corpus Leiomyosarcoma AJCC v8 12 25263 -NCIT:C139881 Stage IVB Uterine Corpus Leiomyosarcoma AJCC v8 12 25264 -NCIT:C139882 Uterine Corpus Endometrial Stromal Sarcoma by AJCC v8 Stage 10 25265 -NCIT:C139883 Stage I Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 25266 -NCIT:C139884 Stage IA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 25267 -NCIT:C139885 Stage IB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 25268 -NCIT:C139886 Stage II Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 25269 -NCIT:C139887 Stage III Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 25270 -NCIT:C139888 Stage IIIA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 25271 -NCIT:C139889 Stage IIIB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 25272 -NCIT:C139890 Stage IIIC Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 25273 -NCIT:C139891 Stage IV Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 25274 -NCIT:C139892 Stage IVA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 25275 -NCIT:C139893 Stage IVB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 25276 -NCIT:C139894 Uterine Corpus Adenosarcoma by AJCC v8 Stage 10 25277 -NCIT:C139895 Stage I Uterine Corpus Adenosarcoma AJCC v8 11 25278 -NCIT:C139896 Stage IA Uterine Corpus Adenosarcoma AJCC v8 12 25279 -NCIT:C139897 Stage IB Uterine Corpus Adenosarcoma AJCC v8 12 25280 -NCIT:C139898 Stage IC Uterine Corpus Adenosarcoma AJCC v8 12 25281 -NCIT:C139899 Stage II Uterine Corpus Adenosarcoma AJCC v8 11 25282 -NCIT:C139900 Stage III Uterine Corpus Adenosarcoma AJCC v8 11 25283 -NCIT:C139901 Stage IIIA Uterine Corpus Adenosarcoma AJCC v8 12 25284 -NCIT:C139902 Stage IIIB Uterine Corpus Adenosarcoma AJCC v8 12 25285 -NCIT:C139903 Stage IIIC Uterine Corpus Adenosarcoma AJCC v8 12 25286 -NCIT:C139904 Stage IV Uterine Corpus Adenosarcoma AJCC v8 11 25287 -NCIT:C139905 Stage IVA Uterine Corpus Adenosarcoma AJCC v8 12 25288 -NCIT:C139906 Stage IVB Uterine Corpus Adenosarcoma AJCC v8 12 25289 -NCIT:C180546 Uterine Corpus Central Primitive Neuroectodermal Tumor 9 25290 -NCIT:C190009 Metastatic Uterine Corpus Sarcoma 9 25291 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 10 25292 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 11 25293 -NCIT:C190016 Unresectable Uterine Corpus Sarcoma 9 25294 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 10 25295 -NCIT:C40219 Uterine Corpus Endometrial Stromal Sarcoma 9 25296 -NCIT:C126998 Uterine Corpus High Grade Endometrial Stromal Sarcoma 10 25297 -NCIT:C139882 Uterine Corpus Endometrial Stromal Sarcoma by AJCC v8 Stage 10 25298 -NCIT:C139883 Stage I Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 25299 -NCIT:C139884 Stage IA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 25300 -NCIT:C139885 Stage IB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 25301 -NCIT:C139886 Stage II Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 25302 -NCIT:C139887 Stage III Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 25303 -NCIT:C139888 Stage IIIA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 25304 -NCIT:C139889 Stage IIIB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 25305 -NCIT:C139890 Stage IIIC Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 25306 -NCIT:C139891 Stage IV Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 25307 -NCIT:C139892 Stage IVA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 25308 -NCIT:C139893 Stage IVB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 25309 -NCIT:C40223 Uterine Corpus Low Grade Endometrial Stromal Sarcoma 10 25310 -NCIT:C6336 Uterine Corpus Adenosarcoma 9 25311 -NCIT:C139894 Uterine Corpus Adenosarcoma by AJCC v8 Stage 10 25312 -NCIT:C139895 Stage I Uterine Corpus Adenosarcoma AJCC v8 11 25313 -NCIT:C139896 Stage IA Uterine Corpus Adenosarcoma AJCC v8 12 25314 -NCIT:C139897 Stage IB Uterine Corpus Adenosarcoma AJCC v8 12 25315 -NCIT:C139898 Stage IC Uterine Corpus Adenosarcoma AJCC v8 12 25316 -NCIT:C139899 Stage II Uterine Corpus Adenosarcoma AJCC v8 11 25317 -NCIT:C139900 Stage III Uterine Corpus Adenosarcoma AJCC v8 11 25318 -NCIT:C139901 Stage IIIA Uterine Corpus Adenosarcoma AJCC v8 12 25319 -NCIT:C139902 Stage IIIB Uterine Corpus Adenosarcoma AJCC v8 12 25320 -NCIT:C139903 Stage IIIC Uterine Corpus Adenosarcoma AJCC v8 12 25321 -NCIT:C139904 Stage IV Uterine Corpus Adenosarcoma AJCC v8 11 25322 -NCIT:C139905 Stage IVA Uterine Corpus Adenosarcoma AJCC v8 12 25323 -NCIT:C139906 Stage IVB Uterine Corpus Adenosarcoma AJCC v8 12 25324 -NCIT:C6340 Uterine Corpus Leiomyosarcoma 9 25325 -NCIT:C139870 Uterine Corpus Leiomyosarcoma by AJCC v8 Stage 10 25326 -NCIT:C139871 Stage I Uterine Corpus Leiomyosarcoma AJCC v8 11 25327 -NCIT:C139872 Stage IA Uterine Corpus Leiomyosarcoma AJCC v8 12 25328 -NCIT:C139873 Stage IB Uterine Corpus Leiomyosarcoma AJCC v8 12 25329 -NCIT:C139874 Stage II Uterine Corpus Leiomyosarcoma AJCC v8 11 25330 -NCIT:C139875 Stage III Uterine Corpus Leiomyosarcoma AJCC v8 11 25331 -NCIT:C139876 Stage IIIA Uterine Corpus Leiomyosarcoma AJCC v8 12 25332 -NCIT:C139877 Stage IIIB Uterine Corpus Leiomyosarcoma AJCC v8 12 25333 -NCIT:C139878 Stage IIIC Uterine Corpus Leiomyosarcoma AJCC v8 12 25334 -NCIT:C139879 Stage IV Uterine Corpus Leiomyosarcoma AJCC v8 11 25335 -NCIT:C139880 Stage IVA Uterine Corpus Leiomyosarcoma AJCC v8 12 25336 -NCIT:C139881 Stage IVB Uterine Corpus Leiomyosarcoma AJCC v8 12 25337 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 10 25338 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 10 25339 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 11 25340 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 10 25341 -NCIT:C40174 Uterine Corpus Epithelioid Leiomyosarcoma 10 25342 -NCIT:C40175 Uterine Corpus Myxoid Leiomyosarcoma 10 25343 -NCIT:C8261 Recurrent Uterine Corpus Sarcoma 9 25344 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 10 25345 -NCIT:C8972 Uterine Corpus Undifferentiated Sarcoma 9 25346 -NCIT:C42700 Uterine Carcinosarcoma 7 25347 -NCIT:C113238 Uterine Carcinosarcoma, Homologous Type 8 25348 -NCIT:C113239 Uterine Carcinosarcoma, Heterologous Type 8 25349 -NCIT:C36097 Cervical Carcinosarcoma 8 25350 -NCIT:C9180 Uterine Corpus Carcinosarcoma 8 25351 -NCIT:C155818 Recurrent Uterine Corpus Carcinosarcoma 9 25352 -NCIT:C158381 Refractory Uterine Corpus Carcinosarcoma 9 25353 -NCIT:C170931 Metastatic Uterine Corpus Carcinosarcoma 9 25354 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 10 25355 -NCIT:C5385 Uterine Angiosarcoma 7 25356 -NCIT:C128049 Cervical Angiosarcoma 8 25357 -NCIT:C9311 Malignant Cervical Neoplasm 7 25358 -NCIT:C128054 Malignant Cervical Soft Tissue Neoplasm 8 25359 -NCIT:C128047 Cervical Leiomyosarcoma 9 25360 -NCIT:C128048 Cervical Rhabdomyosarcoma 9 25361 -NCIT:C128049 Cervical Angiosarcoma 9 25362 -NCIT:C128050 Cervical Malignant Peripheral Nerve Sheath Tumor 9 25363 -NCIT:C40222 Cervical Low Grade Endometrioid Stromal Sarcoma 9 25364 -NCIT:C40224 Endocervical Undifferentiated Sarcoma 9 25365 -NCIT:C40225 Cervical Alveolar Soft Part Sarcoma 9 25366 -NCIT:C40229 Cervical Adenosarcoma 9 25367 -NCIT:C7433 AIDS-Related Cervical Kaposi Sarcoma 9 25368 -NCIT:C128055 Cervical Yolk Sac Tumor 8 25369 -NCIT:C3553 Malignant Endocervical Neoplasm 8 25370 -NCIT:C9269 Recurrent Malignant Endocervical Neoplasm 9 25371 -NCIT:C3554 Malignant Exocervical Neoplasm 8 25372 -NCIT:C7453 Exocervical Carcinoma 9 25373 -NCIT:C40228 Malignant Mixed Epithelial and Mesenchymal Neoplasm of the Cervix 8 25374 -NCIT:C36097 Cervical Carcinosarcoma 9 25375 -NCIT:C40229 Cervical Adenosarcoma 9 25376 -NCIT:C40236 Cervical Wilms Tumor 8 25377 -NCIT:C40239 Cervical Melanoma 8 25378 -NCIT:C5052 AIDS-Related Malignant Cervical Neoplasm 8 25379 -NCIT:C7432 AIDS-Related Cervical Carcinoma 9 25380 -NCIT:C7433 AIDS-Related Cervical Kaposi Sarcoma 9 25381 -NCIT:C7434 AIDS-Related Non-Hodgkin Lymphoma of the Cervix 9 25382 -NCIT:C6385 Metastatic Malignant Neoplasm in the Uterine Cervix 8 25383 -NCIT:C6334 Metastatic Carcinoma in the Uterine Cervix 9 25384 -NCIT:C9039 Cervical Carcinoma 8 25385 -NCIT:C128045 Cervical Neuroendocrine Carcinoma 9 25386 -NCIT:C40214 Cervical Large Cell Neuroendocrine Carcinoma 10 25387 -NCIT:C7982 Cervical Small Cell Neuroendocrine Carcinoma 10 25388 -NCIT:C139733 Cervical Cancer by AJCC v8 Stage 9 25389 -NCIT:C139734 Stage I Cervical Cancer AJCC v8 10 25390 -NCIT:C139735 Stage IA Cervical Cancer AJCC v8 11 25391 -NCIT:C139736 Stage IA1 Cervical Cancer AJCC v8 12 25392 -NCIT:C139737 Stage IA2 Cervical Cancer AJCC v8 12 25393 -NCIT:C139738 Stage IB Cervical Cancer AJCC v8 11 25394 -NCIT:C139739 Stage IB1 Cervical Cancer AJCC v8 12 25395 -NCIT:C139740 Stage IB2 Cervical Cancer AJCC v8 12 25396 -NCIT:C139743 Stage II Cervical Cancer AJCC v8 10 25397 -NCIT:C139744 Stage IIA Cervical Cancer AJCC v8 11 25398 -NCIT:C139745 Stage IIA1 Cervical Cancer AJCC v8 12 25399 -NCIT:C139746 Stage IIA2 Cervical Cancer AJCC v8 12 25400 -NCIT:C139748 Stage IIB Cervical Cancer AJCC v8 11 25401 -NCIT:C139749 Stage III Cervical Cancer AJCC v8 10 25402 -NCIT:C139750 Stage IIIA Cervical Cancer AJCC v8 11 25403 -NCIT:C139752 Stage IIIB Cervical Cancer AJCC v8 11 25404 -NCIT:C139753 Stage IV Cervical Cancer AJCC v8 10 25405 -NCIT:C139754 Stage IVA Cervical Cancer AJCC v8 11 25406 -NCIT:C139755 Stage IVB Cervical Cancer AJCC v8 11 25407 -NCIT:C153387 Metastatic Cervical Carcinoma 9 25408 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 10 25409 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 11 25410 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 11 25411 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 10 25412 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 11 25413 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 12 25414 -NCIT:C156304 Advanced Cervical Adenocarcinoma 11 25415 -NCIT:C153390 Metastatic Cervical Adenosquamous Carcinoma 10 25416 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 11 25417 -NCIT:C156294 Advanced Cervical Carcinoma 10 25418 -NCIT:C156304 Advanced Cervical Adenocarcinoma 11 25419 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 11 25420 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 11 25421 -NCIT:C156295 Locally Advanced Cervical Carcinoma 10 25422 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 11 25423 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 12 25424 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 11 25425 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 12 25426 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 11 25427 -NCIT:C162225 Cervical Cancer by FIGO Stage 2018 9 25428 -NCIT:C162226 Stage I Cervical Cancer FIGO 2018 10 25429 -NCIT:C162227 Stage IA Cervical Cancer FIGO 2018 11 25430 -NCIT:C162228 Stage IA1 Cervical Cancer FIGO 2018 12 25431 -NCIT:C162229 Stage IA2 Cervical Cancer FIGO 2018 12 25432 -NCIT:C162230 Stage IB Cervical Cancer FIGO 2018 11 25433 -NCIT:C162231 Stage IB1 Cervical Cancer FIGO 2018 12 25434 -NCIT:C162232 Stage IB2 Cervical Cancer FIGO 2018 12 25435 -NCIT:C162233 Stage IB3 Cervical Cancer FIGO 2018 12 25436 -NCIT:C162234 Stage II Cervical Cancer FIGO 2018 10 25437 -NCIT:C162235 Stage IIA Cervical Cancer FIGO 2018 11 25438 -NCIT:C162236 Stage IIA1 Cervical Cancer FIGO 2018 12 25439 -NCIT:C162237 Stage IIA2 Cervical Cancer FIGO 2018 12 25440 -NCIT:C162238 Stage IIB Cervical Cancer FIGO 2018 11 25441 -NCIT:C162239 Stage III Cervical Cancer FIGO 2018 10 25442 -NCIT:C162240 Stage IIIA Cervical Cancer FIGO 2018 11 25443 -NCIT:C162241 Stage IIIB Cervical Cancer FIGO 2018 11 25444 -NCIT:C162242 Stage IIIC Cervical Cancer FIGO 2018 11 25445 -NCIT:C162243 Stage IIIC1 Cervical Cancer FIGO 2018 12 25446 -NCIT:C162244 Stage IIIC2 Cervical Cancer FIGO 2018 12 25447 -NCIT:C162245 Stage IV Cervical Cancer FIGO 2018 10 25448 -NCIT:C162246 Stage IVA Cervical Cancer FIGO 2018 11 25449 -NCIT:C162247 Stage IVB Cervical Cancer FIGO 2018 11 25450 -NCIT:C170513 Refractory Cervical Carcinoma 9 25451 -NCIT:C181034 Refractory Cervical Squamous Cell Carcinoma 10 25452 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 11 25453 -NCIT:C181036 Refractory Cervical Adenocarcinoma 10 25454 -NCIT:C174024 Unresectable Cervical Carcinoma 9 25455 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 10 25456 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 11 25457 -NCIT:C174025 Unresectable Cervical Squamous Cell Carcinoma 10 25458 -NCIT:C174027 Unresectable Cervical Adenosquamous Carcinoma 10 25459 -NCIT:C174029 Unresectable Cervical Adenocarcinoma 10 25460 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 11 25461 -NCIT:C180878 Cervical Mucoepidermoid Carcinoma 9 25462 -NCIT:C181562 Cervical Cancer by AJCC v9 Stage 9 25463 -NCIT:C181564 Stage I Cervical Cancer AJCC v9 10 25464 -NCIT:C181565 Stage IA Cervical Cancer AJCC v9 11 25465 -NCIT:C181567 Stage IA1 Cervical Cancer AJCC v9 12 25466 -NCIT:C181568 Stage IA2 Cervical Cancer AJCC v9 12 25467 -NCIT:C181570 Stage IB Cervical Cancer AJCC v9 11 25468 -NCIT:C181571 Stage IB1 Cervical Cancer AJCC v9 12 25469 -NCIT:C181576 Stage IB2 Cervical Cancer AJCC v9 12 25470 -NCIT:C181579 Stage IB3 Cervical Cancer AJCC v9 12 25471 -NCIT:C181583 Stage II Cervical Cancer AJCC v9 10 25472 -NCIT:C181584 Stage IIA Cervical Cancer AJCC v9 11 25473 -NCIT:C181586 Stage IIA1 Cervical Cancer AJCC v9 12 25474 -NCIT:C181588 Stage IIA2 Cervical Cancer AJCC v9 12 25475 -NCIT:C181591 Stage IIB Cervical Cancer AJCC v9 11 25476 -NCIT:C181592 Stage III Cervical Cancer AJCC v9 10 25477 -NCIT:C181594 Stage IIIA Cervical Cancer AJCC v9 11 25478 -NCIT:C181595 Stage IIIB Cervical Cancer AJCC v9 11 25479 -NCIT:C181596 Stage IIIC Cervical Cancer AJCC v9 11 25480 -NCIT:C181597 Stage IIIC1 Cervical Cancer AJCC v9 12 25481 -NCIT:C181598 Stage IIIC2 Cervical Cancer AJCC v9 12 25482 -NCIT:C181599 Stage IV Cervical Cancer AJCC v9 10 25483 -NCIT:C181601 Stage IVA Cervical Cancer AJCC v9 11 25484 -NCIT:C181603 Stage IVB Cervical Cancer AJCC v9 11 25485 -NCIT:C186619 Cervical Cancer by FIGO Stage 2009 9 25486 -NCIT:C186620 Stage I Cervical Cancer FIGO 2009 10 25487 -NCIT:C186621 Stage IA Cervical Cancer FIGO 2009 11 25488 -NCIT:C186622 Stage IA1 Cervical Cancer FIGO 2009 12 25489 -NCIT:C186623 Stage IA2 Cervical Cancer FIGO 2009 12 25490 -NCIT:C186624 Stage IB Cervical Cancer FIGO 2009 11 25491 -NCIT:C186625 Stage IB1 Cervical Cancer FIGO 2009 12 25492 -NCIT:C186626 Stage IB2 Cervical Cancer FIGO 2009 12 25493 -NCIT:C186627 Stage II Cervical Cancer FIGO 2009 10 25494 -NCIT:C186628 Stage IIA Cervical Cancer FIGO 2009 11 25495 -NCIT:C186629 Stage IIA1 Cervical Cancer FIGO 2009 12 25496 -NCIT:C186630 Stage IIA2 Cervical Cancer FIGO 2009 12 25497 -NCIT:C186631 Stage IIB Cervical Cancer FIGO 2009 11 25498 -NCIT:C186632 Stage III Cervical Cancer FIGO 2009 10 25499 -NCIT:C186633 Stage IIIA Cervical Cancer FIGO 2009 11 25500 -NCIT:C186634 Stage IIIB Cervical Cancer FIGO 2009 11 25501 -NCIT:C186635 Stage IV Cervical Cancer FIGO 2009 10 25502 -NCIT:C186636 Stage IVA Cervical Cancer FIGO 2009 11 25503 -NCIT:C186637 Stage IVB Cervical Cancer FIGO 2009 11 25504 -NCIT:C27675 Human Papillomavirus-Related Cervical Carcinoma 9 25505 -NCIT:C27676 Human Papillomavirus-Related Cervical Squamous Cell Carcinoma 10 25506 -NCIT:C40192 Cervical Papillary Squamous Cell Carcinoma 11 25507 -NCIT:C40191 Cervical Warty Carcinoma 12 25508 -NCIT:C40194 Cervical Squamotransitional Carcinoma 12 25509 -NCIT:C27677 Human Papillomavirus-Related Cervical Adenocarcinoma 10 25510 -NCIT:C127907 Endocervical Adenocarcinoma, Usual-Type 11 25511 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 12 25512 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 12 25513 -NCIT:C40208 Cervical Villoglandular Adenocarcinoma 12 25514 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 11 25515 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 11 25516 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 11 25517 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 11 25518 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 11 25519 -NCIT:C40213 Cervical Adenoid Basal Carcinoma 9 25520 -NCIT:C4028 Cervical Squamous Cell Carcinoma 9 25521 -NCIT:C136649 Recurrent Cervical Squamous Cell Carcinoma 10 25522 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 10 25523 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 11 25524 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 11 25525 -NCIT:C174025 Unresectable Cervical Squamous Cell Carcinoma 10 25526 -NCIT:C180839 Cervical Squamous Cell Carcinoma, Not Otherwise Specified 10 25527 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 11 25528 -NCIT:C180841 Human Papillomavirus-Independent Cervical Squamous Cell Carcinoma 10 25529 -NCIT:C181034 Refractory Cervical Squamous Cell Carcinoma 10 25530 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 11 25531 -NCIT:C27676 Human Papillomavirus-Related Cervical Squamous Cell Carcinoma 10 25532 -NCIT:C40192 Cervical Papillary Squamous Cell Carcinoma 11 25533 -NCIT:C40191 Cervical Warty Carcinoma 12 25534 -NCIT:C40194 Cervical Squamotransitional Carcinoma 12 25535 -NCIT:C36094 Early Invasive Cervical Squamous Cell Carcinoma 10 25536 -NCIT:C40187 Cervical Keratinizing Squamous Cell Carcinoma 10 25537 -NCIT:C40188 Cervical Non-Keratinizing Squamous Cell Carcinoma 10 25538 -NCIT:C40189 Cervical Basaloid Carcinoma 10 25539 -NCIT:C40190 Cervical Verrucous Carcinoma 10 25540 -NCIT:C40193 Cervical Lymphoepithelioma-Like Carcinoma 10 25541 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 10 25542 -NCIT:C4029 Cervical Adenocarcinoma 9 25543 -NCIT:C127915 Cervical Adenocarcinoma Admixed with Neuroendocrine Carcinoma 10 25544 -NCIT:C136651 Recurrent Cervical Adenocarcinoma 10 25545 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 11 25546 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 10 25547 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 11 25548 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 12 25549 -NCIT:C156304 Advanced Cervical Adenocarcinoma 11 25550 -NCIT:C174029 Unresectable Cervical Adenocarcinoma 10 25551 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 11 25552 -NCIT:C180848 Human Papillomavirus-Independent Cervical Adenocarcinoma 10 25553 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 11 25554 -NCIT:C40201 Cervical Serous Adenocarcinoma 11 25555 -NCIT:C40206 Human Papillomavirus-Independent Cervical Adenocarcinoma, Gastric-Type 11 25556 -NCIT:C40254 Cervical Mesonephric Adenocarcinoma 11 25557 -NCIT:C6343 Cervical Endometrioid Adenocarcinoma 11 25558 -NCIT:C6344 Human Papillomavirus-Independent Cervical Adenocarcinoma, Clear Cell-Type 11 25559 -NCIT:C180870 Cervical Adenocarcinoma, Not Otherwise Specified 10 25560 -NCIT:C181036 Refractory Cervical Adenocarcinoma 10 25561 -NCIT:C27677 Human Papillomavirus-Related Cervical Adenocarcinoma 10 25562 -NCIT:C127907 Endocervical Adenocarcinoma, Usual-Type 11 25563 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 12 25564 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 12 25565 -NCIT:C40208 Cervical Villoglandular Adenocarcinoma 12 25566 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 11 25567 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 11 25568 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 11 25569 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 11 25570 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 11 25571 -NCIT:C36095 Cervical Mucinous Adenocarcinoma 10 25572 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 11 25573 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 11 25574 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 11 25575 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 11 25576 -NCIT:C40206 Human Papillomavirus-Independent Cervical Adenocarcinoma, Gastric-Type 11 25577 -NCIT:C36096 Early Invasive Cervical Adenocarcinoma 10 25578 -NCIT:C4520 Cervical Adenocarcinoma In Situ 10 25579 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 11 25580 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 11 25581 -NCIT:C4519 Cervical Adenosquamous Carcinoma 9 25582 -NCIT:C136650 Recurrent Cervical Adenosquamous Carcinoma 10 25583 -NCIT:C153390 Metastatic Cervical Adenosquamous Carcinoma 10 25584 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 11 25585 -NCIT:C174027 Unresectable Cervical Adenosquamous Carcinoma 10 25586 -NCIT:C40212 Cervical Poorly Differentiated Adenosquamous Carcinoma 10 25587 -NCIT:C6345 Cervical Undifferentiated Carcinoma 9 25588 -NCIT:C6346 Cervical Adenoid Cystic Carcinoma 9 25589 -NCIT:C7432 AIDS-Related Cervical Carcinoma 9 25590 -NCIT:C7453 Exocervical Carcinoma 9 25591 -NCIT:C7804 Recurrent Cervical Carcinoma 9 25592 -NCIT:C136649 Recurrent Cervical Squamous Cell Carcinoma 10 25593 -NCIT:C136650 Recurrent Cervical Adenosquamous Carcinoma 10 25594 -NCIT:C136651 Recurrent Cervical Adenocarcinoma 10 25595 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 11 25596 -NCIT:C8577 Invasive Cervical Carcinoma 9 25597 -NCIT:C90493 Cervical Cancer by AJCC v6 Stage 9 25598 -NCIT:C4000 Stage 0 Cervical Cancer AJCC v6 10 25599 -NCIT:C7803 Stage II Cervical Cancer AJCC v6 10 25600 -NCIT:C6319 Stage IIA Cervical Cancer AJCC v6 11 25601 -NCIT:C6320 Stage IIB Cervical Cancer AJCC v6 and v7 11 25602 -NCIT:C9204 Stage I Cervical Cancer AJCC v6 and v7 10 25603 -NCIT:C6313 Stage IA Cervical Cancer AJCC v6 and v7 11 25604 -NCIT:C6314 Stage IA1 Cervical Cancer AJCC v6 and v7 12 25605 -NCIT:C6315 Stage IA2 Cervical Cancer AJCC v6 and v7 12 25606 -NCIT:C6316 Stage IB Cervical Cancer AJCC v6 and v7 11 25607 -NCIT:C6317 Stage IB1 Cervical Cancer AJCC v6 and v7 12 25608 -NCIT:C6318 Stage IB2 Cervical Cancer AJCC v6 and v7 12 25609 -NCIT:C9205 Stage III Cervical Cancer AJCC v6 and v7 10 25610 -NCIT:C6321 Stage IIIB Cervical Cancer AJCC v6 and v7 11 25611 -NCIT:C6322 Stage IIIA Cervical Cancer AJCC v6 and v7 11 25612 -NCIT:C9206 Stage IV Cervical Cancer AJCC v6 and v7 10 25613 -NCIT:C6323 Stage IVA Cervical Cancer AJCC v6 and v7 11 25614 -NCIT:C6324 Stage IVB Cervical Cancer AJCC v6 and v7 11 25615 -NCIT:C91208 Cervical Cancer by AJCC v7 Stage 9 25616 -NCIT:C89550 Stage 0 Cervical Cancer AJCC v7 10 25617 -NCIT:C4520 Cervical Adenocarcinoma In Situ 11 25618 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 12 25619 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 12 25620 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 11 25621 -NCIT:C89551 Stage II Cervical Cancer AJCC v7 10 25622 -NCIT:C6320 Stage IIB Cervical Cancer AJCC v6 and v7 11 25623 -NCIT:C89552 Stage IIA Cervical Cancer AJCC v7 11 25624 -NCIT:C95172 Stage IIA1 Cervical Cancer AJCC v7 12 25625 -NCIT:C95173 Stage IIA2 Cervical Cancer AJCC v7 12 25626 -NCIT:C9204 Stage I Cervical Cancer AJCC v6 and v7 10 25627 -NCIT:C6313 Stage IA Cervical Cancer AJCC v6 and v7 11 25628 -NCIT:C6314 Stage IA1 Cervical Cancer AJCC v6 and v7 12 25629 -NCIT:C6315 Stage IA2 Cervical Cancer AJCC v6 and v7 12 25630 -NCIT:C6316 Stage IB Cervical Cancer AJCC v6 and v7 11 25631 -NCIT:C6317 Stage IB1 Cervical Cancer AJCC v6 and v7 12 25632 -NCIT:C6318 Stage IB2 Cervical Cancer AJCC v6 and v7 12 25633 -NCIT:C9205 Stage III Cervical Cancer AJCC v6 and v7 10 25634 -NCIT:C6321 Stage IIIB Cervical Cancer AJCC v6 and v7 11 25635 -NCIT:C6322 Stage IIIA Cervical Cancer AJCC v6 and v7 11 25636 -NCIT:C9206 Stage IV Cervical Cancer AJCC v6 and v7 10 25637 -NCIT:C6323 Stage IVA Cervical Cancer AJCC v6 and v7 11 25638 -NCIT:C6324 Stage IVB Cervical Cancer AJCC v6 and v7 11 25639 -NCIT:C3555 Malignant Placental Neoplasm 6 25640 -NCIT:C8546 Metastatic Malignant Neoplasm in the Placenta 7 25641 -NCIT:C8893 Placental Choriocarcinoma 7 25642 -NCIT:C40017 Rete Ovarii Adenocarcinoma 6 25643 -NCIT:C4646 Gestational Choriocarcinoma 6 25644 -NCIT:C27246 Uterine Corpus Choriocarcinoma 7 25645 -NCIT:C40442 Ovarian Gestational Choriocarcinoma 7 25646 -NCIT:C6278 Fallopian Tube Gestational Choriocarcinoma 7 25647 -NCIT:C8893 Placental Choriocarcinoma 7 25648 -NCIT:C53994 Undifferentiated Stromal Sarcoma 6 25649 -NCIT:C40066 Ovarian Undifferentiated Sarcoma 7 25650 -NCIT:C40224 Endocervical Undifferentiated Sarcoma 7 25651 -NCIT:C40272 Vaginal Undifferentiated Sarcoma 7 25652 -NCIT:C8972 Uterine Corpus Undifferentiated Sarcoma 7 25653 -NCIT:C7410 Malignant Vaginal Neoplasm 6 25654 -NCIT:C27394 Vaginal Melanoma 7 25655 -NCIT:C3917 Vaginal Carcinoma 7 25656 -NCIT:C128073 Vaginal Neuroendocrine Carcinoma 8 25657 -NCIT:C128075 Vaginal Large Cell Neuroendocrine Carcinoma 9 25658 -NCIT:C40263 Vaginal Small Cell Neuroendocrine Carcinoma 9 25659 -NCIT:C139657 Vaginal Cancer by AJCC v8 Stage 8 25660 -NCIT:C139658 Stage I Vaginal Cancer AJCC v8 9 25661 -NCIT:C139659 Stage IA Vaginal Cancer AJCC v8 10 25662 -NCIT:C139660 Stage IB Vaginal Cancer AJCC v8 10 25663 -NCIT:C139661 Stage II Vaginal Cancer AJCC v8 9 25664 -NCIT:C139662 Stage IIA Vaginal Cancer AJCC v8 10 25665 -NCIT:C139664 Stage IIB Vaginal Cancer AJCC v8 10 25666 -NCIT:C139665 Stage III Vaginal Cancer AJCC v8 9 25667 -NCIT:C139667 Stage IV Vaginal Cancer AJCC v8 9 25668 -NCIT:C139669 Stage IVA Vaginal Cancer AJCC v8 10 25669 -NCIT:C139670 Stage IVB Vaginal Cancer AJCC v8 10 25670 -NCIT:C156065 Metastatic Vaginal Carcinoma 8 25671 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 9 25672 -NCIT:C170788 Advanced Vaginal Carcinoma 9 25673 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 10 25674 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 10 25675 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 10 25676 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 11 25677 -NCIT:C181028 Metastatic Vaginal Adenosquamous Carcinoma 9 25678 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 10 25679 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 9 25680 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 10 25681 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 11 25682 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 9 25683 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 10 25684 -NCIT:C174509 Refractory Vaginal Carcinoma 8 25685 -NCIT:C185303 Refractory Vaginal Squamous Cell Carcinoma 9 25686 -NCIT:C175434 Unresectable Vaginal Carcinoma 8 25687 -NCIT:C180915 Vaginal Squamous Cell Carcinoma 8 25688 -NCIT:C128060 Vaginal Papillary Carcinoma 9 25689 -NCIT:C180917 Human Papillomavirus-Related Vaginal Squamous Cell Carcinoma 9 25690 -NCIT:C40248 Vaginal Warty Carcinoma 10 25691 -NCIT:C180919 Human Papillomavirus-Independent Vaginal Squamous Cell Carcinoma 9 25692 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 9 25693 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 10 25694 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 11 25695 -NCIT:C185302 Recurrent Vaginal Squamous Cell Carcinoma 9 25696 -NCIT:C185303 Refractory Vaginal Squamous Cell Carcinoma 9 25697 -NCIT:C40243 Vaginal Keratinizing Squamous Cell Carcinoma 9 25698 -NCIT:C40244 Vaginal Non-Keratinizing Squamous Cell Carcinoma 9 25699 -NCIT:C40245 Vaginal Basaloid Carcinoma 9 25700 -NCIT:C6325 Vaginal Verrucous Carcinoma 9 25701 -NCIT:C7736 Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 25702 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 25703 -NCIT:C40260 Vaginal Adenosquamous Carcinoma 8 25704 -NCIT:C181028 Metastatic Vaginal Adenosquamous Carcinoma 9 25705 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 10 25706 -NCIT:C40261 Vaginal Adenoid Cystic Carcinoma 8 25707 -NCIT:C40262 Vaginal Adenoid Basal Carcinoma 8 25708 -NCIT:C40264 Vaginal Undifferentiated Carcinoma 8 25709 -NCIT:C7860 Recurrent Vaginal Carcinoma 8 25710 -NCIT:C185302 Recurrent Vaginal Squamous Cell Carcinoma 9 25711 -NCIT:C7981 Vaginal Adenocarcinoma 8 25712 -NCIT:C180943 Human Papillomavirus-Related Vaginal Adenocarcinoma 9 25713 -NCIT:C180947 Vaginal Adenocarcinoma of Skene Gland Origin 9 25714 -NCIT:C40251 Vaginal Endometrioid Adenocarcinoma 9 25715 -NCIT:C40252 Vaginal Mucinous Adenocarcinoma 9 25716 -NCIT:C180945 Vaginal Mucinous Adenocarcinoma, Gastric-Type 10 25717 -NCIT:C180946 Vaginal Mucinous Adenocarcinoma, Intestinal-Type 10 25718 -NCIT:C40253 Vaginal Mesonephric Adenocarcinoma 9 25719 -NCIT:C7735 Vaginal Clear Cell Adenocarcinoma 9 25720 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 9 25721 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 10 25722 -NCIT:C90347 Vaginal Cancer by AJCC v6 Stage 8 25723 -NCIT:C7597 Stage IV Vaginal Cancer AJCC v6 and v7 9 25724 -NCIT:C7859 Stage IVA Vaginal Cancer AJCC v6 and v7 10 25725 -NCIT:C9355 Stage IVB Vaginal Cancer AJCC v6 and v7 10 25726 -NCIT:C7855 Stage 0 Vaginal Cancer AJCC v6 9 25727 -NCIT:C7856 Stage I Vaginal Cancer AJCC v6 and v7 9 25728 -NCIT:C7857 Stage II Vaginal Cancer AJCC v6 and v7 9 25729 -NCIT:C7858 Stage III Vaginal Cancer AJCC v6 and v7 9 25730 -NCIT:C91204 Vaginal Cancer by AJCC v7 Stage 8 25731 -NCIT:C7597 Stage IV Vaginal Cancer AJCC v6 and v7 9 25732 -NCIT:C7859 Stage IVA Vaginal Cancer AJCC v6 and v7 10 25733 -NCIT:C9355 Stage IVB Vaginal Cancer AJCC v6 and v7 10 25734 -NCIT:C7856 Stage I Vaginal Cancer AJCC v6 and v7 9 25735 -NCIT:C7857 Stage II Vaginal Cancer AJCC v6 and v7 9 25736 -NCIT:C7858 Stage III Vaginal Cancer AJCC v6 and v7 9 25737 -NCIT:C89476 Stage 0 Vaginal Cancer AJCC v7 9 25738 -NCIT:C40276 Malignant Vaginal Mixed Epithelial and Mesenchymal Neoplasm 7 25739 -NCIT:C40277 Vaginal Adenosarcoma 8 25740 -NCIT:C40278 Vaginal Carcinosarcoma 8 25741 -NCIT:C40279 Malignant Vaginal Mixed Tumor Resembling Synovial Sarcoma 8 25742 -NCIT:C6333 Metastatic Malignant Neoplasm in the Vagina 7 25743 -NCIT:C6379 Vaginal Yolk Sac Tumor 7 25744 -NCIT:C7737 Vaginal Sarcoma 7 25745 -NCIT:C128080 Vaginal Rhabdomyosarcoma 8 25746 -NCIT:C40268 Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 9 25747 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 25748 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 25749 -NCIT:C40271 Vaginal Low Grade Endometrioid Stromal Sarcoma 8 25750 -NCIT:C40272 Vaginal Undifferentiated Sarcoma 8 25751 -NCIT:C40277 Vaginal Adenosarcoma 8 25752 -NCIT:C6326 Vaginal Leiomyosarcoma 8 25753 -NCIT:C7431 Malignant Ovarian Neoplasm 6 25754 -NCIT:C165261 Solid Pseudopapillary Neoplasm of the Ovary 7 25755 -NCIT:C178441 Ovarian Melanoma 7 25756 -NCIT:C179474 Ovarian Neuroectodermal-Type Tumor 7 25757 -NCIT:C190659 Childhood Malignant Ovarian Neoplasm 7 25758 -NCIT:C171169 Extrarenal Rhabdoid Tumor of the Ovary 8 25759 -NCIT:C171170 Recurrent Extrarenal Rhabdoid Tumor of the Ovary 9 25760 -NCIT:C171171 Refractory Extrarenal Rhabdoid Tumor of the Ovary 9 25761 -NCIT:C189334 Childhood Ovarian Small Cell Carcinoma, Hypercalcemic Type 8 25762 -NCIT:C68629 Childhood Malignant Ovarian Germ Cell Tumor 8 25763 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 9 25764 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 9 25765 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 9 25766 -NCIT:C6550 Childhood Ovarian Dysgerminoma 9 25767 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 9 25768 -NCIT:C40021 Ovarian Lymphoma 7 25769 -NCIT:C40026 Malignant Ovarian Epithelial Tumor 7 25770 -NCIT:C40025 Malignant Ovarian Serous Tumor 8 25771 -NCIT:C67092 Ovarian Serous Adenocarcinofibroma 9 25772 -NCIT:C7550 Ovarian Serous Adenocarcinoma 9 25773 -NCIT:C105555 Ovarian High Grade Serous Adenocarcinoma 10 25774 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 11 25775 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 11 25776 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 11 25777 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 25778 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 11 25779 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 25780 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 12 25781 -NCIT:C105556 Ovarian Low Grade Serous Adenocarcinoma 10 25782 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 11 25783 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 11 25784 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 10 25785 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 11 25786 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 11 25787 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 11 25788 -NCIT:C160781 Unresectable Ovarian Serous Adenocarcinoma 10 25789 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 11 25790 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 25791 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 10 25792 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 11 25793 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 12 25794 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 12 25795 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 11 25796 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 25797 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 12 25798 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 11 25799 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 12 25800 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 12 25801 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 11 25802 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 12 25803 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 25804 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 10 25805 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 11 25806 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 11 25807 -NCIT:C6256 Ovarian Serous Surface Papillary Adenocarcinoma 10 25808 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 10 25809 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 11 25810 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 12 25811 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 12 25812 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 11 25813 -NCIT:C40033 Malignant Ovarian Mucinous Tumor 8 25814 -NCIT:C40034 Ovarian Mucinous Adenocarcinofibroma 9 25815 -NCIT:C5243 Ovarian Mucinous Adenocarcinoma 9 25816 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 10 25817 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 10 25818 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 10 25819 -NCIT:C183245 Unresectable Ovarian Mucinous Adenocarcinoma 10 25820 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 10 25821 -NCIT:C40051 Malignant Ovarian Endometrioid Tumor 8 25822 -NCIT:C7979 Ovarian Endometrioid Adenocarcinoma 9 25823 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 10 25824 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 10 25825 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 10 25826 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 11 25827 -NCIT:C186273 Unresectable Ovarian Endometrioid Adenocarcinoma 10 25828 -NCIT:C40061 Ovarian Endometrioid Adenocarcinoma with Squamous Differentiation 10 25829 -NCIT:C9192 Ovarian Carcinosarcoma 9 25830 -NCIT:C153347 Recurrent Ovarian Carcinosarcoma 10 25831 -NCIT:C170933 Metastatic Ovarian Carcinosarcoma 10 25832 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 11 25833 -NCIT:C40077 Malignant Ovarian Clear Cell Tumor 8 25834 -NCIT:C40078 Ovarian Clear Cell Adenocarcinoma 9 25835 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 10 25836 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 10 25837 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 11 25838 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 10 25839 -NCIT:C7980 Ovarian Clear Cell Cystadenocarcinoma 10 25840 -NCIT:C40079 Ovarian Clear Cell Adenocarcinofibroma 9 25841 -NCIT:C4908 Ovarian Carcinoma 8 25842 -NCIT:C128081 Ovarian Cancer by FIGO Stage 9 25843 -NCIT:C128082 FIGO Stage IC1 Ovarian Cancer 10 25844 -NCIT:C128083 FIGO Stage IC2 Ovarian Cancer 10 25845 -NCIT:C128084 FIGO Stage IC3 Ovarian Cancer 10 25846 -NCIT:C128085 FIGO Stage II Ovarian Cancer 10 25847 -NCIT:C5223 Stage IIA Ovarian Cancer AJCC V6 and v7 11 25848 -NCIT:C5224 Stage IIB Ovarian Cancer AJCC v6 and v7 11 25849 -NCIT:C128086 FIGO Stage III Ovarian Cancer 10 25850 -NCIT:C128087 FIGO Stage IIIA Ovarian Cancer 11 25851 -NCIT:C128088 FIGO Stage IIIA1 Ovarian Cancer 12 25852 -NCIT:C128089 FIGO Stage IIIA1(i) Ovarian Cancer 13 25853 -NCIT:C128090 FIGO Stage IIIA1(ii) Ovarian Cancer 13 25854 -NCIT:C128091 FIGO Stage IIIA2 Ovarian Cancer 12 25855 -NCIT:C128092 FIGO Stage IIIB Ovarian Cancer 11 25856 -NCIT:C128093 FIGO Stage IIIC Ovarian Cancer 11 25857 -NCIT:C128094 FIGO Stage IVA Ovarian Cancer 10 25858 -NCIT:C128095 FIGO Stage IVB Ovarian Cancer 10 25859 -NCIT:C7829 Stage I Ovarian Cancer AJCC v6 and v7 10 25860 -NCIT:C5220 Stage IA Ovarian Cancer AJCC v6 and v7 11 25861 -NCIT:C5221 Stage IB Ovarian Cancer AJCC v6 and v7 11 25862 -NCIT:C5222 Stage IC Ovarian Cancer AJCC v6 and v7 11 25863 -NCIT:C7832 Stage IV Ovarian Cancer AJCC v6 and v7 10 25864 -NCIT:C128106 Ovarian Cancer by AJCC v6 and v7 Stage 9 25865 -NCIT:C7829 Stage I Ovarian Cancer AJCC v6 and v7 10 25866 -NCIT:C5220 Stage IA Ovarian Cancer AJCC v6 and v7 11 25867 -NCIT:C5221 Stage IB Ovarian Cancer AJCC v6 and v7 11 25868 -NCIT:C5222 Stage IC Ovarian Cancer AJCC v6 and v7 11 25869 -NCIT:C7830 Stage II Ovarian Cancer AJCC v6 and v7 10 25870 -NCIT:C5223 Stage IIA Ovarian Cancer AJCC V6 and v7 11 25871 -NCIT:C5224 Stage IIB Ovarian Cancer AJCC v6 and v7 11 25872 -NCIT:C5225 Stage IIC Ovarian Cancer AJCC v6 and v7 11 25873 -NCIT:C7831 Stage III Ovarian Cancer AJCC v6 and v7 10 25874 -NCIT:C6258 Stage IIIA Ovarian Cancer AJCC v6 and v7 11 25875 -NCIT:C6259 Stage IIIB Ovarian Cancer AJCC v6 and v7 11 25876 -NCIT:C6260 Stage IIIC Ovarian Cancer AJCC v6 and v7 11 25877 -NCIT:C7832 Stage IV Ovarian Cancer AJCC v6 and v7 10 25878 -NCIT:C139963 Ovarian Cancer by AJCC v8 Stage 9 25879 -NCIT:C139964 Stage I Ovarian Cancer AJCC v8 10 25880 -NCIT:C139965 Stage IA Ovarian Cancer AJCC v8 11 25881 -NCIT:C139966 Stage IB Ovarian Cancer AJCC v8 11 25882 -NCIT:C139967 Stage IC Ovarian Cancer AJCC v8 11 25883 -NCIT:C139968 Stage II Ovarian Cancer AJCC v8 10 25884 -NCIT:C139969 Stage IIA Ovarian Cancer AJCC v8 11 25885 -NCIT:C139970 Stage IIB Ovarian Cancer AJCC v8 11 25886 -NCIT:C139971 Stage III Ovarian Cancer AJCC v8 10 25887 -NCIT:C139972 Stage IIIA Ovarian Cancer AJCC v8 11 25888 -NCIT:C139973 Stage IIIA1 Ovarian Cancer AJCC v8 12 25889 -NCIT:C139974 Stage IIIA2 Ovarian Cancer AJCC v8 12 25890 -NCIT:C139975 Stage IIIB Ovarian Cancer AJCC v8 11 25891 -NCIT:C139976 Stage IIIC Ovarian Cancer AJCC v8 11 25892 -NCIT:C139977 Stage IV Ovarian Cancer AJCC v8 10 25893 -NCIT:C139978 Stage IVA Ovarian Cancer AJCC v8 11 25894 -NCIT:C139979 Stage IVB Ovarian Cancer AJCC v8 11 25895 -NCIT:C150091 Refractory Ovarian Carcinoma 9 25896 -NCIT:C147561 Platinum-Resistant Ovarian Carcinoma 10 25897 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 11 25898 -NCIT:C179459 Unresectable Platinum-Resistant Ovarian Carcinoma 11 25899 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 11 25900 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 12 25901 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 12 25902 -NCIT:C170968 Refractory Ovarian Adenocarcinoma 10 25903 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 11 25904 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 11 25905 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 12 25906 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 12 25907 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 11 25908 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 11 25909 -NCIT:C178671 Refractory Ovarian Seromucinous Carcinoma 10 25910 -NCIT:C178682 Refractory Ovarian Transitional Cell Carcinoma 10 25911 -NCIT:C178683 Refractory Ovarian Undifferentiated Carcinoma 10 25912 -NCIT:C178700 Platinum-Refractory Ovarian Carcinoma 10 25913 -NCIT:C179207 Refractory Ovarian Squamous Cell Carcinoma 10 25914 -NCIT:C183126 Refractory Malignant Ovarian Brenner Tumor 10 25915 -NCIT:C156064 Metastatic Ovarian Carcinoma 9 25916 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 10 25917 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 11 25918 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 12 25919 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 12 25920 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 11 25921 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 25922 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 12 25923 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 11 25924 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 12 25925 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 12 25926 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 11 25927 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 12 25928 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 25929 -NCIT:C165458 Advanced Ovarian Carcinoma 10 25930 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 11 25931 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 12 25932 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 12 25933 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 11 25934 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 11 25935 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 11 25936 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 11 25937 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 10 25938 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 11 25939 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 12 25940 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 25941 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 11 25942 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 10 25943 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 11 25944 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 10 25945 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 11 25946 -NCIT:C172234 Metastatic Ovarian Undifferentiated Carcinoma 10 25947 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 10 25948 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 11 25949 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 11 25950 -NCIT:C180333 Metastatic Microsatellite Stable Ovarian Carcinoma 10 25951 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 11 25952 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 10 25953 -NCIT:C27391 Metastatic Ovarian Small Cell Carcinoma, Hypercalcemic Type 10 25954 -NCIT:C159902 Platinum-Sensitive Ovarian Carcinoma 9 25955 -NCIT:C188391 Recurrent Platinum-Sensitive Ovarian Carcinoma 10 25956 -NCIT:C167073 Unresectable Ovarian Carcinoma 9 25957 -NCIT:C160781 Unresectable Ovarian Serous Adenocarcinoma 10 25958 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 11 25959 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 25960 -NCIT:C172235 Unresectable Ovarian Undifferentiated Carcinoma 10 25961 -NCIT:C179459 Unresectable Platinum-Resistant Ovarian Carcinoma 10 25962 -NCIT:C183245 Unresectable Ovarian Mucinous Adenocarcinoma 10 25963 -NCIT:C186273 Unresectable Ovarian Endometrioid Adenocarcinoma 10 25964 -NCIT:C171032 Ovarian Neuroendocrine Carcinoma 9 25965 -NCIT:C40440 Ovarian Small Cell Carcinoma, Pulmonary-Type 10 25966 -NCIT:C5238 Ovarian Large Cell Neuroendocrine Carcinoma 10 25967 -NCIT:C179334 Ovarian Dedifferentiated Carcinoma 9 25968 -NCIT:C180332 Microsatellite Stable Ovarian Carcinoma 9 25969 -NCIT:C180333 Metastatic Microsatellite Stable Ovarian Carcinoma 10 25970 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 11 25971 -NCIT:C27390 Ovarian Small Cell Carcinoma 9 25972 -NCIT:C40439 Ovarian Small Cell Carcinoma, Hypercalcemic Type 10 25973 -NCIT:C189334 Childhood Ovarian Small Cell Carcinoma, Hypercalcemic Type 11 25974 -NCIT:C27391 Metastatic Ovarian Small Cell Carcinoma, Hypercalcemic Type 11 25975 -NCIT:C40440 Ovarian Small Cell Carcinoma, Pulmonary-Type 10 25976 -NCIT:C36102 Hereditary Ovarian Carcinoma 9 25977 -NCIT:C148024 BRCA-Associated Ovarian Carcinoma 10 25978 -NCIT:C148025 Recurrent BRCA- Associated Ovarian Carcinoma 11 25979 -NCIT:C40090 Ovarian Seromucinous Carcinoma 9 25980 -NCIT:C178669 Recurrent Ovarian Seromucinous Carcinoma 10 25981 -NCIT:C178671 Refractory Ovarian Seromucinous Carcinoma 10 25982 -NCIT:C40093 Ovarian Squamous Cell Carcinoma 9 25983 -NCIT:C179207 Refractory Ovarian Squamous Cell Carcinoma 10 25984 -NCIT:C4270 Malignant Ovarian Brenner Tumor 9 25985 -NCIT:C153818 Recurrent Malignant Ovarian Brenner Tumor 10 25986 -NCIT:C183126 Refractory Malignant Ovarian Brenner Tumor 10 25987 -NCIT:C4509 Ovarian Undifferentiated Carcinoma 9 25988 -NCIT:C170754 Recurrent Ovarian Undifferentiated Carcinoma 10 25989 -NCIT:C172234 Metastatic Ovarian Undifferentiated Carcinoma 10 25990 -NCIT:C172235 Unresectable Ovarian Undifferentiated Carcinoma 10 25991 -NCIT:C178683 Refractory Ovarian Undifferentiated Carcinoma 10 25992 -NCIT:C5240 Ovarian Transitional Cell Carcinoma 9 25993 -NCIT:C153819 Recurrent Ovarian Transitional Cell Carcinoma 10 25994 -NCIT:C178682 Refractory Ovarian Transitional Cell Carcinoma 10 25995 -NCIT:C7700 Ovarian Adenocarcinoma 9 25996 -NCIT:C153614 Recurrent Ovarian Adenocarcinoma 10 25997 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 11 25998 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 11 25999 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 12 26000 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 12 26001 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 12 26002 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 11 26003 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 11 26004 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 12 26005 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 11 26006 -NCIT:C170968 Refractory Ovarian Adenocarcinoma 10 26007 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 11 26008 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 11 26009 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 12 26010 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 12 26011 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 11 26012 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 11 26013 -NCIT:C179208 Ovarian Signet Ring Cell Carcinoma 10 26014 -NCIT:C179321 Ovarian Mesonephric-Like Adenocarcinoma 10 26015 -NCIT:C179339 Ovarian Mixed Cell Adenocarcinoma 10 26016 -NCIT:C40078 Ovarian Clear Cell Adenocarcinoma 10 26017 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 11 26018 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 11 26019 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 12 26020 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 11 26021 -NCIT:C7980 Ovarian Clear Cell Cystadenocarcinoma 11 26022 -NCIT:C5228 Ovarian Cystadenocarcinoma 10 26023 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 11 26024 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 12 26025 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 11 26026 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 11 26027 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 12 26028 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 13 26029 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 13 26030 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 12 26031 -NCIT:C7980 Ovarian Clear Cell Cystadenocarcinoma 11 26032 -NCIT:C5243 Ovarian Mucinous Adenocarcinoma 10 26033 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 11 26034 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 11 26035 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 11 26036 -NCIT:C183245 Unresectable Ovarian Mucinous Adenocarcinoma 11 26037 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 11 26038 -NCIT:C7550 Ovarian Serous Adenocarcinoma 10 26039 -NCIT:C105555 Ovarian High Grade Serous Adenocarcinoma 11 26040 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 12 26041 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 12 26042 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 12 26043 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 13 26044 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 12 26045 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 13 26046 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 13 26047 -NCIT:C105556 Ovarian Low Grade Serous Adenocarcinoma 11 26048 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 12 26049 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 12 26050 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 11 26051 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 12 26052 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 12 26053 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 12 26054 -NCIT:C160781 Unresectable Ovarian Serous Adenocarcinoma 11 26055 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 12 26056 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 13 26057 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 11 26058 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 12 26059 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 13 26060 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 13 26061 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 12 26062 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 13 26063 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 13 26064 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 12 26065 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 13 26066 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 13 26067 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 12 26068 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 13 26069 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 13 26070 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 11 26071 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 12 26072 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 12 26073 -NCIT:C6256 Ovarian Serous Surface Papillary Adenocarcinoma 11 26074 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 11 26075 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 12 26076 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 13 26077 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 13 26078 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 12 26079 -NCIT:C7979 Ovarian Endometrioid Adenocarcinoma 10 26080 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 11 26081 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 11 26082 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 11 26083 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 12 26084 -NCIT:C186273 Unresectable Ovarian Endometrioid Adenocarcinoma 11 26085 -NCIT:C40061 Ovarian Endometrioid Adenocarcinoma with Squamous Differentiation 11 26086 -NCIT:C7833 Recurrent Ovarian Carcinoma 9 26087 -NCIT:C148025 Recurrent BRCA- Associated Ovarian Carcinoma 10 26088 -NCIT:C153614 Recurrent Ovarian Adenocarcinoma 10 26089 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 11 26090 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 11 26091 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 12 26092 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 12 26093 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 12 26094 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 11 26095 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 11 26096 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 12 26097 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 11 26098 -NCIT:C153818 Recurrent Malignant Ovarian Brenner Tumor 10 26099 -NCIT:C153819 Recurrent Ovarian Transitional Cell Carcinoma 10 26100 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 10 26101 -NCIT:C170754 Recurrent Ovarian Undifferentiated Carcinoma 10 26102 -NCIT:C178669 Recurrent Ovarian Seromucinous Carcinoma 10 26103 -NCIT:C188391 Recurrent Platinum-Sensitive Ovarian Carcinoma 10 26104 -NCIT:C190201 Locally Recurrent Ovarian Carcinoma 10 26105 -NCIT:C40035 Adenocarcinofibroma 7 26106 -NCIT:C40034 Ovarian Mucinous Adenocarcinofibroma 8 26107 -NCIT:C40079 Ovarian Clear Cell Adenocarcinofibroma 8 26108 -NCIT:C67092 Ovarian Serous Adenocarcinofibroma 8 26109 -NCIT:C40443 Ovarian Wilms Tumor 7 26110 -NCIT:C40444 Ovarian Malignant Mesothelioma 7 26111 -NCIT:C4514 Malignant Ovarian Germ Cell Tumor 7 26112 -NCIT:C39986 Ovarian Primitive Germ Cell Tumor 8 26113 -NCIT:C102870 Ovarian Non-Dysgerminomatous Germ Cell Tumor 9 26114 -NCIT:C39990 Ovarian Polyembryoma 10 26115 -NCIT:C8739 Stage I Ovarian Polyembryoma AJCC v6 and v7 11 26116 -NCIT:C8740 Stage II Ovarian Polyembryoma AJCC v6 and v7 11 26117 -NCIT:C8741 Stage III Ovarian Polyembryoma AJCC v6 and v7 11 26118 -NCIT:C8742 Stage IV Ovarian Polyembryoma AJCC v6 and v7 11 26119 -NCIT:C39991 Non-Gestational Ovarian Choriocarcinoma 10 26120 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 11 26121 -NCIT:C8107 Ovarian Yolk Sac Tumor 10 26122 -NCIT:C39987 Ovarian Yolk Sac Tumor, Polyvesicular Vitelline Pattern 11 26123 -NCIT:C39988 Ovarian Yolk Sac Tumor, Glandular Pattern 11 26124 -NCIT:C39989 Ovarian Yolk Sac Tumor, Hepatoid Pattern 11 26125 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 11 26126 -NCIT:C8735 Stage I Ovarian Yolk Sac Tumor AJCC v6 and v7 11 26127 -NCIT:C8736 Stage II Ovarian Yolk Sac Tumor AJCC v6 and v7 11 26128 -NCIT:C8737 Stage III Ovarian Yolk Sac Tumor AJCC v6 and v7 11 26129 -NCIT:C8738 Stage IV Ovarian Yolk Sac Tumor AJCC v6 and v7 11 26130 -NCIT:C8108 Ovarian Embryonal Carcinoma 10 26131 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 11 26132 -NCIT:C8725 Stage II Ovarian Embryonal Carcinoma AJCC v6 and v7 11 26133 -NCIT:C8728 Stage III Ovarian Embryonal Carcinoma AJCC v6 and v7 11 26134 -NCIT:C8729 Stage IV Ovarian Embryonal Carcinoma AJCC v6 and v7 11 26135 -NCIT:C8734 Stage I Ovarian Embryonal Carcinoma AJCC v6 and v7 11 26136 -NCIT:C8106 Ovarian Dysgerminoma 9 26137 -NCIT:C6550 Childhood Ovarian Dysgerminoma 10 26138 -NCIT:C8723 Stage I Ovarian Dysgerminoma AJCC v6 and v7 10 26139 -NCIT:C8724 Stage II Ovarian Dysgerminoma AJCC v6 and v7 10 26140 -NCIT:C8726 Stage III Ovarian Dysgerminoma AJCC v6 and v7 10 26141 -NCIT:C8727 Stage IV Ovarian Dysgerminoma AJCC v6 and v7 10 26142 -NCIT:C8114 Ovarian Mixed Germ Cell Tumor 9 26143 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 10 26144 -NCIT:C39995 Malignant Ovarian Teratoma 8 26145 -NCIT:C4291 Thyroid Carcinoma Arising in Struma Ovarii 8 26146 -NCIT:C68629 Childhood Malignant Ovarian Germ Cell Tumor 8 26147 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 9 26148 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 9 26149 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 9 26150 -NCIT:C6550 Childhood Ovarian Dysgerminoma 9 26151 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 9 26152 -NCIT:C8083 Stage I Ovarian Germ Cell Tumor AJCC v6 and v7 8 26153 -NCIT:C6291 Stage IA Ovarian Germ Cell Tumor AJCC v6 and v7 9 26154 -NCIT:C6292 Stage IB Ovarian Germ Cell Tumor AJCC v6 and v7 9 26155 -NCIT:C6293 Stage IC Ovarian Germ Cell Tumor AJCC v6 and v7 9 26156 -NCIT:C8723 Stage I Ovarian Dysgerminoma AJCC v6 and v7 9 26157 -NCIT:C8734 Stage I Ovarian Embryonal Carcinoma AJCC v6 and v7 9 26158 -NCIT:C8735 Stage I Ovarian Yolk Sac Tumor AJCC v6 and v7 9 26159 -NCIT:C8739 Stage I Ovarian Polyembryoma AJCC v6 and v7 9 26160 -NCIT:C8743 Stage I Ovarian Teratoma AJCC v6 and v7 9 26161 -NCIT:C8084 Stage II Ovarian Germ Cell Tumor AJCC v6 and v7 8 26162 -NCIT:C6294 Stage IIC Ovarian Germ Cell Tumor AJCC v6 and v7 9 26163 -NCIT:C6295 Stage IIB Ovarian Germ Cell Tumor AJCC v6 and v7 9 26164 -NCIT:C6296 Stage IIA Ovarian Germ Cell Tumor AJCC v6 and v7 9 26165 -NCIT:C8724 Stage II Ovarian Dysgerminoma AJCC v6 and v7 9 26166 -NCIT:C8725 Stage II Ovarian Embryonal Carcinoma AJCC v6 and v7 9 26167 -NCIT:C8736 Stage II Ovarian Yolk Sac Tumor AJCC v6 and v7 9 26168 -NCIT:C8740 Stage II Ovarian Polyembryoma AJCC v6 and v7 9 26169 -NCIT:C8744 Stage II Ovarian Teratoma AJCC v6 and v7 9 26170 -NCIT:C8085 Stage III Ovarian Germ Cell Tumor AJCC v6 and v7 8 26171 -NCIT:C6297 Stage IIIA Ovarian Germ Cell Tumor AJCC v6 and v7 9 26172 -NCIT:C6298 Stage IIIB Ovarian Germ Cell Tumor AJCC v6 and v7 9 26173 -NCIT:C6299 Stage IIIC Ovarian Germ Cell Tumor AJCC v6 and v7 9 26174 -NCIT:C8726 Stage III Ovarian Dysgerminoma AJCC v6 and v7 9 26175 -NCIT:C8728 Stage III Ovarian Embryonal Carcinoma AJCC v6 and v7 9 26176 -NCIT:C8737 Stage III Ovarian Yolk Sac Tumor AJCC v6 and v7 9 26177 -NCIT:C8741 Stage III Ovarian Polyembryoma AJCC v6 and v7 9 26178 -NCIT:C8745 Stage III Ovarian Teratoma AJCC v6 and v7 9 26179 -NCIT:C8086 Stage IV Ovarian Germ Cell Tumor AJCC v6 and v7 8 26180 -NCIT:C8727 Stage IV Ovarian Dysgerminoma AJCC v6 and v7 9 26181 -NCIT:C8729 Stage IV Ovarian Embryonal Carcinoma AJCC v6 and v7 9 26182 -NCIT:C8738 Stage IV Ovarian Yolk Sac Tumor AJCC v6 and v7 9 26183 -NCIT:C8742 Stage IV Ovarian Polyembryoma AJCC v6 and v7 9 26184 -NCIT:C8746 Stage IV Ovarian Teratoma AJCC v6 and v7 9 26185 -NCIT:C8087 Recurrent Ovarian Germ Cell Tumor 8 26186 -NCIT:C4515 Ovarian Choriocarcinoma 7 26187 -NCIT:C39991 Non-Gestational Ovarian Choriocarcinoma 8 26188 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 9 26189 -NCIT:C40442 Ovarian Gestational Choriocarcinoma 8 26190 -NCIT:C8730 Stage I Ovarian Choriocarcinoma 8 26191 -NCIT:C8731 Stage II Ovarian Choriocarcinoma 8 26192 -NCIT:C8732 Stage III Ovarian Choriocarcinoma 8 26193 -NCIT:C8733 Stage IV Ovarian Choriocarcinoma 8 26194 -NCIT:C7456 Metastatic Malignant Neoplasm in the Ovary 7 26195 -NCIT:C3153 Krukenberg Tumor 8 26196 -NCIT:C8053 Malignant Ovarian Sex Cord-Stromal Tumor 7 26197 -NCIT:C39981 Malignant Ovarian Steroid Cell Tumor 8 26198 -NCIT:C4210 Poorly Differentiated Ovarian Sertoli-Leydig Cell Tumor 8 26199 -NCIT:C39973 Poorly Differentiated Ovarian Sertoli-Leydig Cell Tumor, Variant with Heterologous Elements 9 26200 -NCIT:C6929 Malignant Ovarian Thecoma 8 26201 -NCIT:C6263 Malignant Ovarian Luteinized Thecoma 9 26202 -NCIT:C8403 Malignant Ovarian Granulosa Cell Tumor 8 26203 -NCIT:C160619 Recurrent Malignant Ovarian Granulosa Cell Tumor 9 26204 -NCIT:C8267 Ovarian Sarcoma 7 26205 -NCIT:C40063 Ovarian Low Grade Endometrioid Stromal Sarcoma 8 26206 -NCIT:C40066 Ovarian Undifferentiated Sarcoma 8 26207 -NCIT:C5232 Ovarian Angiosarcoma 8 26208 -NCIT:C5233 Ovarian Fibrosarcoma 8 26209 -NCIT:C5234 Ovarian Leiomyosarcoma 8 26210 -NCIT:C5236 Ovarian Rhabdomyosarcoma 8 26211 -NCIT:C6419 Ovarian Liposarcoma 8 26212 -NCIT:C5235 Ovarian Myxoid Liposarcoma 9 26213 -NCIT:C7317 Ovarian Adenosarcoma 8 26214 -NCIT:C7480 Malignant Fallopian Tube Neoplasm 6 26215 -NCIT:C126464 Fallopian Tube Lymphoma 7 26216 -NCIT:C3867 Fallopian Tube Carcinoma 7 26217 -NCIT:C115429 Recurrent Fallopian Tube Carcinoma 8 26218 -NCIT:C170750 Recurrent Platinum-Resistant Fallopian Tube Carcinoma 9 26219 -NCIT:C170755 Recurrent Fallopian Tube Undifferentiated Carcinoma 9 26220 -NCIT:C170757 Recurrent Fallopian Tube Transitional Cell Carcinoma 9 26221 -NCIT:C170766 Recurrent Fallopian Tube Adenocarcinoma 9 26222 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 10 26223 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 10 26224 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 10 26225 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 10 26226 -NCIT:C191395 Recurrent Platinum-Sensitive Fallopian Tube Carcinoma 9 26227 -NCIT:C139983 Fallopian Tube Cancer by AJCC v8 Stage 8 26228 -NCIT:C139984 Stage I Fallopian Tube Cancer AJCC v8 9 26229 -NCIT:C139985 Stage IA Fallopian Tube Cancer AJCC v8 10 26230 -NCIT:C139986 Stage IB Fallopian Tube Cancer AJCC v8 10 26231 -NCIT:C139987 Stage IC Fallopian Tube Cancer AJCC v8 10 26232 -NCIT:C139988 Stage II Fallopian Tube Cancer AJCC v8 9 26233 -NCIT:C139989 Stage IIA Fallopian Tube Cancer AJCC v8 10 26234 -NCIT:C139990 Stage IIB Fallopian Tube Cancer AJCC v8 10 26235 -NCIT:C139991 Stage III Fallopian Tube Cancer AJCC v8 9 26236 -NCIT:C139992 Stage IIIA Fallopian Tube Cancer AJCC v8 10 26237 -NCIT:C139993 Stage IIIA1 Fallopian Tube Cancer AJCC v8 11 26238 -NCIT:C139994 Stage IIIA2 Fallopian Tube Cancer AJCC v8 11 26239 -NCIT:C139995 Stage IIIB Fallopian Tube Cancer AJCC v8 10 26240 -NCIT:C139996 Stage IIIC Fallopian Tube Cancer AJCC v8 10 26241 -NCIT:C139997 Stage IV Fallopian Tube Cancer AJCC v8 9 26242 -NCIT:C139998 Stage IVA Fallopian Tube Cancer AJCC v8 10 26243 -NCIT:C139999 Stage IVB Fallopian Tube Cancer AJCC v8 10 26244 -NCIT:C152047 Refractory Fallopian Tube Carcinoma 8 26245 -NCIT:C157621 Platinum-Resistant Fallopian Tube Carcinoma 9 26246 -NCIT:C170750 Recurrent Platinum-Resistant Fallopian Tube Carcinoma 10 26247 -NCIT:C170971 Refractory Fallopian Tube Adenocarcinoma 9 26248 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 10 26249 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 10 26250 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 10 26251 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 10 26252 -NCIT:C178674 Refractory Fallopian Tube Transitional Cell Carcinoma 9 26253 -NCIT:C178675 Refractory Fallopian Tube Undifferentiated Carcinoma 9 26254 -NCIT:C178698 Platinum-Refractory Fallopian Tube Carcinoma 9 26255 -NCIT:C156063 Metastatic Fallopian Tube Carcinoma 8 26256 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 9 26257 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 10 26258 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 9 26259 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 9 26260 -NCIT:C160873 Platinum-Sensitive Fallopian Tube Carcinoma 8 26261 -NCIT:C191395 Recurrent Platinum-Sensitive Fallopian Tube Carcinoma 9 26262 -NCIT:C170969 Unresectable Fallopian Tube Carcinoma 8 26263 -NCIT:C170970 Unresectable Fallopian Tube Adenocarcinoma 9 26264 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 10 26265 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 10 26266 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 9 26267 -NCIT:C40104 Fallopian Tube Transitional Cell Carcinoma 8 26268 -NCIT:C170757 Recurrent Fallopian Tube Transitional Cell Carcinoma 9 26269 -NCIT:C178674 Refractory Fallopian Tube Transitional Cell Carcinoma 9 26270 -NCIT:C40455 Hereditary Fallopian Tube Carcinoma 8 26271 -NCIT:C6265 Fallopian Tube Adenocarcinoma 8 26272 -NCIT:C170766 Recurrent Fallopian Tube Adenocarcinoma 9 26273 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 10 26274 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 10 26275 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 10 26276 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 10 26277 -NCIT:C170970 Unresectable Fallopian Tube Adenocarcinoma 9 26278 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 10 26279 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 10 26280 -NCIT:C170971 Refractory Fallopian Tube Adenocarcinoma 9 26281 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 10 26282 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 10 26283 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 10 26284 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 10 26285 -NCIT:C40099 Fallopian Tube Serous Adenocarcinoma 9 26286 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 10 26287 -NCIT:C126456 Fallopian Tube High Grade Serous Adenocarcinoma 10 26288 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 11 26289 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 11 26290 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 11 26291 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 11 26292 -NCIT:C40103 Fallopian Tube Mucinous Adenocarcinoma 9 26293 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 10 26294 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 10 26295 -NCIT:C40105 Stage 0 Fallopian Tube Cancer AJCC v7 9 26296 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 10 26297 -NCIT:C6279 Fallopian Tube Endometrioid Adenocarcinoma 9 26298 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 10 26299 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 10 26300 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 10 26301 -NCIT:C6280 Fallopian Tube Clear Cell Adenocarcinoma 9 26302 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 10 26303 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 10 26304 -NCIT:C6278 Fallopian Tube Gestational Choriocarcinoma 8 26305 -NCIT:C6281 Fallopian Tube Undifferentiated Carcinoma 8 26306 -NCIT:C170755 Recurrent Fallopian Tube Undifferentiated Carcinoma 9 26307 -NCIT:C178675 Refractory Fallopian Tube Undifferentiated Carcinoma 9 26308 -NCIT:C6282 Fallopian Tube Squamous Cell Carcinoma 8 26309 -NCIT:C90499 Fallopian Tube Cancer by AJCC v6 Stage 8 26310 -NCIT:C8720 Stage I Fallopian Tube Cancer AJCC v6 and v7 9 26311 -NCIT:C6269 Stage IA Fallopian Tube Cancer AJCC v6 and v7 10 26312 -NCIT:C6270 Stage IB Fallopian Tube Cancer AJCC v6 and v7 10 26313 -NCIT:C6271 Stage IC Fallopian Tube Cancer AJCC v6 and v7 10 26314 -NCIT:C8721 Stage II Fallopian Tube Cancer AJCC v6 and v7 9 26315 -NCIT:C6272 Stage IIA Fallopian Tube Cancer AJCC v6 and v7 10 26316 -NCIT:C6276 Stage IIC Fallopian Tube Cancer AJCC v6 and v7 10 26317 -NCIT:C6277 Stage IIB Fallopian Tube Cancer AJCC v6 and v7 10 26318 -NCIT:C8722 Stage III Fallopian Tube Cancer AJCC v6 9 26319 -NCIT:C8963 Stage IV Fallopian Tube Cancer AJCC v6 and v7 9 26320 -NCIT:C91219 Fallopian Tube Cancer by AJCC v7 Stage 8 26321 -NCIT:C40105 Stage 0 Fallopian Tube Cancer AJCC v7 9 26322 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 10 26323 -NCIT:C8720 Stage I Fallopian Tube Cancer AJCC v6 and v7 9 26324 -NCIT:C6269 Stage IA Fallopian Tube Cancer AJCC v6 and v7 10 26325 -NCIT:C6270 Stage IB Fallopian Tube Cancer AJCC v6 and v7 10 26326 -NCIT:C6271 Stage IC Fallopian Tube Cancer AJCC v6 and v7 10 26327 -NCIT:C8721 Stage II Fallopian Tube Cancer AJCC v6 and v7 9 26328 -NCIT:C6272 Stage IIA Fallopian Tube Cancer AJCC v6 and v7 10 26329 -NCIT:C6276 Stage IIC Fallopian Tube Cancer AJCC v6 and v7 10 26330 -NCIT:C6277 Stage IIB Fallopian Tube Cancer AJCC v6 and v7 10 26331 -NCIT:C8963 Stage IV Fallopian Tube Cancer AJCC v6 and v7 9 26332 -NCIT:C89692 Stage III Fallopian Tube Cancer AJCC v7 9 26333 -NCIT:C6273 Stage IIIA Fallopian Tube Cancer AJCC v7 10 26334 -NCIT:C6274 Stage IIIB Fallopian Tube Cancer AJCC v7 10 26335 -NCIT:C6275 Stage IIIC Fallopian Tube Cancer AJCC v7 10 26336 -NCIT:C40124 Fallopian Tube Carcinosarcoma 7 26337 -NCIT:C40125 Fallopian Tube Adenosarcoma 7 26338 -NCIT:C40128 Fallopian Tube Leiomyosarcoma 7 26339 -NCIT:C7502 Malignant Vulvar Neoplasm 6 26340 -NCIT:C128165 Malignant Vulvar Phyllodes Tumor 7 26341 -NCIT:C128295 Vulvar Yolk Sac Tumor 7 26342 -NCIT:C3557 Malignant Clitoral Neoplasm 7 26343 -NCIT:C9362 Clitoral Carcinoma 8 26344 -NCIT:C40304 Malignant Vulvar Sweat Gland Neoplasm 7 26345 -NCIT:C128164 Vulvar Adenocarcinoma of Sweat Gland Origin 8 26346 -NCIT:C4027 Vulvar Paget Disease 9 26347 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 9 26348 -NCIT:C40306 Vulvar Porocarcinoma 10 26349 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 9 26350 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 9 26351 -NCIT:C40317 Vulvar Sarcoma 7 26352 -NCIT:C176515 Vulvar Angiosarcoma 8 26353 -NCIT:C181938 Vulvar Kaposi Sarcoma 8 26354 -NCIT:C181944 Vulvar Rhabdomyosarcoma 8 26355 -NCIT:C128273 Vulvar Alveolar Rhabdomyosarcoma 9 26356 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 9 26357 -NCIT:C181971 Vulvar Epithelioid Sarcoma 8 26358 -NCIT:C181973 Vulvar Distal-Type Epithelioid Sarcoma 9 26359 -NCIT:C40319 Vulvar Proximal-Type Epithelioid Sarcoma 9 26360 -NCIT:C181977 Vulvar Ewing Sarcoma 8 26361 -NCIT:C40318 Vulvar Leiomyosarcoma 8 26362 -NCIT:C40320 Vulvar Alveolar Soft Part Sarcoma 8 26363 -NCIT:C40321 Vulvar Liposarcoma 8 26364 -NCIT:C40329 Vulvar Melanoma 7 26365 -NCIT:C4866 Vulvar Carcinoma 7 26366 -NCIT:C128243 Vulvar Neuroendocrine Carcinoma 8 26367 -NCIT:C128244 Vulvar Small Cell Neuroendocrine Carcinoma 9 26368 -NCIT:C40298 Bartholin Gland Small Cell Neuroendocrine Carcinoma 10 26369 -NCIT:C128245 Vulvar Large Cell Neuroendocrine Carcinoma 9 26370 -NCIT:C128247 Vulvar Merkel Cell Carcinoma 9 26371 -NCIT:C139618 Vulvar Cancer by AJCC v8 Stage 8 26372 -NCIT:C139619 Stage I Vulvar Cancer AJCC v8 9 26373 -NCIT:C139620 Stage IA Vulvar Cancer AJCC v8 10 26374 -NCIT:C139621 Stage IB Vulvar Cancer AJCC v8 10 26375 -NCIT:C139622 Stage II Vulvar Cancer AJCC v8 9 26376 -NCIT:C139623 Stage III Vulvar Cancer AJCC v8 9 26377 -NCIT:C139624 Stage IIIA Vulvar Cancer AJCC v8 10 26378 -NCIT:C139625 Stage IIIB Vulvar Cancer AJCC v8 10 26379 -NCIT:C139626 Stage IIIC Vulvar Cancer AJCC v8 10 26380 -NCIT:C139627 Stage IV Vulvar Cancer AJCC v8 9 26381 -NCIT:C139628 Stage IVA Vulvar Cancer AJCC v8 10 26382 -NCIT:C139630 Stage IVB Vulvar Cancer AJCC v8 10 26383 -NCIT:C156066 Metastatic Vulvar Carcinoma 8 26384 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 9 26385 -NCIT:C170786 Advanced Vulvar Carcinoma 9 26386 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 9 26387 -NCIT:C174198 Unresectable Vulvar Carcinoma 8 26388 -NCIT:C174199 Unresectable Vulvar Squamous Cell Carcinoma 9 26389 -NCIT:C174508 Refractory Vulvar Carcinoma 8 26390 -NCIT:C185304 Refractory Vulvar Squamous Cell Carcinoma 9 26391 -NCIT:C4052 Vulvar Squamous Cell Carcinoma 8 26392 -NCIT:C128167 Vulvar Keratoacanthoma 9 26393 -NCIT:C174199 Unresectable Vulvar Squamous Cell Carcinoma 9 26394 -NCIT:C174200 Recurrent Vulvar Squamous Cell Carcinoma 9 26395 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 9 26396 -NCIT:C181902 Vulvar Squamous Cell Carcinoma, Not Otherwise Specified 9 26397 -NCIT:C181903 Human Papillomavirus-Independent Vulvar Squamous Cell Carcinoma 9 26398 -NCIT:C185304 Refractory Vulvar Squamous Cell Carcinoma 9 26399 -NCIT:C27679 Human Papillomavirus-Related Vulvar Squamous Cell Carcinoma 9 26400 -NCIT:C40287 Vulvar Warty Carcinoma 10 26401 -NCIT:C40284 Vulvar Keratinizing Squamous Cell Carcinoma 9 26402 -NCIT:C40285 Vulvar Non-Keratinizing Squamous Cell Carcinoma 9 26403 -NCIT:C40286 Vulvar Basaloid Carcinoma 9 26404 -NCIT:C40289 Vulvar Squamous Cell Carcinoma with Tumor Giant Cells 9 26405 -NCIT:C40293 Bartholin Gland Squamous Cell Carcinoma 9 26406 -NCIT:C6383 Vulvar Verrucous Carcinoma 9 26407 -NCIT:C6380 Vulvar Adenocarcinoma 8 26408 -NCIT:C128162 Vulvar Adenocarcinoma of Mammary Gland Type 9 26409 -NCIT:C128164 Vulvar Adenocarcinoma of Sweat Gland Origin 9 26410 -NCIT:C4027 Vulvar Paget Disease 10 26411 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 10 26412 -NCIT:C40306 Vulvar Porocarcinoma 11 26413 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 10 26414 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 10 26415 -NCIT:C128166 Vulvar Adenocarcinoma, Intestinal-Type 9 26416 -NCIT:C40309 Vulvar Sebaceous Carcinoma 9 26417 -NCIT:C7719 Bartholin Gland Adenocarcinoma 9 26418 -NCIT:C6381 Vulvar Basal Cell Carcinoma 8 26419 -NCIT:C90345 Vulvar Cancer by AJCC v6 Stage 8 26420 -NCIT:C4522 Stage 0 Vulvar Cancer AJCC v6 9 26421 -NCIT:C7854 Stage I Vulvar Cancer AJCC v6 9 26422 -NCIT:C6328 Stage IA Vulvar Carcinoma AJCC v6 10 26423 -NCIT:C6329 Stage IB Vulvar Carcinoma AJCC v6 10 26424 -NCIT:C9051 Stage II Vulvar Cancer AJCC v6 9 26425 -NCIT:C9052 Stage III Vulvar Cancer AJCC v6 9 26426 -NCIT:C9053 Stage IV Vulvar Cancer AJCC v6 9 26427 -NCIT:C27247 Stage IVB Vulvar Cancer AJCC v6 and v7 10 26428 -NCIT:C6330 Stage IVA Vulvar Cancer AJCC v6 10 26429 -NCIT:C9054 Recurrent Vulvar Carcinoma 8 26430 -NCIT:C174200 Recurrent Vulvar Squamous Cell Carcinoma 9 26431 -NCIT:C9055 Bartholin Gland Carcinoma 8 26432 -NCIT:C40293 Bartholin Gland Squamous Cell Carcinoma 9 26433 -NCIT:C40295 Bartholin Gland Adenoid Cystic Carcinoma 9 26434 -NCIT:C40296 Bartholin Gland Adenosquamous Carcinoma 9 26435 -NCIT:C40297 Bartholin Gland Transitional Cell Carcinoma 9 26436 -NCIT:C40298 Bartholin Gland Small Cell Neuroendocrine Carcinoma 9 26437 -NCIT:C7719 Bartholin Gland Adenocarcinoma 9 26438 -NCIT:C91203 Vulvar Cancer by AJCC v7 Stage 8 26439 -NCIT:C89445 Stage 0 Vulvar Cancer AJCC v7 9 26440 -NCIT:C89447 Stage I Vulvar Cancer AJCC v7 9 26441 -NCIT:C89448 Stage IA Vulvar Cancer AJCC v7 10 26442 -NCIT:C89449 Stage IB Vulvar Cancer AJCC v7 10 26443 -NCIT:C89451 Stage II Vulvar Cancer AJCC v7 9 26444 -NCIT:C89452 Stage III Vulvar Cancer AJCC v7 9 26445 -NCIT:C87003 Stage IIIA Vulvar Cancer AJCC v7 10 26446 -NCIT:C87004 Stage IIIB Vulvar Cancer AJCC v7 10 26447 -NCIT:C87005 Stage IIIC Vulvar Cancer AJCC v7 10 26448 -NCIT:C89453 Stage IV Vulvar Cancer AJCC v7 9 26449 -NCIT:C27247 Stage IVB Vulvar Cancer AJCC v6 and v7 10 26450 -NCIT:C89454 Stage IVA Vulvar Cancer AJCC v7 10 26451 -NCIT:C9362 Clitoral Carcinoma 8 26452 -NCIT:C9363 Labia Majora Carcinoma 8 26453 -NCIT:C9364 Labia Minora Carcinoma 8 26454 -NCIT:C6332 Metastatic Malignant Neoplasm in the Vulva 7 26455 -NCIT:C7637 Malignant Labia Minora Neoplasm 7 26456 -NCIT:C9364 Labia Minora Carcinoma 8 26457 -NCIT:C7638 Malignant Labia Majora Neoplasm 7 26458 -NCIT:C9363 Labia Majora Carcinoma 8 26459 -NCIT:C8975 Malignant Mixed Mesodermal (Mullerian) Tumor 6 26460 -NCIT:C159507 Primary Peritoneal Carcinosarcoma 7 26461 -NCIT:C170929 Metastatic Malignant Mixed Mesodermal (Mullerian) Tumor 7 26462 -NCIT:C170930 Advanced Malignant Mixed Mesodermal (Mullerian) Tumor 8 26463 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 9 26464 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 9 26465 -NCIT:C170931 Metastatic Uterine Corpus Carcinosarcoma 8 26466 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 9 26467 -NCIT:C170933 Metastatic Ovarian Carcinosarcoma 8 26468 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 9 26469 -NCIT:C40124 Fallopian Tube Carcinosarcoma 7 26470 -NCIT:C40278 Vaginal Carcinosarcoma 7 26471 -NCIT:C42700 Uterine Carcinosarcoma 7 26472 -NCIT:C113238 Uterine Carcinosarcoma, Homologous Type 8 26473 -NCIT:C113239 Uterine Carcinosarcoma, Heterologous Type 8 26474 -NCIT:C36097 Cervical Carcinosarcoma 8 26475 -NCIT:C9180 Uterine Corpus Carcinosarcoma 8 26476 -NCIT:C155818 Recurrent Uterine Corpus Carcinosarcoma 9 26477 -NCIT:C158381 Refractory Uterine Corpus Carcinosarcoma 9 26478 -NCIT:C170931 Metastatic Uterine Corpus Carcinosarcoma 9 26479 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 10 26480 -NCIT:C9192 Ovarian Carcinosarcoma 7 26481 -NCIT:C153347 Recurrent Ovarian Carcinosarcoma 8 26482 -NCIT:C170933 Metastatic Ovarian Carcinosarcoma 8 26483 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 9 26484 -NCIT:C9474 Adenosarcoma 6 26485 -NCIT:C102570 Broad Ligament Adenosarcoma 7 26486 -NCIT:C40125 Fallopian Tube Adenosarcoma 7 26487 -NCIT:C40229 Cervical Adenosarcoma 7 26488 -NCIT:C40277 Vaginal Adenosarcoma 7 26489 -NCIT:C6336 Uterine Corpus Adenosarcoma 7 26490 -NCIT:C139894 Uterine Corpus Adenosarcoma by AJCC v8 Stage 8 26491 -NCIT:C139895 Stage I Uterine Corpus Adenosarcoma AJCC v8 9 26492 -NCIT:C139896 Stage IA Uterine Corpus Adenosarcoma AJCC v8 10 26493 -NCIT:C139897 Stage IB Uterine Corpus Adenosarcoma AJCC v8 10 26494 -NCIT:C139898 Stage IC Uterine Corpus Adenosarcoma AJCC v8 10 26495 -NCIT:C139899 Stage II Uterine Corpus Adenosarcoma AJCC v8 9 26496 -NCIT:C139900 Stage III Uterine Corpus Adenosarcoma AJCC v8 9 26497 -NCIT:C139901 Stage IIIA Uterine Corpus Adenosarcoma AJCC v8 10 26498 -NCIT:C139902 Stage IIIB Uterine Corpus Adenosarcoma AJCC v8 10 26499 -NCIT:C139903 Stage IIIC Uterine Corpus Adenosarcoma AJCC v8 10 26500 -NCIT:C139904 Stage IV Uterine Corpus Adenosarcoma AJCC v8 9 26501 -NCIT:C139905 Stage IVA Uterine Corpus Adenosarcoma AJCC v8 10 26502 -NCIT:C139906 Stage IVB Uterine Corpus Adenosarcoma AJCC v8 10 26503 -NCIT:C7317 Ovarian Adenosarcoma 7 26504 -NCIT:C67561 Malignant Sex Cord-Stromal Tumor 5 26505 -NCIT:C39948 Malignant Testicular Sex Cord-Stromal Tumor 6 26506 -NCIT:C8053 Malignant Ovarian Sex Cord-Stromal Tumor 6 26507 -NCIT:C39981 Malignant Ovarian Steroid Cell Tumor 7 26508 -NCIT:C4210 Poorly Differentiated Ovarian Sertoli-Leydig Cell Tumor 7 26509 -NCIT:C39973 Poorly Differentiated Ovarian Sertoli-Leydig Cell Tumor, Variant with Heterologous Elements 8 26510 -NCIT:C6929 Malignant Ovarian Thecoma 7 26511 -NCIT:C6263 Malignant Ovarian Luteinized Thecoma 8 26512 -NCIT:C8403 Malignant Ovarian Granulosa Cell Tumor 7 26513 -NCIT:C160619 Recurrent Malignant Ovarian Granulosa Cell Tumor 8 26514 -NCIT:C8561 Malignant Male Reproductive System Neoplasm 5 26515 -NCIT:C150533 Recurrent Malignant Male Reproductive System Neoplasm 6 26516 -NCIT:C138021 Recurrent Testicular Lymphoma 7 26517 -NCIT:C179466 Recurrent Malignant Spermatic Cord Neoplasm 7 26518 -NCIT:C7621 Recurrent Male Reproductive System Carcinoma 7 26519 -NCIT:C7870 Recurrent Penile Carcinoma 8 26520 -NCIT:C7902 Recurrent Prostate Carcinoma 8 26521 -NCIT:C156771 Biochemically Recurrent Prostate Carcinoma 9 26522 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 9 26523 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 10 26524 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 9 26525 -NCIT:C9369 Recurrent Malignant Testicular Germ Cell Tumor 7 26526 -NCIT:C150534 Refractory Malignant Male Reproductive System Neoplasm 6 26527 -NCIT:C138022 Refractory Testicular Lymphoma 7 26528 -NCIT:C177149 Refractory Male Reproductive System Carcinoma 7 26529 -NCIT:C167255 Refractory Prostate Carcinoma 8 26530 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 9 26531 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 10 26532 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 10 26533 -NCIT:C161609 Double-Negative Prostate Carcinoma 10 26534 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 10 26535 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 10 26536 -NCIT:C167256 Refractory Prostate Adenocarcinoma 9 26537 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 9 26538 -NCIT:C177150 Refractory Penile Carcinoma 8 26539 -NCIT:C9077 Refractory Malignant Testicular Germ Cell Tumor 7 26540 -NCIT:C161644 Malignant Seminal Vesicle Neoplasm 6 26541 -NCIT:C161634 Seminal Vesicle Squamous Cell Carcinoma 7 26542 -NCIT:C161641 Seminal Vesicle Leiomyosarcoma 7 26543 -NCIT:C161642 Seminal Vesicle Angiosarcoma 7 26544 -NCIT:C161649 Metastatic Malignant Neoplasm in the Seminal Vesicle 7 26545 -NCIT:C39906 Seminal Vesicle Adenocarcinoma 7 26546 -NCIT:C162477 Paratesticular Malignant Mesothelioma 6 26547 -NCIT:C173605 Paratesticular Epithelioid Mesothelioma 7 26548 -NCIT:C173609 Unresectable Paratesticular Epithelioid Mesothelioma 8 26549 -NCIT:C173606 Paratesticular Sarcomatoid Mesothelioma 7 26550 -NCIT:C173610 Unresectable Paratesticular Sarcomatoid Mesothelioma 8 26551 -NCIT:C173607 Paratesticular Biphasic Mesothelioma 7 26552 -NCIT:C173611 Unresectable Paratesticular Biphasic Mesothelioma 8 26553 -NCIT:C173608 Unresectable Paratesticular Malignant Mesothelioma 7 26554 -NCIT:C173609 Unresectable Paratesticular Epithelioid Mesothelioma 8 26555 -NCIT:C173610 Unresectable Paratesticular Sarcomatoid Mesothelioma 8 26556 -NCIT:C173611 Unresectable Paratesticular Biphasic Mesothelioma 8 26557 -NCIT:C162486 Paratesticular Squamous Cell Carcinoma 6 26558 -NCIT:C161634 Seminal Vesicle Squamous Cell Carcinoma 7 26559 -NCIT:C162489 Paratesticular Wilms Tumor 6 26560 -NCIT:C162493 Paratesticular Liposarcoma 6 26561 -NCIT:C162495 Paratesticular Leiomyosarcoma 6 26562 -NCIT:C161641 Seminal Vesicle Leiomyosarcoma 7 26563 -NCIT:C162497 Paratesticular Rhabdomyosarcoma 6 26564 -NCIT:C181196 Male Reproductive System Carcinoma 6 26565 -NCIT:C177149 Refractory Male Reproductive System Carcinoma 7 26566 -NCIT:C167255 Refractory Prostate Carcinoma 8 26567 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 9 26568 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 10 26569 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 10 26570 -NCIT:C161609 Double-Negative Prostate Carcinoma 10 26571 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 10 26572 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 10 26573 -NCIT:C167256 Refractory Prostate Adenocarcinoma 9 26574 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 9 26575 -NCIT:C177150 Refractory Penile Carcinoma 8 26576 -NCIT:C39906 Seminal Vesicle Adenocarcinoma 7 26577 -NCIT:C39957 Epididymal Adenocarcinoma 7 26578 -NCIT:C4863 Prostate Carcinoma 7 26579 -NCIT:C103817 Hereditary Prostate Carcinoma 8 26580 -NCIT:C114933 Hormone-Resistant Prostate Carcinoma 8 26581 -NCIT:C138167 Prostate Carcinoma by Gene Expression Profile 8 26582 -NCIT:C138168 Luminal A Prostate Carcinoma 9 26583 -NCIT:C138169 Luminal B Prostate Carcinoma 9 26584 -NCIT:C138170 Basal-Like Prostate Carcinoma 9 26585 -NCIT:C140163 Prostate Cancer by AJCC v8 Stage 8 26586 -NCIT:C140164 Stage I Prostate Cancer AJCC v8 9 26587 -NCIT:C140165 Stage II Prostate Cancer AJCC v8 9 26588 -NCIT:C140166 Stage IIA Prostate Cancer AJCC v8 10 26589 -NCIT:C140167 Stage IIB Prostate Cancer AJCC v8 10 26590 -NCIT:C140168 Stage IIC Prostate Cancer AJCC v8 10 26591 -NCIT:C140169 Stage III Prostate Cancer AJCC v8 9 26592 -NCIT:C140170 Stage IIIA Prostate Cancer AJCC v8 10 26593 -NCIT:C140171 Stage IIIB Prostate Cancer AJCC v8 10 26594 -NCIT:C140172 Stage IIIC Prostate Cancer AJCC v8 10 26595 -NCIT:C140173 Stage IV Prostate Cancer AJCC v8 9 26596 -NCIT:C140174 Stage IVA Prostate Cancer AJCC v8 10 26597 -NCIT:C140175 Stage IVB Prostate Cancer AJCC v8 10 26598 -NCIT:C161022 Intraductal Prostate Carcinoma 8 26599 -NCIT:C167255 Refractory Prostate Carcinoma 8 26600 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 9 26601 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 10 26602 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 10 26603 -NCIT:C161609 Double-Negative Prostate Carcinoma 10 26604 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 10 26605 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 10 26606 -NCIT:C167256 Refractory Prostate Adenocarcinoma 9 26607 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 9 26608 -NCIT:C171611 Unresectable Prostate Carcinoma 8 26609 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 9 26610 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 26611 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 9 26612 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 9 26613 -NCIT:C176517 Localized Prostate Carcinoma 8 26614 -NCIT:C39898 Primary Prostate Urothelial Carcinoma 8 26615 -NCIT:C39900 Prostatic Urethra Urothelial Carcinoma 9 26616 -NCIT:C39901 Prostatic Duct Urothelial Carcinoma 9 26617 -NCIT:C48596 Invasive Prostate Carcinoma 8 26618 -NCIT:C158912 Prostate Neuroendocrine Carcinoma 9 26619 -NCIT:C158650 Prostate Large Cell Neuroendocrine Carcinoma 10 26620 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 10 26621 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 11 26622 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 11 26623 -NCIT:C6766 Prostate Small Cell Neuroendocrine Carcinoma 10 26624 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 11 26625 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 11 26626 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 11 26627 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 11 26628 -NCIT:C2919 Prostate Adenocarcinoma 9 26629 -NCIT:C150557 Prostate Adenocarcinoma without Neuroendocrine Differentiation 10 26630 -NCIT:C164185 Aggressive Prostate Adenocarcinoma 10 26631 -NCIT:C164186 Prostate Adenocarcinoma by AJCC v7 Stage 10 26632 -NCIT:C8947 Stage I Prostate Adenocarcinoma AJCC v7 11 26633 -NCIT:C8948 Stage II Prostate Adenocarcinoma AJCC v7 11 26634 -NCIT:C8949 Stage III Prostate Adenocarcinoma AJCC v7 11 26635 -NCIT:C8950 Stage IV Prostate Adenocarcinoma AJCC v7 11 26636 -NCIT:C167256 Refractory Prostate Adenocarcinoma 10 26637 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 10 26638 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 11 26639 -NCIT:C27905 Well Differentiated Prostate Adenocarcinoma 10 26640 -NCIT:C39896 Prostate Ductal Adenocarcinoma, Papillary Pattern 11 26641 -NCIT:C27906 Moderately Differentiated Prostate Adenocarcinoma 10 26642 -NCIT:C27916 Poorly Differentiated Prostate Adenocarcinoma 10 26643 -NCIT:C5530 Prostate Acinar Adenocarcinoma, Sarcomatoid Variant 11 26644 -NCIT:C39903 Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 26645 -NCIT:C158656 Usual Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 26646 -NCIT:C158664 Prostate Adenocarcinoma with Paneth Cell-Like Neuroendocrine Differentiation 11 26647 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 26648 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 12 26649 -NCIT:C5596 Prostate Acinar Adenocarcinoma 10 26650 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 11 26651 -NCIT:C158656 Usual Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 26652 -NCIT:C160817 Prostate Acinar Adenocarcinoma, Microcystic Variant 11 26653 -NCIT:C160818 Prostate Acinar Adenocarcinoma, Pleomorphic Giant Cell Variant 11 26654 -NCIT:C39880 Prostate Acinar Adenocarcinoma, Atrophic Variant 11 26655 -NCIT:C39881 Prostate Acinar Adenocarcinoma, Pseudohyperplastic Variant 11 26656 -NCIT:C39882 Prostate Acinar Adenocarcinoma, Foamy Gland Variant 11 26657 -NCIT:C39884 Prostate Acinar Adenocarcinoma, Oncocytic Variant 11 26658 -NCIT:C39885 Prostate Acinar Adenocarcinoma, Lymphoepithelioma-Like Variant 11 26659 -NCIT:C5530 Prostate Acinar Adenocarcinoma, Sarcomatoid Variant 11 26660 -NCIT:C5535 Prostate Acinar Adenocarcinoma, Signet Ring-Like Cell Variant 11 26661 -NCIT:C5537 Prostate Acinar Mucinous Adenocarcinoma 11 26662 -NCIT:C6813 Prostate Ductal Adenocarcinoma 10 26663 -NCIT:C39895 Prostate Ductal Adenocarcinoma, Cribriform Pattern 11 26664 -NCIT:C39896 Prostate Ductal Adenocarcinoma, Papillary Pattern 11 26665 -NCIT:C39897 Prostate Ductal Adenocarcinoma, Solid Pattern 11 26666 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 10 26667 -NCIT:C156286 Advanced Prostate Adenocarcinoma 11 26668 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 12 26669 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 11 26670 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 12 26671 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 26672 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 12 26673 -NCIT:C39902 Prostate Basal Cell Carcinoma 9 26674 -NCIT:C5536 Prostate Squamous Cell Carcinoma 9 26675 -NCIT:C5538 Prostate Adenosquamous Carcinoma 9 26676 -NCIT:C5539 Prostate Adenoid Cystic Carcinoma 9 26677 -NCIT:C5597 Prostate Undifferentiated Carcinoma 9 26678 -NCIT:C7079 Prostate Cancer by Whitmore-Jewett Stage 8 26679 -NCIT:C7099 Stage D Prostate Cancer 9 26680 -NCIT:C7552 Stage C Prostate Cancer 9 26681 -NCIT:C7554 Stage B Prostate Cancer 9 26682 -NCIT:C7556 Stage A Prostate Cancer 9 26683 -NCIT:C7902 Recurrent Prostate Carcinoma 8 26684 -NCIT:C156771 Biochemically Recurrent Prostate Carcinoma 9 26685 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 9 26686 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 10 26687 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 9 26688 -NCIT:C8946 Metastatic Prostate Carcinoma 8 26689 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 9 26690 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 10 26691 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 10 26692 -NCIT:C161609 Double-Negative Prostate Carcinoma 10 26693 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 10 26694 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 10 26695 -NCIT:C132881 Prostate Carcinoma Metastatic in the Soft Tissue 9 26696 -NCIT:C148536 Castration-Naive Prostate Carcinoma 9 26697 -NCIT:C153336 Castration-Sensitive Prostate Carcinoma 9 26698 -NCIT:C156284 Advanced Prostate Carcinoma 9 26699 -NCIT:C156286 Advanced Prostate Adenocarcinoma 10 26700 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 26701 -NCIT:C156285 Locally Advanced Prostate Carcinoma 9 26702 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 10 26703 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 11 26704 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 10 26705 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 11 26706 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 10 26707 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 9 26708 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 10 26709 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 10 26710 -NCIT:C161584 Prostate Carcinoma Metastatic in the Pelvic Cavity 9 26711 -NCIT:C161587 Prostate Carcinoma Metastatic in the Lymph Nodes 9 26712 -NCIT:C171265 Oligometastatic Prostate Carcinoma 9 26713 -NCIT:C36307 Prostate Carcinoma Metastatic in the Lung 9 26714 -NCIT:C36308 Prostate Carcinoma Metastatic in the Bone 9 26715 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 9 26716 -NCIT:C156286 Advanced Prostate Adenocarcinoma 10 26717 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 26718 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 10 26719 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 11 26720 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 26721 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 26722 -NCIT:C90521 Prostate Cancer by AJCC v6 Stage 8 26723 -NCIT:C7551 Stage III Prostate Cancer AJCC v6 9 26724 -NCIT:C7553 Stage II Prostate Cancer AJCC v6 9 26725 -NCIT:C7555 Stage I Prostate Cancer AJCC v6 9 26726 -NCIT:C9075 Stage IV Prostate Cancer AJCC v6 9 26727 -NCIT:C91233 Prostate Cancer by AJCC v7 Stage 8 26728 -NCIT:C164186 Prostate Adenocarcinoma by AJCC v7 Stage 9 26729 -NCIT:C8947 Stage I Prostate Adenocarcinoma AJCC v7 10 26730 -NCIT:C8948 Stage II Prostate Adenocarcinoma AJCC v7 10 26731 -NCIT:C8949 Stage III Prostate Adenocarcinoma AJCC v7 10 26732 -NCIT:C8950 Stage IV Prostate Adenocarcinoma AJCC v7 10 26733 -NCIT:C89232 Stage I Prostate Cancer AJCC v7 9 26734 -NCIT:C8947 Stage I Prostate Adenocarcinoma AJCC v7 10 26735 -NCIT:C89233 Stage II Prostate Cancer AJCC v7 9 26736 -NCIT:C88106 Stage IIA Prostate Cancer AJCC v7 10 26737 -NCIT:C88107 Stage IIB Prostate Cancer AJCC v7 10 26738 -NCIT:C8948 Stage II Prostate Adenocarcinoma AJCC v7 10 26739 -NCIT:C89234 Stage III Prostate Cancer AJCC v7 9 26740 -NCIT:C8949 Stage III Prostate Adenocarcinoma AJCC v7 10 26741 -NCIT:C89235 Stage IV Prostate Cancer AJCC v7 9 26742 -NCIT:C8950 Stage IV Prostate Adenocarcinoma AJCC v7 10 26743 -NCIT:C7621 Recurrent Male Reproductive System Carcinoma 7 26744 -NCIT:C7870 Recurrent Penile Carcinoma 8 26745 -NCIT:C7902 Recurrent Prostate Carcinoma 8 26746 -NCIT:C156771 Biochemically Recurrent Prostate Carcinoma 9 26747 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 9 26748 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 10 26749 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 9 26750 -NCIT:C8955 Rete Testis Adenocarcinoma 7 26751 -NCIT:C9061 Penile Carcinoma 7 26752 -NCIT:C118820 Adult Penile Carcinoma 8 26753 -NCIT:C140075 Penile Cancer by AJCC v8 Stage 8 26754 -NCIT:C140076 Stage 0 Penile Cancer AJCC v8 9 26755 -NCIT:C140077 Stage 0is Penile Cancer AJCC v8 10 26756 -NCIT:C140078 Stage 0a Penile Cancer AJCC v8 10 26757 -NCIT:C140079 Stage I Penile Cancer AJCC v8 9 26758 -NCIT:C140080 Stage II Penile Cancer AJCC v8 9 26759 -NCIT:C140081 Stage IIA Penile Cancer AJCC v8 10 26760 -NCIT:C140083 Stage IIB Penile Cancer AJCC v8 10 26761 -NCIT:C140084 Stage III Penile Cancer AJCC v8 9 26762 -NCIT:C140085 Stage IIIA Penile Cancer AJCC v8 10 26763 -NCIT:C140086 Stage IIIB Penile Cancer AJCC v8 10 26764 -NCIT:C140087 Stage IV Penile Cancer AJCC v8 9 26765 -NCIT:C177150 Refractory Penile Carcinoma 8 26766 -NCIT:C27784 Metastatic Penile Carcinoma 8 26767 -NCIT:C170789 Locally Advanced Penile Carcinoma 9 26768 -NCIT:C170790 Advanced Penile Carcinoma 9 26769 -NCIT:C182111 Metastatic Squamous Cell Carcinoma of the Penis 9 26770 -NCIT:C27817 Penile Paget Disease 8 26771 -NCIT:C39961 Penile Basal Cell Carcinoma 8 26772 -NCIT:C7729 Squamous Cell Carcinoma of the Penis 8 26773 -NCIT:C159244 Non-Human Papillomavirus-Related Squamous Cell Carcinoma of the Penis 9 26774 -NCIT:C103340 Papillary Carcinoma of the Penis, Not Otherwise Specified 10 26775 -NCIT:C159245 Pseudohyperplastic Carcinoma of the Penis 10 26776 -NCIT:C159246 Pseudoglandular Carcinoma of the Penis 10 26777 -NCIT:C159248 Adenosquamous Carcinoma of the Penis 10 26778 -NCIT:C39959 Mixed Squamous Cell Carcinoma of the Penis 10 26779 -NCIT:C6979 Squamous Cell Carcinoma of the Penis, Usual Type 10 26780 -NCIT:C6982 Verrucous Carcinoma of the Penis 10 26781 -NCIT:C159247 Carcinoma Cuniculatum of the Penis 11 26782 -NCIT:C6984 Sarcomatoid Carcinoma of the Penis 10 26783 -NCIT:C182111 Metastatic Squamous Cell Carcinoma of the Penis 9 26784 -NCIT:C27682 Human Papillomavirus-Related Squamous Cell Carcinoma of the Penis 9 26785 -NCIT:C159250 Warty-Basaloid Carcinoma of the Penis 10 26786 -NCIT:C159251 Clear Cell Squamous Cell Carcinoma of the Penis 10 26787 -NCIT:C159252 Lymphoepithelioma-Like Carcinoma of the Penis 10 26788 -NCIT:C6980 Basaloid Squamous Cell Carcinoma of the Penis 10 26789 -NCIT:C159249 Papillary-Basaloid Carcinoma of the Penis 11 26790 -NCIT:C6981 Warty Carcinoma of the Penis 10 26791 -NCIT:C27790 Penile Carcinoma In Situ 9 26792 -NCIT:C6983 Papillary Carcinoma of the Penis 9 26793 -NCIT:C103340 Papillary Carcinoma of the Penis, Not Otherwise Specified 10 26794 -NCIT:C159249 Papillary-Basaloid Carcinoma of the Penis 10 26795 -NCIT:C6981 Warty Carcinoma of the Penis 10 26796 -NCIT:C6982 Verrucous Carcinoma of the Penis 10 26797 -NCIT:C159247 Carcinoma Cuniculatum of the Penis 11 26798 -NCIT:C7870 Recurrent Penile Carcinoma 8 26799 -NCIT:C90520 Penile Cancer by AJCC v6 Stage 8 26800 -NCIT:C3643 Stage 0 Penile Cancer AJCC v6 9 26801 -NCIT:C7867 Stage I Penile Cancer AJCC v6 9 26802 -NCIT:C7868 Stage II Penile Cancer AJCC v6 9 26803 -NCIT:C7869 Stage III Penile Cancer AJCC v6 9 26804 -NCIT:C8959 Stage IV Penile Cancer AJCC v6 9 26805 -NCIT:C91234 Penile Cancer by AJCC v7 Stage 8 26806 -NCIT:C89194 Stage 0 Penile Cancer AJCC v7 9 26807 -NCIT:C27790 Penile Carcinoma In Situ 10 26808 -NCIT:C89195 Stage I Penile Cancer AJCC v7 9 26809 -NCIT:C89196 Stage II Penile Cancer AJCC v7 9 26810 -NCIT:C89197 Stage III Penile Cancer AJCC v7 9 26811 -NCIT:C88104 Stage IIIa Penile Cancer AJCC v7 10 26812 -NCIT:C88105 Stage IIIb Penile Cancer AJCC v7 10 26813 -NCIT:C89198 Stage IV Penile Cancer AJCC v7 9 26814 -NCIT:C3558 Malignant Epididymal Neoplasm 6 26815 -NCIT:C39957 Epididymal Adenocarcinoma 7 26816 -NCIT:C8544 Metastatic Malignant Neoplasm in the Epididymis 7 26817 -NCIT:C3559 Malignant Spermatic Cord Neoplasm 6 26818 -NCIT:C179466 Recurrent Malignant Spermatic Cord Neoplasm 7 26819 -NCIT:C7251 Malignant Testicular Neoplasm 6 26820 -NCIT:C140225 Testicular Cancer by AJCC v8 Stage 7 26821 -NCIT:C140226 Stage 0 Testicular Cancer AJCC v8 8 26822 -NCIT:C40345 Testicular Intratubular Germ Cell Neoplasia 9 26823 -NCIT:C7325 Intratubular Non-Seminoma 10 26824 -NCIT:C7329 Intratubular Seminoma 10 26825 -NCIT:C140227 Stage I Testicular Cancer AJCC v8 8 26826 -NCIT:C140228 Stage IA Testicular Cancer AJCC v8 9 26827 -NCIT:C140229 Stage IB Testicular Cancer AJCC v8 9 26828 -NCIT:C140232 Stage IS Testicular Cancer AJCC v8 9 26829 -NCIT:C140233 Stage II Testicular Cancer AJCC v8 8 26830 -NCIT:C140234 Stage IIA Testicular Cancer AJCC v8 9 26831 -NCIT:C140235 Stage IIB Testicular Cancer AJCC v8 9 26832 -NCIT:C140236 Stage IIC Testicular Cancer AJCC v8 9 26833 -NCIT:C140237 Stage III Testicular Cancer AJCC v8 8 26834 -NCIT:C140238 Stage IIIA Testicular Cancer AJCC v8 9 26835 -NCIT:C140239 Stage IIIB Testicular Cancer AJCC v8 9 26836 -NCIT:C140240 Stage IIIC Testicular Cancer AJCC v8 9 26837 -NCIT:C140241 Testicular Cancer by AJCC v6 and v7 Stage 7 26838 -NCIT:C4523 Stage 0 Testicular Cancer AJCC v6 and v7 8 26839 -NCIT:C40345 Testicular Intratubular Germ Cell Neoplasia 9 26840 -NCIT:C7325 Intratubular Non-Seminoma 10 26841 -NCIT:C7329 Intratubular Seminoma 10 26842 -NCIT:C7901 Stage I Testicular Cancer AJCC v6 and v7 8 26843 -NCIT:C27785 Stage I Testicular Non-Seminomatous Germ Cell Tumor AJCC v6 and v7 9 26844 -NCIT:C8907 Stage I Testicular Choriocarcinoma AJCC v6 and v7 10 26845 -NCIT:C8908 Stage I Testicular Embryonal Carcinoma AJCC v6 and v7 10 26846 -NCIT:C8914 Stage I Immature Testicular Teratoma AJCC v6 and v7 10 26847 -NCIT:C8920 Stage I Testicular Yolk Sac Tumor AJCC v6 and v7 10 26848 -NCIT:C6361 Stage IA Testicular Cancer AJCC v6 and v7 9 26849 -NCIT:C6362 Stage IB Testicular Cancer AJCC v6 and v7 9 26850 -NCIT:C6363 Stage IS Testicular Cancer AJCC v6 and v7 9 26851 -NCIT:C8912 Stage I Testicular Mixed Germ Cell Tumor AJCC v6 and v7 9 26852 -NCIT:C8917 Stage I Testicular Seminoma AJCC v6 and v7 9 26853 -NCIT:C9073 Stage II Testicular Cancer AJCC v6 and v7 8 26854 -NCIT:C27786 Stage II Testicular Non-Seminomatous Germ Cell Tumor AJCC v6 and v7 9 26855 -NCIT:C8606 Stage II Testicular Choriocarcinoma AJCC v6 and v7 10 26856 -NCIT:C8909 Stage II Testicular Embryonal Carcinoma AJCC v6 and v7 10 26857 -NCIT:C8915 Stage II Immature Testicular Teratoma AJCC v6 and v7 10 26858 -NCIT:C8921 Stage II Testicular Yolk Sac Tumor AJCC v6 and v7 10 26859 -NCIT:C6364 Stage IIA Testicular Cancer AJCC v6 and v7 9 26860 -NCIT:C6365 Stage IIB Testicular Cancer AJCC v6 and v7 9 26861 -NCIT:C6366 Stage IIC Testicular Cancer AJCC v6 and v7 9 26862 -NCIT:C8911 Stage II Testicular Mixed Germ Cell Tumor AJCC v6 and v7 9 26863 -NCIT:C8918 Stage II Testicular Seminoma AJCC v6 and v7 9 26864 -NCIT:C9074 Stage III Testicular Cancer AJCC v6 and v7 8 26865 -NCIT:C27787 Stage III Testicular Non-Seminomatous Germ Cell Tumor AJCC v6 and v7 9 26866 -NCIT:C8900 Stage III Testicular Choriocarcinoma AJCC v6 and v7 10 26867 -NCIT:C8910 Stage III Testicular Embryonal Carcinoma AJCC v6 and v7 10 26868 -NCIT:C8916 Stage III Immature Testicular Teratoma AJCC v6 and v7 10 26869 -NCIT:C8922 Stage III Testicular Yolk Sac Tumor AJCC v6 and v7 10 26870 -NCIT:C6367 Stage IIIC Testicular Cancer AJCC v6 and v7 9 26871 -NCIT:C6368 Stage IIIB Testicular Cancer AJCC v6 and v7 9 26872 -NCIT:C6369 Stage IIIA Testicular Cancer AJCC v6 and v7 9 26873 -NCIT:C8913 Stage III Testicular Mixed Germ Cell Tumor AJCC v6 and v7 9 26874 -NCIT:C8919 Stage III Testicular Seminoma AJCC v6 and v7 9 26875 -NCIT:C162469 Testicular Myeloid Sarcoma 7 26876 -NCIT:C162470 Testicular Plasmacytoma 7 26877 -NCIT:C39948 Malignant Testicular Sex Cord-Stromal Tumor 7 26878 -NCIT:C4584 Metastatic Malignant Neoplasm in the Testis 7 26879 -NCIT:C6359 Testicular Sarcoma 7 26880 -NCIT:C6378 Testicular Rhabdomyosarcoma 8 26881 -NCIT:C6810 Testicular Lymphoma 7 26882 -NCIT:C138021 Recurrent Testicular Lymphoma 8 26883 -NCIT:C138022 Refractory Testicular Lymphoma 8 26884 -NCIT:C150589 Testicular Follicular Lymphoma 8 26885 -NCIT:C162467 Testicular Diffuse Large B-Cell Lymphoma 8 26886 -NCIT:C162468 Testicular Nasal Type Extranodal NK/T-Cell Lymphoma 8 26887 -NCIT:C9063 Malignant Testicular Germ Cell Tumor 7 26888 -NCIT:C189057 Postpubertal-Type Testicular Teratoma 8 26889 -NCIT:C25771 Metastatic Malignant Testicular Germ Cell Tumor 8 26890 -NCIT:C187316 Advanced Malignant Testicular Germ Cell Tumor 9 26891 -NCIT:C39921 Testicular Spermatocytic Tumor 8 26892 -NCIT:C39922 Testicular Spermatocytic Tumor with Sarcoma 9 26893 -NCIT:C40962 Testicular Polyembryoma 8 26894 -NCIT:C5027 Malignant Testicular Non-Seminomatous Germ Cell Tumor 8 26895 -NCIT:C27785 Stage I Testicular Non-Seminomatous Germ Cell Tumor AJCC v6 and v7 9 26896 -NCIT:C8907 Stage I Testicular Choriocarcinoma AJCC v6 and v7 10 26897 -NCIT:C8908 Stage I Testicular Embryonal Carcinoma AJCC v6 and v7 10 26898 -NCIT:C8914 Stage I Immature Testicular Teratoma AJCC v6 and v7 10 26899 -NCIT:C8920 Stage I Testicular Yolk Sac Tumor AJCC v6 and v7 10 26900 -NCIT:C27786 Stage II Testicular Non-Seminomatous Germ Cell Tumor AJCC v6 and v7 9 26901 -NCIT:C8606 Stage II Testicular Choriocarcinoma AJCC v6 and v7 10 26902 -NCIT:C8909 Stage II Testicular Embryonal Carcinoma AJCC v6 and v7 10 26903 -NCIT:C8915 Stage II Immature Testicular Teratoma AJCC v6 and v7 10 26904 -NCIT:C8921 Stage II Testicular Yolk Sac Tumor AJCC v6 and v7 10 26905 -NCIT:C27787 Stage III Testicular Non-Seminomatous Germ Cell Tumor AJCC v6 and v7 9 26906 -NCIT:C8900 Stage III Testicular Choriocarcinoma AJCC v6 and v7 10 26907 -NCIT:C8910 Stage III Testicular Embryonal Carcinoma AJCC v6 and v7 10 26908 -NCIT:C8916 Stage III Immature Testicular Teratoma AJCC v6 and v7 10 26909 -NCIT:C8922 Stage III Testicular Yolk Sac Tumor AJCC v6 and v7 10 26910 -NCIT:C35711 Testicular Teratoma with Somatic-Type Malignancy 9 26911 -NCIT:C6341 Testicular Embryonal Carcinoma 9 26912 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 10 26913 -NCIT:C7325 Intratubular Non-Seminoma 10 26914 -NCIT:C8908 Stage I Testicular Embryonal Carcinoma AJCC v6 and v7 10 26915 -NCIT:C8909 Stage II Testicular Embryonal Carcinoma AJCC v6 and v7 10 26916 -NCIT:C8910 Stage III Testicular Embryonal Carcinoma AJCC v6 and v7 10 26917 -NCIT:C6351 Testicular Mixed Embryonal Carcinoma and Teratoma 9 26918 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 10 26919 -NCIT:C7733 Testicular Choriocarcinoma 9 26920 -NCIT:C39935 Testicular Monophasic Choriocarcinoma 10 26921 -NCIT:C6544 Childhood Testicular Choriocarcinoma 10 26922 -NCIT:C8606 Stage II Testicular Choriocarcinoma AJCC v6 and v7 10 26923 -NCIT:C8900 Stage III Testicular Choriocarcinoma AJCC v6 and v7 10 26924 -NCIT:C8907 Stage I Testicular Choriocarcinoma AJCC v6 and v7 10 26925 -NCIT:C8000 Testicular Yolk Sac Tumor 9 26926 -NCIT:C39923 Testicular Yolk Sac Tumor, Microcystic Pattern 10 26927 -NCIT:C39924 Testicular Yolk Sac Tumor, Macrocystic Pattern 10 26928 -NCIT:C39925 Testicular Yolk Sac Tumor, Solid Pattern 10 26929 -NCIT:C39926 Testicular Yolk Sac Tumor, Glandular-Alveolar Pattern 10 26930 -NCIT:C39927 Testicular Yolk Sac Tumor, Endodermal Sinus/Perivascular Pattern 10 26931 -NCIT:C39928 Testicular Yolk Sac Tumor, Papillary Pattern 10 26932 -NCIT:C39929 Testicular Yolk Sac Tumor, Myxomatous Pattern 10 26933 -NCIT:C39930 Testicular Yolk Sac Tumor, Polyvesicular Vitelline Pattern 10 26934 -NCIT:C39931 Testicular Yolk Sac Tumor, Hepatoid Pattern 10 26935 -NCIT:C39932 Testicular Yolk Sac Tumor, Enteric Pattern 10 26936 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 10 26937 -NCIT:C8920 Stage I Testicular Yolk Sac Tumor AJCC v6 and v7 10 26938 -NCIT:C8921 Stage II Testicular Yolk Sac Tumor AJCC v6 and v7 10 26939 -NCIT:C8922 Stage III Testicular Yolk Sac Tumor AJCC v6 and v7 10 26940 -NCIT:C8001 Testicular Mixed Embryonal Carcinoma and Yolk Sac Tumor 9 26941 -NCIT:C8002 Testicular Mixed Yolk Sac Tumor and Teratoma 9 26942 -NCIT:C6347 Testicular Mixed Germ Cell Tumor 8 26943 -NCIT:C6348 Testicular Mixed Choriocarcinoma and Embryonal Carcinoma 9 26944 -NCIT:C6349 Testicular Mixed Choriocarcinoma and Teratoma 9 26945 -NCIT:C6350 Testicular Mixed Embryonal Carcinoma and Seminoma 9 26946 -NCIT:C6351 Testicular Mixed Embryonal Carcinoma and Teratoma 9 26947 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 10 26948 -NCIT:C6352 Testicular Mixed Embryonal Carcinoma and Teratoma with Seminoma 9 26949 -NCIT:C6542 Childhood Testicular Mixed Germ Cell Tumor 9 26950 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 10 26951 -NCIT:C67548 Testicular Mixed Choriocarcinoma and Yolk Sac Tumor 9 26952 -NCIT:C8001 Testicular Mixed Embryonal Carcinoma and Yolk Sac Tumor 9 26953 -NCIT:C8002 Testicular Mixed Yolk Sac Tumor and Teratoma 9 26954 -NCIT:C8003 Testicular Mixed Yolk Sac Tumor and Teratoma with Seminoma 9 26955 -NCIT:C8911 Stage II Testicular Mixed Germ Cell Tumor AJCC v6 and v7 9 26956 -NCIT:C8912 Stage I Testicular Mixed Germ Cell Tumor AJCC v6 and v7 9 26957 -NCIT:C8913 Stage III Testicular Mixed Germ Cell Tumor AJCC v6 and v7 9 26958 -NCIT:C9172 Testicular Mixed Embryonal Carcinoma and Yolk Sac Tumor with Seminoma 9 26959 -NCIT:C9173 Testicular Mixed Choriocarcinoma and Seminoma 9 26960 -NCIT:C68628 Childhood Malignant Testicular Germ Cell Tumor 8 26961 -NCIT:C6542 Childhood Testicular Mixed Germ Cell Tumor 9 26962 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 10 26963 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 9 26964 -NCIT:C6544 Childhood Testicular Choriocarcinoma 9 26965 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 9 26966 -NCIT:C7326 Testicular Germ Cell Neoplasia In Situ with Extratubular Extension 8 26967 -NCIT:C7328 Testicular Seminoma 8 26968 -NCIT:C39919 Testicular Seminoma with Syncytiotrophoblastic Cells 9 26969 -NCIT:C39920 Testicular Seminoma with High Mitotic Index 9 26970 -NCIT:C40957 Testicular Seminoma, Cribriform Variant 9 26971 -NCIT:C40958 Testicular Seminoma, Pseudoglandular Variant 9 26972 -NCIT:C40959 Testicular Seminoma, Tubular Variant 9 26973 -NCIT:C61383 Testicular Typical Seminoma 9 26974 -NCIT:C7329 Intratubular Seminoma 9 26975 -NCIT:C8917 Stage I Testicular Seminoma AJCC v6 and v7 9 26976 -NCIT:C8918 Stage II Testicular Seminoma AJCC v6 and v7 9 26977 -NCIT:C8919 Stage III Testicular Seminoma AJCC v6 and v7 9 26978 -NCIT:C9077 Refractory Malignant Testicular Germ Cell Tumor 8 26979 -NCIT:C9369 Recurrent Malignant Testicular Germ Cell Tumor 8 26980 -NCIT:C9277 Testicular Leukemia 7 26981 -NCIT:C7378 Malignant Prostate Neoplasm 6 26982 -NCIT:C161580 Prostate Malignant Solitary Fibrous Tumor 7 26983 -NCIT:C161607 Prostate Wilms Tumor 7 26984 -NCIT:C161608 Extrarenal Rhabdoid Tumor of the Prostate 7 26985 -NCIT:C161611 Prostate Melanoma 7 26986 -NCIT:C3642 Grade III Prostatic Intraepithelial Neoplasia 7 26987 -NCIT:C4863 Prostate Carcinoma 7 26988 -NCIT:C103817 Hereditary Prostate Carcinoma 8 26989 -NCIT:C114933 Hormone-Resistant Prostate Carcinoma 8 26990 -NCIT:C138167 Prostate Carcinoma by Gene Expression Profile 8 26991 -NCIT:C138168 Luminal A Prostate Carcinoma 9 26992 -NCIT:C138169 Luminal B Prostate Carcinoma 9 26993 -NCIT:C138170 Basal-Like Prostate Carcinoma 9 26994 -NCIT:C140163 Prostate Cancer by AJCC v8 Stage 8 26995 -NCIT:C140164 Stage I Prostate Cancer AJCC v8 9 26996 -NCIT:C140165 Stage II Prostate Cancer AJCC v8 9 26997 -NCIT:C140166 Stage IIA Prostate Cancer AJCC v8 10 26998 -NCIT:C140167 Stage IIB Prostate Cancer AJCC v8 10 26999 -NCIT:C140168 Stage IIC Prostate Cancer AJCC v8 10 27000 -NCIT:C140169 Stage III Prostate Cancer AJCC v8 9 27001 -NCIT:C140170 Stage IIIA Prostate Cancer AJCC v8 10 27002 -NCIT:C140171 Stage IIIB Prostate Cancer AJCC v8 10 27003 -NCIT:C140172 Stage IIIC Prostate Cancer AJCC v8 10 27004 -NCIT:C140173 Stage IV Prostate Cancer AJCC v8 9 27005 -NCIT:C140174 Stage IVA Prostate Cancer AJCC v8 10 27006 -NCIT:C140175 Stage IVB Prostate Cancer AJCC v8 10 27007 -NCIT:C161022 Intraductal Prostate Carcinoma 8 27008 -NCIT:C167255 Refractory Prostate Carcinoma 8 27009 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 9 27010 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 10 27011 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 10 27012 -NCIT:C161609 Double-Negative Prostate Carcinoma 10 27013 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 10 27014 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 10 27015 -NCIT:C167256 Refractory Prostate Adenocarcinoma 9 27016 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 9 27017 -NCIT:C171611 Unresectable Prostate Carcinoma 8 27018 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 9 27019 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 27020 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 9 27021 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 9 27022 -NCIT:C176517 Localized Prostate Carcinoma 8 27023 -NCIT:C39898 Primary Prostate Urothelial Carcinoma 8 27024 -NCIT:C39900 Prostatic Urethra Urothelial Carcinoma 9 27025 -NCIT:C39901 Prostatic Duct Urothelial Carcinoma 9 27026 -NCIT:C48596 Invasive Prostate Carcinoma 8 27027 -NCIT:C158912 Prostate Neuroendocrine Carcinoma 9 27028 -NCIT:C158650 Prostate Large Cell Neuroendocrine Carcinoma 10 27029 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 10 27030 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 11 27031 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 11 27032 -NCIT:C6766 Prostate Small Cell Neuroendocrine Carcinoma 10 27033 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 11 27034 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 11 27035 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 11 27036 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 11 27037 -NCIT:C2919 Prostate Adenocarcinoma 9 27038 -NCIT:C150557 Prostate Adenocarcinoma without Neuroendocrine Differentiation 10 27039 -NCIT:C164185 Aggressive Prostate Adenocarcinoma 10 27040 -NCIT:C164186 Prostate Adenocarcinoma by AJCC v7 Stage 10 27041 -NCIT:C8947 Stage I Prostate Adenocarcinoma AJCC v7 11 27042 -NCIT:C8948 Stage II Prostate Adenocarcinoma AJCC v7 11 27043 -NCIT:C8949 Stage III Prostate Adenocarcinoma AJCC v7 11 27044 -NCIT:C8950 Stage IV Prostate Adenocarcinoma AJCC v7 11 27045 -NCIT:C167256 Refractory Prostate Adenocarcinoma 10 27046 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 10 27047 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 11 27048 -NCIT:C27905 Well Differentiated Prostate Adenocarcinoma 10 27049 -NCIT:C39896 Prostate Ductal Adenocarcinoma, Papillary Pattern 11 27050 -NCIT:C27906 Moderately Differentiated Prostate Adenocarcinoma 10 27051 -NCIT:C27916 Poorly Differentiated Prostate Adenocarcinoma 10 27052 -NCIT:C5530 Prostate Acinar Adenocarcinoma, Sarcomatoid Variant 11 27053 -NCIT:C39903 Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 27054 -NCIT:C158656 Usual Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 27055 -NCIT:C158664 Prostate Adenocarcinoma with Paneth Cell-Like Neuroendocrine Differentiation 11 27056 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 27057 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 12 27058 -NCIT:C5596 Prostate Acinar Adenocarcinoma 10 27059 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 11 27060 -NCIT:C158656 Usual Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 27061 -NCIT:C160817 Prostate Acinar Adenocarcinoma, Microcystic Variant 11 27062 -NCIT:C160818 Prostate Acinar Adenocarcinoma, Pleomorphic Giant Cell Variant 11 27063 -NCIT:C39880 Prostate Acinar Adenocarcinoma, Atrophic Variant 11 27064 -NCIT:C39881 Prostate Acinar Adenocarcinoma, Pseudohyperplastic Variant 11 27065 -NCIT:C39882 Prostate Acinar Adenocarcinoma, Foamy Gland Variant 11 27066 -NCIT:C39884 Prostate Acinar Adenocarcinoma, Oncocytic Variant 11 27067 -NCIT:C39885 Prostate Acinar Adenocarcinoma, Lymphoepithelioma-Like Variant 11 27068 -NCIT:C5530 Prostate Acinar Adenocarcinoma, Sarcomatoid Variant 11 27069 -NCIT:C5535 Prostate Acinar Adenocarcinoma, Signet Ring-Like Cell Variant 11 27070 -NCIT:C5537 Prostate Acinar Mucinous Adenocarcinoma 11 27071 -NCIT:C6813 Prostate Ductal Adenocarcinoma 10 27072 -NCIT:C39895 Prostate Ductal Adenocarcinoma, Cribriform Pattern 11 27073 -NCIT:C39896 Prostate Ductal Adenocarcinoma, Papillary Pattern 11 27074 -NCIT:C39897 Prostate Ductal Adenocarcinoma, Solid Pattern 11 27075 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 10 27076 -NCIT:C156286 Advanced Prostate Adenocarcinoma 11 27077 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 12 27078 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 11 27079 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 12 27080 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 27081 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 12 27082 -NCIT:C39902 Prostate Basal Cell Carcinoma 9 27083 -NCIT:C5536 Prostate Squamous Cell Carcinoma 9 27084 -NCIT:C5538 Prostate Adenosquamous Carcinoma 9 27085 -NCIT:C5539 Prostate Adenoid Cystic Carcinoma 9 27086 -NCIT:C5597 Prostate Undifferentiated Carcinoma 9 27087 -NCIT:C7079 Prostate Cancer by Whitmore-Jewett Stage 8 27088 -NCIT:C7099 Stage D Prostate Cancer 9 27089 -NCIT:C7552 Stage C Prostate Cancer 9 27090 -NCIT:C7554 Stage B Prostate Cancer 9 27091 -NCIT:C7556 Stage A Prostate Cancer 9 27092 -NCIT:C7902 Recurrent Prostate Carcinoma 8 27093 -NCIT:C156771 Biochemically Recurrent Prostate Carcinoma 9 27094 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 9 27095 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 10 27096 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 9 27097 -NCIT:C8946 Metastatic Prostate Carcinoma 8 27098 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 9 27099 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 10 27100 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 10 27101 -NCIT:C161609 Double-Negative Prostate Carcinoma 10 27102 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 10 27103 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 10 27104 -NCIT:C132881 Prostate Carcinoma Metastatic in the Soft Tissue 9 27105 -NCIT:C148536 Castration-Naive Prostate Carcinoma 9 27106 -NCIT:C153336 Castration-Sensitive Prostate Carcinoma 9 27107 -NCIT:C156284 Advanced Prostate Carcinoma 9 27108 -NCIT:C156286 Advanced Prostate Adenocarcinoma 10 27109 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 27110 -NCIT:C156285 Locally Advanced Prostate Carcinoma 9 27111 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 10 27112 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 11 27113 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 10 27114 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 11 27115 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 10 27116 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 9 27117 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 10 27118 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 10 27119 -NCIT:C161584 Prostate Carcinoma Metastatic in the Pelvic Cavity 9 27120 -NCIT:C161587 Prostate Carcinoma Metastatic in the Lymph Nodes 9 27121 -NCIT:C171265 Oligometastatic Prostate Carcinoma 9 27122 -NCIT:C36307 Prostate Carcinoma Metastatic in the Lung 9 27123 -NCIT:C36308 Prostate Carcinoma Metastatic in the Bone 9 27124 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 9 27125 -NCIT:C156286 Advanced Prostate Adenocarcinoma 10 27126 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 27127 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 10 27128 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 11 27129 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 27130 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 27131 -NCIT:C90521 Prostate Cancer by AJCC v6 Stage 8 27132 -NCIT:C7551 Stage III Prostate Cancer AJCC v6 9 27133 -NCIT:C7553 Stage II Prostate Cancer AJCC v6 9 27134 -NCIT:C7555 Stage I Prostate Cancer AJCC v6 9 27135 -NCIT:C9075 Stage IV Prostate Cancer AJCC v6 9 27136 -NCIT:C91233 Prostate Cancer by AJCC v7 Stage 8 27137 -NCIT:C164186 Prostate Adenocarcinoma by AJCC v7 Stage 9 27138 -NCIT:C8947 Stage I Prostate Adenocarcinoma AJCC v7 10 27139 -NCIT:C8948 Stage II Prostate Adenocarcinoma AJCC v7 10 27140 -NCIT:C8949 Stage III Prostate Adenocarcinoma AJCC v7 10 27141 -NCIT:C8950 Stage IV Prostate Adenocarcinoma AJCC v7 10 27142 -NCIT:C89232 Stage I Prostate Cancer AJCC v7 9 27143 -NCIT:C8947 Stage I Prostate Adenocarcinoma AJCC v7 10 27144 -NCIT:C89233 Stage II Prostate Cancer AJCC v7 9 27145 -NCIT:C88106 Stage IIA Prostate Cancer AJCC v7 10 27146 -NCIT:C88107 Stage IIB Prostate Cancer AJCC v7 10 27147 -NCIT:C8948 Stage II Prostate Adenocarcinoma AJCC v7 10 27148 -NCIT:C89234 Stage III Prostate Cancer AJCC v7 9 27149 -NCIT:C8949 Stage III Prostate Adenocarcinoma AJCC v7 10 27150 -NCIT:C89235 Stage IV Prostate Cancer AJCC v7 9 27151 -NCIT:C8950 Stage IV Prostate Adenocarcinoma AJCC v7 10 27152 -NCIT:C5527 Prostate Myeloid Sarcoma 7 27153 -NCIT:C5531 Malignant Prostate Phyllodes Tumor 7 27154 -NCIT:C5533 Prostate Lymphoma 7 27155 -NCIT:C5534 Prostate Non-Hodgkin Lymphoma 8 27156 -NCIT:C161602 Prostate Diffuse Large B-Cell Lymphoma 9 27157 -NCIT:C161603 Prostate Follicular Lymphoma 9 27158 -NCIT:C161604 Prostate Mantle Cell Lymphoma 9 27159 -NCIT:C161605 Prostate Small Lymphocytic Lymphoma 9 27160 -NCIT:C7080 Metastatic Malignant Neoplasm in the Prostate Gland 7 27161 -NCIT:C39899 Secondary Prostate Urothelial Carcinoma 8 27162 -NCIT:C7731 Prostate Sarcoma 7 27163 -NCIT:C161034 Prostate Synovial Sarcoma 8 27164 -NCIT:C161035 Prostate Osteosarcoma 8 27165 -NCIT:C161038 Prostate Undifferentiated Pleomorphic Sarcoma 8 27166 -NCIT:C5522 Prostate Rhabdomyosarcoma 8 27167 -NCIT:C188070 Prostate Alveolar Rhabdomyosarcoma 9 27168 -NCIT:C5525 Prostate Embryonal Rhabdomyosarcoma 9 27169 -NCIT:C5523 Prostate Kaposi Sarcoma 8 27170 -NCIT:C5524 Prostate Stromal Sarcoma 8 27171 -NCIT:C5526 Prostate Leiomyosarcoma 8 27172 -NCIT:C5528 Prostate Angiosarcoma 8 27173 -NCIT:C7547 Malignant Penile Neoplasm 6 27174 -NCIT:C118821 Childhood Malignant Penile Neoplasm 7 27175 -NCIT:C162547 Penile Melanoma 7 27176 -NCIT:C178517 Penile Mucosal Melanoma 8 27177 -NCIT:C178518 Penile Cutaneous Melanoma 8 27178 -NCIT:C162548 Penile Lymphoma 7 27179 -NCIT:C162549 Metastatic Malignant Neoplasm in the Penis 7 27180 -NCIT:C162581 Penile Epithelioid Hemangioendothelioma 7 27181 -NCIT:C7730 Penile Sarcoma 7 27182 -NCIT:C162578 Penile Angiosarcoma 8 27183 -NCIT:C162584 Penile Malignant Peripheral Nerve Sheath Tumor 8 27184 -NCIT:C162585 Penile Leiomyosarcoma 8 27185 -NCIT:C162588 Penile Rhabdomyosarcoma 8 27186 -NCIT:C162589 Penile Undifferentiated Pleomorphic Sarcoma 8 27187 -NCIT:C6377 Penile Kaposi Sarcoma 8 27188 -NCIT:C9061 Penile Carcinoma 7 27189 -NCIT:C118820 Adult Penile Carcinoma 8 27190 -NCIT:C140075 Penile Cancer by AJCC v8 Stage 8 27191 -NCIT:C140076 Stage 0 Penile Cancer AJCC v8 9 27192 -NCIT:C140077 Stage 0is Penile Cancer AJCC v8 10 27193 -NCIT:C140078 Stage 0a Penile Cancer AJCC v8 10 27194 -NCIT:C140079 Stage I Penile Cancer AJCC v8 9 27195 -NCIT:C140080 Stage II Penile Cancer AJCC v8 9 27196 -NCIT:C140081 Stage IIA Penile Cancer AJCC v8 10 27197 -NCIT:C140083 Stage IIB Penile Cancer AJCC v8 10 27198 -NCIT:C140084 Stage III Penile Cancer AJCC v8 9 27199 -NCIT:C140085 Stage IIIA Penile Cancer AJCC v8 10 27200 -NCIT:C140086 Stage IIIB Penile Cancer AJCC v8 10 27201 -NCIT:C140087 Stage IV Penile Cancer AJCC v8 9 27202 -NCIT:C177150 Refractory Penile Carcinoma 8 27203 -NCIT:C27784 Metastatic Penile Carcinoma 8 27204 -NCIT:C170789 Locally Advanced Penile Carcinoma 9 27205 -NCIT:C170790 Advanced Penile Carcinoma 9 27206 -NCIT:C182111 Metastatic Squamous Cell Carcinoma of the Penis 9 27207 -NCIT:C27817 Penile Paget Disease 8 27208 -NCIT:C39961 Penile Basal Cell Carcinoma 8 27209 -NCIT:C7729 Squamous Cell Carcinoma of the Penis 8 27210 -NCIT:C159244 Non-Human Papillomavirus-Related Squamous Cell Carcinoma of the Penis 9 27211 -NCIT:C103340 Papillary Carcinoma of the Penis, Not Otherwise Specified 10 27212 -NCIT:C159245 Pseudohyperplastic Carcinoma of the Penis 10 27213 -NCIT:C159246 Pseudoglandular Carcinoma of the Penis 10 27214 -NCIT:C159248 Adenosquamous Carcinoma of the Penis 10 27215 -NCIT:C39959 Mixed Squamous Cell Carcinoma of the Penis 10 27216 -NCIT:C6979 Squamous Cell Carcinoma of the Penis, Usual Type 10 27217 -NCIT:C6982 Verrucous Carcinoma of the Penis 10 27218 -NCIT:C159247 Carcinoma Cuniculatum of the Penis 11 27219 -NCIT:C6984 Sarcomatoid Carcinoma of the Penis 10 27220 -NCIT:C182111 Metastatic Squamous Cell Carcinoma of the Penis 9 27221 -NCIT:C27682 Human Papillomavirus-Related Squamous Cell Carcinoma of the Penis 9 27222 -NCIT:C159250 Warty-Basaloid Carcinoma of the Penis 10 27223 -NCIT:C159251 Clear Cell Squamous Cell Carcinoma of the Penis 10 27224 -NCIT:C159252 Lymphoepithelioma-Like Carcinoma of the Penis 10 27225 -NCIT:C6980 Basaloid Squamous Cell Carcinoma of the Penis 10 27226 -NCIT:C159249 Papillary-Basaloid Carcinoma of the Penis 11 27227 -NCIT:C6981 Warty Carcinoma of the Penis 10 27228 -NCIT:C27790 Penile Carcinoma In Situ 9 27229 -NCIT:C6983 Papillary Carcinoma of the Penis 9 27230 -NCIT:C103340 Papillary Carcinoma of the Penis, Not Otherwise Specified 10 27231 -NCIT:C159249 Papillary-Basaloid Carcinoma of the Penis 10 27232 -NCIT:C6981 Warty Carcinoma of the Penis 10 27233 -NCIT:C6982 Verrucous Carcinoma of the Penis 10 27234 -NCIT:C159247 Carcinoma Cuniculatum of the Penis 11 27235 -NCIT:C7870 Recurrent Penile Carcinoma 8 27236 -NCIT:C90520 Penile Cancer by AJCC v6 Stage 8 27237 -NCIT:C3643 Stage 0 Penile Cancer AJCC v6 9 27238 -NCIT:C7867 Stage I Penile Cancer AJCC v6 9 27239 -NCIT:C7868 Stage II Penile Cancer AJCC v6 9 27240 -NCIT:C7869 Stage III Penile Cancer AJCC v6 9 27241 -NCIT:C8959 Stage IV Penile Cancer AJCC v6 9 27242 -NCIT:C91234 Penile Cancer by AJCC v7 Stage 8 27243 -NCIT:C89194 Stage 0 Penile Cancer AJCC v7 9 27244 -NCIT:C27790 Penile Carcinoma In Situ 10 27245 -NCIT:C89195 Stage I Penile Cancer AJCC v7 9 27246 -NCIT:C89196 Stage II Penile Cancer AJCC v7 9 27247 -NCIT:C89197 Stage III Penile Cancer AJCC v7 9 27248 -NCIT:C88104 Stage IIIa Penile Cancer AJCC v7 10 27249 -NCIT:C88105 Stage IIIb Penile Cancer AJCC v7 10 27250 -NCIT:C89198 Stage IV Penile Cancer AJCC v7 9 27251 -NCIT:C3794 Sex Cord-Stromal Tumor 4 27252 -NCIT:C156943 Adrenal Cortical Sex Cord-Stromal Tumor 5 27253 -NCIT:C3070 Granulosa Cell Tumor 5 27254 -NCIT:C4205 Malignant Granulosa Cell Tumor 6 27255 -NCIT:C8403 Malignant Ovarian Granulosa Cell Tumor 7 27256 -NCIT:C160619 Recurrent Malignant Ovarian Granulosa Cell Tumor 8 27257 -NCIT:C4207 Juvenile Granulosa Cell Tumor 6 27258 -NCIT:C39947 Juvenile Testicular Granulosa Cell Tumor 7 27259 -NCIT:C7289 Juvenile Ovarian Granulosa Cell Tumor 7 27260 -NCIT:C40434 Juvenile Bilateral Ovarian Granulosa Cell Tumor 8 27261 -NCIT:C6261 Ovarian Granulosa Cell Tumor 6 27262 -NCIT:C7288 Adult Ovarian Granulosa Cell Tumor 7 27263 -NCIT:C7289 Juvenile Ovarian Granulosa Cell Tumor 7 27264 -NCIT:C40434 Juvenile Bilateral Ovarian Granulosa Cell Tumor 8 27265 -NCIT:C8403 Malignant Ovarian Granulosa Cell Tumor 7 27266 -NCIT:C160619 Recurrent Malignant Ovarian Granulosa Cell Tumor 8 27267 -NCIT:C6357 Testicular Granulosa Cell Tumor 6 27268 -NCIT:C39946 Adult Testicular Granulosa Cell Tumor 7 27269 -NCIT:C39947 Juvenile Testicular Granulosa Cell Tumor 7 27270 -NCIT:C66750 Adult Granulosa Cell Tumor 6 27271 -NCIT:C39946 Adult Testicular Granulosa Cell Tumor 7 27272 -NCIT:C7288 Adult Ovarian Granulosa Cell Tumor 7 27273 -NCIT:C3188 Leydig Cell Tumor 5 27274 -NCIT:C4212 Benign Leydig Cell Tumor 6 27275 -NCIT:C4213 Malignant Leydig Cell Tumor 6 27276 -NCIT:C39942 Malignant Testicular Leydig Cell Tumor 7 27277 -NCIT:C5231 Ovarian Leydig Cell Tumor 6 27278 -NCIT:C39983 Ovarian Leydig Cell Tumor, Non-Hilar Type 7 27279 -NCIT:C39984 Ovarian Leydig Cell Tumor, Not Otherwise Specified 7 27280 -NCIT:C4214 Ovarian Hilus Cell Tumor 7 27281 -NCIT:C6356 Testicular Leydig Cell Tumor 6 27282 -NCIT:C39942 Malignant Testicular Leydig Cell Tumor 7 27283 -NCIT:C39950 Tumor of the Thecoma/Fibroma Group 5 27284 -NCIT:C3405 Thecoma 6 27285 -NCIT:C39952 Testicular Thecoma 7 27286 -NCIT:C66989 Ovarian Thecoma 7 27287 -NCIT:C4203 Ovarian Luteinized Thecoma 8 27288 -NCIT:C6263 Malignant Ovarian Luteinized Thecoma 9 27289 -NCIT:C6264 Benign Ovarian Luteinized Thecoma 9 27290 -NCIT:C126321 Ovarian Luteinized Thecoma Associated with Sclerosing Peritonitis 10 27291 -NCIT:C5219 Benign Ovarian Thecoma 8 27292 -NCIT:C39964 Typical Ovarian Thecoma 9 27293 -NCIT:C6264 Benign Ovarian Luteinized Thecoma 9 27294 -NCIT:C126321 Ovarian Luteinized Thecoma Associated with Sclerosing Peritonitis 10 27295 -NCIT:C6929 Malignant Ovarian Thecoma 8 27296 -NCIT:C6263 Malignant Ovarian Luteinized Thecoma 9 27297 -NCIT:C39949 Testicular Tumor of the Thecoma/Fibroma Group 6 27298 -NCIT:C162966 Testicular Signet Ring Stromal Tumor 7 27299 -NCIT:C39951 Testicular Fibroma 7 27300 -NCIT:C39952 Testicular Thecoma 7 27301 -NCIT:C7290 Ovarian Tumor of the Thecoma/Fibroma Group 6 27302 -NCIT:C3498 Ovarian Fibroma 7 27303 -NCIT:C189288 Childhood Ovarian Fibroma 8 27304 -NCIT:C7291 Ovarian Cellular Fibroma 8 27305 -NCIT:C39965 Ovarian Signet Ring Stromal Tumor 7 27306 -NCIT:C4204 Ovarian Sclerosing Stromal Tumor 7 27307 -NCIT:C189289 Childhood Ovarian Sclerosing Stromal Tumor 8 27308 -NCIT:C66989 Ovarian Thecoma 7 27309 -NCIT:C4203 Ovarian Luteinized Thecoma 8 27310 -NCIT:C6263 Malignant Ovarian Luteinized Thecoma 9 27311 -NCIT:C6264 Benign Ovarian Luteinized Thecoma 9 27312 -NCIT:C126321 Ovarian Luteinized Thecoma Associated with Sclerosing Peritonitis 10 27313 -NCIT:C5219 Benign Ovarian Thecoma 8 27314 -NCIT:C39964 Typical Ovarian Thecoma 9 27315 -NCIT:C6264 Benign Ovarian Luteinized Thecoma 9 27316 -NCIT:C126321 Ovarian Luteinized Thecoma Associated with Sclerosing Peritonitis 10 27317 -NCIT:C6929 Malignant Ovarian Thecoma 8 27318 -NCIT:C6263 Malignant Ovarian Luteinized Thecoma 9 27319 -NCIT:C39976 Sertoli Cell Tumor 5 27320 -NCIT:C4672 Testicular Sertoli Cell Tumor 6 27321 -NCIT:C39944 Testicular Large Cell Calcifying Sertoli Cell Tumor 7 27322 -NCIT:C6522 Benign Testicular Sertoli Cell Tumor 7 27323 -NCIT:C39943 Testicular Sertoli Cell Tumor, Lipid Rich Variant 8 27324 -NCIT:C39945 Testicular Sclerosing Sertoli Cell Tumor 8 27325 -NCIT:C6523 Malignant Testicular Sertoli Cell Tumor 7 27326 -NCIT:C67006 Malignant Sertoli Cell Tumor 6 27327 -NCIT:C6523 Malignant Testicular Sertoli Cell Tumor 7 27328 -NCIT:C67012 Benign Sertoli Cell Tumor 6 27329 -NCIT:C6522 Benign Testicular Sertoli Cell Tumor 7 27330 -NCIT:C39943 Testicular Sertoli Cell Tumor, Lipid Rich Variant 8 27331 -NCIT:C39945 Testicular Sclerosing Sertoli Cell Tumor 8 27332 -NCIT:C7133 Ovarian Sertoli Cell Tumor 6 27333 -NCIT:C4211 Ovarian Sertoli Cell Tumor with Lipid Storage 7 27334 -NCIT:C4862 Ovarian Sex Cord-Stromal Tumor 5 27335 -NCIT:C3072 Ovarian Gynandroblastoma 6 27336 -NCIT:C189333 Childhood Ovarian Gynandroblastoma 7 27337 -NCIT:C39966 Ovarian Sertoli-Stromal Cell Tumor 6 27338 -NCIT:C2880 Ovarian Sertoli-Leydig Cell Tumor 7 27339 -NCIT:C189292 Childhood Ovarian Sertoli-Leydig Cell Tumor 8 27340 -NCIT:C189319 Ovarian Sertoli-Leydig Cell Tumor Molecular Subtypes 8 27341 -NCIT:C189328 DICER1-Mutant Ovarian Sertoli-Leydig Cell Tumor 9 27342 -NCIT:C189329 FOXL2 c.402C>G (p.Cys134Trp)-Mutant Ovarian Sertoli-Leydig Cell Tumor 9 27343 -NCIT:C189331 DICER1/FOXL2-Wildtype Ovarian Sertoli-Leydig Cell Tumor 9 27344 -NCIT:C39968 Moderately Differentiated Ovarian Sertoli-Leydig Cell Tumor 8 27345 -NCIT:C39972 Moderately Differentiated Ovarian Sertoli-Leydig Cell Tumor, Variant with Heterologous Elements 9 27346 -NCIT:C39970 Ovarian Sertoli-Leydig Cell Tumor with Heterologous Elements 8 27347 -NCIT:C126322 Ovarian Retiform Sertoli-Leydig Cell Tumor, Variant with Heterologous Elements 9 27348 -NCIT:C39972 Moderately Differentiated Ovarian Sertoli-Leydig Cell Tumor, Variant with Heterologous Elements 9 27349 -NCIT:C39973 Poorly Differentiated Ovarian Sertoli-Leydig Cell Tumor, Variant with Heterologous Elements 9 27350 -NCIT:C39971 Ovarian Retiform Sertoli-Leydig Cell Tumor 8 27351 -NCIT:C126322 Ovarian Retiform Sertoli-Leydig Cell Tumor, Variant with Heterologous Elements 9 27352 -NCIT:C39974 Ovarian Sertoli-Leydig Cell Tumor with Retiform Elements 8 27353 -NCIT:C4209 Well Differentiated Ovarian Sertoli-Leydig Cell Tumor 8 27354 -NCIT:C4210 Poorly Differentiated Ovarian Sertoli-Leydig Cell Tumor 8 27355 -NCIT:C39973 Poorly Differentiated Ovarian Sertoli-Leydig Cell Tumor, Variant with Heterologous Elements 9 27356 -NCIT:C39977 Ovarian Stromal-Leydig Cell Tumor 7 27357 -NCIT:C7133 Ovarian Sertoli Cell Tumor 7 27358 -NCIT:C4211 Ovarian Sertoli Cell Tumor with Lipid Storage 8 27359 -NCIT:C39978 Ovarian Sex Cord-Stromal Tumor, Not Otherwise Specified 6 27360 -NCIT:C40436 Ovarian Sex Cord-Stromal Tumor Associated with Peutz-Jeghers Syndrome 6 27361 -NCIT:C4208 Ovarian Sex Cord Tumor with Annular Tubules 6 27362 -NCIT:C4215 Ovarian Steroid Cell Tumor 6 27363 -NCIT:C3202 Ovarian Stromal Luteoma 7 27364 -NCIT:C39979 Ovarian Steroid Cell Tumor, Not Otherwise Specified 7 27365 -NCIT:C39980 Well Differentiated Ovarian Steroid Cell Tumor 8 27366 -NCIT:C39981 Malignant Ovarian Steroid Cell Tumor 8 27367 -NCIT:C5231 Ovarian Leydig Cell Tumor 7 27368 -NCIT:C39983 Ovarian Leydig Cell Tumor, Non-Hilar Type 8 27369 -NCIT:C39984 Ovarian Leydig Cell Tumor, Not Otherwise Specified 8 27370 -NCIT:C4214 Ovarian Hilus Cell Tumor 8 27371 -NCIT:C66749 Ovarian Stromal Tumor with Minor Sex Cord Elements 6 27372 -NCIT:C6803 Benign Ovarian Sex Cord-Stromal Tumor 6 27373 -NCIT:C121953 Ovarian Microcystic Stromal Tumor 7 27374 -NCIT:C3498 Ovarian Fibroma 7 27375 -NCIT:C189288 Childhood Ovarian Fibroma 8 27376 -NCIT:C7291 Ovarian Cellular Fibroma 8 27377 -NCIT:C39977 Ovarian Stromal-Leydig Cell Tumor 7 27378 -NCIT:C4204 Ovarian Sclerosing Stromal Tumor 7 27379 -NCIT:C189289 Childhood Ovarian Sclerosing Stromal Tumor 8 27380 -NCIT:C5219 Benign Ovarian Thecoma 7 27381 -NCIT:C39964 Typical Ovarian Thecoma 8 27382 -NCIT:C6264 Benign Ovarian Luteinized Thecoma 8 27383 -NCIT:C126321 Ovarian Luteinized Thecoma Associated with Sclerosing Peritonitis 9 27384 -NCIT:C7287 Ovarian Granulosa-Stromal Cell Tumor 6 27385 -NCIT:C6261 Ovarian Granulosa Cell Tumor 7 27386 -NCIT:C7288 Adult Ovarian Granulosa Cell Tumor 8 27387 -NCIT:C7289 Juvenile Ovarian Granulosa Cell Tumor 8 27388 -NCIT:C40434 Juvenile Bilateral Ovarian Granulosa Cell Tumor 9 27389 -NCIT:C8403 Malignant Ovarian Granulosa Cell Tumor 8 27390 -NCIT:C160619 Recurrent Malignant Ovarian Granulosa Cell Tumor 9 27391 -NCIT:C7290 Ovarian Tumor of the Thecoma/Fibroma Group 7 27392 -NCIT:C3498 Ovarian Fibroma 8 27393 -NCIT:C189288 Childhood Ovarian Fibroma 9 27394 -NCIT:C7291 Ovarian Cellular Fibroma 9 27395 -NCIT:C39965 Ovarian Signet Ring Stromal Tumor 8 27396 -NCIT:C4204 Ovarian Sclerosing Stromal Tumor 8 27397 -NCIT:C189289 Childhood Ovarian Sclerosing Stromal Tumor 9 27398 -NCIT:C66989 Ovarian Thecoma 8 27399 -NCIT:C4203 Ovarian Luteinized Thecoma 9 27400 -NCIT:C6263 Malignant Ovarian Luteinized Thecoma 10 27401 -NCIT:C6264 Benign Ovarian Luteinized Thecoma 10 27402 -NCIT:C126321 Ovarian Luteinized Thecoma Associated with Sclerosing Peritonitis 11 27403 -NCIT:C5219 Benign Ovarian Thecoma 9 27404 -NCIT:C39964 Typical Ovarian Thecoma 10 27405 -NCIT:C6264 Benign Ovarian Luteinized Thecoma 10 27406 -NCIT:C126321 Ovarian Luteinized Thecoma Associated with Sclerosing Peritonitis 11 27407 -NCIT:C6929 Malignant Ovarian Thecoma 9 27408 -NCIT:C6263 Malignant Ovarian Luteinized Thecoma 10 27409 -NCIT:C8053 Malignant Ovarian Sex Cord-Stromal Tumor 6 27410 -NCIT:C39981 Malignant Ovarian Steroid Cell Tumor 7 27411 -NCIT:C4210 Poorly Differentiated Ovarian Sertoli-Leydig Cell Tumor 7 27412 -NCIT:C39973 Poorly Differentiated Ovarian Sertoli-Leydig Cell Tumor, Variant with Heterologous Elements 8 27413 -NCIT:C6929 Malignant Ovarian Thecoma 7 27414 -NCIT:C6263 Malignant Ovarian Luteinized Thecoma 8 27415 -NCIT:C8403 Malignant Ovarian Granulosa Cell Tumor 7 27416 -NCIT:C160619 Recurrent Malignant Ovarian Granulosa Cell Tumor 8 27417 -NCIT:C6358 Testicular Sex Cord-Stromal Tumor 5 27418 -NCIT:C162466 Intratubular Large Cell Hyalinizing Sertoli Cell Neoplasia 6 27419 -NCIT:C39948 Malignant Testicular Sex Cord-Stromal Tumor 6 27420 -NCIT:C39949 Testicular Tumor of the Thecoma/Fibroma Group 6 27421 -NCIT:C162966 Testicular Signet Ring Stromal Tumor 7 27422 -NCIT:C39951 Testicular Fibroma 7 27423 -NCIT:C39952 Testicular Thecoma 7 27424 -NCIT:C4672 Testicular Sertoli Cell Tumor 6 27425 -NCIT:C39944 Testicular Large Cell Calcifying Sertoli Cell Tumor 7 27426 -NCIT:C6522 Benign Testicular Sertoli Cell Tumor 7 27427 -NCIT:C39943 Testicular Sertoli Cell Tumor, Lipid Rich Variant 8 27428 -NCIT:C39945 Testicular Sclerosing Sertoli Cell Tumor 8 27429 -NCIT:C6523 Malignant Testicular Sertoli Cell Tumor 7 27430 -NCIT:C6356 Testicular Leydig Cell Tumor 6 27431 -NCIT:C39942 Malignant Testicular Leydig Cell Tumor 7 27432 -NCIT:C6357 Testicular Granulosa Cell Tumor 6 27433 -NCIT:C39946 Adult Testicular Granulosa Cell Tumor 7 27434 -NCIT:C39947 Juvenile Testicular Granulosa Cell Tumor 7 27435 -NCIT:C66748 Unclassified Testicular Sex Cord-Stromal Tumor 6 27436 -NCIT:C66991 Mixed Testicular Sex Cord-Stromal Tumor 6 27437 -NCIT:C67561 Malignant Sex Cord-Stromal Tumor 5 27438 -NCIT:C39948 Malignant Testicular Sex Cord-Stromal Tumor 6 27439 -NCIT:C8053 Malignant Ovarian Sex Cord-Stromal Tumor 6 27440 -NCIT:C39981 Malignant Ovarian Steroid Cell Tumor 7 27441 -NCIT:C4210 Poorly Differentiated Ovarian Sertoli-Leydig Cell Tumor 7 27442 -NCIT:C39973 Poorly Differentiated Ovarian Sertoli-Leydig Cell Tumor, Variant with Heterologous Elements 8 27443 -NCIT:C6929 Malignant Ovarian Thecoma 7 27444 -NCIT:C6263 Malignant Ovarian Luteinized Thecoma 8 27445 -NCIT:C8403 Malignant Ovarian Granulosa Cell Tumor 7 27446 -NCIT:C160619 Recurrent Malignant Ovarian Granulosa Cell Tumor 8 27447 -NCIT:C5241 Mixed Germ Cell-Sex Cord-Stromal Tumor 4 27448 -NCIT:C3754 Gonadoblastoma 5 27449 -NCIT:C39911 Testicular Gonadoblastoma 6 27450 -NCIT:C39985 Ovarian Gonadoblastoma 6 27451 -NCIT:C7321 Ovarian Mixed Germ Cell-Sex Cord-Stromal Tumor 5 27452 -NCIT:C179475 Ovarian Mixed Germ Cell-Sex Cord-Stromal Tumor, Unclassified 6 27453 -NCIT:C39985 Ovarian Gonadoblastoma 6 27454 -NCIT:C7322 Testicular Mixed Germ Cell-Sex Cord-Stromal Tumor 5 27455 -NCIT:C39911 Testicular Gonadoblastoma 6 27456 -NCIT:C39912 Testicular Mixed Germ Cell-Sex Cord-Stromal Tumor, Unclassified 6 27457 -NCIT:C7335 Reproductive Endocrine Neoplasm 4 27458 -NCIT:C7617 Benign Reproductive System Neoplasm 4 27459 -NCIT:C139547 Fibroadenoma of Anogenital Mammary-Type Glands 5 27460 -NCIT:C128242 Vulvar Fibroadenoma 6 27461 -NCIT:C139546 Anal Fibroadenoma 6 27462 -NCIT:C2860 Adrenal Rest Tumor 5 27463 -NCIT:C4777 Benign Male Reproductive System Neoplasm 5 27464 -NCIT:C161643 Benign Seminal Vesicle Neoplasm 6 27465 -NCIT:C161638 Seminal Vesicle Leiomyoma 7 27466 -NCIT:C161639 Seminal Vesicle Schwannoma 7 27467 -NCIT:C161640 Seminal Vesicle Mammary-Type Myofibroblastoma 7 27468 -NCIT:C39907 Seminal Vesicle Cystadenoma 7 27469 -NCIT:C162476 Paratesticular Adenomatoid Tumor 6 27470 -NCIT:C6382 Epididymal Adenomatoid Tumor 7 27471 -NCIT:C162494 Paratesticular Leiomyoma 6 27472 -NCIT:C161638 Seminal Vesicle Leiomyoma 7 27473 -NCIT:C162496 Paratesticular Rhabdomyoma 6 27474 -NCIT:C162498 Paratesticular Cellular Angiofibroma 6 27475 -NCIT:C162500 Paratesticular Mammary-Type Myofibroblastoma 6 27476 -NCIT:C161640 Seminal Vesicle Mammary-Type Myofibroblastoma 7 27477 -NCIT:C162501 Paratesticular Deep (Aggressive) Angiomyxoma 6 27478 -NCIT:C162502 Paratesticular Schwannoma 6 27479 -NCIT:C161639 Seminal Vesicle Schwannoma 7 27480 -NCIT:C162503 Paratesticular Hemangioma 6 27481 -NCIT:C3489 Benign Penile Neoplasm 6 27482 -NCIT:C162579 Penile Hemangioma 7 27483 -NCIT:C162580 Penile Epithelioid Hemangioma 8 27484 -NCIT:C162583 Penile Leiomyoma 7 27485 -NCIT:C162586 Penile Schwannoma 7 27486 -NCIT:C162587 Penile Neurofibroma 7 27487 -NCIT:C162590 Penile Myointimoma 7 27488 -NCIT:C162592 Penile Lymphangioma 7 27489 -NCIT:C3612 Benign Testicular Neoplasm 6 27490 -NCIT:C39951 Testicular Fibroma 7 27491 -NCIT:C6355 Mature Testicular Teratoma 7 27492 -NCIT:C123837 Childhood Testicular Mature Teratoma 8 27493 -NCIT:C36092 Testicular Dermoid Cyst 8 27494 -NCIT:C6522 Benign Testicular Sertoli Cell Tumor 7 27495 -NCIT:C39943 Testicular Sertoli Cell Tumor, Lipid Rich Variant 8 27496 -NCIT:C39945 Testicular Sclerosing Sertoli Cell Tumor 8 27497 -NCIT:C3613 Benign Prostate Neoplasm 6 27498 -NCIT:C161581 Prostate Hemangioma 7 27499 -NCIT:C161606 Prostate Cystadenoma 7 27500 -NCIT:C3972 Prostate Fibroma 7 27501 -NCIT:C4795 Prostate Adenoma 7 27502 -NCIT:C5532 Benign Prostate Phyllodes Tumor 7 27503 -NCIT:C5544 Prostate Leiomyoma 7 27504 -NCIT:C3614 Benign Epididymal Neoplasm 6 27505 -NCIT:C162483 Epididymal Cystadenoma 7 27506 -NCIT:C155953 Epididymal Papillary Cystadenoma 8 27507 -NCIT:C6382 Epididymal Adenomatoid Tumor 7 27508 -NCIT:C39956 Rete Testis Adenoma 6 27509 -NCIT:C6384 Paratesticular Lipoma 6 27510 -NCIT:C3606 Spermatic Cord Lipoma 7 27511 -NCIT:C4934 Benign Female Reproductive System Neoplasm 5 27512 -NCIT:C126493 Benign Uterine Ligament Neoplasm 6 27513 -NCIT:C155952 Uterine Ligament Papillary Cystadenoma 7 27514 -NCIT:C179921 Broad Ligament Papillary Cystadenoma 8 27515 -NCIT:C40142 Uterine Ligament Papillary Cystadenoma Associated with von Hippel-Lindau Disease 8 27516 -NCIT:C179923 Uterine Ligament Leiomyoma 7 27517 -NCIT:C179924 Broad Ligament Leiomyoma 8 27518 -NCIT:C179925 Uterine Ligament Adenomyoma 7 27519 -NCIT:C179933 Benign Broad Ligament Neoplasm 7 27520 -NCIT:C126476 Broad Ligament Serous Cystadenoma 8 27521 -NCIT:C179921 Broad Ligament Papillary Cystadenoma 8 27522 -NCIT:C179924 Broad Ligament Leiomyoma 8 27523 -NCIT:C2895 Benign Ovarian Neoplasm 6 27524 -NCIT:C126331 Ovarian Adenomatoid Tumor 7 27525 -NCIT:C179360 Ovarian Leiomyoma 7 27526 -NCIT:C190658 Childhood Benign Ovarian Neoplasm 7 27527 -NCIT:C189288 Childhood Ovarian Fibroma 8 27528 -NCIT:C189289 Childhood Ovarian Sclerosing Stromal Tumor 8 27529 -NCIT:C6548 Childhood Ovarian Mature Teratoma 8 27530 -NCIT:C4510 Benign Ovarian Epithelial Tumor 7 27531 -NCIT:C40039 Benign Ovarian Mucinous Tumor 8 27532 -NCIT:C40040 Ovarian Mucinous Adenofibroma 9 27533 -NCIT:C40041 Ovarian Mucinous Cystadenofibroma 10 27534 -NCIT:C4512 Ovarian Mucinous Cystadenoma 9 27535 -NCIT:C40072 Benign Ovarian Endometrioid Tumor 8 27536 -NCIT:C27287 Ovarian Endometrioid Adenofibroma 9 27537 -NCIT:C27288 Ovarian Endometrioid Cystadenofibroma 10 27538 -NCIT:C40075 Ovarian Endometrioid Cystadenoma 9 27539 -NCIT:C40084 Benign Ovarian Clear Cell Tumor 8 27540 -NCIT:C40085 Ovarian Clear Cell Adenofibroma 9 27541 -NCIT:C40086 Ovarian Clear Cell Cystadenofibroma 10 27542 -NCIT:C4060 Ovarian Cystadenoma 8 27543 -NCIT:C126310 Ovarian Seromucinous Cystadenoma 9 27544 -NCIT:C40075 Ovarian Endometrioid Cystadenoma 9 27545 -NCIT:C4511 Ovarian Serous Cystadenoma 9 27546 -NCIT:C7278 Ovarian Papillary Cystadenoma 10 27547 -NCIT:C4512 Ovarian Mucinous Cystadenoma 9 27548 -NCIT:C4746 Benign Ovarian Brenner Tumor 8 27549 -NCIT:C7282 Benign Ovarian Seromucinous Tumor 8 27550 -NCIT:C126310 Ovarian Seromucinous Cystadenoma 9 27551 -NCIT:C126311 Ovarian Seromucinous Adenofibroma 9 27552 -NCIT:C7313 Benign Ovarian Serous Tumor 8 27553 -NCIT:C40031 Ovarian Serous Adenofibroma 9 27554 -NCIT:C40032 Ovarian Serous Cystadenofibroma 10 27555 -NCIT:C4511 Ovarian Serous Cystadenoma 9 27556 -NCIT:C7278 Ovarian Papillary Cystadenoma 10 27557 -NCIT:C7279 Ovarian Surface Papilloma 9 27558 -NCIT:C4516 Benign Ovarian Germ Cell Tumor 7 27559 -NCIT:C8112 Mature Ovarian Teratoma 8 27560 -NCIT:C3856 Ovarian Dermoid Cyst 9 27561 -NCIT:C39996 Ovarian Fetiform Teratoma 9 27562 -NCIT:C6548 Childhood Ovarian Mature Teratoma 9 27563 -NCIT:C7285 Ovarian Solid Teratoma 9 27564 -NCIT:C5245 Ovarian Myxoma 7 27565 -NCIT:C6803 Benign Ovarian Sex Cord-Stromal Tumor 7 27566 -NCIT:C121953 Ovarian Microcystic Stromal Tumor 8 27567 -NCIT:C3498 Ovarian Fibroma 8 27568 -NCIT:C189288 Childhood Ovarian Fibroma 9 27569 -NCIT:C7291 Ovarian Cellular Fibroma 9 27570 -NCIT:C39977 Ovarian Stromal-Leydig Cell Tumor 8 27571 -NCIT:C4204 Ovarian Sclerosing Stromal Tumor 8 27572 -NCIT:C189289 Childhood Ovarian Sclerosing Stromal Tumor 9 27573 -NCIT:C5219 Benign Ovarian Thecoma 8 27574 -NCIT:C39964 Typical Ovarian Thecoma 9 27575 -NCIT:C6264 Benign Ovarian Luteinized Thecoma 9 27576 -NCIT:C126321 Ovarian Luteinized Thecoma Associated with Sclerosing Peritonitis 10 27577 -NCIT:C3609 Benign Uterine Neoplasm 6 27578 -NCIT:C3607 Benign Cervical Neoplasm 7 27579 -NCIT:C128053 Benign Cervical Soft Tissue Neoplasm 8 27580 -NCIT:C128046 Cervical Leiomyoma 9 27581 -NCIT:C40266 Cervical Rhabdomyoma 9 27582 -NCIT:C34584 Endocervical Polyp 8 27583 -NCIT:C6856 Cervical Microglandular Polyp 9 27584 -NCIT:C40215 Cervical Mullerian Papilloma 8 27585 -NCIT:C40227 Benign Cervical Mixed Epithelial and Mesenchymal Neoplasm 8 27586 -NCIT:C40230 Cervical Adenofibroma 9 27587 -NCIT:C40231 Cervical Adenomyoma 9 27588 -NCIT:C40232 Cervical Adenomyoma, Endocervical-Type 10 27589 -NCIT:C40233 Cervical Adenomyoma, Mesonephric-Type 10 27590 -NCIT:C40234 Cervical Atypical Polypoid Adenomyoma 10 27591 -NCIT:C40240 Cervical Blue Nevus 8 27592 -NCIT:C6342 Cervical Squamous Papilloma 8 27593 -NCIT:C3608 Benign Uterine Corpus Neoplasm 7 27594 -NCIT:C127071 Benign Uterine Corpus PEComa 8 27595 -NCIT:C27250 Uterine Corpus Adenomatoid Tumor 8 27596 -NCIT:C3434 Uterine Corpus Leiomyoma 8 27597 -NCIT:C126975 Uterine Corpus Hydropic Leiomyoma 9 27598 -NCIT:C3511 Uterine Corpus Degenerated Leiomyoma 9 27599 -NCIT:C40162 Uterine Corpus Leiomyoma, Mitotically Active Variant 9 27600 -NCIT:C40163 Uterine Corpus Cellular Leiomyoma 9 27601 -NCIT:C40164 Uterine Corpus Epithelioid Leiomyoma 9 27602 -NCIT:C40165 Uterine Corpus Apoplectic Leiomyoma 9 27603 -NCIT:C40166 Uterine Corpus Myxoid Leiomyoma 9 27604 -NCIT:C40167 Uterine Corpus Bizarre Leiomyoma 9 27605 -NCIT:C40168 Uterine Corpus Lipoleiomyoma 9 27606 -NCIT:C40170 Uterine Corpus Diffuse Leiomyomatosis 9 27607 -NCIT:C40172 Uterine Corpus Dissecting Leiomyoma 9 27608 -NCIT:C40173 Uterine Corpus Metastasizing Leiomyoma 9 27609 -NCIT:C5356 Uterine Corpus Intravenous Leiomyomatosis 9 27610 -NCIT:C4262 Endometrial Stromal Nodule 8 27611 -NCIT:C4894 Benign Endometrial Neoplasm 8 27612 -NCIT:C6335 Benign Uterine Corpus Mixed Epithelial and Mesenchymal Neoplasm 8 27613 -NCIT:C6337 Uterine Corpus Adenofibroma 9 27614 -NCIT:C6338 Uterine Corpus Adenomyoma 9 27615 -NCIT:C40235 Uterine Corpus Atypical Polypoid Adenomyoma 10 27616 -NCIT:C6433 Endometrial Polyp 8 27617 -NCIT:C3610 Benign Vaginal Neoplasm 6 27618 -NCIT:C128079 Vaginal Superficial Myofibroblastoma 7 27619 -NCIT:C128113 Vaginal Dermoid Cyst 7 27620 -NCIT:C40255 Vaginal Mullerian Papilloma 7 27621 -NCIT:C40273 Vaginal Deep (Aggressive) Angiomyxoma 7 27622 -NCIT:C40275 Benign Vaginal Mixed Epithelial and Mesenchymal Neoplasm 7 27623 -NCIT:C40280 Benign Vaginal Mixed Tumor 8 27624 -NCIT:C40281 Benign Vaginal Melanocytic Nevus 7 27625 -NCIT:C40282 Vaginal Blue Nevus 8 27626 -NCIT:C45445 Vaginal Angiomyofibroblastoma 7 27627 -NCIT:C6372 Vaginal Rhabdomyoma 7 27628 -NCIT:C6373 Vaginal Leiomyoma 7 27629 -NCIT:C6374 Vaginal Squamous Papilloma 7 27630 -NCIT:C3611 Benign Vulvar Neoplasm 6 27631 -NCIT:C128240 Vulvar Hidradenoma Papilliferum 7 27632 -NCIT:C128242 Vulvar Fibroadenoma 7 27633 -NCIT:C128270 Vulvar Lipoma 7 27634 -NCIT:C128271 Vulvar Fibrolipoma 8 27635 -NCIT:C128272 Vulvar Superficial Myofibroblastoma 7 27636 -NCIT:C139548 Vulvar Composite Hidradenoma Papilliferum and Fibroadenoma 7 27637 -NCIT:C181906 Benign Vulvar Phyllodes Tumor 7 27638 -NCIT:C181925 Vulvar Lipoblastoma-Like Tumor 7 27639 -NCIT:C181926 Vulvar Prepubertal Fibroma 7 27640 -NCIT:C181942 Vulvar Rhabdomyoma 7 27641 -NCIT:C40301 Adenoma of Minor Vestibular Glands 7 27642 -NCIT:C40302 Vulvar Chondroid Syringoma 7 27643 -NCIT:C40311 Vulvar Syringoma 7 27644 -NCIT:C40312 Vulvar Nodular Hidradenoma 7 27645 -NCIT:C40314 Vulvar Trichoepithelioma 7 27646 -NCIT:C40325 Vulvar Angiomyxoma 7 27647 -NCIT:C40322 Vulvar Deep (Aggressive) Angiomyxoma 8 27648 -NCIT:C40324 Vulvar Superficial Angiomyxoma 8 27649 -NCIT:C40326 Vulvar Leiomyoma 7 27650 -NCIT:C40327 Vulvar Cellular Angiofibroma 7 27651 -NCIT:C40330 Vulvar Congenital Melanocytic Nevus 7 27652 -NCIT:C40331 Vulvar Acquired Melanocytic Nevus 7 27653 -NCIT:C40332 Vulvar Blue Nevus 7 27654 -NCIT:C45446 Vulvar Angiomyofibroblastoma 7 27655 -NCIT:C6375 Vulvar Seborrheic Keratosis 7 27656 -NCIT:C40291 Vulvar Inverted Follicular Keratosis 8 27657 -NCIT:C6376 Vulvar Squamous Papilloma 7 27658 -NCIT:C40290 Vulvar Squamous Papillomatosis 8 27659 -NCIT:C8418 Benign Bartholin Gland Neoplasm 7 27660 -NCIT:C40299 Bartholin Gland Adenoma 8 27661 -NCIT:C40300 Bartholin Gland Adenomyoma 8 27662 -NCIT:C3726 Adenomyoma 6 27663 -NCIT:C179925 Uterine Ligament Adenomyoma 7 27664 -NCIT:C40231 Cervical Adenomyoma 7 27665 -NCIT:C40232 Cervical Adenomyoma, Endocervical-Type 8 27666 -NCIT:C40233 Cervical Adenomyoma, Mesonephric-Type 8 27667 -NCIT:C40234 Cervical Atypical Polypoid Adenomyoma 8 27668 -NCIT:C6338 Uterine Corpus Adenomyoma 7 27669 -NCIT:C40235 Uterine Corpus Atypical Polypoid Adenomyoma 8 27670 -NCIT:C6895 Atypical Polypoid Adenomyoma 7 27671 -NCIT:C40234 Cervical Atypical Polypoid Adenomyoma 8 27672 -NCIT:C40235 Uterine Corpus Atypical Polypoid Adenomyoma 8 27673 -NCIT:C40018 Rete Ovarii Adenoma 6 27674 -NCIT:C4517 Benign Fallopian Tube Neoplasm 6 27675 -NCIT:C40112 Fallopian Tube Serous Papilloma 7 27676 -NCIT:C40113 Fallopian Tube Serous Adenofibroma 7 27677 -NCIT:C40114 Fallopian Tube Serous Cystadenofibroma 8 27678 -NCIT:C40116 Fallopian Tube Metaplastic Papillary Tumor 7 27679 -NCIT:C40127 Fallopian Tube Leiomyoma 7 27680 -NCIT:C40129 Fallopian Tube Adenomatoid Tumor 7 27681 -NCIT:C6517 Genital Rhabdomyoma 6 27682 -NCIT:C181942 Vulvar Rhabdomyoma 7 27683 -NCIT:C40266 Cervical Rhabdomyoma 7 27684 -NCIT:C6372 Vaginal Rhabdomyoma 7 27685 -NCIT:C8545 Benign Placental Neoplasm 6 27686 -NCIT:C3521 Placental Polyp 7 27687 -NCIT:C4868 Placental Hemangioma 7 27688 -NCIT:C8979 Mucinous Cystadenofibroma 6 27689 -NCIT:C40041 Ovarian Mucinous Cystadenofibroma 7 27690 -NCIT:C67012 Benign Sertoli Cell Tumor 5 27691 -NCIT:C6522 Benign Testicular Sertoli Cell Tumor 6 27692 -NCIT:C39943 Testicular Sertoli Cell Tumor, Lipid Rich Variant 7 27693 -NCIT:C39945 Testicular Sclerosing Sertoli Cell Tumor 7 27694 -NCIT:C168693 Spinal Neoplasm 2 27695 -NCIT:C168672 Thoracic Spine Neoplasm 3 27696 -NCIT:C177775 Thoracic Chordoma 4 27697 -NCIT:C5297 Thoracic Intraspinal Meningioma 4 27698 -NCIT:C168673 Lumbar Spine Neoplasm 3 27699 -NCIT:C5298 Lumbar Intraspinal Meningioma 4 27700 -NCIT:C168674 Sacral Spine Neoplasm 3 27701 -NCIT:C129927 Sacral Chordoma 4 27702 -NCIT:C5299 Sacral Intraspinal Meningioma 4 27703 -NCIT:C99055 Sacrococcygeal Teratoma 4 27704 -NCIT:C168694 Lumbosacral Spine Neoplasm 3 27705 -NCIT:C6500 Lumbosacral Lipoma 4 27706 -NCIT:C168698 Cervical Spine Neoplasm 3 27707 -NCIT:C5296 Cervical Intraspinal Meningioma 4 27708 -NCIT:C3382 Intraspinal Neoplasm 3 27709 -NCIT:C3019 Epidural Spinal Canal Neoplasm 4 27710 -NCIT:C5310 Epidural Spinal Canal Meningioma 5 27711 -NCIT:C5424 Epidural Spinal Canal Angiolipoma 5 27712 -NCIT:C3381 Spinal Cord Neoplasm 4 27713 -NCIT:C3572 Malignant Spinal Cord Neoplasm 5 27714 -NCIT:C4585 Metastatic Malignant Neoplasm in the Spinal Cord 6 27715 -NCIT:C5439 Drop Metastasis in the Spinal Cord 7 27716 -NCIT:C5152 Spinal Cord Sarcoma 6 27717 -NCIT:C5155 Spinal Cord Neuroblastoma 6 27718 -NCIT:C5157 Spinal Cord Lymphoma 6 27719 -NCIT:C5158 Spinal Cord Melanoma 6 27720 -NCIT:C5406 Spinal Cord Embryonal Tumor, Not Otherwise Specified 6 27721 -NCIT:C3627 Benign Spinal Cord Neoplasm 5 27722 -NCIT:C4619 Spinal Cord Lipoma 6 27723 -NCIT:C5145 Spinal Cord Neurofibroma 6 27724 -NCIT:C6808 Dermoid Cyst of the Spinal Cord 6 27725 -NCIT:C4534 Spinal Cord Glioma 5 27726 -NCIT:C186494 Spinal Cord Ependymoma, MYCN Amplified 6 27727 -NCIT:C3875 Spinal Cord Ependymoma 6 27728 -NCIT:C186495 Childhood Spinal Cord Ependymoma 7 27729 -NCIT:C27399 Adult Spinal Cord Ependymoma 7 27730 -NCIT:C4535 Spinal Cord Oligodendroglioma 6 27731 -NCIT:C4641 Spinal Cord Astrocytoma 6 27732 -NCIT:C5423 Cervicomedullary Junction Neoplasm 5 27733 -NCIT:C5428 Intramedullary Spinal Cord Teratoma 5 27734 -NCIT:C5443 Conus Medullaris Neoplasm 5 27735 -NCIT:C6935 Spinal Cord Meningioma 5 27736 -NCIT:C71024 Adult Spinal Cord Neoplasm 5 27737 -NCIT:C27399 Adult Spinal Cord Ependymoma 6 27738 -NCIT:C71713 Recurrent Adult Spinal Cord Neoplasm 6 27739 -NCIT:C71715 Refractory Adult Spinal Cord Neoplasm 6 27740 -NCIT:C71699 Recurrent Spinal Cord Neoplasm 5 27741 -NCIT:C71712 Recurrent Childhood Spinal Cord Neoplasm 6 27742 -NCIT:C71713 Recurrent Adult Spinal Cord Neoplasm 6 27743 -NCIT:C71703 Refractory Spinal Cord Neoplasm 5 27744 -NCIT:C71714 Refractory Childhood Spinal Cord Neoplasm 6 27745 -NCIT:C71715 Refractory Adult Spinal Cord Neoplasm 6 27746 -NCIT:C9234 Childhood Spinal Cord Neoplasm 5 27747 -NCIT:C186495 Childhood Spinal Cord Ependymoma 6 27748 -NCIT:C71712 Recurrent Childhood Spinal Cord Neoplasm 6 27749 -NCIT:C71714 Refractory Childhood Spinal Cord Neoplasm 6 27750 -NCIT:C5134 Spinal Meningioma 4 27751 -NCIT:C5275 Multiple Intraspinal Meningiomas 5 27752 -NCIT:C5287 Spinal Multifocal Clear Cell Meningioma 5 27753 -NCIT:C5296 Cervical Intraspinal Meningioma 5 27754 -NCIT:C5297 Thoracic Intraspinal Meningioma 5 27755 -NCIT:C5298 Lumbar Intraspinal Meningioma 5 27756 -NCIT:C5299 Sacral Intraspinal Meningioma 5 27757 -NCIT:C5310 Epidural Spinal Canal Meningioma 5 27758 -NCIT:C6935 Spinal Cord Meningioma 5 27759 -NCIT:C8605 Anaplastic (Malignant) Intraspinal Meningioma 5 27760 -NCIT:C5135 Intradural Extramedullary Spinal Canal Neoplasm 4 27761 -NCIT:C5479 Cauda Equina Neoplasm 4 27762 -NCIT:C5324 Cauda Equina Neuroendocrine Tumor 5 27763 -NCIT:C5408 Intradural Extramedullary Cauda Equina Astrocytoma 5 27764 -NCIT:C5156 Spinal Chordoma 3 27765 -NCIT:C129927 Sacral Chordoma 4 27766 -NCIT:C177775 Thoracic Chordoma 4 27767 -NCIT:C2910 Breast Neoplasm 2 27768 -NCIT:C189338 Childhood Breast Neoplasm 3 27769 -NCIT:C189340 Childhood Breast Phyllodes Tumor 4 27770 -NCIT:C190574 Childhood Benign Breast Neoplasm 4 27771 -NCIT:C189339 Childhood Breast Fibroadenoma 5 27772 -NCIT:C4276 Juvenile Breast Fibroadenoma 6 27773 -NCIT:C9503 Juvenile Breast Papillomatosis 5 27774 -NCIT:C190575 Childhood Malignant Breast Neoplasm 4 27775 -NCIT:C118809 Childhood Breast Carcinoma 5 27776 -NCIT:C27939 Breast Lobular Neoplasia 3 27777 -NCIT:C4018 Breast Lobular Carcinoma In Situ 4 27778 -NCIT:C137839 Breast Pleomorphic Lobular Carcinoma In Situ 5 27779 -NCIT:C175949 Breast Classic Lobular Carcinoma In Situ 5 27780 -NCIT:C83170 Breast Classic Lobular Carcinoma In Situ Type A 6 27781 -NCIT:C83171 Breast Classic Lobular Carcinoma In Situ Type B 6 27782 -NCIT:C175950 Breast Florid Lobular Carcinoma In Situ 5 27783 -NCIT:C4730 Breast Atypical Lobular Hyperplasia 4 27784 -NCIT:C36083 Breast Intraductal Neoplasm 3 27785 -NCIT:C27942 Breast Intraductal Proliferative Lesion 4 27786 -NCIT:C27941 Breast Usual Ductal Hyperplasia 5 27787 -NCIT:C2924 Breast Ductal Carcinoma In Situ 5 27788 -NCIT:C176005 Breast Ductal Carcinoma In Situ, Comedo Type 6 27789 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 6 27790 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 7 27791 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 7 27792 -NCIT:C5137 Breast Ductal Carcinoma In Situ, Non-Comedo Type 6 27793 -NCIT:C5138 Breast Ductal Carcinoma In Situ, Cribriform Pattern 6 27794 -NCIT:C66933 Breast Ductal Carcinoma In Situ, Solid Type 6 27795 -NCIT:C7949 Breast Ductal Carcinoma In Situ, High Grade 6 27796 -NCIT:C9456 Breast Ductal Carcinoma In Situ, Intermediate Grade 6 27797 -NCIT:C9457 Breast Ductal Carcinoma In Situ, Low Grade 6 27798 -NCIT:C36086 Breast Flat Ductal Epithelial Atypia 5 27799 -NCIT:C8436 Breast Atypical Ductal Hyperplasia 5 27800 -NCIT:C36090 Breast Intraductal Papillary Neoplasm 4 27801 -NCIT:C3863 Breast Intraductal Papilloma 5 27802 -NCIT:C27944 Breast Sclerosing Papilloma 6 27803 -NCIT:C36087 Breast Central Papilloma 6 27804 -NCIT:C36088 Breast Peripheral Papilloma 6 27805 -NCIT:C36089 Breast Atypical Papilloma 6 27806 -NCIT:C5201 Breast Intraductal Papillomatosis 6 27807 -NCIT:C9503 Juvenile Breast Papillomatosis 7 27808 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 5 27809 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 6 27810 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 6 27811 -NCIT:C40405 Breast Fibroepithelial Neoplasm 3 27812 -NCIT:C3744 Breast Fibroadenoma 4 27813 -NCIT:C176045 Breast Cellular Fibroadenoma 5 27814 -NCIT:C189339 Childhood Breast Fibroadenoma 5 27815 -NCIT:C4276 Juvenile Breast Fibroadenoma 6 27816 -NCIT:C4271 Breast Intracanalicular Fibroadenoma 5 27817 -NCIT:C4272 Breast Pericanalicular Fibroadenoma 5 27818 -NCIT:C4273 Breast Giant Fibroadenoma 5 27819 -NCIT:C5194 Breast Complex Fibroadenoma 5 27820 -NCIT:C7575 Breast Phyllodes Tumor 4 27821 -NCIT:C189340 Childhood Breast Phyllodes Tumor 5 27822 -NCIT:C4504 Malignant Breast Phyllodes Tumor 5 27823 -NCIT:C5196 Benign Breast Phyllodes Tumor 5 27824 -NCIT:C5316 Borderline Breast Phyllodes Tumor 5 27825 -NCIT:C40406 Breast Soft Tissue Neoplasm 3 27826 -NCIT:C176253 Breast Nodular Fasciitis 4 27827 -NCIT:C179218 Breast Periductal Stromal Tumor 4 27828 -NCIT:C40389 Breast Myoepithelial Tumor 4 27829 -NCIT:C40385 Breast Myoepitheliosis 5 27830 -NCIT:C40386 Breast Atypical Myoepitheliosis 6 27831 -NCIT:C40387 Breast Intraductal Myoepitheliosis 6 27832 -NCIT:C40388 Breast Periductal Myoepitheliosis 6 27833 -NCIT:C40395 Breast Malignant Myoepithelioma 5 27834 -NCIT:C6899 Breast Adenomyoepithelioma 5 27835 -NCIT:C5143 Malignant Breast Adenomyoepithelioma 6 27836 -NCIT:C5144 Benign Breast Adenomyoepithelioma 6 27837 -NCIT:C40397 Breast Myofibroblastoma 4 27838 -NCIT:C40398 Breast Inflammatory Myofibroblastic Tumor 4 27839 -NCIT:C40399 Breast Leiomyoma 4 27840 -NCIT:C40400 Breast Granular Cell Tumor 4 27841 -NCIT:C4647 Breast Lipoma 4 27842 -NCIT:C176255 Breast Angiolipoma 5 27843 -NCIT:C4670 Breast Sarcoma 4 27844 -NCIT:C170727 Recurrent Breast Sarcoma 5 27845 -NCIT:C133092 Recurrent Breast Angiosarcoma 6 27846 -NCIT:C5184 Breast Angiosarcoma 5 27847 -NCIT:C133092 Recurrent Breast Angiosarcoma 6 27848 -NCIT:C176251 Primary Breast Angiosarcoma 6 27849 -NCIT:C40378 Postradiation Breast Angiosarcoma 6 27850 -NCIT:C5185 Breast Fibrosarcoma 5 27851 -NCIT:C5186 Breast Leiomyosarcoma 5 27852 -NCIT:C5187 Breast Liposarcoma 5 27853 -NCIT:C5189 Breast Extraskeletal Osteosarcoma 5 27854 -NCIT:C5190 Breast Rhabdomyosarcoma 5 27855 -NCIT:C5209 Breast Vascular Neoplasm 4 27856 -NCIT:C40381 Breast Angiomatosis 5 27857 -NCIT:C5184 Breast Angiosarcoma 5 27858 -NCIT:C133092 Recurrent Breast Angiosarcoma 6 27859 -NCIT:C176251 Primary Breast Angiosarcoma 6 27860 -NCIT:C40378 Postradiation Breast Angiosarcoma 6 27861 -NCIT:C5353 Breast Hemangioma 5 27862 -NCIT:C5210 Breast Capillary Hemangioma 6 27863 -NCIT:C5211 Breast Epithelioid Hemangioma 6 27864 -NCIT:C4505 Benign Breast Neoplasm 3 27865 -NCIT:C176253 Breast Nodular Fasciitis 4 27866 -NCIT:C176414 Breast Schwannoma 4 27867 -NCIT:C176415 Breast Neurofibroma 4 27868 -NCIT:C190574 Childhood Benign Breast Neoplasm 4 27869 -NCIT:C189339 Childhood Breast Fibroadenoma 5 27870 -NCIT:C4276 Juvenile Breast Fibroadenoma 6 27871 -NCIT:C9503 Juvenile Breast Papillomatosis 5 27872 -NCIT:C3848 Benign Female Breast Neoplasm 4 27873 -NCIT:C3863 Breast Intraductal Papilloma 4 27874 -NCIT:C27944 Breast Sclerosing Papilloma 5 27875 -NCIT:C36087 Breast Central Papilloma 5 27876 -NCIT:C36088 Breast Peripheral Papilloma 5 27877 -NCIT:C36089 Breast Atypical Papilloma 5 27878 -NCIT:C5201 Breast Intraductal Papillomatosis 5 27879 -NCIT:C9503 Juvenile Breast Papillomatosis 6 27880 -NCIT:C40381 Breast Angiomatosis 4 27881 -NCIT:C40382 Breast Adenoma 4 27882 -NCIT:C40383 Breast Apocrine Adenoma 5 27883 -NCIT:C40384 Breast Ductal Adenoma 5 27884 -NCIT:C40408 Breast Pleomorphic Adenoma 5 27885 -NCIT:C62210 Breast Tubular Adenoma 5 27886 -NCIT:C9473 Lactating Adenoma 6 27887 -NCIT:C40397 Breast Myofibroblastoma 4 27888 -NCIT:C40399 Breast Leiomyoma 4 27889 -NCIT:C4620 Benign Male Breast Neoplasm 4 27890 -NCIT:C4647 Breast Lipoma 4 27891 -NCIT:C176255 Breast Angiolipoma 5 27892 -NCIT:C5144 Benign Breast Adenomyoepithelioma 4 27893 -NCIT:C5193 Breast Spiradenoma 4 27894 -NCIT:C5196 Benign Breast Phyllodes Tumor 4 27895 -NCIT:C5197 Benign Nipple Neoplasm 4 27896 -NCIT:C40363 Nipple Syringomatous Tumor 5 27897 -NCIT:C4192 Nipple Adenoma 5 27898 -NCIT:C5353 Breast Hemangioma 4 27899 -NCIT:C5210 Breast Capillary Hemangioma 5 27900 -NCIT:C5211 Breast Epithelioid Hemangioma 5 27901 -NCIT:C54658 Breast Nevus 4 27902 -NCIT:C4804 Breast Hyperplasia 3 27903 -NCIT:C5195 Breast Atypical Hyperplasia 4 27904 -NCIT:C40386 Breast Atypical Myoepitheliosis 5 27905 -NCIT:C4730 Breast Atypical Lobular Hyperplasia 5 27906 -NCIT:C54184 Breast Columnar Cell Hyperplasia with Atypia 5 27907 -NCIT:C8436 Breast Atypical Ductal Hyperplasia 5 27908 -NCIT:C54183 Breast Columnar Cell Hyperplasia 4 27909 -NCIT:C54184 Breast Columnar Cell Hyperplasia with Atypia 5 27910 -NCIT:C9492 Breast Ductal Hyperplasia 4 27911 -NCIT:C27941 Breast Usual Ductal Hyperplasia 5 27912 -NCIT:C40387 Breast Intraductal Myoepitheliosis 5 27913 -NCIT:C5200 Breast Papillary Ductal Hyperplasia 5 27914 -NCIT:C8436 Breast Atypical Ductal Hyperplasia 5 27915 -NCIT:C5169 Breast Neuroendocrine Neoplasm 3 27916 -NCIT:C156493 Metastatic Breast Neuroendocrine Neoplasm 4 27917 -NCIT:C5171 Metastatic Breast Neuroendocrine Tumor G1 5 27918 -NCIT:C175581 Breast Neuroendocrine Carcinoma 4 27919 -NCIT:C40356 Breast Large Cell Neuroendocrine Carcinoma 5 27920 -NCIT:C6760 Breast Small Cell Neuroendocrine Carcinoma 5 27921 -NCIT:C175610 Breast Neuroendocrine Tumor 4 27922 -NCIT:C175611 Breast Neuroendocrine Tumor G2 5 27923 -NCIT:C5170 Breast Neuroendocrine Tumor G1 5 27924 -NCIT:C5171 Metastatic Breast Neuroendocrine Tumor G1 6 27925 -NCIT:C5206 Breast Papillary Neoplasm 3 27926 -NCIT:C36090 Breast Intraductal Papillary Neoplasm 4 27927 -NCIT:C3863 Breast Intraductal Papilloma 5 27928 -NCIT:C27944 Breast Sclerosing Papilloma 6 27929 -NCIT:C36087 Breast Central Papilloma 6 27930 -NCIT:C36088 Breast Peripheral Papilloma 6 27931 -NCIT:C36089 Breast Atypical Papilloma 6 27932 -NCIT:C5201 Breast Intraductal Papillomatosis 6 27933 -NCIT:C9503 Juvenile Breast Papillomatosis 7 27934 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 5 27935 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 6 27936 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 6 27937 -NCIT:C9134 Breast Papillary Carcinoma 4 27938 -NCIT:C176009 Encapsulated Breast Papillary Carcinoma 5 27939 -NCIT:C176010 Encapsulated Breast Papillary Carcinoma with Invasion 6 27940 -NCIT:C36085 Invasive Breast Papillary Carcinoma 5 27941 -NCIT:C176010 Encapsulated Breast Papillary Carcinoma with Invasion 6 27942 -NCIT:C176012 Invasive Breast Solid Papillary Carcinoma 6 27943 -NCIT:C36084 Invasive Breast Micropapillary Carcinoma 6 27944 -NCIT:C7439 Breast Papillary Ductal Carcinoma In Situ with Invasion 6 27945 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 5 27946 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 6 27947 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 6 27948 -NCIT:C6870 Breast Solid Papillary Carcinoma 5 27949 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 6 27950 -NCIT:C176012 Invasive Breast Solid Papillary Carcinoma 6 27951 -NCIT:C5212 Nipple Neoplasm 3 27952 -NCIT:C5197 Benign Nipple Neoplasm 4 27953 -NCIT:C40363 Nipple Syringomatous Tumor 5 27954 -NCIT:C4192 Nipple Adenoma 5 27955 -NCIT:C5213 Malignant Nipple Neoplasm 4 27956 -NCIT:C120454 Male Malignant Nipple Neoplasm 5 27957 -NCIT:C120455 Female Malignant Nipple Neoplasm 5 27958 -NCIT:C28432 Nipple Carcinoma 5 27959 -NCIT:C28292 Squamous Cell Carcinoma In Situ of the Nipple 6 27960 -NCIT:C3301 Nipple Paget Disease 6 27961 -NCIT:C54180 Breast Columnar Cell Lesion 3 27962 -NCIT:C54181 Columnar Cell Change of the Breast 4 27963 -NCIT:C54182 Columnar Cell Change of the Breast with Atypia 5 27964 -NCIT:C54183 Breast Columnar Cell Hyperplasia 4 27965 -NCIT:C54184 Breast Columnar Cell Hyperplasia with Atypia 5 27966 -NCIT:C9335 Malignant Breast Neoplasm 3 27967 -NCIT:C170726 Recurrent Malignant Breast Neoplasm 4 27968 -NCIT:C138023 Recurrent Breast Lymphoma 5 27969 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 6 27970 -NCIT:C170727 Recurrent Breast Sarcoma 5 27971 -NCIT:C133092 Recurrent Breast Angiosarcoma 6 27972 -NCIT:C7771 Recurrent Breast Carcinoma 5 27973 -NCIT:C175588 Recurrent Breast Adenocarcinoma 6 27974 -NCIT:C153568 Recurrent Breast Acinic Cell Carcinoma 7 27975 -NCIT:C153584 Recurrent Lobular Breast Carcinoma 7 27976 -NCIT:C153587 Recurrent Invasive Breast Carcinoma of No Special Type 7 27977 -NCIT:C153588 Recurrent Breast Paget Disease 7 27978 -NCIT:C168783 Recurrent HER2-Negative Breast Carcinoma 7 27979 -NCIT:C171014 Recurrent Triple-Negative Breast Carcinoma 7 27980 -NCIT:C182108 Recurrent HER2-Positive Breast Carcinoma 7 27981 -NCIT:C185157 Recurrent Hormone Receptor-Positive Breast Carcinoma 7 27982 -NCIT:C8607 Recurrent Breast Inflammatory Carcinoma 7 27983 -NCIT:C190196 Locally Recurrent Breast Carcinoma 6 27984 -NCIT:C170728 Metastatic Malignant Breast Neoplasm 4 27985 -NCIT:C153238 Metastatic Breast Carcinoma 5 27986 -NCIT:C133501 Breast Carcinoma Metastatic in the Central Nervous System 6 27987 -NCIT:C36301 Breast Carcinoma Metastatic in the Brain 7 27988 -NCIT:C153227 Breast Carcinoma Metastatic in the Lymph Nodes 6 27989 -NCIT:C160920 Locally Advanced Breast Carcinoma 6 27990 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 7 27991 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 8 27992 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 8 27993 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 8 27994 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 8 27995 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 7 27996 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 8 27997 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 27998 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 27999 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 28000 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 8 28001 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 28002 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 28003 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 28004 -NCIT:C161830 Metastatic BRCA-Associated Breast Carcinoma 6 28005 -NCIT:C162648 Advanced Breast Carcinoma 6 28006 -NCIT:C165700 Advanced Breast Adenocarcinoma 7 28007 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 28008 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 28009 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 8 28010 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 28011 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 28012 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 28013 -NCIT:C165698 Metastatic Breast Adenocarcinoma 6 28014 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 7 28015 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 8 28016 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 28017 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 28018 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 28019 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 8 28020 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 28021 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 28022 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 28023 -NCIT:C165700 Advanced Breast Adenocarcinoma 7 28024 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 28025 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 28026 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 8 28027 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 28028 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 28029 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 28030 -NCIT:C168777 Metastatic HER2-Negative Breast Carcinoma 7 28031 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 28032 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 28033 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 28034 -NCIT:C179554 Metastatic HER2-Low Breast Carcinoma 7 28035 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 28036 -NCIT:C180924 Metastatic HER2-Positive Breast Carcinoma 7 28037 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 8 28038 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 8 28039 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 28040 -NCIT:C181787 Metastatic Breast Inflammatory Carcinoma 7 28041 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 8 28042 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 8 28043 -NCIT:C9246 Stage IIIB Breast Inflammatory Carcinoma 8 28044 -NCIT:C185880 Metastatic Hormone Receptor-Positive Breast Carcinoma 7 28045 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 28046 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 28047 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 28048 -NCIT:C190852 Metastatic Androgen Receptor-Positive Breast Carcinoma 8 28049 -NCIT:C190856 Metastatic Estrogen Receptor-Positive Breast Carcinoma 8 28050 -NCIT:C190677 Metastatic Hormone Receptor-Negative Breast Carcinoma 7 28051 -NCIT:C153348 Metastatic Triple-Negative Breast Carcinoma 8 28052 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 28053 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 28054 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 28055 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 9 28056 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 28057 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 28058 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 7 28059 -NCIT:C76326 Metastatic Breast Ductal Carcinoma 7 28060 -NCIT:C76328 Metastatic Breast Lobular Carcinoma 7 28061 -NCIT:C179515 Oligometastatic Breast Carcinoma 6 28062 -NCIT:C28311 Metastatic Breast Carcinoma in the Skin 6 28063 -NCIT:C36300 Breast Carcinoma Metastatic in the Lung 6 28064 -NCIT:C36302 Breast Carcinoma Metastatic in the Liver 6 28065 -NCIT:C36303 Breast Carcinoma Metastatic in the Bone 6 28066 -NCIT:C153226 Breast Carcinoma Metastatic in the Spine 7 28067 -NCIT:C5178 Metastatic Breast Squamous Cell Carcinoma 6 28068 -NCIT:C156493 Metastatic Breast Neuroendocrine Neoplasm 5 28069 -NCIT:C5171 Metastatic Breast Neuroendocrine Tumor G1 6 28070 -NCIT:C179218 Breast Periductal Stromal Tumor 4 28071 -NCIT:C190575 Childhood Malignant Breast Neoplasm 4 28072 -NCIT:C118809 Childhood Breast Carcinoma 5 28073 -NCIT:C4504 Malignant Breast Phyllodes Tumor 4 28074 -NCIT:C4670 Breast Sarcoma 4 28075 -NCIT:C170727 Recurrent Breast Sarcoma 5 28076 -NCIT:C133092 Recurrent Breast Angiosarcoma 6 28077 -NCIT:C5184 Breast Angiosarcoma 5 28078 -NCIT:C133092 Recurrent Breast Angiosarcoma 6 28079 -NCIT:C176251 Primary Breast Angiosarcoma 6 28080 -NCIT:C40378 Postradiation Breast Angiosarcoma 6 28081 -NCIT:C5185 Breast Fibrosarcoma 5 28082 -NCIT:C5186 Breast Leiomyosarcoma 5 28083 -NCIT:C5187 Breast Liposarcoma 5 28084 -NCIT:C5189 Breast Extraskeletal Osteosarcoma 5 28085 -NCIT:C5190 Breast Rhabdomyosarcoma 5 28086 -NCIT:C4671 Breast Lymphoma 4 28087 -NCIT:C138023 Recurrent Breast Lymphoma 5 28088 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 6 28089 -NCIT:C138024 Refractory Breast Lymphoma 5 28090 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 6 28091 -NCIT:C5181 Breast Non-Hodgkin Lymphoma 5 28092 -NCIT:C35688 Breast Mucosa-Associated Lymphoid Tissue Lymphoma 6 28093 -NCIT:C40375 Breast Diffuse Large B-Cell Lymphoma 6 28094 -NCIT:C40376 Breast Burkitt Lymphoma 6 28095 -NCIT:C40377 Breast Follicular Lymphoma 6 28096 -NCIT:C5182 Breast T-Cell Non-Hodgkin Lymphoma 6 28097 -NCIT:C139012 Breast Implant-Associated Anaplastic Large Cell Lymphoma 7 28098 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 8 28099 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 8 28100 -NCIT:C4872 Breast Carcinoma 4 28101 -NCIT:C118809 Childhood Breast Carcinoma 5 28102 -NCIT:C137674 Occult Breast Carcinoma 5 28103 -NCIT:C139532 Breast Cancer by AJCC v8 Stage 5 28104 -NCIT:C139533 Breast Cancer by AJCC v8 Anatomic Stage 6 28105 -NCIT:C139534 Anatomic Stage 0 Breast Cancer AJCC v8 7 28106 -NCIT:C2924 Breast Ductal Carcinoma In Situ 8 28107 -NCIT:C176005 Breast Ductal Carcinoma In Situ, Comedo Type 9 28108 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 9 28109 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 10 28110 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 10 28111 -NCIT:C5137 Breast Ductal Carcinoma In Situ, Non-Comedo Type 9 28112 -NCIT:C5138 Breast Ductal Carcinoma In Situ, Cribriform Pattern 9 28113 -NCIT:C66933 Breast Ductal Carcinoma In Situ, Solid Type 9 28114 -NCIT:C7949 Breast Ductal Carcinoma In Situ, High Grade 9 28115 -NCIT:C9456 Breast Ductal Carcinoma In Situ, Intermediate Grade 9 28116 -NCIT:C9457 Breast Ductal Carcinoma In Situ, Low Grade 9 28117 -NCIT:C139535 Anatomic Stage I Breast Cancer AJCC v8 7 28118 -NCIT:C139536 Anatomic Stage IA Breast Cancer AJCC v8 8 28119 -NCIT:C139537 Anatomic Stage IB Breast Cancer AJCC v8 8 28120 -NCIT:C139538 Anatomic Stage II Breast Cancer AJCC v8 7 28121 -NCIT:C139539 Anatomic Stage IIA Breast Cancer AJCC v8 8 28122 -NCIT:C139540 Anatomic Stage IIB Breast Cancer AJCC v8 8 28123 -NCIT:C139541 Anatomic Stage III Breast Cancer AJCC v8 7 28124 -NCIT:C139542 Anatomic Stage IIIA Breast Cancer AJCC v8 8 28125 -NCIT:C139543 Anatomic Stage IIIB Breast Cancer AJCC v8 8 28126 -NCIT:C9246 Stage IIIB Breast Inflammatory Carcinoma 9 28127 -NCIT:C139544 Anatomic Stage IIIC Breast Cancer AJCC v8 8 28128 -NCIT:C139545 Anatomic Stage IV Breast Cancer AJCC v8 7 28129 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 8 28130 -NCIT:C139554 Breast Cancer by AJCC v8 Prognostic Stage 6 28131 -NCIT:C139555 Prognostic Stage 0 Breast Cancer AJCC v8 7 28132 -NCIT:C139556 Prognostic Stage I Breast Cancer AJCC v8 7 28133 -NCIT:C139557 Prognostic Stage IA Breast Cancer AJCC v8 8 28134 -NCIT:C139558 Prognostic Stage IB Breast Cancer AJCC v8 8 28135 -NCIT:C139569 Prognostic Stage II Breast Cancer AJCC v8 7 28136 -NCIT:C139571 Prognostic Stage IIA Breast Cancer AJCC v8 8 28137 -NCIT:C139572 Prognostic Stage IIB Breast Cancer AJCC v8 8 28138 -NCIT:C139582 Prognostic Stage III Breast Cancer AJCC v8 7 28139 -NCIT:C139583 Prognostic Stage IIIA Breast Cancer AJCC v8 8 28140 -NCIT:C139584 Prognostic Stage IIIB Breast Cancer AJCC v8 8 28141 -NCIT:C139585 Prognostic Stage IIIC Breast Cancer AJCC v8 8 28142 -NCIT:C139587 Prognostic Stage IV Breast Cancer AJCC v8 7 28143 -NCIT:C147965 Refractory Breast Carcinoma 5 28144 -NCIT:C165703 Refractory Breast Adenocarcinoma 6 28145 -NCIT:C157057 Refractory Hormone Receptor-Positive Breast Carcinoma 7 28146 -NCIT:C167076 Refractory Triple-Negative Breast Carcinoma 7 28147 -NCIT:C168784 Refractory HER2-Negative Breast Carcinoma 7 28148 -NCIT:C182110 Refractory HER2-Positive Breast Carcinoma 7 28149 -NCIT:C153238 Metastatic Breast Carcinoma 5 28150 -NCIT:C133501 Breast Carcinoma Metastatic in the Central Nervous System 6 28151 -NCIT:C36301 Breast Carcinoma Metastatic in the Brain 7 28152 -NCIT:C153227 Breast Carcinoma Metastatic in the Lymph Nodes 6 28153 -NCIT:C160920 Locally Advanced Breast Carcinoma 6 28154 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 7 28155 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 8 28156 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 8 28157 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 8 28158 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 8 28159 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 7 28160 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 8 28161 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 28162 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 28163 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 28164 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 8 28165 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 28166 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 28167 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 28168 -NCIT:C161830 Metastatic BRCA-Associated Breast Carcinoma 6 28169 -NCIT:C162648 Advanced Breast Carcinoma 6 28170 -NCIT:C165700 Advanced Breast Adenocarcinoma 7 28171 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 28172 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 28173 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 8 28174 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 28175 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 28176 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 28177 -NCIT:C165698 Metastatic Breast Adenocarcinoma 6 28178 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 7 28179 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 8 28180 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 28181 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 28182 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 28183 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 8 28184 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 28185 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 28186 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 28187 -NCIT:C165700 Advanced Breast Adenocarcinoma 7 28188 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 28189 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 28190 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 8 28191 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 28192 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 28193 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 28194 -NCIT:C168777 Metastatic HER2-Negative Breast Carcinoma 7 28195 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 28196 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 28197 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 28198 -NCIT:C179554 Metastatic HER2-Low Breast Carcinoma 7 28199 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 28200 -NCIT:C180924 Metastatic HER2-Positive Breast Carcinoma 7 28201 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 8 28202 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 8 28203 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 28204 -NCIT:C181787 Metastatic Breast Inflammatory Carcinoma 7 28205 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 8 28206 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 8 28207 -NCIT:C9246 Stage IIIB Breast Inflammatory Carcinoma 8 28208 -NCIT:C185880 Metastatic Hormone Receptor-Positive Breast Carcinoma 7 28209 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 28210 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 28211 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 28212 -NCIT:C190852 Metastatic Androgen Receptor-Positive Breast Carcinoma 8 28213 -NCIT:C190856 Metastatic Estrogen Receptor-Positive Breast Carcinoma 8 28214 -NCIT:C190677 Metastatic Hormone Receptor-Negative Breast Carcinoma 7 28215 -NCIT:C153348 Metastatic Triple-Negative Breast Carcinoma 8 28216 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 28217 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 28218 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 28219 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 9 28220 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 28221 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 28222 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 7 28223 -NCIT:C76326 Metastatic Breast Ductal Carcinoma 7 28224 -NCIT:C76328 Metastatic Breast Lobular Carcinoma 7 28225 -NCIT:C179515 Oligometastatic Breast Carcinoma 6 28226 -NCIT:C28311 Metastatic Breast Carcinoma in the Skin 6 28227 -NCIT:C36300 Breast Carcinoma Metastatic in the Lung 6 28228 -NCIT:C36302 Breast Carcinoma Metastatic in the Liver 6 28229 -NCIT:C36303 Breast Carcinoma Metastatic in the Bone 6 28230 -NCIT:C153226 Breast Carcinoma Metastatic in the Spine 7 28231 -NCIT:C5178 Metastatic Breast Squamous Cell Carcinoma 6 28232 -NCIT:C158752 Unresectable Breast Carcinoma 5 28233 -NCIT:C158751 Unresectable Breast Inflammatory Carcinoma 6 28234 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 6 28235 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 7 28236 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 7 28237 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 7 28238 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 7 28239 -NCIT:C186284 Unresectable HER2-Positive Breast Carcinoma 6 28240 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 7 28241 -NCIT:C187160 Unresectable Hormone Receptor-Positive Breast Carcinoma 6 28242 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 7 28243 -NCIT:C187161 Unresectable HER2-Negative Breast Carcinoma 6 28244 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 7 28245 -NCIT:C190676 Unresectable Hormone Receptor-Negative Breast Carcinoma 6 28246 -NCIT:C165491 Unresectable Triple-Negative Breast Carcinoma 7 28247 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 8 28248 -NCIT:C162782 Localized Breast Carcinoma 5 28249 -NCIT:C188035 Resectable Breast Carcinoma 5 28250 -NCIT:C28432 Nipple Carcinoma 5 28251 -NCIT:C28292 Squamous Cell Carcinoma In Situ of the Nipple 6 28252 -NCIT:C3301 Nipple Paget Disease 6 28253 -NCIT:C2918 Female Breast Carcinoma 5 28254 -NCIT:C176579 Invasive Female Breast Carcinoma 6 28255 -NCIT:C176580 Female Breast Carcinoma In Situ 6 28256 -NCIT:C36107 Hereditary Female Breast Carcinoma 6 28257 -NCIT:C3862 Male Breast Carcinoma 5 28258 -NCIT:C176503 Male Breast Carcinoma In Situ 6 28259 -NCIT:C176504 Invasive Male Breast Carcinoma 6 28260 -NCIT:C36106 Hereditary Male Breast Carcinoma 6 28261 -NCIT:C4503 Hereditary Breast Carcinoma 5 28262 -NCIT:C167189 BRCA-Associated Breast Carcinoma 6 28263 -NCIT:C161830 Metastatic BRCA-Associated Breast Carcinoma 7 28264 -NCIT:C167193 PALB2-Associated Breast Carcinoma 6 28265 -NCIT:C36106 Hereditary Male Breast Carcinoma 6 28266 -NCIT:C36107 Hereditary Female Breast Carcinoma 6 28267 -NCIT:C46073 Unilateral Breast Carcinoma 5 28268 -NCIT:C5214 Breast Adenocarcinoma 5 28269 -NCIT:C114932 Hormone-Resistant Breast Carcinoma 6 28270 -NCIT:C157056 Hormone Receptor-Positive Breast Carcinoma 6 28271 -NCIT:C157057 Refractory Hormone Receptor-Positive Breast Carcinoma 7 28272 -NCIT:C185157 Recurrent Hormone Receptor-Positive Breast Carcinoma 7 28273 -NCIT:C185880 Metastatic Hormone Receptor-Positive Breast Carcinoma 7 28274 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 28275 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 28276 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 28277 -NCIT:C190852 Metastatic Androgen Receptor-Positive Breast Carcinoma 8 28278 -NCIT:C190856 Metastatic Estrogen Receptor-Positive Breast Carcinoma 8 28279 -NCIT:C187160 Unresectable Hormone Receptor-Positive Breast Carcinoma 7 28280 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 8 28281 -NCIT:C188366 Estrogen Receptor-Positive Breast Carcinoma 7 28282 -NCIT:C190856 Metastatic Estrogen Receptor-Positive Breast Carcinoma 8 28283 -NCIT:C190851 Androgen Receptor-Positive Breast Carcinoma 7 28284 -NCIT:C190852 Metastatic Androgen Receptor-Positive Breast Carcinoma 8 28285 -NCIT:C165698 Metastatic Breast Adenocarcinoma 6 28286 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 7 28287 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 8 28288 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 28289 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 28290 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 28291 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 8 28292 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 28293 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 28294 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 28295 -NCIT:C165700 Advanced Breast Adenocarcinoma 7 28296 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 28297 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 28298 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 8 28299 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 28300 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 28301 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 28302 -NCIT:C168777 Metastatic HER2-Negative Breast Carcinoma 7 28303 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 28304 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 28305 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 28306 -NCIT:C179554 Metastatic HER2-Low Breast Carcinoma 7 28307 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 28308 -NCIT:C180924 Metastatic HER2-Positive Breast Carcinoma 7 28309 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 8 28310 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 8 28311 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 28312 -NCIT:C181787 Metastatic Breast Inflammatory Carcinoma 7 28313 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 8 28314 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 8 28315 -NCIT:C9246 Stage IIIB Breast Inflammatory Carcinoma 8 28316 -NCIT:C185880 Metastatic Hormone Receptor-Positive Breast Carcinoma 7 28317 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 28318 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 28319 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 28320 -NCIT:C190852 Metastatic Androgen Receptor-Positive Breast Carcinoma 8 28321 -NCIT:C190856 Metastatic Estrogen Receptor-Positive Breast Carcinoma 8 28322 -NCIT:C190677 Metastatic Hormone Receptor-Negative Breast Carcinoma 7 28323 -NCIT:C153348 Metastatic Triple-Negative Breast Carcinoma 8 28324 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 28325 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 28326 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 28327 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 9 28328 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 28329 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 28330 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 7 28331 -NCIT:C76326 Metastatic Breast Ductal Carcinoma 7 28332 -NCIT:C76328 Metastatic Breast Lobular Carcinoma 7 28333 -NCIT:C165703 Refractory Breast Adenocarcinoma 6 28334 -NCIT:C157057 Refractory Hormone Receptor-Positive Breast Carcinoma 7 28335 -NCIT:C167076 Refractory Triple-Negative Breast Carcinoma 7 28336 -NCIT:C168784 Refractory HER2-Negative Breast Carcinoma 7 28337 -NCIT:C182110 Refractory HER2-Positive Breast Carcinoma 7 28338 -NCIT:C165743 Hormone Receptor-Negative Breast Carcinoma 6 28339 -NCIT:C190676 Unresectable Hormone Receptor-Negative Breast Carcinoma 7 28340 -NCIT:C165491 Unresectable Triple-Negative Breast Carcinoma 8 28341 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 28342 -NCIT:C190677 Metastatic Hormone Receptor-Negative Breast Carcinoma 7 28343 -NCIT:C153348 Metastatic Triple-Negative Breast Carcinoma 8 28344 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 28345 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 28346 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 28347 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 9 28348 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 28349 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 28350 -NCIT:C71732 Triple-Negative Breast Carcinoma 7 28351 -NCIT:C153348 Metastatic Triple-Negative Breast Carcinoma 8 28352 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 28353 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 28354 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 28355 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 9 28356 -NCIT:C165491 Unresectable Triple-Negative Breast Carcinoma 8 28357 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 28358 -NCIT:C167076 Refractory Triple-Negative Breast Carcinoma 8 28359 -NCIT:C171014 Recurrent Triple-Negative Breast Carcinoma 8 28360 -NCIT:C181081 Early Stage Triple-Negative Breast Carcinoma 8 28361 -NCIT:C168519 HER2-Negative Breast Carcinoma 6 28362 -NCIT:C168777 Metastatic HER2-Negative Breast Carcinoma 7 28363 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 28364 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 28365 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 28366 -NCIT:C168783 Recurrent HER2-Negative Breast Carcinoma 7 28367 -NCIT:C168784 Refractory HER2-Negative Breast Carcinoma 7 28368 -NCIT:C187161 Unresectable HER2-Negative Breast Carcinoma 7 28369 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 8 28370 -NCIT:C190215 Early Stage HER2-Negative Breast Carcinoma 7 28371 -NCIT:C175588 Recurrent Breast Adenocarcinoma 6 28372 -NCIT:C153568 Recurrent Breast Acinic Cell Carcinoma 7 28373 -NCIT:C153584 Recurrent Lobular Breast Carcinoma 7 28374 -NCIT:C153587 Recurrent Invasive Breast Carcinoma of No Special Type 7 28375 -NCIT:C153588 Recurrent Breast Paget Disease 7 28376 -NCIT:C168783 Recurrent HER2-Negative Breast Carcinoma 7 28377 -NCIT:C171014 Recurrent Triple-Negative Breast Carcinoma 7 28378 -NCIT:C182108 Recurrent HER2-Positive Breast Carcinoma 7 28379 -NCIT:C185157 Recurrent Hormone Receptor-Positive Breast Carcinoma 7 28380 -NCIT:C8607 Recurrent Breast Inflammatory Carcinoma 7 28381 -NCIT:C179553 HER2-Low Breast Carcinoma 6 28382 -NCIT:C179554 Metastatic HER2-Low Breast Carcinoma 7 28383 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 28384 -NCIT:C3771 Breast Lobular Carcinoma 6 28385 -NCIT:C153584 Recurrent Lobular Breast Carcinoma 7 28386 -NCIT:C4018 Breast Lobular Carcinoma In Situ 7 28387 -NCIT:C137839 Breast Pleomorphic Lobular Carcinoma In Situ 8 28388 -NCIT:C175949 Breast Classic Lobular Carcinoma In Situ 8 28389 -NCIT:C83170 Breast Classic Lobular Carcinoma In Situ Type A 9 28390 -NCIT:C83171 Breast Classic Lobular Carcinoma In Situ Type B 9 28391 -NCIT:C175950 Breast Florid Lobular Carcinoma In Situ 8 28392 -NCIT:C76328 Metastatic Breast Lobular Carcinoma 7 28393 -NCIT:C7950 Invasive Breast Lobular Carcinoma 7 28394 -NCIT:C157235 Breast Histiocytoid Carcinoma 8 28395 -NCIT:C187405 Invasive Breast Lobular Carcinoma with Extracellular Mucin 8 28396 -NCIT:C54691 Invasive Breast Lobular Carcinoma, Signet Ring Variant 8 28397 -NCIT:C9136 Invasive Breast Lobular Carcinoma with Predominant In Situ Component 8 28398 -NCIT:C97049 Invasive Breast Lobular Carcinoma, Alveolar Variant 8 28399 -NCIT:C97051 Invasive Breast Lobular Carcinoma, Pleomorphic Variant 8 28400 -NCIT:C97052 Invasive Breast Lobular Carcinoma, Solid Variant 8 28401 -NCIT:C97053 Invasive Breast Lobular Carcinoma, Tubulolobular Variant 8 28402 -NCIT:C4001 Breast Inflammatory Carcinoma 6 28403 -NCIT:C158751 Unresectable Breast Inflammatory Carcinoma 7 28404 -NCIT:C181787 Metastatic Breast Inflammatory Carcinoma 7 28405 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 8 28406 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 8 28407 -NCIT:C9246 Stage IIIB Breast Inflammatory Carcinoma 8 28408 -NCIT:C8607 Recurrent Breast Inflammatory Carcinoma 7 28409 -NCIT:C4017 Breast Ductal Carcinoma 6 28410 -NCIT:C2924 Breast Ductal Carcinoma In Situ 7 28411 -NCIT:C176005 Breast Ductal Carcinoma In Situ, Comedo Type 8 28412 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 8 28413 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 9 28414 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 9 28415 -NCIT:C5137 Breast Ductal Carcinoma In Situ, Non-Comedo Type 8 28416 -NCIT:C5138 Breast Ductal Carcinoma In Situ, Cribriform Pattern 8 28417 -NCIT:C66933 Breast Ductal Carcinoma In Situ, Solid Type 8 28418 -NCIT:C7949 Breast Ductal Carcinoma In Situ, High Grade 8 28419 -NCIT:C9456 Breast Ductal Carcinoma In Situ, Intermediate Grade 8 28420 -NCIT:C9457 Breast Ductal Carcinoma In Situ, Low Grade 8 28421 -NCIT:C4194 Invasive Breast Carcinoma of No Special Type 7 28422 -NCIT:C153587 Recurrent Invasive Breast Carcinoma of No Special Type 8 28423 -NCIT:C175585 Breast Carcinoma with Neuroendocrine Differentiation 8 28424 -NCIT:C40349 Breast Carcinoma with Osteoclast-Like Stromal Giant Cells 8 28425 -NCIT:C40350 Breast Carcinoma with Choriocarcinomatous Features 8 28426 -NCIT:C40351 Breast Carcinoma with Melanotic Features 8 28427 -NCIT:C40365 Breast Lipid-Rich Carcinoma 8 28428 -NCIT:C40366 Breast Oncocytic Carcinoma 8 28429 -NCIT:C40368 Glycogen-Rich, Clear Cell Breast Carcinoma 8 28430 -NCIT:C40369 Breast Sebaceous Carcinoma 8 28431 -NCIT:C5161 Breast Pleomorphic Carcinoma 8 28432 -NCIT:C66719 Breast Atypical Medullary Carcinoma 8 28433 -NCIT:C6987 Breast Ductal Carcinoma with Squamous Metaplasia 8 28434 -NCIT:C7362 Breast Scirrhous Carcinoma 8 28435 -NCIT:C9119 Breast Medullary Carcinoma 8 28436 -NCIT:C9132 Invasive Breast Carcinoma of No Special Type with Predominant Intraductal Component 8 28437 -NCIT:C76326 Metastatic Breast Ductal Carcinoma 7 28438 -NCIT:C40354 Breast Mucinous Cystadenocarcinoma 6 28439 -NCIT:C40360 Breast Adenocarcinoma with Spindle Cell Metaplasia 6 28440 -NCIT:C40367 Breast Acinic Cell Carcinoma 6 28441 -NCIT:C153568 Recurrent Breast Acinic Cell Carcinoma 7 28442 -NCIT:C47857 Breast Paget Disease 6 28443 -NCIT:C153588 Recurrent Breast Paget Disease 7 28444 -NCIT:C3301 Nipple Paget Disease 7 28445 -NCIT:C47858 Breast Paget Disease without Invasive Carcinoma 7 28446 -NCIT:C4019 Breast Paget Disease and Intraductal Carcinoma 8 28447 -NCIT:C7951 Breast Paget Disease with Invasive Ductal Carcinoma 7 28448 -NCIT:C5141 Breast Apocrine Carcinoma 6 28449 -NCIT:C5140 Breast Apocrine Carcinoma In Situ 7 28450 -NCIT:C5457 Invasive Breast Apocrine Carcinoma 7 28451 -NCIT:C5142 Invasive Breast Cribriform Carcinoma 6 28452 -NCIT:C5160 Breast Mixed Ductal and Lobular Carcinoma 6 28453 -NCIT:C7688 Invasive Breast Ductal Carcinoma and Lobular Carcinoma 7 28454 -NCIT:C6393 Invasive Breast Ductal Carcinoma and Invasive Lobular Carcinoma 8 28455 -NCIT:C7689 Invasive Breast Ductal Carcinoma and Lobular Carcinoma In Situ 8 28456 -NCIT:C7690 Breast Ductal Carcinoma In Situ and Lobular Carcinoma 7 28457 -NCIT:C4195 Breast Ductal Carcinoma In Situ and Lobular Carcinoma In Situ 8 28458 -NCIT:C6939 Breast Ductal Carcinoma In Situ and Invasive Lobular Carcinoma 8 28459 -NCIT:C5163 Breast Adenocarcinoma with Squamous Metaplasia 6 28460 -NCIT:C6987 Breast Ductal Carcinoma with Squamous Metaplasia 7 28461 -NCIT:C5175 Breast Signet Ring Cell Carcinoma 6 28462 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 7 28463 -NCIT:C54691 Invasive Breast Lobular Carcinoma, Signet Ring Variant 7 28464 -NCIT:C53553 Breast Carcinoma by Gene Expression Profile 6 28465 -NCIT:C53554 Luminal A Breast Carcinoma 7 28466 -NCIT:C53555 Luminal B Breast Carcinoma 7 28467 -NCIT:C53556 HER2-Positive Breast Carcinoma 7 28468 -NCIT:C180924 Metastatic HER2-Positive Breast Carcinoma 8 28469 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 28470 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 28471 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 28472 -NCIT:C182108 Recurrent HER2-Positive Breast Carcinoma 8 28473 -NCIT:C182110 Refractory HER2-Positive Breast Carcinoma 8 28474 -NCIT:C186284 Unresectable HER2-Positive Breast Carcinoma 8 28475 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 28476 -NCIT:C53557 Normal Breast-Like Subtype of Breast Carcinoma 7 28477 -NCIT:C53558 Basal-Like Breast Carcinoma 7 28478 -NCIT:C71732 Triple-Negative Breast Carcinoma 7 28479 -NCIT:C153348 Metastatic Triple-Negative Breast Carcinoma 8 28480 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 28481 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 28482 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 28483 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 9 28484 -NCIT:C165491 Unresectable Triple-Negative Breast Carcinoma 8 28485 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 28486 -NCIT:C167076 Refractory Triple-Negative Breast Carcinoma 8 28487 -NCIT:C171014 Recurrent Triple-Negative Breast Carcinoma 8 28488 -NCIT:C181081 Early Stage Triple-Negative Breast Carcinoma 8 28489 -NCIT:C9131 Breast Mucinous Carcinoma 6 28490 -NCIT:C40355 Breast Columnar Cell Mucinous Carcinoma 7 28491 -NCIT:C9134 Breast Papillary Carcinoma 6 28492 -NCIT:C176009 Encapsulated Breast Papillary Carcinoma 7 28493 -NCIT:C176010 Encapsulated Breast Papillary Carcinoma with Invasion 8 28494 -NCIT:C36085 Invasive Breast Papillary Carcinoma 7 28495 -NCIT:C176010 Encapsulated Breast Papillary Carcinoma with Invasion 8 28496 -NCIT:C176012 Invasive Breast Solid Papillary Carcinoma 8 28497 -NCIT:C36084 Invasive Breast Micropapillary Carcinoma 8 28498 -NCIT:C7439 Breast Papillary Ductal Carcinoma In Situ with Invasion 8 28499 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 7 28500 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 8 28501 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 8 28502 -NCIT:C6870 Breast Solid Papillary Carcinoma 7 28503 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 8 28504 -NCIT:C176012 Invasive Breast Solid Papillary Carcinoma 8 28505 -NCIT:C9135 Breast Tubular Carcinoma 6 28506 -NCIT:C7566 Sporadic Breast Carcinoma 5 28507 -NCIT:C7771 Recurrent Breast Carcinoma 5 28508 -NCIT:C175588 Recurrent Breast Adenocarcinoma 6 28509 -NCIT:C153568 Recurrent Breast Acinic Cell Carcinoma 7 28510 -NCIT:C153584 Recurrent Lobular Breast Carcinoma 7 28511 -NCIT:C153587 Recurrent Invasive Breast Carcinoma of No Special Type 7 28512 -NCIT:C153588 Recurrent Breast Paget Disease 7 28513 -NCIT:C168783 Recurrent HER2-Negative Breast Carcinoma 7 28514 -NCIT:C171014 Recurrent Triple-Negative Breast Carcinoma 7 28515 -NCIT:C182108 Recurrent HER2-Positive Breast Carcinoma 7 28516 -NCIT:C185157 Recurrent Hormone Receptor-Positive Breast Carcinoma 7 28517 -NCIT:C8607 Recurrent Breast Inflammatory Carcinoma 7 28518 -NCIT:C190196 Locally Recurrent Breast Carcinoma 6 28519 -NCIT:C8287 Bilateral Breast Carcinoma 5 28520 -NCIT:C40370 Synchronous Bilateral Breast Carcinoma 6 28521 -NCIT:C99390 Contralateral Breast Carcinoma 6 28522 -NCIT:C90513 Breast Cancer by AJCC v6 Stage 5 28523 -NCIT:C3641 Stage 0 Breast Cancer AJCC v6 and v7 6 28524 -NCIT:C176503 Male Breast Carcinoma In Situ 7 28525 -NCIT:C176580 Female Breast Carcinoma In Situ 7 28526 -NCIT:C2924 Breast Ductal Carcinoma In Situ 7 28527 -NCIT:C176005 Breast Ductal Carcinoma In Situ, Comedo Type 8 28528 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 8 28529 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 9 28530 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 9 28531 -NCIT:C5137 Breast Ductal Carcinoma In Situ, Non-Comedo Type 8 28532 -NCIT:C5138 Breast Ductal Carcinoma In Situ, Cribriform Pattern 8 28533 -NCIT:C66933 Breast Ductal Carcinoma In Situ, Solid Type 8 28534 -NCIT:C7949 Breast Ductal Carcinoma In Situ, High Grade 8 28535 -NCIT:C9456 Breast Ductal Carcinoma In Situ, Intermediate Grade 8 28536 -NCIT:C9457 Breast Ductal Carcinoma In Situ, Low Grade 8 28537 -NCIT:C4018 Breast Lobular Carcinoma In Situ 7 28538 -NCIT:C137839 Breast Pleomorphic Lobular Carcinoma In Situ 8 28539 -NCIT:C175949 Breast Classic Lobular Carcinoma In Situ 8 28540 -NCIT:C83170 Breast Classic Lobular Carcinoma In Situ Type A 9 28541 -NCIT:C83171 Breast Classic Lobular Carcinoma In Situ Type B 9 28542 -NCIT:C175950 Breast Florid Lobular Carcinoma In Situ 8 28543 -NCIT:C4195 Breast Ductal Carcinoma In Situ and Lobular Carcinoma In Situ 7 28544 -NCIT:C3995 Stage IV Breast Cancer AJCC v6 and v7 6 28545 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 7 28546 -NCIT:C7767 Stage I Breast Cancer AJCC v6 6 28547 -NCIT:C7768 Stage II Breast Cancer AJCC v6 and v7 6 28548 -NCIT:C5454 Stage IIA Breast Cancer AJCC v6 and v7 7 28549 -NCIT:C5455 Stage IIB Breast Cancer AJCC v6 and v7 7 28550 -NCIT:C7769 Stage III Breast Cancer AJCC v6 6 28551 -NCIT:C27828 Stage IIIC Breast Cancer AJCC v6 7 28552 -NCIT:C91230 Breast Cancer by AJCC v7 Stage 5 28553 -NCIT:C3641 Stage 0 Breast Cancer AJCC v6 and v7 6 28554 -NCIT:C176503 Male Breast Carcinoma In Situ 7 28555 -NCIT:C176580 Female Breast Carcinoma In Situ 7 28556 -NCIT:C2924 Breast Ductal Carcinoma In Situ 7 28557 -NCIT:C176005 Breast Ductal Carcinoma In Situ, Comedo Type 8 28558 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 8 28559 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 9 28560 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 9 28561 -NCIT:C5137 Breast Ductal Carcinoma In Situ, Non-Comedo Type 8 28562 -NCIT:C5138 Breast Ductal Carcinoma In Situ, Cribriform Pattern 8 28563 -NCIT:C66933 Breast Ductal Carcinoma In Situ, Solid Type 8 28564 -NCIT:C7949 Breast Ductal Carcinoma In Situ, High Grade 8 28565 -NCIT:C9456 Breast Ductal Carcinoma In Situ, Intermediate Grade 8 28566 -NCIT:C9457 Breast Ductal Carcinoma In Situ, Low Grade 8 28567 -NCIT:C4018 Breast Lobular Carcinoma In Situ 7 28568 -NCIT:C137839 Breast Pleomorphic Lobular Carcinoma In Situ 8 28569 -NCIT:C175949 Breast Classic Lobular Carcinoma In Situ 8 28570 -NCIT:C83170 Breast Classic Lobular Carcinoma In Situ Type A 9 28571 -NCIT:C83171 Breast Classic Lobular Carcinoma In Situ Type B 9 28572 -NCIT:C175950 Breast Florid Lobular Carcinoma In Situ 8 28573 -NCIT:C4195 Breast Ductal Carcinoma In Situ and Lobular Carcinoma In Situ 7 28574 -NCIT:C3995 Stage IV Breast Cancer AJCC v6 and v7 6 28575 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 7 28576 -NCIT:C7768 Stage II Breast Cancer AJCC v6 and v7 6 28577 -NCIT:C5454 Stage IIA Breast Cancer AJCC v6 and v7 7 28578 -NCIT:C5455 Stage IIB Breast Cancer AJCC v6 and v7 7 28579 -NCIT:C88375 Stage I Breast Cancer AJCC v7 6 28580 -NCIT:C85835 Stage IA Breast Cancer AJCC v7 7 28581 -NCIT:C85836 Stage IB Breast Cancer AJCC v7 7 28582 -NCIT:C88376 Stage III Breast Cancer AJCC v7 6 28583 -NCIT:C7770 Stage IIIA Breast Cancer AJCC v7 7 28584 -NCIT:C7782 Stage IIIB Breast Cancer AJCC v7 7 28585 -NCIT:C9246 Stage IIIB Breast Inflammatory Carcinoma 8 28586 -NCIT:C88377 Stage IIIC Breast Cancer AJCC v7 7 28587 -NCIT:C9245 Invasive Breast Carcinoma 5 28588 -NCIT:C175581 Breast Neuroendocrine Carcinoma 6 28589 -NCIT:C40356 Breast Large Cell Neuroendocrine Carcinoma 7 28590 -NCIT:C6760 Breast Small Cell Neuroendocrine Carcinoma 7 28591 -NCIT:C175604 Breast Polymorphous Adenocarcinoma 6 28592 -NCIT:C175607 Breast Tall Cell Carcinoma with Reversed Polarity 6 28593 -NCIT:C176504 Invasive Male Breast Carcinoma 6 28594 -NCIT:C176579 Invasive Female Breast Carcinoma 6 28595 -NCIT:C27829 Invasive Breast Carcinoma by Histologic Grade 6 28596 -NCIT:C27830 Grade 1 Invasive Breast Carcinoma 7 28597 -NCIT:C27831 Grade 2 Invasive Breast Carcinoma 7 28598 -NCIT:C27832 Grade 3 Invasive Breast Carcinoma 7 28599 -NCIT:C5161 Breast Pleomorphic Carcinoma 8 28600 -NCIT:C36085 Invasive Breast Papillary Carcinoma 6 28601 -NCIT:C176010 Encapsulated Breast Papillary Carcinoma with Invasion 7 28602 -NCIT:C176012 Invasive Breast Solid Papillary Carcinoma 7 28603 -NCIT:C36084 Invasive Breast Micropapillary Carcinoma 7 28604 -NCIT:C7439 Breast Papillary Ductal Carcinoma In Situ with Invasion 7 28605 -NCIT:C4001 Breast Inflammatory Carcinoma 6 28606 -NCIT:C158751 Unresectable Breast Inflammatory Carcinoma 7 28607 -NCIT:C181787 Metastatic Breast Inflammatory Carcinoma 7 28608 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 8 28609 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 8 28610 -NCIT:C9246 Stage IIIB Breast Inflammatory Carcinoma 8 28611 -NCIT:C8607 Recurrent Breast Inflammatory Carcinoma 7 28612 -NCIT:C40347 Breast Mixed Carcinoma 6 28613 -NCIT:C40361 Breast Adenosquamous Carcinoma 7 28614 -NCIT:C40362 Low Grade Breast Adenosquamous Carcinoma 8 28615 -NCIT:C6393 Invasive Breast Ductal Carcinoma and Invasive Lobular Carcinoma 7 28616 -NCIT:C40354 Breast Mucinous Cystadenocarcinoma 6 28617 -NCIT:C40367 Breast Acinic Cell Carcinoma 6 28618 -NCIT:C153568 Recurrent Breast Acinic Cell Carcinoma 7 28619 -NCIT:C40374 Microinvasive Breast Carcinoma 6 28620 -NCIT:C40395 Breast Malignant Myoepithelioma 6 28621 -NCIT:C4189 Breast Secretory Carcinoma 6 28622 -NCIT:C4194 Invasive Breast Carcinoma of No Special Type 6 28623 -NCIT:C153587 Recurrent Invasive Breast Carcinoma of No Special Type 7 28624 -NCIT:C175585 Breast Carcinoma with Neuroendocrine Differentiation 7 28625 -NCIT:C40349 Breast Carcinoma with Osteoclast-Like Stromal Giant Cells 7 28626 -NCIT:C40350 Breast Carcinoma with Choriocarcinomatous Features 7 28627 -NCIT:C40351 Breast Carcinoma with Melanotic Features 7 28628 -NCIT:C40365 Breast Lipid-Rich Carcinoma 7 28629 -NCIT:C40366 Breast Oncocytic Carcinoma 7 28630 -NCIT:C40368 Glycogen-Rich, Clear Cell Breast Carcinoma 7 28631 -NCIT:C40369 Breast Sebaceous Carcinoma 7 28632 -NCIT:C5161 Breast Pleomorphic Carcinoma 7 28633 -NCIT:C66719 Breast Atypical Medullary Carcinoma 7 28634 -NCIT:C6987 Breast Ductal Carcinoma with Squamous Metaplasia 7 28635 -NCIT:C7362 Breast Scirrhous Carcinoma 7 28636 -NCIT:C9119 Breast Medullary Carcinoma 7 28637 -NCIT:C9132 Invasive Breast Carcinoma of No Special Type with Predominant Intraductal Component 7 28638 -NCIT:C5130 Breast Adenoid Cystic Carcinoma 6 28639 -NCIT:C5142 Invasive Breast Cribriform Carcinoma 6 28640 -NCIT:C5164 Breast Metaplastic Carcinoma 6 28641 -NCIT:C40360 Breast Adenocarcinoma with Spindle Cell Metaplasia 7 28642 -NCIT:C40364 Breast Mixed Epithelial/Mesenchymal Metaplastic Carcinoma 7 28643 -NCIT:C47847 Breast Carcinoma with Chondroid Metaplasia 8 28644 -NCIT:C47848 Breast Carcinoma with Osseous Metaplasia 8 28645 -NCIT:C5163 Breast Adenocarcinoma with Squamous Metaplasia 7 28646 -NCIT:C6987 Breast Ductal Carcinoma with Squamous Metaplasia 8 28647 -NCIT:C5166 Breast Mucoepidermoid Carcinoma 6 28648 -NCIT:C5167 High Grade Breast Mucoepidermoid Carcinoma 7 28649 -NCIT:C5168 Low Grade Breast Mucoepidermoid Carcinoma 7 28650 -NCIT:C5175 Breast Signet Ring Cell Carcinoma 6 28651 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 7 28652 -NCIT:C54691 Invasive Breast Lobular Carcinoma, Signet Ring Variant 7 28653 -NCIT:C5177 Breast Squamous Cell Carcinoma 6 28654 -NCIT:C40357 Breast Squamous Cell Carcinoma, Large Cell Keratinizing Variant 7 28655 -NCIT:C40358 Breast Squamous Cell Carcinoma, Spindle Cell Variant 7 28656 -NCIT:C40359 Breast Squamous Cell Carcinoma, Acantholytic Variant 7 28657 -NCIT:C5178 Metastatic Breast Squamous Cell Carcinoma 7 28658 -NCIT:C5457 Invasive Breast Apocrine Carcinoma 6 28659 -NCIT:C7950 Invasive Breast Lobular Carcinoma 6 28660 -NCIT:C157235 Breast Histiocytoid Carcinoma 7 28661 -NCIT:C187405 Invasive Breast Lobular Carcinoma with Extracellular Mucin 7 28662 -NCIT:C54691 Invasive Breast Lobular Carcinoma, Signet Ring Variant 7 28663 -NCIT:C9136 Invasive Breast Lobular Carcinoma with Predominant In Situ Component 7 28664 -NCIT:C97049 Invasive Breast Lobular Carcinoma, Alveolar Variant 7 28665 -NCIT:C97051 Invasive Breast Lobular Carcinoma, Pleomorphic Variant 7 28666 -NCIT:C97052 Invasive Breast Lobular Carcinoma, Solid Variant 7 28667 -NCIT:C97053 Invasive Breast Lobular Carcinoma, Tubulolobular Variant 7 28668 -NCIT:C7951 Breast Paget Disease with Invasive Ductal Carcinoma 6 28669 -NCIT:C9131 Breast Mucinous Carcinoma 6 28670 -NCIT:C40355 Breast Columnar Cell Mucinous Carcinoma 7 28671 -NCIT:C9135 Breast Tubular Carcinoma 6 28672 -NCIT:C94770 Multifocal Breast Carcinoma 5 28673 -NCIT:C94772 Multicentric Breast Carcinoma 5 28674 -NCIT:C94774 Early Stage Breast Carcinoma 5 28675 -NCIT:C181081 Early Stage Triple-Negative Breast Carcinoma 6 28676 -NCIT:C190215 Early Stage HER2-Negative Breast Carcinoma 6 28677 -NCIT:C5143 Malignant Breast Adenomyoepithelioma 4 28678 -NCIT:C5180 Malignant Breast Spiradenoma 4 28679 -NCIT:C5213 Malignant Nipple Neoplasm 4 28680 -NCIT:C120454 Male Malignant Nipple Neoplasm 5 28681 -NCIT:C120455 Female Malignant Nipple Neoplasm 5 28682 -NCIT:C28432 Nipple Carcinoma 5 28683 -NCIT:C28292 Squamous Cell Carcinoma In Situ of the Nipple 6 28684 -NCIT:C3301 Nipple Paget Disease 6 28685 -NCIT:C7511 Metastatic Malignant Neoplasm in the Breast 4 28686 -NCIT:C188112 Metastatic Squamous Cell Carcinoma in the Breast 5 28687 -NCIT:C8410 Breast Melanoma 4 28688 -NCIT:C3010 Endocrine Neoplasm 2 28689 -NCIT:C190056 Childhood Endocrine Neoplasm 3 28690 -NCIT:C190070 Childhood Malignant Endocrine Neoplasm 4 28691 -NCIT:C118815 Childhood Lung Small Cell Carcinoma 5 28692 -NCIT:C118819 Childhood Parathyroid Gland Carcinoma 5 28693 -NCIT:C123903 Childhood Thyroid Gland Papillary Carcinoma 5 28694 -NCIT:C123904 Childhood Thyroid Gland Follicular Carcinoma 5 28695 -NCIT:C123905 Childhood Thyroid Gland Medullary Carcinoma 5 28696 -NCIT:C190069 Childhood Adrenal Cortical Carcinoma 5 28697 -NCIT:C190075 Childhood Neuroendocrine Neoplasm 4 28698 -NCIT:C118815 Childhood Lung Small Cell Carcinoma 5 28699 -NCIT:C123905 Childhood Thyroid Gland Medullary Carcinoma 5 28700 -NCIT:C190074 Childhood Paraganglioma 5 28701 -NCIT:C190071 Childhood Sympathetic Paraganglioma 6 28702 -NCIT:C118822 Childhood Adrenal Gland Pheochromocytoma 7 28703 -NCIT:C190072 Childhood Parasympathetic Paraganglioma 6 28704 -NCIT:C190073 Childhood Composite Paraganglioma 6 28705 -NCIT:C190077 Childhood Neuroendocrine Tumor 5 28706 -NCIT:C118810 Childhood Neuroendocrine Tumor G1 6 28707 -NCIT:C190076 Childhood Digestive System Neuroendocrine Tumor 6 28708 -NCIT:C190029 Childhood Appendix Neuroendocrine Tumor 7 28709 -NCIT:C190078 Childhood Neuroendocrine Tumor G2 6 28710 -NCIT:C190600 Childhood Benign Endocrine Neoplasm 4 28711 -NCIT:C190060 Childhood Thyroid Gland Follicular Adenoma 5 28712 -NCIT:C190066 Childhood Parathyroid Gland Adenoma 5 28713 -NCIT:C190068 Childhood Adrenal Cortical Adenoma 5 28714 -NCIT:C3575 Malignant Endocrine Neoplasm 3 28715 -NCIT:C150540 Recurrent Malignant Endocrine Neoplasm 4 28716 -NCIT:C165253 Recurrent Neuroendocrine Carcinoma 5 28717 -NCIT:C115440 Recurrent Merkel Cell Carcinoma 6 28718 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 7 28719 -NCIT:C165740 Locally Recurrent Merkel Cell Carcinoma 7 28720 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 6 28721 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 7 28722 -NCIT:C155938 Recurrent Digestive System Neuroendocrine Carcinoma 6 28723 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 7 28724 -NCIT:C183127 Recurrent Small Cell Neuroendocrine Carcinoma 6 28725 -NCIT:C183128 Recurrent Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 28726 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 8 28727 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 28728 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 7 28729 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 8 28730 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 5 28731 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 6 28732 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 6 28733 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 7 28734 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 5 28735 -NCIT:C6417 Recurrent Adrenal Cortical Carcinoma 5 28736 -NCIT:C7828 Recurrent Parathyroid Gland Carcinoma 5 28737 -NCIT:C150541 Refractory Malignant Endocrine Neoplasm 4 28738 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 5 28739 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 6 28740 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 6 28741 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 7 28742 -NCIT:C165742 Refractory Neuroendocrine Carcinoma 5 28743 -NCIT:C155937 Refractory Digestive System Neuroendocrine Carcinoma 6 28744 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 7 28745 -NCIT:C165741 Refractory Merkel Cell Carcinoma 6 28746 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 6 28747 -NCIT:C191853 Refractory Small Cell Neuroendocrine Carcinoma 6 28748 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 7 28749 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 8 28750 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 8 28751 -NCIT:C191854 Refractory Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 28752 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 8 28753 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 8 28754 -NCIT:C188036 Refractory Adrenal Cortical Carcinoma 5 28755 -NCIT:C27380 Thyroid Gland Adenocarcinoma 4 28756 -NCIT:C187645 Follicular-Derived Thyroid Gland Carcinoma, High Grade 5 28757 -NCIT:C187648 Differentiated High Grade Thyroid Gland Carcinoma 6 28758 -NCIT:C6040 Poorly Differentiated Thyroid Gland Carcinoma 6 28759 -NCIT:C174046 Metastatic Poorly Differentiated Thyroid Gland Carcinoma 7 28760 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 7 28761 -NCIT:C174569 Unresectable Poorly Differentiated Thyroid Gland Carcinoma 7 28762 -NCIT:C187994 Thyroid Gland Secretory Carcinoma 5 28763 -NCIT:C7153 Differentiated Thyroid Gland Carcinoma 5 28764 -NCIT:C118829 Hereditary Nonmedullary Thyroid Gland Carcinoma 6 28765 -NCIT:C140959 Differentiated Thyroid Gland Carcinoma by AJCC v7 Stage 6 28766 -NCIT:C140958 Thyroid Gland Follicular Carcinoma by AJCC v7 Stage 7 28767 -NCIT:C9084 Stage I Thyroid Gland Follicular Carcinoma AJCC v7 8 28768 -NCIT:C9085 Stage II Thyroid Gland Follicular Carcinoma AJCC v7 8 28769 -NCIT:C9086 Stage IV Thyroid Gland Follicular Carcinoma AJCC v7 8 28770 -NCIT:C115035 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v7 9 28771 -NCIT:C115036 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v7 9 28772 -NCIT:C115037 Stage IVC Thyroid Gland Follicular Carcinoma AJCC v7 9 28773 -NCIT:C9121 Stage III Thyroid Gland Follicular Carcinoma AJCC v7 8 28774 -NCIT:C140960 Thyroid Gland Papillary Carcinoma by AJCC v7 Stage 7 28775 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 8 28776 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 8 28777 -NCIT:C9083 Stage IV Thyroid Gland Papillary Carcinoma AJCC v7 8 28778 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 9 28779 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 9 28780 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 9 28781 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 8 28782 -NCIT:C87543 Stage I Differentiated Thyroid Gland Carcinoma AJCC v7 7 28783 -NCIT:C101539 Stage I Differentiated Thyroid Gland Carcinoma Under 45 Years AJCC v7 8 28784 -NCIT:C101540 Stage I Differentiated Thyroid Gland Carcinoma 45 Years and Older AJCC v7 8 28785 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 8 28786 -NCIT:C9084 Stage I Thyroid Gland Follicular Carcinoma AJCC v7 8 28787 -NCIT:C87544 Stage II Differentiated Thyroid Gland Carcinoma AJCC v7 7 28788 -NCIT:C101541 Stage II Differentiated Thyroid Gland Carcinoma Under 45 Years AJCC v7 8 28789 -NCIT:C101542 Stage II Differentiated Thyroid Gland Carcinoma 45 Years and Older AJCC v7 8 28790 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 8 28791 -NCIT:C9085 Stage II Thyroid Gland Follicular Carcinoma AJCC v7 8 28792 -NCIT:C87545 Stage III Differentiated Thyroid Gland Carcinoma AJCC v7 7 28793 -NCIT:C9121 Stage III Thyroid Gland Follicular Carcinoma AJCC v7 8 28794 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 8 28795 -NCIT:C87546 Stage IVA Differentiated Thyroid Gland Carcinoma AJCC v7 7 28796 -NCIT:C115035 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v7 8 28797 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 8 28798 -NCIT:C87547 Stage IVB Differentiated Thyroid Gland Carcinoma AJCC v7 7 28799 -NCIT:C115036 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v7 8 28800 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 8 28801 -NCIT:C87548 Stage IVC Differentiated Thyroid Gland Carcinoma AJCC v7 7 28802 -NCIT:C115037 Stage IVC Thyroid Gland Follicular Carcinoma AJCC v7 8 28803 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 8 28804 -NCIT:C140965 Differentiated Thyroid Gland Carcinoma by AJCC v8 Stage 6 28805 -NCIT:C140966 Stage I Differentiated Thyroid Gland Carcinoma AJCC v8 7 28806 -NCIT:C140967 Stage I Differentiated Thyroid Gland Carcinoma Under 55 Years AJCC v8 8 28807 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 9 28808 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 9 28809 -NCIT:C140968 Stage I Differentiated Thyroid Gland Carcinoma 55 Years and Older AJCC v8 8 28810 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 9 28811 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 9 28812 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 8 28813 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 9 28814 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 9 28815 -NCIT:C140988 Stage I Thyroid Gland Follicular Carcinoma AJCC v8 8 28816 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 9 28817 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 9 28818 -NCIT:C140969 Stage II Differentiated Thyroid Gland Carcinoma AJCC v8 7 28819 -NCIT:C140970 Stage II Differentiated Thyroid Gland Carcinoma Under 55 Years AJCC v8 8 28820 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 9 28821 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 9 28822 -NCIT:C140971 Stage II Differentiated Thyroid Gland Carcinoma 55 Years and Older AJCC v8 8 28823 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 9 28824 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 9 28825 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 8 28826 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 9 28827 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 9 28828 -NCIT:C140991 Stage II Thyroid Gland Follicular Carcinoma AJCC v8 8 28829 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 9 28830 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 9 28831 -NCIT:C140972 Stage III Differentiated Thyroid Gland Carcinoma AJCC v8 7 28832 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 8 28833 -NCIT:C140995 Stage III Thyroid Gland Follicular Carcinoma AJCC v8 8 28834 -NCIT:C140973 Stage IV Differentiated Thyroid Gland Carcinoma AJCC v8 7 28835 -NCIT:C140974 Stage IVA Differentiated Thyroid Gland Carcinoma AJCC v8 8 28836 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 9 28837 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 9 28838 -NCIT:C140975 Stage IVB Differentiated Thyroid Gland Carcinoma AJCC v8 8 28839 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 9 28840 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 9 28841 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 8 28842 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 9 28843 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 9 28844 -NCIT:C140996 Stage IV Thyroid Gland Follicular Carcinoma AJCC v8 8 28845 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 9 28846 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 9 28847 -NCIT:C140976 Thyroid Gland Papillary Carcinoma by AJCC v8 Stage 7 28848 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 8 28849 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 9 28850 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 9 28851 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 8 28852 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 9 28853 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 9 28854 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 8 28855 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 8 28856 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 9 28857 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 9 28858 -NCIT:C140987 Thyroid Gland Follicular Carcinoma by AJCC v8 Stage 7 28859 -NCIT:C140988 Stage I Thyroid Gland Follicular Carcinoma AJCC v8 8 28860 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 9 28861 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 9 28862 -NCIT:C140991 Stage II Thyroid Gland Follicular Carcinoma AJCC v8 8 28863 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 9 28864 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 9 28865 -NCIT:C140995 Stage III Thyroid Gland Follicular Carcinoma AJCC v8 8 28866 -NCIT:C140996 Stage IV Thyroid Gland Follicular Carcinoma AJCC v8 8 28867 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 9 28868 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 9 28869 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 6 28870 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 7 28871 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 7 28872 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 8 28873 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 6 28874 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 7 28875 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 7 28876 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 8 28877 -NCIT:C168572 Unresectable Differentiated Thyroid Gland Carcinoma 6 28878 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 7 28879 -NCIT:C174571 Unresectable Thyroid Gland Follicular Carcinoma 7 28880 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 8 28881 -NCIT:C173979 Metastatic Differentiated Thyroid Gland Carcinoma 6 28882 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 7 28883 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 8 28884 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 9 28885 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 7 28886 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 7 28887 -NCIT:C4035 Thyroid Gland Papillary Carcinoma 6 28888 -NCIT:C123903 Childhood Thyroid Gland Papillary Carcinoma 7 28889 -NCIT:C126409 Warthin-Like Variant Thyroid Gland Papillary Carcinoma 7 28890 -NCIT:C126410 Thyroid Gland Papillary Carcinoma with Fibromatosis/Fasciitis-Like/Desmoid-Type Stroma 7 28891 -NCIT:C126594 Follicular Variant Thyroid Gland Papillary Carcinoma 7 28892 -NCIT:C66850 Invasive Encapsulated Follicular Variant Thyroid Gland Papillary Carcinoma 8 28893 -NCIT:C7381 Invasive Follicular Variant Thyroid Gland Papillary Carcinoma 8 28894 -NCIT:C140960 Thyroid Gland Papillary Carcinoma by AJCC v7 Stage 7 28895 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 8 28896 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 8 28897 -NCIT:C9083 Stage IV Thyroid Gland Papillary Carcinoma AJCC v7 8 28898 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 9 28899 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 9 28900 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 9 28901 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 8 28902 -NCIT:C140976 Thyroid Gland Papillary Carcinoma by AJCC v8 Stage 7 28903 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 8 28904 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 9 28905 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 9 28906 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 8 28907 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 9 28908 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 9 28909 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 8 28910 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 8 28911 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 9 28912 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 9 28913 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 7 28914 -NCIT:C156034 Encapsulated Variant Thyroid Gland Papillary Carcinoma 7 28915 -NCIT:C156045 Spindle Cell Variant Thyroid Gland Papillary Carcinoma 7 28916 -NCIT:C156050 Hobnail Variant Thyroid Gland Papillary Carcinoma 7 28917 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 7 28918 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 7 28919 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 7 28920 -NCIT:C187644 Classic Thyroid Gland Papillary Carcinoma 7 28921 -NCIT:C35558 Tall Cell Variant Thyroid Gland Papillary Carcinoma 7 28922 -NCIT:C35830 Columnar Cell Variant Thyroid Gland Papillary Carcinoma 7 28923 -NCIT:C37304 Multicentric Thyroid Gland Papillary Carcinoma 7 28924 -NCIT:C46004 Thyroid Gland Papillary Microcarcinoma 7 28925 -NCIT:C46092 Macrofollicular Variant Thyroid Gland Papillary Carcinoma 7 28926 -NCIT:C46093 Oncocytic Variant Thyroid Gland Papillary Carcinoma 7 28927 -NCIT:C46094 Clear Cell Variant Thyroid Gland Papillary Carcinoma 7 28928 -NCIT:C46095 Solid/Trabecular Variant Thyroid Gland Papillary Carcinoma 7 28929 -NCIT:C7427 Diffuse Sclerosing Variant Thyroid Gland Papillary Carcinoma 7 28930 -NCIT:C8054 Thyroid Gland Follicular Carcinoma 6 28931 -NCIT:C123904 Childhood Thyroid Gland Follicular Carcinoma 7 28932 -NCIT:C140958 Thyroid Gland Follicular Carcinoma by AJCC v7 Stage 7 28933 -NCIT:C9084 Stage I Thyroid Gland Follicular Carcinoma AJCC v7 8 28934 -NCIT:C9085 Stage II Thyroid Gland Follicular Carcinoma AJCC v7 8 28935 -NCIT:C9086 Stage IV Thyroid Gland Follicular Carcinoma AJCC v7 8 28936 -NCIT:C115035 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v7 9 28937 -NCIT:C115036 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v7 9 28938 -NCIT:C115037 Stage IVC Thyroid Gland Follicular Carcinoma AJCC v7 9 28939 -NCIT:C9121 Stage III Thyroid Gland Follicular Carcinoma AJCC v7 8 28940 -NCIT:C140987 Thyroid Gland Follicular Carcinoma by AJCC v8 Stage 7 28941 -NCIT:C140988 Stage I Thyroid Gland Follicular Carcinoma AJCC v8 8 28942 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 9 28943 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 9 28944 -NCIT:C140991 Stage II Thyroid Gland Follicular Carcinoma AJCC v8 8 28945 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 9 28946 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 9 28947 -NCIT:C140995 Stage III Thyroid Gland Follicular Carcinoma AJCC v8 8 28948 -NCIT:C140996 Stage IV Thyroid Gland Follicular Carcinoma AJCC v8 8 28949 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 9 28950 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 9 28951 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 7 28952 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 8 28953 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 7 28954 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 8 28955 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 9 28956 -NCIT:C156122 Thyroid Gland Follicular Carcinoma, Encapsulated Angioinvasive 7 28957 -NCIT:C156123 Thyroid Gland Follicular Carcinoma, Widely Invasive 7 28958 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 7 28959 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 8 28960 -NCIT:C174571 Unresectable Thyroid Gland Follicular Carcinoma 7 28961 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 8 28962 -NCIT:C187643 Thyroid Gland Follicular Carcinoma, Signet Ring Cell Variant 7 28963 -NCIT:C46096 Thyroid Gland Follicular Carcinoma, Clear Cell Variant 7 28964 -NCIT:C4946 Thyroid Gland Oncocytic Carcinoma 7 28965 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 8 28966 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 8 28967 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 8 28968 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 8 28969 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 9 28970 -NCIT:C65200 Thyroid Gland Follicular Carcinoma, Minimally Invasive 7 28971 -NCIT:C3773 Neuroendocrine Carcinoma 4 28972 -NCIT:C155869 Metastatic Neuroendocrine Carcinoma 5 28973 -NCIT:C155870 Advanced Neuroendocrine Carcinoma 6 28974 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 7 28975 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 28976 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 28977 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 7 28978 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 28979 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 28980 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 28981 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 7 28982 -NCIT:C165300 Advanced Merkel Cell Carcinoma 7 28983 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 7 28984 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 28985 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 28986 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 28987 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 6 28988 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 7 28989 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 28990 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 28991 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 28992 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 7 28993 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 28994 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 28995 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 28996 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 7 28997 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 28998 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 28999 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 29000 -NCIT:C158908 Metastatic Large Cell Neuroendocrine Carcinoma 6 29001 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 7 29002 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 7 29003 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 29004 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 7 29005 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 29006 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 29007 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 7 29008 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 29009 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 29010 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 29011 -NCIT:C158909 Locally Advanced Neuroendocrine Carcinoma 6 29012 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 29013 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 29014 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 7 29015 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 29016 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 7 29017 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 7 29018 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 29019 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 7 29020 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 7 29021 -NCIT:C158911 Metastatic Small Cell Neuroendocrine Carcinoma 6 29022 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 7 29023 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 29024 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 29025 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 7 29026 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 29027 -NCIT:C191852 Metastatic Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 29028 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 29029 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 29030 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 8 29031 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 29032 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 6 29033 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 7 29034 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 7 29035 -NCIT:C162572 Metastatic Merkel Cell Carcinoma 6 29036 -NCIT:C165300 Advanced Merkel Cell Carcinoma 7 29037 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 7 29038 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 7 29039 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 6 29040 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 7 29041 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 7 29042 -NCIT:C163975 Neuroendocrine Carcinoma of Unknown Primary 6 29043 -NCIT:C160980 Head and Neck Neuroendocrine Carcinoma 5 29044 -NCIT:C160981 Head and Neck Small Cell Neuroendocrine Carcinoma 6 29045 -NCIT:C116318 Sinonasal Small Cell Neuroendocrine Carcinoma 7 29046 -NCIT:C35703 Salivary Gland Small Cell Neuroendocrine Carcinoma 7 29047 -NCIT:C5956 Minor Salivary Gland Small Cell Neuroendocrine Carcinoma 8 29048 -NCIT:C6025 Laryngeal Small Cell Neuroendocrine Carcinoma 7 29049 -NCIT:C160982 Head and Neck Large Cell Neuroendocrine Carcinoma 6 29050 -NCIT:C173091 Sinonasal Large Cell Neuroendocrine Carcinoma 7 29051 -NCIT:C173395 Laryngeal Large Cell Neuroendocrine Carcinoma 7 29052 -NCIT:C173650 Salivary Gland Large Cell Neuroendocrine Carcinoma 7 29053 -NCIT:C173089 Sinonasal Neuroendocrine Carcinoma 6 29054 -NCIT:C116318 Sinonasal Small Cell Neuroendocrine Carcinoma 7 29055 -NCIT:C173091 Sinonasal Large Cell Neuroendocrine Carcinoma 7 29056 -NCIT:C173390 Laryngeal Neuroendocrine Carcinoma 6 29057 -NCIT:C173395 Laryngeal Large Cell Neuroendocrine Carcinoma 7 29058 -NCIT:C6025 Laryngeal Small Cell Neuroendocrine Carcinoma 7 29059 -NCIT:C173587 Head and Neck Merkel Cell Carcinoma 6 29060 -NCIT:C173653 Salivary Gland Neuroendocrine Carcinoma 6 29061 -NCIT:C173650 Salivary Gland Large Cell Neuroendocrine Carcinoma 7 29062 -NCIT:C35703 Salivary Gland Small Cell Neuroendocrine Carcinoma 7 29063 -NCIT:C5956 Minor Salivary Gland Small Cell Neuroendocrine Carcinoma 8 29064 -NCIT:C3879 Thyroid Gland Medullary Carcinoma 6 29065 -NCIT:C123905 Childhood Thyroid Gland Medullary Carcinoma 7 29066 -NCIT:C141041 Thyroid Gland Medullary Carcinoma by AJCC v7 Stage 7 29067 -NCIT:C6133 Stage I Thyroid Gland Medullary Carcinoma AJCC v7 8 29068 -NCIT:C6134 Stage II Thyroid Gland Medullary Carcinoma AJCC v7 8 29069 -NCIT:C6135 Stage III Thyroid Gland Medullary Carcinoma AJCC v7 8 29070 -NCIT:C6136 Stage IV Thyroid Gland Medullary Carcinoma AJCC v7 8 29071 -NCIT:C87549 Stage IVA Thyroid Gland Medullary Carcinoma AJCC v7 9 29072 -NCIT:C87550 Stage IVB Thyroid Gland Medullary Carcinoma AJCC v7 9 29073 -NCIT:C87551 Stage IVC Thyroid Gland Medullary Carcinoma AJCC v7 9 29074 -NCIT:C141042 Thyroid Gland Medullary Carcinoma by AJCC v8 Stage 7 29075 -NCIT:C141043 Stage I Thyroid Gland Medullary Carcinoma AJCC v8 8 29076 -NCIT:C141044 Stage II Thyroid Gland Medullary Carcinoma AJCC v8 8 29077 -NCIT:C141045 Stage III Thyroid Gland Medullary Carcinoma AJCC v8 8 29078 -NCIT:C141046 Stage IV Thyroid Gland Medullary Carcinoma AJCC v8 8 29079 -NCIT:C141047 Stage IVA Thyroid Gland Medullary Carcinoma AJCC v8 9 29080 -NCIT:C141048 Stage IVB Thyroid Gland Medullary Carcinoma AJCC v8 9 29081 -NCIT:C141049 Stage IVC Thyroid Gland Medullary Carcinoma AJCC v8 9 29082 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 7 29083 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 8 29084 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 7 29085 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 29086 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 29087 -NCIT:C163974 Unresectable Thyroid Gland Medullary Carcinoma 7 29088 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 8 29089 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 7 29090 -NCIT:C4193 Thyroid Gland Medullary Carcinoma with Amyloid Stroma 7 29091 -NCIT:C46098 Sporadic Thyroid Gland Medullary Carcinoma 7 29092 -NCIT:C46103 Sporadic Thyroid Gland Micromedullary Carcinoma 8 29093 -NCIT:C46099 Hereditary Thyroid Gland Medullary Carcinoma 7 29094 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 8 29095 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 8 29096 -NCIT:C165253 Recurrent Neuroendocrine Carcinoma 5 29097 -NCIT:C115440 Recurrent Merkel Cell Carcinoma 6 29098 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 7 29099 -NCIT:C165740 Locally Recurrent Merkel Cell Carcinoma 7 29100 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 6 29101 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 7 29102 -NCIT:C155938 Recurrent Digestive System Neuroendocrine Carcinoma 6 29103 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 7 29104 -NCIT:C183127 Recurrent Small Cell Neuroendocrine Carcinoma 6 29105 -NCIT:C183128 Recurrent Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 29106 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 8 29107 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 29108 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 7 29109 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 8 29110 -NCIT:C165742 Refractory Neuroendocrine Carcinoma 5 29111 -NCIT:C155937 Refractory Digestive System Neuroendocrine Carcinoma 6 29112 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 7 29113 -NCIT:C165741 Refractory Merkel Cell Carcinoma 6 29114 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 6 29115 -NCIT:C191853 Refractory Small Cell Neuroendocrine Carcinoma 6 29116 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 7 29117 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 8 29118 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 8 29119 -NCIT:C191854 Refractory Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 29120 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 8 29121 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 8 29122 -NCIT:C172806 Unresectable Neuroendocrine Carcinoma 5 29123 -NCIT:C155935 Unresectable Digestive System Neuroendocrine Carcinoma 6 29124 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 7 29125 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 7 29126 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 6 29127 -NCIT:C162786 Unresectable Merkel Cell Carcinoma 6 29128 -NCIT:C163974 Unresectable Thyroid Gland Medullary Carcinoma 6 29129 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 7 29130 -NCIT:C172810 Unresectable Large Cell Neuroendocrine Carcinoma 6 29131 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 7 29132 -NCIT:C191855 Unresectable Extrapulmonary Small Cell Neuroendocrine Carcinoma 6 29133 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 7 29134 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 7 29135 -NCIT:C173385 Neuroendocrine Carcinoma, Excluding Head and Neck 5 29136 -NCIT:C128045 Cervical Neuroendocrine Carcinoma 6 29137 -NCIT:C40214 Cervical Large Cell Neuroendocrine Carcinoma 7 29138 -NCIT:C7982 Cervical Small Cell Neuroendocrine Carcinoma 7 29139 -NCIT:C128073 Vaginal Neuroendocrine Carcinoma 6 29140 -NCIT:C128075 Vaginal Large Cell Neuroendocrine Carcinoma 7 29141 -NCIT:C40263 Vaginal Small Cell Neuroendocrine Carcinoma 7 29142 -NCIT:C128243 Vulvar Neuroendocrine Carcinoma 6 29143 -NCIT:C128244 Vulvar Small Cell Neuroendocrine Carcinoma 7 29144 -NCIT:C40298 Bartholin Gland Small Cell Neuroendocrine Carcinoma 8 29145 -NCIT:C128245 Vulvar Large Cell Neuroendocrine Carcinoma 7 29146 -NCIT:C128247 Vulvar Merkel Cell Carcinoma 7 29147 -NCIT:C157759 Bladder Neuroendocrine Carcinoma 6 29148 -NCIT:C157760 Bladder Large Cell Neuroendocrine Carcinoma 7 29149 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 8 29150 -NCIT:C9461 Bladder Small Cell Neuroendocrine Carcinoma 7 29151 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 8 29152 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 8 29153 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 29154 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 8 29155 -NCIT:C158912 Prostate Neuroendocrine Carcinoma 6 29156 -NCIT:C158650 Prostate Large Cell Neuroendocrine Carcinoma 7 29157 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 7 29158 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 29159 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 29160 -NCIT:C6766 Prostate Small Cell Neuroendocrine Carcinoma 7 29161 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 29162 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 8 29163 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 8 29164 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 8 29165 -NCIT:C159224 Kidney Neuroendocrine Carcinoma 6 29166 -NCIT:C116317 Kidney Small Cell Neuroendocrine Carcinoma 7 29167 -NCIT:C159225 Kidney Large Cell Neuroendocrine Carcinoma 7 29168 -NCIT:C175581 Breast Neuroendocrine Carcinoma 6 29169 -NCIT:C40356 Breast Large Cell Neuroendocrine Carcinoma 7 29170 -NCIT:C6760 Breast Small Cell Neuroendocrine Carcinoma 7 29171 -NCIT:C45569 Lung Neuroendocrine Carcinoma 6 29172 -NCIT:C4917 Lung Small Cell Carcinoma 7 29173 -NCIT:C118815 Childhood Lung Small Cell Carcinoma 8 29174 -NCIT:C136496 Lung Small Cell Carcinoma by AJCC v7 Stage 8 29175 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 9 29176 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 10 29177 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 10 29178 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 9 29179 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 10 29180 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 10 29181 -NCIT:C6679 Stage III Lung Small Cell Carcinoma AJCC v7 9 29182 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 10 29183 -NCIT:C6681 Stage IIIB Lung Small Cell Carcinoma AJCC v7 10 29184 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 11 29185 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 11 29186 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 9 29187 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 8 29188 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 9 29189 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 9 29190 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 8 29191 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 9 29192 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 29193 -NCIT:C158495 Platinum-Sensitive Lung Small Cell Carcinoma 8 29194 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 8 29195 -NCIT:C188753 Lung Small Cell Carcinoma Neuroendocrine Subtype 8 29196 -NCIT:C188754 Lung Small Cell Carcinoma, Neuroendocrine-High Subtype 9 29197 -NCIT:C188755 Lung Small Cell Carcinoma, Neuroendocrine-Low Subtype 9 29198 -NCIT:C188756 Lung Small Cell Carcinoma Molecular Subtypes 8 29199 -NCIT:C188761 Lung Small Cell Carcinoma, A Subtype 9 29200 -NCIT:C188762 Lung Small Cell Carcinoma, N Subtype 9 29201 -NCIT:C188763 Lung Small Cell Carcinoma, P Subtype 9 29202 -NCIT:C188765 Lung Small Cell Carcinoma, I Subtype 9 29203 -NCIT:C188766 Lung Small Cell Carcinoma, Y Subtype 9 29204 -NCIT:C6683 Occult Lung Small Cell Carcinoma 8 29205 -NCIT:C7853 Limited Stage Lung Small Cell Carcinoma 8 29206 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 9 29207 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 9 29208 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 10 29209 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 10 29210 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 9 29211 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 10 29212 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 10 29213 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 9 29214 -NCIT:C9049 Extensive Stage Lung Small Cell Carcinoma 8 29215 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 9 29216 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 9 29217 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 9 29218 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 9 29219 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 8 29220 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 9 29221 -NCIT:C9137 Combined Lung Small Cell Carcinoma 8 29222 -NCIT:C9379 Combined Lung Small Cell Carcinoma and Lung Adenocarcinoma 9 29223 -NCIT:C9423 Combined Lung Small Cell and Squamous Cell Carcinoma 9 29224 -NCIT:C5672 Lung Large Cell Neuroendocrine Carcinoma 7 29225 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 8 29226 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 29227 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 29228 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 8 29229 -NCIT:C7267 Combined Lung Large Cell Neuroendocrine Carcinoma 8 29230 -NCIT:C7591 Combined Lung Carcinoma 7 29231 -NCIT:C7267 Combined Lung Large Cell Neuroendocrine Carcinoma 8 29232 -NCIT:C9137 Combined Lung Small Cell Carcinoma 8 29233 -NCIT:C9379 Combined Lung Small Cell Carcinoma and Lung Adenocarcinoma 9 29234 -NCIT:C9423 Combined Lung Small Cell and Squamous Cell Carcinoma 9 29235 -NCIT:C9231 Merkel Cell Carcinoma 6 29236 -NCIT:C115440 Recurrent Merkel Cell Carcinoma 7 29237 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 8 29238 -NCIT:C165740 Locally Recurrent Merkel Cell Carcinoma 8 29239 -NCIT:C128247 Vulvar Merkel Cell Carcinoma 7 29240 -NCIT:C136869 Merkel Cell Carcinoma by AJCC v7 Stage 7 29241 -NCIT:C85887 Stage 0 Merkel Cell Carcinoma AJCC v7 8 29242 -NCIT:C85889 Stage I Merkel Cell Carcinoma AJCC v7 8 29243 -NCIT:C85890 Stage IA Merkel Cell Carcinoma AJCC v7 9 29244 -NCIT:C85892 Stage IB Merkel Cell Carcinoma AJCC v7 9 29245 -NCIT:C85893 Stage II Merkel Cell Carcinoma AJCC v7 8 29246 -NCIT:C85894 Stage IIA Merkel Cell Carcinoma AJCC v7 9 29247 -NCIT:C85895 Stage IIB Merkel Cell Carcinoma AJCC v7 9 29248 -NCIT:C85896 Stage IIC Merkel Cell Carcinoma AJCC v7 9 29249 -NCIT:C85897 Stage III Merkel Cell Carcinoma AJCC v7 8 29250 -NCIT:C85898 Stage IIIA Merkel Cell Carcinoma AJCC v7 9 29251 -NCIT:C85899 Stage IIIB Merkel Cell Carcinoma AJCC v7 9 29252 -NCIT:C85900 Stage IV Merkel Cell Carcinoma AJCC v7 8 29253 -NCIT:C136870 Merkel Cell Carcinoma by AJCC v8 Stage 7 29254 -NCIT:C136871 Merkel Cell Carcinoma by AJCC v8 Clinical Stage 8 29255 -NCIT:C136872 Clinical Stage 0 Merkel Cell Carcinoma AJCC v8 9 29256 -NCIT:C136873 Clinical Stage I Merkel Cell Carcinoma AJCC v8 9 29257 -NCIT:C136874 Clinical Stage II Merkel Cell Carcinoma AJCC v8 9 29258 -NCIT:C136875 Clinical Stage IIA Merkel Cell Carcinoma AJCC v8 10 29259 -NCIT:C136876 Clinical Stage IIB Merkel Cell Carcinoma AJCC v8 10 29260 -NCIT:C136877 Clinical Stage III Merkel Cell Carcinoma AJCC v8 9 29261 -NCIT:C136878 Clinical Stage IV Merkel Cell Carcinoma AJCC v8 9 29262 -NCIT:C136880 Merkel Cell Carcinoma by AJCC v8 Pathologic Stage 8 29263 -NCIT:C136881 Pathologic Stage 0 Merkel Cell Carcinoma AJCC v8 9 29264 -NCIT:C136882 Pathologic Stage I Merkel Cell Carcinoma AJCC v8 9 29265 -NCIT:C136883 Pathologic Stage II Merkel Cell Carcinoma AJCC v8 9 29266 -NCIT:C136884 Pathologic Stage IIA Merkel Cell Carcinoma AJCC v8 10 29267 -NCIT:C136885 Pathologic Stage IIB Merkel Cell Carcinoma AJCC v8 10 29268 -NCIT:C136886 Pathologic Stage III Merkel Cell Carcinoma AJCC v8 9 29269 -NCIT:C136887 Pathologic Stage IIIA Merkel Cell Carcinoma AJCC v8 10 29270 -NCIT:C136888 Pathologic Stage IIIB Merkel Cell Carcinoma AJCC v8 10 29271 -NCIT:C136889 Pathologic Stage IV Merkel Cell Carcinoma AJCC v8 9 29272 -NCIT:C162572 Metastatic Merkel Cell Carcinoma 7 29273 -NCIT:C165300 Advanced Merkel Cell Carcinoma 8 29274 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 8 29275 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 8 29276 -NCIT:C162786 Unresectable Merkel Cell Carcinoma 7 29277 -NCIT:C165741 Refractory Merkel Cell Carcinoma 7 29278 -NCIT:C95405 Digestive System Neuroendocrine Carcinoma 6 29279 -NCIT:C126324 Gastroesophageal Junction Neuroendocrine Carcinoma 7 29280 -NCIT:C126323 Gastroesophageal Junction Large Cell Neuroendocrine Carcinoma 8 29281 -NCIT:C126325 Gastroesophageal Junction Small Cell Neuroendocrine Carcinoma 8 29282 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 8 29283 -NCIT:C154617 Digestive System Large Cell Neuroendocrine Carcinoma 7 29284 -NCIT:C126323 Gastroesophageal Junction Large Cell Neuroendocrine Carcinoma 8 29285 -NCIT:C172722 Liver Large Cell Neuroendocrine Carcinoma 8 29286 -NCIT:C95582 Pancreatic Large Cell Neuroendocrine Carcinoma 8 29287 -NCIT:C95620 Esophageal Large Cell Neuroendocrine Carcinoma 8 29288 -NCIT:C95885 Gastric Large Cell Neuroendocrine Carcinoma 8 29289 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 29290 -NCIT:C95985 Ampulla of Vater Large Cell Neuroendocrine Carcinoma 8 29291 -NCIT:C96065 Small Intestinal Large Cell Neuroendocrine Carcinoma 8 29292 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 29293 -NCIT:C96157 Colorectal Large Cell Neuroendocrine Carcinoma 8 29294 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 9 29295 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 9 29296 -NCIT:C96426 Appendix Large Cell Neuroendocrine Carcinoma 8 29297 -NCIT:C96550 Anal Canal Large Cell Neuroendocrine Carcinoma 8 29298 -NCIT:C96921 Gallbladder Large Cell Neuroendocrine Carcinoma 8 29299 -NCIT:C96958 Extrahepatic Bile Duct Large Cell Neuroendocrine Carcinoma 8 29300 -NCIT:C154641 Digestive System Small Cell Neuroendocrine Carcinoma 7 29301 -NCIT:C126325 Gastroesophageal Junction Small Cell Neuroendocrine Carcinoma 8 29302 -NCIT:C172725 Liver Small Cell Neuroendocrine Carcinoma 8 29303 -NCIT:C27449 Small Intestinal Small Cell Neuroendocrine Carcinoma 8 29304 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 29305 -NCIT:C43555 Appendix Small Cell Neuroendocrine Carcinoma 8 29306 -NCIT:C43587 Colorectal Small Cell Neuroendocrine Carcinoma 8 29307 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 9 29308 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 9 29309 -NCIT:C5845 Extrahepatic Bile Duct Small Cell Neuroendocrine Carcinoma 8 29310 -NCIT:C6655 Ampulla of Vater Small Cell Neuroendocrine Carcinoma 8 29311 -NCIT:C6762 Esophageal Small Cell Neuroendocrine Carcinoma 8 29312 -NCIT:C6763 Gallbladder Small Cell Neuroendocrine Carcinoma 8 29313 -NCIT:C6764 Gastric Small Cell Neuroendocrine Carcinoma 8 29314 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 29315 -NCIT:C95583 Pancreatic Small Cell Neuroendocrine Carcinoma 8 29316 -NCIT:C96551 Anal Canal Small Cell Neuroendocrine Carcinoma 8 29317 -NCIT:C155935 Unresectable Digestive System Neuroendocrine Carcinoma 7 29318 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 8 29319 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 8 29320 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 7 29321 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 8 29322 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 29323 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 29324 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 29325 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 8 29326 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 29327 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 29328 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 29329 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 29330 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 29331 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 29332 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 29333 -NCIT:C155937 Refractory Digestive System Neuroendocrine Carcinoma 7 29334 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 8 29335 -NCIT:C155938 Recurrent Digestive System Neuroendocrine Carcinoma 7 29336 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 8 29337 -NCIT:C3770 Pancreatic Neuroendocrine Carcinoma 7 29338 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 8 29339 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 8 29340 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 8 29341 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 29342 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 8 29343 -NCIT:C95582 Pancreatic Large Cell Neuroendocrine Carcinoma 8 29344 -NCIT:C95583 Pancreatic Small Cell Neuroendocrine Carcinoma 8 29345 -NCIT:C95619 Esophageal Neuroendocrine Carcinoma 7 29346 -NCIT:C6762 Esophageal Small Cell Neuroendocrine Carcinoma 8 29347 -NCIT:C95620 Esophageal Large Cell Neuroendocrine Carcinoma 8 29348 -NCIT:C95884 Gastric Neuroendocrine Carcinoma 7 29349 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 8 29350 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 29351 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 29352 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 29353 -NCIT:C6764 Gastric Small Cell Neuroendocrine Carcinoma 8 29354 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 29355 -NCIT:C95885 Gastric Large Cell Neuroendocrine Carcinoma 8 29356 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 29357 -NCIT:C95984 Ampulla of Vater Neuroendocrine Carcinoma 7 29358 -NCIT:C6655 Ampulla of Vater Small Cell Neuroendocrine Carcinoma 8 29359 -NCIT:C95985 Ampulla of Vater Large Cell Neuroendocrine Carcinoma 8 29360 -NCIT:C96063 Intestinal Neuroendocrine Carcinoma 7 29361 -NCIT:C96064 Small Intestinal Neuroendocrine Carcinoma 8 29362 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 9 29363 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 10 29364 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 11 29365 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 11 29366 -NCIT:C27449 Small Intestinal Small Cell Neuroendocrine Carcinoma 9 29367 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 29368 -NCIT:C96065 Small Intestinal Large Cell Neuroendocrine Carcinoma 9 29369 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 29370 -NCIT:C96156 Colorectal Neuroendocrine Carcinoma 8 29371 -NCIT:C43587 Colorectal Small Cell Neuroendocrine Carcinoma 9 29372 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 10 29373 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 10 29374 -NCIT:C96157 Colorectal Large Cell Neuroendocrine Carcinoma 9 29375 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 10 29376 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 10 29377 -NCIT:C96425 Appendix Neuroendocrine Carcinoma 7 29378 -NCIT:C43555 Appendix Small Cell Neuroendocrine Carcinoma 8 29379 -NCIT:C96426 Appendix Large Cell Neuroendocrine Carcinoma 8 29380 -NCIT:C96549 Anal Canal Neuroendocrine Carcinoma 7 29381 -NCIT:C96550 Anal Canal Large Cell Neuroendocrine Carcinoma 8 29382 -NCIT:C96551 Anal Canal Small Cell Neuroendocrine Carcinoma 8 29383 -NCIT:C96787 Liver Neuroendocrine Carcinoma 7 29384 -NCIT:C172722 Liver Large Cell Neuroendocrine Carcinoma 8 29385 -NCIT:C172725 Liver Small Cell Neuroendocrine Carcinoma 8 29386 -NCIT:C96919 Gallbladder Neuroendocrine Carcinoma 7 29387 -NCIT:C6763 Gallbladder Small Cell Neuroendocrine Carcinoma 8 29388 -NCIT:C96921 Gallbladder Large Cell Neuroendocrine Carcinoma 8 29389 -NCIT:C96956 Extrahepatic Bile Duct Neuroendocrine Carcinoma 7 29390 -NCIT:C5845 Extrahepatic Bile Duct Small Cell Neuroendocrine Carcinoma 8 29391 -NCIT:C96958 Extrahepatic Bile Duct Large Cell Neuroendocrine Carcinoma 8 29392 -NCIT:C173586 Extracutaneous Merkel Cell Carcinoma 5 29393 -NCIT:C173587 Head and Neck Merkel Cell Carcinoma 6 29394 -NCIT:C3915 Small Cell Neuroendocrine Carcinoma 5 29395 -NCIT:C156457 Extrapulmonary Small Cell Neuroendocrine Carcinoma 6 29396 -NCIT:C116317 Kidney Small Cell Neuroendocrine Carcinoma 7 29397 -NCIT:C128244 Vulvar Small Cell Neuroendocrine Carcinoma 7 29398 -NCIT:C40298 Bartholin Gland Small Cell Neuroendocrine Carcinoma 8 29399 -NCIT:C154641 Digestive System Small Cell Neuroendocrine Carcinoma 7 29400 -NCIT:C126325 Gastroesophageal Junction Small Cell Neuroendocrine Carcinoma 8 29401 -NCIT:C172725 Liver Small Cell Neuroendocrine Carcinoma 8 29402 -NCIT:C27449 Small Intestinal Small Cell Neuroendocrine Carcinoma 8 29403 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 29404 -NCIT:C43555 Appendix Small Cell Neuroendocrine Carcinoma 8 29405 -NCIT:C43587 Colorectal Small Cell Neuroendocrine Carcinoma 8 29406 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 9 29407 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 9 29408 -NCIT:C5845 Extrahepatic Bile Duct Small Cell Neuroendocrine Carcinoma 8 29409 -NCIT:C6655 Ampulla of Vater Small Cell Neuroendocrine Carcinoma 8 29410 -NCIT:C6762 Esophageal Small Cell Neuroendocrine Carcinoma 8 29411 -NCIT:C6763 Gallbladder Small Cell Neuroendocrine Carcinoma 8 29412 -NCIT:C6764 Gastric Small Cell Neuroendocrine Carcinoma 8 29413 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 29414 -NCIT:C95583 Pancreatic Small Cell Neuroendocrine Carcinoma 8 29415 -NCIT:C96551 Anal Canal Small Cell Neuroendocrine Carcinoma 8 29416 -NCIT:C160981 Head and Neck Small Cell Neuroendocrine Carcinoma 7 29417 -NCIT:C116318 Sinonasal Small Cell Neuroendocrine Carcinoma 8 29418 -NCIT:C35703 Salivary Gland Small Cell Neuroendocrine Carcinoma 8 29419 -NCIT:C5956 Minor Salivary Gland Small Cell Neuroendocrine Carcinoma 9 29420 -NCIT:C6025 Laryngeal Small Cell Neuroendocrine Carcinoma 8 29421 -NCIT:C183128 Recurrent Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 29422 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 8 29423 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 29424 -NCIT:C191852 Metastatic Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 29425 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 29426 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 29427 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 8 29428 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 29429 -NCIT:C191854 Refractory Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 29430 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 8 29431 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 8 29432 -NCIT:C191855 Unresectable Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 29433 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 8 29434 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 8 29435 -NCIT:C40155 Endometrial Small Cell Neuroendocrine Carcinoma 7 29436 -NCIT:C40263 Vaginal Small Cell Neuroendocrine Carcinoma 7 29437 -NCIT:C40440 Ovarian Small Cell Carcinoma, Pulmonary-Type 7 29438 -NCIT:C6176 Ureter Small Cell Neuroendocrine Carcinoma 7 29439 -NCIT:C6460 Thymic Small Cell Neuroendocrine Carcinoma 7 29440 -NCIT:C6760 Breast Small Cell Neuroendocrine Carcinoma 7 29441 -NCIT:C6766 Prostate Small Cell Neuroendocrine Carcinoma 7 29442 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 29443 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 8 29444 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 8 29445 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 8 29446 -NCIT:C7982 Cervical Small Cell Neuroendocrine Carcinoma 7 29447 -NCIT:C9461 Bladder Small Cell Neuroendocrine Carcinoma 7 29448 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 8 29449 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 8 29450 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 29451 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 8 29452 -NCIT:C158911 Metastatic Small Cell Neuroendocrine Carcinoma 6 29453 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 7 29454 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 29455 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 29456 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 7 29457 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 29458 -NCIT:C191852 Metastatic Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 29459 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 29460 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 29461 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 8 29462 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 29463 -NCIT:C183127 Recurrent Small Cell Neuroendocrine Carcinoma 6 29464 -NCIT:C183128 Recurrent Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 29465 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 8 29466 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 29467 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 7 29468 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 8 29469 -NCIT:C191853 Refractory Small Cell Neuroendocrine Carcinoma 6 29470 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 7 29471 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 8 29472 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 8 29473 -NCIT:C191854 Refractory Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 29474 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 8 29475 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 8 29476 -NCIT:C4917 Lung Small Cell Carcinoma 6 29477 -NCIT:C118815 Childhood Lung Small Cell Carcinoma 7 29478 -NCIT:C136496 Lung Small Cell Carcinoma by AJCC v7 Stage 7 29479 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 8 29480 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 9 29481 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 9 29482 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 8 29483 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 9 29484 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 9 29485 -NCIT:C6679 Stage III Lung Small Cell Carcinoma AJCC v7 8 29486 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 9 29487 -NCIT:C6681 Stage IIIB Lung Small Cell Carcinoma AJCC v7 9 29488 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 10 29489 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 10 29490 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 8 29491 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 7 29492 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 8 29493 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 8 29494 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 7 29495 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 29496 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 29497 -NCIT:C158495 Platinum-Sensitive Lung Small Cell Carcinoma 7 29498 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 7 29499 -NCIT:C188753 Lung Small Cell Carcinoma Neuroendocrine Subtype 7 29500 -NCIT:C188754 Lung Small Cell Carcinoma, Neuroendocrine-High Subtype 8 29501 -NCIT:C188755 Lung Small Cell Carcinoma, Neuroendocrine-Low Subtype 8 29502 -NCIT:C188756 Lung Small Cell Carcinoma Molecular Subtypes 7 29503 -NCIT:C188761 Lung Small Cell Carcinoma, A Subtype 8 29504 -NCIT:C188762 Lung Small Cell Carcinoma, N Subtype 8 29505 -NCIT:C188763 Lung Small Cell Carcinoma, P Subtype 8 29506 -NCIT:C188765 Lung Small Cell Carcinoma, I Subtype 8 29507 -NCIT:C188766 Lung Small Cell Carcinoma, Y Subtype 8 29508 -NCIT:C6683 Occult Lung Small Cell Carcinoma 7 29509 -NCIT:C7853 Limited Stage Lung Small Cell Carcinoma 7 29510 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 8 29511 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 8 29512 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 9 29513 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 9 29514 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 8 29515 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 9 29516 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 9 29517 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 8 29518 -NCIT:C9049 Extensive Stage Lung Small Cell Carcinoma 7 29519 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 8 29520 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 8 29521 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 8 29522 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 8 29523 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 7 29524 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 8 29525 -NCIT:C9137 Combined Lung Small Cell Carcinoma 7 29526 -NCIT:C9379 Combined Lung Small Cell Carcinoma and Lung Adenocarcinoma 8 29527 -NCIT:C9423 Combined Lung Small Cell and Squamous Cell Carcinoma 8 29528 -NCIT:C6875 Large Cell Neuroendocrine Carcinoma 5 29529 -NCIT:C126772 Endometrial Large Cell Neuroendocrine Carcinoma 6 29530 -NCIT:C128075 Vaginal Large Cell Neuroendocrine Carcinoma 6 29531 -NCIT:C128245 Vulvar Large Cell Neuroendocrine Carcinoma 6 29532 -NCIT:C154617 Digestive System Large Cell Neuroendocrine Carcinoma 6 29533 -NCIT:C126323 Gastroesophageal Junction Large Cell Neuroendocrine Carcinoma 7 29534 -NCIT:C172722 Liver Large Cell Neuroendocrine Carcinoma 7 29535 -NCIT:C95582 Pancreatic Large Cell Neuroendocrine Carcinoma 7 29536 -NCIT:C95620 Esophageal Large Cell Neuroendocrine Carcinoma 7 29537 -NCIT:C95885 Gastric Large Cell Neuroendocrine Carcinoma 7 29538 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 29539 -NCIT:C95985 Ampulla of Vater Large Cell Neuroendocrine Carcinoma 7 29540 -NCIT:C96065 Small Intestinal Large Cell Neuroendocrine Carcinoma 7 29541 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 29542 -NCIT:C96157 Colorectal Large Cell Neuroendocrine Carcinoma 7 29543 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 8 29544 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 8 29545 -NCIT:C96426 Appendix Large Cell Neuroendocrine Carcinoma 7 29546 -NCIT:C96550 Anal Canal Large Cell Neuroendocrine Carcinoma 7 29547 -NCIT:C96921 Gallbladder Large Cell Neuroendocrine Carcinoma 7 29548 -NCIT:C96958 Extrahepatic Bile Duct Large Cell Neuroendocrine Carcinoma 7 29549 -NCIT:C157760 Bladder Large Cell Neuroendocrine Carcinoma 6 29550 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 7 29551 -NCIT:C158650 Prostate Large Cell Neuroendocrine Carcinoma 6 29552 -NCIT:C158908 Metastatic Large Cell Neuroendocrine Carcinoma 6 29553 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 7 29554 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 7 29555 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 29556 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 7 29557 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 29558 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 29559 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 7 29560 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 29561 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 29562 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 29563 -NCIT:C159225 Kidney Large Cell Neuroendocrine Carcinoma 6 29564 -NCIT:C160982 Head and Neck Large Cell Neuroendocrine Carcinoma 6 29565 -NCIT:C173091 Sinonasal Large Cell Neuroendocrine Carcinoma 7 29566 -NCIT:C173395 Laryngeal Large Cell Neuroendocrine Carcinoma 7 29567 -NCIT:C173650 Salivary Gland Large Cell Neuroendocrine Carcinoma 7 29568 -NCIT:C172810 Unresectable Large Cell Neuroendocrine Carcinoma 6 29569 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 7 29570 -NCIT:C40214 Cervical Large Cell Neuroendocrine Carcinoma 6 29571 -NCIT:C40356 Breast Large Cell Neuroendocrine Carcinoma 6 29572 -NCIT:C5238 Ovarian Large Cell Neuroendocrine Carcinoma 6 29573 -NCIT:C5672 Lung Large Cell Neuroendocrine Carcinoma 6 29574 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 7 29575 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 29576 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 29577 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 7 29578 -NCIT:C7267 Combined Lung Large Cell Neuroendocrine Carcinoma 7 29579 -NCIT:C6461 Thymic Large Cell Neuroendocrine Carcinoma 6 29580 -NCIT:C4536 Metastatic Pituitary Neuroendocrine Tumor 4 29581 -NCIT:C163956 Locally Advanced Pituitary Neuroendocrine Tumor 5 29582 -NCIT:C163959 Metastatic Unresectable Pituitary Neuroendocrine Tumor 5 29583 -NCIT:C5962 Metastatic Lactotroph Pituitary Neuroendocrine Tumor 5 29584 -NCIT:C5963 Metastatic Somatotroph Pituitary Neuroendocrine Tumor 5 29585 -NCIT:C5964 Metastatic Corticotroph Pituitary Neuroendocrine Tumor 5 29586 -NCIT:C5965 Metastatic Thyrotroph Pituitary Neuroendocrine Tumor 5 29587 -NCIT:C46104 Thyroid Gland Mixed Medullary and Follicular Cell-Derived Carcinoma 4 29588 -NCIT:C187992 Thyroid Gland Mixed Medullary and Follicular Carcinoma 5 29589 -NCIT:C187993 Thyroid Gland Mixed Medullary and Papillary Carcinoma 5 29590 -NCIT:C4906 Parathyroid Gland Carcinoma 4 29591 -NCIT:C118819 Childhood Parathyroid Gland Carcinoma 5 29592 -NCIT:C7826 Localized Parathyroid Gland Carcinoma 5 29593 -NCIT:C7828 Recurrent Parathyroid Gland Carcinoma 5 29594 -NCIT:C9044 Metastatic Parathyroid Gland Carcinoma 5 29595 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 6 29596 -NCIT:C8559 Metastatic Paraganglioma 4 29597 -NCIT:C133713 Locally Advanced Paraganglioma 5 29598 -NCIT:C157129 Locally Advanced Adrenal Gland Pheochromocytoma 6 29599 -NCIT:C160852 Advanced Paraganglioma 5 29600 -NCIT:C160853 Advanced Adrenal Gland Pheochromocytoma 6 29601 -NCIT:C4219 Metastatic Extra-Adrenal Paraganglioma 5 29602 -NCIT:C3574 Metastatic Carotid Body Paraganglioma 6 29603 -NCIT:C4623 Metastatic Jugulotympanic Paraganglioma 6 29604 -NCIT:C5392 Metastatic Cardiac Paraganglioma 6 29605 -NCIT:C6413 Metastatic Intrathoracic Paravertebral Paraganglioma 6 29606 -NCIT:C6416 Metastatic Bladder Paraganglioma 6 29607 -NCIT:C4220 Metastatic Adrenal Gland Pheochromocytoma 5 29608 -NCIT:C157129 Locally Advanced Adrenal Gland Pheochromocytoma 6 29609 -NCIT:C160853 Advanced Adrenal Gland Pheochromocytoma 6 29610 -NCIT:C92184 Metastatic Adrenal Gland Composite Pheochromocytoma 6 29611 -NCIT:C9325 Adrenal Cortical Carcinoma 4 29612 -NCIT:C104030 Adrenal Cortical Carcinoma by ENSAT Stage 5 29613 -NCIT:C104031 ENSAT Stage I Adrenal Cortical Carcinoma 6 29614 -NCIT:C104032 ENSAT Stage II Adrenal Cortical Carcinoma 6 29615 -NCIT:C104033 ENSAT Stage III Adrenal Cortical Carcinoma 6 29616 -NCIT:C104034 ENSAT Stage IV Adrenal Cortical Carcinoma 6 29617 -NCIT:C141098 Adrenal Cortical Carcinoma by AJCC v7 Stage 5 29618 -NCIT:C9214 Stage I Adrenal Cortical Carcinoma AJCC v7 6 29619 -NCIT:C9215 Stage II Adrenal Cortical Carcinoma AJCC v7 6 29620 -NCIT:C9216 Stage III Adrenal Cortical Carcinoma AJCC v7 6 29621 -NCIT:C9217 Stage IV Adrenal Cortical Carcinoma AJCC v7 6 29622 -NCIT:C141100 Adrenal Cortical Carcinoma by AJCC v8 Stage 5 29623 -NCIT:C141101 Stage I Adrenal Cortical Carcinoma AJCC v8 6 29624 -NCIT:C141102 Stage II Adrenal Cortical Carcinoma AJCC v8 6 29625 -NCIT:C141103 Stage III Adrenal Cortical Carcinoma AJCC v8 6 29626 -NCIT:C141104 Stage IV Adrenal Cortical Carcinoma AJCC v8 6 29627 -NCIT:C150580 Unresectable Adrenal Cortical Carcinoma 5 29628 -NCIT:C156070 Metastatic Adrenal Cortical Carcinoma 5 29629 -NCIT:C174443 Locally Advanced Adrenal Cortical Carcinoma 6 29630 -NCIT:C191863 Advanced Adrenal Cortical Carcinoma 6 29631 -NCIT:C188036 Refractory Adrenal Cortical Carcinoma 5 29632 -NCIT:C188181 Adrenal Cortical Oncocytic Carcinoma 5 29633 -NCIT:C188182 Adrenal Cortical Myxoid Carcinoma 5 29634 -NCIT:C188183 Adrenal Cortical High Grade Carcinoma 5 29635 -NCIT:C190069 Childhood Adrenal Cortical Carcinoma 5 29636 -NCIT:C6417 Recurrent Adrenal Cortical Carcinoma 5 29637 -NCIT:C68635 Adrenal Cortical Low Grade Carcinoma 5 29638 -NCIT:C68644 Adrenal Cortical Sarcomatoid Carcinoma 5 29639 -NCIT:C3809 Neuroendocrine Neoplasm 3 29640 -NCIT:C126771 Uterine Corpus Neuroendocrine Neoplasm 4 29641 -NCIT:C126773 Uterine Corpus Neuroendocrine Tumor G1 5 29642 -NCIT:C171033 Endometrial Neuroendocrine Carcinoma 5 29643 -NCIT:C126772 Endometrial Large Cell Neuroendocrine Carcinoma 6 29644 -NCIT:C40155 Endometrial Small Cell Neuroendocrine Carcinoma 6 29645 -NCIT:C128041 Cervical Neuroendocrine Neoplasm 4 29646 -NCIT:C128045 Cervical Neuroendocrine Carcinoma 5 29647 -NCIT:C40214 Cervical Large Cell Neuroendocrine Carcinoma 6 29648 -NCIT:C7982 Cervical Small Cell Neuroendocrine Carcinoma 6 29649 -NCIT:C188221 Cervical Neuroendocrine Tumor 5 29650 -NCIT:C128043 Cervical Neuroendocrine Tumor G1 6 29651 -NCIT:C128044 Cervical Neuroendocrine Tumor G2 6 29652 -NCIT:C156485 Metastatic Neuroendocrine Neoplasm 4 29653 -NCIT:C147065 Metastatic Neuroendocrine Tumor 5 29654 -NCIT:C140329 Metastatic Non-Functioning Neuroendocrine Tumor 6 29655 -NCIT:C140328 Advanced Non-Functioning Neuroendocrine Tumor 7 29656 -NCIT:C154621 Advanced Neuroendocrine Tumor 6 29657 -NCIT:C140328 Advanced Non-Functioning Neuroendocrine Tumor 7 29658 -NCIT:C156487 Advanced Carcinoid Tumor 7 29659 -NCIT:C177245 Advanced Lung Carcinoid Tumor 8 29660 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 8 29661 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 29662 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 7 29663 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 29664 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 29665 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 7 29666 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 29667 -NCIT:C156488 Metastatic Pancreatic Neuroendocrine Tumor 6 29668 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 7 29669 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 29670 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 29671 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 7 29672 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 7 29673 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 29674 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 7 29675 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 29676 -NCIT:C167329 Metastatic Midgut Neuroendocrine Tumor 6 29677 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 7 29678 -NCIT:C167333 Locally Advanced Neuroendocrine Tumor 6 29679 -NCIT:C163956 Locally Advanced Pituitary Neuroendocrine Tumor 7 29680 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 7 29681 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 7 29682 -NCIT:C187328 Locally Advanced Carcinoid Tumor 7 29683 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 8 29684 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 7 29685 -NCIT:C179415 Metastatic Digestive System Neuroendocrine Tumor G2 6 29686 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 7 29687 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 7 29688 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 29689 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 7 29690 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 29691 -NCIT:C4536 Metastatic Pituitary Neuroendocrine Tumor 6 29692 -NCIT:C163956 Locally Advanced Pituitary Neuroendocrine Tumor 7 29693 -NCIT:C163959 Metastatic Unresectable Pituitary Neuroendocrine Tumor 7 29694 -NCIT:C5962 Metastatic Lactotroph Pituitary Neuroendocrine Tumor 7 29695 -NCIT:C5963 Metastatic Somatotroph Pituitary Neuroendocrine Tumor 7 29696 -NCIT:C5964 Metastatic Corticotroph Pituitary Neuroendocrine Tumor 7 29697 -NCIT:C5965 Metastatic Thyrotroph Pituitary Neuroendocrine Tumor 7 29698 -NCIT:C6431 Metastatic Carcinoid Tumor 6 29699 -NCIT:C115245 Metastatic Digestive System Neuroendocrine Tumor G1 7 29700 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 8 29701 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 29702 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 8 29703 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 8 29704 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 29705 -NCIT:C156487 Advanced Carcinoid Tumor 7 29706 -NCIT:C177245 Advanced Lung Carcinoid Tumor 8 29707 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 8 29708 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 29709 -NCIT:C177243 Metastatic Lung Carcinoid Tumor 7 29710 -NCIT:C177245 Advanced Lung Carcinoid Tumor 8 29711 -NCIT:C187328 Locally Advanced Carcinoid Tumor 7 29712 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 8 29713 -NCIT:C5171 Metastatic Breast Neuroendocrine Tumor G1 7 29714 -NCIT:C155869 Metastatic Neuroendocrine Carcinoma 5 29715 -NCIT:C155870 Advanced Neuroendocrine Carcinoma 6 29716 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 7 29717 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 29718 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 29719 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 7 29720 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 29721 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 29722 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 29723 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 7 29724 -NCIT:C165300 Advanced Merkel Cell Carcinoma 7 29725 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 7 29726 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 29727 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 29728 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 29729 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 6 29730 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 7 29731 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 29732 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 29733 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 29734 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 7 29735 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 29736 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 29737 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 29738 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 7 29739 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 29740 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 29741 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 29742 -NCIT:C158908 Metastatic Large Cell Neuroendocrine Carcinoma 6 29743 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 7 29744 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 7 29745 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 29746 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 7 29747 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 29748 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 29749 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 7 29750 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 29751 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 29752 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 29753 -NCIT:C158909 Locally Advanced Neuroendocrine Carcinoma 6 29754 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 29755 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 29756 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 7 29757 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 29758 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 7 29759 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 7 29760 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 29761 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 7 29762 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 7 29763 -NCIT:C158911 Metastatic Small Cell Neuroendocrine Carcinoma 6 29764 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 7 29765 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 29766 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 29767 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 7 29768 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 29769 -NCIT:C191852 Metastatic Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 29770 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 29771 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 29772 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 8 29773 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 29774 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 6 29775 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 7 29776 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 7 29777 -NCIT:C162572 Metastatic Merkel Cell Carcinoma 6 29778 -NCIT:C165300 Advanced Merkel Cell Carcinoma 7 29779 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 7 29780 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 7 29781 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 6 29782 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 7 29783 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 7 29784 -NCIT:C163975 Neuroendocrine Carcinoma of Unknown Primary 6 29785 -NCIT:C156486 Advanced Neuroendocrine Neoplasm 5 29786 -NCIT:C154621 Advanced Neuroendocrine Tumor 6 29787 -NCIT:C140328 Advanced Non-Functioning Neuroendocrine Tumor 7 29788 -NCIT:C156487 Advanced Carcinoid Tumor 7 29789 -NCIT:C177245 Advanced Lung Carcinoid Tumor 8 29790 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 8 29791 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 29792 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 7 29793 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 29794 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 29795 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 7 29796 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 29797 -NCIT:C155870 Advanced Neuroendocrine Carcinoma 6 29798 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 7 29799 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 29800 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 29801 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 7 29802 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 29803 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 29804 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 29805 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 7 29806 -NCIT:C165300 Advanced Merkel Cell Carcinoma 7 29807 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 7 29808 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 29809 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 29810 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 29811 -NCIT:C158089 Advanced Digestive System Neuroendocrine Neoplasm 6 29812 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 7 29813 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 29814 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 29815 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 7 29816 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 29817 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 29818 -NCIT:C165448 Advanced Pancreatic Neuroendocrine Neoplasm 7 29819 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 8 29820 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 29821 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 29822 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 7 29823 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 29824 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 7 29825 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 29826 -NCIT:C160852 Advanced Paraganglioma 6 29827 -NCIT:C160853 Advanced Adrenal Gland Pheochromocytoma 7 29828 -NCIT:C165446 Advanced Lung Neuroendocrine Neoplasm 6 29829 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 29830 -NCIT:C177245 Advanced Lung Carcinoid Tumor 7 29831 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 7 29832 -NCIT:C180871 Advanced Thymic Neuroendocrine Neoplasm 6 29833 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 6 29834 -NCIT:C156492 Metastatic Digestive System Neuroendocrine Neoplasm 5 29835 -NCIT:C115245 Metastatic Digestive System Neuroendocrine Tumor G1 6 29836 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 7 29837 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 29838 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 7 29839 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 7 29840 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 29841 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 6 29842 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 7 29843 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 29844 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 29845 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 29846 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 7 29847 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 29848 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 29849 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 29850 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 7 29851 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 29852 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 29853 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 29854 -NCIT:C158089 Advanced Digestive System Neuroendocrine Neoplasm 6 29855 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 7 29856 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 29857 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 29858 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 7 29859 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 29860 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 29861 -NCIT:C165448 Advanced Pancreatic Neuroendocrine Neoplasm 7 29862 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 8 29863 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 29864 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 29865 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 7 29866 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 29867 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 7 29868 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 29869 -NCIT:C165447 Metastatic Pancreatic Neuroendocrine Neoplasm 6 29870 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 7 29871 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 29872 -NCIT:C156488 Metastatic Pancreatic Neuroendocrine Tumor 7 29873 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 8 29874 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 29875 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 29876 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 8 29877 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 8 29878 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 29879 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 8 29880 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 29881 -NCIT:C165448 Advanced Pancreatic Neuroendocrine Neoplasm 7 29882 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 8 29883 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 29884 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 29885 -NCIT:C167329 Metastatic Midgut Neuroendocrine Tumor 6 29886 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 7 29887 -NCIT:C178271 Locally Advanced Digestive System Neuroendocrine Neoplasm 6 29888 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 29889 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 29890 -NCIT:C158090 Locally Advanced Unresectable Digestive System Neuroendocrine Neoplasm 7 29891 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 7 29892 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 7 29893 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 7 29894 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 7 29895 -NCIT:C179415 Metastatic Digestive System Neuroendocrine Tumor G2 6 29896 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 7 29897 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 7 29898 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 29899 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 7 29900 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 29901 -NCIT:C156493 Metastatic Breast Neuroendocrine Neoplasm 5 29902 -NCIT:C5171 Metastatic Breast Neuroendocrine Tumor G1 6 29903 -NCIT:C157602 Metastatic Lung Neuroendocrine Neoplasm 5 29904 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 6 29905 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 29906 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 7 29907 -NCIT:C165446 Advanced Lung Neuroendocrine Neoplasm 6 29908 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 29909 -NCIT:C177245 Advanced Lung Carcinoid Tumor 7 29910 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 7 29911 -NCIT:C176715 Locally Advanced Lung Neuroendocrine Neoplasm 6 29912 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 7 29913 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 7 29914 -NCIT:C177243 Metastatic Lung Carcinoid Tumor 6 29915 -NCIT:C177245 Advanced Lung Carcinoid Tumor 7 29916 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 6 29917 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 7 29918 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 7 29919 -NCIT:C162461 Metastatic Thymic Neuroendocrine Neoplasm 5 29920 -NCIT:C180871 Advanced Thymic Neuroendocrine Neoplasm 6 29921 -NCIT:C167332 Locally Advanced Neuroendocrine Neoplasm 5 29922 -NCIT:C133713 Locally Advanced Paraganglioma 6 29923 -NCIT:C157129 Locally Advanced Adrenal Gland Pheochromocytoma 7 29924 -NCIT:C158909 Locally Advanced Neuroendocrine Carcinoma 6 29925 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 29926 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 29927 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 7 29928 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 29929 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 7 29930 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 7 29931 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 29932 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 7 29933 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 7 29934 -NCIT:C167333 Locally Advanced Neuroendocrine Tumor 6 29935 -NCIT:C163956 Locally Advanced Pituitary Neuroendocrine Tumor 7 29936 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 7 29937 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 7 29938 -NCIT:C187328 Locally Advanced Carcinoid Tumor 7 29939 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 8 29940 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 7 29941 -NCIT:C176715 Locally Advanced Lung Neuroendocrine Neoplasm 6 29942 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 7 29943 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 7 29944 -NCIT:C178271 Locally Advanced Digestive System Neuroendocrine Neoplasm 6 29945 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 29946 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 29947 -NCIT:C158090 Locally Advanced Unresectable Digestive System Neuroendocrine Neoplasm 7 29948 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 7 29949 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 7 29950 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 7 29951 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 7 29952 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 5 29953 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 6 29954 -NCIT:C8559 Metastatic Paraganglioma 5 29955 -NCIT:C133713 Locally Advanced Paraganglioma 6 29956 -NCIT:C157129 Locally Advanced Adrenal Gland Pheochromocytoma 7 29957 -NCIT:C160852 Advanced Paraganglioma 6 29958 -NCIT:C160853 Advanced Adrenal Gland Pheochromocytoma 7 29959 -NCIT:C4219 Metastatic Extra-Adrenal Paraganglioma 6 29960 -NCIT:C3574 Metastatic Carotid Body Paraganglioma 7 29961 -NCIT:C4623 Metastatic Jugulotympanic Paraganglioma 7 29962 -NCIT:C5392 Metastatic Cardiac Paraganglioma 7 29963 -NCIT:C6413 Metastatic Intrathoracic Paravertebral Paraganglioma 7 29964 -NCIT:C6416 Metastatic Bladder Paraganglioma 7 29965 -NCIT:C4220 Metastatic Adrenal Gland Pheochromocytoma 6 29966 -NCIT:C157129 Locally Advanced Adrenal Gland Pheochromocytoma 7 29967 -NCIT:C160853 Advanced Adrenal Gland Pheochromocytoma 7 29968 -NCIT:C92184 Metastatic Adrenal Gland Composite Pheochromocytoma 7 29969 -NCIT:C157130 Recurrent Neuroendocrine Neoplasm 4 29970 -NCIT:C138183 Recurrent Abdominal Neuroendocrine Neoplasm 5 29971 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 6 29972 -NCIT:C157125 Recurrent Paraganglioma 5 29973 -NCIT:C8047 Recurrent Adrenal Gland Pheochromocytoma 6 29974 -NCIT:C165253 Recurrent Neuroendocrine Carcinoma 5 29975 -NCIT:C115440 Recurrent Merkel Cell Carcinoma 6 29976 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 7 29977 -NCIT:C165740 Locally Recurrent Merkel Cell Carcinoma 7 29978 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 6 29979 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 7 29980 -NCIT:C155938 Recurrent Digestive System Neuroendocrine Carcinoma 6 29981 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 7 29982 -NCIT:C183127 Recurrent Small Cell Neuroendocrine Carcinoma 6 29983 -NCIT:C183128 Recurrent Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 29984 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 8 29985 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 29986 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 7 29987 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 8 29988 -NCIT:C176711 Recurrent Lung Neuroendocrine Neoplasm 5 29989 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 6 29990 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 7 29991 -NCIT:C188228 Recurrent Digestive System Neuroendocrine Neoplasm 5 29992 -NCIT:C155938 Recurrent Digestive System Neuroendocrine Carcinoma 6 29993 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 7 29994 -NCIT:C157131 Refractory Neuroendocrine Neoplasm 4 29995 -NCIT:C138184 Refractory Abdominal Neuroendocrine Neoplasm 5 29996 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 6 29997 -NCIT:C158088 Refractory Digestive System Neuroendocrine Neoplasm 5 29998 -NCIT:C155937 Refractory Digestive System Neuroendocrine Carcinoma 6 29999 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 7 30000 -NCIT:C158401 Refractory Paraganglioma 5 30001 -NCIT:C158402 Refractory Adrenal Gland Pheochromocytoma 6 30002 -NCIT:C165742 Refractory Neuroendocrine Carcinoma 5 30003 -NCIT:C155937 Refractory Digestive System Neuroendocrine Carcinoma 6 30004 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 7 30005 -NCIT:C165741 Refractory Merkel Cell Carcinoma 6 30006 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 6 30007 -NCIT:C191853 Refractory Small Cell Neuroendocrine Carcinoma 6 30008 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 7 30009 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 8 30010 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 8 30011 -NCIT:C191854 Refractory Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 30012 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 8 30013 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 8 30014 -NCIT:C157743 Kidney Neuroendocrine Neoplasm 4 30015 -NCIT:C159223 Kidney Neuroendocrine Tumor 5 30016 -NCIT:C159224 Kidney Neuroendocrine Carcinoma 5 30017 -NCIT:C116317 Kidney Small Cell Neuroendocrine Carcinoma 6 30018 -NCIT:C159225 Kidney Large Cell Neuroendocrine Carcinoma 6 30019 -NCIT:C159226 Kidney Paraganglioma 5 30020 -NCIT:C157758 Bladder Neuroendocrine Neoplasm 4 30021 -NCIT:C157759 Bladder Neuroendocrine Carcinoma 5 30022 -NCIT:C157760 Bladder Large Cell Neuroendocrine Carcinoma 6 30023 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 7 30024 -NCIT:C9461 Bladder Small Cell Neuroendocrine Carcinoma 6 30025 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 7 30026 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 7 30027 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 7 30028 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 7 30029 -NCIT:C159582 Bladder Neuroendocrine Tumor 5 30030 -NCIT:C6414 Bladder Paraganglioma 5 30031 -NCIT:C6416 Metastatic Bladder Paraganglioma 6 30032 -NCIT:C162460 Thymic Neuroendocrine Neoplasm 4 30033 -NCIT:C162461 Metastatic Thymic Neuroendocrine Neoplasm 5 30034 -NCIT:C180871 Advanced Thymic Neuroendocrine Neoplasm 6 30035 -NCIT:C171031 Thymic Neuroendocrine Carcinoma 5 30036 -NCIT:C6460 Thymic Small Cell Neuroendocrine Carcinoma 6 30037 -NCIT:C6461 Thymic Large Cell Neuroendocrine Carcinoma 6 30038 -NCIT:C180872 Unresectable Thymic Neuroendocrine Neoplasm 5 30039 -NCIT:C6430 Thymic Carcinoid Tumor 5 30040 -NCIT:C45719 Thymic Atypical Carcinoid Tumor 6 30041 -NCIT:C45720 Thymic Typical Carcinoid Tumor 6 30042 -NCIT:C168973 Unresectable Neuroendocrine Neoplasm 4 30043 -NCIT:C165453 Unresectable Neuroendocrine Tumor 5 30044 -NCIT:C153080 Unresectable Neuroendocrine Tumor G1 6 30045 -NCIT:C177246 Unresectable Lung Carcinoid Tumor 7 30046 -NCIT:C179419 Unresectable Digestive System Neuroendocrine Tumor G1 7 30047 -NCIT:C163959 Metastatic Unresectable Pituitary Neuroendocrine Tumor 6 30048 -NCIT:C167331 Unresectable Midgut Neuroendocrine Tumor 6 30049 -NCIT:C187345 Unresectable Digestive System Neuroendocrine Tumor G2 6 30050 -NCIT:C190782 Unresectable Pancreatic Neuroendocrine Tumor 6 30051 -NCIT:C165454 Unresectable Lung Neuroendocrine Neoplasm 5 30052 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 6 30053 -NCIT:C177246 Unresectable Lung Carcinoid Tumor 6 30054 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 6 30055 -NCIT:C165455 Unresectable Digestive System Neuroendocrine Neoplasm 5 30056 -NCIT:C155935 Unresectable Digestive System Neuroendocrine Carcinoma 6 30057 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 7 30058 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 7 30059 -NCIT:C158090 Locally Advanced Unresectable Digestive System Neuroendocrine Neoplasm 6 30060 -NCIT:C165456 Unresectable Pancreatic Neuroendocrine Neoplasm 6 30061 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 7 30062 -NCIT:C190782 Unresectable Pancreatic Neuroendocrine Tumor 7 30063 -NCIT:C167331 Unresectable Midgut Neuroendocrine Tumor 6 30064 -NCIT:C179419 Unresectable Digestive System Neuroendocrine Tumor G1 6 30065 -NCIT:C187345 Unresectable Digestive System Neuroendocrine Tumor G2 6 30066 -NCIT:C172806 Unresectable Neuroendocrine Carcinoma 5 30067 -NCIT:C155935 Unresectable Digestive System Neuroendocrine Carcinoma 6 30068 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 7 30069 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 7 30070 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 6 30071 -NCIT:C162786 Unresectable Merkel Cell Carcinoma 6 30072 -NCIT:C163974 Unresectable Thyroid Gland Medullary Carcinoma 6 30073 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 7 30074 -NCIT:C172810 Unresectable Large Cell Neuroendocrine Carcinoma 6 30075 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 7 30076 -NCIT:C191855 Unresectable Extrapulmonary Small Cell Neuroendocrine Carcinoma 6 30077 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 7 30078 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 7 30079 -NCIT:C175939 Unresectable Abdominal Neuroendocrine Neoplasm 5 30080 -NCIT:C180872 Unresectable Thymic Neuroendocrine Neoplasm 5 30081 -NCIT:C188218 Neuroendocrine Tumor 4 30082 -NCIT:C147065 Metastatic Neuroendocrine Tumor 5 30083 -NCIT:C140329 Metastatic Non-Functioning Neuroendocrine Tumor 6 30084 -NCIT:C140328 Advanced Non-Functioning Neuroendocrine Tumor 7 30085 -NCIT:C154621 Advanced Neuroendocrine Tumor 6 30086 -NCIT:C140328 Advanced Non-Functioning Neuroendocrine Tumor 7 30087 -NCIT:C156487 Advanced Carcinoid Tumor 7 30088 -NCIT:C177245 Advanced Lung Carcinoid Tumor 8 30089 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 8 30090 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 30091 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 7 30092 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 30093 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 30094 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 7 30095 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 30096 -NCIT:C156488 Metastatic Pancreatic Neuroendocrine Tumor 6 30097 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 7 30098 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 30099 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 30100 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 7 30101 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 7 30102 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 30103 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 7 30104 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 30105 -NCIT:C167329 Metastatic Midgut Neuroendocrine Tumor 6 30106 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 7 30107 -NCIT:C167333 Locally Advanced Neuroendocrine Tumor 6 30108 -NCIT:C163956 Locally Advanced Pituitary Neuroendocrine Tumor 7 30109 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 7 30110 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 7 30111 -NCIT:C187328 Locally Advanced Carcinoid Tumor 7 30112 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 8 30113 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 7 30114 -NCIT:C179415 Metastatic Digestive System Neuroendocrine Tumor G2 6 30115 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 7 30116 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 7 30117 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 30118 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 7 30119 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 30120 -NCIT:C4536 Metastatic Pituitary Neuroendocrine Tumor 6 30121 -NCIT:C163956 Locally Advanced Pituitary Neuroendocrine Tumor 7 30122 -NCIT:C163959 Metastatic Unresectable Pituitary Neuroendocrine Tumor 7 30123 -NCIT:C5962 Metastatic Lactotroph Pituitary Neuroendocrine Tumor 7 30124 -NCIT:C5963 Metastatic Somatotroph Pituitary Neuroendocrine Tumor 7 30125 -NCIT:C5964 Metastatic Corticotroph Pituitary Neuroendocrine Tumor 7 30126 -NCIT:C5965 Metastatic Thyrotroph Pituitary Neuroendocrine Tumor 7 30127 -NCIT:C6431 Metastatic Carcinoid Tumor 6 30128 -NCIT:C115245 Metastatic Digestive System Neuroendocrine Tumor G1 7 30129 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 8 30130 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 30131 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 8 30132 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 8 30133 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 30134 -NCIT:C156487 Advanced Carcinoid Tumor 7 30135 -NCIT:C177245 Advanced Lung Carcinoid Tumor 8 30136 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 8 30137 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 30138 -NCIT:C177243 Metastatic Lung Carcinoid Tumor 7 30139 -NCIT:C177245 Advanced Lung Carcinoid Tumor 8 30140 -NCIT:C187328 Locally Advanced Carcinoid Tumor 7 30141 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 8 30142 -NCIT:C5171 Metastatic Breast Neuroendocrine Tumor G1 7 30143 -NCIT:C159223 Kidney Neuroendocrine Tumor 5 30144 -NCIT:C159582 Bladder Neuroendocrine Tumor 5 30145 -NCIT:C165453 Unresectable Neuroendocrine Tumor 5 30146 -NCIT:C153080 Unresectable Neuroendocrine Tumor G1 6 30147 -NCIT:C177246 Unresectable Lung Carcinoid Tumor 7 30148 -NCIT:C179419 Unresectable Digestive System Neuroendocrine Tumor G1 7 30149 -NCIT:C163959 Metastatic Unresectable Pituitary Neuroendocrine Tumor 6 30150 -NCIT:C167331 Unresectable Midgut Neuroendocrine Tumor 6 30151 -NCIT:C187345 Unresectable Digestive System Neuroendocrine Tumor G2 6 30152 -NCIT:C190782 Unresectable Pancreatic Neuroendocrine Tumor 6 30153 -NCIT:C173387 Head and Neck Neuroendocrine Tumor 5 30154 -NCIT:C173388 Head and Neck Neuroendocrine Tumor G2 6 30155 -NCIT:C173392 Laryngeal Neuroendocrine Tumor G2 7 30156 -NCIT:C173391 Laryngeal Neuroendocrine Tumor 6 30157 -NCIT:C173392 Laryngeal Neuroendocrine Tumor G2 7 30158 -NCIT:C188223 Laryngeal Neuroendocrine Tumor G1 7 30159 -NCIT:C188224 Head and Neck Neuroendocrine Tumor G1 6 30160 -NCIT:C188223 Laryngeal Neuroendocrine Tumor G1 7 30161 -NCIT:C175610 Breast Neuroendocrine Tumor 5 30162 -NCIT:C175611 Breast Neuroendocrine Tumor G2 6 30163 -NCIT:C5170 Breast Neuroendocrine Tumor G1 6 30164 -NCIT:C5171 Metastatic Breast Neuroendocrine Tumor G1 7 30165 -NCIT:C188221 Cervical Neuroendocrine Tumor 5 30166 -NCIT:C128043 Cervical Neuroendocrine Tumor G1 6 30167 -NCIT:C128044 Cervical Neuroendocrine Tumor G2 6 30168 -NCIT:C188229 Composite Gangliocytoma/Neuroma and Neuroendocrine Tumor 5 30169 -NCIT:C5325 Intestinal Composite Gangliocytoma/Neuroma and Neuroendocrine Tumor 6 30170 -NCIT:C96073 Small Intestinal Composite Gangliocytoma/Neuroma and Neuroendocrine Tumor 7 30171 -NCIT:C190077 Childhood Neuroendocrine Tumor 5 30172 -NCIT:C118810 Childhood Neuroendocrine Tumor G1 6 30173 -NCIT:C190076 Childhood Digestive System Neuroendocrine Tumor 6 30174 -NCIT:C190029 Childhood Appendix Neuroendocrine Tumor 7 30175 -NCIT:C190078 Childhood Neuroendocrine Tumor G2 6 30176 -NCIT:C2915 Carcinoid Tumor 5 30177 -NCIT:C118810 Childhood Neuroendocrine Tumor G1 6 30178 -NCIT:C126773 Uterine Corpus Neuroendocrine Tumor G1 6 30179 -NCIT:C128043 Cervical Neuroendocrine Tumor G1 6 30180 -NCIT:C153080 Unresectable Neuroendocrine Tumor G1 6 30181 -NCIT:C177246 Unresectable Lung Carcinoid Tumor 7 30182 -NCIT:C179419 Unresectable Digestive System Neuroendocrine Tumor G1 7 30183 -NCIT:C5170 Breast Neuroendocrine Tumor G1 6 30184 -NCIT:C5171 Metastatic Breast Neuroendocrine Tumor G1 7 30185 -NCIT:C6360 Testicular Neuroendocrine Tumor G1 6 30186 -NCIT:C6421 Foregut Neuroendocrine Tumor G1 6 30187 -NCIT:C4038 Lung Carcinoid Tumor 7 30188 -NCIT:C176705 Functioning Lung Carcinoid Tumor 8 30189 -NCIT:C176706 Non-Functioning Lung Carcinoid Tumor 8 30190 -NCIT:C177243 Metastatic Lung Carcinoid Tumor 8 30191 -NCIT:C177245 Advanced Lung Carcinoid Tumor 9 30192 -NCIT:C177246 Unresectable Lung Carcinoid Tumor 8 30193 -NCIT:C45550 Lung Typical Carcinoid Tumor 8 30194 -NCIT:C45551 Lung Atypical Carcinoid Tumor 8 30195 -NCIT:C4635 Gastric Neuroendocrine Tumor G1 7 30196 -NCIT:C5820 Esophageal Neuroendocrine Tumor G1 7 30197 -NCIT:C5861 Extrahepatic Bile Duct Neuroendocrine Tumor G1 7 30198 -NCIT:C6425 Duodenal Neuroendocrine Tumor G1 7 30199 -NCIT:C6430 Thymic Carcinoid Tumor 7 30200 -NCIT:C45719 Thymic Atypical Carcinoid Tumor 8 30201 -NCIT:C45720 Thymic Typical Carcinoid Tumor 8 30202 -NCIT:C6422 Midgut Neuroendocrine Tumor G1 6 30203 -NCIT:C4138 Appendix Neuroendocrine Tumor G1 7 30204 -NCIT:C4935 Ileal Neuroendocrine Tumor G1 7 30205 -NCIT:C5229 Ovarian Carcinoid Tumor 7 30206 -NCIT:C188015 Ovarian Teratoma with Carcinoid Tumor 8 30207 -NCIT:C4292 Strumal Carcinoid 9 30208 -NCIT:C40013 Ovarian Insular Carcinoid Tumor 8 30209 -NCIT:C40014 Ovarian Trabecular Carcinoid Tumor 8 30210 -NCIT:C40015 Ovarian Mucinous Carcinoid Tumor 8 30211 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 7 30212 -NCIT:C6424 Meckel Diverticulum Neuroendocrine Tumor G1 7 30213 -NCIT:C6427 Ascending Colon Neuroendocrine Tumor G1 7 30214 -NCIT:C6429 Jejunal Neuroendocrine Tumor G1 7 30215 -NCIT:C6423 Hindgut Neuroendocrine Tumor G1 6 30216 -NCIT:C188043 Sigmoid Colon Neuroendocrine Tumor G1 7 30217 -NCIT:C5547 Rectal Neuroendocrine Tumor G1 7 30218 -NCIT:C6426 Transverse Colon Neuroendocrine Tumor G1 7 30219 -NCIT:C6428 Descending Colon Neuroendocrine Tumor G1 7 30220 -NCIT:C6431 Metastatic Carcinoid Tumor 6 30221 -NCIT:C115245 Metastatic Digestive System Neuroendocrine Tumor G1 7 30222 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 8 30223 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 30224 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 8 30225 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 8 30226 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 30227 -NCIT:C156487 Advanced Carcinoid Tumor 7 30228 -NCIT:C177245 Advanced Lung Carcinoid Tumor 8 30229 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 8 30230 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 30231 -NCIT:C177243 Metastatic Lung Carcinoid Tumor 7 30232 -NCIT:C177245 Advanced Lung Carcinoid Tumor 8 30233 -NCIT:C187328 Locally Advanced Carcinoid Tumor 7 30234 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 8 30235 -NCIT:C5171 Metastatic Breast Neuroendocrine Tumor G1 7 30236 -NCIT:C72074 Atypical Carcinoid Tumor 6 30237 -NCIT:C45551 Lung Atypical Carcinoid Tumor 7 30238 -NCIT:C45719 Thymic Atypical Carcinoid Tumor 7 30239 -NCIT:C7709 Digestive System Neuroendocrine Tumor G1 6 30240 -NCIT:C115245 Metastatic Digestive System Neuroendocrine Tumor G1 7 30241 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 8 30242 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 30243 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 8 30244 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 8 30245 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 30246 -NCIT:C172719 Liver Neuroendocrine Tumor G1 7 30247 -NCIT:C179419 Unresectable Digestive System Neuroendocrine Tumor G1 7 30248 -NCIT:C27252 Enterochromaffin-Like Cell Neuroendocrine Tumor G1 7 30249 -NCIT:C4635 Gastric Neuroendocrine Tumor G1 8 30250 -NCIT:C4138 Appendix Neuroendocrine Tumor G1 7 30251 -NCIT:C4637 Intestinal Neuroendocrine Tumor G1 7 30252 -NCIT:C4638 Small Intestinal Neuroendocrine Tumor G1 8 30253 -NCIT:C4935 Ileal Neuroendocrine Tumor G1 9 30254 -NCIT:C6425 Duodenal Neuroendocrine Tumor G1 9 30255 -NCIT:C6429 Jejunal Neuroendocrine Tumor G1 9 30256 -NCIT:C6424 Meckel Diverticulum Neuroendocrine Tumor G1 8 30257 -NCIT:C96160 Colorectal Neuroendocrine Tumor G1 8 30258 -NCIT:C5497 Colon Neuroendocrine Tumor G1 9 30259 -NCIT:C188043 Sigmoid Colon Neuroendocrine Tumor G1 10 30260 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 10 30261 -NCIT:C6426 Transverse Colon Neuroendocrine Tumor G1 10 30262 -NCIT:C6427 Ascending Colon Neuroendocrine Tumor G1 10 30263 -NCIT:C6428 Descending Colon Neuroendocrine Tumor G1 10 30264 -NCIT:C5547 Rectal Neuroendocrine Tumor G1 9 30265 -NCIT:C5820 Esophageal Neuroendocrine Tumor G1 7 30266 -NCIT:C5861 Extrahepatic Bile Duct Neuroendocrine Tumor G1 7 30267 -NCIT:C7861 Localized Digestive System Neuroendocrine Tumor G1 7 30268 -NCIT:C7862 Regional Digestive System Neuroendocrine Tumor G1 7 30269 -NCIT:C7864 Recurrent Digestive System Neuroendocrine Tumor G1 7 30270 -NCIT:C95584 Pancreatic Neuroendocrine Tumor G1 7 30271 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 8 30272 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 30273 -NCIT:C95585 Non-Functioning Pancreatic Neuroendocrine Tumor G1 8 30274 -NCIT:C95982 Ampulla of Vater Neuroendocrine Tumor G1 7 30275 -NCIT:C96543 Anal Canal Neuroendocrine Tumor G1 7 30276 -NCIT:C96924 Gallbladder Neuroendocrine Tumor G1 7 30277 -NCIT:C3329 Pituitary Neuroendocrine Tumor 5 30278 -NCIT:C132296 Atypical Pituitary Neuroendocrine Tumor 6 30279 -NCIT:C154520 Multiple Synchronous Pituitary Neuroendocrine Tumors of Distinct Lineages 6 30280 -NCIT:C154519 Double Pituitary Neuroendocrine Tumors of Distinct Lineages 7 30281 -NCIT:C155767 Mixed Gangliocytoma-Pituitary Neuroendocrine Tumor 6 30282 -NCIT:C173345 Ectopic Pituitary Neuroendocrine Tumor 6 30283 -NCIT:C173352 Nasopharyngeal Pituitary Neuroendocrine Tumor 7 30284 -NCIT:C187086 Pituitary Neuroendocrine Tumor of PIT1-Lineage 6 30285 -NCIT:C127194 Somatotroph-Lactotroph Pituitary Neuroendocrine Tumor 7 30286 -NCIT:C45927 Mixed Somatotroph and Lactotroph Pituitary Neuroendocrine Tumor 8 30287 -NCIT:C45928 Mammosomatotroph Pituitary Neuroendocrine Tumor 8 30288 -NCIT:C187098 Mature Plurihormonal PIT1 Lineage Pituitary Neuroendocrine Tumor 7 30289 -NCIT:C187099 Immature PIT1 Lineage Pituitary Neuroendocrine Tumor 7 30290 -NCIT:C3342 Lactotroph Pituitary Neuroendocrine Tumor 7 30291 -NCIT:C45931 Densely Granulated Lactotroph Pituitary Neuroendocrine Tumor 8 30292 -NCIT:C45932 Sparsely Granulated Lactotroph Pituitary Neuroendocrine Tumor 8 30293 -NCIT:C5962 Metastatic Lactotroph Pituitary Neuroendocrine Tumor 8 30294 -NCIT:C45929 Acidophil Stem Cell Pituitary Neuroendocrine Tumor 7 30295 -NCIT:C7461 Somatotroph Pituitary Neuroendocrine Tumor 7 30296 -NCIT:C45925 Densely Granulated Somatotroph Pituitary Neuroendocrine Tumor 8 30297 -NCIT:C45926 Sparsely Granulated Somatotroph Pituitary Neuroendocrine Tumor 8 30298 -NCIT:C5963 Metastatic Somatotroph Pituitary Neuroendocrine Tumor 8 30299 -NCIT:C7915 Thyrotroph Pituitary Neuroendocrine Tumor 7 30300 -NCIT:C5965 Metastatic Thyrotroph Pituitary Neuroendocrine Tumor 8 30301 -NCIT:C187087 Pituitary Neuroendocrine Tumor of TPIT-Lineage 6 30302 -NCIT:C7462 Corticotroph Pituitary Neuroendocrine Tumor 7 30303 -NCIT:C154339 Densely Granulated Corticotroph Pituitary Neuroendocrine Tumor 8 30304 -NCIT:C154431 Non-Functioning Densely Granulated Corticotroph Pituitary Neuroendocrine Tumor 9 30305 -NCIT:C154340 Sparsely Granulated Corticotroph Pituitary Neuroendocrine Tumor 8 30306 -NCIT:C154432 Non-Functioning Sparsely Granulated Corticotroph Pituitary Neuroendocrine Tumor 9 30307 -NCIT:C154342 Crooke Cell Tumor 8 30308 -NCIT:C154429 Non-Functioning Corticotroph Pituitary Neuroendocrine Tumor 8 30309 -NCIT:C154431 Non-Functioning Densely Granulated Corticotroph Pituitary Neuroendocrine Tumor 9 30310 -NCIT:C154432 Non-Functioning Sparsely Granulated Corticotroph Pituitary Neuroendocrine Tumor 9 30311 -NCIT:C5964 Metastatic Corticotroph Pituitary Neuroendocrine Tumor 8 30312 -NCIT:C187088 Pituitary Neuroendocrine Tumor of SF1-Lineage 6 30313 -NCIT:C45915 Gonadotroph Pituitary Neuroendocrine Tumor 7 30314 -NCIT:C121152 FSH-Producing Pituitary Neuroendocrine Tumor 8 30315 -NCIT:C121153 LH-Producing Pituitary Neuroendocrine Tumor 8 30316 -NCIT:C187096 Pituitary Neuroendocrine Tumor without Distinct Lineage Differentiation 6 30317 -NCIT:C45916 Plurihormonal Pituitary Neuroendocrine Tumor 7 30318 -NCIT:C154504 Monomorphous Plurihormonal Pituitary Neuroendocrine Tumor 8 30319 -NCIT:C154505 Plurimorphous Plurihormonal Pituitary Neuroendocrine Tumor 8 30320 -NCIT:C45924 Null Cell Pituitary Neuroendocrine Tumor 7 30321 -NCIT:C187135 Pituitary Neuroendocrine Tumor, Not Otherwise Specified 6 30322 -NCIT:C4348 Non-Functioning Pituitary Neuroendocrine Tumor 6 30323 -NCIT:C121678 Non-Functioning Pituitary Neuroendocrine Tumor/Microadenoma 7 30324 -NCIT:C121721 Non-Functioning Pituitary Neuroendocrine Tumor/Macroadenoma 7 30325 -NCIT:C154429 Non-Functioning Corticotroph Pituitary Neuroendocrine Tumor 7 30326 -NCIT:C154431 Non-Functioning Densely Granulated Corticotroph Pituitary Neuroendocrine Tumor 8 30327 -NCIT:C154432 Non-Functioning Sparsely Granulated Corticotroph Pituitary Neuroendocrine Tumor 8 30328 -NCIT:C45924 Null Cell Pituitary Neuroendocrine Tumor 7 30329 -NCIT:C43541 Pituitary Neuroendocrine Tumor/Microadenoma 6 30330 -NCIT:C121678 Non-Functioning Pituitary Neuroendocrine Tumor/Microadenoma 7 30331 -NCIT:C121679 Functioning Pituitary Neuroendocrine Tumor/Microadenoma 7 30332 -NCIT:C43542 Pituitary Neuroendocrine Tumor/Macroadenoma 6 30333 -NCIT:C121720 Functioning Pituitary Neuroendocrine Tumor/Macroadenoma 7 30334 -NCIT:C121721 Non-Functioning Pituitary Neuroendocrine Tumor/Macroadenoma 7 30335 -NCIT:C4536 Metastatic Pituitary Neuroendocrine Tumor 6 30336 -NCIT:C163956 Locally Advanced Pituitary Neuroendocrine Tumor 7 30337 -NCIT:C163959 Metastatic Unresectable Pituitary Neuroendocrine Tumor 7 30338 -NCIT:C5962 Metastatic Lactotroph Pituitary Neuroendocrine Tumor 7 30339 -NCIT:C5963 Metastatic Somatotroph Pituitary Neuroendocrine Tumor 7 30340 -NCIT:C5964 Metastatic Corticotroph Pituitary Neuroendocrine Tumor 7 30341 -NCIT:C5965 Metastatic Thyrotroph Pituitary Neuroendocrine Tumor 7 30342 -NCIT:C8388 Functioning Pituitary Neuroendocrine Tumor 6 30343 -NCIT:C121679 Functioning Pituitary Neuroendocrine Tumor/Microadenoma 7 30344 -NCIT:C121720 Functioning Pituitary Neuroendocrine Tumor/Macroadenoma 7 30345 -NCIT:C5024 Prostate Neuroendocrine Tumor 5 30346 -NCIT:C5324 Cauda Equina Neuroendocrine Tumor 5 30347 -NCIT:C95404 Digestive System Neuroendocrine Tumor 5 30348 -NCIT:C135129 Digestive System Neuroendocrine Tumor by AJCC v7 Stage 6 30349 -NCIT:C135155 Appendix Neuroendocrine Tumor by AJCC v7 Stage 7 30350 -NCIT:C87809 Stage I Appendix Neuroendocrine Tumor AJCC v7 8 30351 -NCIT:C87810 Stage II Appendix Neuroendocrine Tumor AJCC v7 8 30352 -NCIT:C87811 Stage III Appendix Neuroendocrine Tumor AJCC v7 8 30353 -NCIT:C87812 Stage IV Appendix Neuroendocrine Tumor AJCC v7 8 30354 -NCIT:C88027 Stage 0 Digestive System Neuroendocrine Tumor AJCC v7 7 30355 -NCIT:C88028 Stage I Digestive System Neuroendocrine Tumor AJCC v7 7 30356 -NCIT:C88029 Stage IIA Digestive System Neuroendocrine Tumor AJCC v7 7 30357 -NCIT:C88030 Stage IIB Digestive System Neuroendocrine Tumor AJCC v7 7 30358 -NCIT:C88031 Stage IIIA Digestive System Neuroendocrine Tumor AJCC v7 7 30359 -NCIT:C88032 Stage IIIB Digestive System Neuroendocrine Tumor AJCC v7 7 30360 -NCIT:C88033 Stage IV Digestive System Neuroendocrine Tumor AJCC v7 7 30361 -NCIT:C167327 Midgut Neuroendocrine Tumor 6 30362 -NCIT:C135090 Jejunal Neuroendocrine Tumor 7 30363 -NCIT:C135119 Jejunal Neuroendocrine Tumor by AJCC v8 Stage 8 30364 -NCIT:C135120 Stage I Jejunal Neuroendocrine Tumor AJCC v8 9 30365 -NCIT:C135121 Stage II Jejunal Neuroendocrine Tumor AJCC v8 9 30366 -NCIT:C135122 Stage III Jejunal Neuroendocrine Tumor AJCC v8 9 30367 -NCIT:C135123 Stage IV Jejunal Neuroendocrine Tumor AJCC v8 9 30368 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 8 30369 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 8 30370 -NCIT:C5787 Jejunal Somatostatin-Producing Neuroendocrine Tumor 8 30371 -NCIT:C6429 Jejunal Neuroendocrine Tumor G1 8 30372 -NCIT:C135092 Ileal Neuroendocrine Tumor 7 30373 -NCIT:C135124 Ileal Neuroendocrine Tumor by AJCC v8 Stage 8 30374 -NCIT:C135125 Stage I Ileal Neuroendocrine Tumor AJCC v8 9 30375 -NCIT:C135126 Stage II Ileal Neuroendocrine Tumor AJCC v8 9 30376 -NCIT:C135127 Stage III Ileal Neuroendocrine Tumor AJCC v8 9 30377 -NCIT:C135128 Stage IV Ileal Neuroendocrine Tumor AJCC v8 9 30378 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 8 30379 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 8 30380 -NCIT:C4935 Ileal Neuroendocrine Tumor G1 8 30381 -NCIT:C167328 Midgut Neuroendocrine Tumor G2 7 30382 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 8 30383 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 8 30384 -NCIT:C96423 Appendix Neuroendocrine Tumor G2 8 30385 -NCIT:C167329 Metastatic Midgut Neuroendocrine Tumor 7 30386 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 8 30387 -NCIT:C167331 Unresectable Midgut Neuroendocrine Tumor 7 30388 -NCIT:C172669 Midgut Neuroendocrine Tumor G3 7 30389 -NCIT:C172666 Appendix Neuroendocrine Tumor G3 8 30390 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 8 30391 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 8 30392 -NCIT:C6422 Midgut Neuroendocrine Tumor G1 7 30393 -NCIT:C4138 Appendix Neuroendocrine Tumor G1 8 30394 -NCIT:C4935 Ileal Neuroendocrine Tumor G1 8 30395 -NCIT:C5229 Ovarian Carcinoid Tumor 8 30396 -NCIT:C188015 Ovarian Teratoma with Carcinoid Tumor 9 30397 -NCIT:C4292 Strumal Carcinoid 10 30398 -NCIT:C40013 Ovarian Insular Carcinoid Tumor 9 30399 -NCIT:C40014 Ovarian Trabecular Carcinoid Tumor 9 30400 -NCIT:C40015 Ovarian Mucinous Carcinoid Tumor 9 30401 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 8 30402 -NCIT:C6424 Meckel Diverticulum Neuroendocrine Tumor G1 8 30403 -NCIT:C6427 Ascending Colon Neuroendocrine Tumor G1 8 30404 -NCIT:C6429 Jejunal Neuroendocrine Tumor G1 8 30405 -NCIT:C96422 Appendix Neuroendocrine Tumor 7 30406 -NCIT:C135155 Appendix Neuroendocrine Tumor by AJCC v7 Stage 8 30407 -NCIT:C87809 Stage I Appendix Neuroendocrine Tumor AJCC v7 9 30408 -NCIT:C87810 Stage II Appendix Neuroendocrine Tumor AJCC v7 9 30409 -NCIT:C87811 Stage III Appendix Neuroendocrine Tumor AJCC v7 9 30410 -NCIT:C87812 Stage IV Appendix Neuroendocrine Tumor AJCC v7 9 30411 -NCIT:C135156 Appendix Neuroendocrine Tumor by AJCC v8 Stage 8 30412 -NCIT:C135157 Stage I Appendix Neuroendocrine Tumor AJCC v8 9 30413 -NCIT:C135158 Stage II Appendix Neuroendocrine Tumor AJCC v8 9 30414 -NCIT:C135159 Stage III Appendix Neuroendocrine Tumor AJCC v8 9 30415 -NCIT:C135160 Stage IV Appendix Neuroendocrine Tumor AJCC v8 9 30416 -NCIT:C172666 Appendix Neuroendocrine Tumor G3 8 30417 -NCIT:C190029 Childhood Appendix Neuroendocrine Tumor 8 30418 -NCIT:C27445 Appendix L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 8 30419 -NCIT:C4138 Appendix Neuroendocrine Tumor G1 8 30420 -NCIT:C43565 Appendix Tubular Carcinoid 8 30421 -NCIT:C96423 Appendix Neuroendocrine Tumor G2 8 30422 -NCIT:C96424 Appendix Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 8 30423 -NCIT:C172660 Digestive System Neuroendocrine Tumor G3 6 30424 -NCIT:C172661 Esophageal Neuroendocrine Tumor G3 7 30425 -NCIT:C172662 Gastric Neuroendocrine Tumor G3 7 30426 -NCIT:C172669 Midgut Neuroendocrine Tumor G3 7 30427 -NCIT:C172666 Appendix Neuroendocrine Tumor G3 8 30428 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 8 30429 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 8 30430 -NCIT:C172670 Intestinal Neuroendocrine Tumor G3 7 30431 -NCIT:C172664 Small Intestinal Neuroendocrine Tumor G3 8 30432 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 9 30433 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 9 30434 -NCIT:C172672 Duodenal Neuroendocrine Tumor G3 9 30435 -NCIT:C172701 Colorectal Neuroendocrine Tumor G3 8 30436 -NCIT:C172702 Colon Neuroendocrine Tumor G3 9 30437 -NCIT:C172703 Rectal Neuroendocrine Tumor G3 9 30438 -NCIT:C172673 Ampulla of Vater Neuroendocrine Tumor G3 7 30439 -NCIT:C172721 Liver Neuroendocrine Tumor G3 7 30440 -NCIT:C172742 Gallbladder Neuroendocrine Tumor G3 7 30441 -NCIT:C172743 Extrahepatic Bile Duct Neuroendocrine Tumor G3 7 30442 -NCIT:C172814 Pancreatic Neuroendocrine Tumor G3 7 30443 -NCIT:C190076 Childhood Digestive System Neuroendocrine Tumor 6 30444 -NCIT:C190029 Childhood Appendix Neuroendocrine Tumor 7 30445 -NCIT:C26749 VIP-Producing Neuroendocrine Tumor 6 30446 -NCIT:C27454 Pancreatic VIP-Producing Neuroendocrine Tumor 7 30447 -NCIT:C95599 Pancreatic Vipoma 8 30448 -NCIT:C67461 Malignant Pancreatic Vipoma 9 30449 -NCIT:C27455 Small Intestinal VIP-Producing Neuroendocrine Tumor 7 30450 -NCIT:C65189 Malignant Vipoma 7 30451 -NCIT:C67461 Malignant Pancreatic Vipoma 8 30452 -NCIT:C27448 L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 6 30453 -NCIT:C27445 Appendix L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 7 30454 -NCIT:C27452 Small Intestinal L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 7 30455 -NCIT:C96161 Colorectal L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 7 30456 -NCIT:C27447 Colon L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 8 30457 -NCIT:C27720 Pancreatic Neuroendocrine Tumor 6 30458 -NCIT:C135560 Pancreatic Neuroendocrine Tumor by AJCC v8 Stage 7 30459 -NCIT:C135561 Stage I Pancreatic Neuroendocrine Tumor AJCC v8 8 30460 -NCIT:C135562 Stage II Pancreatic Neuroendocrine Tumor AJCC v8 8 30461 -NCIT:C135563 Stage III Pancreatic Neuroendocrine Tumor AJCC v8 8 30462 -NCIT:C135564 Stage IV Pancreatic Neuroendocrine Tumor AJCC v8 8 30463 -NCIT:C156488 Metastatic Pancreatic Neuroendocrine Tumor 7 30464 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 8 30465 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 30466 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 30467 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 8 30468 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 8 30469 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 30470 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 8 30471 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 30472 -NCIT:C172814 Pancreatic Neuroendocrine Tumor G3 7 30473 -NCIT:C190782 Unresectable Pancreatic Neuroendocrine Tumor 7 30474 -NCIT:C27454 Pancreatic VIP-Producing Neuroendocrine Tumor 7 30475 -NCIT:C95599 Pancreatic Vipoma 8 30476 -NCIT:C67461 Malignant Pancreatic Vipoma 9 30477 -NCIT:C27466 Pancreatic ACTH-Producing Neuroendocrine Tumor 7 30478 -NCIT:C28396 Pancreatic Delta Cell Neuroendocrine Tumor 7 30479 -NCIT:C28333 Non-Functioning Pancreatic Delta Cell Neuroendocrine Tumor 8 30480 -NCIT:C8006 Pancreatic Somatostatin-Producing Neuroendocrine Tumor 8 30481 -NCIT:C95595 Pancreatic Somatostatinoma 9 30482 -NCIT:C67369 Malignant Pancreatic Somatostatinoma 10 30483 -NCIT:C3062 Pancreatic Glucagon-Producing Neuroendocrine Tumor 7 30484 -NCIT:C95597 Pancreatic Glucagonoma 8 30485 -NCIT:C65187 Malignant Pancreatic Glucagonoma 9 30486 -NCIT:C3140 Pancreatic Insulin-Producing Neuroendocrine Tumor 7 30487 -NCIT:C95598 Pancreatic Insulinoma 8 30488 -NCIT:C65186 Malignant Pancreatic Insulinoma 9 30489 -NCIT:C4446 Pancreatic Serotonin-Producing Neuroendocrine Tumor 7 30490 -NCIT:C45835 Pancreatic Neuroendocrine Tumor G2 7 30491 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 8 30492 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 30493 -NCIT:C45838 Non-Functioning Pancreatic Neuroendocrine Tumor G2 8 30494 -NCIT:C45841 Functioning Pancreatic Neuroendocrine Tumor G2 8 30495 -NCIT:C45837 Non-Functioning Pancreatic Neuroendocrine Tumor 7 30496 -NCIT:C28333 Non-Functioning Pancreatic Delta Cell Neuroendocrine Tumor 8 30497 -NCIT:C45834 Pancreatic Neuroendocrine Microtumor 8 30498 -NCIT:C45838 Non-Functioning Pancreatic Neuroendocrine Tumor G2 8 30499 -NCIT:C95585 Non-Functioning Pancreatic Neuroendocrine Tumor G1 8 30500 -NCIT:C45840 Functioning Pancreatic Neuroendocrine Tumor 7 30501 -NCIT:C45841 Functioning Pancreatic Neuroendocrine Tumor G2 8 30502 -NCIT:C95595 Pancreatic Somatostatinoma 8 30503 -NCIT:C67369 Malignant Pancreatic Somatostatinoma 9 30504 -NCIT:C95596 Pancreatic Gastrinoma 8 30505 -NCIT:C67458 Malignant Pancreatic Gastrinoma 9 30506 -NCIT:C95597 Pancreatic Glucagonoma 8 30507 -NCIT:C65187 Malignant Pancreatic Glucagonoma 9 30508 -NCIT:C95598 Pancreatic Insulinoma 8 30509 -NCIT:C65186 Malignant Pancreatic Insulinoma 9 30510 -NCIT:C95599 Pancreatic Vipoma 8 30511 -NCIT:C67461 Malignant Pancreatic Vipoma 9 30512 -NCIT:C9069 Pancreatic Gastrin-Producing Neuroendocrine Tumor 7 30513 -NCIT:C95596 Pancreatic Gastrinoma 8 30514 -NCIT:C67458 Malignant Pancreatic Gastrinoma 9 30515 -NCIT:C95584 Pancreatic Neuroendocrine Tumor G1 7 30516 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 8 30517 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 30518 -NCIT:C95585 Non-Functioning Pancreatic Neuroendocrine Tumor G1 8 30519 -NCIT:C3050 Gastrin-Producing Neuroendocrine Tumor 6 30520 -NCIT:C27444 Gastric Gastrin-Producing Neuroendocrine Tumor 7 30521 -NCIT:C27450 Small Intestinal Gastrin-Producing Neuroendocrine Tumor 7 30522 -NCIT:C5731 Duodenal Gastrin-Producing Neuroendocrine Tumor 8 30523 -NCIT:C65188 Malignant Gastrinoma 7 30524 -NCIT:C67458 Malignant Pancreatic Gastrinoma 8 30525 -NCIT:C9069 Pancreatic Gastrin-Producing Neuroendocrine Tumor 7 30526 -NCIT:C95596 Pancreatic Gastrinoma 8 30527 -NCIT:C67458 Malignant Pancreatic Gastrinoma 9 30528 -NCIT:C3379 Somatostatin-Producing Neuroendocrine Tumor 6 30529 -NCIT:C27453 Small Intestinal Somatostatin-Producing Neuroendocrine Tumor 7 30530 -NCIT:C27407 Duodenal Somatostatin-Producing Neuroendocrine Tumor 8 30531 -NCIT:C5787 Jejunal Somatostatin-Producing Neuroendocrine Tumor 8 30532 -NCIT:C65190 Malignant Somatostatinoma 7 30533 -NCIT:C67369 Malignant Pancreatic Somatostatinoma 8 30534 -NCIT:C8006 Pancreatic Somatostatin-Producing Neuroendocrine Tumor 7 30535 -NCIT:C95595 Pancreatic Somatostatinoma 8 30536 -NCIT:C67369 Malignant Pancreatic Somatostatinoma 9 30537 -NCIT:C95988 Ampulla of Vater Somatostatin-Producing Neuroendocrine Tumor 7 30538 -NCIT:C5783 Liver Neuroendocrine Tumor 6 30539 -NCIT:C172719 Liver Neuroendocrine Tumor G1 7 30540 -NCIT:C172720 Liver Neuroendocrine Tumor G2 7 30541 -NCIT:C172721 Liver Neuroendocrine Tumor G3 7 30542 -NCIT:C7709 Digestive System Neuroendocrine Tumor G1 6 30543 -NCIT:C115245 Metastatic Digestive System Neuroendocrine Tumor G1 7 30544 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 8 30545 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 30546 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 8 30547 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 8 30548 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 30549 -NCIT:C172719 Liver Neuroendocrine Tumor G1 7 30550 -NCIT:C179419 Unresectable Digestive System Neuroendocrine Tumor G1 7 30551 -NCIT:C27252 Enterochromaffin-Like Cell Neuroendocrine Tumor G1 7 30552 -NCIT:C4635 Gastric Neuroendocrine Tumor G1 8 30553 -NCIT:C4138 Appendix Neuroendocrine Tumor G1 7 30554 -NCIT:C4637 Intestinal Neuroendocrine Tumor G1 7 30555 -NCIT:C4638 Small Intestinal Neuroendocrine Tumor G1 8 30556 -NCIT:C4935 Ileal Neuroendocrine Tumor G1 9 30557 -NCIT:C6425 Duodenal Neuroendocrine Tumor G1 9 30558 -NCIT:C6429 Jejunal Neuroendocrine Tumor G1 9 30559 -NCIT:C6424 Meckel Diverticulum Neuroendocrine Tumor G1 8 30560 -NCIT:C96160 Colorectal Neuroendocrine Tumor G1 8 30561 -NCIT:C5497 Colon Neuroendocrine Tumor G1 9 30562 -NCIT:C188043 Sigmoid Colon Neuroendocrine Tumor G1 10 30563 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 10 30564 -NCIT:C6426 Transverse Colon Neuroendocrine Tumor G1 10 30565 -NCIT:C6427 Ascending Colon Neuroendocrine Tumor G1 10 30566 -NCIT:C6428 Descending Colon Neuroendocrine Tumor G1 10 30567 -NCIT:C5547 Rectal Neuroendocrine Tumor G1 9 30568 -NCIT:C5820 Esophageal Neuroendocrine Tumor G1 7 30569 -NCIT:C5861 Extrahepatic Bile Duct Neuroendocrine Tumor G1 7 30570 -NCIT:C7861 Localized Digestive System Neuroendocrine Tumor G1 7 30571 -NCIT:C7862 Regional Digestive System Neuroendocrine Tumor G1 7 30572 -NCIT:C7864 Recurrent Digestive System Neuroendocrine Tumor G1 7 30573 -NCIT:C95584 Pancreatic Neuroendocrine Tumor G1 7 30574 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 8 30575 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 30576 -NCIT:C95585 Non-Functioning Pancreatic Neuroendocrine Tumor G1 8 30577 -NCIT:C95982 Ampulla of Vater Neuroendocrine Tumor G1 7 30578 -NCIT:C96543 Anal Canal Neuroendocrine Tumor G1 7 30579 -NCIT:C96924 Gallbladder Neuroendocrine Tumor G1 7 30580 -NCIT:C95616 Esophageal Neuroendocrine Tumor 6 30581 -NCIT:C172661 Esophageal Neuroendocrine Tumor G3 7 30582 -NCIT:C5820 Esophageal Neuroendocrine Tumor G1 7 30583 -NCIT:C95617 Esophageal Neuroendocrine Tumor G2 7 30584 -NCIT:C95871 Gastric Neuroendocrine Tumor 6 30585 -NCIT:C135045 Gastric Neuroendocrine Tumor by AJCC v8 Stage 7 30586 -NCIT:C135046 Stage I Gastric Neuroendocrine Tumor AJCC v8 8 30587 -NCIT:C135047 Stage II Gastric Neuroendocrine Tumor AJCC v8 8 30588 -NCIT:C135048 Stage III Gastric Neuroendocrine Tumor AJCC v8 8 30589 -NCIT:C135049 Stage IV Gastric Neuroendocrine Tumor AJCC v8 8 30590 -NCIT:C172662 Gastric Neuroendocrine Tumor G3 7 30591 -NCIT:C27443 Gastric Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 7 30592 -NCIT:C27444 Gastric Gastrin-Producing Neuroendocrine Tumor 7 30593 -NCIT:C4635 Gastric Neuroendocrine Tumor G1 7 30594 -NCIT:C95880 Gastric Neuroendocrine Tumor G2 7 30595 -NCIT:C95981 Ampulla of Vater Neuroendocrine Tumor 6 30596 -NCIT:C135081 Ampulla of Vater Neuroendocrine Tumor by AJCC v8 Stage 7 30597 -NCIT:C135082 Stage I Ampulla of Vater Neuroendocrine Tumor AJCC v8 8 30598 -NCIT:C135083 Stage II Ampulla of Vater Neuroendocrine Tumor AJCC v8 8 30599 -NCIT:C135084 Stage III Ampulla of Vater Neuroendocrine Tumor AJCC v8 8 30600 -NCIT:C135085 Stage IV Ampulla of Vater Neuroendocrine Tumor AJCC v8 8 30601 -NCIT:C172673 Ampulla of Vater Neuroendocrine Tumor G3 7 30602 -NCIT:C95982 Ampulla of Vater Neuroendocrine Tumor G1 7 30603 -NCIT:C95983 Ampulla of Vater Neuroendocrine Tumor G2 7 30604 -NCIT:C95987 Ampulla of Vater Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 7 30605 -NCIT:C95988 Ampulla of Vater Somatostatin-Producing Neuroendocrine Tumor 7 30606 -NCIT:C95989 Ampulla of Vater Gangliocytic Paraganglioma 7 30607 -NCIT:C96062 Intestinal Neuroendocrine Tumor 6 30608 -NCIT:C172670 Intestinal Neuroendocrine Tumor G3 7 30609 -NCIT:C172664 Small Intestinal Neuroendocrine Tumor G3 8 30610 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 9 30611 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 9 30612 -NCIT:C172672 Duodenal Neuroendocrine Tumor G3 9 30613 -NCIT:C172701 Colorectal Neuroendocrine Tumor G3 8 30614 -NCIT:C172702 Colon Neuroendocrine Tumor G3 9 30615 -NCIT:C172703 Rectal Neuroendocrine Tumor G3 9 30616 -NCIT:C4637 Intestinal Neuroendocrine Tumor G1 7 30617 -NCIT:C4638 Small Intestinal Neuroendocrine Tumor G1 8 30618 -NCIT:C4935 Ileal Neuroendocrine Tumor G1 9 30619 -NCIT:C6425 Duodenal Neuroendocrine Tumor G1 9 30620 -NCIT:C6429 Jejunal Neuroendocrine Tumor G1 9 30621 -NCIT:C6424 Meckel Diverticulum Neuroendocrine Tumor G1 8 30622 -NCIT:C96160 Colorectal Neuroendocrine Tumor G1 8 30623 -NCIT:C5497 Colon Neuroendocrine Tumor G1 9 30624 -NCIT:C188043 Sigmoid Colon Neuroendocrine Tumor G1 10 30625 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 10 30626 -NCIT:C6426 Transverse Colon Neuroendocrine Tumor G1 10 30627 -NCIT:C6427 Ascending Colon Neuroendocrine Tumor G1 10 30628 -NCIT:C6428 Descending Colon Neuroendocrine Tumor G1 10 30629 -NCIT:C5547 Rectal Neuroendocrine Tumor G1 9 30630 -NCIT:C5325 Intestinal Composite Gangliocytoma/Neuroma and Neuroendocrine Tumor 7 30631 -NCIT:C96073 Small Intestinal Composite Gangliocytoma/Neuroma and Neuroendocrine Tumor 8 30632 -NCIT:C96061 Small Intestinal Neuroendocrine Tumor 7 30633 -NCIT:C135080 Duodenal Neuroendocrine Tumor 8 30634 -NCIT:C135075 Duodenal Neuroendocrine Tumor by AJCC v8 Stage 9 30635 -NCIT:C135076 Stage I Duodenal Neuroendocrine Tumor AJCC v8 10 30636 -NCIT:C135077 Stage II Duodenal Neuroendocrine Tumor AJCC v8 10 30637 -NCIT:C135078 Stage III Duodenal Neuroendocrine Tumor AJCC v8 10 30638 -NCIT:C135079 Stage IV Duodenal Neuroendocrine Tumor AJCC v8 10 30639 -NCIT:C160442 Duodenal Neuroendocrine Tumor G2 9 30640 -NCIT:C172672 Duodenal Neuroendocrine Tumor G3 9 30641 -NCIT:C27407 Duodenal Somatostatin-Producing Neuroendocrine Tumor 9 30642 -NCIT:C5731 Duodenal Gastrin-Producing Neuroendocrine Tumor 9 30643 -NCIT:C6425 Duodenal Neuroendocrine Tumor G1 9 30644 -NCIT:C135090 Jejunal Neuroendocrine Tumor 8 30645 -NCIT:C135119 Jejunal Neuroendocrine Tumor by AJCC v8 Stage 9 30646 -NCIT:C135120 Stage I Jejunal Neuroendocrine Tumor AJCC v8 10 30647 -NCIT:C135121 Stage II Jejunal Neuroendocrine Tumor AJCC v8 10 30648 -NCIT:C135122 Stage III Jejunal Neuroendocrine Tumor AJCC v8 10 30649 -NCIT:C135123 Stage IV Jejunal Neuroendocrine Tumor AJCC v8 10 30650 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 9 30651 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 9 30652 -NCIT:C5787 Jejunal Somatostatin-Producing Neuroendocrine Tumor 9 30653 -NCIT:C6429 Jejunal Neuroendocrine Tumor G1 9 30654 -NCIT:C135092 Ileal Neuroendocrine Tumor 8 30655 -NCIT:C135124 Ileal Neuroendocrine Tumor by AJCC v8 Stage 9 30656 -NCIT:C135125 Stage I Ileal Neuroendocrine Tumor AJCC v8 10 30657 -NCIT:C135126 Stage II Ileal Neuroendocrine Tumor AJCC v8 10 30658 -NCIT:C135127 Stage III Ileal Neuroendocrine Tumor AJCC v8 10 30659 -NCIT:C135128 Stage IV Ileal Neuroendocrine Tumor AJCC v8 10 30660 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 9 30661 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 9 30662 -NCIT:C4935 Ileal Neuroendocrine Tumor G1 9 30663 -NCIT:C172664 Small Intestinal Neuroendocrine Tumor G3 8 30664 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 9 30665 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 9 30666 -NCIT:C172672 Duodenal Neuroendocrine Tumor G3 9 30667 -NCIT:C27450 Small Intestinal Gastrin-Producing Neuroendocrine Tumor 8 30668 -NCIT:C5731 Duodenal Gastrin-Producing Neuroendocrine Tumor 9 30669 -NCIT:C27451 Small Intestinal Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 8 30670 -NCIT:C27452 Small Intestinal L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 8 30671 -NCIT:C27453 Small Intestinal Somatostatin-Producing Neuroendocrine Tumor 8 30672 -NCIT:C27407 Duodenal Somatostatin-Producing Neuroendocrine Tumor 9 30673 -NCIT:C5787 Jejunal Somatostatin-Producing Neuroendocrine Tumor 9 30674 -NCIT:C27455 Small Intestinal VIP-Producing Neuroendocrine Tumor 8 30675 -NCIT:C4638 Small Intestinal Neuroendocrine Tumor G1 8 30676 -NCIT:C4935 Ileal Neuroendocrine Tumor G1 9 30677 -NCIT:C6425 Duodenal Neuroendocrine Tumor G1 9 30678 -NCIT:C6429 Jejunal Neuroendocrine Tumor G1 9 30679 -NCIT:C96067 Small Intestinal Neuroendocrine Tumor G2 8 30680 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 9 30681 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 9 30682 -NCIT:C160442 Duodenal Neuroendocrine Tumor G2 9 30683 -NCIT:C96073 Small Intestinal Composite Gangliocytoma/Neuroma and Neuroendocrine Tumor 8 30684 -NCIT:C96159 Colorectal Neuroendocrine Tumor 7 30685 -NCIT:C135205 Colorectal Neuroendocrine Tumor by AJCC v8 Stage 8 30686 -NCIT:C135206 Stage I Colorectal Neuroendocrine Tumor AJCC v8 9 30687 -NCIT:C135368 Stage I Colon Neuroendocrine Tumor AJCC v8 10 30688 -NCIT:C135528 Stage I Rectal Neuroendocrine Tumor AJCC v8 10 30689 -NCIT:C135207 Stage IIA Colorectal Neuroendocrine Tumor AJCC v8 9 30690 -NCIT:C135369 Stage IIA Colon Neuroendocrine Tumor AJCC v8 10 30691 -NCIT:C135529 Stage IIA Rectal Neuroendocrine Tumor AJCC v8 10 30692 -NCIT:C135208 Stage IIB Colorectal Neuroendocrine Tumor AJCC v8 9 30693 -NCIT:C135370 Stage IIB Colon Neuroendocrine Tumor AJCC v8 10 30694 -NCIT:C135530 Stage IIB Rectal Neuroendocrine Tumor AJCC v8 10 30695 -NCIT:C135209 Stage IIIA Colorectal Neuroendocrine Tumor AJCC v8 9 30696 -NCIT:C135524 Stage IIIA Colon Neuroendocrine Tumor AJCC v8 10 30697 -NCIT:C135531 Stage IIIA Rectal Neuroendocrine Tumor AJCC v8 10 30698 -NCIT:C135210 Stage IIIB Colorectal Neuroendocrine Tumor AJCC v8 9 30699 -NCIT:C135525 Stage IIIB Colon Neuroendocrine Tumor AJCC v8 10 30700 -NCIT:C135532 Stage IIIB Rectal Neuroendocrine Tumor AJCC v8 10 30701 -NCIT:C135211 Stage IV Colorectal Neuroendocrine Tumor AJCC v8 9 30702 -NCIT:C135526 Stage IV Colon Neuroendocrine Tumor AJCC v8 10 30703 -NCIT:C135533 Stage IV Rectal Neuroendocrine Tumor AJCC v8 10 30704 -NCIT:C135214 Colon Neuroendocrine Tumor by AJCC v8 Stage 9 30705 -NCIT:C135368 Stage I Colon Neuroendocrine Tumor AJCC v8 10 30706 -NCIT:C135369 Stage IIA Colon Neuroendocrine Tumor AJCC v8 10 30707 -NCIT:C135370 Stage IIB Colon Neuroendocrine Tumor AJCC v8 10 30708 -NCIT:C135524 Stage IIIA Colon Neuroendocrine Tumor AJCC v8 10 30709 -NCIT:C135525 Stage IIIB Colon Neuroendocrine Tumor AJCC v8 10 30710 -NCIT:C135526 Stage IV Colon Neuroendocrine Tumor AJCC v8 10 30711 -NCIT:C135527 Rectal Neuroendocrine Tumor by AJCC v8 Stage 9 30712 -NCIT:C135528 Stage I Rectal Neuroendocrine Tumor AJCC v8 10 30713 -NCIT:C135529 Stage IIA Rectal Neuroendocrine Tumor AJCC v8 10 30714 -NCIT:C135530 Stage IIB Rectal Neuroendocrine Tumor AJCC v8 10 30715 -NCIT:C135531 Stage IIIA Rectal Neuroendocrine Tumor AJCC v8 10 30716 -NCIT:C135532 Stage IIIB Rectal Neuroendocrine Tumor AJCC v8 10 30717 -NCIT:C135533 Stage IV Rectal Neuroendocrine Tumor AJCC v8 10 30718 -NCIT:C135212 Colon Neuroendocrine Tumor 8 30719 -NCIT:C135214 Colon Neuroendocrine Tumor by AJCC v8 Stage 9 30720 -NCIT:C135368 Stage I Colon Neuroendocrine Tumor AJCC v8 10 30721 -NCIT:C135369 Stage IIA Colon Neuroendocrine Tumor AJCC v8 10 30722 -NCIT:C135370 Stage IIB Colon Neuroendocrine Tumor AJCC v8 10 30723 -NCIT:C135524 Stage IIIA Colon Neuroendocrine Tumor AJCC v8 10 30724 -NCIT:C135525 Stage IIIB Colon Neuroendocrine Tumor AJCC v8 10 30725 -NCIT:C135526 Stage IV Colon Neuroendocrine Tumor AJCC v8 10 30726 -NCIT:C160443 Colon Neuroendocrine Tumor G2 9 30727 -NCIT:C172702 Colon Neuroendocrine Tumor G3 9 30728 -NCIT:C27446 Colon Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 9 30729 -NCIT:C27447 Colon L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 9 30730 -NCIT:C5497 Colon Neuroendocrine Tumor G1 9 30731 -NCIT:C188043 Sigmoid Colon Neuroendocrine Tumor G1 10 30732 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 10 30733 -NCIT:C6426 Transverse Colon Neuroendocrine Tumor G1 10 30734 -NCIT:C6427 Ascending Colon Neuroendocrine Tumor G1 10 30735 -NCIT:C6428 Descending Colon Neuroendocrine Tumor G1 10 30736 -NCIT:C135213 Rectal Neuroendocrine Tumor 8 30737 -NCIT:C135527 Rectal Neuroendocrine Tumor by AJCC v8 Stage 9 30738 -NCIT:C135528 Stage I Rectal Neuroendocrine Tumor AJCC v8 10 30739 -NCIT:C135529 Stage IIA Rectal Neuroendocrine Tumor AJCC v8 10 30740 -NCIT:C135530 Stage IIB Rectal Neuroendocrine Tumor AJCC v8 10 30741 -NCIT:C135531 Stage IIIA Rectal Neuroendocrine Tumor AJCC v8 10 30742 -NCIT:C135532 Stage IIIB Rectal Neuroendocrine Tumor AJCC v8 10 30743 -NCIT:C135533 Stage IV Rectal Neuroendocrine Tumor AJCC v8 10 30744 -NCIT:C160451 Rectal Neuroendocrine Tumor G2 9 30745 -NCIT:C172703 Rectal Neuroendocrine Tumor G3 9 30746 -NCIT:C5547 Rectal Neuroendocrine Tumor G1 9 30747 -NCIT:C172701 Colorectal Neuroendocrine Tumor G3 8 30748 -NCIT:C172702 Colon Neuroendocrine Tumor G3 9 30749 -NCIT:C172703 Rectal Neuroendocrine Tumor G3 9 30750 -NCIT:C96160 Colorectal Neuroendocrine Tumor G1 8 30751 -NCIT:C5497 Colon Neuroendocrine Tumor G1 9 30752 -NCIT:C188043 Sigmoid Colon Neuroendocrine Tumor G1 10 30753 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 10 30754 -NCIT:C6426 Transverse Colon Neuroendocrine Tumor G1 10 30755 -NCIT:C6427 Ascending Colon Neuroendocrine Tumor G1 10 30756 -NCIT:C6428 Descending Colon Neuroendocrine Tumor G1 10 30757 -NCIT:C5547 Rectal Neuroendocrine Tumor G1 9 30758 -NCIT:C96161 Colorectal L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 8 30759 -NCIT:C27447 Colon L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 9 30760 -NCIT:C96162 Colorectal Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 8 30761 -NCIT:C27446 Colon Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 9 30762 -NCIT:C96163 Colorectal Neuroendocrine Tumor G2 8 30763 -NCIT:C160443 Colon Neuroendocrine Tumor G2 9 30764 -NCIT:C160451 Rectal Neuroendocrine Tumor G2 9 30765 -NCIT:C96165 Intestinal Neuroendocrine Tumor G2 7 30766 -NCIT:C96067 Small Intestinal Neuroendocrine Tumor G2 8 30767 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 9 30768 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 9 30769 -NCIT:C160442 Duodenal Neuroendocrine Tumor G2 9 30770 -NCIT:C96163 Colorectal Neuroendocrine Tumor G2 8 30771 -NCIT:C160443 Colon Neuroendocrine Tumor G2 9 30772 -NCIT:C160451 Rectal Neuroendocrine Tumor G2 9 30773 -NCIT:C96166 Digestive System Neuroendocrine Tumor G2 6 30774 -NCIT:C167328 Midgut Neuroendocrine Tumor G2 7 30775 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 8 30776 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 8 30777 -NCIT:C96423 Appendix Neuroendocrine Tumor G2 8 30778 -NCIT:C172720 Liver Neuroendocrine Tumor G2 7 30779 -NCIT:C179415 Metastatic Digestive System Neuroendocrine Tumor G2 7 30780 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 8 30781 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 8 30782 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 30783 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 8 30784 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 30785 -NCIT:C187345 Unresectable Digestive System Neuroendocrine Tumor G2 7 30786 -NCIT:C45835 Pancreatic Neuroendocrine Tumor G2 7 30787 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 8 30788 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 30789 -NCIT:C45838 Non-Functioning Pancreatic Neuroendocrine Tumor G2 8 30790 -NCIT:C45841 Functioning Pancreatic Neuroendocrine Tumor G2 8 30791 -NCIT:C95617 Esophageal Neuroendocrine Tumor G2 7 30792 -NCIT:C95880 Gastric Neuroendocrine Tumor G2 7 30793 -NCIT:C95983 Ampulla of Vater Neuroendocrine Tumor G2 7 30794 -NCIT:C96165 Intestinal Neuroendocrine Tumor G2 7 30795 -NCIT:C96067 Small Intestinal Neuroendocrine Tumor G2 8 30796 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 9 30797 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 9 30798 -NCIT:C160442 Duodenal Neuroendocrine Tumor G2 9 30799 -NCIT:C96163 Colorectal Neuroendocrine Tumor G2 8 30800 -NCIT:C160443 Colon Neuroendocrine Tumor G2 9 30801 -NCIT:C160451 Rectal Neuroendocrine Tumor G2 9 30802 -NCIT:C96546 Anal Canal Neuroendocrine Tumor G2 7 30803 -NCIT:C96925 Gallbladder Neuroendocrine Tumor G2 7 30804 -NCIT:C96957 Extrahepatic Bile Duct Neuroendocrine Tumor G2 7 30805 -NCIT:C96540 Anal Canal Neuroendocrine Tumor 6 30806 -NCIT:C96543 Anal Canal Neuroendocrine Tumor G1 7 30807 -NCIT:C96546 Anal Canal Neuroendocrine Tumor G2 7 30808 -NCIT:C96918 Gallbladder Neuroendocrine Tumor 6 30809 -NCIT:C172742 Gallbladder Neuroendocrine Tumor G3 7 30810 -NCIT:C96924 Gallbladder Neuroendocrine Tumor G1 7 30811 -NCIT:C96925 Gallbladder Neuroendocrine Tumor G2 7 30812 -NCIT:C96930 Gallbladder Tubular Carcinoid 7 30813 -NCIT:C96955 Extrahepatic Bile Duct Neuroendocrine Tumor 6 30814 -NCIT:C172743 Extrahepatic Bile Duct Neuroendocrine Tumor G3 7 30815 -NCIT:C5861 Extrahepatic Bile Duct Neuroendocrine Tumor G1 7 30816 -NCIT:C96957 Extrahepatic Bile Duct Neuroendocrine Tumor G2 7 30817 -NCIT:C188222 Head and Neck Neuroendocrine Neoplasm 4 30818 -NCIT:C160980 Head and Neck Neuroendocrine Carcinoma 5 30819 -NCIT:C160981 Head and Neck Small Cell Neuroendocrine Carcinoma 6 30820 -NCIT:C116318 Sinonasal Small Cell Neuroendocrine Carcinoma 7 30821 -NCIT:C35703 Salivary Gland Small Cell Neuroendocrine Carcinoma 7 30822 -NCIT:C5956 Minor Salivary Gland Small Cell Neuroendocrine Carcinoma 8 30823 -NCIT:C6025 Laryngeal Small Cell Neuroendocrine Carcinoma 7 30824 -NCIT:C160982 Head and Neck Large Cell Neuroendocrine Carcinoma 6 30825 -NCIT:C173091 Sinonasal Large Cell Neuroendocrine Carcinoma 7 30826 -NCIT:C173395 Laryngeal Large Cell Neuroendocrine Carcinoma 7 30827 -NCIT:C173650 Salivary Gland Large Cell Neuroendocrine Carcinoma 7 30828 -NCIT:C173089 Sinonasal Neuroendocrine Carcinoma 6 30829 -NCIT:C116318 Sinonasal Small Cell Neuroendocrine Carcinoma 7 30830 -NCIT:C173091 Sinonasal Large Cell Neuroendocrine Carcinoma 7 30831 -NCIT:C173390 Laryngeal Neuroendocrine Carcinoma 6 30832 -NCIT:C173395 Laryngeal Large Cell Neuroendocrine Carcinoma 7 30833 -NCIT:C6025 Laryngeal Small Cell Neuroendocrine Carcinoma 7 30834 -NCIT:C173587 Head and Neck Merkel Cell Carcinoma 6 30835 -NCIT:C173653 Salivary Gland Neuroendocrine Carcinoma 6 30836 -NCIT:C173650 Salivary Gland Large Cell Neuroendocrine Carcinoma 7 30837 -NCIT:C35703 Salivary Gland Small Cell Neuroendocrine Carcinoma 7 30838 -NCIT:C5956 Minor Salivary Gland Small Cell Neuroendocrine Carcinoma 8 30839 -NCIT:C3879 Thyroid Gland Medullary Carcinoma 6 30840 -NCIT:C123905 Childhood Thyroid Gland Medullary Carcinoma 7 30841 -NCIT:C141041 Thyroid Gland Medullary Carcinoma by AJCC v7 Stage 7 30842 -NCIT:C6133 Stage I Thyroid Gland Medullary Carcinoma AJCC v7 8 30843 -NCIT:C6134 Stage II Thyroid Gland Medullary Carcinoma AJCC v7 8 30844 -NCIT:C6135 Stage III Thyroid Gland Medullary Carcinoma AJCC v7 8 30845 -NCIT:C6136 Stage IV Thyroid Gland Medullary Carcinoma AJCC v7 8 30846 -NCIT:C87549 Stage IVA Thyroid Gland Medullary Carcinoma AJCC v7 9 30847 -NCIT:C87550 Stage IVB Thyroid Gland Medullary Carcinoma AJCC v7 9 30848 -NCIT:C87551 Stage IVC Thyroid Gland Medullary Carcinoma AJCC v7 9 30849 -NCIT:C141042 Thyroid Gland Medullary Carcinoma by AJCC v8 Stage 7 30850 -NCIT:C141043 Stage I Thyroid Gland Medullary Carcinoma AJCC v8 8 30851 -NCIT:C141044 Stage II Thyroid Gland Medullary Carcinoma AJCC v8 8 30852 -NCIT:C141045 Stage III Thyroid Gland Medullary Carcinoma AJCC v8 8 30853 -NCIT:C141046 Stage IV Thyroid Gland Medullary Carcinoma AJCC v8 8 30854 -NCIT:C141047 Stage IVA Thyroid Gland Medullary Carcinoma AJCC v8 9 30855 -NCIT:C141048 Stage IVB Thyroid Gland Medullary Carcinoma AJCC v8 9 30856 -NCIT:C141049 Stage IVC Thyroid Gland Medullary Carcinoma AJCC v8 9 30857 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 7 30858 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 8 30859 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 7 30860 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 30861 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 30862 -NCIT:C163974 Unresectable Thyroid Gland Medullary Carcinoma 7 30863 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 8 30864 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 7 30865 -NCIT:C4193 Thyroid Gland Medullary Carcinoma with Amyloid Stroma 7 30866 -NCIT:C46098 Sporadic Thyroid Gland Medullary Carcinoma 7 30867 -NCIT:C46103 Sporadic Thyroid Gland Micromedullary Carcinoma 8 30868 -NCIT:C46099 Hereditary Thyroid Gland Medullary Carcinoma 7 30869 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 8 30870 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 8 30871 -NCIT:C173387 Head and Neck Neuroendocrine Tumor 5 30872 -NCIT:C173388 Head and Neck Neuroendocrine Tumor G2 6 30873 -NCIT:C173392 Laryngeal Neuroendocrine Tumor G2 7 30874 -NCIT:C173391 Laryngeal Neuroendocrine Tumor 6 30875 -NCIT:C173392 Laryngeal Neuroendocrine Tumor G2 7 30876 -NCIT:C188223 Laryngeal Neuroendocrine Tumor G1 7 30877 -NCIT:C188224 Head and Neck Neuroendocrine Tumor G1 6 30878 -NCIT:C188223 Laryngeal Neuroendocrine Tumor G1 7 30879 -NCIT:C5327 Head and Neck Paraganglioma 5 30880 -NCIT:C2932 Carotid Body Paraganglioma 6 30881 -NCIT:C3574 Metastatic Carotid Body Paraganglioma 7 30882 -NCIT:C79950 Non-Metastatic Carotid Body Paraganglioma 7 30883 -NCIT:C3061 Jugulotympanic Paraganglioma 6 30884 -NCIT:C4623 Metastatic Jugulotympanic Paraganglioma 7 30885 -NCIT:C6085 Middle Ear Paraganglioma 7 30886 -NCIT:C8428 Tympanic Paraganglioma 8 30887 -NCIT:C46125 Thyroid Gland Paraganglioma 6 30888 -NCIT:C48316 Nasopharyngeal Paraganglioma 6 30889 -NCIT:C6408 Orbit Paraganglioma 6 30890 -NCIT:C6409 Laryngeal Paraganglioma 6 30891 -NCIT:C8427 Vagal Paraganglioma 6 30892 -NCIT:C6023 Laryngeal Neuroendocrine Neoplasm 5 30893 -NCIT:C173390 Laryngeal Neuroendocrine Carcinoma 6 30894 -NCIT:C173395 Laryngeal Large Cell Neuroendocrine Carcinoma 7 30895 -NCIT:C6025 Laryngeal Small Cell Neuroendocrine Carcinoma 7 30896 -NCIT:C173391 Laryngeal Neuroendocrine Tumor 6 30897 -NCIT:C173392 Laryngeal Neuroendocrine Tumor G2 7 30898 -NCIT:C188223 Laryngeal Neuroendocrine Tumor G1 7 30899 -NCIT:C6409 Laryngeal Paraganglioma 6 30900 -NCIT:C190075 Childhood Neuroendocrine Neoplasm 4 30901 -NCIT:C118815 Childhood Lung Small Cell Carcinoma 5 30902 -NCIT:C123905 Childhood Thyroid Gland Medullary Carcinoma 5 30903 -NCIT:C190074 Childhood Paraganglioma 5 30904 -NCIT:C190071 Childhood Sympathetic Paraganglioma 6 30905 -NCIT:C118822 Childhood Adrenal Gland Pheochromocytoma 7 30906 -NCIT:C190072 Childhood Parasympathetic Paraganglioma 6 30907 -NCIT:C190073 Childhood Composite Paraganglioma 6 30908 -NCIT:C190077 Childhood Neuroendocrine Tumor 5 30909 -NCIT:C118810 Childhood Neuroendocrine Tumor G1 6 30910 -NCIT:C190076 Childhood Digestive System Neuroendocrine Tumor 6 30911 -NCIT:C190029 Childhood Appendix Neuroendocrine Tumor 7 30912 -NCIT:C190078 Childhood Neuroendocrine Tumor G2 6 30913 -NCIT:C27721 Digestive System Neuroendocrine Neoplasm 4 30914 -NCIT:C156492 Metastatic Digestive System Neuroendocrine Neoplasm 5 30915 -NCIT:C115245 Metastatic Digestive System Neuroendocrine Tumor G1 6 30916 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 7 30917 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 30918 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 7 30919 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 7 30920 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 30921 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 6 30922 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 7 30923 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 30924 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 30925 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 30926 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 7 30927 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 30928 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 30929 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 30930 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 7 30931 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 30932 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 30933 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 30934 -NCIT:C158089 Advanced Digestive System Neuroendocrine Neoplasm 6 30935 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 7 30936 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 30937 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 30938 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 7 30939 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 30940 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 30941 -NCIT:C165448 Advanced Pancreatic Neuroendocrine Neoplasm 7 30942 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 8 30943 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 30944 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 30945 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 7 30946 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 30947 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 7 30948 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 30949 -NCIT:C165447 Metastatic Pancreatic Neuroendocrine Neoplasm 6 30950 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 7 30951 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 30952 -NCIT:C156488 Metastatic Pancreatic Neuroendocrine Tumor 7 30953 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 8 30954 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 30955 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 30956 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 8 30957 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 8 30958 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 30959 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 8 30960 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 30961 -NCIT:C165448 Advanced Pancreatic Neuroendocrine Neoplasm 7 30962 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 8 30963 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 30964 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 30965 -NCIT:C167329 Metastatic Midgut Neuroendocrine Tumor 6 30966 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 7 30967 -NCIT:C178271 Locally Advanced Digestive System Neuroendocrine Neoplasm 6 30968 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 30969 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 30970 -NCIT:C158090 Locally Advanced Unresectable Digestive System Neuroendocrine Neoplasm 7 30971 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 7 30972 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 7 30973 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 7 30974 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 7 30975 -NCIT:C179415 Metastatic Digestive System Neuroendocrine Tumor G2 6 30976 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 7 30977 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 7 30978 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 30979 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 7 30980 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 30981 -NCIT:C158088 Refractory Digestive System Neuroendocrine Neoplasm 5 30982 -NCIT:C155937 Refractory Digestive System Neuroendocrine Carcinoma 6 30983 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 7 30984 -NCIT:C165455 Unresectable Digestive System Neuroendocrine Neoplasm 5 30985 -NCIT:C155935 Unresectable Digestive System Neuroendocrine Carcinoma 6 30986 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 7 30987 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 7 30988 -NCIT:C158090 Locally Advanced Unresectable Digestive System Neuroendocrine Neoplasm 6 30989 -NCIT:C165456 Unresectable Pancreatic Neuroendocrine Neoplasm 6 30990 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 7 30991 -NCIT:C190782 Unresectable Pancreatic Neuroendocrine Tumor 7 30992 -NCIT:C167331 Unresectable Midgut Neuroendocrine Tumor 6 30993 -NCIT:C179419 Unresectable Digestive System Neuroendocrine Tumor G1 6 30994 -NCIT:C187345 Unresectable Digestive System Neuroendocrine Tumor G2 6 30995 -NCIT:C188228 Recurrent Digestive System Neuroendocrine Neoplasm 5 30996 -NCIT:C155938 Recurrent Digestive System Neuroendocrine Carcinoma 6 30997 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 7 30998 -NCIT:C27031 Pancreatic Neuroendocrine Neoplasm 5 30999 -NCIT:C165447 Metastatic Pancreatic Neuroendocrine Neoplasm 6 31000 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 7 31001 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 31002 -NCIT:C156488 Metastatic Pancreatic Neuroendocrine Tumor 7 31003 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 8 31004 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 31005 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 31006 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 8 31007 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 8 31008 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 31009 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 8 31010 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 31011 -NCIT:C165448 Advanced Pancreatic Neuroendocrine Neoplasm 7 31012 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 8 31013 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 31014 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 31015 -NCIT:C165456 Unresectable Pancreatic Neuroendocrine Neoplasm 6 31016 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 7 31017 -NCIT:C190782 Unresectable Pancreatic Neuroendocrine Tumor 7 31018 -NCIT:C27720 Pancreatic Neuroendocrine Tumor 6 31019 -NCIT:C135560 Pancreatic Neuroendocrine Tumor by AJCC v8 Stage 7 31020 -NCIT:C135561 Stage I Pancreatic Neuroendocrine Tumor AJCC v8 8 31021 -NCIT:C135562 Stage II Pancreatic Neuroendocrine Tumor AJCC v8 8 31022 -NCIT:C135563 Stage III Pancreatic Neuroendocrine Tumor AJCC v8 8 31023 -NCIT:C135564 Stage IV Pancreatic Neuroendocrine Tumor AJCC v8 8 31024 -NCIT:C156488 Metastatic Pancreatic Neuroendocrine Tumor 7 31025 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 8 31026 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 31027 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 31028 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 8 31029 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 8 31030 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 31031 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 8 31032 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 31033 -NCIT:C172814 Pancreatic Neuroendocrine Tumor G3 7 31034 -NCIT:C190782 Unresectable Pancreatic Neuroendocrine Tumor 7 31035 -NCIT:C27454 Pancreatic VIP-Producing Neuroendocrine Tumor 7 31036 -NCIT:C95599 Pancreatic Vipoma 8 31037 -NCIT:C67461 Malignant Pancreatic Vipoma 9 31038 -NCIT:C27466 Pancreatic ACTH-Producing Neuroendocrine Tumor 7 31039 -NCIT:C28396 Pancreatic Delta Cell Neuroendocrine Tumor 7 31040 -NCIT:C28333 Non-Functioning Pancreatic Delta Cell Neuroendocrine Tumor 8 31041 -NCIT:C8006 Pancreatic Somatostatin-Producing Neuroendocrine Tumor 8 31042 -NCIT:C95595 Pancreatic Somatostatinoma 9 31043 -NCIT:C67369 Malignant Pancreatic Somatostatinoma 10 31044 -NCIT:C3062 Pancreatic Glucagon-Producing Neuroendocrine Tumor 7 31045 -NCIT:C95597 Pancreatic Glucagonoma 8 31046 -NCIT:C65187 Malignant Pancreatic Glucagonoma 9 31047 -NCIT:C3140 Pancreatic Insulin-Producing Neuroendocrine Tumor 7 31048 -NCIT:C95598 Pancreatic Insulinoma 8 31049 -NCIT:C65186 Malignant Pancreatic Insulinoma 9 31050 -NCIT:C4446 Pancreatic Serotonin-Producing Neuroendocrine Tumor 7 31051 -NCIT:C45835 Pancreatic Neuroendocrine Tumor G2 7 31052 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 8 31053 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 31054 -NCIT:C45838 Non-Functioning Pancreatic Neuroendocrine Tumor G2 8 31055 -NCIT:C45841 Functioning Pancreatic Neuroendocrine Tumor G2 8 31056 -NCIT:C45837 Non-Functioning Pancreatic Neuroendocrine Tumor 7 31057 -NCIT:C28333 Non-Functioning Pancreatic Delta Cell Neuroendocrine Tumor 8 31058 -NCIT:C45834 Pancreatic Neuroendocrine Microtumor 8 31059 -NCIT:C45838 Non-Functioning Pancreatic Neuroendocrine Tumor G2 8 31060 -NCIT:C95585 Non-Functioning Pancreatic Neuroendocrine Tumor G1 8 31061 -NCIT:C45840 Functioning Pancreatic Neuroendocrine Tumor 7 31062 -NCIT:C45841 Functioning Pancreatic Neuroendocrine Tumor G2 8 31063 -NCIT:C95595 Pancreatic Somatostatinoma 8 31064 -NCIT:C67369 Malignant Pancreatic Somatostatinoma 9 31065 -NCIT:C95596 Pancreatic Gastrinoma 8 31066 -NCIT:C67458 Malignant Pancreatic Gastrinoma 9 31067 -NCIT:C95597 Pancreatic Glucagonoma 8 31068 -NCIT:C65187 Malignant Pancreatic Glucagonoma 9 31069 -NCIT:C95598 Pancreatic Insulinoma 8 31070 -NCIT:C65186 Malignant Pancreatic Insulinoma 9 31071 -NCIT:C95599 Pancreatic Vipoma 8 31072 -NCIT:C67461 Malignant Pancreatic Vipoma 9 31073 -NCIT:C9069 Pancreatic Gastrin-Producing Neuroendocrine Tumor 7 31074 -NCIT:C95596 Pancreatic Gastrinoma 8 31075 -NCIT:C67458 Malignant Pancreatic Gastrinoma 9 31076 -NCIT:C95584 Pancreatic Neuroendocrine Tumor G1 7 31077 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 8 31078 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 31079 -NCIT:C95585 Non-Functioning Pancreatic Neuroendocrine Tumor G1 8 31080 -NCIT:C3770 Pancreatic Neuroendocrine Carcinoma 6 31081 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 7 31082 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 7 31083 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 7 31084 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 31085 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 7 31086 -NCIT:C95582 Pancreatic Large Cell Neuroendocrine Carcinoma 7 31087 -NCIT:C95583 Pancreatic Small Cell Neuroendocrine Carcinoma 7 31088 -NCIT:C5603 Anal Canal Neuroendocrine Neoplasm 5 31089 -NCIT:C96540 Anal Canal Neuroendocrine Tumor 6 31090 -NCIT:C96543 Anal Canal Neuroendocrine Tumor G1 7 31091 -NCIT:C96546 Anal Canal Neuroendocrine Tumor G2 7 31092 -NCIT:C96549 Anal Canal Neuroendocrine Carcinoma 6 31093 -NCIT:C96550 Anal Canal Large Cell Neuroendocrine Carcinoma 7 31094 -NCIT:C96551 Anal Canal Small Cell Neuroendocrine Carcinoma 7 31095 -NCIT:C5695 Intestinal Neuroendocrine Neoplasm 5 31096 -NCIT:C5803 Small Intestinal Neuroendocrine Neoplasm 6 31097 -NCIT:C96061 Small Intestinal Neuroendocrine Tumor 7 31098 -NCIT:C135080 Duodenal Neuroendocrine Tumor 8 31099 -NCIT:C135075 Duodenal Neuroendocrine Tumor by AJCC v8 Stage 9 31100 -NCIT:C135076 Stage I Duodenal Neuroendocrine Tumor AJCC v8 10 31101 -NCIT:C135077 Stage II Duodenal Neuroendocrine Tumor AJCC v8 10 31102 -NCIT:C135078 Stage III Duodenal Neuroendocrine Tumor AJCC v8 10 31103 -NCIT:C135079 Stage IV Duodenal Neuroendocrine Tumor AJCC v8 10 31104 -NCIT:C160442 Duodenal Neuroendocrine Tumor G2 9 31105 -NCIT:C172672 Duodenal Neuroendocrine Tumor G3 9 31106 -NCIT:C27407 Duodenal Somatostatin-Producing Neuroendocrine Tumor 9 31107 -NCIT:C5731 Duodenal Gastrin-Producing Neuroendocrine Tumor 9 31108 -NCIT:C6425 Duodenal Neuroendocrine Tumor G1 9 31109 -NCIT:C135090 Jejunal Neuroendocrine Tumor 8 31110 -NCIT:C135119 Jejunal Neuroendocrine Tumor by AJCC v8 Stage 9 31111 -NCIT:C135120 Stage I Jejunal Neuroendocrine Tumor AJCC v8 10 31112 -NCIT:C135121 Stage II Jejunal Neuroendocrine Tumor AJCC v8 10 31113 -NCIT:C135122 Stage III Jejunal Neuroendocrine Tumor AJCC v8 10 31114 -NCIT:C135123 Stage IV Jejunal Neuroendocrine Tumor AJCC v8 10 31115 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 9 31116 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 9 31117 -NCIT:C5787 Jejunal Somatostatin-Producing Neuroendocrine Tumor 9 31118 -NCIT:C6429 Jejunal Neuroendocrine Tumor G1 9 31119 -NCIT:C135092 Ileal Neuroendocrine Tumor 8 31120 -NCIT:C135124 Ileal Neuroendocrine Tumor by AJCC v8 Stage 9 31121 -NCIT:C135125 Stage I Ileal Neuroendocrine Tumor AJCC v8 10 31122 -NCIT:C135126 Stage II Ileal Neuroendocrine Tumor AJCC v8 10 31123 -NCIT:C135127 Stage III Ileal Neuroendocrine Tumor AJCC v8 10 31124 -NCIT:C135128 Stage IV Ileal Neuroendocrine Tumor AJCC v8 10 31125 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 9 31126 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 9 31127 -NCIT:C4935 Ileal Neuroendocrine Tumor G1 9 31128 -NCIT:C172664 Small Intestinal Neuroendocrine Tumor G3 8 31129 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 9 31130 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 9 31131 -NCIT:C172672 Duodenal Neuroendocrine Tumor G3 9 31132 -NCIT:C27450 Small Intestinal Gastrin-Producing Neuroendocrine Tumor 8 31133 -NCIT:C5731 Duodenal Gastrin-Producing Neuroendocrine Tumor 9 31134 -NCIT:C27451 Small Intestinal Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 8 31135 -NCIT:C27452 Small Intestinal L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 8 31136 -NCIT:C27453 Small Intestinal Somatostatin-Producing Neuroendocrine Tumor 8 31137 -NCIT:C27407 Duodenal Somatostatin-Producing Neuroendocrine Tumor 9 31138 -NCIT:C5787 Jejunal Somatostatin-Producing Neuroendocrine Tumor 9 31139 -NCIT:C27455 Small Intestinal VIP-Producing Neuroendocrine Tumor 8 31140 -NCIT:C4638 Small Intestinal Neuroendocrine Tumor G1 8 31141 -NCIT:C4935 Ileal Neuroendocrine Tumor G1 9 31142 -NCIT:C6425 Duodenal Neuroendocrine Tumor G1 9 31143 -NCIT:C6429 Jejunal Neuroendocrine Tumor G1 9 31144 -NCIT:C96067 Small Intestinal Neuroendocrine Tumor G2 8 31145 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 9 31146 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 9 31147 -NCIT:C160442 Duodenal Neuroendocrine Tumor G2 9 31148 -NCIT:C96073 Small Intestinal Composite Gangliocytoma/Neuroma and Neuroendocrine Tumor 8 31149 -NCIT:C96064 Small Intestinal Neuroendocrine Carcinoma 7 31150 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 31151 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 31152 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 31153 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 31154 -NCIT:C27449 Small Intestinal Small Cell Neuroendocrine Carcinoma 8 31155 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 31156 -NCIT:C96065 Small Intestinal Large Cell Neuroendocrine Carcinoma 8 31157 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 31158 -NCIT:C96062 Intestinal Neuroendocrine Tumor 6 31159 -NCIT:C172670 Intestinal Neuroendocrine Tumor G3 7 31160 -NCIT:C172664 Small Intestinal Neuroendocrine Tumor G3 8 31161 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 9 31162 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 9 31163 -NCIT:C172672 Duodenal Neuroendocrine Tumor G3 9 31164 -NCIT:C172701 Colorectal Neuroendocrine Tumor G3 8 31165 -NCIT:C172702 Colon Neuroendocrine Tumor G3 9 31166 -NCIT:C172703 Rectal Neuroendocrine Tumor G3 9 31167 -NCIT:C4637 Intestinal Neuroendocrine Tumor G1 7 31168 -NCIT:C4638 Small Intestinal Neuroendocrine Tumor G1 8 31169 -NCIT:C4935 Ileal Neuroendocrine Tumor G1 9 31170 -NCIT:C6425 Duodenal Neuroendocrine Tumor G1 9 31171 -NCIT:C6429 Jejunal Neuroendocrine Tumor G1 9 31172 -NCIT:C6424 Meckel Diverticulum Neuroendocrine Tumor G1 8 31173 -NCIT:C96160 Colorectal Neuroendocrine Tumor G1 8 31174 -NCIT:C5497 Colon Neuroendocrine Tumor G1 9 31175 -NCIT:C188043 Sigmoid Colon Neuroendocrine Tumor G1 10 31176 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 10 31177 -NCIT:C6426 Transverse Colon Neuroendocrine Tumor G1 10 31178 -NCIT:C6427 Ascending Colon Neuroendocrine Tumor G1 10 31179 -NCIT:C6428 Descending Colon Neuroendocrine Tumor G1 10 31180 -NCIT:C5547 Rectal Neuroendocrine Tumor G1 9 31181 -NCIT:C5325 Intestinal Composite Gangliocytoma/Neuroma and Neuroendocrine Tumor 7 31182 -NCIT:C96073 Small Intestinal Composite Gangliocytoma/Neuroma and Neuroendocrine Tumor 8 31183 -NCIT:C96061 Small Intestinal Neuroendocrine Tumor 7 31184 -NCIT:C135080 Duodenal Neuroendocrine Tumor 8 31185 -NCIT:C135075 Duodenal Neuroendocrine Tumor by AJCC v8 Stage 9 31186 -NCIT:C135076 Stage I Duodenal Neuroendocrine Tumor AJCC v8 10 31187 -NCIT:C135077 Stage II Duodenal Neuroendocrine Tumor AJCC v8 10 31188 -NCIT:C135078 Stage III Duodenal Neuroendocrine Tumor AJCC v8 10 31189 -NCIT:C135079 Stage IV Duodenal Neuroendocrine Tumor AJCC v8 10 31190 -NCIT:C160442 Duodenal Neuroendocrine Tumor G2 9 31191 -NCIT:C172672 Duodenal Neuroendocrine Tumor G3 9 31192 -NCIT:C27407 Duodenal Somatostatin-Producing Neuroendocrine Tumor 9 31193 -NCIT:C5731 Duodenal Gastrin-Producing Neuroendocrine Tumor 9 31194 -NCIT:C6425 Duodenal Neuroendocrine Tumor G1 9 31195 -NCIT:C135090 Jejunal Neuroendocrine Tumor 8 31196 -NCIT:C135119 Jejunal Neuroendocrine Tumor by AJCC v8 Stage 9 31197 -NCIT:C135120 Stage I Jejunal Neuroendocrine Tumor AJCC v8 10 31198 -NCIT:C135121 Stage II Jejunal Neuroendocrine Tumor AJCC v8 10 31199 -NCIT:C135122 Stage III Jejunal Neuroendocrine Tumor AJCC v8 10 31200 -NCIT:C135123 Stage IV Jejunal Neuroendocrine Tumor AJCC v8 10 31201 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 9 31202 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 9 31203 -NCIT:C5787 Jejunal Somatostatin-Producing Neuroendocrine Tumor 9 31204 -NCIT:C6429 Jejunal Neuroendocrine Tumor G1 9 31205 -NCIT:C135092 Ileal Neuroendocrine Tumor 8 31206 -NCIT:C135124 Ileal Neuroendocrine Tumor by AJCC v8 Stage 9 31207 -NCIT:C135125 Stage I Ileal Neuroendocrine Tumor AJCC v8 10 31208 -NCIT:C135126 Stage II Ileal Neuroendocrine Tumor AJCC v8 10 31209 -NCIT:C135127 Stage III Ileal Neuroendocrine Tumor AJCC v8 10 31210 -NCIT:C135128 Stage IV Ileal Neuroendocrine Tumor AJCC v8 10 31211 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 9 31212 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 9 31213 -NCIT:C4935 Ileal Neuroendocrine Tumor G1 9 31214 -NCIT:C172664 Small Intestinal Neuroendocrine Tumor G3 8 31215 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 9 31216 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 9 31217 -NCIT:C172672 Duodenal Neuroendocrine Tumor G3 9 31218 -NCIT:C27450 Small Intestinal Gastrin-Producing Neuroendocrine Tumor 8 31219 -NCIT:C5731 Duodenal Gastrin-Producing Neuroendocrine Tumor 9 31220 -NCIT:C27451 Small Intestinal Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 8 31221 -NCIT:C27452 Small Intestinal L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 8 31222 -NCIT:C27453 Small Intestinal Somatostatin-Producing Neuroendocrine Tumor 8 31223 -NCIT:C27407 Duodenal Somatostatin-Producing Neuroendocrine Tumor 9 31224 -NCIT:C5787 Jejunal Somatostatin-Producing Neuroendocrine Tumor 9 31225 -NCIT:C27455 Small Intestinal VIP-Producing Neuroendocrine Tumor 8 31226 -NCIT:C4638 Small Intestinal Neuroendocrine Tumor G1 8 31227 -NCIT:C4935 Ileal Neuroendocrine Tumor G1 9 31228 -NCIT:C6425 Duodenal Neuroendocrine Tumor G1 9 31229 -NCIT:C6429 Jejunal Neuroendocrine Tumor G1 9 31230 -NCIT:C96067 Small Intestinal Neuroendocrine Tumor G2 8 31231 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 9 31232 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 9 31233 -NCIT:C160442 Duodenal Neuroendocrine Tumor G2 9 31234 -NCIT:C96073 Small Intestinal Composite Gangliocytoma/Neuroma and Neuroendocrine Tumor 8 31235 -NCIT:C96159 Colorectal Neuroendocrine Tumor 7 31236 -NCIT:C135205 Colorectal Neuroendocrine Tumor by AJCC v8 Stage 8 31237 -NCIT:C135206 Stage I Colorectal Neuroendocrine Tumor AJCC v8 9 31238 -NCIT:C135368 Stage I Colon Neuroendocrine Tumor AJCC v8 10 31239 -NCIT:C135528 Stage I Rectal Neuroendocrine Tumor AJCC v8 10 31240 -NCIT:C135207 Stage IIA Colorectal Neuroendocrine Tumor AJCC v8 9 31241 -NCIT:C135369 Stage IIA Colon Neuroendocrine Tumor AJCC v8 10 31242 -NCIT:C135529 Stage IIA Rectal Neuroendocrine Tumor AJCC v8 10 31243 -NCIT:C135208 Stage IIB Colorectal Neuroendocrine Tumor AJCC v8 9 31244 -NCIT:C135370 Stage IIB Colon Neuroendocrine Tumor AJCC v8 10 31245 -NCIT:C135530 Stage IIB Rectal Neuroendocrine Tumor AJCC v8 10 31246 -NCIT:C135209 Stage IIIA Colorectal Neuroendocrine Tumor AJCC v8 9 31247 -NCIT:C135524 Stage IIIA Colon Neuroendocrine Tumor AJCC v8 10 31248 -NCIT:C135531 Stage IIIA Rectal Neuroendocrine Tumor AJCC v8 10 31249 -NCIT:C135210 Stage IIIB Colorectal Neuroendocrine Tumor AJCC v8 9 31250 -NCIT:C135525 Stage IIIB Colon Neuroendocrine Tumor AJCC v8 10 31251 -NCIT:C135532 Stage IIIB Rectal Neuroendocrine Tumor AJCC v8 10 31252 -NCIT:C135211 Stage IV Colorectal Neuroendocrine Tumor AJCC v8 9 31253 -NCIT:C135526 Stage IV Colon Neuroendocrine Tumor AJCC v8 10 31254 -NCIT:C135533 Stage IV Rectal Neuroendocrine Tumor AJCC v8 10 31255 -NCIT:C135214 Colon Neuroendocrine Tumor by AJCC v8 Stage 9 31256 -NCIT:C135368 Stage I Colon Neuroendocrine Tumor AJCC v8 10 31257 -NCIT:C135369 Stage IIA Colon Neuroendocrine Tumor AJCC v8 10 31258 -NCIT:C135370 Stage IIB Colon Neuroendocrine Tumor AJCC v8 10 31259 -NCIT:C135524 Stage IIIA Colon Neuroendocrine Tumor AJCC v8 10 31260 -NCIT:C135525 Stage IIIB Colon Neuroendocrine Tumor AJCC v8 10 31261 -NCIT:C135526 Stage IV Colon Neuroendocrine Tumor AJCC v8 10 31262 -NCIT:C135527 Rectal Neuroendocrine Tumor by AJCC v8 Stage 9 31263 -NCIT:C135528 Stage I Rectal Neuroendocrine Tumor AJCC v8 10 31264 -NCIT:C135529 Stage IIA Rectal Neuroendocrine Tumor AJCC v8 10 31265 -NCIT:C135530 Stage IIB Rectal Neuroendocrine Tumor AJCC v8 10 31266 -NCIT:C135531 Stage IIIA Rectal Neuroendocrine Tumor AJCC v8 10 31267 -NCIT:C135532 Stage IIIB Rectal Neuroendocrine Tumor AJCC v8 10 31268 -NCIT:C135533 Stage IV Rectal Neuroendocrine Tumor AJCC v8 10 31269 -NCIT:C135212 Colon Neuroendocrine Tumor 8 31270 -NCIT:C135214 Colon Neuroendocrine Tumor by AJCC v8 Stage 9 31271 -NCIT:C135368 Stage I Colon Neuroendocrine Tumor AJCC v8 10 31272 -NCIT:C135369 Stage IIA Colon Neuroendocrine Tumor AJCC v8 10 31273 -NCIT:C135370 Stage IIB Colon Neuroendocrine Tumor AJCC v8 10 31274 -NCIT:C135524 Stage IIIA Colon Neuroendocrine Tumor AJCC v8 10 31275 -NCIT:C135525 Stage IIIB Colon Neuroendocrine Tumor AJCC v8 10 31276 -NCIT:C135526 Stage IV Colon Neuroendocrine Tumor AJCC v8 10 31277 -NCIT:C160443 Colon Neuroendocrine Tumor G2 9 31278 -NCIT:C172702 Colon Neuroendocrine Tumor G3 9 31279 -NCIT:C27446 Colon Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 9 31280 -NCIT:C27447 Colon L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 9 31281 -NCIT:C5497 Colon Neuroendocrine Tumor G1 9 31282 -NCIT:C188043 Sigmoid Colon Neuroendocrine Tumor G1 10 31283 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 10 31284 -NCIT:C6426 Transverse Colon Neuroendocrine Tumor G1 10 31285 -NCIT:C6427 Ascending Colon Neuroendocrine Tumor G1 10 31286 -NCIT:C6428 Descending Colon Neuroendocrine Tumor G1 10 31287 -NCIT:C135213 Rectal Neuroendocrine Tumor 8 31288 -NCIT:C135527 Rectal Neuroendocrine Tumor by AJCC v8 Stage 9 31289 -NCIT:C135528 Stage I Rectal Neuroendocrine Tumor AJCC v8 10 31290 -NCIT:C135529 Stage IIA Rectal Neuroendocrine Tumor AJCC v8 10 31291 -NCIT:C135530 Stage IIB Rectal Neuroendocrine Tumor AJCC v8 10 31292 -NCIT:C135531 Stage IIIA Rectal Neuroendocrine Tumor AJCC v8 10 31293 -NCIT:C135532 Stage IIIB Rectal Neuroendocrine Tumor AJCC v8 10 31294 -NCIT:C135533 Stage IV Rectal Neuroendocrine Tumor AJCC v8 10 31295 -NCIT:C160451 Rectal Neuroendocrine Tumor G2 9 31296 -NCIT:C172703 Rectal Neuroendocrine Tumor G3 9 31297 -NCIT:C5547 Rectal Neuroendocrine Tumor G1 9 31298 -NCIT:C172701 Colorectal Neuroendocrine Tumor G3 8 31299 -NCIT:C172702 Colon Neuroendocrine Tumor G3 9 31300 -NCIT:C172703 Rectal Neuroendocrine Tumor G3 9 31301 -NCIT:C96160 Colorectal Neuroendocrine Tumor G1 8 31302 -NCIT:C5497 Colon Neuroendocrine Tumor G1 9 31303 -NCIT:C188043 Sigmoid Colon Neuroendocrine Tumor G1 10 31304 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 10 31305 -NCIT:C6426 Transverse Colon Neuroendocrine Tumor G1 10 31306 -NCIT:C6427 Ascending Colon Neuroendocrine Tumor G1 10 31307 -NCIT:C6428 Descending Colon Neuroendocrine Tumor G1 10 31308 -NCIT:C5547 Rectal Neuroendocrine Tumor G1 9 31309 -NCIT:C96161 Colorectal L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 8 31310 -NCIT:C27447 Colon L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 9 31311 -NCIT:C96162 Colorectal Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 8 31312 -NCIT:C27446 Colon Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 9 31313 -NCIT:C96163 Colorectal Neuroendocrine Tumor G2 8 31314 -NCIT:C160443 Colon Neuroendocrine Tumor G2 9 31315 -NCIT:C160451 Rectal Neuroendocrine Tumor G2 9 31316 -NCIT:C96165 Intestinal Neuroendocrine Tumor G2 7 31317 -NCIT:C96067 Small Intestinal Neuroendocrine Tumor G2 8 31318 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 9 31319 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 9 31320 -NCIT:C160442 Duodenal Neuroendocrine Tumor G2 9 31321 -NCIT:C96163 Colorectal Neuroendocrine Tumor G2 8 31322 -NCIT:C160443 Colon Neuroendocrine Tumor G2 9 31323 -NCIT:C160451 Rectal Neuroendocrine Tumor G2 9 31324 -NCIT:C96063 Intestinal Neuroendocrine Carcinoma 6 31325 -NCIT:C96064 Small Intestinal Neuroendocrine Carcinoma 7 31326 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 31327 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 31328 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 31329 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 31330 -NCIT:C27449 Small Intestinal Small Cell Neuroendocrine Carcinoma 8 31331 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 31332 -NCIT:C96065 Small Intestinal Large Cell Neuroendocrine Carcinoma 8 31333 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 31334 -NCIT:C96156 Colorectal Neuroendocrine Carcinoma 7 31335 -NCIT:C43587 Colorectal Small Cell Neuroendocrine Carcinoma 8 31336 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 9 31337 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 9 31338 -NCIT:C96157 Colorectal Large Cell Neuroendocrine Carcinoma 8 31339 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 9 31340 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 9 31341 -NCIT:C96152 Colorectal Neuroendocrine Neoplasm 6 31342 -NCIT:C5697 Colon Neuroendocrine Neoplasm 7 31343 -NCIT:C135212 Colon Neuroendocrine Tumor 8 31344 -NCIT:C135214 Colon Neuroendocrine Tumor by AJCC v8 Stage 9 31345 -NCIT:C135368 Stage I Colon Neuroendocrine Tumor AJCC v8 10 31346 -NCIT:C135369 Stage IIA Colon Neuroendocrine Tumor AJCC v8 10 31347 -NCIT:C135370 Stage IIB Colon Neuroendocrine Tumor AJCC v8 10 31348 -NCIT:C135524 Stage IIIA Colon Neuroendocrine Tumor AJCC v8 10 31349 -NCIT:C135525 Stage IIIB Colon Neuroendocrine Tumor AJCC v8 10 31350 -NCIT:C135526 Stage IV Colon Neuroendocrine Tumor AJCC v8 10 31351 -NCIT:C160443 Colon Neuroendocrine Tumor G2 9 31352 -NCIT:C172702 Colon Neuroendocrine Tumor G3 9 31353 -NCIT:C27446 Colon Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 9 31354 -NCIT:C27447 Colon L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 9 31355 -NCIT:C5497 Colon Neuroendocrine Tumor G1 9 31356 -NCIT:C188043 Sigmoid Colon Neuroendocrine Tumor G1 10 31357 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 10 31358 -NCIT:C6426 Transverse Colon Neuroendocrine Tumor G1 10 31359 -NCIT:C6427 Ascending Colon Neuroendocrine Tumor G1 10 31360 -NCIT:C6428 Descending Colon Neuroendocrine Tumor G1 10 31361 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 8 31362 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 8 31363 -NCIT:C5698 Rectal Neuroendocrine Neoplasm 7 31364 -NCIT:C135213 Rectal Neuroendocrine Tumor 8 31365 -NCIT:C135527 Rectal Neuroendocrine Tumor by AJCC v8 Stage 9 31366 -NCIT:C135528 Stage I Rectal Neuroendocrine Tumor AJCC v8 10 31367 -NCIT:C135529 Stage IIA Rectal Neuroendocrine Tumor AJCC v8 10 31368 -NCIT:C135530 Stage IIB Rectal Neuroendocrine Tumor AJCC v8 10 31369 -NCIT:C135531 Stage IIIA Rectal Neuroendocrine Tumor AJCC v8 10 31370 -NCIT:C135532 Stage IIIB Rectal Neuroendocrine Tumor AJCC v8 10 31371 -NCIT:C135533 Stage IV Rectal Neuroendocrine Tumor AJCC v8 10 31372 -NCIT:C160451 Rectal Neuroendocrine Tumor G2 9 31373 -NCIT:C172703 Rectal Neuroendocrine Tumor G3 9 31374 -NCIT:C5547 Rectal Neuroendocrine Tumor G1 9 31375 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 8 31376 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 8 31377 -NCIT:C96156 Colorectal Neuroendocrine Carcinoma 7 31378 -NCIT:C43587 Colorectal Small Cell Neuroendocrine Carcinoma 8 31379 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 9 31380 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 9 31381 -NCIT:C96157 Colorectal Large Cell Neuroendocrine Carcinoma 8 31382 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 9 31383 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 9 31384 -NCIT:C96159 Colorectal Neuroendocrine Tumor 7 31385 -NCIT:C135205 Colorectal Neuroendocrine Tumor by AJCC v8 Stage 8 31386 -NCIT:C135206 Stage I Colorectal Neuroendocrine Tumor AJCC v8 9 31387 -NCIT:C135368 Stage I Colon Neuroendocrine Tumor AJCC v8 10 31388 -NCIT:C135528 Stage I Rectal Neuroendocrine Tumor AJCC v8 10 31389 -NCIT:C135207 Stage IIA Colorectal Neuroendocrine Tumor AJCC v8 9 31390 -NCIT:C135369 Stage IIA Colon Neuroendocrine Tumor AJCC v8 10 31391 -NCIT:C135529 Stage IIA Rectal Neuroendocrine Tumor AJCC v8 10 31392 -NCIT:C135208 Stage IIB Colorectal Neuroendocrine Tumor AJCC v8 9 31393 -NCIT:C135370 Stage IIB Colon Neuroendocrine Tumor AJCC v8 10 31394 -NCIT:C135530 Stage IIB Rectal Neuroendocrine Tumor AJCC v8 10 31395 -NCIT:C135209 Stage IIIA Colorectal Neuroendocrine Tumor AJCC v8 9 31396 -NCIT:C135524 Stage IIIA Colon Neuroendocrine Tumor AJCC v8 10 31397 -NCIT:C135531 Stage IIIA Rectal Neuroendocrine Tumor AJCC v8 10 31398 -NCIT:C135210 Stage IIIB Colorectal Neuroendocrine Tumor AJCC v8 9 31399 -NCIT:C135525 Stage IIIB Colon Neuroendocrine Tumor AJCC v8 10 31400 -NCIT:C135532 Stage IIIB Rectal Neuroendocrine Tumor AJCC v8 10 31401 -NCIT:C135211 Stage IV Colorectal Neuroendocrine Tumor AJCC v8 9 31402 -NCIT:C135526 Stage IV Colon Neuroendocrine Tumor AJCC v8 10 31403 -NCIT:C135533 Stage IV Rectal Neuroendocrine Tumor AJCC v8 10 31404 -NCIT:C135214 Colon Neuroendocrine Tumor by AJCC v8 Stage 9 31405 -NCIT:C135368 Stage I Colon Neuroendocrine Tumor AJCC v8 10 31406 -NCIT:C135369 Stage IIA Colon Neuroendocrine Tumor AJCC v8 10 31407 -NCIT:C135370 Stage IIB Colon Neuroendocrine Tumor AJCC v8 10 31408 -NCIT:C135524 Stage IIIA Colon Neuroendocrine Tumor AJCC v8 10 31409 -NCIT:C135525 Stage IIIB Colon Neuroendocrine Tumor AJCC v8 10 31410 -NCIT:C135526 Stage IV Colon Neuroendocrine Tumor AJCC v8 10 31411 -NCIT:C135527 Rectal Neuroendocrine Tumor by AJCC v8 Stage 9 31412 -NCIT:C135528 Stage I Rectal Neuroendocrine Tumor AJCC v8 10 31413 -NCIT:C135529 Stage IIA Rectal Neuroendocrine Tumor AJCC v8 10 31414 -NCIT:C135530 Stage IIB Rectal Neuroendocrine Tumor AJCC v8 10 31415 -NCIT:C135531 Stage IIIA Rectal Neuroendocrine Tumor AJCC v8 10 31416 -NCIT:C135532 Stage IIIB Rectal Neuroendocrine Tumor AJCC v8 10 31417 -NCIT:C135533 Stage IV Rectal Neuroendocrine Tumor AJCC v8 10 31418 -NCIT:C135212 Colon Neuroendocrine Tumor 8 31419 -NCIT:C135214 Colon Neuroendocrine Tumor by AJCC v8 Stage 9 31420 -NCIT:C135368 Stage I Colon Neuroendocrine Tumor AJCC v8 10 31421 -NCIT:C135369 Stage IIA Colon Neuroendocrine Tumor AJCC v8 10 31422 -NCIT:C135370 Stage IIB Colon Neuroendocrine Tumor AJCC v8 10 31423 -NCIT:C135524 Stage IIIA Colon Neuroendocrine Tumor AJCC v8 10 31424 -NCIT:C135525 Stage IIIB Colon Neuroendocrine Tumor AJCC v8 10 31425 -NCIT:C135526 Stage IV Colon Neuroendocrine Tumor AJCC v8 10 31426 -NCIT:C160443 Colon Neuroendocrine Tumor G2 9 31427 -NCIT:C172702 Colon Neuroendocrine Tumor G3 9 31428 -NCIT:C27446 Colon Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 9 31429 -NCIT:C27447 Colon L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 9 31430 -NCIT:C5497 Colon Neuroendocrine Tumor G1 9 31431 -NCIT:C188043 Sigmoid Colon Neuroendocrine Tumor G1 10 31432 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 10 31433 -NCIT:C6426 Transverse Colon Neuroendocrine Tumor G1 10 31434 -NCIT:C6427 Ascending Colon Neuroendocrine Tumor G1 10 31435 -NCIT:C6428 Descending Colon Neuroendocrine Tumor G1 10 31436 -NCIT:C135213 Rectal Neuroendocrine Tumor 8 31437 -NCIT:C135527 Rectal Neuroendocrine Tumor by AJCC v8 Stage 9 31438 -NCIT:C135528 Stage I Rectal Neuroendocrine Tumor AJCC v8 10 31439 -NCIT:C135529 Stage IIA Rectal Neuroendocrine Tumor AJCC v8 10 31440 -NCIT:C135530 Stage IIB Rectal Neuroendocrine Tumor AJCC v8 10 31441 -NCIT:C135531 Stage IIIA Rectal Neuroendocrine Tumor AJCC v8 10 31442 -NCIT:C135532 Stage IIIB Rectal Neuroendocrine Tumor AJCC v8 10 31443 -NCIT:C135533 Stage IV Rectal Neuroendocrine Tumor AJCC v8 10 31444 -NCIT:C160451 Rectal Neuroendocrine Tumor G2 9 31445 -NCIT:C172703 Rectal Neuroendocrine Tumor G3 9 31446 -NCIT:C5547 Rectal Neuroendocrine Tumor G1 9 31447 -NCIT:C172701 Colorectal Neuroendocrine Tumor G3 8 31448 -NCIT:C172702 Colon Neuroendocrine Tumor G3 9 31449 -NCIT:C172703 Rectal Neuroendocrine Tumor G3 9 31450 -NCIT:C96160 Colorectal Neuroendocrine Tumor G1 8 31451 -NCIT:C5497 Colon Neuroendocrine Tumor G1 9 31452 -NCIT:C188043 Sigmoid Colon Neuroendocrine Tumor G1 10 31453 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 10 31454 -NCIT:C6426 Transverse Colon Neuroendocrine Tumor G1 10 31455 -NCIT:C6427 Ascending Colon Neuroendocrine Tumor G1 10 31456 -NCIT:C6428 Descending Colon Neuroendocrine Tumor G1 10 31457 -NCIT:C5547 Rectal Neuroendocrine Tumor G1 9 31458 -NCIT:C96161 Colorectal L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 8 31459 -NCIT:C27447 Colon L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 9 31460 -NCIT:C96162 Colorectal Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 8 31461 -NCIT:C27446 Colon Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 9 31462 -NCIT:C96163 Colorectal Neuroendocrine Tumor G2 8 31463 -NCIT:C160443 Colon Neuroendocrine Tumor G2 9 31464 -NCIT:C160451 Rectal Neuroendocrine Tumor G2 9 31465 -NCIT:C5696 Gastric Neuroendocrine Neoplasm 5 31466 -NCIT:C95871 Gastric Neuroendocrine Tumor 6 31467 -NCIT:C135045 Gastric Neuroendocrine Tumor by AJCC v8 Stage 7 31468 -NCIT:C135046 Stage I Gastric Neuroendocrine Tumor AJCC v8 8 31469 -NCIT:C135047 Stage II Gastric Neuroendocrine Tumor AJCC v8 8 31470 -NCIT:C135048 Stage III Gastric Neuroendocrine Tumor AJCC v8 8 31471 -NCIT:C135049 Stage IV Gastric Neuroendocrine Tumor AJCC v8 8 31472 -NCIT:C172662 Gastric Neuroendocrine Tumor G3 7 31473 -NCIT:C27443 Gastric Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 7 31474 -NCIT:C27444 Gastric Gastrin-Producing Neuroendocrine Tumor 7 31475 -NCIT:C4635 Gastric Neuroendocrine Tumor G1 7 31476 -NCIT:C95880 Gastric Neuroendocrine Tumor G2 7 31477 -NCIT:C95884 Gastric Neuroendocrine Carcinoma 6 31478 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 7 31479 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 31480 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 31481 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 31482 -NCIT:C6764 Gastric Small Cell Neuroendocrine Carcinoma 7 31483 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 31484 -NCIT:C95885 Gastric Large Cell Neuroendocrine Carcinoma 7 31485 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 31486 -NCIT:C5821 Esophageal Neuroendocrine Neoplasm 5 31487 -NCIT:C95616 Esophageal Neuroendocrine Tumor 6 31488 -NCIT:C172661 Esophageal Neuroendocrine Tumor G3 7 31489 -NCIT:C5820 Esophageal Neuroendocrine Tumor G1 7 31490 -NCIT:C95617 Esophageal Neuroendocrine Tumor G2 7 31491 -NCIT:C95619 Esophageal Neuroendocrine Carcinoma 6 31492 -NCIT:C6762 Esophageal Small Cell Neuroendocrine Carcinoma 7 31493 -NCIT:C95620 Esophageal Large Cell Neuroendocrine Carcinoma 7 31494 -NCIT:C60709 Appendix Neuroendocrine Neoplasm 5 31495 -NCIT:C96422 Appendix Neuroendocrine Tumor 6 31496 -NCIT:C135155 Appendix Neuroendocrine Tumor by AJCC v7 Stage 7 31497 -NCIT:C87809 Stage I Appendix Neuroendocrine Tumor AJCC v7 8 31498 -NCIT:C87810 Stage II Appendix Neuroendocrine Tumor AJCC v7 8 31499 -NCIT:C87811 Stage III Appendix Neuroendocrine Tumor AJCC v7 8 31500 -NCIT:C87812 Stage IV Appendix Neuroendocrine Tumor AJCC v7 8 31501 -NCIT:C135156 Appendix Neuroendocrine Tumor by AJCC v8 Stage 7 31502 -NCIT:C135157 Stage I Appendix Neuroendocrine Tumor AJCC v8 8 31503 -NCIT:C135158 Stage II Appendix Neuroendocrine Tumor AJCC v8 8 31504 -NCIT:C135159 Stage III Appendix Neuroendocrine Tumor AJCC v8 8 31505 -NCIT:C135160 Stage IV Appendix Neuroendocrine Tumor AJCC v8 8 31506 -NCIT:C172666 Appendix Neuroendocrine Tumor G3 7 31507 -NCIT:C190029 Childhood Appendix Neuroendocrine Tumor 7 31508 -NCIT:C27445 Appendix L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 7 31509 -NCIT:C4138 Appendix Neuroendocrine Tumor G1 7 31510 -NCIT:C43565 Appendix Tubular Carcinoid 7 31511 -NCIT:C96423 Appendix Neuroendocrine Tumor G2 7 31512 -NCIT:C96424 Appendix Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 7 31513 -NCIT:C96425 Appendix Neuroendocrine Carcinoma 6 31514 -NCIT:C43555 Appendix Small Cell Neuroendocrine Carcinoma 7 31515 -NCIT:C96426 Appendix Large Cell Neuroendocrine Carcinoma 7 31516 -NCIT:C95404 Digestive System Neuroendocrine Tumor 5 31517 -NCIT:C135129 Digestive System Neuroendocrine Tumor by AJCC v7 Stage 6 31518 -NCIT:C135155 Appendix Neuroendocrine Tumor by AJCC v7 Stage 7 31519 -NCIT:C87809 Stage I Appendix Neuroendocrine Tumor AJCC v7 8 31520 -NCIT:C87810 Stage II Appendix Neuroendocrine Tumor AJCC v7 8 31521 -NCIT:C87811 Stage III Appendix Neuroendocrine Tumor AJCC v7 8 31522 -NCIT:C87812 Stage IV Appendix Neuroendocrine Tumor AJCC v7 8 31523 -NCIT:C88027 Stage 0 Digestive System Neuroendocrine Tumor AJCC v7 7 31524 -NCIT:C88028 Stage I Digestive System Neuroendocrine Tumor AJCC v7 7 31525 -NCIT:C88029 Stage IIA Digestive System Neuroendocrine Tumor AJCC v7 7 31526 -NCIT:C88030 Stage IIB Digestive System Neuroendocrine Tumor AJCC v7 7 31527 -NCIT:C88031 Stage IIIA Digestive System Neuroendocrine Tumor AJCC v7 7 31528 -NCIT:C88032 Stage IIIB Digestive System Neuroendocrine Tumor AJCC v7 7 31529 -NCIT:C88033 Stage IV Digestive System Neuroendocrine Tumor AJCC v7 7 31530 -NCIT:C167327 Midgut Neuroendocrine Tumor 6 31531 -NCIT:C135090 Jejunal Neuroendocrine Tumor 7 31532 -NCIT:C135119 Jejunal Neuroendocrine Tumor by AJCC v8 Stage 8 31533 -NCIT:C135120 Stage I Jejunal Neuroendocrine Tumor AJCC v8 9 31534 -NCIT:C135121 Stage II Jejunal Neuroendocrine Tumor AJCC v8 9 31535 -NCIT:C135122 Stage III Jejunal Neuroendocrine Tumor AJCC v8 9 31536 -NCIT:C135123 Stage IV Jejunal Neuroendocrine Tumor AJCC v8 9 31537 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 8 31538 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 8 31539 -NCIT:C5787 Jejunal Somatostatin-Producing Neuroendocrine Tumor 8 31540 -NCIT:C6429 Jejunal Neuroendocrine Tumor G1 8 31541 -NCIT:C135092 Ileal Neuroendocrine Tumor 7 31542 -NCIT:C135124 Ileal Neuroendocrine Tumor by AJCC v8 Stage 8 31543 -NCIT:C135125 Stage I Ileal Neuroendocrine Tumor AJCC v8 9 31544 -NCIT:C135126 Stage II Ileal Neuroendocrine Tumor AJCC v8 9 31545 -NCIT:C135127 Stage III Ileal Neuroendocrine Tumor AJCC v8 9 31546 -NCIT:C135128 Stage IV Ileal Neuroendocrine Tumor AJCC v8 9 31547 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 8 31548 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 8 31549 -NCIT:C4935 Ileal Neuroendocrine Tumor G1 8 31550 -NCIT:C167328 Midgut Neuroendocrine Tumor G2 7 31551 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 8 31552 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 8 31553 -NCIT:C96423 Appendix Neuroendocrine Tumor G2 8 31554 -NCIT:C167329 Metastatic Midgut Neuroendocrine Tumor 7 31555 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 8 31556 -NCIT:C167331 Unresectable Midgut Neuroendocrine Tumor 7 31557 -NCIT:C172669 Midgut Neuroendocrine Tumor G3 7 31558 -NCIT:C172666 Appendix Neuroendocrine Tumor G3 8 31559 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 8 31560 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 8 31561 -NCIT:C6422 Midgut Neuroendocrine Tumor G1 7 31562 -NCIT:C4138 Appendix Neuroendocrine Tumor G1 8 31563 -NCIT:C4935 Ileal Neuroendocrine Tumor G1 8 31564 -NCIT:C5229 Ovarian Carcinoid Tumor 8 31565 -NCIT:C188015 Ovarian Teratoma with Carcinoid Tumor 9 31566 -NCIT:C4292 Strumal Carcinoid 10 31567 -NCIT:C40013 Ovarian Insular Carcinoid Tumor 9 31568 -NCIT:C40014 Ovarian Trabecular Carcinoid Tumor 9 31569 -NCIT:C40015 Ovarian Mucinous Carcinoid Tumor 9 31570 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 8 31571 -NCIT:C6424 Meckel Diverticulum Neuroendocrine Tumor G1 8 31572 -NCIT:C6427 Ascending Colon Neuroendocrine Tumor G1 8 31573 -NCIT:C6429 Jejunal Neuroendocrine Tumor G1 8 31574 -NCIT:C96422 Appendix Neuroendocrine Tumor 7 31575 -NCIT:C135155 Appendix Neuroendocrine Tumor by AJCC v7 Stage 8 31576 -NCIT:C87809 Stage I Appendix Neuroendocrine Tumor AJCC v7 9 31577 -NCIT:C87810 Stage II Appendix Neuroendocrine Tumor AJCC v7 9 31578 -NCIT:C87811 Stage III Appendix Neuroendocrine Tumor AJCC v7 9 31579 -NCIT:C87812 Stage IV Appendix Neuroendocrine Tumor AJCC v7 9 31580 -NCIT:C135156 Appendix Neuroendocrine Tumor by AJCC v8 Stage 8 31581 -NCIT:C135157 Stage I Appendix Neuroendocrine Tumor AJCC v8 9 31582 -NCIT:C135158 Stage II Appendix Neuroendocrine Tumor AJCC v8 9 31583 -NCIT:C135159 Stage III Appendix Neuroendocrine Tumor AJCC v8 9 31584 -NCIT:C135160 Stage IV Appendix Neuroendocrine Tumor AJCC v8 9 31585 -NCIT:C172666 Appendix Neuroendocrine Tumor G3 8 31586 -NCIT:C190029 Childhood Appendix Neuroendocrine Tumor 8 31587 -NCIT:C27445 Appendix L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 8 31588 -NCIT:C4138 Appendix Neuroendocrine Tumor G1 8 31589 -NCIT:C43565 Appendix Tubular Carcinoid 8 31590 -NCIT:C96423 Appendix Neuroendocrine Tumor G2 8 31591 -NCIT:C96424 Appendix Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 8 31592 -NCIT:C172660 Digestive System Neuroendocrine Tumor G3 6 31593 -NCIT:C172661 Esophageal Neuroendocrine Tumor G3 7 31594 -NCIT:C172662 Gastric Neuroendocrine Tumor G3 7 31595 -NCIT:C172669 Midgut Neuroendocrine Tumor G3 7 31596 -NCIT:C172666 Appendix Neuroendocrine Tumor G3 8 31597 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 8 31598 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 8 31599 -NCIT:C172670 Intestinal Neuroendocrine Tumor G3 7 31600 -NCIT:C172664 Small Intestinal Neuroendocrine Tumor G3 8 31601 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 9 31602 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 9 31603 -NCIT:C172672 Duodenal Neuroendocrine Tumor G3 9 31604 -NCIT:C172701 Colorectal Neuroendocrine Tumor G3 8 31605 -NCIT:C172702 Colon Neuroendocrine Tumor G3 9 31606 -NCIT:C172703 Rectal Neuroendocrine Tumor G3 9 31607 -NCIT:C172673 Ampulla of Vater Neuroendocrine Tumor G3 7 31608 -NCIT:C172721 Liver Neuroendocrine Tumor G3 7 31609 -NCIT:C172742 Gallbladder Neuroendocrine Tumor G3 7 31610 -NCIT:C172743 Extrahepatic Bile Duct Neuroendocrine Tumor G3 7 31611 -NCIT:C172814 Pancreatic Neuroendocrine Tumor G3 7 31612 -NCIT:C190076 Childhood Digestive System Neuroendocrine Tumor 6 31613 -NCIT:C190029 Childhood Appendix Neuroendocrine Tumor 7 31614 -NCIT:C26749 VIP-Producing Neuroendocrine Tumor 6 31615 -NCIT:C27454 Pancreatic VIP-Producing Neuroendocrine Tumor 7 31616 -NCIT:C95599 Pancreatic Vipoma 8 31617 -NCIT:C67461 Malignant Pancreatic Vipoma 9 31618 -NCIT:C27455 Small Intestinal VIP-Producing Neuroendocrine Tumor 7 31619 -NCIT:C65189 Malignant Vipoma 7 31620 -NCIT:C67461 Malignant Pancreatic Vipoma 8 31621 -NCIT:C27448 L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 6 31622 -NCIT:C27445 Appendix L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 7 31623 -NCIT:C27452 Small Intestinal L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 7 31624 -NCIT:C96161 Colorectal L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 7 31625 -NCIT:C27447 Colon L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 8 31626 -NCIT:C27720 Pancreatic Neuroendocrine Tumor 6 31627 -NCIT:C135560 Pancreatic Neuroendocrine Tumor by AJCC v8 Stage 7 31628 -NCIT:C135561 Stage I Pancreatic Neuroendocrine Tumor AJCC v8 8 31629 -NCIT:C135562 Stage II Pancreatic Neuroendocrine Tumor AJCC v8 8 31630 -NCIT:C135563 Stage III Pancreatic Neuroendocrine Tumor AJCC v8 8 31631 -NCIT:C135564 Stage IV Pancreatic Neuroendocrine Tumor AJCC v8 8 31632 -NCIT:C156488 Metastatic Pancreatic Neuroendocrine Tumor 7 31633 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 8 31634 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 31635 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 31636 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 8 31637 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 8 31638 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 31639 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 8 31640 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 31641 -NCIT:C172814 Pancreatic Neuroendocrine Tumor G3 7 31642 -NCIT:C190782 Unresectable Pancreatic Neuroendocrine Tumor 7 31643 -NCIT:C27454 Pancreatic VIP-Producing Neuroendocrine Tumor 7 31644 -NCIT:C95599 Pancreatic Vipoma 8 31645 -NCIT:C67461 Malignant Pancreatic Vipoma 9 31646 -NCIT:C27466 Pancreatic ACTH-Producing Neuroendocrine Tumor 7 31647 -NCIT:C28396 Pancreatic Delta Cell Neuroendocrine Tumor 7 31648 -NCIT:C28333 Non-Functioning Pancreatic Delta Cell Neuroendocrine Tumor 8 31649 -NCIT:C8006 Pancreatic Somatostatin-Producing Neuroendocrine Tumor 8 31650 -NCIT:C95595 Pancreatic Somatostatinoma 9 31651 -NCIT:C67369 Malignant Pancreatic Somatostatinoma 10 31652 -NCIT:C3062 Pancreatic Glucagon-Producing Neuroendocrine Tumor 7 31653 -NCIT:C95597 Pancreatic Glucagonoma 8 31654 -NCIT:C65187 Malignant Pancreatic Glucagonoma 9 31655 -NCIT:C3140 Pancreatic Insulin-Producing Neuroendocrine Tumor 7 31656 -NCIT:C95598 Pancreatic Insulinoma 8 31657 -NCIT:C65186 Malignant Pancreatic Insulinoma 9 31658 -NCIT:C4446 Pancreatic Serotonin-Producing Neuroendocrine Tumor 7 31659 -NCIT:C45835 Pancreatic Neuroendocrine Tumor G2 7 31660 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 8 31661 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 31662 -NCIT:C45838 Non-Functioning Pancreatic Neuroendocrine Tumor G2 8 31663 -NCIT:C45841 Functioning Pancreatic Neuroendocrine Tumor G2 8 31664 -NCIT:C45837 Non-Functioning Pancreatic Neuroendocrine Tumor 7 31665 -NCIT:C28333 Non-Functioning Pancreatic Delta Cell Neuroendocrine Tumor 8 31666 -NCIT:C45834 Pancreatic Neuroendocrine Microtumor 8 31667 -NCIT:C45838 Non-Functioning Pancreatic Neuroendocrine Tumor G2 8 31668 -NCIT:C95585 Non-Functioning Pancreatic Neuroendocrine Tumor G1 8 31669 -NCIT:C45840 Functioning Pancreatic Neuroendocrine Tumor 7 31670 -NCIT:C45841 Functioning Pancreatic Neuroendocrine Tumor G2 8 31671 -NCIT:C95595 Pancreatic Somatostatinoma 8 31672 -NCIT:C67369 Malignant Pancreatic Somatostatinoma 9 31673 -NCIT:C95596 Pancreatic Gastrinoma 8 31674 -NCIT:C67458 Malignant Pancreatic Gastrinoma 9 31675 -NCIT:C95597 Pancreatic Glucagonoma 8 31676 -NCIT:C65187 Malignant Pancreatic Glucagonoma 9 31677 -NCIT:C95598 Pancreatic Insulinoma 8 31678 -NCIT:C65186 Malignant Pancreatic Insulinoma 9 31679 -NCIT:C95599 Pancreatic Vipoma 8 31680 -NCIT:C67461 Malignant Pancreatic Vipoma 9 31681 -NCIT:C9069 Pancreatic Gastrin-Producing Neuroendocrine Tumor 7 31682 -NCIT:C95596 Pancreatic Gastrinoma 8 31683 -NCIT:C67458 Malignant Pancreatic Gastrinoma 9 31684 -NCIT:C95584 Pancreatic Neuroendocrine Tumor G1 7 31685 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 8 31686 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 31687 -NCIT:C95585 Non-Functioning Pancreatic Neuroendocrine Tumor G1 8 31688 -NCIT:C3050 Gastrin-Producing Neuroendocrine Tumor 6 31689 -NCIT:C27444 Gastric Gastrin-Producing Neuroendocrine Tumor 7 31690 -NCIT:C27450 Small Intestinal Gastrin-Producing Neuroendocrine Tumor 7 31691 -NCIT:C5731 Duodenal Gastrin-Producing Neuroendocrine Tumor 8 31692 -NCIT:C65188 Malignant Gastrinoma 7 31693 -NCIT:C67458 Malignant Pancreatic Gastrinoma 8 31694 -NCIT:C9069 Pancreatic Gastrin-Producing Neuroendocrine Tumor 7 31695 -NCIT:C95596 Pancreatic Gastrinoma 8 31696 -NCIT:C67458 Malignant Pancreatic Gastrinoma 9 31697 -NCIT:C3379 Somatostatin-Producing Neuroendocrine Tumor 6 31698 -NCIT:C27453 Small Intestinal Somatostatin-Producing Neuroendocrine Tumor 7 31699 -NCIT:C27407 Duodenal Somatostatin-Producing Neuroendocrine Tumor 8 31700 -NCIT:C5787 Jejunal Somatostatin-Producing Neuroendocrine Tumor 8 31701 -NCIT:C65190 Malignant Somatostatinoma 7 31702 -NCIT:C67369 Malignant Pancreatic Somatostatinoma 8 31703 -NCIT:C8006 Pancreatic Somatostatin-Producing Neuroendocrine Tumor 7 31704 -NCIT:C95595 Pancreatic Somatostatinoma 8 31705 -NCIT:C67369 Malignant Pancreatic Somatostatinoma 9 31706 -NCIT:C95988 Ampulla of Vater Somatostatin-Producing Neuroendocrine Tumor 7 31707 -NCIT:C5783 Liver Neuroendocrine Tumor 6 31708 -NCIT:C172719 Liver Neuroendocrine Tumor G1 7 31709 -NCIT:C172720 Liver Neuroendocrine Tumor G2 7 31710 -NCIT:C172721 Liver Neuroendocrine Tumor G3 7 31711 -NCIT:C7709 Digestive System Neuroendocrine Tumor G1 6 31712 -NCIT:C115245 Metastatic Digestive System Neuroendocrine Tumor G1 7 31713 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 8 31714 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 31715 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 8 31716 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 8 31717 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 31718 -NCIT:C172719 Liver Neuroendocrine Tumor G1 7 31719 -NCIT:C179419 Unresectable Digestive System Neuroendocrine Tumor G1 7 31720 -NCIT:C27252 Enterochromaffin-Like Cell Neuroendocrine Tumor G1 7 31721 -NCIT:C4635 Gastric Neuroendocrine Tumor G1 8 31722 -NCIT:C4138 Appendix Neuroendocrine Tumor G1 7 31723 -NCIT:C4637 Intestinal Neuroendocrine Tumor G1 7 31724 -NCIT:C4638 Small Intestinal Neuroendocrine Tumor G1 8 31725 -NCIT:C4935 Ileal Neuroendocrine Tumor G1 9 31726 -NCIT:C6425 Duodenal Neuroendocrine Tumor G1 9 31727 -NCIT:C6429 Jejunal Neuroendocrine Tumor G1 9 31728 -NCIT:C6424 Meckel Diverticulum Neuroendocrine Tumor G1 8 31729 -NCIT:C96160 Colorectal Neuroendocrine Tumor G1 8 31730 -NCIT:C5497 Colon Neuroendocrine Tumor G1 9 31731 -NCIT:C188043 Sigmoid Colon Neuroendocrine Tumor G1 10 31732 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 10 31733 -NCIT:C6426 Transverse Colon Neuroendocrine Tumor G1 10 31734 -NCIT:C6427 Ascending Colon Neuroendocrine Tumor G1 10 31735 -NCIT:C6428 Descending Colon Neuroendocrine Tumor G1 10 31736 -NCIT:C5547 Rectal Neuroendocrine Tumor G1 9 31737 -NCIT:C5820 Esophageal Neuroendocrine Tumor G1 7 31738 -NCIT:C5861 Extrahepatic Bile Duct Neuroendocrine Tumor G1 7 31739 -NCIT:C7861 Localized Digestive System Neuroendocrine Tumor G1 7 31740 -NCIT:C7862 Regional Digestive System Neuroendocrine Tumor G1 7 31741 -NCIT:C7864 Recurrent Digestive System Neuroendocrine Tumor G1 7 31742 -NCIT:C95584 Pancreatic Neuroendocrine Tumor G1 7 31743 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 8 31744 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 31745 -NCIT:C95585 Non-Functioning Pancreatic Neuroendocrine Tumor G1 8 31746 -NCIT:C95982 Ampulla of Vater Neuroendocrine Tumor G1 7 31747 -NCIT:C96543 Anal Canal Neuroendocrine Tumor G1 7 31748 -NCIT:C96924 Gallbladder Neuroendocrine Tumor G1 7 31749 -NCIT:C95616 Esophageal Neuroendocrine Tumor 6 31750 -NCIT:C172661 Esophageal Neuroendocrine Tumor G3 7 31751 -NCIT:C5820 Esophageal Neuroendocrine Tumor G1 7 31752 -NCIT:C95617 Esophageal Neuroendocrine Tumor G2 7 31753 -NCIT:C95871 Gastric Neuroendocrine Tumor 6 31754 -NCIT:C135045 Gastric Neuroendocrine Tumor by AJCC v8 Stage 7 31755 -NCIT:C135046 Stage I Gastric Neuroendocrine Tumor AJCC v8 8 31756 -NCIT:C135047 Stage II Gastric Neuroendocrine Tumor AJCC v8 8 31757 -NCIT:C135048 Stage III Gastric Neuroendocrine Tumor AJCC v8 8 31758 -NCIT:C135049 Stage IV Gastric Neuroendocrine Tumor AJCC v8 8 31759 -NCIT:C172662 Gastric Neuroendocrine Tumor G3 7 31760 -NCIT:C27443 Gastric Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 7 31761 -NCIT:C27444 Gastric Gastrin-Producing Neuroendocrine Tumor 7 31762 -NCIT:C4635 Gastric Neuroendocrine Tumor G1 7 31763 -NCIT:C95880 Gastric Neuroendocrine Tumor G2 7 31764 -NCIT:C95981 Ampulla of Vater Neuroendocrine Tumor 6 31765 -NCIT:C135081 Ampulla of Vater Neuroendocrine Tumor by AJCC v8 Stage 7 31766 -NCIT:C135082 Stage I Ampulla of Vater Neuroendocrine Tumor AJCC v8 8 31767 -NCIT:C135083 Stage II Ampulla of Vater Neuroendocrine Tumor AJCC v8 8 31768 -NCIT:C135084 Stage III Ampulla of Vater Neuroendocrine Tumor AJCC v8 8 31769 -NCIT:C135085 Stage IV Ampulla of Vater Neuroendocrine Tumor AJCC v8 8 31770 -NCIT:C172673 Ampulla of Vater Neuroendocrine Tumor G3 7 31771 -NCIT:C95982 Ampulla of Vater Neuroendocrine Tumor G1 7 31772 -NCIT:C95983 Ampulla of Vater Neuroendocrine Tumor G2 7 31773 -NCIT:C95987 Ampulla of Vater Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 7 31774 -NCIT:C95988 Ampulla of Vater Somatostatin-Producing Neuroendocrine Tumor 7 31775 -NCIT:C95989 Ampulla of Vater Gangliocytic Paraganglioma 7 31776 -NCIT:C96062 Intestinal Neuroendocrine Tumor 6 31777 -NCIT:C172670 Intestinal Neuroendocrine Tumor G3 7 31778 -NCIT:C172664 Small Intestinal Neuroendocrine Tumor G3 8 31779 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 9 31780 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 9 31781 -NCIT:C172672 Duodenal Neuroendocrine Tumor G3 9 31782 -NCIT:C172701 Colorectal Neuroendocrine Tumor G3 8 31783 -NCIT:C172702 Colon Neuroendocrine Tumor G3 9 31784 -NCIT:C172703 Rectal Neuroendocrine Tumor G3 9 31785 -NCIT:C4637 Intestinal Neuroendocrine Tumor G1 7 31786 -NCIT:C4638 Small Intestinal Neuroendocrine Tumor G1 8 31787 -NCIT:C4935 Ileal Neuroendocrine Tumor G1 9 31788 -NCIT:C6425 Duodenal Neuroendocrine Tumor G1 9 31789 -NCIT:C6429 Jejunal Neuroendocrine Tumor G1 9 31790 -NCIT:C6424 Meckel Diverticulum Neuroendocrine Tumor G1 8 31791 -NCIT:C96160 Colorectal Neuroendocrine Tumor G1 8 31792 -NCIT:C5497 Colon Neuroendocrine Tumor G1 9 31793 -NCIT:C188043 Sigmoid Colon Neuroendocrine Tumor G1 10 31794 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 10 31795 -NCIT:C6426 Transverse Colon Neuroendocrine Tumor G1 10 31796 -NCIT:C6427 Ascending Colon Neuroendocrine Tumor G1 10 31797 -NCIT:C6428 Descending Colon Neuroendocrine Tumor G1 10 31798 -NCIT:C5547 Rectal Neuroendocrine Tumor G1 9 31799 -NCIT:C5325 Intestinal Composite Gangliocytoma/Neuroma and Neuroendocrine Tumor 7 31800 -NCIT:C96073 Small Intestinal Composite Gangliocytoma/Neuroma and Neuroendocrine Tumor 8 31801 -NCIT:C96061 Small Intestinal Neuroendocrine Tumor 7 31802 -NCIT:C135080 Duodenal Neuroendocrine Tumor 8 31803 -NCIT:C135075 Duodenal Neuroendocrine Tumor by AJCC v8 Stage 9 31804 -NCIT:C135076 Stage I Duodenal Neuroendocrine Tumor AJCC v8 10 31805 -NCIT:C135077 Stage II Duodenal Neuroendocrine Tumor AJCC v8 10 31806 -NCIT:C135078 Stage III Duodenal Neuroendocrine Tumor AJCC v8 10 31807 -NCIT:C135079 Stage IV Duodenal Neuroendocrine Tumor AJCC v8 10 31808 -NCIT:C160442 Duodenal Neuroendocrine Tumor G2 9 31809 -NCIT:C172672 Duodenal Neuroendocrine Tumor G3 9 31810 -NCIT:C27407 Duodenal Somatostatin-Producing Neuroendocrine Tumor 9 31811 -NCIT:C5731 Duodenal Gastrin-Producing Neuroendocrine Tumor 9 31812 -NCIT:C6425 Duodenal Neuroendocrine Tumor G1 9 31813 -NCIT:C135090 Jejunal Neuroendocrine Tumor 8 31814 -NCIT:C135119 Jejunal Neuroendocrine Tumor by AJCC v8 Stage 9 31815 -NCIT:C135120 Stage I Jejunal Neuroendocrine Tumor AJCC v8 10 31816 -NCIT:C135121 Stage II Jejunal Neuroendocrine Tumor AJCC v8 10 31817 -NCIT:C135122 Stage III Jejunal Neuroendocrine Tumor AJCC v8 10 31818 -NCIT:C135123 Stage IV Jejunal Neuroendocrine Tumor AJCC v8 10 31819 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 9 31820 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 9 31821 -NCIT:C5787 Jejunal Somatostatin-Producing Neuroendocrine Tumor 9 31822 -NCIT:C6429 Jejunal Neuroendocrine Tumor G1 9 31823 -NCIT:C135092 Ileal Neuroendocrine Tumor 8 31824 -NCIT:C135124 Ileal Neuroendocrine Tumor by AJCC v8 Stage 9 31825 -NCIT:C135125 Stage I Ileal Neuroendocrine Tumor AJCC v8 10 31826 -NCIT:C135126 Stage II Ileal Neuroendocrine Tumor AJCC v8 10 31827 -NCIT:C135127 Stage III Ileal Neuroendocrine Tumor AJCC v8 10 31828 -NCIT:C135128 Stage IV Ileal Neuroendocrine Tumor AJCC v8 10 31829 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 9 31830 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 9 31831 -NCIT:C4935 Ileal Neuroendocrine Tumor G1 9 31832 -NCIT:C172664 Small Intestinal Neuroendocrine Tumor G3 8 31833 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 9 31834 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 9 31835 -NCIT:C172672 Duodenal Neuroendocrine Tumor G3 9 31836 -NCIT:C27450 Small Intestinal Gastrin-Producing Neuroendocrine Tumor 8 31837 -NCIT:C5731 Duodenal Gastrin-Producing Neuroendocrine Tumor 9 31838 -NCIT:C27451 Small Intestinal Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 8 31839 -NCIT:C27452 Small Intestinal L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 8 31840 -NCIT:C27453 Small Intestinal Somatostatin-Producing Neuroendocrine Tumor 8 31841 -NCIT:C27407 Duodenal Somatostatin-Producing Neuroendocrine Tumor 9 31842 -NCIT:C5787 Jejunal Somatostatin-Producing Neuroendocrine Tumor 9 31843 -NCIT:C27455 Small Intestinal VIP-Producing Neuroendocrine Tumor 8 31844 -NCIT:C4638 Small Intestinal Neuroendocrine Tumor G1 8 31845 -NCIT:C4935 Ileal Neuroendocrine Tumor G1 9 31846 -NCIT:C6425 Duodenal Neuroendocrine Tumor G1 9 31847 -NCIT:C6429 Jejunal Neuroendocrine Tumor G1 9 31848 -NCIT:C96067 Small Intestinal Neuroendocrine Tumor G2 8 31849 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 9 31850 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 9 31851 -NCIT:C160442 Duodenal Neuroendocrine Tumor G2 9 31852 -NCIT:C96073 Small Intestinal Composite Gangliocytoma/Neuroma and Neuroendocrine Tumor 8 31853 -NCIT:C96159 Colorectal Neuroendocrine Tumor 7 31854 -NCIT:C135205 Colorectal Neuroendocrine Tumor by AJCC v8 Stage 8 31855 -NCIT:C135206 Stage I Colorectal Neuroendocrine Tumor AJCC v8 9 31856 -NCIT:C135368 Stage I Colon Neuroendocrine Tumor AJCC v8 10 31857 -NCIT:C135528 Stage I Rectal Neuroendocrine Tumor AJCC v8 10 31858 -NCIT:C135207 Stage IIA Colorectal Neuroendocrine Tumor AJCC v8 9 31859 -NCIT:C135369 Stage IIA Colon Neuroendocrine Tumor AJCC v8 10 31860 -NCIT:C135529 Stage IIA Rectal Neuroendocrine Tumor AJCC v8 10 31861 -NCIT:C135208 Stage IIB Colorectal Neuroendocrine Tumor AJCC v8 9 31862 -NCIT:C135370 Stage IIB Colon Neuroendocrine Tumor AJCC v8 10 31863 -NCIT:C135530 Stage IIB Rectal Neuroendocrine Tumor AJCC v8 10 31864 -NCIT:C135209 Stage IIIA Colorectal Neuroendocrine Tumor AJCC v8 9 31865 -NCIT:C135524 Stage IIIA Colon Neuroendocrine Tumor AJCC v8 10 31866 -NCIT:C135531 Stage IIIA Rectal Neuroendocrine Tumor AJCC v8 10 31867 -NCIT:C135210 Stage IIIB Colorectal Neuroendocrine Tumor AJCC v8 9 31868 -NCIT:C135525 Stage IIIB Colon Neuroendocrine Tumor AJCC v8 10 31869 -NCIT:C135532 Stage IIIB Rectal Neuroendocrine Tumor AJCC v8 10 31870 -NCIT:C135211 Stage IV Colorectal Neuroendocrine Tumor AJCC v8 9 31871 -NCIT:C135526 Stage IV Colon Neuroendocrine Tumor AJCC v8 10 31872 -NCIT:C135533 Stage IV Rectal Neuroendocrine Tumor AJCC v8 10 31873 -NCIT:C135214 Colon Neuroendocrine Tumor by AJCC v8 Stage 9 31874 -NCIT:C135368 Stage I Colon Neuroendocrine Tumor AJCC v8 10 31875 -NCIT:C135369 Stage IIA Colon Neuroendocrine Tumor AJCC v8 10 31876 -NCIT:C135370 Stage IIB Colon Neuroendocrine Tumor AJCC v8 10 31877 -NCIT:C135524 Stage IIIA Colon Neuroendocrine Tumor AJCC v8 10 31878 -NCIT:C135525 Stage IIIB Colon Neuroendocrine Tumor AJCC v8 10 31879 -NCIT:C135526 Stage IV Colon Neuroendocrine Tumor AJCC v8 10 31880 -NCIT:C135527 Rectal Neuroendocrine Tumor by AJCC v8 Stage 9 31881 -NCIT:C135528 Stage I Rectal Neuroendocrine Tumor AJCC v8 10 31882 -NCIT:C135529 Stage IIA Rectal Neuroendocrine Tumor AJCC v8 10 31883 -NCIT:C135530 Stage IIB Rectal Neuroendocrine Tumor AJCC v8 10 31884 -NCIT:C135531 Stage IIIA Rectal Neuroendocrine Tumor AJCC v8 10 31885 -NCIT:C135532 Stage IIIB Rectal Neuroendocrine Tumor AJCC v8 10 31886 -NCIT:C135533 Stage IV Rectal Neuroendocrine Tumor AJCC v8 10 31887 -NCIT:C135212 Colon Neuroendocrine Tumor 8 31888 -NCIT:C135214 Colon Neuroendocrine Tumor by AJCC v8 Stage 9 31889 -NCIT:C135368 Stage I Colon Neuroendocrine Tumor AJCC v8 10 31890 -NCIT:C135369 Stage IIA Colon Neuroendocrine Tumor AJCC v8 10 31891 -NCIT:C135370 Stage IIB Colon Neuroendocrine Tumor AJCC v8 10 31892 -NCIT:C135524 Stage IIIA Colon Neuroendocrine Tumor AJCC v8 10 31893 -NCIT:C135525 Stage IIIB Colon Neuroendocrine Tumor AJCC v8 10 31894 -NCIT:C135526 Stage IV Colon Neuroendocrine Tumor AJCC v8 10 31895 -NCIT:C160443 Colon Neuroendocrine Tumor G2 9 31896 -NCIT:C172702 Colon Neuroendocrine Tumor G3 9 31897 -NCIT:C27446 Colon Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 9 31898 -NCIT:C27447 Colon L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 9 31899 -NCIT:C5497 Colon Neuroendocrine Tumor G1 9 31900 -NCIT:C188043 Sigmoid Colon Neuroendocrine Tumor G1 10 31901 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 10 31902 -NCIT:C6426 Transverse Colon Neuroendocrine Tumor G1 10 31903 -NCIT:C6427 Ascending Colon Neuroendocrine Tumor G1 10 31904 -NCIT:C6428 Descending Colon Neuroendocrine Tumor G1 10 31905 -NCIT:C135213 Rectal Neuroendocrine Tumor 8 31906 -NCIT:C135527 Rectal Neuroendocrine Tumor by AJCC v8 Stage 9 31907 -NCIT:C135528 Stage I Rectal Neuroendocrine Tumor AJCC v8 10 31908 -NCIT:C135529 Stage IIA Rectal Neuroendocrine Tumor AJCC v8 10 31909 -NCIT:C135530 Stage IIB Rectal Neuroendocrine Tumor AJCC v8 10 31910 -NCIT:C135531 Stage IIIA Rectal Neuroendocrine Tumor AJCC v8 10 31911 -NCIT:C135532 Stage IIIB Rectal Neuroendocrine Tumor AJCC v8 10 31912 -NCIT:C135533 Stage IV Rectal Neuroendocrine Tumor AJCC v8 10 31913 -NCIT:C160451 Rectal Neuroendocrine Tumor G2 9 31914 -NCIT:C172703 Rectal Neuroendocrine Tumor G3 9 31915 -NCIT:C5547 Rectal Neuroendocrine Tumor G1 9 31916 -NCIT:C172701 Colorectal Neuroendocrine Tumor G3 8 31917 -NCIT:C172702 Colon Neuroendocrine Tumor G3 9 31918 -NCIT:C172703 Rectal Neuroendocrine Tumor G3 9 31919 -NCIT:C96160 Colorectal Neuroendocrine Tumor G1 8 31920 -NCIT:C5497 Colon Neuroendocrine Tumor G1 9 31921 -NCIT:C188043 Sigmoid Colon Neuroendocrine Tumor G1 10 31922 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 10 31923 -NCIT:C6426 Transverse Colon Neuroendocrine Tumor G1 10 31924 -NCIT:C6427 Ascending Colon Neuroendocrine Tumor G1 10 31925 -NCIT:C6428 Descending Colon Neuroendocrine Tumor G1 10 31926 -NCIT:C5547 Rectal Neuroendocrine Tumor G1 9 31927 -NCIT:C96161 Colorectal L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 8 31928 -NCIT:C27447 Colon L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 9 31929 -NCIT:C96162 Colorectal Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 8 31930 -NCIT:C27446 Colon Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 9 31931 -NCIT:C96163 Colorectal Neuroendocrine Tumor G2 8 31932 -NCIT:C160443 Colon Neuroendocrine Tumor G2 9 31933 -NCIT:C160451 Rectal Neuroendocrine Tumor G2 9 31934 -NCIT:C96165 Intestinal Neuroendocrine Tumor G2 7 31935 -NCIT:C96067 Small Intestinal Neuroendocrine Tumor G2 8 31936 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 9 31937 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 9 31938 -NCIT:C160442 Duodenal Neuroendocrine Tumor G2 9 31939 -NCIT:C96163 Colorectal Neuroendocrine Tumor G2 8 31940 -NCIT:C160443 Colon Neuroendocrine Tumor G2 9 31941 -NCIT:C160451 Rectal Neuroendocrine Tumor G2 9 31942 -NCIT:C96166 Digestive System Neuroendocrine Tumor G2 6 31943 -NCIT:C167328 Midgut Neuroendocrine Tumor G2 7 31944 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 8 31945 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 8 31946 -NCIT:C96423 Appendix Neuroendocrine Tumor G2 8 31947 -NCIT:C172720 Liver Neuroendocrine Tumor G2 7 31948 -NCIT:C179415 Metastatic Digestive System Neuroendocrine Tumor G2 7 31949 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 8 31950 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 8 31951 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 31952 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 8 31953 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 31954 -NCIT:C187345 Unresectable Digestive System Neuroendocrine Tumor G2 7 31955 -NCIT:C45835 Pancreatic Neuroendocrine Tumor G2 7 31956 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 8 31957 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 31958 -NCIT:C45838 Non-Functioning Pancreatic Neuroendocrine Tumor G2 8 31959 -NCIT:C45841 Functioning Pancreatic Neuroendocrine Tumor G2 8 31960 -NCIT:C95617 Esophageal Neuroendocrine Tumor G2 7 31961 -NCIT:C95880 Gastric Neuroendocrine Tumor G2 7 31962 -NCIT:C95983 Ampulla of Vater Neuroendocrine Tumor G2 7 31963 -NCIT:C96165 Intestinal Neuroendocrine Tumor G2 7 31964 -NCIT:C96067 Small Intestinal Neuroendocrine Tumor G2 8 31965 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 9 31966 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 9 31967 -NCIT:C160442 Duodenal Neuroendocrine Tumor G2 9 31968 -NCIT:C96163 Colorectal Neuroendocrine Tumor G2 8 31969 -NCIT:C160443 Colon Neuroendocrine Tumor G2 9 31970 -NCIT:C160451 Rectal Neuroendocrine Tumor G2 9 31971 -NCIT:C96546 Anal Canal Neuroendocrine Tumor G2 7 31972 -NCIT:C96925 Gallbladder Neuroendocrine Tumor G2 7 31973 -NCIT:C96957 Extrahepatic Bile Duct Neuroendocrine Tumor G2 7 31974 -NCIT:C96540 Anal Canal Neuroendocrine Tumor 6 31975 -NCIT:C96543 Anal Canal Neuroendocrine Tumor G1 7 31976 -NCIT:C96546 Anal Canal Neuroendocrine Tumor G2 7 31977 -NCIT:C96918 Gallbladder Neuroendocrine Tumor 6 31978 -NCIT:C172742 Gallbladder Neuroendocrine Tumor G3 7 31979 -NCIT:C96924 Gallbladder Neuroendocrine Tumor G1 7 31980 -NCIT:C96925 Gallbladder Neuroendocrine Tumor G2 7 31981 -NCIT:C96930 Gallbladder Tubular Carcinoid 7 31982 -NCIT:C96955 Extrahepatic Bile Duct Neuroendocrine Tumor 6 31983 -NCIT:C172743 Extrahepatic Bile Duct Neuroendocrine Tumor G3 7 31984 -NCIT:C5861 Extrahepatic Bile Duct Neuroendocrine Tumor G1 7 31985 -NCIT:C96957 Extrahepatic Bile Duct Neuroendocrine Tumor G2 7 31986 -NCIT:C95405 Digestive System Neuroendocrine Carcinoma 5 31987 -NCIT:C126324 Gastroesophageal Junction Neuroendocrine Carcinoma 6 31988 -NCIT:C126323 Gastroesophageal Junction Large Cell Neuroendocrine Carcinoma 7 31989 -NCIT:C126325 Gastroesophageal Junction Small Cell Neuroendocrine Carcinoma 7 31990 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 7 31991 -NCIT:C154617 Digestive System Large Cell Neuroendocrine Carcinoma 6 31992 -NCIT:C126323 Gastroesophageal Junction Large Cell Neuroendocrine Carcinoma 7 31993 -NCIT:C172722 Liver Large Cell Neuroendocrine Carcinoma 7 31994 -NCIT:C95582 Pancreatic Large Cell Neuroendocrine Carcinoma 7 31995 -NCIT:C95620 Esophageal Large Cell Neuroendocrine Carcinoma 7 31996 -NCIT:C95885 Gastric Large Cell Neuroendocrine Carcinoma 7 31997 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 31998 -NCIT:C95985 Ampulla of Vater Large Cell Neuroendocrine Carcinoma 7 31999 -NCIT:C96065 Small Intestinal Large Cell Neuroendocrine Carcinoma 7 32000 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 32001 -NCIT:C96157 Colorectal Large Cell Neuroendocrine Carcinoma 7 32002 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 8 32003 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 8 32004 -NCIT:C96426 Appendix Large Cell Neuroendocrine Carcinoma 7 32005 -NCIT:C96550 Anal Canal Large Cell Neuroendocrine Carcinoma 7 32006 -NCIT:C96921 Gallbladder Large Cell Neuroendocrine Carcinoma 7 32007 -NCIT:C96958 Extrahepatic Bile Duct Large Cell Neuroendocrine Carcinoma 7 32008 -NCIT:C154641 Digestive System Small Cell Neuroendocrine Carcinoma 6 32009 -NCIT:C126325 Gastroesophageal Junction Small Cell Neuroendocrine Carcinoma 7 32010 -NCIT:C172725 Liver Small Cell Neuroendocrine Carcinoma 7 32011 -NCIT:C27449 Small Intestinal Small Cell Neuroendocrine Carcinoma 7 32012 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 32013 -NCIT:C43555 Appendix Small Cell Neuroendocrine Carcinoma 7 32014 -NCIT:C43587 Colorectal Small Cell Neuroendocrine Carcinoma 7 32015 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 8 32016 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 8 32017 -NCIT:C5845 Extrahepatic Bile Duct Small Cell Neuroendocrine Carcinoma 7 32018 -NCIT:C6655 Ampulla of Vater Small Cell Neuroendocrine Carcinoma 7 32019 -NCIT:C6762 Esophageal Small Cell Neuroendocrine Carcinoma 7 32020 -NCIT:C6763 Gallbladder Small Cell Neuroendocrine Carcinoma 7 32021 -NCIT:C6764 Gastric Small Cell Neuroendocrine Carcinoma 7 32022 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 32023 -NCIT:C95583 Pancreatic Small Cell Neuroendocrine Carcinoma 7 32024 -NCIT:C96551 Anal Canal Small Cell Neuroendocrine Carcinoma 7 32025 -NCIT:C155935 Unresectable Digestive System Neuroendocrine Carcinoma 6 32026 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 7 32027 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 7 32028 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 6 32029 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 7 32030 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 32031 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 32032 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 32033 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 7 32034 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 32035 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 32036 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 32037 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 7 32038 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 32039 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 32040 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 32041 -NCIT:C155937 Refractory Digestive System Neuroendocrine Carcinoma 6 32042 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 7 32043 -NCIT:C155938 Recurrent Digestive System Neuroendocrine Carcinoma 6 32044 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 7 32045 -NCIT:C3770 Pancreatic Neuroendocrine Carcinoma 6 32046 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 7 32047 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 7 32048 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 7 32049 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 32050 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 7 32051 -NCIT:C95582 Pancreatic Large Cell Neuroendocrine Carcinoma 7 32052 -NCIT:C95583 Pancreatic Small Cell Neuroendocrine Carcinoma 7 32053 -NCIT:C95619 Esophageal Neuroendocrine Carcinoma 6 32054 -NCIT:C6762 Esophageal Small Cell Neuroendocrine Carcinoma 7 32055 -NCIT:C95620 Esophageal Large Cell Neuroendocrine Carcinoma 7 32056 -NCIT:C95884 Gastric Neuroendocrine Carcinoma 6 32057 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 7 32058 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 32059 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 32060 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 32061 -NCIT:C6764 Gastric Small Cell Neuroendocrine Carcinoma 7 32062 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 32063 -NCIT:C95885 Gastric Large Cell Neuroendocrine Carcinoma 7 32064 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 32065 -NCIT:C95984 Ampulla of Vater Neuroendocrine Carcinoma 6 32066 -NCIT:C6655 Ampulla of Vater Small Cell Neuroendocrine Carcinoma 7 32067 -NCIT:C95985 Ampulla of Vater Large Cell Neuroendocrine Carcinoma 7 32068 -NCIT:C96063 Intestinal Neuroendocrine Carcinoma 6 32069 -NCIT:C96064 Small Intestinal Neuroendocrine Carcinoma 7 32070 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 32071 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 32072 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 32073 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 32074 -NCIT:C27449 Small Intestinal Small Cell Neuroendocrine Carcinoma 8 32075 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 32076 -NCIT:C96065 Small Intestinal Large Cell Neuroendocrine Carcinoma 8 32077 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 32078 -NCIT:C96156 Colorectal Neuroendocrine Carcinoma 7 32079 -NCIT:C43587 Colorectal Small Cell Neuroendocrine Carcinoma 8 32080 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 9 32081 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 9 32082 -NCIT:C96157 Colorectal Large Cell Neuroendocrine Carcinoma 8 32083 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 9 32084 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 9 32085 -NCIT:C96425 Appendix Neuroendocrine Carcinoma 6 32086 -NCIT:C43555 Appendix Small Cell Neuroendocrine Carcinoma 7 32087 -NCIT:C96426 Appendix Large Cell Neuroendocrine Carcinoma 7 32088 -NCIT:C96549 Anal Canal Neuroendocrine Carcinoma 6 32089 -NCIT:C96550 Anal Canal Large Cell Neuroendocrine Carcinoma 7 32090 -NCIT:C96551 Anal Canal Small Cell Neuroendocrine Carcinoma 7 32091 -NCIT:C96787 Liver Neuroendocrine Carcinoma 6 32092 -NCIT:C172722 Liver Large Cell Neuroendocrine Carcinoma 7 32093 -NCIT:C172725 Liver Small Cell Neuroendocrine Carcinoma 7 32094 -NCIT:C96919 Gallbladder Neuroendocrine Carcinoma 6 32095 -NCIT:C6763 Gallbladder Small Cell Neuroendocrine Carcinoma 7 32096 -NCIT:C96921 Gallbladder Large Cell Neuroendocrine Carcinoma 7 32097 -NCIT:C96956 Extrahepatic Bile Duct Neuroendocrine Carcinoma 6 32098 -NCIT:C5845 Extrahepatic Bile Duct Small Cell Neuroendocrine Carcinoma 7 32099 -NCIT:C96958 Extrahepatic Bile Duct Large Cell Neuroendocrine Carcinoma 7 32100 -NCIT:C95980 Ampulla of Vater Neuroendocrine Neoplasm 5 32101 -NCIT:C95981 Ampulla of Vater Neuroendocrine Tumor 6 32102 -NCIT:C135081 Ampulla of Vater Neuroendocrine Tumor by AJCC v8 Stage 7 32103 -NCIT:C135082 Stage I Ampulla of Vater Neuroendocrine Tumor AJCC v8 8 32104 -NCIT:C135083 Stage II Ampulla of Vater Neuroendocrine Tumor AJCC v8 8 32105 -NCIT:C135084 Stage III Ampulla of Vater Neuroendocrine Tumor AJCC v8 8 32106 -NCIT:C135085 Stage IV Ampulla of Vater Neuroendocrine Tumor AJCC v8 8 32107 -NCIT:C172673 Ampulla of Vater Neuroendocrine Tumor G3 7 32108 -NCIT:C95982 Ampulla of Vater Neuroendocrine Tumor G1 7 32109 -NCIT:C95983 Ampulla of Vater Neuroendocrine Tumor G2 7 32110 -NCIT:C95987 Ampulla of Vater Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 7 32111 -NCIT:C95988 Ampulla of Vater Somatostatin-Producing Neuroendocrine Tumor 7 32112 -NCIT:C95989 Ampulla of Vater Gangliocytic Paraganglioma 7 32113 -NCIT:C95984 Ampulla of Vater Neuroendocrine Carcinoma 6 32114 -NCIT:C6655 Ampulla of Vater Small Cell Neuroendocrine Carcinoma 7 32115 -NCIT:C95985 Ampulla of Vater Large Cell Neuroendocrine Carcinoma 7 32116 -NCIT:C96786 Liver Neuroendocrine Neoplasm 5 32117 -NCIT:C5783 Liver Neuroendocrine Tumor 6 32118 -NCIT:C172719 Liver Neuroendocrine Tumor G1 7 32119 -NCIT:C172720 Liver Neuroendocrine Tumor G2 7 32120 -NCIT:C172721 Liver Neuroendocrine Tumor G3 7 32121 -NCIT:C96787 Liver Neuroendocrine Carcinoma 6 32122 -NCIT:C172722 Liver Large Cell Neuroendocrine Carcinoma 7 32123 -NCIT:C172725 Liver Small Cell Neuroendocrine Carcinoma 7 32124 -NCIT:C96917 Gallbladder Neuroendocrine Neoplasm 5 32125 -NCIT:C96918 Gallbladder Neuroendocrine Tumor 6 32126 -NCIT:C172742 Gallbladder Neuroendocrine Tumor G3 7 32127 -NCIT:C96924 Gallbladder Neuroendocrine Tumor G1 7 32128 -NCIT:C96925 Gallbladder Neuroendocrine Tumor G2 7 32129 -NCIT:C96930 Gallbladder Tubular Carcinoid 7 32130 -NCIT:C96919 Gallbladder Neuroendocrine Carcinoma 6 32131 -NCIT:C6763 Gallbladder Small Cell Neuroendocrine Carcinoma 7 32132 -NCIT:C96921 Gallbladder Large Cell Neuroendocrine Carcinoma 7 32133 -NCIT:C96954 Extrahepatic Bile Duct Neuroendocrine Neoplasm 5 32134 -NCIT:C96955 Extrahepatic Bile Duct Neuroendocrine Tumor 6 32135 -NCIT:C172743 Extrahepatic Bile Duct Neuroendocrine Tumor G3 7 32136 -NCIT:C5861 Extrahepatic Bile Duct Neuroendocrine Tumor G1 7 32137 -NCIT:C96957 Extrahepatic Bile Duct Neuroendocrine Tumor G2 7 32138 -NCIT:C96956 Extrahepatic Bile Duct Neuroendocrine Carcinoma 6 32139 -NCIT:C5845 Extrahepatic Bile Duct Small Cell Neuroendocrine Carcinoma 7 32140 -NCIT:C96958 Extrahepatic Bile Duct Large Cell Neuroendocrine Carcinoma 7 32141 -NCIT:C3308 Paraganglioma 4 32142 -NCIT:C157125 Recurrent Paraganglioma 5 32143 -NCIT:C8047 Recurrent Adrenal Gland Pheochromocytoma 6 32144 -NCIT:C157126 Unresectable Paraganglioma 5 32145 -NCIT:C157128 Unresectable Adrenal Gland Pheochromocytoma 6 32146 -NCIT:C157246 Composite Paraganglioma 5 32147 -NCIT:C190073 Childhood Composite Paraganglioma 6 32148 -NCIT:C48306 Adrenal Gland Composite Pheochromocytoma 6 32149 -NCIT:C92181 Non-Metastatic Adrenal Gland Composite Pheochromocytoma 7 32150 -NCIT:C92184 Metastatic Adrenal Gland Composite Pheochromocytoma 7 32151 -NCIT:C158401 Refractory Paraganglioma 5 32152 -NCIT:C158402 Refractory Adrenal Gland Pheochromocytoma 6 32153 -NCIT:C190074 Childhood Paraganglioma 5 32154 -NCIT:C190071 Childhood Sympathetic Paraganglioma 6 32155 -NCIT:C118822 Childhood Adrenal Gland Pheochromocytoma 7 32156 -NCIT:C190072 Childhood Parasympathetic Paraganglioma 6 32157 -NCIT:C190073 Childhood Composite Paraganglioma 6 32158 -NCIT:C3309 Extra-Adrenal Paraganglioma 5 32159 -NCIT:C161612 Prostate Paraganglioma 6 32160 -NCIT:C162490 Paratesticular Paraganglioma 6 32161 -NCIT:C4217 Parasympathetic Paraganglioma 6 32162 -NCIT:C190072 Childhood Parasympathetic Paraganglioma 7 32163 -NCIT:C2932 Carotid Body Paraganglioma 7 32164 -NCIT:C3574 Metastatic Carotid Body Paraganglioma 8 32165 -NCIT:C79950 Non-Metastatic Carotid Body Paraganglioma 8 32166 -NCIT:C3061 Jugulotympanic Paraganglioma 7 32167 -NCIT:C4623 Metastatic Jugulotympanic Paraganglioma 8 32168 -NCIT:C6085 Middle Ear Paraganglioma 8 32169 -NCIT:C8428 Tympanic Paraganglioma 9 32170 -NCIT:C4218 Aorticopulmonary Paraganglioma 7 32171 -NCIT:C45743 Mediastinal Paraganglioma 7 32172 -NCIT:C6409 Laryngeal Paraganglioma 7 32173 -NCIT:C4219 Metastatic Extra-Adrenal Paraganglioma 6 32174 -NCIT:C3574 Metastatic Carotid Body Paraganglioma 7 32175 -NCIT:C4623 Metastatic Jugulotympanic Paraganglioma 7 32176 -NCIT:C5392 Metastatic Cardiac Paraganglioma 7 32177 -NCIT:C6413 Metastatic Intrathoracic Paravertebral Paraganglioma 7 32178 -NCIT:C6416 Metastatic Bladder Paraganglioma 7 32179 -NCIT:C48576 Extra-Adrenal Sympathetic Paraganglioma 6 32180 -NCIT:C5328 Extra-Adrenal Retroperitoneal Paraganglioma 7 32181 -NCIT:C48317 Superior and Inferior Paraaortic Paraganglioma 8 32182 -NCIT:C6411 Intrathoracic Paravertebral Paraganglioma 7 32183 -NCIT:C6413 Metastatic Intrathoracic Paravertebral Paraganglioma 8 32184 -NCIT:C6414 Bladder Paraganglioma 7 32185 -NCIT:C6416 Metastatic Bladder Paraganglioma 8 32186 -NCIT:C5326 Intra-Abdominal Paraganglioma 6 32187 -NCIT:C95989 Ampulla of Vater Gangliocytic Paraganglioma 7 32188 -NCIT:C5327 Head and Neck Paraganglioma 6 32189 -NCIT:C2932 Carotid Body Paraganglioma 7 32190 -NCIT:C3574 Metastatic Carotid Body Paraganglioma 8 32191 -NCIT:C79950 Non-Metastatic Carotid Body Paraganglioma 8 32192 -NCIT:C3061 Jugulotympanic Paraganglioma 7 32193 -NCIT:C4623 Metastatic Jugulotympanic Paraganglioma 8 32194 -NCIT:C6085 Middle Ear Paraganglioma 8 32195 -NCIT:C8428 Tympanic Paraganglioma 9 32196 -NCIT:C46125 Thyroid Gland Paraganglioma 7 32197 -NCIT:C48316 Nasopharyngeal Paraganglioma 7 32198 -NCIT:C6408 Orbit Paraganglioma 7 32199 -NCIT:C6409 Laryngeal Paraganglioma 7 32200 -NCIT:C8427 Vagal Paraganglioma 7 32201 -NCIT:C5466 Central Nervous System Paraganglioma 6 32202 -NCIT:C155769 Sellar Paraganglioma 7 32203 -NCIT:C48318 Cerebellar Paraganglioma 7 32204 -NCIT:C6410 Cardiac Paraganglioma 6 32205 -NCIT:C5390 Atrial Paraganglioma 7 32206 -NCIT:C5392 Metastatic Cardiac Paraganglioma 7 32207 -NCIT:C7046 Urinary System Paraganglioma 6 32208 -NCIT:C159226 Kidney Paraganglioma 7 32209 -NCIT:C6414 Bladder Paraganglioma 7 32210 -NCIT:C6416 Metastatic Bladder Paraganglioma 8 32211 -NCIT:C4216 Sympathetic Paraganglioma 5 32212 -NCIT:C141128 Adrenal Gland Pheochromocytoma and Sympathetic Paraganglioma by AJCC v8 Stage 6 32213 -NCIT:C141129 Stage I Adrenal Gland Pheochromocytoma and Sympathetic Paraganglioma AJCC v8 7 32214 -NCIT:C141130 Stage II Adrenal Gland Pheochromocytoma and Sympathetic Paraganglioma AJCC v8 7 32215 -NCIT:C141131 Stage III Adrenal Gland Pheochromocytoma and Sympathetic Paraganglioma AJCC v8 7 32216 -NCIT:C141132 Stage IV Adrenal Gland Pheochromocytoma and Sympathetic Paraganglioma AJCC v8 7 32217 -NCIT:C190071 Childhood Sympathetic Paraganglioma 6 32218 -NCIT:C118822 Childhood Adrenal Gland Pheochromocytoma 7 32219 -NCIT:C3326 Adrenal Gland Pheochromocytoma 6 32220 -NCIT:C118822 Childhood Adrenal Gland Pheochromocytoma 7 32221 -NCIT:C157128 Unresectable Adrenal Gland Pheochromocytoma 7 32222 -NCIT:C157248 Hereditary Adrenal Gland Pheochromocytoma 7 32223 -NCIT:C158402 Refractory Adrenal Gland Pheochromocytoma 7 32224 -NCIT:C4220 Metastatic Adrenal Gland Pheochromocytoma 7 32225 -NCIT:C157129 Locally Advanced Adrenal Gland Pheochromocytoma 8 32226 -NCIT:C160853 Advanced Adrenal Gland Pheochromocytoma 8 32227 -NCIT:C92184 Metastatic Adrenal Gland Composite Pheochromocytoma 8 32228 -NCIT:C48305 Non-Metastatic Adrenal Gland Pheochromocytoma 7 32229 -NCIT:C92181 Non-Metastatic Adrenal Gland Composite Pheochromocytoma 8 32230 -NCIT:C48306 Adrenal Gland Composite Pheochromocytoma 7 32231 -NCIT:C92181 Non-Metastatic Adrenal Gland Composite Pheochromocytoma 8 32232 -NCIT:C92184 Metastatic Adrenal Gland Composite Pheochromocytoma 8 32233 -NCIT:C8045 Regional Adrenal Gland Pheochromocytoma 7 32234 -NCIT:C8047 Recurrent Adrenal Gland Pheochromocytoma 7 32235 -NCIT:C48576 Extra-Adrenal Sympathetic Paraganglioma 6 32236 -NCIT:C5328 Extra-Adrenal Retroperitoneal Paraganglioma 7 32237 -NCIT:C48317 Superior and Inferior Paraaortic Paraganglioma 8 32238 -NCIT:C6411 Intrathoracic Paravertebral Paraganglioma 7 32239 -NCIT:C6413 Metastatic Intrathoracic Paravertebral Paraganglioma 8 32240 -NCIT:C6414 Bladder Paraganglioma 7 32241 -NCIT:C6416 Metastatic Bladder Paraganglioma 8 32242 -NCIT:C48314 Non-Metastatic Paraganglioma 5 32243 -NCIT:C48305 Non-Metastatic Adrenal Gland Pheochromocytoma 6 32244 -NCIT:C92181 Non-Metastatic Adrenal Gland Composite Pheochromocytoma 7 32245 -NCIT:C79950 Non-Metastatic Carotid Body Paraganglioma 6 32246 -NCIT:C5329 Hereditary Paraganglioma 5 32247 -NCIT:C157248 Hereditary Adrenal Gland Pheochromocytoma 6 32248 -NCIT:C8559 Metastatic Paraganglioma 5 32249 -NCIT:C133713 Locally Advanced Paraganglioma 6 32250 -NCIT:C157129 Locally Advanced Adrenal Gland Pheochromocytoma 7 32251 -NCIT:C160852 Advanced Paraganglioma 6 32252 -NCIT:C160853 Advanced Adrenal Gland Pheochromocytoma 7 32253 -NCIT:C4219 Metastatic Extra-Adrenal Paraganglioma 6 32254 -NCIT:C3574 Metastatic Carotid Body Paraganglioma 7 32255 -NCIT:C4623 Metastatic Jugulotympanic Paraganglioma 7 32256 -NCIT:C5392 Metastatic Cardiac Paraganglioma 7 32257 -NCIT:C6413 Metastatic Intrathoracic Paravertebral Paraganglioma 7 32258 -NCIT:C6416 Metastatic Bladder Paraganglioma 7 32259 -NCIT:C4220 Metastatic Adrenal Gland Pheochromocytoma 6 32260 -NCIT:C157129 Locally Advanced Adrenal Gland Pheochromocytoma 7 32261 -NCIT:C160853 Advanced Adrenal Gland Pheochromocytoma 7 32262 -NCIT:C92184 Metastatic Adrenal Gland Composite Pheochromocytoma 7 32263 -NCIT:C3773 Neuroendocrine Carcinoma 4 32264 -NCIT:C155869 Metastatic Neuroendocrine Carcinoma 5 32265 -NCIT:C155870 Advanced Neuroendocrine Carcinoma 6 32266 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 7 32267 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 32268 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 32269 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 7 32270 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 32271 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 32272 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 32273 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 7 32274 -NCIT:C165300 Advanced Merkel Cell Carcinoma 7 32275 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 7 32276 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 32277 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 32278 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 32279 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 6 32280 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 7 32281 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 32282 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 32283 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 32284 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 7 32285 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 32286 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 32287 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 32288 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 7 32289 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 32290 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 32291 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 32292 -NCIT:C158908 Metastatic Large Cell Neuroendocrine Carcinoma 6 32293 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 7 32294 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 7 32295 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 32296 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 7 32297 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 32298 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 32299 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 7 32300 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 32301 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 32302 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 32303 -NCIT:C158909 Locally Advanced Neuroendocrine Carcinoma 6 32304 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 32305 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 32306 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 7 32307 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 32308 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 7 32309 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 7 32310 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 32311 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 7 32312 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 7 32313 -NCIT:C158911 Metastatic Small Cell Neuroendocrine Carcinoma 6 32314 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 7 32315 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 32316 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 32317 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 7 32318 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 32319 -NCIT:C191852 Metastatic Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 32320 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 32321 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 32322 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 8 32323 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 32324 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 6 32325 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 7 32326 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 7 32327 -NCIT:C162572 Metastatic Merkel Cell Carcinoma 6 32328 -NCIT:C165300 Advanced Merkel Cell Carcinoma 7 32329 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 7 32330 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 7 32331 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 6 32332 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 7 32333 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 7 32334 -NCIT:C163975 Neuroendocrine Carcinoma of Unknown Primary 6 32335 -NCIT:C160980 Head and Neck Neuroendocrine Carcinoma 5 32336 -NCIT:C160981 Head and Neck Small Cell Neuroendocrine Carcinoma 6 32337 -NCIT:C116318 Sinonasal Small Cell Neuroendocrine Carcinoma 7 32338 -NCIT:C35703 Salivary Gland Small Cell Neuroendocrine Carcinoma 7 32339 -NCIT:C5956 Minor Salivary Gland Small Cell Neuroendocrine Carcinoma 8 32340 -NCIT:C6025 Laryngeal Small Cell Neuroendocrine Carcinoma 7 32341 -NCIT:C160982 Head and Neck Large Cell Neuroendocrine Carcinoma 6 32342 -NCIT:C173091 Sinonasal Large Cell Neuroendocrine Carcinoma 7 32343 -NCIT:C173395 Laryngeal Large Cell Neuroendocrine Carcinoma 7 32344 -NCIT:C173650 Salivary Gland Large Cell Neuroendocrine Carcinoma 7 32345 -NCIT:C173089 Sinonasal Neuroendocrine Carcinoma 6 32346 -NCIT:C116318 Sinonasal Small Cell Neuroendocrine Carcinoma 7 32347 -NCIT:C173091 Sinonasal Large Cell Neuroendocrine Carcinoma 7 32348 -NCIT:C173390 Laryngeal Neuroendocrine Carcinoma 6 32349 -NCIT:C173395 Laryngeal Large Cell Neuroendocrine Carcinoma 7 32350 -NCIT:C6025 Laryngeal Small Cell Neuroendocrine Carcinoma 7 32351 -NCIT:C173587 Head and Neck Merkel Cell Carcinoma 6 32352 -NCIT:C173653 Salivary Gland Neuroendocrine Carcinoma 6 32353 -NCIT:C173650 Salivary Gland Large Cell Neuroendocrine Carcinoma 7 32354 -NCIT:C35703 Salivary Gland Small Cell Neuroendocrine Carcinoma 7 32355 -NCIT:C5956 Minor Salivary Gland Small Cell Neuroendocrine Carcinoma 8 32356 -NCIT:C3879 Thyroid Gland Medullary Carcinoma 6 32357 -NCIT:C123905 Childhood Thyroid Gland Medullary Carcinoma 7 32358 -NCIT:C141041 Thyroid Gland Medullary Carcinoma by AJCC v7 Stage 7 32359 -NCIT:C6133 Stage I Thyroid Gland Medullary Carcinoma AJCC v7 8 32360 -NCIT:C6134 Stage II Thyroid Gland Medullary Carcinoma AJCC v7 8 32361 -NCIT:C6135 Stage III Thyroid Gland Medullary Carcinoma AJCC v7 8 32362 -NCIT:C6136 Stage IV Thyroid Gland Medullary Carcinoma AJCC v7 8 32363 -NCIT:C87549 Stage IVA Thyroid Gland Medullary Carcinoma AJCC v7 9 32364 -NCIT:C87550 Stage IVB Thyroid Gland Medullary Carcinoma AJCC v7 9 32365 -NCIT:C87551 Stage IVC Thyroid Gland Medullary Carcinoma AJCC v7 9 32366 -NCIT:C141042 Thyroid Gland Medullary Carcinoma by AJCC v8 Stage 7 32367 -NCIT:C141043 Stage I Thyroid Gland Medullary Carcinoma AJCC v8 8 32368 -NCIT:C141044 Stage II Thyroid Gland Medullary Carcinoma AJCC v8 8 32369 -NCIT:C141045 Stage III Thyroid Gland Medullary Carcinoma AJCC v8 8 32370 -NCIT:C141046 Stage IV Thyroid Gland Medullary Carcinoma AJCC v8 8 32371 -NCIT:C141047 Stage IVA Thyroid Gland Medullary Carcinoma AJCC v8 9 32372 -NCIT:C141048 Stage IVB Thyroid Gland Medullary Carcinoma AJCC v8 9 32373 -NCIT:C141049 Stage IVC Thyroid Gland Medullary Carcinoma AJCC v8 9 32374 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 7 32375 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 8 32376 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 7 32377 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 32378 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 32379 -NCIT:C163974 Unresectable Thyroid Gland Medullary Carcinoma 7 32380 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 8 32381 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 7 32382 -NCIT:C4193 Thyroid Gland Medullary Carcinoma with Amyloid Stroma 7 32383 -NCIT:C46098 Sporadic Thyroid Gland Medullary Carcinoma 7 32384 -NCIT:C46103 Sporadic Thyroid Gland Micromedullary Carcinoma 8 32385 -NCIT:C46099 Hereditary Thyroid Gland Medullary Carcinoma 7 32386 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 8 32387 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 8 32388 -NCIT:C165253 Recurrent Neuroendocrine Carcinoma 5 32389 -NCIT:C115440 Recurrent Merkel Cell Carcinoma 6 32390 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 7 32391 -NCIT:C165740 Locally Recurrent Merkel Cell Carcinoma 7 32392 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 6 32393 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 7 32394 -NCIT:C155938 Recurrent Digestive System Neuroendocrine Carcinoma 6 32395 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 7 32396 -NCIT:C183127 Recurrent Small Cell Neuroendocrine Carcinoma 6 32397 -NCIT:C183128 Recurrent Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 32398 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 8 32399 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 32400 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 7 32401 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 8 32402 -NCIT:C165742 Refractory Neuroendocrine Carcinoma 5 32403 -NCIT:C155937 Refractory Digestive System Neuroendocrine Carcinoma 6 32404 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 7 32405 -NCIT:C165741 Refractory Merkel Cell Carcinoma 6 32406 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 6 32407 -NCIT:C191853 Refractory Small Cell Neuroendocrine Carcinoma 6 32408 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 7 32409 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 8 32410 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 8 32411 -NCIT:C191854 Refractory Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 32412 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 8 32413 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 8 32414 -NCIT:C172806 Unresectable Neuroendocrine Carcinoma 5 32415 -NCIT:C155935 Unresectable Digestive System Neuroendocrine Carcinoma 6 32416 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 7 32417 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 7 32418 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 6 32419 -NCIT:C162786 Unresectable Merkel Cell Carcinoma 6 32420 -NCIT:C163974 Unresectable Thyroid Gland Medullary Carcinoma 6 32421 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 7 32422 -NCIT:C172810 Unresectable Large Cell Neuroendocrine Carcinoma 6 32423 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 7 32424 -NCIT:C191855 Unresectable Extrapulmonary Small Cell Neuroendocrine Carcinoma 6 32425 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 7 32426 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 7 32427 -NCIT:C173385 Neuroendocrine Carcinoma, Excluding Head and Neck 5 32428 -NCIT:C128045 Cervical Neuroendocrine Carcinoma 6 32429 -NCIT:C40214 Cervical Large Cell Neuroendocrine Carcinoma 7 32430 -NCIT:C7982 Cervical Small Cell Neuroendocrine Carcinoma 7 32431 -NCIT:C128073 Vaginal Neuroendocrine Carcinoma 6 32432 -NCIT:C128075 Vaginal Large Cell Neuroendocrine Carcinoma 7 32433 -NCIT:C40263 Vaginal Small Cell Neuroendocrine Carcinoma 7 32434 -NCIT:C128243 Vulvar Neuroendocrine Carcinoma 6 32435 -NCIT:C128244 Vulvar Small Cell Neuroendocrine Carcinoma 7 32436 -NCIT:C40298 Bartholin Gland Small Cell Neuroendocrine Carcinoma 8 32437 -NCIT:C128245 Vulvar Large Cell Neuroendocrine Carcinoma 7 32438 -NCIT:C128247 Vulvar Merkel Cell Carcinoma 7 32439 -NCIT:C157759 Bladder Neuroendocrine Carcinoma 6 32440 -NCIT:C157760 Bladder Large Cell Neuroendocrine Carcinoma 7 32441 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 8 32442 -NCIT:C9461 Bladder Small Cell Neuroendocrine Carcinoma 7 32443 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 8 32444 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 8 32445 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 32446 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 8 32447 -NCIT:C158912 Prostate Neuroendocrine Carcinoma 6 32448 -NCIT:C158650 Prostate Large Cell Neuroendocrine Carcinoma 7 32449 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 7 32450 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 32451 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 32452 -NCIT:C6766 Prostate Small Cell Neuroendocrine Carcinoma 7 32453 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 32454 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 8 32455 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 8 32456 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 8 32457 -NCIT:C159224 Kidney Neuroendocrine Carcinoma 6 32458 -NCIT:C116317 Kidney Small Cell Neuroendocrine Carcinoma 7 32459 -NCIT:C159225 Kidney Large Cell Neuroendocrine Carcinoma 7 32460 -NCIT:C175581 Breast Neuroendocrine Carcinoma 6 32461 -NCIT:C40356 Breast Large Cell Neuroendocrine Carcinoma 7 32462 -NCIT:C6760 Breast Small Cell Neuroendocrine Carcinoma 7 32463 -NCIT:C45569 Lung Neuroendocrine Carcinoma 6 32464 -NCIT:C4917 Lung Small Cell Carcinoma 7 32465 -NCIT:C118815 Childhood Lung Small Cell Carcinoma 8 32466 -NCIT:C136496 Lung Small Cell Carcinoma by AJCC v7 Stage 8 32467 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 9 32468 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 10 32469 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 10 32470 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 9 32471 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 10 32472 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 10 32473 -NCIT:C6679 Stage III Lung Small Cell Carcinoma AJCC v7 9 32474 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 10 32475 -NCIT:C6681 Stage IIIB Lung Small Cell Carcinoma AJCC v7 10 32476 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 11 32477 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 11 32478 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 9 32479 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 8 32480 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 9 32481 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 9 32482 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 8 32483 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 9 32484 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 32485 -NCIT:C158495 Platinum-Sensitive Lung Small Cell Carcinoma 8 32486 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 8 32487 -NCIT:C188753 Lung Small Cell Carcinoma Neuroendocrine Subtype 8 32488 -NCIT:C188754 Lung Small Cell Carcinoma, Neuroendocrine-High Subtype 9 32489 -NCIT:C188755 Lung Small Cell Carcinoma, Neuroendocrine-Low Subtype 9 32490 -NCIT:C188756 Lung Small Cell Carcinoma Molecular Subtypes 8 32491 -NCIT:C188761 Lung Small Cell Carcinoma, A Subtype 9 32492 -NCIT:C188762 Lung Small Cell Carcinoma, N Subtype 9 32493 -NCIT:C188763 Lung Small Cell Carcinoma, P Subtype 9 32494 -NCIT:C188765 Lung Small Cell Carcinoma, I Subtype 9 32495 -NCIT:C188766 Lung Small Cell Carcinoma, Y Subtype 9 32496 -NCIT:C6683 Occult Lung Small Cell Carcinoma 8 32497 -NCIT:C7853 Limited Stage Lung Small Cell Carcinoma 8 32498 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 9 32499 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 9 32500 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 10 32501 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 10 32502 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 9 32503 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 10 32504 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 10 32505 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 9 32506 -NCIT:C9049 Extensive Stage Lung Small Cell Carcinoma 8 32507 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 9 32508 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 9 32509 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 9 32510 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 9 32511 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 8 32512 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 9 32513 -NCIT:C9137 Combined Lung Small Cell Carcinoma 8 32514 -NCIT:C9379 Combined Lung Small Cell Carcinoma and Lung Adenocarcinoma 9 32515 -NCIT:C9423 Combined Lung Small Cell and Squamous Cell Carcinoma 9 32516 -NCIT:C5672 Lung Large Cell Neuroendocrine Carcinoma 7 32517 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 8 32518 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 32519 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 32520 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 8 32521 -NCIT:C7267 Combined Lung Large Cell Neuroendocrine Carcinoma 8 32522 -NCIT:C7591 Combined Lung Carcinoma 7 32523 -NCIT:C7267 Combined Lung Large Cell Neuroendocrine Carcinoma 8 32524 -NCIT:C9137 Combined Lung Small Cell Carcinoma 8 32525 -NCIT:C9379 Combined Lung Small Cell Carcinoma and Lung Adenocarcinoma 9 32526 -NCIT:C9423 Combined Lung Small Cell and Squamous Cell Carcinoma 9 32527 -NCIT:C9231 Merkel Cell Carcinoma 6 32528 -NCIT:C115440 Recurrent Merkel Cell Carcinoma 7 32529 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 8 32530 -NCIT:C165740 Locally Recurrent Merkel Cell Carcinoma 8 32531 -NCIT:C128247 Vulvar Merkel Cell Carcinoma 7 32532 -NCIT:C136869 Merkel Cell Carcinoma by AJCC v7 Stage 7 32533 -NCIT:C85887 Stage 0 Merkel Cell Carcinoma AJCC v7 8 32534 -NCIT:C85889 Stage I Merkel Cell Carcinoma AJCC v7 8 32535 -NCIT:C85890 Stage IA Merkel Cell Carcinoma AJCC v7 9 32536 -NCIT:C85892 Stage IB Merkel Cell Carcinoma AJCC v7 9 32537 -NCIT:C85893 Stage II Merkel Cell Carcinoma AJCC v7 8 32538 -NCIT:C85894 Stage IIA Merkel Cell Carcinoma AJCC v7 9 32539 -NCIT:C85895 Stage IIB Merkel Cell Carcinoma AJCC v7 9 32540 -NCIT:C85896 Stage IIC Merkel Cell Carcinoma AJCC v7 9 32541 -NCIT:C85897 Stage III Merkel Cell Carcinoma AJCC v7 8 32542 -NCIT:C85898 Stage IIIA Merkel Cell Carcinoma AJCC v7 9 32543 -NCIT:C85899 Stage IIIB Merkel Cell Carcinoma AJCC v7 9 32544 -NCIT:C85900 Stage IV Merkel Cell Carcinoma AJCC v7 8 32545 -NCIT:C136870 Merkel Cell Carcinoma by AJCC v8 Stage 7 32546 -NCIT:C136871 Merkel Cell Carcinoma by AJCC v8 Clinical Stage 8 32547 -NCIT:C136872 Clinical Stage 0 Merkel Cell Carcinoma AJCC v8 9 32548 -NCIT:C136873 Clinical Stage I Merkel Cell Carcinoma AJCC v8 9 32549 -NCIT:C136874 Clinical Stage II Merkel Cell Carcinoma AJCC v8 9 32550 -NCIT:C136875 Clinical Stage IIA Merkel Cell Carcinoma AJCC v8 10 32551 -NCIT:C136876 Clinical Stage IIB Merkel Cell Carcinoma AJCC v8 10 32552 -NCIT:C136877 Clinical Stage III Merkel Cell Carcinoma AJCC v8 9 32553 -NCIT:C136878 Clinical Stage IV Merkel Cell Carcinoma AJCC v8 9 32554 -NCIT:C136880 Merkel Cell Carcinoma by AJCC v8 Pathologic Stage 8 32555 -NCIT:C136881 Pathologic Stage 0 Merkel Cell Carcinoma AJCC v8 9 32556 -NCIT:C136882 Pathologic Stage I Merkel Cell Carcinoma AJCC v8 9 32557 -NCIT:C136883 Pathologic Stage II Merkel Cell Carcinoma AJCC v8 9 32558 -NCIT:C136884 Pathologic Stage IIA Merkel Cell Carcinoma AJCC v8 10 32559 -NCIT:C136885 Pathologic Stage IIB Merkel Cell Carcinoma AJCC v8 10 32560 -NCIT:C136886 Pathologic Stage III Merkel Cell Carcinoma AJCC v8 9 32561 -NCIT:C136887 Pathologic Stage IIIA Merkel Cell Carcinoma AJCC v8 10 32562 -NCIT:C136888 Pathologic Stage IIIB Merkel Cell Carcinoma AJCC v8 10 32563 -NCIT:C136889 Pathologic Stage IV Merkel Cell Carcinoma AJCC v8 9 32564 -NCIT:C162572 Metastatic Merkel Cell Carcinoma 7 32565 -NCIT:C165300 Advanced Merkel Cell Carcinoma 8 32566 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 8 32567 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 8 32568 -NCIT:C162786 Unresectable Merkel Cell Carcinoma 7 32569 -NCIT:C165741 Refractory Merkel Cell Carcinoma 7 32570 -NCIT:C95405 Digestive System Neuroendocrine Carcinoma 6 32571 -NCIT:C126324 Gastroesophageal Junction Neuroendocrine Carcinoma 7 32572 -NCIT:C126323 Gastroesophageal Junction Large Cell Neuroendocrine Carcinoma 8 32573 -NCIT:C126325 Gastroesophageal Junction Small Cell Neuroendocrine Carcinoma 8 32574 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 8 32575 -NCIT:C154617 Digestive System Large Cell Neuroendocrine Carcinoma 7 32576 -NCIT:C126323 Gastroesophageal Junction Large Cell Neuroendocrine Carcinoma 8 32577 -NCIT:C172722 Liver Large Cell Neuroendocrine Carcinoma 8 32578 -NCIT:C95582 Pancreatic Large Cell Neuroendocrine Carcinoma 8 32579 -NCIT:C95620 Esophageal Large Cell Neuroendocrine Carcinoma 8 32580 -NCIT:C95885 Gastric Large Cell Neuroendocrine Carcinoma 8 32581 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 32582 -NCIT:C95985 Ampulla of Vater Large Cell Neuroendocrine Carcinoma 8 32583 -NCIT:C96065 Small Intestinal Large Cell Neuroendocrine Carcinoma 8 32584 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 32585 -NCIT:C96157 Colorectal Large Cell Neuroendocrine Carcinoma 8 32586 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 9 32587 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 9 32588 -NCIT:C96426 Appendix Large Cell Neuroendocrine Carcinoma 8 32589 -NCIT:C96550 Anal Canal Large Cell Neuroendocrine Carcinoma 8 32590 -NCIT:C96921 Gallbladder Large Cell Neuroendocrine Carcinoma 8 32591 -NCIT:C96958 Extrahepatic Bile Duct Large Cell Neuroendocrine Carcinoma 8 32592 -NCIT:C154641 Digestive System Small Cell Neuroendocrine Carcinoma 7 32593 -NCIT:C126325 Gastroesophageal Junction Small Cell Neuroendocrine Carcinoma 8 32594 -NCIT:C172725 Liver Small Cell Neuroendocrine Carcinoma 8 32595 -NCIT:C27449 Small Intestinal Small Cell Neuroendocrine Carcinoma 8 32596 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 32597 -NCIT:C43555 Appendix Small Cell Neuroendocrine Carcinoma 8 32598 -NCIT:C43587 Colorectal Small Cell Neuroendocrine Carcinoma 8 32599 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 9 32600 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 9 32601 -NCIT:C5845 Extrahepatic Bile Duct Small Cell Neuroendocrine Carcinoma 8 32602 -NCIT:C6655 Ampulla of Vater Small Cell Neuroendocrine Carcinoma 8 32603 -NCIT:C6762 Esophageal Small Cell Neuroendocrine Carcinoma 8 32604 -NCIT:C6763 Gallbladder Small Cell Neuroendocrine Carcinoma 8 32605 -NCIT:C6764 Gastric Small Cell Neuroendocrine Carcinoma 8 32606 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 32607 -NCIT:C95583 Pancreatic Small Cell Neuroendocrine Carcinoma 8 32608 -NCIT:C96551 Anal Canal Small Cell Neuroendocrine Carcinoma 8 32609 -NCIT:C155935 Unresectable Digestive System Neuroendocrine Carcinoma 7 32610 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 8 32611 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 8 32612 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 7 32613 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 8 32614 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 32615 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 32616 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 32617 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 8 32618 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 32619 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 32620 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 32621 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 32622 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 32623 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 32624 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 32625 -NCIT:C155937 Refractory Digestive System Neuroendocrine Carcinoma 7 32626 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 8 32627 -NCIT:C155938 Recurrent Digestive System Neuroendocrine Carcinoma 7 32628 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 8 32629 -NCIT:C3770 Pancreatic Neuroendocrine Carcinoma 7 32630 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 8 32631 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 8 32632 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 8 32633 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 32634 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 8 32635 -NCIT:C95582 Pancreatic Large Cell Neuroendocrine Carcinoma 8 32636 -NCIT:C95583 Pancreatic Small Cell Neuroendocrine Carcinoma 8 32637 -NCIT:C95619 Esophageal Neuroendocrine Carcinoma 7 32638 -NCIT:C6762 Esophageal Small Cell Neuroendocrine Carcinoma 8 32639 -NCIT:C95620 Esophageal Large Cell Neuroendocrine Carcinoma 8 32640 -NCIT:C95884 Gastric Neuroendocrine Carcinoma 7 32641 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 8 32642 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 32643 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 32644 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 32645 -NCIT:C6764 Gastric Small Cell Neuroendocrine Carcinoma 8 32646 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 32647 -NCIT:C95885 Gastric Large Cell Neuroendocrine Carcinoma 8 32648 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 32649 -NCIT:C95984 Ampulla of Vater Neuroendocrine Carcinoma 7 32650 -NCIT:C6655 Ampulla of Vater Small Cell Neuroendocrine Carcinoma 8 32651 -NCIT:C95985 Ampulla of Vater Large Cell Neuroendocrine Carcinoma 8 32652 -NCIT:C96063 Intestinal Neuroendocrine Carcinoma 7 32653 -NCIT:C96064 Small Intestinal Neuroendocrine Carcinoma 8 32654 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 9 32655 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 10 32656 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 11 32657 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 11 32658 -NCIT:C27449 Small Intestinal Small Cell Neuroendocrine Carcinoma 9 32659 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 32660 -NCIT:C96065 Small Intestinal Large Cell Neuroendocrine Carcinoma 9 32661 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 32662 -NCIT:C96156 Colorectal Neuroendocrine Carcinoma 8 32663 -NCIT:C43587 Colorectal Small Cell Neuroendocrine Carcinoma 9 32664 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 10 32665 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 10 32666 -NCIT:C96157 Colorectal Large Cell Neuroendocrine Carcinoma 9 32667 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 10 32668 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 10 32669 -NCIT:C96425 Appendix Neuroendocrine Carcinoma 7 32670 -NCIT:C43555 Appendix Small Cell Neuroendocrine Carcinoma 8 32671 -NCIT:C96426 Appendix Large Cell Neuroendocrine Carcinoma 8 32672 -NCIT:C96549 Anal Canal Neuroendocrine Carcinoma 7 32673 -NCIT:C96550 Anal Canal Large Cell Neuroendocrine Carcinoma 8 32674 -NCIT:C96551 Anal Canal Small Cell Neuroendocrine Carcinoma 8 32675 -NCIT:C96787 Liver Neuroendocrine Carcinoma 7 32676 -NCIT:C172722 Liver Large Cell Neuroendocrine Carcinoma 8 32677 -NCIT:C172725 Liver Small Cell Neuroendocrine Carcinoma 8 32678 -NCIT:C96919 Gallbladder Neuroendocrine Carcinoma 7 32679 -NCIT:C6763 Gallbladder Small Cell Neuroendocrine Carcinoma 8 32680 -NCIT:C96921 Gallbladder Large Cell Neuroendocrine Carcinoma 8 32681 -NCIT:C96956 Extrahepatic Bile Duct Neuroendocrine Carcinoma 7 32682 -NCIT:C5845 Extrahepatic Bile Duct Small Cell Neuroendocrine Carcinoma 8 32683 -NCIT:C96958 Extrahepatic Bile Duct Large Cell Neuroendocrine Carcinoma 8 32684 -NCIT:C173586 Extracutaneous Merkel Cell Carcinoma 5 32685 -NCIT:C173587 Head and Neck Merkel Cell Carcinoma 6 32686 -NCIT:C3915 Small Cell Neuroendocrine Carcinoma 5 32687 -NCIT:C156457 Extrapulmonary Small Cell Neuroendocrine Carcinoma 6 32688 -NCIT:C116317 Kidney Small Cell Neuroendocrine Carcinoma 7 32689 -NCIT:C128244 Vulvar Small Cell Neuroendocrine Carcinoma 7 32690 -NCIT:C40298 Bartholin Gland Small Cell Neuroendocrine Carcinoma 8 32691 -NCIT:C154641 Digestive System Small Cell Neuroendocrine Carcinoma 7 32692 -NCIT:C126325 Gastroesophageal Junction Small Cell Neuroendocrine Carcinoma 8 32693 -NCIT:C172725 Liver Small Cell Neuroendocrine Carcinoma 8 32694 -NCIT:C27449 Small Intestinal Small Cell Neuroendocrine Carcinoma 8 32695 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 32696 -NCIT:C43555 Appendix Small Cell Neuroendocrine Carcinoma 8 32697 -NCIT:C43587 Colorectal Small Cell Neuroendocrine Carcinoma 8 32698 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 9 32699 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 9 32700 -NCIT:C5845 Extrahepatic Bile Duct Small Cell Neuroendocrine Carcinoma 8 32701 -NCIT:C6655 Ampulla of Vater Small Cell Neuroendocrine Carcinoma 8 32702 -NCIT:C6762 Esophageal Small Cell Neuroendocrine Carcinoma 8 32703 -NCIT:C6763 Gallbladder Small Cell Neuroendocrine Carcinoma 8 32704 -NCIT:C6764 Gastric Small Cell Neuroendocrine Carcinoma 8 32705 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 32706 -NCIT:C95583 Pancreatic Small Cell Neuroendocrine Carcinoma 8 32707 -NCIT:C96551 Anal Canal Small Cell Neuroendocrine Carcinoma 8 32708 -NCIT:C160981 Head and Neck Small Cell Neuroendocrine Carcinoma 7 32709 -NCIT:C116318 Sinonasal Small Cell Neuroendocrine Carcinoma 8 32710 -NCIT:C35703 Salivary Gland Small Cell Neuroendocrine Carcinoma 8 32711 -NCIT:C5956 Minor Salivary Gland Small Cell Neuroendocrine Carcinoma 9 32712 -NCIT:C6025 Laryngeal Small Cell Neuroendocrine Carcinoma 8 32713 -NCIT:C183128 Recurrent Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 32714 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 8 32715 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 32716 -NCIT:C191852 Metastatic Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 32717 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 32718 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 32719 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 8 32720 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 32721 -NCIT:C191854 Refractory Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 32722 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 8 32723 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 8 32724 -NCIT:C191855 Unresectable Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 32725 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 8 32726 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 8 32727 -NCIT:C40155 Endometrial Small Cell Neuroendocrine Carcinoma 7 32728 -NCIT:C40263 Vaginal Small Cell Neuroendocrine Carcinoma 7 32729 -NCIT:C40440 Ovarian Small Cell Carcinoma, Pulmonary-Type 7 32730 -NCIT:C6176 Ureter Small Cell Neuroendocrine Carcinoma 7 32731 -NCIT:C6460 Thymic Small Cell Neuroendocrine Carcinoma 7 32732 -NCIT:C6760 Breast Small Cell Neuroendocrine Carcinoma 7 32733 -NCIT:C6766 Prostate Small Cell Neuroendocrine Carcinoma 7 32734 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 32735 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 8 32736 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 8 32737 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 8 32738 -NCIT:C7982 Cervical Small Cell Neuroendocrine Carcinoma 7 32739 -NCIT:C9461 Bladder Small Cell Neuroendocrine Carcinoma 7 32740 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 8 32741 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 8 32742 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 32743 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 8 32744 -NCIT:C158911 Metastatic Small Cell Neuroendocrine Carcinoma 6 32745 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 7 32746 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 32747 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 32748 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 7 32749 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 32750 -NCIT:C191852 Metastatic Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 32751 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 32752 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 32753 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 8 32754 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 32755 -NCIT:C183127 Recurrent Small Cell Neuroendocrine Carcinoma 6 32756 -NCIT:C183128 Recurrent Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 32757 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 8 32758 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 32759 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 7 32760 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 8 32761 -NCIT:C191853 Refractory Small Cell Neuroendocrine Carcinoma 6 32762 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 7 32763 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 8 32764 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 8 32765 -NCIT:C191854 Refractory Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 32766 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 8 32767 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 8 32768 -NCIT:C4917 Lung Small Cell Carcinoma 6 32769 -NCIT:C118815 Childhood Lung Small Cell Carcinoma 7 32770 -NCIT:C136496 Lung Small Cell Carcinoma by AJCC v7 Stage 7 32771 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 8 32772 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 9 32773 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 9 32774 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 8 32775 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 9 32776 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 9 32777 -NCIT:C6679 Stage III Lung Small Cell Carcinoma AJCC v7 8 32778 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 9 32779 -NCIT:C6681 Stage IIIB Lung Small Cell Carcinoma AJCC v7 9 32780 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 10 32781 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 10 32782 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 8 32783 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 7 32784 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 8 32785 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 8 32786 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 7 32787 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 32788 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 32789 -NCIT:C158495 Platinum-Sensitive Lung Small Cell Carcinoma 7 32790 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 7 32791 -NCIT:C188753 Lung Small Cell Carcinoma Neuroendocrine Subtype 7 32792 -NCIT:C188754 Lung Small Cell Carcinoma, Neuroendocrine-High Subtype 8 32793 -NCIT:C188755 Lung Small Cell Carcinoma, Neuroendocrine-Low Subtype 8 32794 -NCIT:C188756 Lung Small Cell Carcinoma Molecular Subtypes 7 32795 -NCIT:C188761 Lung Small Cell Carcinoma, A Subtype 8 32796 -NCIT:C188762 Lung Small Cell Carcinoma, N Subtype 8 32797 -NCIT:C188763 Lung Small Cell Carcinoma, P Subtype 8 32798 -NCIT:C188765 Lung Small Cell Carcinoma, I Subtype 8 32799 -NCIT:C188766 Lung Small Cell Carcinoma, Y Subtype 8 32800 -NCIT:C6683 Occult Lung Small Cell Carcinoma 7 32801 -NCIT:C7853 Limited Stage Lung Small Cell Carcinoma 7 32802 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 8 32803 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 8 32804 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 9 32805 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 9 32806 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 8 32807 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 9 32808 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 9 32809 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 8 32810 -NCIT:C9049 Extensive Stage Lung Small Cell Carcinoma 7 32811 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 8 32812 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 8 32813 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 8 32814 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 8 32815 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 7 32816 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 8 32817 -NCIT:C9137 Combined Lung Small Cell Carcinoma 7 32818 -NCIT:C9379 Combined Lung Small Cell Carcinoma and Lung Adenocarcinoma 8 32819 -NCIT:C9423 Combined Lung Small Cell and Squamous Cell Carcinoma 8 32820 -NCIT:C6875 Large Cell Neuroendocrine Carcinoma 5 32821 -NCIT:C126772 Endometrial Large Cell Neuroendocrine Carcinoma 6 32822 -NCIT:C128075 Vaginal Large Cell Neuroendocrine Carcinoma 6 32823 -NCIT:C128245 Vulvar Large Cell Neuroendocrine Carcinoma 6 32824 -NCIT:C154617 Digestive System Large Cell Neuroendocrine Carcinoma 6 32825 -NCIT:C126323 Gastroesophageal Junction Large Cell Neuroendocrine Carcinoma 7 32826 -NCIT:C172722 Liver Large Cell Neuroendocrine Carcinoma 7 32827 -NCIT:C95582 Pancreatic Large Cell Neuroendocrine Carcinoma 7 32828 -NCIT:C95620 Esophageal Large Cell Neuroendocrine Carcinoma 7 32829 -NCIT:C95885 Gastric Large Cell Neuroendocrine Carcinoma 7 32830 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 32831 -NCIT:C95985 Ampulla of Vater Large Cell Neuroendocrine Carcinoma 7 32832 -NCIT:C96065 Small Intestinal Large Cell Neuroendocrine Carcinoma 7 32833 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 32834 -NCIT:C96157 Colorectal Large Cell Neuroendocrine Carcinoma 7 32835 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 8 32836 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 8 32837 -NCIT:C96426 Appendix Large Cell Neuroendocrine Carcinoma 7 32838 -NCIT:C96550 Anal Canal Large Cell Neuroendocrine Carcinoma 7 32839 -NCIT:C96921 Gallbladder Large Cell Neuroendocrine Carcinoma 7 32840 -NCIT:C96958 Extrahepatic Bile Duct Large Cell Neuroendocrine Carcinoma 7 32841 -NCIT:C157760 Bladder Large Cell Neuroendocrine Carcinoma 6 32842 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 7 32843 -NCIT:C158650 Prostate Large Cell Neuroendocrine Carcinoma 6 32844 -NCIT:C158908 Metastatic Large Cell Neuroendocrine Carcinoma 6 32845 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 7 32846 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 7 32847 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 32848 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 7 32849 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 32850 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 32851 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 7 32852 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 32853 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 32854 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 32855 -NCIT:C159225 Kidney Large Cell Neuroendocrine Carcinoma 6 32856 -NCIT:C160982 Head and Neck Large Cell Neuroendocrine Carcinoma 6 32857 -NCIT:C173091 Sinonasal Large Cell Neuroendocrine Carcinoma 7 32858 -NCIT:C173395 Laryngeal Large Cell Neuroendocrine Carcinoma 7 32859 -NCIT:C173650 Salivary Gland Large Cell Neuroendocrine Carcinoma 7 32860 -NCIT:C172810 Unresectable Large Cell Neuroendocrine Carcinoma 6 32861 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 7 32862 -NCIT:C40214 Cervical Large Cell Neuroendocrine Carcinoma 6 32863 -NCIT:C40356 Breast Large Cell Neuroendocrine Carcinoma 6 32864 -NCIT:C5238 Ovarian Large Cell Neuroendocrine Carcinoma 6 32865 -NCIT:C5672 Lung Large Cell Neuroendocrine Carcinoma 6 32866 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 7 32867 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 32868 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 32869 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 7 32870 -NCIT:C7267 Combined Lung Large Cell Neuroendocrine Carcinoma 7 32871 -NCIT:C6461 Thymic Large Cell Neuroendocrine Carcinoma 6 32872 -NCIT:C5169 Breast Neuroendocrine Neoplasm 4 32873 -NCIT:C156493 Metastatic Breast Neuroendocrine Neoplasm 5 32874 -NCIT:C5171 Metastatic Breast Neuroendocrine Tumor G1 6 32875 -NCIT:C175581 Breast Neuroendocrine Carcinoma 5 32876 -NCIT:C40356 Breast Large Cell Neuroendocrine Carcinoma 6 32877 -NCIT:C6760 Breast Small Cell Neuroendocrine Carcinoma 6 32878 -NCIT:C175610 Breast Neuroendocrine Tumor 5 32879 -NCIT:C175611 Breast Neuroendocrine Tumor G2 6 32880 -NCIT:C5170 Breast Neuroendocrine Tumor G1 6 32881 -NCIT:C5171 Metastatic Breast Neuroendocrine Tumor G1 7 32882 -NCIT:C5237 Ovarian Neuroendocrine Neoplasm 4 32883 -NCIT:C171032 Ovarian Neuroendocrine Carcinoma 5 32884 -NCIT:C40440 Ovarian Small Cell Carcinoma, Pulmonary-Type 6 32885 -NCIT:C5238 Ovarian Large Cell Neuroendocrine Carcinoma 6 32886 -NCIT:C5229 Ovarian Carcinoid Tumor 5 32887 -NCIT:C188015 Ovarian Teratoma with Carcinoid Tumor 6 32888 -NCIT:C4292 Strumal Carcinoid 7 32889 -NCIT:C40013 Ovarian Insular Carcinoid Tumor 6 32890 -NCIT:C40014 Ovarian Trabecular Carcinoid Tumor 6 32891 -NCIT:C40015 Ovarian Mucinous Carcinoid Tumor 6 32892 -NCIT:C5545 Prostate Neuroendocrine Neoplasm 4 32893 -NCIT:C158912 Prostate Neuroendocrine Carcinoma 5 32894 -NCIT:C158650 Prostate Large Cell Neuroendocrine Carcinoma 6 32895 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 6 32896 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 7 32897 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 7 32898 -NCIT:C6766 Prostate Small Cell Neuroendocrine Carcinoma 6 32899 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 7 32900 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 7 32901 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 7 32902 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 7 32903 -NCIT:C161612 Prostate Paraganglioma 5 32904 -NCIT:C39903 Prostate Adenocarcinoma with Neuroendocrine Differentiation 5 32905 -NCIT:C158656 Usual Prostate Adenocarcinoma with Neuroendocrine Differentiation 6 32906 -NCIT:C158664 Prostate Adenocarcinoma with Paneth Cell-Like Neuroendocrine Differentiation 6 32907 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 6 32908 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 7 32909 -NCIT:C5024 Prostate Neuroendocrine Tumor 5 32910 -NCIT:C5670 Lung Neuroendocrine Neoplasm 4 32911 -NCIT:C157602 Metastatic Lung Neuroendocrine Neoplasm 5 32912 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 6 32913 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 32914 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 7 32915 -NCIT:C165446 Advanced Lung Neuroendocrine Neoplasm 6 32916 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 32917 -NCIT:C177245 Advanced Lung Carcinoid Tumor 7 32918 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 7 32919 -NCIT:C176715 Locally Advanced Lung Neuroendocrine Neoplasm 6 32920 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 7 32921 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 7 32922 -NCIT:C177243 Metastatic Lung Carcinoid Tumor 6 32923 -NCIT:C177245 Advanced Lung Carcinoid Tumor 7 32924 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 6 32925 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 7 32926 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 7 32927 -NCIT:C165454 Unresectable Lung Neuroendocrine Neoplasm 5 32928 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 6 32929 -NCIT:C177246 Unresectable Lung Carcinoid Tumor 6 32930 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 6 32931 -NCIT:C176711 Recurrent Lung Neuroendocrine Neoplasm 5 32932 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 6 32933 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 7 32934 -NCIT:C4038 Lung Carcinoid Tumor 5 32935 -NCIT:C176705 Functioning Lung Carcinoid Tumor 6 32936 -NCIT:C176706 Non-Functioning Lung Carcinoid Tumor 6 32937 -NCIT:C177243 Metastatic Lung Carcinoid Tumor 6 32938 -NCIT:C177245 Advanced Lung Carcinoid Tumor 7 32939 -NCIT:C177246 Unresectable Lung Carcinoid Tumor 6 32940 -NCIT:C45550 Lung Typical Carcinoid Tumor 6 32941 -NCIT:C45551 Lung Atypical Carcinoid Tumor 6 32942 -NCIT:C45569 Lung Neuroendocrine Carcinoma 5 32943 -NCIT:C4917 Lung Small Cell Carcinoma 6 32944 -NCIT:C118815 Childhood Lung Small Cell Carcinoma 7 32945 -NCIT:C136496 Lung Small Cell Carcinoma by AJCC v7 Stage 7 32946 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 8 32947 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 9 32948 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 9 32949 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 8 32950 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 9 32951 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 9 32952 -NCIT:C6679 Stage III Lung Small Cell Carcinoma AJCC v7 8 32953 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 9 32954 -NCIT:C6681 Stage IIIB Lung Small Cell Carcinoma AJCC v7 9 32955 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 10 32956 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 10 32957 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 8 32958 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 7 32959 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 8 32960 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 8 32961 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 7 32962 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 32963 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 32964 -NCIT:C158495 Platinum-Sensitive Lung Small Cell Carcinoma 7 32965 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 7 32966 -NCIT:C188753 Lung Small Cell Carcinoma Neuroendocrine Subtype 7 32967 -NCIT:C188754 Lung Small Cell Carcinoma, Neuroendocrine-High Subtype 8 32968 -NCIT:C188755 Lung Small Cell Carcinoma, Neuroendocrine-Low Subtype 8 32969 -NCIT:C188756 Lung Small Cell Carcinoma Molecular Subtypes 7 32970 -NCIT:C188761 Lung Small Cell Carcinoma, A Subtype 8 32971 -NCIT:C188762 Lung Small Cell Carcinoma, N Subtype 8 32972 -NCIT:C188763 Lung Small Cell Carcinoma, P Subtype 8 32973 -NCIT:C188765 Lung Small Cell Carcinoma, I Subtype 8 32974 -NCIT:C188766 Lung Small Cell Carcinoma, Y Subtype 8 32975 -NCIT:C6683 Occult Lung Small Cell Carcinoma 7 32976 -NCIT:C7853 Limited Stage Lung Small Cell Carcinoma 7 32977 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 8 32978 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 8 32979 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 9 32980 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 9 32981 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 8 32982 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 9 32983 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 9 32984 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 8 32985 -NCIT:C9049 Extensive Stage Lung Small Cell Carcinoma 7 32986 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 8 32987 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 8 32988 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 8 32989 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 8 32990 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 7 32991 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 8 32992 -NCIT:C9137 Combined Lung Small Cell Carcinoma 7 32993 -NCIT:C9379 Combined Lung Small Cell Carcinoma and Lung Adenocarcinoma 8 32994 -NCIT:C9423 Combined Lung Small Cell and Squamous Cell Carcinoma 8 32995 -NCIT:C5672 Lung Large Cell Neuroendocrine Carcinoma 6 32996 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 7 32997 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 32998 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 32999 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 7 33000 -NCIT:C7267 Combined Lung Large Cell Neuroendocrine Carcinoma 7 33001 -NCIT:C7591 Combined Lung Carcinoma 6 33002 -NCIT:C7267 Combined Lung Large Cell Neuroendocrine Carcinoma 7 33003 -NCIT:C9137 Combined Lung Small Cell Carcinoma 7 33004 -NCIT:C9379 Combined Lung Small Cell Carcinoma and Lung Adenocarcinoma 8 33005 -NCIT:C9423 Combined Lung Small Cell and Squamous Cell Carcinoma 8 33006 -NCIT:C4621 Benign Endocrine Neoplasm 3 33007 -NCIT:C156757 Parathyroid Gland Adenoma 4 33008 -NCIT:C190066 Childhood Parathyroid Gland Adenoma 5 33009 -NCIT:C27393 Parathyroid Gland Oncocytic Adenoma 5 33010 -NCIT:C4154 Parathyroid Gland Chief Cell Adenoma 5 33011 -NCIT:C48283 Parathyroid Gland Lipoadenoma 5 33012 -NCIT:C7993 Parathyroid Gland Clear Cell Adenoma 5 33013 -NCIT:C4155 Parathyroid Gland Water-Clear Cell Adenoma 6 33014 -NCIT:C7994 Parathyroid Gland Mixed Cell Type Adenoma 5 33015 -NCIT:C190600 Childhood Benign Endocrine Neoplasm 4 33016 -NCIT:C190060 Childhood Thyroid Gland Follicular Adenoma 5 33017 -NCIT:C190066 Childhood Parathyroid Gland Adenoma 5 33018 -NCIT:C190068 Childhood Adrenal Cortical Adenoma 5 33019 -NCIT:C3502 Thyroid Gland Follicular Adenoma 4 33020 -NCIT:C155957 Thyroid Gland Spindle Cell Follicular Adenoma 5 33021 -NCIT:C155958 Thyroid Gland Black Follicular Adenoma 5 33022 -NCIT:C187261 Thyroid Gland Follicular Adenoma with Papillary Architecture 5 33023 -NCIT:C190060 Childhood Thyroid Gland Follicular Adenoma 5 33024 -NCIT:C4160 Thyroid Gland Microfollicular Adenoma 5 33025 -NCIT:C4161 Thyroid Gland Macrofollicular Adenoma 5 33026 -NCIT:C46111 Thyroid Gland Follicular Adenoma with Papillary Hyperplasia 5 33027 -NCIT:C46115 Thyroid Gland Signet Ring Cell Follicular Adenoma 5 33028 -NCIT:C46116 Thyroid Gland Mucinous Follicular Adenoma 5 33029 -NCIT:C46118 Thyroid Gland Lipoadenoma 5 33030 -NCIT:C46119 Thyroid Gland Clear Cell Follicular Adenoma 5 33031 -NCIT:C46122 Thyroid Gland Hyperfunctioning Adenoma 5 33032 -NCIT:C46123 Thyroid Gland Follicular Adenoma with Bizarre Nuclei 5 33033 -NCIT:C6042 Thyroid Gland Oncocytic Adenoma 5 33034 -NCIT:C9003 Adrenal Cortical Adenoma 4 33035 -NCIT:C190068 Childhood Adrenal Cortical Adenoma 5 33036 -NCIT:C4163 Adrenal Cortical Compact Cell Adenoma 5 33037 -NCIT:C4164 Pigmented Adrenal Cortical Adenoma 5 33038 -NCIT:C4165 Adrenal Cortical Clear Cell Adenoma 5 33039 -NCIT:C4166 Adrenal Cortical Glomerulosa Cell Adenoma 5 33040 -NCIT:C4167 Adrenal Cortical Mixed Cell Adenoma 5 33041 -NCIT:C48447 Adrenal Cortical Oncocytic Adenoma 5 33042 -NCIT:C48449 Cortisol-Producing Adrenal Cortical Adenoma 5 33043 -NCIT:C48451 Aldosterone-Producing Adrenal Cortical Adenoma 5 33044 -NCIT:C48452 Sex Hormone-Producing Adrenal Cortical Adenoma 5 33045 -NCIT:C48454 Androgen-Producing Adrenal Cortical Adenoma 6 33046 -NCIT:C48456 Estrogen-Producing Adrenal Cortical Adenoma 6 33047 -NCIT:C48458 Non-Functioning Adrenal Cortical Adenoma 5 33048 -NCIT:C6432 Multiple Endocrine Neoplasia 3 33049 -NCIT:C123329 Multiple Endocrine Neoplasia Type 2 4 33050 -NCIT:C3226 Multiple Endocrine Neoplasia Type 2A 5 33051 -NCIT:C3227 Multiple Endocrine Neoplasia Type 2B 5 33052 -NCIT:C157449 Multiple Endocrine Neoplasia Type 4 4 33053 -NCIT:C188257 Multiple Endocrine Neoplasia Type 5 4 33054 -NCIT:C3225 Multiple Endocrine Neoplasia Type 1 4 33055 -NCIT:C7335 Reproductive Endocrine Neoplasm 3 33056 -NCIT:C94759 Functioning Endocrine Neoplasm 3 33057 -NCIT:C176705 Functioning Lung Carcinoid Tumor 4 33058 -NCIT:C45840 Functioning Pancreatic Neuroendocrine Tumor 4 33059 -NCIT:C45841 Functioning Pancreatic Neuroendocrine Tumor G2 5 33060 -NCIT:C95595 Pancreatic Somatostatinoma 5 33061 -NCIT:C67369 Malignant Pancreatic Somatostatinoma 6 33062 -NCIT:C95596 Pancreatic Gastrinoma 5 33063 -NCIT:C67458 Malignant Pancreatic Gastrinoma 6 33064 -NCIT:C95597 Pancreatic Glucagonoma 5 33065 -NCIT:C65187 Malignant Pancreatic Glucagonoma 6 33066 -NCIT:C95598 Pancreatic Insulinoma 5 33067 -NCIT:C65186 Malignant Pancreatic Insulinoma 6 33068 -NCIT:C95599 Pancreatic Vipoma 5 33069 -NCIT:C67461 Malignant Pancreatic Vipoma 6 33070 -NCIT:C8388 Functioning Pituitary Neuroendocrine Tumor 4 33071 -NCIT:C121679 Functioning Pituitary Neuroendocrine Tumor/Microadenoma 5 33072 -NCIT:C121720 Functioning Pituitary Neuroendocrine Tumor/Macroadenoma 5 33073 -NCIT:C94760 Non-Functioning Endocrine Neoplasm 3 33074 -NCIT:C140329 Metastatic Non-Functioning Neuroendocrine Tumor 4 33075 -NCIT:C140328 Advanced Non-Functioning Neuroendocrine Tumor 5 33076 -NCIT:C176706 Non-Functioning Lung Carcinoid Tumor 4 33077 -NCIT:C4348 Non-Functioning Pituitary Neuroendocrine Tumor 4 33078 -NCIT:C121678 Non-Functioning Pituitary Neuroendocrine Tumor/Microadenoma 5 33079 -NCIT:C121721 Non-Functioning Pituitary Neuroendocrine Tumor/Macroadenoma 5 33080 -NCIT:C154429 Non-Functioning Corticotroph Pituitary Neuroendocrine Tumor 5 33081 -NCIT:C154431 Non-Functioning Densely Granulated Corticotroph Pituitary Neuroendocrine Tumor 6 33082 -NCIT:C154432 Non-Functioning Sparsely Granulated Corticotroph Pituitary Neuroendocrine Tumor 6 33083 -NCIT:C45924 Null Cell Pituitary Neuroendocrine Tumor 5 33084 -NCIT:C45837 Non-Functioning Pancreatic Neuroendocrine Tumor 4 33085 -NCIT:C28333 Non-Functioning Pancreatic Delta Cell Neuroendocrine Tumor 5 33086 -NCIT:C45834 Pancreatic Neuroendocrine Microtumor 5 33087 -NCIT:C45838 Non-Functioning Pancreatic Neuroendocrine Tumor G2 5 33088 -NCIT:C95585 Non-Functioning Pancreatic Neuroendocrine Tumor G1 5 33089 -NCIT:C48458 Non-Functioning Adrenal Cortical Adenoma 4 33090 -NCIT:C3030 Eye Neoplasm 2 33091 -NCIT:C2961 Conjunctival Neoplasm 3 33092 -NCIT:C100054 Conjunctival Melanocytic Intraepithelial Neoplasia 4 33093 -NCIT:C176043 Ocular Surface Squamous Neoplasia 4 33094 -NCIT:C4549 Conjunctival Squamous Cell Carcinoma 5 33095 -NCIT:C174390 Conjunctival Keratoacanthoma 6 33096 -NCIT:C174398 Conjunctival Spindle Cell Carcinoma 6 33097 -NCIT:C6120 Conjunctival Squamous Intraepithelial Neoplasia 5 33098 -NCIT:C6097 Low Grade Conjunctival Squamous Intraepithelial Neoplasia 6 33099 -NCIT:C7668 High Grade Conjunctival Squamous Intraepithelial Neoplasia 6 33100 -NCIT:C3564 Malignant Conjunctival Neoplasm 4 33101 -NCIT:C174403 Conjunctival Carcinoma 5 33102 -NCIT:C174402 Conjunctival Adenosquamous Carcinoma 6 33103 -NCIT:C174404 Conjunctival Sebaceous Carcinoma 6 33104 -NCIT:C4549 Conjunctival Squamous Cell Carcinoma 6 33105 -NCIT:C174390 Conjunctival Keratoacanthoma 7 33106 -NCIT:C174398 Conjunctival Spindle Cell Carcinoma 7 33107 -NCIT:C174496 Metastatic Malignant Neoplasm in the Conjunctiva 5 33108 -NCIT:C175432 Conjunctival Non-Hodgkin Lymphoma 5 33109 -NCIT:C175430 Conjunctival Follicular Lymphoma 6 33110 -NCIT:C175431 Conjunctival Mucosa-Associated Lymphoid Tissue Lymphoma 6 33111 -NCIT:C175433 Conjunctival Diffuse Large B-Cell Lymphoma 6 33112 -NCIT:C175502 Conjunctival Sarcoma 5 33113 -NCIT:C175499 Conjunctival Angiosarcoma 6 33114 -NCIT:C175500 Conjunctival Leiomyosarcoma 6 33115 -NCIT:C175501 Conjunctival Rhabdomyosarcoma 6 33116 -NCIT:C4578 Conjunctival Kaposi Sarcoma 6 33117 -NCIT:C4550 Conjunctival Melanoma 5 33118 -NCIT:C182127 Metastatic Conjunctival Melanoma 6 33119 -NCIT:C3622 Benign Conjunctival Neoplasm 4 33120 -NCIT:C133744 Pterygium 5 33121 -NCIT:C174388 Conjunctival Oncocytoma 5 33122 -NCIT:C175494 Conjunctival Stromal Tumor 5 33123 -NCIT:C175495 Conjunctival Myxoma 5 33124 -NCIT:C175497 Conjunctival Hemangioma 5 33125 -NCIT:C175498 Conjunctival Lymphangioma 5 33126 -NCIT:C4551 Conjunctival Nevus 5 33127 -NCIT:C174416 Conjunctival Junctional Nevus 6 33128 -NCIT:C174418 Conjunctival Compound Nevus 6 33129 -NCIT:C174448 Inflamed Juvenile Conjunctival Nevus 7 33130 -NCIT:C174426 Conjunctival Subepithelial Nevus 6 33131 -NCIT:C174452 Conjunctival Blue Nevus 6 33132 -NCIT:C174493 Conjunctival Spitz Nevus 6 33133 -NCIT:C6224 Conjunctival Squamous Papilloma 5 33134 -NCIT:C3031 Eyelid Neoplasm 3 33135 -NCIT:C4354 Benign Eyelid Neoplasm 4 33136 -NCIT:C3880 Eyelid Nevus 5 33137 -NCIT:C4061 Eyelid Papilloma 5 33138 -NCIT:C4355 Eyelid Squamous Papilloma 6 33139 -NCIT:C4356 Eyelid Seborrheic Keratosis 5 33140 -NCIT:C4357 Eyelid Capillary Hemangioma 5 33141 -NCIT:C6786 Malignant Eyelid Neoplasm 4 33142 -NCIT:C4358 Eyelid Melanoma 5 33143 -NCIT:C6078 Eyelid Carcinoma 5 33144 -NCIT:C134831 Eyelid Sebaceous Gland Carcinoma 6 33145 -NCIT:C140511 Eyelid Carcinoma by AJCC v7 Stage 6 33146 -NCIT:C88120 Stage 0 Eyelid Carcinoma AJCC v7 7 33147 -NCIT:C88121 Stage IA Eyelid Carcinoma AJCC v7 7 33148 -NCIT:C88122 Stage IB Eyelid Carcinoma AJCC v7 7 33149 -NCIT:C88125 Stage IC Eyelid Carcinoma AJCC v7 7 33150 -NCIT:C88127 Stage II Eyelid Carcinoma AJCC v7 7 33151 -NCIT:C88129 Stage IIIA Eyelid Carcinoma AJCC v7 7 33152 -NCIT:C88131 Stage IIIB Eyelid Carcinoma AJCC v7 7 33153 -NCIT:C88132 Stage IIIC Eyelid Carcinoma AJCC v7 7 33154 -NCIT:C88133 Stage IV Eyelid Carcinoma AJCC v7 7 33155 -NCIT:C140513 Eyelid Carcinoma by AJCC v8 Stage 6 33156 -NCIT:C140515 Stage 0 Eyelid Carcinoma AJCC v8 7 33157 -NCIT:C140516 Stage I Eyelid Carcinoma AJCC v8 7 33158 -NCIT:C140517 Stage IA Eyelid Carcinoma AJCC v8 8 33159 -NCIT:C140518 Stage IB Eyelid Carcinoma AJCC v8 8 33160 -NCIT:C140519 Stage II Eyelid Carcinoma AJCC v8 7 33161 -NCIT:C140520 Stage IIA Eyelid Carcinoma AJCC v8 8 33162 -NCIT:C140521 Stage IIB Eyelid Carcinoma AJCC v8 8 33163 -NCIT:C140522 Stage III Eyelid Carcinoma AJCC v8 7 33164 -NCIT:C140523 Stage IIIA Eyelid Carcinoma AJCC v8 8 33165 -NCIT:C140524 Stage IIIB Eyelid Carcinoma AJCC v8 8 33166 -NCIT:C140525 Stage IV Eyelid Carcinoma AJCC v8 7 33167 -NCIT:C181159 Eyelid Basal Cell Carcinoma 6 33168 -NCIT:C3436 Uveal Neoplasm 3 33169 -NCIT:C2949 Choroid Neoplasm 4 33170 -NCIT:C3566 Malignant Choroid Neoplasm 5 33171 -NCIT:C175464 Primary Choroidal Non-Hodgkin Lymphoma 6 33172 -NCIT:C4561 Choroid Melanoma 6 33173 -NCIT:C169085 Metastatic Choroid Melanoma 7 33174 -NCIT:C35782 Choroid Mixed Cell Melanoma 7 33175 -NCIT:C6099 Choroid Spindle Cell Melanoma 7 33176 -NCIT:C6861 Choroid Spindle Cell Type A Melanoma 8 33177 -NCIT:C6862 Choroid Spindle Cell Type B Melanoma 8 33178 -NCIT:C6100 Choroid Intermediate Cell Type Melanoma 7 33179 -NCIT:C6102 Choroid Epithelioid Cell Melanoma 7 33180 -NCIT:C6865 Choroid Necrotic Melanoma 7 33181 -NCIT:C8554 Metastatic Malignant Neoplasm in the Choroid 6 33182 -NCIT:C175470 Secondary Choroidal Non-Hodgkin Lymphoma 7 33183 -NCIT:C3625 Benign Choroid Neoplasm 5 33184 -NCIT:C174501 Choroid Nevus 6 33185 -NCIT:C188956 Choroidal Ganglioneuroma 6 33186 -NCIT:C4562 Choroid Hemangioma 6 33187 -NCIT:C3142 Iris Neoplasm 4 33188 -NCIT:C4554 Malignant Iris Neoplasm 5 33189 -NCIT:C175467 Primary Iris Non-Hodgkin Lymphoma 6 33190 -NCIT:C6103 Metastatic Malignant Neoplasm in the Iris 6 33191 -NCIT:C9088 Iris Melanoma 6 33192 -NCIT:C174498 Iris Epithelioid Cell Melanoma 7 33193 -NCIT:C174506 Iris Mixed Cell Melanoma 7 33194 -NCIT:C6098 Iris Spindle Cell Melanoma 7 33195 -NCIT:C6101 Iris Intermediate Cell Type Melanoma 7 33196 -NCIT:C4555 Benign Iris Neoplasm 5 33197 -NCIT:C4556 Iris Nevus 6 33198 -NCIT:C4364 Ciliary Body Neoplasm 4 33199 -NCIT:C4766 Malignant Ciliary Body Neoplasm 5 33200 -NCIT:C174561 Ciliary Body Adenocarcinoma 6 33201 -NCIT:C175466 Primary Ciliary Body Non-Hodgkin Lymphoma 6 33202 -NCIT:C4557 Ciliary Body Malignant Medulloepithelioma 6 33203 -NCIT:C4558 Ciliary Body Melanoma 6 33204 -NCIT:C35783 Ciliary Body Mixed Cell Melanoma 7 33205 -NCIT:C6117 Ciliary Body Spindle Cell Melanoma 7 33206 -NCIT:C6863 Ciliary Body Spindle Cell Type B Melanoma 8 33207 -NCIT:C6864 Ciliary Body Spindle Cell Type A Melanoma 8 33208 -NCIT:C6118 Ciliary Body Intermediate Cell Type Melanoma 7 33209 -NCIT:C6119 Ciliary Body Epithelioid Cell Melanoma 7 33210 -NCIT:C8553 Metastatic Malignant Neoplasm in the Ciliary Body 6 33211 -NCIT:C4779 Benign Ciliary Body Neoplasm 5 33212 -NCIT:C174500 Ciliary Body Nevus 6 33213 -NCIT:C174560 Ciliary Body Adenoma 6 33214 -NCIT:C4560 Ciliary Body Leiomyoma 6 33215 -NCIT:C66807 Ciliary Body Benign Medulloepithelioma 6 33216 -NCIT:C66809 Ciliary Body Benign Teratoid Medulloepithelioma 7 33217 -NCIT:C66806 Ciliary Body Medulloepithelioma 5 33218 -NCIT:C4557 Ciliary Body Malignant Medulloepithelioma 6 33219 -NCIT:C66807 Ciliary Body Benign Medulloepithelioma 6 33220 -NCIT:C66809 Ciliary Body Benign Teratoid Medulloepithelioma 7 33221 -NCIT:C66810 Ciliary Body Teratoid Medulloepithelioma 6 33222 -NCIT:C66809 Ciliary Body Benign Teratoid Medulloepithelioma 7 33223 -NCIT:C6104 Benign Uveal Neoplasm 4 33224 -NCIT:C174502 Uveal Nevus 5 33225 -NCIT:C174500 Ciliary Body Nevus 6 33226 -NCIT:C174501 Choroid Nevus 6 33227 -NCIT:C174503 Uveal Melanocytoma 6 33228 -NCIT:C4556 Iris Nevus 6 33229 -NCIT:C3625 Benign Choroid Neoplasm 5 33230 -NCIT:C174501 Choroid Nevus 6 33231 -NCIT:C188956 Choroidal Ganglioneuroma 6 33232 -NCIT:C4562 Choroid Hemangioma 6 33233 -NCIT:C4555 Benign Iris Neoplasm 5 33234 -NCIT:C4556 Iris Nevus 6 33235 -NCIT:C4779 Benign Ciliary Body Neoplasm 5 33236 -NCIT:C174500 Ciliary Body Nevus 6 33237 -NCIT:C174560 Ciliary Body Adenoma 6 33238 -NCIT:C4560 Ciliary Body Leiomyoma 6 33239 -NCIT:C66807 Ciliary Body Benign Medulloepithelioma 6 33240 -NCIT:C66809 Ciliary Body Benign Teratoid Medulloepithelioma 7 33241 -NCIT:C6105 Malignant Uveal Neoplasm 4 33242 -NCIT:C174507 Metastatic Malignant Neoplasm in the Uvea 5 33243 -NCIT:C6103 Metastatic Malignant Neoplasm in the Iris 6 33244 -NCIT:C8553 Metastatic Malignant Neoplasm in the Ciliary Body 6 33245 -NCIT:C8554 Metastatic Malignant Neoplasm in the Choroid 6 33246 -NCIT:C175470 Secondary Choroidal Non-Hodgkin Lymphoma 7 33247 -NCIT:C175451 Primary Uveal Non-Hodgkin Lymphoma 5 33248 -NCIT:C175464 Primary Choroidal Non-Hodgkin Lymphoma 6 33249 -NCIT:C175466 Primary Ciliary Body Non-Hodgkin Lymphoma 6 33250 -NCIT:C175467 Primary Iris Non-Hodgkin Lymphoma 6 33251 -NCIT:C3566 Malignant Choroid Neoplasm 5 33252 -NCIT:C175464 Primary Choroidal Non-Hodgkin Lymphoma 6 33253 -NCIT:C4561 Choroid Melanoma 6 33254 -NCIT:C169085 Metastatic Choroid Melanoma 7 33255 -NCIT:C35782 Choroid Mixed Cell Melanoma 7 33256 -NCIT:C6099 Choroid Spindle Cell Melanoma 7 33257 -NCIT:C6861 Choroid Spindle Cell Type A Melanoma 8 33258 -NCIT:C6862 Choroid Spindle Cell Type B Melanoma 8 33259 -NCIT:C6100 Choroid Intermediate Cell Type Melanoma 7 33260 -NCIT:C6102 Choroid Epithelioid Cell Melanoma 7 33261 -NCIT:C6865 Choroid Necrotic Melanoma 7 33262 -NCIT:C8554 Metastatic Malignant Neoplasm in the Choroid 6 33263 -NCIT:C175470 Secondary Choroidal Non-Hodgkin Lymphoma 7 33264 -NCIT:C4554 Malignant Iris Neoplasm 5 33265 -NCIT:C175467 Primary Iris Non-Hodgkin Lymphoma 6 33266 -NCIT:C6103 Metastatic Malignant Neoplasm in the Iris 6 33267 -NCIT:C9088 Iris Melanoma 6 33268 -NCIT:C174498 Iris Epithelioid Cell Melanoma 7 33269 -NCIT:C174506 Iris Mixed Cell Melanoma 7 33270 -NCIT:C6098 Iris Spindle Cell Melanoma 7 33271 -NCIT:C6101 Iris Intermediate Cell Type Melanoma 7 33272 -NCIT:C4766 Malignant Ciliary Body Neoplasm 5 33273 -NCIT:C174561 Ciliary Body Adenocarcinoma 6 33274 -NCIT:C175466 Primary Ciliary Body Non-Hodgkin Lymphoma 6 33275 -NCIT:C4557 Ciliary Body Malignant Medulloepithelioma 6 33276 -NCIT:C4558 Ciliary Body Melanoma 6 33277 -NCIT:C35783 Ciliary Body Mixed Cell Melanoma 7 33278 -NCIT:C6117 Ciliary Body Spindle Cell Melanoma 7 33279 -NCIT:C6863 Ciliary Body Spindle Cell Type B Melanoma 8 33280 -NCIT:C6864 Ciliary Body Spindle Cell Type A Melanoma 8 33281 -NCIT:C6118 Ciliary Body Intermediate Cell Type Melanoma 7 33282 -NCIT:C6119 Ciliary Body Epithelioid Cell Melanoma 7 33283 -NCIT:C8553 Metastatic Malignant Neoplasm in the Ciliary Body 6 33284 -NCIT:C7712 Uveal Melanoma 5 33285 -NCIT:C111030 Uveal Melanoma by Gene Expression Profile 6 33286 -NCIT:C111020 Uveal Class 1 Melanoma 7 33287 -NCIT:C111022 Uveal Class 1a Melanoma 8 33288 -NCIT:C111023 Uveal Class 1b Melanoma 8 33289 -NCIT:C111021 Uveal Class 2 Melanoma 7 33290 -NCIT:C140659 Choroidal and Ciliary Body Melanoma by AJCC v8 Stage 6 33291 -NCIT:C140660 Stage I Choroidal and Ciliary Body Melanoma AJCC v8 7 33292 -NCIT:C140661 Stage II Choroidal and Ciliary Body Melanoma AJCC v8 7 33293 -NCIT:C140662 Stage IIA Choroidal and Ciliary Body Melanoma AJCC v8 8 33294 -NCIT:C140663 Stage IIB Choroidal and Ciliary Body Melanoma AJCC v8 8 33295 -NCIT:C140664 Stage III Choroidal and Ciliary Body Melanoma AJCC v8 7 33296 -NCIT:C140665 Stage IIIA Choroidal and Ciliary Body Melanoma AJCC v8 8 33297 -NCIT:C140666 Stage IIIB Choroidal and Ciliary Body Melanoma AJCC v8 8 33298 -NCIT:C140667 Stage IIIC Choroidal and Ciliary Body Melanoma AJCC v8 8 33299 -NCIT:C140668 Stage IV Choroidal and Ciliary Body Melanoma AJCC v8 7 33300 -NCIT:C140672 Uveal Melanoma by AJCC v7 Stage 6 33301 -NCIT:C5577 Stage I Uveal Melanoma AJCC v7 7 33302 -NCIT:C5578 Stage II Uveal Melanoma AJCC v7 7 33303 -NCIT:C88135 Stage IIA Uveal Melanoma AJCC v7 8 33304 -NCIT:C88136 Stage IIB Uveal Melanoma AJCC v7 8 33305 -NCIT:C5579 Stage III Uveal Melanoma AJCC v7 7 33306 -NCIT:C88137 Stage IIIA Uveal Melanoma AJCC v7 8 33307 -NCIT:C88138 Stage IIIB Uveal Melanoma AJCC v7 8 33308 -NCIT:C88139 Stage IIIC Uveal Melanoma AJCC v7 8 33309 -NCIT:C5580 Stage IV Uveal Melanoma AJCC v7 7 33310 -NCIT:C148514 Metastatic Uveal Melanoma 6 33311 -NCIT:C148515 Advanced Uveal Melanoma 7 33312 -NCIT:C150130 Uveal Melanoma Metastatic in the Liver 8 33313 -NCIT:C169085 Metastatic Choroid Melanoma 7 33314 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 7 33315 -NCIT:C172247 Unresectable Uveal Melanoma 6 33316 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 7 33317 -NCIT:C173335 Refractory Uveal Melanoma 6 33318 -NCIT:C190746 Iridociliary Melanoma 6 33319 -NCIT:C35780 Uveal Epithelioid Cell Melanoma 6 33320 -NCIT:C174498 Iris Epithelioid Cell Melanoma 7 33321 -NCIT:C6102 Choroid Epithelioid Cell Melanoma 7 33322 -NCIT:C6119 Ciliary Body Epithelioid Cell Melanoma 7 33323 -NCIT:C35781 Uveal Mixed Cell Melanoma 6 33324 -NCIT:C174506 Iris Mixed Cell Melanoma 7 33325 -NCIT:C35782 Choroid Mixed Cell Melanoma 7 33326 -NCIT:C35783 Ciliary Body Mixed Cell Melanoma 7 33327 -NCIT:C4558 Ciliary Body Melanoma 6 33328 -NCIT:C35783 Ciliary Body Mixed Cell Melanoma 7 33329 -NCIT:C6117 Ciliary Body Spindle Cell Melanoma 7 33330 -NCIT:C6863 Ciliary Body Spindle Cell Type B Melanoma 8 33331 -NCIT:C6864 Ciliary Body Spindle Cell Type A Melanoma 8 33332 -NCIT:C6118 Ciliary Body Intermediate Cell Type Melanoma 7 33333 -NCIT:C6119 Ciliary Body Epithelioid Cell Melanoma 7 33334 -NCIT:C4561 Choroid Melanoma 6 33335 -NCIT:C169085 Metastatic Choroid Melanoma 7 33336 -NCIT:C35782 Choroid Mixed Cell Melanoma 7 33337 -NCIT:C6099 Choroid Spindle Cell Melanoma 7 33338 -NCIT:C6861 Choroid Spindle Cell Type A Melanoma 8 33339 -NCIT:C6862 Choroid Spindle Cell Type B Melanoma 8 33340 -NCIT:C6100 Choroid Intermediate Cell Type Melanoma 7 33341 -NCIT:C6102 Choroid Epithelioid Cell Melanoma 7 33342 -NCIT:C6865 Choroid Necrotic Melanoma 7 33343 -NCIT:C7914 Recurrent Uveal Melanoma 6 33344 -NCIT:C7986 Uveal Spindle Cell Melanoma 6 33345 -NCIT:C6098 Iris Spindle Cell Melanoma 7 33346 -NCIT:C6099 Choroid Spindle Cell Melanoma 7 33347 -NCIT:C6861 Choroid Spindle Cell Type A Melanoma 8 33348 -NCIT:C6862 Choroid Spindle Cell Type B Melanoma 8 33349 -NCIT:C6117 Ciliary Body Spindle Cell Melanoma 7 33350 -NCIT:C6863 Ciliary Body Spindle Cell Type B Melanoma 8 33351 -NCIT:C6864 Ciliary Body Spindle Cell Type A Melanoma 8 33352 -NCIT:C7987 Uveal Spindle Cell Type A Melanoma 7 33353 -NCIT:C6861 Choroid Spindle Cell Type A Melanoma 8 33354 -NCIT:C6864 Ciliary Body Spindle Cell Type A Melanoma 8 33355 -NCIT:C7988 Uveal Spindle Cell Type B Melanoma 7 33356 -NCIT:C6862 Choroid Spindle Cell Type B Melanoma 8 33357 -NCIT:C6863 Ciliary Body Spindle Cell Type B Melanoma 8 33358 -NCIT:C7989 Uveal Intermediate Cell Type Melanoma 6 33359 -NCIT:C6100 Choroid Intermediate Cell Type Melanoma 7 33360 -NCIT:C6101 Iris Intermediate Cell Type Melanoma 7 33361 -NCIT:C6118 Ciliary Body Intermediate Cell Type Melanoma 7 33362 -NCIT:C7990 Uveal Necrotic Melanoma 6 33363 -NCIT:C6865 Choroid Necrotic Melanoma 7 33364 -NCIT:C9088 Iris Melanoma 6 33365 -NCIT:C174498 Iris Epithelioid Cell Melanoma 7 33366 -NCIT:C174506 Iris Mixed Cell Melanoma 7 33367 -NCIT:C6098 Iris Spindle Cell Melanoma 7 33368 -NCIT:C6101 Iris Intermediate Cell Type Melanoma 7 33369 -NCIT:C9089 Small Size Posterior Uveal Melanoma 6 33370 -NCIT:C9090 Medium/Large Size Posterior Uveal Melanoma 6 33371 -NCIT:C4361 Corneal Neoplasm 3 33372 -NCIT:C3565 Malignant Corneal Neoplasm 4 33373 -NCIT:C4552 Corneal Squamous Cell Carcinoma 5 33374 -NCIT:C4553 Corneal Melanoma 5 33375 -NCIT:C4579 Corneal Kaposi Sarcoma 5 33376 -NCIT:C3623 Benign Corneal Neoplasm 4 33377 -NCIT:C6093 Corneal Squamous Intraepithelial Neoplasia 4 33378 -NCIT:C6094 Low Grade Corneal Squamous Intraepithelial Neoplasia 5 33379 -NCIT:C7669 High Grade Corneal Squamous Intraepithelial Neoplasia 5 33380 -NCIT:C4767 Malignant Eye Neoplasm 3 33381 -NCIT:C175308 Malignant Lacrimal System Neoplasm 4 33382 -NCIT:C175319 Malignant Lacrimal Drainage System Neoplasm 5 33383 -NCIT:C175330 Metastatic Malignant Neoplasm in the Lacrimal Drainage System 6 33384 -NCIT:C175337 Lacrimal Drainage System Carcinoma 6 33385 -NCIT:C175336 Lacrimal Drainage System Adenocarcinoma 7 33386 -NCIT:C175339 Lacrimal Drainage System Mucoepidermoid Carcinoma 7 33387 -NCIT:C175340 Lacrimal Drainage System Adenoid Cystic Carcinoma 7 33388 -NCIT:C175344 Lacrimal Drainage System Lymphoepithelial Carcinoma 7 33389 -NCIT:C6092 Lacrimal Drainage System Squamous Cell Carcinoma 7 33390 -NCIT:C175335 Lacrimal Drainage System Non-Keratinizing Squamous Cell Carcinoma 8 33391 -NCIT:C175345 Lacrimal Drainage System Melanoma 6 33392 -NCIT:C175481 Lacrimal Drainage System Non-Hodgkin Lymphoma 6 33393 -NCIT:C175484 Lacrimal Drainage System Mucosa-Associated Lymphoid Tissue Lymphoma 7 33394 -NCIT:C175487 Lacrimal Drainage System Diffuse Large B-Cell Lymphoma 7 33395 -NCIT:C3567 Malignant Nasolacrimal Duct Neoplasm 6 33396 -NCIT:C175327 Metastatic Malignant Neoplasm in the Lacrimal System 5 33397 -NCIT:C175329 Metastatic Malignant Neoplasm in the Lacrimal Gland 6 33398 -NCIT:C175330 Metastatic Malignant Neoplasm in the Lacrimal Drainage System 6 33399 -NCIT:C175348 Lacrimal System Carcinoma 5 33400 -NCIT:C175337 Lacrimal Drainage System Carcinoma 6 33401 -NCIT:C175336 Lacrimal Drainage System Adenocarcinoma 7 33402 -NCIT:C175339 Lacrimal Drainage System Mucoepidermoid Carcinoma 7 33403 -NCIT:C175340 Lacrimal Drainage System Adenoid Cystic Carcinoma 7 33404 -NCIT:C175344 Lacrimal Drainage System Lymphoepithelial Carcinoma 7 33405 -NCIT:C6092 Lacrimal Drainage System Squamous Cell Carcinoma 7 33406 -NCIT:C175335 Lacrimal Drainage System Non-Keratinizing Squamous Cell Carcinoma 8 33407 -NCIT:C6129 Lacrimal Gland Carcinoma 6 33408 -NCIT:C175274 Lacrimal Gland Myoepithelial Carcinoma 7 33409 -NCIT:C175288 Lacrimal Gland Epithelial-Myoepithelial Carcinoma 7 33410 -NCIT:C4540 Lacrimal Gland Adenoid Cystic Carcinoma 7 33411 -NCIT:C4541 Lacrimal Gland Adenocarcinoma 7 33412 -NCIT:C175267 Lacrimal Gland Oncocytic Adenocarcinoma 8 33413 -NCIT:C175290 Lacrimal Gland Acinic Cell Carcinoma 8 33414 -NCIT:C6091 Lacrimal Gland Mucoepidermoid Carcinoma 7 33415 -NCIT:C6804 Lacrimal Gland Carcinoma ex Pleomorphic Adenoma 7 33416 -NCIT:C175479 Lacrimal System Non-Hodgkin Lymphoma 5 33417 -NCIT:C175480 Lacrimal Gland Non-Hodgkin Lymphoma 6 33418 -NCIT:C175483 Lacrimal Gland Mucosa-Associated Lymphoid Tissue Lymphoma 7 33419 -NCIT:C175486 Lacrimal Gland Diffuse Large B-Cell Lymphoma 7 33420 -NCIT:C175488 Lacrimal Gland Follicular Lymphoma 7 33421 -NCIT:C175481 Lacrimal Drainage System Non-Hodgkin Lymphoma 6 33422 -NCIT:C175484 Lacrimal Drainage System Mucosa-Associated Lymphoid Tissue Lymphoma 7 33423 -NCIT:C175487 Lacrimal Drainage System Diffuse Large B-Cell Lymphoma 7 33424 -NCIT:C175482 Lacrimal System Mucosa-Associated Lymphoid Tissue Lymphoma 6 33425 -NCIT:C175483 Lacrimal Gland Mucosa-Associated Lymphoid Tissue Lymphoma 7 33426 -NCIT:C175484 Lacrimal Drainage System Mucosa-Associated Lymphoid Tissue Lymphoma 7 33427 -NCIT:C175485 Lacrimal System Diffuse Large B-Cell Lymphoma 6 33428 -NCIT:C175486 Lacrimal Gland Diffuse Large B-Cell Lymphoma 7 33429 -NCIT:C175487 Lacrimal Drainage System Diffuse Large B-Cell Lymphoma 7 33430 -NCIT:C3563 Malignant Lacrimal Gland Neoplasm 5 33431 -NCIT:C175279 Lacrimal Gland Carcinosarcoma 6 33432 -NCIT:C175329 Metastatic Malignant Neoplasm in the Lacrimal Gland 6 33433 -NCIT:C175480 Lacrimal Gland Non-Hodgkin Lymphoma 6 33434 -NCIT:C175483 Lacrimal Gland Mucosa-Associated Lymphoid Tissue Lymphoma 7 33435 -NCIT:C175486 Lacrimal Gland Diffuse Large B-Cell Lymphoma 7 33436 -NCIT:C175488 Lacrimal Gland Follicular Lymphoma 7 33437 -NCIT:C6129 Lacrimal Gland Carcinoma 6 33438 -NCIT:C175274 Lacrimal Gland Myoepithelial Carcinoma 7 33439 -NCIT:C175288 Lacrimal Gland Epithelial-Myoepithelial Carcinoma 7 33440 -NCIT:C4540 Lacrimal Gland Adenoid Cystic Carcinoma 7 33441 -NCIT:C4541 Lacrimal Gland Adenocarcinoma 7 33442 -NCIT:C175267 Lacrimal Gland Oncocytic Adenocarcinoma 8 33443 -NCIT:C175290 Lacrimal Gland Acinic Cell Carcinoma 8 33444 -NCIT:C6091 Lacrimal Gland Mucoepidermoid Carcinoma 7 33445 -NCIT:C6804 Lacrimal Gland Carcinoma ex Pleomorphic Adenoma 7 33446 -NCIT:C3216 Malignant Retinal Neoplasm 4 33447 -NCIT:C174551 Retinal Pigment Epithelium Adenocarcinoma 5 33448 -NCIT:C4365 Primary Retinal Non-Hodgkin Lymphoma 5 33449 -NCIT:C7541 Retinoblastoma 5 33450 -NCIT:C140750 Retinoblastoma by AJCC v8 Stage 6 33451 -NCIT:C140751 Retinoblastoma by AJCC v8 Clinical Stage 7 33452 -NCIT:C140752 Clinical Stage I Retinoblastoma AJCC v8 8 33453 -NCIT:C140753 Clinical Stage II Retinoblastoma AJCC v8 8 33454 -NCIT:C140754 Clinical Stage III Retinoblastoma AJCC v8 8 33455 -NCIT:C140755 Clinical Stage IV Retinoblastoma AJCC v8 8 33456 -NCIT:C140756 Retinoblastoma by AJCC v8 Pathologic Stage 7 33457 -NCIT:C140757 Pathologic Stage I Retinoblastoma AJCC v8 8 33458 -NCIT:C140758 Pathologic Stage II Retinoblastoma AJCC v8 8 33459 -NCIT:C140759 Pathologic Stage III Retinoblastoma AJCC v8 8 33460 -NCIT:C140760 Pathologic Stage IV Retinoblastoma AJCC v8 8 33461 -NCIT:C42596 Sporadic Retinoblastoma 6 33462 -NCIT:C66813 Differentiated Retinoblastoma 6 33463 -NCIT:C66814 Undifferentiated Retinoblastoma 6 33464 -NCIT:C66815 Diffuse Retinoblastoma 6 33465 -NCIT:C7019 Trilateral Retinoblastoma 6 33466 -NCIT:C7846 Intraocular Retinoblastoma 6 33467 -NCIT:C9047 Childhood Intraocular Retinoblastoma 7 33468 -NCIT:C7848 Extraocular Retinoblastoma 6 33469 -NCIT:C9048 Childhood Extraocular Retinoblastoma 7 33470 -NCIT:C7849 Recurrent Retinoblastoma 6 33471 -NCIT:C8495 Hereditary Retinoblastoma 6 33472 -NCIT:C8713 Bilateral Retinoblastoma 6 33473 -NCIT:C8714 Unilateral Retinoblastoma 6 33474 -NCIT:C8555 Metastatic Malignant Neoplasm in the Retina 5 33475 -NCIT:C8601 Retinal Melanoma 5 33476 -NCIT:C3564 Malignant Conjunctival Neoplasm 4 33477 -NCIT:C174403 Conjunctival Carcinoma 5 33478 -NCIT:C174402 Conjunctival Adenosquamous Carcinoma 6 33479 -NCIT:C174404 Conjunctival Sebaceous Carcinoma 6 33480 -NCIT:C4549 Conjunctival Squamous Cell Carcinoma 6 33481 -NCIT:C174390 Conjunctival Keratoacanthoma 7 33482 -NCIT:C174398 Conjunctival Spindle Cell Carcinoma 7 33483 -NCIT:C174496 Metastatic Malignant Neoplasm in the Conjunctiva 5 33484 -NCIT:C175432 Conjunctival Non-Hodgkin Lymphoma 5 33485 -NCIT:C175430 Conjunctival Follicular Lymphoma 6 33486 -NCIT:C175431 Conjunctival Mucosa-Associated Lymphoid Tissue Lymphoma 6 33487 -NCIT:C175433 Conjunctival Diffuse Large B-Cell Lymphoma 6 33488 -NCIT:C175502 Conjunctival Sarcoma 5 33489 -NCIT:C175499 Conjunctival Angiosarcoma 6 33490 -NCIT:C175500 Conjunctival Leiomyosarcoma 6 33491 -NCIT:C175501 Conjunctival Rhabdomyosarcoma 6 33492 -NCIT:C4578 Conjunctival Kaposi Sarcoma 6 33493 -NCIT:C4550 Conjunctival Melanoma 5 33494 -NCIT:C182127 Metastatic Conjunctival Melanoma 6 33495 -NCIT:C3565 Malignant Corneal Neoplasm 4 33496 -NCIT:C4552 Corneal Squamous Cell Carcinoma 5 33497 -NCIT:C4553 Corneal Melanoma 5 33498 -NCIT:C4579 Corneal Kaposi Sarcoma 5 33499 -NCIT:C35690 Eye Lymphoma 4 33500 -NCIT:C88145 Ocular Adnexal Non-Hodgkin Lymphoma 5 33501 -NCIT:C175432 Conjunctival Non-Hodgkin Lymphoma 6 33502 -NCIT:C175430 Conjunctival Follicular Lymphoma 7 33503 -NCIT:C175431 Conjunctival Mucosa-Associated Lymphoid Tissue Lymphoma 7 33504 -NCIT:C175433 Conjunctival Diffuse Large B-Cell Lymphoma 7 33505 -NCIT:C175479 Lacrimal System Non-Hodgkin Lymphoma 6 33506 -NCIT:C175480 Lacrimal Gland Non-Hodgkin Lymphoma 7 33507 -NCIT:C175483 Lacrimal Gland Mucosa-Associated Lymphoid Tissue Lymphoma 8 33508 -NCIT:C175486 Lacrimal Gland Diffuse Large B-Cell Lymphoma 8 33509 -NCIT:C175488 Lacrimal Gland Follicular Lymphoma 8 33510 -NCIT:C175481 Lacrimal Drainage System Non-Hodgkin Lymphoma 7 33511 -NCIT:C175484 Lacrimal Drainage System Mucosa-Associated Lymphoid Tissue Lymphoma 8 33512 -NCIT:C175487 Lacrimal Drainage System Diffuse Large B-Cell Lymphoma 8 33513 -NCIT:C175482 Lacrimal System Mucosa-Associated Lymphoid Tissue Lymphoma 7 33514 -NCIT:C175483 Lacrimal Gland Mucosa-Associated Lymphoid Tissue Lymphoma 8 33515 -NCIT:C175484 Lacrimal Drainage System Mucosa-Associated Lymphoid Tissue Lymphoma 8 33516 -NCIT:C175485 Lacrimal System Diffuse Large B-Cell Lymphoma 7 33517 -NCIT:C175486 Lacrimal Gland Diffuse Large B-Cell Lymphoma 8 33518 -NCIT:C175487 Lacrimal Drainage System Diffuse Large B-Cell Lymphoma 8 33519 -NCIT:C35689 Ocular Adnexal Mucosa-Associated Lymphoid Tissue Lymphoma 6 33520 -NCIT:C175431 Conjunctival Mucosa-Associated Lymphoid Tissue Lymphoma 7 33521 -NCIT:C175482 Lacrimal System Mucosa-Associated Lymphoid Tissue Lymphoma 7 33522 -NCIT:C175483 Lacrimal Gland Mucosa-Associated Lymphoid Tissue Lymphoma 8 33523 -NCIT:C175484 Lacrimal Drainage System Mucosa-Associated Lymphoid Tissue Lymphoma 8 33524 -NCIT:C182357 Diffusion Restriction 7 33525 -NCIT:C44960 Chlamydia Psittaci-Associated Ocular Adnexal Mucosa-Associated Lymphoid Tissue Lymphoma 7 33526 -NCIT:C9184 Primary Intraocular Non-Hodgkin Lymphoma 5 33527 -NCIT:C157065 Primary Vitreoretinal Non-Hodgkin Lymphoma 6 33528 -NCIT:C157067 Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 7 33529 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 33530 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 33531 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 7 33532 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 33533 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 7 33534 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 33535 -NCIT:C4365 Primary Retinal Non-Hodgkin Lymphoma 7 33536 -NCIT:C175451 Primary Uveal Non-Hodgkin Lymphoma 6 33537 -NCIT:C175464 Primary Choroidal Non-Hodgkin Lymphoma 7 33538 -NCIT:C175466 Primary Ciliary Body Non-Hodgkin Lymphoma 7 33539 -NCIT:C175467 Primary Iris Non-Hodgkin Lymphoma 7 33540 -NCIT:C4586 Metastatic Malignant Neoplasm in the Eye 4 33541 -NCIT:C174496 Metastatic Malignant Neoplasm in the Conjunctiva 5 33542 -NCIT:C174507 Metastatic Malignant Neoplasm in the Uvea 5 33543 -NCIT:C6103 Metastatic Malignant Neoplasm in the Iris 6 33544 -NCIT:C8553 Metastatic Malignant Neoplasm in the Ciliary Body 6 33545 -NCIT:C8554 Metastatic Malignant Neoplasm in the Choroid 6 33546 -NCIT:C175470 Secondary Choroidal Non-Hodgkin Lymphoma 7 33547 -NCIT:C175327 Metastatic Malignant Neoplasm in the Lacrimal System 5 33548 -NCIT:C175329 Metastatic Malignant Neoplasm in the Lacrimal Gland 6 33549 -NCIT:C175330 Metastatic Malignant Neoplasm in the Lacrimal Drainage System 6 33550 -NCIT:C8555 Metastatic Malignant Neoplasm in the Retina 5 33551 -NCIT:C6079 Eye Carcinoma 4 33552 -NCIT:C174403 Conjunctival Carcinoma 5 33553 -NCIT:C174402 Conjunctival Adenosquamous Carcinoma 6 33554 -NCIT:C174404 Conjunctival Sebaceous Carcinoma 6 33555 -NCIT:C4549 Conjunctival Squamous Cell Carcinoma 6 33556 -NCIT:C174390 Conjunctival Keratoacanthoma 7 33557 -NCIT:C174398 Conjunctival Spindle Cell Carcinoma 7 33558 -NCIT:C174551 Retinal Pigment Epithelium Adenocarcinoma 5 33559 -NCIT:C174561 Ciliary Body Adenocarcinoma 5 33560 -NCIT:C175348 Lacrimal System Carcinoma 5 33561 -NCIT:C175337 Lacrimal Drainage System Carcinoma 6 33562 -NCIT:C175336 Lacrimal Drainage System Adenocarcinoma 7 33563 -NCIT:C175339 Lacrimal Drainage System Mucoepidermoid Carcinoma 7 33564 -NCIT:C175340 Lacrimal Drainage System Adenoid Cystic Carcinoma 7 33565 -NCIT:C175344 Lacrimal Drainage System Lymphoepithelial Carcinoma 7 33566 -NCIT:C6092 Lacrimal Drainage System Squamous Cell Carcinoma 7 33567 -NCIT:C175335 Lacrimal Drainage System Non-Keratinizing Squamous Cell Carcinoma 8 33568 -NCIT:C6129 Lacrimal Gland Carcinoma 6 33569 -NCIT:C175274 Lacrimal Gland Myoepithelial Carcinoma 7 33570 -NCIT:C175288 Lacrimal Gland Epithelial-Myoepithelial Carcinoma 7 33571 -NCIT:C4540 Lacrimal Gland Adenoid Cystic Carcinoma 7 33572 -NCIT:C4541 Lacrimal Gland Adenocarcinoma 7 33573 -NCIT:C175267 Lacrimal Gland Oncocytic Adenocarcinoma 8 33574 -NCIT:C175290 Lacrimal Gland Acinic Cell Carcinoma 8 33575 -NCIT:C6091 Lacrimal Gland Mucoepidermoid Carcinoma 7 33576 -NCIT:C6804 Lacrimal Gland Carcinoma ex Pleomorphic Adenoma 7 33577 -NCIT:C43340 Eye Sebaceous Carcinoma 5 33578 -NCIT:C134831 Eyelid Sebaceous Gland Carcinoma 6 33579 -NCIT:C174404 Conjunctival Sebaceous Carcinoma 6 33580 -NCIT:C4552 Corneal Squamous Cell Carcinoma 5 33581 -NCIT:C6078 Eyelid Carcinoma 5 33582 -NCIT:C134831 Eyelid Sebaceous Gland Carcinoma 6 33583 -NCIT:C140511 Eyelid Carcinoma by AJCC v7 Stage 6 33584 -NCIT:C88120 Stage 0 Eyelid Carcinoma AJCC v7 7 33585 -NCIT:C88121 Stage IA Eyelid Carcinoma AJCC v7 7 33586 -NCIT:C88122 Stage IB Eyelid Carcinoma AJCC v7 7 33587 -NCIT:C88125 Stage IC Eyelid Carcinoma AJCC v7 7 33588 -NCIT:C88127 Stage II Eyelid Carcinoma AJCC v7 7 33589 -NCIT:C88129 Stage IIIA Eyelid Carcinoma AJCC v7 7 33590 -NCIT:C88131 Stage IIIB Eyelid Carcinoma AJCC v7 7 33591 -NCIT:C88132 Stage IIIC Eyelid Carcinoma AJCC v7 7 33592 -NCIT:C88133 Stage IV Eyelid Carcinoma AJCC v7 7 33593 -NCIT:C140513 Eyelid Carcinoma by AJCC v8 Stage 6 33594 -NCIT:C140515 Stage 0 Eyelid Carcinoma AJCC v8 7 33595 -NCIT:C140516 Stage I Eyelid Carcinoma AJCC v8 7 33596 -NCIT:C140517 Stage IA Eyelid Carcinoma AJCC v8 8 33597 -NCIT:C140518 Stage IB Eyelid Carcinoma AJCC v8 8 33598 -NCIT:C140519 Stage II Eyelid Carcinoma AJCC v8 7 33599 -NCIT:C140520 Stage IIA Eyelid Carcinoma AJCC v8 8 33600 -NCIT:C140521 Stage IIB Eyelid Carcinoma AJCC v8 8 33601 -NCIT:C140522 Stage III Eyelid Carcinoma AJCC v8 7 33602 -NCIT:C140523 Stage IIIA Eyelid Carcinoma AJCC v8 8 33603 -NCIT:C140524 Stage IIIB Eyelid Carcinoma AJCC v8 8 33604 -NCIT:C140525 Stage IV Eyelid Carcinoma AJCC v8 7 33605 -NCIT:C181159 Eyelid Basal Cell Carcinoma 6 33606 -NCIT:C6105 Malignant Uveal Neoplasm 4 33607 -NCIT:C174507 Metastatic Malignant Neoplasm in the Uvea 5 33608 -NCIT:C6103 Metastatic Malignant Neoplasm in the Iris 6 33609 -NCIT:C8553 Metastatic Malignant Neoplasm in the Ciliary Body 6 33610 -NCIT:C8554 Metastatic Malignant Neoplasm in the Choroid 6 33611 -NCIT:C175470 Secondary Choroidal Non-Hodgkin Lymphoma 7 33612 -NCIT:C175451 Primary Uveal Non-Hodgkin Lymphoma 5 33613 -NCIT:C175464 Primary Choroidal Non-Hodgkin Lymphoma 6 33614 -NCIT:C175466 Primary Ciliary Body Non-Hodgkin Lymphoma 6 33615 -NCIT:C175467 Primary Iris Non-Hodgkin Lymphoma 6 33616 -NCIT:C3566 Malignant Choroid Neoplasm 5 33617 -NCIT:C175464 Primary Choroidal Non-Hodgkin Lymphoma 6 33618 -NCIT:C4561 Choroid Melanoma 6 33619 -NCIT:C169085 Metastatic Choroid Melanoma 7 33620 -NCIT:C35782 Choroid Mixed Cell Melanoma 7 33621 -NCIT:C6099 Choroid Spindle Cell Melanoma 7 33622 -NCIT:C6861 Choroid Spindle Cell Type A Melanoma 8 33623 -NCIT:C6862 Choroid Spindle Cell Type B Melanoma 8 33624 -NCIT:C6100 Choroid Intermediate Cell Type Melanoma 7 33625 -NCIT:C6102 Choroid Epithelioid Cell Melanoma 7 33626 -NCIT:C6865 Choroid Necrotic Melanoma 7 33627 -NCIT:C8554 Metastatic Malignant Neoplasm in the Choroid 6 33628 -NCIT:C175470 Secondary Choroidal Non-Hodgkin Lymphoma 7 33629 -NCIT:C4554 Malignant Iris Neoplasm 5 33630 -NCIT:C175467 Primary Iris Non-Hodgkin Lymphoma 6 33631 -NCIT:C6103 Metastatic Malignant Neoplasm in the Iris 6 33632 -NCIT:C9088 Iris Melanoma 6 33633 -NCIT:C174498 Iris Epithelioid Cell Melanoma 7 33634 -NCIT:C174506 Iris Mixed Cell Melanoma 7 33635 -NCIT:C6098 Iris Spindle Cell Melanoma 7 33636 -NCIT:C6101 Iris Intermediate Cell Type Melanoma 7 33637 -NCIT:C4766 Malignant Ciliary Body Neoplasm 5 33638 -NCIT:C174561 Ciliary Body Adenocarcinoma 6 33639 -NCIT:C175466 Primary Ciliary Body Non-Hodgkin Lymphoma 6 33640 -NCIT:C4557 Ciliary Body Malignant Medulloepithelioma 6 33641 -NCIT:C4558 Ciliary Body Melanoma 6 33642 -NCIT:C35783 Ciliary Body Mixed Cell Melanoma 7 33643 -NCIT:C6117 Ciliary Body Spindle Cell Melanoma 7 33644 -NCIT:C6863 Ciliary Body Spindle Cell Type B Melanoma 8 33645 -NCIT:C6864 Ciliary Body Spindle Cell Type A Melanoma 8 33646 -NCIT:C6118 Ciliary Body Intermediate Cell Type Melanoma 7 33647 -NCIT:C6119 Ciliary Body Epithelioid Cell Melanoma 7 33648 -NCIT:C8553 Metastatic Malignant Neoplasm in the Ciliary Body 6 33649 -NCIT:C7712 Uveal Melanoma 5 33650 -NCIT:C111030 Uveal Melanoma by Gene Expression Profile 6 33651 -NCIT:C111020 Uveal Class 1 Melanoma 7 33652 -NCIT:C111022 Uveal Class 1a Melanoma 8 33653 -NCIT:C111023 Uveal Class 1b Melanoma 8 33654 -NCIT:C111021 Uveal Class 2 Melanoma 7 33655 -NCIT:C140659 Choroidal and Ciliary Body Melanoma by AJCC v8 Stage 6 33656 -NCIT:C140660 Stage I Choroidal and Ciliary Body Melanoma AJCC v8 7 33657 -NCIT:C140661 Stage II Choroidal and Ciliary Body Melanoma AJCC v8 7 33658 -NCIT:C140662 Stage IIA Choroidal and Ciliary Body Melanoma AJCC v8 8 33659 -NCIT:C140663 Stage IIB Choroidal and Ciliary Body Melanoma AJCC v8 8 33660 -NCIT:C140664 Stage III Choroidal and Ciliary Body Melanoma AJCC v8 7 33661 -NCIT:C140665 Stage IIIA Choroidal and Ciliary Body Melanoma AJCC v8 8 33662 -NCIT:C140666 Stage IIIB Choroidal and Ciliary Body Melanoma AJCC v8 8 33663 -NCIT:C140667 Stage IIIC Choroidal and Ciliary Body Melanoma AJCC v8 8 33664 -NCIT:C140668 Stage IV Choroidal and Ciliary Body Melanoma AJCC v8 7 33665 -NCIT:C140672 Uveal Melanoma by AJCC v7 Stage 6 33666 -NCIT:C5577 Stage I Uveal Melanoma AJCC v7 7 33667 -NCIT:C5578 Stage II Uveal Melanoma AJCC v7 7 33668 -NCIT:C88135 Stage IIA Uveal Melanoma AJCC v7 8 33669 -NCIT:C88136 Stage IIB Uveal Melanoma AJCC v7 8 33670 -NCIT:C5579 Stage III Uveal Melanoma AJCC v7 7 33671 -NCIT:C88137 Stage IIIA Uveal Melanoma AJCC v7 8 33672 -NCIT:C88138 Stage IIIB Uveal Melanoma AJCC v7 8 33673 -NCIT:C88139 Stage IIIC Uveal Melanoma AJCC v7 8 33674 -NCIT:C5580 Stage IV Uveal Melanoma AJCC v7 7 33675 -NCIT:C148514 Metastatic Uveal Melanoma 6 33676 -NCIT:C148515 Advanced Uveal Melanoma 7 33677 -NCIT:C150130 Uveal Melanoma Metastatic in the Liver 8 33678 -NCIT:C169085 Metastatic Choroid Melanoma 7 33679 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 7 33680 -NCIT:C172247 Unresectable Uveal Melanoma 6 33681 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 7 33682 -NCIT:C173335 Refractory Uveal Melanoma 6 33683 -NCIT:C190746 Iridociliary Melanoma 6 33684 -NCIT:C35780 Uveal Epithelioid Cell Melanoma 6 33685 -NCIT:C174498 Iris Epithelioid Cell Melanoma 7 33686 -NCIT:C6102 Choroid Epithelioid Cell Melanoma 7 33687 -NCIT:C6119 Ciliary Body Epithelioid Cell Melanoma 7 33688 -NCIT:C35781 Uveal Mixed Cell Melanoma 6 33689 -NCIT:C174506 Iris Mixed Cell Melanoma 7 33690 -NCIT:C35782 Choroid Mixed Cell Melanoma 7 33691 -NCIT:C35783 Ciliary Body Mixed Cell Melanoma 7 33692 -NCIT:C4558 Ciliary Body Melanoma 6 33693 -NCIT:C35783 Ciliary Body Mixed Cell Melanoma 7 33694 -NCIT:C6117 Ciliary Body Spindle Cell Melanoma 7 33695 -NCIT:C6863 Ciliary Body Spindle Cell Type B Melanoma 8 33696 -NCIT:C6864 Ciliary Body Spindle Cell Type A Melanoma 8 33697 -NCIT:C6118 Ciliary Body Intermediate Cell Type Melanoma 7 33698 -NCIT:C6119 Ciliary Body Epithelioid Cell Melanoma 7 33699 -NCIT:C4561 Choroid Melanoma 6 33700 -NCIT:C169085 Metastatic Choroid Melanoma 7 33701 -NCIT:C35782 Choroid Mixed Cell Melanoma 7 33702 -NCIT:C6099 Choroid Spindle Cell Melanoma 7 33703 -NCIT:C6861 Choroid Spindle Cell Type A Melanoma 8 33704 -NCIT:C6862 Choroid Spindle Cell Type B Melanoma 8 33705 -NCIT:C6100 Choroid Intermediate Cell Type Melanoma 7 33706 -NCIT:C6102 Choroid Epithelioid Cell Melanoma 7 33707 -NCIT:C6865 Choroid Necrotic Melanoma 7 33708 -NCIT:C7914 Recurrent Uveal Melanoma 6 33709 -NCIT:C7986 Uveal Spindle Cell Melanoma 6 33710 -NCIT:C6098 Iris Spindle Cell Melanoma 7 33711 -NCIT:C6099 Choroid Spindle Cell Melanoma 7 33712 -NCIT:C6861 Choroid Spindle Cell Type A Melanoma 8 33713 -NCIT:C6862 Choroid Spindle Cell Type B Melanoma 8 33714 -NCIT:C6117 Ciliary Body Spindle Cell Melanoma 7 33715 -NCIT:C6863 Ciliary Body Spindle Cell Type B Melanoma 8 33716 -NCIT:C6864 Ciliary Body Spindle Cell Type A Melanoma 8 33717 -NCIT:C7987 Uveal Spindle Cell Type A Melanoma 7 33718 -NCIT:C6861 Choroid Spindle Cell Type A Melanoma 8 33719 -NCIT:C6864 Ciliary Body Spindle Cell Type A Melanoma 8 33720 -NCIT:C7988 Uveal Spindle Cell Type B Melanoma 7 33721 -NCIT:C6862 Choroid Spindle Cell Type B Melanoma 8 33722 -NCIT:C6863 Ciliary Body Spindle Cell Type B Melanoma 8 33723 -NCIT:C7989 Uveal Intermediate Cell Type Melanoma 6 33724 -NCIT:C6100 Choroid Intermediate Cell Type Melanoma 7 33725 -NCIT:C6101 Iris Intermediate Cell Type Melanoma 7 33726 -NCIT:C6118 Ciliary Body Intermediate Cell Type Melanoma 7 33727 -NCIT:C7990 Uveal Necrotic Melanoma 6 33728 -NCIT:C6865 Choroid Necrotic Melanoma 7 33729 -NCIT:C9088 Iris Melanoma 6 33730 -NCIT:C174498 Iris Epithelioid Cell Melanoma 7 33731 -NCIT:C174506 Iris Mixed Cell Melanoma 7 33732 -NCIT:C6098 Iris Spindle Cell Melanoma 7 33733 -NCIT:C6101 Iris Intermediate Cell Type Melanoma 7 33734 -NCIT:C9089 Small Size Posterior Uveal Melanoma 6 33735 -NCIT:C9090 Medium/Large Size Posterior Uveal Melanoma 6 33736 -NCIT:C6786 Malignant Eyelid Neoplasm 4 33737 -NCIT:C4358 Eyelid Melanoma 5 33738 -NCIT:C6078 Eyelid Carcinoma 5 33739 -NCIT:C134831 Eyelid Sebaceous Gland Carcinoma 6 33740 -NCIT:C140511 Eyelid Carcinoma by AJCC v7 Stage 6 33741 -NCIT:C88120 Stage 0 Eyelid Carcinoma AJCC v7 7 33742 -NCIT:C88121 Stage IA Eyelid Carcinoma AJCC v7 7 33743 -NCIT:C88122 Stage IB Eyelid Carcinoma AJCC v7 7 33744 -NCIT:C88125 Stage IC Eyelid Carcinoma AJCC v7 7 33745 -NCIT:C88127 Stage II Eyelid Carcinoma AJCC v7 7 33746 -NCIT:C88129 Stage IIIA Eyelid Carcinoma AJCC v7 7 33747 -NCIT:C88131 Stage IIIB Eyelid Carcinoma AJCC v7 7 33748 -NCIT:C88132 Stage IIIC Eyelid Carcinoma AJCC v7 7 33749 -NCIT:C88133 Stage IV Eyelid Carcinoma AJCC v7 7 33750 -NCIT:C140513 Eyelid Carcinoma by AJCC v8 Stage 6 33751 -NCIT:C140515 Stage 0 Eyelid Carcinoma AJCC v8 7 33752 -NCIT:C140516 Stage I Eyelid Carcinoma AJCC v8 7 33753 -NCIT:C140517 Stage IA Eyelid Carcinoma AJCC v8 8 33754 -NCIT:C140518 Stage IB Eyelid Carcinoma AJCC v8 8 33755 -NCIT:C140519 Stage II Eyelid Carcinoma AJCC v8 7 33756 -NCIT:C140520 Stage IIA Eyelid Carcinoma AJCC v8 8 33757 -NCIT:C140521 Stage IIB Eyelid Carcinoma AJCC v8 8 33758 -NCIT:C140522 Stage III Eyelid Carcinoma AJCC v8 7 33759 -NCIT:C140523 Stage IIIA Eyelid Carcinoma AJCC v8 8 33760 -NCIT:C140524 Stage IIIB Eyelid Carcinoma AJCC v8 8 33761 -NCIT:C140525 Stage IV Eyelid Carcinoma AJCC v8 7 33762 -NCIT:C181159 Eyelid Basal Cell Carcinoma 6 33763 -NCIT:C8562 Ocular Melanoma 4 33764 -NCIT:C171294 Recurrent Ocular Melanoma 5 33765 -NCIT:C7914 Recurrent Uveal Melanoma 6 33766 -NCIT:C171295 Metastatic Ocular Melanoma 5 33767 -NCIT:C148514 Metastatic Uveal Melanoma 6 33768 -NCIT:C148515 Advanced Uveal Melanoma 7 33769 -NCIT:C150130 Uveal Melanoma Metastatic in the Liver 8 33770 -NCIT:C169085 Metastatic Choroid Melanoma 7 33771 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 7 33772 -NCIT:C171296 Locally Advanced Ocular Melanoma 6 33773 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 7 33774 -NCIT:C182127 Metastatic Conjunctival Melanoma 6 33775 -NCIT:C190137 Advanced Ocular Melanoma 6 33776 -NCIT:C148515 Advanced Uveal Melanoma 7 33777 -NCIT:C150130 Uveal Melanoma Metastatic in the Liver 8 33778 -NCIT:C173329 Refractory Ocular Melanoma 5 33779 -NCIT:C173335 Refractory Uveal Melanoma 6 33780 -NCIT:C175345 Lacrimal Drainage System Melanoma 5 33781 -NCIT:C4358 Eyelid Melanoma 5 33782 -NCIT:C4550 Conjunctival Melanoma 5 33783 -NCIT:C182127 Metastatic Conjunctival Melanoma 6 33784 -NCIT:C4553 Corneal Melanoma 5 33785 -NCIT:C7712 Uveal Melanoma 5 33786 -NCIT:C111030 Uveal Melanoma by Gene Expression Profile 6 33787 -NCIT:C111020 Uveal Class 1 Melanoma 7 33788 -NCIT:C111022 Uveal Class 1a Melanoma 8 33789 -NCIT:C111023 Uveal Class 1b Melanoma 8 33790 -NCIT:C111021 Uveal Class 2 Melanoma 7 33791 -NCIT:C140659 Choroidal and Ciliary Body Melanoma by AJCC v8 Stage 6 33792 -NCIT:C140660 Stage I Choroidal and Ciliary Body Melanoma AJCC v8 7 33793 -NCIT:C140661 Stage II Choroidal and Ciliary Body Melanoma AJCC v8 7 33794 -NCIT:C140662 Stage IIA Choroidal and Ciliary Body Melanoma AJCC v8 8 33795 -NCIT:C140663 Stage IIB Choroidal and Ciliary Body Melanoma AJCC v8 8 33796 -NCIT:C140664 Stage III Choroidal and Ciliary Body Melanoma AJCC v8 7 33797 -NCIT:C140665 Stage IIIA Choroidal and Ciliary Body Melanoma AJCC v8 8 33798 -NCIT:C140666 Stage IIIB Choroidal and Ciliary Body Melanoma AJCC v8 8 33799 -NCIT:C140667 Stage IIIC Choroidal and Ciliary Body Melanoma AJCC v8 8 33800 -NCIT:C140668 Stage IV Choroidal and Ciliary Body Melanoma AJCC v8 7 33801 -NCIT:C140672 Uveal Melanoma by AJCC v7 Stage 6 33802 -NCIT:C5577 Stage I Uveal Melanoma AJCC v7 7 33803 -NCIT:C5578 Stage II Uveal Melanoma AJCC v7 7 33804 -NCIT:C88135 Stage IIA Uveal Melanoma AJCC v7 8 33805 -NCIT:C88136 Stage IIB Uveal Melanoma AJCC v7 8 33806 -NCIT:C5579 Stage III Uveal Melanoma AJCC v7 7 33807 -NCIT:C88137 Stage IIIA Uveal Melanoma AJCC v7 8 33808 -NCIT:C88138 Stage IIIB Uveal Melanoma AJCC v7 8 33809 -NCIT:C88139 Stage IIIC Uveal Melanoma AJCC v7 8 33810 -NCIT:C5580 Stage IV Uveal Melanoma AJCC v7 7 33811 -NCIT:C148514 Metastatic Uveal Melanoma 6 33812 -NCIT:C148515 Advanced Uveal Melanoma 7 33813 -NCIT:C150130 Uveal Melanoma Metastatic in the Liver 8 33814 -NCIT:C169085 Metastatic Choroid Melanoma 7 33815 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 7 33816 -NCIT:C172247 Unresectable Uveal Melanoma 6 33817 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 7 33818 -NCIT:C173335 Refractory Uveal Melanoma 6 33819 -NCIT:C190746 Iridociliary Melanoma 6 33820 -NCIT:C35780 Uveal Epithelioid Cell Melanoma 6 33821 -NCIT:C174498 Iris Epithelioid Cell Melanoma 7 33822 -NCIT:C6102 Choroid Epithelioid Cell Melanoma 7 33823 -NCIT:C6119 Ciliary Body Epithelioid Cell Melanoma 7 33824 -NCIT:C35781 Uveal Mixed Cell Melanoma 6 33825 -NCIT:C174506 Iris Mixed Cell Melanoma 7 33826 -NCIT:C35782 Choroid Mixed Cell Melanoma 7 33827 -NCIT:C35783 Ciliary Body Mixed Cell Melanoma 7 33828 -NCIT:C4558 Ciliary Body Melanoma 6 33829 -NCIT:C35783 Ciliary Body Mixed Cell Melanoma 7 33830 -NCIT:C6117 Ciliary Body Spindle Cell Melanoma 7 33831 -NCIT:C6863 Ciliary Body Spindle Cell Type B Melanoma 8 33832 -NCIT:C6864 Ciliary Body Spindle Cell Type A Melanoma 8 33833 -NCIT:C6118 Ciliary Body Intermediate Cell Type Melanoma 7 33834 -NCIT:C6119 Ciliary Body Epithelioid Cell Melanoma 7 33835 -NCIT:C4561 Choroid Melanoma 6 33836 -NCIT:C169085 Metastatic Choroid Melanoma 7 33837 -NCIT:C35782 Choroid Mixed Cell Melanoma 7 33838 -NCIT:C6099 Choroid Spindle Cell Melanoma 7 33839 -NCIT:C6861 Choroid Spindle Cell Type A Melanoma 8 33840 -NCIT:C6862 Choroid Spindle Cell Type B Melanoma 8 33841 -NCIT:C6100 Choroid Intermediate Cell Type Melanoma 7 33842 -NCIT:C6102 Choroid Epithelioid Cell Melanoma 7 33843 -NCIT:C6865 Choroid Necrotic Melanoma 7 33844 -NCIT:C7914 Recurrent Uveal Melanoma 6 33845 -NCIT:C7986 Uveal Spindle Cell Melanoma 6 33846 -NCIT:C6098 Iris Spindle Cell Melanoma 7 33847 -NCIT:C6099 Choroid Spindle Cell Melanoma 7 33848 -NCIT:C6861 Choroid Spindle Cell Type A Melanoma 8 33849 -NCIT:C6862 Choroid Spindle Cell Type B Melanoma 8 33850 -NCIT:C6117 Ciliary Body Spindle Cell Melanoma 7 33851 -NCIT:C6863 Ciliary Body Spindle Cell Type B Melanoma 8 33852 -NCIT:C6864 Ciliary Body Spindle Cell Type A Melanoma 8 33853 -NCIT:C7987 Uveal Spindle Cell Type A Melanoma 7 33854 -NCIT:C6861 Choroid Spindle Cell Type A Melanoma 8 33855 -NCIT:C6864 Ciliary Body Spindle Cell Type A Melanoma 8 33856 -NCIT:C7988 Uveal Spindle Cell Type B Melanoma 7 33857 -NCIT:C6862 Choroid Spindle Cell Type B Melanoma 8 33858 -NCIT:C6863 Ciliary Body Spindle Cell Type B Melanoma 8 33859 -NCIT:C7989 Uveal Intermediate Cell Type Melanoma 6 33860 -NCIT:C6100 Choroid Intermediate Cell Type Melanoma 7 33861 -NCIT:C6101 Iris Intermediate Cell Type Melanoma 7 33862 -NCIT:C6118 Ciliary Body Intermediate Cell Type Melanoma 7 33863 -NCIT:C7990 Uveal Necrotic Melanoma 6 33864 -NCIT:C6865 Choroid Necrotic Melanoma 7 33865 -NCIT:C9088 Iris Melanoma 6 33866 -NCIT:C174498 Iris Epithelioid Cell Melanoma 7 33867 -NCIT:C174506 Iris Mixed Cell Melanoma 7 33868 -NCIT:C6098 Iris Spindle Cell Melanoma 7 33869 -NCIT:C6101 Iris Intermediate Cell Type Melanoma 7 33870 -NCIT:C9089 Small Size Posterior Uveal Melanoma 6 33871 -NCIT:C9090 Medium/Large Size Posterior Uveal Melanoma 6 33872 -NCIT:C7913 Ocular Melanoma with Extraocular Extension 5 33873 -NCIT:C8601 Retinal Melanoma 5 33874 -NCIT:C92186 Intraocular Malignant Peripheral Nerve Sheath Tumor 4 33875 -NCIT:C4780 Benign Eye Neoplasm 3 33876 -NCIT:C175223 Eye Melanocytoma 4 33877 -NCIT:C174503 Uveal Melanocytoma 5 33878 -NCIT:C175224 Visual Pathway Melanocytoma 5 33879 -NCIT:C4230 Optic Disc Melanocytoma 6 33880 -NCIT:C175307 Benign Lacrimal System Neoplasm 4 33881 -NCIT:C175318 Benign Lacrimal Drainage System Neoplasm 5 33882 -NCIT:C175332 Lacrimal Drainage System Exophytic Papilloma 6 33883 -NCIT:C175334 Lacrimal Drainage System Inverted Papilloma 6 33884 -NCIT:C3626 Benign Nasolacrimal Duct Neoplasm 6 33885 -NCIT:C3621 Benign Lacrimal Gland Neoplasm 5 33886 -NCIT:C175264 Lacrimal Gland Oncocytoma 6 33887 -NCIT:C175272 Lacrimal Gland Myoepithelioma 6 33888 -NCIT:C175291 Lacrimal Gland Warthin Tumor 6 33889 -NCIT:C4542 Lacrimal Gland Pleomorphic Adenoma 6 33890 -NCIT:C3622 Benign Conjunctival Neoplasm 4 33891 -NCIT:C133744 Pterygium 5 33892 -NCIT:C174388 Conjunctival Oncocytoma 5 33893 -NCIT:C175494 Conjunctival Stromal Tumor 5 33894 -NCIT:C175495 Conjunctival Myxoma 5 33895 -NCIT:C175497 Conjunctival Hemangioma 5 33896 -NCIT:C175498 Conjunctival Lymphangioma 5 33897 -NCIT:C4551 Conjunctival Nevus 5 33898 -NCIT:C174416 Conjunctival Junctional Nevus 6 33899 -NCIT:C174418 Conjunctival Compound Nevus 6 33900 -NCIT:C174448 Inflamed Juvenile Conjunctival Nevus 7 33901 -NCIT:C174426 Conjunctival Subepithelial Nevus 6 33902 -NCIT:C174452 Conjunctival Blue Nevus 6 33903 -NCIT:C174493 Conjunctival Spitz Nevus 6 33904 -NCIT:C6224 Conjunctival Squamous Papilloma 5 33905 -NCIT:C3623 Benign Corneal Neoplasm 4 33906 -NCIT:C3624 Benign Retinal Neoplasm 4 33907 -NCIT:C174550 Adenoma of the Retinal Pigment Epithelium 5 33908 -NCIT:C4921 Retinal Cavernous Hemangioma 5 33909 -NCIT:C66812 Retinocytoma 5 33910 -NCIT:C4354 Benign Eyelid Neoplasm 4 33911 -NCIT:C3880 Eyelid Nevus 5 33912 -NCIT:C4061 Eyelid Papilloma 5 33913 -NCIT:C4355 Eyelid Squamous Papilloma 6 33914 -NCIT:C4356 Eyelid Seborrheic Keratosis 5 33915 -NCIT:C4357 Eyelid Capillary Hemangioma 5 33916 -NCIT:C6104 Benign Uveal Neoplasm 4 33917 -NCIT:C174502 Uveal Nevus 5 33918 -NCIT:C174500 Ciliary Body Nevus 6 33919 -NCIT:C174501 Choroid Nevus 6 33920 -NCIT:C174503 Uveal Melanocytoma 6 33921 -NCIT:C4556 Iris Nevus 6 33922 -NCIT:C3625 Benign Choroid Neoplasm 5 33923 -NCIT:C174501 Choroid Nevus 6 33924 -NCIT:C188956 Choroidal Ganglioneuroma 6 33925 -NCIT:C4562 Choroid Hemangioma 6 33926 -NCIT:C4555 Benign Iris Neoplasm 5 33927 -NCIT:C4556 Iris Nevus 6 33928 -NCIT:C4779 Benign Ciliary Body Neoplasm 5 33929 -NCIT:C174500 Ciliary Body Nevus 6 33930 -NCIT:C174560 Ciliary Body Adenoma 6 33931 -NCIT:C4560 Ciliary Body Leiomyoma 6 33932 -NCIT:C66807 Ciliary Body Benign Medulloepithelioma 6 33933 -NCIT:C66809 Ciliary Body Benign Teratoid Medulloepithelioma 7 33934 -NCIT:C92182 Intraocular Schwannoma 4 33935 -NCIT:C4800 Retinal Neoplasm 3 33936 -NCIT:C174539 Retinal Astrocytoma 4 33937 -NCIT:C3216 Malignant Retinal Neoplasm 4 33938 -NCIT:C174551 Retinal Pigment Epithelium Adenocarcinoma 5 33939 -NCIT:C4365 Primary Retinal Non-Hodgkin Lymphoma 5 33940 -NCIT:C7541 Retinoblastoma 5 33941 -NCIT:C140750 Retinoblastoma by AJCC v8 Stage 6 33942 -NCIT:C140751 Retinoblastoma by AJCC v8 Clinical Stage 7 33943 -NCIT:C140752 Clinical Stage I Retinoblastoma AJCC v8 8 33944 -NCIT:C140753 Clinical Stage II Retinoblastoma AJCC v8 8 33945 -NCIT:C140754 Clinical Stage III Retinoblastoma AJCC v8 8 33946 -NCIT:C140755 Clinical Stage IV Retinoblastoma AJCC v8 8 33947 -NCIT:C140756 Retinoblastoma by AJCC v8 Pathologic Stage 7 33948 -NCIT:C140757 Pathologic Stage I Retinoblastoma AJCC v8 8 33949 -NCIT:C140758 Pathologic Stage II Retinoblastoma AJCC v8 8 33950 -NCIT:C140759 Pathologic Stage III Retinoblastoma AJCC v8 8 33951 -NCIT:C140760 Pathologic Stage IV Retinoblastoma AJCC v8 8 33952 -NCIT:C42596 Sporadic Retinoblastoma 6 33953 -NCIT:C66813 Differentiated Retinoblastoma 6 33954 -NCIT:C66814 Undifferentiated Retinoblastoma 6 33955 -NCIT:C66815 Diffuse Retinoblastoma 6 33956 -NCIT:C7019 Trilateral Retinoblastoma 6 33957 -NCIT:C7846 Intraocular Retinoblastoma 6 33958 -NCIT:C9047 Childhood Intraocular Retinoblastoma 7 33959 -NCIT:C7848 Extraocular Retinoblastoma 6 33960 -NCIT:C9048 Childhood Extraocular Retinoblastoma 7 33961 -NCIT:C7849 Recurrent Retinoblastoma 6 33962 -NCIT:C8495 Hereditary Retinoblastoma 6 33963 -NCIT:C8713 Bilateral Retinoblastoma 6 33964 -NCIT:C8714 Unilateral Retinoblastoma 6 33965 -NCIT:C8555 Metastatic Malignant Neoplasm in the Retina 5 33966 -NCIT:C8601 Retinal Melanoma 5 33967 -NCIT:C3624 Benign Retinal Neoplasm 4 33968 -NCIT:C174550 Adenoma of the Retinal Pigment Epithelium 5 33969 -NCIT:C4921 Retinal Cavernous Hemangioma 5 33970 -NCIT:C66812 Retinocytoma 5 33971 -NCIT:C39783 Retinal Hemangioblastoma 4 33972 -NCIT:C7061 Retinal Cell Neoplasm 4 33973 -NCIT:C66812 Retinocytoma 5 33974 -NCIT:C7541 Retinoblastoma 5 33975 -NCIT:C140750 Retinoblastoma by AJCC v8 Stage 6 33976 -NCIT:C140751 Retinoblastoma by AJCC v8 Clinical Stage 7 33977 -NCIT:C140752 Clinical Stage I Retinoblastoma AJCC v8 8 33978 -NCIT:C140753 Clinical Stage II Retinoblastoma AJCC v8 8 33979 -NCIT:C140754 Clinical Stage III Retinoblastoma AJCC v8 8 33980 -NCIT:C140755 Clinical Stage IV Retinoblastoma AJCC v8 8 33981 -NCIT:C140756 Retinoblastoma by AJCC v8 Pathologic Stage 7 33982 -NCIT:C140757 Pathologic Stage I Retinoblastoma AJCC v8 8 33983 -NCIT:C140758 Pathologic Stage II Retinoblastoma AJCC v8 8 33984 -NCIT:C140759 Pathologic Stage III Retinoblastoma AJCC v8 8 33985 -NCIT:C140760 Pathologic Stage IV Retinoblastoma AJCC v8 8 33986 -NCIT:C42596 Sporadic Retinoblastoma 6 33987 -NCIT:C66813 Differentiated Retinoblastoma 6 33988 -NCIT:C66814 Undifferentiated Retinoblastoma 6 33989 -NCIT:C66815 Diffuse Retinoblastoma 6 33990 -NCIT:C7019 Trilateral Retinoblastoma 6 33991 -NCIT:C7846 Intraocular Retinoblastoma 6 33992 -NCIT:C9047 Childhood Intraocular Retinoblastoma 7 33993 -NCIT:C7848 Extraocular Retinoblastoma 6 33994 -NCIT:C9048 Childhood Extraocular Retinoblastoma 7 33995 -NCIT:C7849 Recurrent Retinoblastoma 6 33996 -NCIT:C8495 Hereditary Retinoblastoma 6 33997 -NCIT:C8713 Bilateral Retinoblastoma 6 33998 -NCIT:C8714 Unilateral Retinoblastoma 6 33999 -NCIT:C5102 Lacrimal System Neoplasm 3 34000 -NCIT:C175307 Benign Lacrimal System Neoplasm 4 34001 -NCIT:C175318 Benign Lacrimal Drainage System Neoplasm 5 34002 -NCIT:C175332 Lacrimal Drainage System Exophytic Papilloma 6 34003 -NCIT:C175334 Lacrimal Drainage System Inverted Papilloma 6 34004 -NCIT:C3626 Benign Nasolacrimal Duct Neoplasm 6 34005 -NCIT:C3621 Benign Lacrimal Gland Neoplasm 5 34006 -NCIT:C175264 Lacrimal Gland Oncocytoma 6 34007 -NCIT:C175272 Lacrimal Gland Myoepithelioma 6 34008 -NCIT:C175291 Lacrimal Gland Warthin Tumor 6 34009 -NCIT:C4542 Lacrimal Gland Pleomorphic Adenoma 6 34010 -NCIT:C175308 Malignant Lacrimal System Neoplasm 4 34011 -NCIT:C175319 Malignant Lacrimal Drainage System Neoplasm 5 34012 -NCIT:C175330 Metastatic Malignant Neoplasm in the Lacrimal Drainage System 6 34013 -NCIT:C175337 Lacrimal Drainage System Carcinoma 6 34014 -NCIT:C175336 Lacrimal Drainage System Adenocarcinoma 7 34015 -NCIT:C175339 Lacrimal Drainage System Mucoepidermoid Carcinoma 7 34016 -NCIT:C175340 Lacrimal Drainage System Adenoid Cystic Carcinoma 7 34017 -NCIT:C175344 Lacrimal Drainage System Lymphoepithelial Carcinoma 7 34018 -NCIT:C6092 Lacrimal Drainage System Squamous Cell Carcinoma 7 34019 -NCIT:C175335 Lacrimal Drainage System Non-Keratinizing Squamous Cell Carcinoma 8 34020 -NCIT:C175345 Lacrimal Drainage System Melanoma 6 34021 -NCIT:C175481 Lacrimal Drainage System Non-Hodgkin Lymphoma 6 34022 -NCIT:C175484 Lacrimal Drainage System Mucosa-Associated Lymphoid Tissue Lymphoma 7 34023 -NCIT:C175487 Lacrimal Drainage System Diffuse Large B-Cell Lymphoma 7 34024 -NCIT:C3567 Malignant Nasolacrimal Duct Neoplasm 6 34025 -NCIT:C175327 Metastatic Malignant Neoplasm in the Lacrimal System 5 34026 -NCIT:C175329 Metastatic Malignant Neoplasm in the Lacrimal Gland 6 34027 -NCIT:C175330 Metastatic Malignant Neoplasm in the Lacrimal Drainage System 6 34028 -NCIT:C175348 Lacrimal System Carcinoma 5 34029 -NCIT:C175337 Lacrimal Drainage System Carcinoma 6 34030 -NCIT:C175336 Lacrimal Drainage System Adenocarcinoma 7 34031 -NCIT:C175339 Lacrimal Drainage System Mucoepidermoid Carcinoma 7 34032 -NCIT:C175340 Lacrimal Drainage System Adenoid Cystic Carcinoma 7 34033 -NCIT:C175344 Lacrimal Drainage System Lymphoepithelial Carcinoma 7 34034 -NCIT:C6092 Lacrimal Drainage System Squamous Cell Carcinoma 7 34035 -NCIT:C175335 Lacrimal Drainage System Non-Keratinizing Squamous Cell Carcinoma 8 34036 -NCIT:C6129 Lacrimal Gland Carcinoma 6 34037 -NCIT:C175274 Lacrimal Gland Myoepithelial Carcinoma 7 34038 -NCIT:C175288 Lacrimal Gland Epithelial-Myoepithelial Carcinoma 7 34039 -NCIT:C4540 Lacrimal Gland Adenoid Cystic Carcinoma 7 34040 -NCIT:C4541 Lacrimal Gland Adenocarcinoma 7 34041 -NCIT:C175267 Lacrimal Gland Oncocytic Adenocarcinoma 8 34042 -NCIT:C175290 Lacrimal Gland Acinic Cell Carcinoma 8 34043 -NCIT:C6091 Lacrimal Gland Mucoepidermoid Carcinoma 7 34044 -NCIT:C6804 Lacrimal Gland Carcinoma ex Pleomorphic Adenoma 7 34045 -NCIT:C175479 Lacrimal System Non-Hodgkin Lymphoma 5 34046 -NCIT:C175480 Lacrimal Gland Non-Hodgkin Lymphoma 6 34047 -NCIT:C175483 Lacrimal Gland Mucosa-Associated Lymphoid Tissue Lymphoma 7 34048 -NCIT:C175486 Lacrimal Gland Diffuse Large B-Cell Lymphoma 7 34049 -NCIT:C175488 Lacrimal Gland Follicular Lymphoma 7 34050 -NCIT:C175481 Lacrimal Drainage System Non-Hodgkin Lymphoma 6 34051 -NCIT:C175484 Lacrimal Drainage System Mucosa-Associated Lymphoid Tissue Lymphoma 7 34052 -NCIT:C175487 Lacrimal Drainage System Diffuse Large B-Cell Lymphoma 7 34053 -NCIT:C175482 Lacrimal System Mucosa-Associated Lymphoid Tissue Lymphoma 6 34054 -NCIT:C175483 Lacrimal Gland Mucosa-Associated Lymphoid Tissue Lymphoma 7 34055 -NCIT:C175484 Lacrimal Drainage System Mucosa-Associated Lymphoid Tissue Lymphoma 7 34056 -NCIT:C175485 Lacrimal System Diffuse Large B-Cell Lymphoma 6 34057 -NCIT:C175486 Lacrimal Gland Diffuse Large B-Cell Lymphoma 7 34058 -NCIT:C175487 Lacrimal Drainage System Diffuse Large B-Cell Lymphoma 7 34059 -NCIT:C3563 Malignant Lacrimal Gland Neoplasm 5 34060 -NCIT:C175279 Lacrimal Gland Carcinosarcoma 6 34061 -NCIT:C175329 Metastatic Malignant Neoplasm in the Lacrimal Gland 6 34062 -NCIT:C175480 Lacrimal Gland Non-Hodgkin Lymphoma 6 34063 -NCIT:C175483 Lacrimal Gland Mucosa-Associated Lymphoid Tissue Lymphoma 7 34064 -NCIT:C175486 Lacrimal Gland Diffuse Large B-Cell Lymphoma 7 34065 -NCIT:C175488 Lacrimal Gland Follicular Lymphoma 7 34066 -NCIT:C6129 Lacrimal Gland Carcinoma 6 34067 -NCIT:C175274 Lacrimal Gland Myoepithelial Carcinoma 7 34068 -NCIT:C175288 Lacrimal Gland Epithelial-Myoepithelial Carcinoma 7 34069 -NCIT:C4540 Lacrimal Gland Adenoid Cystic Carcinoma 7 34070 -NCIT:C4541 Lacrimal Gland Adenocarcinoma 7 34071 -NCIT:C175267 Lacrimal Gland Oncocytic Adenocarcinoma 8 34072 -NCIT:C175290 Lacrimal Gland Acinic Cell Carcinoma 8 34073 -NCIT:C6091 Lacrimal Gland Mucoepidermoid Carcinoma 7 34074 -NCIT:C6804 Lacrimal Gland Carcinoma ex Pleomorphic Adenoma 7 34075 -NCIT:C175316 Lacrimal Drainage System Neoplasm 4 34076 -NCIT:C175259 Nasolacrimal Duct Neoplasm 5 34077 -NCIT:C3567 Malignant Nasolacrimal Duct Neoplasm 6 34078 -NCIT:C3626 Benign Nasolacrimal Duct Neoplasm 6 34079 -NCIT:C175318 Benign Lacrimal Drainage System Neoplasm 5 34080 -NCIT:C175332 Lacrimal Drainage System Exophytic Papilloma 6 34081 -NCIT:C175334 Lacrimal Drainage System Inverted Papilloma 6 34082 -NCIT:C3626 Benign Nasolacrimal Duct Neoplasm 6 34083 -NCIT:C175319 Malignant Lacrimal Drainage System Neoplasm 5 34084 -NCIT:C175330 Metastatic Malignant Neoplasm in the Lacrimal Drainage System 6 34085 -NCIT:C175337 Lacrimal Drainage System Carcinoma 6 34086 -NCIT:C175336 Lacrimal Drainage System Adenocarcinoma 7 34087 -NCIT:C175339 Lacrimal Drainage System Mucoepidermoid Carcinoma 7 34088 -NCIT:C175340 Lacrimal Drainage System Adenoid Cystic Carcinoma 7 34089 -NCIT:C175344 Lacrimal Drainage System Lymphoepithelial Carcinoma 7 34090 -NCIT:C6092 Lacrimal Drainage System Squamous Cell Carcinoma 7 34091 -NCIT:C175335 Lacrimal Drainage System Non-Keratinizing Squamous Cell Carcinoma 8 34092 -NCIT:C175345 Lacrimal Drainage System Melanoma 6 34093 -NCIT:C175481 Lacrimal Drainage System Non-Hodgkin Lymphoma 6 34094 -NCIT:C175484 Lacrimal Drainage System Mucosa-Associated Lymphoid Tissue Lymphoma 7 34095 -NCIT:C175487 Lacrimal Drainage System Diffuse Large B-Cell Lymphoma 7 34096 -NCIT:C3567 Malignant Nasolacrimal Duct Neoplasm 6 34097 -NCIT:C4360 Lacrimal Gland Neoplasm 4 34098 -NCIT:C3563 Malignant Lacrimal Gland Neoplasm 5 34099 -NCIT:C175279 Lacrimal Gland Carcinosarcoma 6 34100 -NCIT:C175329 Metastatic Malignant Neoplasm in the Lacrimal Gland 6 34101 -NCIT:C175480 Lacrimal Gland Non-Hodgkin Lymphoma 6 34102 -NCIT:C175483 Lacrimal Gland Mucosa-Associated Lymphoid Tissue Lymphoma 7 34103 -NCIT:C175486 Lacrimal Gland Diffuse Large B-Cell Lymphoma 7 34104 -NCIT:C175488 Lacrimal Gland Follicular Lymphoma 7 34105 -NCIT:C6129 Lacrimal Gland Carcinoma 6 34106 -NCIT:C175274 Lacrimal Gland Myoepithelial Carcinoma 7 34107 -NCIT:C175288 Lacrimal Gland Epithelial-Myoepithelial Carcinoma 7 34108 -NCIT:C4540 Lacrimal Gland Adenoid Cystic Carcinoma 7 34109 -NCIT:C4541 Lacrimal Gland Adenocarcinoma 7 34110 -NCIT:C175267 Lacrimal Gland Oncocytic Adenocarcinoma 8 34111 -NCIT:C175290 Lacrimal Gland Acinic Cell Carcinoma 8 34112 -NCIT:C6091 Lacrimal Gland Mucoepidermoid Carcinoma 7 34113 -NCIT:C6804 Lacrimal Gland Carcinoma ex Pleomorphic Adenoma 7 34114 -NCIT:C3621 Benign Lacrimal Gland Neoplasm 5 34115 -NCIT:C175264 Lacrimal Gland Oncocytoma 6 34116 -NCIT:C175272 Lacrimal Gland Myoepithelioma 6 34117 -NCIT:C175291 Lacrimal Gland Warthin Tumor 6 34118 -NCIT:C4542 Lacrimal Gland Pleomorphic Adenoma 6 34119 -NCIT:C3052 Digestive System Neoplasm 2 34120 -NCIT:C172852 Digestive System Soft Tissue Neoplasm 3 34121 -NCIT:C172849 Digestive System Sarcoma 4 34122 -NCIT:C150704 EBV-Positive Inflammatory Follicular Dendritic Cell Sarcoma of the Digestive System 5 34123 -NCIT:C172951 Digestive System Leiomyosarcoma 5 34124 -NCIT:C188065 Pancreatic Leiomyosarcoma 6 34125 -NCIT:C27200 Gastric Leiomyosarcoma 6 34126 -NCIT:C5334 Esophageal Leiomyosarcoma 6 34127 -NCIT:C5599 Anal Leiomyosarcoma 6 34128 -NCIT:C5756 Liver Leiomyosarcoma 6 34129 -NCIT:C5841 Gallbladder Leiomyosarcoma 6 34130 -NCIT:C5848 Extrahepatic Bile Duct Leiomyosarcoma 6 34131 -NCIT:C7085 Small Intestinal Leiomyosarcoma 6 34132 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 7 34133 -NCIT:C96435 Appendix Leiomyosarcoma 6 34134 -NCIT:C96509 Colorectal Leiomyosarcoma 6 34135 -NCIT:C5494 Colon Leiomyosarcoma 7 34136 -NCIT:C5549 Rectal Leiomyosarcoma 7 34137 -NCIT:C172952 Digestive System Rhabdomyosarcoma 5 34138 -NCIT:C5610 Anal Rhabdomyosarcoma 6 34139 -NCIT:C5627 Rectal Rhabdomyosarcoma 6 34140 -NCIT:C5834 Liver Rhabdomyosarcoma 6 34141 -NCIT:C5839 Gallbladder Rhabdomyosarcoma 6 34142 -NCIT:C5860 Extrahepatic Bile Duct Rhabdomyosarcoma 6 34143 -NCIT:C5847 Extrahepatic Bile Duct Embryonal Rhabdomyosarcoma 7 34144 -NCIT:C95623 Esophageal Rhabdomyosarcoma 6 34145 -NCIT:C172955 Digestive System Kaposi Sarcoma 5 34146 -NCIT:C5529 Gastric Kaposi Sarcoma 6 34147 -NCIT:C5624 AIDS-Related Gastric Kaposi Sarcoma 7 34148 -NCIT:C5602 Anal Kaposi Sarcoma 6 34149 -NCIT:C5706 Esophageal Kaposi Sarcoma 6 34150 -NCIT:C5842 Gallbladder Kaposi Sarcoma 6 34151 -NCIT:C96059 Small Intestinal Kaposi Sarcoma 6 34152 -NCIT:C96434 Appendix Kaposi Sarcoma 6 34153 -NCIT:C96510 Colorectal Kaposi Sarcoma 6 34154 -NCIT:C5516 Colon Kaposi Sarcoma 7 34155 -NCIT:C5550 Rectal Kaposi Sarcoma 7 34156 -NCIT:C96844 Liver Kaposi Sarcoma 6 34157 -NCIT:C96951 Extrahepatic Bile Duct Kaposi Sarcoma 6 34158 -NCIT:C172980 Gastrointestinal Clear Cell Sarcoma/Malignant Gastrointestinal Neuroectodermal Tumor 5 34159 -NCIT:C27439 Gastric Sarcoma 5 34160 -NCIT:C27200 Gastric Leiomyosarcoma 6 34161 -NCIT:C5488 Gastric Liposarcoma 6 34162 -NCIT:C5529 Gastric Kaposi Sarcoma 6 34163 -NCIT:C5624 AIDS-Related Gastric Kaposi Sarcoma 7 34164 -NCIT:C95897 Gastric Malignant Gastrointestinal Stromal Tumor 6 34165 -NCIT:C95899 Gastric Synovial Sarcoma 6 34166 -NCIT:C4437 Liver Sarcoma 5 34167 -NCIT:C27096 Liver Embryonal Sarcoma 6 34168 -NCIT:C189934 Childhood Liver Embryonal Sarcoma 7 34169 -NCIT:C189935 Adult Liver Embryonal Sarcoma 7 34170 -NCIT:C4438 Liver Angiosarcoma 6 34171 -NCIT:C190020 Childhood Liver Angiosarcoma 7 34172 -NCIT:C5756 Liver Leiomyosarcoma 6 34173 -NCIT:C5832 Liver Fibrosarcoma 6 34174 -NCIT:C5833 Liver Extraskeletal Osteosarcoma 6 34175 -NCIT:C5834 Liver Rhabdomyosarcoma 6 34176 -NCIT:C96844 Liver Kaposi Sarcoma 6 34177 -NCIT:C96845 Liver Synovial Sarcoma 6 34178 -NCIT:C5029 Extrahepatic Bile Duct Sarcoma 5 34179 -NCIT:C5848 Extrahepatic Bile Duct Leiomyosarcoma 6 34180 -NCIT:C5860 Extrahepatic Bile Duct Rhabdomyosarcoma 6 34181 -NCIT:C5847 Extrahepatic Bile Duct Embryonal Rhabdomyosarcoma 7 34182 -NCIT:C96951 Extrahepatic Bile Duct Kaposi Sarcoma 6 34183 -NCIT:C5335 Small Intestinal Sarcoma 5 34184 -NCIT:C5336 Small Intestinal Fibrosarcoma 6 34185 -NCIT:C7085 Small Intestinal Leiomyosarcoma 6 34186 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 7 34187 -NCIT:C82972 Duodenal Extraskeletal Osteosarcoma 6 34188 -NCIT:C96059 Small Intestinal Kaposi Sarcoma 6 34189 -NCIT:C96060 Small Intestinal Angiosarcoma 6 34190 -NCIT:C5341 Esophageal Sarcoma 5 34191 -NCIT:C5334 Esophageal Leiomyosarcoma 6 34192 -NCIT:C5705 Esophageal Liposarcoma 6 34193 -NCIT:C5706 Esophageal Kaposi Sarcoma 6 34194 -NCIT:C92185 Esophageal Malignant Peripheral Nerve Sheath Tumor 6 34195 -NCIT:C95623 Esophageal Rhabdomyosarcoma 6 34196 -NCIT:C95624 Esophageal Synovial Sarcoma 6 34197 -NCIT:C5611 Anal Sarcoma 5 34198 -NCIT:C5599 Anal Leiomyosarcoma 6 34199 -NCIT:C5602 Anal Kaposi Sarcoma 6 34200 -NCIT:C5610 Anal Rhabdomyosarcoma 6 34201 -NCIT:C5715 Pancreatic Sarcoma 5 34202 -NCIT:C188065 Pancreatic Leiomyosarcoma 6 34203 -NCIT:C5736 Gallbladder Sarcoma 5 34204 -NCIT:C5839 Gallbladder Rhabdomyosarcoma 6 34205 -NCIT:C5840 Gallbladder Angiosarcoma 6 34206 -NCIT:C5841 Gallbladder Leiomyosarcoma 6 34207 -NCIT:C5842 Gallbladder Kaposi Sarcoma 6 34208 -NCIT:C96508 Colorectal Sarcoma 5 34209 -NCIT:C5495 Colon Sarcoma 6 34210 -NCIT:C156279 Colon Liposarcoma 7 34211 -NCIT:C5494 Colon Leiomyosarcoma 7 34212 -NCIT:C5516 Colon Kaposi Sarcoma 7 34213 -NCIT:C5548 Rectal Sarcoma 6 34214 -NCIT:C5549 Rectal Leiomyosarcoma 7 34215 -NCIT:C5550 Rectal Kaposi Sarcoma 7 34216 -NCIT:C5627 Rectal Rhabdomyosarcoma 7 34217 -NCIT:C96509 Colorectal Leiomyosarcoma 6 34218 -NCIT:C5494 Colon Leiomyosarcoma 7 34219 -NCIT:C5549 Rectal Leiomyosarcoma 7 34220 -NCIT:C96510 Colorectal Kaposi Sarcoma 6 34221 -NCIT:C5516 Colon Kaposi Sarcoma 7 34222 -NCIT:C5550 Rectal Kaposi Sarcoma 7 34223 -NCIT:C96511 Colorectal Angiosarcoma 6 34224 -NCIT:C172851 Digestive System Inflammatory Myofibroblastic Tumor 4 34225 -NCIT:C5858 Liver Inflammatory Myofibroblastic Tumor 5 34226 -NCIT:C7022 Gastric Inflammatory Myofibroblastic Tumor 5 34227 -NCIT:C172853 Esophageal Soft Tissue Neoplasm 4 34228 -NCIT:C27430 Esophageal Gastrointestinal Stromal Tumor 5 34229 -NCIT:C3866 Esophageal Leiomyoma 5 34230 -NCIT:C5341 Esophageal Sarcoma 5 34231 -NCIT:C5334 Esophageal Leiomyosarcoma 6 34232 -NCIT:C5705 Esophageal Liposarcoma 6 34233 -NCIT:C5706 Esophageal Kaposi Sarcoma 6 34234 -NCIT:C92185 Esophageal Malignant Peripheral Nerve Sheath Tumor 6 34235 -NCIT:C95623 Esophageal Rhabdomyosarcoma 6 34236 -NCIT:C95624 Esophageal Synovial Sarcoma 6 34237 -NCIT:C5701 Esophageal Lipoma 5 34238 -NCIT:C5702 Esophageal Fibroma 5 34239 -NCIT:C172854 Hepatobiliary Soft Tissue Neoplasm 4 34240 -NCIT:C172855 Gallbladder Soft Tissue Neoplasm 5 34241 -NCIT:C5736 Gallbladder Sarcoma 6 34242 -NCIT:C5839 Gallbladder Rhabdomyosarcoma 7 34243 -NCIT:C5840 Gallbladder Angiosarcoma 7 34244 -NCIT:C5841 Gallbladder Leiomyosarcoma 7 34245 -NCIT:C5842 Gallbladder Kaposi Sarcoma 7 34246 -NCIT:C5747 Gallbladder Leiomyoma 6 34247 -NCIT:C5835 Gallbladder Lipoma 6 34248 -NCIT:C172856 Liver Soft Tissue Neoplasm 5 34249 -NCIT:C27485 Liver Angiomyolipoma 6 34250 -NCIT:C4437 Liver Sarcoma 6 34251 -NCIT:C27096 Liver Embryonal Sarcoma 7 34252 -NCIT:C189934 Childhood Liver Embryonal Sarcoma 8 34253 -NCIT:C189935 Adult Liver Embryonal Sarcoma 8 34254 -NCIT:C4438 Liver Angiosarcoma 7 34255 -NCIT:C190020 Childhood Liver Angiosarcoma 8 34256 -NCIT:C5756 Liver Leiomyosarcoma 7 34257 -NCIT:C5832 Liver Fibrosarcoma 7 34258 -NCIT:C5833 Liver Extraskeletal Osteosarcoma 7 34259 -NCIT:C5834 Liver Rhabdomyosarcoma 7 34260 -NCIT:C96844 Liver Kaposi Sarcoma 7 34261 -NCIT:C96845 Liver Synovial Sarcoma 7 34262 -NCIT:C5750 Liver Lipoma 6 34263 -NCIT:C5753 Liver Leiomyoma 6 34264 -NCIT:C5858 Liver Inflammatory Myofibroblastic Tumor 6 34265 -NCIT:C172857 Intestinal Soft Tissue Neoplasm 4 34266 -NCIT:C5339 Small Intestinal Lipoma 5 34267 -NCIT:C5677 Colorectal Leiomyoma 5 34268 -NCIT:C5492 Colon Leiomyoma 6 34269 -NCIT:C5552 Rectal Leiomyoma 6 34270 -NCIT:C5678 Colorectal Lipoma 5 34271 -NCIT:C5493 Colon Lipoma 6 34272 -NCIT:C5551 Rectal Lipoma 6 34273 -NCIT:C7725 Small Intestinal Leiomyoma 5 34274 -NCIT:C172940 Digestive System Solitary Fibrous Tumor 4 34275 -NCIT:C5752 Liver Solitary Fibrous Tumor 5 34276 -NCIT:C172941 Inflammatory Fibroid Polyp 4 34277 -NCIT:C172942 Digestive System Leiomyoma 4 34278 -NCIT:C3866 Esophageal Leiomyoma 5 34279 -NCIT:C3876 Gastric Leiomyoma 5 34280 -NCIT:C5514 Appendix Leiomyoma 5 34281 -NCIT:C5608 Anal Leiomyoma 5 34282 -NCIT:C5677 Colorectal Leiomyoma 5 34283 -NCIT:C5492 Colon Leiomyoma 6 34284 -NCIT:C5552 Rectal Leiomyoma 6 34285 -NCIT:C5747 Gallbladder Leiomyoma 5 34286 -NCIT:C5753 Liver Leiomyoma 5 34287 -NCIT:C5855 Extrahepatic Bile Duct Leiomyoma 5 34288 -NCIT:C7725 Small Intestinal Leiomyoma 5 34289 -NCIT:C172945 Digestive System Lipoma 4 34290 -NCIT:C43576 Appendix Lipoma 5 34291 -NCIT:C5258 Gastric Lipoma 5 34292 -NCIT:C5339 Small Intestinal Lipoma 5 34293 -NCIT:C5678 Colorectal Lipoma 5 34294 -NCIT:C5493 Colon Lipoma 6 34295 -NCIT:C5551 Rectal Lipoma 6 34296 -NCIT:C5701 Esophageal Lipoma 5 34297 -NCIT:C5750 Liver Lipoma 5 34298 -NCIT:C5835 Gallbladder Lipoma 5 34299 -NCIT:C5854 Extrahepatic Bile Duct Lipoma 5 34300 -NCIT:C27940 Gastrointestinal Autonomic Nerve Tumor 4 34301 -NCIT:C35778 Gastrointestinal Stromal Tumor of the Gastrointestinal Tract 4 34302 -NCIT:C27430 Esophageal Gastrointestinal Stromal Tumor 5 34303 -NCIT:C27735 Colorectal Gastrointestinal Stromal Tumor 5 34304 -NCIT:C5806 Gastric Gastrointestinal Stromal Tumor 5 34305 -NCIT:C87825 Stage IA Gastric Gastrointestinal Stromal Tumor 6 34306 -NCIT:C87826 Stage IB Gastric Gastrointestinal Stromal Tumor 6 34307 -NCIT:C87827 Stage II Gastric Gastrointestinal Stromal Tumor 6 34308 -NCIT:C87828 Stage IIIA Gastric Gastrointestinal Stromal Tumor 6 34309 -NCIT:C87829 Stage IIIB Gastric Gastrointestinal Stromal Tumor 6 34310 -NCIT:C87830 Stage IV Gastric Gastrointestinal Stromal Tumor 6 34311 -NCIT:C95895 Benign Gastric Gastrointestinal Stromal Tumor 6 34312 -NCIT:C95897 Gastric Malignant Gastrointestinal Stromal Tumor 6 34313 -NCIT:C95898 Gastric Gastrointestinal Stromal Tumor of Uncertain Malignant Potential 6 34314 -NCIT:C5811 Small Intestinal Gastrointestinal Stromal Tumor 5 34315 -NCIT:C87831 Stage I Small Intestinal Gastrointestinal Stromal Tumor 6 34316 -NCIT:C87832 Stage II Small Intestinal Gastrointestinal Stromal Tumor 6 34317 -NCIT:C87833 Stage IIIA Small Intestinal Gastrointestinal Stromal Tumor 6 34318 -NCIT:C87834 Stage IIIB Small Intestinal Gastrointestinal Stromal Tumor 6 34319 -NCIT:C87835 Stage IV Small Intestinal Gastrointestinal Stromal Tumor 6 34320 -NCIT:C5487 Gastric Soft Tissue Neoplasm 4 34321 -NCIT:C27438 Benign Gastric Soft Tissue Neoplasm 5 34322 -NCIT:C3876 Gastric Leiomyoma 6 34323 -NCIT:C5258 Gastric Lipoma 6 34324 -NCIT:C5481 Gastric Hemangioma 6 34325 -NCIT:C5482 Gastric Lymphangioma 6 34326 -NCIT:C95895 Benign Gastric Gastrointestinal Stromal Tumor 6 34327 -NCIT:C95902 Gastric Plexiform Fibromyxoma 6 34328 -NCIT:C27439 Gastric Sarcoma 5 34329 -NCIT:C27200 Gastric Leiomyosarcoma 6 34330 -NCIT:C5488 Gastric Liposarcoma 6 34331 -NCIT:C5529 Gastric Kaposi Sarcoma 6 34332 -NCIT:C5624 AIDS-Related Gastric Kaposi Sarcoma 7 34333 -NCIT:C95897 Gastric Malignant Gastrointestinal Stromal Tumor 6 34334 -NCIT:C95899 Gastric Synovial Sarcoma 6 34335 -NCIT:C5806 Gastric Gastrointestinal Stromal Tumor 5 34336 -NCIT:C87825 Stage IA Gastric Gastrointestinal Stromal Tumor 6 34337 -NCIT:C87826 Stage IB Gastric Gastrointestinal Stromal Tumor 6 34338 -NCIT:C87827 Stage II Gastric Gastrointestinal Stromal Tumor 6 34339 -NCIT:C87828 Stage IIIA Gastric Gastrointestinal Stromal Tumor 6 34340 -NCIT:C87829 Stage IIIB Gastric Gastrointestinal Stromal Tumor 6 34341 -NCIT:C87830 Stage IV Gastric Gastrointestinal Stromal Tumor 6 34342 -NCIT:C95895 Benign Gastric Gastrointestinal Stromal Tumor 6 34343 -NCIT:C95897 Gastric Malignant Gastrointestinal Stromal Tumor 6 34344 -NCIT:C95898 Gastric Gastrointestinal Stromal Tumor of Uncertain Malignant Potential 6 34345 -NCIT:C7022 Gastric Inflammatory Myofibroblastic Tumor 5 34346 -NCIT:C95900 Gastric Glomus Tumor 5 34347 -NCIT:C5751 Liver Mesenchymal Hamartoma 4 34348 -NCIT:C5856 Benign Extrahepatic Bile Duct Soft Tissue Neoplasm 4 34349 -NCIT:C5853 Extrahepatic Bile Duct Fibroma 5 34350 -NCIT:C5854 Extrahepatic Bile Duct Lipoma 5 34351 -NCIT:C5855 Extrahepatic Bile Duct Leiomyoma 5 34352 -NCIT:C189869 Childhood Digestive System Neoplasm 3 34353 -NCIT:C189870 Childhood Malignant Digestive System Neoplasm 4 34354 -NCIT:C118808 Childhood Colorectal Carcinoma 5 34355 -NCIT:C118823 Childhood Rectal Carcinoma 6 34356 -NCIT:C118812 Childhood Esophageal Carcinoma 5 34357 -NCIT:C118813 Childhood Gastric Carcinoma 5 34358 -NCIT:C118826 Childhood Malignant Small Intestinal Neoplasm 5 34359 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 6 34360 -NCIT:C123933 Childhood Small Intestinal Carcinoma 6 34361 -NCIT:C190023 Childhood Pancreatoblastoma 5 34362 -NCIT:C190024 Childhood Pancreatic Acinar Cell Carcinoma 5 34363 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 6 34364 -NCIT:C190027 Childhood Solid Pseudopapillary Neoplasm of the Pancreas 5 34365 -NCIT:C190028 Childhood Gastroblastoma 5 34366 -NCIT:C7708 Childhood Malignant Liver Neoplasm 5 34367 -NCIT:C189934 Childhood Liver Embryonal Sarcoma 6 34368 -NCIT:C190020 Childhood Liver Angiosarcoma 6 34369 -NCIT:C3728 Hepatoblastoma 6 34370 -NCIT:C142854 Refractory Hepatoblastoma 7 34371 -NCIT:C161838 Hepatocellular Malignant Neoplasm, Not Otherwise Specified 7 34372 -NCIT:C189923 Epithelial Hepatoblastoma 7 34373 -NCIT:C189924 Epithelial Hepatoblastoma with Pleomorphic Pattern 8 34374 -NCIT:C7093 Hepatoblastoma with Pure Fetal Epithelial Differentiation 8 34375 -NCIT:C7094 Hepatoblastoma with Combined Fetal and Embryonal Epithelial Differentiation 8 34376 -NCIT:C7095 Macrotrabecular Hepatoblastoma 8 34377 -NCIT:C7096 Small Cell Undifferentiated Hepatoblastoma 8 34378 -NCIT:C189927 Hepatoblastoma by PRETEXT Stage 7 34379 -NCIT:C7139 PRETEXT Stage 1 Hepatoblastoma 8 34380 -NCIT:C7140 PRETEXT Stage 2 Hepatoblastoma 8 34381 -NCIT:C7141 PRETEXT Stage 3 Hepatoblastoma 8 34382 -NCIT:C7142 PRETEXT Stage 4 Hepatoblastoma 8 34383 -NCIT:C189929 Hepatoblastoma by Postsurgical Stage 7 34384 -NCIT:C7143 Postsurgical Stage IV Hepatoblastoma 8 34385 -NCIT:C7144 Postsurgical Stage III Hepatoblastoma 8 34386 -NCIT:C7145 Postsurgical Stage II Hepatoblastoma 8 34387 -NCIT:C7146 Postsurgical Stage I Hepatoblastoma 8 34388 -NCIT:C7097 Mixed Epithelial and Mesenchymal Hepatoblastoma 7 34389 -NCIT:C189926 Non-Teratoid Hepatoblastoma 8 34390 -NCIT:C7098 Teratoid Hepatoblastoma 8 34391 -NCIT:C8641 Unresectable Hepatoblastoma 7 34392 -NCIT:C8642 Resectable Hepatoblastoma 7 34393 -NCIT:C8643 Recurrent Hepatoblastoma 7 34394 -NCIT:C7839 Recurrent Childhood Malignant Liver Neoplasm 6 34395 -NCIT:C8643 Recurrent Hepatoblastoma 7 34396 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 7 34397 -NCIT:C7955 Childhood Hepatocellular Carcinoma 6 34398 -NCIT:C189932 Childhood Fibrolamellar Carcinoma 7 34399 -NCIT:C5708 Stage III Childhood Hepatocellular Carcinoma AJCC v7 7 34400 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 7 34401 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 7 34402 -NCIT:C7838 Stage IV Childhood Hepatocellular Carcinoma AJCC v7 7 34403 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 7 34404 -NCIT:C96830 Calcifying Nested Stromal-Epithelial Tumor 6 34405 -NCIT:C96847 Extrarenal Rhabdoid Tumor of the Liver 6 34406 -NCIT:C190076 Childhood Digestive System Neuroendocrine Tumor 4 34407 -NCIT:C190029 Childhood Appendix Neuroendocrine Tumor 5 34408 -NCIT:C190580 Childhood Benign Digestive System Neoplasm 4 34409 -NCIT:C190581 Childhood Benign Liver Neoplasm 5 34410 -NCIT:C190019 Liver Congenital Hemangioma 6 34411 -NCIT:C5751 Liver Mesenchymal Hamartoma 6 34412 -NCIT:C96840 Liver Infantile Hemangioma 6 34413 -NCIT:C27368 Childhood Liver Neoplasm 4 34414 -NCIT:C190581 Childhood Benign Liver Neoplasm 5 34415 -NCIT:C190019 Liver Congenital Hemangioma 6 34416 -NCIT:C5751 Liver Mesenchymal Hamartoma 6 34417 -NCIT:C96840 Liver Infantile Hemangioma 6 34418 -NCIT:C7708 Childhood Malignant Liver Neoplasm 5 34419 -NCIT:C189934 Childhood Liver Embryonal Sarcoma 6 34420 -NCIT:C190020 Childhood Liver Angiosarcoma 6 34421 -NCIT:C3728 Hepatoblastoma 6 34422 -NCIT:C142854 Refractory Hepatoblastoma 7 34423 -NCIT:C161838 Hepatocellular Malignant Neoplasm, Not Otherwise Specified 7 34424 -NCIT:C189923 Epithelial Hepatoblastoma 7 34425 -NCIT:C189924 Epithelial Hepatoblastoma with Pleomorphic Pattern 8 34426 -NCIT:C7093 Hepatoblastoma with Pure Fetal Epithelial Differentiation 8 34427 -NCIT:C7094 Hepatoblastoma with Combined Fetal and Embryonal Epithelial Differentiation 8 34428 -NCIT:C7095 Macrotrabecular Hepatoblastoma 8 34429 -NCIT:C7096 Small Cell Undifferentiated Hepatoblastoma 8 34430 -NCIT:C189927 Hepatoblastoma by PRETEXT Stage 7 34431 -NCIT:C7139 PRETEXT Stage 1 Hepatoblastoma 8 34432 -NCIT:C7140 PRETEXT Stage 2 Hepatoblastoma 8 34433 -NCIT:C7141 PRETEXT Stage 3 Hepatoblastoma 8 34434 -NCIT:C7142 PRETEXT Stage 4 Hepatoblastoma 8 34435 -NCIT:C189929 Hepatoblastoma by Postsurgical Stage 7 34436 -NCIT:C7143 Postsurgical Stage IV Hepatoblastoma 8 34437 -NCIT:C7144 Postsurgical Stage III Hepatoblastoma 8 34438 -NCIT:C7145 Postsurgical Stage II Hepatoblastoma 8 34439 -NCIT:C7146 Postsurgical Stage I Hepatoblastoma 8 34440 -NCIT:C7097 Mixed Epithelial and Mesenchymal Hepatoblastoma 7 34441 -NCIT:C189926 Non-Teratoid Hepatoblastoma 8 34442 -NCIT:C7098 Teratoid Hepatoblastoma 8 34443 -NCIT:C8641 Unresectable Hepatoblastoma 7 34444 -NCIT:C8642 Resectable Hepatoblastoma 7 34445 -NCIT:C8643 Recurrent Hepatoblastoma 7 34446 -NCIT:C7839 Recurrent Childhood Malignant Liver Neoplasm 6 34447 -NCIT:C8643 Recurrent Hepatoblastoma 7 34448 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 7 34449 -NCIT:C7955 Childhood Hepatocellular Carcinoma 6 34450 -NCIT:C189932 Childhood Fibrolamellar Carcinoma 7 34451 -NCIT:C5708 Stage III Childhood Hepatocellular Carcinoma AJCC v7 7 34452 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 7 34453 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 7 34454 -NCIT:C7838 Stage IV Childhood Hepatocellular Carcinoma AJCC v7 7 34455 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 7 34456 -NCIT:C96830 Calcifying Nested Stromal-Epithelial Tumor 6 34457 -NCIT:C96847 Extrarenal Rhabdoid Tumor of the Liver 6 34458 -NCIT:C27721 Digestive System Neuroendocrine Neoplasm 3 34459 -NCIT:C156492 Metastatic Digestive System Neuroendocrine Neoplasm 4 34460 -NCIT:C115245 Metastatic Digestive System Neuroendocrine Tumor G1 5 34461 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 6 34462 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 7 34463 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 6 34464 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 6 34465 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 7 34466 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 5 34467 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 6 34468 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 7 34469 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 6 34470 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 7 34471 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 6 34472 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 7 34473 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 34474 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 34475 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 6 34476 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 7 34477 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 34478 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 34479 -NCIT:C158089 Advanced Digestive System Neuroendocrine Neoplasm 5 34480 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 6 34481 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 7 34482 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 7 34483 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 6 34484 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 7 34485 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 7 34486 -NCIT:C165448 Advanced Pancreatic Neuroendocrine Neoplasm 6 34487 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 7 34488 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 34489 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 34490 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 6 34491 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 7 34492 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 6 34493 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 7 34494 -NCIT:C165447 Metastatic Pancreatic Neuroendocrine Neoplasm 5 34495 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 6 34496 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 7 34497 -NCIT:C156488 Metastatic Pancreatic Neuroendocrine Tumor 6 34498 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 7 34499 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 34500 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 34501 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 7 34502 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 7 34503 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 34504 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 7 34505 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 34506 -NCIT:C165448 Advanced Pancreatic Neuroendocrine Neoplasm 6 34507 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 7 34508 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 34509 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 34510 -NCIT:C167329 Metastatic Midgut Neuroendocrine Tumor 5 34511 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 6 34512 -NCIT:C178271 Locally Advanced Digestive System Neuroendocrine Neoplasm 5 34513 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 6 34514 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 7 34515 -NCIT:C158090 Locally Advanced Unresectable Digestive System Neuroendocrine Neoplasm 6 34516 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 6 34517 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 6 34518 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 6 34519 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 6 34520 -NCIT:C179415 Metastatic Digestive System Neuroendocrine Tumor G2 5 34521 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 6 34522 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 6 34523 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 7 34524 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 6 34525 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 7 34526 -NCIT:C158088 Refractory Digestive System Neuroendocrine Neoplasm 4 34527 -NCIT:C155937 Refractory Digestive System Neuroendocrine Carcinoma 5 34528 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 6 34529 -NCIT:C165455 Unresectable Digestive System Neuroendocrine Neoplasm 4 34530 -NCIT:C155935 Unresectable Digestive System Neuroendocrine Carcinoma 5 34531 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 6 34532 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 6 34533 -NCIT:C158090 Locally Advanced Unresectable Digestive System Neuroendocrine Neoplasm 5 34534 -NCIT:C165456 Unresectable Pancreatic Neuroendocrine Neoplasm 5 34535 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 6 34536 -NCIT:C190782 Unresectable Pancreatic Neuroendocrine Tumor 6 34537 -NCIT:C167331 Unresectable Midgut Neuroendocrine Tumor 5 34538 -NCIT:C179419 Unresectable Digestive System Neuroendocrine Tumor G1 5 34539 -NCIT:C187345 Unresectable Digestive System Neuroendocrine Tumor G2 5 34540 -NCIT:C188228 Recurrent Digestive System Neuroendocrine Neoplasm 4 34541 -NCIT:C155938 Recurrent Digestive System Neuroendocrine Carcinoma 5 34542 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 6 34543 -NCIT:C27031 Pancreatic Neuroendocrine Neoplasm 4 34544 -NCIT:C165447 Metastatic Pancreatic Neuroendocrine Neoplasm 5 34545 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 6 34546 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 7 34547 -NCIT:C156488 Metastatic Pancreatic Neuroendocrine Tumor 6 34548 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 7 34549 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 34550 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 34551 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 7 34552 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 7 34553 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 34554 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 7 34555 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 34556 -NCIT:C165448 Advanced Pancreatic Neuroendocrine Neoplasm 6 34557 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 7 34558 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 34559 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 34560 -NCIT:C165456 Unresectable Pancreatic Neuroendocrine Neoplasm 5 34561 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 6 34562 -NCIT:C190782 Unresectable Pancreatic Neuroendocrine Tumor 6 34563 -NCIT:C27720 Pancreatic Neuroendocrine Tumor 5 34564 -NCIT:C135560 Pancreatic Neuroendocrine Tumor by AJCC v8 Stage 6 34565 -NCIT:C135561 Stage I Pancreatic Neuroendocrine Tumor AJCC v8 7 34566 -NCIT:C135562 Stage II Pancreatic Neuroendocrine Tumor AJCC v8 7 34567 -NCIT:C135563 Stage III Pancreatic Neuroendocrine Tumor AJCC v8 7 34568 -NCIT:C135564 Stage IV Pancreatic Neuroendocrine Tumor AJCC v8 7 34569 -NCIT:C156488 Metastatic Pancreatic Neuroendocrine Tumor 6 34570 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 7 34571 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 34572 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 34573 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 7 34574 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 7 34575 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 34576 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 7 34577 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 34578 -NCIT:C172814 Pancreatic Neuroendocrine Tumor G3 6 34579 -NCIT:C190782 Unresectable Pancreatic Neuroendocrine Tumor 6 34580 -NCIT:C27454 Pancreatic VIP-Producing Neuroendocrine Tumor 6 34581 -NCIT:C95599 Pancreatic Vipoma 7 34582 -NCIT:C67461 Malignant Pancreatic Vipoma 8 34583 -NCIT:C27466 Pancreatic ACTH-Producing Neuroendocrine Tumor 6 34584 -NCIT:C28396 Pancreatic Delta Cell Neuroendocrine Tumor 6 34585 -NCIT:C28333 Non-Functioning Pancreatic Delta Cell Neuroendocrine Tumor 7 34586 -NCIT:C8006 Pancreatic Somatostatin-Producing Neuroendocrine Tumor 7 34587 -NCIT:C95595 Pancreatic Somatostatinoma 8 34588 -NCIT:C67369 Malignant Pancreatic Somatostatinoma 9 34589 -NCIT:C3062 Pancreatic Glucagon-Producing Neuroendocrine Tumor 6 34590 -NCIT:C95597 Pancreatic Glucagonoma 7 34591 -NCIT:C65187 Malignant Pancreatic Glucagonoma 8 34592 -NCIT:C3140 Pancreatic Insulin-Producing Neuroendocrine Tumor 6 34593 -NCIT:C95598 Pancreatic Insulinoma 7 34594 -NCIT:C65186 Malignant Pancreatic Insulinoma 8 34595 -NCIT:C4446 Pancreatic Serotonin-Producing Neuroendocrine Tumor 6 34596 -NCIT:C45835 Pancreatic Neuroendocrine Tumor G2 6 34597 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 7 34598 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 34599 -NCIT:C45838 Non-Functioning Pancreatic Neuroendocrine Tumor G2 7 34600 -NCIT:C45841 Functioning Pancreatic Neuroendocrine Tumor G2 7 34601 -NCIT:C45837 Non-Functioning Pancreatic Neuroendocrine Tumor 6 34602 -NCIT:C28333 Non-Functioning Pancreatic Delta Cell Neuroendocrine Tumor 7 34603 -NCIT:C45834 Pancreatic Neuroendocrine Microtumor 7 34604 -NCIT:C45838 Non-Functioning Pancreatic Neuroendocrine Tumor G2 7 34605 -NCIT:C95585 Non-Functioning Pancreatic Neuroendocrine Tumor G1 7 34606 -NCIT:C45840 Functioning Pancreatic Neuroendocrine Tumor 6 34607 -NCIT:C45841 Functioning Pancreatic Neuroendocrine Tumor G2 7 34608 -NCIT:C95595 Pancreatic Somatostatinoma 7 34609 -NCIT:C67369 Malignant Pancreatic Somatostatinoma 8 34610 -NCIT:C95596 Pancreatic Gastrinoma 7 34611 -NCIT:C67458 Malignant Pancreatic Gastrinoma 8 34612 -NCIT:C95597 Pancreatic Glucagonoma 7 34613 -NCIT:C65187 Malignant Pancreatic Glucagonoma 8 34614 -NCIT:C95598 Pancreatic Insulinoma 7 34615 -NCIT:C65186 Malignant Pancreatic Insulinoma 8 34616 -NCIT:C95599 Pancreatic Vipoma 7 34617 -NCIT:C67461 Malignant Pancreatic Vipoma 8 34618 -NCIT:C9069 Pancreatic Gastrin-Producing Neuroendocrine Tumor 6 34619 -NCIT:C95596 Pancreatic Gastrinoma 7 34620 -NCIT:C67458 Malignant Pancreatic Gastrinoma 8 34621 -NCIT:C95584 Pancreatic Neuroendocrine Tumor G1 6 34622 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 7 34623 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 34624 -NCIT:C95585 Non-Functioning Pancreatic Neuroendocrine Tumor G1 7 34625 -NCIT:C3770 Pancreatic Neuroendocrine Carcinoma 5 34626 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 6 34627 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 6 34628 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 6 34629 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 7 34630 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 6 34631 -NCIT:C95582 Pancreatic Large Cell Neuroendocrine Carcinoma 6 34632 -NCIT:C95583 Pancreatic Small Cell Neuroendocrine Carcinoma 6 34633 -NCIT:C5603 Anal Canal Neuroendocrine Neoplasm 4 34634 -NCIT:C96540 Anal Canal Neuroendocrine Tumor 5 34635 -NCIT:C96543 Anal Canal Neuroendocrine Tumor G1 6 34636 -NCIT:C96546 Anal Canal Neuroendocrine Tumor G2 6 34637 -NCIT:C96549 Anal Canal Neuroendocrine Carcinoma 5 34638 -NCIT:C96550 Anal Canal Large Cell Neuroendocrine Carcinoma 6 34639 -NCIT:C96551 Anal Canal Small Cell Neuroendocrine Carcinoma 6 34640 -NCIT:C5695 Intestinal Neuroendocrine Neoplasm 4 34641 -NCIT:C5803 Small Intestinal Neuroendocrine Neoplasm 5 34642 -NCIT:C96061 Small Intestinal Neuroendocrine Tumor 6 34643 -NCIT:C135080 Duodenal Neuroendocrine Tumor 7 34644 -NCIT:C135075 Duodenal Neuroendocrine Tumor by AJCC v8 Stage 8 34645 -NCIT:C135076 Stage I Duodenal Neuroendocrine Tumor AJCC v8 9 34646 -NCIT:C135077 Stage II Duodenal Neuroendocrine Tumor AJCC v8 9 34647 -NCIT:C135078 Stage III Duodenal Neuroendocrine Tumor AJCC v8 9 34648 -NCIT:C135079 Stage IV Duodenal Neuroendocrine Tumor AJCC v8 9 34649 -NCIT:C160442 Duodenal Neuroendocrine Tumor G2 8 34650 -NCIT:C172672 Duodenal Neuroendocrine Tumor G3 8 34651 -NCIT:C27407 Duodenal Somatostatin-Producing Neuroendocrine Tumor 8 34652 -NCIT:C5731 Duodenal Gastrin-Producing Neuroendocrine Tumor 8 34653 -NCIT:C6425 Duodenal Neuroendocrine Tumor G1 8 34654 -NCIT:C135090 Jejunal Neuroendocrine Tumor 7 34655 -NCIT:C135119 Jejunal Neuroendocrine Tumor by AJCC v8 Stage 8 34656 -NCIT:C135120 Stage I Jejunal Neuroendocrine Tumor AJCC v8 9 34657 -NCIT:C135121 Stage II Jejunal Neuroendocrine Tumor AJCC v8 9 34658 -NCIT:C135122 Stage III Jejunal Neuroendocrine Tumor AJCC v8 9 34659 -NCIT:C135123 Stage IV Jejunal Neuroendocrine Tumor AJCC v8 9 34660 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 8 34661 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 8 34662 -NCIT:C5787 Jejunal Somatostatin-Producing Neuroendocrine Tumor 8 34663 -NCIT:C6429 Jejunal Neuroendocrine Tumor G1 8 34664 -NCIT:C135092 Ileal Neuroendocrine Tumor 7 34665 -NCIT:C135124 Ileal Neuroendocrine Tumor by AJCC v8 Stage 8 34666 -NCIT:C135125 Stage I Ileal Neuroendocrine Tumor AJCC v8 9 34667 -NCIT:C135126 Stage II Ileal Neuroendocrine Tumor AJCC v8 9 34668 -NCIT:C135127 Stage III Ileal Neuroendocrine Tumor AJCC v8 9 34669 -NCIT:C135128 Stage IV Ileal Neuroendocrine Tumor AJCC v8 9 34670 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 8 34671 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 8 34672 -NCIT:C4935 Ileal Neuroendocrine Tumor G1 8 34673 -NCIT:C172664 Small Intestinal Neuroendocrine Tumor G3 7 34674 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 8 34675 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 8 34676 -NCIT:C172672 Duodenal Neuroendocrine Tumor G3 8 34677 -NCIT:C27450 Small Intestinal Gastrin-Producing Neuroendocrine Tumor 7 34678 -NCIT:C5731 Duodenal Gastrin-Producing Neuroendocrine Tumor 8 34679 -NCIT:C27451 Small Intestinal Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 7 34680 -NCIT:C27452 Small Intestinal L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 7 34681 -NCIT:C27453 Small Intestinal Somatostatin-Producing Neuroendocrine Tumor 7 34682 -NCIT:C27407 Duodenal Somatostatin-Producing Neuroendocrine Tumor 8 34683 -NCIT:C5787 Jejunal Somatostatin-Producing Neuroendocrine Tumor 8 34684 -NCIT:C27455 Small Intestinal VIP-Producing Neuroendocrine Tumor 7 34685 -NCIT:C4638 Small Intestinal Neuroendocrine Tumor G1 7 34686 -NCIT:C4935 Ileal Neuroendocrine Tumor G1 8 34687 -NCIT:C6425 Duodenal Neuroendocrine Tumor G1 8 34688 -NCIT:C6429 Jejunal Neuroendocrine Tumor G1 8 34689 -NCIT:C96067 Small Intestinal Neuroendocrine Tumor G2 7 34690 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 8 34691 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 8 34692 -NCIT:C160442 Duodenal Neuroendocrine Tumor G2 8 34693 -NCIT:C96073 Small Intestinal Composite Gangliocytoma/Neuroma and Neuroendocrine Tumor 7 34694 -NCIT:C96064 Small Intestinal Neuroendocrine Carcinoma 6 34695 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 7 34696 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 34697 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 34698 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 34699 -NCIT:C27449 Small Intestinal Small Cell Neuroendocrine Carcinoma 7 34700 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 34701 -NCIT:C96065 Small Intestinal Large Cell Neuroendocrine Carcinoma 7 34702 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 34703 -NCIT:C96062 Intestinal Neuroendocrine Tumor 5 34704 -NCIT:C172670 Intestinal Neuroendocrine Tumor G3 6 34705 -NCIT:C172664 Small Intestinal Neuroendocrine Tumor G3 7 34706 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 8 34707 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 8 34708 -NCIT:C172672 Duodenal Neuroendocrine Tumor G3 8 34709 -NCIT:C172701 Colorectal Neuroendocrine Tumor G3 7 34710 -NCIT:C172702 Colon Neuroendocrine Tumor G3 8 34711 -NCIT:C172703 Rectal Neuroendocrine Tumor G3 8 34712 -NCIT:C4637 Intestinal Neuroendocrine Tumor G1 6 34713 -NCIT:C4638 Small Intestinal Neuroendocrine Tumor G1 7 34714 -NCIT:C4935 Ileal Neuroendocrine Tumor G1 8 34715 -NCIT:C6425 Duodenal Neuroendocrine Tumor G1 8 34716 -NCIT:C6429 Jejunal Neuroendocrine Tumor G1 8 34717 -NCIT:C6424 Meckel Diverticulum Neuroendocrine Tumor G1 7 34718 -NCIT:C96160 Colorectal Neuroendocrine Tumor G1 7 34719 -NCIT:C5497 Colon Neuroendocrine Tumor G1 8 34720 -NCIT:C188043 Sigmoid Colon Neuroendocrine Tumor G1 9 34721 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 9 34722 -NCIT:C6426 Transverse Colon Neuroendocrine Tumor G1 9 34723 -NCIT:C6427 Ascending Colon Neuroendocrine Tumor G1 9 34724 -NCIT:C6428 Descending Colon Neuroendocrine Tumor G1 9 34725 -NCIT:C5547 Rectal Neuroendocrine Tumor G1 8 34726 -NCIT:C5325 Intestinal Composite Gangliocytoma/Neuroma and Neuroendocrine Tumor 6 34727 -NCIT:C96073 Small Intestinal Composite Gangliocytoma/Neuroma and Neuroendocrine Tumor 7 34728 -NCIT:C96061 Small Intestinal Neuroendocrine Tumor 6 34729 -NCIT:C135080 Duodenal Neuroendocrine Tumor 7 34730 -NCIT:C135075 Duodenal Neuroendocrine Tumor by AJCC v8 Stage 8 34731 -NCIT:C135076 Stage I Duodenal Neuroendocrine Tumor AJCC v8 9 34732 -NCIT:C135077 Stage II Duodenal Neuroendocrine Tumor AJCC v8 9 34733 -NCIT:C135078 Stage III Duodenal Neuroendocrine Tumor AJCC v8 9 34734 -NCIT:C135079 Stage IV Duodenal Neuroendocrine Tumor AJCC v8 9 34735 -NCIT:C160442 Duodenal Neuroendocrine Tumor G2 8 34736 -NCIT:C172672 Duodenal Neuroendocrine Tumor G3 8 34737 -NCIT:C27407 Duodenal Somatostatin-Producing Neuroendocrine Tumor 8 34738 -NCIT:C5731 Duodenal Gastrin-Producing Neuroendocrine Tumor 8 34739 -NCIT:C6425 Duodenal Neuroendocrine Tumor G1 8 34740 -NCIT:C135090 Jejunal Neuroendocrine Tumor 7 34741 -NCIT:C135119 Jejunal Neuroendocrine Tumor by AJCC v8 Stage 8 34742 -NCIT:C135120 Stage I Jejunal Neuroendocrine Tumor AJCC v8 9 34743 -NCIT:C135121 Stage II Jejunal Neuroendocrine Tumor AJCC v8 9 34744 -NCIT:C135122 Stage III Jejunal Neuroendocrine Tumor AJCC v8 9 34745 -NCIT:C135123 Stage IV Jejunal Neuroendocrine Tumor AJCC v8 9 34746 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 8 34747 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 8 34748 -NCIT:C5787 Jejunal Somatostatin-Producing Neuroendocrine Tumor 8 34749 -NCIT:C6429 Jejunal Neuroendocrine Tumor G1 8 34750 -NCIT:C135092 Ileal Neuroendocrine Tumor 7 34751 -NCIT:C135124 Ileal Neuroendocrine Tumor by AJCC v8 Stage 8 34752 -NCIT:C135125 Stage I Ileal Neuroendocrine Tumor AJCC v8 9 34753 -NCIT:C135126 Stage II Ileal Neuroendocrine Tumor AJCC v8 9 34754 -NCIT:C135127 Stage III Ileal Neuroendocrine Tumor AJCC v8 9 34755 -NCIT:C135128 Stage IV Ileal Neuroendocrine Tumor AJCC v8 9 34756 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 8 34757 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 8 34758 -NCIT:C4935 Ileal Neuroendocrine Tumor G1 8 34759 -NCIT:C172664 Small Intestinal Neuroendocrine Tumor G3 7 34760 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 8 34761 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 8 34762 -NCIT:C172672 Duodenal Neuroendocrine Tumor G3 8 34763 -NCIT:C27450 Small Intestinal Gastrin-Producing Neuroendocrine Tumor 7 34764 -NCIT:C5731 Duodenal Gastrin-Producing Neuroendocrine Tumor 8 34765 -NCIT:C27451 Small Intestinal Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 7 34766 -NCIT:C27452 Small Intestinal L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 7 34767 -NCIT:C27453 Small Intestinal Somatostatin-Producing Neuroendocrine Tumor 7 34768 -NCIT:C27407 Duodenal Somatostatin-Producing Neuroendocrine Tumor 8 34769 -NCIT:C5787 Jejunal Somatostatin-Producing Neuroendocrine Tumor 8 34770 -NCIT:C27455 Small Intestinal VIP-Producing Neuroendocrine Tumor 7 34771 -NCIT:C4638 Small Intestinal Neuroendocrine Tumor G1 7 34772 -NCIT:C4935 Ileal Neuroendocrine Tumor G1 8 34773 -NCIT:C6425 Duodenal Neuroendocrine Tumor G1 8 34774 -NCIT:C6429 Jejunal Neuroendocrine Tumor G1 8 34775 -NCIT:C96067 Small Intestinal Neuroendocrine Tumor G2 7 34776 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 8 34777 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 8 34778 -NCIT:C160442 Duodenal Neuroendocrine Tumor G2 8 34779 -NCIT:C96073 Small Intestinal Composite Gangliocytoma/Neuroma and Neuroendocrine Tumor 7 34780 -NCIT:C96159 Colorectal Neuroendocrine Tumor 6 34781 -NCIT:C135205 Colorectal Neuroendocrine Tumor by AJCC v8 Stage 7 34782 -NCIT:C135206 Stage I Colorectal Neuroendocrine Tumor AJCC v8 8 34783 -NCIT:C135368 Stage I Colon Neuroendocrine Tumor AJCC v8 9 34784 -NCIT:C135528 Stage I Rectal Neuroendocrine Tumor AJCC v8 9 34785 -NCIT:C135207 Stage IIA Colorectal Neuroendocrine Tumor AJCC v8 8 34786 -NCIT:C135369 Stage IIA Colon Neuroendocrine Tumor AJCC v8 9 34787 -NCIT:C135529 Stage IIA Rectal Neuroendocrine Tumor AJCC v8 9 34788 -NCIT:C135208 Stage IIB Colorectal Neuroendocrine Tumor AJCC v8 8 34789 -NCIT:C135370 Stage IIB Colon Neuroendocrine Tumor AJCC v8 9 34790 -NCIT:C135530 Stage IIB Rectal Neuroendocrine Tumor AJCC v8 9 34791 -NCIT:C135209 Stage IIIA Colorectal Neuroendocrine Tumor AJCC v8 8 34792 -NCIT:C135524 Stage IIIA Colon Neuroendocrine Tumor AJCC v8 9 34793 -NCIT:C135531 Stage IIIA Rectal Neuroendocrine Tumor AJCC v8 9 34794 -NCIT:C135210 Stage IIIB Colorectal Neuroendocrine Tumor AJCC v8 8 34795 -NCIT:C135525 Stage IIIB Colon Neuroendocrine Tumor AJCC v8 9 34796 -NCIT:C135532 Stage IIIB Rectal Neuroendocrine Tumor AJCC v8 9 34797 -NCIT:C135211 Stage IV Colorectal Neuroendocrine Tumor AJCC v8 8 34798 -NCIT:C135526 Stage IV Colon Neuroendocrine Tumor AJCC v8 9 34799 -NCIT:C135533 Stage IV Rectal Neuroendocrine Tumor AJCC v8 9 34800 -NCIT:C135214 Colon Neuroendocrine Tumor by AJCC v8 Stage 8 34801 -NCIT:C135368 Stage I Colon Neuroendocrine Tumor AJCC v8 9 34802 -NCIT:C135369 Stage IIA Colon Neuroendocrine Tumor AJCC v8 9 34803 -NCIT:C135370 Stage IIB Colon Neuroendocrine Tumor AJCC v8 9 34804 -NCIT:C135524 Stage IIIA Colon Neuroendocrine Tumor AJCC v8 9 34805 -NCIT:C135525 Stage IIIB Colon Neuroendocrine Tumor AJCC v8 9 34806 -NCIT:C135526 Stage IV Colon Neuroendocrine Tumor AJCC v8 9 34807 -NCIT:C135527 Rectal Neuroendocrine Tumor by AJCC v8 Stage 8 34808 -NCIT:C135528 Stage I Rectal Neuroendocrine Tumor AJCC v8 9 34809 -NCIT:C135529 Stage IIA Rectal Neuroendocrine Tumor AJCC v8 9 34810 -NCIT:C135530 Stage IIB Rectal Neuroendocrine Tumor AJCC v8 9 34811 -NCIT:C135531 Stage IIIA Rectal Neuroendocrine Tumor AJCC v8 9 34812 -NCIT:C135532 Stage IIIB Rectal Neuroendocrine Tumor AJCC v8 9 34813 -NCIT:C135533 Stage IV Rectal Neuroendocrine Tumor AJCC v8 9 34814 -NCIT:C135212 Colon Neuroendocrine Tumor 7 34815 -NCIT:C135214 Colon Neuroendocrine Tumor by AJCC v8 Stage 8 34816 -NCIT:C135368 Stage I Colon Neuroendocrine Tumor AJCC v8 9 34817 -NCIT:C135369 Stage IIA Colon Neuroendocrine Tumor AJCC v8 9 34818 -NCIT:C135370 Stage IIB Colon Neuroendocrine Tumor AJCC v8 9 34819 -NCIT:C135524 Stage IIIA Colon Neuroendocrine Tumor AJCC v8 9 34820 -NCIT:C135525 Stage IIIB Colon Neuroendocrine Tumor AJCC v8 9 34821 -NCIT:C135526 Stage IV Colon Neuroendocrine Tumor AJCC v8 9 34822 -NCIT:C160443 Colon Neuroendocrine Tumor G2 8 34823 -NCIT:C172702 Colon Neuroendocrine Tumor G3 8 34824 -NCIT:C27446 Colon Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 8 34825 -NCIT:C27447 Colon L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 8 34826 -NCIT:C5497 Colon Neuroendocrine Tumor G1 8 34827 -NCIT:C188043 Sigmoid Colon Neuroendocrine Tumor G1 9 34828 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 9 34829 -NCIT:C6426 Transverse Colon Neuroendocrine Tumor G1 9 34830 -NCIT:C6427 Ascending Colon Neuroendocrine Tumor G1 9 34831 -NCIT:C6428 Descending Colon Neuroendocrine Tumor G1 9 34832 -NCIT:C135213 Rectal Neuroendocrine Tumor 7 34833 -NCIT:C135527 Rectal Neuroendocrine Tumor by AJCC v8 Stage 8 34834 -NCIT:C135528 Stage I Rectal Neuroendocrine Tumor AJCC v8 9 34835 -NCIT:C135529 Stage IIA Rectal Neuroendocrine Tumor AJCC v8 9 34836 -NCIT:C135530 Stage IIB Rectal Neuroendocrine Tumor AJCC v8 9 34837 -NCIT:C135531 Stage IIIA Rectal Neuroendocrine Tumor AJCC v8 9 34838 -NCIT:C135532 Stage IIIB Rectal Neuroendocrine Tumor AJCC v8 9 34839 -NCIT:C135533 Stage IV Rectal Neuroendocrine Tumor AJCC v8 9 34840 -NCIT:C160451 Rectal Neuroendocrine Tumor G2 8 34841 -NCIT:C172703 Rectal Neuroendocrine Tumor G3 8 34842 -NCIT:C5547 Rectal Neuroendocrine Tumor G1 8 34843 -NCIT:C172701 Colorectal Neuroendocrine Tumor G3 7 34844 -NCIT:C172702 Colon Neuroendocrine Tumor G3 8 34845 -NCIT:C172703 Rectal Neuroendocrine Tumor G3 8 34846 -NCIT:C96160 Colorectal Neuroendocrine Tumor G1 7 34847 -NCIT:C5497 Colon Neuroendocrine Tumor G1 8 34848 -NCIT:C188043 Sigmoid Colon Neuroendocrine Tumor G1 9 34849 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 9 34850 -NCIT:C6426 Transverse Colon Neuroendocrine Tumor G1 9 34851 -NCIT:C6427 Ascending Colon Neuroendocrine Tumor G1 9 34852 -NCIT:C6428 Descending Colon Neuroendocrine Tumor G1 9 34853 -NCIT:C5547 Rectal Neuroendocrine Tumor G1 8 34854 -NCIT:C96161 Colorectal L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 7 34855 -NCIT:C27447 Colon L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 8 34856 -NCIT:C96162 Colorectal Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 7 34857 -NCIT:C27446 Colon Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 8 34858 -NCIT:C96163 Colorectal Neuroendocrine Tumor G2 7 34859 -NCIT:C160443 Colon Neuroendocrine Tumor G2 8 34860 -NCIT:C160451 Rectal Neuroendocrine Tumor G2 8 34861 -NCIT:C96165 Intestinal Neuroendocrine Tumor G2 6 34862 -NCIT:C96067 Small Intestinal Neuroendocrine Tumor G2 7 34863 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 8 34864 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 8 34865 -NCIT:C160442 Duodenal Neuroendocrine Tumor G2 8 34866 -NCIT:C96163 Colorectal Neuroendocrine Tumor G2 7 34867 -NCIT:C160443 Colon Neuroendocrine Tumor G2 8 34868 -NCIT:C160451 Rectal Neuroendocrine Tumor G2 8 34869 -NCIT:C96063 Intestinal Neuroendocrine Carcinoma 5 34870 -NCIT:C96064 Small Intestinal Neuroendocrine Carcinoma 6 34871 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 7 34872 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 34873 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 34874 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 34875 -NCIT:C27449 Small Intestinal Small Cell Neuroendocrine Carcinoma 7 34876 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 34877 -NCIT:C96065 Small Intestinal Large Cell Neuroendocrine Carcinoma 7 34878 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 34879 -NCIT:C96156 Colorectal Neuroendocrine Carcinoma 6 34880 -NCIT:C43587 Colorectal Small Cell Neuroendocrine Carcinoma 7 34881 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 8 34882 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 8 34883 -NCIT:C96157 Colorectal Large Cell Neuroendocrine Carcinoma 7 34884 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 8 34885 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 8 34886 -NCIT:C96152 Colorectal Neuroendocrine Neoplasm 5 34887 -NCIT:C5697 Colon Neuroendocrine Neoplasm 6 34888 -NCIT:C135212 Colon Neuroendocrine Tumor 7 34889 -NCIT:C135214 Colon Neuroendocrine Tumor by AJCC v8 Stage 8 34890 -NCIT:C135368 Stage I Colon Neuroendocrine Tumor AJCC v8 9 34891 -NCIT:C135369 Stage IIA Colon Neuroendocrine Tumor AJCC v8 9 34892 -NCIT:C135370 Stage IIB Colon Neuroendocrine Tumor AJCC v8 9 34893 -NCIT:C135524 Stage IIIA Colon Neuroendocrine Tumor AJCC v8 9 34894 -NCIT:C135525 Stage IIIB Colon Neuroendocrine Tumor AJCC v8 9 34895 -NCIT:C135526 Stage IV Colon Neuroendocrine Tumor AJCC v8 9 34896 -NCIT:C160443 Colon Neuroendocrine Tumor G2 8 34897 -NCIT:C172702 Colon Neuroendocrine Tumor G3 8 34898 -NCIT:C27446 Colon Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 8 34899 -NCIT:C27447 Colon L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 8 34900 -NCIT:C5497 Colon Neuroendocrine Tumor G1 8 34901 -NCIT:C188043 Sigmoid Colon Neuroendocrine Tumor G1 9 34902 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 9 34903 -NCIT:C6426 Transverse Colon Neuroendocrine Tumor G1 9 34904 -NCIT:C6427 Ascending Colon Neuroendocrine Tumor G1 9 34905 -NCIT:C6428 Descending Colon Neuroendocrine Tumor G1 9 34906 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 7 34907 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 7 34908 -NCIT:C5698 Rectal Neuroendocrine Neoplasm 6 34909 -NCIT:C135213 Rectal Neuroendocrine Tumor 7 34910 -NCIT:C135527 Rectal Neuroendocrine Tumor by AJCC v8 Stage 8 34911 -NCIT:C135528 Stage I Rectal Neuroendocrine Tumor AJCC v8 9 34912 -NCIT:C135529 Stage IIA Rectal Neuroendocrine Tumor AJCC v8 9 34913 -NCIT:C135530 Stage IIB Rectal Neuroendocrine Tumor AJCC v8 9 34914 -NCIT:C135531 Stage IIIA Rectal Neuroendocrine Tumor AJCC v8 9 34915 -NCIT:C135532 Stage IIIB Rectal Neuroendocrine Tumor AJCC v8 9 34916 -NCIT:C135533 Stage IV Rectal Neuroendocrine Tumor AJCC v8 9 34917 -NCIT:C160451 Rectal Neuroendocrine Tumor G2 8 34918 -NCIT:C172703 Rectal Neuroendocrine Tumor G3 8 34919 -NCIT:C5547 Rectal Neuroendocrine Tumor G1 8 34920 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 7 34921 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 7 34922 -NCIT:C96156 Colorectal Neuroendocrine Carcinoma 6 34923 -NCIT:C43587 Colorectal Small Cell Neuroendocrine Carcinoma 7 34924 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 8 34925 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 8 34926 -NCIT:C96157 Colorectal Large Cell Neuroendocrine Carcinoma 7 34927 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 8 34928 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 8 34929 -NCIT:C96159 Colorectal Neuroendocrine Tumor 6 34930 -NCIT:C135205 Colorectal Neuroendocrine Tumor by AJCC v8 Stage 7 34931 -NCIT:C135206 Stage I Colorectal Neuroendocrine Tumor AJCC v8 8 34932 -NCIT:C135368 Stage I Colon Neuroendocrine Tumor AJCC v8 9 34933 -NCIT:C135528 Stage I Rectal Neuroendocrine Tumor AJCC v8 9 34934 -NCIT:C135207 Stage IIA Colorectal Neuroendocrine Tumor AJCC v8 8 34935 -NCIT:C135369 Stage IIA Colon Neuroendocrine Tumor AJCC v8 9 34936 -NCIT:C135529 Stage IIA Rectal Neuroendocrine Tumor AJCC v8 9 34937 -NCIT:C135208 Stage IIB Colorectal Neuroendocrine Tumor AJCC v8 8 34938 -NCIT:C135370 Stage IIB Colon Neuroendocrine Tumor AJCC v8 9 34939 -NCIT:C135530 Stage IIB Rectal Neuroendocrine Tumor AJCC v8 9 34940 -NCIT:C135209 Stage IIIA Colorectal Neuroendocrine Tumor AJCC v8 8 34941 -NCIT:C135524 Stage IIIA Colon Neuroendocrine Tumor AJCC v8 9 34942 -NCIT:C135531 Stage IIIA Rectal Neuroendocrine Tumor AJCC v8 9 34943 -NCIT:C135210 Stage IIIB Colorectal Neuroendocrine Tumor AJCC v8 8 34944 -NCIT:C135525 Stage IIIB Colon Neuroendocrine Tumor AJCC v8 9 34945 -NCIT:C135532 Stage IIIB Rectal Neuroendocrine Tumor AJCC v8 9 34946 -NCIT:C135211 Stage IV Colorectal Neuroendocrine Tumor AJCC v8 8 34947 -NCIT:C135526 Stage IV Colon Neuroendocrine Tumor AJCC v8 9 34948 -NCIT:C135533 Stage IV Rectal Neuroendocrine Tumor AJCC v8 9 34949 -NCIT:C135214 Colon Neuroendocrine Tumor by AJCC v8 Stage 8 34950 -NCIT:C135368 Stage I Colon Neuroendocrine Tumor AJCC v8 9 34951 -NCIT:C135369 Stage IIA Colon Neuroendocrine Tumor AJCC v8 9 34952 -NCIT:C135370 Stage IIB Colon Neuroendocrine Tumor AJCC v8 9 34953 -NCIT:C135524 Stage IIIA Colon Neuroendocrine Tumor AJCC v8 9 34954 -NCIT:C135525 Stage IIIB Colon Neuroendocrine Tumor AJCC v8 9 34955 -NCIT:C135526 Stage IV Colon Neuroendocrine Tumor AJCC v8 9 34956 -NCIT:C135527 Rectal Neuroendocrine Tumor by AJCC v8 Stage 8 34957 -NCIT:C135528 Stage I Rectal Neuroendocrine Tumor AJCC v8 9 34958 -NCIT:C135529 Stage IIA Rectal Neuroendocrine Tumor AJCC v8 9 34959 -NCIT:C135530 Stage IIB Rectal Neuroendocrine Tumor AJCC v8 9 34960 -NCIT:C135531 Stage IIIA Rectal Neuroendocrine Tumor AJCC v8 9 34961 -NCIT:C135532 Stage IIIB Rectal Neuroendocrine Tumor AJCC v8 9 34962 -NCIT:C135533 Stage IV Rectal Neuroendocrine Tumor AJCC v8 9 34963 -NCIT:C135212 Colon Neuroendocrine Tumor 7 34964 -NCIT:C135214 Colon Neuroendocrine Tumor by AJCC v8 Stage 8 34965 -NCIT:C135368 Stage I Colon Neuroendocrine Tumor AJCC v8 9 34966 -NCIT:C135369 Stage IIA Colon Neuroendocrine Tumor AJCC v8 9 34967 -NCIT:C135370 Stage IIB Colon Neuroendocrine Tumor AJCC v8 9 34968 -NCIT:C135524 Stage IIIA Colon Neuroendocrine Tumor AJCC v8 9 34969 -NCIT:C135525 Stage IIIB Colon Neuroendocrine Tumor AJCC v8 9 34970 -NCIT:C135526 Stage IV Colon Neuroendocrine Tumor AJCC v8 9 34971 -NCIT:C160443 Colon Neuroendocrine Tumor G2 8 34972 -NCIT:C172702 Colon Neuroendocrine Tumor G3 8 34973 -NCIT:C27446 Colon Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 8 34974 -NCIT:C27447 Colon L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 8 34975 -NCIT:C5497 Colon Neuroendocrine Tumor G1 8 34976 -NCIT:C188043 Sigmoid Colon Neuroendocrine Tumor G1 9 34977 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 9 34978 -NCIT:C6426 Transverse Colon Neuroendocrine Tumor G1 9 34979 -NCIT:C6427 Ascending Colon Neuroendocrine Tumor G1 9 34980 -NCIT:C6428 Descending Colon Neuroendocrine Tumor G1 9 34981 -NCIT:C135213 Rectal Neuroendocrine Tumor 7 34982 -NCIT:C135527 Rectal Neuroendocrine Tumor by AJCC v8 Stage 8 34983 -NCIT:C135528 Stage I Rectal Neuroendocrine Tumor AJCC v8 9 34984 -NCIT:C135529 Stage IIA Rectal Neuroendocrine Tumor AJCC v8 9 34985 -NCIT:C135530 Stage IIB Rectal Neuroendocrine Tumor AJCC v8 9 34986 -NCIT:C135531 Stage IIIA Rectal Neuroendocrine Tumor AJCC v8 9 34987 -NCIT:C135532 Stage IIIB Rectal Neuroendocrine Tumor AJCC v8 9 34988 -NCIT:C135533 Stage IV Rectal Neuroendocrine Tumor AJCC v8 9 34989 -NCIT:C160451 Rectal Neuroendocrine Tumor G2 8 34990 -NCIT:C172703 Rectal Neuroendocrine Tumor G3 8 34991 -NCIT:C5547 Rectal Neuroendocrine Tumor G1 8 34992 -NCIT:C172701 Colorectal Neuroendocrine Tumor G3 7 34993 -NCIT:C172702 Colon Neuroendocrine Tumor G3 8 34994 -NCIT:C172703 Rectal Neuroendocrine Tumor G3 8 34995 -NCIT:C96160 Colorectal Neuroendocrine Tumor G1 7 34996 -NCIT:C5497 Colon Neuroendocrine Tumor G1 8 34997 -NCIT:C188043 Sigmoid Colon Neuroendocrine Tumor G1 9 34998 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 9 34999 -NCIT:C6426 Transverse Colon Neuroendocrine Tumor G1 9 35000 -NCIT:C6427 Ascending Colon Neuroendocrine Tumor G1 9 35001 -NCIT:C6428 Descending Colon Neuroendocrine Tumor G1 9 35002 -NCIT:C5547 Rectal Neuroendocrine Tumor G1 8 35003 -NCIT:C96161 Colorectal L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 7 35004 -NCIT:C27447 Colon L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 8 35005 -NCIT:C96162 Colorectal Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 7 35006 -NCIT:C27446 Colon Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 8 35007 -NCIT:C96163 Colorectal Neuroendocrine Tumor G2 7 35008 -NCIT:C160443 Colon Neuroendocrine Tumor G2 8 35009 -NCIT:C160451 Rectal Neuroendocrine Tumor G2 8 35010 -NCIT:C5696 Gastric Neuroendocrine Neoplasm 4 35011 -NCIT:C95871 Gastric Neuroendocrine Tumor 5 35012 -NCIT:C135045 Gastric Neuroendocrine Tumor by AJCC v8 Stage 6 35013 -NCIT:C135046 Stage I Gastric Neuroendocrine Tumor AJCC v8 7 35014 -NCIT:C135047 Stage II Gastric Neuroendocrine Tumor AJCC v8 7 35015 -NCIT:C135048 Stage III Gastric Neuroendocrine Tumor AJCC v8 7 35016 -NCIT:C135049 Stage IV Gastric Neuroendocrine Tumor AJCC v8 7 35017 -NCIT:C172662 Gastric Neuroendocrine Tumor G3 6 35018 -NCIT:C27443 Gastric Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 6 35019 -NCIT:C27444 Gastric Gastrin-Producing Neuroendocrine Tumor 6 35020 -NCIT:C4635 Gastric Neuroendocrine Tumor G1 6 35021 -NCIT:C95880 Gastric Neuroendocrine Tumor G2 6 35022 -NCIT:C95884 Gastric Neuroendocrine Carcinoma 5 35023 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 6 35024 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 7 35025 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 35026 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 35027 -NCIT:C6764 Gastric Small Cell Neuroendocrine Carcinoma 6 35028 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 7 35029 -NCIT:C95885 Gastric Large Cell Neuroendocrine Carcinoma 6 35030 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 7 35031 -NCIT:C5821 Esophageal Neuroendocrine Neoplasm 4 35032 -NCIT:C95616 Esophageal Neuroendocrine Tumor 5 35033 -NCIT:C172661 Esophageal Neuroendocrine Tumor G3 6 35034 -NCIT:C5820 Esophageal Neuroendocrine Tumor G1 6 35035 -NCIT:C95617 Esophageal Neuroendocrine Tumor G2 6 35036 -NCIT:C95619 Esophageal Neuroendocrine Carcinoma 5 35037 -NCIT:C6762 Esophageal Small Cell Neuroendocrine Carcinoma 6 35038 -NCIT:C95620 Esophageal Large Cell Neuroendocrine Carcinoma 6 35039 -NCIT:C60709 Appendix Neuroendocrine Neoplasm 4 35040 -NCIT:C96422 Appendix Neuroendocrine Tumor 5 35041 -NCIT:C135155 Appendix Neuroendocrine Tumor by AJCC v7 Stage 6 35042 -NCIT:C87809 Stage I Appendix Neuroendocrine Tumor AJCC v7 7 35043 -NCIT:C87810 Stage II Appendix Neuroendocrine Tumor AJCC v7 7 35044 -NCIT:C87811 Stage III Appendix Neuroendocrine Tumor AJCC v7 7 35045 -NCIT:C87812 Stage IV Appendix Neuroendocrine Tumor AJCC v7 7 35046 -NCIT:C135156 Appendix Neuroendocrine Tumor by AJCC v8 Stage 6 35047 -NCIT:C135157 Stage I Appendix Neuroendocrine Tumor AJCC v8 7 35048 -NCIT:C135158 Stage II Appendix Neuroendocrine Tumor AJCC v8 7 35049 -NCIT:C135159 Stage III Appendix Neuroendocrine Tumor AJCC v8 7 35050 -NCIT:C135160 Stage IV Appendix Neuroendocrine Tumor AJCC v8 7 35051 -NCIT:C172666 Appendix Neuroendocrine Tumor G3 6 35052 -NCIT:C190029 Childhood Appendix Neuroendocrine Tumor 6 35053 -NCIT:C27445 Appendix L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 6 35054 -NCIT:C4138 Appendix Neuroendocrine Tumor G1 6 35055 -NCIT:C43565 Appendix Tubular Carcinoid 6 35056 -NCIT:C96423 Appendix Neuroendocrine Tumor G2 6 35057 -NCIT:C96424 Appendix Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 6 35058 -NCIT:C96425 Appendix Neuroendocrine Carcinoma 5 35059 -NCIT:C43555 Appendix Small Cell Neuroendocrine Carcinoma 6 35060 -NCIT:C96426 Appendix Large Cell Neuroendocrine Carcinoma 6 35061 -NCIT:C95404 Digestive System Neuroendocrine Tumor 4 35062 -NCIT:C135129 Digestive System Neuroendocrine Tumor by AJCC v7 Stage 5 35063 -NCIT:C135155 Appendix Neuroendocrine Tumor by AJCC v7 Stage 6 35064 -NCIT:C87809 Stage I Appendix Neuroendocrine Tumor AJCC v7 7 35065 -NCIT:C87810 Stage II Appendix Neuroendocrine Tumor AJCC v7 7 35066 -NCIT:C87811 Stage III Appendix Neuroendocrine Tumor AJCC v7 7 35067 -NCIT:C87812 Stage IV Appendix Neuroendocrine Tumor AJCC v7 7 35068 -NCIT:C88027 Stage 0 Digestive System Neuroendocrine Tumor AJCC v7 6 35069 -NCIT:C88028 Stage I Digestive System Neuroendocrine Tumor AJCC v7 6 35070 -NCIT:C88029 Stage IIA Digestive System Neuroendocrine Tumor AJCC v7 6 35071 -NCIT:C88030 Stage IIB Digestive System Neuroendocrine Tumor AJCC v7 6 35072 -NCIT:C88031 Stage IIIA Digestive System Neuroendocrine Tumor AJCC v7 6 35073 -NCIT:C88032 Stage IIIB Digestive System Neuroendocrine Tumor AJCC v7 6 35074 -NCIT:C88033 Stage IV Digestive System Neuroendocrine Tumor AJCC v7 6 35075 -NCIT:C167327 Midgut Neuroendocrine Tumor 5 35076 -NCIT:C135090 Jejunal Neuroendocrine Tumor 6 35077 -NCIT:C135119 Jejunal Neuroendocrine Tumor by AJCC v8 Stage 7 35078 -NCIT:C135120 Stage I Jejunal Neuroendocrine Tumor AJCC v8 8 35079 -NCIT:C135121 Stage II Jejunal Neuroendocrine Tumor AJCC v8 8 35080 -NCIT:C135122 Stage III Jejunal Neuroendocrine Tumor AJCC v8 8 35081 -NCIT:C135123 Stage IV Jejunal Neuroendocrine Tumor AJCC v8 8 35082 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 7 35083 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 7 35084 -NCIT:C5787 Jejunal Somatostatin-Producing Neuroendocrine Tumor 7 35085 -NCIT:C6429 Jejunal Neuroendocrine Tumor G1 7 35086 -NCIT:C135092 Ileal Neuroendocrine Tumor 6 35087 -NCIT:C135124 Ileal Neuroendocrine Tumor by AJCC v8 Stage 7 35088 -NCIT:C135125 Stage I Ileal Neuroendocrine Tumor AJCC v8 8 35089 -NCIT:C135126 Stage II Ileal Neuroendocrine Tumor AJCC v8 8 35090 -NCIT:C135127 Stage III Ileal Neuroendocrine Tumor AJCC v8 8 35091 -NCIT:C135128 Stage IV Ileal Neuroendocrine Tumor AJCC v8 8 35092 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 7 35093 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 7 35094 -NCIT:C4935 Ileal Neuroendocrine Tumor G1 7 35095 -NCIT:C167328 Midgut Neuroendocrine Tumor G2 6 35096 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 7 35097 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 7 35098 -NCIT:C96423 Appendix Neuroendocrine Tumor G2 7 35099 -NCIT:C167329 Metastatic Midgut Neuroendocrine Tumor 6 35100 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 7 35101 -NCIT:C167331 Unresectable Midgut Neuroendocrine Tumor 6 35102 -NCIT:C172669 Midgut Neuroendocrine Tumor G3 6 35103 -NCIT:C172666 Appendix Neuroendocrine Tumor G3 7 35104 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 7 35105 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 7 35106 -NCIT:C6422 Midgut Neuroendocrine Tumor G1 6 35107 -NCIT:C4138 Appendix Neuroendocrine Tumor G1 7 35108 -NCIT:C4935 Ileal Neuroendocrine Tumor G1 7 35109 -NCIT:C5229 Ovarian Carcinoid Tumor 7 35110 -NCIT:C188015 Ovarian Teratoma with Carcinoid Tumor 8 35111 -NCIT:C4292 Strumal Carcinoid 9 35112 -NCIT:C40013 Ovarian Insular Carcinoid Tumor 8 35113 -NCIT:C40014 Ovarian Trabecular Carcinoid Tumor 8 35114 -NCIT:C40015 Ovarian Mucinous Carcinoid Tumor 8 35115 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 7 35116 -NCIT:C6424 Meckel Diverticulum Neuroendocrine Tumor G1 7 35117 -NCIT:C6427 Ascending Colon Neuroendocrine Tumor G1 7 35118 -NCIT:C6429 Jejunal Neuroendocrine Tumor G1 7 35119 -NCIT:C96422 Appendix Neuroendocrine Tumor 6 35120 -NCIT:C135155 Appendix Neuroendocrine Tumor by AJCC v7 Stage 7 35121 -NCIT:C87809 Stage I Appendix Neuroendocrine Tumor AJCC v7 8 35122 -NCIT:C87810 Stage II Appendix Neuroendocrine Tumor AJCC v7 8 35123 -NCIT:C87811 Stage III Appendix Neuroendocrine Tumor AJCC v7 8 35124 -NCIT:C87812 Stage IV Appendix Neuroendocrine Tumor AJCC v7 8 35125 -NCIT:C135156 Appendix Neuroendocrine Tumor by AJCC v8 Stage 7 35126 -NCIT:C135157 Stage I Appendix Neuroendocrine Tumor AJCC v8 8 35127 -NCIT:C135158 Stage II Appendix Neuroendocrine Tumor AJCC v8 8 35128 -NCIT:C135159 Stage III Appendix Neuroendocrine Tumor AJCC v8 8 35129 -NCIT:C135160 Stage IV Appendix Neuroendocrine Tumor AJCC v8 8 35130 -NCIT:C172666 Appendix Neuroendocrine Tumor G3 7 35131 -NCIT:C190029 Childhood Appendix Neuroendocrine Tumor 7 35132 -NCIT:C27445 Appendix L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 7 35133 -NCIT:C4138 Appendix Neuroendocrine Tumor G1 7 35134 -NCIT:C43565 Appendix Tubular Carcinoid 7 35135 -NCIT:C96423 Appendix Neuroendocrine Tumor G2 7 35136 -NCIT:C96424 Appendix Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 7 35137 -NCIT:C172660 Digestive System Neuroendocrine Tumor G3 5 35138 -NCIT:C172661 Esophageal Neuroendocrine Tumor G3 6 35139 -NCIT:C172662 Gastric Neuroendocrine Tumor G3 6 35140 -NCIT:C172669 Midgut Neuroendocrine Tumor G3 6 35141 -NCIT:C172666 Appendix Neuroendocrine Tumor G3 7 35142 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 7 35143 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 7 35144 -NCIT:C172670 Intestinal Neuroendocrine Tumor G3 6 35145 -NCIT:C172664 Small Intestinal Neuroendocrine Tumor G3 7 35146 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 8 35147 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 8 35148 -NCIT:C172672 Duodenal Neuroendocrine Tumor G3 8 35149 -NCIT:C172701 Colorectal Neuroendocrine Tumor G3 7 35150 -NCIT:C172702 Colon Neuroendocrine Tumor G3 8 35151 -NCIT:C172703 Rectal Neuroendocrine Tumor G3 8 35152 -NCIT:C172673 Ampulla of Vater Neuroendocrine Tumor G3 6 35153 -NCIT:C172721 Liver Neuroendocrine Tumor G3 6 35154 -NCIT:C172742 Gallbladder Neuroendocrine Tumor G3 6 35155 -NCIT:C172743 Extrahepatic Bile Duct Neuroendocrine Tumor G3 6 35156 -NCIT:C172814 Pancreatic Neuroendocrine Tumor G3 6 35157 -NCIT:C190076 Childhood Digestive System Neuroendocrine Tumor 5 35158 -NCIT:C190029 Childhood Appendix Neuroendocrine Tumor 6 35159 -NCIT:C26749 VIP-Producing Neuroendocrine Tumor 5 35160 -NCIT:C27454 Pancreatic VIP-Producing Neuroendocrine Tumor 6 35161 -NCIT:C95599 Pancreatic Vipoma 7 35162 -NCIT:C67461 Malignant Pancreatic Vipoma 8 35163 -NCIT:C27455 Small Intestinal VIP-Producing Neuroendocrine Tumor 6 35164 -NCIT:C65189 Malignant Vipoma 6 35165 -NCIT:C67461 Malignant Pancreatic Vipoma 7 35166 -NCIT:C27448 L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 5 35167 -NCIT:C27445 Appendix L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 6 35168 -NCIT:C27452 Small Intestinal L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 6 35169 -NCIT:C96161 Colorectal L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 6 35170 -NCIT:C27447 Colon L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 7 35171 -NCIT:C27720 Pancreatic Neuroendocrine Tumor 5 35172 -NCIT:C135560 Pancreatic Neuroendocrine Tumor by AJCC v8 Stage 6 35173 -NCIT:C135561 Stage I Pancreatic Neuroendocrine Tumor AJCC v8 7 35174 -NCIT:C135562 Stage II Pancreatic Neuroendocrine Tumor AJCC v8 7 35175 -NCIT:C135563 Stage III Pancreatic Neuroendocrine Tumor AJCC v8 7 35176 -NCIT:C135564 Stage IV Pancreatic Neuroendocrine Tumor AJCC v8 7 35177 -NCIT:C156488 Metastatic Pancreatic Neuroendocrine Tumor 6 35178 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 7 35179 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 35180 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 35181 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 7 35182 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 7 35183 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 35184 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 7 35185 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 35186 -NCIT:C172814 Pancreatic Neuroendocrine Tumor G3 6 35187 -NCIT:C190782 Unresectable Pancreatic Neuroendocrine Tumor 6 35188 -NCIT:C27454 Pancreatic VIP-Producing Neuroendocrine Tumor 6 35189 -NCIT:C95599 Pancreatic Vipoma 7 35190 -NCIT:C67461 Malignant Pancreatic Vipoma 8 35191 -NCIT:C27466 Pancreatic ACTH-Producing Neuroendocrine Tumor 6 35192 -NCIT:C28396 Pancreatic Delta Cell Neuroendocrine Tumor 6 35193 -NCIT:C28333 Non-Functioning Pancreatic Delta Cell Neuroendocrine Tumor 7 35194 -NCIT:C8006 Pancreatic Somatostatin-Producing Neuroendocrine Tumor 7 35195 -NCIT:C95595 Pancreatic Somatostatinoma 8 35196 -NCIT:C67369 Malignant Pancreatic Somatostatinoma 9 35197 -NCIT:C3062 Pancreatic Glucagon-Producing Neuroendocrine Tumor 6 35198 -NCIT:C95597 Pancreatic Glucagonoma 7 35199 -NCIT:C65187 Malignant Pancreatic Glucagonoma 8 35200 -NCIT:C3140 Pancreatic Insulin-Producing Neuroendocrine Tumor 6 35201 -NCIT:C95598 Pancreatic Insulinoma 7 35202 -NCIT:C65186 Malignant Pancreatic Insulinoma 8 35203 -NCIT:C4446 Pancreatic Serotonin-Producing Neuroendocrine Tumor 6 35204 -NCIT:C45835 Pancreatic Neuroendocrine Tumor G2 6 35205 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 7 35206 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 35207 -NCIT:C45838 Non-Functioning Pancreatic Neuroendocrine Tumor G2 7 35208 -NCIT:C45841 Functioning Pancreatic Neuroendocrine Tumor G2 7 35209 -NCIT:C45837 Non-Functioning Pancreatic Neuroendocrine Tumor 6 35210 -NCIT:C28333 Non-Functioning Pancreatic Delta Cell Neuroendocrine Tumor 7 35211 -NCIT:C45834 Pancreatic Neuroendocrine Microtumor 7 35212 -NCIT:C45838 Non-Functioning Pancreatic Neuroendocrine Tumor G2 7 35213 -NCIT:C95585 Non-Functioning Pancreatic Neuroendocrine Tumor G1 7 35214 -NCIT:C45840 Functioning Pancreatic Neuroendocrine Tumor 6 35215 -NCIT:C45841 Functioning Pancreatic Neuroendocrine Tumor G2 7 35216 -NCIT:C95595 Pancreatic Somatostatinoma 7 35217 -NCIT:C67369 Malignant Pancreatic Somatostatinoma 8 35218 -NCIT:C95596 Pancreatic Gastrinoma 7 35219 -NCIT:C67458 Malignant Pancreatic Gastrinoma 8 35220 -NCIT:C95597 Pancreatic Glucagonoma 7 35221 -NCIT:C65187 Malignant Pancreatic Glucagonoma 8 35222 -NCIT:C95598 Pancreatic Insulinoma 7 35223 -NCIT:C65186 Malignant Pancreatic Insulinoma 8 35224 -NCIT:C95599 Pancreatic Vipoma 7 35225 -NCIT:C67461 Malignant Pancreatic Vipoma 8 35226 -NCIT:C9069 Pancreatic Gastrin-Producing Neuroendocrine Tumor 6 35227 -NCIT:C95596 Pancreatic Gastrinoma 7 35228 -NCIT:C67458 Malignant Pancreatic Gastrinoma 8 35229 -NCIT:C95584 Pancreatic Neuroendocrine Tumor G1 6 35230 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 7 35231 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 35232 -NCIT:C95585 Non-Functioning Pancreatic Neuroendocrine Tumor G1 7 35233 -NCIT:C3050 Gastrin-Producing Neuroendocrine Tumor 5 35234 -NCIT:C27444 Gastric Gastrin-Producing Neuroendocrine Tumor 6 35235 -NCIT:C27450 Small Intestinal Gastrin-Producing Neuroendocrine Tumor 6 35236 -NCIT:C5731 Duodenal Gastrin-Producing Neuroendocrine Tumor 7 35237 -NCIT:C65188 Malignant Gastrinoma 6 35238 -NCIT:C67458 Malignant Pancreatic Gastrinoma 7 35239 -NCIT:C9069 Pancreatic Gastrin-Producing Neuroendocrine Tumor 6 35240 -NCIT:C95596 Pancreatic Gastrinoma 7 35241 -NCIT:C67458 Malignant Pancreatic Gastrinoma 8 35242 -NCIT:C3379 Somatostatin-Producing Neuroendocrine Tumor 5 35243 -NCIT:C27453 Small Intestinal Somatostatin-Producing Neuroendocrine Tumor 6 35244 -NCIT:C27407 Duodenal Somatostatin-Producing Neuroendocrine Tumor 7 35245 -NCIT:C5787 Jejunal Somatostatin-Producing Neuroendocrine Tumor 7 35246 -NCIT:C65190 Malignant Somatostatinoma 6 35247 -NCIT:C67369 Malignant Pancreatic Somatostatinoma 7 35248 -NCIT:C8006 Pancreatic Somatostatin-Producing Neuroendocrine Tumor 6 35249 -NCIT:C95595 Pancreatic Somatostatinoma 7 35250 -NCIT:C67369 Malignant Pancreatic Somatostatinoma 8 35251 -NCIT:C95988 Ampulla of Vater Somatostatin-Producing Neuroendocrine Tumor 6 35252 -NCIT:C5783 Liver Neuroendocrine Tumor 5 35253 -NCIT:C172719 Liver Neuroendocrine Tumor G1 6 35254 -NCIT:C172720 Liver Neuroendocrine Tumor G2 6 35255 -NCIT:C172721 Liver Neuroendocrine Tumor G3 6 35256 -NCIT:C7709 Digestive System Neuroendocrine Tumor G1 5 35257 -NCIT:C115245 Metastatic Digestive System Neuroendocrine Tumor G1 6 35258 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 7 35259 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 35260 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 7 35261 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 7 35262 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 35263 -NCIT:C172719 Liver Neuroendocrine Tumor G1 6 35264 -NCIT:C179419 Unresectable Digestive System Neuroendocrine Tumor G1 6 35265 -NCIT:C27252 Enterochromaffin-Like Cell Neuroendocrine Tumor G1 6 35266 -NCIT:C4635 Gastric Neuroendocrine Tumor G1 7 35267 -NCIT:C4138 Appendix Neuroendocrine Tumor G1 6 35268 -NCIT:C4637 Intestinal Neuroendocrine Tumor G1 6 35269 -NCIT:C4638 Small Intestinal Neuroendocrine Tumor G1 7 35270 -NCIT:C4935 Ileal Neuroendocrine Tumor G1 8 35271 -NCIT:C6425 Duodenal Neuroendocrine Tumor G1 8 35272 -NCIT:C6429 Jejunal Neuroendocrine Tumor G1 8 35273 -NCIT:C6424 Meckel Diverticulum Neuroendocrine Tumor G1 7 35274 -NCIT:C96160 Colorectal Neuroendocrine Tumor G1 7 35275 -NCIT:C5497 Colon Neuroendocrine Tumor G1 8 35276 -NCIT:C188043 Sigmoid Colon Neuroendocrine Tumor G1 9 35277 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 9 35278 -NCIT:C6426 Transverse Colon Neuroendocrine Tumor G1 9 35279 -NCIT:C6427 Ascending Colon Neuroendocrine Tumor G1 9 35280 -NCIT:C6428 Descending Colon Neuroendocrine Tumor G1 9 35281 -NCIT:C5547 Rectal Neuroendocrine Tumor G1 8 35282 -NCIT:C5820 Esophageal Neuroendocrine Tumor G1 6 35283 -NCIT:C5861 Extrahepatic Bile Duct Neuroendocrine Tumor G1 6 35284 -NCIT:C7861 Localized Digestive System Neuroendocrine Tumor G1 6 35285 -NCIT:C7862 Regional Digestive System Neuroendocrine Tumor G1 6 35286 -NCIT:C7864 Recurrent Digestive System Neuroendocrine Tumor G1 6 35287 -NCIT:C95584 Pancreatic Neuroendocrine Tumor G1 6 35288 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 7 35289 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 35290 -NCIT:C95585 Non-Functioning Pancreatic Neuroendocrine Tumor G1 7 35291 -NCIT:C95982 Ampulla of Vater Neuroendocrine Tumor G1 6 35292 -NCIT:C96543 Anal Canal Neuroendocrine Tumor G1 6 35293 -NCIT:C96924 Gallbladder Neuroendocrine Tumor G1 6 35294 -NCIT:C95616 Esophageal Neuroendocrine Tumor 5 35295 -NCIT:C172661 Esophageal Neuroendocrine Tumor G3 6 35296 -NCIT:C5820 Esophageal Neuroendocrine Tumor G1 6 35297 -NCIT:C95617 Esophageal Neuroendocrine Tumor G2 6 35298 -NCIT:C95871 Gastric Neuroendocrine Tumor 5 35299 -NCIT:C135045 Gastric Neuroendocrine Tumor by AJCC v8 Stage 6 35300 -NCIT:C135046 Stage I Gastric Neuroendocrine Tumor AJCC v8 7 35301 -NCIT:C135047 Stage II Gastric Neuroendocrine Tumor AJCC v8 7 35302 -NCIT:C135048 Stage III Gastric Neuroendocrine Tumor AJCC v8 7 35303 -NCIT:C135049 Stage IV Gastric Neuroendocrine Tumor AJCC v8 7 35304 -NCIT:C172662 Gastric Neuroendocrine Tumor G3 6 35305 -NCIT:C27443 Gastric Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 6 35306 -NCIT:C27444 Gastric Gastrin-Producing Neuroendocrine Tumor 6 35307 -NCIT:C4635 Gastric Neuroendocrine Tumor G1 6 35308 -NCIT:C95880 Gastric Neuroendocrine Tumor G2 6 35309 -NCIT:C95981 Ampulla of Vater Neuroendocrine Tumor 5 35310 -NCIT:C135081 Ampulla of Vater Neuroendocrine Tumor by AJCC v8 Stage 6 35311 -NCIT:C135082 Stage I Ampulla of Vater Neuroendocrine Tumor AJCC v8 7 35312 -NCIT:C135083 Stage II Ampulla of Vater Neuroendocrine Tumor AJCC v8 7 35313 -NCIT:C135084 Stage III Ampulla of Vater Neuroendocrine Tumor AJCC v8 7 35314 -NCIT:C135085 Stage IV Ampulla of Vater Neuroendocrine Tumor AJCC v8 7 35315 -NCIT:C172673 Ampulla of Vater Neuroendocrine Tumor G3 6 35316 -NCIT:C95982 Ampulla of Vater Neuroendocrine Tumor G1 6 35317 -NCIT:C95983 Ampulla of Vater Neuroendocrine Tumor G2 6 35318 -NCIT:C95987 Ampulla of Vater Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 6 35319 -NCIT:C95988 Ampulla of Vater Somatostatin-Producing Neuroendocrine Tumor 6 35320 -NCIT:C95989 Ampulla of Vater Gangliocytic Paraganglioma 6 35321 -NCIT:C96062 Intestinal Neuroendocrine Tumor 5 35322 -NCIT:C172670 Intestinal Neuroendocrine Tumor G3 6 35323 -NCIT:C172664 Small Intestinal Neuroendocrine Tumor G3 7 35324 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 8 35325 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 8 35326 -NCIT:C172672 Duodenal Neuroendocrine Tumor G3 8 35327 -NCIT:C172701 Colorectal Neuroendocrine Tumor G3 7 35328 -NCIT:C172702 Colon Neuroendocrine Tumor G3 8 35329 -NCIT:C172703 Rectal Neuroendocrine Tumor G3 8 35330 -NCIT:C4637 Intestinal Neuroendocrine Tumor G1 6 35331 -NCIT:C4638 Small Intestinal Neuroendocrine Tumor G1 7 35332 -NCIT:C4935 Ileal Neuroendocrine Tumor G1 8 35333 -NCIT:C6425 Duodenal Neuroendocrine Tumor G1 8 35334 -NCIT:C6429 Jejunal Neuroendocrine Tumor G1 8 35335 -NCIT:C6424 Meckel Diverticulum Neuroendocrine Tumor G1 7 35336 -NCIT:C96160 Colorectal Neuroendocrine Tumor G1 7 35337 -NCIT:C5497 Colon Neuroendocrine Tumor G1 8 35338 -NCIT:C188043 Sigmoid Colon Neuroendocrine Tumor G1 9 35339 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 9 35340 -NCIT:C6426 Transverse Colon Neuroendocrine Tumor G1 9 35341 -NCIT:C6427 Ascending Colon Neuroendocrine Tumor G1 9 35342 -NCIT:C6428 Descending Colon Neuroendocrine Tumor G1 9 35343 -NCIT:C5547 Rectal Neuroendocrine Tumor G1 8 35344 -NCIT:C5325 Intestinal Composite Gangliocytoma/Neuroma and Neuroendocrine Tumor 6 35345 -NCIT:C96073 Small Intestinal Composite Gangliocytoma/Neuroma and Neuroendocrine Tumor 7 35346 -NCIT:C96061 Small Intestinal Neuroendocrine Tumor 6 35347 -NCIT:C135080 Duodenal Neuroendocrine Tumor 7 35348 -NCIT:C135075 Duodenal Neuroendocrine Tumor by AJCC v8 Stage 8 35349 -NCIT:C135076 Stage I Duodenal Neuroendocrine Tumor AJCC v8 9 35350 -NCIT:C135077 Stage II Duodenal Neuroendocrine Tumor AJCC v8 9 35351 -NCIT:C135078 Stage III Duodenal Neuroendocrine Tumor AJCC v8 9 35352 -NCIT:C135079 Stage IV Duodenal Neuroendocrine Tumor AJCC v8 9 35353 -NCIT:C160442 Duodenal Neuroendocrine Tumor G2 8 35354 -NCIT:C172672 Duodenal Neuroendocrine Tumor G3 8 35355 -NCIT:C27407 Duodenal Somatostatin-Producing Neuroendocrine Tumor 8 35356 -NCIT:C5731 Duodenal Gastrin-Producing Neuroendocrine Tumor 8 35357 -NCIT:C6425 Duodenal Neuroendocrine Tumor G1 8 35358 -NCIT:C135090 Jejunal Neuroendocrine Tumor 7 35359 -NCIT:C135119 Jejunal Neuroendocrine Tumor by AJCC v8 Stage 8 35360 -NCIT:C135120 Stage I Jejunal Neuroendocrine Tumor AJCC v8 9 35361 -NCIT:C135121 Stage II Jejunal Neuroendocrine Tumor AJCC v8 9 35362 -NCIT:C135122 Stage III Jejunal Neuroendocrine Tumor AJCC v8 9 35363 -NCIT:C135123 Stage IV Jejunal Neuroendocrine Tumor AJCC v8 9 35364 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 8 35365 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 8 35366 -NCIT:C5787 Jejunal Somatostatin-Producing Neuroendocrine Tumor 8 35367 -NCIT:C6429 Jejunal Neuroendocrine Tumor G1 8 35368 -NCIT:C135092 Ileal Neuroendocrine Tumor 7 35369 -NCIT:C135124 Ileal Neuroendocrine Tumor by AJCC v8 Stage 8 35370 -NCIT:C135125 Stage I Ileal Neuroendocrine Tumor AJCC v8 9 35371 -NCIT:C135126 Stage II Ileal Neuroendocrine Tumor AJCC v8 9 35372 -NCIT:C135127 Stage III Ileal Neuroendocrine Tumor AJCC v8 9 35373 -NCIT:C135128 Stage IV Ileal Neuroendocrine Tumor AJCC v8 9 35374 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 8 35375 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 8 35376 -NCIT:C4935 Ileal Neuroendocrine Tumor G1 8 35377 -NCIT:C172664 Small Intestinal Neuroendocrine Tumor G3 7 35378 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 8 35379 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 8 35380 -NCIT:C172672 Duodenal Neuroendocrine Tumor G3 8 35381 -NCIT:C27450 Small Intestinal Gastrin-Producing Neuroendocrine Tumor 7 35382 -NCIT:C5731 Duodenal Gastrin-Producing Neuroendocrine Tumor 8 35383 -NCIT:C27451 Small Intestinal Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 7 35384 -NCIT:C27452 Small Intestinal L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 7 35385 -NCIT:C27453 Small Intestinal Somatostatin-Producing Neuroendocrine Tumor 7 35386 -NCIT:C27407 Duodenal Somatostatin-Producing Neuroendocrine Tumor 8 35387 -NCIT:C5787 Jejunal Somatostatin-Producing Neuroendocrine Tumor 8 35388 -NCIT:C27455 Small Intestinal VIP-Producing Neuroendocrine Tumor 7 35389 -NCIT:C4638 Small Intestinal Neuroendocrine Tumor G1 7 35390 -NCIT:C4935 Ileal Neuroendocrine Tumor G1 8 35391 -NCIT:C6425 Duodenal Neuroendocrine Tumor G1 8 35392 -NCIT:C6429 Jejunal Neuroendocrine Tumor G1 8 35393 -NCIT:C96067 Small Intestinal Neuroendocrine Tumor G2 7 35394 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 8 35395 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 8 35396 -NCIT:C160442 Duodenal Neuroendocrine Tumor G2 8 35397 -NCIT:C96073 Small Intestinal Composite Gangliocytoma/Neuroma and Neuroendocrine Tumor 7 35398 -NCIT:C96159 Colorectal Neuroendocrine Tumor 6 35399 -NCIT:C135205 Colorectal Neuroendocrine Tumor by AJCC v8 Stage 7 35400 -NCIT:C135206 Stage I Colorectal Neuroendocrine Tumor AJCC v8 8 35401 -NCIT:C135368 Stage I Colon Neuroendocrine Tumor AJCC v8 9 35402 -NCIT:C135528 Stage I Rectal Neuroendocrine Tumor AJCC v8 9 35403 -NCIT:C135207 Stage IIA Colorectal Neuroendocrine Tumor AJCC v8 8 35404 -NCIT:C135369 Stage IIA Colon Neuroendocrine Tumor AJCC v8 9 35405 -NCIT:C135529 Stage IIA Rectal Neuroendocrine Tumor AJCC v8 9 35406 -NCIT:C135208 Stage IIB Colorectal Neuroendocrine Tumor AJCC v8 8 35407 -NCIT:C135370 Stage IIB Colon Neuroendocrine Tumor AJCC v8 9 35408 -NCIT:C135530 Stage IIB Rectal Neuroendocrine Tumor AJCC v8 9 35409 -NCIT:C135209 Stage IIIA Colorectal Neuroendocrine Tumor AJCC v8 8 35410 -NCIT:C135524 Stage IIIA Colon Neuroendocrine Tumor AJCC v8 9 35411 -NCIT:C135531 Stage IIIA Rectal Neuroendocrine Tumor AJCC v8 9 35412 -NCIT:C135210 Stage IIIB Colorectal Neuroendocrine Tumor AJCC v8 8 35413 -NCIT:C135525 Stage IIIB Colon Neuroendocrine Tumor AJCC v8 9 35414 -NCIT:C135532 Stage IIIB Rectal Neuroendocrine Tumor AJCC v8 9 35415 -NCIT:C135211 Stage IV Colorectal Neuroendocrine Tumor AJCC v8 8 35416 -NCIT:C135526 Stage IV Colon Neuroendocrine Tumor AJCC v8 9 35417 -NCIT:C135533 Stage IV Rectal Neuroendocrine Tumor AJCC v8 9 35418 -NCIT:C135214 Colon Neuroendocrine Tumor by AJCC v8 Stage 8 35419 -NCIT:C135368 Stage I Colon Neuroendocrine Tumor AJCC v8 9 35420 -NCIT:C135369 Stage IIA Colon Neuroendocrine Tumor AJCC v8 9 35421 -NCIT:C135370 Stage IIB Colon Neuroendocrine Tumor AJCC v8 9 35422 -NCIT:C135524 Stage IIIA Colon Neuroendocrine Tumor AJCC v8 9 35423 -NCIT:C135525 Stage IIIB Colon Neuroendocrine Tumor AJCC v8 9 35424 -NCIT:C135526 Stage IV Colon Neuroendocrine Tumor AJCC v8 9 35425 -NCIT:C135527 Rectal Neuroendocrine Tumor by AJCC v8 Stage 8 35426 -NCIT:C135528 Stage I Rectal Neuroendocrine Tumor AJCC v8 9 35427 -NCIT:C135529 Stage IIA Rectal Neuroendocrine Tumor AJCC v8 9 35428 -NCIT:C135530 Stage IIB Rectal Neuroendocrine Tumor AJCC v8 9 35429 -NCIT:C135531 Stage IIIA Rectal Neuroendocrine Tumor AJCC v8 9 35430 -NCIT:C135532 Stage IIIB Rectal Neuroendocrine Tumor AJCC v8 9 35431 -NCIT:C135533 Stage IV Rectal Neuroendocrine Tumor AJCC v8 9 35432 -NCIT:C135212 Colon Neuroendocrine Tumor 7 35433 -NCIT:C135214 Colon Neuroendocrine Tumor by AJCC v8 Stage 8 35434 -NCIT:C135368 Stage I Colon Neuroendocrine Tumor AJCC v8 9 35435 -NCIT:C135369 Stage IIA Colon Neuroendocrine Tumor AJCC v8 9 35436 -NCIT:C135370 Stage IIB Colon Neuroendocrine Tumor AJCC v8 9 35437 -NCIT:C135524 Stage IIIA Colon Neuroendocrine Tumor AJCC v8 9 35438 -NCIT:C135525 Stage IIIB Colon Neuroendocrine Tumor AJCC v8 9 35439 -NCIT:C135526 Stage IV Colon Neuroendocrine Tumor AJCC v8 9 35440 -NCIT:C160443 Colon Neuroendocrine Tumor G2 8 35441 -NCIT:C172702 Colon Neuroendocrine Tumor G3 8 35442 -NCIT:C27446 Colon Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 8 35443 -NCIT:C27447 Colon L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 8 35444 -NCIT:C5497 Colon Neuroendocrine Tumor G1 8 35445 -NCIT:C188043 Sigmoid Colon Neuroendocrine Tumor G1 9 35446 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 9 35447 -NCIT:C6426 Transverse Colon Neuroendocrine Tumor G1 9 35448 -NCIT:C6427 Ascending Colon Neuroendocrine Tumor G1 9 35449 -NCIT:C6428 Descending Colon Neuroendocrine Tumor G1 9 35450 -NCIT:C135213 Rectal Neuroendocrine Tumor 7 35451 -NCIT:C135527 Rectal Neuroendocrine Tumor by AJCC v8 Stage 8 35452 -NCIT:C135528 Stage I Rectal Neuroendocrine Tumor AJCC v8 9 35453 -NCIT:C135529 Stage IIA Rectal Neuroendocrine Tumor AJCC v8 9 35454 -NCIT:C135530 Stage IIB Rectal Neuroendocrine Tumor AJCC v8 9 35455 -NCIT:C135531 Stage IIIA Rectal Neuroendocrine Tumor AJCC v8 9 35456 -NCIT:C135532 Stage IIIB Rectal Neuroendocrine Tumor AJCC v8 9 35457 -NCIT:C135533 Stage IV Rectal Neuroendocrine Tumor AJCC v8 9 35458 -NCIT:C160451 Rectal Neuroendocrine Tumor G2 8 35459 -NCIT:C172703 Rectal Neuroendocrine Tumor G3 8 35460 -NCIT:C5547 Rectal Neuroendocrine Tumor G1 8 35461 -NCIT:C172701 Colorectal Neuroendocrine Tumor G3 7 35462 -NCIT:C172702 Colon Neuroendocrine Tumor G3 8 35463 -NCIT:C172703 Rectal Neuroendocrine Tumor G3 8 35464 -NCIT:C96160 Colorectal Neuroendocrine Tumor G1 7 35465 -NCIT:C5497 Colon Neuroendocrine Tumor G1 8 35466 -NCIT:C188043 Sigmoid Colon Neuroendocrine Tumor G1 9 35467 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 9 35468 -NCIT:C6426 Transverse Colon Neuroendocrine Tumor G1 9 35469 -NCIT:C6427 Ascending Colon Neuroendocrine Tumor G1 9 35470 -NCIT:C6428 Descending Colon Neuroendocrine Tumor G1 9 35471 -NCIT:C5547 Rectal Neuroendocrine Tumor G1 8 35472 -NCIT:C96161 Colorectal L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 7 35473 -NCIT:C27447 Colon L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 8 35474 -NCIT:C96162 Colorectal Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 7 35475 -NCIT:C27446 Colon Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 8 35476 -NCIT:C96163 Colorectal Neuroendocrine Tumor G2 7 35477 -NCIT:C160443 Colon Neuroendocrine Tumor G2 8 35478 -NCIT:C160451 Rectal Neuroendocrine Tumor G2 8 35479 -NCIT:C96165 Intestinal Neuroendocrine Tumor G2 6 35480 -NCIT:C96067 Small Intestinal Neuroendocrine Tumor G2 7 35481 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 8 35482 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 8 35483 -NCIT:C160442 Duodenal Neuroendocrine Tumor G2 8 35484 -NCIT:C96163 Colorectal Neuroendocrine Tumor G2 7 35485 -NCIT:C160443 Colon Neuroendocrine Tumor G2 8 35486 -NCIT:C160451 Rectal Neuroendocrine Tumor G2 8 35487 -NCIT:C96166 Digestive System Neuroendocrine Tumor G2 5 35488 -NCIT:C167328 Midgut Neuroendocrine Tumor G2 6 35489 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 7 35490 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 7 35491 -NCIT:C96423 Appendix Neuroendocrine Tumor G2 7 35492 -NCIT:C172720 Liver Neuroendocrine Tumor G2 6 35493 -NCIT:C179415 Metastatic Digestive System Neuroendocrine Tumor G2 6 35494 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 7 35495 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 7 35496 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 35497 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 7 35498 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 35499 -NCIT:C187345 Unresectable Digestive System Neuroendocrine Tumor G2 6 35500 -NCIT:C45835 Pancreatic Neuroendocrine Tumor G2 6 35501 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 7 35502 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 35503 -NCIT:C45838 Non-Functioning Pancreatic Neuroendocrine Tumor G2 7 35504 -NCIT:C45841 Functioning Pancreatic Neuroendocrine Tumor G2 7 35505 -NCIT:C95617 Esophageal Neuroendocrine Tumor G2 6 35506 -NCIT:C95880 Gastric Neuroendocrine Tumor G2 6 35507 -NCIT:C95983 Ampulla of Vater Neuroendocrine Tumor G2 6 35508 -NCIT:C96165 Intestinal Neuroendocrine Tumor G2 6 35509 -NCIT:C96067 Small Intestinal Neuroendocrine Tumor G2 7 35510 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 8 35511 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 8 35512 -NCIT:C160442 Duodenal Neuroendocrine Tumor G2 8 35513 -NCIT:C96163 Colorectal Neuroendocrine Tumor G2 7 35514 -NCIT:C160443 Colon Neuroendocrine Tumor G2 8 35515 -NCIT:C160451 Rectal Neuroendocrine Tumor G2 8 35516 -NCIT:C96546 Anal Canal Neuroendocrine Tumor G2 6 35517 -NCIT:C96925 Gallbladder Neuroendocrine Tumor G2 6 35518 -NCIT:C96957 Extrahepatic Bile Duct Neuroendocrine Tumor G2 6 35519 -NCIT:C96540 Anal Canal Neuroendocrine Tumor 5 35520 -NCIT:C96543 Anal Canal Neuroendocrine Tumor G1 6 35521 -NCIT:C96546 Anal Canal Neuroendocrine Tumor G2 6 35522 -NCIT:C96918 Gallbladder Neuroendocrine Tumor 5 35523 -NCIT:C172742 Gallbladder Neuroendocrine Tumor G3 6 35524 -NCIT:C96924 Gallbladder Neuroendocrine Tumor G1 6 35525 -NCIT:C96925 Gallbladder Neuroendocrine Tumor G2 6 35526 -NCIT:C96930 Gallbladder Tubular Carcinoid 6 35527 -NCIT:C96955 Extrahepatic Bile Duct Neuroendocrine Tumor 5 35528 -NCIT:C172743 Extrahepatic Bile Duct Neuroendocrine Tumor G3 6 35529 -NCIT:C5861 Extrahepatic Bile Duct Neuroendocrine Tumor G1 6 35530 -NCIT:C96957 Extrahepatic Bile Duct Neuroendocrine Tumor G2 6 35531 -NCIT:C95405 Digestive System Neuroendocrine Carcinoma 4 35532 -NCIT:C126324 Gastroesophageal Junction Neuroendocrine Carcinoma 5 35533 -NCIT:C126323 Gastroesophageal Junction Large Cell Neuroendocrine Carcinoma 6 35534 -NCIT:C126325 Gastroesophageal Junction Small Cell Neuroendocrine Carcinoma 6 35535 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 6 35536 -NCIT:C154617 Digestive System Large Cell Neuroendocrine Carcinoma 5 35537 -NCIT:C126323 Gastroesophageal Junction Large Cell Neuroendocrine Carcinoma 6 35538 -NCIT:C172722 Liver Large Cell Neuroendocrine Carcinoma 6 35539 -NCIT:C95582 Pancreatic Large Cell Neuroendocrine Carcinoma 6 35540 -NCIT:C95620 Esophageal Large Cell Neuroendocrine Carcinoma 6 35541 -NCIT:C95885 Gastric Large Cell Neuroendocrine Carcinoma 6 35542 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 7 35543 -NCIT:C95985 Ampulla of Vater Large Cell Neuroendocrine Carcinoma 6 35544 -NCIT:C96065 Small Intestinal Large Cell Neuroendocrine Carcinoma 6 35545 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 7 35546 -NCIT:C96157 Colorectal Large Cell Neuroendocrine Carcinoma 6 35547 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 7 35548 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 7 35549 -NCIT:C96426 Appendix Large Cell Neuroendocrine Carcinoma 6 35550 -NCIT:C96550 Anal Canal Large Cell Neuroendocrine Carcinoma 6 35551 -NCIT:C96921 Gallbladder Large Cell Neuroendocrine Carcinoma 6 35552 -NCIT:C96958 Extrahepatic Bile Duct Large Cell Neuroendocrine Carcinoma 6 35553 -NCIT:C154641 Digestive System Small Cell Neuroendocrine Carcinoma 5 35554 -NCIT:C126325 Gastroesophageal Junction Small Cell Neuroendocrine Carcinoma 6 35555 -NCIT:C172725 Liver Small Cell Neuroendocrine Carcinoma 6 35556 -NCIT:C27449 Small Intestinal Small Cell Neuroendocrine Carcinoma 6 35557 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 7 35558 -NCIT:C43555 Appendix Small Cell Neuroendocrine Carcinoma 6 35559 -NCIT:C43587 Colorectal Small Cell Neuroendocrine Carcinoma 6 35560 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 7 35561 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 7 35562 -NCIT:C5845 Extrahepatic Bile Duct Small Cell Neuroendocrine Carcinoma 6 35563 -NCIT:C6655 Ampulla of Vater Small Cell Neuroendocrine Carcinoma 6 35564 -NCIT:C6762 Esophageal Small Cell Neuroendocrine Carcinoma 6 35565 -NCIT:C6763 Gallbladder Small Cell Neuroendocrine Carcinoma 6 35566 -NCIT:C6764 Gastric Small Cell Neuroendocrine Carcinoma 6 35567 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 7 35568 -NCIT:C95583 Pancreatic Small Cell Neuroendocrine Carcinoma 6 35569 -NCIT:C96551 Anal Canal Small Cell Neuroendocrine Carcinoma 6 35570 -NCIT:C155935 Unresectable Digestive System Neuroendocrine Carcinoma 5 35571 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 6 35572 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 6 35573 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 5 35574 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 6 35575 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 7 35576 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 6 35577 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 7 35578 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 6 35579 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 7 35580 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 35581 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 35582 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 6 35583 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 7 35584 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 35585 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 35586 -NCIT:C155937 Refractory Digestive System Neuroendocrine Carcinoma 5 35587 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 6 35588 -NCIT:C155938 Recurrent Digestive System Neuroendocrine Carcinoma 5 35589 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 6 35590 -NCIT:C3770 Pancreatic Neuroendocrine Carcinoma 5 35591 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 6 35592 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 6 35593 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 6 35594 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 7 35595 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 6 35596 -NCIT:C95582 Pancreatic Large Cell Neuroendocrine Carcinoma 6 35597 -NCIT:C95583 Pancreatic Small Cell Neuroendocrine Carcinoma 6 35598 -NCIT:C95619 Esophageal Neuroendocrine Carcinoma 5 35599 -NCIT:C6762 Esophageal Small Cell Neuroendocrine Carcinoma 6 35600 -NCIT:C95620 Esophageal Large Cell Neuroendocrine Carcinoma 6 35601 -NCIT:C95884 Gastric Neuroendocrine Carcinoma 5 35602 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 6 35603 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 7 35604 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 35605 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 35606 -NCIT:C6764 Gastric Small Cell Neuroendocrine Carcinoma 6 35607 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 7 35608 -NCIT:C95885 Gastric Large Cell Neuroendocrine Carcinoma 6 35609 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 7 35610 -NCIT:C95984 Ampulla of Vater Neuroendocrine Carcinoma 5 35611 -NCIT:C6655 Ampulla of Vater Small Cell Neuroendocrine Carcinoma 6 35612 -NCIT:C95985 Ampulla of Vater Large Cell Neuroendocrine Carcinoma 6 35613 -NCIT:C96063 Intestinal Neuroendocrine Carcinoma 5 35614 -NCIT:C96064 Small Intestinal Neuroendocrine Carcinoma 6 35615 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 7 35616 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 35617 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 35618 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 35619 -NCIT:C27449 Small Intestinal Small Cell Neuroendocrine Carcinoma 7 35620 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 35621 -NCIT:C96065 Small Intestinal Large Cell Neuroendocrine Carcinoma 7 35622 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 35623 -NCIT:C96156 Colorectal Neuroendocrine Carcinoma 6 35624 -NCIT:C43587 Colorectal Small Cell Neuroendocrine Carcinoma 7 35625 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 8 35626 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 8 35627 -NCIT:C96157 Colorectal Large Cell Neuroendocrine Carcinoma 7 35628 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 8 35629 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 8 35630 -NCIT:C96425 Appendix Neuroendocrine Carcinoma 5 35631 -NCIT:C43555 Appendix Small Cell Neuroendocrine Carcinoma 6 35632 -NCIT:C96426 Appendix Large Cell Neuroendocrine Carcinoma 6 35633 -NCIT:C96549 Anal Canal Neuroendocrine Carcinoma 5 35634 -NCIT:C96550 Anal Canal Large Cell Neuroendocrine Carcinoma 6 35635 -NCIT:C96551 Anal Canal Small Cell Neuroendocrine Carcinoma 6 35636 -NCIT:C96787 Liver Neuroendocrine Carcinoma 5 35637 -NCIT:C172722 Liver Large Cell Neuroendocrine Carcinoma 6 35638 -NCIT:C172725 Liver Small Cell Neuroendocrine Carcinoma 6 35639 -NCIT:C96919 Gallbladder Neuroendocrine Carcinoma 5 35640 -NCIT:C6763 Gallbladder Small Cell Neuroendocrine Carcinoma 6 35641 -NCIT:C96921 Gallbladder Large Cell Neuroendocrine Carcinoma 6 35642 -NCIT:C96956 Extrahepatic Bile Duct Neuroendocrine Carcinoma 5 35643 -NCIT:C5845 Extrahepatic Bile Duct Small Cell Neuroendocrine Carcinoma 6 35644 -NCIT:C96958 Extrahepatic Bile Duct Large Cell Neuroendocrine Carcinoma 6 35645 -NCIT:C95980 Ampulla of Vater Neuroendocrine Neoplasm 4 35646 -NCIT:C95981 Ampulla of Vater Neuroendocrine Tumor 5 35647 -NCIT:C135081 Ampulla of Vater Neuroendocrine Tumor by AJCC v8 Stage 6 35648 -NCIT:C135082 Stage I Ampulla of Vater Neuroendocrine Tumor AJCC v8 7 35649 -NCIT:C135083 Stage II Ampulla of Vater Neuroendocrine Tumor AJCC v8 7 35650 -NCIT:C135084 Stage III Ampulla of Vater Neuroendocrine Tumor AJCC v8 7 35651 -NCIT:C135085 Stage IV Ampulla of Vater Neuroendocrine Tumor AJCC v8 7 35652 -NCIT:C172673 Ampulla of Vater Neuroendocrine Tumor G3 6 35653 -NCIT:C95982 Ampulla of Vater Neuroendocrine Tumor G1 6 35654 -NCIT:C95983 Ampulla of Vater Neuroendocrine Tumor G2 6 35655 -NCIT:C95987 Ampulla of Vater Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 6 35656 -NCIT:C95988 Ampulla of Vater Somatostatin-Producing Neuroendocrine Tumor 6 35657 -NCIT:C95989 Ampulla of Vater Gangliocytic Paraganglioma 6 35658 -NCIT:C95984 Ampulla of Vater Neuroendocrine Carcinoma 5 35659 -NCIT:C6655 Ampulla of Vater Small Cell Neuroendocrine Carcinoma 6 35660 -NCIT:C95985 Ampulla of Vater Large Cell Neuroendocrine Carcinoma 6 35661 -NCIT:C96786 Liver Neuroendocrine Neoplasm 4 35662 -NCIT:C5783 Liver Neuroendocrine Tumor 5 35663 -NCIT:C172719 Liver Neuroendocrine Tumor G1 6 35664 -NCIT:C172720 Liver Neuroendocrine Tumor G2 6 35665 -NCIT:C172721 Liver Neuroendocrine Tumor G3 6 35666 -NCIT:C96787 Liver Neuroendocrine Carcinoma 5 35667 -NCIT:C172722 Liver Large Cell Neuroendocrine Carcinoma 6 35668 -NCIT:C172725 Liver Small Cell Neuroendocrine Carcinoma 6 35669 -NCIT:C96917 Gallbladder Neuroendocrine Neoplasm 4 35670 -NCIT:C96918 Gallbladder Neuroendocrine Tumor 5 35671 -NCIT:C172742 Gallbladder Neuroendocrine Tumor G3 6 35672 -NCIT:C96924 Gallbladder Neuroendocrine Tumor G1 6 35673 -NCIT:C96925 Gallbladder Neuroendocrine Tumor G2 6 35674 -NCIT:C96930 Gallbladder Tubular Carcinoid 6 35675 -NCIT:C96919 Gallbladder Neuroendocrine Carcinoma 5 35676 -NCIT:C6763 Gallbladder Small Cell Neuroendocrine Carcinoma 6 35677 -NCIT:C96921 Gallbladder Large Cell Neuroendocrine Carcinoma 6 35678 -NCIT:C96954 Extrahepatic Bile Duct Neuroendocrine Neoplasm 4 35679 -NCIT:C96955 Extrahepatic Bile Duct Neuroendocrine Tumor 5 35680 -NCIT:C172743 Extrahepatic Bile Duct Neuroendocrine Tumor G3 6 35681 -NCIT:C5861 Extrahepatic Bile Duct Neuroendocrine Tumor G1 6 35682 -NCIT:C96957 Extrahepatic Bile Duct Neuroendocrine Tumor G2 6 35683 -NCIT:C96956 Extrahepatic Bile Duct Neuroendocrine Carcinoma 5 35684 -NCIT:C5845 Extrahepatic Bile Duct Small Cell Neuroendocrine Carcinoma 6 35685 -NCIT:C96958 Extrahepatic Bile Duct Large Cell Neuroendocrine Carcinoma 6 35686 -NCIT:C2877 Anal Neoplasm 3 35687 -NCIT:C4054 Anal Condyloma Acuminatum 4 35688 -NCIT:C4595 Anal Intraepithelial Neoplasia 4 35689 -NCIT:C157573 Low Grade Anal Intraepithelial Neoplasia 5 35690 -NCIT:C27238 Low Grade Anal Canal Intraepithelial Neoplasia 6 35691 -NCIT:C172706 High Grade Anal Intraepithelial Neoplasia 5 35692 -NCIT:C157574 Anal Intraepithelial Neoplasia 2 6 35693 -NCIT:C157575 Anal Intraepithelial Neoplasia 3 6 35694 -NCIT:C27275 High Grade Anal Canal Intraepithelial Neoplasia 6 35695 -NCIT:C43598 Perianal Intraepithelial Neoplasia 5 35696 -NCIT:C7490 Anal Canal Intraepithelial Neoplasia 5 35697 -NCIT:C27238 Low Grade Anal Canal Intraepithelial Neoplasia 6 35698 -NCIT:C27275 High Grade Anal Canal Intraepithelial Neoplasia 6 35699 -NCIT:C4611 Benign Anal Neoplasm 4 35700 -NCIT:C139546 Anal Fibroadenoma 5 35701 -NCIT:C5607 Benign Anal Granular Cell Tumor 5 35702 -NCIT:C5608 Anal Leiomyoma 5 35703 -NCIT:C96554 Anal Canal Squamous Papilloma 5 35704 -NCIT:C96699 Anal Hidradenoma Papilliferum 5 35705 -NCIT:C5603 Anal Canal Neuroendocrine Neoplasm 4 35706 -NCIT:C96540 Anal Canal Neuroendocrine Tumor 5 35707 -NCIT:C96543 Anal Canal Neuroendocrine Tumor G1 6 35708 -NCIT:C96546 Anal Canal Neuroendocrine Tumor G2 6 35709 -NCIT:C96549 Anal Canal Neuroendocrine Carcinoma 5 35710 -NCIT:C96550 Anal Canal Large Cell Neuroendocrine Carcinoma 6 35711 -NCIT:C96551 Anal Canal Small Cell Neuroendocrine Carcinoma 6 35712 -NCIT:C7379 Malignant Anal Neoplasm 4 35713 -NCIT:C4639 Anal Melanoma 5 35714 -NCIT:C5047 AIDS-Related Malignant Anal Neoplasm 5 35715 -NCIT:C7465 AIDS-Related Anal Non-Hodgkin Lymphoma 6 35716 -NCIT:C9278 AIDS-Related Anal Carcinoma 6 35717 -NCIT:C133095 AIDS-Related Anal Canal Carcinoma 7 35718 -NCIT:C27282 Stage 0 AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 35719 -NCIT:C27283 Stage I AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 35720 -NCIT:C27284 Stage II AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 35721 -NCIT:C27285 Stage III AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 35722 -NCIT:C27286 Stage IV AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 35723 -NCIT:C9249 Recurrent AIDS-Related Anal Canal Carcinoma 8 35724 -NCIT:C5601 Anal Lymphoma 5 35725 -NCIT:C7465 AIDS-Related Anal Non-Hodgkin Lymphoma 6 35726 -NCIT:C5611 Anal Sarcoma 5 35727 -NCIT:C5599 Anal Leiomyosarcoma 6 35728 -NCIT:C5602 Anal Kaposi Sarcoma 6 35729 -NCIT:C5610 Anal Rhabdomyosarcoma 6 35730 -NCIT:C7460 Metastatic Malignant Neoplasm in the Anus 5 35731 -NCIT:C9291 Anal Carcinoma 5 35732 -NCIT:C133794 Anal Cancer by AJCC v8 Stage 6 35733 -NCIT:C133795 Stage 0 Anal Cancer AJCC v8 7 35734 -NCIT:C157575 Anal Intraepithelial Neoplasia 3 8 35735 -NCIT:C133796 Stage I Anal Cancer AJCC v8 7 35736 -NCIT:C133797 Stage II Anal Cancer AJCC v8 7 35737 -NCIT:C133798 Stage IIA Anal Cancer AJCC v8 8 35738 -NCIT:C133799 Stage IIB Anal Cancer AJCC v8 8 35739 -NCIT:C133800 Stage III Anal Cancer AJCC v8 7 35740 -NCIT:C133801 Stage IIIA Anal Cancer AJCC v8 8 35741 -NCIT:C133802 Stage IIIB Anal Cancer AJCC v8 8 35742 -NCIT:C133803 Stage IIIC Anal Cancer AJCC v8 8 35743 -NCIT:C133804 Stage IV Anal Cancer AJCC v8 7 35744 -NCIT:C137857 Refractory Anal Carcinoma 6 35745 -NCIT:C173334 Refractory Anal Canal Squamous Cell Carcinoma 7 35746 -NCIT:C167354 Microinvasive Anal Carcinoma 6 35747 -NCIT:C170514 Metastatic Anal Carcinoma 6 35748 -NCIT:C168977 Locally Advanced Anal Carcinoma 7 35749 -NCIT:C169103 Metastatic Anal Squamous Cell Carcinoma 7 35750 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 35751 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 35752 -NCIT:C170515 Advanced Anal Carcinoma 7 35753 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 8 35754 -NCIT:C5612 Metastatic Anal Canal Carcinoma 7 35755 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 35756 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 35757 -NCIT:C5600 Anal Adenocarcinoma 6 35758 -NCIT:C153575 Recurrent Anal Adenocarcinoma 7 35759 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 8 35760 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 8 35761 -NCIT:C5598 Anal Paget Disease 7 35762 -NCIT:C7476 Anal Margin Paget Disease 8 35763 -NCIT:C7477 Anal Canal Paget Disease 8 35764 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 9 35765 -NCIT:C7471 Anal Canal Adenocarcinoma 7 35766 -NCIT:C5606 Anal Mucinous Adenocarcinoma 8 35767 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 9 35768 -NCIT:C7477 Anal Canal Paget Disease 8 35769 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 9 35770 -NCIT:C7474 Anal Extramucosal (Perianal) Adenocarcinoma 7 35771 -NCIT:C5609 Anal Glands Adenocarcinoma 8 35772 -NCIT:C7475 Anal Adenocarcinoma within Anorectal Fistula 8 35773 -NCIT:C7472 Anal Margin Carcinoma 6 35774 -NCIT:C6925 Anal Margin Squamous Cell Carcinoma 7 35775 -NCIT:C7473 Anal Margin Basal Cell Carcinoma 7 35776 -NCIT:C7476 Anal Margin Paget Disease 7 35777 -NCIT:C7489 Anal Canal Carcinoma 6 35778 -NCIT:C133095 AIDS-Related Anal Canal Carcinoma 7 35779 -NCIT:C27282 Stage 0 AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 35780 -NCIT:C27283 Stage I AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 35781 -NCIT:C27284 Stage II AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 35782 -NCIT:C27285 Stage III AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 35783 -NCIT:C27286 Stage IV AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 35784 -NCIT:C9249 Recurrent AIDS-Related Anal Canal Carcinoma 8 35785 -NCIT:C133787 Anal Canal Cancer by AJCC v6 and v7 Stage 7 35786 -NCIT:C6873 Stage IV Anal Canal Cancer AJCC v6 and v7 8 35787 -NCIT:C27286 Stage IV AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 35788 -NCIT:C7775 Stage II Anal Canal Cancer AJCC v6 and v7 8 35789 -NCIT:C27284 Stage II AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 35790 -NCIT:C7776 Stage III Anal Canal Cancer AJCC v6 and v7 8 35791 -NCIT:C27285 Stage III AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 35792 -NCIT:C5925 Stage IIIA Anal Canal Cancer AJCC v6 and v7 9 35793 -NCIT:C5926 Stage IIIB Anal Canal Cancer AJCC v6 and v7 9 35794 -NCIT:C7794 Stage 0 Anal Canal Cancer AJCC v6 and v7 8 35795 -NCIT:C27282 Stage 0 AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 35796 -NCIT:C9037 Stage I Anal Canal Cancer AJCC v6 and v7 8 35797 -NCIT:C27283 Stage I AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 35798 -NCIT:C5612 Metastatic Anal Canal Carcinoma 7 35799 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 35800 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 35801 -NCIT:C7469 Anal Canal Squamous Cell Carcinoma 7 35802 -NCIT:C173334 Refractory Anal Canal Squamous Cell Carcinoma 8 35803 -NCIT:C175360 Recurrent Anal Canal Squamous Cell Carcinoma 8 35804 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 9 35805 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 35806 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 35807 -NCIT:C175384 Unresectable Anal Canal Squamous Cell Carcinoma 8 35808 -NCIT:C7471 Anal Canal Adenocarcinoma 7 35809 -NCIT:C5606 Anal Mucinous Adenocarcinoma 8 35810 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 9 35811 -NCIT:C7477 Anal Canal Paget Disease 8 35812 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 9 35813 -NCIT:C7793 Recurrent Anal Canal Carcinoma 7 35814 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 8 35815 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 8 35816 -NCIT:C175360 Recurrent Anal Canal Squamous Cell Carcinoma 8 35817 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 9 35818 -NCIT:C9249 Recurrent AIDS-Related Anal Canal Carcinoma 8 35819 -NCIT:C8255 Anal Canal Cloacogenic Carcinoma 7 35820 -NCIT:C96529 Anal Canal Undifferentiated Carcinoma 7 35821 -NCIT:C96549 Anal Canal Neuroendocrine Carcinoma 7 35822 -NCIT:C96550 Anal Canal Large Cell Neuroendocrine Carcinoma 8 35823 -NCIT:C96551 Anal Canal Small Cell Neuroendocrine Carcinoma 8 35824 -NCIT:C96553 Anal Canal Mixed Adenoneuroendocrine Carcinoma 7 35825 -NCIT:C9161 Anal Squamous Cell Carcinoma 6 35826 -NCIT:C157575 Anal Intraepithelial Neoplasia 3 7 35827 -NCIT:C169102 Recurrent Anal Squamous Cell Carcinoma 7 35828 -NCIT:C175360 Recurrent Anal Canal Squamous Cell Carcinoma 8 35829 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 9 35830 -NCIT:C169103 Metastatic Anal Squamous Cell Carcinoma 7 35831 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 35832 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 35833 -NCIT:C173156 Unresectable Anal Squamous Cell Carcinoma 7 35834 -NCIT:C175384 Unresectable Anal Canal Squamous Cell Carcinoma 8 35835 -NCIT:C27681 Human Papillomavirus-Related Anal Squamous Cell Carcinoma 7 35836 -NCIT:C6925 Anal Margin Squamous Cell Carcinoma 7 35837 -NCIT:C7469 Anal Canal Squamous Cell Carcinoma 7 35838 -NCIT:C173334 Refractory Anal Canal Squamous Cell Carcinoma 8 35839 -NCIT:C175360 Recurrent Anal Canal Squamous Cell Carcinoma 8 35840 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 9 35841 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 35842 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 35843 -NCIT:C175384 Unresectable Anal Canal Squamous Cell Carcinoma 8 35844 -NCIT:C7470 Anal Verrucous Carcinoma 7 35845 -NCIT:C8256 Anal Basaloid Carcinoma 7 35846 -NCIT:C9278 AIDS-Related Anal Carcinoma 6 35847 -NCIT:C133095 AIDS-Related Anal Canal Carcinoma 7 35848 -NCIT:C27282 Stage 0 AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 35849 -NCIT:C27283 Stage I AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 35850 -NCIT:C27284 Stage II AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 35851 -NCIT:C27285 Stage III AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 35852 -NCIT:C27286 Stage IV AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 35853 -NCIT:C9249 Recurrent AIDS-Related Anal Canal Carcinoma 8 35854 -NCIT:C3028 Esophageal Neoplasm 3 35855 -NCIT:C172853 Esophageal Soft Tissue Neoplasm 4 35856 -NCIT:C27430 Esophageal Gastrointestinal Stromal Tumor 5 35857 -NCIT:C3866 Esophageal Leiomyoma 5 35858 -NCIT:C5341 Esophageal Sarcoma 5 35859 -NCIT:C5334 Esophageal Leiomyosarcoma 6 35860 -NCIT:C5705 Esophageal Liposarcoma 6 35861 -NCIT:C5706 Esophageal Kaposi Sarcoma 6 35862 -NCIT:C92185 Esophageal Malignant Peripheral Nerve Sheath Tumor 6 35863 -NCIT:C95623 Esophageal Rhabdomyosarcoma 6 35864 -NCIT:C95624 Esophageal Synovial Sarcoma 6 35865 -NCIT:C5701 Esophageal Lipoma 5 35866 -NCIT:C5702 Esophageal Fibroma 5 35867 -NCIT:C3598 Benign Esophageal Neoplasm 4 35868 -NCIT:C3866 Esophageal Leiomyoma 5 35869 -NCIT:C4057 Esophageal Polyp 5 35870 -NCIT:C5344 Esophageal Squamous Papilloma 6 35871 -NCIT:C5699 Giant Fibrovascular Esophageal Polyp 6 35872 -NCIT:C5701 Esophageal Lipoma 5 35873 -NCIT:C5702 Esophageal Fibroma 5 35874 -NCIT:C5703 Esophageal Schwannoma 5 35875 -NCIT:C5704 Esophageal Neurofibroma 5 35876 -NCIT:C95622 Esophageal Hemangioma 5 35877 -NCIT:C4839 Esophageal Intraepithelial Neoplasia 4 35878 -NCIT:C27423 Esophageal Squamous Intraepithelial Neoplasia 5 35879 -NCIT:C27426 High Grade Esophageal Squamous Intraepithelial Neoplasia 6 35880 -NCIT:C133447 Clinical Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 7 35881 -NCIT:C133519 Pathologic Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 7 35882 -NCIT:C5023 Stage 0 Esophageal Squamous Cell Carcinoma AJCC v7 7 35883 -NCIT:C27427 Low Grade Esophageal Squamous Intraepithelial Neoplasia 6 35884 -NCIT:C27424 Esophageal Glandular Intraepithelial Neoplasia 5 35885 -NCIT:C27428 Low Grade Esophageal Glandular Intraepithelial Neoplasia 6 35886 -NCIT:C27429 High Grade Esophageal Glandular Intraepithelial Neoplasia 6 35887 -NCIT:C133402 Clinical Stage 0 Esophageal Adenocarcinoma AJCC v8 7 35888 -NCIT:C133413 Pathologic Stage 0 Esophageal Adenocarcinoma AJCC v8 7 35889 -NCIT:C8629 Stage 0 Esophageal Adenocarcinoma AJCC v7 7 35890 -NCIT:C95613 Intraepithelial Neoplasia in Barrett Esophagus 6 35891 -NCIT:C27425 Esophageal High Grade Intraepithelial Neoplasia 5 35892 -NCIT:C27426 High Grade Esophageal Squamous Intraepithelial Neoplasia 6 35893 -NCIT:C133447 Clinical Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 7 35894 -NCIT:C133519 Pathologic Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 7 35895 -NCIT:C5023 Stage 0 Esophageal Squamous Cell Carcinoma AJCC v7 7 35896 -NCIT:C27429 High Grade Esophageal Glandular Intraepithelial Neoplasia 6 35897 -NCIT:C133402 Clinical Stage 0 Esophageal Adenocarcinoma AJCC v8 7 35898 -NCIT:C133413 Pathologic Stage 0 Esophageal Adenocarcinoma AJCC v8 7 35899 -NCIT:C8629 Stage 0 Esophageal Adenocarcinoma AJCC v7 7 35900 -NCIT:C3637 Stage 0 Esophageal Cancer AJCC v6 6 35901 -NCIT:C89771 Stage 0 Esophageal Cancer AJCC v7 6 35902 -NCIT:C5023 Stage 0 Esophageal Squamous Cell Carcinoma AJCC v7 7 35903 -NCIT:C8629 Stage 0 Esophageal Adenocarcinoma AJCC v7 7 35904 -NCIT:C4840 Esophageal Low Grade Intraepithelial Neoplasia 5 35905 -NCIT:C27427 Low Grade Esophageal Squamous Intraepithelial Neoplasia 6 35906 -NCIT:C27428 Low Grade Esophageal Glandular Intraepithelial Neoplasia 6 35907 -NCIT:C5700 Esophageal Granular Cell Tumor 4 35908 -NCIT:C5821 Esophageal Neuroendocrine Neoplasm 4 35909 -NCIT:C95616 Esophageal Neuroendocrine Tumor 5 35910 -NCIT:C172661 Esophageal Neuroendocrine Tumor G3 6 35911 -NCIT:C5820 Esophageal Neuroendocrine Tumor G1 6 35912 -NCIT:C95617 Esophageal Neuroendocrine Tumor G2 6 35913 -NCIT:C95619 Esophageal Neuroendocrine Carcinoma 5 35914 -NCIT:C6762 Esophageal Small Cell Neuroendocrine Carcinoma 6 35915 -NCIT:C95620 Esophageal Large Cell Neuroendocrine Carcinoma 6 35916 -NCIT:C7478 Malignant Esophageal Neoplasm 4 35917 -NCIT:C3513 Esophageal Carcinoma 5 35918 -NCIT:C118812 Childhood Esophageal Carcinoma 6 35919 -NCIT:C128563 Unresectable Esophageal Carcinoma 6 35920 -NCIT:C171608 Unresectable Esophageal Squamous Cell Carcinoma 7 35921 -NCIT:C173162 Unresectable Esophageal Adenocarcinoma 7 35922 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 35923 -NCIT:C172248 Unresectable Distal Esophagus Adenocarcinoma 8 35924 -NCIT:C133399 Esophageal Cancer by AJCC v8 Stage 6 35925 -NCIT:C133400 Esophageal Adenocarcinoma by AJCC v8 Stage 7 35926 -NCIT:C133401 Esophageal Adenocarcinoma by AJCC v8 Clinical Stage 8 35927 -NCIT:C133402 Clinical Stage 0 Esophageal Adenocarcinoma AJCC v8 9 35928 -NCIT:C133403 Clinical Stage I Esophageal Adenocarcinoma AJCC v8 9 35929 -NCIT:C133404 Clinical Stage II Esophageal Adenocarcinoma AJCC v8 9 35930 -NCIT:C133405 Clinical Stage IIA Esophageal Adenocarcinoma AJCC v8 10 35931 -NCIT:C133406 Clinical Stage IIB Esophageal Adenocarcinoma AJCC v8 10 35932 -NCIT:C133407 Clinical Stage III Esophageal Adenocarcinoma AJCC v8 9 35933 -NCIT:C133408 Clinical Stage IV Esophageal Adenocarcinoma AJCC v8 9 35934 -NCIT:C133409 Clinical Stage IVA Esophageal Adenocarcinoma AJCC v8 10 35935 -NCIT:C133410 Clinical Stage IVB Esophageal Adenocarcinoma AJCC v8 10 35936 -NCIT:C133412 Esophageal Adenocarcinoma by AJCC v8 Pathologic Stage 8 35937 -NCIT:C133413 Pathologic Stage 0 Esophageal Adenocarcinoma AJCC v8 9 35938 -NCIT:C133414 Pathologic Stage I Esophageal Adenocarcinoma AJCC v8 9 35939 -NCIT:C133415 Pathologic Stage IA Esophageal Adenocarcinoma AJCC v8 10 35940 -NCIT:C133416 Pathologic Stage IB Esophageal Adenocarcinoma AJCC v8 10 35941 -NCIT:C133417 Pathologic Stage IC Esophageal Adenocarcinoma AJCC v8 10 35942 -NCIT:C133418 Pathologic Stage II Esophageal Adenocarcinoma AJCC v8 9 35943 -NCIT:C133419 Pathologic Stage IIA Esophageal Adenocarcinoma AJCC v8 10 35944 -NCIT:C133420 Pathologic Stage IIB Esophageal Adenocarcinoma AJCC v8 10 35945 -NCIT:C133421 Pathologic Stage III Esophageal Adenocarcinoma AJCC v8 9 35946 -NCIT:C133422 Pathologic Stage IIIA Esophageal Adenocarcinoma AJCC v8 10 35947 -NCIT:C133423 Pathologic Stage IIIB Esophageal Adenocarcinoma AJCC v8 10 35948 -NCIT:C133424 Pathologic Stage IV Esophageal Adenocarcinoma AJCC v8 9 35949 -NCIT:C133425 Pathologic Stage IVA Esophageal Adenocarcinoma AJCC v8 10 35950 -NCIT:C133426 Pathologic Stage IVB Esophageal Adenocarcinoma AJCC v8 10 35951 -NCIT:C133432 Esophageal Adenocarcinoma by AJCC v8 Postneoadjuvant Therapy Stage 8 35952 -NCIT:C133433 Postneoadjuvant Therapy Stage I Esophageal Adenocarcinoma AJCC v8 9 35953 -NCIT:C133434 Postneoadjuvant Therapy Stage II Esophageal Adenocarcinoma AJCC v8 9 35954 -NCIT:C133435 Postneoadjuvant Therapy Stage III Esophageal Adenocarcinoma AJCC v8 9 35955 -NCIT:C133436 Postneoadjuvant Therapy Stage IIIA Esophageal Adenocarcinoma AJCC v8 10 35956 -NCIT:C133437 Postneoadjuvant Therapy Stage IIIB Esophageal Adenocarcinoma AJCC v8 10 35957 -NCIT:C133438 Postneoadjuvant Therapy Stage IV Esophageal Adenocarcinoma AJCC v8 9 35958 -NCIT:C133439 Postneoadjuvant Therapy Stage IVA Esophageal Adenocarcinoma AJCC v8 10 35959 -NCIT:C133440 Postneoadjuvant Therapy Stage IVB Esophageal Adenocarcinoma AJCC v8 10 35960 -NCIT:C133443 Esophageal Squamous Cell Carcinoma by AJCC v8 Stage 7 35961 -NCIT:C133444 Esophageal Squamous Cell Carcinoma by AJCC v8 Clinical Stage 8 35962 -NCIT:C133447 Clinical Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 9 35963 -NCIT:C133448 Clinical Stage I Esophageal Squamous Cell Carcinoma AJCC v8 9 35964 -NCIT:C133449 Clinical Stage II Esophageal Squamous Cell Carcinoma AJCC v8 9 35965 -NCIT:C133450 Clinical Stage III Esophageal Squamous Cell Carcinoma AJCC v8 9 35966 -NCIT:C133451 Clinical Stage IV Esophageal Squamous Cell Carcinoma AJCC v8 9 35967 -NCIT:C133452 Clinical Stage IVA Esophageal Squamous Cell Carcinoma AJCC v8 10 35968 -NCIT:C133453 Clinical Stage IVB Esophageal Squamous Cell Carcinoma AJCC v8 10 35969 -NCIT:C133445 Esophageal Squamous Cell Carcinoma by AJCC v8 Pathologic Stage 8 35970 -NCIT:C133519 Pathologic Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 9 35971 -NCIT:C133521 Pathologic Stage I Esophageal Squamous Cell Carcinoma AJCC v8 9 35972 -NCIT:C133525 Pathologic Stage IA Esophageal Squamous Cell Carcinoma AJCC v8 10 35973 -NCIT:C133530 Pathologic Stage IB Esophageal Squamous Cell Carcinoma AJCC v8 10 35974 -NCIT:C133532 Pathologic Stage II Esophageal Squamous Cell Carcinoma AJCC v8 9 35975 -NCIT:C133534 Pathologic Stage IIA Esophageal Squamous Cell Carcinoma AJCC v8 10 35976 -NCIT:C133535 Pathologic Stage IIB Esophageal Squamous Cell Carcinoma AJCC v8 10 35977 -NCIT:C133536 Pathologic Stage III Esophageal Squamous Cell Carcinoma AJCC v8 9 35978 -NCIT:C133537 Pathologic Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v8 10 35979 -NCIT:C133538 Pathologic Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v8 10 35980 -NCIT:C133539 Pathologic Stage IV Esophageal Squamous Cell Carcinoma AJCC v8 9 35981 -NCIT:C133541 Pathologic Stage IVA Esophageal Squamous Cell Carcinoma AJCC v8 10 35982 -NCIT:C133542 Pathologic Stage IVB Esophageal Squamous Cell Carcinoma AJCC v8 10 35983 -NCIT:C133446 Esophageal Squamous Cell Carcinoma by AJCC v8 Postneoadjuvant Therapy Stage 8 35984 -NCIT:C133454 Postneoadjuvant Therapy Stage I Esophageal Squamous Cell Carcinoma AJCC v8 9 35985 -NCIT:C133455 Postneoadjuvant Therapy Stage II Esophageal Squamous Cell Carcinoma AJCC v8 9 35986 -NCIT:C133456 Postneoadjuvant Therapy Stage III Esophageal Squamous Cell Carcinoma AJCC v8 9 35987 -NCIT:C133457 Postneoadjuvant Therapy Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v8 10 35988 -NCIT:C133458 Postneoadjuvant Therapy Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v8 10 35989 -NCIT:C133459 Postneoadjuvant Therapy Stage IV Esophageal Squamous Cell Carcinoma AJCC v8 9 35990 -NCIT:C133460 Postneoadjuvant Therapy Stage IVA Esophageal Squamous Cell Carcinoma AJCC v8 10 35991 -NCIT:C133461 Postneoadjuvant Therapy Stage IVB Esophageal Squamous Cell Carcinoma AJCC v8 10 35992 -NCIT:C156073 Metastatic Esophageal Carcinoma 6 35993 -NCIT:C156074 Metastatic Esophageal Adenocarcinoma 7 35994 -NCIT:C166120 Oligometastatic Esophageal Adenocarcinoma 8 35995 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 35996 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 35997 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 35998 -NCIT:C172249 Metastatic Distal Esophagus Adenocarcinoma 8 35999 -NCIT:C156075 Metastatic Esophageal Squamous Cell Carcinoma 7 36000 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 36001 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 36002 -NCIT:C160599 Advanced Esophageal Carcinoma 7 36003 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 36004 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 36005 -NCIT:C168976 Locally Advanced Esophageal Carcinoma 7 36006 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 36007 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 36008 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 36009 -NCIT:C166171 Localized Esophageal Carcinoma 6 36010 -NCIT:C171604 Refractory Esophageal Carcinoma 6 36011 -NCIT:C171606 Refractory Esophageal Squamous Cell Carcinoma 7 36012 -NCIT:C176892 Refractory Esophageal Adenocarcinoma 7 36013 -NCIT:C27421 Esophageal Adenosquamous Carcinoma 6 36014 -NCIT:C27422 Esophageal Undifferentiated Carcinoma 6 36015 -NCIT:C3999 Recurrent Esophageal Carcinoma 6 36016 -NCIT:C8627 Recurrent Esophageal Adenocarcinoma 7 36017 -NCIT:C8633 Recurrent Esophageal Squamous Cell Carcinoma 7 36018 -NCIT:C4024 Esophageal Squamous Cell Carcinoma 6 36019 -NCIT:C133442 Esophageal Squamous Cell Carcinoma by AJCC v7 Stage 7 36020 -NCIT:C5019 Stage IV Esophageal Squamous Cell Carcinoma AJCC v7 8 36021 -NCIT:C5020 Stage III Esophageal Squamous Cell Carcinoma AJCC v7 8 36022 -NCIT:C87787 Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v7 9 36023 -NCIT:C87788 Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v7 9 36024 -NCIT:C87789 Stage IIIC Esophageal Squamous Cell Carcinoma AJCC v7 9 36025 -NCIT:C5021 Stage II Esophageal Squamous Cell Carcinoma AJCC v7 8 36026 -NCIT:C6737 Stage IIB Esophageal Squamous Cell Carcinoma AJCC v7 9 36027 -NCIT:C6738 Stage IIA Esophageal Squamous Cell Carcinoma AJCC v7 9 36028 -NCIT:C5022 Stage I Esophageal Squamous Cell Carcinoma AJCC v7 8 36029 -NCIT:C87780 Stage IA Esophageal Squamous Cell Carcinoma AJCC v7 9 36030 -NCIT:C87781 Stage IB Esophageal Squamous Cell Carcinoma AJCC v7 9 36031 -NCIT:C5023 Stage 0 Esophageal Squamous Cell Carcinoma AJCC v7 8 36032 -NCIT:C133443 Esophageal Squamous Cell Carcinoma by AJCC v8 Stage 7 36033 -NCIT:C133444 Esophageal Squamous Cell Carcinoma by AJCC v8 Clinical Stage 8 36034 -NCIT:C133447 Clinical Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 9 36035 -NCIT:C133448 Clinical Stage I Esophageal Squamous Cell Carcinoma AJCC v8 9 36036 -NCIT:C133449 Clinical Stage II Esophageal Squamous Cell Carcinoma AJCC v8 9 36037 -NCIT:C133450 Clinical Stage III Esophageal Squamous Cell Carcinoma AJCC v8 9 36038 -NCIT:C133451 Clinical Stage IV Esophageal Squamous Cell Carcinoma AJCC v8 9 36039 -NCIT:C133452 Clinical Stage IVA Esophageal Squamous Cell Carcinoma AJCC v8 10 36040 -NCIT:C133453 Clinical Stage IVB Esophageal Squamous Cell Carcinoma AJCC v8 10 36041 -NCIT:C133445 Esophageal Squamous Cell Carcinoma by AJCC v8 Pathologic Stage 8 36042 -NCIT:C133519 Pathologic Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 9 36043 -NCIT:C133521 Pathologic Stage I Esophageal Squamous Cell Carcinoma AJCC v8 9 36044 -NCIT:C133525 Pathologic Stage IA Esophageal Squamous Cell Carcinoma AJCC v8 10 36045 -NCIT:C133530 Pathologic Stage IB Esophageal Squamous Cell Carcinoma AJCC v8 10 36046 -NCIT:C133532 Pathologic Stage II Esophageal Squamous Cell Carcinoma AJCC v8 9 36047 -NCIT:C133534 Pathologic Stage IIA Esophageal Squamous Cell Carcinoma AJCC v8 10 36048 -NCIT:C133535 Pathologic Stage IIB Esophageal Squamous Cell Carcinoma AJCC v8 10 36049 -NCIT:C133536 Pathologic Stage III Esophageal Squamous Cell Carcinoma AJCC v8 9 36050 -NCIT:C133537 Pathologic Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v8 10 36051 -NCIT:C133538 Pathologic Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v8 10 36052 -NCIT:C133539 Pathologic Stage IV Esophageal Squamous Cell Carcinoma AJCC v8 9 36053 -NCIT:C133541 Pathologic Stage IVA Esophageal Squamous Cell Carcinoma AJCC v8 10 36054 -NCIT:C133542 Pathologic Stage IVB Esophageal Squamous Cell Carcinoma AJCC v8 10 36055 -NCIT:C133446 Esophageal Squamous Cell Carcinoma by AJCC v8 Postneoadjuvant Therapy Stage 8 36056 -NCIT:C133454 Postneoadjuvant Therapy Stage I Esophageal Squamous Cell Carcinoma AJCC v8 9 36057 -NCIT:C133455 Postneoadjuvant Therapy Stage II Esophageal Squamous Cell Carcinoma AJCC v8 9 36058 -NCIT:C133456 Postneoadjuvant Therapy Stage III Esophageal Squamous Cell Carcinoma AJCC v8 9 36059 -NCIT:C133457 Postneoadjuvant Therapy Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v8 10 36060 -NCIT:C133458 Postneoadjuvant Therapy Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v8 10 36061 -NCIT:C133459 Postneoadjuvant Therapy Stage IV Esophageal Squamous Cell Carcinoma AJCC v8 9 36062 -NCIT:C133460 Postneoadjuvant Therapy Stage IVA Esophageal Squamous Cell Carcinoma AJCC v8 10 36063 -NCIT:C133461 Postneoadjuvant Therapy Stage IVB Esophageal Squamous Cell Carcinoma AJCC v8 10 36064 -NCIT:C150029 Thoracic Esophagus Squamous Cell Carcinoma 7 36065 -NCIT:C150032 Cervical Esophagus Squamous Cell Carcinoma 7 36066 -NCIT:C150037 Distal Esophagus Squamous Cell Carcinoma 7 36067 -NCIT:C156075 Metastatic Esophageal Squamous Cell Carcinoma 7 36068 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 36069 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 36070 -NCIT:C171606 Refractory Esophageal Squamous Cell Carcinoma 7 36071 -NCIT:C171608 Unresectable Esophageal Squamous Cell Carcinoma 7 36072 -NCIT:C27420 Esophageal Verrucous Carcinoma 7 36073 -NCIT:C27680 Human Papillomavirus-Related Esophageal Squamous Cell Carcinoma 7 36074 -NCIT:C27928 Alcohol-Related Esophageal Squamous Cell Carcinoma 7 36075 -NCIT:C7032 Esophageal Basaloid Carcinoma 7 36076 -NCIT:C8633 Recurrent Esophageal Squamous Cell Carcinoma 7 36077 -NCIT:C95608 Esophageal Spindle Cell Carcinoma 7 36078 -NCIT:C95610 Esophageal Well Differentiated Squamous Cell Carcinoma 7 36079 -NCIT:C179888 Esophageal Carcinoma Cuniculatum 8 36080 -NCIT:C95611 Esophageal Moderately Differentiated Squamous Cell Carcinoma 7 36081 -NCIT:C95612 Esophageal Poorly Differentiated Squamous Cell Carcinoma 7 36082 -NCIT:C4025 Esophageal Adenocarcinoma 6 36083 -NCIT:C133400 Esophageal Adenocarcinoma by AJCC v8 Stage 7 36084 -NCIT:C133401 Esophageal Adenocarcinoma by AJCC v8 Clinical Stage 8 36085 -NCIT:C133402 Clinical Stage 0 Esophageal Adenocarcinoma AJCC v8 9 36086 -NCIT:C133403 Clinical Stage I Esophageal Adenocarcinoma AJCC v8 9 36087 -NCIT:C133404 Clinical Stage II Esophageal Adenocarcinoma AJCC v8 9 36088 -NCIT:C133405 Clinical Stage IIA Esophageal Adenocarcinoma AJCC v8 10 36089 -NCIT:C133406 Clinical Stage IIB Esophageal Adenocarcinoma AJCC v8 10 36090 -NCIT:C133407 Clinical Stage III Esophageal Adenocarcinoma AJCC v8 9 36091 -NCIT:C133408 Clinical Stage IV Esophageal Adenocarcinoma AJCC v8 9 36092 -NCIT:C133409 Clinical Stage IVA Esophageal Adenocarcinoma AJCC v8 10 36093 -NCIT:C133410 Clinical Stage IVB Esophageal Adenocarcinoma AJCC v8 10 36094 -NCIT:C133412 Esophageal Adenocarcinoma by AJCC v8 Pathologic Stage 8 36095 -NCIT:C133413 Pathologic Stage 0 Esophageal Adenocarcinoma AJCC v8 9 36096 -NCIT:C133414 Pathologic Stage I Esophageal Adenocarcinoma AJCC v8 9 36097 -NCIT:C133415 Pathologic Stage IA Esophageal Adenocarcinoma AJCC v8 10 36098 -NCIT:C133416 Pathologic Stage IB Esophageal Adenocarcinoma AJCC v8 10 36099 -NCIT:C133417 Pathologic Stage IC Esophageal Adenocarcinoma AJCC v8 10 36100 -NCIT:C133418 Pathologic Stage II Esophageal Adenocarcinoma AJCC v8 9 36101 -NCIT:C133419 Pathologic Stage IIA Esophageal Adenocarcinoma AJCC v8 10 36102 -NCIT:C133420 Pathologic Stage IIB Esophageal Adenocarcinoma AJCC v8 10 36103 -NCIT:C133421 Pathologic Stage III Esophageal Adenocarcinoma AJCC v8 9 36104 -NCIT:C133422 Pathologic Stage IIIA Esophageal Adenocarcinoma AJCC v8 10 36105 -NCIT:C133423 Pathologic Stage IIIB Esophageal Adenocarcinoma AJCC v8 10 36106 -NCIT:C133424 Pathologic Stage IV Esophageal Adenocarcinoma AJCC v8 9 36107 -NCIT:C133425 Pathologic Stage IVA Esophageal Adenocarcinoma AJCC v8 10 36108 -NCIT:C133426 Pathologic Stage IVB Esophageal Adenocarcinoma AJCC v8 10 36109 -NCIT:C133432 Esophageal Adenocarcinoma by AJCC v8 Postneoadjuvant Therapy Stage 8 36110 -NCIT:C133433 Postneoadjuvant Therapy Stage I Esophageal Adenocarcinoma AJCC v8 9 36111 -NCIT:C133434 Postneoadjuvant Therapy Stage II Esophageal Adenocarcinoma AJCC v8 9 36112 -NCIT:C133435 Postneoadjuvant Therapy Stage III Esophageal Adenocarcinoma AJCC v8 9 36113 -NCIT:C133436 Postneoadjuvant Therapy Stage IIIA Esophageal Adenocarcinoma AJCC v8 10 36114 -NCIT:C133437 Postneoadjuvant Therapy Stage IIIB Esophageal Adenocarcinoma AJCC v8 10 36115 -NCIT:C133438 Postneoadjuvant Therapy Stage IV Esophageal Adenocarcinoma AJCC v8 9 36116 -NCIT:C133439 Postneoadjuvant Therapy Stage IVA Esophageal Adenocarcinoma AJCC v8 10 36117 -NCIT:C133440 Postneoadjuvant Therapy Stage IVB Esophageal Adenocarcinoma AJCC v8 10 36118 -NCIT:C133411 Esophageal Adenocarcinoma by AJCC v7 Stage 7 36119 -NCIT:C8628 Stage II Esophageal Adenocarcinoma AJCC v7 8 36120 -NCIT:C6731 Stage IIA Esophageal Adenocarcinoma AJCC v7 9 36121 -NCIT:C6732 Stage IIB Esophageal Adenocarcinoma AJCC v7 9 36122 -NCIT:C8629 Stage 0 Esophageal Adenocarcinoma AJCC v7 8 36123 -NCIT:C8630 Stage I Esophageal Adenocarcinoma AJCC v7 8 36124 -NCIT:C87782 Stage IA Esophageal Adenocarcinoma AJCC v7 9 36125 -NCIT:C87783 Stage IB Esophageal Adenocarcinoma AJCC v7 9 36126 -NCIT:C8631 Stage III Esophageal Adenocarcinoma AJCC v7 8 36127 -NCIT:C87784 Stage IIIA Esophageal Adenocarcinoma AJCC v7 9 36128 -NCIT:C87785 Stage IIIB Esophageal Adenocarcinoma AJCC v7 9 36129 -NCIT:C87786 Stage IIIC Esophageal Adenocarcinoma AJCC v7 9 36130 -NCIT:C8632 Stage IV Esophageal Adenocarcinoma AJCC v7 8 36131 -NCIT:C150027 Thoracic Esophagus Adenocarcinoma 7 36132 -NCIT:C150031 Cervical Esophagus Adenocarcinoma 7 36133 -NCIT:C152036 Distal Esophagus Adenocarcinoma 7 36134 -NCIT:C172248 Unresectable Distal Esophagus Adenocarcinoma 8 36135 -NCIT:C172249 Metastatic Distal Esophagus Adenocarcinoma 8 36136 -NCIT:C7027 Barrett Adenocarcinoma 8 36137 -NCIT:C156074 Metastatic Esophageal Adenocarcinoma 7 36138 -NCIT:C166120 Oligometastatic Esophageal Adenocarcinoma 8 36139 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 36140 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 36141 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 36142 -NCIT:C172249 Metastatic Distal Esophagus Adenocarcinoma 8 36143 -NCIT:C161906 Esophageal Intramucosal Adenocarcinoma 7 36144 -NCIT:C173162 Unresectable Esophageal Adenocarcinoma 7 36145 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 36146 -NCIT:C172248 Unresectable Distal Esophagus Adenocarcinoma 8 36147 -NCIT:C176892 Refractory Esophageal Adenocarcinoma 7 36148 -NCIT:C8627 Recurrent Esophageal Adenocarcinoma 7 36149 -NCIT:C5342 Esophageal Adenoid Cystic Carcinoma 6 36150 -NCIT:C5343 Esophageal Mucoepidermoid Carcinoma 6 36151 -NCIT:C90500 Esophageal Cancer by AJCC v6 Stage 6 36152 -NCIT:C3637 Stage 0 Esophageal Cancer AJCC v6 7 36153 -NCIT:C9210 Stage I Esophageal Cancer AJCC v6 7 36154 -NCIT:C9211 Stage II Esophageal Cancer AJCC v6 7 36155 -NCIT:C9212 Stage III Esophageal Cancer AJCC v6 7 36156 -NCIT:C9213 Stage IV Esophageal Cancer AJCC v6 7 36157 -NCIT:C91221 Esophageal Cancer by AJCC v7 Stage 6 36158 -NCIT:C133411 Esophageal Adenocarcinoma by AJCC v7 Stage 7 36159 -NCIT:C8628 Stage II Esophageal Adenocarcinoma AJCC v7 8 36160 -NCIT:C6731 Stage IIA Esophageal Adenocarcinoma AJCC v7 9 36161 -NCIT:C6732 Stage IIB Esophageal Adenocarcinoma AJCC v7 9 36162 -NCIT:C8629 Stage 0 Esophageal Adenocarcinoma AJCC v7 8 36163 -NCIT:C8630 Stage I Esophageal Adenocarcinoma AJCC v7 8 36164 -NCIT:C87782 Stage IA Esophageal Adenocarcinoma AJCC v7 9 36165 -NCIT:C87783 Stage IB Esophageal Adenocarcinoma AJCC v7 9 36166 -NCIT:C8631 Stage III Esophageal Adenocarcinoma AJCC v7 8 36167 -NCIT:C87784 Stage IIIA Esophageal Adenocarcinoma AJCC v7 9 36168 -NCIT:C87785 Stage IIIB Esophageal Adenocarcinoma AJCC v7 9 36169 -NCIT:C87786 Stage IIIC Esophageal Adenocarcinoma AJCC v7 9 36170 -NCIT:C8632 Stage IV Esophageal Adenocarcinoma AJCC v7 8 36171 -NCIT:C133442 Esophageal Squamous Cell Carcinoma by AJCC v7 Stage 7 36172 -NCIT:C5019 Stage IV Esophageal Squamous Cell Carcinoma AJCC v7 8 36173 -NCIT:C5020 Stage III Esophageal Squamous Cell Carcinoma AJCC v7 8 36174 -NCIT:C87787 Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v7 9 36175 -NCIT:C87788 Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v7 9 36176 -NCIT:C87789 Stage IIIC Esophageal Squamous Cell Carcinoma AJCC v7 9 36177 -NCIT:C5021 Stage II Esophageal Squamous Cell Carcinoma AJCC v7 8 36178 -NCIT:C6737 Stage IIB Esophageal Squamous Cell Carcinoma AJCC v7 9 36179 -NCIT:C6738 Stage IIA Esophageal Squamous Cell Carcinoma AJCC v7 9 36180 -NCIT:C5022 Stage I Esophageal Squamous Cell Carcinoma AJCC v7 8 36181 -NCIT:C87780 Stage IA Esophageal Squamous Cell Carcinoma AJCC v7 9 36182 -NCIT:C87781 Stage IB Esophageal Squamous Cell Carcinoma AJCC v7 9 36183 -NCIT:C5023 Stage 0 Esophageal Squamous Cell Carcinoma AJCC v7 8 36184 -NCIT:C89771 Stage 0 Esophageal Cancer AJCC v7 7 36185 -NCIT:C5023 Stage 0 Esophageal Squamous Cell Carcinoma AJCC v7 8 36186 -NCIT:C8629 Stage 0 Esophageal Adenocarcinoma AJCC v7 8 36187 -NCIT:C89793 Stage I Esophageal Cancer AJCC v7 7 36188 -NCIT:C115117 Stage IA Esophageal Cancer AJCC v7 8 36189 -NCIT:C87780 Stage IA Esophageal Squamous Cell Carcinoma AJCC v7 9 36190 -NCIT:C87782 Stage IA Esophageal Adenocarcinoma AJCC v7 9 36191 -NCIT:C115118 Stage IB Esophageal Cancer AJCC v7 8 36192 -NCIT:C87781 Stage IB Esophageal Squamous Cell Carcinoma AJCC v7 9 36193 -NCIT:C87783 Stage IB Esophageal Adenocarcinoma AJCC v7 9 36194 -NCIT:C5022 Stage I Esophageal Squamous Cell Carcinoma AJCC v7 8 36195 -NCIT:C87780 Stage IA Esophageal Squamous Cell Carcinoma AJCC v7 9 36196 -NCIT:C87781 Stage IB Esophageal Squamous Cell Carcinoma AJCC v7 9 36197 -NCIT:C8630 Stage I Esophageal Adenocarcinoma AJCC v7 8 36198 -NCIT:C87782 Stage IA Esophageal Adenocarcinoma AJCC v7 9 36199 -NCIT:C87783 Stage IB Esophageal Adenocarcinoma AJCC v7 9 36200 -NCIT:C89794 Stage II Esophageal Cancer AJCC v7 7 36201 -NCIT:C5021 Stage II Esophageal Squamous Cell Carcinoma AJCC v7 8 36202 -NCIT:C6737 Stage IIB Esophageal Squamous Cell Carcinoma AJCC v7 9 36203 -NCIT:C6738 Stage IIA Esophageal Squamous Cell Carcinoma AJCC v7 9 36204 -NCIT:C5691 Stage IIA Esophageal Cancer AJCC v7 8 36205 -NCIT:C6731 Stage IIA Esophageal Adenocarcinoma AJCC v7 9 36206 -NCIT:C6738 Stage IIA Esophageal Squamous Cell Carcinoma AJCC v7 9 36207 -NCIT:C5692 Stage IIB Esophageal Cancer AJCC v7 8 36208 -NCIT:C6732 Stage IIB Esophageal Adenocarcinoma AJCC v7 9 36209 -NCIT:C6737 Stage IIB Esophageal Squamous Cell Carcinoma AJCC v7 9 36210 -NCIT:C8628 Stage II Esophageal Adenocarcinoma AJCC v7 8 36211 -NCIT:C6731 Stage IIA Esophageal Adenocarcinoma AJCC v7 9 36212 -NCIT:C6732 Stage IIB Esophageal Adenocarcinoma AJCC v7 9 36213 -NCIT:C89795 Stage III Esophageal Cancer AJCC v7 7 36214 -NCIT:C115119 Stage IIIA Esophageal Cancer AJCC v7 8 36215 -NCIT:C87784 Stage IIIA Esophageal Adenocarcinoma AJCC v7 9 36216 -NCIT:C87787 Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v7 9 36217 -NCIT:C115120 Stage IIIB Esophageal Cancer AJCC v7 8 36218 -NCIT:C87785 Stage IIIB Esophageal Adenocarcinoma AJCC v7 9 36219 -NCIT:C87788 Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v7 9 36220 -NCIT:C115121 Stage IIIC Esophageal Cancer AJCC v7 8 36221 -NCIT:C87786 Stage IIIC Esophageal Adenocarcinoma AJCC v7 9 36222 -NCIT:C87789 Stage IIIC Esophageal Squamous Cell Carcinoma AJCC v7 9 36223 -NCIT:C5020 Stage III Esophageal Squamous Cell Carcinoma AJCC v7 8 36224 -NCIT:C87787 Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v7 9 36225 -NCIT:C87788 Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v7 9 36226 -NCIT:C87789 Stage IIIC Esophageal Squamous Cell Carcinoma AJCC v7 9 36227 -NCIT:C8631 Stage III Esophageal Adenocarcinoma AJCC v7 8 36228 -NCIT:C87784 Stage IIIA Esophageal Adenocarcinoma AJCC v7 9 36229 -NCIT:C87785 Stage IIIB Esophageal Adenocarcinoma AJCC v7 9 36230 -NCIT:C87786 Stage IIIC Esophageal Adenocarcinoma AJCC v7 9 36231 -NCIT:C89804 Stage IV Esophageal Cancer AJCC v7 7 36232 -NCIT:C5019 Stage IV Esophageal Squamous Cell Carcinoma AJCC v7 8 36233 -NCIT:C8632 Stage IV Esophageal Adenocarcinoma AJCC v7 8 36234 -NCIT:C95619 Esophageal Neuroendocrine Carcinoma 6 36235 -NCIT:C6762 Esophageal Small Cell Neuroendocrine Carcinoma 7 36236 -NCIT:C95620 Esophageal Large Cell Neuroendocrine Carcinoma 7 36237 -NCIT:C95621 Esophageal Mixed Adenoneuroendocrine Carcinoma 6 36238 -NCIT:C5341 Esophageal Sarcoma 5 36239 -NCIT:C5334 Esophageal Leiomyosarcoma 6 36240 -NCIT:C5705 Esophageal Liposarcoma 6 36241 -NCIT:C5706 Esophageal Kaposi Sarcoma 6 36242 -NCIT:C92185 Esophageal Malignant Peripheral Nerve Sheath Tumor 6 36243 -NCIT:C95623 Esophageal Rhabdomyosarcoma 6 36244 -NCIT:C95624 Esophageal Synovial Sarcoma 6 36245 -NCIT:C5687 Esophageal Lymphoma 5 36246 -NCIT:C5688 Esophageal Non-Hodgkin Lymphoma 6 36247 -NCIT:C95625 Esophageal Diffuse Large B-Cell Lymphoma 7 36248 -NCIT:C95626 Esophageal Mucosa-Associated Lymphoid Tissue Lymphoma 7 36249 -NCIT:C5689 Esophageal Hodgkin Lymphoma 6 36250 -NCIT:C5707 Esophageal Melanoma 5 36251 -NCIT:C7479 Metastatic Malignant Neoplasm in the Esophagus 5 36252 -NCIT:C7512 Malignant Esophageal Neoplasm by Anatomic Region 5 36253 -NCIT:C3532 Malignant Neoplasm of the Thoracic Esophagus 6 36254 -NCIT:C150027 Thoracic Esophagus Adenocarcinoma 7 36255 -NCIT:C150029 Thoracic Esophagus Squamous Cell Carcinoma 7 36256 -NCIT:C3534 Malignant Neoplasm of the Middle Third of the Esophagus 7 36257 -NCIT:C4763 Malignant Neoplasm of the Cervical Esophagus 6 36258 -NCIT:C150031 Cervical Esophagus Adenocarcinoma 7 36259 -NCIT:C150032 Cervical Esophagus Squamous Cell Carcinoma 7 36260 -NCIT:C4764 Malignant Neoplasm of the Abdominal Esophagus 6 36261 -NCIT:C7513 Malignant Esophageal Neoplasm by Topographic Region 5 36262 -NCIT:C3533 Malignant Neoplasm of the Upper Third of the Esophagus 6 36263 -NCIT:C4763 Malignant Neoplasm of the Cervical Esophagus 7 36264 -NCIT:C150031 Cervical Esophagus Adenocarcinoma 8 36265 -NCIT:C150032 Cervical Esophagus Squamous Cell Carcinoma 8 36266 -NCIT:C3534 Malignant Neoplasm of the Middle Third of the Esophagus 6 36267 -NCIT:C3535 Malignant Neoplasm of the Lower Third of the Esophagus 6 36268 -NCIT:C150037 Distal Esophagus Squamous Cell Carcinoma 7 36269 -NCIT:C152036 Distal Esophagus Adenocarcinoma 7 36270 -NCIT:C172248 Unresectable Distal Esophagus Adenocarcinoma 8 36271 -NCIT:C172249 Metastatic Distal Esophagus Adenocarcinoma 8 36272 -NCIT:C7027 Barrett Adenocarcinoma 8 36273 -NCIT:C4764 Malignant Neoplasm of the Abdominal Esophagus 7 36274 -NCIT:C3141 Intestinal Neoplasm 3 36275 -NCIT:C172857 Intestinal Soft Tissue Neoplasm 4 36276 -NCIT:C5339 Small Intestinal Lipoma 5 36277 -NCIT:C5677 Colorectal Leiomyoma 5 36278 -NCIT:C5492 Colon Leiomyoma 6 36279 -NCIT:C5552 Rectal Leiomyoma 6 36280 -NCIT:C5678 Colorectal Lipoma 5 36281 -NCIT:C5493 Colon Lipoma 6 36282 -NCIT:C5551 Rectal Lipoma 6 36283 -NCIT:C7725 Small Intestinal Leiomyoma 5 36284 -NCIT:C2956 Colorectal Neoplasm 4 36285 -NCIT:C27459 Colorectal Intraepithelial Neoplasia 5 36286 -NCIT:C27460 Colorectal Low Grade Intraepithelial Neoplasia 6 36287 -NCIT:C27461 Colorectal High Grade Intraepithelial Neoplasia 6 36288 -NCIT:C27735 Colorectal Gastrointestinal Stromal Tumor 5 36289 -NCIT:C2953 Colon Neoplasm 5 36290 -NCIT:C2894 Benign Colon Neoplasm 6 36291 -NCIT:C3864 Colon Adenoma 7 36292 -NCIT:C128171 Colon Adenoma with Severe Dysplasia 8 36293 -NCIT:C172682 Colon Conventional Adenoma 8 36294 -NCIT:C3495 Colon Villous Adenoma 9 36295 -NCIT:C5520 Cecum Villous Adenoma 10 36296 -NCIT:C5496 Colon Tubulovillous Adenoma 9 36297 -NCIT:C7041 Colon Tubular Adenoma 9 36298 -NCIT:C43577 Colon Traditional Serrated Adenoma 8 36299 -NCIT:C96464 Colon Serrated Lesions and Polyps 8 36300 -NCIT:C96479 Colon Adenomatous Polyp 8 36301 -NCIT:C4772 Benign Cecum Neoplasm 7 36302 -NCIT:C5520 Cecum Villous Adenoma 8 36303 -NCIT:C5395 Colon Cavernous Hemangioma 7 36304 -NCIT:C5492 Colon Leiomyoma 7 36305 -NCIT:C5493 Colon Lipoma 7 36306 -NCIT:C5500 Colon Lymphangioma 7 36307 -NCIT:C7042 Colon Ganglioneuroma 7 36308 -NCIT:C4433 Cecum Neoplasm 6 36309 -NCIT:C4772 Benign Cecum Neoplasm 7 36310 -NCIT:C5520 Cecum Villous Adenoma 8 36311 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 7 36312 -NCIT:C9329 Malignant Cecum Neoplasm 7 36313 -NCIT:C3491 Cecum Carcinoma 8 36314 -NCIT:C4594 Cecum Carcinoma In Situ 9 36315 -NCIT:C5543 Cecum Adenocarcinoma 9 36316 -NCIT:C5515 Cecum Lymphoma 8 36317 -NCIT:C5521 Cecum Non-Hodgkin Lymphoma 9 36318 -NCIT:C5697 Colon Neuroendocrine Neoplasm 6 36319 -NCIT:C135212 Colon Neuroendocrine Tumor 7 36320 -NCIT:C135214 Colon Neuroendocrine Tumor by AJCC v8 Stage 8 36321 -NCIT:C135368 Stage I Colon Neuroendocrine Tumor AJCC v8 9 36322 -NCIT:C135369 Stage IIA Colon Neuroendocrine Tumor AJCC v8 9 36323 -NCIT:C135370 Stage IIB Colon Neuroendocrine Tumor AJCC v8 9 36324 -NCIT:C135524 Stage IIIA Colon Neuroendocrine Tumor AJCC v8 9 36325 -NCIT:C135525 Stage IIIB Colon Neuroendocrine Tumor AJCC v8 9 36326 -NCIT:C135526 Stage IV Colon Neuroendocrine Tumor AJCC v8 9 36327 -NCIT:C160443 Colon Neuroendocrine Tumor G2 8 36328 -NCIT:C172702 Colon Neuroendocrine Tumor G3 8 36329 -NCIT:C27446 Colon Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 8 36330 -NCIT:C27447 Colon L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 8 36331 -NCIT:C5497 Colon Neuroendocrine Tumor G1 8 36332 -NCIT:C188043 Sigmoid Colon Neuroendocrine Tumor G1 9 36333 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 9 36334 -NCIT:C6426 Transverse Colon Neuroendocrine Tumor G1 9 36335 -NCIT:C6427 Ascending Colon Neuroendocrine Tumor G1 9 36336 -NCIT:C6428 Descending Colon Neuroendocrine Tumor G1 9 36337 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 7 36338 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 7 36339 -NCIT:C9242 Malignant Colon Neoplasm 6 36340 -NCIT:C4793 Colon Lymphoma 7 36341 -NCIT:C4950 Colon Non-Hodgkin Lymphoma 8 36342 -NCIT:C27411 Colon Mantle Cell Lymphoma 9 36343 -NCIT:C27465 Colon Burkitt Lymphoma 9 36344 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 9 36345 -NCIT:C5521 Cecum Non-Hodgkin Lymphoma 9 36346 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 9 36347 -NCIT:C5499 Colon Hodgkin Lymphoma 8 36348 -NCIT:C5515 Cecum Lymphoma 8 36349 -NCIT:C5521 Cecum Non-Hodgkin Lymphoma 9 36350 -NCIT:C4910 Colon Carcinoma 7 36351 -NCIT:C134251 Colon Cancer by AJCC v8 Stage 8 36352 -NCIT:C134271 Stage 0 Colon Cancer AJCC v8 9 36353 -NCIT:C134273 Stage I Colon Cancer AJCC v8 9 36354 -NCIT:C134274 Stage II Colon Cancer AJCC v8 9 36355 -NCIT:C134280 Stage IIA Colon Cancer AJCC v8 10 36356 -NCIT:C134281 Stage IIB Colon Cancer AJCC v8 10 36357 -NCIT:C134282 Stage IIC Colon Cancer AJCC v8 10 36358 -NCIT:C134283 Stage III Colon Cancer AJCC v8 9 36359 -NCIT:C134284 Stage IIIA Colon Cancer AJCC v8 10 36360 -NCIT:C134285 Stage IIIB Colon Cancer AJCC v8 10 36361 -NCIT:C134286 Stage IIIC Colon Cancer AJCC v8 10 36362 -NCIT:C134287 Stage IV Colon Cancer AJCC v8 9 36363 -NCIT:C134288 Stage IVA Colon Cancer AJCC v8 10 36364 -NCIT:C134289 Stage IVB Colon Cancer AJCC v8 10 36365 -NCIT:C134290 Stage IVC Colon Cancer AJCC v8 10 36366 -NCIT:C153351 Refractory Colon Carcinoma 8 36367 -NCIT:C162155 Refractory Colon Adenocarcinoma 9 36368 -NCIT:C156097 Metastatic Colon Carcinoma 8 36369 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 36370 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 36371 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 36372 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 36373 -NCIT:C167238 Advanced Colon Carcinoma 9 36374 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 36375 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 36376 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 36377 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 36378 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 36379 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 36380 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 36381 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 9 36382 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 9 36383 -NCIT:C164228 Hereditary Colon Carcinoma 8 36384 -NCIT:C167237 Resectable Colon Carcinoma 8 36385 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 8 36386 -NCIT:C177680 Sigmoid Colon Carcinoma 8 36387 -NCIT:C177777 Microsatellite Stable Colon Carcinoma 8 36388 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 36389 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 36390 -NCIT:C180406 Unresectable Colon Carcinoma 8 36391 -NCIT:C162116 Unresectable Colon Adenocarcinoma 9 36392 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 36393 -NCIT:C3491 Cecum Carcinoma 8 36394 -NCIT:C4594 Cecum Carcinoma In Situ 9 36395 -NCIT:C5543 Cecum Adenocarcinoma 9 36396 -NCIT:C3998 Recurrent Colon Carcinoma 8 36397 -NCIT:C162442 Recurrent Colon Adenocarcinoma 9 36398 -NCIT:C4349 Colon Adenocarcinoma 8 36399 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 36400 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 36401 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 36402 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 36403 -NCIT:C162116 Unresectable Colon Adenocarcinoma 9 36404 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 36405 -NCIT:C162155 Refractory Colon Adenocarcinoma 9 36406 -NCIT:C162442 Recurrent Colon Adenocarcinoma 9 36407 -NCIT:C38760 Submucosal Invasive Colon Adenocarcinoma 9 36408 -NCIT:C45429 Colon Intramucosal Adenocarcinoma 9 36409 -NCIT:C27413 Adenoma of the Colon with Intramucosal Adenocarcinoma 10 36410 -NCIT:C5543 Cecum Adenocarcinoma 9 36411 -NCIT:C60641 Colon Medullary Carcinoma 9 36412 -NCIT:C7966 Colon Mucinous Adenocarcinoma 9 36413 -NCIT:C7967 Colon Signet Ring Cell Adenocarcinoma 9 36414 -NCIT:C9452 Grade 1 Colon Adenocarcinoma 9 36415 -NCIT:C9453 Grade 2 Colon Adenocarcinoma 9 36416 -NCIT:C9454 Grade 3 Colon Adenocarcinoma 9 36417 -NCIT:C96486 Colon Serrated Adenocarcinoma 9 36418 -NCIT:C96489 Colon Cribriform Comedo-Type Adenocarcinoma 9 36419 -NCIT:C96492 Colon Micropapillary Adenocarcinoma 9 36420 -NCIT:C5490 Colon Squamous Cell Carcinoma 8 36421 -NCIT:C5491 Colon Adenosquamous Carcinoma 8 36422 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 8 36423 -NCIT:C7100 Colon Undifferentiated Carcinoma 8 36424 -NCIT:C90507 Colon Cancer by AJCC v6 Stage 8 36425 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 9 36426 -NCIT:C4594 Cecum Carcinoma In Situ 10 36427 -NCIT:C3993 Stage II Colon Cancer AJCC v6 9 36428 -NCIT:C3994 Stage IV Colon Cancer AJCC v6 9 36429 -NCIT:C7766 Stage III Colon Cancer AJCC v6 9 36430 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 9 36431 -NCIT:C91224 Colon Cancer by AJCC v7 Stage 8 36432 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 9 36433 -NCIT:C4594 Cecum Carcinoma In Situ 10 36434 -NCIT:C89990 Stage II Colon Cancer AJCC v7 9 36435 -NCIT:C115041 Stage IIA Colon Cancer AJCC v7 10 36436 -NCIT:C115042 Stage IIB Colon Cancer AJCC v7 10 36437 -NCIT:C115043 Stage IIC Colon Cancer AJCC v7 10 36438 -NCIT:C89995 Stage III Colon Cancer AJCC v7 9 36439 -NCIT:C115047 Stage IIIA Colon Cancer AJCC v7 10 36440 -NCIT:C115048 Stage IIIB Colon Cancer AJCC v7 10 36441 -NCIT:C115049 Stage IIIC Colon Cancer AJCC v7 10 36442 -NCIT:C89999 Stage IV Colon Cancer AJCC v7 9 36443 -NCIT:C115053 Stage IVA Colon Cancer AJCC v7 10 36444 -NCIT:C115054 Stage IVB Colon Cancer AJCC v7 10 36445 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 9 36446 -NCIT:C5495 Colon Sarcoma 7 36447 -NCIT:C156279 Colon Liposarcoma 8 36448 -NCIT:C5494 Colon Leiomyosarcoma 8 36449 -NCIT:C5516 Colon Kaposi Sarcoma 8 36450 -NCIT:C8411 Metastatic Malignant Neoplasm in the Colon 7 36451 -NCIT:C9329 Malignant Cecum Neoplasm 7 36452 -NCIT:C3491 Cecum Carcinoma 8 36453 -NCIT:C4594 Cecum Carcinoma In Situ 9 36454 -NCIT:C5543 Cecum Adenocarcinoma 9 36455 -NCIT:C5515 Cecum Lymphoma 8 36456 -NCIT:C5521 Cecum Non-Hodgkin Lymphoma 9 36457 -NCIT:C3350 Rectal Neoplasm 5 36458 -NCIT:C4774 Benign Rectal Neoplasm 6 36459 -NCIT:C5546 Rectal Adenoma 7 36460 -NCIT:C172683 Rectal Conventional Adenoma 8 36461 -NCIT:C4919 Rectal Villous Adenoma 9 36462 -NCIT:C5620 Rectal Tubulovillous Adenoma 9 36463 -NCIT:C96477 Rectal Tubular Adenoma 9 36464 -NCIT:C5621 Rectal Adenoma with Severe Dysplasia 8 36465 -NCIT:C96463 Rectal Traditional Serrated Adenoma 8 36466 -NCIT:C96465 Rectal Serrated Lesions and Polyps 8 36467 -NCIT:C96480 Rectal Adenomatous Polyp 8 36468 -NCIT:C5551 Rectal Lipoma 7 36469 -NCIT:C5552 Rectal Leiomyoma 7 36470 -NCIT:C5698 Rectal Neuroendocrine Neoplasm 6 36471 -NCIT:C135213 Rectal Neuroendocrine Tumor 7 36472 -NCIT:C135527 Rectal Neuroendocrine Tumor by AJCC v8 Stage 8 36473 -NCIT:C135528 Stage I Rectal Neuroendocrine Tumor AJCC v8 9 36474 -NCIT:C135529 Stage IIA Rectal Neuroendocrine Tumor AJCC v8 9 36475 -NCIT:C135530 Stage IIB Rectal Neuroendocrine Tumor AJCC v8 9 36476 -NCIT:C135531 Stage IIIA Rectal Neuroendocrine Tumor AJCC v8 9 36477 -NCIT:C135532 Stage IIIB Rectal Neuroendocrine Tumor AJCC v8 9 36478 -NCIT:C135533 Stage IV Rectal Neuroendocrine Tumor AJCC v8 9 36479 -NCIT:C160451 Rectal Neuroendocrine Tumor G2 8 36480 -NCIT:C172703 Rectal Neuroendocrine Tumor G3 8 36481 -NCIT:C5547 Rectal Neuroendocrine Tumor G1 8 36482 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 7 36483 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 7 36484 -NCIT:C7418 Malignant Rectal Neoplasm 6 36485 -NCIT:C4640 Rectal Melanoma 7 36486 -NCIT:C188079 Rectal Epithelioid Cell Melanoma 8 36487 -NCIT:C5548 Rectal Sarcoma 7 36488 -NCIT:C5549 Rectal Leiomyosarcoma 8 36489 -NCIT:C5550 Rectal Kaposi Sarcoma 8 36490 -NCIT:C5627 Rectal Rhabdomyosarcoma 8 36491 -NCIT:C5553 Rectal Lymphoma 7 36492 -NCIT:C7426 Metastatic Malignant Neoplasm in the Rectum 7 36493 -NCIT:C188076 Metastatic Carcinoma in the Rectum 8 36494 -NCIT:C9382 Rectal Carcinoma 7 36495 -NCIT:C118823 Childhood Rectal Carcinoma 8 36496 -NCIT:C134258 Rectal Cancer by AJCC v8 Stage 8 36497 -NCIT:C134291 Stage 0 Rectal Cancer AJCC v8 9 36498 -NCIT:C134292 Stage I Rectal Cancer AJCC v8 9 36499 -NCIT:C134293 Stage II Rectal Cancer AJCC v8 9 36500 -NCIT:C134294 Stage IIA Rectal Cancer AJCC v8 10 36501 -NCIT:C134295 Stage IIB Rectal Cancer AJCC v8 10 36502 -NCIT:C134296 Stage IIC Rectal Cancer AJCC v8 10 36503 -NCIT:C134297 Stage III Rectal Cancer AJCC v8 9 36504 -NCIT:C134298 Stage IIIA Rectal Cancer AJCC v8 10 36505 -NCIT:C134299 Stage IIIB Rectal Cancer AJCC v8 10 36506 -NCIT:C134300 Stage IIIC Rectal Cancer AJCC v8 10 36507 -NCIT:C134301 Stage IV Rectal Cancer AJCC v8 9 36508 -NCIT:C134302 Stage IVA Rectal Cancer AJCC v8 10 36509 -NCIT:C134303 Stage IVB Rectal Cancer AJCC v8 10 36510 -NCIT:C134304 Stage IVC Rectal Cancer AJCC v8 10 36511 -NCIT:C156098 Metastatic Rectal Carcinoma 8 36512 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 9 36513 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 36514 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 36515 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 36516 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 36517 -NCIT:C170777 Advanced Rectal Carcinoma 9 36518 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 36519 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 36520 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 36521 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 36522 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 36523 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 36524 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 9 36525 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 36526 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 36527 -NCIT:C162156 Refractory Rectal Carcinoma 8 36528 -NCIT:C162157 Refractory Rectal Adenocarcinoma 9 36529 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 9 36530 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 8 36531 -NCIT:C177776 Microsatellite Stable Rectal Carcinoma 8 36532 -NCIT:C43594 Rectal Adenosquamous Carcinoma 8 36533 -NCIT:C5554 Rectal Squamous Cell Carcinoma 8 36534 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 9 36535 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 36536 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 36537 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 9 36538 -NCIT:C5555 Rectal Cloacogenic Carcinoma 9 36539 -NCIT:C5556 Rectal Sarcomatoid Carcinoma 8 36540 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 8 36541 -NCIT:C7974 Rectal Undifferentiated Carcinoma 8 36542 -NCIT:C90508 Rectal Cancer by AJCC v6 Stage 8 36543 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 9 36544 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 9 36545 -NCIT:C7791 Stage II Rectal Cancer AJCC v6 9 36546 -NCIT:C7792 Stage III Rectal Cancer AJCC v6 9 36547 -NCIT:C8412 Stage IV Rectal Cancer AJCC v6 9 36548 -NCIT:C91225 Rectal Cancer by AJCC v7 Stage 8 36549 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 9 36550 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 9 36551 -NCIT:C89991 Stage II Rectal Cancer AJCC v7 9 36552 -NCIT:C115044 Stage IIA Rectal Cancer AJCC v7 10 36553 -NCIT:C115045 Stage IIB Rectal Cancer AJCC v7 10 36554 -NCIT:C115046 Stage IIC Rectal Cancer AJCC v7 10 36555 -NCIT:C89996 Stage III Rectal Cancer AJCC v7 9 36556 -NCIT:C115050 Stage IIIA Rectal Cancer AJCC v7 10 36557 -NCIT:C115051 Stage IIIB Rectal Cancer AJCC v7 10 36558 -NCIT:C115052 Stage IIIC Rectal Cancer AJCC v7 10 36559 -NCIT:C90016 Stage IV Rectal Cancer AJCC v7 9 36560 -NCIT:C115055 Stage IVA Rectal Cancer AJCC v7 10 36561 -NCIT:C115056 Stage IVB Rectal Cancer AJCC v7 10 36562 -NCIT:C9238 Recurrent Rectal Carcinoma 8 36563 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 9 36564 -NCIT:C9383 Rectal Adenocarcinoma 8 36565 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 36566 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 36567 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 36568 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 36569 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 9 36570 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 36571 -NCIT:C162157 Refractory Rectal Adenocarcinoma 9 36572 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 9 36573 -NCIT:C60640 Rectal Medullary Carcinoma 9 36574 -NCIT:C7973 Rectal Mucinous Adenocarcinoma 9 36575 -NCIT:C9168 Rectal Signet Ring Cell Adenocarcinoma 9 36576 -NCIT:C9449 Grade 3 Rectal Adenocarcinoma 9 36577 -NCIT:C9450 Grade 2 Rectal Adenocarcinoma 9 36578 -NCIT:C9451 Grade 1 Rectal Adenocarcinoma 9 36579 -NCIT:C96487 Rectal Serrated Adenocarcinoma 9 36580 -NCIT:C96490 Rectal Cribriform Comedo-Type Adenocarcinoma 9 36581 -NCIT:C96493 Rectal Micropapillary Adenocarcinoma 9 36582 -NCIT:C4610 Benign Colorectal Neoplasm 5 36583 -NCIT:C2894 Benign Colon Neoplasm 6 36584 -NCIT:C3864 Colon Adenoma 7 36585 -NCIT:C128171 Colon Adenoma with Severe Dysplasia 8 36586 -NCIT:C172682 Colon Conventional Adenoma 8 36587 -NCIT:C3495 Colon Villous Adenoma 9 36588 -NCIT:C5520 Cecum Villous Adenoma 10 36589 -NCIT:C5496 Colon Tubulovillous Adenoma 9 36590 -NCIT:C7041 Colon Tubular Adenoma 9 36591 -NCIT:C43577 Colon Traditional Serrated Adenoma 8 36592 -NCIT:C96464 Colon Serrated Lesions and Polyps 8 36593 -NCIT:C96479 Colon Adenomatous Polyp 8 36594 -NCIT:C4772 Benign Cecum Neoplasm 7 36595 -NCIT:C5520 Cecum Villous Adenoma 8 36596 -NCIT:C5395 Colon Cavernous Hemangioma 7 36597 -NCIT:C5492 Colon Leiomyoma 7 36598 -NCIT:C5493 Colon Lipoma 7 36599 -NCIT:C5500 Colon Lymphangioma 7 36600 -NCIT:C7042 Colon Ganglioneuroma 7 36601 -NCIT:C4774 Benign Rectal Neoplasm 6 36602 -NCIT:C5546 Rectal Adenoma 7 36603 -NCIT:C172683 Rectal Conventional Adenoma 8 36604 -NCIT:C4919 Rectal Villous Adenoma 9 36605 -NCIT:C5620 Rectal Tubulovillous Adenoma 9 36606 -NCIT:C96477 Rectal Tubular Adenoma 9 36607 -NCIT:C5621 Rectal Adenoma with Severe Dysplasia 8 36608 -NCIT:C96463 Rectal Traditional Serrated Adenoma 8 36609 -NCIT:C96465 Rectal Serrated Lesions and Polyps 8 36610 -NCIT:C96480 Rectal Adenomatous Polyp 8 36611 -NCIT:C5551 Rectal Lipoma 7 36612 -NCIT:C5552 Rectal Leiomyoma 7 36613 -NCIT:C5673 Colorectal Adenoma 6 36614 -NCIT:C172680 Colorectal Conventional Adenoma 7 36615 -NCIT:C172682 Colon Conventional Adenoma 8 36616 -NCIT:C3495 Colon Villous Adenoma 9 36617 -NCIT:C5520 Cecum Villous Adenoma 10 36618 -NCIT:C5496 Colon Tubulovillous Adenoma 9 36619 -NCIT:C7041 Colon Tubular Adenoma 9 36620 -NCIT:C172683 Rectal Conventional Adenoma 8 36621 -NCIT:C4919 Rectal Villous Adenoma 9 36622 -NCIT:C5620 Rectal Tubulovillous Adenoma 9 36623 -NCIT:C96477 Rectal Tubular Adenoma 9 36624 -NCIT:C27456 Colorectal Tubular Adenoma 8 36625 -NCIT:C7041 Colon Tubular Adenoma 9 36626 -NCIT:C96477 Rectal Tubular Adenoma 9 36627 -NCIT:C5675 Colorectal Tubulovillous Adenoma 8 36628 -NCIT:C5496 Colon Tubulovillous Adenoma 9 36629 -NCIT:C5620 Rectal Tubulovillous Adenoma 9 36630 -NCIT:C5676 Colorectal Villous Adenoma 8 36631 -NCIT:C3495 Colon Villous Adenoma 9 36632 -NCIT:C5520 Cecum Villous Adenoma 10 36633 -NCIT:C4919 Rectal Villous Adenoma 9 36634 -NCIT:C27457 Colorectal Adenoma with Moderate Dysplasia 7 36635 -NCIT:C27458 Colorectal Adenoma with Mild Dysplasia 7 36636 -NCIT:C3864 Colon Adenoma 7 36637 -NCIT:C128171 Colon Adenoma with Severe Dysplasia 8 36638 -NCIT:C172682 Colon Conventional Adenoma 8 36639 -NCIT:C3495 Colon Villous Adenoma 9 36640 -NCIT:C5520 Cecum Villous Adenoma 10 36641 -NCIT:C5496 Colon Tubulovillous Adenoma 9 36642 -NCIT:C7041 Colon Tubular Adenoma 9 36643 -NCIT:C43577 Colon Traditional Serrated Adenoma 8 36644 -NCIT:C96464 Colon Serrated Lesions and Polyps 8 36645 -NCIT:C96479 Colon Adenomatous Polyp 8 36646 -NCIT:C5546 Rectal Adenoma 7 36647 -NCIT:C172683 Rectal Conventional Adenoma 8 36648 -NCIT:C4919 Rectal Villous Adenoma 9 36649 -NCIT:C5620 Rectal Tubulovillous Adenoma 9 36650 -NCIT:C96477 Rectal Tubular Adenoma 9 36651 -NCIT:C5621 Rectal Adenoma with Severe Dysplasia 8 36652 -NCIT:C96463 Rectal Traditional Serrated Adenoma 8 36653 -NCIT:C96465 Rectal Serrated Lesions and Polyps 8 36654 -NCIT:C96480 Rectal Adenomatous Polyp 8 36655 -NCIT:C5674 Colorectal Traditional Serrated Adenoma 7 36656 -NCIT:C43577 Colon Traditional Serrated Adenoma 8 36657 -NCIT:C96463 Rectal Traditional Serrated Adenoma 8 36658 -NCIT:C96468 Colorectal Filiform Serrated Adenoma 8 36659 -NCIT:C5685 Colorectal Adenoma with Severe Dysplasia 7 36660 -NCIT:C128171 Colon Adenoma with Severe Dysplasia 8 36661 -NCIT:C5621 Rectal Adenoma with Severe Dysplasia 8 36662 -NCIT:C83176 Colorectal Serrated Lesions and Polyps 7 36663 -NCIT:C96464 Colon Serrated Lesions and Polyps 8 36664 -NCIT:C96465 Rectal Serrated Lesions and Polyps 8 36665 -NCIT:C96478 Colorectal Adenomatous Polyp 7 36666 -NCIT:C96479 Colon Adenomatous Polyp 8 36667 -NCIT:C96480 Rectal Adenomatous Polyp 8 36668 -NCIT:C5677 Colorectal Leiomyoma 6 36669 -NCIT:C5492 Colon Leiomyoma 7 36670 -NCIT:C5552 Rectal Leiomyoma 7 36671 -NCIT:C5678 Colorectal Lipoma 6 36672 -NCIT:C5493 Colon Lipoma 7 36673 -NCIT:C5551 Rectal Lipoma 7 36674 -NCIT:C96512 Colorectal Schwannoma 6 36675 -NCIT:C96513 Colorectal Perineurioma 6 36676 -NCIT:C96514 Colorectal Ganglioneuroma 6 36677 -NCIT:C7042 Colon Ganglioneuroma 7 36678 -NCIT:C96516 Colorectal Benign Granular Cell Tumor 6 36679 -NCIT:C4877 Rectosigmoid Neoplasm 5 36680 -NCIT:C7420 Malignant Rectosigmoid Neoplasm 6 36681 -NCIT:C7421 Rectosigmoid Carcinoma 7 36682 -NCIT:C43584 Rectosigmoid Adenocarcinoma 8 36683 -NCIT:C43592 Rectosigmoid Mucinous Adenocarcinoma 9 36684 -NCIT:C43593 Rectosigmoid Signet Ring Cell Carcinoma 9 36685 -NCIT:C8634 Recurrent Rectosigmoid Carcinoma 8 36686 -NCIT:C90509 Rectosigmoid Cancer by AJCC v6 Stage 8 36687 -NCIT:C5015 Stage II Rectosigmoid Cancer AJCC v6 9 36688 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 9 36689 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 9 36690 -NCIT:C8635 Stage III Rectosigmoid Cancer AJCC v6 9 36691 -NCIT:C8636 Stage IV Rectosigmoid Cancer AJCC v6 9 36692 -NCIT:C91226 Rectosigmoid Cancer by AJCC v7 Stage 8 36693 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 9 36694 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 9 36695 -NCIT:C89992 Stage II Rectosigmoid Cancer AJCC v7 9 36696 -NCIT:C89997 Stage III Rectosigmoid Cancer AJCC v7 9 36697 -NCIT:C90019 Stage IV Rectosigmoid Cancer AJCC v7 9 36698 -NCIT:C4978 Malignant Colorectal Neoplasm 5 36699 -NCIT:C162780 Metastatic Malignant Colorectal Neoplasm 6 36700 -NCIT:C156096 Metastatic Colorectal Carcinoma 7 36701 -NCIT:C142867 Metastatic Microsatellite Stable Colorectal Carcinoma 8 36702 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 36703 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 36704 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 36705 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 36706 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 36707 -NCIT:C153224 Colorectal Carcinoma Metastatic in the Lung 8 36708 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 9 36709 -NCIT:C156097 Metastatic Colon Carcinoma 8 36710 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 36711 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 36712 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 36713 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 36714 -NCIT:C167238 Advanced Colon Carcinoma 9 36715 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 36716 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 36717 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 36718 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 36719 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 36720 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 36721 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 36722 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 9 36723 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 9 36724 -NCIT:C156098 Metastatic Rectal Carcinoma 8 36725 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 9 36726 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 36727 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 36728 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 36729 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 36730 -NCIT:C170777 Advanced Rectal Carcinoma 9 36731 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 36732 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 36733 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 36734 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 36735 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 36736 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 36737 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 9 36738 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 36739 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 36740 -NCIT:C157366 Colorectal Carcinoma Metastatic in the Liver 8 36741 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 9 36742 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 9 36743 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 9 36744 -NCIT:C161048 Metastatic Colorectal Adenocarcinoma 8 36745 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 9 36746 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 36747 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 36748 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 36749 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 36750 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 36751 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 36752 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 36753 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 36754 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 9 36755 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 36756 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 36757 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 36758 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 36759 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 36760 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 36761 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 36762 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 36763 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 36764 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 36765 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 36766 -NCIT:C162475 Advanced Colorectal Carcinoma 8 36767 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 36768 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 36769 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 36770 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 36771 -NCIT:C167238 Advanced Colon Carcinoma 9 36772 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 36773 -NCIT:C170777 Advanced Rectal Carcinoma 9 36774 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 36775 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 36776 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 8 36777 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 36778 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 36779 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 36780 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 36781 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 36782 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 36783 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 36784 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 36785 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 36786 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 36787 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 36788 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 36789 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 36790 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 36791 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 36792 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 36793 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 36794 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 36795 -NCIT:C185165 Oligometastatic Colorectal Carcinoma 8 36796 -NCIT:C2955 Colorectal Carcinoma 6 36797 -NCIT:C118808 Childhood Colorectal Carcinoma 7 36798 -NCIT:C118823 Childhood Rectal Carcinoma 8 36799 -NCIT:C134180 Colorectal Cancer by AJCC v8 Stage 7 36800 -NCIT:C134182 Stage 0 Colorectal Cancer AJCC v8 8 36801 -NCIT:C134271 Stage 0 Colon Cancer AJCC v8 9 36802 -NCIT:C134291 Stage 0 Rectal Cancer AJCC v8 9 36803 -NCIT:C134185 Stage I Colorectal Cancer AJCC v8 8 36804 -NCIT:C134273 Stage I Colon Cancer AJCC v8 9 36805 -NCIT:C134292 Stage I Rectal Cancer AJCC v8 9 36806 -NCIT:C134186 Stage II Colorectal Cancer AJCC v8 8 36807 -NCIT:C134187 Stage IIA Colorectal Cancer AJCC v8 9 36808 -NCIT:C134280 Stage IIA Colon Cancer AJCC v8 10 36809 -NCIT:C134294 Stage IIA Rectal Cancer AJCC v8 10 36810 -NCIT:C134188 Stage IIB Colorectal Cancer AJCC v8 9 36811 -NCIT:C134281 Stage IIB Colon Cancer AJCC v8 10 36812 -NCIT:C134295 Stage IIB Rectal Cancer AJCC v8 10 36813 -NCIT:C134190 Stage IIC Colorectal Cancer AJCC v8 9 36814 -NCIT:C134282 Stage IIC Colon Cancer AJCC v8 10 36815 -NCIT:C134296 Stage IIC Rectal Cancer AJCC v8 10 36816 -NCIT:C134274 Stage II Colon Cancer AJCC v8 9 36817 -NCIT:C134280 Stage IIA Colon Cancer AJCC v8 10 36818 -NCIT:C134281 Stage IIB Colon Cancer AJCC v8 10 36819 -NCIT:C134282 Stage IIC Colon Cancer AJCC v8 10 36820 -NCIT:C134293 Stage II Rectal Cancer AJCC v8 9 36821 -NCIT:C134294 Stage IIA Rectal Cancer AJCC v8 10 36822 -NCIT:C134295 Stage IIB Rectal Cancer AJCC v8 10 36823 -NCIT:C134296 Stage IIC Rectal Cancer AJCC v8 10 36824 -NCIT:C134191 Stage III Colorectal Cancer AJCC v8 8 36825 -NCIT:C134192 Stage IIIA Colorectal Cancer AJCC v8 9 36826 -NCIT:C134284 Stage IIIA Colon Cancer AJCC v8 10 36827 -NCIT:C134298 Stage IIIA Rectal Cancer AJCC v8 10 36828 -NCIT:C134193 Stage IIIB Colorectal Cancer AJCC v8 9 36829 -NCIT:C134285 Stage IIIB Colon Cancer AJCC v8 10 36830 -NCIT:C134299 Stage IIIB Rectal Cancer AJCC v8 10 36831 -NCIT:C134194 Stage IIIC Colorectal Cancer AJCC v8 9 36832 -NCIT:C134286 Stage IIIC Colon Cancer AJCC v8 10 36833 -NCIT:C134300 Stage IIIC Rectal Cancer AJCC v8 10 36834 -NCIT:C134283 Stage III Colon Cancer AJCC v8 9 36835 -NCIT:C134284 Stage IIIA Colon Cancer AJCC v8 10 36836 -NCIT:C134285 Stage IIIB Colon Cancer AJCC v8 10 36837 -NCIT:C134286 Stage IIIC Colon Cancer AJCC v8 10 36838 -NCIT:C134297 Stage III Rectal Cancer AJCC v8 9 36839 -NCIT:C134298 Stage IIIA Rectal Cancer AJCC v8 10 36840 -NCIT:C134299 Stage IIIB Rectal Cancer AJCC v8 10 36841 -NCIT:C134300 Stage IIIC Rectal Cancer AJCC v8 10 36842 -NCIT:C134195 Stage IV Colorectal Cancer AJCC v8 8 36843 -NCIT:C134196 Stage IVA Colorectal Cancer AJCC v8 9 36844 -NCIT:C134288 Stage IVA Colon Cancer AJCC v8 10 36845 -NCIT:C134302 Stage IVA Rectal Cancer AJCC v8 10 36846 -NCIT:C134197 Stage IVB Colorectal Cancer AJCC v8 9 36847 -NCIT:C134289 Stage IVB Colon Cancer AJCC v8 10 36848 -NCIT:C134303 Stage IVB Rectal Cancer AJCC v8 10 36849 -NCIT:C134198 Stage IVC Colorectal Cancer AJCC v8 9 36850 -NCIT:C134290 Stage IVC Colon Cancer AJCC v8 10 36851 -NCIT:C134304 Stage IVC Rectal Cancer AJCC v8 10 36852 -NCIT:C134287 Stage IV Colon Cancer AJCC v8 9 36853 -NCIT:C134288 Stage IVA Colon Cancer AJCC v8 10 36854 -NCIT:C134289 Stage IVB Colon Cancer AJCC v8 10 36855 -NCIT:C134290 Stage IVC Colon Cancer AJCC v8 10 36856 -NCIT:C134301 Stage IV Rectal Cancer AJCC v8 9 36857 -NCIT:C134302 Stage IVA Rectal Cancer AJCC v8 10 36858 -NCIT:C134303 Stage IVB Rectal Cancer AJCC v8 10 36859 -NCIT:C134304 Stage IVC Rectal Cancer AJCC v8 10 36860 -NCIT:C134251 Colon Cancer by AJCC v8 Stage 8 36861 -NCIT:C134271 Stage 0 Colon Cancer AJCC v8 9 36862 -NCIT:C134273 Stage I Colon Cancer AJCC v8 9 36863 -NCIT:C134274 Stage II Colon Cancer AJCC v8 9 36864 -NCIT:C134280 Stage IIA Colon Cancer AJCC v8 10 36865 -NCIT:C134281 Stage IIB Colon Cancer AJCC v8 10 36866 -NCIT:C134282 Stage IIC Colon Cancer AJCC v8 10 36867 -NCIT:C134283 Stage III Colon Cancer AJCC v8 9 36868 -NCIT:C134284 Stage IIIA Colon Cancer AJCC v8 10 36869 -NCIT:C134285 Stage IIIB Colon Cancer AJCC v8 10 36870 -NCIT:C134286 Stage IIIC Colon Cancer AJCC v8 10 36871 -NCIT:C134287 Stage IV Colon Cancer AJCC v8 9 36872 -NCIT:C134288 Stage IVA Colon Cancer AJCC v8 10 36873 -NCIT:C134289 Stage IVB Colon Cancer AJCC v8 10 36874 -NCIT:C134290 Stage IVC Colon Cancer AJCC v8 10 36875 -NCIT:C134258 Rectal Cancer by AJCC v8 Stage 8 36876 -NCIT:C134291 Stage 0 Rectal Cancer AJCC v8 9 36877 -NCIT:C134292 Stage I Rectal Cancer AJCC v8 9 36878 -NCIT:C134293 Stage II Rectal Cancer AJCC v8 9 36879 -NCIT:C134294 Stage IIA Rectal Cancer AJCC v8 10 36880 -NCIT:C134295 Stage IIB Rectal Cancer AJCC v8 10 36881 -NCIT:C134296 Stage IIC Rectal Cancer AJCC v8 10 36882 -NCIT:C134297 Stage III Rectal Cancer AJCC v8 9 36883 -NCIT:C134298 Stage IIIA Rectal Cancer AJCC v8 10 36884 -NCIT:C134299 Stage IIIB Rectal Cancer AJCC v8 10 36885 -NCIT:C134300 Stage IIIC Rectal Cancer AJCC v8 10 36886 -NCIT:C134301 Stage IV Rectal Cancer AJCC v8 9 36887 -NCIT:C134302 Stage IVA Rectal Cancer AJCC v8 10 36888 -NCIT:C134303 Stage IVB Rectal Cancer AJCC v8 10 36889 -NCIT:C134304 Stage IVC Rectal Cancer AJCC v8 10 36890 -NCIT:C147982 Refractory Colorectal Carcinoma 7 36891 -NCIT:C153351 Refractory Colon Carcinoma 8 36892 -NCIT:C162155 Refractory Colon Adenocarcinoma 9 36893 -NCIT:C162154 Refractory Colorectal Adenocarcinoma 8 36894 -NCIT:C162155 Refractory Colon Adenocarcinoma 9 36895 -NCIT:C162157 Refractory Rectal Adenocarcinoma 9 36896 -NCIT:C162156 Refractory Rectal Carcinoma 8 36897 -NCIT:C162157 Refractory Rectal Adenocarcinoma 9 36898 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 9 36899 -NCIT:C173332 Refractory Microsatellite Stable Colorectal Carcinoma 8 36900 -NCIT:C156096 Metastatic Colorectal Carcinoma 7 36901 -NCIT:C142867 Metastatic Microsatellite Stable Colorectal Carcinoma 8 36902 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 36903 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 36904 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 36905 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 36906 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 36907 -NCIT:C153224 Colorectal Carcinoma Metastatic in the Lung 8 36908 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 9 36909 -NCIT:C156097 Metastatic Colon Carcinoma 8 36910 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 36911 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 36912 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 36913 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 36914 -NCIT:C167238 Advanced Colon Carcinoma 9 36915 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 36916 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 36917 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 36918 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 36919 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 36920 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 36921 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 36922 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 9 36923 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 9 36924 -NCIT:C156098 Metastatic Rectal Carcinoma 8 36925 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 9 36926 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 36927 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 36928 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 36929 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 36930 -NCIT:C170777 Advanced Rectal Carcinoma 9 36931 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 36932 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 36933 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 36934 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 36935 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 36936 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 36937 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 9 36938 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 36939 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 36940 -NCIT:C157366 Colorectal Carcinoma Metastatic in the Liver 8 36941 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 9 36942 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 9 36943 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 9 36944 -NCIT:C161048 Metastatic Colorectal Adenocarcinoma 8 36945 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 9 36946 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 36947 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 36948 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 36949 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 36950 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 36951 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 36952 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 36953 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 36954 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 9 36955 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 36956 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 36957 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 36958 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 36959 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 36960 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 36961 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 36962 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 36963 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 36964 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 36965 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 36966 -NCIT:C162475 Advanced Colorectal Carcinoma 8 36967 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 36968 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 36969 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 36970 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 36971 -NCIT:C167238 Advanced Colon Carcinoma 9 36972 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 36973 -NCIT:C170777 Advanced Rectal Carcinoma 9 36974 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 36975 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 36976 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 8 36977 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 36978 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 36979 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 36980 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 36981 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 36982 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 36983 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 36984 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 36985 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 36986 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 36987 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 36988 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 36989 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 36990 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 36991 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 36992 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 36993 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 36994 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 36995 -NCIT:C185165 Oligometastatic Colorectal Carcinoma 8 36996 -NCIT:C162256 Hypermutated Colorectal Carcinoma 7 36997 -NCIT:C162257 Resectable Colorectal Carcinoma 7 36998 -NCIT:C167237 Resectable Colon Carcinoma 8 36999 -NCIT:C162600 Unresectable Colorectal Carcinoma 7 37000 -NCIT:C171585 Unresectable Colorectal Adenocarcinoma 8 37001 -NCIT:C162116 Unresectable Colon Adenocarcinoma 9 37002 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 37003 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 9 37004 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 37005 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 37006 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 37007 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 37008 -NCIT:C180406 Unresectable Colon Carcinoma 8 37009 -NCIT:C162116 Unresectable Colon Adenocarcinoma 9 37010 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 37011 -NCIT:C173324 Microsatellite Stable Colorectal Carcinoma 7 37012 -NCIT:C142867 Metastatic Microsatellite Stable Colorectal Carcinoma 8 37013 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 37014 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 37015 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 37016 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 37017 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 37018 -NCIT:C173332 Refractory Microsatellite Stable Colorectal Carcinoma 8 37019 -NCIT:C177776 Microsatellite Stable Rectal Carcinoma 8 37020 -NCIT:C177777 Microsatellite Stable Colon Carcinoma 8 37021 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 37022 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 37023 -NCIT:C190679 Recurrent Microsatellite Stable Colorectal Carcinoma 8 37024 -NCIT:C43588 Colorectal Squamous Cell Carcinoma 7 37025 -NCIT:C5490 Colon Squamous Cell Carcinoma 8 37026 -NCIT:C5554 Rectal Squamous Cell Carcinoma 8 37027 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 9 37028 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 37029 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 37030 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 9 37031 -NCIT:C5555 Rectal Cloacogenic Carcinoma 9 37032 -NCIT:C43589 Colorectal Adenosquamous Carcinoma 7 37033 -NCIT:C43594 Rectal Adenosquamous Carcinoma 8 37034 -NCIT:C5491 Colon Adenosquamous Carcinoma 8 37035 -NCIT:C43591 Colorectal Undifferentiated Carcinoma 7 37036 -NCIT:C7100 Colon Undifferentiated Carcinoma 8 37037 -NCIT:C7974 Rectal Undifferentiated Carcinoma 8 37038 -NCIT:C4910 Colon Carcinoma 7 37039 -NCIT:C134251 Colon Cancer by AJCC v8 Stage 8 37040 -NCIT:C134271 Stage 0 Colon Cancer AJCC v8 9 37041 -NCIT:C134273 Stage I Colon Cancer AJCC v8 9 37042 -NCIT:C134274 Stage II Colon Cancer AJCC v8 9 37043 -NCIT:C134280 Stage IIA Colon Cancer AJCC v8 10 37044 -NCIT:C134281 Stage IIB Colon Cancer AJCC v8 10 37045 -NCIT:C134282 Stage IIC Colon Cancer AJCC v8 10 37046 -NCIT:C134283 Stage III Colon Cancer AJCC v8 9 37047 -NCIT:C134284 Stage IIIA Colon Cancer AJCC v8 10 37048 -NCIT:C134285 Stage IIIB Colon Cancer AJCC v8 10 37049 -NCIT:C134286 Stage IIIC Colon Cancer AJCC v8 10 37050 -NCIT:C134287 Stage IV Colon Cancer AJCC v8 9 37051 -NCIT:C134288 Stage IVA Colon Cancer AJCC v8 10 37052 -NCIT:C134289 Stage IVB Colon Cancer AJCC v8 10 37053 -NCIT:C134290 Stage IVC Colon Cancer AJCC v8 10 37054 -NCIT:C153351 Refractory Colon Carcinoma 8 37055 -NCIT:C162155 Refractory Colon Adenocarcinoma 9 37056 -NCIT:C156097 Metastatic Colon Carcinoma 8 37057 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 37058 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 37059 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 37060 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 37061 -NCIT:C167238 Advanced Colon Carcinoma 9 37062 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 37063 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 37064 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 37065 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 37066 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 37067 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 37068 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 37069 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 9 37070 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 9 37071 -NCIT:C164228 Hereditary Colon Carcinoma 8 37072 -NCIT:C167237 Resectable Colon Carcinoma 8 37073 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 8 37074 -NCIT:C177680 Sigmoid Colon Carcinoma 8 37075 -NCIT:C177777 Microsatellite Stable Colon Carcinoma 8 37076 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 37077 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 37078 -NCIT:C180406 Unresectable Colon Carcinoma 8 37079 -NCIT:C162116 Unresectable Colon Adenocarcinoma 9 37080 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 37081 -NCIT:C3491 Cecum Carcinoma 8 37082 -NCIT:C4594 Cecum Carcinoma In Situ 9 37083 -NCIT:C5543 Cecum Adenocarcinoma 9 37084 -NCIT:C3998 Recurrent Colon Carcinoma 8 37085 -NCIT:C162442 Recurrent Colon Adenocarcinoma 9 37086 -NCIT:C4349 Colon Adenocarcinoma 8 37087 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 37088 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 37089 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 37090 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 37091 -NCIT:C162116 Unresectable Colon Adenocarcinoma 9 37092 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 37093 -NCIT:C162155 Refractory Colon Adenocarcinoma 9 37094 -NCIT:C162442 Recurrent Colon Adenocarcinoma 9 37095 -NCIT:C38760 Submucosal Invasive Colon Adenocarcinoma 9 37096 -NCIT:C45429 Colon Intramucosal Adenocarcinoma 9 37097 -NCIT:C27413 Adenoma of the Colon with Intramucosal Adenocarcinoma 10 37098 -NCIT:C5543 Cecum Adenocarcinoma 9 37099 -NCIT:C60641 Colon Medullary Carcinoma 9 37100 -NCIT:C7966 Colon Mucinous Adenocarcinoma 9 37101 -NCIT:C7967 Colon Signet Ring Cell Adenocarcinoma 9 37102 -NCIT:C9452 Grade 1 Colon Adenocarcinoma 9 37103 -NCIT:C9453 Grade 2 Colon Adenocarcinoma 9 37104 -NCIT:C9454 Grade 3 Colon Adenocarcinoma 9 37105 -NCIT:C96486 Colon Serrated Adenocarcinoma 9 37106 -NCIT:C96489 Colon Cribriform Comedo-Type Adenocarcinoma 9 37107 -NCIT:C96492 Colon Micropapillary Adenocarcinoma 9 37108 -NCIT:C5490 Colon Squamous Cell Carcinoma 8 37109 -NCIT:C5491 Colon Adenosquamous Carcinoma 8 37110 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 8 37111 -NCIT:C7100 Colon Undifferentiated Carcinoma 8 37112 -NCIT:C90507 Colon Cancer by AJCC v6 Stage 8 37113 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 9 37114 -NCIT:C4594 Cecum Carcinoma In Situ 10 37115 -NCIT:C3993 Stage II Colon Cancer AJCC v6 9 37116 -NCIT:C3994 Stage IV Colon Cancer AJCC v6 9 37117 -NCIT:C7766 Stage III Colon Cancer AJCC v6 9 37118 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 9 37119 -NCIT:C91224 Colon Cancer by AJCC v7 Stage 8 37120 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 9 37121 -NCIT:C4594 Cecum Carcinoma In Situ 10 37122 -NCIT:C89990 Stage II Colon Cancer AJCC v7 9 37123 -NCIT:C115041 Stage IIA Colon Cancer AJCC v7 10 37124 -NCIT:C115042 Stage IIB Colon Cancer AJCC v7 10 37125 -NCIT:C115043 Stage IIC Colon Cancer AJCC v7 10 37126 -NCIT:C89995 Stage III Colon Cancer AJCC v7 9 37127 -NCIT:C115047 Stage IIIA Colon Cancer AJCC v7 10 37128 -NCIT:C115048 Stage IIIB Colon Cancer AJCC v7 10 37129 -NCIT:C115049 Stage IIIC Colon Cancer AJCC v7 10 37130 -NCIT:C89999 Stage IV Colon Cancer AJCC v7 9 37131 -NCIT:C115053 Stage IVA Colon Cancer AJCC v7 10 37132 -NCIT:C115054 Stage IVB Colon Cancer AJCC v7 10 37133 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 9 37134 -NCIT:C5105 Colorectal Adenocarcinoma 7 37135 -NCIT:C161048 Metastatic Colorectal Adenocarcinoma 8 37136 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 9 37137 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 37138 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 37139 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 37140 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 37141 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 37142 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 37143 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 37144 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 37145 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 9 37146 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 37147 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 37148 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 37149 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 37150 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 37151 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 37152 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 37153 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 37154 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 37155 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 37156 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 37157 -NCIT:C162154 Refractory Colorectal Adenocarcinoma 8 37158 -NCIT:C162155 Refractory Colon Adenocarcinoma 9 37159 -NCIT:C162157 Refractory Rectal Adenocarcinoma 9 37160 -NCIT:C162441 Recurrent Colorectal Adenocarcinoma 8 37161 -NCIT:C162442 Recurrent Colon Adenocarcinoma 9 37162 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 9 37163 -NCIT:C171585 Unresectable Colorectal Adenocarcinoma 8 37164 -NCIT:C162116 Unresectable Colon Adenocarcinoma 9 37165 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 37166 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 9 37167 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 37168 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 37169 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 37170 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 37171 -NCIT:C172694 Colorectal Poorly Cohesive Adenocarcinoma 8 37172 -NCIT:C43586 Colorectal Signet Ring Cell Carcinoma 9 37173 -NCIT:C43593 Rectosigmoid Signet Ring Cell Carcinoma 10 37174 -NCIT:C7967 Colon Signet Ring Cell Adenocarcinoma 10 37175 -NCIT:C9168 Rectal Signet Ring Cell Adenocarcinoma 10 37176 -NCIT:C172699 Colorectal Adenoma-Like Adenocarcinoma 8 37177 -NCIT:C172700 Inflammatory Bowel Disease-Associated Colorectal Adenocarcinoma 8 37178 -NCIT:C96496 Ulcerative Colitis-Associated Colorectal Adenocarcinoma 9 37179 -NCIT:C96497 Crohn Disease-Associated Colorectal Adenocarcinoma 9 37180 -NCIT:C4349 Colon Adenocarcinoma 8 37181 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 37182 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 37183 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 37184 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 37185 -NCIT:C162116 Unresectable Colon Adenocarcinoma 9 37186 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 37187 -NCIT:C162155 Refractory Colon Adenocarcinoma 9 37188 -NCIT:C162442 Recurrent Colon Adenocarcinoma 9 37189 -NCIT:C38760 Submucosal Invasive Colon Adenocarcinoma 9 37190 -NCIT:C45429 Colon Intramucosal Adenocarcinoma 9 37191 -NCIT:C27413 Adenoma of the Colon with Intramucosal Adenocarcinoma 10 37192 -NCIT:C5543 Cecum Adenocarcinoma 9 37193 -NCIT:C60641 Colon Medullary Carcinoma 9 37194 -NCIT:C7966 Colon Mucinous Adenocarcinoma 9 37195 -NCIT:C7967 Colon Signet Ring Cell Adenocarcinoma 9 37196 -NCIT:C9452 Grade 1 Colon Adenocarcinoma 9 37197 -NCIT:C9453 Grade 2 Colon Adenocarcinoma 9 37198 -NCIT:C9454 Grade 3 Colon Adenocarcinoma 9 37199 -NCIT:C96486 Colon Serrated Adenocarcinoma 9 37200 -NCIT:C96489 Colon Cribriform Comedo-Type Adenocarcinoma 9 37201 -NCIT:C96492 Colon Micropapillary Adenocarcinoma 9 37202 -NCIT:C43584 Rectosigmoid Adenocarcinoma 8 37203 -NCIT:C43592 Rectosigmoid Mucinous Adenocarcinoma 9 37204 -NCIT:C43593 Rectosigmoid Signet Ring Cell Carcinoma 9 37205 -NCIT:C43585 Colorectal Mucinous Adenocarcinoma 8 37206 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 9 37207 -NCIT:C43592 Rectosigmoid Mucinous Adenocarcinoma 9 37208 -NCIT:C7966 Colon Mucinous Adenocarcinoma 9 37209 -NCIT:C7973 Rectal Mucinous Adenocarcinoma 9 37210 -NCIT:C43590 Colorectal Medullary Carcinoma 8 37211 -NCIT:C60640 Rectal Medullary Carcinoma 9 37212 -NCIT:C60641 Colon Medullary Carcinoma 9 37213 -NCIT:C9383 Rectal Adenocarcinoma 8 37214 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 37215 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 37216 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 37217 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 37218 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 9 37219 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 37220 -NCIT:C162157 Refractory Rectal Adenocarcinoma 9 37221 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 9 37222 -NCIT:C60640 Rectal Medullary Carcinoma 9 37223 -NCIT:C7973 Rectal Mucinous Adenocarcinoma 9 37224 -NCIT:C9168 Rectal Signet Ring Cell Adenocarcinoma 9 37225 -NCIT:C9449 Grade 3 Rectal Adenocarcinoma 9 37226 -NCIT:C9450 Grade 2 Rectal Adenocarcinoma 9 37227 -NCIT:C9451 Grade 1 Rectal Adenocarcinoma 9 37228 -NCIT:C96487 Rectal Serrated Adenocarcinoma 9 37229 -NCIT:C96490 Rectal Cribriform Comedo-Type Adenocarcinoma 9 37230 -NCIT:C96493 Rectal Micropapillary Adenocarcinoma 9 37231 -NCIT:C9446 Grade 1 Colorectal Adenocarcinoma 8 37232 -NCIT:C9451 Grade 1 Rectal Adenocarcinoma 9 37233 -NCIT:C9452 Grade 1 Colon Adenocarcinoma 9 37234 -NCIT:C9447 Grade 2 Colorectal Adenocarcinoma 8 37235 -NCIT:C9450 Grade 2 Rectal Adenocarcinoma 9 37236 -NCIT:C9453 Grade 2 Colon Adenocarcinoma 9 37237 -NCIT:C9448 Grade 3 Colorectal Adenocarcinoma 8 37238 -NCIT:C9449 Grade 3 Rectal Adenocarcinoma 9 37239 -NCIT:C9454 Grade 3 Colon Adenocarcinoma 9 37240 -NCIT:C96485 Colorectal Serrated Adenocarcinoma 8 37241 -NCIT:C96486 Colon Serrated Adenocarcinoma 9 37242 -NCIT:C96487 Rectal Serrated Adenocarcinoma 9 37243 -NCIT:C96488 Colorectal Cribriform Comedo-Type Adenocarcinoma 8 37244 -NCIT:C96489 Colon Cribriform Comedo-Type Adenocarcinoma 9 37245 -NCIT:C96490 Rectal Cribriform Comedo-Type Adenocarcinoma 9 37246 -NCIT:C96491 Colorectal Micropapillary Adenocarcinoma 8 37247 -NCIT:C96492 Colon Micropapillary Adenocarcinoma 9 37248 -NCIT:C96493 Rectal Micropapillary Adenocarcinoma 9 37249 -NCIT:C7421 Rectosigmoid Carcinoma 7 37250 -NCIT:C43584 Rectosigmoid Adenocarcinoma 8 37251 -NCIT:C43592 Rectosigmoid Mucinous Adenocarcinoma 9 37252 -NCIT:C43593 Rectosigmoid Signet Ring Cell Carcinoma 9 37253 -NCIT:C8634 Recurrent Rectosigmoid Carcinoma 8 37254 -NCIT:C90509 Rectosigmoid Cancer by AJCC v6 Stage 8 37255 -NCIT:C5015 Stage II Rectosigmoid Cancer AJCC v6 9 37256 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 9 37257 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 9 37258 -NCIT:C8635 Stage III Rectosigmoid Cancer AJCC v6 9 37259 -NCIT:C8636 Stage IV Rectosigmoid Cancer AJCC v6 9 37260 -NCIT:C91226 Rectosigmoid Cancer by AJCC v7 Stage 8 37261 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 9 37262 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 9 37263 -NCIT:C89992 Stage II Rectosigmoid Cancer AJCC v7 9 37264 -NCIT:C89997 Stage III Rectosigmoid Cancer AJCC v7 9 37265 -NCIT:C90019 Stage IV Rectosigmoid Cancer AJCC v7 9 37266 -NCIT:C8625 Recurrent Colorectal Carcinoma 7 37267 -NCIT:C162441 Recurrent Colorectal Adenocarcinoma 8 37268 -NCIT:C162442 Recurrent Colon Adenocarcinoma 9 37269 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 9 37270 -NCIT:C190199 Locally Recurrent Colorectal Carcinoma 8 37271 -NCIT:C190679 Recurrent Microsatellite Stable Colorectal Carcinoma 8 37272 -NCIT:C3998 Recurrent Colon Carcinoma 8 37273 -NCIT:C162442 Recurrent Colon Adenocarcinoma 9 37274 -NCIT:C8634 Recurrent Rectosigmoid Carcinoma 8 37275 -NCIT:C9238 Recurrent Rectal Carcinoma 8 37276 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 9 37277 -NCIT:C90506 Colorectal Cancer by AJCC v6 Stage 7 37278 -NCIT:C8513 Stage I Colorectal Cancer AJCC v6 and v7 8 37279 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 9 37280 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 9 37281 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 9 37282 -NCIT:C8514 Stage II Colorectal Cancer AJCC v6 8 37283 -NCIT:C3993 Stage II Colon Cancer AJCC v6 9 37284 -NCIT:C5015 Stage II Rectosigmoid Cancer AJCC v6 9 37285 -NCIT:C7791 Stage II Rectal Cancer AJCC v6 9 37286 -NCIT:C8515 Stage III Colorectal Cancer AJCC v6 8 37287 -NCIT:C7766 Stage III Colon Cancer AJCC v6 9 37288 -NCIT:C7792 Stage III Rectal Cancer AJCC v6 9 37289 -NCIT:C8635 Stage III Rectosigmoid Cancer AJCC v6 9 37290 -NCIT:C8516 Stage IV Colorectal Cancer AJCC v6 8 37291 -NCIT:C3994 Stage IV Colon Cancer AJCC v6 9 37292 -NCIT:C8412 Stage IV Rectal Cancer AJCC v6 9 37293 -NCIT:C8636 Stage IV Rectosigmoid Cancer AJCC v6 9 37294 -NCIT:C8932 Stage 0 Colorectal Cancer AJCC v6 and v7 8 37295 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 9 37296 -NCIT:C4594 Cecum Carcinoma In Situ 10 37297 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 9 37298 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 9 37299 -NCIT:C90507 Colon Cancer by AJCC v6 Stage 8 37300 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 9 37301 -NCIT:C4594 Cecum Carcinoma In Situ 10 37302 -NCIT:C3993 Stage II Colon Cancer AJCC v6 9 37303 -NCIT:C3994 Stage IV Colon Cancer AJCC v6 9 37304 -NCIT:C7766 Stage III Colon Cancer AJCC v6 9 37305 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 9 37306 -NCIT:C90508 Rectal Cancer by AJCC v6 Stage 8 37307 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 9 37308 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 9 37309 -NCIT:C7791 Stage II Rectal Cancer AJCC v6 9 37310 -NCIT:C7792 Stage III Rectal Cancer AJCC v6 9 37311 -NCIT:C8412 Stage IV Rectal Cancer AJCC v6 9 37312 -NCIT:C90509 Rectosigmoid Cancer by AJCC v6 Stage 8 37313 -NCIT:C5015 Stage II Rectosigmoid Cancer AJCC v6 9 37314 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 9 37315 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 9 37316 -NCIT:C8635 Stage III Rectosigmoid Cancer AJCC v6 9 37317 -NCIT:C8636 Stage IV Rectosigmoid Cancer AJCC v6 9 37318 -NCIT:C91223 Colorectal Cancer by AJCC v7 Stage 7 37319 -NCIT:C8513 Stage I Colorectal Cancer AJCC v6 and v7 8 37320 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 9 37321 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 9 37322 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 9 37323 -NCIT:C8932 Stage 0 Colorectal Cancer AJCC v6 and v7 8 37324 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 9 37325 -NCIT:C4594 Cecum Carcinoma In Situ 10 37326 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 9 37327 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 9 37328 -NCIT:C89989 Stage II Colorectal Cancer AJCC v7 8 37329 -NCIT:C87813 Stage IIA Colorectal Cancer AJCC v7 9 37330 -NCIT:C115041 Stage IIA Colon Cancer AJCC v7 10 37331 -NCIT:C115044 Stage IIA Rectal Cancer AJCC v7 10 37332 -NCIT:C87814 Stage IIB Colorectal Cancer AJCC v7 9 37333 -NCIT:C115042 Stage IIB Colon Cancer AJCC v7 10 37334 -NCIT:C115045 Stage IIB Rectal Cancer AJCC v7 10 37335 -NCIT:C87815 Stage IIC Colorectal Cancer AJCC v7 9 37336 -NCIT:C115043 Stage IIC Colon Cancer AJCC v7 10 37337 -NCIT:C115046 Stage IIC Rectal Cancer AJCC v7 10 37338 -NCIT:C89990 Stage II Colon Cancer AJCC v7 9 37339 -NCIT:C115041 Stage IIA Colon Cancer AJCC v7 10 37340 -NCIT:C115042 Stage IIB Colon Cancer AJCC v7 10 37341 -NCIT:C115043 Stage IIC Colon Cancer AJCC v7 10 37342 -NCIT:C89991 Stage II Rectal Cancer AJCC v7 9 37343 -NCIT:C115044 Stage IIA Rectal Cancer AJCC v7 10 37344 -NCIT:C115045 Stage IIB Rectal Cancer AJCC v7 10 37345 -NCIT:C115046 Stage IIC Rectal Cancer AJCC v7 10 37346 -NCIT:C89992 Stage II Rectosigmoid Cancer AJCC v7 9 37347 -NCIT:C89994 Stage III Colorectal Cancer AJCC v7 8 37348 -NCIT:C87816 Stage IIIA Colorectal Cancer AJCC v7 9 37349 -NCIT:C115047 Stage IIIA Colon Cancer AJCC v7 10 37350 -NCIT:C115050 Stage IIIA Rectal Cancer AJCC v7 10 37351 -NCIT:C87817 Stage IIIB Colorectal Cancer AJCC v7 9 37352 -NCIT:C115048 Stage IIIB Colon Cancer AJCC v7 10 37353 -NCIT:C115051 Stage IIIB Rectal Cancer AJCC v7 10 37354 -NCIT:C87818 Stage IIIC Colorectal Cancer AJCC v7 9 37355 -NCIT:C115049 Stage IIIC Colon Cancer AJCC v7 10 37356 -NCIT:C115052 Stage IIIC Rectal Cancer AJCC v7 10 37357 -NCIT:C89995 Stage III Colon Cancer AJCC v7 9 37358 -NCIT:C115047 Stage IIIA Colon Cancer AJCC v7 10 37359 -NCIT:C115048 Stage IIIB Colon Cancer AJCC v7 10 37360 -NCIT:C115049 Stage IIIC Colon Cancer AJCC v7 10 37361 -NCIT:C89996 Stage III Rectal Cancer AJCC v7 9 37362 -NCIT:C115050 Stage IIIA Rectal Cancer AJCC v7 10 37363 -NCIT:C115051 Stage IIIB Rectal Cancer AJCC v7 10 37364 -NCIT:C115052 Stage IIIC Rectal Cancer AJCC v7 10 37365 -NCIT:C89997 Stage III Rectosigmoid Cancer AJCC v7 9 37366 -NCIT:C89998 Stage IV Colorectal Cancer AJCC v7 8 37367 -NCIT:C87819 Stage IVA Colorectal Cancer AJCC v7 9 37368 -NCIT:C115053 Stage IVA Colon Cancer AJCC v7 10 37369 -NCIT:C115055 Stage IVA Rectal Cancer AJCC v7 10 37370 -NCIT:C87820 Stage IVB Colorectal Cancer AJCC v7 9 37371 -NCIT:C115054 Stage IVB Colon Cancer AJCC v7 10 37372 -NCIT:C115056 Stage IVB Rectal Cancer AJCC v7 10 37373 -NCIT:C89999 Stage IV Colon Cancer AJCC v7 9 37374 -NCIT:C115053 Stage IVA Colon Cancer AJCC v7 10 37375 -NCIT:C115054 Stage IVB Colon Cancer AJCC v7 10 37376 -NCIT:C90016 Stage IV Rectal Cancer AJCC v7 9 37377 -NCIT:C115055 Stage IVA Rectal Cancer AJCC v7 10 37378 -NCIT:C115056 Stage IVB Rectal Cancer AJCC v7 10 37379 -NCIT:C90019 Stage IV Rectosigmoid Cancer AJCC v7 9 37380 -NCIT:C91224 Colon Cancer by AJCC v7 Stage 8 37381 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 9 37382 -NCIT:C4594 Cecum Carcinoma In Situ 10 37383 -NCIT:C89990 Stage II Colon Cancer AJCC v7 9 37384 -NCIT:C115041 Stage IIA Colon Cancer AJCC v7 10 37385 -NCIT:C115042 Stage IIB Colon Cancer AJCC v7 10 37386 -NCIT:C115043 Stage IIC Colon Cancer AJCC v7 10 37387 -NCIT:C89995 Stage III Colon Cancer AJCC v7 9 37388 -NCIT:C115047 Stage IIIA Colon Cancer AJCC v7 10 37389 -NCIT:C115048 Stage IIIB Colon Cancer AJCC v7 10 37390 -NCIT:C115049 Stage IIIC Colon Cancer AJCC v7 10 37391 -NCIT:C89999 Stage IV Colon Cancer AJCC v7 9 37392 -NCIT:C115053 Stage IVA Colon Cancer AJCC v7 10 37393 -NCIT:C115054 Stage IVB Colon Cancer AJCC v7 10 37394 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 9 37395 -NCIT:C91225 Rectal Cancer by AJCC v7 Stage 8 37396 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 9 37397 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 9 37398 -NCIT:C89991 Stage II Rectal Cancer AJCC v7 9 37399 -NCIT:C115044 Stage IIA Rectal Cancer AJCC v7 10 37400 -NCIT:C115045 Stage IIB Rectal Cancer AJCC v7 10 37401 -NCIT:C115046 Stage IIC Rectal Cancer AJCC v7 10 37402 -NCIT:C89996 Stage III Rectal Cancer AJCC v7 9 37403 -NCIT:C115050 Stage IIIA Rectal Cancer AJCC v7 10 37404 -NCIT:C115051 Stage IIIB Rectal Cancer AJCC v7 10 37405 -NCIT:C115052 Stage IIIC Rectal Cancer AJCC v7 10 37406 -NCIT:C90016 Stage IV Rectal Cancer AJCC v7 9 37407 -NCIT:C115055 Stage IVA Rectal Cancer AJCC v7 10 37408 -NCIT:C115056 Stage IVB Rectal Cancer AJCC v7 10 37409 -NCIT:C91226 Rectosigmoid Cancer by AJCC v7 Stage 8 37410 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 9 37411 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 9 37412 -NCIT:C89992 Stage II Rectosigmoid Cancer AJCC v7 9 37413 -NCIT:C89997 Stage III Rectosigmoid Cancer AJCC v7 9 37414 -NCIT:C90019 Stage IV Rectosigmoid Cancer AJCC v7 9 37415 -NCIT:C9382 Rectal Carcinoma 7 37416 -NCIT:C118823 Childhood Rectal Carcinoma 8 37417 -NCIT:C134258 Rectal Cancer by AJCC v8 Stage 8 37418 -NCIT:C134291 Stage 0 Rectal Cancer AJCC v8 9 37419 -NCIT:C134292 Stage I Rectal Cancer AJCC v8 9 37420 -NCIT:C134293 Stage II Rectal Cancer AJCC v8 9 37421 -NCIT:C134294 Stage IIA Rectal Cancer AJCC v8 10 37422 -NCIT:C134295 Stage IIB Rectal Cancer AJCC v8 10 37423 -NCIT:C134296 Stage IIC Rectal Cancer AJCC v8 10 37424 -NCIT:C134297 Stage III Rectal Cancer AJCC v8 9 37425 -NCIT:C134298 Stage IIIA Rectal Cancer AJCC v8 10 37426 -NCIT:C134299 Stage IIIB Rectal Cancer AJCC v8 10 37427 -NCIT:C134300 Stage IIIC Rectal Cancer AJCC v8 10 37428 -NCIT:C134301 Stage IV Rectal Cancer AJCC v8 9 37429 -NCIT:C134302 Stage IVA Rectal Cancer AJCC v8 10 37430 -NCIT:C134303 Stage IVB Rectal Cancer AJCC v8 10 37431 -NCIT:C134304 Stage IVC Rectal Cancer AJCC v8 10 37432 -NCIT:C156098 Metastatic Rectal Carcinoma 8 37433 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 9 37434 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 37435 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 37436 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 37437 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 37438 -NCIT:C170777 Advanced Rectal Carcinoma 9 37439 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 37440 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 37441 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 37442 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 37443 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 37444 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 37445 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 9 37446 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 37447 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 37448 -NCIT:C162156 Refractory Rectal Carcinoma 8 37449 -NCIT:C162157 Refractory Rectal Adenocarcinoma 9 37450 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 9 37451 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 8 37452 -NCIT:C177776 Microsatellite Stable Rectal Carcinoma 8 37453 -NCIT:C43594 Rectal Adenosquamous Carcinoma 8 37454 -NCIT:C5554 Rectal Squamous Cell Carcinoma 8 37455 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 9 37456 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 37457 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 37458 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 9 37459 -NCIT:C5555 Rectal Cloacogenic Carcinoma 9 37460 -NCIT:C5556 Rectal Sarcomatoid Carcinoma 8 37461 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 8 37462 -NCIT:C7974 Rectal Undifferentiated Carcinoma 8 37463 -NCIT:C90508 Rectal Cancer by AJCC v6 Stage 8 37464 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 9 37465 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 9 37466 -NCIT:C7791 Stage II Rectal Cancer AJCC v6 9 37467 -NCIT:C7792 Stage III Rectal Cancer AJCC v6 9 37468 -NCIT:C8412 Stage IV Rectal Cancer AJCC v6 9 37469 -NCIT:C91225 Rectal Cancer by AJCC v7 Stage 8 37470 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 9 37471 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 9 37472 -NCIT:C89991 Stage II Rectal Cancer AJCC v7 9 37473 -NCIT:C115044 Stage IIA Rectal Cancer AJCC v7 10 37474 -NCIT:C115045 Stage IIB Rectal Cancer AJCC v7 10 37475 -NCIT:C115046 Stage IIC Rectal Cancer AJCC v7 10 37476 -NCIT:C89996 Stage III Rectal Cancer AJCC v7 9 37477 -NCIT:C115050 Stage IIIA Rectal Cancer AJCC v7 10 37478 -NCIT:C115051 Stage IIIB Rectal Cancer AJCC v7 10 37479 -NCIT:C115052 Stage IIIC Rectal Cancer AJCC v7 10 37480 -NCIT:C90016 Stage IV Rectal Cancer AJCC v7 9 37481 -NCIT:C115055 Stage IVA Rectal Cancer AJCC v7 10 37482 -NCIT:C115056 Stage IVB Rectal Cancer AJCC v7 10 37483 -NCIT:C9238 Recurrent Rectal Carcinoma 8 37484 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 9 37485 -NCIT:C9383 Rectal Adenocarcinoma 8 37486 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 37487 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 37488 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 37489 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 37490 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 9 37491 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 37492 -NCIT:C162157 Refractory Rectal Adenocarcinoma 9 37493 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 9 37494 -NCIT:C60640 Rectal Medullary Carcinoma 9 37495 -NCIT:C7973 Rectal Mucinous Adenocarcinoma 9 37496 -NCIT:C9168 Rectal Signet Ring Cell Adenocarcinoma 9 37497 -NCIT:C9449 Grade 3 Rectal Adenocarcinoma 9 37498 -NCIT:C9450 Grade 2 Rectal Adenocarcinoma 9 37499 -NCIT:C9451 Grade 1 Rectal Adenocarcinoma 9 37500 -NCIT:C96487 Rectal Serrated Adenocarcinoma 9 37501 -NCIT:C96490 Rectal Cribriform Comedo-Type Adenocarcinoma 9 37502 -NCIT:C96493 Rectal Micropapillary Adenocarcinoma 9 37503 -NCIT:C96156 Colorectal Neuroendocrine Carcinoma 7 37504 -NCIT:C43587 Colorectal Small Cell Neuroendocrine Carcinoma 8 37505 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 9 37506 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 9 37507 -NCIT:C96157 Colorectal Large Cell Neuroendocrine Carcinoma 8 37508 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 9 37509 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 9 37510 -NCIT:C96158 Colorectal Mixed Adenoneuroendocrine Carcinoma 7 37511 -NCIT:C96494 Colorectal Sarcomatoid Carcinoma 7 37512 -NCIT:C5556 Rectal Sarcomatoid Carcinoma 8 37513 -NCIT:C4581 Metastatic Malignant Neoplasm in the Large Intestine 6 37514 -NCIT:C7426 Metastatic Malignant Neoplasm in the Rectum 7 37515 -NCIT:C188076 Metastatic Carcinoma in the Rectum 8 37516 -NCIT:C8411 Metastatic Malignant Neoplasm in the Colon 7 37517 -NCIT:C7418 Malignant Rectal Neoplasm 6 37518 -NCIT:C4640 Rectal Melanoma 7 37519 -NCIT:C188079 Rectal Epithelioid Cell Melanoma 8 37520 -NCIT:C5548 Rectal Sarcoma 7 37521 -NCIT:C5549 Rectal Leiomyosarcoma 8 37522 -NCIT:C5550 Rectal Kaposi Sarcoma 8 37523 -NCIT:C5627 Rectal Rhabdomyosarcoma 8 37524 -NCIT:C5553 Rectal Lymphoma 7 37525 -NCIT:C7426 Metastatic Malignant Neoplasm in the Rectum 7 37526 -NCIT:C188076 Metastatic Carcinoma in the Rectum 8 37527 -NCIT:C9382 Rectal Carcinoma 7 37528 -NCIT:C118823 Childhood Rectal Carcinoma 8 37529 -NCIT:C134258 Rectal Cancer by AJCC v8 Stage 8 37530 -NCIT:C134291 Stage 0 Rectal Cancer AJCC v8 9 37531 -NCIT:C134292 Stage I Rectal Cancer AJCC v8 9 37532 -NCIT:C134293 Stage II Rectal Cancer AJCC v8 9 37533 -NCIT:C134294 Stage IIA Rectal Cancer AJCC v8 10 37534 -NCIT:C134295 Stage IIB Rectal Cancer AJCC v8 10 37535 -NCIT:C134296 Stage IIC Rectal Cancer AJCC v8 10 37536 -NCIT:C134297 Stage III Rectal Cancer AJCC v8 9 37537 -NCIT:C134298 Stage IIIA Rectal Cancer AJCC v8 10 37538 -NCIT:C134299 Stage IIIB Rectal Cancer AJCC v8 10 37539 -NCIT:C134300 Stage IIIC Rectal Cancer AJCC v8 10 37540 -NCIT:C134301 Stage IV Rectal Cancer AJCC v8 9 37541 -NCIT:C134302 Stage IVA Rectal Cancer AJCC v8 10 37542 -NCIT:C134303 Stage IVB Rectal Cancer AJCC v8 10 37543 -NCIT:C134304 Stage IVC Rectal Cancer AJCC v8 10 37544 -NCIT:C156098 Metastatic Rectal Carcinoma 8 37545 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 9 37546 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 37547 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 37548 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 37549 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 37550 -NCIT:C170777 Advanced Rectal Carcinoma 9 37551 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 37552 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 37553 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 37554 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 37555 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 37556 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 37557 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 9 37558 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 37559 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 37560 -NCIT:C162156 Refractory Rectal Carcinoma 8 37561 -NCIT:C162157 Refractory Rectal Adenocarcinoma 9 37562 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 9 37563 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 8 37564 -NCIT:C177776 Microsatellite Stable Rectal Carcinoma 8 37565 -NCIT:C43594 Rectal Adenosquamous Carcinoma 8 37566 -NCIT:C5554 Rectal Squamous Cell Carcinoma 8 37567 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 9 37568 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 37569 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 37570 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 9 37571 -NCIT:C5555 Rectal Cloacogenic Carcinoma 9 37572 -NCIT:C5556 Rectal Sarcomatoid Carcinoma 8 37573 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 8 37574 -NCIT:C7974 Rectal Undifferentiated Carcinoma 8 37575 -NCIT:C90508 Rectal Cancer by AJCC v6 Stage 8 37576 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 9 37577 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 9 37578 -NCIT:C7791 Stage II Rectal Cancer AJCC v6 9 37579 -NCIT:C7792 Stage III Rectal Cancer AJCC v6 9 37580 -NCIT:C8412 Stage IV Rectal Cancer AJCC v6 9 37581 -NCIT:C91225 Rectal Cancer by AJCC v7 Stage 8 37582 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 9 37583 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 9 37584 -NCIT:C89991 Stage II Rectal Cancer AJCC v7 9 37585 -NCIT:C115044 Stage IIA Rectal Cancer AJCC v7 10 37586 -NCIT:C115045 Stage IIB Rectal Cancer AJCC v7 10 37587 -NCIT:C115046 Stage IIC Rectal Cancer AJCC v7 10 37588 -NCIT:C89996 Stage III Rectal Cancer AJCC v7 9 37589 -NCIT:C115050 Stage IIIA Rectal Cancer AJCC v7 10 37590 -NCIT:C115051 Stage IIIB Rectal Cancer AJCC v7 10 37591 -NCIT:C115052 Stage IIIC Rectal Cancer AJCC v7 10 37592 -NCIT:C90016 Stage IV Rectal Cancer AJCC v7 9 37593 -NCIT:C115055 Stage IVA Rectal Cancer AJCC v7 10 37594 -NCIT:C115056 Stage IVB Rectal Cancer AJCC v7 10 37595 -NCIT:C9238 Recurrent Rectal Carcinoma 8 37596 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 9 37597 -NCIT:C9383 Rectal Adenocarcinoma 8 37598 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 37599 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 37600 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 37601 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 37602 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 9 37603 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 37604 -NCIT:C162157 Refractory Rectal Adenocarcinoma 9 37605 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 9 37606 -NCIT:C60640 Rectal Medullary Carcinoma 9 37607 -NCIT:C7973 Rectal Mucinous Adenocarcinoma 9 37608 -NCIT:C9168 Rectal Signet Ring Cell Adenocarcinoma 9 37609 -NCIT:C9449 Grade 3 Rectal Adenocarcinoma 9 37610 -NCIT:C9450 Grade 2 Rectal Adenocarcinoma 9 37611 -NCIT:C9451 Grade 1 Rectal Adenocarcinoma 9 37612 -NCIT:C96487 Rectal Serrated Adenocarcinoma 9 37613 -NCIT:C96490 Rectal Cribriform Comedo-Type Adenocarcinoma 9 37614 -NCIT:C96493 Rectal Micropapillary Adenocarcinoma 9 37615 -NCIT:C7420 Malignant Rectosigmoid Neoplasm 6 37616 -NCIT:C7421 Rectosigmoid Carcinoma 7 37617 -NCIT:C43584 Rectosigmoid Adenocarcinoma 8 37618 -NCIT:C43592 Rectosigmoid Mucinous Adenocarcinoma 9 37619 -NCIT:C43593 Rectosigmoid Signet Ring Cell Carcinoma 9 37620 -NCIT:C8634 Recurrent Rectosigmoid Carcinoma 8 37621 -NCIT:C90509 Rectosigmoid Cancer by AJCC v6 Stage 8 37622 -NCIT:C5015 Stage II Rectosigmoid Cancer AJCC v6 9 37623 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 9 37624 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 9 37625 -NCIT:C8635 Stage III Rectosigmoid Cancer AJCC v6 9 37626 -NCIT:C8636 Stage IV Rectosigmoid Cancer AJCC v6 9 37627 -NCIT:C91226 Rectosigmoid Cancer by AJCC v7 Stage 8 37628 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 9 37629 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 9 37630 -NCIT:C89992 Stage II Rectosigmoid Cancer AJCC v7 9 37631 -NCIT:C89997 Stage III Rectosigmoid Cancer AJCC v7 9 37632 -NCIT:C90019 Stage IV Rectosigmoid Cancer AJCC v7 9 37633 -NCIT:C9242 Malignant Colon Neoplasm 6 37634 -NCIT:C4793 Colon Lymphoma 7 37635 -NCIT:C4950 Colon Non-Hodgkin Lymphoma 8 37636 -NCIT:C27411 Colon Mantle Cell Lymphoma 9 37637 -NCIT:C27465 Colon Burkitt Lymphoma 9 37638 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 9 37639 -NCIT:C5521 Cecum Non-Hodgkin Lymphoma 9 37640 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 9 37641 -NCIT:C5499 Colon Hodgkin Lymphoma 8 37642 -NCIT:C5515 Cecum Lymphoma 8 37643 -NCIT:C5521 Cecum Non-Hodgkin Lymphoma 9 37644 -NCIT:C4910 Colon Carcinoma 7 37645 -NCIT:C134251 Colon Cancer by AJCC v8 Stage 8 37646 -NCIT:C134271 Stage 0 Colon Cancer AJCC v8 9 37647 -NCIT:C134273 Stage I Colon Cancer AJCC v8 9 37648 -NCIT:C134274 Stage II Colon Cancer AJCC v8 9 37649 -NCIT:C134280 Stage IIA Colon Cancer AJCC v8 10 37650 -NCIT:C134281 Stage IIB Colon Cancer AJCC v8 10 37651 -NCIT:C134282 Stage IIC Colon Cancer AJCC v8 10 37652 -NCIT:C134283 Stage III Colon Cancer AJCC v8 9 37653 -NCIT:C134284 Stage IIIA Colon Cancer AJCC v8 10 37654 -NCIT:C134285 Stage IIIB Colon Cancer AJCC v8 10 37655 -NCIT:C134286 Stage IIIC Colon Cancer AJCC v8 10 37656 -NCIT:C134287 Stage IV Colon Cancer AJCC v8 9 37657 -NCIT:C134288 Stage IVA Colon Cancer AJCC v8 10 37658 -NCIT:C134289 Stage IVB Colon Cancer AJCC v8 10 37659 -NCIT:C134290 Stage IVC Colon Cancer AJCC v8 10 37660 -NCIT:C153351 Refractory Colon Carcinoma 8 37661 -NCIT:C162155 Refractory Colon Adenocarcinoma 9 37662 -NCIT:C156097 Metastatic Colon Carcinoma 8 37663 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 37664 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 37665 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 37666 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 37667 -NCIT:C167238 Advanced Colon Carcinoma 9 37668 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 37669 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 37670 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 37671 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 37672 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 37673 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 37674 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 37675 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 9 37676 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 9 37677 -NCIT:C164228 Hereditary Colon Carcinoma 8 37678 -NCIT:C167237 Resectable Colon Carcinoma 8 37679 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 8 37680 -NCIT:C177680 Sigmoid Colon Carcinoma 8 37681 -NCIT:C177777 Microsatellite Stable Colon Carcinoma 8 37682 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 37683 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 37684 -NCIT:C180406 Unresectable Colon Carcinoma 8 37685 -NCIT:C162116 Unresectable Colon Adenocarcinoma 9 37686 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 37687 -NCIT:C3491 Cecum Carcinoma 8 37688 -NCIT:C4594 Cecum Carcinoma In Situ 9 37689 -NCIT:C5543 Cecum Adenocarcinoma 9 37690 -NCIT:C3998 Recurrent Colon Carcinoma 8 37691 -NCIT:C162442 Recurrent Colon Adenocarcinoma 9 37692 -NCIT:C4349 Colon Adenocarcinoma 8 37693 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 37694 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 37695 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 37696 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 37697 -NCIT:C162116 Unresectable Colon Adenocarcinoma 9 37698 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 37699 -NCIT:C162155 Refractory Colon Adenocarcinoma 9 37700 -NCIT:C162442 Recurrent Colon Adenocarcinoma 9 37701 -NCIT:C38760 Submucosal Invasive Colon Adenocarcinoma 9 37702 -NCIT:C45429 Colon Intramucosal Adenocarcinoma 9 37703 -NCIT:C27413 Adenoma of the Colon with Intramucosal Adenocarcinoma 10 37704 -NCIT:C5543 Cecum Adenocarcinoma 9 37705 -NCIT:C60641 Colon Medullary Carcinoma 9 37706 -NCIT:C7966 Colon Mucinous Adenocarcinoma 9 37707 -NCIT:C7967 Colon Signet Ring Cell Adenocarcinoma 9 37708 -NCIT:C9452 Grade 1 Colon Adenocarcinoma 9 37709 -NCIT:C9453 Grade 2 Colon Adenocarcinoma 9 37710 -NCIT:C9454 Grade 3 Colon Adenocarcinoma 9 37711 -NCIT:C96486 Colon Serrated Adenocarcinoma 9 37712 -NCIT:C96489 Colon Cribriform Comedo-Type Adenocarcinoma 9 37713 -NCIT:C96492 Colon Micropapillary Adenocarcinoma 9 37714 -NCIT:C5490 Colon Squamous Cell Carcinoma 8 37715 -NCIT:C5491 Colon Adenosquamous Carcinoma 8 37716 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 8 37717 -NCIT:C7100 Colon Undifferentiated Carcinoma 8 37718 -NCIT:C90507 Colon Cancer by AJCC v6 Stage 8 37719 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 9 37720 -NCIT:C4594 Cecum Carcinoma In Situ 10 37721 -NCIT:C3993 Stage II Colon Cancer AJCC v6 9 37722 -NCIT:C3994 Stage IV Colon Cancer AJCC v6 9 37723 -NCIT:C7766 Stage III Colon Cancer AJCC v6 9 37724 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 9 37725 -NCIT:C91224 Colon Cancer by AJCC v7 Stage 8 37726 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 9 37727 -NCIT:C4594 Cecum Carcinoma In Situ 10 37728 -NCIT:C89990 Stage II Colon Cancer AJCC v7 9 37729 -NCIT:C115041 Stage IIA Colon Cancer AJCC v7 10 37730 -NCIT:C115042 Stage IIB Colon Cancer AJCC v7 10 37731 -NCIT:C115043 Stage IIC Colon Cancer AJCC v7 10 37732 -NCIT:C89995 Stage III Colon Cancer AJCC v7 9 37733 -NCIT:C115047 Stage IIIA Colon Cancer AJCC v7 10 37734 -NCIT:C115048 Stage IIIB Colon Cancer AJCC v7 10 37735 -NCIT:C115049 Stage IIIC Colon Cancer AJCC v7 10 37736 -NCIT:C89999 Stage IV Colon Cancer AJCC v7 9 37737 -NCIT:C115053 Stage IVA Colon Cancer AJCC v7 10 37738 -NCIT:C115054 Stage IVB Colon Cancer AJCC v7 10 37739 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 9 37740 -NCIT:C5495 Colon Sarcoma 7 37741 -NCIT:C156279 Colon Liposarcoma 8 37742 -NCIT:C5494 Colon Leiomyosarcoma 8 37743 -NCIT:C5516 Colon Kaposi Sarcoma 8 37744 -NCIT:C8411 Metastatic Malignant Neoplasm in the Colon 7 37745 -NCIT:C9329 Malignant Cecum Neoplasm 7 37746 -NCIT:C3491 Cecum Carcinoma 8 37747 -NCIT:C4594 Cecum Carcinoma In Situ 9 37748 -NCIT:C5543 Cecum Adenocarcinoma 9 37749 -NCIT:C5515 Cecum Lymphoma 8 37750 -NCIT:C5521 Cecum Non-Hodgkin Lymphoma 9 37751 -NCIT:C96498 Colorectal Lymphoma 6 37752 -NCIT:C4793 Colon Lymphoma 7 37753 -NCIT:C4950 Colon Non-Hodgkin Lymphoma 8 37754 -NCIT:C27411 Colon Mantle Cell Lymphoma 9 37755 -NCIT:C27465 Colon Burkitt Lymphoma 9 37756 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 9 37757 -NCIT:C5521 Cecum Non-Hodgkin Lymphoma 9 37758 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 9 37759 -NCIT:C5499 Colon Hodgkin Lymphoma 8 37760 -NCIT:C5515 Cecum Lymphoma 8 37761 -NCIT:C5521 Cecum Non-Hodgkin Lymphoma 9 37762 -NCIT:C5553 Rectal Lymphoma 7 37763 -NCIT:C96499 Colorectal Non-Hodgkin Lymphoma 7 37764 -NCIT:C4950 Colon Non-Hodgkin Lymphoma 8 37765 -NCIT:C27411 Colon Mantle Cell Lymphoma 9 37766 -NCIT:C27465 Colon Burkitt Lymphoma 9 37767 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 9 37768 -NCIT:C5521 Cecum Non-Hodgkin Lymphoma 9 37769 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 9 37770 -NCIT:C96502 Colorectal Burkitt Lymphoma 8 37771 -NCIT:C27465 Colon Burkitt Lymphoma 9 37772 -NCIT:C96503 Colorectal Diffuse Large B-Cell Lymphoma 8 37773 -NCIT:C96501 Colorectal High Grade B-Cell Lymphoma, Not Otherwise Specified 9 37774 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 9 37775 -NCIT:C96505 Colorectal Mantle Cell Lymphoma 8 37776 -NCIT:C27411 Colon Mantle Cell Lymphoma 9 37777 -NCIT:C96506 Colorectal Mucosa-Associated Lymphoid Tissue Lymphoma 8 37778 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 9 37779 -NCIT:C96500 Colorectal Hodgkin Lymphoma 7 37780 -NCIT:C5499 Colon Hodgkin Lymphoma 8 37781 -NCIT:C96508 Colorectal Sarcoma 6 37782 -NCIT:C5495 Colon Sarcoma 7 37783 -NCIT:C156279 Colon Liposarcoma 8 37784 -NCIT:C5494 Colon Leiomyosarcoma 8 37785 -NCIT:C5516 Colon Kaposi Sarcoma 8 37786 -NCIT:C5548 Rectal Sarcoma 7 37787 -NCIT:C5549 Rectal Leiomyosarcoma 8 37788 -NCIT:C5550 Rectal Kaposi Sarcoma 8 37789 -NCIT:C5627 Rectal Rhabdomyosarcoma 8 37790 -NCIT:C96509 Colorectal Leiomyosarcoma 7 37791 -NCIT:C5494 Colon Leiomyosarcoma 8 37792 -NCIT:C5549 Rectal Leiomyosarcoma 8 37793 -NCIT:C96510 Colorectal Kaposi Sarcoma 7 37794 -NCIT:C5516 Colon Kaposi Sarcoma 8 37795 -NCIT:C5550 Rectal Kaposi Sarcoma 8 37796 -NCIT:C96511 Colorectal Angiosarcoma 7 37797 -NCIT:C96152 Colorectal Neuroendocrine Neoplasm 5 37798 -NCIT:C5697 Colon Neuroendocrine Neoplasm 6 37799 -NCIT:C135212 Colon Neuroendocrine Tumor 7 37800 -NCIT:C135214 Colon Neuroendocrine Tumor by AJCC v8 Stage 8 37801 -NCIT:C135368 Stage I Colon Neuroendocrine Tumor AJCC v8 9 37802 -NCIT:C135369 Stage IIA Colon Neuroendocrine Tumor AJCC v8 9 37803 -NCIT:C135370 Stage IIB Colon Neuroendocrine Tumor AJCC v8 9 37804 -NCIT:C135524 Stage IIIA Colon Neuroendocrine Tumor AJCC v8 9 37805 -NCIT:C135525 Stage IIIB Colon Neuroendocrine Tumor AJCC v8 9 37806 -NCIT:C135526 Stage IV Colon Neuroendocrine Tumor AJCC v8 9 37807 -NCIT:C160443 Colon Neuroendocrine Tumor G2 8 37808 -NCIT:C172702 Colon Neuroendocrine Tumor G3 8 37809 -NCIT:C27446 Colon Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 8 37810 -NCIT:C27447 Colon L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 8 37811 -NCIT:C5497 Colon Neuroendocrine Tumor G1 8 37812 -NCIT:C188043 Sigmoid Colon Neuroendocrine Tumor G1 9 37813 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 9 37814 -NCIT:C6426 Transverse Colon Neuroendocrine Tumor G1 9 37815 -NCIT:C6427 Ascending Colon Neuroendocrine Tumor G1 9 37816 -NCIT:C6428 Descending Colon Neuroendocrine Tumor G1 9 37817 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 7 37818 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 7 37819 -NCIT:C5698 Rectal Neuroendocrine Neoplasm 6 37820 -NCIT:C135213 Rectal Neuroendocrine Tumor 7 37821 -NCIT:C135527 Rectal Neuroendocrine Tumor by AJCC v8 Stage 8 37822 -NCIT:C135528 Stage I Rectal Neuroendocrine Tumor AJCC v8 9 37823 -NCIT:C135529 Stage IIA Rectal Neuroendocrine Tumor AJCC v8 9 37824 -NCIT:C135530 Stage IIB Rectal Neuroendocrine Tumor AJCC v8 9 37825 -NCIT:C135531 Stage IIIA Rectal Neuroendocrine Tumor AJCC v8 9 37826 -NCIT:C135532 Stage IIIB Rectal Neuroendocrine Tumor AJCC v8 9 37827 -NCIT:C135533 Stage IV Rectal Neuroendocrine Tumor AJCC v8 9 37828 -NCIT:C160451 Rectal Neuroendocrine Tumor G2 8 37829 -NCIT:C172703 Rectal Neuroendocrine Tumor G3 8 37830 -NCIT:C5547 Rectal Neuroendocrine Tumor G1 8 37831 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 7 37832 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 7 37833 -NCIT:C96156 Colorectal Neuroendocrine Carcinoma 6 37834 -NCIT:C43587 Colorectal Small Cell Neuroendocrine Carcinoma 7 37835 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 8 37836 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 8 37837 -NCIT:C96157 Colorectal Large Cell Neuroendocrine Carcinoma 7 37838 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 8 37839 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 8 37840 -NCIT:C96159 Colorectal Neuroendocrine Tumor 6 37841 -NCIT:C135205 Colorectal Neuroendocrine Tumor by AJCC v8 Stage 7 37842 -NCIT:C135206 Stage I Colorectal Neuroendocrine Tumor AJCC v8 8 37843 -NCIT:C135368 Stage I Colon Neuroendocrine Tumor AJCC v8 9 37844 -NCIT:C135528 Stage I Rectal Neuroendocrine Tumor AJCC v8 9 37845 -NCIT:C135207 Stage IIA Colorectal Neuroendocrine Tumor AJCC v8 8 37846 -NCIT:C135369 Stage IIA Colon Neuroendocrine Tumor AJCC v8 9 37847 -NCIT:C135529 Stage IIA Rectal Neuroendocrine Tumor AJCC v8 9 37848 -NCIT:C135208 Stage IIB Colorectal Neuroendocrine Tumor AJCC v8 8 37849 -NCIT:C135370 Stage IIB Colon Neuroendocrine Tumor AJCC v8 9 37850 -NCIT:C135530 Stage IIB Rectal Neuroendocrine Tumor AJCC v8 9 37851 -NCIT:C135209 Stage IIIA Colorectal Neuroendocrine Tumor AJCC v8 8 37852 -NCIT:C135524 Stage IIIA Colon Neuroendocrine Tumor AJCC v8 9 37853 -NCIT:C135531 Stage IIIA Rectal Neuroendocrine Tumor AJCC v8 9 37854 -NCIT:C135210 Stage IIIB Colorectal Neuroendocrine Tumor AJCC v8 8 37855 -NCIT:C135525 Stage IIIB Colon Neuroendocrine Tumor AJCC v8 9 37856 -NCIT:C135532 Stage IIIB Rectal Neuroendocrine Tumor AJCC v8 9 37857 -NCIT:C135211 Stage IV Colorectal Neuroendocrine Tumor AJCC v8 8 37858 -NCIT:C135526 Stage IV Colon Neuroendocrine Tumor AJCC v8 9 37859 -NCIT:C135533 Stage IV Rectal Neuroendocrine Tumor AJCC v8 9 37860 -NCIT:C135214 Colon Neuroendocrine Tumor by AJCC v8 Stage 8 37861 -NCIT:C135368 Stage I Colon Neuroendocrine Tumor AJCC v8 9 37862 -NCIT:C135369 Stage IIA Colon Neuroendocrine Tumor AJCC v8 9 37863 -NCIT:C135370 Stage IIB Colon Neuroendocrine Tumor AJCC v8 9 37864 -NCIT:C135524 Stage IIIA Colon Neuroendocrine Tumor AJCC v8 9 37865 -NCIT:C135525 Stage IIIB Colon Neuroendocrine Tumor AJCC v8 9 37866 -NCIT:C135526 Stage IV Colon Neuroendocrine Tumor AJCC v8 9 37867 -NCIT:C135527 Rectal Neuroendocrine Tumor by AJCC v8 Stage 8 37868 -NCIT:C135528 Stage I Rectal Neuroendocrine Tumor AJCC v8 9 37869 -NCIT:C135529 Stage IIA Rectal Neuroendocrine Tumor AJCC v8 9 37870 -NCIT:C135530 Stage IIB Rectal Neuroendocrine Tumor AJCC v8 9 37871 -NCIT:C135531 Stage IIIA Rectal Neuroendocrine Tumor AJCC v8 9 37872 -NCIT:C135532 Stage IIIB Rectal Neuroendocrine Tumor AJCC v8 9 37873 -NCIT:C135533 Stage IV Rectal Neuroendocrine Tumor AJCC v8 9 37874 -NCIT:C135212 Colon Neuroendocrine Tumor 7 37875 -NCIT:C135214 Colon Neuroendocrine Tumor by AJCC v8 Stage 8 37876 -NCIT:C135368 Stage I Colon Neuroendocrine Tumor AJCC v8 9 37877 -NCIT:C135369 Stage IIA Colon Neuroendocrine Tumor AJCC v8 9 37878 -NCIT:C135370 Stage IIB Colon Neuroendocrine Tumor AJCC v8 9 37879 -NCIT:C135524 Stage IIIA Colon Neuroendocrine Tumor AJCC v8 9 37880 -NCIT:C135525 Stage IIIB Colon Neuroendocrine Tumor AJCC v8 9 37881 -NCIT:C135526 Stage IV Colon Neuroendocrine Tumor AJCC v8 9 37882 -NCIT:C160443 Colon Neuroendocrine Tumor G2 8 37883 -NCIT:C172702 Colon Neuroendocrine Tumor G3 8 37884 -NCIT:C27446 Colon Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 8 37885 -NCIT:C27447 Colon L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 8 37886 -NCIT:C5497 Colon Neuroendocrine Tumor G1 8 37887 -NCIT:C188043 Sigmoid Colon Neuroendocrine Tumor G1 9 37888 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 9 37889 -NCIT:C6426 Transverse Colon Neuroendocrine Tumor G1 9 37890 -NCIT:C6427 Ascending Colon Neuroendocrine Tumor G1 9 37891 -NCIT:C6428 Descending Colon Neuroendocrine Tumor G1 9 37892 -NCIT:C135213 Rectal Neuroendocrine Tumor 7 37893 -NCIT:C135527 Rectal Neuroendocrine Tumor by AJCC v8 Stage 8 37894 -NCIT:C135528 Stage I Rectal Neuroendocrine Tumor AJCC v8 9 37895 -NCIT:C135529 Stage IIA Rectal Neuroendocrine Tumor AJCC v8 9 37896 -NCIT:C135530 Stage IIB Rectal Neuroendocrine Tumor AJCC v8 9 37897 -NCIT:C135531 Stage IIIA Rectal Neuroendocrine Tumor AJCC v8 9 37898 -NCIT:C135532 Stage IIIB Rectal Neuroendocrine Tumor AJCC v8 9 37899 -NCIT:C135533 Stage IV Rectal Neuroendocrine Tumor AJCC v8 9 37900 -NCIT:C160451 Rectal Neuroendocrine Tumor G2 8 37901 -NCIT:C172703 Rectal Neuroendocrine Tumor G3 8 37902 -NCIT:C5547 Rectal Neuroendocrine Tumor G1 8 37903 -NCIT:C172701 Colorectal Neuroendocrine Tumor G3 7 37904 -NCIT:C172702 Colon Neuroendocrine Tumor G3 8 37905 -NCIT:C172703 Rectal Neuroendocrine Tumor G3 8 37906 -NCIT:C96160 Colorectal Neuroendocrine Tumor G1 7 37907 -NCIT:C5497 Colon Neuroendocrine Tumor G1 8 37908 -NCIT:C188043 Sigmoid Colon Neuroendocrine Tumor G1 9 37909 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 9 37910 -NCIT:C6426 Transverse Colon Neuroendocrine Tumor G1 9 37911 -NCIT:C6427 Ascending Colon Neuroendocrine Tumor G1 9 37912 -NCIT:C6428 Descending Colon Neuroendocrine Tumor G1 9 37913 -NCIT:C5547 Rectal Neuroendocrine Tumor G1 8 37914 -NCIT:C96161 Colorectal L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 7 37915 -NCIT:C27447 Colon L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 8 37916 -NCIT:C96162 Colorectal Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 7 37917 -NCIT:C27446 Colon Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 8 37918 -NCIT:C96163 Colorectal Neuroendocrine Tumor G2 7 37919 -NCIT:C160443 Colon Neuroendocrine Tumor G2 8 37920 -NCIT:C160451 Rectal Neuroendocrine Tumor G2 8 37921 -NCIT:C4432 Small Intestinal Neoplasm 4 37922 -NCIT:C27462 Small Intestinal Intraepithelial Neoplasia 5 37923 -NCIT:C27463 Small Intestinal Low Grade Intraepithelial Neoplasia 6 37924 -NCIT:C27464 Small Intestinal High Grade Intraepithelial Neoplasia 6 37925 -NCIT:C2995 Duodenal Neoplasm 5 37926 -NCIT:C135080 Duodenal Neuroendocrine Tumor 6 37927 -NCIT:C135075 Duodenal Neuroendocrine Tumor by AJCC v8 Stage 7 37928 -NCIT:C135076 Stage I Duodenal Neuroendocrine Tumor AJCC v8 8 37929 -NCIT:C135077 Stage II Duodenal Neuroendocrine Tumor AJCC v8 8 37930 -NCIT:C135078 Stage III Duodenal Neuroendocrine Tumor AJCC v8 8 37931 -NCIT:C135079 Stage IV Duodenal Neuroendocrine Tumor AJCC v8 8 37932 -NCIT:C160442 Duodenal Neuroendocrine Tumor G2 7 37933 -NCIT:C172672 Duodenal Neuroendocrine Tumor G3 7 37934 -NCIT:C27407 Duodenal Somatostatin-Producing Neuroendocrine Tumor 7 37935 -NCIT:C5731 Duodenal Gastrin-Producing Neuroendocrine Tumor 7 37936 -NCIT:C6425 Duodenal Neuroendocrine Tumor G1 7 37937 -NCIT:C4775 Benign Duodenal Neoplasm 6 37938 -NCIT:C170725 Benign Periampullary Neoplasm 7 37939 -NCIT:C4932 Duodenal Adenoma 7 37940 -NCIT:C5338 Duodenal Villous Adenoma 8 37941 -NCIT:C9328 Malignant Duodenal Neoplasm 6 37942 -NCIT:C4803 Duodenal Carcinoma 7 37943 -NCIT:C27323 Resectable Duodenal Carcinoma 8 37944 -NCIT:C169108 Resectable Periampullary Adenocarcinoma 9 37945 -NCIT:C7889 Duodenal Adenocarcinoma 8 37946 -NCIT:C27322 Periampullary Adenocarcinoma 9 37947 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 10 37948 -NCIT:C169108 Resectable Periampullary Adenocarcinoma 10 37949 -NCIT:C9352 Recurrent Duodenal Carcinoma 8 37950 -NCIT:C82972 Duodenal Extraskeletal Osteosarcoma 7 37951 -NCIT:C9263 Recurrent Malignant Duodenal Neoplasm 7 37952 -NCIT:C9352 Recurrent Duodenal Carcinoma 8 37953 -NCIT:C3130 Ileal Neoplasm 5 37954 -NCIT:C135092 Ileal Neuroendocrine Tumor 6 37955 -NCIT:C135124 Ileal Neuroendocrine Tumor by AJCC v8 Stage 7 37956 -NCIT:C135125 Stage I Ileal Neuroendocrine Tumor AJCC v8 8 37957 -NCIT:C135126 Stage II Ileal Neuroendocrine Tumor AJCC v8 8 37958 -NCIT:C135127 Stage III Ileal Neuroendocrine Tumor AJCC v8 8 37959 -NCIT:C135128 Stage IV Ileal Neuroendocrine Tumor AJCC v8 8 37960 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 7 37961 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 7 37962 -NCIT:C4935 Ileal Neuroendocrine Tumor G1 7 37963 -NCIT:C3600 Benign Small Intestinal Neoplasm 5 37964 -NCIT:C4775 Benign Duodenal Neoplasm 6 37965 -NCIT:C170725 Benign Periampullary Neoplasm 7 37966 -NCIT:C4932 Duodenal Adenoma 7 37967 -NCIT:C5338 Duodenal Villous Adenoma 8 37968 -NCIT:C5339 Small Intestinal Lipoma 6 37969 -NCIT:C5340 Small Intestinal Adenoma 6 37970 -NCIT:C43551 Small Intestinal Villous Adenoma 7 37971 -NCIT:C5338 Duodenal Villous Adenoma 8 37972 -NCIT:C43552 Small Intestinal Tubular Adenoma 7 37973 -NCIT:C43553 Small Intestinal Tubulovillous Adenoma 7 37974 -NCIT:C4932 Duodenal Adenoma 7 37975 -NCIT:C5338 Duodenal Villous Adenoma 8 37976 -NCIT:C7725 Small Intestinal Leiomyoma 6 37977 -NCIT:C5803 Small Intestinal Neuroendocrine Neoplasm 5 37978 -NCIT:C96061 Small Intestinal Neuroendocrine Tumor 6 37979 -NCIT:C135080 Duodenal Neuroendocrine Tumor 7 37980 -NCIT:C135075 Duodenal Neuroendocrine Tumor by AJCC v8 Stage 8 37981 -NCIT:C135076 Stage I Duodenal Neuroendocrine Tumor AJCC v8 9 37982 -NCIT:C135077 Stage II Duodenal Neuroendocrine Tumor AJCC v8 9 37983 -NCIT:C135078 Stage III Duodenal Neuroendocrine Tumor AJCC v8 9 37984 -NCIT:C135079 Stage IV Duodenal Neuroendocrine Tumor AJCC v8 9 37985 -NCIT:C160442 Duodenal Neuroendocrine Tumor G2 8 37986 -NCIT:C172672 Duodenal Neuroendocrine Tumor G3 8 37987 -NCIT:C27407 Duodenal Somatostatin-Producing Neuroendocrine Tumor 8 37988 -NCIT:C5731 Duodenal Gastrin-Producing Neuroendocrine Tumor 8 37989 -NCIT:C6425 Duodenal Neuroendocrine Tumor G1 8 37990 -NCIT:C135090 Jejunal Neuroendocrine Tumor 7 37991 -NCIT:C135119 Jejunal Neuroendocrine Tumor by AJCC v8 Stage 8 37992 -NCIT:C135120 Stage I Jejunal Neuroendocrine Tumor AJCC v8 9 37993 -NCIT:C135121 Stage II Jejunal Neuroendocrine Tumor AJCC v8 9 37994 -NCIT:C135122 Stage III Jejunal Neuroendocrine Tumor AJCC v8 9 37995 -NCIT:C135123 Stage IV Jejunal Neuroendocrine Tumor AJCC v8 9 37996 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 8 37997 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 8 37998 -NCIT:C5787 Jejunal Somatostatin-Producing Neuroendocrine Tumor 8 37999 -NCIT:C6429 Jejunal Neuroendocrine Tumor G1 8 38000 -NCIT:C135092 Ileal Neuroendocrine Tumor 7 38001 -NCIT:C135124 Ileal Neuroendocrine Tumor by AJCC v8 Stage 8 38002 -NCIT:C135125 Stage I Ileal Neuroendocrine Tumor AJCC v8 9 38003 -NCIT:C135126 Stage II Ileal Neuroendocrine Tumor AJCC v8 9 38004 -NCIT:C135127 Stage III Ileal Neuroendocrine Tumor AJCC v8 9 38005 -NCIT:C135128 Stage IV Ileal Neuroendocrine Tumor AJCC v8 9 38006 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 8 38007 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 8 38008 -NCIT:C4935 Ileal Neuroendocrine Tumor G1 8 38009 -NCIT:C172664 Small Intestinal Neuroendocrine Tumor G3 7 38010 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 8 38011 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 8 38012 -NCIT:C172672 Duodenal Neuroendocrine Tumor G3 8 38013 -NCIT:C27450 Small Intestinal Gastrin-Producing Neuroendocrine Tumor 7 38014 -NCIT:C5731 Duodenal Gastrin-Producing Neuroendocrine Tumor 8 38015 -NCIT:C27451 Small Intestinal Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 7 38016 -NCIT:C27452 Small Intestinal L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 7 38017 -NCIT:C27453 Small Intestinal Somatostatin-Producing Neuroendocrine Tumor 7 38018 -NCIT:C27407 Duodenal Somatostatin-Producing Neuroendocrine Tumor 8 38019 -NCIT:C5787 Jejunal Somatostatin-Producing Neuroendocrine Tumor 8 38020 -NCIT:C27455 Small Intestinal VIP-Producing Neuroendocrine Tumor 7 38021 -NCIT:C4638 Small Intestinal Neuroendocrine Tumor G1 7 38022 -NCIT:C4935 Ileal Neuroendocrine Tumor G1 8 38023 -NCIT:C6425 Duodenal Neuroendocrine Tumor G1 8 38024 -NCIT:C6429 Jejunal Neuroendocrine Tumor G1 8 38025 -NCIT:C96067 Small Intestinal Neuroendocrine Tumor G2 7 38026 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 8 38027 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 8 38028 -NCIT:C160442 Duodenal Neuroendocrine Tumor G2 8 38029 -NCIT:C96073 Small Intestinal Composite Gangliocytoma/Neuroma and Neuroendocrine Tumor 7 38030 -NCIT:C96064 Small Intestinal Neuroendocrine Carcinoma 6 38031 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 7 38032 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 38033 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 38034 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 38035 -NCIT:C27449 Small Intestinal Small Cell Neuroendocrine Carcinoma 7 38036 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 38037 -NCIT:C96065 Small Intestinal Large Cell Neuroendocrine Carcinoma 7 38038 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 38039 -NCIT:C5811 Small Intestinal Gastrointestinal Stromal Tumor 5 38040 -NCIT:C87831 Stage I Small Intestinal Gastrointestinal Stromal Tumor 6 38041 -NCIT:C87832 Stage II Small Intestinal Gastrointestinal Stromal Tumor 6 38042 -NCIT:C87833 Stage IIIA Small Intestinal Gastrointestinal Stromal Tumor 6 38043 -NCIT:C87834 Stage IIIB Small Intestinal Gastrointestinal Stromal Tumor 6 38044 -NCIT:C87835 Stage IV Small Intestinal Gastrointestinal Stromal Tumor 6 38045 -NCIT:C7523 Malignant Small Intestinal Neoplasm 5 38046 -NCIT:C118826 Childhood Malignant Small Intestinal Neoplasm 6 38047 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 7 38048 -NCIT:C123933 Childhood Small Intestinal Carcinoma 7 38049 -NCIT:C132260 Small Intestinal Myeloid Sarcoma 6 38050 -NCIT:C170919 Malignant Jejunal Neoplasm 6 38051 -NCIT:C181157 Jejunal Carcinoma 7 38052 -NCIT:C181158 Jejunal Adenocarcinoma 8 38053 -NCIT:C188067 Jejunal Melanoma 7 38054 -NCIT:C176678 Metastatic Malignant Small Intestinal Neoplasm 6 38055 -NCIT:C176679 Advanced Malignant Small Intestinal Neoplasm 7 38056 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 38057 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 38058 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 38059 -NCIT:C8637 Metastatic Small Intestinal Carcinoma 7 38060 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 8 38061 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 38062 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 38063 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 38064 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 38065 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 38066 -NCIT:C8934 Metastatic Small Intestinal Adenocarcinoma 8 38067 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 38068 -NCIT:C4007 Small Intestinal Lymphoma 6 38069 -NCIT:C5337 Small Intestinal Hodgkin Lymphoma 7 38070 -NCIT:C7231 Small Intestinal Non-Hodgkin Lymphoma 7 38071 -NCIT:C96053 Small Intestinal B-Cell Non-Hodgkin Lymphoma 8 38072 -NCIT:C27409 Small Intestinal Burkitt Lymphoma 9 38073 -NCIT:C27410 Small Intestinal Atypical Burkitt/Burkitt-Like Lymphoma 10 38074 -NCIT:C27441 Small Intestinal Mantle Cell Lymphoma 9 38075 -NCIT:C3132 Alpha Heavy Chain Disease 9 38076 -NCIT:C5635 Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 9 38077 -NCIT:C45166 Campylobacter Jejuni-Associated Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 10 38078 -NCIT:C96055 Small Intestinal Diffuse Large B-Cell Lymphoma 9 38079 -NCIT:C96057 Small Intestinal High Grade B-Cell Lymphoma, Not Otherwise Specified 10 38080 -NCIT:C96056 Small Intestinal Follicular Lymphoma 9 38081 -NCIT:C96054 Small Intestinal T-Cell Non-Hodgkin Lymphoma 8 38082 -NCIT:C150504 Small Intestinal Monomorphic Epitheliotropic T-Cell Lymphoma 9 38083 -NCIT:C39610 Small Intestinal Enteropathy-Associated T-Cell Lymphoma 9 38084 -NCIT:C5335 Small Intestinal Sarcoma 6 38085 -NCIT:C5336 Small Intestinal Fibrosarcoma 7 38086 -NCIT:C7085 Small Intestinal Leiomyosarcoma 7 38087 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 8 38088 -NCIT:C82972 Duodenal Extraskeletal Osteosarcoma 7 38089 -NCIT:C96059 Small Intestinal Kaposi Sarcoma 7 38090 -NCIT:C96060 Small Intestinal Angiosarcoma 7 38091 -NCIT:C7524 Metastatic Malignant Neoplasm in the Small Intestine 6 38092 -NCIT:C7724 Small Intestinal Carcinoma 6 38093 -NCIT:C123933 Childhood Small Intestinal Carcinoma 7 38094 -NCIT:C133716 Small Intestinal Cancer by AJCC v7 Stage 7 38095 -NCIT:C4892 Stage 0 Small Intestinal Cancer AJCC v7 8 38096 -NCIT:C5807 Stage I Small Intestinal Cancer AJCC v7 8 38097 -NCIT:C5808 Stage II Small Intestinal Cancer AJCC v7 8 38098 -NCIT:C87791 Stage IIA Small Intestinal Cancer AJCC v7 9 38099 -NCIT:C87792 Stage IIB Small Intestinal Cancer AJCC v7 9 38100 -NCIT:C5809 Stage III Small Intestinal Cancer AJCC v7 8 38101 -NCIT:C87793 Stage IIIA Small Intestinal Cancer AJCC v7 9 38102 -NCIT:C87795 Stage IIIB Small Intestinal Cancer AJCC v7 9 38103 -NCIT:C5810 Stage IV Small Intestinal Cancer AJCC v7 8 38104 -NCIT:C153356 Refractory Small Intestinal Carcinoma 7 38105 -NCIT:C181157 Jejunal Carcinoma 7 38106 -NCIT:C181158 Jejunal Adenocarcinoma 8 38107 -NCIT:C43534 Small Intestinal Squamous Cell Carcinoma 7 38108 -NCIT:C43535 Small Intestinal Adenosquamous Carcinoma 7 38109 -NCIT:C43537 Small Intestinal Medullary Carcinoma 7 38110 -NCIT:C43538 Small Intestinal Undifferentiated Carcinoma 7 38111 -NCIT:C4803 Duodenal Carcinoma 7 38112 -NCIT:C27323 Resectable Duodenal Carcinoma 8 38113 -NCIT:C169108 Resectable Periampullary Adenocarcinoma 9 38114 -NCIT:C7889 Duodenal Adenocarcinoma 8 38115 -NCIT:C27322 Periampullary Adenocarcinoma 9 38116 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 10 38117 -NCIT:C169108 Resectable Periampullary Adenocarcinoma 10 38118 -NCIT:C9352 Recurrent Duodenal Carcinoma 8 38119 -NCIT:C7888 Small Intestinal Adenocarcinoma 7 38120 -NCIT:C133893 Small Intestinal Adenocarcinoma by AJCC v8 Stage 8 38121 -NCIT:C133894 Stage 0 Small Intestinal Adenocarcinoma AJCC v8 9 38122 -NCIT:C133895 Stage I Small Intestinal Adenocarcinoma AJCC v8 9 38123 -NCIT:C133896 Stage II Small Intestinal Adenocarcinoma AJCC v8 9 38124 -NCIT:C133897 Stage IIA Small Intestinal Adenocarcinoma AJCC v8 10 38125 -NCIT:C133898 Stage IIB Small Intestinal Adenocarcinoma AJCC v8 10 38126 -NCIT:C133899 Stage III Small Intestinal Adenocarcinoma AJCC v8 9 38127 -NCIT:C133900 Stage IIIA Small Intestinal Adenocarcinoma AJCC v8 10 38128 -NCIT:C133901 Stage IIIB Small Intestinal Adenocarcinoma AJCC v8 10 38129 -NCIT:C133902 Stage IV Small Intestinal Adenocarcinoma AJCC v8 9 38130 -NCIT:C175516 Unresectable Small Intestinal Adenocarcinoma 8 38131 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 9 38132 -NCIT:C181158 Jejunal Adenocarcinoma 8 38133 -NCIT:C43536 Small Intestinal Mucinous Adenocarcinoma 8 38134 -NCIT:C43543 Small Intestinal Signet Ring Cell Carcinoma 8 38135 -NCIT:C7889 Duodenal Adenocarcinoma 8 38136 -NCIT:C27322 Periampullary Adenocarcinoma 9 38137 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 10 38138 -NCIT:C169108 Resectable Periampullary Adenocarcinoma 10 38139 -NCIT:C8934 Metastatic Small Intestinal Adenocarcinoma 8 38140 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 38141 -NCIT:C7894 Recurrent Small Intestinal Carcinoma 7 38142 -NCIT:C9352 Recurrent Duodenal Carcinoma 8 38143 -NCIT:C8637 Metastatic Small Intestinal Carcinoma 7 38144 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 8 38145 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 38146 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 38147 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 38148 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 38149 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 38150 -NCIT:C8934 Metastatic Small Intestinal Adenocarcinoma 8 38151 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 38152 -NCIT:C8638 Unresectable Small Intestinal Carcinoma 7 38153 -NCIT:C175516 Unresectable Small Intestinal Adenocarcinoma 8 38154 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 9 38155 -NCIT:C8639 Resectable Small Intestinal Carcinoma 7 38156 -NCIT:C27323 Resectable Duodenal Carcinoma 8 38157 -NCIT:C169108 Resectable Periampullary Adenocarcinoma 9 38158 -NCIT:C96064 Small Intestinal Neuroendocrine Carcinoma 7 38159 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 38160 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 38161 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 38162 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 38163 -NCIT:C27449 Small Intestinal Small Cell Neuroendocrine Carcinoma 8 38164 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 38165 -NCIT:C96065 Small Intestinal Large Cell Neuroendocrine Carcinoma 8 38166 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 38167 -NCIT:C96066 Small Intestinal Mixed Adenoneuroendocrine Carcinoma 7 38168 -NCIT:C9328 Malignant Duodenal Neoplasm 6 38169 -NCIT:C4803 Duodenal Carcinoma 7 38170 -NCIT:C27323 Resectable Duodenal Carcinoma 8 38171 -NCIT:C169108 Resectable Periampullary Adenocarcinoma 9 38172 -NCIT:C7889 Duodenal Adenocarcinoma 8 38173 -NCIT:C27322 Periampullary Adenocarcinoma 9 38174 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 10 38175 -NCIT:C169108 Resectable Periampullary Adenocarcinoma 10 38176 -NCIT:C9352 Recurrent Duodenal Carcinoma 8 38177 -NCIT:C82972 Duodenal Extraskeletal Osteosarcoma 7 38178 -NCIT:C9263 Recurrent Malignant Duodenal Neoplasm 7 38179 -NCIT:C9352 Recurrent Duodenal Carcinoma 8 38180 -NCIT:C8401 Jejunal Neoplasm 5 38181 -NCIT:C135090 Jejunal Neuroendocrine Tumor 6 38182 -NCIT:C135119 Jejunal Neuroendocrine Tumor by AJCC v8 Stage 7 38183 -NCIT:C135120 Stage I Jejunal Neuroendocrine Tumor AJCC v8 8 38184 -NCIT:C135121 Stage II Jejunal Neuroendocrine Tumor AJCC v8 8 38185 -NCIT:C135122 Stage III Jejunal Neuroendocrine Tumor AJCC v8 8 38186 -NCIT:C135123 Stage IV Jejunal Neuroendocrine Tumor AJCC v8 8 38187 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 7 38188 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 7 38189 -NCIT:C5787 Jejunal Somatostatin-Producing Neuroendocrine Tumor 7 38190 -NCIT:C6429 Jejunal Neuroendocrine Tumor G1 7 38191 -NCIT:C170919 Malignant Jejunal Neoplasm 6 38192 -NCIT:C181157 Jejunal Carcinoma 7 38193 -NCIT:C181158 Jejunal Adenocarcinoma 8 38194 -NCIT:C188067 Jejunal Melanoma 7 38195 -NCIT:C4572 Malignant Intestinal Neoplasm 4 38196 -NCIT:C150495 Intestinal T-Cell Lymphoma 5 38197 -NCIT:C150505 Intestinal T-Cell Lymphoma, Not Otherwise Specified 6 38198 -NCIT:C4737 Enteropathy-Associated T-Cell Lymphoma 6 38199 -NCIT:C141295 Enteropathy-Associated T-Cell Lymphoma by Ann Arbor Stage 7 38200 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 8 38201 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 8 38202 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 8 38203 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 8 38204 -NCIT:C39610 Small Intestinal Enteropathy-Associated T-Cell Lymphoma 7 38205 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 7 38206 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 7 38207 -NCIT:C96058 Monomorphic Epitheliotropic Intestinal T-Cell Lymphoma 6 38208 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 7 38209 -NCIT:C150504 Small Intestinal Monomorphic Epitheliotropic T-Cell Lymphoma 7 38210 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 7 38211 -NCIT:C4978 Malignant Colorectal Neoplasm 5 38212 -NCIT:C162780 Metastatic Malignant Colorectal Neoplasm 6 38213 -NCIT:C156096 Metastatic Colorectal Carcinoma 7 38214 -NCIT:C142867 Metastatic Microsatellite Stable Colorectal Carcinoma 8 38215 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 38216 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 38217 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 38218 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 38219 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 38220 -NCIT:C153224 Colorectal Carcinoma Metastatic in the Lung 8 38221 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 9 38222 -NCIT:C156097 Metastatic Colon Carcinoma 8 38223 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 38224 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 38225 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 38226 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 38227 -NCIT:C167238 Advanced Colon Carcinoma 9 38228 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 38229 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 38230 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 38231 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 38232 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 38233 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 38234 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 38235 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 9 38236 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 9 38237 -NCIT:C156098 Metastatic Rectal Carcinoma 8 38238 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 9 38239 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 38240 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 38241 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 38242 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 38243 -NCIT:C170777 Advanced Rectal Carcinoma 9 38244 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 38245 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 38246 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 38247 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 38248 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 38249 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 38250 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 9 38251 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 38252 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 38253 -NCIT:C157366 Colorectal Carcinoma Metastatic in the Liver 8 38254 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 9 38255 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 9 38256 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 9 38257 -NCIT:C161048 Metastatic Colorectal Adenocarcinoma 8 38258 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 9 38259 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 38260 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 38261 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 38262 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 38263 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 38264 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 38265 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 38266 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 38267 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 9 38268 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 38269 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 38270 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 38271 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 38272 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 38273 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 38274 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 38275 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 38276 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 38277 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 38278 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 38279 -NCIT:C162475 Advanced Colorectal Carcinoma 8 38280 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 38281 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 38282 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 38283 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 38284 -NCIT:C167238 Advanced Colon Carcinoma 9 38285 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 38286 -NCIT:C170777 Advanced Rectal Carcinoma 9 38287 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 38288 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 38289 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 8 38290 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 38291 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 38292 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 38293 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 38294 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 38295 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 38296 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 38297 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 38298 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 38299 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 38300 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 38301 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 38302 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 38303 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 38304 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 38305 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 38306 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 38307 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 38308 -NCIT:C185165 Oligometastatic Colorectal Carcinoma 8 38309 -NCIT:C2955 Colorectal Carcinoma 6 38310 -NCIT:C118808 Childhood Colorectal Carcinoma 7 38311 -NCIT:C118823 Childhood Rectal Carcinoma 8 38312 -NCIT:C134180 Colorectal Cancer by AJCC v8 Stage 7 38313 -NCIT:C134182 Stage 0 Colorectal Cancer AJCC v8 8 38314 -NCIT:C134271 Stage 0 Colon Cancer AJCC v8 9 38315 -NCIT:C134291 Stage 0 Rectal Cancer AJCC v8 9 38316 -NCIT:C134185 Stage I Colorectal Cancer AJCC v8 8 38317 -NCIT:C134273 Stage I Colon Cancer AJCC v8 9 38318 -NCIT:C134292 Stage I Rectal Cancer AJCC v8 9 38319 -NCIT:C134186 Stage II Colorectal Cancer AJCC v8 8 38320 -NCIT:C134187 Stage IIA Colorectal Cancer AJCC v8 9 38321 -NCIT:C134280 Stage IIA Colon Cancer AJCC v8 10 38322 -NCIT:C134294 Stage IIA Rectal Cancer AJCC v8 10 38323 -NCIT:C134188 Stage IIB Colorectal Cancer AJCC v8 9 38324 -NCIT:C134281 Stage IIB Colon Cancer AJCC v8 10 38325 -NCIT:C134295 Stage IIB Rectal Cancer AJCC v8 10 38326 -NCIT:C134190 Stage IIC Colorectal Cancer AJCC v8 9 38327 -NCIT:C134282 Stage IIC Colon Cancer AJCC v8 10 38328 -NCIT:C134296 Stage IIC Rectal Cancer AJCC v8 10 38329 -NCIT:C134274 Stage II Colon Cancer AJCC v8 9 38330 -NCIT:C134280 Stage IIA Colon Cancer AJCC v8 10 38331 -NCIT:C134281 Stage IIB Colon Cancer AJCC v8 10 38332 -NCIT:C134282 Stage IIC Colon Cancer AJCC v8 10 38333 -NCIT:C134293 Stage II Rectal Cancer AJCC v8 9 38334 -NCIT:C134294 Stage IIA Rectal Cancer AJCC v8 10 38335 -NCIT:C134295 Stage IIB Rectal Cancer AJCC v8 10 38336 -NCIT:C134296 Stage IIC Rectal Cancer AJCC v8 10 38337 -NCIT:C134191 Stage III Colorectal Cancer AJCC v8 8 38338 -NCIT:C134192 Stage IIIA Colorectal Cancer AJCC v8 9 38339 -NCIT:C134284 Stage IIIA Colon Cancer AJCC v8 10 38340 -NCIT:C134298 Stage IIIA Rectal Cancer AJCC v8 10 38341 -NCIT:C134193 Stage IIIB Colorectal Cancer AJCC v8 9 38342 -NCIT:C134285 Stage IIIB Colon Cancer AJCC v8 10 38343 -NCIT:C134299 Stage IIIB Rectal Cancer AJCC v8 10 38344 -NCIT:C134194 Stage IIIC Colorectal Cancer AJCC v8 9 38345 -NCIT:C134286 Stage IIIC Colon Cancer AJCC v8 10 38346 -NCIT:C134300 Stage IIIC Rectal Cancer AJCC v8 10 38347 -NCIT:C134283 Stage III Colon Cancer AJCC v8 9 38348 -NCIT:C134284 Stage IIIA Colon Cancer AJCC v8 10 38349 -NCIT:C134285 Stage IIIB Colon Cancer AJCC v8 10 38350 -NCIT:C134286 Stage IIIC Colon Cancer AJCC v8 10 38351 -NCIT:C134297 Stage III Rectal Cancer AJCC v8 9 38352 -NCIT:C134298 Stage IIIA Rectal Cancer AJCC v8 10 38353 -NCIT:C134299 Stage IIIB Rectal Cancer AJCC v8 10 38354 -NCIT:C134300 Stage IIIC Rectal Cancer AJCC v8 10 38355 -NCIT:C134195 Stage IV Colorectal Cancer AJCC v8 8 38356 -NCIT:C134196 Stage IVA Colorectal Cancer AJCC v8 9 38357 -NCIT:C134288 Stage IVA Colon Cancer AJCC v8 10 38358 -NCIT:C134302 Stage IVA Rectal Cancer AJCC v8 10 38359 -NCIT:C134197 Stage IVB Colorectal Cancer AJCC v8 9 38360 -NCIT:C134289 Stage IVB Colon Cancer AJCC v8 10 38361 -NCIT:C134303 Stage IVB Rectal Cancer AJCC v8 10 38362 -NCIT:C134198 Stage IVC Colorectal Cancer AJCC v8 9 38363 -NCIT:C134290 Stage IVC Colon Cancer AJCC v8 10 38364 -NCIT:C134304 Stage IVC Rectal Cancer AJCC v8 10 38365 -NCIT:C134287 Stage IV Colon Cancer AJCC v8 9 38366 -NCIT:C134288 Stage IVA Colon Cancer AJCC v8 10 38367 -NCIT:C134289 Stage IVB Colon Cancer AJCC v8 10 38368 -NCIT:C134290 Stage IVC Colon Cancer AJCC v8 10 38369 -NCIT:C134301 Stage IV Rectal Cancer AJCC v8 9 38370 -NCIT:C134302 Stage IVA Rectal Cancer AJCC v8 10 38371 -NCIT:C134303 Stage IVB Rectal Cancer AJCC v8 10 38372 -NCIT:C134304 Stage IVC Rectal Cancer AJCC v8 10 38373 -NCIT:C134251 Colon Cancer by AJCC v8 Stage 8 38374 -NCIT:C134271 Stage 0 Colon Cancer AJCC v8 9 38375 -NCIT:C134273 Stage I Colon Cancer AJCC v8 9 38376 -NCIT:C134274 Stage II Colon Cancer AJCC v8 9 38377 -NCIT:C134280 Stage IIA Colon Cancer AJCC v8 10 38378 -NCIT:C134281 Stage IIB Colon Cancer AJCC v8 10 38379 -NCIT:C134282 Stage IIC Colon Cancer AJCC v8 10 38380 -NCIT:C134283 Stage III Colon Cancer AJCC v8 9 38381 -NCIT:C134284 Stage IIIA Colon Cancer AJCC v8 10 38382 -NCIT:C134285 Stage IIIB Colon Cancer AJCC v8 10 38383 -NCIT:C134286 Stage IIIC Colon Cancer AJCC v8 10 38384 -NCIT:C134287 Stage IV Colon Cancer AJCC v8 9 38385 -NCIT:C134288 Stage IVA Colon Cancer AJCC v8 10 38386 -NCIT:C134289 Stage IVB Colon Cancer AJCC v8 10 38387 -NCIT:C134290 Stage IVC Colon Cancer AJCC v8 10 38388 -NCIT:C134258 Rectal Cancer by AJCC v8 Stage 8 38389 -NCIT:C134291 Stage 0 Rectal Cancer AJCC v8 9 38390 -NCIT:C134292 Stage I Rectal Cancer AJCC v8 9 38391 -NCIT:C134293 Stage II Rectal Cancer AJCC v8 9 38392 -NCIT:C134294 Stage IIA Rectal Cancer AJCC v8 10 38393 -NCIT:C134295 Stage IIB Rectal Cancer AJCC v8 10 38394 -NCIT:C134296 Stage IIC Rectal Cancer AJCC v8 10 38395 -NCIT:C134297 Stage III Rectal Cancer AJCC v8 9 38396 -NCIT:C134298 Stage IIIA Rectal Cancer AJCC v8 10 38397 -NCIT:C134299 Stage IIIB Rectal Cancer AJCC v8 10 38398 -NCIT:C134300 Stage IIIC Rectal Cancer AJCC v8 10 38399 -NCIT:C134301 Stage IV Rectal Cancer AJCC v8 9 38400 -NCIT:C134302 Stage IVA Rectal Cancer AJCC v8 10 38401 -NCIT:C134303 Stage IVB Rectal Cancer AJCC v8 10 38402 -NCIT:C134304 Stage IVC Rectal Cancer AJCC v8 10 38403 -NCIT:C147982 Refractory Colorectal Carcinoma 7 38404 -NCIT:C153351 Refractory Colon Carcinoma 8 38405 -NCIT:C162155 Refractory Colon Adenocarcinoma 9 38406 -NCIT:C162154 Refractory Colorectal Adenocarcinoma 8 38407 -NCIT:C162155 Refractory Colon Adenocarcinoma 9 38408 -NCIT:C162157 Refractory Rectal Adenocarcinoma 9 38409 -NCIT:C162156 Refractory Rectal Carcinoma 8 38410 -NCIT:C162157 Refractory Rectal Adenocarcinoma 9 38411 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 9 38412 -NCIT:C173332 Refractory Microsatellite Stable Colorectal Carcinoma 8 38413 -NCIT:C156096 Metastatic Colorectal Carcinoma 7 38414 -NCIT:C142867 Metastatic Microsatellite Stable Colorectal Carcinoma 8 38415 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 38416 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 38417 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 38418 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 38419 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 38420 -NCIT:C153224 Colorectal Carcinoma Metastatic in the Lung 8 38421 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 9 38422 -NCIT:C156097 Metastatic Colon Carcinoma 8 38423 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 38424 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 38425 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 38426 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 38427 -NCIT:C167238 Advanced Colon Carcinoma 9 38428 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 38429 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 38430 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 38431 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 38432 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 38433 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 38434 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 38435 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 9 38436 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 9 38437 -NCIT:C156098 Metastatic Rectal Carcinoma 8 38438 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 9 38439 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 38440 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 38441 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 38442 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 38443 -NCIT:C170777 Advanced Rectal Carcinoma 9 38444 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 38445 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 38446 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 38447 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 38448 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 38449 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 38450 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 9 38451 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 38452 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 38453 -NCIT:C157366 Colorectal Carcinoma Metastatic in the Liver 8 38454 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 9 38455 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 9 38456 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 9 38457 -NCIT:C161048 Metastatic Colorectal Adenocarcinoma 8 38458 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 9 38459 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 38460 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 38461 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 38462 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 38463 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 38464 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 38465 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 38466 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 38467 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 9 38468 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 38469 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 38470 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 38471 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 38472 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 38473 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 38474 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 38475 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 38476 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 38477 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 38478 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 38479 -NCIT:C162475 Advanced Colorectal Carcinoma 8 38480 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 38481 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 38482 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 38483 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 38484 -NCIT:C167238 Advanced Colon Carcinoma 9 38485 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 38486 -NCIT:C170777 Advanced Rectal Carcinoma 9 38487 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 38488 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 38489 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 8 38490 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 38491 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 38492 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 38493 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 38494 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 38495 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 38496 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 38497 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 38498 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 38499 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 38500 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 38501 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 38502 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 38503 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 38504 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 38505 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 38506 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 38507 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 38508 -NCIT:C185165 Oligometastatic Colorectal Carcinoma 8 38509 -NCIT:C162256 Hypermutated Colorectal Carcinoma 7 38510 -NCIT:C162257 Resectable Colorectal Carcinoma 7 38511 -NCIT:C167237 Resectable Colon Carcinoma 8 38512 -NCIT:C162600 Unresectable Colorectal Carcinoma 7 38513 -NCIT:C171585 Unresectable Colorectal Adenocarcinoma 8 38514 -NCIT:C162116 Unresectable Colon Adenocarcinoma 9 38515 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 38516 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 9 38517 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 38518 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 38519 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 38520 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 38521 -NCIT:C180406 Unresectable Colon Carcinoma 8 38522 -NCIT:C162116 Unresectable Colon Adenocarcinoma 9 38523 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 38524 -NCIT:C173324 Microsatellite Stable Colorectal Carcinoma 7 38525 -NCIT:C142867 Metastatic Microsatellite Stable Colorectal Carcinoma 8 38526 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 38527 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 38528 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 38529 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 38530 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 38531 -NCIT:C173332 Refractory Microsatellite Stable Colorectal Carcinoma 8 38532 -NCIT:C177776 Microsatellite Stable Rectal Carcinoma 8 38533 -NCIT:C177777 Microsatellite Stable Colon Carcinoma 8 38534 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 38535 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 38536 -NCIT:C190679 Recurrent Microsatellite Stable Colorectal Carcinoma 8 38537 -NCIT:C43588 Colorectal Squamous Cell Carcinoma 7 38538 -NCIT:C5490 Colon Squamous Cell Carcinoma 8 38539 -NCIT:C5554 Rectal Squamous Cell Carcinoma 8 38540 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 9 38541 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 38542 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 38543 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 9 38544 -NCIT:C5555 Rectal Cloacogenic Carcinoma 9 38545 -NCIT:C43589 Colorectal Adenosquamous Carcinoma 7 38546 -NCIT:C43594 Rectal Adenosquamous Carcinoma 8 38547 -NCIT:C5491 Colon Adenosquamous Carcinoma 8 38548 -NCIT:C43591 Colorectal Undifferentiated Carcinoma 7 38549 -NCIT:C7100 Colon Undifferentiated Carcinoma 8 38550 -NCIT:C7974 Rectal Undifferentiated Carcinoma 8 38551 -NCIT:C4910 Colon Carcinoma 7 38552 -NCIT:C134251 Colon Cancer by AJCC v8 Stage 8 38553 -NCIT:C134271 Stage 0 Colon Cancer AJCC v8 9 38554 -NCIT:C134273 Stage I Colon Cancer AJCC v8 9 38555 -NCIT:C134274 Stage II Colon Cancer AJCC v8 9 38556 -NCIT:C134280 Stage IIA Colon Cancer AJCC v8 10 38557 -NCIT:C134281 Stage IIB Colon Cancer AJCC v8 10 38558 -NCIT:C134282 Stage IIC Colon Cancer AJCC v8 10 38559 -NCIT:C134283 Stage III Colon Cancer AJCC v8 9 38560 -NCIT:C134284 Stage IIIA Colon Cancer AJCC v8 10 38561 -NCIT:C134285 Stage IIIB Colon Cancer AJCC v8 10 38562 -NCIT:C134286 Stage IIIC Colon Cancer AJCC v8 10 38563 -NCIT:C134287 Stage IV Colon Cancer AJCC v8 9 38564 -NCIT:C134288 Stage IVA Colon Cancer AJCC v8 10 38565 -NCIT:C134289 Stage IVB Colon Cancer AJCC v8 10 38566 -NCIT:C134290 Stage IVC Colon Cancer AJCC v8 10 38567 -NCIT:C153351 Refractory Colon Carcinoma 8 38568 -NCIT:C162155 Refractory Colon Adenocarcinoma 9 38569 -NCIT:C156097 Metastatic Colon Carcinoma 8 38570 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 38571 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 38572 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 38573 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 38574 -NCIT:C167238 Advanced Colon Carcinoma 9 38575 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 38576 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 38577 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 38578 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 38579 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 38580 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 38581 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 38582 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 9 38583 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 9 38584 -NCIT:C164228 Hereditary Colon Carcinoma 8 38585 -NCIT:C167237 Resectable Colon Carcinoma 8 38586 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 8 38587 -NCIT:C177680 Sigmoid Colon Carcinoma 8 38588 -NCIT:C177777 Microsatellite Stable Colon Carcinoma 8 38589 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 38590 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 38591 -NCIT:C180406 Unresectable Colon Carcinoma 8 38592 -NCIT:C162116 Unresectable Colon Adenocarcinoma 9 38593 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 38594 -NCIT:C3491 Cecum Carcinoma 8 38595 -NCIT:C4594 Cecum Carcinoma In Situ 9 38596 -NCIT:C5543 Cecum Adenocarcinoma 9 38597 -NCIT:C3998 Recurrent Colon Carcinoma 8 38598 -NCIT:C162442 Recurrent Colon Adenocarcinoma 9 38599 -NCIT:C4349 Colon Adenocarcinoma 8 38600 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 38601 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 38602 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 38603 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 38604 -NCIT:C162116 Unresectable Colon Adenocarcinoma 9 38605 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 38606 -NCIT:C162155 Refractory Colon Adenocarcinoma 9 38607 -NCIT:C162442 Recurrent Colon Adenocarcinoma 9 38608 -NCIT:C38760 Submucosal Invasive Colon Adenocarcinoma 9 38609 -NCIT:C45429 Colon Intramucosal Adenocarcinoma 9 38610 -NCIT:C27413 Adenoma of the Colon with Intramucosal Adenocarcinoma 10 38611 -NCIT:C5543 Cecum Adenocarcinoma 9 38612 -NCIT:C60641 Colon Medullary Carcinoma 9 38613 -NCIT:C7966 Colon Mucinous Adenocarcinoma 9 38614 -NCIT:C7967 Colon Signet Ring Cell Adenocarcinoma 9 38615 -NCIT:C9452 Grade 1 Colon Adenocarcinoma 9 38616 -NCIT:C9453 Grade 2 Colon Adenocarcinoma 9 38617 -NCIT:C9454 Grade 3 Colon Adenocarcinoma 9 38618 -NCIT:C96486 Colon Serrated Adenocarcinoma 9 38619 -NCIT:C96489 Colon Cribriform Comedo-Type Adenocarcinoma 9 38620 -NCIT:C96492 Colon Micropapillary Adenocarcinoma 9 38621 -NCIT:C5490 Colon Squamous Cell Carcinoma 8 38622 -NCIT:C5491 Colon Adenosquamous Carcinoma 8 38623 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 8 38624 -NCIT:C7100 Colon Undifferentiated Carcinoma 8 38625 -NCIT:C90507 Colon Cancer by AJCC v6 Stage 8 38626 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 9 38627 -NCIT:C4594 Cecum Carcinoma In Situ 10 38628 -NCIT:C3993 Stage II Colon Cancer AJCC v6 9 38629 -NCIT:C3994 Stage IV Colon Cancer AJCC v6 9 38630 -NCIT:C7766 Stage III Colon Cancer AJCC v6 9 38631 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 9 38632 -NCIT:C91224 Colon Cancer by AJCC v7 Stage 8 38633 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 9 38634 -NCIT:C4594 Cecum Carcinoma In Situ 10 38635 -NCIT:C89990 Stage II Colon Cancer AJCC v7 9 38636 -NCIT:C115041 Stage IIA Colon Cancer AJCC v7 10 38637 -NCIT:C115042 Stage IIB Colon Cancer AJCC v7 10 38638 -NCIT:C115043 Stage IIC Colon Cancer AJCC v7 10 38639 -NCIT:C89995 Stage III Colon Cancer AJCC v7 9 38640 -NCIT:C115047 Stage IIIA Colon Cancer AJCC v7 10 38641 -NCIT:C115048 Stage IIIB Colon Cancer AJCC v7 10 38642 -NCIT:C115049 Stage IIIC Colon Cancer AJCC v7 10 38643 -NCIT:C89999 Stage IV Colon Cancer AJCC v7 9 38644 -NCIT:C115053 Stage IVA Colon Cancer AJCC v7 10 38645 -NCIT:C115054 Stage IVB Colon Cancer AJCC v7 10 38646 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 9 38647 -NCIT:C5105 Colorectal Adenocarcinoma 7 38648 -NCIT:C161048 Metastatic Colorectal Adenocarcinoma 8 38649 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 9 38650 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 38651 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 38652 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 38653 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 38654 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 38655 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 38656 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 38657 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 38658 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 9 38659 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 38660 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 38661 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 38662 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 38663 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 38664 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 38665 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 38666 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 38667 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 38668 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 38669 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 38670 -NCIT:C162154 Refractory Colorectal Adenocarcinoma 8 38671 -NCIT:C162155 Refractory Colon Adenocarcinoma 9 38672 -NCIT:C162157 Refractory Rectal Adenocarcinoma 9 38673 -NCIT:C162441 Recurrent Colorectal Adenocarcinoma 8 38674 -NCIT:C162442 Recurrent Colon Adenocarcinoma 9 38675 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 9 38676 -NCIT:C171585 Unresectable Colorectal Adenocarcinoma 8 38677 -NCIT:C162116 Unresectable Colon Adenocarcinoma 9 38678 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 38679 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 9 38680 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 38681 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 38682 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 38683 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 38684 -NCIT:C172694 Colorectal Poorly Cohesive Adenocarcinoma 8 38685 -NCIT:C43586 Colorectal Signet Ring Cell Carcinoma 9 38686 -NCIT:C43593 Rectosigmoid Signet Ring Cell Carcinoma 10 38687 -NCIT:C7967 Colon Signet Ring Cell Adenocarcinoma 10 38688 -NCIT:C9168 Rectal Signet Ring Cell Adenocarcinoma 10 38689 -NCIT:C172699 Colorectal Adenoma-Like Adenocarcinoma 8 38690 -NCIT:C172700 Inflammatory Bowel Disease-Associated Colorectal Adenocarcinoma 8 38691 -NCIT:C96496 Ulcerative Colitis-Associated Colorectal Adenocarcinoma 9 38692 -NCIT:C96497 Crohn Disease-Associated Colorectal Adenocarcinoma 9 38693 -NCIT:C4349 Colon Adenocarcinoma 8 38694 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 38695 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 38696 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 38697 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 38698 -NCIT:C162116 Unresectable Colon Adenocarcinoma 9 38699 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 38700 -NCIT:C162155 Refractory Colon Adenocarcinoma 9 38701 -NCIT:C162442 Recurrent Colon Adenocarcinoma 9 38702 -NCIT:C38760 Submucosal Invasive Colon Adenocarcinoma 9 38703 -NCIT:C45429 Colon Intramucosal Adenocarcinoma 9 38704 -NCIT:C27413 Adenoma of the Colon with Intramucosal Adenocarcinoma 10 38705 -NCIT:C5543 Cecum Adenocarcinoma 9 38706 -NCIT:C60641 Colon Medullary Carcinoma 9 38707 -NCIT:C7966 Colon Mucinous Adenocarcinoma 9 38708 -NCIT:C7967 Colon Signet Ring Cell Adenocarcinoma 9 38709 -NCIT:C9452 Grade 1 Colon Adenocarcinoma 9 38710 -NCIT:C9453 Grade 2 Colon Adenocarcinoma 9 38711 -NCIT:C9454 Grade 3 Colon Adenocarcinoma 9 38712 -NCIT:C96486 Colon Serrated Adenocarcinoma 9 38713 -NCIT:C96489 Colon Cribriform Comedo-Type Adenocarcinoma 9 38714 -NCIT:C96492 Colon Micropapillary Adenocarcinoma 9 38715 -NCIT:C43584 Rectosigmoid Adenocarcinoma 8 38716 -NCIT:C43592 Rectosigmoid Mucinous Adenocarcinoma 9 38717 -NCIT:C43593 Rectosigmoid Signet Ring Cell Carcinoma 9 38718 -NCIT:C43585 Colorectal Mucinous Adenocarcinoma 8 38719 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 9 38720 -NCIT:C43592 Rectosigmoid Mucinous Adenocarcinoma 9 38721 -NCIT:C7966 Colon Mucinous Adenocarcinoma 9 38722 -NCIT:C7973 Rectal Mucinous Adenocarcinoma 9 38723 -NCIT:C43590 Colorectal Medullary Carcinoma 8 38724 -NCIT:C60640 Rectal Medullary Carcinoma 9 38725 -NCIT:C60641 Colon Medullary Carcinoma 9 38726 -NCIT:C9383 Rectal Adenocarcinoma 8 38727 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 38728 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 38729 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 38730 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 38731 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 9 38732 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 38733 -NCIT:C162157 Refractory Rectal Adenocarcinoma 9 38734 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 9 38735 -NCIT:C60640 Rectal Medullary Carcinoma 9 38736 -NCIT:C7973 Rectal Mucinous Adenocarcinoma 9 38737 -NCIT:C9168 Rectal Signet Ring Cell Adenocarcinoma 9 38738 -NCIT:C9449 Grade 3 Rectal Adenocarcinoma 9 38739 -NCIT:C9450 Grade 2 Rectal Adenocarcinoma 9 38740 -NCIT:C9451 Grade 1 Rectal Adenocarcinoma 9 38741 -NCIT:C96487 Rectal Serrated Adenocarcinoma 9 38742 -NCIT:C96490 Rectal Cribriform Comedo-Type Adenocarcinoma 9 38743 -NCIT:C96493 Rectal Micropapillary Adenocarcinoma 9 38744 -NCIT:C9446 Grade 1 Colorectal Adenocarcinoma 8 38745 -NCIT:C9451 Grade 1 Rectal Adenocarcinoma 9 38746 -NCIT:C9452 Grade 1 Colon Adenocarcinoma 9 38747 -NCIT:C9447 Grade 2 Colorectal Adenocarcinoma 8 38748 -NCIT:C9450 Grade 2 Rectal Adenocarcinoma 9 38749 -NCIT:C9453 Grade 2 Colon Adenocarcinoma 9 38750 -NCIT:C9448 Grade 3 Colorectal Adenocarcinoma 8 38751 -NCIT:C9449 Grade 3 Rectal Adenocarcinoma 9 38752 -NCIT:C9454 Grade 3 Colon Adenocarcinoma 9 38753 -NCIT:C96485 Colorectal Serrated Adenocarcinoma 8 38754 -NCIT:C96486 Colon Serrated Adenocarcinoma 9 38755 -NCIT:C96487 Rectal Serrated Adenocarcinoma 9 38756 -NCIT:C96488 Colorectal Cribriform Comedo-Type Adenocarcinoma 8 38757 -NCIT:C96489 Colon Cribriform Comedo-Type Adenocarcinoma 9 38758 -NCIT:C96490 Rectal Cribriform Comedo-Type Adenocarcinoma 9 38759 -NCIT:C96491 Colorectal Micropapillary Adenocarcinoma 8 38760 -NCIT:C96492 Colon Micropapillary Adenocarcinoma 9 38761 -NCIT:C96493 Rectal Micropapillary Adenocarcinoma 9 38762 -NCIT:C7421 Rectosigmoid Carcinoma 7 38763 -NCIT:C43584 Rectosigmoid Adenocarcinoma 8 38764 -NCIT:C43592 Rectosigmoid Mucinous Adenocarcinoma 9 38765 -NCIT:C43593 Rectosigmoid Signet Ring Cell Carcinoma 9 38766 -NCIT:C8634 Recurrent Rectosigmoid Carcinoma 8 38767 -NCIT:C90509 Rectosigmoid Cancer by AJCC v6 Stage 8 38768 -NCIT:C5015 Stage II Rectosigmoid Cancer AJCC v6 9 38769 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 9 38770 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 9 38771 -NCIT:C8635 Stage III Rectosigmoid Cancer AJCC v6 9 38772 -NCIT:C8636 Stage IV Rectosigmoid Cancer AJCC v6 9 38773 -NCIT:C91226 Rectosigmoid Cancer by AJCC v7 Stage 8 38774 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 9 38775 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 9 38776 -NCIT:C89992 Stage II Rectosigmoid Cancer AJCC v7 9 38777 -NCIT:C89997 Stage III Rectosigmoid Cancer AJCC v7 9 38778 -NCIT:C90019 Stage IV Rectosigmoid Cancer AJCC v7 9 38779 -NCIT:C8625 Recurrent Colorectal Carcinoma 7 38780 -NCIT:C162441 Recurrent Colorectal Adenocarcinoma 8 38781 -NCIT:C162442 Recurrent Colon Adenocarcinoma 9 38782 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 9 38783 -NCIT:C190199 Locally Recurrent Colorectal Carcinoma 8 38784 -NCIT:C190679 Recurrent Microsatellite Stable Colorectal Carcinoma 8 38785 -NCIT:C3998 Recurrent Colon Carcinoma 8 38786 -NCIT:C162442 Recurrent Colon Adenocarcinoma 9 38787 -NCIT:C8634 Recurrent Rectosigmoid Carcinoma 8 38788 -NCIT:C9238 Recurrent Rectal Carcinoma 8 38789 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 9 38790 -NCIT:C90506 Colorectal Cancer by AJCC v6 Stage 7 38791 -NCIT:C8513 Stage I Colorectal Cancer AJCC v6 and v7 8 38792 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 9 38793 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 9 38794 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 9 38795 -NCIT:C8514 Stage II Colorectal Cancer AJCC v6 8 38796 -NCIT:C3993 Stage II Colon Cancer AJCC v6 9 38797 -NCIT:C5015 Stage II Rectosigmoid Cancer AJCC v6 9 38798 -NCIT:C7791 Stage II Rectal Cancer AJCC v6 9 38799 -NCIT:C8515 Stage III Colorectal Cancer AJCC v6 8 38800 -NCIT:C7766 Stage III Colon Cancer AJCC v6 9 38801 -NCIT:C7792 Stage III Rectal Cancer AJCC v6 9 38802 -NCIT:C8635 Stage III Rectosigmoid Cancer AJCC v6 9 38803 -NCIT:C8516 Stage IV Colorectal Cancer AJCC v6 8 38804 -NCIT:C3994 Stage IV Colon Cancer AJCC v6 9 38805 -NCIT:C8412 Stage IV Rectal Cancer AJCC v6 9 38806 -NCIT:C8636 Stage IV Rectosigmoid Cancer AJCC v6 9 38807 -NCIT:C8932 Stage 0 Colorectal Cancer AJCC v6 and v7 8 38808 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 9 38809 -NCIT:C4594 Cecum Carcinoma In Situ 10 38810 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 9 38811 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 9 38812 -NCIT:C90507 Colon Cancer by AJCC v6 Stage 8 38813 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 9 38814 -NCIT:C4594 Cecum Carcinoma In Situ 10 38815 -NCIT:C3993 Stage II Colon Cancer AJCC v6 9 38816 -NCIT:C3994 Stage IV Colon Cancer AJCC v6 9 38817 -NCIT:C7766 Stage III Colon Cancer AJCC v6 9 38818 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 9 38819 -NCIT:C90508 Rectal Cancer by AJCC v6 Stage 8 38820 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 9 38821 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 9 38822 -NCIT:C7791 Stage II Rectal Cancer AJCC v6 9 38823 -NCIT:C7792 Stage III Rectal Cancer AJCC v6 9 38824 -NCIT:C8412 Stage IV Rectal Cancer AJCC v6 9 38825 -NCIT:C90509 Rectosigmoid Cancer by AJCC v6 Stage 8 38826 -NCIT:C5015 Stage II Rectosigmoid Cancer AJCC v6 9 38827 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 9 38828 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 9 38829 -NCIT:C8635 Stage III Rectosigmoid Cancer AJCC v6 9 38830 -NCIT:C8636 Stage IV Rectosigmoid Cancer AJCC v6 9 38831 -NCIT:C91223 Colorectal Cancer by AJCC v7 Stage 7 38832 -NCIT:C8513 Stage I Colorectal Cancer AJCC v6 and v7 8 38833 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 9 38834 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 9 38835 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 9 38836 -NCIT:C8932 Stage 0 Colorectal Cancer AJCC v6 and v7 8 38837 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 9 38838 -NCIT:C4594 Cecum Carcinoma In Situ 10 38839 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 9 38840 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 9 38841 -NCIT:C89989 Stage II Colorectal Cancer AJCC v7 8 38842 -NCIT:C87813 Stage IIA Colorectal Cancer AJCC v7 9 38843 -NCIT:C115041 Stage IIA Colon Cancer AJCC v7 10 38844 -NCIT:C115044 Stage IIA Rectal Cancer AJCC v7 10 38845 -NCIT:C87814 Stage IIB Colorectal Cancer AJCC v7 9 38846 -NCIT:C115042 Stage IIB Colon Cancer AJCC v7 10 38847 -NCIT:C115045 Stage IIB Rectal Cancer AJCC v7 10 38848 -NCIT:C87815 Stage IIC Colorectal Cancer AJCC v7 9 38849 -NCIT:C115043 Stage IIC Colon Cancer AJCC v7 10 38850 -NCIT:C115046 Stage IIC Rectal Cancer AJCC v7 10 38851 -NCIT:C89990 Stage II Colon Cancer AJCC v7 9 38852 -NCIT:C115041 Stage IIA Colon Cancer AJCC v7 10 38853 -NCIT:C115042 Stage IIB Colon Cancer AJCC v7 10 38854 -NCIT:C115043 Stage IIC Colon Cancer AJCC v7 10 38855 -NCIT:C89991 Stage II Rectal Cancer AJCC v7 9 38856 -NCIT:C115044 Stage IIA Rectal Cancer AJCC v7 10 38857 -NCIT:C115045 Stage IIB Rectal Cancer AJCC v7 10 38858 -NCIT:C115046 Stage IIC Rectal Cancer AJCC v7 10 38859 -NCIT:C89992 Stage II Rectosigmoid Cancer AJCC v7 9 38860 -NCIT:C89994 Stage III Colorectal Cancer AJCC v7 8 38861 -NCIT:C87816 Stage IIIA Colorectal Cancer AJCC v7 9 38862 -NCIT:C115047 Stage IIIA Colon Cancer AJCC v7 10 38863 -NCIT:C115050 Stage IIIA Rectal Cancer AJCC v7 10 38864 -NCIT:C87817 Stage IIIB Colorectal Cancer AJCC v7 9 38865 -NCIT:C115048 Stage IIIB Colon Cancer AJCC v7 10 38866 -NCIT:C115051 Stage IIIB Rectal Cancer AJCC v7 10 38867 -NCIT:C87818 Stage IIIC Colorectal Cancer AJCC v7 9 38868 -NCIT:C115049 Stage IIIC Colon Cancer AJCC v7 10 38869 -NCIT:C115052 Stage IIIC Rectal Cancer AJCC v7 10 38870 -NCIT:C89995 Stage III Colon Cancer AJCC v7 9 38871 -NCIT:C115047 Stage IIIA Colon Cancer AJCC v7 10 38872 -NCIT:C115048 Stage IIIB Colon Cancer AJCC v7 10 38873 -NCIT:C115049 Stage IIIC Colon Cancer AJCC v7 10 38874 -NCIT:C89996 Stage III Rectal Cancer AJCC v7 9 38875 -NCIT:C115050 Stage IIIA Rectal Cancer AJCC v7 10 38876 -NCIT:C115051 Stage IIIB Rectal Cancer AJCC v7 10 38877 -NCIT:C115052 Stage IIIC Rectal Cancer AJCC v7 10 38878 -NCIT:C89997 Stage III Rectosigmoid Cancer AJCC v7 9 38879 -NCIT:C89998 Stage IV Colorectal Cancer AJCC v7 8 38880 -NCIT:C87819 Stage IVA Colorectal Cancer AJCC v7 9 38881 -NCIT:C115053 Stage IVA Colon Cancer AJCC v7 10 38882 -NCIT:C115055 Stage IVA Rectal Cancer AJCC v7 10 38883 -NCIT:C87820 Stage IVB Colorectal Cancer AJCC v7 9 38884 -NCIT:C115054 Stage IVB Colon Cancer AJCC v7 10 38885 -NCIT:C115056 Stage IVB Rectal Cancer AJCC v7 10 38886 -NCIT:C89999 Stage IV Colon Cancer AJCC v7 9 38887 -NCIT:C115053 Stage IVA Colon Cancer AJCC v7 10 38888 -NCIT:C115054 Stage IVB Colon Cancer AJCC v7 10 38889 -NCIT:C90016 Stage IV Rectal Cancer AJCC v7 9 38890 -NCIT:C115055 Stage IVA Rectal Cancer AJCC v7 10 38891 -NCIT:C115056 Stage IVB Rectal Cancer AJCC v7 10 38892 -NCIT:C90019 Stage IV Rectosigmoid Cancer AJCC v7 9 38893 -NCIT:C91224 Colon Cancer by AJCC v7 Stage 8 38894 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 9 38895 -NCIT:C4594 Cecum Carcinoma In Situ 10 38896 -NCIT:C89990 Stage II Colon Cancer AJCC v7 9 38897 -NCIT:C115041 Stage IIA Colon Cancer AJCC v7 10 38898 -NCIT:C115042 Stage IIB Colon Cancer AJCC v7 10 38899 -NCIT:C115043 Stage IIC Colon Cancer AJCC v7 10 38900 -NCIT:C89995 Stage III Colon Cancer AJCC v7 9 38901 -NCIT:C115047 Stage IIIA Colon Cancer AJCC v7 10 38902 -NCIT:C115048 Stage IIIB Colon Cancer AJCC v7 10 38903 -NCIT:C115049 Stage IIIC Colon Cancer AJCC v7 10 38904 -NCIT:C89999 Stage IV Colon Cancer AJCC v7 9 38905 -NCIT:C115053 Stage IVA Colon Cancer AJCC v7 10 38906 -NCIT:C115054 Stage IVB Colon Cancer AJCC v7 10 38907 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 9 38908 -NCIT:C91225 Rectal Cancer by AJCC v7 Stage 8 38909 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 9 38910 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 9 38911 -NCIT:C89991 Stage II Rectal Cancer AJCC v7 9 38912 -NCIT:C115044 Stage IIA Rectal Cancer AJCC v7 10 38913 -NCIT:C115045 Stage IIB Rectal Cancer AJCC v7 10 38914 -NCIT:C115046 Stage IIC Rectal Cancer AJCC v7 10 38915 -NCIT:C89996 Stage III Rectal Cancer AJCC v7 9 38916 -NCIT:C115050 Stage IIIA Rectal Cancer AJCC v7 10 38917 -NCIT:C115051 Stage IIIB Rectal Cancer AJCC v7 10 38918 -NCIT:C115052 Stage IIIC Rectal Cancer AJCC v7 10 38919 -NCIT:C90016 Stage IV Rectal Cancer AJCC v7 9 38920 -NCIT:C115055 Stage IVA Rectal Cancer AJCC v7 10 38921 -NCIT:C115056 Stage IVB Rectal Cancer AJCC v7 10 38922 -NCIT:C91226 Rectosigmoid Cancer by AJCC v7 Stage 8 38923 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 9 38924 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 9 38925 -NCIT:C89992 Stage II Rectosigmoid Cancer AJCC v7 9 38926 -NCIT:C89997 Stage III Rectosigmoid Cancer AJCC v7 9 38927 -NCIT:C90019 Stage IV Rectosigmoid Cancer AJCC v7 9 38928 -NCIT:C9382 Rectal Carcinoma 7 38929 -NCIT:C118823 Childhood Rectal Carcinoma 8 38930 -NCIT:C134258 Rectal Cancer by AJCC v8 Stage 8 38931 -NCIT:C134291 Stage 0 Rectal Cancer AJCC v8 9 38932 -NCIT:C134292 Stage I Rectal Cancer AJCC v8 9 38933 -NCIT:C134293 Stage II Rectal Cancer AJCC v8 9 38934 -NCIT:C134294 Stage IIA Rectal Cancer AJCC v8 10 38935 -NCIT:C134295 Stage IIB Rectal Cancer AJCC v8 10 38936 -NCIT:C134296 Stage IIC Rectal Cancer AJCC v8 10 38937 -NCIT:C134297 Stage III Rectal Cancer AJCC v8 9 38938 -NCIT:C134298 Stage IIIA Rectal Cancer AJCC v8 10 38939 -NCIT:C134299 Stage IIIB Rectal Cancer AJCC v8 10 38940 -NCIT:C134300 Stage IIIC Rectal Cancer AJCC v8 10 38941 -NCIT:C134301 Stage IV Rectal Cancer AJCC v8 9 38942 -NCIT:C134302 Stage IVA Rectal Cancer AJCC v8 10 38943 -NCIT:C134303 Stage IVB Rectal Cancer AJCC v8 10 38944 -NCIT:C134304 Stage IVC Rectal Cancer AJCC v8 10 38945 -NCIT:C156098 Metastatic Rectal Carcinoma 8 38946 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 9 38947 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 38948 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 38949 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 38950 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 38951 -NCIT:C170777 Advanced Rectal Carcinoma 9 38952 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 38953 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 38954 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 38955 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 38956 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 38957 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 38958 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 9 38959 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 38960 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 38961 -NCIT:C162156 Refractory Rectal Carcinoma 8 38962 -NCIT:C162157 Refractory Rectal Adenocarcinoma 9 38963 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 9 38964 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 8 38965 -NCIT:C177776 Microsatellite Stable Rectal Carcinoma 8 38966 -NCIT:C43594 Rectal Adenosquamous Carcinoma 8 38967 -NCIT:C5554 Rectal Squamous Cell Carcinoma 8 38968 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 9 38969 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 38970 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 38971 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 9 38972 -NCIT:C5555 Rectal Cloacogenic Carcinoma 9 38973 -NCIT:C5556 Rectal Sarcomatoid Carcinoma 8 38974 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 8 38975 -NCIT:C7974 Rectal Undifferentiated Carcinoma 8 38976 -NCIT:C90508 Rectal Cancer by AJCC v6 Stage 8 38977 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 9 38978 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 9 38979 -NCIT:C7791 Stage II Rectal Cancer AJCC v6 9 38980 -NCIT:C7792 Stage III Rectal Cancer AJCC v6 9 38981 -NCIT:C8412 Stage IV Rectal Cancer AJCC v6 9 38982 -NCIT:C91225 Rectal Cancer by AJCC v7 Stage 8 38983 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 9 38984 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 9 38985 -NCIT:C89991 Stage II Rectal Cancer AJCC v7 9 38986 -NCIT:C115044 Stage IIA Rectal Cancer AJCC v7 10 38987 -NCIT:C115045 Stage IIB Rectal Cancer AJCC v7 10 38988 -NCIT:C115046 Stage IIC Rectal Cancer AJCC v7 10 38989 -NCIT:C89996 Stage III Rectal Cancer AJCC v7 9 38990 -NCIT:C115050 Stage IIIA Rectal Cancer AJCC v7 10 38991 -NCIT:C115051 Stage IIIB Rectal Cancer AJCC v7 10 38992 -NCIT:C115052 Stage IIIC Rectal Cancer AJCC v7 10 38993 -NCIT:C90016 Stage IV Rectal Cancer AJCC v7 9 38994 -NCIT:C115055 Stage IVA Rectal Cancer AJCC v7 10 38995 -NCIT:C115056 Stage IVB Rectal Cancer AJCC v7 10 38996 -NCIT:C9238 Recurrent Rectal Carcinoma 8 38997 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 9 38998 -NCIT:C9383 Rectal Adenocarcinoma 8 38999 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 39000 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 39001 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 39002 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 39003 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 9 39004 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 39005 -NCIT:C162157 Refractory Rectal Adenocarcinoma 9 39006 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 9 39007 -NCIT:C60640 Rectal Medullary Carcinoma 9 39008 -NCIT:C7973 Rectal Mucinous Adenocarcinoma 9 39009 -NCIT:C9168 Rectal Signet Ring Cell Adenocarcinoma 9 39010 -NCIT:C9449 Grade 3 Rectal Adenocarcinoma 9 39011 -NCIT:C9450 Grade 2 Rectal Adenocarcinoma 9 39012 -NCIT:C9451 Grade 1 Rectal Adenocarcinoma 9 39013 -NCIT:C96487 Rectal Serrated Adenocarcinoma 9 39014 -NCIT:C96490 Rectal Cribriform Comedo-Type Adenocarcinoma 9 39015 -NCIT:C96493 Rectal Micropapillary Adenocarcinoma 9 39016 -NCIT:C96156 Colorectal Neuroendocrine Carcinoma 7 39017 -NCIT:C43587 Colorectal Small Cell Neuroendocrine Carcinoma 8 39018 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 9 39019 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 9 39020 -NCIT:C96157 Colorectal Large Cell Neuroendocrine Carcinoma 8 39021 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 9 39022 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 9 39023 -NCIT:C96158 Colorectal Mixed Adenoneuroendocrine Carcinoma 7 39024 -NCIT:C96494 Colorectal Sarcomatoid Carcinoma 7 39025 -NCIT:C5556 Rectal Sarcomatoid Carcinoma 8 39026 -NCIT:C4581 Metastatic Malignant Neoplasm in the Large Intestine 6 39027 -NCIT:C7426 Metastatic Malignant Neoplasm in the Rectum 7 39028 -NCIT:C188076 Metastatic Carcinoma in the Rectum 8 39029 -NCIT:C8411 Metastatic Malignant Neoplasm in the Colon 7 39030 -NCIT:C7418 Malignant Rectal Neoplasm 6 39031 -NCIT:C4640 Rectal Melanoma 7 39032 -NCIT:C188079 Rectal Epithelioid Cell Melanoma 8 39033 -NCIT:C5548 Rectal Sarcoma 7 39034 -NCIT:C5549 Rectal Leiomyosarcoma 8 39035 -NCIT:C5550 Rectal Kaposi Sarcoma 8 39036 -NCIT:C5627 Rectal Rhabdomyosarcoma 8 39037 -NCIT:C5553 Rectal Lymphoma 7 39038 -NCIT:C7426 Metastatic Malignant Neoplasm in the Rectum 7 39039 -NCIT:C188076 Metastatic Carcinoma in the Rectum 8 39040 -NCIT:C9382 Rectal Carcinoma 7 39041 -NCIT:C118823 Childhood Rectal Carcinoma 8 39042 -NCIT:C134258 Rectal Cancer by AJCC v8 Stage 8 39043 -NCIT:C134291 Stage 0 Rectal Cancer AJCC v8 9 39044 -NCIT:C134292 Stage I Rectal Cancer AJCC v8 9 39045 -NCIT:C134293 Stage II Rectal Cancer AJCC v8 9 39046 -NCIT:C134294 Stage IIA Rectal Cancer AJCC v8 10 39047 -NCIT:C134295 Stage IIB Rectal Cancer AJCC v8 10 39048 -NCIT:C134296 Stage IIC Rectal Cancer AJCC v8 10 39049 -NCIT:C134297 Stage III Rectal Cancer AJCC v8 9 39050 -NCIT:C134298 Stage IIIA Rectal Cancer AJCC v8 10 39051 -NCIT:C134299 Stage IIIB Rectal Cancer AJCC v8 10 39052 -NCIT:C134300 Stage IIIC Rectal Cancer AJCC v8 10 39053 -NCIT:C134301 Stage IV Rectal Cancer AJCC v8 9 39054 -NCIT:C134302 Stage IVA Rectal Cancer AJCC v8 10 39055 -NCIT:C134303 Stage IVB Rectal Cancer AJCC v8 10 39056 -NCIT:C134304 Stage IVC Rectal Cancer AJCC v8 10 39057 -NCIT:C156098 Metastatic Rectal Carcinoma 8 39058 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 9 39059 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 39060 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 39061 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 39062 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 39063 -NCIT:C170777 Advanced Rectal Carcinoma 9 39064 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 39065 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 39066 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 39067 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 39068 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 39069 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 39070 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 9 39071 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 39072 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 39073 -NCIT:C162156 Refractory Rectal Carcinoma 8 39074 -NCIT:C162157 Refractory Rectal Adenocarcinoma 9 39075 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 9 39076 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 8 39077 -NCIT:C177776 Microsatellite Stable Rectal Carcinoma 8 39078 -NCIT:C43594 Rectal Adenosquamous Carcinoma 8 39079 -NCIT:C5554 Rectal Squamous Cell Carcinoma 8 39080 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 9 39081 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 39082 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 39083 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 9 39084 -NCIT:C5555 Rectal Cloacogenic Carcinoma 9 39085 -NCIT:C5556 Rectal Sarcomatoid Carcinoma 8 39086 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 8 39087 -NCIT:C7974 Rectal Undifferentiated Carcinoma 8 39088 -NCIT:C90508 Rectal Cancer by AJCC v6 Stage 8 39089 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 9 39090 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 9 39091 -NCIT:C7791 Stage II Rectal Cancer AJCC v6 9 39092 -NCIT:C7792 Stage III Rectal Cancer AJCC v6 9 39093 -NCIT:C8412 Stage IV Rectal Cancer AJCC v6 9 39094 -NCIT:C91225 Rectal Cancer by AJCC v7 Stage 8 39095 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 9 39096 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 9 39097 -NCIT:C89991 Stage II Rectal Cancer AJCC v7 9 39098 -NCIT:C115044 Stage IIA Rectal Cancer AJCC v7 10 39099 -NCIT:C115045 Stage IIB Rectal Cancer AJCC v7 10 39100 -NCIT:C115046 Stage IIC Rectal Cancer AJCC v7 10 39101 -NCIT:C89996 Stage III Rectal Cancer AJCC v7 9 39102 -NCIT:C115050 Stage IIIA Rectal Cancer AJCC v7 10 39103 -NCIT:C115051 Stage IIIB Rectal Cancer AJCC v7 10 39104 -NCIT:C115052 Stage IIIC Rectal Cancer AJCC v7 10 39105 -NCIT:C90016 Stage IV Rectal Cancer AJCC v7 9 39106 -NCIT:C115055 Stage IVA Rectal Cancer AJCC v7 10 39107 -NCIT:C115056 Stage IVB Rectal Cancer AJCC v7 10 39108 -NCIT:C9238 Recurrent Rectal Carcinoma 8 39109 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 9 39110 -NCIT:C9383 Rectal Adenocarcinoma 8 39111 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 39112 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 39113 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 39114 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 39115 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 9 39116 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 39117 -NCIT:C162157 Refractory Rectal Adenocarcinoma 9 39118 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 9 39119 -NCIT:C60640 Rectal Medullary Carcinoma 9 39120 -NCIT:C7973 Rectal Mucinous Adenocarcinoma 9 39121 -NCIT:C9168 Rectal Signet Ring Cell Adenocarcinoma 9 39122 -NCIT:C9449 Grade 3 Rectal Adenocarcinoma 9 39123 -NCIT:C9450 Grade 2 Rectal Adenocarcinoma 9 39124 -NCIT:C9451 Grade 1 Rectal Adenocarcinoma 9 39125 -NCIT:C96487 Rectal Serrated Adenocarcinoma 9 39126 -NCIT:C96490 Rectal Cribriform Comedo-Type Adenocarcinoma 9 39127 -NCIT:C96493 Rectal Micropapillary Adenocarcinoma 9 39128 -NCIT:C7420 Malignant Rectosigmoid Neoplasm 6 39129 -NCIT:C7421 Rectosigmoid Carcinoma 7 39130 -NCIT:C43584 Rectosigmoid Adenocarcinoma 8 39131 -NCIT:C43592 Rectosigmoid Mucinous Adenocarcinoma 9 39132 -NCIT:C43593 Rectosigmoid Signet Ring Cell Carcinoma 9 39133 -NCIT:C8634 Recurrent Rectosigmoid Carcinoma 8 39134 -NCIT:C90509 Rectosigmoid Cancer by AJCC v6 Stage 8 39135 -NCIT:C5015 Stage II Rectosigmoid Cancer AJCC v6 9 39136 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 9 39137 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 9 39138 -NCIT:C8635 Stage III Rectosigmoid Cancer AJCC v6 9 39139 -NCIT:C8636 Stage IV Rectosigmoid Cancer AJCC v6 9 39140 -NCIT:C91226 Rectosigmoid Cancer by AJCC v7 Stage 8 39141 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 9 39142 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 9 39143 -NCIT:C89992 Stage II Rectosigmoid Cancer AJCC v7 9 39144 -NCIT:C89997 Stage III Rectosigmoid Cancer AJCC v7 9 39145 -NCIT:C90019 Stage IV Rectosigmoid Cancer AJCC v7 9 39146 -NCIT:C9242 Malignant Colon Neoplasm 6 39147 -NCIT:C4793 Colon Lymphoma 7 39148 -NCIT:C4950 Colon Non-Hodgkin Lymphoma 8 39149 -NCIT:C27411 Colon Mantle Cell Lymphoma 9 39150 -NCIT:C27465 Colon Burkitt Lymphoma 9 39151 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 9 39152 -NCIT:C5521 Cecum Non-Hodgkin Lymphoma 9 39153 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 9 39154 -NCIT:C5499 Colon Hodgkin Lymphoma 8 39155 -NCIT:C5515 Cecum Lymphoma 8 39156 -NCIT:C5521 Cecum Non-Hodgkin Lymphoma 9 39157 -NCIT:C4910 Colon Carcinoma 7 39158 -NCIT:C134251 Colon Cancer by AJCC v8 Stage 8 39159 -NCIT:C134271 Stage 0 Colon Cancer AJCC v8 9 39160 -NCIT:C134273 Stage I Colon Cancer AJCC v8 9 39161 -NCIT:C134274 Stage II Colon Cancer AJCC v8 9 39162 -NCIT:C134280 Stage IIA Colon Cancer AJCC v8 10 39163 -NCIT:C134281 Stage IIB Colon Cancer AJCC v8 10 39164 -NCIT:C134282 Stage IIC Colon Cancer AJCC v8 10 39165 -NCIT:C134283 Stage III Colon Cancer AJCC v8 9 39166 -NCIT:C134284 Stage IIIA Colon Cancer AJCC v8 10 39167 -NCIT:C134285 Stage IIIB Colon Cancer AJCC v8 10 39168 -NCIT:C134286 Stage IIIC Colon Cancer AJCC v8 10 39169 -NCIT:C134287 Stage IV Colon Cancer AJCC v8 9 39170 -NCIT:C134288 Stage IVA Colon Cancer AJCC v8 10 39171 -NCIT:C134289 Stage IVB Colon Cancer AJCC v8 10 39172 -NCIT:C134290 Stage IVC Colon Cancer AJCC v8 10 39173 -NCIT:C153351 Refractory Colon Carcinoma 8 39174 -NCIT:C162155 Refractory Colon Adenocarcinoma 9 39175 -NCIT:C156097 Metastatic Colon Carcinoma 8 39176 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 39177 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 39178 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 39179 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 39180 -NCIT:C167238 Advanced Colon Carcinoma 9 39181 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 39182 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 39183 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 39184 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 39185 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 39186 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 39187 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 39188 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 9 39189 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 9 39190 -NCIT:C164228 Hereditary Colon Carcinoma 8 39191 -NCIT:C167237 Resectable Colon Carcinoma 8 39192 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 8 39193 -NCIT:C177680 Sigmoid Colon Carcinoma 8 39194 -NCIT:C177777 Microsatellite Stable Colon Carcinoma 8 39195 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 39196 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 39197 -NCIT:C180406 Unresectable Colon Carcinoma 8 39198 -NCIT:C162116 Unresectable Colon Adenocarcinoma 9 39199 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 39200 -NCIT:C3491 Cecum Carcinoma 8 39201 -NCIT:C4594 Cecum Carcinoma In Situ 9 39202 -NCIT:C5543 Cecum Adenocarcinoma 9 39203 -NCIT:C3998 Recurrent Colon Carcinoma 8 39204 -NCIT:C162442 Recurrent Colon Adenocarcinoma 9 39205 -NCIT:C4349 Colon Adenocarcinoma 8 39206 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 39207 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 39208 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 39209 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 39210 -NCIT:C162116 Unresectable Colon Adenocarcinoma 9 39211 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 39212 -NCIT:C162155 Refractory Colon Adenocarcinoma 9 39213 -NCIT:C162442 Recurrent Colon Adenocarcinoma 9 39214 -NCIT:C38760 Submucosal Invasive Colon Adenocarcinoma 9 39215 -NCIT:C45429 Colon Intramucosal Adenocarcinoma 9 39216 -NCIT:C27413 Adenoma of the Colon with Intramucosal Adenocarcinoma 10 39217 -NCIT:C5543 Cecum Adenocarcinoma 9 39218 -NCIT:C60641 Colon Medullary Carcinoma 9 39219 -NCIT:C7966 Colon Mucinous Adenocarcinoma 9 39220 -NCIT:C7967 Colon Signet Ring Cell Adenocarcinoma 9 39221 -NCIT:C9452 Grade 1 Colon Adenocarcinoma 9 39222 -NCIT:C9453 Grade 2 Colon Adenocarcinoma 9 39223 -NCIT:C9454 Grade 3 Colon Adenocarcinoma 9 39224 -NCIT:C96486 Colon Serrated Adenocarcinoma 9 39225 -NCIT:C96489 Colon Cribriform Comedo-Type Adenocarcinoma 9 39226 -NCIT:C96492 Colon Micropapillary Adenocarcinoma 9 39227 -NCIT:C5490 Colon Squamous Cell Carcinoma 8 39228 -NCIT:C5491 Colon Adenosquamous Carcinoma 8 39229 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 8 39230 -NCIT:C7100 Colon Undifferentiated Carcinoma 8 39231 -NCIT:C90507 Colon Cancer by AJCC v6 Stage 8 39232 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 9 39233 -NCIT:C4594 Cecum Carcinoma In Situ 10 39234 -NCIT:C3993 Stage II Colon Cancer AJCC v6 9 39235 -NCIT:C3994 Stage IV Colon Cancer AJCC v6 9 39236 -NCIT:C7766 Stage III Colon Cancer AJCC v6 9 39237 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 9 39238 -NCIT:C91224 Colon Cancer by AJCC v7 Stage 8 39239 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 9 39240 -NCIT:C4594 Cecum Carcinoma In Situ 10 39241 -NCIT:C89990 Stage II Colon Cancer AJCC v7 9 39242 -NCIT:C115041 Stage IIA Colon Cancer AJCC v7 10 39243 -NCIT:C115042 Stage IIB Colon Cancer AJCC v7 10 39244 -NCIT:C115043 Stage IIC Colon Cancer AJCC v7 10 39245 -NCIT:C89995 Stage III Colon Cancer AJCC v7 9 39246 -NCIT:C115047 Stage IIIA Colon Cancer AJCC v7 10 39247 -NCIT:C115048 Stage IIIB Colon Cancer AJCC v7 10 39248 -NCIT:C115049 Stage IIIC Colon Cancer AJCC v7 10 39249 -NCIT:C89999 Stage IV Colon Cancer AJCC v7 9 39250 -NCIT:C115053 Stage IVA Colon Cancer AJCC v7 10 39251 -NCIT:C115054 Stage IVB Colon Cancer AJCC v7 10 39252 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 9 39253 -NCIT:C5495 Colon Sarcoma 7 39254 -NCIT:C156279 Colon Liposarcoma 8 39255 -NCIT:C5494 Colon Leiomyosarcoma 8 39256 -NCIT:C5516 Colon Kaposi Sarcoma 8 39257 -NCIT:C8411 Metastatic Malignant Neoplasm in the Colon 7 39258 -NCIT:C9329 Malignant Cecum Neoplasm 7 39259 -NCIT:C3491 Cecum Carcinoma 8 39260 -NCIT:C4594 Cecum Carcinoma In Situ 9 39261 -NCIT:C5543 Cecum Adenocarcinoma 9 39262 -NCIT:C5515 Cecum Lymphoma 8 39263 -NCIT:C5521 Cecum Non-Hodgkin Lymphoma 9 39264 -NCIT:C96498 Colorectal Lymphoma 6 39265 -NCIT:C4793 Colon Lymphoma 7 39266 -NCIT:C4950 Colon Non-Hodgkin Lymphoma 8 39267 -NCIT:C27411 Colon Mantle Cell Lymphoma 9 39268 -NCIT:C27465 Colon Burkitt Lymphoma 9 39269 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 9 39270 -NCIT:C5521 Cecum Non-Hodgkin Lymphoma 9 39271 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 9 39272 -NCIT:C5499 Colon Hodgkin Lymphoma 8 39273 -NCIT:C5515 Cecum Lymphoma 8 39274 -NCIT:C5521 Cecum Non-Hodgkin Lymphoma 9 39275 -NCIT:C5553 Rectal Lymphoma 7 39276 -NCIT:C96499 Colorectal Non-Hodgkin Lymphoma 7 39277 -NCIT:C4950 Colon Non-Hodgkin Lymphoma 8 39278 -NCIT:C27411 Colon Mantle Cell Lymphoma 9 39279 -NCIT:C27465 Colon Burkitt Lymphoma 9 39280 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 9 39281 -NCIT:C5521 Cecum Non-Hodgkin Lymphoma 9 39282 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 9 39283 -NCIT:C96502 Colorectal Burkitt Lymphoma 8 39284 -NCIT:C27465 Colon Burkitt Lymphoma 9 39285 -NCIT:C96503 Colorectal Diffuse Large B-Cell Lymphoma 8 39286 -NCIT:C96501 Colorectal High Grade B-Cell Lymphoma, Not Otherwise Specified 9 39287 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 9 39288 -NCIT:C96505 Colorectal Mantle Cell Lymphoma 8 39289 -NCIT:C27411 Colon Mantle Cell Lymphoma 9 39290 -NCIT:C96506 Colorectal Mucosa-Associated Lymphoid Tissue Lymphoma 8 39291 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 9 39292 -NCIT:C96500 Colorectal Hodgkin Lymphoma 7 39293 -NCIT:C5499 Colon Hodgkin Lymphoma 8 39294 -NCIT:C96508 Colorectal Sarcoma 6 39295 -NCIT:C5495 Colon Sarcoma 7 39296 -NCIT:C156279 Colon Liposarcoma 8 39297 -NCIT:C5494 Colon Leiomyosarcoma 8 39298 -NCIT:C5516 Colon Kaposi Sarcoma 8 39299 -NCIT:C5548 Rectal Sarcoma 7 39300 -NCIT:C5549 Rectal Leiomyosarcoma 8 39301 -NCIT:C5550 Rectal Kaposi Sarcoma 8 39302 -NCIT:C5627 Rectal Rhabdomyosarcoma 8 39303 -NCIT:C96509 Colorectal Leiomyosarcoma 7 39304 -NCIT:C5494 Colon Leiomyosarcoma 8 39305 -NCIT:C5549 Rectal Leiomyosarcoma 8 39306 -NCIT:C96510 Colorectal Kaposi Sarcoma 7 39307 -NCIT:C5516 Colon Kaposi Sarcoma 8 39308 -NCIT:C5550 Rectal Kaposi Sarcoma 8 39309 -NCIT:C96511 Colorectal Angiosarcoma 7 39310 -NCIT:C7523 Malignant Small Intestinal Neoplasm 5 39311 -NCIT:C118826 Childhood Malignant Small Intestinal Neoplasm 6 39312 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 7 39313 -NCIT:C123933 Childhood Small Intestinal Carcinoma 7 39314 -NCIT:C132260 Small Intestinal Myeloid Sarcoma 6 39315 -NCIT:C170919 Malignant Jejunal Neoplasm 6 39316 -NCIT:C181157 Jejunal Carcinoma 7 39317 -NCIT:C181158 Jejunal Adenocarcinoma 8 39318 -NCIT:C188067 Jejunal Melanoma 7 39319 -NCIT:C176678 Metastatic Malignant Small Intestinal Neoplasm 6 39320 -NCIT:C176679 Advanced Malignant Small Intestinal Neoplasm 7 39321 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 39322 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 39323 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 39324 -NCIT:C8637 Metastatic Small Intestinal Carcinoma 7 39325 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 8 39326 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 39327 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 39328 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 39329 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 39330 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 39331 -NCIT:C8934 Metastatic Small Intestinal Adenocarcinoma 8 39332 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 39333 -NCIT:C4007 Small Intestinal Lymphoma 6 39334 -NCIT:C5337 Small Intestinal Hodgkin Lymphoma 7 39335 -NCIT:C7231 Small Intestinal Non-Hodgkin Lymphoma 7 39336 -NCIT:C96053 Small Intestinal B-Cell Non-Hodgkin Lymphoma 8 39337 -NCIT:C27409 Small Intestinal Burkitt Lymphoma 9 39338 -NCIT:C27410 Small Intestinal Atypical Burkitt/Burkitt-Like Lymphoma 10 39339 -NCIT:C27441 Small Intestinal Mantle Cell Lymphoma 9 39340 -NCIT:C3132 Alpha Heavy Chain Disease 9 39341 -NCIT:C5635 Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 9 39342 -NCIT:C45166 Campylobacter Jejuni-Associated Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 10 39343 -NCIT:C96055 Small Intestinal Diffuse Large B-Cell Lymphoma 9 39344 -NCIT:C96057 Small Intestinal High Grade B-Cell Lymphoma, Not Otherwise Specified 10 39345 -NCIT:C96056 Small Intestinal Follicular Lymphoma 9 39346 -NCIT:C96054 Small Intestinal T-Cell Non-Hodgkin Lymphoma 8 39347 -NCIT:C150504 Small Intestinal Monomorphic Epitheliotropic T-Cell Lymphoma 9 39348 -NCIT:C39610 Small Intestinal Enteropathy-Associated T-Cell Lymphoma 9 39349 -NCIT:C5335 Small Intestinal Sarcoma 6 39350 -NCIT:C5336 Small Intestinal Fibrosarcoma 7 39351 -NCIT:C7085 Small Intestinal Leiomyosarcoma 7 39352 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 8 39353 -NCIT:C82972 Duodenal Extraskeletal Osteosarcoma 7 39354 -NCIT:C96059 Small Intestinal Kaposi Sarcoma 7 39355 -NCIT:C96060 Small Intestinal Angiosarcoma 7 39356 -NCIT:C7524 Metastatic Malignant Neoplasm in the Small Intestine 6 39357 -NCIT:C7724 Small Intestinal Carcinoma 6 39358 -NCIT:C123933 Childhood Small Intestinal Carcinoma 7 39359 -NCIT:C133716 Small Intestinal Cancer by AJCC v7 Stage 7 39360 -NCIT:C4892 Stage 0 Small Intestinal Cancer AJCC v7 8 39361 -NCIT:C5807 Stage I Small Intestinal Cancer AJCC v7 8 39362 -NCIT:C5808 Stage II Small Intestinal Cancer AJCC v7 8 39363 -NCIT:C87791 Stage IIA Small Intestinal Cancer AJCC v7 9 39364 -NCIT:C87792 Stage IIB Small Intestinal Cancer AJCC v7 9 39365 -NCIT:C5809 Stage III Small Intestinal Cancer AJCC v7 8 39366 -NCIT:C87793 Stage IIIA Small Intestinal Cancer AJCC v7 9 39367 -NCIT:C87795 Stage IIIB Small Intestinal Cancer AJCC v7 9 39368 -NCIT:C5810 Stage IV Small Intestinal Cancer AJCC v7 8 39369 -NCIT:C153356 Refractory Small Intestinal Carcinoma 7 39370 -NCIT:C181157 Jejunal Carcinoma 7 39371 -NCIT:C181158 Jejunal Adenocarcinoma 8 39372 -NCIT:C43534 Small Intestinal Squamous Cell Carcinoma 7 39373 -NCIT:C43535 Small Intestinal Adenosquamous Carcinoma 7 39374 -NCIT:C43537 Small Intestinal Medullary Carcinoma 7 39375 -NCIT:C43538 Small Intestinal Undifferentiated Carcinoma 7 39376 -NCIT:C4803 Duodenal Carcinoma 7 39377 -NCIT:C27323 Resectable Duodenal Carcinoma 8 39378 -NCIT:C169108 Resectable Periampullary Adenocarcinoma 9 39379 -NCIT:C7889 Duodenal Adenocarcinoma 8 39380 -NCIT:C27322 Periampullary Adenocarcinoma 9 39381 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 10 39382 -NCIT:C169108 Resectable Periampullary Adenocarcinoma 10 39383 -NCIT:C9352 Recurrent Duodenal Carcinoma 8 39384 -NCIT:C7888 Small Intestinal Adenocarcinoma 7 39385 -NCIT:C133893 Small Intestinal Adenocarcinoma by AJCC v8 Stage 8 39386 -NCIT:C133894 Stage 0 Small Intestinal Adenocarcinoma AJCC v8 9 39387 -NCIT:C133895 Stage I Small Intestinal Adenocarcinoma AJCC v8 9 39388 -NCIT:C133896 Stage II Small Intestinal Adenocarcinoma AJCC v8 9 39389 -NCIT:C133897 Stage IIA Small Intestinal Adenocarcinoma AJCC v8 10 39390 -NCIT:C133898 Stage IIB Small Intestinal Adenocarcinoma AJCC v8 10 39391 -NCIT:C133899 Stage III Small Intestinal Adenocarcinoma AJCC v8 9 39392 -NCIT:C133900 Stage IIIA Small Intestinal Adenocarcinoma AJCC v8 10 39393 -NCIT:C133901 Stage IIIB Small Intestinal Adenocarcinoma AJCC v8 10 39394 -NCIT:C133902 Stage IV Small Intestinal Adenocarcinoma AJCC v8 9 39395 -NCIT:C175516 Unresectable Small Intestinal Adenocarcinoma 8 39396 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 9 39397 -NCIT:C181158 Jejunal Adenocarcinoma 8 39398 -NCIT:C43536 Small Intestinal Mucinous Adenocarcinoma 8 39399 -NCIT:C43543 Small Intestinal Signet Ring Cell Carcinoma 8 39400 -NCIT:C7889 Duodenal Adenocarcinoma 8 39401 -NCIT:C27322 Periampullary Adenocarcinoma 9 39402 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 10 39403 -NCIT:C169108 Resectable Periampullary Adenocarcinoma 10 39404 -NCIT:C8934 Metastatic Small Intestinal Adenocarcinoma 8 39405 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 39406 -NCIT:C7894 Recurrent Small Intestinal Carcinoma 7 39407 -NCIT:C9352 Recurrent Duodenal Carcinoma 8 39408 -NCIT:C8637 Metastatic Small Intestinal Carcinoma 7 39409 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 8 39410 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 39411 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 39412 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 39413 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 39414 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 39415 -NCIT:C8934 Metastatic Small Intestinal Adenocarcinoma 8 39416 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 39417 -NCIT:C8638 Unresectable Small Intestinal Carcinoma 7 39418 -NCIT:C175516 Unresectable Small Intestinal Adenocarcinoma 8 39419 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 9 39420 -NCIT:C8639 Resectable Small Intestinal Carcinoma 7 39421 -NCIT:C27323 Resectable Duodenal Carcinoma 8 39422 -NCIT:C169108 Resectable Periampullary Adenocarcinoma 9 39423 -NCIT:C96064 Small Intestinal Neuroendocrine Carcinoma 7 39424 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 39425 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 39426 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 39427 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 39428 -NCIT:C27449 Small Intestinal Small Cell Neuroendocrine Carcinoma 8 39429 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 39430 -NCIT:C96065 Small Intestinal Large Cell Neuroendocrine Carcinoma 8 39431 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 39432 -NCIT:C96066 Small Intestinal Mixed Adenoneuroendocrine Carcinoma 7 39433 -NCIT:C9328 Malignant Duodenal Neoplasm 6 39434 -NCIT:C4803 Duodenal Carcinoma 7 39435 -NCIT:C27323 Resectable Duodenal Carcinoma 8 39436 -NCIT:C169108 Resectable Periampullary Adenocarcinoma 9 39437 -NCIT:C7889 Duodenal Adenocarcinoma 8 39438 -NCIT:C27322 Periampullary Adenocarcinoma 9 39439 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 10 39440 -NCIT:C169108 Resectable Periampullary Adenocarcinoma 10 39441 -NCIT:C9352 Recurrent Duodenal Carcinoma 8 39442 -NCIT:C82972 Duodenal Extraskeletal Osteosarcoma 7 39443 -NCIT:C9263 Recurrent Malignant Duodenal Neoplasm 7 39444 -NCIT:C9352 Recurrent Duodenal Carcinoma 8 39445 -NCIT:C96063 Intestinal Neuroendocrine Carcinoma 5 39446 -NCIT:C96064 Small Intestinal Neuroendocrine Carcinoma 6 39447 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 7 39448 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 39449 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 39450 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 39451 -NCIT:C27449 Small Intestinal Small Cell Neuroendocrine Carcinoma 7 39452 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 39453 -NCIT:C96065 Small Intestinal Large Cell Neuroendocrine Carcinoma 7 39454 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 39455 -NCIT:C96156 Colorectal Neuroendocrine Carcinoma 6 39456 -NCIT:C43587 Colorectal Small Cell Neuroendocrine Carcinoma 7 39457 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 8 39458 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 8 39459 -NCIT:C96157 Colorectal Large Cell Neuroendocrine Carcinoma 7 39460 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 8 39461 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 8 39462 -NCIT:C4609 Benign Intestinal Neoplasm 4 39463 -NCIT:C3600 Benign Small Intestinal Neoplasm 5 39464 -NCIT:C4775 Benign Duodenal Neoplasm 6 39465 -NCIT:C170725 Benign Periampullary Neoplasm 7 39466 -NCIT:C4932 Duodenal Adenoma 7 39467 -NCIT:C5338 Duodenal Villous Adenoma 8 39468 -NCIT:C5339 Small Intestinal Lipoma 6 39469 -NCIT:C5340 Small Intestinal Adenoma 6 39470 -NCIT:C43551 Small Intestinal Villous Adenoma 7 39471 -NCIT:C5338 Duodenal Villous Adenoma 8 39472 -NCIT:C43552 Small Intestinal Tubular Adenoma 7 39473 -NCIT:C43553 Small Intestinal Tubulovillous Adenoma 7 39474 -NCIT:C4932 Duodenal Adenoma 7 39475 -NCIT:C5338 Duodenal Villous Adenoma 8 39476 -NCIT:C7725 Small Intestinal Leiomyoma 6 39477 -NCIT:C4610 Benign Colorectal Neoplasm 5 39478 -NCIT:C2894 Benign Colon Neoplasm 6 39479 -NCIT:C3864 Colon Adenoma 7 39480 -NCIT:C128171 Colon Adenoma with Severe Dysplasia 8 39481 -NCIT:C172682 Colon Conventional Adenoma 8 39482 -NCIT:C3495 Colon Villous Adenoma 9 39483 -NCIT:C5520 Cecum Villous Adenoma 10 39484 -NCIT:C5496 Colon Tubulovillous Adenoma 9 39485 -NCIT:C7041 Colon Tubular Adenoma 9 39486 -NCIT:C43577 Colon Traditional Serrated Adenoma 8 39487 -NCIT:C96464 Colon Serrated Lesions and Polyps 8 39488 -NCIT:C96479 Colon Adenomatous Polyp 8 39489 -NCIT:C4772 Benign Cecum Neoplasm 7 39490 -NCIT:C5520 Cecum Villous Adenoma 8 39491 -NCIT:C5395 Colon Cavernous Hemangioma 7 39492 -NCIT:C5492 Colon Leiomyoma 7 39493 -NCIT:C5493 Colon Lipoma 7 39494 -NCIT:C5500 Colon Lymphangioma 7 39495 -NCIT:C7042 Colon Ganglioneuroma 7 39496 -NCIT:C4774 Benign Rectal Neoplasm 6 39497 -NCIT:C5546 Rectal Adenoma 7 39498 -NCIT:C172683 Rectal Conventional Adenoma 8 39499 -NCIT:C4919 Rectal Villous Adenoma 9 39500 -NCIT:C5620 Rectal Tubulovillous Adenoma 9 39501 -NCIT:C96477 Rectal Tubular Adenoma 9 39502 -NCIT:C5621 Rectal Adenoma with Severe Dysplasia 8 39503 -NCIT:C96463 Rectal Traditional Serrated Adenoma 8 39504 -NCIT:C96465 Rectal Serrated Lesions and Polyps 8 39505 -NCIT:C96480 Rectal Adenomatous Polyp 8 39506 -NCIT:C5551 Rectal Lipoma 7 39507 -NCIT:C5552 Rectal Leiomyoma 7 39508 -NCIT:C5673 Colorectal Adenoma 6 39509 -NCIT:C172680 Colorectal Conventional Adenoma 7 39510 -NCIT:C172682 Colon Conventional Adenoma 8 39511 -NCIT:C3495 Colon Villous Adenoma 9 39512 -NCIT:C5520 Cecum Villous Adenoma 10 39513 -NCIT:C5496 Colon Tubulovillous Adenoma 9 39514 -NCIT:C7041 Colon Tubular Adenoma 9 39515 -NCIT:C172683 Rectal Conventional Adenoma 8 39516 -NCIT:C4919 Rectal Villous Adenoma 9 39517 -NCIT:C5620 Rectal Tubulovillous Adenoma 9 39518 -NCIT:C96477 Rectal Tubular Adenoma 9 39519 -NCIT:C27456 Colorectal Tubular Adenoma 8 39520 -NCIT:C7041 Colon Tubular Adenoma 9 39521 -NCIT:C96477 Rectal Tubular Adenoma 9 39522 -NCIT:C5675 Colorectal Tubulovillous Adenoma 8 39523 -NCIT:C5496 Colon Tubulovillous Adenoma 9 39524 -NCIT:C5620 Rectal Tubulovillous Adenoma 9 39525 -NCIT:C5676 Colorectal Villous Adenoma 8 39526 -NCIT:C3495 Colon Villous Adenoma 9 39527 -NCIT:C5520 Cecum Villous Adenoma 10 39528 -NCIT:C4919 Rectal Villous Adenoma 9 39529 -NCIT:C27457 Colorectal Adenoma with Moderate Dysplasia 7 39530 -NCIT:C27458 Colorectal Adenoma with Mild Dysplasia 7 39531 -NCIT:C3864 Colon Adenoma 7 39532 -NCIT:C128171 Colon Adenoma with Severe Dysplasia 8 39533 -NCIT:C172682 Colon Conventional Adenoma 8 39534 -NCIT:C3495 Colon Villous Adenoma 9 39535 -NCIT:C5520 Cecum Villous Adenoma 10 39536 -NCIT:C5496 Colon Tubulovillous Adenoma 9 39537 -NCIT:C7041 Colon Tubular Adenoma 9 39538 -NCIT:C43577 Colon Traditional Serrated Adenoma 8 39539 -NCIT:C96464 Colon Serrated Lesions and Polyps 8 39540 -NCIT:C96479 Colon Adenomatous Polyp 8 39541 -NCIT:C5546 Rectal Adenoma 7 39542 -NCIT:C172683 Rectal Conventional Adenoma 8 39543 -NCIT:C4919 Rectal Villous Adenoma 9 39544 -NCIT:C5620 Rectal Tubulovillous Adenoma 9 39545 -NCIT:C96477 Rectal Tubular Adenoma 9 39546 -NCIT:C5621 Rectal Adenoma with Severe Dysplasia 8 39547 -NCIT:C96463 Rectal Traditional Serrated Adenoma 8 39548 -NCIT:C96465 Rectal Serrated Lesions and Polyps 8 39549 -NCIT:C96480 Rectal Adenomatous Polyp 8 39550 -NCIT:C5674 Colorectal Traditional Serrated Adenoma 7 39551 -NCIT:C43577 Colon Traditional Serrated Adenoma 8 39552 -NCIT:C96463 Rectal Traditional Serrated Adenoma 8 39553 -NCIT:C96468 Colorectal Filiform Serrated Adenoma 8 39554 -NCIT:C5685 Colorectal Adenoma with Severe Dysplasia 7 39555 -NCIT:C128171 Colon Adenoma with Severe Dysplasia 8 39556 -NCIT:C5621 Rectal Adenoma with Severe Dysplasia 8 39557 -NCIT:C83176 Colorectal Serrated Lesions and Polyps 7 39558 -NCIT:C96464 Colon Serrated Lesions and Polyps 8 39559 -NCIT:C96465 Rectal Serrated Lesions and Polyps 8 39560 -NCIT:C96478 Colorectal Adenomatous Polyp 7 39561 -NCIT:C96479 Colon Adenomatous Polyp 8 39562 -NCIT:C96480 Rectal Adenomatous Polyp 8 39563 -NCIT:C5677 Colorectal Leiomyoma 6 39564 -NCIT:C5492 Colon Leiomyoma 7 39565 -NCIT:C5552 Rectal Leiomyoma 7 39566 -NCIT:C5678 Colorectal Lipoma 6 39567 -NCIT:C5493 Colon Lipoma 7 39568 -NCIT:C5551 Rectal Lipoma 7 39569 -NCIT:C96512 Colorectal Schwannoma 6 39570 -NCIT:C96513 Colorectal Perineurioma 6 39571 -NCIT:C96514 Colorectal Ganglioneuroma 6 39572 -NCIT:C7042 Colon Ganglioneuroma 7 39573 -NCIT:C96516 Colorectal Benign Granular Cell Tumor 6 39574 -NCIT:C5695 Intestinal Neuroendocrine Neoplasm 4 39575 -NCIT:C5803 Small Intestinal Neuroendocrine Neoplasm 5 39576 -NCIT:C96061 Small Intestinal Neuroendocrine Tumor 6 39577 -NCIT:C135080 Duodenal Neuroendocrine Tumor 7 39578 -NCIT:C135075 Duodenal Neuroendocrine Tumor by AJCC v8 Stage 8 39579 -NCIT:C135076 Stage I Duodenal Neuroendocrine Tumor AJCC v8 9 39580 -NCIT:C135077 Stage II Duodenal Neuroendocrine Tumor AJCC v8 9 39581 -NCIT:C135078 Stage III Duodenal Neuroendocrine Tumor AJCC v8 9 39582 -NCIT:C135079 Stage IV Duodenal Neuroendocrine Tumor AJCC v8 9 39583 -NCIT:C160442 Duodenal Neuroendocrine Tumor G2 8 39584 -NCIT:C172672 Duodenal Neuroendocrine Tumor G3 8 39585 -NCIT:C27407 Duodenal Somatostatin-Producing Neuroendocrine Tumor 8 39586 -NCIT:C5731 Duodenal Gastrin-Producing Neuroendocrine Tumor 8 39587 -NCIT:C6425 Duodenal Neuroendocrine Tumor G1 8 39588 -NCIT:C135090 Jejunal Neuroendocrine Tumor 7 39589 -NCIT:C135119 Jejunal Neuroendocrine Tumor by AJCC v8 Stage 8 39590 -NCIT:C135120 Stage I Jejunal Neuroendocrine Tumor AJCC v8 9 39591 -NCIT:C135121 Stage II Jejunal Neuroendocrine Tumor AJCC v8 9 39592 -NCIT:C135122 Stage III Jejunal Neuroendocrine Tumor AJCC v8 9 39593 -NCIT:C135123 Stage IV Jejunal Neuroendocrine Tumor AJCC v8 9 39594 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 8 39595 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 8 39596 -NCIT:C5787 Jejunal Somatostatin-Producing Neuroendocrine Tumor 8 39597 -NCIT:C6429 Jejunal Neuroendocrine Tumor G1 8 39598 -NCIT:C135092 Ileal Neuroendocrine Tumor 7 39599 -NCIT:C135124 Ileal Neuroendocrine Tumor by AJCC v8 Stage 8 39600 -NCIT:C135125 Stage I Ileal Neuroendocrine Tumor AJCC v8 9 39601 -NCIT:C135126 Stage II Ileal Neuroendocrine Tumor AJCC v8 9 39602 -NCIT:C135127 Stage III Ileal Neuroendocrine Tumor AJCC v8 9 39603 -NCIT:C135128 Stage IV Ileal Neuroendocrine Tumor AJCC v8 9 39604 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 8 39605 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 8 39606 -NCIT:C4935 Ileal Neuroendocrine Tumor G1 8 39607 -NCIT:C172664 Small Intestinal Neuroendocrine Tumor G3 7 39608 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 8 39609 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 8 39610 -NCIT:C172672 Duodenal Neuroendocrine Tumor G3 8 39611 -NCIT:C27450 Small Intestinal Gastrin-Producing Neuroendocrine Tumor 7 39612 -NCIT:C5731 Duodenal Gastrin-Producing Neuroendocrine Tumor 8 39613 -NCIT:C27451 Small Intestinal Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 7 39614 -NCIT:C27452 Small Intestinal L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 7 39615 -NCIT:C27453 Small Intestinal Somatostatin-Producing Neuroendocrine Tumor 7 39616 -NCIT:C27407 Duodenal Somatostatin-Producing Neuroendocrine Tumor 8 39617 -NCIT:C5787 Jejunal Somatostatin-Producing Neuroendocrine Tumor 8 39618 -NCIT:C27455 Small Intestinal VIP-Producing Neuroendocrine Tumor 7 39619 -NCIT:C4638 Small Intestinal Neuroendocrine Tumor G1 7 39620 -NCIT:C4935 Ileal Neuroendocrine Tumor G1 8 39621 -NCIT:C6425 Duodenal Neuroendocrine Tumor G1 8 39622 -NCIT:C6429 Jejunal Neuroendocrine Tumor G1 8 39623 -NCIT:C96067 Small Intestinal Neuroendocrine Tumor G2 7 39624 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 8 39625 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 8 39626 -NCIT:C160442 Duodenal Neuroendocrine Tumor G2 8 39627 -NCIT:C96073 Small Intestinal Composite Gangliocytoma/Neuroma and Neuroendocrine Tumor 7 39628 -NCIT:C96064 Small Intestinal Neuroendocrine Carcinoma 6 39629 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 7 39630 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 39631 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 39632 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 39633 -NCIT:C27449 Small Intestinal Small Cell Neuroendocrine Carcinoma 7 39634 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 39635 -NCIT:C96065 Small Intestinal Large Cell Neuroendocrine Carcinoma 7 39636 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 39637 -NCIT:C96062 Intestinal Neuroendocrine Tumor 5 39638 -NCIT:C172670 Intestinal Neuroendocrine Tumor G3 6 39639 -NCIT:C172664 Small Intestinal Neuroendocrine Tumor G3 7 39640 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 8 39641 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 8 39642 -NCIT:C172672 Duodenal Neuroendocrine Tumor G3 8 39643 -NCIT:C172701 Colorectal Neuroendocrine Tumor G3 7 39644 -NCIT:C172702 Colon Neuroendocrine Tumor G3 8 39645 -NCIT:C172703 Rectal Neuroendocrine Tumor G3 8 39646 -NCIT:C4637 Intestinal Neuroendocrine Tumor G1 6 39647 -NCIT:C4638 Small Intestinal Neuroendocrine Tumor G1 7 39648 -NCIT:C4935 Ileal Neuroendocrine Tumor G1 8 39649 -NCIT:C6425 Duodenal Neuroendocrine Tumor G1 8 39650 -NCIT:C6429 Jejunal Neuroendocrine Tumor G1 8 39651 -NCIT:C6424 Meckel Diverticulum Neuroendocrine Tumor G1 7 39652 -NCIT:C96160 Colorectal Neuroendocrine Tumor G1 7 39653 -NCIT:C5497 Colon Neuroendocrine Tumor G1 8 39654 -NCIT:C188043 Sigmoid Colon Neuroendocrine Tumor G1 9 39655 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 9 39656 -NCIT:C6426 Transverse Colon Neuroendocrine Tumor G1 9 39657 -NCIT:C6427 Ascending Colon Neuroendocrine Tumor G1 9 39658 -NCIT:C6428 Descending Colon Neuroendocrine Tumor G1 9 39659 -NCIT:C5547 Rectal Neuroendocrine Tumor G1 8 39660 -NCIT:C5325 Intestinal Composite Gangliocytoma/Neuroma and Neuroendocrine Tumor 6 39661 -NCIT:C96073 Small Intestinal Composite Gangliocytoma/Neuroma and Neuroendocrine Tumor 7 39662 -NCIT:C96061 Small Intestinal Neuroendocrine Tumor 6 39663 -NCIT:C135080 Duodenal Neuroendocrine Tumor 7 39664 -NCIT:C135075 Duodenal Neuroendocrine Tumor by AJCC v8 Stage 8 39665 -NCIT:C135076 Stage I Duodenal Neuroendocrine Tumor AJCC v8 9 39666 -NCIT:C135077 Stage II Duodenal Neuroendocrine Tumor AJCC v8 9 39667 -NCIT:C135078 Stage III Duodenal Neuroendocrine Tumor AJCC v8 9 39668 -NCIT:C135079 Stage IV Duodenal Neuroendocrine Tumor AJCC v8 9 39669 -NCIT:C160442 Duodenal Neuroendocrine Tumor G2 8 39670 -NCIT:C172672 Duodenal Neuroendocrine Tumor G3 8 39671 -NCIT:C27407 Duodenal Somatostatin-Producing Neuroendocrine Tumor 8 39672 -NCIT:C5731 Duodenal Gastrin-Producing Neuroendocrine Tumor 8 39673 -NCIT:C6425 Duodenal Neuroendocrine Tumor G1 8 39674 -NCIT:C135090 Jejunal Neuroendocrine Tumor 7 39675 -NCIT:C135119 Jejunal Neuroendocrine Tumor by AJCC v8 Stage 8 39676 -NCIT:C135120 Stage I Jejunal Neuroendocrine Tumor AJCC v8 9 39677 -NCIT:C135121 Stage II Jejunal Neuroendocrine Tumor AJCC v8 9 39678 -NCIT:C135122 Stage III Jejunal Neuroendocrine Tumor AJCC v8 9 39679 -NCIT:C135123 Stage IV Jejunal Neuroendocrine Tumor AJCC v8 9 39680 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 8 39681 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 8 39682 -NCIT:C5787 Jejunal Somatostatin-Producing Neuroendocrine Tumor 8 39683 -NCIT:C6429 Jejunal Neuroendocrine Tumor G1 8 39684 -NCIT:C135092 Ileal Neuroendocrine Tumor 7 39685 -NCIT:C135124 Ileal Neuroendocrine Tumor by AJCC v8 Stage 8 39686 -NCIT:C135125 Stage I Ileal Neuroendocrine Tumor AJCC v8 9 39687 -NCIT:C135126 Stage II Ileal Neuroendocrine Tumor AJCC v8 9 39688 -NCIT:C135127 Stage III Ileal Neuroendocrine Tumor AJCC v8 9 39689 -NCIT:C135128 Stage IV Ileal Neuroendocrine Tumor AJCC v8 9 39690 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 8 39691 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 8 39692 -NCIT:C4935 Ileal Neuroendocrine Tumor G1 8 39693 -NCIT:C172664 Small Intestinal Neuroendocrine Tumor G3 7 39694 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 8 39695 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 8 39696 -NCIT:C172672 Duodenal Neuroendocrine Tumor G3 8 39697 -NCIT:C27450 Small Intestinal Gastrin-Producing Neuroendocrine Tumor 7 39698 -NCIT:C5731 Duodenal Gastrin-Producing Neuroendocrine Tumor 8 39699 -NCIT:C27451 Small Intestinal Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 7 39700 -NCIT:C27452 Small Intestinal L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 7 39701 -NCIT:C27453 Small Intestinal Somatostatin-Producing Neuroendocrine Tumor 7 39702 -NCIT:C27407 Duodenal Somatostatin-Producing Neuroendocrine Tumor 8 39703 -NCIT:C5787 Jejunal Somatostatin-Producing Neuroendocrine Tumor 8 39704 -NCIT:C27455 Small Intestinal VIP-Producing Neuroendocrine Tumor 7 39705 -NCIT:C4638 Small Intestinal Neuroendocrine Tumor G1 7 39706 -NCIT:C4935 Ileal Neuroendocrine Tumor G1 8 39707 -NCIT:C6425 Duodenal Neuroendocrine Tumor G1 8 39708 -NCIT:C6429 Jejunal Neuroendocrine Tumor G1 8 39709 -NCIT:C96067 Small Intestinal Neuroendocrine Tumor G2 7 39710 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 8 39711 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 8 39712 -NCIT:C160442 Duodenal Neuroendocrine Tumor G2 8 39713 -NCIT:C96073 Small Intestinal Composite Gangliocytoma/Neuroma and Neuroendocrine Tumor 7 39714 -NCIT:C96159 Colorectal Neuroendocrine Tumor 6 39715 -NCIT:C135205 Colorectal Neuroendocrine Tumor by AJCC v8 Stage 7 39716 -NCIT:C135206 Stage I Colorectal Neuroendocrine Tumor AJCC v8 8 39717 -NCIT:C135368 Stage I Colon Neuroendocrine Tumor AJCC v8 9 39718 -NCIT:C135528 Stage I Rectal Neuroendocrine Tumor AJCC v8 9 39719 -NCIT:C135207 Stage IIA Colorectal Neuroendocrine Tumor AJCC v8 8 39720 -NCIT:C135369 Stage IIA Colon Neuroendocrine Tumor AJCC v8 9 39721 -NCIT:C135529 Stage IIA Rectal Neuroendocrine Tumor AJCC v8 9 39722 -NCIT:C135208 Stage IIB Colorectal Neuroendocrine Tumor AJCC v8 8 39723 -NCIT:C135370 Stage IIB Colon Neuroendocrine Tumor AJCC v8 9 39724 -NCIT:C135530 Stage IIB Rectal Neuroendocrine Tumor AJCC v8 9 39725 -NCIT:C135209 Stage IIIA Colorectal Neuroendocrine Tumor AJCC v8 8 39726 -NCIT:C135524 Stage IIIA Colon Neuroendocrine Tumor AJCC v8 9 39727 -NCIT:C135531 Stage IIIA Rectal Neuroendocrine Tumor AJCC v8 9 39728 -NCIT:C135210 Stage IIIB Colorectal Neuroendocrine Tumor AJCC v8 8 39729 -NCIT:C135525 Stage IIIB Colon Neuroendocrine Tumor AJCC v8 9 39730 -NCIT:C135532 Stage IIIB Rectal Neuroendocrine Tumor AJCC v8 9 39731 -NCIT:C135211 Stage IV Colorectal Neuroendocrine Tumor AJCC v8 8 39732 -NCIT:C135526 Stage IV Colon Neuroendocrine Tumor AJCC v8 9 39733 -NCIT:C135533 Stage IV Rectal Neuroendocrine Tumor AJCC v8 9 39734 -NCIT:C135214 Colon Neuroendocrine Tumor by AJCC v8 Stage 8 39735 -NCIT:C135368 Stage I Colon Neuroendocrine Tumor AJCC v8 9 39736 -NCIT:C135369 Stage IIA Colon Neuroendocrine Tumor AJCC v8 9 39737 -NCIT:C135370 Stage IIB Colon Neuroendocrine Tumor AJCC v8 9 39738 -NCIT:C135524 Stage IIIA Colon Neuroendocrine Tumor AJCC v8 9 39739 -NCIT:C135525 Stage IIIB Colon Neuroendocrine Tumor AJCC v8 9 39740 -NCIT:C135526 Stage IV Colon Neuroendocrine Tumor AJCC v8 9 39741 -NCIT:C135527 Rectal Neuroendocrine Tumor by AJCC v8 Stage 8 39742 -NCIT:C135528 Stage I Rectal Neuroendocrine Tumor AJCC v8 9 39743 -NCIT:C135529 Stage IIA Rectal Neuroendocrine Tumor AJCC v8 9 39744 -NCIT:C135530 Stage IIB Rectal Neuroendocrine Tumor AJCC v8 9 39745 -NCIT:C135531 Stage IIIA Rectal Neuroendocrine Tumor AJCC v8 9 39746 -NCIT:C135532 Stage IIIB Rectal Neuroendocrine Tumor AJCC v8 9 39747 -NCIT:C135533 Stage IV Rectal Neuroendocrine Tumor AJCC v8 9 39748 -NCIT:C135212 Colon Neuroendocrine Tumor 7 39749 -NCIT:C135214 Colon Neuroendocrine Tumor by AJCC v8 Stage 8 39750 -NCIT:C135368 Stage I Colon Neuroendocrine Tumor AJCC v8 9 39751 -NCIT:C135369 Stage IIA Colon Neuroendocrine Tumor AJCC v8 9 39752 -NCIT:C135370 Stage IIB Colon Neuroendocrine Tumor AJCC v8 9 39753 -NCIT:C135524 Stage IIIA Colon Neuroendocrine Tumor AJCC v8 9 39754 -NCIT:C135525 Stage IIIB Colon Neuroendocrine Tumor AJCC v8 9 39755 -NCIT:C135526 Stage IV Colon Neuroendocrine Tumor AJCC v8 9 39756 -NCIT:C160443 Colon Neuroendocrine Tumor G2 8 39757 -NCIT:C172702 Colon Neuroendocrine Tumor G3 8 39758 -NCIT:C27446 Colon Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 8 39759 -NCIT:C27447 Colon L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 8 39760 -NCIT:C5497 Colon Neuroendocrine Tumor G1 8 39761 -NCIT:C188043 Sigmoid Colon Neuroendocrine Tumor G1 9 39762 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 9 39763 -NCIT:C6426 Transverse Colon Neuroendocrine Tumor G1 9 39764 -NCIT:C6427 Ascending Colon Neuroendocrine Tumor G1 9 39765 -NCIT:C6428 Descending Colon Neuroendocrine Tumor G1 9 39766 -NCIT:C135213 Rectal Neuroendocrine Tumor 7 39767 -NCIT:C135527 Rectal Neuroendocrine Tumor by AJCC v8 Stage 8 39768 -NCIT:C135528 Stage I Rectal Neuroendocrine Tumor AJCC v8 9 39769 -NCIT:C135529 Stage IIA Rectal Neuroendocrine Tumor AJCC v8 9 39770 -NCIT:C135530 Stage IIB Rectal Neuroendocrine Tumor AJCC v8 9 39771 -NCIT:C135531 Stage IIIA Rectal Neuroendocrine Tumor AJCC v8 9 39772 -NCIT:C135532 Stage IIIB Rectal Neuroendocrine Tumor AJCC v8 9 39773 -NCIT:C135533 Stage IV Rectal Neuroendocrine Tumor AJCC v8 9 39774 -NCIT:C160451 Rectal Neuroendocrine Tumor G2 8 39775 -NCIT:C172703 Rectal Neuroendocrine Tumor G3 8 39776 -NCIT:C5547 Rectal Neuroendocrine Tumor G1 8 39777 -NCIT:C172701 Colorectal Neuroendocrine Tumor G3 7 39778 -NCIT:C172702 Colon Neuroendocrine Tumor G3 8 39779 -NCIT:C172703 Rectal Neuroendocrine Tumor G3 8 39780 -NCIT:C96160 Colorectal Neuroendocrine Tumor G1 7 39781 -NCIT:C5497 Colon Neuroendocrine Tumor G1 8 39782 -NCIT:C188043 Sigmoid Colon Neuroendocrine Tumor G1 9 39783 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 9 39784 -NCIT:C6426 Transverse Colon Neuroendocrine Tumor G1 9 39785 -NCIT:C6427 Ascending Colon Neuroendocrine Tumor G1 9 39786 -NCIT:C6428 Descending Colon Neuroendocrine Tumor G1 9 39787 -NCIT:C5547 Rectal Neuroendocrine Tumor G1 8 39788 -NCIT:C96161 Colorectal L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 7 39789 -NCIT:C27447 Colon L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 8 39790 -NCIT:C96162 Colorectal Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 7 39791 -NCIT:C27446 Colon Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 8 39792 -NCIT:C96163 Colorectal Neuroendocrine Tumor G2 7 39793 -NCIT:C160443 Colon Neuroendocrine Tumor G2 8 39794 -NCIT:C160451 Rectal Neuroendocrine Tumor G2 8 39795 -NCIT:C96165 Intestinal Neuroendocrine Tumor G2 6 39796 -NCIT:C96067 Small Intestinal Neuroendocrine Tumor G2 7 39797 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 8 39798 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 8 39799 -NCIT:C160442 Duodenal Neuroendocrine Tumor G2 8 39800 -NCIT:C96163 Colorectal Neuroendocrine Tumor G2 7 39801 -NCIT:C160443 Colon Neuroendocrine Tumor G2 8 39802 -NCIT:C160451 Rectal Neuroendocrine Tumor G2 8 39803 -NCIT:C96063 Intestinal Neuroendocrine Carcinoma 5 39804 -NCIT:C96064 Small Intestinal Neuroendocrine Carcinoma 6 39805 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 7 39806 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 39807 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 39808 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 39809 -NCIT:C27449 Small Intestinal Small Cell Neuroendocrine Carcinoma 7 39810 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 39811 -NCIT:C96065 Small Intestinal Large Cell Neuroendocrine Carcinoma 7 39812 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 39813 -NCIT:C96156 Colorectal Neuroendocrine Carcinoma 6 39814 -NCIT:C43587 Colorectal Small Cell Neuroendocrine Carcinoma 7 39815 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 8 39816 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 8 39817 -NCIT:C96157 Colorectal Large Cell Neuroendocrine Carcinoma 7 39818 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 8 39819 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 8 39820 -NCIT:C96152 Colorectal Neuroendocrine Neoplasm 5 39821 -NCIT:C5697 Colon Neuroendocrine Neoplasm 6 39822 -NCIT:C135212 Colon Neuroendocrine Tumor 7 39823 -NCIT:C135214 Colon Neuroendocrine Tumor by AJCC v8 Stage 8 39824 -NCIT:C135368 Stage I Colon Neuroendocrine Tumor AJCC v8 9 39825 -NCIT:C135369 Stage IIA Colon Neuroendocrine Tumor AJCC v8 9 39826 -NCIT:C135370 Stage IIB Colon Neuroendocrine Tumor AJCC v8 9 39827 -NCIT:C135524 Stage IIIA Colon Neuroendocrine Tumor AJCC v8 9 39828 -NCIT:C135525 Stage IIIB Colon Neuroendocrine Tumor AJCC v8 9 39829 -NCIT:C135526 Stage IV Colon Neuroendocrine Tumor AJCC v8 9 39830 -NCIT:C160443 Colon Neuroendocrine Tumor G2 8 39831 -NCIT:C172702 Colon Neuroendocrine Tumor G3 8 39832 -NCIT:C27446 Colon Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 8 39833 -NCIT:C27447 Colon L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 8 39834 -NCIT:C5497 Colon Neuroendocrine Tumor G1 8 39835 -NCIT:C188043 Sigmoid Colon Neuroendocrine Tumor G1 9 39836 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 9 39837 -NCIT:C6426 Transverse Colon Neuroendocrine Tumor G1 9 39838 -NCIT:C6427 Ascending Colon Neuroendocrine Tumor G1 9 39839 -NCIT:C6428 Descending Colon Neuroendocrine Tumor G1 9 39840 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 7 39841 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 7 39842 -NCIT:C5698 Rectal Neuroendocrine Neoplasm 6 39843 -NCIT:C135213 Rectal Neuroendocrine Tumor 7 39844 -NCIT:C135527 Rectal Neuroendocrine Tumor by AJCC v8 Stage 8 39845 -NCIT:C135528 Stage I Rectal Neuroendocrine Tumor AJCC v8 9 39846 -NCIT:C135529 Stage IIA Rectal Neuroendocrine Tumor AJCC v8 9 39847 -NCIT:C135530 Stage IIB Rectal Neuroendocrine Tumor AJCC v8 9 39848 -NCIT:C135531 Stage IIIA Rectal Neuroendocrine Tumor AJCC v8 9 39849 -NCIT:C135532 Stage IIIB Rectal Neuroendocrine Tumor AJCC v8 9 39850 -NCIT:C135533 Stage IV Rectal Neuroendocrine Tumor AJCC v8 9 39851 -NCIT:C160451 Rectal Neuroendocrine Tumor G2 8 39852 -NCIT:C172703 Rectal Neuroendocrine Tumor G3 8 39853 -NCIT:C5547 Rectal Neuroendocrine Tumor G1 8 39854 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 7 39855 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 7 39856 -NCIT:C96156 Colorectal Neuroendocrine Carcinoma 6 39857 -NCIT:C43587 Colorectal Small Cell Neuroendocrine Carcinoma 7 39858 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 8 39859 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 8 39860 -NCIT:C96157 Colorectal Large Cell Neuroendocrine Carcinoma 7 39861 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 8 39862 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 8 39863 -NCIT:C96159 Colorectal Neuroendocrine Tumor 6 39864 -NCIT:C135205 Colorectal Neuroendocrine Tumor by AJCC v8 Stage 7 39865 -NCIT:C135206 Stage I Colorectal Neuroendocrine Tumor AJCC v8 8 39866 -NCIT:C135368 Stage I Colon Neuroendocrine Tumor AJCC v8 9 39867 -NCIT:C135528 Stage I Rectal Neuroendocrine Tumor AJCC v8 9 39868 -NCIT:C135207 Stage IIA Colorectal Neuroendocrine Tumor AJCC v8 8 39869 -NCIT:C135369 Stage IIA Colon Neuroendocrine Tumor AJCC v8 9 39870 -NCIT:C135529 Stage IIA Rectal Neuroendocrine Tumor AJCC v8 9 39871 -NCIT:C135208 Stage IIB Colorectal Neuroendocrine Tumor AJCC v8 8 39872 -NCIT:C135370 Stage IIB Colon Neuroendocrine Tumor AJCC v8 9 39873 -NCIT:C135530 Stage IIB Rectal Neuroendocrine Tumor AJCC v8 9 39874 -NCIT:C135209 Stage IIIA Colorectal Neuroendocrine Tumor AJCC v8 8 39875 -NCIT:C135524 Stage IIIA Colon Neuroendocrine Tumor AJCC v8 9 39876 -NCIT:C135531 Stage IIIA Rectal Neuroendocrine Tumor AJCC v8 9 39877 -NCIT:C135210 Stage IIIB Colorectal Neuroendocrine Tumor AJCC v8 8 39878 -NCIT:C135525 Stage IIIB Colon Neuroendocrine Tumor AJCC v8 9 39879 -NCIT:C135532 Stage IIIB Rectal Neuroendocrine Tumor AJCC v8 9 39880 -NCIT:C135211 Stage IV Colorectal Neuroendocrine Tumor AJCC v8 8 39881 -NCIT:C135526 Stage IV Colon Neuroendocrine Tumor AJCC v8 9 39882 -NCIT:C135533 Stage IV Rectal Neuroendocrine Tumor AJCC v8 9 39883 -NCIT:C135214 Colon Neuroendocrine Tumor by AJCC v8 Stage 8 39884 -NCIT:C135368 Stage I Colon Neuroendocrine Tumor AJCC v8 9 39885 -NCIT:C135369 Stage IIA Colon Neuroendocrine Tumor AJCC v8 9 39886 -NCIT:C135370 Stage IIB Colon Neuroendocrine Tumor AJCC v8 9 39887 -NCIT:C135524 Stage IIIA Colon Neuroendocrine Tumor AJCC v8 9 39888 -NCIT:C135525 Stage IIIB Colon Neuroendocrine Tumor AJCC v8 9 39889 -NCIT:C135526 Stage IV Colon Neuroendocrine Tumor AJCC v8 9 39890 -NCIT:C135527 Rectal Neuroendocrine Tumor by AJCC v8 Stage 8 39891 -NCIT:C135528 Stage I Rectal Neuroendocrine Tumor AJCC v8 9 39892 -NCIT:C135529 Stage IIA Rectal Neuroendocrine Tumor AJCC v8 9 39893 -NCIT:C135530 Stage IIB Rectal Neuroendocrine Tumor AJCC v8 9 39894 -NCIT:C135531 Stage IIIA Rectal Neuroendocrine Tumor AJCC v8 9 39895 -NCIT:C135532 Stage IIIB Rectal Neuroendocrine Tumor AJCC v8 9 39896 -NCIT:C135533 Stage IV Rectal Neuroendocrine Tumor AJCC v8 9 39897 -NCIT:C135212 Colon Neuroendocrine Tumor 7 39898 -NCIT:C135214 Colon Neuroendocrine Tumor by AJCC v8 Stage 8 39899 -NCIT:C135368 Stage I Colon Neuroendocrine Tumor AJCC v8 9 39900 -NCIT:C135369 Stage IIA Colon Neuroendocrine Tumor AJCC v8 9 39901 -NCIT:C135370 Stage IIB Colon Neuroendocrine Tumor AJCC v8 9 39902 -NCIT:C135524 Stage IIIA Colon Neuroendocrine Tumor AJCC v8 9 39903 -NCIT:C135525 Stage IIIB Colon Neuroendocrine Tumor AJCC v8 9 39904 -NCIT:C135526 Stage IV Colon Neuroendocrine Tumor AJCC v8 9 39905 -NCIT:C160443 Colon Neuroendocrine Tumor G2 8 39906 -NCIT:C172702 Colon Neuroendocrine Tumor G3 8 39907 -NCIT:C27446 Colon Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 8 39908 -NCIT:C27447 Colon L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 8 39909 -NCIT:C5497 Colon Neuroendocrine Tumor G1 8 39910 -NCIT:C188043 Sigmoid Colon Neuroendocrine Tumor G1 9 39911 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 9 39912 -NCIT:C6426 Transverse Colon Neuroendocrine Tumor G1 9 39913 -NCIT:C6427 Ascending Colon Neuroendocrine Tumor G1 9 39914 -NCIT:C6428 Descending Colon Neuroendocrine Tumor G1 9 39915 -NCIT:C135213 Rectal Neuroendocrine Tumor 7 39916 -NCIT:C135527 Rectal Neuroendocrine Tumor by AJCC v8 Stage 8 39917 -NCIT:C135528 Stage I Rectal Neuroendocrine Tumor AJCC v8 9 39918 -NCIT:C135529 Stage IIA Rectal Neuroendocrine Tumor AJCC v8 9 39919 -NCIT:C135530 Stage IIB Rectal Neuroendocrine Tumor AJCC v8 9 39920 -NCIT:C135531 Stage IIIA Rectal Neuroendocrine Tumor AJCC v8 9 39921 -NCIT:C135532 Stage IIIB Rectal Neuroendocrine Tumor AJCC v8 9 39922 -NCIT:C135533 Stage IV Rectal Neuroendocrine Tumor AJCC v8 9 39923 -NCIT:C160451 Rectal Neuroendocrine Tumor G2 8 39924 -NCIT:C172703 Rectal Neuroendocrine Tumor G3 8 39925 -NCIT:C5547 Rectal Neuroendocrine Tumor G1 8 39926 -NCIT:C172701 Colorectal Neuroendocrine Tumor G3 7 39927 -NCIT:C172702 Colon Neuroendocrine Tumor G3 8 39928 -NCIT:C172703 Rectal Neuroendocrine Tumor G3 8 39929 -NCIT:C96160 Colorectal Neuroendocrine Tumor G1 7 39930 -NCIT:C5497 Colon Neuroendocrine Tumor G1 8 39931 -NCIT:C188043 Sigmoid Colon Neuroendocrine Tumor G1 9 39932 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 9 39933 -NCIT:C6426 Transverse Colon Neuroendocrine Tumor G1 9 39934 -NCIT:C6427 Ascending Colon Neuroendocrine Tumor G1 9 39935 -NCIT:C6428 Descending Colon Neuroendocrine Tumor G1 9 39936 -NCIT:C5547 Rectal Neuroendocrine Tumor G1 8 39937 -NCIT:C96161 Colorectal L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 7 39938 -NCIT:C27447 Colon L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 8 39939 -NCIT:C96162 Colorectal Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 7 39940 -NCIT:C27446 Colon Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 8 39941 -NCIT:C96163 Colorectal Neuroendocrine Tumor G2 7 39942 -NCIT:C160443 Colon Neuroendocrine Tumor G2 8 39943 -NCIT:C160451 Rectal Neuroendocrine Tumor G2 8 39944 -NCIT:C7658 Intestinal Intraepithelial Neoplasia 4 39945 -NCIT:C27459 Colorectal Intraepithelial Neoplasia 5 39946 -NCIT:C27460 Colorectal Low Grade Intraepithelial Neoplasia 6 39947 -NCIT:C27461 Colorectal High Grade Intraepithelial Neoplasia 6 39948 -NCIT:C27462 Small Intestinal Intraepithelial Neoplasia 5 39949 -NCIT:C27463 Small Intestinal Low Grade Intraepithelial Neoplasia 6 39950 -NCIT:C27464 Small Intestinal High Grade Intraepithelial Neoplasia 6 39951 -NCIT:C3305 Pancreatic Neoplasm 3 39952 -NCIT:C27031 Pancreatic Neuroendocrine Neoplasm 4 39953 -NCIT:C165447 Metastatic Pancreatic Neuroendocrine Neoplasm 5 39954 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 6 39955 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 7 39956 -NCIT:C156488 Metastatic Pancreatic Neuroendocrine Tumor 6 39957 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 7 39958 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 39959 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 39960 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 7 39961 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 7 39962 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 39963 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 7 39964 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 39965 -NCIT:C165448 Advanced Pancreatic Neuroendocrine Neoplasm 6 39966 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 7 39967 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 39968 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 39969 -NCIT:C165456 Unresectable Pancreatic Neuroendocrine Neoplasm 5 39970 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 6 39971 -NCIT:C190782 Unresectable Pancreatic Neuroendocrine Tumor 6 39972 -NCIT:C27720 Pancreatic Neuroendocrine Tumor 5 39973 -NCIT:C135560 Pancreatic Neuroendocrine Tumor by AJCC v8 Stage 6 39974 -NCIT:C135561 Stage I Pancreatic Neuroendocrine Tumor AJCC v8 7 39975 -NCIT:C135562 Stage II Pancreatic Neuroendocrine Tumor AJCC v8 7 39976 -NCIT:C135563 Stage III Pancreatic Neuroendocrine Tumor AJCC v8 7 39977 -NCIT:C135564 Stage IV Pancreatic Neuroendocrine Tumor AJCC v8 7 39978 -NCIT:C156488 Metastatic Pancreatic Neuroendocrine Tumor 6 39979 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 7 39980 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 39981 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 39982 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 7 39983 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 7 39984 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 39985 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 7 39986 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 39987 -NCIT:C172814 Pancreatic Neuroendocrine Tumor G3 6 39988 -NCIT:C190782 Unresectable Pancreatic Neuroendocrine Tumor 6 39989 -NCIT:C27454 Pancreatic VIP-Producing Neuroendocrine Tumor 6 39990 -NCIT:C95599 Pancreatic Vipoma 7 39991 -NCIT:C67461 Malignant Pancreatic Vipoma 8 39992 -NCIT:C27466 Pancreatic ACTH-Producing Neuroendocrine Tumor 6 39993 -NCIT:C28396 Pancreatic Delta Cell Neuroendocrine Tumor 6 39994 -NCIT:C28333 Non-Functioning Pancreatic Delta Cell Neuroendocrine Tumor 7 39995 -NCIT:C8006 Pancreatic Somatostatin-Producing Neuroendocrine Tumor 7 39996 -NCIT:C95595 Pancreatic Somatostatinoma 8 39997 -NCIT:C67369 Malignant Pancreatic Somatostatinoma 9 39998 -NCIT:C3062 Pancreatic Glucagon-Producing Neuroendocrine Tumor 6 39999 -NCIT:C95597 Pancreatic Glucagonoma 7 40000 -NCIT:C65187 Malignant Pancreatic Glucagonoma 8 40001 -NCIT:C3140 Pancreatic Insulin-Producing Neuroendocrine Tumor 6 40002 -NCIT:C95598 Pancreatic Insulinoma 7 40003 -NCIT:C65186 Malignant Pancreatic Insulinoma 8 40004 -NCIT:C4446 Pancreatic Serotonin-Producing Neuroendocrine Tumor 6 40005 -NCIT:C45835 Pancreatic Neuroendocrine Tumor G2 6 40006 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 7 40007 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 40008 -NCIT:C45838 Non-Functioning Pancreatic Neuroendocrine Tumor G2 7 40009 -NCIT:C45841 Functioning Pancreatic Neuroendocrine Tumor G2 7 40010 -NCIT:C45837 Non-Functioning Pancreatic Neuroendocrine Tumor 6 40011 -NCIT:C28333 Non-Functioning Pancreatic Delta Cell Neuroendocrine Tumor 7 40012 -NCIT:C45834 Pancreatic Neuroendocrine Microtumor 7 40013 -NCIT:C45838 Non-Functioning Pancreatic Neuroendocrine Tumor G2 7 40014 -NCIT:C95585 Non-Functioning Pancreatic Neuroendocrine Tumor G1 7 40015 -NCIT:C45840 Functioning Pancreatic Neuroendocrine Tumor 6 40016 -NCIT:C45841 Functioning Pancreatic Neuroendocrine Tumor G2 7 40017 -NCIT:C95595 Pancreatic Somatostatinoma 7 40018 -NCIT:C67369 Malignant Pancreatic Somatostatinoma 8 40019 -NCIT:C95596 Pancreatic Gastrinoma 7 40020 -NCIT:C67458 Malignant Pancreatic Gastrinoma 8 40021 -NCIT:C95597 Pancreatic Glucagonoma 7 40022 -NCIT:C65187 Malignant Pancreatic Glucagonoma 8 40023 -NCIT:C95598 Pancreatic Insulinoma 7 40024 -NCIT:C65186 Malignant Pancreatic Insulinoma 8 40025 -NCIT:C95599 Pancreatic Vipoma 7 40026 -NCIT:C67461 Malignant Pancreatic Vipoma 8 40027 -NCIT:C9069 Pancreatic Gastrin-Producing Neuroendocrine Tumor 6 40028 -NCIT:C95596 Pancreatic Gastrinoma 7 40029 -NCIT:C67458 Malignant Pancreatic Gastrinoma 8 40030 -NCIT:C95584 Pancreatic Neuroendocrine Tumor G1 6 40031 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 7 40032 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 40033 -NCIT:C95585 Non-Functioning Pancreatic Neuroendocrine Tumor G1 7 40034 -NCIT:C3770 Pancreatic Neuroendocrine Carcinoma 5 40035 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 6 40036 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 6 40037 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 6 40038 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 7 40039 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 6 40040 -NCIT:C95582 Pancreatic Large Cell Neuroendocrine Carcinoma 6 40041 -NCIT:C95583 Pancreatic Small Cell Neuroendocrine Carcinoma 6 40042 -NCIT:C4445 Pancreatic Exocrine Neoplasm 4 40043 -NCIT:C41247 Pancreatic Mucinous-Cystic Neoplasm 5 40044 -NCIT:C41246 Pancreatic Mucinous-Cystic Neoplasm with an Associated Invasive Carcinoma 6 40045 -NCIT:C95488 Non-Invasive Pancreatic Mucinous-Cystic Neoplasm 6 40046 -NCIT:C95483 Pancreatic Mucinous-Cystic Neoplasm, Low Grade 7 40047 -NCIT:C95493 Pancreatic Mucinous-Cystic Neoplasm, High Grade 7 40048 -NCIT:C41248 Pancreatic Serous Neoplasm 5 40049 -NCIT:C5724 Pancreatic Serous Cystadenocarcinoma 6 40050 -NCIT:C95470 Pancreatic Serous Adenoma 6 40051 -NCIT:C5712 Pancreatic Serous Cystadenoma 7 40052 -NCIT:C95471 Pancreatic Macrocystic Serous Cystadenoma 7 40053 -NCIT:C95475 Pancreatic Solid Serous Adenoma 7 40054 -NCIT:C95476 Von Hippel Lindau Syndrome-Associated Pancreatic Serous Adenoma 7 40055 -NCIT:C4613 Benign Exocrine Pancreas Neoplasm 5 40056 -NCIT:C4374 Pancreatic Cystadenoma 6 40057 -NCIT:C5712 Pancreatic Serous Cystadenoma 7 40058 -NCIT:C95471 Pancreatic Macrocystic Serous Cystadenoma 7 40059 -NCIT:C95470 Pancreatic Serous Adenoma 6 40060 -NCIT:C5712 Pancreatic Serous Cystadenoma 7 40061 -NCIT:C95471 Pancreatic Macrocystic Serous Cystadenoma 7 40062 -NCIT:C95475 Pancreatic Solid Serous Adenoma 7 40063 -NCIT:C95476 Von Hippel Lindau Syndrome-Associated Pancreatic Serous Adenoma 7 40064 -NCIT:C7412 Pancreatic Precancerous Condition 5 40065 -NCIT:C5716 Borderline Exocrine Pancreatic Neoplasm 6 40066 -NCIT:C41249 Pancreatic Intraductal Papillary-Mucinous Neoplasm, Low Grade 7 40067 -NCIT:C41251 Pancreatic Intraductal Papillary-Mucinous Neoplasm, High Grade 7 40068 -NCIT:C4845 Pancreatic Intraepithelial Neoplasia 7 40069 -NCIT:C172803 Low Grade Pancreatic Intraepithelial Neoplasia 8 40070 -NCIT:C4846 Pancreatic Intraepithelial Neoplasia-2 9 40071 -NCIT:C6820 Pancreatic Intraepithelial Neoplasia-1 9 40072 -NCIT:C95429 Pancreatic Intraepithelial Neoplasia-1A 10 40073 -NCIT:C95430 Pancreatic Intraepithelial Neoplasia-1B 10 40074 -NCIT:C95432 High Grade Pancreatic Intraepithelial Neoplasia 8 40075 -NCIT:C95488 Non-Invasive Pancreatic Mucinous-Cystic Neoplasm 7 40076 -NCIT:C95483 Pancreatic Mucinous-Cystic Neoplasm, Low Grade 8 40077 -NCIT:C95493 Pancreatic Mucinous-Cystic Neoplasm, High Grade 8 40078 -NCIT:C95506 Pancreatic Intraductal Tubulopapillary Neoplasm 7 40079 -NCIT:C7430 Malignant Exocrine Pancreas Neoplasm 5 40080 -NCIT:C37212 Solid Pseudopapillary Neoplasm of the Pancreas 6 40081 -NCIT:C190027 Childhood Solid Pseudopapillary Neoplasm of the Pancreas 7 40082 -NCIT:C3850 Pancreatic Carcinoma 6 40083 -NCIT:C134902 Pancreatic Cancer by AJCC v6 and v7 Stage 7 40084 -NCIT:C5711 Stage IV Pancreatic Cancer AJCC v6 and v7 8 40085 -NCIT:C5729 Stage 0 Pancreatic Cancer AJCC v6 and v7 8 40086 -NCIT:C7785 Stage I Pancreatic Cancer AJCC v6 and v7 8 40087 -NCIT:C88100 Stage IA Pancreatic Cancer AJCC v6 and v7 9 40088 -NCIT:C88101 Stage IB Pancreatic Cancer AJCC v6 and v7 9 40089 -NCIT:C7786 Stage II Pancreatic Cancer AJCC v6 and v7 8 40090 -NCIT:C88102 Stage IIA Pancreatic Cancer AJCC v6 and v7 9 40091 -NCIT:C88103 Stage IIB Pancreatic Cancer AJCC v6 and v7 9 40092 -NCIT:C7787 Stage III Pancreatic Cancer AJCC v6 and v7 8 40093 -NCIT:C134909 Pancreatic Cancer by AJCC v8 Stage 7 40094 -NCIT:C134914 Stage 0 Pancreatic Cancer AJCC v8 8 40095 -NCIT:C134915 Stage I Pancreatic Cancer AJCC v8 8 40096 -NCIT:C134917 Stage IA Pancreatic Cancer AJCC v8 9 40097 -NCIT:C134920 Stage IB Pancreatic Cancer AJCC v8 9 40098 -NCIT:C134921 Stage II Pancreatic Cancer AJCC v8 8 40099 -NCIT:C134925 Stage IIA Pancreatic Cancer AJCC v8 9 40100 -NCIT:C134927 Stage IIB Pancreatic Cancer AJCC v8 9 40101 -NCIT:C134928 Stage III Pancreatic Cancer AJCC v8 8 40102 -NCIT:C134930 Stage IV Pancreatic Cancer AJCC v8 8 40103 -NCIT:C142808 Refractory Pancreatic Carcinoma 7 40104 -NCIT:C162015 Refractory Pancreatic Adenocarcinoma 8 40105 -NCIT:C165450 Refractory Pancreatic Ductal Adenocarcinoma 9 40106 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 9 40107 -NCIT:C156069 Metastatic Pancreatic Carcinoma 7 40108 -NCIT:C165452 Advanced Pancreatic Carcinoma 8 40109 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 40110 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 40111 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 8 40112 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 40113 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 40114 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 40115 -NCIT:C190770 Metastatic Pancreatic Adenosquamous Carcinoma 8 40116 -NCIT:C190771 Metastatic Pancreatic Squamous Cell Carcinoma 8 40117 -NCIT:C8933 Metastatic Pancreatic Adenocarcinoma 8 40118 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 40119 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 40120 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 40121 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 9 40122 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 40123 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 40124 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 10 40125 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 40126 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 40127 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 9 40128 -NCIT:C173813 Pancreatic Squamous Cell Carcinoma 7 40129 -NCIT:C190771 Metastatic Pancreatic Squamous Cell Carcinoma 8 40130 -NCIT:C43298 Hereditary Pancreatic Carcinoma 7 40131 -NCIT:C45843 Pancreatic Mixed Adenoneuroendocrine Carcinoma 7 40132 -NCIT:C6878 Pancreatic Mixed Acinar-Neuroendocrine Carcinoma 8 40133 -NCIT:C6879 Pancreatic Mixed Ductal-Neuroendocrine Carcinoma 8 40134 -NCIT:C95460 Pancreatic Mixed Acinar-Ductal Neuroendocrine Carcinoma 8 40135 -NCIT:C5018 Unresectable Pancreatic Carcinoma 7 40136 -NCIT:C162016 Unresectable Pancreatic Adenocarcinoma 8 40137 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 9 40138 -NCIT:C172245 Unresectable Pancreatic Ductal Adenocarcinoma 9 40139 -NCIT:C5099 Resectable Pancreatic Carcinoma 7 40140 -NCIT:C156906 Resectable Pancreatic Adenocarcinoma 8 40141 -NCIT:C151995 Resectable Pancreatic Ductal Adenocarcinoma 9 40142 -NCIT:C156907 Resectable Pancreatic Acinar Cell Carcinoma 9 40143 -NCIT:C157350 Borderline Resectable Pancreatic Adenocarcinoma 9 40144 -NCIT:C157348 Borderline Resectable Pancreatic Carcinoma 8 40145 -NCIT:C157350 Borderline Resectable Pancreatic Adenocarcinoma 9 40146 -NCIT:C174566 Resectable Pancreatic Adenosquamous Carcinoma 8 40147 -NCIT:C5721 Pancreatic Adenosquamous Carcinoma 7 40148 -NCIT:C174566 Resectable Pancreatic Adenosquamous Carcinoma 8 40149 -NCIT:C190770 Metastatic Pancreatic Adenosquamous Carcinoma 8 40150 -NCIT:C7626 Recurrent Pancreatic Carcinoma 7 40151 -NCIT:C155742 Recurrent Pancreatic Adenocarcinoma 8 40152 -NCIT:C153569 Recurrent Pancreatic Acinar Cell Carcinoma 9 40153 -NCIT:C153619 Recurrent Pancreatic Ductal Adenocarcinoma 9 40154 -NCIT:C153620 Recurrent Pancreatic Cystadenocarcinoma 9 40155 -NCIT:C8294 Pancreatic Adenocarcinoma 7 40156 -NCIT:C155742 Recurrent Pancreatic Adenocarcinoma 8 40157 -NCIT:C153569 Recurrent Pancreatic Acinar Cell Carcinoma 9 40158 -NCIT:C153619 Recurrent Pancreatic Ductal Adenocarcinoma 9 40159 -NCIT:C153620 Recurrent Pancreatic Cystadenocarcinoma 9 40160 -NCIT:C156906 Resectable Pancreatic Adenocarcinoma 8 40161 -NCIT:C151995 Resectable Pancreatic Ductal Adenocarcinoma 9 40162 -NCIT:C156907 Resectable Pancreatic Acinar Cell Carcinoma 9 40163 -NCIT:C157350 Borderline Resectable Pancreatic Adenocarcinoma 9 40164 -NCIT:C162015 Refractory Pancreatic Adenocarcinoma 8 40165 -NCIT:C165450 Refractory Pancreatic Ductal Adenocarcinoma 9 40166 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 9 40167 -NCIT:C162016 Unresectable Pancreatic Adenocarcinoma 8 40168 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 9 40169 -NCIT:C172245 Unresectable Pancreatic Ductal Adenocarcinoma 9 40170 -NCIT:C169041 Localized Pancreatic Adenocarcinoma 8 40171 -NCIT:C189009 Localized Pancreatic Ductal Adenocarcinoma 9 40172 -NCIT:C172813 Invasive Pancreatic Micropapillary Adenocarcinoma 8 40173 -NCIT:C3874 Pancreatic Cystadenocarcinoma 8 40174 -NCIT:C153620 Recurrent Pancreatic Cystadenocarcinoma 9 40175 -NCIT:C5724 Pancreatic Serous Cystadenocarcinoma 9 40176 -NCIT:C5727 Pancreatic Acinar Cell Cystadenocarcinoma 9 40177 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 10 40178 -NCIT:C5726 Pancreatic Intraductal Papillary-Mucinous Neoplasm with an Associated Invasive Carcinoma 8 40179 -NCIT:C7977 Pancreatic Acinar Cell Carcinoma 8 40180 -NCIT:C153569 Recurrent Pancreatic Acinar Cell Carcinoma 9 40181 -NCIT:C156907 Resectable Pancreatic Acinar Cell Carcinoma 9 40182 -NCIT:C190024 Childhood Pancreatic Acinar Cell Carcinoma 9 40183 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 10 40184 -NCIT:C5727 Pancreatic Acinar Cell Cystadenocarcinoma 9 40185 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 10 40186 -NCIT:C8933 Metastatic Pancreatic Adenocarcinoma 8 40187 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 40188 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 40189 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 40190 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 9 40191 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 40192 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 40193 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 10 40194 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 40195 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 40196 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 9 40197 -NCIT:C9120 Pancreatic Ductal Adenocarcinoma 8 40198 -NCIT:C151995 Resectable Pancreatic Ductal Adenocarcinoma 9 40199 -NCIT:C153619 Recurrent Pancreatic Ductal Adenocarcinoma 9 40200 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 9 40201 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 40202 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 40203 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 10 40204 -NCIT:C158961 Early Stage Pancreatic Ductal Adenocarcinoma 9 40205 -NCIT:C165450 Refractory Pancreatic Ductal Adenocarcinoma 9 40206 -NCIT:C172245 Unresectable Pancreatic Ductal Adenocarcinoma 9 40207 -NCIT:C172811 Pancreatic Poorly Cohesive Adenocarcinoma 9 40208 -NCIT:C5720 Pancreatic Signet Ring Cell Carcinoma 10 40209 -NCIT:C189009 Localized Pancreatic Ductal Adenocarcinoma 9 40210 -NCIT:C37214 Pancreatic Colloid Carcinoma 9 40211 -NCIT:C37256 Pancreatic Foamy Gland Adenocarcinoma 9 40212 -NCIT:C5722 Pancreatic Undifferentiated Carcinoma 9 40213 -NCIT:C172812 Pancreatic Undifferentiated Carcinoma with Rhabdoid Cells 10 40214 -NCIT:C5723 Pancreatic Undifferentiated Carcinoma with Osteoclast-Like Giant Cells 10 40215 -NCIT:C95426 Pancreatic Well Differentiated Ductal Adenocarcinoma 9 40216 -NCIT:C95427 Pancreatic Moderately Differentiated Ductal Adenocarcinoma 9 40217 -NCIT:C95428 Pancreatic Poorly Differentiated Ductal Adenocarcinoma 9 40218 -NCIT:C95465 Pancreatic Hepatoid Adenocarcinoma 9 40219 -NCIT:C95466 Pancreatic Medullary Carcinoma 9 40220 -NCIT:C95458 Pancreatic Mixed Acinar-Ductal Carcinoma 8 40221 -NCIT:C95507 Pancreatic Intraductal Tubulopapillary Neoplasm with an Associated Invasive Carcinoma 8 40222 -NCIT:C41246 Pancreatic Mucinous-Cystic Neoplasm with an Associated Invasive Carcinoma 6 40223 -NCIT:C4265 Pancreatoblastoma 6 40224 -NCIT:C190023 Childhood Pancreatoblastoma 7 40225 -NCIT:C95505 Pancreatic Intraductal Neoplasm 5 40226 -NCIT:C38342 Pancreatic Intraductal Papillary-Mucinous Neoplasm 6 40227 -NCIT:C113664 Main Duct Pancreatic Intraductal Papillary-Mucinous Neoplasm 7 40228 -NCIT:C113665 Branch Duct Pancreatic Intraductal Papillary-Mucinous Neoplasm 7 40229 -NCIT:C113667 Mixed Type Pancreatic Intraductal Papillary-Mucinous Neoplasm 7 40230 -NCIT:C41249 Pancreatic Intraductal Papillary-Mucinous Neoplasm, Low Grade 7 40231 -NCIT:C41251 Pancreatic Intraductal Papillary-Mucinous Neoplasm, High Grade 7 40232 -NCIT:C5726 Pancreatic Intraductal Papillary-Mucinous Neoplasm with an Associated Invasive Carcinoma 7 40233 -NCIT:C95508 Pancreatic Intraductal Papillary Mucinous Neoplasm, Gastric-Type 7 40234 -NCIT:C95510 Pancreatic Intraductal Papillary Mucinous Neoplasm, Intestinal-Type 7 40235 -NCIT:C95512 Pancreatic Intraductal Papillary Mucinous Neoplasm, Pancreatobiliary-Type 7 40236 -NCIT:C95514 Pancreatic Intraductal Papillary Mucinous Neoplasm, Oncocytic-Type 7 40237 -NCIT:C95506 Pancreatic Intraductal Tubulopapillary Neoplasm 6 40238 -NCIT:C95507 Pancreatic Intraductal Tubulopapillary Neoplasm with an Associated Invasive Carcinoma 6 40239 -NCIT:C95542 Pancreatic Acinar Cell Neoplasm 5 40240 -NCIT:C7977 Pancreatic Acinar Cell Carcinoma 6 40241 -NCIT:C153569 Recurrent Pancreatic Acinar Cell Carcinoma 7 40242 -NCIT:C156907 Resectable Pancreatic Acinar Cell Carcinoma 7 40243 -NCIT:C190024 Childhood Pancreatic Acinar Cell Carcinoma 7 40244 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 8 40245 -NCIT:C5727 Pancreatic Acinar Cell Cystadenocarcinoma 7 40246 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 8 40247 -NCIT:C4612 Benign Pancreatic Neoplasm 4 40248 -NCIT:C4613 Benign Exocrine Pancreas Neoplasm 5 40249 -NCIT:C4374 Pancreatic Cystadenoma 6 40250 -NCIT:C5712 Pancreatic Serous Cystadenoma 7 40251 -NCIT:C95471 Pancreatic Macrocystic Serous Cystadenoma 7 40252 -NCIT:C95470 Pancreatic Serous Adenoma 6 40253 -NCIT:C5712 Pancreatic Serous Cystadenoma 7 40254 -NCIT:C95471 Pancreatic Macrocystic Serous Cystadenoma 7 40255 -NCIT:C95475 Pancreatic Solid Serous Adenoma 7 40256 -NCIT:C95476 Von Hippel Lindau Syndrome-Associated Pancreatic Serous Adenoma 7 40257 -NCIT:C95559 Pancreatic Mature Teratoma 5 40258 -NCIT:C9005 Malignant Pancreatic Neoplasm 4 40259 -NCIT:C155852 Metastatic Malignant Pancreatic Neoplasm 5 40260 -NCIT:C156069 Metastatic Pancreatic Carcinoma 6 40261 -NCIT:C165452 Advanced Pancreatic Carcinoma 7 40262 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 8 40263 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 9 40264 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 7 40265 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 8 40266 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 9 40267 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 9 40268 -NCIT:C190770 Metastatic Pancreatic Adenosquamous Carcinoma 7 40269 -NCIT:C190771 Metastatic Pancreatic Squamous Cell Carcinoma 7 40270 -NCIT:C8933 Metastatic Pancreatic Adenocarcinoma 7 40271 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 8 40272 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 9 40273 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 9 40274 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 8 40275 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 9 40276 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 9 40277 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 9 40278 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 8 40279 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 9 40280 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 8 40281 -NCIT:C165447 Metastatic Pancreatic Neuroendocrine Neoplasm 6 40282 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 7 40283 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 40284 -NCIT:C156488 Metastatic Pancreatic Neuroendocrine Tumor 7 40285 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 8 40286 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 40287 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 40288 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 8 40289 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 8 40290 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 40291 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 8 40292 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 40293 -NCIT:C165448 Advanced Pancreatic Neuroendocrine Neoplasm 7 40294 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 8 40295 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 40296 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 40297 -NCIT:C165456 Unresectable Pancreatic Neuroendocrine Neoplasm 5 40298 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 6 40299 -NCIT:C190782 Unresectable Pancreatic Neuroendocrine Tumor 6 40300 -NCIT:C165631 Localized Malignant Pancreatic Neoplasm 5 40301 -NCIT:C169041 Localized Pancreatic Adenocarcinoma 6 40302 -NCIT:C189009 Localized Pancreatic Ductal Adenocarcinoma 7 40303 -NCIT:C188217 Pancreatic Mixed Ductal-Neuroendocrine Neoplasm 5 40304 -NCIT:C6879 Pancreatic Mixed Ductal-Neuroendocrine Carcinoma 6 40305 -NCIT:C3770 Pancreatic Neuroendocrine Carcinoma 5 40306 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 6 40307 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 6 40308 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 6 40309 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 7 40310 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 6 40311 -NCIT:C95582 Pancreatic Large Cell Neuroendocrine Carcinoma 6 40312 -NCIT:C95583 Pancreatic Small Cell Neuroendocrine Carcinoma 6 40313 -NCIT:C5714 Pancreatic Lymphoma 5 40314 -NCIT:C5789 Pancreatic Non-Hodgkin Lymphoma 6 40315 -NCIT:C5715 Pancreatic Sarcoma 5 40316 -NCIT:C188065 Pancreatic Leiomyosarcoma 6 40317 -NCIT:C7430 Malignant Exocrine Pancreas Neoplasm 5 40318 -NCIT:C37212 Solid Pseudopapillary Neoplasm of the Pancreas 6 40319 -NCIT:C190027 Childhood Solid Pseudopapillary Neoplasm of the Pancreas 7 40320 -NCIT:C3850 Pancreatic Carcinoma 6 40321 -NCIT:C134902 Pancreatic Cancer by AJCC v6 and v7 Stage 7 40322 -NCIT:C5711 Stage IV Pancreatic Cancer AJCC v6 and v7 8 40323 -NCIT:C5729 Stage 0 Pancreatic Cancer AJCC v6 and v7 8 40324 -NCIT:C7785 Stage I Pancreatic Cancer AJCC v6 and v7 8 40325 -NCIT:C88100 Stage IA Pancreatic Cancer AJCC v6 and v7 9 40326 -NCIT:C88101 Stage IB Pancreatic Cancer AJCC v6 and v7 9 40327 -NCIT:C7786 Stage II Pancreatic Cancer AJCC v6 and v7 8 40328 -NCIT:C88102 Stage IIA Pancreatic Cancer AJCC v6 and v7 9 40329 -NCIT:C88103 Stage IIB Pancreatic Cancer AJCC v6 and v7 9 40330 -NCIT:C7787 Stage III Pancreatic Cancer AJCC v6 and v7 8 40331 -NCIT:C134909 Pancreatic Cancer by AJCC v8 Stage 7 40332 -NCIT:C134914 Stage 0 Pancreatic Cancer AJCC v8 8 40333 -NCIT:C134915 Stage I Pancreatic Cancer AJCC v8 8 40334 -NCIT:C134917 Stage IA Pancreatic Cancer AJCC v8 9 40335 -NCIT:C134920 Stage IB Pancreatic Cancer AJCC v8 9 40336 -NCIT:C134921 Stage II Pancreatic Cancer AJCC v8 8 40337 -NCIT:C134925 Stage IIA Pancreatic Cancer AJCC v8 9 40338 -NCIT:C134927 Stage IIB Pancreatic Cancer AJCC v8 9 40339 -NCIT:C134928 Stage III Pancreatic Cancer AJCC v8 8 40340 -NCIT:C134930 Stage IV Pancreatic Cancer AJCC v8 8 40341 -NCIT:C142808 Refractory Pancreatic Carcinoma 7 40342 -NCIT:C162015 Refractory Pancreatic Adenocarcinoma 8 40343 -NCIT:C165450 Refractory Pancreatic Ductal Adenocarcinoma 9 40344 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 9 40345 -NCIT:C156069 Metastatic Pancreatic Carcinoma 7 40346 -NCIT:C165452 Advanced Pancreatic Carcinoma 8 40347 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 40348 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 40349 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 8 40350 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 40351 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 40352 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 40353 -NCIT:C190770 Metastatic Pancreatic Adenosquamous Carcinoma 8 40354 -NCIT:C190771 Metastatic Pancreatic Squamous Cell Carcinoma 8 40355 -NCIT:C8933 Metastatic Pancreatic Adenocarcinoma 8 40356 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 40357 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 40358 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 40359 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 9 40360 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 40361 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 40362 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 10 40363 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 40364 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 40365 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 9 40366 -NCIT:C173813 Pancreatic Squamous Cell Carcinoma 7 40367 -NCIT:C190771 Metastatic Pancreatic Squamous Cell Carcinoma 8 40368 -NCIT:C43298 Hereditary Pancreatic Carcinoma 7 40369 -NCIT:C45843 Pancreatic Mixed Adenoneuroendocrine Carcinoma 7 40370 -NCIT:C6878 Pancreatic Mixed Acinar-Neuroendocrine Carcinoma 8 40371 -NCIT:C6879 Pancreatic Mixed Ductal-Neuroendocrine Carcinoma 8 40372 -NCIT:C95460 Pancreatic Mixed Acinar-Ductal Neuroendocrine Carcinoma 8 40373 -NCIT:C5018 Unresectable Pancreatic Carcinoma 7 40374 -NCIT:C162016 Unresectable Pancreatic Adenocarcinoma 8 40375 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 9 40376 -NCIT:C172245 Unresectable Pancreatic Ductal Adenocarcinoma 9 40377 -NCIT:C5099 Resectable Pancreatic Carcinoma 7 40378 -NCIT:C156906 Resectable Pancreatic Adenocarcinoma 8 40379 -NCIT:C151995 Resectable Pancreatic Ductal Adenocarcinoma 9 40380 -NCIT:C156907 Resectable Pancreatic Acinar Cell Carcinoma 9 40381 -NCIT:C157350 Borderline Resectable Pancreatic Adenocarcinoma 9 40382 -NCIT:C157348 Borderline Resectable Pancreatic Carcinoma 8 40383 -NCIT:C157350 Borderline Resectable Pancreatic Adenocarcinoma 9 40384 -NCIT:C174566 Resectable Pancreatic Adenosquamous Carcinoma 8 40385 -NCIT:C5721 Pancreatic Adenosquamous Carcinoma 7 40386 -NCIT:C174566 Resectable Pancreatic Adenosquamous Carcinoma 8 40387 -NCIT:C190770 Metastatic Pancreatic Adenosquamous Carcinoma 8 40388 -NCIT:C7626 Recurrent Pancreatic Carcinoma 7 40389 -NCIT:C155742 Recurrent Pancreatic Adenocarcinoma 8 40390 -NCIT:C153569 Recurrent Pancreatic Acinar Cell Carcinoma 9 40391 -NCIT:C153619 Recurrent Pancreatic Ductal Adenocarcinoma 9 40392 -NCIT:C153620 Recurrent Pancreatic Cystadenocarcinoma 9 40393 -NCIT:C8294 Pancreatic Adenocarcinoma 7 40394 -NCIT:C155742 Recurrent Pancreatic Adenocarcinoma 8 40395 -NCIT:C153569 Recurrent Pancreatic Acinar Cell Carcinoma 9 40396 -NCIT:C153619 Recurrent Pancreatic Ductal Adenocarcinoma 9 40397 -NCIT:C153620 Recurrent Pancreatic Cystadenocarcinoma 9 40398 -NCIT:C156906 Resectable Pancreatic Adenocarcinoma 8 40399 -NCIT:C151995 Resectable Pancreatic Ductal Adenocarcinoma 9 40400 -NCIT:C156907 Resectable Pancreatic Acinar Cell Carcinoma 9 40401 -NCIT:C157350 Borderline Resectable Pancreatic Adenocarcinoma 9 40402 -NCIT:C162015 Refractory Pancreatic Adenocarcinoma 8 40403 -NCIT:C165450 Refractory Pancreatic Ductal Adenocarcinoma 9 40404 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 9 40405 -NCIT:C162016 Unresectable Pancreatic Adenocarcinoma 8 40406 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 9 40407 -NCIT:C172245 Unresectable Pancreatic Ductal Adenocarcinoma 9 40408 -NCIT:C169041 Localized Pancreatic Adenocarcinoma 8 40409 -NCIT:C189009 Localized Pancreatic Ductal Adenocarcinoma 9 40410 -NCIT:C172813 Invasive Pancreatic Micropapillary Adenocarcinoma 8 40411 -NCIT:C3874 Pancreatic Cystadenocarcinoma 8 40412 -NCIT:C153620 Recurrent Pancreatic Cystadenocarcinoma 9 40413 -NCIT:C5724 Pancreatic Serous Cystadenocarcinoma 9 40414 -NCIT:C5727 Pancreatic Acinar Cell Cystadenocarcinoma 9 40415 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 10 40416 -NCIT:C5726 Pancreatic Intraductal Papillary-Mucinous Neoplasm with an Associated Invasive Carcinoma 8 40417 -NCIT:C7977 Pancreatic Acinar Cell Carcinoma 8 40418 -NCIT:C153569 Recurrent Pancreatic Acinar Cell Carcinoma 9 40419 -NCIT:C156907 Resectable Pancreatic Acinar Cell Carcinoma 9 40420 -NCIT:C190024 Childhood Pancreatic Acinar Cell Carcinoma 9 40421 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 10 40422 -NCIT:C5727 Pancreatic Acinar Cell Cystadenocarcinoma 9 40423 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 10 40424 -NCIT:C8933 Metastatic Pancreatic Adenocarcinoma 8 40425 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 40426 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 40427 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 40428 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 9 40429 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 40430 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 40431 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 10 40432 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 40433 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 40434 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 9 40435 -NCIT:C9120 Pancreatic Ductal Adenocarcinoma 8 40436 -NCIT:C151995 Resectable Pancreatic Ductal Adenocarcinoma 9 40437 -NCIT:C153619 Recurrent Pancreatic Ductal Adenocarcinoma 9 40438 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 9 40439 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 40440 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 40441 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 10 40442 -NCIT:C158961 Early Stage Pancreatic Ductal Adenocarcinoma 9 40443 -NCIT:C165450 Refractory Pancreatic Ductal Adenocarcinoma 9 40444 -NCIT:C172245 Unresectable Pancreatic Ductal Adenocarcinoma 9 40445 -NCIT:C172811 Pancreatic Poorly Cohesive Adenocarcinoma 9 40446 -NCIT:C5720 Pancreatic Signet Ring Cell Carcinoma 10 40447 -NCIT:C189009 Localized Pancreatic Ductal Adenocarcinoma 9 40448 -NCIT:C37214 Pancreatic Colloid Carcinoma 9 40449 -NCIT:C37256 Pancreatic Foamy Gland Adenocarcinoma 9 40450 -NCIT:C5722 Pancreatic Undifferentiated Carcinoma 9 40451 -NCIT:C172812 Pancreatic Undifferentiated Carcinoma with Rhabdoid Cells 10 40452 -NCIT:C5723 Pancreatic Undifferentiated Carcinoma with Osteoclast-Like Giant Cells 10 40453 -NCIT:C95426 Pancreatic Well Differentiated Ductal Adenocarcinoma 9 40454 -NCIT:C95427 Pancreatic Moderately Differentiated Ductal Adenocarcinoma 9 40455 -NCIT:C95428 Pancreatic Poorly Differentiated Ductal Adenocarcinoma 9 40456 -NCIT:C95465 Pancreatic Hepatoid Adenocarcinoma 9 40457 -NCIT:C95466 Pancreatic Medullary Carcinoma 9 40458 -NCIT:C95458 Pancreatic Mixed Acinar-Ductal Carcinoma 8 40459 -NCIT:C95507 Pancreatic Intraductal Tubulopapillary Neoplasm with an Associated Invasive Carcinoma 8 40460 -NCIT:C41246 Pancreatic Mucinous-Cystic Neoplasm with an Associated Invasive Carcinoma 6 40461 -NCIT:C4265 Pancreatoblastoma 6 40462 -NCIT:C190023 Childhood Pancreatoblastoma 7 40463 -NCIT:C8543 Metastatic Malignant Neoplasm in the Pancreas 5 40464 -NCIT:C188077 Metastatic Carcinoma in the Pancreas 6 40465 -NCIT:C95558 Pancreatic Teratoma 4 40466 -NCIT:C95559 Pancreatic Mature Teratoma 5 40467 -NCIT:C3387 Gastric Neoplasm 3 40468 -NCIT:C3599 Benign Gastric Neoplasm 4 40469 -NCIT:C27438 Benign Gastric Soft Tissue Neoplasm 5 40470 -NCIT:C3876 Gastric Leiomyoma 6 40471 -NCIT:C5258 Gastric Lipoma 6 40472 -NCIT:C5481 Gastric Hemangioma 6 40473 -NCIT:C5482 Gastric Lymphangioma 6 40474 -NCIT:C95895 Benign Gastric Gastrointestinal Stromal Tumor 6 40475 -NCIT:C95902 Gastric Plexiform Fibromyxoma 6 40476 -NCIT:C5260 Mature Gastric Teratoma 5 40477 -NCIT:C5483 Benign Gastric Granular Cell Tumor 5 40478 -NCIT:C7699 Gastric Adenoma 5 40479 -NCIT:C172655 Oxyntic Gland Adenoma 6 40480 -NCIT:C8961 Fundic Gland Polyp 6 40481 -NCIT:C95773 Gastric Adenoma, Intestinal-Type 6 40482 -NCIT:C7036 Gastric Tubular Adenoma 7 40483 -NCIT:C7037 Gastric Tubulovillous Adenoma 7 40484 -NCIT:C7038 Gastric Villous Adenoma 7 40485 -NCIT:C95775 Gastric Adenoma, Gastric-Type 6 40486 -NCIT:C43526 Gastric Pyloric Gland Adenoma 7 40487 -NCIT:C95779 Foveolar-Type Adenoma 7 40488 -NCIT:C95901 Gastric Schwannoma 5 40489 -NCIT:C3955 Gastric Intraepithelial Neoplasia 4 40490 -NCIT:C27436 Low Grade Gastric Intraepithelial Neoplasia 5 40491 -NCIT:C27437 High Grade Gastric Intraepithelial Neoplasia 5 40492 -NCIT:C54094 Gastric Granular Cell Tumor 4 40493 -NCIT:C5483 Benign Gastric Granular Cell Tumor 5 40494 -NCIT:C5484 Malignant Gastric Granular Cell Tumor 5 40495 -NCIT:C5487 Gastric Soft Tissue Neoplasm 4 40496 -NCIT:C27438 Benign Gastric Soft Tissue Neoplasm 5 40497 -NCIT:C3876 Gastric Leiomyoma 6 40498 -NCIT:C5258 Gastric Lipoma 6 40499 -NCIT:C5481 Gastric Hemangioma 6 40500 -NCIT:C5482 Gastric Lymphangioma 6 40501 -NCIT:C95895 Benign Gastric Gastrointestinal Stromal Tumor 6 40502 -NCIT:C95902 Gastric Plexiform Fibromyxoma 6 40503 -NCIT:C27439 Gastric Sarcoma 5 40504 -NCIT:C27200 Gastric Leiomyosarcoma 6 40505 -NCIT:C5488 Gastric Liposarcoma 6 40506 -NCIT:C5529 Gastric Kaposi Sarcoma 6 40507 -NCIT:C5624 AIDS-Related Gastric Kaposi Sarcoma 7 40508 -NCIT:C95897 Gastric Malignant Gastrointestinal Stromal Tumor 6 40509 -NCIT:C95899 Gastric Synovial Sarcoma 6 40510 -NCIT:C5806 Gastric Gastrointestinal Stromal Tumor 5 40511 -NCIT:C87825 Stage IA Gastric Gastrointestinal Stromal Tumor 6 40512 -NCIT:C87826 Stage IB Gastric Gastrointestinal Stromal Tumor 6 40513 -NCIT:C87827 Stage II Gastric Gastrointestinal Stromal Tumor 6 40514 -NCIT:C87828 Stage IIIA Gastric Gastrointestinal Stromal Tumor 6 40515 -NCIT:C87829 Stage IIIB Gastric Gastrointestinal Stromal Tumor 6 40516 -NCIT:C87830 Stage IV Gastric Gastrointestinal Stromal Tumor 6 40517 -NCIT:C95895 Benign Gastric Gastrointestinal Stromal Tumor 6 40518 -NCIT:C95897 Gastric Malignant Gastrointestinal Stromal Tumor 6 40519 -NCIT:C95898 Gastric Gastrointestinal Stromal Tumor of Uncertain Malignant Potential 6 40520 -NCIT:C7022 Gastric Inflammatory Myofibroblastic Tumor 5 40521 -NCIT:C95900 Gastric Glomus Tumor 5 40522 -NCIT:C5696 Gastric Neuroendocrine Neoplasm 4 40523 -NCIT:C95871 Gastric Neuroendocrine Tumor 5 40524 -NCIT:C135045 Gastric Neuroendocrine Tumor by AJCC v8 Stage 6 40525 -NCIT:C135046 Stage I Gastric Neuroendocrine Tumor AJCC v8 7 40526 -NCIT:C135047 Stage II Gastric Neuroendocrine Tumor AJCC v8 7 40527 -NCIT:C135048 Stage III Gastric Neuroendocrine Tumor AJCC v8 7 40528 -NCIT:C135049 Stage IV Gastric Neuroendocrine Tumor AJCC v8 7 40529 -NCIT:C172662 Gastric Neuroendocrine Tumor G3 6 40530 -NCIT:C27443 Gastric Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 6 40531 -NCIT:C27444 Gastric Gastrin-Producing Neuroendocrine Tumor 6 40532 -NCIT:C4635 Gastric Neuroendocrine Tumor G1 6 40533 -NCIT:C95880 Gastric Neuroendocrine Tumor G2 6 40534 -NCIT:C95884 Gastric Neuroendocrine Carcinoma 5 40535 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 6 40536 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 7 40537 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 40538 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 40539 -NCIT:C6764 Gastric Small Cell Neuroendocrine Carcinoma 6 40540 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 7 40541 -NCIT:C95885 Gastric Large Cell Neuroendocrine Carcinoma 6 40542 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 7 40543 -NCIT:C6448 Gastric Germ Cell Tumor 4 40544 -NCIT:C5259 Gastric Teratoma 5 40545 -NCIT:C5256 Gastric Immature Teratoma 6 40546 -NCIT:C5260 Mature Gastric Teratoma 6 40547 -NCIT:C5486 Malignant Gastric Germ Cell Tumor 5 40548 -NCIT:C95749 Gastric Choriocarcinoma 6 40549 -NCIT:C9331 Malignant Gastric Neoplasm 4 40550 -NCIT:C170940 Malignant Fundus Neoplasm 5 40551 -NCIT:C8398 Gastric Fundus Carcinoma 6 40552 -NCIT:C4429 Gastric Fundus Carcinoma In Situ AJCC v6 and v7 7 40553 -NCIT:C172659 Gastroblastoma 5 40554 -NCIT:C190028 Childhood Gastroblastoma 6 40555 -NCIT:C175304 Unresectable Malignant Gastric Neoplasm 5 40556 -NCIT:C159775 Unresectable Gastric Carcinoma 6 40557 -NCIT:C154221 Unresectable Gastric Adenocarcinoma 7 40558 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 40559 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 40560 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 40561 -NCIT:C178519 Gastric Melanoma 5 40562 -NCIT:C188051 Malignant Pylorus Neoplasm 5 40563 -NCIT:C6795 Gastric Pylorus Carcinoma 6 40564 -NCIT:C4431 Gastric Pylorus Carcinoma In Situ AJCC v6 and v7 7 40565 -NCIT:C8400 Gastric Antrum Carcinoma In Situ AJCC v6 and v7 8 40566 -NCIT:C27439 Gastric Sarcoma 5 40567 -NCIT:C27200 Gastric Leiomyosarcoma 6 40568 -NCIT:C5488 Gastric Liposarcoma 6 40569 -NCIT:C5529 Gastric Kaposi Sarcoma 6 40570 -NCIT:C5624 AIDS-Related Gastric Kaposi Sarcoma 7 40571 -NCIT:C95897 Gastric Malignant Gastrointestinal Stromal Tumor 6 40572 -NCIT:C95899 Gastric Synovial Sarcoma 6 40573 -NCIT:C4636 Gastric Lymphoma 5 40574 -NCIT:C27235 Gastric Non-Hodgkin Lymphoma 6 40575 -NCIT:C5251 Gastric Burkitt Lymphoma 7 40576 -NCIT:C5253 Gastric Diffuse Large B-Cell Lymphoma 7 40577 -NCIT:C5254 Gastric T-Cell Non-Hodgkin Lymphoma 7 40578 -NCIT:C5266 Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 7 40579 -NCIT:C27763 Helicobacter Pylori-Associated Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 8 40580 -NCIT:C5638 Gastric Hodgkin Lymphoma 6 40581 -NCIT:C4911 Gastric Carcinoma 5 40582 -NCIT:C118813 Childhood Gastric Carcinoma 6 40583 -NCIT:C133638 Gastric Cancer by AJCC v8 Stage 6 40584 -NCIT:C133639 Gastric Cancer by AJCC v8 Clinical Stage 7 40585 -NCIT:C133647 Clinical Stage 0 Gastric Cancer AJCC v8 8 40586 -NCIT:C133648 Clinical Stage I Gastric Cancer AJCC v8 8 40587 -NCIT:C133649 Clinical Stage II Gastric Cancer AJCC v8 8 40588 -NCIT:C133681 Clinical Stage IIA Gastric Cancer AJCC v8 9 40589 -NCIT:C133682 Clinical Stage IIB Gastric Cancer AJCC v8 9 40590 -NCIT:C133650 Clinical Stage III Gastric Cancer AJCC v8 8 40591 -NCIT:C133651 Clinical Stage IV Gastric Cancer AJCC v8 8 40592 -NCIT:C133652 Clinical Stage IVA Gastric Cancer AJCC v8 9 40593 -NCIT:C133653 Clinical Stage IVB Gastric Cancer AJCC v8 9 40594 -NCIT:C133640 Gastric Cancer by AJCC v8 Pathologic Stage 7 40595 -NCIT:C133654 Pathologic Stage 0 Gastric Cancer AJCC v8 8 40596 -NCIT:C133655 Pathologic Stage I Gastric Cancer AJCC v8 8 40597 -NCIT:C133656 Pathologic Stage IA Gastric Cancer AJCC v8 9 40598 -NCIT:C133657 Pathologic Stage IB Gastric Cancer AJCC v8 9 40599 -NCIT:C133659 Pathologic Stage II Gastric Cancer AJCC v8 8 40600 -NCIT:C133660 Pathologic Stage IIA Gastric Cancer AJCC v8 9 40601 -NCIT:C133662 Pathologic Stage IIB Gastric Cancer AJCC v8 9 40602 -NCIT:C133663 Pathologic Stage III Gastric Cancer AJCC v8 8 40603 -NCIT:C133665 Pathologic Stage IIIA Gastric Cancer AJCC v8 9 40604 -NCIT:C133666 Pathologic Stage IIIB Gastric Cancer AJCC v8 9 40605 -NCIT:C133667 Pathologic Stage IIIC Gastric Cancer AJCC v8 9 40606 -NCIT:C133668 Pathologic Stage IV Gastric Cancer AJCC v8 8 40607 -NCIT:C133641 Gastric Cancer by AJCC v8 Postneoadjuvant Therapy Stage 7 40608 -NCIT:C133670 Postneoadjuvant Therapy Stage I Gastric Cancer AJCC v8 8 40609 -NCIT:C133671 Postneoadjuvant Therapy Stage II Gastric Cancer AJCC v8 8 40610 -NCIT:C133672 Postneoadjuvant Therapy Stage III Gastric Cancer AJCC v8 8 40611 -NCIT:C133673 Postneoadjuvant Therapy Stage IV Gastric Cancer AJCC v8 8 40612 -NCIT:C147996 Refractory Gastric Carcinoma 6 40613 -NCIT:C167074 Refractory Gastric Adenocarcinoma 7 40614 -NCIT:C153320 Metastatic Gastric Carcinoma 6 40615 -NCIT:C153319 Metastatic Gastric Adenocarcinoma 7 40616 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 40617 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 40618 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 40619 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 40620 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 40621 -NCIT:C165630 Metastatic Proximal Gastric Adenocarcinoma 8 40622 -NCIT:C166121 Oligometastatic Gastric Adenocarcinoma 8 40623 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 40624 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 40625 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 7 40626 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 40627 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 40628 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 40629 -NCIT:C162772 Locally Advanced Gastric Carcinoma 7 40630 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 40631 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 40632 -NCIT:C165299 Advanced Gastric Carcinoma 7 40633 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 40634 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 40635 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 40636 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 40637 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 40638 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 7 40639 -NCIT:C156167 Localized Gastric Carcinoma 6 40640 -NCIT:C159775 Unresectable Gastric Carcinoma 6 40641 -NCIT:C154221 Unresectable Gastric Adenocarcinoma 7 40642 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 40643 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 40644 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 40645 -NCIT:C162304 EBV-Related Gastric Carcinoma 6 40646 -NCIT:C4004 Gastric Adenocarcinoma 6 40647 -NCIT:C153319 Metastatic Gastric Adenocarcinoma 7 40648 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 40649 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 40650 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 40651 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 40652 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 40653 -NCIT:C165630 Metastatic Proximal Gastric Adenocarcinoma 8 40654 -NCIT:C166121 Oligometastatic Gastric Adenocarcinoma 8 40655 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 40656 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 40657 -NCIT:C154221 Unresectable Gastric Adenocarcinoma 7 40658 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 40659 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 40660 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 40661 -NCIT:C154622 Recurrent Gastric Adenocarcinoma 7 40662 -NCIT:C165628 Proximal Gastric Adenocarcinoma 7 40663 -NCIT:C165630 Metastatic Proximal Gastric Adenocarcinoma 8 40664 -NCIT:C167074 Refractory Gastric Adenocarcinoma 7 40665 -NCIT:C43527 Sporadic Gastric Adenocarcinoma 7 40666 -NCIT:C27131 Early Gastric Cancer 8 40667 -NCIT:C95763 Gastric Intramucosal Adenocarcinoma 9 40668 -NCIT:C27765 Helicobacter Pylori-Related Gastric Adenocarcinoma 8 40669 -NCIT:C43529 Sporadic Gastric Diffuse Adenocarcinoma 8 40670 -NCIT:C5247 Gastric Cardia Adenocarcinoma 8 40671 -NCIT:C5248 Gastric Mucinous Adenocarcinoma 8 40672 -NCIT:C5472 Gastric Papillary Adenocarcinoma 8 40673 -NCIT:C5473 Gastric Tubular Adenocarcinoma 8 40674 -NCIT:C65194 Gastric Parietal Cell Adenocarcinoma 8 40675 -NCIT:C67526 Gastric Mixed Adenocarcinoma 8 40676 -NCIT:C9157 Gastric Intestinal-Type Adenocarcinoma 8 40677 -NCIT:C95743 Gastric Poorly Cohesive Adenocarcinoma 8 40678 -NCIT:C5250 Gastric Signet Ring Cell Adenocarcinoma 9 40679 -NCIT:C95747 Gastric Hepatoid Adenocarcinoma 8 40680 -NCIT:C95748 Gastric Carcinoma with Lymphoid Stroma 8 40681 -NCIT:C9159 Gastric Diffuse Adenocarcinoma 7 40682 -NCIT:C43295 Hereditary Gastric Diffuse Adenocarcinoma 8 40683 -NCIT:C43529 Sporadic Gastric Diffuse Adenocarcinoma 8 40684 -NCIT:C5474 Gastric Adenosquamous Carcinoma 6 40685 -NCIT:C5475 Gastric Squamous Cell Carcinoma 6 40686 -NCIT:C150034 Gastric Cardia Squamous Cell Carcinoma 7 40687 -NCIT:C5476 Gastric Undifferentiated Carcinoma 6 40688 -NCIT:C6794 Gastric Cardia Carcinoma 6 40689 -NCIT:C150034 Gastric Cardia Squamous Cell Carcinoma 7 40690 -NCIT:C4428 Gastric Cardia Carcinoma In Situ AJCC v6 and v7 7 40691 -NCIT:C5247 Gastric Cardia Adenocarcinoma 7 40692 -NCIT:C6795 Gastric Pylorus Carcinoma 6 40693 -NCIT:C4431 Gastric Pylorus Carcinoma In Situ AJCC v6 and v7 7 40694 -NCIT:C8400 Gastric Antrum Carcinoma In Situ AJCC v6 and v7 8 40695 -NCIT:C8398 Gastric Fundus Carcinoma 6 40696 -NCIT:C4429 Gastric Fundus Carcinoma In Situ AJCC v6 and v7 7 40697 -NCIT:C8399 Gastric Body Carcinoma 6 40698 -NCIT:C4430 Gastric Body Carcinoma In Situ AJCC v6 and v7 7 40699 -NCIT:C90503 Gastric Cancer by AJCC v6 Stage 6 40700 -NCIT:C7772 Stage I Gastric Cancer AJCC v6 7 40701 -NCIT:C7773 Stage II Gastric Cancer AJCC v6 7 40702 -NCIT:C7774 Stage III Gastric Cancer AJCC v6 7 40703 -NCIT:C7788 Stage 0 Gastric Cancer AJCC v6 and v7 7 40704 -NCIT:C4428 Gastric Cardia Carcinoma In Situ AJCC v6 and v7 8 40705 -NCIT:C4429 Gastric Fundus Carcinoma In Situ AJCC v6 and v7 8 40706 -NCIT:C4430 Gastric Body Carcinoma In Situ AJCC v6 and v7 8 40707 -NCIT:C4431 Gastric Pylorus Carcinoma In Situ AJCC v6 and v7 8 40708 -NCIT:C8400 Gastric Antrum Carcinoma In Situ AJCC v6 and v7 9 40709 -NCIT:C9036 Stage IV Gastric Cancer AJCC v6 7 40710 -NCIT:C91222 Gastric Cancer by AJCC v7 Stage 6 40711 -NCIT:C7788 Stage 0 Gastric Cancer AJCC v6 and v7 7 40712 -NCIT:C4428 Gastric Cardia Carcinoma In Situ AJCC v6 and v7 8 40713 -NCIT:C4429 Gastric Fundus Carcinoma In Situ AJCC v6 and v7 8 40714 -NCIT:C4430 Gastric Body Carcinoma In Situ AJCC v6 and v7 8 40715 -NCIT:C4431 Gastric Pylorus Carcinoma In Situ AJCC v6 and v7 8 40716 -NCIT:C8400 Gastric Antrum Carcinoma In Situ AJCC v6 and v7 9 40717 -NCIT:C89856 Stage I Gastric Cancer AJCC v7 7 40718 -NCIT:C5468 Stage IA Gastric Cancer AJCC v7 8 40719 -NCIT:C5469 Stage IB Gastric Cancer AJCC v7 8 40720 -NCIT:C89859 Stage II Gastric Cancer AJCC v7 7 40721 -NCIT:C87775 Stage IIA Gastric Cancer AJCC v7 8 40722 -NCIT:C87776 Stage IIB Gastric Cancer AJCC v7 8 40723 -NCIT:C89860 Stage III Gastric Cancer AJCC v7 7 40724 -NCIT:C5470 Stage IIIB Gastric Cancer AJCC v7 8 40725 -NCIT:C5471 Stage IIIA Gastric Cancer AJCC v7 8 40726 -NCIT:C87777 Stage IIIC Gastric Cancer AJCC v7 8 40727 -NCIT:C89861 Stage IV Gastric Cancer AJCC v7 7 40728 -NCIT:C9237 Recurrent Gastric Carcinoma 6 40729 -NCIT:C154622 Recurrent Gastric Adenocarcinoma 7 40730 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 7 40731 -NCIT:C190198 Locally Recurrent Gastric Carcinoma 7 40732 -NCIT:C95884 Gastric Neuroendocrine Carcinoma 6 40733 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 7 40734 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 40735 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 40736 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 40737 -NCIT:C6764 Gastric Small Cell Neuroendocrine Carcinoma 7 40738 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 40739 -NCIT:C95885 Gastric Large Cell Neuroendocrine Carcinoma 7 40740 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 40741 -NCIT:C95886 Gastric Mixed Adenoneuroendocrine Carcinoma 6 40742 -NCIT:C5484 Malignant Gastric Granular Cell Tumor 5 40743 -NCIT:C5486 Malignant Gastric Germ Cell Tumor 5 40744 -NCIT:C95749 Gastric Choriocarcinoma 6 40745 -NCIT:C9354 Recurrent Malignant Gastric Neoplasm 5 40746 -NCIT:C9237 Recurrent Gastric Carcinoma 6 40747 -NCIT:C154622 Recurrent Gastric Adenocarcinoma 7 40748 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 7 40749 -NCIT:C190198 Locally Recurrent Gastric Carcinoma 7 40750 -NCIT:C95903 Metastatic Malignant Neoplasm in the Stomach 5 40751 -NCIT:C4434 Appendix Neoplasm 3 40752 -NCIT:C170734 Appendix Mucinous Neoplasm 4 40753 -NCIT:C172665 High Grade Appendix Mucinous Neoplasm 5 40754 -NCIT:C42598 Low Grade Appendix Mucinous Neoplasm 5 40755 -NCIT:C134119 Stage 0 Low Grade Appendix Mucinous Neoplasm (LAMN) AJCC v8 6 40756 -NCIT:C4773 Benign Appendix Neoplasm 4 40757 -NCIT:C43550 Appendix Adenoma 5 40758 -NCIT:C43546 Appendix Tubular Adenoma 6 40759 -NCIT:C43547 Appendix Tubulovillous Adenoma 6 40760 -NCIT:C43549 Appendix Traditional Serrated Adenoma 6 40761 -NCIT:C5510 Appendix Mucinous Cystadenoma 6 40762 -NCIT:C5512 Appendix Villous Adenoma 6 40763 -NCIT:C96415 Appendix Serrated Lesions and Polyps 6 40764 -NCIT:C43576 Appendix Lipoma 5 40765 -NCIT:C5514 Appendix Leiomyoma 5 40766 -NCIT:C60709 Appendix Neuroendocrine Neoplasm 4 40767 -NCIT:C96422 Appendix Neuroendocrine Tumor 5 40768 -NCIT:C135155 Appendix Neuroendocrine Tumor by AJCC v7 Stage 6 40769 -NCIT:C87809 Stage I Appendix Neuroendocrine Tumor AJCC v7 7 40770 -NCIT:C87810 Stage II Appendix Neuroendocrine Tumor AJCC v7 7 40771 -NCIT:C87811 Stage III Appendix Neuroendocrine Tumor AJCC v7 7 40772 -NCIT:C87812 Stage IV Appendix Neuroendocrine Tumor AJCC v7 7 40773 -NCIT:C135156 Appendix Neuroendocrine Tumor by AJCC v8 Stage 6 40774 -NCIT:C135157 Stage I Appendix Neuroendocrine Tumor AJCC v8 7 40775 -NCIT:C135158 Stage II Appendix Neuroendocrine Tumor AJCC v8 7 40776 -NCIT:C135159 Stage III Appendix Neuroendocrine Tumor AJCC v8 7 40777 -NCIT:C135160 Stage IV Appendix Neuroendocrine Tumor AJCC v8 7 40778 -NCIT:C172666 Appendix Neuroendocrine Tumor G3 6 40779 -NCIT:C190029 Childhood Appendix Neuroendocrine Tumor 6 40780 -NCIT:C27445 Appendix L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 6 40781 -NCIT:C4138 Appendix Neuroendocrine Tumor G1 6 40782 -NCIT:C43565 Appendix Tubular Carcinoid 6 40783 -NCIT:C96423 Appendix Neuroendocrine Tumor G2 6 40784 -NCIT:C96424 Appendix Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 6 40785 -NCIT:C96425 Appendix Neuroendocrine Carcinoma 5 40786 -NCIT:C43555 Appendix Small Cell Neuroendocrine Carcinoma 6 40787 -NCIT:C96426 Appendix Large Cell Neuroendocrine Carcinoma 6 40788 -NCIT:C9333 Malignant Appendix Neoplasm 4 40789 -NCIT:C5513 Appendix Lymphoma 5 40790 -NCIT:C9330 Appendix Carcinoma 5 40791 -NCIT:C133733 Appendix Carcinoma by AJCC v7 Stage 6 40792 -NCIT:C4593 Stage 0 Appendix Carcinoma AJCC v7 7 40793 -NCIT:C87798 Stage I Appendix Carcinoma AJCC v7 7 40794 -NCIT:C87799 Stage IIA Appendix Carcinoma AJCC v7 7 40795 -NCIT:C87800 Stage IIB Appendix Carcinoma AJCC v7 7 40796 -NCIT:C87801 Stage IIC Appendix Carcinoma AJCC v7 7 40797 -NCIT:C87803 Stage IIIA Appendix Carcinoma AJCC v7 7 40798 -NCIT:C87804 Stage IIIB Appendix Carcinoma AJCC v7 7 40799 -NCIT:C87805 Stage IIIC Appendix Carcinoma AJCC v7 7 40800 -NCIT:C87806 Stage IVA Appendix Carcinoma AJCC v7 7 40801 -NCIT:C87807 Stage IVB Appendix Carcinoma AJCC v7 7 40802 -NCIT:C87808 Stage IVC Appendix Carcinoma AJCC v7 7 40803 -NCIT:C134117 Appendix Carcinoma by AJCC v8 Stage 6 40804 -NCIT:C134118 Stage 0 Appendix Carcinoma AJCC v8 7 40805 -NCIT:C134119 Stage 0 Low Grade Appendix Mucinous Neoplasm (LAMN) AJCC v8 7 40806 -NCIT:C134120 Stage I Appendix Carcinoma AJCC v8 7 40807 -NCIT:C134121 Stage II Appendix Carcinoma AJCC v8 7 40808 -NCIT:C134122 Stage IIA Appendix Carcinoma AJCC v8 8 40809 -NCIT:C134123 Stage IIB Appendix Carcinoma AJCC v8 8 40810 -NCIT:C134124 Stage IIC Appendix Carcinoma AJCC v8 8 40811 -NCIT:C134125 Stage III Appendix Carcinoma AJCC v8 7 40812 -NCIT:C134126 Stage IIIA Appendix Carcinoma AJCC v8 8 40813 -NCIT:C134127 Stage IIIB Appendix Carcinoma AJCC v8 8 40814 -NCIT:C134128 Stage IIIC Appendix Carcinoma AJCC v8 8 40815 -NCIT:C134129 Stage IV Appendix Carcinoma AJCC v8 7 40816 -NCIT:C134130 Stage IVA Appendix Carcinoma AJCC v8 8 40817 -NCIT:C134131 Stage IVB Appendix Carcinoma AJCC v8 8 40818 -NCIT:C134132 Stage IVC Appendix Carcinoma AJCC v8 8 40819 -NCIT:C153802 Recurrent Appendix Carcinoma 6 40820 -NCIT:C179174 Recurrent Appendix Adenocarcinoma 7 40821 -NCIT:C153579 Recurrent Appendix Mucinous Adenocarcinoma 8 40822 -NCIT:C162275 Metastatic Appendix Carcinoma 6 40823 -NCIT:C182104 Metastatic Appendix Adenocarcinoma 7 40824 -NCIT:C162274 Metastatic Appendix Mucinous Adenocarcinoma 8 40825 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 40826 -NCIT:C179177 Refractory Appendix Carcinoma 6 40827 -NCIT:C179178 Refractory Appendix Adenocarcinoma 7 40828 -NCIT:C43556 Appendix Undifferentiated Carcinoma 6 40829 -NCIT:C43564 Appendix Mixed Adenoneuroendocrine Carcinoma 6 40830 -NCIT:C3689 Appendix Goblet Cell Adenocarcinoma 7 40831 -NCIT:C7718 Appendix Adenocarcinoma 6 40832 -NCIT:C179174 Recurrent Appendix Adenocarcinoma 7 40833 -NCIT:C153579 Recurrent Appendix Mucinous Adenocarcinoma 8 40834 -NCIT:C179178 Refractory Appendix Adenocarcinoma 7 40835 -NCIT:C182104 Metastatic Appendix Adenocarcinoma 7 40836 -NCIT:C162274 Metastatic Appendix Mucinous Adenocarcinoma 8 40837 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 40838 -NCIT:C43554 Appendix Signet Ring Cell Carcinoma 7 40839 -NCIT:C43558 Appendix Mucinous Adenocarcinoma 7 40840 -NCIT:C153579 Recurrent Appendix Mucinous Adenocarcinoma 8 40841 -NCIT:C162274 Metastatic Appendix Mucinous Adenocarcinoma 8 40842 -NCIT:C5511 Appendix Mucinous Cystadenocarcinoma 8 40843 -NCIT:C96425 Appendix Neuroendocrine Carcinoma 6 40844 -NCIT:C43555 Appendix Small Cell Neuroendocrine Carcinoma 7 40845 -NCIT:C96426 Appendix Large Cell Neuroendocrine Carcinoma 7 40846 -NCIT:C96434 Appendix Kaposi Sarcoma 5 40847 -NCIT:C96435 Appendix Leiomyosarcoma 5 40848 -NCIT:C96418 Appendix Intraepithelial Neoplasia 4 40849 -NCIT:C96419 Appendix Low Grade Intraepithelial Neoplasia 5 40850 -NCIT:C96420 Appendix High Grade Intraepithelial Neoplasia 5 40851 -NCIT:C4443 Ampulla of Vater Neoplasm 3 40852 -NCIT:C3536 Malignant Ampulla of Vater Neoplasm 4 40853 -NCIT:C3908 Ampulla of Vater Carcinoma 5 40854 -NCIT:C134863 Ampulla of Vater Cancer by AJCC v7 Stage 6 40855 -NCIT:C4444 Stage 0 Ampulla of Vater Cancer AJCC v7 7 40856 -NCIT:C6651 Stage I Ampulla of Vater Cancer AJCC v7 7 40857 -NCIT:C88096 Stage IA Ampulla of Vater Cancer AJCC v7 8 40858 -NCIT:C88097 Stage IB Ampulla of Vater Cancer AJCC v7 8 40859 -NCIT:C6652 Stage II Ampulla of Vater Cancer AJCC v7 7 40860 -NCIT:C88098 Stage IIA Ampulla of Vater Cancer AJCC v7 8 40861 -NCIT:C88099 Stage IIB Ampulla of Vater Cancer AJCC v7 8 40862 -NCIT:C6653 Stage III Ampulla of Vater Cancer AJCC v7 7 40863 -NCIT:C6654 Stage IV Ampulla of Vater Cancer AJCC v7 7 40864 -NCIT:C134864 Ampulla of Vater Cancer by AJCC v8 Stage 6 40865 -NCIT:C134865 Stage 0 Ampulla of Vater Cancer AJCC v8 7 40866 -NCIT:C134866 Stage I Ampulla of Vater Cancer AJCC v8 7 40867 -NCIT:C134867 Stage IA Ampulla of Vater Cancer AJCC v8 8 40868 -NCIT:C134868 Stage IB Ampulla of Vater Cancer AJCC v8 8 40869 -NCIT:C134869 Stage II Ampulla of Vater Cancer AJCC v8 7 40870 -NCIT:C134870 Stage IIA Ampulla of Vater Cancer AJCC v8 8 40871 -NCIT:C134871 Stage IIB Ampulla of Vater Cancer AJCC v8 8 40872 -NCIT:C134872 Stage III Ampulla of Vater Cancer AJCC v8 7 40873 -NCIT:C134873 Stage IIIA Ampulla of Vater Cancer AJCC v8 8 40874 -NCIT:C134874 Stage IIIB Ampulla of Vater Cancer AJCC v8 8 40875 -NCIT:C134875 Stage IV Ampulla of Vater Cancer AJCC v8 7 40876 -NCIT:C165172 Unresectable Ampulla of Vater Carcinoma 6 40877 -NCIT:C189065 Unresectable Ampulla of Vater Adenocarcinoma 7 40878 -NCIT:C171326 Metastatic Ampulla of Vater Carcinoma 6 40879 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 7 40880 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 7 40881 -NCIT:C175436 Refractory Ampulla of Vater Carcinoma 6 40882 -NCIT:C27417 Ampulla of Vater Squamous Cell Carcinoma 6 40883 -NCIT:C27418 Ampulla of Vater Adenosquamous Carcinoma 6 40884 -NCIT:C27419 Ampulla of Vater Undifferentiated Carcinoma 6 40885 -NCIT:C95965 Ampulla of Vater Undifferentiated Carcinoma with Osteoclast-Like Giant Cells 7 40886 -NCIT:C6650 Ampulla of Vater Adenocarcinoma 6 40887 -NCIT:C153574 Recurrent Ampulla of Vater Adenocarcinoma 7 40888 -NCIT:C189065 Unresectable Ampulla of Vater Adenocarcinoma 7 40889 -NCIT:C27414 Ampulla of Vater Clear Cell Adenocarcinoma 7 40890 -NCIT:C27415 Ampulla of Vater Intestinal-Type Adenocarcinoma 7 40891 -NCIT:C27416 Ampulla of Vater Mucinous Adenocarcinoma 7 40892 -NCIT:C6656 Ampulla of Vater Signet Ring Cell Carcinoma 7 40893 -NCIT:C95963 Ampulla of Vater Pancreatobiliary Type Adenocarcinoma 7 40894 -NCIT:C95966 Ampulla of Vater Hepatoid Adenocarcinoma 7 40895 -NCIT:C95967 Ampulla of Vater Invasive Papillary Adenocarcinoma 7 40896 -NCIT:C95984 Ampulla of Vater Neuroendocrine Carcinoma 6 40897 -NCIT:C6655 Ampulla of Vater Small Cell Neuroendocrine Carcinoma 7 40898 -NCIT:C95985 Ampulla of Vater Large Cell Neuroendocrine Carcinoma 7 40899 -NCIT:C95986 Ampulla of Vater Mixed Adenoneuroendocrine Carcinoma 6 40900 -NCIT:C95909 Preinvasive Neoplasm of the Ampullary Region 4 40901 -NCIT:C6657 Ampulla of Vater Adenoma, Intestinal-Type 5 40902 -NCIT:C27412 Ampulla of Vater Tubulovillous Adenoma 6 40903 -NCIT:C6658 Ampulla of Vater Villous Adenoma 6 40904 -NCIT:C6659 Ampulla of Vater Tubular Adenoma 6 40905 -NCIT:C95913 Ampullary Noninvasive Papillary Neoplasm, Pancreatobiliary Type 5 40906 -NCIT:C95914 Ampullary Noninvasive Pancreatobiliary Papillary Neoplasm with Low Grade Dysplasia 6 40907 -NCIT:C95915 Ampullary Noninvasive Pancreatobiliary Papillary Neoplasm with High Grade Dysplasia 6 40908 -NCIT:C95918 Ampullary Flat Intraepithelial Neoplasia, High Grade 5 40909 -NCIT:C95980 Ampulla of Vater Neuroendocrine Neoplasm 4 40910 -NCIT:C95981 Ampulla of Vater Neuroendocrine Tumor 5 40911 -NCIT:C135081 Ampulla of Vater Neuroendocrine Tumor by AJCC v8 Stage 6 40912 -NCIT:C135082 Stage I Ampulla of Vater Neuroendocrine Tumor AJCC v8 7 40913 -NCIT:C135083 Stage II Ampulla of Vater Neuroendocrine Tumor AJCC v8 7 40914 -NCIT:C135084 Stage III Ampulla of Vater Neuroendocrine Tumor AJCC v8 7 40915 -NCIT:C135085 Stage IV Ampulla of Vater Neuroendocrine Tumor AJCC v8 7 40916 -NCIT:C172673 Ampulla of Vater Neuroendocrine Tumor G3 6 40917 -NCIT:C95982 Ampulla of Vater Neuroendocrine Tumor G1 6 40918 -NCIT:C95983 Ampulla of Vater Neuroendocrine Tumor G2 6 40919 -NCIT:C95987 Ampulla of Vater Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 6 40920 -NCIT:C95988 Ampulla of Vater Somatostatin-Producing Neuroendocrine Tumor 6 40921 -NCIT:C95989 Ampulla of Vater Gangliocytic Paraganglioma 6 40922 -NCIT:C95984 Ampulla of Vater Neuroendocrine Carcinoma 5 40923 -NCIT:C6655 Ampulla of Vater Small Cell Neuroendocrine Carcinoma 6 40924 -NCIT:C95985 Ampulla of Vater Large Cell Neuroendocrine Carcinoma 6 40925 -NCIT:C4787 Benign Digestive System Neoplasm 3 40926 -NCIT:C190580 Childhood Benign Digestive System Neoplasm 4 40927 -NCIT:C190581 Childhood Benign Liver Neoplasm 5 40928 -NCIT:C190019 Liver Congenital Hemangioma 6 40929 -NCIT:C5751 Liver Mesenchymal Hamartoma 6 40930 -NCIT:C96840 Liver Infantile Hemangioma 6 40931 -NCIT:C190592 Benign Liver Neoplasm 4 40932 -NCIT:C190581 Childhood Benign Liver Neoplasm 5 40933 -NCIT:C190019 Liver Congenital Hemangioma 6 40934 -NCIT:C5751 Liver Mesenchymal Hamartoma 6 40935 -NCIT:C96840 Liver Infantile Hemangioma 6 40936 -NCIT:C5749 Benign Liver Non-Epithelial Neoplasm 5 40937 -NCIT:C27485 Liver Angiomyolipoma 6 40938 -NCIT:C3869 Liver Hemangioma 6 40939 -NCIT:C190019 Liver Congenital Hemangioma 7 40940 -NCIT:C96839 Liver Cavernous Hemangioma 7 40941 -NCIT:C96840 Liver Infantile Hemangioma 7 40942 -NCIT:C5750 Liver Lipoma 6 40943 -NCIT:C5752 Liver Solitary Fibrous Tumor 6 40944 -NCIT:C5753 Liver Leiomyoma 6 40945 -NCIT:C96841 Liver Lymphangioma 6 40946 -NCIT:C96842 Liver Lymphangiomatosis 6 40947 -NCIT:C96756 Benign Liver Epithelial Neoplasm 5 40948 -NCIT:C3758 Hepatocellular Adenoma 6 40949 -NCIT:C96758 HNF1alpha-Inactivated Hepatocellular Adenoma 7 40950 -NCIT:C96759 Beta-Catenin-Activated Hepatocellular Adenoma 7 40951 -NCIT:C96760 Inflammatory Hepatocellular Adenoma 7 40952 -NCIT:C172707 Beta-Catenin-Activated Inflammatory Hepatocellular Adenoma 8 40953 -NCIT:C96761 Unclassified Hepatocellular Adenoma 7 40954 -NCIT:C7126 Intrahepatic Bile Duct Adenoma 6 40955 -NCIT:C7127 Intrahepatic Bile Duct Microcystic Adenoma 7 40956 -NCIT:C96826 Biliary Adenofibroma 6 40957 -NCIT:C3598 Benign Esophageal Neoplasm 4 40958 -NCIT:C3866 Esophageal Leiomyoma 5 40959 -NCIT:C4057 Esophageal Polyp 5 40960 -NCIT:C5344 Esophageal Squamous Papilloma 6 40961 -NCIT:C5699 Giant Fibrovascular Esophageal Polyp 6 40962 -NCIT:C5701 Esophageal Lipoma 5 40963 -NCIT:C5702 Esophageal Fibroma 5 40964 -NCIT:C5703 Esophageal Schwannoma 5 40965 -NCIT:C5704 Esophageal Neurofibroma 5 40966 -NCIT:C95622 Esophageal Hemangioma 5 40967 -NCIT:C3599 Benign Gastric Neoplasm 4 40968 -NCIT:C27438 Benign Gastric Soft Tissue Neoplasm 5 40969 -NCIT:C3876 Gastric Leiomyoma 6 40970 -NCIT:C5258 Gastric Lipoma 6 40971 -NCIT:C5481 Gastric Hemangioma 6 40972 -NCIT:C5482 Gastric Lymphangioma 6 40973 -NCIT:C95895 Benign Gastric Gastrointestinal Stromal Tumor 6 40974 -NCIT:C95902 Gastric Plexiform Fibromyxoma 6 40975 -NCIT:C5260 Mature Gastric Teratoma 5 40976 -NCIT:C5483 Benign Gastric Granular Cell Tumor 5 40977 -NCIT:C7699 Gastric Adenoma 5 40978 -NCIT:C172655 Oxyntic Gland Adenoma 6 40979 -NCIT:C8961 Fundic Gland Polyp 6 40980 -NCIT:C95773 Gastric Adenoma, Intestinal-Type 6 40981 -NCIT:C7036 Gastric Tubular Adenoma 7 40982 -NCIT:C7037 Gastric Tubulovillous Adenoma 7 40983 -NCIT:C7038 Gastric Villous Adenoma 7 40984 -NCIT:C95775 Gastric Adenoma, Gastric-Type 6 40985 -NCIT:C43526 Gastric Pyloric Gland Adenoma 7 40986 -NCIT:C95779 Foveolar-Type Adenoma 7 40987 -NCIT:C95901 Gastric Schwannoma 5 40988 -NCIT:C36207 Digestive System Adenoma 4 40989 -NCIT:C2942 Bile Duct Adenoma 5 40990 -NCIT:C5857 Extrahepatic Bile Duct Adenoma 6 40991 -NCIT:C5849 Extrahepatic Bile Duct Papillary Adenoma 7 40992 -NCIT:C5850 Extrahepatic Bile Duct Tubular Adenoma 7 40993 -NCIT:C96811 Extrahepatic Bile Duct Tubulopapillary Adenoma 7 40994 -NCIT:C7126 Intrahepatic Bile Duct Adenoma 6 40995 -NCIT:C7127 Intrahepatic Bile Duct Microcystic Adenoma 7 40996 -NCIT:C3758 Hepatocellular Adenoma 5 40997 -NCIT:C96758 HNF1alpha-Inactivated Hepatocellular Adenoma 6 40998 -NCIT:C96759 Beta-Catenin-Activated Hepatocellular Adenoma 6 40999 -NCIT:C96760 Inflammatory Hepatocellular Adenoma 6 41000 -NCIT:C172707 Beta-Catenin-Activated Inflammatory Hepatocellular Adenoma 7 41001 -NCIT:C96761 Unclassified Hepatocellular Adenoma 6 41002 -NCIT:C3764 Adenomatous Polyp 5 41003 -NCIT:C164253 Gastrointestinal Tract Adenoma, Intestinal-Type 6 41004 -NCIT:C172735 Gallbladder Adenoma, Intestinal-Type 7 41005 -NCIT:C6657 Ampulla of Vater Adenoma, Intestinal-Type 7 41006 -NCIT:C27412 Ampulla of Vater Tubulovillous Adenoma 8 41007 -NCIT:C6658 Ampulla of Vater Villous Adenoma 8 41008 -NCIT:C6659 Ampulla of Vater Tubular Adenoma 8 41009 -NCIT:C95773 Gastric Adenoma, Intestinal-Type 7 41010 -NCIT:C7036 Gastric Tubular Adenoma 8 41011 -NCIT:C7037 Gastric Tubulovillous Adenoma 8 41012 -NCIT:C7038 Gastric Villous Adenoma 8 41013 -NCIT:C4135 Multiple Adenomatous Polyps 6 41014 -NCIT:C7720 Gallbladder Adenoma 6 41015 -NCIT:C172731 Gallbladder Pyloric Gland Adenoma 7 41016 -NCIT:C172735 Gallbladder Adenoma, Intestinal-Type 7 41017 -NCIT:C96478 Colorectal Adenomatous Polyp 6 41018 -NCIT:C96479 Colon Adenomatous Polyp 7 41019 -NCIT:C96480 Rectal Adenomatous Polyp 7 41020 -NCIT:C38458 Traditional Serrated Adenoma 5 41021 -NCIT:C43549 Appendix Traditional Serrated Adenoma 6 41022 -NCIT:C5674 Colorectal Traditional Serrated Adenoma 6 41023 -NCIT:C43577 Colon Traditional Serrated Adenoma 7 41024 -NCIT:C96463 Rectal Traditional Serrated Adenoma 7 41025 -NCIT:C96468 Colorectal Filiform Serrated Adenoma 7 41026 -NCIT:C96466 Digestive System Filiform Serrated Adenoma 6 41027 -NCIT:C96468 Colorectal Filiform Serrated Adenoma 7 41028 -NCIT:C4133 Tubular Adenoma 5 41029 -NCIT:C27456 Colorectal Tubular Adenoma 6 41030 -NCIT:C7041 Colon Tubular Adenoma 7 41031 -NCIT:C96477 Rectal Tubular Adenoma 7 41032 -NCIT:C43546 Appendix Tubular Adenoma 6 41033 -NCIT:C43552 Small Intestinal Tubular Adenoma 6 41034 -NCIT:C5850 Extrahepatic Bile Duct Tubular Adenoma 6 41035 -NCIT:C6659 Ampulla of Vater Tubular Adenoma 6 41036 -NCIT:C7036 Gastric Tubular Adenoma 6 41037 -NCIT:C4143 Tubulovillous Adenoma 5 41038 -NCIT:C27412 Ampulla of Vater Tubulovillous Adenoma 6 41039 -NCIT:C43547 Appendix Tubulovillous Adenoma 6 41040 -NCIT:C43553 Small Intestinal Tubulovillous Adenoma 6 41041 -NCIT:C5675 Colorectal Tubulovillous Adenoma 6 41042 -NCIT:C5496 Colon Tubulovillous Adenoma 7 41043 -NCIT:C5620 Rectal Tubulovillous Adenoma 7 41044 -NCIT:C7037 Gastric Tubulovillous Adenoma 6 41045 -NCIT:C96811 Extrahepatic Bile Duct Tubulopapillary Adenoma 6 41046 -NCIT:C43550 Appendix Adenoma 5 41047 -NCIT:C43546 Appendix Tubular Adenoma 6 41048 -NCIT:C43547 Appendix Tubulovillous Adenoma 6 41049 -NCIT:C43549 Appendix Traditional Serrated Adenoma 6 41050 -NCIT:C5510 Appendix Mucinous Cystadenoma 6 41051 -NCIT:C5512 Appendix Villous Adenoma 6 41052 -NCIT:C96415 Appendix Serrated Lesions and Polyps 6 41053 -NCIT:C5340 Small Intestinal Adenoma 5 41054 -NCIT:C43551 Small Intestinal Villous Adenoma 6 41055 -NCIT:C5338 Duodenal Villous Adenoma 7 41056 -NCIT:C43552 Small Intestinal Tubular Adenoma 6 41057 -NCIT:C43553 Small Intestinal Tubulovillous Adenoma 6 41058 -NCIT:C4932 Duodenal Adenoma 6 41059 -NCIT:C5338 Duodenal Villous Adenoma 7 41060 -NCIT:C5673 Colorectal Adenoma 5 41061 -NCIT:C172680 Colorectal Conventional Adenoma 6 41062 -NCIT:C172682 Colon Conventional Adenoma 7 41063 -NCIT:C3495 Colon Villous Adenoma 8 41064 -NCIT:C5520 Cecum Villous Adenoma 9 41065 -NCIT:C5496 Colon Tubulovillous Adenoma 8 41066 -NCIT:C7041 Colon Tubular Adenoma 8 41067 -NCIT:C172683 Rectal Conventional Adenoma 7 41068 -NCIT:C4919 Rectal Villous Adenoma 8 41069 -NCIT:C5620 Rectal Tubulovillous Adenoma 8 41070 -NCIT:C96477 Rectal Tubular Adenoma 8 41071 -NCIT:C27456 Colorectal Tubular Adenoma 7 41072 -NCIT:C7041 Colon Tubular Adenoma 8 41073 -NCIT:C96477 Rectal Tubular Adenoma 8 41074 -NCIT:C5675 Colorectal Tubulovillous Adenoma 7 41075 -NCIT:C5496 Colon Tubulovillous Adenoma 8 41076 -NCIT:C5620 Rectal Tubulovillous Adenoma 8 41077 -NCIT:C5676 Colorectal Villous Adenoma 7 41078 -NCIT:C3495 Colon Villous Adenoma 8 41079 -NCIT:C5520 Cecum Villous Adenoma 9 41080 -NCIT:C4919 Rectal Villous Adenoma 8 41081 -NCIT:C27457 Colorectal Adenoma with Moderate Dysplasia 6 41082 -NCIT:C27458 Colorectal Adenoma with Mild Dysplasia 6 41083 -NCIT:C3864 Colon Adenoma 6 41084 -NCIT:C128171 Colon Adenoma with Severe Dysplasia 7 41085 -NCIT:C172682 Colon Conventional Adenoma 7 41086 -NCIT:C3495 Colon Villous Adenoma 8 41087 -NCIT:C5520 Cecum Villous Adenoma 9 41088 -NCIT:C5496 Colon Tubulovillous Adenoma 8 41089 -NCIT:C7041 Colon Tubular Adenoma 8 41090 -NCIT:C43577 Colon Traditional Serrated Adenoma 7 41091 -NCIT:C96464 Colon Serrated Lesions and Polyps 7 41092 -NCIT:C96479 Colon Adenomatous Polyp 7 41093 -NCIT:C5546 Rectal Adenoma 6 41094 -NCIT:C172683 Rectal Conventional Adenoma 7 41095 -NCIT:C4919 Rectal Villous Adenoma 8 41096 -NCIT:C5620 Rectal Tubulovillous Adenoma 8 41097 -NCIT:C96477 Rectal Tubular Adenoma 8 41098 -NCIT:C5621 Rectal Adenoma with Severe Dysplasia 7 41099 -NCIT:C96463 Rectal Traditional Serrated Adenoma 7 41100 -NCIT:C96465 Rectal Serrated Lesions and Polyps 7 41101 -NCIT:C96480 Rectal Adenomatous Polyp 7 41102 -NCIT:C5674 Colorectal Traditional Serrated Adenoma 6 41103 -NCIT:C43577 Colon Traditional Serrated Adenoma 7 41104 -NCIT:C96463 Rectal Traditional Serrated Adenoma 7 41105 -NCIT:C96468 Colorectal Filiform Serrated Adenoma 7 41106 -NCIT:C5685 Colorectal Adenoma with Severe Dysplasia 6 41107 -NCIT:C128171 Colon Adenoma with Severe Dysplasia 7 41108 -NCIT:C5621 Rectal Adenoma with Severe Dysplasia 7 41109 -NCIT:C83176 Colorectal Serrated Lesions and Polyps 6 41110 -NCIT:C96464 Colon Serrated Lesions and Polyps 7 41111 -NCIT:C96465 Rectal Serrated Lesions and Polyps 7 41112 -NCIT:C96478 Colorectal Adenomatous Polyp 6 41113 -NCIT:C96479 Colon Adenomatous Polyp 7 41114 -NCIT:C96480 Rectal Adenomatous Polyp 7 41115 -NCIT:C65193 Flat Adenoma 5 41116 -NCIT:C7399 Villous Adenoma 5 41117 -NCIT:C43551 Small Intestinal Villous Adenoma 6 41118 -NCIT:C5338 Duodenal Villous Adenoma 7 41119 -NCIT:C5512 Appendix Villous Adenoma 6 41120 -NCIT:C5676 Colorectal Villous Adenoma 6 41121 -NCIT:C3495 Colon Villous Adenoma 7 41122 -NCIT:C5520 Cecum Villous Adenoma 8 41123 -NCIT:C4919 Rectal Villous Adenoma 7 41124 -NCIT:C6658 Ampulla of Vater Villous Adenoma 6 41125 -NCIT:C7038 Gastric Villous Adenoma 6 41126 -NCIT:C7699 Gastric Adenoma 5 41127 -NCIT:C172655 Oxyntic Gland Adenoma 6 41128 -NCIT:C8961 Fundic Gland Polyp 6 41129 -NCIT:C95773 Gastric Adenoma, Intestinal-Type 6 41130 -NCIT:C7036 Gastric Tubular Adenoma 7 41131 -NCIT:C7037 Gastric Tubulovillous Adenoma 7 41132 -NCIT:C7038 Gastric Villous Adenoma 7 41133 -NCIT:C95775 Gastric Adenoma, Gastric-Type 6 41134 -NCIT:C43526 Gastric Pyloric Gland Adenoma 7 41135 -NCIT:C95779 Foveolar-Type Adenoma 7 41136 -NCIT:C96414 Serrated Lesions and Polyps 5 41137 -NCIT:C83176 Colorectal Serrated Lesions and Polyps 6 41138 -NCIT:C96464 Colon Serrated Lesions and Polyps 7 41139 -NCIT:C96465 Rectal Serrated Lesions and Polyps 7 41140 -NCIT:C96415 Appendix Serrated Lesions and Polyps 6 41141 -NCIT:C4440 Gallbladder Benign Neoplasm 4 41142 -NCIT:C7129 Gallbladder Benign Non-Epithelial Neoplasm 5 41143 -NCIT:C5746 Gallbladder Neurofibroma 6 41144 -NCIT:C5747 Gallbladder Leiomyoma 6 41145 -NCIT:C5835 Gallbladder Lipoma 6 41146 -NCIT:C7131 Gallbladder Benign Granular Cell Tumor 6 41147 -NCIT:C7720 Gallbladder Adenoma 5 41148 -NCIT:C172731 Gallbladder Pyloric Gland Adenoma 6 41149 -NCIT:C172735 Gallbladder Adenoma, Intestinal-Type 6 41150 -NCIT:C4609 Benign Intestinal Neoplasm 4 41151 -NCIT:C3600 Benign Small Intestinal Neoplasm 5 41152 -NCIT:C4775 Benign Duodenal Neoplasm 6 41153 -NCIT:C170725 Benign Periampullary Neoplasm 7 41154 -NCIT:C4932 Duodenal Adenoma 7 41155 -NCIT:C5338 Duodenal Villous Adenoma 8 41156 -NCIT:C5339 Small Intestinal Lipoma 6 41157 -NCIT:C5340 Small Intestinal Adenoma 6 41158 -NCIT:C43551 Small Intestinal Villous Adenoma 7 41159 -NCIT:C5338 Duodenal Villous Adenoma 8 41160 -NCIT:C43552 Small Intestinal Tubular Adenoma 7 41161 -NCIT:C43553 Small Intestinal Tubulovillous Adenoma 7 41162 -NCIT:C4932 Duodenal Adenoma 7 41163 -NCIT:C5338 Duodenal Villous Adenoma 8 41164 -NCIT:C7725 Small Intestinal Leiomyoma 6 41165 -NCIT:C4610 Benign Colorectal Neoplasm 5 41166 -NCIT:C2894 Benign Colon Neoplasm 6 41167 -NCIT:C3864 Colon Adenoma 7 41168 -NCIT:C128171 Colon Adenoma with Severe Dysplasia 8 41169 -NCIT:C172682 Colon Conventional Adenoma 8 41170 -NCIT:C3495 Colon Villous Adenoma 9 41171 -NCIT:C5520 Cecum Villous Adenoma 10 41172 -NCIT:C5496 Colon Tubulovillous Adenoma 9 41173 -NCIT:C7041 Colon Tubular Adenoma 9 41174 -NCIT:C43577 Colon Traditional Serrated Adenoma 8 41175 -NCIT:C96464 Colon Serrated Lesions and Polyps 8 41176 -NCIT:C96479 Colon Adenomatous Polyp 8 41177 -NCIT:C4772 Benign Cecum Neoplasm 7 41178 -NCIT:C5520 Cecum Villous Adenoma 8 41179 -NCIT:C5395 Colon Cavernous Hemangioma 7 41180 -NCIT:C5492 Colon Leiomyoma 7 41181 -NCIT:C5493 Colon Lipoma 7 41182 -NCIT:C5500 Colon Lymphangioma 7 41183 -NCIT:C7042 Colon Ganglioneuroma 7 41184 -NCIT:C4774 Benign Rectal Neoplasm 6 41185 -NCIT:C5546 Rectal Adenoma 7 41186 -NCIT:C172683 Rectal Conventional Adenoma 8 41187 -NCIT:C4919 Rectal Villous Adenoma 9 41188 -NCIT:C5620 Rectal Tubulovillous Adenoma 9 41189 -NCIT:C96477 Rectal Tubular Adenoma 9 41190 -NCIT:C5621 Rectal Adenoma with Severe Dysplasia 8 41191 -NCIT:C96463 Rectal Traditional Serrated Adenoma 8 41192 -NCIT:C96465 Rectal Serrated Lesions and Polyps 8 41193 -NCIT:C96480 Rectal Adenomatous Polyp 8 41194 -NCIT:C5551 Rectal Lipoma 7 41195 -NCIT:C5552 Rectal Leiomyoma 7 41196 -NCIT:C5673 Colorectal Adenoma 6 41197 -NCIT:C172680 Colorectal Conventional Adenoma 7 41198 -NCIT:C172682 Colon Conventional Adenoma 8 41199 -NCIT:C3495 Colon Villous Adenoma 9 41200 -NCIT:C5520 Cecum Villous Adenoma 10 41201 -NCIT:C5496 Colon Tubulovillous Adenoma 9 41202 -NCIT:C7041 Colon Tubular Adenoma 9 41203 -NCIT:C172683 Rectal Conventional Adenoma 8 41204 -NCIT:C4919 Rectal Villous Adenoma 9 41205 -NCIT:C5620 Rectal Tubulovillous Adenoma 9 41206 -NCIT:C96477 Rectal Tubular Adenoma 9 41207 -NCIT:C27456 Colorectal Tubular Adenoma 8 41208 -NCIT:C7041 Colon Tubular Adenoma 9 41209 -NCIT:C96477 Rectal Tubular Adenoma 9 41210 -NCIT:C5675 Colorectal Tubulovillous Adenoma 8 41211 -NCIT:C5496 Colon Tubulovillous Adenoma 9 41212 -NCIT:C5620 Rectal Tubulovillous Adenoma 9 41213 -NCIT:C5676 Colorectal Villous Adenoma 8 41214 -NCIT:C3495 Colon Villous Adenoma 9 41215 -NCIT:C5520 Cecum Villous Adenoma 10 41216 -NCIT:C4919 Rectal Villous Adenoma 9 41217 -NCIT:C27457 Colorectal Adenoma with Moderate Dysplasia 7 41218 -NCIT:C27458 Colorectal Adenoma with Mild Dysplasia 7 41219 -NCIT:C3864 Colon Adenoma 7 41220 -NCIT:C128171 Colon Adenoma with Severe Dysplasia 8 41221 -NCIT:C172682 Colon Conventional Adenoma 8 41222 -NCIT:C3495 Colon Villous Adenoma 9 41223 -NCIT:C5520 Cecum Villous Adenoma 10 41224 -NCIT:C5496 Colon Tubulovillous Adenoma 9 41225 -NCIT:C7041 Colon Tubular Adenoma 9 41226 -NCIT:C43577 Colon Traditional Serrated Adenoma 8 41227 -NCIT:C96464 Colon Serrated Lesions and Polyps 8 41228 -NCIT:C96479 Colon Adenomatous Polyp 8 41229 -NCIT:C5546 Rectal Adenoma 7 41230 -NCIT:C172683 Rectal Conventional Adenoma 8 41231 -NCIT:C4919 Rectal Villous Adenoma 9 41232 -NCIT:C5620 Rectal Tubulovillous Adenoma 9 41233 -NCIT:C96477 Rectal Tubular Adenoma 9 41234 -NCIT:C5621 Rectal Adenoma with Severe Dysplasia 8 41235 -NCIT:C96463 Rectal Traditional Serrated Adenoma 8 41236 -NCIT:C96465 Rectal Serrated Lesions and Polyps 8 41237 -NCIT:C96480 Rectal Adenomatous Polyp 8 41238 -NCIT:C5674 Colorectal Traditional Serrated Adenoma 7 41239 -NCIT:C43577 Colon Traditional Serrated Adenoma 8 41240 -NCIT:C96463 Rectal Traditional Serrated Adenoma 8 41241 -NCIT:C96468 Colorectal Filiform Serrated Adenoma 8 41242 -NCIT:C5685 Colorectal Adenoma with Severe Dysplasia 7 41243 -NCIT:C128171 Colon Adenoma with Severe Dysplasia 8 41244 -NCIT:C5621 Rectal Adenoma with Severe Dysplasia 8 41245 -NCIT:C83176 Colorectal Serrated Lesions and Polyps 7 41246 -NCIT:C96464 Colon Serrated Lesions and Polyps 8 41247 -NCIT:C96465 Rectal Serrated Lesions and Polyps 8 41248 -NCIT:C96478 Colorectal Adenomatous Polyp 7 41249 -NCIT:C96479 Colon Adenomatous Polyp 8 41250 -NCIT:C96480 Rectal Adenomatous Polyp 8 41251 -NCIT:C5677 Colorectal Leiomyoma 6 41252 -NCIT:C5492 Colon Leiomyoma 7 41253 -NCIT:C5552 Rectal Leiomyoma 7 41254 -NCIT:C5678 Colorectal Lipoma 6 41255 -NCIT:C5493 Colon Lipoma 7 41256 -NCIT:C5551 Rectal Lipoma 7 41257 -NCIT:C96512 Colorectal Schwannoma 6 41258 -NCIT:C96513 Colorectal Perineurioma 6 41259 -NCIT:C96514 Colorectal Ganglioneuroma 6 41260 -NCIT:C7042 Colon Ganglioneuroma 7 41261 -NCIT:C96516 Colorectal Benign Granular Cell Tumor 6 41262 -NCIT:C4611 Benign Anal Neoplasm 4 41263 -NCIT:C139546 Anal Fibroadenoma 5 41264 -NCIT:C5607 Benign Anal Granular Cell Tumor 5 41265 -NCIT:C5608 Anal Leiomyoma 5 41266 -NCIT:C96554 Anal Canal Squamous Papilloma 5 41267 -NCIT:C96699 Anal Hidradenoma Papilliferum 5 41268 -NCIT:C4612 Benign Pancreatic Neoplasm 4 41269 -NCIT:C4613 Benign Exocrine Pancreas Neoplasm 5 41270 -NCIT:C4374 Pancreatic Cystadenoma 6 41271 -NCIT:C5712 Pancreatic Serous Cystadenoma 7 41272 -NCIT:C95471 Pancreatic Macrocystic Serous Cystadenoma 7 41273 -NCIT:C95470 Pancreatic Serous Adenoma 6 41274 -NCIT:C5712 Pancreatic Serous Cystadenoma 7 41275 -NCIT:C95471 Pancreatic Macrocystic Serous Cystadenoma 7 41276 -NCIT:C95475 Pancreatic Solid Serous Adenoma 7 41277 -NCIT:C95476 Von Hippel Lindau Syndrome-Associated Pancreatic Serous Adenoma 7 41278 -NCIT:C95559 Pancreatic Mature Teratoma 5 41279 -NCIT:C4773 Benign Appendix Neoplasm 4 41280 -NCIT:C43550 Appendix Adenoma 5 41281 -NCIT:C43546 Appendix Tubular Adenoma 6 41282 -NCIT:C43547 Appendix Tubulovillous Adenoma 6 41283 -NCIT:C43549 Appendix Traditional Serrated Adenoma 6 41284 -NCIT:C5510 Appendix Mucinous Cystadenoma 6 41285 -NCIT:C5512 Appendix Villous Adenoma 6 41286 -NCIT:C96415 Appendix Serrated Lesions and Polyps 6 41287 -NCIT:C43576 Appendix Lipoma 5 41288 -NCIT:C5514 Appendix Leiomyoma 5 41289 -NCIT:C4776 Benign Extrahepatic Bile Duct Neoplasm 4 41290 -NCIT:C5857 Extrahepatic Bile Duct Adenoma 5 41291 -NCIT:C5849 Extrahepatic Bile Duct Papillary Adenoma 6 41292 -NCIT:C5850 Extrahepatic Bile Duct Tubular Adenoma 6 41293 -NCIT:C96811 Extrahepatic Bile Duct Tubulopapillary Adenoma 6 41294 -NCIT:C7128 Benign Extrahepatic Bile Duct Non-Epithelial Neoplasm 5 41295 -NCIT:C5852 Extrahepatic Bile Duct Benign Granular Cell Tumor 6 41296 -NCIT:C5856 Benign Extrahepatic Bile Duct Soft Tissue Neoplasm 6 41297 -NCIT:C5853 Extrahepatic Bile Duct Fibroma 7 41298 -NCIT:C5854 Extrahepatic Bile Duct Lipoma 7 41299 -NCIT:C5855 Extrahepatic Bile Duct Leiomyoma 7 41300 -NCIT:C7741 Digestive System Hemangioma 4 41301 -NCIT:C3869 Liver Hemangioma 5 41302 -NCIT:C190019 Liver Congenital Hemangioma 6 41303 -NCIT:C96839 Liver Cavernous Hemangioma 6 41304 -NCIT:C96840 Liver Infantile Hemangioma 6 41305 -NCIT:C5395 Colon Cavernous Hemangioma 5 41306 -NCIT:C5481 Gastric Hemangioma 5 41307 -NCIT:C95622 Esophageal Hemangioma 5 41308 -NCIT:C4890 Malignant Digestive System Neoplasm 3 41309 -NCIT:C162255 Metastatic Malignant Digestive System Neoplasm 4 41310 -NCIT:C133839 Metastatic Digestive System Carcinoma 5 41311 -NCIT:C150577 Metastatic Gastroesophageal Junction Adenocarcinoma 6 41312 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 7 41313 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 7 41314 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 41315 -NCIT:C151904 Refractory Metastatic Digestive System Carcinoma 6 41316 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 7 41317 -NCIT:C151905 Recurrent Metastatic Digestive System Carcinoma 6 41318 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 7 41319 -NCIT:C153320 Metastatic Gastric Carcinoma 6 41320 -NCIT:C153319 Metastatic Gastric Adenocarcinoma 7 41321 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 41322 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 41323 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 41324 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 41325 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 41326 -NCIT:C165630 Metastatic Proximal Gastric Adenocarcinoma 8 41327 -NCIT:C166121 Oligometastatic Gastric Adenocarcinoma 8 41328 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 41329 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 41330 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 7 41331 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 41332 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 41333 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 41334 -NCIT:C162772 Locally Advanced Gastric Carcinoma 7 41335 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 41336 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 41337 -NCIT:C165299 Advanced Gastric Carcinoma 7 41338 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 41339 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 41340 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 41341 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 41342 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 41343 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 7 41344 -NCIT:C153358 Locally Advanced Digestive System Carcinoma 6 41345 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 7 41346 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 41347 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 41348 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 41349 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 7 41350 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 41351 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 7 41352 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 8 41353 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 41354 -NCIT:C170778 Locally Advanced Rectal Carcinoma 8 41355 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 41356 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 41357 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 41358 -NCIT:C170910 Locally Advanced Colon Carcinoma 8 41359 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 41360 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 41361 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 41362 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 41363 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 41364 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 41365 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 41366 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 41367 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 41368 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 41369 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 41370 -NCIT:C162772 Locally Advanced Gastric Carcinoma 7 41371 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 41372 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 41373 -NCIT:C168976 Locally Advanced Esophageal Carcinoma 7 41374 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 41375 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 41376 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 41377 -NCIT:C168977 Locally Advanced Anal Carcinoma 7 41378 -NCIT:C170459 Locally Advanced Pancreatobiliary Carcinoma 7 41379 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 8 41380 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 41381 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 41382 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 41383 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 41384 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 41385 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 41386 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 41387 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 41388 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 8 41389 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 41390 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 41391 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 41392 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 8 41393 -NCIT:C171298 Locally Advanced Liver Carcinoma 7 41394 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 41395 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 8 41396 -NCIT:C154088 Metastatic Liver Carcinoma 6 41397 -NCIT:C154091 Metastatic Hepatocellular Carcinoma 7 41398 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 8 41399 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 41400 -NCIT:C167336 Advanced Hepatocellular Carcinoma 8 41401 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 41402 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 41403 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 41404 -NCIT:C171298 Locally Advanced Liver Carcinoma 7 41405 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 41406 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 8 41407 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 7 41408 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 8 41409 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 8 41410 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 6 41411 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 7 41412 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 41413 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 41414 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 41415 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 7 41416 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 41417 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 41418 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 41419 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 7 41420 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 41421 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 41422 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 41423 -NCIT:C156073 Metastatic Esophageal Carcinoma 6 41424 -NCIT:C156074 Metastatic Esophageal Adenocarcinoma 7 41425 -NCIT:C166120 Oligometastatic Esophageal Adenocarcinoma 8 41426 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 41427 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 41428 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 41429 -NCIT:C172249 Metastatic Distal Esophagus Adenocarcinoma 8 41430 -NCIT:C156075 Metastatic Esophageal Squamous Cell Carcinoma 7 41431 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 41432 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 41433 -NCIT:C160599 Advanced Esophageal Carcinoma 7 41434 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 41435 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 41436 -NCIT:C168976 Locally Advanced Esophageal Carcinoma 7 41437 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 41438 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 41439 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 41440 -NCIT:C156096 Metastatic Colorectal Carcinoma 6 41441 -NCIT:C142867 Metastatic Microsatellite Stable Colorectal Carcinoma 7 41442 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 8 41443 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 8 41444 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 41445 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 8 41446 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 41447 -NCIT:C153224 Colorectal Carcinoma Metastatic in the Lung 7 41448 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 8 41449 -NCIT:C156097 Metastatic Colon Carcinoma 7 41450 -NCIT:C160819 Metastatic Colon Adenocarcinoma 8 41451 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 41452 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 41453 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 41454 -NCIT:C167238 Advanced Colon Carcinoma 8 41455 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 41456 -NCIT:C170910 Locally Advanced Colon Carcinoma 8 41457 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 41458 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 41459 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 41460 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 8 41461 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 41462 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 8 41463 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 8 41464 -NCIT:C156098 Metastatic Rectal Carcinoma 7 41465 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 8 41466 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 8 41467 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 41468 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 41469 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 41470 -NCIT:C170777 Advanced Rectal Carcinoma 8 41471 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 41472 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 41473 -NCIT:C170778 Locally Advanced Rectal Carcinoma 8 41474 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 41475 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 41476 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 41477 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 8 41478 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 41479 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 41480 -NCIT:C157366 Colorectal Carcinoma Metastatic in the Liver 7 41481 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 8 41482 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 8 41483 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 8 41484 -NCIT:C161048 Metastatic Colorectal Adenocarcinoma 7 41485 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 8 41486 -NCIT:C160819 Metastatic Colon Adenocarcinoma 8 41487 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 41488 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 41489 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 41490 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 8 41491 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 41492 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 41493 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 41494 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 8 41495 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 41496 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 41497 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 41498 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 41499 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 41500 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 41501 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 41502 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 41503 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 41504 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 41505 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 41506 -NCIT:C162475 Advanced Colorectal Carcinoma 7 41507 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 8 41508 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 41509 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 41510 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 41511 -NCIT:C167238 Advanced Colon Carcinoma 8 41512 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 41513 -NCIT:C170777 Advanced Rectal Carcinoma 8 41514 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 41515 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 41516 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 7 41517 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 8 41518 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 41519 -NCIT:C170778 Locally Advanced Rectal Carcinoma 8 41520 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 41521 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 41522 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 41523 -NCIT:C170910 Locally Advanced Colon Carcinoma 8 41524 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 41525 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 41526 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 41527 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 41528 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 41529 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 41530 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 41531 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 41532 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 41533 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 41534 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 41535 -NCIT:C185165 Oligometastatic Colorectal Carcinoma 7 41536 -NCIT:C156746 Advanced Digestive System Carcinoma 6 41537 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 7 41538 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 41539 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 41540 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 7 41541 -NCIT:C160599 Advanced Esophageal Carcinoma 7 41542 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 41543 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 41544 -NCIT:C162475 Advanced Colorectal Carcinoma 7 41545 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 8 41546 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 41547 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 41548 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 41549 -NCIT:C167238 Advanced Colon Carcinoma 8 41550 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 41551 -NCIT:C170777 Advanced Rectal Carcinoma 8 41552 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 41553 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 41554 -NCIT:C165299 Advanced Gastric Carcinoma 7 41555 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 41556 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 41557 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 41558 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 41559 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 41560 -NCIT:C167336 Advanced Hepatocellular Carcinoma 7 41561 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 8 41562 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 8 41563 -NCIT:C170515 Advanced Anal Carcinoma 7 41564 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 8 41565 -NCIT:C171330 Advanced Pancreatobiliary Carcinoma 7 41566 -NCIT:C165452 Advanced Pancreatic Carcinoma 8 41567 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 41568 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 41569 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 8 41570 -NCIT:C171331 Advanced Biliary Tract Carcinoma 8 41571 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 41572 -NCIT:C162752 Advanced Cholangiocarcinoma 10 41573 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 41574 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 41575 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 41576 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 41577 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 41578 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 41579 -NCIT:C182105 Advanced Appendix Adenocarcinoma 7 41580 -NCIT:C162275 Metastatic Appendix Carcinoma 6 41581 -NCIT:C182104 Metastatic Appendix Adenocarcinoma 7 41582 -NCIT:C162274 Metastatic Appendix Mucinous Adenocarcinoma 8 41583 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 41584 -NCIT:C163967 Metastatic Digestive System Mixed Adenoneuroendocrine Carcinoma 6 41585 -NCIT:C170458 Metastatic Pancreatobiliary Carcinoma 6 41586 -NCIT:C156069 Metastatic Pancreatic Carcinoma 7 41587 -NCIT:C165452 Advanced Pancreatic Carcinoma 8 41588 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 41589 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 41590 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 8 41591 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 41592 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 41593 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 41594 -NCIT:C190770 Metastatic Pancreatic Adenosquamous Carcinoma 8 41595 -NCIT:C190771 Metastatic Pancreatic Squamous Cell Carcinoma 8 41596 -NCIT:C8933 Metastatic Pancreatic Adenocarcinoma 8 41597 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 41598 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 41599 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 41600 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 9 41601 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 41602 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 41603 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 10 41604 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 41605 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 41606 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 9 41607 -NCIT:C162751 Metastatic Biliary Tract Carcinoma 7 41608 -NCIT:C142869 Metastatic Bile Duct Carcinoma 8 41609 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 41610 -NCIT:C162752 Advanced Cholangiocarcinoma 10 41611 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 41612 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 41613 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 41614 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 41615 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 41616 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 41617 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 41618 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 41619 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 41620 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 41621 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 41622 -NCIT:C157623 Metastatic Cholangiocarcinoma 9 41623 -NCIT:C162752 Advanced Cholangiocarcinoma 10 41624 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 41625 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 41626 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 41627 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 41628 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 41629 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 41630 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 10 41631 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 41632 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 10 41633 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 41634 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 41635 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 10 41636 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 41637 -NCIT:C185071 Metastatic Extrahepatic Bile Duct Carcinoma 9 41638 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 10 41639 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 11 41640 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 41641 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 41642 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 41643 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 41644 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 41645 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 41646 -NCIT:C162754 Metastatic Gallbladder Carcinoma 8 41647 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 41648 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 41649 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 41650 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 8 41651 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 41652 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 41653 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 41654 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 41655 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 41656 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 41657 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 41658 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 41659 -NCIT:C171331 Advanced Biliary Tract Carcinoma 8 41660 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 41661 -NCIT:C162752 Advanced Cholangiocarcinoma 10 41662 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 41663 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 41664 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 41665 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 41666 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 41667 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 41668 -NCIT:C170459 Locally Advanced Pancreatobiliary Carcinoma 7 41669 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 8 41670 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 41671 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 41672 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 41673 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 41674 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 41675 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 41676 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 41677 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 41678 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 8 41679 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 41680 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 41681 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 41682 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 8 41683 -NCIT:C171326 Metastatic Ampulla of Vater Carcinoma 7 41684 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 8 41685 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 8 41686 -NCIT:C171330 Advanced Pancreatobiliary Carcinoma 7 41687 -NCIT:C165452 Advanced Pancreatic Carcinoma 8 41688 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 41689 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 41690 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 8 41691 -NCIT:C171331 Advanced Biliary Tract Carcinoma 8 41692 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 41693 -NCIT:C162752 Advanced Cholangiocarcinoma 10 41694 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 41695 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 41696 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 41697 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 41698 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 41699 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 41700 -NCIT:C170514 Metastatic Anal Carcinoma 6 41701 -NCIT:C168977 Locally Advanced Anal Carcinoma 7 41702 -NCIT:C169103 Metastatic Anal Squamous Cell Carcinoma 7 41703 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 41704 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 41705 -NCIT:C170515 Advanced Anal Carcinoma 7 41706 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 8 41707 -NCIT:C5612 Metastatic Anal Canal Carcinoma 7 41708 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 41709 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 41710 -NCIT:C8637 Metastatic Small Intestinal Carcinoma 6 41711 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 7 41712 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 41713 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 7 41714 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 41715 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 41716 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 41717 -NCIT:C8934 Metastatic Small Intestinal Adenocarcinoma 7 41718 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 41719 -NCIT:C156492 Metastatic Digestive System Neuroendocrine Neoplasm 5 41720 -NCIT:C115245 Metastatic Digestive System Neuroendocrine Tumor G1 6 41721 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 7 41722 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 41723 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 7 41724 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 7 41725 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 41726 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 6 41727 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 7 41728 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 41729 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 41730 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 41731 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 7 41732 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 41733 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 41734 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 41735 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 7 41736 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 41737 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 41738 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 41739 -NCIT:C158089 Advanced Digestive System Neuroendocrine Neoplasm 6 41740 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 7 41741 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 41742 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 41743 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 7 41744 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 41745 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 41746 -NCIT:C165448 Advanced Pancreatic Neuroendocrine Neoplasm 7 41747 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 8 41748 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 41749 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 41750 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 7 41751 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 41752 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 7 41753 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 41754 -NCIT:C165447 Metastatic Pancreatic Neuroendocrine Neoplasm 6 41755 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 7 41756 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 41757 -NCIT:C156488 Metastatic Pancreatic Neuroendocrine Tumor 7 41758 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 8 41759 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 41760 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 41761 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 8 41762 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 8 41763 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 41764 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 8 41765 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 41766 -NCIT:C165448 Advanced Pancreatic Neuroendocrine Neoplasm 7 41767 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 8 41768 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 41769 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 41770 -NCIT:C167329 Metastatic Midgut Neuroendocrine Tumor 6 41771 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 7 41772 -NCIT:C178271 Locally Advanced Digestive System Neuroendocrine Neoplasm 6 41773 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 41774 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 41775 -NCIT:C158090 Locally Advanced Unresectable Digestive System Neuroendocrine Neoplasm 7 41776 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 7 41777 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 7 41778 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 7 41779 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 7 41780 -NCIT:C179415 Metastatic Digestive System Neuroendocrine Tumor G2 6 41781 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 7 41782 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 7 41783 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 41784 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 7 41785 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 41786 -NCIT:C162780 Metastatic Malignant Colorectal Neoplasm 5 41787 -NCIT:C156096 Metastatic Colorectal Carcinoma 6 41788 -NCIT:C142867 Metastatic Microsatellite Stable Colorectal Carcinoma 7 41789 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 8 41790 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 8 41791 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 41792 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 8 41793 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 41794 -NCIT:C153224 Colorectal Carcinoma Metastatic in the Lung 7 41795 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 8 41796 -NCIT:C156097 Metastatic Colon Carcinoma 7 41797 -NCIT:C160819 Metastatic Colon Adenocarcinoma 8 41798 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 41799 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 41800 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 41801 -NCIT:C167238 Advanced Colon Carcinoma 8 41802 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 41803 -NCIT:C170910 Locally Advanced Colon Carcinoma 8 41804 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 41805 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 41806 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 41807 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 8 41808 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 41809 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 8 41810 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 8 41811 -NCIT:C156098 Metastatic Rectal Carcinoma 7 41812 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 8 41813 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 8 41814 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 41815 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 41816 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 41817 -NCIT:C170777 Advanced Rectal Carcinoma 8 41818 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 41819 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 41820 -NCIT:C170778 Locally Advanced Rectal Carcinoma 8 41821 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 41822 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 41823 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 41824 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 8 41825 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 41826 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 41827 -NCIT:C157366 Colorectal Carcinoma Metastatic in the Liver 7 41828 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 8 41829 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 8 41830 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 8 41831 -NCIT:C161048 Metastatic Colorectal Adenocarcinoma 7 41832 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 8 41833 -NCIT:C160819 Metastatic Colon Adenocarcinoma 8 41834 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 41835 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 41836 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 41837 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 8 41838 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 41839 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 41840 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 41841 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 8 41842 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 41843 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 41844 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 41845 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 41846 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 41847 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 41848 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 41849 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 41850 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 41851 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 41852 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 41853 -NCIT:C162475 Advanced Colorectal Carcinoma 7 41854 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 8 41855 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 41856 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 41857 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 41858 -NCIT:C167238 Advanced Colon Carcinoma 8 41859 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 41860 -NCIT:C170777 Advanced Rectal Carcinoma 8 41861 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 41862 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 41863 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 7 41864 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 8 41865 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 41866 -NCIT:C170778 Locally Advanced Rectal Carcinoma 8 41867 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 41868 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 41869 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 41870 -NCIT:C170910 Locally Advanced Colon Carcinoma 8 41871 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 41872 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 41873 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 41874 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 41875 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 41876 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 41877 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 41878 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 41879 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 41880 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 41881 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 41882 -NCIT:C185165 Oligometastatic Colorectal Carcinoma 7 41883 -NCIT:C175547 Advanced Malignant Digestive System Neoplasm 5 41884 -NCIT:C156746 Advanced Digestive System Carcinoma 6 41885 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 7 41886 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 41887 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 41888 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 7 41889 -NCIT:C160599 Advanced Esophageal Carcinoma 7 41890 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 41891 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 41892 -NCIT:C162475 Advanced Colorectal Carcinoma 7 41893 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 8 41894 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 41895 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 41896 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 41897 -NCIT:C167238 Advanced Colon Carcinoma 8 41898 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 41899 -NCIT:C170777 Advanced Rectal Carcinoma 8 41900 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 41901 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 41902 -NCIT:C165299 Advanced Gastric Carcinoma 7 41903 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 41904 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 41905 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 41906 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 41907 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 41908 -NCIT:C167336 Advanced Hepatocellular Carcinoma 7 41909 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 8 41910 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 8 41911 -NCIT:C170515 Advanced Anal Carcinoma 7 41912 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 8 41913 -NCIT:C171330 Advanced Pancreatobiliary Carcinoma 7 41914 -NCIT:C165452 Advanced Pancreatic Carcinoma 8 41915 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 41916 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 41917 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 8 41918 -NCIT:C171331 Advanced Biliary Tract Carcinoma 8 41919 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 41920 -NCIT:C162752 Advanced Cholangiocarcinoma 10 41921 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 41922 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 41923 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 41924 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 41925 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 41926 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 41927 -NCIT:C182105 Advanced Appendix Adenocarcinoma 7 41928 -NCIT:C158089 Advanced Digestive System Neuroendocrine Neoplasm 6 41929 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 7 41930 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 41931 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 41932 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 7 41933 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 41934 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 41935 -NCIT:C165448 Advanced Pancreatic Neuroendocrine Neoplasm 7 41936 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 8 41937 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 41938 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 41939 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 7 41940 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 41941 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 7 41942 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 41943 -NCIT:C176679 Advanced Malignant Small Intestinal Neoplasm 6 41944 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 7 41945 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 41946 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 41947 -NCIT:C176678 Metastatic Malignant Small Intestinal Neoplasm 5 41948 -NCIT:C176679 Advanced Malignant Small Intestinal Neoplasm 6 41949 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 7 41950 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 41951 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 41952 -NCIT:C8637 Metastatic Small Intestinal Carcinoma 6 41953 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 7 41954 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 41955 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 7 41956 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 41957 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 41958 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 41959 -NCIT:C8934 Metastatic Small Intestinal Adenocarcinoma 7 41960 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 41961 -NCIT:C179181 Locally Advanced Malignant Digestive System Neoplasm 5 41962 -NCIT:C153358 Locally Advanced Digestive System Carcinoma 6 41963 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 7 41964 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 41965 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 41966 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 41967 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 7 41968 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 41969 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 7 41970 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 8 41971 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 41972 -NCIT:C170778 Locally Advanced Rectal Carcinoma 8 41973 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 41974 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 41975 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 41976 -NCIT:C170910 Locally Advanced Colon Carcinoma 8 41977 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 41978 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 41979 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 41980 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 41981 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 41982 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 41983 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 41984 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 41985 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 41986 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 41987 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 41988 -NCIT:C162772 Locally Advanced Gastric Carcinoma 7 41989 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 41990 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 41991 -NCIT:C168976 Locally Advanced Esophageal Carcinoma 7 41992 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 41993 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 41994 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 41995 -NCIT:C168977 Locally Advanced Anal Carcinoma 7 41996 -NCIT:C170459 Locally Advanced Pancreatobiliary Carcinoma 7 41997 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 8 41998 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 41999 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 42000 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 42001 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 42002 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 42003 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 42004 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 42005 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 42006 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 8 42007 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 42008 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 42009 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 42010 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 8 42011 -NCIT:C171298 Locally Advanced Liver Carcinoma 7 42012 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 42013 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 8 42014 -NCIT:C178271 Locally Advanced Digestive System Neuroendocrine Neoplasm 6 42015 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 42016 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 42017 -NCIT:C158090 Locally Advanced Unresectable Digestive System Neuroendocrine Neoplasm 7 42018 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 7 42019 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 7 42020 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 7 42021 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 7 42022 -NCIT:C162845 Unresectable Malignant Digestive System Neoplasm 4 42023 -NCIT:C155903 Unresectable Digestive System Carcinoma 5 42024 -NCIT:C128563 Unresectable Esophageal Carcinoma 6 42025 -NCIT:C171608 Unresectable Esophageal Squamous Cell Carcinoma 7 42026 -NCIT:C173162 Unresectable Esophageal Adenocarcinoma 7 42027 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 42028 -NCIT:C172248 Unresectable Distal Esophagus Adenocarcinoma 8 42029 -NCIT:C129654 Unresectable Digestive System Adenocarcinoma 6 42030 -NCIT:C150578 Unresectable Gastroesophageal Junction Adenocarcinoma 7 42031 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 42032 -NCIT:C154221 Unresectable Gastric Adenocarcinoma 7 42033 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 42034 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 42035 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 42036 -NCIT:C162016 Unresectable Pancreatic Adenocarcinoma 7 42037 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 8 42038 -NCIT:C172245 Unresectable Pancreatic Ductal Adenocarcinoma 8 42039 -NCIT:C165171 Unresectable Liver and Intrahepatic Bile Duct Carcinoma 7 42040 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 8 42041 -NCIT:C27345 Unresectable Hepatocellular Carcinoma 8 42042 -NCIT:C162602 Unresectable Fibrolamellar Carcinoma 9 42043 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 9 42044 -NCIT:C7878 Localized Unresectable Adult Liver Carcinoma 8 42045 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 9 42046 -NCIT:C171585 Unresectable Colorectal Adenocarcinoma 7 42047 -NCIT:C162116 Unresectable Colon Adenocarcinoma 8 42048 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 42049 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 8 42050 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 42051 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 42052 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 42053 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 42054 -NCIT:C173162 Unresectable Esophageal Adenocarcinoma 7 42055 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 42056 -NCIT:C172248 Unresectable Distal Esophagus Adenocarcinoma 8 42057 -NCIT:C175516 Unresectable Small Intestinal Adenocarcinoma 7 42058 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 8 42059 -NCIT:C189064 Unresectable Gallbladder Adenocarcinoma 7 42060 -NCIT:C189065 Unresectable Ampulla of Vater Adenocarcinoma 7 42061 -NCIT:C27324 Unresectable Cholangiocarcinoma 7 42062 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 8 42063 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 8 42064 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 8 42065 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 8 42066 -NCIT:C155935 Unresectable Digestive System Neuroendocrine Carcinoma 6 42067 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 7 42068 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 7 42069 -NCIT:C159775 Unresectable Gastric Carcinoma 6 42070 -NCIT:C154221 Unresectable Gastric Adenocarcinoma 7 42071 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 42072 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 42073 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 42074 -NCIT:C162600 Unresectable Colorectal Carcinoma 6 42075 -NCIT:C171585 Unresectable Colorectal Adenocarcinoma 7 42076 -NCIT:C162116 Unresectable Colon Adenocarcinoma 8 42077 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 42078 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 8 42079 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 42080 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 42081 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 42082 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 42083 -NCIT:C180406 Unresectable Colon Carcinoma 7 42084 -NCIT:C162116 Unresectable Colon Adenocarcinoma 8 42085 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 42086 -NCIT:C165172 Unresectable Ampulla of Vater Carcinoma 6 42087 -NCIT:C189065 Unresectable Ampulla of Vater Adenocarcinoma 7 42088 -NCIT:C172808 Unresectable Digestive System Mixed Adenoneuroendocrine Carcinoma 6 42089 -NCIT:C173156 Unresectable Anal Squamous Cell Carcinoma 6 42090 -NCIT:C175384 Unresectable Anal Canal Squamous Cell Carcinoma 7 42091 -NCIT:C176042 Unresectable Biliary Tract Carcinoma 6 42092 -NCIT:C171322 Unresectable Bile Duct Carcinoma 7 42093 -NCIT:C27324 Unresectable Cholangiocarcinoma 8 42094 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 9 42095 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 9 42096 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 9 42097 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 9 42098 -NCIT:C7892 Unresectable Extrahepatic Bile Duct Carcinoma 8 42099 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 9 42100 -NCIT:C7890 Unresectable Gallbladder Carcinoma 7 42101 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 8 42102 -NCIT:C189064 Unresectable Gallbladder Adenocarcinoma 8 42103 -NCIT:C5018 Unresectable Pancreatic Carcinoma 6 42104 -NCIT:C162016 Unresectable Pancreatic Adenocarcinoma 7 42105 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 8 42106 -NCIT:C172245 Unresectable Pancreatic Ductal Adenocarcinoma 8 42107 -NCIT:C8638 Unresectable Small Intestinal Carcinoma 6 42108 -NCIT:C175516 Unresectable Small Intestinal Adenocarcinoma 7 42109 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 8 42110 -NCIT:C165455 Unresectable Digestive System Neuroendocrine Neoplasm 5 42111 -NCIT:C155935 Unresectable Digestive System Neuroendocrine Carcinoma 6 42112 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 7 42113 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 7 42114 -NCIT:C158090 Locally Advanced Unresectable Digestive System Neuroendocrine Neoplasm 6 42115 -NCIT:C165456 Unresectable Pancreatic Neuroendocrine Neoplasm 6 42116 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 7 42117 -NCIT:C190782 Unresectable Pancreatic Neuroendocrine Tumor 7 42118 -NCIT:C167331 Unresectable Midgut Neuroendocrine Tumor 6 42119 -NCIT:C179419 Unresectable Digestive System Neuroendocrine Tumor G1 6 42120 -NCIT:C187345 Unresectable Digestive System Neuroendocrine Tumor G2 6 42121 -NCIT:C175304 Unresectable Malignant Gastric Neoplasm 5 42122 -NCIT:C159775 Unresectable Gastric Carcinoma 6 42123 -NCIT:C154221 Unresectable Gastric Adenocarcinoma 7 42124 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 42125 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 42126 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 42127 -NCIT:C35648 Unresectable Malignant Liver Neoplasm 5 42128 -NCIT:C165171 Unresectable Liver and Intrahepatic Bile Duct Carcinoma 6 42129 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 7 42130 -NCIT:C27345 Unresectable Hepatocellular Carcinoma 7 42131 -NCIT:C162602 Unresectable Fibrolamellar Carcinoma 8 42132 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 8 42133 -NCIT:C7878 Localized Unresectable Adult Liver Carcinoma 7 42134 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 8 42135 -NCIT:C8641 Unresectable Hepatoblastoma 6 42136 -NCIT:C168669 Metastatic Malignant Neoplasm in the Digestive System 4 42137 -NCIT:C168666 Gastrointestinal Carcinomatosis 5 42138 -NCIT:C4581 Metastatic Malignant Neoplasm in the Large Intestine 5 42139 -NCIT:C7426 Metastatic Malignant Neoplasm in the Rectum 6 42140 -NCIT:C188076 Metastatic Carcinoma in the Rectum 7 42141 -NCIT:C8411 Metastatic Malignant Neoplasm in the Colon 6 42142 -NCIT:C4758 Metastatic Malignant Neoplasm in the Liver 5 42143 -NCIT:C150130 Uveal Melanoma Metastatic in the Liver 6 42144 -NCIT:C185152 Extramedullary Disease in Plasma Cell Myeloma Involving the Liver 6 42145 -NCIT:C96767 Metastatic Carcinoma in the Liver 6 42146 -NCIT:C157366 Colorectal Carcinoma Metastatic in the Liver 7 42147 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 8 42148 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 8 42149 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 8 42150 -NCIT:C36302 Breast Carcinoma Metastatic in the Liver 7 42151 -NCIT:C36306 Lung Carcinoma Metastatic in the Liver 7 42152 -NCIT:C7460 Metastatic Malignant Neoplasm in the Anus 5 42153 -NCIT:C7479 Metastatic Malignant Neoplasm in the Esophagus 5 42154 -NCIT:C7482 Metastatic Malignant Neoplasm in the Gallbladder 5 42155 -NCIT:C7524 Metastatic Malignant Neoplasm in the Small Intestine 5 42156 -NCIT:C8543 Metastatic Malignant Neoplasm in the Pancreas 5 42157 -NCIT:C188077 Metastatic Carcinoma in the Pancreas 6 42158 -NCIT:C95903 Metastatic Malignant Neoplasm in the Stomach 5 42159 -NCIT:C96953 Metastatic Malignant Neoplasm in the Extrahepatic Bile Ducts 5 42160 -NCIT:C172849 Digestive System Sarcoma 4 42161 -NCIT:C150704 EBV-Positive Inflammatory Follicular Dendritic Cell Sarcoma of the Digestive System 5 42162 -NCIT:C172951 Digestive System Leiomyosarcoma 5 42163 -NCIT:C188065 Pancreatic Leiomyosarcoma 6 42164 -NCIT:C27200 Gastric Leiomyosarcoma 6 42165 -NCIT:C5334 Esophageal Leiomyosarcoma 6 42166 -NCIT:C5599 Anal Leiomyosarcoma 6 42167 -NCIT:C5756 Liver Leiomyosarcoma 6 42168 -NCIT:C5841 Gallbladder Leiomyosarcoma 6 42169 -NCIT:C5848 Extrahepatic Bile Duct Leiomyosarcoma 6 42170 -NCIT:C7085 Small Intestinal Leiomyosarcoma 6 42171 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 7 42172 -NCIT:C96435 Appendix Leiomyosarcoma 6 42173 -NCIT:C96509 Colorectal Leiomyosarcoma 6 42174 -NCIT:C5494 Colon Leiomyosarcoma 7 42175 -NCIT:C5549 Rectal Leiomyosarcoma 7 42176 -NCIT:C172952 Digestive System Rhabdomyosarcoma 5 42177 -NCIT:C5610 Anal Rhabdomyosarcoma 6 42178 -NCIT:C5627 Rectal Rhabdomyosarcoma 6 42179 -NCIT:C5834 Liver Rhabdomyosarcoma 6 42180 -NCIT:C5839 Gallbladder Rhabdomyosarcoma 6 42181 -NCIT:C5860 Extrahepatic Bile Duct Rhabdomyosarcoma 6 42182 -NCIT:C5847 Extrahepatic Bile Duct Embryonal Rhabdomyosarcoma 7 42183 -NCIT:C95623 Esophageal Rhabdomyosarcoma 6 42184 -NCIT:C172955 Digestive System Kaposi Sarcoma 5 42185 -NCIT:C5529 Gastric Kaposi Sarcoma 6 42186 -NCIT:C5624 AIDS-Related Gastric Kaposi Sarcoma 7 42187 -NCIT:C5602 Anal Kaposi Sarcoma 6 42188 -NCIT:C5706 Esophageal Kaposi Sarcoma 6 42189 -NCIT:C5842 Gallbladder Kaposi Sarcoma 6 42190 -NCIT:C96059 Small Intestinal Kaposi Sarcoma 6 42191 -NCIT:C96434 Appendix Kaposi Sarcoma 6 42192 -NCIT:C96510 Colorectal Kaposi Sarcoma 6 42193 -NCIT:C5516 Colon Kaposi Sarcoma 7 42194 -NCIT:C5550 Rectal Kaposi Sarcoma 7 42195 -NCIT:C96844 Liver Kaposi Sarcoma 6 42196 -NCIT:C96951 Extrahepatic Bile Duct Kaposi Sarcoma 6 42197 -NCIT:C172980 Gastrointestinal Clear Cell Sarcoma/Malignant Gastrointestinal Neuroectodermal Tumor 5 42198 -NCIT:C27439 Gastric Sarcoma 5 42199 -NCIT:C27200 Gastric Leiomyosarcoma 6 42200 -NCIT:C5488 Gastric Liposarcoma 6 42201 -NCIT:C5529 Gastric Kaposi Sarcoma 6 42202 -NCIT:C5624 AIDS-Related Gastric Kaposi Sarcoma 7 42203 -NCIT:C95897 Gastric Malignant Gastrointestinal Stromal Tumor 6 42204 -NCIT:C95899 Gastric Synovial Sarcoma 6 42205 -NCIT:C4437 Liver Sarcoma 5 42206 -NCIT:C27096 Liver Embryonal Sarcoma 6 42207 -NCIT:C189934 Childhood Liver Embryonal Sarcoma 7 42208 -NCIT:C189935 Adult Liver Embryonal Sarcoma 7 42209 -NCIT:C4438 Liver Angiosarcoma 6 42210 -NCIT:C190020 Childhood Liver Angiosarcoma 7 42211 -NCIT:C5756 Liver Leiomyosarcoma 6 42212 -NCIT:C5832 Liver Fibrosarcoma 6 42213 -NCIT:C5833 Liver Extraskeletal Osteosarcoma 6 42214 -NCIT:C5834 Liver Rhabdomyosarcoma 6 42215 -NCIT:C96844 Liver Kaposi Sarcoma 6 42216 -NCIT:C96845 Liver Synovial Sarcoma 6 42217 -NCIT:C5029 Extrahepatic Bile Duct Sarcoma 5 42218 -NCIT:C5848 Extrahepatic Bile Duct Leiomyosarcoma 6 42219 -NCIT:C5860 Extrahepatic Bile Duct Rhabdomyosarcoma 6 42220 -NCIT:C5847 Extrahepatic Bile Duct Embryonal Rhabdomyosarcoma 7 42221 -NCIT:C96951 Extrahepatic Bile Duct Kaposi Sarcoma 6 42222 -NCIT:C5335 Small Intestinal Sarcoma 5 42223 -NCIT:C5336 Small Intestinal Fibrosarcoma 6 42224 -NCIT:C7085 Small Intestinal Leiomyosarcoma 6 42225 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 7 42226 -NCIT:C82972 Duodenal Extraskeletal Osteosarcoma 6 42227 -NCIT:C96059 Small Intestinal Kaposi Sarcoma 6 42228 -NCIT:C96060 Small Intestinal Angiosarcoma 6 42229 -NCIT:C5341 Esophageal Sarcoma 5 42230 -NCIT:C5334 Esophageal Leiomyosarcoma 6 42231 -NCIT:C5705 Esophageal Liposarcoma 6 42232 -NCIT:C5706 Esophageal Kaposi Sarcoma 6 42233 -NCIT:C92185 Esophageal Malignant Peripheral Nerve Sheath Tumor 6 42234 -NCIT:C95623 Esophageal Rhabdomyosarcoma 6 42235 -NCIT:C95624 Esophageal Synovial Sarcoma 6 42236 -NCIT:C5611 Anal Sarcoma 5 42237 -NCIT:C5599 Anal Leiomyosarcoma 6 42238 -NCIT:C5602 Anal Kaposi Sarcoma 6 42239 -NCIT:C5610 Anal Rhabdomyosarcoma 6 42240 -NCIT:C5715 Pancreatic Sarcoma 5 42241 -NCIT:C188065 Pancreatic Leiomyosarcoma 6 42242 -NCIT:C5736 Gallbladder Sarcoma 5 42243 -NCIT:C5839 Gallbladder Rhabdomyosarcoma 6 42244 -NCIT:C5840 Gallbladder Angiosarcoma 6 42245 -NCIT:C5841 Gallbladder Leiomyosarcoma 6 42246 -NCIT:C5842 Gallbladder Kaposi Sarcoma 6 42247 -NCIT:C96508 Colorectal Sarcoma 5 42248 -NCIT:C5495 Colon Sarcoma 6 42249 -NCIT:C156279 Colon Liposarcoma 7 42250 -NCIT:C5494 Colon Leiomyosarcoma 7 42251 -NCIT:C5516 Colon Kaposi Sarcoma 7 42252 -NCIT:C5548 Rectal Sarcoma 6 42253 -NCIT:C5549 Rectal Leiomyosarcoma 7 42254 -NCIT:C5550 Rectal Kaposi Sarcoma 7 42255 -NCIT:C5627 Rectal Rhabdomyosarcoma 7 42256 -NCIT:C96509 Colorectal Leiomyosarcoma 6 42257 -NCIT:C5494 Colon Leiomyosarcoma 7 42258 -NCIT:C5549 Rectal Leiomyosarcoma 7 42259 -NCIT:C96510 Colorectal Kaposi Sarcoma 6 42260 -NCIT:C5516 Colon Kaposi Sarcoma 7 42261 -NCIT:C5550 Rectal Kaposi Sarcoma 7 42262 -NCIT:C96511 Colorectal Angiosarcoma 6 42263 -NCIT:C189870 Childhood Malignant Digestive System Neoplasm 4 42264 -NCIT:C118808 Childhood Colorectal Carcinoma 5 42265 -NCIT:C118823 Childhood Rectal Carcinoma 6 42266 -NCIT:C118812 Childhood Esophageal Carcinoma 5 42267 -NCIT:C118813 Childhood Gastric Carcinoma 5 42268 -NCIT:C118826 Childhood Malignant Small Intestinal Neoplasm 5 42269 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 6 42270 -NCIT:C123933 Childhood Small Intestinal Carcinoma 6 42271 -NCIT:C190023 Childhood Pancreatoblastoma 5 42272 -NCIT:C190024 Childhood Pancreatic Acinar Cell Carcinoma 5 42273 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 6 42274 -NCIT:C190027 Childhood Solid Pseudopapillary Neoplasm of the Pancreas 5 42275 -NCIT:C190028 Childhood Gastroblastoma 5 42276 -NCIT:C7708 Childhood Malignant Liver Neoplasm 5 42277 -NCIT:C189934 Childhood Liver Embryonal Sarcoma 6 42278 -NCIT:C190020 Childhood Liver Angiosarcoma 6 42279 -NCIT:C3728 Hepatoblastoma 6 42280 -NCIT:C142854 Refractory Hepatoblastoma 7 42281 -NCIT:C161838 Hepatocellular Malignant Neoplasm, Not Otherwise Specified 7 42282 -NCIT:C189923 Epithelial Hepatoblastoma 7 42283 -NCIT:C189924 Epithelial Hepatoblastoma with Pleomorphic Pattern 8 42284 -NCIT:C7093 Hepatoblastoma with Pure Fetal Epithelial Differentiation 8 42285 -NCIT:C7094 Hepatoblastoma with Combined Fetal and Embryonal Epithelial Differentiation 8 42286 -NCIT:C7095 Macrotrabecular Hepatoblastoma 8 42287 -NCIT:C7096 Small Cell Undifferentiated Hepatoblastoma 8 42288 -NCIT:C189927 Hepatoblastoma by PRETEXT Stage 7 42289 -NCIT:C7139 PRETEXT Stage 1 Hepatoblastoma 8 42290 -NCIT:C7140 PRETEXT Stage 2 Hepatoblastoma 8 42291 -NCIT:C7141 PRETEXT Stage 3 Hepatoblastoma 8 42292 -NCIT:C7142 PRETEXT Stage 4 Hepatoblastoma 8 42293 -NCIT:C189929 Hepatoblastoma by Postsurgical Stage 7 42294 -NCIT:C7143 Postsurgical Stage IV Hepatoblastoma 8 42295 -NCIT:C7144 Postsurgical Stage III Hepatoblastoma 8 42296 -NCIT:C7145 Postsurgical Stage II Hepatoblastoma 8 42297 -NCIT:C7146 Postsurgical Stage I Hepatoblastoma 8 42298 -NCIT:C7097 Mixed Epithelial and Mesenchymal Hepatoblastoma 7 42299 -NCIT:C189926 Non-Teratoid Hepatoblastoma 8 42300 -NCIT:C7098 Teratoid Hepatoblastoma 8 42301 -NCIT:C8641 Unresectable Hepatoblastoma 7 42302 -NCIT:C8642 Resectable Hepatoblastoma 7 42303 -NCIT:C8643 Recurrent Hepatoblastoma 7 42304 -NCIT:C7839 Recurrent Childhood Malignant Liver Neoplasm 6 42305 -NCIT:C8643 Recurrent Hepatoblastoma 7 42306 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 7 42307 -NCIT:C7955 Childhood Hepatocellular Carcinoma 6 42308 -NCIT:C189932 Childhood Fibrolamellar Carcinoma 7 42309 -NCIT:C5708 Stage III Childhood Hepatocellular Carcinoma AJCC v7 7 42310 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 7 42311 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 7 42312 -NCIT:C7838 Stage IV Childhood Hepatocellular Carcinoma AJCC v7 7 42313 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 7 42314 -NCIT:C96830 Calcifying Nested Stromal-Epithelial Tumor 6 42315 -NCIT:C96847 Extrarenal Rhabdoid Tumor of the Liver 6 42316 -NCIT:C3536 Malignant Ampulla of Vater Neoplasm 4 42317 -NCIT:C3908 Ampulla of Vater Carcinoma 5 42318 -NCIT:C134863 Ampulla of Vater Cancer by AJCC v7 Stage 6 42319 -NCIT:C4444 Stage 0 Ampulla of Vater Cancer AJCC v7 7 42320 -NCIT:C6651 Stage I Ampulla of Vater Cancer AJCC v7 7 42321 -NCIT:C88096 Stage IA Ampulla of Vater Cancer AJCC v7 8 42322 -NCIT:C88097 Stage IB Ampulla of Vater Cancer AJCC v7 8 42323 -NCIT:C6652 Stage II Ampulla of Vater Cancer AJCC v7 7 42324 -NCIT:C88098 Stage IIA Ampulla of Vater Cancer AJCC v7 8 42325 -NCIT:C88099 Stage IIB Ampulla of Vater Cancer AJCC v7 8 42326 -NCIT:C6653 Stage III Ampulla of Vater Cancer AJCC v7 7 42327 -NCIT:C6654 Stage IV Ampulla of Vater Cancer AJCC v7 7 42328 -NCIT:C134864 Ampulla of Vater Cancer by AJCC v8 Stage 6 42329 -NCIT:C134865 Stage 0 Ampulla of Vater Cancer AJCC v8 7 42330 -NCIT:C134866 Stage I Ampulla of Vater Cancer AJCC v8 7 42331 -NCIT:C134867 Stage IA Ampulla of Vater Cancer AJCC v8 8 42332 -NCIT:C134868 Stage IB Ampulla of Vater Cancer AJCC v8 8 42333 -NCIT:C134869 Stage II Ampulla of Vater Cancer AJCC v8 7 42334 -NCIT:C134870 Stage IIA Ampulla of Vater Cancer AJCC v8 8 42335 -NCIT:C134871 Stage IIB Ampulla of Vater Cancer AJCC v8 8 42336 -NCIT:C134872 Stage III Ampulla of Vater Cancer AJCC v8 7 42337 -NCIT:C134873 Stage IIIA Ampulla of Vater Cancer AJCC v8 8 42338 -NCIT:C134874 Stage IIIB Ampulla of Vater Cancer AJCC v8 8 42339 -NCIT:C134875 Stage IV Ampulla of Vater Cancer AJCC v8 7 42340 -NCIT:C165172 Unresectable Ampulla of Vater Carcinoma 6 42341 -NCIT:C189065 Unresectable Ampulla of Vater Adenocarcinoma 7 42342 -NCIT:C171326 Metastatic Ampulla of Vater Carcinoma 6 42343 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 7 42344 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 7 42345 -NCIT:C175436 Refractory Ampulla of Vater Carcinoma 6 42346 -NCIT:C27417 Ampulla of Vater Squamous Cell Carcinoma 6 42347 -NCIT:C27418 Ampulla of Vater Adenosquamous Carcinoma 6 42348 -NCIT:C27419 Ampulla of Vater Undifferentiated Carcinoma 6 42349 -NCIT:C95965 Ampulla of Vater Undifferentiated Carcinoma with Osteoclast-Like Giant Cells 7 42350 -NCIT:C6650 Ampulla of Vater Adenocarcinoma 6 42351 -NCIT:C153574 Recurrent Ampulla of Vater Adenocarcinoma 7 42352 -NCIT:C189065 Unresectable Ampulla of Vater Adenocarcinoma 7 42353 -NCIT:C27414 Ampulla of Vater Clear Cell Adenocarcinoma 7 42354 -NCIT:C27415 Ampulla of Vater Intestinal-Type Adenocarcinoma 7 42355 -NCIT:C27416 Ampulla of Vater Mucinous Adenocarcinoma 7 42356 -NCIT:C6656 Ampulla of Vater Signet Ring Cell Carcinoma 7 42357 -NCIT:C95963 Ampulla of Vater Pancreatobiliary Type Adenocarcinoma 7 42358 -NCIT:C95966 Ampulla of Vater Hepatoid Adenocarcinoma 7 42359 -NCIT:C95967 Ampulla of Vater Invasive Papillary Adenocarcinoma 7 42360 -NCIT:C95984 Ampulla of Vater Neuroendocrine Carcinoma 6 42361 -NCIT:C6655 Ampulla of Vater Small Cell Neuroendocrine Carcinoma 7 42362 -NCIT:C95985 Ampulla of Vater Large Cell Neuroendocrine Carcinoma 7 42363 -NCIT:C95986 Ampulla of Vater Mixed Adenoneuroendocrine Carcinoma 6 42364 -NCIT:C38162 Digestive System Lymphoma 4 42365 -NCIT:C38161 Digestive System Non-Hodgkin Lymphoma 5 42366 -NCIT:C150495 Intestinal T-Cell Lymphoma 6 42367 -NCIT:C150505 Intestinal T-Cell Lymphoma, Not Otherwise Specified 7 42368 -NCIT:C4737 Enteropathy-Associated T-Cell Lymphoma 7 42369 -NCIT:C141295 Enteropathy-Associated T-Cell Lymphoma by Ann Arbor Stage 8 42370 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 9 42371 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 9 42372 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 9 42373 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 9 42374 -NCIT:C39610 Small Intestinal Enteropathy-Associated T-Cell Lymphoma 8 42375 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 8 42376 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 8 42377 -NCIT:C96058 Monomorphic Epitheliotropic Intestinal T-Cell Lymphoma 7 42378 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 8 42379 -NCIT:C150504 Small Intestinal Monomorphic Epitheliotropic T-Cell Lymphoma 8 42380 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 8 42381 -NCIT:C172844 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue Involving the Digestive System 6 42382 -NCIT:C5266 Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 7 42383 -NCIT:C27763 Helicobacter Pylori-Associated Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 8 42384 -NCIT:C5635 Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 7 42385 -NCIT:C45166 Campylobacter Jejuni-Associated Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 8 42386 -NCIT:C5768 Liver Mucosa-Associated Lymphoid Tissue Lymphoma 7 42387 -NCIT:C95626 Esophageal Mucosa-Associated Lymphoid Tissue Lymphoma 7 42388 -NCIT:C96506 Colorectal Mucosa-Associated Lymphoid Tissue Lymphoma 7 42389 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 8 42390 -NCIT:C172850 Digestive System Diffuse Large B-Cell Lymphoma 6 42391 -NCIT:C5253 Gastric Diffuse Large B-Cell Lymphoma 7 42392 -NCIT:C95625 Esophageal Diffuse Large B-Cell Lymphoma 7 42393 -NCIT:C96055 Small Intestinal Diffuse Large B-Cell Lymphoma 7 42394 -NCIT:C96057 Small Intestinal High Grade B-Cell Lymphoma, Not Otherwise Specified 8 42395 -NCIT:C96503 Colorectal Diffuse Large B-Cell Lymphoma 7 42396 -NCIT:C96501 Colorectal High Grade B-Cell Lymphoma, Not Otherwise Specified 8 42397 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 8 42398 -NCIT:C96843 Liver Diffuse Large B-Cell Lymphoma 7 42399 -NCIT:C27235 Gastric Non-Hodgkin Lymphoma 6 42400 -NCIT:C5251 Gastric Burkitt Lymphoma 7 42401 -NCIT:C5253 Gastric Diffuse Large B-Cell Lymphoma 7 42402 -NCIT:C5254 Gastric T-Cell Non-Hodgkin Lymphoma 7 42403 -NCIT:C5266 Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 7 42404 -NCIT:C27763 Helicobacter Pylori-Associated Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 8 42405 -NCIT:C4339 Multifocal Lymphomatous Polyposis 6 42406 -NCIT:C5688 Esophageal Non-Hodgkin Lymphoma 6 42407 -NCIT:C95625 Esophageal Diffuse Large B-Cell Lymphoma 7 42408 -NCIT:C95626 Esophageal Mucosa-Associated Lymphoid Tissue Lymphoma 7 42409 -NCIT:C5766 Liver Non-Hodgkin Lymphoma 6 42410 -NCIT:C5768 Liver Mucosa-Associated Lymphoid Tissue Lymphoma 7 42411 -NCIT:C8459 Hepatosplenic T-Cell Lymphoma 7 42412 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 8 42413 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 8 42414 -NCIT:C96843 Liver Diffuse Large B-Cell Lymphoma 7 42415 -NCIT:C5789 Pancreatic Non-Hodgkin Lymphoma 6 42416 -NCIT:C7231 Small Intestinal Non-Hodgkin Lymphoma 6 42417 -NCIT:C96053 Small Intestinal B-Cell Non-Hodgkin Lymphoma 7 42418 -NCIT:C27409 Small Intestinal Burkitt Lymphoma 8 42419 -NCIT:C27410 Small Intestinal Atypical Burkitt/Burkitt-Like Lymphoma 9 42420 -NCIT:C27441 Small Intestinal Mantle Cell Lymphoma 8 42421 -NCIT:C3132 Alpha Heavy Chain Disease 8 42422 -NCIT:C5635 Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 8 42423 -NCIT:C45166 Campylobacter Jejuni-Associated Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 9 42424 -NCIT:C96055 Small Intestinal Diffuse Large B-Cell Lymphoma 8 42425 -NCIT:C96057 Small Intestinal High Grade B-Cell Lymphoma, Not Otherwise Specified 9 42426 -NCIT:C96056 Small Intestinal Follicular Lymphoma 8 42427 -NCIT:C96054 Small Intestinal T-Cell Non-Hodgkin Lymphoma 7 42428 -NCIT:C150504 Small Intestinal Monomorphic Epitheliotropic T-Cell Lymphoma 8 42429 -NCIT:C39610 Small Intestinal Enteropathy-Associated T-Cell Lymphoma 8 42430 -NCIT:C7465 AIDS-Related Anal Non-Hodgkin Lymphoma 6 42431 -NCIT:C80298 Intestinal Follicular Lymphoma 6 42432 -NCIT:C96056 Small Intestinal Follicular Lymphoma 7 42433 -NCIT:C96499 Colorectal Non-Hodgkin Lymphoma 6 42434 -NCIT:C4950 Colon Non-Hodgkin Lymphoma 7 42435 -NCIT:C27411 Colon Mantle Cell Lymphoma 8 42436 -NCIT:C27465 Colon Burkitt Lymphoma 8 42437 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 8 42438 -NCIT:C5521 Cecum Non-Hodgkin Lymphoma 8 42439 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 8 42440 -NCIT:C96502 Colorectal Burkitt Lymphoma 7 42441 -NCIT:C27465 Colon Burkitt Lymphoma 8 42442 -NCIT:C96503 Colorectal Diffuse Large B-Cell Lymphoma 7 42443 -NCIT:C96501 Colorectal High Grade B-Cell Lymphoma, Not Otherwise Specified 8 42444 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 8 42445 -NCIT:C96505 Colorectal Mantle Cell Lymphoma 7 42446 -NCIT:C27411 Colon Mantle Cell Lymphoma 8 42447 -NCIT:C96506 Colorectal Mucosa-Associated Lymphoid Tissue Lymphoma 7 42448 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 8 42449 -NCIT:C38163 Digestive System Hodgkin Lymphoma 5 42450 -NCIT:C5337 Small Intestinal Hodgkin Lymphoma 6 42451 -NCIT:C5638 Gastric Hodgkin Lymphoma 6 42452 -NCIT:C5689 Esophageal Hodgkin Lymphoma 6 42453 -NCIT:C96500 Colorectal Hodgkin Lymphoma 6 42454 -NCIT:C5499 Colon Hodgkin Lymphoma 7 42455 -NCIT:C4007 Small Intestinal Lymphoma 5 42456 -NCIT:C5337 Small Intestinal Hodgkin Lymphoma 6 42457 -NCIT:C7231 Small Intestinal Non-Hodgkin Lymphoma 6 42458 -NCIT:C96053 Small Intestinal B-Cell Non-Hodgkin Lymphoma 7 42459 -NCIT:C27409 Small Intestinal Burkitt Lymphoma 8 42460 -NCIT:C27410 Small Intestinal Atypical Burkitt/Burkitt-Like Lymphoma 9 42461 -NCIT:C27441 Small Intestinal Mantle Cell Lymphoma 8 42462 -NCIT:C3132 Alpha Heavy Chain Disease 8 42463 -NCIT:C5635 Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 8 42464 -NCIT:C45166 Campylobacter Jejuni-Associated Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 9 42465 -NCIT:C96055 Small Intestinal Diffuse Large B-Cell Lymphoma 8 42466 -NCIT:C96057 Small Intestinal High Grade B-Cell Lymphoma, Not Otherwise Specified 9 42467 -NCIT:C96056 Small Intestinal Follicular Lymphoma 8 42468 -NCIT:C96054 Small Intestinal T-Cell Non-Hodgkin Lymphoma 7 42469 -NCIT:C150504 Small Intestinal Monomorphic Epitheliotropic T-Cell Lymphoma 8 42470 -NCIT:C39610 Small Intestinal Enteropathy-Associated T-Cell Lymphoma 8 42471 -NCIT:C4636 Gastric Lymphoma 5 42472 -NCIT:C27235 Gastric Non-Hodgkin Lymphoma 6 42473 -NCIT:C5251 Gastric Burkitt Lymphoma 7 42474 -NCIT:C5253 Gastric Diffuse Large B-Cell Lymphoma 7 42475 -NCIT:C5254 Gastric T-Cell Non-Hodgkin Lymphoma 7 42476 -NCIT:C5266 Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 7 42477 -NCIT:C27763 Helicobacter Pylori-Associated Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 8 42478 -NCIT:C5638 Gastric Hodgkin Lymphoma 6 42479 -NCIT:C4949 Liver Lymphoma 5 42480 -NCIT:C5766 Liver Non-Hodgkin Lymphoma 6 42481 -NCIT:C5768 Liver Mucosa-Associated Lymphoid Tissue Lymphoma 7 42482 -NCIT:C8459 Hepatosplenic T-Cell Lymphoma 7 42483 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 8 42484 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 8 42485 -NCIT:C96843 Liver Diffuse Large B-Cell Lymphoma 7 42486 -NCIT:C5513 Appendix Lymphoma 5 42487 -NCIT:C5601 Anal Lymphoma 5 42488 -NCIT:C7465 AIDS-Related Anal Non-Hodgkin Lymphoma 6 42489 -NCIT:C5687 Esophageal Lymphoma 5 42490 -NCIT:C5688 Esophageal Non-Hodgkin Lymphoma 6 42491 -NCIT:C95625 Esophageal Diffuse Large B-Cell Lymphoma 7 42492 -NCIT:C95626 Esophageal Mucosa-Associated Lymphoid Tissue Lymphoma 7 42493 -NCIT:C5689 Esophageal Hodgkin Lymphoma 6 42494 -NCIT:C5714 Pancreatic Lymphoma 5 42495 -NCIT:C5789 Pancreatic Non-Hodgkin Lymphoma 6 42496 -NCIT:C5734 Gallbladder Lymphoma 5 42497 -NCIT:C96498 Colorectal Lymphoma 5 42498 -NCIT:C4793 Colon Lymphoma 6 42499 -NCIT:C4950 Colon Non-Hodgkin Lymphoma 7 42500 -NCIT:C27411 Colon Mantle Cell Lymphoma 8 42501 -NCIT:C27465 Colon Burkitt Lymphoma 8 42502 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 8 42503 -NCIT:C5521 Cecum Non-Hodgkin Lymphoma 8 42504 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 8 42505 -NCIT:C5499 Colon Hodgkin Lymphoma 7 42506 -NCIT:C5515 Cecum Lymphoma 7 42507 -NCIT:C5521 Cecum Non-Hodgkin Lymphoma 8 42508 -NCIT:C5553 Rectal Lymphoma 6 42509 -NCIT:C96499 Colorectal Non-Hodgkin Lymphoma 6 42510 -NCIT:C4950 Colon Non-Hodgkin Lymphoma 7 42511 -NCIT:C27411 Colon Mantle Cell Lymphoma 8 42512 -NCIT:C27465 Colon Burkitt Lymphoma 8 42513 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 8 42514 -NCIT:C5521 Cecum Non-Hodgkin Lymphoma 8 42515 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 8 42516 -NCIT:C96502 Colorectal Burkitt Lymphoma 7 42517 -NCIT:C27465 Colon Burkitt Lymphoma 8 42518 -NCIT:C96503 Colorectal Diffuse Large B-Cell Lymphoma 7 42519 -NCIT:C96501 Colorectal High Grade B-Cell Lymphoma, Not Otherwise Specified 8 42520 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 8 42521 -NCIT:C96505 Colorectal Mantle Cell Lymphoma 7 42522 -NCIT:C27411 Colon Mantle Cell Lymphoma 8 42523 -NCIT:C96506 Colorectal Mucosa-Associated Lymphoid Tissue Lymphoma 7 42524 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 8 42525 -NCIT:C96500 Colorectal Hodgkin Lymphoma 6 42526 -NCIT:C5499 Colon Hodgkin Lymphoma 7 42527 -NCIT:C96952 Extrahepatic Bile Duct Lymphoma 5 42528 -NCIT:C4572 Malignant Intestinal Neoplasm 4 42529 -NCIT:C150495 Intestinal T-Cell Lymphoma 5 42530 -NCIT:C150505 Intestinal T-Cell Lymphoma, Not Otherwise Specified 6 42531 -NCIT:C4737 Enteropathy-Associated T-Cell Lymphoma 6 42532 -NCIT:C141295 Enteropathy-Associated T-Cell Lymphoma by Ann Arbor Stage 7 42533 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 8 42534 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 8 42535 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 8 42536 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 8 42537 -NCIT:C39610 Small Intestinal Enteropathy-Associated T-Cell Lymphoma 7 42538 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 7 42539 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 7 42540 -NCIT:C96058 Monomorphic Epitheliotropic Intestinal T-Cell Lymphoma 6 42541 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 7 42542 -NCIT:C150504 Small Intestinal Monomorphic Epitheliotropic T-Cell Lymphoma 7 42543 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 7 42544 -NCIT:C4978 Malignant Colorectal Neoplasm 5 42545 -NCIT:C162780 Metastatic Malignant Colorectal Neoplasm 6 42546 -NCIT:C156096 Metastatic Colorectal Carcinoma 7 42547 -NCIT:C142867 Metastatic Microsatellite Stable Colorectal Carcinoma 8 42548 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 42549 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 42550 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 42551 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 42552 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 42553 -NCIT:C153224 Colorectal Carcinoma Metastatic in the Lung 8 42554 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 9 42555 -NCIT:C156097 Metastatic Colon Carcinoma 8 42556 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 42557 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 42558 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 42559 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 42560 -NCIT:C167238 Advanced Colon Carcinoma 9 42561 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 42562 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 42563 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 42564 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 42565 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 42566 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 42567 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 42568 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 9 42569 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 9 42570 -NCIT:C156098 Metastatic Rectal Carcinoma 8 42571 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 9 42572 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 42573 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 42574 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 42575 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 42576 -NCIT:C170777 Advanced Rectal Carcinoma 9 42577 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 42578 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 42579 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 42580 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 42581 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 42582 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 42583 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 9 42584 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 42585 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 42586 -NCIT:C157366 Colorectal Carcinoma Metastatic in the Liver 8 42587 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 9 42588 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 9 42589 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 9 42590 -NCIT:C161048 Metastatic Colorectal Adenocarcinoma 8 42591 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 9 42592 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 42593 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 42594 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 42595 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 42596 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 42597 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 42598 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 42599 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 42600 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 9 42601 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 42602 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 42603 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 42604 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 42605 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 42606 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 42607 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 42608 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 42609 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 42610 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 42611 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 42612 -NCIT:C162475 Advanced Colorectal Carcinoma 8 42613 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 42614 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 42615 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 42616 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 42617 -NCIT:C167238 Advanced Colon Carcinoma 9 42618 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 42619 -NCIT:C170777 Advanced Rectal Carcinoma 9 42620 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 42621 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 42622 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 8 42623 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 42624 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 42625 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 42626 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 42627 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 42628 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 42629 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 42630 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 42631 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 42632 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 42633 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 42634 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 42635 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 42636 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 42637 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 42638 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 42639 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 42640 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 42641 -NCIT:C185165 Oligometastatic Colorectal Carcinoma 8 42642 -NCIT:C2955 Colorectal Carcinoma 6 42643 -NCIT:C118808 Childhood Colorectal Carcinoma 7 42644 -NCIT:C118823 Childhood Rectal Carcinoma 8 42645 -NCIT:C134180 Colorectal Cancer by AJCC v8 Stage 7 42646 -NCIT:C134182 Stage 0 Colorectal Cancer AJCC v8 8 42647 -NCIT:C134271 Stage 0 Colon Cancer AJCC v8 9 42648 -NCIT:C134291 Stage 0 Rectal Cancer AJCC v8 9 42649 -NCIT:C134185 Stage I Colorectal Cancer AJCC v8 8 42650 -NCIT:C134273 Stage I Colon Cancer AJCC v8 9 42651 -NCIT:C134292 Stage I Rectal Cancer AJCC v8 9 42652 -NCIT:C134186 Stage II Colorectal Cancer AJCC v8 8 42653 -NCIT:C134187 Stage IIA Colorectal Cancer AJCC v8 9 42654 -NCIT:C134280 Stage IIA Colon Cancer AJCC v8 10 42655 -NCIT:C134294 Stage IIA Rectal Cancer AJCC v8 10 42656 -NCIT:C134188 Stage IIB Colorectal Cancer AJCC v8 9 42657 -NCIT:C134281 Stage IIB Colon Cancer AJCC v8 10 42658 -NCIT:C134295 Stage IIB Rectal Cancer AJCC v8 10 42659 -NCIT:C134190 Stage IIC Colorectal Cancer AJCC v8 9 42660 -NCIT:C134282 Stage IIC Colon Cancer AJCC v8 10 42661 -NCIT:C134296 Stage IIC Rectal Cancer AJCC v8 10 42662 -NCIT:C134274 Stage II Colon Cancer AJCC v8 9 42663 -NCIT:C134280 Stage IIA Colon Cancer AJCC v8 10 42664 -NCIT:C134281 Stage IIB Colon Cancer AJCC v8 10 42665 -NCIT:C134282 Stage IIC Colon Cancer AJCC v8 10 42666 -NCIT:C134293 Stage II Rectal Cancer AJCC v8 9 42667 -NCIT:C134294 Stage IIA Rectal Cancer AJCC v8 10 42668 -NCIT:C134295 Stage IIB Rectal Cancer AJCC v8 10 42669 -NCIT:C134296 Stage IIC Rectal Cancer AJCC v8 10 42670 -NCIT:C134191 Stage III Colorectal Cancer AJCC v8 8 42671 -NCIT:C134192 Stage IIIA Colorectal Cancer AJCC v8 9 42672 -NCIT:C134284 Stage IIIA Colon Cancer AJCC v8 10 42673 -NCIT:C134298 Stage IIIA Rectal Cancer AJCC v8 10 42674 -NCIT:C134193 Stage IIIB Colorectal Cancer AJCC v8 9 42675 -NCIT:C134285 Stage IIIB Colon Cancer AJCC v8 10 42676 -NCIT:C134299 Stage IIIB Rectal Cancer AJCC v8 10 42677 -NCIT:C134194 Stage IIIC Colorectal Cancer AJCC v8 9 42678 -NCIT:C134286 Stage IIIC Colon Cancer AJCC v8 10 42679 -NCIT:C134300 Stage IIIC Rectal Cancer AJCC v8 10 42680 -NCIT:C134283 Stage III Colon Cancer AJCC v8 9 42681 -NCIT:C134284 Stage IIIA Colon Cancer AJCC v8 10 42682 -NCIT:C134285 Stage IIIB Colon Cancer AJCC v8 10 42683 -NCIT:C134286 Stage IIIC Colon Cancer AJCC v8 10 42684 -NCIT:C134297 Stage III Rectal Cancer AJCC v8 9 42685 -NCIT:C134298 Stage IIIA Rectal Cancer AJCC v8 10 42686 -NCIT:C134299 Stage IIIB Rectal Cancer AJCC v8 10 42687 -NCIT:C134300 Stage IIIC Rectal Cancer AJCC v8 10 42688 -NCIT:C134195 Stage IV Colorectal Cancer AJCC v8 8 42689 -NCIT:C134196 Stage IVA Colorectal Cancer AJCC v8 9 42690 -NCIT:C134288 Stage IVA Colon Cancer AJCC v8 10 42691 -NCIT:C134302 Stage IVA Rectal Cancer AJCC v8 10 42692 -NCIT:C134197 Stage IVB Colorectal Cancer AJCC v8 9 42693 -NCIT:C134289 Stage IVB Colon Cancer AJCC v8 10 42694 -NCIT:C134303 Stage IVB Rectal Cancer AJCC v8 10 42695 -NCIT:C134198 Stage IVC Colorectal Cancer AJCC v8 9 42696 -NCIT:C134290 Stage IVC Colon Cancer AJCC v8 10 42697 -NCIT:C134304 Stage IVC Rectal Cancer AJCC v8 10 42698 -NCIT:C134287 Stage IV Colon Cancer AJCC v8 9 42699 -NCIT:C134288 Stage IVA Colon Cancer AJCC v8 10 42700 -NCIT:C134289 Stage IVB Colon Cancer AJCC v8 10 42701 -NCIT:C134290 Stage IVC Colon Cancer AJCC v8 10 42702 -NCIT:C134301 Stage IV Rectal Cancer AJCC v8 9 42703 -NCIT:C134302 Stage IVA Rectal Cancer AJCC v8 10 42704 -NCIT:C134303 Stage IVB Rectal Cancer AJCC v8 10 42705 -NCIT:C134304 Stage IVC Rectal Cancer AJCC v8 10 42706 -NCIT:C134251 Colon Cancer by AJCC v8 Stage 8 42707 -NCIT:C134271 Stage 0 Colon Cancer AJCC v8 9 42708 -NCIT:C134273 Stage I Colon Cancer AJCC v8 9 42709 -NCIT:C134274 Stage II Colon Cancer AJCC v8 9 42710 -NCIT:C134280 Stage IIA Colon Cancer AJCC v8 10 42711 -NCIT:C134281 Stage IIB Colon Cancer AJCC v8 10 42712 -NCIT:C134282 Stage IIC Colon Cancer AJCC v8 10 42713 -NCIT:C134283 Stage III Colon Cancer AJCC v8 9 42714 -NCIT:C134284 Stage IIIA Colon Cancer AJCC v8 10 42715 -NCIT:C134285 Stage IIIB Colon Cancer AJCC v8 10 42716 -NCIT:C134286 Stage IIIC Colon Cancer AJCC v8 10 42717 -NCIT:C134287 Stage IV Colon Cancer AJCC v8 9 42718 -NCIT:C134288 Stage IVA Colon Cancer AJCC v8 10 42719 -NCIT:C134289 Stage IVB Colon Cancer AJCC v8 10 42720 -NCIT:C134290 Stage IVC Colon Cancer AJCC v8 10 42721 -NCIT:C134258 Rectal Cancer by AJCC v8 Stage 8 42722 -NCIT:C134291 Stage 0 Rectal Cancer AJCC v8 9 42723 -NCIT:C134292 Stage I Rectal Cancer AJCC v8 9 42724 -NCIT:C134293 Stage II Rectal Cancer AJCC v8 9 42725 -NCIT:C134294 Stage IIA Rectal Cancer AJCC v8 10 42726 -NCIT:C134295 Stage IIB Rectal Cancer AJCC v8 10 42727 -NCIT:C134296 Stage IIC Rectal Cancer AJCC v8 10 42728 -NCIT:C134297 Stage III Rectal Cancer AJCC v8 9 42729 -NCIT:C134298 Stage IIIA Rectal Cancer AJCC v8 10 42730 -NCIT:C134299 Stage IIIB Rectal Cancer AJCC v8 10 42731 -NCIT:C134300 Stage IIIC Rectal Cancer AJCC v8 10 42732 -NCIT:C134301 Stage IV Rectal Cancer AJCC v8 9 42733 -NCIT:C134302 Stage IVA Rectal Cancer AJCC v8 10 42734 -NCIT:C134303 Stage IVB Rectal Cancer AJCC v8 10 42735 -NCIT:C134304 Stage IVC Rectal Cancer AJCC v8 10 42736 -NCIT:C147982 Refractory Colorectal Carcinoma 7 42737 -NCIT:C153351 Refractory Colon Carcinoma 8 42738 -NCIT:C162155 Refractory Colon Adenocarcinoma 9 42739 -NCIT:C162154 Refractory Colorectal Adenocarcinoma 8 42740 -NCIT:C162155 Refractory Colon Adenocarcinoma 9 42741 -NCIT:C162157 Refractory Rectal Adenocarcinoma 9 42742 -NCIT:C162156 Refractory Rectal Carcinoma 8 42743 -NCIT:C162157 Refractory Rectal Adenocarcinoma 9 42744 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 9 42745 -NCIT:C173332 Refractory Microsatellite Stable Colorectal Carcinoma 8 42746 -NCIT:C156096 Metastatic Colorectal Carcinoma 7 42747 -NCIT:C142867 Metastatic Microsatellite Stable Colorectal Carcinoma 8 42748 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 42749 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 42750 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 42751 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 42752 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 42753 -NCIT:C153224 Colorectal Carcinoma Metastatic in the Lung 8 42754 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 9 42755 -NCIT:C156097 Metastatic Colon Carcinoma 8 42756 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 42757 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 42758 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 42759 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 42760 -NCIT:C167238 Advanced Colon Carcinoma 9 42761 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 42762 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 42763 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 42764 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 42765 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 42766 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 42767 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 42768 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 9 42769 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 9 42770 -NCIT:C156098 Metastatic Rectal Carcinoma 8 42771 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 9 42772 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 42773 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 42774 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 42775 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 42776 -NCIT:C170777 Advanced Rectal Carcinoma 9 42777 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 42778 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 42779 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 42780 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 42781 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 42782 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 42783 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 9 42784 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 42785 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 42786 -NCIT:C157366 Colorectal Carcinoma Metastatic in the Liver 8 42787 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 9 42788 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 9 42789 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 9 42790 -NCIT:C161048 Metastatic Colorectal Adenocarcinoma 8 42791 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 9 42792 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 42793 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 42794 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 42795 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 42796 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 42797 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 42798 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 42799 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 42800 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 9 42801 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 42802 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 42803 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 42804 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 42805 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 42806 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 42807 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 42808 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 42809 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 42810 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 42811 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 42812 -NCIT:C162475 Advanced Colorectal Carcinoma 8 42813 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 42814 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 42815 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 42816 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 42817 -NCIT:C167238 Advanced Colon Carcinoma 9 42818 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 42819 -NCIT:C170777 Advanced Rectal Carcinoma 9 42820 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 42821 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 42822 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 8 42823 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 42824 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 42825 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 42826 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 42827 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 42828 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 42829 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 42830 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 42831 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 42832 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 42833 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 42834 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 42835 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 42836 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 42837 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 42838 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 42839 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 42840 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 42841 -NCIT:C185165 Oligometastatic Colorectal Carcinoma 8 42842 -NCIT:C162256 Hypermutated Colorectal Carcinoma 7 42843 -NCIT:C162257 Resectable Colorectal Carcinoma 7 42844 -NCIT:C167237 Resectable Colon Carcinoma 8 42845 -NCIT:C162600 Unresectable Colorectal Carcinoma 7 42846 -NCIT:C171585 Unresectable Colorectal Adenocarcinoma 8 42847 -NCIT:C162116 Unresectable Colon Adenocarcinoma 9 42848 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 42849 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 9 42850 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 42851 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 42852 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 42853 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 42854 -NCIT:C180406 Unresectable Colon Carcinoma 8 42855 -NCIT:C162116 Unresectable Colon Adenocarcinoma 9 42856 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 42857 -NCIT:C173324 Microsatellite Stable Colorectal Carcinoma 7 42858 -NCIT:C142867 Metastatic Microsatellite Stable Colorectal Carcinoma 8 42859 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 42860 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 42861 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 42862 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 42863 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 42864 -NCIT:C173332 Refractory Microsatellite Stable Colorectal Carcinoma 8 42865 -NCIT:C177776 Microsatellite Stable Rectal Carcinoma 8 42866 -NCIT:C177777 Microsatellite Stable Colon Carcinoma 8 42867 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 42868 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 42869 -NCIT:C190679 Recurrent Microsatellite Stable Colorectal Carcinoma 8 42870 -NCIT:C43588 Colorectal Squamous Cell Carcinoma 7 42871 -NCIT:C5490 Colon Squamous Cell Carcinoma 8 42872 -NCIT:C5554 Rectal Squamous Cell Carcinoma 8 42873 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 9 42874 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 42875 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 42876 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 9 42877 -NCIT:C5555 Rectal Cloacogenic Carcinoma 9 42878 -NCIT:C43589 Colorectal Adenosquamous Carcinoma 7 42879 -NCIT:C43594 Rectal Adenosquamous Carcinoma 8 42880 -NCIT:C5491 Colon Adenosquamous Carcinoma 8 42881 -NCIT:C43591 Colorectal Undifferentiated Carcinoma 7 42882 -NCIT:C7100 Colon Undifferentiated Carcinoma 8 42883 -NCIT:C7974 Rectal Undifferentiated Carcinoma 8 42884 -NCIT:C4910 Colon Carcinoma 7 42885 -NCIT:C134251 Colon Cancer by AJCC v8 Stage 8 42886 -NCIT:C134271 Stage 0 Colon Cancer AJCC v8 9 42887 -NCIT:C134273 Stage I Colon Cancer AJCC v8 9 42888 -NCIT:C134274 Stage II Colon Cancer AJCC v8 9 42889 -NCIT:C134280 Stage IIA Colon Cancer AJCC v8 10 42890 -NCIT:C134281 Stage IIB Colon Cancer AJCC v8 10 42891 -NCIT:C134282 Stage IIC Colon Cancer AJCC v8 10 42892 -NCIT:C134283 Stage III Colon Cancer AJCC v8 9 42893 -NCIT:C134284 Stage IIIA Colon Cancer AJCC v8 10 42894 -NCIT:C134285 Stage IIIB Colon Cancer AJCC v8 10 42895 -NCIT:C134286 Stage IIIC Colon Cancer AJCC v8 10 42896 -NCIT:C134287 Stage IV Colon Cancer AJCC v8 9 42897 -NCIT:C134288 Stage IVA Colon Cancer AJCC v8 10 42898 -NCIT:C134289 Stage IVB Colon Cancer AJCC v8 10 42899 -NCIT:C134290 Stage IVC Colon Cancer AJCC v8 10 42900 -NCIT:C153351 Refractory Colon Carcinoma 8 42901 -NCIT:C162155 Refractory Colon Adenocarcinoma 9 42902 -NCIT:C156097 Metastatic Colon Carcinoma 8 42903 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 42904 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 42905 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 42906 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 42907 -NCIT:C167238 Advanced Colon Carcinoma 9 42908 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 42909 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 42910 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 42911 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 42912 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 42913 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 42914 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 42915 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 9 42916 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 9 42917 -NCIT:C164228 Hereditary Colon Carcinoma 8 42918 -NCIT:C167237 Resectable Colon Carcinoma 8 42919 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 8 42920 -NCIT:C177680 Sigmoid Colon Carcinoma 8 42921 -NCIT:C177777 Microsatellite Stable Colon Carcinoma 8 42922 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 42923 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 42924 -NCIT:C180406 Unresectable Colon Carcinoma 8 42925 -NCIT:C162116 Unresectable Colon Adenocarcinoma 9 42926 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 42927 -NCIT:C3491 Cecum Carcinoma 8 42928 -NCIT:C4594 Cecum Carcinoma In Situ 9 42929 -NCIT:C5543 Cecum Adenocarcinoma 9 42930 -NCIT:C3998 Recurrent Colon Carcinoma 8 42931 -NCIT:C162442 Recurrent Colon Adenocarcinoma 9 42932 -NCIT:C4349 Colon Adenocarcinoma 8 42933 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 42934 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 42935 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 42936 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 42937 -NCIT:C162116 Unresectable Colon Adenocarcinoma 9 42938 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 42939 -NCIT:C162155 Refractory Colon Adenocarcinoma 9 42940 -NCIT:C162442 Recurrent Colon Adenocarcinoma 9 42941 -NCIT:C38760 Submucosal Invasive Colon Adenocarcinoma 9 42942 -NCIT:C45429 Colon Intramucosal Adenocarcinoma 9 42943 -NCIT:C27413 Adenoma of the Colon with Intramucosal Adenocarcinoma 10 42944 -NCIT:C5543 Cecum Adenocarcinoma 9 42945 -NCIT:C60641 Colon Medullary Carcinoma 9 42946 -NCIT:C7966 Colon Mucinous Adenocarcinoma 9 42947 -NCIT:C7967 Colon Signet Ring Cell Adenocarcinoma 9 42948 -NCIT:C9452 Grade 1 Colon Adenocarcinoma 9 42949 -NCIT:C9453 Grade 2 Colon Adenocarcinoma 9 42950 -NCIT:C9454 Grade 3 Colon Adenocarcinoma 9 42951 -NCIT:C96486 Colon Serrated Adenocarcinoma 9 42952 -NCIT:C96489 Colon Cribriform Comedo-Type Adenocarcinoma 9 42953 -NCIT:C96492 Colon Micropapillary Adenocarcinoma 9 42954 -NCIT:C5490 Colon Squamous Cell Carcinoma 8 42955 -NCIT:C5491 Colon Adenosquamous Carcinoma 8 42956 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 8 42957 -NCIT:C7100 Colon Undifferentiated Carcinoma 8 42958 -NCIT:C90507 Colon Cancer by AJCC v6 Stage 8 42959 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 9 42960 -NCIT:C4594 Cecum Carcinoma In Situ 10 42961 -NCIT:C3993 Stage II Colon Cancer AJCC v6 9 42962 -NCIT:C3994 Stage IV Colon Cancer AJCC v6 9 42963 -NCIT:C7766 Stage III Colon Cancer AJCC v6 9 42964 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 9 42965 -NCIT:C91224 Colon Cancer by AJCC v7 Stage 8 42966 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 9 42967 -NCIT:C4594 Cecum Carcinoma In Situ 10 42968 -NCIT:C89990 Stage II Colon Cancer AJCC v7 9 42969 -NCIT:C115041 Stage IIA Colon Cancer AJCC v7 10 42970 -NCIT:C115042 Stage IIB Colon Cancer AJCC v7 10 42971 -NCIT:C115043 Stage IIC Colon Cancer AJCC v7 10 42972 -NCIT:C89995 Stage III Colon Cancer AJCC v7 9 42973 -NCIT:C115047 Stage IIIA Colon Cancer AJCC v7 10 42974 -NCIT:C115048 Stage IIIB Colon Cancer AJCC v7 10 42975 -NCIT:C115049 Stage IIIC Colon Cancer AJCC v7 10 42976 -NCIT:C89999 Stage IV Colon Cancer AJCC v7 9 42977 -NCIT:C115053 Stage IVA Colon Cancer AJCC v7 10 42978 -NCIT:C115054 Stage IVB Colon Cancer AJCC v7 10 42979 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 9 42980 -NCIT:C5105 Colorectal Adenocarcinoma 7 42981 -NCIT:C161048 Metastatic Colorectal Adenocarcinoma 8 42982 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 9 42983 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 42984 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 42985 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 42986 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 42987 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 42988 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 42989 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 42990 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 42991 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 9 42992 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 42993 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 42994 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 42995 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 42996 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 42997 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 42998 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 42999 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 43000 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 43001 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 43002 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 43003 -NCIT:C162154 Refractory Colorectal Adenocarcinoma 8 43004 -NCIT:C162155 Refractory Colon Adenocarcinoma 9 43005 -NCIT:C162157 Refractory Rectal Adenocarcinoma 9 43006 -NCIT:C162441 Recurrent Colorectal Adenocarcinoma 8 43007 -NCIT:C162442 Recurrent Colon Adenocarcinoma 9 43008 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 9 43009 -NCIT:C171585 Unresectable Colorectal Adenocarcinoma 8 43010 -NCIT:C162116 Unresectable Colon Adenocarcinoma 9 43011 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 43012 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 9 43013 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 43014 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 43015 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 43016 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 43017 -NCIT:C172694 Colorectal Poorly Cohesive Adenocarcinoma 8 43018 -NCIT:C43586 Colorectal Signet Ring Cell Carcinoma 9 43019 -NCIT:C43593 Rectosigmoid Signet Ring Cell Carcinoma 10 43020 -NCIT:C7967 Colon Signet Ring Cell Adenocarcinoma 10 43021 -NCIT:C9168 Rectal Signet Ring Cell Adenocarcinoma 10 43022 -NCIT:C172699 Colorectal Adenoma-Like Adenocarcinoma 8 43023 -NCIT:C172700 Inflammatory Bowel Disease-Associated Colorectal Adenocarcinoma 8 43024 -NCIT:C96496 Ulcerative Colitis-Associated Colorectal Adenocarcinoma 9 43025 -NCIT:C96497 Crohn Disease-Associated Colorectal Adenocarcinoma 9 43026 -NCIT:C4349 Colon Adenocarcinoma 8 43027 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 43028 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 43029 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 43030 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 43031 -NCIT:C162116 Unresectable Colon Adenocarcinoma 9 43032 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 43033 -NCIT:C162155 Refractory Colon Adenocarcinoma 9 43034 -NCIT:C162442 Recurrent Colon Adenocarcinoma 9 43035 -NCIT:C38760 Submucosal Invasive Colon Adenocarcinoma 9 43036 -NCIT:C45429 Colon Intramucosal Adenocarcinoma 9 43037 -NCIT:C27413 Adenoma of the Colon with Intramucosal Adenocarcinoma 10 43038 -NCIT:C5543 Cecum Adenocarcinoma 9 43039 -NCIT:C60641 Colon Medullary Carcinoma 9 43040 -NCIT:C7966 Colon Mucinous Adenocarcinoma 9 43041 -NCIT:C7967 Colon Signet Ring Cell Adenocarcinoma 9 43042 -NCIT:C9452 Grade 1 Colon Adenocarcinoma 9 43043 -NCIT:C9453 Grade 2 Colon Adenocarcinoma 9 43044 -NCIT:C9454 Grade 3 Colon Adenocarcinoma 9 43045 -NCIT:C96486 Colon Serrated Adenocarcinoma 9 43046 -NCIT:C96489 Colon Cribriform Comedo-Type Adenocarcinoma 9 43047 -NCIT:C96492 Colon Micropapillary Adenocarcinoma 9 43048 -NCIT:C43584 Rectosigmoid Adenocarcinoma 8 43049 -NCIT:C43592 Rectosigmoid Mucinous Adenocarcinoma 9 43050 -NCIT:C43593 Rectosigmoid Signet Ring Cell Carcinoma 9 43051 -NCIT:C43585 Colorectal Mucinous Adenocarcinoma 8 43052 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 9 43053 -NCIT:C43592 Rectosigmoid Mucinous Adenocarcinoma 9 43054 -NCIT:C7966 Colon Mucinous Adenocarcinoma 9 43055 -NCIT:C7973 Rectal Mucinous Adenocarcinoma 9 43056 -NCIT:C43590 Colorectal Medullary Carcinoma 8 43057 -NCIT:C60640 Rectal Medullary Carcinoma 9 43058 -NCIT:C60641 Colon Medullary Carcinoma 9 43059 -NCIT:C9383 Rectal Adenocarcinoma 8 43060 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 43061 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 43062 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 43063 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 43064 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 9 43065 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 43066 -NCIT:C162157 Refractory Rectal Adenocarcinoma 9 43067 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 9 43068 -NCIT:C60640 Rectal Medullary Carcinoma 9 43069 -NCIT:C7973 Rectal Mucinous Adenocarcinoma 9 43070 -NCIT:C9168 Rectal Signet Ring Cell Adenocarcinoma 9 43071 -NCIT:C9449 Grade 3 Rectal Adenocarcinoma 9 43072 -NCIT:C9450 Grade 2 Rectal Adenocarcinoma 9 43073 -NCIT:C9451 Grade 1 Rectal Adenocarcinoma 9 43074 -NCIT:C96487 Rectal Serrated Adenocarcinoma 9 43075 -NCIT:C96490 Rectal Cribriform Comedo-Type Adenocarcinoma 9 43076 -NCIT:C96493 Rectal Micropapillary Adenocarcinoma 9 43077 -NCIT:C9446 Grade 1 Colorectal Adenocarcinoma 8 43078 -NCIT:C9451 Grade 1 Rectal Adenocarcinoma 9 43079 -NCIT:C9452 Grade 1 Colon Adenocarcinoma 9 43080 -NCIT:C9447 Grade 2 Colorectal Adenocarcinoma 8 43081 -NCIT:C9450 Grade 2 Rectal Adenocarcinoma 9 43082 -NCIT:C9453 Grade 2 Colon Adenocarcinoma 9 43083 -NCIT:C9448 Grade 3 Colorectal Adenocarcinoma 8 43084 -NCIT:C9449 Grade 3 Rectal Adenocarcinoma 9 43085 -NCIT:C9454 Grade 3 Colon Adenocarcinoma 9 43086 -NCIT:C96485 Colorectal Serrated Adenocarcinoma 8 43087 -NCIT:C96486 Colon Serrated Adenocarcinoma 9 43088 -NCIT:C96487 Rectal Serrated Adenocarcinoma 9 43089 -NCIT:C96488 Colorectal Cribriform Comedo-Type Adenocarcinoma 8 43090 -NCIT:C96489 Colon Cribriform Comedo-Type Adenocarcinoma 9 43091 -NCIT:C96490 Rectal Cribriform Comedo-Type Adenocarcinoma 9 43092 -NCIT:C96491 Colorectal Micropapillary Adenocarcinoma 8 43093 -NCIT:C96492 Colon Micropapillary Adenocarcinoma 9 43094 -NCIT:C96493 Rectal Micropapillary Adenocarcinoma 9 43095 -NCIT:C7421 Rectosigmoid Carcinoma 7 43096 -NCIT:C43584 Rectosigmoid Adenocarcinoma 8 43097 -NCIT:C43592 Rectosigmoid Mucinous Adenocarcinoma 9 43098 -NCIT:C43593 Rectosigmoid Signet Ring Cell Carcinoma 9 43099 -NCIT:C8634 Recurrent Rectosigmoid Carcinoma 8 43100 -NCIT:C90509 Rectosigmoid Cancer by AJCC v6 Stage 8 43101 -NCIT:C5015 Stage II Rectosigmoid Cancer AJCC v6 9 43102 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 9 43103 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 9 43104 -NCIT:C8635 Stage III Rectosigmoid Cancer AJCC v6 9 43105 -NCIT:C8636 Stage IV Rectosigmoid Cancer AJCC v6 9 43106 -NCIT:C91226 Rectosigmoid Cancer by AJCC v7 Stage 8 43107 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 9 43108 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 9 43109 -NCIT:C89992 Stage II Rectosigmoid Cancer AJCC v7 9 43110 -NCIT:C89997 Stage III Rectosigmoid Cancer AJCC v7 9 43111 -NCIT:C90019 Stage IV Rectosigmoid Cancer AJCC v7 9 43112 -NCIT:C8625 Recurrent Colorectal Carcinoma 7 43113 -NCIT:C162441 Recurrent Colorectal Adenocarcinoma 8 43114 -NCIT:C162442 Recurrent Colon Adenocarcinoma 9 43115 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 9 43116 -NCIT:C190199 Locally Recurrent Colorectal Carcinoma 8 43117 -NCIT:C190679 Recurrent Microsatellite Stable Colorectal Carcinoma 8 43118 -NCIT:C3998 Recurrent Colon Carcinoma 8 43119 -NCIT:C162442 Recurrent Colon Adenocarcinoma 9 43120 -NCIT:C8634 Recurrent Rectosigmoid Carcinoma 8 43121 -NCIT:C9238 Recurrent Rectal Carcinoma 8 43122 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 9 43123 -NCIT:C90506 Colorectal Cancer by AJCC v6 Stage 7 43124 -NCIT:C8513 Stage I Colorectal Cancer AJCC v6 and v7 8 43125 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 9 43126 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 9 43127 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 9 43128 -NCIT:C8514 Stage II Colorectal Cancer AJCC v6 8 43129 -NCIT:C3993 Stage II Colon Cancer AJCC v6 9 43130 -NCIT:C5015 Stage II Rectosigmoid Cancer AJCC v6 9 43131 -NCIT:C7791 Stage II Rectal Cancer AJCC v6 9 43132 -NCIT:C8515 Stage III Colorectal Cancer AJCC v6 8 43133 -NCIT:C7766 Stage III Colon Cancer AJCC v6 9 43134 -NCIT:C7792 Stage III Rectal Cancer AJCC v6 9 43135 -NCIT:C8635 Stage III Rectosigmoid Cancer AJCC v6 9 43136 -NCIT:C8516 Stage IV Colorectal Cancer AJCC v6 8 43137 -NCIT:C3994 Stage IV Colon Cancer AJCC v6 9 43138 -NCIT:C8412 Stage IV Rectal Cancer AJCC v6 9 43139 -NCIT:C8636 Stage IV Rectosigmoid Cancer AJCC v6 9 43140 -NCIT:C8932 Stage 0 Colorectal Cancer AJCC v6 and v7 8 43141 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 9 43142 -NCIT:C4594 Cecum Carcinoma In Situ 10 43143 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 9 43144 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 9 43145 -NCIT:C90507 Colon Cancer by AJCC v6 Stage 8 43146 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 9 43147 -NCIT:C4594 Cecum Carcinoma In Situ 10 43148 -NCIT:C3993 Stage II Colon Cancer AJCC v6 9 43149 -NCIT:C3994 Stage IV Colon Cancer AJCC v6 9 43150 -NCIT:C7766 Stage III Colon Cancer AJCC v6 9 43151 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 9 43152 -NCIT:C90508 Rectal Cancer by AJCC v6 Stage 8 43153 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 9 43154 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 9 43155 -NCIT:C7791 Stage II Rectal Cancer AJCC v6 9 43156 -NCIT:C7792 Stage III Rectal Cancer AJCC v6 9 43157 -NCIT:C8412 Stage IV Rectal Cancer AJCC v6 9 43158 -NCIT:C90509 Rectosigmoid Cancer by AJCC v6 Stage 8 43159 -NCIT:C5015 Stage II Rectosigmoid Cancer AJCC v6 9 43160 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 9 43161 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 9 43162 -NCIT:C8635 Stage III Rectosigmoid Cancer AJCC v6 9 43163 -NCIT:C8636 Stage IV Rectosigmoid Cancer AJCC v6 9 43164 -NCIT:C91223 Colorectal Cancer by AJCC v7 Stage 7 43165 -NCIT:C8513 Stage I Colorectal Cancer AJCC v6 and v7 8 43166 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 9 43167 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 9 43168 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 9 43169 -NCIT:C8932 Stage 0 Colorectal Cancer AJCC v6 and v7 8 43170 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 9 43171 -NCIT:C4594 Cecum Carcinoma In Situ 10 43172 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 9 43173 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 9 43174 -NCIT:C89989 Stage II Colorectal Cancer AJCC v7 8 43175 -NCIT:C87813 Stage IIA Colorectal Cancer AJCC v7 9 43176 -NCIT:C115041 Stage IIA Colon Cancer AJCC v7 10 43177 -NCIT:C115044 Stage IIA Rectal Cancer AJCC v7 10 43178 -NCIT:C87814 Stage IIB Colorectal Cancer AJCC v7 9 43179 -NCIT:C115042 Stage IIB Colon Cancer AJCC v7 10 43180 -NCIT:C115045 Stage IIB Rectal Cancer AJCC v7 10 43181 -NCIT:C87815 Stage IIC Colorectal Cancer AJCC v7 9 43182 -NCIT:C115043 Stage IIC Colon Cancer AJCC v7 10 43183 -NCIT:C115046 Stage IIC Rectal Cancer AJCC v7 10 43184 -NCIT:C89990 Stage II Colon Cancer AJCC v7 9 43185 -NCIT:C115041 Stage IIA Colon Cancer AJCC v7 10 43186 -NCIT:C115042 Stage IIB Colon Cancer AJCC v7 10 43187 -NCIT:C115043 Stage IIC Colon Cancer AJCC v7 10 43188 -NCIT:C89991 Stage II Rectal Cancer AJCC v7 9 43189 -NCIT:C115044 Stage IIA Rectal Cancer AJCC v7 10 43190 -NCIT:C115045 Stage IIB Rectal Cancer AJCC v7 10 43191 -NCIT:C115046 Stage IIC Rectal Cancer AJCC v7 10 43192 -NCIT:C89992 Stage II Rectosigmoid Cancer AJCC v7 9 43193 -NCIT:C89994 Stage III Colorectal Cancer AJCC v7 8 43194 -NCIT:C87816 Stage IIIA Colorectal Cancer AJCC v7 9 43195 -NCIT:C115047 Stage IIIA Colon Cancer AJCC v7 10 43196 -NCIT:C115050 Stage IIIA Rectal Cancer AJCC v7 10 43197 -NCIT:C87817 Stage IIIB Colorectal Cancer AJCC v7 9 43198 -NCIT:C115048 Stage IIIB Colon Cancer AJCC v7 10 43199 -NCIT:C115051 Stage IIIB Rectal Cancer AJCC v7 10 43200 -NCIT:C87818 Stage IIIC Colorectal Cancer AJCC v7 9 43201 -NCIT:C115049 Stage IIIC Colon Cancer AJCC v7 10 43202 -NCIT:C115052 Stage IIIC Rectal Cancer AJCC v7 10 43203 -NCIT:C89995 Stage III Colon Cancer AJCC v7 9 43204 -NCIT:C115047 Stage IIIA Colon Cancer AJCC v7 10 43205 -NCIT:C115048 Stage IIIB Colon Cancer AJCC v7 10 43206 -NCIT:C115049 Stage IIIC Colon Cancer AJCC v7 10 43207 -NCIT:C89996 Stage III Rectal Cancer AJCC v7 9 43208 -NCIT:C115050 Stage IIIA Rectal Cancer AJCC v7 10 43209 -NCIT:C115051 Stage IIIB Rectal Cancer AJCC v7 10 43210 -NCIT:C115052 Stage IIIC Rectal Cancer AJCC v7 10 43211 -NCIT:C89997 Stage III Rectosigmoid Cancer AJCC v7 9 43212 -NCIT:C89998 Stage IV Colorectal Cancer AJCC v7 8 43213 -NCIT:C87819 Stage IVA Colorectal Cancer AJCC v7 9 43214 -NCIT:C115053 Stage IVA Colon Cancer AJCC v7 10 43215 -NCIT:C115055 Stage IVA Rectal Cancer AJCC v7 10 43216 -NCIT:C87820 Stage IVB Colorectal Cancer AJCC v7 9 43217 -NCIT:C115054 Stage IVB Colon Cancer AJCC v7 10 43218 -NCIT:C115056 Stage IVB Rectal Cancer AJCC v7 10 43219 -NCIT:C89999 Stage IV Colon Cancer AJCC v7 9 43220 -NCIT:C115053 Stage IVA Colon Cancer AJCC v7 10 43221 -NCIT:C115054 Stage IVB Colon Cancer AJCC v7 10 43222 -NCIT:C90016 Stage IV Rectal Cancer AJCC v7 9 43223 -NCIT:C115055 Stage IVA Rectal Cancer AJCC v7 10 43224 -NCIT:C115056 Stage IVB Rectal Cancer AJCC v7 10 43225 -NCIT:C90019 Stage IV Rectosigmoid Cancer AJCC v7 9 43226 -NCIT:C91224 Colon Cancer by AJCC v7 Stage 8 43227 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 9 43228 -NCIT:C4594 Cecum Carcinoma In Situ 10 43229 -NCIT:C89990 Stage II Colon Cancer AJCC v7 9 43230 -NCIT:C115041 Stage IIA Colon Cancer AJCC v7 10 43231 -NCIT:C115042 Stage IIB Colon Cancer AJCC v7 10 43232 -NCIT:C115043 Stage IIC Colon Cancer AJCC v7 10 43233 -NCIT:C89995 Stage III Colon Cancer AJCC v7 9 43234 -NCIT:C115047 Stage IIIA Colon Cancer AJCC v7 10 43235 -NCIT:C115048 Stage IIIB Colon Cancer AJCC v7 10 43236 -NCIT:C115049 Stage IIIC Colon Cancer AJCC v7 10 43237 -NCIT:C89999 Stage IV Colon Cancer AJCC v7 9 43238 -NCIT:C115053 Stage IVA Colon Cancer AJCC v7 10 43239 -NCIT:C115054 Stage IVB Colon Cancer AJCC v7 10 43240 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 9 43241 -NCIT:C91225 Rectal Cancer by AJCC v7 Stage 8 43242 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 9 43243 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 9 43244 -NCIT:C89991 Stage II Rectal Cancer AJCC v7 9 43245 -NCIT:C115044 Stage IIA Rectal Cancer AJCC v7 10 43246 -NCIT:C115045 Stage IIB Rectal Cancer AJCC v7 10 43247 -NCIT:C115046 Stage IIC Rectal Cancer AJCC v7 10 43248 -NCIT:C89996 Stage III Rectal Cancer AJCC v7 9 43249 -NCIT:C115050 Stage IIIA Rectal Cancer AJCC v7 10 43250 -NCIT:C115051 Stage IIIB Rectal Cancer AJCC v7 10 43251 -NCIT:C115052 Stage IIIC Rectal Cancer AJCC v7 10 43252 -NCIT:C90016 Stage IV Rectal Cancer AJCC v7 9 43253 -NCIT:C115055 Stage IVA Rectal Cancer AJCC v7 10 43254 -NCIT:C115056 Stage IVB Rectal Cancer AJCC v7 10 43255 -NCIT:C91226 Rectosigmoid Cancer by AJCC v7 Stage 8 43256 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 9 43257 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 9 43258 -NCIT:C89992 Stage II Rectosigmoid Cancer AJCC v7 9 43259 -NCIT:C89997 Stage III Rectosigmoid Cancer AJCC v7 9 43260 -NCIT:C90019 Stage IV Rectosigmoid Cancer AJCC v7 9 43261 -NCIT:C9382 Rectal Carcinoma 7 43262 -NCIT:C118823 Childhood Rectal Carcinoma 8 43263 -NCIT:C134258 Rectal Cancer by AJCC v8 Stage 8 43264 -NCIT:C134291 Stage 0 Rectal Cancer AJCC v8 9 43265 -NCIT:C134292 Stage I Rectal Cancer AJCC v8 9 43266 -NCIT:C134293 Stage II Rectal Cancer AJCC v8 9 43267 -NCIT:C134294 Stage IIA Rectal Cancer AJCC v8 10 43268 -NCIT:C134295 Stage IIB Rectal Cancer AJCC v8 10 43269 -NCIT:C134296 Stage IIC Rectal Cancer AJCC v8 10 43270 -NCIT:C134297 Stage III Rectal Cancer AJCC v8 9 43271 -NCIT:C134298 Stage IIIA Rectal Cancer AJCC v8 10 43272 -NCIT:C134299 Stage IIIB Rectal Cancer AJCC v8 10 43273 -NCIT:C134300 Stage IIIC Rectal Cancer AJCC v8 10 43274 -NCIT:C134301 Stage IV Rectal Cancer AJCC v8 9 43275 -NCIT:C134302 Stage IVA Rectal Cancer AJCC v8 10 43276 -NCIT:C134303 Stage IVB Rectal Cancer AJCC v8 10 43277 -NCIT:C134304 Stage IVC Rectal Cancer AJCC v8 10 43278 -NCIT:C156098 Metastatic Rectal Carcinoma 8 43279 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 9 43280 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 43281 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 43282 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 43283 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 43284 -NCIT:C170777 Advanced Rectal Carcinoma 9 43285 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 43286 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 43287 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 43288 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 43289 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 43290 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 43291 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 9 43292 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 43293 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 43294 -NCIT:C162156 Refractory Rectal Carcinoma 8 43295 -NCIT:C162157 Refractory Rectal Adenocarcinoma 9 43296 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 9 43297 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 8 43298 -NCIT:C177776 Microsatellite Stable Rectal Carcinoma 8 43299 -NCIT:C43594 Rectal Adenosquamous Carcinoma 8 43300 -NCIT:C5554 Rectal Squamous Cell Carcinoma 8 43301 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 9 43302 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 43303 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 43304 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 9 43305 -NCIT:C5555 Rectal Cloacogenic Carcinoma 9 43306 -NCIT:C5556 Rectal Sarcomatoid Carcinoma 8 43307 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 8 43308 -NCIT:C7974 Rectal Undifferentiated Carcinoma 8 43309 -NCIT:C90508 Rectal Cancer by AJCC v6 Stage 8 43310 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 9 43311 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 9 43312 -NCIT:C7791 Stage II Rectal Cancer AJCC v6 9 43313 -NCIT:C7792 Stage III Rectal Cancer AJCC v6 9 43314 -NCIT:C8412 Stage IV Rectal Cancer AJCC v6 9 43315 -NCIT:C91225 Rectal Cancer by AJCC v7 Stage 8 43316 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 9 43317 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 9 43318 -NCIT:C89991 Stage II Rectal Cancer AJCC v7 9 43319 -NCIT:C115044 Stage IIA Rectal Cancer AJCC v7 10 43320 -NCIT:C115045 Stage IIB Rectal Cancer AJCC v7 10 43321 -NCIT:C115046 Stage IIC Rectal Cancer AJCC v7 10 43322 -NCIT:C89996 Stage III Rectal Cancer AJCC v7 9 43323 -NCIT:C115050 Stage IIIA Rectal Cancer AJCC v7 10 43324 -NCIT:C115051 Stage IIIB Rectal Cancer AJCC v7 10 43325 -NCIT:C115052 Stage IIIC Rectal Cancer AJCC v7 10 43326 -NCIT:C90016 Stage IV Rectal Cancer AJCC v7 9 43327 -NCIT:C115055 Stage IVA Rectal Cancer AJCC v7 10 43328 -NCIT:C115056 Stage IVB Rectal Cancer AJCC v7 10 43329 -NCIT:C9238 Recurrent Rectal Carcinoma 8 43330 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 9 43331 -NCIT:C9383 Rectal Adenocarcinoma 8 43332 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 43333 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 43334 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 43335 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 43336 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 9 43337 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 43338 -NCIT:C162157 Refractory Rectal Adenocarcinoma 9 43339 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 9 43340 -NCIT:C60640 Rectal Medullary Carcinoma 9 43341 -NCIT:C7973 Rectal Mucinous Adenocarcinoma 9 43342 -NCIT:C9168 Rectal Signet Ring Cell Adenocarcinoma 9 43343 -NCIT:C9449 Grade 3 Rectal Adenocarcinoma 9 43344 -NCIT:C9450 Grade 2 Rectal Adenocarcinoma 9 43345 -NCIT:C9451 Grade 1 Rectal Adenocarcinoma 9 43346 -NCIT:C96487 Rectal Serrated Adenocarcinoma 9 43347 -NCIT:C96490 Rectal Cribriform Comedo-Type Adenocarcinoma 9 43348 -NCIT:C96493 Rectal Micropapillary Adenocarcinoma 9 43349 -NCIT:C96156 Colorectal Neuroendocrine Carcinoma 7 43350 -NCIT:C43587 Colorectal Small Cell Neuroendocrine Carcinoma 8 43351 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 9 43352 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 9 43353 -NCIT:C96157 Colorectal Large Cell Neuroendocrine Carcinoma 8 43354 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 9 43355 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 9 43356 -NCIT:C96158 Colorectal Mixed Adenoneuroendocrine Carcinoma 7 43357 -NCIT:C96494 Colorectal Sarcomatoid Carcinoma 7 43358 -NCIT:C5556 Rectal Sarcomatoid Carcinoma 8 43359 -NCIT:C4581 Metastatic Malignant Neoplasm in the Large Intestine 6 43360 -NCIT:C7426 Metastatic Malignant Neoplasm in the Rectum 7 43361 -NCIT:C188076 Metastatic Carcinoma in the Rectum 8 43362 -NCIT:C8411 Metastatic Malignant Neoplasm in the Colon 7 43363 -NCIT:C7418 Malignant Rectal Neoplasm 6 43364 -NCIT:C4640 Rectal Melanoma 7 43365 -NCIT:C188079 Rectal Epithelioid Cell Melanoma 8 43366 -NCIT:C5548 Rectal Sarcoma 7 43367 -NCIT:C5549 Rectal Leiomyosarcoma 8 43368 -NCIT:C5550 Rectal Kaposi Sarcoma 8 43369 -NCIT:C5627 Rectal Rhabdomyosarcoma 8 43370 -NCIT:C5553 Rectal Lymphoma 7 43371 -NCIT:C7426 Metastatic Malignant Neoplasm in the Rectum 7 43372 -NCIT:C188076 Metastatic Carcinoma in the Rectum 8 43373 -NCIT:C9382 Rectal Carcinoma 7 43374 -NCIT:C118823 Childhood Rectal Carcinoma 8 43375 -NCIT:C134258 Rectal Cancer by AJCC v8 Stage 8 43376 -NCIT:C134291 Stage 0 Rectal Cancer AJCC v8 9 43377 -NCIT:C134292 Stage I Rectal Cancer AJCC v8 9 43378 -NCIT:C134293 Stage II Rectal Cancer AJCC v8 9 43379 -NCIT:C134294 Stage IIA Rectal Cancer AJCC v8 10 43380 -NCIT:C134295 Stage IIB Rectal Cancer AJCC v8 10 43381 -NCIT:C134296 Stage IIC Rectal Cancer AJCC v8 10 43382 -NCIT:C134297 Stage III Rectal Cancer AJCC v8 9 43383 -NCIT:C134298 Stage IIIA Rectal Cancer AJCC v8 10 43384 -NCIT:C134299 Stage IIIB Rectal Cancer AJCC v8 10 43385 -NCIT:C134300 Stage IIIC Rectal Cancer AJCC v8 10 43386 -NCIT:C134301 Stage IV Rectal Cancer AJCC v8 9 43387 -NCIT:C134302 Stage IVA Rectal Cancer AJCC v8 10 43388 -NCIT:C134303 Stage IVB Rectal Cancer AJCC v8 10 43389 -NCIT:C134304 Stage IVC Rectal Cancer AJCC v8 10 43390 -NCIT:C156098 Metastatic Rectal Carcinoma 8 43391 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 9 43392 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 43393 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 43394 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 43395 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 43396 -NCIT:C170777 Advanced Rectal Carcinoma 9 43397 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 43398 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 43399 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 43400 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 43401 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 43402 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 43403 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 9 43404 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 43405 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 43406 -NCIT:C162156 Refractory Rectal Carcinoma 8 43407 -NCIT:C162157 Refractory Rectal Adenocarcinoma 9 43408 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 9 43409 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 8 43410 -NCIT:C177776 Microsatellite Stable Rectal Carcinoma 8 43411 -NCIT:C43594 Rectal Adenosquamous Carcinoma 8 43412 -NCIT:C5554 Rectal Squamous Cell Carcinoma 8 43413 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 9 43414 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 43415 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 43416 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 9 43417 -NCIT:C5555 Rectal Cloacogenic Carcinoma 9 43418 -NCIT:C5556 Rectal Sarcomatoid Carcinoma 8 43419 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 8 43420 -NCIT:C7974 Rectal Undifferentiated Carcinoma 8 43421 -NCIT:C90508 Rectal Cancer by AJCC v6 Stage 8 43422 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 9 43423 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 9 43424 -NCIT:C7791 Stage II Rectal Cancer AJCC v6 9 43425 -NCIT:C7792 Stage III Rectal Cancer AJCC v6 9 43426 -NCIT:C8412 Stage IV Rectal Cancer AJCC v6 9 43427 -NCIT:C91225 Rectal Cancer by AJCC v7 Stage 8 43428 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 9 43429 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 9 43430 -NCIT:C89991 Stage II Rectal Cancer AJCC v7 9 43431 -NCIT:C115044 Stage IIA Rectal Cancer AJCC v7 10 43432 -NCIT:C115045 Stage IIB Rectal Cancer AJCC v7 10 43433 -NCIT:C115046 Stage IIC Rectal Cancer AJCC v7 10 43434 -NCIT:C89996 Stage III Rectal Cancer AJCC v7 9 43435 -NCIT:C115050 Stage IIIA Rectal Cancer AJCC v7 10 43436 -NCIT:C115051 Stage IIIB Rectal Cancer AJCC v7 10 43437 -NCIT:C115052 Stage IIIC Rectal Cancer AJCC v7 10 43438 -NCIT:C90016 Stage IV Rectal Cancer AJCC v7 9 43439 -NCIT:C115055 Stage IVA Rectal Cancer AJCC v7 10 43440 -NCIT:C115056 Stage IVB Rectal Cancer AJCC v7 10 43441 -NCIT:C9238 Recurrent Rectal Carcinoma 8 43442 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 9 43443 -NCIT:C9383 Rectal Adenocarcinoma 8 43444 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 43445 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 43446 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 43447 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 43448 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 9 43449 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 43450 -NCIT:C162157 Refractory Rectal Adenocarcinoma 9 43451 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 9 43452 -NCIT:C60640 Rectal Medullary Carcinoma 9 43453 -NCIT:C7973 Rectal Mucinous Adenocarcinoma 9 43454 -NCIT:C9168 Rectal Signet Ring Cell Adenocarcinoma 9 43455 -NCIT:C9449 Grade 3 Rectal Adenocarcinoma 9 43456 -NCIT:C9450 Grade 2 Rectal Adenocarcinoma 9 43457 -NCIT:C9451 Grade 1 Rectal Adenocarcinoma 9 43458 -NCIT:C96487 Rectal Serrated Adenocarcinoma 9 43459 -NCIT:C96490 Rectal Cribriform Comedo-Type Adenocarcinoma 9 43460 -NCIT:C96493 Rectal Micropapillary Adenocarcinoma 9 43461 -NCIT:C7420 Malignant Rectosigmoid Neoplasm 6 43462 -NCIT:C7421 Rectosigmoid Carcinoma 7 43463 -NCIT:C43584 Rectosigmoid Adenocarcinoma 8 43464 -NCIT:C43592 Rectosigmoid Mucinous Adenocarcinoma 9 43465 -NCIT:C43593 Rectosigmoid Signet Ring Cell Carcinoma 9 43466 -NCIT:C8634 Recurrent Rectosigmoid Carcinoma 8 43467 -NCIT:C90509 Rectosigmoid Cancer by AJCC v6 Stage 8 43468 -NCIT:C5015 Stage II Rectosigmoid Cancer AJCC v6 9 43469 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 9 43470 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 9 43471 -NCIT:C8635 Stage III Rectosigmoid Cancer AJCC v6 9 43472 -NCIT:C8636 Stage IV Rectosigmoid Cancer AJCC v6 9 43473 -NCIT:C91226 Rectosigmoid Cancer by AJCC v7 Stage 8 43474 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 9 43475 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 9 43476 -NCIT:C89992 Stage II Rectosigmoid Cancer AJCC v7 9 43477 -NCIT:C89997 Stage III Rectosigmoid Cancer AJCC v7 9 43478 -NCIT:C90019 Stage IV Rectosigmoid Cancer AJCC v7 9 43479 -NCIT:C9242 Malignant Colon Neoplasm 6 43480 -NCIT:C4793 Colon Lymphoma 7 43481 -NCIT:C4950 Colon Non-Hodgkin Lymphoma 8 43482 -NCIT:C27411 Colon Mantle Cell Lymphoma 9 43483 -NCIT:C27465 Colon Burkitt Lymphoma 9 43484 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 9 43485 -NCIT:C5521 Cecum Non-Hodgkin Lymphoma 9 43486 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 9 43487 -NCIT:C5499 Colon Hodgkin Lymphoma 8 43488 -NCIT:C5515 Cecum Lymphoma 8 43489 -NCIT:C5521 Cecum Non-Hodgkin Lymphoma 9 43490 -NCIT:C4910 Colon Carcinoma 7 43491 -NCIT:C134251 Colon Cancer by AJCC v8 Stage 8 43492 -NCIT:C134271 Stage 0 Colon Cancer AJCC v8 9 43493 -NCIT:C134273 Stage I Colon Cancer AJCC v8 9 43494 -NCIT:C134274 Stage II Colon Cancer AJCC v8 9 43495 -NCIT:C134280 Stage IIA Colon Cancer AJCC v8 10 43496 -NCIT:C134281 Stage IIB Colon Cancer AJCC v8 10 43497 -NCIT:C134282 Stage IIC Colon Cancer AJCC v8 10 43498 -NCIT:C134283 Stage III Colon Cancer AJCC v8 9 43499 -NCIT:C134284 Stage IIIA Colon Cancer AJCC v8 10 43500 -NCIT:C134285 Stage IIIB Colon Cancer AJCC v8 10 43501 -NCIT:C134286 Stage IIIC Colon Cancer AJCC v8 10 43502 -NCIT:C134287 Stage IV Colon Cancer AJCC v8 9 43503 -NCIT:C134288 Stage IVA Colon Cancer AJCC v8 10 43504 -NCIT:C134289 Stage IVB Colon Cancer AJCC v8 10 43505 -NCIT:C134290 Stage IVC Colon Cancer AJCC v8 10 43506 -NCIT:C153351 Refractory Colon Carcinoma 8 43507 -NCIT:C162155 Refractory Colon Adenocarcinoma 9 43508 -NCIT:C156097 Metastatic Colon Carcinoma 8 43509 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 43510 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 43511 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 43512 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 43513 -NCIT:C167238 Advanced Colon Carcinoma 9 43514 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 43515 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 43516 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 43517 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 43518 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 43519 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 43520 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 43521 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 9 43522 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 9 43523 -NCIT:C164228 Hereditary Colon Carcinoma 8 43524 -NCIT:C167237 Resectable Colon Carcinoma 8 43525 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 8 43526 -NCIT:C177680 Sigmoid Colon Carcinoma 8 43527 -NCIT:C177777 Microsatellite Stable Colon Carcinoma 8 43528 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 43529 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 43530 -NCIT:C180406 Unresectable Colon Carcinoma 8 43531 -NCIT:C162116 Unresectable Colon Adenocarcinoma 9 43532 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 43533 -NCIT:C3491 Cecum Carcinoma 8 43534 -NCIT:C4594 Cecum Carcinoma In Situ 9 43535 -NCIT:C5543 Cecum Adenocarcinoma 9 43536 -NCIT:C3998 Recurrent Colon Carcinoma 8 43537 -NCIT:C162442 Recurrent Colon Adenocarcinoma 9 43538 -NCIT:C4349 Colon Adenocarcinoma 8 43539 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 43540 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 43541 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 43542 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 43543 -NCIT:C162116 Unresectable Colon Adenocarcinoma 9 43544 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 43545 -NCIT:C162155 Refractory Colon Adenocarcinoma 9 43546 -NCIT:C162442 Recurrent Colon Adenocarcinoma 9 43547 -NCIT:C38760 Submucosal Invasive Colon Adenocarcinoma 9 43548 -NCIT:C45429 Colon Intramucosal Adenocarcinoma 9 43549 -NCIT:C27413 Adenoma of the Colon with Intramucosal Adenocarcinoma 10 43550 -NCIT:C5543 Cecum Adenocarcinoma 9 43551 -NCIT:C60641 Colon Medullary Carcinoma 9 43552 -NCIT:C7966 Colon Mucinous Adenocarcinoma 9 43553 -NCIT:C7967 Colon Signet Ring Cell Adenocarcinoma 9 43554 -NCIT:C9452 Grade 1 Colon Adenocarcinoma 9 43555 -NCIT:C9453 Grade 2 Colon Adenocarcinoma 9 43556 -NCIT:C9454 Grade 3 Colon Adenocarcinoma 9 43557 -NCIT:C96486 Colon Serrated Adenocarcinoma 9 43558 -NCIT:C96489 Colon Cribriform Comedo-Type Adenocarcinoma 9 43559 -NCIT:C96492 Colon Micropapillary Adenocarcinoma 9 43560 -NCIT:C5490 Colon Squamous Cell Carcinoma 8 43561 -NCIT:C5491 Colon Adenosquamous Carcinoma 8 43562 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 8 43563 -NCIT:C7100 Colon Undifferentiated Carcinoma 8 43564 -NCIT:C90507 Colon Cancer by AJCC v6 Stage 8 43565 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 9 43566 -NCIT:C4594 Cecum Carcinoma In Situ 10 43567 -NCIT:C3993 Stage II Colon Cancer AJCC v6 9 43568 -NCIT:C3994 Stage IV Colon Cancer AJCC v6 9 43569 -NCIT:C7766 Stage III Colon Cancer AJCC v6 9 43570 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 9 43571 -NCIT:C91224 Colon Cancer by AJCC v7 Stage 8 43572 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 9 43573 -NCIT:C4594 Cecum Carcinoma In Situ 10 43574 -NCIT:C89990 Stage II Colon Cancer AJCC v7 9 43575 -NCIT:C115041 Stage IIA Colon Cancer AJCC v7 10 43576 -NCIT:C115042 Stage IIB Colon Cancer AJCC v7 10 43577 -NCIT:C115043 Stage IIC Colon Cancer AJCC v7 10 43578 -NCIT:C89995 Stage III Colon Cancer AJCC v7 9 43579 -NCIT:C115047 Stage IIIA Colon Cancer AJCC v7 10 43580 -NCIT:C115048 Stage IIIB Colon Cancer AJCC v7 10 43581 -NCIT:C115049 Stage IIIC Colon Cancer AJCC v7 10 43582 -NCIT:C89999 Stage IV Colon Cancer AJCC v7 9 43583 -NCIT:C115053 Stage IVA Colon Cancer AJCC v7 10 43584 -NCIT:C115054 Stage IVB Colon Cancer AJCC v7 10 43585 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 9 43586 -NCIT:C5495 Colon Sarcoma 7 43587 -NCIT:C156279 Colon Liposarcoma 8 43588 -NCIT:C5494 Colon Leiomyosarcoma 8 43589 -NCIT:C5516 Colon Kaposi Sarcoma 8 43590 -NCIT:C8411 Metastatic Malignant Neoplasm in the Colon 7 43591 -NCIT:C9329 Malignant Cecum Neoplasm 7 43592 -NCIT:C3491 Cecum Carcinoma 8 43593 -NCIT:C4594 Cecum Carcinoma In Situ 9 43594 -NCIT:C5543 Cecum Adenocarcinoma 9 43595 -NCIT:C5515 Cecum Lymphoma 8 43596 -NCIT:C5521 Cecum Non-Hodgkin Lymphoma 9 43597 -NCIT:C96498 Colorectal Lymphoma 6 43598 -NCIT:C4793 Colon Lymphoma 7 43599 -NCIT:C4950 Colon Non-Hodgkin Lymphoma 8 43600 -NCIT:C27411 Colon Mantle Cell Lymphoma 9 43601 -NCIT:C27465 Colon Burkitt Lymphoma 9 43602 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 9 43603 -NCIT:C5521 Cecum Non-Hodgkin Lymphoma 9 43604 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 9 43605 -NCIT:C5499 Colon Hodgkin Lymphoma 8 43606 -NCIT:C5515 Cecum Lymphoma 8 43607 -NCIT:C5521 Cecum Non-Hodgkin Lymphoma 9 43608 -NCIT:C5553 Rectal Lymphoma 7 43609 -NCIT:C96499 Colorectal Non-Hodgkin Lymphoma 7 43610 -NCIT:C4950 Colon Non-Hodgkin Lymphoma 8 43611 -NCIT:C27411 Colon Mantle Cell Lymphoma 9 43612 -NCIT:C27465 Colon Burkitt Lymphoma 9 43613 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 9 43614 -NCIT:C5521 Cecum Non-Hodgkin Lymphoma 9 43615 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 9 43616 -NCIT:C96502 Colorectal Burkitt Lymphoma 8 43617 -NCIT:C27465 Colon Burkitt Lymphoma 9 43618 -NCIT:C96503 Colorectal Diffuse Large B-Cell Lymphoma 8 43619 -NCIT:C96501 Colorectal High Grade B-Cell Lymphoma, Not Otherwise Specified 9 43620 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 9 43621 -NCIT:C96505 Colorectal Mantle Cell Lymphoma 8 43622 -NCIT:C27411 Colon Mantle Cell Lymphoma 9 43623 -NCIT:C96506 Colorectal Mucosa-Associated Lymphoid Tissue Lymphoma 8 43624 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 9 43625 -NCIT:C96500 Colorectal Hodgkin Lymphoma 7 43626 -NCIT:C5499 Colon Hodgkin Lymphoma 8 43627 -NCIT:C96508 Colorectal Sarcoma 6 43628 -NCIT:C5495 Colon Sarcoma 7 43629 -NCIT:C156279 Colon Liposarcoma 8 43630 -NCIT:C5494 Colon Leiomyosarcoma 8 43631 -NCIT:C5516 Colon Kaposi Sarcoma 8 43632 -NCIT:C5548 Rectal Sarcoma 7 43633 -NCIT:C5549 Rectal Leiomyosarcoma 8 43634 -NCIT:C5550 Rectal Kaposi Sarcoma 8 43635 -NCIT:C5627 Rectal Rhabdomyosarcoma 8 43636 -NCIT:C96509 Colorectal Leiomyosarcoma 7 43637 -NCIT:C5494 Colon Leiomyosarcoma 8 43638 -NCIT:C5549 Rectal Leiomyosarcoma 8 43639 -NCIT:C96510 Colorectal Kaposi Sarcoma 7 43640 -NCIT:C5516 Colon Kaposi Sarcoma 8 43641 -NCIT:C5550 Rectal Kaposi Sarcoma 8 43642 -NCIT:C96511 Colorectal Angiosarcoma 7 43643 -NCIT:C7523 Malignant Small Intestinal Neoplasm 5 43644 -NCIT:C118826 Childhood Malignant Small Intestinal Neoplasm 6 43645 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 7 43646 -NCIT:C123933 Childhood Small Intestinal Carcinoma 7 43647 -NCIT:C132260 Small Intestinal Myeloid Sarcoma 6 43648 -NCIT:C170919 Malignant Jejunal Neoplasm 6 43649 -NCIT:C181157 Jejunal Carcinoma 7 43650 -NCIT:C181158 Jejunal Adenocarcinoma 8 43651 -NCIT:C188067 Jejunal Melanoma 7 43652 -NCIT:C176678 Metastatic Malignant Small Intestinal Neoplasm 6 43653 -NCIT:C176679 Advanced Malignant Small Intestinal Neoplasm 7 43654 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 43655 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 43656 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 43657 -NCIT:C8637 Metastatic Small Intestinal Carcinoma 7 43658 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 8 43659 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 43660 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 43661 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 43662 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 43663 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 43664 -NCIT:C8934 Metastatic Small Intestinal Adenocarcinoma 8 43665 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 43666 -NCIT:C4007 Small Intestinal Lymphoma 6 43667 -NCIT:C5337 Small Intestinal Hodgkin Lymphoma 7 43668 -NCIT:C7231 Small Intestinal Non-Hodgkin Lymphoma 7 43669 -NCIT:C96053 Small Intestinal B-Cell Non-Hodgkin Lymphoma 8 43670 -NCIT:C27409 Small Intestinal Burkitt Lymphoma 9 43671 -NCIT:C27410 Small Intestinal Atypical Burkitt/Burkitt-Like Lymphoma 10 43672 -NCIT:C27441 Small Intestinal Mantle Cell Lymphoma 9 43673 -NCIT:C3132 Alpha Heavy Chain Disease 9 43674 -NCIT:C5635 Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 9 43675 -NCIT:C45166 Campylobacter Jejuni-Associated Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 10 43676 -NCIT:C96055 Small Intestinal Diffuse Large B-Cell Lymphoma 9 43677 -NCIT:C96057 Small Intestinal High Grade B-Cell Lymphoma, Not Otherwise Specified 10 43678 -NCIT:C96056 Small Intestinal Follicular Lymphoma 9 43679 -NCIT:C96054 Small Intestinal T-Cell Non-Hodgkin Lymphoma 8 43680 -NCIT:C150504 Small Intestinal Monomorphic Epitheliotropic T-Cell Lymphoma 9 43681 -NCIT:C39610 Small Intestinal Enteropathy-Associated T-Cell Lymphoma 9 43682 -NCIT:C5335 Small Intestinal Sarcoma 6 43683 -NCIT:C5336 Small Intestinal Fibrosarcoma 7 43684 -NCIT:C7085 Small Intestinal Leiomyosarcoma 7 43685 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 8 43686 -NCIT:C82972 Duodenal Extraskeletal Osteosarcoma 7 43687 -NCIT:C96059 Small Intestinal Kaposi Sarcoma 7 43688 -NCIT:C96060 Small Intestinal Angiosarcoma 7 43689 -NCIT:C7524 Metastatic Malignant Neoplasm in the Small Intestine 6 43690 -NCIT:C7724 Small Intestinal Carcinoma 6 43691 -NCIT:C123933 Childhood Small Intestinal Carcinoma 7 43692 -NCIT:C133716 Small Intestinal Cancer by AJCC v7 Stage 7 43693 -NCIT:C4892 Stage 0 Small Intestinal Cancer AJCC v7 8 43694 -NCIT:C5807 Stage I Small Intestinal Cancer AJCC v7 8 43695 -NCIT:C5808 Stage II Small Intestinal Cancer AJCC v7 8 43696 -NCIT:C87791 Stage IIA Small Intestinal Cancer AJCC v7 9 43697 -NCIT:C87792 Stage IIB Small Intestinal Cancer AJCC v7 9 43698 -NCIT:C5809 Stage III Small Intestinal Cancer AJCC v7 8 43699 -NCIT:C87793 Stage IIIA Small Intestinal Cancer AJCC v7 9 43700 -NCIT:C87795 Stage IIIB Small Intestinal Cancer AJCC v7 9 43701 -NCIT:C5810 Stage IV Small Intestinal Cancer AJCC v7 8 43702 -NCIT:C153356 Refractory Small Intestinal Carcinoma 7 43703 -NCIT:C181157 Jejunal Carcinoma 7 43704 -NCIT:C181158 Jejunal Adenocarcinoma 8 43705 -NCIT:C43534 Small Intestinal Squamous Cell Carcinoma 7 43706 -NCIT:C43535 Small Intestinal Adenosquamous Carcinoma 7 43707 -NCIT:C43537 Small Intestinal Medullary Carcinoma 7 43708 -NCIT:C43538 Small Intestinal Undifferentiated Carcinoma 7 43709 -NCIT:C4803 Duodenal Carcinoma 7 43710 -NCIT:C27323 Resectable Duodenal Carcinoma 8 43711 -NCIT:C169108 Resectable Periampullary Adenocarcinoma 9 43712 -NCIT:C7889 Duodenal Adenocarcinoma 8 43713 -NCIT:C27322 Periampullary Adenocarcinoma 9 43714 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 10 43715 -NCIT:C169108 Resectable Periampullary Adenocarcinoma 10 43716 -NCIT:C9352 Recurrent Duodenal Carcinoma 8 43717 -NCIT:C7888 Small Intestinal Adenocarcinoma 7 43718 -NCIT:C133893 Small Intestinal Adenocarcinoma by AJCC v8 Stage 8 43719 -NCIT:C133894 Stage 0 Small Intestinal Adenocarcinoma AJCC v8 9 43720 -NCIT:C133895 Stage I Small Intestinal Adenocarcinoma AJCC v8 9 43721 -NCIT:C133896 Stage II Small Intestinal Adenocarcinoma AJCC v8 9 43722 -NCIT:C133897 Stage IIA Small Intestinal Adenocarcinoma AJCC v8 10 43723 -NCIT:C133898 Stage IIB Small Intestinal Adenocarcinoma AJCC v8 10 43724 -NCIT:C133899 Stage III Small Intestinal Adenocarcinoma AJCC v8 9 43725 -NCIT:C133900 Stage IIIA Small Intestinal Adenocarcinoma AJCC v8 10 43726 -NCIT:C133901 Stage IIIB Small Intestinal Adenocarcinoma AJCC v8 10 43727 -NCIT:C133902 Stage IV Small Intestinal Adenocarcinoma AJCC v8 9 43728 -NCIT:C175516 Unresectable Small Intestinal Adenocarcinoma 8 43729 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 9 43730 -NCIT:C181158 Jejunal Adenocarcinoma 8 43731 -NCIT:C43536 Small Intestinal Mucinous Adenocarcinoma 8 43732 -NCIT:C43543 Small Intestinal Signet Ring Cell Carcinoma 8 43733 -NCIT:C7889 Duodenal Adenocarcinoma 8 43734 -NCIT:C27322 Periampullary Adenocarcinoma 9 43735 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 10 43736 -NCIT:C169108 Resectable Periampullary Adenocarcinoma 10 43737 -NCIT:C8934 Metastatic Small Intestinal Adenocarcinoma 8 43738 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 43739 -NCIT:C7894 Recurrent Small Intestinal Carcinoma 7 43740 -NCIT:C9352 Recurrent Duodenal Carcinoma 8 43741 -NCIT:C8637 Metastatic Small Intestinal Carcinoma 7 43742 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 8 43743 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 43744 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 43745 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 43746 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 43747 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 43748 -NCIT:C8934 Metastatic Small Intestinal Adenocarcinoma 8 43749 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 43750 -NCIT:C8638 Unresectable Small Intestinal Carcinoma 7 43751 -NCIT:C175516 Unresectable Small Intestinal Adenocarcinoma 8 43752 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 9 43753 -NCIT:C8639 Resectable Small Intestinal Carcinoma 7 43754 -NCIT:C27323 Resectable Duodenal Carcinoma 8 43755 -NCIT:C169108 Resectable Periampullary Adenocarcinoma 9 43756 -NCIT:C96064 Small Intestinal Neuroendocrine Carcinoma 7 43757 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 43758 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 43759 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 43760 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 43761 -NCIT:C27449 Small Intestinal Small Cell Neuroendocrine Carcinoma 8 43762 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 43763 -NCIT:C96065 Small Intestinal Large Cell Neuroendocrine Carcinoma 8 43764 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 43765 -NCIT:C96066 Small Intestinal Mixed Adenoneuroendocrine Carcinoma 7 43766 -NCIT:C9328 Malignant Duodenal Neoplasm 6 43767 -NCIT:C4803 Duodenal Carcinoma 7 43768 -NCIT:C27323 Resectable Duodenal Carcinoma 8 43769 -NCIT:C169108 Resectable Periampullary Adenocarcinoma 9 43770 -NCIT:C7889 Duodenal Adenocarcinoma 8 43771 -NCIT:C27322 Periampullary Adenocarcinoma 9 43772 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 10 43773 -NCIT:C169108 Resectable Periampullary Adenocarcinoma 10 43774 -NCIT:C9352 Recurrent Duodenal Carcinoma 8 43775 -NCIT:C82972 Duodenal Extraskeletal Osteosarcoma 7 43776 -NCIT:C9263 Recurrent Malignant Duodenal Neoplasm 7 43777 -NCIT:C9352 Recurrent Duodenal Carcinoma 8 43778 -NCIT:C96063 Intestinal Neuroendocrine Carcinoma 5 43779 -NCIT:C96064 Small Intestinal Neuroendocrine Carcinoma 6 43780 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 7 43781 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 43782 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 43783 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 43784 -NCIT:C27449 Small Intestinal Small Cell Neuroendocrine Carcinoma 7 43785 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 43786 -NCIT:C96065 Small Intestinal Large Cell Neuroendocrine Carcinoma 7 43787 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 43788 -NCIT:C96156 Colorectal Neuroendocrine Carcinoma 6 43789 -NCIT:C43587 Colorectal Small Cell Neuroendocrine Carcinoma 7 43790 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 8 43791 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 8 43792 -NCIT:C96157 Colorectal Large Cell Neuroendocrine Carcinoma 7 43793 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 8 43794 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 8 43795 -NCIT:C7091 Mucosal Melanoma of the Digestive System 4 43796 -NCIT:C178519 Gastric Melanoma 5 43797 -NCIT:C188067 Jejunal Melanoma 5 43798 -NCIT:C4639 Anal Melanoma 5 43799 -NCIT:C4640 Rectal Melanoma 5 43800 -NCIT:C188079 Rectal Epithelioid Cell Melanoma 6 43801 -NCIT:C5707 Esophageal Melanoma 5 43802 -NCIT:C5735 Gallbladder Melanoma 5 43803 -NCIT:C7379 Malignant Anal Neoplasm 4 43804 -NCIT:C4639 Anal Melanoma 5 43805 -NCIT:C5047 AIDS-Related Malignant Anal Neoplasm 5 43806 -NCIT:C7465 AIDS-Related Anal Non-Hodgkin Lymphoma 6 43807 -NCIT:C9278 AIDS-Related Anal Carcinoma 6 43808 -NCIT:C133095 AIDS-Related Anal Canal Carcinoma 7 43809 -NCIT:C27282 Stage 0 AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 43810 -NCIT:C27283 Stage I AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 43811 -NCIT:C27284 Stage II AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 43812 -NCIT:C27285 Stage III AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 43813 -NCIT:C27286 Stage IV AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 43814 -NCIT:C9249 Recurrent AIDS-Related Anal Canal Carcinoma 8 43815 -NCIT:C5601 Anal Lymphoma 5 43816 -NCIT:C7465 AIDS-Related Anal Non-Hodgkin Lymphoma 6 43817 -NCIT:C5611 Anal Sarcoma 5 43818 -NCIT:C5599 Anal Leiomyosarcoma 6 43819 -NCIT:C5602 Anal Kaposi Sarcoma 6 43820 -NCIT:C5610 Anal Rhabdomyosarcoma 6 43821 -NCIT:C7460 Metastatic Malignant Neoplasm in the Anus 5 43822 -NCIT:C9291 Anal Carcinoma 5 43823 -NCIT:C133794 Anal Cancer by AJCC v8 Stage 6 43824 -NCIT:C133795 Stage 0 Anal Cancer AJCC v8 7 43825 -NCIT:C157575 Anal Intraepithelial Neoplasia 3 8 43826 -NCIT:C133796 Stage I Anal Cancer AJCC v8 7 43827 -NCIT:C133797 Stage II Anal Cancer AJCC v8 7 43828 -NCIT:C133798 Stage IIA Anal Cancer AJCC v8 8 43829 -NCIT:C133799 Stage IIB Anal Cancer AJCC v8 8 43830 -NCIT:C133800 Stage III Anal Cancer AJCC v8 7 43831 -NCIT:C133801 Stage IIIA Anal Cancer AJCC v8 8 43832 -NCIT:C133802 Stage IIIB Anal Cancer AJCC v8 8 43833 -NCIT:C133803 Stage IIIC Anal Cancer AJCC v8 8 43834 -NCIT:C133804 Stage IV Anal Cancer AJCC v8 7 43835 -NCIT:C137857 Refractory Anal Carcinoma 6 43836 -NCIT:C173334 Refractory Anal Canal Squamous Cell Carcinoma 7 43837 -NCIT:C167354 Microinvasive Anal Carcinoma 6 43838 -NCIT:C170514 Metastatic Anal Carcinoma 6 43839 -NCIT:C168977 Locally Advanced Anal Carcinoma 7 43840 -NCIT:C169103 Metastatic Anal Squamous Cell Carcinoma 7 43841 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 43842 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 43843 -NCIT:C170515 Advanced Anal Carcinoma 7 43844 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 8 43845 -NCIT:C5612 Metastatic Anal Canal Carcinoma 7 43846 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 43847 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 43848 -NCIT:C5600 Anal Adenocarcinoma 6 43849 -NCIT:C153575 Recurrent Anal Adenocarcinoma 7 43850 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 8 43851 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 8 43852 -NCIT:C5598 Anal Paget Disease 7 43853 -NCIT:C7476 Anal Margin Paget Disease 8 43854 -NCIT:C7477 Anal Canal Paget Disease 8 43855 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 9 43856 -NCIT:C7471 Anal Canal Adenocarcinoma 7 43857 -NCIT:C5606 Anal Mucinous Adenocarcinoma 8 43858 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 9 43859 -NCIT:C7477 Anal Canal Paget Disease 8 43860 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 9 43861 -NCIT:C7474 Anal Extramucosal (Perianal) Adenocarcinoma 7 43862 -NCIT:C5609 Anal Glands Adenocarcinoma 8 43863 -NCIT:C7475 Anal Adenocarcinoma within Anorectal Fistula 8 43864 -NCIT:C7472 Anal Margin Carcinoma 6 43865 -NCIT:C6925 Anal Margin Squamous Cell Carcinoma 7 43866 -NCIT:C7473 Anal Margin Basal Cell Carcinoma 7 43867 -NCIT:C7476 Anal Margin Paget Disease 7 43868 -NCIT:C7489 Anal Canal Carcinoma 6 43869 -NCIT:C133095 AIDS-Related Anal Canal Carcinoma 7 43870 -NCIT:C27282 Stage 0 AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 43871 -NCIT:C27283 Stage I AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 43872 -NCIT:C27284 Stage II AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 43873 -NCIT:C27285 Stage III AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 43874 -NCIT:C27286 Stage IV AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 43875 -NCIT:C9249 Recurrent AIDS-Related Anal Canal Carcinoma 8 43876 -NCIT:C133787 Anal Canal Cancer by AJCC v6 and v7 Stage 7 43877 -NCIT:C6873 Stage IV Anal Canal Cancer AJCC v6 and v7 8 43878 -NCIT:C27286 Stage IV AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 43879 -NCIT:C7775 Stage II Anal Canal Cancer AJCC v6 and v7 8 43880 -NCIT:C27284 Stage II AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 43881 -NCIT:C7776 Stage III Anal Canal Cancer AJCC v6 and v7 8 43882 -NCIT:C27285 Stage III AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 43883 -NCIT:C5925 Stage IIIA Anal Canal Cancer AJCC v6 and v7 9 43884 -NCIT:C5926 Stage IIIB Anal Canal Cancer AJCC v6 and v7 9 43885 -NCIT:C7794 Stage 0 Anal Canal Cancer AJCC v6 and v7 8 43886 -NCIT:C27282 Stage 0 AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 43887 -NCIT:C9037 Stage I Anal Canal Cancer AJCC v6 and v7 8 43888 -NCIT:C27283 Stage I AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 43889 -NCIT:C5612 Metastatic Anal Canal Carcinoma 7 43890 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 43891 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 43892 -NCIT:C7469 Anal Canal Squamous Cell Carcinoma 7 43893 -NCIT:C173334 Refractory Anal Canal Squamous Cell Carcinoma 8 43894 -NCIT:C175360 Recurrent Anal Canal Squamous Cell Carcinoma 8 43895 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 9 43896 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 43897 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 43898 -NCIT:C175384 Unresectable Anal Canal Squamous Cell Carcinoma 8 43899 -NCIT:C7471 Anal Canal Adenocarcinoma 7 43900 -NCIT:C5606 Anal Mucinous Adenocarcinoma 8 43901 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 9 43902 -NCIT:C7477 Anal Canal Paget Disease 8 43903 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 9 43904 -NCIT:C7793 Recurrent Anal Canal Carcinoma 7 43905 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 8 43906 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 8 43907 -NCIT:C175360 Recurrent Anal Canal Squamous Cell Carcinoma 8 43908 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 9 43909 -NCIT:C9249 Recurrent AIDS-Related Anal Canal Carcinoma 8 43910 -NCIT:C8255 Anal Canal Cloacogenic Carcinoma 7 43911 -NCIT:C96529 Anal Canal Undifferentiated Carcinoma 7 43912 -NCIT:C96549 Anal Canal Neuroendocrine Carcinoma 7 43913 -NCIT:C96550 Anal Canal Large Cell Neuroendocrine Carcinoma 8 43914 -NCIT:C96551 Anal Canal Small Cell Neuroendocrine Carcinoma 8 43915 -NCIT:C96553 Anal Canal Mixed Adenoneuroendocrine Carcinoma 7 43916 -NCIT:C9161 Anal Squamous Cell Carcinoma 6 43917 -NCIT:C157575 Anal Intraepithelial Neoplasia 3 7 43918 -NCIT:C169102 Recurrent Anal Squamous Cell Carcinoma 7 43919 -NCIT:C175360 Recurrent Anal Canal Squamous Cell Carcinoma 8 43920 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 9 43921 -NCIT:C169103 Metastatic Anal Squamous Cell Carcinoma 7 43922 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 43923 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 43924 -NCIT:C173156 Unresectable Anal Squamous Cell Carcinoma 7 43925 -NCIT:C175384 Unresectable Anal Canal Squamous Cell Carcinoma 8 43926 -NCIT:C27681 Human Papillomavirus-Related Anal Squamous Cell Carcinoma 7 43927 -NCIT:C6925 Anal Margin Squamous Cell Carcinoma 7 43928 -NCIT:C7469 Anal Canal Squamous Cell Carcinoma 7 43929 -NCIT:C173334 Refractory Anal Canal Squamous Cell Carcinoma 8 43930 -NCIT:C175360 Recurrent Anal Canal Squamous Cell Carcinoma 8 43931 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 9 43932 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 43933 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 43934 -NCIT:C175384 Unresectable Anal Canal Squamous Cell Carcinoma 8 43935 -NCIT:C7470 Anal Verrucous Carcinoma 7 43936 -NCIT:C8256 Anal Basaloid Carcinoma 7 43937 -NCIT:C9278 AIDS-Related Anal Carcinoma 6 43938 -NCIT:C133095 AIDS-Related Anal Canal Carcinoma 7 43939 -NCIT:C27282 Stage 0 AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 43940 -NCIT:C27283 Stage I AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 43941 -NCIT:C27284 Stage II AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 43942 -NCIT:C27285 Stage III AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 43943 -NCIT:C27286 Stage IV AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 43944 -NCIT:C9249 Recurrent AIDS-Related Anal Canal Carcinoma 8 43945 -NCIT:C7478 Malignant Esophageal Neoplasm 4 43946 -NCIT:C3513 Esophageal Carcinoma 5 43947 -NCIT:C118812 Childhood Esophageal Carcinoma 6 43948 -NCIT:C128563 Unresectable Esophageal Carcinoma 6 43949 -NCIT:C171608 Unresectable Esophageal Squamous Cell Carcinoma 7 43950 -NCIT:C173162 Unresectable Esophageal Adenocarcinoma 7 43951 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 43952 -NCIT:C172248 Unresectable Distal Esophagus Adenocarcinoma 8 43953 -NCIT:C133399 Esophageal Cancer by AJCC v8 Stage 6 43954 -NCIT:C133400 Esophageal Adenocarcinoma by AJCC v8 Stage 7 43955 -NCIT:C133401 Esophageal Adenocarcinoma by AJCC v8 Clinical Stage 8 43956 -NCIT:C133402 Clinical Stage 0 Esophageal Adenocarcinoma AJCC v8 9 43957 -NCIT:C133403 Clinical Stage I Esophageal Adenocarcinoma AJCC v8 9 43958 -NCIT:C133404 Clinical Stage II Esophageal Adenocarcinoma AJCC v8 9 43959 -NCIT:C133405 Clinical Stage IIA Esophageal Adenocarcinoma AJCC v8 10 43960 -NCIT:C133406 Clinical Stage IIB Esophageal Adenocarcinoma AJCC v8 10 43961 -NCIT:C133407 Clinical Stage III Esophageal Adenocarcinoma AJCC v8 9 43962 -NCIT:C133408 Clinical Stage IV Esophageal Adenocarcinoma AJCC v8 9 43963 -NCIT:C133409 Clinical Stage IVA Esophageal Adenocarcinoma AJCC v8 10 43964 -NCIT:C133410 Clinical Stage IVB Esophageal Adenocarcinoma AJCC v8 10 43965 -NCIT:C133412 Esophageal Adenocarcinoma by AJCC v8 Pathologic Stage 8 43966 -NCIT:C133413 Pathologic Stage 0 Esophageal Adenocarcinoma AJCC v8 9 43967 -NCIT:C133414 Pathologic Stage I Esophageal Adenocarcinoma AJCC v8 9 43968 -NCIT:C133415 Pathologic Stage IA Esophageal Adenocarcinoma AJCC v8 10 43969 -NCIT:C133416 Pathologic Stage IB Esophageal Adenocarcinoma AJCC v8 10 43970 -NCIT:C133417 Pathologic Stage IC Esophageal Adenocarcinoma AJCC v8 10 43971 -NCIT:C133418 Pathologic Stage II Esophageal Adenocarcinoma AJCC v8 9 43972 -NCIT:C133419 Pathologic Stage IIA Esophageal Adenocarcinoma AJCC v8 10 43973 -NCIT:C133420 Pathologic Stage IIB Esophageal Adenocarcinoma AJCC v8 10 43974 -NCIT:C133421 Pathologic Stage III Esophageal Adenocarcinoma AJCC v8 9 43975 -NCIT:C133422 Pathologic Stage IIIA Esophageal Adenocarcinoma AJCC v8 10 43976 -NCIT:C133423 Pathologic Stage IIIB Esophageal Adenocarcinoma AJCC v8 10 43977 -NCIT:C133424 Pathologic Stage IV Esophageal Adenocarcinoma AJCC v8 9 43978 -NCIT:C133425 Pathologic Stage IVA Esophageal Adenocarcinoma AJCC v8 10 43979 -NCIT:C133426 Pathologic Stage IVB Esophageal Adenocarcinoma AJCC v8 10 43980 -NCIT:C133432 Esophageal Adenocarcinoma by AJCC v8 Postneoadjuvant Therapy Stage 8 43981 -NCIT:C133433 Postneoadjuvant Therapy Stage I Esophageal Adenocarcinoma AJCC v8 9 43982 -NCIT:C133434 Postneoadjuvant Therapy Stage II Esophageal Adenocarcinoma AJCC v8 9 43983 -NCIT:C133435 Postneoadjuvant Therapy Stage III Esophageal Adenocarcinoma AJCC v8 9 43984 -NCIT:C133436 Postneoadjuvant Therapy Stage IIIA Esophageal Adenocarcinoma AJCC v8 10 43985 -NCIT:C133437 Postneoadjuvant Therapy Stage IIIB Esophageal Adenocarcinoma AJCC v8 10 43986 -NCIT:C133438 Postneoadjuvant Therapy Stage IV Esophageal Adenocarcinoma AJCC v8 9 43987 -NCIT:C133439 Postneoadjuvant Therapy Stage IVA Esophageal Adenocarcinoma AJCC v8 10 43988 -NCIT:C133440 Postneoadjuvant Therapy Stage IVB Esophageal Adenocarcinoma AJCC v8 10 43989 -NCIT:C133443 Esophageal Squamous Cell Carcinoma by AJCC v8 Stage 7 43990 -NCIT:C133444 Esophageal Squamous Cell Carcinoma by AJCC v8 Clinical Stage 8 43991 -NCIT:C133447 Clinical Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 9 43992 -NCIT:C133448 Clinical Stage I Esophageal Squamous Cell Carcinoma AJCC v8 9 43993 -NCIT:C133449 Clinical Stage II Esophageal Squamous Cell Carcinoma AJCC v8 9 43994 -NCIT:C133450 Clinical Stage III Esophageal Squamous Cell Carcinoma AJCC v8 9 43995 -NCIT:C133451 Clinical Stage IV Esophageal Squamous Cell Carcinoma AJCC v8 9 43996 -NCIT:C133452 Clinical Stage IVA Esophageal Squamous Cell Carcinoma AJCC v8 10 43997 -NCIT:C133453 Clinical Stage IVB Esophageal Squamous Cell Carcinoma AJCC v8 10 43998 -NCIT:C133445 Esophageal Squamous Cell Carcinoma by AJCC v8 Pathologic Stage 8 43999 -NCIT:C133519 Pathologic Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 9 44000 -NCIT:C133521 Pathologic Stage I Esophageal Squamous Cell Carcinoma AJCC v8 9 44001 -NCIT:C133525 Pathologic Stage IA Esophageal Squamous Cell Carcinoma AJCC v8 10 44002 -NCIT:C133530 Pathologic Stage IB Esophageal Squamous Cell Carcinoma AJCC v8 10 44003 -NCIT:C133532 Pathologic Stage II Esophageal Squamous Cell Carcinoma AJCC v8 9 44004 -NCIT:C133534 Pathologic Stage IIA Esophageal Squamous Cell Carcinoma AJCC v8 10 44005 -NCIT:C133535 Pathologic Stage IIB Esophageal Squamous Cell Carcinoma AJCC v8 10 44006 -NCIT:C133536 Pathologic Stage III Esophageal Squamous Cell Carcinoma AJCC v8 9 44007 -NCIT:C133537 Pathologic Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v8 10 44008 -NCIT:C133538 Pathologic Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v8 10 44009 -NCIT:C133539 Pathologic Stage IV Esophageal Squamous Cell Carcinoma AJCC v8 9 44010 -NCIT:C133541 Pathologic Stage IVA Esophageal Squamous Cell Carcinoma AJCC v8 10 44011 -NCIT:C133542 Pathologic Stage IVB Esophageal Squamous Cell Carcinoma AJCC v8 10 44012 -NCIT:C133446 Esophageal Squamous Cell Carcinoma by AJCC v8 Postneoadjuvant Therapy Stage 8 44013 -NCIT:C133454 Postneoadjuvant Therapy Stage I Esophageal Squamous Cell Carcinoma AJCC v8 9 44014 -NCIT:C133455 Postneoadjuvant Therapy Stage II Esophageal Squamous Cell Carcinoma AJCC v8 9 44015 -NCIT:C133456 Postneoadjuvant Therapy Stage III Esophageal Squamous Cell Carcinoma AJCC v8 9 44016 -NCIT:C133457 Postneoadjuvant Therapy Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v8 10 44017 -NCIT:C133458 Postneoadjuvant Therapy Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v8 10 44018 -NCIT:C133459 Postneoadjuvant Therapy Stage IV Esophageal Squamous Cell Carcinoma AJCC v8 9 44019 -NCIT:C133460 Postneoadjuvant Therapy Stage IVA Esophageal Squamous Cell Carcinoma AJCC v8 10 44020 -NCIT:C133461 Postneoadjuvant Therapy Stage IVB Esophageal Squamous Cell Carcinoma AJCC v8 10 44021 -NCIT:C156073 Metastatic Esophageal Carcinoma 6 44022 -NCIT:C156074 Metastatic Esophageal Adenocarcinoma 7 44023 -NCIT:C166120 Oligometastatic Esophageal Adenocarcinoma 8 44024 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 44025 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 44026 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 44027 -NCIT:C172249 Metastatic Distal Esophagus Adenocarcinoma 8 44028 -NCIT:C156075 Metastatic Esophageal Squamous Cell Carcinoma 7 44029 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 44030 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 44031 -NCIT:C160599 Advanced Esophageal Carcinoma 7 44032 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 44033 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 44034 -NCIT:C168976 Locally Advanced Esophageal Carcinoma 7 44035 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 44036 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 44037 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 44038 -NCIT:C166171 Localized Esophageal Carcinoma 6 44039 -NCIT:C171604 Refractory Esophageal Carcinoma 6 44040 -NCIT:C171606 Refractory Esophageal Squamous Cell Carcinoma 7 44041 -NCIT:C176892 Refractory Esophageal Adenocarcinoma 7 44042 -NCIT:C27421 Esophageal Adenosquamous Carcinoma 6 44043 -NCIT:C27422 Esophageal Undifferentiated Carcinoma 6 44044 -NCIT:C3999 Recurrent Esophageal Carcinoma 6 44045 -NCIT:C8627 Recurrent Esophageal Adenocarcinoma 7 44046 -NCIT:C8633 Recurrent Esophageal Squamous Cell Carcinoma 7 44047 -NCIT:C4024 Esophageal Squamous Cell Carcinoma 6 44048 -NCIT:C133442 Esophageal Squamous Cell Carcinoma by AJCC v7 Stage 7 44049 -NCIT:C5019 Stage IV Esophageal Squamous Cell Carcinoma AJCC v7 8 44050 -NCIT:C5020 Stage III Esophageal Squamous Cell Carcinoma AJCC v7 8 44051 -NCIT:C87787 Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v7 9 44052 -NCIT:C87788 Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v7 9 44053 -NCIT:C87789 Stage IIIC Esophageal Squamous Cell Carcinoma AJCC v7 9 44054 -NCIT:C5021 Stage II Esophageal Squamous Cell Carcinoma AJCC v7 8 44055 -NCIT:C6737 Stage IIB Esophageal Squamous Cell Carcinoma AJCC v7 9 44056 -NCIT:C6738 Stage IIA Esophageal Squamous Cell Carcinoma AJCC v7 9 44057 -NCIT:C5022 Stage I Esophageal Squamous Cell Carcinoma AJCC v7 8 44058 -NCIT:C87780 Stage IA Esophageal Squamous Cell Carcinoma AJCC v7 9 44059 -NCIT:C87781 Stage IB Esophageal Squamous Cell Carcinoma AJCC v7 9 44060 -NCIT:C5023 Stage 0 Esophageal Squamous Cell Carcinoma AJCC v7 8 44061 -NCIT:C133443 Esophageal Squamous Cell Carcinoma by AJCC v8 Stage 7 44062 -NCIT:C133444 Esophageal Squamous Cell Carcinoma by AJCC v8 Clinical Stage 8 44063 -NCIT:C133447 Clinical Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 9 44064 -NCIT:C133448 Clinical Stage I Esophageal Squamous Cell Carcinoma AJCC v8 9 44065 -NCIT:C133449 Clinical Stage II Esophageal Squamous Cell Carcinoma AJCC v8 9 44066 -NCIT:C133450 Clinical Stage III Esophageal Squamous Cell Carcinoma AJCC v8 9 44067 -NCIT:C133451 Clinical Stage IV Esophageal Squamous Cell Carcinoma AJCC v8 9 44068 -NCIT:C133452 Clinical Stage IVA Esophageal Squamous Cell Carcinoma AJCC v8 10 44069 -NCIT:C133453 Clinical Stage IVB Esophageal Squamous Cell Carcinoma AJCC v8 10 44070 -NCIT:C133445 Esophageal Squamous Cell Carcinoma by AJCC v8 Pathologic Stage 8 44071 -NCIT:C133519 Pathologic Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 9 44072 -NCIT:C133521 Pathologic Stage I Esophageal Squamous Cell Carcinoma AJCC v8 9 44073 -NCIT:C133525 Pathologic Stage IA Esophageal Squamous Cell Carcinoma AJCC v8 10 44074 -NCIT:C133530 Pathologic Stage IB Esophageal Squamous Cell Carcinoma AJCC v8 10 44075 -NCIT:C133532 Pathologic Stage II Esophageal Squamous Cell Carcinoma AJCC v8 9 44076 -NCIT:C133534 Pathologic Stage IIA Esophageal Squamous Cell Carcinoma AJCC v8 10 44077 -NCIT:C133535 Pathologic Stage IIB Esophageal Squamous Cell Carcinoma AJCC v8 10 44078 -NCIT:C133536 Pathologic Stage III Esophageal Squamous Cell Carcinoma AJCC v8 9 44079 -NCIT:C133537 Pathologic Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v8 10 44080 -NCIT:C133538 Pathologic Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v8 10 44081 -NCIT:C133539 Pathologic Stage IV Esophageal Squamous Cell Carcinoma AJCC v8 9 44082 -NCIT:C133541 Pathologic Stage IVA Esophageal Squamous Cell Carcinoma AJCC v8 10 44083 -NCIT:C133542 Pathologic Stage IVB Esophageal Squamous Cell Carcinoma AJCC v8 10 44084 -NCIT:C133446 Esophageal Squamous Cell Carcinoma by AJCC v8 Postneoadjuvant Therapy Stage 8 44085 -NCIT:C133454 Postneoadjuvant Therapy Stage I Esophageal Squamous Cell Carcinoma AJCC v8 9 44086 -NCIT:C133455 Postneoadjuvant Therapy Stage II Esophageal Squamous Cell Carcinoma AJCC v8 9 44087 -NCIT:C133456 Postneoadjuvant Therapy Stage III Esophageal Squamous Cell Carcinoma AJCC v8 9 44088 -NCIT:C133457 Postneoadjuvant Therapy Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v8 10 44089 -NCIT:C133458 Postneoadjuvant Therapy Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v8 10 44090 -NCIT:C133459 Postneoadjuvant Therapy Stage IV Esophageal Squamous Cell Carcinoma AJCC v8 9 44091 -NCIT:C133460 Postneoadjuvant Therapy Stage IVA Esophageal Squamous Cell Carcinoma AJCC v8 10 44092 -NCIT:C133461 Postneoadjuvant Therapy Stage IVB Esophageal Squamous Cell Carcinoma AJCC v8 10 44093 -NCIT:C150029 Thoracic Esophagus Squamous Cell Carcinoma 7 44094 -NCIT:C150032 Cervical Esophagus Squamous Cell Carcinoma 7 44095 -NCIT:C150037 Distal Esophagus Squamous Cell Carcinoma 7 44096 -NCIT:C156075 Metastatic Esophageal Squamous Cell Carcinoma 7 44097 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 44098 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 44099 -NCIT:C171606 Refractory Esophageal Squamous Cell Carcinoma 7 44100 -NCIT:C171608 Unresectable Esophageal Squamous Cell Carcinoma 7 44101 -NCIT:C27420 Esophageal Verrucous Carcinoma 7 44102 -NCIT:C27680 Human Papillomavirus-Related Esophageal Squamous Cell Carcinoma 7 44103 -NCIT:C27928 Alcohol-Related Esophageal Squamous Cell Carcinoma 7 44104 -NCIT:C7032 Esophageal Basaloid Carcinoma 7 44105 -NCIT:C8633 Recurrent Esophageal Squamous Cell Carcinoma 7 44106 -NCIT:C95608 Esophageal Spindle Cell Carcinoma 7 44107 -NCIT:C95610 Esophageal Well Differentiated Squamous Cell Carcinoma 7 44108 -NCIT:C179888 Esophageal Carcinoma Cuniculatum 8 44109 -NCIT:C95611 Esophageal Moderately Differentiated Squamous Cell Carcinoma 7 44110 -NCIT:C95612 Esophageal Poorly Differentiated Squamous Cell Carcinoma 7 44111 -NCIT:C4025 Esophageal Adenocarcinoma 6 44112 -NCIT:C133400 Esophageal Adenocarcinoma by AJCC v8 Stage 7 44113 -NCIT:C133401 Esophageal Adenocarcinoma by AJCC v8 Clinical Stage 8 44114 -NCIT:C133402 Clinical Stage 0 Esophageal Adenocarcinoma AJCC v8 9 44115 -NCIT:C133403 Clinical Stage I Esophageal Adenocarcinoma AJCC v8 9 44116 -NCIT:C133404 Clinical Stage II Esophageal Adenocarcinoma AJCC v8 9 44117 -NCIT:C133405 Clinical Stage IIA Esophageal Adenocarcinoma AJCC v8 10 44118 -NCIT:C133406 Clinical Stage IIB Esophageal Adenocarcinoma AJCC v8 10 44119 -NCIT:C133407 Clinical Stage III Esophageal Adenocarcinoma AJCC v8 9 44120 -NCIT:C133408 Clinical Stage IV Esophageal Adenocarcinoma AJCC v8 9 44121 -NCIT:C133409 Clinical Stage IVA Esophageal Adenocarcinoma AJCC v8 10 44122 -NCIT:C133410 Clinical Stage IVB Esophageal Adenocarcinoma AJCC v8 10 44123 -NCIT:C133412 Esophageal Adenocarcinoma by AJCC v8 Pathologic Stage 8 44124 -NCIT:C133413 Pathologic Stage 0 Esophageal Adenocarcinoma AJCC v8 9 44125 -NCIT:C133414 Pathologic Stage I Esophageal Adenocarcinoma AJCC v8 9 44126 -NCIT:C133415 Pathologic Stage IA Esophageal Adenocarcinoma AJCC v8 10 44127 -NCIT:C133416 Pathologic Stage IB Esophageal Adenocarcinoma AJCC v8 10 44128 -NCIT:C133417 Pathologic Stage IC Esophageal Adenocarcinoma AJCC v8 10 44129 -NCIT:C133418 Pathologic Stage II Esophageal Adenocarcinoma AJCC v8 9 44130 -NCIT:C133419 Pathologic Stage IIA Esophageal Adenocarcinoma AJCC v8 10 44131 -NCIT:C133420 Pathologic Stage IIB Esophageal Adenocarcinoma AJCC v8 10 44132 -NCIT:C133421 Pathologic Stage III Esophageal Adenocarcinoma AJCC v8 9 44133 -NCIT:C133422 Pathologic Stage IIIA Esophageal Adenocarcinoma AJCC v8 10 44134 -NCIT:C133423 Pathologic Stage IIIB Esophageal Adenocarcinoma AJCC v8 10 44135 -NCIT:C133424 Pathologic Stage IV Esophageal Adenocarcinoma AJCC v8 9 44136 -NCIT:C133425 Pathologic Stage IVA Esophageal Adenocarcinoma AJCC v8 10 44137 -NCIT:C133426 Pathologic Stage IVB Esophageal Adenocarcinoma AJCC v8 10 44138 -NCIT:C133432 Esophageal Adenocarcinoma by AJCC v8 Postneoadjuvant Therapy Stage 8 44139 -NCIT:C133433 Postneoadjuvant Therapy Stage I Esophageal Adenocarcinoma AJCC v8 9 44140 -NCIT:C133434 Postneoadjuvant Therapy Stage II Esophageal Adenocarcinoma AJCC v8 9 44141 -NCIT:C133435 Postneoadjuvant Therapy Stage III Esophageal Adenocarcinoma AJCC v8 9 44142 -NCIT:C133436 Postneoadjuvant Therapy Stage IIIA Esophageal Adenocarcinoma AJCC v8 10 44143 -NCIT:C133437 Postneoadjuvant Therapy Stage IIIB Esophageal Adenocarcinoma AJCC v8 10 44144 -NCIT:C133438 Postneoadjuvant Therapy Stage IV Esophageal Adenocarcinoma AJCC v8 9 44145 -NCIT:C133439 Postneoadjuvant Therapy Stage IVA Esophageal Adenocarcinoma AJCC v8 10 44146 -NCIT:C133440 Postneoadjuvant Therapy Stage IVB Esophageal Adenocarcinoma AJCC v8 10 44147 -NCIT:C133411 Esophageal Adenocarcinoma by AJCC v7 Stage 7 44148 -NCIT:C8628 Stage II Esophageal Adenocarcinoma AJCC v7 8 44149 -NCIT:C6731 Stage IIA Esophageal Adenocarcinoma AJCC v7 9 44150 -NCIT:C6732 Stage IIB Esophageal Adenocarcinoma AJCC v7 9 44151 -NCIT:C8629 Stage 0 Esophageal Adenocarcinoma AJCC v7 8 44152 -NCIT:C8630 Stage I Esophageal Adenocarcinoma AJCC v7 8 44153 -NCIT:C87782 Stage IA Esophageal Adenocarcinoma AJCC v7 9 44154 -NCIT:C87783 Stage IB Esophageal Adenocarcinoma AJCC v7 9 44155 -NCIT:C8631 Stage III Esophageal Adenocarcinoma AJCC v7 8 44156 -NCIT:C87784 Stage IIIA Esophageal Adenocarcinoma AJCC v7 9 44157 -NCIT:C87785 Stage IIIB Esophageal Adenocarcinoma AJCC v7 9 44158 -NCIT:C87786 Stage IIIC Esophageal Adenocarcinoma AJCC v7 9 44159 -NCIT:C8632 Stage IV Esophageal Adenocarcinoma AJCC v7 8 44160 -NCIT:C150027 Thoracic Esophagus Adenocarcinoma 7 44161 -NCIT:C150031 Cervical Esophagus Adenocarcinoma 7 44162 -NCIT:C152036 Distal Esophagus Adenocarcinoma 7 44163 -NCIT:C172248 Unresectable Distal Esophagus Adenocarcinoma 8 44164 -NCIT:C172249 Metastatic Distal Esophagus Adenocarcinoma 8 44165 -NCIT:C7027 Barrett Adenocarcinoma 8 44166 -NCIT:C156074 Metastatic Esophageal Adenocarcinoma 7 44167 -NCIT:C166120 Oligometastatic Esophageal Adenocarcinoma 8 44168 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 44169 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 44170 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 44171 -NCIT:C172249 Metastatic Distal Esophagus Adenocarcinoma 8 44172 -NCIT:C161906 Esophageal Intramucosal Adenocarcinoma 7 44173 -NCIT:C173162 Unresectable Esophageal Adenocarcinoma 7 44174 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 44175 -NCIT:C172248 Unresectable Distal Esophagus Adenocarcinoma 8 44176 -NCIT:C176892 Refractory Esophageal Adenocarcinoma 7 44177 -NCIT:C8627 Recurrent Esophageal Adenocarcinoma 7 44178 -NCIT:C5342 Esophageal Adenoid Cystic Carcinoma 6 44179 -NCIT:C5343 Esophageal Mucoepidermoid Carcinoma 6 44180 -NCIT:C90500 Esophageal Cancer by AJCC v6 Stage 6 44181 -NCIT:C3637 Stage 0 Esophageal Cancer AJCC v6 7 44182 -NCIT:C9210 Stage I Esophageal Cancer AJCC v6 7 44183 -NCIT:C9211 Stage II Esophageal Cancer AJCC v6 7 44184 -NCIT:C9212 Stage III Esophageal Cancer AJCC v6 7 44185 -NCIT:C9213 Stage IV Esophageal Cancer AJCC v6 7 44186 -NCIT:C91221 Esophageal Cancer by AJCC v7 Stage 6 44187 -NCIT:C133411 Esophageal Adenocarcinoma by AJCC v7 Stage 7 44188 -NCIT:C8628 Stage II Esophageal Adenocarcinoma AJCC v7 8 44189 -NCIT:C6731 Stage IIA Esophageal Adenocarcinoma AJCC v7 9 44190 -NCIT:C6732 Stage IIB Esophageal Adenocarcinoma AJCC v7 9 44191 -NCIT:C8629 Stage 0 Esophageal Adenocarcinoma AJCC v7 8 44192 -NCIT:C8630 Stage I Esophageal Adenocarcinoma AJCC v7 8 44193 -NCIT:C87782 Stage IA Esophageal Adenocarcinoma AJCC v7 9 44194 -NCIT:C87783 Stage IB Esophageal Adenocarcinoma AJCC v7 9 44195 -NCIT:C8631 Stage III Esophageal Adenocarcinoma AJCC v7 8 44196 -NCIT:C87784 Stage IIIA Esophageal Adenocarcinoma AJCC v7 9 44197 -NCIT:C87785 Stage IIIB Esophageal Adenocarcinoma AJCC v7 9 44198 -NCIT:C87786 Stage IIIC Esophageal Adenocarcinoma AJCC v7 9 44199 -NCIT:C8632 Stage IV Esophageal Adenocarcinoma AJCC v7 8 44200 -NCIT:C133442 Esophageal Squamous Cell Carcinoma by AJCC v7 Stage 7 44201 -NCIT:C5019 Stage IV Esophageal Squamous Cell Carcinoma AJCC v7 8 44202 -NCIT:C5020 Stage III Esophageal Squamous Cell Carcinoma AJCC v7 8 44203 -NCIT:C87787 Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v7 9 44204 -NCIT:C87788 Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v7 9 44205 -NCIT:C87789 Stage IIIC Esophageal Squamous Cell Carcinoma AJCC v7 9 44206 -NCIT:C5021 Stage II Esophageal Squamous Cell Carcinoma AJCC v7 8 44207 -NCIT:C6737 Stage IIB Esophageal Squamous Cell Carcinoma AJCC v7 9 44208 -NCIT:C6738 Stage IIA Esophageal Squamous Cell Carcinoma AJCC v7 9 44209 -NCIT:C5022 Stage I Esophageal Squamous Cell Carcinoma AJCC v7 8 44210 -NCIT:C87780 Stage IA Esophageal Squamous Cell Carcinoma AJCC v7 9 44211 -NCIT:C87781 Stage IB Esophageal Squamous Cell Carcinoma AJCC v7 9 44212 -NCIT:C5023 Stage 0 Esophageal Squamous Cell Carcinoma AJCC v7 8 44213 -NCIT:C89771 Stage 0 Esophageal Cancer AJCC v7 7 44214 -NCIT:C5023 Stage 0 Esophageal Squamous Cell Carcinoma AJCC v7 8 44215 -NCIT:C8629 Stage 0 Esophageal Adenocarcinoma AJCC v7 8 44216 -NCIT:C89793 Stage I Esophageal Cancer AJCC v7 7 44217 -NCIT:C115117 Stage IA Esophageal Cancer AJCC v7 8 44218 -NCIT:C87780 Stage IA Esophageal Squamous Cell Carcinoma AJCC v7 9 44219 -NCIT:C87782 Stage IA Esophageal Adenocarcinoma AJCC v7 9 44220 -NCIT:C115118 Stage IB Esophageal Cancer AJCC v7 8 44221 -NCIT:C87781 Stage IB Esophageal Squamous Cell Carcinoma AJCC v7 9 44222 -NCIT:C87783 Stage IB Esophageal Adenocarcinoma AJCC v7 9 44223 -NCIT:C5022 Stage I Esophageal Squamous Cell Carcinoma AJCC v7 8 44224 -NCIT:C87780 Stage IA Esophageal Squamous Cell Carcinoma AJCC v7 9 44225 -NCIT:C87781 Stage IB Esophageal Squamous Cell Carcinoma AJCC v7 9 44226 -NCIT:C8630 Stage I Esophageal Adenocarcinoma AJCC v7 8 44227 -NCIT:C87782 Stage IA Esophageal Adenocarcinoma AJCC v7 9 44228 -NCIT:C87783 Stage IB Esophageal Adenocarcinoma AJCC v7 9 44229 -NCIT:C89794 Stage II Esophageal Cancer AJCC v7 7 44230 -NCIT:C5021 Stage II Esophageal Squamous Cell Carcinoma AJCC v7 8 44231 -NCIT:C6737 Stage IIB Esophageal Squamous Cell Carcinoma AJCC v7 9 44232 -NCIT:C6738 Stage IIA Esophageal Squamous Cell Carcinoma AJCC v7 9 44233 -NCIT:C5691 Stage IIA Esophageal Cancer AJCC v7 8 44234 -NCIT:C6731 Stage IIA Esophageal Adenocarcinoma AJCC v7 9 44235 -NCIT:C6738 Stage IIA Esophageal Squamous Cell Carcinoma AJCC v7 9 44236 -NCIT:C5692 Stage IIB Esophageal Cancer AJCC v7 8 44237 -NCIT:C6732 Stage IIB Esophageal Adenocarcinoma AJCC v7 9 44238 -NCIT:C6737 Stage IIB Esophageal Squamous Cell Carcinoma AJCC v7 9 44239 -NCIT:C8628 Stage II Esophageal Adenocarcinoma AJCC v7 8 44240 -NCIT:C6731 Stage IIA Esophageal Adenocarcinoma AJCC v7 9 44241 -NCIT:C6732 Stage IIB Esophageal Adenocarcinoma AJCC v7 9 44242 -NCIT:C89795 Stage III Esophageal Cancer AJCC v7 7 44243 -NCIT:C115119 Stage IIIA Esophageal Cancer AJCC v7 8 44244 -NCIT:C87784 Stage IIIA Esophageal Adenocarcinoma AJCC v7 9 44245 -NCIT:C87787 Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v7 9 44246 -NCIT:C115120 Stage IIIB Esophageal Cancer AJCC v7 8 44247 -NCIT:C87785 Stage IIIB Esophageal Adenocarcinoma AJCC v7 9 44248 -NCIT:C87788 Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v7 9 44249 -NCIT:C115121 Stage IIIC Esophageal Cancer AJCC v7 8 44250 -NCIT:C87786 Stage IIIC Esophageal Adenocarcinoma AJCC v7 9 44251 -NCIT:C87789 Stage IIIC Esophageal Squamous Cell Carcinoma AJCC v7 9 44252 -NCIT:C5020 Stage III Esophageal Squamous Cell Carcinoma AJCC v7 8 44253 -NCIT:C87787 Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v7 9 44254 -NCIT:C87788 Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v7 9 44255 -NCIT:C87789 Stage IIIC Esophageal Squamous Cell Carcinoma AJCC v7 9 44256 -NCIT:C8631 Stage III Esophageal Adenocarcinoma AJCC v7 8 44257 -NCIT:C87784 Stage IIIA Esophageal Adenocarcinoma AJCC v7 9 44258 -NCIT:C87785 Stage IIIB Esophageal Adenocarcinoma AJCC v7 9 44259 -NCIT:C87786 Stage IIIC Esophageal Adenocarcinoma AJCC v7 9 44260 -NCIT:C89804 Stage IV Esophageal Cancer AJCC v7 7 44261 -NCIT:C5019 Stage IV Esophageal Squamous Cell Carcinoma AJCC v7 8 44262 -NCIT:C8632 Stage IV Esophageal Adenocarcinoma AJCC v7 8 44263 -NCIT:C95619 Esophageal Neuroendocrine Carcinoma 6 44264 -NCIT:C6762 Esophageal Small Cell Neuroendocrine Carcinoma 7 44265 -NCIT:C95620 Esophageal Large Cell Neuroendocrine Carcinoma 7 44266 -NCIT:C95621 Esophageal Mixed Adenoneuroendocrine Carcinoma 6 44267 -NCIT:C5341 Esophageal Sarcoma 5 44268 -NCIT:C5334 Esophageal Leiomyosarcoma 6 44269 -NCIT:C5705 Esophageal Liposarcoma 6 44270 -NCIT:C5706 Esophageal Kaposi Sarcoma 6 44271 -NCIT:C92185 Esophageal Malignant Peripheral Nerve Sheath Tumor 6 44272 -NCIT:C95623 Esophageal Rhabdomyosarcoma 6 44273 -NCIT:C95624 Esophageal Synovial Sarcoma 6 44274 -NCIT:C5687 Esophageal Lymphoma 5 44275 -NCIT:C5688 Esophageal Non-Hodgkin Lymphoma 6 44276 -NCIT:C95625 Esophageal Diffuse Large B-Cell Lymphoma 7 44277 -NCIT:C95626 Esophageal Mucosa-Associated Lymphoid Tissue Lymphoma 7 44278 -NCIT:C5689 Esophageal Hodgkin Lymphoma 6 44279 -NCIT:C5707 Esophageal Melanoma 5 44280 -NCIT:C7479 Metastatic Malignant Neoplasm in the Esophagus 5 44281 -NCIT:C7512 Malignant Esophageal Neoplasm by Anatomic Region 5 44282 -NCIT:C3532 Malignant Neoplasm of the Thoracic Esophagus 6 44283 -NCIT:C150027 Thoracic Esophagus Adenocarcinoma 7 44284 -NCIT:C150029 Thoracic Esophagus Squamous Cell Carcinoma 7 44285 -NCIT:C3534 Malignant Neoplasm of the Middle Third of the Esophagus 7 44286 -NCIT:C4763 Malignant Neoplasm of the Cervical Esophagus 6 44287 -NCIT:C150031 Cervical Esophagus Adenocarcinoma 7 44288 -NCIT:C150032 Cervical Esophagus Squamous Cell Carcinoma 7 44289 -NCIT:C4764 Malignant Neoplasm of the Abdominal Esophagus 6 44290 -NCIT:C7513 Malignant Esophageal Neoplasm by Topographic Region 5 44291 -NCIT:C3533 Malignant Neoplasm of the Upper Third of the Esophagus 6 44292 -NCIT:C4763 Malignant Neoplasm of the Cervical Esophagus 7 44293 -NCIT:C150031 Cervical Esophagus Adenocarcinoma 8 44294 -NCIT:C150032 Cervical Esophagus Squamous Cell Carcinoma 8 44295 -NCIT:C3534 Malignant Neoplasm of the Middle Third of the Esophagus 6 44296 -NCIT:C3535 Malignant Neoplasm of the Lower Third of the Esophagus 6 44297 -NCIT:C150037 Distal Esophagus Squamous Cell Carcinoma 7 44298 -NCIT:C152036 Distal Esophagus Adenocarcinoma 7 44299 -NCIT:C172248 Unresectable Distal Esophagus Adenocarcinoma 8 44300 -NCIT:C172249 Metastatic Distal Esophagus Adenocarcinoma 8 44301 -NCIT:C7027 Barrett Adenocarcinoma 8 44302 -NCIT:C4764 Malignant Neoplasm of the Abdominal Esophagus 7 44303 -NCIT:C8609 Malignant Hepatobiliary Neoplasm 4 44304 -NCIT:C156781 Biliary Tract Carcinoma 5 44305 -NCIT:C156782 Recurrent Biliary Tract Carcinoma 6 44306 -NCIT:C153360 Recurrent Bile Duct Carcinoma 7 44307 -NCIT:C27325 Recurrent Cholangiocarcinoma 8 44308 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 9 44309 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 9 44310 -NCIT:C7893 Recurrent Extrahepatic Bile Duct Carcinoma 8 44311 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 9 44312 -NCIT:C4008 Recurrent Gallbladder Carcinoma 7 44313 -NCIT:C162750 Refractory Biliary Tract Carcinoma 6 44314 -NCIT:C153355 Refractory Bile Duct Carcinoma 7 44315 -NCIT:C158101 Refractory Cholangiocarcinoma 8 44316 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 9 44317 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 9 44318 -NCIT:C175437 Refractory Extrahepatic Bile Duct Carcinoma 8 44319 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 9 44320 -NCIT:C162753 Refractory Gallbladder Carcinoma 7 44321 -NCIT:C162751 Metastatic Biliary Tract Carcinoma 6 44322 -NCIT:C142869 Metastatic Bile Duct Carcinoma 7 44323 -NCIT:C142870 Advanced Bile Duct Carcinoma 8 44324 -NCIT:C162752 Advanced Cholangiocarcinoma 9 44325 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 44326 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 10 44327 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 10 44328 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 9 44329 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 44330 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 8 44331 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 9 44332 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 10 44333 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 10 44334 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 9 44335 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 10 44336 -NCIT:C157623 Metastatic Cholangiocarcinoma 8 44337 -NCIT:C162752 Advanced Cholangiocarcinoma 9 44338 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 44339 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 10 44340 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 10 44341 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 9 44342 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 10 44343 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 10 44344 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 9 44345 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 44346 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 9 44347 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 10 44348 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 10 44349 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 9 44350 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 10 44351 -NCIT:C185071 Metastatic Extrahepatic Bile Duct Carcinoma 8 44352 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 9 44353 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 10 44354 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 44355 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 10 44356 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 9 44357 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 44358 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 9 44359 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 10 44360 -NCIT:C162754 Metastatic Gallbladder Carcinoma 7 44361 -NCIT:C162755 Advanced Gallbladder Carcinoma 8 44362 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 8 44363 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 9 44364 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 7 44365 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 8 44366 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 9 44367 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 10 44368 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 10 44369 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 9 44370 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 10 44371 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 8 44372 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 9 44373 -NCIT:C171331 Advanced Biliary Tract Carcinoma 7 44374 -NCIT:C142870 Advanced Bile Duct Carcinoma 8 44375 -NCIT:C162752 Advanced Cholangiocarcinoma 9 44376 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 44377 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 10 44378 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 10 44379 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 9 44380 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 44381 -NCIT:C162755 Advanced Gallbladder Carcinoma 8 44382 -NCIT:C176042 Unresectable Biliary Tract Carcinoma 6 44383 -NCIT:C171322 Unresectable Bile Duct Carcinoma 7 44384 -NCIT:C27324 Unresectable Cholangiocarcinoma 8 44385 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 9 44386 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 9 44387 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 9 44388 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 9 44389 -NCIT:C7892 Unresectable Extrahepatic Bile Duct Carcinoma 8 44390 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 9 44391 -NCIT:C7890 Unresectable Gallbladder Carcinoma 7 44392 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 8 44393 -NCIT:C189064 Unresectable Gallbladder Adenocarcinoma 8 44394 -NCIT:C27814 Bile Duct Carcinoma 6 44395 -NCIT:C142869 Metastatic Bile Duct Carcinoma 7 44396 -NCIT:C142870 Advanced Bile Duct Carcinoma 8 44397 -NCIT:C162752 Advanced Cholangiocarcinoma 9 44398 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 44399 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 10 44400 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 10 44401 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 9 44402 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 44403 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 8 44404 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 9 44405 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 10 44406 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 10 44407 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 9 44408 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 10 44409 -NCIT:C157623 Metastatic Cholangiocarcinoma 8 44410 -NCIT:C162752 Advanced Cholangiocarcinoma 9 44411 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 44412 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 10 44413 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 10 44414 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 9 44415 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 10 44416 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 10 44417 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 9 44418 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 44419 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 9 44420 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 10 44421 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 10 44422 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 9 44423 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 10 44424 -NCIT:C185071 Metastatic Extrahepatic Bile Duct Carcinoma 8 44425 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 9 44426 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 10 44427 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 44428 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 10 44429 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 9 44430 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 44431 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 9 44432 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 10 44433 -NCIT:C153355 Refractory Bile Duct Carcinoma 7 44434 -NCIT:C158101 Refractory Cholangiocarcinoma 8 44435 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 9 44436 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 9 44437 -NCIT:C175437 Refractory Extrahepatic Bile Duct Carcinoma 8 44438 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 9 44439 -NCIT:C153360 Recurrent Bile Duct Carcinoma 7 44440 -NCIT:C27325 Recurrent Cholangiocarcinoma 8 44441 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 9 44442 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 9 44443 -NCIT:C7893 Recurrent Extrahepatic Bile Duct Carcinoma 8 44444 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 9 44445 -NCIT:C171322 Unresectable Bile Duct Carcinoma 7 44446 -NCIT:C27324 Unresectable Cholangiocarcinoma 8 44447 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 9 44448 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 9 44449 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 9 44450 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 9 44451 -NCIT:C7892 Unresectable Extrahepatic Bile Duct Carcinoma 8 44452 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 9 44453 -NCIT:C27813 Bile Duct Adenocarcinoma 7 44454 -NCIT:C156910 Resectable Bile Duct Adenocarcinoma 8 44455 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 9 44456 -NCIT:C27326 Resectable Cholangiocarcinoma 9 44457 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 10 44458 -NCIT:C4130 Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 8 44459 -NCIT:C96946 Extrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 9 44460 -NCIT:C96947 Intrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 9 44461 -NCIT:C4436 Cholangiocarcinoma 8 44462 -NCIT:C157623 Metastatic Cholangiocarcinoma 9 44463 -NCIT:C162752 Advanced Cholangiocarcinoma 10 44464 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 44465 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 44466 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 44467 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 44468 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 44469 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 44470 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 10 44471 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 44472 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 10 44473 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 44474 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 44475 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 10 44476 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 44477 -NCIT:C158101 Refractory Cholangiocarcinoma 9 44478 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 10 44479 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 44480 -NCIT:C27324 Unresectable Cholangiocarcinoma 9 44481 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 10 44482 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 10 44483 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 10 44484 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 10 44485 -NCIT:C27325 Recurrent Cholangiocarcinoma 9 44486 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 10 44487 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 10 44488 -NCIT:C27326 Resectable Cholangiocarcinoma 9 44489 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 10 44490 -NCIT:C27769 Opisthorchis Viverrini-Related Cholangiocarcinoma 9 44491 -NCIT:C35417 Intrahepatic Cholangiocarcinoma 9 44492 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 10 44493 -NCIT:C134514 Intrahepatic Cholangiocarcinoma by AJCC v7 Stage 10 44494 -NCIT:C88049 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v7 11 44495 -NCIT:C88050 Stage I Intrahepatic Cholangiocarcinoma AJCC v7 11 44496 -NCIT:C88051 Stage II Intrahepatic Cholangiocarcinoma AJCC v7 11 44497 -NCIT:C88052 Stage III Intrahepatic Cholangiocarcinoma AJCC v7 11 44498 -NCIT:C88053 Stage IVA Intrahepatic Cholangiocarcinoma AJCC v7 11 44499 -NCIT:C88054 Stage IVB Intrahepatic Cholangiocarcinoma AJCC v7 11 44500 -NCIT:C134755 Intrahepatic Cholangiocarcinoma by AJCC v8 Stage 10 44501 -NCIT:C134756 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v8 11 44502 -NCIT:C134757 Stage I Intrahepatic Cholangiocarcinoma AJCC v8 11 44503 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 12 44504 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 12 44505 -NCIT:C134760 Stage II Intrahepatic Cholangiocarcinoma AJCC v8 11 44506 -NCIT:C134761 Stage III Intrahepatic Cholangiocarcinoma AJCC v8 11 44507 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 12 44508 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 12 44509 -NCIT:C134764 Stage IV Intrahepatic Cholangiocarcinoma AJCC v8 11 44510 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 10 44511 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 10 44512 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 10 44513 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 44514 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 44515 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 10 44516 -NCIT:C41617 Cholangiolocellular Carcinoma 10 44517 -NCIT:C41618 Mucin-Producing Intrahepatic Cholangiocarcinoma 10 44518 -NCIT:C41619 Signet Ring Cell Intrahepatic Cholangiocarcinoma 10 44519 -NCIT:C41620 Sarcomatoid Intrahepatic Cholangiocarcinoma 10 44520 -NCIT:C43848 Clear Cell Intrahepatic Cholangiocarcinoma 10 44521 -NCIT:C96804 Large Duct Intrahepatic Cholangiocarcinoma 10 44522 -NCIT:C96805 Small Duct Intrahepatic Cholangiocarcinoma 10 44523 -NCIT:C96949 Intrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 10 44524 -NCIT:C36077 Hilar Cholangiocarcinoma 9 44525 -NCIT:C134742 Hilar Cholangiocarcinoma by AJCC v7 Stage 10 44526 -NCIT:C88058 Stage 0 Hilar Cholangiocarcinoma AJCC v7 11 44527 -NCIT:C88059 Stage I Hilar Cholangiocarcinoma AJCC v7 11 44528 -NCIT:C88060 Stage II Hilar Cholangiocarcinoma AJCC v7 11 44529 -NCIT:C88061 Stage IIIA Hilar Cholangiocarcinoma AJCC v7 11 44530 -NCIT:C88062 Stage IIIB Hilar Cholangiocarcinoma AJCC v7 11 44531 -NCIT:C88063 Stage IVA Hilar Cholangiocarcinoma AJCC v7 11 44532 -NCIT:C88064 Stage IVB Hilar Cholangiocarcinoma AJCC v7 11 44533 -NCIT:C134743 Hilar Cholangiocarcinoma by AJCC v8 Stage 10 44534 -NCIT:C134744 Stage 0 Hilar Cholangiocarcinoma AJCC v8 11 44535 -NCIT:C134745 Stage I Hilar Cholangiocarcinoma AJCC v8 11 44536 -NCIT:C134746 Stage II Hilar Cholangiocarcinoma AJCC v8 11 44537 -NCIT:C134747 Stage III Hilar Cholangiocarcinoma AJCC v8 11 44538 -NCIT:C134748 Stage IIIA Hilar Cholangiocarcinoma AJCC v8 12 44539 -NCIT:C134749 Stage IIIB Hilar Cholangiocarcinoma AJCC v8 12 44540 -NCIT:C134750 Stage IIIC Hilar Cholangiocarcinoma AJCC v8 12 44541 -NCIT:C134751 Stage IV Hilar Cholangiocarcinoma AJCC v8 11 44542 -NCIT:C134752 Stage IVA Hilar Cholangiocarcinoma AJCC v8 12 44543 -NCIT:C134753 Stage IVB Hilar Cholangiocarcinoma AJCC v8 12 44544 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 10 44545 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 10 44546 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 44547 -NCIT:C7976 Distal Bile Duct Adenocarcinoma 9 44548 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 10 44549 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 10 44550 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 44551 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 44552 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 10 44553 -NCIT:C8265 Adult Cholangiocarcinoma 9 44554 -NCIT:C7975 Extrahepatic Bile Duct Adenocarcinoma 8 44555 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 9 44556 -NCIT:C5775 Extrahepatic Bile Duct Clear Cell Adenocarcinoma 9 44557 -NCIT:C5776 Extrahepatic Bile Duct Signet Ring Cell Carcinoma 9 44558 -NCIT:C5846 Extrahepatic Bile Duct Mucinous Adenocarcinoma 9 44559 -NCIT:C7976 Distal Bile Duct Adenocarcinoma 9 44560 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 10 44561 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 10 44562 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 44563 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 44564 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 10 44565 -NCIT:C96936 Extrahepatic Bile Duct Adenocarcinoma, Biliary Type 9 44566 -NCIT:C96937 Extrahepatic Bile Duct Adenocarcinoma, Gastric Foveolar Type 9 44567 -NCIT:C96938 Extrahepatic Bile Duct Adenocarcinoma, Intestinal Type 9 44568 -NCIT:C96946 Extrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 9 44569 -NCIT:C96948 Extrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 9 44570 -NCIT:C96810 Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 8 44571 -NCIT:C96948 Extrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 9 44572 -NCIT:C96949 Intrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 9 44573 -NCIT:C3860 Extrahepatic Bile Duct Carcinoma 7 44574 -NCIT:C175437 Refractory Extrahepatic Bile Duct Carcinoma 8 44575 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 9 44576 -NCIT:C185071 Metastatic Extrahepatic Bile Duct Carcinoma 8 44577 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 9 44578 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 10 44579 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 44580 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 10 44581 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 9 44582 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 44583 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 9 44584 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 10 44585 -NCIT:C5777 Extrahepatic Bile Duct Squamous Cell Carcinoma 8 44586 -NCIT:C5778 Extrahepatic Bile Duct Adenosquamous Carcinoma 8 44587 -NCIT:C5780 Extrahepatic Bile Duct Undifferentiated Carcinoma 8 44588 -NCIT:C5862 Extrahepatic Bile Duct Mucoepidermoid Carcinoma 8 44589 -NCIT:C7109 Distal Bile Duct Carcinoma 8 44590 -NCIT:C134810 Distal Bile Duct Cancer by AJCC v7 Stage 9 44591 -NCIT:C88089 Stage 0 Distal Bile Duct Cancer AJCC v7 10 44592 -NCIT:C88090 Stage IA Distal Bile Duct Cancer AJCC v7 10 44593 -NCIT:C88091 Stage IB Distal Bile Duct Cancer AJCC v7 10 44594 -NCIT:C88092 Stage IIA Distal Bile Duct Cancer AJCC v7 10 44595 -NCIT:C88093 Stage IIB Distal Bile Duct Cancer AJCC v7 10 44596 -NCIT:C88094 Stage III Distal Bile Duct Cancer AJCC v7 10 44597 -NCIT:C88095 Stage IV Distal Bile Duct Cancer AJCC v7 10 44598 -NCIT:C134811 Distal Bile Duct Cancer by AJCC v8 Stage 9 44599 -NCIT:C134812 Stage 0 Distal Bile Duct Cancer AJCC v8 10 44600 -NCIT:C134813 Stage I Distal Bile Duct Cancer AJCC v8 10 44601 -NCIT:C134814 Stage II Distal Bile Duct Cancer AJCC v8 10 44602 -NCIT:C134815 Stage IIA Distal Bile Duct Cancer AJCC v8 11 44603 -NCIT:C134816 Stage IIB Distal Bile Duct Cancer AJCC v8 11 44604 -NCIT:C134817 Stage III Distal Bile Duct Cancer AJCC v8 10 44605 -NCIT:C134818 Stage IIIA Distal Bile Duct Cancer AJCC v8 11 44606 -NCIT:C134819 Stage IIIB Distal Bile Duct Cancer AJCC v8 11 44607 -NCIT:C134820 Stage IV Distal Bile Duct Cancer AJCC v8 10 44608 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 9 44609 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 10 44610 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 44611 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 10 44612 -NCIT:C7976 Distal Bile Duct Adenocarcinoma 9 44613 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 10 44614 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 10 44615 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 44616 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 44617 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 10 44618 -NCIT:C7891 Localized Extrahepatic Bile Duct Carcinoma 8 44619 -NCIT:C7892 Unresectable Extrahepatic Bile Duct Carcinoma 8 44620 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 9 44621 -NCIT:C7893 Recurrent Extrahepatic Bile Duct Carcinoma 8 44622 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 9 44623 -NCIT:C7975 Extrahepatic Bile Duct Adenocarcinoma 8 44624 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 9 44625 -NCIT:C5775 Extrahepatic Bile Duct Clear Cell Adenocarcinoma 9 44626 -NCIT:C5776 Extrahepatic Bile Duct Signet Ring Cell Carcinoma 9 44627 -NCIT:C5846 Extrahepatic Bile Duct Mucinous Adenocarcinoma 9 44628 -NCIT:C7976 Distal Bile Duct Adenocarcinoma 9 44629 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 10 44630 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 10 44631 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 44632 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 44633 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 10 44634 -NCIT:C96936 Extrahepatic Bile Duct Adenocarcinoma, Biliary Type 9 44635 -NCIT:C96937 Extrahepatic Bile Duct Adenocarcinoma, Gastric Foveolar Type 9 44636 -NCIT:C96938 Extrahepatic Bile Duct Adenocarcinoma, Intestinal Type 9 44637 -NCIT:C96946 Extrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 9 44638 -NCIT:C96948 Extrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 9 44639 -NCIT:C8640 Resectable Extrahepatic Bile Duct Carcinoma 8 44640 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 9 44641 -NCIT:C96939 Extrahepatic Bile Duct Carcinosarcoma 8 44642 -NCIT:C96956 Extrahepatic Bile Duct Neuroendocrine Carcinoma 8 44643 -NCIT:C5845 Extrahepatic Bile Duct Small Cell Neuroendocrine Carcinoma 9 44644 -NCIT:C96958 Extrahepatic Bile Duct Large Cell Neuroendocrine Carcinoma 9 44645 -NCIT:C96959 Extrahepatic Bile Duct Mixed Adenoneuroendocrine Carcinoma 8 44646 -NCIT:C3844 Gallbladder Carcinoma 6 44647 -NCIT:C134660 Gallbladder Cancer by AJCC v8 Stage 7 44648 -NCIT:C134663 Stage 0 Gallbladder Cancer AJCC v8 8 44649 -NCIT:C134665 Stage I Gallbladder Cancer AJCC v8 8 44650 -NCIT:C134667 Stage II Gallbladder Cancer AJCC v8 8 44651 -NCIT:C134670 Stage IIA Gallbladder Cancer AJCC v8 9 44652 -NCIT:C134671 Stage IIB Gallbladder Cancer AJCC v8 9 44653 -NCIT:C134672 Stage III Gallbladder Cancer AJCC v8 8 44654 -NCIT:C134673 Stage IIIA Gallbladder Cancer AJCC v8 9 44655 -NCIT:C134674 Stage IIIB Gallbladder Cancer AJCC v8 9 44656 -NCIT:C134675 Stage IV Gallbladder Cancer AJCC v8 8 44657 -NCIT:C134676 Stage IVA Gallbladder Cancer AJCC v8 9 44658 -NCIT:C134678 Stage IVB Gallbladder Cancer AJCC v8 9 44659 -NCIT:C162753 Refractory Gallbladder Carcinoma 7 44660 -NCIT:C162754 Metastatic Gallbladder Carcinoma 7 44661 -NCIT:C162755 Advanced Gallbladder Carcinoma 8 44662 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 8 44663 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 9 44664 -NCIT:C175214 Incidental Gallbladder Carcinoma 7 44665 -NCIT:C4008 Recurrent Gallbladder Carcinoma 7 44666 -NCIT:C7356 Gallbladder Adenosquamous Carcinoma 7 44667 -NCIT:C7649 Localized Gallbladder Carcinoma 7 44668 -NCIT:C7890 Unresectable Gallbladder Carcinoma 7 44669 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 8 44670 -NCIT:C189064 Unresectable Gallbladder Adenocarcinoma 8 44671 -NCIT:C90512 Gallbladder Cancer by AJCC v6 Stage 7 44672 -NCIT:C4439 Stage 0 Gallbladder Cancer AJCC v6 and v7 8 44673 -NCIT:C5737 Stage I Gallbladder Cancer AJCC v6 8 44674 -NCIT:C5738 Stage II Gallbladder Cancer AJCC v6 8 44675 -NCIT:C5739 Stage III Gallbladder Cancer AJCC v6 8 44676 -NCIT:C5740 Stage IV Gallbladder Cancer AJCC v6 8 44677 -NCIT:C91229 Gallbladder Cancer by AJCC v7 Stage 7 44678 -NCIT:C4439 Stage 0 Gallbladder Cancer AJCC v6 and v7 8 44679 -NCIT:C90216 Stage I Gallbladder Cancer AJCC v7 8 44680 -NCIT:C90217 Stage II Gallbladder Cancer AJCC v7 8 44681 -NCIT:C90218 Stage III Gallbladder Cancer AJCC v7 8 44682 -NCIT:C88056 Stage IIIA Gallbladder Cancer AJCC v7 9 44683 -NCIT:C88057 Stage IIIB Gallbladder Cancer AJCC v7 9 44684 -NCIT:C90219 Stage IV Gallbladder Cancer AJCC v7 8 44685 -NCIT:C5741 Stage IVA Gallbladder Cancer AJCC v7 9 44686 -NCIT:C5742 Stage IVB Gallbladder Cancer AJCC v7 9 44687 -NCIT:C9166 Gallbladder Adenocarcinoma 7 44688 -NCIT:C189064 Unresectable Gallbladder Adenocarcinoma 8 44689 -NCIT:C43604 Gallbladder Adenocarcinoma, Intestinal-Type 8 44690 -NCIT:C43605 Gallbladder Clear Cell Adenocarcinoma 8 44691 -NCIT:C5743 Gallbladder Intracholecystic Papillary Neoplasm with an Associated Invasive Carcinoma 8 44692 -NCIT:C5744 Gallbladder Mucinous Adenocarcinoma 8 44693 -NCIT:C5745 Gallbladder Signet Ring Cell Carcinoma 8 44694 -NCIT:C9169 Gallbladder Adenocarcinoma with Squamous Metaplasia 8 44695 -NCIT:C96887 Gallbladder Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 8 44696 -NCIT:C96890 Gallbladder Hepatoid Adenocarcinoma 8 44697 -NCIT:C96891 Gallbladder Cribriform Carcinoma 8 44698 -NCIT:C96915 Gallbladder Adenocarcinoma, Biliary Type 8 44699 -NCIT:C96916 Gallbladder Adenocarcinoma, Gastric Foveolar Type 8 44700 -NCIT:C9167 Gallbladder Undifferentiated Carcinoma 7 44701 -NCIT:C5838 Gallbladder Undifferentiated Carcinoma, Spindle and Giant Cell Type 8 44702 -NCIT:C9170 Gallbladder Squamous Cell Carcinoma 7 44703 -NCIT:C96888 Gallbladder Carcinosarcoma 7 44704 -NCIT:C96919 Gallbladder Neuroendocrine Carcinoma 7 44705 -NCIT:C6763 Gallbladder Small Cell Neuroendocrine Carcinoma 8 44706 -NCIT:C96921 Gallbladder Large Cell Neuroendocrine Carcinoma 8 44707 -NCIT:C96927 Gallbladder Mixed Adenoneuroendocrine Carcinoma 7 44708 -NCIT:C96928 Gallbladder Goblet Cell Carcinoid 8 44709 -NCIT:C67493 High-Grade Biliary Intraepithelial Neoplasia 6 44710 -NCIT:C190593 Malignant Liver Neoplasm 5 44711 -NCIT:C34803 Primary Malignant Liver Neoplasm 6 44712 -NCIT:C185042 Liver Plasmacytoma 7 44713 -NCIT:C4437 Liver Sarcoma 7 44714 -NCIT:C27096 Liver Embryonal Sarcoma 8 44715 -NCIT:C189934 Childhood Liver Embryonal Sarcoma 9 44716 -NCIT:C189935 Adult Liver Embryonal Sarcoma 9 44717 -NCIT:C4438 Liver Angiosarcoma 8 44718 -NCIT:C190020 Childhood Liver Angiosarcoma 9 44719 -NCIT:C5756 Liver Leiomyosarcoma 8 44720 -NCIT:C5832 Liver Fibrosarcoma 8 44721 -NCIT:C5833 Liver Extraskeletal Osteosarcoma 8 44722 -NCIT:C5834 Liver Rhabdomyosarcoma 8 44723 -NCIT:C96844 Liver Kaposi Sarcoma 8 44724 -NCIT:C96845 Liver Synovial Sarcoma 8 44725 -NCIT:C4949 Liver Lymphoma 7 44726 -NCIT:C5766 Liver Non-Hodgkin Lymphoma 8 44727 -NCIT:C5768 Liver Mucosa-Associated Lymphoid Tissue Lymphoma 9 44728 -NCIT:C8459 Hepatosplenic T-Cell Lymphoma 9 44729 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 10 44730 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 10 44731 -NCIT:C96843 Liver Diffuse Large B-Cell Lymphoma 9 44732 -NCIT:C7927 Liver and Intrahepatic Bile Duct Carcinoma 7 44733 -NCIT:C118630 Liver Adenosquamous Carcinoma 8 44734 -NCIT:C134604 Intrahepatic Bile Duct Cancer by AJCC v8 Stage 8 44735 -NCIT:C134609 Stage 0 Intrahepatic Bile Duct Cancer AJCC v8 9 44736 -NCIT:C134756 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v8 10 44737 -NCIT:C134610 Stage I Intrahepatic Bile Duct Cancer AJCC v8 9 44738 -NCIT:C134611 Stage IA Intrahepatic Bile Duct Cancer AJCC v8 10 44739 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 11 44740 -NCIT:C134612 Stage IB Intrahepatic Bile Duct Cancer AJCC v8 10 44741 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 11 44742 -NCIT:C134757 Stage I Intrahepatic Cholangiocarcinoma AJCC v8 10 44743 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 11 44744 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 11 44745 -NCIT:C134614 Stage II Intrahepatic Bile Duct Cancer AJCC v8 9 44746 -NCIT:C134760 Stage II Intrahepatic Cholangiocarcinoma AJCC v8 10 44747 -NCIT:C134615 Stage III Intrahepatic Bile Duct Cancer AJCC v8 9 44748 -NCIT:C134616 Stage IIIA Intrahepatic Bile Duct Cancer AJCC v8 10 44749 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 11 44750 -NCIT:C134618 Stage IIIB Intrahepatic Bile Duct Cancer AJCC v8 10 44751 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 11 44752 -NCIT:C134761 Stage III Intrahepatic Cholangiocarcinoma AJCC v8 10 44753 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 11 44754 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 11 44755 -NCIT:C134619 Stage IV Intrahepatic Bile Duct Cancer AJCC v8 9 44756 -NCIT:C134764 Stage IV Intrahepatic Cholangiocarcinoma AJCC v8 10 44757 -NCIT:C134755 Intrahepatic Cholangiocarcinoma by AJCC v8 Stage 9 44758 -NCIT:C134756 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v8 10 44759 -NCIT:C134757 Stage I Intrahepatic Cholangiocarcinoma AJCC v8 10 44760 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 11 44761 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 11 44762 -NCIT:C134760 Stage II Intrahepatic Cholangiocarcinoma AJCC v8 10 44763 -NCIT:C134761 Stage III Intrahepatic Cholangiocarcinoma AJCC v8 10 44764 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 11 44765 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 11 44766 -NCIT:C134764 Stage IV Intrahepatic Cholangiocarcinoma AJCC v8 10 44767 -NCIT:C153352 Refractory Liver Carcinoma 8 44768 -NCIT:C162450 Refractory Hepatocellular Carcinoma 9 44769 -NCIT:C188887 Refractory Fibrolamellar Carcinoma 10 44770 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 9 44771 -NCIT:C154088 Metastatic Liver Carcinoma 8 44772 -NCIT:C154091 Metastatic Hepatocellular Carcinoma 9 44773 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 10 44774 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 11 44775 -NCIT:C167336 Advanced Hepatocellular Carcinoma 10 44776 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 11 44777 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 11 44778 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 10 44779 -NCIT:C171298 Locally Advanced Liver Carcinoma 9 44780 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 10 44781 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 10 44782 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 9 44783 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 10 44784 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 10 44785 -NCIT:C165171 Unresectable Liver and Intrahepatic Bile Duct Carcinoma 8 44786 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 9 44787 -NCIT:C27345 Unresectable Hepatocellular Carcinoma 9 44788 -NCIT:C162602 Unresectable Fibrolamellar Carcinoma 10 44789 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 10 44790 -NCIT:C7878 Localized Unresectable Adult Liver Carcinoma 9 44791 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 10 44792 -NCIT:C165293 Resectable Liver and Intrahepatic Bile Duct Carcinoma 8 44793 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 9 44794 -NCIT:C7691 Resectable Hepatocellular Carcinoma 9 44795 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 10 44796 -NCIT:C7877 Localized Resectable Adult Liver Carcinoma 9 44797 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 10 44798 -NCIT:C172718 Liver Mixed Adenoneuroendocrine Carcinoma 8 44799 -NCIT:C3099 Hepatocellular Carcinoma 8 44800 -NCIT:C115132 Hepatocellular Carcinoma by BCLC Stage 9 44801 -NCIT:C115133 BCLC Stage 0 Hepatocellular Carcinoma 10 44802 -NCIT:C115139 BCLC Stage 0 Adult Hepatocellular Carcinoma 11 44803 -NCIT:C115135 BCLC Stage A Hepatocellular Carcinoma 10 44804 -NCIT:C115140 BCLC Stage A Adult Hepatocellular Carcinoma 11 44805 -NCIT:C115136 BCLC Stage B Hepatocellular Carcinoma 10 44806 -NCIT:C115141 BCLC Stage B Adult Hepatocellular Carcinoma 11 44807 -NCIT:C115137 BCLC Stage C Hepatocellular Carcinoma 10 44808 -NCIT:C115143 BCLC Stage C Adult Hepatocellular Carcinoma 11 44809 -NCIT:C115138 BCLC Stage D Hepatocellular Carcinoma 10 44810 -NCIT:C115144 BCLC Stage D Adult Hepatocellular Carcinoma 11 44811 -NCIT:C134515 Hepatocellular Carcinoma by AJCC v8 Stage 9 44812 -NCIT:C134516 Stage I Hepatocellular Carcinoma AJCC v8 10 44813 -NCIT:C134517 Stage IA Hepatocellular Carcinoma AJCC v8 11 44814 -NCIT:C134518 Stage IB Hepatocellular Carcinoma AJCC v8 11 44815 -NCIT:C134519 Stage II Hepatocellular Carcinoma AJCC v8 10 44816 -NCIT:C134520 Stage III Hepatocellular Carcinoma AJCC v8 10 44817 -NCIT:C134521 Stage IIIA Hepatocellular Carcinoma AJCC v8 11 44818 -NCIT:C134522 Stage IIIB Hepatocellular Carcinoma AJCC v8 11 44819 -NCIT:C134523 Stage IV Hepatocellular Carcinoma AJCC v8 10 44820 -NCIT:C134524 Stage IVA Hepatocellular Carcinoma AJCC v8 11 44821 -NCIT:C134525 Stage IVB Hepatocellular Carcinoma AJCC v8 11 44822 -NCIT:C154091 Metastatic Hepatocellular Carcinoma 9 44823 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 10 44824 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 11 44825 -NCIT:C167336 Advanced Hepatocellular Carcinoma 10 44826 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 11 44827 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 11 44828 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 10 44829 -NCIT:C162450 Refractory Hepatocellular Carcinoma 9 44830 -NCIT:C188887 Refractory Fibrolamellar Carcinoma 10 44831 -NCIT:C172709 Steatohepatitic Hepatocellular Carcinoma 9 44832 -NCIT:C27924 Alcohol-Related Hepatocellular Carcinoma 10 44833 -NCIT:C172710 Macrotrabecular Massive Hepatocellular Carcinoma 9 44834 -NCIT:C172712 Chromophobe Hepatocellular Carcinoma 9 44835 -NCIT:C172713 Neutrophil-Rich Hepatocellular Carcinoma 9 44836 -NCIT:C172714 Small Hepatocellular Carcinoma 9 44837 -NCIT:C172716 Small Progressed Hepatocellular Carcinoma 10 44838 -NCIT:C96772 Early Hepatocellular Carcinoma 10 44839 -NCIT:C27345 Unresectable Hepatocellular Carcinoma 9 44840 -NCIT:C162602 Unresectable Fibrolamellar Carcinoma 10 44841 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 10 44842 -NCIT:C27388 Scirrhous Hepatocellular Carcinoma 9 44843 -NCIT:C27635 Transplant-Related Hepatocellular Carcinoma 9 44844 -NCIT:C27686 Hepatitis Virus-Related Hepatocellular Carcinoma 9 44845 -NCIT:C27687 Hepatitis B Virus-Related Hepatocellular Carcinoma 10 44846 -NCIT:C27688 Hepatitis C Virus-Related Hepatocellular Carcinoma 10 44847 -NCIT:C27922 Aflatoxins-Related Hepatocellular Carcinoma 9 44848 -NCIT:C4131 Fibrolamellar Carcinoma 9 44849 -NCIT:C114992 Adult Fibrolamellar Carcinoma 10 44850 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 10 44851 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 11 44852 -NCIT:C154082 Recurrent Fibrolamellar Carcinoma 10 44853 -NCIT:C162602 Unresectable Fibrolamellar Carcinoma 10 44854 -NCIT:C188887 Refractory Fibrolamellar Carcinoma 10 44855 -NCIT:C189932 Childhood Fibrolamellar Carcinoma 10 44856 -NCIT:C43625 Pleomorphic Hepatocellular Carcinoma 9 44857 -NCIT:C114993 Adult Pleomorphic Hepatocellular Carcinoma 10 44858 -NCIT:C43627 Sarcomatoid Hepatocellular Carcinoma 9 44859 -NCIT:C5754 Clear Cell Hepatocellular Carcinoma 9 44860 -NCIT:C7691 Resectable Hepatocellular Carcinoma 9 44861 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 10 44862 -NCIT:C7955 Childhood Hepatocellular Carcinoma 9 44863 -NCIT:C189932 Childhood Fibrolamellar Carcinoma 10 44864 -NCIT:C5708 Stage III Childhood Hepatocellular Carcinoma AJCC v7 10 44865 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 10 44866 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 10 44867 -NCIT:C7838 Stage IV Childhood Hepatocellular Carcinoma AJCC v7 10 44868 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 10 44869 -NCIT:C7956 Adult Hepatocellular Carcinoma 9 44870 -NCIT:C114992 Adult Fibrolamellar Carcinoma 10 44871 -NCIT:C114993 Adult Pleomorphic Hepatocellular Carcinoma 10 44872 -NCIT:C115139 BCLC Stage 0 Adult Hepatocellular Carcinoma 10 44873 -NCIT:C115140 BCLC Stage A Adult Hepatocellular Carcinoma 10 44874 -NCIT:C115141 BCLC Stage B Adult Hepatocellular Carcinoma 10 44875 -NCIT:C115143 BCLC Stage C Adult Hepatocellular Carcinoma 10 44876 -NCIT:C115144 BCLC Stage D Adult Hepatocellular Carcinoma 10 44877 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 10 44878 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 10 44879 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 10 44880 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 10 44881 -NCIT:C90510 Hepatocellular Carcinoma by AJCC v6 Stage 9 44882 -NCIT:C5758 Stage I Hepatocellular Carcinoma AJCC v6 and v7 10 44883 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 11 44884 -NCIT:C5759 Stage II Hepatocellular Carcinoma AJCC v6 and v7 10 44885 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 11 44886 -NCIT:C5760 Stage III Hepatocellular Carcinoma AJCC v6 10 44887 -NCIT:C5763 Stage IV Hepatocellular Carcinoma AJCC v6 10 44888 -NCIT:C91228 Hepatocellular Carcinoma by AJCC v7 Stage 9 44889 -NCIT:C5758 Stage I Hepatocellular Carcinoma AJCC v6 and v7 10 44890 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 11 44891 -NCIT:C5759 Stage II Hepatocellular Carcinoma AJCC v6 and v7 10 44892 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 11 44893 -NCIT:C90180 Stage III Hepatocellular Carcinoma AJCC v7 10 44894 -NCIT:C5708 Stage III Childhood Hepatocellular Carcinoma AJCC v7 11 44895 -NCIT:C5761 Stage IIIA Hepatocellular Carcinoma AJCC v7 11 44896 -NCIT:C5762 Stage IIIB Hepatocellular Carcinoma AJCC v7 11 44897 -NCIT:C88044 Stage IIIC Hepatocellular Carcinoma AJCC v7 11 44898 -NCIT:C90181 Stage IV Hepatocellular Carcinoma AJCC v7 10 44899 -NCIT:C5764 Stage IVA Hepatocellular Carcinoma AJCC v7 11 44900 -NCIT:C5765 Stage IVB Hepatocellular Carcinoma AJCC v7 11 44901 -NCIT:C7838 Stage IV Childhood Hepatocellular Carcinoma AJCC v7 11 44902 -NCIT:C9264 Recurrent Hepatocellular Carcinoma 9 44903 -NCIT:C154082 Recurrent Fibrolamellar Carcinoma 10 44904 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 10 44905 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 10 44906 -NCIT:C96788 Lymphocyte-Rich Hepatocellular Carcinoma 9 44907 -NCIT:C96789 Well Differentiated Hepatocellular Carcinoma 9 44908 -NCIT:C96790 Moderately Differentiated Hepatocellular Carcinoma 9 44909 -NCIT:C96791 Poorly Differentiated Hepatocellular Carcinoma 9 44910 -NCIT:C35417 Intrahepatic Cholangiocarcinoma 8 44911 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 9 44912 -NCIT:C134514 Intrahepatic Cholangiocarcinoma by AJCC v7 Stage 9 44913 -NCIT:C88049 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v7 10 44914 -NCIT:C88050 Stage I Intrahepatic Cholangiocarcinoma AJCC v7 10 44915 -NCIT:C88051 Stage II Intrahepatic Cholangiocarcinoma AJCC v7 10 44916 -NCIT:C88052 Stage III Intrahepatic Cholangiocarcinoma AJCC v7 10 44917 -NCIT:C88053 Stage IVA Intrahepatic Cholangiocarcinoma AJCC v7 10 44918 -NCIT:C88054 Stage IVB Intrahepatic Cholangiocarcinoma AJCC v7 10 44919 -NCIT:C134755 Intrahepatic Cholangiocarcinoma by AJCC v8 Stage 9 44920 -NCIT:C134756 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v8 10 44921 -NCIT:C134757 Stage I Intrahepatic Cholangiocarcinoma AJCC v8 10 44922 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 11 44923 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 11 44924 -NCIT:C134760 Stage II Intrahepatic Cholangiocarcinoma AJCC v8 10 44925 -NCIT:C134761 Stage III Intrahepatic Cholangiocarcinoma AJCC v8 10 44926 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 11 44927 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 11 44928 -NCIT:C134764 Stage IV Intrahepatic Cholangiocarcinoma AJCC v8 10 44929 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 9 44930 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 9 44931 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 9 44932 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 10 44933 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 10 44934 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 9 44935 -NCIT:C41617 Cholangiolocellular Carcinoma 9 44936 -NCIT:C41618 Mucin-Producing Intrahepatic Cholangiocarcinoma 9 44937 -NCIT:C41619 Signet Ring Cell Intrahepatic Cholangiocarcinoma 9 44938 -NCIT:C41620 Sarcomatoid Intrahepatic Cholangiocarcinoma 9 44939 -NCIT:C43848 Clear Cell Intrahepatic Cholangiocarcinoma 9 44940 -NCIT:C96804 Large Duct Intrahepatic Cholangiocarcinoma 9 44941 -NCIT:C96805 Small Duct Intrahepatic Cholangiocarcinoma 9 44942 -NCIT:C96949 Intrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 9 44943 -NCIT:C3828 Combined Hepatocellular Carcinoma and Cholangiocarcinoma 8 44944 -NCIT:C114987 Adult Combined Hepatocellular Carcinoma and Cholangiocarcinoma 9 44945 -NCIT:C7110 Recurrent Liver Carcinoma 8 44946 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 9 44947 -NCIT:C7880 Recurrent Adult Liver Carcinoma 9 44948 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 10 44949 -NCIT:C9264 Recurrent Hepatocellular Carcinoma 9 44950 -NCIT:C154082 Recurrent Fibrolamellar Carcinoma 10 44951 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 10 44952 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 10 44953 -NCIT:C7116 Stage I Liver Cancer 8 44954 -NCIT:C134516 Stage I Hepatocellular Carcinoma AJCC v8 9 44955 -NCIT:C134517 Stage IA Hepatocellular Carcinoma AJCC v8 10 44956 -NCIT:C134518 Stage IB Hepatocellular Carcinoma AJCC v8 10 44957 -NCIT:C134610 Stage I Intrahepatic Bile Duct Cancer AJCC v8 9 44958 -NCIT:C134611 Stage IA Intrahepatic Bile Duct Cancer AJCC v8 10 44959 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 11 44960 -NCIT:C134612 Stage IB Intrahepatic Bile Duct Cancer AJCC v8 10 44961 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 11 44962 -NCIT:C134757 Stage I Intrahepatic Cholangiocarcinoma AJCC v8 10 44963 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 11 44964 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 11 44965 -NCIT:C5758 Stage I Hepatocellular Carcinoma AJCC v6 and v7 9 44966 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 10 44967 -NCIT:C88050 Stage I Intrahepatic Cholangiocarcinoma AJCC v7 9 44968 -NCIT:C94775 Stage I Adult Liver Cancer AJCC v7 9 44969 -NCIT:C7117 Stage II Liver Cancer 8 44970 -NCIT:C134519 Stage II Hepatocellular Carcinoma AJCC v8 9 44971 -NCIT:C134614 Stage II Intrahepatic Bile Duct Cancer AJCC v8 9 44972 -NCIT:C134760 Stage II Intrahepatic Cholangiocarcinoma AJCC v8 10 44973 -NCIT:C5759 Stage II Hepatocellular Carcinoma AJCC v6 and v7 9 44974 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 10 44975 -NCIT:C88051 Stage II Intrahepatic Cholangiocarcinoma AJCC v7 9 44976 -NCIT:C94776 Stage II Adult Liver Cancer AJCC v7 9 44977 -NCIT:C7118 Stage III Liver Cancer 8 44978 -NCIT:C134520 Stage III Hepatocellular Carcinoma AJCC v8 9 44979 -NCIT:C134521 Stage IIIA Hepatocellular Carcinoma AJCC v8 10 44980 -NCIT:C134522 Stage IIIB Hepatocellular Carcinoma AJCC v8 10 44981 -NCIT:C134615 Stage III Intrahepatic Bile Duct Cancer AJCC v8 9 44982 -NCIT:C134616 Stage IIIA Intrahepatic Bile Duct Cancer AJCC v8 10 44983 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 11 44984 -NCIT:C134618 Stage IIIB Intrahepatic Bile Duct Cancer AJCC v8 10 44985 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 11 44986 -NCIT:C134761 Stage III Intrahepatic Cholangiocarcinoma AJCC v8 10 44987 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 11 44988 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 11 44989 -NCIT:C5760 Stage III Hepatocellular Carcinoma AJCC v6 9 44990 -NCIT:C88052 Stage III Intrahepatic Cholangiocarcinoma AJCC v7 9 44991 -NCIT:C90180 Stage III Hepatocellular Carcinoma AJCC v7 9 44992 -NCIT:C5708 Stage III Childhood Hepatocellular Carcinoma AJCC v7 10 44993 -NCIT:C5761 Stage IIIA Hepatocellular Carcinoma AJCC v7 10 44994 -NCIT:C5762 Stage IIIB Hepatocellular Carcinoma AJCC v7 10 44995 -NCIT:C88044 Stage IIIC Hepatocellular Carcinoma AJCC v7 10 44996 -NCIT:C94777 Stage III Adult Liver Cancer AJCC v7 9 44997 -NCIT:C94779 Stage IIIA Adult Liver Cancer AJCC v7 10 44998 -NCIT:C94780 Stage IIIB Adult Liver Cancer AJCC v7 10 44999 -NCIT:C94781 Stage IIIC Adult Liver Cancer AJCC v7 10 45000 -NCIT:C7121 Stage IV Liver Cancer 8 45001 -NCIT:C134523 Stage IV Hepatocellular Carcinoma AJCC v8 9 45002 -NCIT:C134524 Stage IVA Hepatocellular Carcinoma AJCC v8 10 45003 -NCIT:C134525 Stage IVB Hepatocellular Carcinoma AJCC v8 10 45004 -NCIT:C134619 Stage IV Intrahepatic Bile Duct Cancer AJCC v8 9 45005 -NCIT:C134764 Stage IV Intrahepatic Cholangiocarcinoma AJCC v8 10 45006 -NCIT:C5763 Stage IV Hepatocellular Carcinoma AJCC v6 9 45007 -NCIT:C7122 Stage IVA Liver Cancer 9 45008 -NCIT:C134524 Stage IVA Hepatocellular Carcinoma AJCC v8 10 45009 -NCIT:C5764 Stage IVA Hepatocellular Carcinoma AJCC v7 10 45010 -NCIT:C88053 Stage IVA Intrahepatic Cholangiocarcinoma AJCC v7 10 45011 -NCIT:C7123 Stage IVB Liver Cancer 9 45012 -NCIT:C134525 Stage IVB Hepatocellular Carcinoma AJCC v8 10 45013 -NCIT:C5765 Stage IVB Hepatocellular Carcinoma AJCC v7 10 45014 -NCIT:C88054 Stage IVB Intrahepatic Cholangiocarcinoma AJCC v7 10 45015 -NCIT:C90181 Stage IV Hepatocellular Carcinoma AJCC v7 9 45016 -NCIT:C5764 Stage IVA Hepatocellular Carcinoma AJCC v7 10 45017 -NCIT:C5765 Stage IVB Hepatocellular Carcinoma AJCC v7 10 45018 -NCIT:C7838 Stage IV Childhood Hepatocellular Carcinoma AJCC v7 10 45019 -NCIT:C94782 Stage IV Adult Liver Cancer AJCC v7 9 45020 -NCIT:C7711 Adult Liver Carcinoma 8 45021 -NCIT:C114987 Adult Combined Hepatocellular Carcinoma and Cholangiocarcinoma 9 45022 -NCIT:C7877 Localized Resectable Adult Liver Carcinoma 9 45023 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 10 45024 -NCIT:C7878 Localized Unresectable Adult Liver Carcinoma 9 45025 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 10 45026 -NCIT:C7880 Recurrent Adult Liver Carcinoma 9 45027 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 10 45028 -NCIT:C7956 Adult Hepatocellular Carcinoma 9 45029 -NCIT:C114992 Adult Fibrolamellar Carcinoma 10 45030 -NCIT:C114993 Adult Pleomorphic Hepatocellular Carcinoma 10 45031 -NCIT:C115139 BCLC Stage 0 Adult Hepatocellular Carcinoma 10 45032 -NCIT:C115140 BCLC Stage A Adult Hepatocellular Carcinoma 10 45033 -NCIT:C115141 BCLC Stage B Adult Hepatocellular Carcinoma 10 45034 -NCIT:C115143 BCLC Stage C Adult Hepatocellular Carcinoma 10 45035 -NCIT:C115144 BCLC Stage D Adult Hepatocellular Carcinoma 10 45036 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 10 45037 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 10 45038 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 10 45039 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 10 45040 -NCIT:C94775 Stage I Adult Liver Cancer AJCC v7 9 45041 -NCIT:C94776 Stage II Adult Liver Cancer AJCC v7 9 45042 -NCIT:C94777 Stage III Adult Liver Cancer AJCC v7 9 45043 -NCIT:C94779 Stage IIIA Adult Liver Cancer AJCC v7 10 45044 -NCIT:C94780 Stage IIIB Adult Liver Cancer AJCC v7 10 45045 -NCIT:C94781 Stage IIIC Adult Liver Cancer AJCC v7 10 45046 -NCIT:C94782 Stage IV Adult Liver Cancer AJCC v7 9 45047 -NCIT:C96787 Liver Neuroendocrine Carcinoma 8 45048 -NCIT:C172722 Liver Large Cell Neuroendocrine Carcinoma 9 45049 -NCIT:C172725 Liver Small Cell Neuroendocrine Carcinoma 9 45050 -NCIT:C96792 Liver Undifferentiated Carcinoma 8 45051 -NCIT:C96848 Liver Carcinosarcoma 8 45052 -NCIT:C96947 Intrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 8 45053 -NCIT:C96846 Liver Epithelioid Hemangioendothelioma 7 45054 -NCIT:C96847 Extrarenal Rhabdoid Tumor of the Liver 7 45055 -NCIT:C96851 Liver Yolk Sac Tumor 7 45056 -NCIT:C35648 Unresectable Malignant Liver Neoplasm 6 45057 -NCIT:C165171 Unresectable Liver and Intrahepatic Bile Duct Carcinoma 7 45058 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 8 45059 -NCIT:C27345 Unresectable Hepatocellular Carcinoma 8 45060 -NCIT:C162602 Unresectable Fibrolamellar Carcinoma 9 45061 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 9 45062 -NCIT:C7878 Localized Unresectable Adult Liver Carcinoma 8 45063 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 9 45064 -NCIT:C8641 Unresectable Hepatoblastoma 7 45065 -NCIT:C4758 Metastatic Malignant Neoplasm in the Liver 6 45066 -NCIT:C150130 Uveal Melanoma Metastatic in the Liver 7 45067 -NCIT:C185152 Extramedullary Disease in Plasma Cell Myeloma Involving the Liver 7 45068 -NCIT:C96767 Metastatic Carcinoma in the Liver 7 45069 -NCIT:C157366 Colorectal Carcinoma Metastatic in the Liver 8 45070 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 9 45071 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 9 45072 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 9 45073 -NCIT:C36302 Breast Carcinoma Metastatic in the Liver 8 45074 -NCIT:C36306 Lung Carcinoma Metastatic in the Liver 8 45075 -NCIT:C7115 Malignant Liver Non-Epithelial Neoplasm 6 45076 -NCIT:C185042 Liver Plasmacytoma 7 45077 -NCIT:C4437 Liver Sarcoma 7 45078 -NCIT:C27096 Liver Embryonal Sarcoma 8 45079 -NCIT:C189934 Childhood Liver Embryonal Sarcoma 9 45080 -NCIT:C189935 Adult Liver Embryonal Sarcoma 9 45081 -NCIT:C4438 Liver Angiosarcoma 8 45082 -NCIT:C190020 Childhood Liver Angiosarcoma 9 45083 -NCIT:C5756 Liver Leiomyosarcoma 8 45084 -NCIT:C5832 Liver Fibrosarcoma 8 45085 -NCIT:C5833 Liver Extraskeletal Osteosarcoma 8 45086 -NCIT:C5834 Liver Rhabdomyosarcoma 8 45087 -NCIT:C96844 Liver Kaposi Sarcoma 8 45088 -NCIT:C96845 Liver Synovial Sarcoma 8 45089 -NCIT:C4949 Liver Lymphoma 7 45090 -NCIT:C5766 Liver Non-Hodgkin Lymphoma 8 45091 -NCIT:C5768 Liver Mucosa-Associated Lymphoid Tissue Lymphoma 9 45092 -NCIT:C8459 Hepatosplenic T-Cell Lymphoma 9 45093 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 10 45094 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 10 45095 -NCIT:C96843 Liver Diffuse Large B-Cell Lymphoma 9 45096 -NCIT:C96846 Liver Epithelioid Hemangioendothelioma 7 45097 -NCIT:C96847 Extrarenal Rhabdoid Tumor of the Liver 7 45098 -NCIT:C96851 Liver Yolk Sac Tumor 7 45099 -NCIT:C7692 Resectable Malignant Liver Neoplasm 6 45100 -NCIT:C165293 Resectable Liver and Intrahepatic Bile Duct Carcinoma 7 45101 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 8 45102 -NCIT:C7691 Resectable Hepatocellular Carcinoma 8 45103 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 9 45104 -NCIT:C7877 Localized Resectable Adult Liver Carcinoma 8 45105 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 9 45106 -NCIT:C8642 Resectable Hepatoblastoma 7 45107 -NCIT:C7708 Childhood Malignant Liver Neoplasm 6 45108 -NCIT:C189934 Childhood Liver Embryonal Sarcoma 7 45109 -NCIT:C190020 Childhood Liver Angiosarcoma 7 45110 -NCIT:C3728 Hepatoblastoma 7 45111 -NCIT:C142854 Refractory Hepatoblastoma 8 45112 -NCIT:C161838 Hepatocellular Malignant Neoplasm, Not Otherwise Specified 8 45113 -NCIT:C189923 Epithelial Hepatoblastoma 8 45114 -NCIT:C189924 Epithelial Hepatoblastoma with Pleomorphic Pattern 9 45115 -NCIT:C7093 Hepatoblastoma with Pure Fetal Epithelial Differentiation 9 45116 -NCIT:C7094 Hepatoblastoma with Combined Fetal and Embryonal Epithelial Differentiation 9 45117 -NCIT:C7095 Macrotrabecular Hepatoblastoma 9 45118 -NCIT:C7096 Small Cell Undifferentiated Hepatoblastoma 9 45119 -NCIT:C189927 Hepatoblastoma by PRETEXT Stage 8 45120 -NCIT:C7139 PRETEXT Stage 1 Hepatoblastoma 9 45121 -NCIT:C7140 PRETEXT Stage 2 Hepatoblastoma 9 45122 -NCIT:C7141 PRETEXT Stage 3 Hepatoblastoma 9 45123 -NCIT:C7142 PRETEXT Stage 4 Hepatoblastoma 9 45124 -NCIT:C189929 Hepatoblastoma by Postsurgical Stage 8 45125 -NCIT:C7143 Postsurgical Stage IV Hepatoblastoma 9 45126 -NCIT:C7144 Postsurgical Stage III Hepatoblastoma 9 45127 -NCIT:C7145 Postsurgical Stage II Hepatoblastoma 9 45128 -NCIT:C7146 Postsurgical Stage I Hepatoblastoma 9 45129 -NCIT:C7097 Mixed Epithelial and Mesenchymal Hepatoblastoma 8 45130 -NCIT:C189926 Non-Teratoid Hepatoblastoma 9 45131 -NCIT:C7098 Teratoid Hepatoblastoma 9 45132 -NCIT:C8641 Unresectable Hepatoblastoma 8 45133 -NCIT:C8642 Resectable Hepatoblastoma 8 45134 -NCIT:C8643 Recurrent Hepatoblastoma 8 45135 -NCIT:C7839 Recurrent Childhood Malignant Liver Neoplasm 7 45136 -NCIT:C8643 Recurrent Hepatoblastoma 8 45137 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 8 45138 -NCIT:C7955 Childhood Hepatocellular Carcinoma 7 45139 -NCIT:C189932 Childhood Fibrolamellar Carcinoma 8 45140 -NCIT:C5708 Stage III Childhood Hepatocellular Carcinoma AJCC v7 8 45141 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 8 45142 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 8 45143 -NCIT:C7838 Stage IV Childhood Hepatocellular Carcinoma AJCC v7 8 45144 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 8 45145 -NCIT:C96830 Calcifying Nested Stromal-Epithelial Tumor 7 45146 -NCIT:C96847 Extrarenal Rhabdoid Tumor of the Liver 7 45147 -NCIT:C7481 Gallbladder Malignant Neoplasm 5 45148 -NCIT:C35676 Localized Malignant Gallbladder Neoplasm 6 45149 -NCIT:C7649 Localized Gallbladder Carcinoma 7 45150 -NCIT:C3844 Gallbladder Carcinoma 6 45151 -NCIT:C134660 Gallbladder Cancer by AJCC v8 Stage 7 45152 -NCIT:C134663 Stage 0 Gallbladder Cancer AJCC v8 8 45153 -NCIT:C134665 Stage I Gallbladder Cancer AJCC v8 8 45154 -NCIT:C134667 Stage II Gallbladder Cancer AJCC v8 8 45155 -NCIT:C134670 Stage IIA Gallbladder Cancer AJCC v8 9 45156 -NCIT:C134671 Stage IIB Gallbladder Cancer AJCC v8 9 45157 -NCIT:C134672 Stage III Gallbladder Cancer AJCC v8 8 45158 -NCIT:C134673 Stage IIIA Gallbladder Cancer AJCC v8 9 45159 -NCIT:C134674 Stage IIIB Gallbladder Cancer AJCC v8 9 45160 -NCIT:C134675 Stage IV Gallbladder Cancer AJCC v8 8 45161 -NCIT:C134676 Stage IVA Gallbladder Cancer AJCC v8 9 45162 -NCIT:C134678 Stage IVB Gallbladder Cancer AJCC v8 9 45163 -NCIT:C162753 Refractory Gallbladder Carcinoma 7 45164 -NCIT:C162754 Metastatic Gallbladder Carcinoma 7 45165 -NCIT:C162755 Advanced Gallbladder Carcinoma 8 45166 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 8 45167 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 9 45168 -NCIT:C175214 Incidental Gallbladder Carcinoma 7 45169 -NCIT:C4008 Recurrent Gallbladder Carcinoma 7 45170 -NCIT:C7356 Gallbladder Adenosquamous Carcinoma 7 45171 -NCIT:C7649 Localized Gallbladder Carcinoma 7 45172 -NCIT:C7890 Unresectable Gallbladder Carcinoma 7 45173 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 8 45174 -NCIT:C189064 Unresectable Gallbladder Adenocarcinoma 8 45175 -NCIT:C90512 Gallbladder Cancer by AJCC v6 Stage 7 45176 -NCIT:C4439 Stage 0 Gallbladder Cancer AJCC v6 and v7 8 45177 -NCIT:C5737 Stage I Gallbladder Cancer AJCC v6 8 45178 -NCIT:C5738 Stage II Gallbladder Cancer AJCC v6 8 45179 -NCIT:C5739 Stage III Gallbladder Cancer AJCC v6 8 45180 -NCIT:C5740 Stage IV Gallbladder Cancer AJCC v6 8 45181 -NCIT:C91229 Gallbladder Cancer by AJCC v7 Stage 7 45182 -NCIT:C4439 Stage 0 Gallbladder Cancer AJCC v6 and v7 8 45183 -NCIT:C90216 Stage I Gallbladder Cancer AJCC v7 8 45184 -NCIT:C90217 Stage II Gallbladder Cancer AJCC v7 8 45185 -NCIT:C90218 Stage III Gallbladder Cancer AJCC v7 8 45186 -NCIT:C88056 Stage IIIA Gallbladder Cancer AJCC v7 9 45187 -NCIT:C88057 Stage IIIB Gallbladder Cancer AJCC v7 9 45188 -NCIT:C90219 Stage IV Gallbladder Cancer AJCC v7 8 45189 -NCIT:C5741 Stage IVA Gallbladder Cancer AJCC v7 9 45190 -NCIT:C5742 Stage IVB Gallbladder Cancer AJCC v7 9 45191 -NCIT:C9166 Gallbladder Adenocarcinoma 7 45192 -NCIT:C189064 Unresectable Gallbladder Adenocarcinoma 8 45193 -NCIT:C43604 Gallbladder Adenocarcinoma, Intestinal-Type 8 45194 -NCIT:C43605 Gallbladder Clear Cell Adenocarcinoma 8 45195 -NCIT:C5743 Gallbladder Intracholecystic Papillary Neoplasm with an Associated Invasive Carcinoma 8 45196 -NCIT:C5744 Gallbladder Mucinous Adenocarcinoma 8 45197 -NCIT:C5745 Gallbladder Signet Ring Cell Carcinoma 8 45198 -NCIT:C9169 Gallbladder Adenocarcinoma with Squamous Metaplasia 8 45199 -NCIT:C96887 Gallbladder Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 8 45200 -NCIT:C96890 Gallbladder Hepatoid Adenocarcinoma 8 45201 -NCIT:C96891 Gallbladder Cribriform Carcinoma 8 45202 -NCIT:C96915 Gallbladder Adenocarcinoma, Biliary Type 8 45203 -NCIT:C96916 Gallbladder Adenocarcinoma, Gastric Foveolar Type 8 45204 -NCIT:C9167 Gallbladder Undifferentiated Carcinoma 7 45205 -NCIT:C5838 Gallbladder Undifferentiated Carcinoma, Spindle and Giant Cell Type 8 45206 -NCIT:C9170 Gallbladder Squamous Cell Carcinoma 7 45207 -NCIT:C96888 Gallbladder Carcinosarcoma 7 45208 -NCIT:C96919 Gallbladder Neuroendocrine Carcinoma 7 45209 -NCIT:C6763 Gallbladder Small Cell Neuroendocrine Carcinoma 8 45210 -NCIT:C96921 Gallbladder Large Cell Neuroendocrine Carcinoma 8 45211 -NCIT:C96927 Gallbladder Mixed Adenoneuroendocrine Carcinoma 7 45212 -NCIT:C96928 Gallbladder Goblet Cell Carcinoid 8 45213 -NCIT:C5734 Gallbladder Lymphoma 6 45214 -NCIT:C5735 Gallbladder Melanoma 6 45215 -NCIT:C5736 Gallbladder Sarcoma 6 45216 -NCIT:C5839 Gallbladder Rhabdomyosarcoma 7 45217 -NCIT:C5840 Gallbladder Angiosarcoma 7 45218 -NCIT:C5841 Gallbladder Leiomyosarcoma 7 45219 -NCIT:C5842 Gallbladder Kaposi Sarcoma 7 45220 -NCIT:C7482 Metastatic Malignant Neoplasm in the Gallbladder 6 45221 -NCIT:C7483 Malignant Extrahepatic Bile Duct Neoplasm 5 45222 -NCIT:C3860 Extrahepatic Bile Duct Carcinoma 6 45223 -NCIT:C175437 Refractory Extrahepatic Bile Duct Carcinoma 7 45224 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 8 45225 -NCIT:C185071 Metastatic Extrahepatic Bile Duct Carcinoma 7 45226 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 8 45227 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 9 45228 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 45229 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 9 45230 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 8 45231 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 9 45232 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 8 45233 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 9 45234 -NCIT:C5777 Extrahepatic Bile Duct Squamous Cell Carcinoma 7 45235 -NCIT:C5778 Extrahepatic Bile Duct Adenosquamous Carcinoma 7 45236 -NCIT:C5780 Extrahepatic Bile Duct Undifferentiated Carcinoma 7 45237 -NCIT:C5862 Extrahepatic Bile Duct Mucoepidermoid Carcinoma 7 45238 -NCIT:C7109 Distal Bile Duct Carcinoma 7 45239 -NCIT:C134810 Distal Bile Duct Cancer by AJCC v7 Stage 8 45240 -NCIT:C88089 Stage 0 Distal Bile Duct Cancer AJCC v7 9 45241 -NCIT:C88090 Stage IA Distal Bile Duct Cancer AJCC v7 9 45242 -NCIT:C88091 Stage IB Distal Bile Duct Cancer AJCC v7 9 45243 -NCIT:C88092 Stage IIA Distal Bile Duct Cancer AJCC v7 9 45244 -NCIT:C88093 Stage IIB Distal Bile Duct Cancer AJCC v7 9 45245 -NCIT:C88094 Stage III Distal Bile Duct Cancer AJCC v7 9 45246 -NCIT:C88095 Stage IV Distal Bile Duct Cancer AJCC v7 9 45247 -NCIT:C134811 Distal Bile Duct Cancer by AJCC v8 Stage 8 45248 -NCIT:C134812 Stage 0 Distal Bile Duct Cancer AJCC v8 9 45249 -NCIT:C134813 Stage I Distal Bile Duct Cancer AJCC v8 9 45250 -NCIT:C134814 Stage II Distal Bile Duct Cancer AJCC v8 9 45251 -NCIT:C134815 Stage IIA Distal Bile Duct Cancer AJCC v8 10 45252 -NCIT:C134816 Stage IIB Distal Bile Duct Cancer AJCC v8 10 45253 -NCIT:C134817 Stage III Distal Bile Duct Cancer AJCC v8 9 45254 -NCIT:C134818 Stage IIIA Distal Bile Duct Cancer AJCC v8 10 45255 -NCIT:C134819 Stage IIIB Distal Bile Duct Cancer AJCC v8 10 45256 -NCIT:C134820 Stage IV Distal Bile Duct Cancer AJCC v8 9 45257 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 8 45258 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 9 45259 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 45260 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 9 45261 -NCIT:C7976 Distal Bile Duct Adenocarcinoma 8 45262 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 9 45263 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 9 45264 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 45265 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 9 45266 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 9 45267 -NCIT:C7891 Localized Extrahepatic Bile Duct Carcinoma 7 45268 -NCIT:C7892 Unresectable Extrahepatic Bile Duct Carcinoma 7 45269 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 8 45270 -NCIT:C7893 Recurrent Extrahepatic Bile Duct Carcinoma 7 45271 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 8 45272 -NCIT:C7975 Extrahepatic Bile Duct Adenocarcinoma 7 45273 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 8 45274 -NCIT:C5775 Extrahepatic Bile Duct Clear Cell Adenocarcinoma 8 45275 -NCIT:C5776 Extrahepatic Bile Duct Signet Ring Cell Carcinoma 8 45276 -NCIT:C5846 Extrahepatic Bile Duct Mucinous Adenocarcinoma 8 45277 -NCIT:C7976 Distal Bile Duct Adenocarcinoma 8 45278 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 9 45279 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 9 45280 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 45281 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 9 45282 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 9 45283 -NCIT:C96936 Extrahepatic Bile Duct Adenocarcinoma, Biliary Type 8 45284 -NCIT:C96937 Extrahepatic Bile Duct Adenocarcinoma, Gastric Foveolar Type 8 45285 -NCIT:C96938 Extrahepatic Bile Duct Adenocarcinoma, Intestinal Type 8 45286 -NCIT:C96946 Extrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 8 45287 -NCIT:C96948 Extrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 8 45288 -NCIT:C8640 Resectable Extrahepatic Bile Duct Carcinoma 7 45289 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 8 45290 -NCIT:C96939 Extrahepatic Bile Duct Carcinosarcoma 7 45291 -NCIT:C96956 Extrahepatic Bile Duct Neuroendocrine Carcinoma 7 45292 -NCIT:C5845 Extrahepatic Bile Duct Small Cell Neuroendocrine Carcinoma 8 45293 -NCIT:C96958 Extrahepatic Bile Duct Large Cell Neuroendocrine Carcinoma 8 45294 -NCIT:C96959 Extrahepatic Bile Duct Mixed Adenoneuroendocrine Carcinoma 7 45295 -NCIT:C5029 Extrahepatic Bile Duct Sarcoma 6 45296 -NCIT:C5848 Extrahepatic Bile Duct Leiomyosarcoma 7 45297 -NCIT:C5860 Extrahepatic Bile Duct Rhabdomyosarcoma 7 45298 -NCIT:C5847 Extrahepatic Bile Duct Embryonal Rhabdomyosarcoma 8 45299 -NCIT:C96951 Extrahepatic Bile Duct Kaposi Sarcoma 7 45300 -NCIT:C96952 Extrahepatic Bile Duct Lymphoma 6 45301 -NCIT:C96953 Metastatic Malignant Neoplasm in the Extrahepatic Bile Ducts 6 45302 -NCIT:C9005 Malignant Pancreatic Neoplasm 4 45303 -NCIT:C155852 Metastatic Malignant Pancreatic Neoplasm 5 45304 -NCIT:C156069 Metastatic Pancreatic Carcinoma 6 45305 -NCIT:C165452 Advanced Pancreatic Carcinoma 7 45306 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 8 45307 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 9 45308 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 7 45309 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 8 45310 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 9 45311 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 9 45312 -NCIT:C190770 Metastatic Pancreatic Adenosquamous Carcinoma 7 45313 -NCIT:C190771 Metastatic Pancreatic Squamous Cell Carcinoma 7 45314 -NCIT:C8933 Metastatic Pancreatic Adenocarcinoma 7 45315 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 8 45316 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 9 45317 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 9 45318 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 8 45319 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 9 45320 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 9 45321 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 9 45322 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 8 45323 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 9 45324 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 8 45325 -NCIT:C165447 Metastatic Pancreatic Neuroendocrine Neoplasm 6 45326 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 7 45327 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 45328 -NCIT:C156488 Metastatic Pancreatic Neuroendocrine Tumor 7 45329 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 8 45330 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 45331 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 45332 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 8 45333 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 8 45334 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 45335 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 8 45336 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 45337 -NCIT:C165448 Advanced Pancreatic Neuroendocrine Neoplasm 7 45338 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 8 45339 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 45340 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 45341 -NCIT:C165456 Unresectable Pancreatic Neuroendocrine Neoplasm 5 45342 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 6 45343 -NCIT:C190782 Unresectable Pancreatic Neuroendocrine Tumor 6 45344 -NCIT:C165631 Localized Malignant Pancreatic Neoplasm 5 45345 -NCIT:C169041 Localized Pancreatic Adenocarcinoma 6 45346 -NCIT:C189009 Localized Pancreatic Ductal Adenocarcinoma 7 45347 -NCIT:C188217 Pancreatic Mixed Ductal-Neuroendocrine Neoplasm 5 45348 -NCIT:C6879 Pancreatic Mixed Ductal-Neuroendocrine Carcinoma 6 45349 -NCIT:C3770 Pancreatic Neuroendocrine Carcinoma 5 45350 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 6 45351 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 6 45352 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 6 45353 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 7 45354 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 6 45355 -NCIT:C95582 Pancreatic Large Cell Neuroendocrine Carcinoma 6 45356 -NCIT:C95583 Pancreatic Small Cell Neuroendocrine Carcinoma 6 45357 -NCIT:C5714 Pancreatic Lymphoma 5 45358 -NCIT:C5789 Pancreatic Non-Hodgkin Lymphoma 6 45359 -NCIT:C5715 Pancreatic Sarcoma 5 45360 -NCIT:C188065 Pancreatic Leiomyosarcoma 6 45361 -NCIT:C7430 Malignant Exocrine Pancreas Neoplasm 5 45362 -NCIT:C37212 Solid Pseudopapillary Neoplasm of the Pancreas 6 45363 -NCIT:C190027 Childhood Solid Pseudopapillary Neoplasm of the Pancreas 7 45364 -NCIT:C3850 Pancreatic Carcinoma 6 45365 -NCIT:C134902 Pancreatic Cancer by AJCC v6 and v7 Stage 7 45366 -NCIT:C5711 Stage IV Pancreatic Cancer AJCC v6 and v7 8 45367 -NCIT:C5729 Stage 0 Pancreatic Cancer AJCC v6 and v7 8 45368 -NCIT:C7785 Stage I Pancreatic Cancer AJCC v6 and v7 8 45369 -NCIT:C88100 Stage IA Pancreatic Cancer AJCC v6 and v7 9 45370 -NCIT:C88101 Stage IB Pancreatic Cancer AJCC v6 and v7 9 45371 -NCIT:C7786 Stage II Pancreatic Cancer AJCC v6 and v7 8 45372 -NCIT:C88102 Stage IIA Pancreatic Cancer AJCC v6 and v7 9 45373 -NCIT:C88103 Stage IIB Pancreatic Cancer AJCC v6 and v7 9 45374 -NCIT:C7787 Stage III Pancreatic Cancer AJCC v6 and v7 8 45375 -NCIT:C134909 Pancreatic Cancer by AJCC v8 Stage 7 45376 -NCIT:C134914 Stage 0 Pancreatic Cancer AJCC v8 8 45377 -NCIT:C134915 Stage I Pancreatic Cancer AJCC v8 8 45378 -NCIT:C134917 Stage IA Pancreatic Cancer AJCC v8 9 45379 -NCIT:C134920 Stage IB Pancreatic Cancer AJCC v8 9 45380 -NCIT:C134921 Stage II Pancreatic Cancer AJCC v8 8 45381 -NCIT:C134925 Stage IIA Pancreatic Cancer AJCC v8 9 45382 -NCIT:C134927 Stage IIB Pancreatic Cancer AJCC v8 9 45383 -NCIT:C134928 Stage III Pancreatic Cancer AJCC v8 8 45384 -NCIT:C134930 Stage IV Pancreatic Cancer AJCC v8 8 45385 -NCIT:C142808 Refractory Pancreatic Carcinoma 7 45386 -NCIT:C162015 Refractory Pancreatic Adenocarcinoma 8 45387 -NCIT:C165450 Refractory Pancreatic Ductal Adenocarcinoma 9 45388 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 9 45389 -NCIT:C156069 Metastatic Pancreatic Carcinoma 7 45390 -NCIT:C165452 Advanced Pancreatic Carcinoma 8 45391 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 45392 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 45393 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 8 45394 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 45395 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 45396 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 45397 -NCIT:C190770 Metastatic Pancreatic Adenosquamous Carcinoma 8 45398 -NCIT:C190771 Metastatic Pancreatic Squamous Cell Carcinoma 8 45399 -NCIT:C8933 Metastatic Pancreatic Adenocarcinoma 8 45400 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 45401 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 45402 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 45403 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 9 45404 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 45405 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 45406 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 10 45407 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 45408 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 45409 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 9 45410 -NCIT:C173813 Pancreatic Squamous Cell Carcinoma 7 45411 -NCIT:C190771 Metastatic Pancreatic Squamous Cell Carcinoma 8 45412 -NCIT:C43298 Hereditary Pancreatic Carcinoma 7 45413 -NCIT:C45843 Pancreatic Mixed Adenoneuroendocrine Carcinoma 7 45414 -NCIT:C6878 Pancreatic Mixed Acinar-Neuroendocrine Carcinoma 8 45415 -NCIT:C6879 Pancreatic Mixed Ductal-Neuroendocrine Carcinoma 8 45416 -NCIT:C95460 Pancreatic Mixed Acinar-Ductal Neuroendocrine Carcinoma 8 45417 -NCIT:C5018 Unresectable Pancreatic Carcinoma 7 45418 -NCIT:C162016 Unresectable Pancreatic Adenocarcinoma 8 45419 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 9 45420 -NCIT:C172245 Unresectable Pancreatic Ductal Adenocarcinoma 9 45421 -NCIT:C5099 Resectable Pancreatic Carcinoma 7 45422 -NCIT:C156906 Resectable Pancreatic Adenocarcinoma 8 45423 -NCIT:C151995 Resectable Pancreatic Ductal Adenocarcinoma 9 45424 -NCIT:C156907 Resectable Pancreatic Acinar Cell Carcinoma 9 45425 -NCIT:C157350 Borderline Resectable Pancreatic Adenocarcinoma 9 45426 -NCIT:C157348 Borderline Resectable Pancreatic Carcinoma 8 45427 -NCIT:C157350 Borderline Resectable Pancreatic Adenocarcinoma 9 45428 -NCIT:C174566 Resectable Pancreatic Adenosquamous Carcinoma 8 45429 -NCIT:C5721 Pancreatic Adenosquamous Carcinoma 7 45430 -NCIT:C174566 Resectable Pancreatic Adenosquamous Carcinoma 8 45431 -NCIT:C190770 Metastatic Pancreatic Adenosquamous Carcinoma 8 45432 -NCIT:C7626 Recurrent Pancreatic Carcinoma 7 45433 -NCIT:C155742 Recurrent Pancreatic Adenocarcinoma 8 45434 -NCIT:C153569 Recurrent Pancreatic Acinar Cell Carcinoma 9 45435 -NCIT:C153619 Recurrent Pancreatic Ductal Adenocarcinoma 9 45436 -NCIT:C153620 Recurrent Pancreatic Cystadenocarcinoma 9 45437 -NCIT:C8294 Pancreatic Adenocarcinoma 7 45438 -NCIT:C155742 Recurrent Pancreatic Adenocarcinoma 8 45439 -NCIT:C153569 Recurrent Pancreatic Acinar Cell Carcinoma 9 45440 -NCIT:C153619 Recurrent Pancreatic Ductal Adenocarcinoma 9 45441 -NCIT:C153620 Recurrent Pancreatic Cystadenocarcinoma 9 45442 -NCIT:C156906 Resectable Pancreatic Adenocarcinoma 8 45443 -NCIT:C151995 Resectable Pancreatic Ductal Adenocarcinoma 9 45444 -NCIT:C156907 Resectable Pancreatic Acinar Cell Carcinoma 9 45445 -NCIT:C157350 Borderline Resectable Pancreatic Adenocarcinoma 9 45446 -NCIT:C162015 Refractory Pancreatic Adenocarcinoma 8 45447 -NCIT:C165450 Refractory Pancreatic Ductal Adenocarcinoma 9 45448 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 9 45449 -NCIT:C162016 Unresectable Pancreatic Adenocarcinoma 8 45450 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 9 45451 -NCIT:C172245 Unresectable Pancreatic Ductal Adenocarcinoma 9 45452 -NCIT:C169041 Localized Pancreatic Adenocarcinoma 8 45453 -NCIT:C189009 Localized Pancreatic Ductal Adenocarcinoma 9 45454 -NCIT:C172813 Invasive Pancreatic Micropapillary Adenocarcinoma 8 45455 -NCIT:C3874 Pancreatic Cystadenocarcinoma 8 45456 -NCIT:C153620 Recurrent Pancreatic Cystadenocarcinoma 9 45457 -NCIT:C5724 Pancreatic Serous Cystadenocarcinoma 9 45458 -NCIT:C5727 Pancreatic Acinar Cell Cystadenocarcinoma 9 45459 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 10 45460 -NCIT:C5726 Pancreatic Intraductal Papillary-Mucinous Neoplasm with an Associated Invasive Carcinoma 8 45461 -NCIT:C7977 Pancreatic Acinar Cell Carcinoma 8 45462 -NCIT:C153569 Recurrent Pancreatic Acinar Cell Carcinoma 9 45463 -NCIT:C156907 Resectable Pancreatic Acinar Cell Carcinoma 9 45464 -NCIT:C190024 Childhood Pancreatic Acinar Cell Carcinoma 9 45465 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 10 45466 -NCIT:C5727 Pancreatic Acinar Cell Cystadenocarcinoma 9 45467 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 10 45468 -NCIT:C8933 Metastatic Pancreatic Adenocarcinoma 8 45469 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 45470 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 45471 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 45472 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 9 45473 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 45474 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 45475 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 10 45476 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 45477 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 45478 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 9 45479 -NCIT:C9120 Pancreatic Ductal Adenocarcinoma 8 45480 -NCIT:C151995 Resectable Pancreatic Ductal Adenocarcinoma 9 45481 -NCIT:C153619 Recurrent Pancreatic Ductal Adenocarcinoma 9 45482 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 9 45483 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 45484 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 45485 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 10 45486 -NCIT:C158961 Early Stage Pancreatic Ductal Adenocarcinoma 9 45487 -NCIT:C165450 Refractory Pancreatic Ductal Adenocarcinoma 9 45488 -NCIT:C172245 Unresectable Pancreatic Ductal Adenocarcinoma 9 45489 -NCIT:C172811 Pancreatic Poorly Cohesive Adenocarcinoma 9 45490 -NCIT:C5720 Pancreatic Signet Ring Cell Carcinoma 10 45491 -NCIT:C189009 Localized Pancreatic Ductal Adenocarcinoma 9 45492 -NCIT:C37214 Pancreatic Colloid Carcinoma 9 45493 -NCIT:C37256 Pancreatic Foamy Gland Adenocarcinoma 9 45494 -NCIT:C5722 Pancreatic Undifferentiated Carcinoma 9 45495 -NCIT:C172812 Pancreatic Undifferentiated Carcinoma with Rhabdoid Cells 10 45496 -NCIT:C5723 Pancreatic Undifferentiated Carcinoma with Osteoclast-Like Giant Cells 10 45497 -NCIT:C95426 Pancreatic Well Differentiated Ductal Adenocarcinoma 9 45498 -NCIT:C95427 Pancreatic Moderately Differentiated Ductal Adenocarcinoma 9 45499 -NCIT:C95428 Pancreatic Poorly Differentiated Ductal Adenocarcinoma 9 45500 -NCIT:C95465 Pancreatic Hepatoid Adenocarcinoma 9 45501 -NCIT:C95466 Pancreatic Medullary Carcinoma 9 45502 -NCIT:C95458 Pancreatic Mixed Acinar-Ductal Carcinoma 8 45503 -NCIT:C95507 Pancreatic Intraductal Tubulopapillary Neoplasm with an Associated Invasive Carcinoma 8 45504 -NCIT:C41246 Pancreatic Mucinous-Cystic Neoplasm with an Associated Invasive Carcinoma 6 45505 -NCIT:C4265 Pancreatoblastoma 6 45506 -NCIT:C190023 Childhood Pancreatoblastoma 7 45507 -NCIT:C8543 Metastatic Malignant Neoplasm in the Pancreas 5 45508 -NCIT:C188077 Metastatic Carcinoma in the Pancreas 6 45509 -NCIT:C9331 Malignant Gastric Neoplasm 4 45510 -NCIT:C170940 Malignant Fundus Neoplasm 5 45511 -NCIT:C8398 Gastric Fundus Carcinoma 6 45512 -NCIT:C4429 Gastric Fundus Carcinoma In Situ AJCC v6 and v7 7 45513 -NCIT:C172659 Gastroblastoma 5 45514 -NCIT:C190028 Childhood Gastroblastoma 6 45515 -NCIT:C175304 Unresectable Malignant Gastric Neoplasm 5 45516 -NCIT:C159775 Unresectable Gastric Carcinoma 6 45517 -NCIT:C154221 Unresectable Gastric Adenocarcinoma 7 45518 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 45519 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 45520 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 45521 -NCIT:C178519 Gastric Melanoma 5 45522 -NCIT:C188051 Malignant Pylorus Neoplasm 5 45523 -NCIT:C6795 Gastric Pylorus Carcinoma 6 45524 -NCIT:C4431 Gastric Pylorus Carcinoma In Situ AJCC v6 and v7 7 45525 -NCIT:C8400 Gastric Antrum Carcinoma In Situ AJCC v6 and v7 8 45526 -NCIT:C27439 Gastric Sarcoma 5 45527 -NCIT:C27200 Gastric Leiomyosarcoma 6 45528 -NCIT:C5488 Gastric Liposarcoma 6 45529 -NCIT:C5529 Gastric Kaposi Sarcoma 6 45530 -NCIT:C5624 AIDS-Related Gastric Kaposi Sarcoma 7 45531 -NCIT:C95897 Gastric Malignant Gastrointestinal Stromal Tumor 6 45532 -NCIT:C95899 Gastric Synovial Sarcoma 6 45533 -NCIT:C4636 Gastric Lymphoma 5 45534 -NCIT:C27235 Gastric Non-Hodgkin Lymphoma 6 45535 -NCIT:C5251 Gastric Burkitt Lymphoma 7 45536 -NCIT:C5253 Gastric Diffuse Large B-Cell Lymphoma 7 45537 -NCIT:C5254 Gastric T-Cell Non-Hodgkin Lymphoma 7 45538 -NCIT:C5266 Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 7 45539 -NCIT:C27763 Helicobacter Pylori-Associated Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 8 45540 -NCIT:C5638 Gastric Hodgkin Lymphoma 6 45541 -NCIT:C4911 Gastric Carcinoma 5 45542 -NCIT:C118813 Childhood Gastric Carcinoma 6 45543 -NCIT:C133638 Gastric Cancer by AJCC v8 Stage 6 45544 -NCIT:C133639 Gastric Cancer by AJCC v8 Clinical Stage 7 45545 -NCIT:C133647 Clinical Stage 0 Gastric Cancer AJCC v8 8 45546 -NCIT:C133648 Clinical Stage I Gastric Cancer AJCC v8 8 45547 -NCIT:C133649 Clinical Stage II Gastric Cancer AJCC v8 8 45548 -NCIT:C133681 Clinical Stage IIA Gastric Cancer AJCC v8 9 45549 -NCIT:C133682 Clinical Stage IIB Gastric Cancer AJCC v8 9 45550 -NCIT:C133650 Clinical Stage III Gastric Cancer AJCC v8 8 45551 -NCIT:C133651 Clinical Stage IV Gastric Cancer AJCC v8 8 45552 -NCIT:C133652 Clinical Stage IVA Gastric Cancer AJCC v8 9 45553 -NCIT:C133653 Clinical Stage IVB Gastric Cancer AJCC v8 9 45554 -NCIT:C133640 Gastric Cancer by AJCC v8 Pathologic Stage 7 45555 -NCIT:C133654 Pathologic Stage 0 Gastric Cancer AJCC v8 8 45556 -NCIT:C133655 Pathologic Stage I Gastric Cancer AJCC v8 8 45557 -NCIT:C133656 Pathologic Stage IA Gastric Cancer AJCC v8 9 45558 -NCIT:C133657 Pathologic Stage IB Gastric Cancer AJCC v8 9 45559 -NCIT:C133659 Pathologic Stage II Gastric Cancer AJCC v8 8 45560 -NCIT:C133660 Pathologic Stage IIA Gastric Cancer AJCC v8 9 45561 -NCIT:C133662 Pathologic Stage IIB Gastric Cancer AJCC v8 9 45562 -NCIT:C133663 Pathologic Stage III Gastric Cancer AJCC v8 8 45563 -NCIT:C133665 Pathologic Stage IIIA Gastric Cancer AJCC v8 9 45564 -NCIT:C133666 Pathologic Stage IIIB Gastric Cancer AJCC v8 9 45565 -NCIT:C133667 Pathologic Stage IIIC Gastric Cancer AJCC v8 9 45566 -NCIT:C133668 Pathologic Stage IV Gastric Cancer AJCC v8 8 45567 -NCIT:C133641 Gastric Cancer by AJCC v8 Postneoadjuvant Therapy Stage 7 45568 -NCIT:C133670 Postneoadjuvant Therapy Stage I Gastric Cancer AJCC v8 8 45569 -NCIT:C133671 Postneoadjuvant Therapy Stage II Gastric Cancer AJCC v8 8 45570 -NCIT:C133672 Postneoadjuvant Therapy Stage III Gastric Cancer AJCC v8 8 45571 -NCIT:C133673 Postneoadjuvant Therapy Stage IV Gastric Cancer AJCC v8 8 45572 -NCIT:C147996 Refractory Gastric Carcinoma 6 45573 -NCIT:C167074 Refractory Gastric Adenocarcinoma 7 45574 -NCIT:C153320 Metastatic Gastric Carcinoma 6 45575 -NCIT:C153319 Metastatic Gastric Adenocarcinoma 7 45576 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 45577 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 45578 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 45579 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 45580 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 45581 -NCIT:C165630 Metastatic Proximal Gastric Adenocarcinoma 8 45582 -NCIT:C166121 Oligometastatic Gastric Adenocarcinoma 8 45583 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 45584 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 45585 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 7 45586 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 45587 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 45588 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 45589 -NCIT:C162772 Locally Advanced Gastric Carcinoma 7 45590 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 45591 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 45592 -NCIT:C165299 Advanced Gastric Carcinoma 7 45593 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 45594 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 45595 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 45596 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 45597 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 45598 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 7 45599 -NCIT:C156167 Localized Gastric Carcinoma 6 45600 -NCIT:C159775 Unresectable Gastric Carcinoma 6 45601 -NCIT:C154221 Unresectable Gastric Adenocarcinoma 7 45602 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 45603 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 45604 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 45605 -NCIT:C162304 EBV-Related Gastric Carcinoma 6 45606 -NCIT:C4004 Gastric Adenocarcinoma 6 45607 -NCIT:C153319 Metastatic Gastric Adenocarcinoma 7 45608 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 45609 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 45610 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 45611 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 45612 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 45613 -NCIT:C165630 Metastatic Proximal Gastric Adenocarcinoma 8 45614 -NCIT:C166121 Oligometastatic Gastric Adenocarcinoma 8 45615 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 45616 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 45617 -NCIT:C154221 Unresectable Gastric Adenocarcinoma 7 45618 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 45619 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 45620 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 45621 -NCIT:C154622 Recurrent Gastric Adenocarcinoma 7 45622 -NCIT:C165628 Proximal Gastric Adenocarcinoma 7 45623 -NCIT:C165630 Metastatic Proximal Gastric Adenocarcinoma 8 45624 -NCIT:C167074 Refractory Gastric Adenocarcinoma 7 45625 -NCIT:C43527 Sporadic Gastric Adenocarcinoma 7 45626 -NCIT:C27131 Early Gastric Cancer 8 45627 -NCIT:C95763 Gastric Intramucosal Adenocarcinoma 9 45628 -NCIT:C27765 Helicobacter Pylori-Related Gastric Adenocarcinoma 8 45629 -NCIT:C43529 Sporadic Gastric Diffuse Adenocarcinoma 8 45630 -NCIT:C5247 Gastric Cardia Adenocarcinoma 8 45631 -NCIT:C5248 Gastric Mucinous Adenocarcinoma 8 45632 -NCIT:C5472 Gastric Papillary Adenocarcinoma 8 45633 -NCIT:C5473 Gastric Tubular Adenocarcinoma 8 45634 -NCIT:C65194 Gastric Parietal Cell Adenocarcinoma 8 45635 -NCIT:C67526 Gastric Mixed Adenocarcinoma 8 45636 -NCIT:C9157 Gastric Intestinal-Type Adenocarcinoma 8 45637 -NCIT:C95743 Gastric Poorly Cohesive Adenocarcinoma 8 45638 -NCIT:C5250 Gastric Signet Ring Cell Adenocarcinoma 9 45639 -NCIT:C95747 Gastric Hepatoid Adenocarcinoma 8 45640 -NCIT:C95748 Gastric Carcinoma with Lymphoid Stroma 8 45641 -NCIT:C9159 Gastric Diffuse Adenocarcinoma 7 45642 -NCIT:C43295 Hereditary Gastric Diffuse Adenocarcinoma 8 45643 -NCIT:C43529 Sporadic Gastric Diffuse Adenocarcinoma 8 45644 -NCIT:C5474 Gastric Adenosquamous Carcinoma 6 45645 -NCIT:C5475 Gastric Squamous Cell Carcinoma 6 45646 -NCIT:C150034 Gastric Cardia Squamous Cell Carcinoma 7 45647 -NCIT:C5476 Gastric Undifferentiated Carcinoma 6 45648 -NCIT:C6794 Gastric Cardia Carcinoma 6 45649 -NCIT:C150034 Gastric Cardia Squamous Cell Carcinoma 7 45650 -NCIT:C4428 Gastric Cardia Carcinoma In Situ AJCC v6 and v7 7 45651 -NCIT:C5247 Gastric Cardia Adenocarcinoma 7 45652 -NCIT:C6795 Gastric Pylorus Carcinoma 6 45653 -NCIT:C4431 Gastric Pylorus Carcinoma In Situ AJCC v6 and v7 7 45654 -NCIT:C8400 Gastric Antrum Carcinoma In Situ AJCC v6 and v7 8 45655 -NCIT:C8398 Gastric Fundus Carcinoma 6 45656 -NCIT:C4429 Gastric Fundus Carcinoma In Situ AJCC v6 and v7 7 45657 -NCIT:C8399 Gastric Body Carcinoma 6 45658 -NCIT:C4430 Gastric Body Carcinoma In Situ AJCC v6 and v7 7 45659 -NCIT:C90503 Gastric Cancer by AJCC v6 Stage 6 45660 -NCIT:C7772 Stage I Gastric Cancer AJCC v6 7 45661 -NCIT:C7773 Stage II Gastric Cancer AJCC v6 7 45662 -NCIT:C7774 Stage III Gastric Cancer AJCC v6 7 45663 -NCIT:C7788 Stage 0 Gastric Cancer AJCC v6 and v7 7 45664 -NCIT:C4428 Gastric Cardia Carcinoma In Situ AJCC v6 and v7 8 45665 -NCIT:C4429 Gastric Fundus Carcinoma In Situ AJCC v6 and v7 8 45666 -NCIT:C4430 Gastric Body Carcinoma In Situ AJCC v6 and v7 8 45667 -NCIT:C4431 Gastric Pylorus Carcinoma In Situ AJCC v6 and v7 8 45668 -NCIT:C8400 Gastric Antrum Carcinoma In Situ AJCC v6 and v7 9 45669 -NCIT:C9036 Stage IV Gastric Cancer AJCC v6 7 45670 -NCIT:C91222 Gastric Cancer by AJCC v7 Stage 6 45671 -NCIT:C7788 Stage 0 Gastric Cancer AJCC v6 and v7 7 45672 -NCIT:C4428 Gastric Cardia Carcinoma In Situ AJCC v6 and v7 8 45673 -NCIT:C4429 Gastric Fundus Carcinoma In Situ AJCC v6 and v7 8 45674 -NCIT:C4430 Gastric Body Carcinoma In Situ AJCC v6 and v7 8 45675 -NCIT:C4431 Gastric Pylorus Carcinoma In Situ AJCC v6 and v7 8 45676 -NCIT:C8400 Gastric Antrum Carcinoma In Situ AJCC v6 and v7 9 45677 -NCIT:C89856 Stage I Gastric Cancer AJCC v7 7 45678 -NCIT:C5468 Stage IA Gastric Cancer AJCC v7 8 45679 -NCIT:C5469 Stage IB Gastric Cancer AJCC v7 8 45680 -NCIT:C89859 Stage II Gastric Cancer AJCC v7 7 45681 -NCIT:C87775 Stage IIA Gastric Cancer AJCC v7 8 45682 -NCIT:C87776 Stage IIB Gastric Cancer AJCC v7 8 45683 -NCIT:C89860 Stage III Gastric Cancer AJCC v7 7 45684 -NCIT:C5470 Stage IIIB Gastric Cancer AJCC v7 8 45685 -NCIT:C5471 Stage IIIA Gastric Cancer AJCC v7 8 45686 -NCIT:C87777 Stage IIIC Gastric Cancer AJCC v7 8 45687 -NCIT:C89861 Stage IV Gastric Cancer AJCC v7 7 45688 -NCIT:C9237 Recurrent Gastric Carcinoma 6 45689 -NCIT:C154622 Recurrent Gastric Adenocarcinoma 7 45690 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 7 45691 -NCIT:C190198 Locally Recurrent Gastric Carcinoma 7 45692 -NCIT:C95884 Gastric Neuroendocrine Carcinoma 6 45693 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 7 45694 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 45695 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 45696 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 45697 -NCIT:C6764 Gastric Small Cell Neuroendocrine Carcinoma 7 45698 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 45699 -NCIT:C95885 Gastric Large Cell Neuroendocrine Carcinoma 7 45700 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 45701 -NCIT:C95886 Gastric Mixed Adenoneuroendocrine Carcinoma 6 45702 -NCIT:C5484 Malignant Gastric Granular Cell Tumor 5 45703 -NCIT:C5486 Malignant Gastric Germ Cell Tumor 5 45704 -NCIT:C95749 Gastric Choriocarcinoma 6 45705 -NCIT:C9354 Recurrent Malignant Gastric Neoplasm 5 45706 -NCIT:C9237 Recurrent Gastric Carcinoma 6 45707 -NCIT:C154622 Recurrent Gastric Adenocarcinoma 7 45708 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 7 45709 -NCIT:C190198 Locally Recurrent Gastric Carcinoma 7 45710 -NCIT:C95903 Metastatic Malignant Neoplasm in the Stomach 5 45711 -NCIT:C9333 Malignant Appendix Neoplasm 4 45712 -NCIT:C5513 Appendix Lymphoma 5 45713 -NCIT:C9330 Appendix Carcinoma 5 45714 -NCIT:C133733 Appendix Carcinoma by AJCC v7 Stage 6 45715 -NCIT:C4593 Stage 0 Appendix Carcinoma AJCC v7 7 45716 -NCIT:C87798 Stage I Appendix Carcinoma AJCC v7 7 45717 -NCIT:C87799 Stage IIA Appendix Carcinoma AJCC v7 7 45718 -NCIT:C87800 Stage IIB Appendix Carcinoma AJCC v7 7 45719 -NCIT:C87801 Stage IIC Appendix Carcinoma AJCC v7 7 45720 -NCIT:C87803 Stage IIIA Appendix Carcinoma AJCC v7 7 45721 -NCIT:C87804 Stage IIIB Appendix Carcinoma AJCC v7 7 45722 -NCIT:C87805 Stage IIIC Appendix Carcinoma AJCC v7 7 45723 -NCIT:C87806 Stage IVA Appendix Carcinoma AJCC v7 7 45724 -NCIT:C87807 Stage IVB Appendix Carcinoma AJCC v7 7 45725 -NCIT:C87808 Stage IVC Appendix Carcinoma AJCC v7 7 45726 -NCIT:C134117 Appendix Carcinoma by AJCC v8 Stage 6 45727 -NCIT:C134118 Stage 0 Appendix Carcinoma AJCC v8 7 45728 -NCIT:C134119 Stage 0 Low Grade Appendix Mucinous Neoplasm (LAMN) AJCC v8 7 45729 -NCIT:C134120 Stage I Appendix Carcinoma AJCC v8 7 45730 -NCIT:C134121 Stage II Appendix Carcinoma AJCC v8 7 45731 -NCIT:C134122 Stage IIA Appendix Carcinoma AJCC v8 8 45732 -NCIT:C134123 Stage IIB Appendix Carcinoma AJCC v8 8 45733 -NCIT:C134124 Stage IIC Appendix Carcinoma AJCC v8 8 45734 -NCIT:C134125 Stage III Appendix Carcinoma AJCC v8 7 45735 -NCIT:C134126 Stage IIIA Appendix Carcinoma AJCC v8 8 45736 -NCIT:C134127 Stage IIIB Appendix Carcinoma AJCC v8 8 45737 -NCIT:C134128 Stage IIIC Appendix Carcinoma AJCC v8 8 45738 -NCIT:C134129 Stage IV Appendix Carcinoma AJCC v8 7 45739 -NCIT:C134130 Stage IVA Appendix Carcinoma AJCC v8 8 45740 -NCIT:C134131 Stage IVB Appendix Carcinoma AJCC v8 8 45741 -NCIT:C134132 Stage IVC Appendix Carcinoma AJCC v8 8 45742 -NCIT:C153802 Recurrent Appendix Carcinoma 6 45743 -NCIT:C179174 Recurrent Appendix Adenocarcinoma 7 45744 -NCIT:C153579 Recurrent Appendix Mucinous Adenocarcinoma 8 45745 -NCIT:C162275 Metastatic Appendix Carcinoma 6 45746 -NCIT:C182104 Metastatic Appendix Adenocarcinoma 7 45747 -NCIT:C162274 Metastatic Appendix Mucinous Adenocarcinoma 8 45748 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 45749 -NCIT:C179177 Refractory Appendix Carcinoma 6 45750 -NCIT:C179178 Refractory Appendix Adenocarcinoma 7 45751 -NCIT:C43556 Appendix Undifferentiated Carcinoma 6 45752 -NCIT:C43564 Appendix Mixed Adenoneuroendocrine Carcinoma 6 45753 -NCIT:C3689 Appendix Goblet Cell Adenocarcinoma 7 45754 -NCIT:C7718 Appendix Adenocarcinoma 6 45755 -NCIT:C179174 Recurrent Appendix Adenocarcinoma 7 45756 -NCIT:C153579 Recurrent Appendix Mucinous Adenocarcinoma 8 45757 -NCIT:C179178 Refractory Appendix Adenocarcinoma 7 45758 -NCIT:C182104 Metastatic Appendix Adenocarcinoma 7 45759 -NCIT:C162274 Metastatic Appendix Mucinous Adenocarcinoma 8 45760 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 45761 -NCIT:C43554 Appendix Signet Ring Cell Carcinoma 7 45762 -NCIT:C43558 Appendix Mucinous Adenocarcinoma 7 45763 -NCIT:C153579 Recurrent Appendix Mucinous Adenocarcinoma 8 45764 -NCIT:C162274 Metastatic Appendix Mucinous Adenocarcinoma 8 45765 -NCIT:C5511 Appendix Mucinous Cystadenocarcinoma 8 45766 -NCIT:C96425 Appendix Neuroendocrine Carcinoma 6 45767 -NCIT:C43555 Appendix Small Cell Neuroendocrine Carcinoma 7 45768 -NCIT:C96426 Appendix Large Cell Neuroendocrine Carcinoma 7 45769 -NCIT:C96434 Appendix Kaposi Sarcoma 5 45770 -NCIT:C96435 Appendix Leiomyosarcoma 5 45771 -NCIT:C96963 Digestive System Carcinoma 4 45772 -NCIT:C133839 Metastatic Digestive System Carcinoma 5 45773 -NCIT:C150577 Metastatic Gastroesophageal Junction Adenocarcinoma 6 45774 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 7 45775 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 7 45776 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 45777 -NCIT:C151904 Refractory Metastatic Digestive System Carcinoma 6 45778 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 7 45779 -NCIT:C151905 Recurrent Metastatic Digestive System Carcinoma 6 45780 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 7 45781 -NCIT:C153320 Metastatic Gastric Carcinoma 6 45782 -NCIT:C153319 Metastatic Gastric Adenocarcinoma 7 45783 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 45784 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 45785 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 45786 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 45787 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 45788 -NCIT:C165630 Metastatic Proximal Gastric Adenocarcinoma 8 45789 -NCIT:C166121 Oligometastatic Gastric Adenocarcinoma 8 45790 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 45791 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 45792 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 7 45793 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 45794 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 45795 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 45796 -NCIT:C162772 Locally Advanced Gastric Carcinoma 7 45797 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 45798 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 45799 -NCIT:C165299 Advanced Gastric Carcinoma 7 45800 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 45801 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 45802 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 45803 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 45804 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 45805 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 7 45806 -NCIT:C153358 Locally Advanced Digestive System Carcinoma 6 45807 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 7 45808 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 45809 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 45810 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 45811 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 7 45812 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 45813 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 7 45814 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 8 45815 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 45816 -NCIT:C170778 Locally Advanced Rectal Carcinoma 8 45817 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 45818 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 45819 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 45820 -NCIT:C170910 Locally Advanced Colon Carcinoma 8 45821 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 45822 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 45823 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 45824 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 45825 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 45826 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 45827 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 45828 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 45829 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 45830 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 45831 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 45832 -NCIT:C162772 Locally Advanced Gastric Carcinoma 7 45833 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 45834 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 45835 -NCIT:C168976 Locally Advanced Esophageal Carcinoma 7 45836 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 45837 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 45838 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 45839 -NCIT:C168977 Locally Advanced Anal Carcinoma 7 45840 -NCIT:C170459 Locally Advanced Pancreatobiliary Carcinoma 7 45841 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 8 45842 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 45843 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 45844 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 45845 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 45846 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 45847 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 45848 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 45849 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 45850 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 8 45851 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 45852 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 45853 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 45854 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 8 45855 -NCIT:C171298 Locally Advanced Liver Carcinoma 7 45856 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 45857 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 8 45858 -NCIT:C154088 Metastatic Liver Carcinoma 6 45859 -NCIT:C154091 Metastatic Hepatocellular Carcinoma 7 45860 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 8 45861 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 45862 -NCIT:C167336 Advanced Hepatocellular Carcinoma 8 45863 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 45864 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 45865 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 45866 -NCIT:C171298 Locally Advanced Liver Carcinoma 7 45867 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 45868 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 8 45869 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 7 45870 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 8 45871 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 8 45872 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 6 45873 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 7 45874 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 45875 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 45876 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 45877 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 7 45878 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 45879 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 45880 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 45881 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 7 45882 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 45883 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 45884 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 45885 -NCIT:C156073 Metastatic Esophageal Carcinoma 6 45886 -NCIT:C156074 Metastatic Esophageal Adenocarcinoma 7 45887 -NCIT:C166120 Oligometastatic Esophageal Adenocarcinoma 8 45888 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 45889 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 45890 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 45891 -NCIT:C172249 Metastatic Distal Esophagus Adenocarcinoma 8 45892 -NCIT:C156075 Metastatic Esophageal Squamous Cell Carcinoma 7 45893 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 45894 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 45895 -NCIT:C160599 Advanced Esophageal Carcinoma 7 45896 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 45897 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 45898 -NCIT:C168976 Locally Advanced Esophageal Carcinoma 7 45899 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 45900 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 45901 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 45902 -NCIT:C156096 Metastatic Colorectal Carcinoma 6 45903 -NCIT:C142867 Metastatic Microsatellite Stable Colorectal Carcinoma 7 45904 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 8 45905 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 8 45906 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 45907 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 8 45908 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 45909 -NCIT:C153224 Colorectal Carcinoma Metastatic in the Lung 7 45910 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 8 45911 -NCIT:C156097 Metastatic Colon Carcinoma 7 45912 -NCIT:C160819 Metastatic Colon Adenocarcinoma 8 45913 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 45914 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 45915 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 45916 -NCIT:C167238 Advanced Colon Carcinoma 8 45917 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 45918 -NCIT:C170910 Locally Advanced Colon Carcinoma 8 45919 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 45920 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 45921 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 45922 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 8 45923 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 45924 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 8 45925 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 8 45926 -NCIT:C156098 Metastatic Rectal Carcinoma 7 45927 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 8 45928 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 8 45929 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 45930 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 45931 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 45932 -NCIT:C170777 Advanced Rectal Carcinoma 8 45933 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 45934 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 45935 -NCIT:C170778 Locally Advanced Rectal Carcinoma 8 45936 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 45937 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 45938 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 45939 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 8 45940 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 45941 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 45942 -NCIT:C157366 Colorectal Carcinoma Metastatic in the Liver 7 45943 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 8 45944 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 8 45945 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 8 45946 -NCIT:C161048 Metastatic Colorectal Adenocarcinoma 7 45947 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 8 45948 -NCIT:C160819 Metastatic Colon Adenocarcinoma 8 45949 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 45950 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 45951 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 45952 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 8 45953 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 45954 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 45955 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 45956 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 8 45957 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 45958 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 45959 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 45960 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 45961 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 45962 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 45963 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 45964 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 45965 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 45966 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 45967 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 45968 -NCIT:C162475 Advanced Colorectal Carcinoma 7 45969 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 8 45970 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 45971 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 45972 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 45973 -NCIT:C167238 Advanced Colon Carcinoma 8 45974 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 45975 -NCIT:C170777 Advanced Rectal Carcinoma 8 45976 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 45977 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 45978 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 7 45979 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 8 45980 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 45981 -NCIT:C170778 Locally Advanced Rectal Carcinoma 8 45982 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 45983 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 45984 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 45985 -NCIT:C170910 Locally Advanced Colon Carcinoma 8 45986 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 45987 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 45988 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 45989 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 45990 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 45991 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 45992 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 45993 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 45994 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 45995 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 45996 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 45997 -NCIT:C185165 Oligometastatic Colorectal Carcinoma 7 45998 -NCIT:C156746 Advanced Digestive System Carcinoma 6 45999 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 7 46000 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 46001 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 46002 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 7 46003 -NCIT:C160599 Advanced Esophageal Carcinoma 7 46004 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 46005 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 46006 -NCIT:C162475 Advanced Colorectal Carcinoma 7 46007 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 8 46008 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 46009 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 46010 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 46011 -NCIT:C167238 Advanced Colon Carcinoma 8 46012 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 46013 -NCIT:C170777 Advanced Rectal Carcinoma 8 46014 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 46015 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 46016 -NCIT:C165299 Advanced Gastric Carcinoma 7 46017 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 46018 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 46019 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 46020 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 46021 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 46022 -NCIT:C167336 Advanced Hepatocellular Carcinoma 7 46023 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 8 46024 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 8 46025 -NCIT:C170515 Advanced Anal Carcinoma 7 46026 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 8 46027 -NCIT:C171330 Advanced Pancreatobiliary Carcinoma 7 46028 -NCIT:C165452 Advanced Pancreatic Carcinoma 8 46029 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 46030 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 46031 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 8 46032 -NCIT:C171331 Advanced Biliary Tract Carcinoma 8 46033 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 46034 -NCIT:C162752 Advanced Cholangiocarcinoma 10 46035 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 46036 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 46037 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 46038 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 46039 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 46040 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 46041 -NCIT:C182105 Advanced Appendix Adenocarcinoma 7 46042 -NCIT:C162275 Metastatic Appendix Carcinoma 6 46043 -NCIT:C182104 Metastatic Appendix Adenocarcinoma 7 46044 -NCIT:C162274 Metastatic Appendix Mucinous Adenocarcinoma 8 46045 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 46046 -NCIT:C163967 Metastatic Digestive System Mixed Adenoneuroendocrine Carcinoma 6 46047 -NCIT:C170458 Metastatic Pancreatobiliary Carcinoma 6 46048 -NCIT:C156069 Metastatic Pancreatic Carcinoma 7 46049 -NCIT:C165452 Advanced Pancreatic Carcinoma 8 46050 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 46051 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 46052 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 8 46053 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 46054 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 46055 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 46056 -NCIT:C190770 Metastatic Pancreatic Adenosquamous Carcinoma 8 46057 -NCIT:C190771 Metastatic Pancreatic Squamous Cell Carcinoma 8 46058 -NCIT:C8933 Metastatic Pancreatic Adenocarcinoma 8 46059 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 46060 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 46061 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 46062 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 9 46063 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 46064 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 46065 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 10 46066 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 46067 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 46068 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 9 46069 -NCIT:C162751 Metastatic Biliary Tract Carcinoma 7 46070 -NCIT:C142869 Metastatic Bile Duct Carcinoma 8 46071 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 46072 -NCIT:C162752 Advanced Cholangiocarcinoma 10 46073 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 46074 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 46075 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 46076 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 46077 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 46078 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 46079 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 46080 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 46081 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 46082 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 46083 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 46084 -NCIT:C157623 Metastatic Cholangiocarcinoma 9 46085 -NCIT:C162752 Advanced Cholangiocarcinoma 10 46086 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 46087 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 46088 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 46089 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 46090 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 46091 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 46092 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 10 46093 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 46094 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 10 46095 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 46096 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 46097 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 10 46098 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 46099 -NCIT:C185071 Metastatic Extrahepatic Bile Duct Carcinoma 9 46100 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 10 46101 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 11 46102 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 46103 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 46104 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 46105 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 46106 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 46107 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 46108 -NCIT:C162754 Metastatic Gallbladder Carcinoma 8 46109 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 46110 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 46111 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 46112 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 8 46113 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 46114 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 46115 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 46116 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 46117 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 46118 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 46119 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 46120 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 46121 -NCIT:C171331 Advanced Biliary Tract Carcinoma 8 46122 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 46123 -NCIT:C162752 Advanced Cholangiocarcinoma 10 46124 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 46125 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 46126 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 46127 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 46128 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 46129 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 46130 -NCIT:C170459 Locally Advanced Pancreatobiliary Carcinoma 7 46131 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 8 46132 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 46133 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 46134 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 46135 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 46136 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 46137 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 46138 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 46139 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 46140 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 8 46141 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 46142 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 46143 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 46144 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 8 46145 -NCIT:C171326 Metastatic Ampulla of Vater Carcinoma 7 46146 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 8 46147 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 8 46148 -NCIT:C171330 Advanced Pancreatobiliary Carcinoma 7 46149 -NCIT:C165452 Advanced Pancreatic Carcinoma 8 46150 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 46151 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 46152 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 8 46153 -NCIT:C171331 Advanced Biliary Tract Carcinoma 8 46154 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 46155 -NCIT:C162752 Advanced Cholangiocarcinoma 10 46156 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 46157 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 46158 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 46159 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 46160 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 46161 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 46162 -NCIT:C170514 Metastatic Anal Carcinoma 6 46163 -NCIT:C168977 Locally Advanced Anal Carcinoma 7 46164 -NCIT:C169103 Metastatic Anal Squamous Cell Carcinoma 7 46165 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 46166 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 46167 -NCIT:C170515 Advanced Anal Carcinoma 7 46168 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 8 46169 -NCIT:C5612 Metastatic Anal Canal Carcinoma 7 46170 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 46171 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 46172 -NCIT:C8637 Metastatic Small Intestinal Carcinoma 6 46173 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 7 46174 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 46175 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 7 46176 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 46177 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 46178 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 46179 -NCIT:C8934 Metastatic Small Intestinal Adenocarcinoma 7 46180 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 46181 -NCIT:C151906 Refractory Digestive System Carcinoma 5 46182 -NCIT:C137857 Refractory Anal Carcinoma 6 46183 -NCIT:C173334 Refractory Anal Canal Squamous Cell Carcinoma 7 46184 -NCIT:C147982 Refractory Colorectal Carcinoma 6 46185 -NCIT:C153351 Refractory Colon Carcinoma 7 46186 -NCIT:C162155 Refractory Colon Adenocarcinoma 8 46187 -NCIT:C162154 Refractory Colorectal Adenocarcinoma 7 46188 -NCIT:C162155 Refractory Colon Adenocarcinoma 8 46189 -NCIT:C162157 Refractory Rectal Adenocarcinoma 8 46190 -NCIT:C162156 Refractory Rectal Carcinoma 7 46191 -NCIT:C162157 Refractory Rectal Adenocarcinoma 8 46192 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 8 46193 -NCIT:C173332 Refractory Microsatellite Stable Colorectal Carcinoma 7 46194 -NCIT:C147996 Refractory Gastric Carcinoma 6 46195 -NCIT:C167074 Refractory Gastric Adenocarcinoma 7 46196 -NCIT:C151904 Refractory Metastatic Digestive System Carcinoma 6 46197 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 7 46198 -NCIT:C153352 Refractory Liver Carcinoma 6 46199 -NCIT:C162450 Refractory Hepatocellular Carcinoma 7 46200 -NCIT:C188887 Refractory Fibrolamellar Carcinoma 8 46201 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 7 46202 -NCIT:C153356 Refractory Small Intestinal Carcinoma 6 46203 -NCIT:C155937 Refractory Digestive System Neuroendocrine Carcinoma 6 46204 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 7 46205 -NCIT:C162538 Refractory Gastroesophageal Junction Adenocarcinoma 6 46206 -NCIT:C171604 Refractory Esophageal Carcinoma 6 46207 -NCIT:C171606 Refractory Esophageal Squamous Cell Carcinoma 7 46208 -NCIT:C176892 Refractory Esophageal Adenocarcinoma 7 46209 -NCIT:C179177 Refractory Appendix Carcinoma 6 46210 -NCIT:C179178 Refractory Appendix Adenocarcinoma 7 46211 -NCIT:C185305 Refractory Pancreatobiliary Carcinoma 6 46212 -NCIT:C142808 Refractory Pancreatic Carcinoma 7 46213 -NCIT:C162015 Refractory Pancreatic Adenocarcinoma 8 46214 -NCIT:C165450 Refractory Pancreatic Ductal Adenocarcinoma 9 46215 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 9 46216 -NCIT:C162750 Refractory Biliary Tract Carcinoma 7 46217 -NCIT:C153355 Refractory Bile Duct Carcinoma 8 46218 -NCIT:C158101 Refractory Cholangiocarcinoma 9 46219 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 10 46220 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 46221 -NCIT:C175437 Refractory Extrahepatic Bile Duct Carcinoma 9 46222 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 46223 -NCIT:C162753 Refractory Gallbladder Carcinoma 8 46224 -NCIT:C175436 Refractory Ampulla of Vater Carcinoma 7 46225 -NCIT:C155903 Unresectable Digestive System Carcinoma 5 46226 -NCIT:C128563 Unresectable Esophageal Carcinoma 6 46227 -NCIT:C171608 Unresectable Esophageal Squamous Cell Carcinoma 7 46228 -NCIT:C173162 Unresectable Esophageal Adenocarcinoma 7 46229 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 46230 -NCIT:C172248 Unresectable Distal Esophagus Adenocarcinoma 8 46231 -NCIT:C129654 Unresectable Digestive System Adenocarcinoma 6 46232 -NCIT:C150578 Unresectable Gastroesophageal Junction Adenocarcinoma 7 46233 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 46234 -NCIT:C154221 Unresectable Gastric Adenocarcinoma 7 46235 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 46236 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 46237 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 46238 -NCIT:C162016 Unresectable Pancreatic Adenocarcinoma 7 46239 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 8 46240 -NCIT:C172245 Unresectable Pancreatic Ductal Adenocarcinoma 8 46241 -NCIT:C165171 Unresectable Liver and Intrahepatic Bile Duct Carcinoma 7 46242 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 8 46243 -NCIT:C27345 Unresectable Hepatocellular Carcinoma 8 46244 -NCIT:C162602 Unresectable Fibrolamellar Carcinoma 9 46245 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 9 46246 -NCIT:C7878 Localized Unresectable Adult Liver Carcinoma 8 46247 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 9 46248 -NCIT:C171585 Unresectable Colorectal Adenocarcinoma 7 46249 -NCIT:C162116 Unresectable Colon Adenocarcinoma 8 46250 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 46251 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 8 46252 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 46253 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 46254 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 46255 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 46256 -NCIT:C173162 Unresectable Esophageal Adenocarcinoma 7 46257 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 46258 -NCIT:C172248 Unresectable Distal Esophagus Adenocarcinoma 8 46259 -NCIT:C175516 Unresectable Small Intestinal Adenocarcinoma 7 46260 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 8 46261 -NCIT:C189064 Unresectable Gallbladder Adenocarcinoma 7 46262 -NCIT:C189065 Unresectable Ampulla of Vater Adenocarcinoma 7 46263 -NCIT:C27324 Unresectable Cholangiocarcinoma 7 46264 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 8 46265 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 8 46266 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 8 46267 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 8 46268 -NCIT:C155935 Unresectable Digestive System Neuroendocrine Carcinoma 6 46269 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 7 46270 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 7 46271 -NCIT:C159775 Unresectable Gastric Carcinoma 6 46272 -NCIT:C154221 Unresectable Gastric Adenocarcinoma 7 46273 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 46274 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 46275 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 46276 -NCIT:C162600 Unresectable Colorectal Carcinoma 6 46277 -NCIT:C171585 Unresectable Colorectal Adenocarcinoma 7 46278 -NCIT:C162116 Unresectable Colon Adenocarcinoma 8 46279 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 46280 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 8 46281 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 46282 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 46283 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 46284 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 46285 -NCIT:C180406 Unresectable Colon Carcinoma 7 46286 -NCIT:C162116 Unresectable Colon Adenocarcinoma 8 46287 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 46288 -NCIT:C165172 Unresectable Ampulla of Vater Carcinoma 6 46289 -NCIT:C189065 Unresectable Ampulla of Vater Adenocarcinoma 7 46290 -NCIT:C172808 Unresectable Digestive System Mixed Adenoneuroendocrine Carcinoma 6 46291 -NCIT:C173156 Unresectable Anal Squamous Cell Carcinoma 6 46292 -NCIT:C175384 Unresectable Anal Canal Squamous Cell Carcinoma 7 46293 -NCIT:C176042 Unresectable Biliary Tract Carcinoma 6 46294 -NCIT:C171322 Unresectable Bile Duct Carcinoma 7 46295 -NCIT:C27324 Unresectable Cholangiocarcinoma 8 46296 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 9 46297 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 9 46298 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 9 46299 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 9 46300 -NCIT:C7892 Unresectable Extrahepatic Bile Duct Carcinoma 8 46301 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 9 46302 -NCIT:C7890 Unresectable Gallbladder Carcinoma 7 46303 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 8 46304 -NCIT:C189064 Unresectable Gallbladder Adenocarcinoma 8 46305 -NCIT:C5018 Unresectable Pancreatic Carcinoma 6 46306 -NCIT:C162016 Unresectable Pancreatic Adenocarcinoma 7 46307 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 8 46308 -NCIT:C172245 Unresectable Pancreatic Ductal Adenocarcinoma 8 46309 -NCIT:C8638 Unresectable Small Intestinal Carcinoma 6 46310 -NCIT:C175516 Unresectable Small Intestinal Adenocarcinoma 7 46311 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 8 46312 -NCIT:C156909 Resectable Digestive System Carcinoma 5 46313 -NCIT:C156910 Resectable Bile Duct Adenocarcinoma 6 46314 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 7 46315 -NCIT:C27326 Resectable Cholangiocarcinoma 7 46316 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 8 46317 -NCIT:C162257 Resectable Colorectal Carcinoma 6 46318 -NCIT:C167237 Resectable Colon Carcinoma 7 46319 -NCIT:C165293 Resectable Liver and Intrahepatic Bile Duct Carcinoma 6 46320 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 7 46321 -NCIT:C7691 Resectable Hepatocellular Carcinoma 7 46322 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 8 46323 -NCIT:C7877 Localized Resectable Adult Liver Carcinoma 7 46324 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 8 46325 -NCIT:C5099 Resectable Pancreatic Carcinoma 6 46326 -NCIT:C156906 Resectable Pancreatic Adenocarcinoma 7 46327 -NCIT:C151995 Resectable Pancreatic Ductal Adenocarcinoma 8 46328 -NCIT:C156907 Resectable Pancreatic Acinar Cell Carcinoma 8 46329 -NCIT:C157350 Borderline Resectable Pancreatic Adenocarcinoma 8 46330 -NCIT:C157348 Borderline Resectable Pancreatic Carcinoma 7 46331 -NCIT:C157350 Borderline Resectable Pancreatic Adenocarcinoma 8 46332 -NCIT:C174566 Resectable Pancreatic Adenosquamous Carcinoma 7 46333 -NCIT:C8639 Resectable Small Intestinal Carcinoma 6 46334 -NCIT:C27323 Resectable Duodenal Carcinoma 7 46335 -NCIT:C169108 Resectable Periampullary Adenocarcinoma 8 46336 -NCIT:C8640 Resectable Extrahepatic Bile Duct Carcinoma 6 46337 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 7 46338 -NCIT:C166418 Pancreatobiliary Carcinoma 5 46339 -NCIT:C156781 Biliary Tract Carcinoma 6 46340 -NCIT:C156782 Recurrent Biliary Tract Carcinoma 7 46341 -NCIT:C153360 Recurrent Bile Duct Carcinoma 8 46342 -NCIT:C27325 Recurrent Cholangiocarcinoma 9 46343 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 10 46344 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 10 46345 -NCIT:C7893 Recurrent Extrahepatic Bile Duct Carcinoma 9 46346 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 10 46347 -NCIT:C4008 Recurrent Gallbladder Carcinoma 8 46348 -NCIT:C162750 Refractory Biliary Tract Carcinoma 7 46349 -NCIT:C153355 Refractory Bile Duct Carcinoma 8 46350 -NCIT:C158101 Refractory Cholangiocarcinoma 9 46351 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 10 46352 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 46353 -NCIT:C175437 Refractory Extrahepatic Bile Duct Carcinoma 9 46354 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 46355 -NCIT:C162753 Refractory Gallbladder Carcinoma 8 46356 -NCIT:C162751 Metastatic Biliary Tract Carcinoma 7 46357 -NCIT:C142869 Metastatic Bile Duct Carcinoma 8 46358 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 46359 -NCIT:C162752 Advanced Cholangiocarcinoma 10 46360 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 46361 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 46362 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 46363 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 46364 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 46365 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 46366 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 46367 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 46368 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 46369 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 46370 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 46371 -NCIT:C157623 Metastatic Cholangiocarcinoma 9 46372 -NCIT:C162752 Advanced Cholangiocarcinoma 10 46373 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 46374 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 46375 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 46376 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 46377 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 46378 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 46379 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 10 46380 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 46381 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 10 46382 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 46383 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 46384 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 10 46385 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 46386 -NCIT:C185071 Metastatic Extrahepatic Bile Duct Carcinoma 9 46387 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 10 46388 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 11 46389 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 46390 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 46391 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 46392 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 46393 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 46394 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 46395 -NCIT:C162754 Metastatic Gallbladder Carcinoma 8 46396 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 46397 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 46398 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 46399 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 8 46400 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 46401 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 46402 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 46403 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 46404 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 46405 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 46406 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 46407 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 46408 -NCIT:C171331 Advanced Biliary Tract Carcinoma 8 46409 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 46410 -NCIT:C162752 Advanced Cholangiocarcinoma 10 46411 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 46412 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 46413 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 46414 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 46415 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 46416 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 46417 -NCIT:C176042 Unresectable Biliary Tract Carcinoma 7 46418 -NCIT:C171322 Unresectable Bile Duct Carcinoma 8 46419 -NCIT:C27324 Unresectable Cholangiocarcinoma 9 46420 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 10 46421 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 10 46422 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 10 46423 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 10 46424 -NCIT:C7892 Unresectable Extrahepatic Bile Duct Carcinoma 9 46425 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 10 46426 -NCIT:C7890 Unresectable Gallbladder Carcinoma 8 46427 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 9 46428 -NCIT:C189064 Unresectable Gallbladder Adenocarcinoma 9 46429 -NCIT:C27814 Bile Duct Carcinoma 7 46430 -NCIT:C142869 Metastatic Bile Duct Carcinoma 8 46431 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 46432 -NCIT:C162752 Advanced Cholangiocarcinoma 10 46433 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 46434 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 46435 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 46436 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 46437 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 46438 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 46439 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 46440 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 46441 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 46442 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 46443 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 46444 -NCIT:C157623 Metastatic Cholangiocarcinoma 9 46445 -NCIT:C162752 Advanced Cholangiocarcinoma 10 46446 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 46447 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 46448 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 46449 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 46450 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 46451 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 46452 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 10 46453 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 46454 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 10 46455 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 46456 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 46457 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 10 46458 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 46459 -NCIT:C185071 Metastatic Extrahepatic Bile Duct Carcinoma 9 46460 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 10 46461 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 11 46462 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 46463 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 46464 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 46465 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 46466 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 46467 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 46468 -NCIT:C153355 Refractory Bile Duct Carcinoma 8 46469 -NCIT:C158101 Refractory Cholangiocarcinoma 9 46470 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 10 46471 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 46472 -NCIT:C175437 Refractory Extrahepatic Bile Duct Carcinoma 9 46473 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 46474 -NCIT:C153360 Recurrent Bile Duct Carcinoma 8 46475 -NCIT:C27325 Recurrent Cholangiocarcinoma 9 46476 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 10 46477 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 10 46478 -NCIT:C7893 Recurrent Extrahepatic Bile Duct Carcinoma 9 46479 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 10 46480 -NCIT:C171322 Unresectable Bile Duct Carcinoma 8 46481 -NCIT:C27324 Unresectable Cholangiocarcinoma 9 46482 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 10 46483 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 10 46484 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 10 46485 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 10 46486 -NCIT:C7892 Unresectable Extrahepatic Bile Duct Carcinoma 9 46487 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 10 46488 -NCIT:C27813 Bile Duct Adenocarcinoma 8 46489 -NCIT:C156910 Resectable Bile Duct Adenocarcinoma 9 46490 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 10 46491 -NCIT:C27326 Resectable Cholangiocarcinoma 10 46492 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 11 46493 -NCIT:C4130 Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 9 46494 -NCIT:C96946 Extrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 10 46495 -NCIT:C96947 Intrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 10 46496 -NCIT:C4436 Cholangiocarcinoma 9 46497 -NCIT:C157623 Metastatic Cholangiocarcinoma 10 46498 -NCIT:C162752 Advanced Cholangiocarcinoma 11 46499 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 46500 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 46501 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 46502 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 11 46503 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 46504 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 12 46505 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 11 46506 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 46507 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 11 46508 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 46509 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 46510 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 11 46511 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 46512 -NCIT:C158101 Refractory Cholangiocarcinoma 10 46513 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 11 46514 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 11 46515 -NCIT:C27324 Unresectable Cholangiocarcinoma 10 46516 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 11 46517 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 11 46518 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 11 46519 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 46520 -NCIT:C27325 Recurrent Cholangiocarcinoma 10 46521 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 11 46522 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 11 46523 -NCIT:C27326 Resectable Cholangiocarcinoma 10 46524 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 11 46525 -NCIT:C27769 Opisthorchis Viverrini-Related Cholangiocarcinoma 10 46526 -NCIT:C35417 Intrahepatic Cholangiocarcinoma 10 46527 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 11 46528 -NCIT:C134514 Intrahepatic Cholangiocarcinoma by AJCC v7 Stage 11 46529 -NCIT:C88049 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v7 12 46530 -NCIT:C88050 Stage I Intrahepatic Cholangiocarcinoma AJCC v7 12 46531 -NCIT:C88051 Stage II Intrahepatic Cholangiocarcinoma AJCC v7 12 46532 -NCIT:C88052 Stage III Intrahepatic Cholangiocarcinoma AJCC v7 12 46533 -NCIT:C88053 Stage IVA Intrahepatic Cholangiocarcinoma AJCC v7 12 46534 -NCIT:C88054 Stage IVB Intrahepatic Cholangiocarcinoma AJCC v7 12 46535 -NCIT:C134755 Intrahepatic Cholangiocarcinoma by AJCC v8 Stage 11 46536 -NCIT:C134756 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v8 12 46537 -NCIT:C134757 Stage I Intrahepatic Cholangiocarcinoma AJCC v8 12 46538 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 13 46539 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 13 46540 -NCIT:C134760 Stage II Intrahepatic Cholangiocarcinoma AJCC v8 12 46541 -NCIT:C134761 Stage III Intrahepatic Cholangiocarcinoma AJCC v8 12 46542 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 13 46543 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 13 46544 -NCIT:C134764 Stage IV Intrahepatic Cholangiocarcinoma AJCC v8 12 46545 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 11 46546 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 11 46547 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 11 46548 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 46549 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 46550 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 11 46551 -NCIT:C41617 Cholangiolocellular Carcinoma 11 46552 -NCIT:C41618 Mucin-Producing Intrahepatic Cholangiocarcinoma 11 46553 -NCIT:C41619 Signet Ring Cell Intrahepatic Cholangiocarcinoma 11 46554 -NCIT:C41620 Sarcomatoid Intrahepatic Cholangiocarcinoma 11 46555 -NCIT:C43848 Clear Cell Intrahepatic Cholangiocarcinoma 11 46556 -NCIT:C96804 Large Duct Intrahepatic Cholangiocarcinoma 11 46557 -NCIT:C96805 Small Duct Intrahepatic Cholangiocarcinoma 11 46558 -NCIT:C96949 Intrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 11 46559 -NCIT:C36077 Hilar Cholangiocarcinoma 10 46560 -NCIT:C134742 Hilar Cholangiocarcinoma by AJCC v7 Stage 11 46561 -NCIT:C88058 Stage 0 Hilar Cholangiocarcinoma AJCC v7 12 46562 -NCIT:C88059 Stage I Hilar Cholangiocarcinoma AJCC v7 12 46563 -NCIT:C88060 Stage II Hilar Cholangiocarcinoma AJCC v7 12 46564 -NCIT:C88061 Stage IIIA Hilar Cholangiocarcinoma AJCC v7 12 46565 -NCIT:C88062 Stage IIIB Hilar Cholangiocarcinoma AJCC v7 12 46566 -NCIT:C88063 Stage IVA Hilar Cholangiocarcinoma AJCC v7 12 46567 -NCIT:C88064 Stage IVB Hilar Cholangiocarcinoma AJCC v7 12 46568 -NCIT:C134743 Hilar Cholangiocarcinoma by AJCC v8 Stage 11 46569 -NCIT:C134744 Stage 0 Hilar Cholangiocarcinoma AJCC v8 12 46570 -NCIT:C134745 Stage I Hilar Cholangiocarcinoma AJCC v8 12 46571 -NCIT:C134746 Stage II Hilar Cholangiocarcinoma AJCC v8 12 46572 -NCIT:C134747 Stage III Hilar Cholangiocarcinoma AJCC v8 12 46573 -NCIT:C134748 Stage IIIA Hilar Cholangiocarcinoma AJCC v8 13 46574 -NCIT:C134749 Stage IIIB Hilar Cholangiocarcinoma AJCC v8 13 46575 -NCIT:C134750 Stage IIIC Hilar Cholangiocarcinoma AJCC v8 13 46576 -NCIT:C134751 Stage IV Hilar Cholangiocarcinoma AJCC v8 12 46577 -NCIT:C134752 Stage IVA Hilar Cholangiocarcinoma AJCC v8 13 46578 -NCIT:C134753 Stage IVB Hilar Cholangiocarcinoma AJCC v8 13 46579 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 11 46580 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 11 46581 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 46582 -NCIT:C7976 Distal Bile Duct Adenocarcinoma 10 46583 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 11 46584 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 11 46585 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 46586 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 11 46587 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 11 46588 -NCIT:C8265 Adult Cholangiocarcinoma 10 46589 -NCIT:C7975 Extrahepatic Bile Duct Adenocarcinoma 9 46590 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 10 46591 -NCIT:C5775 Extrahepatic Bile Duct Clear Cell Adenocarcinoma 10 46592 -NCIT:C5776 Extrahepatic Bile Duct Signet Ring Cell Carcinoma 10 46593 -NCIT:C5846 Extrahepatic Bile Duct Mucinous Adenocarcinoma 10 46594 -NCIT:C7976 Distal Bile Duct Adenocarcinoma 10 46595 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 11 46596 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 11 46597 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 46598 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 11 46599 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 11 46600 -NCIT:C96936 Extrahepatic Bile Duct Adenocarcinoma, Biliary Type 10 46601 -NCIT:C96937 Extrahepatic Bile Duct Adenocarcinoma, Gastric Foveolar Type 10 46602 -NCIT:C96938 Extrahepatic Bile Duct Adenocarcinoma, Intestinal Type 10 46603 -NCIT:C96946 Extrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 10 46604 -NCIT:C96948 Extrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 10 46605 -NCIT:C96810 Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 9 46606 -NCIT:C96948 Extrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 10 46607 -NCIT:C96949 Intrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 10 46608 -NCIT:C3860 Extrahepatic Bile Duct Carcinoma 8 46609 -NCIT:C175437 Refractory Extrahepatic Bile Duct Carcinoma 9 46610 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 46611 -NCIT:C185071 Metastatic Extrahepatic Bile Duct Carcinoma 9 46612 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 10 46613 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 11 46614 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 46615 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 46616 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 46617 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 46618 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 46619 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 46620 -NCIT:C5777 Extrahepatic Bile Duct Squamous Cell Carcinoma 9 46621 -NCIT:C5778 Extrahepatic Bile Duct Adenosquamous Carcinoma 9 46622 -NCIT:C5780 Extrahepatic Bile Duct Undifferentiated Carcinoma 9 46623 -NCIT:C5862 Extrahepatic Bile Duct Mucoepidermoid Carcinoma 9 46624 -NCIT:C7109 Distal Bile Duct Carcinoma 9 46625 -NCIT:C134810 Distal Bile Duct Cancer by AJCC v7 Stage 10 46626 -NCIT:C88089 Stage 0 Distal Bile Duct Cancer AJCC v7 11 46627 -NCIT:C88090 Stage IA Distal Bile Duct Cancer AJCC v7 11 46628 -NCIT:C88091 Stage IB Distal Bile Duct Cancer AJCC v7 11 46629 -NCIT:C88092 Stage IIA Distal Bile Duct Cancer AJCC v7 11 46630 -NCIT:C88093 Stage IIB Distal Bile Duct Cancer AJCC v7 11 46631 -NCIT:C88094 Stage III Distal Bile Duct Cancer AJCC v7 11 46632 -NCIT:C88095 Stage IV Distal Bile Duct Cancer AJCC v7 11 46633 -NCIT:C134811 Distal Bile Duct Cancer by AJCC v8 Stage 10 46634 -NCIT:C134812 Stage 0 Distal Bile Duct Cancer AJCC v8 11 46635 -NCIT:C134813 Stage I Distal Bile Duct Cancer AJCC v8 11 46636 -NCIT:C134814 Stage II Distal Bile Duct Cancer AJCC v8 11 46637 -NCIT:C134815 Stage IIA Distal Bile Duct Cancer AJCC v8 12 46638 -NCIT:C134816 Stage IIB Distal Bile Duct Cancer AJCC v8 12 46639 -NCIT:C134817 Stage III Distal Bile Duct Cancer AJCC v8 11 46640 -NCIT:C134818 Stage IIIA Distal Bile Duct Cancer AJCC v8 12 46641 -NCIT:C134819 Stage IIIB Distal Bile Duct Cancer AJCC v8 12 46642 -NCIT:C134820 Stage IV Distal Bile Duct Cancer AJCC v8 11 46643 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 10 46644 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 11 46645 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 46646 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 46647 -NCIT:C7976 Distal Bile Duct Adenocarcinoma 10 46648 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 11 46649 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 11 46650 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 46651 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 11 46652 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 11 46653 -NCIT:C7891 Localized Extrahepatic Bile Duct Carcinoma 9 46654 -NCIT:C7892 Unresectable Extrahepatic Bile Duct Carcinoma 9 46655 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 10 46656 -NCIT:C7893 Recurrent Extrahepatic Bile Duct Carcinoma 9 46657 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 10 46658 -NCIT:C7975 Extrahepatic Bile Duct Adenocarcinoma 9 46659 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 10 46660 -NCIT:C5775 Extrahepatic Bile Duct Clear Cell Adenocarcinoma 10 46661 -NCIT:C5776 Extrahepatic Bile Duct Signet Ring Cell Carcinoma 10 46662 -NCIT:C5846 Extrahepatic Bile Duct Mucinous Adenocarcinoma 10 46663 -NCIT:C7976 Distal Bile Duct Adenocarcinoma 10 46664 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 11 46665 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 11 46666 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 46667 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 11 46668 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 11 46669 -NCIT:C96936 Extrahepatic Bile Duct Adenocarcinoma, Biliary Type 10 46670 -NCIT:C96937 Extrahepatic Bile Duct Adenocarcinoma, Gastric Foveolar Type 10 46671 -NCIT:C96938 Extrahepatic Bile Duct Adenocarcinoma, Intestinal Type 10 46672 -NCIT:C96946 Extrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 10 46673 -NCIT:C96948 Extrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 10 46674 -NCIT:C8640 Resectable Extrahepatic Bile Duct Carcinoma 9 46675 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 10 46676 -NCIT:C96939 Extrahepatic Bile Duct Carcinosarcoma 9 46677 -NCIT:C96956 Extrahepatic Bile Duct Neuroendocrine Carcinoma 9 46678 -NCIT:C5845 Extrahepatic Bile Duct Small Cell Neuroendocrine Carcinoma 10 46679 -NCIT:C96958 Extrahepatic Bile Duct Large Cell Neuroendocrine Carcinoma 10 46680 -NCIT:C96959 Extrahepatic Bile Duct Mixed Adenoneuroendocrine Carcinoma 9 46681 -NCIT:C3844 Gallbladder Carcinoma 7 46682 -NCIT:C134660 Gallbladder Cancer by AJCC v8 Stage 8 46683 -NCIT:C134663 Stage 0 Gallbladder Cancer AJCC v8 9 46684 -NCIT:C134665 Stage I Gallbladder Cancer AJCC v8 9 46685 -NCIT:C134667 Stage II Gallbladder Cancer AJCC v8 9 46686 -NCIT:C134670 Stage IIA Gallbladder Cancer AJCC v8 10 46687 -NCIT:C134671 Stage IIB Gallbladder Cancer AJCC v8 10 46688 -NCIT:C134672 Stage III Gallbladder Cancer AJCC v8 9 46689 -NCIT:C134673 Stage IIIA Gallbladder Cancer AJCC v8 10 46690 -NCIT:C134674 Stage IIIB Gallbladder Cancer AJCC v8 10 46691 -NCIT:C134675 Stage IV Gallbladder Cancer AJCC v8 9 46692 -NCIT:C134676 Stage IVA Gallbladder Cancer AJCC v8 10 46693 -NCIT:C134678 Stage IVB Gallbladder Cancer AJCC v8 10 46694 -NCIT:C162753 Refractory Gallbladder Carcinoma 8 46695 -NCIT:C162754 Metastatic Gallbladder Carcinoma 8 46696 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 46697 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 46698 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 46699 -NCIT:C175214 Incidental Gallbladder Carcinoma 8 46700 -NCIT:C4008 Recurrent Gallbladder Carcinoma 8 46701 -NCIT:C7356 Gallbladder Adenosquamous Carcinoma 8 46702 -NCIT:C7649 Localized Gallbladder Carcinoma 8 46703 -NCIT:C7890 Unresectable Gallbladder Carcinoma 8 46704 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 9 46705 -NCIT:C189064 Unresectable Gallbladder Adenocarcinoma 9 46706 -NCIT:C90512 Gallbladder Cancer by AJCC v6 Stage 8 46707 -NCIT:C4439 Stage 0 Gallbladder Cancer AJCC v6 and v7 9 46708 -NCIT:C5737 Stage I Gallbladder Cancer AJCC v6 9 46709 -NCIT:C5738 Stage II Gallbladder Cancer AJCC v6 9 46710 -NCIT:C5739 Stage III Gallbladder Cancer AJCC v6 9 46711 -NCIT:C5740 Stage IV Gallbladder Cancer AJCC v6 9 46712 -NCIT:C91229 Gallbladder Cancer by AJCC v7 Stage 8 46713 -NCIT:C4439 Stage 0 Gallbladder Cancer AJCC v6 and v7 9 46714 -NCIT:C90216 Stage I Gallbladder Cancer AJCC v7 9 46715 -NCIT:C90217 Stage II Gallbladder Cancer AJCC v7 9 46716 -NCIT:C90218 Stage III Gallbladder Cancer AJCC v7 9 46717 -NCIT:C88056 Stage IIIA Gallbladder Cancer AJCC v7 10 46718 -NCIT:C88057 Stage IIIB Gallbladder Cancer AJCC v7 10 46719 -NCIT:C90219 Stage IV Gallbladder Cancer AJCC v7 9 46720 -NCIT:C5741 Stage IVA Gallbladder Cancer AJCC v7 10 46721 -NCIT:C5742 Stage IVB Gallbladder Cancer AJCC v7 10 46722 -NCIT:C9166 Gallbladder Adenocarcinoma 8 46723 -NCIT:C189064 Unresectable Gallbladder Adenocarcinoma 9 46724 -NCIT:C43604 Gallbladder Adenocarcinoma, Intestinal-Type 9 46725 -NCIT:C43605 Gallbladder Clear Cell Adenocarcinoma 9 46726 -NCIT:C5743 Gallbladder Intracholecystic Papillary Neoplasm with an Associated Invasive Carcinoma 9 46727 -NCIT:C5744 Gallbladder Mucinous Adenocarcinoma 9 46728 -NCIT:C5745 Gallbladder Signet Ring Cell Carcinoma 9 46729 -NCIT:C9169 Gallbladder Adenocarcinoma with Squamous Metaplasia 9 46730 -NCIT:C96887 Gallbladder Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 9 46731 -NCIT:C96890 Gallbladder Hepatoid Adenocarcinoma 9 46732 -NCIT:C96891 Gallbladder Cribriform Carcinoma 9 46733 -NCIT:C96915 Gallbladder Adenocarcinoma, Biliary Type 9 46734 -NCIT:C96916 Gallbladder Adenocarcinoma, Gastric Foveolar Type 9 46735 -NCIT:C9167 Gallbladder Undifferentiated Carcinoma 8 46736 -NCIT:C5838 Gallbladder Undifferentiated Carcinoma, Spindle and Giant Cell Type 9 46737 -NCIT:C9170 Gallbladder Squamous Cell Carcinoma 8 46738 -NCIT:C96888 Gallbladder Carcinosarcoma 8 46739 -NCIT:C96919 Gallbladder Neuroendocrine Carcinoma 8 46740 -NCIT:C6763 Gallbladder Small Cell Neuroendocrine Carcinoma 9 46741 -NCIT:C96921 Gallbladder Large Cell Neuroendocrine Carcinoma 9 46742 -NCIT:C96927 Gallbladder Mixed Adenoneuroendocrine Carcinoma 8 46743 -NCIT:C96928 Gallbladder Goblet Cell Carcinoid 9 46744 -NCIT:C67493 High-Grade Biliary Intraepithelial Neoplasia 7 46745 -NCIT:C170458 Metastatic Pancreatobiliary Carcinoma 6 46746 -NCIT:C156069 Metastatic Pancreatic Carcinoma 7 46747 -NCIT:C165452 Advanced Pancreatic Carcinoma 8 46748 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 46749 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 46750 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 8 46751 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 46752 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 46753 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 46754 -NCIT:C190770 Metastatic Pancreatic Adenosquamous Carcinoma 8 46755 -NCIT:C190771 Metastatic Pancreatic Squamous Cell Carcinoma 8 46756 -NCIT:C8933 Metastatic Pancreatic Adenocarcinoma 8 46757 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 46758 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 46759 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 46760 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 9 46761 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 46762 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 46763 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 10 46764 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 46765 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 46766 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 9 46767 -NCIT:C162751 Metastatic Biliary Tract Carcinoma 7 46768 -NCIT:C142869 Metastatic Bile Duct Carcinoma 8 46769 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 46770 -NCIT:C162752 Advanced Cholangiocarcinoma 10 46771 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 46772 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 46773 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 46774 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 46775 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 46776 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 46777 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 46778 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 46779 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 46780 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 46781 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 46782 -NCIT:C157623 Metastatic Cholangiocarcinoma 9 46783 -NCIT:C162752 Advanced Cholangiocarcinoma 10 46784 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 46785 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 46786 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 46787 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 46788 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 46789 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 46790 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 10 46791 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 46792 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 10 46793 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 46794 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 46795 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 10 46796 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 46797 -NCIT:C185071 Metastatic Extrahepatic Bile Duct Carcinoma 9 46798 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 10 46799 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 11 46800 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 46801 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 46802 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 46803 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 46804 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 46805 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 46806 -NCIT:C162754 Metastatic Gallbladder Carcinoma 8 46807 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 46808 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 46809 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 46810 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 8 46811 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 46812 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 46813 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 46814 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 46815 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 46816 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 46817 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 46818 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 46819 -NCIT:C171331 Advanced Biliary Tract Carcinoma 8 46820 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 46821 -NCIT:C162752 Advanced Cholangiocarcinoma 10 46822 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 46823 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 46824 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 46825 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 46826 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 46827 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 46828 -NCIT:C170459 Locally Advanced Pancreatobiliary Carcinoma 7 46829 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 8 46830 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 46831 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 46832 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 46833 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 46834 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 46835 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 46836 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 46837 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 46838 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 8 46839 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 46840 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 46841 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 46842 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 8 46843 -NCIT:C171326 Metastatic Ampulla of Vater Carcinoma 7 46844 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 8 46845 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 8 46846 -NCIT:C171330 Advanced Pancreatobiliary Carcinoma 7 46847 -NCIT:C165452 Advanced Pancreatic Carcinoma 8 46848 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 46849 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 46850 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 8 46851 -NCIT:C171331 Advanced Biliary Tract Carcinoma 8 46852 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 46853 -NCIT:C162752 Advanced Cholangiocarcinoma 10 46854 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 46855 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 46856 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 46857 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 46858 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 46859 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 46860 -NCIT:C185305 Refractory Pancreatobiliary Carcinoma 6 46861 -NCIT:C142808 Refractory Pancreatic Carcinoma 7 46862 -NCIT:C162015 Refractory Pancreatic Adenocarcinoma 8 46863 -NCIT:C165450 Refractory Pancreatic Ductal Adenocarcinoma 9 46864 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 9 46865 -NCIT:C162750 Refractory Biliary Tract Carcinoma 7 46866 -NCIT:C153355 Refractory Bile Duct Carcinoma 8 46867 -NCIT:C158101 Refractory Cholangiocarcinoma 9 46868 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 10 46869 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 46870 -NCIT:C175437 Refractory Extrahepatic Bile Duct Carcinoma 9 46871 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 46872 -NCIT:C162753 Refractory Gallbladder Carcinoma 8 46873 -NCIT:C175436 Refractory Ampulla of Vater Carcinoma 7 46874 -NCIT:C3850 Pancreatic Carcinoma 6 46875 -NCIT:C134902 Pancreatic Cancer by AJCC v6 and v7 Stage 7 46876 -NCIT:C5711 Stage IV Pancreatic Cancer AJCC v6 and v7 8 46877 -NCIT:C5729 Stage 0 Pancreatic Cancer AJCC v6 and v7 8 46878 -NCIT:C7785 Stage I Pancreatic Cancer AJCC v6 and v7 8 46879 -NCIT:C88100 Stage IA Pancreatic Cancer AJCC v6 and v7 9 46880 -NCIT:C88101 Stage IB Pancreatic Cancer AJCC v6 and v7 9 46881 -NCIT:C7786 Stage II Pancreatic Cancer AJCC v6 and v7 8 46882 -NCIT:C88102 Stage IIA Pancreatic Cancer AJCC v6 and v7 9 46883 -NCIT:C88103 Stage IIB Pancreatic Cancer AJCC v6 and v7 9 46884 -NCIT:C7787 Stage III Pancreatic Cancer AJCC v6 and v7 8 46885 -NCIT:C134909 Pancreatic Cancer by AJCC v8 Stage 7 46886 -NCIT:C134914 Stage 0 Pancreatic Cancer AJCC v8 8 46887 -NCIT:C134915 Stage I Pancreatic Cancer AJCC v8 8 46888 -NCIT:C134917 Stage IA Pancreatic Cancer AJCC v8 9 46889 -NCIT:C134920 Stage IB Pancreatic Cancer AJCC v8 9 46890 -NCIT:C134921 Stage II Pancreatic Cancer AJCC v8 8 46891 -NCIT:C134925 Stage IIA Pancreatic Cancer AJCC v8 9 46892 -NCIT:C134927 Stage IIB Pancreatic Cancer AJCC v8 9 46893 -NCIT:C134928 Stage III Pancreatic Cancer AJCC v8 8 46894 -NCIT:C134930 Stage IV Pancreatic Cancer AJCC v8 8 46895 -NCIT:C142808 Refractory Pancreatic Carcinoma 7 46896 -NCIT:C162015 Refractory Pancreatic Adenocarcinoma 8 46897 -NCIT:C165450 Refractory Pancreatic Ductal Adenocarcinoma 9 46898 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 9 46899 -NCIT:C156069 Metastatic Pancreatic Carcinoma 7 46900 -NCIT:C165452 Advanced Pancreatic Carcinoma 8 46901 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 46902 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 46903 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 8 46904 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 46905 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 46906 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 46907 -NCIT:C190770 Metastatic Pancreatic Adenosquamous Carcinoma 8 46908 -NCIT:C190771 Metastatic Pancreatic Squamous Cell Carcinoma 8 46909 -NCIT:C8933 Metastatic Pancreatic Adenocarcinoma 8 46910 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 46911 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 46912 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 46913 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 9 46914 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 46915 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 46916 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 10 46917 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 46918 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 46919 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 9 46920 -NCIT:C173813 Pancreatic Squamous Cell Carcinoma 7 46921 -NCIT:C190771 Metastatic Pancreatic Squamous Cell Carcinoma 8 46922 -NCIT:C43298 Hereditary Pancreatic Carcinoma 7 46923 -NCIT:C45843 Pancreatic Mixed Adenoneuroendocrine Carcinoma 7 46924 -NCIT:C6878 Pancreatic Mixed Acinar-Neuroendocrine Carcinoma 8 46925 -NCIT:C6879 Pancreatic Mixed Ductal-Neuroendocrine Carcinoma 8 46926 -NCIT:C95460 Pancreatic Mixed Acinar-Ductal Neuroendocrine Carcinoma 8 46927 -NCIT:C5018 Unresectable Pancreatic Carcinoma 7 46928 -NCIT:C162016 Unresectable Pancreatic Adenocarcinoma 8 46929 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 9 46930 -NCIT:C172245 Unresectable Pancreatic Ductal Adenocarcinoma 9 46931 -NCIT:C5099 Resectable Pancreatic Carcinoma 7 46932 -NCIT:C156906 Resectable Pancreatic Adenocarcinoma 8 46933 -NCIT:C151995 Resectable Pancreatic Ductal Adenocarcinoma 9 46934 -NCIT:C156907 Resectable Pancreatic Acinar Cell Carcinoma 9 46935 -NCIT:C157350 Borderline Resectable Pancreatic Adenocarcinoma 9 46936 -NCIT:C157348 Borderline Resectable Pancreatic Carcinoma 8 46937 -NCIT:C157350 Borderline Resectable Pancreatic Adenocarcinoma 9 46938 -NCIT:C174566 Resectable Pancreatic Adenosquamous Carcinoma 8 46939 -NCIT:C5721 Pancreatic Adenosquamous Carcinoma 7 46940 -NCIT:C174566 Resectable Pancreatic Adenosquamous Carcinoma 8 46941 -NCIT:C190770 Metastatic Pancreatic Adenosquamous Carcinoma 8 46942 -NCIT:C7626 Recurrent Pancreatic Carcinoma 7 46943 -NCIT:C155742 Recurrent Pancreatic Adenocarcinoma 8 46944 -NCIT:C153569 Recurrent Pancreatic Acinar Cell Carcinoma 9 46945 -NCIT:C153619 Recurrent Pancreatic Ductal Adenocarcinoma 9 46946 -NCIT:C153620 Recurrent Pancreatic Cystadenocarcinoma 9 46947 -NCIT:C8294 Pancreatic Adenocarcinoma 7 46948 -NCIT:C155742 Recurrent Pancreatic Adenocarcinoma 8 46949 -NCIT:C153569 Recurrent Pancreatic Acinar Cell Carcinoma 9 46950 -NCIT:C153619 Recurrent Pancreatic Ductal Adenocarcinoma 9 46951 -NCIT:C153620 Recurrent Pancreatic Cystadenocarcinoma 9 46952 -NCIT:C156906 Resectable Pancreatic Adenocarcinoma 8 46953 -NCIT:C151995 Resectable Pancreatic Ductal Adenocarcinoma 9 46954 -NCIT:C156907 Resectable Pancreatic Acinar Cell Carcinoma 9 46955 -NCIT:C157350 Borderline Resectable Pancreatic Adenocarcinoma 9 46956 -NCIT:C162015 Refractory Pancreatic Adenocarcinoma 8 46957 -NCIT:C165450 Refractory Pancreatic Ductal Adenocarcinoma 9 46958 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 9 46959 -NCIT:C162016 Unresectable Pancreatic Adenocarcinoma 8 46960 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 9 46961 -NCIT:C172245 Unresectable Pancreatic Ductal Adenocarcinoma 9 46962 -NCIT:C169041 Localized Pancreatic Adenocarcinoma 8 46963 -NCIT:C189009 Localized Pancreatic Ductal Adenocarcinoma 9 46964 -NCIT:C172813 Invasive Pancreatic Micropapillary Adenocarcinoma 8 46965 -NCIT:C3874 Pancreatic Cystadenocarcinoma 8 46966 -NCIT:C153620 Recurrent Pancreatic Cystadenocarcinoma 9 46967 -NCIT:C5724 Pancreatic Serous Cystadenocarcinoma 9 46968 -NCIT:C5727 Pancreatic Acinar Cell Cystadenocarcinoma 9 46969 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 10 46970 -NCIT:C5726 Pancreatic Intraductal Papillary-Mucinous Neoplasm with an Associated Invasive Carcinoma 8 46971 -NCIT:C7977 Pancreatic Acinar Cell Carcinoma 8 46972 -NCIT:C153569 Recurrent Pancreatic Acinar Cell Carcinoma 9 46973 -NCIT:C156907 Resectable Pancreatic Acinar Cell Carcinoma 9 46974 -NCIT:C190024 Childhood Pancreatic Acinar Cell Carcinoma 9 46975 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 10 46976 -NCIT:C5727 Pancreatic Acinar Cell Cystadenocarcinoma 9 46977 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 10 46978 -NCIT:C8933 Metastatic Pancreatic Adenocarcinoma 8 46979 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 46980 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 46981 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 46982 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 9 46983 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 46984 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 46985 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 10 46986 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 46987 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 46988 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 9 46989 -NCIT:C9120 Pancreatic Ductal Adenocarcinoma 8 46990 -NCIT:C151995 Resectable Pancreatic Ductal Adenocarcinoma 9 46991 -NCIT:C153619 Recurrent Pancreatic Ductal Adenocarcinoma 9 46992 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 9 46993 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 46994 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 46995 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 10 46996 -NCIT:C158961 Early Stage Pancreatic Ductal Adenocarcinoma 9 46997 -NCIT:C165450 Refractory Pancreatic Ductal Adenocarcinoma 9 46998 -NCIT:C172245 Unresectable Pancreatic Ductal Adenocarcinoma 9 46999 -NCIT:C172811 Pancreatic Poorly Cohesive Adenocarcinoma 9 47000 -NCIT:C5720 Pancreatic Signet Ring Cell Carcinoma 10 47001 -NCIT:C189009 Localized Pancreatic Ductal Adenocarcinoma 9 47002 -NCIT:C37214 Pancreatic Colloid Carcinoma 9 47003 -NCIT:C37256 Pancreatic Foamy Gland Adenocarcinoma 9 47004 -NCIT:C5722 Pancreatic Undifferentiated Carcinoma 9 47005 -NCIT:C172812 Pancreatic Undifferentiated Carcinoma with Rhabdoid Cells 10 47006 -NCIT:C5723 Pancreatic Undifferentiated Carcinoma with Osteoclast-Like Giant Cells 10 47007 -NCIT:C95426 Pancreatic Well Differentiated Ductal Adenocarcinoma 9 47008 -NCIT:C95427 Pancreatic Moderately Differentiated Ductal Adenocarcinoma 9 47009 -NCIT:C95428 Pancreatic Poorly Differentiated Ductal Adenocarcinoma 9 47010 -NCIT:C95465 Pancreatic Hepatoid Adenocarcinoma 9 47011 -NCIT:C95466 Pancreatic Medullary Carcinoma 9 47012 -NCIT:C95458 Pancreatic Mixed Acinar-Ductal Carcinoma 8 47013 -NCIT:C95507 Pancreatic Intraductal Tubulopapillary Neoplasm with an Associated Invasive Carcinoma 8 47014 -NCIT:C3908 Ampulla of Vater Carcinoma 6 47015 -NCIT:C134863 Ampulla of Vater Cancer by AJCC v7 Stage 7 47016 -NCIT:C4444 Stage 0 Ampulla of Vater Cancer AJCC v7 8 47017 -NCIT:C6651 Stage I Ampulla of Vater Cancer AJCC v7 8 47018 -NCIT:C88096 Stage IA Ampulla of Vater Cancer AJCC v7 9 47019 -NCIT:C88097 Stage IB Ampulla of Vater Cancer AJCC v7 9 47020 -NCIT:C6652 Stage II Ampulla of Vater Cancer AJCC v7 8 47021 -NCIT:C88098 Stage IIA Ampulla of Vater Cancer AJCC v7 9 47022 -NCIT:C88099 Stage IIB Ampulla of Vater Cancer AJCC v7 9 47023 -NCIT:C6653 Stage III Ampulla of Vater Cancer AJCC v7 8 47024 -NCIT:C6654 Stage IV Ampulla of Vater Cancer AJCC v7 8 47025 -NCIT:C134864 Ampulla of Vater Cancer by AJCC v8 Stage 7 47026 -NCIT:C134865 Stage 0 Ampulla of Vater Cancer AJCC v8 8 47027 -NCIT:C134866 Stage I Ampulla of Vater Cancer AJCC v8 8 47028 -NCIT:C134867 Stage IA Ampulla of Vater Cancer AJCC v8 9 47029 -NCIT:C134868 Stage IB Ampulla of Vater Cancer AJCC v8 9 47030 -NCIT:C134869 Stage II Ampulla of Vater Cancer AJCC v8 8 47031 -NCIT:C134870 Stage IIA Ampulla of Vater Cancer AJCC v8 9 47032 -NCIT:C134871 Stage IIB Ampulla of Vater Cancer AJCC v8 9 47033 -NCIT:C134872 Stage III Ampulla of Vater Cancer AJCC v8 8 47034 -NCIT:C134873 Stage IIIA Ampulla of Vater Cancer AJCC v8 9 47035 -NCIT:C134874 Stage IIIB Ampulla of Vater Cancer AJCC v8 9 47036 -NCIT:C134875 Stage IV Ampulla of Vater Cancer AJCC v8 8 47037 -NCIT:C165172 Unresectable Ampulla of Vater Carcinoma 7 47038 -NCIT:C189065 Unresectable Ampulla of Vater Adenocarcinoma 8 47039 -NCIT:C171326 Metastatic Ampulla of Vater Carcinoma 7 47040 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 8 47041 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 8 47042 -NCIT:C175436 Refractory Ampulla of Vater Carcinoma 7 47043 -NCIT:C27417 Ampulla of Vater Squamous Cell Carcinoma 7 47044 -NCIT:C27418 Ampulla of Vater Adenosquamous Carcinoma 7 47045 -NCIT:C27419 Ampulla of Vater Undifferentiated Carcinoma 7 47046 -NCIT:C95965 Ampulla of Vater Undifferentiated Carcinoma with Osteoclast-Like Giant Cells 8 47047 -NCIT:C6650 Ampulla of Vater Adenocarcinoma 7 47048 -NCIT:C153574 Recurrent Ampulla of Vater Adenocarcinoma 8 47049 -NCIT:C189065 Unresectable Ampulla of Vater Adenocarcinoma 8 47050 -NCIT:C27414 Ampulla of Vater Clear Cell Adenocarcinoma 8 47051 -NCIT:C27415 Ampulla of Vater Intestinal-Type Adenocarcinoma 8 47052 -NCIT:C27416 Ampulla of Vater Mucinous Adenocarcinoma 8 47053 -NCIT:C6656 Ampulla of Vater Signet Ring Cell Carcinoma 8 47054 -NCIT:C95963 Ampulla of Vater Pancreatobiliary Type Adenocarcinoma 8 47055 -NCIT:C95966 Ampulla of Vater Hepatoid Adenocarcinoma 8 47056 -NCIT:C95967 Ampulla of Vater Invasive Papillary Adenocarcinoma 8 47057 -NCIT:C95984 Ampulla of Vater Neuroendocrine Carcinoma 7 47058 -NCIT:C6655 Ampulla of Vater Small Cell Neuroendocrine Carcinoma 8 47059 -NCIT:C95985 Ampulla of Vater Large Cell Neuroendocrine Carcinoma 8 47060 -NCIT:C95986 Ampulla of Vater Mixed Adenoneuroendocrine Carcinoma 7 47061 -NCIT:C2955 Colorectal Carcinoma 5 47062 -NCIT:C118808 Childhood Colorectal Carcinoma 6 47063 -NCIT:C118823 Childhood Rectal Carcinoma 7 47064 -NCIT:C134180 Colorectal Cancer by AJCC v8 Stage 6 47065 -NCIT:C134182 Stage 0 Colorectal Cancer AJCC v8 7 47066 -NCIT:C134271 Stage 0 Colon Cancer AJCC v8 8 47067 -NCIT:C134291 Stage 0 Rectal Cancer AJCC v8 8 47068 -NCIT:C134185 Stage I Colorectal Cancer AJCC v8 7 47069 -NCIT:C134273 Stage I Colon Cancer AJCC v8 8 47070 -NCIT:C134292 Stage I Rectal Cancer AJCC v8 8 47071 -NCIT:C134186 Stage II Colorectal Cancer AJCC v8 7 47072 -NCIT:C134187 Stage IIA Colorectal Cancer AJCC v8 8 47073 -NCIT:C134280 Stage IIA Colon Cancer AJCC v8 9 47074 -NCIT:C134294 Stage IIA Rectal Cancer AJCC v8 9 47075 -NCIT:C134188 Stage IIB Colorectal Cancer AJCC v8 8 47076 -NCIT:C134281 Stage IIB Colon Cancer AJCC v8 9 47077 -NCIT:C134295 Stage IIB Rectal Cancer AJCC v8 9 47078 -NCIT:C134190 Stage IIC Colorectal Cancer AJCC v8 8 47079 -NCIT:C134282 Stage IIC Colon Cancer AJCC v8 9 47080 -NCIT:C134296 Stage IIC Rectal Cancer AJCC v8 9 47081 -NCIT:C134274 Stage II Colon Cancer AJCC v8 8 47082 -NCIT:C134280 Stage IIA Colon Cancer AJCC v8 9 47083 -NCIT:C134281 Stage IIB Colon Cancer AJCC v8 9 47084 -NCIT:C134282 Stage IIC Colon Cancer AJCC v8 9 47085 -NCIT:C134293 Stage II Rectal Cancer AJCC v8 8 47086 -NCIT:C134294 Stage IIA Rectal Cancer AJCC v8 9 47087 -NCIT:C134295 Stage IIB Rectal Cancer AJCC v8 9 47088 -NCIT:C134296 Stage IIC Rectal Cancer AJCC v8 9 47089 -NCIT:C134191 Stage III Colorectal Cancer AJCC v8 7 47090 -NCIT:C134192 Stage IIIA Colorectal Cancer AJCC v8 8 47091 -NCIT:C134284 Stage IIIA Colon Cancer AJCC v8 9 47092 -NCIT:C134298 Stage IIIA Rectal Cancer AJCC v8 9 47093 -NCIT:C134193 Stage IIIB Colorectal Cancer AJCC v8 8 47094 -NCIT:C134285 Stage IIIB Colon Cancer AJCC v8 9 47095 -NCIT:C134299 Stage IIIB Rectal Cancer AJCC v8 9 47096 -NCIT:C134194 Stage IIIC Colorectal Cancer AJCC v8 8 47097 -NCIT:C134286 Stage IIIC Colon Cancer AJCC v8 9 47098 -NCIT:C134300 Stage IIIC Rectal Cancer AJCC v8 9 47099 -NCIT:C134283 Stage III Colon Cancer AJCC v8 8 47100 -NCIT:C134284 Stage IIIA Colon Cancer AJCC v8 9 47101 -NCIT:C134285 Stage IIIB Colon Cancer AJCC v8 9 47102 -NCIT:C134286 Stage IIIC Colon Cancer AJCC v8 9 47103 -NCIT:C134297 Stage III Rectal Cancer AJCC v8 8 47104 -NCIT:C134298 Stage IIIA Rectal Cancer AJCC v8 9 47105 -NCIT:C134299 Stage IIIB Rectal Cancer AJCC v8 9 47106 -NCIT:C134300 Stage IIIC Rectal Cancer AJCC v8 9 47107 -NCIT:C134195 Stage IV Colorectal Cancer AJCC v8 7 47108 -NCIT:C134196 Stage IVA Colorectal Cancer AJCC v8 8 47109 -NCIT:C134288 Stage IVA Colon Cancer AJCC v8 9 47110 -NCIT:C134302 Stage IVA Rectal Cancer AJCC v8 9 47111 -NCIT:C134197 Stage IVB Colorectal Cancer AJCC v8 8 47112 -NCIT:C134289 Stage IVB Colon Cancer AJCC v8 9 47113 -NCIT:C134303 Stage IVB Rectal Cancer AJCC v8 9 47114 -NCIT:C134198 Stage IVC Colorectal Cancer AJCC v8 8 47115 -NCIT:C134290 Stage IVC Colon Cancer AJCC v8 9 47116 -NCIT:C134304 Stage IVC Rectal Cancer AJCC v8 9 47117 -NCIT:C134287 Stage IV Colon Cancer AJCC v8 8 47118 -NCIT:C134288 Stage IVA Colon Cancer AJCC v8 9 47119 -NCIT:C134289 Stage IVB Colon Cancer AJCC v8 9 47120 -NCIT:C134290 Stage IVC Colon Cancer AJCC v8 9 47121 -NCIT:C134301 Stage IV Rectal Cancer AJCC v8 8 47122 -NCIT:C134302 Stage IVA Rectal Cancer AJCC v8 9 47123 -NCIT:C134303 Stage IVB Rectal Cancer AJCC v8 9 47124 -NCIT:C134304 Stage IVC Rectal Cancer AJCC v8 9 47125 -NCIT:C134251 Colon Cancer by AJCC v8 Stage 7 47126 -NCIT:C134271 Stage 0 Colon Cancer AJCC v8 8 47127 -NCIT:C134273 Stage I Colon Cancer AJCC v8 8 47128 -NCIT:C134274 Stage II Colon Cancer AJCC v8 8 47129 -NCIT:C134280 Stage IIA Colon Cancer AJCC v8 9 47130 -NCIT:C134281 Stage IIB Colon Cancer AJCC v8 9 47131 -NCIT:C134282 Stage IIC Colon Cancer AJCC v8 9 47132 -NCIT:C134283 Stage III Colon Cancer AJCC v8 8 47133 -NCIT:C134284 Stage IIIA Colon Cancer AJCC v8 9 47134 -NCIT:C134285 Stage IIIB Colon Cancer AJCC v8 9 47135 -NCIT:C134286 Stage IIIC Colon Cancer AJCC v8 9 47136 -NCIT:C134287 Stage IV Colon Cancer AJCC v8 8 47137 -NCIT:C134288 Stage IVA Colon Cancer AJCC v8 9 47138 -NCIT:C134289 Stage IVB Colon Cancer AJCC v8 9 47139 -NCIT:C134290 Stage IVC Colon Cancer AJCC v8 9 47140 -NCIT:C134258 Rectal Cancer by AJCC v8 Stage 7 47141 -NCIT:C134291 Stage 0 Rectal Cancer AJCC v8 8 47142 -NCIT:C134292 Stage I Rectal Cancer AJCC v8 8 47143 -NCIT:C134293 Stage II Rectal Cancer AJCC v8 8 47144 -NCIT:C134294 Stage IIA Rectal Cancer AJCC v8 9 47145 -NCIT:C134295 Stage IIB Rectal Cancer AJCC v8 9 47146 -NCIT:C134296 Stage IIC Rectal Cancer AJCC v8 9 47147 -NCIT:C134297 Stage III Rectal Cancer AJCC v8 8 47148 -NCIT:C134298 Stage IIIA Rectal Cancer AJCC v8 9 47149 -NCIT:C134299 Stage IIIB Rectal Cancer AJCC v8 9 47150 -NCIT:C134300 Stage IIIC Rectal Cancer AJCC v8 9 47151 -NCIT:C134301 Stage IV Rectal Cancer AJCC v8 8 47152 -NCIT:C134302 Stage IVA Rectal Cancer AJCC v8 9 47153 -NCIT:C134303 Stage IVB Rectal Cancer AJCC v8 9 47154 -NCIT:C134304 Stage IVC Rectal Cancer AJCC v8 9 47155 -NCIT:C147982 Refractory Colorectal Carcinoma 6 47156 -NCIT:C153351 Refractory Colon Carcinoma 7 47157 -NCIT:C162155 Refractory Colon Adenocarcinoma 8 47158 -NCIT:C162154 Refractory Colorectal Adenocarcinoma 7 47159 -NCIT:C162155 Refractory Colon Adenocarcinoma 8 47160 -NCIT:C162157 Refractory Rectal Adenocarcinoma 8 47161 -NCIT:C162156 Refractory Rectal Carcinoma 7 47162 -NCIT:C162157 Refractory Rectal Adenocarcinoma 8 47163 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 8 47164 -NCIT:C173332 Refractory Microsatellite Stable Colorectal Carcinoma 7 47165 -NCIT:C156096 Metastatic Colorectal Carcinoma 6 47166 -NCIT:C142867 Metastatic Microsatellite Stable Colorectal Carcinoma 7 47167 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 8 47168 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 8 47169 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 47170 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 8 47171 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 47172 -NCIT:C153224 Colorectal Carcinoma Metastatic in the Lung 7 47173 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 8 47174 -NCIT:C156097 Metastatic Colon Carcinoma 7 47175 -NCIT:C160819 Metastatic Colon Adenocarcinoma 8 47176 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 47177 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 47178 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 47179 -NCIT:C167238 Advanced Colon Carcinoma 8 47180 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 47181 -NCIT:C170910 Locally Advanced Colon Carcinoma 8 47182 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 47183 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 47184 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 47185 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 8 47186 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 47187 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 8 47188 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 8 47189 -NCIT:C156098 Metastatic Rectal Carcinoma 7 47190 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 8 47191 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 8 47192 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 47193 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 47194 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 47195 -NCIT:C170777 Advanced Rectal Carcinoma 8 47196 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 47197 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 47198 -NCIT:C170778 Locally Advanced Rectal Carcinoma 8 47199 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 47200 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 47201 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 47202 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 8 47203 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 47204 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 47205 -NCIT:C157366 Colorectal Carcinoma Metastatic in the Liver 7 47206 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 8 47207 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 8 47208 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 8 47209 -NCIT:C161048 Metastatic Colorectal Adenocarcinoma 7 47210 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 8 47211 -NCIT:C160819 Metastatic Colon Adenocarcinoma 8 47212 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 47213 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 47214 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 47215 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 8 47216 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 47217 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 47218 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 47219 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 8 47220 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 47221 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 47222 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 47223 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 47224 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 47225 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 47226 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 47227 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 47228 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 47229 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 47230 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 47231 -NCIT:C162475 Advanced Colorectal Carcinoma 7 47232 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 8 47233 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 47234 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 47235 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 47236 -NCIT:C167238 Advanced Colon Carcinoma 8 47237 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 47238 -NCIT:C170777 Advanced Rectal Carcinoma 8 47239 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 47240 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 47241 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 7 47242 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 8 47243 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 47244 -NCIT:C170778 Locally Advanced Rectal Carcinoma 8 47245 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 47246 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 47247 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 47248 -NCIT:C170910 Locally Advanced Colon Carcinoma 8 47249 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 47250 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 47251 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 47252 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 47253 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 47254 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 47255 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 47256 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 47257 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 47258 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 47259 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 47260 -NCIT:C185165 Oligometastatic Colorectal Carcinoma 7 47261 -NCIT:C162256 Hypermutated Colorectal Carcinoma 6 47262 -NCIT:C162257 Resectable Colorectal Carcinoma 6 47263 -NCIT:C167237 Resectable Colon Carcinoma 7 47264 -NCIT:C162600 Unresectable Colorectal Carcinoma 6 47265 -NCIT:C171585 Unresectable Colorectal Adenocarcinoma 7 47266 -NCIT:C162116 Unresectable Colon Adenocarcinoma 8 47267 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 47268 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 8 47269 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 47270 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 47271 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 47272 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 47273 -NCIT:C180406 Unresectable Colon Carcinoma 7 47274 -NCIT:C162116 Unresectable Colon Adenocarcinoma 8 47275 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 47276 -NCIT:C173324 Microsatellite Stable Colorectal Carcinoma 6 47277 -NCIT:C142867 Metastatic Microsatellite Stable Colorectal Carcinoma 7 47278 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 8 47279 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 8 47280 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 47281 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 8 47282 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 47283 -NCIT:C173332 Refractory Microsatellite Stable Colorectal Carcinoma 7 47284 -NCIT:C177776 Microsatellite Stable Rectal Carcinoma 7 47285 -NCIT:C177777 Microsatellite Stable Colon Carcinoma 7 47286 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 8 47287 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 47288 -NCIT:C190679 Recurrent Microsatellite Stable Colorectal Carcinoma 7 47289 -NCIT:C43588 Colorectal Squamous Cell Carcinoma 6 47290 -NCIT:C5490 Colon Squamous Cell Carcinoma 7 47291 -NCIT:C5554 Rectal Squamous Cell Carcinoma 7 47292 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 8 47293 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 47294 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 47295 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 8 47296 -NCIT:C5555 Rectal Cloacogenic Carcinoma 8 47297 -NCIT:C43589 Colorectal Adenosquamous Carcinoma 6 47298 -NCIT:C43594 Rectal Adenosquamous Carcinoma 7 47299 -NCIT:C5491 Colon Adenosquamous Carcinoma 7 47300 -NCIT:C43591 Colorectal Undifferentiated Carcinoma 6 47301 -NCIT:C7100 Colon Undifferentiated Carcinoma 7 47302 -NCIT:C7974 Rectal Undifferentiated Carcinoma 7 47303 -NCIT:C4910 Colon Carcinoma 6 47304 -NCIT:C134251 Colon Cancer by AJCC v8 Stage 7 47305 -NCIT:C134271 Stage 0 Colon Cancer AJCC v8 8 47306 -NCIT:C134273 Stage I Colon Cancer AJCC v8 8 47307 -NCIT:C134274 Stage II Colon Cancer AJCC v8 8 47308 -NCIT:C134280 Stage IIA Colon Cancer AJCC v8 9 47309 -NCIT:C134281 Stage IIB Colon Cancer AJCC v8 9 47310 -NCIT:C134282 Stage IIC Colon Cancer AJCC v8 9 47311 -NCIT:C134283 Stage III Colon Cancer AJCC v8 8 47312 -NCIT:C134284 Stage IIIA Colon Cancer AJCC v8 9 47313 -NCIT:C134285 Stage IIIB Colon Cancer AJCC v8 9 47314 -NCIT:C134286 Stage IIIC Colon Cancer AJCC v8 9 47315 -NCIT:C134287 Stage IV Colon Cancer AJCC v8 8 47316 -NCIT:C134288 Stage IVA Colon Cancer AJCC v8 9 47317 -NCIT:C134289 Stage IVB Colon Cancer AJCC v8 9 47318 -NCIT:C134290 Stage IVC Colon Cancer AJCC v8 9 47319 -NCIT:C153351 Refractory Colon Carcinoma 7 47320 -NCIT:C162155 Refractory Colon Adenocarcinoma 8 47321 -NCIT:C156097 Metastatic Colon Carcinoma 7 47322 -NCIT:C160819 Metastatic Colon Adenocarcinoma 8 47323 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 47324 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 47325 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 47326 -NCIT:C167238 Advanced Colon Carcinoma 8 47327 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 47328 -NCIT:C170910 Locally Advanced Colon Carcinoma 8 47329 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 47330 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 47331 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 47332 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 8 47333 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 47334 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 8 47335 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 8 47336 -NCIT:C164228 Hereditary Colon Carcinoma 7 47337 -NCIT:C167237 Resectable Colon Carcinoma 7 47338 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 7 47339 -NCIT:C177680 Sigmoid Colon Carcinoma 7 47340 -NCIT:C177777 Microsatellite Stable Colon Carcinoma 7 47341 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 8 47342 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 47343 -NCIT:C180406 Unresectable Colon Carcinoma 7 47344 -NCIT:C162116 Unresectable Colon Adenocarcinoma 8 47345 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 47346 -NCIT:C3491 Cecum Carcinoma 7 47347 -NCIT:C4594 Cecum Carcinoma In Situ 8 47348 -NCIT:C5543 Cecum Adenocarcinoma 8 47349 -NCIT:C3998 Recurrent Colon Carcinoma 7 47350 -NCIT:C162442 Recurrent Colon Adenocarcinoma 8 47351 -NCIT:C4349 Colon Adenocarcinoma 7 47352 -NCIT:C160819 Metastatic Colon Adenocarcinoma 8 47353 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 47354 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 47355 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 47356 -NCIT:C162116 Unresectable Colon Adenocarcinoma 8 47357 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 47358 -NCIT:C162155 Refractory Colon Adenocarcinoma 8 47359 -NCIT:C162442 Recurrent Colon Adenocarcinoma 8 47360 -NCIT:C38760 Submucosal Invasive Colon Adenocarcinoma 8 47361 -NCIT:C45429 Colon Intramucosal Adenocarcinoma 8 47362 -NCIT:C27413 Adenoma of the Colon with Intramucosal Adenocarcinoma 9 47363 -NCIT:C5543 Cecum Adenocarcinoma 8 47364 -NCIT:C60641 Colon Medullary Carcinoma 8 47365 -NCIT:C7966 Colon Mucinous Adenocarcinoma 8 47366 -NCIT:C7967 Colon Signet Ring Cell Adenocarcinoma 8 47367 -NCIT:C9452 Grade 1 Colon Adenocarcinoma 8 47368 -NCIT:C9453 Grade 2 Colon Adenocarcinoma 8 47369 -NCIT:C9454 Grade 3 Colon Adenocarcinoma 8 47370 -NCIT:C96486 Colon Serrated Adenocarcinoma 8 47371 -NCIT:C96489 Colon Cribriform Comedo-Type Adenocarcinoma 8 47372 -NCIT:C96492 Colon Micropapillary Adenocarcinoma 8 47373 -NCIT:C5490 Colon Squamous Cell Carcinoma 7 47374 -NCIT:C5491 Colon Adenosquamous Carcinoma 7 47375 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 7 47376 -NCIT:C7100 Colon Undifferentiated Carcinoma 7 47377 -NCIT:C90507 Colon Cancer by AJCC v6 Stage 7 47378 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 8 47379 -NCIT:C4594 Cecum Carcinoma In Situ 9 47380 -NCIT:C3993 Stage II Colon Cancer AJCC v6 8 47381 -NCIT:C3994 Stage IV Colon Cancer AJCC v6 8 47382 -NCIT:C7766 Stage III Colon Cancer AJCC v6 8 47383 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 8 47384 -NCIT:C91224 Colon Cancer by AJCC v7 Stage 7 47385 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 8 47386 -NCIT:C4594 Cecum Carcinoma In Situ 9 47387 -NCIT:C89990 Stage II Colon Cancer AJCC v7 8 47388 -NCIT:C115041 Stage IIA Colon Cancer AJCC v7 9 47389 -NCIT:C115042 Stage IIB Colon Cancer AJCC v7 9 47390 -NCIT:C115043 Stage IIC Colon Cancer AJCC v7 9 47391 -NCIT:C89995 Stage III Colon Cancer AJCC v7 8 47392 -NCIT:C115047 Stage IIIA Colon Cancer AJCC v7 9 47393 -NCIT:C115048 Stage IIIB Colon Cancer AJCC v7 9 47394 -NCIT:C115049 Stage IIIC Colon Cancer AJCC v7 9 47395 -NCIT:C89999 Stage IV Colon Cancer AJCC v7 8 47396 -NCIT:C115053 Stage IVA Colon Cancer AJCC v7 9 47397 -NCIT:C115054 Stage IVB Colon Cancer AJCC v7 9 47398 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 8 47399 -NCIT:C5105 Colorectal Adenocarcinoma 6 47400 -NCIT:C161048 Metastatic Colorectal Adenocarcinoma 7 47401 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 8 47402 -NCIT:C160819 Metastatic Colon Adenocarcinoma 8 47403 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 47404 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 47405 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 47406 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 8 47407 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 47408 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 47409 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 47410 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 8 47411 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 47412 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 47413 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 47414 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 47415 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 47416 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 47417 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 47418 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 47419 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 47420 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 47421 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 47422 -NCIT:C162154 Refractory Colorectal Adenocarcinoma 7 47423 -NCIT:C162155 Refractory Colon Adenocarcinoma 8 47424 -NCIT:C162157 Refractory Rectal Adenocarcinoma 8 47425 -NCIT:C162441 Recurrent Colorectal Adenocarcinoma 7 47426 -NCIT:C162442 Recurrent Colon Adenocarcinoma 8 47427 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 8 47428 -NCIT:C171585 Unresectable Colorectal Adenocarcinoma 7 47429 -NCIT:C162116 Unresectable Colon Adenocarcinoma 8 47430 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 47431 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 8 47432 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 47433 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 47434 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 47435 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 47436 -NCIT:C172694 Colorectal Poorly Cohesive Adenocarcinoma 7 47437 -NCIT:C43586 Colorectal Signet Ring Cell Carcinoma 8 47438 -NCIT:C43593 Rectosigmoid Signet Ring Cell Carcinoma 9 47439 -NCIT:C7967 Colon Signet Ring Cell Adenocarcinoma 9 47440 -NCIT:C9168 Rectal Signet Ring Cell Adenocarcinoma 9 47441 -NCIT:C172699 Colorectal Adenoma-Like Adenocarcinoma 7 47442 -NCIT:C172700 Inflammatory Bowel Disease-Associated Colorectal Adenocarcinoma 7 47443 -NCIT:C96496 Ulcerative Colitis-Associated Colorectal Adenocarcinoma 8 47444 -NCIT:C96497 Crohn Disease-Associated Colorectal Adenocarcinoma 8 47445 -NCIT:C4349 Colon Adenocarcinoma 7 47446 -NCIT:C160819 Metastatic Colon Adenocarcinoma 8 47447 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 47448 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 47449 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 47450 -NCIT:C162116 Unresectable Colon Adenocarcinoma 8 47451 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 47452 -NCIT:C162155 Refractory Colon Adenocarcinoma 8 47453 -NCIT:C162442 Recurrent Colon Adenocarcinoma 8 47454 -NCIT:C38760 Submucosal Invasive Colon Adenocarcinoma 8 47455 -NCIT:C45429 Colon Intramucosal Adenocarcinoma 8 47456 -NCIT:C27413 Adenoma of the Colon with Intramucosal Adenocarcinoma 9 47457 -NCIT:C5543 Cecum Adenocarcinoma 8 47458 -NCIT:C60641 Colon Medullary Carcinoma 8 47459 -NCIT:C7966 Colon Mucinous Adenocarcinoma 8 47460 -NCIT:C7967 Colon Signet Ring Cell Adenocarcinoma 8 47461 -NCIT:C9452 Grade 1 Colon Adenocarcinoma 8 47462 -NCIT:C9453 Grade 2 Colon Adenocarcinoma 8 47463 -NCIT:C9454 Grade 3 Colon Adenocarcinoma 8 47464 -NCIT:C96486 Colon Serrated Adenocarcinoma 8 47465 -NCIT:C96489 Colon Cribriform Comedo-Type Adenocarcinoma 8 47466 -NCIT:C96492 Colon Micropapillary Adenocarcinoma 8 47467 -NCIT:C43584 Rectosigmoid Adenocarcinoma 7 47468 -NCIT:C43592 Rectosigmoid Mucinous Adenocarcinoma 8 47469 -NCIT:C43593 Rectosigmoid Signet Ring Cell Carcinoma 8 47470 -NCIT:C43585 Colorectal Mucinous Adenocarcinoma 7 47471 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 8 47472 -NCIT:C43592 Rectosigmoid Mucinous Adenocarcinoma 8 47473 -NCIT:C7966 Colon Mucinous Adenocarcinoma 8 47474 -NCIT:C7973 Rectal Mucinous Adenocarcinoma 8 47475 -NCIT:C43590 Colorectal Medullary Carcinoma 7 47476 -NCIT:C60640 Rectal Medullary Carcinoma 8 47477 -NCIT:C60641 Colon Medullary Carcinoma 8 47478 -NCIT:C9383 Rectal Adenocarcinoma 7 47479 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 8 47480 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 47481 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 47482 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 47483 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 8 47484 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 47485 -NCIT:C162157 Refractory Rectal Adenocarcinoma 8 47486 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 8 47487 -NCIT:C60640 Rectal Medullary Carcinoma 8 47488 -NCIT:C7973 Rectal Mucinous Adenocarcinoma 8 47489 -NCIT:C9168 Rectal Signet Ring Cell Adenocarcinoma 8 47490 -NCIT:C9449 Grade 3 Rectal Adenocarcinoma 8 47491 -NCIT:C9450 Grade 2 Rectal Adenocarcinoma 8 47492 -NCIT:C9451 Grade 1 Rectal Adenocarcinoma 8 47493 -NCIT:C96487 Rectal Serrated Adenocarcinoma 8 47494 -NCIT:C96490 Rectal Cribriform Comedo-Type Adenocarcinoma 8 47495 -NCIT:C96493 Rectal Micropapillary Adenocarcinoma 8 47496 -NCIT:C9446 Grade 1 Colorectal Adenocarcinoma 7 47497 -NCIT:C9451 Grade 1 Rectal Adenocarcinoma 8 47498 -NCIT:C9452 Grade 1 Colon Adenocarcinoma 8 47499 -NCIT:C9447 Grade 2 Colorectal Adenocarcinoma 7 47500 -NCIT:C9450 Grade 2 Rectal Adenocarcinoma 8 47501 -NCIT:C9453 Grade 2 Colon Adenocarcinoma 8 47502 -NCIT:C9448 Grade 3 Colorectal Adenocarcinoma 7 47503 -NCIT:C9449 Grade 3 Rectal Adenocarcinoma 8 47504 -NCIT:C9454 Grade 3 Colon Adenocarcinoma 8 47505 -NCIT:C96485 Colorectal Serrated Adenocarcinoma 7 47506 -NCIT:C96486 Colon Serrated Adenocarcinoma 8 47507 -NCIT:C96487 Rectal Serrated Adenocarcinoma 8 47508 -NCIT:C96488 Colorectal Cribriform Comedo-Type Adenocarcinoma 7 47509 -NCIT:C96489 Colon Cribriform Comedo-Type Adenocarcinoma 8 47510 -NCIT:C96490 Rectal Cribriform Comedo-Type Adenocarcinoma 8 47511 -NCIT:C96491 Colorectal Micropapillary Adenocarcinoma 7 47512 -NCIT:C96492 Colon Micropapillary Adenocarcinoma 8 47513 -NCIT:C96493 Rectal Micropapillary Adenocarcinoma 8 47514 -NCIT:C7421 Rectosigmoid Carcinoma 6 47515 -NCIT:C43584 Rectosigmoid Adenocarcinoma 7 47516 -NCIT:C43592 Rectosigmoid Mucinous Adenocarcinoma 8 47517 -NCIT:C43593 Rectosigmoid Signet Ring Cell Carcinoma 8 47518 -NCIT:C8634 Recurrent Rectosigmoid Carcinoma 7 47519 -NCIT:C90509 Rectosigmoid Cancer by AJCC v6 Stage 7 47520 -NCIT:C5015 Stage II Rectosigmoid Cancer AJCC v6 8 47521 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 8 47522 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 8 47523 -NCIT:C8635 Stage III Rectosigmoid Cancer AJCC v6 8 47524 -NCIT:C8636 Stage IV Rectosigmoid Cancer AJCC v6 8 47525 -NCIT:C91226 Rectosigmoid Cancer by AJCC v7 Stage 7 47526 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 8 47527 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 8 47528 -NCIT:C89992 Stage II Rectosigmoid Cancer AJCC v7 8 47529 -NCIT:C89997 Stage III Rectosigmoid Cancer AJCC v7 8 47530 -NCIT:C90019 Stage IV Rectosigmoid Cancer AJCC v7 8 47531 -NCIT:C8625 Recurrent Colorectal Carcinoma 6 47532 -NCIT:C162441 Recurrent Colorectal Adenocarcinoma 7 47533 -NCIT:C162442 Recurrent Colon Adenocarcinoma 8 47534 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 8 47535 -NCIT:C190199 Locally Recurrent Colorectal Carcinoma 7 47536 -NCIT:C190679 Recurrent Microsatellite Stable Colorectal Carcinoma 7 47537 -NCIT:C3998 Recurrent Colon Carcinoma 7 47538 -NCIT:C162442 Recurrent Colon Adenocarcinoma 8 47539 -NCIT:C8634 Recurrent Rectosigmoid Carcinoma 7 47540 -NCIT:C9238 Recurrent Rectal Carcinoma 7 47541 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 8 47542 -NCIT:C90506 Colorectal Cancer by AJCC v6 Stage 6 47543 -NCIT:C8513 Stage I Colorectal Cancer AJCC v6 and v7 7 47544 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 8 47545 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 8 47546 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 8 47547 -NCIT:C8514 Stage II Colorectal Cancer AJCC v6 7 47548 -NCIT:C3993 Stage II Colon Cancer AJCC v6 8 47549 -NCIT:C5015 Stage II Rectosigmoid Cancer AJCC v6 8 47550 -NCIT:C7791 Stage II Rectal Cancer AJCC v6 8 47551 -NCIT:C8515 Stage III Colorectal Cancer AJCC v6 7 47552 -NCIT:C7766 Stage III Colon Cancer AJCC v6 8 47553 -NCIT:C7792 Stage III Rectal Cancer AJCC v6 8 47554 -NCIT:C8635 Stage III Rectosigmoid Cancer AJCC v6 8 47555 -NCIT:C8516 Stage IV Colorectal Cancer AJCC v6 7 47556 -NCIT:C3994 Stage IV Colon Cancer AJCC v6 8 47557 -NCIT:C8412 Stage IV Rectal Cancer AJCC v6 8 47558 -NCIT:C8636 Stage IV Rectosigmoid Cancer AJCC v6 8 47559 -NCIT:C8932 Stage 0 Colorectal Cancer AJCC v6 and v7 7 47560 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 8 47561 -NCIT:C4594 Cecum Carcinoma In Situ 9 47562 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 8 47563 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 8 47564 -NCIT:C90507 Colon Cancer by AJCC v6 Stage 7 47565 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 8 47566 -NCIT:C4594 Cecum Carcinoma In Situ 9 47567 -NCIT:C3993 Stage II Colon Cancer AJCC v6 8 47568 -NCIT:C3994 Stage IV Colon Cancer AJCC v6 8 47569 -NCIT:C7766 Stage III Colon Cancer AJCC v6 8 47570 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 8 47571 -NCIT:C90508 Rectal Cancer by AJCC v6 Stage 7 47572 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 8 47573 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 8 47574 -NCIT:C7791 Stage II Rectal Cancer AJCC v6 8 47575 -NCIT:C7792 Stage III Rectal Cancer AJCC v6 8 47576 -NCIT:C8412 Stage IV Rectal Cancer AJCC v6 8 47577 -NCIT:C90509 Rectosigmoid Cancer by AJCC v6 Stage 7 47578 -NCIT:C5015 Stage II Rectosigmoid Cancer AJCC v6 8 47579 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 8 47580 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 8 47581 -NCIT:C8635 Stage III Rectosigmoid Cancer AJCC v6 8 47582 -NCIT:C8636 Stage IV Rectosigmoid Cancer AJCC v6 8 47583 -NCIT:C91223 Colorectal Cancer by AJCC v7 Stage 6 47584 -NCIT:C8513 Stage I Colorectal Cancer AJCC v6 and v7 7 47585 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 8 47586 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 8 47587 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 8 47588 -NCIT:C8932 Stage 0 Colorectal Cancer AJCC v6 and v7 7 47589 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 8 47590 -NCIT:C4594 Cecum Carcinoma In Situ 9 47591 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 8 47592 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 8 47593 -NCIT:C89989 Stage II Colorectal Cancer AJCC v7 7 47594 -NCIT:C87813 Stage IIA Colorectal Cancer AJCC v7 8 47595 -NCIT:C115041 Stage IIA Colon Cancer AJCC v7 9 47596 -NCIT:C115044 Stage IIA Rectal Cancer AJCC v7 9 47597 -NCIT:C87814 Stage IIB Colorectal Cancer AJCC v7 8 47598 -NCIT:C115042 Stage IIB Colon Cancer AJCC v7 9 47599 -NCIT:C115045 Stage IIB Rectal Cancer AJCC v7 9 47600 -NCIT:C87815 Stage IIC Colorectal Cancer AJCC v7 8 47601 -NCIT:C115043 Stage IIC Colon Cancer AJCC v7 9 47602 -NCIT:C115046 Stage IIC Rectal Cancer AJCC v7 9 47603 -NCIT:C89990 Stage II Colon Cancer AJCC v7 8 47604 -NCIT:C115041 Stage IIA Colon Cancer AJCC v7 9 47605 -NCIT:C115042 Stage IIB Colon Cancer AJCC v7 9 47606 -NCIT:C115043 Stage IIC Colon Cancer AJCC v7 9 47607 -NCIT:C89991 Stage II Rectal Cancer AJCC v7 8 47608 -NCIT:C115044 Stage IIA Rectal Cancer AJCC v7 9 47609 -NCIT:C115045 Stage IIB Rectal Cancer AJCC v7 9 47610 -NCIT:C115046 Stage IIC Rectal Cancer AJCC v7 9 47611 -NCIT:C89992 Stage II Rectosigmoid Cancer AJCC v7 8 47612 -NCIT:C89994 Stage III Colorectal Cancer AJCC v7 7 47613 -NCIT:C87816 Stage IIIA Colorectal Cancer AJCC v7 8 47614 -NCIT:C115047 Stage IIIA Colon Cancer AJCC v7 9 47615 -NCIT:C115050 Stage IIIA Rectal Cancer AJCC v7 9 47616 -NCIT:C87817 Stage IIIB Colorectal Cancer AJCC v7 8 47617 -NCIT:C115048 Stage IIIB Colon Cancer AJCC v7 9 47618 -NCIT:C115051 Stage IIIB Rectal Cancer AJCC v7 9 47619 -NCIT:C87818 Stage IIIC Colorectal Cancer AJCC v7 8 47620 -NCIT:C115049 Stage IIIC Colon Cancer AJCC v7 9 47621 -NCIT:C115052 Stage IIIC Rectal Cancer AJCC v7 9 47622 -NCIT:C89995 Stage III Colon Cancer AJCC v7 8 47623 -NCIT:C115047 Stage IIIA Colon Cancer AJCC v7 9 47624 -NCIT:C115048 Stage IIIB Colon Cancer AJCC v7 9 47625 -NCIT:C115049 Stage IIIC Colon Cancer AJCC v7 9 47626 -NCIT:C89996 Stage III Rectal Cancer AJCC v7 8 47627 -NCIT:C115050 Stage IIIA Rectal Cancer AJCC v7 9 47628 -NCIT:C115051 Stage IIIB Rectal Cancer AJCC v7 9 47629 -NCIT:C115052 Stage IIIC Rectal Cancer AJCC v7 9 47630 -NCIT:C89997 Stage III Rectosigmoid Cancer AJCC v7 8 47631 -NCIT:C89998 Stage IV Colorectal Cancer AJCC v7 7 47632 -NCIT:C87819 Stage IVA Colorectal Cancer AJCC v7 8 47633 -NCIT:C115053 Stage IVA Colon Cancer AJCC v7 9 47634 -NCIT:C115055 Stage IVA Rectal Cancer AJCC v7 9 47635 -NCIT:C87820 Stage IVB Colorectal Cancer AJCC v7 8 47636 -NCIT:C115054 Stage IVB Colon Cancer AJCC v7 9 47637 -NCIT:C115056 Stage IVB Rectal Cancer AJCC v7 9 47638 -NCIT:C89999 Stage IV Colon Cancer AJCC v7 8 47639 -NCIT:C115053 Stage IVA Colon Cancer AJCC v7 9 47640 -NCIT:C115054 Stage IVB Colon Cancer AJCC v7 9 47641 -NCIT:C90016 Stage IV Rectal Cancer AJCC v7 8 47642 -NCIT:C115055 Stage IVA Rectal Cancer AJCC v7 9 47643 -NCIT:C115056 Stage IVB Rectal Cancer AJCC v7 9 47644 -NCIT:C90019 Stage IV Rectosigmoid Cancer AJCC v7 8 47645 -NCIT:C91224 Colon Cancer by AJCC v7 Stage 7 47646 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 8 47647 -NCIT:C4594 Cecum Carcinoma In Situ 9 47648 -NCIT:C89990 Stage II Colon Cancer AJCC v7 8 47649 -NCIT:C115041 Stage IIA Colon Cancer AJCC v7 9 47650 -NCIT:C115042 Stage IIB Colon Cancer AJCC v7 9 47651 -NCIT:C115043 Stage IIC Colon Cancer AJCC v7 9 47652 -NCIT:C89995 Stage III Colon Cancer AJCC v7 8 47653 -NCIT:C115047 Stage IIIA Colon Cancer AJCC v7 9 47654 -NCIT:C115048 Stage IIIB Colon Cancer AJCC v7 9 47655 -NCIT:C115049 Stage IIIC Colon Cancer AJCC v7 9 47656 -NCIT:C89999 Stage IV Colon Cancer AJCC v7 8 47657 -NCIT:C115053 Stage IVA Colon Cancer AJCC v7 9 47658 -NCIT:C115054 Stage IVB Colon Cancer AJCC v7 9 47659 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 8 47660 -NCIT:C91225 Rectal Cancer by AJCC v7 Stage 7 47661 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 8 47662 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 8 47663 -NCIT:C89991 Stage II Rectal Cancer AJCC v7 8 47664 -NCIT:C115044 Stage IIA Rectal Cancer AJCC v7 9 47665 -NCIT:C115045 Stage IIB Rectal Cancer AJCC v7 9 47666 -NCIT:C115046 Stage IIC Rectal Cancer AJCC v7 9 47667 -NCIT:C89996 Stage III Rectal Cancer AJCC v7 8 47668 -NCIT:C115050 Stage IIIA Rectal Cancer AJCC v7 9 47669 -NCIT:C115051 Stage IIIB Rectal Cancer AJCC v7 9 47670 -NCIT:C115052 Stage IIIC Rectal Cancer AJCC v7 9 47671 -NCIT:C90016 Stage IV Rectal Cancer AJCC v7 8 47672 -NCIT:C115055 Stage IVA Rectal Cancer AJCC v7 9 47673 -NCIT:C115056 Stage IVB Rectal Cancer AJCC v7 9 47674 -NCIT:C91226 Rectosigmoid Cancer by AJCC v7 Stage 7 47675 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 8 47676 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 8 47677 -NCIT:C89992 Stage II Rectosigmoid Cancer AJCC v7 8 47678 -NCIT:C89997 Stage III Rectosigmoid Cancer AJCC v7 8 47679 -NCIT:C90019 Stage IV Rectosigmoid Cancer AJCC v7 8 47680 -NCIT:C9382 Rectal Carcinoma 6 47681 -NCIT:C118823 Childhood Rectal Carcinoma 7 47682 -NCIT:C134258 Rectal Cancer by AJCC v8 Stage 7 47683 -NCIT:C134291 Stage 0 Rectal Cancer AJCC v8 8 47684 -NCIT:C134292 Stage I Rectal Cancer AJCC v8 8 47685 -NCIT:C134293 Stage II Rectal Cancer AJCC v8 8 47686 -NCIT:C134294 Stage IIA Rectal Cancer AJCC v8 9 47687 -NCIT:C134295 Stage IIB Rectal Cancer AJCC v8 9 47688 -NCIT:C134296 Stage IIC Rectal Cancer AJCC v8 9 47689 -NCIT:C134297 Stage III Rectal Cancer AJCC v8 8 47690 -NCIT:C134298 Stage IIIA Rectal Cancer AJCC v8 9 47691 -NCIT:C134299 Stage IIIB Rectal Cancer AJCC v8 9 47692 -NCIT:C134300 Stage IIIC Rectal Cancer AJCC v8 9 47693 -NCIT:C134301 Stage IV Rectal Cancer AJCC v8 8 47694 -NCIT:C134302 Stage IVA Rectal Cancer AJCC v8 9 47695 -NCIT:C134303 Stage IVB Rectal Cancer AJCC v8 9 47696 -NCIT:C134304 Stage IVC Rectal Cancer AJCC v8 9 47697 -NCIT:C156098 Metastatic Rectal Carcinoma 7 47698 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 8 47699 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 8 47700 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 47701 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 47702 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 47703 -NCIT:C170777 Advanced Rectal Carcinoma 8 47704 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 47705 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 47706 -NCIT:C170778 Locally Advanced Rectal Carcinoma 8 47707 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 47708 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 47709 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 47710 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 8 47711 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 47712 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 47713 -NCIT:C162156 Refractory Rectal Carcinoma 7 47714 -NCIT:C162157 Refractory Rectal Adenocarcinoma 8 47715 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 8 47716 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 7 47717 -NCIT:C177776 Microsatellite Stable Rectal Carcinoma 7 47718 -NCIT:C43594 Rectal Adenosquamous Carcinoma 7 47719 -NCIT:C5554 Rectal Squamous Cell Carcinoma 7 47720 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 8 47721 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 47722 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 47723 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 8 47724 -NCIT:C5555 Rectal Cloacogenic Carcinoma 8 47725 -NCIT:C5556 Rectal Sarcomatoid Carcinoma 7 47726 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 7 47727 -NCIT:C7974 Rectal Undifferentiated Carcinoma 7 47728 -NCIT:C90508 Rectal Cancer by AJCC v6 Stage 7 47729 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 8 47730 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 8 47731 -NCIT:C7791 Stage II Rectal Cancer AJCC v6 8 47732 -NCIT:C7792 Stage III Rectal Cancer AJCC v6 8 47733 -NCIT:C8412 Stage IV Rectal Cancer AJCC v6 8 47734 -NCIT:C91225 Rectal Cancer by AJCC v7 Stage 7 47735 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 8 47736 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 8 47737 -NCIT:C89991 Stage II Rectal Cancer AJCC v7 8 47738 -NCIT:C115044 Stage IIA Rectal Cancer AJCC v7 9 47739 -NCIT:C115045 Stage IIB Rectal Cancer AJCC v7 9 47740 -NCIT:C115046 Stage IIC Rectal Cancer AJCC v7 9 47741 -NCIT:C89996 Stage III Rectal Cancer AJCC v7 8 47742 -NCIT:C115050 Stage IIIA Rectal Cancer AJCC v7 9 47743 -NCIT:C115051 Stage IIIB Rectal Cancer AJCC v7 9 47744 -NCIT:C115052 Stage IIIC Rectal Cancer AJCC v7 9 47745 -NCIT:C90016 Stage IV Rectal Cancer AJCC v7 8 47746 -NCIT:C115055 Stage IVA Rectal Cancer AJCC v7 9 47747 -NCIT:C115056 Stage IVB Rectal Cancer AJCC v7 9 47748 -NCIT:C9238 Recurrent Rectal Carcinoma 7 47749 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 8 47750 -NCIT:C9383 Rectal Adenocarcinoma 7 47751 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 8 47752 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 47753 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 47754 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 47755 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 8 47756 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 47757 -NCIT:C162157 Refractory Rectal Adenocarcinoma 8 47758 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 8 47759 -NCIT:C60640 Rectal Medullary Carcinoma 8 47760 -NCIT:C7973 Rectal Mucinous Adenocarcinoma 8 47761 -NCIT:C9168 Rectal Signet Ring Cell Adenocarcinoma 8 47762 -NCIT:C9449 Grade 3 Rectal Adenocarcinoma 8 47763 -NCIT:C9450 Grade 2 Rectal Adenocarcinoma 8 47764 -NCIT:C9451 Grade 1 Rectal Adenocarcinoma 8 47765 -NCIT:C96487 Rectal Serrated Adenocarcinoma 8 47766 -NCIT:C96490 Rectal Cribriform Comedo-Type Adenocarcinoma 8 47767 -NCIT:C96493 Rectal Micropapillary Adenocarcinoma 8 47768 -NCIT:C96156 Colorectal Neuroendocrine Carcinoma 6 47769 -NCIT:C43587 Colorectal Small Cell Neuroendocrine Carcinoma 7 47770 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 8 47771 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 8 47772 -NCIT:C96157 Colorectal Large Cell Neuroendocrine Carcinoma 7 47773 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 8 47774 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 8 47775 -NCIT:C96158 Colorectal Mixed Adenoneuroendocrine Carcinoma 6 47776 -NCIT:C96494 Colorectal Sarcomatoid Carcinoma 6 47777 -NCIT:C5556 Rectal Sarcomatoid Carcinoma 7 47778 -NCIT:C3513 Esophageal Carcinoma 5 47779 -NCIT:C118812 Childhood Esophageal Carcinoma 6 47780 -NCIT:C128563 Unresectable Esophageal Carcinoma 6 47781 -NCIT:C171608 Unresectable Esophageal Squamous Cell Carcinoma 7 47782 -NCIT:C173162 Unresectable Esophageal Adenocarcinoma 7 47783 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 47784 -NCIT:C172248 Unresectable Distal Esophagus Adenocarcinoma 8 47785 -NCIT:C133399 Esophageal Cancer by AJCC v8 Stage 6 47786 -NCIT:C133400 Esophageal Adenocarcinoma by AJCC v8 Stage 7 47787 -NCIT:C133401 Esophageal Adenocarcinoma by AJCC v8 Clinical Stage 8 47788 -NCIT:C133402 Clinical Stage 0 Esophageal Adenocarcinoma AJCC v8 9 47789 -NCIT:C133403 Clinical Stage I Esophageal Adenocarcinoma AJCC v8 9 47790 -NCIT:C133404 Clinical Stage II Esophageal Adenocarcinoma AJCC v8 9 47791 -NCIT:C133405 Clinical Stage IIA Esophageal Adenocarcinoma AJCC v8 10 47792 -NCIT:C133406 Clinical Stage IIB Esophageal Adenocarcinoma AJCC v8 10 47793 -NCIT:C133407 Clinical Stage III Esophageal Adenocarcinoma AJCC v8 9 47794 -NCIT:C133408 Clinical Stage IV Esophageal Adenocarcinoma AJCC v8 9 47795 -NCIT:C133409 Clinical Stage IVA Esophageal Adenocarcinoma AJCC v8 10 47796 -NCIT:C133410 Clinical Stage IVB Esophageal Adenocarcinoma AJCC v8 10 47797 -NCIT:C133412 Esophageal Adenocarcinoma by AJCC v8 Pathologic Stage 8 47798 -NCIT:C133413 Pathologic Stage 0 Esophageal Adenocarcinoma AJCC v8 9 47799 -NCIT:C133414 Pathologic Stage I Esophageal Adenocarcinoma AJCC v8 9 47800 -NCIT:C133415 Pathologic Stage IA Esophageal Adenocarcinoma AJCC v8 10 47801 -NCIT:C133416 Pathologic Stage IB Esophageal Adenocarcinoma AJCC v8 10 47802 -NCIT:C133417 Pathologic Stage IC Esophageal Adenocarcinoma AJCC v8 10 47803 -NCIT:C133418 Pathologic Stage II Esophageal Adenocarcinoma AJCC v8 9 47804 -NCIT:C133419 Pathologic Stage IIA Esophageal Adenocarcinoma AJCC v8 10 47805 -NCIT:C133420 Pathologic Stage IIB Esophageal Adenocarcinoma AJCC v8 10 47806 -NCIT:C133421 Pathologic Stage III Esophageal Adenocarcinoma AJCC v8 9 47807 -NCIT:C133422 Pathologic Stage IIIA Esophageal Adenocarcinoma AJCC v8 10 47808 -NCIT:C133423 Pathologic Stage IIIB Esophageal Adenocarcinoma AJCC v8 10 47809 -NCIT:C133424 Pathologic Stage IV Esophageal Adenocarcinoma AJCC v8 9 47810 -NCIT:C133425 Pathologic Stage IVA Esophageal Adenocarcinoma AJCC v8 10 47811 -NCIT:C133426 Pathologic Stage IVB Esophageal Adenocarcinoma AJCC v8 10 47812 -NCIT:C133432 Esophageal Adenocarcinoma by AJCC v8 Postneoadjuvant Therapy Stage 8 47813 -NCIT:C133433 Postneoadjuvant Therapy Stage I Esophageal Adenocarcinoma AJCC v8 9 47814 -NCIT:C133434 Postneoadjuvant Therapy Stage II Esophageal Adenocarcinoma AJCC v8 9 47815 -NCIT:C133435 Postneoadjuvant Therapy Stage III Esophageal Adenocarcinoma AJCC v8 9 47816 -NCIT:C133436 Postneoadjuvant Therapy Stage IIIA Esophageal Adenocarcinoma AJCC v8 10 47817 -NCIT:C133437 Postneoadjuvant Therapy Stage IIIB Esophageal Adenocarcinoma AJCC v8 10 47818 -NCIT:C133438 Postneoadjuvant Therapy Stage IV Esophageal Adenocarcinoma AJCC v8 9 47819 -NCIT:C133439 Postneoadjuvant Therapy Stage IVA Esophageal Adenocarcinoma AJCC v8 10 47820 -NCIT:C133440 Postneoadjuvant Therapy Stage IVB Esophageal Adenocarcinoma AJCC v8 10 47821 -NCIT:C133443 Esophageal Squamous Cell Carcinoma by AJCC v8 Stage 7 47822 -NCIT:C133444 Esophageal Squamous Cell Carcinoma by AJCC v8 Clinical Stage 8 47823 -NCIT:C133447 Clinical Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 9 47824 -NCIT:C133448 Clinical Stage I Esophageal Squamous Cell Carcinoma AJCC v8 9 47825 -NCIT:C133449 Clinical Stage II Esophageal Squamous Cell Carcinoma AJCC v8 9 47826 -NCIT:C133450 Clinical Stage III Esophageal Squamous Cell Carcinoma AJCC v8 9 47827 -NCIT:C133451 Clinical Stage IV Esophageal Squamous Cell Carcinoma AJCC v8 9 47828 -NCIT:C133452 Clinical Stage IVA Esophageal Squamous Cell Carcinoma AJCC v8 10 47829 -NCIT:C133453 Clinical Stage IVB Esophageal Squamous Cell Carcinoma AJCC v8 10 47830 -NCIT:C133445 Esophageal Squamous Cell Carcinoma by AJCC v8 Pathologic Stage 8 47831 -NCIT:C133519 Pathologic Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 9 47832 -NCIT:C133521 Pathologic Stage I Esophageal Squamous Cell Carcinoma AJCC v8 9 47833 -NCIT:C133525 Pathologic Stage IA Esophageal Squamous Cell Carcinoma AJCC v8 10 47834 -NCIT:C133530 Pathologic Stage IB Esophageal Squamous Cell Carcinoma AJCC v8 10 47835 -NCIT:C133532 Pathologic Stage II Esophageal Squamous Cell Carcinoma AJCC v8 9 47836 -NCIT:C133534 Pathologic Stage IIA Esophageal Squamous Cell Carcinoma AJCC v8 10 47837 -NCIT:C133535 Pathologic Stage IIB Esophageal Squamous Cell Carcinoma AJCC v8 10 47838 -NCIT:C133536 Pathologic Stage III Esophageal Squamous Cell Carcinoma AJCC v8 9 47839 -NCIT:C133537 Pathologic Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v8 10 47840 -NCIT:C133538 Pathologic Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v8 10 47841 -NCIT:C133539 Pathologic Stage IV Esophageal Squamous Cell Carcinoma AJCC v8 9 47842 -NCIT:C133541 Pathologic Stage IVA Esophageal Squamous Cell Carcinoma AJCC v8 10 47843 -NCIT:C133542 Pathologic Stage IVB Esophageal Squamous Cell Carcinoma AJCC v8 10 47844 -NCIT:C133446 Esophageal Squamous Cell Carcinoma by AJCC v8 Postneoadjuvant Therapy Stage 8 47845 -NCIT:C133454 Postneoadjuvant Therapy Stage I Esophageal Squamous Cell Carcinoma AJCC v8 9 47846 -NCIT:C133455 Postneoadjuvant Therapy Stage II Esophageal Squamous Cell Carcinoma AJCC v8 9 47847 -NCIT:C133456 Postneoadjuvant Therapy Stage III Esophageal Squamous Cell Carcinoma AJCC v8 9 47848 -NCIT:C133457 Postneoadjuvant Therapy Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v8 10 47849 -NCIT:C133458 Postneoadjuvant Therapy Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v8 10 47850 -NCIT:C133459 Postneoadjuvant Therapy Stage IV Esophageal Squamous Cell Carcinoma AJCC v8 9 47851 -NCIT:C133460 Postneoadjuvant Therapy Stage IVA Esophageal Squamous Cell Carcinoma AJCC v8 10 47852 -NCIT:C133461 Postneoadjuvant Therapy Stage IVB Esophageal Squamous Cell Carcinoma AJCC v8 10 47853 -NCIT:C156073 Metastatic Esophageal Carcinoma 6 47854 -NCIT:C156074 Metastatic Esophageal Adenocarcinoma 7 47855 -NCIT:C166120 Oligometastatic Esophageal Adenocarcinoma 8 47856 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 47857 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 47858 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 47859 -NCIT:C172249 Metastatic Distal Esophagus Adenocarcinoma 8 47860 -NCIT:C156075 Metastatic Esophageal Squamous Cell Carcinoma 7 47861 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 47862 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 47863 -NCIT:C160599 Advanced Esophageal Carcinoma 7 47864 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 47865 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 47866 -NCIT:C168976 Locally Advanced Esophageal Carcinoma 7 47867 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 47868 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 47869 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 47870 -NCIT:C166171 Localized Esophageal Carcinoma 6 47871 -NCIT:C171604 Refractory Esophageal Carcinoma 6 47872 -NCIT:C171606 Refractory Esophageal Squamous Cell Carcinoma 7 47873 -NCIT:C176892 Refractory Esophageal Adenocarcinoma 7 47874 -NCIT:C27421 Esophageal Adenosquamous Carcinoma 6 47875 -NCIT:C27422 Esophageal Undifferentiated Carcinoma 6 47876 -NCIT:C3999 Recurrent Esophageal Carcinoma 6 47877 -NCIT:C8627 Recurrent Esophageal Adenocarcinoma 7 47878 -NCIT:C8633 Recurrent Esophageal Squamous Cell Carcinoma 7 47879 -NCIT:C4024 Esophageal Squamous Cell Carcinoma 6 47880 -NCIT:C133442 Esophageal Squamous Cell Carcinoma by AJCC v7 Stage 7 47881 -NCIT:C5019 Stage IV Esophageal Squamous Cell Carcinoma AJCC v7 8 47882 -NCIT:C5020 Stage III Esophageal Squamous Cell Carcinoma AJCC v7 8 47883 -NCIT:C87787 Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v7 9 47884 -NCIT:C87788 Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v7 9 47885 -NCIT:C87789 Stage IIIC Esophageal Squamous Cell Carcinoma AJCC v7 9 47886 -NCIT:C5021 Stage II Esophageal Squamous Cell Carcinoma AJCC v7 8 47887 -NCIT:C6737 Stage IIB Esophageal Squamous Cell Carcinoma AJCC v7 9 47888 -NCIT:C6738 Stage IIA Esophageal Squamous Cell Carcinoma AJCC v7 9 47889 -NCIT:C5022 Stage I Esophageal Squamous Cell Carcinoma AJCC v7 8 47890 -NCIT:C87780 Stage IA Esophageal Squamous Cell Carcinoma AJCC v7 9 47891 -NCIT:C87781 Stage IB Esophageal Squamous Cell Carcinoma AJCC v7 9 47892 -NCIT:C5023 Stage 0 Esophageal Squamous Cell Carcinoma AJCC v7 8 47893 -NCIT:C133443 Esophageal Squamous Cell Carcinoma by AJCC v8 Stage 7 47894 -NCIT:C133444 Esophageal Squamous Cell Carcinoma by AJCC v8 Clinical Stage 8 47895 -NCIT:C133447 Clinical Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 9 47896 -NCIT:C133448 Clinical Stage I Esophageal Squamous Cell Carcinoma AJCC v8 9 47897 -NCIT:C133449 Clinical Stage II Esophageal Squamous Cell Carcinoma AJCC v8 9 47898 -NCIT:C133450 Clinical Stage III Esophageal Squamous Cell Carcinoma AJCC v8 9 47899 -NCIT:C133451 Clinical Stage IV Esophageal Squamous Cell Carcinoma AJCC v8 9 47900 -NCIT:C133452 Clinical Stage IVA Esophageal Squamous Cell Carcinoma AJCC v8 10 47901 -NCIT:C133453 Clinical Stage IVB Esophageal Squamous Cell Carcinoma AJCC v8 10 47902 -NCIT:C133445 Esophageal Squamous Cell Carcinoma by AJCC v8 Pathologic Stage 8 47903 -NCIT:C133519 Pathologic Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 9 47904 -NCIT:C133521 Pathologic Stage I Esophageal Squamous Cell Carcinoma AJCC v8 9 47905 -NCIT:C133525 Pathologic Stage IA Esophageal Squamous Cell Carcinoma AJCC v8 10 47906 -NCIT:C133530 Pathologic Stage IB Esophageal Squamous Cell Carcinoma AJCC v8 10 47907 -NCIT:C133532 Pathologic Stage II Esophageal Squamous Cell Carcinoma AJCC v8 9 47908 -NCIT:C133534 Pathologic Stage IIA Esophageal Squamous Cell Carcinoma AJCC v8 10 47909 -NCIT:C133535 Pathologic Stage IIB Esophageal Squamous Cell Carcinoma AJCC v8 10 47910 -NCIT:C133536 Pathologic Stage III Esophageal Squamous Cell Carcinoma AJCC v8 9 47911 -NCIT:C133537 Pathologic Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v8 10 47912 -NCIT:C133538 Pathologic Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v8 10 47913 -NCIT:C133539 Pathologic Stage IV Esophageal Squamous Cell Carcinoma AJCC v8 9 47914 -NCIT:C133541 Pathologic Stage IVA Esophageal Squamous Cell Carcinoma AJCC v8 10 47915 -NCIT:C133542 Pathologic Stage IVB Esophageal Squamous Cell Carcinoma AJCC v8 10 47916 -NCIT:C133446 Esophageal Squamous Cell Carcinoma by AJCC v8 Postneoadjuvant Therapy Stage 8 47917 -NCIT:C133454 Postneoadjuvant Therapy Stage I Esophageal Squamous Cell Carcinoma AJCC v8 9 47918 -NCIT:C133455 Postneoadjuvant Therapy Stage II Esophageal Squamous Cell Carcinoma AJCC v8 9 47919 -NCIT:C133456 Postneoadjuvant Therapy Stage III Esophageal Squamous Cell Carcinoma AJCC v8 9 47920 -NCIT:C133457 Postneoadjuvant Therapy Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v8 10 47921 -NCIT:C133458 Postneoadjuvant Therapy Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v8 10 47922 -NCIT:C133459 Postneoadjuvant Therapy Stage IV Esophageal Squamous Cell Carcinoma AJCC v8 9 47923 -NCIT:C133460 Postneoadjuvant Therapy Stage IVA Esophageal Squamous Cell Carcinoma AJCC v8 10 47924 -NCIT:C133461 Postneoadjuvant Therapy Stage IVB Esophageal Squamous Cell Carcinoma AJCC v8 10 47925 -NCIT:C150029 Thoracic Esophagus Squamous Cell Carcinoma 7 47926 -NCIT:C150032 Cervical Esophagus Squamous Cell Carcinoma 7 47927 -NCIT:C150037 Distal Esophagus Squamous Cell Carcinoma 7 47928 -NCIT:C156075 Metastatic Esophageal Squamous Cell Carcinoma 7 47929 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 47930 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 47931 -NCIT:C171606 Refractory Esophageal Squamous Cell Carcinoma 7 47932 -NCIT:C171608 Unresectable Esophageal Squamous Cell Carcinoma 7 47933 -NCIT:C27420 Esophageal Verrucous Carcinoma 7 47934 -NCIT:C27680 Human Papillomavirus-Related Esophageal Squamous Cell Carcinoma 7 47935 -NCIT:C27928 Alcohol-Related Esophageal Squamous Cell Carcinoma 7 47936 -NCIT:C7032 Esophageal Basaloid Carcinoma 7 47937 -NCIT:C8633 Recurrent Esophageal Squamous Cell Carcinoma 7 47938 -NCIT:C95608 Esophageal Spindle Cell Carcinoma 7 47939 -NCIT:C95610 Esophageal Well Differentiated Squamous Cell Carcinoma 7 47940 -NCIT:C179888 Esophageal Carcinoma Cuniculatum 8 47941 -NCIT:C95611 Esophageal Moderately Differentiated Squamous Cell Carcinoma 7 47942 -NCIT:C95612 Esophageal Poorly Differentiated Squamous Cell Carcinoma 7 47943 -NCIT:C4025 Esophageal Adenocarcinoma 6 47944 -NCIT:C133400 Esophageal Adenocarcinoma by AJCC v8 Stage 7 47945 -NCIT:C133401 Esophageal Adenocarcinoma by AJCC v8 Clinical Stage 8 47946 -NCIT:C133402 Clinical Stage 0 Esophageal Adenocarcinoma AJCC v8 9 47947 -NCIT:C133403 Clinical Stage I Esophageal Adenocarcinoma AJCC v8 9 47948 -NCIT:C133404 Clinical Stage II Esophageal Adenocarcinoma AJCC v8 9 47949 -NCIT:C133405 Clinical Stage IIA Esophageal Adenocarcinoma AJCC v8 10 47950 -NCIT:C133406 Clinical Stage IIB Esophageal Adenocarcinoma AJCC v8 10 47951 -NCIT:C133407 Clinical Stage III Esophageal Adenocarcinoma AJCC v8 9 47952 -NCIT:C133408 Clinical Stage IV Esophageal Adenocarcinoma AJCC v8 9 47953 -NCIT:C133409 Clinical Stage IVA Esophageal Adenocarcinoma AJCC v8 10 47954 -NCIT:C133410 Clinical Stage IVB Esophageal Adenocarcinoma AJCC v8 10 47955 -NCIT:C133412 Esophageal Adenocarcinoma by AJCC v8 Pathologic Stage 8 47956 -NCIT:C133413 Pathologic Stage 0 Esophageal Adenocarcinoma AJCC v8 9 47957 -NCIT:C133414 Pathologic Stage I Esophageal Adenocarcinoma AJCC v8 9 47958 -NCIT:C133415 Pathologic Stage IA Esophageal Adenocarcinoma AJCC v8 10 47959 -NCIT:C133416 Pathologic Stage IB Esophageal Adenocarcinoma AJCC v8 10 47960 -NCIT:C133417 Pathologic Stage IC Esophageal Adenocarcinoma AJCC v8 10 47961 -NCIT:C133418 Pathologic Stage II Esophageal Adenocarcinoma AJCC v8 9 47962 -NCIT:C133419 Pathologic Stage IIA Esophageal Adenocarcinoma AJCC v8 10 47963 -NCIT:C133420 Pathologic Stage IIB Esophageal Adenocarcinoma AJCC v8 10 47964 -NCIT:C133421 Pathologic Stage III Esophageal Adenocarcinoma AJCC v8 9 47965 -NCIT:C133422 Pathologic Stage IIIA Esophageal Adenocarcinoma AJCC v8 10 47966 -NCIT:C133423 Pathologic Stage IIIB Esophageal Adenocarcinoma AJCC v8 10 47967 -NCIT:C133424 Pathologic Stage IV Esophageal Adenocarcinoma AJCC v8 9 47968 -NCIT:C133425 Pathologic Stage IVA Esophageal Adenocarcinoma AJCC v8 10 47969 -NCIT:C133426 Pathologic Stage IVB Esophageal Adenocarcinoma AJCC v8 10 47970 -NCIT:C133432 Esophageal Adenocarcinoma by AJCC v8 Postneoadjuvant Therapy Stage 8 47971 -NCIT:C133433 Postneoadjuvant Therapy Stage I Esophageal Adenocarcinoma AJCC v8 9 47972 -NCIT:C133434 Postneoadjuvant Therapy Stage II Esophageal Adenocarcinoma AJCC v8 9 47973 -NCIT:C133435 Postneoadjuvant Therapy Stage III Esophageal Adenocarcinoma AJCC v8 9 47974 -NCIT:C133436 Postneoadjuvant Therapy Stage IIIA Esophageal Adenocarcinoma AJCC v8 10 47975 -NCIT:C133437 Postneoadjuvant Therapy Stage IIIB Esophageal Adenocarcinoma AJCC v8 10 47976 -NCIT:C133438 Postneoadjuvant Therapy Stage IV Esophageal Adenocarcinoma AJCC v8 9 47977 -NCIT:C133439 Postneoadjuvant Therapy Stage IVA Esophageal Adenocarcinoma AJCC v8 10 47978 -NCIT:C133440 Postneoadjuvant Therapy Stage IVB Esophageal Adenocarcinoma AJCC v8 10 47979 -NCIT:C133411 Esophageal Adenocarcinoma by AJCC v7 Stage 7 47980 -NCIT:C8628 Stage II Esophageal Adenocarcinoma AJCC v7 8 47981 -NCIT:C6731 Stage IIA Esophageal Adenocarcinoma AJCC v7 9 47982 -NCIT:C6732 Stage IIB Esophageal Adenocarcinoma AJCC v7 9 47983 -NCIT:C8629 Stage 0 Esophageal Adenocarcinoma AJCC v7 8 47984 -NCIT:C8630 Stage I Esophageal Adenocarcinoma AJCC v7 8 47985 -NCIT:C87782 Stage IA Esophageal Adenocarcinoma AJCC v7 9 47986 -NCIT:C87783 Stage IB Esophageal Adenocarcinoma AJCC v7 9 47987 -NCIT:C8631 Stage III Esophageal Adenocarcinoma AJCC v7 8 47988 -NCIT:C87784 Stage IIIA Esophageal Adenocarcinoma AJCC v7 9 47989 -NCIT:C87785 Stage IIIB Esophageal Adenocarcinoma AJCC v7 9 47990 -NCIT:C87786 Stage IIIC Esophageal Adenocarcinoma AJCC v7 9 47991 -NCIT:C8632 Stage IV Esophageal Adenocarcinoma AJCC v7 8 47992 -NCIT:C150027 Thoracic Esophagus Adenocarcinoma 7 47993 -NCIT:C150031 Cervical Esophagus Adenocarcinoma 7 47994 -NCIT:C152036 Distal Esophagus Adenocarcinoma 7 47995 -NCIT:C172248 Unresectable Distal Esophagus Adenocarcinoma 8 47996 -NCIT:C172249 Metastatic Distal Esophagus Adenocarcinoma 8 47997 -NCIT:C7027 Barrett Adenocarcinoma 8 47998 -NCIT:C156074 Metastatic Esophageal Adenocarcinoma 7 47999 -NCIT:C166120 Oligometastatic Esophageal Adenocarcinoma 8 48000 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 48001 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 48002 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 48003 -NCIT:C172249 Metastatic Distal Esophagus Adenocarcinoma 8 48004 -NCIT:C161906 Esophageal Intramucosal Adenocarcinoma 7 48005 -NCIT:C173162 Unresectable Esophageal Adenocarcinoma 7 48006 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 48007 -NCIT:C172248 Unresectable Distal Esophagus Adenocarcinoma 8 48008 -NCIT:C176892 Refractory Esophageal Adenocarcinoma 7 48009 -NCIT:C8627 Recurrent Esophageal Adenocarcinoma 7 48010 -NCIT:C5342 Esophageal Adenoid Cystic Carcinoma 6 48011 -NCIT:C5343 Esophageal Mucoepidermoid Carcinoma 6 48012 -NCIT:C90500 Esophageal Cancer by AJCC v6 Stage 6 48013 -NCIT:C3637 Stage 0 Esophageal Cancer AJCC v6 7 48014 -NCIT:C9210 Stage I Esophageal Cancer AJCC v6 7 48015 -NCIT:C9211 Stage II Esophageal Cancer AJCC v6 7 48016 -NCIT:C9212 Stage III Esophageal Cancer AJCC v6 7 48017 -NCIT:C9213 Stage IV Esophageal Cancer AJCC v6 7 48018 -NCIT:C91221 Esophageal Cancer by AJCC v7 Stage 6 48019 -NCIT:C133411 Esophageal Adenocarcinoma by AJCC v7 Stage 7 48020 -NCIT:C8628 Stage II Esophageal Adenocarcinoma AJCC v7 8 48021 -NCIT:C6731 Stage IIA Esophageal Adenocarcinoma AJCC v7 9 48022 -NCIT:C6732 Stage IIB Esophageal Adenocarcinoma AJCC v7 9 48023 -NCIT:C8629 Stage 0 Esophageal Adenocarcinoma AJCC v7 8 48024 -NCIT:C8630 Stage I Esophageal Adenocarcinoma AJCC v7 8 48025 -NCIT:C87782 Stage IA Esophageal Adenocarcinoma AJCC v7 9 48026 -NCIT:C87783 Stage IB Esophageal Adenocarcinoma AJCC v7 9 48027 -NCIT:C8631 Stage III Esophageal Adenocarcinoma AJCC v7 8 48028 -NCIT:C87784 Stage IIIA Esophageal Adenocarcinoma AJCC v7 9 48029 -NCIT:C87785 Stage IIIB Esophageal Adenocarcinoma AJCC v7 9 48030 -NCIT:C87786 Stage IIIC Esophageal Adenocarcinoma AJCC v7 9 48031 -NCIT:C8632 Stage IV Esophageal Adenocarcinoma AJCC v7 8 48032 -NCIT:C133442 Esophageal Squamous Cell Carcinoma by AJCC v7 Stage 7 48033 -NCIT:C5019 Stage IV Esophageal Squamous Cell Carcinoma AJCC v7 8 48034 -NCIT:C5020 Stage III Esophageal Squamous Cell Carcinoma AJCC v7 8 48035 -NCIT:C87787 Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v7 9 48036 -NCIT:C87788 Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v7 9 48037 -NCIT:C87789 Stage IIIC Esophageal Squamous Cell Carcinoma AJCC v7 9 48038 -NCIT:C5021 Stage II Esophageal Squamous Cell Carcinoma AJCC v7 8 48039 -NCIT:C6737 Stage IIB Esophageal Squamous Cell Carcinoma AJCC v7 9 48040 -NCIT:C6738 Stage IIA Esophageal Squamous Cell Carcinoma AJCC v7 9 48041 -NCIT:C5022 Stage I Esophageal Squamous Cell Carcinoma AJCC v7 8 48042 -NCIT:C87780 Stage IA Esophageal Squamous Cell Carcinoma AJCC v7 9 48043 -NCIT:C87781 Stage IB Esophageal Squamous Cell Carcinoma AJCC v7 9 48044 -NCIT:C5023 Stage 0 Esophageal Squamous Cell Carcinoma AJCC v7 8 48045 -NCIT:C89771 Stage 0 Esophageal Cancer AJCC v7 7 48046 -NCIT:C5023 Stage 0 Esophageal Squamous Cell Carcinoma AJCC v7 8 48047 -NCIT:C8629 Stage 0 Esophageal Adenocarcinoma AJCC v7 8 48048 -NCIT:C89793 Stage I Esophageal Cancer AJCC v7 7 48049 -NCIT:C115117 Stage IA Esophageal Cancer AJCC v7 8 48050 -NCIT:C87780 Stage IA Esophageal Squamous Cell Carcinoma AJCC v7 9 48051 -NCIT:C87782 Stage IA Esophageal Adenocarcinoma AJCC v7 9 48052 -NCIT:C115118 Stage IB Esophageal Cancer AJCC v7 8 48053 -NCIT:C87781 Stage IB Esophageal Squamous Cell Carcinoma AJCC v7 9 48054 -NCIT:C87783 Stage IB Esophageal Adenocarcinoma AJCC v7 9 48055 -NCIT:C5022 Stage I Esophageal Squamous Cell Carcinoma AJCC v7 8 48056 -NCIT:C87780 Stage IA Esophageal Squamous Cell Carcinoma AJCC v7 9 48057 -NCIT:C87781 Stage IB Esophageal Squamous Cell Carcinoma AJCC v7 9 48058 -NCIT:C8630 Stage I Esophageal Adenocarcinoma AJCC v7 8 48059 -NCIT:C87782 Stage IA Esophageal Adenocarcinoma AJCC v7 9 48060 -NCIT:C87783 Stage IB Esophageal Adenocarcinoma AJCC v7 9 48061 -NCIT:C89794 Stage II Esophageal Cancer AJCC v7 7 48062 -NCIT:C5021 Stage II Esophageal Squamous Cell Carcinoma AJCC v7 8 48063 -NCIT:C6737 Stage IIB Esophageal Squamous Cell Carcinoma AJCC v7 9 48064 -NCIT:C6738 Stage IIA Esophageal Squamous Cell Carcinoma AJCC v7 9 48065 -NCIT:C5691 Stage IIA Esophageal Cancer AJCC v7 8 48066 -NCIT:C6731 Stage IIA Esophageal Adenocarcinoma AJCC v7 9 48067 -NCIT:C6738 Stage IIA Esophageal Squamous Cell Carcinoma AJCC v7 9 48068 -NCIT:C5692 Stage IIB Esophageal Cancer AJCC v7 8 48069 -NCIT:C6732 Stage IIB Esophageal Adenocarcinoma AJCC v7 9 48070 -NCIT:C6737 Stage IIB Esophageal Squamous Cell Carcinoma AJCC v7 9 48071 -NCIT:C8628 Stage II Esophageal Adenocarcinoma AJCC v7 8 48072 -NCIT:C6731 Stage IIA Esophageal Adenocarcinoma AJCC v7 9 48073 -NCIT:C6732 Stage IIB Esophageal Adenocarcinoma AJCC v7 9 48074 -NCIT:C89795 Stage III Esophageal Cancer AJCC v7 7 48075 -NCIT:C115119 Stage IIIA Esophageal Cancer AJCC v7 8 48076 -NCIT:C87784 Stage IIIA Esophageal Adenocarcinoma AJCC v7 9 48077 -NCIT:C87787 Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v7 9 48078 -NCIT:C115120 Stage IIIB Esophageal Cancer AJCC v7 8 48079 -NCIT:C87785 Stage IIIB Esophageal Adenocarcinoma AJCC v7 9 48080 -NCIT:C87788 Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v7 9 48081 -NCIT:C115121 Stage IIIC Esophageal Cancer AJCC v7 8 48082 -NCIT:C87786 Stage IIIC Esophageal Adenocarcinoma AJCC v7 9 48083 -NCIT:C87789 Stage IIIC Esophageal Squamous Cell Carcinoma AJCC v7 9 48084 -NCIT:C5020 Stage III Esophageal Squamous Cell Carcinoma AJCC v7 8 48085 -NCIT:C87787 Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v7 9 48086 -NCIT:C87788 Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v7 9 48087 -NCIT:C87789 Stage IIIC Esophageal Squamous Cell Carcinoma AJCC v7 9 48088 -NCIT:C8631 Stage III Esophageal Adenocarcinoma AJCC v7 8 48089 -NCIT:C87784 Stage IIIA Esophageal Adenocarcinoma AJCC v7 9 48090 -NCIT:C87785 Stage IIIB Esophageal Adenocarcinoma AJCC v7 9 48091 -NCIT:C87786 Stage IIIC Esophageal Adenocarcinoma AJCC v7 9 48092 -NCIT:C89804 Stage IV Esophageal Cancer AJCC v7 7 48093 -NCIT:C5019 Stage IV Esophageal Squamous Cell Carcinoma AJCC v7 8 48094 -NCIT:C8632 Stage IV Esophageal Adenocarcinoma AJCC v7 8 48095 -NCIT:C95619 Esophageal Neuroendocrine Carcinoma 6 48096 -NCIT:C6762 Esophageal Small Cell Neuroendocrine Carcinoma 7 48097 -NCIT:C95620 Esophageal Large Cell Neuroendocrine Carcinoma 7 48098 -NCIT:C95621 Esophageal Mixed Adenoneuroendocrine Carcinoma 6 48099 -NCIT:C35180 Digestive System Carcinoma In Situ 5 48100 -NCIT:C133402 Clinical Stage 0 Esophageal Adenocarcinoma AJCC v8 6 48101 -NCIT:C133413 Pathologic Stage 0 Esophageal Adenocarcinoma AJCC v8 6 48102 -NCIT:C133447 Clinical Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 6 48103 -NCIT:C133519 Pathologic Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 6 48104 -NCIT:C133550 Clinical Stage 0 Gastroesophageal Junction Adenocarcinoma AJCC v8 6 48105 -NCIT:C133564 Pathologic Stage 0 Gastroesophageal Junction Adenocarcinoma AJCC v8 6 48106 -NCIT:C133647 Clinical Stage 0 Gastric Cancer AJCC v8 6 48107 -NCIT:C133654 Pathologic Stage 0 Gastric Cancer AJCC v8 6 48108 -NCIT:C133795 Stage 0 Anal Cancer AJCC v8 6 48109 -NCIT:C157575 Anal Intraepithelial Neoplasia 3 7 48110 -NCIT:C133894 Stage 0 Small Intestinal Adenocarcinoma AJCC v8 6 48111 -NCIT:C134118 Stage 0 Appendix Carcinoma AJCC v8 6 48112 -NCIT:C134182 Stage 0 Colorectal Cancer AJCC v8 6 48113 -NCIT:C134271 Stage 0 Colon Cancer AJCC v8 7 48114 -NCIT:C134291 Stage 0 Rectal Cancer AJCC v8 7 48115 -NCIT:C134663 Stage 0 Gallbladder Cancer AJCC v8 6 48116 -NCIT:C134865 Stage 0 Ampulla of Vater Cancer AJCC v8 6 48117 -NCIT:C134914 Stage 0 Pancreatic Cancer AJCC v8 6 48118 -NCIT:C3637 Stage 0 Esophageal Cancer AJCC v6 6 48119 -NCIT:C4439 Stage 0 Gallbladder Cancer AJCC v6 and v7 6 48120 -NCIT:C4444 Stage 0 Ampulla of Vater Cancer AJCC v7 6 48121 -NCIT:C4593 Stage 0 Appendix Carcinoma AJCC v7 6 48122 -NCIT:C4892 Stage 0 Small Intestinal Cancer AJCC v7 6 48123 -NCIT:C5729 Stage 0 Pancreatic Cancer AJCC v6 and v7 6 48124 -NCIT:C67493 High-Grade Biliary Intraepithelial Neoplasia 6 48125 -NCIT:C7788 Stage 0 Gastric Cancer AJCC v6 and v7 6 48126 -NCIT:C4428 Gastric Cardia Carcinoma In Situ AJCC v6 and v7 7 48127 -NCIT:C4429 Gastric Fundus Carcinoma In Situ AJCC v6 and v7 7 48128 -NCIT:C4430 Gastric Body Carcinoma In Situ AJCC v6 and v7 7 48129 -NCIT:C4431 Gastric Pylorus Carcinoma In Situ AJCC v6 and v7 7 48130 -NCIT:C8400 Gastric Antrum Carcinoma In Situ AJCC v6 and v7 8 48131 -NCIT:C7794 Stage 0 Anal Canal Cancer AJCC v6 and v7 6 48132 -NCIT:C27282 Stage 0 AIDS-Related Anal Canal Cancer AJCC v6 and v7 7 48133 -NCIT:C8932 Stage 0 Colorectal Cancer AJCC v6 and v7 6 48134 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 7 48135 -NCIT:C4594 Cecum Carcinoma In Situ 8 48136 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 7 48137 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 7 48138 -NCIT:C89771 Stage 0 Esophageal Cancer AJCC v7 6 48139 -NCIT:C5023 Stage 0 Esophageal Squamous Cell Carcinoma AJCC v7 7 48140 -NCIT:C8629 Stage 0 Esophageal Adenocarcinoma AJCC v7 7 48141 -NCIT:C4911 Gastric Carcinoma 5 48142 -NCIT:C118813 Childhood Gastric Carcinoma 6 48143 -NCIT:C133638 Gastric Cancer by AJCC v8 Stage 6 48144 -NCIT:C133639 Gastric Cancer by AJCC v8 Clinical Stage 7 48145 -NCIT:C133647 Clinical Stage 0 Gastric Cancer AJCC v8 8 48146 -NCIT:C133648 Clinical Stage I Gastric Cancer AJCC v8 8 48147 -NCIT:C133649 Clinical Stage II Gastric Cancer AJCC v8 8 48148 -NCIT:C133681 Clinical Stage IIA Gastric Cancer AJCC v8 9 48149 -NCIT:C133682 Clinical Stage IIB Gastric Cancer AJCC v8 9 48150 -NCIT:C133650 Clinical Stage III Gastric Cancer AJCC v8 8 48151 -NCIT:C133651 Clinical Stage IV Gastric Cancer AJCC v8 8 48152 -NCIT:C133652 Clinical Stage IVA Gastric Cancer AJCC v8 9 48153 -NCIT:C133653 Clinical Stage IVB Gastric Cancer AJCC v8 9 48154 -NCIT:C133640 Gastric Cancer by AJCC v8 Pathologic Stage 7 48155 -NCIT:C133654 Pathologic Stage 0 Gastric Cancer AJCC v8 8 48156 -NCIT:C133655 Pathologic Stage I Gastric Cancer AJCC v8 8 48157 -NCIT:C133656 Pathologic Stage IA Gastric Cancer AJCC v8 9 48158 -NCIT:C133657 Pathologic Stage IB Gastric Cancer AJCC v8 9 48159 -NCIT:C133659 Pathologic Stage II Gastric Cancer AJCC v8 8 48160 -NCIT:C133660 Pathologic Stage IIA Gastric Cancer AJCC v8 9 48161 -NCIT:C133662 Pathologic Stage IIB Gastric Cancer AJCC v8 9 48162 -NCIT:C133663 Pathologic Stage III Gastric Cancer AJCC v8 8 48163 -NCIT:C133665 Pathologic Stage IIIA Gastric Cancer AJCC v8 9 48164 -NCIT:C133666 Pathologic Stage IIIB Gastric Cancer AJCC v8 9 48165 -NCIT:C133667 Pathologic Stage IIIC Gastric Cancer AJCC v8 9 48166 -NCIT:C133668 Pathologic Stage IV Gastric Cancer AJCC v8 8 48167 -NCIT:C133641 Gastric Cancer by AJCC v8 Postneoadjuvant Therapy Stage 7 48168 -NCIT:C133670 Postneoadjuvant Therapy Stage I Gastric Cancer AJCC v8 8 48169 -NCIT:C133671 Postneoadjuvant Therapy Stage II Gastric Cancer AJCC v8 8 48170 -NCIT:C133672 Postneoadjuvant Therapy Stage III Gastric Cancer AJCC v8 8 48171 -NCIT:C133673 Postneoadjuvant Therapy Stage IV Gastric Cancer AJCC v8 8 48172 -NCIT:C147996 Refractory Gastric Carcinoma 6 48173 -NCIT:C167074 Refractory Gastric Adenocarcinoma 7 48174 -NCIT:C153320 Metastatic Gastric Carcinoma 6 48175 -NCIT:C153319 Metastatic Gastric Adenocarcinoma 7 48176 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 48177 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 48178 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 48179 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 48180 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 48181 -NCIT:C165630 Metastatic Proximal Gastric Adenocarcinoma 8 48182 -NCIT:C166121 Oligometastatic Gastric Adenocarcinoma 8 48183 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 48184 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 48185 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 7 48186 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 48187 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 48188 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 48189 -NCIT:C162772 Locally Advanced Gastric Carcinoma 7 48190 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 48191 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 48192 -NCIT:C165299 Advanced Gastric Carcinoma 7 48193 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 48194 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 48195 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 48196 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 48197 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 48198 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 7 48199 -NCIT:C156167 Localized Gastric Carcinoma 6 48200 -NCIT:C159775 Unresectable Gastric Carcinoma 6 48201 -NCIT:C154221 Unresectable Gastric Adenocarcinoma 7 48202 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 48203 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 48204 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 48205 -NCIT:C162304 EBV-Related Gastric Carcinoma 6 48206 -NCIT:C4004 Gastric Adenocarcinoma 6 48207 -NCIT:C153319 Metastatic Gastric Adenocarcinoma 7 48208 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 48209 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 48210 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 48211 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 48212 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 48213 -NCIT:C165630 Metastatic Proximal Gastric Adenocarcinoma 8 48214 -NCIT:C166121 Oligometastatic Gastric Adenocarcinoma 8 48215 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 48216 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 48217 -NCIT:C154221 Unresectable Gastric Adenocarcinoma 7 48218 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 48219 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 48220 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 48221 -NCIT:C154622 Recurrent Gastric Adenocarcinoma 7 48222 -NCIT:C165628 Proximal Gastric Adenocarcinoma 7 48223 -NCIT:C165630 Metastatic Proximal Gastric Adenocarcinoma 8 48224 -NCIT:C167074 Refractory Gastric Adenocarcinoma 7 48225 -NCIT:C43527 Sporadic Gastric Adenocarcinoma 7 48226 -NCIT:C27131 Early Gastric Cancer 8 48227 -NCIT:C95763 Gastric Intramucosal Adenocarcinoma 9 48228 -NCIT:C27765 Helicobacter Pylori-Related Gastric Adenocarcinoma 8 48229 -NCIT:C43529 Sporadic Gastric Diffuse Adenocarcinoma 8 48230 -NCIT:C5247 Gastric Cardia Adenocarcinoma 8 48231 -NCIT:C5248 Gastric Mucinous Adenocarcinoma 8 48232 -NCIT:C5472 Gastric Papillary Adenocarcinoma 8 48233 -NCIT:C5473 Gastric Tubular Adenocarcinoma 8 48234 -NCIT:C65194 Gastric Parietal Cell Adenocarcinoma 8 48235 -NCIT:C67526 Gastric Mixed Adenocarcinoma 8 48236 -NCIT:C9157 Gastric Intestinal-Type Adenocarcinoma 8 48237 -NCIT:C95743 Gastric Poorly Cohesive Adenocarcinoma 8 48238 -NCIT:C5250 Gastric Signet Ring Cell Adenocarcinoma 9 48239 -NCIT:C95747 Gastric Hepatoid Adenocarcinoma 8 48240 -NCIT:C95748 Gastric Carcinoma with Lymphoid Stroma 8 48241 -NCIT:C9159 Gastric Diffuse Adenocarcinoma 7 48242 -NCIT:C43295 Hereditary Gastric Diffuse Adenocarcinoma 8 48243 -NCIT:C43529 Sporadic Gastric Diffuse Adenocarcinoma 8 48244 -NCIT:C5474 Gastric Adenosquamous Carcinoma 6 48245 -NCIT:C5475 Gastric Squamous Cell Carcinoma 6 48246 -NCIT:C150034 Gastric Cardia Squamous Cell Carcinoma 7 48247 -NCIT:C5476 Gastric Undifferentiated Carcinoma 6 48248 -NCIT:C6794 Gastric Cardia Carcinoma 6 48249 -NCIT:C150034 Gastric Cardia Squamous Cell Carcinoma 7 48250 -NCIT:C4428 Gastric Cardia Carcinoma In Situ AJCC v6 and v7 7 48251 -NCIT:C5247 Gastric Cardia Adenocarcinoma 7 48252 -NCIT:C6795 Gastric Pylorus Carcinoma 6 48253 -NCIT:C4431 Gastric Pylorus Carcinoma In Situ AJCC v6 and v7 7 48254 -NCIT:C8400 Gastric Antrum Carcinoma In Situ AJCC v6 and v7 8 48255 -NCIT:C8398 Gastric Fundus Carcinoma 6 48256 -NCIT:C4429 Gastric Fundus Carcinoma In Situ AJCC v6 and v7 7 48257 -NCIT:C8399 Gastric Body Carcinoma 6 48258 -NCIT:C4430 Gastric Body Carcinoma In Situ AJCC v6 and v7 7 48259 -NCIT:C90503 Gastric Cancer by AJCC v6 Stage 6 48260 -NCIT:C7772 Stage I Gastric Cancer AJCC v6 7 48261 -NCIT:C7773 Stage II Gastric Cancer AJCC v6 7 48262 -NCIT:C7774 Stage III Gastric Cancer AJCC v6 7 48263 -NCIT:C7788 Stage 0 Gastric Cancer AJCC v6 and v7 7 48264 -NCIT:C4428 Gastric Cardia Carcinoma In Situ AJCC v6 and v7 8 48265 -NCIT:C4429 Gastric Fundus Carcinoma In Situ AJCC v6 and v7 8 48266 -NCIT:C4430 Gastric Body Carcinoma In Situ AJCC v6 and v7 8 48267 -NCIT:C4431 Gastric Pylorus Carcinoma In Situ AJCC v6 and v7 8 48268 -NCIT:C8400 Gastric Antrum Carcinoma In Situ AJCC v6 and v7 9 48269 -NCIT:C9036 Stage IV Gastric Cancer AJCC v6 7 48270 -NCIT:C91222 Gastric Cancer by AJCC v7 Stage 6 48271 -NCIT:C7788 Stage 0 Gastric Cancer AJCC v6 and v7 7 48272 -NCIT:C4428 Gastric Cardia Carcinoma In Situ AJCC v6 and v7 8 48273 -NCIT:C4429 Gastric Fundus Carcinoma In Situ AJCC v6 and v7 8 48274 -NCIT:C4430 Gastric Body Carcinoma In Situ AJCC v6 and v7 8 48275 -NCIT:C4431 Gastric Pylorus Carcinoma In Situ AJCC v6 and v7 8 48276 -NCIT:C8400 Gastric Antrum Carcinoma In Situ AJCC v6 and v7 9 48277 -NCIT:C89856 Stage I Gastric Cancer AJCC v7 7 48278 -NCIT:C5468 Stage IA Gastric Cancer AJCC v7 8 48279 -NCIT:C5469 Stage IB Gastric Cancer AJCC v7 8 48280 -NCIT:C89859 Stage II Gastric Cancer AJCC v7 7 48281 -NCIT:C87775 Stage IIA Gastric Cancer AJCC v7 8 48282 -NCIT:C87776 Stage IIB Gastric Cancer AJCC v7 8 48283 -NCIT:C89860 Stage III Gastric Cancer AJCC v7 7 48284 -NCIT:C5470 Stage IIIB Gastric Cancer AJCC v7 8 48285 -NCIT:C5471 Stage IIIA Gastric Cancer AJCC v7 8 48286 -NCIT:C87777 Stage IIIC Gastric Cancer AJCC v7 8 48287 -NCIT:C89861 Stage IV Gastric Cancer AJCC v7 7 48288 -NCIT:C9237 Recurrent Gastric Carcinoma 6 48289 -NCIT:C154622 Recurrent Gastric Adenocarcinoma 7 48290 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 7 48291 -NCIT:C190198 Locally Recurrent Gastric Carcinoma 7 48292 -NCIT:C95884 Gastric Neuroendocrine Carcinoma 6 48293 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 7 48294 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 48295 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 48296 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 48297 -NCIT:C6764 Gastric Small Cell Neuroendocrine Carcinoma 7 48298 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 48299 -NCIT:C95885 Gastric Large Cell Neuroendocrine Carcinoma 7 48300 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 48301 -NCIT:C95886 Gastric Mixed Adenoneuroendocrine Carcinoma 6 48302 -NCIT:C7622 Recurrent Digestive System Carcinoma 5 48303 -NCIT:C151905 Recurrent Metastatic Digestive System Carcinoma 6 48304 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 7 48305 -NCIT:C153359 Recurrent Gastroesophageal Junction Adenocarcinoma 6 48306 -NCIT:C153574 Recurrent Ampulla of Vater Adenocarcinoma 6 48307 -NCIT:C153575 Recurrent Anal Adenocarcinoma 6 48308 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 7 48309 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 7 48310 -NCIT:C153802 Recurrent Appendix Carcinoma 6 48311 -NCIT:C179174 Recurrent Appendix Adenocarcinoma 7 48312 -NCIT:C153579 Recurrent Appendix Mucinous Adenocarcinoma 8 48313 -NCIT:C155938 Recurrent Digestive System Neuroendocrine Carcinoma 6 48314 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 7 48315 -NCIT:C156782 Recurrent Biliary Tract Carcinoma 6 48316 -NCIT:C153360 Recurrent Bile Duct Carcinoma 7 48317 -NCIT:C27325 Recurrent Cholangiocarcinoma 8 48318 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 9 48319 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 9 48320 -NCIT:C7893 Recurrent Extrahepatic Bile Duct Carcinoma 8 48321 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 9 48322 -NCIT:C4008 Recurrent Gallbladder Carcinoma 7 48323 -NCIT:C169102 Recurrent Anal Squamous Cell Carcinoma 6 48324 -NCIT:C175360 Recurrent Anal Canal Squamous Cell Carcinoma 7 48325 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 8 48326 -NCIT:C3999 Recurrent Esophageal Carcinoma 6 48327 -NCIT:C8627 Recurrent Esophageal Adenocarcinoma 7 48328 -NCIT:C8633 Recurrent Esophageal Squamous Cell Carcinoma 7 48329 -NCIT:C7110 Recurrent Liver Carcinoma 6 48330 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 7 48331 -NCIT:C7880 Recurrent Adult Liver Carcinoma 7 48332 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 8 48333 -NCIT:C9264 Recurrent Hepatocellular Carcinoma 7 48334 -NCIT:C154082 Recurrent Fibrolamellar Carcinoma 8 48335 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 8 48336 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 8 48337 -NCIT:C7626 Recurrent Pancreatic Carcinoma 6 48338 -NCIT:C155742 Recurrent Pancreatic Adenocarcinoma 7 48339 -NCIT:C153569 Recurrent Pancreatic Acinar Cell Carcinoma 8 48340 -NCIT:C153619 Recurrent Pancreatic Ductal Adenocarcinoma 8 48341 -NCIT:C153620 Recurrent Pancreatic Cystadenocarcinoma 8 48342 -NCIT:C7793 Recurrent Anal Canal Carcinoma 6 48343 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 7 48344 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 7 48345 -NCIT:C175360 Recurrent Anal Canal Squamous Cell Carcinoma 7 48346 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 8 48347 -NCIT:C9249 Recurrent AIDS-Related Anal Canal Carcinoma 7 48348 -NCIT:C7894 Recurrent Small Intestinal Carcinoma 6 48349 -NCIT:C9352 Recurrent Duodenal Carcinoma 7 48350 -NCIT:C8625 Recurrent Colorectal Carcinoma 6 48351 -NCIT:C162441 Recurrent Colorectal Adenocarcinoma 7 48352 -NCIT:C162442 Recurrent Colon Adenocarcinoma 8 48353 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 8 48354 -NCIT:C190199 Locally Recurrent Colorectal Carcinoma 7 48355 -NCIT:C190679 Recurrent Microsatellite Stable Colorectal Carcinoma 7 48356 -NCIT:C3998 Recurrent Colon Carcinoma 7 48357 -NCIT:C162442 Recurrent Colon Adenocarcinoma 8 48358 -NCIT:C8634 Recurrent Rectosigmoid Carcinoma 7 48359 -NCIT:C9238 Recurrent Rectal Carcinoma 7 48360 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 8 48361 -NCIT:C9237 Recurrent Gastric Carcinoma 6 48362 -NCIT:C154622 Recurrent Gastric Adenocarcinoma 7 48363 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 7 48364 -NCIT:C190198 Locally Recurrent Gastric Carcinoma 7 48365 -NCIT:C7724 Small Intestinal Carcinoma 5 48366 -NCIT:C123933 Childhood Small Intestinal Carcinoma 6 48367 -NCIT:C133716 Small Intestinal Cancer by AJCC v7 Stage 6 48368 -NCIT:C4892 Stage 0 Small Intestinal Cancer AJCC v7 7 48369 -NCIT:C5807 Stage I Small Intestinal Cancer AJCC v7 7 48370 -NCIT:C5808 Stage II Small Intestinal Cancer AJCC v7 7 48371 -NCIT:C87791 Stage IIA Small Intestinal Cancer AJCC v7 8 48372 -NCIT:C87792 Stage IIB Small Intestinal Cancer AJCC v7 8 48373 -NCIT:C5809 Stage III Small Intestinal Cancer AJCC v7 7 48374 -NCIT:C87793 Stage IIIA Small Intestinal Cancer AJCC v7 8 48375 -NCIT:C87795 Stage IIIB Small Intestinal Cancer AJCC v7 8 48376 -NCIT:C5810 Stage IV Small Intestinal Cancer AJCC v7 7 48377 -NCIT:C153356 Refractory Small Intestinal Carcinoma 6 48378 -NCIT:C181157 Jejunal Carcinoma 6 48379 -NCIT:C181158 Jejunal Adenocarcinoma 7 48380 -NCIT:C43534 Small Intestinal Squamous Cell Carcinoma 6 48381 -NCIT:C43535 Small Intestinal Adenosquamous Carcinoma 6 48382 -NCIT:C43537 Small Intestinal Medullary Carcinoma 6 48383 -NCIT:C43538 Small Intestinal Undifferentiated Carcinoma 6 48384 -NCIT:C4803 Duodenal Carcinoma 6 48385 -NCIT:C27323 Resectable Duodenal Carcinoma 7 48386 -NCIT:C169108 Resectable Periampullary Adenocarcinoma 8 48387 -NCIT:C7889 Duodenal Adenocarcinoma 7 48388 -NCIT:C27322 Periampullary Adenocarcinoma 8 48389 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 9 48390 -NCIT:C169108 Resectable Periampullary Adenocarcinoma 9 48391 -NCIT:C9352 Recurrent Duodenal Carcinoma 7 48392 -NCIT:C7888 Small Intestinal Adenocarcinoma 6 48393 -NCIT:C133893 Small Intestinal Adenocarcinoma by AJCC v8 Stage 7 48394 -NCIT:C133894 Stage 0 Small Intestinal Adenocarcinoma AJCC v8 8 48395 -NCIT:C133895 Stage I Small Intestinal Adenocarcinoma AJCC v8 8 48396 -NCIT:C133896 Stage II Small Intestinal Adenocarcinoma AJCC v8 8 48397 -NCIT:C133897 Stage IIA Small Intestinal Adenocarcinoma AJCC v8 9 48398 -NCIT:C133898 Stage IIB Small Intestinal Adenocarcinoma AJCC v8 9 48399 -NCIT:C133899 Stage III Small Intestinal Adenocarcinoma AJCC v8 8 48400 -NCIT:C133900 Stage IIIA Small Intestinal Adenocarcinoma AJCC v8 9 48401 -NCIT:C133901 Stage IIIB Small Intestinal Adenocarcinoma AJCC v8 9 48402 -NCIT:C133902 Stage IV Small Intestinal Adenocarcinoma AJCC v8 8 48403 -NCIT:C175516 Unresectable Small Intestinal Adenocarcinoma 7 48404 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 8 48405 -NCIT:C181158 Jejunal Adenocarcinoma 7 48406 -NCIT:C43536 Small Intestinal Mucinous Adenocarcinoma 7 48407 -NCIT:C43543 Small Intestinal Signet Ring Cell Carcinoma 7 48408 -NCIT:C7889 Duodenal Adenocarcinoma 7 48409 -NCIT:C27322 Periampullary Adenocarcinoma 8 48410 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 9 48411 -NCIT:C169108 Resectable Periampullary Adenocarcinoma 9 48412 -NCIT:C8934 Metastatic Small Intestinal Adenocarcinoma 7 48413 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 48414 -NCIT:C7894 Recurrent Small Intestinal Carcinoma 6 48415 -NCIT:C9352 Recurrent Duodenal Carcinoma 7 48416 -NCIT:C8637 Metastatic Small Intestinal Carcinoma 6 48417 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 7 48418 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 48419 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 7 48420 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 48421 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 48422 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 48423 -NCIT:C8934 Metastatic Small Intestinal Adenocarcinoma 7 48424 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 48425 -NCIT:C8638 Unresectable Small Intestinal Carcinoma 6 48426 -NCIT:C175516 Unresectable Small Intestinal Adenocarcinoma 7 48427 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 8 48428 -NCIT:C8639 Resectable Small Intestinal Carcinoma 6 48429 -NCIT:C27323 Resectable Duodenal Carcinoma 7 48430 -NCIT:C169108 Resectable Periampullary Adenocarcinoma 8 48431 -NCIT:C96064 Small Intestinal Neuroendocrine Carcinoma 6 48432 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 7 48433 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 48434 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 48435 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 48436 -NCIT:C27449 Small Intestinal Small Cell Neuroendocrine Carcinoma 7 48437 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 48438 -NCIT:C96065 Small Intestinal Large Cell Neuroendocrine Carcinoma 7 48439 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 48440 -NCIT:C96066 Small Intestinal Mixed Adenoneuroendocrine Carcinoma 6 48441 -NCIT:C7927 Liver and Intrahepatic Bile Duct Carcinoma 5 48442 -NCIT:C118630 Liver Adenosquamous Carcinoma 6 48443 -NCIT:C134604 Intrahepatic Bile Duct Cancer by AJCC v8 Stage 6 48444 -NCIT:C134609 Stage 0 Intrahepatic Bile Duct Cancer AJCC v8 7 48445 -NCIT:C134756 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v8 8 48446 -NCIT:C134610 Stage I Intrahepatic Bile Duct Cancer AJCC v8 7 48447 -NCIT:C134611 Stage IA Intrahepatic Bile Duct Cancer AJCC v8 8 48448 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 9 48449 -NCIT:C134612 Stage IB Intrahepatic Bile Duct Cancer AJCC v8 8 48450 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 9 48451 -NCIT:C134757 Stage I Intrahepatic Cholangiocarcinoma AJCC v8 8 48452 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 9 48453 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 9 48454 -NCIT:C134614 Stage II Intrahepatic Bile Duct Cancer AJCC v8 7 48455 -NCIT:C134760 Stage II Intrahepatic Cholangiocarcinoma AJCC v8 8 48456 -NCIT:C134615 Stage III Intrahepatic Bile Duct Cancer AJCC v8 7 48457 -NCIT:C134616 Stage IIIA Intrahepatic Bile Duct Cancer AJCC v8 8 48458 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 9 48459 -NCIT:C134618 Stage IIIB Intrahepatic Bile Duct Cancer AJCC v8 8 48460 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 9 48461 -NCIT:C134761 Stage III Intrahepatic Cholangiocarcinoma AJCC v8 8 48462 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 9 48463 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 9 48464 -NCIT:C134619 Stage IV Intrahepatic Bile Duct Cancer AJCC v8 7 48465 -NCIT:C134764 Stage IV Intrahepatic Cholangiocarcinoma AJCC v8 8 48466 -NCIT:C134755 Intrahepatic Cholangiocarcinoma by AJCC v8 Stage 7 48467 -NCIT:C134756 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v8 8 48468 -NCIT:C134757 Stage I Intrahepatic Cholangiocarcinoma AJCC v8 8 48469 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 9 48470 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 9 48471 -NCIT:C134760 Stage II Intrahepatic Cholangiocarcinoma AJCC v8 8 48472 -NCIT:C134761 Stage III Intrahepatic Cholangiocarcinoma AJCC v8 8 48473 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 9 48474 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 9 48475 -NCIT:C134764 Stage IV Intrahepatic Cholangiocarcinoma AJCC v8 8 48476 -NCIT:C153352 Refractory Liver Carcinoma 6 48477 -NCIT:C162450 Refractory Hepatocellular Carcinoma 7 48478 -NCIT:C188887 Refractory Fibrolamellar Carcinoma 8 48479 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 7 48480 -NCIT:C154088 Metastatic Liver Carcinoma 6 48481 -NCIT:C154091 Metastatic Hepatocellular Carcinoma 7 48482 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 8 48483 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 48484 -NCIT:C167336 Advanced Hepatocellular Carcinoma 8 48485 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 48486 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 48487 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 48488 -NCIT:C171298 Locally Advanced Liver Carcinoma 7 48489 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 48490 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 8 48491 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 7 48492 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 8 48493 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 8 48494 -NCIT:C165171 Unresectable Liver and Intrahepatic Bile Duct Carcinoma 6 48495 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 7 48496 -NCIT:C27345 Unresectable Hepatocellular Carcinoma 7 48497 -NCIT:C162602 Unresectable Fibrolamellar Carcinoma 8 48498 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 8 48499 -NCIT:C7878 Localized Unresectable Adult Liver Carcinoma 7 48500 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 8 48501 -NCIT:C165293 Resectable Liver and Intrahepatic Bile Duct Carcinoma 6 48502 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 7 48503 -NCIT:C7691 Resectable Hepatocellular Carcinoma 7 48504 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 8 48505 -NCIT:C7877 Localized Resectable Adult Liver Carcinoma 7 48506 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 8 48507 -NCIT:C172718 Liver Mixed Adenoneuroendocrine Carcinoma 6 48508 -NCIT:C3099 Hepatocellular Carcinoma 6 48509 -NCIT:C115132 Hepatocellular Carcinoma by BCLC Stage 7 48510 -NCIT:C115133 BCLC Stage 0 Hepatocellular Carcinoma 8 48511 -NCIT:C115139 BCLC Stage 0 Adult Hepatocellular Carcinoma 9 48512 -NCIT:C115135 BCLC Stage A Hepatocellular Carcinoma 8 48513 -NCIT:C115140 BCLC Stage A Adult Hepatocellular Carcinoma 9 48514 -NCIT:C115136 BCLC Stage B Hepatocellular Carcinoma 8 48515 -NCIT:C115141 BCLC Stage B Adult Hepatocellular Carcinoma 9 48516 -NCIT:C115137 BCLC Stage C Hepatocellular Carcinoma 8 48517 -NCIT:C115143 BCLC Stage C Adult Hepatocellular Carcinoma 9 48518 -NCIT:C115138 BCLC Stage D Hepatocellular Carcinoma 8 48519 -NCIT:C115144 BCLC Stage D Adult Hepatocellular Carcinoma 9 48520 -NCIT:C134515 Hepatocellular Carcinoma by AJCC v8 Stage 7 48521 -NCIT:C134516 Stage I Hepatocellular Carcinoma AJCC v8 8 48522 -NCIT:C134517 Stage IA Hepatocellular Carcinoma AJCC v8 9 48523 -NCIT:C134518 Stage IB Hepatocellular Carcinoma AJCC v8 9 48524 -NCIT:C134519 Stage II Hepatocellular Carcinoma AJCC v8 8 48525 -NCIT:C134520 Stage III Hepatocellular Carcinoma AJCC v8 8 48526 -NCIT:C134521 Stage IIIA Hepatocellular Carcinoma AJCC v8 9 48527 -NCIT:C134522 Stage IIIB Hepatocellular Carcinoma AJCC v8 9 48528 -NCIT:C134523 Stage IV Hepatocellular Carcinoma AJCC v8 8 48529 -NCIT:C134524 Stage IVA Hepatocellular Carcinoma AJCC v8 9 48530 -NCIT:C134525 Stage IVB Hepatocellular Carcinoma AJCC v8 9 48531 -NCIT:C154091 Metastatic Hepatocellular Carcinoma 7 48532 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 8 48533 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 48534 -NCIT:C167336 Advanced Hepatocellular Carcinoma 8 48535 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 48536 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 48537 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 48538 -NCIT:C162450 Refractory Hepatocellular Carcinoma 7 48539 -NCIT:C188887 Refractory Fibrolamellar Carcinoma 8 48540 -NCIT:C172709 Steatohepatitic Hepatocellular Carcinoma 7 48541 -NCIT:C27924 Alcohol-Related Hepatocellular Carcinoma 8 48542 -NCIT:C172710 Macrotrabecular Massive Hepatocellular Carcinoma 7 48543 -NCIT:C172712 Chromophobe Hepatocellular Carcinoma 7 48544 -NCIT:C172713 Neutrophil-Rich Hepatocellular Carcinoma 7 48545 -NCIT:C172714 Small Hepatocellular Carcinoma 7 48546 -NCIT:C172716 Small Progressed Hepatocellular Carcinoma 8 48547 -NCIT:C96772 Early Hepatocellular Carcinoma 8 48548 -NCIT:C27345 Unresectable Hepatocellular Carcinoma 7 48549 -NCIT:C162602 Unresectable Fibrolamellar Carcinoma 8 48550 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 8 48551 -NCIT:C27388 Scirrhous Hepatocellular Carcinoma 7 48552 -NCIT:C27635 Transplant-Related Hepatocellular Carcinoma 7 48553 -NCIT:C27686 Hepatitis Virus-Related Hepatocellular Carcinoma 7 48554 -NCIT:C27687 Hepatitis B Virus-Related Hepatocellular Carcinoma 8 48555 -NCIT:C27688 Hepatitis C Virus-Related Hepatocellular Carcinoma 8 48556 -NCIT:C27922 Aflatoxins-Related Hepatocellular Carcinoma 7 48557 -NCIT:C4131 Fibrolamellar Carcinoma 7 48558 -NCIT:C114992 Adult Fibrolamellar Carcinoma 8 48559 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 8 48560 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 48561 -NCIT:C154082 Recurrent Fibrolamellar Carcinoma 8 48562 -NCIT:C162602 Unresectable Fibrolamellar Carcinoma 8 48563 -NCIT:C188887 Refractory Fibrolamellar Carcinoma 8 48564 -NCIT:C189932 Childhood Fibrolamellar Carcinoma 8 48565 -NCIT:C43625 Pleomorphic Hepatocellular Carcinoma 7 48566 -NCIT:C114993 Adult Pleomorphic Hepatocellular Carcinoma 8 48567 -NCIT:C43627 Sarcomatoid Hepatocellular Carcinoma 7 48568 -NCIT:C5754 Clear Cell Hepatocellular Carcinoma 7 48569 -NCIT:C7691 Resectable Hepatocellular Carcinoma 7 48570 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 8 48571 -NCIT:C7955 Childhood Hepatocellular Carcinoma 7 48572 -NCIT:C189932 Childhood Fibrolamellar Carcinoma 8 48573 -NCIT:C5708 Stage III Childhood Hepatocellular Carcinoma AJCC v7 8 48574 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 8 48575 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 8 48576 -NCIT:C7838 Stage IV Childhood Hepatocellular Carcinoma AJCC v7 8 48577 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 8 48578 -NCIT:C7956 Adult Hepatocellular Carcinoma 7 48579 -NCIT:C114992 Adult Fibrolamellar Carcinoma 8 48580 -NCIT:C114993 Adult Pleomorphic Hepatocellular Carcinoma 8 48581 -NCIT:C115139 BCLC Stage 0 Adult Hepatocellular Carcinoma 8 48582 -NCIT:C115140 BCLC Stage A Adult Hepatocellular Carcinoma 8 48583 -NCIT:C115141 BCLC Stage B Adult Hepatocellular Carcinoma 8 48584 -NCIT:C115143 BCLC Stage C Adult Hepatocellular Carcinoma 8 48585 -NCIT:C115144 BCLC Stage D Adult Hepatocellular Carcinoma 8 48586 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 8 48587 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 8 48588 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 8 48589 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 8 48590 -NCIT:C90510 Hepatocellular Carcinoma by AJCC v6 Stage 7 48591 -NCIT:C5758 Stage I Hepatocellular Carcinoma AJCC v6 and v7 8 48592 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 9 48593 -NCIT:C5759 Stage II Hepatocellular Carcinoma AJCC v6 and v7 8 48594 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 9 48595 -NCIT:C5760 Stage III Hepatocellular Carcinoma AJCC v6 8 48596 -NCIT:C5763 Stage IV Hepatocellular Carcinoma AJCC v6 8 48597 -NCIT:C91228 Hepatocellular Carcinoma by AJCC v7 Stage 7 48598 -NCIT:C5758 Stage I Hepatocellular Carcinoma AJCC v6 and v7 8 48599 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 9 48600 -NCIT:C5759 Stage II Hepatocellular Carcinoma AJCC v6 and v7 8 48601 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 9 48602 -NCIT:C90180 Stage III Hepatocellular Carcinoma AJCC v7 8 48603 -NCIT:C5708 Stage III Childhood Hepatocellular Carcinoma AJCC v7 9 48604 -NCIT:C5761 Stage IIIA Hepatocellular Carcinoma AJCC v7 9 48605 -NCIT:C5762 Stage IIIB Hepatocellular Carcinoma AJCC v7 9 48606 -NCIT:C88044 Stage IIIC Hepatocellular Carcinoma AJCC v7 9 48607 -NCIT:C90181 Stage IV Hepatocellular Carcinoma AJCC v7 8 48608 -NCIT:C5764 Stage IVA Hepatocellular Carcinoma AJCC v7 9 48609 -NCIT:C5765 Stage IVB Hepatocellular Carcinoma AJCC v7 9 48610 -NCIT:C7838 Stage IV Childhood Hepatocellular Carcinoma AJCC v7 9 48611 -NCIT:C9264 Recurrent Hepatocellular Carcinoma 7 48612 -NCIT:C154082 Recurrent Fibrolamellar Carcinoma 8 48613 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 8 48614 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 8 48615 -NCIT:C96788 Lymphocyte-Rich Hepatocellular Carcinoma 7 48616 -NCIT:C96789 Well Differentiated Hepatocellular Carcinoma 7 48617 -NCIT:C96790 Moderately Differentiated Hepatocellular Carcinoma 7 48618 -NCIT:C96791 Poorly Differentiated Hepatocellular Carcinoma 7 48619 -NCIT:C35417 Intrahepatic Cholangiocarcinoma 6 48620 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 7 48621 -NCIT:C134514 Intrahepatic Cholangiocarcinoma by AJCC v7 Stage 7 48622 -NCIT:C88049 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v7 8 48623 -NCIT:C88050 Stage I Intrahepatic Cholangiocarcinoma AJCC v7 8 48624 -NCIT:C88051 Stage II Intrahepatic Cholangiocarcinoma AJCC v7 8 48625 -NCIT:C88052 Stage III Intrahepatic Cholangiocarcinoma AJCC v7 8 48626 -NCIT:C88053 Stage IVA Intrahepatic Cholangiocarcinoma AJCC v7 8 48627 -NCIT:C88054 Stage IVB Intrahepatic Cholangiocarcinoma AJCC v7 8 48628 -NCIT:C134755 Intrahepatic Cholangiocarcinoma by AJCC v8 Stage 7 48629 -NCIT:C134756 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v8 8 48630 -NCIT:C134757 Stage I Intrahepatic Cholangiocarcinoma AJCC v8 8 48631 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 9 48632 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 9 48633 -NCIT:C134760 Stage II Intrahepatic Cholangiocarcinoma AJCC v8 8 48634 -NCIT:C134761 Stage III Intrahepatic Cholangiocarcinoma AJCC v8 8 48635 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 9 48636 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 9 48637 -NCIT:C134764 Stage IV Intrahepatic Cholangiocarcinoma AJCC v8 8 48638 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 7 48639 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 7 48640 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 7 48641 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 8 48642 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 8 48643 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 7 48644 -NCIT:C41617 Cholangiolocellular Carcinoma 7 48645 -NCIT:C41618 Mucin-Producing Intrahepatic Cholangiocarcinoma 7 48646 -NCIT:C41619 Signet Ring Cell Intrahepatic Cholangiocarcinoma 7 48647 -NCIT:C41620 Sarcomatoid Intrahepatic Cholangiocarcinoma 7 48648 -NCIT:C43848 Clear Cell Intrahepatic Cholangiocarcinoma 7 48649 -NCIT:C96804 Large Duct Intrahepatic Cholangiocarcinoma 7 48650 -NCIT:C96805 Small Duct Intrahepatic Cholangiocarcinoma 7 48651 -NCIT:C96949 Intrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 7 48652 -NCIT:C3828 Combined Hepatocellular Carcinoma and Cholangiocarcinoma 6 48653 -NCIT:C114987 Adult Combined Hepatocellular Carcinoma and Cholangiocarcinoma 7 48654 -NCIT:C7110 Recurrent Liver Carcinoma 6 48655 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 7 48656 -NCIT:C7880 Recurrent Adult Liver Carcinoma 7 48657 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 8 48658 -NCIT:C9264 Recurrent Hepatocellular Carcinoma 7 48659 -NCIT:C154082 Recurrent Fibrolamellar Carcinoma 8 48660 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 8 48661 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 8 48662 -NCIT:C7116 Stage I Liver Cancer 6 48663 -NCIT:C134516 Stage I Hepatocellular Carcinoma AJCC v8 7 48664 -NCIT:C134517 Stage IA Hepatocellular Carcinoma AJCC v8 8 48665 -NCIT:C134518 Stage IB Hepatocellular Carcinoma AJCC v8 8 48666 -NCIT:C134610 Stage I Intrahepatic Bile Duct Cancer AJCC v8 7 48667 -NCIT:C134611 Stage IA Intrahepatic Bile Duct Cancer AJCC v8 8 48668 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 9 48669 -NCIT:C134612 Stage IB Intrahepatic Bile Duct Cancer AJCC v8 8 48670 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 9 48671 -NCIT:C134757 Stage I Intrahepatic Cholangiocarcinoma AJCC v8 8 48672 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 9 48673 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 9 48674 -NCIT:C5758 Stage I Hepatocellular Carcinoma AJCC v6 and v7 7 48675 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 8 48676 -NCIT:C88050 Stage I Intrahepatic Cholangiocarcinoma AJCC v7 7 48677 -NCIT:C94775 Stage I Adult Liver Cancer AJCC v7 7 48678 -NCIT:C7117 Stage II Liver Cancer 6 48679 -NCIT:C134519 Stage II Hepatocellular Carcinoma AJCC v8 7 48680 -NCIT:C134614 Stage II Intrahepatic Bile Duct Cancer AJCC v8 7 48681 -NCIT:C134760 Stage II Intrahepatic Cholangiocarcinoma AJCC v8 8 48682 -NCIT:C5759 Stage II Hepatocellular Carcinoma AJCC v6 and v7 7 48683 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 8 48684 -NCIT:C88051 Stage II Intrahepatic Cholangiocarcinoma AJCC v7 7 48685 -NCIT:C94776 Stage II Adult Liver Cancer AJCC v7 7 48686 -NCIT:C7118 Stage III Liver Cancer 6 48687 -NCIT:C134520 Stage III Hepatocellular Carcinoma AJCC v8 7 48688 -NCIT:C134521 Stage IIIA Hepatocellular Carcinoma AJCC v8 8 48689 -NCIT:C134522 Stage IIIB Hepatocellular Carcinoma AJCC v8 8 48690 -NCIT:C134615 Stage III Intrahepatic Bile Duct Cancer AJCC v8 7 48691 -NCIT:C134616 Stage IIIA Intrahepatic Bile Duct Cancer AJCC v8 8 48692 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 9 48693 -NCIT:C134618 Stage IIIB Intrahepatic Bile Duct Cancer AJCC v8 8 48694 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 9 48695 -NCIT:C134761 Stage III Intrahepatic Cholangiocarcinoma AJCC v8 8 48696 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 9 48697 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 9 48698 -NCIT:C5760 Stage III Hepatocellular Carcinoma AJCC v6 7 48699 -NCIT:C88052 Stage III Intrahepatic Cholangiocarcinoma AJCC v7 7 48700 -NCIT:C90180 Stage III Hepatocellular Carcinoma AJCC v7 7 48701 -NCIT:C5708 Stage III Childhood Hepatocellular Carcinoma AJCC v7 8 48702 -NCIT:C5761 Stage IIIA Hepatocellular Carcinoma AJCC v7 8 48703 -NCIT:C5762 Stage IIIB Hepatocellular Carcinoma AJCC v7 8 48704 -NCIT:C88044 Stage IIIC Hepatocellular Carcinoma AJCC v7 8 48705 -NCIT:C94777 Stage III Adult Liver Cancer AJCC v7 7 48706 -NCIT:C94779 Stage IIIA Adult Liver Cancer AJCC v7 8 48707 -NCIT:C94780 Stage IIIB Adult Liver Cancer AJCC v7 8 48708 -NCIT:C94781 Stage IIIC Adult Liver Cancer AJCC v7 8 48709 -NCIT:C7121 Stage IV Liver Cancer 6 48710 -NCIT:C134523 Stage IV Hepatocellular Carcinoma AJCC v8 7 48711 -NCIT:C134524 Stage IVA Hepatocellular Carcinoma AJCC v8 8 48712 -NCIT:C134525 Stage IVB Hepatocellular Carcinoma AJCC v8 8 48713 -NCIT:C134619 Stage IV Intrahepatic Bile Duct Cancer AJCC v8 7 48714 -NCIT:C134764 Stage IV Intrahepatic Cholangiocarcinoma AJCC v8 8 48715 -NCIT:C5763 Stage IV Hepatocellular Carcinoma AJCC v6 7 48716 -NCIT:C7122 Stage IVA Liver Cancer 7 48717 -NCIT:C134524 Stage IVA Hepatocellular Carcinoma AJCC v8 8 48718 -NCIT:C5764 Stage IVA Hepatocellular Carcinoma AJCC v7 8 48719 -NCIT:C88053 Stage IVA Intrahepatic Cholangiocarcinoma AJCC v7 8 48720 -NCIT:C7123 Stage IVB Liver Cancer 7 48721 -NCIT:C134525 Stage IVB Hepatocellular Carcinoma AJCC v8 8 48722 -NCIT:C5765 Stage IVB Hepatocellular Carcinoma AJCC v7 8 48723 -NCIT:C88054 Stage IVB Intrahepatic Cholangiocarcinoma AJCC v7 8 48724 -NCIT:C90181 Stage IV Hepatocellular Carcinoma AJCC v7 7 48725 -NCIT:C5764 Stage IVA Hepatocellular Carcinoma AJCC v7 8 48726 -NCIT:C5765 Stage IVB Hepatocellular Carcinoma AJCC v7 8 48727 -NCIT:C7838 Stage IV Childhood Hepatocellular Carcinoma AJCC v7 8 48728 -NCIT:C94782 Stage IV Adult Liver Cancer AJCC v7 7 48729 -NCIT:C7711 Adult Liver Carcinoma 6 48730 -NCIT:C114987 Adult Combined Hepatocellular Carcinoma and Cholangiocarcinoma 7 48731 -NCIT:C7877 Localized Resectable Adult Liver Carcinoma 7 48732 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 8 48733 -NCIT:C7878 Localized Unresectable Adult Liver Carcinoma 7 48734 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 8 48735 -NCIT:C7880 Recurrent Adult Liver Carcinoma 7 48736 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 8 48737 -NCIT:C7956 Adult Hepatocellular Carcinoma 7 48738 -NCIT:C114992 Adult Fibrolamellar Carcinoma 8 48739 -NCIT:C114993 Adult Pleomorphic Hepatocellular Carcinoma 8 48740 -NCIT:C115139 BCLC Stage 0 Adult Hepatocellular Carcinoma 8 48741 -NCIT:C115140 BCLC Stage A Adult Hepatocellular Carcinoma 8 48742 -NCIT:C115141 BCLC Stage B Adult Hepatocellular Carcinoma 8 48743 -NCIT:C115143 BCLC Stage C Adult Hepatocellular Carcinoma 8 48744 -NCIT:C115144 BCLC Stage D Adult Hepatocellular Carcinoma 8 48745 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 8 48746 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 8 48747 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 8 48748 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 8 48749 -NCIT:C94775 Stage I Adult Liver Cancer AJCC v7 7 48750 -NCIT:C94776 Stage II Adult Liver Cancer AJCC v7 7 48751 -NCIT:C94777 Stage III Adult Liver Cancer AJCC v7 7 48752 -NCIT:C94779 Stage IIIA Adult Liver Cancer AJCC v7 8 48753 -NCIT:C94780 Stage IIIB Adult Liver Cancer AJCC v7 8 48754 -NCIT:C94781 Stage IIIC Adult Liver Cancer AJCC v7 8 48755 -NCIT:C94782 Stage IV Adult Liver Cancer AJCC v7 7 48756 -NCIT:C96787 Liver Neuroendocrine Carcinoma 6 48757 -NCIT:C172722 Liver Large Cell Neuroendocrine Carcinoma 7 48758 -NCIT:C172725 Liver Small Cell Neuroendocrine Carcinoma 7 48759 -NCIT:C96792 Liver Undifferentiated Carcinoma 6 48760 -NCIT:C96848 Liver Carcinosarcoma 6 48761 -NCIT:C96947 Intrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 6 48762 -NCIT:C9291 Anal Carcinoma 5 48763 -NCIT:C133794 Anal Cancer by AJCC v8 Stage 6 48764 -NCIT:C133795 Stage 0 Anal Cancer AJCC v8 7 48765 -NCIT:C157575 Anal Intraepithelial Neoplasia 3 8 48766 -NCIT:C133796 Stage I Anal Cancer AJCC v8 7 48767 -NCIT:C133797 Stage II Anal Cancer AJCC v8 7 48768 -NCIT:C133798 Stage IIA Anal Cancer AJCC v8 8 48769 -NCIT:C133799 Stage IIB Anal Cancer AJCC v8 8 48770 -NCIT:C133800 Stage III Anal Cancer AJCC v8 7 48771 -NCIT:C133801 Stage IIIA Anal Cancer AJCC v8 8 48772 -NCIT:C133802 Stage IIIB Anal Cancer AJCC v8 8 48773 -NCIT:C133803 Stage IIIC Anal Cancer AJCC v8 8 48774 -NCIT:C133804 Stage IV Anal Cancer AJCC v8 7 48775 -NCIT:C137857 Refractory Anal Carcinoma 6 48776 -NCIT:C173334 Refractory Anal Canal Squamous Cell Carcinoma 7 48777 -NCIT:C167354 Microinvasive Anal Carcinoma 6 48778 -NCIT:C170514 Metastatic Anal Carcinoma 6 48779 -NCIT:C168977 Locally Advanced Anal Carcinoma 7 48780 -NCIT:C169103 Metastatic Anal Squamous Cell Carcinoma 7 48781 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 48782 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 48783 -NCIT:C170515 Advanced Anal Carcinoma 7 48784 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 8 48785 -NCIT:C5612 Metastatic Anal Canal Carcinoma 7 48786 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 48787 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 48788 -NCIT:C5600 Anal Adenocarcinoma 6 48789 -NCIT:C153575 Recurrent Anal Adenocarcinoma 7 48790 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 8 48791 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 8 48792 -NCIT:C5598 Anal Paget Disease 7 48793 -NCIT:C7476 Anal Margin Paget Disease 8 48794 -NCIT:C7477 Anal Canal Paget Disease 8 48795 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 9 48796 -NCIT:C7471 Anal Canal Adenocarcinoma 7 48797 -NCIT:C5606 Anal Mucinous Adenocarcinoma 8 48798 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 9 48799 -NCIT:C7477 Anal Canal Paget Disease 8 48800 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 9 48801 -NCIT:C7474 Anal Extramucosal (Perianal) Adenocarcinoma 7 48802 -NCIT:C5609 Anal Glands Adenocarcinoma 8 48803 -NCIT:C7475 Anal Adenocarcinoma within Anorectal Fistula 8 48804 -NCIT:C7472 Anal Margin Carcinoma 6 48805 -NCIT:C6925 Anal Margin Squamous Cell Carcinoma 7 48806 -NCIT:C7473 Anal Margin Basal Cell Carcinoma 7 48807 -NCIT:C7476 Anal Margin Paget Disease 7 48808 -NCIT:C7489 Anal Canal Carcinoma 6 48809 -NCIT:C133095 AIDS-Related Anal Canal Carcinoma 7 48810 -NCIT:C27282 Stage 0 AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 48811 -NCIT:C27283 Stage I AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 48812 -NCIT:C27284 Stage II AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 48813 -NCIT:C27285 Stage III AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 48814 -NCIT:C27286 Stage IV AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 48815 -NCIT:C9249 Recurrent AIDS-Related Anal Canal Carcinoma 8 48816 -NCIT:C133787 Anal Canal Cancer by AJCC v6 and v7 Stage 7 48817 -NCIT:C6873 Stage IV Anal Canal Cancer AJCC v6 and v7 8 48818 -NCIT:C27286 Stage IV AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 48819 -NCIT:C7775 Stage II Anal Canal Cancer AJCC v6 and v7 8 48820 -NCIT:C27284 Stage II AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 48821 -NCIT:C7776 Stage III Anal Canal Cancer AJCC v6 and v7 8 48822 -NCIT:C27285 Stage III AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 48823 -NCIT:C5925 Stage IIIA Anal Canal Cancer AJCC v6 and v7 9 48824 -NCIT:C5926 Stage IIIB Anal Canal Cancer AJCC v6 and v7 9 48825 -NCIT:C7794 Stage 0 Anal Canal Cancer AJCC v6 and v7 8 48826 -NCIT:C27282 Stage 0 AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 48827 -NCIT:C9037 Stage I Anal Canal Cancer AJCC v6 and v7 8 48828 -NCIT:C27283 Stage I AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 48829 -NCIT:C5612 Metastatic Anal Canal Carcinoma 7 48830 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 48831 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 48832 -NCIT:C7469 Anal Canal Squamous Cell Carcinoma 7 48833 -NCIT:C173334 Refractory Anal Canal Squamous Cell Carcinoma 8 48834 -NCIT:C175360 Recurrent Anal Canal Squamous Cell Carcinoma 8 48835 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 9 48836 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 48837 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 48838 -NCIT:C175384 Unresectable Anal Canal Squamous Cell Carcinoma 8 48839 -NCIT:C7471 Anal Canal Adenocarcinoma 7 48840 -NCIT:C5606 Anal Mucinous Adenocarcinoma 8 48841 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 9 48842 -NCIT:C7477 Anal Canal Paget Disease 8 48843 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 9 48844 -NCIT:C7793 Recurrent Anal Canal Carcinoma 7 48845 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 8 48846 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 8 48847 -NCIT:C175360 Recurrent Anal Canal Squamous Cell Carcinoma 8 48848 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 9 48849 -NCIT:C9249 Recurrent AIDS-Related Anal Canal Carcinoma 8 48850 -NCIT:C8255 Anal Canal Cloacogenic Carcinoma 7 48851 -NCIT:C96529 Anal Canal Undifferentiated Carcinoma 7 48852 -NCIT:C96549 Anal Canal Neuroendocrine Carcinoma 7 48853 -NCIT:C96550 Anal Canal Large Cell Neuroendocrine Carcinoma 8 48854 -NCIT:C96551 Anal Canal Small Cell Neuroendocrine Carcinoma 8 48855 -NCIT:C96553 Anal Canal Mixed Adenoneuroendocrine Carcinoma 7 48856 -NCIT:C9161 Anal Squamous Cell Carcinoma 6 48857 -NCIT:C157575 Anal Intraepithelial Neoplasia 3 7 48858 -NCIT:C169102 Recurrent Anal Squamous Cell Carcinoma 7 48859 -NCIT:C175360 Recurrent Anal Canal Squamous Cell Carcinoma 8 48860 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 9 48861 -NCIT:C169103 Metastatic Anal Squamous Cell Carcinoma 7 48862 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 48863 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 48864 -NCIT:C173156 Unresectable Anal Squamous Cell Carcinoma 7 48865 -NCIT:C175384 Unresectable Anal Canal Squamous Cell Carcinoma 8 48866 -NCIT:C27681 Human Papillomavirus-Related Anal Squamous Cell Carcinoma 7 48867 -NCIT:C6925 Anal Margin Squamous Cell Carcinoma 7 48868 -NCIT:C7469 Anal Canal Squamous Cell Carcinoma 7 48869 -NCIT:C173334 Refractory Anal Canal Squamous Cell Carcinoma 8 48870 -NCIT:C175360 Recurrent Anal Canal Squamous Cell Carcinoma 8 48871 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 9 48872 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 48873 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 48874 -NCIT:C175384 Unresectable Anal Canal Squamous Cell Carcinoma 8 48875 -NCIT:C7470 Anal Verrucous Carcinoma 7 48876 -NCIT:C8256 Anal Basaloid Carcinoma 7 48877 -NCIT:C9278 AIDS-Related Anal Carcinoma 6 48878 -NCIT:C133095 AIDS-Related Anal Canal Carcinoma 7 48879 -NCIT:C27282 Stage 0 AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 48880 -NCIT:C27283 Stage I AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 48881 -NCIT:C27284 Stage II AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 48882 -NCIT:C27285 Stage III AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 48883 -NCIT:C27286 Stage IV AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 48884 -NCIT:C9249 Recurrent AIDS-Related Anal Canal Carcinoma 8 48885 -NCIT:C9296 Gastroesophageal Junction Adenocarcinoma 5 48886 -NCIT:C133548 Gastroesophageal Junction Adenocarcinoma by AJCC v8 Stage 6 48887 -NCIT:C133549 Gastroesophageal Junction Adenocarcinoma by AJCC v8 Clinical Stage 7 48888 -NCIT:C133550 Clinical Stage 0 Gastroesophageal Junction Adenocarcinoma AJCC v8 8 48889 -NCIT:C133552 Clinical Stage I Gastroesophageal Junction Adenocarcinoma AJCC v8 8 48890 -NCIT:C133553 Clinical Stage II Gastroesophageal Junction Adenocarcinoma AJCC v8 8 48891 -NCIT:C133554 Clinical Stage IIA Gastroesophageal Junction Adenocarcinoma AJCC v8 9 48892 -NCIT:C133555 Clinical Stage IIB Gastroesophageal Junction Adenocarcinoma AJCC v8 9 48893 -NCIT:C133556 Clinical Stage III Gastroesophageal Junction Adenocarcinoma AJCC v8 8 48894 -NCIT:C133557 Clinical Stage IV Gastroesophageal Junction Adenocarcinoma AJCC v8 8 48895 -NCIT:C133558 Clinical Stage IVA Gastroesophageal Junction Adenocarcinoma AJCC v8 9 48896 -NCIT:C133560 Clinical Stage IVB Gastroesophageal Junction Adenocarcinoma AJCC v8 9 48897 -NCIT:C133563 Gastroesophageal Junction Adenocarcinoma by AJCC v8 Pathologic Stage 7 48898 -NCIT:C133564 Pathologic Stage 0 Gastroesophageal Junction Adenocarcinoma AJCC v8 8 48899 -NCIT:C133565 Pathologic Stage I Gastroesophageal Junction Adenocarcinoma AJCC v8 8 48900 -NCIT:C133566 Pathologic Stage IA Gastroesophageal Junction Adenocarcinoma AJCC v8 9 48901 -NCIT:C133567 Pathologic Stage IB Gastroesophageal Junction Adenocarcinoma AJCC v8 9 48902 -NCIT:C133568 Pathologic Stage IC Gastroesophageal Junction Adenocarcinoma AJCC v8 9 48903 -NCIT:C133570 Pathologic Stage II Gastroesophageal Junction Adenocarcinoma AJCC v8 8 48904 -NCIT:C133572 Pathologic Stage IIA Gastroesophageal Junction Adenocarcinoma AJCC v8 9 48905 -NCIT:C133573 Pathologic Stage IIB Gastroesophageal Junction Adenocarcinoma AJCC v8 9 48906 -NCIT:C133575 Pathologic Stage III Gastroesophageal Junction Adenocarcinoma AJCC v8 8 48907 -NCIT:C133577 Pathologic Stage IIIA Gastroesophageal Junction Adenocarcinoma AJCC v8 9 48908 -NCIT:C133579 Pathologic Stage IIIB Gastroesophageal Junction Adenocarcinoma AJCC v8 9 48909 -NCIT:C133580 Pathologic Stage IV Gastroesophageal Junction Adenocarcinoma AJCC v8 8 48910 -NCIT:C133581 Pathologic Stage IVA Gastroesophageal Junction Adenocarcinoma AJCC v8 9 48911 -NCIT:C133582 Pathologic Stage IVB Gastroesophageal Junction Adenocarcinoma AJCC v8 9 48912 -NCIT:C133583 Gastroesophageal Junction Adenocarcinoma by AJCC v8 Postneoadjuvant Therapy Stage 7 48913 -NCIT:C133584 Postneoadjuvant Therapy Stage I Gastroesophageal Junction Adenocarcinoma AJCC v8 8 48914 -NCIT:C133585 Postneoadjuvant Therapy Stage II Gastroesophageal Junction Adenocarcinoma AJCC v8 8 48915 -NCIT:C133586 Postneoadjuvant Therapy Stage III Gastroesophageal Junction Adenocarcinoma AJCC v8 8 48916 -NCIT:C133587 Postneoadjuvant Therapy Stage IIIA Gastroesophageal Junction Adenocarcinoma AJCC v8 9 48917 -NCIT:C133588 Postneoadjuvant Therapy Stage IIIB Gastroesophageal Junction Adenocarcinoma AJCC v8 9 48918 -NCIT:C133589 Postneoadjuvant Therapy Stage IV Gastroesophageal Junction Adenocarcinoma AJCC v8 8 48919 -NCIT:C133590 Postneoadjuvant Therapy Stage IVA Gastroesophageal Junction Adenocarcinoma AJCC v8 9 48920 -NCIT:C133591 Postneoadjuvant Therapy Stage IVB Gastroesophageal Junction Adenocarcinoma AJCC v8 9 48921 -NCIT:C150577 Metastatic Gastroesophageal Junction Adenocarcinoma 6 48922 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 7 48923 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 7 48924 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 48925 -NCIT:C150578 Unresectable Gastroesophageal Junction Adenocarcinoma 6 48926 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 7 48927 -NCIT:C153359 Recurrent Gastroesophageal Junction Adenocarcinoma 6 48928 -NCIT:C156166 Localized Gastroesophageal Junction Adenocarcinoma 6 48929 -NCIT:C162538 Refractory Gastroesophageal Junction Adenocarcinoma 6 48930 -NCIT:C9330 Appendix Carcinoma 5 48931 -NCIT:C133733 Appendix Carcinoma by AJCC v7 Stage 6 48932 -NCIT:C4593 Stage 0 Appendix Carcinoma AJCC v7 7 48933 -NCIT:C87798 Stage I Appendix Carcinoma AJCC v7 7 48934 -NCIT:C87799 Stage IIA Appendix Carcinoma AJCC v7 7 48935 -NCIT:C87800 Stage IIB Appendix Carcinoma AJCC v7 7 48936 -NCIT:C87801 Stage IIC Appendix Carcinoma AJCC v7 7 48937 -NCIT:C87803 Stage IIIA Appendix Carcinoma AJCC v7 7 48938 -NCIT:C87804 Stage IIIB Appendix Carcinoma AJCC v7 7 48939 -NCIT:C87805 Stage IIIC Appendix Carcinoma AJCC v7 7 48940 -NCIT:C87806 Stage IVA Appendix Carcinoma AJCC v7 7 48941 -NCIT:C87807 Stage IVB Appendix Carcinoma AJCC v7 7 48942 -NCIT:C87808 Stage IVC Appendix Carcinoma AJCC v7 7 48943 -NCIT:C134117 Appendix Carcinoma by AJCC v8 Stage 6 48944 -NCIT:C134118 Stage 0 Appendix Carcinoma AJCC v8 7 48945 -NCIT:C134119 Stage 0 Low Grade Appendix Mucinous Neoplasm (LAMN) AJCC v8 7 48946 -NCIT:C134120 Stage I Appendix Carcinoma AJCC v8 7 48947 -NCIT:C134121 Stage II Appendix Carcinoma AJCC v8 7 48948 -NCIT:C134122 Stage IIA Appendix Carcinoma AJCC v8 8 48949 -NCIT:C134123 Stage IIB Appendix Carcinoma AJCC v8 8 48950 -NCIT:C134124 Stage IIC Appendix Carcinoma AJCC v8 8 48951 -NCIT:C134125 Stage III Appendix Carcinoma AJCC v8 7 48952 -NCIT:C134126 Stage IIIA Appendix Carcinoma AJCC v8 8 48953 -NCIT:C134127 Stage IIIB Appendix Carcinoma AJCC v8 8 48954 -NCIT:C134128 Stage IIIC Appendix Carcinoma AJCC v8 8 48955 -NCIT:C134129 Stage IV Appendix Carcinoma AJCC v8 7 48956 -NCIT:C134130 Stage IVA Appendix Carcinoma AJCC v8 8 48957 -NCIT:C134131 Stage IVB Appendix Carcinoma AJCC v8 8 48958 -NCIT:C134132 Stage IVC Appendix Carcinoma AJCC v8 8 48959 -NCIT:C153802 Recurrent Appendix Carcinoma 6 48960 -NCIT:C179174 Recurrent Appendix Adenocarcinoma 7 48961 -NCIT:C153579 Recurrent Appendix Mucinous Adenocarcinoma 8 48962 -NCIT:C162275 Metastatic Appendix Carcinoma 6 48963 -NCIT:C182104 Metastatic Appendix Adenocarcinoma 7 48964 -NCIT:C162274 Metastatic Appendix Mucinous Adenocarcinoma 8 48965 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 48966 -NCIT:C179177 Refractory Appendix Carcinoma 6 48967 -NCIT:C179178 Refractory Appendix Adenocarcinoma 7 48968 -NCIT:C43556 Appendix Undifferentiated Carcinoma 6 48969 -NCIT:C43564 Appendix Mixed Adenoneuroendocrine Carcinoma 6 48970 -NCIT:C3689 Appendix Goblet Cell Adenocarcinoma 7 48971 -NCIT:C7718 Appendix Adenocarcinoma 6 48972 -NCIT:C179174 Recurrent Appendix Adenocarcinoma 7 48973 -NCIT:C153579 Recurrent Appendix Mucinous Adenocarcinoma 8 48974 -NCIT:C179178 Refractory Appendix Adenocarcinoma 7 48975 -NCIT:C182104 Metastatic Appendix Adenocarcinoma 7 48976 -NCIT:C162274 Metastatic Appendix Mucinous Adenocarcinoma 8 48977 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 48978 -NCIT:C43554 Appendix Signet Ring Cell Carcinoma 7 48979 -NCIT:C43558 Appendix Mucinous Adenocarcinoma 7 48980 -NCIT:C153579 Recurrent Appendix Mucinous Adenocarcinoma 8 48981 -NCIT:C162274 Metastatic Appendix Mucinous Adenocarcinoma 8 48982 -NCIT:C5511 Appendix Mucinous Cystadenocarcinoma 8 48983 -NCIT:C96425 Appendix Neuroendocrine Carcinoma 6 48984 -NCIT:C43555 Appendix Small Cell Neuroendocrine Carcinoma 7 48985 -NCIT:C96426 Appendix Large Cell Neuroendocrine Carcinoma 7 48986 -NCIT:C95405 Digestive System Neuroendocrine Carcinoma 5 48987 -NCIT:C126324 Gastroesophageal Junction Neuroendocrine Carcinoma 6 48988 -NCIT:C126323 Gastroesophageal Junction Large Cell Neuroendocrine Carcinoma 7 48989 -NCIT:C126325 Gastroesophageal Junction Small Cell Neuroendocrine Carcinoma 7 48990 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 7 48991 -NCIT:C154617 Digestive System Large Cell Neuroendocrine Carcinoma 6 48992 -NCIT:C126323 Gastroesophageal Junction Large Cell Neuroendocrine Carcinoma 7 48993 -NCIT:C172722 Liver Large Cell Neuroendocrine Carcinoma 7 48994 -NCIT:C95582 Pancreatic Large Cell Neuroendocrine Carcinoma 7 48995 -NCIT:C95620 Esophageal Large Cell Neuroendocrine Carcinoma 7 48996 -NCIT:C95885 Gastric Large Cell Neuroendocrine Carcinoma 7 48997 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 48998 -NCIT:C95985 Ampulla of Vater Large Cell Neuroendocrine Carcinoma 7 48999 -NCIT:C96065 Small Intestinal Large Cell Neuroendocrine Carcinoma 7 49000 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 49001 -NCIT:C96157 Colorectal Large Cell Neuroendocrine Carcinoma 7 49002 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 8 49003 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 8 49004 -NCIT:C96426 Appendix Large Cell Neuroendocrine Carcinoma 7 49005 -NCIT:C96550 Anal Canal Large Cell Neuroendocrine Carcinoma 7 49006 -NCIT:C96921 Gallbladder Large Cell Neuroendocrine Carcinoma 7 49007 -NCIT:C96958 Extrahepatic Bile Duct Large Cell Neuroendocrine Carcinoma 7 49008 -NCIT:C154641 Digestive System Small Cell Neuroendocrine Carcinoma 6 49009 -NCIT:C126325 Gastroesophageal Junction Small Cell Neuroendocrine Carcinoma 7 49010 -NCIT:C172725 Liver Small Cell Neuroendocrine Carcinoma 7 49011 -NCIT:C27449 Small Intestinal Small Cell Neuroendocrine Carcinoma 7 49012 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 49013 -NCIT:C43555 Appendix Small Cell Neuroendocrine Carcinoma 7 49014 -NCIT:C43587 Colorectal Small Cell Neuroendocrine Carcinoma 7 49015 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 8 49016 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 8 49017 -NCIT:C5845 Extrahepatic Bile Duct Small Cell Neuroendocrine Carcinoma 7 49018 -NCIT:C6655 Ampulla of Vater Small Cell Neuroendocrine Carcinoma 7 49019 -NCIT:C6762 Esophageal Small Cell Neuroendocrine Carcinoma 7 49020 -NCIT:C6763 Gallbladder Small Cell Neuroendocrine Carcinoma 7 49021 -NCIT:C6764 Gastric Small Cell Neuroendocrine Carcinoma 7 49022 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 49023 -NCIT:C95583 Pancreatic Small Cell Neuroendocrine Carcinoma 7 49024 -NCIT:C96551 Anal Canal Small Cell Neuroendocrine Carcinoma 7 49025 -NCIT:C155935 Unresectable Digestive System Neuroendocrine Carcinoma 6 49026 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 7 49027 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 7 49028 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 6 49029 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 7 49030 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 49031 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 49032 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 49033 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 7 49034 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 49035 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 49036 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 49037 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 7 49038 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 49039 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 49040 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 49041 -NCIT:C155937 Refractory Digestive System Neuroendocrine Carcinoma 6 49042 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 7 49043 -NCIT:C155938 Recurrent Digestive System Neuroendocrine Carcinoma 6 49044 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 7 49045 -NCIT:C3770 Pancreatic Neuroendocrine Carcinoma 6 49046 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 7 49047 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 7 49048 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 7 49049 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 49050 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 7 49051 -NCIT:C95582 Pancreatic Large Cell Neuroendocrine Carcinoma 7 49052 -NCIT:C95583 Pancreatic Small Cell Neuroendocrine Carcinoma 7 49053 -NCIT:C95619 Esophageal Neuroendocrine Carcinoma 6 49054 -NCIT:C6762 Esophageal Small Cell Neuroendocrine Carcinoma 7 49055 -NCIT:C95620 Esophageal Large Cell Neuroendocrine Carcinoma 7 49056 -NCIT:C95884 Gastric Neuroendocrine Carcinoma 6 49057 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 7 49058 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 49059 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 49060 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 49061 -NCIT:C6764 Gastric Small Cell Neuroendocrine Carcinoma 7 49062 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 49063 -NCIT:C95885 Gastric Large Cell Neuroendocrine Carcinoma 7 49064 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 49065 -NCIT:C95984 Ampulla of Vater Neuroendocrine Carcinoma 6 49066 -NCIT:C6655 Ampulla of Vater Small Cell Neuroendocrine Carcinoma 7 49067 -NCIT:C95985 Ampulla of Vater Large Cell Neuroendocrine Carcinoma 7 49068 -NCIT:C96063 Intestinal Neuroendocrine Carcinoma 6 49069 -NCIT:C96064 Small Intestinal Neuroendocrine Carcinoma 7 49070 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 49071 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 49072 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 49073 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 49074 -NCIT:C27449 Small Intestinal Small Cell Neuroendocrine Carcinoma 8 49075 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 49076 -NCIT:C96065 Small Intestinal Large Cell Neuroendocrine Carcinoma 8 49077 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 49078 -NCIT:C96156 Colorectal Neuroendocrine Carcinoma 7 49079 -NCIT:C43587 Colorectal Small Cell Neuroendocrine Carcinoma 8 49080 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 9 49081 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 9 49082 -NCIT:C96157 Colorectal Large Cell Neuroendocrine Carcinoma 8 49083 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 9 49084 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 9 49085 -NCIT:C96425 Appendix Neuroendocrine Carcinoma 6 49086 -NCIT:C43555 Appendix Small Cell Neuroendocrine Carcinoma 7 49087 -NCIT:C96426 Appendix Large Cell Neuroendocrine Carcinoma 7 49088 -NCIT:C96549 Anal Canal Neuroendocrine Carcinoma 6 49089 -NCIT:C96550 Anal Canal Large Cell Neuroendocrine Carcinoma 7 49090 -NCIT:C96551 Anal Canal Small Cell Neuroendocrine Carcinoma 7 49091 -NCIT:C96787 Liver Neuroendocrine Carcinoma 6 49092 -NCIT:C172722 Liver Large Cell Neuroendocrine Carcinoma 7 49093 -NCIT:C172725 Liver Small Cell Neuroendocrine Carcinoma 7 49094 -NCIT:C96919 Gallbladder Neuroendocrine Carcinoma 6 49095 -NCIT:C6763 Gallbladder Small Cell Neuroendocrine Carcinoma 7 49096 -NCIT:C96921 Gallbladder Large Cell Neuroendocrine Carcinoma 7 49097 -NCIT:C96956 Extrahepatic Bile Duct Neuroendocrine Carcinoma 6 49098 -NCIT:C5845 Extrahepatic Bile Duct Small Cell Neuroendocrine Carcinoma 7 49099 -NCIT:C96958 Extrahepatic Bile Duct Large Cell Neuroendocrine Carcinoma 7 49100 -NCIT:C95406 Digestive System Mixed Adenoneuroendocrine Carcinoma 5 49101 -NCIT:C163967 Metastatic Digestive System Mixed Adenoneuroendocrine Carcinoma 6 49102 -NCIT:C172718 Liver Mixed Adenoneuroendocrine Carcinoma 6 49103 -NCIT:C172808 Unresectable Digestive System Mixed Adenoneuroendocrine Carcinoma 6 49104 -NCIT:C43564 Appendix Mixed Adenoneuroendocrine Carcinoma 6 49105 -NCIT:C3689 Appendix Goblet Cell Adenocarcinoma 7 49106 -NCIT:C45843 Pancreatic Mixed Adenoneuroendocrine Carcinoma 6 49107 -NCIT:C6878 Pancreatic Mixed Acinar-Neuroendocrine Carcinoma 7 49108 -NCIT:C6879 Pancreatic Mixed Ductal-Neuroendocrine Carcinoma 7 49109 -NCIT:C95460 Pancreatic Mixed Acinar-Ductal Neuroendocrine Carcinoma 7 49110 -NCIT:C95621 Esophageal Mixed Adenoneuroendocrine Carcinoma 6 49111 -NCIT:C95886 Gastric Mixed Adenoneuroendocrine Carcinoma 6 49112 -NCIT:C95986 Ampulla of Vater Mixed Adenoneuroendocrine Carcinoma 6 49113 -NCIT:C96066 Small Intestinal Mixed Adenoneuroendocrine Carcinoma 6 49114 -NCIT:C96158 Colorectal Mixed Adenoneuroendocrine Carcinoma 6 49115 -NCIT:C96553 Anal Canal Mixed Adenoneuroendocrine Carcinoma 6 49116 -NCIT:C96927 Gallbladder Mixed Adenoneuroendocrine Carcinoma 6 49117 -NCIT:C96928 Gallbladder Goblet Cell Carcinoid 7 49118 -NCIT:C96959 Extrahepatic Bile Duct Mixed Adenoneuroendocrine Carcinoma 6 49119 -NCIT:C8614 Hepatobiliary Neoplasm 3 49120 -NCIT:C172854 Hepatobiliary Soft Tissue Neoplasm 4 49121 -NCIT:C172855 Gallbladder Soft Tissue Neoplasm 5 49122 -NCIT:C5736 Gallbladder Sarcoma 6 49123 -NCIT:C5839 Gallbladder Rhabdomyosarcoma 7 49124 -NCIT:C5840 Gallbladder Angiosarcoma 7 49125 -NCIT:C5841 Gallbladder Leiomyosarcoma 7 49126 -NCIT:C5842 Gallbladder Kaposi Sarcoma 7 49127 -NCIT:C5747 Gallbladder Leiomyoma 6 49128 -NCIT:C5835 Gallbladder Lipoma 6 49129 -NCIT:C172856 Liver Soft Tissue Neoplasm 5 49130 -NCIT:C27485 Liver Angiomyolipoma 6 49131 -NCIT:C4437 Liver Sarcoma 6 49132 -NCIT:C27096 Liver Embryonal Sarcoma 7 49133 -NCIT:C189934 Childhood Liver Embryonal Sarcoma 8 49134 -NCIT:C189935 Adult Liver Embryonal Sarcoma 8 49135 -NCIT:C4438 Liver Angiosarcoma 7 49136 -NCIT:C190020 Childhood Liver Angiosarcoma 8 49137 -NCIT:C5756 Liver Leiomyosarcoma 7 49138 -NCIT:C5832 Liver Fibrosarcoma 7 49139 -NCIT:C5833 Liver Extraskeletal Osteosarcoma 7 49140 -NCIT:C5834 Liver Rhabdomyosarcoma 7 49141 -NCIT:C96844 Liver Kaposi Sarcoma 7 49142 -NCIT:C96845 Liver Synovial Sarcoma 7 49143 -NCIT:C5750 Liver Lipoma 6 49144 -NCIT:C5753 Liver Leiomyoma 6 49145 -NCIT:C5858 Liver Inflammatory Myofibroblastic Tumor 6 49146 -NCIT:C2898 Bile Duct Neoplasm 4 49147 -NCIT:C27814 Bile Duct Carcinoma 5 49148 -NCIT:C142869 Metastatic Bile Duct Carcinoma 6 49149 -NCIT:C142870 Advanced Bile Duct Carcinoma 7 49150 -NCIT:C162752 Advanced Cholangiocarcinoma 8 49151 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 9 49152 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 9 49153 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 9 49154 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 8 49155 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 9 49156 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 7 49157 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 8 49158 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 49159 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 9 49160 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 8 49161 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 9 49162 -NCIT:C157623 Metastatic Cholangiocarcinoma 7 49163 -NCIT:C162752 Advanced Cholangiocarcinoma 8 49164 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 9 49165 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 9 49166 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 9 49167 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 8 49168 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 49169 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 9 49170 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 8 49171 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 9 49172 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 8 49173 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 49174 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 9 49175 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 8 49176 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 9 49177 -NCIT:C185071 Metastatic Extrahepatic Bile Duct Carcinoma 7 49178 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 8 49179 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 9 49180 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 49181 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 9 49182 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 8 49183 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 9 49184 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 8 49185 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 9 49186 -NCIT:C153355 Refractory Bile Duct Carcinoma 6 49187 -NCIT:C158101 Refractory Cholangiocarcinoma 7 49188 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 8 49189 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 8 49190 -NCIT:C175437 Refractory Extrahepatic Bile Duct Carcinoma 7 49191 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 8 49192 -NCIT:C153360 Recurrent Bile Duct Carcinoma 6 49193 -NCIT:C27325 Recurrent Cholangiocarcinoma 7 49194 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 8 49195 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 8 49196 -NCIT:C7893 Recurrent Extrahepatic Bile Duct Carcinoma 7 49197 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 8 49198 -NCIT:C171322 Unresectable Bile Duct Carcinoma 6 49199 -NCIT:C27324 Unresectable Cholangiocarcinoma 7 49200 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 8 49201 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 8 49202 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 8 49203 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 8 49204 -NCIT:C7892 Unresectable Extrahepatic Bile Duct Carcinoma 7 49205 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 8 49206 -NCIT:C27813 Bile Duct Adenocarcinoma 6 49207 -NCIT:C156910 Resectable Bile Duct Adenocarcinoma 7 49208 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 8 49209 -NCIT:C27326 Resectable Cholangiocarcinoma 8 49210 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 9 49211 -NCIT:C4130 Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 7 49212 -NCIT:C96946 Extrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 8 49213 -NCIT:C96947 Intrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 8 49214 -NCIT:C4436 Cholangiocarcinoma 7 49215 -NCIT:C157623 Metastatic Cholangiocarcinoma 8 49216 -NCIT:C162752 Advanced Cholangiocarcinoma 9 49217 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 49218 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 10 49219 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 10 49220 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 9 49221 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 10 49222 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 10 49223 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 9 49224 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 49225 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 9 49226 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 10 49227 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 10 49228 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 9 49229 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 10 49230 -NCIT:C158101 Refractory Cholangiocarcinoma 8 49231 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 9 49232 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 9 49233 -NCIT:C27324 Unresectable Cholangiocarcinoma 8 49234 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 9 49235 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 9 49236 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 9 49237 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 9 49238 -NCIT:C27325 Recurrent Cholangiocarcinoma 8 49239 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 9 49240 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 9 49241 -NCIT:C27326 Resectable Cholangiocarcinoma 8 49242 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 9 49243 -NCIT:C27769 Opisthorchis Viverrini-Related Cholangiocarcinoma 8 49244 -NCIT:C35417 Intrahepatic Cholangiocarcinoma 8 49245 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 9 49246 -NCIT:C134514 Intrahepatic Cholangiocarcinoma by AJCC v7 Stage 9 49247 -NCIT:C88049 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v7 10 49248 -NCIT:C88050 Stage I Intrahepatic Cholangiocarcinoma AJCC v7 10 49249 -NCIT:C88051 Stage II Intrahepatic Cholangiocarcinoma AJCC v7 10 49250 -NCIT:C88052 Stage III Intrahepatic Cholangiocarcinoma AJCC v7 10 49251 -NCIT:C88053 Stage IVA Intrahepatic Cholangiocarcinoma AJCC v7 10 49252 -NCIT:C88054 Stage IVB Intrahepatic Cholangiocarcinoma AJCC v7 10 49253 -NCIT:C134755 Intrahepatic Cholangiocarcinoma by AJCC v8 Stage 9 49254 -NCIT:C134756 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v8 10 49255 -NCIT:C134757 Stage I Intrahepatic Cholangiocarcinoma AJCC v8 10 49256 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 11 49257 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 11 49258 -NCIT:C134760 Stage II Intrahepatic Cholangiocarcinoma AJCC v8 10 49259 -NCIT:C134761 Stage III Intrahepatic Cholangiocarcinoma AJCC v8 10 49260 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 11 49261 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 11 49262 -NCIT:C134764 Stage IV Intrahepatic Cholangiocarcinoma AJCC v8 10 49263 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 9 49264 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 9 49265 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 9 49266 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 10 49267 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 10 49268 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 9 49269 -NCIT:C41617 Cholangiolocellular Carcinoma 9 49270 -NCIT:C41618 Mucin-Producing Intrahepatic Cholangiocarcinoma 9 49271 -NCIT:C41619 Signet Ring Cell Intrahepatic Cholangiocarcinoma 9 49272 -NCIT:C41620 Sarcomatoid Intrahepatic Cholangiocarcinoma 9 49273 -NCIT:C43848 Clear Cell Intrahepatic Cholangiocarcinoma 9 49274 -NCIT:C96804 Large Duct Intrahepatic Cholangiocarcinoma 9 49275 -NCIT:C96805 Small Duct Intrahepatic Cholangiocarcinoma 9 49276 -NCIT:C96949 Intrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 9 49277 -NCIT:C36077 Hilar Cholangiocarcinoma 8 49278 -NCIT:C134742 Hilar Cholangiocarcinoma by AJCC v7 Stage 9 49279 -NCIT:C88058 Stage 0 Hilar Cholangiocarcinoma AJCC v7 10 49280 -NCIT:C88059 Stage I Hilar Cholangiocarcinoma AJCC v7 10 49281 -NCIT:C88060 Stage II Hilar Cholangiocarcinoma AJCC v7 10 49282 -NCIT:C88061 Stage IIIA Hilar Cholangiocarcinoma AJCC v7 10 49283 -NCIT:C88062 Stage IIIB Hilar Cholangiocarcinoma AJCC v7 10 49284 -NCIT:C88063 Stage IVA Hilar Cholangiocarcinoma AJCC v7 10 49285 -NCIT:C88064 Stage IVB Hilar Cholangiocarcinoma AJCC v7 10 49286 -NCIT:C134743 Hilar Cholangiocarcinoma by AJCC v8 Stage 9 49287 -NCIT:C134744 Stage 0 Hilar Cholangiocarcinoma AJCC v8 10 49288 -NCIT:C134745 Stage I Hilar Cholangiocarcinoma AJCC v8 10 49289 -NCIT:C134746 Stage II Hilar Cholangiocarcinoma AJCC v8 10 49290 -NCIT:C134747 Stage III Hilar Cholangiocarcinoma AJCC v8 10 49291 -NCIT:C134748 Stage IIIA Hilar Cholangiocarcinoma AJCC v8 11 49292 -NCIT:C134749 Stage IIIB Hilar Cholangiocarcinoma AJCC v8 11 49293 -NCIT:C134750 Stage IIIC Hilar Cholangiocarcinoma AJCC v8 11 49294 -NCIT:C134751 Stage IV Hilar Cholangiocarcinoma AJCC v8 10 49295 -NCIT:C134752 Stage IVA Hilar Cholangiocarcinoma AJCC v8 11 49296 -NCIT:C134753 Stage IVB Hilar Cholangiocarcinoma AJCC v8 11 49297 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 9 49298 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 9 49299 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 10 49300 -NCIT:C7976 Distal Bile Duct Adenocarcinoma 8 49301 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 9 49302 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 9 49303 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 49304 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 9 49305 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 9 49306 -NCIT:C8265 Adult Cholangiocarcinoma 8 49307 -NCIT:C7975 Extrahepatic Bile Duct Adenocarcinoma 7 49308 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 8 49309 -NCIT:C5775 Extrahepatic Bile Duct Clear Cell Adenocarcinoma 8 49310 -NCIT:C5776 Extrahepatic Bile Duct Signet Ring Cell Carcinoma 8 49311 -NCIT:C5846 Extrahepatic Bile Duct Mucinous Adenocarcinoma 8 49312 -NCIT:C7976 Distal Bile Duct Adenocarcinoma 8 49313 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 9 49314 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 9 49315 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 49316 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 9 49317 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 9 49318 -NCIT:C96936 Extrahepatic Bile Duct Adenocarcinoma, Biliary Type 8 49319 -NCIT:C96937 Extrahepatic Bile Duct Adenocarcinoma, Gastric Foveolar Type 8 49320 -NCIT:C96938 Extrahepatic Bile Duct Adenocarcinoma, Intestinal Type 8 49321 -NCIT:C96946 Extrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 8 49322 -NCIT:C96948 Extrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 8 49323 -NCIT:C96810 Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 7 49324 -NCIT:C96948 Extrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 8 49325 -NCIT:C96949 Intrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 8 49326 -NCIT:C3860 Extrahepatic Bile Duct Carcinoma 6 49327 -NCIT:C175437 Refractory Extrahepatic Bile Duct Carcinoma 7 49328 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 8 49329 -NCIT:C185071 Metastatic Extrahepatic Bile Duct Carcinoma 7 49330 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 8 49331 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 9 49332 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 49333 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 9 49334 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 8 49335 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 9 49336 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 8 49337 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 9 49338 -NCIT:C5777 Extrahepatic Bile Duct Squamous Cell Carcinoma 7 49339 -NCIT:C5778 Extrahepatic Bile Duct Adenosquamous Carcinoma 7 49340 -NCIT:C5780 Extrahepatic Bile Duct Undifferentiated Carcinoma 7 49341 -NCIT:C5862 Extrahepatic Bile Duct Mucoepidermoid Carcinoma 7 49342 -NCIT:C7109 Distal Bile Duct Carcinoma 7 49343 -NCIT:C134810 Distal Bile Duct Cancer by AJCC v7 Stage 8 49344 -NCIT:C88089 Stage 0 Distal Bile Duct Cancer AJCC v7 9 49345 -NCIT:C88090 Stage IA Distal Bile Duct Cancer AJCC v7 9 49346 -NCIT:C88091 Stage IB Distal Bile Duct Cancer AJCC v7 9 49347 -NCIT:C88092 Stage IIA Distal Bile Duct Cancer AJCC v7 9 49348 -NCIT:C88093 Stage IIB Distal Bile Duct Cancer AJCC v7 9 49349 -NCIT:C88094 Stage III Distal Bile Duct Cancer AJCC v7 9 49350 -NCIT:C88095 Stage IV Distal Bile Duct Cancer AJCC v7 9 49351 -NCIT:C134811 Distal Bile Duct Cancer by AJCC v8 Stage 8 49352 -NCIT:C134812 Stage 0 Distal Bile Duct Cancer AJCC v8 9 49353 -NCIT:C134813 Stage I Distal Bile Duct Cancer AJCC v8 9 49354 -NCIT:C134814 Stage II Distal Bile Duct Cancer AJCC v8 9 49355 -NCIT:C134815 Stage IIA Distal Bile Duct Cancer AJCC v8 10 49356 -NCIT:C134816 Stage IIB Distal Bile Duct Cancer AJCC v8 10 49357 -NCIT:C134817 Stage III Distal Bile Duct Cancer AJCC v8 9 49358 -NCIT:C134818 Stage IIIA Distal Bile Duct Cancer AJCC v8 10 49359 -NCIT:C134819 Stage IIIB Distal Bile Duct Cancer AJCC v8 10 49360 -NCIT:C134820 Stage IV Distal Bile Duct Cancer AJCC v8 9 49361 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 8 49362 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 9 49363 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 49364 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 9 49365 -NCIT:C7976 Distal Bile Duct Adenocarcinoma 8 49366 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 9 49367 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 9 49368 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 49369 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 9 49370 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 9 49371 -NCIT:C7891 Localized Extrahepatic Bile Duct Carcinoma 7 49372 -NCIT:C7892 Unresectable Extrahepatic Bile Duct Carcinoma 7 49373 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 8 49374 -NCIT:C7893 Recurrent Extrahepatic Bile Duct Carcinoma 7 49375 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 8 49376 -NCIT:C7975 Extrahepatic Bile Duct Adenocarcinoma 7 49377 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 8 49378 -NCIT:C5775 Extrahepatic Bile Duct Clear Cell Adenocarcinoma 8 49379 -NCIT:C5776 Extrahepatic Bile Duct Signet Ring Cell Carcinoma 8 49380 -NCIT:C5846 Extrahepatic Bile Duct Mucinous Adenocarcinoma 8 49381 -NCIT:C7976 Distal Bile Duct Adenocarcinoma 8 49382 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 9 49383 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 9 49384 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 49385 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 9 49386 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 9 49387 -NCIT:C96936 Extrahepatic Bile Duct Adenocarcinoma, Biliary Type 8 49388 -NCIT:C96937 Extrahepatic Bile Duct Adenocarcinoma, Gastric Foveolar Type 8 49389 -NCIT:C96938 Extrahepatic Bile Duct Adenocarcinoma, Intestinal Type 8 49390 -NCIT:C96946 Extrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 8 49391 -NCIT:C96948 Extrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 8 49392 -NCIT:C8640 Resectable Extrahepatic Bile Duct Carcinoma 7 49393 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 8 49394 -NCIT:C96939 Extrahepatic Bile Duct Carcinosarcoma 7 49395 -NCIT:C96956 Extrahepatic Bile Duct Neuroendocrine Carcinoma 7 49396 -NCIT:C5845 Extrahepatic Bile Duct Small Cell Neuroendocrine Carcinoma 8 49397 -NCIT:C96958 Extrahepatic Bile Duct Large Cell Neuroendocrine Carcinoma 8 49398 -NCIT:C96959 Extrahepatic Bile Duct Mixed Adenoneuroendocrine Carcinoma 7 49399 -NCIT:C2942 Bile Duct Adenoma 5 49400 -NCIT:C5857 Extrahepatic Bile Duct Adenoma 6 49401 -NCIT:C5849 Extrahepatic Bile Duct Papillary Adenoma 7 49402 -NCIT:C5850 Extrahepatic Bile Duct Tubular Adenoma 7 49403 -NCIT:C96811 Extrahepatic Bile Duct Tubulopapillary Adenoma 7 49404 -NCIT:C7126 Intrahepatic Bile Duct Adenoma 6 49405 -NCIT:C7127 Intrahepatic Bile Duct Microcystic Adenoma 7 49406 -NCIT:C4129 Bile Duct Mucinous Cystic Neoplasm 5 49407 -NCIT:C4130 Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 6 49408 -NCIT:C96946 Extrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 7 49409 -NCIT:C96947 Intrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 7 49410 -NCIT:C5851 Extrahepatic Bile Duct Mucinous Cystic Neoplasm 6 49411 -NCIT:C96946 Extrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 7 49412 -NCIT:C96835 Intrahepatic Bile Duct Mucinous Cystic Neoplasm 6 49413 -NCIT:C96947 Intrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 7 49414 -NCIT:C96836 Bile Duct Mucinous Cystic Neoplasm, Low Grade 6 49415 -NCIT:C96838 Bile Duct Mucinous Cystic Neoplasm, High Grade 6 49416 -NCIT:C4441 Extrahepatic Bile Duct Neoplasm 5 49417 -NCIT:C4776 Benign Extrahepatic Bile Duct Neoplasm 6 49418 -NCIT:C5857 Extrahepatic Bile Duct Adenoma 7 49419 -NCIT:C5849 Extrahepatic Bile Duct Papillary Adenoma 8 49420 -NCIT:C5850 Extrahepatic Bile Duct Tubular Adenoma 8 49421 -NCIT:C96811 Extrahepatic Bile Duct Tubulopapillary Adenoma 8 49422 -NCIT:C7128 Benign Extrahepatic Bile Duct Non-Epithelial Neoplasm 7 49423 -NCIT:C5852 Extrahepatic Bile Duct Benign Granular Cell Tumor 8 49424 -NCIT:C5856 Benign Extrahepatic Bile Duct Soft Tissue Neoplasm 8 49425 -NCIT:C5853 Extrahepatic Bile Duct Fibroma 9 49426 -NCIT:C5854 Extrahepatic Bile Duct Lipoma 9 49427 -NCIT:C5855 Extrahepatic Bile Duct Leiomyoma 9 49428 -NCIT:C5851 Extrahepatic Bile Duct Mucinous Cystic Neoplasm 6 49429 -NCIT:C96946 Extrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 7 49430 -NCIT:C7124 Extrahepatic Bile Duct Intraductal Papillary Neoplasm 6 49431 -NCIT:C96948 Extrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 7 49432 -NCIT:C7483 Malignant Extrahepatic Bile Duct Neoplasm 6 49433 -NCIT:C3860 Extrahepatic Bile Duct Carcinoma 7 49434 -NCIT:C175437 Refractory Extrahepatic Bile Duct Carcinoma 8 49435 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 9 49436 -NCIT:C185071 Metastatic Extrahepatic Bile Duct Carcinoma 8 49437 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 9 49438 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 10 49439 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 49440 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 10 49441 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 9 49442 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 49443 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 9 49444 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 10 49445 -NCIT:C5777 Extrahepatic Bile Duct Squamous Cell Carcinoma 8 49446 -NCIT:C5778 Extrahepatic Bile Duct Adenosquamous Carcinoma 8 49447 -NCIT:C5780 Extrahepatic Bile Duct Undifferentiated Carcinoma 8 49448 -NCIT:C5862 Extrahepatic Bile Duct Mucoepidermoid Carcinoma 8 49449 -NCIT:C7109 Distal Bile Duct Carcinoma 8 49450 -NCIT:C134810 Distal Bile Duct Cancer by AJCC v7 Stage 9 49451 -NCIT:C88089 Stage 0 Distal Bile Duct Cancer AJCC v7 10 49452 -NCIT:C88090 Stage IA Distal Bile Duct Cancer AJCC v7 10 49453 -NCIT:C88091 Stage IB Distal Bile Duct Cancer AJCC v7 10 49454 -NCIT:C88092 Stage IIA Distal Bile Duct Cancer AJCC v7 10 49455 -NCIT:C88093 Stage IIB Distal Bile Duct Cancer AJCC v7 10 49456 -NCIT:C88094 Stage III Distal Bile Duct Cancer AJCC v7 10 49457 -NCIT:C88095 Stage IV Distal Bile Duct Cancer AJCC v7 10 49458 -NCIT:C134811 Distal Bile Duct Cancer by AJCC v8 Stage 9 49459 -NCIT:C134812 Stage 0 Distal Bile Duct Cancer AJCC v8 10 49460 -NCIT:C134813 Stage I Distal Bile Duct Cancer AJCC v8 10 49461 -NCIT:C134814 Stage II Distal Bile Duct Cancer AJCC v8 10 49462 -NCIT:C134815 Stage IIA Distal Bile Duct Cancer AJCC v8 11 49463 -NCIT:C134816 Stage IIB Distal Bile Duct Cancer AJCC v8 11 49464 -NCIT:C134817 Stage III Distal Bile Duct Cancer AJCC v8 10 49465 -NCIT:C134818 Stage IIIA Distal Bile Duct Cancer AJCC v8 11 49466 -NCIT:C134819 Stage IIIB Distal Bile Duct Cancer AJCC v8 11 49467 -NCIT:C134820 Stage IV Distal Bile Duct Cancer AJCC v8 10 49468 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 9 49469 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 10 49470 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 49471 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 10 49472 -NCIT:C7976 Distal Bile Duct Adenocarcinoma 9 49473 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 10 49474 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 10 49475 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 49476 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 49477 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 10 49478 -NCIT:C7891 Localized Extrahepatic Bile Duct Carcinoma 8 49479 -NCIT:C7892 Unresectable Extrahepatic Bile Duct Carcinoma 8 49480 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 9 49481 -NCIT:C7893 Recurrent Extrahepatic Bile Duct Carcinoma 8 49482 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 9 49483 -NCIT:C7975 Extrahepatic Bile Duct Adenocarcinoma 8 49484 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 9 49485 -NCIT:C5775 Extrahepatic Bile Duct Clear Cell Adenocarcinoma 9 49486 -NCIT:C5776 Extrahepatic Bile Duct Signet Ring Cell Carcinoma 9 49487 -NCIT:C5846 Extrahepatic Bile Duct Mucinous Adenocarcinoma 9 49488 -NCIT:C7976 Distal Bile Duct Adenocarcinoma 9 49489 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 10 49490 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 10 49491 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 49492 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 49493 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 10 49494 -NCIT:C96936 Extrahepatic Bile Duct Adenocarcinoma, Biliary Type 9 49495 -NCIT:C96937 Extrahepatic Bile Duct Adenocarcinoma, Gastric Foveolar Type 9 49496 -NCIT:C96938 Extrahepatic Bile Duct Adenocarcinoma, Intestinal Type 9 49497 -NCIT:C96946 Extrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 9 49498 -NCIT:C96948 Extrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 9 49499 -NCIT:C8640 Resectable Extrahepatic Bile Duct Carcinoma 8 49500 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 9 49501 -NCIT:C96939 Extrahepatic Bile Duct Carcinosarcoma 8 49502 -NCIT:C96956 Extrahepatic Bile Duct Neuroendocrine Carcinoma 8 49503 -NCIT:C5845 Extrahepatic Bile Duct Small Cell Neuroendocrine Carcinoma 9 49504 -NCIT:C96958 Extrahepatic Bile Duct Large Cell Neuroendocrine Carcinoma 9 49505 -NCIT:C96959 Extrahepatic Bile Duct Mixed Adenoneuroendocrine Carcinoma 8 49506 -NCIT:C5029 Extrahepatic Bile Duct Sarcoma 7 49507 -NCIT:C5848 Extrahepatic Bile Duct Leiomyosarcoma 8 49508 -NCIT:C5860 Extrahepatic Bile Duct Rhabdomyosarcoma 8 49509 -NCIT:C5847 Extrahepatic Bile Duct Embryonal Rhabdomyosarcoma 9 49510 -NCIT:C96951 Extrahepatic Bile Duct Kaposi Sarcoma 8 49511 -NCIT:C96952 Extrahepatic Bile Duct Lymphoma 7 49512 -NCIT:C96953 Metastatic Malignant Neoplasm in the Extrahepatic Bile Ducts 7 49513 -NCIT:C96942 Extrahepatic Bile Duct Biliary Intraepithelial Neoplasia 6 49514 -NCIT:C96954 Extrahepatic Bile Duct Neuroendocrine Neoplasm 6 49515 -NCIT:C96955 Extrahepatic Bile Duct Neuroendocrine Tumor 7 49516 -NCIT:C172743 Extrahepatic Bile Duct Neuroendocrine Tumor G3 8 49517 -NCIT:C5861 Extrahepatic Bile Duct Neuroendocrine Tumor G1 8 49518 -NCIT:C96957 Extrahepatic Bile Duct Neuroendocrine Tumor G2 8 49519 -NCIT:C96956 Extrahepatic Bile Duct Neuroendocrine Carcinoma 7 49520 -NCIT:C5845 Extrahepatic Bile Duct Small Cell Neuroendocrine Carcinoma 8 49521 -NCIT:C96958 Extrahepatic Bile Duct Large Cell Neuroendocrine Carcinoma 8 49522 -NCIT:C6881 Bile Duct Intraductal Papillary Neoplasm 5 49523 -NCIT:C7124 Extrahepatic Bile Duct Intraductal Papillary Neoplasm 6 49524 -NCIT:C96948 Extrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 7 49525 -NCIT:C7125 Intrahepatic Bile Duct Intraductal Papillary Neoplasm 6 49526 -NCIT:C96949 Intrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 7 49527 -NCIT:C96807 Bile Duct Intraductal Papillary Neoplasm, Low Grade 6 49528 -NCIT:C96809 Bile Duct Intraductal Papillary Neoplasm, High Grade 6 49529 -NCIT:C96810 Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 6 49530 -NCIT:C96948 Extrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 7 49531 -NCIT:C96949 Intrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 7 49532 -NCIT:C96945 Bile Duct Biliary Intraepithelial Neoplasia 5 49533 -NCIT:C96942 Extrahepatic Bile Duct Biliary Intraepithelial Neoplasia 6 49534 -NCIT:C96943 Intrahepatic Bile Duct Biliary Intraepithelial Neoplasia 6 49535 -NCIT:C3048 Gallbladder Neoplasm 4 49536 -NCIT:C172855 Gallbladder Soft Tissue Neoplasm 5 49537 -NCIT:C5736 Gallbladder Sarcoma 6 49538 -NCIT:C5839 Gallbladder Rhabdomyosarcoma 7 49539 -NCIT:C5840 Gallbladder Angiosarcoma 7 49540 -NCIT:C5841 Gallbladder Leiomyosarcoma 7 49541 -NCIT:C5842 Gallbladder Kaposi Sarcoma 7 49542 -NCIT:C5747 Gallbladder Leiomyoma 6 49543 -NCIT:C5835 Gallbladder Lipoma 6 49544 -NCIT:C43606 Gallbladder Biliary Intraepithelial Neoplasia 5 49545 -NCIT:C43607 Gallbladder Flat Biliary Intraepithelial Neoplasia 6 49546 -NCIT:C43609 Gallbladder Papillary Biliary Intraepithelial Neoplasia 6 49547 -NCIT:C4440 Gallbladder Benign Neoplasm 5 49548 -NCIT:C7129 Gallbladder Benign Non-Epithelial Neoplasm 6 49549 -NCIT:C5746 Gallbladder Neurofibroma 7 49550 -NCIT:C5747 Gallbladder Leiomyoma 7 49551 -NCIT:C5835 Gallbladder Lipoma 7 49552 -NCIT:C7131 Gallbladder Benign Granular Cell Tumor 7 49553 -NCIT:C7720 Gallbladder Adenoma 6 49554 -NCIT:C172731 Gallbladder Pyloric Gland Adenoma 7 49555 -NCIT:C172735 Gallbladder Adenoma, Intestinal-Type 7 49556 -NCIT:C7130 Gallbladder Intracholecystic Papillary Neoplasm 5 49557 -NCIT:C5743 Gallbladder Intracholecystic Papillary Neoplasm with an Associated Invasive Carcinoma 6 49558 -NCIT:C96877 Gallbladder Intracholecystic Papillary Neoplasm, Low Grade 6 49559 -NCIT:C96879 Gallbladder Intracholecystic Papillary Neoplasm, High Grade 6 49560 -NCIT:C7481 Gallbladder Malignant Neoplasm 5 49561 -NCIT:C35676 Localized Malignant Gallbladder Neoplasm 6 49562 -NCIT:C7649 Localized Gallbladder Carcinoma 7 49563 -NCIT:C3844 Gallbladder Carcinoma 6 49564 -NCIT:C134660 Gallbladder Cancer by AJCC v8 Stage 7 49565 -NCIT:C134663 Stage 0 Gallbladder Cancer AJCC v8 8 49566 -NCIT:C134665 Stage I Gallbladder Cancer AJCC v8 8 49567 -NCIT:C134667 Stage II Gallbladder Cancer AJCC v8 8 49568 -NCIT:C134670 Stage IIA Gallbladder Cancer AJCC v8 9 49569 -NCIT:C134671 Stage IIB Gallbladder Cancer AJCC v8 9 49570 -NCIT:C134672 Stage III Gallbladder Cancer AJCC v8 8 49571 -NCIT:C134673 Stage IIIA Gallbladder Cancer AJCC v8 9 49572 -NCIT:C134674 Stage IIIB Gallbladder Cancer AJCC v8 9 49573 -NCIT:C134675 Stage IV Gallbladder Cancer AJCC v8 8 49574 -NCIT:C134676 Stage IVA Gallbladder Cancer AJCC v8 9 49575 -NCIT:C134678 Stage IVB Gallbladder Cancer AJCC v8 9 49576 -NCIT:C162753 Refractory Gallbladder Carcinoma 7 49577 -NCIT:C162754 Metastatic Gallbladder Carcinoma 7 49578 -NCIT:C162755 Advanced Gallbladder Carcinoma 8 49579 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 8 49580 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 9 49581 -NCIT:C175214 Incidental Gallbladder Carcinoma 7 49582 -NCIT:C4008 Recurrent Gallbladder Carcinoma 7 49583 -NCIT:C7356 Gallbladder Adenosquamous Carcinoma 7 49584 -NCIT:C7649 Localized Gallbladder Carcinoma 7 49585 -NCIT:C7890 Unresectable Gallbladder Carcinoma 7 49586 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 8 49587 -NCIT:C189064 Unresectable Gallbladder Adenocarcinoma 8 49588 -NCIT:C90512 Gallbladder Cancer by AJCC v6 Stage 7 49589 -NCIT:C4439 Stage 0 Gallbladder Cancer AJCC v6 and v7 8 49590 -NCIT:C5737 Stage I Gallbladder Cancer AJCC v6 8 49591 -NCIT:C5738 Stage II Gallbladder Cancer AJCC v6 8 49592 -NCIT:C5739 Stage III Gallbladder Cancer AJCC v6 8 49593 -NCIT:C5740 Stage IV Gallbladder Cancer AJCC v6 8 49594 -NCIT:C91229 Gallbladder Cancer by AJCC v7 Stage 7 49595 -NCIT:C4439 Stage 0 Gallbladder Cancer AJCC v6 and v7 8 49596 -NCIT:C90216 Stage I Gallbladder Cancer AJCC v7 8 49597 -NCIT:C90217 Stage II Gallbladder Cancer AJCC v7 8 49598 -NCIT:C90218 Stage III Gallbladder Cancer AJCC v7 8 49599 -NCIT:C88056 Stage IIIA Gallbladder Cancer AJCC v7 9 49600 -NCIT:C88057 Stage IIIB Gallbladder Cancer AJCC v7 9 49601 -NCIT:C90219 Stage IV Gallbladder Cancer AJCC v7 8 49602 -NCIT:C5741 Stage IVA Gallbladder Cancer AJCC v7 9 49603 -NCIT:C5742 Stage IVB Gallbladder Cancer AJCC v7 9 49604 -NCIT:C9166 Gallbladder Adenocarcinoma 7 49605 -NCIT:C189064 Unresectable Gallbladder Adenocarcinoma 8 49606 -NCIT:C43604 Gallbladder Adenocarcinoma, Intestinal-Type 8 49607 -NCIT:C43605 Gallbladder Clear Cell Adenocarcinoma 8 49608 -NCIT:C5743 Gallbladder Intracholecystic Papillary Neoplasm with an Associated Invasive Carcinoma 8 49609 -NCIT:C5744 Gallbladder Mucinous Adenocarcinoma 8 49610 -NCIT:C5745 Gallbladder Signet Ring Cell Carcinoma 8 49611 -NCIT:C9169 Gallbladder Adenocarcinoma with Squamous Metaplasia 8 49612 -NCIT:C96887 Gallbladder Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 8 49613 -NCIT:C96890 Gallbladder Hepatoid Adenocarcinoma 8 49614 -NCIT:C96891 Gallbladder Cribriform Carcinoma 8 49615 -NCIT:C96915 Gallbladder Adenocarcinoma, Biliary Type 8 49616 -NCIT:C96916 Gallbladder Adenocarcinoma, Gastric Foveolar Type 8 49617 -NCIT:C9167 Gallbladder Undifferentiated Carcinoma 7 49618 -NCIT:C5838 Gallbladder Undifferentiated Carcinoma, Spindle and Giant Cell Type 8 49619 -NCIT:C9170 Gallbladder Squamous Cell Carcinoma 7 49620 -NCIT:C96888 Gallbladder Carcinosarcoma 7 49621 -NCIT:C96919 Gallbladder Neuroendocrine Carcinoma 7 49622 -NCIT:C6763 Gallbladder Small Cell Neuroendocrine Carcinoma 8 49623 -NCIT:C96921 Gallbladder Large Cell Neuroendocrine Carcinoma 8 49624 -NCIT:C96927 Gallbladder Mixed Adenoneuroendocrine Carcinoma 7 49625 -NCIT:C96928 Gallbladder Goblet Cell Carcinoid 8 49626 -NCIT:C5734 Gallbladder Lymphoma 6 49627 -NCIT:C5735 Gallbladder Melanoma 6 49628 -NCIT:C5736 Gallbladder Sarcoma 6 49629 -NCIT:C5839 Gallbladder Rhabdomyosarcoma 7 49630 -NCIT:C5840 Gallbladder Angiosarcoma 7 49631 -NCIT:C5841 Gallbladder Leiomyosarcoma 7 49632 -NCIT:C5842 Gallbladder Kaposi Sarcoma 7 49633 -NCIT:C7482 Metastatic Malignant Neoplasm in the Gallbladder 6 49634 -NCIT:C96881 Gallbladder Mucinous Cystic Neoplasm 5 49635 -NCIT:C96883 Gallbladder Mucinous Cystic Neoplasm, Low Grade 6 49636 -NCIT:C96886 Gallbladder Mucinous Cystic Neoplasm, High Grade 6 49637 -NCIT:C96887 Gallbladder Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 6 49638 -NCIT:C96917 Gallbladder Neuroendocrine Neoplasm 5 49639 -NCIT:C96918 Gallbladder Neuroendocrine Tumor 6 49640 -NCIT:C172742 Gallbladder Neuroendocrine Tumor G3 7 49641 -NCIT:C96924 Gallbladder Neuroendocrine Tumor G1 7 49642 -NCIT:C96925 Gallbladder Neuroendocrine Tumor G2 7 49643 -NCIT:C96930 Gallbladder Tubular Carcinoid 7 49644 -NCIT:C96919 Gallbladder Neuroendocrine Carcinoma 6 49645 -NCIT:C6763 Gallbladder Small Cell Neuroendocrine Carcinoma 7 49646 -NCIT:C96921 Gallbladder Large Cell Neuroendocrine Carcinoma 7 49647 -NCIT:C4843 Biliary Intraepithelial Neoplasia 4 49648 -NCIT:C172804 Low Grade Biliary Intraepithelial Neoplasia 5 49649 -NCIT:C67491 Biliary Intraepithelial Neoplasia-1 6 49650 -NCIT:C67492 Biliary Intraepithelial Neoplasia-2 6 49651 -NCIT:C43606 Gallbladder Biliary Intraepithelial Neoplasia 5 49652 -NCIT:C43607 Gallbladder Flat Biliary Intraepithelial Neoplasia 6 49653 -NCIT:C43609 Gallbladder Papillary Biliary Intraepithelial Neoplasia 6 49654 -NCIT:C67493 High-Grade Biliary Intraepithelial Neoplasia 5 49655 -NCIT:C96945 Bile Duct Biliary Intraepithelial Neoplasia 5 49656 -NCIT:C96942 Extrahepatic Bile Duct Biliary Intraepithelial Neoplasia 6 49657 -NCIT:C96943 Intrahepatic Bile Duct Biliary Intraepithelial Neoplasia 6 49658 -NCIT:C7103 Liver Neoplasm 4 49659 -NCIT:C190592 Benign Liver Neoplasm 5 49660 -NCIT:C190581 Childhood Benign Liver Neoplasm 6 49661 -NCIT:C190019 Liver Congenital Hemangioma 7 49662 -NCIT:C5751 Liver Mesenchymal Hamartoma 7 49663 -NCIT:C96840 Liver Infantile Hemangioma 7 49664 -NCIT:C5749 Benign Liver Non-Epithelial Neoplasm 6 49665 -NCIT:C27485 Liver Angiomyolipoma 7 49666 -NCIT:C3869 Liver Hemangioma 7 49667 -NCIT:C190019 Liver Congenital Hemangioma 8 49668 -NCIT:C96839 Liver Cavernous Hemangioma 8 49669 -NCIT:C96840 Liver Infantile Hemangioma 8 49670 -NCIT:C5750 Liver Lipoma 7 49671 -NCIT:C5752 Liver Solitary Fibrous Tumor 7 49672 -NCIT:C5753 Liver Leiomyoma 7 49673 -NCIT:C96841 Liver Lymphangioma 7 49674 -NCIT:C96842 Liver Lymphangiomatosis 7 49675 -NCIT:C96756 Benign Liver Epithelial Neoplasm 6 49676 -NCIT:C3758 Hepatocellular Adenoma 7 49677 -NCIT:C96758 HNF1alpha-Inactivated Hepatocellular Adenoma 8 49678 -NCIT:C96759 Beta-Catenin-Activated Hepatocellular Adenoma 8 49679 -NCIT:C96760 Inflammatory Hepatocellular Adenoma 8 49680 -NCIT:C172707 Beta-Catenin-Activated Inflammatory Hepatocellular Adenoma 9 49681 -NCIT:C96761 Unclassified Hepatocellular Adenoma 8 49682 -NCIT:C7126 Intrahepatic Bile Duct Adenoma 7 49683 -NCIT:C7127 Intrahepatic Bile Duct Microcystic Adenoma 8 49684 -NCIT:C96826 Biliary Adenofibroma 7 49685 -NCIT:C190593 Malignant Liver Neoplasm 5 49686 -NCIT:C34803 Primary Malignant Liver Neoplasm 6 49687 -NCIT:C185042 Liver Plasmacytoma 7 49688 -NCIT:C4437 Liver Sarcoma 7 49689 -NCIT:C27096 Liver Embryonal Sarcoma 8 49690 -NCIT:C189934 Childhood Liver Embryonal Sarcoma 9 49691 -NCIT:C189935 Adult Liver Embryonal Sarcoma 9 49692 -NCIT:C4438 Liver Angiosarcoma 8 49693 -NCIT:C190020 Childhood Liver Angiosarcoma 9 49694 -NCIT:C5756 Liver Leiomyosarcoma 8 49695 -NCIT:C5832 Liver Fibrosarcoma 8 49696 -NCIT:C5833 Liver Extraskeletal Osteosarcoma 8 49697 -NCIT:C5834 Liver Rhabdomyosarcoma 8 49698 -NCIT:C96844 Liver Kaposi Sarcoma 8 49699 -NCIT:C96845 Liver Synovial Sarcoma 8 49700 -NCIT:C4949 Liver Lymphoma 7 49701 -NCIT:C5766 Liver Non-Hodgkin Lymphoma 8 49702 -NCIT:C5768 Liver Mucosa-Associated Lymphoid Tissue Lymphoma 9 49703 -NCIT:C8459 Hepatosplenic T-Cell Lymphoma 9 49704 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 10 49705 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 10 49706 -NCIT:C96843 Liver Diffuse Large B-Cell Lymphoma 9 49707 -NCIT:C7927 Liver and Intrahepatic Bile Duct Carcinoma 7 49708 -NCIT:C118630 Liver Adenosquamous Carcinoma 8 49709 -NCIT:C134604 Intrahepatic Bile Duct Cancer by AJCC v8 Stage 8 49710 -NCIT:C134609 Stage 0 Intrahepatic Bile Duct Cancer AJCC v8 9 49711 -NCIT:C134756 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v8 10 49712 -NCIT:C134610 Stage I Intrahepatic Bile Duct Cancer AJCC v8 9 49713 -NCIT:C134611 Stage IA Intrahepatic Bile Duct Cancer AJCC v8 10 49714 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 11 49715 -NCIT:C134612 Stage IB Intrahepatic Bile Duct Cancer AJCC v8 10 49716 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 11 49717 -NCIT:C134757 Stage I Intrahepatic Cholangiocarcinoma AJCC v8 10 49718 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 11 49719 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 11 49720 -NCIT:C134614 Stage II Intrahepatic Bile Duct Cancer AJCC v8 9 49721 -NCIT:C134760 Stage II Intrahepatic Cholangiocarcinoma AJCC v8 10 49722 -NCIT:C134615 Stage III Intrahepatic Bile Duct Cancer AJCC v8 9 49723 -NCIT:C134616 Stage IIIA Intrahepatic Bile Duct Cancer AJCC v8 10 49724 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 11 49725 -NCIT:C134618 Stage IIIB Intrahepatic Bile Duct Cancer AJCC v8 10 49726 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 11 49727 -NCIT:C134761 Stage III Intrahepatic Cholangiocarcinoma AJCC v8 10 49728 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 11 49729 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 11 49730 -NCIT:C134619 Stage IV Intrahepatic Bile Duct Cancer AJCC v8 9 49731 -NCIT:C134764 Stage IV Intrahepatic Cholangiocarcinoma AJCC v8 10 49732 -NCIT:C134755 Intrahepatic Cholangiocarcinoma by AJCC v8 Stage 9 49733 -NCIT:C134756 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v8 10 49734 -NCIT:C134757 Stage I Intrahepatic Cholangiocarcinoma AJCC v8 10 49735 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 11 49736 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 11 49737 -NCIT:C134760 Stage II Intrahepatic Cholangiocarcinoma AJCC v8 10 49738 -NCIT:C134761 Stage III Intrahepatic Cholangiocarcinoma AJCC v8 10 49739 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 11 49740 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 11 49741 -NCIT:C134764 Stage IV Intrahepatic Cholangiocarcinoma AJCC v8 10 49742 -NCIT:C153352 Refractory Liver Carcinoma 8 49743 -NCIT:C162450 Refractory Hepatocellular Carcinoma 9 49744 -NCIT:C188887 Refractory Fibrolamellar Carcinoma 10 49745 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 9 49746 -NCIT:C154088 Metastatic Liver Carcinoma 8 49747 -NCIT:C154091 Metastatic Hepatocellular Carcinoma 9 49748 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 10 49749 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 11 49750 -NCIT:C167336 Advanced Hepatocellular Carcinoma 10 49751 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 11 49752 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 11 49753 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 10 49754 -NCIT:C171298 Locally Advanced Liver Carcinoma 9 49755 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 10 49756 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 10 49757 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 9 49758 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 10 49759 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 10 49760 -NCIT:C165171 Unresectable Liver and Intrahepatic Bile Duct Carcinoma 8 49761 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 9 49762 -NCIT:C27345 Unresectable Hepatocellular Carcinoma 9 49763 -NCIT:C162602 Unresectable Fibrolamellar Carcinoma 10 49764 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 10 49765 -NCIT:C7878 Localized Unresectable Adult Liver Carcinoma 9 49766 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 10 49767 -NCIT:C165293 Resectable Liver and Intrahepatic Bile Duct Carcinoma 8 49768 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 9 49769 -NCIT:C7691 Resectable Hepatocellular Carcinoma 9 49770 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 10 49771 -NCIT:C7877 Localized Resectable Adult Liver Carcinoma 9 49772 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 10 49773 -NCIT:C172718 Liver Mixed Adenoneuroendocrine Carcinoma 8 49774 -NCIT:C3099 Hepatocellular Carcinoma 8 49775 -NCIT:C115132 Hepatocellular Carcinoma by BCLC Stage 9 49776 -NCIT:C115133 BCLC Stage 0 Hepatocellular Carcinoma 10 49777 -NCIT:C115139 BCLC Stage 0 Adult Hepatocellular Carcinoma 11 49778 -NCIT:C115135 BCLC Stage A Hepatocellular Carcinoma 10 49779 -NCIT:C115140 BCLC Stage A Adult Hepatocellular Carcinoma 11 49780 -NCIT:C115136 BCLC Stage B Hepatocellular Carcinoma 10 49781 -NCIT:C115141 BCLC Stage B Adult Hepatocellular Carcinoma 11 49782 -NCIT:C115137 BCLC Stage C Hepatocellular Carcinoma 10 49783 -NCIT:C115143 BCLC Stage C Adult Hepatocellular Carcinoma 11 49784 -NCIT:C115138 BCLC Stage D Hepatocellular Carcinoma 10 49785 -NCIT:C115144 BCLC Stage D Adult Hepatocellular Carcinoma 11 49786 -NCIT:C134515 Hepatocellular Carcinoma by AJCC v8 Stage 9 49787 -NCIT:C134516 Stage I Hepatocellular Carcinoma AJCC v8 10 49788 -NCIT:C134517 Stage IA Hepatocellular Carcinoma AJCC v8 11 49789 -NCIT:C134518 Stage IB Hepatocellular Carcinoma AJCC v8 11 49790 -NCIT:C134519 Stage II Hepatocellular Carcinoma AJCC v8 10 49791 -NCIT:C134520 Stage III Hepatocellular Carcinoma AJCC v8 10 49792 -NCIT:C134521 Stage IIIA Hepatocellular Carcinoma AJCC v8 11 49793 -NCIT:C134522 Stage IIIB Hepatocellular Carcinoma AJCC v8 11 49794 -NCIT:C134523 Stage IV Hepatocellular Carcinoma AJCC v8 10 49795 -NCIT:C134524 Stage IVA Hepatocellular Carcinoma AJCC v8 11 49796 -NCIT:C134525 Stage IVB Hepatocellular Carcinoma AJCC v8 11 49797 -NCIT:C154091 Metastatic Hepatocellular Carcinoma 9 49798 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 10 49799 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 11 49800 -NCIT:C167336 Advanced Hepatocellular Carcinoma 10 49801 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 11 49802 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 11 49803 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 10 49804 -NCIT:C162450 Refractory Hepatocellular Carcinoma 9 49805 -NCIT:C188887 Refractory Fibrolamellar Carcinoma 10 49806 -NCIT:C172709 Steatohepatitic Hepatocellular Carcinoma 9 49807 -NCIT:C27924 Alcohol-Related Hepatocellular Carcinoma 10 49808 -NCIT:C172710 Macrotrabecular Massive Hepatocellular Carcinoma 9 49809 -NCIT:C172712 Chromophobe Hepatocellular Carcinoma 9 49810 -NCIT:C172713 Neutrophil-Rich Hepatocellular Carcinoma 9 49811 -NCIT:C172714 Small Hepatocellular Carcinoma 9 49812 -NCIT:C172716 Small Progressed Hepatocellular Carcinoma 10 49813 -NCIT:C96772 Early Hepatocellular Carcinoma 10 49814 -NCIT:C27345 Unresectable Hepatocellular Carcinoma 9 49815 -NCIT:C162602 Unresectable Fibrolamellar Carcinoma 10 49816 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 10 49817 -NCIT:C27388 Scirrhous Hepatocellular Carcinoma 9 49818 -NCIT:C27635 Transplant-Related Hepatocellular Carcinoma 9 49819 -NCIT:C27686 Hepatitis Virus-Related Hepatocellular Carcinoma 9 49820 -NCIT:C27687 Hepatitis B Virus-Related Hepatocellular Carcinoma 10 49821 -NCIT:C27688 Hepatitis C Virus-Related Hepatocellular Carcinoma 10 49822 -NCIT:C27922 Aflatoxins-Related Hepatocellular Carcinoma 9 49823 -NCIT:C4131 Fibrolamellar Carcinoma 9 49824 -NCIT:C114992 Adult Fibrolamellar Carcinoma 10 49825 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 10 49826 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 11 49827 -NCIT:C154082 Recurrent Fibrolamellar Carcinoma 10 49828 -NCIT:C162602 Unresectable Fibrolamellar Carcinoma 10 49829 -NCIT:C188887 Refractory Fibrolamellar Carcinoma 10 49830 -NCIT:C189932 Childhood Fibrolamellar Carcinoma 10 49831 -NCIT:C43625 Pleomorphic Hepatocellular Carcinoma 9 49832 -NCIT:C114993 Adult Pleomorphic Hepatocellular Carcinoma 10 49833 -NCIT:C43627 Sarcomatoid Hepatocellular Carcinoma 9 49834 -NCIT:C5754 Clear Cell Hepatocellular Carcinoma 9 49835 -NCIT:C7691 Resectable Hepatocellular Carcinoma 9 49836 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 10 49837 -NCIT:C7955 Childhood Hepatocellular Carcinoma 9 49838 -NCIT:C189932 Childhood Fibrolamellar Carcinoma 10 49839 -NCIT:C5708 Stage III Childhood Hepatocellular Carcinoma AJCC v7 10 49840 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 10 49841 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 10 49842 -NCIT:C7838 Stage IV Childhood Hepatocellular Carcinoma AJCC v7 10 49843 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 10 49844 -NCIT:C7956 Adult Hepatocellular Carcinoma 9 49845 -NCIT:C114992 Adult Fibrolamellar Carcinoma 10 49846 -NCIT:C114993 Adult Pleomorphic Hepatocellular Carcinoma 10 49847 -NCIT:C115139 BCLC Stage 0 Adult Hepatocellular Carcinoma 10 49848 -NCIT:C115140 BCLC Stage A Adult Hepatocellular Carcinoma 10 49849 -NCIT:C115141 BCLC Stage B Adult Hepatocellular Carcinoma 10 49850 -NCIT:C115143 BCLC Stage C Adult Hepatocellular Carcinoma 10 49851 -NCIT:C115144 BCLC Stage D Adult Hepatocellular Carcinoma 10 49852 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 10 49853 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 10 49854 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 10 49855 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 10 49856 -NCIT:C90510 Hepatocellular Carcinoma by AJCC v6 Stage 9 49857 -NCIT:C5758 Stage I Hepatocellular Carcinoma AJCC v6 and v7 10 49858 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 11 49859 -NCIT:C5759 Stage II Hepatocellular Carcinoma AJCC v6 and v7 10 49860 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 11 49861 -NCIT:C5760 Stage III Hepatocellular Carcinoma AJCC v6 10 49862 -NCIT:C5763 Stage IV Hepatocellular Carcinoma AJCC v6 10 49863 -NCIT:C91228 Hepatocellular Carcinoma by AJCC v7 Stage 9 49864 -NCIT:C5758 Stage I Hepatocellular Carcinoma AJCC v6 and v7 10 49865 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 11 49866 -NCIT:C5759 Stage II Hepatocellular Carcinoma AJCC v6 and v7 10 49867 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 11 49868 -NCIT:C90180 Stage III Hepatocellular Carcinoma AJCC v7 10 49869 -NCIT:C5708 Stage III Childhood Hepatocellular Carcinoma AJCC v7 11 49870 -NCIT:C5761 Stage IIIA Hepatocellular Carcinoma AJCC v7 11 49871 -NCIT:C5762 Stage IIIB Hepatocellular Carcinoma AJCC v7 11 49872 -NCIT:C88044 Stage IIIC Hepatocellular Carcinoma AJCC v7 11 49873 -NCIT:C90181 Stage IV Hepatocellular Carcinoma AJCC v7 10 49874 -NCIT:C5764 Stage IVA Hepatocellular Carcinoma AJCC v7 11 49875 -NCIT:C5765 Stage IVB Hepatocellular Carcinoma AJCC v7 11 49876 -NCIT:C7838 Stage IV Childhood Hepatocellular Carcinoma AJCC v7 11 49877 -NCIT:C9264 Recurrent Hepatocellular Carcinoma 9 49878 -NCIT:C154082 Recurrent Fibrolamellar Carcinoma 10 49879 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 10 49880 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 10 49881 -NCIT:C96788 Lymphocyte-Rich Hepatocellular Carcinoma 9 49882 -NCIT:C96789 Well Differentiated Hepatocellular Carcinoma 9 49883 -NCIT:C96790 Moderately Differentiated Hepatocellular Carcinoma 9 49884 -NCIT:C96791 Poorly Differentiated Hepatocellular Carcinoma 9 49885 -NCIT:C35417 Intrahepatic Cholangiocarcinoma 8 49886 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 9 49887 -NCIT:C134514 Intrahepatic Cholangiocarcinoma by AJCC v7 Stage 9 49888 -NCIT:C88049 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v7 10 49889 -NCIT:C88050 Stage I Intrahepatic Cholangiocarcinoma AJCC v7 10 49890 -NCIT:C88051 Stage II Intrahepatic Cholangiocarcinoma AJCC v7 10 49891 -NCIT:C88052 Stage III Intrahepatic Cholangiocarcinoma AJCC v7 10 49892 -NCIT:C88053 Stage IVA Intrahepatic Cholangiocarcinoma AJCC v7 10 49893 -NCIT:C88054 Stage IVB Intrahepatic Cholangiocarcinoma AJCC v7 10 49894 -NCIT:C134755 Intrahepatic Cholangiocarcinoma by AJCC v8 Stage 9 49895 -NCIT:C134756 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v8 10 49896 -NCIT:C134757 Stage I Intrahepatic Cholangiocarcinoma AJCC v8 10 49897 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 11 49898 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 11 49899 -NCIT:C134760 Stage II Intrahepatic Cholangiocarcinoma AJCC v8 10 49900 -NCIT:C134761 Stage III Intrahepatic Cholangiocarcinoma AJCC v8 10 49901 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 11 49902 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 11 49903 -NCIT:C134764 Stage IV Intrahepatic Cholangiocarcinoma AJCC v8 10 49904 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 9 49905 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 9 49906 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 9 49907 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 10 49908 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 10 49909 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 9 49910 -NCIT:C41617 Cholangiolocellular Carcinoma 9 49911 -NCIT:C41618 Mucin-Producing Intrahepatic Cholangiocarcinoma 9 49912 -NCIT:C41619 Signet Ring Cell Intrahepatic Cholangiocarcinoma 9 49913 -NCIT:C41620 Sarcomatoid Intrahepatic Cholangiocarcinoma 9 49914 -NCIT:C43848 Clear Cell Intrahepatic Cholangiocarcinoma 9 49915 -NCIT:C96804 Large Duct Intrahepatic Cholangiocarcinoma 9 49916 -NCIT:C96805 Small Duct Intrahepatic Cholangiocarcinoma 9 49917 -NCIT:C96949 Intrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 9 49918 -NCIT:C3828 Combined Hepatocellular Carcinoma and Cholangiocarcinoma 8 49919 -NCIT:C114987 Adult Combined Hepatocellular Carcinoma and Cholangiocarcinoma 9 49920 -NCIT:C7110 Recurrent Liver Carcinoma 8 49921 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 9 49922 -NCIT:C7880 Recurrent Adult Liver Carcinoma 9 49923 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 10 49924 -NCIT:C9264 Recurrent Hepatocellular Carcinoma 9 49925 -NCIT:C154082 Recurrent Fibrolamellar Carcinoma 10 49926 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 10 49927 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 10 49928 -NCIT:C7116 Stage I Liver Cancer 8 49929 -NCIT:C134516 Stage I Hepatocellular Carcinoma AJCC v8 9 49930 -NCIT:C134517 Stage IA Hepatocellular Carcinoma AJCC v8 10 49931 -NCIT:C134518 Stage IB Hepatocellular Carcinoma AJCC v8 10 49932 -NCIT:C134610 Stage I Intrahepatic Bile Duct Cancer AJCC v8 9 49933 -NCIT:C134611 Stage IA Intrahepatic Bile Duct Cancer AJCC v8 10 49934 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 11 49935 -NCIT:C134612 Stage IB Intrahepatic Bile Duct Cancer AJCC v8 10 49936 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 11 49937 -NCIT:C134757 Stage I Intrahepatic Cholangiocarcinoma AJCC v8 10 49938 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 11 49939 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 11 49940 -NCIT:C5758 Stage I Hepatocellular Carcinoma AJCC v6 and v7 9 49941 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 10 49942 -NCIT:C88050 Stage I Intrahepatic Cholangiocarcinoma AJCC v7 9 49943 -NCIT:C94775 Stage I Adult Liver Cancer AJCC v7 9 49944 -NCIT:C7117 Stage II Liver Cancer 8 49945 -NCIT:C134519 Stage II Hepatocellular Carcinoma AJCC v8 9 49946 -NCIT:C134614 Stage II Intrahepatic Bile Duct Cancer AJCC v8 9 49947 -NCIT:C134760 Stage II Intrahepatic Cholangiocarcinoma AJCC v8 10 49948 -NCIT:C5759 Stage II Hepatocellular Carcinoma AJCC v6 and v7 9 49949 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 10 49950 -NCIT:C88051 Stage II Intrahepatic Cholangiocarcinoma AJCC v7 9 49951 -NCIT:C94776 Stage II Adult Liver Cancer AJCC v7 9 49952 -NCIT:C7118 Stage III Liver Cancer 8 49953 -NCIT:C134520 Stage III Hepatocellular Carcinoma AJCC v8 9 49954 -NCIT:C134521 Stage IIIA Hepatocellular Carcinoma AJCC v8 10 49955 -NCIT:C134522 Stage IIIB Hepatocellular Carcinoma AJCC v8 10 49956 -NCIT:C134615 Stage III Intrahepatic Bile Duct Cancer AJCC v8 9 49957 -NCIT:C134616 Stage IIIA Intrahepatic Bile Duct Cancer AJCC v8 10 49958 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 11 49959 -NCIT:C134618 Stage IIIB Intrahepatic Bile Duct Cancer AJCC v8 10 49960 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 11 49961 -NCIT:C134761 Stage III Intrahepatic Cholangiocarcinoma AJCC v8 10 49962 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 11 49963 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 11 49964 -NCIT:C5760 Stage III Hepatocellular Carcinoma AJCC v6 9 49965 -NCIT:C88052 Stage III Intrahepatic Cholangiocarcinoma AJCC v7 9 49966 -NCIT:C90180 Stage III Hepatocellular Carcinoma AJCC v7 9 49967 -NCIT:C5708 Stage III Childhood Hepatocellular Carcinoma AJCC v7 10 49968 -NCIT:C5761 Stage IIIA Hepatocellular Carcinoma AJCC v7 10 49969 -NCIT:C5762 Stage IIIB Hepatocellular Carcinoma AJCC v7 10 49970 -NCIT:C88044 Stage IIIC Hepatocellular Carcinoma AJCC v7 10 49971 -NCIT:C94777 Stage III Adult Liver Cancer AJCC v7 9 49972 -NCIT:C94779 Stage IIIA Adult Liver Cancer AJCC v7 10 49973 -NCIT:C94780 Stage IIIB Adult Liver Cancer AJCC v7 10 49974 -NCIT:C94781 Stage IIIC Adult Liver Cancer AJCC v7 10 49975 -NCIT:C7121 Stage IV Liver Cancer 8 49976 -NCIT:C134523 Stage IV Hepatocellular Carcinoma AJCC v8 9 49977 -NCIT:C134524 Stage IVA Hepatocellular Carcinoma AJCC v8 10 49978 -NCIT:C134525 Stage IVB Hepatocellular Carcinoma AJCC v8 10 49979 -NCIT:C134619 Stage IV Intrahepatic Bile Duct Cancer AJCC v8 9 49980 -NCIT:C134764 Stage IV Intrahepatic Cholangiocarcinoma AJCC v8 10 49981 -NCIT:C5763 Stage IV Hepatocellular Carcinoma AJCC v6 9 49982 -NCIT:C7122 Stage IVA Liver Cancer 9 49983 -NCIT:C134524 Stage IVA Hepatocellular Carcinoma AJCC v8 10 49984 -NCIT:C5764 Stage IVA Hepatocellular Carcinoma AJCC v7 10 49985 -NCIT:C88053 Stage IVA Intrahepatic Cholangiocarcinoma AJCC v7 10 49986 -NCIT:C7123 Stage IVB Liver Cancer 9 49987 -NCIT:C134525 Stage IVB Hepatocellular Carcinoma AJCC v8 10 49988 -NCIT:C5765 Stage IVB Hepatocellular Carcinoma AJCC v7 10 49989 -NCIT:C88054 Stage IVB Intrahepatic Cholangiocarcinoma AJCC v7 10 49990 -NCIT:C90181 Stage IV Hepatocellular Carcinoma AJCC v7 9 49991 -NCIT:C5764 Stage IVA Hepatocellular Carcinoma AJCC v7 10 49992 -NCIT:C5765 Stage IVB Hepatocellular Carcinoma AJCC v7 10 49993 -NCIT:C7838 Stage IV Childhood Hepatocellular Carcinoma AJCC v7 10 49994 -NCIT:C94782 Stage IV Adult Liver Cancer AJCC v7 9 49995 -NCIT:C7711 Adult Liver Carcinoma 8 49996 -NCIT:C114987 Adult Combined Hepatocellular Carcinoma and Cholangiocarcinoma 9 49997 -NCIT:C7877 Localized Resectable Adult Liver Carcinoma 9 49998 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 10 49999 -NCIT:C7878 Localized Unresectable Adult Liver Carcinoma 9 50000 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 10 50001 -NCIT:C7880 Recurrent Adult Liver Carcinoma 9 50002 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 10 50003 -NCIT:C7956 Adult Hepatocellular Carcinoma 9 50004 -NCIT:C114992 Adult Fibrolamellar Carcinoma 10 50005 -NCIT:C114993 Adult Pleomorphic Hepatocellular Carcinoma 10 50006 -NCIT:C115139 BCLC Stage 0 Adult Hepatocellular Carcinoma 10 50007 -NCIT:C115140 BCLC Stage A Adult Hepatocellular Carcinoma 10 50008 -NCIT:C115141 BCLC Stage B Adult Hepatocellular Carcinoma 10 50009 -NCIT:C115143 BCLC Stage C Adult Hepatocellular Carcinoma 10 50010 -NCIT:C115144 BCLC Stage D Adult Hepatocellular Carcinoma 10 50011 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 10 50012 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 10 50013 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 10 50014 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 10 50015 -NCIT:C94775 Stage I Adult Liver Cancer AJCC v7 9 50016 -NCIT:C94776 Stage II Adult Liver Cancer AJCC v7 9 50017 -NCIT:C94777 Stage III Adult Liver Cancer AJCC v7 9 50018 -NCIT:C94779 Stage IIIA Adult Liver Cancer AJCC v7 10 50019 -NCIT:C94780 Stage IIIB Adult Liver Cancer AJCC v7 10 50020 -NCIT:C94781 Stage IIIC Adult Liver Cancer AJCC v7 10 50021 -NCIT:C94782 Stage IV Adult Liver Cancer AJCC v7 9 50022 -NCIT:C96787 Liver Neuroendocrine Carcinoma 8 50023 -NCIT:C172722 Liver Large Cell Neuroendocrine Carcinoma 9 50024 -NCIT:C172725 Liver Small Cell Neuroendocrine Carcinoma 9 50025 -NCIT:C96792 Liver Undifferentiated Carcinoma 8 50026 -NCIT:C96848 Liver Carcinosarcoma 8 50027 -NCIT:C96947 Intrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 8 50028 -NCIT:C96846 Liver Epithelioid Hemangioendothelioma 7 50029 -NCIT:C96847 Extrarenal Rhabdoid Tumor of the Liver 7 50030 -NCIT:C96851 Liver Yolk Sac Tumor 7 50031 -NCIT:C35648 Unresectable Malignant Liver Neoplasm 6 50032 -NCIT:C165171 Unresectable Liver and Intrahepatic Bile Duct Carcinoma 7 50033 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 8 50034 -NCIT:C27345 Unresectable Hepatocellular Carcinoma 8 50035 -NCIT:C162602 Unresectable Fibrolamellar Carcinoma 9 50036 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 9 50037 -NCIT:C7878 Localized Unresectable Adult Liver Carcinoma 8 50038 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 9 50039 -NCIT:C8641 Unresectable Hepatoblastoma 7 50040 -NCIT:C4758 Metastatic Malignant Neoplasm in the Liver 6 50041 -NCIT:C150130 Uveal Melanoma Metastatic in the Liver 7 50042 -NCIT:C185152 Extramedullary Disease in Plasma Cell Myeloma Involving the Liver 7 50043 -NCIT:C96767 Metastatic Carcinoma in the Liver 7 50044 -NCIT:C157366 Colorectal Carcinoma Metastatic in the Liver 8 50045 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 9 50046 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 9 50047 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 9 50048 -NCIT:C36302 Breast Carcinoma Metastatic in the Liver 8 50049 -NCIT:C36306 Lung Carcinoma Metastatic in the Liver 8 50050 -NCIT:C7115 Malignant Liver Non-Epithelial Neoplasm 6 50051 -NCIT:C185042 Liver Plasmacytoma 7 50052 -NCIT:C4437 Liver Sarcoma 7 50053 -NCIT:C27096 Liver Embryonal Sarcoma 8 50054 -NCIT:C189934 Childhood Liver Embryonal Sarcoma 9 50055 -NCIT:C189935 Adult Liver Embryonal Sarcoma 9 50056 -NCIT:C4438 Liver Angiosarcoma 8 50057 -NCIT:C190020 Childhood Liver Angiosarcoma 9 50058 -NCIT:C5756 Liver Leiomyosarcoma 8 50059 -NCIT:C5832 Liver Fibrosarcoma 8 50060 -NCIT:C5833 Liver Extraskeletal Osteosarcoma 8 50061 -NCIT:C5834 Liver Rhabdomyosarcoma 8 50062 -NCIT:C96844 Liver Kaposi Sarcoma 8 50063 -NCIT:C96845 Liver Synovial Sarcoma 8 50064 -NCIT:C4949 Liver Lymphoma 7 50065 -NCIT:C5766 Liver Non-Hodgkin Lymphoma 8 50066 -NCIT:C5768 Liver Mucosa-Associated Lymphoid Tissue Lymphoma 9 50067 -NCIT:C8459 Hepatosplenic T-Cell Lymphoma 9 50068 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 10 50069 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 10 50070 -NCIT:C96843 Liver Diffuse Large B-Cell Lymphoma 9 50071 -NCIT:C96846 Liver Epithelioid Hemangioendothelioma 7 50072 -NCIT:C96847 Extrarenal Rhabdoid Tumor of the Liver 7 50073 -NCIT:C96851 Liver Yolk Sac Tumor 7 50074 -NCIT:C7692 Resectable Malignant Liver Neoplasm 6 50075 -NCIT:C165293 Resectable Liver and Intrahepatic Bile Duct Carcinoma 7 50076 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 8 50077 -NCIT:C7691 Resectable Hepatocellular Carcinoma 8 50078 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 9 50079 -NCIT:C7877 Localized Resectable Adult Liver Carcinoma 8 50080 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 9 50081 -NCIT:C8642 Resectable Hepatoblastoma 7 50082 -NCIT:C7708 Childhood Malignant Liver Neoplasm 6 50083 -NCIT:C189934 Childhood Liver Embryonal Sarcoma 7 50084 -NCIT:C190020 Childhood Liver Angiosarcoma 7 50085 -NCIT:C3728 Hepatoblastoma 7 50086 -NCIT:C142854 Refractory Hepatoblastoma 8 50087 -NCIT:C161838 Hepatocellular Malignant Neoplasm, Not Otherwise Specified 8 50088 -NCIT:C189923 Epithelial Hepatoblastoma 8 50089 -NCIT:C189924 Epithelial Hepatoblastoma with Pleomorphic Pattern 9 50090 -NCIT:C7093 Hepatoblastoma with Pure Fetal Epithelial Differentiation 9 50091 -NCIT:C7094 Hepatoblastoma with Combined Fetal and Embryonal Epithelial Differentiation 9 50092 -NCIT:C7095 Macrotrabecular Hepatoblastoma 9 50093 -NCIT:C7096 Small Cell Undifferentiated Hepatoblastoma 9 50094 -NCIT:C189927 Hepatoblastoma by PRETEXT Stage 8 50095 -NCIT:C7139 PRETEXT Stage 1 Hepatoblastoma 9 50096 -NCIT:C7140 PRETEXT Stage 2 Hepatoblastoma 9 50097 -NCIT:C7141 PRETEXT Stage 3 Hepatoblastoma 9 50098 -NCIT:C7142 PRETEXT Stage 4 Hepatoblastoma 9 50099 -NCIT:C189929 Hepatoblastoma by Postsurgical Stage 8 50100 -NCIT:C7143 Postsurgical Stage IV Hepatoblastoma 9 50101 -NCIT:C7144 Postsurgical Stage III Hepatoblastoma 9 50102 -NCIT:C7145 Postsurgical Stage II Hepatoblastoma 9 50103 -NCIT:C7146 Postsurgical Stage I Hepatoblastoma 9 50104 -NCIT:C7097 Mixed Epithelial and Mesenchymal Hepatoblastoma 8 50105 -NCIT:C189926 Non-Teratoid Hepatoblastoma 9 50106 -NCIT:C7098 Teratoid Hepatoblastoma 9 50107 -NCIT:C8641 Unresectable Hepatoblastoma 8 50108 -NCIT:C8642 Resectable Hepatoblastoma 8 50109 -NCIT:C8643 Recurrent Hepatoblastoma 8 50110 -NCIT:C7839 Recurrent Childhood Malignant Liver Neoplasm 7 50111 -NCIT:C8643 Recurrent Hepatoblastoma 8 50112 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 8 50113 -NCIT:C7955 Childhood Hepatocellular Carcinoma 7 50114 -NCIT:C189932 Childhood Fibrolamellar Carcinoma 8 50115 -NCIT:C5708 Stage III Childhood Hepatocellular Carcinoma AJCC v7 8 50116 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 8 50117 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 8 50118 -NCIT:C7838 Stage IV Childhood Hepatocellular Carcinoma AJCC v7 8 50119 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 8 50120 -NCIT:C96830 Calcifying Nested Stromal-Epithelial Tumor 7 50121 -NCIT:C96847 Extrarenal Rhabdoid Tumor of the Liver 7 50122 -NCIT:C27368 Childhood Liver Neoplasm 5 50123 -NCIT:C190581 Childhood Benign Liver Neoplasm 6 50124 -NCIT:C190019 Liver Congenital Hemangioma 7 50125 -NCIT:C5751 Liver Mesenchymal Hamartoma 7 50126 -NCIT:C96840 Liver Infantile Hemangioma 7 50127 -NCIT:C7708 Childhood Malignant Liver Neoplasm 6 50128 -NCIT:C189934 Childhood Liver Embryonal Sarcoma 7 50129 -NCIT:C190020 Childhood Liver Angiosarcoma 7 50130 -NCIT:C3728 Hepatoblastoma 7 50131 -NCIT:C142854 Refractory Hepatoblastoma 8 50132 -NCIT:C161838 Hepatocellular Malignant Neoplasm, Not Otherwise Specified 8 50133 -NCIT:C189923 Epithelial Hepatoblastoma 8 50134 -NCIT:C189924 Epithelial Hepatoblastoma with Pleomorphic Pattern 9 50135 -NCIT:C7093 Hepatoblastoma with Pure Fetal Epithelial Differentiation 9 50136 -NCIT:C7094 Hepatoblastoma with Combined Fetal and Embryonal Epithelial Differentiation 9 50137 -NCIT:C7095 Macrotrabecular Hepatoblastoma 9 50138 -NCIT:C7096 Small Cell Undifferentiated Hepatoblastoma 9 50139 -NCIT:C189927 Hepatoblastoma by PRETEXT Stage 8 50140 -NCIT:C7139 PRETEXT Stage 1 Hepatoblastoma 9 50141 -NCIT:C7140 PRETEXT Stage 2 Hepatoblastoma 9 50142 -NCIT:C7141 PRETEXT Stage 3 Hepatoblastoma 9 50143 -NCIT:C7142 PRETEXT Stage 4 Hepatoblastoma 9 50144 -NCIT:C189929 Hepatoblastoma by Postsurgical Stage 8 50145 -NCIT:C7143 Postsurgical Stage IV Hepatoblastoma 9 50146 -NCIT:C7144 Postsurgical Stage III Hepatoblastoma 9 50147 -NCIT:C7145 Postsurgical Stage II Hepatoblastoma 9 50148 -NCIT:C7146 Postsurgical Stage I Hepatoblastoma 9 50149 -NCIT:C7097 Mixed Epithelial and Mesenchymal Hepatoblastoma 8 50150 -NCIT:C189926 Non-Teratoid Hepatoblastoma 9 50151 -NCIT:C7098 Teratoid Hepatoblastoma 9 50152 -NCIT:C8641 Unresectable Hepatoblastoma 8 50153 -NCIT:C8642 Resectable Hepatoblastoma 8 50154 -NCIT:C8643 Recurrent Hepatoblastoma 8 50155 -NCIT:C7839 Recurrent Childhood Malignant Liver Neoplasm 7 50156 -NCIT:C8643 Recurrent Hepatoblastoma 8 50157 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 8 50158 -NCIT:C7955 Childhood Hepatocellular Carcinoma 7 50159 -NCIT:C189932 Childhood Fibrolamellar Carcinoma 8 50160 -NCIT:C5708 Stage III Childhood Hepatocellular Carcinoma AJCC v7 8 50161 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 8 50162 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 8 50163 -NCIT:C7838 Stage IV Childhood Hepatocellular Carcinoma AJCC v7 8 50164 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 8 50165 -NCIT:C96830 Calcifying Nested Stromal-Epithelial Tumor 7 50166 -NCIT:C96847 Extrarenal Rhabdoid Tumor of the Liver 7 50167 -NCIT:C7106 Liver Epithelial Neoplasm 5 50168 -NCIT:C7125 Intrahepatic Bile Duct Intraductal Papillary Neoplasm 6 50169 -NCIT:C96949 Intrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 7 50170 -NCIT:C7656 Liver Dysplastic Nodule 6 50171 -NCIT:C96768 High Grade Liver Dysplastic Nodule 7 50172 -NCIT:C96770 Low Grade Liver Dysplastic Nodule 7 50173 -NCIT:C7927 Liver and Intrahepatic Bile Duct Carcinoma 6 50174 -NCIT:C118630 Liver Adenosquamous Carcinoma 7 50175 -NCIT:C134604 Intrahepatic Bile Duct Cancer by AJCC v8 Stage 7 50176 -NCIT:C134609 Stage 0 Intrahepatic Bile Duct Cancer AJCC v8 8 50177 -NCIT:C134756 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v8 9 50178 -NCIT:C134610 Stage I Intrahepatic Bile Duct Cancer AJCC v8 8 50179 -NCIT:C134611 Stage IA Intrahepatic Bile Duct Cancer AJCC v8 9 50180 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 10 50181 -NCIT:C134612 Stage IB Intrahepatic Bile Duct Cancer AJCC v8 9 50182 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 10 50183 -NCIT:C134757 Stage I Intrahepatic Cholangiocarcinoma AJCC v8 9 50184 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 10 50185 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 10 50186 -NCIT:C134614 Stage II Intrahepatic Bile Duct Cancer AJCC v8 8 50187 -NCIT:C134760 Stage II Intrahepatic Cholangiocarcinoma AJCC v8 9 50188 -NCIT:C134615 Stage III Intrahepatic Bile Duct Cancer AJCC v8 8 50189 -NCIT:C134616 Stage IIIA Intrahepatic Bile Duct Cancer AJCC v8 9 50190 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 10 50191 -NCIT:C134618 Stage IIIB Intrahepatic Bile Duct Cancer AJCC v8 9 50192 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 10 50193 -NCIT:C134761 Stage III Intrahepatic Cholangiocarcinoma AJCC v8 9 50194 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 10 50195 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 10 50196 -NCIT:C134619 Stage IV Intrahepatic Bile Duct Cancer AJCC v8 8 50197 -NCIT:C134764 Stage IV Intrahepatic Cholangiocarcinoma AJCC v8 9 50198 -NCIT:C134755 Intrahepatic Cholangiocarcinoma by AJCC v8 Stage 8 50199 -NCIT:C134756 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v8 9 50200 -NCIT:C134757 Stage I Intrahepatic Cholangiocarcinoma AJCC v8 9 50201 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 10 50202 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 10 50203 -NCIT:C134760 Stage II Intrahepatic Cholangiocarcinoma AJCC v8 9 50204 -NCIT:C134761 Stage III Intrahepatic Cholangiocarcinoma AJCC v8 9 50205 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 10 50206 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 10 50207 -NCIT:C134764 Stage IV Intrahepatic Cholangiocarcinoma AJCC v8 9 50208 -NCIT:C153352 Refractory Liver Carcinoma 7 50209 -NCIT:C162450 Refractory Hepatocellular Carcinoma 8 50210 -NCIT:C188887 Refractory Fibrolamellar Carcinoma 9 50211 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 8 50212 -NCIT:C154088 Metastatic Liver Carcinoma 7 50213 -NCIT:C154091 Metastatic Hepatocellular Carcinoma 8 50214 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 9 50215 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 10 50216 -NCIT:C167336 Advanced Hepatocellular Carcinoma 9 50217 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 10 50218 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 10 50219 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 9 50220 -NCIT:C171298 Locally Advanced Liver Carcinoma 8 50221 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 9 50222 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 50223 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 8 50224 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 50225 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 9 50226 -NCIT:C165171 Unresectable Liver and Intrahepatic Bile Duct Carcinoma 7 50227 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 8 50228 -NCIT:C27345 Unresectable Hepatocellular Carcinoma 8 50229 -NCIT:C162602 Unresectable Fibrolamellar Carcinoma 9 50230 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 9 50231 -NCIT:C7878 Localized Unresectable Adult Liver Carcinoma 8 50232 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 9 50233 -NCIT:C165293 Resectable Liver and Intrahepatic Bile Duct Carcinoma 7 50234 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 8 50235 -NCIT:C7691 Resectable Hepatocellular Carcinoma 8 50236 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 9 50237 -NCIT:C7877 Localized Resectable Adult Liver Carcinoma 8 50238 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 9 50239 -NCIT:C172718 Liver Mixed Adenoneuroendocrine Carcinoma 7 50240 -NCIT:C3099 Hepatocellular Carcinoma 7 50241 -NCIT:C115132 Hepatocellular Carcinoma by BCLC Stage 8 50242 -NCIT:C115133 BCLC Stage 0 Hepatocellular Carcinoma 9 50243 -NCIT:C115139 BCLC Stage 0 Adult Hepatocellular Carcinoma 10 50244 -NCIT:C115135 BCLC Stage A Hepatocellular Carcinoma 9 50245 -NCIT:C115140 BCLC Stage A Adult Hepatocellular Carcinoma 10 50246 -NCIT:C115136 BCLC Stage B Hepatocellular Carcinoma 9 50247 -NCIT:C115141 BCLC Stage B Adult Hepatocellular Carcinoma 10 50248 -NCIT:C115137 BCLC Stage C Hepatocellular Carcinoma 9 50249 -NCIT:C115143 BCLC Stage C Adult Hepatocellular Carcinoma 10 50250 -NCIT:C115138 BCLC Stage D Hepatocellular Carcinoma 9 50251 -NCIT:C115144 BCLC Stage D Adult Hepatocellular Carcinoma 10 50252 -NCIT:C134515 Hepatocellular Carcinoma by AJCC v8 Stage 8 50253 -NCIT:C134516 Stage I Hepatocellular Carcinoma AJCC v8 9 50254 -NCIT:C134517 Stage IA Hepatocellular Carcinoma AJCC v8 10 50255 -NCIT:C134518 Stage IB Hepatocellular Carcinoma AJCC v8 10 50256 -NCIT:C134519 Stage II Hepatocellular Carcinoma AJCC v8 9 50257 -NCIT:C134520 Stage III Hepatocellular Carcinoma AJCC v8 9 50258 -NCIT:C134521 Stage IIIA Hepatocellular Carcinoma AJCC v8 10 50259 -NCIT:C134522 Stage IIIB Hepatocellular Carcinoma AJCC v8 10 50260 -NCIT:C134523 Stage IV Hepatocellular Carcinoma AJCC v8 9 50261 -NCIT:C134524 Stage IVA Hepatocellular Carcinoma AJCC v8 10 50262 -NCIT:C134525 Stage IVB Hepatocellular Carcinoma AJCC v8 10 50263 -NCIT:C154091 Metastatic Hepatocellular Carcinoma 8 50264 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 9 50265 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 10 50266 -NCIT:C167336 Advanced Hepatocellular Carcinoma 9 50267 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 10 50268 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 10 50269 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 9 50270 -NCIT:C162450 Refractory Hepatocellular Carcinoma 8 50271 -NCIT:C188887 Refractory Fibrolamellar Carcinoma 9 50272 -NCIT:C172709 Steatohepatitic Hepatocellular Carcinoma 8 50273 -NCIT:C27924 Alcohol-Related Hepatocellular Carcinoma 9 50274 -NCIT:C172710 Macrotrabecular Massive Hepatocellular Carcinoma 8 50275 -NCIT:C172712 Chromophobe Hepatocellular Carcinoma 8 50276 -NCIT:C172713 Neutrophil-Rich Hepatocellular Carcinoma 8 50277 -NCIT:C172714 Small Hepatocellular Carcinoma 8 50278 -NCIT:C172716 Small Progressed Hepatocellular Carcinoma 9 50279 -NCIT:C96772 Early Hepatocellular Carcinoma 9 50280 -NCIT:C27345 Unresectable Hepatocellular Carcinoma 8 50281 -NCIT:C162602 Unresectable Fibrolamellar Carcinoma 9 50282 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 9 50283 -NCIT:C27388 Scirrhous Hepatocellular Carcinoma 8 50284 -NCIT:C27635 Transplant-Related Hepatocellular Carcinoma 8 50285 -NCIT:C27686 Hepatitis Virus-Related Hepatocellular Carcinoma 8 50286 -NCIT:C27687 Hepatitis B Virus-Related Hepatocellular Carcinoma 9 50287 -NCIT:C27688 Hepatitis C Virus-Related Hepatocellular Carcinoma 9 50288 -NCIT:C27922 Aflatoxins-Related Hepatocellular Carcinoma 8 50289 -NCIT:C4131 Fibrolamellar Carcinoma 8 50290 -NCIT:C114992 Adult Fibrolamellar Carcinoma 9 50291 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 9 50292 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 10 50293 -NCIT:C154082 Recurrent Fibrolamellar Carcinoma 9 50294 -NCIT:C162602 Unresectable Fibrolamellar Carcinoma 9 50295 -NCIT:C188887 Refractory Fibrolamellar Carcinoma 9 50296 -NCIT:C189932 Childhood Fibrolamellar Carcinoma 9 50297 -NCIT:C43625 Pleomorphic Hepatocellular Carcinoma 8 50298 -NCIT:C114993 Adult Pleomorphic Hepatocellular Carcinoma 9 50299 -NCIT:C43627 Sarcomatoid Hepatocellular Carcinoma 8 50300 -NCIT:C5754 Clear Cell Hepatocellular Carcinoma 8 50301 -NCIT:C7691 Resectable Hepatocellular Carcinoma 8 50302 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 9 50303 -NCIT:C7955 Childhood Hepatocellular Carcinoma 8 50304 -NCIT:C189932 Childhood Fibrolamellar Carcinoma 9 50305 -NCIT:C5708 Stage III Childhood Hepatocellular Carcinoma AJCC v7 9 50306 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 9 50307 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 9 50308 -NCIT:C7838 Stage IV Childhood Hepatocellular Carcinoma AJCC v7 9 50309 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 9 50310 -NCIT:C7956 Adult Hepatocellular Carcinoma 8 50311 -NCIT:C114992 Adult Fibrolamellar Carcinoma 9 50312 -NCIT:C114993 Adult Pleomorphic Hepatocellular Carcinoma 9 50313 -NCIT:C115139 BCLC Stage 0 Adult Hepatocellular Carcinoma 9 50314 -NCIT:C115140 BCLC Stage A Adult Hepatocellular Carcinoma 9 50315 -NCIT:C115141 BCLC Stage B Adult Hepatocellular Carcinoma 9 50316 -NCIT:C115143 BCLC Stage C Adult Hepatocellular Carcinoma 9 50317 -NCIT:C115144 BCLC Stage D Adult Hepatocellular Carcinoma 9 50318 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 50319 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 9 50320 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 9 50321 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 9 50322 -NCIT:C90510 Hepatocellular Carcinoma by AJCC v6 Stage 8 50323 -NCIT:C5758 Stage I Hepatocellular Carcinoma AJCC v6 and v7 9 50324 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 10 50325 -NCIT:C5759 Stage II Hepatocellular Carcinoma AJCC v6 and v7 9 50326 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 10 50327 -NCIT:C5760 Stage III Hepatocellular Carcinoma AJCC v6 9 50328 -NCIT:C5763 Stage IV Hepatocellular Carcinoma AJCC v6 9 50329 -NCIT:C91228 Hepatocellular Carcinoma by AJCC v7 Stage 8 50330 -NCIT:C5758 Stage I Hepatocellular Carcinoma AJCC v6 and v7 9 50331 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 10 50332 -NCIT:C5759 Stage II Hepatocellular Carcinoma AJCC v6 and v7 9 50333 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 10 50334 -NCIT:C90180 Stage III Hepatocellular Carcinoma AJCC v7 9 50335 -NCIT:C5708 Stage III Childhood Hepatocellular Carcinoma AJCC v7 10 50336 -NCIT:C5761 Stage IIIA Hepatocellular Carcinoma AJCC v7 10 50337 -NCIT:C5762 Stage IIIB Hepatocellular Carcinoma AJCC v7 10 50338 -NCIT:C88044 Stage IIIC Hepatocellular Carcinoma AJCC v7 10 50339 -NCIT:C90181 Stage IV Hepatocellular Carcinoma AJCC v7 9 50340 -NCIT:C5764 Stage IVA Hepatocellular Carcinoma AJCC v7 10 50341 -NCIT:C5765 Stage IVB Hepatocellular Carcinoma AJCC v7 10 50342 -NCIT:C7838 Stage IV Childhood Hepatocellular Carcinoma AJCC v7 10 50343 -NCIT:C9264 Recurrent Hepatocellular Carcinoma 8 50344 -NCIT:C154082 Recurrent Fibrolamellar Carcinoma 9 50345 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 9 50346 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 9 50347 -NCIT:C96788 Lymphocyte-Rich Hepatocellular Carcinoma 8 50348 -NCIT:C96789 Well Differentiated Hepatocellular Carcinoma 8 50349 -NCIT:C96790 Moderately Differentiated Hepatocellular Carcinoma 8 50350 -NCIT:C96791 Poorly Differentiated Hepatocellular Carcinoma 8 50351 -NCIT:C35417 Intrahepatic Cholangiocarcinoma 7 50352 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 8 50353 -NCIT:C134514 Intrahepatic Cholangiocarcinoma by AJCC v7 Stage 8 50354 -NCIT:C88049 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v7 9 50355 -NCIT:C88050 Stage I Intrahepatic Cholangiocarcinoma AJCC v7 9 50356 -NCIT:C88051 Stage II Intrahepatic Cholangiocarcinoma AJCC v7 9 50357 -NCIT:C88052 Stage III Intrahepatic Cholangiocarcinoma AJCC v7 9 50358 -NCIT:C88053 Stage IVA Intrahepatic Cholangiocarcinoma AJCC v7 9 50359 -NCIT:C88054 Stage IVB Intrahepatic Cholangiocarcinoma AJCC v7 9 50360 -NCIT:C134755 Intrahepatic Cholangiocarcinoma by AJCC v8 Stage 8 50361 -NCIT:C134756 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v8 9 50362 -NCIT:C134757 Stage I Intrahepatic Cholangiocarcinoma AJCC v8 9 50363 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 10 50364 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 10 50365 -NCIT:C134760 Stage II Intrahepatic Cholangiocarcinoma AJCC v8 9 50366 -NCIT:C134761 Stage III Intrahepatic Cholangiocarcinoma AJCC v8 9 50367 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 10 50368 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 10 50369 -NCIT:C134764 Stage IV Intrahepatic Cholangiocarcinoma AJCC v8 9 50370 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 8 50371 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 8 50372 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 8 50373 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 50374 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 9 50375 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 8 50376 -NCIT:C41617 Cholangiolocellular Carcinoma 8 50377 -NCIT:C41618 Mucin-Producing Intrahepatic Cholangiocarcinoma 8 50378 -NCIT:C41619 Signet Ring Cell Intrahepatic Cholangiocarcinoma 8 50379 -NCIT:C41620 Sarcomatoid Intrahepatic Cholangiocarcinoma 8 50380 -NCIT:C43848 Clear Cell Intrahepatic Cholangiocarcinoma 8 50381 -NCIT:C96804 Large Duct Intrahepatic Cholangiocarcinoma 8 50382 -NCIT:C96805 Small Duct Intrahepatic Cholangiocarcinoma 8 50383 -NCIT:C96949 Intrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 8 50384 -NCIT:C3828 Combined Hepatocellular Carcinoma and Cholangiocarcinoma 7 50385 -NCIT:C114987 Adult Combined Hepatocellular Carcinoma and Cholangiocarcinoma 8 50386 -NCIT:C7110 Recurrent Liver Carcinoma 7 50387 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 8 50388 -NCIT:C7880 Recurrent Adult Liver Carcinoma 8 50389 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 9 50390 -NCIT:C9264 Recurrent Hepatocellular Carcinoma 8 50391 -NCIT:C154082 Recurrent Fibrolamellar Carcinoma 9 50392 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 9 50393 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 9 50394 -NCIT:C7116 Stage I Liver Cancer 7 50395 -NCIT:C134516 Stage I Hepatocellular Carcinoma AJCC v8 8 50396 -NCIT:C134517 Stage IA Hepatocellular Carcinoma AJCC v8 9 50397 -NCIT:C134518 Stage IB Hepatocellular Carcinoma AJCC v8 9 50398 -NCIT:C134610 Stage I Intrahepatic Bile Duct Cancer AJCC v8 8 50399 -NCIT:C134611 Stage IA Intrahepatic Bile Duct Cancer AJCC v8 9 50400 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 10 50401 -NCIT:C134612 Stage IB Intrahepatic Bile Duct Cancer AJCC v8 9 50402 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 10 50403 -NCIT:C134757 Stage I Intrahepatic Cholangiocarcinoma AJCC v8 9 50404 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 10 50405 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 10 50406 -NCIT:C5758 Stage I Hepatocellular Carcinoma AJCC v6 and v7 8 50407 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 9 50408 -NCIT:C88050 Stage I Intrahepatic Cholangiocarcinoma AJCC v7 8 50409 -NCIT:C94775 Stage I Adult Liver Cancer AJCC v7 8 50410 -NCIT:C7117 Stage II Liver Cancer 7 50411 -NCIT:C134519 Stage II Hepatocellular Carcinoma AJCC v8 8 50412 -NCIT:C134614 Stage II Intrahepatic Bile Duct Cancer AJCC v8 8 50413 -NCIT:C134760 Stage II Intrahepatic Cholangiocarcinoma AJCC v8 9 50414 -NCIT:C5759 Stage II Hepatocellular Carcinoma AJCC v6 and v7 8 50415 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 9 50416 -NCIT:C88051 Stage II Intrahepatic Cholangiocarcinoma AJCC v7 8 50417 -NCIT:C94776 Stage II Adult Liver Cancer AJCC v7 8 50418 -NCIT:C7118 Stage III Liver Cancer 7 50419 -NCIT:C134520 Stage III Hepatocellular Carcinoma AJCC v8 8 50420 -NCIT:C134521 Stage IIIA Hepatocellular Carcinoma AJCC v8 9 50421 -NCIT:C134522 Stage IIIB Hepatocellular Carcinoma AJCC v8 9 50422 -NCIT:C134615 Stage III Intrahepatic Bile Duct Cancer AJCC v8 8 50423 -NCIT:C134616 Stage IIIA Intrahepatic Bile Duct Cancer AJCC v8 9 50424 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 10 50425 -NCIT:C134618 Stage IIIB Intrahepatic Bile Duct Cancer AJCC v8 9 50426 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 10 50427 -NCIT:C134761 Stage III Intrahepatic Cholangiocarcinoma AJCC v8 9 50428 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 10 50429 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 10 50430 -NCIT:C5760 Stage III Hepatocellular Carcinoma AJCC v6 8 50431 -NCIT:C88052 Stage III Intrahepatic Cholangiocarcinoma AJCC v7 8 50432 -NCIT:C90180 Stage III Hepatocellular Carcinoma AJCC v7 8 50433 -NCIT:C5708 Stage III Childhood Hepatocellular Carcinoma AJCC v7 9 50434 -NCIT:C5761 Stage IIIA Hepatocellular Carcinoma AJCC v7 9 50435 -NCIT:C5762 Stage IIIB Hepatocellular Carcinoma AJCC v7 9 50436 -NCIT:C88044 Stage IIIC Hepatocellular Carcinoma AJCC v7 9 50437 -NCIT:C94777 Stage III Adult Liver Cancer AJCC v7 8 50438 -NCIT:C94779 Stage IIIA Adult Liver Cancer AJCC v7 9 50439 -NCIT:C94780 Stage IIIB Adult Liver Cancer AJCC v7 9 50440 -NCIT:C94781 Stage IIIC Adult Liver Cancer AJCC v7 9 50441 -NCIT:C7121 Stage IV Liver Cancer 7 50442 -NCIT:C134523 Stage IV Hepatocellular Carcinoma AJCC v8 8 50443 -NCIT:C134524 Stage IVA Hepatocellular Carcinoma AJCC v8 9 50444 -NCIT:C134525 Stage IVB Hepatocellular Carcinoma AJCC v8 9 50445 -NCIT:C134619 Stage IV Intrahepatic Bile Duct Cancer AJCC v8 8 50446 -NCIT:C134764 Stage IV Intrahepatic Cholangiocarcinoma AJCC v8 9 50447 -NCIT:C5763 Stage IV Hepatocellular Carcinoma AJCC v6 8 50448 -NCIT:C7122 Stage IVA Liver Cancer 8 50449 -NCIT:C134524 Stage IVA Hepatocellular Carcinoma AJCC v8 9 50450 -NCIT:C5764 Stage IVA Hepatocellular Carcinoma AJCC v7 9 50451 -NCIT:C88053 Stage IVA Intrahepatic Cholangiocarcinoma AJCC v7 9 50452 -NCIT:C7123 Stage IVB Liver Cancer 8 50453 -NCIT:C134525 Stage IVB Hepatocellular Carcinoma AJCC v8 9 50454 -NCIT:C5765 Stage IVB Hepatocellular Carcinoma AJCC v7 9 50455 -NCIT:C88054 Stage IVB Intrahepatic Cholangiocarcinoma AJCC v7 9 50456 -NCIT:C90181 Stage IV Hepatocellular Carcinoma AJCC v7 8 50457 -NCIT:C5764 Stage IVA Hepatocellular Carcinoma AJCC v7 9 50458 -NCIT:C5765 Stage IVB Hepatocellular Carcinoma AJCC v7 9 50459 -NCIT:C7838 Stage IV Childhood Hepatocellular Carcinoma AJCC v7 9 50460 -NCIT:C94782 Stage IV Adult Liver Cancer AJCC v7 8 50461 -NCIT:C7711 Adult Liver Carcinoma 7 50462 -NCIT:C114987 Adult Combined Hepatocellular Carcinoma and Cholangiocarcinoma 8 50463 -NCIT:C7877 Localized Resectable Adult Liver Carcinoma 8 50464 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 9 50465 -NCIT:C7878 Localized Unresectable Adult Liver Carcinoma 8 50466 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 9 50467 -NCIT:C7880 Recurrent Adult Liver Carcinoma 8 50468 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 9 50469 -NCIT:C7956 Adult Hepatocellular Carcinoma 8 50470 -NCIT:C114992 Adult Fibrolamellar Carcinoma 9 50471 -NCIT:C114993 Adult Pleomorphic Hepatocellular Carcinoma 9 50472 -NCIT:C115139 BCLC Stage 0 Adult Hepatocellular Carcinoma 9 50473 -NCIT:C115140 BCLC Stage A Adult Hepatocellular Carcinoma 9 50474 -NCIT:C115141 BCLC Stage B Adult Hepatocellular Carcinoma 9 50475 -NCIT:C115143 BCLC Stage C Adult Hepatocellular Carcinoma 9 50476 -NCIT:C115144 BCLC Stage D Adult Hepatocellular Carcinoma 9 50477 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 50478 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 9 50479 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 9 50480 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 9 50481 -NCIT:C94775 Stage I Adult Liver Cancer AJCC v7 8 50482 -NCIT:C94776 Stage II Adult Liver Cancer AJCC v7 8 50483 -NCIT:C94777 Stage III Adult Liver Cancer AJCC v7 8 50484 -NCIT:C94779 Stage IIIA Adult Liver Cancer AJCC v7 9 50485 -NCIT:C94780 Stage IIIB Adult Liver Cancer AJCC v7 9 50486 -NCIT:C94781 Stage IIIC Adult Liver Cancer AJCC v7 9 50487 -NCIT:C94782 Stage IV Adult Liver Cancer AJCC v7 8 50488 -NCIT:C96787 Liver Neuroendocrine Carcinoma 7 50489 -NCIT:C172722 Liver Large Cell Neuroendocrine Carcinoma 8 50490 -NCIT:C172725 Liver Small Cell Neuroendocrine Carcinoma 8 50491 -NCIT:C96792 Liver Undifferentiated Carcinoma 7 50492 -NCIT:C96848 Liver Carcinosarcoma 7 50493 -NCIT:C96947 Intrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 7 50494 -NCIT:C82891 Hepatocellular Large Cell Change 6 50495 -NCIT:C96756 Benign Liver Epithelial Neoplasm 6 50496 -NCIT:C3758 Hepatocellular Adenoma 7 50497 -NCIT:C96758 HNF1alpha-Inactivated Hepatocellular Adenoma 8 50498 -NCIT:C96759 Beta-Catenin-Activated Hepatocellular Adenoma 8 50499 -NCIT:C96760 Inflammatory Hepatocellular Adenoma 8 50500 -NCIT:C172707 Beta-Catenin-Activated Inflammatory Hepatocellular Adenoma 9 50501 -NCIT:C96761 Unclassified Hepatocellular Adenoma 8 50502 -NCIT:C7126 Intrahepatic Bile Duct Adenoma 7 50503 -NCIT:C7127 Intrahepatic Bile Duct Microcystic Adenoma 8 50504 -NCIT:C96826 Biliary Adenofibroma 7 50505 -NCIT:C96765 Hepatocellular Small Cell Change 6 50506 -NCIT:C96767 Metastatic Carcinoma in the Liver 6 50507 -NCIT:C157366 Colorectal Carcinoma Metastatic in the Liver 7 50508 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 8 50509 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 8 50510 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 8 50511 -NCIT:C36302 Breast Carcinoma Metastatic in the Liver 7 50512 -NCIT:C36306 Lung Carcinoma Metastatic in the Liver 7 50513 -NCIT:C96786 Liver Neuroendocrine Neoplasm 6 50514 -NCIT:C5783 Liver Neuroendocrine Tumor 7 50515 -NCIT:C172719 Liver Neuroendocrine Tumor G1 8 50516 -NCIT:C172720 Liver Neuroendocrine Tumor G2 8 50517 -NCIT:C172721 Liver Neuroendocrine Tumor G3 8 50518 -NCIT:C96787 Liver Neuroendocrine Carcinoma 7 50519 -NCIT:C172722 Liver Large Cell Neuroendocrine Carcinoma 8 50520 -NCIT:C172725 Liver Small Cell Neuroendocrine Carcinoma 8 50521 -NCIT:C96835 Intrahepatic Bile Duct Mucinous Cystic Neoplasm 6 50522 -NCIT:C96947 Intrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 7 50523 -NCIT:C96943 Intrahepatic Bile Duct Biliary Intraepithelial Neoplasia 6 50524 -NCIT:C7107 Liver Non-Epithelial Neoplasm 5 50525 -NCIT:C172856 Liver Soft Tissue Neoplasm 6 50526 -NCIT:C27485 Liver Angiomyolipoma 7 50527 -NCIT:C4437 Liver Sarcoma 7 50528 -NCIT:C27096 Liver Embryonal Sarcoma 8 50529 -NCIT:C189934 Childhood Liver Embryonal Sarcoma 9 50530 -NCIT:C189935 Adult Liver Embryonal Sarcoma 9 50531 -NCIT:C4438 Liver Angiosarcoma 8 50532 -NCIT:C190020 Childhood Liver Angiosarcoma 9 50533 -NCIT:C5756 Liver Leiomyosarcoma 8 50534 -NCIT:C5832 Liver Fibrosarcoma 8 50535 -NCIT:C5833 Liver Extraskeletal Osteosarcoma 8 50536 -NCIT:C5834 Liver Rhabdomyosarcoma 8 50537 -NCIT:C96844 Liver Kaposi Sarcoma 8 50538 -NCIT:C96845 Liver Synovial Sarcoma 8 50539 -NCIT:C5750 Liver Lipoma 7 50540 -NCIT:C5753 Liver Leiomyoma 7 50541 -NCIT:C5858 Liver Inflammatory Myofibroblastic Tumor 7 50542 -NCIT:C5749 Benign Liver Non-Epithelial Neoplasm 6 50543 -NCIT:C27485 Liver Angiomyolipoma 7 50544 -NCIT:C3869 Liver Hemangioma 7 50545 -NCIT:C190019 Liver Congenital Hemangioma 8 50546 -NCIT:C96839 Liver Cavernous Hemangioma 8 50547 -NCIT:C96840 Liver Infantile Hemangioma 8 50548 -NCIT:C5750 Liver Lipoma 7 50549 -NCIT:C5752 Liver Solitary Fibrous Tumor 7 50550 -NCIT:C5753 Liver Leiomyoma 7 50551 -NCIT:C96841 Liver Lymphangioma 7 50552 -NCIT:C96842 Liver Lymphangiomatosis 7 50553 -NCIT:C7115 Malignant Liver Non-Epithelial Neoplasm 6 50554 -NCIT:C185042 Liver Plasmacytoma 7 50555 -NCIT:C4437 Liver Sarcoma 7 50556 -NCIT:C27096 Liver Embryonal Sarcoma 8 50557 -NCIT:C189934 Childhood Liver Embryonal Sarcoma 9 50558 -NCIT:C189935 Adult Liver Embryonal Sarcoma 9 50559 -NCIT:C4438 Liver Angiosarcoma 8 50560 -NCIT:C190020 Childhood Liver Angiosarcoma 9 50561 -NCIT:C5756 Liver Leiomyosarcoma 8 50562 -NCIT:C5832 Liver Fibrosarcoma 8 50563 -NCIT:C5833 Liver Extraskeletal Osteosarcoma 8 50564 -NCIT:C5834 Liver Rhabdomyosarcoma 8 50565 -NCIT:C96844 Liver Kaposi Sarcoma 8 50566 -NCIT:C96845 Liver Synovial Sarcoma 8 50567 -NCIT:C4949 Liver Lymphoma 7 50568 -NCIT:C5766 Liver Non-Hodgkin Lymphoma 8 50569 -NCIT:C5768 Liver Mucosa-Associated Lymphoid Tissue Lymphoma 9 50570 -NCIT:C8459 Hepatosplenic T-Cell Lymphoma 9 50571 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 10 50572 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 10 50573 -NCIT:C96843 Liver Diffuse Large B-Cell Lymphoma 9 50574 -NCIT:C96846 Liver Epithelioid Hemangioendothelioma 7 50575 -NCIT:C96847 Extrarenal Rhabdoid Tumor of the Liver 7 50576 -NCIT:C96851 Liver Yolk Sac Tumor 7 50577 -NCIT:C96849 Liver Germ Cell Tumor 6 50578 -NCIT:C96850 Liver Teratoma 7 50579 -NCIT:C96851 Liver Yolk Sac Tumor 7 50580 -NCIT:C8609 Malignant Hepatobiliary Neoplasm 4 50581 -NCIT:C156781 Biliary Tract Carcinoma 5 50582 -NCIT:C156782 Recurrent Biliary Tract Carcinoma 6 50583 -NCIT:C153360 Recurrent Bile Duct Carcinoma 7 50584 -NCIT:C27325 Recurrent Cholangiocarcinoma 8 50585 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 9 50586 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 9 50587 -NCIT:C7893 Recurrent Extrahepatic Bile Duct Carcinoma 8 50588 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 9 50589 -NCIT:C4008 Recurrent Gallbladder Carcinoma 7 50590 -NCIT:C162750 Refractory Biliary Tract Carcinoma 6 50591 -NCIT:C153355 Refractory Bile Duct Carcinoma 7 50592 -NCIT:C158101 Refractory Cholangiocarcinoma 8 50593 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 9 50594 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 9 50595 -NCIT:C175437 Refractory Extrahepatic Bile Duct Carcinoma 8 50596 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 9 50597 -NCIT:C162753 Refractory Gallbladder Carcinoma 7 50598 -NCIT:C162751 Metastatic Biliary Tract Carcinoma 6 50599 -NCIT:C142869 Metastatic Bile Duct Carcinoma 7 50600 -NCIT:C142870 Advanced Bile Duct Carcinoma 8 50601 -NCIT:C162752 Advanced Cholangiocarcinoma 9 50602 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 50603 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 10 50604 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 10 50605 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 9 50606 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 50607 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 8 50608 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 9 50609 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 10 50610 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 10 50611 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 9 50612 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 10 50613 -NCIT:C157623 Metastatic Cholangiocarcinoma 8 50614 -NCIT:C162752 Advanced Cholangiocarcinoma 9 50615 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 50616 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 10 50617 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 10 50618 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 9 50619 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 10 50620 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 10 50621 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 9 50622 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 50623 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 9 50624 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 10 50625 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 10 50626 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 9 50627 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 10 50628 -NCIT:C185071 Metastatic Extrahepatic Bile Duct Carcinoma 8 50629 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 9 50630 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 10 50631 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 50632 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 10 50633 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 9 50634 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 50635 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 9 50636 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 10 50637 -NCIT:C162754 Metastatic Gallbladder Carcinoma 7 50638 -NCIT:C162755 Advanced Gallbladder Carcinoma 8 50639 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 8 50640 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 9 50641 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 7 50642 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 8 50643 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 9 50644 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 10 50645 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 10 50646 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 9 50647 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 10 50648 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 8 50649 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 9 50650 -NCIT:C171331 Advanced Biliary Tract Carcinoma 7 50651 -NCIT:C142870 Advanced Bile Duct Carcinoma 8 50652 -NCIT:C162752 Advanced Cholangiocarcinoma 9 50653 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 50654 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 10 50655 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 10 50656 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 9 50657 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 50658 -NCIT:C162755 Advanced Gallbladder Carcinoma 8 50659 -NCIT:C176042 Unresectable Biliary Tract Carcinoma 6 50660 -NCIT:C171322 Unresectable Bile Duct Carcinoma 7 50661 -NCIT:C27324 Unresectable Cholangiocarcinoma 8 50662 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 9 50663 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 9 50664 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 9 50665 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 9 50666 -NCIT:C7892 Unresectable Extrahepatic Bile Duct Carcinoma 8 50667 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 9 50668 -NCIT:C7890 Unresectable Gallbladder Carcinoma 7 50669 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 8 50670 -NCIT:C189064 Unresectable Gallbladder Adenocarcinoma 8 50671 -NCIT:C27814 Bile Duct Carcinoma 6 50672 -NCIT:C142869 Metastatic Bile Duct Carcinoma 7 50673 -NCIT:C142870 Advanced Bile Duct Carcinoma 8 50674 -NCIT:C162752 Advanced Cholangiocarcinoma 9 50675 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 50676 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 10 50677 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 10 50678 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 9 50679 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 50680 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 8 50681 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 9 50682 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 10 50683 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 10 50684 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 9 50685 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 10 50686 -NCIT:C157623 Metastatic Cholangiocarcinoma 8 50687 -NCIT:C162752 Advanced Cholangiocarcinoma 9 50688 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 50689 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 10 50690 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 10 50691 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 9 50692 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 10 50693 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 10 50694 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 9 50695 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 50696 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 9 50697 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 10 50698 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 10 50699 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 9 50700 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 10 50701 -NCIT:C185071 Metastatic Extrahepatic Bile Duct Carcinoma 8 50702 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 9 50703 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 10 50704 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 50705 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 10 50706 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 9 50707 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 50708 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 9 50709 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 10 50710 -NCIT:C153355 Refractory Bile Duct Carcinoma 7 50711 -NCIT:C158101 Refractory Cholangiocarcinoma 8 50712 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 9 50713 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 9 50714 -NCIT:C175437 Refractory Extrahepatic Bile Duct Carcinoma 8 50715 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 9 50716 -NCIT:C153360 Recurrent Bile Duct Carcinoma 7 50717 -NCIT:C27325 Recurrent Cholangiocarcinoma 8 50718 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 9 50719 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 9 50720 -NCIT:C7893 Recurrent Extrahepatic Bile Duct Carcinoma 8 50721 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 9 50722 -NCIT:C171322 Unresectable Bile Duct Carcinoma 7 50723 -NCIT:C27324 Unresectable Cholangiocarcinoma 8 50724 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 9 50725 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 9 50726 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 9 50727 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 9 50728 -NCIT:C7892 Unresectable Extrahepatic Bile Duct Carcinoma 8 50729 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 9 50730 -NCIT:C27813 Bile Duct Adenocarcinoma 7 50731 -NCIT:C156910 Resectable Bile Duct Adenocarcinoma 8 50732 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 9 50733 -NCIT:C27326 Resectable Cholangiocarcinoma 9 50734 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 10 50735 -NCIT:C4130 Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 8 50736 -NCIT:C96946 Extrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 9 50737 -NCIT:C96947 Intrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 9 50738 -NCIT:C4436 Cholangiocarcinoma 8 50739 -NCIT:C157623 Metastatic Cholangiocarcinoma 9 50740 -NCIT:C162752 Advanced Cholangiocarcinoma 10 50741 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 50742 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 50743 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 50744 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 50745 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 50746 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 50747 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 10 50748 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 50749 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 10 50750 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 50751 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 50752 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 10 50753 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 50754 -NCIT:C158101 Refractory Cholangiocarcinoma 9 50755 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 10 50756 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 50757 -NCIT:C27324 Unresectable Cholangiocarcinoma 9 50758 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 10 50759 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 10 50760 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 10 50761 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 10 50762 -NCIT:C27325 Recurrent Cholangiocarcinoma 9 50763 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 10 50764 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 10 50765 -NCIT:C27326 Resectable Cholangiocarcinoma 9 50766 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 10 50767 -NCIT:C27769 Opisthorchis Viverrini-Related Cholangiocarcinoma 9 50768 -NCIT:C35417 Intrahepatic Cholangiocarcinoma 9 50769 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 10 50770 -NCIT:C134514 Intrahepatic Cholangiocarcinoma by AJCC v7 Stage 10 50771 -NCIT:C88049 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v7 11 50772 -NCIT:C88050 Stage I Intrahepatic Cholangiocarcinoma AJCC v7 11 50773 -NCIT:C88051 Stage II Intrahepatic Cholangiocarcinoma AJCC v7 11 50774 -NCIT:C88052 Stage III Intrahepatic Cholangiocarcinoma AJCC v7 11 50775 -NCIT:C88053 Stage IVA Intrahepatic Cholangiocarcinoma AJCC v7 11 50776 -NCIT:C88054 Stage IVB Intrahepatic Cholangiocarcinoma AJCC v7 11 50777 -NCIT:C134755 Intrahepatic Cholangiocarcinoma by AJCC v8 Stage 10 50778 -NCIT:C134756 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v8 11 50779 -NCIT:C134757 Stage I Intrahepatic Cholangiocarcinoma AJCC v8 11 50780 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 12 50781 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 12 50782 -NCIT:C134760 Stage II Intrahepatic Cholangiocarcinoma AJCC v8 11 50783 -NCIT:C134761 Stage III Intrahepatic Cholangiocarcinoma AJCC v8 11 50784 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 12 50785 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 12 50786 -NCIT:C134764 Stage IV Intrahepatic Cholangiocarcinoma AJCC v8 11 50787 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 10 50788 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 10 50789 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 10 50790 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 50791 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 50792 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 10 50793 -NCIT:C41617 Cholangiolocellular Carcinoma 10 50794 -NCIT:C41618 Mucin-Producing Intrahepatic Cholangiocarcinoma 10 50795 -NCIT:C41619 Signet Ring Cell Intrahepatic Cholangiocarcinoma 10 50796 -NCIT:C41620 Sarcomatoid Intrahepatic Cholangiocarcinoma 10 50797 -NCIT:C43848 Clear Cell Intrahepatic Cholangiocarcinoma 10 50798 -NCIT:C96804 Large Duct Intrahepatic Cholangiocarcinoma 10 50799 -NCIT:C96805 Small Duct Intrahepatic Cholangiocarcinoma 10 50800 -NCIT:C96949 Intrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 10 50801 -NCIT:C36077 Hilar Cholangiocarcinoma 9 50802 -NCIT:C134742 Hilar Cholangiocarcinoma by AJCC v7 Stage 10 50803 -NCIT:C88058 Stage 0 Hilar Cholangiocarcinoma AJCC v7 11 50804 -NCIT:C88059 Stage I Hilar Cholangiocarcinoma AJCC v7 11 50805 -NCIT:C88060 Stage II Hilar Cholangiocarcinoma AJCC v7 11 50806 -NCIT:C88061 Stage IIIA Hilar Cholangiocarcinoma AJCC v7 11 50807 -NCIT:C88062 Stage IIIB Hilar Cholangiocarcinoma AJCC v7 11 50808 -NCIT:C88063 Stage IVA Hilar Cholangiocarcinoma AJCC v7 11 50809 -NCIT:C88064 Stage IVB Hilar Cholangiocarcinoma AJCC v7 11 50810 -NCIT:C134743 Hilar Cholangiocarcinoma by AJCC v8 Stage 10 50811 -NCIT:C134744 Stage 0 Hilar Cholangiocarcinoma AJCC v8 11 50812 -NCIT:C134745 Stage I Hilar Cholangiocarcinoma AJCC v8 11 50813 -NCIT:C134746 Stage II Hilar Cholangiocarcinoma AJCC v8 11 50814 -NCIT:C134747 Stage III Hilar Cholangiocarcinoma AJCC v8 11 50815 -NCIT:C134748 Stage IIIA Hilar Cholangiocarcinoma AJCC v8 12 50816 -NCIT:C134749 Stage IIIB Hilar Cholangiocarcinoma AJCC v8 12 50817 -NCIT:C134750 Stage IIIC Hilar Cholangiocarcinoma AJCC v8 12 50818 -NCIT:C134751 Stage IV Hilar Cholangiocarcinoma AJCC v8 11 50819 -NCIT:C134752 Stage IVA Hilar Cholangiocarcinoma AJCC v8 12 50820 -NCIT:C134753 Stage IVB Hilar Cholangiocarcinoma AJCC v8 12 50821 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 10 50822 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 10 50823 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 50824 -NCIT:C7976 Distal Bile Duct Adenocarcinoma 9 50825 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 10 50826 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 10 50827 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 50828 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 50829 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 10 50830 -NCIT:C8265 Adult Cholangiocarcinoma 9 50831 -NCIT:C7975 Extrahepatic Bile Duct Adenocarcinoma 8 50832 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 9 50833 -NCIT:C5775 Extrahepatic Bile Duct Clear Cell Adenocarcinoma 9 50834 -NCIT:C5776 Extrahepatic Bile Duct Signet Ring Cell Carcinoma 9 50835 -NCIT:C5846 Extrahepatic Bile Duct Mucinous Adenocarcinoma 9 50836 -NCIT:C7976 Distal Bile Duct Adenocarcinoma 9 50837 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 10 50838 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 10 50839 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 50840 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 50841 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 10 50842 -NCIT:C96936 Extrahepatic Bile Duct Adenocarcinoma, Biliary Type 9 50843 -NCIT:C96937 Extrahepatic Bile Duct Adenocarcinoma, Gastric Foveolar Type 9 50844 -NCIT:C96938 Extrahepatic Bile Duct Adenocarcinoma, Intestinal Type 9 50845 -NCIT:C96946 Extrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 9 50846 -NCIT:C96948 Extrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 9 50847 -NCIT:C96810 Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 8 50848 -NCIT:C96948 Extrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 9 50849 -NCIT:C96949 Intrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 9 50850 -NCIT:C3860 Extrahepatic Bile Duct Carcinoma 7 50851 -NCIT:C175437 Refractory Extrahepatic Bile Duct Carcinoma 8 50852 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 9 50853 -NCIT:C185071 Metastatic Extrahepatic Bile Duct Carcinoma 8 50854 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 9 50855 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 10 50856 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 50857 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 10 50858 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 9 50859 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 50860 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 9 50861 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 10 50862 -NCIT:C5777 Extrahepatic Bile Duct Squamous Cell Carcinoma 8 50863 -NCIT:C5778 Extrahepatic Bile Duct Adenosquamous Carcinoma 8 50864 -NCIT:C5780 Extrahepatic Bile Duct Undifferentiated Carcinoma 8 50865 -NCIT:C5862 Extrahepatic Bile Duct Mucoepidermoid Carcinoma 8 50866 -NCIT:C7109 Distal Bile Duct Carcinoma 8 50867 -NCIT:C134810 Distal Bile Duct Cancer by AJCC v7 Stage 9 50868 -NCIT:C88089 Stage 0 Distal Bile Duct Cancer AJCC v7 10 50869 -NCIT:C88090 Stage IA Distal Bile Duct Cancer AJCC v7 10 50870 -NCIT:C88091 Stage IB Distal Bile Duct Cancer AJCC v7 10 50871 -NCIT:C88092 Stage IIA Distal Bile Duct Cancer AJCC v7 10 50872 -NCIT:C88093 Stage IIB Distal Bile Duct Cancer AJCC v7 10 50873 -NCIT:C88094 Stage III Distal Bile Duct Cancer AJCC v7 10 50874 -NCIT:C88095 Stage IV Distal Bile Duct Cancer AJCC v7 10 50875 -NCIT:C134811 Distal Bile Duct Cancer by AJCC v8 Stage 9 50876 -NCIT:C134812 Stage 0 Distal Bile Duct Cancer AJCC v8 10 50877 -NCIT:C134813 Stage I Distal Bile Duct Cancer AJCC v8 10 50878 -NCIT:C134814 Stage II Distal Bile Duct Cancer AJCC v8 10 50879 -NCIT:C134815 Stage IIA Distal Bile Duct Cancer AJCC v8 11 50880 -NCIT:C134816 Stage IIB Distal Bile Duct Cancer AJCC v8 11 50881 -NCIT:C134817 Stage III Distal Bile Duct Cancer AJCC v8 10 50882 -NCIT:C134818 Stage IIIA Distal Bile Duct Cancer AJCC v8 11 50883 -NCIT:C134819 Stage IIIB Distal Bile Duct Cancer AJCC v8 11 50884 -NCIT:C134820 Stage IV Distal Bile Duct Cancer AJCC v8 10 50885 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 9 50886 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 10 50887 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 50888 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 10 50889 -NCIT:C7976 Distal Bile Duct Adenocarcinoma 9 50890 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 10 50891 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 10 50892 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 50893 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 50894 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 10 50895 -NCIT:C7891 Localized Extrahepatic Bile Duct Carcinoma 8 50896 -NCIT:C7892 Unresectable Extrahepatic Bile Duct Carcinoma 8 50897 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 9 50898 -NCIT:C7893 Recurrent Extrahepatic Bile Duct Carcinoma 8 50899 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 9 50900 -NCIT:C7975 Extrahepatic Bile Duct Adenocarcinoma 8 50901 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 9 50902 -NCIT:C5775 Extrahepatic Bile Duct Clear Cell Adenocarcinoma 9 50903 -NCIT:C5776 Extrahepatic Bile Duct Signet Ring Cell Carcinoma 9 50904 -NCIT:C5846 Extrahepatic Bile Duct Mucinous Adenocarcinoma 9 50905 -NCIT:C7976 Distal Bile Duct Adenocarcinoma 9 50906 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 10 50907 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 10 50908 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 50909 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 50910 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 10 50911 -NCIT:C96936 Extrahepatic Bile Duct Adenocarcinoma, Biliary Type 9 50912 -NCIT:C96937 Extrahepatic Bile Duct Adenocarcinoma, Gastric Foveolar Type 9 50913 -NCIT:C96938 Extrahepatic Bile Duct Adenocarcinoma, Intestinal Type 9 50914 -NCIT:C96946 Extrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 9 50915 -NCIT:C96948 Extrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 9 50916 -NCIT:C8640 Resectable Extrahepatic Bile Duct Carcinoma 8 50917 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 9 50918 -NCIT:C96939 Extrahepatic Bile Duct Carcinosarcoma 8 50919 -NCIT:C96956 Extrahepatic Bile Duct Neuroendocrine Carcinoma 8 50920 -NCIT:C5845 Extrahepatic Bile Duct Small Cell Neuroendocrine Carcinoma 9 50921 -NCIT:C96958 Extrahepatic Bile Duct Large Cell Neuroendocrine Carcinoma 9 50922 -NCIT:C96959 Extrahepatic Bile Duct Mixed Adenoneuroendocrine Carcinoma 8 50923 -NCIT:C3844 Gallbladder Carcinoma 6 50924 -NCIT:C134660 Gallbladder Cancer by AJCC v8 Stage 7 50925 -NCIT:C134663 Stage 0 Gallbladder Cancer AJCC v8 8 50926 -NCIT:C134665 Stage I Gallbladder Cancer AJCC v8 8 50927 -NCIT:C134667 Stage II Gallbladder Cancer AJCC v8 8 50928 -NCIT:C134670 Stage IIA Gallbladder Cancer AJCC v8 9 50929 -NCIT:C134671 Stage IIB Gallbladder Cancer AJCC v8 9 50930 -NCIT:C134672 Stage III Gallbladder Cancer AJCC v8 8 50931 -NCIT:C134673 Stage IIIA Gallbladder Cancer AJCC v8 9 50932 -NCIT:C134674 Stage IIIB Gallbladder Cancer AJCC v8 9 50933 -NCIT:C134675 Stage IV Gallbladder Cancer AJCC v8 8 50934 -NCIT:C134676 Stage IVA Gallbladder Cancer AJCC v8 9 50935 -NCIT:C134678 Stage IVB Gallbladder Cancer AJCC v8 9 50936 -NCIT:C162753 Refractory Gallbladder Carcinoma 7 50937 -NCIT:C162754 Metastatic Gallbladder Carcinoma 7 50938 -NCIT:C162755 Advanced Gallbladder Carcinoma 8 50939 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 8 50940 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 9 50941 -NCIT:C175214 Incidental Gallbladder Carcinoma 7 50942 -NCIT:C4008 Recurrent Gallbladder Carcinoma 7 50943 -NCIT:C7356 Gallbladder Adenosquamous Carcinoma 7 50944 -NCIT:C7649 Localized Gallbladder Carcinoma 7 50945 -NCIT:C7890 Unresectable Gallbladder Carcinoma 7 50946 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 8 50947 -NCIT:C189064 Unresectable Gallbladder Adenocarcinoma 8 50948 -NCIT:C90512 Gallbladder Cancer by AJCC v6 Stage 7 50949 -NCIT:C4439 Stage 0 Gallbladder Cancer AJCC v6 and v7 8 50950 -NCIT:C5737 Stage I Gallbladder Cancer AJCC v6 8 50951 -NCIT:C5738 Stage II Gallbladder Cancer AJCC v6 8 50952 -NCIT:C5739 Stage III Gallbladder Cancer AJCC v6 8 50953 -NCIT:C5740 Stage IV Gallbladder Cancer AJCC v6 8 50954 -NCIT:C91229 Gallbladder Cancer by AJCC v7 Stage 7 50955 -NCIT:C4439 Stage 0 Gallbladder Cancer AJCC v6 and v7 8 50956 -NCIT:C90216 Stage I Gallbladder Cancer AJCC v7 8 50957 -NCIT:C90217 Stage II Gallbladder Cancer AJCC v7 8 50958 -NCIT:C90218 Stage III Gallbladder Cancer AJCC v7 8 50959 -NCIT:C88056 Stage IIIA Gallbladder Cancer AJCC v7 9 50960 -NCIT:C88057 Stage IIIB Gallbladder Cancer AJCC v7 9 50961 -NCIT:C90219 Stage IV Gallbladder Cancer AJCC v7 8 50962 -NCIT:C5741 Stage IVA Gallbladder Cancer AJCC v7 9 50963 -NCIT:C5742 Stage IVB Gallbladder Cancer AJCC v7 9 50964 -NCIT:C9166 Gallbladder Adenocarcinoma 7 50965 -NCIT:C189064 Unresectable Gallbladder Adenocarcinoma 8 50966 -NCIT:C43604 Gallbladder Adenocarcinoma, Intestinal-Type 8 50967 -NCIT:C43605 Gallbladder Clear Cell Adenocarcinoma 8 50968 -NCIT:C5743 Gallbladder Intracholecystic Papillary Neoplasm with an Associated Invasive Carcinoma 8 50969 -NCIT:C5744 Gallbladder Mucinous Adenocarcinoma 8 50970 -NCIT:C5745 Gallbladder Signet Ring Cell Carcinoma 8 50971 -NCIT:C9169 Gallbladder Adenocarcinoma with Squamous Metaplasia 8 50972 -NCIT:C96887 Gallbladder Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 8 50973 -NCIT:C96890 Gallbladder Hepatoid Adenocarcinoma 8 50974 -NCIT:C96891 Gallbladder Cribriform Carcinoma 8 50975 -NCIT:C96915 Gallbladder Adenocarcinoma, Biliary Type 8 50976 -NCIT:C96916 Gallbladder Adenocarcinoma, Gastric Foveolar Type 8 50977 -NCIT:C9167 Gallbladder Undifferentiated Carcinoma 7 50978 -NCIT:C5838 Gallbladder Undifferentiated Carcinoma, Spindle and Giant Cell Type 8 50979 -NCIT:C9170 Gallbladder Squamous Cell Carcinoma 7 50980 -NCIT:C96888 Gallbladder Carcinosarcoma 7 50981 -NCIT:C96919 Gallbladder Neuroendocrine Carcinoma 7 50982 -NCIT:C6763 Gallbladder Small Cell Neuroendocrine Carcinoma 8 50983 -NCIT:C96921 Gallbladder Large Cell Neuroendocrine Carcinoma 8 50984 -NCIT:C96927 Gallbladder Mixed Adenoneuroendocrine Carcinoma 7 50985 -NCIT:C96928 Gallbladder Goblet Cell Carcinoid 8 50986 -NCIT:C67493 High-Grade Biliary Intraepithelial Neoplasia 6 50987 -NCIT:C190593 Malignant Liver Neoplasm 5 50988 -NCIT:C34803 Primary Malignant Liver Neoplasm 6 50989 -NCIT:C185042 Liver Plasmacytoma 7 50990 -NCIT:C4437 Liver Sarcoma 7 50991 -NCIT:C27096 Liver Embryonal Sarcoma 8 50992 -NCIT:C189934 Childhood Liver Embryonal Sarcoma 9 50993 -NCIT:C189935 Adult Liver Embryonal Sarcoma 9 50994 -NCIT:C4438 Liver Angiosarcoma 8 50995 -NCIT:C190020 Childhood Liver Angiosarcoma 9 50996 -NCIT:C5756 Liver Leiomyosarcoma 8 50997 -NCIT:C5832 Liver Fibrosarcoma 8 50998 -NCIT:C5833 Liver Extraskeletal Osteosarcoma 8 50999 -NCIT:C5834 Liver Rhabdomyosarcoma 8 51000 -NCIT:C96844 Liver Kaposi Sarcoma 8 51001 -NCIT:C96845 Liver Synovial Sarcoma 8 51002 -NCIT:C4949 Liver Lymphoma 7 51003 -NCIT:C5766 Liver Non-Hodgkin Lymphoma 8 51004 -NCIT:C5768 Liver Mucosa-Associated Lymphoid Tissue Lymphoma 9 51005 -NCIT:C8459 Hepatosplenic T-Cell Lymphoma 9 51006 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 10 51007 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 10 51008 -NCIT:C96843 Liver Diffuse Large B-Cell Lymphoma 9 51009 -NCIT:C7927 Liver and Intrahepatic Bile Duct Carcinoma 7 51010 -NCIT:C118630 Liver Adenosquamous Carcinoma 8 51011 -NCIT:C134604 Intrahepatic Bile Duct Cancer by AJCC v8 Stage 8 51012 -NCIT:C134609 Stage 0 Intrahepatic Bile Duct Cancer AJCC v8 9 51013 -NCIT:C134756 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v8 10 51014 -NCIT:C134610 Stage I Intrahepatic Bile Duct Cancer AJCC v8 9 51015 -NCIT:C134611 Stage IA Intrahepatic Bile Duct Cancer AJCC v8 10 51016 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 11 51017 -NCIT:C134612 Stage IB Intrahepatic Bile Duct Cancer AJCC v8 10 51018 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 11 51019 -NCIT:C134757 Stage I Intrahepatic Cholangiocarcinoma AJCC v8 10 51020 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 11 51021 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 11 51022 -NCIT:C134614 Stage II Intrahepatic Bile Duct Cancer AJCC v8 9 51023 -NCIT:C134760 Stage II Intrahepatic Cholangiocarcinoma AJCC v8 10 51024 -NCIT:C134615 Stage III Intrahepatic Bile Duct Cancer AJCC v8 9 51025 -NCIT:C134616 Stage IIIA Intrahepatic Bile Duct Cancer AJCC v8 10 51026 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 11 51027 -NCIT:C134618 Stage IIIB Intrahepatic Bile Duct Cancer AJCC v8 10 51028 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 11 51029 -NCIT:C134761 Stage III Intrahepatic Cholangiocarcinoma AJCC v8 10 51030 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 11 51031 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 11 51032 -NCIT:C134619 Stage IV Intrahepatic Bile Duct Cancer AJCC v8 9 51033 -NCIT:C134764 Stage IV Intrahepatic Cholangiocarcinoma AJCC v8 10 51034 -NCIT:C134755 Intrahepatic Cholangiocarcinoma by AJCC v8 Stage 9 51035 -NCIT:C134756 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v8 10 51036 -NCIT:C134757 Stage I Intrahepatic Cholangiocarcinoma AJCC v8 10 51037 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 11 51038 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 11 51039 -NCIT:C134760 Stage II Intrahepatic Cholangiocarcinoma AJCC v8 10 51040 -NCIT:C134761 Stage III Intrahepatic Cholangiocarcinoma AJCC v8 10 51041 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 11 51042 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 11 51043 -NCIT:C134764 Stage IV Intrahepatic Cholangiocarcinoma AJCC v8 10 51044 -NCIT:C153352 Refractory Liver Carcinoma 8 51045 -NCIT:C162450 Refractory Hepatocellular Carcinoma 9 51046 -NCIT:C188887 Refractory Fibrolamellar Carcinoma 10 51047 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 9 51048 -NCIT:C154088 Metastatic Liver Carcinoma 8 51049 -NCIT:C154091 Metastatic Hepatocellular Carcinoma 9 51050 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 10 51051 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 11 51052 -NCIT:C167336 Advanced Hepatocellular Carcinoma 10 51053 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 11 51054 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 11 51055 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 10 51056 -NCIT:C171298 Locally Advanced Liver Carcinoma 9 51057 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 10 51058 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 10 51059 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 9 51060 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 10 51061 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 10 51062 -NCIT:C165171 Unresectable Liver and Intrahepatic Bile Duct Carcinoma 8 51063 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 9 51064 -NCIT:C27345 Unresectable Hepatocellular Carcinoma 9 51065 -NCIT:C162602 Unresectable Fibrolamellar Carcinoma 10 51066 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 10 51067 -NCIT:C7878 Localized Unresectable Adult Liver Carcinoma 9 51068 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 10 51069 -NCIT:C165293 Resectable Liver and Intrahepatic Bile Duct Carcinoma 8 51070 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 9 51071 -NCIT:C7691 Resectable Hepatocellular Carcinoma 9 51072 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 10 51073 -NCIT:C7877 Localized Resectable Adult Liver Carcinoma 9 51074 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 10 51075 -NCIT:C172718 Liver Mixed Adenoneuroendocrine Carcinoma 8 51076 -NCIT:C3099 Hepatocellular Carcinoma 8 51077 -NCIT:C115132 Hepatocellular Carcinoma by BCLC Stage 9 51078 -NCIT:C115133 BCLC Stage 0 Hepatocellular Carcinoma 10 51079 -NCIT:C115139 BCLC Stage 0 Adult Hepatocellular Carcinoma 11 51080 -NCIT:C115135 BCLC Stage A Hepatocellular Carcinoma 10 51081 -NCIT:C115140 BCLC Stage A Adult Hepatocellular Carcinoma 11 51082 -NCIT:C115136 BCLC Stage B Hepatocellular Carcinoma 10 51083 -NCIT:C115141 BCLC Stage B Adult Hepatocellular Carcinoma 11 51084 -NCIT:C115137 BCLC Stage C Hepatocellular Carcinoma 10 51085 -NCIT:C115143 BCLC Stage C Adult Hepatocellular Carcinoma 11 51086 -NCIT:C115138 BCLC Stage D Hepatocellular Carcinoma 10 51087 -NCIT:C115144 BCLC Stage D Adult Hepatocellular Carcinoma 11 51088 -NCIT:C134515 Hepatocellular Carcinoma by AJCC v8 Stage 9 51089 -NCIT:C134516 Stage I Hepatocellular Carcinoma AJCC v8 10 51090 -NCIT:C134517 Stage IA Hepatocellular Carcinoma AJCC v8 11 51091 -NCIT:C134518 Stage IB Hepatocellular Carcinoma AJCC v8 11 51092 -NCIT:C134519 Stage II Hepatocellular Carcinoma AJCC v8 10 51093 -NCIT:C134520 Stage III Hepatocellular Carcinoma AJCC v8 10 51094 -NCIT:C134521 Stage IIIA Hepatocellular Carcinoma AJCC v8 11 51095 -NCIT:C134522 Stage IIIB Hepatocellular Carcinoma AJCC v8 11 51096 -NCIT:C134523 Stage IV Hepatocellular Carcinoma AJCC v8 10 51097 -NCIT:C134524 Stage IVA Hepatocellular Carcinoma AJCC v8 11 51098 -NCIT:C134525 Stage IVB Hepatocellular Carcinoma AJCC v8 11 51099 -NCIT:C154091 Metastatic Hepatocellular Carcinoma 9 51100 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 10 51101 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 11 51102 -NCIT:C167336 Advanced Hepatocellular Carcinoma 10 51103 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 11 51104 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 11 51105 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 10 51106 -NCIT:C162450 Refractory Hepatocellular Carcinoma 9 51107 -NCIT:C188887 Refractory Fibrolamellar Carcinoma 10 51108 -NCIT:C172709 Steatohepatitic Hepatocellular Carcinoma 9 51109 -NCIT:C27924 Alcohol-Related Hepatocellular Carcinoma 10 51110 -NCIT:C172710 Macrotrabecular Massive Hepatocellular Carcinoma 9 51111 -NCIT:C172712 Chromophobe Hepatocellular Carcinoma 9 51112 -NCIT:C172713 Neutrophil-Rich Hepatocellular Carcinoma 9 51113 -NCIT:C172714 Small Hepatocellular Carcinoma 9 51114 -NCIT:C172716 Small Progressed Hepatocellular Carcinoma 10 51115 -NCIT:C96772 Early Hepatocellular Carcinoma 10 51116 -NCIT:C27345 Unresectable Hepatocellular Carcinoma 9 51117 -NCIT:C162602 Unresectable Fibrolamellar Carcinoma 10 51118 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 10 51119 -NCIT:C27388 Scirrhous Hepatocellular Carcinoma 9 51120 -NCIT:C27635 Transplant-Related Hepatocellular Carcinoma 9 51121 -NCIT:C27686 Hepatitis Virus-Related Hepatocellular Carcinoma 9 51122 -NCIT:C27687 Hepatitis B Virus-Related Hepatocellular Carcinoma 10 51123 -NCIT:C27688 Hepatitis C Virus-Related Hepatocellular Carcinoma 10 51124 -NCIT:C27922 Aflatoxins-Related Hepatocellular Carcinoma 9 51125 -NCIT:C4131 Fibrolamellar Carcinoma 9 51126 -NCIT:C114992 Adult Fibrolamellar Carcinoma 10 51127 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 10 51128 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 11 51129 -NCIT:C154082 Recurrent Fibrolamellar Carcinoma 10 51130 -NCIT:C162602 Unresectable Fibrolamellar Carcinoma 10 51131 -NCIT:C188887 Refractory Fibrolamellar Carcinoma 10 51132 -NCIT:C189932 Childhood Fibrolamellar Carcinoma 10 51133 -NCIT:C43625 Pleomorphic Hepatocellular Carcinoma 9 51134 -NCIT:C114993 Adult Pleomorphic Hepatocellular Carcinoma 10 51135 -NCIT:C43627 Sarcomatoid Hepatocellular Carcinoma 9 51136 -NCIT:C5754 Clear Cell Hepatocellular Carcinoma 9 51137 -NCIT:C7691 Resectable Hepatocellular Carcinoma 9 51138 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 10 51139 -NCIT:C7955 Childhood Hepatocellular Carcinoma 9 51140 -NCIT:C189932 Childhood Fibrolamellar Carcinoma 10 51141 -NCIT:C5708 Stage III Childhood Hepatocellular Carcinoma AJCC v7 10 51142 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 10 51143 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 10 51144 -NCIT:C7838 Stage IV Childhood Hepatocellular Carcinoma AJCC v7 10 51145 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 10 51146 -NCIT:C7956 Adult Hepatocellular Carcinoma 9 51147 -NCIT:C114992 Adult Fibrolamellar Carcinoma 10 51148 -NCIT:C114993 Adult Pleomorphic Hepatocellular Carcinoma 10 51149 -NCIT:C115139 BCLC Stage 0 Adult Hepatocellular Carcinoma 10 51150 -NCIT:C115140 BCLC Stage A Adult Hepatocellular Carcinoma 10 51151 -NCIT:C115141 BCLC Stage B Adult Hepatocellular Carcinoma 10 51152 -NCIT:C115143 BCLC Stage C Adult Hepatocellular Carcinoma 10 51153 -NCIT:C115144 BCLC Stage D Adult Hepatocellular Carcinoma 10 51154 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 10 51155 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 10 51156 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 10 51157 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 10 51158 -NCIT:C90510 Hepatocellular Carcinoma by AJCC v6 Stage 9 51159 -NCIT:C5758 Stage I Hepatocellular Carcinoma AJCC v6 and v7 10 51160 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 11 51161 -NCIT:C5759 Stage II Hepatocellular Carcinoma AJCC v6 and v7 10 51162 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 11 51163 -NCIT:C5760 Stage III Hepatocellular Carcinoma AJCC v6 10 51164 -NCIT:C5763 Stage IV Hepatocellular Carcinoma AJCC v6 10 51165 -NCIT:C91228 Hepatocellular Carcinoma by AJCC v7 Stage 9 51166 -NCIT:C5758 Stage I Hepatocellular Carcinoma AJCC v6 and v7 10 51167 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 11 51168 -NCIT:C5759 Stage II Hepatocellular Carcinoma AJCC v6 and v7 10 51169 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 11 51170 -NCIT:C90180 Stage III Hepatocellular Carcinoma AJCC v7 10 51171 -NCIT:C5708 Stage III Childhood Hepatocellular Carcinoma AJCC v7 11 51172 -NCIT:C5761 Stage IIIA Hepatocellular Carcinoma AJCC v7 11 51173 -NCIT:C5762 Stage IIIB Hepatocellular Carcinoma AJCC v7 11 51174 -NCIT:C88044 Stage IIIC Hepatocellular Carcinoma AJCC v7 11 51175 -NCIT:C90181 Stage IV Hepatocellular Carcinoma AJCC v7 10 51176 -NCIT:C5764 Stage IVA Hepatocellular Carcinoma AJCC v7 11 51177 -NCIT:C5765 Stage IVB Hepatocellular Carcinoma AJCC v7 11 51178 -NCIT:C7838 Stage IV Childhood Hepatocellular Carcinoma AJCC v7 11 51179 -NCIT:C9264 Recurrent Hepatocellular Carcinoma 9 51180 -NCIT:C154082 Recurrent Fibrolamellar Carcinoma 10 51181 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 10 51182 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 10 51183 -NCIT:C96788 Lymphocyte-Rich Hepatocellular Carcinoma 9 51184 -NCIT:C96789 Well Differentiated Hepatocellular Carcinoma 9 51185 -NCIT:C96790 Moderately Differentiated Hepatocellular Carcinoma 9 51186 -NCIT:C96791 Poorly Differentiated Hepatocellular Carcinoma 9 51187 -NCIT:C35417 Intrahepatic Cholangiocarcinoma 8 51188 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 9 51189 -NCIT:C134514 Intrahepatic Cholangiocarcinoma by AJCC v7 Stage 9 51190 -NCIT:C88049 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v7 10 51191 -NCIT:C88050 Stage I Intrahepatic Cholangiocarcinoma AJCC v7 10 51192 -NCIT:C88051 Stage II Intrahepatic Cholangiocarcinoma AJCC v7 10 51193 -NCIT:C88052 Stage III Intrahepatic Cholangiocarcinoma AJCC v7 10 51194 -NCIT:C88053 Stage IVA Intrahepatic Cholangiocarcinoma AJCC v7 10 51195 -NCIT:C88054 Stage IVB Intrahepatic Cholangiocarcinoma AJCC v7 10 51196 -NCIT:C134755 Intrahepatic Cholangiocarcinoma by AJCC v8 Stage 9 51197 -NCIT:C134756 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v8 10 51198 -NCIT:C134757 Stage I Intrahepatic Cholangiocarcinoma AJCC v8 10 51199 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 11 51200 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 11 51201 -NCIT:C134760 Stage II Intrahepatic Cholangiocarcinoma AJCC v8 10 51202 -NCIT:C134761 Stage III Intrahepatic Cholangiocarcinoma AJCC v8 10 51203 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 11 51204 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 11 51205 -NCIT:C134764 Stage IV Intrahepatic Cholangiocarcinoma AJCC v8 10 51206 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 9 51207 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 9 51208 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 9 51209 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 10 51210 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 10 51211 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 9 51212 -NCIT:C41617 Cholangiolocellular Carcinoma 9 51213 -NCIT:C41618 Mucin-Producing Intrahepatic Cholangiocarcinoma 9 51214 -NCIT:C41619 Signet Ring Cell Intrahepatic Cholangiocarcinoma 9 51215 -NCIT:C41620 Sarcomatoid Intrahepatic Cholangiocarcinoma 9 51216 -NCIT:C43848 Clear Cell Intrahepatic Cholangiocarcinoma 9 51217 -NCIT:C96804 Large Duct Intrahepatic Cholangiocarcinoma 9 51218 -NCIT:C96805 Small Duct Intrahepatic Cholangiocarcinoma 9 51219 -NCIT:C96949 Intrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 9 51220 -NCIT:C3828 Combined Hepatocellular Carcinoma and Cholangiocarcinoma 8 51221 -NCIT:C114987 Adult Combined Hepatocellular Carcinoma and Cholangiocarcinoma 9 51222 -NCIT:C7110 Recurrent Liver Carcinoma 8 51223 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 9 51224 -NCIT:C7880 Recurrent Adult Liver Carcinoma 9 51225 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 10 51226 -NCIT:C9264 Recurrent Hepatocellular Carcinoma 9 51227 -NCIT:C154082 Recurrent Fibrolamellar Carcinoma 10 51228 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 10 51229 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 10 51230 -NCIT:C7116 Stage I Liver Cancer 8 51231 -NCIT:C134516 Stage I Hepatocellular Carcinoma AJCC v8 9 51232 -NCIT:C134517 Stage IA Hepatocellular Carcinoma AJCC v8 10 51233 -NCIT:C134518 Stage IB Hepatocellular Carcinoma AJCC v8 10 51234 -NCIT:C134610 Stage I Intrahepatic Bile Duct Cancer AJCC v8 9 51235 -NCIT:C134611 Stage IA Intrahepatic Bile Duct Cancer AJCC v8 10 51236 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 11 51237 -NCIT:C134612 Stage IB Intrahepatic Bile Duct Cancer AJCC v8 10 51238 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 11 51239 -NCIT:C134757 Stage I Intrahepatic Cholangiocarcinoma AJCC v8 10 51240 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 11 51241 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 11 51242 -NCIT:C5758 Stage I Hepatocellular Carcinoma AJCC v6 and v7 9 51243 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 10 51244 -NCIT:C88050 Stage I Intrahepatic Cholangiocarcinoma AJCC v7 9 51245 -NCIT:C94775 Stage I Adult Liver Cancer AJCC v7 9 51246 -NCIT:C7117 Stage II Liver Cancer 8 51247 -NCIT:C134519 Stage II Hepatocellular Carcinoma AJCC v8 9 51248 -NCIT:C134614 Stage II Intrahepatic Bile Duct Cancer AJCC v8 9 51249 -NCIT:C134760 Stage II Intrahepatic Cholangiocarcinoma AJCC v8 10 51250 -NCIT:C5759 Stage II Hepatocellular Carcinoma AJCC v6 and v7 9 51251 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 10 51252 -NCIT:C88051 Stage II Intrahepatic Cholangiocarcinoma AJCC v7 9 51253 -NCIT:C94776 Stage II Adult Liver Cancer AJCC v7 9 51254 -NCIT:C7118 Stage III Liver Cancer 8 51255 -NCIT:C134520 Stage III Hepatocellular Carcinoma AJCC v8 9 51256 -NCIT:C134521 Stage IIIA Hepatocellular Carcinoma AJCC v8 10 51257 -NCIT:C134522 Stage IIIB Hepatocellular Carcinoma AJCC v8 10 51258 -NCIT:C134615 Stage III Intrahepatic Bile Duct Cancer AJCC v8 9 51259 -NCIT:C134616 Stage IIIA Intrahepatic Bile Duct Cancer AJCC v8 10 51260 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 11 51261 -NCIT:C134618 Stage IIIB Intrahepatic Bile Duct Cancer AJCC v8 10 51262 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 11 51263 -NCIT:C134761 Stage III Intrahepatic Cholangiocarcinoma AJCC v8 10 51264 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 11 51265 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 11 51266 -NCIT:C5760 Stage III Hepatocellular Carcinoma AJCC v6 9 51267 -NCIT:C88052 Stage III Intrahepatic Cholangiocarcinoma AJCC v7 9 51268 -NCIT:C90180 Stage III Hepatocellular Carcinoma AJCC v7 9 51269 -NCIT:C5708 Stage III Childhood Hepatocellular Carcinoma AJCC v7 10 51270 -NCIT:C5761 Stage IIIA Hepatocellular Carcinoma AJCC v7 10 51271 -NCIT:C5762 Stage IIIB Hepatocellular Carcinoma AJCC v7 10 51272 -NCIT:C88044 Stage IIIC Hepatocellular Carcinoma AJCC v7 10 51273 -NCIT:C94777 Stage III Adult Liver Cancer AJCC v7 9 51274 -NCIT:C94779 Stage IIIA Adult Liver Cancer AJCC v7 10 51275 -NCIT:C94780 Stage IIIB Adult Liver Cancer AJCC v7 10 51276 -NCIT:C94781 Stage IIIC Adult Liver Cancer AJCC v7 10 51277 -NCIT:C7121 Stage IV Liver Cancer 8 51278 -NCIT:C134523 Stage IV Hepatocellular Carcinoma AJCC v8 9 51279 -NCIT:C134524 Stage IVA Hepatocellular Carcinoma AJCC v8 10 51280 -NCIT:C134525 Stage IVB Hepatocellular Carcinoma AJCC v8 10 51281 -NCIT:C134619 Stage IV Intrahepatic Bile Duct Cancer AJCC v8 9 51282 -NCIT:C134764 Stage IV Intrahepatic Cholangiocarcinoma AJCC v8 10 51283 -NCIT:C5763 Stage IV Hepatocellular Carcinoma AJCC v6 9 51284 -NCIT:C7122 Stage IVA Liver Cancer 9 51285 -NCIT:C134524 Stage IVA Hepatocellular Carcinoma AJCC v8 10 51286 -NCIT:C5764 Stage IVA Hepatocellular Carcinoma AJCC v7 10 51287 -NCIT:C88053 Stage IVA Intrahepatic Cholangiocarcinoma AJCC v7 10 51288 -NCIT:C7123 Stage IVB Liver Cancer 9 51289 -NCIT:C134525 Stage IVB Hepatocellular Carcinoma AJCC v8 10 51290 -NCIT:C5765 Stage IVB Hepatocellular Carcinoma AJCC v7 10 51291 -NCIT:C88054 Stage IVB Intrahepatic Cholangiocarcinoma AJCC v7 10 51292 -NCIT:C90181 Stage IV Hepatocellular Carcinoma AJCC v7 9 51293 -NCIT:C5764 Stage IVA Hepatocellular Carcinoma AJCC v7 10 51294 -NCIT:C5765 Stage IVB Hepatocellular Carcinoma AJCC v7 10 51295 -NCIT:C7838 Stage IV Childhood Hepatocellular Carcinoma AJCC v7 10 51296 -NCIT:C94782 Stage IV Adult Liver Cancer AJCC v7 9 51297 -NCIT:C7711 Adult Liver Carcinoma 8 51298 -NCIT:C114987 Adult Combined Hepatocellular Carcinoma and Cholangiocarcinoma 9 51299 -NCIT:C7877 Localized Resectable Adult Liver Carcinoma 9 51300 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 10 51301 -NCIT:C7878 Localized Unresectable Adult Liver Carcinoma 9 51302 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 10 51303 -NCIT:C7880 Recurrent Adult Liver Carcinoma 9 51304 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 10 51305 -NCIT:C7956 Adult Hepatocellular Carcinoma 9 51306 -NCIT:C114992 Adult Fibrolamellar Carcinoma 10 51307 -NCIT:C114993 Adult Pleomorphic Hepatocellular Carcinoma 10 51308 -NCIT:C115139 BCLC Stage 0 Adult Hepatocellular Carcinoma 10 51309 -NCIT:C115140 BCLC Stage A Adult Hepatocellular Carcinoma 10 51310 -NCIT:C115141 BCLC Stage B Adult Hepatocellular Carcinoma 10 51311 -NCIT:C115143 BCLC Stage C Adult Hepatocellular Carcinoma 10 51312 -NCIT:C115144 BCLC Stage D Adult Hepatocellular Carcinoma 10 51313 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 10 51314 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 10 51315 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 10 51316 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 10 51317 -NCIT:C94775 Stage I Adult Liver Cancer AJCC v7 9 51318 -NCIT:C94776 Stage II Adult Liver Cancer AJCC v7 9 51319 -NCIT:C94777 Stage III Adult Liver Cancer AJCC v7 9 51320 -NCIT:C94779 Stage IIIA Adult Liver Cancer AJCC v7 10 51321 -NCIT:C94780 Stage IIIB Adult Liver Cancer AJCC v7 10 51322 -NCIT:C94781 Stage IIIC Adult Liver Cancer AJCC v7 10 51323 -NCIT:C94782 Stage IV Adult Liver Cancer AJCC v7 9 51324 -NCIT:C96787 Liver Neuroendocrine Carcinoma 8 51325 -NCIT:C172722 Liver Large Cell Neuroendocrine Carcinoma 9 51326 -NCIT:C172725 Liver Small Cell Neuroendocrine Carcinoma 9 51327 -NCIT:C96792 Liver Undifferentiated Carcinoma 8 51328 -NCIT:C96848 Liver Carcinosarcoma 8 51329 -NCIT:C96947 Intrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 8 51330 -NCIT:C96846 Liver Epithelioid Hemangioendothelioma 7 51331 -NCIT:C96847 Extrarenal Rhabdoid Tumor of the Liver 7 51332 -NCIT:C96851 Liver Yolk Sac Tumor 7 51333 -NCIT:C35648 Unresectable Malignant Liver Neoplasm 6 51334 -NCIT:C165171 Unresectable Liver and Intrahepatic Bile Duct Carcinoma 7 51335 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 8 51336 -NCIT:C27345 Unresectable Hepatocellular Carcinoma 8 51337 -NCIT:C162602 Unresectable Fibrolamellar Carcinoma 9 51338 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 9 51339 -NCIT:C7878 Localized Unresectable Adult Liver Carcinoma 8 51340 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 9 51341 -NCIT:C8641 Unresectable Hepatoblastoma 7 51342 -NCIT:C4758 Metastatic Malignant Neoplasm in the Liver 6 51343 -NCIT:C150130 Uveal Melanoma Metastatic in the Liver 7 51344 -NCIT:C185152 Extramedullary Disease in Plasma Cell Myeloma Involving the Liver 7 51345 -NCIT:C96767 Metastatic Carcinoma in the Liver 7 51346 -NCIT:C157366 Colorectal Carcinoma Metastatic in the Liver 8 51347 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 9 51348 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 9 51349 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 9 51350 -NCIT:C36302 Breast Carcinoma Metastatic in the Liver 8 51351 -NCIT:C36306 Lung Carcinoma Metastatic in the Liver 8 51352 -NCIT:C7115 Malignant Liver Non-Epithelial Neoplasm 6 51353 -NCIT:C185042 Liver Plasmacytoma 7 51354 -NCIT:C4437 Liver Sarcoma 7 51355 -NCIT:C27096 Liver Embryonal Sarcoma 8 51356 -NCIT:C189934 Childhood Liver Embryonal Sarcoma 9 51357 -NCIT:C189935 Adult Liver Embryonal Sarcoma 9 51358 -NCIT:C4438 Liver Angiosarcoma 8 51359 -NCIT:C190020 Childhood Liver Angiosarcoma 9 51360 -NCIT:C5756 Liver Leiomyosarcoma 8 51361 -NCIT:C5832 Liver Fibrosarcoma 8 51362 -NCIT:C5833 Liver Extraskeletal Osteosarcoma 8 51363 -NCIT:C5834 Liver Rhabdomyosarcoma 8 51364 -NCIT:C96844 Liver Kaposi Sarcoma 8 51365 -NCIT:C96845 Liver Synovial Sarcoma 8 51366 -NCIT:C4949 Liver Lymphoma 7 51367 -NCIT:C5766 Liver Non-Hodgkin Lymphoma 8 51368 -NCIT:C5768 Liver Mucosa-Associated Lymphoid Tissue Lymphoma 9 51369 -NCIT:C8459 Hepatosplenic T-Cell Lymphoma 9 51370 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 10 51371 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 10 51372 -NCIT:C96843 Liver Diffuse Large B-Cell Lymphoma 9 51373 -NCIT:C96846 Liver Epithelioid Hemangioendothelioma 7 51374 -NCIT:C96847 Extrarenal Rhabdoid Tumor of the Liver 7 51375 -NCIT:C96851 Liver Yolk Sac Tumor 7 51376 -NCIT:C7692 Resectable Malignant Liver Neoplasm 6 51377 -NCIT:C165293 Resectable Liver and Intrahepatic Bile Duct Carcinoma 7 51378 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 8 51379 -NCIT:C7691 Resectable Hepatocellular Carcinoma 8 51380 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 9 51381 -NCIT:C7877 Localized Resectable Adult Liver Carcinoma 8 51382 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 9 51383 -NCIT:C8642 Resectable Hepatoblastoma 7 51384 -NCIT:C7708 Childhood Malignant Liver Neoplasm 6 51385 -NCIT:C189934 Childhood Liver Embryonal Sarcoma 7 51386 -NCIT:C190020 Childhood Liver Angiosarcoma 7 51387 -NCIT:C3728 Hepatoblastoma 7 51388 -NCIT:C142854 Refractory Hepatoblastoma 8 51389 -NCIT:C161838 Hepatocellular Malignant Neoplasm, Not Otherwise Specified 8 51390 -NCIT:C189923 Epithelial Hepatoblastoma 8 51391 -NCIT:C189924 Epithelial Hepatoblastoma with Pleomorphic Pattern 9 51392 -NCIT:C7093 Hepatoblastoma with Pure Fetal Epithelial Differentiation 9 51393 -NCIT:C7094 Hepatoblastoma with Combined Fetal and Embryonal Epithelial Differentiation 9 51394 -NCIT:C7095 Macrotrabecular Hepatoblastoma 9 51395 -NCIT:C7096 Small Cell Undifferentiated Hepatoblastoma 9 51396 -NCIT:C189927 Hepatoblastoma by PRETEXT Stage 8 51397 -NCIT:C7139 PRETEXT Stage 1 Hepatoblastoma 9 51398 -NCIT:C7140 PRETEXT Stage 2 Hepatoblastoma 9 51399 -NCIT:C7141 PRETEXT Stage 3 Hepatoblastoma 9 51400 -NCIT:C7142 PRETEXT Stage 4 Hepatoblastoma 9 51401 -NCIT:C189929 Hepatoblastoma by Postsurgical Stage 8 51402 -NCIT:C7143 Postsurgical Stage IV Hepatoblastoma 9 51403 -NCIT:C7144 Postsurgical Stage III Hepatoblastoma 9 51404 -NCIT:C7145 Postsurgical Stage II Hepatoblastoma 9 51405 -NCIT:C7146 Postsurgical Stage I Hepatoblastoma 9 51406 -NCIT:C7097 Mixed Epithelial and Mesenchymal Hepatoblastoma 8 51407 -NCIT:C189926 Non-Teratoid Hepatoblastoma 9 51408 -NCIT:C7098 Teratoid Hepatoblastoma 9 51409 -NCIT:C8641 Unresectable Hepatoblastoma 8 51410 -NCIT:C8642 Resectable Hepatoblastoma 8 51411 -NCIT:C8643 Recurrent Hepatoblastoma 8 51412 -NCIT:C7839 Recurrent Childhood Malignant Liver Neoplasm 7 51413 -NCIT:C8643 Recurrent Hepatoblastoma 8 51414 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 8 51415 -NCIT:C7955 Childhood Hepatocellular Carcinoma 7 51416 -NCIT:C189932 Childhood Fibrolamellar Carcinoma 8 51417 -NCIT:C5708 Stage III Childhood Hepatocellular Carcinoma AJCC v7 8 51418 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 8 51419 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 8 51420 -NCIT:C7838 Stage IV Childhood Hepatocellular Carcinoma AJCC v7 8 51421 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 8 51422 -NCIT:C96830 Calcifying Nested Stromal-Epithelial Tumor 7 51423 -NCIT:C96847 Extrarenal Rhabdoid Tumor of the Liver 7 51424 -NCIT:C7481 Gallbladder Malignant Neoplasm 5 51425 -NCIT:C35676 Localized Malignant Gallbladder Neoplasm 6 51426 -NCIT:C7649 Localized Gallbladder Carcinoma 7 51427 -NCIT:C3844 Gallbladder Carcinoma 6 51428 -NCIT:C134660 Gallbladder Cancer by AJCC v8 Stage 7 51429 -NCIT:C134663 Stage 0 Gallbladder Cancer AJCC v8 8 51430 -NCIT:C134665 Stage I Gallbladder Cancer AJCC v8 8 51431 -NCIT:C134667 Stage II Gallbladder Cancer AJCC v8 8 51432 -NCIT:C134670 Stage IIA Gallbladder Cancer AJCC v8 9 51433 -NCIT:C134671 Stage IIB Gallbladder Cancer AJCC v8 9 51434 -NCIT:C134672 Stage III Gallbladder Cancer AJCC v8 8 51435 -NCIT:C134673 Stage IIIA Gallbladder Cancer AJCC v8 9 51436 -NCIT:C134674 Stage IIIB Gallbladder Cancer AJCC v8 9 51437 -NCIT:C134675 Stage IV Gallbladder Cancer AJCC v8 8 51438 -NCIT:C134676 Stage IVA Gallbladder Cancer AJCC v8 9 51439 -NCIT:C134678 Stage IVB Gallbladder Cancer AJCC v8 9 51440 -NCIT:C162753 Refractory Gallbladder Carcinoma 7 51441 -NCIT:C162754 Metastatic Gallbladder Carcinoma 7 51442 -NCIT:C162755 Advanced Gallbladder Carcinoma 8 51443 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 8 51444 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 9 51445 -NCIT:C175214 Incidental Gallbladder Carcinoma 7 51446 -NCIT:C4008 Recurrent Gallbladder Carcinoma 7 51447 -NCIT:C7356 Gallbladder Adenosquamous Carcinoma 7 51448 -NCIT:C7649 Localized Gallbladder Carcinoma 7 51449 -NCIT:C7890 Unresectable Gallbladder Carcinoma 7 51450 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 8 51451 -NCIT:C189064 Unresectable Gallbladder Adenocarcinoma 8 51452 -NCIT:C90512 Gallbladder Cancer by AJCC v6 Stage 7 51453 -NCIT:C4439 Stage 0 Gallbladder Cancer AJCC v6 and v7 8 51454 -NCIT:C5737 Stage I Gallbladder Cancer AJCC v6 8 51455 -NCIT:C5738 Stage II Gallbladder Cancer AJCC v6 8 51456 -NCIT:C5739 Stage III Gallbladder Cancer AJCC v6 8 51457 -NCIT:C5740 Stage IV Gallbladder Cancer AJCC v6 8 51458 -NCIT:C91229 Gallbladder Cancer by AJCC v7 Stage 7 51459 -NCIT:C4439 Stage 0 Gallbladder Cancer AJCC v6 and v7 8 51460 -NCIT:C90216 Stage I Gallbladder Cancer AJCC v7 8 51461 -NCIT:C90217 Stage II Gallbladder Cancer AJCC v7 8 51462 -NCIT:C90218 Stage III Gallbladder Cancer AJCC v7 8 51463 -NCIT:C88056 Stage IIIA Gallbladder Cancer AJCC v7 9 51464 -NCIT:C88057 Stage IIIB Gallbladder Cancer AJCC v7 9 51465 -NCIT:C90219 Stage IV Gallbladder Cancer AJCC v7 8 51466 -NCIT:C5741 Stage IVA Gallbladder Cancer AJCC v7 9 51467 -NCIT:C5742 Stage IVB Gallbladder Cancer AJCC v7 9 51468 -NCIT:C9166 Gallbladder Adenocarcinoma 7 51469 -NCIT:C189064 Unresectable Gallbladder Adenocarcinoma 8 51470 -NCIT:C43604 Gallbladder Adenocarcinoma, Intestinal-Type 8 51471 -NCIT:C43605 Gallbladder Clear Cell Adenocarcinoma 8 51472 -NCIT:C5743 Gallbladder Intracholecystic Papillary Neoplasm with an Associated Invasive Carcinoma 8 51473 -NCIT:C5744 Gallbladder Mucinous Adenocarcinoma 8 51474 -NCIT:C5745 Gallbladder Signet Ring Cell Carcinoma 8 51475 -NCIT:C9169 Gallbladder Adenocarcinoma with Squamous Metaplasia 8 51476 -NCIT:C96887 Gallbladder Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 8 51477 -NCIT:C96890 Gallbladder Hepatoid Adenocarcinoma 8 51478 -NCIT:C96891 Gallbladder Cribriform Carcinoma 8 51479 -NCIT:C96915 Gallbladder Adenocarcinoma, Biliary Type 8 51480 -NCIT:C96916 Gallbladder Adenocarcinoma, Gastric Foveolar Type 8 51481 -NCIT:C9167 Gallbladder Undifferentiated Carcinoma 7 51482 -NCIT:C5838 Gallbladder Undifferentiated Carcinoma, Spindle and Giant Cell Type 8 51483 -NCIT:C9170 Gallbladder Squamous Cell Carcinoma 7 51484 -NCIT:C96888 Gallbladder Carcinosarcoma 7 51485 -NCIT:C96919 Gallbladder Neuroendocrine Carcinoma 7 51486 -NCIT:C6763 Gallbladder Small Cell Neuroendocrine Carcinoma 8 51487 -NCIT:C96921 Gallbladder Large Cell Neuroendocrine Carcinoma 8 51488 -NCIT:C96927 Gallbladder Mixed Adenoneuroendocrine Carcinoma 7 51489 -NCIT:C96928 Gallbladder Goblet Cell Carcinoid 8 51490 -NCIT:C5734 Gallbladder Lymphoma 6 51491 -NCIT:C5735 Gallbladder Melanoma 6 51492 -NCIT:C5736 Gallbladder Sarcoma 6 51493 -NCIT:C5839 Gallbladder Rhabdomyosarcoma 7 51494 -NCIT:C5840 Gallbladder Angiosarcoma 7 51495 -NCIT:C5841 Gallbladder Leiomyosarcoma 7 51496 -NCIT:C5842 Gallbladder Kaposi Sarcoma 7 51497 -NCIT:C7482 Metastatic Malignant Neoplasm in the Gallbladder 6 51498 -NCIT:C7483 Malignant Extrahepatic Bile Duct Neoplasm 5 51499 -NCIT:C3860 Extrahepatic Bile Duct Carcinoma 6 51500 -NCIT:C175437 Refractory Extrahepatic Bile Duct Carcinoma 7 51501 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 8 51502 -NCIT:C185071 Metastatic Extrahepatic Bile Duct Carcinoma 7 51503 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 8 51504 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 9 51505 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 51506 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 9 51507 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 8 51508 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 9 51509 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 8 51510 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 9 51511 -NCIT:C5777 Extrahepatic Bile Duct Squamous Cell Carcinoma 7 51512 -NCIT:C5778 Extrahepatic Bile Duct Adenosquamous Carcinoma 7 51513 -NCIT:C5780 Extrahepatic Bile Duct Undifferentiated Carcinoma 7 51514 -NCIT:C5862 Extrahepatic Bile Duct Mucoepidermoid Carcinoma 7 51515 -NCIT:C7109 Distal Bile Duct Carcinoma 7 51516 -NCIT:C134810 Distal Bile Duct Cancer by AJCC v7 Stage 8 51517 -NCIT:C88089 Stage 0 Distal Bile Duct Cancer AJCC v7 9 51518 -NCIT:C88090 Stage IA Distal Bile Duct Cancer AJCC v7 9 51519 -NCIT:C88091 Stage IB Distal Bile Duct Cancer AJCC v7 9 51520 -NCIT:C88092 Stage IIA Distal Bile Duct Cancer AJCC v7 9 51521 -NCIT:C88093 Stage IIB Distal Bile Duct Cancer AJCC v7 9 51522 -NCIT:C88094 Stage III Distal Bile Duct Cancer AJCC v7 9 51523 -NCIT:C88095 Stage IV Distal Bile Duct Cancer AJCC v7 9 51524 -NCIT:C134811 Distal Bile Duct Cancer by AJCC v8 Stage 8 51525 -NCIT:C134812 Stage 0 Distal Bile Duct Cancer AJCC v8 9 51526 -NCIT:C134813 Stage I Distal Bile Duct Cancer AJCC v8 9 51527 -NCIT:C134814 Stage II Distal Bile Duct Cancer AJCC v8 9 51528 -NCIT:C134815 Stage IIA Distal Bile Duct Cancer AJCC v8 10 51529 -NCIT:C134816 Stage IIB Distal Bile Duct Cancer AJCC v8 10 51530 -NCIT:C134817 Stage III Distal Bile Duct Cancer AJCC v8 9 51531 -NCIT:C134818 Stage IIIA Distal Bile Duct Cancer AJCC v8 10 51532 -NCIT:C134819 Stage IIIB Distal Bile Duct Cancer AJCC v8 10 51533 -NCIT:C134820 Stage IV Distal Bile Duct Cancer AJCC v8 9 51534 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 8 51535 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 9 51536 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 51537 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 9 51538 -NCIT:C7976 Distal Bile Duct Adenocarcinoma 8 51539 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 9 51540 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 9 51541 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 51542 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 9 51543 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 9 51544 -NCIT:C7891 Localized Extrahepatic Bile Duct Carcinoma 7 51545 -NCIT:C7892 Unresectable Extrahepatic Bile Duct Carcinoma 7 51546 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 8 51547 -NCIT:C7893 Recurrent Extrahepatic Bile Duct Carcinoma 7 51548 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 8 51549 -NCIT:C7975 Extrahepatic Bile Duct Adenocarcinoma 7 51550 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 8 51551 -NCIT:C5775 Extrahepatic Bile Duct Clear Cell Adenocarcinoma 8 51552 -NCIT:C5776 Extrahepatic Bile Duct Signet Ring Cell Carcinoma 8 51553 -NCIT:C5846 Extrahepatic Bile Duct Mucinous Adenocarcinoma 8 51554 -NCIT:C7976 Distal Bile Duct Adenocarcinoma 8 51555 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 9 51556 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 9 51557 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 51558 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 9 51559 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 9 51560 -NCIT:C96936 Extrahepatic Bile Duct Adenocarcinoma, Biliary Type 8 51561 -NCIT:C96937 Extrahepatic Bile Duct Adenocarcinoma, Gastric Foveolar Type 8 51562 -NCIT:C96938 Extrahepatic Bile Duct Adenocarcinoma, Intestinal Type 8 51563 -NCIT:C96946 Extrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 8 51564 -NCIT:C96948 Extrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 8 51565 -NCIT:C8640 Resectable Extrahepatic Bile Duct Carcinoma 7 51566 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 8 51567 -NCIT:C96939 Extrahepatic Bile Duct Carcinosarcoma 7 51568 -NCIT:C96956 Extrahepatic Bile Duct Neuroendocrine Carcinoma 7 51569 -NCIT:C5845 Extrahepatic Bile Duct Small Cell Neuroendocrine Carcinoma 8 51570 -NCIT:C96958 Extrahepatic Bile Duct Large Cell Neuroendocrine Carcinoma 8 51571 -NCIT:C96959 Extrahepatic Bile Duct Mixed Adenoneuroendocrine Carcinoma 7 51572 -NCIT:C5029 Extrahepatic Bile Duct Sarcoma 6 51573 -NCIT:C5848 Extrahepatic Bile Duct Leiomyosarcoma 7 51574 -NCIT:C5860 Extrahepatic Bile Duct Rhabdomyosarcoma 7 51575 -NCIT:C5847 Extrahepatic Bile Duct Embryonal Rhabdomyosarcoma 8 51576 -NCIT:C96951 Extrahepatic Bile Duct Kaposi Sarcoma 7 51577 -NCIT:C96952 Extrahepatic Bile Duct Lymphoma 6 51578 -NCIT:C96953 Metastatic Malignant Neoplasm in the Extrahepatic Bile Ducts 6 51579 -NCIT:C8962 Digestive System Intraepithelial Neoplasia 3 51580 -NCIT:C133550 Clinical Stage 0 Gastroesophageal Junction Adenocarcinoma AJCC v8 4 51581 -NCIT:C133564 Pathologic Stage 0 Gastroesophageal Junction Adenocarcinoma AJCC v8 4 51582 -NCIT:C3955 Gastric Intraepithelial Neoplasia 4 51583 -NCIT:C27436 Low Grade Gastric Intraepithelial Neoplasia 5 51584 -NCIT:C27437 High Grade Gastric Intraepithelial Neoplasia 5 51585 -NCIT:C4595 Anal Intraepithelial Neoplasia 4 51586 -NCIT:C157573 Low Grade Anal Intraepithelial Neoplasia 5 51587 -NCIT:C27238 Low Grade Anal Canal Intraepithelial Neoplasia 6 51588 -NCIT:C172706 High Grade Anal Intraepithelial Neoplasia 5 51589 -NCIT:C157574 Anal Intraepithelial Neoplasia 2 6 51590 -NCIT:C157575 Anal Intraepithelial Neoplasia 3 6 51591 -NCIT:C27275 High Grade Anal Canal Intraepithelial Neoplasia 6 51592 -NCIT:C43598 Perianal Intraepithelial Neoplasia 5 51593 -NCIT:C7490 Anal Canal Intraepithelial Neoplasia 5 51594 -NCIT:C27238 Low Grade Anal Canal Intraepithelial Neoplasia 6 51595 -NCIT:C27275 High Grade Anal Canal Intraepithelial Neoplasia 6 51596 -NCIT:C4839 Esophageal Intraepithelial Neoplasia 4 51597 -NCIT:C27423 Esophageal Squamous Intraepithelial Neoplasia 5 51598 -NCIT:C27426 High Grade Esophageal Squamous Intraepithelial Neoplasia 6 51599 -NCIT:C133447 Clinical Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 7 51600 -NCIT:C133519 Pathologic Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 7 51601 -NCIT:C5023 Stage 0 Esophageal Squamous Cell Carcinoma AJCC v7 7 51602 -NCIT:C27427 Low Grade Esophageal Squamous Intraepithelial Neoplasia 6 51603 -NCIT:C27424 Esophageal Glandular Intraepithelial Neoplasia 5 51604 -NCIT:C27428 Low Grade Esophageal Glandular Intraepithelial Neoplasia 6 51605 -NCIT:C27429 High Grade Esophageal Glandular Intraepithelial Neoplasia 6 51606 -NCIT:C133402 Clinical Stage 0 Esophageal Adenocarcinoma AJCC v8 7 51607 -NCIT:C133413 Pathologic Stage 0 Esophageal Adenocarcinoma AJCC v8 7 51608 -NCIT:C8629 Stage 0 Esophageal Adenocarcinoma AJCC v7 7 51609 -NCIT:C95613 Intraepithelial Neoplasia in Barrett Esophagus 6 51610 -NCIT:C27425 Esophageal High Grade Intraepithelial Neoplasia 5 51611 -NCIT:C27426 High Grade Esophageal Squamous Intraepithelial Neoplasia 6 51612 -NCIT:C133447 Clinical Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 7 51613 -NCIT:C133519 Pathologic Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 7 51614 -NCIT:C5023 Stage 0 Esophageal Squamous Cell Carcinoma AJCC v7 7 51615 -NCIT:C27429 High Grade Esophageal Glandular Intraepithelial Neoplasia 6 51616 -NCIT:C133402 Clinical Stage 0 Esophageal Adenocarcinoma AJCC v8 7 51617 -NCIT:C133413 Pathologic Stage 0 Esophageal Adenocarcinoma AJCC v8 7 51618 -NCIT:C8629 Stage 0 Esophageal Adenocarcinoma AJCC v7 7 51619 -NCIT:C3637 Stage 0 Esophageal Cancer AJCC v6 6 51620 -NCIT:C89771 Stage 0 Esophageal Cancer AJCC v7 6 51621 -NCIT:C5023 Stage 0 Esophageal Squamous Cell Carcinoma AJCC v7 7 51622 -NCIT:C8629 Stage 0 Esophageal Adenocarcinoma AJCC v7 7 51623 -NCIT:C4840 Esophageal Low Grade Intraepithelial Neoplasia 5 51624 -NCIT:C27427 Low Grade Esophageal Squamous Intraepithelial Neoplasia 6 51625 -NCIT:C27428 Low Grade Esophageal Glandular Intraepithelial Neoplasia 6 51626 -NCIT:C4843 Biliary Intraepithelial Neoplasia 4 51627 -NCIT:C172804 Low Grade Biliary Intraepithelial Neoplasia 5 51628 -NCIT:C67491 Biliary Intraepithelial Neoplasia-1 6 51629 -NCIT:C67492 Biliary Intraepithelial Neoplasia-2 6 51630 -NCIT:C43606 Gallbladder Biliary Intraepithelial Neoplasia 5 51631 -NCIT:C43607 Gallbladder Flat Biliary Intraepithelial Neoplasia 6 51632 -NCIT:C43609 Gallbladder Papillary Biliary Intraepithelial Neoplasia 6 51633 -NCIT:C67493 High-Grade Biliary Intraepithelial Neoplasia 5 51634 -NCIT:C96945 Bile Duct Biliary Intraepithelial Neoplasia 5 51635 -NCIT:C96942 Extrahepatic Bile Duct Biliary Intraepithelial Neoplasia 6 51636 -NCIT:C96943 Intrahepatic Bile Duct Biliary Intraepithelial Neoplasia 6 51637 -NCIT:C4845 Pancreatic Intraepithelial Neoplasia 4 51638 -NCIT:C172803 Low Grade Pancreatic Intraepithelial Neoplasia 5 51639 -NCIT:C4846 Pancreatic Intraepithelial Neoplasia-2 6 51640 -NCIT:C6820 Pancreatic Intraepithelial Neoplasia-1 6 51641 -NCIT:C95429 Pancreatic Intraepithelial Neoplasia-1A 7 51642 -NCIT:C95430 Pancreatic Intraepithelial Neoplasia-1B 7 51643 -NCIT:C95432 High Grade Pancreatic Intraepithelial Neoplasia 5 51644 -NCIT:C7658 Intestinal Intraepithelial Neoplasia 4 51645 -NCIT:C27459 Colorectal Intraepithelial Neoplasia 5 51646 -NCIT:C27460 Colorectal Low Grade Intraepithelial Neoplasia 6 51647 -NCIT:C27461 Colorectal High Grade Intraepithelial Neoplasia 6 51648 -NCIT:C27462 Small Intestinal Intraepithelial Neoplasia 5 51649 -NCIT:C27463 Small Intestinal Low Grade Intraepithelial Neoplasia 6 51650 -NCIT:C27464 Small Intestinal High Grade Intraepithelial Neoplasia 6 51651 -NCIT:C95918 Ampullary Flat Intraepithelial Neoplasia, High Grade 4 51652 -NCIT:C96418 Appendix Intraepithelial Neoplasia 4 51653 -NCIT:C96419 Appendix Low Grade Intraepithelial Neoplasia 5 51654 -NCIT:C96420 Appendix High Grade Intraepithelial Neoplasia 5 51655 -NCIT:C3077 Head and Neck Neoplasm 2 51656 -NCIT:C173485 Head and Neck Histiocytic and Dendritic Cell Neoplasm 3 51657 -NCIT:C156406 Thyroid Gland Histiocytic and Dendritic Cell Neoplasm 4 51658 -NCIT:C156407 Thyroid Gland Langerhans Cell Histiocytosis 5 51659 -NCIT:C156408 Thyroid Gland Follicular Dendritic Cell Sarcoma 5 51660 -NCIT:C173486 Head and Neck Langerhans Cell Histiocytosis 4 51661 -NCIT:C156407 Thyroid Gland Langerhans Cell Histiocytosis 5 51662 -NCIT:C173487 Oral Mucosa Langerhans Cell Histiocytosis 5 51663 -NCIT:C173580 Head and Neck Follicular Dendritic Cell Sarcoma 4 51664 -NCIT:C156408 Thyroid Gland Follicular Dendritic Cell Sarcoma 5 51665 -NCIT:C173488 Head and Neck Melanocytic Neoplasm 3 51666 -NCIT:C133187 Mucosal Melanoma of the Head and Neck 4 51667 -NCIT:C133186 Mucosal Melanoma of the Head and Neck by AJCC v7 Stage 5 51668 -NCIT:C87532 Stage III Mucosal Melanoma of the Head and Neck AJCC v7 6 51669 -NCIT:C87533 Stage IVA Mucosal Melanoma of the Head and Neck AJCC v7 6 51670 -NCIT:C87534 Stage IVB Mucosal Melanoma of the Head and Neck AJCC v7 6 51671 -NCIT:C87535 Stage IVC Mucosal Melanoma of the Head and Neck AJCC v7 6 51672 -NCIT:C166399 Sinonasal Mucosal Melanoma 5 51673 -NCIT:C178521 Pharyngeal Melanoma 5 51674 -NCIT:C178522 Nasopharyngeal Melanoma 6 51675 -NCIT:C5915 Oral Cavity Mucosal Melanoma 5 51676 -NCIT:C54661 Head and Neck Nevus 4 51677 -NCIT:C173932 Benign Head and Neck Neoplasm 3 51678 -NCIT:C155792 Benign Skull Neoplasm 4 51679 -NCIT:C129569 Skull Osteoma 5 51680 -NCIT:C173894 Maxillofacial Osteoma 6 51681 -NCIT:C155793 Benign Skull Base Neoplasm 5 51682 -NCIT:C155768 Sellar Neurocytoma 6 51683 -NCIT:C155780 Sellar Schwannoma 6 51684 -NCIT:C155808 Sellar Mature Teratoma 6 51685 -NCIT:C2964 Craniopharyngioma 6 51686 -NCIT:C148076 Unresectable Craniopharyngioma 7 51687 -NCIT:C148077 Recurrent Craniopharyngioma 7 51688 -NCIT:C162612 Recurrent Adamantinomatous Craniopharyngioma 8 51689 -NCIT:C4010 Adult Craniopharyngioma 7 51690 -NCIT:C188949 Adult Adamantinomatous Craniopharyngioma 8 51691 -NCIT:C4725 Papillary Craniopharyngioma 7 51692 -NCIT:C4726 Adamantinomatous Craniopharyngioma 7 51693 -NCIT:C162612 Recurrent Adamantinomatous Craniopharyngioma 8 51694 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 8 51695 -NCIT:C188949 Adult Adamantinomatous Craniopharyngioma 8 51696 -NCIT:C7816 Childhood Craniopharyngioma 7 51697 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 8 51698 -NCIT:C4782 Benign Pituitary Gland Neoplasm 6 51699 -NCIT:C173820 Ossifying Fibroma 5 51700 -NCIT:C190158 Childhood Ossifying Fibroma 6 51701 -NCIT:C8422 Cemento-Ossifying Fibroma 6 51702 -NCIT:C173892 Benign Maxillofacial Neoplasm 5 51703 -NCIT:C173893 Maxillofacial Chondroma 6 51704 -NCIT:C173894 Maxillofacial Osteoma 6 51705 -NCIT:C173895 Maxillofacial Chondroblastoma 6 51706 -NCIT:C173897 Maxillofacial Chondromyxoid Fibroma 6 51707 -NCIT:C173898 Maxillofacial Osteoid Osteoma 6 51708 -NCIT:C173899 Maxillofacial Osteoblastoma 6 51709 -NCIT:C173900 Maxillofacial Desmoplastic Fibroma 6 51710 -NCIT:C173095 Benign Sinonasal Neoplasm 4 51711 -NCIT:C173114 Sinonasal Pleomorphic Adenoma 5 51712 -NCIT:C173139 Benign Sinonasal Soft Tissue Neoplasm 5 51713 -NCIT:C173140 Sinonasal Leiomyoma 6 51714 -NCIT:C173142 Sinonasal Hemangioma 6 51715 -NCIT:C190160 Sinonasal Tract Myxoma 6 51716 -NCIT:C173143 Sinonasal Schwannoma 5 51717 -NCIT:C173144 Sinonasal Neurofibroma 5 51718 -NCIT:C4117 Sinonasal Papilloma 5 51719 -NCIT:C164251 Sinonasal Exophytic Papilloma 6 51720 -NCIT:C54347 Nasal Cavity Exophytic Papilloma 7 51721 -NCIT:C164256 Nasal Cavity Papilloma 6 51722 -NCIT:C54347 Nasal Cavity Exophytic Papilloma 7 51723 -NCIT:C8194 Nasal Cavity Inverted Papilloma 7 51724 -NCIT:C54345 Sinonasal Oncocytic Papilloma 6 51725 -NCIT:C6835 Paranasal Sinus Papilloma 6 51726 -NCIT:C6836 Ethmoid Sinus Papilloma 7 51727 -NCIT:C6843 Ethmoid Sinus Inverted Papilloma 8 51728 -NCIT:C6837 Frontal Sinus Papilloma 7 51729 -NCIT:C6842 Frontal Sinus Inverted Papilloma 8 51730 -NCIT:C6838 Sphenoid Sinus Papilloma 7 51731 -NCIT:C6841 Sphenoid Sinus Inverted Papilloma 8 51732 -NCIT:C6839 Maxillary Sinus Papilloma 7 51733 -NCIT:C6840 Maxillary Sinus Inverted Papilloma 8 51734 -NCIT:C8195 Paranasal Sinus Inverted Papilloma 7 51735 -NCIT:C6840 Maxillary Sinus Inverted Papilloma 8 51736 -NCIT:C6841 Sphenoid Sinus Inverted Papilloma 8 51737 -NCIT:C6842 Frontal Sinus Inverted Papilloma 8 51738 -NCIT:C6843 Ethmoid Sinus Inverted Papilloma 8 51739 -NCIT:C6871 Sinonasal Inverted Papilloma 6 51740 -NCIT:C115432 Recurrent Sinonasal Inverted Papilloma 7 51741 -NCIT:C8194 Nasal Cavity Inverted Papilloma 7 51742 -NCIT:C8195 Paranasal Sinus Inverted Papilloma 7 51743 -NCIT:C6840 Maxillary Sinus Inverted Papilloma 8 51744 -NCIT:C6841 Sphenoid Sinus Inverted Papilloma 8 51745 -NCIT:C6842 Frontal Sinus Inverted Papilloma 8 51746 -NCIT:C6843 Ethmoid Sinus Inverted Papilloma 8 51747 -NCIT:C4603 Benign Nasal Cavity Neoplasm 5 51748 -NCIT:C164256 Nasal Cavity Papilloma 6 51749 -NCIT:C54347 Nasal Cavity Exophytic Papilloma 7 51750 -NCIT:C8194 Nasal Cavity Inverted Papilloma 7 51751 -NCIT:C4369 Nasal Vestibule Squamous Papilloma 6 51752 -NCIT:C8532 Benign Paranasal Sinus Neoplasm 5 51753 -NCIT:C4414 Benign Maxillary Sinus Neoplasm 6 51754 -NCIT:C6839 Maxillary Sinus Papilloma 7 51755 -NCIT:C6840 Maxillary Sinus Inverted Papilloma 8 51756 -NCIT:C4417 Benign Ethmoid Sinus Neoplasm 6 51757 -NCIT:C6836 Ethmoid Sinus Papilloma 7 51758 -NCIT:C6843 Ethmoid Sinus Inverted Papilloma 8 51759 -NCIT:C4420 Benign Frontal Sinus Neoplasm 6 51760 -NCIT:C6837 Frontal Sinus Papilloma 7 51761 -NCIT:C6842 Frontal Sinus Inverted Papilloma 8 51762 -NCIT:C4422 Benign Sphenoid Sinus Neoplasm 6 51763 -NCIT:C6838 Sphenoid Sinus Papilloma 7 51764 -NCIT:C6841 Sphenoid Sinus Inverted Papilloma 8 51765 -NCIT:C6835 Paranasal Sinus Papilloma 6 51766 -NCIT:C6836 Ethmoid Sinus Papilloma 7 51767 -NCIT:C6843 Ethmoid Sinus Inverted Papilloma 8 51768 -NCIT:C6837 Frontal Sinus Papilloma 7 51769 -NCIT:C6842 Frontal Sinus Inverted Papilloma 8 51770 -NCIT:C6838 Sphenoid Sinus Papilloma 7 51771 -NCIT:C6841 Sphenoid Sinus Inverted Papilloma 8 51772 -NCIT:C6839 Maxillary Sinus Papilloma 7 51773 -NCIT:C6840 Maxillary Sinus Inverted Papilloma 8 51774 -NCIT:C8195 Paranasal Sinus Inverted Papilloma 7 51775 -NCIT:C6840 Maxillary Sinus Inverted Papilloma 8 51776 -NCIT:C6841 Sphenoid Sinus Inverted Papilloma 8 51777 -NCIT:C6842 Frontal Sinus Inverted Papilloma 8 51778 -NCIT:C6843 Ethmoid Sinus Inverted Papilloma 8 51779 -NCIT:C190613 Childhood Benign Head and Neck Neoplasm 4 51780 -NCIT:C190060 Childhood Thyroid Gland Follicular Adenoma 5 51781 -NCIT:C190066 Childhood Parathyroid Gland Adenoma 5 51782 -NCIT:C190150 Childhood Laryngeal Squamous Papilloma 5 51783 -NCIT:C190155 Childhood Ameloblastic Fibroma 5 51784 -NCIT:C190156 Childhood Adenomatoid Odontogenic Tumor 5 51785 -NCIT:C190157 Childhood Odontogenic Myxoma 5 51786 -NCIT:C190158 Childhood Ossifying Fibroma 5 51787 -NCIT:C190160 Sinonasal Tract Myxoma 5 51788 -NCIT:C190161 Childhood Salivary Gland Pleomorphic Adenoma 5 51789 -NCIT:C7816 Childhood Craniopharyngioma 5 51790 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 6 51791 -NCIT:C3620 Benign Orbit Neoplasm 4 51792 -NCIT:C4548 Orbit Dermoid Cyst 5 51793 -NCIT:C6245 Orbit Hemangioma 5 51794 -NCIT:C4545 Orbit Capillary Hemangioma 6 51795 -NCIT:C4546 Orbit Cavernous Hemangioma 6 51796 -NCIT:C4600 Benign Salivary Gland Neoplasm 4 51797 -NCIT:C173659 Salivary Gland Lymphadenoma 5 51798 -NCIT:C35555 Salivary Gland Sebaceous Lymphadenoma 6 51799 -NCIT:C5949 Parotid Gland Sebaceous Lymphadenoma 7 51800 -NCIT:C173680 Salivary Gland Hemangioma 5 51801 -NCIT:C5397 Parotid Gland Hemangioma 6 51802 -NCIT:C173681 Salivary Gland Lipoma 5 51803 -NCIT:C5982 Parotid Gland Lipoma 6 51804 -NCIT:C173682 Sialolipoma 5 51805 -NCIT:C173684 Parotid Gland Sialolipoma 6 51806 -NCIT:C173687 Salivary Gland Nodular Fasciitis 5 51807 -NCIT:C173688 Parotid Gland Nodular Fasciitis 6 51808 -NCIT:C184295 Salivary Gland Adenoma 5 51809 -NCIT:C3686 Salivary Gland Monomorphic Adenoma 6 51810 -NCIT:C35738 Salivary Gland Sebaceous Adenoma 7 51811 -NCIT:C5932 Salivary Gland Oncocytoma 7 51812 -NCIT:C5950 Basal Cell Adenoma 7 51813 -NCIT:C5979 Salivary Gland Canalicular Adenoma 7 51814 -NCIT:C6845 Oral Cavity Monomorphic Adenoma 7 51815 -NCIT:C6844 Hard Palate Monomorphic Adenoma 8 51816 -NCIT:C6847 Parotid Gland Monomorphic Adenoma 7 51817 -NCIT:C40409 Salivary Gland Pleomorphic Adenoma 6 51818 -NCIT:C173114 Sinonasal Pleomorphic Adenoma 7 51819 -NCIT:C173412 Laryngeal Pleomorphic Adenoma 7 51820 -NCIT:C173575 Oropharyngeal Pleomorphic Adenoma 7 51821 -NCIT:C190161 Childhood Salivary Gland Pleomorphic Adenoma 7 51822 -NCIT:C35759 Metastasizing Pleomorphic Adenoma of the Salivary Gland 7 51823 -NCIT:C4650 Parotid Gland Pleomorphic Adenoma 7 51824 -NCIT:C6242 Oral Cavity Pleomorphic Adenoma 7 51825 -NCIT:C6211 Soft Palate Pleomorphic Adenoma 8 51826 -NCIT:C6212 Hard Palate Pleomorphic Adenoma 8 51827 -NCIT:C66865 Parotid Gland Warthin Tumor 6 51828 -NCIT:C35833 Salivary Gland Cystadenoma 5 51829 -NCIT:C35839 Salivary Gland Ductal Papilloma 5 51830 -NCIT:C35834 Salivary Gland Intraductal Papilloma 6 51831 -NCIT:C35835 Salivary Gland Inverted Ductal Papilloma 6 51832 -NCIT:C35836 Salivary Gland Sialadenoma Papilliferum 6 51833 -NCIT:C4411 Benign Minor Salivary Gland Neoplasm 5 51834 -NCIT:C4771 Benign Major Salivary Gland Neoplasm 5 51835 -NCIT:C4601 Benign Sublingual Gland Neoplasm 6 51836 -NCIT:C4770 Benign Parotid Gland Neoplasm 6 51837 -NCIT:C173684 Parotid Gland Sialolipoma 7 51838 -NCIT:C173688 Parotid Gland Nodular Fasciitis 7 51839 -NCIT:C4650 Parotid Gland Pleomorphic Adenoma 7 51840 -NCIT:C5393 Parotid Gland Lymphangioma 7 51841 -NCIT:C5397 Parotid Gland Hemangioma 7 51842 -NCIT:C5949 Parotid Gland Sebaceous Lymphadenoma 7 51843 -NCIT:C5982 Parotid Gland Lipoma 7 51844 -NCIT:C66865 Parotid Gland Warthin Tumor 7 51845 -NCIT:C6847 Parotid Gland Monomorphic Adenoma 7 51846 -NCIT:C4891 Benign Submandibular Gland Neoplasm 6 51847 -NCIT:C5978 Salivary Gland Myoepithelioma 5 51848 -NCIT:C97135 Sclerosing Polycystic Adenosis 5 51849 -NCIT:C4884 Benign Neck Neoplasm 4 51850 -NCIT:C162822 Benign Parapharyngeal Neoplasm 5 51851 -NCIT:C162826 Benign Retropharyngeal Neoplasm 5 51852 -NCIT:C3597 Benign Pharyngeal Neoplasm 5 51853 -NCIT:C3595 Benign Nasopharyngeal Neoplasm 6 51854 -NCIT:C27479 Nasopharyngeal Angiofibroma 7 51855 -NCIT:C6034 Nasopharyngeal Polyp 7 51856 -NCIT:C6037 Nasopharyngeal Squamous Papilloma 7 51857 -NCIT:C3596 Benign Hypopharyngeal Neoplasm 6 51858 -NCIT:C4886 Benign Pyriform Fossa Neoplasm 7 51859 -NCIT:C4604 Benign Oropharyngeal Neoplasm 6 51860 -NCIT:C173575 Oropharyngeal Pleomorphic Adenoma 7 51861 -NCIT:C5988 Oropharyngeal Polyp 7 51862 -NCIT:C6038 Oropharyngeal Squamous Papilloma 7 51863 -NCIT:C3601 Benign Laryngeal Neoplasm 5 51864 -NCIT:C173399 Benign Laryngeal Soft Tissue Neoplasm 6 51865 -NCIT:C6026 Subglottic Hemangioma 7 51866 -NCIT:C6027 Laryngeal Leiomyoma 7 51867 -NCIT:C173406 Laryngeal Chondroma 6 51868 -NCIT:C173412 Laryngeal Pleomorphic Adenoma 6 51869 -NCIT:C4427 Benign Subglottis Neoplasm 6 51870 -NCIT:C6026 Subglottic Hemangioma 7 51871 -NCIT:C4605 Benign Glottis Neoplasm 6 51872 -NCIT:C7742 Laryngeal Squamous Papilloma 6 51873 -NCIT:C190150 Childhood Laryngeal Squamous Papilloma 7 51874 -NCIT:C8414 Benign Supraglottis Neoplasm 6 51875 -NCIT:C4606 Benign Epiglottis Neoplasm 7 51876 -NCIT:C3628 Benign Thyroid Gland Neoplasm 5 51877 -NCIT:C156340 Thyroid Gland Schwannoma 6 51878 -NCIT:C156342 Thyroid Gland Benign Vascular Neoplasm 6 51879 -NCIT:C156343 Thyroid Gland Hemangioma 7 51880 -NCIT:C156344 Thyroid Gland Cavernous Hemangioma 8 51881 -NCIT:C156345 Thyroid Gland Lymphangioma 7 51882 -NCIT:C156346 Thyroid Gland Leiomyoma 6 51883 -NCIT:C3502 Thyroid Gland Follicular Adenoma 6 51884 -NCIT:C155957 Thyroid Gland Spindle Cell Follicular Adenoma 7 51885 -NCIT:C155958 Thyroid Gland Black Follicular Adenoma 7 51886 -NCIT:C187261 Thyroid Gland Follicular Adenoma with Papillary Architecture 7 51887 -NCIT:C190060 Childhood Thyroid Gland Follicular Adenoma 7 51888 -NCIT:C4160 Thyroid Gland Microfollicular Adenoma 7 51889 -NCIT:C4161 Thyroid Gland Macrofollicular Adenoma 7 51890 -NCIT:C46111 Thyroid Gland Follicular Adenoma with Papillary Hyperplasia 7 51891 -NCIT:C46115 Thyroid Gland Signet Ring Cell Follicular Adenoma 7 51892 -NCIT:C46116 Thyroid Gland Mucinous Follicular Adenoma 7 51893 -NCIT:C46118 Thyroid Gland Lipoadenoma 7 51894 -NCIT:C46119 Thyroid Gland Clear Cell Follicular Adenoma 7 51895 -NCIT:C46122 Thyroid Gland Hyperfunctioning Adenoma 7 51896 -NCIT:C46123 Thyroid Gland Follicular Adenoma with Bizarre Nuclei 7 51897 -NCIT:C6042 Thyroid Gland Oncocytic Adenoma 7 51898 -NCIT:C3630 Benign Parathyroid Gland Neoplasm 5 51899 -NCIT:C156757 Parathyroid Gland Adenoma 6 51900 -NCIT:C190066 Childhood Parathyroid Gland Adenoma 7 51901 -NCIT:C27393 Parathyroid Gland Oncocytic Adenoma 7 51902 -NCIT:C4154 Parathyroid Gland Chief Cell Adenoma 7 51903 -NCIT:C48283 Parathyroid Gland Lipoadenoma 7 51904 -NCIT:C7993 Parathyroid Gland Clear Cell Adenoma 7 51905 -NCIT:C4155 Parathyroid Gland Water-Clear Cell Adenoma 8 51906 -NCIT:C7994 Parathyroid Gland Mixed Cell Type Adenoma 7 51907 -NCIT:C5323 Jugular Foramen Schwannoma 5 51908 -NCIT:C54661 Head and Neck Nevus 4 51909 -NCIT:C7608 Benign Oral Neoplasm 4 51910 -NCIT:C173476 Oral Squamous Papilloma 5 51911 -NCIT:C5819 Buccal Squamous Papilloma 6 51912 -NCIT:C3591 Benign Lip Neoplasm 5 51913 -NCIT:C4372 Cherry Hemangioma of Lip 6 51914 -NCIT:C7607 Benign Oral Cavity Neoplasm 5 51915 -NCIT:C173480 Benign Oral Cavity Soft Tissue Neoplasm 6 51916 -NCIT:C27478 Gingival Angiofibroma 7 51917 -NCIT:C3950 Oral Mucosa Lobular Capillary Hemangioma 7 51918 -NCIT:C4831 Gingival Hemangioma 7 51919 -NCIT:C5909 Oral Cavity Leiomyoma 7 51920 -NCIT:C5910 Oral Cavity Lipoma 7 51921 -NCIT:C7734 Tongue Lipoma 8 51922 -NCIT:C3592 Benign Tongue Neoplasm 6 51923 -NCIT:C4408 Benign Posterior Tongue Neoplasm 7 51924 -NCIT:C6063 Benign Anterior Tongue Neoplasm 7 51925 -NCIT:C7734 Tongue Lipoma 7 51926 -NCIT:C3593 Benign Floor of the Mouth Neoplasm 6 51927 -NCIT:C3594 Benign Tonsillar Neoplasm 6 51928 -NCIT:C5989 Tonsillar Lipoma 7 51929 -NCIT:C4306 Benign Odontogenic Neoplasm 6 51930 -NCIT:C173819 Primordial Odontogenic Tumor 7 51931 -NCIT:C3710 Ameloblastic Fibro-Odontoma 7 51932 -NCIT:C4308 Cementoblastoma 7 51933 -NCIT:C4310 Adenomatoid Odontogenic Tumor 7 51934 -NCIT:C190156 Childhood Adenomatoid Odontogenic Tumor 8 51935 -NCIT:C4314 Odontogenic Fibroma 7 51936 -NCIT:C4315 Peripheral Odontogenic Fibroma 8 51937 -NCIT:C4316 Ameloblastic Fibroma 7 51938 -NCIT:C190155 Childhood Ameloblastic Fibroma 8 51939 -NCIT:C54301 Calcifying Epithelial Odontogenic Tumor 7 51940 -NCIT:C54319 Calcifying Cystic Odontogenic Tumor 7 51941 -NCIT:C54323 Dentinogenic Ghost Cell Tumor 7 51942 -NCIT:C66800 Ameloblastic Fibrodentinoma 7 51943 -NCIT:C7111 Benign Ameloblastoma 7 51944 -NCIT:C7112 Squamous Odontogenic Tumor 7 51945 -NCIT:C7452 Odontogenic Myxofibroma 7 51946 -NCIT:C7501 Odontogenic Myxoma 7 51947 -NCIT:C190157 Childhood Odontogenic Myxoma 8 51948 -NCIT:C8422 Cemento-Ossifying Fibroma 7 51949 -NCIT:C4403 Benign Hard Palate Neoplasm 6 51950 -NCIT:C6212 Hard Palate Pleomorphic Adenoma 7 51951 -NCIT:C6844 Hard Palate Monomorphic Adenoma 7 51952 -NCIT:C4406 Benign Buccal Mucosa Neoplasm 6 51953 -NCIT:C5819 Buccal Squamous Papilloma 7 51954 -NCIT:C4598 Benign Gingival Neoplasm 6 51955 -NCIT:C27478 Gingival Angiofibroma 7 51956 -NCIT:C4831 Gingival Hemangioma 7 51957 -NCIT:C5913 Oral Cavity Adenoma 6 51958 -NCIT:C6242 Oral Cavity Pleomorphic Adenoma 7 51959 -NCIT:C6211 Soft Palate Pleomorphic Adenoma 8 51960 -NCIT:C6212 Hard Palate Pleomorphic Adenoma 8 51961 -NCIT:C6845 Oral Cavity Monomorphic Adenoma 7 51962 -NCIT:C6844 Hard Palate Monomorphic Adenoma 8 51963 -NCIT:C7605 Oral Cavity Benign Granular Cell Tumor 6 51964 -NCIT:C6210 Soft Palate Benign Granular Cell Tumor 7 51965 -NCIT:C8417 Benign Ear Neoplasm 4 51966 -NCIT:C174023 Benign Inner Ear Neoplasm 5 51967 -NCIT:C3276 Vestibular Schwannoma 6 51968 -NCIT:C5452 Inner Ear Lipoma 6 51969 -NCIT:C4602 Benign Middle Ear Neoplasm 5 51970 -NCIT:C6834 Middle Ear Adenoma 6 51971 -NCIT:C6933 Middle Ear Polyp 6 51972 -NCIT:C5971 Ear Polyp 5 51973 -NCIT:C4366 External Ear Polyp 6 51974 -NCIT:C6933 Middle Ear Polyp 6 51975 -NCIT:C6807 Benign External Ear Neoplasm 5 51976 -NCIT:C4366 External Ear Polyp 6 51977 -NCIT:C4618 External Ear Lipoma 6 51978 -NCIT:C6088 Ceruminous Adenoma 6 51979 -NCIT:C188222 Head and Neck Neuroendocrine Neoplasm 3 51980 -NCIT:C160980 Head and Neck Neuroendocrine Carcinoma 4 51981 -NCIT:C160981 Head and Neck Small Cell Neuroendocrine Carcinoma 5 51982 -NCIT:C116318 Sinonasal Small Cell Neuroendocrine Carcinoma 6 51983 -NCIT:C35703 Salivary Gland Small Cell Neuroendocrine Carcinoma 6 51984 -NCIT:C5956 Minor Salivary Gland Small Cell Neuroendocrine Carcinoma 7 51985 -NCIT:C6025 Laryngeal Small Cell Neuroendocrine Carcinoma 6 51986 -NCIT:C160982 Head and Neck Large Cell Neuroendocrine Carcinoma 5 51987 -NCIT:C173091 Sinonasal Large Cell Neuroendocrine Carcinoma 6 51988 -NCIT:C173395 Laryngeal Large Cell Neuroendocrine Carcinoma 6 51989 -NCIT:C173650 Salivary Gland Large Cell Neuroendocrine Carcinoma 6 51990 -NCIT:C173089 Sinonasal Neuroendocrine Carcinoma 5 51991 -NCIT:C116318 Sinonasal Small Cell Neuroendocrine Carcinoma 6 51992 -NCIT:C173091 Sinonasal Large Cell Neuroendocrine Carcinoma 6 51993 -NCIT:C173390 Laryngeal Neuroendocrine Carcinoma 5 51994 -NCIT:C173395 Laryngeal Large Cell Neuroendocrine Carcinoma 6 51995 -NCIT:C6025 Laryngeal Small Cell Neuroendocrine Carcinoma 6 51996 -NCIT:C173587 Head and Neck Merkel Cell Carcinoma 5 51997 -NCIT:C173653 Salivary Gland Neuroendocrine Carcinoma 5 51998 -NCIT:C173650 Salivary Gland Large Cell Neuroendocrine Carcinoma 6 51999 -NCIT:C35703 Salivary Gland Small Cell Neuroendocrine Carcinoma 6 52000 -NCIT:C5956 Minor Salivary Gland Small Cell Neuroendocrine Carcinoma 7 52001 -NCIT:C3879 Thyroid Gland Medullary Carcinoma 5 52002 -NCIT:C123905 Childhood Thyroid Gland Medullary Carcinoma 6 52003 -NCIT:C141041 Thyroid Gland Medullary Carcinoma by AJCC v7 Stage 6 52004 -NCIT:C6133 Stage I Thyroid Gland Medullary Carcinoma AJCC v7 7 52005 -NCIT:C6134 Stage II Thyroid Gland Medullary Carcinoma AJCC v7 7 52006 -NCIT:C6135 Stage III Thyroid Gland Medullary Carcinoma AJCC v7 7 52007 -NCIT:C6136 Stage IV Thyroid Gland Medullary Carcinoma AJCC v7 7 52008 -NCIT:C87549 Stage IVA Thyroid Gland Medullary Carcinoma AJCC v7 8 52009 -NCIT:C87550 Stage IVB Thyroid Gland Medullary Carcinoma AJCC v7 8 52010 -NCIT:C87551 Stage IVC Thyroid Gland Medullary Carcinoma AJCC v7 8 52011 -NCIT:C141042 Thyroid Gland Medullary Carcinoma by AJCC v8 Stage 6 52012 -NCIT:C141043 Stage I Thyroid Gland Medullary Carcinoma AJCC v8 7 52013 -NCIT:C141044 Stage II Thyroid Gland Medullary Carcinoma AJCC v8 7 52014 -NCIT:C141045 Stage III Thyroid Gland Medullary Carcinoma AJCC v8 7 52015 -NCIT:C141046 Stage IV Thyroid Gland Medullary Carcinoma AJCC v8 7 52016 -NCIT:C141047 Stage IVA Thyroid Gland Medullary Carcinoma AJCC v8 8 52017 -NCIT:C141048 Stage IVB Thyroid Gland Medullary Carcinoma AJCC v8 8 52018 -NCIT:C141049 Stage IVC Thyroid Gland Medullary Carcinoma AJCC v8 8 52019 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 6 52020 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 7 52021 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 6 52022 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 7 52023 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 7 52024 -NCIT:C163974 Unresectable Thyroid Gland Medullary Carcinoma 6 52025 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 7 52026 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 6 52027 -NCIT:C4193 Thyroid Gland Medullary Carcinoma with Amyloid Stroma 6 52028 -NCIT:C46098 Sporadic Thyroid Gland Medullary Carcinoma 6 52029 -NCIT:C46103 Sporadic Thyroid Gland Micromedullary Carcinoma 7 52030 -NCIT:C46099 Hereditary Thyroid Gland Medullary Carcinoma 6 52031 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 7 52032 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 7 52033 -NCIT:C173387 Head and Neck Neuroendocrine Tumor 4 52034 -NCIT:C173388 Head and Neck Neuroendocrine Tumor G2 5 52035 -NCIT:C173392 Laryngeal Neuroendocrine Tumor G2 6 52036 -NCIT:C173391 Laryngeal Neuroendocrine Tumor 5 52037 -NCIT:C173392 Laryngeal Neuroendocrine Tumor G2 6 52038 -NCIT:C188223 Laryngeal Neuroendocrine Tumor G1 6 52039 -NCIT:C188224 Head and Neck Neuroendocrine Tumor G1 5 52040 -NCIT:C188223 Laryngeal Neuroendocrine Tumor G1 6 52041 -NCIT:C5327 Head and Neck Paraganglioma 4 52042 -NCIT:C2932 Carotid Body Paraganglioma 5 52043 -NCIT:C3574 Metastatic Carotid Body Paraganglioma 6 52044 -NCIT:C79950 Non-Metastatic Carotid Body Paraganglioma 6 52045 -NCIT:C3061 Jugulotympanic Paraganglioma 5 52046 -NCIT:C4623 Metastatic Jugulotympanic Paraganglioma 6 52047 -NCIT:C6085 Middle Ear Paraganglioma 6 52048 -NCIT:C8428 Tympanic Paraganglioma 7 52049 -NCIT:C46125 Thyroid Gland Paraganglioma 5 52050 -NCIT:C48316 Nasopharyngeal Paraganglioma 5 52051 -NCIT:C6408 Orbit Paraganglioma 5 52052 -NCIT:C6409 Laryngeal Paraganglioma 5 52053 -NCIT:C8427 Vagal Paraganglioma 5 52054 -NCIT:C6023 Laryngeal Neuroendocrine Neoplasm 4 52055 -NCIT:C173390 Laryngeal Neuroendocrine Carcinoma 5 52056 -NCIT:C173395 Laryngeal Large Cell Neuroendocrine Carcinoma 6 52057 -NCIT:C6025 Laryngeal Small Cell Neuroendocrine Carcinoma 6 52058 -NCIT:C173391 Laryngeal Neuroendocrine Tumor 5 52059 -NCIT:C173392 Laryngeal Neuroendocrine Tumor G2 6 52060 -NCIT:C188223 Laryngeal Neuroendocrine Tumor G1 6 52061 -NCIT:C6409 Laryngeal Paraganglioma 5 52062 -NCIT:C190119 Childhood Head and Neck Neoplasm 3 52063 -NCIT:C190121 Childhood Malignant Head and Neck Neoplasm 4 52064 -NCIT:C118811 Childhood Laryngeal Carcinoma 5 52065 -NCIT:C118817 Childhood Nasal Cavity Carcinoma 5 52066 -NCIT:C118818 Childhood Paranasal Sinus Carcinoma 5 52067 -NCIT:C118819 Childhood Parathyroid Gland Carcinoma 5 52068 -NCIT:C118824 Childhood Salivary Gland Carcinoma 5 52069 -NCIT:C190273 Childhood Salivary Gland Mucoepidermoid Carcinoma 6 52070 -NCIT:C190274 Childhood Salivary Gland Acinic Cell Carcinoma 6 52071 -NCIT:C118827 Childhood Thyroid Gland Carcinoma 5 52072 -NCIT:C123903 Childhood Thyroid Gland Papillary Carcinoma 6 52073 -NCIT:C123904 Childhood Thyroid Gland Follicular Carcinoma 6 52074 -NCIT:C123905 Childhood Thyroid Gland Medullary Carcinoma 6 52075 -NCIT:C190064 Childhood Thyroid Gland Spindle Epithelial Tumor with Thymus-Like Elements 6 52076 -NCIT:C190272 Childhood Mucoepidermoid Carcinoma 5 52077 -NCIT:C190273 Childhood Salivary Gland Mucoepidermoid Carcinoma 6 52078 -NCIT:C190276 Childhood Nasopharyngeal Carcinoma 5 52079 -NCIT:C190278 Childhood Head and Neck NUT Carcinoma 5 52080 -NCIT:C190152 Childhood Odontogenic Neoplasm 4 52081 -NCIT:C190154 Childhood Ameloblastoma 5 52082 -NCIT:C190155 Childhood Ameloblastic Fibroma 5 52083 -NCIT:C190156 Childhood Adenomatoid Odontogenic Tumor 5 52084 -NCIT:C190157 Childhood Odontogenic Myxoma 5 52085 -NCIT:C190613 Childhood Benign Head and Neck Neoplasm 4 52086 -NCIT:C190060 Childhood Thyroid Gland Follicular Adenoma 5 52087 -NCIT:C190066 Childhood Parathyroid Gland Adenoma 5 52088 -NCIT:C190150 Childhood Laryngeal Squamous Papilloma 5 52089 -NCIT:C190155 Childhood Ameloblastic Fibroma 5 52090 -NCIT:C190156 Childhood Adenomatoid Odontogenic Tumor 5 52091 -NCIT:C190157 Childhood Odontogenic Myxoma 5 52092 -NCIT:C190158 Childhood Ossifying Fibroma 5 52093 -NCIT:C190160 Sinonasal Tract Myxoma 5 52094 -NCIT:C190161 Childhood Salivary Gland Pleomorphic Adenoma 5 52095 -NCIT:C7816 Childhood Craniopharyngioma 5 52096 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 6 52097 -NCIT:C35837 Sialoblastoma 4 52098 -NCIT:C3000 Ear Neoplasm 3 52099 -NCIT:C39784 Inner Ear Neoplasm 4 52100 -NCIT:C174023 Benign Inner Ear Neoplasm 5 52101 -NCIT:C3276 Vestibular Schwannoma 6 52102 -NCIT:C5452 Inner Ear Lipoma 6 52103 -NCIT:C174026 Malignant Inner Ear Neoplasm 5 52104 -NCIT:C67560 Endolymphatic Sac Tumor 6 52105 -NCIT:C4412 Middle Ear Neoplasm 4 52106 -NCIT:C174022 Aggressive Papillary Tumor 5 52107 -NCIT:C174033 Primary Middle Ear Meningioma 5 52108 -NCIT:C4602 Benign Middle Ear Neoplasm 5 52109 -NCIT:C6834 Middle Ear Adenoma 6 52110 -NCIT:C6933 Middle Ear Polyp 6 52111 -NCIT:C4765 Malignant Middle Ear Neoplasm 5 52112 -NCIT:C188115 Middle Ear Embryonal Rhabdomyosarcoma 6 52113 -NCIT:C6089 Middle Ear Carcinoma 6 52114 -NCIT:C6086 Middle Ear Squamous Cell Carcinoma 7 52115 -NCIT:C6848 Middle Ear Adenocarcinoma 7 52116 -NCIT:C91741 Middle Ear Carcinoma In Situ 7 52117 -NCIT:C6085 Middle Ear Paraganglioma 5 52118 -NCIT:C8428 Tympanic Paraganglioma 6 52119 -NCIT:C4652 External Ear Neoplasm 4 52120 -NCIT:C4653 Malignant External Ear Neoplasm 5 52121 -NCIT:C6081 External Ear Carcinoma 6 52122 -NCIT:C4176 Ceruminous Adenocarcinoma 7 52123 -NCIT:C6082 External Ear Basal Cell Carcinoma 7 52124 -NCIT:C6083 External Ear Squamous Cell Carcinoma 7 52125 -NCIT:C5558 Ceruminous Neoplasm 5 52126 -NCIT:C4176 Ceruminous Adenocarcinoma 6 52127 -NCIT:C6088 Ceruminous Adenoma 6 52128 -NCIT:C6080 External Ear Actinic Keratosis 5 52129 -NCIT:C6807 Benign External Ear Neoplasm 5 52130 -NCIT:C4366 External Ear Polyp 6 52131 -NCIT:C4618 External Ear Lipoma 6 52132 -NCIT:C6088 Ceruminous Adenoma 6 52133 -NCIT:C8417 Benign Ear Neoplasm 4 52134 -NCIT:C174023 Benign Inner Ear Neoplasm 5 52135 -NCIT:C3276 Vestibular Schwannoma 6 52136 -NCIT:C5452 Inner Ear Lipoma 6 52137 -NCIT:C4602 Benign Middle Ear Neoplasm 5 52138 -NCIT:C6834 Middle Ear Adenoma 6 52139 -NCIT:C6933 Middle Ear Polyp 6 52140 -NCIT:C5971 Ear Polyp 5 52141 -NCIT:C4366 External Ear Polyp 6 52142 -NCIT:C6933 Middle Ear Polyp 6 52143 -NCIT:C6807 Benign External Ear Neoplasm 5 52144 -NCIT:C4366 External Ear Polyp 6 52145 -NCIT:C4618 External Ear Lipoma 6 52146 -NCIT:C6088 Ceruminous Adenoma 6 52147 -NCIT:C9337 Malignant Ear Neoplasm 4 52148 -NCIT:C174026 Malignant Inner Ear Neoplasm 5 52149 -NCIT:C67560 Endolymphatic Sac Tumor 6 52150 -NCIT:C4653 Malignant External Ear Neoplasm 5 52151 -NCIT:C6081 External Ear Carcinoma 6 52152 -NCIT:C4176 Ceruminous Adenocarcinoma 7 52153 -NCIT:C6082 External Ear Basal Cell Carcinoma 7 52154 -NCIT:C6083 External Ear Squamous Cell Carcinoma 7 52155 -NCIT:C4765 Malignant Middle Ear Neoplasm 5 52156 -NCIT:C188115 Middle Ear Embryonal Rhabdomyosarcoma 6 52157 -NCIT:C6089 Middle Ear Carcinoma 6 52158 -NCIT:C6086 Middle Ear Squamous Cell Carcinoma 7 52159 -NCIT:C6848 Middle Ear Adenocarcinoma 7 52160 -NCIT:C91741 Middle Ear Carcinoma In Situ 7 52161 -NCIT:C54262 Ear Carcinoma 5 52162 -NCIT:C6081 External Ear Carcinoma 6 52163 -NCIT:C4176 Ceruminous Adenocarcinoma 7 52164 -NCIT:C6082 External Ear Basal Cell Carcinoma 7 52165 -NCIT:C6083 External Ear Squamous Cell Carcinoma 7 52166 -NCIT:C6089 Middle Ear Carcinoma 6 52167 -NCIT:C6086 Middle Ear Squamous Cell Carcinoma 7 52168 -NCIT:C6848 Middle Ear Adenocarcinoma 7 52169 -NCIT:C91741 Middle Ear Carcinoma In Situ 7 52170 -NCIT:C3260 Neck Neoplasm 3 52171 -NCIT:C162820 Parapharyngeal Neoplasm 4 52172 -NCIT:C162822 Benign Parapharyngeal Neoplasm 5 52173 -NCIT:C162823 Malignant Parapharyngeal Neoplasm 5 52174 -NCIT:C5303 Primary Parapharyngeal Meningioma 5 52175 -NCIT:C162825 Retropharyngeal Neoplasm 4 52176 -NCIT:C162826 Benign Retropharyngeal Neoplasm 5 52177 -NCIT:C162828 Malignant Retropharyngeal Neoplasm 5 52178 -NCIT:C3156 Laryngeal Neoplasm 4 52179 -NCIT:C157733 Laryngeal Papillomatosis 5 52180 -NCIT:C173397 Laryngeal Soft Tissue Neoplasm 5 52181 -NCIT:C173399 Benign Laryngeal Soft Tissue Neoplasm 6 52182 -NCIT:C6026 Subglottic Hemangioma 7 52183 -NCIT:C6027 Laryngeal Leiomyoma 7 52184 -NCIT:C173400 Malignant Laryngeal Soft Tissue Neoplasm 6 52185 -NCIT:C173408 Laryngeal Soft Tissue Sarcoma 7 52186 -NCIT:C6021 Laryngeal Liposarcoma 8 52187 -NCIT:C6022 Laryngeal Leiomyosarcoma 8 52188 -NCIT:C173402 Laryngeal Inflammatory Myofibroblastic Tumor 6 52189 -NCIT:C173405 Laryngeal Granular Cell Tumor 6 52190 -NCIT:C3601 Benign Laryngeal Neoplasm 5 52191 -NCIT:C173399 Benign Laryngeal Soft Tissue Neoplasm 6 52192 -NCIT:C6026 Subglottic Hemangioma 7 52193 -NCIT:C6027 Laryngeal Leiomyoma 7 52194 -NCIT:C173406 Laryngeal Chondroma 6 52195 -NCIT:C173412 Laryngeal Pleomorphic Adenoma 6 52196 -NCIT:C4427 Benign Subglottis Neoplasm 6 52197 -NCIT:C6026 Subglottic Hemangioma 7 52198 -NCIT:C4605 Benign Glottis Neoplasm 6 52199 -NCIT:C7742 Laryngeal Squamous Papilloma 6 52200 -NCIT:C190150 Childhood Laryngeal Squamous Papilloma 7 52201 -NCIT:C8414 Benign Supraglottis Neoplasm 6 52202 -NCIT:C4606 Benign Epiglottis Neoplasm 7 52203 -NCIT:C4425 Glottis Neoplasm 5 52204 -NCIT:C3544 Malignant Glottis Neoplasm 6 52205 -NCIT:C4923 Glottis Carcinoma 7 52206 -NCIT:C8186 Glottic Squamous Cell Carcinoma 8 52207 -NCIT:C8189 Glottis Verrucous Carcinoma 9 52208 -NCIT:C4605 Benign Glottis Neoplasm 6 52209 -NCIT:C4426 Subglottis Neoplasm 5 52210 -NCIT:C3546 Malignant Subglottis Neoplasm 6 52211 -NCIT:C5972 Subglottic Carcinoma 7 52212 -NCIT:C8187 Subglottic Squamous Cell Carcinoma 8 52213 -NCIT:C8190 Subglottic Verrucous Carcinoma 9 52214 -NCIT:C4427 Benign Subglottis Neoplasm 6 52215 -NCIT:C6026 Subglottic Hemangioma 7 52216 -NCIT:C6023 Laryngeal Neuroendocrine Neoplasm 5 52217 -NCIT:C173390 Laryngeal Neuroendocrine Carcinoma 6 52218 -NCIT:C173395 Laryngeal Large Cell Neuroendocrine Carcinoma 7 52219 -NCIT:C6025 Laryngeal Small Cell Neuroendocrine Carcinoma 7 52220 -NCIT:C173391 Laryngeal Neuroendocrine Tumor 6 52221 -NCIT:C173392 Laryngeal Neuroendocrine Tumor G2 7 52222 -NCIT:C188223 Laryngeal Neuroendocrine Tumor G1 7 52223 -NCIT:C6409 Laryngeal Paraganglioma 6 52224 -NCIT:C6793 Supraglottis Neoplasm 5 52225 -NCIT:C3545 Malignant Supraglottis Neoplasm 6 52226 -NCIT:C4836 Malignant Epiglottis Neoplasm 7 52227 -NCIT:C35697 Epiglottic Carcinoma 8 52228 -NCIT:C181714 Epiglottic Squamous Cell Carcinoma 9 52229 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 10 52230 -NCIT:C5973 Supraglottic Carcinoma 7 52231 -NCIT:C35697 Epiglottic Carcinoma 8 52232 -NCIT:C181714 Epiglottic Squamous Cell Carcinoma 9 52233 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 10 52234 -NCIT:C4945 Supraglottic Squamous Cell Carcinoma 8 52235 -NCIT:C181714 Epiglottic Squamous Cell Carcinoma 9 52236 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 10 52237 -NCIT:C8191 Supraglottic Verrucous Carcinoma 9 52238 -NCIT:C4933 Epiglottis Neoplasm 6 52239 -NCIT:C4606 Benign Epiglottis Neoplasm 7 52240 -NCIT:C4836 Malignant Epiglottis Neoplasm 7 52241 -NCIT:C35697 Epiglottic Carcinoma 8 52242 -NCIT:C181714 Epiglottic Squamous Cell Carcinoma 9 52243 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 10 52244 -NCIT:C8414 Benign Supraglottis Neoplasm 6 52245 -NCIT:C4606 Benign Epiglottis Neoplasm 7 52246 -NCIT:C7484 Malignant Laryngeal Neoplasm 5 52247 -NCIT:C173400 Malignant Laryngeal Soft Tissue Neoplasm 6 52248 -NCIT:C173408 Laryngeal Soft Tissue Sarcoma 7 52249 -NCIT:C6021 Laryngeal Liposarcoma 8 52250 -NCIT:C6022 Laryngeal Leiomyosarcoma 8 52251 -NCIT:C3544 Malignant Glottis Neoplasm 6 52252 -NCIT:C4923 Glottis Carcinoma 7 52253 -NCIT:C8186 Glottic Squamous Cell Carcinoma 8 52254 -NCIT:C8189 Glottis Verrucous Carcinoma 9 52255 -NCIT:C3545 Malignant Supraglottis Neoplasm 6 52256 -NCIT:C4836 Malignant Epiglottis Neoplasm 7 52257 -NCIT:C35697 Epiglottic Carcinoma 8 52258 -NCIT:C181714 Epiglottic Squamous Cell Carcinoma 9 52259 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 10 52260 -NCIT:C5973 Supraglottic Carcinoma 7 52261 -NCIT:C35697 Epiglottic Carcinoma 8 52262 -NCIT:C181714 Epiglottic Squamous Cell Carcinoma 9 52263 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 10 52264 -NCIT:C4945 Supraglottic Squamous Cell Carcinoma 8 52265 -NCIT:C181714 Epiglottic Squamous Cell Carcinoma 9 52266 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 10 52267 -NCIT:C8191 Supraglottic Verrucous Carcinoma 9 52268 -NCIT:C3546 Malignant Subglottis Neoplasm 6 52269 -NCIT:C5972 Subglottic Carcinoma 7 52270 -NCIT:C8187 Subglottic Squamous Cell Carcinoma 8 52271 -NCIT:C8190 Subglottic Verrucous Carcinoma 9 52272 -NCIT:C4855 Laryngeal Carcinoma 6 52273 -NCIT:C118811 Childhood Laryngeal Carcinoma 7 52274 -NCIT:C133156 Laryngeal Cancer by AJCC v8 Stage 7 52275 -NCIT:C133158 Stage I Laryngeal Cancer AJCC v8 8 52276 -NCIT:C133159 Stage II Laryngeal Cancer AJCC v8 8 52277 -NCIT:C133160 Stage III Laryngeal Cancer AJCC v8 8 52278 -NCIT:C133161 Stage IV Laryngeal Cancer AJCC v8 8 52279 -NCIT:C133162 Stage IVA Laryngeal Cancer AJCC v8 9 52280 -NCIT:C133163 Stage IVB Laryngeal Cancer AJCC v8 9 52281 -NCIT:C133164 Stage IVC Laryngeal Cancer AJCC v8 9 52282 -NCIT:C9100 Stage 0 Laryngeal Cancer AJCC v6, v7, and V8 8 52283 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 9 52284 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 10 52285 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 10 52286 -NCIT:C156085 Metastatic Laryngeal Carcinoma 7 52287 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 8 52288 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 52289 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 52290 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 8 52291 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 52292 -NCIT:C173390 Laryngeal Neuroendocrine Carcinoma 7 52293 -NCIT:C173395 Laryngeal Large Cell Neuroendocrine Carcinoma 8 52294 -NCIT:C6025 Laryngeal Small Cell Neuroendocrine Carcinoma 8 52295 -NCIT:C27929 Alcohol-Related Laryngeal Carcinoma 7 52296 -NCIT:C4034 Recurrent Laryngeal Carcinoma 7 52297 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 8 52298 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 9 52299 -NCIT:C4044 Laryngeal Squamous Cell Carcinoma 7 52300 -NCIT:C148383 Refractory Laryngeal Squamous Cell Carcinoma 8 52301 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 8 52302 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 52303 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 52304 -NCIT:C172645 Unresectable Laryngeal Squamous Cell Carcinoma 8 52305 -NCIT:C4945 Supraglottic Squamous Cell Carcinoma 8 52306 -NCIT:C181714 Epiglottic Squamous Cell Carcinoma 9 52307 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 10 52308 -NCIT:C8191 Supraglottic Verrucous Carcinoma 9 52309 -NCIT:C54334 Laryngeal Basaloid Carcinoma 8 52310 -NCIT:C54335 Laryngeal Papillary Squamous Cell Carcinoma 8 52311 -NCIT:C54336 Laryngeal Squamous Cell Carcinoma, Spindle Cell Variant 8 52312 -NCIT:C54337 Laryngeal Acantholytic Squamous Cell Carcinoma 8 52313 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 8 52314 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 9 52315 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 9 52316 -NCIT:C8186 Glottic Squamous Cell Carcinoma 8 52317 -NCIT:C8189 Glottis Verrucous Carcinoma 9 52318 -NCIT:C8187 Subglottic Squamous Cell Carcinoma 8 52319 -NCIT:C8190 Subglottic Verrucous Carcinoma 9 52320 -NCIT:C8188 Laryngeal Verrucous Carcinoma 8 52321 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 9 52322 -NCIT:C8189 Glottis Verrucous Carcinoma 9 52323 -NCIT:C8190 Subglottic Verrucous Carcinoma 9 52324 -NCIT:C8191 Supraglottic Verrucous Carcinoma 9 52325 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 9 52326 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 9 52327 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 9 52328 -NCIT:C8244 Stage IV Laryngeal Verrucous Carcinoma AJCC v7 9 52329 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 10 52330 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 10 52331 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 10 52332 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 9 52333 -NCIT:C8237 Stage I Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 8 52334 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 9 52335 -NCIT:C8239 Stage II Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 8 52336 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 9 52337 -NCIT:C8241 Stage III Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 8 52338 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 9 52339 -NCIT:C8243 Stage IV Laryngeal Squamous Cell Carcinoma AJCC v7 8 52340 -NCIT:C6122 Stage IVA Laryngeal Squamous Cell Carcinoma AJCC v7 9 52341 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 10 52342 -NCIT:C6123 Stage IVB Laryngeal Squamous Cell Carcinoma AJCC v7 9 52343 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 10 52344 -NCIT:C6124 Stage IVC Laryngeal Squamous Cell Carcinoma AJCC v7 9 52345 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 10 52346 -NCIT:C8244 Stage IV Laryngeal Verrucous Carcinoma AJCC v7 9 52347 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 10 52348 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 10 52349 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 10 52350 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 8 52351 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 9 52352 -NCIT:C4923 Glottis Carcinoma 7 52353 -NCIT:C8186 Glottic Squamous Cell Carcinoma 8 52354 -NCIT:C8189 Glottis Verrucous Carcinoma 9 52355 -NCIT:C54338 Laryngeal Adenosquamous Carcinoma 7 52356 -NCIT:C54339 Laryngeal Undifferentiated Carcinoma 7 52357 -NCIT:C54341 Laryngeal Lymphoepithelial Carcinoma 8 52358 -NCIT:C54342 Laryngeal Giant Cell Carcinoma 8 52359 -NCIT:C5972 Subglottic Carcinoma 7 52360 -NCIT:C8187 Subglottic Squamous Cell Carcinoma 8 52361 -NCIT:C8190 Subglottic Verrucous Carcinoma 9 52362 -NCIT:C5973 Supraglottic Carcinoma 7 52363 -NCIT:C35697 Epiglottic Carcinoma 8 52364 -NCIT:C181714 Epiglottic Squamous Cell Carcinoma 9 52365 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 10 52366 -NCIT:C4945 Supraglottic Squamous Cell Carcinoma 8 52367 -NCIT:C181714 Epiglottic Squamous Cell Carcinoma 9 52368 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 10 52369 -NCIT:C8191 Supraglottic Verrucous Carcinoma 9 52370 -NCIT:C90527 Laryngeal Cancer by AJCC v6 Stage 7 52371 -NCIT:C6868 Stage IV Laryngeal Cancer AJCC v6 8 52372 -NCIT:C8041 Stage I Laryngeal Cancer AJCC v6 and v7 8 52373 -NCIT:C8237 Stage I Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 9 52374 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 52375 -NCIT:C8042 Stage II Laryngeal Cancer AJCC v6 and v7 8 52376 -NCIT:C8239 Stage II Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 9 52377 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 52378 -NCIT:C8043 Stage III Laryngeal Cancer AJCC v6 and v7 8 52379 -NCIT:C8241 Stage III Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 9 52380 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 52381 -NCIT:C9100 Stage 0 Laryngeal Cancer AJCC v6, v7, and V8 8 52382 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 9 52383 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 10 52384 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 10 52385 -NCIT:C91256 Laryngeal Cancer by AJCC v7 Stage 7 52386 -NCIT:C8041 Stage I Laryngeal Cancer AJCC v6 and v7 8 52387 -NCIT:C8237 Stage I Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 9 52388 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 52389 -NCIT:C8042 Stage II Laryngeal Cancer AJCC v6 and v7 8 52390 -NCIT:C8239 Stage II Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 9 52391 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 52392 -NCIT:C8043 Stage III Laryngeal Cancer AJCC v6 and v7 8 52393 -NCIT:C8241 Stage III Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 9 52394 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 52395 -NCIT:C89091 Stage IV Laryngeal Cancer AJCC v7 8 52396 -NCIT:C6003 Stage IVC Laryngeal Cancer AJCC v7 9 52397 -NCIT:C6124 Stage IVC Laryngeal Squamous Cell Carcinoma AJCC v7 10 52398 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 11 52399 -NCIT:C6004 Stage IVB Laryngeal Cancer AJCC v7 9 52400 -NCIT:C6123 Stage IVB Laryngeal Squamous Cell Carcinoma AJCC v7 10 52401 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 11 52402 -NCIT:C6005 Stage IVA Laryngeal Cancer AJCC v7 9 52403 -NCIT:C6122 Stage IVA Laryngeal Squamous Cell Carcinoma AJCC v7 10 52404 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 11 52405 -NCIT:C8243 Stage IV Laryngeal Squamous Cell Carcinoma AJCC v7 9 52406 -NCIT:C6122 Stage IVA Laryngeal Squamous Cell Carcinoma AJCC v7 10 52407 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 11 52408 -NCIT:C6123 Stage IVB Laryngeal Squamous Cell Carcinoma AJCC v7 10 52409 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 11 52410 -NCIT:C6124 Stage IVC Laryngeal Squamous Cell Carcinoma AJCC v7 10 52411 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 11 52412 -NCIT:C8244 Stage IV Laryngeal Verrucous Carcinoma AJCC v7 10 52413 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 11 52414 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 11 52415 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 11 52416 -NCIT:C9100 Stage 0 Laryngeal Cancer AJCC v6, v7, and V8 8 52417 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 9 52418 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 10 52419 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 10 52420 -NCIT:C9462 Laryngeal Adenoid Cystic Carcinoma 7 52421 -NCIT:C9463 Laryngeal Mucoepidermoid Carcinoma 7 52422 -NCIT:C6020 Laryngeal Sarcoma 6 52423 -NCIT:C173407 Laryngeal Chondrosarcoma 7 52424 -NCIT:C173408 Laryngeal Soft Tissue Sarcoma 7 52425 -NCIT:C6021 Laryngeal Liposarcoma 8 52426 -NCIT:C6022 Laryngeal Leiomyosarcoma 8 52427 -NCIT:C6031 Metastatic Malignant Neoplasm in the Larynx 6 52428 -NCIT:C3313 Parathyroid Gland Neoplasm 4 52429 -NCIT:C3630 Benign Parathyroid Gland Neoplasm 5 52430 -NCIT:C156757 Parathyroid Gland Adenoma 6 52431 -NCIT:C190066 Childhood Parathyroid Gland Adenoma 7 52432 -NCIT:C27393 Parathyroid Gland Oncocytic Adenoma 7 52433 -NCIT:C4154 Parathyroid Gland Chief Cell Adenoma 7 52434 -NCIT:C48283 Parathyroid Gland Lipoadenoma 7 52435 -NCIT:C7993 Parathyroid Gland Clear Cell Adenoma 7 52436 -NCIT:C4155 Parathyroid Gland Water-Clear Cell Adenoma 8 52437 -NCIT:C7994 Parathyroid Gland Mixed Cell Type Adenoma 7 52438 -NCIT:C48285 Atypical Parathyroid Gland Tumor 5 52439 -NCIT:C9322 Malignant Parathyroid Gland Neoplasm 5 52440 -NCIT:C4906 Parathyroid Gland Carcinoma 6 52441 -NCIT:C118819 Childhood Parathyroid Gland Carcinoma 7 52442 -NCIT:C7826 Localized Parathyroid Gland Carcinoma 7 52443 -NCIT:C7828 Recurrent Parathyroid Gland Carcinoma 7 52444 -NCIT:C9044 Metastatic Parathyroid Gland Carcinoma 7 52445 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 52446 -NCIT:C8557 Metastatic Malignant Neoplasm in the Parathyroid Glands 6 52447 -NCIT:C3325 Pharyngeal Neoplasm 4 52448 -NCIT:C3127 Hypopharyngeal Neoplasm 5 52449 -NCIT:C3596 Benign Hypopharyngeal Neoplasm 6 52450 -NCIT:C4886 Benign Pyriform Fossa Neoplasm 7 52451 -NCIT:C4424 Pyriform Fossa Neoplasm 6 52452 -NCIT:C3531 Malignant Pyriform Fossa Neoplasm 7 52453 -NCIT:C4886 Benign Pyriform Fossa Neoplasm 7 52454 -NCIT:C7190 Malignant Hypopharyngeal Neoplasm 6 52455 -NCIT:C3531 Malignant Pyriform Fossa Neoplasm 7 52456 -NCIT:C6028 Metastatic Malignant Neoplasm in the Hypopharynx 7 52457 -NCIT:C9323 Malignant Postcricoid Neoplasm 7 52458 -NCIT:C8595 Postcricoid Carcinoma 8 52459 -NCIT:C8185 Postcricoid Squamous Cell Carcinoma 9 52460 -NCIT:C9353 Recurrent Malignant Hypopharyngeal Neoplasm 7 52461 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 8 52462 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 9 52463 -NCIT:C9465 Hypopharyngeal Carcinoma 7 52464 -NCIT:C133003 Hypopharyngeal Carcinoma by AJCC v8 Stage 8 52465 -NCIT:C133005 Stage I Hypopharyngeal Carcinoma AJCC v8 9 52466 -NCIT:C133006 Stage II Hypopharyngeal Carcinoma AJCC v8 9 52467 -NCIT:C133007 Stage III Hypopharyngeal Carcinoma AJCC v8 9 52468 -NCIT:C133008 Stage IV Hypopharyngeal Carcinoma AJCC v8 9 52469 -NCIT:C133009 Stage IVA Hypopharyngeal Carcinoma AJCC v8 10 52470 -NCIT:C133010 Stage IVB Hypopharyngeal Carcinoma AJCC v8 10 52471 -NCIT:C133011 Stage IVC Hypopharyngeal Carcinoma AJCC v8 10 52472 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 9 52473 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 52474 -NCIT:C156081 Metastatic Hypopharyngeal Carcinoma 8 52475 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 52476 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 52477 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 52478 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 9 52479 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 52480 -NCIT:C4043 Hypopharyngeal Squamous Cell Carcinoma 8 52481 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 9 52482 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 52483 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 52484 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 52485 -NCIT:C172646 Unresectable Hypopharyngeal Squamous Cell Carcinoma 9 52486 -NCIT:C4943 Pyriform Fossa Squamous Cell Carcinoma 9 52487 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 9 52488 -NCIT:C8185 Postcricoid Squamous Cell Carcinoma 9 52489 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 52490 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 52491 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 52492 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 52493 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 52494 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 52495 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 52496 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 9 52497 -NCIT:C6700 Pyriform Fossa Carcinoma 8 52498 -NCIT:C4943 Pyriform Fossa Squamous Cell Carcinoma 9 52499 -NCIT:C8595 Postcricoid Carcinoma 8 52500 -NCIT:C8185 Postcricoid Squamous Cell Carcinoma 9 52501 -NCIT:C90524 Hypopharyngeal Carcinoma by AJCC v6 Stage 8 52502 -NCIT:C8038 Stage I Hypopharyngeal Carcinoma AJCC v6 9 52503 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 9 52504 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 52505 -NCIT:C8040 Stage III Hypopharyngeal Carcinoma AJCC v6 9 52506 -NCIT:C8533 Stage IV Hypopharyngeal Carcinoma AJCC v6 9 52507 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 9 52508 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 52509 -NCIT:C91251 Hypopharyngeal Carcinoma by AJCC v7 Stage 8 52510 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 9 52511 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 52512 -NCIT:C89045 Stage I Hypopharyngeal Carcinoma AJCC v7 9 52513 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 52514 -NCIT:C89046 Stage III Hypopharyngeal Carcinoma AJCC v7 9 52515 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 52516 -NCIT:C89047 Stage IV Hypopharyngeal Carcinoma AJCC v7 9 52517 -NCIT:C5992 Stage IVA Hypopharyngeal Carcinoma AJCC v7 10 52518 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 52519 -NCIT:C5993 Stage IVB Hypopharyngeal Carcinoma AJCC v7 10 52520 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 52521 -NCIT:C5994 Stage IVC Hypopharyngeal Carcinoma AJCC v7 10 52522 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 52523 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 52524 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 52525 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 52526 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 52527 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 9 52528 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 52529 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 8 52530 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 9 52531 -NCIT:C3257 Nasopharyngeal Neoplasm 5 52532 -NCIT:C173352 Nasopharyngeal Pituitary Neuroendocrine Tumor 6 52533 -NCIT:C3595 Benign Nasopharyngeal Neoplasm 6 52534 -NCIT:C27479 Nasopharyngeal Angiofibroma 7 52535 -NCIT:C6034 Nasopharyngeal Polyp 7 52536 -NCIT:C6037 Nasopharyngeal Squamous Papilloma 7 52537 -NCIT:C48316 Nasopharyngeal Paraganglioma 6 52538 -NCIT:C9321 Malignant Nasopharyngeal Neoplasm 6 52539 -NCIT:C173357 Nasopharyngeal Lymphoma 7 52540 -NCIT:C173359 Nasopharyngeal Non-Hodgkin Lymphoma 8 52541 -NCIT:C173361 Nasopharyngeal Hodgkin Lymphoma 8 52542 -NCIT:C178522 Nasopharyngeal Melanoma 7 52543 -NCIT:C3871 Nasopharyngeal Carcinoma 7 52544 -NCIT:C132816 Nasopharyngeal Carcinoma by AJCC v8 Stage 8 52545 -NCIT:C132817 Stage I Nasopharyngeal Carcinoma AJCC v8 9 52546 -NCIT:C132818 Stage II Nasopharyngeal Carcinoma AJCC v8 9 52547 -NCIT:C132819 Stage III Nasopharyngeal Carcinoma AJCC v8 9 52548 -NCIT:C132820 Stage IV Nasopharyngeal Carcinoma AJCC v8 9 52549 -NCIT:C132821 Stage IVA Nasopharyngeal Carcinoma AJCC v8 10 52550 -NCIT:C132822 Stage IVB Nasopharyngeal Carcinoma AJCC v8 10 52551 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 9 52552 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 10 52553 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 52554 -NCIT:C148434 Refractory Nasopharyngeal Carcinoma 8 52555 -NCIT:C156079 Metastatic Nasopharyngeal Carcinoma 8 52556 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 52557 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 52558 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 52559 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 52560 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 52561 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 52562 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 9 52563 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 52564 -NCIT:C165176 Unresectable Nasopharyngeal Carcinoma 8 52565 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 9 52566 -NCIT:C167265 Nasopharyngeal Squamous Cell Carcinoma 8 52567 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 52568 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 52569 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 52570 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 52571 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 52572 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 52573 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 9 52574 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 52575 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 52576 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 9 52577 -NCIT:C54360 Nasopharyngeal Basaloid Carcinoma 9 52578 -NCIT:C7373 Nasopharyngeal Nonkeratinizing Carcinoma 9 52579 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 52580 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 52581 -NCIT:C54389 Nasopharyngeal Differentiated Carcinoma 10 52582 -NCIT:C8023 Nasopharyngeal Undifferentiated Carcinoma 10 52583 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 52584 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 11 52585 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 52586 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 52587 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 52588 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 52589 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 11 52590 -NCIT:C7992 Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 52591 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 52592 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 52593 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 52594 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 52595 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 52596 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 52597 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 52598 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 52599 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 52600 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 52601 -NCIT:C173340 Nasopharyngeal Adenoid Cystic Carcinoma 8 52602 -NCIT:C190276 Childhood Nasopharyngeal Carcinoma 8 52603 -NCIT:C54400 Nasopharyngeal Papillary Adenocarcinoma 8 52604 -NCIT:C90522 Nasopharyngeal Carcinoma by AJCC v6 Stage 8 52605 -NCIT:C7395 Stage I Nasopharyngeal Carcinoma AJCC v6 9 52606 -NCIT:C7396 Stage III Nasopharyngeal Carcinoma AJCC v6 9 52607 -NCIT:C7397 Stage IV Nasopharyngeal Carcinoma AJCC v6 9 52608 -NCIT:C7920 Stage II Nasopharyngeal Carcinoma AJCC v6 9 52609 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 9 52610 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 10 52611 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 52612 -NCIT:C91244 Nasopharyngeal Carcinoma by AJCC v7 Stage 8 52613 -NCIT:C88981 Stage I Nasopharyngeal Carcinoma AJCC v7 9 52614 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 52615 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 52616 -NCIT:C88982 Stage II Nasopharyngeal Carcinoma AJCC v7 9 52617 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 52618 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 52619 -NCIT:C88983 Stage III Nasopharyngeal Carcinoma AJCC v7 9 52620 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 52621 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 52622 -NCIT:C88984 Stage IV Nasopharyngeal Carcinoma AJCC v7 9 52623 -NCIT:C5995 Stage IVC Nasopharyngeal Carcinoma AJCC v7 10 52624 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 52625 -NCIT:C5996 Stage IVB Nasopharyngeal Carcinoma AJCC v7 10 52626 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 52627 -NCIT:C5997 Stage IVA Nasopharyngeal Carcinoma AJCC v7 10 52628 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 52629 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 52630 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 52631 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 52632 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 52633 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 52634 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 9 52635 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 10 52636 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 52637 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 8 52638 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 9 52639 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 52640 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 52641 -NCIT:C6030 Metastatic Malignant Neoplasm in the Nasopharynx 7 52642 -NCIT:C9268 Recurrent Malignant Nasopharyngeal Neoplasm 7 52643 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 8 52644 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 9 52645 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 52646 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 52647 -NCIT:C3291 Oropharyngeal Neoplasm 5 52648 -NCIT:C4604 Benign Oropharyngeal Neoplasm 6 52649 -NCIT:C173575 Oropharyngeal Pleomorphic Adenoma 7 52650 -NCIT:C5988 Oropharyngeal Polyp 7 52651 -NCIT:C6038 Oropharyngeal Squamous Papilloma 7 52652 -NCIT:C7398 Malignant Oropharyngeal Neoplasm 6 52653 -NCIT:C173577 Oropharyngeal Lymphoma 7 52654 -NCIT:C173578 Oropharyngeal Hodgkin Lymphoma 8 52655 -NCIT:C173579 Oropharyngeal Non-Hodgkin Lymphoma 8 52656 -NCIT:C188072 Tonsillar Diffuse Large B-Cell Lymphoma 9 52657 -NCIT:C188080 Tonsillar Mantle Cell Lymphoma 9 52658 -NCIT:C5918 Tonsillar Lymphoma 8 52659 -NCIT:C188072 Tonsillar Diffuse Large B-Cell Lymphoma 9 52660 -NCIT:C188080 Tonsillar Mantle Cell Lymphoma 9 52661 -NCIT:C3529 Malignant Soft Palate Neoplasm 7 52662 -NCIT:C35177 Malignant Uvula Neoplasm 8 52663 -NCIT:C8395 Soft Palate Carcinoma 8 52664 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 52665 -NCIT:C6029 Metastatic Malignant Neoplasm in the Oropharynx 7 52666 -NCIT:C9105 Oropharyngeal Carcinoma 7 52667 -NCIT:C132882 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Stage 8 52668 -NCIT:C132883 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Clinical Stage 9 52669 -NCIT:C132885 Clinical Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 52670 -NCIT:C132886 Clinical Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 52671 -NCIT:C132891 Clinical Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 52672 -NCIT:C132893 Clinical Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 52673 -NCIT:C132884 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Pathologic Stage 9 52674 -NCIT:C132898 Pathologic Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 52675 -NCIT:C132899 Pathologic Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 52676 -NCIT:C132900 Pathologic Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 52677 -NCIT:C132901 Pathologic Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 52678 -NCIT:C132994 Oropharyngeal (p16-Negative) Carcinoma by AJCC v8 Stage 8 52679 -NCIT:C132995 Stage 0 Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 52680 -NCIT:C132996 Stage I Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 52681 -NCIT:C132997 Stage II Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 52682 -NCIT:C132998 Stage III Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 52683 -NCIT:C132999 Stage IV Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 52684 -NCIT:C133000 Stage IVA Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 52685 -NCIT:C133001 Stage IVB Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 52686 -NCIT:C133002 Stage IVC Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 52687 -NCIT:C156082 Metastatic Oropharyngeal Carcinoma 8 52688 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 52689 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 52690 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 52691 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 52692 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 9 52693 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 52694 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 52695 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 9 52696 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 52697 -NCIT:C173576 Oropharyngeal Polymorphous Adenocarcinoma 8 52698 -NCIT:C4825 Tonsillar Carcinoma 8 52699 -NCIT:C8183 Tonsillar Squamous Cell Carcinoma 9 52700 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 10 52701 -NCIT:C6241 Oropharyngeal Adenoid Cystic Carcinoma 8 52702 -NCIT:C8051 Recurrent Oropharyngeal Carcinoma 8 52703 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 9 52704 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 10 52705 -NCIT:C8181 Oropharyngeal Squamous Cell Carcinoma 8 52706 -NCIT:C126750 Oropharyngeal Poorly Differentiated Carcinoma 9 52707 -NCIT:C126751 Oropharyngeal Basaloid Carcinoma 9 52708 -NCIT:C147906 Oropharyngeal p16INK4a-Negative Squamous Cell Carcinoma 9 52709 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 9 52710 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 52711 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 52712 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 52713 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 52714 -NCIT:C162787 Resectable Oropharyngeal Squamous Cell Carcinoma 9 52715 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 10 52716 -NCIT:C162833 Unresectable Oropharyngeal Squamous Cell Carcinoma 9 52717 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 10 52718 -NCIT:C173414 Oropharyngeal Human Papillomavirus-Negative Squamous Cell Carcinoma 9 52719 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 52720 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 52721 -NCIT:C68610 Oropharyngeal Undifferentiated Carcinoma 9 52722 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 52723 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 52724 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 52725 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 52726 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 52727 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 52728 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 52729 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 10 52730 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 52731 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 10 52732 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 10 52733 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 10 52734 -NCIT:C8183 Tonsillar Squamous Cell Carcinoma 9 52735 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 10 52736 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 52737 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 52738 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 52739 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 52740 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 9 52741 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 52742 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 9 52743 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 52744 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 52745 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 52746 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 52747 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 52748 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 52749 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 52750 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 52751 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 52752 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 52753 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 9 52754 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 10 52755 -NCIT:C87055 Oropharyngeal Human Papillomavirus-Positive Squamous Cell Carcinoma 9 52756 -NCIT:C8395 Soft Palate Carcinoma 8 52757 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 52758 -NCIT:C90523 Oropharyngeal Carcinoma by AJCC v6 Stage 8 52759 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 9 52760 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 52761 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 9 52762 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 52763 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 52764 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 9 52765 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 52766 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 52767 -NCIT:C8050 Stage III Oropharyngeal Carcinoma AJCC v6 9 52768 -NCIT:C9218 Stage IV Oropharyngeal Carcinoma AJCC v6 9 52769 -NCIT:C91248 Oropharyngeal Carcinoma by AJCC v7 Stage 8 52770 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 9 52771 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 52772 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 9 52773 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 52774 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 52775 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 9 52776 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 52777 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 52778 -NCIT:C89021 Stage III Oropharyngeal Carcinoma AJCC v7 9 52779 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 52780 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 52781 -NCIT:C89023 Stage IV Oropharyngeal Carcinoma AJCC v7 9 52782 -NCIT:C5985 Stage IVA Oropharyngeal Carcinoma AJCC v7 10 52783 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 52784 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 52785 -NCIT:C5986 Stage IVB Oropharyngeal Carcinoma AJCC v7 10 52786 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 52787 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 52788 -NCIT:C5987 Stage IVC Oropharyngeal Carcinoma AJCC v7 10 52789 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 52790 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 52791 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 52792 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 52793 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 52794 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 52795 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 52796 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 52797 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 52798 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 52799 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 52800 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 52801 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 52802 -NCIT:C3597 Benign Pharyngeal Neoplasm 5 52803 -NCIT:C3595 Benign Nasopharyngeal Neoplasm 6 52804 -NCIT:C27479 Nasopharyngeal Angiofibroma 7 52805 -NCIT:C6034 Nasopharyngeal Polyp 7 52806 -NCIT:C6037 Nasopharyngeal Squamous Papilloma 7 52807 -NCIT:C3596 Benign Hypopharyngeal Neoplasm 6 52808 -NCIT:C4886 Benign Pyriform Fossa Neoplasm 7 52809 -NCIT:C4604 Benign Oropharyngeal Neoplasm 6 52810 -NCIT:C173575 Oropharyngeal Pleomorphic Adenoma 7 52811 -NCIT:C5988 Oropharyngeal Polyp 7 52812 -NCIT:C6038 Oropharyngeal Squamous Papilloma 7 52813 -NCIT:C7545 Malignant Pharyngeal Neoplasm 5 52814 -NCIT:C150531 Recurrent Malignant Pharyngeal Neoplasm 6 52815 -NCIT:C5103 Recurrent Pharyngeal Carcinoma 7 52816 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 8 52817 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 9 52818 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 52819 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 52820 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 9 52821 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 10 52822 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 9 52823 -NCIT:C8051 Recurrent Oropharyngeal Carcinoma 8 52824 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 9 52825 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 10 52826 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 8 52827 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 9 52828 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 52829 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 52830 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 8 52831 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 9 52832 -NCIT:C9268 Recurrent Malignant Nasopharyngeal Neoplasm 7 52833 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 8 52834 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 9 52835 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 52836 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 52837 -NCIT:C9353 Recurrent Malignant Hypopharyngeal Neoplasm 7 52838 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 8 52839 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 9 52840 -NCIT:C150532 Refractory Malignant Pharyngeal Neoplasm 6 52841 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 7 52842 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 7 52843 -NCIT:C148434 Refractory Nasopharyngeal Carcinoma 7 52844 -NCIT:C173354 Pharyngeal Lymphoma 6 52845 -NCIT:C173355 Pharyngeal Non-Hodgkin Lymphoma 7 52846 -NCIT:C173359 Nasopharyngeal Non-Hodgkin Lymphoma 8 52847 -NCIT:C173579 Oropharyngeal Non-Hodgkin Lymphoma 8 52848 -NCIT:C188072 Tonsillar Diffuse Large B-Cell Lymphoma 9 52849 -NCIT:C188080 Tonsillar Mantle Cell Lymphoma 9 52850 -NCIT:C173356 Pharyngeal Hodgkin Lymphoma 7 52851 -NCIT:C173361 Nasopharyngeal Hodgkin Lymphoma 8 52852 -NCIT:C173578 Oropharyngeal Hodgkin Lymphoma 8 52853 -NCIT:C173357 Nasopharyngeal Lymphoma 7 52854 -NCIT:C173359 Nasopharyngeal Non-Hodgkin Lymphoma 8 52855 -NCIT:C173361 Nasopharyngeal Hodgkin Lymphoma 8 52856 -NCIT:C173577 Oropharyngeal Lymphoma 7 52857 -NCIT:C173578 Oropharyngeal Hodgkin Lymphoma 8 52858 -NCIT:C173579 Oropharyngeal Non-Hodgkin Lymphoma 8 52859 -NCIT:C188072 Tonsillar Diffuse Large B-Cell Lymphoma 9 52860 -NCIT:C188080 Tonsillar Mantle Cell Lymphoma 9 52861 -NCIT:C5918 Tonsillar Lymphoma 8 52862 -NCIT:C188072 Tonsillar Diffuse Large B-Cell Lymphoma 9 52863 -NCIT:C188080 Tonsillar Mantle Cell Lymphoma 9 52864 -NCIT:C178521 Pharyngeal Melanoma 6 52865 -NCIT:C178522 Nasopharyngeal Melanoma 7 52866 -NCIT:C7190 Malignant Hypopharyngeal Neoplasm 6 52867 -NCIT:C3531 Malignant Pyriform Fossa Neoplasm 7 52868 -NCIT:C6028 Metastatic Malignant Neoplasm in the Hypopharynx 7 52869 -NCIT:C9323 Malignant Postcricoid Neoplasm 7 52870 -NCIT:C8595 Postcricoid Carcinoma 8 52871 -NCIT:C8185 Postcricoid Squamous Cell Carcinoma 9 52872 -NCIT:C9353 Recurrent Malignant Hypopharyngeal Neoplasm 7 52873 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 8 52874 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 9 52875 -NCIT:C9465 Hypopharyngeal Carcinoma 7 52876 -NCIT:C133003 Hypopharyngeal Carcinoma by AJCC v8 Stage 8 52877 -NCIT:C133005 Stage I Hypopharyngeal Carcinoma AJCC v8 9 52878 -NCIT:C133006 Stage II Hypopharyngeal Carcinoma AJCC v8 9 52879 -NCIT:C133007 Stage III Hypopharyngeal Carcinoma AJCC v8 9 52880 -NCIT:C133008 Stage IV Hypopharyngeal Carcinoma AJCC v8 9 52881 -NCIT:C133009 Stage IVA Hypopharyngeal Carcinoma AJCC v8 10 52882 -NCIT:C133010 Stage IVB Hypopharyngeal Carcinoma AJCC v8 10 52883 -NCIT:C133011 Stage IVC Hypopharyngeal Carcinoma AJCC v8 10 52884 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 9 52885 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 52886 -NCIT:C156081 Metastatic Hypopharyngeal Carcinoma 8 52887 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 52888 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 52889 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 52890 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 9 52891 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 52892 -NCIT:C4043 Hypopharyngeal Squamous Cell Carcinoma 8 52893 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 9 52894 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 52895 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 52896 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 52897 -NCIT:C172646 Unresectable Hypopharyngeal Squamous Cell Carcinoma 9 52898 -NCIT:C4943 Pyriform Fossa Squamous Cell Carcinoma 9 52899 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 9 52900 -NCIT:C8185 Postcricoid Squamous Cell Carcinoma 9 52901 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 52902 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 52903 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 52904 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 52905 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 52906 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 52907 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 52908 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 9 52909 -NCIT:C6700 Pyriform Fossa Carcinoma 8 52910 -NCIT:C4943 Pyriform Fossa Squamous Cell Carcinoma 9 52911 -NCIT:C8595 Postcricoid Carcinoma 8 52912 -NCIT:C8185 Postcricoid Squamous Cell Carcinoma 9 52913 -NCIT:C90524 Hypopharyngeal Carcinoma by AJCC v6 Stage 8 52914 -NCIT:C8038 Stage I Hypopharyngeal Carcinoma AJCC v6 9 52915 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 9 52916 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 52917 -NCIT:C8040 Stage III Hypopharyngeal Carcinoma AJCC v6 9 52918 -NCIT:C8533 Stage IV Hypopharyngeal Carcinoma AJCC v6 9 52919 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 9 52920 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 52921 -NCIT:C91251 Hypopharyngeal Carcinoma by AJCC v7 Stage 8 52922 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 9 52923 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 52924 -NCIT:C89045 Stage I Hypopharyngeal Carcinoma AJCC v7 9 52925 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 52926 -NCIT:C89046 Stage III Hypopharyngeal Carcinoma AJCC v7 9 52927 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 52928 -NCIT:C89047 Stage IV Hypopharyngeal Carcinoma AJCC v7 9 52929 -NCIT:C5992 Stage IVA Hypopharyngeal Carcinoma AJCC v7 10 52930 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 52931 -NCIT:C5993 Stage IVB Hypopharyngeal Carcinoma AJCC v7 10 52932 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 52933 -NCIT:C5994 Stage IVC Hypopharyngeal Carcinoma AJCC v7 10 52934 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 52935 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 52936 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 52937 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 52938 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 52939 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 9 52940 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 52941 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 8 52942 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 9 52943 -NCIT:C7398 Malignant Oropharyngeal Neoplasm 6 52944 -NCIT:C173577 Oropharyngeal Lymphoma 7 52945 -NCIT:C173578 Oropharyngeal Hodgkin Lymphoma 8 52946 -NCIT:C173579 Oropharyngeal Non-Hodgkin Lymphoma 8 52947 -NCIT:C188072 Tonsillar Diffuse Large B-Cell Lymphoma 9 52948 -NCIT:C188080 Tonsillar Mantle Cell Lymphoma 9 52949 -NCIT:C5918 Tonsillar Lymphoma 8 52950 -NCIT:C188072 Tonsillar Diffuse Large B-Cell Lymphoma 9 52951 -NCIT:C188080 Tonsillar Mantle Cell Lymphoma 9 52952 -NCIT:C3529 Malignant Soft Palate Neoplasm 7 52953 -NCIT:C35177 Malignant Uvula Neoplasm 8 52954 -NCIT:C8395 Soft Palate Carcinoma 8 52955 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 52956 -NCIT:C6029 Metastatic Malignant Neoplasm in the Oropharynx 7 52957 -NCIT:C9105 Oropharyngeal Carcinoma 7 52958 -NCIT:C132882 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Stage 8 52959 -NCIT:C132883 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Clinical Stage 9 52960 -NCIT:C132885 Clinical Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 52961 -NCIT:C132886 Clinical Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 52962 -NCIT:C132891 Clinical Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 52963 -NCIT:C132893 Clinical Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 52964 -NCIT:C132884 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Pathologic Stage 9 52965 -NCIT:C132898 Pathologic Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 52966 -NCIT:C132899 Pathologic Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 52967 -NCIT:C132900 Pathologic Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 52968 -NCIT:C132901 Pathologic Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 52969 -NCIT:C132994 Oropharyngeal (p16-Negative) Carcinoma by AJCC v8 Stage 8 52970 -NCIT:C132995 Stage 0 Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 52971 -NCIT:C132996 Stage I Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 52972 -NCIT:C132997 Stage II Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 52973 -NCIT:C132998 Stage III Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 52974 -NCIT:C132999 Stage IV Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 52975 -NCIT:C133000 Stage IVA Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 52976 -NCIT:C133001 Stage IVB Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 52977 -NCIT:C133002 Stage IVC Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 52978 -NCIT:C156082 Metastatic Oropharyngeal Carcinoma 8 52979 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 52980 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 52981 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 52982 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 52983 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 9 52984 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 52985 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 52986 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 9 52987 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 52988 -NCIT:C173576 Oropharyngeal Polymorphous Adenocarcinoma 8 52989 -NCIT:C4825 Tonsillar Carcinoma 8 52990 -NCIT:C8183 Tonsillar Squamous Cell Carcinoma 9 52991 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 10 52992 -NCIT:C6241 Oropharyngeal Adenoid Cystic Carcinoma 8 52993 -NCIT:C8051 Recurrent Oropharyngeal Carcinoma 8 52994 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 9 52995 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 10 52996 -NCIT:C8181 Oropharyngeal Squamous Cell Carcinoma 8 52997 -NCIT:C126750 Oropharyngeal Poorly Differentiated Carcinoma 9 52998 -NCIT:C126751 Oropharyngeal Basaloid Carcinoma 9 52999 -NCIT:C147906 Oropharyngeal p16INK4a-Negative Squamous Cell Carcinoma 9 53000 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 9 53001 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 53002 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 53003 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 53004 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 53005 -NCIT:C162787 Resectable Oropharyngeal Squamous Cell Carcinoma 9 53006 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 10 53007 -NCIT:C162833 Unresectable Oropharyngeal Squamous Cell Carcinoma 9 53008 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 10 53009 -NCIT:C173414 Oropharyngeal Human Papillomavirus-Negative Squamous Cell Carcinoma 9 53010 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 53011 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 53012 -NCIT:C68610 Oropharyngeal Undifferentiated Carcinoma 9 53013 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 53014 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 53015 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 53016 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 53017 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 53018 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 53019 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 53020 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 10 53021 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 53022 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 10 53023 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 10 53024 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 10 53025 -NCIT:C8183 Tonsillar Squamous Cell Carcinoma 9 53026 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 10 53027 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 53028 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 53029 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 53030 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 53031 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 9 53032 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 53033 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 9 53034 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 53035 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 53036 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 53037 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 53038 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 53039 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 53040 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 53041 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 53042 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 53043 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 53044 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 9 53045 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 10 53046 -NCIT:C87055 Oropharyngeal Human Papillomavirus-Positive Squamous Cell Carcinoma 9 53047 -NCIT:C8395 Soft Palate Carcinoma 8 53048 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 53049 -NCIT:C90523 Oropharyngeal Carcinoma by AJCC v6 Stage 8 53050 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 9 53051 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 53052 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 9 53053 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 53054 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 53055 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 9 53056 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 53057 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 53058 -NCIT:C8050 Stage III Oropharyngeal Carcinoma AJCC v6 9 53059 -NCIT:C9218 Stage IV Oropharyngeal Carcinoma AJCC v6 9 53060 -NCIT:C91248 Oropharyngeal Carcinoma by AJCC v7 Stage 8 53061 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 9 53062 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 53063 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 9 53064 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 53065 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 53066 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 9 53067 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 53068 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 53069 -NCIT:C89021 Stage III Oropharyngeal Carcinoma AJCC v7 9 53070 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 53071 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 53072 -NCIT:C89023 Stage IV Oropharyngeal Carcinoma AJCC v7 9 53073 -NCIT:C5985 Stage IVA Oropharyngeal Carcinoma AJCC v7 10 53074 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 53075 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 53076 -NCIT:C5986 Stage IVB Oropharyngeal Carcinoma AJCC v7 10 53077 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 53078 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 53079 -NCIT:C5987 Stage IVC Oropharyngeal Carcinoma AJCC v7 10 53080 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 53081 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 53082 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 53083 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 53084 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 53085 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 53086 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 53087 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 53088 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 53089 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 53090 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 53091 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 53092 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 53093 -NCIT:C7546 Metastatic Malignant Neoplasm in the Pharynx 6 53094 -NCIT:C6028 Metastatic Malignant Neoplasm in the Hypopharynx 7 53095 -NCIT:C6029 Metastatic Malignant Neoplasm in the Oropharynx 7 53096 -NCIT:C6030 Metastatic Malignant Neoplasm in the Nasopharynx 7 53097 -NCIT:C9321 Malignant Nasopharyngeal Neoplasm 6 53098 -NCIT:C173357 Nasopharyngeal Lymphoma 7 53099 -NCIT:C173359 Nasopharyngeal Non-Hodgkin Lymphoma 8 53100 -NCIT:C173361 Nasopharyngeal Hodgkin Lymphoma 8 53101 -NCIT:C178522 Nasopharyngeal Melanoma 7 53102 -NCIT:C3871 Nasopharyngeal Carcinoma 7 53103 -NCIT:C132816 Nasopharyngeal Carcinoma by AJCC v8 Stage 8 53104 -NCIT:C132817 Stage I Nasopharyngeal Carcinoma AJCC v8 9 53105 -NCIT:C132818 Stage II Nasopharyngeal Carcinoma AJCC v8 9 53106 -NCIT:C132819 Stage III Nasopharyngeal Carcinoma AJCC v8 9 53107 -NCIT:C132820 Stage IV Nasopharyngeal Carcinoma AJCC v8 9 53108 -NCIT:C132821 Stage IVA Nasopharyngeal Carcinoma AJCC v8 10 53109 -NCIT:C132822 Stage IVB Nasopharyngeal Carcinoma AJCC v8 10 53110 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 9 53111 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 10 53112 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 53113 -NCIT:C148434 Refractory Nasopharyngeal Carcinoma 8 53114 -NCIT:C156079 Metastatic Nasopharyngeal Carcinoma 8 53115 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 53116 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 53117 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 53118 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 53119 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 53120 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 53121 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 9 53122 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 53123 -NCIT:C165176 Unresectable Nasopharyngeal Carcinoma 8 53124 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 9 53125 -NCIT:C167265 Nasopharyngeal Squamous Cell Carcinoma 8 53126 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 53127 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 53128 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 53129 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 53130 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 53131 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 53132 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 9 53133 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 53134 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 53135 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 9 53136 -NCIT:C54360 Nasopharyngeal Basaloid Carcinoma 9 53137 -NCIT:C7373 Nasopharyngeal Nonkeratinizing Carcinoma 9 53138 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 53139 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 53140 -NCIT:C54389 Nasopharyngeal Differentiated Carcinoma 10 53141 -NCIT:C8023 Nasopharyngeal Undifferentiated Carcinoma 10 53142 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 53143 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 11 53144 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 53145 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 53146 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 53147 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 53148 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 11 53149 -NCIT:C7992 Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 53150 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 53151 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 53152 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 53153 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 53154 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 53155 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 53156 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 53157 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 53158 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 53159 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 53160 -NCIT:C173340 Nasopharyngeal Adenoid Cystic Carcinoma 8 53161 -NCIT:C190276 Childhood Nasopharyngeal Carcinoma 8 53162 -NCIT:C54400 Nasopharyngeal Papillary Adenocarcinoma 8 53163 -NCIT:C90522 Nasopharyngeal Carcinoma by AJCC v6 Stage 8 53164 -NCIT:C7395 Stage I Nasopharyngeal Carcinoma AJCC v6 9 53165 -NCIT:C7396 Stage III Nasopharyngeal Carcinoma AJCC v6 9 53166 -NCIT:C7397 Stage IV Nasopharyngeal Carcinoma AJCC v6 9 53167 -NCIT:C7920 Stage II Nasopharyngeal Carcinoma AJCC v6 9 53168 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 9 53169 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 10 53170 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 53171 -NCIT:C91244 Nasopharyngeal Carcinoma by AJCC v7 Stage 8 53172 -NCIT:C88981 Stage I Nasopharyngeal Carcinoma AJCC v7 9 53173 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 53174 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 53175 -NCIT:C88982 Stage II Nasopharyngeal Carcinoma AJCC v7 9 53176 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 53177 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 53178 -NCIT:C88983 Stage III Nasopharyngeal Carcinoma AJCC v7 9 53179 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 53180 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 53181 -NCIT:C88984 Stage IV Nasopharyngeal Carcinoma AJCC v7 9 53182 -NCIT:C5995 Stage IVC Nasopharyngeal Carcinoma AJCC v7 10 53183 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 53184 -NCIT:C5996 Stage IVB Nasopharyngeal Carcinoma AJCC v7 10 53185 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 53186 -NCIT:C5997 Stage IVA Nasopharyngeal Carcinoma AJCC v7 10 53187 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 53188 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 53189 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 53190 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 53191 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 53192 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 53193 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 9 53194 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 10 53195 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 53196 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 8 53197 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 9 53198 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 53199 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 53200 -NCIT:C6030 Metastatic Malignant Neoplasm in the Nasopharynx 7 53201 -NCIT:C9268 Recurrent Malignant Nasopharyngeal Neoplasm 7 53202 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 8 53203 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 9 53204 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 53205 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 53206 -NCIT:C9466 Pharyngeal Carcinoma 6 53207 -NCIT:C102872 Pharyngeal Squamous Cell Carcinoma 7 53208 -NCIT:C167265 Nasopharyngeal Squamous Cell Carcinoma 8 53209 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 53210 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 53211 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 53212 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 53213 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 53214 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 53215 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 9 53216 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 53217 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 53218 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 9 53219 -NCIT:C54360 Nasopharyngeal Basaloid Carcinoma 9 53220 -NCIT:C7373 Nasopharyngeal Nonkeratinizing Carcinoma 9 53221 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 53222 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 53223 -NCIT:C54389 Nasopharyngeal Differentiated Carcinoma 10 53224 -NCIT:C8023 Nasopharyngeal Undifferentiated Carcinoma 10 53225 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 53226 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 11 53227 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 53228 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 53229 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 53230 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 53231 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 11 53232 -NCIT:C7992 Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 53233 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 53234 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 53235 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 53236 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 53237 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 53238 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 53239 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 53240 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 53241 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 53242 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 53243 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 8 53244 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 53245 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 53246 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 53247 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 53248 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 53249 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 53250 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 53251 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 53252 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 53253 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 53254 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 53255 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 53256 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 53257 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 53258 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 53259 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 53260 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 53261 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 8 53262 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 9 53263 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 53264 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 53265 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 9 53266 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 10 53267 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 9 53268 -NCIT:C35693 Posterior Pharyngeal Wall Squamous Cell Carcinoma 8 53269 -NCIT:C4043 Hypopharyngeal Squamous Cell Carcinoma 8 53270 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 9 53271 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 53272 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 53273 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 53274 -NCIT:C172646 Unresectable Hypopharyngeal Squamous Cell Carcinoma 9 53275 -NCIT:C4943 Pyriform Fossa Squamous Cell Carcinoma 9 53276 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 9 53277 -NCIT:C8185 Postcricoid Squamous Cell Carcinoma 9 53278 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 53279 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 53280 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 53281 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 53282 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 53283 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 53284 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 53285 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 9 53286 -NCIT:C8181 Oropharyngeal Squamous Cell Carcinoma 8 53287 -NCIT:C126750 Oropharyngeal Poorly Differentiated Carcinoma 9 53288 -NCIT:C126751 Oropharyngeal Basaloid Carcinoma 9 53289 -NCIT:C147906 Oropharyngeal p16INK4a-Negative Squamous Cell Carcinoma 9 53290 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 9 53291 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 53292 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 53293 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 53294 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 53295 -NCIT:C162787 Resectable Oropharyngeal Squamous Cell Carcinoma 9 53296 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 10 53297 -NCIT:C162833 Unresectable Oropharyngeal Squamous Cell Carcinoma 9 53298 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 10 53299 -NCIT:C173414 Oropharyngeal Human Papillomavirus-Negative Squamous Cell Carcinoma 9 53300 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 53301 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 53302 -NCIT:C68610 Oropharyngeal Undifferentiated Carcinoma 9 53303 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 53304 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 53305 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 53306 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 53307 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 53308 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 53309 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 53310 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 10 53311 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 53312 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 10 53313 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 10 53314 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 10 53315 -NCIT:C8183 Tonsillar Squamous Cell Carcinoma 9 53316 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 10 53317 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 53318 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 53319 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 53320 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 53321 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 9 53322 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 53323 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 9 53324 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 53325 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 53326 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 53327 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 53328 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 53329 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 53330 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 53331 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 53332 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 53333 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 53334 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 9 53335 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 10 53336 -NCIT:C87055 Oropharyngeal Human Papillomavirus-Positive Squamous Cell Carcinoma 9 53337 -NCIT:C132814 Pharyngeal Carcinoma by AJCC v8 Stage 7 53338 -NCIT:C132816 Nasopharyngeal Carcinoma by AJCC v8 Stage 8 53339 -NCIT:C132817 Stage I Nasopharyngeal Carcinoma AJCC v8 9 53340 -NCIT:C132818 Stage II Nasopharyngeal Carcinoma AJCC v8 9 53341 -NCIT:C132819 Stage III Nasopharyngeal Carcinoma AJCC v8 9 53342 -NCIT:C132820 Stage IV Nasopharyngeal Carcinoma AJCC v8 9 53343 -NCIT:C132821 Stage IVA Nasopharyngeal Carcinoma AJCC v8 10 53344 -NCIT:C132822 Stage IVB Nasopharyngeal Carcinoma AJCC v8 10 53345 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 9 53346 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 10 53347 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 53348 -NCIT:C132882 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Stage 8 53349 -NCIT:C132883 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Clinical Stage 9 53350 -NCIT:C132885 Clinical Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 53351 -NCIT:C132886 Clinical Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 53352 -NCIT:C132891 Clinical Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 53353 -NCIT:C132893 Clinical Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 53354 -NCIT:C132884 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Pathologic Stage 9 53355 -NCIT:C132898 Pathologic Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 53356 -NCIT:C132899 Pathologic Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 53357 -NCIT:C132900 Pathologic Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 53358 -NCIT:C132901 Pathologic Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 53359 -NCIT:C132994 Oropharyngeal (p16-Negative) Carcinoma by AJCC v8 Stage 8 53360 -NCIT:C132995 Stage 0 Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 53361 -NCIT:C132996 Stage I Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 53362 -NCIT:C132997 Stage II Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 53363 -NCIT:C132998 Stage III Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 53364 -NCIT:C132999 Stage IV Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 53365 -NCIT:C133000 Stage IVA Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 53366 -NCIT:C133001 Stage IVB Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 53367 -NCIT:C133002 Stage IVC Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 53368 -NCIT:C133003 Hypopharyngeal Carcinoma by AJCC v8 Stage 8 53369 -NCIT:C133005 Stage I Hypopharyngeal Carcinoma AJCC v8 9 53370 -NCIT:C133006 Stage II Hypopharyngeal Carcinoma AJCC v8 9 53371 -NCIT:C133007 Stage III Hypopharyngeal Carcinoma AJCC v8 9 53372 -NCIT:C133008 Stage IV Hypopharyngeal Carcinoma AJCC v8 9 53373 -NCIT:C133009 Stage IVA Hypopharyngeal Carcinoma AJCC v8 10 53374 -NCIT:C133010 Stage IVB Hypopharyngeal Carcinoma AJCC v8 10 53375 -NCIT:C133011 Stage IVC Hypopharyngeal Carcinoma AJCC v8 10 53376 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 9 53377 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 53378 -NCIT:C156080 Metastatic Pharyngeal Carcinoma 7 53379 -NCIT:C156079 Metastatic Nasopharyngeal Carcinoma 8 53380 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 53381 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 53382 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 53383 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 53384 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 53385 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 53386 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 9 53387 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 53388 -NCIT:C156081 Metastatic Hypopharyngeal Carcinoma 8 53389 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 53390 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 53391 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 53392 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 9 53393 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 53394 -NCIT:C156082 Metastatic Oropharyngeal Carcinoma 8 53395 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 53396 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 53397 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 53398 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 53399 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 9 53400 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 53401 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 53402 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 9 53403 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 53404 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 8 53405 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 53406 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 9 53407 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 53408 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 53409 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 9 53410 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 53411 -NCIT:C170784 Advanced Pharyngeal Carcinoma 8 53412 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 9 53413 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 53414 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 53415 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 53416 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 53417 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 53418 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 9 53419 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 53420 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 8 53421 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 53422 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 53423 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 53424 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 53425 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 53426 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 53427 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 53428 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 53429 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 53430 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 53431 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 53432 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 53433 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 53434 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 53435 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 53436 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 53437 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 53438 -NCIT:C35692 Posterior Pharyngeal Wall Carcinoma 7 53439 -NCIT:C35693 Posterior Pharyngeal Wall Squamous Cell Carcinoma 8 53440 -NCIT:C3871 Nasopharyngeal Carcinoma 7 53441 -NCIT:C132816 Nasopharyngeal Carcinoma by AJCC v8 Stage 8 53442 -NCIT:C132817 Stage I Nasopharyngeal Carcinoma AJCC v8 9 53443 -NCIT:C132818 Stage II Nasopharyngeal Carcinoma AJCC v8 9 53444 -NCIT:C132819 Stage III Nasopharyngeal Carcinoma AJCC v8 9 53445 -NCIT:C132820 Stage IV Nasopharyngeal Carcinoma AJCC v8 9 53446 -NCIT:C132821 Stage IVA Nasopharyngeal Carcinoma AJCC v8 10 53447 -NCIT:C132822 Stage IVB Nasopharyngeal Carcinoma AJCC v8 10 53448 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 9 53449 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 10 53450 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 53451 -NCIT:C148434 Refractory Nasopharyngeal Carcinoma 8 53452 -NCIT:C156079 Metastatic Nasopharyngeal Carcinoma 8 53453 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 53454 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 53455 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 53456 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 53457 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 53458 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 53459 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 9 53460 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 53461 -NCIT:C165176 Unresectable Nasopharyngeal Carcinoma 8 53462 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 9 53463 -NCIT:C167265 Nasopharyngeal Squamous Cell Carcinoma 8 53464 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 53465 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 53466 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 53467 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 53468 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 53469 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 53470 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 9 53471 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 53472 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 53473 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 9 53474 -NCIT:C54360 Nasopharyngeal Basaloid Carcinoma 9 53475 -NCIT:C7373 Nasopharyngeal Nonkeratinizing Carcinoma 9 53476 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 53477 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 53478 -NCIT:C54389 Nasopharyngeal Differentiated Carcinoma 10 53479 -NCIT:C8023 Nasopharyngeal Undifferentiated Carcinoma 10 53480 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 53481 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 11 53482 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 53483 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 53484 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 53485 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 53486 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 11 53487 -NCIT:C7992 Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 53488 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 53489 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 53490 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 53491 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 53492 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 53493 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 53494 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 53495 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 53496 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 53497 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 53498 -NCIT:C173340 Nasopharyngeal Adenoid Cystic Carcinoma 8 53499 -NCIT:C190276 Childhood Nasopharyngeal Carcinoma 8 53500 -NCIT:C54400 Nasopharyngeal Papillary Adenocarcinoma 8 53501 -NCIT:C90522 Nasopharyngeal Carcinoma by AJCC v6 Stage 8 53502 -NCIT:C7395 Stage I Nasopharyngeal Carcinoma AJCC v6 9 53503 -NCIT:C7396 Stage III Nasopharyngeal Carcinoma AJCC v6 9 53504 -NCIT:C7397 Stage IV Nasopharyngeal Carcinoma AJCC v6 9 53505 -NCIT:C7920 Stage II Nasopharyngeal Carcinoma AJCC v6 9 53506 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 9 53507 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 10 53508 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 53509 -NCIT:C91244 Nasopharyngeal Carcinoma by AJCC v7 Stage 8 53510 -NCIT:C88981 Stage I Nasopharyngeal Carcinoma AJCC v7 9 53511 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 53512 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 53513 -NCIT:C88982 Stage II Nasopharyngeal Carcinoma AJCC v7 9 53514 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 53515 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 53516 -NCIT:C88983 Stage III Nasopharyngeal Carcinoma AJCC v7 9 53517 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 53518 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 53519 -NCIT:C88984 Stage IV Nasopharyngeal Carcinoma AJCC v7 9 53520 -NCIT:C5995 Stage IVC Nasopharyngeal Carcinoma AJCC v7 10 53521 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 53522 -NCIT:C5996 Stage IVB Nasopharyngeal Carcinoma AJCC v7 10 53523 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 53524 -NCIT:C5997 Stage IVA Nasopharyngeal Carcinoma AJCC v7 10 53525 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 53526 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 53527 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 53528 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 53529 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 53530 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 53531 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 9 53532 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 10 53533 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 53534 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 8 53535 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 9 53536 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 53537 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 53538 -NCIT:C4942 Stage 0 Pharyngeal Cancer 7 53539 -NCIT:C132995 Stage 0 Oropharyngeal (p16-Negative) Carcinoma AJCC v8 8 53540 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 8 53541 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 53542 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 8 53543 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 9 53544 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 9 53545 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 8 53546 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 9 53547 -NCIT:C5103 Recurrent Pharyngeal Carcinoma 7 53548 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 8 53549 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 9 53550 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 53551 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 53552 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 9 53553 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 10 53554 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 9 53555 -NCIT:C8051 Recurrent Oropharyngeal Carcinoma 8 53556 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 9 53557 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 10 53558 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 8 53559 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 9 53560 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 53561 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 53562 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 8 53563 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 9 53564 -NCIT:C5818 Pharyngeal Adenoid Cystic Carcinoma 7 53565 -NCIT:C173340 Nasopharyngeal Adenoid Cystic Carcinoma 8 53566 -NCIT:C6241 Oropharyngeal Adenoid Cystic Carcinoma 8 53567 -NCIT:C8768 Stage I Pharyngeal Cancer 7 53568 -NCIT:C132817 Stage I Nasopharyngeal Carcinoma AJCC v8 8 53569 -NCIT:C132885 Clinical Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 8 53570 -NCIT:C132898 Pathologic Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 8 53571 -NCIT:C132996 Stage I Oropharyngeal (p16-Negative) Carcinoma AJCC v8 8 53572 -NCIT:C133005 Stage I Hypopharyngeal Carcinoma AJCC v8 8 53573 -NCIT:C7395 Stage I Nasopharyngeal Carcinoma AJCC v6 8 53574 -NCIT:C8038 Stage I Hypopharyngeal Carcinoma AJCC v6 8 53575 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 8 53576 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 53577 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 53578 -NCIT:C88981 Stage I Nasopharyngeal Carcinoma AJCC v7 8 53579 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 53580 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 9 53581 -NCIT:C89045 Stage I Hypopharyngeal Carcinoma AJCC v7 8 53582 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 53583 -NCIT:C8769 Stage II Pharyngeal Cancer 7 53584 -NCIT:C132818 Stage II Nasopharyngeal Carcinoma AJCC v8 8 53585 -NCIT:C132886 Clinical Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 8 53586 -NCIT:C132899 Pathologic Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 8 53587 -NCIT:C132997 Stage II Oropharyngeal (p16-Negative) Carcinoma AJCC v8 8 53588 -NCIT:C133006 Stage II Hypopharyngeal Carcinoma AJCC v8 8 53589 -NCIT:C7920 Stage II Nasopharyngeal Carcinoma AJCC v6 8 53590 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 8 53591 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 53592 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 8 53593 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 53594 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 53595 -NCIT:C88982 Stage II Nasopharyngeal Carcinoma AJCC v7 8 53596 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 53597 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 9 53598 -NCIT:C8770 Stage III Pharyngeal Cancer 7 53599 -NCIT:C132819 Stage III Nasopharyngeal Carcinoma AJCC v8 8 53600 -NCIT:C132891 Clinical Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 8 53601 -NCIT:C132900 Pathologic Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 8 53602 -NCIT:C132998 Stage III Oropharyngeal (p16-Negative) Carcinoma AJCC v8 8 53603 -NCIT:C133007 Stage III Hypopharyngeal Carcinoma AJCC v8 8 53604 -NCIT:C7396 Stage III Nasopharyngeal Carcinoma AJCC v6 8 53605 -NCIT:C8040 Stage III Hypopharyngeal Carcinoma AJCC v6 8 53606 -NCIT:C8050 Stage III Oropharyngeal Carcinoma AJCC v6 8 53607 -NCIT:C88983 Stage III Nasopharyngeal Carcinoma AJCC v7 8 53608 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 53609 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 9 53610 -NCIT:C89021 Stage III Oropharyngeal Carcinoma AJCC v7 8 53611 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 9 53612 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 53613 -NCIT:C89046 Stage III Hypopharyngeal Carcinoma AJCC v7 8 53614 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 53615 -NCIT:C8771 Stage IV Pharyngeal Cancer 7 53616 -NCIT:C132820 Stage IV Nasopharyngeal Carcinoma AJCC v8 8 53617 -NCIT:C132821 Stage IVA Nasopharyngeal Carcinoma AJCC v8 9 53618 -NCIT:C132822 Stage IVB Nasopharyngeal Carcinoma AJCC v8 9 53619 -NCIT:C132893 Clinical Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 8 53620 -NCIT:C132901 Pathologic Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 8 53621 -NCIT:C132999 Stage IV Oropharyngeal (p16-Negative) Carcinoma AJCC v8 8 53622 -NCIT:C133000 Stage IVA Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 53623 -NCIT:C133001 Stage IVB Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 53624 -NCIT:C133002 Stage IVC Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 53625 -NCIT:C133008 Stage IV Hypopharyngeal Carcinoma AJCC v8 8 53626 -NCIT:C133009 Stage IVA Hypopharyngeal Carcinoma AJCC v8 9 53627 -NCIT:C133010 Stage IVB Hypopharyngeal Carcinoma AJCC v8 9 53628 -NCIT:C133011 Stage IVC Hypopharyngeal Carcinoma AJCC v8 9 53629 -NCIT:C6000 Stage IVA Pharyngeal Cancer 8 53630 -NCIT:C132821 Stage IVA Nasopharyngeal Carcinoma AJCC v8 9 53631 -NCIT:C133000 Stage IVA Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 53632 -NCIT:C133009 Stage IVA Hypopharyngeal Carcinoma AJCC v8 9 53633 -NCIT:C5985 Stage IVA Oropharyngeal Carcinoma AJCC v7 9 53634 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 53635 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 53636 -NCIT:C5992 Stage IVA Hypopharyngeal Carcinoma AJCC v7 9 53637 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 53638 -NCIT:C5997 Stage IVA Nasopharyngeal Carcinoma AJCC v7 9 53639 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 53640 -NCIT:C6001 Stage IVB Pharyngeal Cancer 8 53641 -NCIT:C132822 Stage IVB Nasopharyngeal Carcinoma AJCC v8 9 53642 -NCIT:C133001 Stage IVB Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 53643 -NCIT:C133010 Stage IVB Hypopharyngeal Carcinoma AJCC v8 9 53644 -NCIT:C5986 Stage IVB Oropharyngeal Carcinoma AJCC v7 9 53645 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 53646 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 53647 -NCIT:C5993 Stage IVB Hypopharyngeal Carcinoma AJCC v7 9 53648 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 53649 -NCIT:C5996 Stage IVB Nasopharyngeal Carcinoma AJCC v7 9 53650 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 53651 -NCIT:C6002 Stage IVC Pharyngeal Cancer 8 53652 -NCIT:C133002 Stage IVC Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 53653 -NCIT:C133011 Stage IVC Hypopharyngeal Carcinoma AJCC v8 9 53654 -NCIT:C5987 Stage IVC Oropharyngeal Carcinoma AJCC v7 9 53655 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 53656 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 53657 -NCIT:C5994 Stage IVC Hypopharyngeal Carcinoma AJCC v7 9 53658 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 53659 -NCIT:C5995 Stage IVC Nasopharyngeal Carcinoma AJCC v7 9 53660 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 53661 -NCIT:C7397 Stage IV Nasopharyngeal Carcinoma AJCC v6 8 53662 -NCIT:C8533 Stage IV Hypopharyngeal Carcinoma AJCC v6 8 53663 -NCIT:C88984 Stage IV Nasopharyngeal Carcinoma AJCC v7 8 53664 -NCIT:C5995 Stage IVC Nasopharyngeal Carcinoma AJCC v7 9 53665 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 53666 -NCIT:C5996 Stage IVB Nasopharyngeal Carcinoma AJCC v7 9 53667 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 53668 -NCIT:C5997 Stage IVA Nasopharyngeal Carcinoma AJCC v7 9 53669 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 53670 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 53671 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 53672 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 53673 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 53674 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 9 53675 -NCIT:C89023 Stage IV Oropharyngeal Carcinoma AJCC v7 8 53676 -NCIT:C5985 Stage IVA Oropharyngeal Carcinoma AJCC v7 9 53677 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 53678 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 53679 -NCIT:C5986 Stage IVB Oropharyngeal Carcinoma AJCC v7 9 53680 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 53681 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 53682 -NCIT:C5987 Stage IVC Oropharyngeal Carcinoma AJCC v7 9 53683 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 53684 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 53685 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 9 53686 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 53687 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 53688 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 53689 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 53690 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 53691 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 53692 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 53693 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 53694 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 53695 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 53696 -NCIT:C89047 Stage IV Hypopharyngeal Carcinoma AJCC v7 8 53697 -NCIT:C5992 Stage IVA Hypopharyngeal Carcinoma AJCC v7 9 53698 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 53699 -NCIT:C5993 Stage IVB Hypopharyngeal Carcinoma AJCC v7 9 53700 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 53701 -NCIT:C5994 Stage IVC Hypopharyngeal Carcinoma AJCC v7 9 53702 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 53703 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 53704 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 53705 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 53706 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 53707 -NCIT:C9218 Stage IV Oropharyngeal Carcinoma AJCC v6 8 53708 -NCIT:C90525 Pharyngeal Carcinoma by AJCC v6 Stage 7 53709 -NCIT:C90522 Nasopharyngeal Carcinoma by AJCC v6 Stage 8 53710 -NCIT:C7395 Stage I Nasopharyngeal Carcinoma AJCC v6 9 53711 -NCIT:C7396 Stage III Nasopharyngeal Carcinoma AJCC v6 9 53712 -NCIT:C7397 Stage IV Nasopharyngeal Carcinoma AJCC v6 9 53713 -NCIT:C7920 Stage II Nasopharyngeal Carcinoma AJCC v6 9 53714 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 9 53715 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 10 53716 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 53717 -NCIT:C90523 Oropharyngeal Carcinoma by AJCC v6 Stage 8 53718 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 9 53719 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 53720 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 9 53721 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 53722 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 53723 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 9 53724 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 53725 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 53726 -NCIT:C8050 Stage III Oropharyngeal Carcinoma AJCC v6 9 53727 -NCIT:C9218 Stage IV Oropharyngeal Carcinoma AJCC v6 9 53728 -NCIT:C90524 Hypopharyngeal Carcinoma by AJCC v6 Stage 8 53729 -NCIT:C8038 Stage I Hypopharyngeal Carcinoma AJCC v6 9 53730 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 9 53731 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 53732 -NCIT:C8040 Stage III Hypopharyngeal Carcinoma AJCC v6 9 53733 -NCIT:C8533 Stage IV Hypopharyngeal Carcinoma AJCC v6 9 53734 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 9 53735 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 53736 -NCIT:C9105 Oropharyngeal Carcinoma 7 53737 -NCIT:C132882 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Stage 8 53738 -NCIT:C132883 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Clinical Stage 9 53739 -NCIT:C132885 Clinical Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 53740 -NCIT:C132886 Clinical Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 53741 -NCIT:C132891 Clinical Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 53742 -NCIT:C132893 Clinical Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 53743 -NCIT:C132884 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Pathologic Stage 9 53744 -NCIT:C132898 Pathologic Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 53745 -NCIT:C132899 Pathologic Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 53746 -NCIT:C132900 Pathologic Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 53747 -NCIT:C132901 Pathologic Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 53748 -NCIT:C132994 Oropharyngeal (p16-Negative) Carcinoma by AJCC v8 Stage 8 53749 -NCIT:C132995 Stage 0 Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 53750 -NCIT:C132996 Stage I Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 53751 -NCIT:C132997 Stage II Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 53752 -NCIT:C132998 Stage III Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 53753 -NCIT:C132999 Stage IV Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 53754 -NCIT:C133000 Stage IVA Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 53755 -NCIT:C133001 Stage IVB Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 53756 -NCIT:C133002 Stage IVC Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 53757 -NCIT:C156082 Metastatic Oropharyngeal Carcinoma 8 53758 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 53759 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 53760 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 53761 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 53762 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 9 53763 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 53764 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 53765 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 9 53766 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 53767 -NCIT:C173576 Oropharyngeal Polymorphous Adenocarcinoma 8 53768 -NCIT:C4825 Tonsillar Carcinoma 8 53769 -NCIT:C8183 Tonsillar Squamous Cell Carcinoma 9 53770 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 10 53771 -NCIT:C6241 Oropharyngeal Adenoid Cystic Carcinoma 8 53772 -NCIT:C8051 Recurrent Oropharyngeal Carcinoma 8 53773 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 9 53774 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 10 53775 -NCIT:C8181 Oropharyngeal Squamous Cell Carcinoma 8 53776 -NCIT:C126750 Oropharyngeal Poorly Differentiated Carcinoma 9 53777 -NCIT:C126751 Oropharyngeal Basaloid Carcinoma 9 53778 -NCIT:C147906 Oropharyngeal p16INK4a-Negative Squamous Cell Carcinoma 9 53779 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 9 53780 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 53781 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 53782 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 53783 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 53784 -NCIT:C162787 Resectable Oropharyngeal Squamous Cell Carcinoma 9 53785 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 10 53786 -NCIT:C162833 Unresectable Oropharyngeal Squamous Cell Carcinoma 9 53787 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 10 53788 -NCIT:C173414 Oropharyngeal Human Papillomavirus-Negative Squamous Cell Carcinoma 9 53789 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 53790 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 53791 -NCIT:C68610 Oropharyngeal Undifferentiated Carcinoma 9 53792 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 53793 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 53794 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 53795 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 53796 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 53797 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 53798 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 53799 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 10 53800 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 53801 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 10 53802 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 10 53803 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 10 53804 -NCIT:C8183 Tonsillar Squamous Cell Carcinoma 9 53805 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 10 53806 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 53807 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 53808 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 53809 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 53810 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 9 53811 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 53812 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 9 53813 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 53814 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 53815 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 53816 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 53817 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 53818 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 53819 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 53820 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 53821 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 53822 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 53823 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 9 53824 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 10 53825 -NCIT:C87055 Oropharyngeal Human Papillomavirus-Positive Squamous Cell Carcinoma 9 53826 -NCIT:C8395 Soft Palate Carcinoma 8 53827 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 53828 -NCIT:C90523 Oropharyngeal Carcinoma by AJCC v6 Stage 8 53829 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 9 53830 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 53831 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 9 53832 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 53833 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 53834 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 9 53835 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 53836 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 53837 -NCIT:C8050 Stage III Oropharyngeal Carcinoma AJCC v6 9 53838 -NCIT:C9218 Stage IV Oropharyngeal Carcinoma AJCC v6 9 53839 -NCIT:C91248 Oropharyngeal Carcinoma by AJCC v7 Stage 8 53840 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 9 53841 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 53842 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 9 53843 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 53844 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 53845 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 9 53846 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 53847 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 53848 -NCIT:C89021 Stage III Oropharyngeal Carcinoma AJCC v7 9 53849 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 53850 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 53851 -NCIT:C89023 Stage IV Oropharyngeal Carcinoma AJCC v7 9 53852 -NCIT:C5985 Stage IVA Oropharyngeal Carcinoma AJCC v7 10 53853 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 53854 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 53855 -NCIT:C5986 Stage IVB Oropharyngeal Carcinoma AJCC v7 10 53856 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 53857 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 53858 -NCIT:C5987 Stage IVC Oropharyngeal Carcinoma AJCC v7 10 53859 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 53860 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 53861 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 53862 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 53863 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 53864 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 53865 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 53866 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 53867 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 53868 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 53869 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 53870 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 53871 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 53872 -NCIT:C91252 Pharyngeal Carcinoma by AJCC v7 Stage 7 53873 -NCIT:C91244 Nasopharyngeal Carcinoma by AJCC v7 Stage 8 53874 -NCIT:C88981 Stage I Nasopharyngeal Carcinoma AJCC v7 9 53875 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 53876 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 53877 -NCIT:C88982 Stage II Nasopharyngeal Carcinoma AJCC v7 9 53878 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 53879 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 53880 -NCIT:C88983 Stage III Nasopharyngeal Carcinoma AJCC v7 9 53881 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 53882 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 53883 -NCIT:C88984 Stage IV Nasopharyngeal Carcinoma AJCC v7 9 53884 -NCIT:C5995 Stage IVC Nasopharyngeal Carcinoma AJCC v7 10 53885 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 53886 -NCIT:C5996 Stage IVB Nasopharyngeal Carcinoma AJCC v7 10 53887 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 53888 -NCIT:C5997 Stage IVA Nasopharyngeal Carcinoma AJCC v7 10 53889 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 53890 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 53891 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 53892 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 53893 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 53894 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 53895 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 9 53896 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 10 53897 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 53898 -NCIT:C91248 Oropharyngeal Carcinoma by AJCC v7 Stage 8 53899 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 9 53900 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 53901 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 9 53902 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 53903 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 53904 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 9 53905 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 53906 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 53907 -NCIT:C89021 Stage III Oropharyngeal Carcinoma AJCC v7 9 53908 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 53909 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 53910 -NCIT:C89023 Stage IV Oropharyngeal Carcinoma AJCC v7 9 53911 -NCIT:C5985 Stage IVA Oropharyngeal Carcinoma AJCC v7 10 53912 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 53913 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 53914 -NCIT:C5986 Stage IVB Oropharyngeal Carcinoma AJCC v7 10 53915 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 53916 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 53917 -NCIT:C5987 Stage IVC Oropharyngeal Carcinoma AJCC v7 10 53918 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 53919 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 53920 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 53921 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 53922 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 53923 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 53924 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 53925 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 53926 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 53927 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 53928 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 53929 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 53930 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 53931 -NCIT:C91251 Hypopharyngeal Carcinoma by AJCC v7 Stage 8 53932 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 9 53933 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 53934 -NCIT:C89045 Stage I Hypopharyngeal Carcinoma AJCC v7 9 53935 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 53936 -NCIT:C89046 Stage III Hypopharyngeal Carcinoma AJCC v7 9 53937 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 53938 -NCIT:C89047 Stage IV Hypopharyngeal Carcinoma AJCC v7 9 53939 -NCIT:C5992 Stage IVA Hypopharyngeal Carcinoma AJCC v7 10 53940 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 53941 -NCIT:C5993 Stage IVB Hypopharyngeal Carcinoma AJCC v7 10 53942 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 53943 -NCIT:C5994 Stage IVC Hypopharyngeal Carcinoma AJCC v7 10 53944 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 53945 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 53946 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 53947 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 53948 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 53949 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 9 53950 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 53951 -NCIT:C9465 Hypopharyngeal Carcinoma 7 53952 -NCIT:C133003 Hypopharyngeal Carcinoma by AJCC v8 Stage 8 53953 -NCIT:C133005 Stage I Hypopharyngeal Carcinoma AJCC v8 9 53954 -NCIT:C133006 Stage II Hypopharyngeal Carcinoma AJCC v8 9 53955 -NCIT:C133007 Stage III Hypopharyngeal Carcinoma AJCC v8 9 53956 -NCIT:C133008 Stage IV Hypopharyngeal Carcinoma AJCC v8 9 53957 -NCIT:C133009 Stage IVA Hypopharyngeal Carcinoma AJCC v8 10 53958 -NCIT:C133010 Stage IVB Hypopharyngeal Carcinoma AJCC v8 10 53959 -NCIT:C133011 Stage IVC Hypopharyngeal Carcinoma AJCC v8 10 53960 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 9 53961 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 53962 -NCIT:C156081 Metastatic Hypopharyngeal Carcinoma 8 53963 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 53964 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 53965 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 53966 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 9 53967 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 53968 -NCIT:C4043 Hypopharyngeal Squamous Cell Carcinoma 8 53969 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 9 53970 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 53971 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 53972 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 53973 -NCIT:C172646 Unresectable Hypopharyngeal Squamous Cell Carcinoma 9 53974 -NCIT:C4943 Pyriform Fossa Squamous Cell Carcinoma 9 53975 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 9 53976 -NCIT:C8185 Postcricoid Squamous Cell Carcinoma 9 53977 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 53978 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 53979 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 53980 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 53981 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 53982 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 53983 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 53984 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 9 53985 -NCIT:C6700 Pyriform Fossa Carcinoma 8 53986 -NCIT:C4943 Pyriform Fossa Squamous Cell Carcinoma 9 53987 -NCIT:C8595 Postcricoid Carcinoma 8 53988 -NCIT:C8185 Postcricoid Squamous Cell Carcinoma 9 53989 -NCIT:C90524 Hypopharyngeal Carcinoma by AJCC v6 Stage 8 53990 -NCIT:C8038 Stage I Hypopharyngeal Carcinoma AJCC v6 9 53991 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 9 53992 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 53993 -NCIT:C8040 Stage III Hypopharyngeal Carcinoma AJCC v6 9 53994 -NCIT:C8533 Stage IV Hypopharyngeal Carcinoma AJCC v6 9 53995 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 9 53996 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 53997 -NCIT:C91251 Hypopharyngeal Carcinoma by AJCC v7 Stage 8 53998 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 9 53999 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 54000 -NCIT:C89045 Stage I Hypopharyngeal Carcinoma AJCC v7 9 54001 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 54002 -NCIT:C89046 Stage III Hypopharyngeal Carcinoma AJCC v7 9 54003 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 54004 -NCIT:C89047 Stage IV Hypopharyngeal Carcinoma AJCC v7 9 54005 -NCIT:C5992 Stage IVA Hypopharyngeal Carcinoma AJCC v7 10 54006 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 54007 -NCIT:C5993 Stage IVB Hypopharyngeal Carcinoma AJCC v7 10 54008 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 54009 -NCIT:C5994 Stage IVC Hypopharyngeal Carcinoma AJCC v7 10 54010 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 54011 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 54012 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 54013 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 54014 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 54015 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 9 54016 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 54017 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 8 54018 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 9 54019 -NCIT:C3414 Thyroid Gland Neoplasm 4 54020 -NCIT:C156268 Intrathyroidal Thymoma 5 54021 -NCIT:C156349 Thyroid Gland Solitary Fibrous Tumor 5 54022 -NCIT:C156406 Thyroid Gland Histiocytic and Dendritic Cell Neoplasm 5 54023 -NCIT:C156407 Thyroid Gland Langerhans Cell Histiocytosis 6 54024 -NCIT:C156408 Thyroid Gland Follicular Dendritic Cell Sarcoma 6 54025 -NCIT:C187273 Low Risk Thyroid Gland Neoplasm 5 54026 -NCIT:C126598 Thyroid Gland Noninvasive Follicular Neoplasm with Papillary-Like Nuclear Features 6 54027 -NCIT:C187284 Thyroid Gland Tumor of Uncertain Malignant Potential 6 54028 -NCIT:C155978 Thyroid Gland Follicular Tumor of Uncertain Malignant Potential 7 54029 -NCIT:C27729 Thyroid Gland Well-Differentiated Tumor of Uncertain Malignant Potential 7 54030 -NCIT:C6846 Thyroid Gland Hyalinizing Trabecular Tumor 6 54031 -NCIT:C3628 Benign Thyroid Gland Neoplasm 5 54032 -NCIT:C156340 Thyroid Gland Schwannoma 6 54033 -NCIT:C156342 Thyroid Gland Benign Vascular Neoplasm 6 54034 -NCIT:C156343 Thyroid Gland Hemangioma 7 54035 -NCIT:C156344 Thyroid Gland Cavernous Hemangioma 8 54036 -NCIT:C156345 Thyroid Gland Lymphangioma 7 54037 -NCIT:C156346 Thyroid Gland Leiomyoma 6 54038 -NCIT:C3502 Thyroid Gland Follicular Adenoma 6 54039 -NCIT:C155957 Thyroid Gland Spindle Cell Follicular Adenoma 7 54040 -NCIT:C155958 Thyroid Gland Black Follicular Adenoma 7 54041 -NCIT:C187261 Thyroid Gland Follicular Adenoma with Papillary Architecture 7 54042 -NCIT:C190060 Childhood Thyroid Gland Follicular Adenoma 7 54043 -NCIT:C4160 Thyroid Gland Microfollicular Adenoma 7 54044 -NCIT:C4161 Thyroid Gland Macrofollicular Adenoma 7 54045 -NCIT:C46111 Thyroid Gland Follicular Adenoma with Papillary Hyperplasia 7 54046 -NCIT:C46115 Thyroid Gland Signet Ring Cell Follicular Adenoma 7 54047 -NCIT:C46116 Thyroid Gland Mucinous Follicular Adenoma 7 54048 -NCIT:C46118 Thyroid Gland Lipoadenoma 7 54049 -NCIT:C46119 Thyroid Gland Clear Cell Follicular Adenoma 7 54050 -NCIT:C46122 Thyroid Gland Hyperfunctioning Adenoma 7 54051 -NCIT:C46123 Thyroid Gland Follicular Adenoma with Bizarre Nuclei 7 54052 -NCIT:C6042 Thyroid Gland Oncocytic Adenoma 7 54053 -NCIT:C46068 Thyroid Gland Oncocytic Neoplasm 5 54054 -NCIT:C126409 Warthin-Like Variant Thyroid Gland Papillary Carcinoma 6 54055 -NCIT:C46093 Oncocytic Variant Thyroid Gland Papillary Carcinoma 6 54056 -NCIT:C4946 Thyroid Gland Oncocytic Carcinoma 6 54057 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 7 54058 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 7 54059 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 7 54060 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 7 54061 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 8 54062 -NCIT:C6042 Thyroid Gland Oncocytic Adenoma 6 54063 -NCIT:C46101 Neoplastic C-Cell Hyperplasia 5 54064 -NCIT:C46124 Thyroid Gland Teratoma 5 54065 -NCIT:C46125 Thyroid Gland Paraganglioma 5 54066 -NCIT:C7510 Malignant Thyroid Gland Neoplasm 5 54067 -NCIT:C150538 Recurrent Malignant Thyroid Gland Neoplasm 6 54068 -NCIT:C7908 Recurrent Thyroid Gland Carcinoma 7 54069 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 8 54070 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 9 54071 -NCIT:C153624 Recurrent Thyroid Gland Anaplastic Carcinoma 8 54072 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 8 54073 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 9 54074 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 9 54075 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 10 54076 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 8 54077 -NCIT:C150539 Refractory Malignant Thyroid Gland Neoplasm 6 54078 -NCIT:C142983 Refractory Thyroid Gland Carcinoma 7 54079 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 8 54080 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 9 54081 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 9 54082 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 10 54083 -NCIT:C170832 Refractory Thyroid Gland Anaplastic Carcinoma 8 54084 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 8 54085 -NCIT:C156408 Thyroid Gland Follicular Dendritic Cell Sarcoma 6 54086 -NCIT:C187995 Thyroblastoma 6 54087 -NCIT:C4815 Thyroid Gland Carcinoma 6 54088 -NCIT:C118827 Childhood Thyroid Gland Carcinoma 7 54089 -NCIT:C123903 Childhood Thyroid Gland Papillary Carcinoma 8 54090 -NCIT:C123904 Childhood Thyroid Gland Follicular Carcinoma 8 54091 -NCIT:C123905 Childhood Thyroid Gland Medullary Carcinoma 8 54092 -NCIT:C190064 Childhood Thyroid Gland Spindle Epithelial Tumor with Thymus-Like Elements 8 54093 -NCIT:C126408 Thyroid Gland Cribriform Morular Carcinoma 7 54094 -NCIT:C129784 Unresectable Thyroid Gland Carcinoma 7 54095 -NCIT:C163974 Unresectable Thyroid Gland Medullary Carcinoma 8 54096 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 9 54097 -NCIT:C168572 Unresectable Differentiated Thyroid Gland Carcinoma 8 54098 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 9 54099 -NCIT:C174571 Unresectable Thyroid Gland Follicular Carcinoma 9 54100 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 10 54101 -NCIT:C170833 Unresectable Thyroid Gland Anaplastic Carcinoma 8 54102 -NCIT:C174569 Unresectable Poorly Differentiated Thyroid Gland Carcinoma 8 54103 -NCIT:C133193 Metastatic Thyroid Gland Carcinoma 7 54104 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 8 54105 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 54106 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 54107 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 8 54108 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 54109 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 54110 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 54111 -NCIT:C170831 Metastatic Thyroid Gland Anaplastic Carcinoma 8 54112 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 54113 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 54114 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 8 54115 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 54116 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 9 54117 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 54118 -NCIT:C173979 Metastatic Differentiated Thyroid Gland Carcinoma 8 54119 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 9 54120 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 10 54121 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 11 54122 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 9 54123 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 54124 -NCIT:C174046 Metastatic Poorly Differentiated Thyroid Gland Carcinoma 8 54125 -NCIT:C142983 Refractory Thyroid Gland Carcinoma 7 54126 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 8 54127 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 9 54128 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 9 54129 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 10 54130 -NCIT:C170832 Refractory Thyroid Gland Anaplastic Carcinoma 8 54131 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 8 54132 -NCIT:C156267 Thyroid Gland Mucinous Carcinoma 7 54133 -NCIT:C27380 Thyroid Gland Adenocarcinoma 7 54134 -NCIT:C187645 Follicular-Derived Thyroid Gland Carcinoma, High Grade 8 54135 -NCIT:C187648 Differentiated High Grade Thyroid Gland Carcinoma 9 54136 -NCIT:C6040 Poorly Differentiated Thyroid Gland Carcinoma 9 54137 -NCIT:C174046 Metastatic Poorly Differentiated Thyroid Gland Carcinoma 10 54138 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 10 54139 -NCIT:C174569 Unresectable Poorly Differentiated Thyroid Gland Carcinoma 10 54140 -NCIT:C187994 Thyroid Gland Secretory Carcinoma 8 54141 -NCIT:C7153 Differentiated Thyroid Gland Carcinoma 8 54142 -NCIT:C118829 Hereditary Nonmedullary Thyroid Gland Carcinoma 9 54143 -NCIT:C140959 Differentiated Thyroid Gland Carcinoma by AJCC v7 Stage 9 54144 -NCIT:C140958 Thyroid Gland Follicular Carcinoma by AJCC v7 Stage 10 54145 -NCIT:C9084 Stage I Thyroid Gland Follicular Carcinoma AJCC v7 11 54146 -NCIT:C9085 Stage II Thyroid Gland Follicular Carcinoma AJCC v7 11 54147 -NCIT:C9086 Stage IV Thyroid Gland Follicular Carcinoma AJCC v7 11 54148 -NCIT:C115035 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v7 12 54149 -NCIT:C115036 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v7 12 54150 -NCIT:C115037 Stage IVC Thyroid Gland Follicular Carcinoma AJCC v7 12 54151 -NCIT:C9121 Stage III Thyroid Gland Follicular Carcinoma AJCC v7 11 54152 -NCIT:C140960 Thyroid Gland Papillary Carcinoma by AJCC v7 Stage 10 54153 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 11 54154 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 11 54155 -NCIT:C9083 Stage IV Thyroid Gland Papillary Carcinoma AJCC v7 11 54156 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 12 54157 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 12 54158 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 12 54159 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 11 54160 -NCIT:C87543 Stage I Differentiated Thyroid Gland Carcinoma AJCC v7 10 54161 -NCIT:C101539 Stage I Differentiated Thyroid Gland Carcinoma Under 45 Years AJCC v7 11 54162 -NCIT:C101540 Stage I Differentiated Thyroid Gland Carcinoma 45 Years and Older AJCC v7 11 54163 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 11 54164 -NCIT:C9084 Stage I Thyroid Gland Follicular Carcinoma AJCC v7 11 54165 -NCIT:C87544 Stage II Differentiated Thyroid Gland Carcinoma AJCC v7 10 54166 -NCIT:C101541 Stage II Differentiated Thyroid Gland Carcinoma Under 45 Years AJCC v7 11 54167 -NCIT:C101542 Stage II Differentiated Thyroid Gland Carcinoma 45 Years and Older AJCC v7 11 54168 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 11 54169 -NCIT:C9085 Stage II Thyroid Gland Follicular Carcinoma AJCC v7 11 54170 -NCIT:C87545 Stage III Differentiated Thyroid Gland Carcinoma AJCC v7 10 54171 -NCIT:C9121 Stage III Thyroid Gland Follicular Carcinoma AJCC v7 11 54172 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 11 54173 -NCIT:C87546 Stage IVA Differentiated Thyroid Gland Carcinoma AJCC v7 10 54174 -NCIT:C115035 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v7 11 54175 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 11 54176 -NCIT:C87547 Stage IVB Differentiated Thyroid Gland Carcinoma AJCC v7 10 54177 -NCIT:C115036 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v7 11 54178 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 11 54179 -NCIT:C87548 Stage IVC Differentiated Thyroid Gland Carcinoma AJCC v7 10 54180 -NCIT:C115037 Stage IVC Thyroid Gland Follicular Carcinoma AJCC v7 11 54181 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 11 54182 -NCIT:C140965 Differentiated Thyroid Gland Carcinoma by AJCC v8 Stage 9 54183 -NCIT:C140966 Stage I Differentiated Thyroid Gland Carcinoma AJCC v8 10 54184 -NCIT:C140967 Stage I Differentiated Thyroid Gland Carcinoma Under 55 Years AJCC v8 11 54185 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 54186 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 54187 -NCIT:C140968 Stage I Differentiated Thyroid Gland Carcinoma 55 Years and Older AJCC v8 11 54188 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 54189 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 54190 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 11 54191 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 54192 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 54193 -NCIT:C140988 Stage I Thyroid Gland Follicular Carcinoma AJCC v8 11 54194 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 54195 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 54196 -NCIT:C140969 Stage II Differentiated Thyroid Gland Carcinoma AJCC v8 10 54197 -NCIT:C140970 Stage II Differentiated Thyroid Gland Carcinoma Under 55 Years AJCC v8 11 54198 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 54199 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 54200 -NCIT:C140971 Stage II Differentiated Thyroid Gland Carcinoma 55 Years and Older AJCC v8 11 54201 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 54202 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 54203 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 11 54204 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 54205 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 54206 -NCIT:C140991 Stage II Thyroid Gland Follicular Carcinoma AJCC v8 11 54207 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 54208 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 54209 -NCIT:C140972 Stage III Differentiated Thyroid Gland Carcinoma AJCC v8 10 54210 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 11 54211 -NCIT:C140995 Stage III Thyroid Gland Follicular Carcinoma AJCC v8 11 54212 -NCIT:C140973 Stage IV Differentiated Thyroid Gland Carcinoma AJCC v8 10 54213 -NCIT:C140974 Stage IVA Differentiated Thyroid Gland Carcinoma AJCC v8 11 54214 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 12 54215 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 12 54216 -NCIT:C140975 Stage IVB Differentiated Thyroid Gland Carcinoma AJCC v8 11 54217 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 12 54218 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 12 54219 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 11 54220 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 12 54221 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 12 54222 -NCIT:C140996 Stage IV Thyroid Gland Follicular Carcinoma AJCC v8 11 54223 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 12 54224 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 12 54225 -NCIT:C140976 Thyroid Gland Papillary Carcinoma by AJCC v8 Stage 10 54226 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 11 54227 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 54228 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 54229 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 11 54230 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 54231 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 54232 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 11 54233 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 11 54234 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 12 54235 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 12 54236 -NCIT:C140987 Thyroid Gland Follicular Carcinoma by AJCC v8 Stage 10 54237 -NCIT:C140988 Stage I Thyroid Gland Follicular Carcinoma AJCC v8 11 54238 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 54239 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 54240 -NCIT:C140991 Stage II Thyroid Gland Follicular Carcinoma AJCC v8 11 54241 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 54242 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 54243 -NCIT:C140995 Stage III Thyroid Gland Follicular Carcinoma AJCC v8 11 54244 -NCIT:C140996 Stage IV Thyroid Gland Follicular Carcinoma AJCC v8 11 54245 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 12 54246 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 12 54247 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 9 54248 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 10 54249 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 10 54250 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 11 54251 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 9 54252 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 10 54253 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 10 54254 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 11 54255 -NCIT:C168572 Unresectable Differentiated Thyroid Gland Carcinoma 9 54256 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 10 54257 -NCIT:C174571 Unresectable Thyroid Gland Follicular Carcinoma 10 54258 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 11 54259 -NCIT:C173979 Metastatic Differentiated Thyroid Gland Carcinoma 9 54260 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 10 54261 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 11 54262 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 12 54263 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 10 54264 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 10 54265 -NCIT:C4035 Thyroid Gland Papillary Carcinoma 9 54266 -NCIT:C123903 Childhood Thyroid Gland Papillary Carcinoma 10 54267 -NCIT:C126409 Warthin-Like Variant Thyroid Gland Papillary Carcinoma 10 54268 -NCIT:C126410 Thyroid Gland Papillary Carcinoma with Fibromatosis/Fasciitis-Like/Desmoid-Type Stroma 10 54269 -NCIT:C126594 Follicular Variant Thyroid Gland Papillary Carcinoma 10 54270 -NCIT:C66850 Invasive Encapsulated Follicular Variant Thyroid Gland Papillary Carcinoma 11 54271 -NCIT:C7381 Invasive Follicular Variant Thyroid Gland Papillary Carcinoma 11 54272 -NCIT:C140960 Thyroid Gland Papillary Carcinoma by AJCC v7 Stage 10 54273 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 11 54274 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 11 54275 -NCIT:C9083 Stage IV Thyroid Gland Papillary Carcinoma AJCC v7 11 54276 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 12 54277 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 12 54278 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 12 54279 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 11 54280 -NCIT:C140976 Thyroid Gland Papillary Carcinoma by AJCC v8 Stage 10 54281 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 11 54282 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 54283 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 54284 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 11 54285 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 54286 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 54287 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 11 54288 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 11 54289 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 12 54290 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 12 54291 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 10 54292 -NCIT:C156034 Encapsulated Variant Thyroid Gland Papillary Carcinoma 10 54293 -NCIT:C156045 Spindle Cell Variant Thyroid Gland Papillary Carcinoma 10 54294 -NCIT:C156050 Hobnail Variant Thyroid Gland Papillary Carcinoma 10 54295 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 10 54296 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 10 54297 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 10 54298 -NCIT:C187644 Classic Thyroid Gland Papillary Carcinoma 10 54299 -NCIT:C35558 Tall Cell Variant Thyroid Gland Papillary Carcinoma 10 54300 -NCIT:C35830 Columnar Cell Variant Thyroid Gland Papillary Carcinoma 10 54301 -NCIT:C37304 Multicentric Thyroid Gland Papillary Carcinoma 10 54302 -NCIT:C46004 Thyroid Gland Papillary Microcarcinoma 10 54303 -NCIT:C46092 Macrofollicular Variant Thyroid Gland Papillary Carcinoma 10 54304 -NCIT:C46093 Oncocytic Variant Thyroid Gland Papillary Carcinoma 10 54305 -NCIT:C46094 Clear Cell Variant Thyroid Gland Papillary Carcinoma 10 54306 -NCIT:C46095 Solid/Trabecular Variant Thyroid Gland Papillary Carcinoma 10 54307 -NCIT:C7427 Diffuse Sclerosing Variant Thyroid Gland Papillary Carcinoma 10 54308 -NCIT:C8054 Thyroid Gland Follicular Carcinoma 9 54309 -NCIT:C123904 Childhood Thyroid Gland Follicular Carcinoma 10 54310 -NCIT:C140958 Thyroid Gland Follicular Carcinoma by AJCC v7 Stage 10 54311 -NCIT:C9084 Stage I Thyroid Gland Follicular Carcinoma AJCC v7 11 54312 -NCIT:C9085 Stage II Thyroid Gland Follicular Carcinoma AJCC v7 11 54313 -NCIT:C9086 Stage IV Thyroid Gland Follicular Carcinoma AJCC v7 11 54314 -NCIT:C115035 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v7 12 54315 -NCIT:C115036 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v7 12 54316 -NCIT:C115037 Stage IVC Thyroid Gland Follicular Carcinoma AJCC v7 12 54317 -NCIT:C9121 Stage III Thyroid Gland Follicular Carcinoma AJCC v7 11 54318 -NCIT:C140987 Thyroid Gland Follicular Carcinoma by AJCC v8 Stage 10 54319 -NCIT:C140988 Stage I Thyroid Gland Follicular Carcinoma AJCC v8 11 54320 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 54321 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 54322 -NCIT:C140991 Stage II Thyroid Gland Follicular Carcinoma AJCC v8 11 54323 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 54324 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 54325 -NCIT:C140995 Stage III Thyroid Gland Follicular Carcinoma AJCC v8 11 54326 -NCIT:C140996 Stage IV Thyroid Gland Follicular Carcinoma AJCC v8 11 54327 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 12 54328 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 12 54329 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 10 54330 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 11 54331 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 10 54332 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 11 54333 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 12 54334 -NCIT:C156122 Thyroid Gland Follicular Carcinoma, Encapsulated Angioinvasive 10 54335 -NCIT:C156123 Thyroid Gland Follicular Carcinoma, Widely Invasive 10 54336 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 10 54337 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 11 54338 -NCIT:C174571 Unresectable Thyroid Gland Follicular Carcinoma 10 54339 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 11 54340 -NCIT:C187643 Thyroid Gland Follicular Carcinoma, Signet Ring Cell Variant 10 54341 -NCIT:C46096 Thyroid Gland Follicular Carcinoma, Clear Cell Variant 10 54342 -NCIT:C4946 Thyroid Gland Oncocytic Carcinoma 10 54343 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 11 54344 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 11 54345 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 11 54346 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 11 54347 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 12 54348 -NCIT:C65200 Thyroid Gland Follicular Carcinoma, Minimally Invasive 10 54349 -NCIT:C38762 Thyroid Gland Mucoepidermoid Carcinoma 7 54350 -NCIT:C38763 Thyroid Gland Sclerosing Mucoepidermoid Carcinoma with Eosinophilia 8 54351 -NCIT:C3878 Thyroid Gland Anaplastic Carcinoma 7 54352 -NCIT:C140999 Thyroid Gland Anaplastic Carcinoma by AJCC v7 Stage 8 54353 -NCIT:C87552 Stage IVA Thyroid Gland Anaplastic Carcinoma AJCC v7 9 54354 -NCIT:C87553 Stage IVB Thyroid Gland Anaplastic Carcinoma AJCC v7 9 54355 -NCIT:C87554 Stage IVC Thyroid Gland Anaplastic Carcinoma AJCC v7 9 54356 -NCIT:C141000 Thyroid Gland Anaplastic Carcinoma by AJCC v8 Stage 8 54357 -NCIT:C141001 Stage IVA Thyroid Gland Anaplastic Carcinoma AJCC v8 9 54358 -NCIT:C141003 Stage IVB Thyroid Gland Anaplastic Carcinoma AJCC v8 9 54359 -NCIT:C141004 Stage IVC Thyroid Gland Anaplastic Carcinoma AJCC v8 9 54360 -NCIT:C153624 Recurrent Thyroid Gland Anaplastic Carcinoma 8 54361 -NCIT:C170831 Metastatic Thyroid Gland Anaplastic Carcinoma 8 54362 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 54363 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 54364 -NCIT:C170832 Refractory Thyroid Gland Anaplastic Carcinoma 8 54365 -NCIT:C170833 Unresectable Thyroid Gland Anaplastic Carcinoma 8 54366 -NCIT:C46008 Thyroid Gland Anaplastic Carcinoma, Squamous Cell Carcinoma Pattern 8 54367 -NCIT:C7906 Thyroid Gland Anaplastic Carcinoma, Osteoclastic Variant 8 54368 -NCIT:C3879 Thyroid Gland Medullary Carcinoma 7 54369 -NCIT:C123905 Childhood Thyroid Gland Medullary Carcinoma 8 54370 -NCIT:C141041 Thyroid Gland Medullary Carcinoma by AJCC v7 Stage 8 54371 -NCIT:C6133 Stage I Thyroid Gland Medullary Carcinoma AJCC v7 9 54372 -NCIT:C6134 Stage II Thyroid Gland Medullary Carcinoma AJCC v7 9 54373 -NCIT:C6135 Stage III Thyroid Gland Medullary Carcinoma AJCC v7 9 54374 -NCIT:C6136 Stage IV Thyroid Gland Medullary Carcinoma AJCC v7 9 54375 -NCIT:C87549 Stage IVA Thyroid Gland Medullary Carcinoma AJCC v7 10 54376 -NCIT:C87550 Stage IVB Thyroid Gland Medullary Carcinoma AJCC v7 10 54377 -NCIT:C87551 Stage IVC Thyroid Gland Medullary Carcinoma AJCC v7 10 54378 -NCIT:C141042 Thyroid Gland Medullary Carcinoma by AJCC v8 Stage 8 54379 -NCIT:C141043 Stage I Thyroid Gland Medullary Carcinoma AJCC v8 9 54380 -NCIT:C141044 Stage II Thyroid Gland Medullary Carcinoma AJCC v8 9 54381 -NCIT:C141045 Stage III Thyroid Gland Medullary Carcinoma AJCC v8 9 54382 -NCIT:C141046 Stage IV Thyroid Gland Medullary Carcinoma AJCC v8 9 54383 -NCIT:C141047 Stage IVA Thyroid Gland Medullary Carcinoma AJCC v8 10 54384 -NCIT:C141048 Stage IVB Thyroid Gland Medullary Carcinoma AJCC v8 10 54385 -NCIT:C141049 Stage IVC Thyroid Gland Medullary Carcinoma AJCC v8 10 54386 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 8 54387 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 9 54388 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 8 54389 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 54390 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 54391 -NCIT:C163974 Unresectable Thyroid Gland Medullary Carcinoma 8 54392 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 9 54393 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 8 54394 -NCIT:C4193 Thyroid Gland Medullary Carcinoma with Amyloid Stroma 8 54395 -NCIT:C46098 Sporadic Thyroid Gland Medullary Carcinoma 8 54396 -NCIT:C46103 Sporadic Thyroid Gland Micromedullary Carcinoma 9 54397 -NCIT:C46099 Hereditary Thyroid Gland Medullary Carcinoma 8 54398 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 9 54399 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 9 54400 -NCIT:C46104 Thyroid Gland Mixed Medullary and Follicular Cell-Derived Carcinoma 7 54401 -NCIT:C187992 Thyroid Gland Mixed Medullary and Follicular Carcinoma 8 54402 -NCIT:C187993 Thyroid Gland Mixed Medullary and Papillary Carcinoma 8 54403 -NCIT:C46105 Thyroid Gland Spindle Epithelial Tumor with Thymus-Like Elements 7 54404 -NCIT:C190064 Childhood Thyroid Gland Spindle Epithelial Tumor with Thymus-Like Elements 8 54405 -NCIT:C46106 Intrathyroid Thymic Carcinoma 7 54406 -NCIT:C7908 Recurrent Thyroid Gland Carcinoma 7 54407 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 8 54408 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 9 54409 -NCIT:C153624 Recurrent Thyroid Gland Anaplastic Carcinoma 8 54410 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 8 54411 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 9 54412 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 9 54413 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 10 54414 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 8 54415 -NCIT:C5265 Thyroid Gland Lymphoma 6 54416 -NCIT:C181209 Thyroid Gland Hodgkin Lymphoma 7 54417 -NCIT:C6044 Thyroid Gland Non-Hodgkin Lymphoma 7 54418 -NCIT:C156410 Thyroid Gland Follicular Lymphoma 8 54419 -NCIT:C6046 Thyroid Gland Diffuse Large B-Cell Lymphoma 8 54420 -NCIT:C7263 Thyroid Gland Immunoblastic Lymphoma 9 54421 -NCIT:C7601 Thyroid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 8 54422 -NCIT:C6041 Thyroid Gland Sarcoma 6 54423 -NCIT:C156341 Thyroid Gland Malignant Peripheral Nerve Sheath Tumor 7 54424 -NCIT:C156347 Thyroid Gland Leiomyosarcoma 7 54425 -NCIT:C6043 Thyroid Gland Angiosarcoma 7 54426 -NCIT:C7509 Metastatic Malignant Neoplasm in the Thyroid Gland 6 54427 -NCIT:C4884 Benign Neck Neoplasm 4 54428 -NCIT:C162822 Benign Parapharyngeal Neoplasm 5 54429 -NCIT:C162826 Benign Retropharyngeal Neoplasm 5 54430 -NCIT:C3597 Benign Pharyngeal Neoplasm 5 54431 -NCIT:C3595 Benign Nasopharyngeal Neoplasm 6 54432 -NCIT:C27479 Nasopharyngeal Angiofibroma 7 54433 -NCIT:C6034 Nasopharyngeal Polyp 7 54434 -NCIT:C6037 Nasopharyngeal Squamous Papilloma 7 54435 -NCIT:C3596 Benign Hypopharyngeal Neoplasm 6 54436 -NCIT:C4886 Benign Pyriform Fossa Neoplasm 7 54437 -NCIT:C4604 Benign Oropharyngeal Neoplasm 6 54438 -NCIT:C173575 Oropharyngeal Pleomorphic Adenoma 7 54439 -NCIT:C5988 Oropharyngeal Polyp 7 54440 -NCIT:C6038 Oropharyngeal Squamous Papilloma 7 54441 -NCIT:C3601 Benign Laryngeal Neoplasm 5 54442 -NCIT:C173399 Benign Laryngeal Soft Tissue Neoplasm 6 54443 -NCIT:C6026 Subglottic Hemangioma 7 54444 -NCIT:C6027 Laryngeal Leiomyoma 7 54445 -NCIT:C173406 Laryngeal Chondroma 6 54446 -NCIT:C173412 Laryngeal Pleomorphic Adenoma 6 54447 -NCIT:C4427 Benign Subglottis Neoplasm 6 54448 -NCIT:C6026 Subglottic Hemangioma 7 54449 -NCIT:C4605 Benign Glottis Neoplasm 6 54450 -NCIT:C7742 Laryngeal Squamous Papilloma 6 54451 -NCIT:C190150 Childhood Laryngeal Squamous Papilloma 7 54452 -NCIT:C8414 Benign Supraglottis Neoplasm 6 54453 -NCIT:C4606 Benign Epiglottis Neoplasm 7 54454 -NCIT:C3628 Benign Thyroid Gland Neoplasm 5 54455 -NCIT:C156340 Thyroid Gland Schwannoma 6 54456 -NCIT:C156342 Thyroid Gland Benign Vascular Neoplasm 6 54457 -NCIT:C156343 Thyroid Gland Hemangioma 7 54458 -NCIT:C156344 Thyroid Gland Cavernous Hemangioma 8 54459 -NCIT:C156345 Thyroid Gland Lymphangioma 7 54460 -NCIT:C156346 Thyroid Gland Leiomyoma 6 54461 -NCIT:C3502 Thyroid Gland Follicular Adenoma 6 54462 -NCIT:C155957 Thyroid Gland Spindle Cell Follicular Adenoma 7 54463 -NCIT:C155958 Thyroid Gland Black Follicular Adenoma 7 54464 -NCIT:C187261 Thyroid Gland Follicular Adenoma with Papillary Architecture 7 54465 -NCIT:C190060 Childhood Thyroid Gland Follicular Adenoma 7 54466 -NCIT:C4160 Thyroid Gland Microfollicular Adenoma 7 54467 -NCIT:C4161 Thyroid Gland Macrofollicular Adenoma 7 54468 -NCIT:C46111 Thyroid Gland Follicular Adenoma with Papillary Hyperplasia 7 54469 -NCIT:C46115 Thyroid Gland Signet Ring Cell Follicular Adenoma 7 54470 -NCIT:C46116 Thyroid Gland Mucinous Follicular Adenoma 7 54471 -NCIT:C46118 Thyroid Gland Lipoadenoma 7 54472 -NCIT:C46119 Thyroid Gland Clear Cell Follicular Adenoma 7 54473 -NCIT:C46122 Thyroid Gland Hyperfunctioning Adenoma 7 54474 -NCIT:C46123 Thyroid Gland Follicular Adenoma with Bizarre Nuclei 7 54475 -NCIT:C6042 Thyroid Gland Oncocytic Adenoma 7 54476 -NCIT:C3630 Benign Parathyroid Gland Neoplasm 5 54477 -NCIT:C156757 Parathyroid Gland Adenoma 6 54478 -NCIT:C190066 Childhood Parathyroid Gland Adenoma 7 54479 -NCIT:C27393 Parathyroid Gland Oncocytic Adenoma 7 54480 -NCIT:C4154 Parathyroid Gland Chief Cell Adenoma 7 54481 -NCIT:C48283 Parathyroid Gland Lipoadenoma 7 54482 -NCIT:C7993 Parathyroid Gland Clear Cell Adenoma 7 54483 -NCIT:C4155 Parathyroid Gland Water-Clear Cell Adenoma 8 54484 -NCIT:C7994 Parathyroid Gland Mixed Cell Type Adenoma 7 54485 -NCIT:C5323 Jugular Foramen Schwannoma 5 54486 -NCIT:C4940 Malignant Neck Neoplasm 4 54487 -NCIT:C162823 Malignant Parapharyngeal Neoplasm 5 54488 -NCIT:C162828 Malignant Retropharyngeal Neoplasm 5 54489 -NCIT:C6077 Neck Carcinoma 5 54490 -NCIT:C35506 Throat Carcinoma 6 54491 -NCIT:C4855 Laryngeal Carcinoma 7 54492 -NCIT:C118811 Childhood Laryngeal Carcinoma 8 54493 -NCIT:C133156 Laryngeal Cancer by AJCC v8 Stage 8 54494 -NCIT:C133158 Stage I Laryngeal Cancer AJCC v8 9 54495 -NCIT:C133159 Stage II Laryngeal Cancer AJCC v8 9 54496 -NCIT:C133160 Stage III Laryngeal Cancer AJCC v8 9 54497 -NCIT:C133161 Stage IV Laryngeal Cancer AJCC v8 9 54498 -NCIT:C133162 Stage IVA Laryngeal Cancer AJCC v8 10 54499 -NCIT:C133163 Stage IVB Laryngeal Cancer AJCC v8 10 54500 -NCIT:C133164 Stage IVC Laryngeal Cancer AJCC v8 10 54501 -NCIT:C9100 Stage 0 Laryngeal Cancer AJCC v6, v7, and V8 9 54502 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 54503 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 11 54504 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 11 54505 -NCIT:C156085 Metastatic Laryngeal Carcinoma 8 54506 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 9 54507 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 10 54508 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 10 54509 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 9 54510 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 10 54511 -NCIT:C173390 Laryngeal Neuroendocrine Carcinoma 8 54512 -NCIT:C173395 Laryngeal Large Cell Neuroendocrine Carcinoma 9 54513 -NCIT:C6025 Laryngeal Small Cell Neuroendocrine Carcinoma 9 54514 -NCIT:C27929 Alcohol-Related Laryngeal Carcinoma 8 54515 -NCIT:C4034 Recurrent Laryngeal Carcinoma 8 54516 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 9 54517 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 10 54518 -NCIT:C4044 Laryngeal Squamous Cell Carcinoma 8 54519 -NCIT:C148383 Refractory Laryngeal Squamous Cell Carcinoma 9 54520 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 9 54521 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 10 54522 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 10 54523 -NCIT:C172645 Unresectable Laryngeal Squamous Cell Carcinoma 9 54524 -NCIT:C4945 Supraglottic Squamous Cell Carcinoma 9 54525 -NCIT:C181714 Epiglottic Squamous Cell Carcinoma 10 54526 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 11 54527 -NCIT:C8191 Supraglottic Verrucous Carcinoma 10 54528 -NCIT:C54334 Laryngeal Basaloid Carcinoma 9 54529 -NCIT:C54335 Laryngeal Papillary Squamous Cell Carcinoma 9 54530 -NCIT:C54336 Laryngeal Squamous Cell Carcinoma, Spindle Cell Variant 9 54531 -NCIT:C54337 Laryngeal Acantholytic Squamous Cell Carcinoma 9 54532 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 9 54533 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 10 54534 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 10 54535 -NCIT:C8186 Glottic Squamous Cell Carcinoma 9 54536 -NCIT:C8189 Glottis Verrucous Carcinoma 10 54537 -NCIT:C8187 Subglottic Squamous Cell Carcinoma 9 54538 -NCIT:C8190 Subglottic Verrucous Carcinoma 10 54539 -NCIT:C8188 Laryngeal Verrucous Carcinoma 9 54540 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 10 54541 -NCIT:C8189 Glottis Verrucous Carcinoma 10 54542 -NCIT:C8190 Subglottic Verrucous Carcinoma 10 54543 -NCIT:C8191 Supraglottic Verrucous Carcinoma 10 54544 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 54545 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 54546 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 54547 -NCIT:C8244 Stage IV Laryngeal Verrucous Carcinoma AJCC v7 10 54548 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 11 54549 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 11 54550 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 11 54551 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 10 54552 -NCIT:C8237 Stage I Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 9 54553 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 54554 -NCIT:C8239 Stage II Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 9 54555 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 54556 -NCIT:C8241 Stage III Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 9 54557 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 54558 -NCIT:C8243 Stage IV Laryngeal Squamous Cell Carcinoma AJCC v7 9 54559 -NCIT:C6122 Stage IVA Laryngeal Squamous Cell Carcinoma AJCC v7 10 54560 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 11 54561 -NCIT:C6123 Stage IVB Laryngeal Squamous Cell Carcinoma AJCC v7 10 54562 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 11 54563 -NCIT:C6124 Stage IVC Laryngeal Squamous Cell Carcinoma AJCC v7 10 54564 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 11 54565 -NCIT:C8244 Stage IV Laryngeal Verrucous Carcinoma AJCC v7 10 54566 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 11 54567 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 11 54568 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 11 54569 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 9 54570 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 10 54571 -NCIT:C4923 Glottis Carcinoma 8 54572 -NCIT:C8186 Glottic Squamous Cell Carcinoma 9 54573 -NCIT:C8189 Glottis Verrucous Carcinoma 10 54574 -NCIT:C54338 Laryngeal Adenosquamous Carcinoma 8 54575 -NCIT:C54339 Laryngeal Undifferentiated Carcinoma 8 54576 -NCIT:C54341 Laryngeal Lymphoepithelial Carcinoma 9 54577 -NCIT:C54342 Laryngeal Giant Cell Carcinoma 9 54578 -NCIT:C5972 Subglottic Carcinoma 8 54579 -NCIT:C8187 Subglottic Squamous Cell Carcinoma 9 54580 -NCIT:C8190 Subglottic Verrucous Carcinoma 10 54581 -NCIT:C5973 Supraglottic Carcinoma 8 54582 -NCIT:C35697 Epiglottic Carcinoma 9 54583 -NCIT:C181714 Epiglottic Squamous Cell Carcinoma 10 54584 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 11 54585 -NCIT:C4945 Supraglottic Squamous Cell Carcinoma 9 54586 -NCIT:C181714 Epiglottic Squamous Cell Carcinoma 10 54587 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 11 54588 -NCIT:C8191 Supraglottic Verrucous Carcinoma 10 54589 -NCIT:C90527 Laryngeal Cancer by AJCC v6 Stage 8 54590 -NCIT:C6868 Stage IV Laryngeal Cancer AJCC v6 9 54591 -NCIT:C8041 Stage I Laryngeal Cancer AJCC v6 and v7 9 54592 -NCIT:C8237 Stage I Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 10 54593 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 11 54594 -NCIT:C8042 Stage II Laryngeal Cancer AJCC v6 and v7 9 54595 -NCIT:C8239 Stage II Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 10 54596 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 11 54597 -NCIT:C8043 Stage III Laryngeal Cancer AJCC v6 and v7 9 54598 -NCIT:C8241 Stage III Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 10 54599 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 11 54600 -NCIT:C9100 Stage 0 Laryngeal Cancer AJCC v6, v7, and V8 9 54601 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 54602 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 11 54603 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 11 54604 -NCIT:C91256 Laryngeal Cancer by AJCC v7 Stage 8 54605 -NCIT:C8041 Stage I Laryngeal Cancer AJCC v6 and v7 9 54606 -NCIT:C8237 Stage I Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 10 54607 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 11 54608 -NCIT:C8042 Stage II Laryngeal Cancer AJCC v6 and v7 9 54609 -NCIT:C8239 Stage II Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 10 54610 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 11 54611 -NCIT:C8043 Stage III Laryngeal Cancer AJCC v6 and v7 9 54612 -NCIT:C8241 Stage III Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 10 54613 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 11 54614 -NCIT:C89091 Stage IV Laryngeal Cancer AJCC v7 9 54615 -NCIT:C6003 Stage IVC Laryngeal Cancer AJCC v7 10 54616 -NCIT:C6124 Stage IVC Laryngeal Squamous Cell Carcinoma AJCC v7 11 54617 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 12 54618 -NCIT:C6004 Stage IVB Laryngeal Cancer AJCC v7 10 54619 -NCIT:C6123 Stage IVB Laryngeal Squamous Cell Carcinoma AJCC v7 11 54620 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 12 54621 -NCIT:C6005 Stage IVA Laryngeal Cancer AJCC v7 10 54622 -NCIT:C6122 Stage IVA Laryngeal Squamous Cell Carcinoma AJCC v7 11 54623 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 12 54624 -NCIT:C8243 Stage IV Laryngeal Squamous Cell Carcinoma AJCC v7 10 54625 -NCIT:C6122 Stage IVA Laryngeal Squamous Cell Carcinoma AJCC v7 11 54626 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 12 54627 -NCIT:C6123 Stage IVB Laryngeal Squamous Cell Carcinoma AJCC v7 11 54628 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 12 54629 -NCIT:C6124 Stage IVC Laryngeal Squamous Cell Carcinoma AJCC v7 11 54630 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 12 54631 -NCIT:C8244 Stage IV Laryngeal Verrucous Carcinoma AJCC v7 11 54632 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 12 54633 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 12 54634 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 12 54635 -NCIT:C9100 Stage 0 Laryngeal Cancer AJCC v6, v7, and V8 9 54636 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 54637 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 11 54638 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 11 54639 -NCIT:C9462 Laryngeal Adenoid Cystic Carcinoma 8 54640 -NCIT:C9463 Laryngeal Mucoepidermoid Carcinoma 8 54641 -NCIT:C9466 Pharyngeal Carcinoma 7 54642 -NCIT:C102872 Pharyngeal Squamous Cell Carcinoma 8 54643 -NCIT:C167265 Nasopharyngeal Squamous Cell Carcinoma 9 54644 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 10 54645 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 54646 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 54647 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 11 54648 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 11 54649 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 54650 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 10 54651 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 54652 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 11 54653 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 10 54654 -NCIT:C54360 Nasopharyngeal Basaloid Carcinoma 10 54655 -NCIT:C7373 Nasopharyngeal Nonkeratinizing Carcinoma 10 54656 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 11 54657 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 54658 -NCIT:C54389 Nasopharyngeal Differentiated Carcinoma 11 54659 -NCIT:C8023 Nasopharyngeal Undifferentiated Carcinoma 11 54660 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 54661 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 12 54662 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 12 54663 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 12 54664 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 12 54665 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 12 54666 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 12 54667 -NCIT:C7992 Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 54668 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 54669 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 11 54670 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 54671 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 54672 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 54673 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 54674 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 54675 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 54676 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 54677 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 54678 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 9 54679 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 10 54680 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 54681 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 54682 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 54683 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 10 54684 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 54685 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 54686 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 11 54687 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 11 54688 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 54689 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 10 54690 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 54691 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 54692 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 10 54693 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 54694 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 54695 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 54696 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 9 54697 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 10 54698 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 54699 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 11 54700 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 10 54701 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 11 54702 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 10 54703 -NCIT:C35693 Posterior Pharyngeal Wall Squamous Cell Carcinoma 9 54704 -NCIT:C4043 Hypopharyngeal Squamous Cell Carcinoma 9 54705 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 10 54706 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 10 54707 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 54708 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 54709 -NCIT:C172646 Unresectable Hypopharyngeal Squamous Cell Carcinoma 10 54710 -NCIT:C4943 Pyriform Fossa Squamous Cell Carcinoma 10 54711 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 54712 -NCIT:C8185 Postcricoid Squamous Cell Carcinoma 10 54713 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 54714 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 54715 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 54716 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 54717 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 54718 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 54719 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 54720 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 10 54721 -NCIT:C8181 Oropharyngeal Squamous Cell Carcinoma 9 54722 -NCIT:C126750 Oropharyngeal Poorly Differentiated Carcinoma 10 54723 -NCIT:C126751 Oropharyngeal Basaloid Carcinoma 10 54724 -NCIT:C147906 Oropharyngeal p16INK4a-Negative Squamous Cell Carcinoma 10 54725 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 10 54726 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 10 54727 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 54728 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 54729 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 54730 -NCIT:C162787 Resectable Oropharyngeal Squamous Cell Carcinoma 10 54731 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 11 54732 -NCIT:C162833 Unresectable Oropharyngeal Squamous Cell Carcinoma 10 54733 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 11 54734 -NCIT:C173414 Oropharyngeal Human Papillomavirus-Negative Squamous Cell Carcinoma 10 54735 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 10 54736 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 54737 -NCIT:C68610 Oropharyngeal Undifferentiated Carcinoma 10 54738 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 54739 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 54740 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 54741 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 54742 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 54743 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 54744 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 54745 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 11 54746 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 54747 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 11 54748 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 11 54749 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 11 54750 -NCIT:C8183 Tonsillar Squamous Cell Carcinoma 10 54751 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 11 54752 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 54753 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 54754 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 54755 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 54756 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 54757 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 54758 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 54759 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 54760 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 54761 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 54762 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 54763 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 54764 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 54765 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 54766 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 54767 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 54768 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 54769 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 10 54770 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 11 54771 -NCIT:C87055 Oropharyngeal Human Papillomavirus-Positive Squamous Cell Carcinoma 10 54772 -NCIT:C132814 Pharyngeal Carcinoma by AJCC v8 Stage 8 54773 -NCIT:C132816 Nasopharyngeal Carcinoma by AJCC v8 Stage 9 54774 -NCIT:C132817 Stage I Nasopharyngeal Carcinoma AJCC v8 10 54775 -NCIT:C132818 Stage II Nasopharyngeal Carcinoma AJCC v8 10 54776 -NCIT:C132819 Stage III Nasopharyngeal Carcinoma AJCC v8 10 54777 -NCIT:C132820 Stage IV Nasopharyngeal Carcinoma AJCC v8 10 54778 -NCIT:C132821 Stage IVA Nasopharyngeal Carcinoma AJCC v8 11 54779 -NCIT:C132822 Stage IVB Nasopharyngeal Carcinoma AJCC v8 11 54780 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 10 54781 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 11 54782 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 11 54783 -NCIT:C132882 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Stage 9 54784 -NCIT:C132883 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Clinical Stage 10 54785 -NCIT:C132885 Clinical Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 54786 -NCIT:C132886 Clinical Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 54787 -NCIT:C132891 Clinical Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 54788 -NCIT:C132893 Clinical Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 54789 -NCIT:C132884 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Pathologic Stage 10 54790 -NCIT:C132898 Pathologic Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 54791 -NCIT:C132899 Pathologic Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 54792 -NCIT:C132900 Pathologic Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 54793 -NCIT:C132901 Pathologic Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 54794 -NCIT:C132994 Oropharyngeal (p16-Negative) Carcinoma by AJCC v8 Stage 9 54795 -NCIT:C132995 Stage 0 Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 54796 -NCIT:C132996 Stage I Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 54797 -NCIT:C132997 Stage II Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 54798 -NCIT:C132998 Stage III Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 54799 -NCIT:C132999 Stage IV Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 54800 -NCIT:C133000 Stage IVA Oropharyngeal (p16-Negative) Carcinoma AJCC v8 11 54801 -NCIT:C133001 Stage IVB Oropharyngeal (p16-Negative) Carcinoma AJCC v8 11 54802 -NCIT:C133002 Stage IVC Oropharyngeal (p16-Negative) Carcinoma AJCC v8 11 54803 -NCIT:C133003 Hypopharyngeal Carcinoma by AJCC v8 Stage 9 54804 -NCIT:C133005 Stage I Hypopharyngeal Carcinoma AJCC v8 10 54805 -NCIT:C133006 Stage II Hypopharyngeal Carcinoma AJCC v8 10 54806 -NCIT:C133007 Stage III Hypopharyngeal Carcinoma AJCC v8 10 54807 -NCIT:C133008 Stage IV Hypopharyngeal Carcinoma AJCC v8 10 54808 -NCIT:C133009 Stage IVA Hypopharyngeal Carcinoma AJCC v8 11 54809 -NCIT:C133010 Stage IVB Hypopharyngeal Carcinoma AJCC v8 11 54810 -NCIT:C133011 Stage IVC Hypopharyngeal Carcinoma AJCC v8 11 54811 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 10 54812 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 11 54813 -NCIT:C156080 Metastatic Pharyngeal Carcinoma 8 54814 -NCIT:C156079 Metastatic Nasopharyngeal Carcinoma 9 54815 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 10 54816 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 54817 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 54818 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 11 54819 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 11 54820 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 54821 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 10 54822 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 54823 -NCIT:C156081 Metastatic Hypopharyngeal Carcinoma 9 54824 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 10 54825 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 54826 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 54827 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 10 54828 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 54829 -NCIT:C156082 Metastatic Oropharyngeal Carcinoma 9 54830 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 10 54831 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 54832 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 54833 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 54834 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 10 54835 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 54836 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 54837 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 10 54838 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 54839 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 9 54840 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 54841 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 10 54842 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 54843 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 54844 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 10 54845 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 54846 -NCIT:C170784 Advanced Pharyngeal Carcinoma 9 54847 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 10 54848 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 54849 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 10 54850 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 54851 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 54852 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 54853 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 10 54854 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 54855 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 9 54856 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 10 54857 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 54858 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 54859 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 54860 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 10 54861 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 54862 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 54863 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 11 54864 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 11 54865 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 54866 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 10 54867 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 54868 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 54869 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 10 54870 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 54871 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 54872 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 54873 -NCIT:C35692 Posterior Pharyngeal Wall Carcinoma 8 54874 -NCIT:C35693 Posterior Pharyngeal Wall Squamous Cell Carcinoma 9 54875 -NCIT:C3871 Nasopharyngeal Carcinoma 8 54876 -NCIT:C132816 Nasopharyngeal Carcinoma by AJCC v8 Stage 9 54877 -NCIT:C132817 Stage I Nasopharyngeal Carcinoma AJCC v8 10 54878 -NCIT:C132818 Stage II Nasopharyngeal Carcinoma AJCC v8 10 54879 -NCIT:C132819 Stage III Nasopharyngeal Carcinoma AJCC v8 10 54880 -NCIT:C132820 Stage IV Nasopharyngeal Carcinoma AJCC v8 10 54881 -NCIT:C132821 Stage IVA Nasopharyngeal Carcinoma AJCC v8 11 54882 -NCIT:C132822 Stage IVB Nasopharyngeal Carcinoma AJCC v8 11 54883 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 10 54884 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 11 54885 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 11 54886 -NCIT:C148434 Refractory Nasopharyngeal Carcinoma 9 54887 -NCIT:C156079 Metastatic Nasopharyngeal Carcinoma 9 54888 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 10 54889 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 54890 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 54891 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 11 54892 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 11 54893 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 54894 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 10 54895 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 54896 -NCIT:C165176 Unresectable Nasopharyngeal Carcinoma 9 54897 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 10 54898 -NCIT:C167265 Nasopharyngeal Squamous Cell Carcinoma 9 54899 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 10 54900 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 54901 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 54902 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 11 54903 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 11 54904 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 54905 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 10 54906 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 54907 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 11 54908 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 10 54909 -NCIT:C54360 Nasopharyngeal Basaloid Carcinoma 10 54910 -NCIT:C7373 Nasopharyngeal Nonkeratinizing Carcinoma 10 54911 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 11 54912 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 54913 -NCIT:C54389 Nasopharyngeal Differentiated Carcinoma 11 54914 -NCIT:C8023 Nasopharyngeal Undifferentiated Carcinoma 11 54915 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 54916 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 12 54917 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 12 54918 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 12 54919 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 12 54920 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 12 54921 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 12 54922 -NCIT:C7992 Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 54923 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 54924 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 11 54925 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 54926 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 54927 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 54928 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 54929 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 54930 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 54931 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 54932 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 54933 -NCIT:C173340 Nasopharyngeal Adenoid Cystic Carcinoma 9 54934 -NCIT:C190276 Childhood Nasopharyngeal Carcinoma 9 54935 -NCIT:C54400 Nasopharyngeal Papillary Adenocarcinoma 9 54936 -NCIT:C90522 Nasopharyngeal Carcinoma by AJCC v6 Stage 9 54937 -NCIT:C7395 Stage I Nasopharyngeal Carcinoma AJCC v6 10 54938 -NCIT:C7396 Stage III Nasopharyngeal Carcinoma AJCC v6 10 54939 -NCIT:C7397 Stage IV Nasopharyngeal Carcinoma AJCC v6 10 54940 -NCIT:C7920 Stage II Nasopharyngeal Carcinoma AJCC v6 10 54941 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 10 54942 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 11 54943 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 11 54944 -NCIT:C91244 Nasopharyngeal Carcinoma by AJCC v7 Stage 9 54945 -NCIT:C88981 Stage I Nasopharyngeal Carcinoma AJCC v7 10 54946 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 54947 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 54948 -NCIT:C88982 Stage II Nasopharyngeal Carcinoma AJCC v7 10 54949 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 54950 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 54951 -NCIT:C88983 Stage III Nasopharyngeal Carcinoma AJCC v7 10 54952 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 54953 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 54954 -NCIT:C88984 Stage IV Nasopharyngeal Carcinoma AJCC v7 10 54955 -NCIT:C5995 Stage IVC Nasopharyngeal Carcinoma AJCC v7 11 54956 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 54957 -NCIT:C5996 Stage IVB Nasopharyngeal Carcinoma AJCC v7 11 54958 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 54959 -NCIT:C5997 Stage IVA Nasopharyngeal Carcinoma AJCC v7 11 54960 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 54961 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 54962 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 54963 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 54964 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 54965 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 54966 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 10 54967 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 11 54968 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 11 54969 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 9 54970 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 10 54971 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 54972 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 11 54973 -NCIT:C4942 Stage 0 Pharyngeal Cancer 8 54974 -NCIT:C132995 Stage 0 Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 54975 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 9 54976 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 54977 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 9 54978 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 10 54979 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 54980 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 9 54981 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 54982 -NCIT:C5103 Recurrent Pharyngeal Carcinoma 8 54983 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 9 54984 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 10 54985 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 54986 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 11 54987 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 10 54988 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 11 54989 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 10 54990 -NCIT:C8051 Recurrent Oropharyngeal Carcinoma 9 54991 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 10 54992 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 11 54993 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 9 54994 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 10 54995 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 54996 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 11 54997 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 9 54998 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 10 54999 -NCIT:C5818 Pharyngeal Adenoid Cystic Carcinoma 8 55000 -NCIT:C173340 Nasopharyngeal Adenoid Cystic Carcinoma 9 55001 -NCIT:C6241 Oropharyngeal Adenoid Cystic Carcinoma 9 55002 -NCIT:C8768 Stage I Pharyngeal Cancer 8 55003 -NCIT:C132817 Stage I Nasopharyngeal Carcinoma AJCC v8 9 55004 -NCIT:C132885 Clinical Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 9 55005 -NCIT:C132898 Pathologic Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 9 55006 -NCIT:C132996 Stage I Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 55007 -NCIT:C133005 Stage I Hypopharyngeal Carcinoma AJCC v8 9 55008 -NCIT:C7395 Stage I Nasopharyngeal Carcinoma AJCC v6 9 55009 -NCIT:C8038 Stage I Hypopharyngeal Carcinoma AJCC v6 9 55010 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 9 55011 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 55012 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 55013 -NCIT:C88981 Stage I Nasopharyngeal Carcinoma AJCC v7 9 55014 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 55015 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 55016 -NCIT:C89045 Stage I Hypopharyngeal Carcinoma AJCC v7 9 55017 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 55018 -NCIT:C8769 Stage II Pharyngeal Cancer 8 55019 -NCIT:C132818 Stage II Nasopharyngeal Carcinoma AJCC v8 9 55020 -NCIT:C132886 Clinical Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 9 55021 -NCIT:C132899 Pathologic Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 9 55022 -NCIT:C132997 Stage II Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 55023 -NCIT:C133006 Stage II Hypopharyngeal Carcinoma AJCC v8 9 55024 -NCIT:C7920 Stage II Nasopharyngeal Carcinoma AJCC v6 9 55025 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 9 55026 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 55027 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 9 55028 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 55029 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 55030 -NCIT:C88982 Stage II Nasopharyngeal Carcinoma AJCC v7 9 55031 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 55032 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 55033 -NCIT:C8770 Stage III Pharyngeal Cancer 8 55034 -NCIT:C132819 Stage III Nasopharyngeal Carcinoma AJCC v8 9 55035 -NCIT:C132891 Clinical Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 9 55036 -NCIT:C132900 Pathologic Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 9 55037 -NCIT:C132998 Stage III Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 55038 -NCIT:C133007 Stage III Hypopharyngeal Carcinoma AJCC v8 9 55039 -NCIT:C7396 Stage III Nasopharyngeal Carcinoma AJCC v6 9 55040 -NCIT:C8040 Stage III Hypopharyngeal Carcinoma AJCC v6 9 55041 -NCIT:C8050 Stage III Oropharyngeal Carcinoma AJCC v6 9 55042 -NCIT:C88983 Stage III Nasopharyngeal Carcinoma AJCC v7 9 55043 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 55044 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 55045 -NCIT:C89021 Stage III Oropharyngeal Carcinoma AJCC v7 9 55046 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 55047 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 55048 -NCIT:C89046 Stage III Hypopharyngeal Carcinoma AJCC v7 9 55049 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 55050 -NCIT:C8771 Stage IV Pharyngeal Cancer 8 55051 -NCIT:C132820 Stage IV Nasopharyngeal Carcinoma AJCC v8 9 55052 -NCIT:C132821 Stage IVA Nasopharyngeal Carcinoma AJCC v8 10 55053 -NCIT:C132822 Stage IVB Nasopharyngeal Carcinoma AJCC v8 10 55054 -NCIT:C132893 Clinical Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 9 55055 -NCIT:C132901 Pathologic Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 9 55056 -NCIT:C132999 Stage IV Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 55057 -NCIT:C133000 Stage IVA Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 55058 -NCIT:C133001 Stage IVB Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 55059 -NCIT:C133002 Stage IVC Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 55060 -NCIT:C133008 Stage IV Hypopharyngeal Carcinoma AJCC v8 9 55061 -NCIT:C133009 Stage IVA Hypopharyngeal Carcinoma AJCC v8 10 55062 -NCIT:C133010 Stage IVB Hypopharyngeal Carcinoma AJCC v8 10 55063 -NCIT:C133011 Stage IVC Hypopharyngeal Carcinoma AJCC v8 10 55064 -NCIT:C6000 Stage IVA Pharyngeal Cancer 9 55065 -NCIT:C132821 Stage IVA Nasopharyngeal Carcinoma AJCC v8 10 55066 -NCIT:C133000 Stage IVA Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 55067 -NCIT:C133009 Stage IVA Hypopharyngeal Carcinoma AJCC v8 10 55068 -NCIT:C5985 Stage IVA Oropharyngeal Carcinoma AJCC v7 10 55069 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 55070 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 55071 -NCIT:C5992 Stage IVA Hypopharyngeal Carcinoma AJCC v7 10 55072 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 55073 -NCIT:C5997 Stage IVA Nasopharyngeal Carcinoma AJCC v7 10 55074 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 55075 -NCIT:C6001 Stage IVB Pharyngeal Cancer 9 55076 -NCIT:C132822 Stage IVB Nasopharyngeal Carcinoma AJCC v8 10 55077 -NCIT:C133001 Stage IVB Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 55078 -NCIT:C133010 Stage IVB Hypopharyngeal Carcinoma AJCC v8 10 55079 -NCIT:C5986 Stage IVB Oropharyngeal Carcinoma AJCC v7 10 55080 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 55081 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 55082 -NCIT:C5993 Stage IVB Hypopharyngeal Carcinoma AJCC v7 10 55083 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 55084 -NCIT:C5996 Stage IVB Nasopharyngeal Carcinoma AJCC v7 10 55085 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 55086 -NCIT:C6002 Stage IVC Pharyngeal Cancer 9 55087 -NCIT:C133002 Stage IVC Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 55088 -NCIT:C133011 Stage IVC Hypopharyngeal Carcinoma AJCC v8 10 55089 -NCIT:C5987 Stage IVC Oropharyngeal Carcinoma AJCC v7 10 55090 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 55091 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 55092 -NCIT:C5994 Stage IVC Hypopharyngeal Carcinoma AJCC v7 10 55093 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 55094 -NCIT:C5995 Stage IVC Nasopharyngeal Carcinoma AJCC v7 10 55095 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 55096 -NCIT:C7397 Stage IV Nasopharyngeal Carcinoma AJCC v6 9 55097 -NCIT:C8533 Stage IV Hypopharyngeal Carcinoma AJCC v6 9 55098 -NCIT:C88984 Stage IV Nasopharyngeal Carcinoma AJCC v7 9 55099 -NCIT:C5995 Stage IVC Nasopharyngeal Carcinoma AJCC v7 10 55100 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 55101 -NCIT:C5996 Stage IVB Nasopharyngeal Carcinoma AJCC v7 10 55102 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 55103 -NCIT:C5997 Stage IVA Nasopharyngeal Carcinoma AJCC v7 10 55104 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 55105 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 55106 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 55107 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 55108 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 55109 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 55110 -NCIT:C89023 Stage IV Oropharyngeal Carcinoma AJCC v7 9 55111 -NCIT:C5985 Stage IVA Oropharyngeal Carcinoma AJCC v7 10 55112 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 55113 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 55114 -NCIT:C5986 Stage IVB Oropharyngeal Carcinoma AJCC v7 10 55115 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 55116 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 55117 -NCIT:C5987 Stage IVC Oropharyngeal Carcinoma AJCC v7 10 55118 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 55119 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 55120 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 55121 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 55122 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 55123 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 55124 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 55125 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 55126 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 55127 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 55128 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 55129 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 55130 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 55131 -NCIT:C89047 Stage IV Hypopharyngeal Carcinoma AJCC v7 9 55132 -NCIT:C5992 Stage IVA Hypopharyngeal Carcinoma AJCC v7 10 55133 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 55134 -NCIT:C5993 Stage IVB Hypopharyngeal Carcinoma AJCC v7 10 55135 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 55136 -NCIT:C5994 Stage IVC Hypopharyngeal Carcinoma AJCC v7 10 55137 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 55138 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 55139 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 55140 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 55141 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 55142 -NCIT:C9218 Stage IV Oropharyngeal Carcinoma AJCC v6 9 55143 -NCIT:C90525 Pharyngeal Carcinoma by AJCC v6 Stage 8 55144 -NCIT:C90522 Nasopharyngeal Carcinoma by AJCC v6 Stage 9 55145 -NCIT:C7395 Stage I Nasopharyngeal Carcinoma AJCC v6 10 55146 -NCIT:C7396 Stage III Nasopharyngeal Carcinoma AJCC v6 10 55147 -NCIT:C7397 Stage IV Nasopharyngeal Carcinoma AJCC v6 10 55148 -NCIT:C7920 Stage II Nasopharyngeal Carcinoma AJCC v6 10 55149 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 10 55150 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 11 55151 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 11 55152 -NCIT:C90523 Oropharyngeal Carcinoma by AJCC v6 Stage 9 55153 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 10 55154 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 55155 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 10 55156 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 55157 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 12 55158 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 10 55159 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 55160 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 12 55161 -NCIT:C8050 Stage III Oropharyngeal Carcinoma AJCC v6 10 55162 -NCIT:C9218 Stage IV Oropharyngeal Carcinoma AJCC v6 10 55163 -NCIT:C90524 Hypopharyngeal Carcinoma by AJCC v6 Stage 9 55164 -NCIT:C8038 Stage I Hypopharyngeal Carcinoma AJCC v6 10 55165 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 10 55166 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 55167 -NCIT:C8040 Stage III Hypopharyngeal Carcinoma AJCC v6 10 55168 -NCIT:C8533 Stage IV Hypopharyngeal Carcinoma AJCC v6 10 55169 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 10 55170 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 11 55171 -NCIT:C9105 Oropharyngeal Carcinoma 8 55172 -NCIT:C132882 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Stage 9 55173 -NCIT:C132883 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Clinical Stage 10 55174 -NCIT:C132885 Clinical Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 55175 -NCIT:C132886 Clinical Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 55176 -NCIT:C132891 Clinical Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 55177 -NCIT:C132893 Clinical Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 55178 -NCIT:C132884 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Pathologic Stage 10 55179 -NCIT:C132898 Pathologic Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 55180 -NCIT:C132899 Pathologic Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 55181 -NCIT:C132900 Pathologic Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 55182 -NCIT:C132901 Pathologic Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 55183 -NCIT:C132994 Oropharyngeal (p16-Negative) Carcinoma by AJCC v8 Stage 9 55184 -NCIT:C132995 Stage 0 Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 55185 -NCIT:C132996 Stage I Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 55186 -NCIT:C132997 Stage II Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 55187 -NCIT:C132998 Stage III Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 55188 -NCIT:C132999 Stage IV Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 55189 -NCIT:C133000 Stage IVA Oropharyngeal (p16-Negative) Carcinoma AJCC v8 11 55190 -NCIT:C133001 Stage IVB Oropharyngeal (p16-Negative) Carcinoma AJCC v8 11 55191 -NCIT:C133002 Stage IVC Oropharyngeal (p16-Negative) Carcinoma AJCC v8 11 55192 -NCIT:C156082 Metastatic Oropharyngeal Carcinoma 9 55193 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 10 55194 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 55195 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 55196 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 55197 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 10 55198 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 55199 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 55200 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 10 55201 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 55202 -NCIT:C173576 Oropharyngeal Polymorphous Adenocarcinoma 9 55203 -NCIT:C4825 Tonsillar Carcinoma 9 55204 -NCIT:C8183 Tonsillar Squamous Cell Carcinoma 10 55205 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 11 55206 -NCIT:C6241 Oropharyngeal Adenoid Cystic Carcinoma 9 55207 -NCIT:C8051 Recurrent Oropharyngeal Carcinoma 9 55208 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 10 55209 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 11 55210 -NCIT:C8181 Oropharyngeal Squamous Cell Carcinoma 9 55211 -NCIT:C126750 Oropharyngeal Poorly Differentiated Carcinoma 10 55212 -NCIT:C126751 Oropharyngeal Basaloid Carcinoma 10 55213 -NCIT:C147906 Oropharyngeal p16INK4a-Negative Squamous Cell Carcinoma 10 55214 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 10 55215 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 10 55216 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 55217 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 55218 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 55219 -NCIT:C162787 Resectable Oropharyngeal Squamous Cell Carcinoma 10 55220 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 11 55221 -NCIT:C162833 Unresectable Oropharyngeal Squamous Cell Carcinoma 10 55222 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 11 55223 -NCIT:C173414 Oropharyngeal Human Papillomavirus-Negative Squamous Cell Carcinoma 10 55224 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 10 55225 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 55226 -NCIT:C68610 Oropharyngeal Undifferentiated Carcinoma 10 55227 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 55228 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 55229 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 55230 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 55231 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 55232 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 55233 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 55234 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 11 55235 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 55236 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 11 55237 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 11 55238 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 11 55239 -NCIT:C8183 Tonsillar Squamous Cell Carcinoma 10 55240 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 11 55241 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 55242 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 55243 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 55244 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 55245 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 55246 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 55247 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 55248 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 55249 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 55250 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 55251 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 55252 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 55253 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 55254 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 55255 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 55256 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 55257 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 55258 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 10 55259 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 11 55260 -NCIT:C87055 Oropharyngeal Human Papillomavirus-Positive Squamous Cell Carcinoma 10 55261 -NCIT:C8395 Soft Palate Carcinoma 9 55262 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 10 55263 -NCIT:C90523 Oropharyngeal Carcinoma by AJCC v6 Stage 9 55264 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 10 55265 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 55266 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 10 55267 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 55268 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 12 55269 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 10 55270 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 55271 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 12 55272 -NCIT:C8050 Stage III Oropharyngeal Carcinoma AJCC v6 10 55273 -NCIT:C9218 Stage IV Oropharyngeal Carcinoma AJCC v6 10 55274 -NCIT:C91248 Oropharyngeal Carcinoma by AJCC v7 Stage 9 55275 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 10 55276 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 55277 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 10 55278 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 55279 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 12 55280 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 10 55281 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 55282 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 12 55283 -NCIT:C89021 Stage III Oropharyngeal Carcinoma AJCC v7 10 55284 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 55285 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 55286 -NCIT:C89023 Stage IV Oropharyngeal Carcinoma AJCC v7 10 55287 -NCIT:C5985 Stage IVA Oropharyngeal Carcinoma AJCC v7 11 55288 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 55289 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 55290 -NCIT:C5986 Stage IVB Oropharyngeal Carcinoma AJCC v7 11 55291 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 55292 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 55293 -NCIT:C5987 Stage IVC Oropharyngeal Carcinoma AJCC v7 11 55294 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 55295 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 55296 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 55297 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 55298 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 55299 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 55300 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 55301 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 55302 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 55303 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 55304 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 55305 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 55306 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 55307 -NCIT:C91252 Pharyngeal Carcinoma by AJCC v7 Stage 8 55308 -NCIT:C91244 Nasopharyngeal Carcinoma by AJCC v7 Stage 9 55309 -NCIT:C88981 Stage I Nasopharyngeal Carcinoma AJCC v7 10 55310 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 55311 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 55312 -NCIT:C88982 Stage II Nasopharyngeal Carcinoma AJCC v7 10 55313 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 55314 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 55315 -NCIT:C88983 Stage III Nasopharyngeal Carcinoma AJCC v7 10 55316 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 55317 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 55318 -NCIT:C88984 Stage IV Nasopharyngeal Carcinoma AJCC v7 10 55319 -NCIT:C5995 Stage IVC Nasopharyngeal Carcinoma AJCC v7 11 55320 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 55321 -NCIT:C5996 Stage IVB Nasopharyngeal Carcinoma AJCC v7 11 55322 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 55323 -NCIT:C5997 Stage IVA Nasopharyngeal Carcinoma AJCC v7 11 55324 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 55325 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 55326 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 55327 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 55328 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 55329 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 55330 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 10 55331 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 11 55332 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 11 55333 -NCIT:C91248 Oropharyngeal Carcinoma by AJCC v7 Stage 9 55334 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 10 55335 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 55336 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 10 55337 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 55338 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 12 55339 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 10 55340 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 55341 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 12 55342 -NCIT:C89021 Stage III Oropharyngeal Carcinoma AJCC v7 10 55343 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 55344 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 55345 -NCIT:C89023 Stage IV Oropharyngeal Carcinoma AJCC v7 10 55346 -NCIT:C5985 Stage IVA Oropharyngeal Carcinoma AJCC v7 11 55347 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 55348 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 55349 -NCIT:C5986 Stage IVB Oropharyngeal Carcinoma AJCC v7 11 55350 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 55351 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 55352 -NCIT:C5987 Stage IVC Oropharyngeal Carcinoma AJCC v7 11 55353 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 55354 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 55355 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 55356 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 55357 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 55358 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 55359 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 55360 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 55361 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 55362 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 55363 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 55364 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 55365 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 55366 -NCIT:C91251 Hypopharyngeal Carcinoma by AJCC v7 Stage 9 55367 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 10 55368 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 55369 -NCIT:C89045 Stage I Hypopharyngeal Carcinoma AJCC v7 10 55370 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 55371 -NCIT:C89046 Stage III Hypopharyngeal Carcinoma AJCC v7 10 55372 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 55373 -NCIT:C89047 Stage IV Hypopharyngeal Carcinoma AJCC v7 10 55374 -NCIT:C5992 Stage IVA Hypopharyngeal Carcinoma AJCC v7 11 55375 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 55376 -NCIT:C5993 Stage IVB Hypopharyngeal Carcinoma AJCC v7 11 55377 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 55378 -NCIT:C5994 Stage IVC Hypopharyngeal Carcinoma AJCC v7 11 55379 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 55380 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 55381 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 55382 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 55383 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 55384 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 10 55385 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 11 55386 -NCIT:C9465 Hypopharyngeal Carcinoma 8 55387 -NCIT:C133003 Hypopharyngeal Carcinoma by AJCC v8 Stage 9 55388 -NCIT:C133005 Stage I Hypopharyngeal Carcinoma AJCC v8 10 55389 -NCIT:C133006 Stage II Hypopharyngeal Carcinoma AJCC v8 10 55390 -NCIT:C133007 Stage III Hypopharyngeal Carcinoma AJCC v8 10 55391 -NCIT:C133008 Stage IV Hypopharyngeal Carcinoma AJCC v8 10 55392 -NCIT:C133009 Stage IVA Hypopharyngeal Carcinoma AJCC v8 11 55393 -NCIT:C133010 Stage IVB Hypopharyngeal Carcinoma AJCC v8 11 55394 -NCIT:C133011 Stage IVC Hypopharyngeal Carcinoma AJCC v8 11 55395 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 10 55396 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 11 55397 -NCIT:C156081 Metastatic Hypopharyngeal Carcinoma 9 55398 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 10 55399 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 55400 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 55401 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 10 55402 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 55403 -NCIT:C4043 Hypopharyngeal Squamous Cell Carcinoma 9 55404 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 10 55405 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 10 55406 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 55407 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 55408 -NCIT:C172646 Unresectable Hypopharyngeal Squamous Cell Carcinoma 10 55409 -NCIT:C4943 Pyriform Fossa Squamous Cell Carcinoma 10 55410 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 55411 -NCIT:C8185 Postcricoid Squamous Cell Carcinoma 10 55412 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 55413 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 55414 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 55415 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 55416 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 55417 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 55418 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 55419 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 10 55420 -NCIT:C6700 Pyriform Fossa Carcinoma 9 55421 -NCIT:C4943 Pyriform Fossa Squamous Cell Carcinoma 10 55422 -NCIT:C8595 Postcricoid Carcinoma 9 55423 -NCIT:C8185 Postcricoid Squamous Cell Carcinoma 10 55424 -NCIT:C90524 Hypopharyngeal Carcinoma by AJCC v6 Stage 9 55425 -NCIT:C8038 Stage I Hypopharyngeal Carcinoma AJCC v6 10 55426 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 10 55427 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 55428 -NCIT:C8040 Stage III Hypopharyngeal Carcinoma AJCC v6 10 55429 -NCIT:C8533 Stage IV Hypopharyngeal Carcinoma AJCC v6 10 55430 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 10 55431 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 11 55432 -NCIT:C91251 Hypopharyngeal Carcinoma by AJCC v7 Stage 9 55433 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 10 55434 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 55435 -NCIT:C89045 Stage I Hypopharyngeal Carcinoma AJCC v7 10 55436 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 55437 -NCIT:C89046 Stage III Hypopharyngeal Carcinoma AJCC v7 10 55438 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 55439 -NCIT:C89047 Stage IV Hypopharyngeal Carcinoma AJCC v7 10 55440 -NCIT:C5992 Stage IVA Hypopharyngeal Carcinoma AJCC v7 11 55441 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 55442 -NCIT:C5993 Stage IVB Hypopharyngeal Carcinoma AJCC v7 11 55443 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 55444 -NCIT:C5994 Stage IVC Hypopharyngeal Carcinoma AJCC v7 11 55445 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 55446 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 55447 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 55448 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 55449 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 55450 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 10 55451 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 11 55452 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 9 55453 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 10 55454 -NCIT:C4815 Thyroid Gland Carcinoma 6 55455 -NCIT:C118827 Childhood Thyroid Gland Carcinoma 7 55456 -NCIT:C123903 Childhood Thyroid Gland Papillary Carcinoma 8 55457 -NCIT:C123904 Childhood Thyroid Gland Follicular Carcinoma 8 55458 -NCIT:C123905 Childhood Thyroid Gland Medullary Carcinoma 8 55459 -NCIT:C190064 Childhood Thyroid Gland Spindle Epithelial Tumor with Thymus-Like Elements 8 55460 -NCIT:C126408 Thyroid Gland Cribriform Morular Carcinoma 7 55461 -NCIT:C129784 Unresectable Thyroid Gland Carcinoma 7 55462 -NCIT:C163974 Unresectable Thyroid Gland Medullary Carcinoma 8 55463 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 9 55464 -NCIT:C168572 Unresectable Differentiated Thyroid Gland Carcinoma 8 55465 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 9 55466 -NCIT:C174571 Unresectable Thyroid Gland Follicular Carcinoma 9 55467 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 10 55468 -NCIT:C170833 Unresectable Thyroid Gland Anaplastic Carcinoma 8 55469 -NCIT:C174569 Unresectable Poorly Differentiated Thyroid Gland Carcinoma 8 55470 -NCIT:C133193 Metastatic Thyroid Gland Carcinoma 7 55471 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 8 55472 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 55473 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 55474 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 8 55475 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 55476 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 55477 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 55478 -NCIT:C170831 Metastatic Thyroid Gland Anaplastic Carcinoma 8 55479 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 55480 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 55481 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 8 55482 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 55483 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 9 55484 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 55485 -NCIT:C173979 Metastatic Differentiated Thyroid Gland Carcinoma 8 55486 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 9 55487 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 10 55488 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 11 55489 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 9 55490 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 55491 -NCIT:C174046 Metastatic Poorly Differentiated Thyroid Gland Carcinoma 8 55492 -NCIT:C142983 Refractory Thyroid Gland Carcinoma 7 55493 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 8 55494 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 9 55495 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 9 55496 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 10 55497 -NCIT:C170832 Refractory Thyroid Gland Anaplastic Carcinoma 8 55498 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 8 55499 -NCIT:C156267 Thyroid Gland Mucinous Carcinoma 7 55500 -NCIT:C27380 Thyroid Gland Adenocarcinoma 7 55501 -NCIT:C187645 Follicular-Derived Thyroid Gland Carcinoma, High Grade 8 55502 -NCIT:C187648 Differentiated High Grade Thyroid Gland Carcinoma 9 55503 -NCIT:C6040 Poorly Differentiated Thyroid Gland Carcinoma 9 55504 -NCIT:C174046 Metastatic Poorly Differentiated Thyroid Gland Carcinoma 10 55505 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 10 55506 -NCIT:C174569 Unresectable Poorly Differentiated Thyroid Gland Carcinoma 10 55507 -NCIT:C187994 Thyroid Gland Secretory Carcinoma 8 55508 -NCIT:C7153 Differentiated Thyroid Gland Carcinoma 8 55509 -NCIT:C118829 Hereditary Nonmedullary Thyroid Gland Carcinoma 9 55510 -NCIT:C140959 Differentiated Thyroid Gland Carcinoma by AJCC v7 Stage 9 55511 -NCIT:C140958 Thyroid Gland Follicular Carcinoma by AJCC v7 Stage 10 55512 -NCIT:C9084 Stage I Thyroid Gland Follicular Carcinoma AJCC v7 11 55513 -NCIT:C9085 Stage II Thyroid Gland Follicular Carcinoma AJCC v7 11 55514 -NCIT:C9086 Stage IV Thyroid Gland Follicular Carcinoma AJCC v7 11 55515 -NCIT:C115035 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v7 12 55516 -NCIT:C115036 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v7 12 55517 -NCIT:C115037 Stage IVC Thyroid Gland Follicular Carcinoma AJCC v7 12 55518 -NCIT:C9121 Stage III Thyroid Gland Follicular Carcinoma AJCC v7 11 55519 -NCIT:C140960 Thyroid Gland Papillary Carcinoma by AJCC v7 Stage 10 55520 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 11 55521 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 11 55522 -NCIT:C9083 Stage IV Thyroid Gland Papillary Carcinoma AJCC v7 11 55523 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 12 55524 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 12 55525 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 12 55526 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 11 55527 -NCIT:C87543 Stage I Differentiated Thyroid Gland Carcinoma AJCC v7 10 55528 -NCIT:C101539 Stage I Differentiated Thyroid Gland Carcinoma Under 45 Years AJCC v7 11 55529 -NCIT:C101540 Stage I Differentiated Thyroid Gland Carcinoma 45 Years and Older AJCC v7 11 55530 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 11 55531 -NCIT:C9084 Stage I Thyroid Gland Follicular Carcinoma AJCC v7 11 55532 -NCIT:C87544 Stage II Differentiated Thyroid Gland Carcinoma AJCC v7 10 55533 -NCIT:C101541 Stage II Differentiated Thyroid Gland Carcinoma Under 45 Years AJCC v7 11 55534 -NCIT:C101542 Stage II Differentiated Thyroid Gland Carcinoma 45 Years and Older AJCC v7 11 55535 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 11 55536 -NCIT:C9085 Stage II Thyroid Gland Follicular Carcinoma AJCC v7 11 55537 -NCIT:C87545 Stage III Differentiated Thyroid Gland Carcinoma AJCC v7 10 55538 -NCIT:C9121 Stage III Thyroid Gland Follicular Carcinoma AJCC v7 11 55539 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 11 55540 -NCIT:C87546 Stage IVA Differentiated Thyroid Gland Carcinoma AJCC v7 10 55541 -NCIT:C115035 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v7 11 55542 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 11 55543 -NCIT:C87547 Stage IVB Differentiated Thyroid Gland Carcinoma AJCC v7 10 55544 -NCIT:C115036 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v7 11 55545 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 11 55546 -NCIT:C87548 Stage IVC Differentiated Thyroid Gland Carcinoma AJCC v7 10 55547 -NCIT:C115037 Stage IVC Thyroid Gland Follicular Carcinoma AJCC v7 11 55548 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 11 55549 -NCIT:C140965 Differentiated Thyroid Gland Carcinoma by AJCC v8 Stage 9 55550 -NCIT:C140966 Stage I Differentiated Thyroid Gland Carcinoma AJCC v8 10 55551 -NCIT:C140967 Stage I Differentiated Thyroid Gland Carcinoma Under 55 Years AJCC v8 11 55552 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 55553 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 55554 -NCIT:C140968 Stage I Differentiated Thyroid Gland Carcinoma 55 Years and Older AJCC v8 11 55555 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 55556 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 55557 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 11 55558 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 55559 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 55560 -NCIT:C140988 Stage I Thyroid Gland Follicular Carcinoma AJCC v8 11 55561 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 55562 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 55563 -NCIT:C140969 Stage II Differentiated Thyroid Gland Carcinoma AJCC v8 10 55564 -NCIT:C140970 Stage II Differentiated Thyroid Gland Carcinoma Under 55 Years AJCC v8 11 55565 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 55566 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 55567 -NCIT:C140971 Stage II Differentiated Thyroid Gland Carcinoma 55 Years and Older AJCC v8 11 55568 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 55569 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 55570 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 11 55571 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 55572 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 55573 -NCIT:C140991 Stage II Thyroid Gland Follicular Carcinoma AJCC v8 11 55574 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 55575 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 55576 -NCIT:C140972 Stage III Differentiated Thyroid Gland Carcinoma AJCC v8 10 55577 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 11 55578 -NCIT:C140995 Stage III Thyroid Gland Follicular Carcinoma AJCC v8 11 55579 -NCIT:C140973 Stage IV Differentiated Thyroid Gland Carcinoma AJCC v8 10 55580 -NCIT:C140974 Stage IVA Differentiated Thyroid Gland Carcinoma AJCC v8 11 55581 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 12 55582 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 12 55583 -NCIT:C140975 Stage IVB Differentiated Thyroid Gland Carcinoma AJCC v8 11 55584 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 12 55585 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 12 55586 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 11 55587 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 12 55588 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 12 55589 -NCIT:C140996 Stage IV Thyroid Gland Follicular Carcinoma AJCC v8 11 55590 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 12 55591 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 12 55592 -NCIT:C140976 Thyroid Gland Papillary Carcinoma by AJCC v8 Stage 10 55593 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 11 55594 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 55595 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 55596 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 11 55597 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 55598 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 55599 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 11 55600 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 11 55601 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 12 55602 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 12 55603 -NCIT:C140987 Thyroid Gland Follicular Carcinoma by AJCC v8 Stage 10 55604 -NCIT:C140988 Stage I Thyroid Gland Follicular Carcinoma AJCC v8 11 55605 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 55606 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 55607 -NCIT:C140991 Stage II Thyroid Gland Follicular Carcinoma AJCC v8 11 55608 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 55609 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 55610 -NCIT:C140995 Stage III Thyroid Gland Follicular Carcinoma AJCC v8 11 55611 -NCIT:C140996 Stage IV Thyroid Gland Follicular Carcinoma AJCC v8 11 55612 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 12 55613 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 12 55614 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 9 55615 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 10 55616 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 10 55617 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 11 55618 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 9 55619 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 10 55620 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 10 55621 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 11 55622 -NCIT:C168572 Unresectable Differentiated Thyroid Gland Carcinoma 9 55623 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 10 55624 -NCIT:C174571 Unresectable Thyroid Gland Follicular Carcinoma 10 55625 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 11 55626 -NCIT:C173979 Metastatic Differentiated Thyroid Gland Carcinoma 9 55627 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 10 55628 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 11 55629 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 12 55630 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 10 55631 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 10 55632 -NCIT:C4035 Thyroid Gland Papillary Carcinoma 9 55633 -NCIT:C123903 Childhood Thyroid Gland Papillary Carcinoma 10 55634 -NCIT:C126409 Warthin-Like Variant Thyroid Gland Papillary Carcinoma 10 55635 -NCIT:C126410 Thyroid Gland Papillary Carcinoma with Fibromatosis/Fasciitis-Like/Desmoid-Type Stroma 10 55636 -NCIT:C126594 Follicular Variant Thyroid Gland Papillary Carcinoma 10 55637 -NCIT:C66850 Invasive Encapsulated Follicular Variant Thyroid Gland Papillary Carcinoma 11 55638 -NCIT:C7381 Invasive Follicular Variant Thyroid Gland Papillary Carcinoma 11 55639 -NCIT:C140960 Thyroid Gland Papillary Carcinoma by AJCC v7 Stage 10 55640 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 11 55641 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 11 55642 -NCIT:C9083 Stage IV Thyroid Gland Papillary Carcinoma AJCC v7 11 55643 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 12 55644 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 12 55645 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 12 55646 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 11 55647 -NCIT:C140976 Thyroid Gland Papillary Carcinoma by AJCC v8 Stage 10 55648 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 11 55649 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 55650 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 55651 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 11 55652 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 55653 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 55654 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 11 55655 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 11 55656 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 12 55657 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 12 55658 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 10 55659 -NCIT:C156034 Encapsulated Variant Thyroid Gland Papillary Carcinoma 10 55660 -NCIT:C156045 Spindle Cell Variant Thyroid Gland Papillary Carcinoma 10 55661 -NCIT:C156050 Hobnail Variant Thyroid Gland Papillary Carcinoma 10 55662 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 10 55663 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 10 55664 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 10 55665 -NCIT:C187644 Classic Thyroid Gland Papillary Carcinoma 10 55666 -NCIT:C35558 Tall Cell Variant Thyroid Gland Papillary Carcinoma 10 55667 -NCIT:C35830 Columnar Cell Variant Thyroid Gland Papillary Carcinoma 10 55668 -NCIT:C37304 Multicentric Thyroid Gland Papillary Carcinoma 10 55669 -NCIT:C46004 Thyroid Gland Papillary Microcarcinoma 10 55670 -NCIT:C46092 Macrofollicular Variant Thyroid Gland Papillary Carcinoma 10 55671 -NCIT:C46093 Oncocytic Variant Thyroid Gland Papillary Carcinoma 10 55672 -NCIT:C46094 Clear Cell Variant Thyroid Gland Papillary Carcinoma 10 55673 -NCIT:C46095 Solid/Trabecular Variant Thyroid Gland Papillary Carcinoma 10 55674 -NCIT:C7427 Diffuse Sclerosing Variant Thyroid Gland Papillary Carcinoma 10 55675 -NCIT:C8054 Thyroid Gland Follicular Carcinoma 9 55676 -NCIT:C123904 Childhood Thyroid Gland Follicular Carcinoma 10 55677 -NCIT:C140958 Thyroid Gland Follicular Carcinoma by AJCC v7 Stage 10 55678 -NCIT:C9084 Stage I Thyroid Gland Follicular Carcinoma AJCC v7 11 55679 -NCIT:C9085 Stage II Thyroid Gland Follicular Carcinoma AJCC v7 11 55680 -NCIT:C9086 Stage IV Thyroid Gland Follicular Carcinoma AJCC v7 11 55681 -NCIT:C115035 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v7 12 55682 -NCIT:C115036 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v7 12 55683 -NCIT:C115037 Stage IVC Thyroid Gland Follicular Carcinoma AJCC v7 12 55684 -NCIT:C9121 Stage III Thyroid Gland Follicular Carcinoma AJCC v7 11 55685 -NCIT:C140987 Thyroid Gland Follicular Carcinoma by AJCC v8 Stage 10 55686 -NCIT:C140988 Stage I Thyroid Gland Follicular Carcinoma AJCC v8 11 55687 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 55688 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 55689 -NCIT:C140991 Stage II Thyroid Gland Follicular Carcinoma AJCC v8 11 55690 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 55691 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 55692 -NCIT:C140995 Stage III Thyroid Gland Follicular Carcinoma AJCC v8 11 55693 -NCIT:C140996 Stage IV Thyroid Gland Follicular Carcinoma AJCC v8 11 55694 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 12 55695 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 12 55696 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 10 55697 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 11 55698 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 10 55699 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 11 55700 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 12 55701 -NCIT:C156122 Thyroid Gland Follicular Carcinoma, Encapsulated Angioinvasive 10 55702 -NCIT:C156123 Thyroid Gland Follicular Carcinoma, Widely Invasive 10 55703 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 10 55704 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 11 55705 -NCIT:C174571 Unresectable Thyroid Gland Follicular Carcinoma 10 55706 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 11 55707 -NCIT:C187643 Thyroid Gland Follicular Carcinoma, Signet Ring Cell Variant 10 55708 -NCIT:C46096 Thyroid Gland Follicular Carcinoma, Clear Cell Variant 10 55709 -NCIT:C4946 Thyroid Gland Oncocytic Carcinoma 10 55710 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 11 55711 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 11 55712 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 11 55713 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 11 55714 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 12 55715 -NCIT:C65200 Thyroid Gland Follicular Carcinoma, Minimally Invasive 10 55716 -NCIT:C38762 Thyroid Gland Mucoepidermoid Carcinoma 7 55717 -NCIT:C38763 Thyroid Gland Sclerosing Mucoepidermoid Carcinoma with Eosinophilia 8 55718 -NCIT:C3878 Thyroid Gland Anaplastic Carcinoma 7 55719 -NCIT:C140999 Thyroid Gland Anaplastic Carcinoma by AJCC v7 Stage 8 55720 -NCIT:C87552 Stage IVA Thyroid Gland Anaplastic Carcinoma AJCC v7 9 55721 -NCIT:C87553 Stage IVB Thyroid Gland Anaplastic Carcinoma AJCC v7 9 55722 -NCIT:C87554 Stage IVC Thyroid Gland Anaplastic Carcinoma AJCC v7 9 55723 -NCIT:C141000 Thyroid Gland Anaplastic Carcinoma by AJCC v8 Stage 8 55724 -NCIT:C141001 Stage IVA Thyroid Gland Anaplastic Carcinoma AJCC v8 9 55725 -NCIT:C141003 Stage IVB Thyroid Gland Anaplastic Carcinoma AJCC v8 9 55726 -NCIT:C141004 Stage IVC Thyroid Gland Anaplastic Carcinoma AJCC v8 9 55727 -NCIT:C153624 Recurrent Thyroid Gland Anaplastic Carcinoma 8 55728 -NCIT:C170831 Metastatic Thyroid Gland Anaplastic Carcinoma 8 55729 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 55730 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 55731 -NCIT:C170832 Refractory Thyroid Gland Anaplastic Carcinoma 8 55732 -NCIT:C170833 Unresectable Thyroid Gland Anaplastic Carcinoma 8 55733 -NCIT:C46008 Thyroid Gland Anaplastic Carcinoma, Squamous Cell Carcinoma Pattern 8 55734 -NCIT:C7906 Thyroid Gland Anaplastic Carcinoma, Osteoclastic Variant 8 55735 -NCIT:C3879 Thyroid Gland Medullary Carcinoma 7 55736 -NCIT:C123905 Childhood Thyroid Gland Medullary Carcinoma 8 55737 -NCIT:C141041 Thyroid Gland Medullary Carcinoma by AJCC v7 Stage 8 55738 -NCIT:C6133 Stage I Thyroid Gland Medullary Carcinoma AJCC v7 9 55739 -NCIT:C6134 Stage II Thyroid Gland Medullary Carcinoma AJCC v7 9 55740 -NCIT:C6135 Stage III Thyroid Gland Medullary Carcinoma AJCC v7 9 55741 -NCIT:C6136 Stage IV Thyroid Gland Medullary Carcinoma AJCC v7 9 55742 -NCIT:C87549 Stage IVA Thyroid Gland Medullary Carcinoma AJCC v7 10 55743 -NCIT:C87550 Stage IVB Thyroid Gland Medullary Carcinoma AJCC v7 10 55744 -NCIT:C87551 Stage IVC Thyroid Gland Medullary Carcinoma AJCC v7 10 55745 -NCIT:C141042 Thyroid Gland Medullary Carcinoma by AJCC v8 Stage 8 55746 -NCIT:C141043 Stage I Thyroid Gland Medullary Carcinoma AJCC v8 9 55747 -NCIT:C141044 Stage II Thyroid Gland Medullary Carcinoma AJCC v8 9 55748 -NCIT:C141045 Stage III Thyroid Gland Medullary Carcinoma AJCC v8 9 55749 -NCIT:C141046 Stage IV Thyroid Gland Medullary Carcinoma AJCC v8 9 55750 -NCIT:C141047 Stage IVA Thyroid Gland Medullary Carcinoma AJCC v8 10 55751 -NCIT:C141048 Stage IVB Thyroid Gland Medullary Carcinoma AJCC v8 10 55752 -NCIT:C141049 Stage IVC Thyroid Gland Medullary Carcinoma AJCC v8 10 55753 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 8 55754 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 9 55755 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 8 55756 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 55757 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 55758 -NCIT:C163974 Unresectable Thyroid Gland Medullary Carcinoma 8 55759 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 9 55760 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 8 55761 -NCIT:C4193 Thyroid Gland Medullary Carcinoma with Amyloid Stroma 8 55762 -NCIT:C46098 Sporadic Thyroid Gland Medullary Carcinoma 8 55763 -NCIT:C46103 Sporadic Thyroid Gland Micromedullary Carcinoma 9 55764 -NCIT:C46099 Hereditary Thyroid Gland Medullary Carcinoma 8 55765 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 9 55766 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 9 55767 -NCIT:C46104 Thyroid Gland Mixed Medullary and Follicular Cell-Derived Carcinoma 7 55768 -NCIT:C187992 Thyroid Gland Mixed Medullary and Follicular Carcinoma 8 55769 -NCIT:C187993 Thyroid Gland Mixed Medullary and Papillary Carcinoma 8 55770 -NCIT:C46105 Thyroid Gland Spindle Epithelial Tumor with Thymus-Like Elements 7 55771 -NCIT:C190064 Childhood Thyroid Gland Spindle Epithelial Tumor with Thymus-Like Elements 8 55772 -NCIT:C46106 Intrathyroid Thymic Carcinoma 7 55773 -NCIT:C7908 Recurrent Thyroid Gland Carcinoma 7 55774 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 8 55775 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 9 55776 -NCIT:C153624 Recurrent Thyroid Gland Anaplastic Carcinoma 8 55777 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 8 55778 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 9 55779 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 9 55780 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 10 55781 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 8 55782 -NCIT:C4906 Parathyroid Gland Carcinoma 6 55783 -NCIT:C118819 Childhood Parathyroid Gland Carcinoma 7 55784 -NCIT:C7826 Localized Parathyroid Gland Carcinoma 7 55785 -NCIT:C7828 Recurrent Parathyroid Gland Carcinoma 7 55786 -NCIT:C9044 Metastatic Parathyroid Gland Carcinoma 7 55787 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 55788 -NCIT:C7484 Malignant Laryngeal Neoplasm 5 55789 -NCIT:C173400 Malignant Laryngeal Soft Tissue Neoplasm 6 55790 -NCIT:C173408 Laryngeal Soft Tissue Sarcoma 7 55791 -NCIT:C6021 Laryngeal Liposarcoma 8 55792 -NCIT:C6022 Laryngeal Leiomyosarcoma 8 55793 -NCIT:C3544 Malignant Glottis Neoplasm 6 55794 -NCIT:C4923 Glottis Carcinoma 7 55795 -NCIT:C8186 Glottic Squamous Cell Carcinoma 8 55796 -NCIT:C8189 Glottis Verrucous Carcinoma 9 55797 -NCIT:C3545 Malignant Supraglottis Neoplasm 6 55798 -NCIT:C4836 Malignant Epiglottis Neoplasm 7 55799 -NCIT:C35697 Epiglottic Carcinoma 8 55800 -NCIT:C181714 Epiglottic Squamous Cell Carcinoma 9 55801 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 10 55802 -NCIT:C5973 Supraglottic Carcinoma 7 55803 -NCIT:C35697 Epiglottic Carcinoma 8 55804 -NCIT:C181714 Epiglottic Squamous Cell Carcinoma 9 55805 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 10 55806 -NCIT:C4945 Supraglottic Squamous Cell Carcinoma 8 55807 -NCIT:C181714 Epiglottic Squamous Cell Carcinoma 9 55808 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 10 55809 -NCIT:C8191 Supraglottic Verrucous Carcinoma 9 55810 -NCIT:C3546 Malignant Subglottis Neoplasm 6 55811 -NCIT:C5972 Subglottic Carcinoma 7 55812 -NCIT:C8187 Subglottic Squamous Cell Carcinoma 8 55813 -NCIT:C8190 Subglottic Verrucous Carcinoma 9 55814 -NCIT:C4855 Laryngeal Carcinoma 6 55815 -NCIT:C118811 Childhood Laryngeal Carcinoma 7 55816 -NCIT:C133156 Laryngeal Cancer by AJCC v8 Stage 7 55817 -NCIT:C133158 Stage I Laryngeal Cancer AJCC v8 8 55818 -NCIT:C133159 Stage II Laryngeal Cancer AJCC v8 8 55819 -NCIT:C133160 Stage III Laryngeal Cancer AJCC v8 8 55820 -NCIT:C133161 Stage IV Laryngeal Cancer AJCC v8 8 55821 -NCIT:C133162 Stage IVA Laryngeal Cancer AJCC v8 9 55822 -NCIT:C133163 Stage IVB Laryngeal Cancer AJCC v8 9 55823 -NCIT:C133164 Stage IVC Laryngeal Cancer AJCC v8 9 55824 -NCIT:C9100 Stage 0 Laryngeal Cancer AJCC v6, v7, and V8 8 55825 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 9 55826 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 10 55827 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 10 55828 -NCIT:C156085 Metastatic Laryngeal Carcinoma 7 55829 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 8 55830 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 55831 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 55832 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 8 55833 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 55834 -NCIT:C173390 Laryngeal Neuroendocrine Carcinoma 7 55835 -NCIT:C173395 Laryngeal Large Cell Neuroendocrine Carcinoma 8 55836 -NCIT:C6025 Laryngeal Small Cell Neuroendocrine Carcinoma 8 55837 -NCIT:C27929 Alcohol-Related Laryngeal Carcinoma 7 55838 -NCIT:C4034 Recurrent Laryngeal Carcinoma 7 55839 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 8 55840 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 9 55841 -NCIT:C4044 Laryngeal Squamous Cell Carcinoma 7 55842 -NCIT:C148383 Refractory Laryngeal Squamous Cell Carcinoma 8 55843 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 8 55844 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 55845 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 55846 -NCIT:C172645 Unresectable Laryngeal Squamous Cell Carcinoma 8 55847 -NCIT:C4945 Supraglottic Squamous Cell Carcinoma 8 55848 -NCIT:C181714 Epiglottic Squamous Cell Carcinoma 9 55849 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 10 55850 -NCIT:C8191 Supraglottic Verrucous Carcinoma 9 55851 -NCIT:C54334 Laryngeal Basaloid Carcinoma 8 55852 -NCIT:C54335 Laryngeal Papillary Squamous Cell Carcinoma 8 55853 -NCIT:C54336 Laryngeal Squamous Cell Carcinoma, Spindle Cell Variant 8 55854 -NCIT:C54337 Laryngeal Acantholytic Squamous Cell Carcinoma 8 55855 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 8 55856 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 9 55857 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 9 55858 -NCIT:C8186 Glottic Squamous Cell Carcinoma 8 55859 -NCIT:C8189 Glottis Verrucous Carcinoma 9 55860 -NCIT:C8187 Subglottic Squamous Cell Carcinoma 8 55861 -NCIT:C8190 Subglottic Verrucous Carcinoma 9 55862 -NCIT:C8188 Laryngeal Verrucous Carcinoma 8 55863 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 9 55864 -NCIT:C8189 Glottis Verrucous Carcinoma 9 55865 -NCIT:C8190 Subglottic Verrucous Carcinoma 9 55866 -NCIT:C8191 Supraglottic Verrucous Carcinoma 9 55867 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 9 55868 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 9 55869 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 9 55870 -NCIT:C8244 Stage IV Laryngeal Verrucous Carcinoma AJCC v7 9 55871 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 10 55872 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 10 55873 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 10 55874 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 9 55875 -NCIT:C8237 Stage I Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 8 55876 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 9 55877 -NCIT:C8239 Stage II Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 8 55878 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 9 55879 -NCIT:C8241 Stage III Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 8 55880 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 9 55881 -NCIT:C8243 Stage IV Laryngeal Squamous Cell Carcinoma AJCC v7 8 55882 -NCIT:C6122 Stage IVA Laryngeal Squamous Cell Carcinoma AJCC v7 9 55883 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 10 55884 -NCIT:C6123 Stage IVB Laryngeal Squamous Cell Carcinoma AJCC v7 9 55885 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 10 55886 -NCIT:C6124 Stage IVC Laryngeal Squamous Cell Carcinoma AJCC v7 9 55887 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 10 55888 -NCIT:C8244 Stage IV Laryngeal Verrucous Carcinoma AJCC v7 9 55889 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 10 55890 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 10 55891 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 10 55892 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 8 55893 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 9 55894 -NCIT:C4923 Glottis Carcinoma 7 55895 -NCIT:C8186 Glottic Squamous Cell Carcinoma 8 55896 -NCIT:C8189 Glottis Verrucous Carcinoma 9 55897 -NCIT:C54338 Laryngeal Adenosquamous Carcinoma 7 55898 -NCIT:C54339 Laryngeal Undifferentiated Carcinoma 7 55899 -NCIT:C54341 Laryngeal Lymphoepithelial Carcinoma 8 55900 -NCIT:C54342 Laryngeal Giant Cell Carcinoma 8 55901 -NCIT:C5972 Subglottic Carcinoma 7 55902 -NCIT:C8187 Subglottic Squamous Cell Carcinoma 8 55903 -NCIT:C8190 Subglottic Verrucous Carcinoma 9 55904 -NCIT:C5973 Supraglottic Carcinoma 7 55905 -NCIT:C35697 Epiglottic Carcinoma 8 55906 -NCIT:C181714 Epiglottic Squamous Cell Carcinoma 9 55907 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 10 55908 -NCIT:C4945 Supraglottic Squamous Cell Carcinoma 8 55909 -NCIT:C181714 Epiglottic Squamous Cell Carcinoma 9 55910 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 10 55911 -NCIT:C8191 Supraglottic Verrucous Carcinoma 9 55912 -NCIT:C90527 Laryngeal Cancer by AJCC v6 Stage 7 55913 -NCIT:C6868 Stage IV Laryngeal Cancer AJCC v6 8 55914 -NCIT:C8041 Stage I Laryngeal Cancer AJCC v6 and v7 8 55915 -NCIT:C8237 Stage I Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 9 55916 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 55917 -NCIT:C8042 Stage II Laryngeal Cancer AJCC v6 and v7 8 55918 -NCIT:C8239 Stage II Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 9 55919 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 55920 -NCIT:C8043 Stage III Laryngeal Cancer AJCC v6 and v7 8 55921 -NCIT:C8241 Stage III Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 9 55922 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 55923 -NCIT:C9100 Stage 0 Laryngeal Cancer AJCC v6, v7, and V8 8 55924 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 9 55925 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 10 55926 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 10 55927 -NCIT:C91256 Laryngeal Cancer by AJCC v7 Stage 7 55928 -NCIT:C8041 Stage I Laryngeal Cancer AJCC v6 and v7 8 55929 -NCIT:C8237 Stage I Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 9 55930 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 55931 -NCIT:C8042 Stage II Laryngeal Cancer AJCC v6 and v7 8 55932 -NCIT:C8239 Stage II Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 9 55933 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 55934 -NCIT:C8043 Stage III Laryngeal Cancer AJCC v6 and v7 8 55935 -NCIT:C8241 Stage III Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 9 55936 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 55937 -NCIT:C89091 Stage IV Laryngeal Cancer AJCC v7 8 55938 -NCIT:C6003 Stage IVC Laryngeal Cancer AJCC v7 9 55939 -NCIT:C6124 Stage IVC Laryngeal Squamous Cell Carcinoma AJCC v7 10 55940 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 11 55941 -NCIT:C6004 Stage IVB Laryngeal Cancer AJCC v7 9 55942 -NCIT:C6123 Stage IVB Laryngeal Squamous Cell Carcinoma AJCC v7 10 55943 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 11 55944 -NCIT:C6005 Stage IVA Laryngeal Cancer AJCC v7 9 55945 -NCIT:C6122 Stage IVA Laryngeal Squamous Cell Carcinoma AJCC v7 10 55946 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 11 55947 -NCIT:C8243 Stage IV Laryngeal Squamous Cell Carcinoma AJCC v7 9 55948 -NCIT:C6122 Stage IVA Laryngeal Squamous Cell Carcinoma AJCC v7 10 55949 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 11 55950 -NCIT:C6123 Stage IVB Laryngeal Squamous Cell Carcinoma AJCC v7 10 55951 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 11 55952 -NCIT:C6124 Stage IVC Laryngeal Squamous Cell Carcinoma AJCC v7 10 55953 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 11 55954 -NCIT:C8244 Stage IV Laryngeal Verrucous Carcinoma AJCC v7 10 55955 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 11 55956 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 11 55957 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 11 55958 -NCIT:C9100 Stage 0 Laryngeal Cancer AJCC v6, v7, and V8 8 55959 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 9 55960 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 10 55961 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 10 55962 -NCIT:C9462 Laryngeal Adenoid Cystic Carcinoma 7 55963 -NCIT:C9463 Laryngeal Mucoepidermoid Carcinoma 7 55964 -NCIT:C6020 Laryngeal Sarcoma 6 55965 -NCIT:C173407 Laryngeal Chondrosarcoma 7 55966 -NCIT:C173408 Laryngeal Soft Tissue Sarcoma 7 55967 -NCIT:C6021 Laryngeal Liposarcoma 8 55968 -NCIT:C6022 Laryngeal Leiomyosarcoma 8 55969 -NCIT:C6031 Metastatic Malignant Neoplasm in the Larynx 6 55970 -NCIT:C7510 Malignant Thyroid Gland Neoplasm 5 55971 -NCIT:C150538 Recurrent Malignant Thyroid Gland Neoplasm 6 55972 -NCIT:C7908 Recurrent Thyroid Gland Carcinoma 7 55973 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 8 55974 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 9 55975 -NCIT:C153624 Recurrent Thyroid Gland Anaplastic Carcinoma 8 55976 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 8 55977 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 9 55978 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 9 55979 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 10 55980 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 8 55981 -NCIT:C150539 Refractory Malignant Thyroid Gland Neoplasm 6 55982 -NCIT:C142983 Refractory Thyroid Gland Carcinoma 7 55983 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 8 55984 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 9 55985 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 9 55986 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 10 55987 -NCIT:C170832 Refractory Thyroid Gland Anaplastic Carcinoma 8 55988 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 8 55989 -NCIT:C156408 Thyroid Gland Follicular Dendritic Cell Sarcoma 6 55990 -NCIT:C187995 Thyroblastoma 6 55991 -NCIT:C4815 Thyroid Gland Carcinoma 6 55992 -NCIT:C118827 Childhood Thyroid Gland Carcinoma 7 55993 -NCIT:C123903 Childhood Thyroid Gland Papillary Carcinoma 8 55994 -NCIT:C123904 Childhood Thyroid Gland Follicular Carcinoma 8 55995 -NCIT:C123905 Childhood Thyroid Gland Medullary Carcinoma 8 55996 -NCIT:C190064 Childhood Thyroid Gland Spindle Epithelial Tumor with Thymus-Like Elements 8 55997 -NCIT:C126408 Thyroid Gland Cribriform Morular Carcinoma 7 55998 -NCIT:C129784 Unresectable Thyroid Gland Carcinoma 7 55999 -NCIT:C163974 Unresectable Thyroid Gland Medullary Carcinoma 8 56000 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 9 56001 -NCIT:C168572 Unresectable Differentiated Thyroid Gland Carcinoma 8 56002 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 9 56003 -NCIT:C174571 Unresectable Thyroid Gland Follicular Carcinoma 9 56004 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 10 56005 -NCIT:C170833 Unresectable Thyroid Gland Anaplastic Carcinoma 8 56006 -NCIT:C174569 Unresectable Poorly Differentiated Thyroid Gland Carcinoma 8 56007 -NCIT:C133193 Metastatic Thyroid Gland Carcinoma 7 56008 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 8 56009 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 56010 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 56011 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 8 56012 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 56013 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 56014 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 56015 -NCIT:C170831 Metastatic Thyroid Gland Anaplastic Carcinoma 8 56016 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 56017 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 56018 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 8 56019 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 56020 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 9 56021 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 56022 -NCIT:C173979 Metastatic Differentiated Thyroid Gland Carcinoma 8 56023 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 9 56024 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 10 56025 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 11 56026 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 9 56027 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 56028 -NCIT:C174046 Metastatic Poorly Differentiated Thyroid Gland Carcinoma 8 56029 -NCIT:C142983 Refractory Thyroid Gland Carcinoma 7 56030 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 8 56031 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 9 56032 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 9 56033 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 10 56034 -NCIT:C170832 Refractory Thyroid Gland Anaplastic Carcinoma 8 56035 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 8 56036 -NCIT:C156267 Thyroid Gland Mucinous Carcinoma 7 56037 -NCIT:C27380 Thyroid Gland Adenocarcinoma 7 56038 -NCIT:C187645 Follicular-Derived Thyroid Gland Carcinoma, High Grade 8 56039 -NCIT:C187648 Differentiated High Grade Thyroid Gland Carcinoma 9 56040 -NCIT:C6040 Poorly Differentiated Thyroid Gland Carcinoma 9 56041 -NCIT:C174046 Metastatic Poorly Differentiated Thyroid Gland Carcinoma 10 56042 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 10 56043 -NCIT:C174569 Unresectable Poorly Differentiated Thyroid Gland Carcinoma 10 56044 -NCIT:C187994 Thyroid Gland Secretory Carcinoma 8 56045 -NCIT:C7153 Differentiated Thyroid Gland Carcinoma 8 56046 -NCIT:C118829 Hereditary Nonmedullary Thyroid Gland Carcinoma 9 56047 -NCIT:C140959 Differentiated Thyroid Gland Carcinoma by AJCC v7 Stage 9 56048 -NCIT:C140958 Thyroid Gland Follicular Carcinoma by AJCC v7 Stage 10 56049 -NCIT:C9084 Stage I Thyroid Gland Follicular Carcinoma AJCC v7 11 56050 -NCIT:C9085 Stage II Thyroid Gland Follicular Carcinoma AJCC v7 11 56051 -NCIT:C9086 Stage IV Thyroid Gland Follicular Carcinoma AJCC v7 11 56052 -NCIT:C115035 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v7 12 56053 -NCIT:C115036 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v7 12 56054 -NCIT:C115037 Stage IVC Thyroid Gland Follicular Carcinoma AJCC v7 12 56055 -NCIT:C9121 Stage III Thyroid Gland Follicular Carcinoma AJCC v7 11 56056 -NCIT:C140960 Thyroid Gland Papillary Carcinoma by AJCC v7 Stage 10 56057 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 11 56058 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 11 56059 -NCIT:C9083 Stage IV Thyroid Gland Papillary Carcinoma AJCC v7 11 56060 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 12 56061 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 12 56062 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 12 56063 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 11 56064 -NCIT:C87543 Stage I Differentiated Thyroid Gland Carcinoma AJCC v7 10 56065 -NCIT:C101539 Stage I Differentiated Thyroid Gland Carcinoma Under 45 Years AJCC v7 11 56066 -NCIT:C101540 Stage I Differentiated Thyroid Gland Carcinoma 45 Years and Older AJCC v7 11 56067 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 11 56068 -NCIT:C9084 Stage I Thyroid Gland Follicular Carcinoma AJCC v7 11 56069 -NCIT:C87544 Stage II Differentiated Thyroid Gland Carcinoma AJCC v7 10 56070 -NCIT:C101541 Stage II Differentiated Thyroid Gland Carcinoma Under 45 Years AJCC v7 11 56071 -NCIT:C101542 Stage II Differentiated Thyroid Gland Carcinoma 45 Years and Older AJCC v7 11 56072 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 11 56073 -NCIT:C9085 Stage II Thyroid Gland Follicular Carcinoma AJCC v7 11 56074 -NCIT:C87545 Stage III Differentiated Thyroid Gland Carcinoma AJCC v7 10 56075 -NCIT:C9121 Stage III Thyroid Gland Follicular Carcinoma AJCC v7 11 56076 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 11 56077 -NCIT:C87546 Stage IVA Differentiated Thyroid Gland Carcinoma AJCC v7 10 56078 -NCIT:C115035 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v7 11 56079 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 11 56080 -NCIT:C87547 Stage IVB Differentiated Thyroid Gland Carcinoma AJCC v7 10 56081 -NCIT:C115036 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v7 11 56082 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 11 56083 -NCIT:C87548 Stage IVC Differentiated Thyroid Gland Carcinoma AJCC v7 10 56084 -NCIT:C115037 Stage IVC Thyroid Gland Follicular Carcinoma AJCC v7 11 56085 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 11 56086 -NCIT:C140965 Differentiated Thyroid Gland Carcinoma by AJCC v8 Stage 9 56087 -NCIT:C140966 Stage I Differentiated Thyroid Gland Carcinoma AJCC v8 10 56088 -NCIT:C140967 Stage I Differentiated Thyroid Gland Carcinoma Under 55 Years AJCC v8 11 56089 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 56090 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 56091 -NCIT:C140968 Stage I Differentiated Thyroid Gland Carcinoma 55 Years and Older AJCC v8 11 56092 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 56093 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 56094 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 11 56095 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 56096 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 56097 -NCIT:C140988 Stage I Thyroid Gland Follicular Carcinoma AJCC v8 11 56098 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 56099 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 56100 -NCIT:C140969 Stage II Differentiated Thyroid Gland Carcinoma AJCC v8 10 56101 -NCIT:C140970 Stage II Differentiated Thyroid Gland Carcinoma Under 55 Years AJCC v8 11 56102 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 56103 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 56104 -NCIT:C140971 Stage II Differentiated Thyroid Gland Carcinoma 55 Years and Older AJCC v8 11 56105 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 56106 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 56107 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 11 56108 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 56109 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 56110 -NCIT:C140991 Stage II Thyroid Gland Follicular Carcinoma AJCC v8 11 56111 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 56112 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 56113 -NCIT:C140972 Stage III Differentiated Thyroid Gland Carcinoma AJCC v8 10 56114 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 11 56115 -NCIT:C140995 Stage III Thyroid Gland Follicular Carcinoma AJCC v8 11 56116 -NCIT:C140973 Stage IV Differentiated Thyroid Gland Carcinoma AJCC v8 10 56117 -NCIT:C140974 Stage IVA Differentiated Thyroid Gland Carcinoma AJCC v8 11 56118 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 12 56119 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 12 56120 -NCIT:C140975 Stage IVB Differentiated Thyroid Gland Carcinoma AJCC v8 11 56121 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 12 56122 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 12 56123 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 11 56124 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 12 56125 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 12 56126 -NCIT:C140996 Stage IV Thyroid Gland Follicular Carcinoma AJCC v8 11 56127 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 12 56128 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 12 56129 -NCIT:C140976 Thyroid Gland Papillary Carcinoma by AJCC v8 Stage 10 56130 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 11 56131 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 56132 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 56133 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 11 56134 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 56135 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 56136 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 11 56137 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 11 56138 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 12 56139 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 12 56140 -NCIT:C140987 Thyroid Gland Follicular Carcinoma by AJCC v8 Stage 10 56141 -NCIT:C140988 Stage I Thyroid Gland Follicular Carcinoma AJCC v8 11 56142 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 56143 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 56144 -NCIT:C140991 Stage II Thyroid Gland Follicular Carcinoma AJCC v8 11 56145 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 56146 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 56147 -NCIT:C140995 Stage III Thyroid Gland Follicular Carcinoma AJCC v8 11 56148 -NCIT:C140996 Stage IV Thyroid Gland Follicular Carcinoma AJCC v8 11 56149 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 12 56150 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 12 56151 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 9 56152 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 10 56153 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 10 56154 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 11 56155 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 9 56156 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 10 56157 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 10 56158 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 11 56159 -NCIT:C168572 Unresectable Differentiated Thyroid Gland Carcinoma 9 56160 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 10 56161 -NCIT:C174571 Unresectable Thyroid Gland Follicular Carcinoma 10 56162 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 11 56163 -NCIT:C173979 Metastatic Differentiated Thyroid Gland Carcinoma 9 56164 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 10 56165 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 11 56166 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 12 56167 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 10 56168 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 10 56169 -NCIT:C4035 Thyroid Gland Papillary Carcinoma 9 56170 -NCIT:C123903 Childhood Thyroid Gland Papillary Carcinoma 10 56171 -NCIT:C126409 Warthin-Like Variant Thyroid Gland Papillary Carcinoma 10 56172 -NCIT:C126410 Thyroid Gland Papillary Carcinoma with Fibromatosis/Fasciitis-Like/Desmoid-Type Stroma 10 56173 -NCIT:C126594 Follicular Variant Thyroid Gland Papillary Carcinoma 10 56174 -NCIT:C66850 Invasive Encapsulated Follicular Variant Thyroid Gland Papillary Carcinoma 11 56175 -NCIT:C7381 Invasive Follicular Variant Thyroid Gland Papillary Carcinoma 11 56176 -NCIT:C140960 Thyroid Gland Papillary Carcinoma by AJCC v7 Stage 10 56177 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 11 56178 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 11 56179 -NCIT:C9083 Stage IV Thyroid Gland Papillary Carcinoma AJCC v7 11 56180 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 12 56181 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 12 56182 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 12 56183 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 11 56184 -NCIT:C140976 Thyroid Gland Papillary Carcinoma by AJCC v8 Stage 10 56185 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 11 56186 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 56187 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 56188 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 11 56189 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 56190 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 56191 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 11 56192 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 11 56193 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 12 56194 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 12 56195 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 10 56196 -NCIT:C156034 Encapsulated Variant Thyroid Gland Papillary Carcinoma 10 56197 -NCIT:C156045 Spindle Cell Variant Thyroid Gland Papillary Carcinoma 10 56198 -NCIT:C156050 Hobnail Variant Thyroid Gland Papillary Carcinoma 10 56199 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 10 56200 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 10 56201 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 10 56202 -NCIT:C187644 Classic Thyroid Gland Papillary Carcinoma 10 56203 -NCIT:C35558 Tall Cell Variant Thyroid Gland Papillary Carcinoma 10 56204 -NCIT:C35830 Columnar Cell Variant Thyroid Gland Papillary Carcinoma 10 56205 -NCIT:C37304 Multicentric Thyroid Gland Papillary Carcinoma 10 56206 -NCIT:C46004 Thyroid Gland Papillary Microcarcinoma 10 56207 -NCIT:C46092 Macrofollicular Variant Thyroid Gland Papillary Carcinoma 10 56208 -NCIT:C46093 Oncocytic Variant Thyroid Gland Papillary Carcinoma 10 56209 -NCIT:C46094 Clear Cell Variant Thyroid Gland Papillary Carcinoma 10 56210 -NCIT:C46095 Solid/Trabecular Variant Thyroid Gland Papillary Carcinoma 10 56211 -NCIT:C7427 Diffuse Sclerosing Variant Thyroid Gland Papillary Carcinoma 10 56212 -NCIT:C8054 Thyroid Gland Follicular Carcinoma 9 56213 -NCIT:C123904 Childhood Thyroid Gland Follicular Carcinoma 10 56214 -NCIT:C140958 Thyroid Gland Follicular Carcinoma by AJCC v7 Stage 10 56215 -NCIT:C9084 Stage I Thyroid Gland Follicular Carcinoma AJCC v7 11 56216 -NCIT:C9085 Stage II Thyroid Gland Follicular Carcinoma AJCC v7 11 56217 -NCIT:C9086 Stage IV Thyroid Gland Follicular Carcinoma AJCC v7 11 56218 -NCIT:C115035 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v7 12 56219 -NCIT:C115036 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v7 12 56220 -NCIT:C115037 Stage IVC Thyroid Gland Follicular Carcinoma AJCC v7 12 56221 -NCIT:C9121 Stage III Thyroid Gland Follicular Carcinoma AJCC v7 11 56222 -NCIT:C140987 Thyroid Gland Follicular Carcinoma by AJCC v8 Stage 10 56223 -NCIT:C140988 Stage I Thyroid Gland Follicular Carcinoma AJCC v8 11 56224 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 56225 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 56226 -NCIT:C140991 Stage II Thyroid Gland Follicular Carcinoma AJCC v8 11 56227 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 56228 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 56229 -NCIT:C140995 Stage III Thyroid Gland Follicular Carcinoma AJCC v8 11 56230 -NCIT:C140996 Stage IV Thyroid Gland Follicular Carcinoma AJCC v8 11 56231 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 12 56232 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 12 56233 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 10 56234 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 11 56235 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 10 56236 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 11 56237 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 12 56238 -NCIT:C156122 Thyroid Gland Follicular Carcinoma, Encapsulated Angioinvasive 10 56239 -NCIT:C156123 Thyroid Gland Follicular Carcinoma, Widely Invasive 10 56240 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 10 56241 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 11 56242 -NCIT:C174571 Unresectable Thyroid Gland Follicular Carcinoma 10 56243 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 11 56244 -NCIT:C187643 Thyroid Gland Follicular Carcinoma, Signet Ring Cell Variant 10 56245 -NCIT:C46096 Thyroid Gland Follicular Carcinoma, Clear Cell Variant 10 56246 -NCIT:C4946 Thyroid Gland Oncocytic Carcinoma 10 56247 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 11 56248 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 11 56249 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 11 56250 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 11 56251 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 12 56252 -NCIT:C65200 Thyroid Gland Follicular Carcinoma, Minimally Invasive 10 56253 -NCIT:C38762 Thyroid Gland Mucoepidermoid Carcinoma 7 56254 -NCIT:C38763 Thyroid Gland Sclerosing Mucoepidermoid Carcinoma with Eosinophilia 8 56255 -NCIT:C3878 Thyroid Gland Anaplastic Carcinoma 7 56256 -NCIT:C140999 Thyroid Gland Anaplastic Carcinoma by AJCC v7 Stage 8 56257 -NCIT:C87552 Stage IVA Thyroid Gland Anaplastic Carcinoma AJCC v7 9 56258 -NCIT:C87553 Stage IVB Thyroid Gland Anaplastic Carcinoma AJCC v7 9 56259 -NCIT:C87554 Stage IVC Thyroid Gland Anaplastic Carcinoma AJCC v7 9 56260 -NCIT:C141000 Thyroid Gland Anaplastic Carcinoma by AJCC v8 Stage 8 56261 -NCIT:C141001 Stage IVA Thyroid Gland Anaplastic Carcinoma AJCC v8 9 56262 -NCIT:C141003 Stage IVB Thyroid Gland Anaplastic Carcinoma AJCC v8 9 56263 -NCIT:C141004 Stage IVC Thyroid Gland Anaplastic Carcinoma AJCC v8 9 56264 -NCIT:C153624 Recurrent Thyroid Gland Anaplastic Carcinoma 8 56265 -NCIT:C170831 Metastatic Thyroid Gland Anaplastic Carcinoma 8 56266 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 56267 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 56268 -NCIT:C170832 Refractory Thyroid Gland Anaplastic Carcinoma 8 56269 -NCIT:C170833 Unresectable Thyroid Gland Anaplastic Carcinoma 8 56270 -NCIT:C46008 Thyroid Gland Anaplastic Carcinoma, Squamous Cell Carcinoma Pattern 8 56271 -NCIT:C7906 Thyroid Gland Anaplastic Carcinoma, Osteoclastic Variant 8 56272 -NCIT:C3879 Thyroid Gland Medullary Carcinoma 7 56273 -NCIT:C123905 Childhood Thyroid Gland Medullary Carcinoma 8 56274 -NCIT:C141041 Thyroid Gland Medullary Carcinoma by AJCC v7 Stage 8 56275 -NCIT:C6133 Stage I Thyroid Gland Medullary Carcinoma AJCC v7 9 56276 -NCIT:C6134 Stage II Thyroid Gland Medullary Carcinoma AJCC v7 9 56277 -NCIT:C6135 Stage III Thyroid Gland Medullary Carcinoma AJCC v7 9 56278 -NCIT:C6136 Stage IV Thyroid Gland Medullary Carcinoma AJCC v7 9 56279 -NCIT:C87549 Stage IVA Thyroid Gland Medullary Carcinoma AJCC v7 10 56280 -NCIT:C87550 Stage IVB Thyroid Gland Medullary Carcinoma AJCC v7 10 56281 -NCIT:C87551 Stage IVC Thyroid Gland Medullary Carcinoma AJCC v7 10 56282 -NCIT:C141042 Thyroid Gland Medullary Carcinoma by AJCC v8 Stage 8 56283 -NCIT:C141043 Stage I Thyroid Gland Medullary Carcinoma AJCC v8 9 56284 -NCIT:C141044 Stage II Thyroid Gland Medullary Carcinoma AJCC v8 9 56285 -NCIT:C141045 Stage III Thyroid Gland Medullary Carcinoma AJCC v8 9 56286 -NCIT:C141046 Stage IV Thyroid Gland Medullary Carcinoma AJCC v8 9 56287 -NCIT:C141047 Stage IVA Thyroid Gland Medullary Carcinoma AJCC v8 10 56288 -NCIT:C141048 Stage IVB Thyroid Gland Medullary Carcinoma AJCC v8 10 56289 -NCIT:C141049 Stage IVC Thyroid Gland Medullary Carcinoma AJCC v8 10 56290 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 8 56291 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 9 56292 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 8 56293 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 56294 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 56295 -NCIT:C163974 Unresectable Thyroid Gland Medullary Carcinoma 8 56296 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 9 56297 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 8 56298 -NCIT:C4193 Thyroid Gland Medullary Carcinoma with Amyloid Stroma 8 56299 -NCIT:C46098 Sporadic Thyroid Gland Medullary Carcinoma 8 56300 -NCIT:C46103 Sporadic Thyroid Gland Micromedullary Carcinoma 9 56301 -NCIT:C46099 Hereditary Thyroid Gland Medullary Carcinoma 8 56302 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 9 56303 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 9 56304 -NCIT:C46104 Thyroid Gland Mixed Medullary and Follicular Cell-Derived Carcinoma 7 56305 -NCIT:C187992 Thyroid Gland Mixed Medullary and Follicular Carcinoma 8 56306 -NCIT:C187993 Thyroid Gland Mixed Medullary and Papillary Carcinoma 8 56307 -NCIT:C46105 Thyroid Gland Spindle Epithelial Tumor with Thymus-Like Elements 7 56308 -NCIT:C190064 Childhood Thyroid Gland Spindle Epithelial Tumor with Thymus-Like Elements 8 56309 -NCIT:C46106 Intrathyroid Thymic Carcinoma 7 56310 -NCIT:C7908 Recurrent Thyroid Gland Carcinoma 7 56311 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 8 56312 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 9 56313 -NCIT:C153624 Recurrent Thyroid Gland Anaplastic Carcinoma 8 56314 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 8 56315 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 9 56316 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 9 56317 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 10 56318 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 8 56319 -NCIT:C5265 Thyroid Gland Lymphoma 6 56320 -NCIT:C181209 Thyroid Gland Hodgkin Lymphoma 7 56321 -NCIT:C6044 Thyroid Gland Non-Hodgkin Lymphoma 7 56322 -NCIT:C156410 Thyroid Gland Follicular Lymphoma 8 56323 -NCIT:C6046 Thyroid Gland Diffuse Large B-Cell Lymphoma 8 56324 -NCIT:C7263 Thyroid Gland Immunoblastic Lymphoma 9 56325 -NCIT:C7601 Thyroid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 8 56326 -NCIT:C6041 Thyroid Gland Sarcoma 6 56327 -NCIT:C156341 Thyroid Gland Malignant Peripheral Nerve Sheath Tumor 7 56328 -NCIT:C156347 Thyroid Gland Leiomyosarcoma 7 56329 -NCIT:C6043 Thyroid Gland Angiosarcoma 7 56330 -NCIT:C7509 Metastatic Malignant Neoplasm in the Thyroid Gland 6 56331 -NCIT:C7545 Malignant Pharyngeal Neoplasm 5 56332 -NCIT:C150531 Recurrent Malignant Pharyngeal Neoplasm 6 56333 -NCIT:C5103 Recurrent Pharyngeal Carcinoma 7 56334 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 8 56335 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 9 56336 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 56337 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 56338 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 9 56339 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 10 56340 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 9 56341 -NCIT:C8051 Recurrent Oropharyngeal Carcinoma 8 56342 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 9 56343 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 10 56344 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 8 56345 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 9 56346 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 56347 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 56348 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 8 56349 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 9 56350 -NCIT:C9268 Recurrent Malignant Nasopharyngeal Neoplasm 7 56351 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 8 56352 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 9 56353 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 56354 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 56355 -NCIT:C9353 Recurrent Malignant Hypopharyngeal Neoplasm 7 56356 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 8 56357 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 9 56358 -NCIT:C150532 Refractory Malignant Pharyngeal Neoplasm 6 56359 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 7 56360 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 7 56361 -NCIT:C148434 Refractory Nasopharyngeal Carcinoma 7 56362 -NCIT:C173354 Pharyngeal Lymphoma 6 56363 -NCIT:C173355 Pharyngeal Non-Hodgkin Lymphoma 7 56364 -NCIT:C173359 Nasopharyngeal Non-Hodgkin Lymphoma 8 56365 -NCIT:C173579 Oropharyngeal Non-Hodgkin Lymphoma 8 56366 -NCIT:C188072 Tonsillar Diffuse Large B-Cell Lymphoma 9 56367 -NCIT:C188080 Tonsillar Mantle Cell Lymphoma 9 56368 -NCIT:C173356 Pharyngeal Hodgkin Lymphoma 7 56369 -NCIT:C173361 Nasopharyngeal Hodgkin Lymphoma 8 56370 -NCIT:C173578 Oropharyngeal Hodgkin Lymphoma 8 56371 -NCIT:C173357 Nasopharyngeal Lymphoma 7 56372 -NCIT:C173359 Nasopharyngeal Non-Hodgkin Lymphoma 8 56373 -NCIT:C173361 Nasopharyngeal Hodgkin Lymphoma 8 56374 -NCIT:C173577 Oropharyngeal Lymphoma 7 56375 -NCIT:C173578 Oropharyngeal Hodgkin Lymphoma 8 56376 -NCIT:C173579 Oropharyngeal Non-Hodgkin Lymphoma 8 56377 -NCIT:C188072 Tonsillar Diffuse Large B-Cell Lymphoma 9 56378 -NCIT:C188080 Tonsillar Mantle Cell Lymphoma 9 56379 -NCIT:C5918 Tonsillar Lymphoma 8 56380 -NCIT:C188072 Tonsillar Diffuse Large B-Cell Lymphoma 9 56381 -NCIT:C188080 Tonsillar Mantle Cell Lymphoma 9 56382 -NCIT:C178521 Pharyngeal Melanoma 6 56383 -NCIT:C178522 Nasopharyngeal Melanoma 7 56384 -NCIT:C7190 Malignant Hypopharyngeal Neoplasm 6 56385 -NCIT:C3531 Malignant Pyriform Fossa Neoplasm 7 56386 -NCIT:C6028 Metastatic Malignant Neoplasm in the Hypopharynx 7 56387 -NCIT:C9323 Malignant Postcricoid Neoplasm 7 56388 -NCIT:C8595 Postcricoid Carcinoma 8 56389 -NCIT:C8185 Postcricoid Squamous Cell Carcinoma 9 56390 -NCIT:C9353 Recurrent Malignant Hypopharyngeal Neoplasm 7 56391 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 8 56392 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 9 56393 -NCIT:C9465 Hypopharyngeal Carcinoma 7 56394 -NCIT:C133003 Hypopharyngeal Carcinoma by AJCC v8 Stage 8 56395 -NCIT:C133005 Stage I Hypopharyngeal Carcinoma AJCC v8 9 56396 -NCIT:C133006 Stage II Hypopharyngeal Carcinoma AJCC v8 9 56397 -NCIT:C133007 Stage III Hypopharyngeal Carcinoma AJCC v8 9 56398 -NCIT:C133008 Stage IV Hypopharyngeal Carcinoma AJCC v8 9 56399 -NCIT:C133009 Stage IVA Hypopharyngeal Carcinoma AJCC v8 10 56400 -NCIT:C133010 Stage IVB Hypopharyngeal Carcinoma AJCC v8 10 56401 -NCIT:C133011 Stage IVC Hypopharyngeal Carcinoma AJCC v8 10 56402 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 9 56403 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 56404 -NCIT:C156081 Metastatic Hypopharyngeal Carcinoma 8 56405 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 56406 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 56407 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 56408 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 9 56409 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 56410 -NCIT:C4043 Hypopharyngeal Squamous Cell Carcinoma 8 56411 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 9 56412 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 56413 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 56414 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 56415 -NCIT:C172646 Unresectable Hypopharyngeal Squamous Cell Carcinoma 9 56416 -NCIT:C4943 Pyriform Fossa Squamous Cell Carcinoma 9 56417 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 9 56418 -NCIT:C8185 Postcricoid Squamous Cell Carcinoma 9 56419 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 56420 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 56421 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 56422 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 56423 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 56424 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 56425 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 56426 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 9 56427 -NCIT:C6700 Pyriform Fossa Carcinoma 8 56428 -NCIT:C4943 Pyriform Fossa Squamous Cell Carcinoma 9 56429 -NCIT:C8595 Postcricoid Carcinoma 8 56430 -NCIT:C8185 Postcricoid Squamous Cell Carcinoma 9 56431 -NCIT:C90524 Hypopharyngeal Carcinoma by AJCC v6 Stage 8 56432 -NCIT:C8038 Stage I Hypopharyngeal Carcinoma AJCC v6 9 56433 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 9 56434 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 56435 -NCIT:C8040 Stage III Hypopharyngeal Carcinoma AJCC v6 9 56436 -NCIT:C8533 Stage IV Hypopharyngeal Carcinoma AJCC v6 9 56437 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 9 56438 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 56439 -NCIT:C91251 Hypopharyngeal Carcinoma by AJCC v7 Stage 8 56440 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 9 56441 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 56442 -NCIT:C89045 Stage I Hypopharyngeal Carcinoma AJCC v7 9 56443 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 56444 -NCIT:C89046 Stage III Hypopharyngeal Carcinoma AJCC v7 9 56445 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 56446 -NCIT:C89047 Stage IV Hypopharyngeal Carcinoma AJCC v7 9 56447 -NCIT:C5992 Stage IVA Hypopharyngeal Carcinoma AJCC v7 10 56448 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 56449 -NCIT:C5993 Stage IVB Hypopharyngeal Carcinoma AJCC v7 10 56450 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 56451 -NCIT:C5994 Stage IVC Hypopharyngeal Carcinoma AJCC v7 10 56452 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 56453 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 56454 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 56455 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 56456 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 56457 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 9 56458 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 56459 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 8 56460 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 9 56461 -NCIT:C7398 Malignant Oropharyngeal Neoplasm 6 56462 -NCIT:C173577 Oropharyngeal Lymphoma 7 56463 -NCIT:C173578 Oropharyngeal Hodgkin Lymphoma 8 56464 -NCIT:C173579 Oropharyngeal Non-Hodgkin Lymphoma 8 56465 -NCIT:C188072 Tonsillar Diffuse Large B-Cell Lymphoma 9 56466 -NCIT:C188080 Tonsillar Mantle Cell Lymphoma 9 56467 -NCIT:C5918 Tonsillar Lymphoma 8 56468 -NCIT:C188072 Tonsillar Diffuse Large B-Cell Lymphoma 9 56469 -NCIT:C188080 Tonsillar Mantle Cell Lymphoma 9 56470 -NCIT:C3529 Malignant Soft Palate Neoplasm 7 56471 -NCIT:C35177 Malignant Uvula Neoplasm 8 56472 -NCIT:C8395 Soft Palate Carcinoma 8 56473 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 56474 -NCIT:C6029 Metastatic Malignant Neoplasm in the Oropharynx 7 56475 -NCIT:C9105 Oropharyngeal Carcinoma 7 56476 -NCIT:C132882 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Stage 8 56477 -NCIT:C132883 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Clinical Stage 9 56478 -NCIT:C132885 Clinical Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 56479 -NCIT:C132886 Clinical Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 56480 -NCIT:C132891 Clinical Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 56481 -NCIT:C132893 Clinical Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 56482 -NCIT:C132884 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Pathologic Stage 9 56483 -NCIT:C132898 Pathologic Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 56484 -NCIT:C132899 Pathologic Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 56485 -NCIT:C132900 Pathologic Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 56486 -NCIT:C132901 Pathologic Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 56487 -NCIT:C132994 Oropharyngeal (p16-Negative) Carcinoma by AJCC v8 Stage 8 56488 -NCIT:C132995 Stage 0 Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 56489 -NCIT:C132996 Stage I Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 56490 -NCIT:C132997 Stage II Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 56491 -NCIT:C132998 Stage III Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 56492 -NCIT:C132999 Stage IV Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 56493 -NCIT:C133000 Stage IVA Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 56494 -NCIT:C133001 Stage IVB Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 56495 -NCIT:C133002 Stage IVC Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 56496 -NCIT:C156082 Metastatic Oropharyngeal Carcinoma 8 56497 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 56498 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 56499 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 56500 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 56501 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 9 56502 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 56503 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 56504 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 9 56505 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 56506 -NCIT:C173576 Oropharyngeal Polymorphous Adenocarcinoma 8 56507 -NCIT:C4825 Tonsillar Carcinoma 8 56508 -NCIT:C8183 Tonsillar Squamous Cell Carcinoma 9 56509 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 10 56510 -NCIT:C6241 Oropharyngeal Adenoid Cystic Carcinoma 8 56511 -NCIT:C8051 Recurrent Oropharyngeal Carcinoma 8 56512 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 9 56513 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 10 56514 -NCIT:C8181 Oropharyngeal Squamous Cell Carcinoma 8 56515 -NCIT:C126750 Oropharyngeal Poorly Differentiated Carcinoma 9 56516 -NCIT:C126751 Oropharyngeal Basaloid Carcinoma 9 56517 -NCIT:C147906 Oropharyngeal p16INK4a-Negative Squamous Cell Carcinoma 9 56518 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 9 56519 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 56520 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 56521 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 56522 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 56523 -NCIT:C162787 Resectable Oropharyngeal Squamous Cell Carcinoma 9 56524 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 10 56525 -NCIT:C162833 Unresectable Oropharyngeal Squamous Cell Carcinoma 9 56526 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 10 56527 -NCIT:C173414 Oropharyngeal Human Papillomavirus-Negative Squamous Cell Carcinoma 9 56528 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 56529 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 56530 -NCIT:C68610 Oropharyngeal Undifferentiated Carcinoma 9 56531 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 56532 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 56533 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 56534 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 56535 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 56536 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 56537 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 56538 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 10 56539 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 56540 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 10 56541 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 10 56542 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 10 56543 -NCIT:C8183 Tonsillar Squamous Cell Carcinoma 9 56544 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 10 56545 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 56546 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 56547 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 56548 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 56549 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 9 56550 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 56551 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 9 56552 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 56553 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 56554 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 56555 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 56556 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 56557 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 56558 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 56559 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 56560 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 56561 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 56562 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 9 56563 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 10 56564 -NCIT:C87055 Oropharyngeal Human Papillomavirus-Positive Squamous Cell Carcinoma 9 56565 -NCIT:C8395 Soft Palate Carcinoma 8 56566 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 56567 -NCIT:C90523 Oropharyngeal Carcinoma by AJCC v6 Stage 8 56568 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 9 56569 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 56570 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 9 56571 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 56572 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 56573 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 9 56574 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 56575 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 56576 -NCIT:C8050 Stage III Oropharyngeal Carcinoma AJCC v6 9 56577 -NCIT:C9218 Stage IV Oropharyngeal Carcinoma AJCC v6 9 56578 -NCIT:C91248 Oropharyngeal Carcinoma by AJCC v7 Stage 8 56579 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 9 56580 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 56581 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 9 56582 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 56583 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 56584 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 9 56585 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 56586 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 56587 -NCIT:C89021 Stage III Oropharyngeal Carcinoma AJCC v7 9 56588 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 56589 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 56590 -NCIT:C89023 Stage IV Oropharyngeal Carcinoma AJCC v7 9 56591 -NCIT:C5985 Stage IVA Oropharyngeal Carcinoma AJCC v7 10 56592 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 56593 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 56594 -NCIT:C5986 Stage IVB Oropharyngeal Carcinoma AJCC v7 10 56595 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 56596 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 56597 -NCIT:C5987 Stage IVC Oropharyngeal Carcinoma AJCC v7 10 56598 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 56599 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 56600 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 56601 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 56602 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 56603 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 56604 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 56605 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 56606 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 56607 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 56608 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 56609 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 56610 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 56611 -NCIT:C7546 Metastatic Malignant Neoplasm in the Pharynx 6 56612 -NCIT:C6028 Metastatic Malignant Neoplasm in the Hypopharynx 7 56613 -NCIT:C6029 Metastatic Malignant Neoplasm in the Oropharynx 7 56614 -NCIT:C6030 Metastatic Malignant Neoplasm in the Nasopharynx 7 56615 -NCIT:C9321 Malignant Nasopharyngeal Neoplasm 6 56616 -NCIT:C173357 Nasopharyngeal Lymphoma 7 56617 -NCIT:C173359 Nasopharyngeal Non-Hodgkin Lymphoma 8 56618 -NCIT:C173361 Nasopharyngeal Hodgkin Lymphoma 8 56619 -NCIT:C178522 Nasopharyngeal Melanoma 7 56620 -NCIT:C3871 Nasopharyngeal Carcinoma 7 56621 -NCIT:C132816 Nasopharyngeal Carcinoma by AJCC v8 Stage 8 56622 -NCIT:C132817 Stage I Nasopharyngeal Carcinoma AJCC v8 9 56623 -NCIT:C132818 Stage II Nasopharyngeal Carcinoma AJCC v8 9 56624 -NCIT:C132819 Stage III Nasopharyngeal Carcinoma AJCC v8 9 56625 -NCIT:C132820 Stage IV Nasopharyngeal Carcinoma AJCC v8 9 56626 -NCIT:C132821 Stage IVA Nasopharyngeal Carcinoma AJCC v8 10 56627 -NCIT:C132822 Stage IVB Nasopharyngeal Carcinoma AJCC v8 10 56628 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 9 56629 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 10 56630 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 56631 -NCIT:C148434 Refractory Nasopharyngeal Carcinoma 8 56632 -NCIT:C156079 Metastatic Nasopharyngeal Carcinoma 8 56633 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 56634 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 56635 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 56636 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 56637 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 56638 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 56639 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 9 56640 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 56641 -NCIT:C165176 Unresectable Nasopharyngeal Carcinoma 8 56642 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 9 56643 -NCIT:C167265 Nasopharyngeal Squamous Cell Carcinoma 8 56644 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 56645 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 56646 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 56647 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 56648 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 56649 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 56650 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 9 56651 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 56652 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 56653 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 9 56654 -NCIT:C54360 Nasopharyngeal Basaloid Carcinoma 9 56655 -NCIT:C7373 Nasopharyngeal Nonkeratinizing Carcinoma 9 56656 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 56657 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 56658 -NCIT:C54389 Nasopharyngeal Differentiated Carcinoma 10 56659 -NCIT:C8023 Nasopharyngeal Undifferentiated Carcinoma 10 56660 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 56661 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 11 56662 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 56663 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 56664 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 56665 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 56666 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 11 56667 -NCIT:C7992 Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 56668 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 56669 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 56670 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 56671 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 56672 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 56673 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 56674 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 56675 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 56676 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 56677 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 56678 -NCIT:C173340 Nasopharyngeal Adenoid Cystic Carcinoma 8 56679 -NCIT:C190276 Childhood Nasopharyngeal Carcinoma 8 56680 -NCIT:C54400 Nasopharyngeal Papillary Adenocarcinoma 8 56681 -NCIT:C90522 Nasopharyngeal Carcinoma by AJCC v6 Stage 8 56682 -NCIT:C7395 Stage I Nasopharyngeal Carcinoma AJCC v6 9 56683 -NCIT:C7396 Stage III Nasopharyngeal Carcinoma AJCC v6 9 56684 -NCIT:C7397 Stage IV Nasopharyngeal Carcinoma AJCC v6 9 56685 -NCIT:C7920 Stage II Nasopharyngeal Carcinoma AJCC v6 9 56686 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 9 56687 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 10 56688 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 56689 -NCIT:C91244 Nasopharyngeal Carcinoma by AJCC v7 Stage 8 56690 -NCIT:C88981 Stage I Nasopharyngeal Carcinoma AJCC v7 9 56691 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 56692 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 56693 -NCIT:C88982 Stage II Nasopharyngeal Carcinoma AJCC v7 9 56694 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 56695 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 56696 -NCIT:C88983 Stage III Nasopharyngeal Carcinoma AJCC v7 9 56697 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 56698 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 56699 -NCIT:C88984 Stage IV Nasopharyngeal Carcinoma AJCC v7 9 56700 -NCIT:C5995 Stage IVC Nasopharyngeal Carcinoma AJCC v7 10 56701 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 56702 -NCIT:C5996 Stage IVB Nasopharyngeal Carcinoma AJCC v7 10 56703 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 56704 -NCIT:C5997 Stage IVA Nasopharyngeal Carcinoma AJCC v7 10 56705 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 56706 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 56707 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 56708 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 56709 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 56710 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 56711 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 9 56712 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 10 56713 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 56714 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 8 56715 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 9 56716 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 56717 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 56718 -NCIT:C6030 Metastatic Malignant Neoplasm in the Nasopharynx 7 56719 -NCIT:C9268 Recurrent Malignant Nasopharyngeal Neoplasm 7 56720 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 8 56721 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 9 56722 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 56723 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 56724 -NCIT:C9466 Pharyngeal Carcinoma 6 56725 -NCIT:C102872 Pharyngeal Squamous Cell Carcinoma 7 56726 -NCIT:C167265 Nasopharyngeal Squamous Cell Carcinoma 8 56727 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 56728 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 56729 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 56730 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 56731 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 56732 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 56733 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 9 56734 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 56735 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 56736 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 9 56737 -NCIT:C54360 Nasopharyngeal Basaloid Carcinoma 9 56738 -NCIT:C7373 Nasopharyngeal Nonkeratinizing Carcinoma 9 56739 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 56740 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 56741 -NCIT:C54389 Nasopharyngeal Differentiated Carcinoma 10 56742 -NCIT:C8023 Nasopharyngeal Undifferentiated Carcinoma 10 56743 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 56744 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 11 56745 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 56746 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 56747 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 56748 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 56749 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 11 56750 -NCIT:C7992 Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 56751 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 56752 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 56753 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 56754 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 56755 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 56756 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 56757 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 56758 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 56759 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 56760 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 56761 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 8 56762 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 56763 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 56764 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 56765 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 56766 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 56767 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 56768 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 56769 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 56770 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 56771 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 56772 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 56773 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 56774 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 56775 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 56776 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 56777 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 56778 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 56779 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 8 56780 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 9 56781 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 56782 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 56783 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 9 56784 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 10 56785 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 9 56786 -NCIT:C35693 Posterior Pharyngeal Wall Squamous Cell Carcinoma 8 56787 -NCIT:C4043 Hypopharyngeal Squamous Cell Carcinoma 8 56788 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 9 56789 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 56790 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 56791 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 56792 -NCIT:C172646 Unresectable Hypopharyngeal Squamous Cell Carcinoma 9 56793 -NCIT:C4943 Pyriform Fossa Squamous Cell Carcinoma 9 56794 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 9 56795 -NCIT:C8185 Postcricoid Squamous Cell Carcinoma 9 56796 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 56797 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 56798 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 56799 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 56800 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 56801 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 56802 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 56803 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 9 56804 -NCIT:C8181 Oropharyngeal Squamous Cell Carcinoma 8 56805 -NCIT:C126750 Oropharyngeal Poorly Differentiated Carcinoma 9 56806 -NCIT:C126751 Oropharyngeal Basaloid Carcinoma 9 56807 -NCIT:C147906 Oropharyngeal p16INK4a-Negative Squamous Cell Carcinoma 9 56808 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 9 56809 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 56810 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 56811 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 56812 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 56813 -NCIT:C162787 Resectable Oropharyngeal Squamous Cell Carcinoma 9 56814 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 10 56815 -NCIT:C162833 Unresectable Oropharyngeal Squamous Cell Carcinoma 9 56816 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 10 56817 -NCIT:C173414 Oropharyngeal Human Papillomavirus-Negative Squamous Cell Carcinoma 9 56818 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 56819 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 56820 -NCIT:C68610 Oropharyngeal Undifferentiated Carcinoma 9 56821 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 56822 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 56823 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 56824 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 56825 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 56826 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 56827 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 56828 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 10 56829 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 56830 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 10 56831 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 10 56832 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 10 56833 -NCIT:C8183 Tonsillar Squamous Cell Carcinoma 9 56834 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 10 56835 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 56836 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 56837 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 56838 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 56839 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 9 56840 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 56841 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 9 56842 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 56843 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 56844 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 56845 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 56846 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 56847 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 56848 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 56849 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 56850 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 56851 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 56852 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 9 56853 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 10 56854 -NCIT:C87055 Oropharyngeal Human Papillomavirus-Positive Squamous Cell Carcinoma 9 56855 -NCIT:C132814 Pharyngeal Carcinoma by AJCC v8 Stage 7 56856 -NCIT:C132816 Nasopharyngeal Carcinoma by AJCC v8 Stage 8 56857 -NCIT:C132817 Stage I Nasopharyngeal Carcinoma AJCC v8 9 56858 -NCIT:C132818 Stage II Nasopharyngeal Carcinoma AJCC v8 9 56859 -NCIT:C132819 Stage III Nasopharyngeal Carcinoma AJCC v8 9 56860 -NCIT:C132820 Stage IV Nasopharyngeal Carcinoma AJCC v8 9 56861 -NCIT:C132821 Stage IVA Nasopharyngeal Carcinoma AJCC v8 10 56862 -NCIT:C132822 Stage IVB Nasopharyngeal Carcinoma AJCC v8 10 56863 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 9 56864 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 10 56865 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 56866 -NCIT:C132882 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Stage 8 56867 -NCIT:C132883 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Clinical Stage 9 56868 -NCIT:C132885 Clinical Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 56869 -NCIT:C132886 Clinical Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 56870 -NCIT:C132891 Clinical Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 56871 -NCIT:C132893 Clinical Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 56872 -NCIT:C132884 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Pathologic Stage 9 56873 -NCIT:C132898 Pathologic Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 56874 -NCIT:C132899 Pathologic Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 56875 -NCIT:C132900 Pathologic Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 56876 -NCIT:C132901 Pathologic Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 56877 -NCIT:C132994 Oropharyngeal (p16-Negative) Carcinoma by AJCC v8 Stage 8 56878 -NCIT:C132995 Stage 0 Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 56879 -NCIT:C132996 Stage I Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 56880 -NCIT:C132997 Stage II Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 56881 -NCIT:C132998 Stage III Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 56882 -NCIT:C132999 Stage IV Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 56883 -NCIT:C133000 Stage IVA Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 56884 -NCIT:C133001 Stage IVB Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 56885 -NCIT:C133002 Stage IVC Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 56886 -NCIT:C133003 Hypopharyngeal Carcinoma by AJCC v8 Stage 8 56887 -NCIT:C133005 Stage I Hypopharyngeal Carcinoma AJCC v8 9 56888 -NCIT:C133006 Stage II Hypopharyngeal Carcinoma AJCC v8 9 56889 -NCIT:C133007 Stage III Hypopharyngeal Carcinoma AJCC v8 9 56890 -NCIT:C133008 Stage IV Hypopharyngeal Carcinoma AJCC v8 9 56891 -NCIT:C133009 Stage IVA Hypopharyngeal Carcinoma AJCC v8 10 56892 -NCIT:C133010 Stage IVB Hypopharyngeal Carcinoma AJCC v8 10 56893 -NCIT:C133011 Stage IVC Hypopharyngeal Carcinoma AJCC v8 10 56894 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 9 56895 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 56896 -NCIT:C156080 Metastatic Pharyngeal Carcinoma 7 56897 -NCIT:C156079 Metastatic Nasopharyngeal Carcinoma 8 56898 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 56899 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 56900 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 56901 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 56902 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 56903 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 56904 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 9 56905 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 56906 -NCIT:C156081 Metastatic Hypopharyngeal Carcinoma 8 56907 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 56908 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 56909 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 56910 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 9 56911 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 56912 -NCIT:C156082 Metastatic Oropharyngeal Carcinoma 8 56913 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 56914 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 56915 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 56916 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 56917 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 9 56918 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 56919 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 56920 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 9 56921 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 56922 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 8 56923 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 56924 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 9 56925 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 56926 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 56927 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 9 56928 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 56929 -NCIT:C170784 Advanced Pharyngeal Carcinoma 8 56930 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 9 56931 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 56932 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 56933 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 56934 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 56935 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 56936 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 9 56937 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 56938 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 8 56939 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 56940 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 56941 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 56942 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 56943 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 56944 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 56945 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 56946 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 56947 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 56948 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 56949 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 56950 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 56951 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 56952 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 56953 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 56954 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 56955 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 56956 -NCIT:C35692 Posterior Pharyngeal Wall Carcinoma 7 56957 -NCIT:C35693 Posterior Pharyngeal Wall Squamous Cell Carcinoma 8 56958 -NCIT:C3871 Nasopharyngeal Carcinoma 7 56959 -NCIT:C132816 Nasopharyngeal Carcinoma by AJCC v8 Stage 8 56960 -NCIT:C132817 Stage I Nasopharyngeal Carcinoma AJCC v8 9 56961 -NCIT:C132818 Stage II Nasopharyngeal Carcinoma AJCC v8 9 56962 -NCIT:C132819 Stage III Nasopharyngeal Carcinoma AJCC v8 9 56963 -NCIT:C132820 Stage IV Nasopharyngeal Carcinoma AJCC v8 9 56964 -NCIT:C132821 Stage IVA Nasopharyngeal Carcinoma AJCC v8 10 56965 -NCIT:C132822 Stage IVB Nasopharyngeal Carcinoma AJCC v8 10 56966 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 9 56967 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 10 56968 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 56969 -NCIT:C148434 Refractory Nasopharyngeal Carcinoma 8 56970 -NCIT:C156079 Metastatic Nasopharyngeal Carcinoma 8 56971 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 56972 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 56973 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 56974 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 56975 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 56976 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 56977 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 9 56978 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 56979 -NCIT:C165176 Unresectable Nasopharyngeal Carcinoma 8 56980 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 9 56981 -NCIT:C167265 Nasopharyngeal Squamous Cell Carcinoma 8 56982 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 56983 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 56984 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 56985 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 56986 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 56987 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 56988 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 9 56989 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 56990 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 56991 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 9 56992 -NCIT:C54360 Nasopharyngeal Basaloid Carcinoma 9 56993 -NCIT:C7373 Nasopharyngeal Nonkeratinizing Carcinoma 9 56994 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 56995 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 56996 -NCIT:C54389 Nasopharyngeal Differentiated Carcinoma 10 56997 -NCIT:C8023 Nasopharyngeal Undifferentiated Carcinoma 10 56998 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 56999 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 11 57000 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 57001 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 57002 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 57003 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 57004 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 11 57005 -NCIT:C7992 Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 57006 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 57007 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 57008 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 57009 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 57010 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 57011 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 57012 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 57013 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 57014 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 57015 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 57016 -NCIT:C173340 Nasopharyngeal Adenoid Cystic Carcinoma 8 57017 -NCIT:C190276 Childhood Nasopharyngeal Carcinoma 8 57018 -NCIT:C54400 Nasopharyngeal Papillary Adenocarcinoma 8 57019 -NCIT:C90522 Nasopharyngeal Carcinoma by AJCC v6 Stage 8 57020 -NCIT:C7395 Stage I Nasopharyngeal Carcinoma AJCC v6 9 57021 -NCIT:C7396 Stage III Nasopharyngeal Carcinoma AJCC v6 9 57022 -NCIT:C7397 Stage IV Nasopharyngeal Carcinoma AJCC v6 9 57023 -NCIT:C7920 Stage II Nasopharyngeal Carcinoma AJCC v6 9 57024 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 9 57025 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 10 57026 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 57027 -NCIT:C91244 Nasopharyngeal Carcinoma by AJCC v7 Stage 8 57028 -NCIT:C88981 Stage I Nasopharyngeal Carcinoma AJCC v7 9 57029 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 57030 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 57031 -NCIT:C88982 Stage II Nasopharyngeal Carcinoma AJCC v7 9 57032 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 57033 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 57034 -NCIT:C88983 Stage III Nasopharyngeal Carcinoma AJCC v7 9 57035 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 57036 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 57037 -NCIT:C88984 Stage IV Nasopharyngeal Carcinoma AJCC v7 9 57038 -NCIT:C5995 Stage IVC Nasopharyngeal Carcinoma AJCC v7 10 57039 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 57040 -NCIT:C5996 Stage IVB Nasopharyngeal Carcinoma AJCC v7 10 57041 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 57042 -NCIT:C5997 Stage IVA Nasopharyngeal Carcinoma AJCC v7 10 57043 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 57044 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 57045 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 57046 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 57047 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 57048 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 57049 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 9 57050 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 10 57051 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 57052 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 8 57053 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 9 57054 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 57055 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 57056 -NCIT:C4942 Stage 0 Pharyngeal Cancer 7 57057 -NCIT:C132995 Stage 0 Oropharyngeal (p16-Negative) Carcinoma AJCC v8 8 57058 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 8 57059 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 57060 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 8 57061 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 9 57062 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 9 57063 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 8 57064 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 9 57065 -NCIT:C5103 Recurrent Pharyngeal Carcinoma 7 57066 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 8 57067 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 9 57068 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 57069 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 57070 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 9 57071 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 10 57072 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 9 57073 -NCIT:C8051 Recurrent Oropharyngeal Carcinoma 8 57074 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 9 57075 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 10 57076 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 8 57077 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 9 57078 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 57079 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 57080 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 8 57081 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 9 57082 -NCIT:C5818 Pharyngeal Adenoid Cystic Carcinoma 7 57083 -NCIT:C173340 Nasopharyngeal Adenoid Cystic Carcinoma 8 57084 -NCIT:C6241 Oropharyngeal Adenoid Cystic Carcinoma 8 57085 -NCIT:C8768 Stage I Pharyngeal Cancer 7 57086 -NCIT:C132817 Stage I Nasopharyngeal Carcinoma AJCC v8 8 57087 -NCIT:C132885 Clinical Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 8 57088 -NCIT:C132898 Pathologic Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 8 57089 -NCIT:C132996 Stage I Oropharyngeal (p16-Negative) Carcinoma AJCC v8 8 57090 -NCIT:C133005 Stage I Hypopharyngeal Carcinoma AJCC v8 8 57091 -NCIT:C7395 Stage I Nasopharyngeal Carcinoma AJCC v6 8 57092 -NCIT:C8038 Stage I Hypopharyngeal Carcinoma AJCC v6 8 57093 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 8 57094 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 57095 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 57096 -NCIT:C88981 Stage I Nasopharyngeal Carcinoma AJCC v7 8 57097 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 57098 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 9 57099 -NCIT:C89045 Stage I Hypopharyngeal Carcinoma AJCC v7 8 57100 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 57101 -NCIT:C8769 Stage II Pharyngeal Cancer 7 57102 -NCIT:C132818 Stage II Nasopharyngeal Carcinoma AJCC v8 8 57103 -NCIT:C132886 Clinical Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 8 57104 -NCIT:C132899 Pathologic Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 8 57105 -NCIT:C132997 Stage II Oropharyngeal (p16-Negative) Carcinoma AJCC v8 8 57106 -NCIT:C133006 Stage II Hypopharyngeal Carcinoma AJCC v8 8 57107 -NCIT:C7920 Stage II Nasopharyngeal Carcinoma AJCC v6 8 57108 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 8 57109 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 57110 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 8 57111 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 57112 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 57113 -NCIT:C88982 Stage II Nasopharyngeal Carcinoma AJCC v7 8 57114 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 57115 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 9 57116 -NCIT:C8770 Stage III Pharyngeal Cancer 7 57117 -NCIT:C132819 Stage III Nasopharyngeal Carcinoma AJCC v8 8 57118 -NCIT:C132891 Clinical Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 8 57119 -NCIT:C132900 Pathologic Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 8 57120 -NCIT:C132998 Stage III Oropharyngeal (p16-Negative) Carcinoma AJCC v8 8 57121 -NCIT:C133007 Stage III Hypopharyngeal Carcinoma AJCC v8 8 57122 -NCIT:C7396 Stage III Nasopharyngeal Carcinoma AJCC v6 8 57123 -NCIT:C8040 Stage III Hypopharyngeal Carcinoma AJCC v6 8 57124 -NCIT:C8050 Stage III Oropharyngeal Carcinoma AJCC v6 8 57125 -NCIT:C88983 Stage III Nasopharyngeal Carcinoma AJCC v7 8 57126 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 57127 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 9 57128 -NCIT:C89021 Stage III Oropharyngeal Carcinoma AJCC v7 8 57129 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 9 57130 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 57131 -NCIT:C89046 Stage III Hypopharyngeal Carcinoma AJCC v7 8 57132 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 57133 -NCIT:C8771 Stage IV Pharyngeal Cancer 7 57134 -NCIT:C132820 Stage IV Nasopharyngeal Carcinoma AJCC v8 8 57135 -NCIT:C132821 Stage IVA Nasopharyngeal Carcinoma AJCC v8 9 57136 -NCIT:C132822 Stage IVB Nasopharyngeal Carcinoma AJCC v8 9 57137 -NCIT:C132893 Clinical Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 8 57138 -NCIT:C132901 Pathologic Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 8 57139 -NCIT:C132999 Stage IV Oropharyngeal (p16-Negative) Carcinoma AJCC v8 8 57140 -NCIT:C133000 Stage IVA Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 57141 -NCIT:C133001 Stage IVB Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 57142 -NCIT:C133002 Stage IVC Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 57143 -NCIT:C133008 Stage IV Hypopharyngeal Carcinoma AJCC v8 8 57144 -NCIT:C133009 Stage IVA Hypopharyngeal Carcinoma AJCC v8 9 57145 -NCIT:C133010 Stage IVB Hypopharyngeal Carcinoma AJCC v8 9 57146 -NCIT:C133011 Stage IVC Hypopharyngeal Carcinoma AJCC v8 9 57147 -NCIT:C6000 Stage IVA Pharyngeal Cancer 8 57148 -NCIT:C132821 Stage IVA Nasopharyngeal Carcinoma AJCC v8 9 57149 -NCIT:C133000 Stage IVA Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 57150 -NCIT:C133009 Stage IVA Hypopharyngeal Carcinoma AJCC v8 9 57151 -NCIT:C5985 Stage IVA Oropharyngeal Carcinoma AJCC v7 9 57152 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 57153 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 57154 -NCIT:C5992 Stage IVA Hypopharyngeal Carcinoma AJCC v7 9 57155 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 57156 -NCIT:C5997 Stage IVA Nasopharyngeal Carcinoma AJCC v7 9 57157 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 57158 -NCIT:C6001 Stage IVB Pharyngeal Cancer 8 57159 -NCIT:C132822 Stage IVB Nasopharyngeal Carcinoma AJCC v8 9 57160 -NCIT:C133001 Stage IVB Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 57161 -NCIT:C133010 Stage IVB Hypopharyngeal Carcinoma AJCC v8 9 57162 -NCIT:C5986 Stage IVB Oropharyngeal Carcinoma AJCC v7 9 57163 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 57164 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 57165 -NCIT:C5993 Stage IVB Hypopharyngeal Carcinoma AJCC v7 9 57166 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 57167 -NCIT:C5996 Stage IVB Nasopharyngeal Carcinoma AJCC v7 9 57168 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 57169 -NCIT:C6002 Stage IVC Pharyngeal Cancer 8 57170 -NCIT:C133002 Stage IVC Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 57171 -NCIT:C133011 Stage IVC Hypopharyngeal Carcinoma AJCC v8 9 57172 -NCIT:C5987 Stage IVC Oropharyngeal Carcinoma AJCC v7 9 57173 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 57174 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 57175 -NCIT:C5994 Stage IVC Hypopharyngeal Carcinoma AJCC v7 9 57176 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 57177 -NCIT:C5995 Stage IVC Nasopharyngeal Carcinoma AJCC v7 9 57178 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 57179 -NCIT:C7397 Stage IV Nasopharyngeal Carcinoma AJCC v6 8 57180 -NCIT:C8533 Stage IV Hypopharyngeal Carcinoma AJCC v6 8 57181 -NCIT:C88984 Stage IV Nasopharyngeal Carcinoma AJCC v7 8 57182 -NCIT:C5995 Stage IVC Nasopharyngeal Carcinoma AJCC v7 9 57183 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 57184 -NCIT:C5996 Stage IVB Nasopharyngeal Carcinoma AJCC v7 9 57185 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 57186 -NCIT:C5997 Stage IVA Nasopharyngeal Carcinoma AJCC v7 9 57187 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 57188 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 57189 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 57190 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 57191 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 57192 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 9 57193 -NCIT:C89023 Stage IV Oropharyngeal Carcinoma AJCC v7 8 57194 -NCIT:C5985 Stage IVA Oropharyngeal Carcinoma AJCC v7 9 57195 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 57196 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 57197 -NCIT:C5986 Stage IVB Oropharyngeal Carcinoma AJCC v7 9 57198 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 57199 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 57200 -NCIT:C5987 Stage IVC Oropharyngeal Carcinoma AJCC v7 9 57201 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 57202 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 57203 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 9 57204 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 57205 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 57206 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 57207 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 57208 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 57209 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 57210 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 57211 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 57212 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 57213 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 57214 -NCIT:C89047 Stage IV Hypopharyngeal Carcinoma AJCC v7 8 57215 -NCIT:C5992 Stage IVA Hypopharyngeal Carcinoma AJCC v7 9 57216 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 57217 -NCIT:C5993 Stage IVB Hypopharyngeal Carcinoma AJCC v7 9 57218 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 57219 -NCIT:C5994 Stage IVC Hypopharyngeal Carcinoma AJCC v7 9 57220 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 57221 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 57222 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 57223 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 57224 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 57225 -NCIT:C9218 Stage IV Oropharyngeal Carcinoma AJCC v6 8 57226 -NCIT:C90525 Pharyngeal Carcinoma by AJCC v6 Stage 7 57227 -NCIT:C90522 Nasopharyngeal Carcinoma by AJCC v6 Stage 8 57228 -NCIT:C7395 Stage I Nasopharyngeal Carcinoma AJCC v6 9 57229 -NCIT:C7396 Stage III Nasopharyngeal Carcinoma AJCC v6 9 57230 -NCIT:C7397 Stage IV Nasopharyngeal Carcinoma AJCC v6 9 57231 -NCIT:C7920 Stage II Nasopharyngeal Carcinoma AJCC v6 9 57232 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 9 57233 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 10 57234 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 57235 -NCIT:C90523 Oropharyngeal Carcinoma by AJCC v6 Stage 8 57236 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 9 57237 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 57238 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 9 57239 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 57240 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 57241 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 9 57242 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 57243 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 57244 -NCIT:C8050 Stage III Oropharyngeal Carcinoma AJCC v6 9 57245 -NCIT:C9218 Stage IV Oropharyngeal Carcinoma AJCC v6 9 57246 -NCIT:C90524 Hypopharyngeal Carcinoma by AJCC v6 Stage 8 57247 -NCIT:C8038 Stage I Hypopharyngeal Carcinoma AJCC v6 9 57248 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 9 57249 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 57250 -NCIT:C8040 Stage III Hypopharyngeal Carcinoma AJCC v6 9 57251 -NCIT:C8533 Stage IV Hypopharyngeal Carcinoma AJCC v6 9 57252 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 9 57253 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 57254 -NCIT:C9105 Oropharyngeal Carcinoma 7 57255 -NCIT:C132882 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Stage 8 57256 -NCIT:C132883 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Clinical Stage 9 57257 -NCIT:C132885 Clinical Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 57258 -NCIT:C132886 Clinical Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 57259 -NCIT:C132891 Clinical Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 57260 -NCIT:C132893 Clinical Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 57261 -NCIT:C132884 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Pathologic Stage 9 57262 -NCIT:C132898 Pathologic Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 57263 -NCIT:C132899 Pathologic Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 57264 -NCIT:C132900 Pathologic Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 57265 -NCIT:C132901 Pathologic Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 57266 -NCIT:C132994 Oropharyngeal (p16-Negative) Carcinoma by AJCC v8 Stage 8 57267 -NCIT:C132995 Stage 0 Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 57268 -NCIT:C132996 Stage I Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 57269 -NCIT:C132997 Stage II Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 57270 -NCIT:C132998 Stage III Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 57271 -NCIT:C132999 Stage IV Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 57272 -NCIT:C133000 Stage IVA Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 57273 -NCIT:C133001 Stage IVB Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 57274 -NCIT:C133002 Stage IVC Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 57275 -NCIT:C156082 Metastatic Oropharyngeal Carcinoma 8 57276 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 57277 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 57278 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 57279 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 57280 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 9 57281 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 57282 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 57283 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 9 57284 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 57285 -NCIT:C173576 Oropharyngeal Polymorphous Adenocarcinoma 8 57286 -NCIT:C4825 Tonsillar Carcinoma 8 57287 -NCIT:C8183 Tonsillar Squamous Cell Carcinoma 9 57288 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 10 57289 -NCIT:C6241 Oropharyngeal Adenoid Cystic Carcinoma 8 57290 -NCIT:C8051 Recurrent Oropharyngeal Carcinoma 8 57291 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 9 57292 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 10 57293 -NCIT:C8181 Oropharyngeal Squamous Cell Carcinoma 8 57294 -NCIT:C126750 Oropharyngeal Poorly Differentiated Carcinoma 9 57295 -NCIT:C126751 Oropharyngeal Basaloid Carcinoma 9 57296 -NCIT:C147906 Oropharyngeal p16INK4a-Negative Squamous Cell Carcinoma 9 57297 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 9 57298 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 57299 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 57300 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 57301 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 57302 -NCIT:C162787 Resectable Oropharyngeal Squamous Cell Carcinoma 9 57303 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 10 57304 -NCIT:C162833 Unresectable Oropharyngeal Squamous Cell Carcinoma 9 57305 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 10 57306 -NCIT:C173414 Oropharyngeal Human Papillomavirus-Negative Squamous Cell Carcinoma 9 57307 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 57308 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 57309 -NCIT:C68610 Oropharyngeal Undifferentiated Carcinoma 9 57310 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 57311 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 57312 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 57313 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 57314 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 57315 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 57316 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 57317 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 10 57318 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 57319 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 10 57320 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 10 57321 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 10 57322 -NCIT:C8183 Tonsillar Squamous Cell Carcinoma 9 57323 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 10 57324 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 57325 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 57326 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 57327 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 57328 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 9 57329 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 57330 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 9 57331 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 57332 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 57333 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 57334 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 57335 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 57336 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 57337 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 57338 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 57339 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 57340 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 57341 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 9 57342 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 10 57343 -NCIT:C87055 Oropharyngeal Human Papillomavirus-Positive Squamous Cell Carcinoma 9 57344 -NCIT:C8395 Soft Palate Carcinoma 8 57345 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 57346 -NCIT:C90523 Oropharyngeal Carcinoma by AJCC v6 Stage 8 57347 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 9 57348 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 57349 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 9 57350 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 57351 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 57352 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 9 57353 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 57354 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 57355 -NCIT:C8050 Stage III Oropharyngeal Carcinoma AJCC v6 9 57356 -NCIT:C9218 Stage IV Oropharyngeal Carcinoma AJCC v6 9 57357 -NCIT:C91248 Oropharyngeal Carcinoma by AJCC v7 Stage 8 57358 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 9 57359 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 57360 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 9 57361 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 57362 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 57363 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 9 57364 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 57365 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 57366 -NCIT:C89021 Stage III Oropharyngeal Carcinoma AJCC v7 9 57367 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 57368 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 57369 -NCIT:C89023 Stage IV Oropharyngeal Carcinoma AJCC v7 9 57370 -NCIT:C5985 Stage IVA Oropharyngeal Carcinoma AJCC v7 10 57371 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 57372 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 57373 -NCIT:C5986 Stage IVB Oropharyngeal Carcinoma AJCC v7 10 57374 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 57375 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 57376 -NCIT:C5987 Stage IVC Oropharyngeal Carcinoma AJCC v7 10 57377 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 57378 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 57379 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 57380 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 57381 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 57382 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 57383 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 57384 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 57385 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 57386 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 57387 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 57388 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 57389 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 57390 -NCIT:C91252 Pharyngeal Carcinoma by AJCC v7 Stage 7 57391 -NCIT:C91244 Nasopharyngeal Carcinoma by AJCC v7 Stage 8 57392 -NCIT:C88981 Stage I Nasopharyngeal Carcinoma AJCC v7 9 57393 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 57394 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 57395 -NCIT:C88982 Stage II Nasopharyngeal Carcinoma AJCC v7 9 57396 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 57397 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 57398 -NCIT:C88983 Stage III Nasopharyngeal Carcinoma AJCC v7 9 57399 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 57400 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 57401 -NCIT:C88984 Stage IV Nasopharyngeal Carcinoma AJCC v7 9 57402 -NCIT:C5995 Stage IVC Nasopharyngeal Carcinoma AJCC v7 10 57403 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 57404 -NCIT:C5996 Stage IVB Nasopharyngeal Carcinoma AJCC v7 10 57405 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 57406 -NCIT:C5997 Stage IVA Nasopharyngeal Carcinoma AJCC v7 10 57407 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 57408 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 57409 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 57410 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 57411 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 57412 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 57413 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 9 57414 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 10 57415 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 57416 -NCIT:C91248 Oropharyngeal Carcinoma by AJCC v7 Stage 8 57417 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 9 57418 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 57419 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 9 57420 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 57421 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 57422 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 9 57423 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 57424 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 57425 -NCIT:C89021 Stage III Oropharyngeal Carcinoma AJCC v7 9 57426 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 57427 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 57428 -NCIT:C89023 Stage IV Oropharyngeal Carcinoma AJCC v7 9 57429 -NCIT:C5985 Stage IVA Oropharyngeal Carcinoma AJCC v7 10 57430 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 57431 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 57432 -NCIT:C5986 Stage IVB Oropharyngeal Carcinoma AJCC v7 10 57433 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 57434 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 57435 -NCIT:C5987 Stage IVC Oropharyngeal Carcinoma AJCC v7 10 57436 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 57437 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 57438 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 57439 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 57440 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 57441 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 57442 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 57443 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 57444 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 57445 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 57446 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 57447 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 57448 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 57449 -NCIT:C91251 Hypopharyngeal Carcinoma by AJCC v7 Stage 8 57450 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 9 57451 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 57452 -NCIT:C89045 Stage I Hypopharyngeal Carcinoma AJCC v7 9 57453 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 57454 -NCIT:C89046 Stage III Hypopharyngeal Carcinoma AJCC v7 9 57455 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 57456 -NCIT:C89047 Stage IV Hypopharyngeal Carcinoma AJCC v7 9 57457 -NCIT:C5992 Stage IVA Hypopharyngeal Carcinoma AJCC v7 10 57458 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 57459 -NCIT:C5993 Stage IVB Hypopharyngeal Carcinoma AJCC v7 10 57460 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 57461 -NCIT:C5994 Stage IVC Hypopharyngeal Carcinoma AJCC v7 10 57462 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 57463 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 57464 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 57465 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 57466 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 57467 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 9 57468 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 57469 -NCIT:C9465 Hypopharyngeal Carcinoma 7 57470 -NCIT:C133003 Hypopharyngeal Carcinoma by AJCC v8 Stage 8 57471 -NCIT:C133005 Stage I Hypopharyngeal Carcinoma AJCC v8 9 57472 -NCIT:C133006 Stage II Hypopharyngeal Carcinoma AJCC v8 9 57473 -NCIT:C133007 Stage III Hypopharyngeal Carcinoma AJCC v8 9 57474 -NCIT:C133008 Stage IV Hypopharyngeal Carcinoma AJCC v8 9 57475 -NCIT:C133009 Stage IVA Hypopharyngeal Carcinoma AJCC v8 10 57476 -NCIT:C133010 Stage IVB Hypopharyngeal Carcinoma AJCC v8 10 57477 -NCIT:C133011 Stage IVC Hypopharyngeal Carcinoma AJCC v8 10 57478 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 9 57479 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 57480 -NCIT:C156081 Metastatic Hypopharyngeal Carcinoma 8 57481 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 57482 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 57483 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 57484 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 9 57485 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 57486 -NCIT:C4043 Hypopharyngeal Squamous Cell Carcinoma 8 57487 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 9 57488 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 57489 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 57490 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 57491 -NCIT:C172646 Unresectable Hypopharyngeal Squamous Cell Carcinoma 9 57492 -NCIT:C4943 Pyriform Fossa Squamous Cell Carcinoma 9 57493 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 9 57494 -NCIT:C8185 Postcricoid Squamous Cell Carcinoma 9 57495 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 57496 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 57497 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 57498 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 57499 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 57500 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 57501 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 57502 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 9 57503 -NCIT:C6700 Pyriform Fossa Carcinoma 8 57504 -NCIT:C4943 Pyriform Fossa Squamous Cell Carcinoma 9 57505 -NCIT:C8595 Postcricoid Carcinoma 8 57506 -NCIT:C8185 Postcricoid Squamous Cell Carcinoma 9 57507 -NCIT:C90524 Hypopharyngeal Carcinoma by AJCC v6 Stage 8 57508 -NCIT:C8038 Stage I Hypopharyngeal Carcinoma AJCC v6 9 57509 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 9 57510 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 57511 -NCIT:C8040 Stage III Hypopharyngeal Carcinoma AJCC v6 9 57512 -NCIT:C8533 Stage IV Hypopharyngeal Carcinoma AJCC v6 9 57513 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 9 57514 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 57515 -NCIT:C91251 Hypopharyngeal Carcinoma by AJCC v7 Stage 8 57516 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 9 57517 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 57518 -NCIT:C89045 Stage I Hypopharyngeal Carcinoma AJCC v7 9 57519 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 57520 -NCIT:C89046 Stage III Hypopharyngeal Carcinoma AJCC v7 9 57521 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 57522 -NCIT:C89047 Stage IV Hypopharyngeal Carcinoma AJCC v7 9 57523 -NCIT:C5992 Stage IVA Hypopharyngeal Carcinoma AJCC v7 10 57524 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 57525 -NCIT:C5993 Stage IVB Hypopharyngeal Carcinoma AJCC v7 10 57526 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 57527 -NCIT:C5994 Stage IVC Hypopharyngeal Carcinoma AJCC v7 10 57528 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 57529 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 57530 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 57531 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 57532 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 57533 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 9 57534 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 57535 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 8 57536 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 9 57537 -NCIT:C8528 Metastatic Malignant Neoplasm in the Neck 5 57538 -NCIT:C173585 Neck Carcinoma of Unknown Primary 6 57539 -NCIT:C7713 Neck Squamous Cell Carcinoma of Unknown Primary 7 57540 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 8 57541 -NCIT:C6031 Metastatic Malignant Neoplasm in the Larynx 6 57542 -NCIT:C7509 Metastatic Malignant Neoplasm in the Thyroid Gland 6 57543 -NCIT:C7546 Metastatic Malignant Neoplasm in the Pharynx 6 57544 -NCIT:C6028 Metastatic Malignant Neoplasm in the Hypopharynx 7 57545 -NCIT:C6029 Metastatic Malignant Neoplasm in the Oropharynx 7 57546 -NCIT:C6030 Metastatic Malignant Neoplasm in the Nasopharynx 7 57547 -NCIT:C8557 Metastatic Malignant Neoplasm in the Parathyroid Glands 6 57548 -NCIT:C9322 Malignant Parathyroid Gland Neoplasm 5 57549 -NCIT:C4906 Parathyroid Gland Carcinoma 6 57550 -NCIT:C118819 Childhood Parathyroid Gland Carcinoma 7 57551 -NCIT:C7826 Localized Parathyroid Gland Carcinoma 7 57552 -NCIT:C7828 Recurrent Parathyroid Gland Carcinoma 7 57553 -NCIT:C9044 Metastatic Parathyroid Gland Carcinoma 7 57554 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 57555 -NCIT:C8557 Metastatic Malignant Neoplasm in the Parathyroid Glands 6 57556 -NCIT:C5589 Jugular Foramen Neoplasm 4 57557 -NCIT:C5293 Jugular Foramen Meningioma 5 57558 -NCIT:C5323 Jugular Foramen Schwannoma 5 57559 -NCIT:C95048 Ectopic Cervical Thymoma 4 57560 -NCIT:C3290 Orbit Neoplasm 3 57561 -NCIT:C3562 Malignant Orbit Neoplasm 4 57562 -NCIT:C118828 Orbital Melanoma 5 57563 -NCIT:C6095 Orbit Sarcoma 5 57564 -NCIT:C156276 Orbital Alveolar Soft Part Sarcoma 6 57565 -NCIT:C4543 Orbit Rhabdomyosarcoma 6 57566 -NCIT:C6246 Orbit Embryonal Rhabdomyosarcoma 7 57567 -NCIT:C6247 Orbit Alveolar Rhabdomyosarcoma 7 57568 -NCIT:C6244 Orbit Lymphoma 5 57569 -NCIT:C8556 Metastatic Malignant Neoplasm in the Orbit 5 57570 -NCIT:C3620 Benign Orbit Neoplasm 4 57571 -NCIT:C4548 Orbit Dermoid Cyst 5 57572 -NCIT:C6245 Orbit Hemangioma 5 57573 -NCIT:C4545 Orbit Capillary Hemangioma 6 57574 -NCIT:C4546 Orbit Cavernous Hemangioma 6 57575 -NCIT:C6408 Orbit Paraganglioma 4 57576 -NCIT:C6778 Intraorbital Meningioma 4 57577 -NCIT:C6777 Periocular Meningioma 5 57578 -NCIT:C3361 Salivary Gland Neoplasm 3 57579 -NCIT:C181078 Hybrid Salivary Gland Tumor 4 57580 -NCIT:C181079 Hybrid Salivary Gland Carcinoma 5 57581 -NCIT:C35691 Mixed Tumor of the Salivary Gland 4 57582 -NCIT:C35416 Mixed Tumor of the Parotid Gland 5 57583 -NCIT:C4650 Parotid Gland Pleomorphic Adenoma 6 57584 -NCIT:C5945 Malignant Parotid Gland Mixed Tumor 6 57585 -NCIT:C35832 Parotid Gland Carcinosarcoma 7 57586 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 7 57587 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 57588 -NCIT:C40409 Salivary Gland Pleomorphic Adenoma 5 57589 -NCIT:C173114 Sinonasal Pleomorphic Adenoma 6 57590 -NCIT:C173412 Laryngeal Pleomorphic Adenoma 6 57591 -NCIT:C173575 Oropharyngeal Pleomorphic Adenoma 6 57592 -NCIT:C190161 Childhood Salivary Gland Pleomorphic Adenoma 6 57593 -NCIT:C35759 Metastasizing Pleomorphic Adenoma of the Salivary Gland 6 57594 -NCIT:C4650 Parotid Gland Pleomorphic Adenoma 6 57595 -NCIT:C6242 Oral Cavity Pleomorphic Adenoma 6 57596 -NCIT:C6211 Soft Palate Pleomorphic Adenoma 7 57597 -NCIT:C6212 Hard Palate Pleomorphic Adenoma 7 57598 -NCIT:C8025 Malignant Mixed Tumor of the Salivary Gland 5 57599 -NCIT:C35831 Salivary Gland Carcinosarcoma 6 57600 -NCIT:C35832 Parotid Gland Carcinosarcoma 7 57601 -NCIT:C40410 Salivary Gland Carcinoma ex Pleomorphic Adenoma 6 57602 -NCIT:C5975 Major Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 57603 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 57604 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 57605 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 57606 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 57607 -NCIT:C5976 Minor Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 57608 -NCIT:C5902 Malignant Mixed Tumor of the Major Salivary Gland 6 57609 -NCIT:C5944 Malignant Submandibular Gland Mixed Tumor 7 57610 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 57611 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 57612 -NCIT:C5945 Malignant Parotid Gland Mixed Tumor 7 57613 -NCIT:C35832 Parotid Gland Carcinosarcoma 8 57614 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 57615 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 57616 -NCIT:C5975 Major Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 57617 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 57618 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 57619 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 57620 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 57621 -NCIT:C5955 Malignant Mixed Tumor of the Minor Salivary Gland 6 57622 -NCIT:C5976 Minor Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 57623 -NCIT:C35837 Sialoblastoma 4 57624 -NCIT:C3811 Malignant Salivary Gland Neoplasm 4 57625 -NCIT:C173690 Salivary Gland Lymphoma 5 57626 -NCIT:C173691 Salivary Gland Non-Hodgkin Lymphoma 6 57627 -NCIT:C173693 Salivary Gland Mucosa-Associated Lymphoid Tissue Lymphoma 7 57628 -NCIT:C35687 Parotid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 8 57629 -NCIT:C173715 Salivary Gland Follicular Lymphoma 7 57630 -NCIT:C173716 Parotid Gland Follicular Lymphoma 8 57631 -NCIT:C173717 Salivary Gland Diffuse Large B-Cell Lymphoma 7 57632 -NCIT:C173719 Parotid Gland Diffuse Large B-Cell Lymphoma 8 57633 -NCIT:C5981 Major Salivary Gland Non-Hodgkin Lymphoma 7 57634 -NCIT:C5951 Parotid Gland Non-Hodgkin Lymphoma 8 57635 -NCIT:C173716 Parotid Gland Follicular Lymphoma 9 57636 -NCIT:C173719 Parotid Gland Diffuse Large B-Cell Lymphoma 9 57637 -NCIT:C181210 Parotid Gland Mantle Cell Lymphoma 9 57638 -NCIT:C35687 Parotid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 9 57639 -NCIT:C173692 Salivary Gland Hodgkin Lymphoma 6 57640 -NCIT:C177721 Refractory Malignant Salivary Gland Neoplasm 5 57641 -NCIT:C177722 Refractory Salivary Gland Carcinoma 6 57642 -NCIT:C35675 Recurrent Malignant Salivary Gland Neoplasm 5 57643 -NCIT:C7926 Recurrent Salivary Gland Carcinoma 6 57644 -NCIT:C153611 Recurrent Salivary Duct Carcinoma 7 57645 -NCIT:C153612 Recurrent Minor Salivary Gland Adenocarcinoma 7 57646 -NCIT:C153800 Recurrent Parotid Gland Carcinoma 7 57647 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 8 57648 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 8 57649 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 57650 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 8 57651 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 57652 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 8 57653 -NCIT:C153801 Recurrent Submandibular Gland Carcinoma 7 57654 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 8 57655 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 8 57656 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 57657 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 8 57658 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 57659 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 8 57660 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 57661 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 57662 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 57663 -NCIT:C4410 Malignant Minor Salivary Gland Neoplasm 5 57664 -NCIT:C5955 Malignant Mixed Tumor of the Minor Salivary Gland 6 57665 -NCIT:C5976 Minor Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 57666 -NCIT:C5957 Minor Salivary Gland Carcinoma 6 57667 -NCIT:C5936 Minor Salivary Gland Adenoid Cystic Carcinoma 7 57668 -NCIT:C5948 Minor Salivary Gland Adenocarcinoma 7 57669 -NCIT:C153612 Recurrent Minor Salivary Gland Adenocarcinoma 8 57670 -NCIT:C160974 Cribriform Adenocarcinoma of Minor Salivary Gland 8 57671 -NCIT:C6243 Minor Salivary Gland Acinic Cell Carcinoma 8 57672 -NCIT:C5953 Minor Salivary Gland Mucoepidermoid Carcinoma 7 57673 -NCIT:C5954 Minor Salivary Gland Undifferentiated Carcinoma 7 57674 -NCIT:C5956 Minor Salivary Gland Small Cell Neuroendocrine Carcinoma 7 57675 -NCIT:C5959 Minor Salivary Gland Squamous Cell Carcinoma 7 57676 -NCIT:C5976 Minor Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 57677 -NCIT:C4762 Malignant Major Salivary Gland Neoplasm 5 57678 -NCIT:C3525 Malignant Parotid Gland Neoplasm 6 57679 -NCIT:C156280 Parotid Gland Sarcoma 7 57680 -NCIT:C156281 Parotid Gland Liposarcoma 8 57681 -NCIT:C5952 Parotid Gland Kaposi Sarcoma 8 57682 -NCIT:C5945 Malignant Parotid Gland Mixed Tumor 7 57683 -NCIT:C35832 Parotid Gland Carcinosarcoma 8 57684 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 57685 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 57686 -NCIT:C5951 Parotid Gland Non-Hodgkin Lymphoma 7 57687 -NCIT:C173716 Parotid Gland Follicular Lymphoma 8 57688 -NCIT:C173719 Parotid Gland Diffuse Large B-Cell Lymphoma 8 57689 -NCIT:C181210 Parotid Gland Mantle Cell Lymphoma 8 57690 -NCIT:C35687 Parotid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 8 57691 -NCIT:C6791 Parotid Gland Carcinoma 7 57692 -NCIT:C153800 Recurrent Parotid Gland Carcinoma 8 57693 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 9 57694 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 9 57695 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 57696 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 9 57697 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 9 57698 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 9 57699 -NCIT:C5937 Parotid Gland Adenoid Cystic Carcinoma 8 57700 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 9 57701 -NCIT:C5938 Parotid Gland Mucoepidermoid Carcinoma 8 57702 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 9 57703 -NCIT:C5941 Parotid Gland Adenocarcinoma 8 57704 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 57705 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 57706 -NCIT:C5942 Parotid Gland Squamous Cell Carcinoma 8 57707 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 9 57708 -NCIT:C5946 Parotid Gland Undifferentiated Carcinoma 8 57709 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 9 57710 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 57711 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 57712 -NCIT:C3526 Malignant Submandibular Gland Neoplasm 6 57713 -NCIT:C5944 Malignant Submandibular Gland Mixed Tumor 7 57714 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 57715 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 57716 -NCIT:C8396 Submandibular Gland Carcinoma 7 57717 -NCIT:C153801 Recurrent Submandibular Gland Carcinoma 8 57718 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 9 57719 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 9 57720 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 57721 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 9 57722 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 9 57723 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 9 57724 -NCIT:C5935 Submandibular Gland Adenoid Cystic Carcinoma 8 57725 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 9 57726 -NCIT:C5939 Submandibular Gland Mucoepidermoid Carcinoma 8 57727 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 9 57728 -NCIT:C5940 Submandibular Gland Adenocarcinoma 8 57729 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 57730 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 57731 -NCIT:C5943 Submandibular Gland Squamous Cell Carcinoma 8 57732 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 9 57733 -NCIT:C5947 Submandibular Gland Undifferentiated Carcinoma 8 57734 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 9 57735 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 57736 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 57737 -NCIT:C3527 Malignant Sublingual Gland Neoplasm 6 57738 -NCIT:C8397 Sublingual Gland Carcinoma 7 57739 -NCIT:C5958 Sublingual Gland Adenocarcinoma 8 57740 -NCIT:C5902 Malignant Mixed Tumor of the Major Salivary Gland 6 57741 -NCIT:C5944 Malignant Submandibular Gland Mixed Tumor 7 57742 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 57743 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 57744 -NCIT:C5945 Malignant Parotid Gland Mixed Tumor 7 57745 -NCIT:C35832 Parotid Gland Carcinosarcoma 8 57746 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 57747 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 57748 -NCIT:C5975 Major Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 57749 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 57750 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 57751 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 57752 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 57753 -NCIT:C5907 Major Salivary Gland Carcinoma 6 57754 -NCIT:C132778 Major Salivary Gland Cancer by AJCC v7 Stage 7 57755 -NCIT:C5895 Stage I Major Salivary Gland Cancer AJCC v7 8 57756 -NCIT:C5896 Stage II Major Salivary Gland Cancer AJCC v7 8 57757 -NCIT:C5897 Stage III Major Salivary Gland Cancer AJCC v7 8 57758 -NCIT:C5898 Stage IV Major Salivary Gland Cancer AJCC v7 8 57759 -NCIT:C35694 Stage IVA Major Salivary Gland Cancer AJCC v7 9 57760 -NCIT:C35695 Stage IVB Major Salivary Gland Cancer AJCC v7 9 57761 -NCIT:C35696 Stage IVC Major Salivary Gland Cancer AJCC v7 9 57762 -NCIT:C5899 Stage IV Major Salivary Gland Carcinoma with Metastasis 9 57763 -NCIT:C5900 Stage IV Major Salivary Gland Carcinoma without Metastasis 9 57764 -NCIT:C132779 Major Salivary Gland Cancer by AJCC v8 Stage 7 57765 -NCIT:C132781 Stage I Major Salivary Gland Cancer AJCC v8 8 57766 -NCIT:C132783 Stage 0 Major Salivary Gland Cancer AJCC v8 8 57767 -NCIT:C132785 Stage II Major Salivary Gland Cancer AJCC v8 8 57768 -NCIT:C132786 Stage III Major Salivary Gland Cancer AJCC v8 8 57769 -NCIT:C132787 Stage IV Major Salivary Gland Cancer AJCC v8 8 57770 -NCIT:C132788 Stage IVA Major Salivary Gland Cancer AJCC v8 9 57771 -NCIT:C132789 Stage IVB Major Salivary Gland Cancer AJCC v8 9 57772 -NCIT:C132790 Stage IVC Major Salivary Gland Cancer AJCC v8 9 57773 -NCIT:C181161 Major Salivary Gland Squamous Cell Carcinoma 7 57774 -NCIT:C5942 Parotid Gland Squamous Cell Carcinoma 8 57775 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 9 57776 -NCIT:C5943 Submandibular Gland Squamous Cell Carcinoma 8 57777 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 9 57778 -NCIT:C5903 Major Salivary Gland Adenocarcinoma 7 57779 -NCIT:C5901 Major Salivary Gland Acinic Cell Carcinoma 8 57780 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 57781 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 57782 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 57783 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 57784 -NCIT:C5940 Submandibular Gland Adenocarcinoma 8 57785 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 57786 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 57787 -NCIT:C5941 Parotid Gland Adenocarcinoma 8 57788 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 57789 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 57790 -NCIT:C5958 Sublingual Gland Adenocarcinoma 8 57791 -NCIT:C5905 Major Salivary Gland Adenoid Cystic Carcinoma 7 57792 -NCIT:C5935 Submandibular Gland Adenoid Cystic Carcinoma 8 57793 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 9 57794 -NCIT:C5937 Parotid Gland Adenoid Cystic Carcinoma 8 57795 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 9 57796 -NCIT:C5906 Major Salivary Gland Mucoepidermoid Carcinoma 7 57797 -NCIT:C5938 Parotid Gland Mucoepidermoid Carcinoma 8 57798 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 9 57799 -NCIT:C5939 Submandibular Gland Mucoepidermoid Carcinoma 8 57800 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 9 57801 -NCIT:C5975 Major Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 57802 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 57803 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 57804 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 57805 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 57806 -NCIT:C6791 Parotid Gland Carcinoma 7 57807 -NCIT:C153800 Recurrent Parotid Gland Carcinoma 8 57808 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 9 57809 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 9 57810 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 57811 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 9 57812 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 9 57813 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 9 57814 -NCIT:C5937 Parotid Gland Adenoid Cystic Carcinoma 8 57815 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 9 57816 -NCIT:C5938 Parotid Gland Mucoepidermoid Carcinoma 8 57817 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 9 57818 -NCIT:C5941 Parotid Gland Adenocarcinoma 8 57819 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 57820 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 57821 -NCIT:C5942 Parotid Gland Squamous Cell Carcinoma 8 57822 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 9 57823 -NCIT:C5946 Parotid Gland Undifferentiated Carcinoma 8 57824 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 9 57825 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 57826 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 57827 -NCIT:C8396 Submandibular Gland Carcinoma 7 57828 -NCIT:C153801 Recurrent Submandibular Gland Carcinoma 8 57829 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 9 57830 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 9 57831 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 57832 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 9 57833 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 9 57834 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 9 57835 -NCIT:C5935 Submandibular Gland Adenoid Cystic Carcinoma 8 57836 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 9 57837 -NCIT:C5939 Submandibular Gland Mucoepidermoid Carcinoma 8 57838 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 9 57839 -NCIT:C5940 Submandibular Gland Adenocarcinoma 8 57840 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 57841 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 57842 -NCIT:C5943 Submandibular Gland Squamous Cell Carcinoma 8 57843 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 9 57844 -NCIT:C5947 Submandibular Gland Undifferentiated Carcinoma 8 57845 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 9 57846 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 57847 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 57848 -NCIT:C8397 Sublingual Gland Carcinoma 7 57849 -NCIT:C5958 Sublingual Gland Adenocarcinoma 8 57850 -NCIT:C5981 Major Salivary Gland Non-Hodgkin Lymphoma 6 57851 -NCIT:C5951 Parotid Gland Non-Hodgkin Lymphoma 7 57852 -NCIT:C173716 Parotid Gland Follicular Lymphoma 8 57853 -NCIT:C173719 Parotid Gland Diffuse Large B-Cell Lymphoma 8 57854 -NCIT:C181210 Parotid Gland Mantle Cell Lymphoma 8 57855 -NCIT:C35687 Parotid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 8 57856 -NCIT:C5983 Major Salivary Gland Sarcoma 6 57857 -NCIT:C156280 Parotid Gland Sarcoma 7 57858 -NCIT:C156281 Parotid Gland Liposarcoma 8 57859 -NCIT:C5952 Parotid Gland Kaposi Sarcoma 8 57860 -NCIT:C8025 Malignant Mixed Tumor of the Salivary Gland 5 57861 -NCIT:C35831 Salivary Gland Carcinosarcoma 6 57862 -NCIT:C35832 Parotid Gland Carcinosarcoma 7 57863 -NCIT:C40410 Salivary Gland Carcinoma ex Pleomorphic Adenoma 6 57864 -NCIT:C5975 Major Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 57865 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 57866 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 57867 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 57868 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 57869 -NCIT:C5976 Minor Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 57870 -NCIT:C5902 Malignant Mixed Tumor of the Major Salivary Gland 6 57871 -NCIT:C5944 Malignant Submandibular Gland Mixed Tumor 7 57872 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 57873 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 57874 -NCIT:C5945 Malignant Parotid Gland Mixed Tumor 7 57875 -NCIT:C35832 Parotid Gland Carcinosarcoma 8 57876 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 57877 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 57878 -NCIT:C5975 Major Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 57879 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 57880 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 57881 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 57882 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 57883 -NCIT:C5955 Malignant Mixed Tumor of the Minor Salivary Gland 6 57884 -NCIT:C5976 Minor Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 57885 -NCIT:C9272 Salivary Gland Carcinoma 5 57886 -NCIT:C118824 Childhood Salivary Gland Carcinoma 6 57887 -NCIT:C190273 Childhood Salivary Gland Mucoepidermoid Carcinoma 7 57888 -NCIT:C190274 Childhood Salivary Gland Acinic Cell Carcinoma 7 57889 -NCIT:C118825 Adult Salivary Gland Carcinoma 6 57890 -NCIT:C158463 Metastatic Salivary Gland Carcinoma 6 57891 -NCIT:C158464 Locally Advanced Salivary Gland Carcinoma 7 57892 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 7 57893 -NCIT:C177723 Advanced Salivary Gland Carcinoma 7 57894 -NCIT:C5899 Stage IV Major Salivary Gland Carcinoma with Metastasis 7 57895 -NCIT:C173649 Salivary Gland Poorly Differentiated Carcinoma 6 57896 -NCIT:C173653 Salivary Gland Neuroendocrine Carcinoma 7 57897 -NCIT:C173650 Salivary Gland Large Cell Neuroendocrine Carcinoma 8 57898 -NCIT:C35703 Salivary Gland Small Cell Neuroendocrine Carcinoma 8 57899 -NCIT:C5956 Minor Salivary Gland Small Cell Neuroendocrine Carcinoma 9 57900 -NCIT:C35735 Salivary Gland Large Cell Carcinoma 7 57901 -NCIT:C173650 Salivary Gland Large Cell Neuroendocrine Carcinoma 8 57902 -NCIT:C174034 Unresectable Salivary Gland Carcinoma 6 57903 -NCIT:C172651 Unresectable Salivary Gland Squamous Cell Carcinoma 7 57904 -NCIT:C177722 Refractory Salivary Gland Carcinoma 6 57905 -NCIT:C181079 Hybrid Salivary Gland Carcinoma 6 57906 -NCIT:C35700 Salivary Gland Myoepithelial Carcinoma 6 57907 -NCIT:C35701 Salivary Gland Epithelial-Myoepithelial Carcinoma 6 57908 -NCIT:C35736 Salivary Gland Lymphoepithelial Carcinoma 6 57909 -NCIT:C35737 Salivary Gland Adenosquamous Carcinoma 6 57910 -NCIT:C40410 Salivary Gland Carcinoma ex Pleomorphic Adenoma 6 57911 -NCIT:C5975 Major Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 57912 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 57913 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 57914 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 57915 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 57916 -NCIT:C5976 Minor Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 57917 -NCIT:C5907 Major Salivary Gland Carcinoma 6 57918 -NCIT:C132778 Major Salivary Gland Cancer by AJCC v7 Stage 7 57919 -NCIT:C5895 Stage I Major Salivary Gland Cancer AJCC v7 8 57920 -NCIT:C5896 Stage II Major Salivary Gland Cancer AJCC v7 8 57921 -NCIT:C5897 Stage III Major Salivary Gland Cancer AJCC v7 8 57922 -NCIT:C5898 Stage IV Major Salivary Gland Cancer AJCC v7 8 57923 -NCIT:C35694 Stage IVA Major Salivary Gland Cancer AJCC v7 9 57924 -NCIT:C35695 Stage IVB Major Salivary Gland Cancer AJCC v7 9 57925 -NCIT:C35696 Stage IVC Major Salivary Gland Cancer AJCC v7 9 57926 -NCIT:C5899 Stage IV Major Salivary Gland Carcinoma with Metastasis 9 57927 -NCIT:C5900 Stage IV Major Salivary Gland Carcinoma without Metastasis 9 57928 -NCIT:C132779 Major Salivary Gland Cancer by AJCC v8 Stage 7 57929 -NCIT:C132781 Stage I Major Salivary Gland Cancer AJCC v8 8 57930 -NCIT:C132783 Stage 0 Major Salivary Gland Cancer AJCC v8 8 57931 -NCIT:C132785 Stage II Major Salivary Gland Cancer AJCC v8 8 57932 -NCIT:C132786 Stage III Major Salivary Gland Cancer AJCC v8 8 57933 -NCIT:C132787 Stage IV Major Salivary Gland Cancer AJCC v8 8 57934 -NCIT:C132788 Stage IVA Major Salivary Gland Cancer AJCC v8 9 57935 -NCIT:C132789 Stage IVB Major Salivary Gland Cancer AJCC v8 9 57936 -NCIT:C132790 Stage IVC Major Salivary Gland Cancer AJCC v8 9 57937 -NCIT:C181161 Major Salivary Gland Squamous Cell Carcinoma 7 57938 -NCIT:C5942 Parotid Gland Squamous Cell Carcinoma 8 57939 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 9 57940 -NCIT:C5943 Submandibular Gland Squamous Cell Carcinoma 8 57941 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 9 57942 -NCIT:C5903 Major Salivary Gland Adenocarcinoma 7 57943 -NCIT:C5901 Major Salivary Gland Acinic Cell Carcinoma 8 57944 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 57945 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 57946 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 57947 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 57948 -NCIT:C5940 Submandibular Gland Adenocarcinoma 8 57949 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 57950 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 57951 -NCIT:C5941 Parotid Gland Adenocarcinoma 8 57952 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 57953 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 57954 -NCIT:C5958 Sublingual Gland Adenocarcinoma 8 57955 -NCIT:C5905 Major Salivary Gland Adenoid Cystic Carcinoma 7 57956 -NCIT:C5935 Submandibular Gland Adenoid Cystic Carcinoma 8 57957 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 9 57958 -NCIT:C5937 Parotid Gland Adenoid Cystic Carcinoma 8 57959 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 9 57960 -NCIT:C5906 Major Salivary Gland Mucoepidermoid Carcinoma 7 57961 -NCIT:C5938 Parotid Gland Mucoepidermoid Carcinoma 8 57962 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 9 57963 -NCIT:C5939 Submandibular Gland Mucoepidermoid Carcinoma 8 57964 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 9 57965 -NCIT:C5975 Major Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 57966 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 57967 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 57968 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 57969 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 57970 -NCIT:C6791 Parotid Gland Carcinoma 7 57971 -NCIT:C153800 Recurrent Parotid Gland Carcinoma 8 57972 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 9 57973 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 9 57974 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 57975 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 9 57976 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 9 57977 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 9 57978 -NCIT:C5937 Parotid Gland Adenoid Cystic Carcinoma 8 57979 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 9 57980 -NCIT:C5938 Parotid Gland Mucoepidermoid Carcinoma 8 57981 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 9 57982 -NCIT:C5941 Parotid Gland Adenocarcinoma 8 57983 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 57984 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 57985 -NCIT:C5942 Parotid Gland Squamous Cell Carcinoma 8 57986 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 9 57987 -NCIT:C5946 Parotid Gland Undifferentiated Carcinoma 8 57988 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 9 57989 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 57990 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 57991 -NCIT:C8396 Submandibular Gland Carcinoma 7 57992 -NCIT:C153801 Recurrent Submandibular Gland Carcinoma 8 57993 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 9 57994 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 9 57995 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 57996 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 9 57997 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 9 57998 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 9 57999 -NCIT:C5935 Submandibular Gland Adenoid Cystic Carcinoma 8 58000 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 9 58001 -NCIT:C5939 Submandibular Gland Mucoepidermoid Carcinoma 8 58002 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 9 58003 -NCIT:C5940 Submandibular Gland Adenocarcinoma 8 58004 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 58005 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 58006 -NCIT:C5943 Submandibular Gland Squamous Cell Carcinoma 8 58007 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 9 58008 -NCIT:C5947 Submandibular Gland Undifferentiated Carcinoma 8 58009 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 9 58010 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 58011 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 58012 -NCIT:C8397 Sublingual Gland Carcinoma 7 58013 -NCIT:C5958 Sublingual Gland Adenocarcinoma 8 58014 -NCIT:C5908 Salivary Gland Mucoepidermoid Carcinoma 6 58015 -NCIT:C190273 Childhood Salivary Gland Mucoepidermoid Carcinoma 7 58016 -NCIT:C5906 Major Salivary Gland Mucoepidermoid Carcinoma 7 58017 -NCIT:C5938 Parotid Gland Mucoepidermoid Carcinoma 8 58018 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 9 58019 -NCIT:C5939 Submandibular Gland Mucoepidermoid Carcinoma 8 58020 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 9 58021 -NCIT:C5953 Minor Salivary Gland Mucoepidermoid Carcinoma 7 58022 -NCIT:C8015 Low Grade Salivary Gland Mucoepidermoid Carcinoma 7 58023 -NCIT:C8017 Intermediate Grade Salivary Gland Mucoepidermoid Carcinoma 7 58024 -NCIT:C8019 High Grade Salivary Gland Mucoepidermoid Carcinoma 7 58025 -NCIT:C5957 Minor Salivary Gland Carcinoma 6 58026 -NCIT:C5936 Minor Salivary Gland Adenoid Cystic Carcinoma 7 58027 -NCIT:C5948 Minor Salivary Gland Adenocarcinoma 7 58028 -NCIT:C153612 Recurrent Minor Salivary Gland Adenocarcinoma 8 58029 -NCIT:C160974 Cribriform Adenocarcinoma of Minor Salivary Gland 8 58030 -NCIT:C6243 Minor Salivary Gland Acinic Cell Carcinoma 8 58031 -NCIT:C5953 Minor Salivary Gland Mucoepidermoid Carcinoma 7 58032 -NCIT:C5954 Minor Salivary Gland Undifferentiated Carcinoma 7 58033 -NCIT:C5956 Minor Salivary Gland Small Cell Neuroendocrine Carcinoma 7 58034 -NCIT:C5959 Minor Salivary Gland Squamous Cell Carcinoma 7 58035 -NCIT:C5976 Minor Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 58036 -NCIT:C62191 Salivary Gland Clear Cell Carcinoma 6 58037 -NCIT:C7926 Recurrent Salivary Gland Carcinoma 6 58038 -NCIT:C153611 Recurrent Salivary Duct Carcinoma 7 58039 -NCIT:C153612 Recurrent Minor Salivary Gland Adenocarcinoma 7 58040 -NCIT:C153800 Recurrent Parotid Gland Carcinoma 7 58041 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 8 58042 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 8 58043 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 58044 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 8 58045 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 58046 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 8 58047 -NCIT:C153801 Recurrent Submandibular Gland Carcinoma 7 58048 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 8 58049 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 8 58050 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 58051 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 8 58052 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 58053 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 8 58054 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 58055 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 58056 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 58057 -NCIT:C7991 Salivary Gland Squamous Cell Carcinoma 6 58058 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 7 58059 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 58060 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 58061 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 58062 -NCIT:C172651 Unresectable Salivary Gland Squamous Cell Carcinoma 7 58063 -NCIT:C181161 Major Salivary Gland Squamous Cell Carcinoma 7 58064 -NCIT:C5942 Parotid Gland Squamous Cell Carcinoma 8 58065 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 9 58066 -NCIT:C5943 Submandibular Gland Squamous Cell Carcinoma 8 58067 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 9 58068 -NCIT:C5959 Minor Salivary Gland Squamous Cell Carcinoma 7 58069 -NCIT:C8022 Salivary Gland Poorly Differentiated Squamous Cell Carcinoma 7 58070 -NCIT:C8012 Low Grade Salivary Gland Carcinoma 6 58071 -NCIT:C123384 Salivary Gland Secretory Carcinoma 7 58072 -NCIT:C35702 Salivary Gland Polymorphous Adenocarcinoma 7 58073 -NCIT:C173576 Oropharyngeal Polymorphous Adenocarcinoma 8 58074 -NCIT:C62192 Salivary Gland Intraductal Carcinoma 7 58075 -NCIT:C8015 Low Grade Salivary Gland Mucoepidermoid Carcinoma 7 58076 -NCIT:C8018 High Grade Salivary Gland Carcinoma 6 58077 -NCIT:C5904 Salivary Duct Carcinoma 7 58078 -NCIT:C153611 Recurrent Salivary Duct Carcinoma 8 58079 -NCIT:C62194 Salivary Gland Oncocytic Carcinoma 7 58080 -NCIT:C8019 High Grade Salivary Gland Mucoepidermoid Carcinoma 7 58081 -NCIT:C8021 Salivary Gland Adenocarcinoma 6 58082 -NCIT:C123384 Salivary Gland Secretory Carcinoma 7 58083 -NCIT:C173648 Salivary Gland Sebaceous Carcinoma 7 58084 -NCIT:C35702 Salivary Gland Polymorphous Adenocarcinoma 7 58085 -NCIT:C173576 Oropharyngeal Polymorphous Adenocarcinoma 8 58086 -NCIT:C3678 Salivary Gland Basal Cell Adenocarcinoma 7 58087 -NCIT:C5903 Major Salivary Gland Adenocarcinoma 7 58088 -NCIT:C5901 Major Salivary Gland Acinic Cell Carcinoma 8 58089 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 58090 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 58091 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 58092 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 58093 -NCIT:C5940 Submandibular Gland Adenocarcinoma 8 58094 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 58095 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 58096 -NCIT:C5941 Parotid Gland Adenocarcinoma 8 58097 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 58098 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 58099 -NCIT:C5958 Sublingual Gland Adenocarcinoma 8 58100 -NCIT:C5904 Salivary Duct Carcinoma 7 58101 -NCIT:C153611 Recurrent Salivary Duct Carcinoma 8 58102 -NCIT:C5948 Minor Salivary Gland Adenocarcinoma 7 58103 -NCIT:C153612 Recurrent Minor Salivary Gland Adenocarcinoma 8 58104 -NCIT:C160974 Cribriform Adenocarcinoma of Minor Salivary Gland 8 58105 -NCIT:C6243 Minor Salivary Gland Acinic Cell Carcinoma 8 58106 -NCIT:C5980 Salivary Gland Cystadenocarcinoma 7 58107 -NCIT:C62192 Salivary Gland Intraductal Carcinoma 7 58108 -NCIT:C62193 Salivary Gland Mucinous Adenocarcinoma 7 58109 -NCIT:C62194 Salivary Gland Oncocytic Carcinoma 7 58110 -NCIT:C62196 Salivary Gland Adenocarcinoma, Not Otherwise Specified 7 58111 -NCIT:C8013 Salivary Gland Acinic Cell Carcinoma 7 58112 -NCIT:C190274 Childhood Salivary Gland Acinic Cell Carcinoma 8 58113 -NCIT:C5901 Major Salivary Gland Acinic Cell Carcinoma 8 58114 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 58115 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 58116 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 58117 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 58118 -NCIT:C6243 Minor Salivary Gland Acinic Cell Carcinoma 8 58119 -NCIT:C8024 Salivary Gland Undifferentiated Carcinoma 6 58120 -NCIT:C5946 Parotid Gland Undifferentiated Carcinoma 7 58121 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 8 58122 -NCIT:C5947 Submandibular Gland Undifferentiated Carcinoma 7 58123 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 8 58124 -NCIT:C5954 Minor Salivary Gland Undifferentiated Carcinoma 7 58125 -NCIT:C8026 Salivary Gland Adenoid Cystic Carcinoma 6 58126 -NCIT:C5905 Major Salivary Gland Adenoid Cystic Carcinoma 7 58127 -NCIT:C5935 Submandibular Gland Adenoid Cystic Carcinoma 8 58128 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 9 58129 -NCIT:C5937 Parotid Gland Adenoid Cystic Carcinoma 8 58130 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 9 58131 -NCIT:C5936 Minor Salivary Gland Adenoid Cystic Carcinoma 7 58132 -NCIT:C40393 Salivary Gland Myoepithelial Tumor 4 58133 -NCIT:C35700 Salivary Gland Myoepithelial Carcinoma 5 58134 -NCIT:C5978 Salivary Gland Myoepithelioma 5 58135 -NCIT:C4407 Major Salivary Gland Neoplasm 4 58136 -NCIT:C3314 Parotid Gland Neoplasm 5 58137 -NCIT:C3525 Malignant Parotid Gland Neoplasm 6 58138 -NCIT:C156280 Parotid Gland Sarcoma 7 58139 -NCIT:C156281 Parotid Gland Liposarcoma 8 58140 -NCIT:C5952 Parotid Gland Kaposi Sarcoma 8 58141 -NCIT:C5945 Malignant Parotid Gland Mixed Tumor 7 58142 -NCIT:C35832 Parotid Gland Carcinosarcoma 8 58143 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 58144 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 58145 -NCIT:C5951 Parotid Gland Non-Hodgkin Lymphoma 7 58146 -NCIT:C173716 Parotid Gland Follicular Lymphoma 8 58147 -NCIT:C173719 Parotid Gland Diffuse Large B-Cell Lymphoma 8 58148 -NCIT:C181210 Parotid Gland Mantle Cell Lymphoma 8 58149 -NCIT:C35687 Parotid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 8 58150 -NCIT:C6791 Parotid Gland Carcinoma 7 58151 -NCIT:C153800 Recurrent Parotid Gland Carcinoma 8 58152 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 9 58153 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 9 58154 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 58155 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 9 58156 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 9 58157 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 9 58158 -NCIT:C5937 Parotid Gland Adenoid Cystic Carcinoma 8 58159 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 9 58160 -NCIT:C5938 Parotid Gland Mucoepidermoid Carcinoma 8 58161 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 9 58162 -NCIT:C5941 Parotid Gland Adenocarcinoma 8 58163 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 58164 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 58165 -NCIT:C5942 Parotid Gland Squamous Cell Carcinoma 8 58166 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 9 58167 -NCIT:C5946 Parotid Gland Undifferentiated Carcinoma 8 58168 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 9 58169 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 58170 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 58171 -NCIT:C35416 Mixed Tumor of the Parotid Gland 6 58172 -NCIT:C4650 Parotid Gland Pleomorphic Adenoma 7 58173 -NCIT:C5945 Malignant Parotid Gland Mixed Tumor 7 58174 -NCIT:C35832 Parotid Gland Carcinosarcoma 8 58175 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 58176 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 58177 -NCIT:C4770 Benign Parotid Gland Neoplasm 6 58178 -NCIT:C173684 Parotid Gland Sialolipoma 7 58179 -NCIT:C173688 Parotid Gland Nodular Fasciitis 7 58180 -NCIT:C4650 Parotid Gland Pleomorphic Adenoma 7 58181 -NCIT:C5393 Parotid Gland Lymphangioma 7 58182 -NCIT:C5397 Parotid Gland Hemangioma 7 58183 -NCIT:C5949 Parotid Gland Sebaceous Lymphadenoma 7 58184 -NCIT:C5982 Parotid Gland Lipoma 7 58185 -NCIT:C66865 Parotid Gland Warthin Tumor 7 58186 -NCIT:C6847 Parotid Gland Monomorphic Adenoma 7 58187 -NCIT:C3392 Sublingual Gland Neoplasm 5 58188 -NCIT:C3527 Malignant Sublingual Gland Neoplasm 6 58189 -NCIT:C8397 Sublingual Gland Carcinoma 7 58190 -NCIT:C5958 Sublingual Gland Adenocarcinoma 8 58191 -NCIT:C4601 Benign Sublingual Gland Neoplasm 6 58192 -NCIT:C3393 Submandibular Gland Neoplasm 5 58193 -NCIT:C3526 Malignant Submandibular Gland Neoplasm 6 58194 -NCIT:C5944 Malignant Submandibular Gland Mixed Tumor 7 58195 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 58196 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 58197 -NCIT:C8396 Submandibular Gland Carcinoma 7 58198 -NCIT:C153801 Recurrent Submandibular Gland Carcinoma 8 58199 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 9 58200 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 9 58201 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 58202 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 9 58203 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 9 58204 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 9 58205 -NCIT:C5935 Submandibular Gland Adenoid Cystic Carcinoma 8 58206 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 9 58207 -NCIT:C5939 Submandibular Gland Mucoepidermoid Carcinoma 8 58208 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 9 58209 -NCIT:C5940 Submandibular Gland Adenocarcinoma 8 58210 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 58211 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 58212 -NCIT:C5943 Submandibular Gland Squamous Cell Carcinoma 8 58213 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 9 58214 -NCIT:C5947 Submandibular Gland Undifferentiated Carcinoma 8 58215 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 9 58216 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 58217 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 58218 -NCIT:C4891 Benign Submandibular Gland Neoplasm 6 58219 -NCIT:C4762 Malignant Major Salivary Gland Neoplasm 5 58220 -NCIT:C3525 Malignant Parotid Gland Neoplasm 6 58221 -NCIT:C156280 Parotid Gland Sarcoma 7 58222 -NCIT:C156281 Parotid Gland Liposarcoma 8 58223 -NCIT:C5952 Parotid Gland Kaposi Sarcoma 8 58224 -NCIT:C5945 Malignant Parotid Gland Mixed Tumor 7 58225 -NCIT:C35832 Parotid Gland Carcinosarcoma 8 58226 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 58227 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 58228 -NCIT:C5951 Parotid Gland Non-Hodgkin Lymphoma 7 58229 -NCIT:C173716 Parotid Gland Follicular Lymphoma 8 58230 -NCIT:C173719 Parotid Gland Diffuse Large B-Cell Lymphoma 8 58231 -NCIT:C181210 Parotid Gland Mantle Cell Lymphoma 8 58232 -NCIT:C35687 Parotid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 8 58233 -NCIT:C6791 Parotid Gland Carcinoma 7 58234 -NCIT:C153800 Recurrent Parotid Gland Carcinoma 8 58235 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 9 58236 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 9 58237 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 58238 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 9 58239 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 9 58240 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 9 58241 -NCIT:C5937 Parotid Gland Adenoid Cystic Carcinoma 8 58242 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 9 58243 -NCIT:C5938 Parotid Gland Mucoepidermoid Carcinoma 8 58244 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 9 58245 -NCIT:C5941 Parotid Gland Adenocarcinoma 8 58246 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 58247 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 58248 -NCIT:C5942 Parotid Gland Squamous Cell Carcinoma 8 58249 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 9 58250 -NCIT:C5946 Parotid Gland Undifferentiated Carcinoma 8 58251 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 9 58252 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 58253 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 58254 -NCIT:C3526 Malignant Submandibular Gland Neoplasm 6 58255 -NCIT:C5944 Malignant Submandibular Gland Mixed Tumor 7 58256 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 58257 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 58258 -NCIT:C8396 Submandibular Gland Carcinoma 7 58259 -NCIT:C153801 Recurrent Submandibular Gland Carcinoma 8 58260 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 9 58261 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 9 58262 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 58263 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 9 58264 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 9 58265 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 9 58266 -NCIT:C5935 Submandibular Gland Adenoid Cystic Carcinoma 8 58267 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 9 58268 -NCIT:C5939 Submandibular Gland Mucoepidermoid Carcinoma 8 58269 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 9 58270 -NCIT:C5940 Submandibular Gland Adenocarcinoma 8 58271 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 58272 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 58273 -NCIT:C5943 Submandibular Gland Squamous Cell Carcinoma 8 58274 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 9 58275 -NCIT:C5947 Submandibular Gland Undifferentiated Carcinoma 8 58276 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 9 58277 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 58278 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 58279 -NCIT:C3527 Malignant Sublingual Gland Neoplasm 6 58280 -NCIT:C8397 Sublingual Gland Carcinoma 7 58281 -NCIT:C5958 Sublingual Gland Adenocarcinoma 8 58282 -NCIT:C5902 Malignant Mixed Tumor of the Major Salivary Gland 6 58283 -NCIT:C5944 Malignant Submandibular Gland Mixed Tumor 7 58284 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 58285 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 58286 -NCIT:C5945 Malignant Parotid Gland Mixed Tumor 7 58287 -NCIT:C35832 Parotid Gland Carcinosarcoma 8 58288 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 58289 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 58290 -NCIT:C5975 Major Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 58291 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 58292 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 58293 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 58294 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 58295 -NCIT:C5907 Major Salivary Gland Carcinoma 6 58296 -NCIT:C132778 Major Salivary Gland Cancer by AJCC v7 Stage 7 58297 -NCIT:C5895 Stage I Major Salivary Gland Cancer AJCC v7 8 58298 -NCIT:C5896 Stage II Major Salivary Gland Cancer AJCC v7 8 58299 -NCIT:C5897 Stage III Major Salivary Gland Cancer AJCC v7 8 58300 -NCIT:C5898 Stage IV Major Salivary Gland Cancer AJCC v7 8 58301 -NCIT:C35694 Stage IVA Major Salivary Gland Cancer AJCC v7 9 58302 -NCIT:C35695 Stage IVB Major Salivary Gland Cancer AJCC v7 9 58303 -NCIT:C35696 Stage IVC Major Salivary Gland Cancer AJCC v7 9 58304 -NCIT:C5899 Stage IV Major Salivary Gland Carcinoma with Metastasis 9 58305 -NCIT:C5900 Stage IV Major Salivary Gland Carcinoma without Metastasis 9 58306 -NCIT:C132779 Major Salivary Gland Cancer by AJCC v8 Stage 7 58307 -NCIT:C132781 Stage I Major Salivary Gland Cancer AJCC v8 8 58308 -NCIT:C132783 Stage 0 Major Salivary Gland Cancer AJCC v8 8 58309 -NCIT:C132785 Stage II Major Salivary Gland Cancer AJCC v8 8 58310 -NCIT:C132786 Stage III Major Salivary Gland Cancer AJCC v8 8 58311 -NCIT:C132787 Stage IV Major Salivary Gland Cancer AJCC v8 8 58312 -NCIT:C132788 Stage IVA Major Salivary Gland Cancer AJCC v8 9 58313 -NCIT:C132789 Stage IVB Major Salivary Gland Cancer AJCC v8 9 58314 -NCIT:C132790 Stage IVC Major Salivary Gland Cancer AJCC v8 9 58315 -NCIT:C181161 Major Salivary Gland Squamous Cell Carcinoma 7 58316 -NCIT:C5942 Parotid Gland Squamous Cell Carcinoma 8 58317 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 9 58318 -NCIT:C5943 Submandibular Gland Squamous Cell Carcinoma 8 58319 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 9 58320 -NCIT:C5903 Major Salivary Gland Adenocarcinoma 7 58321 -NCIT:C5901 Major Salivary Gland Acinic Cell Carcinoma 8 58322 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 58323 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 58324 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 58325 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 58326 -NCIT:C5940 Submandibular Gland Adenocarcinoma 8 58327 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 58328 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 58329 -NCIT:C5941 Parotid Gland Adenocarcinoma 8 58330 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 58331 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 58332 -NCIT:C5958 Sublingual Gland Adenocarcinoma 8 58333 -NCIT:C5905 Major Salivary Gland Adenoid Cystic Carcinoma 7 58334 -NCIT:C5935 Submandibular Gland Adenoid Cystic Carcinoma 8 58335 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 9 58336 -NCIT:C5937 Parotid Gland Adenoid Cystic Carcinoma 8 58337 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 9 58338 -NCIT:C5906 Major Salivary Gland Mucoepidermoid Carcinoma 7 58339 -NCIT:C5938 Parotid Gland Mucoepidermoid Carcinoma 8 58340 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 9 58341 -NCIT:C5939 Submandibular Gland Mucoepidermoid Carcinoma 8 58342 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 9 58343 -NCIT:C5975 Major Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 58344 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 58345 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 58346 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 58347 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 58348 -NCIT:C6791 Parotid Gland Carcinoma 7 58349 -NCIT:C153800 Recurrent Parotid Gland Carcinoma 8 58350 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 9 58351 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 9 58352 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 58353 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 9 58354 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 9 58355 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 9 58356 -NCIT:C5937 Parotid Gland Adenoid Cystic Carcinoma 8 58357 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 9 58358 -NCIT:C5938 Parotid Gland Mucoepidermoid Carcinoma 8 58359 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 9 58360 -NCIT:C5941 Parotid Gland Adenocarcinoma 8 58361 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 58362 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 58363 -NCIT:C5942 Parotid Gland Squamous Cell Carcinoma 8 58364 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 9 58365 -NCIT:C5946 Parotid Gland Undifferentiated Carcinoma 8 58366 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 9 58367 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 58368 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 58369 -NCIT:C8396 Submandibular Gland Carcinoma 7 58370 -NCIT:C153801 Recurrent Submandibular Gland Carcinoma 8 58371 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 9 58372 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 9 58373 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 58374 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 9 58375 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 9 58376 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 9 58377 -NCIT:C5935 Submandibular Gland Adenoid Cystic Carcinoma 8 58378 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 9 58379 -NCIT:C5939 Submandibular Gland Mucoepidermoid Carcinoma 8 58380 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 9 58381 -NCIT:C5940 Submandibular Gland Adenocarcinoma 8 58382 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 58383 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 58384 -NCIT:C5943 Submandibular Gland Squamous Cell Carcinoma 8 58385 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 9 58386 -NCIT:C5947 Submandibular Gland Undifferentiated Carcinoma 8 58387 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 9 58388 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 58389 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 58390 -NCIT:C8397 Sublingual Gland Carcinoma 7 58391 -NCIT:C5958 Sublingual Gland Adenocarcinoma 8 58392 -NCIT:C5981 Major Salivary Gland Non-Hodgkin Lymphoma 6 58393 -NCIT:C5951 Parotid Gland Non-Hodgkin Lymphoma 7 58394 -NCIT:C173716 Parotid Gland Follicular Lymphoma 8 58395 -NCIT:C173719 Parotid Gland Diffuse Large B-Cell Lymphoma 8 58396 -NCIT:C181210 Parotid Gland Mantle Cell Lymphoma 8 58397 -NCIT:C35687 Parotid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 8 58398 -NCIT:C5983 Major Salivary Gland Sarcoma 6 58399 -NCIT:C156280 Parotid Gland Sarcoma 7 58400 -NCIT:C156281 Parotid Gland Liposarcoma 8 58401 -NCIT:C5952 Parotid Gland Kaposi Sarcoma 8 58402 -NCIT:C4771 Benign Major Salivary Gland Neoplasm 5 58403 -NCIT:C4601 Benign Sublingual Gland Neoplasm 6 58404 -NCIT:C4770 Benign Parotid Gland Neoplasm 6 58405 -NCIT:C173684 Parotid Gland Sialolipoma 7 58406 -NCIT:C173688 Parotid Gland Nodular Fasciitis 7 58407 -NCIT:C4650 Parotid Gland Pleomorphic Adenoma 7 58408 -NCIT:C5393 Parotid Gland Lymphangioma 7 58409 -NCIT:C5397 Parotid Gland Hemangioma 7 58410 -NCIT:C5949 Parotid Gland Sebaceous Lymphadenoma 7 58411 -NCIT:C5982 Parotid Gland Lipoma 7 58412 -NCIT:C66865 Parotid Gland Warthin Tumor 7 58413 -NCIT:C6847 Parotid Gland Monomorphic Adenoma 7 58414 -NCIT:C4891 Benign Submandibular Gland Neoplasm 6 58415 -NCIT:C4409 Minor Salivary Gland Neoplasm 4 58416 -NCIT:C180880 Minor Salivary Gland Intraductal Papillary Neoplasm 5 58417 -NCIT:C180881 Minor Salivary Gland Intraductal Papillary-Mucinous Neoplasm 6 58418 -NCIT:C4410 Malignant Minor Salivary Gland Neoplasm 5 58419 -NCIT:C5955 Malignant Mixed Tumor of the Minor Salivary Gland 6 58420 -NCIT:C5976 Minor Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 58421 -NCIT:C5957 Minor Salivary Gland Carcinoma 6 58422 -NCIT:C5936 Minor Salivary Gland Adenoid Cystic Carcinoma 7 58423 -NCIT:C5948 Minor Salivary Gland Adenocarcinoma 7 58424 -NCIT:C153612 Recurrent Minor Salivary Gland Adenocarcinoma 8 58425 -NCIT:C160974 Cribriform Adenocarcinoma of Minor Salivary Gland 8 58426 -NCIT:C6243 Minor Salivary Gland Acinic Cell Carcinoma 8 58427 -NCIT:C5953 Minor Salivary Gland Mucoepidermoid Carcinoma 7 58428 -NCIT:C5954 Minor Salivary Gland Undifferentiated Carcinoma 7 58429 -NCIT:C5956 Minor Salivary Gland Small Cell Neuroendocrine Carcinoma 7 58430 -NCIT:C5959 Minor Salivary Gland Squamous Cell Carcinoma 7 58431 -NCIT:C5976 Minor Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 58432 -NCIT:C4411 Benign Minor Salivary Gland Neoplasm 5 58433 -NCIT:C4600 Benign Salivary Gland Neoplasm 4 58434 -NCIT:C173659 Salivary Gland Lymphadenoma 5 58435 -NCIT:C35555 Salivary Gland Sebaceous Lymphadenoma 6 58436 -NCIT:C5949 Parotid Gland Sebaceous Lymphadenoma 7 58437 -NCIT:C173680 Salivary Gland Hemangioma 5 58438 -NCIT:C5397 Parotid Gland Hemangioma 6 58439 -NCIT:C173681 Salivary Gland Lipoma 5 58440 -NCIT:C5982 Parotid Gland Lipoma 6 58441 -NCIT:C173682 Sialolipoma 5 58442 -NCIT:C173684 Parotid Gland Sialolipoma 6 58443 -NCIT:C173687 Salivary Gland Nodular Fasciitis 5 58444 -NCIT:C173688 Parotid Gland Nodular Fasciitis 6 58445 -NCIT:C184295 Salivary Gland Adenoma 5 58446 -NCIT:C3686 Salivary Gland Monomorphic Adenoma 6 58447 -NCIT:C35738 Salivary Gland Sebaceous Adenoma 7 58448 -NCIT:C5932 Salivary Gland Oncocytoma 7 58449 -NCIT:C5950 Basal Cell Adenoma 7 58450 -NCIT:C5979 Salivary Gland Canalicular Adenoma 7 58451 -NCIT:C6845 Oral Cavity Monomorphic Adenoma 7 58452 -NCIT:C6844 Hard Palate Monomorphic Adenoma 8 58453 -NCIT:C6847 Parotid Gland Monomorphic Adenoma 7 58454 -NCIT:C40409 Salivary Gland Pleomorphic Adenoma 6 58455 -NCIT:C173114 Sinonasal Pleomorphic Adenoma 7 58456 -NCIT:C173412 Laryngeal Pleomorphic Adenoma 7 58457 -NCIT:C173575 Oropharyngeal Pleomorphic Adenoma 7 58458 -NCIT:C190161 Childhood Salivary Gland Pleomorphic Adenoma 7 58459 -NCIT:C35759 Metastasizing Pleomorphic Adenoma of the Salivary Gland 7 58460 -NCIT:C4650 Parotid Gland Pleomorphic Adenoma 7 58461 -NCIT:C6242 Oral Cavity Pleomorphic Adenoma 7 58462 -NCIT:C6211 Soft Palate Pleomorphic Adenoma 8 58463 -NCIT:C6212 Hard Palate Pleomorphic Adenoma 8 58464 -NCIT:C66865 Parotid Gland Warthin Tumor 6 58465 -NCIT:C35833 Salivary Gland Cystadenoma 5 58466 -NCIT:C35839 Salivary Gland Ductal Papilloma 5 58467 -NCIT:C35834 Salivary Gland Intraductal Papilloma 6 58468 -NCIT:C35835 Salivary Gland Inverted Ductal Papilloma 6 58469 -NCIT:C35836 Salivary Gland Sialadenoma Papilliferum 6 58470 -NCIT:C4411 Benign Minor Salivary Gland Neoplasm 5 58471 -NCIT:C4771 Benign Major Salivary Gland Neoplasm 5 58472 -NCIT:C4601 Benign Sublingual Gland Neoplasm 6 58473 -NCIT:C4770 Benign Parotid Gland Neoplasm 6 58474 -NCIT:C173684 Parotid Gland Sialolipoma 7 58475 -NCIT:C173688 Parotid Gland Nodular Fasciitis 7 58476 -NCIT:C4650 Parotid Gland Pleomorphic Adenoma 7 58477 -NCIT:C5393 Parotid Gland Lymphangioma 7 58478 -NCIT:C5397 Parotid Gland Hemangioma 7 58479 -NCIT:C5949 Parotid Gland Sebaceous Lymphadenoma 7 58480 -NCIT:C5982 Parotid Gland Lipoma 7 58481 -NCIT:C66865 Parotid Gland Warthin Tumor 7 58482 -NCIT:C6847 Parotid Gland Monomorphic Adenoma 7 58483 -NCIT:C4891 Benign Submandibular Gland Neoplasm 6 58484 -NCIT:C5978 Salivary Gland Myoepithelioma 5 58485 -NCIT:C97135 Sclerosing Polycystic Adenosis 5 58486 -NCIT:C3375 Skull Neoplasm 3 58487 -NCIT:C155790 Malignant Skull Neoplasm 4 58488 -NCIT:C155791 Malignant Skull Base Neoplasm 5 58489 -NCIT:C155772 Sellar Neuroblastoma 6 58490 -NCIT:C155786 Metastatic Malignant Neoplasm in the Sellar Region 6 58491 -NCIT:C6805 Metastatic Malignant Neoplasm in the Pituitary Gland 7 58492 -NCIT:C155802 Sellar Germinoma 6 58493 -NCIT:C155803 Suprasellar Germinoma 7 58494 -NCIT:C155804 Sellar Yolk Sac Tumor 6 58495 -NCIT:C155805 Sellar Embryonal Carcinoma 6 58496 -NCIT:C155806 Sellar Choriocarcinoma 6 58497 -NCIT:C155810 Sellar Teratoma with Malignant Transformation 6 58498 -NCIT:C155811 Sellar Mixed Germ Cell Tumor 6 58499 -NCIT:C4769 Malignant Pituitary Gland Neoplasm 6 58500 -NCIT:C155304 Pituitary Gland Blastoma 7 58501 -NCIT:C155796 Pituitary Gland Non-Hodgkin Lymphoma 7 58502 -NCIT:C155797 Pituitary Gland Diffuse Large B-Cell Lymphoma 8 58503 -NCIT:C4536 Metastatic Pituitary Neuroendocrine Tumor 7 58504 -NCIT:C163956 Locally Advanced Pituitary Neuroendocrine Tumor 8 58505 -NCIT:C163959 Metastatic Unresectable Pituitary Neuroendocrine Tumor 8 58506 -NCIT:C5962 Metastatic Lactotroph Pituitary Neuroendocrine Tumor 8 58507 -NCIT:C5963 Metastatic Somatotroph Pituitary Neuroendocrine Tumor 8 58508 -NCIT:C5964 Metastatic Corticotroph Pituitary Neuroendocrine Tumor 8 58509 -NCIT:C5965 Metastatic Thyrotroph Pituitary Neuroendocrine Tumor 8 58510 -NCIT:C6805 Metastatic Malignant Neoplasm in the Pituitary Gland 7 58511 -NCIT:C5453 Skull Base Chordoma 6 58512 -NCIT:C155781 Sellar Chordoma 7 58513 -NCIT:C155782 Sellar Chondroid Chordoma 8 58514 -NCIT:C155783 Sellar Dedifferentiated Chordoma 8 58515 -NCIT:C5412 Clivus Chordoma 7 58516 -NCIT:C5426 Clivus Chondroid Chordoma 8 58517 -NCIT:C173841 Maxillofacial Sarcoma 5 58518 -NCIT:C173842 Maxillofacial Chondrosarcoma 6 58519 -NCIT:C173843 Maxillofacial Mesenchymal Chondrosarcoma 7 58520 -NCIT:C173844 Maxillofacial Osteosarcoma 6 58521 -NCIT:C155792 Benign Skull Neoplasm 4 58522 -NCIT:C129569 Skull Osteoma 5 58523 -NCIT:C173894 Maxillofacial Osteoma 6 58524 -NCIT:C155793 Benign Skull Base Neoplasm 5 58525 -NCIT:C155768 Sellar Neurocytoma 6 58526 -NCIT:C155780 Sellar Schwannoma 6 58527 -NCIT:C155808 Sellar Mature Teratoma 6 58528 -NCIT:C2964 Craniopharyngioma 6 58529 -NCIT:C148076 Unresectable Craniopharyngioma 7 58530 -NCIT:C148077 Recurrent Craniopharyngioma 7 58531 -NCIT:C162612 Recurrent Adamantinomatous Craniopharyngioma 8 58532 -NCIT:C4010 Adult Craniopharyngioma 7 58533 -NCIT:C188949 Adult Adamantinomatous Craniopharyngioma 8 58534 -NCIT:C4725 Papillary Craniopharyngioma 7 58535 -NCIT:C4726 Adamantinomatous Craniopharyngioma 7 58536 -NCIT:C162612 Recurrent Adamantinomatous Craniopharyngioma 8 58537 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 8 58538 -NCIT:C188949 Adult Adamantinomatous Craniopharyngioma 8 58539 -NCIT:C7816 Childhood Craniopharyngioma 7 58540 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 8 58541 -NCIT:C4782 Benign Pituitary Gland Neoplasm 6 58542 -NCIT:C173820 Ossifying Fibroma 5 58543 -NCIT:C190158 Childhood Ossifying Fibroma 6 58544 -NCIT:C8422 Cemento-Ossifying Fibroma 6 58545 -NCIT:C173892 Benign Maxillofacial Neoplasm 5 58546 -NCIT:C173893 Maxillofacial Chondroma 6 58547 -NCIT:C173894 Maxillofacial Osteoma 6 58548 -NCIT:C173895 Maxillofacial Chondroblastoma 6 58549 -NCIT:C173897 Maxillofacial Chondromyxoid Fibroma 6 58550 -NCIT:C173898 Maxillofacial Osteoid Osteoma 6 58551 -NCIT:C173899 Maxillofacial Osteoblastoma 6 58552 -NCIT:C173900 Maxillofacial Desmoplastic Fibroma 6 58553 -NCIT:C173845 Maxillofacial Neoplasm 4 58554 -NCIT:C173841 Maxillofacial Sarcoma 5 58555 -NCIT:C173842 Maxillofacial Chondrosarcoma 6 58556 -NCIT:C173843 Maxillofacial Mesenchymal Chondrosarcoma 7 58557 -NCIT:C173844 Maxillofacial Osteosarcoma 6 58558 -NCIT:C173892 Benign Maxillofacial Neoplasm 5 58559 -NCIT:C173893 Maxillofacial Chondroma 6 58560 -NCIT:C173894 Maxillofacial Osteoma 6 58561 -NCIT:C173895 Maxillofacial Chondroblastoma 6 58562 -NCIT:C173897 Maxillofacial Chondromyxoid Fibroma 6 58563 -NCIT:C173898 Maxillofacial Osteoid Osteoma 6 58564 -NCIT:C173899 Maxillofacial Osteoblastoma 6 58565 -NCIT:C173900 Maxillofacial Desmoplastic Fibroma 6 58566 -NCIT:C4676 Skull Base Neoplasm 4 58567 -NCIT:C155791 Malignant Skull Base Neoplasm 5 58568 -NCIT:C155772 Sellar Neuroblastoma 6 58569 -NCIT:C155786 Metastatic Malignant Neoplasm in the Sellar Region 6 58570 -NCIT:C6805 Metastatic Malignant Neoplasm in the Pituitary Gland 7 58571 -NCIT:C155802 Sellar Germinoma 6 58572 -NCIT:C155803 Suprasellar Germinoma 7 58573 -NCIT:C155804 Sellar Yolk Sac Tumor 6 58574 -NCIT:C155805 Sellar Embryonal Carcinoma 6 58575 -NCIT:C155806 Sellar Choriocarcinoma 6 58576 -NCIT:C155810 Sellar Teratoma with Malignant Transformation 6 58577 -NCIT:C155811 Sellar Mixed Germ Cell Tumor 6 58578 -NCIT:C4769 Malignant Pituitary Gland Neoplasm 6 58579 -NCIT:C155304 Pituitary Gland Blastoma 7 58580 -NCIT:C155796 Pituitary Gland Non-Hodgkin Lymphoma 7 58581 -NCIT:C155797 Pituitary Gland Diffuse Large B-Cell Lymphoma 8 58582 -NCIT:C4536 Metastatic Pituitary Neuroendocrine Tumor 7 58583 -NCIT:C163956 Locally Advanced Pituitary Neuroendocrine Tumor 8 58584 -NCIT:C163959 Metastatic Unresectable Pituitary Neuroendocrine Tumor 8 58585 -NCIT:C5962 Metastatic Lactotroph Pituitary Neuroendocrine Tumor 8 58586 -NCIT:C5963 Metastatic Somatotroph Pituitary Neuroendocrine Tumor 8 58587 -NCIT:C5964 Metastatic Corticotroph Pituitary Neuroendocrine Tumor 8 58588 -NCIT:C5965 Metastatic Thyrotroph Pituitary Neuroendocrine Tumor 8 58589 -NCIT:C6805 Metastatic Malignant Neoplasm in the Pituitary Gland 7 58590 -NCIT:C5453 Skull Base Chordoma 6 58591 -NCIT:C155781 Sellar Chordoma 7 58592 -NCIT:C155782 Sellar Chondroid Chordoma 8 58593 -NCIT:C155783 Sellar Dedifferentiated Chordoma 8 58594 -NCIT:C5412 Clivus Chordoma 7 58595 -NCIT:C5426 Clivus Chondroid Chordoma 8 58596 -NCIT:C155793 Benign Skull Base Neoplasm 5 58597 -NCIT:C155768 Sellar Neurocytoma 6 58598 -NCIT:C155780 Sellar Schwannoma 6 58599 -NCIT:C155808 Sellar Mature Teratoma 6 58600 -NCIT:C2964 Craniopharyngioma 6 58601 -NCIT:C148076 Unresectable Craniopharyngioma 7 58602 -NCIT:C148077 Recurrent Craniopharyngioma 7 58603 -NCIT:C162612 Recurrent Adamantinomatous Craniopharyngioma 8 58604 -NCIT:C4010 Adult Craniopharyngioma 7 58605 -NCIT:C188949 Adult Adamantinomatous Craniopharyngioma 8 58606 -NCIT:C4725 Papillary Craniopharyngioma 7 58607 -NCIT:C4726 Adamantinomatous Craniopharyngioma 7 58608 -NCIT:C162612 Recurrent Adamantinomatous Craniopharyngioma 8 58609 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 8 58610 -NCIT:C188949 Adult Adamantinomatous Craniopharyngioma 8 58611 -NCIT:C7816 Childhood Craniopharyngioma 7 58612 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 8 58613 -NCIT:C4782 Benign Pituitary Gland Neoplasm 6 58614 -NCIT:C4944 Sellar Region Neoplasm 5 58615 -NCIT:C155768 Sellar Neurocytoma 6 58616 -NCIT:C155769 Sellar Paraganglioma 6 58617 -NCIT:C155772 Sellar Neuroblastoma 6 58618 -NCIT:C155776 Sellar Meningioma 6 58619 -NCIT:C155778 Intrasellar Meningioma 7 58620 -NCIT:C6776 Suprasellar Meningioma 7 58621 -NCIT:C5283 Diaphragma Sellae Meningioma 8 58622 -NCIT:C5284 Tuberculum Sellae Meningioma 8 58623 -NCIT:C5311 Pituitary Stalk Meningioma 8 58624 -NCIT:C155780 Sellar Schwannoma 6 58625 -NCIT:C155781 Sellar Chordoma 6 58626 -NCIT:C155782 Sellar Chondroid Chordoma 7 58627 -NCIT:C155783 Sellar Dedifferentiated Chordoma 7 58628 -NCIT:C155784 Sellar Solitary Fibrous Tumor 6 58629 -NCIT:C155786 Metastatic Malignant Neoplasm in the Sellar Region 6 58630 -NCIT:C6805 Metastatic Malignant Neoplasm in the Pituitary Gland 7 58631 -NCIT:C155801 Sellar Germ Cell Tumor 6 58632 -NCIT:C155802 Sellar Germinoma 7 58633 -NCIT:C155803 Suprasellar Germinoma 8 58634 -NCIT:C155804 Sellar Yolk Sac Tumor 7 58635 -NCIT:C155805 Sellar Embryonal Carcinoma 7 58636 -NCIT:C155806 Sellar Choriocarcinoma 7 58637 -NCIT:C155807 Sellar Teratoma 7 58638 -NCIT:C155808 Sellar Mature Teratoma 8 58639 -NCIT:C155809 Sellar Immature Teratoma 8 58640 -NCIT:C155810 Sellar Teratoma with Malignant Transformation 8 58641 -NCIT:C155811 Sellar Mixed Germ Cell Tumor 7 58642 -NCIT:C177769 Suprasellar Germ Cell Tumor 7 58643 -NCIT:C155803 Suprasellar Germinoma 8 58644 -NCIT:C2964 Craniopharyngioma 6 58645 -NCIT:C148076 Unresectable Craniopharyngioma 7 58646 -NCIT:C148077 Recurrent Craniopharyngioma 7 58647 -NCIT:C162612 Recurrent Adamantinomatous Craniopharyngioma 8 58648 -NCIT:C4010 Adult Craniopharyngioma 7 58649 -NCIT:C188949 Adult Adamantinomatous Craniopharyngioma 8 58650 -NCIT:C4725 Papillary Craniopharyngioma 7 58651 -NCIT:C4726 Adamantinomatous Craniopharyngioma 7 58652 -NCIT:C162612 Recurrent Adamantinomatous Craniopharyngioma 8 58653 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 8 58654 -NCIT:C188949 Adult Adamantinomatous Craniopharyngioma 8 58655 -NCIT:C7816 Childhood Craniopharyngioma 7 58656 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 8 58657 -NCIT:C3330 Pituitary Gland Neoplasm 6 58658 -NCIT:C45921 Anterior Pituitary Gland Neoplasm 7 58659 -NCIT:C155304 Pituitary Gland Blastoma 8 58660 -NCIT:C3329 Pituitary Neuroendocrine Tumor 8 58661 -NCIT:C132296 Atypical Pituitary Neuroendocrine Tumor 9 58662 -NCIT:C154520 Multiple Synchronous Pituitary Neuroendocrine Tumors of Distinct Lineages 9 58663 -NCIT:C154519 Double Pituitary Neuroendocrine Tumors of Distinct Lineages 10 58664 -NCIT:C155767 Mixed Gangliocytoma-Pituitary Neuroendocrine Tumor 9 58665 -NCIT:C173345 Ectopic Pituitary Neuroendocrine Tumor 9 58666 -NCIT:C173352 Nasopharyngeal Pituitary Neuroendocrine Tumor 10 58667 -NCIT:C187086 Pituitary Neuroendocrine Tumor of PIT1-Lineage 9 58668 -NCIT:C127194 Somatotroph-Lactotroph Pituitary Neuroendocrine Tumor 10 58669 -NCIT:C45927 Mixed Somatotroph and Lactotroph Pituitary Neuroendocrine Tumor 11 58670 -NCIT:C45928 Mammosomatotroph Pituitary Neuroendocrine Tumor 11 58671 -NCIT:C187098 Mature Plurihormonal PIT1 Lineage Pituitary Neuroendocrine Tumor 10 58672 -NCIT:C187099 Immature PIT1 Lineage Pituitary Neuroendocrine Tumor 10 58673 -NCIT:C3342 Lactotroph Pituitary Neuroendocrine Tumor 10 58674 -NCIT:C45931 Densely Granulated Lactotroph Pituitary Neuroendocrine Tumor 11 58675 -NCIT:C45932 Sparsely Granulated Lactotroph Pituitary Neuroendocrine Tumor 11 58676 -NCIT:C5962 Metastatic Lactotroph Pituitary Neuroendocrine Tumor 11 58677 -NCIT:C45929 Acidophil Stem Cell Pituitary Neuroendocrine Tumor 10 58678 -NCIT:C7461 Somatotroph Pituitary Neuroendocrine Tumor 10 58679 -NCIT:C45925 Densely Granulated Somatotroph Pituitary Neuroendocrine Tumor 11 58680 -NCIT:C45926 Sparsely Granulated Somatotroph Pituitary Neuroendocrine Tumor 11 58681 -NCIT:C5963 Metastatic Somatotroph Pituitary Neuroendocrine Tumor 11 58682 -NCIT:C7915 Thyrotroph Pituitary Neuroendocrine Tumor 10 58683 -NCIT:C5965 Metastatic Thyrotroph Pituitary Neuroendocrine Tumor 11 58684 -NCIT:C187087 Pituitary Neuroendocrine Tumor of TPIT-Lineage 9 58685 -NCIT:C7462 Corticotroph Pituitary Neuroendocrine Tumor 10 58686 -NCIT:C154339 Densely Granulated Corticotroph Pituitary Neuroendocrine Tumor 11 58687 -NCIT:C154431 Non-Functioning Densely Granulated Corticotroph Pituitary Neuroendocrine Tumor 12 58688 -NCIT:C154340 Sparsely Granulated Corticotroph Pituitary Neuroendocrine Tumor 11 58689 -NCIT:C154432 Non-Functioning Sparsely Granulated Corticotroph Pituitary Neuroendocrine Tumor 12 58690 -NCIT:C154342 Crooke Cell Tumor 11 58691 -NCIT:C154429 Non-Functioning Corticotroph Pituitary Neuroendocrine Tumor 11 58692 -NCIT:C154431 Non-Functioning Densely Granulated Corticotroph Pituitary Neuroendocrine Tumor 12 58693 -NCIT:C154432 Non-Functioning Sparsely Granulated Corticotroph Pituitary Neuroendocrine Tumor 12 58694 -NCIT:C5964 Metastatic Corticotroph Pituitary Neuroendocrine Tumor 11 58695 -NCIT:C187088 Pituitary Neuroendocrine Tumor of SF1-Lineage 9 58696 -NCIT:C45915 Gonadotroph Pituitary Neuroendocrine Tumor 10 58697 -NCIT:C121152 FSH-Producing Pituitary Neuroendocrine Tumor 11 58698 -NCIT:C121153 LH-Producing Pituitary Neuroendocrine Tumor 11 58699 -NCIT:C187096 Pituitary Neuroendocrine Tumor without Distinct Lineage Differentiation 9 58700 -NCIT:C45916 Plurihormonal Pituitary Neuroendocrine Tumor 10 58701 -NCIT:C154504 Monomorphous Plurihormonal Pituitary Neuroendocrine Tumor 11 58702 -NCIT:C154505 Plurimorphous Plurihormonal Pituitary Neuroendocrine Tumor 11 58703 -NCIT:C45924 Null Cell Pituitary Neuroendocrine Tumor 10 58704 -NCIT:C187135 Pituitary Neuroendocrine Tumor, Not Otherwise Specified 9 58705 -NCIT:C4348 Non-Functioning Pituitary Neuroendocrine Tumor 9 58706 -NCIT:C121678 Non-Functioning Pituitary Neuroendocrine Tumor/Microadenoma 10 58707 -NCIT:C121721 Non-Functioning Pituitary Neuroendocrine Tumor/Macroadenoma 10 58708 -NCIT:C154429 Non-Functioning Corticotroph Pituitary Neuroendocrine Tumor 10 58709 -NCIT:C154431 Non-Functioning Densely Granulated Corticotroph Pituitary Neuroendocrine Tumor 11 58710 -NCIT:C154432 Non-Functioning Sparsely Granulated Corticotroph Pituitary Neuroendocrine Tumor 11 58711 -NCIT:C45924 Null Cell Pituitary Neuroendocrine Tumor 10 58712 -NCIT:C43541 Pituitary Neuroendocrine Tumor/Microadenoma 9 58713 -NCIT:C121678 Non-Functioning Pituitary Neuroendocrine Tumor/Microadenoma 10 58714 -NCIT:C121679 Functioning Pituitary Neuroendocrine Tumor/Microadenoma 10 58715 -NCIT:C43542 Pituitary Neuroendocrine Tumor/Macroadenoma 9 58716 -NCIT:C121720 Functioning Pituitary Neuroendocrine Tumor/Macroadenoma 10 58717 -NCIT:C121721 Non-Functioning Pituitary Neuroendocrine Tumor/Macroadenoma 10 58718 -NCIT:C4536 Metastatic Pituitary Neuroendocrine Tumor 9 58719 -NCIT:C163956 Locally Advanced Pituitary Neuroendocrine Tumor 10 58720 -NCIT:C163959 Metastatic Unresectable Pituitary Neuroendocrine Tumor 10 58721 -NCIT:C5962 Metastatic Lactotroph Pituitary Neuroendocrine Tumor 10 58722 -NCIT:C5963 Metastatic Somatotroph Pituitary Neuroendocrine Tumor 10 58723 -NCIT:C5964 Metastatic Corticotroph Pituitary Neuroendocrine Tumor 10 58724 -NCIT:C5965 Metastatic Thyrotroph Pituitary Neuroendocrine Tumor 10 58725 -NCIT:C8388 Functioning Pituitary Neuroendocrine Tumor 9 58726 -NCIT:C121679 Functioning Pituitary Neuroendocrine Tumor/Microadenoma 10 58727 -NCIT:C121720 Functioning Pituitary Neuroendocrine Tumor/Macroadenoma 10 58728 -NCIT:C7912 Recurrent Anterior Pituitary Gland Neoplasm 8 58729 -NCIT:C4769 Malignant Pituitary Gland Neoplasm 7 58730 -NCIT:C155304 Pituitary Gland Blastoma 8 58731 -NCIT:C155796 Pituitary Gland Non-Hodgkin Lymphoma 8 58732 -NCIT:C155797 Pituitary Gland Diffuse Large B-Cell Lymphoma 9 58733 -NCIT:C4536 Metastatic Pituitary Neuroendocrine Tumor 8 58734 -NCIT:C163956 Locally Advanced Pituitary Neuroendocrine Tumor 9 58735 -NCIT:C163959 Metastatic Unresectable Pituitary Neuroendocrine Tumor 9 58736 -NCIT:C5962 Metastatic Lactotroph Pituitary Neuroendocrine Tumor 9 58737 -NCIT:C5963 Metastatic Somatotroph Pituitary Neuroendocrine Tumor 9 58738 -NCIT:C5964 Metastatic Corticotroph Pituitary Neuroendocrine Tumor 9 58739 -NCIT:C5965 Metastatic Thyrotroph Pituitary Neuroendocrine Tumor 9 58740 -NCIT:C6805 Metastatic Malignant Neoplasm in the Pituitary Gland 8 58741 -NCIT:C4782 Benign Pituitary Gland Neoplasm 7 58742 -NCIT:C7157 Posterior Pituitary Gland Neoplasm 7 58743 -NCIT:C155774 Ependymal Pituicytoma 8 58744 -NCIT:C7017 Granular Cell Tumor of the Sellar Region 8 58745 -NCIT:C94524 Pituicytoma 8 58746 -NCIT:C94537 Spindle Cell Oncocytoma 8 58747 -NCIT:C45917 Sellar Gangliocytoma 6 58748 -NCIT:C5272 Skull Base Meningioma 5 58749 -NCIT:C155776 Sellar Meningioma 6 58750 -NCIT:C155778 Intrasellar Meningioma 7 58751 -NCIT:C6776 Suprasellar Meningioma 7 58752 -NCIT:C5283 Diaphragma Sellae Meningioma 8 58753 -NCIT:C5284 Tuberculum Sellae Meningioma 8 58754 -NCIT:C5311 Pituitary Stalk Meningioma 8 58755 -NCIT:C5268 Cavernous Sinus Meningioma 6 58756 -NCIT:C5271 Petrous Apex Meningioma 6 58757 -NCIT:C5278 Petroclival Meningioma 6 58758 -NCIT:C5279 Multiple Skull Base Meningiomas 6 58759 -NCIT:C5280 Foramen Magnum Meningioma 6 58760 -NCIT:C5281 Anterior Foramen Magnum Meningioma 7 58761 -NCIT:C5282 Posterior Foramen Magnum Meningioma 7 58762 -NCIT:C5285 Sphenoorbital Meningioma 6 58763 -NCIT:C5289 Clivus Meningioma 6 58764 -NCIT:C5288 Lower Clivus Meningioma 7 58765 -NCIT:C5290 Upper Clivus Meningioma 7 58766 -NCIT:C5307 Internal Auditory Canal Meningioma 6 58767 -NCIT:C5313 Sphenocavernous Meningioma 6 58768 -NCIT:C4013 Malignant Head and Neck Neoplasm 3 58769 -NCIT:C133187 Mucosal Melanoma of the Head and Neck 4 58770 -NCIT:C133186 Mucosal Melanoma of the Head and Neck by AJCC v7 Stage 5 58771 -NCIT:C87532 Stage III Mucosal Melanoma of the Head and Neck AJCC v7 6 58772 -NCIT:C87533 Stage IVA Mucosal Melanoma of the Head and Neck AJCC v7 6 58773 -NCIT:C87534 Stage IVB Mucosal Melanoma of the Head and Neck AJCC v7 6 58774 -NCIT:C87535 Stage IVC Mucosal Melanoma of the Head and Neck AJCC v7 6 58775 -NCIT:C166399 Sinonasal Mucosal Melanoma 5 58776 -NCIT:C178521 Pharyngeal Melanoma 5 58777 -NCIT:C178522 Nasopharyngeal Melanoma 6 58778 -NCIT:C5915 Oral Cavity Mucosal Melanoma 5 58779 -NCIT:C152077 Recurrent Malignant Head and Neck Neoplasm 4 58780 -NCIT:C150531 Recurrent Malignant Pharyngeal Neoplasm 5 58781 -NCIT:C5103 Recurrent Pharyngeal Carcinoma 6 58782 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 7 58783 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 58784 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 58785 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 58786 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 58787 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 58788 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 58789 -NCIT:C8051 Recurrent Oropharyngeal Carcinoma 7 58790 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 58791 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 58792 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 7 58793 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 58794 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 58795 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 58796 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 7 58797 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 58798 -NCIT:C9268 Recurrent Malignant Nasopharyngeal Neoplasm 6 58799 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 7 58800 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 58801 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 58802 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 58803 -NCIT:C9353 Recurrent Malignant Hypopharyngeal Neoplasm 6 58804 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 7 58805 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 58806 -NCIT:C150538 Recurrent Malignant Thyroid Gland Neoplasm 5 58807 -NCIT:C7908 Recurrent Thyroid Gland Carcinoma 6 58808 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 7 58809 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 8 58810 -NCIT:C153624 Recurrent Thyroid Gland Anaplastic Carcinoma 7 58811 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 7 58812 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 8 58813 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 8 58814 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 9 58815 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 7 58816 -NCIT:C35675 Recurrent Malignant Salivary Gland Neoplasm 5 58817 -NCIT:C7926 Recurrent Salivary Gland Carcinoma 6 58818 -NCIT:C153611 Recurrent Salivary Duct Carcinoma 7 58819 -NCIT:C153612 Recurrent Minor Salivary Gland Adenocarcinoma 7 58820 -NCIT:C153800 Recurrent Parotid Gland Carcinoma 7 58821 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 8 58822 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 8 58823 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 58824 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 8 58825 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 58826 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 8 58827 -NCIT:C153801 Recurrent Submandibular Gland Carcinoma 7 58828 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 8 58829 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 8 58830 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 58831 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 8 58832 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 58833 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 8 58834 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 58835 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 58836 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 58837 -NCIT:C7624 Recurrent Head and Neck Carcinoma 5 58838 -NCIT:C133709 Recurrent Head and Neck Squamous Cell Carcinoma 6 58839 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 58840 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 58841 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 58842 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 58843 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 58844 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 58845 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 58846 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 58847 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 58848 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 7 58849 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 58850 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 58851 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 58852 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 58853 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 58854 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 58855 -NCIT:C176682 Locally Recurrent Head and Neck Squamous Cell Carcinoma 7 58856 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 7 58857 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 58858 -NCIT:C4034 Recurrent Laryngeal Carcinoma 6 58859 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 7 58860 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 58861 -NCIT:C5103 Recurrent Pharyngeal Carcinoma 6 58862 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 7 58863 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 58864 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 58865 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 58866 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 58867 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 58868 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 58869 -NCIT:C8051 Recurrent Oropharyngeal Carcinoma 7 58870 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 58871 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 58872 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 7 58873 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 58874 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 58875 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 58876 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 7 58877 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 58878 -NCIT:C67558 Recurrent Sinonasal Carcinoma 6 58879 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 58880 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 58881 -NCIT:C7828 Recurrent Parathyroid Gland Carcinoma 6 58882 -NCIT:C7908 Recurrent Thyroid Gland Carcinoma 6 58883 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 7 58884 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 8 58885 -NCIT:C153624 Recurrent Thyroid Gland Anaplastic Carcinoma 7 58886 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 7 58887 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 8 58888 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 8 58889 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 9 58890 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 7 58891 -NCIT:C7926 Recurrent Salivary Gland Carcinoma 6 58892 -NCIT:C153611 Recurrent Salivary Duct Carcinoma 7 58893 -NCIT:C153612 Recurrent Minor Salivary Gland Adenocarcinoma 7 58894 -NCIT:C153800 Recurrent Parotid Gland Carcinoma 7 58895 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 8 58896 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 8 58897 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 58898 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 8 58899 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 58900 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 8 58901 -NCIT:C153801 Recurrent Submandibular Gland Carcinoma 7 58902 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 8 58903 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 8 58904 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 58905 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 8 58906 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 58907 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 8 58908 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 58909 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 58910 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 58911 -NCIT:C8037 Recurrent Lip and Oral Cavity Carcinoma 6 58912 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 58913 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 58914 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 58915 -NCIT:C6076 Recurrent Oral Cavity Carcinoma 7 58916 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 58917 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 58918 -NCIT:C8215 Recurrent Oral Cavity Mucoepidermoid Carcinoma 8 58919 -NCIT:C8216 Recurrent Oral Cavity Adenoid Cystic Carcinoma 8 58920 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 7 58921 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 5 58922 -NCIT:C9262 Recurrent Malignant Oral Neoplasm 5 58923 -NCIT:C8037 Recurrent Lip and Oral Cavity Carcinoma 6 58924 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 58925 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 58926 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 58927 -NCIT:C6076 Recurrent Oral Cavity Carcinoma 7 58928 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 58929 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 58930 -NCIT:C8215 Recurrent Oral Cavity Mucoepidermoid Carcinoma 8 58931 -NCIT:C8216 Recurrent Oral Cavity Adenoid Cystic Carcinoma 8 58932 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 7 58933 -NCIT:C152078 Refractory Malignant Head and Neck Neoplasm 4 58934 -NCIT:C150530 Refractory Malignant Oral Neoplasm 5 58935 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 6 58936 -NCIT:C150532 Refractory Malignant Pharyngeal Neoplasm 5 58937 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 6 58938 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 6 58939 -NCIT:C148434 Refractory Nasopharyngeal Carcinoma 6 58940 -NCIT:C150539 Refractory Malignant Thyroid Gland Neoplasm 5 58941 -NCIT:C142983 Refractory Thyroid Gland Carcinoma 6 58942 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 7 58943 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 8 58944 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 8 58945 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 9 58946 -NCIT:C170832 Refractory Thyroid Gland Anaplastic Carcinoma 7 58947 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 7 58948 -NCIT:C151907 Refractory Head and Neck Carcinoma 5 58949 -NCIT:C142983 Refractory Thyroid Gland Carcinoma 6 58950 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 7 58951 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 8 58952 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 8 58953 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 9 58954 -NCIT:C170832 Refractory Thyroid Gland Anaplastic Carcinoma 7 58955 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 7 58956 -NCIT:C148152 Refractory Head and Neck Squamous Cell Carcinoma 6 58957 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 7 58958 -NCIT:C148383 Refractory Laryngeal Squamous Cell Carcinoma 7 58959 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 7 58960 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 7 58961 -NCIT:C148401 Refractory Sinonasal Squamous Cell Carcinoma 7 58962 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 58963 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 58964 -NCIT:C148434 Refractory Nasopharyngeal Carcinoma 6 58965 -NCIT:C177722 Refractory Salivary Gland Carcinoma 6 58966 -NCIT:C179151 Platinum-Resistant Head and Neck Carcinoma 6 58967 -NCIT:C177721 Refractory Malignant Salivary Gland Neoplasm 5 58968 -NCIT:C177722 Refractory Salivary Gland Carcinoma 6 58969 -NCIT:C155790 Malignant Skull Neoplasm 4 58970 -NCIT:C155791 Malignant Skull Base Neoplasm 5 58971 -NCIT:C155772 Sellar Neuroblastoma 6 58972 -NCIT:C155786 Metastatic Malignant Neoplasm in the Sellar Region 6 58973 -NCIT:C6805 Metastatic Malignant Neoplasm in the Pituitary Gland 7 58974 -NCIT:C155802 Sellar Germinoma 6 58975 -NCIT:C155803 Suprasellar Germinoma 7 58976 -NCIT:C155804 Sellar Yolk Sac Tumor 6 58977 -NCIT:C155805 Sellar Embryonal Carcinoma 6 58978 -NCIT:C155806 Sellar Choriocarcinoma 6 58979 -NCIT:C155810 Sellar Teratoma with Malignant Transformation 6 58980 -NCIT:C155811 Sellar Mixed Germ Cell Tumor 6 58981 -NCIT:C4769 Malignant Pituitary Gland Neoplasm 6 58982 -NCIT:C155304 Pituitary Gland Blastoma 7 58983 -NCIT:C155796 Pituitary Gland Non-Hodgkin Lymphoma 7 58984 -NCIT:C155797 Pituitary Gland Diffuse Large B-Cell Lymphoma 8 58985 -NCIT:C4536 Metastatic Pituitary Neuroendocrine Tumor 7 58986 -NCIT:C163956 Locally Advanced Pituitary Neuroendocrine Tumor 8 58987 -NCIT:C163959 Metastatic Unresectable Pituitary Neuroendocrine Tumor 8 58988 -NCIT:C5962 Metastatic Lactotroph Pituitary Neuroendocrine Tumor 8 58989 -NCIT:C5963 Metastatic Somatotroph Pituitary Neuroendocrine Tumor 8 58990 -NCIT:C5964 Metastatic Corticotroph Pituitary Neuroendocrine Tumor 8 58991 -NCIT:C5965 Metastatic Thyrotroph Pituitary Neuroendocrine Tumor 8 58992 -NCIT:C6805 Metastatic Malignant Neoplasm in the Pituitary Gland 7 58993 -NCIT:C5453 Skull Base Chordoma 6 58994 -NCIT:C155781 Sellar Chordoma 7 58995 -NCIT:C155782 Sellar Chondroid Chordoma 8 58996 -NCIT:C155783 Sellar Dedifferentiated Chordoma 8 58997 -NCIT:C5412 Clivus Chordoma 7 58998 -NCIT:C5426 Clivus Chondroid Chordoma 8 58999 -NCIT:C173841 Maxillofacial Sarcoma 5 59000 -NCIT:C173842 Maxillofacial Chondrosarcoma 6 59001 -NCIT:C173843 Maxillofacial Mesenchymal Chondrosarcoma 7 59002 -NCIT:C173844 Maxillofacial Osteosarcoma 6 59003 -NCIT:C162594 Metastatic Malignant Neoplasm in the Head and Neck 4 59004 -NCIT:C155786 Metastatic Malignant Neoplasm in the Sellar Region 5 59005 -NCIT:C6805 Metastatic Malignant Neoplasm in the Pituitary Gland 6 59006 -NCIT:C162595 Head and Neck Carcinoma of Unknown Primary 5 59007 -NCIT:C173585 Neck Carcinoma of Unknown Primary 6 59008 -NCIT:C7713 Neck Squamous Cell Carcinoma of Unknown Primary 7 59009 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 8 59010 -NCIT:C187051 Human Papillomavirus-Related Head and Neck Squamous Cell Carcinoma of Unknown Primary 6 59011 -NCIT:C190149 Human Papillomavirus-Negative Head and Neck Squamous Cell Carcinoma of Unknown Primary 6 59012 -NCIT:C8528 Metastatic Malignant Neoplasm in the Neck 5 59013 -NCIT:C173585 Neck Carcinoma of Unknown Primary 6 59014 -NCIT:C7713 Neck Squamous Cell Carcinoma of Unknown Primary 7 59015 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 8 59016 -NCIT:C6031 Metastatic Malignant Neoplasm in the Larynx 6 59017 -NCIT:C7509 Metastatic Malignant Neoplasm in the Thyroid Gland 6 59018 -NCIT:C7546 Metastatic Malignant Neoplasm in the Pharynx 6 59019 -NCIT:C6028 Metastatic Malignant Neoplasm in the Hypopharynx 7 59020 -NCIT:C6029 Metastatic Malignant Neoplasm in the Oropharynx 7 59021 -NCIT:C6030 Metastatic Malignant Neoplasm in the Nasopharynx 7 59022 -NCIT:C8557 Metastatic Malignant Neoplasm in the Parathyroid Glands 6 59023 -NCIT:C8542 Metastatic Malignant Neoplasm in the Lip 5 59024 -NCIT:C8556 Metastatic Malignant Neoplasm in the Orbit 5 59025 -NCIT:C164198 Head and Neck Sarcoma 4 59026 -NCIT:C173118 Sinonasal Sarcoma 5 59027 -NCIT:C164205 Biphenotypic Sinonasal Sarcoma 6 59028 -NCIT:C173120 Sinonasal Fibrosarcoma 6 59029 -NCIT:C173121 Sinonasal Undifferentiated Pleomorphic Sarcoma 6 59030 -NCIT:C173123 Sinonasal Leiomyosarcoma 6 59031 -NCIT:C173124 Sinonasal Rhabdomyosarcoma 6 59032 -NCIT:C173125 Sinonasal Angiosarcoma 6 59033 -NCIT:C173127 Sinonasal Malignant Peripheral Nerve Sheath Tumor 6 59034 -NCIT:C173128 Sinonasal Synovial Sarcoma 6 59035 -NCIT:C6849 Paranasal Sinus Sarcoma 6 59036 -NCIT:C6850 High Grade Paranasal Sinus Sarcoma 7 59037 -NCIT:C6851 Low Grade Paranasal Sinus Sarcoma 7 59038 -NCIT:C173841 Maxillofacial Sarcoma 5 59039 -NCIT:C173842 Maxillofacial Chondrosarcoma 6 59040 -NCIT:C173843 Maxillofacial Mesenchymal Chondrosarcoma 7 59041 -NCIT:C173844 Maxillofacial Osteosarcoma 6 59042 -NCIT:C5916 Oral Cavity Sarcoma 5 59043 -NCIT:C173481 Oral Cavity Soft Tissue Sarcoma 6 59044 -NCIT:C156274 Tongue Sarcoma 7 59045 -NCIT:C156273 Tongue Alveolar Soft Part Sarcoma' 8 59046 -NCIT:C173404 Tongue Liposarcoma 8 59047 -NCIT:C173477 Oral Cavity Kaposi Sarcoma 7 59048 -NCIT:C6749 Palate Kaposi Sarcoma 8 59049 -NCIT:C173478 Oral Cavity Low Grade Myofibroblastic Sarcoma 7 59050 -NCIT:C173738 Odontogenic Sarcoma 6 59051 -NCIT:C173739 Ameloblastic Fibrodentinosarcoma 7 59052 -NCIT:C173740 Ameloblastic Fibroodontosarcoma 7 59053 -NCIT:C4317 Ameloblastic Fibrosarcoma 7 59054 -NCIT:C5983 Major Salivary Gland Sarcoma 5 59055 -NCIT:C156280 Parotid Gland Sarcoma 6 59056 -NCIT:C156281 Parotid Gland Liposarcoma 7 59057 -NCIT:C5952 Parotid Gland Kaposi Sarcoma 7 59058 -NCIT:C6020 Laryngeal Sarcoma 5 59059 -NCIT:C173407 Laryngeal Chondrosarcoma 6 59060 -NCIT:C173408 Laryngeal Soft Tissue Sarcoma 6 59061 -NCIT:C6021 Laryngeal Liposarcoma 7 59062 -NCIT:C6022 Laryngeal Leiomyosarcoma 7 59063 -NCIT:C6041 Thyroid Gland Sarcoma 5 59064 -NCIT:C156341 Thyroid Gland Malignant Peripheral Nerve Sheath Tumor 6 59065 -NCIT:C156347 Thyroid Gland Leiomyosarcoma 6 59066 -NCIT:C6043 Thyroid Gland Angiosarcoma 6 59067 -NCIT:C6095 Orbit Sarcoma 5 59068 -NCIT:C156276 Orbital Alveolar Soft Part Sarcoma 6 59069 -NCIT:C4543 Orbit Rhabdomyosarcoma 6 59070 -NCIT:C6246 Orbit Embryonal Rhabdomyosarcoma 7 59071 -NCIT:C6247 Orbit Alveolar Rhabdomyosarcoma 7 59072 -NCIT:C170467 Metastatic Malignant Head and Neck Neoplasm 4 59073 -NCIT:C126465 Metastatic Head and Neck Carcinoma 5 59074 -NCIT:C129861 Advanced Head and Neck Carcinoma 6 59075 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 7 59076 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 59077 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 59078 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 59079 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 59080 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 59081 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 59082 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 59083 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 7 59084 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 59085 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 8 59086 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 8 59087 -NCIT:C170784 Advanced Pharyngeal Carcinoma 7 59088 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 8 59089 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 59090 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 59091 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 59092 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 59093 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 59094 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 8 59095 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 59096 -NCIT:C177723 Advanced Salivary Gland Carcinoma 7 59097 -NCIT:C133193 Metastatic Thyroid Gland Carcinoma 6 59098 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 7 59099 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 59100 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 59101 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 7 59102 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 59103 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 8 59104 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 8 59105 -NCIT:C170831 Metastatic Thyroid Gland Anaplastic Carcinoma 7 59106 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 8 59107 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 8 59108 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 7 59109 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 59110 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 8 59111 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 8 59112 -NCIT:C173979 Metastatic Differentiated Thyroid Gland Carcinoma 7 59113 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 8 59114 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 9 59115 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 10 59116 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 8 59117 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 8 59118 -NCIT:C174046 Metastatic Poorly Differentiated Thyroid Gland Carcinoma 7 59119 -NCIT:C148153 Metastatic Head and Neck Squamous Cell Carcinoma 6 59120 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 7 59121 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 59122 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 59123 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 59124 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 59125 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 59126 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 59127 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 59128 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 7 59129 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 59130 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 59131 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 7 59132 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 59133 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 59134 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 7 59135 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 7 59136 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 59137 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 59138 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 59139 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 8 59140 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 9 59141 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 59142 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 59143 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 8 59144 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 59145 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 59146 -NCIT:C162882 Metastatic Sinonasal Squamous Cell Carcinoma 7 59147 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 59148 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 59149 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 59150 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 59151 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 59152 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 59153 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 59154 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 59155 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 59156 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 59157 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 7 59158 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 7 59159 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 8 59160 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 59161 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 59162 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 59163 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 8 59164 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 59165 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 59166 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 59167 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 59168 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 59169 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 8 59170 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 59171 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 59172 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 59173 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 59174 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 59175 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 59176 -NCIT:C153213 Locally Advanced Head and Neck Carcinoma 6 59177 -NCIT:C158464 Locally Advanced Salivary Gland Carcinoma 7 59178 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 7 59179 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 59180 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 59181 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 59182 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 8 59183 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 9 59184 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 59185 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 59186 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 8 59187 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 59188 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 59189 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 7 59190 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 7 59191 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 59192 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 7 59193 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 59194 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 8 59195 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 59196 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 59197 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 8 59198 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 59199 -NCIT:C165562 Locally Advanced Lip and Oral Cavity Carcinoma 7 59200 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 8 59201 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 59202 -NCIT:C165563 Locally Advanced Paranasal Sinus Carcinoma 7 59203 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 8 59204 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 7 59205 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 59206 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 8 59207 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 8 59208 -NCIT:C156080 Metastatic Pharyngeal Carcinoma 6 59209 -NCIT:C156079 Metastatic Nasopharyngeal Carcinoma 7 59210 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 8 59211 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 59212 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 59213 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 59214 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 59215 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 59216 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 8 59217 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 59218 -NCIT:C156081 Metastatic Hypopharyngeal Carcinoma 7 59219 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 8 59220 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 59221 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 59222 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 8 59223 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 59224 -NCIT:C156082 Metastatic Oropharyngeal Carcinoma 7 59225 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 8 59226 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 59227 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 59228 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 59229 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 8 59230 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 59231 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 59232 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 8 59233 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 59234 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 7 59235 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 59236 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 8 59237 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 59238 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 59239 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 8 59240 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 59241 -NCIT:C170784 Advanced Pharyngeal Carcinoma 7 59242 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 8 59243 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 59244 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 59245 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 59246 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 59247 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 59248 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 8 59249 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 59250 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 7 59251 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 8 59252 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 59253 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 59254 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 59255 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 8 59256 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 59257 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 59258 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 59259 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 59260 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 59261 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 8 59262 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 59263 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 59264 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 59265 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 59266 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 59267 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 59268 -NCIT:C156085 Metastatic Laryngeal Carcinoma 6 59269 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 7 59270 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 59271 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 59272 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 7 59273 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 59274 -NCIT:C156086 Metastatic Lip and Oral Cavity Carcinoma 6 59275 -NCIT:C156087 Metastatic Oral Cavity Carcinoma 7 59276 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 59277 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 59278 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 59279 -NCIT:C156089 Metastatic Oral Cavity Adenoid Cystic Carcinoma 8 59280 -NCIT:C156090 Metastatic Oral Cavity Mucoepidermoid Carcinoma 8 59281 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 8 59282 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 59283 -NCIT:C156088 Metastatic Lip Carcinoma 7 59284 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 59285 -NCIT:C165562 Locally Advanced Lip and Oral Cavity Carcinoma 7 59286 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 8 59287 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 59288 -NCIT:C158463 Metastatic Salivary Gland Carcinoma 6 59289 -NCIT:C158464 Locally Advanced Salivary Gland Carcinoma 7 59290 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 7 59291 -NCIT:C177723 Advanced Salivary Gland Carcinoma 7 59292 -NCIT:C5899 Stage IV Major Salivary Gland Carcinoma with Metastasis 7 59293 -NCIT:C9044 Metastatic Parathyroid Gland Carcinoma 6 59294 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 7 59295 -NCIT:C170469 Advanced Malignant Head and Neck Neoplasm 5 59296 -NCIT:C129861 Advanced Head and Neck Carcinoma 6 59297 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 7 59298 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 59299 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 59300 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 59301 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 59302 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 59303 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 59304 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 59305 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 7 59306 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 59307 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 8 59308 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 8 59309 -NCIT:C170784 Advanced Pharyngeal Carcinoma 7 59310 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 8 59311 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 59312 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 59313 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 59314 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 59315 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 59316 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 8 59317 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 59318 -NCIT:C177723 Advanced Salivary Gland Carcinoma 7 59319 -NCIT:C170470 Locally Advanced Malignant Head and Neck Neoplasm 5 59320 -NCIT:C153213 Locally Advanced Head and Neck Carcinoma 6 59321 -NCIT:C158464 Locally Advanced Salivary Gland Carcinoma 7 59322 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 7 59323 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 59324 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 59325 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 59326 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 8 59327 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 9 59328 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 59329 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 59330 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 8 59331 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 59332 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 59333 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 7 59334 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 7 59335 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 59336 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 7 59337 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 59338 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 8 59339 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 59340 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 59341 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 8 59342 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 59343 -NCIT:C165562 Locally Advanced Lip and Oral Cavity Carcinoma 7 59344 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 8 59345 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 59346 -NCIT:C165563 Locally Advanced Paranasal Sinus Carcinoma 7 59347 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 8 59348 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 7 59349 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 59350 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 8 59351 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 8 59352 -NCIT:C3574 Metastatic Carotid Body Paraganglioma 5 59353 -NCIT:C4623 Metastatic Jugulotympanic Paraganglioma 5 59354 -NCIT:C173097 Malignant Sinonasal Neoplasm 4 59355 -NCIT:C166399 Sinonasal Mucosal Melanoma 5 59356 -NCIT:C173094 Sinonasal Teratocarcinosarcoma 5 59357 -NCIT:C173169 Sinonasal Plasmacytoma 5 59358 -NCIT:C173170 Sinonasal Lymphoma 5 59359 -NCIT:C173171 Sinonasal Non-Hodgkin Lymphoma 6 59360 -NCIT:C173172 Sinonasal Extranodal NK/T-Cell Lymphoma 7 59361 -NCIT:C173173 Nasal Cavity Extranodal NK/T-Cell Lymphoma 8 59362 -NCIT:C6069 Paranasal Sinus Non-Hodgkin Lymphoma 7 59363 -NCIT:C6073 Paranasal Sinus Diffuse Large B-Cell Lymphoma 8 59364 -NCIT:C6075 Nasal Cavity Non-Hodgkin Lymphoma 7 59365 -NCIT:C173173 Nasal Cavity Extranodal NK/T-Cell Lymphoma 8 59366 -NCIT:C188081 Nasal Cavity Diffuse Large B-Cell Lymphoma 8 59367 -NCIT:C6068 Paranasal Sinus Lymphoma 6 59368 -NCIT:C6069 Paranasal Sinus Non-Hodgkin Lymphoma 7 59369 -NCIT:C6073 Paranasal Sinus Diffuse Large B-Cell Lymphoma 8 59370 -NCIT:C6074 Nasal Cavity Lymphoma 6 59371 -NCIT:C6075 Nasal Cavity Non-Hodgkin Lymphoma 7 59372 -NCIT:C173173 Nasal Cavity Extranodal NK/T-Cell Lymphoma 8 59373 -NCIT:C188081 Nasal Cavity Diffuse Large B-Cell Lymphoma 8 59374 -NCIT:C173174 Sinonasal Olfactory Neuroblastoma 5 59375 -NCIT:C6016 Paranasal Sinus Olfactory Neuroblastoma 6 59376 -NCIT:C173176 Malignant Sinonasal Soft Tissue Neoplasm 5 59377 -NCIT:C173118 Sinonasal Sarcoma 6 59378 -NCIT:C164205 Biphenotypic Sinonasal Sarcoma 7 59379 -NCIT:C173120 Sinonasal Fibrosarcoma 7 59380 -NCIT:C173121 Sinonasal Undifferentiated Pleomorphic Sarcoma 7 59381 -NCIT:C173123 Sinonasal Leiomyosarcoma 7 59382 -NCIT:C173124 Sinonasal Rhabdomyosarcoma 7 59383 -NCIT:C173125 Sinonasal Angiosarcoma 7 59384 -NCIT:C173127 Sinonasal Malignant Peripheral Nerve Sheath Tumor 7 59385 -NCIT:C173128 Sinonasal Synovial Sarcoma 7 59386 -NCIT:C6849 Paranasal Sinus Sarcoma 7 59387 -NCIT:C6850 High Grade Paranasal Sinus Sarcoma 8 59388 -NCIT:C6851 Low Grade Paranasal Sinus Sarcoma 8 59389 -NCIT:C173138 Sinonasal Epithelioid Hemangioendothelioma 6 59390 -NCIT:C173175 Sinonasal Ewing Sarcoma/Peripheral Primitive Neuroectodermal Tumor 6 59391 -NCIT:C4918 Malignant Nasal Cavity Neoplasm 5 59392 -NCIT:C6074 Nasal Cavity Lymphoma 6 59393 -NCIT:C6075 Nasal Cavity Non-Hodgkin Lymphoma 7 59394 -NCIT:C173173 Nasal Cavity Extranodal NK/T-Cell Lymphoma 8 59395 -NCIT:C188081 Nasal Cavity Diffuse Large B-Cell Lymphoma 8 59396 -NCIT:C7604 Nasal Cavity Olfactory Neuroblastoma 6 59397 -NCIT:C9336 Nasal Cavity Carcinoma 6 59398 -NCIT:C118817 Childhood Nasal Cavity Carcinoma 7 59399 -NCIT:C27389 Carcinoma Arising in Nasal Papillomatosis 7 59400 -NCIT:C4589 Stage 0 Nasal Cavity Cancer AJCC v6, v7, and v8 7 59401 -NCIT:C6010 Stage IV Nasal Cavity Cancer 7 59402 -NCIT:C6011 Stage III Nasal Cavity Cancer AJCC v6 and v7 7 59403 -NCIT:C6012 Stage II Nasal Cavity Cancer AJCC v6 and v7 7 59404 -NCIT:C6013 Stage I Nasal Cavity Cancer AJCC v6 and v7 7 59405 -NCIT:C6015 Nasal Cavity Adenocarcinoma 7 59406 -NCIT:C8192 Nasal Cavity Squamous Cell Carcinoma 7 59407 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 59408 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 59409 -NCIT:C176514 Unresectable Nasal Cavity Squamous Cell Carcinoma 8 59410 -NCIT:C54285 Nasal Cavity Keratinizing Squamous Cell Carcinoma 8 59411 -NCIT:C54293 Sinonasal Carcinoma 5 59412 -NCIT:C133074 Sinonasal Cancer by AJCC v8 Stage 6 59413 -NCIT:C133076 Stage I Sinonasal Cancer AJCC v8 7 59414 -NCIT:C133077 Stage II Sinonasal Cancer AJCC v8 7 59415 -NCIT:C133078 Stage III Sinonasal Cancer AJCC v8 7 59416 -NCIT:C133079 Stage IV Sinonasal Cancer AJCC v8 7 59417 -NCIT:C133080 Stage IVA Sinonasal Cancer AJCC v8 8 59418 -NCIT:C133081 Stage IVB Sinonasal Cancer AJCC v8 8 59419 -NCIT:C133082 Stage IVC Sinonasal Cancer AJCC v8 8 59420 -NCIT:C87498 Stage 0 Sinonasal Cancer AJCC v6, v7, and v8 7 59421 -NCIT:C4589 Stage 0 Nasal Cavity Cancer AJCC v6, v7, and v8 8 59422 -NCIT:C94768 Stage 0 Paranasal Sinus Cancer AJCC v6, v7, and v8 8 59423 -NCIT:C154324 Sinonasal Poorly Differentiated Carcinoma 6 59424 -NCIT:C173088 Sinonasal NUT Carcinoma 7 59425 -NCIT:C160976 Sinonasal Adenocarcinoma 6 59426 -NCIT:C161007 Sinonasal Adenocarcinoma, Salivary-Type 7 59427 -NCIT:C161008 Sinonasal Adenocarcinoma, Non-Salivary-Type 7 59428 -NCIT:C116316 Sinonasal Adenocarcinoma, Intestinal-Type 8 59429 -NCIT:C160984 Sinonasal Adenocarcinoma, Intestinal-Type with Papillary Pattern 9 59430 -NCIT:C160986 Sinonasal Adenocarcinoma, Intestinal-Type with Colonic Pattern 9 59431 -NCIT:C160987 Sinonasal Adenocarcinoma, Intestinal-Type with Solid Pattern 9 59432 -NCIT:C160995 Sinonasal Adenocarcinoma, Intestinal-Type with Mucinous Pattern 9 59433 -NCIT:C161000 Sinonasal Adenocarcinoma, Intestinal-Type with Mixed Pattern 9 59434 -NCIT:C160977 Sinonasal Adenocarcinoma, Non-Intestinal-Type 8 59435 -NCIT:C6015 Nasal Cavity Adenocarcinoma 7 59436 -NCIT:C6017 Paranasal Sinus Adenocarcinoma 7 59437 -NCIT:C6237 Ethmoid Sinus Adenocarcinoma 8 59438 -NCIT:C6240 Maxillary Sinus Adenocarcinoma 8 59439 -NCIT:C173089 Sinonasal Neuroendocrine Carcinoma 6 59440 -NCIT:C116318 Sinonasal Small Cell Neuroendocrine Carcinoma 7 59441 -NCIT:C173091 Sinonasal Large Cell Neuroendocrine Carcinoma 7 59442 -NCIT:C180670 Low Grade Papillary Schneiderian Carcinoma 6 59443 -NCIT:C54294 Sinonasal Undifferentiated Carcinoma 6 59444 -NCIT:C6014 Paranasal Sinus Carcinoma 6 59445 -NCIT:C118818 Childhood Paranasal Sinus Carcinoma 7 59446 -NCIT:C165563 Locally Advanced Paranasal Sinus Carcinoma 7 59447 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 8 59448 -NCIT:C6006 Stage I Paranasal Sinus Cancer 7 59449 -NCIT:C6007 Stage II Paranasal Sinus Cancer AJCC v6 and v7 7 59450 -NCIT:C6008 Stage III Paranasal Sinus Cancer AJCC v6 and v7 7 59451 -NCIT:C6009 Stage IV Paranasal Sinus Cancer AJCC v7 7 59452 -NCIT:C6070 Stage IVA Paranasal Sinus Cancer AJCC v7 8 59453 -NCIT:C6071 Stage IVB Paranasal Sinus Cancer AJCC v7 8 59454 -NCIT:C6072 Stage IVC Paranasal Sinus Cancer AJCC v7 8 59455 -NCIT:C6017 Paranasal Sinus Adenocarcinoma 7 59456 -NCIT:C6237 Ethmoid Sinus Adenocarcinoma 8 59457 -NCIT:C6240 Maxillary Sinus Adenocarcinoma 8 59458 -NCIT:C6018 Paranasal Sinus Mucoepidermoid Carcinoma 7 59459 -NCIT:C6019 Paranasal Sinus Adenoid Cystic Carcinoma 7 59460 -NCIT:C6238 Ethmoid Sinus Adenoid Cystic Carcinoma 8 59461 -NCIT:C6239 Maxillary Sinus Adenoid Cystic Carcinoma 8 59462 -NCIT:C8193 Paranasal Sinus Squamous Cell Carcinoma 7 59463 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 59464 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 59465 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 59466 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 59467 -NCIT:C172648 Unresectable Paranasal Sinus Squamous Cell Carcinoma 8 59468 -NCIT:C54284 Paranasal Sinus Keratinizing Squamous Cell Carcinoma 8 59469 -NCIT:C6064 Maxillary Sinus Squamous Cell Carcinoma 8 59470 -NCIT:C6065 Ethmoid Sinus Squamous Cell Carcinoma 8 59471 -NCIT:C6066 Sphenoid Sinus Squamous Cell Carcinoma 8 59472 -NCIT:C6067 Frontal Sinus Squamous Cell Carcinoma 8 59473 -NCIT:C9332 Maxillary Sinus Carcinoma 7 59474 -NCIT:C6064 Maxillary Sinus Squamous Cell Carcinoma 8 59475 -NCIT:C6239 Maxillary Sinus Adenoid Cystic Carcinoma 8 59476 -NCIT:C6240 Maxillary Sinus Adenocarcinoma 8 59477 -NCIT:C94768 Stage 0 Paranasal Sinus Cancer AJCC v6, v7, and v8 7 59478 -NCIT:C67558 Recurrent Sinonasal Carcinoma 6 59479 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 59480 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 59481 -NCIT:C68611 Sinonasal Squamous Cell Carcinoma 6 59482 -NCIT:C115070 Stage I Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 7 59483 -NCIT:C115071 Stage II Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 7 59484 -NCIT:C115072 Stage III Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 7 59485 -NCIT:C115073 Stage IV Sinonasal Squamous Cell Carcinoma AJCC v7 7 59486 -NCIT:C115074 Stage IVA Sinonasal Squamous Cell Carcinoma AJCC v7 8 59487 -NCIT:C115075 Stage IVB Sinonasal Squamous Cell Carcinoma AJCC v7 8 59488 -NCIT:C115076 Stage IVC Sinonasal Squamous Cell Carcinoma AJCC v7 8 59489 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 59490 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 59491 -NCIT:C148401 Refractory Sinonasal Squamous Cell Carcinoma 7 59492 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 59493 -NCIT:C162882 Metastatic Sinonasal Squamous Cell Carcinoma 7 59494 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 59495 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 59496 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 59497 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 59498 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 59499 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 59500 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 59501 -NCIT:C173077 Sinonasal Keratinizing Squamous Cell Carcinoma 7 59502 -NCIT:C54284 Paranasal Sinus Keratinizing Squamous Cell Carcinoma 8 59503 -NCIT:C54285 Nasal Cavity Keratinizing Squamous Cell Carcinoma 8 59504 -NCIT:C173079 Sinonasal Spindle Cell Squamous Cell Carcinoma 7 59505 -NCIT:C176513 Unresectable Sinonasal Squamous Cell Carcinoma 7 59506 -NCIT:C172648 Unresectable Paranasal Sinus Squamous Cell Carcinoma 8 59507 -NCIT:C176514 Unresectable Nasal Cavity Squamous Cell Carcinoma 8 59508 -NCIT:C54287 Sinonasal Non-Keratinizing Squamous Cell Carcinoma 7 59509 -NCIT:C173078 Sinonasal Human Papillomavirus-Related Carcinoma with Adenoid Cystic-Like Features 8 59510 -NCIT:C173080 Sinonasal Lymphoepithelial Carcinoma 8 59511 -NCIT:C8192 Nasal Cavity Squamous Cell Carcinoma 7 59512 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 59513 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 59514 -NCIT:C176514 Unresectable Nasal Cavity Squamous Cell Carcinoma 8 59515 -NCIT:C54285 Nasal Cavity Keratinizing Squamous Cell Carcinoma 8 59516 -NCIT:C8193 Paranasal Sinus Squamous Cell Carcinoma 7 59517 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 59518 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 59519 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 59520 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 59521 -NCIT:C172648 Unresectable Paranasal Sinus Squamous Cell Carcinoma 8 59522 -NCIT:C54284 Paranasal Sinus Keratinizing Squamous Cell Carcinoma 8 59523 -NCIT:C6064 Maxillary Sinus Squamous Cell Carcinoma 8 59524 -NCIT:C6065 Ethmoid Sinus Squamous Cell Carcinoma 8 59525 -NCIT:C6066 Sphenoid Sinus Squamous Cell Carcinoma 8 59526 -NCIT:C6067 Frontal Sinus Squamous Cell Carcinoma 8 59527 -NCIT:C90528 Sinonasal Cancer by AJCC v6 Stage 6 59528 -NCIT:C67554 Stage I Sinonasal Cancer AJCC v6 and v7 7 59529 -NCIT:C115070 Stage I Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 8 59530 -NCIT:C6006 Stage I Paranasal Sinus Cancer 8 59531 -NCIT:C6013 Stage I Nasal Cavity Cancer AJCC v6 and v7 8 59532 -NCIT:C67555 Stage II Sinonasal Cancer AJCC v6 and v7 7 59533 -NCIT:C115071 Stage II Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 8 59534 -NCIT:C6007 Stage II Paranasal Sinus Cancer AJCC v6 and v7 8 59535 -NCIT:C6012 Stage II Nasal Cavity Cancer AJCC v6 and v7 8 59536 -NCIT:C67556 Stage III Sinonasal Cancer AJCC v6 and v7 7 59537 -NCIT:C115072 Stage III Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 8 59538 -NCIT:C6008 Stage III Paranasal Sinus Cancer AJCC v6 and v7 8 59539 -NCIT:C6011 Stage III Nasal Cavity Cancer AJCC v6 and v7 8 59540 -NCIT:C67557 Stage IV Sinonasal Cancer AJCC v6 7 59541 -NCIT:C87498 Stage 0 Sinonasal Cancer AJCC v6, v7, and v8 7 59542 -NCIT:C4589 Stage 0 Nasal Cavity Cancer AJCC v6, v7, and v8 8 59543 -NCIT:C94768 Stage 0 Paranasal Sinus Cancer AJCC v6, v7, and v8 8 59544 -NCIT:C91255 Sinonasal Cancer by AJCC v7 Stage 6 59545 -NCIT:C67554 Stage I Sinonasal Cancer AJCC v6 and v7 7 59546 -NCIT:C115070 Stage I Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 8 59547 -NCIT:C6006 Stage I Paranasal Sinus Cancer 8 59548 -NCIT:C6013 Stage I Nasal Cavity Cancer AJCC v6 and v7 8 59549 -NCIT:C67555 Stage II Sinonasal Cancer AJCC v6 and v7 7 59550 -NCIT:C115071 Stage II Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 8 59551 -NCIT:C6007 Stage II Paranasal Sinus Cancer AJCC v6 and v7 8 59552 -NCIT:C6012 Stage II Nasal Cavity Cancer AJCC v6 and v7 8 59553 -NCIT:C67556 Stage III Sinonasal Cancer AJCC v6 and v7 7 59554 -NCIT:C115072 Stage III Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 8 59555 -NCIT:C6008 Stage III Paranasal Sinus Cancer AJCC v6 and v7 8 59556 -NCIT:C6011 Stage III Nasal Cavity Cancer AJCC v6 and v7 8 59557 -NCIT:C87498 Stage 0 Sinonasal Cancer AJCC v6, v7, and v8 7 59558 -NCIT:C4589 Stage 0 Nasal Cavity Cancer AJCC v6, v7, and v8 8 59559 -NCIT:C94768 Stage 0 Paranasal Sinus Cancer AJCC v6, v7, and v8 8 59560 -NCIT:C89117 Stage IV Sinonasal Cancer AJCC v7 7 59561 -NCIT:C115073 Stage IV Sinonasal Squamous Cell Carcinoma AJCC v7 8 59562 -NCIT:C115074 Stage IVA Sinonasal Squamous Cell Carcinoma AJCC v7 9 59563 -NCIT:C115075 Stage IVB Sinonasal Squamous Cell Carcinoma AJCC v7 9 59564 -NCIT:C115076 Stage IVC Sinonasal Squamous Cell Carcinoma AJCC v7 9 59565 -NCIT:C6009 Stage IV Paranasal Sinus Cancer AJCC v7 8 59566 -NCIT:C6070 Stage IVA Paranasal Sinus Cancer AJCC v7 9 59567 -NCIT:C6071 Stage IVB Paranasal Sinus Cancer AJCC v7 9 59568 -NCIT:C6072 Stage IVC Paranasal Sinus Cancer AJCC v7 9 59569 -NCIT:C6010 Stage IV Nasal Cavity Cancer 8 59570 -NCIT:C87501 Stage IVA Sinonasal Cancer AJCC v7 8 59571 -NCIT:C115074 Stage IVA Sinonasal Squamous Cell Carcinoma AJCC v7 9 59572 -NCIT:C6070 Stage IVA Paranasal Sinus Cancer AJCC v7 9 59573 -NCIT:C87502 Stage IVB Sinonasal Cancer AJCC v7 8 59574 -NCIT:C115075 Stage IVB Sinonasal Squamous Cell Carcinoma AJCC v7 9 59575 -NCIT:C6071 Stage IVB Paranasal Sinus Cancer AJCC v7 9 59576 -NCIT:C87503 Stage IVC Sinonasal Cancer AJCC v7 8 59577 -NCIT:C115076 Stage IVC Sinonasal Squamous Cell Carcinoma AJCC v7 9 59578 -NCIT:C6072 Stage IVC Paranasal Sinus Cancer AJCC v7 9 59579 -NCIT:C9336 Nasal Cavity Carcinoma 6 59580 -NCIT:C118817 Childhood Nasal Cavity Carcinoma 7 59581 -NCIT:C27389 Carcinoma Arising in Nasal Papillomatosis 7 59582 -NCIT:C4589 Stage 0 Nasal Cavity Cancer AJCC v6, v7, and v8 7 59583 -NCIT:C6010 Stage IV Nasal Cavity Cancer 7 59584 -NCIT:C6011 Stage III Nasal Cavity Cancer AJCC v6 and v7 7 59585 -NCIT:C6012 Stage II Nasal Cavity Cancer AJCC v6 and v7 7 59586 -NCIT:C6013 Stage I Nasal Cavity Cancer AJCC v6 and v7 7 59587 -NCIT:C6015 Nasal Cavity Adenocarcinoma 7 59588 -NCIT:C8192 Nasal Cavity Squamous Cell Carcinoma 7 59589 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 59590 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 59591 -NCIT:C176514 Unresectable Nasal Cavity Squamous Cell Carcinoma 8 59592 -NCIT:C54285 Nasal Cavity Keratinizing Squamous Cell Carcinoma 8 59593 -NCIT:C7487 Malignant Paranasal Sinus Neoplasm 5 59594 -NCIT:C3540 Malignant Maxillary Sinus Neoplasm 6 59595 -NCIT:C9332 Maxillary Sinus Carcinoma 7 59596 -NCIT:C6064 Maxillary Sinus Squamous Cell Carcinoma 8 59597 -NCIT:C6239 Maxillary Sinus Adenoid Cystic Carcinoma 8 59598 -NCIT:C6240 Maxillary Sinus Adenocarcinoma 8 59599 -NCIT:C3541 Malignant Ethmoid Sinus Neoplasm 6 59600 -NCIT:C6065 Ethmoid Sinus Squamous Cell Carcinoma 7 59601 -NCIT:C6237 Ethmoid Sinus Adenocarcinoma 7 59602 -NCIT:C6238 Ethmoid Sinus Adenoid Cystic Carcinoma 7 59603 -NCIT:C3542 Malignant Frontal Sinus Neoplasm 6 59604 -NCIT:C6067 Frontal Sinus Squamous Cell Carcinoma 7 59605 -NCIT:C3543 Malignant Sphenoid Sinus Neoplasm 6 59606 -NCIT:C6066 Sphenoid Sinus Squamous Cell Carcinoma 7 59607 -NCIT:C6014 Paranasal Sinus Carcinoma 6 59608 -NCIT:C118818 Childhood Paranasal Sinus Carcinoma 7 59609 -NCIT:C165563 Locally Advanced Paranasal Sinus Carcinoma 7 59610 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 8 59611 -NCIT:C6006 Stage I Paranasal Sinus Cancer 7 59612 -NCIT:C6007 Stage II Paranasal Sinus Cancer AJCC v6 and v7 7 59613 -NCIT:C6008 Stage III Paranasal Sinus Cancer AJCC v6 and v7 7 59614 -NCIT:C6009 Stage IV Paranasal Sinus Cancer AJCC v7 7 59615 -NCIT:C6070 Stage IVA Paranasal Sinus Cancer AJCC v7 8 59616 -NCIT:C6071 Stage IVB Paranasal Sinus Cancer AJCC v7 8 59617 -NCIT:C6072 Stage IVC Paranasal Sinus Cancer AJCC v7 8 59618 -NCIT:C6017 Paranasal Sinus Adenocarcinoma 7 59619 -NCIT:C6237 Ethmoid Sinus Adenocarcinoma 8 59620 -NCIT:C6240 Maxillary Sinus Adenocarcinoma 8 59621 -NCIT:C6018 Paranasal Sinus Mucoepidermoid Carcinoma 7 59622 -NCIT:C6019 Paranasal Sinus Adenoid Cystic Carcinoma 7 59623 -NCIT:C6238 Ethmoid Sinus Adenoid Cystic Carcinoma 8 59624 -NCIT:C6239 Maxillary Sinus Adenoid Cystic Carcinoma 8 59625 -NCIT:C8193 Paranasal Sinus Squamous Cell Carcinoma 7 59626 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 59627 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 59628 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 59629 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 59630 -NCIT:C172648 Unresectable Paranasal Sinus Squamous Cell Carcinoma 8 59631 -NCIT:C54284 Paranasal Sinus Keratinizing Squamous Cell Carcinoma 8 59632 -NCIT:C6064 Maxillary Sinus Squamous Cell Carcinoma 8 59633 -NCIT:C6065 Ethmoid Sinus Squamous Cell Carcinoma 8 59634 -NCIT:C6066 Sphenoid Sinus Squamous Cell Carcinoma 8 59635 -NCIT:C6067 Frontal Sinus Squamous Cell Carcinoma 8 59636 -NCIT:C9332 Maxillary Sinus Carcinoma 7 59637 -NCIT:C6064 Maxillary Sinus Squamous Cell Carcinoma 8 59638 -NCIT:C6239 Maxillary Sinus Adenoid Cystic Carcinoma 8 59639 -NCIT:C6240 Maxillary Sinus Adenocarcinoma 8 59640 -NCIT:C94768 Stage 0 Paranasal Sinus Cancer AJCC v6, v7, and v8 7 59641 -NCIT:C6016 Paranasal Sinus Olfactory Neuroblastoma 6 59642 -NCIT:C6068 Paranasal Sinus Lymphoma 6 59643 -NCIT:C6069 Paranasal Sinus Non-Hodgkin Lymphoma 7 59644 -NCIT:C6073 Paranasal Sinus Diffuse Large B-Cell Lymphoma 8 59645 -NCIT:C6849 Paranasal Sinus Sarcoma 6 59646 -NCIT:C6850 High Grade Paranasal Sinus Sarcoma 7 59647 -NCIT:C6851 Low Grade Paranasal Sinus Sarcoma 7 59648 -NCIT:C173580 Head and Neck Follicular Dendritic Cell Sarcoma 4 59649 -NCIT:C156408 Thyroid Gland Follicular Dendritic Cell Sarcoma 5 59650 -NCIT:C190121 Childhood Malignant Head and Neck Neoplasm 4 59651 -NCIT:C118811 Childhood Laryngeal Carcinoma 5 59652 -NCIT:C118817 Childhood Nasal Cavity Carcinoma 5 59653 -NCIT:C118818 Childhood Paranasal Sinus Carcinoma 5 59654 -NCIT:C118819 Childhood Parathyroid Gland Carcinoma 5 59655 -NCIT:C118824 Childhood Salivary Gland Carcinoma 5 59656 -NCIT:C190273 Childhood Salivary Gland Mucoepidermoid Carcinoma 6 59657 -NCIT:C190274 Childhood Salivary Gland Acinic Cell Carcinoma 6 59658 -NCIT:C118827 Childhood Thyroid Gland Carcinoma 5 59659 -NCIT:C123903 Childhood Thyroid Gland Papillary Carcinoma 6 59660 -NCIT:C123904 Childhood Thyroid Gland Follicular Carcinoma 6 59661 -NCIT:C123905 Childhood Thyroid Gland Medullary Carcinoma 6 59662 -NCIT:C190064 Childhood Thyroid Gland Spindle Epithelial Tumor with Thymus-Like Elements 6 59663 -NCIT:C190272 Childhood Mucoepidermoid Carcinoma 5 59664 -NCIT:C190273 Childhood Salivary Gland Mucoepidermoid Carcinoma 6 59665 -NCIT:C190276 Childhood Nasopharyngeal Carcinoma 5 59666 -NCIT:C190278 Childhood Head and Neck NUT Carcinoma 5 59667 -NCIT:C3562 Malignant Orbit Neoplasm 4 59668 -NCIT:C118828 Orbital Melanoma 5 59669 -NCIT:C6095 Orbit Sarcoma 5 59670 -NCIT:C156276 Orbital Alveolar Soft Part Sarcoma 6 59671 -NCIT:C4543 Orbit Rhabdomyosarcoma 6 59672 -NCIT:C6246 Orbit Embryonal Rhabdomyosarcoma 7 59673 -NCIT:C6247 Orbit Alveolar Rhabdomyosarcoma 7 59674 -NCIT:C6244 Orbit Lymphoma 5 59675 -NCIT:C8556 Metastatic Malignant Neoplasm in the Orbit 5 59676 -NCIT:C35850 Head and Neck Carcinoma 4 59677 -NCIT:C126465 Metastatic Head and Neck Carcinoma 5 59678 -NCIT:C129861 Advanced Head and Neck Carcinoma 6 59679 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 7 59680 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 59681 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 59682 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 59683 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 59684 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 59685 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 59686 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 59687 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 7 59688 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 59689 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 8 59690 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 8 59691 -NCIT:C170784 Advanced Pharyngeal Carcinoma 7 59692 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 8 59693 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 59694 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 59695 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 59696 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 59697 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 59698 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 8 59699 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 59700 -NCIT:C177723 Advanced Salivary Gland Carcinoma 7 59701 -NCIT:C133193 Metastatic Thyroid Gland Carcinoma 6 59702 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 7 59703 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 59704 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 59705 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 7 59706 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 59707 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 8 59708 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 8 59709 -NCIT:C170831 Metastatic Thyroid Gland Anaplastic Carcinoma 7 59710 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 8 59711 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 8 59712 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 7 59713 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 59714 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 8 59715 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 8 59716 -NCIT:C173979 Metastatic Differentiated Thyroid Gland Carcinoma 7 59717 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 8 59718 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 9 59719 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 10 59720 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 8 59721 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 8 59722 -NCIT:C174046 Metastatic Poorly Differentiated Thyroid Gland Carcinoma 7 59723 -NCIT:C148153 Metastatic Head and Neck Squamous Cell Carcinoma 6 59724 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 7 59725 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 59726 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 59727 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 59728 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 59729 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 59730 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 59731 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 59732 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 7 59733 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 59734 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 59735 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 7 59736 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 59737 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 59738 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 7 59739 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 7 59740 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 59741 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 59742 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 59743 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 8 59744 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 9 59745 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 59746 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 59747 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 8 59748 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 59749 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 59750 -NCIT:C162882 Metastatic Sinonasal Squamous Cell Carcinoma 7 59751 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 59752 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 59753 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 59754 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 59755 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 59756 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 59757 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 59758 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 59759 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 59760 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 59761 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 7 59762 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 7 59763 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 8 59764 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 59765 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 59766 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 59767 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 8 59768 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 59769 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 59770 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 59771 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 59772 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 59773 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 8 59774 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 59775 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 59776 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 59777 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 59778 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 59779 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 59780 -NCIT:C153213 Locally Advanced Head and Neck Carcinoma 6 59781 -NCIT:C158464 Locally Advanced Salivary Gland Carcinoma 7 59782 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 7 59783 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 59784 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 59785 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 59786 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 8 59787 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 9 59788 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 59789 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 59790 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 8 59791 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 59792 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 59793 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 7 59794 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 7 59795 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 59796 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 7 59797 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 59798 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 8 59799 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 59800 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 59801 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 8 59802 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 59803 -NCIT:C165562 Locally Advanced Lip and Oral Cavity Carcinoma 7 59804 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 8 59805 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 59806 -NCIT:C165563 Locally Advanced Paranasal Sinus Carcinoma 7 59807 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 8 59808 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 7 59809 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 59810 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 8 59811 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 8 59812 -NCIT:C156080 Metastatic Pharyngeal Carcinoma 6 59813 -NCIT:C156079 Metastatic Nasopharyngeal Carcinoma 7 59814 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 8 59815 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 59816 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 59817 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 59818 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 59819 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 59820 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 8 59821 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 59822 -NCIT:C156081 Metastatic Hypopharyngeal Carcinoma 7 59823 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 8 59824 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 59825 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 59826 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 8 59827 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 59828 -NCIT:C156082 Metastatic Oropharyngeal Carcinoma 7 59829 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 8 59830 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 59831 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 59832 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 59833 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 8 59834 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 59835 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 59836 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 8 59837 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 59838 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 7 59839 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 59840 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 8 59841 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 59842 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 59843 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 8 59844 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 59845 -NCIT:C170784 Advanced Pharyngeal Carcinoma 7 59846 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 8 59847 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 59848 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 59849 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 59850 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 59851 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 59852 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 8 59853 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 59854 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 7 59855 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 8 59856 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 59857 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 59858 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 59859 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 8 59860 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 59861 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 59862 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 59863 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 59864 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 59865 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 8 59866 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 59867 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 59868 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 59869 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 59870 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 59871 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 59872 -NCIT:C156085 Metastatic Laryngeal Carcinoma 6 59873 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 7 59874 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 59875 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 59876 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 7 59877 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 59878 -NCIT:C156086 Metastatic Lip and Oral Cavity Carcinoma 6 59879 -NCIT:C156087 Metastatic Oral Cavity Carcinoma 7 59880 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 59881 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 59882 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 59883 -NCIT:C156089 Metastatic Oral Cavity Adenoid Cystic Carcinoma 8 59884 -NCIT:C156090 Metastatic Oral Cavity Mucoepidermoid Carcinoma 8 59885 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 8 59886 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 59887 -NCIT:C156088 Metastatic Lip Carcinoma 7 59888 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 59889 -NCIT:C165562 Locally Advanced Lip and Oral Cavity Carcinoma 7 59890 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 8 59891 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 59892 -NCIT:C158463 Metastatic Salivary Gland Carcinoma 6 59893 -NCIT:C158464 Locally Advanced Salivary Gland Carcinoma 7 59894 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 7 59895 -NCIT:C177723 Advanced Salivary Gland Carcinoma 7 59896 -NCIT:C5899 Stage IV Major Salivary Gland Carcinoma with Metastasis 7 59897 -NCIT:C9044 Metastatic Parathyroid Gland Carcinoma 6 59898 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 7 59899 -NCIT:C151907 Refractory Head and Neck Carcinoma 5 59900 -NCIT:C142983 Refractory Thyroid Gland Carcinoma 6 59901 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 7 59902 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 8 59903 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 8 59904 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 9 59905 -NCIT:C170832 Refractory Thyroid Gland Anaplastic Carcinoma 7 59906 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 7 59907 -NCIT:C148152 Refractory Head and Neck Squamous Cell Carcinoma 6 59908 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 7 59909 -NCIT:C148383 Refractory Laryngeal Squamous Cell Carcinoma 7 59910 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 7 59911 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 7 59912 -NCIT:C148401 Refractory Sinonasal Squamous Cell Carcinoma 7 59913 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 59914 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 59915 -NCIT:C148434 Refractory Nasopharyngeal Carcinoma 6 59916 -NCIT:C177722 Refractory Salivary Gland Carcinoma 6 59917 -NCIT:C179151 Platinum-Resistant Head and Neck Carcinoma 6 59918 -NCIT:C160978 Head and Neck Sebaceous Carcinoma 5 59919 -NCIT:C173648 Salivary Gland Sebaceous Carcinoma 6 59920 -NCIT:C160980 Head and Neck Neuroendocrine Carcinoma 5 59921 -NCIT:C160981 Head and Neck Small Cell Neuroendocrine Carcinoma 6 59922 -NCIT:C116318 Sinonasal Small Cell Neuroendocrine Carcinoma 7 59923 -NCIT:C35703 Salivary Gland Small Cell Neuroendocrine Carcinoma 7 59924 -NCIT:C5956 Minor Salivary Gland Small Cell Neuroendocrine Carcinoma 8 59925 -NCIT:C6025 Laryngeal Small Cell Neuroendocrine Carcinoma 7 59926 -NCIT:C160982 Head and Neck Large Cell Neuroendocrine Carcinoma 6 59927 -NCIT:C173091 Sinonasal Large Cell Neuroendocrine Carcinoma 7 59928 -NCIT:C173395 Laryngeal Large Cell Neuroendocrine Carcinoma 7 59929 -NCIT:C173650 Salivary Gland Large Cell Neuroendocrine Carcinoma 7 59930 -NCIT:C173089 Sinonasal Neuroendocrine Carcinoma 6 59931 -NCIT:C116318 Sinonasal Small Cell Neuroendocrine Carcinoma 7 59932 -NCIT:C173091 Sinonasal Large Cell Neuroendocrine Carcinoma 7 59933 -NCIT:C173390 Laryngeal Neuroendocrine Carcinoma 6 59934 -NCIT:C173395 Laryngeal Large Cell Neuroendocrine Carcinoma 7 59935 -NCIT:C6025 Laryngeal Small Cell Neuroendocrine Carcinoma 7 59936 -NCIT:C173587 Head and Neck Merkel Cell Carcinoma 6 59937 -NCIT:C173653 Salivary Gland Neuroendocrine Carcinoma 6 59938 -NCIT:C173650 Salivary Gland Large Cell Neuroendocrine Carcinoma 7 59939 -NCIT:C35703 Salivary Gland Small Cell Neuroendocrine Carcinoma 7 59940 -NCIT:C5956 Minor Salivary Gland Small Cell Neuroendocrine Carcinoma 8 59941 -NCIT:C3879 Thyroid Gland Medullary Carcinoma 6 59942 -NCIT:C123905 Childhood Thyroid Gland Medullary Carcinoma 7 59943 -NCIT:C141041 Thyroid Gland Medullary Carcinoma by AJCC v7 Stage 7 59944 -NCIT:C6133 Stage I Thyroid Gland Medullary Carcinoma AJCC v7 8 59945 -NCIT:C6134 Stage II Thyroid Gland Medullary Carcinoma AJCC v7 8 59946 -NCIT:C6135 Stage III Thyroid Gland Medullary Carcinoma AJCC v7 8 59947 -NCIT:C6136 Stage IV Thyroid Gland Medullary Carcinoma AJCC v7 8 59948 -NCIT:C87549 Stage IVA Thyroid Gland Medullary Carcinoma AJCC v7 9 59949 -NCIT:C87550 Stage IVB Thyroid Gland Medullary Carcinoma AJCC v7 9 59950 -NCIT:C87551 Stage IVC Thyroid Gland Medullary Carcinoma AJCC v7 9 59951 -NCIT:C141042 Thyroid Gland Medullary Carcinoma by AJCC v8 Stage 7 59952 -NCIT:C141043 Stage I Thyroid Gland Medullary Carcinoma AJCC v8 8 59953 -NCIT:C141044 Stage II Thyroid Gland Medullary Carcinoma AJCC v8 8 59954 -NCIT:C141045 Stage III Thyroid Gland Medullary Carcinoma AJCC v8 8 59955 -NCIT:C141046 Stage IV Thyroid Gland Medullary Carcinoma AJCC v8 8 59956 -NCIT:C141047 Stage IVA Thyroid Gland Medullary Carcinoma AJCC v8 9 59957 -NCIT:C141048 Stage IVB Thyroid Gland Medullary Carcinoma AJCC v8 9 59958 -NCIT:C141049 Stage IVC Thyroid Gland Medullary Carcinoma AJCC v8 9 59959 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 7 59960 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 8 59961 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 7 59962 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 59963 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 59964 -NCIT:C163974 Unresectable Thyroid Gland Medullary Carcinoma 7 59965 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 8 59966 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 7 59967 -NCIT:C4193 Thyroid Gland Medullary Carcinoma with Amyloid Stroma 7 59968 -NCIT:C46098 Sporadic Thyroid Gland Medullary Carcinoma 7 59969 -NCIT:C46103 Sporadic Thyroid Gland Micromedullary Carcinoma 8 59970 -NCIT:C46099 Hereditary Thyroid Gland Medullary Carcinoma 7 59971 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 8 59972 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 8 59973 -NCIT:C162569 Localized Head and Neck Carcinoma 5 59974 -NCIT:C7826 Localized Parathyroid Gland Carcinoma 6 59975 -NCIT:C165174 Unresectable Head and Neck Carcinoma 5 59976 -NCIT:C129784 Unresectable Thyroid Gland Carcinoma 6 59977 -NCIT:C163974 Unresectable Thyroid Gland Medullary Carcinoma 7 59978 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 8 59979 -NCIT:C168572 Unresectable Differentiated Thyroid Gland Carcinoma 7 59980 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 8 59981 -NCIT:C174571 Unresectable Thyroid Gland Follicular Carcinoma 8 59982 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 9 59983 -NCIT:C170833 Unresectable Thyroid Gland Anaplastic Carcinoma 7 59984 -NCIT:C174569 Unresectable Poorly Differentiated Thyroid Gland Carcinoma 7 59985 -NCIT:C136427 Unresectable Head and Neck Squamous Cell Carcinoma 6 59986 -NCIT:C162833 Unresectable Oropharyngeal Squamous Cell Carcinoma 7 59987 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 8 59988 -NCIT:C172644 Unresectable Oral Cavity Squamous Cell Carcinoma 7 59989 -NCIT:C172645 Unresectable Laryngeal Squamous Cell Carcinoma 7 59990 -NCIT:C172646 Unresectable Hypopharyngeal Squamous Cell Carcinoma 7 59991 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 7 59992 -NCIT:C172651 Unresectable Salivary Gland Squamous Cell Carcinoma 7 59993 -NCIT:C176513 Unresectable Sinonasal Squamous Cell Carcinoma 7 59994 -NCIT:C172648 Unresectable Paranasal Sinus Squamous Cell Carcinoma 8 59995 -NCIT:C176514 Unresectable Nasal Cavity Squamous Cell Carcinoma 8 59996 -NCIT:C165176 Unresectable Nasopharyngeal Carcinoma 6 59997 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 7 59998 -NCIT:C174034 Unresectable Salivary Gland Carcinoma 6 59999 -NCIT:C172651 Unresectable Salivary Gland Squamous Cell Carcinoma 7 60000 -NCIT:C173087 Head and Neck NUT Carcinoma 5 60001 -NCIT:C173088 Sinonasal NUT Carcinoma 6 60002 -NCIT:C190278 Childhood Head and Neck NUT Carcinoma 6 60003 -NCIT:C173588 Head and Neck Heterotopia-Associated Carcinoma 5 60004 -NCIT:C34447 Head and Neck Squamous Cell Carcinoma 5 60005 -NCIT:C102872 Pharyngeal Squamous Cell Carcinoma 6 60006 -NCIT:C167265 Nasopharyngeal Squamous Cell Carcinoma 7 60007 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 8 60008 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 60009 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 60010 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 60011 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 60012 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 60013 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 60014 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 60015 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 60016 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 8 60017 -NCIT:C54360 Nasopharyngeal Basaloid Carcinoma 8 60018 -NCIT:C7373 Nasopharyngeal Nonkeratinizing Carcinoma 8 60019 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 60020 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 60021 -NCIT:C54389 Nasopharyngeal Differentiated Carcinoma 9 60022 -NCIT:C8023 Nasopharyngeal Undifferentiated Carcinoma 9 60023 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 60024 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 10 60025 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 60026 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 60027 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 60028 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 60029 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 60030 -NCIT:C7992 Nasopharyngeal Keratinizing Squamous Cell Carcinoma 8 60031 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 60032 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 9 60033 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 60034 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 60035 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 60036 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 60037 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 60038 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 60039 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 60040 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 60041 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 7 60042 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 8 60043 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 60044 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 60045 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 60046 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 8 60047 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 60048 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 60049 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 60050 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 60051 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 60052 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 8 60053 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 60054 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 60055 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 60056 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 60057 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 60058 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 60059 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 7 60060 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 60061 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 60062 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 60063 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 60064 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 60065 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 60066 -NCIT:C35693 Posterior Pharyngeal Wall Squamous Cell Carcinoma 7 60067 -NCIT:C4043 Hypopharyngeal Squamous Cell Carcinoma 7 60068 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 8 60069 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 8 60070 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 60071 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 60072 -NCIT:C172646 Unresectable Hypopharyngeal Squamous Cell Carcinoma 8 60073 -NCIT:C4943 Pyriform Fossa Squamous Cell Carcinoma 8 60074 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 8 60075 -NCIT:C8185 Postcricoid Squamous Cell Carcinoma 8 60076 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 8 60077 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 8 60078 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 8 60079 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 8 60080 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 60081 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 60082 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 60083 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 60084 -NCIT:C8181 Oropharyngeal Squamous Cell Carcinoma 7 60085 -NCIT:C126750 Oropharyngeal Poorly Differentiated Carcinoma 8 60086 -NCIT:C126751 Oropharyngeal Basaloid Carcinoma 8 60087 -NCIT:C147906 Oropharyngeal p16INK4a-Negative Squamous Cell Carcinoma 8 60088 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 8 60089 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 8 60090 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 60091 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 60092 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 60093 -NCIT:C162787 Resectable Oropharyngeal Squamous Cell Carcinoma 8 60094 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 9 60095 -NCIT:C162833 Unresectable Oropharyngeal Squamous Cell Carcinoma 8 60096 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 9 60097 -NCIT:C173414 Oropharyngeal Human Papillomavirus-Negative Squamous Cell Carcinoma 8 60098 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 8 60099 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 8 60100 -NCIT:C68610 Oropharyngeal Undifferentiated Carcinoma 8 60101 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 9 60102 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 9 60103 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 9 60104 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 9 60105 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 60106 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 60107 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 60108 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 60109 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 9 60110 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 9 60111 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 9 60112 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 9 60113 -NCIT:C8183 Tonsillar Squamous Cell Carcinoma 8 60114 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 9 60115 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 8 60116 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 9 60117 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 8 60118 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 9 60119 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 8 60120 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 9 60121 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 8 60122 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 9 60123 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 60124 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 60125 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 60126 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 9 60127 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 60128 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 9 60129 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 60130 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 9 60131 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 60132 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 60133 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 60134 -NCIT:C87055 Oropharyngeal Human Papillomavirus-Positive Squamous Cell Carcinoma 8 60135 -NCIT:C132012 Resectable Head and Neck Squamous Cell Carcinoma 6 60136 -NCIT:C162787 Resectable Oropharyngeal Squamous Cell Carcinoma 7 60137 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 8 60138 -NCIT:C162943 Resectable Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 60139 -NCIT:C133252 Cutaneous Squamous Cell Carcinoma of the Head and Neck 6 60140 -NCIT:C133253 Cutaneous Squamous Cell Carcinoma of the Head and Neck by AJCC v8 Stage 7 60141 -NCIT:C133255 Stage 0 Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 60142 -NCIT:C133256 Stage I Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 60143 -NCIT:C133257 Stage II Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 60144 -NCIT:C133258 Stage III Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 60145 -NCIT:C133259 Stage IV Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 60146 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 60147 -NCIT:C162943 Resectable Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 60148 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 60149 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 60150 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 60151 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 60152 -NCIT:C6083 External Ear Squamous Cell Carcinoma 7 60153 -NCIT:C133709 Recurrent Head and Neck Squamous Cell Carcinoma 6 60154 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 60155 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 60156 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 60157 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 60158 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 60159 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 60160 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 60161 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 60162 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 60163 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 7 60164 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 60165 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 60166 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 60167 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 60168 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 60169 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 60170 -NCIT:C176682 Locally Recurrent Head and Neck Squamous Cell Carcinoma 7 60171 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 7 60172 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 60173 -NCIT:C136427 Unresectable Head and Neck Squamous Cell Carcinoma 6 60174 -NCIT:C162833 Unresectable Oropharyngeal Squamous Cell Carcinoma 7 60175 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 8 60176 -NCIT:C172644 Unresectable Oral Cavity Squamous Cell Carcinoma 7 60177 -NCIT:C172645 Unresectable Laryngeal Squamous Cell Carcinoma 7 60178 -NCIT:C172646 Unresectable Hypopharyngeal Squamous Cell Carcinoma 7 60179 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 7 60180 -NCIT:C172651 Unresectable Salivary Gland Squamous Cell Carcinoma 7 60181 -NCIT:C176513 Unresectable Sinonasal Squamous Cell Carcinoma 7 60182 -NCIT:C172648 Unresectable Paranasal Sinus Squamous Cell Carcinoma 8 60183 -NCIT:C176514 Unresectable Nasal Cavity Squamous Cell Carcinoma 8 60184 -NCIT:C148152 Refractory Head and Neck Squamous Cell Carcinoma 6 60185 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 7 60186 -NCIT:C148383 Refractory Laryngeal Squamous Cell Carcinoma 7 60187 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 7 60188 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 7 60189 -NCIT:C148401 Refractory Sinonasal Squamous Cell Carcinoma 7 60190 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 60191 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 60192 -NCIT:C148153 Metastatic Head and Neck Squamous Cell Carcinoma 6 60193 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 7 60194 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 60195 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 60196 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 60197 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 60198 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 60199 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 60200 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 60201 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 7 60202 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 60203 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 60204 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 7 60205 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 60206 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 60207 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 7 60208 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 7 60209 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 60210 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 60211 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 60212 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 8 60213 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 9 60214 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 60215 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 60216 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 8 60217 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 60218 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 60219 -NCIT:C162882 Metastatic Sinonasal Squamous Cell Carcinoma 7 60220 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 60221 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 60222 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 60223 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 60224 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 60225 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 60226 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 60227 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 60228 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 60229 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 60230 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 7 60231 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 7 60232 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 8 60233 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 60234 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 60235 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 60236 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 8 60237 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 60238 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 60239 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 60240 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 60241 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 60242 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 8 60243 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 60244 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 60245 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 60246 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 60247 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 60248 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 60249 -NCIT:C162770 ASPH-Positive Head and Neck Squamous Cell Carcinoma 6 60250 -NCIT:C171023 Human Papillomavirus-Related Mucosal Head and Neck Squamous Cell Carcinoma 6 60251 -NCIT:C173078 Sinonasal Human Papillomavirus-Related Carcinoma with Adenoid Cystic-Like Features 7 60252 -NCIT:C87055 Oropharyngeal Human Papillomavirus-Positive Squamous Cell Carcinoma 7 60253 -NCIT:C37290 Head and Neck Basaloid Carcinoma 6 60254 -NCIT:C126751 Oropharyngeal Basaloid Carcinoma 7 60255 -NCIT:C129873 Floor of Mouth Basaloid Squamous Cell Carcinoma 7 60256 -NCIT:C54334 Laryngeal Basaloid Carcinoma 7 60257 -NCIT:C54360 Nasopharyngeal Basaloid Carcinoma 7 60258 -NCIT:C4044 Laryngeal Squamous Cell Carcinoma 6 60259 -NCIT:C148383 Refractory Laryngeal Squamous Cell Carcinoma 7 60260 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 7 60261 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 60262 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 60263 -NCIT:C172645 Unresectable Laryngeal Squamous Cell Carcinoma 7 60264 -NCIT:C4945 Supraglottic Squamous Cell Carcinoma 7 60265 -NCIT:C181714 Epiglottic Squamous Cell Carcinoma 8 60266 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 9 60267 -NCIT:C8191 Supraglottic Verrucous Carcinoma 8 60268 -NCIT:C54334 Laryngeal Basaloid Carcinoma 7 60269 -NCIT:C54335 Laryngeal Papillary Squamous Cell Carcinoma 7 60270 -NCIT:C54336 Laryngeal Squamous Cell Carcinoma, Spindle Cell Variant 7 60271 -NCIT:C54337 Laryngeal Acantholytic Squamous Cell Carcinoma 7 60272 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 7 60273 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 8 60274 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 8 60275 -NCIT:C8186 Glottic Squamous Cell Carcinoma 7 60276 -NCIT:C8189 Glottis Verrucous Carcinoma 8 60277 -NCIT:C8187 Subglottic Squamous Cell Carcinoma 7 60278 -NCIT:C8190 Subglottic Verrucous Carcinoma 8 60279 -NCIT:C8188 Laryngeal Verrucous Carcinoma 7 60280 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 8 60281 -NCIT:C8189 Glottis Verrucous Carcinoma 8 60282 -NCIT:C8190 Subglottic Verrucous Carcinoma 8 60283 -NCIT:C8191 Supraglottic Verrucous Carcinoma 8 60284 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 60285 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 60286 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 60287 -NCIT:C8244 Stage IV Laryngeal Verrucous Carcinoma AJCC v7 8 60288 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 9 60289 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 9 60290 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 9 60291 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 60292 -NCIT:C8237 Stage I Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 7 60293 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 60294 -NCIT:C8239 Stage II Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 7 60295 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 60296 -NCIT:C8241 Stage III Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 7 60297 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 60298 -NCIT:C8243 Stage IV Laryngeal Squamous Cell Carcinoma AJCC v7 7 60299 -NCIT:C6122 Stage IVA Laryngeal Squamous Cell Carcinoma AJCC v7 8 60300 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 9 60301 -NCIT:C6123 Stage IVB Laryngeal Squamous Cell Carcinoma AJCC v7 8 60302 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 9 60303 -NCIT:C6124 Stage IVC Laryngeal Squamous Cell Carcinoma AJCC v7 8 60304 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 9 60305 -NCIT:C8244 Stage IV Laryngeal Verrucous Carcinoma AJCC v7 8 60306 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 9 60307 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 9 60308 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 9 60309 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 7 60310 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 60311 -NCIT:C42690 Lip and Oral Cavity Squamous Cell Carcinoma 6 60312 -NCIT:C115057 Stage I Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 60313 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 60314 -NCIT:C115058 Stage II Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 60315 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 60316 -NCIT:C115059 Stage III Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 60317 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 60318 -NCIT:C115060 Stage IV Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 60319 -NCIT:C115061 Stage IVA Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 60320 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 60321 -NCIT:C115062 Stage IVB Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 60322 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 60323 -NCIT:C115063 Stage IVC Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 60324 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 60325 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 60326 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 60327 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 60328 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 60329 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 60330 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 60331 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 60332 -NCIT:C4042 Lip Squamous Cell Carcinoma 7 60333 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 60334 -NCIT:C4833 Oral Cavity Squamous Cell Carcinoma 7 60335 -NCIT:C129857 Gingival Squamous Cell Carcinoma 8 60336 -NCIT:C129289 Gingival Spindle Cell Carcinoma 9 60337 -NCIT:C8171 Lower Gingival Squamous Cell Carcinoma 9 60338 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 10 60339 -NCIT:C8172 Retromolar Trigone Squamous Cell Carcinoma 9 60340 -NCIT:C8173 Upper Gingival Squamous Cell Carcinoma 9 60341 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 10 60342 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 8 60343 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 60344 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 60345 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 60346 -NCIT:C170774 Alveolar Ridge Squamous Cell Carcinoma 8 60347 -NCIT:C170775 Upper Alveolar Ridge Squamous Cell Carcinoma 9 60348 -NCIT:C170776 Lower Alveolar Ridge Squamous Cell Carcinoma 9 60349 -NCIT:C172644 Unresectable Oral Cavity Squamous Cell Carcinoma 8 60350 -NCIT:C4040 Buccal Mucosa Squamous Cell Carcinoma 8 60351 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 9 60352 -NCIT:C4041 Floor of Mouth Squamous Cell Carcinoma 8 60353 -NCIT:C129873 Floor of Mouth Basaloid Squamous Cell Carcinoma 9 60354 -NCIT:C4648 Tongue Squamous Cell Carcinoma 8 60355 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 60356 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 60357 -NCIT:C4649 Palate Squamous Cell Carcinoma 8 60358 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 60359 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 60360 -NCIT:C54295 Primary Intraosseous Squamous Cell Carcinoma 8 60361 -NCIT:C54303 Primary Intraosseous Squamous Cell Carcinoma Derived From Keratocystic Odontogenic Tumor 9 60362 -NCIT:C7491 Primary Intraosseous Squamous Cell Carcinoma-Solid Type 9 60363 -NCIT:C7498 Keratinizing Primary Intraosseous Squamous Cell Carcinoma-Solid Type 10 60364 -NCIT:C7499 Non-Keratinizing Primary Intraosseous Squamous Cell Carcinoma -Solid Type 10 60365 -NCIT:C7500 Primary Intraosseous Squamous Cell Carcinoma Derived From Odontogenic Cyst 9 60366 -NCIT:C6052 Stage 0 Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 60367 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 60368 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 60369 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 60370 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 60371 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 60372 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 60373 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 60374 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 60375 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 60376 -NCIT:C8174 Oral Cavity Verrucous Carcinoma 8 60377 -NCIT:C179894 Oral Cavity Carcinoma Cuniculatum 9 60378 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 9 60379 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 9 60380 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 9 60381 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 60382 -NCIT:C54283 Head and Neck Keratinizing Squamous Cell Carcinoma 6 60383 -NCIT:C173077 Sinonasal Keratinizing Squamous Cell Carcinoma 7 60384 -NCIT:C54284 Paranasal Sinus Keratinizing Squamous Cell Carcinoma 8 60385 -NCIT:C54285 Nasal Cavity Keratinizing Squamous Cell Carcinoma 8 60386 -NCIT:C6083 External Ear Squamous Cell Carcinoma 7 60387 -NCIT:C6086 Middle Ear Squamous Cell Carcinoma 7 60388 -NCIT:C7498 Keratinizing Primary Intraosseous Squamous Cell Carcinoma-Solid Type 7 60389 -NCIT:C7992 Nasopharyngeal Keratinizing Squamous Cell Carcinoma 7 60390 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 8 60391 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 8 60392 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 8 60393 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 8 60394 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 8 60395 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 8 60396 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 60397 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 60398 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 60399 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 8 60400 -NCIT:C68611 Sinonasal Squamous Cell Carcinoma 6 60401 -NCIT:C115070 Stage I Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 7 60402 -NCIT:C115071 Stage II Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 7 60403 -NCIT:C115072 Stage III Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 7 60404 -NCIT:C115073 Stage IV Sinonasal Squamous Cell Carcinoma AJCC v7 7 60405 -NCIT:C115074 Stage IVA Sinonasal Squamous Cell Carcinoma AJCC v7 8 60406 -NCIT:C115075 Stage IVB Sinonasal Squamous Cell Carcinoma AJCC v7 8 60407 -NCIT:C115076 Stage IVC Sinonasal Squamous Cell Carcinoma AJCC v7 8 60408 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 60409 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 60410 -NCIT:C148401 Refractory Sinonasal Squamous Cell Carcinoma 7 60411 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 60412 -NCIT:C162882 Metastatic Sinonasal Squamous Cell Carcinoma 7 60413 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 60414 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 60415 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 60416 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 60417 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 60418 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 60419 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 60420 -NCIT:C173077 Sinonasal Keratinizing Squamous Cell Carcinoma 7 60421 -NCIT:C54284 Paranasal Sinus Keratinizing Squamous Cell Carcinoma 8 60422 -NCIT:C54285 Nasal Cavity Keratinizing Squamous Cell Carcinoma 8 60423 -NCIT:C173079 Sinonasal Spindle Cell Squamous Cell Carcinoma 7 60424 -NCIT:C176513 Unresectable Sinonasal Squamous Cell Carcinoma 7 60425 -NCIT:C172648 Unresectable Paranasal Sinus Squamous Cell Carcinoma 8 60426 -NCIT:C176514 Unresectable Nasal Cavity Squamous Cell Carcinoma 8 60427 -NCIT:C54287 Sinonasal Non-Keratinizing Squamous Cell Carcinoma 7 60428 -NCIT:C173078 Sinonasal Human Papillomavirus-Related Carcinoma with Adenoid Cystic-Like Features 8 60429 -NCIT:C173080 Sinonasal Lymphoepithelial Carcinoma 8 60430 -NCIT:C8192 Nasal Cavity Squamous Cell Carcinoma 7 60431 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 60432 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 60433 -NCIT:C176514 Unresectable Nasal Cavity Squamous Cell Carcinoma 8 60434 -NCIT:C54285 Nasal Cavity Keratinizing Squamous Cell Carcinoma 8 60435 -NCIT:C8193 Paranasal Sinus Squamous Cell Carcinoma 7 60436 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 60437 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 60438 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 60439 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 60440 -NCIT:C172648 Unresectable Paranasal Sinus Squamous Cell Carcinoma 8 60441 -NCIT:C54284 Paranasal Sinus Keratinizing Squamous Cell Carcinoma 8 60442 -NCIT:C6064 Maxillary Sinus Squamous Cell Carcinoma 8 60443 -NCIT:C6065 Ethmoid Sinus Squamous Cell Carcinoma 8 60444 -NCIT:C6066 Sphenoid Sinus Squamous Cell Carcinoma 8 60445 -NCIT:C6067 Frontal Sinus Squamous Cell Carcinoma 8 60446 -NCIT:C7991 Salivary Gland Squamous Cell Carcinoma 6 60447 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 7 60448 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 60449 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 60450 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 60451 -NCIT:C172651 Unresectable Salivary Gland Squamous Cell Carcinoma 7 60452 -NCIT:C181161 Major Salivary Gland Squamous Cell Carcinoma 7 60453 -NCIT:C5942 Parotid Gland Squamous Cell Carcinoma 8 60454 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 9 60455 -NCIT:C5943 Submandibular Gland Squamous Cell Carcinoma 8 60456 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 9 60457 -NCIT:C5959 Minor Salivary Gland Squamous Cell Carcinoma 7 60458 -NCIT:C8022 Salivary Gland Poorly Differentiated Squamous Cell Carcinoma 7 60459 -NCIT:C54262 Ear Carcinoma 5 60460 -NCIT:C6081 External Ear Carcinoma 6 60461 -NCIT:C4176 Ceruminous Adenocarcinoma 7 60462 -NCIT:C6082 External Ear Basal Cell Carcinoma 7 60463 -NCIT:C6083 External Ear Squamous Cell Carcinoma 7 60464 -NCIT:C6089 Middle Ear Carcinoma 6 60465 -NCIT:C6086 Middle Ear Squamous Cell Carcinoma 7 60466 -NCIT:C6848 Middle Ear Adenocarcinoma 7 60467 -NCIT:C91741 Middle Ear Carcinoma In Situ 7 60468 -NCIT:C54293 Sinonasal Carcinoma 5 60469 -NCIT:C133074 Sinonasal Cancer by AJCC v8 Stage 6 60470 -NCIT:C133076 Stage I Sinonasal Cancer AJCC v8 7 60471 -NCIT:C133077 Stage II Sinonasal Cancer AJCC v8 7 60472 -NCIT:C133078 Stage III Sinonasal Cancer AJCC v8 7 60473 -NCIT:C133079 Stage IV Sinonasal Cancer AJCC v8 7 60474 -NCIT:C133080 Stage IVA Sinonasal Cancer AJCC v8 8 60475 -NCIT:C133081 Stage IVB Sinonasal Cancer AJCC v8 8 60476 -NCIT:C133082 Stage IVC Sinonasal Cancer AJCC v8 8 60477 -NCIT:C87498 Stage 0 Sinonasal Cancer AJCC v6, v7, and v8 7 60478 -NCIT:C4589 Stage 0 Nasal Cavity Cancer AJCC v6, v7, and v8 8 60479 -NCIT:C94768 Stage 0 Paranasal Sinus Cancer AJCC v6, v7, and v8 8 60480 -NCIT:C154324 Sinonasal Poorly Differentiated Carcinoma 6 60481 -NCIT:C173088 Sinonasal NUT Carcinoma 7 60482 -NCIT:C160976 Sinonasal Adenocarcinoma 6 60483 -NCIT:C161007 Sinonasal Adenocarcinoma, Salivary-Type 7 60484 -NCIT:C161008 Sinonasal Adenocarcinoma, Non-Salivary-Type 7 60485 -NCIT:C116316 Sinonasal Adenocarcinoma, Intestinal-Type 8 60486 -NCIT:C160984 Sinonasal Adenocarcinoma, Intestinal-Type with Papillary Pattern 9 60487 -NCIT:C160986 Sinonasal Adenocarcinoma, Intestinal-Type with Colonic Pattern 9 60488 -NCIT:C160987 Sinonasal Adenocarcinoma, Intestinal-Type with Solid Pattern 9 60489 -NCIT:C160995 Sinonasal Adenocarcinoma, Intestinal-Type with Mucinous Pattern 9 60490 -NCIT:C161000 Sinonasal Adenocarcinoma, Intestinal-Type with Mixed Pattern 9 60491 -NCIT:C160977 Sinonasal Adenocarcinoma, Non-Intestinal-Type 8 60492 -NCIT:C6015 Nasal Cavity Adenocarcinoma 7 60493 -NCIT:C6017 Paranasal Sinus Adenocarcinoma 7 60494 -NCIT:C6237 Ethmoid Sinus Adenocarcinoma 8 60495 -NCIT:C6240 Maxillary Sinus Adenocarcinoma 8 60496 -NCIT:C173089 Sinonasal Neuroendocrine Carcinoma 6 60497 -NCIT:C116318 Sinonasal Small Cell Neuroendocrine Carcinoma 7 60498 -NCIT:C173091 Sinonasal Large Cell Neuroendocrine Carcinoma 7 60499 -NCIT:C180670 Low Grade Papillary Schneiderian Carcinoma 6 60500 -NCIT:C54294 Sinonasal Undifferentiated Carcinoma 6 60501 -NCIT:C6014 Paranasal Sinus Carcinoma 6 60502 -NCIT:C118818 Childhood Paranasal Sinus Carcinoma 7 60503 -NCIT:C165563 Locally Advanced Paranasal Sinus Carcinoma 7 60504 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 8 60505 -NCIT:C6006 Stage I Paranasal Sinus Cancer 7 60506 -NCIT:C6007 Stage II Paranasal Sinus Cancer AJCC v6 and v7 7 60507 -NCIT:C6008 Stage III Paranasal Sinus Cancer AJCC v6 and v7 7 60508 -NCIT:C6009 Stage IV Paranasal Sinus Cancer AJCC v7 7 60509 -NCIT:C6070 Stage IVA Paranasal Sinus Cancer AJCC v7 8 60510 -NCIT:C6071 Stage IVB Paranasal Sinus Cancer AJCC v7 8 60511 -NCIT:C6072 Stage IVC Paranasal Sinus Cancer AJCC v7 8 60512 -NCIT:C6017 Paranasal Sinus Adenocarcinoma 7 60513 -NCIT:C6237 Ethmoid Sinus Adenocarcinoma 8 60514 -NCIT:C6240 Maxillary Sinus Adenocarcinoma 8 60515 -NCIT:C6018 Paranasal Sinus Mucoepidermoid Carcinoma 7 60516 -NCIT:C6019 Paranasal Sinus Adenoid Cystic Carcinoma 7 60517 -NCIT:C6238 Ethmoid Sinus Adenoid Cystic Carcinoma 8 60518 -NCIT:C6239 Maxillary Sinus Adenoid Cystic Carcinoma 8 60519 -NCIT:C8193 Paranasal Sinus Squamous Cell Carcinoma 7 60520 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 60521 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 60522 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 60523 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 60524 -NCIT:C172648 Unresectable Paranasal Sinus Squamous Cell Carcinoma 8 60525 -NCIT:C54284 Paranasal Sinus Keratinizing Squamous Cell Carcinoma 8 60526 -NCIT:C6064 Maxillary Sinus Squamous Cell Carcinoma 8 60527 -NCIT:C6065 Ethmoid Sinus Squamous Cell Carcinoma 8 60528 -NCIT:C6066 Sphenoid Sinus Squamous Cell Carcinoma 8 60529 -NCIT:C6067 Frontal Sinus Squamous Cell Carcinoma 8 60530 -NCIT:C9332 Maxillary Sinus Carcinoma 7 60531 -NCIT:C6064 Maxillary Sinus Squamous Cell Carcinoma 8 60532 -NCIT:C6239 Maxillary Sinus Adenoid Cystic Carcinoma 8 60533 -NCIT:C6240 Maxillary Sinus Adenocarcinoma 8 60534 -NCIT:C94768 Stage 0 Paranasal Sinus Cancer AJCC v6, v7, and v8 7 60535 -NCIT:C67558 Recurrent Sinonasal Carcinoma 6 60536 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 60537 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 60538 -NCIT:C68611 Sinonasal Squamous Cell Carcinoma 6 60539 -NCIT:C115070 Stage I Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 7 60540 -NCIT:C115071 Stage II Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 7 60541 -NCIT:C115072 Stage III Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 7 60542 -NCIT:C115073 Stage IV Sinonasal Squamous Cell Carcinoma AJCC v7 7 60543 -NCIT:C115074 Stage IVA Sinonasal Squamous Cell Carcinoma AJCC v7 8 60544 -NCIT:C115075 Stage IVB Sinonasal Squamous Cell Carcinoma AJCC v7 8 60545 -NCIT:C115076 Stage IVC Sinonasal Squamous Cell Carcinoma AJCC v7 8 60546 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 60547 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 60548 -NCIT:C148401 Refractory Sinonasal Squamous Cell Carcinoma 7 60549 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 60550 -NCIT:C162882 Metastatic Sinonasal Squamous Cell Carcinoma 7 60551 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 60552 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 60553 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 60554 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 60555 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 60556 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 60557 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 60558 -NCIT:C173077 Sinonasal Keratinizing Squamous Cell Carcinoma 7 60559 -NCIT:C54284 Paranasal Sinus Keratinizing Squamous Cell Carcinoma 8 60560 -NCIT:C54285 Nasal Cavity Keratinizing Squamous Cell Carcinoma 8 60561 -NCIT:C173079 Sinonasal Spindle Cell Squamous Cell Carcinoma 7 60562 -NCIT:C176513 Unresectable Sinonasal Squamous Cell Carcinoma 7 60563 -NCIT:C172648 Unresectable Paranasal Sinus Squamous Cell Carcinoma 8 60564 -NCIT:C176514 Unresectable Nasal Cavity Squamous Cell Carcinoma 8 60565 -NCIT:C54287 Sinonasal Non-Keratinizing Squamous Cell Carcinoma 7 60566 -NCIT:C173078 Sinonasal Human Papillomavirus-Related Carcinoma with Adenoid Cystic-Like Features 8 60567 -NCIT:C173080 Sinonasal Lymphoepithelial Carcinoma 8 60568 -NCIT:C8192 Nasal Cavity Squamous Cell Carcinoma 7 60569 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 60570 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 60571 -NCIT:C176514 Unresectable Nasal Cavity Squamous Cell Carcinoma 8 60572 -NCIT:C54285 Nasal Cavity Keratinizing Squamous Cell Carcinoma 8 60573 -NCIT:C8193 Paranasal Sinus Squamous Cell Carcinoma 7 60574 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 60575 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 60576 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 60577 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 60578 -NCIT:C172648 Unresectable Paranasal Sinus Squamous Cell Carcinoma 8 60579 -NCIT:C54284 Paranasal Sinus Keratinizing Squamous Cell Carcinoma 8 60580 -NCIT:C6064 Maxillary Sinus Squamous Cell Carcinoma 8 60581 -NCIT:C6065 Ethmoid Sinus Squamous Cell Carcinoma 8 60582 -NCIT:C6066 Sphenoid Sinus Squamous Cell Carcinoma 8 60583 -NCIT:C6067 Frontal Sinus Squamous Cell Carcinoma 8 60584 -NCIT:C90528 Sinonasal Cancer by AJCC v6 Stage 6 60585 -NCIT:C67554 Stage I Sinonasal Cancer AJCC v6 and v7 7 60586 -NCIT:C115070 Stage I Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 8 60587 -NCIT:C6006 Stage I Paranasal Sinus Cancer 8 60588 -NCIT:C6013 Stage I Nasal Cavity Cancer AJCC v6 and v7 8 60589 -NCIT:C67555 Stage II Sinonasal Cancer AJCC v6 and v7 7 60590 -NCIT:C115071 Stage II Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 8 60591 -NCIT:C6007 Stage II Paranasal Sinus Cancer AJCC v6 and v7 8 60592 -NCIT:C6012 Stage II Nasal Cavity Cancer AJCC v6 and v7 8 60593 -NCIT:C67556 Stage III Sinonasal Cancer AJCC v6 and v7 7 60594 -NCIT:C115072 Stage III Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 8 60595 -NCIT:C6008 Stage III Paranasal Sinus Cancer AJCC v6 and v7 8 60596 -NCIT:C6011 Stage III Nasal Cavity Cancer AJCC v6 and v7 8 60597 -NCIT:C67557 Stage IV Sinonasal Cancer AJCC v6 7 60598 -NCIT:C87498 Stage 0 Sinonasal Cancer AJCC v6, v7, and v8 7 60599 -NCIT:C4589 Stage 0 Nasal Cavity Cancer AJCC v6, v7, and v8 8 60600 -NCIT:C94768 Stage 0 Paranasal Sinus Cancer AJCC v6, v7, and v8 8 60601 -NCIT:C91255 Sinonasal Cancer by AJCC v7 Stage 6 60602 -NCIT:C67554 Stage I Sinonasal Cancer AJCC v6 and v7 7 60603 -NCIT:C115070 Stage I Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 8 60604 -NCIT:C6006 Stage I Paranasal Sinus Cancer 8 60605 -NCIT:C6013 Stage I Nasal Cavity Cancer AJCC v6 and v7 8 60606 -NCIT:C67555 Stage II Sinonasal Cancer AJCC v6 and v7 7 60607 -NCIT:C115071 Stage II Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 8 60608 -NCIT:C6007 Stage II Paranasal Sinus Cancer AJCC v6 and v7 8 60609 -NCIT:C6012 Stage II Nasal Cavity Cancer AJCC v6 and v7 8 60610 -NCIT:C67556 Stage III Sinonasal Cancer AJCC v6 and v7 7 60611 -NCIT:C115072 Stage III Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 8 60612 -NCIT:C6008 Stage III Paranasal Sinus Cancer AJCC v6 and v7 8 60613 -NCIT:C6011 Stage III Nasal Cavity Cancer AJCC v6 and v7 8 60614 -NCIT:C87498 Stage 0 Sinonasal Cancer AJCC v6, v7, and v8 7 60615 -NCIT:C4589 Stage 0 Nasal Cavity Cancer AJCC v6, v7, and v8 8 60616 -NCIT:C94768 Stage 0 Paranasal Sinus Cancer AJCC v6, v7, and v8 8 60617 -NCIT:C89117 Stage IV Sinonasal Cancer AJCC v7 7 60618 -NCIT:C115073 Stage IV Sinonasal Squamous Cell Carcinoma AJCC v7 8 60619 -NCIT:C115074 Stage IVA Sinonasal Squamous Cell Carcinoma AJCC v7 9 60620 -NCIT:C115075 Stage IVB Sinonasal Squamous Cell Carcinoma AJCC v7 9 60621 -NCIT:C115076 Stage IVC Sinonasal Squamous Cell Carcinoma AJCC v7 9 60622 -NCIT:C6009 Stage IV Paranasal Sinus Cancer AJCC v7 8 60623 -NCIT:C6070 Stage IVA Paranasal Sinus Cancer AJCC v7 9 60624 -NCIT:C6071 Stage IVB Paranasal Sinus Cancer AJCC v7 9 60625 -NCIT:C6072 Stage IVC Paranasal Sinus Cancer AJCC v7 9 60626 -NCIT:C6010 Stage IV Nasal Cavity Cancer 8 60627 -NCIT:C87501 Stage IVA Sinonasal Cancer AJCC v7 8 60628 -NCIT:C115074 Stage IVA Sinonasal Squamous Cell Carcinoma AJCC v7 9 60629 -NCIT:C6070 Stage IVA Paranasal Sinus Cancer AJCC v7 9 60630 -NCIT:C87502 Stage IVB Sinonasal Cancer AJCC v7 8 60631 -NCIT:C115075 Stage IVB Sinonasal Squamous Cell Carcinoma AJCC v7 9 60632 -NCIT:C6071 Stage IVB Paranasal Sinus Cancer AJCC v7 9 60633 -NCIT:C87503 Stage IVC Sinonasal Cancer AJCC v7 8 60634 -NCIT:C115076 Stage IVC Sinonasal Squamous Cell Carcinoma AJCC v7 9 60635 -NCIT:C6072 Stage IVC Paranasal Sinus Cancer AJCC v7 9 60636 -NCIT:C9336 Nasal Cavity Carcinoma 6 60637 -NCIT:C118817 Childhood Nasal Cavity Carcinoma 7 60638 -NCIT:C27389 Carcinoma Arising in Nasal Papillomatosis 7 60639 -NCIT:C4589 Stage 0 Nasal Cavity Cancer AJCC v6, v7, and v8 7 60640 -NCIT:C6010 Stage IV Nasal Cavity Cancer 7 60641 -NCIT:C6011 Stage III Nasal Cavity Cancer AJCC v6 and v7 7 60642 -NCIT:C6012 Stage II Nasal Cavity Cancer AJCC v6 and v7 7 60643 -NCIT:C6013 Stage I Nasal Cavity Cancer AJCC v6 and v7 7 60644 -NCIT:C6015 Nasal Cavity Adenocarcinoma 7 60645 -NCIT:C8192 Nasal Cavity Squamous Cell Carcinoma 7 60646 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 60647 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 60648 -NCIT:C176514 Unresectable Nasal Cavity Squamous Cell Carcinoma 8 60649 -NCIT:C54285 Nasal Cavity Keratinizing Squamous Cell Carcinoma 8 60650 -NCIT:C6077 Neck Carcinoma 5 60651 -NCIT:C35506 Throat Carcinoma 6 60652 -NCIT:C4855 Laryngeal Carcinoma 7 60653 -NCIT:C118811 Childhood Laryngeal Carcinoma 8 60654 -NCIT:C133156 Laryngeal Cancer by AJCC v8 Stage 8 60655 -NCIT:C133158 Stage I Laryngeal Cancer AJCC v8 9 60656 -NCIT:C133159 Stage II Laryngeal Cancer AJCC v8 9 60657 -NCIT:C133160 Stage III Laryngeal Cancer AJCC v8 9 60658 -NCIT:C133161 Stage IV Laryngeal Cancer AJCC v8 9 60659 -NCIT:C133162 Stage IVA Laryngeal Cancer AJCC v8 10 60660 -NCIT:C133163 Stage IVB Laryngeal Cancer AJCC v8 10 60661 -NCIT:C133164 Stage IVC Laryngeal Cancer AJCC v8 10 60662 -NCIT:C9100 Stage 0 Laryngeal Cancer AJCC v6, v7, and V8 9 60663 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 60664 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 11 60665 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 11 60666 -NCIT:C156085 Metastatic Laryngeal Carcinoma 8 60667 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 9 60668 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 10 60669 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 10 60670 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 9 60671 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 10 60672 -NCIT:C173390 Laryngeal Neuroendocrine Carcinoma 8 60673 -NCIT:C173395 Laryngeal Large Cell Neuroendocrine Carcinoma 9 60674 -NCIT:C6025 Laryngeal Small Cell Neuroendocrine Carcinoma 9 60675 -NCIT:C27929 Alcohol-Related Laryngeal Carcinoma 8 60676 -NCIT:C4034 Recurrent Laryngeal Carcinoma 8 60677 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 9 60678 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 10 60679 -NCIT:C4044 Laryngeal Squamous Cell Carcinoma 8 60680 -NCIT:C148383 Refractory Laryngeal Squamous Cell Carcinoma 9 60681 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 9 60682 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 10 60683 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 10 60684 -NCIT:C172645 Unresectable Laryngeal Squamous Cell Carcinoma 9 60685 -NCIT:C4945 Supraglottic Squamous Cell Carcinoma 9 60686 -NCIT:C181714 Epiglottic Squamous Cell Carcinoma 10 60687 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 11 60688 -NCIT:C8191 Supraglottic Verrucous Carcinoma 10 60689 -NCIT:C54334 Laryngeal Basaloid Carcinoma 9 60690 -NCIT:C54335 Laryngeal Papillary Squamous Cell Carcinoma 9 60691 -NCIT:C54336 Laryngeal Squamous Cell Carcinoma, Spindle Cell Variant 9 60692 -NCIT:C54337 Laryngeal Acantholytic Squamous Cell Carcinoma 9 60693 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 9 60694 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 10 60695 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 10 60696 -NCIT:C8186 Glottic Squamous Cell Carcinoma 9 60697 -NCIT:C8189 Glottis Verrucous Carcinoma 10 60698 -NCIT:C8187 Subglottic Squamous Cell Carcinoma 9 60699 -NCIT:C8190 Subglottic Verrucous Carcinoma 10 60700 -NCIT:C8188 Laryngeal Verrucous Carcinoma 9 60701 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 10 60702 -NCIT:C8189 Glottis Verrucous Carcinoma 10 60703 -NCIT:C8190 Subglottic Verrucous Carcinoma 10 60704 -NCIT:C8191 Supraglottic Verrucous Carcinoma 10 60705 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 60706 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 60707 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 60708 -NCIT:C8244 Stage IV Laryngeal Verrucous Carcinoma AJCC v7 10 60709 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 11 60710 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 11 60711 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 11 60712 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 10 60713 -NCIT:C8237 Stage I Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 9 60714 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 60715 -NCIT:C8239 Stage II Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 9 60716 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 60717 -NCIT:C8241 Stage III Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 9 60718 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 60719 -NCIT:C8243 Stage IV Laryngeal Squamous Cell Carcinoma AJCC v7 9 60720 -NCIT:C6122 Stage IVA Laryngeal Squamous Cell Carcinoma AJCC v7 10 60721 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 11 60722 -NCIT:C6123 Stage IVB Laryngeal Squamous Cell Carcinoma AJCC v7 10 60723 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 11 60724 -NCIT:C6124 Stage IVC Laryngeal Squamous Cell Carcinoma AJCC v7 10 60725 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 11 60726 -NCIT:C8244 Stage IV Laryngeal Verrucous Carcinoma AJCC v7 10 60727 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 11 60728 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 11 60729 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 11 60730 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 9 60731 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 10 60732 -NCIT:C4923 Glottis Carcinoma 8 60733 -NCIT:C8186 Glottic Squamous Cell Carcinoma 9 60734 -NCIT:C8189 Glottis Verrucous Carcinoma 10 60735 -NCIT:C54338 Laryngeal Adenosquamous Carcinoma 8 60736 -NCIT:C54339 Laryngeal Undifferentiated Carcinoma 8 60737 -NCIT:C54341 Laryngeal Lymphoepithelial Carcinoma 9 60738 -NCIT:C54342 Laryngeal Giant Cell Carcinoma 9 60739 -NCIT:C5972 Subglottic Carcinoma 8 60740 -NCIT:C8187 Subglottic Squamous Cell Carcinoma 9 60741 -NCIT:C8190 Subglottic Verrucous Carcinoma 10 60742 -NCIT:C5973 Supraglottic Carcinoma 8 60743 -NCIT:C35697 Epiglottic Carcinoma 9 60744 -NCIT:C181714 Epiglottic Squamous Cell Carcinoma 10 60745 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 11 60746 -NCIT:C4945 Supraglottic Squamous Cell Carcinoma 9 60747 -NCIT:C181714 Epiglottic Squamous Cell Carcinoma 10 60748 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 11 60749 -NCIT:C8191 Supraglottic Verrucous Carcinoma 10 60750 -NCIT:C90527 Laryngeal Cancer by AJCC v6 Stage 8 60751 -NCIT:C6868 Stage IV Laryngeal Cancer AJCC v6 9 60752 -NCIT:C8041 Stage I Laryngeal Cancer AJCC v6 and v7 9 60753 -NCIT:C8237 Stage I Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 10 60754 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 11 60755 -NCIT:C8042 Stage II Laryngeal Cancer AJCC v6 and v7 9 60756 -NCIT:C8239 Stage II Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 10 60757 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 11 60758 -NCIT:C8043 Stage III Laryngeal Cancer AJCC v6 and v7 9 60759 -NCIT:C8241 Stage III Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 10 60760 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 11 60761 -NCIT:C9100 Stage 0 Laryngeal Cancer AJCC v6, v7, and V8 9 60762 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 60763 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 11 60764 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 11 60765 -NCIT:C91256 Laryngeal Cancer by AJCC v7 Stage 8 60766 -NCIT:C8041 Stage I Laryngeal Cancer AJCC v6 and v7 9 60767 -NCIT:C8237 Stage I Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 10 60768 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 11 60769 -NCIT:C8042 Stage II Laryngeal Cancer AJCC v6 and v7 9 60770 -NCIT:C8239 Stage II Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 10 60771 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 11 60772 -NCIT:C8043 Stage III Laryngeal Cancer AJCC v6 and v7 9 60773 -NCIT:C8241 Stage III Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 10 60774 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 11 60775 -NCIT:C89091 Stage IV Laryngeal Cancer AJCC v7 9 60776 -NCIT:C6003 Stage IVC Laryngeal Cancer AJCC v7 10 60777 -NCIT:C6124 Stage IVC Laryngeal Squamous Cell Carcinoma AJCC v7 11 60778 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 12 60779 -NCIT:C6004 Stage IVB Laryngeal Cancer AJCC v7 10 60780 -NCIT:C6123 Stage IVB Laryngeal Squamous Cell Carcinoma AJCC v7 11 60781 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 12 60782 -NCIT:C6005 Stage IVA Laryngeal Cancer AJCC v7 10 60783 -NCIT:C6122 Stage IVA Laryngeal Squamous Cell Carcinoma AJCC v7 11 60784 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 12 60785 -NCIT:C8243 Stage IV Laryngeal Squamous Cell Carcinoma AJCC v7 10 60786 -NCIT:C6122 Stage IVA Laryngeal Squamous Cell Carcinoma AJCC v7 11 60787 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 12 60788 -NCIT:C6123 Stage IVB Laryngeal Squamous Cell Carcinoma AJCC v7 11 60789 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 12 60790 -NCIT:C6124 Stage IVC Laryngeal Squamous Cell Carcinoma AJCC v7 11 60791 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 12 60792 -NCIT:C8244 Stage IV Laryngeal Verrucous Carcinoma AJCC v7 11 60793 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 12 60794 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 12 60795 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 12 60796 -NCIT:C9100 Stage 0 Laryngeal Cancer AJCC v6, v7, and V8 9 60797 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 60798 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 11 60799 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 11 60800 -NCIT:C9462 Laryngeal Adenoid Cystic Carcinoma 8 60801 -NCIT:C9463 Laryngeal Mucoepidermoid Carcinoma 8 60802 -NCIT:C9466 Pharyngeal Carcinoma 7 60803 -NCIT:C102872 Pharyngeal Squamous Cell Carcinoma 8 60804 -NCIT:C167265 Nasopharyngeal Squamous Cell Carcinoma 9 60805 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 10 60806 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 60807 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 60808 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 11 60809 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 11 60810 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 60811 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 10 60812 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 60813 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 11 60814 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 10 60815 -NCIT:C54360 Nasopharyngeal Basaloid Carcinoma 10 60816 -NCIT:C7373 Nasopharyngeal Nonkeratinizing Carcinoma 10 60817 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 11 60818 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 60819 -NCIT:C54389 Nasopharyngeal Differentiated Carcinoma 11 60820 -NCIT:C8023 Nasopharyngeal Undifferentiated Carcinoma 11 60821 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 60822 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 12 60823 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 12 60824 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 12 60825 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 12 60826 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 12 60827 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 12 60828 -NCIT:C7992 Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 60829 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 60830 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 11 60831 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 60832 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 60833 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 60834 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 60835 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 60836 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 60837 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 60838 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 60839 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 9 60840 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 10 60841 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 60842 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 60843 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 60844 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 10 60845 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 60846 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 60847 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 11 60848 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 11 60849 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 60850 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 10 60851 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 60852 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 60853 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 10 60854 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 60855 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 60856 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 60857 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 9 60858 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 10 60859 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 60860 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 11 60861 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 10 60862 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 11 60863 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 10 60864 -NCIT:C35693 Posterior Pharyngeal Wall Squamous Cell Carcinoma 9 60865 -NCIT:C4043 Hypopharyngeal Squamous Cell Carcinoma 9 60866 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 10 60867 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 10 60868 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 60869 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 60870 -NCIT:C172646 Unresectable Hypopharyngeal Squamous Cell Carcinoma 10 60871 -NCIT:C4943 Pyriform Fossa Squamous Cell Carcinoma 10 60872 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 60873 -NCIT:C8185 Postcricoid Squamous Cell Carcinoma 10 60874 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 60875 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 60876 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 60877 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 60878 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 60879 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 60880 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 60881 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 10 60882 -NCIT:C8181 Oropharyngeal Squamous Cell Carcinoma 9 60883 -NCIT:C126750 Oropharyngeal Poorly Differentiated Carcinoma 10 60884 -NCIT:C126751 Oropharyngeal Basaloid Carcinoma 10 60885 -NCIT:C147906 Oropharyngeal p16INK4a-Negative Squamous Cell Carcinoma 10 60886 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 10 60887 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 10 60888 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 60889 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 60890 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 60891 -NCIT:C162787 Resectable Oropharyngeal Squamous Cell Carcinoma 10 60892 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 11 60893 -NCIT:C162833 Unresectable Oropharyngeal Squamous Cell Carcinoma 10 60894 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 11 60895 -NCIT:C173414 Oropharyngeal Human Papillomavirus-Negative Squamous Cell Carcinoma 10 60896 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 10 60897 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 60898 -NCIT:C68610 Oropharyngeal Undifferentiated Carcinoma 10 60899 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 60900 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 60901 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 60902 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 60903 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 60904 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 60905 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 60906 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 11 60907 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 60908 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 11 60909 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 11 60910 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 11 60911 -NCIT:C8183 Tonsillar Squamous Cell Carcinoma 10 60912 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 11 60913 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 60914 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 60915 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 60916 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 60917 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 60918 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 60919 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 60920 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 60921 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 60922 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 60923 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 60924 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 60925 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 60926 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 60927 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 60928 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 60929 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 60930 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 10 60931 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 11 60932 -NCIT:C87055 Oropharyngeal Human Papillomavirus-Positive Squamous Cell Carcinoma 10 60933 -NCIT:C132814 Pharyngeal Carcinoma by AJCC v8 Stage 8 60934 -NCIT:C132816 Nasopharyngeal Carcinoma by AJCC v8 Stage 9 60935 -NCIT:C132817 Stage I Nasopharyngeal Carcinoma AJCC v8 10 60936 -NCIT:C132818 Stage II Nasopharyngeal Carcinoma AJCC v8 10 60937 -NCIT:C132819 Stage III Nasopharyngeal Carcinoma AJCC v8 10 60938 -NCIT:C132820 Stage IV Nasopharyngeal Carcinoma AJCC v8 10 60939 -NCIT:C132821 Stage IVA Nasopharyngeal Carcinoma AJCC v8 11 60940 -NCIT:C132822 Stage IVB Nasopharyngeal Carcinoma AJCC v8 11 60941 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 10 60942 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 11 60943 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 11 60944 -NCIT:C132882 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Stage 9 60945 -NCIT:C132883 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Clinical Stage 10 60946 -NCIT:C132885 Clinical Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 60947 -NCIT:C132886 Clinical Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 60948 -NCIT:C132891 Clinical Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 60949 -NCIT:C132893 Clinical Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 60950 -NCIT:C132884 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Pathologic Stage 10 60951 -NCIT:C132898 Pathologic Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 60952 -NCIT:C132899 Pathologic Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 60953 -NCIT:C132900 Pathologic Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 60954 -NCIT:C132901 Pathologic Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 60955 -NCIT:C132994 Oropharyngeal (p16-Negative) Carcinoma by AJCC v8 Stage 9 60956 -NCIT:C132995 Stage 0 Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 60957 -NCIT:C132996 Stage I Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 60958 -NCIT:C132997 Stage II Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 60959 -NCIT:C132998 Stage III Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 60960 -NCIT:C132999 Stage IV Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 60961 -NCIT:C133000 Stage IVA Oropharyngeal (p16-Negative) Carcinoma AJCC v8 11 60962 -NCIT:C133001 Stage IVB Oropharyngeal (p16-Negative) Carcinoma AJCC v8 11 60963 -NCIT:C133002 Stage IVC Oropharyngeal (p16-Negative) Carcinoma AJCC v8 11 60964 -NCIT:C133003 Hypopharyngeal Carcinoma by AJCC v8 Stage 9 60965 -NCIT:C133005 Stage I Hypopharyngeal Carcinoma AJCC v8 10 60966 -NCIT:C133006 Stage II Hypopharyngeal Carcinoma AJCC v8 10 60967 -NCIT:C133007 Stage III Hypopharyngeal Carcinoma AJCC v8 10 60968 -NCIT:C133008 Stage IV Hypopharyngeal Carcinoma AJCC v8 10 60969 -NCIT:C133009 Stage IVA Hypopharyngeal Carcinoma AJCC v8 11 60970 -NCIT:C133010 Stage IVB Hypopharyngeal Carcinoma AJCC v8 11 60971 -NCIT:C133011 Stage IVC Hypopharyngeal Carcinoma AJCC v8 11 60972 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 10 60973 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 11 60974 -NCIT:C156080 Metastatic Pharyngeal Carcinoma 8 60975 -NCIT:C156079 Metastatic Nasopharyngeal Carcinoma 9 60976 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 10 60977 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 60978 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 60979 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 11 60980 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 11 60981 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 60982 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 10 60983 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 60984 -NCIT:C156081 Metastatic Hypopharyngeal Carcinoma 9 60985 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 10 60986 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 60987 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 60988 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 10 60989 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 60990 -NCIT:C156082 Metastatic Oropharyngeal Carcinoma 9 60991 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 10 60992 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 60993 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 60994 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 60995 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 10 60996 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 60997 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 60998 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 10 60999 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 61000 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 9 61001 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 61002 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 10 61003 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 61004 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 61005 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 10 61006 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 61007 -NCIT:C170784 Advanced Pharyngeal Carcinoma 9 61008 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 10 61009 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 61010 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 10 61011 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 61012 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 61013 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 61014 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 10 61015 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 61016 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 9 61017 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 10 61018 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 61019 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 61020 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 61021 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 10 61022 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 61023 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 61024 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 11 61025 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 11 61026 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 61027 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 10 61028 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 61029 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 61030 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 10 61031 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 61032 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 61033 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 61034 -NCIT:C35692 Posterior Pharyngeal Wall Carcinoma 8 61035 -NCIT:C35693 Posterior Pharyngeal Wall Squamous Cell Carcinoma 9 61036 -NCIT:C3871 Nasopharyngeal Carcinoma 8 61037 -NCIT:C132816 Nasopharyngeal Carcinoma by AJCC v8 Stage 9 61038 -NCIT:C132817 Stage I Nasopharyngeal Carcinoma AJCC v8 10 61039 -NCIT:C132818 Stage II Nasopharyngeal Carcinoma AJCC v8 10 61040 -NCIT:C132819 Stage III Nasopharyngeal Carcinoma AJCC v8 10 61041 -NCIT:C132820 Stage IV Nasopharyngeal Carcinoma AJCC v8 10 61042 -NCIT:C132821 Stage IVA Nasopharyngeal Carcinoma AJCC v8 11 61043 -NCIT:C132822 Stage IVB Nasopharyngeal Carcinoma AJCC v8 11 61044 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 10 61045 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 11 61046 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 11 61047 -NCIT:C148434 Refractory Nasopharyngeal Carcinoma 9 61048 -NCIT:C156079 Metastatic Nasopharyngeal Carcinoma 9 61049 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 10 61050 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 61051 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 61052 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 11 61053 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 11 61054 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 61055 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 10 61056 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 61057 -NCIT:C165176 Unresectable Nasopharyngeal Carcinoma 9 61058 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 10 61059 -NCIT:C167265 Nasopharyngeal Squamous Cell Carcinoma 9 61060 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 10 61061 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 61062 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 61063 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 11 61064 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 11 61065 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 61066 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 10 61067 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 61068 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 11 61069 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 10 61070 -NCIT:C54360 Nasopharyngeal Basaloid Carcinoma 10 61071 -NCIT:C7373 Nasopharyngeal Nonkeratinizing Carcinoma 10 61072 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 11 61073 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 61074 -NCIT:C54389 Nasopharyngeal Differentiated Carcinoma 11 61075 -NCIT:C8023 Nasopharyngeal Undifferentiated Carcinoma 11 61076 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 61077 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 12 61078 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 12 61079 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 12 61080 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 12 61081 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 12 61082 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 12 61083 -NCIT:C7992 Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 61084 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 61085 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 11 61086 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 61087 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 61088 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 61089 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 61090 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 61091 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 61092 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 61093 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 61094 -NCIT:C173340 Nasopharyngeal Adenoid Cystic Carcinoma 9 61095 -NCIT:C190276 Childhood Nasopharyngeal Carcinoma 9 61096 -NCIT:C54400 Nasopharyngeal Papillary Adenocarcinoma 9 61097 -NCIT:C90522 Nasopharyngeal Carcinoma by AJCC v6 Stage 9 61098 -NCIT:C7395 Stage I Nasopharyngeal Carcinoma AJCC v6 10 61099 -NCIT:C7396 Stage III Nasopharyngeal Carcinoma AJCC v6 10 61100 -NCIT:C7397 Stage IV Nasopharyngeal Carcinoma AJCC v6 10 61101 -NCIT:C7920 Stage II Nasopharyngeal Carcinoma AJCC v6 10 61102 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 10 61103 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 11 61104 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 11 61105 -NCIT:C91244 Nasopharyngeal Carcinoma by AJCC v7 Stage 9 61106 -NCIT:C88981 Stage I Nasopharyngeal Carcinoma AJCC v7 10 61107 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 61108 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 61109 -NCIT:C88982 Stage II Nasopharyngeal Carcinoma AJCC v7 10 61110 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 61111 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 61112 -NCIT:C88983 Stage III Nasopharyngeal Carcinoma AJCC v7 10 61113 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 61114 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 61115 -NCIT:C88984 Stage IV Nasopharyngeal Carcinoma AJCC v7 10 61116 -NCIT:C5995 Stage IVC Nasopharyngeal Carcinoma AJCC v7 11 61117 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 61118 -NCIT:C5996 Stage IVB Nasopharyngeal Carcinoma AJCC v7 11 61119 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 61120 -NCIT:C5997 Stage IVA Nasopharyngeal Carcinoma AJCC v7 11 61121 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 61122 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 61123 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 61124 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 61125 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 61126 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 61127 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 10 61128 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 11 61129 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 11 61130 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 9 61131 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 10 61132 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 61133 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 11 61134 -NCIT:C4942 Stage 0 Pharyngeal Cancer 8 61135 -NCIT:C132995 Stage 0 Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 61136 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 9 61137 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 61138 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 9 61139 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 10 61140 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 61141 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 9 61142 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 61143 -NCIT:C5103 Recurrent Pharyngeal Carcinoma 8 61144 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 9 61145 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 10 61146 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 61147 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 11 61148 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 10 61149 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 11 61150 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 10 61151 -NCIT:C8051 Recurrent Oropharyngeal Carcinoma 9 61152 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 10 61153 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 11 61154 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 9 61155 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 10 61156 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 61157 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 11 61158 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 9 61159 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 10 61160 -NCIT:C5818 Pharyngeal Adenoid Cystic Carcinoma 8 61161 -NCIT:C173340 Nasopharyngeal Adenoid Cystic Carcinoma 9 61162 -NCIT:C6241 Oropharyngeal Adenoid Cystic Carcinoma 9 61163 -NCIT:C8768 Stage I Pharyngeal Cancer 8 61164 -NCIT:C132817 Stage I Nasopharyngeal Carcinoma AJCC v8 9 61165 -NCIT:C132885 Clinical Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 9 61166 -NCIT:C132898 Pathologic Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 9 61167 -NCIT:C132996 Stage I Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 61168 -NCIT:C133005 Stage I Hypopharyngeal Carcinoma AJCC v8 9 61169 -NCIT:C7395 Stage I Nasopharyngeal Carcinoma AJCC v6 9 61170 -NCIT:C8038 Stage I Hypopharyngeal Carcinoma AJCC v6 9 61171 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 9 61172 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 61173 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 61174 -NCIT:C88981 Stage I Nasopharyngeal Carcinoma AJCC v7 9 61175 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 61176 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 61177 -NCIT:C89045 Stage I Hypopharyngeal Carcinoma AJCC v7 9 61178 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 61179 -NCIT:C8769 Stage II Pharyngeal Cancer 8 61180 -NCIT:C132818 Stage II Nasopharyngeal Carcinoma AJCC v8 9 61181 -NCIT:C132886 Clinical Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 9 61182 -NCIT:C132899 Pathologic Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 9 61183 -NCIT:C132997 Stage II Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 61184 -NCIT:C133006 Stage II Hypopharyngeal Carcinoma AJCC v8 9 61185 -NCIT:C7920 Stage II Nasopharyngeal Carcinoma AJCC v6 9 61186 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 9 61187 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 61188 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 9 61189 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 61190 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 61191 -NCIT:C88982 Stage II Nasopharyngeal Carcinoma AJCC v7 9 61192 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 61193 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 61194 -NCIT:C8770 Stage III Pharyngeal Cancer 8 61195 -NCIT:C132819 Stage III Nasopharyngeal Carcinoma AJCC v8 9 61196 -NCIT:C132891 Clinical Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 9 61197 -NCIT:C132900 Pathologic Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 9 61198 -NCIT:C132998 Stage III Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 61199 -NCIT:C133007 Stage III Hypopharyngeal Carcinoma AJCC v8 9 61200 -NCIT:C7396 Stage III Nasopharyngeal Carcinoma AJCC v6 9 61201 -NCIT:C8040 Stage III Hypopharyngeal Carcinoma AJCC v6 9 61202 -NCIT:C8050 Stage III Oropharyngeal Carcinoma AJCC v6 9 61203 -NCIT:C88983 Stage III Nasopharyngeal Carcinoma AJCC v7 9 61204 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 61205 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 61206 -NCIT:C89021 Stage III Oropharyngeal Carcinoma AJCC v7 9 61207 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 61208 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 61209 -NCIT:C89046 Stage III Hypopharyngeal Carcinoma AJCC v7 9 61210 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 61211 -NCIT:C8771 Stage IV Pharyngeal Cancer 8 61212 -NCIT:C132820 Stage IV Nasopharyngeal Carcinoma AJCC v8 9 61213 -NCIT:C132821 Stage IVA Nasopharyngeal Carcinoma AJCC v8 10 61214 -NCIT:C132822 Stage IVB Nasopharyngeal Carcinoma AJCC v8 10 61215 -NCIT:C132893 Clinical Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 9 61216 -NCIT:C132901 Pathologic Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 9 61217 -NCIT:C132999 Stage IV Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 61218 -NCIT:C133000 Stage IVA Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 61219 -NCIT:C133001 Stage IVB Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 61220 -NCIT:C133002 Stage IVC Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 61221 -NCIT:C133008 Stage IV Hypopharyngeal Carcinoma AJCC v8 9 61222 -NCIT:C133009 Stage IVA Hypopharyngeal Carcinoma AJCC v8 10 61223 -NCIT:C133010 Stage IVB Hypopharyngeal Carcinoma AJCC v8 10 61224 -NCIT:C133011 Stage IVC Hypopharyngeal Carcinoma AJCC v8 10 61225 -NCIT:C6000 Stage IVA Pharyngeal Cancer 9 61226 -NCIT:C132821 Stage IVA Nasopharyngeal Carcinoma AJCC v8 10 61227 -NCIT:C133000 Stage IVA Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 61228 -NCIT:C133009 Stage IVA Hypopharyngeal Carcinoma AJCC v8 10 61229 -NCIT:C5985 Stage IVA Oropharyngeal Carcinoma AJCC v7 10 61230 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 61231 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 61232 -NCIT:C5992 Stage IVA Hypopharyngeal Carcinoma AJCC v7 10 61233 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 61234 -NCIT:C5997 Stage IVA Nasopharyngeal Carcinoma AJCC v7 10 61235 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 61236 -NCIT:C6001 Stage IVB Pharyngeal Cancer 9 61237 -NCIT:C132822 Stage IVB Nasopharyngeal Carcinoma AJCC v8 10 61238 -NCIT:C133001 Stage IVB Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 61239 -NCIT:C133010 Stage IVB Hypopharyngeal Carcinoma AJCC v8 10 61240 -NCIT:C5986 Stage IVB Oropharyngeal Carcinoma AJCC v7 10 61241 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 61242 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 61243 -NCIT:C5993 Stage IVB Hypopharyngeal Carcinoma AJCC v7 10 61244 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 61245 -NCIT:C5996 Stage IVB Nasopharyngeal Carcinoma AJCC v7 10 61246 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 61247 -NCIT:C6002 Stage IVC Pharyngeal Cancer 9 61248 -NCIT:C133002 Stage IVC Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 61249 -NCIT:C133011 Stage IVC Hypopharyngeal Carcinoma AJCC v8 10 61250 -NCIT:C5987 Stage IVC Oropharyngeal Carcinoma AJCC v7 10 61251 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 61252 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 61253 -NCIT:C5994 Stage IVC Hypopharyngeal Carcinoma AJCC v7 10 61254 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 61255 -NCIT:C5995 Stage IVC Nasopharyngeal Carcinoma AJCC v7 10 61256 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 61257 -NCIT:C7397 Stage IV Nasopharyngeal Carcinoma AJCC v6 9 61258 -NCIT:C8533 Stage IV Hypopharyngeal Carcinoma AJCC v6 9 61259 -NCIT:C88984 Stage IV Nasopharyngeal Carcinoma AJCC v7 9 61260 -NCIT:C5995 Stage IVC Nasopharyngeal Carcinoma AJCC v7 10 61261 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 61262 -NCIT:C5996 Stage IVB Nasopharyngeal Carcinoma AJCC v7 10 61263 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 61264 -NCIT:C5997 Stage IVA Nasopharyngeal Carcinoma AJCC v7 10 61265 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 61266 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 61267 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 61268 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 61269 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 61270 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 61271 -NCIT:C89023 Stage IV Oropharyngeal Carcinoma AJCC v7 9 61272 -NCIT:C5985 Stage IVA Oropharyngeal Carcinoma AJCC v7 10 61273 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 61274 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 61275 -NCIT:C5986 Stage IVB Oropharyngeal Carcinoma AJCC v7 10 61276 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 61277 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 61278 -NCIT:C5987 Stage IVC Oropharyngeal Carcinoma AJCC v7 10 61279 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 61280 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 61281 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 61282 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 61283 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 61284 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 61285 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 61286 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 61287 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 61288 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 61289 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 61290 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 61291 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 61292 -NCIT:C89047 Stage IV Hypopharyngeal Carcinoma AJCC v7 9 61293 -NCIT:C5992 Stage IVA Hypopharyngeal Carcinoma AJCC v7 10 61294 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 61295 -NCIT:C5993 Stage IVB Hypopharyngeal Carcinoma AJCC v7 10 61296 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 61297 -NCIT:C5994 Stage IVC Hypopharyngeal Carcinoma AJCC v7 10 61298 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 61299 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 61300 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 61301 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 61302 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 61303 -NCIT:C9218 Stage IV Oropharyngeal Carcinoma AJCC v6 9 61304 -NCIT:C90525 Pharyngeal Carcinoma by AJCC v6 Stage 8 61305 -NCIT:C90522 Nasopharyngeal Carcinoma by AJCC v6 Stage 9 61306 -NCIT:C7395 Stage I Nasopharyngeal Carcinoma AJCC v6 10 61307 -NCIT:C7396 Stage III Nasopharyngeal Carcinoma AJCC v6 10 61308 -NCIT:C7397 Stage IV Nasopharyngeal Carcinoma AJCC v6 10 61309 -NCIT:C7920 Stage II Nasopharyngeal Carcinoma AJCC v6 10 61310 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 10 61311 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 11 61312 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 11 61313 -NCIT:C90523 Oropharyngeal Carcinoma by AJCC v6 Stage 9 61314 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 10 61315 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 61316 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 10 61317 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 61318 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 12 61319 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 10 61320 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 61321 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 12 61322 -NCIT:C8050 Stage III Oropharyngeal Carcinoma AJCC v6 10 61323 -NCIT:C9218 Stage IV Oropharyngeal Carcinoma AJCC v6 10 61324 -NCIT:C90524 Hypopharyngeal Carcinoma by AJCC v6 Stage 9 61325 -NCIT:C8038 Stage I Hypopharyngeal Carcinoma AJCC v6 10 61326 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 10 61327 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 61328 -NCIT:C8040 Stage III Hypopharyngeal Carcinoma AJCC v6 10 61329 -NCIT:C8533 Stage IV Hypopharyngeal Carcinoma AJCC v6 10 61330 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 10 61331 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 11 61332 -NCIT:C9105 Oropharyngeal Carcinoma 8 61333 -NCIT:C132882 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Stage 9 61334 -NCIT:C132883 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Clinical Stage 10 61335 -NCIT:C132885 Clinical Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 61336 -NCIT:C132886 Clinical Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 61337 -NCIT:C132891 Clinical Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 61338 -NCIT:C132893 Clinical Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 61339 -NCIT:C132884 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Pathologic Stage 10 61340 -NCIT:C132898 Pathologic Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 61341 -NCIT:C132899 Pathologic Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 61342 -NCIT:C132900 Pathologic Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 61343 -NCIT:C132901 Pathologic Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 61344 -NCIT:C132994 Oropharyngeal (p16-Negative) Carcinoma by AJCC v8 Stage 9 61345 -NCIT:C132995 Stage 0 Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 61346 -NCIT:C132996 Stage I Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 61347 -NCIT:C132997 Stage II Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 61348 -NCIT:C132998 Stage III Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 61349 -NCIT:C132999 Stage IV Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 61350 -NCIT:C133000 Stage IVA Oropharyngeal (p16-Negative) Carcinoma AJCC v8 11 61351 -NCIT:C133001 Stage IVB Oropharyngeal (p16-Negative) Carcinoma AJCC v8 11 61352 -NCIT:C133002 Stage IVC Oropharyngeal (p16-Negative) Carcinoma AJCC v8 11 61353 -NCIT:C156082 Metastatic Oropharyngeal Carcinoma 9 61354 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 10 61355 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 61356 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 61357 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 61358 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 10 61359 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 61360 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 61361 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 10 61362 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 61363 -NCIT:C173576 Oropharyngeal Polymorphous Adenocarcinoma 9 61364 -NCIT:C4825 Tonsillar Carcinoma 9 61365 -NCIT:C8183 Tonsillar Squamous Cell Carcinoma 10 61366 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 11 61367 -NCIT:C6241 Oropharyngeal Adenoid Cystic Carcinoma 9 61368 -NCIT:C8051 Recurrent Oropharyngeal Carcinoma 9 61369 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 10 61370 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 11 61371 -NCIT:C8181 Oropharyngeal Squamous Cell Carcinoma 9 61372 -NCIT:C126750 Oropharyngeal Poorly Differentiated Carcinoma 10 61373 -NCIT:C126751 Oropharyngeal Basaloid Carcinoma 10 61374 -NCIT:C147906 Oropharyngeal p16INK4a-Negative Squamous Cell Carcinoma 10 61375 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 10 61376 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 10 61377 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 61378 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 61379 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 61380 -NCIT:C162787 Resectable Oropharyngeal Squamous Cell Carcinoma 10 61381 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 11 61382 -NCIT:C162833 Unresectable Oropharyngeal Squamous Cell Carcinoma 10 61383 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 11 61384 -NCIT:C173414 Oropharyngeal Human Papillomavirus-Negative Squamous Cell Carcinoma 10 61385 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 10 61386 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 61387 -NCIT:C68610 Oropharyngeal Undifferentiated Carcinoma 10 61388 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 61389 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 61390 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 61391 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 61392 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 61393 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 61394 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 61395 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 11 61396 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 61397 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 11 61398 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 11 61399 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 11 61400 -NCIT:C8183 Tonsillar Squamous Cell Carcinoma 10 61401 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 11 61402 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 61403 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 61404 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 61405 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 61406 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 61407 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 61408 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 61409 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 61410 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 61411 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 61412 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 61413 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 61414 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 61415 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 61416 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 61417 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 61418 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 61419 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 10 61420 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 11 61421 -NCIT:C87055 Oropharyngeal Human Papillomavirus-Positive Squamous Cell Carcinoma 10 61422 -NCIT:C8395 Soft Palate Carcinoma 9 61423 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 10 61424 -NCIT:C90523 Oropharyngeal Carcinoma by AJCC v6 Stage 9 61425 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 10 61426 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 61427 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 10 61428 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 61429 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 12 61430 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 10 61431 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 61432 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 12 61433 -NCIT:C8050 Stage III Oropharyngeal Carcinoma AJCC v6 10 61434 -NCIT:C9218 Stage IV Oropharyngeal Carcinoma AJCC v6 10 61435 -NCIT:C91248 Oropharyngeal Carcinoma by AJCC v7 Stage 9 61436 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 10 61437 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 61438 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 10 61439 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 61440 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 12 61441 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 10 61442 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 61443 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 12 61444 -NCIT:C89021 Stage III Oropharyngeal Carcinoma AJCC v7 10 61445 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 61446 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 61447 -NCIT:C89023 Stage IV Oropharyngeal Carcinoma AJCC v7 10 61448 -NCIT:C5985 Stage IVA Oropharyngeal Carcinoma AJCC v7 11 61449 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 61450 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 61451 -NCIT:C5986 Stage IVB Oropharyngeal Carcinoma AJCC v7 11 61452 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 61453 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 61454 -NCIT:C5987 Stage IVC Oropharyngeal Carcinoma AJCC v7 11 61455 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 61456 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 61457 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 61458 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 61459 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 61460 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 61461 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 61462 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 61463 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 61464 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 61465 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 61466 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 61467 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 61468 -NCIT:C91252 Pharyngeal Carcinoma by AJCC v7 Stage 8 61469 -NCIT:C91244 Nasopharyngeal Carcinoma by AJCC v7 Stage 9 61470 -NCIT:C88981 Stage I Nasopharyngeal Carcinoma AJCC v7 10 61471 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 61472 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 61473 -NCIT:C88982 Stage II Nasopharyngeal Carcinoma AJCC v7 10 61474 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 61475 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 61476 -NCIT:C88983 Stage III Nasopharyngeal Carcinoma AJCC v7 10 61477 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 61478 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 61479 -NCIT:C88984 Stage IV Nasopharyngeal Carcinoma AJCC v7 10 61480 -NCIT:C5995 Stage IVC Nasopharyngeal Carcinoma AJCC v7 11 61481 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 61482 -NCIT:C5996 Stage IVB Nasopharyngeal Carcinoma AJCC v7 11 61483 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 61484 -NCIT:C5997 Stage IVA Nasopharyngeal Carcinoma AJCC v7 11 61485 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 61486 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 61487 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 61488 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 61489 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 61490 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 61491 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 10 61492 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 11 61493 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 11 61494 -NCIT:C91248 Oropharyngeal Carcinoma by AJCC v7 Stage 9 61495 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 10 61496 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 61497 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 10 61498 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 61499 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 12 61500 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 10 61501 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 61502 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 12 61503 -NCIT:C89021 Stage III Oropharyngeal Carcinoma AJCC v7 10 61504 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 61505 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 61506 -NCIT:C89023 Stage IV Oropharyngeal Carcinoma AJCC v7 10 61507 -NCIT:C5985 Stage IVA Oropharyngeal Carcinoma AJCC v7 11 61508 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 61509 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 61510 -NCIT:C5986 Stage IVB Oropharyngeal Carcinoma AJCC v7 11 61511 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 61512 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 61513 -NCIT:C5987 Stage IVC Oropharyngeal Carcinoma AJCC v7 11 61514 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 61515 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 61516 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 61517 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 61518 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 61519 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 61520 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 61521 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 61522 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 61523 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 61524 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 61525 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 61526 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 61527 -NCIT:C91251 Hypopharyngeal Carcinoma by AJCC v7 Stage 9 61528 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 10 61529 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 61530 -NCIT:C89045 Stage I Hypopharyngeal Carcinoma AJCC v7 10 61531 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 61532 -NCIT:C89046 Stage III Hypopharyngeal Carcinoma AJCC v7 10 61533 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 61534 -NCIT:C89047 Stage IV Hypopharyngeal Carcinoma AJCC v7 10 61535 -NCIT:C5992 Stage IVA Hypopharyngeal Carcinoma AJCC v7 11 61536 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 61537 -NCIT:C5993 Stage IVB Hypopharyngeal Carcinoma AJCC v7 11 61538 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 61539 -NCIT:C5994 Stage IVC Hypopharyngeal Carcinoma AJCC v7 11 61540 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 61541 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 61542 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 61543 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 61544 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 61545 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 10 61546 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 11 61547 -NCIT:C9465 Hypopharyngeal Carcinoma 8 61548 -NCIT:C133003 Hypopharyngeal Carcinoma by AJCC v8 Stage 9 61549 -NCIT:C133005 Stage I Hypopharyngeal Carcinoma AJCC v8 10 61550 -NCIT:C133006 Stage II Hypopharyngeal Carcinoma AJCC v8 10 61551 -NCIT:C133007 Stage III Hypopharyngeal Carcinoma AJCC v8 10 61552 -NCIT:C133008 Stage IV Hypopharyngeal Carcinoma AJCC v8 10 61553 -NCIT:C133009 Stage IVA Hypopharyngeal Carcinoma AJCC v8 11 61554 -NCIT:C133010 Stage IVB Hypopharyngeal Carcinoma AJCC v8 11 61555 -NCIT:C133011 Stage IVC Hypopharyngeal Carcinoma AJCC v8 11 61556 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 10 61557 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 11 61558 -NCIT:C156081 Metastatic Hypopharyngeal Carcinoma 9 61559 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 10 61560 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 61561 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 61562 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 10 61563 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 61564 -NCIT:C4043 Hypopharyngeal Squamous Cell Carcinoma 9 61565 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 10 61566 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 10 61567 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 61568 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 61569 -NCIT:C172646 Unresectable Hypopharyngeal Squamous Cell Carcinoma 10 61570 -NCIT:C4943 Pyriform Fossa Squamous Cell Carcinoma 10 61571 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 61572 -NCIT:C8185 Postcricoid Squamous Cell Carcinoma 10 61573 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 61574 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 61575 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 61576 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 61577 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 61578 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 61579 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 61580 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 10 61581 -NCIT:C6700 Pyriform Fossa Carcinoma 9 61582 -NCIT:C4943 Pyriform Fossa Squamous Cell Carcinoma 10 61583 -NCIT:C8595 Postcricoid Carcinoma 9 61584 -NCIT:C8185 Postcricoid Squamous Cell Carcinoma 10 61585 -NCIT:C90524 Hypopharyngeal Carcinoma by AJCC v6 Stage 9 61586 -NCIT:C8038 Stage I Hypopharyngeal Carcinoma AJCC v6 10 61587 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 10 61588 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 61589 -NCIT:C8040 Stage III Hypopharyngeal Carcinoma AJCC v6 10 61590 -NCIT:C8533 Stage IV Hypopharyngeal Carcinoma AJCC v6 10 61591 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 10 61592 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 11 61593 -NCIT:C91251 Hypopharyngeal Carcinoma by AJCC v7 Stage 9 61594 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 10 61595 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 61596 -NCIT:C89045 Stage I Hypopharyngeal Carcinoma AJCC v7 10 61597 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 61598 -NCIT:C89046 Stage III Hypopharyngeal Carcinoma AJCC v7 10 61599 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 61600 -NCIT:C89047 Stage IV Hypopharyngeal Carcinoma AJCC v7 10 61601 -NCIT:C5992 Stage IVA Hypopharyngeal Carcinoma AJCC v7 11 61602 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 61603 -NCIT:C5993 Stage IVB Hypopharyngeal Carcinoma AJCC v7 11 61604 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 61605 -NCIT:C5994 Stage IVC Hypopharyngeal Carcinoma AJCC v7 11 61606 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 61607 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 61608 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 61609 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 61610 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 61611 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 10 61612 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 11 61613 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 9 61614 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 10 61615 -NCIT:C4815 Thyroid Gland Carcinoma 6 61616 -NCIT:C118827 Childhood Thyroid Gland Carcinoma 7 61617 -NCIT:C123903 Childhood Thyroid Gland Papillary Carcinoma 8 61618 -NCIT:C123904 Childhood Thyroid Gland Follicular Carcinoma 8 61619 -NCIT:C123905 Childhood Thyroid Gland Medullary Carcinoma 8 61620 -NCIT:C190064 Childhood Thyroid Gland Spindle Epithelial Tumor with Thymus-Like Elements 8 61621 -NCIT:C126408 Thyroid Gland Cribriform Morular Carcinoma 7 61622 -NCIT:C129784 Unresectable Thyroid Gland Carcinoma 7 61623 -NCIT:C163974 Unresectable Thyroid Gland Medullary Carcinoma 8 61624 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 9 61625 -NCIT:C168572 Unresectable Differentiated Thyroid Gland Carcinoma 8 61626 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 9 61627 -NCIT:C174571 Unresectable Thyroid Gland Follicular Carcinoma 9 61628 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 10 61629 -NCIT:C170833 Unresectable Thyroid Gland Anaplastic Carcinoma 8 61630 -NCIT:C174569 Unresectable Poorly Differentiated Thyroid Gland Carcinoma 8 61631 -NCIT:C133193 Metastatic Thyroid Gland Carcinoma 7 61632 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 8 61633 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 61634 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 61635 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 8 61636 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 61637 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 61638 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 61639 -NCIT:C170831 Metastatic Thyroid Gland Anaplastic Carcinoma 8 61640 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 61641 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 61642 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 8 61643 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 61644 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 9 61645 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 61646 -NCIT:C173979 Metastatic Differentiated Thyroid Gland Carcinoma 8 61647 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 9 61648 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 10 61649 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 11 61650 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 9 61651 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 61652 -NCIT:C174046 Metastatic Poorly Differentiated Thyroid Gland Carcinoma 8 61653 -NCIT:C142983 Refractory Thyroid Gland Carcinoma 7 61654 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 8 61655 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 9 61656 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 9 61657 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 10 61658 -NCIT:C170832 Refractory Thyroid Gland Anaplastic Carcinoma 8 61659 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 8 61660 -NCIT:C156267 Thyroid Gland Mucinous Carcinoma 7 61661 -NCIT:C27380 Thyroid Gland Adenocarcinoma 7 61662 -NCIT:C187645 Follicular-Derived Thyroid Gland Carcinoma, High Grade 8 61663 -NCIT:C187648 Differentiated High Grade Thyroid Gland Carcinoma 9 61664 -NCIT:C6040 Poorly Differentiated Thyroid Gland Carcinoma 9 61665 -NCIT:C174046 Metastatic Poorly Differentiated Thyroid Gland Carcinoma 10 61666 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 10 61667 -NCIT:C174569 Unresectable Poorly Differentiated Thyroid Gland Carcinoma 10 61668 -NCIT:C187994 Thyroid Gland Secretory Carcinoma 8 61669 -NCIT:C7153 Differentiated Thyroid Gland Carcinoma 8 61670 -NCIT:C118829 Hereditary Nonmedullary Thyroid Gland Carcinoma 9 61671 -NCIT:C140959 Differentiated Thyroid Gland Carcinoma by AJCC v7 Stage 9 61672 -NCIT:C140958 Thyroid Gland Follicular Carcinoma by AJCC v7 Stage 10 61673 -NCIT:C9084 Stage I Thyroid Gland Follicular Carcinoma AJCC v7 11 61674 -NCIT:C9085 Stage II Thyroid Gland Follicular Carcinoma AJCC v7 11 61675 -NCIT:C9086 Stage IV Thyroid Gland Follicular Carcinoma AJCC v7 11 61676 -NCIT:C115035 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v7 12 61677 -NCIT:C115036 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v7 12 61678 -NCIT:C115037 Stage IVC Thyroid Gland Follicular Carcinoma AJCC v7 12 61679 -NCIT:C9121 Stage III Thyroid Gland Follicular Carcinoma AJCC v7 11 61680 -NCIT:C140960 Thyroid Gland Papillary Carcinoma by AJCC v7 Stage 10 61681 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 11 61682 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 11 61683 -NCIT:C9083 Stage IV Thyroid Gland Papillary Carcinoma AJCC v7 11 61684 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 12 61685 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 12 61686 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 12 61687 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 11 61688 -NCIT:C87543 Stage I Differentiated Thyroid Gland Carcinoma AJCC v7 10 61689 -NCIT:C101539 Stage I Differentiated Thyroid Gland Carcinoma Under 45 Years AJCC v7 11 61690 -NCIT:C101540 Stage I Differentiated Thyroid Gland Carcinoma 45 Years and Older AJCC v7 11 61691 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 11 61692 -NCIT:C9084 Stage I Thyroid Gland Follicular Carcinoma AJCC v7 11 61693 -NCIT:C87544 Stage II Differentiated Thyroid Gland Carcinoma AJCC v7 10 61694 -NCIT:C101541 Stage II Differentiated Thyroid Gland Carcinoma Under 45 Years AJCC v7 11 61695 -NCIT:C101542 Stage II Differentiated Thyroid Gland Carcinoma 45 Years and Older AJCC v7 11 61696 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 11 61697 -NCIT:C9085 Stage II Thyroid Gland Follicular Carcinoma AJCC v7 11 61698 -NCIT:C87545 Stage III Differentiated Thyroid Gland Carcinoma AJCC v7 10 61699 -NCIT:C9121 Stage III Thyroid Gland Follicular Carcinoma AJCC v7 11 61700 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 11 61701 -NCIT:C87546 Stage IVA Differentiated Thyroid Gland Carcinoma AJCC v7 10 61702 -NCIT:C115035 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v7 11 61703 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 11 61704 -NCIT:C87547 Stage IVB Differentiated Thyroid Gland Carcinoma AJCC v7 10 61705 -NCIT:C115036 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v7 11 61706 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 11 61707 -NCIT:C87548 Stage IVC Differentiated Thyroid Gland Carcinoma AJCC v7 10 61708 -NCIT:C115037 Stage IVC Thyroid Gland Follicular Carcinoma AJCC v7 11 61709 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 11 61710 -NCIT:C140965 Differentiated Thyroid Gland Carcinoma by AJCC v8 Stage 9 61711 -NCIT:C140966 Stage I Differentiated Thyroid Gland Carcinoma AJCC v8 10 61712 -NCIT:C140967 Stage I Differentiated Thyroid Gland Carcinoma Under 55 Years AJCC v8 11 61713 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 61714 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 61715 -NCIT:C140968 Stage I Differentiated Thyroid Gland Carcinoma 55 Years and Older AJCC v8 11 61716 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 61717 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 61718 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 11 61719 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 61720 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 61721 -NCIT:C140988 Stage I Thyroid Gland Follicular Carcinoma AJCC v8 11 61722 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 61723 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 61724 -NCIT:C140969 Stage II Differentiated Thyroid Gland Carcinoma AJCC v8 10 61725 -NCIT:C140970 Stage II Differentiated Thyroid Gland Carcinoma Under 55 Years AJCC v8 11 61726 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 61727 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 61728 -NCIT:C140971 Stage II Differentiated Thyroid Gland Carcinoma 55 Years and Older AJCC v8 11 61729 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 61730 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 61731 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 11 61732 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 61733 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 61734 -NCIT:C140991 Stage II Thyroid Gland Follicular Carcinoma AJCC v8 11 61735 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 61736 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 61737 -NCIT:C140972 Stage III Differentiated Thyroid Gland Carcinoma AJCC v8 10 61738 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 11 61739 -NCIT:C140995 Stage III Thyroid Gland Follicular Carcinoma AJCC v8 11 61740 -NCIT:C140973 Stage IV Differentiated Thyroid Gland Carcinoma AJCC v8 10 61741 -NCIT:C140974 Stage IVA Differentiated Thyroid Gland Carcinoma AJCC v8 11 61742 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 12 61743 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 12 61744 -NCIT:C140975 Stage IVB Differentiated Thyroid Gland Carcinoma AJCC v8 11 61745 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 12 61746 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 12 61747 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 11 61748 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 12 61749 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 12 61750 -NCIT:C140996 Stage IV Thyroid Gland Follicular Carcinoma AJCC v8 11 61751 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 12 61752 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 12 61753 -NCIT:C140976 Thyroid Gland Papillary Carcinoma by AJCC v8 Stage 10 61754 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 11 61755 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 61756 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 61757 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 11 61758 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 61759 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 61760 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 11 61761 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 11 61762 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 12 61763 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 12 61764 -NCIT:C140987 Thyroid Gland Follicular Carcinoma by AJCC v8 Stage 10 61765 -NCIT:C140988 Stage I Thyroid Gland Follicular Carcinoma AJCC v8 11 61766 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 61767 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 61768 -NCIT:C140991 Stage II Thyroid Gland Follicular Carcinoma AJCC v8 11 61769 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 61770 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 61771 -NCIT:C140995 Stage III Thyroid Gland Follicular Carcinoma AJCC v8 11 61772 -NCIT:C140996 Stage IV Thyroid Gland Follicular Carcinoma AJCC v8 11 61773 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 12 61774 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 12 61775 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 9 61776 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 10 61777 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 10 61778 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 11 61779 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 9 61780 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 10 61781 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 10 61782 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 11 61783 -NCIT:C168572 Unresectable Differentiated Thyroid Gland Carcinoma 9 61784 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 10 61785 -NCIT:C174571 Unresectable Thyroid Gland Follicular Carcinoma 10 61786 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 11 61787 -NCIT:C173979 Metastatic Differentiated Thyroid Gland Carcinoma 9 61788 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 10 61789 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 11 61790 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 12 61791 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 10 61792 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 10 61793 -NCIT:C4035 Thyroid Gland Papillary Carcinoma 9 61794 -NCIT:C123903 Childhood Thyroid Gland Papillary Carcinoma 10 61795 -NCIT:C126409 Warthin-Like Variant Thyroid Gland Papillary Carcinoma 10 61796 -NCIT:C126410 Thyroid Gland Papillary Carcinoma with Fibromatosis/Fasciitis-Like/Desmoid-Type Stroma 10 61797 -NCIT:C126594 Follicular Variant Thyroid Gland Papillary Carcinoma 10 61798 -NCIT:C66850 Invasive Encapsulated Follicular Variant Thyroid Gland Papillary Carcinoma 11 61799 -NCIT:C7381 Invasive Follicular Variant Thyroid Gland Papillary Carcinoma 11 61800 -NCIT:C140960 Thyroid Gland Papillary Carcinoma by AJCC v7 Stage 10 61801 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 11 61802 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 11 61803 -NCIT:C9083 Stage IV Thyroid Gland Papillary Carcinoma AJCC v7 11 61804 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 12 61805 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 12 61806 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 12 61807 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 11 61808 -NCIT:C140976 Thyroid Gland Papillary Carcinoma by AJCC v8 Stage 10 61809 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 11 61810 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 61811 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 61812 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 11 61813 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 61814 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 61815 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 11 61816 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 11 61817 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 12 61818 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 12 61819 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 10 61820 -NCIT:C156034 Encapsulated Variant Thyroid Gland Papillary Carcinoma 10 61821 -NCIT:C156045 Spindle Cell Variant Thyroid Gland Papillary Carcinoma 10 61822 -NCIT:C156050 Hobnail Variant Thyroid Gland Papillary Carcinoma 10 61823 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 10 61824 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 10 61825 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 10 61826 -NCIT:C187644 Classic Thyroid Gland Papillary Carcinoma 10 61827 -NCIT:C35558 Tall Cell Variant Thyroid Gland Papillary Carcinoma 10 61828 -NCIT:C35830 Columnar Cell Variant Thyroid Gland Papillary Carcinoma 10 61829 -NCIT:C37304 Multicentric Thyroid Gland Papillary Carcinoma 10 61830 -NCIT:C46004 Thyroid Gland Papillary Microcarcinoma 10 61831 -NCIT:C46092 Macrofollicular Variant Thyroid Gland Papillary Carcinoma 10 61832 -NCIT:C46093 Oncocytic Variant Thyroid Gland Papillary Carcinoma 10 61833 -NCIT:C46094 Clear Cell Variant Thyroid Gland Papillary Carcinoma 10 61834 -NCIT:C46095 Solid/Trabecular Variant Thyroid Gland Papillary Carcinoma 10 61835 -NCIT:C7427 Diffuse Sclerosing Variant Thyroid Gland Papillary Carcinoma 10 61836 -NCIT:C8054 Thyroid Gland Follicular Carcinoma 9 61837 -NCIT:C123904 Childhood Thyroid Gland Follicular Carcinoma 10 61838 -NCIT:C140958 Thyroid Gland Follicular Carcinoma by AJCC v7 Stage 10 61839 -NCIT:C9084 Stage I Thyroid Gland Follicular Carcinoma AJCC v7 11 61840 -NCIT:C9085 Stage II Thyroid Gland Follicular Carcinoma AJCC v7 11 61841 -NCIT:C9086 Stage IV Thyroid Gland Follicular Carcinoma AJCC v7 11 61842 -NCIT:C115035 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v7 12 61843 -NCIT:C115036 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v7 12 61844 -NCIT:C115037 Stage IVC Thyroid Gland Follicular Carcinoma AJCC v7 12 61845 -NCIT:C9121 Stage III Thyroid Gland Follicular Carcinoma AJCC v7 11 61846 -NCIT:C140987 Thyroid Gland Follicular Carcinoma by AJCC v8 Stage 10 61847 -NCIT:C140988 Stage I Thyroid Gland Follicular Carcinoma AJCC v8 11 61848 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 61849 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 61850 -NCIT:C140991 Stage II Thyroid Gland Follicular Carcinoma AJCC v8 11 61851 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 61852 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 61853 -NCIT:C140995 Stage III Thyroid Gland Follicular Carcinoma AJCC v8 11 61854 -NCIT:C140996 Stage IV Thyroid Gland Follicular Carcinoma AJCC v8 11 61855 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 12 61856 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 12 61857 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 10 61858 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 11 61859 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 10 61860 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 11 61861 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 12 61862 -NCIT:C156122 Thyroid Gland Follicular Carcinoma, Encapsulated Angioinvasive 10 61863 -NCIT:C156123 Thyroid Gland Follicular Carcinoma, Widely Invasive 10 61864 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 10 61865 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 11 61866 -NCIT:C174571 Unresectable Thyroid Gland Follicular Carcinoma 10 61867 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 11 61868 -NCIT:C187643 Thyroid Gland Follicular Carcinoma, Signet Ring Cell Variant 10 61869 -NCIT:C46096 Thyroid Gland Follicular Carcinoma, Clear Cell Variant 10 61870 -NCIT:C4946 Thyroid Gland Oncocytic Carcinoma 10 61871 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 11 61872 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 11 61873 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 11 61874 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 11 61875 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 12 61876 -NCIT:C65200 Thyroid Gland Follicular Carcinoma, Minimally Invasive 10 61877 -NCIT:C38762 Thyroid Gland Mucoepidermoid Carcinoma 7 61878 -NCIT:C38763 Thyroid Gland Sclerosing Mucoepidermoid Carcinoma with Eosinophilia 8 61879 -NCIT:C3878 Thyroid Gland Anaplastic Carcinoma 7 61880 -NCIT:C140999 Thyroid Gland Anaplastic Carcinoma by AJCC v7 Stage 8 61881 -NCIT:C87552 Stage IVA Thyroid Gland Anaplastic Carcinoma AJCC v7 9 61882 -NCIT:C87553 Stage IVB Thyroid Gland Anaplastic Carcinoma AJCC v7 9 61883 -NCIT:C87554 Stage IVC Thyroid Gland Anaplastic Carcinoma AJCC v7 9 61884 -NCIT:C141000 Thyroid Gland Anaplastic Carcinoma by AJCC v8 Stage 8 61885 -NCIT:C141001 Stage IVA Thyroid Gland Anaplastic Carcinoma AJCC v8 9 61886 -NCIT:C141003 Stage IVB Thyroid Gland Anaplastic Carcinoma AJCC v8 9 61887 -NCIT:C141004 Stage IVC Thyroid Gland Anaplastic Carcinoma AJCC v8 9 61888 -NCIT:C153624 Recurrent Thyroid Gland Anaplastic Carcinoma 8 61889 -NCIT:C170831 Metastatic Thyroid Gland Anaplastic Carcinoma 8 61890 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 61891 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 61892 -NCIT:C170832 Refractory Thyroid Gland Anaplastic Carcinoma 8 61893 -NCIT:C170833 Unresectable Thyroid Gland Anaplastic Carcinoma 8 61894 -NCIT:C46008 Thyroid Gland Anaplastic Carcinoma, Squamous Cell Carcinoma Pattern 8 61895 -NCIT:C7906 Thyroid Gland Anaplastic Carcinoma, Osteoclastic Variant 8 61896 -NCIT:C3879 Thyroid Gland Medullary Carcinoma 7 61897 -NCIT:C123905 Childhood Thyroid Gland Medullary Carcinoma 8 61898 -NCIT:C141041 Thyroid Gland Medullary Carcinoma by AJCC v7 Stage 8 61899 -NCIT:C6133 Stage I Thyroid Gland Medullary Carcinoma AJCC v7 9 61900 -NCIT:C6134 Stage II Thyroid Gland Medullary Carcinoma AJCC v7 9 61901 -NCIT:C6135 Stage III Thyroid Gland Medullary Carcinoma AJCC v7 9 61902 -NCIT:C6136 Stage IV Thyroid Gland Medullary Carcinoma AJCC v7 9 61903 -NCIT:C87549 Stage IVA Thyroid Gland Medullary Carcinoma AJCC v7 10 61904 -NCIT:C87550 Stage IVB Thyroid Gland Medullary Carcinoma AJCC v7 10 61905 -NCIT:C87551 Stage IVC Thyroid Gland Medullary Carcinoma AJCC v7 10 61906 -NCIT:C141042 Thyroid Gland Medullary Carcinoma by AJCC v8 Stage 8 61907 -NCIT:C141043 Stage I Thyroid Gland Medullary Carcinoma AJCC v8 9 61908 -NCIT:C141044 Stage II Thyroid Gland Medullary Carcinoma AJCC v8 9 61909 -NCIT:C141045 Stage III Thyroid Gland Medullary Carcinoma AJCC v8 9 61910 -NCIT:C141046 Stage IV Thyroid Gland Medullary Carcinoma AJCC v8 9 61911 -NCIT:C141047 Stage IVA Thyroid Gland Medullary Carcinoma AJCC v8 10 61912 -NCIT:C141048 Stage IVB Thyroid Gland Medullary Carcinoma AJCC v8 10 61913 -NCIT:C141049 Stage IVC Thyroid Gland Medullary Carcinoma AJCC v8 10 61914 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 8 61915 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 9 61916 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 8 61917 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 61918 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 61919 -NCIT:C163974 Unresectable Thyroid Gland Medullary Carcinoma 8 61920 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 9 61921 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 8 61922 -NCIT:C4193 Thyroid Gland Medullary Carcinoma with Amyloid Stroma 8 61923 -NCIT:C46098 Sporadic Thyroid Gland Medullary Carcinoma 8 61924 -NCIT:C46103 Sporadic Thyroid Gland Micromedullary Carcinoma 9 61925 -NCIT:C46099 Hereditary Thyroid Gland Medullary Carcinoma 8 61926 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 9 61927 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 9 61928 -NCIT:C46104 Thyroid Gland Mixed Medullary and Follicular Cell-Derived Carcinoma 7 61929 -NCIT:C187992 Thyroid Gland Mixed Medullary and Follicular Carcinoma 8 61930 -NCIT:C187993 Thyroid Gland Mixed Medullary and Papillary Carcinoma 8 61931 -NCIT:C46105 Thyroid Gland Spindle Epithelial Tumor with Thymus-Like Elements 7 61932 -NCIT:C190064 Childhood Thyroid Gland Spindle Epithelial Tumor with Thymus-Like Elements 8 61933 -NCIT:C46106 Intrathyroid Thymic Carcinoma 7 61934 -NCIT:C7908 Recurrent Thyroid Gland Carcinoma 7 61935 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 8 61936 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 9 61937 -NCIT:C153624 Recurrent Thyroid Gland Anaplastic Carcinoma 8 61938 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 8 61939 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 9 61940 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 9 61941 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 10 61942 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 8 61943 -NCIT:C4906 Parathyroid Gland Carcinoma 6 61944 -NCIT:C118819 Childhood Parathyroid Gland Carcinoma 7 61945 -NCIT:C7826 Localized Parathyroid Gland Carcinoma 7 61946 -NCIT:C7828 Recurrent Parathyroid Gland Carcinoma 7 61947 -NCIT:C9044 Metastatic Parathyroid Gland Carcinoma 7 61948 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 61949 -NCIT:C7624 Recurrent Head and Neck Carcinoma 5 61950 -NCIT:C133709 Recurrent Head and Neck Squamous Cell Carcinoma 6 61951 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 61952 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 61953 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 61954 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 61955 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 61956 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 61957 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 61958 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 61959 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 61960 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 7 61961 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 61962 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 61963 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 61964 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 61965 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 61966 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 61967 -NCIT:C176682 Locally Recurrent Head and Neck Squamous Cell Carcinoma 7 61968 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 7 61969 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 61970 -NCIT:C4034 Recurrent Laryngeal Carcinoma 6 61971 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 7 61972 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 61973 -NCIT:C5103 Recurrent Pharyngeal Carcinoma 6 61974 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 7 61975 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 61976 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 61977 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 61978 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 61979 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 61980 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 61981 -NCIT:C8051 Recurrent Oropharyngeal Carcinoma 7 61982 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 61983 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 61984 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 7 61985 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 61986 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 61987 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 61988 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 7 61989 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 61990 -NCIT:C67558 Recurrent Sinonasal Carcinoma 6 61991 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 61992 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 61993 -NCIT:C7828 Recurrent Parathyroid Gland Carcinoma 6 61994 -NCIT:C7908 Recurrent Thyroid Gland Carcinoma 6 61995 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 7 61996 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 8 61997 -NCIT:C153624 Recurrent Thyroid Gland Anaplastic Carcinoma 7 61998 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 7 61999 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 8 62000 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 8 62001 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 9 62002 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 7 62003 -NCIT:C7926 Recurrent Salivary Gland Carcinoma 6 62004 -NCIT:C153611 Recurrent Salivary Duct Carcinoma 7 62005 -NCIT:C153612 Recurrent Minor Salivary Gland Adenocarcinoma 7 62006 -NCIT:C153800 Recurrent Parotid Gland Carcinoma 7 62007 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 8 62008 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 8 62009 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 62010 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 8 62011 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 62012 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 8 62013 -NCIT:C153801 Recurrent Submandibular Gland Carcinoma 7 62014 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 8 62015 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 8 62016 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 62017 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 8 62018 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 62019 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 8 62020 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 62021 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 62022 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 62023 -NCIT:C8037 Recurrent Lip and Oral Cavity Carcinoma 6 62024 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 62025 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 62026 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 62027 -NCIT:C6076 Recurrent Oral Cavity Carcinoma 7 62028 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 62029 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 62030 -NCIT:C8215 Recurrent Oral Cavity Mucoepidermoid Carcinoma 8 62031 -NCIT:C8216 Recurrent Oral Cavity Adenoid Cystic Carcinoma 8 62032 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 7 62033 -NCIT:C9272 Salivary Gland Carcinoma 5 62034 -NCIT:C118824 Childhood Salivary Gland Carcinoma 6 62035 -NCIT:C190273 Childhood Salivary Gland Mucoepidermoid Carcinoma 7 62036 -NCIT:C190274 Childhood Salivary Gland Acinic Cell Carcinoma 7 62037 -NCIT:C118825 Adult Salivary Gland Carcinoma 6 62038 -NCIT:C158463 Metastatic Salivary Gland Carcinoma 6 62039 -NCIT:C158464 Locally Advanced Salivary Gland Carcinoma 7 62040 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 7 62041 -NCIT:C177723 Advanced Salivary Gland Carcinoma 7 62042 -NCIT:C5899 Stage IV Major Salivary Gland Carcinoma with Metastasis 7 62043 -NCIT:C173649 Salivary Gland Poorly Differentiated Carcinoma 6 62044 -NCIT:C173653 Salivary Gland Neuroendocrine Carcinoma 7 62045 -NCIT:C173650 Salivary Gland Large Cell Neuroendocrine Carcinoma 8 62046 -NCIT:C35703 Salivary Gland Small Cell Neuroendocrine Carcinoma 8 62047 -NCIT:C5956 Minor Salivary Gland Small Cell Neuroendocrine Carcinoma 9 62048 -NCIT:C35735 Salivary Gland Large Cell Carcinoma 7 62049 -NCIT:C173650 Salivary Gland Large Cell Neuroendocrine Carcinoma 8 62050 -NCIT:C174034 Unresectable Salivary Gland Carcinoma 6 62051 -NCIT:C172651 Unresectable Salivary Gland Squamous Cell Carcinoma 7 62052 -NCIT:C177722 Refractory Salivary Gland Carcinoma 6 62053 -NCIT:C181079 Hybrid Salivary Gland Carcinoma 6 62054 -NCIT:C35700 Salivary Gland Myoepithelial Carcinoma 6 62055 -NCIT:C35701 Salivary Gland Epithelial-Myoepithelial Carcinoma 6 62056 -NCIT:C35736 Salivary Gland Lymphoepithelial Carcinoma 6 62057 -NCIT:C35737 Salivary Gland Adenosquamous Carcinoma 6 62058 -NCIT:C40410 Salivary Gland Carcinoma ex Pleomorphic Adenoma 6 62059 -NCIT:C5975 Major Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 62060 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 62061 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 62062 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 62063 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 62064 -NCIT:C5976 Minor Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 62065 -NCIT:C5907 Major Salivary Gland Carcinoma 6 62066 -NCIT:C132778 Major Salivary Gland Cancer by AJCC v7 Stage 7 62067 -NCIT:C5895 Stage I Major Salivary Gland Cancer AJCC v7 8 62068 -NCIT:C5896 Stage II Major Salivary Gland Cancer AJCC v7 8 62069 -NCIT:C5897 Stage III Major Salivary Gland Cancer AJCC v7 8 62070 -NCIT:C5898 Stage IV Major Salivary Gland Cancer AJCC v7 8 62071 -NCIT:C35694 Stage IVA Major Salivary Gland Cancer AJCC v7 9 62072 -NCIT:C35695 Stage IVB Major Salivary Gland Cancer AJCC v7 9 62073 -NCIT:C35696 Stage IVC Major Salivary Gland Cancer AJCC v7 9 62074 -NCIT:C5899 Stage IV Major Salivary Gland Carcinoma with Metastasis 9 62075 -NCIT:C5900 Stage IV Major Salivary Gland Carcinoma without Metastasis 9 62076 -NCIT:C132779 Major Salivary Gland Cancer by AJCC v8 Stage 7 62077 -NCIT:C132781 Stage I Major Salivary Gland Cancer AJCC v8 8 62078 -NCIT:C132783 Stage 0 Major Salivary Gland Cancer AJCC v8 8 62079 -NCIT:C132785 Stage II Major Salivary Gland Cancer AJCC v8 8 62080 -NCIT:C132786 Stage III Major Salivary Gland Cancer AJCC v8 8 62081 -NCIT:C132787 Stage IV Major Salivary Gland Cancer AJCC v8 8 62082 -NCIT:C132788 Stage IVA Major Salivary Gland Cancer AJCC v8 9 62083 -NCIT:C132789 Stage IVB Major Salivary Gland Cancer AJCC v8 9 62084 -NCIT:C132790 Stage IVC Major Salivary Gland Cancer AJCC v8 9 62085 -NCIT:C181161 Major Salivary Gland Squamous Cell Carcinoma 7 62086 -NCIT:C5942 Parotid Gland Squamous Cell Carcinoma 8 62087 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 9 62088 -NCIT:C5943 Submandibular Gland Squamous Cell Carcinoma 8 62089 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 9 62090 -NCIT:C5903 Major Salivary Gland Adenocarcinoma 7 62091 -NCIT:C5901 Major Salivary Gland Acinic Cell Carcinoma 8 62092 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 62093 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 62094 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 62095 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 62096 -NCIT:C5940 Submandibular Gland Adenocarcinoma 8 62097 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 62098 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 62099 -NCIT:C5941 Parotid Gland Adenocarcinoma 8 62100 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 62101 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 62102 -NCIT:C5958 Sublingual Gland Adenocarcinoma 8 62103 -NCIT:C5905 Major Salivary Gland Adenoid Cystic Carcinoma 7 62104 -NCIT:C5935 Submandibular Gland Adenoid Cystic Carcinoma 8 62105 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 9 62106 -NCIT:C5937 Parotid Gland Adenoid Cystic Carcinoma 8 62107 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 9 62108 -NCIT:C5906 Major Salivary Gland Mucoepidermoid Carcinoma 7 62109 -NCIT:C5938 Parotid Gland Mucoepidermoid Carcinoma 8 62110 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 9 62111 -NCIT:C5939 Submandibular Gland Mucoepidermoid Carcinoma 8 62112 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 9 62113 -NCIT:C5975 Major Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 62114 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 62115 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 62116 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 62117 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 62118 -NCIT:C6791 Parotid Gland Carcinoma 7 62119 -NCIT:C153800 Recurrent Parotid Gland Carcinoma 8 62120 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 9 62121 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 9 62122 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 62123 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 9 62124 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 9 62125 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 9 62126 -NCIT:C5937 Parotid Gland Adenoid Cystic Carcinoma 8 62127 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 9 62128 -NCIT:C5938 Parotid Gland Mucoepidermoid Carcinoma 8 62129 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 9 62130 -NCIT:C5941 Parotid Gland Adenocarcinoma 8 62131 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 62132 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 62133 -NCIT:C5942 Parotid Gland Squamous Cell Carcinoma 8 62134 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 9 62135 -NCIT:C5946 Parotid Gland Undifferentiated Carcinoma 8 62136 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 9 62137 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 62138 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 62139 -NCIT:C8396 Submandibular Gland Carcinoma 7 62140 -NCIT:C153801 Recurrent Submandibular Gland Carcinoma 8 62141 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 9 62142 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 9 62143 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 62144 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 9 62145 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 9 62146 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 9 62147 -NCIT:C5935 Submandibular Gland Adenoid Cystic Carcinoma 8 62148 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 9 62149 -NCIT:C5939 Submandibular Gland Mucoepidermoid Carcinoma 8 62150 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 9 62151 -NCIT:C5940 Submandibular Gland Adenocarcinoma 8 62152 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 62153 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 62154 -NCIT:C5943 Submandibular Gland Squamous Cell Carcinoma 8 62155 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 9 62156 -NCIT:C5947 Submandibular Gland Undifferentiated Carcinoma 8 62157 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 9 62158 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 62159 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 62160 -NCIT:C8397 Sublingual Gland Carcinoma 7 62161 -NCIT:C5958 Sublingual Gland Adenocarcinoma 8 62162 -NCIT:C5908 Salivary Gland Mucoepidermoid Carcinoma 6 62163 -NCIT:C190273 Childhood Salivary Gland Mucoepidermoid Carcinoma 7 62164 -NCIT:C5906 Major Salivary Gland Mucoepidermoid Carcinoma 7 62165 -NCIT:C5938 Parotid Gland Mucoepidermoid Carcinoma 8 62166 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 9 62167 -NCIT:C5939 Submandibular Gland Mucoepidermoid Carcinoma 8 62168 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 9 62169 -NCIT:C5953 Minor Salivary Gland Mucoepidermoid Carcinoma 7 62170 -NCIT:C8015 Low Grade Salivary Gland Mucoepidermoid Carcinoma 7 62171 -NCIT:C8017 Intermediate Grade Salivary Gland Mucoepidermoid Carcinoma 7 62172 -NCIT:C8019 High Grade Salivary Gland Mucoepidermoid Carcinoma 7 62173 -NCIT:C5957 Minor Salivary Gland Carcinoma 6 62174 -NCIT:C5936 Minor Salivary Gland Adenoid Cystic Carcinoma 7 62175 -NCIT:C5948 Minor Salivary Gland Adenocarcinoma 7 62176 -NCIT:C153612 Recurrent Minor Salivary Gland Adenocarcinoma 8 62177 -NCIT:C160974 Cribriform Adenocarcinoma of Minor Salivary Gland 8 62178 -NCIT:C6243 Minor Salivary Gland Acinic Cell Carcinoma 8 62179 -NCIT:C5953 Minor Salivary Gland Mucoepidermoid Carcinoma 7 62180 -NCIT:C5954 Minor Salivary Gland Undifferentiated Carcinoma 7 62181 -NCIT:C5956 Minor Salivary Gland Small Cell Neuroendocrine Carcinoma 7 62182 -NCIT:C5959 Minor Salivary Gland Squamous Cell Carcinoma 7 62183 -NCIT:C5976 Minor Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 62184 -NCIT:C62191 Salivary Gland Clear Cell Carcinoma 6 62185 -NCIT:C7926 Recurrent Salivary Gland Carcinoma 6 62186 -NCIT:C153611 Recurrent Salivary Duct Carcinoma 7 62187 -NCIT:C153612 Recurrent Minor Salivary Gland Adenocarcinoma 7 62188 -NCIT:C153800 Recurrent Parotid Gland Carcinoma 7 62189 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 8 62190 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 8 62191 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 62192 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 8 62193 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 62194 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 8 62195 -NCIT:C153801 Recurrent Submandibular Gland Carcinoma 7 62196 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 8 62197 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 8 62198 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 62199 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 8 62200 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 62201 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 8 62202 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 62203 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 62204 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 62205 -NCIT:C7991 Salivary Gland Squamous Cell Carcinoma 6 62206 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 7 62207 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 62208 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 62209 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 62210 -NCIT:C172651 Unresectable Salivary Gland Squamous Cell Carcinoma 7 62211 -NCIT:C181161 Major Salivary Gland Squamous Cell Carcinoma 7 62212 -NCIT:C5942 Parotid Gland Squamous Cell Carcinoma 8 62213 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 9 62214 -NCIT:C5943 Submandibular Gland Squamous Cell Carcinoma 8 62215 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 9 62216 -NCIT:C5959 Minor Salivary Gland Squamous Cell Carcinoma 7 62217 -NCIT:C8022 Salivary Gland Poorly Differentiated Squamous Cell Carcinoma 7 62218 -NCIT:C8012 Low Grade Salivary Gland Carcinoma 6 62219 -NCIT:C123384 Salivary Gland Secretory Carcinoma 7 62220 -NCIT:C35702 Salivary Gland Polymorphous Adenocarcinoma 7 62221 -NCIT:C173576 Oropharyngeal Polymorphous Adenocarcinoma 8 62222 -NCIT:C62192 Salivary Gland Intraductal Carcinoma 7 62223 -NCIT:C8015 Low Grade Salivary Gland Mucoepidermoid Carcinoma 7 62224 -NCIT:C8018 High Grade Salivary Gland Carcinoma 6 62225 -NCIT:C5904 Salivary Duct Carcinoma 7 62226 -NCIT:C153611 Recurrent Salivary Duct Carcinoma 8 62227 -NCIT:C62194 Salivary Gland Oncocytic Carcinoma 7 62228 -NCIT:C8019 High Grade Salivary Gland Mucoepidermoid Carcinoma 7 62229 -NCIT:C8021 Salivary Gland Adenocarcinoma 6 62230 -NCIT:C123384 Salivary Gland Secretory Carcinoma 7 62231 -NCIT:C173648 Salivary Gland Sebaceous Carcinoma 7 62232 -NCIT:C35702 Salivary Gland Polymorphous Adenocarcinoma 7 62233 -NCIT:C173576 Oropharyngeal Polymorphous Adenocarcinoma 8 62234 -NCIT:C3678 Salivary Gland Basal Cell Adenocarcinoma 7 62235 -NCIT:C5903 Major Salivary Gland Adenocarcinoma 7 62236 -NCIT:C5901 Major Salivary Gland Acinic Cell Carcinoma 8 62237 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 62238 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 62239 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 62240 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 62241 -NCIT:C5940 Submandibular Gland Adenocarcinoma 8 62242 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 62243 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 62244 -NCIT:C5941 Parotid Gland Adenocarcinoma 8 62245 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 62246 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 62247 -NCIT:C5958 Sublingual Gland Adenocarcinoma 8 62248 -NCIT:C5904 Salivary Duct Carcinoma 7 62249 -NCIT:C153611 Recurrent Salivary Duct Carcinoma 8 62250 -NCIT:C5948 Minor Salivary Gland Adenocarcinoma 7 62251 -NCIT:C153612 Recurrent Minor Salivary Gland Adenocarcinoma 8 62252 -NCIT:C160974 Cribriform Adenocarcinoma of Minor Salivary Gland 8 62253 -NCIT:C6243 Minor Salivary Gland Acinic Cell Carcinoma 8 62254 -NCIT:C5980 Salivary Gland Cystadenocarcinoma 7 62255 -NCIT:C62192 Salivary Gland Intraductal Carcinoma 7 62256 -NCIT:C62193 Salivary Gland Mucinous Adenocarcinoma 7 62257 -NCIT:C62194 Salivary Gland Oncocytic Carcinoma 7 62258 -NCIT:C62196 Salivary Gland Adenocarcinoma, Not Otherwise Specified 7 62259 -NCIT:C8013 Salivary Gland Acinic Cell Carcinoma 7 62260 -NCIT:C190274 Childhood Salivary Gland Acinic Cell Carcinoma 8 62261 -NCIT:C5901 Major Salivary Gland Acinic Cell Carcinoma 8 62262 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 62263 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 62264 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 62265 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 62266 -NCIT:C6243 Minor Salivary Gland Acinic Cell Carcinoma 8 62267 -NCIT:C8024 Salivary Gland Undifferentiated Carcinoma 6 62268 -NCIT:C5946 Parotid Gland Undifferentiated Carcinoma 7 62269 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 8 62270 -NCIT:C5947 Submandibular Gland Undifferentiated Carcinoma 7 62271 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 8 62272 -NCIT:C5954 Minor Salivary Gland Undifferentiated Carcinoma 7 62273 -NCIT:C8026 Salivary Gland Adenoid Cystic Carcinoma 6 62274 -NCIT:C5905 Major Salivary Gland Adenoid Cystic Carcinoma 7 62275 -NCIT:C5935 Submandibular Gland Adenoid Cystic Carcinoma 8 62276 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 9 62277 -NCIT:C5937 Parotid Gland Adenoid Cystic Carcinoma 8 62278 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 9 62279 -NCIT:C5936 Minor Salivary Gland Adenoid Cystic Carcinoma 7 62280 -NCIT:C9315 Lip and Oral Cavity Carcinoma 5 62281 -NCIT:C132728 Lip and Oral Cavity Cancer by AJCC v8 Stage 6 62282 -NCIT:C132729 Stage I Lip and Oral Cavity Cancer AJCC v8 7 62283 -NCIT:C132730 Stage II Lip and Oral Cavity Cancer AJCC v8 7 62284 -NCIT:C132731 Stage III Lip and Oral Cavity Cancer AJCC v8 7 62285 -NCIT:C132732 Stage IV Lip and Oral Cavity Cancer AJCC v8 7 62286 -NCIT:C132733 Stage IVA Lip and Oral Cavity Cancer AJCC v8 8 62287 -NCIT:C132734 Stage IVB Lip and Oral Cavity Cancer AJCC v8 8 62288 -NCIT:C132735 Stage IVC Lip and Oral Cavity Cancer AJCC v8 8 62289 -NCIT:C132736 Lip and Oral Cavity Cancer by AJCC v6 and v7 Stage 6 62290 -NCIT:C7939 Stage 0 Lip and Oral Cavity Cancer AJCC v6 and v7 7 62291 -NCIT:C4587 Stage 0 Oral Cavity Cancer AJCC v6 and v7 8 62292 -NCIT:C6052 Stage 0 Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 62293 -NCIT:C4588 Stage 0 Lip Cancer AJCC v6 and v7 8 62294 -NCIT:C5893 Stage 0 Lip Basal Cell Carcinoma AJCC v6 and v7 9 62295 -NCIT:C8033 Stage I Lip and Oral Cavity Cancer AJCC v6 and v7 7 62296 -NCIT:C115057 Stage I Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 62297 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 62298 -NCIT:C5876 Stage I Lip Cancer AJCC v6 and v7 8 62299 -NCIT:C8197 Stage I Lip Basal Cell Carcinoma 9 62300 -NCIT:C5883 Stage I Oral Cavity Cancer AJCC v6 and v7 8 62301 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 62302 -NCIT:C8199 Stage I Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 62303 -NCIT:C8200 Stage I Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 62304 -NCIT:C8034 Stage II Lip and Oral Cavity Cancer AJCC v6 and v7 7 62305 -NCIT:C115058 Stage II Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 62306 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 62307 -NCIT:C5877 Stage II Lip Cancer AJCC v6 and v7 8 62308 -NCIT:C8201 Stage II Lip Basal Cell Carcinoma 9 62309 -NCIT:C5884 Stage II Oral Cavity Cancer AJCC v6 and v7 8 62310 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 62311 -NCIT:C8203 Stage II Oral Cavity Mucoepidermoid Carcinoma 9 62312 -NCIT:C8204 Stage II Oral Cavity Adenoid Cystic Carcinoma 9 62313 -NCIT:C8035 Stage III Lip and Oral Cavity Cancer AJCC v6 and v7 7 62314 -NCIT:C115059 Stage III Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 62315 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 62316 -NCIT:C5878 Stage III Lip Cancer AJCC v6 and v7 8 62317 -NCIT:C8205 Stage III Lip Basal Cell Carcinoma 9 62318 -NCIT:C5885 Stage III Oral Cavity Cancer AJCC v6 and v7 8 62319 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 62320 -NCIT:C8207 Stage III Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 62321 -NCIT:C8208 Stage III Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 62322 -NCIT:C8036 Stage IV Lip and Oral Cavity Cancer AJCC v6 and v7 7 62323 -NCIT:C115060 Stage IV Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 62324 -NCIT:C115061 Stage IVA Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 62325 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 62326 -NCIT:C115062 Stage IVB Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 62327 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 62328 -NCIT:C115063 Stage IVC Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 62329 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 62330 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 62331 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 62332 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 62333 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 62334 -NCIT:C5879 Stage IV Lip Cancer AJCC v6 and v7 8 62335 -NCIT:C5880 Stage IVA Lip Cancer AJCC v6 and v7 9 62336 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 10 62337 -NCIT:C5881 Stage IVB Lip Cancer AJCC v6 and v7 9 62338 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 10 62339 -NCIT:C5882 Stage IVC Lip Cancer AJCC v6 and v7 9 62340 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 10 62341 -NCIT:C8209 Stage IV Lip Basal Cell Carcinoma 9 62342 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 10 62343 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 10 62344 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 10 62345 -NCIT:C5886 Stage IV Oral Cavity Cancer AJCC v6 and v7 8 62346 -NCIT:C5887 Stage IVA Oral Cavity Cancer AJCC v6 and v7 9 62347 -NCIT:C5863 Stage IVA Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 62348 -NCIT:C5868 Stage IVA Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 62349 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 62350 -NCIT:C5888 Stage IVB Oral Cavity Cancer AJCC v6 and v7 9 62351 -NCIT:C5864 Stage IVB Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 62352 -NCIT:C5867 Stage IVB Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 62353 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 62354 -NCIT:C5889 Stage IVC Oral Cavity Cancer AJCC v6 and v7 9 62355 -NCIT:C5865 Stage IVC Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 62356 -NCIT:C5866 Stage IVC Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 62357 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 62358 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 62359 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 62360 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 62361 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 62362 -NCIT:C8211 Stage IV Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 62363 -NCIT:C5866 Stage IVC Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 62364 -NCIT:C5867 Stage IVB Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 62365 -NCIT:C5868 Stage IVA Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 62366 -NCIT:C8212 Stage IV Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 62367 -NCIT:C5863 Stage IVA Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 62368 -NCIT:C5864 Stage IVB Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 62369 -NCIT:C5865 Stage IVC Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 62370 -NCIT:C87301 Stage IVA Lip and Oral Cavity Cancer AJCC v6 and v7 8 62371 -NCIT:C115061 Stage IVA Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 62372 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 62373 -NCIT:C5880 Stage IVA Lip Cancer AJCC v6 and v7 9 62374 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 10 62375 -NCIT:C5887 Stage IVA Oral Cavity Cancer AJCC v6 and v7 9 62376 -NCIT:C5863 Stage IVA Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 62377 -NCIT:C5868 Stage IVA Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 62378 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 62379 -NCIT:C87302 Stage IVB Lip and Oral Cavity Cancer AJCC v6 and v7 8 62380 -NCIT:C115062 Stage IVB Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 62381 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 62382 -NCIT:C5881 Stage IVB Lip Cancer AJCC v6 and v7 9 62383 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 10 62384 -NCIT:C5888 Stage IVB Oral Cavity Cancer AJCC v6 and v7 9 62385 -NCIT:C5864 Stage IVB Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 62386 -NCIT:C5867 Stage IVB Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 62387 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 62388 -NCIT:C87303 Stage IVC Lip and Oral Cavity Cancer AJCC v6 and v7 8 62389 -NCIT:C115063 Stage IVC Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 62390 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 62391 -NCIT:C5882 Stage IVC Lip Cancer AJCC v6 and v7 9 62392 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 10 62393 -NCIT:C5889 Stage IVC Oral Cavity Cancer AJCC v6 and v7 9 62394 -NCIT:C5865 Stage IVC Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 62395 -NCIT:C5866 Stage IVC Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 62396 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 62397 -NCIT:C156086 Metastatic Lip and Oral Cavity Carcinoma 6 62398 -NCIT:C156087 Metastatic Oral Cavity Carcinoma 7 62399 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 62400 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 62401 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 62402 -NCIT:C156089 Metastatic Oral Cavity Adenoid Cystic Carcinoma 8 62403 -NCIT:C156090 Metastatic Oral Cavity Mucoepidermoid Carcinoma 8 62404 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 8 62405 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 62406 -NCIT:C156088 Metastatic Lip Carcinoma 7 62407 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 62408 -NCIT:C165562 Locally Advanced Lip and Oral Cavity Carcinoma 7 62409 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 8 62410 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 62411 -NCIT:C3490 Lip Carcinoma 6 62412 -NCIT:C156088 Metastatic Lip Carcinoma 7 62413 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 62414 -NCIT:C4042 Lip Squamous Cell Carcinoma 7 62415 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 62416 -NCIT:C4588 Stage 0 Lip Cancer AJCC v6 and v7 7 62417 -NCIT:C5893 Stage 0 Lip Basal Cell Carcinoma AJCC v6 and v7 8 62418 -NCIT:C5876 Stage I Lip Cancer AJCC v6 and v7 7 62419 -NCIT:C8197 Stage I Lip Basal Cell Carcinoma 8 62420 -NCIT:C5877 Stage II Lip Cancer AJCC v6 and v7 7 62421 -NCIT:C8201 Stage II Lip Basal Cell Carcinoma 8 62422 -NCIT:C5878 Stage III Lip Cancer AJCC v6 and v7 7 62423 -NCIT:C8205 Stage III Lip Basal Cell Carcinoma 8 62424 -NCIT:C5879 Stage IV Lip Cancer AJCC v6 and v7 7 62425 -NCIT:C5880 Stage IVA Lip Cancer AJCC v6 and v7 8 62426 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 9 62427 -NCIT:C5881 Stage IVB Lip Cancer AJCC v6 and v7 8 62428 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 9 62429 -NCIT:C5882 Stage IVC Lip Cancer AJCC v6 and v7 8 62430 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 9 62431 -NCIT:C8209 Stage IV Lip Basal Cell Carcinoma 8 62432 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 9 62433 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 9 62434 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 9 62435 -NCIT:C8014 Lip Basal Cell Carcinoma 7 62436 -NCIT:C5893 Stage 0 Lip Basal Cell Carcinoma AJCC v6 and v7 8 62437 -NCIT:C8197 Stage I Lip Basal Cell Carcinoma 8 62438 -NCIT:C8201 Stage II Lip Basal Cell Carcinoma 8 62439 -NCIT:C8205 Stage III Lip Basal Cell Carcinoma 8 62440 -NCIT:C8209 Stage IV Lip Basal Cell Carcinoma 8 62441 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 9 62442 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 9 62443 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 9 62444 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 8 62445 -NCIT:C42690 Lip and Oral Cavity Squamous Cell Carcinoma 6 62446 -NCIT:C115057 Stage I Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 62447 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 62448 -NCIT:C115058 Stage II Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 62449 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 62450 -NCIT:C115059 Stage III Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 62451 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 62452 -NCIT:C115060 Stage IV Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 62453 -NCIT:C115061 Stage IVA Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 62454 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 62455 -NCIT:C115062 Stage IVB Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 62456 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 62457 -NCIT:C115063 Stage IVC Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 62458 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 62459 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 62460 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 62461 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 62462 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 62463 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 62464 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 62465 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 62466 -NCIT:C4042 Lip Squamous Cell Carcinoma 7 62467 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 62468 -NCIT:C4833 Oral Cavity Squamous Cell Carcinoma 7 62469 -NCIT:C129857 Gingival Squamous Cell Carcinoma 8 62470 -NCIT:C129289 Gingival Spindle Cell Carcinoma 9 62471 -NCIT:C8171 Lower Gingival Squamous Cell Carcinoma 9 62472 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 10 62473 -NCIT:C8172 Retromolar Trigone Squamous Cell Carcinoma 9 62474 -NCIT:C8173 Upper Gingival Squamous Cell Carcinoma 9 62475 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 10 62476 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 8 62477 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 62478 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 62479 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 62480 -NCIT:C170774 Alveolar Ridge Squamous Cell Carcinoma 8 62481 -NCIT:C170775 Upper Alveolar Ridge Squamous Cell Carcinoma 9 62482 -NCIT:C170776 Lower Alveolar Ridge Squamous Cell Carcinoma 9 62483 -NCIT:C172644 Unresectable Oral Cavity Squamous Cell Carcinoma 8 62484 -NCIT:C4040 Buccal Mucosa Squamous Cell Carcinoma 8 62485 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 9 62486 -NCIT:C4041 Floor of Mouth Squamous Cell Carcinoma 8 62487 -NCIT:C129873 Floor of Mouth Basaloid Squamous Cell Carcinoma 9 62488 -NCIT:C4648 Tongue Squamous Cell Carcinoma 8 62489 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 62490 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 62491 -NCIT:C4649 Palate Squamous Cell Carcinoma 8 62492 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 62493 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 62494 -NCIT:C54295 Primary Intraosseous Squamous Cell Carcinoma 8 62495 -NCIT:C54303 Primary Intraosseous Squamous Cell Carcinoma Derived From Keratocystic Odontogenic Tumor 9 62496 -NCIT:C7491 Primary Intraosseous Squamous Cell Carcinoma-Solid Type 9 62497 -NCIT:C7498 Keratinizing Primary Intraosseous Squamous Cell Carcinoma-Solid Type 10 62498 -NCIT:C7499 Non-Keratinizing Primary Intraosseous Squamous Cell Carcinoma -Solid Type 10 62499 -NCIT:C7500 Primary Intraosseous Squamous Cell Carcinoma Derived From Odontogenic Cyst 9 62500 -NCIT:C6052 Stage 0 Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 62501 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 62502 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 62503 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 62504 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 62505 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 62506 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 62507 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 62508 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 62509 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 62510 -NCIT:C8174 Oral Cavity Verrucous Carcinoma 8 62511 -NCIT:C179894 Oral Cavity Carcinoma Cuniculatum 9 62512 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 9 62513 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 9 62514 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 9 62515 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 62516 -NCIT:C8037 Recurrent Lip and Oral Cavity Carcinoma 6 62517 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 62518 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 62519 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 62520 -NCIT:C6076 Recurrent Oral Cavity Carcinoma 7 62521 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 62522 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 62523 -NCIT:C8215 Recurrent Oral Cavity Mucoepidermoid Carcinoma 8 62524 -NCIT:C8216 Recurrent Oral Cavity Adenoid Cystic Carcinoma 8 62525 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 7 62526 -NCIT:C8990 Oral Cavity Carcinoma 6 62527 -NCIT:C156087 Metastatic Oral Cavity Carcinoma 7 62528 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 62529 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 62530 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 62531 -NCIT:C156089 Metastatic Oral Cavity Adenoid Cystic Carcinoma 8 62532 -NCIT:C156090 Metastatic Oral Cavity Mucoepidermoid Carcinoma 8 62533 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 8 62534 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 62535 -NCIT:C173720 Odontogenic Carcinoma 7 62536 -NCIT:C173733 Sclerosing Odontogenic Carcinoma 8 62537 -NCIT:C4311 Ghost Cell Odontogenic Carcinoma 8 62538 -NCIT:C54295 Primary Intraosseous Squamous Cell Carcinoma 8 62539 -NCIT:C54303 Primary Intraosseous Squamous Cell Carcinoma Derived From Keratocystic Odontogenic Tumor 9 62540 -NCIT:C7491 Primary Intraosseous Squamous Cell Carcinoma-Solid Type 9 62541 -NCIT:C7498 Keratinizing Primary Intraosseous Squamous Cell Carcinoma-Solid Type 10 62542 -NCIT:C7499 Non-Keratinizing Primary Intraosseous Squamous Cell Carcinoma -Solid Type 10 62543 -NCIT:C7500 Primary Intraosseous Squamous Cell Carcinoma Derived From Odontogenic Cyst 9 62544 -NCIT:C54300 Clear Cell Odontogenic Carcinoma 8 62545 -NCIT:C7492 Ameloblastic Carcinoma 8 62546 -NCIT:C7493 Ameloblastic Carcinoma-Primary Type 9 62547 -NCIT:C7496 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated) 9 62548 -NCIT:C54298 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated), Intraosseous 10 62549 -NCIT:C54299 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated), Peripheral 10 62550 -NCIT:C7497 Ameloblastic Carcinoma Derived From Odontogenic Cyst 9 62551 -NCIT:C4587 Stage 0 Oral Cavity Cancer AJCC v6 and v7 7 62552 -NCIT:C6052 Stage 0 Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 62553 -NCIT:C4824 Tongue Carcinoma 7 62554 -NCIT:C171028 Tongue Adenoid Cystic Carcinoma 8 62555 -NCIT:C5991 Posterior Tongue Adenoid Cystic Carcinoma 9 62556 -NCIT:C6251 Anterior Tongue Adenoid Cystic Carcinoma 9 62557 -NCIT:C173807 Tongue Adenosquamous Carcinoma 8 62558 -NCIT:C181160 Tongue Mucoepidermoid Carcinoma 8 62559 -NCIT:C5990 Posterior Tongue Mucoepidermoid Carcinoma 9 62560 -NCIT:C6250 Anterior Tongue Mucoepidermoid Carcinoma 9 62561 -NCIT:C4648 Tongue Squamous Cell Carcinoma 8 62562 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 62563 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 62564 -NCIT:C6249 Anterior Tongue Carcinoma 8 62565 -NCIT:C6250 Anterior Tongue Mucoepidermoid Carcinoma 9 62566 -NCIT:C6251 Anterior Tongue Adenoid Cystic Carcinoma 9 62567 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 62568 -NCIT:C8407 Posterior Tongue Carcinoma 8 62569 -NCIT:C5990 Posterior Tongue Mucoepidermoid Carcinoma 9 62570 -NCIT:C5991 Posterior Tongue Adenoid Cystic Carcinoma 9 62571 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 62572 -NCIT:C4833 Oral Cavity Squamous Cell Carcinoma 7 62573 -NCIT:C129857 Gingival Squamous Cell Carcinoma 8 62574 -NCIT:C129289 Gingival Spindle Cell Carcinoma 9 62575 -NCIT:C8171 Lower Gingival Squamous Cell Carcinoma 9 62576 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 10 62577 -NCIT:C8172 Retromolar Trigone Squamous Cell Carcinoma 9 62578 -NCIT:C8173 Upper Gingival Squamous Cell Carcinoma 9 62579 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 10 62580 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 8 62581 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 62582 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 62583 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 62584 -NCIT:C170774 Alveolar Ridge Squamous Cell Carcinoma 8 62585 -NCIT:C170775 Upper Alveolar Ridge Squamous Cell Carcinoma 9 62586 -NCIT:C170776 Lower Alveolar Ridge Squamous Cell Carcinoma 9 62587 -NCIT:C172644 Unresectable Oral Cavity Squamous Cell Carcinoma 8 62588 -NCIT:C4040 Buccal Mucosa Squamous Cell Carcinoma 8 62589 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 9 62590 -NCIT:C4041 Floor of Mouth Squamous Cell Carcinoma 8 62591 -NCIT:C129873 Floor of Mouth Basaloid Squamous Cell Carcinoma 9 62592 -NCIT:C4648 Tongue Squamous Cell Carcinoma 8 62593 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 62594 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 62595 -NCIT:C4649 Palate Squamous Cell Carcinoma 8 62596 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 62597 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 62598 -NCIT:C54295 Primary Intraosseous Squamous Cell Carcinoma 8 62599 -NCIT:C54303 Primary Intraosseous Squamous Cell Carcinoma Derived From Keratocystic Odontogenic Tumor 9 62600 -NCIT:C7491 Primary Intraosseous Squamous Cell Carcinoma-Solid Type 9 62601 -NCIT:C7498 Keratinizing Primary Intraosseous Squamous Cell Carcinoma-Solid Type 10 62602 -NCIT:C7499 Non-Keratinizing Primary Intraosseous Squamous Cell Carcinoma -Solid Type 10 62603 -NCIT:C7500 Primary Intraosseous Squamous Cell Carcinoma Derived From Odontogenic Cyst 9 62604 -NCIT:C6052 Stage 0 Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 62605 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 62606 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 62607 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 62608 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 62609 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 62610 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 62611 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 62612 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 62613 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 62614 -NCIT:C8174 Oral Cavity Verrucous Carcinoma 8 62615 -NCIT:C179894 Oral Cavity Carcinoma Cuniculatum 9 62616 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 9 62617 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 9 62618 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 9 62619 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 62620 -NCIT:C5883 Stage I Oral Cavity Cancer AJCC v6 and v7 7 62621 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 62622 -NCIT:C8199 Stage I Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 62623 -NCIT:C8200 Stage I Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 62624 -NCIT:C5884 Stage II Oral Cavity Cancer AJCC v6 and v7 7 62625 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 62626 -NCIT:C8203 Stage II Oral Cavity Mucoepidermoid Carcinoma 8 62627 -NCIT:C8204 Stage II Oral Cavity Adenoid Cystic Carcinoma 8 62628 -NCIT:C5885 Stage III Oral Cavity Cancer AJCC v6 and v7 7 62629 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 62630 -NCIT:C8207 Stage III Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 62631 -NCIT:C8208 Stage III Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 62632 -NCIT:C5886 Stage IV Oral Cavity Cancer AJCC v6 and v7 7 62633 -NCIT:C5887 Stage IVA Oral Cavity Cancer AJCC v6 and v7 8 62634 -NCIT:C5863 Stage IVA Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 62635 -NCIT:C5868 Stage IVA Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 62636 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 62637 -NCIT:C5888 Stage IVB Oral Cavity Cancer AJCC v6 and v7 8 62638 -NCIT:C5864 Stage IVB Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 62639 -NCIT:C5867 Stage IVB Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 62640 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 62641 -NCIT:C5889 Stage IVC Oral Cavity Cancer AJCC v6 and v7 8 62642 -NCIT:C5865 Stage IVC Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 62643 -NCIT:C5866 Stage IVC Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 62644 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 62645 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 62646 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 62647 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 62648 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 62649 -NCIT:C8211 Stage IV Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 62650 -NCIT:C5866 Stage IVC Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 62651 -NCIT:C5867 Stage IVB Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 62652 -NCIT:C5868 Stage IVA Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 62653 -NCIT:C8212 Stage IV Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 62654 -NCIT:C5863 Stage IVA Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 62655 -NCIT:C5864 Stage IVB Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 62656 -NCIT:C5865 Stage IVC Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 62657 -NCIT:C5914 Oral Cavity Adenocarcinoma 7 62658 -NCIT:C6076 Recurrent Oral Cavity Carcinoma 7 62659 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 62660 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 62661 -NCIT:C8215 Recurrent Oral Cavity Mucoepidermoid Carcinoma 8 62662 -NCIT:C8216 Recurrent Oral Cavity Adenoid Cystic Carcinoma 8 62663 -NCIT:C7721 Gingival Carcinoma 7 62664 -NCIT:C129857 Gingival Squamous Cell Carcinoma 8 62665 -NCIT:C129289 Gingival Spindle Cell Carcinoma 9 62666 -NCIT:C8171 Lower Gingival Squamous Cell Carcinoma 9 62667 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 10 62668 -NCIT:C8172 Retromolar Trigone Squamous Cell Carcinoma 9 62669 -NCIT:C8173 Upper Gingival Squamous Cell Carcinoma 9 62670 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 10 62671 -NCIT:C8392 Upper Gingival Carcinoma 8 62672 -NCIT:C8173 Upper Gingival Squamous Cell Carcinoma 9 62673 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 10 62674 -NCIT:C8393 Lower Gingival Carcinoma 8 62675 -NCIT:C8171 Lower Gingival Squamous Cell Carcinoma 9 62676 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 10 62677 -NCIT:C8177 Oral Cavity Mucoepidermoid Carcinoma 7 62678 -NCIT:C156090 Metastatic Oral Cavity Mucoepidermoid Carcinoma 8 62679 -NCIT:C181160 Tongue Mucoepidermoid Carcinoma 8 62680 -NCIT:C5990 Posterior Tongue Mucoepidermoid Carcinoma 9 62681 -NCIT:C6250 Anterior Tongue Mucoepidermoid Carcinoma 9 62682 -NCIT:C6214 Hard Palate Mucoepidermoid Carcinoma 8 62683 -NCIT:C8178 Floor of Mouth Mucoepidermoid Carcinoma 8 62684 -NCIT:C8199 Stage I Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 62685 -NCIT:C8203 Stage II Oral Cavity Mucoepidermoid Carcinoma 8 62686 -NCIT:C8207 Stage III Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 62687 -NCIT:C8211 Stage IV Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 62688 -NCIT:C5866 Stage IVC Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 62689 -NCIT:C5867 Stage IVB Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 62690 -NCIT:C5868 Stage IVA Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 62691 -NCIT:C8215 Recurrent Oral Cavity Mucoepidermoid Carcinoma 8 62692 -NCIT:C8179 Oral Cavity Adenoid Cystic Carcinoma 7 62693 -NCIT:C156089 Metastatic Oral Cavity Adenoid Cystic Carcinoma 8 62694 -NCIT:C171028 Tongue Adenoid Cystic Carcinoma 8 62695 -NCIT:C5991 Posterior Tongue Adenoid Cystic Carcinoma 9 62696 -NCIT:C6251 Anterior Tongue Adenoid Cystic Carcinoma 9 62697 -NCIT:C6213 Hard Palate Adenoid Cystic Carcinoma 8 62698 -NCIT:C8180 Floor of Mouth Adenoid Cystic Carcinoma 8 62699 -NCIT:C8200 Stage I Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 62700 -NCIT:C8204 Stage II Oral Cavity Adenoid Cystic Carcinoma 8 62701 -NCIT:C8208 Stage III Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 62702 -NCIT:C8212 Stage IV Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 62703 -NCIT:C5863 Stage IVA Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 62704 -NCIT:C5864 Stage IVB Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 62705 -NCIT:C5865 Stage IVC Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 62706 -NCIT:C8216 Recurrent Oral Cavity Adenoid Cystic Carcinoma 8 62707 -NCIT:C8463 Palate Carcinoma 7 62708 -NCIT:C4649 Palate Squamous Cell Carcinoma 8 62709 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 62710 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 62711 -NCIT:C8394 Hard Palate Carcinoma 8 62712 -NCIT:C6213 Hard Palate Adenoid Cystic Carcinoma 9 62713 -NCIT:C6214 Hard Palate Mucoepidermoid Carcinoma 9 62714 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 62715 -NCIT:C8395 Soft Palate Carcinoma 8 62716 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 62717 -NCIT:C9319 Floor of the Mouth Carcinoma 7 62718 -NCIT:C4041 Floor of Mouth Squamous Cell Carcinoma 8 62719 -NCIT:C129873 Floor of Mouth Basaloid Squamous Cell Carcinoma 9 62720 -NCIT:C8178 Floor of Mouth Mucoepidermoid Carcinoma 8 62721 -NCIT:C8180 Floor of Mouth Adenoid Cystic Carcinoma 8 62722 -NCIT:C3811 Malignant Salivary Gland Neoplasm 4 62723 -NCIT:C173690 Salivary Gland Lymphoma 5 62724 -NCIT:C173691 Salivary Gland Non-Hodgkin Lymphoma 6 62725 -NCIT:C173693 Salivary Gland Mucosa-Associated Lymphoid Tissue Lymphoma 7 62726 -NCIT:C35687 Parotid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 8 62727 -NCIT:C173715 Salivary Gland Follicular Lymphoma 7 62728 -NCIT:C173716 Parotid Gland Follicular Lymphoma 8 62729 -NCIT:C173717 Salivary Gland Diffuse Large B-Cell Lymphoma 7 62730 -NCIT:C173719 Parotid Gland Diffuse Large B-Cell Lymphoma 8 62731 -NCIT:C5981 Major Salivary Gland Non-Hodgkin Lymphoma 7 62732 -NCIT:C5951 Parotid Gland Non-Hodgkin Lymphoma 8 62733 -NCIT:C173716 Parotid Gland Follicular Lymphoma 9 62734 -NCIT:C173719 Parotid Gland Diffuse Large B-Cell Lymphoma 9 62735 -NCIT:C181210 Parotid Gland Mantle Cell Lymphoma 9 62736 -NCIT:C35687 Parotid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 9 62737 -NCIT:C173692 Salivary Gland Hodgkin Lymphoma 6 62738 -NCIT:C177721 Refractory Malignant Salivary Gland Neoplasm 5 62739 -NCIT:C177722 Refractory Salivary Gland Carcinoma 6 62740 -NCIT:C35675 Recurrent Malignant Salivary Gland Neoplasm 5 62741 -NCIT:C7926 Recurrent Salivary Gland Carcinoma 6 62742 -NCIT:C153611 Recurrent Salivary Duct Carcinoma 7 62743 -NCIT:C153612 Recurrent Minor Salivary Gland Adenocarcinoma 7 62744 -NCIT:C153800 Recurrent Parotid Gland Carcinoma 7 62745 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 8 62746 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 8 62747 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 62748 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 8 62749 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 62750 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 8 62751 -NCIT:C153801 Recurrent Submandibular Gland Carcinoma 7 62752 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 8 62753 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 8 62754 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 62755 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 8 62756 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 62757 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 8 62758 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 62759 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 62760 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 62761 -NCIT:C4410 Malignant Minor Salivary Gland Neoplasm 5 62762 -NCIT:C5955 Malignant Mixed Tumor of the Minor Salivary Gland 6 62763 -NCIT:C5976 Minor Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 62764 -NCIT:C5957 Minor Salivary Gland Carcinoma 6 62765 -NCIT:C5936 Minor Salivary Gland Adenoid Cystic Carcinoma 7 62766 -NCIT:C5948 Minor Salivary Gland Adenocarcinoma 7 62767 -NCIT:C153612 Recurrent Minor Salivary Gland Adenocarcinoma 8 62768 -NCIT:C160974 Cribriform Adenocarcinoma of Minor Salivary Gland 8 62769 -NCIT:C6243 Minor Salivary Gland Acinic Cell Carcinoma 8 62770 -NCIT:C5953 Minor Salivary Gland Mucoepidermoid Carcinoma 7 62771 -NCIT:C5954 Minor Salivary Gland Undifferentiated Carcinoma 7 62772 -NCIT:C5956 Minor Salivary Gland Small Cell Neuroendocrine Carcinoma 7 62773 -NCIT:C5959 Minor Salivary Gland Squamous Cell Carcinoma 7 62774 -NCIT:C5976 Minor Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 62775 -NCIT:C4762 Malignant Major Salivary Gland Neoplasm 5 62776 -NCIT:C3525 Malignant Parotid Gland Neoplasm 6 62777 -NCIT:C156280 Parotid Gland Sarcoma 7 62778 -NCIT:C156281 Parotid Gland Liposarcoma 8 62779 -NCIT:C5952 Parotid Gland Kaposi Sarcoma 8 62780 -NCIT:C5945 Malignant Parotid Gland Mixed Tumor 7 62781 -NCIT:C35832 Parotid Gland Carcinosarcoma 8 62782 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 62783 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 62784 -NCIT:C5951 Parotid Gland Non-Hodgkin Lymphoma 7 62785 -NCIT:C173716 Parotid Gland Follicular Lymphoma 8 62786 -NCIT:C173719 Parotid Gland Diffuse Large B-Cell Lymphoma 8 62787 -NCIT:C181210 Parotid Gland Mantle Cell Lymphoma 8 62788 -NCIT:C35687 Parotid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 8 62789 -NCIT:C6791 Parotid Gland Carcinoma 7 62790 -NCIT:C153800 Recurrent Parotid Gland Carcinoma 8 62791 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 9 62792 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 9 62793 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 62794 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 9 62795 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 9 62796 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 9 62797 -NCIT:C5937 Parotid Gland Adenoid Cystic Carcinoma 8 62798 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 9 62799 -NCIT:C5938 Parotid Gland Mucoepidermoid Carcinoma 8 62800 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 9 62801 -NCIT:C5941 Parotid Gland Adenocarcinoma 8 62802 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 62803 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 62804 -NCIT:C5942 Parotid Gland Squamous Cell Carcinoma 8 62805 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 9 62806 -NCIT:C5946 Parotid Gland Undifferentiated Carcinoma 8 62807 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 9 62808 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 62809 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 62810 -NCIT:C3526 Malignant Submandibular Gland Neoplasm 6 62811 -NCIT:C5944 Malignant Submandibular Gland Mixed Tumor 7 62812 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 62813 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 62814 -NCIT:C8396 Submandibular Gland Carcinoma 7 62815 -NCIT:C153801 Recurrent Submandibular Gland Carcinoma 8 62816 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 9 62817 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 9 62818 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 62819 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 9 62820 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 9 62821 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 9 62822 -NCIT:C5935 Submandibular Gland Adenoid Cystic Carcinoma 8 62823 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 9 62824 -NCIT:C5939 Submandibular Gland Mucoepidermoid Carcinoma 8 62825 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 9 62826 -NCIT:C5940 Submandibular Gland Adenocarcinoma 8 62827 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 62828 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 62829 -NCIT:C5943 Submandibular Gland Squamous Cell Carcinoma 8 62830 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 9 62831 -NCIT:C5947 Submandibular Gland Undifferentiated Carcinoma 8 62832 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 9 62833 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 62834 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 62835 -NCIT:C3527 Malignant Sublingual Gland Neoplasm 6 62836 -NCIT:C8397 Sublingual Gland Carcinoma 7 62837 -NCIT:C5958 Sublingual Gland Adenocarcinoma 8 62838 -NCIT:C5902 Malignant Mixed Tumor of the Major Salivary Gland 6 62839 -NCIT:C5944 Malignant Submandibular Gland Mixed Tumor 7 62840 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 62841 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 62842 -NCIT:C5945 Malignant Parotid Gland Mixed Tumor 7 62843 -NCIT:C35832 Parotid Gland Carcinosarcoma 8 62844 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 62845 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 62846 -NCIT:C5975 Major Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 62847 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 62848 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 62849 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 62850 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 62851 -NCIT:C5907 Major Salivary Gland Carcinoma 6 62852 -NCIT:C132778 Major Salivary Gland Cancer by AJCC v7 Stage 7 62853 -NCIT:C5895 Stage I Major Salivary Gland Cancer AJCC v7 8 62854 -NCIT:C5896 Stage II Major Salivary Gland Cancer AJCC v7 8 62855 -NCIT:C5897 Stage III Major Salivary Gland Cancer AJCC v7 8 62856 -NCIT:C5898 Stage IV Major Salivary Gland Cancer AJCC v7 8 62857 -NCIT:C35694 Stage IVA Major Salivary Gland Cancer AJCC v7 9 62858 -NCIT:C35695 Stage IVB Major Salivary Gland Cancer AJCC v7 9 62859 -NCIT:C35696 Stage IVC Major Salivary Gland Cancer AJCC v7 9 62860 -NCIT:C5899 Stage IV Major Salivary Gland Carcinoma with Metastasis 9 62861 -NCIT:C5900 Stage IV Major Salivary Gland Carcinoma without Metastasis 9 62862 -NCIT:C132779 Major Salivary Gland Cancer by AJCC v8 Stage 7 62863 -NCIT:C132781 Stage I Major Salivary Gland Cancer AJCC v8 8 62864 -NCIT:C132783 Stage 0 Major Salivary Gland Cancer AJCC v8 8 62865 -NCIT:C132785 Stage II Major Salivary Gland Cancer AJCC v8 8 62866 -NCIT:C132786 Stage III Major Salivary Gland Cancer AJCC v8 8 62867 -NCIT:C132787 Stage IV Major Salivary Gland Cancer AJCC v8 8 62868 -NCIT:C132788 Stage IVA Major Salivary Gland Cancer AJCC v8 9 62869 -NCIT:C132789 Stage IVB Major Salivary Gland Cancer AJCC v8 9 62870 -NCIT:C132790 Stage IVC Major Salivary Gland Cancer AJCC v8 9 62871 -NCIT:C181161 Major Salivary Gland Squamous Cell Carcinoma 7 62872 -NCIT:C5942 Parotid Gland Squamous Cell Carcinoma 8 62873 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 9 62874 -NCIT:C5943 Submandibular Gland Squamous Cell Carcinoma 8 62875 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 9 62876 -NCIT:C5903 Major Salivary Gland Adenocarcinoma 7 62877 -NCIT:C5901 Major Salivary Gland Acinic Cell Carcinoma 8 62878 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 62879 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 62880 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 62881 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 62882 -NCIT:C5940 Submandibular Gland Adenocarcinoma 8 62883 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 62884 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 62885 -NCIT:C5941 Parotid Gland Adenocarcinoma 8 62886 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 62887 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 62888 -NCIT:C5958 Sublingual Gland Adenocarcinoma 8 62889 -NCIT:C5905 Major Salivary Gland Adenoid Cystic Carcinoma 7 62890 -NCIT:C5935 Submandibular Gland Adenoid Cystic Carcinoma 8 62891 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 9 62892 -NCIT:C5937 Parotid Gland Adenoid Cystic Carcinoma 8 62893 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 9 62894 -NCIT:C5906 Major Salivary Gland Mucoepidermoid Carcinoma 7 62895 -NCIT:C5938 Parotid Gland Mucoepidermoid Carcinoma 8 62896 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 9 62897 -NCIT:C5939 Submandibular Gland Mucoepidermoid Carcinoma 8 62898 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 9 62899 -NCIT:C5975 Major Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 62900 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 62901 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 62902 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 62903 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 62904 -NCIT:C6791 Parotid Gland Carcinoma 7 62905 -NCIT:C153800 Recurrent Parotid Gland Carcinoma 8 62906 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 9 62907 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 9 62908 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 62909 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 9 62910 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 9 62911 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 9 62912 -NCIT:C5937 Parotid Gland Adenoid Cystic Carcinoma 8 62913 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 9 62914 -NCIT:C5938 Parotid Gland Mucoepidermoid Carcinoma 8 62915 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 9 62916 -NCIT:C5941 Parotid Gland Adenocarcinoma 8 62917 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 62918 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 62919 -NCIT:C5942 Parotid Gland Squamous Cell Carcinoma 8 62920 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 9 62921 -NCIT:C5946 Parotid Gland Undifferentiated Carcinoma 8 62922 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 9 62923 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 62924 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 62925 -NCIT:C8396 Submandibular Gland Carcinoma 7 62926 -NCIT:C153801 Recurrent Submandibular Gland Carcinoma 8 62927 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 9 62928 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 9 62929 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 62930 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 9 62931 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 9 62932 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 9 62933 -NCIT:C5935 Submandibular Gland Adenoid Cystic Carcinoma 8 62934 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 9 62935 -NCIT:C5939 Submandibular Gland Mucoepidermoid Carcinoma 8 62936 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 9 62937 -NCIT:C5940 Submandibular Gland Adenocarcinoma 8 62938 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 62939 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 62940 -NCIT:C5943 Submandibular Gland Squamous Cell Carcinoma 8 62941 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 9 62942 -NCIT:C5947 Submandibular Gland Undifferentiated Carcinoma 8 62943 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 9 62944 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 62945 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 62946 -NCIT:C8397 Sublingual Gland Carcinoma 7 62947 -NCIT:C5958 Sublingual Gland Adenocarcinoma 8 62948 -NCIT:C5981 Major Salivary Gland Non-Hodgkin Lymphoma 6 62949 -NCIT:C5951 Parotid Gland Non-Hodgkin Lymphoma 7 62950 -NCIT:C173716 Parotid Gland Follicular Lymphoma 8 62951 -NCIT:C173719 Parotid Gland Diffuse Large B-Cell Lymphoma 8 62952 -NCIT:C181210 Parotid Gland Mantle Cell Lymphoma 8 62953 -NCIT:C35687 Parotid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 8 62954 -NCIT:C5983 Major Salivary Gland Sarcoma 6 62955 -NCIT:C156280 Parotid Gland Sarcoma 7 62956 -NCIT:C156281 Parotid Gland Liposarcoma 8 62957 -NCIT:C5952 Parotid Gland Kaposi Sarcoma 8 62958 -NCIT:C8025 Malignant Mixed Tumor of the Salivary Gland 5 62959 -NCIT:C35831 Salivary Gland Carcinosarcoma 6 62960 -NCIT:C35832 Parotid Gland Carcinosarcoma 7 62961 -NCIT:C40410 Salivary Gland Carcinoma ex Pleomorphic Adenoma 6 62962 -NCIT:C5975 Major Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 62963 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 62964 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 62965 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 62966 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 62967 -NCIT:C5976 Minor Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 62968 -NCIT:C5902 Malignant Mixed Tumor of the Major Salivary Gland 6 62969 -NCIT:C5944 Malignant Submandibular Gland Mixed Tumor 7 62970 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 62971 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 62972 -NCIT:C5945 Malignant Parotid Gland Mixed Tumor 7 62973 -NCIT:C35832 Parotid Gland Carcinosarcoma 8 62974 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 62975 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 62976 -NCIT:C5975 Major Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 62977 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 62978 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 62979 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 62980 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 62981 -NCIT:C5955 Malignant Mixed Tumor of the Minor Salivary Gland 6 62982 -NCIT:C5976 Minor Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 62983 -NCIT:C9272 Salivary Gland Carcinoma 5 62984 -NCIT:C118824 Childhood Salivary Gland Carcinoma 6 62985 -NCIT:C190273 Childhood Salivary Gland Mucoepidermoid Carcinoma 7 62986 -NCIT:C190274 Childhood Salivary Gland Acinic Cell Carcinoma 7 62987 -NCIT:C118825 Adult Salivary Gland Carcinoma 6 62988 -NCIT:C158463 Metastatic Salivary Gland Carcinoma 6 62989 -NCIT:C158464 Locally Advanced Salivary Gland Carcinoma 7 62990 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 7 62991 -NCIT:C177723 Advanced Salivary Gland Carcinoma 7 62992 -NCIT:C5899 Stage IV Major Salivary Gland Carcinoma with Metastasis 7 62993 -NCIT:C173649 Salivary Gland Poorly Differentiated Carcinoma 6 62994 -NCIT:C173653 Salivary Gland Neuroendocrine Carcinoma 7 62995 -NCIT:C173650 Salivary Gland Large Cell Neuroendocrine Carcinoma 8 62996 -NCIT:C35703 Salivary Gland Small Cell Neuroendocrine Carcinoma 8 62997 -NCIT:C5956 Minor Salivary Gland Small Cell Neuroendocrine Carcinoma 9 62998 -NCIT:C35735 Salivary Gland Large Cell Carcinoma 7 62999 -NCIT:C173650 Salivary Gland Large Cell Neuroendocrine Carcinoma 8 63000 -NCIT:C174034 Unresectable Salivary Gland Carcinoma 6 63001 -NCIT:C172651 Unresectable Salivary Gland Squamous Cell Carcinoma 7 63002 -NCIT:C177722 Refractory Salivary Gland Carcinoma 6 63003 -NCIT:C181079 Hybrid Salivary Gland Carcinoma 6 63004 -NCIT:C35700 Salivary Gland Myoepithelial Carcinoma 6 63005 -NCIT:C35701 Salivary Gland Epithelial-Myoepithelial Carcinoma 6 63006 -NCIT:C35736 Salivary Gland Lymphoepithelial Carcinoma 6 63007 -NCIT:C35737 Salivary Gland Adenosquamous Carcinoma 6 63008 -NCIT:C40410 Salivary Gland Carcinoma ex Pleomorphic Adenoma 6 63009 -NCIT:C5975 Major Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 63010 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 63011 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 63012 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 63013 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 63014 -NCIT:C5976 Minor Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 63015 -NCIT:C5907 Major Salivary Gland Carcinoma 6 63016 -NCIT:C132778 Major Salivary Gland Cancer by AJCC v7 Stage 7 63017 -NCIT:C5895 Stage I Major Salivary Gland Cancer AJCC v7 8 63018 -NCIT:C5896 Stage II Major Salivary Gland Cancer AJCC v7 8 63019 -NCIT:C5897 Stage III Major Salivary Gland Cancer AJCC v7 8 63020 -NCIT:C5898 Stage IV Major Salivary Gland Cancer AJCC v7 8 63021 -NCIT:C35694 Stage IVA Major Salivary Gland Cancer AJCC v7 9 63022 -NCIT:C35695 Stage IVB Major Salivary Gland Cancer AJCC v7 9 63023 -NCIT:C35696 Stage IVC Major Salivary Gland Cancer AJCC v7 9 63024 -NCIT:C5899 Stage IV Major Salivary Gland Carcinoma with Metastasis 9 63025 -NCIT:C5900 Stage IV Major Salivary Gland Carcinoma without Metastasis 9 63026 -NCIT:C132779 Major Salivary Gland Cancer by AJCC v8 Stage 7 63027 -NCIT:C132781 Stage I Major Salivary Gland Cancer AJCC v8 8 63028 -NCIT:C132783 Stage 0 Major Salivary Gland Cancer AJCC v8 8 63029 -NCIT:C132785 Stage II Major Salivary Gland Cancer AJCC v8 8 63030 -NCIT:C132786 Stage III Major Salivary Gland Cancer AJCC v8 8 63031 -NCIT:C132787 Stage IV Major Salivary Gland Cancer AJCC v8 8 63032 -NCIT:C132788 Stage IVA Major Salivary Gland Cancer AJCC v8 9 63033 -NCIT:C132789 Stage IVB Major Salivary Gland Cancer AJCC v8 9 63034 -NCIT:C132790 Stage IVC Major Salivary Gland Cancer AJCC v8 9 63035 -NCIT:C181161 Major Salivary Gland Squamous Cell Carcinoma 7 63036 -NCIT:C5942 Parotid Gland Squamous Cell Carcinoma 8 63037 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 9 63038 -NCIT:C5943 Submandibular Gland Squamous Cell Carcinoma 8 63039 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 9 63040 -NCIT:C5903 Major Salivary Gland Adenocarcinoma 7 63041 -NCIT:C5901 Major Salivary Gland Acinic Cell Carcinoma 8 63042 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 63043 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 63044 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 63045 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 63046 -NCIT:C5940 Submandibular Gland Adenocarcinoma 8 63047 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 63048 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 63049 -NCIT:C5941 Parotid Gland Adenocarcinoma 8 63050 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 63051 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 63052 -NCIT:C5958 Sublingual Gland Adenocarcinoma 8 63053 -NCIT:C5905 Major Salivary Gland Adenoid Cystic Carcinoma 7 63054 -NCIT:C5935 Submandibular Gland Adenoid Cystic Carcinoma 8 63055 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 9 63056 -NCIT:C5937 Parotid Gland Adenoid Cystic Carcinoma 8 63057 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 9 63058 -NCIT:C5906 Major Salivary Gland Mucoepidermoid Carcinoma 7 63059 -NCIT:C5938 Parotid Gland Mucoepidermoid Carcinoma 8 63060 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 9 63061 -NCIT:C5939 Submandibular Gland Mucoepidermoid Carcinoma 8 63062 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 9 63063 -NCIT:C5975 Major Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 63064 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 63065 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 63066 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 63067 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 63068 -NCIT:C6791 Parotid Gland Carcinoma 7 63069 -NCIT:C153800 Recurrent Parotid Gland Carcinoma 8 63070 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 9 63071 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 9 63072 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 63073 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 9 63074 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 9 63075 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 9 63076 -NCIT:C5937 Parotid Gland Adenoid Cystic Carcinoma 8 63077 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 9 63078 -NCIT:C5938 Parotid Gland Mucoepidermoid Carcinoma 8 63079 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 9 63080 -NCIT:C5941 Parotid Gland Adenocarcinoma 8 63081 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 63082 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 63083 -NCIT:C5942 Parotid Gland Squamous Cell Carcinoma 8 63084 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 9 63085 -NCIT:C5946 Parotid Gland Undifferentiated Carcinoma 8 63086 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 9 63087 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 63088 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 63089 -NCIT:C8396 Submandibular Gland Carcinoma 7 63090 -NCIT:C153801 Recurrent Submandibular Gland Carcinoma 8 63091 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 9 63092 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 9 63093 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 63094 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 9 63095 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 9 63096 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 9 63097 -NCIT:C5935 Submandibular Gland Adenoid Cystic Carcinoma 8 63098 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 9 63099 -NCIT:C5939 Submandibular Gland Mucoepidermoid Carcinoma 8 63100 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 9 63101 -NCIT:C5940 Submandibular Gland Adenocarcinoma 8 63102 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 63103 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 63104 -NCIT:C5943 Submandibular Gland Squamous Cell Carcinoma 8 63105 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 9 63106 -NCIT:C5947 Submandibular Gland Undifferentiated Carcinoma 8 63107 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 9 63108 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 63109 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 63110 -NCIT:C8397 Sublingual Gland Carcinoma 7 63111 -NCIT:C5958 Sublingual Gland Adenocarcinoma 8 63112 -NCIT:C5908 Salivary Gland Mucoepidermoid Carcinoma 6 63113 -NCIT:C190273 Childhood Salivary Gland Mucoepidermoid Carcinoma 7 63114 -NCIT:C5906 Major Salivary Gland Mucoepidermoid Carcinoma 7 63115 -NCIT:C5938 Parotid Gland Mucoepidermoid Carcinoma 8 63116 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 9 63117 -NCIT:C5939 Submandibular Gland Mucoepidermoid Carcinoma 8 63118 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 9 63119 -NCIT:C5953 Minor Salivary Gland Mucoepidermoid Carcinoma 7 63120 -NCIT:C8015 Low Grade Salivary Gland Mucoepidermoid Carcinoma 7 63121 -NCIT:C8017 Intermediate Grade Salivary Gland Mucoepidermoid Carcinoma 7 63122 -NCIT:C8019 High Grade Salivary Gland Mucoepidermoid Carcinoma 7 63123 -NCIT:C5957 Minor Salivary Gland Carcinoma 6 63124 -NCIT:C5936 Minor Salivary Gland Adenoid Cystic Carcinoma 7 63125 -NCIT:C5948 Minor Salivary Gland Adenocarcinoma 7 63126 -NCIT:C153612 Recurrent Minor Salivary Gland Adenocarcinoma 8 63127 -NCIT:C160974 Cribriform Adenocarcinoma of Minor Salivary Gland 8 63128 -NCIT:C6243 Minor Salivary Gland Acinic Cell Carcinoma 8 63129 -NCIT:C5953 Minor Salivary Gland Mucoepidermoid Carcinoma 7 63130 -NCIT:C5954 Minor Salivary Gland Undifferentiated Carcinoma 7 63131 -NCIT:C5956 Minor Salivary Gland Small Cell Neuroendocrine Carcinoma 7 63132 -NCIT:C5959 Minor Salivary Gland Squamous Cell Carcinoma 7 63133 -NCIT:C5976 Minor Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 63134 -NCIT:C62191 Salivary Gland Clear Cell Carcinoma 6 63135 -NCIT:C7926 Recurrent Salivary Gland Carcinoma 6 63136 -NCIT:C153611 Recurrent Salivary Duct Carcinoma 7 63137 -NCIT:C153612 Recurrent Minor Salivary Gland Adenocarcinoma 7 63138 -NCIT:C153800 Recurrent Parotid Gland Carcinoma 7 63139 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 8 63140 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 8 63141 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 63142 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 8 63143 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 63144 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 8 63145 -NCIT:C153801 Recurrent Submandibular Gland Carcinoma 7 63146 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 8 63147 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 8 63148 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 63149 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 8 63150 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 63151 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 8 63152 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 63153 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 63154 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 63155 -NCIT:C7991 Salivary Gland Squamous Cell Carcinoma 6 63156 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 7 63157 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 63158 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 63159 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 63160 -NCIT:C172651 Unresectable Salivary Gland Squamous Cell Carcinoma 7 63161 -NCIT:C181161 Major Salivary Gland Squamous Cell Carcinoma 7 63162 -NCIT:C5942 Parotid Gland Squamous Cell Carcinoma 8 63163 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 9 63164 -NCIT:C5943 Submandibular Gland Squamous Cell Carcinoma 8 63165 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 9 63166 -NCIT:C5959 Minor Salivary Gland Squamous Cell Carcinoma 7 63167 -NCIT:C8022 Salivary Gland Poorly Differentiated Squamous Cell Carcinoma 7 63168 -NCIT:C8012 Low Grade Salivary Gland Carcinoma 6 63169 -NCIT:C123384 Salivary Gland Secretory Carcinoma 7 63170 -NCIT:C35702 Salivary Gland Polymorphous Adenocarcinoma 7 63171 -NCIT:C173576 Oropharyngeal Polymorphous Adenocarcinoma 8 63172 -NCIT:C62192 Salivary Gland Intraductal Carcinoma 7 63173 -NCIT:C8015 Low Grade Salivary Gland Mucoepidermoid Carcinoma 7 63174 -NCIT:C8018 High Grade Salivary Gland Carcinoma 6 63175 -NCIT:C5904 Salivary Duct Carcinoma 7 63176 -NCIT:C153611 Recurrent Salivary Duct Carcinoma 8 63177 -NCIT:C62194 Salivary Gland Oncocytic Carcinoma 7 63178 -NCIT:C8019 High Grade Salivary Gland Mucoepidermoid Carcinoma 7 63179 -NCIT:C8021 Salivary Gland Adenocarcinoma 6 63180 -NCIT:C123384 Salivary Gland Secretory Carcinoma 7 63181 -NCIT:C173648 Salivary Gland Sebaceous Carcinoma 7 63182 -NCIT:C35702 Salivary Gland Polymorphous Adenocarcinoma 7 63183 -NCIT:C173576 Oropharyngeal Polymorphous Adenocarcinoma 8 63184 -NCIT:C3678 Salivary Gland Basal Cell Adenocarcinoma 7 63185 -NCIT:C5903 Major Salivary Gland Adenocarcinoma 7 63186 -NCIT:C5901 Major Salivary Gland Acinic Cell Carcinoma 8 63187 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 63188 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 63189 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 63190 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 63191 -NCIT:C5940 Submandibular Gland Adenocarcinoma 8 63192 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 63193 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 63194 -NCIT:C5941 Parotid Gland Adenocarcinoma 8 63195 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 63196 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 63197 -NCIT:C5958 Sublingual Gland Adenocarcinoma 8 63198 -NCIT:C5904 Salivary Duct Carcinoma 7 63199 -NCIT:C153611 Recurrent Salivary Duct Carcinoma 8 63200 -NCIT:C5948 Minor Salivary Gland Adenocarcinoma 7 63201 -NCIT:C153612 Recurrent Minor Salivary Gland Adenocarcinoma 8 63202 -NCIT:C160974 Cribriform Adenocarcinoma of Minor Salivary Gland 8 63203 -NCIT:C6243 Minor Salivary Gland Acinic Cell Carcinoma 8 63204 -NCIT:C5980 Salivary Gland Cystadenocarcinoma 7 63205 -NCIT:C62192 Salivary Gland Intraductal Carcinoma 7 63206 -NCIT:C62193 Salivary Gland Mucinous Adenocarcinoma 7 63207 -NCIT:C62194 Salivary Gland Oncocytic Carcinoma 7 63208 -NCIT:C62196 Salivary Gland Adenocarcinoma, Not Otherwise Specified 7 63209 -NCIT:C8013 Salivary Gland Acinic Cell Carcinoma 7 63210 -NCIT:C190274 Childhood Salivary Gland Acinic Cell Carcinoma 8 63211 -NCIT:C5901 Major Salivary Gland Acinic Cell Carcinoma 8 63212 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 63213 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 63214 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 63215 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 63216 -NCIT:C6243 Minor Salivary Gland Acinic Cell Carcinoma 8 63217 -NCIT:C8024 Salivary Gland Undifferentiated Carcinoma 6 63218 -NCIT:C5946 Parotid Gland Undifferentiated Carcinoma 7 63219 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 8 63220 -NCIT:C5947 Submandibular Gland Undifferentiated Carcinoma 7 63221 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 8 63222 -NCIT:C5954 Minor Salivary Gland Undifferentiated Carcinoma 7 63223 -NCIT:C8026 Salivary Gland Adenoid Cystic Carcinoma 6 63224 -NCIT:C5905 Major Salivary Gland Adenoid Cystic Carcinoma 7 63225 -NCIT:C5935 Submandibular Gland Adenoid Cystic Carcinoma 8 63226 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 9 63227 -NCIT:C5937 Parotid Gland Adenoid Cystic Carcinoma 8 63228 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 9 63229 -NCIT:C5936 Minor Salivary Gland Adenoid Cystic Carcinoma 7 63230 -NCIT:C4940 Malignant Neck Neoplasm 4 63231 -NCIT:C162823 Malignant Parapharyngeal Neoplasm 5 63232 -NCIT:C162828 Malignant Retropharyngeal Neoplasm 5 63233 -NCIT:C6077 Neck Carcinoma 5 63234 -NCIT:C35506 Throat Carcinoma 6 63235 -NCIT:C4855 Laryngeal Carcinoma 7 63236 -NCIT:C118811 Childhood Laryngeal Carcinoma 8 63237 -NCIT:C133156 Laryngeal Cancer by AJCC v8 Stage 8 63238 -NCIT:C133158 Stage I Laryngeal Cancer AJCC v8 9 63239 -NCIT:C133159 Stage II Laryngeal Cancer AJCC v8 9 63240 -NCIT:C133160 Stage III Laryngeal Cancer AJCC v8 9 63241 -NCIT:C133161 Stage IV Laryngeal Cancer AJCC v8 9 63242 -NCIT:C133162 Stage IVA Laryngeal Cancer AJCC v8 10 63243 -NCIT:C133163 Stage IVB Laryngeal Cancer AJCC v8 10 63244 -NCIT:C133164 Stage IVC Laryngeal Cancer AJCC v8 10 63245 -NCIT:C9100 Stage 0 Laryngeal Cancer AJCC v6, v7, and V8 9 63246 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 63247 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 11 63248 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 11 63249 -NCIT:C156085 Metastatic Laryngeal Carcinoma 8 63250 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 9 63251 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 10 63252 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 10 63253 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 9 63254 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 10 63255 -NCIT:C173390 Laryngeal Neuroendocrine Carcinoma 8 63256 -NCIT:C173395 Laryngeal Large Cell Neuroendocrine Carcinoma 9 63257 -NCIT:C6025 Laryngeal Small Cell Neuroendocrine Carcinoma 9 63258 -NCIT:C27929 Alcohol-Related Laryngeal Carcinoma 8 63259 -NCIT:C4034 Recurrent Laryngeal Carcinoma 8 63260 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 9 63261 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 10 63262 -NCIT:C4044 Laryngeal Squamous Cell Carcinoma 8 63263 -NCIT:C148383 Refractory Laryngeal Squamous Cell Carcinoma 9 63264 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 9 63265 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 10 63266 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 10 63267 -NCIT:C172645 Unresectable Laryngeal Squamous Cell Carcinoma 9 63268 -NCIT:C4945 Supraglottic Squamous Cell Carcinoma 9 63269 -NCIT:C181714 Epiglottic Squamous Cell Carcinoma 10 63270 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 11 63271 -NCIT:C8191 Supraglottic Verrucous Carcinoma 10 63272 -NCIT:C54334 Laryngeal Basaloid Carcinoma 9 63273 -NCIT:C54335 Laryngeal Papillary Squamous Cell Carcinoma 9 63274 -NCIT:C54336 Laryngeal Squamous Cell Carcinoma, Spindle Cell Variant 9 63275 -NCIT:C54337 Laryngeal Acantholytic Squamous Cell Carcinoma 9 63276 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 9 63277 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 10 63278 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 10 63279 -NCIT:C8186 Glottic Squamous Cell Carcinoma 9 63280 -NCIT:C8189 Glottis Verrucous Carcinoma 10 63281 -NCIT:C8187 Subglottic Squamous Cell Carcinoma 9 63282 -NCIT:C8190 Subglottic Verrucous Carcinoma 10 63283 -NCIT:C8188 Laryngeal Verrucous Carcinoma 9 63284 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 10 63285 -NCIT:C8189 Glottis Verrucous Carcinoma 10 63286 -NCIT:C8190 Subglottic Verrucous Carcinoma 10 63287 -NCIT:C8191 Supraglottic Verrucous Carcinoma 10 63288 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 63289 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 63290 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 63291 -NCIT:C8244 Stage IV Laryngeal Verrucous Carcinoma AJCC v7 10 63292 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 11 63293 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 11 63294 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 11 63295 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 10 63296 -NCIT:C8237 Stage I Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 9 63297 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 63298 -NCIT:C8239 Stage II Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 9 63299 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 63300 -NCIT:C8241 Stage III Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 9 63301 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 63302 -NCIT:C8243 Stage IV Laryngeal Squamous Cell Carcinoma AJCC v7 9 63303 -NCIT:C6122 Stage IVA Laryngeal Squamous Cell Carcinoma AJCC v7 10 63304 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 11 63305 -NCIT:C6123 Stage IVB Laryngeal Squamous Cell Carcinoma AJCC v7 10 63306 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 11 63307 -NCIT:C6124 Stage IVC Laryngeal Squamous Cell Carcinoma AJCC v7 10 63308 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 11 63309 -NCIT:C8244 Stage IV Laryngeal Verrucous Carcinoma AJCC v7 10 63310 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 11 63311 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 11 63312 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 11 63313 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 9 63314 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 10 63315 -NCIT:C4923 Glottis Carcinoma 8 63316 -NCIT:C8186 Glottic Squamous Cell Carcinoma 9 63317 -NCIT:C8189 Glottis Verrucous Carcinoma 10 63318 -NCIT:C54338 Laryngeal Adenosquamous Carcinoma 8 63319 -NCIT:C54339 Laryngeal Undifferentiated Carcinoma 8 63320 -NCIT:C54341 Laryngeal Lymphoepithelial Carcinoma 9 63321 -NCIT:C54342 Laryngeal Giant Cell Carcinoma 9 63322 -NCIT:C5972 Subglottic Carcinoma 8 63323 -NCIT:C8187 Subglottic Squamous Cell Carcinoma 9 63324 -NCIT:C8190 Subglottic Verrucous Carcinoma 10 63325 -NCIT:C5973 Supraglottic Carcinoma 8 63326 -NCIT:C35697 Epiglottic Carcinoma 9 63327 -NCIT:C181714 Epiglottic Squamous Cell Carcinoma 10 63328 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 11 63329 -NCIT:C4945 Supraglottic Squamous Cell Carcinoma 9 63330 -NCIT:C181714 Epiglottic Squamous Cell Carcinoma 10 63331 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 11 63332 -NCIT:C8191 Supraglottic Verrucous Carcinoma 10 63333 -NCIT:C90527 Laryngeal Cancer by AJCC v6 Stage 8 63334 -NCIT:C6868 Stage IV Laryngeal Cancer AJCC v6 9 63335 -NCIT:C8041 Stage I Laryngeal Cancer AJCC v6 and v7 9 63336 -NCIT:C8237 Stage I Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 10 63337 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 11 63338 -NCIT:C8042 Stage II Laryngeal Cancer AJCC v6 and v7 9 63339 -NCIT:C8239 Stage II Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 10 63340 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 11 63341 -NCIT:C8043 Stage III Laryngeal Cancer AJCC v6 and v7 9 63342 -NCIT:C8241 Stage III Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 10 63343 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 11 63344 -NCIT:C9100 Stage 0 Laryngeal Cancer AJCC v6, v7, and V8 9 63345 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 63346 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 11 63347 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 11 63348 -NCIT:C91256 Laryngeal Cancer by AJCC v7 Stage 8 63349 -NCIT:C8041 Stage I Laryngeal Cancer AJCC v6 and v7 9 63350 -NCIT:C8237 Stage I Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 10 63351 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 11 63352 -NCIT:C8042 Stage II Laryngeal Cancer AJCC v6 and v7 9 63353 -NCIT:C8239 Stage II Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 10 63354 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 11 63355 -NCIT:C8043 Stage III Laryngeal Cancer AJCC v6 and v7 9 63356 -NCIT:C8241 Stage III Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 10 63357 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 11 63358 -NCIT:C89091 Stage IV Laryngeal Cancer AJCC v7 9 63359 -NCIT:C6003 Stage IVC Laryngeal Cancer AJCC v7 10 63360 -NCIT:C6124 Stage IVC Laryngeal Squamous Cell Carcinoma AJCC v7 11 63361 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 12 63362 -NCIT:C6004 Stage IVB Laryngeal Cancer AJCC v7 10 63363 -NCIT:C6123 Stage IVB Laryngeal Squamous Cell Carcinoma AJCC v7 11 63364 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 12 63365 -NCIT:C6005 Stage IVA Laryngeal Cancer AJCC v7 10 63366 -NCIT:C6122 Stage IVA Laryngeal Squamous Cell Carcinoma AJCC v7 11 63367 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 12 63368 -NCIT:C8243 Stage IV Laryngeal Squamous Cell Carcinoma AJCC v7 10 63369 -NCIT:C6122 Stage IVA Laryngeal Squamous Cell Carcinoma AJCC v7 11 63370 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 12 63371 -NCIT:C6123 Stage IVB Laryngeal Squamous Cell Carcinoma AJCC v7 11 63372 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 12 63373 -NCIT:C6124 Stage IVC Laryngeal Squamous Cell Carcinoma AJCC v7 11 63374 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 12 63375 -NCIT:C8244 Stage IV Laryngeal Verrucous Carcinoma AJCC v7 11 63376 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 12 63377 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 12 63378 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 12 63379 -NCIT:C9100 Stage 0 Laryngeal Cancer AJCC v6, v7, and V8 9 63380 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 63381 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 11 63382 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 11 63383 -NCIT:C9462 Laryngeal Adenoid Cystic Carcinoma 8 63384 -NCIT:C9463 Laryngeal Mucoepidermoid Carcinoma 8 63385 -NCIT:C9466 Pharyngeal Carcinoma 7 63386 -NCIT:C102872 Pharyngeal Squamous Cell Carcinoma 8 63387 -NCIT:C167265 Nasopharyngeal Squamous Cell Carcinoma 9 63388 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 10 63389 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 63390 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 63391 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 11 63392 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 11 63393 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 63394 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 10 63395 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 63396 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 11 63397 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 10 63398 -NCIT:C54360 Nasopharyngeal Basaloid Carcinoma 10 63399 -NCIT:C7373 Nasopharyngeal Nonkeratinizing Carcinoma 10 63400 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 11 63401 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 63402 -NCIT:C54389 Nasopharyngeal Differentiated Carcinoma 11 63403 -NCIT:C8023 Nasopharyngeal Undifferentiated Carcinoma 11 63404 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 63405 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 12 63406 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 12 63407 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 12 63408 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 12 63409 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 12 63410 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 12 63411 -NCIT:C7992 Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 63412 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 63413 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 11 63414 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 63415 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 63416 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 63417 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 63418 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 63419 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 63420 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 63421 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 63422 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 9 63423 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 10 63424 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 63425 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 63426 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 63427 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 10 63428 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 63429 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 63430 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 11 63431 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 11 63432 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 63433 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 10 63434 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 63435 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 63436 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 10 63437 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 63438 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 63439 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 63440 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 9 63441 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 10 63442 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 63443 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 11 63444 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 10 63445 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 11 63446 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 10 63447 -NCIT:C35693 Posterior Pharyngeal Wall Squamous Cell Carcinoma 9 63448 -NCIT:C4043 Hypopharyngeal Squamous Cell Carcinoma 9 63449 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 10 63450 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 10 63451 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 63452 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 63453 -NCIT:C172646 Unresectable Hypopharyngeal Squamous Cell Carcinoma 10 63454 -NCIT:C4943 Pyriform Fossa Squamous Cell Carcinoma 10 63455 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 63456 -NCIT:C8185 Postcricoid Squamous Cell Carcinoma 10 63457 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 63458 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 63459 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 63460 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 63461 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 63462 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 63463 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 63464 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 10 63465 -NCIT:C8181 Oropharyngeal Squamous Cell Carcinoma 9 63466 -NCIT:C126750 Oropharyngeal Poorly Differentiated Carcinoma 10 63467 -NCIT:C126751 Oropharyngeal Basaloid Carcinoma 10 63468 -NCIT:C147906 Oropharyngeal p16INK4a-Negative Squamous Cell Carcinoma 10 63469 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 10 63470 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 10 63471 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 63472 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 63473 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 63474 -NCIT:C162787 Resectable Oropharyngeal Squamous Cell Carcinoma 10 63475 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 11 63476 -NCIT:C162833 Unresectable Oropharyngeal Squamous Cell Carcinoma 10 63477 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 11 63478 -NCIT:C173414 Oropharyngeal Human Papillomavirus-Negative Squamous Cell Carcinoma 10 63479 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 10 63480 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 63481 -NCIT:C68610 Oropharyngeal Undifferentiated Carcinoma 10 63482 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 63483 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 63484 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 63485 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 63486 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 63487 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 63488 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 63489 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 11 63490 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 63491 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 11 63492 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 11 63493 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 11 63494 -NCIT:C8183 Tonsillar Squamous Cell Carcinoma 10 63495 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 11 63496 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 63497 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 63498 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 63499 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 63500 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 63501 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 63502 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 63503 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 63504 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 63505 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 63506 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 63507 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 63508 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 63509 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 63510 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 63511 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 63512 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 63513 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 10 63514 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 11 63515 -NCIT:C87055 Oropharyngeal Human Papillomavirus-Positive Squamous Cell Carcinoma 10 63516 -NCIT:C132814 Pharyngeal Carcinoma by AJCC v8 Stage 8 63517 -NCIT:C132816 Nasopharyngeal Carcinoma by AJCC v8 Stage 9 63518 -NCIT:C132817 Stage I Nasopharyngeal Carcinoma AJCC v8 10 63519 -NCIT:C132818 Stage II Nasopharyngeal Carcinoma AJCC v8 10 63520 -NCIT:C132819 Stage III Nasopharyngeal Carcinoma AJCC v8 10 63521 -NCIT:C132820 Stage IV Nasopharyngeal Carcinoma AJCC v8 10 63522 -NCIT:C132821 Stage IVA Nasopharyngeal Carcinoma AJCC v8 11 63523 -NCIT:C132822 Stage IVB Nasopharyngeal Carcinoma AJCC v8 11 63524 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 10 63525 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 11 63526 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 11 63527 -NCIT:C132882 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Stage 9 63528 -NCIT:C132883 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Clinical Stage 10 63529 -NCIT:C132885 Clinical Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 63530 -NCIT:C132886 Clinical Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 63531 -NCIT:C132891 Clinical Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 63532 -NCIT:C132893 Clinical Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 63533 -NCIT:C132884 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Pathologic Stage 10 63534 -NCIT:C132898 Pathologic Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 63535 -NCIT:C132899 Pathologic Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 63536 -NCIT:C132900 Pathologic Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 63537 -NCIT:C132901 Pathologic Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 63538 -NCIT:C132994 Oropharyngeal (p16-Negative) Carcinoma by AJCC v8 Stage 9 63539 -NCIT:C132995 Stage 0 Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 63540 -NCIT:C132996 Stage I Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 63541 -NCIT:C132997 Stage II Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 63542 -NCIT:C132998 Stage III Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 63543 -NCIT:C132999 Stage IV Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 63544 -NCIT:C133000 Stage IVA Oropharyngeal (p16-Negative) Carcinoma AJCC v8 11 63545 -NCIT:C133001 Stage IVB Oropharyngeal (p16-Negative) Carcinoma AJCC v8 11 63546 -NCIT:C133002 Stage IVC Oropharyngeal (p16-Negative) Carcinoma AJCC v8 11 63547 -NCIT:C133003 Hypopharyngeal Carcinoma by AJCC v8 Stage 9 63548 -NCIT:C133005 Stage I Hypopharyngeal Carcinoma AJCC v8 10 63549 -NCIT:C133006 Stage II Hypopharyngeal Carcinoma AJCC v8 10 63550 -NCIT:C133007 Stage III Hypopharyngeal Carcinoma AJCC v8 10 63551 -NCIT:C133008 Stage IV Hypopharyngeal Carcinoma AJCC v8 10 63552 -NCIT:C133009 Stage IVA Hypopharyngeal Carcinoma AJCC v8 11 63553 -NCIT:C133010 Stage IVB Hypopharyngeal Carcinoma AJCC v8 11 63554 -NCIT:C133011 Stage IVC Hypopharyngeal Carcinoma AJCC v8 11 63555 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 10 63556 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 11 63557 -NCIT:C156080 Metastatic Pharyngeal Carcinoma 8 63558 -NCIT:C156079 Metastatic Nasopharyngeal Carcinoma 9 63559 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 10 63560 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 63561 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 63562 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 11 63563 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 11 63564 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 63565 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 10 63566 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 63567 -NCIT:C156081 Metastatic Hypopharyngeal Carcinoma 9 63568 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 10 63569 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 63570 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 63571 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 10 63572 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 63573 -NCIT:C156082 Metastatic Oropharyngeal Carcinoma 9 63574 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 10 63575 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 63576 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 63577 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 63578 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 10 63579 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 63580 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 63581 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 10 63582 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 63583 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 9 63584 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 63585 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 10 63586 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 63587 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 63588 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 10 63589 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 63590 -NCIT:C170784 Advanced Pharyngeal Carcinoma 9 63591 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 10 63592 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 63593 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 10 63594 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 63595 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 63596 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 63597 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 10 63598 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 63599 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 9 63600 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 10 63601 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 63602 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 63603 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 63604 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 10 63605 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 63606 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 63607 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 11 63608 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 11 63609 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 63610 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 10 63611 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 63612 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 63613 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 10 63614 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 63615 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 63616 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 63617 -NCIT:C35692 Posterior Pharyngeal Wall Carcinoma 8 63618 -NCIT:C35693 Posterior Pharyngeal Wall Squamous Cell Carcinoma 9 63619 -NCIT:C3871 Nasopharyngeal Carcinoma 8 63620 -NCIT:C132816 Nasopharyngeal Carcinoma by AJCC v8 Stage 9 63621 -NCIT:C132817 Stage I Nasopharyngeal Carcinoma AJCC v8 10 63622 -NCIT:C132818 Stage II Nasopharyngeal Carcinoma AJCC v8 10 63623 -NCIT:C132819 Stage III Nasopharyngeal Carcinoma AJCC v8 10 63624 -NCIT:C132820 Stage IV Nasopharyngeal Carcinoma AJCC v8 10 63625 -NCIT:C132821 Stage IVA Nasopharyngeal Carcinoma AJCC v8 11 63626 -NCIT:C132822 Stage IVB Nasopharyngeal Carcinoma AJCC v8 11 63627 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 10 63628 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 11 63629 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 11 63630 -NCIT:C148434 Refractory Nasopharyngeal Carcinoma 9 63631 -NCIT:C156079 Metastatic Nasopharyngeal Carcinoma 9 63632 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 10 63633 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 63634 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 63635 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 11 63636 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 11 63637 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 63638 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 10 63639 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 63640 -NCIT:C165176 Unresectable Nasopharyngeal Carcinoma 9 63641 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 10 63642 -NCIT:C167265 Nasopharyngeal Squamous Cell Carcinoma 9 63643 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 10 63644 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 63645 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 63646 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 11 63647 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 11 63648 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 63649 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 10 63650 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 63651 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 11 63652 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 10 63653 -NCIT:C54360 Nasopharyngeal Basaloid Carcinoma 10 63654 -NCIT:C7373 Nasopharyngeal Nonkeratinizing Carcinoma 10 63655 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 11 63656 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 63657 -NCIT:C54389 Nasopharyngeal Differentiated Carcinoma 11 63658 -NCIT:C8023 Nasopharyngeal Undifferentiated Carcinoma 11 63659 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 63660 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 12 63661 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 12 63662 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 12 63663 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 12 63664 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 12 63665 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 12 63666 -NCIT:C7992 Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 63667 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 63668 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 11 63669 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 63670 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 63671 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 63672 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 63673 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 63674 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 63675 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 63676 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 63677 -NCIT:C173340 Nasopharyngeal Adenoid Cystic Carcinoma 9 63678 -NCIT:C190276 Childhood Nasopharyngeal Carcinoma 9 63679 -NCIT:C54400 Nasopharyngeal Papillary Adenocarcinoma 9 63680 -NCIT:C90522 Nasopharyngeal Carcinoma by AJCC v6 Stage 9 63681 -NCIT:C7395 Stage I Nasopharyngeal Carcinoma AJCC v6 10 63682 -NCIT:C7396 Stage III Nasopharyngeal Carcinoma AJCC v6 10 63683 -NCIT:C7397 Stage IV Nasopharyngeal Carcinoma AJCC v6 10 63684 -NCIT:C7920 Stage II Nasopharyngeal Carcinoma AJCC v6 10 63685 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 10 63686 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 11 63687 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 11 63688 -NCIT:C91244 Nasopharyngeal Carcinoma by AJCC v7 Stage 9 63689 -NCIT:C88981 Stage I Nasopharyngeal Carcinoma AJCC v7 10 63690 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 63691 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 63692 -NCIT:C88982 Stage II Nasopharyngeal Carcinoma AJCC v7 10 63693 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 63694 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 63695 -NCIT:C88983 Stage III Nasopharyngeal Carcinoma AJCC v7 10 63696 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 63697 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 63698 -NCIT:C88984 Stage IV Nasopharyngeal Carcinoma AJCC v7 10 63699 -NCIT:C5995 Stage IVC Nasopharyngeal Carcinoma AJCC v7 11 63700 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 63701 -NCIT:C5996 Stage IVB Nasopharyngeal Carcinoma AJCC v7 11 63702 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 63703 -NCIT:C5997 Stage IVA Nasopharyngeal Carcinoma AJCC v7 11 63704 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 63705 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 63706 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 63707 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 63708 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 63709 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 63710 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 10 63711 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 11 63712 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 11 63713 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 9 63714 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 10 63715 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 63716 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 11 63717 -NCIT:C4942 Stage 0 Pharyngeal Cancer 8 63718 -NCIT:C132995 Stage 0 Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 63719 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 9 63720 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 63721 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 9 63722 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 10 63723 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 63724 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 9 63725 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 63726 -NCIT:C5103 Recurrent Pharyngeal Carcinoma 8 63727 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 9 63728 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 10 63729 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 63730 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 11 63731 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 10 63732 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 11 63733 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 10 63734 -NCIT:C8051 Recurrent Oropharyngeal Carcinoma 9 63735 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 10 63736 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 11 63737 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 9 63738 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 10 63739 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 63740 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 11 63741 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 9 63742 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 10 63743 -NCIT:C5818 Pharyngeal Adenoid Cystic Carcinoma 8 63744 -NCIT:C173340 Nasopharyngeal Adenoid Cystic Carcinoma 9 63745 -NCIT:C6241 Oropharyngeal Adenoid Cystic Carcinoma 9 63746 -NCIT:C8768 Stage I Pharyngeal Cancer 8 63747 -NCIT:C132817 Stage I Nasopharyngeal Carcinoma AJCC v8 9 63748 -NCIT:C132885 Clinical Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 9 63749 -NCIT:C132898 Pathologic Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 9 63750 -NCIT:C132996 Stage I Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 63751 -NCIT:C133005 Stage I Hypopharyngeal Carcinoma AJCC v8 9 63752 -NCIT:C7395 Stage I Nasopharyngeal Carcinoma AJCC v6 9 63753 -NCIT:C8038 Stage I Hypopharyngeal Carcinoma AJCC v6 9 63754 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 9 63755 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 63756 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 63757 -NCIT:C88981 Stage I Nasopharyngeal Carcinoma AJCC v7 9 63758 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 63759 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 63760 -NCIT:C89045 Stage I Hypopharyngeal Carcinoma AJCC v7 9 63761 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 63762 -NCIT:C8769 Stage II Pharyngeal Cancer 8 63763 -NCIT:C132818 Stage II Nasopharyngeal Carcinoma AJCC v8 9 63764 -NCIT:C132886 Clinical Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 9 63765 -NCIT:C132899 Pathologic Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 9 63766 -NCIT:C132997 Stage II Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 63767 -NCIT:C133006 Stage II Hypopharyngeal Carcinoma AJCC v8 9 63768 -NCIT:C7920 Stage II Nasopharyngeal Carcinoma AJCC v6 9 63769 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 9 63770 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 63771 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 9 63772 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 63773 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 63774 -NCIT:C88982 Stage II Nasopharyngeal Carcinoma AJCC v7 9 63775 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 63776 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 63777 -NCIT:C8770 Stage III Pharyngeal Cancer 8 63778 -NCIT:C132819 Stage III Nasopharyngeal Carcinoma AJCC v8 9 63779 -NCIT:C132891 Clinical Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 9 63780 -NCIT:C132900 Pathologic Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 9 63781 -NCIT:C132998 Stage III Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 63782 -NCIT:C133007 Stage III Hypopharyngeal Carcinoma AJCC v8 9 63783 -NCIT:C7396 Stage III Nasopharyngeal Carcinoma AJCC v6 9 63784 -NCIT:C8040 Stage III Hypopharyngeal Carcinoma AJCC v6 9 63785 -NCIT:C8050 Stage III Oropharyngeal Carcinoma AJCC v6 9 63786 -NCIT:C88983 Stage III Nasopharyngeal Carcinoma AJCC v7 9 63787 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 63788 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 63789 -NCIT:C89021 Stage III Oropharyngeal Carcinoma AJCC v7 9 63790 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 63791 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 63792 -NCIT:C89046 Stage III Hypopharyngeal Carcinoma AJCC v7 9 63793 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 63794 -NCIT:C8771 Stage IV Pharyngeal Cancer 8 63795 -NCIT:C132820 Stage IV Nasopharyngeal Carcinoma AJCC v8 9 63796 -NCIT:C132821 Stage IVA Nasopharyngeal Carcinoma AJCC v8 10 63797 -NCIT:C132822 Stage IVB Nasopharyngeal Carcinoma AJCC v8 10 63798 -NCIT:C132893 Clinical Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 9 63799 -NCIT:C132901 Pathologic Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 9 63800 -NCIT:C132999 Stage IV Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 63801 -NCIT:C133000 Stage IVA Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 63802 -NCIT:C133001 Stage IVB Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 63803 -NCIT:C133002 Stage IVC Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 63804 -NCIT:C133008 Stage IV Hypopharyngeal Carcinoma AJCC v8 9 63805 -NCIT:C133009 Stage IVA Hypopharyngeal Carcinoma AJCC v8 10 63806 -NCIT:C133010 Stage IVB Hypopharyngeal Carcinoma AJCC v8 10 63807 -NCIT:C133011 Stage IVC Hypopharyngeal Carcinoma AJCC v8 10 63808 -NCIT:C6000 Stage IVA Pharyngeal Cancer 9 63809 -NCIT:C132821 Stage IVA Nasopharyngeal Carcinoma AJCC v8 10 63810 -NCIT:C133000 Stage IVA Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 63811 -NCIT:C133009 Stage IVA Hypopharyngeal Carcinoma AJCC v8 10 63812 -NCIT:C5985 Stage IVA Oropharyngeal Carcinoma AJCC v7 10 63813 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 63814 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 63815 -NCIT:C5992 Stage IVA Hypopharyngeal Carcinoma AJCC v7 10 63816 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 63817 -NCIT:C5997 Stage IVA Nasopharyngeal Carcinoma AJCC v7 10 63818 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 63819 -NCIT:C6001 Stage IVB Pharyngeal Cancer 9 63820 -NCIT:C132822 Stage IVB Nasopharyngeal Carcinoma AJCC v8 10 63821 -NCIT:C133001 Stage IVB Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 63822 -NCIT:C133010 Stage IVB Hypopharyngeal Carcinoma AJCC v8 10 63823 -NCIT:C5986 Stage IVB Oropharyngeal Carcinoma AJCC v7 10 63824 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 63825 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 63826 -NCIT:C5993 Stage IVB Hypopharyngeal Carcinoma AJCC v7 10 63827 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 63828 -NCIT:C5996 Stage IVB Nasopharyngeal Carcinoma AJCC v7 10 63829 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 63830 -NCIT:C6002 Stage IVC Pharyngeal Cancer 9 63831 -NCIT:C133002 Stage IVC Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 63832 -NCIT:C133011 Stage IVC Hypopharyngeal Carcinoma AJCC v8 10 63833 -NCIT:C5987 Stage IVC Oropharyngeal Carcinoma AJCC v7 10 63834 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 63835 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 63836 -NCIT:C5994 Stage IVC Hypopharyngeal Carcinoma AJCC v7 10 63837 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 63838 -NCIT:C5995 Stage IVC Nasopharyngeal Carcinoma AJCC v7 10 63839 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 63840 -NCIT:C7397 Stage IV Nasopharyngeal Carcinoma AJCC v6 9 63841 -NCIT:C8533 Stage IV Hypopharyngeal Carcinoma AJCC v6 9 63842 -NCIT:C88984 Stage IV Nasopharyngeal Carcinoma AJCC v7 9 63843 -NCIT:C5995 Stage IVC Nasopharyngeal Carcinoma AJCC v7 10 63844 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 63845 -NCIT:C5996 Stage IVB Nasopharyngeal Carcinoma AJCC v7 10 63846 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 63847 -NCIT:C5997 Stage IVA Nasopharyngeal Carcinoma AJCC v7 10 63848 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 63849 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 63850 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 63851 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 63852 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 63853 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 63854 -NCIT:C89023 Stage IV Oropharyngeal Carcinoma AJCC v7 9 63855 -NCIT:C5985 Stage IVA Oropharyngeal Carcinoma AJCC v7 10 63856 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 63857 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 63858 -NCIT:C5986 Stage IVB Oropharyngeal Carcinoma AJCC v7 10 63859 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 63860 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 63861 -NCIT:C5987 Stage IVC Oropharyngeal Carcinoma AJCC v7 10 63862 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 63863 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 63864 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 63865 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 63866 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 63867 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 63868 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 63869 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 63870 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 63871 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 63872 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 63873 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 63874 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 63875 -NCIT:C89047 Stage IV Hypopharyngeal Carcinoma AJCC v7 9 63876 -NCIT:C5992 Stage IVA Hypopharyngeal Carcinoma AJCC v7 10 63877 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 63878 -NCIT:C5993 Stage IVB Hypopharyngeal Carcinoma AJCC v7 10 63879 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 63880 -NCIT:C5994 Stage IVC Hypopharyngeal Carcinoma AJCC v7 10 63881 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 63882 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 63883 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 63884 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 63885 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 63886 -NCIT:C9218 Stage IV Oropharyngeal Carcinoma AJCC v6 9 63887 -NCIT:C90525 Pharyngeal Carcinoma by AJCC v6 Stage 8 63888 -NCIT:C90522 Nasopharyngeal Carcinoma by AJCC v6 Stage 9 63889 -NCIT:C7395 Stage I Nasopharyngeal Carcinoma AJCC v6 10 63890 -NCIT:C7396 Stage III Nasopharyngeal Carcinoma AJCC v6 10 63891 -NCIT:C7397 Stage IV Nasopharyngeal Carcinoma AJCC v6 10 63892 -NCIT:C7920 Stage II Nasopharyngeal Carcinoma AJCC v6 10 63893 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 10 63894 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 11 63895 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 11 63896 -NCIT:C90523 Oropharyngeal Carcinoma by AJCC v6 Stage 9 63897 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 10 63898 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 63899 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 10 63900 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 63901 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 12 63902 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 10 63903 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 63904 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 12 63905 -NCIT:C8050 Stage III Oropharyngeal Carcinoma AJCC v6 10 63906 -NCIT:C9218 Stage IV Oropharyngeal Carcinoma AJCC v6 10 63907 -NCIT:C90524 Hypopharyngeal Carcinoma by AJCC v6 Stage 9 63908 -NCIT:C8038 Stage I Hypopharyngeal Carcinoma AJCC v6 10 63909 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 10 63910 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 63911 -NCIT:C8040 Stage III Hypopharyngeal Carcinoma AJCC v6 10 63912 -NCIT:C8533 Stage IV Hypopharyngeal Carcinoma AJCC v6 10 63913 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 10 63914 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 11 63915 -NCIT:C9105 Oropharyngeal Carcinoma 8 63916 -NCIT:C132882 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Stage 9 63917 -NCIT:C132883 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Clinical Stage 10 63918 -NCIT:C132885 Clinical Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 63919 -NCIT:C132886 Clinical Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 63920 -NCIT:C132891 Clinical Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 63921 -NCIT:C132893 Clinical Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 63922 -NCIT:C132884 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Pathologic Stage 10 63923 -NCIT:C132898 Pathologic Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 63924 -NCIT:C132899 Pathologic Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 63925 -NCIT:C132900 Pathologic Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 63926 -NCIT:C132901 Pathologic Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 63927 -NCIT:C132994 Oropharyngeal (p16-Negative) Carcinoma by AJCC v8 Stage 9 63928 -NCIT:C132995 Stage 0 Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 63929 -NCIT:C132996 Stage I Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 63930 -NCIT:C132997 Stage II Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 63931 -NCIT:C132998 Stage III Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 63932 -NCIT:C132999 Stage IV Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 63933 -NCIT:C133000 Stage IVA Oropharyngeal (p16-Negative) Carcinoma AJCC v8 11 63934 -NCIT:C133001 Stage IVB Oropharyngeal (p16-Negative) Carcinoma AJCC v8 11 63935 -NCIT:C133002 Stage IVC Oropharyngeal (p16-Negative) Carcinoma AJCC v8 11 63936 -NCIT:C156082 Metastatic Oropharyngeal Carcinoma 9 63937 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 10 63938 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 63939 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 63940 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 63941 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 10 63942 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 63943 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 63944 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 10 63945 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 63946 -NCIT:C173576 Oropharyngeal Polymorphous Adenocarcinoma 9 63947 -NCIT:C4825 Tonsillar Carcinoma 9 63948 -NCIT:C8183 Tonsillar Squamous Cell Carcinoma 10 63949 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 11 63950 -NCIT:C6241 Oropharyngeal Adenoid Cystic Carcinoma 9 63951 -NCIT:C8051 Recurrent Oropharyngeal Carcinoma 9 63952 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 10 63953 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 11 63954 -NCIT:C8181 Oropharyngeal Squamous Cell Carcinoma 9 63955 -NCIT:C126750 Oropharyngeal Poorly Differentiated Carcinoma 10 63956 -NCIT:C126751 Oropharyngeal Basaloid Carcinoma 10 63957 -NCIT:C147906 Oropharyngeal p16INK4a-Negative Squamous Cell Carcinoma 10 63958 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 10 63959 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 10 63960 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 63961 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 63962 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 63963 -NCIT:C162787 Resectable Oropharyngeal Squamous Cell Carcinoma 10 63964 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 11 63965 -NCIT:C162833 Unresectable Oropharyngeal Squamous Cell Carcinoma 10 63966 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 11 63967 -NCIT:C173414 Oropharyngeal Human Papillomavirus-Negative Squamous Cell Carcinoma 10 63968 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 10 63969 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 63970 -NCIT:C68610 Oropharyngeal Undifferentiated Carcinoma 10 63971 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 63972 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 63973 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 63974 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 63975 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 63976 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 63977 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 63978 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 11 63979 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 63980 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 11 63981 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 11 63982 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 11 63983 -NCIT:C8183 Tonsillar Squamous Cell Carcinoma 10 63984 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 11 63985 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 63986 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 63987 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 63988 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 63989 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 63990 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 63991 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 63992 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 63993 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 63994 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 63995 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 63996 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 63997 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 63998 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 63999 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 64000 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 64001 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 64002 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 10 64003 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 11 64004 -NCIT:C87055 Oropharyngeal Human Papillomavirus-Positive Squamous Cell Carcinoma 10 64005 -NCIT:C8395 Soft Palate Carcinoma 9 64006 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 10 64007 -NCIT:C90523 Oropharyngeal Carcinoma by AJCC v6 Stage 9 64008 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 10 64009 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 64010 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 10 64011 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 64012 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 12 64013 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 10 64014 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 64015 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 12 64016 -NCIT:C8050 Stage III Oropharyngeal Carcinoma AJCC v6 10 64017 -NCIT:C9218 Stage IV Oropharyngeal Carcinoma AJCC v6 10 64018 -NCIT:C91248 Oropharyngeal Carcinoma by AJCC v7 Stage 9 64019 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 10 64020 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 64021 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 10 64022 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 64023 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 12 64024 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 10 64025 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 64026 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 12 64027 -NCIT:C89021 Stage III Oropharyngeal Carcinoma AJCC v7 10 64028 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 64029 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 64030 -NCIT:C89023 Stage IV Oropharyngeal Carcinoma AJCC v7 10 64031 -NCIT:C5985 Stage IVA Oropharyngeal Carcinoma AJCC v7 11 64032 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 64033 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 64034 -NCIT:C5986 Stage IVB Oropharyngeal Carcinoma AJCC v7 11 64035 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 64036 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 64037 -NCIT:C5987 Stage IVC Oropharyngeal Carcinoma AJCC v7 11 64038 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 64039 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 64040 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 64041 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 64042 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 64043 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 64044 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 64045 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 64046 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 64047 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 64048 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 64049 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 64050 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 64051 -NCIT:C91252 Pharyngeal Carcinoma by AJCC v7 Stage 8 64052 -NCIT:C91244 Nasopharyngeal Carcinoma by AJCC v7 Stage 9 64053 -NCIT:C88981 Stage I Nasopharyngeal Carcinoma AJCC v7 10 64054 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 64055 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 64056 -NCIT:C88982 Stage II Nasopharyngeal Carcinoma AJCC v7 10 64057 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 64058 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 64059 -NCIT:C88983 Stage III Nasopharyngeal Carcinoma AJCC v7 10 64060 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 64061 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 64062 -NCIT:C88984 Stage IV Nasopharyngeal Carcinoma AJCC v7 10 64063 -NCIT:C5995 Stage IVC Nasopharyngeal Carcinoma AJCC v7 11 64064 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 64065 -NCIT:C5996 Stage IVB Nasopharyngeal Carcinoma AJCC v7 11 64066 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 64067 -NCIT:C5997 Stage IVA Nasopharyngeal Carcinoma AJCC v7 11 64068 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 64069 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 64070 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 64071 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 64072 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 64073 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 64074 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 10 64075 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 11 64076 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 11 64077 -NCIT:C91248 Oropharyngeal Carcinoma by AJCC v7 Stage 9 64078 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 10 64079 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 64080 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 10 64081 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 64082 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 12 64083 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 10 64084 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 64085 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 12 64086 -NCIT:C89021 Stage III Oropharyngeal Carcinoma AJCC v7 10 64087 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 64088 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 64089 -NCIT:C89023 Stage IV Oropharyngeal Carcinoma AJCC v7 10 64090 -NCIT:C5985 Stage IVA Oropharyngeal Carcinoma AJCC v7 11 64091 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 64092 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 64093 -NCIT:C5986 Stage IVB Oropharyngeal Carcinoma AJCC v7 11 64094 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 64095 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 64096 -NCIT:C5987 Stage IVC Oropharyngeal Carcinoma AJCC v7 11 64097 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 64098 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 64099 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 64100 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 64101 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 64102 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 64103 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 64104 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 64105 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 64106 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 64107 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 64108 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 64109 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 64110 -NCIT:C91251 Hypopharyngeal Carcinoma by AJCC v7 Stage 9 64111 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 10 64112 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 64113 -NCIT:C89045 Stage I Hypopharyngeal Carcinoma AJCC v7 10 64114 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 64115 -NCIT:C89046 Stage III Hypopharyngeal Carcinoma AJCC v7 10 64116 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 64117 -NCIT:C89047 Stage IV Hypopharyngeal Carcinoma AJCC v7 10 64118 -NCIT:C5992 Stage IVA Hypopharyngeal Carcinoma AJCC v7 11 64119 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 64120 -NCIT:C5993 Stage IVB Hypopharyngeal Carcinoma AJCC v7 11 64121 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 64122 -NCIT:C5994 Stage IVC Hypopharyngeal Carcinoma AJCC v7 11 64123 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 64124 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 64125 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 64126 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 64127 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 64128 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 10 64129 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 11 64130 -NCIT:C9465 Hypopharyngeal Carcinoma 8 64131 -NCIT:C133003 Hypopharyngeal Carcinoma by AJCC v8 Stage 9 64132 -NCIT:C133005 Stage I Hypopharyngeal Carcinoma AJCC v8 10 64133 -NCIT:C133006 Stage II Hypopharyngeal Carcinoma AJCC v8 10 64134 -NCIT:C133007 Stage III Hypopharyngeal Carcinoma AJCC v8 10 64135 -NCIT:C133008 Stage IV Hypopharyngeal Carcinoma AJCC v8 10 64136 -NCIT:C133009 Stage IVA Hypopharyngeal Carcinoma AJCC v8 11 64137 -NCIT:C133010 Stage IVB Hypopharyngeal Carcinoma AJCC v8 11 64138 -NCIT:C133011 Stage IVC Hypopharyngeal Carcinoma AJCC v8 11 64139 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 10 64140 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 11 64141 -NCIT:C156081 Metastatic Hypopharyngeal Carcinoma 9 64142 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 10 64143 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 64144 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 64145 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 10 64146 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 64147 -NCIT:C4043 Hypopharyngeal Squamous Cell Carcinoma 9 64148 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 10 64149 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 10 64150 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 64151 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 64152 -NCIT:C172646 Unresectable Hypopharyngeal Squamous Cell Carcinoma 10 64153 -NCIT:C4943 Pyriform Fossa Squamous Cell Carcinoma 10 64154 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 64155 -NCIT:C8185 Postcricoid Squamous Cell Carcinoma 10 64156 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 64157 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 64158 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 64159 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 64160 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 64161 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 64162 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 64163 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 10 64164 -NCIT:C6700 Pyriform Fossa Carcinoma 9 64165 -NCIT:C4943 Pyriform Fossa Squamous Cell Carcinoma 10 64166 -NCIT:C8595 Postcricoid Carcinoma 9 64167 -NCIT:C8185 Postcricoid Squamous Cell Carcinoma 10 64168 -NCIT:C90524 Hypopharyngeal Carcinoma by AJCC v6 Stage 9 64169 -NCIT:C8038 Stage I Hypopharyngeal Carcinoma AJCC v6 10 64170 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 10 64171 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 64172 -NCIT:C8040 Stage III Hypopharyngeal Carcinoma AJCC v6 10 64173 -NCIT:C8533 Stage IV Hypopharyngeal Carcinoma AJCC v6 10 64174 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 10 64175 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 11 64176 -NCIT:C91251 Hypopharyngeal Carcinoma by AJCC v7 Stage 9 64177 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 10 64178 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 64179 -NCIT:C89045 Stage I Hypopharyngeal Carcinoma AJCC v7 10 64180 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 64181 -NCIT:C89046 Stage III Hypopharyngeal Carcinoma AJCC v7 10 64182 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 64183 -NCIT:C89047 Stage IV Hypopharyngeal Carcinoma AJCC v7 10 64184 -NCIT:C5992 Stage IVA Hypopharyngeal Carcinoma AJCC v7 11 64185 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 64186 -NCIT:C5993 Stage IVB Hypopharyngeal Carcinoma AJCC v7 11 64187 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 64188 -NCIT:C5994 Stage IVC Hypopharyngeal Carcinoma AJCC v7 11 64189 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 64190 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 64191 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 64192 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 64193 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 64194 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 10 64195 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 11 64196 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 9 64197 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 10 64198 -NCIT:C4815 Thyroid Gland Carcinoma 6 64199 -NCIT:C118827 Childhood Thyroid Gland Carcinoma 7 64200 -NCIT:C123903 Childhood Thyroid Gland Papillary Carcinoma 8 64201 -NCIT:C123904 Childhood Thyroid Gland Follicular Carcinoma 8 64202 -NCIT:C123905 Childhood Thyroid Gland Medullary Carcinoma 8 64203 -NCIT:C190064 Childhood Thyroid Gland Spindle Epithelial Tumor with Thymus-Like Elements 8 64204 -NCIT:C126408 Thyroid Gland Cribriform Morular Carcinoma 7 64205 -NCIT:C129784 Unresectable Thyroid Gland Carcinoma 7 64206 -NCIT:C163974 Unresectable Thyroid Gland Medullary Carcinoma 8 64207 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 9 64208 -NCIT:C168572 Unresectable Differentiated Thyroid Gland Carcinoma 8 64209 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 9 64210 -NCIT:C174571 Unresectable Thyroid Gland Follicular Carcinoma 9 64211 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 10 64212 -NCIT:C170833 Unresectable Thyroid Gland Anaplastic Carcinoma 8 64213 -NCIT:C174569 Unresectable Poorly Differentiated Thyroid Gland Carcinoma 8 64214 -NCIT:C133193 Metastatic Thyroid Gland Carcinoma 7 64215 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 8 64216 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 64217 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 64218 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 8 64219 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 64220 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 64221 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 64222 -NCIT:C170831 Metastatic Thyroid Gland Anaplastic Carcinoma 8 64223 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 64224 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 64225 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 8 64226 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 64227 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 9 64228 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 64229 -NCIT:C173979 Metastatic Differentiated Thyroid Gland Carcinoma 8 64230 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 9 64231 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 10 64232 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 11 64233 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 9 64234 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 64235 -NCIT:C174046 Metastatic Poorly Differentiated Thyroid Gland Carcinoma 8 64236 -NCIT:C142983 Refractory Thyroid Gland Carcinoma 7 64237 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 8 64238 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 9 64239 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 9 64240 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 10 64241 -NCIT:C170832 Refractory Thyroid Gland Anaplastic Carcinoma 8 64242 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 8 64243 -NCIT:C156267 Thyroid Gland Mucinous Carcinoma 7 64244 -NCIT:C27380 Thyroid Gland Adenocarcinoma 7 64245 -NCIT:C187645 Follicular-Derived Thyroid Gland Carcinoma, High Grade 8 64246 -NCIT:C187648 Differentiated High Grade Thyroid Gland Carcinoma 9 64247 -NCIT:C6040 Poorly Differentiated Thyroid Gland Carcinoma 9 64248 -NCIT:C174046 Metastatic Poorly Differentiated Thyroid Gland Carcinoma 10 64249 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 10 64250 -NCIT:C174569 Unresectable Poorly Differentiated Thyroid Gland Carcinoma 10 64251 -NCIT:C187994 Thyroid Gland Secretory Carcinoma 8 64252 -NCIT:C7153 Differentiated Thyroid Gland Carcinoma 8 64253 -NCIT:C118829 Hereditary Nonmedullary Thyroid Gland Carcinoma 9 64254 -NCIT:C140959 Differentiated Thyroid Gland Carcinoma by AJCC v7 Stage 9 64255 -NCIT:C140958 Thyroid Gland Follicular Carcinoma by AJCC v7 Stage 10 64256 -NCIT:C9084 Stage I Thyroid Gland Follicular Carcinoma AJCC v7 11 64257 -NCIT:C9085 Stage II Thyroid Gland Follicular Carcinoma AJCC v7 11 64258 -NCIT:C9086 Stage IV Thyroid Gland Follicular Carcinoma AJCC v7 11 64259 -NCIT:C115035 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v7 12 64260 -NCIT:C115036 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v7 12 64261 -NCIT:C115037 Stage IVC Thyroid Gland Follicular Carcinoma AJCC v7 12 64262 -NCIT:C9121 Stage III Thyroid Gland Follicular Carcinoma AJCC v7 11 64263 -NCIT:C140960 Thyroid Gland Papillary Carcinoma by AJCC v7 Stage 10 64264 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 11 64265 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 11 64266 -NCIT:C9083 Stage IV Thyroid Gland Papillary Carcinoma AJCC v7 11 64267 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 12 64268 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 12 64269 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 12 64270 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 11 64271 -NCIT:C87543 Stage I Differentiated Thyroid Gland Carcinoma AJCC v7 10 64272 -NCIT:C101539 Stage I Differentiated Thyroid Gland Carcinoma Under 45 Years AJCC v7 11 64273 -NCIT:C101540 Stage I Differentiated Thyroid Gland Carcinoma 45 Years and Older AJCC v7 11 64274 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 11 64275 -NCIT:C9084 Stage I Thyroid Gland Follicular Carcinoma AJCC v7 11 64276 -NCIT:C87544 Stage II Differentiated Thyroid Gland Carcinoma AJCC v7 10 64277 -NCIT:C101541 Stage II Differentiated Thyroid Gland Carcinoma Under 45 Years AJCC v7 11 64278 -NCIT:C101542 Stage II Differentiated Thyroid Gland Carcinoma 45 Years and Older AJCC v7 11 64279 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 11 64280 -NCIT:C9085 Stage II Thyroid Gland Follicular Carcinoma AJCC v7 11 64281 -NCIT:C87545 Stage III Differentiated Thyroid Gland Carcinoma AJCC v7 10 64282 -NCIT:C9121 Stage III Thyroid Gland Follicular Carcinoma AJCC v7 11 64283 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 11 64284 -NCIT:C87546 Stage IVA Differentiated Thyroid Gland Carcinoma AJCC v7 10 64285 -NCIT:C115035 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v7 11 64286 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 11 64287 -NCIT:C87547 Stage IVB Differentiated Thyroid Gland Carcinoma AJCC v7 10 64288 -NCIT:C115036 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v7 11 64289 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 11 64290 -NCIT:C87548 Stage IVC Differentiated Thyroid Gland Carcinoma AJCC v7 10 64291 -NCIT:C115037 Stage IVC Thyroid Gland Follicular Carcinoma AJCC v7 11 64292 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 11 64293 -NCIT:C140965 Differentiated Thyroid Gland Carcinoma by AJCC v8 Stage 9 64294 -NCIT:C140966 Stage I Differentiated Thyroid Gland Carcinoma AJCC v8 10 64295 -NCIT:C140967 Stage I Differentiated Thyroid Gland Carcinoma Under 55 Years AJCC v8 11 64296 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 64297 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 64298 -NCIT:C140968 Stage I Differentiated Thyroid Gland Carcinoma 55 Years and Older AJCC v8 11 64299 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 64300 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 64301 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 11 64302 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 64303 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 64304 -NCIT:C140988 Stage I Thyroid Gland Follicular Carcinoma AJCC v8 11 64305 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 64306 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 64307 -NCIT:C140969 Stage II Differentiated Thyroid Gland Carcinoma AJCC v8 10 64308 -NCIT:C140970 Stage II Differentiated Thyroid Gland Carcinoma Under 55 Years AJCC v8 11 64309 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 64310 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 64311 -NCIT:C140971 Stage II Differentiated Thyroid Gland Carcinoma 55 Years and Older AJCC v8 11 64312 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 64313 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 64314 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 11 64315 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 64316 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 64317 -NCIT:C140991 Stage II Thyroid Gland Follicular Carcinoma AJCC v8 11 64318 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 64319 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 64320 -NCIT:C140972 Stage III Differentiated Thyroid Gland Carcinoma AJCC v8 10 64321 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 11 64322 -NCIT:C140995 Stage III Thyroid Gland Follicular Carcinoma AJCC v8 11 64323 -NCIT:C140973 Stage IV Differentiated Thyroid Gland Carcinoma AJCC v8 10 64324 -NCIT:C140974 Stage IVA Differentiated Thyroid Gland Carcinoma AJCC v8 11 64325 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 12 64326 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 12 64327 -NCIT:C140975 Stage IVB Differentiated Thyroid Gland Carcinoma AJCC v8 11 64328 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 12 64329 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 12 64330 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 11 64331 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 12 64332 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 12 64333 -NCIT:C140996 Stage IV Thyroid Gland Follicular Carcinoma AJCC v8 11 64334 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 12 64335 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 12 64336 -NCIT:C140976 Thyroid Gland Papillary Carcinoma by AJCC v8 Stage 10 64337 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 11 64338 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 64339 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 64340 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 11 64341 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 64342 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 64343 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 11 64344 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 11 64345 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 12 64346 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 12 64347 -NCIT:C140987 Thyroid Gland Follicular Carcinoma by AJCC v8 Stage 10 64348 -NCIT:C140988 Stage I Thyroid Gland Follicular Carcinoma AJCC v8 11 64349 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 64350 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 64351 -NCIT:C140991 Stage II Thyroid Gland Follicular Carcinoma AJCC v8 11 64352 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 64353 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 64354 -NCIT:C140995 Stage III Thyroid Gland Follicular Carcinoma AJCC v8 11 64355 -NCIT:C140996 Stage IV Thyroid Gland Follicular Carcinoma AJCC v8 11 64356 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 12 64357 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 12 64358 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 9 64359 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 10 64360 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 10 64361 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 11 64362 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 9 64363 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 10 64364 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 10 64365 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 11 64366 -NCIT:C168572 Unresectable Differentiated Thyroid Gland Carcinoma 9 64367 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 10 64368 -NCIT:C174571 Unresectable Thyroid Gland Follicular Carcinoma 10 64369 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 11 64370 -NCIT:C173979 Metastatic Differentiated Thyroid Gland Carcinoma 9 64371 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 10 64372 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 11 64373 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 12 64374 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 10 64375 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 10 64376 -NCIT:C4035 Thyroid Gland Papillary Carcinoma 9 64377 -NCIT:C123903 Childhood Thyroid Gland Papillary Carcinoma 10 64378 -NCIT:C126409 Warthin-Like Variant Thyroid Gland Papillary Carcinoma 10 64379 -NCIT:C126410 Thyroid Gland Papillary Carcinoma with Fibromatosis/Fasciitis-Like/Desmoid-Type Stroma 10 64380 -NCIT:C126594 Follicular Variant Thyroid Gland Papillary Carcinoma 10 64381 -NCIT:C66850 Invasive Encapsulated Follicular Variant Thyroid Gland Papillary Carcinoma 11 64382 -NCIT:C7381 Invasive Follicular Variant Thyroid Gland Papillary Carcinoma 11 64383 -NCIT:C140960 Thyroid Gland Papillary Carcinoma by AJCC v7 Stage 10 64384 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 11 64385 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 11 64386 -NCIT:C9083 Stage IV Thyroid Gland Papillary Carcinoma AJCC v7 11 64387 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 12 64388 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 12 64389 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 12 64390 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 11 64391 -NCIT:C140976 Thyroid Gland Papillary Carcinoma by AJCC v8 Stage 10 64392 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 11 64393 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 64394 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 64395 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 11 64396 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 64397 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 64398 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 11 64399 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 11 64400 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 12 64401 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 12 64402 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 10 64403 -NCIT:C156034 Encapsulated Variant Thyroid Gland Papillary Carcinoma 10 64404 -NCIT:C156045 Spindle Cell Variant Thyroid Gland Papillary Carcinoma 10 64405 -NCIT:C156050 Hobnail Variant Thyroid Gland Papillary Carcinoma 10 64406 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 10 64407 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 10 64408 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 10 64409 -NCIT:C187644 Classic Thyroid Gland Papillary Carcinoma 10 64410 -NCIT:C35558 Tall Cell Variant Thyroid Gland Papillary Carcinoma 10 64411 -NCIT:C35830 Columnar Cell Variant Thyroid Gland Papillary Carcinoma 10 64412 -NCIT:C37304 Multicentric Thyroid Gland Papillary Carcinoma 10 64413 -NCIT:C46004 Thyroid Gland Papillary Microcarcinoma 10 64414 -NCIT:C46092 Macrofollicular Variant Thyroid Gland Papillary Carcinoma 10 64415 -NCIT:C46093 Oncocytic Variant Thyroid Gland Papillary Carcinoma 10 64416 -NCIT:C46094 Clear Cell Variant Thyroid Gland Papillary Carcinoma 10 64417 -NCIT:C46095 Solid/Trabecular Variant Thyroid Gland Papillary Carcinoma 10 64418 -NCIT:C7427 Diffuse Sclerosing Variant Thyroid Gland Papillary Carcinoma 10 64419 -NCIT:C8054 Thyroid Gland Follicular Carcinoma 9 64420 -NCIT:C123904 Childhood Thyroid Gland Follicular Carcinoma 10 64421 -NCIT:C140958 Thyroid Gland Follicular Carcinoma by AJCC v7 Stage 10 64422 -NCIT:C9084 Stage I Thyroid Gland Follicular Carcinoma AJCC v7 11 64423 -NCIT:C9085 Stage II Thyroid Gland Follicular Carcinoma AJCC v7 11 64424 -NCIT:C9086 Stage IV Thyroid Gland Follicular Carcinoma AJCC v7 11 64425 -NCIT:C115035 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v7 12 64426 -NCIT:C115036 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v7 12 64427 -NCIT:C115037 Stage IVC Thyroid Gland Follicular Carcinoma AJCC v7 12 64428 -NCIT:C9121 Stage III Thyroid Gland Follicular Carcinoma AJCC v7 11 64429 -NCIT:C140987 Thyroid Gland Follicular Carcinoma by AJCC v8 Stage 10 64430 -NCIT:C140988 Stage I Thyroid Gland Follicular Carcinoma AJCC v8 11 64431 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 64432 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 64433 -NCIT:C140991 Stage II Thyroid Gland Follicular Carcinoma AJCC v8 11 64434 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 64435 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 64436 -NCIT:C140995 Stage III Thyroid Gland Follicular Carcinoma AJCC v8 11 64437 -NCIT:C140996 Stage IV Thyroid Gland Follicular Carcinoma AJCC v8 11 64438 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 12 64439 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 12 64440 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 10 64441 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 11 64442 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 10 64443 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 11 64444 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 12 64445 -NCIT:C156122 Thyroid Gland Follicular Carcinoma, Encapsulated Angioinvasive 10 64446 -NCIT:C156123 Thyroid Gland Follicular Carcinoma, Widely Invasive 10 64447 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 10 64448 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 11 64449 -NCIT:C174571 Unresectable Thyroid Gland Follicular Carcinoma 10 64450 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 11 64451 -NCIT:C187643 Thyroid Gland Follicular Carcinoma, Signet Ring Cell Variant 10 64452 -NCIT:C46096 Thyroid Gland Follicular Carcinoma, Clear Cell Variant 10 64453 -NCIT:C4946 Thyroid Gland Oncocytic Carcinoma 10 64454 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 11 64455 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 11 64456 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 11 64457 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 11 64458 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 12 64459 -NCIT:C65200 Thyroid Gland Follicular Carcinoma, Minimally Invasive 10 64460 -NCIT:C38762 Thyroid Gland Mucoepidermoid Carcinoma 7 64461 -NCIT:C38763 Thyroid Gland Sclerosing Mucoepidermoid Carcinoma with Eosinophilia 8 64462 -NCIT:C3878 Thyroid Gland Anaplastic Carcinoma 7 64463 -NCIT:C140999 Thyroid Gland Anaplastic Carcinoma by AJCC v7 Stage 8 64464 -NCIT:C87552 Stage IVA Thyroid Gland Anaplastic Carcinoma AJCC v7 9 64465 -NCIT:C87553 Stage IVB Thyroid Gland Anaplastic Carcinoma AJCC v7 9 64466 -NCIT:C87554 Stage IVC Thyroid Gland Anaplastic Carcinoma AJCC v7 9 64467 -NCIT:C141000 Thyroid Gland Anaplastic Carcinoma by AJCC v8 Stage 8 64468 -NCIT:C141001 Stage IVA Thyroid Gland Anaplastic Carcinoma AJCC v8 9 64469 -NCIT:C141003 Stage IVB Thyroid Gland Anaplastic Carcinoma AJCC v8 9 64470 -NCIT:C141004 Stage IVC Thyroid Gland Anaplastic Carcinoma AJCC v8 9 64471 -NCIT:C153624 Recurrent Thyroid Gland Anaplastic Carcinoma 8 64472 -NCIT:C170831 Metastatic Thyroid Gland Anaplastic Carcinoma 8 64473 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 64474 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 64475 -NCIT:C170832 Refractory Thyroid Gland Anaplastic Carcinoma 8 64476 -NCIT:C170833 Unresectable Thyroid Gland Anaplastic Carcinoma 8 64477 -NCIT:C46008 Thyroid Gland Anaplastic Carcinoma, Squamous Cell Carcinoma Pattern 8 64478 -NCIT:C7906 Thyroid Gland Anaplastic Carcinoma, Osteoclastic Variant 8 64479 -NCIT:C3879 Thyroid Gland Medullary Carcinoma 7 64480 -NCIT:C123905 Childhood Thyroid Gland Medullary Carcinoma 8 64481 -NCIT:C141041 Thyroid Gland Medullary Carcinoma by AJCC v7 Stage 8 64482 -NCIT:C6133 Stage I Thyroid Gland Medullary Carcinoma AJCC v7 9 64483 -NCIT:C6134 Stage II Thyroid Gland Medullary Carcinoma AJCC v7 9 64484 -NCIT:C6135 Stage III Thyroid Gland Medullary Carcinoma AJCC v7 9 64485 -NCIT:C6136 Stage IV Thyroid Gland Medullary Carcinoma AJCC v7 9 64486 -NCIT:C87549 Stage IVA Thyroid Gland Medullary Carcinoma AJCC v7 10 64487 -NCIT:C87550 Stage IVB Thyroid Gland Medullary Carcinoma AJCC v7 10 64488 -NCIT:C87551 Stage IVC Thyroid Gland Medullary Carcinoma AJCC v7 10 64489 -NCIT:C141042 Thyroid Gland Medullary Carcinoma by AJCC v8 Stage 8 64490 -NCIT:C141043 Stage I Thyroid Gland Medullary Carcinoma AJCC v8 9 64491 -NCIT:C141044 Stage II Thyroid Gland Medullary Carcinoma AJCC v8 9 64492 -NCIT:C141045 Stage III Thyroid Gland Medullary Carcinoma AJCC v8 9 64493 -NCIT:C141046 Stage IV Thyroid Gland Medullary Carcinoma AJCC v8 9 64494 -NCIT:C141047 Stage IVA Thyroid Gland Medullary Carcinoma AJCC v8 10 64495 -NCIT:C141048 Stage IVB Thyroid Gland Medullary Carcinoma AJCC v8 10 64496 -NCIT:C141049 Stage IVC Thyroid Gland Medullary Carcinoma AJCC v8 10 64497 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 8 64498 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 9 64499 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 8 64500 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 64501 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 64502 -NCIT:C163974 Unresectable Thyroid Gland Medullary Carcinoma 8 64503 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 9 64504 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 8 64505 -NCIT:C4193 Thyroid Gland Medullary Carcinoma with Amyloid Stroma 8 64506 -NCIT:C46098 Sporadic Thyroid Gland Medullary Carcinoma 8 64507 -NCIT:C46103 Sporadic Thyroid Gland Micromedullary Carcinoma 9 64508 -NCIT:C46099 Hereditary Thyroid Gland Medullary Carcinoma 8 64509 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 9 64510 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 9 64511 -NCIT:C46104 Thyroid Gland Mixed Medullary and Follicular Cell-Derived Carcinoma 7 64512 -NCIT:C187992 Thyroid Gland Mixed Medullary and Follicular Carcinoma 8 64513 -NCIT:C187993 Thyroid Gland Mixed Medullary and Papillary Carcinoma 8 64514 -NCIT:C46105 Thyroid Gland Spindle Epithelial Tumor with Thymus-Like Elements 7 64515 -NCIT:C190064 Childhood Thyroid Gland Spindle Epithelial Tumor with Thymus-Like Elements 8 64516 -NCIT:C46106 Intrathyroid Thymic Carcinoma 7 64517 -NCIT:C7908 Recurrent Thyroid Gland Carcinoma 7 64518 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 8 64519 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 9 64520 -NCIT:C153624 Recurrent Thyroid Gland Anaplastic Carcinoma 8 64521 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 8 64522 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 9 64523 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 9 64524 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 10 64525 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 8 64526 -NCIT:C4906 Parathyroid Gland Carcinoma 6 64527 -NCIT:C118819 Childhood Parathyroid Gland Carcinoma 7 64528 -NCIT:C7826 Localized Parathyroid Gland Carcinoma 7 64529 -NCIT:C7828 Recurrent Parathyroid Gland Carcinoma 7 64530 -NCIT:C9044 Metastatic Parathyroid Gland Carcinoma 7 64531 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 64532 -NCIT:C7484 Malignant Laryngeal Neoplasm 5 64533 -NCIT:C173400 Malignant Laryngeal Soft Tissue Neoplasm 6 64534 -NCIT:C173408 Laryngeal Soft Tissue Sarcoma 7 64535 -NCIT:C6021 Laryngeal Liposarcoma 8 64536 -NCIT:C6022 Laryngeal Leiomyosarcoma 8 64537 -NCIT:C3544 Malignant Glottis Neoplasm 6 64538 -NCIT:C4923 Glottis Carcinoma 7 64539 -NCIT:C8186 Glottic Squamous Cell Carcinoma 8 64540 -NCIT:C8189 Glottis Verrucous Carcinoma 9 64541 -NCIT:C3545 Malignant Supraglottis Neoplasm 6 64542 -NCIT:C4836 Malignant Epiglottis Neoplasm 7 64543 -NCIT:C35697 Epiglottic Carcinoma 8 64544 -NCIT:C181714 Epiglottic Squamous Cell Carcinoma 9 64545 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 10 64546 -NCIT:C5973 Supraglottic Carcinoma 7 64547 -NCIT:C35697 Epiglottic Carcinoma 8 64548 -NCIT:C181714 Epiglottic Squamous Cell Carcinoma 9 64549 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 10 64550 -NCIT:C4945 Supraglottic Squamous Cell Carcinoma 8 64551 -NCIT:C181714 Epiglottic Squamous Cell Carcinoma 9 64552 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 10 64553 -NCIT:C8191 Supraglottic Verrucous Carcinoma 9 64554 -NCIT:C3546 Malignant Subglottis Neoplasm 6 64555 -NCIT:C5972 Subglottic Carcinoma 7 64556 -NCIT:C8187 Subglottic Squamous Cell Carcinoma 8 64557 -NCIT:C8190 Subglottic Verrucous Carcinoma 9 64558 -NCIT:C4855 Laryngeal Carcinoma 6 64559 -NCIT:C118811 Childhood Laryngeal Carcinoma 7 64560 -NCIT:C133156 Laryngeal Cancer by AJCC v8 Stage 7 64561 -NCIT:C133158 Stage I Laryngeal Cancer AJCC v8 8 64562 -NCIT:C133159 Stage II Laryngeal Cancer AJCC v8 8 64563 -NCIT:C133160 Stage III Laryngeal Cancer AJCC v8 8 64564 -NCIT:C133161 Stage IV Laryngeal Cancer AJCC v8 8 64565 -NCIT:C133162 Stage IVA Laryngeal Cancer AJCC v8 9 64566 -NCIT:C133163 Stage IVB Laryngeal Cancer AJCC v8 9 64567 -NCIT:C133164 Stage IVC Laryngeal Cancer AJCC v8 9 64568 -NCIT:C9100 Stage 0 Laryngeal Cancer AJCC v6, v7, and V8 8 64569 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 9 64570 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 10 64571 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 10 64572 -NCIT:C156085 Metastatic Laryngeal Carcinoma 7 64573 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 8 64574 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 64575 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 64576 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 8 64577 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 64578 -NCIT:C173390 Laryngeal Neuroendocrine Carcinoma 7 64579 -NCIT:C173395 Laryngeal Large Cell Neuroendocrine Carcinoma 8 64580 -NCIT:C6025 Laryngeal Small Cell Neuroendocrine Carcinoma 8 64581 -NCIT:C27929 Alcohol-Related Laryngeal Carcinoma 7 64582 -NCIT:C4034 Recurrent Laryngeal Carcinoma 7 64583 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 8 64584 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 9 64585 -NCIT:C4044 Laryngeal Squamous Cell Carcinoma 7 64586 -NCIT:C148383 Refractory Laryngeal Squamous Cell Carcinoma 8 64587 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 8 64588 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 64589 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 64590 -NCIT:C172645 Unresectable Laryngeal Squamous Cell Carcinoma 8 64591 -NCIT:C4945 Supraglottic Squamous Cell Carcinoma 8 64592 -NCIT:C181714 Epiglottic Squamous Cell Carcinoma 9 64593 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 10 64594 -NCIT:C8191 Supraglottic Verrucous Carcinoma 9 64595 -NCIT:C54334 Laryngeal Basaloid Carcinoma 8 64596 -NCIT:C54335 Laryngeal Papillary Squamous Cell Carcinoma 8 64597 -NCIT:C54336 Laryngeal Squamous Cell Carcinoma, Spindle Cell Variant 8 64598 -NCIT:C54337 Laryngeal Acantholytic Squamous Cell Carcinoma 8 64599 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 8 64600 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 9 64601 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 9 64602 -NCIT:C8186 Glottic Squamous Cell Carcinoma 8 64603 -NCIT:C8189 Glottis Verrucous Carcinoma 9 64604 -NCIT:C8187 Subglottic Squamous Cell Carcinoma 8 64605 -NCIT:C8190 Subglottic Verrucous Carcinoma 9 64606 -NCIT:C8188 Laryngeal Verrucous Carcinoma 8 64607 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 9 64608 -NCIT:C8189 Glottis Verrucous Carcinoma 9 64609 -NCIT:C8190 Subglottic Verrucous Carcinoma 9 64610 -NCIT:C8191 Supraglottic Verrucous Carcinoma 9 64611 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 9 64612 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 9 64613 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 9 64614 -NCIT:C8244 Stage IV Laryngeal Verrucous Carcinoma AJCC v7 9 64615 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 10 64616 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 10 64617 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 10 64618 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 9 64619 -NCIT:C8237 Stage I Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 8 64620 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 9 64621 -NCIT:C8239 Stage II Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 8 64622 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 9 64623 -NCIT:C8241 Stage III Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 8 64624 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 9 64625 -NCIT:C8243 Stage IV Laryngeal Squamous Cell Carcinoma AJCC v7 8 64626 -NCIT:C6122 Stage IVA Laryngeal Squamous Cell Carcinoma AJCC v7 9 64627 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 10 64628 -NCIT:C6123 Stage IVB Laryngeal Squamous Cell Carcinoma AJCC v7 9 64629 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 10 64630 -NCIT:C6124 Stage IVC Laryngeal Squamous Cell Carcinoma AJCC v7 9 64631 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 10 64632 -NCIT:C8244 Stage IV Laryngeal Verrucous Carcinoma AJCC v7 9 64633 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 10 64634 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 10 64635 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 10 64636 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 8 64637 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 9 64638 -NCIT:C4923 Glottis Carcinoma 7 64639 -NCIT:C8186 Glottic Squamous Cell Carcinoma 8 64640 -NCIT:C8189 Glottis Verrucous Carcinoma 9 64641 -NCIT:C54338 Laryngeal Adenosquamous Carcinoma 7 64642 -NCIT:C54339 Laryngeal Undifferentiated Carcinoma 7 64643 -NCIT:C54341 Laryngeal Lymphoepithelial Carcinoma 8 64644 -NCIT:C54342 Laryngeal Giant Cell Carcinoma 8 64645 -NCIT:C5972 Subglottic Carcinoma 7 64646 -NCIT:C8187 Subglottic Squamous Cell Carcinoma 8 64647 -NCIT:C8190 Subglottic Verrucous Carcinoma 9 64648 -NCIT:C5973 Supraglottic Carcinoma 7 64649 -NCIT:C35697 Epiglottic Carcinoma 8 64650 -NCIT:C181714 Epiglottic Squamous Cell Carcinoma 9 64651 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 10 64652 -NCIT:C4945 Supraglottic Squamous Cell Carcinoma 8 64653 -NCIT:C181714 Epiglottic Squamous Cell Carcinoma 9 64654 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 10 64655 -NCIT:C8191 Supraglottic Verrucous Carcinoma 9 64656 -NCIT:C90527 Laryngeal Cancer by AJCC v6 Stage 7 64657 -NCIT:C6868 Stage IV Laryngeal Cancer AJCC v6 8 64658 -NCIT:C8041 Stage I Laryngeal Cancer AJCC v6 and v7 8 64659 -NCIT:C8237 Stage I Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 9 64660 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 64661 -NCIT:C8042 Stage II Laryngeal Cancer AJCC v6 and v7 8 64662 -NCIT:C8239 Stage II Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 9 64663 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 64664 -NCIT:C8043 Stage III Laryngeal Cancer AJCC v6 and v7 8 64665 -NCIT:C8241 Stage III Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 9 64666 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 64667 -NCIT:C9100 Stage 0 Laryngeal Cancer AJCC v6, v7, and V8 8 64668 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 9 64669 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 10 64670 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 10 64671 -NCIT:C91256 Laryngeal Cancer by AJCC v7 Stage 7 64672 -NCIT:C8041 Stage I Laryngeal Cancer AJCC v6 and v7 8 64673 -NCIT:C8237 Stage I Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 9 64674 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 64675 -NCIT:C8042 Stage II Laryngeal Cancer AJCC v6 and v7 8 64676 -NCIT:C8239 Stage II Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 9 64677 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 64678 -NCIT:C8043 Stage III Laryngeal Cancer AJCC v6 and v7 8 64679 -NCIT:C8241 Stage III Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 9 64680 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 64681 -NCIT:C89091 Stage IV Laryngeal Cancer AJCC v7 8 64682 -NCIT:C6003 Stage IVC Laryngeal Cancer AJCC v7 9 64683 -NCIT:C6124 Stage IVC Laryngeal Squamous Cell Carcinoma AJCC v7 10 64684 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 11 64685 -NCIT:C6004 Stage IVB Laryngeal Cancer AJCC v7 9 64686 -NCIT:C6123 Stage IVB Laryngeal Squamous Cell Carcinoma AJCC v7 10 64687 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 11 64688 -NCIT:C6005 Stage IVA Laryngeal Cancer AJCC v7 9 64689 -NCIT:C6122 Stage IVA Laryngeal Squamous Cell Carcinoma AJCC v7 10 64690 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 11 64691 -NCIT:C8243 Stage IV Laryngeal Squamous Cell Carcinoma AJCC v7 9 64692 -NCIT:C6122 Stage IVA Laryngeal Squamous Cell Carcinoma AJCC v7 10 64693 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 11 64694 -NCIT:C6123 Stage IVB Laryngeal Squamous Cell Carcinoma AJCC v7 10 64695 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 11 64696 -NCIT:C6124 Stage IVC Laryngeal Squamous Cell Carcinoma AJCC v7 10 64697 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 11 64698 -NCIT:C8244 Stage IV Laryngeal Verrucous Carcinoma AJCC v7 10 64699 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 11 64700 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 11 64701 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 11 64702 -NCIT:C9100 Stage 0 Laryngeal Cancer AJCC v6, v7, and V8 8 64703 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 9 64704 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 10 64705 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 10 64706 -NCIT:C9462 Laryngeal Adenoid Cystic Carcinoma 7 64707 -NCIT:C9463 Laryngeal Mucoepidermoid Carcinoma 7 64708 -NCIT:C6020 Laryngeal Sarcoma 6 64709 -NCIT:C173407 Laryngeal Chondrosarcoma 7 64710 -NCIT:C173408 Laryngeal Soft Tissue Sarcoma 7 64711 -NCIT:C6021 Laryngeal Liposarcoma 8 64712 -NCIT:C6022 Laryngeal Leiomyosarcoma 8 64713 -NCIT:C6031 Metastatic Malignant Neoplasm in the Larynx 6 64714 -NCIT:C7510 Malignant Thyroid Gland Neoplasm 5 64715 -NCIT:C150538 Recurrent Malignant Thyroid Gland Neoplasm 6 64716 -NCIT:C7908 Recurrent Thyroid Gland Carcinoma 7 64717 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 8 64718 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 9 64719 -NCIT:C153624 Recurrent Thyroid Gland Anaplastic Carcinoma 8 64720 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 8 64721 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 9 64722 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 9 64723 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 10 64724 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 8 64725 -NCIT:C150539 Refractory Malignant Thyroid Gland Neoplasm 6 64726 -NCIT:C142983 Refractory Thyroid Gland Carcinoma 7 64727 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 8 64728 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 9 64729 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 9 64730 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 10 64731 -NCIT:C170832 Refractory Thyroid Gland Anaplastic Carcinoma 8 64732 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 8 64733 -NCIT:C156408 Thyroid Gland Follicular Dendritic Cell Sarcoma 6 64734 -NCIT:C187995 Thyroblastoma 6 64735 -NCIT:C4815 Thyroid Gland Carcinoma 6 64736 -NCIT:C118827 Childhood Thyroid Gland Carcinoma 7 64737 -NCIT:C123903 Childhood Thyroid Gland Papillary Carcinoma 8 64738 -NCIT:C123904 Childhood Thyroid Gland Follicular Carcinoma 8 64739 -NCIT:C123905 Childhood Thyroid Gland Medullary Carcinoma 8 64740 -NCIT:C190064 Childhood Thyroid Gland Spindle Epithelial Tumor with Thymus-Like Elements 8 64741 -NCIT:C126408 Thyroid Gland Cribriform Morular Carcinoma 7 64742 -NCIT:C129784 Unresectable Thyroid Gland Carcinoma 7 64743 -NCIT:C163974 Unresectable Thyroid Gland Medullary Carcinoma 8 64744 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 9 64745 -NCIT:C168572 Unresectable Differentiated Thyroid Gland Carcinoma 8 64746 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 9 64747 -NCIT:C174571 Unresectable Thyroid Gland Follicular Carcinoma 9 64748 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 10 64749 -NCIT:C170833 Unresectable Thyroid Gland Anaplastic Carcinoma 8 64750 -NCIT:C174569 Unresectable Poorly Differentiated Thyroid Gland Carcinoma 8 64751 -NCIT:C133193 Metastatic Thyroid Gland Carcinoma 7 64752 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 8 64753 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 64754 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 64755 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 8 64756 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 64757 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 64758 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 64759 -NCIT:C170831 Metastatic Thyroid Gland Anaplastic Carcinoma 8 64760 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 64761 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 64762 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 8 64763 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 64764 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 9 64765 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 64766 -NCIT:C173979 Metastatic Differentiated Thyroid Gland Carcinoma 8 64767 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 9 64768 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 10 64769 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 11 64770 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 9 64771 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 64772 -NCIT:C174046 Metastatic Poorly Differentiated Thyroid Gland Carcinoma 8 64773 -NCIT:C142983 Refractory Thyroid Gland Carcinoma 7 64774 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 8 64775 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 9 64776 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 9 64777 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 10 64778 -NCIT:C170832 Refractory Thyroid Gland Anaplastic Carcinoma 8 64779 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 8 64780 -NCIT:C156267 Thyroid Gland Mucinous Carcinoma 7 64781 -NCIT:C27380 Thyroid Gland Adenocarcinoma 7 64782 -NCIT:C187645 Follicular-Derived Thyroid Gland Carcinoma, High Grade 8 64783 -NCIT:C187648 Differentiated High Grade Thyroid Gland Carcinoma 9 64784 -NCIT:C6040 Poorly Differentiated Thyroid Gland Carcinoma 9 64785 -NCIT:C174046 Metastatic Poorly Differentiated Thyroid Gland Carcinoma 10 64786 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 10 64787 -NCIT:C174569 Unresectable Poorly Differentiated Thyroid Gland Carcinoma 10 64788 -NCIT:C187994 Thyroid Gland Secretory Carcinoma 8 64789 -NCIT:C7153 Differentiated Thyroid Gland Carcinoma 8 64790 -NCIT:C118829 Hereditary Nonmedullary Thyroid Gland Carcinoma 9 64791 -NCIT:C140959 Differentiated Thyroid Gland Carcinoma by AJCC v7 Stage 9 64792 -NCIT:C140958 Thyroid Gland Follicular Carcinoma by AJCC v7 Stage 10 64793 -NCIT:C9084 Stage I Thyroid Gland Follicular Carcinoma AJCC v7 11 64794 -NCIT:C9085 Stage II Thyroid Gland Follicular Carcinoma AJCC v7 11 64795 -NCIT:C9086 Stage IV Thyroid Gland Follicular Carcinoma AJCC v7 11 64796 -NCIT:C115035 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v7 12 64797 -NCIT:C115036 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v7 12 64798 -NCIT:C115037 Stage IVC Thyroid Gland Follicular Carcinoma AJCC v7 12 64799 -NCIT:C9121 Stage III Thyroid Gland Follicular Carcinoma AJCC v7 11 64800 -NCIT:C140960 Thyroid Gland Papillary Carcinoma by AJCC v7 Stage 10 64801 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 11 64802 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 11 64803 -NCIT:C9083 Stage IV Thyroid Gland Papillary Carcinoma AJCC v7 11 64804 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 12 64805 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 12 64806 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 12 64807 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 11 64808 -NCIT:C87543 Stage I Differentiated Thyroid Gland Carcinoma AJCC v7 10 64809 -NCIT:C101539 Stage I Differentiated Thyroid Gland Carcinoma Under 45 Years AJCC v7 11 64810 -NCIT:C101540 Stage I Differentiated Thyroid Gland Carcinoma 45 Years and Older AJCC v7 11 64811 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 11 64812 -NCIT:C9084 Stage I Thyroid Gland Follicular Carcinoma AJCC v7 11 64813 -NCIT:C87544 Stage II Differentiated Thyroid Gland Carcinoma AJCC v7 10 64814 -NCIT:C101541 Stage II Differentiated Thyroid Gland Carcinoma Under 45 Years AJCC v7 11 64815 -NCIT:C101542 Stage II Differentiated Thyroid Gland Carcinoma 45 Years and Older AJCC v7 11 64816 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 11 64817 -NCIT:C9085 Stage II Thyroid Gland Follicular Carcinoma AJCC v7 11 64818 -NCIT:C87545 Stage III Differentiated Thyroid Gland Carcinoma AJCC v7 10 64819 -NCIT:C9121 Stage III Thyroid Gland Follicular Carcinoma AJCC v7 11 64820 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 11 64821 -NCIT:C87546 Stage IVA Differentiated Thyroid Gland Carcinoma AJCC v7 10 64822 -NCIT:C115035 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v7 11 64823 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 11 64824 -NCIT:C87547 Stage IVB Differentiated Thyroid Gland Carcinoma AJCC v7 10 64825 -NCIT:C115036 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v7 11 64826 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 11 64827 -NCIT:C87548 Stage IVC Differentiated Thyroid Gland Carcinoma AJCC v7 10 64828 -NCIT:C115037 Stage IVC Thyroid Gland Follicular Carcinoma AJCC v7 11 64829 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 11 64830 -NCIT:C140965 Differentiated Thyroid Gland Carcinoma by AJCC v8 Stage 9 64831 -NCIT:C140966 Stage I Differentiated Thyroid Gland Carcinoma AJCC v8 10 64832 -NCIT:C140967 Stage I Differentiated Thyroid Gland Carcinoma Under 55 Years AJCC v8 11 64833 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 64834 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 64835 -NCIT:C140968 Stage I Differentiated Thyroid Gland Carcinoma 55 Years and Older AJCC v8 11 64836 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 64837 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 64838 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 11 64839 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 64840 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 64841 -NCIT:C140988 Stage I Thyroid Gland Follicular Carcinoma AJCC v8 11 64842 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 64843 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 64844 -NCIT:C140969 Stage II Differentiated Thyroid Gland Carcinoma AJCC v8 10 64845 -NCIT:C140970 Stage II Differentiated Thyroid Gland Carcinoma Under 55 Years AJCC v8 11 64846 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 64847 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 64848 -NCIT:C140971 Stage II Differentiated Thyroid Gland Carcinoma 55 Years and Older AJCC v8 11 64849 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 64850 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 64851 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 11 64852 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 64853 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 64854 -NCIT:C140991 Stage II Thyroid Gland Follicular Carcinoma AJCC v8 11 64855 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 64856 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 64857 -NCIT:C140972 Stage III Differentiated Thyroid Gland Carcinoma AJCC v8 10 64858 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 11 64859 -NCIT:C140995 Stage III Thyroid Gland Follicular Carcinoma AJCC v8 11 64860 -NCIT:C140973 Stage IV Differentiated Thyroid Gland Carcinoma AJCC v8 10 64861 -NCIT:C140974 Stage IVA Differentiated Thyroid Gland Carcinoma AJCC v8 11 64862 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 12 64863 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 12 64864 -NCIT:C140975 Stage IVB Differentiated Thyroid Gland Carcinoma AJCC v8 11 64865 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 12 64866 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 12 64867 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 11 64868 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 12 64869 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 12 64870 -NCIT:C140996 Stage IV Thyroid Gland Follicular Carcinoma AJCC v8 11 64871 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 12 64872 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 12 64873 -NCIT:C140976 Thyroid Gland Papillary Carcinoma by AJCC v8 Stage 10 64874 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 11 64875 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 64876 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 64877 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 11 64878 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 64879 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 64880 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 11 64881 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 11 64882 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 12 64883 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 12 64884 -NCIT:C140987 Thyroid Gland Follicular Carcinoma by AJCC v8 Stage 10 64885 -NCIT:C140988 Stage I Thyroid Gland Follicular Carcinoma AJCC v8 11 64886 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 64887 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 64888 -NCIT:C140991 Stage II Thyroid Gland Follicular Carcinoma AJCC v8 11 64889 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 64890 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 64891 -NCIT:C140995 Stage III Thyroid Gland Follicular Carcinoma AJCC v8 11 64892 -NCIT:C140996 Stage IV Thyroid Gland Follicular Carcinoma AJCC v8 11 64893 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 12 64894 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 12 64895 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 9 64896 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 10 64897 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 10 64898 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 11 64899 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 9 64900 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 10 64901 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 10 64902 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 11 64903 -NCIT:C168572 Unresectable Differentiated Thyroid Gland Carcinoma 9 64904 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 10 64905 -NCIT:C174571 Unresectable Thyroid Gland Follicular Carcinoma 10 64906 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 11 64907 -NCIT:C173979 Metastatic Differentiated Thyroid Gland Carcinoma 9 64908 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 10 64909 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 11 64910 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 12 64911 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 10 64912 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 10 64913 -NCIT:C4035 Thyroid Gland Papillary Carcinoma 9 64914 -NCIT:C123903 Childhood Thyroid Gland Papillary Carcinoma 10 64915 -NCIT:C126409 Warthin-Like Variant Thyroid Gland Papillary Carcinoma 10 64916 -NCIT:C126410 Thyroid Gland Papillary Carcinoma with Fibromatosis/Fasciitis-Like/Desmoid-Type Stroma 10 64917 -NCIT:C126594 Follicular Variant Thyroid Gland Papillary Carcinoma 10 64918 -NCIT:C66850 Invasive Encapsulated Follicular Variant Thyroid Gland Papillary Carcinoma 11 64919 -NCIT:C7381 Invasive Follicular Variant Thyroid Gland Papillary Carcinoma 11 64920 -NCIT:C140960 Thyroid Gland Papillary Carcinoma by AJCC v7 Stage 10 64921 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 11 64922 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 11 64923 -NCIT:C9083 Stage IV Thyroid Gland Papillary Carcinoma AJCC v7 11 64924 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 12 64925 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 12 64926 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 12 64927 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 11 64928 -NCIT:C140976 Thyroid Gland Papillary Carcinoma by AJCC v8 Stage 10 64929 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 11 64930 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 64931 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 64932 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 11 64933 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 64934 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 64935 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 11 64936 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 11 64937 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 12 64938 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 12 64939 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 10 64940 -NCIT:C156034 Encapsulated Variant Thyroid Gland Papillary Carcinoma 10 64941 -NCIT:C156045 Spindle Cell Variant Thyroid Gland Papillary Carcinoma 10 64942 -NCIT:C156050 Hobnail Variant Thyroid Gland Papillary Carcinoma 10 64943 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 10 64944 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 10 64945 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 10 64946 -NCIT:C187644 Classic Thyroid Gland Papillary Carcinoma 10 64947 -NCIT:C35558 Tall Cell Variant Thyroid Gland Papillary Carcinoma 10 64948 -NCIT:C35830 Columnar Cell Variant Thyroid Gland Papillary Carcinoma 10 64949 -NCIT:C37304 Multicentric Thyroid Gland Papillary Carcinoma 10 64950 -NCIT:C46004 Thyroid Gland Papillary Microcarcinoma 10 64951 -NCIT:C46092 Macrofollicular Variant Thyroid Gland Papillary Carcinoma 10 64952 -NCIT:C46093 Oncocytic Variant Thyroid Gland Papillary Carcinoma 10 64953 -NCIT:C46094 Clear Cell Variant Thyroid Gland Papillary Carcinoma 10 64954 -NCIT:C46095 Solid/Trabecular Variant Thyroid Gland Papillary Carcinoma 10 64955 -NCIT:C7427 Diffuse Sclerosing Variant Thyroid Gland Papillary Carcinoma 10 64956 -NCIT:C8054 Thyroid Gland Follicular Carcinoma 9 64957 -NCIT:C123904 Childhood Thyroid Gland Follicular Carcinoma 10 64958 -NCIT:C140958 Thyroid Gland Follicular Carcinoma by AJCC v7 Stage 10 64959 -NCIT:C9084 Stage I Thyroid Gland Follicular Carcinoma AJCC v7 11 64960 -NCIT:C9085 Stage II Thyroid Gland Follicular Carcinoma AJCC v7 11 64961 -NCIT:C9086 Stage IV Thyroid Gland Follicular Carcinoma AJCC v7 11 64962 -NCIT:C115035 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v7 12 64963 -NCIT:C115036 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v7 12 64964 -NCIT:C115037 Stage IVC Thyroid Gland Follicular Carcinoma AJCC v7 12 64965 -NCIT:C9121 Stage III Thyroid Gland Follicular Carcinoma AJCC v7 11 64966 -NCIT:C140987 Thyroid Gland Follicular Carcinoma by AJCC v8 Stage 10 64967 -NCIT:C140988 Stage I Thyroid Gland Follicular Carcinoma AJCC v8 11 64968 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 64969 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 64970 -NCIT:C140991 Stage II Thyroid Gland Follicular Carcinoma AJCC v8 11 64971 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 64972 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 64973 -NCIT:C140995 Stage III Thyroid Gland Follicular Carcinoma AJCC v8 11 64974 -NCIT:C140996 Stage IV Thyroid Gland Follicular Carcinoma AJCC v8 11 64975 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 12 64976 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 12 64977 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 10 64978 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 11 64979 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 10 64980 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 11 64981 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 12 64982 -NCIT:C156122 Thyroid Gland Follicular Carcinoma, Encapsulated Angioinvasive 10 64983 -NCIT:C156123 Thyroid Gland Follicular Carcinoma, Widely Invasive 10 64984 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 10 64985 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 11 64986 -NCIT:C174571 Unresectable Thyroid Gland Follicular Carcinoma 10 64987 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 11 64988 -NCIT:C187643 Thyroid Gland Follicular Carcinoma, Signet Ring Cell Variant 10 64989 -NCIT:C46096 Thyroid Gland Follicular Carcinoma, Clear Cell Variant 10 64990 -NCIT:C4946 Thyroid Gland Oncocytic Carcinoma 10 64991 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 11 64992 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 11 64993 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 11 64994 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 11 64995 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 12 64996 -NCIT:C65200 Thyroid Gland Follicular Carcinoma, Minimally Invasive 10 64997 -NCIT:C38762 Thyroid Gland Mucoepidermoid Carcinoma 7 64998 -NCIT:C38763 Thyroid Gland Sclerosing Mucoepidermoid Carcinoma with Eosinophilia 8 64999 -NCIT:C3878 Thyroid Gland Anaplastic Carcinoma 7 65000 -NCIT:C140999 Thyroid Gland Anaplastic Carcinoma by AJCC v7 Stage 8 65001 -NCIT:C87552 Stage IVA Thyroid Gland Anaplastic Carcinoma AJCC v7 9 65002 -NCIT:C87553 Stage IVB Thyroid Gland Anaplastic Carcinoma AJCC v7 9 65003 -NCIT:C87554 Stage IVC Thyroid Gland Anaplastic Carcinoma AJCC v7 9 65004 -NCIT:C141000 Thyroid Gland Anaplastic Carcinoma by AJCC v8 Stage 8 65005 -NCIT:C141001 Stage IVA Thyroid Gland Anaplastic Carcinoma AJCC v8 9 65006 -NCIT:C141003 Stage IVB Thyroid Gland Anaplastic Carcinoma AJCC v8 9 65007 -NCIT:C141004 Stage IVC Thyroid Gland Anaplastic Carcinoma AJCC v8 9 65008 -NCIT:C153624 Recurrent Thyroid Gland Anaplastic Carcinoma 8 65009 -NCIT:C170831 Metastatic Thyroid Gland Anaplastic Carcinoma 8 65010 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 65011 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 65012 -NCIT:C170832 Refractory Thyroid Gland Anaplastic Carcinoma 8 65013 -NCIT:C170833 Unresectable Thyroid Gland Anaplastic Carcinoma 8 65014 -NCIT:C46008 Thyroid Gland Anaplastic Carcinoma, Squamous Cell Carcinoma Pattern 8 65015 -NCIT:C7906 Thyroid Gland Anaplastic Carcinoma, Osteoclastic Variant 8 65016 -NCIT:C3879 Thyroid Gland Medullary Carcinoma 7 65017 -NCIT:C123905 Childhood Thyroid Gland Medullary Carcinoma 8 65018 -NCIT:C141041 Thyroid Gland Medullary Carcinoma by AJCC v7 Stage 8 65019 -NCIT:C6133 Stage I Thyroid Gland Medullary Carcinoma AJCC v7 9 65020 -NCIT:C6134 Stage II Thyroid Gland Medullary Carcinoma AJCC v7 9 65021 -NCIT:C6135 Stage III Thyroid Gland Medullary Carcinoma AJCC v7 9 65022 -NCIT:C6136 Stage IV Thyroid Gland Medullary Carcinoma AJCC v7 9 65023 -NCIT:C87549 Stage IVA Thyroid Gland Medullary Carcinoma AJCC v7 10 65024 -NCIT:C87550 Stage IVB Thyroid Gland Medullary Carcinoma AJCC v7 10 65025 -NCIT:C87551 Stage IVC Thyroid Gland Medullary Carcinoma AJCC v7 10 65026 -NCIT:C141042 Thyroid Gland Medullary Carcinoma by AJCC v8 Stage 8 65027 -NCIT:C141043 Stage I Thyroid Gland Medullary Carcinoma AJCC v8 9 65028 -NCIT:C141044 Stage II Thyroid Gland Medullary Carcinoma AJCC v8 9 65029 -NCIT:C141045 Stage III Thyroid Gland Medullary Carcinoma AJCC v8 9 65030 -NCIT:C141046 Stage IV Thyroid Gland Medullary Carcinoma AJCC v8 9 65031 -NCIT:C141047 Stage IVA Thyroid Gland Medullary Carcinoma AJCC v8 10 65032 -NCIT:C141048 Stage IVB Thyroid Gland Medullary Carcinoma AJCC v8 10 65033 -NCIT:C141049 Stage IVC Thyroid Gland Medullary Carcinoma AJCC v8 10 65034 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 8 65035 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 9 65036 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 8 65037 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 65038 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 65039 -NCIT:C163974 Unresectable Thyroid Gland Medullary Carcinoma 8 65040 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 9 65041 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 8 65042 -NCIT:C4193 Thyroid Gland Medullary Carcinoma with Amyloid Stroma 8 65043 -NCIT:C46098 Sporadic Thyroid Gland Medullary Carcinoma 8 65044 -NCIT:C46103 Sporadic Thyroid Gland Micromedullary Carcinoma 9 65045 -NCIT:C46099 Hereditary Thyroid Gland Medullary Carcinoma 8 65046 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 9 65047 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 9 65048 -NCIT:C46104 Thyroid Gland Mixed Medullary and Follicular Cell-Derived Carcinoma 7 65049 -NCIT:C187992 Thyroid Gland Mixed Medullary and Follicular Carcinoma 8 65050 -NCIT:C187993 Thyroid Gland Mixed Medullary and Papillary Carcinoma 8 65051 -NCIT:C46105 Thyroid Gland Spindle Epithelial Tumor with Thymus-Like Elements 7 65052 -NCIT:C190064 Childhood Thyroid Gland Spindle Epithelial Tumor with Thymus-Like Elements 8 65053 -NCIT:C46106 Intrathyroid Thymic Carcinoma 7 65054 -NCIT:C7908 Recurrent Thyroid Gland Carcinoma 7 65055 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 8 65056 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 9 65057 -NCIT:C153624 Recurrent Thyroid Gland Anaplastic Carcinoma 8 65058 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 8 65059 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 9 65060 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 9 65061 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 10 65062 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 8 65063 -NCIT:C5265 Thyroid Gland Lymphoma 6 65064 -NCIT:C181209 Thyroid Gland Hodgkin Lymphoma 7 65065 -NCIT:C6044 Thyroid Gland Non-Hodgkin Lymphoma 7 65066 -NCIT:C156410 Thyroid Gland Follicular Lymphoma 8 65067 -NCIT:C6046 Thyroid Gland Diffuse Large B-Cell Lymphoma 8 65068 -NCIT:C7263 Thyroid Gland Immunoblastic Lymphoma 9 65069 -NCIT:C7601 Thyroid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 8 65070 -NCIT:C6041 Thyroid Gland Sarcoma 6 65071 -NCIT:C156341 Thyroid Gland Malignant Peripheral Nerve Sheath Tumor 7 65072 -NCIT:C156347 Thyroid Gland Leiomyosarcoma 7 65073 -NCIT:C6043 Thyroid Gland Angiosarcoma 7 65074 -NCIT:C7509 Metastatic Malignant Neoplasm in the Thyroid Gland 6 65075 -NCIT:C7545 Malignant Pharyngeal Neoplasm 5 65076 -NCIT:C150531 Recurrent Malignant Pharyngeal Neoplasm 6 65077 -NCIT:C5103 Recurrent Pharyngeal Carcinoma 7 65078 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 8 65079 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 9 65080 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 65081 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 65082 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 9 65083 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 10 65084 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 9 65085 -NCIT:C8051 Recurrent Oropharyngeal Carcinoma 8 65086 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 9 65087 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 10 65088 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 8 65089 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 9 65090 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 65091 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 65092 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 8 65093 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 9 65094 -NCIT:C9268 Recurrent Malignant Nasopharyngeal Neoplasm 7 65095 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 8 65096 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 9 65097 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 65098 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 65099 -NCIT:C9353 Recurrent Malignant Hypopharyngeal Neoplasm 7 65100 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 8 65101 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 9 65102 -NCIT:C150532 Refractory Malignant Pharyngeal Neoplasm 6 65103 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 7 65104 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 7 65105 -NCIT:C148434 Refractory Nasopharyngeal Carcinoma 7 65106 -NCIT:C173354 Pharyngeal Lymphoma 6 65107 -NCIT:C173355 Pharyngeal Non-Hodgkin Lymphoma 7 65108 -NCIT:C173359 Nasopharyngeal Non-Hodgkin Lymphoma 8 65109 -NCIT:C173579 Oropharyngeal Non-Hodgkin Lymphoma 8 65110 -NCIT:C188072 Tonsillar Diffuse Large B-Cell Lymphoma 9 65111 -NCIT:C188080 Tonsillar Mantle Cell Lymphoma 9 65112 -NCIT:C173356 Pharyngeal Hodgkin Lymphoma 7 65113 -NCIT:C173361 Nasopharyngeal Hodgkin Lymphoma 8 65114 -NCIT:C173578 Oropharyngeal Hodgkin Lymphoma 8 65115 -NCIT:C173357 Nasopharyngeal Lymphoma 7 65116 -NCIT:C173359 Nasopharyngeal Non-Hodgkin Lymphoma 8 65117 -NCIT:C173361 Nasopharyngeal Hodgkin Lymphoma 8 65118 -NCIT:C173577 Oropharyngeal Lymphoma 7 65119 -NCIT:C173578 Oropharyngeal Hodgkin Lymphoma 8 65120 -NCIT:C173579 Oropharyngeal Non-Hodgkin Lymphoma 8 65121 -NCIT:C188072 Tonsillar Diffuse Large B-Cell Lymphoma 9 65122 -NCIT:C188080 Tonsillar Mantle Cell Lymphoma 9 65123 -NCIT:C5918 Tonsillar Lymphoma 8 65124 -NCIT:C188072 Tonsillar Diffuse Large B-Cell Lymphoma 9 65125 -NCIT:C188080 Tonsillar Mantle Cell Lymphoma 9 65126 -NCIT:C178521 Pharyngeal Melanoma 6 65127 -NCIT:C178522 Nasopharyngeal Melanoma 7 65128 -NCIT:C7190 Malignant Hypopharyngeal Neoplasm 6 65129 -NCIT:C3531 Malignant Pyriform Fossa Neoplasm 7 65130 -NCIT:C6028 Metastatic Malignant Neoplasm in the Hypopharynx 7 65131 -NCIT:C9323 Malignant Postcricoid Neoplasm 7 65132 -NCIT:C8595 Postcricoid Carcinoma 8 65133 -NCIT:C8185 Postcricoid Squamous Cell Carcinoma 9 65134 -NCIT:C9353 Recurrent Malignant Hypopharyngeal Neoplasm 7 65135 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 8 65136 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 9 65137 -NCIT:C9465 Hypopharyngeal Carcinoma 7 65138 -NCIT:C133003 Hypopharyngeal Carcinoma by AJCC v8 Stage 8 65139 -NCIT:C133005 Stage I Hypopharyngeal Carcinoma AJCC v8 9 65140 -NCIT:C133006 Stage II Hypopharyngeal Carcinoma AJCC v8 9 65141 -NCIT:C133007 Stage III Hypopharyngeal Carcinoma AJCC v8 9 65142 -NCIT:C133008 Stage IV Hypopharyngeal Carcinoma AJCC v8 9 65143 -NCIT:C133009 Stage IVA Hypopharyngeal Carcinoma AJCC v8 10 65144 -NCIT:C133010 Stage IVB Hypopharyngeal Carcinoma AJCC v8 10 65145 -NCIT:C133011 Stage IVC Hypopharyngeal Carcinoma AJCC v8 10 65146 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 9 65147 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 65148 -NCIT:C156081 Metastatic Hypopharyngeal Carcinoma 8 65149 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 65150 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 65151 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 65152 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 9 65153 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 65154 -NCIT:C4043 Hypopharyngeal Squamous Cell Carcinoma 8 65155 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 9 65156 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 65157 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 65158 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 65159 -NCIT:C172646 Unresectable Hypopharyngeal Squamous Cell Carcinoma 9 65160 -NCIT:C4943 Pyriform Fossa Squamous Cell Carcinoma 9 65161 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 9 65162 -NCIT:C8185 Postcricoid Squamous Cell Carcinoma 9 65163 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 65164 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 65165 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 65166 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 65167 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 65168 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 65169 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 65170 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 9 65171 -NCIT:C6700 Pyriform Fossa Carcinoma 8 65172 -NCIT:C4943 Pyriform Fossa Squamous Cell Carcinoma 9 65173 -NCIT:C8595 Postcricoid Carcinoma 8 65174 -NCIT:C8185 Postcricoid Squamous Cell Carcinoma 9 65175 -NCIT:C90524 Hypopharyngeal Carcinoma by AJCC v6 Stage 8 65176 -NCIT:C8038 Stage I Hypopharyngeal Carcinoma AJCC v6 9 65177 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 9 65178 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 65179 -NCIT:C8040 Stage III Hypopharyngeal Carcinoma AJCC v6 9 65180 -NCIT:C8533 Stage IV Hypopharyngeal Carcinoma AJCC v6 9 65181 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 9 65182 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 65183 -NCIT:C91251 Hypopharyngeal Carcinoma by AJCC v7 Stage 8 65184 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 9 65185 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 65186 -NCIT:C89045 Stage I Hypopharyngeal Carcinoma AJCC v7 9 65187 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 65188 -NCIT:C89046 Stage III Hypopharyngeal Carcinoma AJCC v7 9 65189 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 65190 -NCIT:C89047 Stage IV Hypopharyngeal Carcinoma AJCC v7 9 65191 -NCIT:C5992 Stage IVA Hypopharyngeal Carcinoma AJCC v7 10 65192 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 65193 -NCIT:C5993 Stage IVB Hypopharyngeal Carcinoma AJCC v7 10 65194 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 65195 -NCIT:C5994 Stage IVC Hypopharyngeal Carcinoma AJCC v7 10 65196 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 65197 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 65198 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 65199 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 65200 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 65201 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 9 65202 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 65203 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 8 65204 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 9 65205 -NCIT:C7398 Malignant Oropharyngeal Neoplasm 6 65206 -NCIT:C173577 Oropharyngeal Lymphoma 7 65207 -NCIT:C173578 Oropharyngeal Hodgkin Lymphoma 8 65208 -NCIT:C173579 Oropharyngeal Non-Hodgkin Lymphoma 8 65209 -NCIT:C188072 Tonsillar Diffuse Large B-Cell Lymphoma 9 65210 -NCIT:C188080 Tonsillar Mantle Cell Lymphoma 9 65211 -NCIT:C5918 Tonsillar Lymphoma 8 65212 -NCIT:C188072 Tonsillar Diffuse Large B-Cell Lymphoma 9 65213 -NCIT:C188080 Tonsillar Mantle Cell Lymphoma 9 65214 -NCIT:C3529 Malignant Soft Palate Neoplasm 7 65215 -NCIT:C35177 Malignant Uvula Neoplasm 8 65216 -NCIT:C8395 Soft Palate Carcinoma 8 65217 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 65218 -NCIT:C6029 Metastatic Malignant Neoplasm in the Oropharynx 7 65219 -NCIT:C9105 Oropharyngeal Carcinoma 7 65220 -NCIT:C132882 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Stage 8 65221 -NCIT:C132883 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Clinical Stage 9 65222 -NCIT:C132885 Clinical Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 65223 -NCIT:C132886 Clinical Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 65224 -NCIT:C132891 Clinical Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 65225 -NCIT:C132893 Clinical Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 65226 -NCIT:C132884 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Pathologic Stage 9 65227 -NCIT:C132898 Pathologic Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 65228 -NCIT:C132899 Pathologic Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 65229 -NCIT:C132900 Pathologic Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 65230 -NCIT:C132901 Pathologic Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 65231 -NCIT:C132994 Oropharyngeal (p16-Negative) Carcinoma by AJCC v8 Stage 8 65232 -NCIT:C132995 Stage 0 Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 65233 -NCIT:C132996 Stage I Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 65234 -NCIT:C132997 Stage II Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 65235 -NCIT:C132998 Stage III Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 65236 -NCIT:C132999 Stage IV Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 65237 -NCIT:C133000 Stage IVA Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 65238 -NCIT:C133001 Stage IVB Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 65239 -NCIT:C133002 Stage IVC Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 65240 -NCIT:C156082 Metastatic Oropharyngeal Carcinoma 8 65241 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 65242 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 65243 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 65244 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 65245 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 9 65246 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 65247 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 65248 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 9 65249 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 65250 -NCIT:C173576 Oropharyngeal Polymorphous Adenocarcinoma 8 65251 -NCIT:C4825 Tonsillar Carcinoma 8 65252 -NCIT:C8183 Tonsillar Squamous Cell Carcinoma 9 65253 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 10 65254 -NCIT:C6241 Oropharyngeal Adenoid Cystic Carcinoma 8 65255 -NCIT:C8051 Recurrent Oropharyngeal Carcinoma 8 65256 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 9 65257 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 10 65258 -NCIT:C8181 Oropharyngeal Squamous Cell Carcinoma 8 65259 -NCIT:C126750 Oropharyngeal Poorly Differentiated Carcinoma 9 65260 -NCIT:C126751 Oropharyngeal Basaloid Carcinoma 9 65261 -NCIT:C147906 Oropharyngeal p16INK4a-Negative Squamous Cell Carcinoma 9 65262 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 9 65263 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 65264 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 65265 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 65266 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 65267 -NCIT:C162787 Resectable Oropharyngeal Squamous Cell Carcinoma 9 65268 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 10 65269 -NCIT:C162833 Unresectable Oropharyngeal Squamous Cell Carcinoma 9 65270 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 10 65271 -NCIT:C173414 Oropharyngeal Human Papillomavirus-Negative Squamous Cell Carcinoma 9 65272 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 65273 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 65274 -NCIT:C68610 Oropharyngeal Undifferentiated Carcinoma 9 65275 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 65276 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 65277 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 65278 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 65279 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 65280 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 65281 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 65282 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 10 65283 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 65284 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 10 65285 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 10 65286 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 10 65287 -NCIT:C8183 Tonsillar Squamous Cell Carcinoma 9 65288 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 10 65289 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 65290 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 65291 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 65292 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 65293 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 9 65294 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 65295 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 9 65296 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 65297 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 65298 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 65299 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 65300 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 65301 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 65302 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 65303 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 65304 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 65305 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 65306 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 9 65307 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 10 65308 -NCIT:C87055 Oropharyngeal Human Papillomavirus-Positive Squamous Cell Carcinoma 9 65309 -NCIT:C8395 Soft Palate Carcinoma 8 65310 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 65311 -NCIT:C90523 Oropharyngeal Carcinoma by AJCC v6 Stage 8 65312 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 9 65313 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 65314 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 9 65315 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 65316 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 65317 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 9 65318 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 65319 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 65320 -NCIT:C8050 Stage III Oropharyngeal Carcinoma AJCC v6 9 65321 -NCIT:C9218 Stage IV Oropharyngeal Carcinoma AJCC v6 9 65322 -NCIT:C91248 Oropharyngeal Carcinoma by AJCC v7 Stage 8 65323 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 9 65324 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 65325 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 9 65326 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 65327 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 65328 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 9 65329 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 65330 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 65331 -NCIT:C89021 Stage III Oropharyngeal Carcinoma AJCC v7 9 65332 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 65333 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 65334 -NCIT:C89023 Stage IV Oropharyngeal Carcinoma AJCC v7 9 65335 -NCIT:C5985 Stage IVA Oropharyngeal Carcinoma AJCC v7 10 65336 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 65337 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 65338 -NCIT:C5986 Stage IVB Oropharyngeal Carcinoma AJCC v7 10 65339 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 65340 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 65341 -NCIT:C5987 Stage IVC Oropharyngeal Carcinoma AJCC v7 10 65342 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 65343 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 65344 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 65345 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 65346 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 65347 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 65348 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 65349 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 65350 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 65351 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 65352 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 65353 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 65354 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 65355 -NCIT:C7546 Metastatic Malignant Neoplasm in the Pharynx 6 65356 -NCIT:C6028 Metastatic Malignant Neoplasm in the Hypopharynx 7 65357 -NCIT:C6029 Metastatic Malignant Neoplasm in the Oropharynx 7 65358 -NCIT:C6030 Metastatic Malignant Neoplasm in the Nasopharynx 7 65359 -NCIT:C9321 Malignant Nasopharyngeal Neoplasm 6 65360 -NCIT:C173357 Nasopharyngeal Lymphoma 7 65361 -NCIT:C173359 Nasopharyngeal Non-Hodgkin Lymphoma 8 65362 -NCIT:C173361 Nasopharyngeal Hodgkin Lymphoma 8 65363 -NCIT:C178522 Nasopharyngeal Melanoma 7 65364 -NCIT:C3871 Nasopharyngeal Carcinoma 7 65365 -NCIT:C132816 Nasopharyngeal Carcinoma by AJCC v8 Stage 8 65366 -NCIT:C132817 Stage I Nasopharyngeal Carcinoma AJCC v8 9 65367 -NCIT:C132818 Stage II Nasopharyngeal Carcinoma AJCC v8 9 65368 -NCIT:C132819 Stage III Nasopharyngeal Carcinoma AJCC v8 9 65369 -NCIT:C132820 Stage IV Nasopharyngeal Carcinoma AJCC v8 9 65370 -NCIT:C132821 Stage IVA Nasopharyngeal Carcinoma AJCC v8 10 65371 -NCIT:C132822 Stage IVB Nasopharyngeal Carcinoma AJCC v8 10 65372 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 9 65373 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 10 65374 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 65375 -NCIT:C148434 Refractory Nasopharyngeal Carcinoma 8 65376 -NCIT:C156079 Metastatic Nasopharyngeal Carcinoma 8 65377 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 65378 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 65379 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 65380 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 65381 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 65382 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 65383 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 9 65384 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 65385 -NCIT:C165176 Unresectable Nasopharyngeal Carcinoma 8 65386 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 9 65387 -NCIT:C167265 Nasopharyngeal Squamous Cell Carcinoma 8 65388 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 65389 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 65390 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 65391 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 65392 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 65393 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 65394 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 9 65395 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 65396 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 65397 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 9 65398 -NCIT:C54360 Nasopharyngeal Basaloid Carcinoma 9 65399 -NCIT:C7373 Nasopharyngeal Nonkeratinizing Carcinoma 9 65400 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 65401 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 65402 -NCIT:C54389 Nasopharyngeal Differentiated Carcinoma 10 65403 -NCIT:C8023 Nasopharyngeal Undifferentiated Carcinoma 10 65404 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 65405 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 11 65406 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 65407 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 65408 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 65409 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 65410 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 11 65411 -NCIT:C7992 Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 65412 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 65413 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 65414 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 65415 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 65416 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 65417 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 65418 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 65419 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 65420 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 65421 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 65422 -NCIT:C173340 Nasopharyngeal Adenoid Cystic Carcinoma 8 65423 -NCIT:C190276 Childhood Nasopharyngeal Carcinoma 8 65424 -NCIT:C54400 Nasopharyngeal Papillary Adenocarcinoma 8 65425 -NCIT:C90522 Nasopharyngeal Carcinoma by AJCC v6 Stage 8 65426 -NCIT:C7395 Stage I Nasopharyngeal Carcinoma AJCC v6 9 65427 -NCIT:C7396 Stage III Nasopharyngeal Carcinoma AJCC v6 9 65428 -NCIT:C7397 Stage IV Nasopharyngeal Carcinoma AJCC v6 9 65429 -NCIT:C7920 Stage II Nasopharyngeal Carcinoma AJCC v6 9 65430 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 9 65431 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 10 65432 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 65433 -NCIT:C91244 Nasopharyngeal Carcinoma by AJCC v7 Stage 8 65434 -NCIT:C88981 Stage I Nasopharyngeal Carcinoma AJCC v7 9 65435 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 65436 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 65437 -NCIT:C88982 Stage II Nasopharyngeal Carcinoma AJCC v7 9 65438 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 65439 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 65440 -NCIT:C88983 Stage III Nasopharyngeal Carcinoma AJCC v7 9 65441 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 65442 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 65443 -NCIT:C88984 Stage IV Nasopharyngeal Carcinoma AJCC v7 9 65444 -NCIT:C5995 Stage IVC Nasopharyngeal Carcinoma AJCC v7 10 65445 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 65446 -NCIT:C5996 Stage IVB Nasopharyngeal Carcinoma AJCC v7 10 65447 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 65448 -NCIT:C5997 Stage IVA Nasopharyngeal Carcinoma AJCC v7 10 65449 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 65450 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 65451 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 65452 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 65453 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 65454 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 65455 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 9 65456 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 10 65457 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 65458 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 8 65459 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 9 65460 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 65461 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 65462 -NCIT:C6030 Metastatic Malignant Neoplasm in the Nasopharynx 7 65463 -NCIT:C9268 Recurrent Malignant Nasopharyngeal Neoplasm 7 65464 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 8 65465 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 9 65466 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 65467 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 65468 -NCIT:C9466 Pharyngeal Carcinoma 6 65469 -NCIT:C102872 Pharyngeal Squamous Cell Carcinoma 7 65470 -NCIT:C167265 Nasopharyngeal Squamous Cell Carcinoma 8 65471 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 65472 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 65473 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 65474 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 65475 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 65476 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 65477 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 9 65478 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 65479 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 65480 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 9 65481 -NCIT:C54360 Nasopharyngeal Basaloid Carcinoma 9 65482 -NCIT:C7373 Nasopharyngeal Nonkeratinizing Carcinoma 9 65483 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 65484 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 65485 -NCIT:C54389 Nasopharyngeal Differentiated Carcinoma 10 65486 -NCIT:C8023 Nasopharyngeal Undifferentiated Carcinoma 10 65487 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 65488 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 11 65489 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 65490 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 65491 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 65492 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 65493 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 11 65494 -NCIT:C7992 Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 65495 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 65496 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 65497 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 65498 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 65499 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 65500 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 65501 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 65502 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 65503 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 65504 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 65505 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 8 65506 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 65507 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 65508 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 65509 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 65510 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 65511 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 65512 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 65513 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 65514 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 65515 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 65516 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 65517 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 65518 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 65519 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 65520 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 65521 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 65522 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 65523 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 8 65524 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 9 65525 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 65526 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 65527 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 9 65528 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 10 65529 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 9 65530 -NCIT:C35693 Posterior Pharyngeal Wall Squamous Cell Carcinoma 8 65531 -NCIT:C4043 Hypopharyngeal Squamous Cell Carcinoma 8 65532 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 9 65533 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 65534 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 65535 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 65536 -NCIT:C172646 Unresectable Hypopharyngeal Squamous Cell Carcinoma 9 65537 -NCIT:C4943 Pyriform Fossa Squamous Cell Carcinoma 9 65538 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 9 65539 -NCIT:C8185 Postcricoid Squamous Cell Carcinoma 9 65540 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 65541 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 65542 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 65543 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 65544 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 65545 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 65546 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 65547 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 9 65548 -NCIT:C8181 Oropharyngeal Squamous Cell Carcinoma 8 65549 -NCIT:C126750 Oropharyngeal Poorly Differentiated Carcinoma 9 65550 -NCIT:C126751 Oropharyngeal Basaloid Carcinoma 9 65551 -NCIT:C147906 Oropharyngeal p16INK4a-Negative Squamous Cell Carcinoma 9 65552 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 9 65553 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 65554 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 65555 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 65556 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 65557 -NCIT:C162787 Resectable Oropharyngeal Squamous Cell Carcinoma 9 65558 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 10 65559 -NCIT:C162833 Unresectable Oropharyngeal Squamous Cell Carcinoma 9 65560 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 10 65561 -NCIT:C173414 Oropharyngeal Human Papillomavirus-Negative Squamous Cell Carcinoma 9 65562 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 65563 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 65564 -NCIT:C68610 Oropharyngeal Undifferentiated Carcinoma 9 65565 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 65566 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 65567 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 65568 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 65569 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 65570 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 65571 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 65572 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 10 65573 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 65574 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 10 65575 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 10 65576 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 10 65577 -NCIT:C8183 Tonsillar Squamous Cell Carcinoma 9 65578 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 10 65579 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 65580 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 65581 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 65582 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 65583 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 9 65584 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 65585 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 9 65586 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 65587 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 65588 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 65589 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 65590 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 65591 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 65592 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 65593 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 65594 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 65595 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 65596 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 9 65597 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 10 65598 -NCIT:C87055 Oropharyngeal Human Papillomavirus-Positive Squamous Cell Carcinoma 9 65599 -NCIT:C132814 Pharyngeal Carcinoma by AJCC v8 Stage 7 65600 -NCIT:C132816 Nasopharyngeal Carcinoma by AJCC v8 Stage 8 65601 -NCIT:C132817 Stage I Nasopharyngeal Carcinoma AJCC v8 9 65602 -NCIT:C132818 Stage II Nasopharyngeal Carcinoma AJCC v8 9 65603 -NCIT:C132819 Stage III Nasopharyngeal Carcinoma AJCC v8 9 65604 -NCIT:C132820 Stage IV Nasopharyngeal Carcinoma AJCC v8 9 65605 -NCIT:C132821 Stage IVA Nasopharyngeal Carcinoma AJCC v8 10 65606 -NCIT:C132822 Stage IVB Nasopharyngeal Carcinoma AJCC v8 10 65607 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 9 65608 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 10 65609 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 65610 -NCIT:C132882 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Stage 8 65611 -NCIT:C132883 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Clinical Stage 9 65612 -NCIT:C132885 Clinical Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 65613 -NCIT:C132886 Clinical Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 65614 -NCIT:C132891 Clinical Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 65615 -NCIT:C132893 Clinical Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 65616 -NCIT:C132884 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Pathologic Stage 9 65617 -NCIT:C132898 Pathologic Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 65618 -NCIT:C132899 Pathologic Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 65619 -NCIT:C132900 Pathologic Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 65620 -NCIT:C132901 Pathologic Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 65621 -NCIT:C132994 Oropharyngeal (p16-Negative) Carcinoma by AJCC v8 Stage 8 65622 -NCIT:C132995 Stage 0 Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 65623 -NCIT:C132996 Stage I Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 65624 -NCIT:C132997 Stage II Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 65625 -NCIT:C132998 Stage III Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 65626 -NCIT:C132999 Stage IV Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 65627 -NCIT:C133000 Stage IVA Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 65628 -NCIT:C133001 Stage IVB Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 65629 -NCIT:C133002 Stage IVC Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 65630 -NCIT:C133003 Hypopharyngeal Carcinoma by AJCC v8 Stage 8 65631 -NCIT:C133005 Stage I Hypopharyngeal Carcinoma AJCC v8 9 65632 -NCIT:C133006 Stage II Hypopharyngeal Carcinoma AJCC v8 9 65633 -NCIT:C133007 Stage III Hypopharyngeal Carcinoma AJCC v8 9 65634 -NCIT:C133008 Stage IV Hypopharyngeal Carcinoma AJCC v8 9 65635 -NCIT:C133009 Stage IVA Hypopharyngeal Carcinoma AJCC v8 10 65636 -NCIT:C133010 Stage IVB Hypopharyngeal Carcinoma AJCC v8 10 65637 -NCIT:C133011 Stage IVC Hypopharyngeal Carcinoma AJCC v8 10 65638 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 9 65639 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 65640 -NCIT:C156080 Metastatic Pharyngeal Carcinoma 7 65641 -NCIT:C156079 Metastatic Nasopharyngeal Carcinoma 8 65642 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 65643 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 65644 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 65645 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 65646 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 65647 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 65648 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 9 65649 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 65650 -NCIT:C156081 Metastatic Hypopharyngeal Carcinoma 8 65651 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 65652 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 65653 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 65654 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 9 65655 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 65656 -NCIT:C156082 Metastatic Oropharyngeal Carcinoma 8 65657 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 65658 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 65659 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 65660 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 65661 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 9 65662 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 65663 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 65664 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 9 65665 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 65666 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 8 65667 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 65668 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 9 65669 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 65670 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 65671 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 9 65672 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 65673 -NCIT:C170784 Advanced Pharyngeal Carcinoma 8 65674 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 9 65675 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 65676 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 65677 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 65678 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 65679 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 65680 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 9 65681 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 65682 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 8 65683 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 65684 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 65685 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 65686 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 65687 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 65688 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 65689 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 65690 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 65691 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 65692 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 65693 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 65694 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 65695 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 65696 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 65697 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 65698 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 65699 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 65700 -NCIT:C35692 Posterior Pharyngeal Wall Carcinoma 7 65701 -NCIT:C35693 Posterior Pharyngeal Wall Squamous Cell Carcinoma 8 65702 -NCIT:C3871 Nasopharyngeal Carcinoma 7 65703 -NCIT:C132816 Nasopharyngeal Carcinoma by AJCC v8 Stage 8 65704 -NCIT:C132817 Stage I Nasopharyngeal Carcinoma AJCC v8 9 65705 -NCIT:C132818 Stage II Nasopharyngeal Carcinoma AJCC v8 9 65706 -NCIT:C132819 Stage III Nasopharyngeal Carcinoma AJCC v8 9 65707 -NCIT:C132820 Stage IV Nasopharyngeal Carcinoma AJCC v8 9 65708 -NCIT:C132821 Stage IVA Nasopharyngeal Carcinoma AJCC v8 10 65709 -NCIT:C132822 Stage IVB Nasopharyngeal Carcinoma AJCC v8 10 65710 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 9 65711 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 10 65712 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 65713 -NCIT:C148434 Refractory Nasopharyngeal Carcinoma 8 65714 -NCIT:C156079 Metastatic Nasopharyngeal Carcinoma 8 65715 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 65716 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 65717 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 65718 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 65719 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 65720 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 65721 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 9 65722 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 65723 -NCIT:C165176 Unresectable Nasopharyngeal Carcinoma 8 65724 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 9 65725 -NCIT:C167265 Nasopharyngeal Squamous Cell Carcinoma 8 65726 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 65727 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 65728 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 65729 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 65730 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 65731 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 65732 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 9 65733 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 65734 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 65735 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 9 65736 -NCIT:C54360 Nasopharyngeal Basaloid Carcinoma 9 65737 -NCIT:C7373 Nasopharyngeal Nonkeratinizing Carcinoma 9 65738 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 65739 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 65740 -NCIT:C54389 Nasopharyngeal Differentiated Carcinoma 10 65741 -NCIT:C8023 Nasopharyngeal Undifferentiated Carcinoma 10 65742 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 65743 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 11 65744 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 65745 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 65746 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 65747 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 65748 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 11 65749 -NCIT:C7992 Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 65750 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 65751 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 65752 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 65753 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 65754 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 65755 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 65756 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 65757 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 65758 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 65759 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 65760 -NCIT:C173340 Nasopharyngeal Adenoid Cystic Carcinoma 8 65761 -NCIT:C190276 Childhood Nasopharyngeal Carcinoma 8 65762 -NCIT:C54400 Nasopharyngeal Papillary Adenocarcinoma 8 65763 -NCIT:C90522 Nasopharyngeal Carcinoma by AJCC v6 Stage 8 65764 -NCIT:C7395 Stage I Nasopharyngeal Carcinoma AJCC v6 9 65765 -NCIT:C7396 Stage III Nasopharyngeal Carcinoma AJCC v6 9 65766 -NCIT:C7397 Stage IV Nasopharyngeal Carcinoma AJCC v6 9 65767 -NCIT:C7920 Stage II Nasopharyngeal Carcinoma AJCC v6 9 65768 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 9 65769 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 10 65770 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 65771 -NCIT:C91244 Nasopharyngeal Carcinoma by AJCC v7 Stage 8 65772 -NCIT:C88981 Stage I Nasopharyngeal Carcinoma AJCC v7 9 65773 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 65774 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 65775 -NCIT:C88982 Stage II Nasopharyngeal Carcinoma AJCC v7 9 65776 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 65777 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 65778 -NCIT:C88983 Stage III Nasopharyngeal Carcinoma AJCC v7 9 65779 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 65780 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 65781 -NCIT:C88984 Stage IV Nasopharyngeal Carcinoma AJCC v7 9 65782 -NCIT:C5995 Stage IVC Nasopharyngeal Carcinoma AJCC v7 10 65783 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 65784 -NCIT:C5996 Stage IVB Nasopharyngeal Carcinoma AJCC v7 10 65785 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 65786 -NCIT:C5997 Stage IVA Nasopharyngeal Carcinoma AJCC v7 10 65787 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 65788 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 65789 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 65790 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 65791 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 65792 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 65793 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 9 65794 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 10 65795 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 65796 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 8 65797 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 9 65798 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 65799 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 65800 -NCIT:C4942 Stage 0 Pharyngeal Cancer 7 65801 -NCIT:C132995 Stage 0 Oropharyngeal (p16-Negative) Carcinoma AJCC v8 8 65802 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 8 65803 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 65804 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 8 65805 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 9 65806 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 9 65807 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 8 65808 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 9 65809 -NCIT:C5103 Recurrent Pharyngeal Carcinoma 7 65810 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 8 65811 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 9 65812 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 65813 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 65814 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 9 65815 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 10 65816 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 9 65817 -NCIT:C8051 Recurrent Oropharyngeal Carcinoma 8 65818 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 9 65819 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 10 65820 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 8 65821 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 9 65822 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 65823 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 65824 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 8 65825 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 9 65826 -NCIT:C5818 Pharyngeal Adenoid Cystic Carcinoma 7 65827 -NCIT:C173340 Nasopharyngeal Adenoid Cystic Carcinoma 8 65828 -NCIT:C6241 Oropharyngeal Adenoid Cystic Carcinoma 8 65829 -NCIT:C8768 Stage I Pharyngeal Cancer 7 65830 -NCIT:C132817 Stage I Nasopharyngeal Carcinoma AJCC v8 8 65831 -NCIT:C132885 Clinical Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 8 65832 -NCIT:C132898 Pathologic Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 8 65833 -NCIT:C132996 Stage I Oropharyngeal (p16-Negative) Carcinoma AJCC v8 8 65834 -NCIT:C133005 Stage I Hypopharyngeal Carcinoma AJCC v8 8 65835 -NCIT:C7395 Stage I Nasopharyngeal Carcinoma AJCC v6 8 65836 -NCIT:C8038 Stage I Hypopharyngeal Carcinoma AJCC v6 8 65837 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 8 65838 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 65839 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 65840 -NCIT:C88981 Stage I Nasopharyngeal Carcinoma AJCC v7 8 65841 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 65842 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 9 65843 -NCIT:C89045 Stage I Hypopharyngeal Carcinoma AJCC v7 8 65844 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 65845 -NCIT:C8769 Stage II Pharyngeal Cancer 7 65846 -NCIT:C132818 Stage II Nasopharyngeal Carcinoma AJCC v8 8 65847 -NCIT:C132886 Clinical Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 8 65848 -NCIT:C132899 Pathologic Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 8 65849 -NCIT:C132997 Stage II Oropharyngeal (p16-Negative) Carcinoma AJCC v8 8 65850 -NCIT:C133006 Stage II Hypopharyngeal Carcinoma AJCC v8 8 65851 -NCIT:C7920 Stage II Nasopharyngeal Carcinoma AJCC v6 8 65852 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 8 65853 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 65854 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 8 65855 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 65856 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 65857 -NCIT:C88982 Stage II Nasopharyngeal Carcinoma AJCC v7 8 65858 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 65859 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 9 65860 -NCIT:C8770 Stage III Pharyngeal Cancer 7 65861 -NCIT:C132819 Stage III Nasopharyngeal Carcinoma AJCC v8 8 65862 -NCIT:C132891 Clinical Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 8 65863 -NCIT:C132900 Pathologic Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 8 65864 -NCIT:C132998 Stage III Oropharyngeal (p16-Negative) Carcinoma AJCC v8 8 65865 -NCIT:C133007 Stage III Hypopharyngeal Carcinoma AJCC v8 8 65866 -NCIT:C7396 Stage III Nasopharyngeal Carcinoma AJCC v6 8 65867 -NCIT:C8040 Stage III Hypopharyngeal Carcinoma AJCC v6 8 65868 -NCIT:C8050 Stage III Oropharyngeal Carcinoma AJCC v6 8 65869 -NCIT:C88983 Stage III Nasopharyngeal Carcinoma AJCC v7 8 65870 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 65871 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 9 65872 -NCIT:C89021 Stage III Oropharyngeal Carcinoma AJCC v7 8 65873 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 9 65874 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 65875 -NCIT:C89046 Stage III Hypopharyngeal Carcinoma AJCC v7 8 65876 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 65877 -NCIT:C8771 Stage IV Pharyngeal Cancer 7 65878 -NCIT:C132820 Stage IV Nasopharyngeal Carcinoma AJCC v8 8 65879 -NCIT:C132821 Stage IVA Nasopharyngeal Carcinoma AJCC v8 9 65880 -NCIT:C132822 Stage IVB Nasopharyngeal Carcinoma AJCC v8 9 65881 -NCIT:C132893 Clinical Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 8 65882 -NCIT:C132901 Pathologic Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 8 65883 -NCIT:C132999 Stage IV Oropharyngeal (p16-Negative) Carcinoma AJCC v8 8 65884 -NCIT:C133000 Stage IVA Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 65885 -NCIT:C133001 Stage IVB Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 65886 -NCIT:C133002 Stage IVC Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 65887 -NCIT:C133008 Stage IV Hypopharyngeal Carcinoma AJCC v8 8 65888 -NCIT:C133009 Stage IVA Hypopharyngeal Carcinoma AJCC v8 9 65889 -NCIT:C133010 Stage IVB Hypopharyngeal Carcinoma AJCC v8 9 65890 -NCIT:C133011 Stage IVC Hypopharyngeal Carcinoma AJCC v8 9 65891 -NCIT:C6000 Stage IVA Pharyngeal Cancer 8 65892 -NCIT:C132821 Stage IVA Nasopharyngeal Carcinoma AJCC v8 9 65893 -NCIT:C133000 Stage IVA Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 65894 -NCIT:C133009 Stage IVA Hypopharyngeal Carcinoma AJCC v8 9 65895 -NCIT:C5985 Stage IVA Oropharyngeal Carcinoma AJCC v7 9 65896 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 65897 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 65898 -NCIT:C5992 Stage IVA Hypopharyngeal Carcinoma AJCC v7 9 65899 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 65900 -NCIT:C5997 Stage IVA Nasopharyngeal Carcinoma AJCC v7 9 65901 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 65902 -NCIT:C6001 Stage IVB Pharyngeal Cancer 8 65903 -NCIT:C132822 Stage IVB Nasopharyngeal Carcinoma AJCC v8 9 65904 -NCIT:C133001 Stage IVB Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 65905 -NCIT:C133010 Stage IVB Hypopharyngeal Carcinoma AJCC v8 9 65906 -NCIT:C5986 Stage IVB Oropharyngeal Carcinoma AJCC v7 9 65907 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 65908 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 65909 -NCIT:C5993 Stage IVB Hypopharyngeal Carcinoma AJCC v7 9 65910 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 65911 -NCIT:C5996 Stage IVB Nasopharyngeal Carcinoma AJCC v7 9 65912 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 65913 -NCIT:C6002 Stage IVC Pharyngeal Cancer 8 65914 -NCIT:C133002 Stage IVC Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 65915 -NCIT:C133011 Stage IVC Hypopharyngeal Carcinoma AJCC v8 9 65916 -NCIT:C5987 Stage IVC Oropharyngeal Carcinoma AJCC v7 9 65917 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 65918 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 65919 -NCIT:C5994 Stage IVC Hypopharyngeal Carcinoma AJCC v7 9 65920 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 65921 -NCIT:C5995 Stage IVC Nasopharyngeal Carcinoma AJCC v7 9 65922 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 65923 -NCIT:C7397 Stage IV Nasopharyngeal Carcinoma AJCC v6 8 65924 -NCIT:C8533 Stage IV Hypopharyngeal Carcinoma AJCC v6 8 65925 -NCIT:C88984 Stage IV Nasopharyngeal Carcinoma AJCC v7 8 65926 -NCIT:C5995 Stage IVC Nasopharyngeal Carcinoma AJCC v7 9 65927 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 65928 -NCIT:C5996 Stage IVB Nasopharyngeal Carcinoma AJCC v7 9 65929 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 65930 -NCIT:C5997 Stage IVA Nasopharyngeal Carcinoma AJCC v7 9 65931 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 65932 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 65933 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 65934 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 65935 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 65936 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 9 65937 -NCIT:C89023 Stage IV Oropharyngeal Carcinoma AJCC v7 8 65938 -NCIT:C5985 Stage IVA Oropharyngeal Carcinoma AJCC v7 9 65939 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 65940 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 65941 -NCIT:C5986 Stage IVB Oropharyngeal Carcinoma AJCC v7 9 65942 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 65943 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 65944 -NCIT:C5987 Stage IVC Oropharyngeal Carcinoma AJCC v7 9 65945 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 65946 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 65947 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 9 65948 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 65949 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 65950 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 65951 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 65952 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 65953 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 65954 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 65955 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 65956 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 65957 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 65958 -NCIT:C89047 Stage IV Hypopharyngeal Carcinoma AJCC v7 8 65959 -NCIT:C5992 Stage IVA Hypopharyngeal Carcinoma AJCC v7 9 65960 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 65961 -NCIT:C5993 Stage IVB Hypopharyngeal Carcinoma AJCC v7 9 65962 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 65963 -NCIT:C5994 Stage IVC Hypopharyngeal Carcinoma AJCC v7 9 65964 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 65965 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 65966 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 65967 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 65968 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 65969 -NCIT:C9218 Stage IV Oropharyngeal Carcinoma AJCC v6 8 65970 -NCIT:C90525 Pharyngeal Carcinoma by AJCC v6 Stage 7 65971 -NCIT:C90522 Nasopharyngeal Carcinoma by AJCC v6 Stage 8 65972 -NCIT:C7395 Stage I Nasopharyngeal Carcinoma AJCC v6 9 65973 -NCIT:C7396 Stage III Nasopharyngeal Carcinoma AJCC v6 9 65974 -NCIT:C7397 Stage IV Nasopharyngeal Carcinoma AJCC v6 9 65975 -NCIT:C7920 Stage II Nasopharyngeal Carcinoma AJCC v6 9 65976 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 9 65977 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 10 65978 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 65979 -NCIT:C90523 Oropharyngeal Carcinoma by AJCC v6 Stage 8 65980 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 9 65981 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 65982 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 9 65983 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 65984 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 65985 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 9 65986 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 65987 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 65988 -NCIT:C8050 Stage III Oropharyngeal Carcinoma AJCC v6 9 65989 -NCIT:C9218 Stage IV Oropharyngeal Carcinoma AJCC v6 9 65990 -NCIT:C90524 Hypopharyngeal Carcinoma by AJCC v6 Stage 8 65991 -NCIT:C8038 Stage I Hypopharyngeal Carcinoma AJCC v6 9 65992 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 9 65993 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 65994 -NCIT:C8040 Stage III Hypopharyngeal Carcinoma AJCC v6 9 65995 -NCIT:C8533 Stage IV Hypopharyngeal Carcinoma AJCC v6 9 65996 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 9 65997 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 65998 -NCIT:C9105 Oropharyngeal Carcinoma 7 65999 -NCIT:C132882 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Stage 8 66000 -NCIT:C132883 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Clinical Stage 9 66001 -NCIT:C132885 Clinical Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 66002 -NCIT:C132886 Clinical Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 66003 -NCIT:C132891 Clinical Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 66004 -NCIT:C132893 Clinical Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 66005 -NCIT:C132884 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Pathologic Stage 9 66006 -NCIT:C132898 Pathologic Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 66007 -NCIT:C132899 Pathologic Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 66008 -NCIT:C132900 Pathologic Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 66009 -NCIT:C132901 Pathologic Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 66010 -NCIT:C132994 Oropharyngeal (p16-Negative) Carcinoma by AJCC v8 Stage 8 66011 -NCIT:C132995 Stage 0 Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 66012 -NCIT:C132996 Stage I Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 66013 -NCIT:C132997 Stage II Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 66014 -NCIT:C132998 Stage III Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 66015 -NCIT:C132999 Stage IV Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 66016 -NCIT:C133000 Stage IVA Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 66017 -NCIT:C133001 Stage IVB Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 66018 -NCIT:C133002 Stage IVC Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 66019 -NCIT:C156082 Metastatic Oropharyngeal Carcinoma 8 66020 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 66021 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 66022 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 66023 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 66024 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 9 66025 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 66026 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 66027 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 9 66028 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 66029 -NCIT:C173576 Oropharyngeal Polymorphous Adenocarcinoma 8 66030 -NCIT:C4825 Tonsillar Carcinoma 8 66031 -NCIT:C8183 Tonsillar Squamous Cell Carcinoma 9 66032 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 10 66033 -NCIT:C6241 Oropharyngeal Adenoid Cystic Carcinoma 8 66034 -NCIT:C8051 Recurrent Oropharyngeal Carcinoma 8 66035 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 9 66036 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 10 66037 -NCIT:C8181 Oropharyngeal Squamous Cell Carcinoma 8 66038 -NCIT:C126750 Oropharyngeal Poorly Differentiated Carcinoma 9 66039 -NCIT:C126751 Oropharyngeal Basaloid Carcinoma 9 66040 -NCIT:C147906 Oropharyngeal p16INK4a-Negative Squamous Cell Carcinoma 9 66041 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 9 66042 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 66043 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 66044 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 66045 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 66046 -NCIT:C162787 Resectable Oropharyngeal Squamous Cell Carcinoma 9 66047 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 10 66048 -NCIT:C162833 Unresectable Oropharyngeal Squamous Cell Carcinoma 9 66049 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 10 66050 -NCIT:C173414 Oropharyngeal Human Papillomavirus-Negative Squamous Cell Carcinoma 9 66051 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 66052 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 66053 -NCIT:C68610 Oropharyngeal Undifferentiated Carcinoma 9 66054 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 66055 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 66056 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 66057 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 66058 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 66059 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 66060 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 66061 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 10 66062 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 66063 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 10 66064 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 10 66065 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 10 66066 -NCIT:C8183 Tonsillar Squamous Cell Carcinoma 9 66067 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 10 66068 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 66069 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 66070 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 66071 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 66072 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 9 66073 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 66074 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 9 66075 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 66076 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 66077 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 66078 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 66079 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 66080 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 66081 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 66082 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 66083 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 66084 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 66085 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 9 66086 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 10 66087 -NCIT:C87055 Oropharyngeal Human Papillomavirus-Positive Squamous Cell Carcinoma 9 66088 -NCIT:C8395 Soft Palate Carcinoma 8 66089 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 66090 -NCIT:C90523 Oropharyngeal Carcinoma by AJCC v6 Stage 8 66091 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 9 66092 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 66093 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 9 66094 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 66095 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 66096 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 9 66097 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 66098 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 66099 -NCIT:C8050 Stage III Oropharyngeal Carcinoma AJCC v6 9 66100 -NCIT:C9218 Stage IV Oropharyngeal Carcinoma AJCC v6 9 66101 -NCIT:C91248 Oropharyngeal Carcinoma by AJCC v7 Stage 8 66102 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 9 66103 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 66104 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 9 66105 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 66106 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 66107 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 9 66108 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 66109 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 66110 -NCIT:C89021 Stage III Oropharyngeal Carcinoma AJCC v7 9 66111 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 66112 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 66113 -NCIT:C89023 Stage IV Oropharyngeal Carcinoma AJCC v7 9 66114 -NCIT:C5985 Stage IVA Oropharyngeal Carcinoma AJCC v7 10 66115 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 66116 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 66117 -NCIT:C5986 Stage IVB Oropharyngeal Carcinoma AJCC v7 10 66118 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 66119 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 66120 -NCIT:C5987 Stage IVC Oropharyngeal Carcinoma AJCC v7 10 66121 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 66122 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 66123 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 66124 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 66125 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 66126 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 66127 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 66128 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 66129 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 66130 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 66131 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 66132 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 66133 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 66134 -NCIT:C91252 Pharyngeal Carcinoma by AJCC v7 Stage 7 66135 -NCIT:C91244 Nasopharyngeal Carcinoma by AJCC v7 Stage 8 66136 -NCIT:C88981 Stage I Nasopharyngeal Carcinoma AJCC v7 9 66137 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 66138 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 66139 -NCIT:C88982 Stage II Nasopharyngeal Carcinoma AJCC v7 9 66140 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 66141 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 66142 -NCIT:C88983 Stage III Nasopharyngeal Carcinoma AJCC v7 9 66143 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 66144 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 66145 -NCIT:C88984 Stage IV Nasopharyngeal Carcinoma AJCC v7 9 66146 -NCIT:C5995 Stage IVC Nasopharyngeal Carcinoma AJCC v7 10 66147 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 66148 -NCIT:C5996 Stage IVB Nasopharyngeal Carcinoma AJCC v7 10 66149 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 66150 -NCIT:C5997 Stage IVA Nasopharyngeal Carcinoma AJCC v7 10 66151 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 66152 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 66153 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 66154 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 66155 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 66156 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 66157 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 9 66158 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 10 66159 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 66160 -NCIT:C91248 Oropharyngeal Carcinoma by AJCC v7 Stage 8 66161 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 9 66162 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 66163 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 9 66164 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 66165 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 66166 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 9 66167 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 66168 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 66169 -NCIT:C89021 Stage III Oropharyngeal Carcinoma AJCC v7 9 66170 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 66171 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 66172 -NCIT:C89023 Stage IV Oropharyngeal Carcinoma AJCC v7 9 66173 -NCIT:C5985 Stage IVA Oropharyngeal Carcinoma AJCC v7 10 66174 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 66175 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 66176 -NCIT:C5986 Stage IVB Oropharyngeal Carcinoma AJCC v7 10 66177 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 66178 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 66179 -NCIT:C5987 Stage IVC Oropharyngeal Carcinoma AJCC v7 10 66180 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 66181 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 66182 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 66183 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 66184 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 66185 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 66186 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 66187 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 66188 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 66189 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 66190 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 66191 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 66192 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 66193 -NCIT:C91251 Hypopharyngeal Carcinoma by AJCC v7 Stage 8 66194 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 9 66195 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 66196 -NCIT:C89045 Stage I Hypopharyngeal Carcinoma AJCC v7 9 66197 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 66198 -NCIT:C89046 Stage III Hypopharyngeal Carcinoma AJCC v7 9 66199 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 66200 -NCIT:C89047 Stage IV Hypopharyngeal Carcinoma AJCC v7 9 66201 -NCIT:C5992 Stage IVA Hypopharyngeal Carcinoma AJCC v7 10 66202 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 66203 -NCIT:C5993 Stage IVB Hypopharyngeal Carcinoma AJCC v7 10 66204 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 66205 -NCIT:C5994 Stage IVC Hypopharyngeal Carcinoma AJCC v7 10 66206 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 66207 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 66208 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 66209 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 66210 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 66211 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 9 66212 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 66213 -NCIT:C9465 Hypopharyngeal Carcinoma 7 66214 -NCIT:C133003 Hypopharyngeal Carcinoma by AJCC v8 Stage 8 66215 -NCIT:C133005 Stage I Hypopharyngeal Carcinoma AJCC v8 9 66216 -NCIT:C133006 Stage II Hypopharyngeal Carcinoma AJCC v8 9 66217 -NCIT:C133007 Stage III Hypopharyngeal Carcinoma AJCC v8 9 66218 -NCIT:C133008 Stage IV Hypopharyngeal Carcinoma AJCC v8 9 66219 -NCIT:C133009 Stage IVA Hypopharyngeal Carcinoma AJCC v8 10 66220 -NCIT:C133010 Stage IVB Hypopharyngeal Carcinoma AJCC v8 10 66221 -NCIT:C133011 Stage IVC Hypopharyngeal Carcinoma AJCC v8 10 66222 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 9 66223 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 66224 -NCIT:C156081 Metastatic Hypopharyngeal Carcinoma 8 66225 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 66226 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 66227 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 66228 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 9 66229 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 66230 -NCIT:C4043 Hypopharyngeal Squamous Cell Carcinoma 8 66231 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 9 66232 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 66233 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 66234 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 66235 -NCIT:C172646 Unresectable Hypopharyngeal Squamous Cell Carcinoma 9 66236 -NCIT:C4943 Pyriform Fossa Squamous Cell Carcinoma 9 66237 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 9 66238 -NCIT:C8185 Postcricoid Squamous Cell Carcinoma 9 66239 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 66240 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 66241 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 66242 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 66243 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 66244 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 66245 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 66246 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 9 66247 -NCIT:C6700 Pyriform Fossa Carcinoma 8 66248 -NCIT:C4943 Pyriform Fossa Squamous Cell Carcinoma 9 66249 -NCIT:C8595 Postcricoid Carcinoma 8 66250 -NCIT:C8185 Postcricoid Squamous Cell Carcinoma 9 66251 -NCIT:C90524 Hypopharyngeal Carcinoma by AJCC v6 Stage 8 66252 -NCIT:C8038 Stage I Hypopharyngeal Carcinoma AJCC v6 9 66253 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 9 66254 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 66255 -NCIT:C8040 Stage III Hypopharyngeal Carcinoma AJCC v6 9 66256 -NCIT:C8533 Stage IV Hypopharyngeal Carcinoma AJCC v6 9 66257 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 9 66258 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 66259 -NCIT:C91251 Hypopharyngeal Carcinoma by AJCC v7 Stage 8 66260 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 9 66261 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 66262 -NCIT:C89045 Stage I Hypopharyngeal Carcinoma AJCC v7 9 66263 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 66264 -NCIT:C89046 Stage III Hypopharyngeal Carcinoma AJCC v7 9 66265 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 66266 -NCIT:C89047 Stage IV Hypopharyngeal Carcinoma AJCC v7 9 66267 -NCIT:C5992 Stage IVA Hypopharyngeal Carcinoma AJCC v7 10 66268 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 66269 -NCIT:C5993 Stage IVB Hypopharyngeal Carcinoma AJCC v7 10 66270 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 66271 -NCIT:C5994 Stage IVC Hypopharyngeal Carcinoma AJCC v7 10 66272 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 66273 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 66274 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 66275 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 66276 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 66277 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 9 66278 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 66279 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 8 66280 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 9 66281 -NCIT:C8528 Metastatic Malignant Neoplasm in the Neck 5 66282 -NCIT:C173585 Neck Carcinoma of Unknown Primary 6 66283 -NCIT:C7713 Neck Squamous Cell Carcinoma of Unknown Primary 7 66284 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 8 66285 -NCIT:C6031 Metastatic Malignant Neoplasm in the Larynx 6 66286 -NCIT:C7509 Metastatic Malignant Neoplasm in the Thyroid Gland 6 66287 -NCIT:C7546 Metastatic Malignant Neoplasm in the Pharynx 6 66288 -NCIT:C6028 Metastatic Malignant Neoplasm in the Hypopharynx 7 66289 -NCIT:C6029 Metastatic Malignant Neoplasm in the Oropharynx 7 66290 -NCIT:C6030 Metastatic Malignant Neoplasm in the Nasopharynx 7 66291 -NCIT:C8557 Metastatic Malignant Neoplasm in the Parathyroid Glands 6 66292 -NCIT:C9322 Malignant Parathyroid Gland Neoplasm 5 66293 -NCIT:C4906 Parathyroid Gland Carcinoma 6 66294 -NCIT:C118819 Childhood Parathyroid Gland Carcinoma 7 66295 -NCIT:C7826 Localized Parathyroid Gland Carcinoma 7 66296 -NCIT:C7828 Recurrent Parathyroid Gland Carcinoma 7 66297 -NCIT:C9044 Metastatic Parathyroid Gland Carcinoma 7 66298 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 66299 -NCIT:C8557 Metastatic Malignant Neoplasm in the Parathyroid Glands 6 66300 -NCIT:C9316 Malignant Oral Neoplasm 4 66301 -NCIT:C150530 Refractory Malignant Oral Neoplasm 5 66302 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 6 66303 -NCIT:C7485 Malignant Lip Neoplasm 5 66304 -NCIT:C3490 Lip Carcinoma 6 66305 -NCIT:C156088 Metastatic Lip Carcinoma 7 66306 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 66307 -NCIT:C4042 Lip Squamous Cell Carcinoma 7 66308 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 66309 -NCIT:C4588 Stage 0 Lip Cancer AJCC v6 and v7 7 66310 -NCIT:C5893 Stage 0 Lip Basal Cell Carcinoma AJCC v6 and v7 8 66311 -NCIT:C5876 Stage I Lip Cancer AJCC v6 and v7 7 66312 -NCIT:C8197 Stage I Lip Basal Cell Carcinoma 8 66313 -NCIT:C5877 Stage II Lip Cancer AJCC v6 and v7 7 66314 -NCIT:C8201 Stage II Lip Basal Cell Carcinoma 8 66315 -NCIT:C5878 Stage III Lip Cancer AJCC v6 and v7 7 66316 -NCIT:C8205 Stage III Lip Basal Cell Carcinoma 8 66317 -NCIT:C5879 Stage IV Lip Cancer AJCC v6 and v7 7 66318 -NCIT:C5880 Stage IVA Lip Cancer AJCC v6 and v7 8 66319 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 9 66320 -NCIT:C5881 Stage IVB Lip Cancer AJCC v6 and v7 8 66321 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 9 66322 -NCIT:C5882 Stage IVC Lip Cancer AJCC v6 and v7 8 66323 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 9 66324 -NCIT:C8209 Stage IV Lip Basal Cell Carcinoma 8 66325 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 9 66326 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 9 66327 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 9 66328 -NCIT:C8014 Lip Basal Cell Carcinoma 7 66329 -NCIT:C5893 Stage 0 Lip Basal Cell Carcinoma AJCC v6 and v7 8 66330 -NCIT:C8197 Stage I Lip Basal Cell Carcinoma 8 66331 -NCIT:C8201 Stage II Lip Basal Cell Carcinoma 8 66332 -NCIT:C8205 Stage III Lip Basal Cell Carcinoma 8 66333 -NCIT:C8209 Stage IV Lip Basal Cell Carcinoma 8 66334 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 9 66335 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 9 66336 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 9 66337 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 8 66338 -NCIT:C8542 Metastatic Malignant Neoplasm in the Lip 6 66339 -NCIT:C9262 Recurrent Malignant Oral Neoplasm 5 66340 -NCIT:C8037 Recurrent Lip and Oral Cavity Carcinoma 6 66341 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 66342 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 66343 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 66344 -NCIT:C6076 Recurrent Oral Cavity Carcinoma 7 66345 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 66346 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 66347 -NCIT:C8215 Recurrent Oral Cavity Mucoepidermoid Carcinoma 8 66348 -NCIT:C8216 Recurrent Oral Cavity Adenoid Cystic Carcinoma 8 66349 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 7 66350 -NCIT:C9314 Malignant Oral Cavity Neoplasm 5 66351 -NCIT:C173489 Oral Cavity Myeloid Sarcoma 6 66352 -NCIT:C3530 Malignant Palate Neoplasm 6 66353 -NCIT:C3528 Malignant Hard Palate Neoplasm 7 66354 -NCIT:C8394 Hard Palate Carcinoma 8 66355 -NCIT:C6213 Hard Palate Adenoid Cystic Carcinoma 9 66356 -NCIT:C6214 Hard Palate Mucoepidermoid Carcinoma 9 66357 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 66358 -NCIT:C3529 Malignant Soft Palate Neoplasm 7 66359 -NCIT:C35177 Malignant Uvula Neoplasm 8 66360 -NCIT:C8395 Soft Palate Carcinoma 8 66361 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 66362 -NCIT:C6749 Palate Kaposi Sarcoma 7 66363 -NCIT:C8463 Palate Carcinoma 7 66364 -NCIT:C4649 Palate Squamous Cell Carcinoma 8 66365 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 66366 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 66367 -NCIT:C8394 Hard Palate Carcinoma 8 66368 -NCIT:C6213 Hard Palate Adenoid Cystic Carcinoma 9 66369 -NCIT:C6214 Hard Palate Mucoepidermoid Carcinoma 9 66370 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 66371 -NCIT:C8395 Soft Palate Carcinoma 8 66372 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 66373 -NCIT:C4812 Malignant Odontogenic Neoplasm 6 66374 -NCIT:C173720 Odontogenic Carcinoma 7 66375 -NCIT:C173733 Sclerosing Odontogenic Carcinoma 8 66376 -NCIT:C4311 Ghost Cell Odontogenic Carcinoma 8 66377 -NCIT:C54295 Primary Intraosseous Squamous Cell Carcinoma 8 66378 -NCIT:C54303 Primary Intraosseous Squamous Cell Carcinoma Derived From Keratocystic Odontogenic Tumor 9 66379 -NCIT:C7491 Primary Intraosseous Squamous Cell Carcinoma-Solid Type 9 66380 -NCIT:C7498 Keratinizing Primary Intraosseous Squamous Cell Carcinoma-Solid Type 10 66381 -NCIT:C7499 Non-Keratinizing Primary Intraosseous Squamous Cell Carcinoma -Solid Type 10 66382 -NCIT:C7500 Primary Intraosseous Squamous Cell Carcinoma Derived From Odontogenic Cyst 9 66383 -NCIT:C54300 Clear Cell Odontogenic Carcinoma 8 66384 -NCIT:C7492 Ameloblastic Carcinoma 8 66385 -NCIT:C7493 Ameloblastic Carcinoma-Primary Type 9 66386 -NCIT:C7496 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated) 9 66387 -NCIT:C54298 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated), Intraosseous 10 66388 -NCIT:C54299 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated), Peripheral 10 66389 -NCIT:C7497 Ameloblastic Carcinoma Derived From Odontogenic Cyst 9 66390 -NCIT:C173735 Odontogenic Carcinosarcoma 7 66391 -NCIT:C173738 Odontogenic Sarcoma 7 66392 -NCIT:C173739 Ameloblastic Fibrodentinosarcoma 8 66393 -NCIT:C173740 Ameloblastic Fibroodontosarcoma 8 66394 -NCIT:C4317 Ameloblastic Fibrosarcoma 8 66395 -NCIT:C5915 Oral Cavity Mucosal Melanoma 6 66396 -NCIT:C5916 Oral Cavity Sarcoma 6 66397 -NCIT:C173481 Oral Cavity Soft Tissue Sarcoma 7 66398 -NCIT:C156274 Tongue Sarcoma 8 66399 -NCIT:C156273 Tongue Alveolar Soft Part Sarcoma' 9 66400 -NCIT:C173404 Tongue Liposarcoma 9 66401 -NCIT:C173477 Oral Cavity Kaposi Sarcoma 8 66402 -NCIT:C6749 Palate Kaposi Sarcoma 9 66403 -NCIT:C173478 Oral Cavity Low Grade Myofibroblastic Sarcoma 8 66404 -NCIT:C173738 Odontogenic Sarcoma 7 66405 -NCIT:C173739 Ameloblastic Fibrodentinosarcoma 8 66406 -NCIT:C173740 Ameloblastic Fibroodontosarcoma 8 66407 -NCIT:C4317 Ameloblastic Fibrosarcoma 8 66408 -NCIT:C7404 Malignant Tonsillar Neoplasm 6 66409 -NCIT:C4825 Tonsillar Carcinoma 7 66410 -NCIT:C8183 Tonsillar Squamous Cell Carcinoma 8 66411 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 9 66412 -NCIT:C5918 Tonsillar Lymphoma 7 66413 -NCIT:C188072 Tonsillar Diffuse Large B-Cell Lymphoma 8 66414 -NCIT:C188080 Tonsillar Mantle Cell Lymphoma 8 66415 -NCIT:C8990 Oral Cavity Carcinoma 6 66416 -NCIT:C156087 Metastatic Oral Cavity Carcinoma 7 66417 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 66418 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 66419 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 66420 -NCIT:C156089 Metastatic Oral Cavity Adenoid Cystic Carcinoma 8 66421 -NCIT:C156090 Metastatic Oral Cavity Mucoepidermoid Carcinoma 8 66422 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 8 66423 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 66424 -NCIT:C173720 Odontogenic Carcinoma 7 66425 -NCIT:C173733 Sclerosing Odontogenic Carcinoma 8 66426 -NCIT:C4311 Ghost Cell Odontogenic Carcinoma 8 66427 -NCIT:C54295 Primary Intraosseous Squamous Cell Carcinoma 8 66428 -NCIT:C54303 Primary Intraosseous Squamous Cell Carcinoma Derived From Keratocystic Odontogenic Tumor 9 66429 -NCIT:C7491 Primary Intraosseous Squamous Cell Carcinoma-Solid Type 9 66430 -NCIT:C7498 Keratinizing Primary Intraosseous Squamous Cell Carcinoma-Solid Type 10 66431 -NCIT:C7499 Non-Keratinizing Primary Intraosseous Squamous Cell Carcinoma -Solid Type 10 66432 -NCIT:C7500 Primary Intraosseous Squamous Cell Carcinoma Derived From Odontogenic Cyst 9 66433 -NCIT:C54300 Clear Cell Odontogenic Carcinoma 8 66434 -NCIT:C7492 Ameloblastic Carcinoma 8 66435 -NCIT:C7493 Ameloblastic Carcinoma-Primary Type 9 66436 -NCIT:C7496 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated) 9 66437 -NCIT:C54298 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated), Intraosseous 10 66438 -NCIT:C54299 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated), Peripheral 10 66439 -NCIT:C7497 Ameloblastic Carcinoma Derived From Odontogenic Cyst 9 66440 -NCIT:C4587 Stage 0 Oral Cavity Cancer AJCC v6 and v7 7 66441 -NCIT:C6052 Stage 0 Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 66442 -NCIT:C4824 Tongue Carcinoma 7 66443 -NCIT:C171028 Tongue Adenoid Cystic Carcinoma 8 66444 -NCIT:C5991 Posterior Tongue Adenoid Cystic Carcinoma 9 66445 -NCIT:C6251 Anterior Tongue Adenoid Cystic Carcinoma 9 66446 -NCIT:C173807 Tongue Adenosquamous Carcinoma 8 66447 -NCIT:C181160 Tongue Mucoepidermoid Carcinoma 8 66448 -NCIT:C5990 Posterior Tongue Mucoepidermoid Carcinoma 9 66449 -NCIT:C6250 Anterior Tongue Mucoepidermoid Carcinoma 9 66450 -NCIT:C4648 Tongue Squamous Cell Carcinoma 8 66451 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 66452 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 66453 -NCIT:C6249 Anterior Tongue Carcinoma 8 66454 -NCIT:C6250 Anterior Tongue Mucoepidermoid Carcinoma 9 66455 -NCIT:C6251 Anterior Tongue Adenoid Cystic Carcinoma 9 66456 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 66457 -NCIT:C8407 Posterior Tongue Carcinoma 8 66458 -NCIT:C5990 Posterior Tongue Mucoepidermoid Carcinoma 9 66459 -NCIT:C5991 Posterior Tongue Adenoid Cystic Carcinoma 9 66460 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 66461 -NCIT:C4833 Oral Cavity Squamous Cell Carcinoma 7 66462 -NCIT:C129857 Gingival Squamous Cell Carcinoma 8 66463 -NCIT:C129289 Gingival Spindle Cell Carcinoma 9 66464 -NCIT:C8171 Lower Gingival Squamous Cell Carcinoma 9 66465 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 10 66466 -NCIT:C8172 Retromolar Trigone Squamous Cell Carcinoma 9 66467 -NCIT:C8173 Upper Gingival Squamous Cell Carcinoma 9 66468 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 10 66469 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 8 66470 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 66471 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 66472 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 66473 -NCIT:C170774 Alveolar Ridge Squamous Cell Carcinoma 8 66474 -NCIT:C170775 Upper Alveolar Ridge Squamous Cell Carcinoma 9 66475 -NCIT:C170776 Lower Alveolar Ridge Squamous Cell Carcinoma 9 66476 -NCIT:C172644 Unresectable Oral Cavity Squamous Cell Carcinoma 8 66477 -NCIT:C4040 Buccal Mucosa Squamous Cell Carcinoma 8 66478 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 9 66479 -NCIT:C4041 Floor of Mouth Squamous Cell Carcinoma 8 66480 -NCIT:C129873 Floor of Mouth Basaloid Squamous Cell Carcinoma 9 66481 -NCIT:C4648 Tongue Squamous Cell Carcinoma 8 66482 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 66483 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 66484 -NCIT:C4649 Palate Squamous Cell Carcinoma 8 66485 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 66486 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 66487 -NCIT:C54295 Primary Intraosseous Squamous Cell Carcinoma 8 66488 -NCIT:C54303 Primary Intraosseous Squamous Cell Carcinoma Derived From Keratocystic Odontogenic Tumor 9 66489 -NCIT:C7491 Primary Intraosseous Squamous Cell Carcinoma-Solid Type 9 66490 -NCIT:C7498 Keratinizing Primary Intraosseous Squamous Cell Carcinoma-Solid Type 10 66491 -NCIT:C7499 Non-Keratinizing Primary Intraosseous Squamous Cell Carcinoma -Solid Type 10 66492 -NCIT:C7500 Primary Intraosseous Squamous Cell Carcinoma Derived From Odontogenic Cyst 9 66493 -NCIT:C6052 Stage 0 Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 66494 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 66495 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 66496 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 66497 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 66498 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 66499 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 66500 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 66501 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 66502 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 66503 -NCIT:C8174 Oral Cavity Verrucous Carcinoma 8 66504 -NCIT:C179894 Oral Cavity Carcinoma Cuniculatum 9 66505 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 9 66506 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 9 66507 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 9 66508 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 66509 -NCIT:C5883 Stage I Oral Cavity Cancer AJCC v6 and v7 7 66510 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 66511 -NCIT:C8199 Stage I Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 66512 -NCIT:C8200 Stage I Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 66513 -NCIT:C5884 Stage II Oral Cavity Cancer AJCC v6 and v7 7 66514 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 66515 -NCIT:C8203 Stage II Oral Cavity Mucoepidermoid Carcinoma 8 66516 -NCIT:C8204 Stage II Oral Cavity Adenoid Cystic Carcinoma 8 66517 -NCIT:C5885 Stage III Oral Cavity Cancer AJCC v6 and v7 7 66518 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 66519 -NCIT:C8207 Stage III Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 66520 -NCIT:C8208 Stage III Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 66521 -NCIT:C5886 Stage IV Oral Cavity Cancer AJCC v6 and v7 7 66522 -NCIT:C5887 Stage IVA Oral Cavity Cancer AJCC v6 and v7 8 66523 -NCIT:C5863 Stage IVA Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 66524 -NCIT:C5868 Stage IVA Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 66525 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 66526 -NCIT:C5888 Stage IVB Oral Cavity Cancer AJCC v6 and v7 8 66527 -NCIT:C5864 Stage IVB Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 66528 -NCIT:C5867 Stage IVB Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 66529 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 66530 -NCIT:C5889 Stage IVC Oral Cavity Cancer AJCC v6 and v7 8 66531 -NCIT:C5865 Stage IVC Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 66532 -NCIT:C5866 Stage IVC Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 66533 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 66534 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 66535 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 66536 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 66537 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 66538 -NCIT:C8211 Stage IV Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 66539 -NCIT:C5866 Stage IVC Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 66540 -NCIT:C5867 Stage IVB Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 66541 -NCIT:C5868 Stage IVA Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 66542 -NCIT:C8212 Stage IV Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 66543 -NCIT:C5863 Stage IVA Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 66544 -NCIT:C5864 Stage IVB Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 66545 -NCIT:C5865 Stage IVC Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 66546 -NCIT:C5914 Oral Cavity Adenocarcinoma 7 66547 -NCIT:C6076 Recurrent Oral Cavity Carcinoma 7 66548 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 66549 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 66550 -NCIT:C8215 Recurrent Oral Cavity Mucoepidermoid Carcinoma 8 66551 -NCIT:C8216 Recurrent Oral Cavity Adenoid Cystic Carcinoma 8 66552 -NCIT:C7721 Gingival Carcinoma 7 66553 -NCIT:C129857 Gingival Squamous Cell Carcinoma 8 66554 -NCIT:C129289 Gingival Spindle Cell Carcinoma 9 66555 -NCIT:C8171 Lower Gingival Squamous Cell Carcinoma 9 66556 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 10 66557 -NCIT:C8172 Retromolar Trigone Squamous Cell Carcinoma 9 66558 -NCIT:C8173 Upper Gingival Squamous Cell Carcinoma 9 66559 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 10 66560 -NCIT:C8392 Upper Gingival Carcinoma 8 66561 -NCIT:C8173 Upper Gingival Squamous Cell Carcinoma 9 66562 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 10 66563 -NCIT:C8393 Lower Gingival Carcinoma 8 66564 -NCIT:C8171 Lower Gingival Squamous Cell Carcinoma 9 66565 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 10 66566 -NCIT:C8177 Oral Cavity Mucoepidermoid Carcinoma 7 66567 -NCIT:C156090 Metastatic Oral Cavity Mucoepidermoid Carcinoma 8 66568 -NCIT:C181160 Tongue Mucoepidermoid Carcinoma 8 66569 -NCIT:C5990 Posterior Tongue Mucoepidermoid Carcinoma 9 66570 -NCIT:C6250 Anterior Tongue Mucoepidermoid Carcinoma 9 66571 -NCIT:C6214 Hard Palate Mucoepidermoid Carcinoma 8 66572 -NCIT:C8178 Floor of Mouth Mucoepidermoid Carcinoma 8 66573 -NCIT:C8199 Stage I Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 66574 -NCIT:C8203 Stage II Oral Cavity Mucoepidermoid Carcinoma 8 66575 -NCIT:C8207 Stage III Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 66576 -NCIT:C8211 Stage IV Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 66577 -NCIT:C5866 Stage IVC Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 66578 -NCIT:C5867 Stage IVB Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 66579 -NCIT:C5868 Stage IVA Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 66580 -NCIT:C8215 Recurrent Oral Cavity Mucoepidermoid Carcinoma 8 66581 -NCIT:C8179 Oral Cavity Adenoid Cystic Carcinoma 7 66582 -NCIT:C156089 Metastatic Oral Cavity Adenoid Cystic Carcinoma 8 66583 -NCIT:C171028 Tongue Adenoid Cystic Carcinoma 8 66584 -NCIT:C5991 Posterior Tongue Adenoid Cystic Carcinoma 9 66585 -NCIT:C6251 Anterior Tongue Adenoid Cystic Carcinoma 9 66586 -NCIT:C6213 Hard Palate Adenoid Cystic Carcinoma 8 66587 -NCIT:C8180 Floor of Mouth Adenoid Cystic Carcinoma 8 66588 -NCIT:C8200 Stage I Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 66589 -NCIT:C8204 Stage II Oral Cavity Adenoid Cystic Carcinoma 8 66590 -NCIT:C8208 Stage III Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 66591 -NCIT:C8212 Stage IV Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 66592 -NCIT:C5863 Stage IVA Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 66593 -NCIT:C5864 Stage IVB Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 66594 -NCIT:C5865 Stage IVC Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 66595 -NCIT:C8216 Recurrent Oral Cavity Adenoid Cystic Carcinoma 8 66596 -NCIT:C8463 Palate Carcinoma 7 66597 -NCIT:C4649 Palate Squamous Cell Carcinoma 8 66598 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 66599 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 66600 -NCIT:C8394 Hard Palate Carcinoma 8 66601 -NCIT:C6213 Hard Palate Adenoid Cystic Carcinoma 9 66602 -NCIT:C6214 Hard Palate Mucoepidermoid Carcinoma 9 66603 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 66604 -NCIT:C8395 Soft Palate Carcinoma 8 66605 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 66606 -NCIT:C9319 Floor of the Mouth Carcinoma 7 66607 -NCIT:C4041 Floor of Mouth Squamous Cell Carcinoma 8 66608 -NCIT:C129873 Floor of Mouth Basaloid Squamous Cell Carcinoma 9 66609 -NCIT:C8178 Floor of Mouth Mucoepidermoid Carcinoma 8 66610 -NCIT:C8180 Floor of Mouth Adenoid Cystic Carcinoma 8 66611 -NCIT:C9317 Malignant Gingival Neoplasm 6 66612 -NCIT:C7721 Gingival Carcinoma 7 66613 -NCIT:C129857 Gingival Squamous Cell Carcinoma 8 66614 -NCIT:C129289 Gingival Spindle Cell Carcinoma 9 66615 -NCIT:C8171 Lower Gingival Squamous Cell Carcinoma 9 66616 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 10 66617 -NCIT:C8172 Retromolar Trigone Squamous Cell Carcinoma 9 66618 -NCIT:C8173 Upper Gingival Squamous Cell Carcinoma 9 66619 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 10 66620 -NCIT:C8392 Upper Gingival Carcinoma 8 66621 -NCIT:C8173 Upper Gingival Squamous Cell Carcinoma 9 66622 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 10 66623 -NCIT:C8393 Lower Gingival Carcinoma 8 66624 -NCIT:C8171 Lower Gingival Squamous Cell Carcinoma 9 66625 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 10 66626 -NCIT:C9318 Malignant Floor of the Mouth Neoplasm 6 66627 -NCIT:C9319 Floor of the Mouth Carcinoma 7 66628 -NCIT:C4041 Floor of Mouth Squamous Cell Carcinoma 8 66629 -NCIT:C129873 Floor of Mouth Basaloid Squamous Cell Carcinoma 9 66630 -NCIT:C8178 Floor of Mouth Mucoepidermoid Carcinoma 8 66631 -NCIT:C8180 Floor of Mouth Adenoid Cystic Carcinoma 8 66632 -NCIT:C9320 Malignant Buccal Mucosa Neoplasm 6 66633 -NCIT:C4040 Buccal Mucosa Squamous Cell Carcinoma 7 66634 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 8 66635 -NCIT:C9345 Malignant Tongue Neoplasm 6 66636 -NCIT:C156274 Tongue Sarcoma 7 66637 -NCIT:C156273 Tongue Alveolar Soft Part Sarcoma' 8 66638 -NCIT:C173404 Tongue Liposarcoma 8 66639 -NCIT:C3524 Malignant Posterior Tongue Neoplasm 7 66640 -NCIT:C8407 Posterior Tongue Carcinoma 8 66641 -NCIT:C5990 Posterior Tongue Mucoepidermoid Carcinoma 9 66642 -NCIT:C5991 Posterior Tongue Adenoid Cystic Carcinoma 9 66643 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 66644 -NCIT:C4824 Tongue Carcinoma 7 66645 -NCIT:C171028 Tongue Adenoid Cystic Carcinoma 8 66646 -NCIT:C5991 Posterior Tongue Adenoid Cystic Carcinoma 9 66647 -NCIT:C6251 Anterior Tongue Adenoid Cystic Carcinoma 9 66648 -NCIT:C173807 Tongue Adenosquamous Carcinoma 8 66649 -NCIT:C181160 Tongue Mucoepidermoid Carcinoma 8 66650 -NCIT:C5990 Posterior Tongue Mucoepidermoid Carcinoma 9 66651 -NCIT:C6250 Anterior Tongue Mucoepidermoid Carcinoma 9 66652 -NCIT:C4648 Tongue Squamous Cell Carcinoma 8 66653 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 66654 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 66655 -NCIT:C6249 Anterior Tongue Carcinoma 8 66656 -NCIT:C6250 Anterior Tongue Mucoepidermoid Carcinoma 9 66657 -NCIT:C6251 Anterior Tongue Adenoid Cystic Carcinoma 9 66658 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 66659 -NCIT:C8407 Posterior Tongue Carcinoma 8 66660 -NCIT:C5990 Posterior Tongue Mucoepidermoid Carcinoma 9 66661 -NCIT:C5991 Posterior Tongue Adenoid Cystic Carcinoma 9 66662 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 66663 -NCIT:C6061 Malignant Anterior Tongue Neoplasm 7 66664 -NCIT:C6249 Anterior Tongue Carcinoma 8 66665 -NCIT:C6250 Anterior Tongue Mucoepidermoid Carcinoma 9 66666 -NCIT:C6251 Anterior Tongue Adenoid Cystic Carcinoma 9 66667 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 66668 -NCIT:C9315 Lip and Oral Cavity Carcinoma 5 66669 -NCIT:C132728 Lip and Oral Cavity Cancer by AJCC v8 Stage 6 66670 -NCIT:C132729 Stage I Lip and Oral Cavity Cancer AJCC v8 7 66671 -NCIT:C132730 Stage II Lip and Oral Cavity Cancer AJCC v8 7 66672 -NCIT:C132731 Stage III Lip and Oral Cavity Cancer AJCC v8 7 66673 -NCIT:C132732 Stage IV Lip and Oral Cavity Cancer AJCC v8 7 66674 -NCIT:C132733 Stage IVA Lip and Oral Cavity Cancer AJCC v8 8 66675 -NCIT:C132734 Stage IVB Lip and Oral Cavity Cancer AJCC v8 8 66676 -NCIT:C132735 Stage IVC Lip and Oral Cavity Cancer AJCC v8 8 66677 -NCIT:C132736 Lip and Oral Cavity Cancer by AJCC v6 and v7 Stage 6 66678 -NCIT:C7939 Stage 0 Lip and Oral Cavity Cancer AJCC v6 and v7 7 66679 -NCIT:C4587 Stage 0 Oral Cavity Cancer AJCC v6 and v7 8 66680 -NCIT:C6052 Stage 0 Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 66681 -NCIT:C4588 Stage 0 Lip Cancer AJCC v6 and v7 8 66682 -NCIT:C5893 Stage 0 Lip Basal Cell Carcinoma AJCC v6 and v7 9 66683 -NCIT:C8033 Stage I Lip and Oral Cavity Cancer AJCC v6 and v7 7 66684 -NCIT:C115057 Stage I Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 66685 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 66686 -NCIT:C5876 Stage I Lip Cancer AJCC v6 and v7 8 66687 -NCIT:C8197 Stage I Lip Basal Cell Carcinoma 9 66688 -NCIT:C5883 Stage I Oral Cavity Cancer AJCC v6 and v7 8 66689 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 66690 -NCIT:C8199 Stage I Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 66691 -NCIT:C8200 Stage I Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 66692 -NCIT:C8034 Stage II Lip and Oral Cavity Cancer AJCC v6 and v7 7 66693 -NCIT:C115058 Stage II Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 66694 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 66695 -NCIT:C5877 Stage II Lip Cancer AJCC v6 and v7 8 66696 -NCIT:C8201 Stage II Lip Basal Cell Carcinoma 9 66697 -NCIT:C5884 Stage II Oral Cavity Cancer AJCC v6 and v7 8 66698 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 66699 -NCIT:C8203 Stage II Oral Cavity Mucoepidermoid Carcinoma 9 66700 -NCIT:C8204 Stage II Oral Cavity Adenoid Cystic Carcinoma 9 66701 -NCIT:C8035 Stage III Lip and Oral Cavity Cancer AJCC v6 and v7 7 66702 -NCIT:C115059 Stage III Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 66703 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 66704 -NCIT:C5878 Stage III Lip Cancer AJCC v6 and v7 8 66705 -NCIT:C8205 Stage III Lip Basal Cell Carcinoma 9 66706 -NCIT:C5885 Stage III Oral Cavity Cancer AJCC v6 and v7 8 66707 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 66708 -NCIT:C8207 Stage III Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 66709 -NCIT:C8208 Stage III Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 66710 -NCIT:C8036 Stage IV Lip and Oral Cavity Cancer AJCC v6 and v7 7 66711 -NCIT:C115060 Stage IV Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 66712 -NCIT:C115061 Stage IVA Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 66713 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 66714 -NCIT:C115062 Stage IVB Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 66715 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 66716 -NCIT:C115063 Stage IVC Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 66717 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 66718 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 66719 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 66720 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 66721 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 66722 -NCIT:C5879 Stage IV Lip Cancer AJCC v6 and v7 8 66723 -NCIT:C5880 Stage IVA Lip Cancer AJCC v6 and v7 9 66724 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 10 66725 -NCIT:C5881 Stage IVB Lip Cancer AJCC v6 and v7 9 66726 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 10 66727 -NCIT:C5882 Stage IVC Lip Cancer AJCC v6 and v7 9 66728 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 10 66729 -NCIT:C8209 Stage IV Lip Basal Cell Carcinoma 9 66730 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 10 66731 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 10 66732 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 10 66733 -NCIT:C5886 Stage IV Oral Cavity Cancer AJCC v6 and v7 8 66734 -NCIT:C5887 Stage IVA Oral Cavity Cancer AJCC v6 and v7 9 66735 -NCIT:C5863 Stage IVA Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 66736 -NCIT:C5868 Stage IVA Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 66737 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 66738 -NCIT:C5888 Stage IVB Oral Cavity Cancer AJCC v6 and v7 9 66739 -NCIT:C5864 Stage IVB Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 66740 -NCIT:C5867 Stage IVB Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 66741 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 66742 -NCIT:C5889 Stage IVC Oral Cavity Cancer AJCC v6 and v7 9 66743 -NCIT:C5865 Stage IVC Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 66744 -NCIT:C5866 Stage IVC Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 66745 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 66746 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 66747 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 66748 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 66749 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 66750 -NCIT:C8211 Stage IV Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 66751 -NCIT:C5866 Stage IVC Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 66752 -NCIT:C5867 Stage IVB Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 66753 -NCIT:C5868 Stage IVA Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 66754 -NCIT:C8212 Stage IV Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 66755 -NCIT:C5863 Stage IVA Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 66756 -NCIT:C5864 Stage IVB Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 66757 -NCIT:C5865 Stage IVC Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 66758 -NCIT:C87301 Stage IVA Lip and Oral Cavity Cancer AJCC v6 and v7 8 66759 -NCIT:C115061 Stage IVA Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 66760 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 66761 -NCIT:C5880 Stage IVA Lip Cancer AJCC v6 and v7 9 66762 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 10 66763 -NCIT:C5887 Stage IVA Oral Cavity Cancer AJCC v6 and v7 9 66764 -NCIT:C5863 Stage IVA Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 66765 -NCIT:C5868 Stage IVA Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 66766 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 66767 -NCIT:C87302 Stage IVB Lip and Oral Cavity Cancer AJCC v6 and v7 8 66768 -NCIT:C115062 Stage IVB Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 66769 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 66770 -NCIT:C5881 Stage IVB Lip Cancer AJCC v6 and v7 9 66771 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 10 66772 -NCIT:C5888 Stage IVB Oral Cavity Cancer AJCC v6 and v7 9 66773 -NCIT:C5864 Stage IVB Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 66774 -NCIT:C5867 Stage IVB Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 66775 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 66776 -NCIT:C87303 Stage IVC Lip and Oral Cavity Cancer AJCC v6 and v7 8 66777 -NCIT:C115063 Stage IVC Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 66778 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 66779 -NCIT:C5882 Stage IVC Lip Cancer AJCC v6 and v7 9 66780 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 10 66781 -NCIT:C5889 Stage IVC Oral Cavity Cancer AJCC v6 and v7 9 66782 -NCIT:C5865 Stage IVC Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 66783 -NCIT:C5866 Stage IVC Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 66784 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 66785 -NCIT:C156086 Metastatic Lip and Oral Cavity Carcinoma 6 66786 -NCIT:C156087 Metastatic Oral Cavity Carcinoma 7 66787 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 66788 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 66789 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 66790 -NCIT:C156089 Metastatic Oral Cavity Adenoid Cystic Carcinoma 8 66791 -NCIT:C156090 Metastatic Oral Cavity Mucoepidermoid Carcinoma 8 66792 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 8 66793 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 66794 -NCIT:C156088 Metastatic Lip Carcinoma 7 66795 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 66796 -NCIT:C165562 Locally Advanced Lip and Oral Cavity Carcinoma 7 66797 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 8 66798 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 66799 -NCIT:C3490 Lip Carcinoma 6 66800 -NCIT:C156088 Metastatic Lip Carcinoma 7 66801 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 66802 -NCIT:C4042 Lip Squamous Cell Carcinoma 7 66803 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 66804 -NCIT:C4588 Stage 0 Lip Cancer AJCC v6 and v7 7 66805 -NCIT:C5893 Stage 0 Lip Basal Cell Carcinoma AJCC v6 and v7 8 66806 -NCIT:C5876 Stage I Lip Cancer AJCC v6 and v7 7 66807 -NCIT:C8197 Stage I Lip Basal Cell Carcinoma 8 66808 -NCIT:C5877 Stage II Lip Cancer AJCC v6 and v7 7 66809 -NCIT:C8201 Stage II Lip Basal Cell Carcinoma 8 66810 -NCIT:C5878 Stage III Lip Cancer AJCC v6 and v7 7 66811 -NCIT:C8205 Stage III Lip Basal Cell Carcinoma 8 66812 -NCIT:C5879 Stage IV Lip Cancer AJCC v6 and v7 7 66813 -NCIT:C5880 Stage IVA Lip Cancer AJCC v6 and v7 8 66814 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 9 66815 -NCIT:C5881 Stage IVB Lip Cancer AJCC v6 and v7 8 66816 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 9 66817 -NCIT:C5882 Stage IVC Lip Cancer AJCC v6 and v7 8 66818 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 9 66819 -NCIT:C8209 Stage IV Lip Basal Cell Carcinoma 8 66820 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 9 66821 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 9 66822 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 9 66823 -NCIT:C8014 Lip Basal Cell Carcinoma 7 66824 -NCIT:C5893 Stage 0 Lip Basal Cell Carcinoma AJCC v6 and v7 8 66825 -NCIT:C8197 Stage I Lip Basal Cell Carcinoma 8 66826 -NCIT:C8201 Stage II Lip Basal Cell Carcinoma 8 66827 -NCIT:C8205 Stage III Lip Basal Cell Carcinoma 8 66828 -NCIT:C8209 Stage IV Lip Basal Cell Carcinoma 8 66829 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 9 66830 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 9 66831 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 9 66832 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 8 66833 -NCIT:C42690 Lip and Oral Cavity Squamous Cell Carcinoma 6 66834 -NCIT:C115057 Stage I Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 66835 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 66836 -NCIT:C115058 Stage II Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 66837 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 66838 -NCIT:C115059 Stage III Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 66839 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 66840 -NCIT:C115060 Stage IV Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 66841 -NCIT:C115061 Stage IVA Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 66842 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 66843 -NCIT:C115062 Stage IVB Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 66844 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 66845 -NCIT:C115063 Stage IVC Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 66846 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 66847 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 66848 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 66849 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 66850 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 66851 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 66852 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 66853 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 66854 -NCIT:C4042 Lip Squamous Cell Carcinoma 7 66855 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 66856 -NCIT:C4833 Oral Cavity Squamous Cell Carcinoma 7 66857 -NCIT:C129857 Gingival Squamous Cell Carcinoma 8 66858 -NCIT:C129289 Gingival Spindle Cell Carcinoma 9 66859 -NCIT:C8171 Lower Gingival Squamous Cell Carcinoma 9 66860 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 10 66861 -NCIT:C8172 Retromolar Trigone Squamous Cell Carcinoma 9 66862 -NCIT:C8173 Upper Gingival Squamous Cell Carcinoma 9 66863 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 10 66864 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 8 66865 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 66866 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 66867 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 66868 -NCIT:C170774 Alveolar Ridge Squamous Cell Carcinoma 8 66869 -NCIT:C170775 Upper Alveolar Ridge Squamous Cell Carcinoma 9 66870 -NCIT:C170776 Lower Alveolar Ridge Squamous Cell Carcinoma 9 66871 -NCIT:C172644 Unresectable Oral Cavity Squamous Cell Carcinoma 8 66872 -NCIT:C4040 Buccal Mucosa Squamous Cell Carcinoma 8 66873 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 9 66874 -NCIT:C4041 Floor of Mouth Squamous Cell Carcinoma 8 66875 -NCIT:C129873 Floor of Mouth Basaloid Squamous Cell Carcinoma 9 66876 -NCIT:C4648 Tongue Squamous Cell Carcinoma 8 66877 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 66878 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 66879 -NCIT:C4649 Palate Squamous Cell Carcinoma 8 66880 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 66881 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 66882 -NCIT:C54295 Primary Intraosseous Squamous Cell Carcinoma 8 66883 -NCIT:C54303 Primary Intraosseous Squamous Cell Carcinoma Derived From Keratocystic Odontogenic Tumor 9 66884 -NCIT:C7491 Primary Intraosseous Squamous Cell Carcinoma-Solid Type 9 66885 -NCIT:C7498 Keratinizing Primary Intraosseous Squamous Cell Carcinoma-Solid Type 10 66886 -NCIT:C7499 Non-Keratinizing Primary Intraosseous Squamous Cell Carcinoma -Solid Type 10 66887 -NCIT:C7500 Primary Intraosseous Squamous Cell Carcinoma Derived From Odontogenic Cyst 9 66888 -NCIT:C6052 Stage 0 Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 66889 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 66890 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 66891 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 66892 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 66893 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 66894 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 66895 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 66896 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 66897 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 66898 -NCIT:C8174 Oral Cavity Verrucous Carcinoma 8 66899 -NCIT:C179894 Oral Cavity Carcinoma Cuniculatum 9 66900 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 9 66901 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 9 66902 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 9 66903 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 66904 -NCIT:C8037 Recurrent Lip and Oral Cavity Carcinoma 6 66905 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 66906 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 66907 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 66908 -NCIT:C6076 Recurrent Oral Cavity Carcinoma 7 66909 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 66910 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 66911 -NCIT:C8215 Recurrent Oral Cavity Mucoepidermoid Carcinoma 8 66912 -NCIT:C8216 Recurrent Oral Cavity Adenoid Cystic Carcinoma 8 66913 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 7 66914 -NCIT:C8990 Oral Cavity Carcinoma 6 66915 -NCIT:C156087 Metastatic Oral Cavity Carcinoma 7 66916 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 66917 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 66918 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 66919 -NCIT:C156089 Metastatic Oral Cavity Adenoid Cystic Carcinoma 8 66920 -NCIT:C156090 Metastatic Oral Cavity Mucoepidermoid Carcinoma 8 66921 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 8 66922 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 66923 -NCIT:C173720 Odontogenic Carcinoma 7 66924 -NCIT:C173733 Sclerosing Odontogenic Carcinoma 8 66925 -NCIT:C4311 Ghost Cell Odontogenic Carcinoma 8 66926 -NCIT:C54295 Primary Intraosseous Squamous Cell Carcinoma 8 66927 -NCIT:C54303 Primary Intraosseous Squamous Cell Carcinoma Derived From Keratocystic Odontogenic Tumor 9 66928 -NCIT:C7491 Primary Intraosseous Squamous Cell Carcinoma-Solid Type 9 66929 -NCIT:C7498 Keratinizing Primary Intraosseous Squamous Cell Carcinoma-Solid Type 10 66930 -NCIT:C7499 Non-Keratinizing Primary Intraosseous Squamous Cell Carcinoma -Solid Type 10 66931 -NCIT:C7500 Primary Intraosseous Squamous Cell Carcinoma Derived From Odontogenic Cyst 9 66932 -NCIT:C54300 Clear Cell Odontogenic Carcinoma 8 66933 -NCIT:C7492 Ameloblastic Carcinoma 8 66934 -NCIT:C7493 Ameloblastic Carcinoma-Primary Type 9 66935 -NCIT:C7496 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated) 9 66936 -NCIT:C54298 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated), Intraosseous 10 66937 -NCIT:C54299 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated), Peripheral 10 66938 -NCIT:C7497 Ameloblastic Carcinoma Derived From Odontogenic Cyst 9 66939 -NCIT:C4587 Stage 0 Oral Cavity Cancer AJCC v6 and v7 7 66940 -NCIT:C6052 Stage 0 Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 66941 -NCIT:C4824 Tongue Carcinoma 7 66942 -NCIT:C171028 Tongue Adenoid Cystic Carcinoma 8 66943 -NCIT:C5991 Posterior Tongue Adenoid Cystic Carcinoma 9 66944 -NCIT:C6251 Anterior Tongue Adenoid Cystic Carcinoma 9 66945 -NCIT:C173807 Tongue Adenosquamous Carcinoma 8 66946 -NCIT:C181160 Tongue Mucoepidermoid Carcinoma 8 66947 -NCIT:C5990 Posterior Tongue Mucoepidermoid Carcinoma 9 66948 -NCIT:C6250 Anterior Tongue Mucoepidermoid Carcinoma 9 66949 -NCIT:C4648 Tongue Squamous Cell Carcinoma 8 66950 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 66951 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 66952 -NCIT:C6249 Anterior Tongue Carcinoma 8 66953 -NCIT:C6250 Anterior Tongue Mucoepidermoid Carcinoma 9 66954 -NCIT:C6251 Anterior Tongue Adenoid Cystic Carcinoma 9 66955 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 66956 -NCIT:C8407 Posterior Tongue Carcinoma 8 66957 -NCIT:C5990 Posterior Tongue Mucoepidermoid Carcinoma 9 66958 -NCIT:C5991 Posterior Tongue Adenoid Cystic Carcinoma 9 66959 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 66960 -NCIT:C4833 Oral Cavity Squamous Cell Carcinoma 7 66961 -NCIT:C129857 Gingival Squamous Cell Carcinoma 8 66962 -NCIT:C129289 Gingival Spindle Cell Carcinoma 9 66963 -NCIT:C8171 Lower Gingival Squamous Cell Carcinoma 9 66964 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 10 66965 -NCIT:C8172 Retromolar Trigone Squamous Cell Carcinoma 9 66966 -NCIT:C8173 Upper Gingival Squamous Cell Carcinoma 9 66967 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 10 66968 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 8 66969 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 66970 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 66971 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 66972 -NCIT:C170774 Alveolar Ridge Squamous Cell Carcinoma 8 66973 -NCIT:C170775 Upper Alveolar Ridge Squamous Cell Carcinoma 9 66974 -NCIT:C170776 Lower Alveolar Ridge Squamous Cell Carcinoma 9 66975 -NCIT:C172644 Unresectable Oral Cavity Squamous Cell Carcinoma 8 66976 -NCIT:C4040 Buccal Mucosa Squamous Cell Carcinoma 8 66977 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 9 66978 -NCIT:C4041 Floor of Mouth Squamous Cell Carcinoma 8 66979 -NCIT:C129873 Floor of Mouth Basaloid Squamous Cell Carcinoma 9 66980 -NCIT:C4648 Tongue Squamous Cell Carcinoma 8 66981 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 66982 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 66983 -NCIT:C4649 Palate Squamous Cell Carcinoma 8 66984 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 66985 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 66986 -NCIT:C54295 Primary Intraosseous Squamous Cell Carcinoma 8 66987 -NCIT:C54303 Primary Intraosseous Squamous Cell Carcinoma Derived From Keratocystic Odontogenic Tumor 9 66988 -NCIT:C7491 Primary Intraosseous Squamous Cell Carcinoma-Solid Type 9 66989 -NCIT:C7498 Keratinizing Primary Intraosseous Squamous Cell Carcinoma-Solid Type 10 66990 -NCIT:C7499 Non-Keratinizing Primary Intraosseous Squamous Cell Carcinoma -Solid Type 10 66991 -NCIT:C7500 Primary Intraosseous Squamous Cell Carcinoma Derived From Odontogenic Cyst 9 66992 -NCIT:C6052 Stage 0 Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 66993 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 66994 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 66995 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 66996 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 66997 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 66998 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 66999 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 67000 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 67001 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 67002 -NCIT:C8174 Oral Cavity Verrucous Carcinoma 8 67003 -NCIT:C179894 Oral Cavity Carcinoma Cuniculatum 9 67004 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 9 67005 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 9 67006 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 9 67007 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 67008 -NCIT:C5883 Stage I Oral Cavity Cancer AJCC v6 and v7 7 67009 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 67010 -NCIT:C8199 Stage I Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 67011 -NCIT:C8200 Stage I Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 67012 -NCIT:C5884 Stage II Oral Cavity Cancer AJCC v6 and v7 7 67013 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 67014 -NCIT:C8203 Stage II Oral Cavity Mucoepidermoid Carcinoma 8 67015 -NCIT:C8204 Stage II Oral Cavity Adenoid Cystic Carcinoma 8 67016 -NCIT:C5885 Stage III Oral Cavity Cancer AJCC v6 and v7 7 67017 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 67018 -NCIT:C8207 Stage III Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 67019 -NCIT:C8208 Stage III Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 67020 -NCIT:C5886 Stage IV Oral Cavity Cancer AJCC v6 and v7 7 67021 -NCIT:C5887 Stage IVA Oral Cavity Cancer AJCC v6 and v7 8 67022 -NCIT:C5863 Stage IVA Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 67023 -NCIT:C5868 Stage IVA Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 67024 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 67025 -NCIT:C5888 Stage IVB Oral Cavity Cancer AJCC v6 and v7 8 67026 -NCIT:C5864 Stage IVB Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 67027 -NCIT:C5867 Stage IVB Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 67028 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 67029 -NCIT:C5889 Stage IVC Oral Cavity Cancer AJCC v6 and v7 8 67030 -NCIT:C5865 Stage IVC Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 67031 -NCIT:C5866 Stage IVC Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 67032 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 67033 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 67034 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 67035 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 67036 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 67037 -NCIT:C8211 Stage IV Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 67038 -NCIT:C5866 Stage IVC Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 67039 -NCIT:C5867 Stage IVB Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 67040 -NCIT:C5868 Stage IVA Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 67041 -NCIT:C8212 Stage IV Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 67042 -NCIT:C5863 Stage IVA Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 67043 -NCIT:C5864 Stage IVB Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 67044 -NCIT:C5865 Stage IVC Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 67045 -NCIT:C5914 Oral Cavity Adenocarcinoma 7 67046 -NCIT:C6076 Recurrent Oral Cavity Carcinoma 7 67047 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 67048 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 67049 -NCIT:C8215 Recurrent Oral Cavity Mucoepidermoid Carcinoma 8 67050 -NCIT:C8216 Recurrent Oral Cavity Adenoid Cystic Carcinoma 8 67051 -NCIT:C7721 Gingival Carcinoma 7 67052 -NCIT:C129857 Gingival Squamous Cell Carcinoma 8 67053 -NCIT:C129289 Gingival Spindle Cell Carcinoma 9 67054 -NCIT:C8171 Lower Gingival Squamous Cell Carcinoma 9 67055 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 10 67056 -NCIT:C8172 Retromolar Trigone Squamous Cell Carcinoma 9 67057 -NCIT:C8173 Upper Gingival Squamous Cell Carcinoma 9 67058 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 10 67059 -NCIT:C8392 Upper Gingival Carcinoma 8 67060 -NCIT:C8173 Upper Gingival Squamous Cell Carcinoma 9 67061 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 10 67062 -NCIT:C8393 Lower Gingival Carcinoma 8 67063 -NCIT:C8171 Lower Gingival Squamous Cell Carcinoma 9 67064 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 10 67065 -NCIT:C8177 Oral Cavity Mucoepidermoid Carcinoma 7 67066 -NCIT:C156090 Metastatic Oral Cavity Mucoepidermoid Carcinoma 8 67067 -NCIT:C181160 Tongue Mucoepidermoid Carcinoma 8 67068 -NCIT:C5990 Posterior Tongue Mucoepidermoid Carcinoma 9 67069 -NCIT:C6250 Anterior Tongue Mucoepidermoid Carcinoma 9 67070 -NCIT:C6214 Hard Palate Mucoepidermoid Carcinoma 8 67071 -NCIT:C8178 Floor of Mouth Mucoepidermoid Carcinoma 8 67072 -NCIT:C8199 Stage I Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 67073 -NCIT:C8203 Stage II Oral Cavity Mucoepidermoid Carcinoma 8 67074 -NCIT:C8207 Stage III Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 67075 -NCIT:C8211 Stage IV Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 67076 -NCIT:C5866 Stage IVC Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 67077 -NCIT:C5867 Stage IVB Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 67078 -NCIT:C5868 Stage IVA Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 67079 -NCIT:C8215 Recurrent Oral Cavity Mucoepidermoid Carcinoma 8 67080 -NCIT:C8179 Oral Cavity Adenoid Cystic Carcinoma 7 67081 -NCIT:C156089 Metastatic Oral Cavity Adenoid Cystic Carcinoma 8 67082 -NCIT:C171028 Tongue Adenoid Cystic Carcinoma 8 67083 -NCIT:C5991 Posterior Tongue Adenoid Cystic Carcinoma 9 67084 -NCIT:C6251 Anterior Tongue Adenoid Cystic Carcinoma 9 67085 -NCIT:C6213 Hard Palate Adenoid Cystic Carcinoma 8 67086 -NCIT:C8180 Floor of Mouth Adenoid Cystic Carcinoma 8 67087 -NCIT:C8200 Stage I Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 67088 -NCIT:C8204 Stage II Oral Cavity Adenoid Cystic Carcinoma 8 67089 -NCIT:C8208 Stage III Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 67090 -NCIT:C8212 Stage IV Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 67091 -NCIT:C5863 Stage IVA Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 67092 -NCIT:C5864 Stage IVB Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 67093 -NCIT:C5865 Stage IVC Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 67094 -NCIT:C8216 Recurrent Oral Cavity Adenoid Cystic Carcinoma 8 67095 -NCIT:C8463 Palate Carcinoma 7 67096 -NCIT:C4649 Palate Squamous Cell Carcinoma 8 67097 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 67098 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 67099 -NCIT:C8394 Hard Palate Carcinoma 8 67100 -NCIT:C6213 Hard Palate Adenoid Cystic Carcinoma 9 67101 -NCIT:C6214 Hard Palate Mucoepidermoid Carcinoma 9 67102 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 67103 -NCIT:C8395 Soft Palate Carcinoma 8 67104 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 67105 -NCIT:C9319 Floor of the Mouth Carcinoma 7 67106 -NCIT:C4041 Floor of Mouth Squamous Cell Carcinoma 8 67107 -NCIT:C129873 Floor of Mouth Basaloid Squamous Cell Carcinoma 9 67108 -NCIT:C8178 Floor of Mouth Mucoepidermoid Carcinoma 8 67109 -NCIT:C8180 Floor of Mouth Adenoid Cystic Carcinoma 8 67110 -NCIT:C9337 Malignant Ear Neoplasm 4 67111 -NCIT:C174026 Malignant Inner Ear Neoplasm 5 67112 -NCIT:C67560 Endolymphatic Sac Tumor 6 67113 -NCIT:C4653 Malignant External Ear Neoplasm 5 67114 -NCIT:C6081 External Ear Carcinoma 6 67115 -NCIT:C4176 Ceruminous Adenocarcinoma 7 67116 -NCIT:C6082 External Ear Basal Cell Carcinoma 7 67117 -NCIT:C6083 External Ear Squamous Cell Carcinoma 7 67118 -NCIT:C4765 Malignant Middle Ear Neoplasm 5 67119 -NCIT:C188115 Middle Ear Embryonal Rhabdomyosarcoma 6 67120 -NCIT:C6089 Middle Ear Carcinoma 6 67121 -NCIT:C6086 Middle Ear Squamous Cell Carcinoma 7 67122 -NCIT:C6848 Middle Ear Adenocarcinoma 7 67123 -NCIT:C91741 Middle Ear Carcinoma In Situ 7 67124 -NCIT:C54262 Ear Carcinoma 5 67125 -NCIT:C6081 External Ear Carcinoma 6 67126 -NCIT:C4176 Ceruminous Adenocarcinoma 7 67127 -NCIT:C6082 External Ear Basal Cell Carcinoma 7 67128 -NCIT:C6083 External Ear Squamous Cell Carcinoma 7 67129 -NCIT:C6089 Middle Ear Carcinoma 6 67130 -NCIT:C6086 Middle Ear Squamous Cell Carcinoma 7 67131 -NCIT:C6848 Middle Ear Adenocarcinoma 7 67132 -NCIT:C91741 Middle Ear Carcinoma In Situ 7 67133 -NCIT:C7336 Sinonasal Neoplasm 3 67134 -NCIT:C173095 Benign Sinonasal Neoplasm 4 67135 -NCIT:C173114 Sinonasal Pleomorphic Adenoma 5 67136 -NCIT:C173139 Benign Sinonasal Soft Tissue Neoplasm 5 67137 -NCIT:C173140 Sinonasal Leiomyoma 6 67138 -NCIT:C173142 Sinonasal Hemangioma 6 67139 -NCIT:C190160 Sinonasal Tract Myxoma 6 67140 -NCIT:C173143 Sinonasal Schwannoma 5 67141 -NCIT:C173144 Sinonasal Neurofibroma 5 67142 -NCIT:C4117 Sinonasal Papilloma 5 67143 -NCIT:C164251 Sinonasal Exophytic Papilloma 6 67144 -NCIT:C54347 Nasal Cavity Exophytic Papilloma 7 67145 -NCIT:C164256 Nasal Cavity Papilloma 6 67146 -NCIT:C54347 Nasal Cavity Exophytic Papilloma 7 67147 -NCIT:C8194 Nasal Cavity Inverted Papilloma 7 67148 -NCIT:C54345 Sinonasal Oncocytic Papilloma 6 67149 -NCIT:C6835 Paranasal Sinus Papilloma 6 67150 -NCIT:C6836 Ethmoid Sinus Papilloma 7 67151 -NCIT:C6843 Ethmoid Sinus Inverted Papilloma 8 67152 -NCIT:C6837 Frontal Sinus Papilloma 7 67153 -NCIT:C6842 Frontal Sinus Inverted Papilloma 8 67154 -NCIT:C6838 Sphenoid Sinus Papilloma 7 67155 -NCIT:C6841 Sphenoid Sinus Inverted Papilloma 8 67156 -NCIT:C6839 Maxillary Sinus Papilloma 7 67157 -NCIT:C6840 Maxillary Sinus Inverted Papilloma 8 67158 -NCIT:C8195 Paranasal Sinus Inverted Papilloma 7 67159 -NCIT:C6840 Maxillary Sinus Inverted Papilloma 8 67160 -NCIT:C6841 Sphenoid Sinus Inverted Papilloma 8 67161 -NCIT:C6842 Frontal Sinus Inverted Papilloma 8 67162 -NCIT:C6843 Ethmoid Sinus Inverted Papilloma 8 67163 -NCIT:C6871 Sinonasal Inverted Papilloma 6 67164 -NCIT:C115432 Recurrent Sinonasal Inverted Papilloma 7 67165 -NCIT:C8194 Nasal Cavity Inverted Papilloma 7 67166 -NCIT:C8195 Paranasal Sinus Inverted Papilloma 7 67167 -NCIT:C6840 Maxillary Sinus Inverted Papilloma 8 67168 -NCIT:C6841 Sphenoid Sinus Inverted Papilloma 8 67169 -NCIT:C6842 Frontal Sinus Inverted Papilloma 8 67170 -NCIT:C6843 Ethmoid Sinus Inverted Papilloma 8 67171 -NCIT:C4603 Benign Nasal Cavity Neoplasm 5 67172 -NCIT:C164256 Nasal Cavity Papilloma 6 67173 -NCIT:C54347 Nasal Cavity Exophytic Papilloma 7 67174 -NCIT:C8194 Nasal Cavity Inverted Papilloma 7 67175 -NCIT:C4369 Nasal Vestibule Squamous Papilloma 6 67176 -NCIT:C8532 Benign Paranasal Sinus Neoplasm 5 67177 -NCIT:C4414 Benign Maxillary Sinus Neoplasm 6 67178 -NCIT:C6839 Maxillary Sinus Papilloma 7 67179 -NCIT:C6840 Maxillary Sinus Inverted Papilloma 8 67180 -NCIT:C4417 Benign Ethmoid Sinus Neoplasm 6 67181 -NCIT:C6836 Ethmoid Sinus Papilloma 7 67182 -NCIT:C6843 Ethmoid Sinus Inverted Papilloma 8 67183 -NCIT:C4420 Benign Frontal Sinus Neoplasm 6 67184 -NCIT:C6837 Frontal Sinus Papilloma 7 67185 -NCIT:C6842 Frontal Sinus Inverted Papilloma 8 67186 -NCIT:C4422 Benign Sphenoid Sinus Neoplasm 6 67187 -NCIT:C6838 Sphenoid Sinus Papilloma 7 67188 -NCIT:C6841 Sphenoid Sinus Inverted Papilloma 8 67189 -NCIT:C6835 Paranasal Sinus Papilloma 6 67190 -NCIT:C6836 Ethmoid Sinus Papilloma 7 67191 -NCIT:C6843 Ethmoid Sinus Inverted Papilloma 8 67192 -NCIT:C6837 Frontal Sinus Papilloma 7 67193 -NCIT:C6842 Frontal Sinus Inverted Papilloma 8 67194 -NCIT:C6838 Sphenoid Sinus Papilloma 7 67195 -NCIT:C6841 Sphenoid Sinus Inverted Papilloma 8 67196 -NCIT:C6839 Maxillary Sinus Papilloma 7 67197 -NCIT:C6840 Maxillary Sinus Inverted Papilloma 8 67198 -NCIT:C8195 Paranasal Sinus Inverted Papilloma 7 67199 -NCIT:C6840 Maxillary Sinus Inverted Papilloma 8 67200 -NCIT:C6841 Sphenoid Sinus Inverted Papilloma 8 67201 -NCIT:C6842 Frontal Sinus Inverted Papilloma 8 67202 -NCIT:C6843 Ethmoid Sinus Inverted Papilloma 8 67203 -NCIT:C173097 Malignant Sinonasal Neoplasm 4 67204 -NCIT:C166399 Sinonasal Mucosal Melanoma 5 67205 -NCIT:C173094 Sinonasal Teratocarcinosarcoma 5 67206 -NCIT:C173169 Sinonasal Plasmacytoma 5 67207 -NCIT:C173170 Sinonasal Lymphoma 5 67208 -NCIT:C173171 Sinonasal Non-Hodgkin Lymphoma 6 67209 -NCIT:C173172 Sinonasal Extranodal NK/T-Cell Lymphoma 7 67210 -NCIT:C173173 Nasal Cavity Extranodal NK/T-Cell Lymphoma 8 67211 -NCIT:C6069 Paranasal Sinus Non-Hodgkin Lymphoma 7 67212 -NCIT:C6073 Paranasal Sinus Diffuse Large B-Cell Lymphoma 8 67213 -NCIT:C6075 Nasal Cavity Non-Hodgkin Lymphoma 7 67214 -NCIT:C173173 Nasal Cavity Extranodal NK/T-Cell Lymphoma 8 67215 -NCIT:C188081 Nasal Cavity Diffuse Large B-Cell Lymphoma 8 67216 -NCIT:C6068 Paranasal Sinus Lymphoma 6 67217 -NCIT:C6069 Paranasal Sinus Non-Hodgkin Lymphoma 7 67218 -NCIT:C6073 Paranasal Sinus Diffuse Large B-Cell Lymphoma 8 67219 -NCIT:C6074 Nasal Cavity Lymphoma 6 67220 -NCIT:C6075 Nasal Cavity Non-Hodgkin Lymphoma 7 67221 -NCIT:C173173 Nasal Cavity Extranodal NK/T-Cell Lymphoma 8 67222 -NCIT:C188081 Nasal Cavity Diffuse Large B-Cell Lymphoma 8 67223 -NCIT:C173174 Sinonasal Olfactory Neuroblastoma 5 67224 -NCIT:C6016 Paranasal Sinus Olfactory Neuroblastoma 6 67225 -NCIT:C173176 Malignant Sinonasal Soft Tissue Neoplasm 5 67226 -NCIT:C173118 Sinonasal Sarcoma 6 67227 -NCIT:C164205 Biphenotypic Sinonasal Sarcoma 7 67228 -NCIT:C173120 Sinonasal Fibrosarcoma 7 67229 -NCIT:C173121 Sinonasal Undifferentiated Pleomorphic Sarcoma 7 67230 -NCIT:C173123 Sinonasal Leiomyosarcoma 7 67231 -NCIT:C173124 Sinonasal Rhabdomyosarcoma 7 67232 -NCIT:C173125 Sinonasal Angiosarcoma 7 67233 -NCIT:C173127 Sinonasal Malignant Peripheral Nerve Sheath Tumor 7 67234 -NCIT:C173128 Sinonasal Synovial Sarcoma 7 67235 -NCIT:C6849 Paranasal Sinus Sarcoma 7 67236 -NCIT:C6850 High Grade Paranasal Sinus Sarcoma 8 67237 -NCIT:C6851 Low Grade Paranasal Sinus Sarcoma 8 67238 -NCIT:C173138 Sinonasal Epithelioid Hemangioendothelioma 6 67239 -NCIT:C173175 Sinonasal Ewing Sarcoma/Peripheral Primitive Neuroectodermal Tumor 6 67240 -NCIT:C4918 Malignant Nasal Cavity Neoplasm 5 67241 -NCIT:C6074 Nasal Cavity Lymphoma 6 67242 -NCIT:C6075 Nasal Cavity Non-Hodgkin Lymphoma 7 67243 -NCIT:C173173 Nasal Cavity Extranodal NK/T-Cell Lymphoma 8 67244 -NCIT:C188081 Nasal Cavity Diffuse Large B-Cell Lymphoma 8 67245 -NCIT:C7604 Nasal Cavity Olfactory Neuroblastoma 6 67246 -NCIT:C9336 Nasal Cavity Carcinoma 6 67247 -NCIT:C118817 Childhood Nasal Cavity Carcinoma 7 67248 -NCIT:C27389 Carcinoma Arising in Nasal Papillomatosis 7 67249 -NCIT:C4589 Stage 0 Nasal Cavity Cancer AJCC v6, v7, and v8 7 67250 -NCIT:C6010 Stage IV Nasal Cavity Cancer 7 67251 -NCIT:C6011 Stage III Nasal Cavity Cancer AJCC v6 and v7 7 67252 -NCIT:C6012 Stage II Nasal Cavity Cancer AJCC v6 and v7 7 67253 -NCIT:C6013 Stage I Nasal Cavity Cancer AJCC v6 and v7 7 67254 -NCIT:C6015 Nasal Cavity Adenocarcinoma 7 67255 -NCIT:C8192 Nasal Cavity Squamous Cell Carcinoma 7 67256 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 67257 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 67258 -NCIT:C176514 Unresectable Nasal Cavity Squamous Cell Carcinoma 8 67259 -NCIT:C54285 Nasal Cavity Keratinizing Squamous Cell Carcinoma 8 67260 -NCIT:C54293 Sinonasal Carcinoma 5 67261 -NCIT:C133074 Sinonasal Cancer by AJCC v8 Stage 6 67262 -NCIT:C133076 Stage I Sinonasal Cancer AJCC v8 7 67263 -NCIT:C133077 Stage II Sinonasal Cancer AJCC v8 7 67264 -NCIT:C133078 Stage III Sinonasal Cancer AJCC v8 7 67265 -NCIT:C133079 Stage IV Sinonasal Cancer AJCC v8 7 67266 -NCIT:C133080 Stage IVA Sinonasal Cancer AJCC v8 8 67267 -NCIT:C133081 Stage IVB Sinonasal Cancer AJCC v8 8 67268 -NCIT:C133082 Stage IVC Sinonasal Cancer AJCC v8 8 67269 -NCIT:C87498 Stage 0 Sinonasal Cancer AJCC v6, v7, and v8 7 67270 -NCIT:C4589 Stage 0 Nasal Cavity Cancer AJCC v6, v7, and v8 8 67271 -NCIT:C94768 Stage 0 Paranasal Sinus Cancer AJCC v6, v7, and v8 8 67272 -NCIT:C154324 Sinonasal Poorly Differentiated Carcinoma 6 67273 -NCIT:C173088 Sinonasal NUT Carcinoma 7 67274 -NCIT:C160976 Sinonasal Adenocarcinoma 6 67275 -NCIT:C161007 Sinonasal Adenocarcinoma, Salivary-Type 7 67276 -NCIT:C161008 Sinonasal Adenocarcinoma, Non-Salivary-Type 7 67277 -NCIT:C116316 Sinonasal Adenocarcinoma, Intestinal-Type 8 67278 -NCIT:C160984 Sinonasal Adenocarcinoma, Intestinal-Type with Papillary Pattern 9 67279 -NCIT:C160986 Sinonasal Adenocarcinoma, Intestinal-Type with Colonic Pattern 9 67280 -NCIT:C160987 Sinonasal Adenocarcinoma, Intestinal-Type with Solid Pattern 9 67281 -NCIT:C160995 Sinonasal Adenocarcinoma, Intestinal-Type with Mucinous Pattern 9 67282 -NCIT:C161000 Sinonasal Adenocarcinoma, Intestinal-Type with Mixed Pattern 9 67283 -NCIT:C160977 Sinonasal Adenocarcinoma, Non-Intestinal-Type 8 67284 -NCIT:C6015 Nasal Cavity Adenocarcinoma 7 67285 -NCIT:C6017 Paranasal Sinus Adenocarcinoma 7 67286 -NCIT:C6237 Ethmoid Sinus Adenocarcinoma 8 67287 -NCIT:C6240 Maxillary Sinus Adenocarcinoma 8 67288 -NCIT:C173089 Sinonasal Neuroendocrine Carcinoma 6 67289 -NCIT:C116318 Sinonasal Small Cell Neuroendocrine Carcinoma 7 67290 -NCIT:C173091 Sinonasal Large Cell Neuroendocrine Carcinoma 7 67291 -NCIT:C180670 Low Grade Papillary Schneiderian Carcinoma 6 67292 -NCIT:C54294 Sinonasal Undifferentiated Carcinoma 6 67293 -NCIT:C6014 Paranasal Sinus Carcinoma 6 67294 -NCIT:C118818 Childhood Paranasal Sinus Carcinoma 7 67295 -NCIT:C165563 Locally Advanced Paranasal Sinus Carcinoma 7 67296 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 8 67297 -NCIT:C6006 Stage I Paranasal Sinus Cancer 7 67298 -NCIT:C6007 Stage II Paranasal Sinus Cancer AJCC v6 and v7 7 67299 -NCIT:C6008 Stage III Paranasal Sinus Cancer AJCC v6 and v7 7 67300 -NCIT:C6009 Stage IV Paranasal Sinus Cancer AJCC v7 7 67301 -NCIT:C6070 Stage IVA Paranasal Sinus Cancer AJCC v7 8 67302 -NCIT:C6071 Stage IVB Paranasal Sinus Cancer AJCC v7 8 67303 -NCIT:C6072 Stage IVC Paranasal Sinus Cancer AJCC v7 8 67304 -NCIT:C6017 Paranasal Sinus Adenocarcinoma 7 67305 -NCIT:C6237 Ethmoid Sinus Adenocarcinoma 8 67306 -NCIT:C6240 Maxillary Sinus Adenocarcinoma 8 67307 -NCIT:C6018 Paranasal Sinus Mucoepidermoid Carcinoma 7 67308 -NCIT:C6019 Paranasal Sinus Adenoid Cystic Carcinoma 7 67309 -NCIT:C6238 Ethmoid Sinus Adenoid Cystic Carcinoma 8 67310 -NCIT:C6239 Maxillary Sinus Adenoid Cystic Carcinoma 8 67311 -NCIT:C8193 Paranasal Sinus Squamous Cell Carcinoma 7 67312 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 67313 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 67314 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 67315 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 67316 -NCIT:C172648 Unresectable Paranasal Sinus Squamous Cell Carcinoma 8 67317 -NCIT:C54284 Paranasal Sinus Keratinizing Squamous Cell Carcinoma 8 67318 -NCIT:C6064 Maxillary Sinus Squamous Cell Carcinoma 8 67319 -NCIT:C6065 Ethmoid Sinus Squamous Cell Carcinoma 8 67320 -NCIT:C6066 Sphenoid Sinus Squamous Cell Carcinoma 8 67321 -NCIT:C6067 Frontal Sinus Squamous Cell Carcinoma 8 67322 -NCIT:C9332 Maxillary Sinus Carcinoma 7 67323 -NCIT:C6064 Maxillary Sinus Squamous Cell Carcinoma 8 67324 -NCIT:C6239 Maxillary Sinus Adenoid Cystic Carcinoma 8 67325 -NCIT:C6240 Maxillary Sinus Adenocarcinoma 8 67326 -NCIT:C94768 Stage 0 Paranasal Sinus Cancer AJCC v6, v7, and v8 7 67327 -NCIT:C67558 Recurrent Sinonasal Carcinoma 6 67328 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 67329 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 67330 -NCIT:C68611 Sinonasal Squamous Cell Carcinoma 6 67331 -NCIT:C115070 Stage I Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 7 67332 -NCIT:C115071 Stage II Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 7 67333 -NCIT:C115072 Stage III Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 7 67334 -NCIT:C115073 Stage IV Sinonasal Squamous Cell Carcinoma AJCC v7 7 67335 -NCIT:C115074 Stage IVA Sinonasal Squamous Cell Carcinoma AJCC v7 8 67336 -NCIT:C115075 Stage IVB Sinonasal Squamous Cell Carcinoma AJCC v7 8 67337 -NCIT:C115076 Stage IVC Sinonasal Squamous Cell Carcinoma AJCC v7 8 67338 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 67339 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 67340 -NCIT:C148401 Refractory Sinonasal Squamous Cell Carcinoma 7 67341 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 67342 -NCIT:C162882 Metastatic Sinonasal Squamous Cell Carcinoma 7 67343 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 67344 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 67345 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 67346 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 67347 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 67348 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 67349 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 67350 -NCIT:C173077 Sinonasal Keratinizing Squamous Cell Carcinoma 7 67351 -NCIT:C54284 Paranasal Sinus Keratinizing Squamous Cell Carcinoma 8 67352 -NCIT:C54285 Nasal Cavity Keratinizing Squamous Cell Carcinoma 8 67353 -NCIT:C173079 Sinonasal Spindle Cell Squamous Cell Carcinoma 7 67354 -NCIT:C176513 Unresectable Sinonasal Squamous Cell Carcinoma 7 67355 -NCIT:C172648 Unresectable Paranasal Sinus Squamous Cell Carcinoma 8 67356 -NCIT:C176514 Unresectable Nasal Cavity Squamous Cell Carcinoma 8 67357 -NCIT:C54287 Sinonasal Non-Keratinizing Squamous Cell Carcinoma 7 67358 -NCIT:C173078 Sinonasal Human Papillomavirus-Related Carcinoma with Adenoid Cystic-Like Features 8 67359 -NCIT:C173080 Sinonasal Lymphoepithelial Carcinoma 8 67360 -NCIT:C8192 Nasal Cavity Squamous Cell Carcinoma 7 67361 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 67362 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 67363 -NCIT:C176514 Unresectable Nasal Cavity Squamous Cell Carcinoma 8 67364 -NCIT:C54285 Nasal Cavity Keratinizing Squamous Cell Carcinoma 8 67365 -NCIT:C8193 Paranasal Sinus Squamous Cell Carcinoma 7 67366 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 67367 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 67368 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 67369 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 67370 -NCIT:C172648 Unresectable Paranasal Sinus Squamous Cell Carcinoma 8 67371 -NCIT:C54284 Paranasal Sinus Keratinizing Squamous Cell Carcinoma 8 67372 -NCIT:C6064 Maxillary Sinus Squamous Cell Carcinoma 8 67373 -NCIT:C6065 Ethmoid Sinus Squamous Cell Carcinoma 8 67374 -NCIT:C6066 Sphenoid Sinus Squamous Cell Carcinoma 8 67375 -NCIT:C6067 Frontal Sinus Squamous Cell Carcinoma 8 67376 -NCIT:C90528 Sinonasal Cancer by AJCC v6 Stage 6 67377 -NCIT:C67554 Stage I Sinonasal Cancer AJCC v6 and v7 7 67378 -NCIT:C115070 Stage I Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 8 67379 -NCIT:C6006 Stage I Paranasal Sinus Cancer 8 67380 -NCIT:C6013 Stage I Nasal Cavity Cancer AJCC v6 and v7 8 67381 -NCIT:C67555 Stage II Sinonasal Cancer AJCC v6 and v7 7 67382 -NCIT:C115071 Stage II Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 8 67383 -NCIT:C6007 Stage II Paranasal Sinus Cancer AJCC v6 and v7 8 67384 -NCIT:C6012 Stage II Nasal Cavity Cancer AJCC v6 and v7 8 67385 -NCIT:C67556 Stage III Sinonasal Cancer AJCC v6 and v7 7 67386 -NCIT:C115072 Stage III Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 8 67387 -NCIT:C6008 Stage III Paranasal Sinus Cancer AJCC v6 and v7 8 67388 -NCIT:C6011 Stage III Nasal Cavity Cancer AJCC v6 and v7 8 67389 -NCIT:C67557 Stage IV Sinonasal Cancer AJCC v6 7 67390 -NCIT:C87498 Stage 0 Sinonasal Cancer AJCC v6, v7, and v8 7 67391 -NCIT:C4589 Stage 0 Nasal Cavity Cancer AJCC v6, v7, and v8 8 67392 -NCIT:C94768 Stage 0 Paranasal Sinus Cancer AJCC v6, v7, and v8 8 67393 -NCIT:C91255 Sinonasal Cancer by AJCC v7 Stage 6 67394 -NCIT:C67554 Stage I Sinonasal Cancer AJCC v6 and v7 7 67395 -NCIT:C115070 Stage I Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 8 67396 -NCIT:C6006 Stage I Paranasal Sinus Cancer 8 67397 -NCIT:C6013 Stage I Nasal Cavity Cancer AJCC v6 and v7 8 67398 -NCIT:C67555 Stage II Sinonasal Cancer AJCC v6 and v7 7 67399 -NCIT:C115071 Stage II Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 8 67400 -NCIT:C6007 Stage II Paranasal Sinus Cancer AJCC v6 and v7 8 67401 -NCIT:C6012 Stage II Nasal Cavity Cancer AJCC v6 and v7 8 67402 -NCIT:C67556 Stage III Sinonasal Cancer AJCC v6 and v7 7 67403 -NCIT:C115072 Stage III Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 8 67404 -NCIT:C6008 Stage III Paranasal Sinus Cancer AJCC v6 and v7 8 67405 -NCIT:C6011 Stage III Nasal Cavity Cancer AJCC v6 and v7 8 67406 -NCIT:C87498 Stage 0 Sinonasal Cancer AJCC v6, v7, and v8 7 67407 -NCIT:C4589 Stage 0 Nasal Cavity Cancer AJCC v6, v7, and v8 8 67408 -NCIT:C94768 Stage 0 Paranasal Sinus Cancer AJCC v6, v7, and v8 8 67409 -NCIT:C89117 Stage IV Sinonasal Cancer AJCC v7 7 67410 -NCIT:C115073 Stage IV Sinonasal Squamous Cell Carcinoma AJCC v7 8 67411 -NCIT:C115074 Stage IVA Sinonasal Squamous Cell Carcinoma AJCC v7 9 67412 -NCIT:C115075 Stage IVB Sinonasal Squamous Cell Carcinoma AJCC v7 9 67413 -NCIT:C115076 Stage IVC Sinonasal Squamous Cell Carcinoma AJCC v7 9 67414 -NCIT:C6009 Stage IV Paranasal Sinus Cancer AJCC v7 8 67415 -NCIT:C6070 Stage IVA Paranasal Sinus Cancer AJCC v7 9 67416 -NCIT:C6071 Stage IVB Paranasal Sinus Cancer AJCC v7 9 67417 -NCIT:C6072 Stage IVC Paranasal Sinus Cancer AJCC v7 9 67418 -NCIT:C6010 Stage IV Nasal Cavity Cancer 8 67419 -NCIT:C87501 Stage IVA Sinonasal Cancer AJCC v7 8 67420 -NCIT:C115074 Stage IVA Sinonasal Squamous Cell Carcinoma AJCC v7 9 67421 -NCIT:C6070 Stage IVA Paranasal Sinus Cancer AJCC v7 9 67422 -NCIT:C87502 Stage IVB Sinonasal Cancer AJCC v7 8 67423 -NCIT:C115075 Stage IVB Sinonasal Squamous Cell Carcinoma AJCC v7 9 67424 -NCIT:C6071 Stage IVB Paranasal Sinus Cancer AJCC v7 9 67425 -NCIT:C87503 Stage IVC Sinonasal Cancer AJCC v7 8 67426 -NCIT:C115076 Stage IVC Sinonasal Squamous Cell Carcinoma AJCC v7 9 67427 -NCIT:C6072 Stage IVC Paranasal Sinus Cancer AJCC v7 9 67428 -NCIT:C9336 Nasal Cavity Carcinoma 6 67429 -NCIT:C118817 Childhood Nasal Cavity Carcinoma 7 67430 -NCIT:C27389 Carcinoma Arising in Nasal Papillomatosis 7 67431 -NCIT:C4589 Stage 0 Nasal Cavity Cancer AJCC v6, v7, and v8 7 67432 -NCIT:C6010 Stage IV Nasal Cavity Cancer 7 67433 -NCIT:C6011 Stage III Nasal Cavity Cancer AJCC v6 and v7 7 67434 -NCIT:C6012 Stage II Nasal Cavity Cancer AJCC v6 and v7 7 67435 -NCIT:C6013 Stage I Nasal Cavity Cancer AJCC v6 and v7 7 67436 -NCIT:C6015 Nasal Cavity Adenocarcinoma 7 67437 -NCIT:C8192 Nasal Cavity Squamous Cell Carcinoma 7 67438 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 67439 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 67440 -NCIT:C176514 Unresectable Nasal Cavity Squamous Cell Carcinoma 8 67441 -NCIT:C54285 Nasal Cavity Keratinizing Squamous Cell Carcinoma 8 67442 -NCIT:C7487 Malignant Paranasal Sinus Neoplasm 5 67443 -NCIT:C3540 Malignant Maxillary Sinus Neoplasm 6 67444 -NCIT:C9332 Maxillary Sinus Carcinoma 7 67445 -NCIT:C6064 Maxillary Sinus Squamous Cell Carcinoma 8 67446 -NCIT:C6239 Maxillary Sinus Adenoid Cystic Carcinoma 8 67447 -NCIT:C6240 Maxillary Sinus Adenocarcinoma 8 67448 -NCIT:C3541 Malignant Ethmoid Sinus Neoplasm 6 67449 -NCIT:C6065 Ethmoid Sinus Squamous Cell Carcinoma 7 67450 -NCIT:C6237 Ethmoid Sinus Adenocarcinoma 7 67451 -NCIT:C6238 Ethmoid Sinus Adenoid Cystic Carcinoma 7 67452 -NCIT:C3542 Malignant Frontal Sinus Neoplasm 6 67453 -NCIT:C6067 Frontal Sinus Squamous Cell Carcinoma 7 67454 -NCIT:C3543 Malignant Sphenoid Sinus Neoplasm 6 67455 -NCIT:C6066 Sphenoid Sinus Squamous Cell Carcinoma 7 67456 -NCIT:C6014 Paranasal Sinus Carcinoma 6 67457 -NCIT:C118818 Childhood Paranasal Sinus Carcinoma 7 67458 -NCIT:C165563 Locally Advanced Paranasal Sinus Carcinoma 7 67459 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 8 67460 -NCIT:C6006 Stage I Paranasal Sinus Cancer 7 67461 -NCIT:C6007 Stage II Paranasal Sinus Cancer AJCC v6 and v7 7 67462 -NCIT:C6008 Stage III Paranasal Sinus Cancer AJCC v6 and v7 7 67463 -NCIT:C6009 Stage IV Paranasal Sinus Cancer AJCC v7 7 67464 -NCIT:C6070 Stage IVA Paranasal Sinus Cancer AJCC v7 8 67465 -NCIT:C6071 Stage IVB Paranasal Sinus Cancer AJCC v7 8 67466 -NCIT:C6072 Stage IVC Paranasal Sinus Cancer AJCC v7 8 67467 -NCIT:C6017 Paranasal Sinus Adenocarcinoma 7 67468 -NCIT:C6237 Ethmoid Sinus Adenocarcinoma 8 67469 -NCIT:C6240 Maxillary Sinus Adenocarcinoma 8 67470 -NCIT:C6018 Paranasal Sinus Mucoepidermoid Carcinoma 7 67471 -NCIT:C6019 Paranasal Sinus Adenoid Cystic Carcinoma 7 67472 -NCIT:C6238 Ethmoid Sinus Adenoid Cystic Carcinoma 8 67473 -NCIT:C6239 Maxillary Sinus Adenoid Cystic Carcinoma 8 67474 -NCIT:C8193 Paranasal Sinus Squamous Cell Carcinoma 7 67475 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 67476 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 67477 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 67478 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 67479 -NCIT:C172648 Unresectable Paranasal Sinus Squamous Cell Carcinoma 8 67480 -NCIT:C54284 Paranasal Sinus Keratinizing Squamous Cell Carcinoma 8 67481 -NCIT:C6064 Maxillary Sinus Squamous Cell Carcinoma 8 67482 -NCIT:C6065 Ethmoid Sinus Squamous Cell Carcinoma 8 67483 -NCIT:C6066 Sphenoid Sinus Squamous Cell Carcinoma 8 67484 -NCIT:C6067 Frontal Sinus Squamous Cell Carcinoma 8 67485 -NCIT:C9332 Maxillary Sinus Carcinoma 7 67486 -NCIT:C6064 Maxillary Sinus Squamous Cell Carcinoma 8 67487 -NCIT:C6239 Maxillary Sinus Adenoid Cystic Carcinoma 8 67488 -NCIT:C6240 Maxillary Sinus Adenocarcinoma 8 67489 -NCIT:C94768 Stage 0 Paranasal Sinus Cancer AJCC v6, v7, and v8 7 67490 -NCIT:C6016 Paranasal Sinus Olfactory Neuroblastoma 6 67491 -NCIT:C6068 Paranasal Sinus Lymphoma 6 67492 -NCIT:C6069 Paranasal Sinus Non-Hodgkin Lymphoma 7 67493 -NCIT:C6073 Paranasal Sinus Diffuse Large B-Cell Lymphoma 8 67494 -NCIT:C6849 Paranasal Sinus Sarcoma 6 67495 -NCIT:C6850 High Grade Paranasal Sinus Sarcoma 7 67496 -NCIT:C6851 Low Grade Paranasal Sinus Sarcoma 7 67497 -NCIT:C173117 Sinonasal Soft Tissue Neoplasm 4 67498 -NCIT:C173132 Intermediate Sinonasal Soft Tissue Neoplasm 5 67499 -NCIT:C173133 Sinonasal Desmoid Fibromatosis 6 67500 -NCIT:C173136 Sinonasal Glomangiopericytoma 6 67501 -NCIT:C173137 Sinonasal Solitary Fibrous Tumor 6 67502 -NCIT:C173139 Benign Sinonasal Soft Tissue Neoplasm 5 67503 -NCIT:C173140 Sinonasal Leiomyoma 6 67504 -NCIT:C173142 Sinonasal Hemangioma 6 67505 -NCIT:C190160 Sinonasal Tract Myxoma 6 67506 -NCIT:C173176 Malignant Sinonasal Soft Tissue Neoplasm 5 67507 -NCIT:C173118 Sinonasal Sarcoma 6 67508 -NCIT:C164205 Biphenotypic Sinonasal Sarcoma 7 67509 -NCIT:C173120 Sinonasal Fibrosarcoma 7 67510 -NCIT:C173121 Sinonasal Undifferentiated Pleomorphic Sarcoma 7 67511 -NCIT:C173123 Sinonasal Leiomyosarcoma 7 67512 -NCIT:C173124 Sinonasal Rhabdomyosarcoma 7 67513 -NCIT:C173125 Sinonasal Angiosarcoma 7 67514 -NCIT:C173127 Sinonasal Malignant Peripheral Nerve Sheath Tumor 7 67515 -NCIT:C173128 Sinonasal Synovial Sarcoma 7 67516 -NCIT:C6849 Paranasal Sinus Sarcoma 7 67517 -NCIT:C6850 High Grade Paranasal Sinus Sarcoma 8 67518 -NCIT:C6851 Low Grade Paranasal Sinus Sarcoma 8 67519 -NCIT:C173138 Sinonasal Epithelioid Hemangioendothelioma 6 67520 -NCIT:C173175 Sinonasal Ewing Sarcoma/Peripheral Primitive Neuroectodermal Tumor 6 67521 -NCIT:C173163 Primary Sinonasal Meningioma 4 67522 -NCIT:C5309 Ethmoid Sinus Primary Ectopic Meningioma 5 67523 -NCIT:C173166 Sinonasal Ameloblastoma 4 67524 -NCIT:C4413 Nasal Cavity Neoplasm 4 67525 -NCIT:C4603 Benign Nasal Cavity Neoplasm 5 67526 -NCIT:C164256 Nasal Cavity Papilloma 6 67527 -NCIT:C54347 Nasal Cavity Exophytic Papilloma 7 67528 -NCIT:C8194 Nasal Cavity Inverted Papilloma 7 67529 -NCIT:C4369 Nasal Vestibule Squamous Papilloma 6 67530 -NCIT:C4918 Malignant Nasal Cavity Neoplasm 5 67531 -NCIT:C6074 Nasal Cavity Lymphoma 6 67532 -NCIT:C6075 Nasal Cavity Non-Hodgkin Lymphoma 7 67533 -NCIT:C173173 Nasal Cavity Extranodal NK/T-Cell Lymphoma 8 67534 -NCIT:C188081 Nasal Cavity Diffuse Large B-Cell Lymphoma 8 67535 -NCIT:C7604 Nasal Cavity Olfactory Neuroblastoma 6 67536 -NCIT:C9336 Nasal Cavity Carcinoma 6 67537 -NCIT:C118817 Childhood Nasal Cavity Carcinoma 7 67538 -NCIT:C27389 Carcinoma Arising in Nasal Papillomatosis 7 67539 -NCIT:C4589 Stage 0 Nasal Cavity Cancer AJCC v6, v7, and v8 7 67540 -NCIT:C6010 Stage IV Nasal Cavity Cancer 7 67541 -NCIT:C6011 Stage III Nasal Cavity Cancer AJCC v6 and v7 7 67542 -NCIT:C6012 Stage II Nasal Cavity Cancer AJCC v6 and v7 7 67543 -NCIT:C6013 Stage I Nasal Cavity Cancer AJCC v6 and v7 7 67544 -NCIT:C6015 Nasal Cavity Adenocarcinoma 7 67545 -NCIT:C8192 Nasal Cavity Squamous Cell Carcinoma 7 67546 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 67547 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 67548 -NCIT:C176514 Unresectable Nasal Cavity Squamous Cell Carcinoma 8 67549 -NCIT:C54285 Nasal Cavity Keratinizing Squamous Cell Carcinoma 8 67550 -NCIT:C7488 Paranasal Sinus Neoplasm 4 67551 -NCIT:C3219 Maxillary Sinus Neoplasm 5 67552 -NCIT:C3540 Malignant Maxillary Sinus Neoplasm 6 67553 -NCIT:C9332 Maxillary Sinus Carcinoma 7 67554 -NCIT:C6064 Maxillary Sinus Squamous Cell Carcinoma 8 67555 -NCIT:C6239 Maxillary Sinus Adenoid Cystic Carcinoma 8 67556 -NCIT:C6240 Maxillary Sinus Adenocarcinoma 8 67557 -NCIT:C4414 Benign Maxillary Sinus Neoplasm 6 67558 -NCIT:C6839 Maxillary Sinus Papilloma 7 67559 -NCIT:C6840 Maxillary Sinus Inverted Papilloma 8 67560 -NCIT:C4416 Ethmoid Sinus Neoplasm 5 67561 -NCIT:C3541 Malignant Ethmoid Sinus Neoplasm 6 67562 -NCIT:C6065 Ethmoid Sinus Squamous Cell Carcinoma 7 67563 -NCIT:C6237 Ethmoid Sinus Adenocarcinoma 7 67564 -NCIT:C6238 Ethmoid Sinus Adenoid Cystic Carcinoma 7 67565 -NCIT:C4417 Benign Ethmoid Sinus Neoplasm 6 67566 -NCIT:C6836 Ethmoid Sinus Papilloma 7 67567 -NCIT:C6843 Ethmoid Sinus Inverted Papilloma 8 67568 -NCIT:C5309 Ethmoid Sinus Primary Ectopic Meningioma 6 67569 -NCIT:C4419 Frontal Sinus Neoplasm 5 67570 -NCIT:C3542 Malignant Frontal Sinus Neoplasm 6 67571 -NCIT:C6067 Frontal Sinus Squamous Cell Carcinoma 7 67572 -NCIT:C4420 Benign Frontal Sinus Neoplasm 6 67573 -NCIT:C6837 Frontal Sinus Papilloma 7 67574 -NCIT:C6842 Frontal Sinus Inverted Papilloma 8 67575 -NCIT:C6792 Sphenoid Sinus Neoplasm 5 67576 -NCIT:C3543 Malignant Sphenoid Sinus Neoplasm 6 67577 -NCIT:C6066 Sphenoid Sinus Squamous Cell Carcinoma 7 67578 -NCIT:C4422 Benign Sphenoid Sinus Neoplasm 6 67579 -NCIT:C6838 Sphenoid Sinus Papilloma 7 67580 -NCIT:C6841 Sphenoid Sinus Inverted Papilloma 8 67581 -NCIT:C7487 Malignant Paranasal Sinus Neoplasm 5 67582 -NCIT:C3540 Malignant Maxillary Sinus Neoplasm 6 67583 -NCIT:C9332 Maxillary Sinus Carcinoma 7 67584 -NCIT:C6064 Maxillary Sinus Squamous Cell Carcinoma 8 67585 -NCIT:C6239 Maxillary Sinus Adenoid Cystic Carcinoma 8 67586 -NCIT:C6240 Maxillary Sinus Adenocarcinoma 8 67587 -NCIT:C3541 Malignant Ethmoid Sinus Neoplasm 6 67588 -NCIT:C6065 Ethmoid Sinus Squamous Cell Carcinoma 7 67589 -NCIT:C6237 Ethmoid Sinus Adenocarcinoma 7 67590 -NCIT:C6238 Ethmoid Sinus Adenoid Cystic Carcinoma 7 67591 -NCIT:C3542 Malignant Frontal Sinus Neoplasm 6 67592 -NCIT:C6067 Frontal Sinus Squamous Cell Carcinoma 7 67593 -NCIT:C3543 Malignant Sphenoid Sinus Neoplasm 6 67594 -NCIT:C6066 Sphenoid Sinus Squamous Cell Carcinoma 7 67595 -NCIT:C6014 Paranasal Sinus Carcinoma 6 67596 -NCIT:C118818 Childhood Paranasal Sinus Carcinoma 7 67597 -NCIT:C165563 Locally Advanced Paranasal Sinus Carcinoma 7 67598 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 8 67599 -NCIT:C6006 Stage I Paranasal Sinus Cancer 7 67600 -NCIT:C6007 Stage II Paranasal Sinus Cancer AJCC v6 and v7 7 67601 -NCIT:C6008 Stage III Paranasal Sinus Cancer AJCC v6 and v7 7 67602 -NCIT:C6009 Stage IV Paranasal Sinus Cancer AJCC v7 7 67603 -NCIT:C6070 Stage IVA Paranasal Sinus Cancer AJCC v7 8 67604 -NCIT:C6071 Stage IVB Paranasal Sinus Cancer AJCC v7 8 67605 -NCIT:C6072 Stage IVC Paranasal Sinus Cancer AJCC v7 8 67606 -NCIT:C6017 Paranasal Sinus Adenocarcinoma 7 67607 -NCIT:C6237 Ethmoid Sinus Adenocarcinoma 8 67608 -NCIT:C6240 Maxillary Sinus Adenocarcinoma 8 67609 -NCIT:C6018 Paranasal Sinus Mucoepidermoid Carcinoma 7 67610 -NCIT:C6019 Paranasal Sinus Adenoid Cystic Carcinoma 7 67611 -NCIT:C6238 Ethmoid Sinus Adenoid Cystic Carcinoma 8 67612 -NCIT:C6239 Maxillary Sinus Adenoid Cystic Carcinoma 8 67613 -NCIT:C8193 Paranasal Sinus Squamous Cell Carcinoma 7 67614 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 67615 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 67616 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 67617 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 67618 -NCIT:C172648 Unresectable Paranasal Sinus Squamous Cell Carcinoma 8 67619 -NCIT:C54284 Paranasal Sinus Keratinizing Squamous Cell Carcinoma 8 67620 -NCIT:C6064 Maxillary Sinus Squamous Cell Carcinoma 8 67621 -NCIT:C6065 Ethmoid Sinus Squamous Cell Carcinoma 8 67622 -NCIT:C6066 Sphenoid Sinus Squamous Cell Carcinoma 8 67623 -NCIT:C6067 Frontal Sinus Squamous Cell Carcinoma 8 67624 -NCIT:C9332 Maxillary Sinus Carcinoma 7 67625 -NCIT:C6064 Maxillary Sinus Squamous Cell Carcinoma 8 67626 -NCIT:C6239 Maxillary Sinus Adenoid Cystic Carcinoma 8 67627 -NCIT:C6240 Maxillary Sinus Adenocarcinoma 8 67628 -NCIT:C94768 Stage 0 Paranasal Sinus Cancer AJCC v6, v7, and v8 7 67629 -NCIT:C6016 Paranasal Sinus Olfactory Neuroblastoma 6 67630 -NCIT:C6068 Paranasal Sinus Lymphoma 6 67631 -NCIT:C6069 Paranasal Sinus Non-Hodgkin Lymphoma 7 67632 -NCIT:C6073 Paranasal Sinus Diffuse Large B-Cell Lymphoma 8 67633 -NCIT:C6849 Paranasal Sinus Sarcoma 6 67634 -NCIT:C6850 High Grade Paranasal Sinus Sarcoma 7 67635 -NCIT:C6851 Low Grade Paranasal Sinus Sarcoma 7 67636 -NCIT:C8532 Benign Paranasal Sinus Neoplasm 5 67637 -NCIT:C4414 Benign Maxillary Sinus Neoplasm 6 67638 -NCIT:C6839 Maxillary Sinus Papilloma 7 67639 -NCIT:C6840 Maxillary Sinus Inverted Papilloma 8 67640 -NCIT:C4417 Benign Ethmoid Sinus Neoplasm 6 67641 -NCIT:C6836 Ethmoid Sinus Papilloma 7 67642 -NCIT:C6843 Ethmoid Sinus Inverted Papilloma 8 67643 -NCIT:C4420 Benign Frontal Sinus Neoplasm 6 67644 -NCIT:C6837 Frontal Sinus Papilloma 7 67645 -NCIT:C6842 Frontal Sinus Inverted Papilloma 8 67646 -NCIT:C4422 Benign Sphenoid Sinus Neoplasm 6 67647 -NCIT:C6838 Sphenoid Sinus Papilloma 7 67648 -NCIT:C6841 Sphenoid Sinus Inverted Papilloma 8 67649 -NCIT:C6835 Paranasal Sinus Papilloma 6 67650 -NCIT:C6836 Ethmoid Sinus Papilloma 7 67651 -NCIT:C6843 Ethmoid Sinus Inverted Papilloma 8 67652 -NCIT:C6837 Frontal Sinus Papilloma 7 67653 -NCIT:C6842 Frontal Sinus Inverted Papilloma 8 67654 -NCIT:C6838 Sphenoid Sinus Papilloma 7 67655 -NCIT:C6841 Sphenoid Sinus Inverted Papilloma 8 67656 -NCIT:C6839 Maxillary Sinus Papilloma 7 67657 -NCIT:C6840 Maxillary Sinus Inverted Papilloma 8 67658 -NCIT:C8195 Paranasal Sinus Inverted Papilloma 7 67659 -NCIT:C6840 Maxillary Sinus Inverted Papilloma 8 67660 -NCIT:C6841 Sphenoid Sinus Inverted Papilloma 8 67661 -NCIT:C6842 Frontal Sinus Inverted Papilloma 8 67662 -NCIT:C6843 Ethmoid Sinus Inverted Papilloma 8 67663 -NCIT:C8989 Oral Neoplasm 3 67664 -NCIT:C133192 Oral Intraepithelial Neoplasia 4 67665 -NCIT:C186731 Oral Melanocytic Nevus 4 67666 -NCIT:C3191 Lip Neoplasm 4 67667 -NCIT:C3591 Benign Lip Neoplasm 5 67668 -NCIT:C4372 Cherry Hemangioma of Lip 6 67669 -NCIT:C7485 Malignant Lip Neoplasm 5 67670 -NCIT:C3490 Lip Carcinoma 6 67671 -NCIT:C156088 Metastatic Lip Carcinoma 7 67672 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 67673 -NCIT:C4042 Lip Squamous Cell Carcinoma 7 67674 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 67675 -NCIT:C4588 Stage 0 Lip Cancer AJCC v6 and v7 7 67676 -NCIT:C5893 Stage 0 Lip Basal Cell Carcinoma AJCC v6 and v7 8 67677 -NCIT:C5876 Stage I Lip Cancer AJCC v6 and v7 7 67678 -NCIT:C8197 Stage I Lip Basal Cell Carcinoma 8 67679 -NCIT:C5877 Stage II Lip Cancer AJCC v6 and v7 7 67680 -NCIT:C8201 Stage II Lip Basal Cell Carcinoma 8 67681 -NCIT:C5878 Stage III Lip Cancer AJCC v6 and v7 7 67682 -NCIT:C8205 Stage III Lip Basal Cell Carcinoma 8 67683 -NCIT:C5879 Stage IV Lip Cancer AJCC v6 and v7 7 67684 -NCIT:C5880 Stage IVA Lip Cancer AJCC v6 and v7 8 67685 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 9 67686 -NCIT:C5881 Stage IVB Lip Cancer AJCC v6 and v7 8 67687 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 9 67688 -NCIT:C5882 Stage IVC Lip Cancer AJCC v6 and v7 8 67689 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 9 67690 -NCIT:C8209 Stage IV Lip Basal Cell Carcinoma 8 67691 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 9 67692 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 9 67693 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 9 67694 -NCIT:C8014 Lip Basal Cell Carcinoma 7 67695 -NCIT:C5893 Stage 0 Lip Basal Cell Carcinoma AJCC v6 and v7 8 67696 -NCIT:C8197 Stage I Lip Basal Cell Carcinoma 8 67697 -NCIT:C8201 Stage II Lip Basal Cell Carcinoma 8 67698 -NCIT:C8205 Stage III Lip Basal Cell Carcinoma 8 67699 -NCIT:C8209 Stage IV Lip Basal Cell Carcinoma 8 67700 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 9 67701 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 9 67702 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 9 67703 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 8 67704 -NCIT:C8542 Metastatic Malignant Neoplasm in the Lip 6 67705 -NCIT:C7606 Oral Cavity Neoplasm 4 67706 -NCIT:C173479 Oral Cavity Soft Tissue Neoplasm 5 67707 -NCIT:C173480 Benign Oral Cavity Soft Tissue Neoplasm 6 67708 -NCIT:C27478 Gingival Angiofibroma 7 67709 -NCIT:C3950 Oral Mucosa Lobular Capillary Hemangioma 7 67710 -NCIT:C4831 Gingival Hemangioma 7 67711 -NCIT:C5909 Oral Cavity Leiomyoma 7 67712 -NCIT:C5910 Oral Cavity Lipoma 7 67713 -NCIT:C7734 Tongue Lipoma 8 67714 -NCIT:C173481 Oral Cavity Soft Tissue Sarcoma 6 67715 -NCIT:C156274 Tongue Sarcoma 7 67716 -NCIT:C156273 Tongue Alveolar Soft Part Sarcoma' 8 67717 -NCIT:C173404 Tongue Liposarcoma 8 67718 -NCIT:C173477 Oral Cavity Kaposi Sarcoma 7 67719 -NCIT:C6749 Palate Kaposi Sarcoma 8 67720 -NCIT:C173478 Oral Cavity Low Grade Myofibroblastic Sarcoma 7 67721 -NCIT:C173487 Oral Mucosa Langerhans Cell Histiocytosis 5 67722 -NCIT:C3057 Gingival Neoplasm 5 67723 -NCIT:C4598 Benign Gingival Neoplasm 6 67724 -NCIT:C27478 Gingival Angiofibroma 7 67725 -NCIT:C4831 Gingival Hemangioma 7 67726 -NCIT:C9317 Malignant Gingival Neoplasm 6 67727 -NCIT:C7721 Gingival Carcinoma 7 67728 -NCIT:C129857 Gingival Squamous Cell Carcinoma 8 67729 -NCIT:C129289 Gingival Spindle Cell Carcinoma 9 67730 -NCIT:C8171 Lower Gingival Squamous Cell Carcinoma 9 67731 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 10 67732 -NCIT:C8172 Retromolar Trigone Squamous Cell Carcinoma 9 67733 -NCIT:C8173 Upper Gingival Squamous Cell Carcinoma 9 67734 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 10 67735 -NCIT:C8392 Upper Gingival Carcinoma 8 67736 -NCIT:C8173 Upper Gingival Squamous Cell Carcinoma 9 67737 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 10 67738 -NCIT:C8393 Lower Gingival Carcinoma 8 67739 -NCIT:C8171 Lower Gingival Squamous Cell Carcinoma 9 67740 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 10 67741 -NCIT:C3286 Odontogenic Neoplasm 5 67742 -NCIT:C190152 Childhood Odontogenic Neoplasm 6 67743 -NCIT:C190154 Childhood Ameloblastoma 7 67744 -NCIT:C190155 Childhood Ameloblastic Fibroma 7 67745 -NCIT:C190156 Childhood Adenomatoid Odontogenic Tumor 7 67746 -NCIT:C190157 Childhood Odontogenic Myxoma 7 67747 -NCIT:C4306 Benign Odontogenic Neoplasm 6 67748 -NCIT:C173819 Primordial Odontogenic Tumor 7 67749 -NCIT:C3710 Ameloblastic Fibro-Odontoma 7 67750 -NCIT:C4308 Cementoblastoma 7 67751 -NCIT:C4310 Adenomatoid Odontogenic Tumor 7 67752 -NCIT:C190156 Childhood Adenomatoid Odontogenic Tumor 8 67753 -NCIT:C4314 Odontogenic Fibroma 7 67754 -NCIT:C4315 Peripheral Odontogenic Fibroma 8 67755 -NCIT:C4316 Ameloblastic Fibroma 7 67756 -NCIT:C190155 Childhood Ameloblastic Fibroma 8 67757 -NCIT:C54301 Calcifying Epithelial Odontogenic Tumor 7 67758 -NCIT:C54319 Calcifying Cystic Odontogenic Tumor 7 67759 -NCIT:C54323 Dentinogenic Ghost Cell Tumor 7 67760 -NCIT:C66800 Ameloblastic Fibrodentinoma 7 67761 -NCIT:C7111 Benign Ameloblastoma 7 67762 -NCIT:C7112 Squamous Odontogenic Tumor 7 67763 -NCIT:C7452 Odontogenic Myxofibroma 7 67764 -NCIT:C7501 Odontogenic Myxoma 7 67765 -NCIT:C190157 Childhood Odontogenic Myxoma 8 67766 -NCIT:C8422 Cemento-Ossifying Fibroma 7 67767 -NCIT:C4313 Ameloblastoma 6 67768 -NCIT:C190154 Childhood Ameloblastoma 7 67769 -NCIT:C27396 Extraosseous/Peripheral Ameloblastoma 7 67770 -NCIT:C39755 Solid/Multicystic Ameloblastoma 7 67771 -NCIT:C27397 Follicular Ameloblastoma 8 67772 -NCIT:C27398 Granular Cell Ameloblastoma 9 67773 -NCIT:C39754 Acanthomatous Ameloblastoma 9 67774 -NCIT:C39757 Basal Cell Ameloblastoma 9 67775 -NCIT:C39753 Plexiform Ameloblastoma 8 67776 -NCIT:C39756 Unicystic Ameloblastoma 7 67777 -NCIT:C39758 Desmoplastic Ameloblastoma 7 67778 -NCIT:C54297 Metastasizing Ameloblastoma 7 67779 -NCIT:C7111 Benign Ameloblastoma 7 67780 -NCIT:C4812 Malignant Odontogenic Neoplasm 6 67781 -NCIT:C173720 Odontogenic Carcinoma 7 67782 -NCIT:C173733 Sclerosing Odontogenic Carcinoma 8 67783 -NCIT:C4311 Ghost Cell Odontogenic Carcinoma 8 67784 -NCIT:C54295 Primary Intraosseous Squamous Cell Carcinoma 8 67785 -NCIT:C54303 Primary Intraosseous Squamous Cell Carcinoma Derived From Keratocystic Odontogenic Tumor 9 67786 -NCIT:C7491 Primary Intraosseous Squamous Cell Carcinoma-Solid Type 9 67787 -NCIT:C7498 Keratinizing Primary Intraosseous Squamous Cell Carcinoma-Solid Type 10 67788 -NCIT:C7499 Non-Keratinizing Primary Intraosseous Squamous Cell Carcinoma -Solid Type 10 67789 -NCIT:C7500 Primary Intraosseous Squamous Cell Carcinoma Derived From Odontogenic Cyst 9 67790 -NCIT:C54300 Clear Cell Odontogenic Carcinoma 8 67791 -NCIT:C7492 Ameloblastic Carcinoma 8 67792 -NCIT:C7493 Ameloblastic Carcinoma-Primary Type 9 67793 -NCIT:C7496 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated) 9 67794 -NCIT:C54298 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated), Intraosseous 10 67795 -NCIT:C54299 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated), Peripheral 10 67796 -NCIT:C7497 Ameloblastic Carcinoma Derived From Odontogenic Cyst 9 67797 -NCIT:C173735 Odontogenic Carcinosarcoma 7 67798 -NCIT:C173738 Odontogenic Sarcoma 7 67799 -NCIT:C173739 Ameloblastic Fibrodentinosarcoma 8 67800 -NCIT:C173740 Ameloblastic Fibroodontosarcoma 8 67801 -NCIT:C4317 Ameloblastic Fibrosarcoma 8 67802 -NCIT:C3416 Tongue Neoplasm 5 67803 -NCIT:C3592 Benign Tongue Neoplasm 6 67804 -NCIT:C4408 Benign Posterior Tongue Neoplasm 7 67805 -NCIT:C6063 Benign Anterior Tongue Neoplasm 7 67806 -NCIT:C7734 Tongue Lipoma 7 67807 -NCIT:C4400 Posterior Tongue Neoplasm 6 67808 -NCIT:C3524 Malignant Posterior Tongue Neoplasm 7 67809 -NCIT:C8407 Posterior Tongue Carcinoma 8 67810 -NCIT:C5990 Posterior Tongue Mucoepidermoid Carcinoma 9 67811 -NCIT:C5991 Posterior Tongue Adenoid Cystic Carcinoma 9 67812 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 67813 -NCIT:C4408 Benign Posterior Tongue Neoplasm 7 67814 -NCIT:C6062 Anterior Tongue Neoplasm 6 67815 -NCIT:C6061 Malignant Anterior Tongue Neoplasm 7 67816 -NCIT:C6249 Anterior Tongue Carcinoma 8 67817 -NCIT:C6250 Anterior Tongue Mucoepidermoid Carcinoma 9 67818 -NCIT:C6251 Anterior Tongue Adenoid Cystic Carcinoma 9 67819 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 67820 -NCIT:C6063 Benign Anterior Tongue Neoplasm 7 67821 -NCIT:C9345 Malignant Tongue Neoplasm 6 67822 -NCIT:C156274 Tongue Sarcoma 7 67823 -NCIT:C156273 Tongue Alveolar Soft Part Sarcoma' 8 67824 -NCIT:C173404 Tongue Liposarcoma 8 67825 -NCIT:C3524 Malignant Posterior Tongue Neoplasm 7 67826 -NCIT:C8407 Posterior Tongue Carcinoma 8 67827 -NCIT:C5990 Posterior Tongue Mucoepidermoid Carcinoma 9 67828 -NCIT:C5991 Posterior Tongue Adenoid Cystic Carcinoma 9 67829 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 67830 -NCIT:C4824 Tongue Carcinoma 7 67831 -NCIT:C171028 Tongue Adenoid Cystic Carcinoma 8 67832 -NCIT:C5991 Posterior Tongue Adenoid Cystic Carcinoma 9 67833 -NCIT:C6251 Anterior Tongue Adenoid Cystic Carcinoma 9 67834 -NCIT:C173807 Tongue Adenosquamous Carcinoma 8 67835 -NCIT:C181160 Tongue Mucoepidermoid Carcinoma 8 67836 -NCIT:C5990 Posterior Tongue Mucoepidermoid Carcinoma 9 67837 -NCIT:C6250 Anterior Tongue Mucoepidermoid Carcinoma 9 67838 -NCIT:C4648 Tongue Squamous Cell Carcinoma 8 67839 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 67840 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 67841 -NCIT:C6249 Anterior Tongue Carcinoma 8 67842 -NCIT:C6250 Anterior Tongue Mucoepidermoid Carcinoma 9 67843 -NCIT:C6251 Anterior Tongue Adenoid Cystic Carcinoma 9 67844 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 67845 -NCIT:C8407 Posterior Tongue Carcinoma 8 67846 -NCIT:C5990 Posterior Tongue Mucoepidermoid Carcinoma 9 67847 -NCIT:C5991 Posterior Tongue Adenoid Cystic Carcinoma 9 67848 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 67849 -NCIT:C6061 Malignant Anterior Tongue Neoplasm 7 67850 -NCIT:C6249 Anterior Tongue Carcinoma 8 67851 -NCIT:C6250 Anterior Tongue Mucoepidermoid Carcinoma 9 67852 -NCIT:C6251 Anterior Tongue Adenoid Cystic Carcinoma 9 67853 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 67854 -NCIT:C3417 Tonsillar Neoplasm 5 67855 -NCIT:C3594 Benign Tonsillar Neoplasm 6 67856 -NCIT:C5989 Tonsillar Lipoma 7 67857 -NCIT:C7404 Malignant Tonsillar Neoplasm 6 67858 -NCIT:C4825 Tonsillar Carcinoma 7 67859 -NCIT:C8183 Tonsillar Squamous Cell Carcinoma 8 67860 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 9 67861 -NCIT:C5918 Tonsillar Lymphoma 7 67862 -NCIT:C188072 Tonsillar Diffuse Large B-Cell Lymphoma 8 67863 -NCIT:C188080 Tonsillar Mantle Cell Lymphoma 8 67864 -NCIT:C4401 Floor of the Mouth Neoplasm 5 67865 -NCIT:C3593 Benign Floor of the Mouth Neoplasm 6 67866 -NCIT:C9318 Malignant Floor of the Mouth Neoplasm 6 67867 -NCIT:C9319 Floor of the Mouth Carcinoma 7 67868 -NCIT:C4041 Floor of Mouth Squamous Cell Carcinoma 8 67869 -NCIT:C129873 Floor of Mouth Basaloid Squamous Cell Carcinoma 9 67870 -NCIT:C8178 Floor of Mouth Mucoepidermoid Carcinoma 8 67871 -NCIT:C8180 Floor of Mouth Adenoid Cystic Carcinoma 8 67872 -NCIT:C4402 Palate Neoplasm 5 67873 -NCIT:C3530 Malignant Palate Neoplasm 6 67874 -NCIT:C3528 Malignant Hard Palate Neoplasm 7 67875 -NCIT:C8394 Hard Palate Carcinoma 8 67876 -NCIT:C6213 Hard Palate Adenoid Cystic Carcinoma 9 67877 -NCIT:C6214 Hard Palate Mucoepidermoid Carcinoma 9 67878 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 67879 -NCIT:C3529 Malignant Soft Palate Neoplasm 7 67880 -NCIT:C35177 Malignant Uvula Neoplasm 8 67881 -NCIT:C8395 Soft Palate Carcinoma 8 67882 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 67883 -NCIT:C6749 Palate Kaposi Sarcoma 7 67884 -NCIT:C8463 Palate Carcinoma 7 67885 -NCIT:C4649 Palate Squamous Cell Carcinoma 8 67886 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 67887 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 67888 -NCIT:C8394 Hard Palate Carcinoma 8 67889 -NCIT:C6213 Hard Palate Adenoid Cystic Carcinoma 9 67890 -NCIT:C6214 Hard Palate Mucoepidermoid Carcinoma 9 67891 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 67892 -NCIT:C8395 Soft Palate Carcinoma 8 67893 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 67894 -NCIT:C4599 Benign Palate Neoplasm 6 67895 -NCIT:C4403 Benign Hard Palate Neoplasm 7 67896 -NCIT:C6212 Hard Palate Pleomorphic Adenoma 8 67897 -NCIT:C6844 Hard Palate Monomorphic Adenoma 8 67898 -NCIT:C4404 Benign Soft Palate Neoplasm 7 67899 -NCIT:C35698 Benign Uvula Neoplasm 8 67900 -NCIT:C6210 Soft Palate Benign Granular Cell Tumor 8 67901 -NCIT:C6211 Soft Palate Pleomorphic Adenoma 8 67902 -NCIT:C4405 Buccal Mucosa Neoplasm 5 67903 -NCIT:C4406 Benign Buccal Mucosa Neoplasm 6 67904 -NCIT:C5819 Buccal Squamous Papilloma 7 67905 -NCIT:C9320 Malignant Buccal Mucosa Neoplasm 6 67906 -NCIT:C4040 Buccal Mucosa Squamous Cell Carcinoma 7 67907 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 8 67908 -NCIT:C5912 Oral Cavity Granular Cell Tumor 5 67909 -NCIT:C7605 Oral Cavity Benign Granular Cell Tumor 6 67910 -NCIT:C6210 Soft Palate Benign Granular Cell Tumor 7 67911 -NCIT:C7607 Benign Oral Cavity Neoplasm 5 67912 -NCIT:C173480 Benign Oral Cavity Soft Tissue Neoplasm 6 67913 -NCIT:C27478 Gingival Angiofibroma 7 67914 -NCIT:C3950 Oral Mucosa Lobular Capillary Hemangioma 7 67915 -NCIT:C4831 Gingival Hemangioma 7 67916 -NCIT:C5909 Oral Cavity Leiomyoma 7 67917 -NCIT:C5910 Oral Cavity Lipoma 7 67918 -NCIT:C7734 Tongue Lipoma 8 67919 -NCIT:C3592 Benign Tongue Neoplasm 6 67920 -NCIT:C4408 Benign Posterior Tongue Neoplasm 7 67921 -NCIT:C6063 Benign Anterior Tongue Neoplasm 7 67922 -NCIT:C7734 Tongue Lipoma 7 67923 -NCIT:C3593 Benign Floor of the Mouth Neoplasm 6 67924 -NCIT:C3594 Benign Tonsillar Neoplasm 6 67925 -NCIT:C5989 Tonsillar Lipoma 7 67926 -NCIT:C4306 Benign Odontogenic Neoplasm 6 67927 -NCIT:C173819 Primordial Odontogenic Tumor 7 67928 -NCIT:C3710 Ameloblastic Fibro-Odontoma 7 67929 -NCIT:C4308 Cementoblastoma 7 67930 -NCIT:C4310 Adenomatoid Odontogenic Tumor 7 67931 -NCIT:C190156 Childhood Adenomatoid Odontogenic Tumor 8 67932 -NCIT:C4314 Odontogenic Fibroma 7 67933 -NCIT:C4315 Peripheral Odontogenic Fibroma 8 67934 -NCIT:C4316 Ameloblastic Fibroma 7 67935 -NCIT:C190155 Childhood Ameloblastic Fibroma 8 67936 -NCIT:C54301 Calcifying Epithelial Odontogenic Tumor 7 67937 -NCIT:C54319 Calcifying Cystic Odontogenic Tumor 7 67938 -NCIT:C54323 Dentinogenic Ghost Cell Tumor 7 67939 -NCIT:C66800 Ameloblastic Fibrodentinoma 7 67940 -NCIT:C7111 Benign Ameloblastoma 7 67941 -NCIT:C7112 Squamous Odontogenic Tumor 7 67942 -NCIT:C7452 Odontogenic Myxofibroma 7 67943 -NCIT:C7501 Odontogenic Myxoma 7 67944 -NCIT:C190157 Childhood Odontogenic Myxoma 8 67945 -NCIT:C8422 Cemento-Ossifying Fibroma 7 67946 -NCIT:C4403 Benign Hard Palate Neoplasm 6 67947 -NCIT:C6212 Hard Palate Pleomorphic Adenoma 7 67948 -NCIT:C6844 Hard Palate Monomorphic Adenoma 7 67949 -NCIT:C4406 Benign Buccal Mucosa Neoplasm 6 67950 -NCIT:C5819 Buccal Squamous Papilloma 7 67951 -NCIT:C4598 Benign Gingival Neoplasm 6 67952 -NCIT:C27478 Gingival Angiofibroma 7 67953 -NCIT:C4831 Gingival Hemangioma 7 67954 -NCIT:C5913 Oral Cavity Adenoma 6 67955 -NCIT:C6242 Oral Cavity Pleomorphic Adenoma 7 67956 -NCIT:C6211 Soft Palate Pleomorphic Adenoma 8 67957 -NCIT:C6212 Hard Palate Pleomorphic Adenoma 8 67958 -NCIT:C6845 Oral Cavity Monomorphic Adenoma 7 67959 -NCIT:C6844 Hard Palate Monomorphic Adenoma 8 67960 -NCIT:C7605 Oral Cavity Benign Granular Cell Tumor 6 67961 -NCIT:C6210 Soft Palate Benign Granular Cell Tumor 7 67962 -NCIT:C9314 Malignant Oral Cavity Neoplasm 5 67963 -NCIT:C173489 Oral Cavity Myeloid Sarcoma 6 67964 -NCIT:C3530 Malignant Palate Neoplasm 6 67965 -NCIT:C3528 Malignant Hard Palate Neoplasm 7 67966 -NCIT:C8394 Hard Palate Carcinoma 8 67967 -NCIT:C6213 Hard Palate Adenoid Cystic Carcinoma 9 67968 -NCIT:C6214 Hard Palate Mucoepidermoid Carcinoma 9 67969 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 67970 -NCIT:C3529 Malignant Soft Palate Neoplasm 7 67971 -NCIT:C35177 Malignant Uvula Neoplasm 8 67972 -NCIT:C8395 Soft Palate Carcinoma 8 67973 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 67974 -NCIT:C6749 Palate Kaposi Sarcoma 7 67975 -NCIT:C8463 Palate Carcinoma 7 67976 -NCIT:C4649 Palate Squamous Cell Carcinoma 8 67977 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 67978 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 67979 -NCIT:C8394 Hard Palate Carcinoma 8 67980 -NCIT:C6213 Hard Palate Adenoid Cystic Carcinoma 9 67981 -NCIT:C6214 Hard Palate Mucoepidermoid Carcinoma 9 67982 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 67983 -NCIT:C8395 Soft Palate Carcinoma 8 67984 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 67985 -NCIT:C4812 Malignant Odontogenic Neoplasm 6 67986 -NCIT:C173720 Odontogenic Carcinoma 7 67987 -NCIT:C173733 Sclerosing Odontogenic Carcinoma 8 67988 -NCIT:C4311 Ghost Cell Odontogenic Carcinoma 8 67989 -NCIT:C54295 Primary Intraosseous Squamous Cell Carcinoma 8 67990 -NCIT:C54303 Primary Intraosseous Squamous Cell Carcinoma Derived From Keratocystic Odontogenic Tumor 9 67991 -NCIT:C7491 Primary Intraosseous Squamous Cell Carcinoma-Solid Type 9 67992 -NCIT:C7498 Keratinizing Primary Intraosseous Squamous Cell Carcinoma-Solid Type 10 67993 -NCIT:C7499 Non-Keratinizing Primary Intraosseous Squamous Cell Carcinoma -Solid Type 10 67994 -NCIT:C7500 Primary Intraosseous Squamous Cell Carcinoma Derived From Odontogenic Cyst 9 67995 -NCIT:C54300 Clear Cell Odontogenic Carcinoma 8 67996 -NCIT:C7492 Ameloblastic Carcinoma 8 67997 -NCIT:C7493 Ameloblastic Carcinoma-Primary Type 9 67998 -NCIT:C7496 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated) 9 67999 -NCIT:C54298 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated), Intraosseous 10 68000 -NCIT:C54299 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated), Peripheral 10 68001 -NCIT:C7497 Ameloblastic Carcinoma Derived From Odontogenic Cyst 9 68002 -NCIT:C173735 Odontogenic Carcinosarcoma 7 68003 -NCIT:C173738 Odontogenic Sarcoma 7 68004 -NCIT:C173739 Ameloblastic Fibrodentinosarcoma 8 68005 -NCIT:C173740 Ameloblastic Fibroodontosarcoma 8 68006 -NCIT:C4317 Ameloblastic Fibrosarcoma 8 68007 -NCIT:C5915 Oral Cavity Mucosal Melanoma 6 68008 -NCIT:C5916 Oral Cavity Sarcoma 6 68009 -NCIT:C173481 Oral Cavity Soft Tissue Sarcoma 7 68010 -NCIT:C156274 Tongue Sarcoma 8 68011 -NCIT:C156273 Tongue Alveolar Soft Part Sarcoma' 9 68012 -NCIT:C173404 Tongue Liposarcoma 9 68013 -NCIT:C173477 Oral Cavity Kaposi Sarcoma 8 68014 -NCIT:C6749 Palate Kaposi Sarcoma 9 68015 -NCIT:C173478 Oral Cavity Low Grade Myofibroblastic Sarcoma 8 68016 -NCIT:C173738 Odontogenic Sarcoma 7 68017 -NCIT:C173739 Ameloblastic Fibrodentinosarcoma 8 68018 -NCIT:C173740 Ameloblastic Fibroodontosarcoma 8 68019 -NCIT:C4317 Ameloblastic Fibrosarcoma 8 68020 -NCIT:C7404 Malignant Tonsillar Neoplasm 6 68021 -NCIT:C4825 Tonsillar Carcinoma 7 68022 -NCIT:C8183 Tonsillar Squamous Cell Carcinoma 8 68023 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 9 68024 -NCIT:C5918 Tonsillar Lymphoma 7 68025 -NCIT:C188072 Tonsillar Diffuse Large B-Cell Lymphoma 8 68026 -NCIT:C188080 Tonsillar Mantle Cell Lymphoma 8 68027 -NCIT:C8990 Oral Cavity Carcinoma 6 68028 -NCIT:C156087 Metastatic Oral Cavity Carcinoma 7 68029 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 68030 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 68031 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 68032 -NCIT:C156089 Metastatic Oral Cavity Adenoid Cystic Carcinoma 8 68033 -NCIT:C156090 Metastatic Oral Cavity Mucoepidermoid Carcinoma 8 68034 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 8 68035 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 68036 -NCIT:C173720 Odontogenic Carcinoma 7 68037 -NCIT:C173733 Sclerosing Odontogenic Carcinoma 8 68038 -NCIT:C4311 Ghost Cell Odontogenic Carcinoma 8 68039 -NCIT:C54295 Primary Intraosseous Squamous Cell Carcinoma 8 68040 -NCIT:C54303 Primary Intraosseous Squamous Cell Carcinoma Derived From Keratocystic Odontogenic Tumor 9 68041 -NCIT:C7491 Primary Intraosseous Squamous Cell Carcinoma-Solid Type 9 68042 -NCIT:C7498 Keratinizing Primary Intraosseous Squamous Cell Carcinoma-Solid Type 10 68043 -NCIT:C7499 Non-Keratinizing Primary Intraosseous Squamous Cell Carcinoma -Solid Type 10 68044 -NCIT:C7500 Primary Intraosseous Squamous Cell Carcinoma Derived From Odontogenic Cyst 9 68045 -NCIT:C54300 Clear Cell Odontogenic Carcinoma 8 68046 -NCIT:C7492 Ameloblastic Carcinoma 8 68047 -NCIT:C7493 Ameloblastic Carcinoma-Primary Type 9 68048 -NCIT:C7496 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated) 9 68049 -NCIT:C54298 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated), Intraosseous 10 68050 -NCIT:C54299 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated), Peripheral 10 68051 -NCIT:C7497 Ameloblastic Carcinoma Derived From Odontogenic Cyst 9 68052 -NCIT:C4587 Stage 0 Oral Cavity Cancer AJCC v6 and v7 7 68053 -NCIT:C6052 Stage 0 Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 68054 -NCIT:C4824 Tongue Carcinoma 7 68055 -NCIT:C171028 Tongue Adenoid Cystic Carcinoma 8 68056 -NCIT:C5991 Posterior Tongue Adenoid Cystic Carcinoma 9 68057 -NCIT:C6251 Anterior Tongue Adenoid Cystic Carcinoma 9 68058 -NCIT:C173807 Tongue Adenosquamous Carcinoma 8 68059 -NCIT:C181160 Tongue Mucoepidermoid Carcinoma 8 68060 -NCIT:C5990 Posterior Tongue Mucoepidermoid Carcinoma 9 68061 -NCIT:C6250 Anterior Tongue Mucoepidermoid Carcinoma 9 68062 -NCIT:C4648 Tongue Squamous Cell Carcinoma 8 68063 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 68064 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 68065 -NCIT:C6249 Anterior Tongue Carcinoma 8 68066 -NCIT:C6250 Anterior Tongue Mucoepidermoid Carcinoma 9 68067 -NCIT:C6251 Anterior Tongue Adenoid Cystic Carcinoma 9 68068 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 68069 -NCIT:C8407 Posterior Tongue Carcinoma 8 68070 -NCIT:C5990 Posterior Tongue Mucoepidermoid Carcinoma 9 68071 -NCIT:C5991 Posterior Tongue Adenoid Cystic Carcinoma 9 68072 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 68073 -NCIT:C4833 Oral Cavity Squamous Cell Carcinoma 7 68074 -NCIT:C129857 Gingival Squamous Cell Carcinoma 8 68075 -NCIT:C129289 Gingival Spindle Cell Carcinoma 9 68076 -NCIT:C8171 Lower Gingival Squamous Cell Carcinoma 9 68077 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 10 68078 -NCIT:C8172 Retromolar Trigone Squamous Cell Carcinoma 9 68079 -NCIT:C8173 Upper Gingival Squamous Cell Carcinoma 9 68080 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 10 68081 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 8 68082 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 68083 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 68084 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 68085 -NCIT:C170774 Alveolar Ridge Squamous Cell Carcinoma 8 68086 -NCIT:C170775 Upper Alveolar Ridge Squamous Cell Carcinoma 9 68087 -NCIT:C170776 Lower Alveolar Ridge Squamous Cell Carcinoma 9 68088 -NCIT:C172644 Unresectable Oral Cavity Squamous Cell Carcinoma 8 68089 -NCIT:C4040 Buccal Mucosa Squamous Cell Carcinoma 8 68090 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 9 68091 -NCIT:C4041 Floor of Mouth Squamous Cell Carcinoma 8 68092 -NCIT:C129873 Floor of Mouth Basaloid Squamous Cell Carcinoma 9 68093 -NCIT:C4648 Tongue Squamous Cell Carcinoma 8 68094 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 68095 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 68096 -NCIT:C4649 Palate Squamous Cell Carcinoma 8 68097 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 68098 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 68099 -NCIT:C54295 Primary Intraosseous Squamous Cell Carcinoma 8 68100 -NCIT:C54303 Primary Intraosseous Squamous Cell Carcinoma Derived From Keratocystic Odontogenic Tumor 9 68101 -NCIT:C7491 Primary Intraosseous Squamous Cell Carcinoma-Solid Type 9 68102 -NCIT:C7498 Keratinizing Primary Intraosseous Squamous Cell Carcinoma-Solid Type 10 68103 -NCIT:C7499 Non-Keratinizing Primary Intraosseous Squamous Cell Carcinoma -Solid Type 10 68104 -NCIT:C7500 Primary Intraosseous Squamous Cell Carcinoma Derived From Odontogenic Cyst 9 68105 -NCIT:C6052 Stage 0 Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 68106 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 68107 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 68108 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 68109 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 68110 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 68111 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 68112 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 68113 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 68114 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 68115 -NCIT:C8174 Oral Cavity Verrucous Carcinoma 8 68116 -NCIT:C179894 Oral Cavity Carcinoma Cuniculatum 9 68117 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 9 68118 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 9 68119 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 9 68120 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 68121 -NCIT:C5883 Stage I Oral Cavity Cancer AJCC v6 and v7 7 68122 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 68123 -NCIT:C8199 Stage I Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 68124 -NCIT:C8200 Stage I Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 68125 -NCIT:C5884 Stage II Oral Cavity Cancer AJCC v6 and v7 7 68126 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 68127 -NCIT:C8203 Stage II Oral Cavity Mucoepidermoid Carcinoma 8 68128 -NCIT:C8204 Stage II Oral Cavity Adenoid Cystic Carcinoma 8 68129 -NCIT:C5885 Stage III Oral Cavity Cancer AJCC v6 and v7 7 68130 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 68131 -NCIT:C8207 Stage III Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 68132 -NCIT:C8208 Stage III Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 68133 -NCIT:C5886 Stage IV Oral Cavity Cancer AJCC v6 and v7 7 68134 -NCIT:C5887 Stage IVA Oral Cavity Cancer AJCC v6 and v7 8 68135 -NCIT:C5863 Stage IVA Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 68136 -NCIT:C5868 Stage IVA Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 68137 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 68138 -NCIT:C5888 Stage IVB Oral Cavity Cancer AJCC v6 and v7 8 68139 -NCIT:C5864 Stage IVB Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 68140 -NCIT:C5867 Stage IVB Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 68141 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 68142 -NCIT:C5889 Stage IVC Oral Cavity Cancer AJCC v6 and v7 8 68143 -NCIT:C5865 Stage IVC Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 68144 -NCIT:C5866 Stage IVC Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 68145 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 68146 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 68147 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 68148 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 68149 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 68150 -NCIT:C8211 Stage IV Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 68151 -NCIT:C5866 Stage IVC Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 68152 -NCIT:C5867 Stage IVB Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 68153 -NCIT:C5868 Stage IVA Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 68154 -NCIT:C8212 Stage IV Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 68155 -NCIT:C5863 Stage IVA Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 68156 -NCIT:C5864 Stage IVB Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 68157 -NCIT:C5865 Stage IVC Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 68158 -NCIT:C5914 Oral Cavity Adenocarcinoma 7 68159 -NCIT:C6076 Recurrent Oral Cavity Carcinoma 7 68160 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 68161 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 68162 -NCIT:C8215 Recurrent Oral Cavity Mucoepidermoid Carcinoma 8 68163 -NCIT:C8216 Recurrent Oral Cavity Adenoid Cystic Carcinoma 8 68164 -NCIT:C7721 Gingival Carcinoma 7 68165 -NCIT:C129857 Gingival Squamous Cell Carcinoma 8 68166 -NCIT:C129289 Gingival Spindle Cell Carcinoma 9 68167 -NCIT:C8171 Lower Gingival Squamous Cell Carcinoma 9 68168 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 10 68169 -NCIT:C8172 Retromolar Trigone Squamous Cell Carcinoma 9 68170 -NCIT:C8173 Upper Gingival Squamous Cell Carcinoma 9 68171 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 10 68172 -NCIT:C8392 Upper Gingival Carcinoma 8 68173 -NCIT:C8173 Upper Gingival Squamous Cell Carcinoma 9 68174 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 10 68175 -NCIT:C8393 Lower Gingival Carcinoma 8 68176 -NCIT:C8171 Lower Gingival Squamous Cell Carcinoma 9 68177 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 10 68178 -NCIT:C8177 Oral Cavity Mucoepidermoid Carcinoma 7 68179 -NCIT:C156090 Metastatic Oral Cavity Mucoepidermoid Carcinoma 8 68180 -NCIT:C181160 Tongue Mucoepidermoid Carcinoma 8 68181 -NCIT:C5990 Posterior Tongue Mucoepidermoid Carcinoma 9 68182 -NCIT:C6250 Anterior Tongue Mucoepidermoid Carcinoma 9 68183 -NCIT:C6214 Hard Palate Mucoepidermoid Carcinoma 8 68184 -NCIT:C8178 Floor of Mouth Mucoepidermoid Carcinoma 8 68185 -NCIT:C8199 Stage I Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 68186 -NCIT:C8203 Stage II Oral Cavity Mucoepidermoid Carcinoma 8 68187 -NCIT:C8207 Stage III Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 68188 -NCIT:C8211 Stage IV Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 68189 -NCIT:C5866 Stage IVC Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 68190 -NCIT:C5867 Stage IVB Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 68191 -NCIT:C5868 Stage IVA Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 68192 -NCIT:C8215 Recurrent Oral Cavity Mucoepidermoid Carcinoma 8 68193 -NCIT:C8179 Oral Cavity Adenoid Cystic Carcinoma 7 68194 -NCIT:C156089 Metastatic Oral Cavity Adenoid Cystic Carcinoma 8 68195 -NCIT:C171028 Tongue Adenoid Cystic Carcinoma 8 68196 -NCIT:C5991 Posterior Tongue Adenoid Cystic Carcinoma 9 68197 -NCIT:C6251 Anterior Tongue Adenoid Cystic Carcinoma 9 68198 -NCIT:C6213 Hard Palate Adenoid Cystic Carcinoma 8 68199 -NCIT:C8180 Floor of Mouth Adenoid Cystic Carcinoma 8 68200 -NCIT:C8200 Stage I Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 68201 -NCIT:C8204 Stage II Oral Cavity Adenoid Cystic Carcinoma 8 68202 -NCIT:C8208 Stage III Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 68203 -NCIT:C8212 Stage IV Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 68204 -NCIT:C5863 Stage IVA Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 68205 -NCIT:C5864 Stage IVB Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 68206 -NCIT:C5865 Stage IVC Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 68207 -NCIT:C8216 Recurrent Oral Cavity Adenoid Cystic Carcinoma 8 68208 -NCIT:C8463 Palate Carcinoma 7 68209 -NCIT:C4649 Palate Squamous Cell Carcinoma 8 68210 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 68211 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 68212 -NCIT:C8394 Hard Palate Carcinoma 8 68213 -NCIT:C6213 Hard Palate Adenoid Cystic Carcinoma 9 68214 -NCIT:C6214 Hard Palate Mucoepidermoid Carcinoma 9 68215 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 68216 -NCIT:C8395 Soft Palate Carcinoma 8 68217 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 68218 -NCIT:C9319 Floor of the Mouth Carcinoma 7 68219 -NCIT:C4041 Floor of Mouth Squamous Cell Carcinoma 8 68220 -NCIT:C129873 Floor of Mouth Basaloid Squamous Cell Carcinoma 9 68221 -NCIT:C8178 Floor of Mouth Mucoepidermoid Carcinoma 8 68222 -NCIT:C8180 Floor of Mouth Adenoid Cystic Carcinoma 8 68223 -NCIT:C9317 Malignant Gingival Neoplasm 6 68224 -NCIT:C7721 Gingival Carcinoma 7 68225 -NCIT:C129857 Gingival Squamous Cell Carcinoma 8 68226 -NCIT:C129289 Gingival Spindle Cell Carcinoma 9 68227 -NCIT:C8171 Lower Gingival Squamous Cell Carcinoma 9 68228 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 10 68229 -NCIT:C8172 Retromolar Trigone Squamous Cell Carcinoma 9 68230 -NCIT:C8173 Upper Gingival Squamous Cell Carcinoma 9 68231 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 10 68232 -NCIT:C8392 Upper Gingival Carcinoma 8 68233 -NCIT:C8173 Upper Gingival Squamous Cell Carcinoma 9 68234 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 10 68235 -NCIT:C8393 Lower Gingival Carcinoma 8 68236 -NCIT:C8171 Lower Gingival Squamous Cell Carcinoma 9 68237 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 10 68238 -NCIT:C9318 Malignant Floor of the Mouth Neoplasm 6 68239 -NCIT:C9319 Floor of the Mouth Carcinoma 7 68240 -NCIT:C4041 Floor of Mouth Squamous Cell Carcinoma 8 68241 -NCIT:C129873 Floor of Mouth Basaloid Squamous Cell Carcinoma 9 68242 -NCIT:C8178 Floor of Mouth Mucoepidermoid Carcinoma 8 68243 -NCIT:C8180 Floor of Mouth Adenoid Cystic Carcinoma 8 68244 -NCIT:C9320 Malignant Buccal Mucosa Neoplasm 6 68245 -NCIT:C4040 Buccal Mucosa Squamous Cell Carcinoma 7 68246 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 8 68247 -NCIT:C9345 Malignant Tongue Neoplasm 6 68248 -NCIT:C156274 Tongue Sarcoma 7 68249 -NCIT:C156273 Tongue Alveolar Soft Part Sarcoma' 8 68250 -NCIT:C173404 Tongue Liposarcoma 8 68251 -NCIT:C3524 Malignant Posterior Tongue Neoplasm 7 68252 -NCIT:C8407 Posterior Tongue Carcinoma 8 68253 -NCIT:C5990 Posterior Tongue Mucoepidermoid Carcinoma 9 68254 -NCIT:C5991 Posterior Tongue Adenoid Cystic Carcinoma 9 68255 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 68256 -NCIT:C4824 Tongue Carcinoma 7 68257 -NCIT:C171028 Tongue Adenoid Cystic Carcinoma 8 68258 -NCIT:C5991 Posterior Tongue Adenoid Cystic Carcinoma 9 68259 -NCIT:C6251 Anterior Tongue Adenoid Cystic Carcinoma 9 68260 -NCIT:C173807 Tongue Adenosquamous Carcinoma 8 68261 -NCIT:C181160 Tongue Mucoepidermoid Carcinoma 8 68262 -NCIT:C5990 Posterior Tongue Mucoepidermoid Carcinoma 9 68263 -NCIT:C6250 Anterior Tongue Mucoepidermoid Carcinoma 9 68264 -NCIT:C4648 Tongue Squamous Cell Carcinoma 8 68265 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 68266 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 68267 -NCIT:C6249 Anterior Tongue Carcinoma 8 68268 -NCIT:C6250 Anterior Tongue Mucoepidermoid Carcinoma 9 68269 -NCIT:C6251 Anterior Tongue Adenoid Cystic Carcinoma 9 68270 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 68271 -NCIT:C8407 Posterior Tongue Carcinoma 8 68272 -NCIT:C5990 Posterior Tongue Mucoepidermoid Carcinoma 9 68273 -NCIT:C5991 Posterior Tongue Adenoid Cystic Carcinoma 9 68274 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 68275 -NCIT:C6061 Malignant Anterior Tongue Neoplasm 7 68276 -NCIT:C6249 Anterior Tongue Carcinoma 8 68277 -NCIT:C6250 Anterior Tongue Mucoepidermoid Carcinoma 9 68278 -NCIT:C6251 Anterior Tongue Adenoid Cystic Carcinoma 9 68279 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 68280 -NCIT:C7608 Benign Oral Neoplasm 4 68281 -NCIT:C173476 Oral Squamous Papilloma 5 68282 -NCIT:C5819 Buccal Squamous Papilloma 6 68283 -NCIT:C3591 Benign Lip Neoplasm 5 68284 -NCIT:C4372 Cherry Hemangioma of Lip 6 68285 -NCIT:C7607 Benign Oral Cavity Neoplasm 5 68286 -NCIT:C173480 Benign Oral Cavity Soft Tissue Neoplasm 6 68287 -NCIT:C27478 Gingival Angiofibroma 7 68288 -NCIT:C3950 Oral Mucosa Lobular Capillary Hemangioma 7 68289 -NCIT:C4831 Gingival Hemangioma 7 68290 -NCIT:C5909 Oral Cavity Leiomyoma 7 68291 -NCIT:C5910 Oral Cavity Lipoma 7 68292 -NCIT:C7734 Tongue Lipoma 8 68293 -NCIT:C3592 Benign Tongue Neoplasm 6 68294 -NCIT:C4408 Benign Posterior Tongue Neoplasm 7 68295 -NCIT:C6063 Benign Anterior Tongue Neoplasm 7 68296 -NCIT:C7734 Tongue Lipoma 7 68297 -NCIT:C3593 Benign Floor of the Mouth Neoplasm 6 68298 -NCIT:C3594 Benign Tonsillar Neoplasm 6 68299 -NCIT:C5989 Tonsillar Lipoma 7 68300 -NCIT:C4306 Benign Odontogenic Neoplasm 6 68301 -NCIT:C173819 Primordial Odontogenic Tumor 7 68302 -NCIT:C3710 Ameloblastic Fibro-Odontoma 7 68303 -NCIT:C4308 Cementoblastoma 7 68304 -NCIT:C4310 Adenomatoid Odontogenic Tumor 7 68305 -NCIT:C190156 Childhood Adenomatoid Odontogenic Tumor 8 68306 -NCIT:C4314 Odontogenic Fibroma 7 68307 -NCIT:C4315 Peripheral Odontogenic Fibroma 8 68308 -NCIT:C4316 Ameloblastic Fibroma 7 68309 -NCIT:C190155 Childhood Ameloblastic Fibroma 8 68310 -NCIT:C54301 Calcifying Epithelial Odontogenic Tumor 7 68311 -NCIT:C54319 Calcifying Cystic Odontogenic Tumor 7 68312 -NCIT:C54323 Dentinogenic Ghost Cell Tumor 7 68313 -NCIT:C66800 Ameloblastic Fibrodentinoma 7 68314 -NCIT:C7111 Benign Ameloblastoma 7 68315 -NCIT:C7112 Squamous Odontogenic Tumor 7 68316 -NCIT:C7452 Odontogenic Myxofibroma 7 68317 -NCIT:C7501 Odontogenic Myxoma 7 68318 -NCIT:C190157 Childhood Odontogenic Myxoma 8 68319 -NCIT:C8422 Cemento-Ossifying Fibroma 7 68320 -NCIT:C4403 Benign Hard Palate Neoplasm 6 68321 -NCIT:C6212 Hard Palate Pleomorphic Adenoma 7 68322 -NCIT:C6844 Hard Palate Monomorphic Adenoma 7 68323 -NCIT:C4406 Benign Buccal Mucosa Neoplasm 6 68324 -NCIT:C5819 Buccal Squamous Papilloma 7 68325 -NCIT:C4598 Benign Gingival Neoplasm 6 68326 -NCIT:C27478 Gingival Angiofibroma 7 68327 -NCIT:C4831 Gingival Hemangioma 7 68328 -NCIT:C5913 Oral Cavity Adenoma 6 68329 -NCIT:C6242 Oral Cavity Pleomorphic Adenoma 7 68330 -NCIT:C6211 Soft Palate Pleomorphic Adenoma 8 68331 -NCIT:C6212 Hard Palate Pleomorphic Adenoma 8 68332 -NCIT:C6845 Oral Cavity Monomorphic Adenoma 7 68333 -NCIT:C6844 Hard Palate Monomorphic Adenoma 8 68334 -NCIT:C7605 Oral Cavity Benign Granular Cell Tumor 6 68335 -NCIT:C6210 Soft Palate Benign Granular Cell Tumor 7 68336 -NCIT:C9316 Malignant Oral Neoplasm 4 68337 -NCIT:C150530 Refractory Malignant Oral Neoplasm 5 68338 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 6 68339 -NCIT:C7485 Malignant Lip Neoplasm 5 68340 -NCIT:C3490 Lip Carcinoma 6 68341 -NCIT:C156088 Metastatic Lip Carcinoma 7 68342 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 68343 -NCIT:C4042 Lip Squamous Cell Carcinoma 7 68344 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 68345 -NCIT:C4588 Stage 0 Lip Cancer AJCC v6 and v7 7 68346 -NCIT:C5893 Stage 0 Lip Basal Cell Carcinoma AJCC v6 and v7 8 68347 -NCIT:C5876 Stage I Lip Cancer AJCC v6 and v7 7 68348 -NCIT:C8197 Stage I Lip Basal Cell Carcinoma 8 68349 -NCIT:C5877 Stage II Lip Cancer AJCC v6 and v7 7 68350 -NCIT:C8201 Stage II Lip Basal Cell Carcinoma 8 68351 -NCIT:C5878 Stage III Lip Cancer AJCC v6 and v7 7 68352 -NCIT:C8205 Stage III Lip Basal Cell Carcinoma 8 68353 -NCIT:C5879 Stage IV Lip Cancer AJCC v6 and v7 7 68354 -NCIT:C5880 Stage IVA Lip Cancer AJCC v6 and v7 8 68355 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 9 68356 -NCIT:C5881 Stage IVB Lip Cancer AJCC v6 and v7 8 68357 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 9 68358 -NCIT:C5882 Stage IVC Lip Cancer AJCC v6 and v7 8 68359 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 9 68360 -NCIT:C8209 Stage IV Lip Basal Cell Carcinoma 8 68361 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 9 68362 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 9 68363 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 9 68364 -NCIT:C8014 Lip Basal Cell Carcinoma 7 68365 -NCIT:C5893 Stage 0 Lip Basal Cell Carcinoma AJCC v6 and v7 8 68366 -NCIT:C8197 Stage I Lip Basal Cell Carcinoma 8 68367 -NCIT:C8201 Stage II Lip Basal Cell Carcinoma 8 68368 -NCIT:C8205 Stage III Lip Basal Cell Carcinoma 8 68369 -NCIT:C8209 Stage IV Lip Basal Cell Carcinoma 8 68370 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 9 68371 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 9 68372 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 9 68373 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 8 68374 -NCIT:C8542 Metastatic Malignant Neoplasm in the Lip 6 68375 -NCIT:C9262 Recurrent Malignant Oral Neoplasm 5 68376 -NCIT:C8037 Recurrent Lip and Oral Cavity Carcinoma 6 68377 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 68378 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 68379 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 68380 -NCIT:C6076 Recurrent Oral Cavity Carcinoma 7 68381 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 68382 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 68383 -NCIT:C8215 Recurrent Oral Cavity Mucoepidermoid Carcinoma 8 68384 -NCIT:C8216 Recurrent Oral Cavity Adenoid Cystic Carcinoma 8 68385 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 7 68386 -NCIT:C9314 Malignant Oral Cavity Neoplasm 5 68387 -NCIT:C173489 Oral Cavity Myeloid Sarcoma 6 68388 -NCIT:C3530 Malignant Palate Neoplasm 6 68389 -NCIT:C3528 Malignant Hard Palate Neoplasm 7 68390 -NCIT:C8394 Hard Palate Carcinoma 8 68391 -NCIT:C6213 Hard Palate Adenoid Cystic Carcinoma 9 68392 -NCIT:C6214 Hard Palate Mucoepidermoid Carcinoma 9 68393 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 68394 -NCIT:C3529 Malignant Soft Palate Neoplasm 7 68395 -NCIT:C35177 Malignant Uvula Neoplasm 8 68396 -NCIT:C8395 Soft Palate Carcinoma 8 68397 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 68398 -NCIT:C6749 Palate Kaposi Sarcoma 7 68399 -NCIT:C8463 Palate Carcinoma 7 68400 -NCIT:C4649 Palate Squamous Cell Carcinoma 8 68401 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 68402 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 68403 -NCIT:C8394 Hard Palate Carcinoma 8 68404 -NCIT:C6213 Hard Palate Adenoid Cystic Carcinoma 9 68405 -NCIT:C6214 Hard Palate Mucoepidermoid Carcinoma 9 68406 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 68407 -NCIT:C8395 Soft Palate Carcinoma 8 68408 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 68409 -NCIT:C4812 Malignant Odontogenic Neoplasm 6 68410 -NCIT:C173720 Odontogenic Carcinoma 7 68411 -NCIT:C173733 Sclerosing Odontogenic Carcinoma 8 68412 -NCIT:C4311 Ghost Cell Odontogenic Carcinoma 8 68413 -NCIT:C54295 Primary Intraosseous Squamous Cell Carcinoma 8 68414 -NCIT:C54303 Primary Intraosseous Squamous Cell Carcinoma Derived From Keratocystic Odontogenic Tumor 9 68415 -NCIT:C7491 Primary Intraosseous Squamous Cell Carcinoma-Solid Type 9 68416 -NCIT:C7498 Keratinizing Primary Intraosseous Squamous Cell Carcinoma-Solid Type 10 68417 -NCIT:C7499 Non-Keratinizing Primary Intraosseous Squamous Cell Carcinoma -Solid Type 10 68418 -NCIT:C7500 Primary Intraosseous Squamous Cell Carcinoma Derived From Odontogenic Cyst 9 68419 -NCIT:C54300 Clear Cell Odontogenic Carcinoma 8 68420 -NCIT:C7492 Ameloblastic Carcinoma 8 68421 -NCIT:C7493 Ameloblastic Carcinoma-Primary Type 9 68422 -NCIT:C7496 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated) 9 68423 -NCIT:C54298 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated), Intraosseous 10 68424 -NCIT:C54299 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated), Peripheral 10 68425 -NCIT:C7497 Ameloblastic Carcinoma Derived From Odontogenic Cyst 9 68426 -NCIT:C173735 Odontogenic Carcinosarcoma 7 68427 -NCIT:C173738 Odontogenic Sarcoma 7 68428 -NCIT:C173739 Ameloblastic Fibrodentinosarcoma 8 68429 -NCIT:C173740 Ameloblastic Fibroodontosarcoma 8 68430 -NCIT:C4317 Ameloblastic Fibrosarcoma 8 68431 -NCIT:C5915 Oral Cavity Mucosal Melanoma 6 68432 -NCIT:C5916 Oral Cavity Sarcoma 6 68433 -NCIT:C173481 Oral Cavity Soft Tissue Sarcoma 7 68434 -NCIT:C156274 Tongue Sarcoma 8 68435 -NCIT:C156273 Tongue Alveolar Soft Part Sarcoma' 9 68436 -NCIT:C173404 Tongue Liposarcoma 9 68437 -NCIT:C173477 Oral Cavity Kaposi Sarcoma 8 68438 -NCIT:C6749 Palate Kaposi Sarcoma 9 68439 -NCIT:C173478 Oral Cavity Low Grade Myofibroblastic Sarcoma 8 68440 -NCIT:C173738 Odontogenic Sarcoma 7 68441 -NCIT:C173739 Ameloblastic Fibrodentinosarcoma 8 68442 -NCIT:C173740 Ameloblastic Fibroodontosarcoma 8 68443 -NCIT:C4317 Ameloblastic Fibrosarcoma 8 68444 -NCIT:C7404 Malignant Tonsillar Neoplasm 6 68445 -NCIT:C4825 Tonsillar Carcinoma 7 68446 -NCIT:C8183 Tonsillar Squamous Cell Carcinoma 8 68447 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 9 68448 -NCIT:C5918 Tonsillar Lymphoma 7 68449 -NCIT:C188072 Tonsillar Diffuse Large B-Cell Lymphoma 8 68450 -NCIT:C188080 Tonsillar Mantle Cell Lymphoma 8 68451 -NCIT:C8990 Oral Cavity Carcinoma 6 68452 -NCIT:C156087 Metastatic Oral Cavity Carcinoma 7 68453 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 68454 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 68455 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 68456 -NCIT:C156089 Metastatic Oral Cavity Adenoid Cystic Carcinoma 8 68457 -NCIT:C156090 Metastatic Oral Cavity Mucoepidermoid Carcinoma 8 68458 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 8 68459 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 68460 -NCIT:C173720 Odontogenic Carcinoma 7 68461 -NCIT:C173733 Sclerosing Odontogenic Carcinoma 8 68462 -NCIT:C4311 Ghost Cell Odontogenic Carcinoma 8 68463 -NCIT:C54295 Primary Intraosseous Squamous Cell Carcinoma 8 68464 -NCIT:C54303 Primary Intraosseous Squamous Cell Carcinoma Derived From Keratocystic Odontogenic Tumor 9 68465 -NCIT:C7491 Primary Intraosseous Squamous Cell Carcinoma-Solid Type 9 68466 -NCIT:C7498 Keratinizing Primary Intraosseous Squamous Cell Carcinoma-Solid Type 10 68467 -NCIT:C7499 Non-Keratinizing Primary Intraosseous Squamous Cell Carcinoma -Solid Type 10 68468 -NCIT:C7500 Primary Intraosseous Squamous Cell Carcinoma Derived From Odontogenic Cyst 9 68469 -NCIT:C54300 Clear Cell Odontogenic Carcinoma 8 68470 -NCIT:C7492 Ameloblastic Carcinoma 8 68471 -NCIT:C7493 Ameloblastic Carcinoma-Primary Type 9 68472 -NCIT:C7496 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated) 9 68473 -NCIT:C54298 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated), Intraosseous 10 68474 -NCIT:C54299 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated), Peripheral 10 68475 -NCIT:C7497 Ameloblastic Carcinoma Derived From Odontogenic Cyst 9 68476 -NCIT:C4587 Stage 0 Oral Cavity Cancer AJCC v6 and v7 7 68477 -NCIT:C6052 Stage 0 Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 68478 -NCIT:C4824 Tongue Carcinoma 7 68479 -NCIT:C171028 Tongue Adenoid Cystic Carcinoma 8 68480 -NCIT:C5991 Posterior Tongue Adenoid Cystic Carcinoma 9 68481 -NCIT:C6251 Anterior Tongue Adenoid Cystic Carcinoma 9 68482 -NCIT:C173807 Tongue Adenosquamous Carcinoma 8 68483 -NCIT:C181160 Tongue Mucoepidermoid Carcinoma 8 68484 -NCIT:C5990 Posterior Tongue Mucoepidermoid Carcinoma 9 68485 -NCIT:C6250 Anterior Tongue Mucoepidermoid Carcinoma 9 68486 -NCIT:C4648 Tongue Squamous Cell Carcinoma 8 68487 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 68488 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 68489 -NCIT:C6249 Anterior Tongue Carcinoma 8 68490 -NCIT:C6250 Anterior Tongue Mucoepidermoid Carcinoma 9 68491 -NCIT:C6251 Anterior Tongue Adenoid Cystic Carcinoma 9 68492 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 68493 -NCIT:C8407 Posterior Tongue Carcinoma 8 68494 -NCIT:C5990 Posterior Tongue Mucoepidermoid Carcinoma 9 68495 -NCIT:C5991 Posterior Tongue Adenoid Cystic Carcinoma 9 68496 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 68497 -NCIT:C4833 Oral Cavity Squamous Cell Carcinoma 7 68498 -NCIT:C129857 Gingival Squamous Cell Carcinoma 8 68499 -NCIT:C129289 Gingival Spindle Cell Carcinoma 9 68500 -NCIT:C8171 Lower Gingival Squamous Cell Carcinoma 9 68501 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 10 68502 -NCIT:C8172 Retromolar Trigone Squamous Cell Carcinoma 9 68503 -NCIT:C8173 Upper Gingival Squamous Cell Carcinoma 9 68504 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 10 68505 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 8 68506 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 68507 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 68508 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 68509 -NCIT:C170774 Alveolar Ridge Squamous Cell Carcinoma 8 68510 -NCIT:C170775 Upper Alveolar Ridge Squamous Cell Carcinoma 9 68511 -NCIT:C170776 Lower Alveolar Ridge Squamous Cell Carcinoma 9 68512 -NCIT:C172644 Unresectable Oral Cavity Squamous Cell Carcinoma 8 68513 -NCIT:C4040 Buccal Mucosa Squamous Cell Carcinoma 8 68514 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 9 68515 -NCIT:C4041 Floor of Mouth Squamous Cell Carcinoma 8 68516 -NCIT:C129873 Floor of Mouth Basaloid Squamous Cell Carcinoma 9 68517 -NCIT:C4648 Tongue Squamous Cell Carcinoma 8 68518 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 68519 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 68520 -NCIT:C4649 Palate Squamous Cell Carcinoma 8 68521 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 68522 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 68523 -NCIT:C54295 Primary Intraosseous Squamous Cell Carcinoma 8 68524 -NCIT:C54303 Primary Intraosseous Squamous Cell Carcinoma Derived From Keratocystic Odontogenic Tumor 9 68525 -NCIT:C7491 Primary Intraosseous Squamous Cell Carcinoma-Solid Type 9 68526 -NCIT:C7498 Keratinizing Primary Intraosseous Squamous Cell Carcinoma-Solid Type 10 68527 -NCIT:C7499 Non-Keratinizing Primary Intraosseous Squamous Cell Carcinoma -Solid Type 10 68528 -NCIT:C7500 Primary Intraosseous Squamous Cell Carcinoma Derived From Odontogenic Cyst 9 68529 -NCIT:C6052 Stage 0 Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 68530 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 68531 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 68532 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 68533 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 68534 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 68535 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 68536 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 68537 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 68538 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 68539 -NCIT:C8174 Oral Cavity Verrucous Carcinoma 8 68540 -NCIT:C179894 Oral Cavity Carcinoma Cuniculatum 9 68541 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 9 68542 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 9 68543 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 9 68544 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 68545 -NCIT:C5883 Stage I Oral Cavity Cancer AJCC v6 and v7 7 68546 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 68547 -NCIT:C8199 Stage I Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 68548 -NCIT:C8200 Stage I Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 68549 -NCIT:C5884 Stage II Oral Cavity Cancer AJCC v6 and v7 7 68550 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 68551 -NCIT:C8203 Stage II Oral Cavity Mucoepidermoid Carcinoma 8 68552 -NCIT:C8204 Stage II Oral Cavity Adenoid Cystic Carcinoma 8 68553 -NCIT:C5885 Stage III Oral Cavity Cancer AJCC v6 and v7 7 68554 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 68555 -NCIT:C8207 Stage III Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 68556 -NCIT:C8208 Stage III Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 68557 -NCIT:C5886 Stage IV Oral Cavity Cancer AJCC v6 and v7 7 68558 -NCIT:C5887 Stage IVA Oral Cavity Cancer AJCC v6 and v7 8 68559 -NCIT:C5863 Stage IVA Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 68560 -NCIT:C5868 Stage IVA Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 68561 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 68562 -NCIT:C5888 Stage IVB Oral Cavity Cancer AJCC v6 and v7 8 68563 -NCIT:C5864 Stage IVB Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 68564 -NCIT:C5867 Stage IVB Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 68565 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 68566 -NCIT:C5889 Stage IVC Oral Cavity Cancer AJCC v6 and v7 8 68567 -NCIT:C5865 Stage IVC Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 68568 -NCIT:C5866 Stage IVC Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 68569 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 68570 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 68571 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 68572 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 68573 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 68574 -NCIT:C8211 Stage IV Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 68575 -NCIT:C5866 Stage IVC Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 68576 -NCIT:C5867 Stage IVB Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 68577 -NCIT:C5868 Stage IVA Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 68578 -NCIT:C8212 Stage IV Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 68579 -NCIT:C5863 Stage IVA Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 68580 -NCIT:C5864 Stage IVB Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 68581 -NCIT:C5865 Stage IVC Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 68582 -NCIT:C5914 Oral Cavity Adenocarcinoma 7 68583 -NCIT:C6076 Recurrent Oral Cavity Carcinoma 7 68584 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 68585 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 68586 -NCIT:C8215 Recurrent Oral Cavity Mucoepidermoid Carcinoma 8 68587 -NCIT:C8216 Recurrent Oral Cavity Adenoid Cystic Carcinoma 8 68588 -NCIT:C7721 Gingival Carcinoma 7 68589 -NCIT:C129857 Gingival Squamous Cell Carcinoma 8 68590 -NCIT:C129289 Gingival Spindle Cell Carcinoma 9 68591 -NCIT:C8171 Lower Gingival Squamous Cell Carcinoma 9 68592 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 10 68593 -NCIT:C8172 Retromolar Trigone Squamous Cell Carcinoma 9 68594 -NCIT:C8173 Upper Gingival Squamous Cell Carcinoma 9 68595 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 10 68596 -NCIT:C8392 Upper Gingival Carcinoma 8 68597 -NCIT:C8173 Upper Gingival Squamous Cell Carcinoma 9 68598 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 10 68599 -NCIT:C8393 Lower Gingival Carcinoma 8 68600 -NCIT:C8171 Lower Gingival Squamous Cell Carcinoma 9 68601 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 10 68602 -NCIT:C8177 Oral Cavity Mucoepidermoid Carcinoma 7 68603 -NCIT:C156090 Metastatic Oral Cavity Mucoepidermoid Carcinoma 8 68604 -NCIT:C181160 Tongue Mucoepidermoid Carcinoma 8 68605 -NCIT:C5990 Posterior Tongue Mucoepidermoid Carcinoma 9 68606 -NCIT:C6250 Anterior Tongue Mucoepidermoid Carcinoma 9 68607 -NCIT:C6214 Hard Palate Mucoepidermoid Carcinoma 8 68608 -NCIT:C8178 Floor of Mouth Mucoepidermoid Carcinoma 8 68609 -NCIT:C8199 Stage I Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 68610 -NCIT:C8203 Stage II Oral Cavity Mucoepidermoid Carcinoma 8 68611 -NCIT:C8207 Stage III Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 68612 -NCIT:C8211 Stage IV Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 68613 -NCIT:C5866 Stage IVC Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 68614 -NCIT:C5867 Stage IVB Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 68615 -NCIT:C5868 Stage IVA Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 68616 -NCIT:C8215 Recurrent Oral Cavity Mucoepidermoid Carcinoma 8 68617 -NCIT:C8179 Oral Cavity Adenoid Cystic Carcinoma 7 68618 -NCIT:C156089 Metastatic Oral Cavity Adenoid Cystic Carcinoma 8 68619 -NCIT:C171028 Tongue Adenoid Cystic Carcinoma 8 68620 -NCIT:C5991 Posterior Tongue Adenoid Cystic Carcinoma 9 68621 -NCIT:C6251 Anterior Tongue Adenoid Cystic Carcinoma 9 68622 -NCIT:C6213 Hard Palate Adenoid Cystic Carcinoma 8 68623 -NCIT:C8180 Floor of Mouth Adenoid Cystic Carcinoma 8 68624 -NCIT:C8200 Stage I Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 68625 -NCIT:C8204 Stage II Oral Cavity Adenoid Cystic Carcinoma 8 68626 -NCIT:C8208 Stage III Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 68627 -NCIT:C8212 Stage IV Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 68628 -NCIT:C5863 Stage IVA Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 68629 -NCIT:C5864 Stage IVB Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 68630 -NCIT:C5865 Stage IVC Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 68631 -NCIT:C8216 Recurrent Oral Cavity Adenoid Cystic Carcinoma 8 68632 -NCIT:C8463 Palate Carcinoma 7 68633 -NCIT:C4649 Palate Squamous Cell Carcinoma 8 68634 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 68635 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 68636 -NCIT:C8394 Hard Palate Carcinoma 8 68637 -NCIT:C6213 Hard Palate Adenoid Cystic Carcinoma 9 68638 -NCIT:C6214 Hard Palate Mucoepidermoid Carcinoma 9 68639 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 68640 -NCIT:C8395 Soft Palate Carcinoma 8 68641 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 68642 -NCIT:C9319 Floor of the Mouth Carcinoma 7 68643 -NCIT:C4041 Floor of Mouth Squamous Cell Carcinoma 8 68644 -NCIT:C129873 Floor of Mouth Basaloid Squamous Cell Carcinoma 9 68645 -NCIT:C8178 Floor of Mouth Mucoepidermoid Carcinoma 8 68646 -NCIT:C8180 Floor of Mouth Adenoid Cystic Carcinoma 8 68647 -NCIT:C9317 Malignant Gingival Neoplasm 6 68648 -NCIT:C7721 Gingival Carcinoma 7 68649 -NCIT:C129857 Gingival Squamous Cell Carcinoma 8 68650 -NCIT:C129289 Gingival Spindle Cell Carcinoma 9 68651 -NCIT:C8171 Lower Gingival Squamous Cell Carcinoma 9 68652 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 10 68653 -NCIT:C8172 Retromolar Trigone Squamous Cell Carcinoma 9 68654 -NCIT:C8173 Upper Gingival Squamous Cell Carcinoma 9 68655 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 10 68656 -NCIT:C8392 Upper Gingival Carcinoma 8 68657 -NCIT:C8173 Upper Gingival Squamous Cell Carcinoma 9 68658 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 10 68659 -NCIT:C8393 Lower Gingival Carcinoma 8 68660 -NCIT:C8171 Lower Gingival Squamous Cell Carcinoma 9 68661 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 10 68662 -NCIT:C9318 Malignant Floor of the Mouth Neoplasm 6 68663 -NCIT:C9319 Floor of the Mouth Carcinoma 7 68664 -NCIT:C4041 Floor of Mouth Squamous Cell Carcinoma 8 68665 -NCIT:C129873 Floor of Mouth Basaloid Squamous Cell Carcinoma 9 68666 -NCIT:C8178 Floor of Mouth Mucoepidermoid Carcinoma 8 68667 -NCIT:C8180 Floor of Mouth Adenoid Cystic Carcinoma 8 68668 -NCIT:C9320 Malignant Buccal Mucosa Neoplasm 6 68669 -NCIT:C4040 Buccal Mucosa Squamous Cell Carcinoma 7 68670 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 8 68671 -NCIT:C9345 Malignant Tongue Neoplasm 6 68672 -NCIT:C156274 Tongue Sarcoma 7 68673 -NCIT:C156273 Tongue Alveolar Soft Part Sarcoma' 8 68674 -NCIT:C173404 Tongue Liposarcoma 8 68675 -NCIT:C3524 Malignant Posterior Tongue Neoplasm 7 68676 -NCIT:C8407 Posterior Tongue Carcinoma 8 68677 -NCIT:C5990 Posterior Tongue Mucoepidermoid Carcinoma 9 68678 -NCIT:C5991 Posterior Tongue Adenoid Cystic Carcinoma 9 68679 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 68680 -NCIT:C4824 Tongue Carcinoma 7 68681 -NCIT:C171028 Tongue Adenoid Cystic Carcinoma 8 68682 -NCIT:C5991 Posterior Tongue Adenoid Cystic Carcinoma 9 68683 -NCIT:C6251 Anterior Tongue Adenoid Cystic Carcinoma 9 68684 -NCIT:C173807 Tongue Adenosquamous Carcinoma 8 68685 -NCIT:C181160 Tongue Mucoepidermoid Carcinoma 8 68686 -NCIT:C5990 Posterior Tongue Mucoepidermoid Carcinoma 9 68687 -NCIT:C6250 Anterior Tongue Mucoepidermoid Carcinoma 9 68688 -NCIT:C4648 Tongue Squamous Cell Carcinoma 8 68689 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 68690 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 68691 -NCIT:C6249 Anterior Tongue Carcinoma 8 68692 -NCIT:C6250 Anterior Tongue Mucoepidermoid Carcinoma 9 68693 -NCIT:C6251 Anterior Tongue Adenoid Cystic Carcinoma 9 68694 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 68695 -NCIT:C8407 Posterior Tongue Carcinoma 8 68696 -NCIT:C5990 Posterior Tongue Mucoepidermoid Carcinoma 9 68697 -NCIT:C5991 Posterior Tongue Adenoid Cystic Carcinoma 9 68698 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 68699 -NCIT:C6061 Malignant Anterior Tongue Neoplasm 7 68700 -NCIT:C6249 Anterior Tongue Carcinoma 8 68701 -NCIT:C6250 Anterior Tongue Mucoepidermoid Carcinoma 9 68702 -NCIT:C6251 Anterior Tongue Adenoid Cystic Carcinoma 9 68703 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 68704 -NCIT:C9315 Lip and Oral Cavity Carcinoma 5 68705 -NCIT:C132728 Lip and Oral Cavity Cancer by AJCC v8 Stage 6 68706 -NCIT:C132729 Stage I Lip and Oral Cavity Cancer AJCC v8 7 68707 -NCIT:C132730 Stage II Lip and Oral Cavity Cancer AJCC v8 7 68708 -NCIT:C132731 Stage III Lip and Oral Cavity Cancer AJCC v8 7 68709 -NCIT:C132732 Stage IV Lip and Oral Cavity Cancer AJCC v8 7 68710 -NCIT:C132733 Stage IVA Lip and Oral Cavity Cancer AJCC v8 8 68711 -NCIT:C132734 Stage IVB Lip and Oral Cavity Cancer AJCC v8 8 68712 -NCIT:C132735 Stage IVC Lip and Oral Cavity Cancer AJCC v8 8 68713 -NCIT:C132736 Lip and Oral Cavity Cancer by AJCC v6 and v7 Stage 6 68714 -NCIT:C7939 Stage 0 Lip and Oral Cavity Cancer AJCC v6 and v7 7 68715 -NCIT:C4587 Stage 0 Oral Cavity Cancer AJCC v6 and v7 8 68716 -NCIT:C6052 Stage 0 Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 68717 -NCIT:C4588 Stage 0 Lip Cancer AJCC v6 and v7 8 68718 -NCIT:C5893 Stage 0 Lip Basal Cell Carcinoma AJCC v6 and v7 9 68719 -NCIT:C8033 Stage I Lip and Oral Cavity Cancer AJCC v6 and v7 7 68720 -NCIT:C115057 Stage I Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 68721 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 68722 -NCIT:C5876 Stage I Lip Cancer AJCC v6 and v7 8 68723 -NCIT:C8197 Stage I Lip Basal Cell Carcinoma 9 68724 -NCIT:C5883 Stage I Oral Cavity Cancer AJCC v6 and v7 8 68725 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 68726 -NCIT:C8199 Stage I Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 68727 -NCIT:C8200 Stage I Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 68728 -NCIT:C8034 Stage II Lip and Oral Cavity Cancer AJCC v6 and v7 7 68729 -NCIT:C115058 Stage II Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 68730 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 68731 -NCIT:C5877 Stage II Lip Cancer AJCC v6 and v7 8 68732 -NCIT:C8201 Stage II Lip Basal Cell Carcinoma 9 68733 -NCIT:C5884 Stage II Oral Cavity Cancer AJCC v6 and v7 8 68734 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 68735 -NCIT:C8203 Stage II Oral Cavity Mucoepidermoid Carcinoma 9 68736 -NCIT:C8204 Stage II Oral Cavity Adenoid Cystic Carcinoma 9 68737 -NCIT:C8035 Stage III Lip and Oral Cavity Cancer AJCC v6 and v7 7 68738 -NCIT:C115059 Stage III Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 68739 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 68740 -NCIT:C5878 Stage III Lip Cancer AJCC v6 and v7 8 68741 -NCIT:C8205 Stage III Lip Basal Cell Carcinoma 9 68742 -NCIT:C5885 Stage III Oral Cavity Cancer AJCC v6 and v7 8 68743 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 68744 -NCIT:C8207 Stage III Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 68745 -NCIT:C8208 Stage III Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 68746 -NCIT:C8036 Stage IV Lip and Oral Cavity Cancer AJCC v6 and v7 7 68747 -NCIT:C115060 Stage IV Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 68748 -NCIT:C115061 Stage IVA Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 68749 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 68750 -NCIT:C115062 Stage IVB Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 68751 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 68752 -NCIT:C115063 Stage IVC Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 68753 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 68754 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 68755 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 68756 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 68757 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 68758 -NCIT:C5879 Stage IV Lip Cancer AJCC v6 and v7 8 68759 -NCIT:C5880 Stage IVA Lip Cancer AJCC v6 and v7 9 68760 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 10 68761 -NCIT:C5881 Stage IVB Lip Cancer AJCC v6 and v7 9 68762 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 10 68763 -NCIT:C5882 Stage IVC Lip Cancer AJCC v6 and v7 9 68764 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 10 68765 -NCIT:C8209 Stage IV Lip Basal Cell Carcinoma 9 68766 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 10 68767 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 10 68768 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 10 68769 -NCIT:C5886 Stage IV Oral Cavity Cancer AJCC v6 and v7 8 68770 -NCIT:C5887 Stage IVA Oral Cavity Cancer AJCC v6 and v7 9 68771 -NCIT:C5863 Stage IVA Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 68772 -NCIT:C5868 Stage IVA Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 68773 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 68774 -NCIT:C5888 Stage IVB Oral Cavity Cancer AJCC v6 and v7 9 68775 -NCIT:C5864 Stage IVB Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 68776 -NCIT:C5867 Stage IVB Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 68777 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 68778 -NCIT:C5889 Stage IVC Oral Cavity Cancer AJCC v6 and v7 9 68779 -NCIT:C5865 Stage IVC Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 68780 -NCIT:C5866 Stage IVC Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 68781 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 68782 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 68783 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 68784 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 68785 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 68786 -NCIT:C8211 Stage IV Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 68787 -NCIT:C5866 Stage IVC Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 68788 -NCIT:C5867 Stage IVB Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 68789 -NCIT:C5868 Stage IVA Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 68790 -NCIT:C8212 Stage IV Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 68791 -NCIT:C5863 Stage IVA Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 68792 -NCIT:C5864 Stage IVB Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 68793 -NCIT:C5865 Stage IVC Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 68794 -NCIT:C87301 Stage IVA Lip and Oral Cavity Cancer AJCC v6 and v7 8 68795 -NCIT:C115061 Stage IVA Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 68796 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 68797 -NCIT:C5880 Stage IVA Lip Cancer AJCC v6 and v7 9 68798 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 10 68799 -NCIT:C5887 Stage IVA Oral Cavity Cancer AJCC v6 and v7 9 68800 -NCIT:C5863 Stage IVA Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 68801 -NCIT:C5868 Stage IVA Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 68802 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 68803 -NCIT:C87302 Stage IVB Lip and Oral Cavity Cancer AJCC v6 and v7 8 68804 -NCIT:C115062 Stage IVB Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 68805 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 68806 -NCIT:C5881 Stage IVB Lip Cancer AJCC v6 and v7 9 68807 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 10 68808 -NCIT:C5888 Stage IVB Oral Cavity Cancer AJCC v6 and v7 9 68809 -NCIT:C5864 Stage IVB Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 68810 -NCIT:C5867 Stage IVB Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 68811 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 68812 -NCIT:C87303 Stage IVC Lip and Oral Cavity Cancer AJCC v6 and v7 8 68813 -NCIT:C115063 Stage IVC Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 68814 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 68815 -NCIT:C5882 Stage IVC Lip Cancer AJCC v6 and v7 9 68816 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 10 68817 -NCIT:C5889 Stage IVC Oral Cavity Cancer AJCC v6 and v7 9 68818 -NCIT:C5865 Stage IVC Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 68819 -NCIT:C5866 Stage IVC Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 68820 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 68821 -NCIT:C156086 Metastatic Lip and Oral Cavity Carcinoma 6 68822 -NCIT:C156087 Metastatic Oral Cavity Carcinoma 7 68823 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 68824 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 68825 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 68826 -NCIT:C156089 Metastatic Oral Cavity Adenoid Cystic Carcinoma 8 68827 -NCIT:C156090 Metastatic Oral Cavity Mucoepidermoid Carcinoma 8 68828 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 8 68829 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 68830 -NCIT:C156088 Metastatic Lip Carcinoma 7 68831 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 68832 -NCIT:C165562 Locally Advanced Lip and Oral Cavity Carcinoma 7 68833 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 8 68834 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 68835 -NCIT:C3490 Lip Carcinoma 6 68836 -NCIT:C156088 Metastatic Lip Carcinoma 7 68837 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 68838 -NCIT:C4042 Lip Squamous Cell Carcinoma 7 68839 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 68840 -NCIT:C4588 Stage 0 Lip Cancer AJCC v6 and v7 7 68841 -NCIT:C5893 Stage 0 Lip Basal Cell Carcinoma AJCC v6 and v7 8 68842 -NCIT:C5876 Stage I Lip Cancer AJCC v6 and v7 7 68843 -NCIT:C8197 Stage I Lip Basal Cell Carcinoma 8 68844 -NCIT:C5877 Stage II Lip Cancer AJCC v6 and v7 7 68845 -NCIT:C8201 Stage II Lip Basal Cell Carcinoma 8 68846 -NCIT:C5878 Stage III Lip Cancer AJCC v6 and v7 7 68847 -NCIT:C8205 Stage III Lip Basal Cell Carcinoma 8 68848 -NCIT:C5879 Stage IV Lip Cancer AJCC v6 and v7 7 68849 -NCIT:C5880 Stage IVA Lip Cancer AJCC v6 and v7 8 68850 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 9 68851 -NCIT:C5881 Stage IVB Lip Cancer AJCC v6 and v7 8 68852 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 9 68853 -NCIT:C5882 Stage IVC Lip Cancer AJCC v6 and v7 8 68854 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 9 68855 -NCIT:C8209 Stage IV Lip Basal Cell Carcinoma 8 68856 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 9 68857 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 9 68858 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 9 68859 -NCIT:C8014 Lip Basal Cell Carcinoma 7 68860 -NCIT:C5893 Stage 0 Lip Basal Cell Carcinoma AJCC v6 and v7 8 68861 -NCIT:C8197 Stage I Lip Basal Cell Carcinoma 8 68862 -NCIT:C8201 Stage II Lip Basal Cell Carcinoma 8 68863 -NCIT:C8205 Stage III Lip Basal Cell Carcinoma 8 68864 -NCIT:C8209 Stage IV Lip Basal Cell Carcinoma 8 68865 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 9 68866 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 9 68867 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 9 68868 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 8 68869 -NCIT:C42690 Lip and Oral Cavity Squamous Cell Carcinoma 6 68870 -NCIT:C115057 Stage I Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 68871 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 68872 -NCIT:C115058 Stage II Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 68873 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 68874 -NCIT:C115059 Stage III Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 68875 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 68876 -NCIT:C115060 Stage IV Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 68877 -NCIT:C115061 Stage IVA Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 68878 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 68879 -NCIT:C115062 Stage IVB Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 68880 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 68881 -NCIT:C115063 Stage IVC Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 68882 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 68883 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 68884 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 68885 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 68886 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 68887 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 68888 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 68889 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 68890 -NCIT:C4042 Lip Squamous Cell Carcinoma 7 68891 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 68892 -NCIT:C4833 Oral Cavity Squamous Cell Carcinoma 7 68893 -NCIT:C129857 Gingival Squamous Cell Carcinoma 8 68894 -NCIT:C129289 Gingival Spindle Cell Carcinoma 9 68895 -NCIT:C8171 Lower Gingival Squamous Cell Carcinoma 9 68896 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 10 68897 -NCIT:C8172 Retromolar Trigone Squamous Cell Carcinoma 9 68898 -NCIT:C8173 Upper Gingival Squamous Cell Carcinoma 9 68899 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 10 68900 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 8 68901 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 68902 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 68903 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 68904 -NCIT:C170774 Alveolar Ridge Squamous Cell Carcinoma 8 68905 -NCIT:C170775 Upper Alveolar Ridge Squamous Cell Carcinoma 9 68906 -NCIT:C170776 Lower Alveolar Ridge Squamous Cell Carcinoma 9 68907 -NCIT:C172644 Unresectable Oral Cavity Squamous Cell Carcinoma 8 68908 -NCIT:C4040 Buccal Mucosa Squamous Cell Carcinoma 8 68909 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 9 68910 -NCIT:C4041 Floor of Mouth Squamous Cell Carcinoma 8 68911 -NCIT:C129873 Floor of Mouth Basaloid Squamous Cell Carcinoma 9 68912 -NCIT:C4648 Tongue Squamous Cell Carcinoma 8 68913 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 68914 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 68915 -NCIT:C4649 Palate Squamous Cell Carcinoma 8 68916 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 68917 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 68918 -NCIT:C54295 Primary Intraosseous Squamous Cell Carcinoma 8 68919 -NCIT:C54303 Primary Intraosseous Squamous Cell Carcinoma Derived From Keratocystic Odontogenic Tumor 9 68920 -NCIT:C7491 Primary Intraosseous Squamous Cell Carcinoma-Solid Type 9 68921 -NCIT:C7498 Keratinizing Primary Intraosseous Squamous Cell Carcinoma-Solid Type 10 68922 -NCIT:C7499 Non-Keratinizing Primary Intraosseous Squamous Cell Carcinoma -Solid Type 10 68923 -NCIT:C7500 Primary Intraosseous Squamous Cell Carcinoma Derived From Odontogenic Cyst 9 68924 -NCIT:C6052 Stage 0 Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 68925 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 68926 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 68927 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 68928 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 68929 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 68930 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 68931 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 68932 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 68933 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 68934 -NCIT:C8174 Oral Cavity Verrucous Carcinoma 8 68935 -NCIT:C179894 Oral Cavity Carcinoma Cuniculatum 9 68936 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 9 68937 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 9 68938 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 9 68939 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 68940 -NCIT:C8037 Recurrent Lip and Oral Cavity Carcinoma 6 68941 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 68942 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 68943 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 68944 -NCIT:C6076 Recurrent Oral Cavity Carcinoma 7 68945 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 68946 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 68947 -NCIT:C8215 Recurrent Oral Cavity Mucoepidermoid Carcinoma 8 68948 -NCIT:C8216 Recurrent Oral Cavity Adenoid Cystic Carcinoma 8 68949 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 7 68950 -NCIT:C8990 Oral Cavity Carcinoma 6 68951 -NCIT:C156087 Metastatic Oral Cavity Carcinoma 7 68952 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 68953 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 68954 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 68955 -NCIT:C156089 Metastatic Oral Cavity Adenoid Cystic Carcinoma 8 68956 -NCIT:C156090 Metastatic Oral Cavity Mucoepidermoid Carcinoma 8 68957 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 8 68958 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 68959 -NCIT:C173720 Odontogenic Carcinoma 7 68960 -NCIT:C173733 Sclerosing Odontogenic Carcinoma 8 68961 -NCIT:C4311 Ghost Cell Odontogenic Carcinoma 8 68962 -NCIT:C54295 Primary Intraosseous Squamous Cell Carcinoma 8 68963 -NCIT:C54303 Primary Intraosseous Squamous Cell Carcinoma Derived From Keratocystic Odontogenic Tumor 9 68964 -NCIT:C7491 Primary Intraosseous Squamous Cell Carcinoma-Solid Type 9 68965 -NCIT:C7498 Keratinizing Primary Intraosseous Squamous Cell Carcinoma-Solid Type 10 68966 -NCIT:C7499 Non-Keratinizing Primary Intraosseous Squamous Cell Carcinoma -Solid Type 10 68967 -NCIT:C7500 Primary Intraosseous Squamous Cell Carcinoma Derived From Odontogenic Cyst 9 68968 -NCIT:C54300 Clear Cell Odontogenic Carcinoma 8 68969 -NCIT:C7492 Ameloblastic Carcinoma 8 68970 -NCIT:C7493 Ameloblastic Carcinoma-Primary Type 9 68971 -NCIT:C7496 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated) 9 68972 -NCIT:C54298 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated), Intraosseous 10 68973 -NCIT:C54299 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated), Peripheral 10 68974 -NCIT:C7497 Ameloblastic Carcinoma Derived From Odontogenic Cyst 9 68975 -NCIT:C4587 Stage 0 Oral Cavity Cancer AJCC v6 and v7 7 68976 -NCIT:C6052 Stage 0 Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 68977 -NCIT:C4824 Tongue Carcinoma 7 68978 -NCIT:C171028 Tongue Adenoid Cystic Carcinoma 8 68979 -NCIT:C5991 Posterior Tongue Adenoid Cystic Carcinoma 9 68980 -NCIT:C6251 Anterior Tongue Adenoid Cystic Carcinoma 9 68981 -NCIT:C173807 Tongue Adenosquamous Carcinoma 8 68982 -NCIT:C181160 Tongue Mucoepidermoid Carcinoma 8 68983 -NCIT:C5990 Posterior Tongue Mucoepidermoid Carcinoma 9 68984 -NCIT:C6250 Anterior Tongue Mucoepidermoid Carcinoma 9 68985 -NCIT:C4648 Tongue Squamous Cell Carcinoma 8 68986 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 68987 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 68988 -NCIT:C6249 Anterior Tongue Carcinoma 8 68989 -NCIT:C6250 Anterior Tongue Mucoepidermoid Carcinoma 9 68990 -NCIT:C6251 Anterior Tongue Adenoid Cystic Carcinoma 9 68991 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 68992 -NCIT:C8407 Posterior Tongue Carcinoma 8 68993 -NCIT:C5990 Posterior Tongue Mucoepidermoid Carcinoma 9 68994 -NCIT:C5991 Posterior Tongue Adenoid Cystic Carcinoma 9 68995 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 68996 -NCIT:C4833 Oral Cavity Squamous Cell Carcinoma 7 68997 -NCIT:C129857 Gingival Squamous Cell Carcinoma 8 68998 -NCIT:C129289 Gingival Spindle Cell Carcinoma 9 68999 -NCIT:C8171 Lower Gingival Squamous Cell Carcinoma 9 69000 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 10 69001 -NCIT:C8172 Retromolar Trigone Squamous Cell Carcinoma 9 69002 -NCIT:C8173 Upper Gingival Squamous Cell Carcinoma 9 69003 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 10 69004 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 8 69005 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 69006 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 69007 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 69008 -NCIT:C170774 Alveolar Ridge Squamous Cell Carcinoma 8 69009 -NCIT:C170775 Upper Alveolar Ridge Squamous Cell Carcinoma 9 69010 -NCIT:C170776 Lower Alveolar Ridge Squamous Cell Carcinoma 9 69011 -NCIT:C172644 Unresectable Oral Cavity Squamous Cell Carcinoma 8 69012 -NCIT:C4040 Buccal Mucosa Squamous Cell Carcinoma 8 69013 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 9 69014 -NCIT:C4041 Floor of Mouth Squamous Cell Carcinoma 8 69015 -NCIT:C129873 Floor of Mouth Basaloid Squamous Cell Carcinoma 9 69016 -NCIT:C4648 Tongue Squamous Cell Carcinoma 8 69017 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 69018 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 69019 -NCIT:C4649 Palate Squamous Cell Carcinoma 8 69020 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 69021 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 69022 -NCIT:C54295 Primary Intraosseous Squamous Cell Carcinoma 8 69023 -NCIT:C54303 Primary Intraosseous Squamous Cell Carcinoma Derived From Keratocystic Odontogenic Tumor 9 69024 -NCIT:C7491 Primary Intraosseous Squamous Cell Carcinoma-Solid Type 9 69025 -NCIT:C7498 Keratinizing Primary Intraosseous Squamous Cell Carcinoma-Solid Type 10 69026 -NCIT:C7499 Non-Keratinizing Primary Intraosseous Squamous Cell Carcinoma -Solid Type 10 69027 -NCIT:C7500 Primary Intraosseous Squamous Cell Carcinoma Derived From Odontogenic Cyst 9 69028 -NCIT:C6052 Stage 0 Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 69029 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 69030 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 69031 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 69032 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 69033 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 69034 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 69035 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 69036 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 69037 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 69038 -NCIT:C8174 Oral Cavity Verrucous Carcinoma 8 69039 -NCIT:C179894 Oral Cavity Carcinoma Cuniculatum 9 69040 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 9 69041 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 9 69042 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 9 69043 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 69044 -NCIT:C5883 Stage I Oral Cavity Cancer AJCC v6 and v7 7 69045 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 69046 -NCIT:C8199 Stage I Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 69047 -NCIT:C8200 Stage I Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 69048 -NCIT:C5884 Stage II Oral Cavity Cancer AJCC v6 and v7 7 69049 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 69050 -NCIT:C8203 Stage II Oral Cavity Mucoepidermoid Carcinoma 8 69051 -NCIT:C8204 Stage II Oral Cavity Adenoid Cystic Carcinoma 8 69052 -NCIT:C5885 Stage III Oral Cavity Cancer AJCC v6 and v7 7 69053 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 69054 -NCIT:C8207 Stage III Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 69055 -NCIT:C8208 Stage III Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 69056 -NCIT:C5886 Stage IV Oral Cavity Cancer AJCC v6 and v7 7 69057 -NCIT:C5887 Stage IVA Oral Cavity Cancer AJCC v6 and v7 8 69058 -NCIT:C5863 Stage IVA Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 69059 -NCIT:C5868 Stage IVA Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 69060 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 69061 -NCIT:C5888 Stage IVB Oral Cavity Cancer AJCC v6 and v7 8 69062 -NCIT:C5864 Stage IVB Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 69063 -NCIT:C5867 Stage IVB Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 69064 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 69065 -NCIT:C5889 Stage IVC Oral Cavity Cancer AJCC v6 and v7 8 69066 -NCIT:C5865 Stage IVC Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 69067 -NCIT:C5866 Stage IVC Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 69068 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 69069 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 69070 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 69071 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 69072 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 69073 -NCIT:C8211 Stage IV Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 69074 -NCIT:C5866 Stage IVC Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 69075 -NCIT:C5867 Stage IVB Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 69076 -NCIT:C5868 Stage IVA Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 69077 -NCIT:C8212 Stage IV Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 69078 -NCIT:C5863 Stage IVA Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 69079 -NCIT:C5864 Stage IVB Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 69080 -NCIT:C5865 Stage IVC Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 69081 -NCIT:C5914 Oral Cavity Adenocarcinoma 7 69082 -NCIT:C6076 Recurrent Oral Cavity Carcinoma 7 69083 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 69084 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 69085 -NCIT:C8215 Recurrent Oral Cavity Mucoepidermoid Carcinoma 8 69086 -NCIT:C8216 Recurrent Oral Cavity Adenoid Cystic Carcinoma 8 69087 -NCIT:C7721 Gingival Carcinoma 7 69088 -NCIT:C129857 Gingival Squamous Cell Carcinoma 8 69089 -NCIT:C129289 Gingival Spindle Cell Carcinoma 9 69090 -NCIT:C8171 Lower Gingival Squamous Cell Carcinoma 9 69091 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 10 69092 -NCIT:C8172 Retromolar Trigone Squamous Cell Carcinoma 9 69093 -NCIT:C8173 Upper Gingival Squamous Cell Carcinoma 9 69094 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 10 69095 -NCIT:C8392 Upper Gingival Carcinoma 8 69096 -NCIT:C8173 Upper Gingival Squamous Cell Carcinoma 9 69097 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 10 69098 -NCIT:C8393 Lower Gingival Carcinoma 8 69099 -NCIT:C8171 Lower Gingival Squamous Cell Carcinoma 9 69100 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 10 69101 -NCIT:C8177 Oral Cavity Mucoepidermoid Carcinoma 7 69102 -NCIT:C156090 Metastatic Oral Cavity Mucoepidermoid Carcinoma 8 69103 -NCIT:C181160 Tongue Mucoepidermoid Carcinoma 8 69104 -NCIT:C5990 Posterior Tongue Mucoepidermoid Carcinoma 9 69105 -NCIT:C6250 Anterior Tongue Mucoepidermoid Carcinoma 9 69106 -NCIT:C6214 Hard Palate Mucoepidermoid Carcinoma 8 69107 -NCIT:C8178 Floor of Mouth Mucoepidermoid Carcinoma 8 69108 -NCIT:C8199 Stage I Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 69109 -NCIT:C8203 Stage II Oral Cavity Mucoepidermoid Carcinoma 8 69110 -NCIT:C8207 Stage III Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 69111 -NCIT:C8211 Stage IV Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 69112 -NCIT:C5866 Stage IVC Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 69113 -NCIT:C5867 Stage IVB Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 69114 -NCIT:C5868 Stage IVA Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 69115 -NCIT:C8215 Recurrent Oral Cavity Mucoepidermoid Carcinoma 8 69116 -NCIT:C8179 Oral Cavity Adenoid Cystic Carcinoma 7 69117 -NCIT:C156089 Metastatic Oral Cavity Adenoid Cystic Carcinoma 8 69118 -NCIT:C171028 Tongue Adenoid Cystic Carcinoma 8 69119 -NCIT:C5991 Posterior Tongue Adenoid Cystic Carcinoma 9 69120 -NCIT:C6251 Anterior Tongue Adenoid Cystic Carcinoma 9 69121 -NCIT:C6213 Hard Palate Adenoid Cystic Carcinoma 8 69122 -NCIT:C8180 Floor of Mouth Adenoid Cystic Carcinoma 8 69123 -NCIT:C8200 Stage I Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 69124 -NCIT:C8204 Stage II Oral Cavity Adenoid Cystic Carcinoma 8 69125 -NCIT:C8208 Stage III Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 69126 -NCIT:C8212 Stage IV Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 69127 -NCIT:C5863 Stage IVA Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 69128 -NCIT:C5864 Stage IVB Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 69129 -NCIT:C5865 Stage IVC Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 69130 -NCIT:C8216 Recurrent Oral Cavity Adenoid Cystic Carcinoma 8 69131 -NCIT:C8463 Palate Carcinoma 7 69132 -NCIT:C4649 Palate Squamous Cell Carcinoma 8 69133 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 69134 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 69135 -NCIT:C8394 Hard Palate Carcinoma 8 69136 -NCIT:C6213 Hard Palate Adenoid Cystic Carcinoma 9 69137 -NCIT:C6214 Hard Palate Mucoepidermoid Carcinoma 9 69138 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 69139 -NCIT:C8395 Soft Palate Carcinoma 8 69140 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 69141 -NCIT:C9319 Floor of the Mouth Carcinoma 7 69142 -NCIT:C4041 Floor of Mouth Squamous Cell Carcinoma 8 69143 -NCIT:C129873 Floor of Mouth Basaloid Squamous Cell Carcinoma 9 69144 -NCIT:C8178 Floor of Mouth Mucoepidermoid Carcinoma 8 69145 -NCIT:C8180 Floor of Mouth Adenoid Cystic Carcinoma 8 69146 -NCIT:C3268 Nervous System Neoplasm 2 69147 -NCIT:C182030 Recurrent Nervous System Neoplasm 3 69148 -NCIT:C157125 Recurrent Paraganglioma 4 69149 -NCIT:C8047 Recurrent Adrenal Gland Pheochromocytoma 5 69150 -NCIT:C173916 Recurrent Metastatic Malignant Neoplasm in the Leptomeninges 4 69151 -NCIT:C182029 Recurrent Schwannoma 4 69152 -NCIT:C27295 Recurrent Primitive Neuroectodermal Tumor 4 69153 -NCIT:C173531 Recurrent Ganglioneuroblastoma 5 69154 -NCIT:C27899 Recurrent Peripheral Primitive Neuroectodermal Tumor 5 69155 -NCIT:C27354 Recurrent Peripheral Primitive Neuroectodermal Tumor of Bone 6 69156 -NCIT:C27900 Recurrent Askin Tumor 6 69157 -NCIT:C7837 Recurrent Neuroblastoma 5 69158 -NCIT:C115384 Recurrent Olfactory Neuroblastoma 6 69159 -NCIT:C71700 Recurrent Primary Central Nervous System Neoplasm 4 69160 -NCIT:C132506 Recurrent Glioma 5 69161 -NCIT:C114956 Recurrent Childhood Astrocytic Tumor 6 69162 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 7 69163 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 7 69164 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 8 69165 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 8 69166 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 8 69167 -NCIT:C115364 Recurrent Childhood Glioblastoma 7 69168 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 8 69169 -NCIT:C115365 Recurrent Childhood Gliosarcoma 8 69170 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 7 69171 -NCIT:C115373 Recurrent Childhood Pilomyxoid Astrocytoma 7 69172 -NCIT:C115375 Recurrent Childhood Pleomorphic Xanthoastrocytoma 7 69173 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 7 69174 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 7 69175 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 7 69176 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 8 69177 -NCIT:C8389 Recurrent Childhood Cerebellar Astrocytoma 7 69178 -NCIT:C9191 Recurrent Childhood Cerebral Astrocytoma 7 69179 -NCIT:C131617 Recurrent Ependymal Tumor 6 69180 -NCIT:C157601 Recurrent Ependymoma 7 69181 -NCIT:C8579 Recurrent Childhood Ependymoma 8 69182 -NCIT:C160912 Recurrent Anaplastic Ependymoma 7 69183 -NCIT:C142848 Recurrent Malignant Glioma 6 69184 -NCIT:C126306 Recurrent Glioblastoma 7 69185 -NCIT:C115364 Recurrent Childhood Glioblastoma 8 69186 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 9 69187 -NCIT:C115365 Recurrent Childhood Gliosarcoma 9 69188 -NCIT:C182019 Recurrent Glioblastoma, IDH-Wildtype 8 69189 -NCIT:C131209 Recurrent Gliosarcoma 9 69190 -NCIT:C115365 Recurrent Childhood Gliosarcoma 10 69191 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 9 69192 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 10 69193 -NCIT:C163961 Recurrent Small Cell Glioblastoma 9 69194 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 9 69195 -NCIT:C191198 Recurrent Brain Glioblastoma 8 69196 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 9 69197 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 7 69198 -NCIT:C148038 Recurrent WHO Grade 3 Glioma 7 69199 -NCIT:C136517 Recurrent Anaplastic Astrocytoma 8 69200 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 9 69201 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 9 69202 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 9 69203 -NCIT:C142861 Recurrent Anaplastic Oligoastrocytoma 8 69204 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 9 69205 -NCIT:C142862 Recurrent Anaplastic Oligodendroglioma 8 69206 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 9 69207 -NCIT:C160904 Recurrent Anaplastic Pleomorphic Xanthoastrocytoma 8 69208 -NCIT:C160912 Recurrent Anaplastic Ependymoma 8 69209 -NCIT:C179222 Recurrent Diffuse Midline Glioma, H3 K27M-Mutant 7 69210 -NCIT:C182018 Recurrent Astrocytoma, IDH-Mutant, Grade 4 7 69211 -NCIT:C155983 Recurrent Visual Pathway Glioma 6 69212 -NCIT:C7529 Recurrent Childhood Visual Pathway Glioma 7 69213 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 8 69214 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 9 69215 -NCIT:C7531 Recurrent Childhood Optic Nerve Glioma 8 69216 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 9 69217 -NCIT:C177794 Recurrent Low Grade Glioma 6 69218 -NCIT:C148037 Recurrent WHO Grade 2 Glioma 7 69219 -NCIT:C157601 Recurrent Ependymoma 8 69220 -NCIT:C8579 Recurrent Childhood Ependymoma 9 69221 -NCIT:C160737 Recurrent Oligodendroglioma 8 69222 -NCIT:C115371 Recurrent Childhood Oligodendroglioma 9 69223 -NCIT:C188126 Recurrent Oligodendroglioma, IDH-Mutant and 1p/19q-Codeleted 9 69224 -NCIT:C167081 Recurrent Diffuse Astrocytoma 8 69225 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 9 69226 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 10 69227 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 10 69228 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 10 69229 -NCIT:C167082 Recurrent Oligoastrocytoma 8 69230 -NCIT:C115370 Recurrent Childhood Oligoastrocytoma 9 69231 -NCIT:C176464 Recurrent Low Grade Astrocytoma 7 69232 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 8 69233 -NCIT:C167081 Recurrent Diffuse Astrocytoma 8 69234 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 9 69235 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 10 69236 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 10 69237 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 10 69238 -NCIT:C179220 Recurrent Pilocytic Astrocytoma 8 69239 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 9 69240 -NCIT:C177796 Recurrent WHO Grade 1 Glioma 7 69241 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 8 69242 -NCIT:C179220 Recurrent Pilocytic Astrocytoma 8 69243 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 9 69244 -NCIT:C180408 Recurrent Tectal Glioma 6 69245 -NCIT:C188127 Recurrent Astrocytoma, IDH-Mutant 6 69246 -NCIT:C182018 Recurrent Astrocytoma, IDH-Mutant, Grade 4 7 69247 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 7 69248 -NCIT:C9190 Recurrent Childhood Brain Stem Glioma 6 69249 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 7 69250 -NCIT:C153823 Recurrent Primary Malignant Central Nervous System Neoplasm 5 69251 -NCIT:C114836 Recurrent Childhood Central Nervous System Embryonal Neoplasm 6 69252 -NCIT:C115374 Recurrent Childhood Pineoblastoma 7 69253 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 7 69254 -NCIT:C6774 Recurrent Childhood Medulloblastoma 7 69255 -NCIT:C133499 Recurrent Atypical Teratoid/Rhabdoid Tumor 6 69256 -NCIT:C138019 Recurrent Central Nervous System Lymphoma 6 69257 -NCIT:C146990 Recurrent Central Nervous System Non-Hodgkin Lymphoma 7 69258 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 8 69259 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 69260 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 69261 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 69262 -NCIT:C142848 Recurrent Malignant Glioma 6 69263 -NCIT:C126306 Recurrent Glioblastoma 7 69264 -NCIT:C115364 Recurrent Childhood Glioblastoma 8 69265 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 9 69266 -NCIT:C115365 Recurrent Childhood Gliosarcoma 9 69267 -NCIT:C182019 Recurrent Glioblastoma, IDH-Wildtype 8 69268 -NCIT:C131209 Recurrent Gliosarcoma 9 69269 -NCIT:C115365 Recurrent Childhood Gliosarcoma 10 69270 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 9 69271 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 10 69272 -NCIT:C163961 Recurrent Small Cell Glioblastoma 9 69273 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 9 69274 -NCIT:C191198 Recurrent Brain Glioblastoma 8 69275 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 9 69276 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 7 69277 -NCIT:C148038 Recurrent WHO Grade 3 Glioma 7 69278 -NCIT:C136517 Recurrent Anaplastic Astrocytoma 8 69279 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 9 69280 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 9 69281 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 9 69282 -NCIT:C142861 Recurrent Anaplastic Oligoastrocytoma 8 69283 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 9 69284 -NCIT:C142862 Recurrent Anaplastic Oligodendroglioma 8 69285 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 9 69286 -NCIT:C160904 Recurrent Anaplastic Pleomorphic Xanthoastrocytoma 8 69287 -NCIT:C160912 Recurrent Anaplastic Ependymoma 8 69288 -NCIT:C179222 Recurrent Diffuse Midline Glioma, H3 K27M-Mutant 7 69289 -NCIT:C182018 Recurrent Astrocytoma, IDH-Mutant, Grade 4 7 69290 -NCIT:C153837 Recurrent Malignant Brain Neoplasm 6 69291 -NCIT:C115374 Recurrent Childhood Pineoblastoma 7 69292 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 7 69293 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 7 69294 -NCIT:C179221 Recurrent Gliomatosis Cerebri 7 69295 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 8 69296 -NCIT:C179226 Recurrent Malignant Choroid Plexus Neoplasm 7 69297 -NCIT:C191198 Recurrent Brain Glioblastoma 7 69298 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 8 69299 -NCIT:C5588 Recurrent Medulloblastoma 7 69300 -NCIT:C147109 Recurrent Medulloblastoma, SHH-Activated 8 69301 -NCIT:C180893 Recurrent Medulloblastoma, WNT-Activated 8 69302 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 69303 -NCIT:C160914 Recurrent Anaplastic Ganglioglioma 6 69304 -NCIT:C179223 Recurrent Anaplastic (Malignant) Meningioma 6 69305 -NCIT:C7849 Recurrent Retinoblastoma 6 69306 -NCIT:C173154 Recurrent Intracranial Neoplasm 5 69307 -NCIT:C71698 Recurrent Brain Neoplasm 6 69308 -NCIT:C148077 Recurrent Craniopharyngioma 7 69309 -NCIT:C162612 Recurrent Adamantinomatous Craniopharyngioma 8 69310 -NCIT:C153837 Recurrent Malignant Brain Neoplasm 7 69311 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 69312 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 69313 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 8 69314 -NCIT:C179221 Recurrent Gliomatosis Cerebri 8 69315 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 9 69316 -NCIT:C179226 Recurrent Malignant Choroid Plexus Neoplasm 8 69317 -NCIT:C191198 Recurrent Brain Glioblastoma 8 69318 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 9 69319 -NCIT:C5588 Recurrent Medulloblastoma 8 69320 -NCIT:C147109 Recurrent Medulloblastoma, SHH-Activated 9 69321 -NCIT:C180893 Recurrent Medulloblastoma, WNT-Activated 9 69322 -NCIT:C6774 Recurrent Childhood Medulloblastoma 9 69323 -NCIT:C155983 Recurrent Visual Pathway Glioma 7 69324 -NCIT:C7529 Recurrent Childhood Visual Pathway Glioma 8 69325 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 9 69326 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 69327 -NCIT:C7531 Recurrent Childhood Optic Nerve Glioma 9 69328 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 69329 -NCIT:C179227 Recurrent Pineal Parenchymal Cell Neoplasm 7 69330 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 69331 -NCIT:C180398 Recurrent Multinodular and Vacuolated Neuronal Tumor 7 69332 -NCIT:C180400 Recurrent Polymorphous Low Grade Neuroepithelial Tumor of the Young 7 69333 -NCIT:C7834 Recurrent Childhood Brain Neoplasm 7 69334 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 8 69335 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 69336 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 69337 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 69338 -NCIT:C7529 Recurrent Childhood Visual Pathway Glioma 8 69339 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 9 69340 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 69341 -NCIT:C7531 Recurrent Childhood Optic Nerve Glioma 9 69342 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 69343 -NCIT:C8389 Recurrent Childhood Cerebellar Astrocytoma 8 69344 -NCIT:C9190 Recurrent Childhood Brain Stem Glioma 8 69345 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 9 69346 -NCIT:C9191 Recurrent Childhood Cerebral Astrocytoma 8 69347 -NCIT:C7884 Recurrent Adult Brain Neoplasm 7 69348 -NCIT:C180338 Recurrent Gangliocytoma 5 69349 -NCIT:C180397 Recurrent Myxoid Glioneuronal Tumor 5 69350 -NCIT:C5312 Recurrent Meningioma 5 69351 -NCIT:C179223 Recurrent Anaplastic (Malignant) Meningioma 6 69352 -NCIT:C179224 Recurrent Atypical Meningioma 6 69353 -NCIT:C71699 Recurrent Spinal Cord Neoplasm 5 69354 -NCIT:C71712 Recurrent Childhood Spinal Cord Neoplasm 6 69355 -NCIT:C71713 Recurrent Adult Spinal Cord Neoplasm 6 69356 -NCIT:C9045 Recurrent Childhood Central Nervous System Neoplasm 5 69357 -NCIT:C114836 Recurrent Childhood Central Nervous System Embryonal Neoplasm 6 69358 -NCIT:C115374 Recurrent Childhood Pineoblastoma 7 69359 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 7 69360 -NCIT:C6774 Recurrent Childhood Medulloblastoma 7 69361 -NCIT:C114956 Recurrent Childhood Astrocytic Tumor 6 69362 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 7 69363 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 7 69364 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 8 69365 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 8 69366 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 8 69367 -NCIT:C115364 Recurrent Childhood Glioblastoma 7 69368 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 8 69369 -NCIT:C115365 Recurrent Childhood Gliosarcoma 8 69370 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 7 69371 -NCIT:C115373 Recurrent Childhood Pilomyxoid Astrocytoma 7 69372 -NCIT:C115375 Recurrent Childhood Pleomorphic Xanthoastrocytoma 7 69373 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 7 69374 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 7 69375 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 7 69376 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 8 69377 -NCIT:C8389 Recurrent Childhood Cerebellar Astrocytoma 7 69378 -NCIT:C9191 Recurrent Childhood Cerebral Astrocytoma 7 69379 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 6 69380 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 6 69381 -NCIT:C115370 Recurrent Childhood Oligoastrocytoma 6 69382 -NCIT:C115371 Recurrent Childhood Oligodendroglioma 6 69383 -NCIT:C71712 Recurrent Childhood Spinal Cord Neoplasm 6 69384 -NCIT:C7834 Recurrent Childhood Brain Neoplasm 6 69385 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 7 69386 -NCIT:C115374 Recurrent Childhood Pineoblastoma 7 69387 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 7 69388 -NCIT:C6774 Recurrent Childhood Medulloblastoma 7 69389 -NCIT:C7529 Recurrent Childhood Visual Pathway Glioma 7 69390 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 8 69391 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 9 69392 -NCIT:C7531 Recurrent Childhood Optic Nerve Glioma 8 69393 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 9 69394 -NCIT:C8389 Recurrent Childhood Cerebellar Astrocytoma 7 69395 -NCIT:C9190 Recurrent Childhood Brain Stem Glioma 7 69396 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 8 69397 -NCIT:C9191 Recurrent Childhood Cerebral Astrocytoma 7 69398 -NCIT:C8579 Recurrent Childhood Ependymoma 6 69399 -NCIT:C8823 Recurrent Malignant Peripheral Nerve Sheath Tumor 4 69400 -NCIT:C162724 Recurrent Epithelioid Malignant Peripheral Nerve Sheath Tumor 5 69401 -NCIT:C188950 Childhood Nervous System Neoplasm 3 69402 -NCIT:C188951 Childhood Peripheral Nervous System Neoplasm 4 69403 -NCIT:C188946 Childhood Ganglioneuroma 5 69404 -NCIT:C188995 Childhood Neurofibroma 5 69405 -NCIT:C190074 Childhood Paraganglioma 5 69406 -NCIT:C190071 Childhood Sympathetic Paraganglioma 6 69407 -NCIT:C118822 Childhood Adrenal Gland Pheochromocytoma 7 69408 -NCIT:C190072 Childhood Parasympathetic Paraganglioma 6 69409 -NCIT:C190073 Childhood Composite Paraganglioma 6 69410 -NCIT:C5429 Childhood Mediastinal Neurogenic Neoplasm 5 69411 -NCIT:C8094 Childhood Malignant Peripheral Nerve Sheath Tumor 5 69412 -NCIT:C188998 Childhood Granular Cell Tumor 4 69413 -NCIT:C190622 Childhood Benign Nervous System Neoplasm 4 69414 -NCIT:C188946 Childhood Ganglioneuroma 5 69415 -NCIT:C188992 Childhood Schwannoma 5 69416 -NCIT:C188995 Childhood Neurofibroma 5 69417 -NCIT:C188997 Childhood Perineurioma 5 69418 -NCIT:C5591 Childhood Benign Central Nervous System Neoplasm 5 69419 -NCIT:C27404 Childhood Central Nervous System Mature Teratoma 6 69420 -NCIT:C5798 Childhood Benign Brain Neoplasm 6 69421 -NCIT:C5799 Childhood Benign Supratentorial Neoplasm 7 69422 -NCIT:C5800 Childhood Choroid Plexus Papilloma 8 69423 -NCIT:C6219 Childhood Benign Cerebral Neoplasm 8 69424 -NCIT:C7816 Childhood Craniopharyngioma 7 69425 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 8 69426 -NCIT:C190623 Childhood Malignant Nervous System Neoplasm 4 69427 -NCIT:C124270 Childhood Neuroblastoma 5 69428 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 6 69429 -NCIT:C124271 Childhood Ganglioneuroblastoma 5 69430 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 6 69431 -NCIT:C124273 Childhood Ganglioneuroblastoma, Intermixed 6 69432 -NCIT:C124274 Childhood Ganglioneuroblastoma, Nodular 6 69433 -NCIT:C5448 Childhood Malignant Central Nervous System Neoplasm 5 69434 -NCIT:C114833 Childhood Central Nervous System Embryonal Tumor 6 69435 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 7 69436 -NCIT:C114812 Childhood Pineoblastoma 7 69437 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 69438 -NCIT:C114836 Recurrent Childhood Central Nervous System Embryonal Neoplasm 7 69439 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 69440 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 69441 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 69442 -NCIT:C115203 Childhood Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 7 69443 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 69444 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 9 69445 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 69446 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 7 69447 -NCIT:C3997 Childhood Medulloblastoma 7 69448 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 69449 -NCIT:C5961 Childhood Central Nervous System Embryonal Tumor, Not Otherwise Specified 7 69450 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 69451 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 9 69452 -NCIT:C68634 Childhood Atypical Teratoid/Rhabdoid Tumor 7 69453 -NCIT:C114973 Childhood Anaplastic Oligoastrocytoma 6 69454 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 7 69455 -NCIT:C124293 Childhood Anaplastic Ependymoma 6 69456 -NCIT:C187207 Childhood Malignant Brain Neoplasm 6 69457 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 7 69458 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 69459 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 7 69460 -NCIT:C114812 Childhood Pineoblastoma 7 69461 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 69462 -NCIT:C114969 Childhood Gliomatosis Cerebri 7 69463 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 8 69464 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 7 69465 -NCIT:C124292 Childhood Choroid Plexus Carcinoma 7 69466 -NCIT:C147901 Childhood Brain Glioblastoma 7 69467 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 8 69468 -NCIT:C185471 Infant-Type Hemispheric Glioma 7 69469 -NCIT:C185472 Infant-Type Hemispheric Glioma, NTRK-Altered 8 69470 -NCIT:C185473 Infant-Type Hemispheric Glioma, ROS1-Altered 8 69471 -NCIT:C185474 Infant-Type Hemispheric Glioma, ALK-Altered 8 69472 -NCIT:C185475 Infant-Type Hemispheric Glioma, MET-Altered 8 69473 -NCIT:C187211 Metastatic Childhood Malignant Neoplasm in the Brain 7 69474 -NCIT:C187212 Metastatic Childhood Malignant Brain Neoplasm 7 69475 -NCIT:C187213 Advanced Childhood Malignant Brain Neoplasm 8 69476 -NCIT:C188922 Childhood Diffuse Midline Glioma, H3 K27-Altered 7 69477 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 7 69478 -NCIT:C188926 Childhood Diffuse Hemispheric Glioma, H3 G34-Mutant 7 69479 -NCIT:C188935 Childhood Supratentorial Ependymoma ZFTA Fusion-Positive 7 69480 -NCIT:C3997 Childhood Medulloblastoma 7 69481 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 69482 -NCIT:C6207 Childhood Brain Germinoma 7 69483 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 7 69484 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 8 69485 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 8 69486 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 7 69487 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 69488 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 7 69489 -NCIT:C27403 Childhood Central Nervous System Mixed Germ Cell Tumor 6 69490 -NCIT:C27406 Childhood Central Nervous System Germinoma 6 69491 -NCIT:C6207 Childhood Brain Germinoma 7 69492 -NCIT:C5136 Childhood Glioblastoma 6 69493 -NCIT:C114966 Childhood Giant Cell Glioblastoma 7 69494 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 8 69495 -NCIT:C114968 Childhood Gliosarcoma 7 69496 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 8 69497 -NCIT:C115365 Recurrent Childhood Gliosarcoma 8 69498 -NCIT:C115364 Recurrent Childhood Glioblastoma 7 69499 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 8 69500 -NCIT:C115365 Recurrent Childhood Gliosarcoma 8 69501 -NCIT:C147901 Childhood Brain Glioblastoma 7 69502 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 8 69503 -NCIT:C5318 Childhood Meningeal Melanoma 6 69504 -NCIT:C5447 Childhood Anaplastic Oligodendroglioma 6 69505 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 7 69506 -NCIT:C6206 Childhood Central Nervous System Choriocarcinoma 6 69507 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 6 69508 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 6 69509 -NCIT:C6215 Childhood Anaplastic Astrocytoma 6 69510 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 7 69511 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 7 69512 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 8 69513 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 8 69514 -NCIT:C71303 Childhood Grade 3 Meningioma 6 69515 -NCIT:C9047 Childhood Intraocular Retinoblastoma 6 69516 -NCIT:C9048 Childhood Extraocular Retinoblastoma 6 69517 -NCIT:C8094 Childhood Malignant Peripheral Nerve Sheath Tumor 5 69518 -NCIT:C5132 Childhood Central Nervous System Neoplasm 4 69519 -NCIT:C115192 Childhood Ependymal Tumor 5 69520 -NCIT:C124269 Childhood Myxopapillary Ependymoma 6 69521 -NCIT:C124293 Childhood Anaplastic Ependymoma 6 69522 -NCIT:C8578 Childhood Ependymoma 6 69523 -NCIT:C186351 Supratentorial Ependymoma YAP1 Fusion-Positive 7 69524 -NCIT:C186355 Supratentorial Ependymoma, YAP1-MAMLD1 Fusion-Positive 8 69525 -NCIT:C186495 Childhood Spinal Cord Ependymoma 7 69526 -NCIT:C188935 Childhood Supratentorial Ependymoma ZFTA Fusion-Positive 7 69527 -NCIT:C188943 Childhood Posterior Fossa Ependymoma 7 69528 -NCIT:C8579 Recurrent Childhood Ependymoma 7 69529 -NCIT:C9041 Childhood Infratentorial Ependymoma 7 69530 -NCIT:C9043 Childhood Supratentorial Ependymoma, Not Otherwise Specified 7 69531 -NCIT:C6268 Childhood Cerebral Ependymoma, Not Otherwise Specified 8 69532 -NCIT:C115195 Childhood Mixed Glioma 5 69533 -NCIT:C114760 Childhood Brain Stem Mixed Glioma 6 69534 -NCIT:C114973 Childhood Anaplastic Oligoastrocytoma 6 69535 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 7 69536 -NCIT:C114974 Childhood Oligoastrocytoma 6 69537 -NCIT:C115370 Recurrent Childhood Oligoastrocytoma 7 69538 -NCIT:C187214 Refractory Childhood Central Nervous System Neoplasm 5 69539 -NCIT:C187215 Refractory Childhood Brain Neoplasm 6 69540 -NCIT:C71714 Refractory Childhood Spinal Cord Neoplasm 6 69541 -NCIT:C188929 Childhood Astroblastoma, MN1-Altered 5 69542 -NCIT:C27362 Childhood Ganglioglioma 5 69543 -NCIT:C35876 Childhood Intracranial Neoplasm 5 69544 -NCIT:C7703 Childhood Brain Neoplasm 6 69545 -NCIT:C114773 Childhood Brain Oligodendroglioma 7 69546 -NCIT:C187207 Childhood Malignant Brain Neoplasm 7 69547 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 69548 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 9 69549 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 8 69550 -NCIT:C114812 Childhood Pineoblastoma 8 69551 -NCIT:C115374 Recurrent Childhood Pineoblastoma 9 69552 -NCIT:C114969 Childhood Gliomatosis Cerebri 8 69553 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 9 69554 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 8 69555 -NCIT:C124292 Childhood Choroid Plexus Carcinoma 8 69556 -NCIT:C147901 Childhood Brain Glioblastoma 8 69557 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 9 69558 -NCIT:C185471 Infant-Type Hemispheric Glioma 8 69559 -NCIT:C185472 Infant-Type Hemispheric Glioma, NTRK-Altered 9 69560 -NCIT:C185473 Infant-Type Hemispheric Glioma, ROS1-Altered 9 69561 -NCIT:C185474 Infant-Type Hemispheric Glioma, ALK-Altered 9 69562 -NCIT:C185475 Infant-Type Hemispheric Glioma, MET-Altered 9 69563 -NCIT:C187211 Metastatic Childhood Malignant Neoplasm in the Brain 8 69564 -NCIT:C187212 Metastatic Childhood Malignant Brain Neoplasm 8 69565 -NCIT:C187213 Advanced Childhood Malignant Brain Neoplasm 9 69566 -NCIT:C188922 Childhood Diffuse Midline Glioma, H3 K27-Altered 8 69567 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 8 69568 -NCIT:C188926 Childhood Diffuse Hemispheric Glioma, H3 G34-Mutant 8 69569 -NCIT:C188935 Childhood Supratentorial Ependymoma ZFTA Fusion-Positive 8 69570 -NCIT:C3997 Childhood Medulloblastoma 8 69571 -NCIT:C6774 Recurrent Childhood Medulloblastoma 9 69572 -NCIT:C6207 Childhood Brain Germinoma 8 69573 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 8 69574 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 9 69575 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 9 69576 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 69577 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 9 69578 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 69579 -NCIT:C187215 Refractory Childhood Brain Neoplasm 7 69580 -NCIT:C188931 Childhood Dysembryoplastic Neuroepithelial Tumor 7 69581 -NCIT:C188943 Childhood Posterior Fossa Ependymoma 7 69582 -NCIT:C5795 Childhood Brain Germ Cell Tumor 7 69583 -NCIT:C6207 Childhood Brain Germinoma 8 69584 -NCIT:C5798 Childhood Benign Brain Neoplasm 7 69585 -NCIT:C5799 Childhood Benign Supratentorial Neoplasm 8 69586 -NCIT:C5800 Childhood Choroid Plexus Papilloma 9 69587 -NCIT:C6219 Childhood Benign Cerebral Neoplasm 9 69588 -NCIT:C7816 Childhood Craniopharyngioma 8 69589 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 9 69590 -NCIT:C5802 Childhood Infratentorial Neoplasm 7 69591 -NCIT:C5969 Childhood Brain Stem Neoplasm 8 69592 -NCIT:C9042 Childhood Brain Stem Glioma 9 69593 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 69594 -NCIT:C114760 Childhood Brain Stem Mixed Glioma 10 69595 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 10 69596 -NCIT:C6216 Childhood Brain Stem Astrocytoma 10 69597 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 11 69598 -NCIT:C9190 Recurrent Childhood Brain Stem Glioma 10 69599 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 11 69600 -NCIT:C5970 Childhood Cerebellar Neoplasm 8 69601 -NCIT:C3997 Childhood Medulloblastoma 9 69602 -NCIT:C6774 Recurrent Childhood Medulloblastoma 10 69603 -NCIT:C6286 Childhood Cerebellar Astrocytoma 9 69604 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 10 69605 -NCIT:C8389 Recurrent Childhood Cerebellar Astrocytoma 10 69606 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 69607 -NCIT:C9041 Childhood Infratentorial Ependymoma 8 69608 -NCIT:C5960 Childhood Supratentorial Neoplasm 7 69609 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 69610 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 9 69611 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 8 69612 -NCIT:C115196 Childhood Pineal Parenchymal Cell Neoplasm 8 69613 -NCIT:C114812 Childhood Pineoblastoma 9 69614 -NCIT:C115374 Recurrent Childhood Pineoblastoma 10 69615 -NCIT:C124137 Childhood Pineal Parenchymal Tumor of Intermediate Differentiation 9 69616 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 8 69617 -NCIT:C185471 Infant-Type Hemispheric Glioma 8 69618 -NCIT:C185472 Infant-Type Hemispheric Glioma, NTRK-Altered 9 69619 -NCIT:C185473 Infant-Type Hemispheric Glioma, ROS1-Altered 9 69620 -NCIT:C185474 Infant-Type Hemispheric Glioma, ALK-Altered 9 69621 -NCIT:C185475 Infant-Type Hemispheric Glioma, MET-Altered 9 69622 -NCIT:C186351 Supratentorial Ependymoma YAP1 Fusion-Positive 8 69623 -NCIT:C186355 Supratentorial Ependymoma, YAP1-MAMLD1 Fusion-Positive 9 69624 -NCIT:C188926 Childhood Diffuse Hemispheric Glioma, H3 G34-Mutant 8 69625 -NCIT:C188933 Childhood Multinodular and Vacuolated Neuronal Tumor 8 69626 -NCIT:C188935 Childhood Supratentorial Ependymoma ZFTA Fusion-Positive 8 69627 -NCIT:C42080 Childhood Choroid Plexus Neoplasm 8 69628 -NCIT:C124291 Childhood Atypical Choroid Plexus Papilloma 9 69629 -NCIT:C124292 Childhood Choroid Plexus Carcinoma 9 69630 -NCIT:C5800 Childhood Choroid Plexus Papilloma 9 69631 -NCIT:C4347 Childhood Cerebral Astrocytoma 8 69632 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 9 69633 -NCIT:C8387 Childhood Cerebral Diffuse Astrocytoma 9 69634 -NCIT:C9191 Recurrent Childhood Cerebral Astrocytoma 9 69635 -NCIT:C5799 Childhood Benign Supratentorial Neoplasm 8 69636 -NCIT:C5800 Childhood Choroid Plexus Papilloma 9 69637 -NCIT:C6219 Childhood Benign Cerebral Neoplasm 9 69638 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 69639 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 9 69640 -NCIT:C9043 Childhood Supratentorial Ependymoma, Not Otherwise Specified 8 69641 -NCIT:C6268 Childhood Cerebral Ependymoma, Not Otherwise Specified 9 69642 -NCIT:C6253 Childhood Intracranial Meningioma 7 69643 -NCIT:C7535 Childhood Visual Pathway Glioma 7 69644 -NCIT:C7529 Recurrent Childhood Visual Pathway Glioma 8 69645 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 9 69646 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 69647 -NCIT:C7531 Recurrent Childhood Optic Nerve Glioma 9 69648 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 69649 -NCIT:C7534 Childhood Visual Pathway Astrocytoma 8 69650 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 9 69651 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 69652 -NCIT:C7834 Recurrent Childhood Brain Neoplasm 7 69653 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 8 69654 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 69655 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 69656 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 69657 -NCIT:C7529 Recurrent Childhood Visual Pathway Glioma 8 69658 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 9 69659 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 69660 -NCIT:C7531 Recurrent Childhood Optic Nerve Glioma 9 69661 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 69662 -NCIT:C8389 Recurrent Childhood Cerebellar Astrocytoma 8 69663 -NCIT:C9190 Recurrent Childhood Brain Stem Glioma 8 69664 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 9 69665 -NCIT:C9191 Recurrent Childhood Cerebral Astrocytoma 8 69666 -NCIT:C4045 Childhood Oligodendroglioma 5 69667 -NCIT:C114773 Childhood Brain Oligodendroglioma 6 69668 -NCIT:C115371 Recurrent Childhood Oligodendroglioma 6 69669 -NCIT:C4738 Desmoplastic Infantile Ganglioglioma 5 69670 -NCIT:C5448 Childhood Malignant Central Nervous System Neoplasm 5 69671 -NCIT:C114833 Childhood Central Nervous System Embryonal Tumor 6 69672 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 7 69673 -NCIT:C114812 Childhood Pineoblastoma 7 69674 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 69675 -NCIT:C114836 Recurrent Childhood Central Nervous System Embryonal Neoplasm 7 69676 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 69677 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 69678 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 69679 -NCIT:C115203 Childhood Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 7 69680 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 69681 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 9 69682 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 69683 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 7 69684 -NCIT:C3997 Childhood Medulloblastoma 7 69685 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 69686 -NCIT:C5961 Childhood Central Nervous System Embryonal Tumor, Not Otherwise Specified 7 69687 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 69688 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 9 69689 -NCIT:C68634 Childhood Atypical Teratoid/Rhabdoid Tumor 7 69690 -NCIT:C114973 Childhood Anaplastic Oligoastrocytoma 6 69691 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 7 69692 -NCIT:C124293 Childhood Anaplastic Ependymoma 6 69693 -NCIT:C187207 Childhood Malignant Brain Neoplasm 6 69694 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 7 69695 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 69696 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 7 69697 -NCIT:C114812 Childhood Pineoblastoma 7 69698 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 69699 -NCIT:C114969 Childhood Gliomatosis Cerebri 7 69700 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 8 69701 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 7 69702 -NCIT:C124292 Childhood Choroid Plexus Carcinoma 7 69703 -NCIT:C147901 Childhood Brain Glioblastoma 7 69704 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 8 69705 -NCIT:C185471 Infant-Type Hemispheric Glioma 7 69706 -NCIT:C185472 Infant-Type Hemispheric Glioma, NTRK-Altered 8 69707 -NCIT:C185473 Infant-Type Hemispheric Glioma, ROS1-Altered 8 69708 -NCIT:C185474 Infant-Type Hemispheric Glioma, ALK-Altered 8 69709 -NCIT:C185475 Infant-Type Hemispheric Glioma, MET-Altered 8 69710 -NCIT:C187211 Metastatic Childhood Malignant Neoplasm in the Brain 7 69711 -NCIT:C187212 Metastatic Childhood Malignant Brain Neoplasm 7 69712 -NCIT:C187213 Advanced Childhood Malignant Brain Neoplasm 8 69713 -NCIT:C188922 Childhood Diffuse Midline Glioma, H3 K27-Altered 7 69714 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 7 69715 -NCIT:C188926 Childhood Diffuse Hemispheric Glioma, H3 G34-Mutant 7 69716 -NCIT:C188935 Childhood Supratentorial Ependymoma ZFTA Fusion-Positive 7 69717 -NCIT:C3997 Childhood Medulloblastoma 7 69718 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 69719 -NCIT:C6207 Childhood Brain Germinoma 7 69720 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 7 69721 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 8 69722 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 8 69723 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 7 69724 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 69725 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 7 69726 -NCIT:C27403 Childhood Central Nervous System Mixed Germ Cell Tumor 6 69727 -NCIT:C27406 Childhood Central Nervous System Germinoma 6 69728 -NCIT:C6207 Childhood Brain Germinoma 7 69729 -NCIT:C5136 Childhood Glioblastoma 6 69730 -NCIT:C114966 Childhood Giant Cell Glioblastoma 7 69731 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 8 69732 -NCIT:C114968 Childhood Gliosarcoma 7 69733 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 8 69734 -NCIT:C115365 Recurrent Childhood Gliosarcoma 8 69735 -NCIT:C115364 Recurrent Childhood Glioblastoma 7 69736 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 8 69737 -NCIT:C115365 Recurrent Childhood Gliosarcoma 8 69738 -NCIT:C147901 Childhood Brain Glioblastoma 7 69739 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 8 69740 -NCIT:C5318 Childhood Meningeal Melanoma 6 69741 -NCIT:C5447 Childhood Anaplastic Oligodendroglioma 6 69742 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 7 69743 -NCIT:C6206 Childhood Central Nervous System Choriocarcinoma 6 69744 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 6 69745 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 6 69746 -NCIT:C6215 Childhood Anaplastic Astrocytoma 6 69747 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 7 69748 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 7 69749 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 8 69750 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 8 69751 -NCIT:C71303 Childhood Grade 3 Meningioma 6 69752 -NCIT:C9047 Childhood Intraocular Retinoblastoma 6 69753 -NCIT:C9048 Childhood Extraocular Retinoblastoma 6 69754 -NCIT:C5591 Childhood Benign Central Nervous System Neoplasm 5 69755 -NCIT:C27404 Childhood Central Nervous System Mature Teratoma 6 69756 -NCIT:C5798 Childhood Benign Brain Neoplasm 6 69757 -NCIT:C5799 Childhood Benign Supratentorial Neoplasm 7 69758 -NCIT:C5800 Childhood Choroid Plexus Papilloma 8 69759 -NCIT:C6219 Childhood Benign Cerebral Neoplasm 8 69760 -NCIT:C7816 Childhood Craniopharyngioma 7 69761 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 8 69762 -NCIT:C6205 Childhood Central Nervous System Germ Cell Tumor 5 69763 -NCIT:C27403 Childhood Central Nervous System Mixed Germ Cell Tumor 6 69764 -NCIT:C27406 Childhood Central Nervous System Germinoma 6 69765 -NCIT:C6207 Childhood Brain Germinoma 7 69766 -NCIT:C5795 Childhood Brain Germ Cell Tumor 6 69767 -NCIT:C6207 Childhood Brain Germinoma 7 69768 -NCIT:C6204 Childhood Central Nervous System Teratoma 6 69769 -NCIT:C27404 Childhood Central Nervous System Mature Teratoma 7 69770 -NCIT:C27405 Childhood Central Nervous System Immature Teratoma 7 69771 -NCIT:C6206 Childhood Central Nervous System Choriocarcinoma 6 69772 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 6 69773 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 6 69774 -NCIT:C8264 Childhood Meningioma 5 69775 -NCIT:C6253 Childhood Intracranial Meningioma 6 69776 -NCIT:C71300 Childhood Grade 1 Meningioma 6 69777 -NCIT:C71301 Childhood Grade 2 Meningioma 6 69778 -NCIT:C71303 Childhood Grade 3 Meningioma 6 69779 -NCIT:C9022 Childhood Astrocytic Tumor 5 69780 -NCIT:C114956 Recurrent Childhood Astrocytic Tumor 6 69781 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 7 69782 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 7 69783 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 8 69784 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 8 69785 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 8 69786 -NCIT:C115364 Recurrent Childhood Glioblastoma 7 69787 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 8 69788 -NCIT:C115365 Recurrent Childhood Gliosarcoma 8 69789 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 7 69790 -NCIT:C115373 Recurrent Childhood Pilomyxoid Astrocytoma 7 69791 -NCIT:C115375 Recurrent Childhood Pleomorphic Xanthoastrocytoma 7 69792 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 7 69793 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 7 69794 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 7 69795 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 8 69796 -NCIT:C8389 Recurrent Childhood Cerebellar Astrocytoma 7 69797 -NCIT:C9191 Recurrent Childhood Cerebral Astrocytoma 7 69798 -NCIT:C124275 Childhood Astrocytoma 6 69799 -NCIT:C114785 Childhood Subependymal Giant Cell Astrocytoma 7 69800 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 8 69801 -NCIT:C114967 Childhood Diffuse Astrocytoma 7 69802 -NCIT:C114963 Childhood Fibrillary Astrocytoma 8 69803 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 9 69804 -NCIT:C114964 Childhood Gemistocytic Astrocytoma 8 69805 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 9 69806 -NCIT:C114972 Childhood Protoplasmic Astrocytoma 8 69807 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 9 69808 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 8 69809 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 9 69810 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 9 69811 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 9 69812 -NCIT:C188920 Childhood Diffuse Astrocytoma, MYBL1-Altered 8 69813 -NCIT:C188921 Childhood Diffuse Astrocytoma, MYB-Altered 8 69814 -NCIT:C8387 Childhood Cerebral Diffuse Astrocytoma 8 69815 -NCIT:C114970 Childhood Pilomyxoid Astrocytoma 7 69816 -NCIT:C115373 Recurrent Childhood Pilomyxoid Astrocytoma 8 69817 -NCIT:C114971 Childhood Pleomorphic Xanthoastrocytoma 7 69818 -NCIT:C115375 Recurrent Childhood Pleomorphic Xanthoastrocytoma 8 69819 -NCIT:C4048 Childhood Pilocytic Astrocytoma 7 69820 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 8 69821 -NCIT:C27081 Juvenile Pilocytic Astrocytoma 8 69822 -NCIT:C4347 Childhood Cerebral Astrocytoma 7 69823 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 8 69824 -NCIT:C8387 Childhood Cerebral Diffuse Astrocytoma 8 69825 -NCIT:C9191 Recurrent Childhood Cerebral Astrocytoma 8 69826 -NCIT:C6215 Childhood Anaplastic Astrocytoma 7 69827 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 8 69828 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 8 69829 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 9 69830 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 9 69831 -NCIT:C6216 Childhood Brain Stem Astrocytoma 7 69832 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 8 69833 -NCIT:C6286 Childhood Cerebellar Astrocytoma 7 69834 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 8 69835 -NCIT:C8389 Recurrent Childhood Cerebellar Astrocytoma 8 69836 -NCIT:C7534 Childhood Visual Pathway Astrocytoma 7 69837 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 8 69838 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 9 69839 -NCIT:C5136 Childhood Glioblastoma 6 69840 -NCIT:C114966 Childhood Giant Cell Glioblastoma 7 69841 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 8 69842 -NCIT:C114968 Childhood Gliosarcoma 7 69843 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 8 69844 -NCIT:C115365 Recurrent Childhood Gliosarcoma 8 69845 -NCIT:C115364 Recurrent Childhood Glioblastoma 7 69846 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 8 69847 -NCIT:C115365 Recurrent Childhood Gliosarcoma 8 69848 -NCIT:C147901 Childhood Brain Glioblastoma 7 69849 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 8 69850 -NCIT:C9045 Recurrent Childhood Central Nervous System Neoplasm 5 69851 -NCIT:C114836 Recurrent Childhood Central Nervous System Embryonal Neoplasm 6 69852 -NCIT:C115374 Recurrent Childhood Pineoblastoma 7 69853 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 7 69854 -NCIT:C6774 Recurrent Childhood Medulloblastoma 7 69855 -NCIT:C114956 Recurrent Childhood Astrocytic Tumor 6 69856 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 7 69857 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 7 69858 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 8 69859 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 8 69860 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 8 69861 -NCIT:C115364 Recurrent Childhood Glioblastoma 7 69862 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 8 69863 -NCIT:C115365 Recurrent Childhood Gliosarcoma 8 69864 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 7 69865 -NCIT:C115373 Recurrent Childhood Pilomyxoid Astrocytoma 7 69866 -NCIT:C115375 Recurrent Childhood Pleomorphic Xanthoastrocytoma 7 69867 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 7 69868 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 7 69869 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 7 69870 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 8 69871 -NCIT:C8389 Recurrent Childhood Cerebellar Astrocytoma 7 69872 -NCIT:C9191 Recurrent Childhood Cerebral Astrocytoma 7 69873 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 6 69874 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 6 69875 -NCIT:C115370 Recurrent Childhood Oligoastrocytoma 6 69876 -NCIT:C115371 Recurrent Childhood Oligodendroglioma 6 69877 -NCIT:C71712 Recurrent Childhood Spinal Cord Neoplasm 6 69878 -NCIT:C7834 Recurrent Childhood Brain Neoplasm 6 69879 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 7 69880 -NCIT:C115374 Recurrent Childhood Pineoblastoma 7 69881 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 7 69882 -NCIT:C6774 Recurrent Childhood Medulloblastoma 7 69883 -NCIT:C7529 Recurrent Childhood Visual Pathway Glioma 7 69884 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 8 69885 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 9 69886 -NCIT:C7531 Recurrent Childhood Optic Nerve Glioma 8 69887 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 9 69888 -NCIT:C8389 Recurrent Childhood Cerebellar Astrocytoma 7 69889 -NCIT:C9190 Recurrent Childhood Brain Stem Glioma 7 69890 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 8 69891 -NCIT:C9191 Recurrent Childhood Cerebral Astrocytoma 7 69892 -NCIT:C8579 Recurrent Childhood Ependymoma 6 69893 -NCIT:C9234 Childhood Spinal Cord Neoplasm 5 69894 -NCIT:C186495 Childhood Spinal Cord Ependymoma 6 69895 -NCIT:C71712 Recurrent Childhood Spinal Cord Neoplasm 6 69896 -NCIT:C71714 Refractory Childhood Spinal Cord Neoplasm 6 69897 -NCIT:C9476 Desmoplastic Infantile Astrocytoma 5 69898 -NCIT:C2963 Cranial Nerve Neoplasm 3 69899 -NCIT:C3571 Malignant Cranial Nerve Neoplasm 4 69900 -NCIT:C170941 Malignant Optic Nerve Neoplasm 5 69901 -NCIT:C4539 Malignant Vestibulocochlear Nerve Neoplasm 5 69902 -NCIT:C4768 Malignant Olfactory Nerve Neoplasm 5 69903 -NCIT:C3789 Olfactory Neuroblastoma 6 69904 -NCIT:C115384 Recurrent Olfactory Neuroblastoma 7 69905 -NCIT:C173174 Sinonasal Olfactory Neuroblastoma 7 69906 -NCIT:C6016 Paranasal Sinus Olfactory Neuroblastoma 8 69907 -NCIT:C5435 Kadish Stage C Olfactory Neuroblastoma 7 69908 -NCIT:C6853 Kadish Stage A Olfactory Neuroblastoma 7 69909 -NCIT:C6854 Kadish Stage B Olfactory Neuroblastoma 7 69910 -NCIT:C7604 Nasal Cavity Olfactory Neuroblastoma 7 69911 -NCIT:C6995 Malignant Oculomotor Nerve Neoplasm 5 69912 -NCIT:C4801 Optic Nerve Neoplasm 4 69913 -NCIT:C170941 Malignant Optic Nerve Neoplasm 5 69914 -NCIT:C175496 Optic Nerve Sheath Solitary Fibrous Tumor 5 69915 -NCIT:C4537 Optic Nerve Glioma 5 69916 -NCIT:C6769 Optic Nerve Astrocytoma 6 69917 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 7 69918 -NCIT:C7531 Recurrent Childhood Optic Nerve Glioma 6 69919 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 7 69920 -NCIT:C4538 Optic Nerve Sheath Meningioma 5 69921 -NCIT:C5304 Bilateral Optic Nerve Meningioma 5 69922 -NCIT:C5120 Vestibulocochlear Nerve Neoplasm 4 69923 -NCIT:C3276 Vestibular Schwannoma 5 69924 -NCIT:C4539 Malignant Vestibulocochlear Nerve Neoplasm 5 69925 -NCIT:C5121 Olfactory Nerve Neoplasm 4 69926 -NCIT:C4768 Malignant Olfactory Nerve Neoplasm 5 69927 -NCIT:C3789 Olfactory Neuroblastoma 6 69928 -NCIT:C115384 Recurrent Olfactory Neuroblastoma 7 69929 -NCIT:C173174 Sinonasal Olfactory Neuroblastoma 7 69930 -NCIT:C6016 Paranasal Sinus Olfactory Neuroblastoma 8 69931 -NCIT:C5435 Kadish Stage C Olfactory Neuroblastoma 7 69932 -NCIT:C6853 Kadish Stage A Olfactory Neuroblastoma 7 69933 -NCIT:C6854 Kadish Stage B Olfactory Neuroblastoma 7 69934 -NCIT:C7604 Nasal Cavity Olfactory Neuroblastoma 7 69935 -NCIT:C67155 Olfactory Neurogenic Tumor 5 69936 -NCIT:C3789 Olfactory Neuroblastoma 6 69937 -NCIT:C115384 Recurrent Olfactory Neuroblastoma 7 69938 -NCIT:C173174 Sinonasal Olfactory Neuroblastoma 7 69939 -NCIT:C6016 Paranasal Sinus Olfactory Neuroblastoma 8 69940 -NCIT:C5435 Kadish Stage C Olfactory Neuroblastoma 7 69941 -NCIT:C6853 Kadish Stage A Olfactory Neuroblastoma 7 69942 -NCIT:C6854 Kadish Stage B Olfactory Neuroblastoma 7 69943 -NCIT:C7604 Nasal Cavity Olfactory Neuroblastoma 7 69944 -NCIT:C67156 Olfactory Neurocytoma 6 69945 -NCIT:C5122 Trigeminal Nerve Neoplasm 4 69946 -NCIT:C4655 Trigeminal Schwannoma 5 69947 -NCIT:C5825 Trochlear Nerve Neoplasm 4 69948 -NCIT:C5826 Abducens Nerve Neoplasm 4 69949 -NCIT:C5827 Facial Nerve Neoplasm 4 69950 -NCIT:C188213 Schwannoma of the Seventh Cranial Nerve 5 69951 -NCIT:C5828 Glossopharyngeal Nerve Neoplasm 4 69952 -NCIT:C5829 Accessory Nerve Neoplasm 4 69953 -NCIT:C5830 Hypoglossal Nerve Neoplasm 4 69954 -NCIT:C5434 Schwannoma of the Twelfth Cranial Nerve 5 69955 -NCIT:C5831 Vagus Nerve Neoplasm 4 69956 -NCIT:C8427 Vagal Paraganglioma 5 69957 -NCIT:C6994 Oculomotor Nerve Neoplasm 4 69958 -NCIT:C6995 Malignant Oculomotor Nerve Neoplasm 5 69959 -NCIT:C3321 Peripheral Nervous System Neoplasm 3 69960 -NCIT:C188951 Childhood Peripheral Nervous System Neoplasm 4 69961 -NCIT:C188946 Childhood Ganglioneuroma 5 69962 -NCIT:C188995 Childhood Neurofibroma 5 69963 -NCIT:C190074 Childhood Paraganglioma 5 69964 -NCIT:C190071 Childhood Sympathetic Paraganglioma 6 69965 -NCIT:C118822 Childhood Adrenal Gland Pheochromocytoma 7 69966 -NCIT:C190072 Childhood Parasympathetic Paraganglioma 6 69967 -NCIT:C190073 Childhood Composite Paraganglioma 6 69968 -NCIT:C5429 Childhood Mediastinal Neurogenic Neoplasm 5 69969 -NCIT:C8094 Childhood Malignant Peripheral Nerve Sheath Tumor 5 69970 -NCIT:C27507 Hemangioma of Peripheral Nerve 4 69971 -NCIT:C3272 Neurofibroma 4 69972 -NCIT:C128451 Cutaneous Neurofibroma 5 69973 -NCIT:C159682 Bladder Neurofibroma 5 69974 -NCIT:C162587 Penile Neurofibroma 5 69975 -NCIT:C173144 Sinonasal Neurofibroma 5 69976 -NCIT:C176415 Breast Neurofibroma 5 69977 -NCIT:C188995 Childhood Neurofibroma 5 69978 -NCIT:C3797 Plexiform Neurofibroma 5 69979 -NCIT:C179423 Unresectable Plexiform Neurofibroma 6 69980 -NCIT:C41426 Neurofibroma with Atypia 5 69981 -NCIT:C41427 Cellular Neurofibroma 5 69982 -NCIT:C4328 Pacinian Neurofibroma 5 69983 -NCIT:C5145 Spinal Cord Neurofibroma 5 69984 -NCIT:C5359 Cardiac Neurofibroma 5 69985 -NCIT:C5704 Esophageal Neurofibroma 5 69986 -NCIT:C5746 Gallbladder Neurofibroma 5 69987 -NCIT:C6558 Epithelioid Neurofibroma 5 69988 -NCIT:C6631 Mediastinal Neurofibroma 5 69989 -NCIT:C66841 Melanotic Neurofibroma 5 69990 -NCIT:C8426 Diffuse Neurofibroma 5 69991 -NCIT:C41430 Peripheral Nerve Schwannoma 4 69992 -NCIT:C156340 Thyroid Gland Schwannoma 5 69993 -NCIT:C156944 Adrenal Gland Schwannoma 5 69994 -NCIT:C159221 Kidney Schwannoma 5 69995 -NCIT:C162502 Paratesticular Schwannoma 5 69996 -NCIT:C161639 Seminal Vesicle Schwannoma 6 69997 -NCIT:C162586 Penile Schwannoma 5 69998 -NCIT:C176414 Breast Schwannoma 5 69999 -NCIT:C27476 Bone Schwannoma 5 70000 -NCIT:C5323 Jugular Foramen Schwannoma 5 70001 -NCIT:C5358 Cardiac Schwannoma 5 70002 -NCIT:C5418 Pleural Schwannoma 5 70003 -NCIT:C5421 Sympathetic Schwannoma 5 70004 -NCIT:C5569 Cutaneous Schwannoma 5 70005 -NCIT:C5703 Esophageal Schwannoma 5 70006 -NCIT:C6162 Ureter Schwannoma 5 70007 -NCIT:C6643 Mediastinal Schwannoma 5 70008 -NCIT:C6636 Mediastinal Psammomatous Schwannoma 6 70009 -NCIT:C6718 Sternal Intraosseous Schwannoma 5 70010 -NCIT:C92182 Intraocular Schwannoma 5 70011 -NCIT:C95901 Gastric Schwannoma 5 70012 -NCIT:C96512 Colorectal Schwannoma 5 70013 -NCIT:C4479 Cutaneous Neural Neoplasm 4 70014 -NCIT:C121680 Dermal Nerve Sheath Myxoma 5 70015 -NCIT:C128451 Cutaneous Neurofibroma 5 70016 -NCIT:C172621 Cutaneous Perineurioma 5 70017 -NCIT:C172624 Malignant Peripheral Nerve Sheath Tumor of the Skin 5 70018 -NCIT:C172625 Epithelioid Malignant Peripheral Nerve Sheath Tumor of the Skin 6 70019 -NCIT:C4481 Cutaneous Ganglioneuroma 5 70020 -NCIT:C5569 Cutaneous Schwannoma 5 70021 -NCIT:C5617 Cutaneous Granular Cell Tumor 5 70022 -NCIT:C5614 Malignant Cutaneous Granular Cell Tumor 6 70023 -NCIT:C4961 Malignant Peripheral Nervous System Neoplasm 4 70024 -NCIT:C3798 Malignant Peripheral Nerve Sheath Tumor 5 70025 -NCIT:C128050 Cervical Malignant Peripheral Nerve Sheath Tumor 6 70026 -NCIT:C155987 Refractory Malignant Peripheral Nerve Sheath Tumor 6 70027 -NCIT:C162725 Refractory Epithelioid Malignant Peripheral Nerve Sheath Tumor 7 70028 -NCIT:C156341 Thyroid Gland Malignant Peripheral Nerve Sheath Tumor 6 70029 -NCIT:C162584 Penile Malignant Peripheral Nerve Sheath Tumor 6 70030 -NCIT:C164312 Unresectable Malignant Peripheral Nerve Sheath Tumor 6 70031 -NCIT:C164313 NF1-Associated Malignant Peripheral Nerve Sheath Tumor 6 70032 -NCIT:C164314 Sporadic Malignant Peripheral Nerve Sheath Tumor 6 70033 -NCIT:C164316 Radiation-Induced Malignant Peripheral Nerve Sheath Tumor 6 70034 -NCIT:C172624 Malignant Peripheral Nerve Sheath Tumor of the Skin 6 70035 -NCIT:C172625 Epithelioid Malignant Peripheral Nerve Sheath Tumor of the Skin 7 70036 -NCIT:C173127 Sinonasal Malignant Peripheral Nerve Sheath Tumor 6 70037 -NCIT:C188064 Bone Malignant Peripheral Nerve Sheath Tumor 6 70038 -NCIT:C188073 Retroperitoneal Malignant Peripheral Nerve Sheath Tumor 6 70039 -NCIT:C4748 Malignant Melanotic Peripheral Nerve Sheath Tumor 6 70040 -NCIT:C6630 Malignant Melanotic Peripheral Nerve Sheath Tumor of the Mediastinum 7 70041 -NCIT:C6910 Malignant Melanotic Psammomatous Peripheral Nerve Sheath Tumor 7 70042 -NCIT:C5367 Cardiac Malignant Peripheral Nerve Sheath Tumor 6 70043 -NCIT:C6560 Glandular Malignant Peripheral Nerve Sheath Tumor 6 70044 -NCIT:C6561 Epithelioid Malignant Peripheral Nerve Sheath Tumor 6 70045 -NCIT:C162724 Recurrent Epithelioid Malignant Peripheral Nerve Sheath Tumor 7 70046 -NCIT:C162725 Refractory Epithelioid Malignant Peripheral Nerve Sheath Tumor 7 70047 -NCIT:C172625 Epithelioid Malignant Peripheral Nerve Sheath Tumor of the Skin 7 70048 -NCIT:C6626 Mediastinal Malignant Peripheral Nerve Sheath Tumor 6 70049 -NCIT:C6630 Malignant Melanotic Peripheral Nerve Sheath Tumor of the Mediastinum 7 70050 -NCIT:C66845 Malignant Peripheral Nerve Sheath Tumor with Perineurial Differentiation 6 70051 -NCIT:C7814 Adult Malignant Peripheral Nerve Sheath Tumor 6 70052 -NCIT:C8094 Childhood Malignant Peripheral Nerve Sheath Tumor 6 70053 -NCIT:C8822 Metastatic Malignant Peripheral Nerve Sheath Tumor 6 70054 -NCIT:C164074 Locally Advanced Malignant Peripheral Nerve Sheath Tumor 7 70055 -NCIT:C168714 Advanced Malignant Peripheral Nerve Sheath Tumor 7 70056 -NCIT:C8823 Recurrent Malignant Peripheral Nerve Sheath Tumor 6 70057 -NCIT:C162724 Recurrent Epithelioid Malignant Peripheral Nerve Sheath Tumor 7 70058 -NCIT:C9026 Low Grade Malignant Peripheral Nerve Sheath Tumor 6 70059 -NCIT:C9030 High Grade Malignant Peripheral Nerve Sheath Tumor 6 70060 -NCIT:C92185 Esophageal Malignant Peripheral Nerve Sheath Tumor 6 70061 -NCIT:C92186 Intraocular Malignant Peripheral Nerve Sheath Tumor 6 70062 -NCIT:C92647 Malignant Peripheral Nerve Sheath Tumor with Mesenchymal Differentiation 6 70063 -NCIT:C4335 Malignant Triton Tumor 7 70064 -NCIT:C4336 Malignant Granular Cell Tumor 5 70065 -NCIT:C5484 Malignant Gastric Granular Cell Tumor 6 70066 -NCIT:C5614 Malignant Cutaneous Granular Cell Tumor 6 70067 -NCIT:C6591 Peripheral Neuroblastoma 5 70068 -NCIT:C6628 Mediastinal Neuroblastoma 6 70069 -NCIT:C6964 Neuroblastoma of the Adrenal Gland and Sympathetic Nervous System 6 70070 -NCIT:C4827 Adrenal Gland Neuroblastoma 7 70071 -NCIT:C6594 Peripheral Ganglioneuroblastoma 5 70072 -NCIT:C6627 Mediastinal Ganglioneuroblastoma 6 70073 -NCIT:C7646 Adrenal Gland Ganglioneuroblastoma 6 70074 -NCIT:C157243 Adrenal Gland Ganglioneuroblastoma, Intermixed 7 70075 -NCIT:C157244 Adrenal Gland Ganglioneuroblastoma, Nodular 7 70076 -NCIT:C8559 Metastatic Paraganglioma 5 70077 -NCIT:C133713 Locally Advanced Paraganglioma 6 70078 -NCIT:C157129 Locally Advanced Adrenal Gland Pheochromocytoma 7 70079 -NCIT:C160852 Advanced Paraganglioma 6 70080 -NCIT:C160853 Advanced Adrenal Gland Pheochromocytoma 7 70081 -NCIT:C4219 Metastatic Extra-Adrenal Paraganglioma 6 70082 -NCIT:C3574 Metastatic Carotid Body Paraganglioma 7 70083 -NCIT:C4623 Metastatic Jugulotympanic Paraganglioma 7 70084 -NCIT:C5392 Metastatic Cardiac Paraganglioma 7 70085 -NCIT:C6413 Metastatic Intrathoracic Paravertebral Paraganglioma 7 70086 -NCIT:C6416 Metastatic Bladder Paraganglioma 7 70087 -NCIT:C4220 Metastatic Adrenal Gland Pheochromocytoma 6 70088 -NCIT:C157129 Locally Advanced Adrenal Gland Pheochromocytoma 7 70089 -NCIT:C160853 Advanced Adrenal Gland Pheochromocytoma 7 70090 -NCIT:C92184 Metastatic Adrenal Gland Composite Pheochromocytoma 7 70091 -NCIT:C9341 Peripheral Primitive Neuroectodermal Tumor 5 70092 -NCIT:C142850 Refractory Peripheral Primitive Neuroectodermal Tumor 6 70093 -NCIT:C27471 Peripheral Primitive Neuroectodermal Tumor of Soft Tissues 6 70094 -NCIT:C27899 Recurrent Peripheral Primitive Neuroectodermal Tumor 6 70095 -NCIT:C27354 Recurrent Peripheral Primitive Neuroectodermal Tumor of Bone 7 70096 -NCIT:C27900 Recurrent Askin Tumor 7 70097 -NCIT:C27903 Localized Peripheral Primitive Neuroectodermal Tumor 6 70098 -NCIT:C27353 Localized Peripheral Primitive Neuroectodermal Tumor of Bone 7 70099 -NCIT:C27902 Localized Askin Tumor 7 70100 -NCIT:C67214 Peripheral Primitive Neuroectodermal Tumor of the Kidney 6 70101 -NCIT:C7542 Askin Tumor 6 70102 -NCIT:C27900 Recurrent Askin Tumor 7 70103 -NCIT:C27902 Localized Askin Tumor 7 70104 -NCIT:C8776 Peripheral Primitive Neuroectodermal Tumor of Bone 6 70105 -NCIT:C27353 Localized Peripheral Primitive Neuroectodermal Tumor of Bone 7 70106 -NCIT:C27354 Recurrent Peripheral Primitive Neuroectodermal Tumor of Bone 7 70107 -NCIT:C36074 Metastatic Peripheral Primitive Neuroectodermal Tumor of Bone 7 70108 -NCIT:C5112 Autonomic Nervous System Neoplasm 4 70109 -NCIT:C3049 Ganglioneuroma 5 70110 -NCIT:C188946 Childhood Ganglioneuroma 6 70111 -NCIT:C188947 Adult Ganglioneuroma 6 70112 -NCIT:C188956 Choroidal Ganglioneuroma 6 70113 -NCIT:C42064 Maturing Ganglioneuroma 6 70114 -NCIT:C42065 Mature Ganglioneuroma 6 70115 -NCIT:C4481 Cutaneous Ganglioneuroma 6 70116 -NCIT:C5427 Retroperitoneal Ganglioneuroma 6 70117 -NCIT:C157245 Adrenal Gland Ganglioneuroma 7 70118 -NCIT:C6632 Mediastinal Ganglioneuroma 6 70119 -NCIT:C66804 Ganglioneuromatosis 6 70120 -NCIT:C96514 Colorectal Ganglioneuroma 6 70121 -NCIT:C7042 Colon Ganglioneuroma 7 70122 -NCIT:C3308 Paraganglioma 5 70123 -NCIT:C157125 Recurrent Paraganglioma 6 70124 -NCIT:C8047 Recurrent Adrenal Gland Pheochromocytoma 7 70125 -NCIT:C157126 Unresectable Paraganglioma 6 70126 -NCIT:C157128 Unresectable Adrenal Gland Pheochromocytoma 7 70127 -NCIT:C157246 Composite Paraganglioma 6 70128 -NCIT:C190073 Childhood Composite Paraganglioma 7 70129 -NCIT:C48306 Adrenal Gland Composite Pheochromocytoma 7 70130 -NCIT:C92181 Non-Metastatic Adrenal Gland Composite Pheochromocytoma 8 70131 -NCIT:C92184 Metastatic Adrenal Gland Composite Pheochromocytoma 8 70132 -NCIT:C158401 Refractory Paraganglioma 6 70133 -NCIT:C158402 Refractory Adrenal Gland Pheochromocytoma 7 70134 -NCIT:C190074 Childhood Paraganglioma 6 70135 -NCIT:C190071 Childhood Sympathetic Paraganglioma 7 70136 -NCIT:C118822 Childhood Adrenal Gland Pheochromocytoma 8 70137 -NCIT:C190072 Childhood Parasympathetic Paraganglioma 7 70138 -NCIT:C190073 Childhood Composite Paraganglioma 7 70139 -NCIT:C3309 Extra-Adrenal Paraganglioma 6 70140 -NCIT:C161612 Prostate Paraganglioma 7 70141 -NCIT:C162490 Paratesticular Paraganglioma 7 70142 -NCIT:C4217 Parasympathetic Paraganglioma 7 70143 -NCIT:C190072 Childhood Parasympathetic Paraganglioma 8 70144 -NCIT:C2932 Carotid Body Paraganglioma 8 70145 -NCIT:C3574 Metastatic Carotid Body Paraganglioma 9 70146 -NCIT:C79950 Non-Metastatic Carotid Body Paraganglioma 9 70147 -NCIT:C3061 Jugulotympanic Paraganglioma 8 70148 -NCIT:C4623 Metastatic Jugulotympanic Paraganglioma 9 70149 -NCIT:C6085 Middle Ear Paraganglioma 9 70150 -NCIT:C8428 Tympanic Paraganglioma 10 70151 -NCIT:C4218 Aorticopulmonary Paraganglioma 8 70152 -NCIT:C45743 Mediastinal Paraganglioma 8 70153 -NCIT:C6409 Laryngeal Paraganglioma 8 70154 -NCIT:C4219 Metastatic Extra-Adrenal Paraganglioma 7 70155 -NCIT:C3574 Metastatic Carotid Body Paraganglioma 8 70156 -NCIT:C4623 Metastatic Jugulotympanic Paraganglioma 8 70157 -NCIT:C5392 Metastatic Cardiac Paraganglioma 8 70158 -NCIT:C6413 Metastatic Intrathoracic Paravertebral Paraganglioma 8 70159 -NCIT:C6416 Metastatic Bladder Paraganglioma 8 70160 -NCIT:C48576 Extra-Adrenal Sympathetic Paraganglioma 7 70161 -NCIT:C5328 Extra-Adrenal Retroperitoneal Paraganglioma 8 70162 -NCIT:C48317 Superior and Inferior Paraaortic Paraganglioma 9 70163 -NCIT:C6411 Intrathoracic Paravertebral Paraganglioma 8 70164 -NCIT:C6413 Metastatic Intrathoracic Paravertebral Paraganglioma 9 70165 -NCIT:C6414 Bladder Paraganglioma 8 70166 -NCIT:C6416 Metastatic Bladder Paraganglioma 9 70167 -NCIT:C5326 Intra-Abdominal Paraganglioma 7 70168 -NCIT:C95989 Ampulla of Vater Gangliocytic Paraganglioma 8 70169 -NCIT:C5327 Head and Neck Paraganglioma 7 70170 -NCIT:C2932 Carotid Body Paraganglioma 8 70171 -NCIT:C3574 Metastatic Carotid Body Paraganglioma 9 70172 -NCIT:C79950 Non-Metastatic Carotid Body Paraganglioma 9 70173 -NCIT:C3061 Jugulotympanic Paraganglioma 8 70174 -NCIT:C4623 Metastatic Jugulotympanic Paraganglioma 9 70175 -NCIT:C6085 Middle Ear Paraganglioma 9 70176 -NCIT:C8428 Tympanic Paraganglioma 10 70177 -NCIT:C46125 Thyroid Gland Paraganglioma 8 70178 -NCIT:C48316 Nasopharyngeal Paraganglioma 8 70179 -NCIT:C6408 Orbit Paraganglioma 8 70180 -NCIT:C6409 Laryngeal Paraganglioma 8 70181 -NCIT:C8427 Vagal Paraganglioma 8 70182 -NCIT:C5466 Central Nervous System Paraganglioma 7 70183 -NCIT:C155769 Sellar Paraganglioma 8 70184 -NCIT:C48318 Cerebellar Paraganglioma 8 70185 -NCIT:C6410 Cardiac Paraganglioma 7 70186 -NCIT:C5390 Atrial Paraganglioma 8 70187 -NCIT:C5392 Metastatic Cardiac Paraganglioma 8 70188 -NCIT:C7046 Urinary System Paraganglioma 7 70189 -NCIT:C159226 Kidney Paraganglioma 8 70190 -NCIT:C6414 Bladder Paraganglioma 8 70191 -NCIT:C6416 Metastatic Bladder Paraganglioma 9 70192 -NCIT:C4216 Sympathetic Paraganglioma 6 70193 -NCIT:C141128 Adrenal Gland Pheochromocytoma and Sympathetic Paraganglioma by AJCC v8 Stage 7 70194 -NCIT:C141129 Stage I Adrenal Gland Pheochromocytoma and Sympathetic Paraganglioma AJCC v8 8 70195 -NCIT:C141130 Stage II Adrenal Gland Pheochromocytoma and Sympathetic Paraganglioma AJCC v8 8 70196 -NCIT:C141131 Stage III Adrenal Gland Pheochromocytoma and Sympathetic Paraganglioma AJCC v8 8 70197 -NCIT:C141132 Stage IV Adrenal Gland Pheochromocytoma and Sympathetic Paraganglioma AJCC v8 8 70198 -NCIT:C190071 Childhood Sympathetic Paraganglioma 7 70199 -NCIT:C118822 Childhood Adrenal Gland Pheochromocytoma 8 70200 -NCIT:C3326 Adrenal Gland Pheochromocytoma 7 70201 -NCIT:C118822 Childhood Adrenal Gland Pheochromocytoma 8 70202 -NCIT:C157128 Unresectable Adrenal Gland Pheochromocytoma 8 70203 -NCIT:C157248 Hereditary Adrenal Gland Pheochromocytoma 8 70204 -NCIT:C158402 Refractory Adrenal Gland Pheochromocytoma 8 70205 -NCIT:C4220 Metastatic Adrenal Gland Pheochromocytoma 8 70206 -NCIT:C157129 Locally Advanced Adrenal Gland Pheochromocytoma 9 70207 -NCIT:C160853 Advanced Adrenal Gland Pheochromocytoma 9 70208 -NCIT:C92184 Metastatic Adrenal Gland Composite Pheochromocytoma 9 70209 -NCIT:C48305 Non-Metastatic Adrenal Gland Pheochromocytoma 8 70210 -NCIT:C92181 Non-Metastatic Adrenal Gland Composite Pheochromocytoma 9 70211 -NCIT:C48306 Adrenal Gland Composite Pheochromocytoma 8 70212 -NCIT:C92181 Non-Metastatic Adrenal Gland Composite Pheochromocytoma 9 70213 -NCIT:C92184 Metastatic Adrenal Gland Composite Pheochromocytoma 9 70214 -NCIT:C8045 Regional Adrenal Gland Pheochromocytoma 8 70215 -NCIT:C8047 Recurrent Adrenal Gland Pheochromocytoma 8 70216 -NCIT:C48576 Extra-Adrenal Sympathetic Paraganglioma 7 70217 -NCIT:C5328 Extra-Adrenal Retroperitoneal Paraganglioma 8 70218 -NCIT:C48317 Superior and Inferior Paraaortic Paraganglioma 9 70219 -NCIT:C6411 Intrathoracic Paravertebral Paraganglioma 8 70220 -NCIT:C6413 Metastatic Intrathoracic Paravertebral Paraganglioma 9 70221 -NCIT:C6414 Bladder Paraganglioma 8 70222 -NCIT:C6416 Metastatic Bladder Paraganglioma 9 70223 -NCIT:C48314 Non-Metastatic Paraganglioma 6 70224 -NCIT:C48305 Non-Metastatic Adrenal Gland Pheochromocytoma 7 70225 -NCIT:C92181 Non-Metastatic Adrenal Gland Composite Pheochromocytoma 8 70226 -NCIT:C79950 Non-Metastatic Carotid Body Paraganglioma 7 70227 -NCIT:C5329 Hereditary Paraganglioma 6 70228 -NCIT:C157248 Hereditary Adrenal Gland Pheochromocytoma 7 70229 -NCIT:C8559 Metastatic Paraganglioma 6 70230 -NCIT:C133713 Locally Advanced Paraganglioma 7 70231 -NCIT:C157129 Locally Advanced Adrenal Gland Pheochromocytoma 8 70232 -NCIT:C160852 Advanced Paraganglioma 7 70233 -NCIT:C160853 Advanced Adrenal Gland Pheochromocytoma 8 70234 -NCIT:C4219 Metastatic Extra-Adrenal Paraganglioma 7 70235 -NCIT:C3574 Metastatic Carotid Body Paraganglioma 8 70236 -NCIT:C4623 Metastatic Jugulotympanic Paraganglioma 8 70237 -NCIT:C5392 Metastatic Cardiac Paraganglioma 8 70238 -NCIT:C6413 Metastatic Intrathoracic Paravertebral Paraganglioma 8 70239 -NCIT:C6416 Metastatic Bladder Paraganglioma 8 70240 -NCIT:C4220 Metastatic Adrenal Gland Pheochromocytoma 7 70241 -NCIT:C157129 Locally Advanced Adrenal Gland Pheochromocytoma 8 70242 -NCIT:C160853 Advanced Adrenal Gland Pheochromocytoma 8 70243 -NCIT:C92184 Metastatic Adrenal Gland Composite Pheochromocytoma 8 70244 -NCIT:C5431 Lipomatosis of Nerve 4 70245 -NCIT:C5502 Benign Peripheral Nerve Granular Cell Tumor 4 70246 -NCIT:C5822 Nerve Plexus Neoplasm 4 70247 -NCIT:C5823 Brachial Plexus Neoplasm 5 70248 -NCIT:C5824 Lumbar Plexus Neoplasm 5 70249 -NCIT:C6911 Intraneural Perineurioma 4 70250 -NCIT:C7018 Nerve Sheath Myxoma 4 70251 -NCIT:C121680 Dermal Nerve Sheath Myxoma 5 70252 -NCIT:C156278 Cellular Nerve Sheath Myxoma 5 70253 -NCIT:C35562 Neuroepithelial, Perineurial, and Schwann Cell Neoplasm 3 70254 -NCIT:C3787 Neuroepithelial Neoplasm 4 70255 -NCIT:C3059 Glioma 5 70256 -NCIT:C129325 Diffuse Glioma 6 70257 -NCIT:C167335 Astrocytoma, IDH-Mutant, Grade 4 7 70258 -NCIT:C182018 Recurrent Astrocytoma, IDH-Mutant, Grade 4 8 70259 -NCIT:C182151 Diffuse Midline Glioma 7 70260 -NCIT:C182436 Diffuse Non-Pontine Midline Glioma 8 70261 -NCIT:C185368 Diffuse Midline Glioma, H3 K27-Altered 8 70262 -NCIT:C129309 Diffuse Midline Glioma, H3 K27M-Mutant 9 70263 -NCIT:C179222 Recurrent Diffuse Midline Glioma, H3 K27M-Mutant 10 70264 -NCIT:C185369 Diffuse Midline Glioma, EGFR-Mutant 9 70265 -NCIT:C185370 Diffuse Midline Glioma with EZHIP Overexpression 9 70266 -NCIT:C188922 Childhood Diffuse Midline Glioma, H3 K27-Altered 9 70267 -NCIT:C188923 Adult Diffuse Midline Glioma, H3 K27-Altered 9 70268 -NCIT:C94764 Diffuse Intrinsic Pontine Glioma 8 70269 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 9 70270 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 9 70271 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 9 70272 -NCIT:C188925 Adult Diffuse Intrinsic Pontine Glioma 9 70273 -NCIT:C185218 Diffuse Low Grade Glioma, MAPK Pathway-Altered 7 70274 -NCIT:C185219 Diffuse Low Grade Glioma, FGFR1 Tyrosine Kinase Domain-Duplicated 8 70275 -NCIT:C185220 Diffuse Low Grade Glioma, FGFR1-Mutant 8 70276 -NCIT:C185221 Diffuse Low Grade Glioma, BRAF p.V600E-Mutant 8 70277 -NCIT:C185371 Diffuse Hemispheric Glioma, H3 G34-Mutant 7 70278 -NCIT:C188926 Childhood Diffuse Hemispheric Glioma, H3 G34-Mutant 8 70279 -NCIT:C188927 Adult Diffuse Hemispheric Glioma, H3 G34-Mutant 8 70280 -NCIT:C185467 Diffuse Pediatric-Type High Grade Glioma, H3-Wildtype and IDH-Wildtype 7 70281 -NCIT:C185468 Diffuse Pediatric-Type High Grade Glioma RTK2 8 70282 -NCIT:C185469 Diffuse Pediatric-Type High Grade Glioma RTK1 8 70283 -NCIT:C185470 Diffuse Pediatric-Type High Grade Glioma MYCN 8 70284 -NCIT:C3058 Glioblastoma 7 70285 -NCIT:C111691 Glioblastoma by Gene Expression Profile 8 70286 -NCIT:C111692 Proneural Glioblastoma 9 70287 -NCIT:C111693 Neural Glioblastoma 9 70288 -NCIT:C111694 Classical Glioblastoma 9 70289 -NCIT:C111695 Mesenchymal Glioblastoma 9 70290 -NCIT:C126306 Recurrent Glioblastoma 8 70291 -NCIT:C115364 Recurrent Childhood Glioblastoma 9 70292 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 10 70293 -NCIT:C115365 Recurrent Childhood Gliosarcoma 10 70294 -NCIT:C182019 Recurrent Glioblastoma, IDH-Wildtype 9 70295 -NCIT:C131209 Recurrent Gliosarcoma 10 70296 -NCIT:C115365 Recurrent Childhood Gliosarcoma 11 70297 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 10 70298 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 11 70299 -NCIT:C163961 Recurrent Small Cell Glioblastoma 10 70300 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 10 70301 -NCIT:C191198 Recurrent Brain Glioblastoma 9 70302 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 10 70303 -NCIT:C129295 Glioblastoma, Not Otherwise Specified 8 70304 -NCIT:C146734 Refractory Glioblastoma 8 70305 -NCIT:C163960 Refractory Small Cell Glioblastoma 9 70306 -NCIT:C163962 Refractory Gliosarcoma 9 70307 -NCIT:C176998 Refractory Giant Cell Glioblastoma 9 70308 -NCIT:C166156 Resectable Glioblastoma 8 70309 -NCIT:C170979 Metastatic Glioblastoma 8 70310 -NCIT:C170978 Advanced Glioblastoma 9 70311 -NCIT:C170980 Locally Advanced Glioblastoma 9 70312 -NCIT:C176890 Unresectable Glioblastoma 8 70313 -NCIT:C39750 Glioblastoma, IDH-Wildtype 8 70314 -NCIT:C125890 Small Cell Glioblastoma 9 70315 -NCIT:C163960 Refractory Small Cell Glioblastoma 10 70316 -NCIT:C163961 Recurrent Small Cell Glioblastoma 10 70317 -NCIT:C129293 Epithelioid Glioblastoma 9 70318 -NCIT:C129296 Glioblastoma with Primitive Neuronal Component 9 70319 -NCIT:C132902 MGMT-Unmethylated Glioblastoma 9 70320 -NCIT:C154335 MGMT-Methylated Glioblastoma 9 70321 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 10 70322 -NCIT:C182019 Recurrent Glioblastoma, IDH-Wildtype 9 70323 -NCIT:C131209 Recurrent Gliosarcoma 10 70324 -NCIT:C115365 Recurrent Childhood Gliosarcoma 11 70325 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 10 70326 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 11 70327 -NCIT:C163961 Recurrent Small Cell Glioblastoma 10 70328 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 10 70329 -NCIT:C185178 Granular Cell Glioblastoma 9 70330 -NCIT:C185180 Lipidized Glioblastoma 9 70331 -NCIT:C3796 Gliosarcoma 9 70332 -NCIT:C114968 Childhood Gliosarcoma 10 70333 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 11 70334 -NCIT:C115365 Recurrent Childhood Gliosarcoma 11 70335 -NCIT:C131209 Recurrent Gliosarcoma 10 70336 -NCIT:C115365 Recurrent Childhood Gliosarcoma 11 70337 -NCIT:C163962 Refractory Gliosarcoma 10 70338 -NCIT:C171013 Supratentorial Gliosarcoma 10 70339 -NCIT:C68701 Adult Gliosarcoma 10 70340 -NCIT:C9370 Adult Brain Stem Gliosarcoma 11 70341 -NCIT:C4325 Giant Cell Glioblastoma 9 70342 -NCIT:C114966 Childhood Giant Cell Glioblastoma 10 70343 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 11 70344 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 10 70345 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 11 70346 -NCIT:C176998 Refractory Giant Cell Glioblastoma 10 70347 -NCIT:C68702 Adult Giant Cell Glioblastoma 10 70348 -NCIT:C39751 Secondary Glioblastoma 8 70349 -NCIT:C4642 Brain Glioblastoma 8 70350 -NCIT:C147901 Childhood Brain Glioblastoma 9 70351 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 70352 -NCIT:C191198 Recurrent Brain Glioblastoma 9 70353 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 10 70354 -NCIT:C5148 Infratentorial Glioblastoma 9 70355 -NCIT:C5097 Brain Stem Glioblastoma 10 70356 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 11 70357 -NCIT:C9370 Adult Brain Stem Gliosarcoma 11 70358 -NCIT:C5150 Cerebellar Glioblastoma 10 70359 -NCIT:C5149 Supratentorial Glioblastoma 9 70360 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 10 70361 -NCIT:C5129 Diencephalic Glioblastoma 10 70362 -NCIT:C5151 Cerebral Glioblastoma 10 70363 -NCIT:C171013 Supratentorial Gliosarcoma 11 70364 -NCIT:C9375 Adult Brain Glioblastoma 9 70365 -NCIT:C9370 Adult Brain Stem Gliosarcoma 10 70366 -NCIT:C5136 Childhood Glioblastoma 8 70367 -NCIT:C114966 Childhood Giant Cell Glioblastoma 9 70368 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 10 70369 -NCIT:C114968 Childhood Gliosarcoma 9 70370 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 70371 -NCIT:C115365 Recurrent Childhood Gliosarcoma 10 70372 -NCIT:C115364 Recurrent Childhood Glioblastoma 9 70373 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 10 70374 -NCIT:C115365 Recurrent Childhood Gliosarcoma 10 70375 -NCIT:C147901 Childhood Brain Glioblastoma 9 70376 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 70377 -NCIT:C9094 Adult Glioblastoma 8 70378 -NCIT:C27183 Adult Spinal Cord Glioblastoma 9 70379 -NCIT:C68701 Adult Gliosarcoma 9 70380 -NCIT:C9370 Adult Brain Stem Gliosarcoma 10 70381 -NCIT:C68702 Adult Giant Cell Glioblastoma 9 70382 -NCIT:C9375 Adult Brain Glioblastoma 9 70383 -NCIT:C9370 Adult Brain Stem Gliosarcoma 10 70384 -NCIT:C92549 Multifocal Glioblastomas 8 70385 -NCIT:C3288 Oligodendroglioma 7 70386 -NCIT:C129318 Oligodendroglioma, IDH-Mutant and 1p/19q-Codeleted 8 70387 -NCIT:C188126 Recurrent Oligodendroglioma, IDH-Mutant and 1p/19q-Codeleted 9 70388 -NCIT:C129319 Oligodendroglioma, Not Otherwise Specified 8 70389 -NCIT:C160737 Recurrent Oligodendroglioma 8 70390 -NCIT:C115371 Recurrent Childhood Oligodendroglioma 9 70391 -NCIT:C188126 Recurrent Oligodendroglioma, IDH-Mutant and 1p/19q-Codeleted 9 70392 -NCIT:C188470 Resectable Oligodendroglioma 8 70393 -NCIT:C4014 Adult Oligodendroglioma 8 70394 -NCIT:C9376 Adult Brain Oligodendroglioma 9 70395 -NCIT:C4045 Childhood Oligodendroglioma 8 70396 -NCIT:C114773 Childhood Brain Oligodendroglioma 9 70397 -NCIT:C115371 Recurrent Childhood Oligodendroglioma 9 70398 -NCIT:C4535 Spinal Cord Oligodendroglioma 8 70399 -NCIT:C9377 Brain Oligodendroglioma 8 70400 -NCIT:C114773 Childhood Brain Oligodendroglioma 9 70401 -NCIT:C9376 Adult Brain Oligodendroglioma 9 70402 -NCIT:C3903 Mixed Glioma 7 70403 -NCIT:C115195 Childhood Mixed Glioma 8 70404 -NCIT:C114760 Childhood Brain Stem Mixed Glioma 9 70405 -NCIT:C114973 Childhood Anaplastic Oligoastrocytoma 9 70406 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 10 70407 -NCIT:C114974 Childhood Oligoastrocytoma 9 70408 -NCIT:C115370 Recurrent Childhood Oligoastrocytoma 10 70409 -NCIT:C115250 Adult Mixed Glioma 8 70410 -NCIT:C9371 Adult Brain Stem Mixed Glioma 9 70411 -NCIT:C4050 Oligoastrocytoma 8 70412 -NCIT:C114974 Childhood Oligoastrocytoma 9 70413 -NCIT:C115370 Recurrent Childhood Oligoastrocytoma 10 70414 -NCIT:C129323 Oligoastrocytoma, Not Otherwise Specified 9 70415 -NCIT:C167082 Recurrent Oligoastrocytoma 9 70416 -NCIT:C115370 Recurrent Childhood Oligoastrocytoma 10 70417 -NCIT:C6959 Anaplastic Oligoastrocytoma 8 70418 -NCIT:C114973 Childhood Anaplastic Oligoastrocytoma 9 70419 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 10 70420 -NCIT:C129324 Anaplastic Oligoastrocytoma, Not Otherwise Specified 9 70421 -NCIT:C142861 Recurrent Anaplastic Oligoastrocytoma 9 70422 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 10 70423 -NCIT:C8271 Mixed Astrocytoma-Ependymoma 8 70424 -NCIT:C8272 Mixed Astrocytoma-Ependymoma-Oligodendroglioma 8 70425 -NCIT:C4326 Anaplastic Oligodendroglioma 7 70426 -NCIT:C129321 Anaplastic Oligodendroglioma, IDH-Mutant and 1p/19q-Codeleted 8 70427 -NCIT:C129322 Anaplastic Oligodendroglioma, Not Otherwise Specified 8 70428 -NCIT:C142862 Recurrent Anaplastic Oligodendroglioma 8 70429 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 9 70430 -NCIT:C156120 Frontal Lobe Anaplastic Oligodendroglioma 8 70431 -NCIT:C169074 Refractory Anaplastic Oligodendroglioma 8 70432 -NCIT:C5447 Childhood Anaplastic Oligodendroglioma 8 70433 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 9 70434 -NCIT:C8270 Adult Anaplastic Oligodendroglioma 8 70435 -NCIT:C7173 Diffuse Astrocytoma 7 70436 -NCIT:C114967 Childhood Diffuse Astrocytoma 8 70437 -NCIT:C114963 Childhood Fibrillary Astrocytoma 9 70438 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 10 70439 -NCIT:C114964 Childhood Gemistocytic Astrocytoma 9 70440 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 10 70441 -NCIT:C114972 Childhood Protoplasmic Astrocytoma 9 70442 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 10 70443 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 9 70444 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 10 70445 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 10 70446 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 10 70447 -NCIT:C188920 Childhood Diffuse Astrocytoma, MYBL1-Altered 9 70448 -NCIT:C188921 Childhood Diffuse Astrocytoma, MYB-Altered 9 70449 -NCIT:C8387 Childhood Cerebral Diffuse Astrocytoma 9 70450 -NCIT:C129271 Astrocytoma, IDH-Mutant, Grade 2 8 70451 -NCIT:C129272 Gemistocytic Astrocytoma, IDH-Mutant 9 70452 -NCIT:C129274 Diffuse Astrocytoma, IDH-Wildtype 8 70453 -NCIT:C185195 Diffuse Astrocytoma, MYB-Altered 9 70454 -NCIT:C188921 Childhood Diffuse Astrocytoma, MYB-Altered 10 70455 -NCIT:C185196 Diffuse Astrocytoma, MYBL1-Altered 9 70456 -NCIT:C188920 Childhood Diffuse Astrocytoma, MYBL1-Altered 10 70457 -NCIT:C129277 Diffuse Astrocytoma, Not Otherwise Specified 8 70458 -NCIT:C167081 Recurrent Diffuse Astrocytoma 8 70459 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 9 70460 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 10 70461 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 10 70462 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 10 70463 -NCIT:C4320 Protoplasmic Astrocytoma 8 70464 -NCIT:C114972 Childhood Protoplasmic Astrocytoma 9 70465 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 10 70466 -NCIT:C4321 Gemistocytic Astrocytoma 8 70467 -NCIT:C114964 Childhood Gemistocytic Astrocytoma 9 70468 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 10 70469 -NCIT:C129272 Gemistocytic Astrocytoma, IDH-Mutant 9 70470 -NCIT:C4322 Fibrillary Astrocytoma 8 70471 -NCIT:C114963 Childhood Fibrillary Astrocytoma 9 70472 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 10 70473 -NCIT:C7174 Adult Diffuse Astrocytoma 8 70474 -NCIT:C9477 Anaplastic Astrocytoma 7 70475 -NCIT:C129290 Astrocytoma, IDH-Mutant, Grade 3 8 70476 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 9 70477 -NCIT:C129291 Anaplastic Astrocytoma, IDH-Wildtype 8 70478 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 9 70479 -NCIT:C129292 Anaplastic Astrocytoma, Not Otherwise Specified 8 70480 -NCIT:C136517 Recurrent Anaplastic Astrocytoma 8 70481 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 9 70482 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 9 70483 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 9 70484 -NCIT:C169075 Refractory Anaplastic Astrocytoma 8 70485 -NCIT:C185879 High Grade Astrocytoma with Piloid Features 8 70486 -NCIT:C5123 Hemispheric Anaplastic Astrocytoma 8 70487 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 9 70488 -NCIT:C156035 Frontal Lobe Anaplastic Astrocytoma 9 70489 -NCIT:C156036 Temporal Lobe Anaplastic Astrocytoma 9 70490 -NCIT:C171036 Parietal Lobe Anaplastic Astrocytoma 9 70491 -NCIT:C5124 Anaplastic Diencephalic Astrocytoma 8 70492 -NCIT:C5416 Secondary Supratentorial Anaplastic Astrocytoma 8 70493 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 8 70494 -NCIT:C6215 Childhood Anaplastic Astrocytoma 8 70495 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 9 70496 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 9 70497 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 10 70498 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 10 70499 -NCIT:C8257 Adult Anaplastic Astrocytoma 8 70500 -NCIT:C132067 Low Grade Glioma 6 70501 -NCIT:C116342 Low Grade Astrocytoma 7 70502 -NCIT:C176464 Recurrent Low Grade Astrocytoma 8 70503 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 9 70504 -NCIT:C167081 Recurrent Diffuse Astrocytoma 9 70505 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 10 70506 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 11 70507 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 11 70508 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 11 70509 -NCIT:C179220 Recurrent Pilocytic Astrocytoma 9 70510 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 10 70511 -NCIT:C177795 Refractory Low Grade Astrocytoma 8 70512 -NCIT:C178559 Metastatic Low Grade Astrocytoma 8 70513 -NCIT:C3696 Subependymal Giant Cell Astrocytoma 8 70514 -NCIT:C114785 Childhood Subependymal Giant Cell Astrocytoma 9 70515 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 10 70516 -NCIT:C71017 Adult Subependymal Giant Cell Astrocytoma 9 70517 -NCIT:C4047 Pilocytic Astrocytoma 8 70518 -NCIT:C156037 Third Ventricle Pilocytic Astrocytoma 9 70519 -NCIT:C179220 Recurrent Pilocytic Astrocytoma 9 70520 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 10 70521 -NCIT:C4048 Childhood Pilocytic Astrocytoma 9 70522 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 10 70523 -NCIT:C27081 Juvenile Pilocytic Astrocytoma 10 70524 -NCIT:C6809 Cerebellar Pilocytic Astrocytoma 9 70525 -NCIT:C71016 Adult Pilocytic Astrocytoma 9 70526 -NCIT:C7173 Diffuse Astrocytoma 8 70527 -NCIT:C114967 Childhood Diffuse Astrocytoma 9 70528 -NCIT:C114963 Childhood Fibrillary Astrocytoma 10 70529 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 11 70530 -NCIT:C114964 Childhood Gemistocytic Astrocytoma 10 70531 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 11 70532 -NCIT:C114972 Childhood Protoplasmic Astrocytoma 10 70533 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 11 70534 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 10 70535 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 11 70536 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 11 70537 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 11 70538 -NCIT:C188920 Childhood Diffuse Astrocytoma, MYBL1-Altered 10 70539 -NCIT:C188921 Childhood Diffuse Astrocytoma, MYB-Altered 10 70540 -NCIT:C8387 Childhood Cerebral Diffuse Astrocytoma 10 70541 -NCIT:C129271 Astrocytoma, IDH-Mutant, Grade 2 9 70542 -NCIT:C129272 Gemistocytic Astrocytoma, IDH-Mutant 10 70543 -NCIT:C129274 Diffuse Astrocytoma, IDH-Wildtype 9 70544 -NCIT:C185195 Diffuse Astrocytoma, MYB-Altered 10 70545 -NCIT:C188921 Childhood Diffuse Astrocytoma, MYB-Altered 11 70546 -NCIT:C185196 Diffuse Astrocytoma, MYBL1-Altered 10 70547 -NCIT:C188920 Childhood Diffuse Astrocytoma, MYBL1-Altered 11 70548 -NCIT:C129277 Diffuse Astrocytoma, Not Otherwise Specified 9 70549 -NCIT:C167081 Recurrent Diffuse Astrocytoma 9 70550 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 10 70551 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 11 70552 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 11 70553 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 11 70554 -NCIT:C4320 Protoplasmic Astrocytoma 9 70555 -NCIT:C114972 Childhood Protoplasmic Astrocytoma 10 70556 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 11 70557 -NCIT:C4321 Gemistocytic Astrocytoma 9 70558 -NCIT:C114964 Childhood Gemistocytic Astrocytoma 10 70559 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 11 70560 -NCIT:C129272 Gemistocytic Astrocytoma, IDH-Mutant 10 70561 -NCIT:C4322 Fibrillary Astrocytoma 9 70562 -NCIT:C114963 Childhood Fibrillary Astrocytoma 10 70563 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 11 70564 -NCIT:C7174 Adult Diffuse Astrocytoma 9 70565 -NCIT:C132505 WHO Grade 2 Glioma 7 70566 -NCIT:C148037 Recurrent WHO Grade 2 Glioma 8 70567 -NCIT:C157601 Recurrent Ependymoma 9 70568 -NCIT:C8579 Recurrent Childhood Ependymoma 10 70569 -NCIT:C160737 Recurrent Oligodendroglioma 9 70570 -NCIT:C115371 Recurrent Childhood Oligodendroglioma 10 70571 -NCIT:C188126 Recurrent Oligodendroglioma, IDH-Mutant and 1p/19q-Codeleted 10 70572 -NCIT:C167081 Recurrent Diffuse Astrocytoma 9 70573 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 10 70574 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 11 70575 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 11 70576 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 11 70577 -NCIT:C167082 Recurrent Oligoastrocytoma 9 70578 -NCIT:C115370 Recurrent Childhood Oligoastrocytoma 10 70579 -NCIT:C158104 Refractory WHO Grade 2 Glioma 8 70580 -NCIT:C147108 Refractory Ependymoma 9 70581 -NCIT:C3017 Ependymoma 8 70582 -NCIT:C147108 Refractory Ependymoma 9 70583 -NCIT:C156462 Brain Ependymoma 9 70584 -NCIT:C186343 Supratentorial Ependymoma 10 70585 -NCIT:C186348 Supratentorial Ependymoma, Not Elsewhere Classified 11 70586 -NCIT:C186349 Supratentorial Ependymoma, Not Otherwise Specified 11 70587 -NCIT:C9043 Childhood Supratentorial Ependymoma, Not Otherwise Specified 12 70588 -NCIT:C6268 Childhood Cerebral Ependymoma, Not Otherwise Specified 13 70589 -NCIT:C186350 Supratentorial Ependymoma ZFTA Fusion-Positive 10 70590 -NCIT:C129351 Supratentorial Ependymoma, ZFTA-RELA Fusion-Positive 11 70591 -NCIT:C188935 Childhood Supratentorial Ependymoma ZFTA Fusion-Positive 11 70592 -NCIT:C188938 Adult Supratentorial Ependymoma ZFTA Fusion-Positive 11 70593 -NCIT:C186351 Supratentorial Ependymoma YAP1 Fusion-Positive 10 70594 -NCIT:C186355 Supratentorial Ependymoma, YAP1-MAMLD1 Fusion-Positive 11 70595 -NCIT:C186443 Posterior Fossa Ependymoma 10 70596 -NCIT:C186448 Posterior Fossa Ependymoma, Not Elsewhere Classified 11 70597 -NCIT:C186449 Posterior Fossa Ependymoma, Not Otherwise Specified 11 70598 -NCIT:C188943 Childhood Posterior Fossa Ependymoma 11 70599 -NCIT:C188945 Adult Posterior Fossa Ependymoma 11 70600 -NCIT:C186450 Posterior Fossa Ependymoma, Group A (PFA) 10 70601 -NCIT:C186451 Posterior Fossa Ependymoma, Group B (PFB) 10 70602 -NCIT:C5098 Brain Stem Ependymoma 10 70603 -NCIT:C9041 Childhood Infratentorial Ependymoma 10 70604 -NCIT:C9372 Adult Brain Ependymoma 10 70605 -NCIT:C188938 Adult Supratentorial Ependymoma ZFTA Fusion-Positive 11 70606 -NCIT:C188945 Adult Posterior Fossa Ependymoma 11 70607 -NCIT:C157601 Recurrent Ependymoma 9 70608 -NCIT:C8579 Recurrent Childhood Ependymoma 10 70609 -NCIT:C186494 Spinal Cord Ependymoma, MYCN Amplified 9 70610 -NCIT:C3875 Spinal Cord Ependymoma 9 70611 -NCIT:C186495 Childhood Spinal Cord Ependymoma 10 70612 -NCIT:C27399 Adult Spinal Cord Ependymoma 10 70613 -NCIT:C4319 Papillary Ependymoma 9 70614 -NCIT:C4713 Cellular Ependymoma 9 70615 -NCIT:C4714 Clear Cell Ependymoma 9 70616 -NCIT:C6903 Tanycytic Ependymoma 9 70617 -NCIT:C8578 Childhood Ependymoma 9 70618 -NCIT:C186351 Supratentorial Ependymoma YAP1 Fusion-Positive 10 70619 -NCIT:C186355 Supratentorial Ependymoma, YAP1-MAMLD1 Fusion-Positive 11 70620 -NCIT:C186495 Childhood Spinal Cord Ependymoma 10 70621 -NCIT:C188935 Childhood Supratentorial Ependymoma ZFTA Fusion-Positive 10 70622 -NCIT:C188943 Childhood Posterior Fossa Ependymoma 10 70623 -NCIT:C8579 Recurrent Childhood Ependymoma 10 70624 -NCIT:C9041 Childhood Infratentorial Ependymoma 10 70625 -NCIT:C9043 Childhood Supratentorial Ependymoma, Not Otherwise Specified 10 70626 -NCIT:C6268 Childhood Cerebral Ependymoma, Not Otherwise Specified 11 70627 -NCIT:C9092 Adult Ependymoma 9 70628 -NCIT:C27399 Adult Spinal Cord Ependymoma 10 70629 -NCIT:C9372 Adult Brain Ependymoma 10 70630 -NCIT:C188938 Adult Supratentorial Ependymoma ZFTA Fusion-Positive 11 70631 -NCIT:C188945 Adult Posterior Fossa Ependymoma 11 70632 -NCIT:C3288 Oligodendroglioma 8 70633 -NCIT:C129318 Oligodendroglioma, IDH-Mutant and 1p/19q-Codeleted 9 70634 -NCIT:C188126 Recurrent Oligodendroglioma, IDH-Mutant and 1p/19q-Codeleted 10 70635 -NCIT:C129319 Oligodendroglioma, Not Otherwise Specified 9 70636 -NCIT:C160737 Recurrent Oligodendroglioma 9 70637 -NCIT:C115371 Recurrent Childhood Oligodendroglioma 10 70638 -NCIT:C188126 Recurrent Oligodendroglioma, IDH-Mutant and 1p/19q-Codeleted 10 70639 -NCIT:C188470 Resectable Oligodendroglioma 9 70640 -NCIT:C4014 Adult Oligodendroglioma 9 70641 -NCIT:C9376 Adult Brain Oligodendroglioma 10 70642 -NCIT:C4045 Childhood Oligodendroglioma 9 70643 -NCIT:C114773 Childhood Brain Oligodendroglioma 10 70644 -NCIT:C115371 Recurrent Childhood Oligodendroglioma 10 70645 -NCIT:C4535 Spinal Cord Oligodendroglioma 9 70646 -NCIT:C9377 Brain Oligodendroglioma 9 70647 -NCIT:C114773 Childhood Brain Oligodendroglioma 10 70648 -NCIT:C9376 Adult Brain Oligodendroglioma 10 70649 -NCIT:C4050 Oligoastrocytoma 8 70650 -NCIT:C114974 Childhood Oligoastrocytoma 9 70651 -NCIT:C115370 Recurrent Childhood Oligoastrocytoma 10 70652 -NCIT:C129323 Oligoastrocytoma, Not Otherwise Specified 9 70653 -NCIT:C167082 Recurrent Oligoastrocytoma 9 70654 -NCIT:C115370 Recurrent Childhood Oligoastrocytoma 10 70655 -NCIT:C7173 Diffuse Astrocytoma 8 70656 -NCIT:C114967 Childhood Diffuse Astrocytoma 9 70657 -NCIT:C114963 Childhood Fibrillary Astrocytoma 10 70658 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 11 70659 -NCIT:C114964 Childhood Gemistocytic Astrocytoma 10 70660 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 11 70661 -NCIT:C114972 Childhood Protoplasmic Astrocytoma 10 70662 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 11 70663 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 10 70664 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 11 70665 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 11 70666 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 11 70667 -NCIT:C188920 Childhood Diffuse Astrocytoma, MYBL1-Altered 10 70668 -NCIT:C188921 Childhood Diffuse Astrocytoma, MYB-Altered 10 70669 -NCIT:C8387 Childhood Cerebral Diffuse Astrocytoma 10 70670 -NCIT:C129271 Astrocytoma, IDH-Mutant, Grade 2 9 70671 -NCIT:C129272 Gemistocytic Astrocytoma, IDH-Mutant 10 70672 -NCIT:C129274 Diffuse Astrocytoma, IDH-Wildtype 9 70673 -NCIT:C185195 Diffuse Astrocytoma, MYB-Altered 10 70674 -NCIT:C188921 Childhood Diffuse Astrocytoma, MYB-Altered 11 70675 -NCIT:C185196 Diffuse Astrocytoma, MYBL1-Altered 10 70676 -NCIT:C188920 Childhood Diffuse Astrocytoma, MYBL1-Altered 11 70677 -NCIT:C129277 Diffuse Astrocytoma, Not Otherwise Specified 9 70678 -NCIT:C167081 Recurrent Diffuse Astrocytoma 9 70679 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 10 70680 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 11 70681 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 11 70682 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 11 70683 -NCIT:C4320 Protoplasmic Astrocytoma 9 70684 -NCIT:C114972 Childhood Protoplasmic Astrocytoma 10 70685 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 11 70686 -NCIT:C4321 Gemistocytic Astrocytoma 9 70687 -NCIT:C114964 Childhood Gemistocytic Astrocytoma 10 70688 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 11 70689 -NCIT:C129272 Gemistocytic Astrocytoma, IDH-Mutant 10 70690 -NCIT:C4322 Fibrillary Astrocytoma 9 70691 -NCIT:C114963 Childhood Fibrillary Astrocytoma 10 70692 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 11 70693 -NCIT:C7174 Adult Diffuse Astrocytoma 9 70694 -NCIT:C155829 Unresectable Low Grade Glioma 7 70695 -NCIT:C177793 Refractory Low Grade Glioma 7 70696 -NCIT:C158104 Refractory WHO Grade 2 Glioma 8 70697 -NCIT:C147108 Refractory Ependymoma 9 70698 -NCIT:C177795 Refractory Low Grade Astrocytoma 8 70699 -NCIT:C177798 Refractory WHO Grade 1 Glioma 8 70700 -NCIT:C177794 Recurrent Low Grade Glioma 7 70701 -NCIT:C148037 Recurrent WHO Grade 2 Glioma 8 70702 -NCIT:C157601 Recurrent Ependymoma 9 70703 -NCIT:C8579 Recurrent Childhood Ependymoma 10 70704 -NCIT:C160737 Recurrent Oligodendroglioma 9 70705 -NCIT:C115371 Recurrent Childhood Oligodendroglioma 10 70706 -NCIT:C188126 Recurrent Oligodendroglioma, IDH-Mutant and 1p/19q-Codeleted 10 70707 -NCIT:C167081 Recurrent Diffuse Astrocytoma 9 70708 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 10 70709 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 11 70710 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 11 70711 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 11 70712 -NCIT:C167082 Recurrent Oligoastrocytoma 9 70713 -NCIT:C115370 Recurrent Childhood Oligoastrocytoma 10 70714 -NCIT:C176464 Recurrent Low Grade Astrocytoma 8 70715 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 9 70716 -NCIT:C167081 Recurrent Diffuse Astrocytoma 9 70717 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 10 70718 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 11 70719 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 11 70720 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 11 70721 -NCIT:C179220 Recurrent Pilocytic Astrocytoma 9 70722 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 10 70723 -NCIT:C177796 Recurrent WHO Grade 1 Glioma 8 70724 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 9 70725 -NCIT:C179220 Recurrent Pilocytic Astrocytoma 9 70726 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 10 70727 -NCIT:C177797 WHO Grade 1 Glioma 7 70728 -NCIT:C177796 Recurrent WHO Grade 1 Glioma 8 70729 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 9 70730 -NCIT:C179220 Recurrent Pilocytic Astrocytoma 9 70731 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 10 70732 -NCIT:C177798 Refractory WHO Grade 1 Glioma 8 70733 -NCIT:C3696 Subependymal Giant Cell Astrocytoma 8 70734 -NCIT:C114785 Childhood Subependymal Giant Cell Astrocytoma 9 70735 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 10 70736 -NCIT:C71017 Adult Subependymal Giant Cell Astrocytoma 9 70737 -NCIT:C3795 Subependymoma 8 70738 -NCIT:C115623 Adult Subependymoma 9 70739 -NCIT:C4047 Pilocytic Astrocytoma 8 70740 -NCIT:C156037 Third Ventricle Pilocytic Astrocytoma 9 70741 -NCIT:C179220 Recurrent Pilocytic Astrocytoma 9 70742 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 10 70743 -NCIT:C4048 Childhood Pilocytic Astrocytoma 9 70744 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 10 70745 -NCIT:C27081 Juvenile Pilocytic Astrocytoma 10 70746 -NCIT:C6809 Cerebellar Pilocytic Astrocytoma 9 70747 -NCIT:C71016 Adult Pilocytic Astrocytoma 9 70748 -NCIT:C92552 Angiocentric Glioma 8 70749 -NCIT:C178558 Metastatic Low Grade Glioma 7 70750 -NCIT:C178559 Metastatic Low Grade Astrocytoma 8 70751 -NCIT:C185218 Diffuse Low Grade Glioma, MAPK Pathway-Altered 7 70752 -NCIT:C185219 Diffuse Low Grade Glioma, FGFR1 Tyrosine Kinase Domain-Duplicated 8 70753 -NCIT:C185220 Diffuse Low Grade Glioma, FGFR1-Mutant 8 70754 -NCIT:C185221 Diffuse Low Grade Glioma, BRAF p.V600E-Mutant 8 70755 -NCIT:C132506 Recurrent Glioma 6 70756 -NCIT:C114956 Recurrent Childhood Astrocytic Tumor 7 70757 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 8 70758 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 8 70759 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 9 70760 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 9 70761 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 9 70762 -NCIT:C115364 Recurrent Childhood Glioblastoma 8 70763 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 9 70764 -NCIT:C115365 Recurrent Childhood Gliosarcoma 9 70765 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 8 70766 -NCIT:C115373 Recurrent Childhood Pilomyxoid Astrocytoma 8 70767 -NCIT:C115375 Recurrent Childhood Pleomorphic Xanthoastrocytoma 8 70768 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 8 70769 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 8 70770 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 8 70771 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 9 70772 -NCIT:C8389 Recurrent Childhood Cerebellar Astrocytoma 8 70773 -NCIT:C9191 Recurrent Childhood Cerebral Astrocytoma 8 70774 -NCIT:C131617 Recurrent Ependymal Tumor 7 70775 -NCIT:C157601 Recurrent Ependymoma 8 70776 -NCIT:C8579 Recurrent Childhood Ependymoma 9 70777 -NCIT:C160912 Recurrent Anaplastic Ependymoma 8 70778 -NCIT:C142848 Recurrent Malignant Glioma 7 70779 -NCIT:C126306 Recurrent Glioblastoma 8 70780 -NCIT:C115364 Recurrent Childhood Glioblastoma 9 70781 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 10 70782 -NCIT:C115365 Recurrent Childhood Gliosarcoma 10 70783 -NCIT:C182019 Recurrent Glioblastoma, IDH-Wildtype 9 70784 -NCIT:C131209 Recurrent Gliosarcoma 10 70785 -NCIT:C115365 Recurrent Childhood Gliosarcoma 11 70786 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 10 70787 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 11 70788 -NCIT:C163961 Recurrent Small Cell Glioblastoma 10 70789 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 10 70790 -NCIT:C191198 Recurrent Brain Glioblastoma 9 70791 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 10 70792 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 8 70793 -NCIT:C148038 Recurrent WHO Grade 3 Glioma 8 70794 -NCIT:C136517 Recurrent Anaplastic Astrocytoma 9 70795 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 10 70796 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 10 70797 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 10 70798 -NCIT:C142861 Recurrent Anaplastic Oligoastrocytoma 9 70799 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 10 70800 -NCIT:C142862 Recurrent Anaplastic Oligodendroglioma 9 70801 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 10 70802 -NCIT:C160904 Recurrent Anaplastic Pleomorphic Xanthoastrocytoma 9 70803 -NCIT:C160912 Recurrent Anaplastic Ependymoma 9 70804 -NCIT:C179222 Recurrent Diffuse Midline Glioma, H3 K27M-Mutant 8 70805 -NCIT:C182018 Recurrent Astrocytoma, IDH-Mutant, Grade 4 8 70806 -NCIT:C155983 Recurrent Visual Pathway Glioma 7 70807 -NCIT:C7529 Recurrent Childhood Visual Pathway Glioma 8 70808 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 9 70809 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 70810 -NCIT:C7531 Recurrent Childhood Optic Nerve Glioma 9 70811 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 70812 -NCIT:C177794 Recurrent Low Grade Glioma 7 70813 -NCIT:C148037 Recurrent WHO Grade 2 Glioma 8 70814 -NCIT:C157601 Recurrent Ependymoma 9 70815 -NCIT:C8579 Recurrent Childhood Ependymoma 10 70816 -NCIT:C160737 Recurrent Oligodendroglioma 9 70817 -NCIT:C115371 Recurrent Childhood Oligodendroglioma 10 70818 -NCIT:C188126 Recurrent Oligodendroglioma, IDH-Mutant and 1p/19q-Codeleted 10 70819 -NCIT:C167081 Recurrent Diffuse Astrocytoma 9 70820 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 10 70821 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 11 70822 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 11 70823 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 11 70824 -NCIT:C167082 Recurrent Oligoastrocytoma 9 70825 -NCIT:C115370 Recurrent Childhood Oligoastrocytoma 10 70826 -NCIT:C176464 Recurrent Low Grade Astrocytoma 8 70827 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 9 70828 -NCIT:C167081 Recurrent Diffuse Astrocytoma 9 70829 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 10 70830 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 11 70831 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 11 70832 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 11 70833 -NCIT:C179220 Recurrent Pilocytic Astrocytoma 9 70834 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 10 70835 -NCIT:C177796 Recurrent WHO Grade 1 Glioma 8 70836 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 9 70837 -NCIT:C179220 Recurrent Pilocytic Astrocytoma 9 70838 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 10 70839 -NCIT:C180408 Recurrent Tectal Glioma 7 70840 -NCIT:C188127 Recurrent Astrocytoma, IDH-Mutant 7 70841 -NCIT:C182018 Recurrent Astrocytoma, IDH-Mutant, Grade 4 8 70842 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 8 70843 -NCIT:C9190 Recurrent Childhood Brain Stem Glioma 7 70844 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 8 70845 -NCIT:C147107 Refractory Glioma 6 70846 -NCIT:C142855 Refractory Malignant Glioma 7 70847 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 8 70848 -NCIT:C146734 Refractory Glioblastoma 8 70849 -NCIT:C163960 Refractory Small Cell Glioblastoma 9 70850 -NCIT:C163962 Refractory Gliosarcoma 9 70851 -NCIT:C176998 Refractory Giant Cell Glioblastoma 9 70852 -NCIT:C153865 Refractory WHO Grade 3 Glioma 8 70853 -NCIT:C160905 Refractory Anaplastic Pleomorphic Xanthoastrocytoma 9 70854 -NCIT:C160913 Refractory Anaplastic Ependymoma 9 70855 -NCIT:C169074 Refractory Anaplastic Oligodendroglioma 9 70856 -NCIT:C169075 Refractory Anaplastic Astrocytoma 9 70857 -NCIT:C155984 Refractory Visual Pathway Glioma 7 70858 -NCIT:C177793 Refractory Low Grade Glioma 7 70859 -NCIT:C158104 Refractory WHO Grade 2 Glioma 8 70860 -NCIT:C147108 Refractory Ependymoma 9 70861 -NCIT:C177795 Refractory Low Grade Astrocytoma 8 70862 -NCIT:C177798 Refractory WHO Grade 1 Glioma 8 70863 -NCIT:C168573 Resectable Glioma 6 70864 -NCIT:C166156 Resectable Glioblastoma 7 70865 -NCIT:C188469 Resectable Astrocytoma 7 70866 -NCIT:C188470 Resectable Oligodendroglioma 7 70867 -NCIT:C173846 Bilateral Thalamic Glioma 6 70868 -NCIT:C176889 Unresectable Glioma 6 70869 -NCIT:C155829 Unresectable Low Grade Glioma 7 70870 -NCIT:C176890 Unresectable Glioblastoma 7 70871 -NCIT:C180407 Tectal Glioma 6 70872 -NCIT:C180408 Recurrent Tectal Glioma 7 70873 -NCIT:C4324 Astroblastoma, MN1-Altered 6 70874 -NCIT:C188929 Childhood Astroblastoma, MN1-Altered 7 70875 -NCIT:C188930 Adult Astroblastoma, MN1-Altered 7 70876 -NCIT:C84347 Anaplastic Astroblastoma, MN1-Altered 7 70877 -NCIT:C4534 Spinal Cord Glioma 6 70878 -NCIT:C186494 Spinal Cord Ependymoma, MYCN Amplified 7 70879 -NCIT:C3875 Spinal Cord Ependymoma 7 70880 -NCIT:C186495 Childhood Spinal Cord Ependymoma 8 70881 -NCIT:C27399 Adult Spinal Cord Ependymoma 8 70882 -NCIT:C4535 Spinal Cord Oligodendroglioma 7 70883 -NCIT:C4641 Spinal Cord Astrocytoma 7 70884 -NCIT:C4822 Malignant Glioma 6 70885 -NCIT:C102897 High Grade Astrocytic Tumor 7 70886 -NCIT:C167335 Astrocytoma, IDH-Mutant, Grade 4 8 70887 -NCIT:C182018 Recurrent Astrocytoma, IDH-Mutant, Grade 4 9 70888 -NCIT:C3058 Glioblastoma 8 70889 -NCIT:C111691 Glioblastoma by Gene Expression Profile 9 70890 -NCIT:C111692 Proneural Glioblastoma 10 70891 -NCIT:C111693 Neural Glioblastoma 10 70892 -NCIT:C111694 Classical Glioblastoma 10 70893 -NCIT:C111695 Mesenchymal Glioblastoma 10 70894 -NCIT:C126306 Recurrent Glioblastoma 9 70895 -NCIT:C115364 Recurrent Childhood Glioblastoma 10 70896 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 11 70897 -NCIT:C115365 Recurrent Childhood Gliosarcoma 11 70898 -NCIT:C182019 Recurrent Glioblastoma, IDH-Wildtype 10 70899 -NCIT:C131209 Recurrent Gliosarcoma 11 70900 -NCIT:C115365 Recurrent Childhood Gliosarcoma 12 70901 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 11 70902 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 12 70903 -NCIT:C163961 Recurrent Small Cell Glioblastoma 11 70904 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 11 70905 -NCIT:C191198 Recurrent Brain Glioblastoma 10 70906 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 11 70907 -NCIT:C129295 Glioblastoma, Not Otherwise Specified 9 70908 -NCIT:C146734 Refractory Glioblastoma 9 70909 -NCIT:C163960 Refractory Small Cell Glioblastoma 10 70910 -NCIT:C163962 Refractory Gliosarcoma 10 70911 -NCIT:C176998 Refractory Giant Cell Glioblastoma 10 70912 -NCIT:C166156 Resectable Glioblastoma 9 70913 -NCIT:C170979 Metastatic Glioblastoma 9 70914 -NCIT:C170978 Advanced Glioblastoma 10 70915 -NCIT:C170980 Locally Advanced Glioblastoma 10 70916 -NCIT:C176890 Unresectable Glioblastoma 9 70917 -NCIT:C39750 Glioblastoma, IDH-Wildtype 9 70918 -NCIT:C125890 Small Cell Glioblastoma 10 70919 -NCIT:C163960 Refractory Small Cell Glioblastoma 11 70920 -NCIT:C163961 Recurrent Small Cell Glioblastoma 11 70921 -NCIT:C129293 Epithelioid Glioblastoma 10 70922 -NCIT:C129296 Glioblastoma with Primitive Neuronal Component 10 70923 -NCIT:C132902 MGMT-Unmethylated Glioblastoma 10 70924 -NCIT:C154335 MGMT-Methylated Glioblastoma 10 70925 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 11 70926 -NCIT:C182019 Recurrent Glioblastoma, IDH-Wildtype 10 70927 -NCIT:C131209 Recurrent Gliosarcoma 11 70928 -NCIT:C115365 Recurrent Childhood Gliosarcoma 12 70929 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 11 70930 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 12 70931 -NCIT:C163961 Recurrent Small Cell Glioblastoma 11 70932 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 11 70933 -NCIT:C185178 Granular Cell Glioblastoma 10 70934 -NCIT:C185180 Lipidized Glioblastoma 10 70935 -NCIT:C3796 Gliosarcoma 10 70936 -NCIT:C114968 Childhood Gliosarcoma 11 70937 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 12 70938 -NCIT:C115365 Recurrent Childhood Gliosarcoma 12 70939 -NCIT:C131209 Recurrent Gliosarcoma 11 70940 -NCIT:C115365 Recurrent Childhood Gliosarcoma 12 70941 -NCIT:C163962 Refractory Gliosarcoma 11 70942 -NCIT:C171013 Supratentorial Gliosarcoma 11 70943 -NCIT:C68701 Adult Gliosarcoma 11 70944 -NCIT:C9370 Adult Brain Stem Gliosarcoma 12 70945 -NCIT:C4325 Giant Cell Glioblastoma 10 70946 -NCIT:C114966 Childhood Giant Cell Glioblastoma 11 70947 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 12 70948 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 11 70949 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 12 70950 -NCIT:C176998 Refractory Giant Cell Glioblastoma 11 70951 -NCIT:C68702 Adult Giant Cell Glioblastoma 11 70952 -NCIT:C39751 Secondary Glioblastoma 9 70953 -NCIT:C4642 Brain Glioblastoma 9 70954 -NCIT:C147901 Childhood Brain Glioblastoma 10 70955 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 11 70956 -NCIT:C191198 Recurrent Brain Glioblastoma 10 70957 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 11 70958 -NCIT:C5148 Infratentorial Glioblastoma 10 70959 -NCIT:C5097 Brain Stem Glioblastoma 11 70960 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 12 70961 -NCIT:C9370 Adult Brain Stem Gliosarcoma 12 70962 -NCIT:C5150 Cerebellar Glioblastoma 11 70963 -NCIT:C5149 Supratentorial Glioblastoma 10 70964 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 11 70965 -NCIT:C5129 Diencephalic Glioblastoma 11 70966 -NCIT:C5151 Cerebral Glioblastoma 11 70967 -NCIT:C171013 Supratentorial Gliosarcoma 12 70968 -NCIT:C9375 Adult Brain Glioblastoma 10 70969 -NCIT:C9370 Adult Brain Stem Gliosarcoma 11 70970 -NCIT:C5136 Childhood Glioblastoma 9 70971 -NCIT:C114966 Childhood Giant Cell Glioblastoma 10 70972 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 11 70973 -NCIT:C114968 Childhood Gliosarcoma 10 70974 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 11 70975 -NCIT:C115365 Recurrent Childhood Gliosarcoma 11 70976 -NCIT:C115364 Recurrent Childhood Glioblastoma 10 70977 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 11 70978 -NCIT:C115365 Recurrent Childhood Gliosarcoma 11 70979 -NCIT:C147901 Childhood Brain Glioblastoma 10 70980 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 11 70981 -NCIT:C9094 Adult Glioblastoma 9 70982 -NCIT:C27183 Adult Spinal Cord Glioblastoma 10 70983 -NCIT:C68701 Adult Gliosarcoma 10 70984 -NCIT:C9370 Adult Brain Stem Gliosarcoma 11 70985 -NCIT:C68702 Adult Giant Cell Glioblastoma 10 70986 -NCIT:C9375 Adult Brain Glioblastoma 10 70987 -NCIT:C9370 Adult Brain Stem Gliosarcoma 11 70988 -NCIT:C92549 Multifocal Glioblastomas 9 70989 -NCIT:C9477 Anaplastic Astrocytoma 8 70990 -NCIT:C129290 Astrocytoma, IDH-Mutant, Grade 3 9 70991 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 10 70992 -NCIT:C129291 Anaplastic Astrocytoma, IDH-Wildtype 9 70993 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 10 70994 -NCIT:C129292 Anaplastic Astrocytoma, Not Otherwise Specified 9 70995 -NCIT:C136517 Recurrent Anaplastic Astrocytoma 9 70996 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 10 70997 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 10 70998 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 10 70999 -NCIT:C169075 Refractory Anaplastic Astrocytoma 9 71000 -NCIT:C185879 High Grade Astrocytoma with Piloid Features 9 71001 -NCIT:C5123 Hemispheric Anaplastic Astrocytoma 9 71002 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 10 71003 -NCIT:C156035 Frontal Lobe Anaplastic Astrocytoma 10 71004 -NCIT:C156036 Temporal Lobe Anaplastic Astrocytoma 10 71005 -NCIT:C171036 Parietal Lobe Anaplastic Astrocytoma 10 71006 -NCIT:C5124 Anaplastic Diencephalic Astrocytoma 9 71007 -NCIT:C5416 Secondary Supratentorial Anaplastic Astrocytoma 9 71008 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 9 71009 -NCIT:C6215 Childhood Anaplastic Astrocytoma 9 71010 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 10 71011 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 10 71012 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 11 71013 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 11 71014 -NCIT:C8257 Adult Anaplastic Astrocytoma 9 71015 -NCIT:C127816 WHO Grade 3 Glioma 7 71016 -NCIT:C129327 Anaplastic Pleomorphic Xanthoastrocytoma 8 71017 -NCIT:C160904 Recurrent Anaplastic Pleomorphic Xanthoastrocytoma 9 71018 -NCIT:C160905 Refractory Anaplastic Pleomorphic Xanthoastrocytoma 9 71019 -NCIT:C148038 Recurrent WHO Grade 3 Glioma 8 71020 -NCIT:C136517 Recurrent Anaplastic Astrocytoma 9 71021 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 10 71022 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 10 71023 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 10 71024 -NCIT:C142861 Recurrent Anaplastic Oligoastrocytoma 9 71025 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 10 71026 -NCIT:C142862 Recurrent Anaplastic Oligodendroglioma 9 71027 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 10 71028 -NCIT:C160904 Recurrent Anaplastic Pleomorphic Xanthoastrocytoma 9 71029 -NCIT:C160912 Recurrent Anaplastic Ependymoma 9 71030 -NCIT:C153865 Refractory WHO Grade 3 Glioma 8 71031 -NCIT:C160905 Refractory Anaplastic Pleomorphic Xanthoastrocytoma 9 71032 -NCIT:C160913 Refractory Anaplastic Ependymoma 9 71033 -NCIT:C169074 Refractory Anaplastic Oligodendroglioma 9 71034 -NCIT:C169075 Refractory Anaplastic Astrocytoma 9 71035 -NCIT:C4049 Anaplastic Ependymoma 8 71036 -NCIT:C124293 Childhood Anaplastic Ependymoma 9 71037 -NCIT:C160912 Recurrent Anaplastic Ependymoma 9 71038 -NCIT:C160913 Refractory Anaplastic Ependymoma 9 71039 -NCIT:C8269 Adult Anaplastic Ependymoma 9 71040 -NCIT:C4326 Anaplastic Oligodendroglioma 8 71041 -NCIT:C129321 Anaplastic Oligodendroglioma, IDH-Mutant and 1p/19q-Codeleted 9 71042 -NCIT:C129322 Anaplastic Oligodendroglioma, Not Otherwise Specified 9 71043 -NCIT:C142862 Recurrent Anaplastic Oligodendroglioma 9 71044 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 10 71045 -NCIT:C156120 Frontal Lobe Anaplastic Oligodendroglioma 9 71046 -NCIT:C169074 Refractory Anaplastic Oligodendroglioma 9 71047 -NCIT:C5447 Childhood Anaplastic Oligodendroglioma 9 71048 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 10 71049 -NCIT:C8270 Adult Anaplastic Oligodendroglioma 9 71050 -NCIT:C6959 Anaplastic Oligoastrocytoma 8 71051 -NCIT:C114973 Childhood Anaplastic Oligoastrocytoma 9 71052 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 10 71053 -NCIT:C129324 Anaplastic Oligoastrocytoma, Not Otherwise Specified 9 71054 -NCIT:C142861 Recurrent Anaplastic Oligoastrocytoma 9 71055 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 10 71056 -NCIT:C7446 Anaplastic Brain Stem Glioma 8 71057 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 9 71058 -NCIT:C9477 Anaplastic Astrocytoma 8 71059 -NCIT:C129290 Astrocytoma, IDH-Mutant, Grade 3 9 71060 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 10 71061 -NCIT:C129291 Anaplastic Astrocytoma, IDH-Wildtype 9 71062 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 10 71063 -NCIT:C129292 Anaplastic Astrocytoma, Not Otherwise Specified 9 71064 -NCIT:C136517 Recurrent Anaplastic Astrocytoma 9 71065 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 10 71066 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 10 71067 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 10 71068 -NCIT:C169075 Refractory Anaplastic Astrocytoma 9 71069 -NCIT:C185879 High Grade Astrocytoma with Piloid Features 9 71070 -NCIT:C5123 Hemispheric Anaplastic Astrocytoma 9 71071 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 10 71072 -NCIT:C156035 Frontal Lobe Anaplastic Astrocytoma 10 71073 -NCIT:C156036 Temporal Lobe Anaplastic Astrocytoma 10 71074 -NCIT:C171036 Parietal Lobe Anaplastic Astrocytoma 10 71075 -NCIT:C5124 Anaplastic Diencephalic Astrocytoma 9 71076 -NCIT:C5416 Secondary Supratentorial Anaplastic Astrocytoma 9 71077 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 9 71078 -NCIT:C6215 Childhood Anaplastic Astrocytoma 9 71079 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 10 71080 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 10 71081 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 11 71082 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 11 71083 -NCIT:C8257 Adult Anaplastic Astrocytoma 9 71084 -NCIT:C142848 Recurrent Malignant Glioma 7 71085 -NCIT:C126306 Recurrent Glioblastoma 8 71086 -NCIT:C115364 Recurrent Childhood Glioblastoma 9 71087 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 10 71088 -NCIT:C115365 Recurrent Childhood Gliosarcoma 10 71089 -NCIT:C182019 Recurrent Glioblastoma, IDH-Wildtype 9 71090 -NCIT:C131209 Recurrent Gliosarcoma 10 71091 -NCIT:C115365 Recurrent Childhood Gliosarcoma 11 71092 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 10 71093 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 11 71094 -NCIT:C163961 Recurrent Small Cell Glioblastoma 10 71095 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 10 71096 -NCIT:C191198 Recurrent Brain Glioblastoma 9 71097 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 10 71098 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 8 71099 -NCIT:C148038 Recurrent WHO Grade 3 Glioma 8 71100 -NCIT:C136517 Recurrent Anaplastic Astrocytoma 9 71101 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 10 71102 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 10 71103 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 10 71104 -NCIT:C142861 Recurrent Anaplastic Oligoastrocytoma 9 71105 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 10 71106 -NCIT:C142862 Recurrent Anaplastic Oligodendroglioma 9 71107 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 10 71108 -NCIT:C160904 Recurrent Anaplastic Pleomorphic Xanthoastrocytoma 9 71109 -NCIT:C160912 Recurrent Anaplastic Ependymoma 9 71110 -NCIT:C179222 Recurrent Diffuse Midline Glioma, H3 K27M-Mutant 8 71111 -NCIT:C182018 Recurrent Astrocytoma, IDH-Mutant, Grade 4 8 71112 -NCIT:C142855 Refractory Malignant Glioma 7 71113 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 8 71114 -NCIT:C146734 Refractory Glioblastoma 8 71115 -NCIT:C163960 Refractory Small Cell Glioblastoma 9 71116 -NCIT:C163962 Refractory Gliosarcoma 9 71117 -NCIT:C176998 Refractory Giant Cell Glioblastoma 9 71118 -NCIT:C153865 Refractory WHO Grade 3 Glioma 8 71119 -NCIT:C160905 Refractory Anaplastic Pleomorphic Xanthoastrocytoma 9 71120 -NCIT:C160913 Refractory Anaplastic Ependymoma 9 71121 -NCIT:C169074 Refractory Anaplastic Oligodendroglioma 9 71122 -NCIT:C169075 Refractory Anaplastic Astrocytoma 9 71123 -NCIT:C162993 Malignant Brain Glioma 7 71124 -NCIT:C156120 Frontal Lobe Anaplastic Oligodendroglioma 8 71125 -NCIT:C185371 Diffuse Hemispheric Glioma, H3 G34-Mutant 8 71126 -NCIT:C188926 Childhood Diffuse Hemispheric Glioma, H3 G34-Mutant 9 71127 -NCIT:C188927 Adult Diffuse Hemispheric Glioma, H3 G34-Mutant 9 71128 -NCIT:C185467 Diffuse Pediatric-Type High Grade Glioma, H3-Wildtype and IDH-Wildtype 8 71129 -NCIT:C185468 Diffuse Pediatric-Type High Grade Glioma RTK2 9 71130 -NCIT:C185469 Diffuse Pediatric-Type High Grade Glioma RTK1 9 71131 -NCIT:C185470 Diffuse Pediatric-Type High Grade Glioma MYCN 9 71132 -NCIT:C185471 Infant-Type Hemispheric Glioma 8 71133 -NCIT:C185472 Infant-Type Hemispheric Glioma, NTRK-Altered 9 71134 -NCIT:C185473 Infant-Type Hemispheric Glioma, ROS1-Altered 9 71135 -NCIT:C185474 Infant-Type Hemispheric Glioma, ALK-Altered 9 71136 -NCIT:C185475 Infant-Type Hemispheric Glioma, MET-Altered 9 71137 -NCIT:C4642 Brain Glioblastoma 8 71138 -NCIT:C147901 Childhood Brain Glioblastoma 9 71139 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 71140 -NCIT:C191198 Recurrent Brain Glioblastoma 9 71141 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 10 71142 -NCIT:C5148 Infratentorial Glioblastoma 9 71143 -NCIT:C5097 Brain Stem Glioblastoma 10 71144 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 11 71145 -NCIT:C9370 Adult Brain Stem Gliosarcoma 11 71146 -NCIT:C5150 Cerebellar Glioblastoma 10 71147 -NCIT:C5149 Supratentorial Glioblastoma 9 71148 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 10 71149 -NCIT:C5129 Diencephalic Glioblastoma 10 71150 -NCIT:C5151 Cerebral Glioblastoma 10 71151 -NCIT:C171013 Supratentorial Gliosarcoma 11 71152 -NCIT:C9375 Adult Brain Glioblastoma 9 71153 -NCIT:C9370 Adult Brain Stem Gliosarcoma 10 71154 -NCIT:C5123 Hemispheric Anaplastic Astrocytoma 8 71155 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 9 71156 -NCIT:C156035 Frontal Lobe Anaplastic Astrocytoma 9 71157 -NCIT:C156036 Temporal Lobe Anaplastic Astrocytoma 9 71158 -NCIT:C171036 Parietal Lobe Anaplastic Astrocytoma 9 71159 -NCIT:C5124 Anaplastic Diencephalic Astrocytoma 8 71160 -NCIT:C5416 Secondary Supratentorial Anaplastic Astrocytoma 8 71161 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 8 71162 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 9 71163 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 9 71164 -NCIT:C7446 Anaplastic Brain Stem Glioma 8 71165 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 9 71166 -NCIT:C94764 Diffuse Intrinsic Pontine Glioma 8 71167 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 9 71168 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 9 71169 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 9 71170 -NCIT:C188925 Adult Diffuse Intrinsic Pontine Glioma 9 71171 -NCIT:C180877 Metastatic Glioma 7 71172 -NCIT:C170979 Metastatic Glioblastoma 8 71173 -NCIT:C170978 Advanced Glioblastoma 9 71174 -NCIT:C170980 Locally Advanced Glioblastoma 9 71175 -NCIT:C178558 Metastatic Low Grade Glioma 8 71176 -NCIT:C178559 Metastatic Low Grade Astrocytoma 9 71177 -NCIT:C180876 Locally Advanced Glioma 8 71178 -NCIT:C170980 Locally Advanced Glioblastoma 9 71179 -NCIT:C182151 Diffuse Midline Glioma 7 71180 -NCIT:C182436 Diffuse Non-Pontine Midline Glioma 8 71181 -NCIT:C185368 Diffuse Midline Glioma, H3 K27-Altered 8 71182 -NCIT:C129309 Diffuse Midline Glioma, H3 K27M-Mutant 9 71183 -NCIT:C179222 Recurrent Diffuse Midline Glioma, H3 K27M-Mutant 10 71184 -NCIT:C185369 Diffuse Midline Glioma, EGFR-Mutant 9 71185 -NCIT:C185370 Diffuse Midline Glioma with EZHIP Overexpression 9 71186 -NCIT:C188922 Childhood Diffuse Midline Glioma, H3 K27-Altered 9 71187 -NCIT:C188923 Adult Diffuse Midline Glioma, H3 K27-Altered 9 71188 -NCIT:C94764 Diffuse Intrinsic Pontine Glioma 8 71189 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 9 71190 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 9 71191 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 9 71192 -NCIT:C188925 Adult Diffuse Intrinsic Pontine Glioma 9 71193 -NCIT:C5446 Meningeal Gliomatosis 7 71194 -NCIT:C5592 Chordoid Glioma 6 71195 -NCIT:C6770 Ependymal Tumor 6 71196 -NCIT:C115192 Childhood Ependymal Tumor 7 71197 -NCIT:C124269 Childhood Myxopapillary Ependymoma 8 71198 -NCIT:C124293 Childhood Anaplastic Ependymoma 8 71199 -NCIT:C8578 Childhood Ependymoma 8 71200 -NCIT:C186351 Supratentorial Ependymoma YAP1 Fusion-Positive 9 71201 -NCIT:C186355 Supratentorial Ependymoma, YAP1-MAMLD1 Fusion-Positive 10 71202 -NCIT:C186495 Childhood Spinal Cord Ependymoma 9 71203 -NCIT:C188935 Childhood Supratentorial Ependymoma ZFTA Fusion-Positive 9 71204 -NCIT:C188943 Childhood Posterior Fossa Ependymoma 9 71205 -NCIT:C8579 Recurrent Childhood Ependymoma 9 71206 -NCIT:C9041 Childhood Infratentorial Ependymoma 9 71207 -NCIT:C9043 Childhood Supratentorial Ependymoma, Not Otherwise Specified 9 71208 -NCIT:C6268 Childhood Cerebral Ependymoma, Not Otherwise Specified 10 71209 -NCIT:C131617 Recurrent Ependymal Tumor 7 71210 -NCIT:C157601 Recurrent Ependymoma 8 71211 -NCIT:C8579 Recurrent Childhood Ependymoma 9 71212 -NCIT:C160912 Recurrent Anaplastic Ependymoma 8 71213 -NCIT:C3017 Ependymoma 7 71214 -NCIT:C147108 Refractory Ependymoma 8 71215 -NCIT:C156462 Brain Ependymoma 8 71216 -NCIT:C186343 Supratentorial Ependymoma 9 71217 -NCIT:C186348 Supratentorial Ependymoma, Not Elsewhere Classified 10 71218 -NCIT:C186349 Supratentorial Ependymoma, Not Otherwise Specified 10 71219 -NCIT:C9043 Childhood Supratentorial Ependymoma, Not Otherwise Specified 11 71220 -NCIT:C6268 Childhood Cerebral Ependymoma, Not Otherwise Specified 12 71221 -NCIT:C186350 Supratentorial Ependymoma ZFTA Fusion-Positive 9 71222 -NCIT:C129351 Supratentorial Ependymoma, ZFTA-RELA Fusion-Positive 10 71223 -NCIT:C188935 Childhood Supratentorial Ependymoma ZFTA Fusion-Positive 10 71224 -NCIT:C188938 Adult Supratentorial Ependymoma ZFTA Fusion-Positive 10 71225 -NCIT:C186351 Supratentorial Ependymoma YAP1 Fusion-Positive 9 71226 -NCIT:C186355 Supratentorial Ependymoma, YAP1-MAMLD1 Fusion-Positive 10 71227 -NCIT:C186443 Posterior Fossa Ependymoma 9 71228 -NCIT:C186448 Posterior Fossa Ependymoma, Not Elsewhere Classified 10 71229 -NCIT:C186449 Posterior Fossa Ependymoma, Not Otherwise Specified 10 71230 -NCIT:C188943 Childhood Posterior Fossa Ependymoma 10 71231 -NCIT:C188945 Adult Posterior Fossa Ependymoma 10 71232 -NCIT:C186450 Posterior Fossa Ependymoma, Group A (PFA) 9 71233 -NCIT:C186451 Posterior Fossa Ependymoma, Group B (PFB) 9 71234 -NCIT:C5098 Brain Stem Ependymoma 9 71235 -NCIT:C9041 Childhood Infratentorial Ependymoma 9 71236 -NCIT:C9372 Adult Brain Ependymoma 9 71237 -NCIT:C188938 Adult Supratentorial Ependymoma ZFTA Fusion-Positive 10 71238 -NCIT:C188945 Adult Posterior Fossa Ependymoma 10 71239 -NCIT:C157601 Recurrent Ependymoma 8 71240 -NCIT:C8579 Recurrent Childhood Ependymoma 9 71241 -NCIT:C186494 Spinal Cord Ependymoma, MYCN Amplified 8 71242 -NCIT:C3875 Spinal Cord Ependymoma 8 71243 -NCIT:C186495 Childhood Spinal Cord Ependymoma 9 71244 -NCIT:C27399 Adult Spinal Cord Ependymoma 9 71245 -NCIT:C4319 Papillary Ependymoma 8 71246 -NCIT:C4713 Cellular Ependymoma 8 71247 -NCIT:C4714 Clear Cell Ependymoma 8 71248 -NCIT:C6903 Tanycytic Ependymoma 8 71249 -NCIT:C8578 Childhood Ependymoma 8 71250 -NCIT:C186351 Supratentorial Ependymoma YAP1 Fusion-Positive 9 71251 -NCIT:C186355 Supratentorial Ependymoma, YAP1-MAMLD1 Fusion-Positive 10 71252 -NCIT:C186495 Childhood Spinal Cord Ependymoma 9 71253 -NCIT:C188935 Childhood Supratentorial Ependymoma ZFTA Fusion-Positive 9 71254 -NCIT:C188943 Childhood Posterior Fossa Ependymoma 9 71255 -NCIT:C8579 Recurrent Childhood Ependymoma 9 71256 -NCIT:C9041 Childhood Infratentorial Ependymoma 9 71257 -NCIT:C9043 Childhood Supratentorial Ependymoma, Not Otherwise Specified 9 71258 -NCIT:C6268 Childhood Cerebral Ependymoma, Not Otherwise Specified 10 71259 -NCIT:C9092 Adult Ependymoma 8 71260 -NCIT:C27399 Adult Spinal Cord Ependymoma 9 71261 -NCIT:C9372 Adult Brain Ependymoma 9 71262 -NCIT:C188938 Adult Supratentorial Ependymoma ZFTA Fusion-Positive 10 71263 -NCIT:C188945 Adult Posterior Fossa Ependymoma 10 71264 -NCIT:C3697 Myxopapillary Ependymoma 7 71265 -NCIT:C115263 Adult Myxopapillary Ependymoma 8 71266 -NCIT:C124269 Childhood Myxopapillary Ependymoma 8 71267 -NCIT:C3795 Subependymoma 7 71268 -NCIT:C115623 Adult Subependymoma 8 71269 -NCIT:C4049 Anaplastic Ependymoma 7 71270 -NCIT:C124293 Childhood Anaplastic Ependymoma 8 71271 -NCIT:C160912 Recurrent Anaplastic Ependymoma 8 71272 -NCIT:C160913 Refractory Anaplastic Ependymoma 8 71273 -NCIT:C8269 Adult Anaplastic Ependymoma 8 71274 -NCIT:C68690 Adult Ependymal Tumor 7 71275 -NCIT:C115263 Adult Myxopapillary Ependymoma 8 71276 -NCIT:C115623 Adult Subependymoma 8 71277 -NCIT:C8269 Adult Anaplastic Ependymoma 8 71278 -NCIT:C9092 Adult Ependymoma 8 71279 -NCIT:C27399 Adult Spinal Cord Ependymoma 9 71280 -NCIT:C9372 Adult Brain Ependymoma 9 71281 -NCIT:C188938 Adult Supratentorial Ependymoma ZFTA Fusion-Positive 10 71282 -NCIT:C188945 Adult Posterior Fossa Ependymoma 10 71283 -NCIT:C6958 Astrocytic Tumor 6 71284 -NCIT:C102897 High Grade Astrocytic Tumor 7 71285 -NCIT:C167335 Astrocytoma, IDH-Mutant, Grade 4 8 71286 -NCIT:C182018 Recurrent Astrocytoma, IDH-Mutant, Grade 4 9 71287 -NCIT:C3058 Glioblastoma 8 71288 -NCIT:C111691 Glioblastoma by Gene Expression Profile 9 71289 -NCIT:C111692 Proneural Glioblastoma 10 71290 -NCIT:C111693 Neural Glioblastoma 10 71291 -NCIT:C111694 Classical Glioblastoma 10 71292 -NCIT:C111695 Mesenchymal Glioblastoma 10 71293 -NCIT:C126306 Recurrent Glioblastoma 9 71294 -NCIT:C115364 Recurrent Childhood Glioblastoma 10 71295 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 11 71296 -NCIT:C115365 Recurrent Childhood Gliosarcoma 11 71297 -NCIT:C182019 Recurrent Glioblastoma, IDH-Wildtype 10 71298 -NCIT:C131209 Recurrent Gliosarcoma 11 71299 -NCIT:C115365 Recurrent Childhood Gliosarcoma 12 71300 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 11 71301 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 12 71302 -NCIT:C163961 Recurrent Small Cell Glioblastoma 11 71303 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 11 71304 -NCIT:C191198 Recurrent Brain Glioblastoma 10 71305 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 11 71306 -NCIT:C129295 Glioblastoma, Not Otherwise Specified 9 71307 -NCIT:C146734 Refractory Glioblastoma 9 71308 -NCIT:C163960 Refractory Small Cell Glioblastoma 10 71309 -NCIT:C163962 Refractory Gliosarcoma 10 71310 -NCIT:C176998 Refractory Giant Cell Glioblastoma 10 71311 -NCIT:C166156 Resectable Glioblastoma 9 71312 -NCIT:C170979 Metastatic Glioblastoma 9 71313 -NCIT:C170978 Advanced Glioblastoma 10 71314 -NCIT:C170980 Locally Advanced Glioblastoma 10 71315 -NCIT:C176890 Unresectable Glioblastoma 9 71316 -NCIT:C39750 Glioblastoma, IDH-Wildtype 9 71317 -NCIT:C125890 Small Cell Glioblastoma 10 71318 -NCIT:C163960 Refractory Small Cell Glioblastoma 11 71319 -NCIT:C163961 Recurrent Small Cell Glioblastoma 11 71320 -NCIT:C129293 Epithelioid Glioblastoma 10 71321 -NCIT:C129296 Glioblastoma with Primitive Neuronal Component 10 71322 -NCIT:C132902 MGMT-Unmethylated Glioblastoma 10 71323 -NCIT:C154335 MGMT-Methylated Glioblastoma 10 71324 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 11 71325 -NCIT:C182019 Recurrent Glioblastoma, IDH-Wildtype 10 71326 -NCIT:C131209 Recurrent Gliosarcoma 11 71327 -NCIT:C115365 Recurrent Childhood Gliosarcoma 12 71328 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 11 71329 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 12 71330 -NCIT:C163961 Recurrent Small Cell Glioblastoma 11 71331 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 11 71332 -NCIT:C185178 Granular Cell Glioblastoma 10 71333 -NCIT:C185180 Lipidized Glioblastoma 10 71334 -NCIT:C3796 Gliosarcoma 10 71335 -NCIT:C114968 Childhood Gliosarcoma 11 71336 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 12 71337 -NCIT:C115365 Recurrent Childhood Gliosarcoma 12 71338 -NCIT:C131209 Recurrent Gliosarcoma 11 71339 -NCIT:C115365 Recurrent Childhood Gliosarcoma 12 71340 -NCIT:C163962 Refractory Gliosarcoma 11 71341 -NCIT:C171013 Supratentorial Gliosarcoma 11 71342 -NCIT:C68701 Adult Gliosarcoma 11 71343 -NCIT:C9370 Adult Brain Stem Gliosarcoma 12 71344 -NCIT:C4325 Giant Cell Glioblastoma 10 71345 -NCIT:C114966 Childhood Giant Cell Glioblastoma 11 71346 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 12 71347 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 11 71348 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 12 71349 -NCIT:C176998 Refractory Giant Cell Glioblastoma 11 71350 -NCIT:C68702 Adult Giant Cell Glioblastoma 11 71351 -NCIT:C39751 Secondary Glioblastoma 9 71352 -NCIT:C4642 Brain Glioblastoma 9 71353 -NCIT:C147901 Childhood Brain Glioblastoma 10 71354 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 11 71355 -NCIT:C191198 Recurrent Brain Glioblastoma 10 71356 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 11 71357 -NCIT:C5148 Infratentorial Glioblastoma 10 71358 -NCIT:C5097 Brain Stem Glioblastoma 11 71359 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 12 71360 -NCIT:C9370 Adult Brain Stem Gliosarcoma 12 71361 -NCIT:C5150 Cerebellar Glioblastoma 11 71362 -NCIT:C5149 Supratentorial Glioblastoma 10 71363 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 11 71364 -NCIT:C5129 Diencephalic Glioblastoma 11 71365 -NCIT:C5151 Cerebral Glioblastoma 11 71366 -NCIT:C171013 Supratentorial Gliosarcoma 12 71367 -NCIT:C9375 Adult Brain Glioblastoma 10 71368 -NCIT:C9370 Adult Brain Stem Gliosarcoma 11 71369 -NCIT:C5136 Childhood Glioblastoma 9 71370 -NCIT:C114966 Childhood Giant Cell Glioblastoma 10 71371 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 11 71372 -NCIT:C114968 Childhood Gliosarcoma 10 71373 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 11 71374 -NCIT:C115365 Recurrent Childhood Gliosarcoma 11 71375 -NCIT:C115364 Recurrent Childhood Glioblastoma 10 71376 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 11 71377 -NCIT:C115365 Recurrent Childhood Gliosarcoma 11 71378 -NCIT:C147901 Childhood Brain Glioblastoma 10 71379 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 11 71380 -NCIT:C9094 Adult Glioblastoma 9 71381 -NCIT:C27183 Adult Spinal Cord Glioblastoma 10 71382 -NCIT:C68701 Adult Gliosarcoma 10 71383 -NCIT:C9370 Adult Brain Stem Gliosarcoma 11 71384 -NCIT:C68702 Adult Giant Cell Glioblastoma 10 71385 -NCIT:C9375 Adult Brain Glioblastoma 10 71386 -NCIT:C9370 Adult Brain Stem Gliosarcoma 11 71387 -NCIT:C92549 Multifocal Glioblastomas 9 71388 -NCIT:C9477 Anaplastic Astrocytoma 8 71389 -NCIT:C129290 Astrocytoma, IDH-Mutant, Grade 3 9 71390 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 10 71391 -NCIT:C129291 Anaplastic Astrocytoma, IDH-Wildtype 9 71392 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 10 71393 -NCIT:C129292 Anaplastic Astrocytoma, Not Otherwise Specified 9 71394 -NCIT:C136517 Recurrent Anaplastic Astrocytoma 9 71395 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 10 71396 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 10 71397 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 10 71398 -NCIT:C169075 Refractory Anaplastic Astrocytoma 9 71399 -NCIT:C185879 High Grade Astrocytoma with Piloid Features 9 71400 -NCIT:C5123 Hemispheric Anaplastic Astrocytoma 9 71401 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 10 71402 -NCIT:C156035 Frontal Lobe Anaplastic Astrocytoma 10 71403 -NCIT:C156036 Temporal Lobe Anaplastic Astrocytoma 10 71404 -NCIT:C171036 Parietal Lobe Anaplastic Astrocytoma 10 71405 -NCIT:C5124 Anaplastic Diencephalic Astrocytoma 9 71406 -NCIT:C5416 Secondary Supratentorial Anaplastic Astrocytoma 9 71407 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 9 71408 -NCIT:C6215 Childhood Anaplastic Astrocytoma 9 71409 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 10 71410 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 10 71411 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 11 71412 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 11 71413 -NCIT:C8257 Adult Anaplastic Astrocytoma 9 71414 -NCIT:C5419 Gliofibroma 7 71415 -NCIT:C60781 Astrocytoma 7 71416 -NCIT:C116342 Low Grade Astrocytoma 8 71417 -NCIT:C176464 Recurrent Low Grade Astrocytoma 9 71418 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 10 71419 -NCIT:C167081 Recurrent Diffuse Astrocytoma 10 71420 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 11 71421 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 12 71422 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 12 71423 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 12 71424 -NCIT:C179220 Recurrent Pilocytic Astrocytoma 10 71425 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 11 71426 -NCIT:C177795 Refractory Low Grade Astrocytoma 9 71427 -NCIT:C178559 Metastatic Low Grade Astrocytoma 9 71428 -NCIT:C3696 Subependymal Giant Cell Astrocytoma 9 71429 -NCIT:C114785 Childhood Subependymal Giant Cell Astrocytoma 10 71430 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 11 71431 -NCIT:C71017 Adult Subependymal Giant Cell Astrocytoma 10 71432 -NCIT:C4047 Pilocytic Astrocytoma 9 71433 -NCIT:C156037 Third Ventricle Pilocytic Astrocytoma 10 71434 -NCIT:C179220 Recurrent Pilocytic Astrocytoma 10 71435 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 11 71436 -NCIT:C4048 Childhood Pilocytic Astrocytoma 10 71437 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 11 71438 -NCIT:C27081 Juvenile Pilocytic Astrocytoma 11 71439 -NCIT:C6809 Cerebellar Pilocytic Astrocytoma 10 71440 -NCIT:C71016 Adult Pilocytic Astrocytoma 10 71441 -NCIT:C7173 Diffuse Astrocytoma 9 71442 -NCIT:C114967 Childhood Diffuse Astrocytoma 10 71443 -NCIT:C114963 Childhood Fibrillary Astrocytoma 11 71444 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 12 71445 -NCIT:C114964 Childhood Gemistocytic Astrocytoma 11 71446 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 12 71447 -NCIT:C114972 Childhood Protoplasmic Astrocytoma 11 71448 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 12 71449 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 11 71450 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 12 71451 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 12 71452 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 12 71453 -NCIT:C188920 Childhood Diffuse Astrocytoma, MYBL1-Altered 11 71454 -NCIT:C188921 Childhood Diffuse Astrocytoma, MYB-Altered 11 71455 -NCIT:C8387 Childhood Cerebral Diffuse Astrocytoma 11 71456 -NCIT:C129271 Astrocytoma, IDH-Mutant, Grade 2 10 71457 -NCIT:C129272 Gemistocytic Astrocytoma, IDH-Mutant 11 71458 -NCIT:C129274 Diffuse Astrocytoma, IDH-Wildtype 10 71459 -NCIT:C185195 Diffuse Astrocytoma, MYB-Altered 11 71460 -NCIT:C188921 Childhood Diffuse Astrocytoma, MYB-Altered 12 71461 -NCIT:C185196 Diffuse Astrocytoma, MYBL1-Altered 11 71462 -NCIT:C188920 Childhood Diffuse Astrocytoma, MYBL1-Altered 12 71463 -NCIT:C129277 Diffuse Astrocytoma, Not Otherwise Specified 10 71464 -NCIT:C167081 Recurrent Diffuse Astrocytoma 10 71465 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 11 71466 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 12 71467 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 12 71468 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 12 71469 -NCIT:C4320 Protoplasmic Astrocytoma 10 71470 -NCIT:C114972 Childhood Protoplasmic Astrocytoma 11 71471 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 12 71472 -NCIT:C4321 Gemistocytic Astrocytoma 10 71473 -NCIT:C114964 Childhood Gemistocytic Astrocytoma 11 71474 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 12 71475 -NCIT:C129272 Gemistocytic Astrocytoma, IDH-Mutant 11 71476 -NCIT:C4322 Fibrillary Astrocytoma 10 71477 -NCIT:C114963 Childhood Fibrillary Astrocytoma 11 71478 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 12 71479 -NCIT:C7174 Adult Diffuse Astrocytoma 10 71480 -NCIT:C124275 Childhood Astrocytoma 8 71481 -NCIT:C114785 Childhood Subependymal Giant Cell Astrocytoma 9 71482 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 10 71483 -NCIT:C114967 Childhood Diffuse Astrocytoma 9 71484 -NCIT:C114963 Childhood Fibrillary Astrocytoma 10 71485 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 11 71486 -NCIT:C114964 Childhood Gemistocytic Astrocytoma 10 71487 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 11 71488 -NCIT:C114972 Childhood Protoplasmic Astrocytoma 10 71489 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 11 71490 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 10 71491 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 11 71492 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 11 71493 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 11 71494 -NCIT:C188920 Childhood Diffuse Astrocytoma, MYBL1-Altered 10 71495 -NCIT:C188921 Childhood Diffuse Astrocytoma, MYB-Altered 10 71496 -NCIT:C8387 Childhood Cerebral Diffuse Astrocytoma 10 71497 -NCIT:C114970 Childhood Pilomyxoid Astrocytoma 9 71498 -NCIT:C115373 Recurrent Childhood Pilomyxoid Astrocytoma 10 71499 -NCIT:C114971 Childhood Pleomorphic Xanthoastrocytoma 9 71500 -NCIT:C115375 Recurrent Childhood Pleomorphic Xanthoastrocytoma 10 71501 -NCIT:C4048 Childhood Pilocytic Astrocytoma 9 71502 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 10 71503 -NCIT:C27081 Juvenile Pilocytic Astrocytoma 10 71504 -NCIT:C4347 Childhood Cerebral Astrocytoma 9 71505 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 10 71506 -NCIT:C8387 Childhood Cerebral Diffuse Astrocytoma 10 71507 -NCIT:C9191 Recurrent Childhood Cerebral Astrocytoma 10 71508 -NCIT:C6215 Childhood Anaplastic Astrocytoma 9 71509 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 10 71510 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 10 71511 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 11 71512 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 11 71513 -NCIT:C6216 Childhood Brain Stem Astrocytoma 9 71514 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 10 71515 -NCIT:C6286 Childhood Cerebellar Astrocytoma 9 71516 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 10 71517 -NCIT:C8389 Recurrent Childhood Cerebellar Astrocytoma 10 71518 -NCIT:C7534 Childhood Visual Pathway Astrocytoma 9 71519 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 10 71520 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 11 71521 -NCIT:C129327 Anaplastic Pleomorphic Xanthoastrocytoma 8 71522 -NCIT:C160904 Recurrent Anaplastic Pleomorphic Xanthoastrocytoma 9 71523 -NCIT:C160905 Refractory Anaplastic Pleomorphic Xanthoastrocytoma 9 71524 -NCIT:C185167 Astrocytoma, IDH-Mutant 8 71525 -NCIT:C129271 Astrocytoma, IDH-Mutant, Grade 2 9 71526 -NCIT:C129272 Gemistocytic Astrocytoma, IDH-Mutant 10 71527 -NCIT:C129290 Astrocytoma, IDH-Mutant, Grade 3 9 71528 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 10 71529 -NCIT:C167335 Astrocytoma, IDH-Mutant, Grade 4 9 71530 -NCIT:C182018 Recurrent Astrocytoma, IDH-Mutant, Grade 4 10 71531 -NCIT:C188127 Recurrent Astrocytoma, IDH-Mutant 9 71532 -NCIT:C182018 Recurrent Astrocytoma, IDH-Mutant, Grade 4 10 71533 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 10 71534 -NCIT:C185184 Astrocytoma, IDH-Wildtype 8 71535 -NCIT:C129274 Diffuse Astrocytoma, IDH-Wildtype 9 71536 -NCIT:C185195 Diffuse Astrocytoma, MYB-Altered 10 71537 -NCIT:C188921 Childhood Diffuse Astrocytoma, MYB-Altered 11 71538 -NCIT:C185196 Diffuse Astrocytoma, MYBL1-Altered 10 71539 -NCIT:C188920 Childhood Diffuse Astrocytoma, MYBL1-Altered 11 71540 -NCIT:C129291 Anaplastic Astrocytoma, IDH-Wildtype 9 71541 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 10 71542 -NCIT:C185179 Granular Cell Astrocytoma 9 71543 -NCIT:C185185 Astrocytoma, Not Otherwise Specified 8 71544 -NCIT:C129277 Diffuse Astrocytoma, Not Otherwise Specified 9 71545 -NCIT:C129292 Anaplastic Astrocytoma, Not Otherwise Specified 9 71546 -NCIT:C188469 Resectable Astrocytoma 8 71547 -NCIT:C40315 Pilomyxoid Astrocytoma 8 71548 -NCIT:C114970 Childhood Pilomyxoid Astrocytoma 9 71549 -NCIT:C115373 Recurrent Childhood Pilomyxoid Astrocytoma 10 71550 -NCIT:C156038 Hypothalamic-Chiasmatic Pilomyxoid Astrocytoma 9 71551 -NCIT:C4323 Pleomorphic Xanthoastrocytoma 8 71552 -NCIT:C114971 Childhood Pleomorphic Xanthoastrocytoma 9 71553 -NCIT:C115375 Recurrent Childhood Pleomorphic Xanthoastrocytoma 10 71554 -NCIT:C156041 Supratentorial Pleomorphic Xanthoastrocytoma 9 71555 -NCIT:C156042 Temporal Lobe Pleomorphic Xanthoastrocytoma 9 71556 -NCIT:C4641 Spinal Cord Astrocytoma 8 71557 -NCIT:C5408 Intradural Extramedullary Cauda Equina Astrocytoma 8 71558 -NCIT:C60780 Brain Astrocytoma 8 71559 -NCIT:C156037 Third Ventricle Pilocytic Astrocytoma 9 71560 -NCIT:C156041 Supratentorial Pleomorphic Xanthoastrocytoma 9 71561 -NCIT:C4951 Cerebral Astrocytoma 9 71562 -NCIT:C4347 Childhood Cerebral Astrocytoma 10 71563 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 11 71564 -NCIT:C8387 Childhood Cerebral Diffuse Astrocytoma 11 71565 -NCIT:C9191 Recurrent Childhood Cerebral Astrocytoma 11 71566 -NCIT:C5123 Hemispheric Anaplastic Astrocytoma 10 71567 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 11 71568 -NCIT:C156035 Frontal Lobe Anaplastic Astrocytoma 11 71569 -NCIT:C156036 Temporal Lobe Anaplastic Astrocytoma 11 71570 -NCIT:C171036 Parietal Lobe Anaplastic Astrocytoma 11 71571 -NCIT:C5128 Diencephalic Astrocytoma 9 71572 -NCIT:C5124 Anaplastic Diencephalic Astrocytoma 10 71573 -NCIT:C5416 Secondary Supratentorial Anaplastic Astrocytoma 9 71574 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 9 71575 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 10 71576 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 10 71577 -NCIT:C7445 Brain Stem Astrocytoma 9 71578 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 10 71579 -NCIT:C6216 Childhood Brain Stem Astrocytoma 10 71580 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 11 71581 -NCIT:C6954 Adult Brain Stem Astrocytoma 10 71582 -NCIT:C7534 Childhood Visual Pathway Astrocytoma 9 71583 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 10 71584 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 11 71585 -NCIT:C8274 Pineal Gland Astrocytoma 9 71586 -NCIT:C115327 Adult Pineal Gland Astrocytoma 10 71587 -NCIT:C9475 Cerebellar Astrocytoma 9 71588 -NCIT:C6286 Childhood Cerebellar Astrocytoma 10 71589 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 11 71590 -NCIT:C8389 Recurrent Childhood Cerebellar Astrocytoma 11 71591 -NCIT:C6809 Cerebellar Pilocytic Astrocytoma 10 71592 -NCIT:C7533 Visual Pathway Astrocytoma 8 71593 -NCIT:C174539 Retinal Astrocytoma 9 71594 -NCIT:C6769 Optic Nerve Astrocytoma 9 71595 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 71596 -NCIT:C7534 Childhood Visual Pathway Astrocytoma 9 71597 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 10 71598 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 11 71599 -NCIT:C92550 Glioneuronal Tumor with Neuropil-Like Islands 8 71600 -NCIT:C9477 Anaplastic Astrocytoma 8 71601 -NCIT:C129290 Astrocytoma, IDH-Mutant, Grade 3 9 71602 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 10 71603 -NCIT:C129291 Anaplastic Astrocytoma, IDH-Wildtype 9 71604 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 10 71605 -NCIT:C129292 Anaplastic Astrocytoma, Not Otherwise Specified 9 71606 -NCIT:C136517 Recurrent Anaplastic Astrocytoma 9 71607 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 10 71608 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 10 71609 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 10 71610 -NCIT:C169075 Refractory Anaplastic Astrocytoma 9 71611 -NCIT:C185879 High Grade Astrocytoma with Piloid Features 9 71612 -NCIT:C5123 Hemispheric Anaplastic Astrocytoma 9 71613 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 10 71614 -NCIT:C156035 Frontal Lobe Anaplastic Astrocytoma 10 71615 -NCIT:C156036 Temporal Lobe Anaplastic Astrocytoma 10 71616 -NCIT:C171036 Parietal Lobe Anaplastic Astrocytoma 10 71617 -NCIT:C5124 Anaplastic Diencephalic Astrocytoma 9 71618 -NCIT:C5416 Secondary Supratentorial Anaplastic Astrocytoma 9 71619 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 9 71620 -NCIT:C6215 Childhood Anaplastic Astrocytoma 9 71621 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 10 71622 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 10 71623 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 11 71624 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 11 71625 -NCIT:C8257 Adult Anaplastic Astrocytoma 9 71626 -NCIT:C7049 Adult Astrocytic Tumor 7 71627 -NCIT:C115327 Adult Pineal Gland Astrocytoma 8 71628 -NCIT:C6954 Adult Brain Stem Astrocytoma 8 71629 -NCIT:C71016 Adult Pilocytic Astrocytoma 8 71630 -NCIT:C71017 Adult Subependymal Giant Cell Astrocytoma 8 71631 -NCIT:C8289 Adult Infiltrating Astrocytic Tumor 8 71632 -NCIT:C7174 Adult Diffuse Astrocytoma 9 71633 -NCIT:C8257 Adult Anaplastic Astrocytoma 9 71634 -NCIT:C9094 Adult Glioblastoma 9 71635 -NCIT:C27183 Adult Spinal Cord Glioblastoma 10 71636 -NCIT:C68701 Adult Gliosarcoma 10 71637 -NCIT:C9370 Adult Brain Stem Gliosarcoma 11 71638 -NCIT:C68702 Adult Giant Cell Glioblastoma 10 71639 -NCIT:C9375 Adult Brain Glioblastoma 10 71640 -NCIT:C9370 Adult Brain Stem Gliosarcoma 11 71641 -NCIT:C9022 Childhood Astrocytic Tumor 7 71642 -NCIT:C114956 Recurrent Childhood Astrocytic Tumor 8 71643 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 9 71644 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 9 71645 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 10 71646 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 10 71647 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 10 71648 -NCIT:C115364 Recurrent Childhood Glioblastoma 9 71649 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 10 71650 -NCIT:C115365 Recurrent Childhood Gliosarcoma 10 71651 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 9 71652 -NCIT:C115373 Recurrent Childhood Pilomyxoid Astrocytoma 9 71653 -NCIT:C115375 Recurrent Childhood Pleomorphic Xanthoastrocytoma 9 71654 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 9 71655 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 9 71656 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 9 71657 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 71658 -NCIT:C8389 Recurrent Childhood Cerebellar Astrocytoma 9 71659 -NCIT:C9191 Recurrent Childhood Cerebral Astrocytoma 9 71660 -NCIT:C124275 Childhood Astrocytoma 8 71661 -NCIT:C114785 Childhood Subependymal Giant Cell Astrocytoma 9 71662 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 10 71663 -NCIT:C114967 Childhood Diffuse Astrocytoma 9 71664 -NCIT:C114963 Childhood Fibrillary Astrocytoma 10 71665 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 11 71666 -NCIT:C114964 Childhood Gemistocytic Astrocytoma 10 71667 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 11 71668 -NCIT:C114972 Childhood Protoplasmic Astrocytoma 10 71669 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 11 71670 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 10 71671 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 11 71672 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 11 71673 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 11 71674 -NCIT:C188920 Childhood Diffuse Astrocytoma, MYBL1-Altered 10 71675 -NCIT:C188921 Childhood Diffuse Astrocytoma, MYB-Altered 10 71676 -NCIT:C8387 Childhood Cerebral Diffuse Astrocytoma 10 71677 -NCIT:C114970 Childhood Pilomyxoid Astrocytoma 9 71678 -NCIT:C115373 Recurrent Childhood Pilomyxoid Astrocytoma 10 71679 -NCIT:C114971 Childhood Pleomorphic Xanthoastrocytoma 9 71680 -NCIT:C115375 Recurrent Childhood Pleomorphic Xanthoastrocytoma 10 71681 -NCIT:C4048 Childhood Pilocytic Astrocytoma 9 71682 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 10 71683 -NCIT:C27081 Juvenile Pilocytic Astrocytoma 10 71684 -NCIT:C4347 Childhood Cerebral Astrocytoma 9 71685 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 10 71686 -NCIT:C8387 Childhood Cerebral Diffuse Astrocytoma 10 71687 -NCIT:C9191 Recurrent Childhood Cerebral Astrocytoma 10 71688 -NCIT:C6215 Childhood Anaplastic Astrocytoma 9 71689 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 10 71690 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 10 71691 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 11 71692 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 11 71693 -NCIT:C6216 Childhood Brain Stem Astrocytoma 9 71694 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 10 71695 -NCIT:C6286 Childhood Cerebellar Astrocytoma 9 71696 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 10 71697 -NCIT:C8389 Recurrent Childhood Cerebellar Astrocytoma 10 71698 -NCIT:C7534 Childhood Visual Pathway Astrocytoma 9 71699 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 10 71700 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 11 71701 -NCIT:C5136 Childhood Glioblastoma 8 71702 -NCIT:C114966 Childhood Giant Cell Glioblastoma 9 71703 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 10 71704 -NCIT:C114968 Childhood Gliosarcoma 9 71705 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 71706 -NCIT:C115365 Recurrent Childhood Gliosarcoma 10 71707 -NCIT:C115364 Recurrent Childhood Glioblastoma 9 71708 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 10 71709 -NCIT:C115365 Recurrent Childhood Gliosarcoma 10 71710 -NCIT:C147901 Childhood Brain Glioblastoma 9 71711 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 71712 -NCIT:C6960 Oligodendroglial Tumor 6 71713 -NCIT:C3288 Oligodendroglioma 7 71714 -NCIT:C129318 Oligodendroglioma, IDH-Mutant and 1p/19q-Codeleted 8 71715 -NCIT:C188126 Recurrent Oligodendroglioma, IDH-Mutant and 1p/19q-Codeleted 9 71716 -NCIT:C129319 Oligodendroglioma, Not Otherwise Specified 8 71717 -NCIT:C160737 Recurrent Oligodendroglioma 8 71718 -NCIT:C115371 Recurrent Childhood Oligodendroglioma 9 71719 -NCIT:C188126 Recurrent Oligodendroglioma, IDH-Mutant and 1p/19q-Codeleted 9 71720 -NCIT:C188470 Resectable Oligodendroglioma 8 71721 -NCIT:C4014 Adult Oligodendroglioma 8 71722 -NCIT:C9376 Adult Brain Oligodendroglioma 9 71723 -NCIT:C4045 Childhood Oligodendroglioma 8 71724 -NCIT:C114773 Childhood Brain Oligodendroglioma 9 71725 -NCIT:C115371 Recurrent Childhood Oligodendroglioma 9 71726 -NCIT:C4535 Spinal Cord Oligodendroglioma 8 71727 -NCIT:C9377 Brain Oligodendroglioma 8 71728 -NCIT:C114773 Childhood Brain Oligodendroglioma 9 71729 -NCIT:C9376 Adult Brain Oligodendroglioma 9 71730 -NCIT:C4326 Anaplastic Oligodendroglioma 7 71731 -NCIT:C129321 Anaplastic Oligodendroglioma, IDH-Mutant and 1p/19q-Codeleted 8 71732 -NCIT:C129322 Anaplastic Oligodendroglioma, Not Otherwise Specified 8 71733 -NCIT:C142862 Recurrent Anaplastic Oligodendroglioma 8 71734 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 9 71735 -NCIT:C156120 Frontal Lobe Anaplastic Oligodendroglioma 8 71736 -NCIT:C169074 Refractory Anaplastic Oligodendroglioma 8 71737 -NCIT:C5447 Childhood Anaplastic Oligodendroglioma 8 71738 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 9 71739 -NCIT:C8270 Adult Anaplastic Oligodendroglioma 8 71740 -NCIT:C68691 Adult Oligodendroglial Tumor 7 71741 -NCIT:C4014 Adult Oligodendroglioma 8 71742 -NCIT:C9376 Adult Brain Oligodendroglioma 9 71743 -NCIT:C8270 Adult Anaplastic Oligodendroglioma 8 71744 -NCIT:C8501 Brain Stem Glioma 6 71745 -NCIT:C5097 Brain Stem Glioblastoma 7 71746 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 8 71747 -NCIT:C9370 Adult Brain Stem Gliosarcoma 8 71748 -NCIT:C5098 Brain Stem Ependymoma 7 71749 -NCIT:C7445 Brain Stem Astrocytoma 7 71750 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 8 71751 -NCIT:C6216 Childhood Brain Stem Astrocytoma 8 71752 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 9 71753 -NCIT:C6954 Adult Brain Stem Astrocytoma 8 71754 -NCIT:C7446 Anaplastic Brain Stem Glioma 7 71755 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 8 71756 -NCIT:C9042 Childhood Brain Stem Glioma 7 71757 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 8 71758 -NCIT:C114760 Childhood Brain Stem Mixed Glioma 8 71759 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 8 71760 -NCIT:C6216 Childhood Brain Stem Astrocytoma 8 71761 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 9 71762 -NCIT:C9190 Recurrent Childhood Brain Stem Glioma 8 71763 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 9 71764 -NCIT:C9091 Adult Brain Stem Glioma 7 71765 -NCIT:C188925 Adult Diffuse Intrinsic Pontine Glioma 8 71766 -NCIT:C6954 Adult Brain Stem Astrocytoma 8 71767 -NCIT:C9370 Adult Brain Stem Gliosarcoma 8 71768 -NCIT:C9371 Adult Brain Stem Mixed Glioma 8 71769 -NCIT:C94764 Diffuse Intrinsic Pontine Glioma 7 71770 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 8 71771 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 8 71772 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 8 71773 -NCIT:C188925 Adult Diffuse Intrinsic Pontine Glioma 8 71774 -NCIT:C8567 Visual Pathway Glioma 6 71775 -NCIT:C155983 Recurrent Visual Pathway Glioma 7 71776 -NCIT:C7529 Recurrent Childhood Visual Pathway Glioma 8 71777 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 9 71778 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 71779 -NCIT:C7531 Recurrent Childhood Optic Nerve Glioma 9 71780 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 71781 -NCIT:C155984 Refractory Visual Pathway Glioma 7 71782 -NCIT:C4537 Optic Nerve Glioma 7 71783 -NCIT:C6769 Optic Nerve Astrocytoma 8 71784 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 9 71785 -NCIT:C7531 Recurrent Childhood Optic Nerve Glioma 8 71786 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 9 71787 -NCIT:C7533 Visual Pathway Astrocytoma 7 71788 -NCIT:C174539 Retinal Astrocytoma 8 71789 -NCIT:C6769 Optic Nerve Astrocytoma 8 71790 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 9 71791 -NCIT:C7534 Childhood Visual Pathway Astrocytoma 8 71792 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 9 71793 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 71794 -NCIT:C7535 Childhood Visual Pathway Glioma 7 71795 -NCIT:C7529 Recurrent Childhood Visual Pathway Glioma 8 71796 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 9 71797 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 71798 -NCIT:C7531 Recurrent Childhood Optic Nerve Glioma 9 71799 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 71800 -NCIT:C7534 Childhood Visual Pathway Astrocytoma 8 71801 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 9 71802 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 71803 -NCIT:C3716 Primitive Neuroectodermal Tumor 5 71804 -NCIT:C173565 Refractory Primitive Neuroectodermal Tumor 6 71805 -NCIT:C134153 Refractory Neuroblastoma 7 71806 -NCIT:C142850 Refractory Peripheral Primitive Neuroectodermal Tumor 7 71807 -NCIT:C173530 Refractory Ganglioneuroblastoma 7 71808 -NCIT:C27294 Localized Primitive Neuroectodermal Tumor 6 71809 -NCIT:C27903 Localized Peripheral Primitive Neuroectodermal Tumor 7 71810 -NCIT:C27353 Localized Peripheral Primitive Neuroectodermal Tumor of Bone 8 71811 -NCIT:C27902 Localized Askin Tumor 8 71812 -NCIT:C7835 Localized Resectable Neuroblastoma 7 71813 -NCIT:C8277 Localized Unresectable Neuroblastoma 7 71814 -NCIT:C27295 Recurrent Primitive Neuroectodermal Tumor 6 71815 -NCIT:C173531 Recurrent Ganglioneuroblastoma 7 71816 -NCIT:C27899 Recurrent Peripheral Primitive Neuroectodermal Tumor 7 71817 -NCIT:C27354 Recurrent Peripheral Primitive Neuroectodermal Tumor of Bone 8 71818 -NCIT:C27900 Recurrent Askin Tumor 8 71819 -NCIT:C7837 Recurrent Neuroblastoma 7 71820 -NCIT:C115384 Recurrent Olfactory Neuroblastoma 8 71821 -NCIT:C6963 Neuroblastic Tumor 6 71822 -NCIT:C3270 Neuroblastoma 7 71823 -NCIT:C115225 Hereditary Neuroblastoma 8 71824 -NCIT:C124270 Childhood Neuroblastoma 8 71825 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 9 71826 -NCIT:C134153 Refractory Neuroblastoma 8 71827 -NCIT:C150281 High Risk Neuroblastoma 8 71828 -NCIT:C150620 Resectable Neuroblastoma 8 71829 -NCIT:C7835 Localized Resectable Neuroblastoma 9 71830 -NCIT:C150622 Unresectable Neuroblastoma 8 71831 -NCIT:C8277 Localized Unresectable Neuroblastoma 9 71832 -NCIT:C155772 Sellar Neuroblastoma 8 71833 -NCIT:C156101 Metastatic Neuroblastoma 8 71834 -NCIT:C42046 Undifferentiated Neuroblastoma 8 71835 -NCIT:C42047 Poorly Differentiated Neuroblastoma 8 71836 -NCIT:C42048 Differentiating Neuroblastoma 8 71837 -NCIT:C4826 Central Nervous System Neuroblastoma 8 71838 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 9 71839 -NCIT:C186547 Central Nervous System Neuroblastoma, FOXR2-Activated 9 71840 -NCIT:C5437 Extracranial Neuroblastoma 8 71841 -NCIT:C3789 Olfactory Neuroblastoma 9 71842 -NCIT:C115384 Recurrent Olfactory Neuroblastoma 10 71843 -NCIT:C173174 Sinonasal Olfactory Neuroblastoma 10 71844 -NCIT:C6016 Paranasal Sinus Olfactory Neuroblastoma 11 71845 -NCIT:C5435 Kadish Stage C Olfactory Neuroblastoma 10 71846 -NCIT:C6853 Kadish Stage A Olfactory Neuroblastoma 10 71847 -NCIT:C6854 Kadish Stage B Olfactory Neuroblastoma 10 71848 -NCIT:C7604 Nasal Cavity Olfactory Neuroblastoma 10 71849 -NCIT:C5155 Spinal Cord Neuroblastoma 9 71850 -NCIT:C6591 Peripheral Neuroblastoma 9 71851 -NCIT:C6628 Mediastinal Neuroblastoma 10 71852 -NCIT:C6964 Neuroblastoma of the Adrenal Gland and Sympathetic Nervous System 10 71853 -NCIT:C4827 Adrenal Gland Neuroblastoma 11 71854 -NCIT:C6638 Stage 1 Neuroblastoma 8 71855 -NCIT:C6639 Stage 2 Neuroblastoma 8 71856 -NCIT:C102845 Stage 2A Neuroblastoma 9 71857 -NCIT:C102846 Stage 2B Neuroblastoma 9 71858 -NCIT:C6640 Stage 3 Neuroblastoma 8 71859 -NCIT:C6641 Stage 4 Neuroblastoma 8 71860 -NCIT:C9504 Stage 4S Neuroblastoma 9 71861 -NCIT:C6956 Retinal Neuroblastoma 8 71862 -NCIT:C7836 Regional Neuroblastoma 8 71863 -NCIT:C7837 Recurrent Neuroblastoma 8 71864 -NCIT:C115384 Recurrent Olfactory Neuroblastoma 9 71865 -NCIT:C3790 Ganglioneuroblastoma 7 71866 -NCIT:C124271 Childhood Ganglioneuroblastoma 8 71867 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 9 71868 -NCIT:C124273 Childhood Ganglioneuroblastoma, Intermixed 9 71869 -NCIT:C124274 Childhood Ganglioneuroblastoma, Nodular 9 71870 -NCIT:C173530 Refractory Ganglioneuroblastoma 8 71871 -NCIT:C173531 Recurrent Ganglioneuroblastoma 8 71872 -NCIT:C42057 Ganglioneuroblastoma, Intermixed 8 71873 -NCIT:C124273 Childhood Ganglioneuroblastoma, Intermixed 9 71874 -NCIT:C157243 Adrenal Gland Ganglioneuroblastoma, Intermixed 9 71875 -NCIT:C42058 Ganglioneuroblastoma, Nodular 8 71876 -NCIT:C124274 Childhood Ganglioneuroblastoma, Nodular 9 71877 -NCIT:C157244 Adrenal Gland Ganglioneuroblastoma, Nodular 9 71878 -NCIT:C42059 Composite Ganglioneuroblastoma, Schwannian Stroma-Rich and Stroma-Poor 9 71879 -NCIT:C42060 Composite Ganglioneuroblastoma, Stroma-Dominant and Stroma-Poor 9 71880 -NCIT:C6594 Peripheral Ganglioneuroblastoma 8 71881 -NCIT:C6627 Mediastinal Ganglioneuroblastoma 9 71882 -NCIT:C7646 Adrenal Gland Ganglioneuroblastoma 9 71883 -NCIT:C157243 Adrenal Gland Ganglioneuroblastoma, Intermixed 10 71884 -NCIT:C157244 Adrenal Gland Ganglioneuroblastoma, Nodular 10 71885 -NCIT:C92629 Central Nervous System Ganglioneuroblastoma 8 71886 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 9 71887 -NCIT:C9341 Peripheral Primitive Neuroectodermal Tumor 6 71888 -NCIT:C142850 Refractory Peripheral Primitive Neuroectodermal Tumor 7 71889 -NCIT:C27471 Peripheral Primitive Neuroectodermal Tumor of Soft Tissues 7 71890 -NCIT:C27899 Recurrent Peripheral Primitive Neuroectodermal Tumor 7 71891 -NCIT:C27354 Recurrent Peripheral Primitive Neuroectodermal Tumor of Bone 8 71892 -NCIT:C27900 Recurrent Askin Tumor 8 71893 -NCIT:C27903 Localized Peripheral Primitive Neuroectodermal Tumor 7 71894 -NCIT:C27353 Localized Peripheral Primitive Neuroectodermal Tumor of Bone 8 71895 -NCIT:C27902 Localized Askin Tumor 8 71896 -NCIT:C67214 Peripheral Primitive Neuroectodermal Tumor of the Kidney 7 71897 -NCIT:C7542 Askin Tumor 7 71898 -NCIT:C27900 Recurrent Askin Tumor 8 71899 -NCIT:C27902 Localized Askin Tumor 8 71900 -NCIT:C8776 Peripheral Primitive Neuroectodermal Tumor of Bone 7 71901 -NCIT:C27353 Localized Peripheral Primitive Neuroectodermal Tumor of Bone 8 71902 -NCIT:C27354 Recurrent Peripheral Primitive Neuroectodermal Tumor of Bone 8 71903 -NCIT:C36074 Metastatic Peripheral Primitive Neuroectodermal Tumor of Bone 8 71904 -NCIT:C4747 Glioneuronal and Neuronal Tumors 5 71905 -NCIT:C129424 Diffuse Leptomeningeal Glioneuronal Tumor 6 71906 -NCIT:C129427 Multinodular and Vacuolated Neuronal Tumor 6 71907 -NCIT:C180398 Recurrent Multinodular and Vacuolated Neuronal Tumor 7 71908 -NCIT:C188933 Childhood Multinodular and Vacuolated Neuronal Tumor 7 71909 -NCIT:C188934 Adult Multinodular and Vacuolated Neuronal Tumor 7 71910 -NCIT:C129431 Rosette-Forming Glioneuronal Tumor 6 71911 -NCIT:C67559 Rosette-Forming Glioneuronal Tumor of the Fourth Ventricle 7 71912 -NCIT:C179229 Myxoid Glioneuronal Tumor 6 71913 -NCIT:C179230 Myxoid Glioneuronal Tumor of the Septum Pellucidum 7 71914 -NCIT:C180397 Recurrent Myxoid Glioneuronal Tumor 7 71915 -NCIT:C180378 Polymorphous Low Grade Neuroepithelial Tumor of the Young 6 71916 -NCIT:C180400 Recurrent Polymorphous Low Grade Neuroepithelial Tumor of the Young 7 71917 -NCIT:C180532 Dysembryoplastic Neuroepithelial-Like Tumor of the Septum Pellucidum 6 71918 -NCIT:C185935 Diffuse Glioneuronal Tumor with Oligodendroglioma-Like Features and Nuclear Clusters 6 71919 -NCIT:C3788 Ganglioglioma 6 71920 -NCIT:C27362 Childhood Ganglioglioma 7 71921 -NCIT:C27363 Adult Ganglioglioma 7 71922 -NCIT:C3791 Central Neurocytoma 6 71923 -NCIT:C4717 Anaplastic Ganglioglioma 6 71924 -NCIT:C160914 Recurrent Anaplastic Ganglioglioma 7 71925 -NCIT:C160915 Refractory Anaplastic Ganglioglioma 7 71926 -NCIT:C4738 Desmoplastic Infantile Ganglioglioma 6 71927 -NCIT:C6934 Gangliocytoma 6 71928 -NCIT:C180338 Recurrent Gangliocytoma 7 71929 -NCIT:C45917 Sellar Gangliocytoma 7 71930 -NCIT:C45918 Hypothalamic Gangliocytoma 7 71931 -NCIT:C7372 Cerebellar Glioneuronal and Neuronal Tumors 6 71932 -NCIT:C6905 Cerebellar Liponeurocytoma 7 71933 -NCIT:C8419 Dysplastic Cerebellar Gangliocytoma 7 71934 -NCIT:C92554 Papillary Glioneuronal Tumor 6 71935 -NCIT:C92555 Extraventricular Neurocytoma 6 71936 -NCIT:C9476 Desmoplastic Infantile Astrocytoma 6 71937 -NCIT:C9505 Dysembryoplastic Neuroepithelial Tumor 6 71938 -NCIT:C188931 Childhood Dysembryoplastic Neuroepithelial Tumor 7 71939 -NCIT:C188932 Adult Dysembryoplastic Neuroepithelial Tumor 7 71940 -NCIT:C6965 Pineal Parenchymal Cell Neoplasm 5 71941 -NCIT:C115196 Childhood Pineal Parenchymal Cell Neoplasm 6 71942 -NCIT:C114812 Childhood Pineoblastoma 7 71943 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 71944 -NCIT:C124137 Childhood Pineal Parenchymal Tumor of Intermediate Differentiation 7 71945 -NCIT:C179227 Recurrent Pineal Parenchymal Cell Neoplasm 6 71946 -NCIT:C115374 Recurrent Childhood Pineoblastoma 7 71947 -NCIT:C6966 Pineocytoma 6 71948 -NCIT:C8291 Adult Pineocytoma 7 71949 -NCIT:C6967 Pineal Parenchymal Tumor of Intermediate Differentiation 6 71950 -NCIT:C124137 Childhood Pineal Parenchymal Tumor of Intermediate Differentiation 7 71951 -NCIT:C8273 Adult Pineal Parenchymal Cell Neoplasm 6 71952 -NCIT:C8291 Adult Pineocytoma 7 71953 -NCIT:C8292 Adult Pineoblastoma 7 71954 -NCIT:C9344 Pineoblastoma 6 71955 -NCIT:C114812 Childhood Pineoblastoma 7 71956 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 71957 -NCIT:C8292 Adult Pineoblastoma 7 71958 -NCIT:C7061 Retinal Cell Neoplasm 5 71959 -NCIT:C66812 Retinocytoma 6 71960 -NCIT:C7541 Retinoblastoma 6 71961 -NCIT:C140750 Retinoblastoma by AJCC v8 Stage 7 71962 -NCIT:C140751 Retinoblastoma by AJCC v8 Clinical Stage 8 71963 -NCIT:C140752 Clinical Stage I Retinoblastoma AJCC v8 9 71964 -NCIT:C140753 Clinical Stage II Retinoblastoma AJCC v8 9 71965 -NCIT:C140754 Clinical Stage III Retinoblastoma AJCC v8 9 71966 -NCIT:C140755 Clinical Stage IV Retinoblastoma AJCC v8 9 71967 -NCIT:C140756 Retinoblastoma by AJCC v8 Pathologic Stage 8 71968 -NCIT:C140757 Pathologic Stage I Retinoblastoma AJCC v8 9 71969 -NCIT:C140758 Pathologic Stage II Retinoblastoma AJCC v8 9 71970 -NCIT:C140759 Pathologic Stage III Retinoblastoma AJCC v8 9 71971 -NCIT:C140760 Pathologic Stage IV Retinoblastoma AJCC v8 9 71972 -NCIT:C42596 Sporadic Retinoblastoma 7 71973 -NCIT:C66813 Differentiated Retinoblastoma 7 71974 -NCIT:C66814 Undifferentiated Retinoblastoma 7 71975 -NCIT:C66815 Diffuse Retinoblastoma 7 71976 -NCIT:C7019 Trilateral Retinoblastoma 7 71977 -NCIT:C7846 Intraocular Retinoblastoma 7 71978 -NCIT:C9047 Childhood Intraocular Retinoblastoma 8 71979 -NCIT:C7848 Extraocular Retinoblastoma 7 71980 -NCIT:C9048 Childhood Extraocular Retinoblastoma 8 71981 -NCIT:C7849 Recurrent Retinoblastoma 7 71982 -NCIT:C8495 Hereditary Retinoblastoma 7 71983 -NCIT:C8713 Bilateral Retinoblastoma 7 71984 -NCIT:C8714 Unilateral Retinoblastoma 7 71985 -NCIT:C92624 Papillary Tumor of the Pineal Region 5 71986 -NCIT:C4972 Nerve Sheath Neoplasm 4 71987 -NCIT:C121681 Solitary Circumscribed Neuroma 5 71988 -NCIT:C121686 Hybrid Nerve Sheath Tumor 5 71989 -NCIT:C178255 Atypical Neurofibromatous Neoplasm of Uncertain Biologic Potential 5 71990 -NCIT:C3269 Schwannoma 5 71991 -NCIT:C121677 Conventional Schwannoma 6 71992 -NCIT:C155780 Sellar Schwannoma 6 71993 -NCIT:C173143 Sinonasal Schwannoma 6 71994 -NCIT:C178245 Epithelioid Schwannoma 6 71995 -NCIT:C182029 Recurrent Schwannoma 6 71996 -NCIT:C188213 Schwannoma of the Seventh Cranial Nerve 6 71997 -NCIT:C188992 Childhood Schwannoma 6 71998 -NCIT:C3276 Vestibular Schwannoma 6 71999 -NCIT:C41430 Peripheral Nerve Schwannoma 6 72000 -NCIT:C156340 Thyroid Gland Schwannoma 7 72001 -NCIT:C156944 Adrenal Gland Schwannoma 7 72002 -NCIT:C159221 Kidney Schwannoma 7 72003 -NCIT:C162502 Paratesticular Schwannoma 7 72004 -NCIT:C161639 Seminal Vesicle Schwannoma 8 72005 -NCIT:C162586 Penile Schwannoma 7 72006 -NCIT:C176414 Breast Schwannoma 7 72007 -NCIT:C27476 Bone Schwannoma 7 72008 -NCIT:C5323 Jugular Foramen Schwannoma 7 72009 -NCIT:C5358 Cardiac Schwannoma 7 72010 -NCIT:C5418 Pleural Schwannoma 7 72011 -NCIT:C5421 Sympathetic Schwannoma 7 72012 -NCIT:C5569 Cutaneous Schwannoma 7 72013 -NCIT:C5703 Esophageal Schwannoma 7 72014 -NCIT:C6162 Ureter Schwannoma 7 72015 -NCIT:C6643 Mediastinal Schwannoma 7 72016 -NCIT:C6636 Mediastinal Psammomatous Schwannoma 8 72017 -NCIT:C6718 Sternal Intraosseous Schwannoma 7 72018 -NCIT:C92182 Intraocular Schwannoma 7 72019 -NCIT:C95901 Gastric Schwannoma 7 72020 -NCIT:C96512 Colorectal Schwannoma 7 72021 -NCIT:C4655 Trigeminal Schwannoma 6 72022 -NCIT:C4724 Cellular Schwannoma 6 72023 -NCIT:C5321 Microcystic/Reticular Schwannoma 6 72024 -NCIT:C5413 Cerebellopontine Angle Schwannoma 6 72025 -NCIT:C5434 Schwannoma of the Twelfth Cranial Nerve 6 72026 -NCIT:C6556 Ancient Schwannoma 6 72027 -NCIT:C6557 Schwannomatosis 6 72028 -NCIT:C186703 SMARCB1 Schwannomatosis 1 7 72029 -NCIT:C186704 LZTR1 Schwannomatosis 2 7 72030 -NCIT:C6969 Plexiform Schwannoma 6 72031 -NCIT:C3272 Neurofibroma 5 72032 -NCIT:C128451 Cutaneous Neurofibroma 6 72033 -NCIT:C159682 Bladder Neurofibroma 6 72034 -NCIT:C162587 Penile Neurofibroma 6 72035 -NCIT:C173144 Sinonasal Neurofibroma 6 72036 -NCIT:C176415 Breast Neurofibroma 6 72037 -NCIT:C188995 Childhood Neurofibroma 6 72038 -NCIT:C3797 Plexiform Neurofibroma 6 72039 -NCIT:C179423 Unresectable Plexiform Neurofibroma 7 72040 -NCIT:C41426 Neurofibroma with Atypia 6 72041 -NCIT:C41427 Cellular Neurofibroma 6 72042 -NCIT:C4328 Pacinian Neurofibroma 6 72043 -NCIT:C5145 Spinal Cord Neurofibroma 6 72044 -NCIT:C5359 Cardiac Neurofibroma 6 72045 -NCIT:C5704 Esophageal Neurofibroma 6 72046 -NCIT:C5746 Gallbladder Neurofibroma 6 72047 -NCIT:C6558 Epithelioid Neurofibroma 6 72048 -NCIT:C6631 Mediastinal Neurofibroma 6 72049 -NCIT:C66841 Melanotic Neurofibroma 6 72050 -NCIT:C8426 Diffuse Neurofibroma 6 72051 -NCIT:C3474 Granular Cell Tumor 5 72052 -NCIT:C159681 Bladder Granular Cell Tumor 6 72053 -NCIT:C161582 Prostate Granular Cell Tumor 6 72054 -NCIT:C173405 Laryngeal Granular Cell Tumor 6 72055 -NCIT:C188998 Childhood Granular Cell Tumor 6 72056 -NCIT:C3252 Benign Granular Cell Tumor 6 72057 -NCIT:C5483 Benign Gastric Granular Cell Tumor 7 72058 -NCIT:C5502 Benign Peripheral Nerve Granular Cell Tumor 7 72059 -NCIT:C5607 Benign Anal Granular Cell Tumor 7 72060 -NCIT:C5852 Extrahepatic Bile Duct Benign Granular Cell Tumor 7 72061 -NCIT:C7131 Gallbladder Benign Granular Cell Tumor 7 72062 -NCIT:C7605 Oral Cavity Benign Granular Cell Tumor 7 72063 -NCIT:C6210 Soft Palate Benign Granular Cell Tumor 8 72064 -NCIT:C96516 Colorectal Benign Granular Cell Tumor 7 72065 -NCIT:C40328 Vulvar Granular Cell Tumor 6 72066 -NCIT:C40400 Breast Granular Cell Tumor 6 72067 -NCIT:C4336 Malignant Granular Cell Tumor 6 72068 -NCIT:C5484 Malignant Gastric Granular Cell Tumor 7 72069 -NCIT:C5614 Malignant Cutaneous Granular Cell Tumor 7 72070 -NCIT:C5360 Cardiac Granular Cell Tumor 6 72071 -NCIT:C54094 Gastric Granular Cell Tumor 6 72072 -NCIT:C5483 Benign Gastric Granular Cell Tumor 7 72073 -NCIT:C5484 Malignant Gastric Granular Cell Tumor 7 72074 -NCIT:C5617 Cutaneous Granular Cell Tumor 6 72075 -NCIT:C5614 Malignant Cutaneous Granular Cell Tumor 7 72076 -NCIT:C5700 Esophageal Granular Cell Tumor 6 72077 -NCIT:C5912 Oral Cavity Granular Cell Tumor 6 72078 -NCIT:C7605 Oral Cavity Benign Granular Cell Tumor 7 72079 -NCIT:C6210 Soft Palate Benign Granular Cell Tumor 8 72080 -NCIT:C6601 Mediastinal Granular Cell Tumor 6 72081 -NCIT:C7017 Granular Cell Tumor of the Sellar Region 6 72082 -NCIT:C3798 Malignant Peripheral Nerve Sheath Tumor 5 72083 -NCIT:C128050 Cervical Malignant Peripheral Nerve Sheath Tumor 6 72084 -NCIT:C155987 Refractory Malignant Peripheral Nerve Sheath Tumor 6 72085 -NCIT:C162725 Refractory Epithelioid Malignant Peripheral Nerve Sheath Tumor 7 72086 -NCIT:C156341 Thyroid Gland Malignant Peripheral Nerve Sheath Tumor 6 72087 -NCIT:C162584 Penile Malignant Peripheral Nerve Sheath Tumor 6 72088 -NCIT:C164312 Unresectable Malignant Peripheral Nerve Sheath Tumor 6 72089 -NCIT:C164313 NF1-Associated Malignant Peripheral Nerve Sheath Tumor 6 72090 -NCIT:C164314 Sporadic Malignant Peripheral Nerve Sheath Tumor 6 72091 -NCIT:C164316 Radiation-Induced Malignant Peripheral Nerve Sheath Tumor 6 72092 -NCIT:C172624 Malignant Peripheral Nerve Sheath Tumor of the Skin 6 72093 -NCIT:C172625 Epithelioid Malignant Peripheral Nerve Sheath Tumor of the Skin 7 72094 -NCIT:C173127 Sinonasal Malignant Peripheral Nerve Sheath Tumor 6 72095 -NCIT:C188064 Bone Malignant Peripheral Nerve Sheath Tumor 6 72096 -NCIT:C188073 Retroperitoneal Malignant Peripheral Nerve Sheath Tumor 6 72097 -NCIT:C4748 Malignant Melanotic Peripheral Nerve Sheath Tumor 6 72098 -NCIT:C6630 Malignant Melanotic Peripheral Nerve Sheath Tumor of the Mediastinum 7 72099 -NCIT:C6910 Malignant Melanotic Psammomatous Peripheral Nerve Sheath Tumor 7 72100 -NCIT:C5367 Cardiac Malignant Peripheral Nerve Sheath Tumor 6 72101 -NCIT:C6560 Glandular Malignant Peripheral Nerve Sheath Tumor 6 72102 -NCIT:C6561 Epithelioid Malignant Peripheral Nerve Sheath Tumor 6 72103 -NCIT:C162724 Recurrent Epithelioid Malignant Peripheral Nerve Sheath Tumor 7 72104 -NCIT:C162725 Refractory Epithelioid Malignant Peripheral Nerve Sheath Tumor 7 72105 -NCIT:C172625 Epithelioid Malignant Peripheral Nerve Sheath Tumor of the Skin 7 72106 -NCIT:C6626 Mediastinal Malignant Peripheral Nerve Sheath Tumor 6 72107 -NCIT:C6630 Malignant Melanotic Peripheral Nerve Sheath Tumor of the Mediastinum 7 72108 -NCIT:C66845 Malignant Peripheral Nerve Sheath Tumor with Perineurial Differentiation 6 72109 -NCIT:C7814 Adult Malignant Peripheral Nerve Sheath Tumor 6 72110 -NCIT:C8094 Childhood Malignant Peripheral Nerve Sheath Tumor 6 72111 -NCIT:C8822 Metastatic Malignant Peripheral Nerve Sheath Tumor 6 72112 -NCIT:C164074 Locally Advanced Malignant Peripheral Nerve Sheath Tumor 7 72113 -NCIT:C168714 Advanced Malignant Peripheral Nerve Sheath Tumor 7 72114 -NCIT:C8823 Recurrent Malignant Peripheral Nerve Sheath Tumor 6 72115 -NCIT:C162724 Recurrent Epithelioid Malignant Peripheral Nerve Sheath Tumor 7 72116 -NCIT:C9026 Low Grade Malignant Peripheral Nerve Sheath Tumor 6 72117 -NCIT:C9030 High Grade Malignant Peripheral Nerve Sheath Tumor 6 72118 -NCIT:C92185 Esophageal Malignant Peripheral Nerve Sheath Tumor 6 72119 -NCIT:C92186 Intraocular Malignant Peripheral Nerve Sheath Tumor 6 72120 -NCIT:C92647 Malignant Peripheral Nerve Sheath Tumor with Mesenchymal Differentiation 6 72121 -NCIT:C4335 Malignant Triton Tumor 7 72122 -NCIT:C4973 Perineurioma 5 72123 -NCIT:C172621 Cutaneous Perineurioma 6 72124 -NCIT:C188997 Childhood Perineurioma 6 72125 -NCIT:C6911 Intraneural Perineurioma 6 72126 -NCIT:C6912 Soft Tissue Perineurioma 6 72127 -NCIT:C96513 Colorectal Perineurioma 7 72128 -NCIT:C6970 Melanotic Schwannoma 5 72129 -NCIT:C6635 Mediastinal Melanotic Schwannoma 6 72130 -NCIT:C7018 Nerve Sheath Myxoma 5 72131 -NCIT:C121680 Dermal Nerve Sheath Myxoma 6 72132 -NCIT:C156278 Cellular Nerve Sheath Myxoma 6 72133 -NCIT:C4788 Malignant Nervous System Neoplasm 3 72134 -NCIT:C190623 Childhood Malignant Nervous System Neoplasm 4 72135 -NCIT:C124270 Childhood Neuroblastoma 5 72136 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 6 72137 -NCIT:C124271 Childhood Ganglioneuroblastoma 5 72138 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 6 72139 -NCIT:C124273 Childhood Ganglioneuroblastoma, Intermixed 6 72140 -NCIT:C124274 Childhood Ganglioneuroblastoma, Nodular 6 72141 -NCIT:C5448 Childhood Malignant Central Nervous System Neoplasm 5 72142 -NCIT:C114833 Childhood Central Nervous System Embryonal Tumor 6 72143 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 7 72144 -NCIT:C114812 Childhood Pineoblastoma 7 72145 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 72146 -NCIT:C114836 Recurrent Childhood Central Nervous System Embryonal Neoplasm 7 72147 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 72148 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 72149 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 72150 -NCIT:C115203 Childhood Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 7 72151 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 72152 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 9 72153 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 72154 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 7 72155 -NCIT:C3997 Childhood Medulloblastoma 7 72156 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 72157 -NCIT:C5961 Childhood Central Nervous System Embryonal Tumor, Not Otherwise Specified 7 72158 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 72159 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 9 72160 -NCIT:C68634 Childhood Atypical Teratoid/Rhabdoid Tumor 7 72161 -NCIT:C114973 Childhood Anaplastic Oligoastrocytoma 6 72162 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 7 72163 -NCIT:C124293 Childhood Anaplastic Ependymoma 6 72164 -NCIT:C187207 Childhood Malignant Brain Neoplasm 6 72165 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 7 72166 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 72167 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 7 72168 -NCIT:C114812 Childhood Pineoblastoma 7 72169 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 72170 -NCIT:C114969 Childhood Gliomatosis Cerebri 7 72171 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 8 72172 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 7 72173 -NCIT:C124292 Childhood Choroid Plexus Carcinoma 7 72174 -NCIT:C147901 Childhood Brain Glioblastoma 7 72175 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 8 72176 -NCIT:C185471 Infant-Type Hemispheric Glioma 7 72177 -NCIT:C185472 Infant-Type Hemispheric Glioma, NTRK-Altered 8 72178 -NCIT:C185473 Infant-Type Hemispheric Glioma, ROS1-Altered 8 72179 -NCIT:C185474 Infant-Type Hemispheric Glioma, ALK-Altered 8 72180 -NCIT:C185475 Infant-Type Hemispheric Glioma, MET-Altered 8 72181 -NCIT:C187211 Metastatic Childhood Malignant Neoplasm in the Brain 7 72182 -NCIT:C187212 Metastatic Childhood Malignant Brain Neoplasm 7 72183 -NCIT:C187213 Advanced Childhood Malignant Brain Neoplasm 8 72184 -NCIT:C188922 Childhood Diffuse Midline Glioma, H3 K27-Altered 7 72185 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 7 72186 -NCIT:C188926 Childhood Diffuse Hemispheric Glioma, H3 G34-Mutant 7 72187 -NCIT:C188935 Childhood Supratentorial Ependymoma ZFTA Fusion-Positive 7 72188 -NCIT:C3997 Childhood Medulloblastoma 7 72189 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 72190 -NCIT:C6207 Childhood Brain Germinoma 7 72191 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 7 72192 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 8 72193 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 8 72194 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 7 72195 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 72196 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 7 72197 -NCIT:C27403 Childhood Central Nervous System Mixed Germ Cell Tumor 6 72198 -NCIT:C27406 Childhood Central Nervous System Germinoma 6 72199 -NCIT:C6207 Childhood Brain Germinoma 7 72200 -NCIT:C5136 Childhood Glioblastoma 6 72201 -NCIT:C114966 Childhood Giant Cell Glioblastoma 7 72202 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 8 72203 -NCIT:C114968 Childhood Gliosarcoma 7 72204 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 8 72205 -NCIT:C115365 Recurrent Childhood Gliosarcoma 8 72206 -NCIT:C115364 Recurrent Childhood Glioblastoma 7 72207 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 8 72208 -NCIT:C115365 Recurrent Childhood Gliosarcoma 8 72209 -NCIT:C147901 Childhood Brain Glioblastoma 7 72210 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 8 72211 -NCIT:C5318 Childhood Meningeal Melanoma 6 72212 -NCIT:C5447 Childhood Anaplastic Oligodendroglioma 6 72213 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 7 72214 -NCIT:C6206 Childhood Central Nervous System Choriocarcinoma 6 72215 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 6 72216 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 6 72217 -NCIT:C6215 Childhood Anaplastic Astrocytoma 6 72218 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 7 72219 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 7 72220 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 8 72221 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 8 72222 -NCIT:C71303 Childhood Grade 3 Meningioma 6 72223 -NCIT:C9047 Childhood Intraocular Retinoblastoma 6 72224 -NCIT:C9048 Childhood Extraocular Retinoblastoma 6 72225 -NCIT:C8094 Childhood Malignant Peripheral Nerve Sheath Tumor 5 72226 -NCIT:C3571 Malignant Cranial Nerve Neoplasm 4 72227 -NCIT:C170941 Malignant Optic Nerve Neoplasm 5 72228 -NCIT:C4539 Malignant Vestibulocochlear Nerve Neoplasm 5 72229 -NCIT:C4768 Malignant Olfactory Nerve Neoplasm 5 72230 -NCIT:C3789 Olfactory Neuroblastoma 6 72231 -NCIT:C115384 Recurrent Olfactory Neuroblastoma 7 72232 -NCIT:C173174 Sinonasal Olfactory Neuroblastoma 7 72233 -NCIT:C6016 Paranasal Sinus Olfactory Neuroblastoma 8 72234 -NCIT:C5435 Kadish Stage C Olfactory Neuroblastoma 7 72235 -NCIT:C6853 Kadish Stage A Olfactory Neuroblastoma 7 72236 -NCIT:C6854 Kadish Stage B Olfactory Neuroblastoma 7 72237 -NCIT:C7604 Nasal Cavity Olfactory Neuroblastoma 7 72238 -NCIT:C6995 Malignant Oculomotor Nerve Neoplasm 5 72239 -NCIT:C3716 Primitive Neuroectodermal Tumor 4 72240 -NCIT:C173565 Refractory Primitive Neuroectodermal Tumor 5 72241 -NCIT:C134153 Refractory Neuroblastoma 6 72242 -NCIT:C142850 Refractory Peripheral Primitive Neuroectodermal Tumor 6 72243 -NCIT:C173530 Refractory Ganglioneuroblastoma 6 72244 -NCIT:C27294 Localized Primitive Neuroectodermal Tumor 5 72245 -NCIT:C27903 Localized Peripheral Primitive Neuroectodermal Tumor 6 72246 -NCIT:C27353 Localized Peripheral Primitive Neuroectodermal Tumor of Bone 7 72247 -NCIT:C27902 Localized Askin Tumor 7 72248 -NCIT:C7835 Localized Resectable Neuroblastoma 6 72249 -NCIT:C8277 Localized Unresectable Neuroblastoma 6 72250 -NCIT:C27295 Recurrent Primitive Neuroectodermal Tumor 5 72251 -NCIT:C173531 Recurrent Ganglioneuroblastoma 6 72252 -NCIT:C27899 Recurrent Peripheral Primitive Neuroectodermal Tumor 6 72253 -NCIT:C27354 Recurrent Peripheral Primitive Neuroectodermal Tumor of Bone 7 72254 -NCIT:C27900 Recurrent Askin Tumor 7 72255 -NCIT:C7837 Recurrent Neuroblastoma 6 72256 -NCIT:C115384 Recurrent Olfactory Neuroblastoma 7 72257 -NCIT:C6963 Neuroblastic Tumor 5 72258 -NCIT:C3270 Neuroblastoma 6 72259 -NCIT:C115225 Hereditary Neuroblastoma 7 72260 -NCIT:C124270 Childhood Neuroblastoma 7 72261 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 8 72262 -NCIT:C134153 Refractory Neuroblastoma 7 72263 -NCIT:C150281 High Risk Neuroblastoma 7 72264 -NCIT:C150620 Resectable Neuroblastoma 7 72265 -NCIT:C7835 Localized Resectable Neuroblastoma 8 72266 -NCIT:C150622 Unresectable Neuroblastoma 7 72267 -NCIT:C8277 Localized Unresectable Neuroblastoma 8 72268 -NCIT:C155772 Sellar Neuroblastoma 7 72269 -NCIT:C156101 Metastatic Neuroblastoma 7 72270 -NCIT:C42046 Undifferentiated Neuroblastoma 7 72271 -NCIT:C42047 Poorly Differentiated Neuroblastoma 7 72272 -NCIT:C42048 Differentiating Neuroblastoma 7 72273 -NCIT:C4826 Central Nervous System Neuroblastoma 7 72274 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 8 72275 -NCIT:C186547 Central Nervous System Neuroblastoma, FOXR2-Activated 8 72276 -NCIT:C5437 Extracranial Neuroblastoma 7 72277 -NCIT:C3789 Olfactory Neuroblastoma 8 72278 -NCIT:C115384 Recurrent Olfactory Neuroblastoma 9 72279 -NCIT:C173174 Sinonasal Olfactory Neuroblastoma 9 72280 -NCIT:C6016 Paranasal Sinus Olfactory Neuroblastoma 10 72281 -NCIT:C5435 Kadish Stage C Olfactory Neuroblastoma 9 72282 -NCIT:C6853 Kadish Stage A Olfactory Neuroblastoma 9 72283 -NCIT:C6854 Kadish Stage B Olfactory Neuroblastoma 9 72284 -NCIT:C7604 Nasal Cavity Olfactory Neuroblastoma 9 72285 -NCIT:C5155 Spinal Cord Neuroblastoma 8 72286 -NCIT:C6591 Peripheral Neuroblastoma 8 72287 -NCIT:C6628 Mediastinal Neuroblastoma 9 72288 -NCIT:C6964 Neuroblastoma of the Adrenal Gland and Sympathetic Nervous System 9 72289 -NCIT:C4827 Adrenal Gland Neuroblastoma 10 72290 -NCIT:C6638 Stage 1 Neuroblastoma 7 72291 -NCIT:C6639 Stage 2 Neuroblastoma 7 72292 -NCIT:C102845 Stage 2A Neuroblastoma 8 72293 -NCIT:C102846 Stage 2B Neuroblastoma 8 72294 -NCIT:C6640 Stage 3 Neuroblastoma 7 72295 -NCIT:C6641 Stage 4 Neuroblastoma 7 72296 -NCIT:C9504 Stage 4S Neuroblastoma 8 72297 -NCIT:C6956 Retinal Neuroblastoma 7 72298 -NCIT:C7836 Regional Neuroblastoma 7 72299 -NCIT:C7837 Recurrent Neuroblastoma 7 72300 -NCIT:C115384 Recurrent Olfactory Neuroblastoma 8 72301 -NCIT:C3790 Ganglioneuroblastoma 6 72302 -NCIT:C124271 Childhood Ganglioneuroblastoma 7 72303 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 8 72304 -NCIT:C124273 Childhood Ganglioneuroblastoma, Intermixed 8 72305 -NCIT:C124274 Childhood Ganglioneuroblastoma, Nodular 8 72306 -NCIT:C173530 Refractory Ganglioneuroblastoma 7 72307 -NCIT:C173531 Recurrent Ganglioneuroblastoma 7 72308 -NCIT:C42057 Ganglioneuroblastoma, Intermixed 7 72309 -NCIT:C124273 Childhood Ganglioneuroblastoma, Intermixed 8 72310 -NCIT:C157243 Adrenal Gland Ganglioneuroblastoma, Intermixed 8 72311 -NCIT:C42058 Ganglioneuroblastoma, Nodular 7 72312 -NCIT:C124274 Childhood Ganglioneuroblastoma, Nodular 8 72313 -NCIT:C157244 Adrenal Gland Ganglioneuroblastoma, Nodular 8 72314 -NCIT:C42059 Composite Ganglioneuroblastoma, Schwannian Stroma-Rich and Stroma-Poor 8 72315 -NCIT:C42060 Composite Ganglioneuroblastoma, Stroma-Dominant and Stroma-Poor 8 72316 -NCIT:C6594 Peripheral Ganglioneuroblastoma 7 72317 -NCIT:C6627 Mediastinal Ganglioneuroblastoma 8 72318 -NCIT:C7646 Adrenal Gland Ganglioneuroblastoma 8 72319 -NCIT:C157243 Adrenal Gland Ganglioneuroblastoma, Intermixed 9 72320 -NCIT:C157244 Adrenal Gland Ganglioneuroblastoma, Nodular 9 72321 -NCIT:C92629 Central Nervous System Ganglioneuroblastoma 7 72322 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 8 72323 -NCIT:C9341 Peripheral Primitive Neuroectodermal Tumor 5 72324 -NCIT:C142850 Refractory Peripheral Primitive Neuroectodermal Tumor 6 72325 -NCIT:C27471 Peripheral Primitive Neuroectodermal Tumor of Soft Tissues 6 72326 -NCIT:C27899 Recurrent Peripheral Primitive Neuroectodermal Tumor 6 72327 -NCIT:C27354 Recurrent Peripheral Primitive Neuroectodermal Tumor of Bone 7 72328 -NCIT:C27900 Recurrent Askin Tumor 7 72329 -NCIT:C27903 Localized Peripheral Primitive Neuroectodermal Tumor 6 72330 -NCIT:C27353 Localized Peripheral Primitive Neuroectodermal Tumor of Bone 7 72331 -NCIT:C27902 Localized Askin Tumor 7 72332 -NCIT:C67214 Peripheral Primitive Neuroectodermal Tumor of the Kidney 6 72333 -NCIT:C7542 Askin Tumor 6 72334 -NCIT:C27900 Recurrent Askin Tumor 7 72335 -NCIT:C27902 Localized Askin Tumor 7 72336 -NCIT:C8776 Peripheral Primitive Neuroectodermal Tumor of Bone 6 72337 -NCIT:C27353 Localized Peripheral Primitive Neuroectodermal Tumor of Bone 7 72338 -NCIT:C27354 Recurrent Peripheral Primitive Neuroectodermal Tumor of Bone 7 72339 -NCIT:C36074 Metastatic Peripheral Primitive Neuroectodermal Tumor of Bone 7 72340 -NCIT:C4627 Malignant Central Nervous System Neoplasm 4 72341 -NCIT:C129807 Central Nervous System Histiocytic Sarcoma 5 72342 -NCIT:C153823 Recurrent Primary Malignant Central Nervous System Neoplasm 5 72343 -NCIT:C114836 Recurrent Childhood Central Nervous System Embryonal Neoplasm 6 72344 -NCIT:C115374 Recurrent Childhood Pineoblastoma 7 72345 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 7 72346 -NCIT:C6774 Recurrent Childhood Medulloblastoma 7 72347 -NCIT:C133499 Recurrent Atypical Teratoid/Rhabdoid Tumor 6 72348 -NCIT:C138019 Recurrent Central Nervous System Lymphoma 6 72349 -NCIT:C146990 Recurrent Central Nervous System Non-Hodgkin Lymphoma 7 72350 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 8 72351 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 72352 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 72353 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 72354 -NCIT:C142848 Recurrent Malignant Glioma 6 72355 -NCIT:C126306 Recurrent Glioblastoma 7 72356 -NCIT:C115364 Recurrent Childhood Glioblastoma 8 72357 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 9 72358 -NCIT:C115365 Recurrent Childhood Gliosarcoma 9 72359 -NCIT:C182019 Recurrent Glioblastoma, IDH-Wildtype 8 72360 -NCIT:C131209 Recurrent Gliosarcoma 9 72361 -NCIT:C115365 Recurrent Childhood Gliosarcoma 10 72362 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 9 72363 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 10 72364 -NCIT:C163961 Recurrent Small Cell Glioblastoma 9 72365 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 9 72366 -NCIT:C191198 Recurrent Brain Glioblastoma 8 72367 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 9 72368 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 7 72369 -NCIT:C148038 Recurrent WHO Grade 3 Glioma 7 72370 -NCIT:C136517 Recurrent Anaplastic Astrocytoma 8 72371 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 9 72372 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 9 72373 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 9 72374 -NCIT:C142861 Recurrent Anaplastic Oligoastrocytoma 8 72375 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 9 72376 -NCIT:C142862 Recurrent Anaplastic Oligodendroglioma 8 72377 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 9 72378 -NCIT:C160904 Recurrent Anaplastic Pleomorphic Xanthoastrocytoma 8 72379 -NCIT:C160912 Recurrent Anaplastic Ependymoma 8 72380 -NCIT:C179222 Recurrent Diffuse Midline Glioma, H3 K27M-Mutant 7 72381 -NCIT:C182018 Recurrent Astrocytoma, IDH-Mutant, Grade 4 7 72382 -NCIT:C153837 Recurrent Malignant Brain Neoplasm 6 72383 -NCIT:C115374 Recurrent Childhood Pineoblastoma 7 72384 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 7 72385 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 7 72386 -NCIT:C179221 Recurrent Gliomatosis Cerebri 7 72387 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 8 72388 -NCIT:C179226 Recurrent Malignant Choroid Plexus Neoplasm 7 72389 -NCIT:C191198 Recurrent Brain Glioblastoma 7 72390 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 8 72391 -NCIT:C5588 Recurrent Medulloblastoma 7 72392 -NCIT:C147109 Recurrent Medulloblastoma, SHH-Activated 8 72393 -NCIT:C180893 Recurrent Medulloblastoma, WNT-Activated 8 72394 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 72395 -NCIT:C160914 Recurrent Anaplastic Ganglioglioma 6 72396 -NCIT:C179223 Recurrent Anaplastic (Malignant) Meningioma 6 72397 -NCIT:C7849 Recurrent Retinoblastoma 6 72398 -NCIT:C153842 Refractory Primary Malignant Central Nervous System Neoplasm 5 72399 -NCIT:C138020 Refractory Central Nervous System Lymphoma 6 72400 -NCIT:C146989 Refractory Central Nervous System Non-Hodgkin Lymphoma 7 72401 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 8 72402 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 72403 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 72404 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 72405 -NCIT:C142855 Refractory Malignant Glioma 6 72406 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 7 72407 -NCIT:C146734 Refractory Glioblastoma 7 72408 -NCIT:C163960 Refractory Small Cell Glioblastoma 8 72409 -NCIT:C163962 Refractory Gliosarcoma 8 72410 -NCIT:C176998 Refractory Giant Cell Glioblastoma 8 72411 -NCIT:C153865 Refractory WHO Grade 3 Glioma 7 72412 -NCIT:C160905 Refractory Anaplastic Pleomorphic Xanthoastrocytoma 8 72413 -NCIT:C160913 Refractory Anaplastic Ependymoma 8 72414 -NCIT:C169074 Refractory Anaplastic Oligodendroglioma 8 72415 -NCIT:C169075 Refractory Anaplastic Astrocytoma 8 72416 -NCIT:C153845 Refractory Malignant Brain Neoplasm 6 72417 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 7 72418 -NCIT:C142856 Refractory Medulloblastoma 7 72419 -NCIT:C147110 Refractory Medulloblastoma, SHH-Activated 8 72420 -NCIT:C180892 Refractory Medulloblastoma, WNT-Activated 8 72421 -NCIT:C160915 Refractory Anaplastic Ganglioglioma 6 72422 -NCIT:C162723 Refractory Atypical Teratoid/Rhabdoid Tumor 6 72423 -NCIT:C183152 Refractory Malignant Leptomeningeal Neoplasm 6 72424 -NCIT:C185037 Extramedullary Disease in Plasma Cell Myeloma Involving the Central Nervous System 5 72425 -NCIT:C185039 Extramedullary Disease in Plasma Cell Myeloma Involving the Leptomeninges 6 72426 -NCIT:C3572 Malignant Spinal Cord Neoplasm 5 72427 -NCIT:C4585 Metastatic Malignant Neoplasm in the Spinal Cord 6 72428 -NCIT:C5439 Drop Metastasis in the Spinal Cord 7 72429 -NCIT:C5152 Spinal Cord Sarcoma 6 72430 -NCIT:C5155 Spinal Cord Neuroblastoma 6 72431 -NCIT:C5157 Spinal Cord Lymphoma 6 72432 -NCIT:C5158 Spinal Cord Melanoma 6 72433 -NCIT:C5406 Spinal Cord Embryonal Tumor, Not Otherwise Specified 6 72434 -NCIT:C4015 Metastatic Malignant Neoplasm in the Central Nervous System 5 72435 -NCIT:C133501 Breast Carcinoma Metastatic in the Central Nervous System 6 72436 -NCIT:C36301 Breast Carcinoma Metastatic in the Brain 7 72437 -NCIT:C133503 Lung Carcinoma Metastatic in the Central Nervous System 6 72438 -NCIT:C36304 Lung Carcinoma Metastatic in the Brain 7 72439 -NCIT:C133504 Melanoma Metastatic in the Central Nervous System 6 72440 -NCIT:C179206 Melanoma Metastatic in the Brain 7 72441 -NCIT:C155786 Metastatic Malignant Neoplasm in the Sellar Region 6 72442 -NCIT:C6805 Metastatic Malignant Neoplasm in the Pituitary Gland 7 72443 -NCIT:C175220 Metastatic Malignant Neoplasm in the Visual Pathway 6 72444 -NCIT:C3813 Metastatic Malignant Neoplasm in the Brain 6 72445 -NCIT:C179206 Melanoma Metastatic in the Brain 7 72446 -NCIT:C187211 Metastatic Childhood Malignant Neoplasm in the Brain 7 72447 -NCIT:C36301 Breast Carcinoma Metastatic in the Brain 7 72448 -NCIT:C36304 Lung Carcinoma Metastatic in the Brain 7 72449 -NCIT:C5057 Secondary Cerebral Hodgkin Lymphoma 7 72450 -NCIT:C5816 Metastatic Adult Malignant Neoplasm in the Brain 7 72451 -NCIT:C8550 Metastatic Malignant Neoplasm in the Brain Stem 7 72452 -NCIT:C3814 Metastatic Malignant Neoplasm in the Leptomeninges 6 72453 -NCIT:C173916 Recurrent Metastatic Malignant Neoplasm in the Leptomeninges 7 72454 -NCIT:C185039 Extramedullary Disease in Plasma Cell Myeloma Involving the Leptomeninges 7 72455 -NCIT:C5399 Medulloblastoma with Leptomeningeal Spread 7 72456 -NCIT:C5400 Central Nervous System Embryonal Tumor, Not Otherwise Specified with Leptomeningeal Spread 7 72457 -NCIT:C94754 Meningeal Leukemia 7 72458 -NCIT:C9111 Meningeal Chronic Myelogenous Leukemia, BCR-ABL1 Positive 8 72459 -NCIT:C4585 Metastatic Malignant Neoplasm in the Spinal Cord 6 72460 -NCIT:C5439 Drop Metastasis in the Spinal Cord 7 72461 -NCIT:C87797 Secondary Central Nervous System Lymphoma 6 72462 -NCIT:C114949 Secondary Central Nervous System Hodgkin Lymphoma 7 72463 -NCIT:C5057 Secondary Cerebral Hodgkin Lymphoma 8 72464 -NCIT:C114950 Secondary Central Nervous System Non-Hodgkin Lymphoma 7 72465 -NCIT:C4628 Malignant Meningeal Neoplasm 5 72466 -NCIT:C27383 Meningeal Carcinomatosis 6 72467 -NCIT:C38938 Grade 3 Meningioma 6 72468 -NCIT:C3904 Papillary Meningioma 7 72469 -NCIT:C5270 Cerebellar Papillary Meningioma 8 72470 -NCIT:C8293 Adult Papillary Meningioma 8 72471 -NCIT:C4051 Anaplastic (Malignant) Meningioma 7 72472 -NCIT:C179223 Recurrent Anaplastic (Malignant) Meningioma 8 72473 -NCIT:C27307 Anaplastic (Malignant) Intracranial Meningioma 8 72474 -NCIT:C8275 Adult Anaplastic (Malignant) Meningioma 8 72475 -NCIT:C8605 Anaplastic (Malignant) Intraspinal Meningioma 8 72476 -NCIT:C6909 Rhabdoid Meningioma 7 72477 -NCIT:C71303 Childhood Grade 3 Meningioma 7 72478 -NCIT:C71305 Adult Grade 3 Meningioma 7 72479 -NCIT:C8275 Adult Anaplastic (Malignant) Meningioma 8 72480 -NCIT:C8293 Adult Papillary Meningioma 8 72481 -NCIT:C4073 Meningeal Sarcoma 6 72482 -NCIT:C4334 Meningeal Sarcomatosis 7 72483 -NCIT:C8312 Leptomeningeal Sarcoma 7 72484 -NCIT:C5446 Meningeal Gliomatosis 6 72485 -NCIT:C8506 Malignant Leptomeningeal Neoplasm 6 72486 -NCIT:C183152 Refractory Malignant Leptomeningeal Neoplasm 7 72487 -NCIT:C3814 Metastatic Malignant Neoplasm in the Leptomeninges 7 72488 -NCIT:C173916 Recurrent Metastatic Malignant Neoplasm in the Leptomeninges 8 72489 -NCIT:C185039 Extramedullary Disease in Plasma Cell Myeloma Involving the Leptomeninges 8 72490 -NCIT:C5399 Medulloblastoma with Leptomeningeal Spread 8 72491 -NCIT:C5400 Central Nervous System Embryonal Tumor, Not Otherwise Specified with Leptomeningeal Spread 8 72492 -NCIT:C94754 Meningeal Leukemia 8 72493 -NCIT:C9111 Meningeal Chronic Myelogenous Leukemia, BCR-ABL1 Positive 9 72494 -NCIT:C5317 Meningeal Melanoma 7 72495 -NCIT:C5318 Childhood Meningeal Melanoma 8 72496 -NCIT:C5319 Adult Meningeal Melanoma 8 72497 -NCIT:C6891 Meningeal Melanomatosis 8 72498 -NCIT:C8312 Leptomeningeal Sarcoma 7 72499 -NCIT:C92652 Meningeal Central Nervous System Solitary Fibrous Tumor, Grade 3 6 72500 -NCIT:C94756 Meningeal Lymphoma 6 72501 -NCIT:C95991 Dural Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 7 72502 -NCIT:C4717 Anaplastic Ganglioglioma 5 72503 -NCIT:C160914 Recurrent Anaplastic Ganglioglioma 6 72504 -NCIT:C160915 Refractory Anaplastic Ganglioglioma 6 72505 -NCIT:C4822 Malignant Glioma 5 72506 -NCIT:C102897 High Grade Astrocytic Tumor 6 72507 -NCIT:C167335 Astrocytoma, IDH-Mutant, Grade 4 7 72508 -NCIT:C182018 Recurrent Astrocytoma, IDH-Mutant, Grade 4 8 72509 -NCIT:C3058 Glioblastoma 7 72510 -NCIT:C111691 Glioblastoma by Gene Expression Profile 8 72511 -NCIT:C111692 Proneural Glioblastoma 9 72512 -NCIT:C111693 Neural Glioblastoma 9 72513 -NCIT:C111694 Classical Glioblastoma 9 72514 -NCIT:C111695 Mesenchymal Glioblastoma 9 72515 -NCIT:C126306 Recurrent Glioblastoma 8 72516 -NCIT:C115364 Recurrent Childhood Glioblastoma 9 72517 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 10 72518 -NCIT:C115365 Recurrent Childhood Gliosarcoma 10 72519 -NCIT:C182019 Recurrent Glioblastoma, IDH-Wildtype 9 72520 -NCIT:C131209 Recurrent Gliosarcoma 10 72521 -NCIT:C115365 Recurrent Childhood Gliosarcoma 11 72522 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 10 72523 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 11 72524 -NCIT:C163961 Recurrent Small Cell Glioblastoma 10 72525 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 10 72526 -NCIT:C191198 Recurrent Brain Glioblastoma 9 72527 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 10 72528 -NCIT:C129295 Glioblastoma, Not Otherwise Specified 8 72529 -NCIT:C146734 Refractory Glioblastoma 8 72530 -NCIT:C163960 Refractory Small Cell Glioblastoma 9 72531 -NCIT:C163962 Refractory Gliosarcoma 9 72532 -NCIT:C176998 Refractory Giant Cell Glioblastoma 9 72533 -NCIT:C166156 Resectable Glioblastoma 8 72534 -NCIT:C170979 Metastatic Glioblastoma 8 72535 -NCIT:C170978 Advanced Glioblastoma 9 72536 -NCIT:C170980 Locally Advanced Glioblastoma 9 72537 -NCIT:C176890 Unresectable Glioblastoma 8 72538 -NCIT:C39750 Glioblastoma, IDH-Wildtype 8 72539 -NCIT:C125890 Small Cell Glioblastoma 9 72540 -NCIT:C163960 Refractory Small Cell Glioblastoma 10 72541 -NCIT:C163961 Recurrent Small Cell Glioblastoma 10 72542 -NCIT:C129293 Epithelioid Glioblastoma 9 72543 -NCIT:C129296 Glioblastoma with Primitive Neuronal Component 9 72544 -NCIT:C132902 MGMT-Unmethylated Glioblastoma 9 72545 -NCIT:C154335 MGMT-Methylated Glioblastoma 9 72546 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 10 72547 -NCIT:C182019 Recurrent Glioblastoma, IDH-Wildtype 9 72548 -NCIT:C131209 Recurrent Gliosarcoma 10 72549 -NCIT:C115365 Recurrent Childhood Gliosarcoma 11 72550 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 10 72551 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 11 72552 -NCIT:C163961 Recurrent Small Cell Glioblastoma 10 72553 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 10 72554 -NCIT:C185178 Granular Cell Glioblastoma 9 72555 -NCIT:C185180 Lipidized Glioblastoma 9 72556 -NCIT:C3796 Gliosarcoma 9 72557 -NCIT:C114968 Childhood Gliosarcoma 10 72558 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 11 72559 -NCIT:C115365 Recurrent Childhood Gliosarcoma 11 72560 -NCIT:C131209 Recurrent Gliosarcoma 10 72561 -NCIT:C115365 Recurrent Childhood Gliosarcoma 11 72562 -NCIT:C163962 Refractory Gliosarcoma 10 72563 -NCIT:C171013 Supratentorial Gliosarcoma 10 72564 -NCIT:C68701 Adult Gliosarcoma 10 72565 -NCIT:C9370 Adult Brain Stem Gliosarcoma 11 72566 -NCIT:C4325 Giant Cell Glioblastoma 9 72567 -NCIT:C114966 Childhood Giant Cell Glioblastoma 10 72568 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 11 72569 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 10 72570 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 11 72571 -NCIT:C176998 Refractory Giant Cell Glioblastoma 10 72572 -NCIT:C68702 Adult Giant Cell Glioblastoma 10 72573 -NCIT:C39751 Secondary Glioblastoma 8 72574 -NCIT:C4642 Brain Glioblastoma 8 72575 -NCIT:C147901 Childhood Brain Glioblastoma 9 72576 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 72577 -NCIT:C191198 Recurrent Brain Glioblastoma 9 72578 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 10 72579 -NCIT:C5148 Infratentorial Glioblastoma 9 72580 -NCIT:C5097 Brain Stem Glioblastoma 10 72581 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 11 72582 -NCIT:C9370 Adult Brain Stem Gliosarcoma 11 72583 -NCIT:C5150 Cerebellar Glioblastoma 10 72584 -NCIT:C5149 Supratentorial Glioblastoma 9 72585 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 10 72586 -NCIT:C5129 Diencephalic Glioblastoma 10 72587 -NCIT:C5151 Cerebral Glioblastoma 10 72588 -NCIT:C171013 Supratentorial Gliosarcoma 11 72589 -NCIT:C9375 Adult Brain Glioblastoma 9 72590 -NCIT:C9370 Adult Brain Stem Gliosarcoma 10 72591 -NCIT:C5136 Childhood Glioblastoma 8 72592 -NCIT:C114966 Childhood Giant Cell Glioblastoma 9 72593 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 10 72594 -NCIT:C114968 Childhood Gliosarcoma 9 72595 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 72596 -NCIT:C115365 Recurrent Childhood Gliosarcoma 10 72597 -NCIT:C115364 Recurrent Childhood Glioblastoma 9 72598 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 10 72599 -NCIT:C115365 Recurrent Childhood Gliosarcoma 10 72600 -NCIT:C147901 Childhood Brain Glioblastoma 9 72601 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 72602 -NCIT:C9094 Adult Glioblastoma 8 72603 -NCIT:C27183 Adult Spinal Cord Glioblastoma 9 72604 -NCIT:C68701 Adult Gliosarcoma 9 72605 -NCIT:C9370 Adult Brain Stem Gliosarcoma 10 72606 -NCIT:C68702 Adult Giant Cell Glioblastoma 9 72607 -NCIT:C9375 Adult Brain Glioblastoma 9 72608 -NCIT:C9370 Adult Brain Stem Gliosarcoma 10 72609 -NCIT:C92549 Multifocal Glioblastomas 8 72610 -NCIT:C9477 Anaplastic Astrocytoma 7 72611 -NCIT:C129290 Astrocytoma, IDH-Mutant, Grade 3 8 72612 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 9 72613 -NCIT:C129291 Anaplastic Astrocytoma, IDH-Wildtype 8 72614 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 9 72615 -NCIT:C129292 Anaplastic Astrocytoma, Not Otherwise Specified 8 72616 -NCIT:C136517 Recurrent Anaplastic Astrocytoma 8 72617 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 9 72618 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 9 72619 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 9 72620 -NCIT:C169075 Refractory Anaplastic Astrocytoma 8 72621 -NCIT:C185879 High Grade Astrocytoma with Piloid Features 8 72622 -NCIT:C5123 Hemispheric Anaplastic Astrocytoma 8 72623 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 9 72624 -NCIT:C156035 Frontal Lobe Anaplastic Astrocytoma 9 72625 -NCIT:C156036 Temporal Lobe Anaplastic Astrocytoma 9 72626 -NCIT:C171036 Parietal Lobe Anaplastic Astrocytoma 9 72627 -NCIT:C5124 Anaplastic Diencephalic Astrocytoma 8 72628 -NCIT:C5416 Secondary Supratentorial Anaplastic Astrocytoma 8 72629 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 8 72630 -NCIT:C6215 Childhood Anaplastic Astrocytoma 8 72631 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 9 72632 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 9 72633 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 10 72634 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 10 72635 -NCIT:C8257 Adult Anaplastic Astrocytoma 8 72636 -NCIT:C127816 WHO Grade 3 Glioma 6 72637 -NCIT:C129327 Anaplastic Pleomorphic Xanthoastrocytoma 7 72638 -NCIT:C160904 Recurrent Anaplastic Pleomorphic Xanthoastrocytoma 8 72639 -NCIT:C160905 Refractory Anaplastic Pleomorphic Xanthoastrocytoma 8 72640 -NCIT:C148038 Recurrent WHO Grade 3 Glioma 7 72641 -NCIT:C136517 Recurrent Anaplastic Astrocytoma 8 72642 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 9 72643 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 9 72644 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 9 72645 -NCIT:C142861 Recurrent Anaplastic Oligoastrocytoma 8 72646 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 9 72647 -NCIT:C142862 Recurrent Anaplastic Oligodendroglioma 8 72648 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 9 72649 -NCIT:C160904 Recurrent Anaplastic Pleomorphic Xanthoastrocytoma 8 72650 -NCIT:C160912 Recurrent Anaplastic Ependymoma 8 72651 -NCIT:C153865 Refractory WHO Grade 3 Glioma 7 72652 -NCIT:C160905 Refractory Anaplastic Pleomorphic Xanthoastrocytoma 8 72653 -NCIT:C160913 Refractory Anaplastic Ependymoma 8 72654 -NCIT:C169074 Refractory Anaplastic Oligodendroglioma 8 72655 -NCIT:C169075 Refractory Anaplastic Astrocytoma 8 72656 -NCIT:C4049 Anaplastic Ependymoma 7 72657 -NCIT:C124293 Childhood Anaplastic Ependymoma 8 72658 -NCIT:C160912 Recurrent Anaplastic Ependymoma 8 72659 -NCIT:C160913 Refractory Anaplastic Ependymoma 8 72660 -NCIT:C8269 Adult Anaplastic Ependymoma 8 72661 -NCIT:C4326 Anaplastic Oligodendroglioma 7 72662 -NCIT:C129321 Anaplastic Oligodendroglioma, IDH-Mutant and 1p/19q-Codeleted 8 72663 -NCIT:C129322 Anaplastic Oligodendroglioma, Not Otherwise Specified 8 72664 -NCIT:C142862 Recurrent Anaplastic Oligodendroglioma 8 72665 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 9 72666 -NCIT:C156120 Frontal Lobe Anaplastic Oligodendroglioma 8 72667 -NCIT:C169074 Refractory Anaplastic Oligodendroglioma 8 72668 -NCIT:C5447 Childhood Anaplastic Oligodendroglioma 8 72669 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 9 72670 -NCIT:C8270 Adult Anaplastic Oligodendroglioma 8 72671 -NCIT:C6959 Anaplastic Oligoastrocytoma 7 72672 -NCIT:C114973 Childhood Anaplastic Oligoastrocytoma 8 72673 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 9 72674 -NCIT:C129324 Anaplastic Oligoastrocytoma, Not Otherwise Specified 8 72675 -NCIT:C142861 Recurrent Anaplastic Oligoastrocytoma 8 72676 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 9 72677 -NCIT:C7446 Anaplastic Brain Stem Glioma 7 72678 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 8 72679 -NCIT:C9477 Anaplastic Astrocytoma 7 72680 -NCIT:C129290 Astrocytoma, IDH-Mutant, Grade 3 8 72681 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 9 72682 -NCIT:C129291 Anaplastic Astrocytoma, IDH-Wildtype 8 72683 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 9 72684 -NCIT:C129292 Anaplastic Astrocytoma, Not Otherwise Specified 8 72685 -NCIT:C136517 Recurrent Anaplastic Astrocytoma 8 72686 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 9 72687 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 9 72688 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 9 72689 -NCIT:C169075 Refractory Anaplastic Astrocytoma 8 72690 -NCIT:C185879 High Grade Astrocytoma with Piloid Features 8 72691 -NCIT:C5123 Hemispheric Anaplastic Astrocytoma 8 72692 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 9 72693 -NCIT:C156035 Frontal Lobe Anaplastic Astrocytoma 9 72694 -NCIT:C156036 Temporal Lobe Anaplastic Astrocytoma 9 72695 -NCIT:C171036 Parietal Lobe Anaplastic Astrocytoma 9 72696 -NCIT:C5124 Anaplastic Diencephalic Astrocytoma 8 72697 -NCIT:C5416 Secondary Supratentorial Anaplastic Astrocytoma 8 72698 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 8 72699 -NCIT:C6215 Childhood Anaplastic Astrocytoma 8 72700 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 9 72701 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 9 72702 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 10 72703 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 10 72704 -NCIT:C8257 Adult Anaplastic Astrocytoma 8 72705 -NCIT:C142848 Recurrent Malignant Glioma 6 72706 -NCIT:C126306 Recurrent Glioblastoma 7 72707 -NCIT:C115364 Recurrent Childhood Glioblastoma 8 72708 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 9 72709 -NCIT:C115365 Recurrent Childhood Gliosarcoma 9 72710 -NCIT:C182019 Recurrent Glioblastoma, IDH-Wildtype 8 72711 -NCIT:C131209 Recurrent Gliosarcoma 9 72712 -NCIT:C115365 Recurrent Childhood Gliosarcoma 10 72713 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 9 72714 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 10 72715 -NCIT:C163961 Recurrent Small Cell Glioblastoma 9 72716 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 9 72717 -NCIT:C191198 Recurrent Brain Glioblastoma 8 72718 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 9 72719 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 7 72720 -NCIT:C148038 Recurrent WHO Grade 3 Glioma 7 72721 -NCIT:C136517 Recurrent Anaplastic Astrocytoma 8 72722 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 9 72723 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 9 72724 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 9 72725 -NCIT:C142861 Recurrent Anaplastic Oligoastrocytoma 8 72726 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 9 72727 -NCIT:C142862 Recurrent Anaplastic Oligodendroglioma 8 72728 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 9 72729 -NCIT:C160904 Recurrent Anaplastic Pleomorphic Xanthoastrocytoma 8 72730 -NCIT:C160912 Recurrent Anaplastic Ependymoma 8 72731 -NCIT:C179222 Recurrent Diffuse Midline Glioma, H3 K27M-Mutant 7 72732 -NCIT:C182018 Recurrent Astrocytoma, IDH-Mutant, Grade 4 7 72733 -NCIT:C142855 Refractory Malignant Glioma 6 72734 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 7 72735 -NCIT:C146734 Refractory Glioblastoma 7 72736 -NCIT:C163960 Refractory Small Cell Glioblastoma 8 72737 -NCIT:C163962 Refractory Gliosarcoma 8 72738 -NCIT:C176998 Refractory Giant Cell Glioblastoma 8 72739 -NCIT:C153865 Refractory WHO Grade 3 Glioma 7 72740 -NCIT:C160905 Refractory Anaplastic Pleomorphic Xanthoastrocytoma 8 72741 -NCIT:C160913 Refractory Anaplastic Ependymoma 8 72742 -NCIT:C169074 Refractory Anaplastic Oligodendroglioma 8 72743 -NCIT:C169075 Refractory Anaplastic Astrocytoma 8 72744 -NCIT:C162993 Malignant Brain Glioma 6 72745 -NCIT:C156120 Frontal Lobe Anaplastic Oligodendroglioma 7 72746 -NCIT:C185371 Diffuse Hemispheric Glioma, H3 G34-Mutant 7 72747 -NCIT:C188926 Childhood Diffuse Hemispheric Glioma, H3 G34-Mutant 8 72748 -NCIT:C188927 Adult Diffuse Hemispheric Glioma, H3 G34-Mutant 8 72749 -NCIT:C185467 Diffuse Pediatric-Type High Grade Glioma, H3-Wildtype and IDH-Wildtype 7 72750 -NCIT:C185468 Diffuse Pediatric-Type High Grade Glioma RTK2 8 72751 -NCIT:C185469 Diffuse Pediatric-Type High Grade Glioma RTK1 8 72752 -NCIT:C185470 Diffuse Pediatric-Type High Grade Glioma MYCN 8 72753 -NCIT:C185471 Infant-Type Hemispheric Glioma 7 72754 -NCIT:C185472 Infant-Type Hemispheric Glioma, NTRK-Altered 8 72755 -NCIT:C185473 Infant-Type Hemispheric Glioma, ROS1-Altered 8 72756 -NCIT:C185474 Infant-Type Hemispheric Glioma, ALK-Altered 8 72757 -NCIT:C185475 Infant-Type Hemispheric Glioma, MET-Altered 8 72758 -NCIT:C4642 Brain Glioblastoma 7 72759 -NCIT:C147901 Childhood Brain Glioblastoma 8 72760 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 9 72761 -NCIT:C191198 Recurrent Brain Glioblastoma 8 72762 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 9 72763 -NCIT:C5148 Infratentorial Glioblastoma 8 72764 -NCIT:C5097 Brain Stem Glioblastoma 9 72765 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 72766 -NCIT:C9370 Adult Brain Stem Gliosarcoma 10 72767 -NCIT:C5150 Cerebellar Glioblastoma 9 72768 -NCIT:C5149 Supratentorial Glioblastoma 8 72769 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 9 72770 -NCIT:C5129 Diencephalic Glioblastoma 9 72771 -NCIT:C5151 Cerebral Glioblastoma 9 72772 -NCIT:C171013 Supratentorial Gliosarcoma 10 72773 -NCIT:C9375 Adult Brain Glioblastoma 8 72774 -NCIT:C9370 Adult Brain Stem Gliosarcoma 9 72775 -NCIT:C5123 Hemispheric Anaplastic Astrocytoma 7 72776 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 8 72777 -NCIT:C156035 Frontal Lobe Anaplastic Astrocytoma 8 72778 -NCIT:C156036 Temporal Lobe Anaplastic Astrocytoma 8 72779 -NCIT:C171036 Parietal Lobe Anaplastic Astrocytoma 8 72780 -NCIT:C5124 Anaplastic Diencephalic Astrocytoma 7 72781 -NCIT:C5416 Secondary Supratentorial Anaplastic Astrocytoma 7 72782 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 7 72783 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 8 72784 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 8 72785 -NCIT:C7446 Anaplastic Brain Stem Glioma 7 72786 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 8 72787 -NCIT:C94764 Diffuse Intrinsic Pontine Glioma 7 72788 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 8 72789 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 8 72790 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 8 72791 -NCIT:C188925 Adult Diffuse Intrinsic Pontine Glioma 8 72792 -NCIT:C180877 Metastatic Glioma 6 72793 -NCIT:C170979 Metastatic Glioblastoma 7 72794 -NCIT:C170978 Advanced Glioblastoma 8 72795 -NCIT:C170980 Locally Advanced Glioblastoma 8 72796 -NCIT:C178558 Metastatic Low Grade Glioma 7 72797 -NCIT:C178559 Metastatic Low Grade Astrocytoma 8 72798 -NCIT:C180876 Locally Advanced Glioma 7 72799 -NCIT:C170980 Locally Advanced Glioblastoma 8 72800 -NCIT:C182151 Diffuse Midline Glioma 6 72801 -NCIT:C182436 Diffuse Non-Pontine Midline Glioma 7 72802 -NCIT:C185368 Diffuse Midline Glioma, H3 K27-Altered 7 72803 -NCIT:C129309 Diffuse Midline Glioma, H3 K27M-Mutant 8 72804 -NCIT:C179222 Recurrent Diffuse Midline Glioma, H3 K27M-Mutant 9 72805 -NCIT:C185369 Diffuse Midline Glioma, EGFR-Mutant 8 72806 -NCIT:C185370 Diffuse Midline Glioma with EZHIP Overexpression 8 72807 -NCIT:C188922 Childhood Diffuse Midline Glioma, H3 K27-Altered 8 72808 -NCIT:C188923 Adult Diffuse Midline Glioma, H3 K27-Altered 8 72809 -NCIT:C94764 Diffuse Intrinsic Pontine Glioma 7 72810 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 8 72811 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 8 72812 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 8 72813 -NCIT:C188925 Adult Diffuse Intrinsic Pontine Glioma 8 72814 -NCIT:C5446 Meningeal Gliomatosis 6 72815 -NCIT:C5114 Malignant Intracranial Neoplasm 5 72816 -NCIT:C155791 Malignant Skull Base Neoplasm 6 72817 -NCIT:C155772 Sellar Neuroblastoma 7 72818 -NCIT:C155786 Metastatic Malignant Neoplasm in the Sellar Region 7 72819 -NCIT:C6805 Metastatic Malignant Neoplasm in the Pituitary Gland 8 72820 -NCIT:C155802 Sellar Germinoma 7 72821 -NCIT:C155803 Suprasellar Germinoma 8 72822 -NCIT:C155804 Sellar Yolk Sac Tumor 7 72823 -NCIT:C155805 Sellar Embryonal Carcinoma 7 72824 -NCIT:C155806 Sellar Choriocarcinoma 7 72825 -NCIT:C155810 Sellar Teratoma with Malignant Transformation 7 72826 -NCIT:C155811 Sellar Mixed Germ Cell Tumor 7 72827 -NCIT:C4769 Malignant Pituitary Gland Neoplasm 7 72828 -NCIT:C155304 Pituitary Gland Blastoma 8 72829 -NCIT:C155796 Pituitary Gland Non-Hodgkin Lymphoma 8 72830 -NCIT:C155797 Pituitary Gland Diffuse Large B-Cell Lymphoma 9 72831 -NCIT:C4536 Metastatic Pituitary Neuroendocrine Tumor 8 72832 -NCIT:C163956 Locally Advanced Pituitary Neuroendocrine Tumor 9 72833 -NCIT:C163959 Metastatic Unresectable Pituitary Neuroendocrine Tumor 9 72834 -NCIT:C5962 Metastatic Lactotroph Pituitary Neuroendocrine Tumor 9 72835 -NCIT:C5963 Metastatic Somatotroph Pituitary Neuroendocrine Tumor 9 72836 -NCIT:C5964 Metastatic Corticotroph Pituitary Neuroendocrine Tumor 9 72837 -NCIT:C5965 Metastatic Thyrotroph Pituitary Neuroendocrine Tumor 9 72838 -NCIT:C6805 Metastatic Malignant Neoplasm in the Pituitary Gland 8 72839 -NCIT:C5453 Skull Base Chordoma 7 72840 -NCIT:C155781 Sellar Chordoma 8 72841 -NCIT:C155782 Sellar Chondroid Chordoma 9 72842 -NCIT:C155783 Sellar Dedifferentiated Chordoma 9 72843 -NCIT:C5412 Clivus Chordoma 8 72844 -NCIT:C5426 Clivus Chondroid Chordoma 9 72845 -NCIT:C175221 Malignant Visual Pathway Neoplasm 6 72846 -NCIT:C170941 Malignant Optic Nerve Neoplasm 7 72847 -NCIT:C175220 Metastatic Malignant Neoplasm in the Visual Pathway 7 72848 -NCIT:C3568 Malignant Brain Neoplasm 6 72849 -NCIT:C153837 Recurrent Malignant Brain Neoplasm 7 72850 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 72851 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 72852 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 8 72853 -NCIT:C179221 Recurrent Gliomatosis Cerebri 8 72854 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 9 72855 -NCIT:C179226 Recurrent Malignant Choroid Plexus Neoplasm 8 72856 -NCIT:C191198 Recurrent Brain Glioblastoma 8 72857 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 9 72858 -NCIT:C5588 Recurrent Medulloblastoma 8 72859 -NCIT:C147109 Recurrent Medulloblastoma, SHH-Activated 9 72860 -NCIT:C180893 Recurrent Medulloblastoma, WNT-Activated 9 72861 -NCIT:C6774 Recurrent Childhood Medulloblastoma 9 72862 -NCIT:C153845 Refractory Malignant Brain Neoplasm 7 72863 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 8 72864 -NCIT:C142856 Refractory Medulloblastoma 8 72865 -NCIT:C147110 Refractory Medulloblastoma, SHH-Activated 9 72866 -NCIT:C180892 Refractory Medulloblastoma, WNT-Activated 9 72867 -NCIT:C162993 Malignant Brain Glioma 7 72868 -NCIT:C156120 Frontal Lobe Anaplastic Oligodendroglioma 8 72869 -NCIT:C185371 Diffuse Hemispheric Glioma, H3 G34-Mutant 8 72870 -NCIT:C188926 Childhood Diffuse Hemispheric Glioma, H3 G34-Mutant 9 72871 -NCIT:C188927 Adult Diffuse Hemispheric Glioma, H3 G34-Mutant 9 72872 -NCIT:C185467 Diffuse Pediatric-Type High Grade Glioma, H3-Wildtype and IDH-Wildtype 8 72873 -NCIT:C185468 Diffuse Pediatric-Type High Grade Glioma RTK2 9 72874 -NCIT:C185469 Diffuse Pediatric-Type High Grade Glioma RTK1 9 72875 -NCIT:C185470 Diffuse Pediatric-Type High Grade Glioma MYCN 9 72876 -NCIT:C185471 Infant-Type Hemispheric Glioma 8 72877 -NCIT:C185472 Infant-Type Hemispheric Glioma, NTRK-Altered 9 72878 -NCIT:C185473 Infant-Type Hemispheric Glioma, ROS1-Altered 9 72879 -NCIT:C185474 Infant-Type Hemispheric Glioma, ALK-Altered 9 72880 -NCIT:C185475 Infant-Type Hemispheric Glioma, MET-Altered 9 72881 -NCIT:C4642 Brain Glioblastoma 8 72882 -NCIT:C147901 Childhood Brain Glioblastoma 9 72883 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 72884 -NCIT:C191198 Recurrent Brain Glioblastoma 9 72885 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 10 72886 -NCIT:C5148 Infratentorial Glioblastoma 9 72887 -NCIT:C5097 Brain Stem Glioblastoma 10 72888 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 11 72889 -NCIT:C9370 Adult Brain Stem Gliosarcoma 11 72890 -NCIT:C5150 Cerebellar Glioblastoma 10 72891 -NCIT:C5149 Supratentorial Glioblastoma 9 72892 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 10 72893 -NCIT:C5129 Diencephalic Glioblastoma 10 72894 -NCIT:C5151 Cerebral Glioblastoma 10 72895 -NCIT:C171013 Supratentorial Gliosarcoma 11 72896 -NCIT:C9375 Adult Brain Glioblastoma 9 72897 -NCIT:C9370 Adult Brain Stem Gliosarcoma 10 72898 -NCIT:C5123 Hemispheric Anaplastic Astrocytoma 8 72899 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 9 72900 -NCIT:C156035 Frontal Lobe Anaplastic Astrocytoma 9 72901 -NCIT:C156036 Temporal Lobe Anaplastic Astrocytoma 9 72902 -NCIT:C171036 Parietal Lobe Anaplastic Astrocytoma 9 72903 -NCIT:C5124 Anaplastic Diencephalic Astrocytoma 8 72904 -NCIT:C5416 Secondary Supratentorial Anaplastic Astrocytoma 8 72905 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 8 72906 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 9 72907 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 9 72908 -NCIT:C7446 Anaplastic Brain Stem Glioma 8 72909 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 9 72910 -NCIT:C94764 Diffuse Intrinsic Pontine Glioma 8 72911 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 9 72912 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 9 72913 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 9 72914 -NCIT:C188925 Adult Diffuse Intrinsic Pontine Glioma 9 72915 -NCIT:C175550 Metastatic Primary Malignant Brain Neoplasm 7 72916 -NCIT:C175549 Advanced Primary Malignant Brain Neoplasm 8 72917 -NCIT:C187213 Advanced Childhood Malignant Brain Neoplasm 9 72918 -NCIT:C177725 Metastatic Medulloblastoma 8 72919 -NCIT:C5399 Medulloblastoma with Leptomeningeal Spread 9 72920 -NCIT:C180874 Locally Advanced Primary Malignant Brain Neoplasm 8 72921 -NCIT:C187212 Metastatic Childhood Malignant Brain Neoplasm 8 72922 -NCIT:C187213 Advanced Childhood Malignant Brain Neoplasm 9 72923 -NCIT:C187207 Childhood Malignant Brain Neoplasm 7 72924 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 72925 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 9 72926 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 8 72927 -NCIT:C114812 Childhood Pineoblastoma 8 72928 -NCIT:C115374 Recurrent Childhood Pineoblastoma 9 72929 -NCIT:C114969 Childhood Gliomatosis Cerebri 8 72930 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 9 72931 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 8 72932 -NCIT:C124292 Childhood Choroid Plexus Carcinoma 8 72933 -NCIT:C147901 Childhood Brain Glioblastoma 8 72934 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 9 72935 -NCIT:C185471 Infant-Type Hemispheric Glioma 8 72936 -NCIT:C185472 Infant-Type Hemispheric Glioma, NTRK-Altered 9 72937 -NCIT:C185473 Infant-Type Hemispheric Glioma, ROS1-Altered 9 72938 -NCIT:C185474 Infant-Type Hemispheric Glioma, ALK-Altered 9 72939 -NCIT:C185475 Infant-Type Hemispheric Glioma, MET-Altered 9 72940 -NCIT:C187211 Metastatic Childhood Malignant Neoplasm in the Brain 8 72941 -NCIT:C187212 Metastatic Childhood Malignant Brain Neoplasm 8 72942 -NCIT:C187213 Advanced Childhood Malignant Brain Neoplasm 9 72943 -NCIT:C188922 Childhood Diffuse Midline Glioma, H3 K27-Altered 8 72944 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 8 72945 -NCIT:C188926 Childhood Diffuse Hemispheric Glioma, H3 G34-Mutant 8 72946 -NCIT:C188935 Childhood Supratentorial Ependymoma ZFTA Fusion-Positive 8 72947 -NCIT:C3997 Childhood Medulloblastoma 8 72948 -NCIT:C6774 Recurrent Childhood Medulloblastoma 9 72949 -NCIT:C6207 Childhood Brain Germinoma 8 72950 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 8 72951 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 9 72952 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 9 72953 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 72954 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 9 72955 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 72956 -NCIT:C3813 Metastatic Malignant Neoplasm in the Brain 7 72957 -NCIT:C179206 Melanoma Metastatic in the Brain 8 72958 -NCIT:C187211 Metastatic Childhood Malignant Neoplasm in the Brain 8 72959 -NCIT:C36301 Breast Carcinoma Metastatic in the Brain 8 72960 -NCIT:C36304 Lung Carcinoma Metastatic in the Brain 8 72961 -NCIT:C5057 Secondary Cerebral Hodgkin Lymphoma 8 72962 -NCIT:C5816 Metastatic Adult Malignant Neoplasm in the Brain 8 72963 -NCIT:C8550 Metastatic Malignant Neoplasm in the Brain Stem 8 72964 -NCIT:C4318 Gliomatosis Cerebri 7 72965 -NCIT:C114969 Childhood Gliomatosis Cerebri 8 72966 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 9 72967 -NCIT:C179221 Recurrent Gliomatosis Cerebri 8 72968 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 9 72969 -NCIT:C41842 Gliomatosis Cerebri Type I 8 72970 -NCIT:C41843 Gliomatosis Cerebri Type II 8 72971 -NCIT:C4533 Malignant Choroid Plexus Neoplasm 7 72972 -NCIT:C179226 Recurrent Malignant Choroid Plexus Neoplasm 8 72973 -NCIT:C4715 Choroid Plexus Carcinoma 8 72974 -NCIT:C124292 Childhood Choroid Plexus Carcinoma 9 72975 -NCIT:C4954 Localized Malignant Brain Neoplasm 7 72976 -NCIT:C4964 Malignant Supratentorial Neoplasm 7 72977 -NCIT:C124292 Childhood Choroid Plexus Carcinoma 8 72978 -NCIT:C186350 Supratentorial Ependymoma ZFTA Fusion-Positive 8 72979 -NCIT:C129351 Supratentorial Ependymoma, ZFTA-RELA Fusion-Positive 9 72980 -NCIT:C188935 Childhood Supratentorial Ependymoma ZFTA Fusion-Positive 9 72981 -NCIT:C188938 Adult Supratentorial Ependymoma ZFTA Fusion-Positive 9 72982 -NCIT:C3573 Malignant Pineal Region Neoplasm 8 72983 -NCIT:C6767 Malignant Pineal Region Germ Cell Tumor 9 72984 -NCIT:C6752 Pineal Region Yolk Sac Tumor 10 72985 -NCIT:C6759 Pineal Region Choriocarcinoma 10 72986 -NCIT:C8712 Pineal Region Germinoma 10 72987 -NCIT:C9344 Pineoblastoma 9 72988 -NCIT:C114812 Childhood Pineoblastoma 10 72989 -NCIT:C115374 Recurrent Childhood Pineoblastoma 11 72990 -NCIT:C8292 Adult Pineoblastoma 10 72991 -NCIT:C4577 Malignant Cerebral Neoplasm 8 72992 -NCIT:C185371 Diffuse Hemispheric Glioma, H3 G34-Mutant 9 72993 -NCIT:C188926 Childhood Diffuse Hemispheric Glioma, H3 G34-Mutant 10 72994 -NCIT:C188927 Adult Diffuse Hemispheric Glioma, H3 G34-Mutant 10 72995 -NCIT:C185471 Infant-Type Hemispheric Glioma 9 72996 -NCIT:C185472 Infant-Type Hemispheric Glioma, NTRK-Altered 10 72997 -NCIT:C185473 Infant-Type Hemispheric Glioma, ROS1-Altered 10 72998 -NCIT:C185474 Infant-Type Hemispheric Glioma, ALK-Altered 10 72999 -NCIT:C185475 Infant-Type Hemispheric Glioma, MET-Altered 10 73000 -NCIT:C4826 Central Nervous System Neuroblastoma 9 73001 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 10 73002 -NCIT:C186547 Central Nervous System Neuroblastoma, FOXR2-Activated 10 73003 -NCIT:C4970 Cerebral Embryonal Tumor, Not Otherwise Specified 9 73004 -NCIT:C5123 Hemispheric Anaplastic Astrocytoma 9 73005 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 10 73006 -NCIT:C156035 Frontal Lobe Anaplastic Astrocytoma 10 73007 -NCIT:C156036 Temporal Lobe Anaplastic Astrocytoma 10 73008 -NCIT:C171036 Parietal Lobe Anaplastic Astrocytoma 10 73009 -NCIT:C5151 Cerebral Glioblastoma 9 73010 -NCIT:C171013 Supratentorial Gliosarcoma 10 73011 -NCIT:C7611 Cerebral Lymphoma 9 73012 -NCIT:C5054 Cerebral Lymphoma in Immunocompetent Host 10 73013 -NCIT:C5055 Cerebral Hodgkin Lymphoma 10 73014 -NCIT:C7609 Cerebral Non-Hodgkin Lymphoma 10 73015 -NCIT:C92629 Central Nervous System Ganglioneuroblastoma 9 73016 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 10 73017 -NCIT:C5126 Malignant Diencephalic Neoplasm 8 73018 -NCIT:C175539 Malignant Hypothalamic Neoplasm 9 73019 -NCIT:C4576 Malignant Thalamic Neoplasm 9 73020 -NCIT:C5124 Anaplastic Diencephalic Astrocytoma 9 73021 -NCIT:C5129 Diencephalic Glioblastoma 9 73022 -NCIT:C5149 Supratentorial Glioblastoma 8 73023 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 9 73024 -NCIT:C5129 Diencephalic Glioblastoma 9 73025 -NCIT:C5151 Cerebral Glioblastoma 9 73026 -NCIT:C171013 Supratentorial Gliosarcoma 10 73027 -NCIT:C5416 Secondary Supratentorial Anaplastic Astrocytoma 8 73028 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 73029 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 9 73030 -NCIT:C6968 Supratentorial Embryonal Tumor, Not Otherwise Specified 8 73031 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 9 73032 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 10 73033 -NCIT:C4970 Cerebral Embryonal Tumor, Not Otherwise Specified 9 73034 -NCIT:C68703 Adult Supratentorial Embryonal Tumor, Not Otherwise Specified 9 73035 -NCIT:C4966 Malignant Infratentorial Neoplasm 7 73036 -NCIT:C3569 Malignant Cerebellar Neoplasm 8 73037 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 9 73038 -NCIT:C3222 Medulloblastoma 9 73039 -NCIT:C129436 Large Cell/Anaplastic Medulloblastoma 10 73040 -NCIT:C129439 Medulloblastoma Molecular Subtypes 10 73041 -NCIT:C129440 Medulloblastoma, WNT-Activated 11 73042 -NCIT:C180892 Refractory Medulloblastoma, WNT-Activated 12 73043 -NCIT:C180893 Recurrent Medulloblastoma, WNT-Activated 12 73044 -NCIT:C129441 Medulloblastoma, SHH-Activated 11 73045 -NCIT:C129442 Medulloblastoma, SHH-Activated, TP53-Mutant 12 73046 -NCIT:C129443 Medulloblastoma, SHH-Activated, TP53-Wildtype 12 73047 -NCIT:C186591 ELP1-Associated Medulloblastoma 13 73048 -NCIT:C147109 Recurrent Medulloblastoma, SHH-Activated 12 73049 -NCIT:C147110 Refractory Medulloblastoma, SHH-Activated 12 73050 -NCIT:C189841 Medulloblastoma, SHH-1 12 73051 -NCIT:C189844 Medulloblastoma, SHH-2 12 73052 -NCIT:C189845 Medulloblastoma, SHH-3 12 73053 -NCIT:C189846 Medulloblastoma, SHH-4 12 73054 -NCIT:C129444 Medulloblastoma, Non-WNT/Non-SHH 11 73055 -NCIT:C129445 Medulloblastoma, Non-WNT/Non-SHH, Group 3 12 73056 -NCIT:C129446 Medulloblastoma, Non-WNT/Non-SHH, Group 4 12 73057 -NCIT:C129447 Medulloblastoma, Not Otherwise Specified 10 73058 -NCIT:C142856 Refractory Medulloblastoma 10 73059 -NCIT:C147110 Refractory Medulloblastoma, SHH-Activated 11 73060 -NCIT:C180892 Refractory Medulloblastoma, WNT-Activated 11 73061 -NCIT:C156039 Fourth Ventricle Medulloblastoma 10 73062 -NCIT:C177725 Metastatic Medulloblastoma 10 73063 -NCIT:C5399 Medulloblastoma with Leptomeningeal Spread 11 73064 -NCIT:C27237 Familial Adenomatous Polyposis Associated Medulloblastoma 10 73065 -NCIT:C3706 Medullomyoblastoma 10 73066 -NCIT:C3997 Childhood Medulloblastoma 10 73067 -NCIT:C6774 Recurrent Childhood Medulloblastoma 11 73068 -NCIT:C4011 Adult Medulloblastoma 10 73069 -NCIT:C4956 Desmoplastic/Nodular Medulloblastoma 10 73070 -NCIT:C5401 Cerebellar Vermis Medulloblastoma 10 73071 -NCIT:C5402 Region 17p13 Allelic Loss Associated Medulloblastoma 10 73072 -NCIT:C54039 Classic Medulloblastoma 10 73073 -NCIT:C5405 Nevoid Basal Cell Carcinoma Syndrome Associated Medulloblastoma 10 73074 -NCIT:C5407 Medulloblastoma with Extensive Nodularity 10 73075 -NCIT:C5588 Recurrent Medulloblastoma 10 73076 -NCIT:C147109 Recurrent Medulloblastoma, SHH-Activated 11 73077 -NCIT:C180893 Recurrent Medulloblastoma, WNT-Activated 11 73078 -NCIT:C6774 Recurrent Childhood Medulloblastoma 11 73079 -NCIT:C6904 Large Cell Medulloblastoma 10 73080 -NCIT:C92625 Anaplastic Medulloblastoma 10 73081 -NCIT:C9497 Melanocytic Medulloblastoma 10 73082 -NCIT:C5270 Cerebellar Papillary Meningioma 9 73083 -NCIT:C3570 Malignant Brain Stem Neoplasm 8 73084 -NCIT:C5097 Brain Stem Glioblastoma 9 73085 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 73086 -NCIT:C9370 Adult Brain Stem Gliosarcoma 10 73087 -NCIT:C7446 Anaplastic Brain Stem Glioma 9 73088 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 10 73089 -NCIT:C8550 Metastatic Malignant Neoplasm in the Brain Stem 9 73090 -NCIT:C94764 Diffuse Intrinsic Pontine Glioma 9 73091 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 10 73092 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 10 73093 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 10 73094 -NCIT:C188925 Adult Diffuse Intrinsic Pontine Glioma 10 73095 -NCIT:C5148 Infratentorial Glioblastoma 8 73096 -NCIT:C5097 Brain Stem Glioblastoma 9 73097 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 73098 -NCIT:C9370 Adult Brain Stem Gliosarcoma 10 73099 -NCIT:C5150 Cerebellar Glioblastoma 9 73100 -NCIT:C5436 Cerebellopontine Angle Embryonal Tumor, Not Otherwise Specified 8 73101 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 73102 -NCIT:C5115 Adult Malignant Brain Neoplasm 7 73103 -NCIT:C188923 Adult Diffuse Midline Glioma, H3 K27-Altered 8 73104 -NCIT:C188925 Adult Diffuse Intrinsic Pontine Glioma 8 73105 -NCIT:C188927 Adult Diffuse Hemispheric Glioma, H3 G34-Mutant 8 73106 -NCIT:C188938 Adult Supratentorial Ependymoma ZFTA Fusion-Positive 8 73107 -NCIT:C4011 Adult Medulloblastoma 8 73108 -NCIT:C5816 Metastatic Adult Malignant Neoplasm in the Brain 8 73109 -NCIT:C68703 Adult Supratentorial Embryonal Tumor, Not Otherwise Specified 8 73110 -NCIT:C8292 Adult Pineoblastoma 8 73111 -NCIT:C9183 Adult Central Nervous System Solitary Fibrous Tumor, Grade 3 8 73112 -NCIT:C9375 Adult Brain Glioblastoma 8 73113 -NCIT:C9370 Adult Brain Stem Gliosarcoma 9 73114 -NCIT:C5154 Brain Sarcoma 7 73115 -NCIT:C186610 Primary Intracranial Sarcoma, DICER1-Mutant 8 73116 -NCIT:C5462 Brain Extraskeletal Myxoid Chondrosarcoma 8 73117 -NCIT:C6973 Brain Liposarcoma 8 73118 -NCIT:C5817 Intracranial Embryonal Tumor, Not Otherwise Specified 7 73119 -NCIT:C5436 Cerebellopontine Angle Embryonal Tumor, Not Otherwise Specified 8 73120 -NCIT:C6968 Supratentorial Embryonal Tumor, Not Otherwise Specified 8 73121 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 9 73122 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 10 73123 -NCIT:C4970 Cerebral Embryonal Tumor, Not Otherwise Specified 9 73124 -NCIT:C68703 Adult Supratentorial Embryonal Tumor, Not Otherwise Specified 9 73125 -NCIT:C6284 Brain Germinoma 7 73126 -NCIT:C156040 Third Ventricle Germinoma 8 73127 -NCIT:C6207 Childhood Brain Germinoma 8 73128 -NCIT:C8712 Pineal Region Germinoma 8 73129 -NCIT:C7045 Malignant Intracranial Neoplasm by Morphology 6 73130 -NCIT:C27307 Anaplastic (Malignant) Intracranial Meningioma 7 73131 -NCIT:C5403 Malignant Intracranial Germ Cell Tumor 7 73132 -NCIT:C155804 Sellar Yolk Sac Tumor 8 73133 -NCIT:C155805 Sellar Embryonal Carcinoma 8 73134 -NCIT:C155806 Sellar Choriocarcinoma 8 73135 -NCIT:C155810 Sellar Teratoma with Malignant Transformation 8 73136 -NCIT:C155811 Sellar Mixed Germ Cell Tumor 8 73137 -NCIT:C5430 Intracranial Germinoma 8 73138 -NCIT:C155802 Sellar Germinoma 9 73139 -NCIT:C155803 Suprasellar Germinoma 10 73140 -NCIT:C6284 Brain Germinoma 9 73141 -NCIT:C156040 Third Ventricle Germinoma 10 73142 -NCIT:C6207 Childhood Brain Germinoma 10 73143 -NCIT:C8712 Pineal Region Germinoma 10 73144 -NCIT:C6767 Malignant Pineal Region Germ Cell Tumor 8 73145 -NCIT:C6752 Pineal Region Yolk Sac Tumor 9 73146 -NCIT:C6759 Pineal Region Choriocarcinoma 9 73147 -NCIT:C8712 Pineal Region Germinoma 9 73148 -NCIT:C5442 Intracranial Melanoma 7 73149 -NCIT:C5462 Brain Extraskeletal Myxoid Chondrosarcoma 7 73150 -NCIT:C6973 Brain Liposarcoma 7 73151 -NCIT:C7008 Intracranial Myeloid Sarcoma 7 73152 -NCIT:C9183 Adult Central Nervous System Solitary Fibrous Tumor, Grade 3 7 73153 -NCIT:C54099 Malignant Central Nervous System Germ Cell Tumor 5 73154 -NCIT:C5403 Malignant Intracranial Germ Cell Tumor 6 73155 -NCIT:C155804 Sellar Yolk Sac Tumor 7 73156 -NCIT:C155805 Sellar Embryonal Carcinoma 7 73157 -NCIT:C155806 Sellar Choriocarcinoma 7 73158 -NCIT:C155810 Sellar Teratoma with Malignant Transformation 7 73159 -NCIT:C155811 Sellar Mixed Germ Cell Tumor 7 73160 -NCIT:C5430 Intracranial Germinoma 7 73161 -NCIT:C155802 Sellar Germinoma 8 73162 -NCIT:C155803 Suprasellar Germinoma 9 73163 -NCIT:C6284 Brain Germinoma 8 73164 -NCIT:C156040 Third Ventricle Germinoma 9 73165 -NCIT:C6207 Childhood Brain Germinoma 9 73166 -NCIT:C8712 Pineal Region Germinoma 9 73167 -NCIT:C6767 Malignant Pineal Region Germ Cell Tumor 7 73168 -NCIT:C6752 Pineal Region Yolk Sac Tumor 8 73169 -NCIT:C6759 Pineal Region Choriocarcinoma 8 73170 -NCIT:C8712 Pineal Region Germinoma 8 73171 -NCIT:C7009 Central Nervous System Germinoma 6 73172 -NCIT:C27406 Childhood Central Nervous System Germinoma 7 73173 -NCIT:C6207 Childhood Brain Germinoma 8 73174 -NCIT:C5430 Intracranial Germinoma 7 73175 -NCIT:C155802 Sellar Germinoma 8 73176 -NCIT:C155803 Suprasellar Germinoma 9 73177 -NCIT:C6284 Brain Germinoma 8 73178 -NCIT:C156040 Third Ventricle Germinoma 9 73179 -NCIT:C6207 Childhood Brain Germinoma 9 73180 -NCIT:C8712 Pineal Region Germinoma 9 73181 -NCIT:C5792 Adult Central Nervous System Germinoma 7 73182 -NCIT:C7010 Central Nervous System Embryonal Carcinoma 6 73183 -NCIT:C155805 Sellar Embryonal Carcinoma 7 73184 -NCIT:C5790 Adult Central Nervous System Embryonal Carcinoma 7 73185 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 7 73186 -NCIT:C7011 Central Nervous System Yolk Sac Tumor 6 73187 -NCIT:C155804 Sellar Yolk Sac Tumor 7 73188 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 7 73189 -NCIT:C6752 Pineal Region Yolk Sac Tumor 7 73190 -NCIT:C7012 Central Nervous System Choriocarcinoma 6 73191 -NCIT:C155806 Sellar Choriocarcinoma 7 73192 -NCIT:C5793 Adult Central Nervous System Choriocarcinoma 7 73193 -NCIT:C6206 Childhood Central Nervous System Choriocarcinoma 7 73194 -NCIT:C6759 Pineal Region Choriocarcinoma 7 73195 -NCIT:C7015 Central Nervous System Teratoma with Malignant Transformation 6 73196 -NCIT:C155810 Sellar Teratoma with Malignant Transformation 7 73197 -NCIT:C7016 Central Nervous System Mixed Germ Cell Tumor 6 73198 -NCIT:C155811 Sellar Mixed Germ Cell Tumor 7 73199 -NCIT:C27402 Adult Central Nervous System Mixed Germ Cell Tumor 7 73200 -NCIT:C27403 Childhood Central Nervous System Mixed Germ Cell Tumor 7 73201 -NCIT:C5440 Central Nervous System Leukemia 5 73202 -NCIT:C94754 Meningeal Leukemia 6 73203 -NCIT:C9111 Meningeal Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 73204 -NCIT:C5448 Childhood Malignant Central Nervous System Neoplasm 5 73205 -NCIT:C114833 Childhood Central Nervous System Embryonal Tumor 6 73206 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 7 73207 -NCIT:C114812 Childhood Pineoblastoma 7 73208 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 73209 -NCIT:C114836 Recurrent Childhood Central Nervous System Embryonal Neoplasm 7 73210 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 73211 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 73212 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 73213 -NCIT:C115203 Childhood Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 7 73214 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 73215 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 9 73216 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 73217 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 7 73218 -NCIT:C3997 Childhood Medulloblastoma 7 73219 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 73220 -NCIT:C5961 Childhood Central Nervous System Embryonal Tumor, Not Otherwise Specified 7 73221 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 73222 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 9 73223 -NCIT:C68634 Childhood Atypical Teratoid/Rhabdoid Tumor 7 73224 -NCIT:C114973 Childhood Anaplastic Oligoastrocytoma 6 73225 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 7 73226 -NCIT:C124293 Childhood Anaplastic Ependymoma 6 73227 -NCIT:C187207 Childhood Malignant Brain Neoplasm 6 73228 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 7 73229 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 73230 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 7 73231 -NCIT:C114812 Childhood Pineoblastoma 7 73232 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 73233 -NCIT:C114969 Childhood Gliomatosis Cerebri 7 73234 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 8 73235 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 7 73236 -NCIT:C124292 Childhood Choroid Plexus Carcinoma 7 73237 -NCIT:C147901 Childhood Brain Glioblastoma 7 73238 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 8 73239 -NCIT:C185471 Infant-Type Hemispheric Glioma 7 73240 -NCIT:C185472 Infant-Type Hemispheric Glioma, NTRK-Altered 8 73241 -NCIT:C185473 Infant-Type Hemispheric Glioma, ROS1-Altered 8 73242 -NCIT:C185474 Infant-Type Hemispheric Glioma, ALK-Altered 8 73243 -NCIT:C185475 Infant-Type Hemispheric Glioma, MET-Altered 8 73244 -NCIT:C187211 Metastatic Childhood Malignant Neoplasm in the Brain 7 73245 -NCIT:C187212 Metastatic Childhood Malignant Brain Neoplasm 7 73246 -NCIT:C187213 Advanced Childhood Malignant Brain Neoplasm 8 73247 -NCIT:C188922 Childhood Diffuse Midline Glioma, H3 K27-Altered 7 73248 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 7 73249 -NCIT:C188926 Childhood Diffuse Hemispheric Glioma, H3 G34-Mutant 7 73250 -NCIT:C188935 Childhood Supratentorial Ependymoma ZFTA Fusion-Positive 7 73251 -NCIT:C3997 Childhood Medulloblastoma 7 73252 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 73253 -NCIT:C6207 Childhood Brain Germinoma 7 73254 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 7 73255 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 8 73256 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 8 73257 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 7 73258 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 73259 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 7 73260 -NCIT:C27403 Childhood Central Nervous System Mixed Germ Cell Tumor 6 73261 -NCIT:C27406 Childhood Central Nervous System Germinoma 6 73262 -NCIT:C6207 Childhood Brain Germinoma 7 73263 -NCIT:C5136 Childhood Glioblastoma 6 73264 -NCIT:C114966 Childhood Giant Cell Glioblastoma 7 73265 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 8 73266 -NCIT:C114968 Childhood Gliosarcoma 7 73267 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 8 73268 -NCIT:C115365 Recurrent Childhood Gliosarcoma 8 73269 -NCIT:C115364 Recurrent Childhood Glioblastoma 7 73270 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 8 73271 -NCIT:C115365 Recurrent Childhood Gliosarcoma 8 73272 -NCIT:C147901 Childhood Brain Glioblastoma 7 73273 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 8 73274 -NCIT:C5318 Childhood Meningeal Melanoma 6 73275 -NCIT:C5447 Childhood Anaplastic Oligodendroglioma 6 73276 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 7 73277 -NCIT:C6206 Childhood Central Nervous System Choriocarcinoma 6 73278 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 6 73279 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 6 73280 -NCIT:C6215 Childhood Anaplastic Astrocytoma 6 73281 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 7 73282 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 7 73283 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 8 73284 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 8 73285 -NCIT:C71303 Childhood Grade 3 Meningioma 6 73286 -NCIT:C9047 Childhood Intraocular Retinoblastoma 6 73287 -NCIT:C9048 Childhood Extraocular Retinoblastoma 6 73288 -NCIT:C5505 Central Nervous System Melanoma 5 73289 -NCIT:C5158 Spinal Cord Melanoma 6 73290 -NCIT:C5317 Meningeal Melanoma 6 73291 -NCIT:C5318 Childhood Meningeal Melanoma 7 73292 -NCIT:C5319 Adult Meningeal Melanoma 7 73293 -NCIT:C6891 Meningeal Melanomatosis 7 73294 -NCIT:C5442 Intracranial Melanoma 6 73295 -NCIT:C62332 Central Nervous System Carcinoma 5 73296 -NCIT:C4715 Choroid Plexus Carcinoma 6 73297 -NCIT:C124292 Childhood Choroid Plexus Carcinoma 7 73298 -NCIT:C6758 Malignant Central Nervous System Mesenchymal, Non-Meningothelial Neoplasm 5 73299 -NCIT:C129527 Central Nervous System Solitary Fibrous Tumor, Grade 3 6 73300 -NCIT:C186603 Central Nervous System Dedifferentiated Solitary Fibrous Tumor 7 73301 -NCIT:C9183 Adult Central Nervous System Solitary Fibrous Tumor, Grade 3 7 73302 -NCIT:C92652 Meningeal Central Nervous System Solitary Fibrous Tumor, Grade 3 7 73303 -NCIT:C129536 Central Nervous System Epithelioid Hemangioendothelioma 6 73304 -NCIT:C5153 Central Nervous System Sarcoma 6 73305 -NCIT:C129534 Central Nervous System Mesenchymal Chondrosarcoma 7 73306 -NCIT:C129566 Central Nervous System Undifferentiated Pleomorphic Sarcoma 7 73307 -NCIT:C186607 Central Nervous System CIC-Rearranged Sarcoma 7 73308 -NCIT:C186611 Central Nervous System Ewing Sarcoma 7 73309 -NCIT:C4073 Meningeal Sarcoma 7 73310 -NCIT:C4334 Meningeal Sarcomatosis 8 73311 -NCIT:C8312 Leptomeningeal Sarcoma 8 73312 -NCIT:C5152 Spinal Cord Sarcoma 7 73313 -NCIT:C5154 Brain Sarcoma 7 73314 -NCIT:C186610 Primary Intracranial Sarcoma, DICER1-Mutant 8 73315 -NCIT:C5462 Brain Extraskeletal Myxoid Chondrosarcoma 8 73316 -NCIT:C6973 Brain Liposarcoma 8 73317 -NCIT:C5450 Central Nervous System Angiosarcoma 7 73318 -NCIT:C5464 Central Nervous System Rhabdomyosarcoma 7 73319 -NCIT:C5465 Central Nervous System Fibrosarcoma 7 73320 -NCIT:C6999 Central Nervous System Leiomyosarcoma 7 73321 -NCIT:C7002 Central Nervous System Extraskeletal Osteosarcoma 7 73322 -NCIT:C7006 Central Nervous System Kaposi Sarcoma 7 73323 -NCIT:C6990 Central Nervous System Embryonal Tumor 5 73324 -NCIT:C114833 Childhood Central Nervous System Embryonal Tumor 6 73325 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 7 73326 -NCIT:C114812 Childhood Pineoblastoma 7 73327 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 73328 -NCIT:C114836 Recurrent Childhood Central Nervous System Embryonal Neoplasm 7 73329 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 73330 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 73331 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 73332 -NCIT:C115203 Childhood Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 7 73333 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 73334 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 9 73335 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 73336 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 7 73337 -NCIT:C3997 Childhood Medulloblastoma 7 73338 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 73339 -NCIT:C5961 Childhood Central Nervous System Embryonal Tumor, Not Otherwise Specified 7 73340 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 73341 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 9 73342 -NCIT:C68634 Childhood Atypical Teratoid/Rhabdoid Tumor 7 73343 -NCIT:C121963 Cribriform Neuroepithelial Tumor 6 73344 -NCIT:C129501 Central Nervous System Embryonal Tumor with Rhabdoid Features 6 73345 -NCIT:C129537 Central Nervous System Ewing Sarcoma/Peripheral Primitive Neuroectodermal Tumor 6 73346 -NCIT:C186611 Central Nervous System Ewing Sarcoma 7 73347 -NCIT:C186534 Embryonal Tumor with Multilayered Rosettes 6 73348 -NCIT:C129499 Embryonal Tumor with Multilayered Rosettes without C19MC Alteration 7 73349 -NCIT:C186535 Embryonal Tumor with Multilayered Rosettes, DICER1-Mutated 7 73350 -NCIT:C4915 Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 7 73351 -NCIT:C115203 Childhood Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 73352 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 9 73353 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 10 73354 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 9 73355 -NCIT:C8290 Adult Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 73356 -NCIT:C186542 Central Nervous System Embryonal Tumor, Not Elsewhere Classified 6 73357 -NCIT:C186556 Central Nervous System Tumor with BCOR Internal Tandem Duplication 6 73358 -NCIT:C3222 Medulloblastoma 6 73359 -NCIT:C129436 Large Cell/Anaplastic Medulloblastoma 7 73360 -NCIT:C129439 Medulloblastoma Molecular Subtypes 7 73361 -NCIT:C129440 Medulloblastoma, WNT-Activated 8 73362 -NCIT:C180892 Refractory Medulloblastoma, WNT-Activated 9 73363 -NCIT:C180893 Recurrent Medulloblastoma, WNT-Activated 9 73364 -NCIT:C129441 Medulloblastoma, SHH-Activated 8 73365 -NCIT:C129442 Medulloblastoma, SHH-Activated, TP53-Mutant 9 73366 -NCIT:C129443 Medulloblastoma, SHH-Activated, TP53-Wildtype 9 73367 -NCIT:C186591 ELP1-Associated Medulloblastoma 10 73368 -NCIT:C147109 Recurrent Medulloblastoma, SHH-Activated 9 73369 -NCIT:C147110 Refractory Medulloblastoma, SHH-Activated 9 73370 -NCIT:C189841 Medulloblastoma, SHH-1 9 73371 -NCIT:C189844 Medulloblastoma, SHH-2 9 73372 -NCIT:C189845 Medulloblastoma, SHH-3 9 73373 -NCIT:C189846 Medulloblastoma, SHH-4 9 73374 -NCIT:C129444 Medulloblastoma, Non-WNT/Non-SHH 8 73375 -NCIT:C129445 Medulloblastoma, Non-WNT/Non-SHH, Group 3 9 73376 -NCIT:C129446 Medulloblastoma, Non-WNT/Non-SHH, Group 4 9 73377 -NCIT:C129447 Medulloblastoma, Not Otherwise Specified 7 73378 -NCIT:C142856 Refractory Medulloblastoma 7 73379 -NCIT:C147110 Refractory Medulloblastoma, SHH-Activated 8 73380 -NCIT:C180892 Refractory Medulloblastoma, WNT-Activated 8 73381 -NCIT:C156039 Fourth Ventricle Medulloblastoma 7 73382 -NCIT:C177725 Metastatic Medulloblastoma 7 73383 -NCIT:C5399 Medulloblastoma with Leptomeningeal Spread 8 73384 -NCIT:C27237 Familial Adenomatous Polyposis Associated Medulloblastoma 7 73385 -NCIT:C3706 Medullomyoblastoma 7 73386 -NCIT:C3997 Childhood Medulloblastoma 7 73387 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 73388 -NCIT:C4011 Adult Medulloblastoma 7 73389 -NCIT:C4956 Desmoplastic/Nodular Medulloblastoma 7 73390 -NCIT:C5401 Cerebellar Vermis Medulloblastoma 7 73391 -NCIT:C5402 Region 17p13 Allelic Loss Associated Medulloblastoma 7 73392 -NCIT:C54039 Classic Medulloblastoma 7 73393 -NCIT:C5405 Nevoid Basal Cell Carcinoma Syndrome Associated Medulloblastoma 7 73394 -NCIT:C5407 Medulloblastoma with Extensive Nodularity 7 73395 -NCIT:C5588 Recurrent Medulloblastoma 7 73396 -NCIT:C147109 Recurrent Medulloblastoma, SHH-Activated 8 73397 -NCIT:C180893 Recurrent Medulloblastoma, WNT-Activated 8 73398 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 73399 -NCIT:C6904 Large Cell Medulloblastoma 7 73400 -NCIT:C92625 Anaplastic Medulloblastoma 7 73401 -NCIT:C9497 Melanocytic Medulloblastoma 7 73402 -NCIT:C4327 Central Nervous System Medulloepithelioma 6 73403 -NCIT:C4826 Central Nervous System Neuroblastoma 6 73404 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 7 73405 -NCIT:C186547 Central Nervous System Neuroblastoma, FOXR2-Activated 7 73406 -NCIT:C5398 Central Nervous System Embryonal Tumor, Not Otherwise Specified 6 73407 -NCIT:C5400 Central Nervous System Embryonal Tumor, Not Otherwise Specified with Leptomeningeal Spread 7 73408 -NCIT:C5406 Spinal Cord Embryonal Tumor, Not Otherwise Specified 7 73409 -NCIT:C5411 Adult Central Nervous System Embryonal Tumor, Not Otherwise Specified 7 73410 -NCIT:C68703 Adult Supratentorial Embryonal Tumor, Not Otherwise Specified 8 73411 -NCIT:C5817 Intracranial Embryonal Tumor, Not Otherwise Specified 7 73412 -NCIT:C5436 Cerebellopontine Angle Embryonal Tumor, Not Otherwise Specified 8 73413 -NCIT:C6968 Supratentorial Embryonal Tumor, Not Otherwise Specified 8 73414 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 9 73415 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 10 73416 -NCIT:C4970 Cerebral Embryonal Tumor, Not Otherwise Specified 9 73417 -NCIT:C68703 Adult Supratentorial Embryonal Tumor, Not Otherwise Specified 9 73418 -NCIT:C5961 Childhood Central Nervous System Embryonal Tumor, Not Otherwise Specified 7 73419 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 73420 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 9 73421 -NCIT:C6906 Atypical Teratoid/Rhabdoid Tumor 6 73422 -NCIT:C133499 Recurrent Atypical Teratoid/Rhabdoid Tumor 7 73423 -NCIT:C162723 Refractory Atypical Teratoid/Rhabdoid Tumor 7 73424 -NCIT:C68634 Childhood Atypical Teratoid/Rhabdoid Tumor 7 73425 -NCIT:C92629 Central Nervous System Ganglioneuroblastoma 6 73426 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 7 73427 -NCIT:C7541 Retinoblastoma 5 73428 -NCIT:C140750 Retinoblastoma by AJCC v8 Stage 6 73429 -NCIT:C140751 Retinoblastoma by AJCC v8 Clinical Stage 7 73430 -NCIT:C140752 Clinical Stage I Retinoblastoma AJCC v8 8 73431 -NCIT:C140753 Clinical Stage II Retinoblastoma AJCC v8 8 73432 -NCIT:C140754 Clinical Stage III Retinoblastoma AJCC v8 8 73433 -NCIT:C140755 Clinical Stage IV Retinoblastoma AJCC v8 8 73434 -NCIT:C140756 Retinoblastoma by AJCC v8 Pathologic Stage 7 73435 -NCIT:C140757 Pathologic Stage I Retinoblastoma AJCC v8 8 73436 -NCIT:C140758 Pathologic Stage II Retinoblastoma AJCC v8 8 73437 -NCIT:C140759 Pathologic Stage III Retinoblastoma AJCC v8 8 73438 -NCIT:C140760 Pathologic Stage IV Retinoblastoma AJCC v8 8 73439 -NCIT:C42596 Sporadic Retinoblastoma 6 73440 -NCIT:C66813 Differentiated Retinoblastoma 6 73441 -NCIT:C66814 Undifferentiated Retinoblastoma 6 73442 -NCIT:C66815 Diffuse Retinoblastoma 6 73443 -NCIT:C7019 Trilateral Retinoblastoma 6 73444 -NCIT:C7846 Intraocular Retinoblastoma 6 73445 -NCIT:C9047 Childhood Intraocular Retinoblastoma 7 73446 -NCIT:C7848 Extraocular Retinoblastoma 6 73447 -NCIT:C9048 Childhood Extraocular Retinoblastoma 7 73448 -NCIT:C7849 Recurrent Retinoblastoma 6 73449 -NCIT:C8495 Hereditary Retinoblastoma 6 73450 -NCIT:C8713 Bilateral Retinoblastoma 6 73451 -NCIT:C8714 Unilateral Retinoblastoma 6 73452 -NCIT:C9301 Central Nervous System Lymphoma 5 73453 -NCIT:C114779 Central Nervous System Non-Hodgkin Lymphoma 6 73454 -NCIT:C146989 Refractory Central Nervous System Non-Hodgkin Lymphoma 7 73455 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 8 73456 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 73457 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 73458 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 73459 -NCIT:C146990 Recurrent Central Nervous System Non-Hodgkin Lymphoma 7 73460 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 8 73461 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 73462 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 73463 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 73464 -NCIT:C147948 Central Nervous System B-Cell Non-Hodgkin Lymphoma 7 73465 -NCIT:C71720 Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 73466 -NCIT:C129602 Central Nervous System Intravascular Large B-Cell Lymphoma 9 73467 -NCIT:C155797 Pituitary Gland Diffuse Large B-Cell Lymphoma 9 73468 -NCIT:C157067 Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 73469 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 73470 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 73471 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 73472 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 73473 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 73474 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 73475 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 73476 -NCIT:C95991 Dural Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 73477 -NCIT:C155796 Pituitary Gland Non-Hodgkin Lymphoma 7 73478 -NCIT:C155797 Pituitary Gland Diffuse Large B-Cell Lymphoma 8 73479 -NCIT:C157065 Primary Vitreoretinal Non-Hodgkin Lymphoma 7 73480 -NCIT:C157067 Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 73481 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 73482 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 73483 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 8 73484 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 73485 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 8 73486 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 73487 -NCIT:C4365 Primary Retinal Non-Hodgkin Lymphoma 8 73488 -NCIT:C5409 Central Nervous System T-Cell Non-Hodgkin Lymphoma 7 73489 -NCIT:C129600 Central Nervous System Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 8 73490 -NCIT:C5322 Central Nervous System Anaplastic Large Cell Lymphoma 9 73491 -NCIT:C129598 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Positive 10 73492 -NCIT:C129599 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Negative 10 73493 -NCIT:C7609 Cerebral Non-Hodgkin Lymphoma 7 73494 -NCIT:C114951 Central Nervous System Hodgkin Lymphoma 6 73495 -NCIT:C5055 Cerebral Hodgkin Lymphoma 7 73496 -NCIT:C138019 Recurrent Central Nervous System Lymphoma 6 73497 -NCIT:C146990 Recurrent Central Nervous System Non-Hodgkin Lymphoma 7 73498 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 8 73499 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 73500 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 73501 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 73502 -NCIT:C138020 Refractory Central Nervous System Lymphoma 6 73503 -NCIT:C146989 Refractory Central Nervous System Non-Hodgkin Lymphoma 7 73504 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 8 73505 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 73506 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 73507 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 73508 -NCIT:C186658 Immunodeficiency-Related Central Nervous System Lymphoma 6 73509 -NCIT:C8284 AIDS-Related Primary Central Nervous System Lymphoma 7 73510 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 73511 -NCIT:C5157 Spinal Cord Lymphoma 6 73512 -NCIT:C7611 Cerebral Lymphoma 6 73513 -NCIT:C5054 Cerebral Lymphoma in Immunocompetent Host 7 73514 -NCIT:C5055 Cerebral Hodgkin Lymphoma 7 73515 -NCIT:C7609 Cerebral Non-Hodgkin Lymphoma 7 73516 -NCIT:C94756 Meningeal Lymphoma 6 73517 -NCIT:C95991 Dural Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 7 73518 -NCIT:C4961 Malignant Peripheral Nervous System Neoplasm 4 73519 -NCIT:C3798 Malignant Peripheral Nerve Sheath Tumor 5 73520 -NCIT:C128050 Cervical Malignant Peripheral Nerve Sheath Tumor 6 73521 -NCIT:C155987 Refractory Malignant Peripheral Nerve Sheath Tumor 6 73522 -NCIT:C162725 Refractory Epithelioid Malignant Peripheral Nerve Sheath Tumor 7 73523 -NCIT:C156341 Thyroid Gland Malignant Peripheral Nerve Sheath Tumor 6 73524 -NCIT:C162584 Penile Malignant Peripheral Nerve Sheath Tumor 6 73525 -NCIT:C164312 Unresectable Malignant Peripheral Nerve Sheath Tumor 6 73526 -NCIT:C164313 NF1-Associated Malignant Peripheral Nerve Sheath Tumor 6 73527 -NCIT:C164314 Sporadic Malignant Peripheral Nerve Sheath Tumor 6 73528 -NCIT:C164316 Radiation-Induced Malignant Peripheral Nerve Sheath Tumor 6 73529 -NCIT:C172624 Malignant Peripheral Nerve Sheath Tumor of the Skin 6 73530 -NCIT:C172625 Epithelioid Malignant Peripheral Nerve Sheath Tumor of the Skin 7 73531 -NCIT:C173127 Sinonasal Malignant Peripheral Nerve Sheath Tumor 6 73532 -NCIT:C188064 Bone Malignant Peripheral Nerve Sheath Tumor 6 73533 -NCIT:C188073 Retroperitoneal Malignant Peripheral Nerve Sheath Tumor 6 73534 -NCIT:C4748 Malignant Melanotic Peripheral Nerve Sheath Tumor 6 73535 -NCIT:C6630 Malignant Melanotic Peripheral Nerve Sheath Tumor of the Mediastinum 7 73536 -NCIT:C6910 Malignant Melanotic Psammomatous Peripheral Nerve Sheath Tumor 7 73537 -NCIT:C5367 Cardiac Malignant Peripheral Nerve Sheath Tumor 6 73538 -NCIT:C6560 Glandular Malignant Peripheral Nerve Sheath Tumor 6 73539 -NCIT:C6561 Epithelioid Malignant Peripheral Nerve Sheath Tumor 6 73540 -NCIT:C162724 Recurrent Epithelioid Malignant Peripheral Nerve Sheath Tumor 7 73541 -NCIT:C162725 Refractory Epithelioid Malignant Peripheral Nerve Sheath Tumor 7 73542 -NCIT:C172625 Epithelioid Malignant Peripheral Nerve Sheath Tumor of the Skin 7 73543 -NCIT:C6626 Mediastinal Malignant Peripheral Nerve Sheath Tumor 6 73544 -NCIT:C6630 Malignant Melanotic Peripheral Nerve Sheath Tumor of the Mediastinum 7 73545 -NCIT:C66845 Malignant Peripheral Nerve Sheath Tumor with Perineurial Differentiation 6 73546 -NCIT:C7814 Adult Malignant Peripheral Nerve Sheath Tumor 6 73547 -NCIT:C8094 Childhood Malignant Peripheral Nerve Sheath Tumor 6 73548 -NCIT:C8822 Metastatic Malignant Peripheral Nerve Sheath Tumor 6 73549 -NCIT:C164074 Locally Advanced Malignant Peripheral Nerve Sheath Tumor 7 73550 -NCIT:C168714 Advanced Malignant Peripheral Nerve Sheath Tumor 7 73551 -NCIT:C8823 Recurrent Malignant Peripheral Nerve Sheath Tumor 6 73552 -NCIT:C162724 Recurrent Epithelioid Malignant Peripheral Nerve Sheath Tumor 7 73553 -NCIT:C9026 Low Grade Malignant Peripheral Nerve Sheath Tumor 6 73554 -NCIT:C9030 High Grade Malignant Peripheral Nerve Sheath Tumor 6 73555 -NCIT:C92185 Esophageal Malignant Peripheral Nerve Sheath Tumor 6 73556 -NCIT:C92186 Intraocular Malignant Peripheral Nerve Sheath Tumor 6 73557 -NCIT:C92647 Malignant Peripheral Nerve Sheath Tumor with Mesenchymal Differentiation 6 73558 -NCIT:C4335 Malignant Triton Tumor 7 73559 -NCIT:C4336 Malignant Granular Cell Tumor 5 73560 -NCIT:C5484 Malignant Gastric Granular Cell Tumor 6 73561 -NCIT:C5614 Malignant Cutaneous Granular Cell Tumor 6 73562 -NCIT:C6591 Peripheral Neuroblastoma 5 73563 -NCIT:C6628 Mediastinal Neuroblastoma 6 73564 -NCIT:C6964 Neuroblastoma of the Adrenal Gland and Sympathetic Nervous System 6 73565 -NCIT:C4827 Adrenal Gland Neuroblastoma 7 73566 -NCIT:C6594 Peripheral Ganglioneuroblastoma 5 73567 -NCIT:C6627 Mediastinal Ganglioneuroblastoma 6 73568 -NCIT:C7646 Adrenal Gland Ganglioneuroblastoma 6 73569 -NCIT:C157243 Adrenal Gland Ganglioneuroblastoma, Intermixed 7 73570 -NCIT:C157244 Adrenal Gland Ganglioneuroblastoma, Nodular 7 73571 -NCIT:C8559 Metastatic Paraganglioma 5 73572 -NCIT:C133713 Locally Advanced Paraganglioma 6 73573 -NCIT:C157129 Locally Advanced Adrenal Gland Pheochromocytoma 7 73574 -NCIT:C160852 Advanced Paraganglioma 6 73575 -NCIT:C160853 Advanced Adrenal Gland Pheochromocytoma 7 73576 -NCIT:C4219 Metastatic Extra-Adrenal Paraganglioma 6 73577 -NCIT:C3574 Metastatic Carotid Body Paraganglioma 7 73578 -NCIT:C4623 Metastatic Jugulotympanic Paraganglioma 7 73579 -NCIT:C5392 Metastatic Cardiac Paraganglioma 7 73580 -NCIT:C6413 Metastatic Intrathoracic Paravertebral Paraganglioma 7 73581 -NCIT:C6416 Metastatic Bladder Paraganglioma 7 73582 -NCIT:C4220 Metastatic Adrenal Gland Pheochromocytoma 6 73583 -NCIT:C157129 Locally Advanced Adrenal Gland Pheochromocytoma 7 73584 -NCIT:C160853 Advanced Adrenal Gland Pheochromocytoma 7 73585 -NCIT:C92184 Metastatic Adrenal Gland Composite Pheochromocytoma 7 73586 -NCIT:C9341 Peripheral Primitive Neuroectodermal Tumor 5 73587 -NCIT:C142850 Refractory Peripheral Primitive Neuroectodermal Tumor 6 73588 -NCIT:C27471 Peripheral Primitive Neuroectodermal Tumor of Soft Tissues 6 73589 -NCIT:C27899 Recurrent Peripheral Primitive Neuroectodermal Tumor 6 73590 -NCIT:C27354 Recurrent Peripheral Primitive Neuroectodermal Tumor of Bone 7 73591 -NCIT:C27900 Recurrent Askin Tumor 7 73592 -NCIT:C27903 Localized Peripheral Primitive Neuroectodermal Tumor 6 73593 -NCIT:C27353 Localized Peripheral Primitive Neuroectodermal Tumor of Bone 7 73594 -NCIT:C27902 Localized Askin Tumor 7 73595 -NCIT:C67214 Peripheral Primitive Neuroectodermal Tumor of the Kidney 6 73596 -NCIT:C7542 Askin Tumor 6 73597 -NCIT:C27900 Recurrent Askin Tumor 7 73598 -NCIT:C27902 Localized Askin Tumor 7 73599 -NCIT:C8776 Peripheral Primitive Neuroectodermal Tumor of Bone 6 73600 -NCIT:C27353 Localized Peripheral Primitive Neuroectodermal Tumor of Bone 7 73601 -NCIT:C27354 Recurrent Peripheral Primitive Neuroectodermal Tumor of Bone 7 73602 -NCIT:C36074 Metastatic Peripheral Primitive Neuroectodermal Tumor of Bone 7 73603 -NCIT:C8547 Metastatic Malignant Neoplasm in the Nervous System 4 73604 -NCIT:C4015 Metastatic Malignant Neoplasm in the Central Nervous System 5 73605 -NCIT:C133501 Breast Carcinoma Metastatic in the Central Nervous System 6 73606 -NCIT:C36301 Breast Carcinoma Metastatic in the Brain 7 73607 -NCIT:C133503 Lung Carcinoma Metastatic in the Central Nervous System 6 73608 -NCIT:C36304 Lung Carcinoma Metastatic in the Brain 7 73609 -NCIT:C133504 Melanoma Metastatic in the Central Nervous System 6 73610 -NCIT:C179206 Melanoma Metastatic in the Brain 7 73611 -NCIT:C155786 Metastatic Malignant Neoplasm in the Sellar Region 6 73612 -NCIT:C6805 Metastatic Malignant Neoplasm in the Pituitary Gland 7 73613 -NCIT:C175220 Metastatic Malignant Neoplasm in the Visual Pathway 6 73614 -NCIT:C3813 Metastatic Malignant Neoplasm in the Brain 6 73615 -NCIT:C179206 Melanoma Metastatic in the Brain 7 73616 -NCIT:C187211 Metastatic Childhood Malignant Neoplasm in the Brain 7 73617 -NCIT:C36301 Breast Carcinoma Metastatic in the Brain 7 73618 -NCIT:C36304 Lung Carcinoma Metastatic in the Brain 7 73619 -NCIT:C5057 Secondary Cerebral Hodgkin Lymphoma 7 73620 -NCIT:C5816 Metastatic Adult Malignant Neoplasm in the Brain 7 73621 -NCIT:C8550 Metastatic Malignant Neoplasm in the Brain Stem 7 73622 -NCIT:C3814 Metastatic Malignant Neoplasm in the Leptomeninges 6 73623 -NCIT:C173916 Recurrent Metastatic Malignant Neoplasm in the Leptomeninges 7 73624 -NCIT:C185039 Extramedullary Disease in Plasma Cell Myeloma Involving the Leptomeninges 7 73625 -NCIT:C5399 Medulloblastoma with Leptomeningeal Spread 7 73626 -NCIT:C5400 Central Nervous System Embryonal Tumor, Not Otherwise Specified with Leptomeningeal Spread 7 73627 -NCIT:C94754 Meningeal Leukemia 7 73628 -NCIT:C9111 Meningeal Chronic Myelogenous Leukemia, BCR-ABL1 Positive 8 73629 -NCIT:C4585 Metastatic Malignant Neoplasm in the Spinal Cord 6 73630 -NCIT:C5439 Drop Metastasis in the Spinal Cord 7 73631 -NCIT:C87797 Secondary Central Nervous System Lymphoma 6 73632 -NCIT:C114949 Secondary Central Nervous System Hodgkin Lymphoma 7 73633 -NCIT:C5057 Secondary Cerebral Hodgkin Lymphoma 8 73634 -NCIT:C114950 Secondary Central Nervous System Non-Hodgkin Lymphoma 7 73635 -NCIT:C4789 Benign Nervous System Neoplasm 3 73636 -NCIT:C121681 Solitary Circumscribed Neuroma 4 73637 -NCIT:C121686 Hybrid Nerve Sheath Tumor 4 73638 -NCIT:C188049 Benign Central Nervous System Neoplasm 4 73639 -NCIT:C3627 Benign Spinal Cord Neoplasm 5 73640 -NCIT:C4619 Spinal Cord Lipoma 6 73641 -NCIT:C5145 Spinal Cord Neurofibroma 6 73642 -NCIT:C6808 Dermoid Cyst of the Spinal Cord 6 73643 -NCIT:C4957 Benign Neoplasm of the Meninges 5 73644 -NCIT:C4055 Benign Meningioma 6 73645 -NCIT:C5133 Benign Intracranial Meningioma 7 73646 -NCIT:C5111 Benign Intracranial Neoplasm 5 73647 -NCIT:C129549 Intracranial Fibrous Histiocytoma 6 73648 -NCIT:C155793 Benign Skull Base Neoplasm 6 73649 -NCIT:C155768 Sellar Neurocytoma 7 73650 -NCIT:C155780 Sellar Schwannoma 7 73651 -NCIT:C155808 Sellar Mature Teratoma 7 73652 -NCIT:C2964 Craniopharyngioma 7 73653 -NCIT:C148076 Unresectable Craniopharyngioma 8 73654 -NCIT:C148077 Recurrent Craniopharyngioma 8 73655 -NCIT:C162612 Recurrent Adamantinomatous Craniopharyngioma 9 73656 -NCIT:C4010 Adult Craniopharyngioma 8 73657 -NCIT:C188949 Adult Adamantinomatous Craniopharyngioma 9 73658 -NCIT:C4725 Papillary Craniopharyngioma 8 73659 -NCIT:C4726 Adamantinomatous Craniopharyngioma 8 73660 -NCIT:C162612 Recurrent Adamantinomatous Craniopharyngioma 9 73661 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 9 73662 -NCIT:C188949 Adult Adamantinomatous Craniopharyngioma 9 73663 -NCIT:C7816 Childhood Craniopharyngioma 8 73664 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 9 73665 -NCIT:C4782 Benign Pituitary Gland Neoplasm 7 73666 -NCIT:C3633 Intracranial Hemangioma 6 73667 -NCIT:C5432 Intracranial Cavernous Hemangioma 7 73668 -NCIT:C7739 Brain Hemangioma 7 73669 -NCIT:C5433 Cerebral Hemangioma 8 73670 -NCIT:C4781 Benign Brain Neoplasm 6 73671 -NCIT:C2964 Craniopharyngioma 7 73672 -NCIT:C148076 Unresectable Craniopharyngioma 8 73673 -NCIT:C148077 Recurrent Craniopharyngioma 8 73674 -NCIT:C162612 Recurrent Adamantinomatous Craniopharyngioma 9 73675 -NCIT:C4010 Adult Craniopharyngioma 8 73676 -NCIT:C188949 Adult Adamantinomatous Craniopharyngioma 9 73677 -NCIT:C4725 Papillary Craniopharyngioma 8 73678 -NCIT:C4726 Adamantinomatous Craniopharyngioma 8 73679 -NCIT:C162612 Recurrent Adamantinomatous Craniopharyngioma 9 73680 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 9 73681 -NCIT:C188949 Adult Adamantinomatous Craniopharyngioma 9 73682 -NCIT:C7816 Childhood Craniopharyngioma 8 73683 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 9 73684 -NCIT:C4963 Benign Supratentorial Neoplasm 7 73685 -NCIT:C3631 Benign Pineal Region Neoplasm 8 73686 -NCIT:C6754 Pineal Region Mature Teratoma 9 73687 -NCIT:C6966 Pineocytoma 9 73688 -NCIT:C8291 Adult Pineocytoma 10 73689 -NCIT:C4782 Benign Pituitary Gland Neoplasm 8 73690 -NCIT:C5127 Benign Diencephalic Neoplasm 8 73691 -NCIT:C6222 Benign Thalamic Neoplasm 9 73692 -NCIT:C5799 Childhood Benign Supratentorial Neoplasm 8 73693 -NCIT:C5800 Childhood Choroid Plexus Papilloma 9 73694 -NCIT:C6219 Childhood Benign Cerebral Neoplasm 9 73695 -NCIT:C8548 Benign Cerebral Neoplasm 8 73696 -NCIT:C5433 Cerebral Hemangioma 9 73697 -NCIT:C6218 Adult Benign Cerebral Neoplasm 9 73698 -NCIT:C6219 Childhood Benign Cerebral Neoplasm 9 73699 -NCIT:C6220 Cerebral Hemisphere Lipoma 9 73700 -NCIT:C5438 Corpus Callosum Lipoma 10 73701 -NCIT:C4965 Benign Infratentorial Neoplasm 7 73702 -NCIT:C4955 Benign Cerebellar Neoplasm 8 73703 -NCIT:C5796 Adult Benign Cerebellar Neoplasm 9 73704 -NCIT:C6809 Cerebellar Pilocytic Astrocytoma 9 73705 -NCIT:C5413 Cerebellopontine Angle Schwannoma 8 73706 -NCIT:C8549 Benign Brain Stem Neoplasm 8 73707 -NCIT:C5797 Adult Benign Brain Stem Neoplasm 9 73708 -NCIT:C5116 Adult Benign Brain Neoplasm 7 73709 -NCIT:C4010 Adult Craniopharyngioma 8 73710 -NCIT:C188949 Adult Adamantinomatous Craniopharyngioma 9 73711 -NCIT:C5796 Adult Benign Cerebellar Neoplasm 8 73712 -NCIT:C5797 Adult Benign Brain Stem Neoplasm 8 73713 -NCIT:C6218 Adult Benign Cerebral Neoplasm 8 73714 -NCIT:C8291 Adult Pineocytoma 8 73715 -NCIT:C5798 Childhood Benign Brain Neoplasm 7 73716 -NCIT:C5799 Childhood Benign Supratentorial Neoplasm 8 73717 -NCIT:C5800 Childhood Choroid Plexus Papilloma 9 73718 -NCIT:C6219 Childhood Benign Cerebral Neoplasm 9 73719 -NCIT:C7816 Childhood Craniopharyngioma 8 73720 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 9 73721 -NCIT:C7739 Brain Hemangioma 7 73722 -NCIT:C5433 Cerebral Hemangioma 8 73723 -NCIT:C8405 Benign Choroid Plexus Neoplasm 7 73724 -NCIT:C3698 Choroid Plexus Papilloma 8 73725 -NCIT:C5800 Childhood Choroid Plexus Papilloma 9 73726 -NCIT:C5133 Benign Intracranial Meningioma 6 73727 -NCIT:C5444 Intracranial Lipoma 6 73728 -NCIT:C5452 Inner Ear Lipoma 7 73729 -NCIT:C6220 Cerebral Hemisphere Lipoma 7 73730 -NCIT:C5438 Corpus Callosum Lipoma 8 73731 -NCIT:C5591 Childhood Benign Central Nervous System Neoplasm 5 73732 -NCIT:C27404 Childhood Central Nervous System Mature Teratoma 6 73733 -NCIT:C5798 Childhood Benign Brain Neoplasm 6 73734 -NCIT:C5799 Childhood Benign Supratentorial Neoplasm 7 73735 -NCIT:C5800 Childhood Choroid Plexus Papilloma 8 73736 -NCIT:C6219 Childhood Benign Cerebral Neoplasm 8 73737 -NCIT:C7816 Childhood Craniopharyngioma 7 73738 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 8 73739 -NCIT:C6757 Benign Central Nervous System Mesenchymal, Non-Meningothelial Neoplasm 5 73740 -NCIT:C129549 Intracranial Fibrous Histiocytoma 6 73741 -NCIT:C129551 Central Nervous System Myofibroblastoma 6 73742 -NCIT:C5451 Central Nervous System Lipoma 6 73743 -NCIT:C129538 Central Nervous System Angiolipoma 7 73744 -NCIT:C5424 Epidural Spinal Canal Angiolipoma 8 73745 -NCIT:C4619 Spinal Cord Lipoma 7 73746 -NCIT:C5444 Intracranial Lipoma 7 73747 -NCIT:C5452 Inner Ear Lipoma 8 73748 -NCIT:C6220 Cerebral Hemisphere Lipoma 8 73749 -NCIT:C5438 Corpus Callosum Lipoma 9 73750 -NCIT:C6997 Central Nervous System Hibernoma 7 73751 -NCIT:C6998 Central Nervous System Leiomyoma 6 73752 -NCIT:C7000 Central Nervous System Rhabdomyoma 6 73753 -NCIT:C7001 Central Nervous System Chondroma 6 73754 -NCIT:C7004 Central Nervous System Hemangioma 6 73755 -NCIT:C84621 Central Nervous System Cavernous Hemangioma 7 73756 -NCIT:C5432 Intracranial Cavernous Hemangioma 8 73757 -NCIT:C7013 Central Nervous System Mature Teratoma 5 73758 -NCIT:C155808 Sellar Mature Teratoma 6 73759 -NCIT:C27400 Adult Central Nervous System Mature Teratoma 6 73760 -NCIT:C27404 Childhood Central Nervous System Mature Teratoma 6 73761 -NCIT:C5508 Central Nervous System Dermoid Cyst 6 73762 -NCIT:C6808 Dermoid Cyst of the Spinal Cord 7 73763 -NCIT:C6754 Pineal Region Mature Teratoma 6 73764 -NCIT:C190622 Childhood Benign Nervous System Neoplasm 4 73765 -NCIT:C188946 Childhood Ganglioneuroma 5 73766 -NCIT:C188992 Childhood Schwannoma 5 73767 -NCIT:C188995 Childhood Neurofibroma 5 73768 -NCIT:C188997 Childhood Perineurioma 5 73769 -NCIT:C5591 Childhood Benign Central Nervous System Neoplasm 5 73770 -NCIT:C27404 Childhood Central Nervous System Mature Teratoma 6 73771 -NCIT:C5798 Childhood Benign Brain Neoplasm 6 73772 -NCIT:C5799 Childhood Benign Supratentorial Neoplasm 7 73773 -NCIT:C5800 Childhood Choroid Plexus Papilloma 8 73774 -NCIT:C6219 Childhood Benign Cerebral Neoplasm 8 73775 -NCIT:C7816 Childhood Craniopharyngioma 7 73776 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 8 73777 -NCIT:C27507 Hemangioma of Peripheral Nerve 4 73778 -NCIT:C3049 Ganglioneuroma 4 73779 -NCIT:C188946 Childhood Ganglioneuroma 5 73780 -NCIT:C188947 Adult Ganglioneuroma 5 73781 -NCIT:C188956 Choroidal Ganglioneuroma 5 73782 -NCIT:C42064 Maturing Ganglioneuroma 5 73783 -NCIT:C42065 Mature Ganglioneuroma 5 73784 -NCIT:C4481 Cutaneous Ganglioneuroma 5 73785 -NCIT:C5427 Retroperitoneal Ganglioneuroma 5 73786 -NCIT:C157245 Adrenal Gland Ganglioneuroma 6 73787 -NCIT:C6632 Mediastinal Ganglioneuroma 5 73788 -NCIT:C66804 Ganglioneuromatosis 5 73789 -NCIT:C96514 Colorectal Ganglioneuroma 5 73790 -NCIT:C7042 Colon Ganglioneuroma 6 73791 -NCIT:C3252 Benign Granular Cell Tumor 4 73792 -NCIT:C5483 Benign Gastric Granular Cell Tumor 5 73793 -NCIT:C5502 Benign Peripheral Nerve Granular Cell Tumor 5 73794 -NCIT:C5607 Benign Anal Granular Cell Tumor 5 73795 -NCIT:C5852 Extrahepatic Bile Duct Benign Granular Cell Tumor 5 73796 -NCIT:C7131 Gallbladder Benign Granular Cell Tumor 5 73797 -NCIT:C7605 Oral Cavity Benign Granular Cell Tumor 5 73798 -NCIT:C6210 Soft Palate Benign Granular Cell Tumor 6 73799 -NCIT:C96516 Colorectal Benign Granular Cell Tumor 5 73800 -NCIT:C3269 Schwannoma 4 73801 -NCIT:C121677 Conventional Schwannoma 5 73802 -NCIT:C155780 Sellar Schwannoma 5 73803 -NCIT:C173143 Sinonasal Schwannoma 5 73804 -NCIT:C178245 Epithelioid Schwannoma 5 73805 -NCIT:C182029 Recurrent Schwannoma 5 73806 -NCIT:C188213 Schwannoma of the Seventh Cranial Nerve 5 73807 -NCIT:C188992 Childhood Schwannoma 5 73808 -NCIT:C3276 Vestibular Schwannoma 5 73809 -NCIT:C41430 Peripheral Nerve Schwannoma 5 73810 -NCIT:C156340 Thyroid Gland Schwannoma 6 73811 -NCIT:C156944 Adrenal Gland Schwannoma 6 73812 -NCIT:C159221 Kidney Schwannoma 6 73813 -NCIT:C162502 Paratesticular Schwannoma 6 73814 -NCIT:C161639 Seminal Vesicle Schwannoma 7 73815 -NCIT:C162586 Penile Schwannoma 6 73816 -NCIT:C176414 Breast Schwannoma 6 73817 -NCIT:C27476 Bone Schwannoma 6 73818 -NCIT:C5323 Jugular Foramen Schwannoma 6 73819 -NCIT:C5358 Cardiac Schwannoma 6 73820 -NCIT:C5418 Pleural Schwannoma 6 73821 -NCIT:C5421 Sympathetic Schwannoma 6 73822 -NCIT:C5569 Cutaneous Schwannoma 6 73823 -NCIT:C5703 Esophageal Schwannoma 6 73824 -NCIT:C6162 Ureter Schwannoma 6 73825 -NCIT:C6643 Mediastinal Schwannoma 6 73826 -NCIT:C6636 Mediastinal Psammomatous Schwannoma 7 73827 -NCIT:C6718 Sternal Intraosseous Schwannoma 6 73828 -NCIT:C92182 Intraocular Schwannoma 6 73829 -NCIT:C95901 Gastric Schwannoma 6 73830 -NCIT:C96512 Colorectal Schwannoma 6 73831 -NCIT:C4655 Trigeminal Schwannoma 5 73832 -NCIT:C4724 Cellular Schwannoma 5 73833 -NCIT:C5321 Microcystic/Reticular Schwannoma 5 73834 -NCIT:C5413 Cerebellopontine Angle Schwannoma 5 73835 -NCIT:C5434 Schwannoma of the Twelfth Cranial Nerve 5 73836 -NCIT:C6556 Ancient Schwannoma 5 73837 -NCIT:C6557 Schwannomatosis 5 73838 -NCIT:C186703 SMARCB1 Schwannomatosis 1 6 73839 -NCIT:C186704 LZTR1 Schwannomatosis 2 6 73840 -NCIT:C6969 Plexiform Schwannoma 5 73841 -NCIT:C3272 Neurofibroma 4 73842 -NCIT:C128451 Cutaneous Neurofibroma 5 73843 -NCIT:C159682 Bladder Neurofibroma 5 73844 -NCIT:C162587 Penile Neurofibroma 5 73845 -NCIT:C173144 Sinonasal Neurofibroma 5 73846 -NCIT:C176415 Breast Neurofibroma 5 73847 -NCIT:C188995 Childhood Neurofibroma 5 73848 -NCIT:C3797 Plexiform Neurofibroma 5 73849 -NCIT:C179423 Unresectable Plexiform Neurofibroma 6 73850 -NCIT:C41426 Neurofibroma with Atypia 5 73851 -NCIT:C41427 Cellular Neurofibroma 5 73852 -NCIT:C4328 Pacinian Neurofibroma 5 73853 -NCIT:C5145 Spinal Cord Neurofibroma 5 73854 -NCIT:C5359 Cardiac Neurofibroma 5 73855 -NCIT:C5704 Esophageal Neurofibroma 5 73856 -NCIT:C5746 Gallbladder Neurofibroma 5 73857 -NCIT:C6558 Epithelioid Neurofibroma 5 73858 -NCIT:C6631 Mediastinal Neurofibroma 5 73859 -NCIT:C66841 Melanotic Neurofibroma 5 73860 -NCIT:C8426 Diffuse Neurofibroma 5 73861 -NCIT:C4973 Perineurioma 4 73862 -NCIT:C172621 Cutaneous Perineurioma 5 73863 -NCIT:C188997 Childhood Perineurioma 5 73864 -NCIT:C6911 Intraneural Perineurioma 5 73865 -NCIT:C6912 Soft Tissue Perineurioma 5 73866 -NCIT:C96513 Colorectal Perineurioma 6 73867 -NCIT:C5431 Lipomatosis of Nerve 4 73868 -NCIT:C7018 Nerve Sheath Myxoma 4 73869 -NCIT:C121680 Dermal Nerve Sheath Myxoma 5 73870 -NCIT:C156278 Cellular Nerve Sheath Myxoma 5 73871 -NCIT:C5119 Nerve Root Neoplasm 3 73872 -NCIT:C5479 Cauda Equina Neoplasm 4 73873 -NCIT:C5324 Cauda Equina Neuroendocrine Tumor 5 73874 -NCIT:C5408 Intradural Extramedullary Cauda Equina Astrocytoma 5 73875 -NCIT:C9293 Central Nervous System Neoplasm 3 73876 -NCIT:C102871 Primary Central Nervous System Neoplasm 4 73877 -NCIT:C130950 Posterior Fossa Neoplasm 5 73878 -NCIT:C186443 Posterior Fossa Ependymoma 6 73879 -NCIT:C186448 Posterior Fossa Ependymoma, Not Elsewhere Classified 7 73880 -NCIT:C186449 Posterior Fossa Ependymoma, Not Otherwise Specified 7 73881 -NCIT:C188943 Childhood Posterior Fossa Ependymoma 7 73882 -NCIT:C188945 Adult Posterior Fossa Ependymoma 7 73883 -NCIT:C186450 Posterior Fossa Ependymoma, Group A (PFA) 6 73884 -NCIT:C186451 Posterior Fossa Ependymoma, Group B (PFB) 6 73885 -NCIT:C6775 Posterior Fossa Meningioma 6 73886 -NCIT:C5289 Clivus Meningioma 7 73887 -NCIT:C5288 Lower Clivus Meningioma 8 73888 -NCIT:C5290 Upper Clivus Meningioma 8 73889 -NCIT:C5295 Brain Stem Intraparenchymal Clear Cell Meningioma 7 73890 -NCIT:C5300 Cerebellopontine Angle Meningioma 7 73891 -NCIT:C155772 Sellar Neuroblastoma 5 73892 -NCIT:C155781 Sellar Chordoma 5 73893 -NCIT:C155782 Sellar Chondroid Chordoma 6 73894 -NCIT:C155783 Sellar Dedifferentiated Chordoma 6 73895 -NCIT:C166181 Metastatic Primary Malignant Central Nervous System Neoplasm 5 73896 -NCIT:C166182 Locally Advanced Primary Malignant Central Nervous System Neoplasm 6 73897 -NCIT:C180874 Locally Advanced Primary Malignant Brain Neoplasm 7 73898 -NCIT:C180876 Locally Advanced Glioma 7 73899 -NCIT:C170980 Locally Advanced Glioblastoma 8 73900 -NCIT:C170966 Advanced Primary Malignant Central Nervous System Neoplasm 6 73901 -NCIT:C170978 Advanced Glioblastoma 7 73902 -NCIT:C175549 Advanced Primary Malignant Brain Neoplasm 7 73903 -NCIT:C187213 Advanced Childhood Malignant Brain Neoplasm 8 73904 -NCIT:C173155 Metastatic Intracranial Malignant Neoplasm 6 73905 -NCIT:C175550 Metastatic Primary Malignant Brain Neoplasm 7 73906 -NCIT:C175549 Advanced Primary Malignant Brain Neoplasm 8 73907 -NCIT:C187213 Advanced Childhood Malignant Brain Neoplasm 9 73908 -NCIT:C177725 Metastatic Medulloblastoma 8 73909 -NCIT:C5399 Medulloblastoma with Leptomeningeal Spread 9 73910 -NCIT:C180874 Locally Advanced Primary Malignant Brain Neoplasm 8 73911 -NCIT:C187212 Metastatic Childhood Malignant Brain Neoplasm 8 73912 -NCIT:C187213 Advanced Childhood Malignant Brain Neoplasm 9 73913 -NCIT:C180877 Metastatic Glioma 6 73914 -NCIT:C170979 Metastatic Glioblastoma 7 73915 -NCIT:C170978 Advanced Glioblastoma 8 73916 -NCIT:C170980 Locally Advanced Glioblastoma 8 73917 -NCIT:C178558 Metastatic Low Grade Glioma 7 73918 -NCIT:C178559 Metastatic Low Grade Astrocytoma 8 73919 -NCIT:C180876 Locally Advanced Glioma 7 73920 -NCIT:C170980 Locally Advanced Glioblastoma 8 73921 -NCIT:C5274 Metastatic Meningioma 6 73922 -NCIT:C5400 Central Nervous System Embryonal Tumor, Not Otherwise Specified with Leptomeningeal Spread 6 73923 -NCIT:C170814 Primary Brain Neoplasm 5 73924 -NCIT:C129427 Multinodular and Vacuolated Neuronal Tumor 6 73925 -NCIT:C180398 Recurrent Multinodular and Vacuolated Neuronal Tumor 7 73926 -NCIT:C188933 Childhood Multinodular and Vacuolated Neuronal Tumor 7 73927 -NCIT:C188934 Adult Multinodular and Vacuolated Neuronal Tumor 7 73928 -NCIT:C156462 Brain Ependymoma 6 73929 -NCIT:C186343 Supratentorial Ependymoma 7 73930 -NCIT:C186348 Supratentorial Ependymoma, Not Elsewhere Classified 8 73931 -NCIT:C186349 Supratentorial Ependymoma, Not Otherwise Specified 8 73932 -NCIT:C9043 Childhood Supratentorial Ependymoma, Not Otherwise Specified 9 73933 -NCIT:C6268 Childhood Cerebral Ependymoma, Not Otherwise Specified 10 73934 -NCIT:C186350 Supratentorial Ependymoma ZFTA Fusion-Positive 7 73935 -NCIT:C129351 Supratentorial Ependymoma, ZFTA-RELA Fusion-Positive 8 73936 -NCIT:C188935 Childhood Supratentorial Ependymoma ZFTA Fusion-Positive 8 73937 -NCIT:C188938 Adult Supratentorial Ependymoma ZFTA Fusion-Positive 8 73938 -NCIT:C186351 Supratentorial Ependymoma YAP1 Fusion-Positive 7 73939 -NCIT:C186355 Supratentorial Ependymoma, YAP1-MAMLD1 Fusion-Positive 8 73940 -NCIT:C186443 Posterior Fossa Ependymoma 7 73941 -NCIT:C186448 Posterior Fossa Ependymoma, Not Elsewhere Classified 8 73942 -NCIT:C186449 Posterior Fossa Ependymoma, Not Otherwise Specified 8 73943 -NCIT:C188943 Childhood Posterior Fossa Ependymoma 8 73944 -NCIT:C188945 Adult Posterior Fossa Ependymoma 8 73945 -NCIT:C186450 Posterior Fossa Ependymoma, Group A (PFA) 7 73946 -NCIT:C186451 Posterior Fossa Ependymoma, Group B (PFB) 7 73947 -NCIT:C5098 Brain Stem Ependymoma 7 73948 -NCIT:C9041 Childhood Infratentorial Ependymoma 7 73949 -NCIT:C9372 Adult Brain Ependymoma 7 73950 -NCIT:C188938 Adult Supratentorial Ependymoma ZFTA Fusion-Positive 8 73951 -NCIT:C188945 Adult Posterior Fossa Ependymoma 8 73952 -NCIT:C162993 Malignant Brain Glioma 6 73953 -NCIT:C156120 Frontal Lobe Anaplastic Oligodendroglioma 7 73954 -NCIT:C185371 Diffuse Hemispheric Glioma, H3 G34-Mutant 7 73955 -NCIT:C188926 Childhood Diffuse Hemispheric Glioma, H3 G34-Mutant 8 73956 -NCIT:C188927 Adult Diffuse Hemispheric Glioma, H3 G34-Mutant 8 73957 -NCIT:C185467 Diffuse Pediatric-Type High Grade Glioma, H3-Wildtype and IDH-Wildtype 7 73958 -NCIT:C185468 Diffuse Pediatric-Type High Grade Glioma RTK2 8 73959 -NCIT:C185469 Diffuse Pediatric-Type High Grade Glioma RTK1 8 73960 -NCIT:C185470 Diffuse Pediatric-Type High Grade Glioma MYCN 8 73961 -NCIT:C185471 Infant-Type Hemispheric Glioma 7 73962 -NCIT:C185472 Infant-Type Hemispheric Glioma, NTRK-Altered 8 73963 -NCIT:C185473 Infant-Type Hemispheric Glioma, ROS1-Altered 8 73964 -NCIT:C185474 Infant-Type Hemispheric Glioma, ALK-Altered 8 73965 -NCIT:C185475 Infant-Type Hemispheric Glioma, MET-Altered 8 73966 -NCIT:C4642 Brain Glioblastoma 7 73967 -NCIT:C147901 Childhood Brain Glioblastoma 8 73968 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 9 73969 -NCIT:C191198 Recurrent Brain Glioblastoma 8 73970 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 9 73971 -NCIT:C5148 Infratentorial Glioblastoma 8 73972 -NCIT:C5097 Brain Stem Glioblastoma 9 73973 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 73974 -NCIT:C9370 Adult Brain Stem Gliosarcoma 10 73975 -NCIT:C5150 Cerebellar Glioblastoma 9 73976 -NCIT:C5149 Supratentorial Glioblastoma 8 73977 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 9 73978 -NCIT:C5129 Diencephalic Glioblastoma 9 73979 -NCIT:C5151 Cerebral Glioblastoma 9 73980 -NCIT:C171013 Supratentorial Gliosarcoma 10 73981 -NCIT:C9375 Adult Brain Glioblastoma 8 73982 -NCIT:C9370 Adult Brain Stem Gliosarcoma 9 73983 -NCIT:C5123 Hemispheric Anaplastic Astrocytoma 7 73984 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 8 73985 -NCIT:C156035 Frontal Lobe Anaplastic Astrocytoma 8 73986 -NCIT:C156036 Temporal Lobe Anaplastic Astrocytoma 8 73987 -NCIT:C171036 Parietal Lobe Anaplastic Astrocytoma 8 73988 -NCIT:C5124 Anaplastic Diencephalic Astrocytoma 7 73989 -NCIT:C5416 Secondary Supratentorial Anaplastic Astrocytoma 7 73990 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 7 73991 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 8 73992 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 8 73993 -NCIT:C7446 Anaplastic Brain Stem Glioma 7 73994 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 8 73995 -NCIT:C94764 Diffuse Intrinsic Pontine Glioma 7 73996 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 8 73997 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 8 73998 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 8 73999 -NCIT:C188925 Adult Diffuse Intrinsic Pontine Glioma 8 74000 -NCIT:C175550 Metastatic Primary Malignant Brain Neoplasm 6 74001 -NCIT:C175549 Advanced Primary Malignant Brain Neoplasm 7 74002 -NCIT:C187213 Advanced Childhood Malignant Brain Neoplasm 8 74003 -NCIT:C177725 Metastatic Medulloblastoma 7 74004 -NCIT:C5399 Medulloblastoma with Leptomeningeal Spread 8 74005 -NCIT:C180874 Locally Advanced Primary Malignant Brain Neoplasm 7 74006 -NCIT:C187212 Metastatic Childhood Malignant Brain Neoplasm 7 74007 -NCIT:C187213 Advanced Childhood Malignant Brain Neoplasm 8 74008 -NCIT:C180378 Polymorphous Low Grade Neuroepithelial Tumor of the Young 6 74009 -NCIT:C180400 Recurrent Polymorphous Low Grade Neuroepithelial Tumor of the Young 7 74010 -NCIT:C186614 Intracranial Mesenchymal Tumor, FET-CREB Fusion-Positive 6 74011 -NCIT:C3222 Medulloblastoma 6 74012 -NCIT:C129436 Large Cell/Anaplastic Medulloblastoma 7 74013 -NCIT:C129439 Medulloblastoma Molecular Subtypes 7 74014 -NCIT:C129440 Medulloblastoma, WNT-Activated 8 74015 -NCIT:C180892 Refractory Medulloblastoma, WNT-Activated 9 74016 -NCIT:C180893 Recurrent Medulloblastoma, WNT-Activated 9 74017 -NCIT:C129441 Medulloblastoma, SHH-Activated 8 74018 -NCIT:C129442 Medulloblastoma, SHH-Activated, TP53-Mutant 9 74019 -NCIT:C129443 Medulloblastoma, SHH-Activated, TP53-Wildtype 9 74020 -NCIT:C186591 ELP1-Associated Medulloblastoma 10 74021 -NCIT:C147109 Recurrent Medulloblastoma, SHH-Activated 9 74022 -NCIT:C147110 Refractory Medulloblastoma, SHH-Activated 9 74023 -NCIT:C189841 Medulloblastoma, SHH-1 9 74024 -NCIT:C189844 Medulloblastoma, SHH-2 9 74025 -NCIT:C189845 Medulloblastoma, SHH-3 9 74026 -NCIT:C189846 Medulloblastoma, SHH-4 9 74027 -NCIT:C129444 Medulloblastoma, Non-WNT/Non-SHH 8 74028 -NCIT:C129445 Medulloblastoma, Non-WNT/Non-SHH, Group 3 9 74029 -NCIT:C129446 Medulloblastoma, Non-WNT/Non-SHH, Group 4 9 74030 -NCIT:C129447 Medulloblastoma, Not Otherwise Specified 7 74031 -NCIT:C142856 Refractory Medulloblastoma 7 74032 -NCIT:C147110 Refractory Medulloblastoma, SHH-Activated 8 74033 -NCIT:C180892 Refractory Medulloblastoma, WNT-Activated 8 74034 -NCIT:C156039 Fourth Ventricle Medulloblastoma 7 74035 -NCIT:C177725 Metastatic Medulloblastoma 7 74036 -NCIT:C5399 Medulloblastoma with Leptomeningeal Spread 8 74037 -NCIT:C27237 Familial Adenomatous Polyposis Associated Medulloblastoma 7 74038 -NCIT:C3706 Medullomyoblastoma 7 74039 -NCIT:C3997 Childhood Medulloblastoma 7 74040 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 74041 -NCIT:C4011 Adult Medulloblastoma 7 74042 -NCIT:C4956 Desmoplastic/Nodular Medulloblastoma 7 74043 -NCIT:C5401 Cerebellar Vermis Medulloblastoma 7 74044 -NCIT:C5402 Region 17p13 Allelic Loss Associated Medulloblastoma 7 74045 -NCIT:C54039 Classic Medulloblastoma 7 74046 -NCIT:C5405 Nevoid Basal Cell Carcinoma Syndrome Associated Medulloblastoma 7 74047 -NCIT:C5407 Medulloblastoma with Extensive Nodularity 7 74048 -NCIT:C5588 Recurrent Medulloblastoma 7 74049 -NCIT:C147109 Recurrent Medulloblastoma, SHH-Activated 8 74050 -NCIT:C180893 Recurrent Medulloblastoma, WNT-Activated 8 74051 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 74052 -NCIT:C6904 Large Cell Medulloblastoma 7 74053 -NCIT:C92625 Anaplastic Medulloblastoma 7 74054 -NCIT:C9497 Melanocytic Medulloblastoma 7 74055 -NCIT:C3795 Subependymoma 6 74056 -NCIT:C115623 Adult Subependymoma 7 74057 -NCIT:C4318 Gliomatosis Cerebri 6 74058 -NCIT:C114969 Childhood Gliomatosis Cerebri 7 74059 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 8 74060 -NCIT:C179221 Recurrent Gliomatosis Cerebri 7 74061 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 8 74062 -NCIT:C41842 Gliomatosis Cerebri Type I 7 74063 -NCIT:C41843 Gliomatosis Cerebri Type II 7 74064 -NCIT:C4781 Benign Brain Neoplasm 6 74065 -NCIT:C2964 Craniopharyngioma 7 74066 -NCIT:C148076 Unresectable Craniopharyngioma 8 74067 -NCIT:C148077 Recurrent Craniopharyngioma 8 74068 -NCIT:C162612 Recurrent Adamantinomatous Craniopharyngioma 9 74069 -NCIT:C4010 Adult Craniopharyngioma 8 74070 -NCIT:C188949 Adult Adamantinomatous Craniopharyngioma 9 74071 -NCIT:C4725 Papillary Craniopharyngioma 8 74072 -NCIT:C4726 Adamantinomatous Craniopharyngioma 8 74073 -NCIT:C162612 Recurrent Adamantinomatous Craniopharyngioma 9 74074 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 9 74075 -NCIT:C188949 Adult Adamantinomatous Craniopharyngioma 9 74076 -NCIT:C7816 Childhood Craniopharyngioma 8 74077 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 9 74078 -NCIT:C4963 Benign Supratentorial Neoplasm 7 74079 -NCIT:C3631 Benign Pineal Region Neoplasm 8 74080 -NCIT:C6754 Pineal Region Mature Teratoma 9 74081 -NCIT:C6966 Pineocytoma 9 74082 -NCIT:C8291 Adult Pineocytoma 10 74083 -NCIT:C4782 Benign Pituitary Gland Neoplasm 8 74084 -NCIT:C5127 Benign Diencephalic Neoplasm 8 74085 -NCIT:C6222 Benign Thalamic Neoplasm 9 74086 -NCIT:C5799 Childhood Benign Supratentorial Neoplasm 8 74087 -NCIT:C5800 Childhood Choroid Plexus Papilloma 9 74088 -NCIT:C6219 Childhood Benign Cerebral Neoplasm 9 74089 -NCIT:C8548 Benign Cerebral Neoplasm 8 74090 -NCIT:C5433 Cerebral Hemangioma 9 74091 -NCIT:C6218 Adult Benign Cerebral Neoplasm 9 74092 -NCIT:C6219 Childhood Benign Cerebral Neoplasm 9 74093 -NCIT:C6220 Cerebral Hemisphere Lipoma 9 74094 -NCIT:C5438 Corpus Callosum Lipoma 10 74095 -NCIT:C4965 Benign Infratentorial Neoplasm 7 74096 -NCIT:C4955 Benign Cerebellar Neoplasm 8 74097 -NCIT:C5796 Adult Benign Cerebellar Neoplasm 9 74098 -NCIT:C6809 Cerebellar Pilocytic Astrocytoma 9 74099 -NCIT:C5413 Cerebellopontine Angle Schwannoma 8 74100 -NCIT:C8549 Benign Brain Stem Neoplasm 8 74101 -NCIT:C5797 Adult Benign Brain Stem Neoplasm 9 74102 -NCIT:C5116 Adult Benign Brain Neoplasm 7 74103 -NCIT:C4010 Adult Craniopharyngioma 8 74104 -NCIT:C188949 Adult Adamantinomatous Craniopharyngioma 9 74105 -NCIT:C5796 Adult Benign Cerebellar Neoplasm 8 74106 -NCIT:C5797 Adult Benign Brain Stem Neoplasm 8 74107 -NCIT:C6218 Adult Benign Cerebral Neoplasm 8 74108 -NCIT:C8291 Adult Pineocytoma 8 74109 -NCIT:C5798 Childhood Benign Brain Neoplasm 7 74110 -NCIT:C5799 Childhood Benign Supratentorial Neoplasm 8 74111 -NCIT:C5800 Childhood Choroid Plexus Papilloma 9 74112 -NCIT:C6219 Childhood Benign Cerebral Neoplasm 9 74113 -NCIT:C7816 Childhood Craniopharyngioma 8 74114 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 9 74115 -NCIT:C7739 Brain Hemangioma 7 74116 -NCIT:C5433 Cerebral Hemangioma 8 74117 -NCIT:C8405 Benign Choroid Plexus Neoplasm 7 74118 -NCIT:C3698 Choroid Plexus Papilloma 8 74119 -NCIT:C5800 Childhood Choroid Plexus Papilloma 9 74120 -NCIT:C4807 Cerebral Meningioma 6 74121 -NCIT:C4959 Cerebral Convexity Meningioma 7 74122 -NCIT:C5292 Frontal Convexity Meningioma 8 74123 -NCIT:C4960 Parasagittal Meningioma 7 74124 -NCIT:C5269 Intracerebral Cystic Meningioma 7 74125 -NCIT:C5302 Lateral Ventricle Meningioma 7 74126 -NCIT:C4826 Central Nervous System Neuroblastoma 6 74127 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 7 74128 -NCIT:C186547 Central Nervous System Neuroblastoma, FOXR2-Activated 7 74129 -NCIT:C4952 Localized Brain Neoplasm 6 74130 -NCIT:C150573 Localized Cerebral Neoplasm 7 74131 -NCIT:C4954 Localized Malignant Brain Neoplasm 7 74132 -NCIT:C4975 Primary Brain Stem Neoplasm 6 74133 -NCIT:C5147 Brain Stem Hemangioblastoma 7 74134 -NCIT:C155949 Medullary Hemangioblastoma 8 74135 -NCIT:C5295 Brain Stem Intraparenchymal Clear Cell Meningioma 7 74136 -NCIT:C8501 Brain Stem Glioma 7 74137 -NCIT:C5097 Brain Stem Glioblastoma 8 74138 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 9 74139 -NCIT:C9370 Adult Brain Stem Gliosarcoma 9 74140 -NCIT:C5098 Brain Stem Ependymoma 8 74141 -NCIT:C7445 Brain Stem Astrocytoma 8 74142 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 9 74143 -NCIT:C6216 Childhood Brain Stem Astrocytoma 9 74144 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 10 74145 -NCIT:C6954 Adult Brain Stem Astrocytoma 9 74146 -NCIT:C7446 Anaplastic Brain Stem Glioma 8 74147 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 9 74148 -NCIT:C9042 Childhood Brain Stem Glioma 8 74149 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 9 74150 -NCIT:C114760 Childhood Brain Stem Mixed Glioma 9 74151 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 9 74152 -NCIT:C6216 Childhood Brain Stem Astrocytoma 9 74153 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 10 74154 -NCIT:C9190 Recurrent Childhood Brain Stem Glioma 9 74155 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 10 74156 -NCIT:C9091 Adult Brain Stem Glioma 8 74157 -NCIT:C188925 Adult Diffuse Intrinsic Pontine Glioma 9 74158 -NCIT:C6954 Adult Brain Stem Astrocytoma 9 74159 -NCIT:C9370 Adult Brain Stem Gliosarcoma 9 74160 -NCIT:C9371 Adult Brain Stem Mixed Glioma 9 74161 -NCIT:C94764 Diffuse Intrinsic Pontine Glioma 8 74162 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 9 74163 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 9 74164 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 9 74165 -NCIT:C188925 Adult Diffuse Intrinsic Pontine Glioma 9 74166 -NCIT:C8549 Benign Brain Stem Neoplasm 7 74167 -NCIT:C5797 Adult Benign Brain Stem Neoplasm 8 74168 -NCIT:C5154 Brain Sarcoma 6 74169 -NCIT:C186610 Primary Intracranial Sarcoma, DICER1-Mutant 7 74170 -NCIT:C5462 Brain Extraskeletal Myxoid Chondrosarcoma 7 74171 -NCIT:C6973 Brain Liposarcoma 7 74172 -NCIT:C5270 Cerebellar Papillary Meningioma 6 74173 -NCIT:C5273 Intraventricular Meningioma 6 74174 -NCIT:C5302 Lateral Ventricle Meningioma 7 74175 -NCIT:C5414 Cerebellopontine Angle Neoplasm 6 74176 -NCIT:C5300 Cerebellopontine Angle Meningioma 7 74177 -NCIT:C5413 Cerebellopontine Angle Schwannoma 7 74178 -NCIT:C5436 Cerebellopontine Angle Embryonal Tumor, Not Otherwise Specified 7 74179 -NCIT:C5592 Chordoid Glioma 6 74180 -NCIT:C5795 Childhood Brain Germ Cell Tumor 6 74181 -NCIT:C6207 Childhood Brain Germinoma 7 74182 -NCIT:C5817 Intracranial Embryonal Tumor, Not Otherwise Specified 6 74183 -NCIT:C5436 Cerebellopontine Angle Embryonal Tumor, Not Otherwise Specified 7 74184 -NCIT:C6968 Supratentorial Embryonal Tumor, Not Otherwise Specified 7 74185 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 74186 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 9 74187 -NCIT:C4970 Cerebral Embryonal Tumor, Not Otherwise Specified 8 74188 -NCIT:C68703 Adult Supratentorial Embryonal Tumor, Not Otherwise Specified 8 74189 -NCIT:C60780 Brain Astrocytoma 6 74190 -NCIT:C156037 Third Ventricle Pilocytic Astrocytoma 7 74191 -NCIT:C156041 Supratentorial Pleomorphic Xanthoastrocytoma 7 74192 -NCIT:C4951 Cerebral Astrocytoma 7 74193 -NCIT:C4347 Childhood Cerebral Astrocytoma 8 74194 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 9 74195 -NCIT:C8387 Childhood Cerebral Diffuse Astrocytoma 9 74196 -NCIT:C9191 Recurrent Childhood Cerebral Astrocytoma 9 74197 -NCIT:C5123 Hemispheric Anaplastic Astrocytoma 8 74198 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 9 74199 -NCIT:C156035 Frontal Lobe Anaplastic Astrocytoma 9 74200 -NCIT:C156036 Temporal Lobe Anaplastic Astrocytoma 9 74201 -NCIT:C171036 Parietal Lobe Anaplastic Astrocytoma 9 74202 -NCIT:C5128 Diencephalic Astrocytoma 7 74203 -NCIT:C5124 Anaplastic Diencephalic Astrocytoma 8 74204 -NCIT:C5416 Secondary Supratentorial Anaplastic Astrocytoma 7 74205 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 7 74206 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 8 74207 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 8 74208 -NCIT:C7445 Brain Stem Astrocytoma 7 74209 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 8 74210 -NCIT:C6216 Childhood Brain Stem Astrocytoma 8 74211 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 9 74212 -NCIT:C6954 Adult Brain Stem Astrocytoma 8 74213 -NCIT:C7534 Childhood Visual Pathway Astrocytoma 7 74214 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 8 74215 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 9 74216 -NCIT:C8274 Pineal Gland Astrocytoma 7 74217 -NCIT:C115327 Adult Pineal Gland Astrocytoma 8 74218 -NCIT:C9475 Cerebellar Astrocytoma 7 74219 -NCIT:C6286 Childhood Cerebellar Astrocytoma 8 74220 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 9 74221 -NCIT:C8389 Recurrent Childhood Cerebellar Astrocytoma 9 74222 -NCIT:C6809 Cerebellar Pilocytic Astrocytoma 8 74223 -NCIT:C6284 Brain Germinoma 6 74224 -NCIT:C156040 Third Ventricle Germinoma 7 74225 -NCIT:C6207 Childhood Brain Germinoma 7 74226 -NCIT:C8712 Pineal Region Germinoma 7 74227 -NCIT:C67559 Rosette-Forming Glioneuronal Tumor of the Fourth Ventricle 6 74228 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 6 74229 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 7 74230 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 6 74231 -NCIT:C71698 Recurrent Brain Neoplasm 6 74232 -NCIT:C148077 Recurrent Craniopharyngioma 7 74233 -NCIT:C162612 Recurrent Adamantinomatous Craniopharyngioma 8 74234 -NCIT:C153837 Recurrent Malignant Brain Neoplasm 7 74235 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 74236 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 74237 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 8 74238 -NCIT:C179221 Recurrent Gliomatosis Cerebri 8 74239 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 9 74240 -NCIT:C179226 Recurrent Malignant Choroid Plexus Neoplasm 8 74241 -NCIT:C191198 Recurrent Brain Glioblastoma 8 74242 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 9 74243 -NCIT:C5588 Recurrent Medulloblastoma 8 74244 -NCIT:C147109 Recurrent Medulloblastoma, SHH-Activated 9 74245 -NCIT:C180893 Recurrent Medulloblastoma, WNT-Activated 9 74246 -NCIT:C6774 Recurrent Childhood Medulloblastoma 9 74247 -NCIT:C155983 Recurrent Visual Pathway Glioma 7 74248 -NCIT:C7529 Recurrent Childhood Visual Pathway Glioma 8 74249 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 9 74250 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 74251 -NCIT:C7531 Recurrent Childhood Optic Nerve Glioma 9 74252 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 74253 -NCIT:C179227 Recurrent Pineal Parenchymal Cell Neoplasm 7 74254 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 74255 -NCIT:C180398 Recurrent Multinodular and Vacuolated Neuronal Tumor 7 74256 -NCIT:C180400 Recurrent Polymorphous Low Grade Neuroepithelial Tumor of the Young 7 74257 -NCIT:C7834 Recurrent Childhood Brain Neoplasm 7 74258 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 8 74259 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 74260 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 74261 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 74262 -NCIT:C7529 Recurrent Childhood Visual Pathway Glioma 8 74263 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 9 74264 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 74265 -NCIT:C7531 Recurrent Childhood Optic Nerve Glioma 9 74266 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 74267 -NCIT:C8389 Recurrent Childhood Cerebellar Astrocytoma 8 74268 -NCIT:C9190 Recurrent Childhood Brain Stem Glioma 8 74269 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 9 74270 -NCIT:C9191 Recurrent Childhood Cerebral Astrocytoma 8 74271 -NCIT:C7884 Recurrent Adult Brain Neoplasm 7 74272 -NCIT:C71702 Refractory Brain Neoplasm 6 74273 -NCIT:C153845 Refractory Malignant Brain Neoplasm 7 74274 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 8 74275 -NCIT:C142856 Refractory Medulloblastoma 8 74276 -NCIT:C147110 Refractory Medulloblastoma, SHH-Activated 9 74277 -NCIT:C180892 Refractory Medulloblastoma, WNT-Activated 9 74278 -NCIT:C155984 Refractory Visual Pathway Glioma 7 74279 -NCIT:C187215 Refractory Childhood Brain Neoplasm 7 74280 -NCIT:C7611 Cerebral Lymphoma 6 74281 -NCIT:C5054 Cerebral Lymphoma in Immunocompetent Host 7 74282 -NCIT:C5055 Cerebral Hodgkin Lymphoma 7 74283 -NCIT:C7609 Cerebral Non-Hodgkin Lymphoma 7 74284 -NCIT:C9183 Adult Central Nervous System Solitary Fibrous Tumor, Grade 3 6 74285 -NCIT:C92555 Extraventricular Neurocytoma 6 74286 -NCIT:C92629 Central Nervous System Ganglioneuroblastoma 6 74287 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 7 74288 -NCIT:C9344 Pineoblastoma 6 74289 -NCIT:C114812 Childhood Pineoblastoma 7 74290 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 74291 -NCIT:C8292 Adult Pineoblastoma 7 74292 -NCIT:C9377 Brain Oligodendroglioma 6 74293 -NCIT:C114773 Childhood Brain Oligodendroglioma 7 74294 -NCIT:C9376 Adult Brain Oligodendroglioma 7 74295 -NCIT:C9505 Dysembryoplastic Neuroepithelial Tumor 6 74296 -NCIT:C188931 Childhood Dysembryoplastic Neuroepithelial Tumor 7 74297 -NCIT:C188932 Adult Dysembryoplastic Neuroepithelial Tumor 7 74298 -NCIT:C178506 Central Nervous System SMARCB1/INI1-Deficient Tumor 5 74299 -NCIT:C178507 Desmoplastic Myxoid Tumor of the Pineal Region, SMARCB1-Mutant 6 74300 -NCIT:C188049 Benign Central Nervous System Neoplasm 5 74301 -NCIT:C3627 Benign Spinal Cord Neoplasm 6 74302 -NCIT:C4619 Spinal Cord Lipoma 7 74303 -NCIT:C5145 Spinal Cord Neurofibroma 7 74304 -NCIT:C6808 Dermoid Cyst of the Spinal Cord 7 74305 -NCIT:C4957 Benign Neoplasm of the Meninges 6 74306 -NCIT:C4055 Benign Meningioma 7 74307 -NCIT:C5133 Benign Intracranial Meningioma 8 74308 -NCIT:C5111 Benign Intracranial Neoplasm 6 74309 -NCIT:C129549 Intracranial Fibrous Histiocytoma 7 74310 -NCIT:C155793 Benign Skull Base Neoplasm 7 74311 -NCIT:C155768 Sellar Neurocytoma 8 74312 -NCIT:C155780 Sellar Schwannoma 8 74313 -NCIT:C155808 Sellar Mature Teratoma 8 74314 -NCIT:C2964 Craniopharyngioma 8 74315 -NCIT:C148076 Unresectable Craniopharyngioma 9 74316 -NCIT:C148077 Recurrent Craniopharyngioma 9 74317 -NCIT:C162612 Recurrent Adamantinomatous Craniopharyngioma 10 74318 -NCIT:C4010 Adult Craniopharyngioma 9 74319 -NCIT:C188949 Adult Adamantinomatous Craniopharyngioma 10 74320 -NCIT:C4725 Papillary Craniopharyngioma 9 74321 -NCIT:C4726 Adamantinomatous Craniopharyngioma 9 74322 -NCIT:C162612 Recurrent Adamantinomatous Craniopharyngioma 10 74323 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 10 74324 -NCIT:C188949 Adult Adamantinomatous Craniopharyngioma 10 74325 -NCIT:C7816 Childhood Craniopharyngioma 9 74326 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 10 74327 -NCIT:C4782 Benign Pituitary Gland Neoplasm 8 74328 -NCIT:C3633 Intracranial Hemangioma 7 74329 -NCIT:C5432 Intracranial Cavernous Hemangioma 8 74330 -NCIT:C7739 Brain Hemangioma 8 74331 -NCIT:C5433 Cerebral Hemangioma 9 74332 -NCIT:C4781 Benign Brain Neoplasm 7 74333 -NCIT:C2964 Craniopharyngioma 8 74334 -NCIT:C148076 Unresectable Craniopharyngioma 9 74335 -NCIT:C148077 Recurrent Craniopharyngioma 9 74336 -NCIT:C162612 Recurrent Adamantinomatous Craniopharyngioma 10 74337 -NCIT:C4010 Adult Craniopharyngioma 9 74338 -NCIT:C188949 Adult Adamantinomatous Craniopharyngioma 10 74339 -NCIT:C4725 Papillary Craniopharyngioma 9 74340 -NCIT:C4726 Adamantinomatous Craniopharyngioma 9 74341 -NCIT:C162612 Recurrent Adamantinomatous Craniopharyngioma 10 74342 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 10 74343 -NCIT:C188949 Adult Adamantinomatous Craniopharyngioma 10 74344 -NCIT:C7816 Childhood Craniopharyngioma 9 74345 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 10 74346 -NCIT:C4963 Benign Supratentorial Neoplasm 8 74347 -NCIT:C3631 Benign Pineal Region Neoplasm 9 74348 -NCIT:C6754 Pineal Region Mature Teratoma 10 74349 -NCIT:C6966 Pineocytoma 10 74350 -NCIT:C8291 Adult Pineocytoma 11 74351 -NCIT:C4782 Benign Pituitary Gland Neoplasm 9 74352 -NCIT:C5127 Benign Diencephalic Neoplasm 9 74353 -NCIT:C6222 Benign Thalamic Neoplasm 10 74354 -NCIT:C5799 Childhood Benign Supratentorial Neoplasm 9 74355 -NCIT:C5800 Childhood Choroid Plexus Papilloma 10 74356 -NCIT:C6219 Childhood Benign Cerebral Neoplasm 10 74357 -NCIT:C8548 Benign Cerebral Neoplasm 9 74358 -NCIT:C5433 Cerebral Hemangioma 10 74359 -NCIT:C6218 Adult Benign Cerebral Neoplasm 10 74360 -NCIT:C6219 Childhood Benign Cerebral Neoplasm 10 74361 -NCIT:C6220 Cerebral Hemisphere Lipoma 10 74362 -NCIT:C5438 Corpus Callosum Lipoma 11 74363 -NCIT:C4965 Benign Infratentorial Neoplasm 8 74364 -NCIT:C4955 Benign Cerebellar Neoplasm 9 74365 -NCIT:C5796 Adult Benign Cerebellar Neoplasm 10 74366 -NCIT:C6809 Cerebellar Pilocytic Astrocytoma 10 74367 -NCIT:C5413 Cerebellopontine Angle Schwannoma 9 74368 -NCIT:C8549 Benign Brain Stem Neoplasm 9 74369 -NCIT:C5797 Adult Benign Brain Stem Neoplasm 10 74370 -NCIT:C5116 Adult Benign Brain Neoplasm 8 74371 -NCIT:C4010 Adult Craniopharyngioma 9 74372 -NCIT:C188949 Adult Adamantinomatous Craniopharyngioma 10 74373 -NCIT:C5796 Adult Benign Cerebellar Neoplasm 9 74374 -NCIT:C5797 Adult Benign Brain Stem Neoplasm 9 74375 -NCIT:C6218 Adult Benign Cerebral Neoplasm 9 74376 -NCIT:C8291 Adult Pineocytoma 9 74377 -NCIT:C5798 Childhood Benign Brain Neoplasm 8 74378 -NCIT:C5799 Childhood Benign Supratentorial Neoplasm 9 74379 -NCIT:C5800 Childhood Choroid Plexus Papilloma 10 74380 -NCIT:C6219 Childhood Benign Cerebral Neoplasm 10 74381 -NCIT:C7816 Childhood Craniopharyngioma 9 74382 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 10 74383 -NCIT:C7739 Brain Hemangioma 8 74384 -NCIT:C5433 Cerebral Hemangioma 9 74385 -NCIT:C8405 Benign Choroid Plexus Neoplasm 8 74386 -NCIT:C3698 Choroid Plexus Papilloma 9 74387 -NCIT:C5800 Childhood Choroid Plexus Papilloma 10 74388 -NCIT:C5133 Benign Intracranial Meningioma 7 74389 -NCIT:C5444 Intracranial Lipoma 7 74390 -NCIT:C5452 Inner Ear Lipoma 8 74391 -NCIT:C6220 Cerebral Hemisphere Lipoma 8 74392 -NCIT:C5438 Corpus Callosum Lipoma 9 74393 -NCIT:C5591 Childhood Benign Central Nervous System Neoplasm 6 74394 -NCIT:C27404 Childhood Central Nervous System Mature Teratoma 7 74395 -NCIT:C5798 Childhood Benign Brain Neoplasm 7 74396 -NCIT:C5799 Childhood Benign Supratentorial Neoplasm 8 74397 -NCIT:C5800 Childhood Choroid Plexus Papilloma 9 74398 -NCIT:C6219 Childhood Benign Cerebral Neoplasm 9 74399 -NCIT:C7816 Childhood Craniopharyngioma 8 74400 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 9 74401 -NCIT:C6757 Benign Central Nervous System Mesenchymal, Non-Meningothelial Neoplasm 6 74402 -NCIT:C129549 Intracranial Fibrous Histiocytoma 7 74403 -NCIT:C129551 Central Nervous System Myofibroblastoma 7 74404 -NCIT:C5451 Central Nervous System Lipoma 7 74405 -NCIT:C129538 Central Nervous System Angiolipoma 8 74406 -NCIT:C5424 Epidural Spinal Canal Angiolipoma 9 74407 -NCIT:C4619 Spinal Cord Lipoma 8 74408 -NCIT:C5444 Intracranial Lipoma 8 74409 -NCIT:C5452 Inner Ear Lipoma 9 74410 -NCIT:C6220 Cerebral Hemisphere Lipoma 9 74411 -NCIT:C5438 Corpus Callosum Lipoma 10 74412 -NCIT:C6997 Central Nervous System Hibernoma 8 74413 -NCIT:C6998 Central Nervous System Leiomyoma 7 74414 -NCIT:C7000 Central Nervous System Rhabdomyoma 7 74415 -NCIT:C7001 Central Nervous System Chondroma 7 74416 -NCIT:C7004 Central Nervous System Hemangioma 7 74417 -NCIT:C84621 Central Nervous System Cavernous Hemangioma 8 74418 -NCIT:C5432 Intracranial Cavernous Hemangioma 9 74419 -NCIT:C7013 Central Nervous System Mature Teratoma 6 74420 -NCIT:C155808 Sellar Mature Teratoma 7 74421 -NCIT:C27400 Adult Central Nervous System Mature Teratoma 7 74422 -NCIT:C27404 Childhood Central Nervous System Mature Teratoma 7 74423 -NCIT:C5508 Central Nervous System Dermoid Cyst 7 74424 -NCIT:C6808 Dermoid Cyst of the Spinal Cord 8 74425 -NCIT:C6754 Pineal Region Mature Teratoma 7 74426 -NCIT:C3059 Glioma 5 74427 -NCIT:C129325 Diffuse Glioma 6 74428 -NCIT:C167335 Astrocytoma, IDH-Mutant, Grade 4 7 74429 -NCIT:C182018 Recurrent Astrocytoma, IDH-Mutant, Grade 4 8 74430 -NCIT:C182151 Diffuse Midline Glioma 7 74431 -NCIT:C182436 Diffuse Non-Pontine Midline Glioma 8 74432 -NCIT:C185368 Diffuse Midline Glioma, H3 K27-Altered 8 74433 -NCIT:C129309 Diffuse Midline Glioma, H3 K27M-Mutant 9 74434 -NCIT:C179222 Recurrent Diffuse Midline Glioma, H3 K27M-Mutant 10 74435 -NCIT:C185369 Diffuse Midline Glioma, EGFR-Mutant 9 74436 -NCIT:C185370 Diffuse Midline Glioma with EZHIP Overexpression 9 74437 -NCIT:C188922 Childhood Diffuse Midline Glioma, H3 K27-Altered 9 74438 -NCIT:C188923 Adult Diffuse Midline Glioma, H3 K27-Altered 9 74439 -NCIT:C94764 Diffuse Intrinsic Pontine Glioma 8 74440 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 9 74441 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 9 74442 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 9 74443 -NCIT:C188925 Adult Diffuse Intrinsic Pontine Glioma 9 74444 -NCIT:C185218 Diffuse Low Grade Glioma, MAPK Pathway-Altered 7 74445 -NCIT:C185219 Diffuse Low Grade Glioma, FGFR1 Tyrosine Kinase Domain-Duplicated 8 74446 -NCIT:C185220 Diffuse Low Grade Glioma, FGFR1-Mutant 8 74447 -NCIT:C185221 Diffuse Low Grade Glioma, BRAF p.V600E-Mutant 8 74448 -NCIT:C185371 Diffuse Hemispheric Glioma, H3 G34-Mutant 7 74449 -NCIT:C188926 Childhood Diffuse Hemispheric Glioma, H3 G34-Mutant 8 74450 -NCIT:C188927 Adult Diffuse Hemispheric Glioma, H3 G34-Mutant 8 74451 -NCIT:C185467 Diffuse Pediatric-Type High Grade Glioma, H3-Wildtype and IDH-Wildtype 7 74452 -NCIT:C185468 Diffuse Pediatric-Type High Grade Glioma RTK2 8 74453 -NCIT:C185469 Diffuse Pediatric-Type High Grade Glioma RTK1 8 74454 -NCIT:C185470 Diffuse Pediatric-Type High Grade Glioma MYCN 8 74455 -NCIT:C3058 Glioblastoma 7 74456 -NCIT:C111691 Glioblastoma by Gene Expression Profile 8 74457 -NCIT:C111692 Proneural Glioblastoma 9 74458 -NCIT:C111693 Neural Glioblastoma 9 74459 -NCIT:C111694 Classical Glioblastoma 9 74460 -NCIT:C111695 Mesenchymal Glioblastoma 9 74461 -NCIT:C126306 Recurrent Glioblastoma 8 74462 -NCIT:C115364 Recurrent Childhood Glioblastoma 9 74463 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 10 74464 -NCIT:C115365 Recurrent Childhood Gliosarcoma 10 74465 -NCIT:C182019 Recurrent Glioblastoma, IDH-Wildtype 9 74466 -NCIT:C131209 Recurrent Gliosarcoma 10 74467 -NCIT:C115365 Recurrent Childhood Gliosarcoma 11 74468 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 10 74469 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 11 74470 -NCIT:C163961 Recurrent Small Cell Glioblastoma 10 74471 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 10 74472 -NCIT:C191198 Recurrent Brain Glioblastoma 9 74473 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 10 74474 -NCIT:C129295 Glioblastoma, Not Otherwise Specified 8 74475 -NCIT:C146734 Refractory Glioblastoma 8 74476 -NCIT:C163960 Refractory Small Cell Glioblastoma 9 74477 -NCIT:C163962 Refractory Gliosarcoma 9 74478 -NCIT:C176998 Refractory Giant Cell Glioblastoma 9 74479 -NCIT:C166156 Resectable Glioblastoma 8 74480 -NCIT:C170979 Metastatic Glioblastoma 8 74481 -NCIT:C170978 Advanced Glioblastoma 9 74482 -NCIT:C170980 Locally Advanced Glioblastoma 9 74483 -NCIT:C176890 Unresectable Glioblastoma 8 74484 -NCIT:C39750 Glioblastoma, IDH-Wildtype 8 74485 -NCIT:C125890 Small Cell Glioblastoma 9 74486 -NCIT:C163960 Refractory Small Cell Glioblastoma 10 74487 -NCIT:C163961 Recurrent Small Cell Glioblastoma 10 74488 -NCIT:C129293 Epithelioid Glioblastoma 9 74489 -NCIT:C129296 Glioblastoma with Primitive Neuronal Component 9 74490 -NCIT:C132902 MGMT-Unmethylated Glioblastoma 9 74491 -NCIT:C154335 MGMT-Methylated Glioblastoma 9 74492 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 10 74493 -NCIT:C182019 Recurrent Glioblastoma, IDH-Wildtype 9 74494 -NCIT:C131209 Recurrent Gliosarcoma 10 74495 -NCIT:C115365 Recurrent Childhood Gliosarcoma 11 74496 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 10 74497 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 11 74498 -NCIT:C163961 Recurrent Small Cell Glioblastoma 10 74499 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 10 74500 -NCIT:C185178 Granular Cell Glioblastoma 9 74501 -NCIT:C185180 Lipidized Glioblastoma 9 74502 -NCIT:C3796 Gliosarcoma 9 74503 -NCIT:C114968 Childhood Gliosarcoma 10 74504 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 11 74505 -NCIT:C115365 Recurrent Childhood Gliosarcoma 11 74506 -NCIT:C131209 Recurrent Gliosarcoma 10 74507 -NCIT:C115365 Recurrent Childhood Gliosarcoma 11 74508 -NCIT:C163962 Refractory Gliosarcoma 10 74509 -NCIT:C171013 Supratentorial Gliosarcoma 10 74510 -NCIT:C68701 Adult Gliosarcoma 10 74511 -NCIT:C9370 Adult Brain Stem Gliosarcoma 11 74512 -NCIT:C4325 Giant Cell Glioblastoma 9 74513 -NCIT:C114966 Childhood Giant Cell Glioblastoma 10 74514 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 11 74515 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 10 74516 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 11 74517 -NCIT:C176998 Refractory Giant Cell Glioblastoma 10 74518 -NCIT:C68702 Adult Giant Cell Glioblastoma 10 74519 -NCIT:C39751 Secondary Glioblastoma 8 74520 -NCIT:C4642 Brain Glioblastoma 8 74521 -NCIT:C147901 Childhood Brain Glioblastoma 9 74522 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 74523 -NCIT:C191198 Recurrent Brain Glioblastoma 9 74524 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 10 74525 -NCIT:C5148 Infratentorial Glioblastoma 9 74526 -NCIT:C5097 Brain Stem Glioblastoma 10 74527 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 11 74528 -NCIT:C9370 Adult Brain Stem Gliosarcoma 11 74529 -NCIT:C5150 Cerebellar Glioblastoma 10 74530 -NCIT:C5149 Supratentorial Glioblastoma 9 74531 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 10 74532 -NCIT:C5129 Diencephalic Glioblastoma 10 74533 -NCIT:C5151 Cerebral Glioblastoma 10 74534 -NCIT:C171013 Supratentorial Gliosarcoma 11 74535 -NCIT:C9375 Adult Brain Glioblastoma 9 74536 -NCIT:C9370 Adult Brain Stem Gliosarcoma 10 74537 -NCIT:C5136 Childhood Glioblastoma 8 74538 -NCIT:C114966 Childhood Giant Cell Glioblastoma 9 74539 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 10 74540 -NCIT:C114968 Childhood Gliosarcoma 9 74541 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 74542 -NCIT:C115365 Recurrent Childhood Gliosarcoma 10 74543 -NCIT:C115364 Recurrent Childhood Glioblastoma 9 74544 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 10 74545 -NCIT:C115365 Recurrent Childhood Gliosarcoma 10 74546 -NCIT:C147901 Childhood Brain Glioblastoma 9 74547 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 74548 -NCIT:C9094 Adult Glioblastoma 8 74549 -NCIT:C27183 Adult Spinal Cord Glioblastoma 9 74550 -NCIT:C68701 Adult Gliosarcoma 9 74551 -NCIT:C9370 Adult Brain Stem Gliosarcoma 10 74552 -NCIT:C68702 Adult Giant Cell Glioblastoma 9 74553 -NCIT:C9375 Adult Brain Glioblastoma 9 74554 -NCIT:C9370 Adult Brain Stem Gliosarcoma 10 74555 -NCIT:C92549 Multifocal Glioblastomas 8 74556 -NCIT:C3288 Oligodendroglioma 7 74557 -NCIT:C129318 Oligodendroglioma, IDH-Mutant and 1p/19q-Codeleted 8 74558 -NCIT:C188126 Recurrent Oligodendroglioma, IDH-Mutant and 1p/19q-Codeleted 9 74559 -NCIT:C129319 Oligodendroglioma, Not Otherwise Specified 8 74560 -NCIT:C160737 Recurrent Oligodendroglioma 8 74561 -NCIT:C115371 Recurrent Childhood Oligodendroglioma 9 74562 -NCIT:C188126 Recurrent Oligodendroglioma, IDH-Mutant and 1p/19q-Codeleted 9 74563 -NCIT:C188470 Resectable Oligodendroglioma 8 74564 -NCIT:C4014 Adult Oligodendroglioma 8 74565 -NCIT:C9376 Adult Brain Oligodendroglioma 9 74566 -NCIT:C4045 Childhood Oligodendroglioma 8 74567 -NCIT:C114773 Childhood Brain Oligodendroglioma 9 74568 -NCIT:C115371 Recurrent Childhood Oligodendroglioma 9 74569 -NCIT:C4535 Spinal Cord Oligodendroglioma 8 74570 -NCIT:C9377 Brain Oligodendroglioma 8 74571 -NCIT:C114773 Childhood Brain Oligodendroglioma 9 74572 -NCIT:C9376 Adult Brain Oligodendroglioma 9 74573 -NCIT:C3903 Mixed Glioma 7 74574 -NCIT:C115195 Childhood Mixed Glioma 8 74575 -NCIT:C114760 Childhood Brain Stem Mixed Glioma 9 74576 -NCIT:C114973 Childhood Anaplastic Oligoastrocytoma 9 74577 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 10 74578 -NCIT:C114974 Childhood Oligoastrocytoma 9 74579 -NCIT:C115370 Recurrent Childhood Oligoastrocytoma 10 74580 -NCIT:C115250 Adult Mixed Glioma 8 74581 -NCIT:C9371 Adult Brain Stem Mixed Glioma 9 74582 -NCIT:C4050 Oligoastrocytoma 8 74583 -NCIT:C114974 Childhood Oligoastrocytoma 9 74584 -NCIT:C115370 Recurrent Childhood Oligoastrocytoma 10 74585 -NCIT:C129323 Oligoastrocytoma, Not Otherwise Specified 9 74586 -NCIT:C167082 Recurrent Oligoastrocytoma 9 74587 -NCIT:C115370 Recurrent Childhood Oligoastrocytoma 10 74588 -NCIT:C6959 Anaplastic Oligoastrocytoma 8 74589 -NCIT:C114973 Childhood Anaplastic Oligoastrocytoma 9 74590 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 10 74591 -NCIT:C129324 Anaplastic Oligoastrocytoma, Not Otherwise Specified 9 74592 -NCIT:C142861 Recurrent Anaplastic Oligoastrocytoma 9 74593 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 10 74594 -NCIT:C8271 Mixed Astrocytoma-Ependymoma 8 74595 -NCIT:C8272 Mixed Astrocytoma-Ependymoma-Oligodendroglioma 8 74596 -NCIT:C4326 Anaplastic Oligodendroglioma 7 74597 -NCIT:C129321 Anaplastic Oligodendroglioma, IDH-Mutant and 1p/19q-Codeleted 8 74598 -NCIT:C129322 Anaplastic Oligodendroglioma, Not Otherwise Specified 8 74599 -NCIT:C142862 Recurrent Anaplastic Oligodendroglioma 8 74600 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 9 74601 -NCIT:C156120 Frontal Lobe Anaplastic Oligodendroglioma 8 74602 -NCIT:C169074 Refractory Anaplastic Oligodendroglioma 8 74603 -NCIT:C5447 Childhood Anaplastic Oligodendroglioma 8 74604 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 9 74605 -NCIT:C8270 Adult Anaplastic Oligodendroglioma 8 74606 -NCIT:C7173 Diffuse Astrocytoma 7 74607 -NCIT:C114967 Childhood Diffuse Astrocytoma 8 74608 -NCIT:C114963 Childhood Fibrillary Astrocytoma 9 74609 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 10 74610 -NCIT:C114964 Childhood Gemistocytic Astrocytoma 9 74611 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 10 74612 -NCIT:C114972 Childhood Protoplasmic Astrocytoma 9 74613 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 10 74614 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 9 74615 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 10 74616 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 10 74617 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 10 74618 -NCIT:C188920 Childhood Diffuse Astrocytoma, MYBL1-Altered 9 74619 -NCIT:C188921 Childhood Diffuse Astrocytoma, MYB-Altered 9 74620 -NCIT:C8387 Childhood Cerebral Diffuse Astrocytoma 9 74621 -NCIT:C129271 Astrocytoma, IDH-Mutant, Grade 2 8 74622 -NCIT:C129272 Gemistocytic Astrocytoma, IDH-Mutant 9 74623 -NCIT:C129274 Diffuse Astrocytoma, IDH-Wildtype 8 74624 -NCIT:C185195 Diffuse Astrocytoma, MYB-Altered 9 74625 -NCIT:C188921 Childhood Diffuse Astrocytoma, MYB-Altered 10 74626 -NCIT:C185196 Diffuse Astrocytoma, MYBL1-Altered 9 74627 -NCIT:C188920 Childhood Diffuse Astrocytoma, MYBL1-Altered 10 74628 -NCIT:C129277 Diffuse Astrocytoma, Not Otherwise Specified 8 74629 -NCIT:C167081 Recurrent Diffuse Astrocytoma 8 74630 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 9 74631 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 10 74632 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 10 74633 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 10 74634 -NCIT:C4320 Protoplasmic Astrocytoma 8 74635 -NCIT:C114972 Childhood Protoplasmic Astrocytoma 9 74636 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 10 74637 -NCIT:C4321 Gemistocytic Astrocytoma 8 74638 -NCIT:C114964 Childhood Gemistocytic Astrocytoma 9 74639 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 10 74640 -NCIT:C129272 Gemistocytic Astrocytoma, IDH-Mutant 9 74641 -NCIT:C4322 Fibrillary Astrocytoma 8 74642 -NCIT:C114963 Childhood Fibrillary Astrocytoma 9 74643 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 10 74644 -NCIT:C7174 Adult Diffuse Astrocytoma 8 74645 -NCIT:C9477 Anaplastic Astrocytoma 7 74646 -NCIT:C129290 Astrocytoma, IDH-Mutant, Grade 3 8 74647 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 9 74648 -NCIT:C129291 Anaplastic Astrocytoma, IDH-Wildtype 8 74649 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 9 74650 -NCIT:C129292 Anaplastic Astrocytoma, Not Otherwise Specified 8 74651 -NCIT:C136517 Recurrent Anaplastic Astrocytoma 8 74652 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 9 74653 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 9 74654 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 9 74655 -NCIT:C169075 Refractory Anaplastic Astrocytoma 8 74656 -NCIT:C185879 High Grade Astrocytoma with Piloid Features 8 74657 -NCIT:C5123 Hemispheric Anaplastic Astrocytoma 8 74658 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 9 74659 -NCIT:C156035 Frontal Lobe Anaplastic Astrocytoma 9 74660 -NCIT:C156036 Temporal Lobe Anaplastic Astrocytoma 9 74661 -NCIT:C171036 Parietal Lobe Anaplastic Astrocytoma 9 74662 -NCIT:C5124 Anaplastic Diencephalic Astrocytoma 8 74663 -NCIT:C5416 Secondary Supratentorial Anaplastic Astrocytoma 8 74664 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 8 74665 -NCIT:C6215 Childhood Anaplastic Astrocytoma 8 74666 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 9 74667 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 9 74668 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 10 74669 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 10 74670 -NCIT:C8257 Adult Anaplastic Astrocytoma 8 74671 -NCIT:C132067 Low Grade Glioma 6 74672 -NCIT:C116342 Low Grade Astrocytoma 7 74673 -NCIT:C176464 Recurrent Low Grade Astrocytoma 8 74674 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 9 74675 -NCIT:C167081 Recurrent Diffuse Astrocytoma 9 74676 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 10 74677 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 11 74678 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 11 74679 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 11 74680 -NCIT:C179220 Recurrent Pilocytic Astrocytoma 9 74681 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 10 74682 -NCIT:C177795 Refractory Low Grade Astrocytoma 8 74683 -NCIT:C178559 Metastatic Low Grade Astrocytoma 8 74684 -NCIT:C3696 Subependymal Giant Cell Astrocytoma 8 74685 -NCIT:C114785 Childhood Subependymal Giant Cell Astrocytoma 9 74686 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 10 74687 -NCIT:C71017 Adult Subependymal Giant Cell Astrocytoma 9 74688 -NCIT:C4047 Pilocytic Astrocytoma 8 74689 -NCIT:C156037 Third Ventricle Pilocytic Astrocytoma 9 74690 -NCIT:C179220 Recurrent Pilocytic Astrocytoma 9 74691 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 10 74692 -NCIT:C4048 Childhood Pilocytic Astrocytoma 9 74693 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 10 74694 -NCIT:C27081 Juvenile Pilocytic Astrocytoma 10 74695 -NCIT:C6809 Cerebellar Pilocytic Astrocytoma 9 74696 -NCIT:C71016 Adult Pilocytic Astrocytoma 9 74697 -NCIT:C7173 Diffuse Astrocytoma 8 74698 -NCIT:C114967 Childhood Diffuse Astrocytoma 9 74699 -NCIT:C114963 Childhood Fibrillary Astrocytoma 10 74700 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 11 74701 -NCIT:C114964 Childhood Gemistocytic Astrocytoma 10 74702 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 11 74703 -NCIT:C114972 Childhood Protoplasmic Astrocytoma 10 74704 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 11 74705 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 10 74706 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 11 74707 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 11 74708 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 11 74709 -NCIT:C188920 Childhood Diffuse Astrocytoma, MYBL1-Altered 10 74710 -NCIT:C188921 Childhood Diffuse Astrocytoma, MYB-Altered 10 74711 -NCIT:C8387 Childhood Cerebral Diffuse Astrocytoma 10 74712 -NCIT:C129271 Astrocytoma, IDH-Mutant, Grade 2 9 74713 -NCIT:C129272 Gemistocytic Astrocytoma, IDH-Mutant 10 74714 -NCIT:C129274 Diffuse Astrocytoma, IDH-Wildtype 9 74715 -NCIT:C185195 Diffuse Astrocytoma, MYB-Altered 10 74716 -NCIT:C188921 Childhood Diffuse Astrocytoma, MYB-Altered 11 74717 -NCIT:C185196 Diffuse Astrocytoma, MYBL1-Altered 10 74718 -NCIT:C188920 Childhood Diffuse Astrocytoma, MYBL1-Altered 11 74719 -NCIT:C129277 Diffuse Astrocytoma, Not Otherwise Specified 9 74720 -NCIT:C167081 Recurrent Diffuse Astrocytoma 9 74721 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 10 74722 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 11 74723 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 11 74724 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 11 74725 -NCIT:C4320 Protoplasmic Astrocytoma 9 74726 -NCIT:C114972 Childhood Protoplasmic Astrocytoma 10 74727 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 11 74728 -NCIT:C4321 Gemistocytic Astrocytoma 9 74729 -NCIT:C114964 Childhood Gemistocytic Astrocytoma 10 74730 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 11 74731 -NCIT:C129272 Gemistocytic Astrocytoma, IDH-Mutant 10 74732 -NCIT:C4322 Fibrillary Astrocytoma 9 74733 -NCIT:C114963 Childhood Fibrillary Astrocytoma 10 74734 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 11 74735 -NCIT:C7174 Adult Diffuse Astrocytoma 9 74736 -NCIT:C132505 WHO Grade 2 Glioma 7 74737 -NCIT:C148037 Recurrent WHO Grade 2 Glioma 8 74738 -NCIT:C157601 Recurrent Ependymoma 9 74739 -NCIT:C8579 Recurrent Childhood Ependymoma 10 74740 -NCIT:C160737 Recurrent Oligodendroglioma 9 74741 -NCIT:C115371 Recurrent Childhood Oligodendroglioma 10 74742 -NCIT:C188126 Recurrent Oligodendroglioma, IDH-Mutant and 1p/19q-Codeleted 10 74743 -NCIT:C167081 Recurrent Diffuse Astrocytoma 9 74744 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 10 74745 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 11 74746 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 11 74747 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 11 74748 -NCIT:C167082 Recurrent Oligoastrocytoma 9 74749 -NCIT:C115370 Recurrent Childhood Oligoastrocytoma 10 74750 -NCIT:C158104 Refractory WHO Grade 2 Glioma 8 74751 -NCIT:C147108 Refractory Ependymoma 9 74752 -NCIT:C3017 Ependymoma 8 74753 -NCIT:C147108 Refractory Ependymoma 9 74754 -NCIT:C156462 Brain Ependymoma 9 74755 -NCIT:C186343 Supratentorial Ependymoma 10 74756 -NCIT:C186348 Supratentorial Ependymoma, Not Elsewhere Classified 11 74757 -NCIT:C186349 Supratentorial Ependymoma, Not Otherwise Specified 11 74758 -NCIT:C9043 Childhood Supratentorial Ependymoma, Not Otherwise Specified 12 74759 -NCIT:C6268 Childhood Cerebral Ependymoma, Not Otherwise Specified 13 74760 -NCIT:C186350 Supratentorial Ependymoma ZFTA Fusion-Positive 10 74761 -NCIT:C129351 Supratentorial Ependymoma, ZFTA-RELA Fusion-Positive 11 74762 -NCIT:C188935 Childhood Supratentorial Ependymoma ZFTA Fusion-Positive 11 74763 -NCIT:C188938 Adult Supratentorial Ependymoma ZFTA Fusion-Positive 11 74764 -NCIT:C186351 Supratentorial Ependymoma YAP1 Fusion-Positive 10 74765 -NCIT:C186355 Supratentorial Ependymoma, YAP1-MAMLD1 Fusion-Positive 11 74766 -NCIT:C186443 Posterior Fossa Ependymoma 10 74767 -NCIT:C186448 Posterior Fossa Ependymoma, Not Elsewhere Classified 11 74768 -NCIT:C186449 Posterior Fossa Ependymoma, Not Otherwise Specified 11 74769 -NCIT:C188943 Childhood Posterior Fossa Ependymoma 11 74770 -NCIT:C188945 Adult Posterior Fossa Ependymoma 11 74771 -NCIT:C186450 Posterior Fossa Ependymoma, Group A (PFA) 10 74772 -NCIT:C186451 Posterior Fossa Ependymoma, Group B (PFB) 10 74773 -NCIT:C5098 Brain Stem Ependymoma 10 74774 -NCIT:C9041 Childhood Infratentorial Ependymoma 10 74775 -NCIT:C9372 Adult Brain Ependymoma 10 74776 -NCIT:C188938 Adult Supratentorial Ependymoma ZFTA Fusion-Positive 11 74777 -NCIT:C188945 Adult Posterior Fossa Ependymoma 11 74778 -NCIT:C157601 Recurrent Ependymoma 9 74779 -NCIT:C8579 Recurrent Childhood Ependymoma 10 74780 -NCIT:C186494 Spinal Cord Ependymoma, MYCN Amplified 9 74781 -NCIT:C3875 Spinal Cord Ependymoma 9 74782 -NCIT:C186495 Childhood Spinal Cord Ependymoma 10 74783 -NCIT:C27399 Adult Spinal Cord Ependymoma 10 74784 -NCIT:C4319 Papillary Ependymoma 9 74785 -NCIT:C4713 Cellular Ependymoma 9 74786 -NCIT:C4714 Clear Cell Ependymoma 9 74787 -NCIT:C6903 Tanycytic Ependymoma 9 74788 -NCIT:C8578 Childhood Ependymoma 9 74789 -NCIT:C186351 Supratentorial Ependymoma YAP1 Fusion-Positive 10 74790 -NCIT:C186355 Supratentorial Ependymoma, YAP1-MAMLD1 Fusion-Positive 11 74791 -NCIT:C186495 Childhood Spinal Cord Ependymoma 10 74792 -NCIT:C188935 Childhood Supratentorial Ependymoma ZFTA Fusion-Positive 10 74793 -NCIT:C188943 Childhood Posterior Fossa Ependymoma 10 74794 -NCIT:C8579 Recurrent Childhood Ependymoma 10 74795 -NCIT:C9041 Childhood Infratentorial Ependymoma 10 74796 -NCIT:C9043 Childhood Supratentorial Ependymoma, Not Otherwise Specified 10 74797 -NCIT:C6268 Childhood Cerebral Ependymoma, Not Otherwise Specified 11 74798 -NCIT:C9092 Adult Ependymoma 9 74799 -NCIT:C27399 Adult Spinal Cord Ependymoma 10 74800 -NCIT:C9372 Adult Brain Ependymoma 10 74801 -NCIT:C188938 Adult Supratentorial Ependymoma ZFTA Fusion-Positive 11 74802 -NCIT:C188945 Adult Posterior Fossa Ependymoma 11 74803 -NCIT:C3288 Oligodendroglioma 8 74804 -NCIT:C129318 Oligodendroglioma, IDH-Mutant and 1p/19q-Codeleted 9 74805 -NCIT:C188126 Recurrent Oligodendroglioma, IDH-Mutant and 1p/19q-Codeleted 10 74806 -NCIT:C129319 Oligodendroglioma, Not Otherwise Specified 9 74807 -NCIT:C160737 Recurrent Oligodendroglioma 9 74808 -NCIT:C115371 Recurrent Childhood Oligodendroglioma 10 74809 -NCIT:C188126 Recurrent Oligodendroglioma, IDH-Mutant and 1p/19q-Codeleted 10 74810 -NCIT:C188470 Resectable Oligodendroglioma 9 74811 -NCIT:C4014 Adult Oligodendroglioma 9 74812 -NCIT:C9376 Adult Brain Oligodendroglioma 10 74813 -NCIT:C4045 Childhood Oligodendroglioma 9 74814 -NCIT:C114773 Childhood Brain Oligodendroglioma 10 74815 -NCIT:C115371 Recurrent Childhood Oligodendroglioma 10 74816 -NCIT:C4535 Spinal Cord Oligodendroglioma 9 74817 -NCIT:C9377 Brain Oligodendroglioma 9 74818 -NCIT:C114773 Childhood Brain Oligodendroglioma 10 74819 -NCIT:C9376 Adult Brain Oligodendroglioma 10 74820 -NCIT:C4050 Oligoastrocytoma 8 74821 -NCIT:C114974 Childhood Oligoastrocytoma 9 74822 -NCIT:C115370 Recurrent Childhood Oligoastrocytoma 10 74823 -NCIT:C129323 Oligoastrocytoma, Not Otherwise Specified 9 74824 -NCIT:C167082 Recurrent Oligoastrocytoma 9 74825 -NCIT:C115370 Recurrent Childhood Oligoastrocytoma 10 74826 -NCIT:C7173 Diffuse Astrocytoma 8 74827 -NCIT:C114967 Childhood Diffuse Astrocytoma 9 74828 -NCIT:C114963 Childhood Fibrillary Astrocytoma 10 74829 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 11 74830 -NCIT:C114964 Childhood Gemistocytic Astrocytoma 10 74831 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 11 74832 -NCIT:C114972 Childhood Protoplasmic Astrocytoma 10 74833 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 11 74834 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 10 74835 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 11 74836 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 11 74837 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 11 74838 -NCIT:C188920 Childhood Diffuse Astrocytoma, MYBL1-Altered 10 74839 -NCIT:C188921 Childhood Diffuse Astrocytoma, MYB-Altered 10 74840 -NCIT:C8387 Childhood Cerebral Diffuse Astrocytoma 10 74841 -NCIT:C129271 Astrocytoma, IDH-Mutant, Grade 2 9 74842 -NCIT:C129272 Gemistocytic Astrocytoma, IDH-Mutant 10 74843 -NCIT:C129274 Diffuse Astrocytoma, IDH-Wildtype 9 74844 -NCIT:C185195 Diffuse Astrocytoma, MYB-Altered 10 74845 -NCIT:C188921 Childhood Diffuse Astrocytoma, MYB-Altered 11 74846 -NCIT:C185196 Diffuse Astrocytoma, MYBL1-Altered 10 74847 -NCIT:C188920 Childhood Diffuse Astrocytoma, MYBL1-Altered 11 74848 -NCIT:C129277 Diffuse Astrocytoma, Not Otherwise Specified 9 74849 -NCIT:C167081 Recurrent Diffuse Astrocytoma 9 74850 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 10 74851 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 11 74852 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 11 74853 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 11 74854 -NCIT:C4320 Protoplasmic Astrocytoma 9 74855 -NCIT:C114972 Childhood Protoplasmic Astrocytoma 10 74856 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 11 74857 -NCIT:C4321 Gemistocytic Astrocytoma 9 74858 -NCIT:C114964 Childhood Gemistocytic Astrocytoma 10 74859 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 11 74860 -NCIT:C129272 Gemistocytic Astrocytoma, IDH-Mutant 10 74861 -NCIT:C4322 Fibrillary Astrocytoma 9 74862 -NCIT:C114963 Childhood Fibrillary Astrocytoma 10 74863 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 11 74864 -NCIT:C7174 Adult Diffuse Astrocytoma 9 74865 -NCIT:C155829 Unresectable Low Grade Glioma 7 74866 -NCIT:C177793 Refractory Low Grade Glioma 7 74867 -NCIT:C158104 Refractory WHO Grade 2 Glioma 8 74868 -NCIT:C147108 Refractory Ependymoma 9 74869 -NCIT:C177795 Refractory Low Grade Astrocytoma 8 74870 -NCIT:C177798 Refractory WHO Grade 1 Glioma 8 74871 -NCIT:C177794 Recurrent Low Grade Glioma 7 74872 -NCIT:C148037 Recurrent WHO Grade 2 Glioma 8 74873 -NCIT:C157601 Recurrent Ependymoma 9 74874 -NCIT:C8579 Recurrent Childhood Ependymoma 10 74875 -NCIT:C160737 Recurrent Oligodendroglioma 9 74876 -NCIT:C115371 Recurrent Childhood Oligodendroglioma 10 74877 -NCIT:C188126 Recurrent Oligodendroglioma, IDH-Mutant and 1p/19q-Codeleted 10 74878 -NCIT:C167081 Recurrent Diffuse Astrocytoma 9 74879 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 10 74880 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 11 74881 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 11 74882 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 11 74883 -NCIT:C167082 Recurrent Oligoastrocytoma 9 74884 -NCIT:C115370 Recurrent Childhood Oligoastrocytoma 10 74885 -NCIT:C176464 Recurrent Low Grade Astrocytoma 8 74886 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 9 74887 -NCIT:C167081 Recurrent Diffuse Astrocytoma 9 74888 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 10 74889 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 11 74890 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 11 74891 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 11 74892 -NCIT:C179220 Recurrent Pilocytic Astrocytoma 9 74893 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 10 74894 -NCIT:C177796 Recurrent WHO Grade 1 Glioma 8 74895 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 9 74896 -NCIT:C179220 Recurrent Pilocytic Astrocytoma 9 74897 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 10 74898 -NCIT:C177797 WHO Grade 1 Glioma 7 74899 -NCIT:C177796 Recurrent WHO Grade 1 Glioma 8 74900 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 9 74901 -NCIT:C179220 Recurrent Pilocytic Astrocytoma 9 74902 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 10 74903 -NCIT:C177798 Refractory WHO Grade 1 Glioma 8 74904 -NCIT:C3696 Subependymal Giant Cell Astrocytoma 8 74905 -NCIT:C114785 Childhood Subependymal Giant Cell Astrocytoma 9 74906 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 10 74907 -NCIT:C71017 Adult Subependymal Giant Cell Astrocytoma 9 74908 -NCIT:C3795 Subependymoma 8 74909 -NCIT:C115623 Adult Subependymoma 9 74910 -NCIT:C4047 Pilocytic Astrocytoma 8 74911 -NCIT:C156037 Third Ventricle Pilocytic Astrocytoma 9 74912 -NCIT:C179220 Recurrent Pilocytic Astrocytoma 9 74913 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 10 74914 -NCIT:C4048 Childhood Pilocytic Astrocytoma 9 74915 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 10 74916 -NCIT:C27081 Juvenile Pilocytic Astrocytoma 10 74917 -NCIT:C6809 Cerebellar Pilocytic Astrocytoma 9 74918 -NCIT:C71016 Adult Pilocytic Astrocytoma 9 74919 -NCIT:C92552 Angiocentric Glioma 8 74920 -NCIT:C178558 Metastatic Low Grade Glioma 7 74921 -NCIT:C178559 Metastatic Low Grade Astrocytoma 8 74922 -NCIT:C185218 Diffuse Low Grade Glioma, MAPK Pathway-Altered 7 74923 -NCIT:C185219 Diffuse Low Grade Glioma, FGFR1 Tyrosine Kinase Domain-Duplicated 8 74924 -NCIT:C185220 Diffuse Low Grade Glioma, FGFR1-Mutant 8 74925 -NCIT:C185221 Diffuse Low Grade Glioma, BRAF p.V600E-Mutant 8 74926 -NCIT:C132506 Recurrent Glioma 6 74927 -NCIT:C114956 Recurrent Childhood Astrocytic Tumor 7 74928 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 8 74929 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 8 74930 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 9 74931 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 9 74932 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 9 74933 -NCIT:C115364 Recurrent Childhood Glioblastoma 8 74934 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 9 74935 -NCIT:C115365 Recurrent Childhood Gliosarcoma 9 74936 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 8 74937 -NCIT:C115373 Recurrent Childhood Pilomyxoid Astrocytoma 8 74938 -NCIT:C115375 Recurrent Childhood Pleomorphic Xanthoastrocytoma 8 74939 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 8 74940 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 8 74941 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 8 74942 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 9 74943 -NCIT:C8389 Recurrent Childhood Cerebellar Astrocytoma 8 74944 -NCIT:C9191 Recurrent Childhood Cerebral Astrocytoma 8 74945 -NCIT:C131617 Recurrent Ependymal Tumor 7 74946 -NCIT:C157601 Recurrent Ependymoma 8 74947 -NCIT:C8579 Recurrent Childhood Ependymoma 9 74948 -NCIT:C160912 Recurrent Anaplastic Ependymoma 8 74949 -NCIT:C142848 Recurrent Malignant Glioma 7 74950 -NCIT:C126306 Recurrent Glioblastoma 8 74951 -NCIT:C115364 Recurrent Childhood Glioblastoma 9 74952 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 10 74953 -NCIT:C115365 Recurrent Childhood Gliosarcoma 10 74954 -NCIT:C182019 Recurrent Glioblastoma, IDH-Wildtype 9 74955 -NCIT:C131209 Recurrent Gliosarcoma 10 74956 -NCIT:C115365 Recurrent Childhood Gliosarcoma 11 74957 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 10 74958 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 11 74959 -NCIT:C163961 Recurrent Small Cell Glioblastoma 10 74960 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 10 74961 -NCIT:C191198 Recurrent Brain Glioblastoma 9 74962 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 10 74963 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 8 74964 -NCIT:C148038 Recurrent WHO Grade 3 Glioma 8 74965 -NCIT:C136517 Recurrent Anaplastic Astrocytoma 9 74966 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 10 74967 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 10 74968 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 10 74969 -NCIT:C142861 Recurrent Anaplastic Oligoastrocytoma 9 74970 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 10 74971 -NCIT:C142862 Recurrent Anaplastic Oligodendroglioma 9 74972 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 10 74973 -NCIT:C160904 Recurrent Anaplastic Pleomorphic Xanthoastrocytoma 9 74974 -NCIT:C160912 Recurrent Anaplastic Ependymoma 9 74975 -NCIT:C179222 Recurrent Diffuse Midline Glioma, H3 K27M-Mutant 8 74976 -NCIT:C182018 Recurrent Astrocytoma, IDH-Mutant, Grade 4 8 74977 -NCIT:C155983 Recurrent Visual Pathway Glioma 7 74978 -NCIT:C7529 Recurrent Childhood Visual Pathway Glioma 8 74979 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 9 74980 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 74981 -NCIT:C7531 Recurrent Childhood Optic Nerve Glioma 9 74982 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 74983 -NCIT:C177794 Recurrent Low Grade Glioma 7 74984 -NCIT:C148037 Recurrent WHO Grade 2 Glioma 8 74985 -NCIT:C157601 Recurrent Ependymoma 9 74986 -NCIT:C8579 Recurrent Childhood Ependymoma 10 74987 -NCIT:C160737 Recurrent Oligodendroglioma 9 74988 -NCIT:C115371 Recurrent Childhood Oligodendroglioma 10 74989 -NCIT:C188126 Recurrent Oligodendroglioma, IDH-Mutant and 1p/19q-Codeleted 10 74990 -NCIT:C167081 Recurrent Diffuse Astrocytoma 9 74991 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 10 74992 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 11 74993 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 11 74994 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 11 74995 -NCIT:C167082 Recurrent Oligoastrocytoma 9 74996 -NCIT:C115370 Recurrent Childhood Oligoastrocytoma 10 74997 -NCIT:C176464 Recurrent Low Grade Astrocytoma 8 74998 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 9 74999 -NCIT:C167081 Recurrent Diffuse Astrocytoma 9 75000 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 10 75001 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 11 75002 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 11 75003 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 11 75004 -NCIT:C179220 Recurrent Pilocytic Astrocytoma 9 75005 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 10 75006 -NCIT:C177796 Recurrent WHO Grade 1 Glioma 8 75007 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 9 75008 -NCIT:C179220 Recurrent Pilocytic Astrocytoma 9 75009 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 10 75010 -NCIT:C180408 Recurrent Tectal Glioma 7 75011 -NCIT:C188127 Recurrent Astrocytoma, IDH-Mutant 7 75012 -NCIT:C182018 Recurrent Astrocytoma, IDH-Mutant, Grade 4 8 75013 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 8 75014 -NCIT:C9190 Recurrent Childhood Brain Stem Glioma 7 75015 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 8 75016 -NCIT:C147107 Refractory Glioma 6 75017 -NCIT:C142855 Refractory Malignant Glioma 7 75018 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 8 75019 -NCIT:C146734 Refractory Glioblastoma 8 75020 -NCIT:C163960 Refractory Small Cell Glioblastoma 9 75021 -NCIT:C163962 Refractory Gliosarcoma 9 75022 -NCIT:C176998 Refractory Giant Cell Glioblastoma 9 75023 -NCIT:C153865 Refractory WHO Grade 3 Glioma 8 75024 -NCIT:C160905 Refractory Anaplastic Pleomorphic Xanthoastrocytoma 9 75025 -NCIT:C160913 Refractory Anaplastic Ependymoma 9 75026 -NCIT:C169074 Refractory Anaplastic Oligodendroglioma 9 75027 -NCIT:C169075 Refractory Anaplastic Astrocytoma 9 75028 -NCIT:C155984 Refractory Visual Pathway Glioma 7 75029 -NCIT:C177793 Refractory Low Grade Glioma 7 75030 -NCIT:C158104 Refractory WHO Grade 2 Glioma 8 75031 -NCIT:C147108 Refractory Ependymoma 9 75032 -NCIT:C177795 Refractory Low Grade Astrocytoma 8 75033 -NCIT:C177798 Refractory WHO Grade 1 Glioma 8 75034 -NCIT:C168573 Resectable Glioma 6 75035 -NCIT:C166156 Resectable Glioblastoma 7 75036 -NCIT:C188469 Resectable Astrocytoma 7 75037 -NCIT:C188470 Resectable Oligodendroglioma 7 75038 -NCIT:C173846 Bilateral Thalamic Glioma 6 75039 -NCIT:C176889 Unresectable Glioma 6 75040 -NCIT:C155829 Unresectable Low Grade Glioma 7 75041 -NCIT:C176890 Unresectable Glioblastoma 7 75042 -NCIT:C180407 Tectal Glioma 6 75043 -NCIT:C180408 Recurrent Tectal Glioma 7 75044 -NCIT:C4324 Astroblastoma, MN1-Altered 6 75045 -NCIT:C188929 Childhood Astroblastoma, MN1-Altered 7 75046 -NCIT:C188930 Adult Astroblastoma, MN1-Altered 7 75047 -NCIT:C84347 Anaplastic Astroblastoma, MN1-Altered 7 75048 -NCIT:C4534 Spinal Cord Glioma 6 75049 -NCIT:C186494 Spinal Cord Ependymoma, MYCN Amplified 7 75050 -NCIT:C3875 Spinal Cord Ependymoma 7 75051 -NCIT:C186495 Childhood Spinal Cord Ependymoma 8 75052 -NCIT:C27399 Adult Spinal Cord Ependymoma 8 75053 -NCIT:C4535 Spinal Cord Oligodendroglioma 7 75054 -NCIT:C4641 Spinal Cord Astrocytoma 7 75055 -NCIT:C4822 Malignant Glioma 6 75056 -NCIT:C102897 High Grade Astrocytic Tumor 7 75057 -NCIT:C167335 Astrocytoma, IDH-Mutant, Grade 4 8 75058 -NCIT:C182018 Recurrent Astrocytoma, IDH-Mutant, Grade 4 9 75059 -NCIT:C3058 Glioblastoma 8 75060 -NCIT:C111691 Glioblastoma by Gene Expression Profile 9 75061 -NCIT:C111692 Proneural Glioblastoma 10 75062 -NCIT:C111693 Neural Glioblastoma 10 75063 -NCIT:C111694 Classical Glioblastoma 10 75064 -NCIT:C111695 Mesenchymal Glioblastoma 10 75065 -NCIT:C126306 Recurrent Glioblastoma 9 75066 -NCIT:C115364 Recurrent Childhood Glioblastoma 10 75067 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 11 75068 -NCIT:C115365 Recurrent Childhood Gliosarcoma 11 75069 -NCIT:C182019 Recurrent Glioblastoma, IDH-Wildtype 10 75070 -NCIT:C131209 Recurrent Gliosarcoma 11 75071 -NCIT:C115365 Recurrent Childhood Gliosarcoma 12 75072 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 11 75073 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 12 75074 -NCIT:C163961 Recurrent Small Cell Glioblastoma 11 75075 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 11 75076 -NCIT:C191198 Recurrent Brain Glioblastoma 10 75077 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 11 75078 -NCIT:C129295 Glioblastoma, Not Otherwise Specified 9 75079 -NCIT:C146734 Refractory Glioblastoma 9 75080 -NCIT:C163960 Refractory Small Cell Glioblastoma 10 75081 -NCIT:C163962 Refractory Gliosarcoma 10 75082 -NCIT:C176998 Refractory Giant Cell Glioblastoma 10 75083 -NCIT:C166156 Resectable Glioblastoma 9 75084 -NCIT:C170979 Metastatic Glioblastoma 9 75085 -NCIT:C170978 Advanced Glioblastoma 10 75086 -NCIT:C170980 Locally Advanced Glioblastoma 10 75087 -NCIT:C176890 Unresectable Glioblastoma 9 75088 -NCIT:C39750 Glioblastoma, IDH-Wildtype 9 75089 -NCIT:C125890 Small Cell Glioblastoma 10 75090 -NCIT:C163960 Refractory Small Cell Glioblastoma 11 75091 -NCIT:C163961 Recurrent Small Cell Glioblastoma 11 75092 -NCIT:C129293 Epithelioid Glioblastoma 10 75093 -NCIT:C129296 Glioblastoma with Primitive Neuronal Component 10 75094 -NCIT:C132902 MGMT-Unmethylated Glioblastoma 10 75095 -NCIT:C154335 MGMT-Methylated Glioblastoma 10 75096 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 11 75097 -NCIT:C182019 Recurrent Glioblastoma, IDH-Wildtype 10 75098 -NCIT:C131209 Recurrent Gliosarcoma 11 75099 -NCIT:C115365 Recurrent Childhood Gliosarcoma 12 75100 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 11 75101 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 12 75102 -NCIT:C163961 Recurrent Small Cell Glioblastoma 11 75103 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 11 75104 -NCIT:C185178 Granular Cell Glioblastoma 10 75105 -NCIT:C185180 Lipidized Glioblastoma 10 75106 -NCIT:C3796 Gliosarcoma 10 75107 -NCIT:C114968 Childhood Gliosarcoma 11 75108 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 12 75109 -NCIT:C115365 Recurrent Childhood Gliosarcoma 12 75110 -NCIT:C131209 Recurrent Gliosarcoma 11 75111 -NCIT:C115365 Recurrent Childhood Gliosarcoma 12 75112 -NCIT:C163962 Refractory Gliosarcoma 11 75113 -NCIT:C171013 Supratentorial Gliosarcoma 11 75114 -NCIT:C68701 Adult Gliosarcoma 11 75115 -NCIT:C9370 Adult Brain Stem Gliosarcoma 12 75116 -NCIT:C4325 Giant Cell Glioblastoma 10 75117 -NCIT:C114966 Childhood Giant Cell Glioblastoma 11 75118 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 12 75119 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 11 75120 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 12 75121 -NCIT:C176998 Refractory Giant Cell Glioblastoma 11 75122 -NCIT:C68702 Adult Giant Cell Glioblastoma 11 75123 -NCIT:C39751 Secondary Glioblastoma 9 75124 -NCIT:C4642 Brain Glioblastoma 9 75125 -NCIT:C147901 Childhood Brain Glioblastoma 10 75126 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 11 75127 -NCIT:C191198 Recurrent Brain Glioblastoma 10 75128 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 11 75129 -NCIT:C5148 Infratentorial Glioblastoma 10 75130 -NCIT:C5097 Brain Stem Glioblastoma 11 75131 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 12 75132 -NCIT:C9370 Adult Brain Stem Gliosarcoma 12 75133 -NCIT:C5150 Cerebellar Glioblastoma 11 75134 -NCIT:C5149 Supratentorial Glioblastoma 10 75135 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 11 75136 -NCIT:C5129 Diencephalic Glioblastoma 11 75137 -NCIT:C5151 Cerebral Glioblastoma 11 75138 -NCIT:C171013 Supratentorial Gliosarcoma 12 75139 -NCIT:C9375 Adult Brain Glioblastoma 10 75140 -NCIT:C9370 Adult Brain Stem Gliosarcoma 11 75141 -NCIT:C5136 Childhood Glioblastoma 9 75142 -NCIT:C114966 Childhood Giant Cell Glioblastoma 10 75143 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 11 75144 -NCIT:C114968 Childhood Gliosarcoma 10 75145 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 11 75146 -NCIT:C115365 Recurrent Childhood Gliosarcoma 11 75147 -NCIT:C115364 Recurrent Childhood Glioblastoma 10 75148 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 11 75149 -NCIT:C115365 Recurrent Childhood Gliosarcoma 11 75150 -NCIT:C147901 Childhood Brain Glioblastoma 10 75151 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 11 75152 -NCIT:C9094 Adult Glioblastoma 9 75153 -NCIT:C27183 Adult Spinal Cord Glioblastoma 10 75154 -NCIT:C68701 Adult Gliosarcoma 10 75155 -NCIT:C9370 Adult Brain Stem Gliosarcoma 11 75156 -NCIT:C68702 Adult Giant Cell Glioblastoma 10 75157 -NCIT:C9375 Adult Brain Glioblastoma 10 75158 -NCIT:C9370 Adult Brain Stem Gliosarcoma 11 75159 -NCIT:C92549 Multifocal Glioblastomas 9 75160 -NCIT:C9477 Anaplastic Astrocytoma 8 75161 -NCIT:C129290 Astrocytoma, IDH-Mutant, Grade 3 9 75162 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 10 75163 -NCIT:C129291 Anaplastic Astrocytoma, IDH-Wildtype 9 75164 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 10 75165 -NCIT:C129292 Anaplastic Astrocytoma, Not Otherwise Specified 9 75166 -NCIT:C136517 Recurrent Anaplastic Astrocytoma 9 75167 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 10 75168 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 10 75169 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 10 75170 -NCIT:C169075 Refractory Anaplastic Astrocytoma 9 75171 -NCIT:C185879 High Grade Astrocytoma with Piloid Features 9 75172 -NCIT:C5123 Hemispheric Anaplastic Astrocytoma 9 75173 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 10 75174 -NCIT:C156035 Frontal Lobe Anaplastic Astrocytoma 10 75175 -NCIT:C156036 Temporal Lobe Anaplastic Astrocytoma 10 75176 -NCIT:C171036 Parietal Lobe Anaplastic Astrocytoma 10 75177 -NCIT:C5124 Anaplastic Diencephalic Astrocytoma 9 75178 -NCIT:C5416 Secondary Supratentorial Anaplastic Astrocytoma 9 75179 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 9 75180 -NCIT:C6215 Childhood Anaplastic Astrocytoma 9 75181 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 10 75182 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 10 75183 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 11 75184 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 11 75185 -NCIT:C8257 Adult Anaplastic Astrocytoma 9 75186 -NCIT:C127816 WHO Grade 3 Glioma 7 75187 -NCIT:C129327 Anaplastic Pleomorphic Xanthoastrocytoma 8 75188 -NCIT:C160904 Recurrent Anaplastic Pleomorphic Xanthoastrocytoma 9 75189 -NCIT:C160905 Refractory Anaplastic Pleomorphic Xanthoastrocytoma 9 75190 -NCIT:C148038 Recurrent WHO Grade 3 Glioma 8 75191 -NCIT:C136517 Recurrent Anaplastic Astrocytoma 9 75192 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 10 75193 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 10 75194 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 10 75195 -NCIT:C142861 Recurrent Anaplastic Oligoastrocytoma 9 75196 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 10 75197 -NCIT:C142862 Recurrent Anaplastic Oligodendroglioma 9 75198 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 10 75199 -NCIT:C160904 Recurrent Anaplastic Pleomorphic Xanthoastrocytoma 9 75200 -NCIT:C160912 Recurrent Anaplastic Ependymoma 9 75201 -NCIT:C153865 Refractory WHO Grade 3 Glioma 8 75202 -NCIT:C160905 Refractory Anaplastic Pleomorphic Xanthoastrocytoma 9 75203 -NCIT:C160913 Refractory Anaplastic Ependymoma 9 75204 -NCIT:C169074 Refractory Anaplastic Oligodendroglioma 9 75205 -NCIT:C169075 Refractory Anaplastic Astrocytoma 9 75206 -NCIT:C4049 Anaplastic Ependymoma 8 75207 -NCIT:C124293 Childhood Anaplastic Ependymoma 9 75208 -NCIT:C160912 Recurrent Anaplastic Ependymoma 9 75209 -NCIT:C160913 Refractory Anaplastic Ependymoma 9 75210 -NCIT:C8269 Adult Anaplastic Ependymoma 9 75211 -NCIT:C4326 Anaplastic Oligodendroglioma 8 75212 -NCIT:C129321 Anaplastic Oligodendroglioma, IDH-Mutant and 1p/19q-Codeleted 9 75213 -NCIT:C129322 Anaplastic Oligodendroglioma, Not Otherwise Specified 9 75214 -NCIT:C142862 Recurrent Anaplastic Oligodendroglioma 9 75215 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 10 75216 -NCIT:C156120 Frontal Lobe Anaplastic Oligodendroglioma 9 75217 -NCIT:C169074 Refractory Anaplastic Oligodendroglioma 9 75218 -NCIT:C5447 Childhood Anaplastic Oligodendroglioma 9 75219 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 10 75220 -NCIT:C8270 Adult Anaplastic Oligodendroglioma 9 75221 -NCIT:C6959 Anaplastic Oligoastrocytoma 8 75222 -NCIT:C114973 Childhood Anaplastic Oligoastrocytoma 9 75223 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 10 75224 -NCIT:C129324 Anaplastic Oligoastrocytoma, Not Otherwise Specified 9 75225 -NCIT:C142861 Recurrent Anaplastic Oligoastrocytoma 9 75226 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 10 75227 -NCIT:C7446 Anaplastic Brain Stem Glioma 8 75228 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 9 75229 -NCIT:C9477 Anaplastic Astrocytoma 8 75230 -NCIT:C129290 Astrocytoma, IDH-Mutant, Grade 3 9 75231 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 10 75232 -NCIT:C129291 Anaplastic Astrocytoma, IDH-Wildtype 9 75233 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 10 75234 -NCIT:C129292 Anaplastic Astrocytoma, Not Otherwise Specified 9 75235 -NCIT:C136517 Recurrent Anaplastic Astrocytoma 9 75236 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 10 75237 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 10 75238 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 10 75239 -NCIT:C169075 Refractory Anaplastic Astrocytoma 9 75240 -NCIT:C185879 High Grade Astrocytoma with Piloid Features 9 75241 -NCIT:C5123 Hemispheric Anaplastic Astrocytoma 9 75242 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 10 75243 -NCIT:C156035 Frontal Lobe Anaplastic Astrocytoma 10 75244 -NCIT:C156036 Temporal Lobe Anaplastic Astrocytoma 10 75245 -NCIT:C171036 Parietal Lobe Anaplastic Astrocytoma 10 75246 -NCIT:C5124 Anaplastic Diencephalic Astrocytoma 9 75247 -NCIT:C5416 Secondary Supratentorial Anaplastic Astrocytoma 9 75248 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 9 75249 -NCIT:C6215 Childhood Anaplastic Astrocytoma 9 75250 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 10 75251 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 10 75252 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 11 75253 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 11 75254 -NCIT:C8257 Adult Anaplastic Astrocytoma 9 75255 -NCIT:C142848 Recurrent Malignant Glioma 7 75256 -NCIT:C126306 Recurrent Glioblastoma 8 75257 -NCIT:C115364 Recurrent Childhood Glioblastoma 9 75258 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 10 75259 -NCIT:C115365 Recurrent Childhood Gliosarcoma 10 75260 -NCIT:C182019 Recurrent Glioblastoma, IDH-Wildtype 9 75261 -NCIT:C131209 Recurrent Gliosarcoma 10 75262 -NCIT:C115365 Recurrent Childhood Gliosarcoma 11 75263 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 10 75264 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 11 75265 -NCIT:C163961 Recurrent Small Cell Glioblastoma 10 75266 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 10 75267 -NCIT:C191198 Recurrent Brain Glioblastoma 9 75268 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 10 75269 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 8 75270 -NCIT:C148038 Recurrent WHO Grade 3 Glioma 8 75271 -NCIT:C136517 Recurrent Anaplastic Astrocytoma 9 75272 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 10 75273 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 10 75274 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 10 75275 -NCIT:C142861 Recurrent Anaplastic Oligoastrocytoma 9 75276 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 10 75277 -NCIT:C142862 Recurrent Anaplastic Oligodendroglioma 9 75278 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 10 75279 -NCIT:C160904 Recurrent Anaplastic Pleomorphic Xanthoastrocytoma 9 75280 -NCIT:C160912 Recurrent Anaplastic Ependymoma 9 75281 -NCIT:C179222 Recurrent Diffuse Midline Glioma, H3 K27M-Mutant 8 75282 -NCIT:C182018 Recurrent Astrocytoma, IDH-Mutant, Grade 4 8 75283 -NCIT:C142855 Refractory Malignant Glioma 7 75284 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 8 75285 -NCIT:C146734 Refractory Glioblastoma 8 75286 -NCIT:C163960 Refractory Small Cell Glioblastoma 9 75287 -NCIT:C163962 Refractory Gliosarcoma 9 75288 -NCIT:C176998 Refractory Giant Cell Glioblastoma 9 75289 -NCIT:C153865 Refractory WHO Grade 3 Glioma 8 75290 -NCIT:C160905 Refractory Anaplastic Pleomorphic Xanthoastrocytoma 9 75291 -NCIT:C160913 Refractory Anaplastic Ependymoma 9 75292 -NCIT:C169074 Refractory Anaplastic Oligodendroglioma 9 75293 -NCIT:C169075 Refractory Anaplastic Astrocytoma 9 75294 -NCIT:C162993 Malignant Brain Glioma 7 75295 -NCIT:C156120 Frontal Lobe Anaplastic Oligodendroglioma 8 75296 -NCIT:C185371 Diffuse Hemispheric Glioma, H3 G34-Mutant 8 75297 -NCIT:C188926 Childhood Diffuse Hemispheric Glioma, H3 G34-Mutant 9 75298 -NCIT:C188927 Adult Diffuse Hemispheric Glioma, H3 G34-Mutant 9 75299 -NCIT:C185467 Diffuse Pediatric-Type High Grade Glioma, H3-Wildtype and IDH-Wildtype 8 75300 -NCIT:C185468 Diffuse Pediatric-Type High Grade Glioma RTK2 9 75301 -NCIT:C185469 Diffuse Pediatric-Type High Grade Glioma RTK1 9 75302 -NCIT:C185470 Diffuse Pediatric-Type High Grade Glioma MYCN 9 75303 -NCIT:C185471 Infant-Type Hemispheric Glioma 8 75304 -NCIT:C185472 Infant-Type Hemispheric Glioma, NTRK-Altered 9 75305 -NCIT:C185473 Infant-Type Hemispheric Glioma, ROS1-Altered 9 75306 -NCIT:C185474 Infant-Type Hemispheric Glioma, ALK-Altered 9 75307 -NCIT:C185475 Infant-Type Hemispheric Glioma, MET-Altered 9 75308 -NCIT:C4642 Brain Glioblastoma 8 75309 -NCIT:C147901 Childhood Brain Glioblastoma 9 75310 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 75311 -NCIT:C191198 Recurrent Brain Glioblastoma 9 75312 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 10 75313 -NCIT:C5148 Infratentorial Glioblastoma 9 75314 -NCIT:C5097 Brain Stem Glioblastoma 10 75315 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 11 75316 -NCIT:C9370 Adult Brain Stem Gliosarcoma 11 75317 -NCIT:C5150 Cerebellar Glioblastoma 10 75318 -NCIT:C5149 Supratentorial Glioblastoma 9 75319 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 10 75320 -NCIT:C5129 Diencephalic Glioblastoma 10 75321 -NCIT:C5151 Cerebral Glioblastoma 10 75322 -NCIT:C171013 Supratentorial Gliosarcoma 11 75323 -NCIT:C9375 Adult Brain Glioblastoma 9 75324 -NCIT:C9370 Adult Brain Stem Gliosarcoma 10 75325 -NCIT:C5123 Hemispheric Anaplastic Astrocytoma 8 75326 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 9 75327 -NCIT:C156035 Frontal Lobe Anaplastic Astrocytoma 9 75328 -NCIT:C156036 Temporal Lobe Anaplastic Astrocytoma 9 75329 -NCIT:C171036 Parietal Lobe Anaplastic Astrocytoma 9 75330 -NCIT:C5124 Anaplastic Diencephalic Astrocytoma 8 75331 -NCIT:C5416 Secondary Supratentorial Anaplastic Astrocytoma 8 75332 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 8 75333 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 9 75334 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 9 75335 -NCIT:C7446 Anaplastic Brain Stem Glioma 8 75336 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 9 75337 -NCIT:C94764 Diffuse Intrinsic Pontine Glioma 8 75338 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 9 75339 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 9 75340 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 9 75341 -NCIT:C188925 Adult Diffuse Intrinsic Pontine Glioma 9 75342 -NCIT:C180877 Metastatic Glioma 7 75343 -NCIT:C170979 Metastatic Glioblastoma 8 75344 -NCIT:C170978 Advanced Glioblastoma 9 75345 -NCIT:C170980 Locally Advanced Glioblastoma 9 75346 -NCIT:C178558 Metastatic Low Grade Glioma 8 75347 -NCIT:C178559 Metastatic Low Grade Astrocytoma 9 75348 -NCIT:C180876 Locally Advanced Glioma 8 75349 -NCIT:C170980 Locally Advanced Glioblastoma 9 75350 -NCIT:C182151 Diffuse Midline Glioma 7 75351 -NCIT:C182436 Diffuse Non-Pontine Midline Glioma 8 75352 -NCIT:C185368 Diffuse Midline Glioma, H3 K27-Altered 8 75353 -NCIT:C129309 Diffuse Midline Glioma, H3 K27M-Mutant 9 75354 -NCIT:C179222 Recurrent Diffuse Midline Glioma, H3 K27M-Mutant 10 75355 -NCIT:C185369 Diffuse Midline Glioma, EGFR-Mutant 9 75356 -NCIT:C185370 Diffuse Midline Glioma with EZHIP Overexpression 9 75357 -NCIT:C188922 Childhood Diffuse Midline Glioma, H3 K27-Altered 9 75358 -NCIT:C188923 Adult Diffuse Midline Glioma, H3 K27-Altered 9 75359 -NCIT:C94764 Diffuse Intrinsic Pontine Glioma 8 75360 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 9 75361 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 9 75362 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 9 75363 -NCIT:C188925 Adult Diffuse Intrinsic Pontine Glioma 9 75364 -NCIT:C5446 Meningeal Gliomatosis 7 75365 -NCIT:C5592 Chordoid Glioma 6 75366 -NCIT:C6770 Ependymal Tumor 6 75367 -NCIT:C115192 Childhood Ependymal Tumor 7 75368 -NCIT:C124269 Childhood Myxopapillary Ependymoma 8 75369 -NCIT:C124293 Childhood Anaplastic Ependymoma 8 75370 -NCIT:C8578 Childhood Ependymoma 8 75371 -NCIT:C186351 Supratentorial Ependymoma YAP1 Fusion-Positive 9 75372 -NCIT:C186355 Supratentorial Ependymoma, YAP1-MAMLD1 Fusion-Positive 10 75373 -NCIT:C186495 Childhood Spinal Cord Ependymoma 9 75374 -NCIT:C188935 Childhood Supratentorial Ependymoma ZFTA Fusion-Positive 9 75375 -NCIT:C188943 Childhood Posterior Fossa Ependymoma 9 75376 -NCIT:C8579 Recurrent Childhood Ependymoma 9 75377 -NCIT:C9041 Childhood Infratentorial Ependymoma 9 75378 -NCIT:C9043 Childhood Supratentorial Ependymoma, Not Otherwise Specified 9 75379 -NCIT:C6268 Childhood Cerebral Ependymoma, Not Otherwise Specified 10 75380 -NCIT:C131617 Recurrent Ependymal Tumor 7 75381 -NCIT:C157601 Recurrent Ependymoma 8 75382 -NCIT:C8579 Recurrent Childhood Ependymoma 9 75383 -NCIT:C160912 Recurrent Anaplastic Ependymoma 8 75384 -NCIT:C3017 Ependymoma 7 75385 -NCIT:C147108 Refractory Ependymoma 8 75386 -NCIT:C156462 Brain Ependymoma 8 75387 -NCIT:C186343 Supratentorial Ependymoma 9 75388 -NCIT:C186348 Supratentorial Ependymoma, Not Elsewhere Classified 10 75389 -NCIT:C186349 Supratentorial Ependymoma, Not Otherwise Specified 10 75390 -NCIT:C9043 Childhood Supratentorial Ependymoma, Not Otherwise Specified 11 75391 -NCIT:C6268 Childhood Cerebral Ependymoma, Not Otherwise Specified 12 75392 -NCIT:C186350 Supratentorial Ependymoma ZFTA Fusion-Positive 9 75393 -NCIT:C129351 Supratentorial Ependymoma, ZFTA-RELA Fusion-Positive 10 75394 -NCIT:C188935 Childhood Supratentorial Ependymoma ZFTA Fusion-Positive 10 75395 -NCIT:C188938 Adult Supratentorial Ependymoma ZFTA Fusion-Positive 10 75396 -NCIT:C186351 Supratentorial Ependymoma YAP1 Fusion-Positive 9 75397 -NCIT:C186355 Supratentorial Ependymoma, YAP1-MAMLD1 Fusion-Positive 10 75398 -NCIT:C186443 Posterior Fossa Ependymoma 9 75399 -NCIT:C186448 Posterior Fossa Ependymoma, Not Elsewhere Classified 10 75400 -NCIT:C186449 Posterior Fossa Ependymoma, Not Otherwise Specified 10 75401 -NCIT:C188943 Childhood Posterior Fossa Ependymoma 10 75402 -NCIT:C188945 Adult Posterior Fossa Ependymoma 10 75403 -NCIT:C186450 Posterior Fossa Ependymoma, Group A (PFA) 9 75404 -NCIT:C186451 Posterior Fossa Ependymoma, Group B (PFB) 9 75405 -NCIT:C5098 Brain Stem Ependymoma 9 75406 -NCIT:C9041 Childhood Infratentorial Ependymoma 9 75407 -NCIT:C9372 Adult Brain Ependymoma 9 75408 -NCIT:C188938 Adult Supratentorial Ependymoma ZFTA Fusion-Positive 10 75409 -NCIT:C188945 Adult Posterior Fossa Ependymoma 10 75410 -NCIT:C157601 Recurrent Ependymoma 8 75411 -NCIT:C8579 Recurrent Childhood Ependymoma 9 75412 -NCIT:C186494 Spinal Cord Ependymoma, MYCN Amplified 8 75413 -NCIT:C3875 Spinal Cord Ependymoma 8 75414 -NCIT:C186495 Childhood Spinal Cord Ependymoma 9 75415 -NCIT:C27399 Adult Spinal Cord Ependymoma 9 75416 -NCIT:C4319 Papillary Ependymoma 8 75417 -NCIT:C4713 Cellular Ependymoma 8 75418 -NCIT:C4714 Clear Cell Ependymoma 8 75419 -NCIT:C6903 Tanycytic Ependymoma 8 75420 -NCIT:C8578 Childhood Ependymoma 8 75421 -NCIT:C186351 Supratentorial Ependymoma YAP1 Fusion-Positive 9 75422 -NCIT:C186355 Supratentorial Ependymoma, YAP1-MAMLD1 Fusion-Positive 10 75423 -NCIT:C186495 Childhood Spinal Cord Ependymoma 9 75424 -NCIT:C188935 Childhood Supratentorial Ependymoma ZFTA Fusion-Positive 9 75425 -NCIT:C188943 Childhood Posterior Fossa Ependymoma 9 75426 -NCIT:C8579 Recurrent Childhood Ependymoma 9 75427 -NCIT:C9041 Childhood Infratentorial Ependymoma 9 75428 -NCIT:C9043 Childhood Supratentorial Ependymoma, Not Otherwise Specified 9 75429 -NCIT:C6268 Childhood Cerebral Ependymoma, Not Otherwise Specified 10 75430 -NCIT:C9092 Adult Ependymoma 8 75431 -NCIT:C27399 Adult Spinal Cord Ependymoma 9 75432 -NCIT:C9372 Adult Brain Ependymoma 9 75433 -NCIT:C188938 Adult Supratentorial Ependymoma ZFTA Fusion-Positive 10 75434 -NCIT:C188945 Adult Posterior Fossa Ependymoma 10 75435 -NCIT:C3697 Myxopapillary Ependymoma 7 75436 -NCIT:C115263 Adult Myxopapillary Ependymoma 8 75437 -NCIT:C124269 Childhood Myxopapillary Ependymoma 8 75438 -NCIT:C3795 Subependymoma 7 75439 -NCIT:C115623 Adult Subependymoma 8 75440 -NCIT:C4049 Anaplastic Ependymoma 7 75441 -NCIT:C124293 Childhood Anaplastic Ependymoma 8 75442 -NCIT:C160912 Recurrent Anaplastic Ependymoma 8 75443 -NCIT:C160913 Refractory Anaplastic Ependymoma 8 75444 -NCIT:C8269 Adult Anaplastic Ependymoma 8 75445 -NCIT:C68690 Adult Ependymal Tumor 7 75446 -NCIT:C115263 Adult Myxopapillary Ependymoma 8 75447 -NCIT:C115623 Adult Subependymoma 8 75448 -NCIT:C8269 Adult Anaplastic Ependymoma 8 75449 -NCIT:C9092 Adult Ependymoma 8 75450 -NCIT:C27399 Adult Spinal Cord Ependymoma 9 75451 -NCIT:C9372 Adult Brain Ependymoma 9 75452 -NCIT:C188938 Adult Supratentorial Ependymoma ZFTA Fusion-Positive 10 75453 -NCIT:C188945 Adult Posterior Fossa Ependymoma 10 75454 -NCIT:C6958 Astrocytic Tumor 6 75455 -NCIT:C102897 High Grade Astrocytic Tumor 7 75456 -NCIT:C167335 Astrocytoma, IDH-Mutant, Grade 4 8 75457 -NCIT:C182018 Recurrent Astrocytoma, IDH-Mutant, Grade 4 9 75458 -NCIT:C3058 Glioblastoma 8 75459 -NCIT:C111691 Glioblastoma by Gene Expression Profile 9 75460 -NCIT:C111692 Proneural Glioblastoma 10 75461 -NCIT:C111693 Neural Glioblastoma 10 75462 -NCIT:C111694 Classical Glioblastoma 10 75463 -NCIT:C111695 Mesenchymal Glioblastoma 10 75464 -NCIT:C126306 Recurrent Glioblastoma 9 75465 -NCIT:C115364 Recurrent Childhood Glioblastoma 10 75466 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 11 75467 -NCIT:C115365 Recurrent Childhood Gliosarcoma 11 75468 -NCIT:C182019 Recurrent Glioblastoma, IDH-Wildtype 10 75469 -NCIT:C131209 Recurrent Gliosarcoma 11 75470 -NCIT:C115365 Recurrent Childhood Gliosarcoma 12 75471 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 11 75472 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 12 75473 -NCIT:C163961 Recurrent Small Cell Glioblastoma 11 75474 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 11 75475 -NCIT:C191198 Recurrent Brain Glioblastoma 10 75476 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 11 75477 -NCIT:C129295 Glioblastoma, Not Otherwise Specified 9 75478 -NCIT:C146734 Refractory Glioblastoma 9 75479 -NCIT:C163960 Refractory Small Cell Glioblastoma 10 75480 -NCIT:C163962 Refractory Gliosarcoma 10 75481 -NCIT:C176998 Refractory Giant Cell Glioblastoma 10 75482 -NCIT:C166156 Resectable Glioblastoma 9 75483 -NCIT:C170979 Metastatic Glioblastoma 9 75484 -NCIT:C170978 Advanced Glioblastoma 10 75485 -NCIT:C170980 Locally Advanced Glioblastoma 10 75486 -NCIT:C176890 Unresectable Glioblastoma 9 75487 -NCIT:C39750 Glioblastoma, IDH-Wildtype 9 75488 -NCIT:C125890 Small Cell Glioblastoma 10 75489 -NCIT:C163960 Refractory Small Cell Glioblastoma 11 75490 -NCIT:C163961 Recurrent Small Cell Glioblastoma 11 75491 -NCIT:C129293 Epithelioid Glioblastoma 10 75492 -NCIT:C129296 Glioblastoma with Primitive Neuronal Component 10 75493 -NCIT:C132902 MGMT-Unmethylated Glioblastoma 10 75494 -NCIT:C154335 MGMT-Methylated Glioblastoma 10 75495 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 11 75496 -NCIT:C182019 Recurrent Glioblastoma, IDH-Wildtype 10 75497 -NCIT:C131209 Recurrent Gliosarcoma 11 75498 -NCIT:C115365 Recurrent Childhood Gliosarcoma 12 75499 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 11 75500 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 12 75501 -NCIT:C163961 Recurrent Small Cell Glioblastoma 11 75502 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 11 75503 -NCIT:C185178 Granular Cell Glioblastoma 10 75504 -NCIT:C185180 Lipidized Glioblastoma 10 75505 -NCIT:C3796 Gliosarcoma 10 75506 -NCIT:C114968 Childhood Gliosarcoma 11 75507 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 12 75508 -NCIT:C115365 Recurrent Childhood Gliosarcoma 12 75509 -NCIT:C131209 Recurrent Gliosarcoma 11 75510 -NCIT:C115365 Recurrent Childhood Gliosarcoma 12 75511 -NCIT:C163962 Refractory Gliosarcoma 11 75512 -NCIT:C171013 Supratentorial Gliosarcoma 11 75513 -NCIT:C68701 Adult Gliosarcoma 11 75514 -NCIT:C9370 Adult Brain Stem Gliosarcoma 12 75515 -NCIT:C4325 Giant Cell Glioblastoma 10 75516 -NCIT:C114966 Childhood Giant Cell Glioblastoma 11 75517 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 12 75518 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 11 75519 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 12 75520 -NCIT:C176998 Refractory Giant Cell Glioblastoma 11 75521 -NCIT:C68702 Adult Giant Cell Glioblastoma 11 75522 -NCIT:C39751 Secondary Glioblastoma 9 75523 -NCIT:C4642 Brain Glioblastoma 9 75524 -NCIT:C147901 Childhood Brain Glioblastoma 10 75525 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 11 75526 -NCIT:C191198 Recurrent Brain Glioblastoma 10 75527 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 11 75528 -NCIT:C5148 Infratentorial Glioblastoma 10 75529 -NCIT:C5097 Brain Stem Glioblastoma 11 75530 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 12 75531 -NCIT:C9370 Adult Brain Stem Gliosarcoma 12 75532 -NCIT:C5150 Cerebellar Glioblastoma 11 75533 -NCIT:C5149 Supratentorial Glioblastoma 10 75534 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 11 75535 -NCIT:C5129 Diencephalic Glioblastoma 11 75536 -NCIT:C5151 Cerebral Glioblastoma 11 75537 -NCIT:C171013 Supratentorial Gliosarcoma 12 75538 -NCIT:C9375 Adult Brain Glioblastoma 10 75539 -NCIT:C9370 Adult Brain Stem Gliosarcoma 11 75540 -NCIT:C5136 Childhood Glioblastoma 9 75541 -NCIT:C114966 Childhood Giant Cell Glioblastoma 10 75542 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 11 75543 -NCIT:C114968 Childhood Gliosarcoma 10 75544 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 11 75545 -NCIT:C115365 Recurrent Childhood Gliosarcoma 11 75546 -NCIT:C115364 Recurrent Childhood Glioblastoma 10 75547 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 11 75548 -NCIT:C115365 Recurrent Childhood Gliosarcoma 11 75549 -NCIT:C147901 Childhood Brain Glioblastoma 10 75550 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 11 75551 -NCIT:C9094 Adult Glioblastoma 9 75552 -NCIT:C27183 Adult Spinal Cord Glioblastoma 10 75553 -NCIT:C68701 Adult Gliosarcoma 10 75554 -NCIT:C9370 Adult Brain Stem Gliosarcoma 11 75555 -NCIT:C68702 Adult Giant Cell Glioblastoma 10 75556 -NCIT:C9375 Adult Brain Glioblastoma 10 75557 -NCIT:C9370 Adult Brain Stem Gliosarcoma 11 75558 -NCIT:C92549 Multifocal Glioblastomas 9 75559 -NCIT:C9477 Anaplastic Astrocytoma 8 75560 -NCIT:C129290 Astrocytoma, IDH-Mutant, Grade 3 9 75561 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 10 75562 -NCIT:C129291 Anaplastic Astrocytoma, IDH-Wildtype 9 75563 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 10 75564 -NCIT:C129292 Anaplastic Astrocytoma, Not Otherwise Specified 9 75565 -NCIT:C136517 Recurrent Anaplastic Astrocytoma 9 75566 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 10 75567 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 10 75568 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 10 75569 -NCIT:C169075 Refractory Anaplastic Astrocytoma 9 75570 -NCIT:C185879 High Grade Astrocytoma with Piloid Features 9 75571 -NCIT:C5123 Hemispheric Anaplastic Astrocytoma 9 75572 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 10 75573 -NCIT:C156035 Frontal Lobe Anaplastic Astrocytoma 10 75574 -NCIT:C156036 Temporal Lobe Anaplastic Astrocytoma 10 75575 -NCIT:C171036 Parietal Lobe Anaplastic Astrocytoma 10 75576 -NCIT:C5124 Anaplastic Diencephalic Astrocytoma 9 75577 -NCIT:C5416 Secondary Supratentorial Anaplastic Astrocytoma 9 75578 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 9 75579 -NCIT:C6215 Childhood Anaplastic Astrocytoma 9 75580 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 10 75581 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 10 75582 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 11 75583 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 11 75584 -NCIT:C8257 Adult Anaplastic Astrocytoma 9 75585 -NCIT:C5419 Gliofibroma 7 75586 -NCIT:C60781 Astrocytoma 7 75587 -NCIT:C116342 Low Grade Astrocytoma 8 75588 -NCIT:C176464 Recurrent Low Grade Astrocytoma 9 75589 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 10 75590 -NCIT:C167081 Recurrent Diffuse Astrocytoma 10 75591 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 11 75592 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 12 75593 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 12 75594 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 12 75595 -NCIT:C179220 Recurrent Pilocytic Astrocytoma 10 75596 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 11 75597 -NCIT:C177795 Refractory Low Grade Astrocytoma 9 75598 -NCIT:C178559 Metastatic Low Grade Astrocytoma 9 75599 -NCIT:C3696 Subependymal Giant Cell Astrocytoma 9 75600 -NCIT:C114785 Childhood Subependymal Giant Cell Astrocytoma 10 75601 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 11 75602 -NCIT:C71017 Adult Subependymal Giant Cell Astrocytoma 10 75603 -NCIT:C4047 Pilocytic Astrocytoma 9 75604 -NCIT:C156037 Third Ventricle Pilocytic Astrocytoma 10 75605 -NCIT:C179220 Recurrent Pilocytic Astrocytoma 10 75606 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 11 75607 -NCIT:C4048 Childhood Pilocytic Astrocytoma 10 75608 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 11 75609 -NCIT:C27081 Juvenile Pilocytic Astrocytoma 11 75610 -NCIT:C6809 Cerebellar Pilocytic Astrocytoma 10 75611 -NCIT:C71016 Adult Pilocytic Astrocytoma 10 75612 -NCIT:C7173 Diffuse Astrocytoma 9 75613 -NCIT:C114967 Childhood Diffuse Astrocytoma 10 75614 -NCIT:C114963 Childhood Fibrillary Astrocytoma 11 75615 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 12 75616 -NCIT:C114964 Childhood Gemistocytic Astrocytoma 11 75617 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 12 75618 -NCIT:C114972 Childhood Protoplasmic Astrocytoma 11 75619 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 12 75620 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 11 75621 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 12 75622 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 12 75623 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 12 75624 -NCIT:C188920 Childhood Diffuse Astrocytoma, MYBL1-Altered 11 75625 -NCIT:C188921 Childhood Diffuse Astrocytoma, MYB-Altered 11 75626 -NCIT:C8387 Childhood Cerebral Diffuse Astrocytoma 11 75627 -NCIT:C129271 Astrocytoma, IDH-Mutant, Grade 2 10 75628 -NCIT:C129272 Gemistocytic Astrocytoma, IDH-Mutant 11 75629 -NCIT:C129274 Diffuse Astrocytoma, IDH-Wildtype 10 75630 -NCIT:C185195 Diffuse Astrocytoma, MYB-Altered 11 75631 -NCIT:C188921 Childhood Diffuse Astrocytoma, MYB-Altered 12 75632 -NCIT:C185196 Diffuse Astrocytoma, MYBL1-Altered 11 75633 -NCIT:C188920 Childhood Diffuse Astrocytoma, MYBL1-Altered 12 75634 -NCIT:C129277 Diffuse Astrocytoma, Not Otherwise Specified 10 75635 -NCIT:C167081 Recurrent Diffuse Astrocytoma 10 75636 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 11 75637 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 12 75638 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 12 75639 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 12 75640 -NCIT:C4320 Protoplasmic Astrocytoma 10 75641 -NCIT:C114972 Childhood Protoplasmic Astrocytoma 11 75642 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 12 75643 -NCIT:C4321 Gemistocytic Astrocytoma 10 75644 -NCIT:C114964 Childhood Gemistocytic Astrocytoma 11 75645 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 12 75646 -NCIT:C129272 Gemistocytic Astrocytoma, IDH-Mutant 11 75647 -NCIT:C4322 Fibrillary Astrocytoma 10 75648 -NCIT:C114963 Childhood Fibrillary Astrocytoma 11 75649 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 12 75650 -NCIT:C7174 Adult Diffuse Astrocytoma 10 75651 -NCIT:C124275 Childhood Astrocytoma 8 75652 -NCIT:C114785 Childhood Subependymal Giant Cell Astrocytoma 9 75653 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 10 75654 -NCIT:C114967 Childhood Diffuse Astrocytoma 9 75655 -NCIT:C114963 Childhood Fibrillary Astrocytoma 10 75656 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 11 75657 -NCIT:C114964 Childhood Gemistocytic Astrocytoma 10 75658 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 11 75659 -NCIT:C114972 Childhood Protoplasmic Astrocytoma 10 75660 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 11 75661 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 10 75662 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 11 75663 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 11 75664 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 11 75665 -NCIT:C188920 Childhood Diffuse Astrocytoma, MYBL1-Altered 10 75666 -NCIT:C188921 Childhood Diffuse Astrocytoma, MYB-Altered 10 75667 -NCIT:C8387 Childhood Cerebral Diffuse Astrocytoma 10 75668 -NCIT:C114970 Childhood Pilomyxoid Astrocytoma 9 75669 -NCIT:C115373 Recurrent Childhood Pilomyxoid Astrocytoma 10 75670 -NCIT:C114971 Childhood Pleomorphic Xanthoastrocytoma 9 75671 -NCIT:C115375 Recurrent Childhood Pleomorphic Xanthoastrocytoma 10 75672 -NCIT:C4048 Childhood Pilocytic Astrocytoma 9 75673 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 10 75674 -NCIT:C27081 Juvenile Pilocytic Astrocytoma 10 75675 -NCIT:C4347 Childhood Cerebral Astrocytoma 9 75676 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 10 75677 -NCIT:C8387 Childhood Cerebral Diffuse Astrocytoma 10 75678 -NCIT:C9191 Recurrent Childhood Cerebral Astrocytoma 10 75679 -NCIT:C6215 Childhood Anaplastic Astrocytoma 9 75680 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 10 75681 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 10 75682 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 11 75683 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 11 75684 -NCIT:C6216 Childhood Brain Stem Astrocytoma 9 75685 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 10 75686 -NCIT:C6286 Childhood Cerebellar Astrocytoma 9 75687 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 10 75688 -NCIT:C8389 Recurrent Childhood Cerebellar Astrocytoma 10 75689 -NCIT:C7534 Childhood Visual Pathway Astrocytoma 9 75690 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 10 75691 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 11 75692 -NCIT:C129327 Anaplastic Pleomorphic Xanthoastrocytoma 8 75693 -NCIT:C160904 Recurrent Anaplastic Pleomorphic Xanthoastrocytoma 9 75694 -NCIT:C160905 Refractory Anaplastic Pleomorphic Xanthoastrocytoma 9 75695 -NCIT:C185167 Astrocytoma, IDH-Mutant 8 75696 -NCIT:C129271 Astrocytoma, IDH-Mutant, Grade 2 9 75697 -NCIT:C129272 Gemistocytic Astrocytoma, IDH-Mutant 10 75698 -NCIT:C129290 Astrocytoma, IDH-Mutant, Grade 3 9 75699 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 10 75700 -NCIT:C167335 Astrocytoma, IDH-Mutant, Grade 4 9 75701 -NCIT:C182018 Recurrent Astrocytoma, IDH-Mutant, Grade 4 10 75702 -NCIT:C188127 Recurrent Astrocytoma, IDH-Mutant 9 75703 -NCIT:C182018 Recurrent Astrocytoma, IDH-Mutant, Grade 4 10 75704 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 10 75705 -NCIT:C185184 Astrocytoma, IDH-Wildtype 8 75706 -NCIT:C129274 Diffuse Astrocytoma, IDH-Wildtype 9 75707 -NCIT:C185195 Diffuse Astrocytoma, MYB-Altered 10 75708 -NCIT:C188921 Childhood Diffuse Astrocytoma, MYB-Altered 11 75709 -NCIT:C185196 Diffuse Astrocytoma, MYBL1-Altered 10 75710 -NCIT:C188920 Childhood Diffuse Astrocytoma, MYBL1-Altered 11 75711 -NCIT:C129291 Anaplastic Astrocytoma, IDH-Wildtype 9 75712 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 10 75713 -NCIT:C185179 Granular Cell Astrocytoma 9 75714 -NCIT:C185185 Astrocytoma, Not Otherwise Specified 8 75715 -NCIT:C129277 Diffuse Astrocytoma, Not Otherwise Specified 9 75716 -NCIT:C129292 Anaplastic Astrocytoma, Not Otherwise Specified 9 75717 -NCIT:C188469 Resectable Astrocytoma 8 75718 -NCIT:C40315 Pilomyxoid Astrocytoma 8 75719 -NCIT:C114970 Childhood Pilomyxoid Astrocytoma 9 75720 -NCIT:C115373 Recurrent Childhood Pilomyxoid Astrocytoma 10 75721 -NCIT:C156038 Hypothalamic-Chiasmatic Pilomyxoid Astrocytoma 9 75722 -NCIT:C4323 Pleomorphic Xanthoastrocytoma 8 75723 -NCIT:C114971 Childhood Pleomorphic Xanthoastrocytoma 9 75724 -NCIT:C115375 Recurrent Childhood Pleomorphic Xanthoastrocytoma 10 75725 -NCIT:C156041 Supratentorial Pleomorphic Xanthoastrocytoma 9 75726 -NCIT:C156042 Temporal Lobe Pleomorphic Xanthoastrocytoma 9 75727 -NCIT:C4641 Spinal Cord Astrocytoma 8 75728 -NCIT:C5408 Intradural Extramedullary Cauda Equina Astrocytoma 8 75729 -NCIT:C60780 Brain Astrocytoma 8 75730 -NCIT:C156037 Third Ventricle Pilocytic Astrocytoma 9 75731 -NCIT:C156041 Supratentorial Pleomorphic Xanthoastrocytoma 9 75732 -NCIT:C4951 Cerebral Astrocytoma 9 75733 -NCIT:C4347 Childhood Cerebral Astrocytoma 10 75734 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 11 75735 -NCIT:C8387 Childhood Cerebral Diffuse Astrocytoma 11 75736 -NCIT:C9191 Recurrent Childhood Cerebral Astrocytoma 11 75737 -NCIT:C5123 Hemispheric Anaplastic Astrocytoma 10 75738 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 11 75739 -NCIT:C156035 Frontal Lobe Anaplastic Astrocytoma 11 75740 -NCIT:C156036 Temporal Lobe Anaplastic Astrocytoma 11 75741 -NCIT:C171036 Parietal Lobe Anaplastic Astrocytoma 11 75742 -NCIT:C5128 Diencephalic Astrocytoma 9 75743 -NCIT:C5124 Anaplastic Diencephalic Astrocytoma 10 75744 -NCIT:C5416 Secondary Supratentorial Anaplastic Astrocytoma 9 75745 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 9 75746 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 10 75747 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 10 75748 -NCIT:C7445 Brain Stem Astrocytoma 9 75749 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 10 75750 -NCIT:C6216 Childhood Brain Stem Astrocytoma 10 75751 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 11 75752 -NCIT:C6954 Adult Brain Stem Astrocytoma 10 75753 -NCIT:C7534 Childhood Visual Pathway Astrocytoma 9 75754 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 10 75755 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 11 75756 -NCIT:C8274 Pineal Gland Astrocytoma 9 75757 -NCIT:C115327 Adult Pineal Gland Astrocytoma 10 75758 -NCIT:C9475 Cerebellar Astrocytoma 9 75759 -NCIT:C6286 Childhood Cerebellar Astrocytoma 10 75760 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 11 75761 -NCIT:C8389 Recurrent Childhood Cerebellar Astrocytoma 11 75762 -NCIT:C6809 Cerebellar Pilocytic Astrocytoma 10 75763 -NCIT:C7533 Visual Pathway Astrocytoma 8 75764 -NCIT:C174539 Retinal Astrocytoma 9 75765 -NCIT:C6769 Optic Nerve Astrocytoma 9 75766 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 75767 -NCIT:C7534 Childhood Visual Pathway Astrocytoma 9 75768 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 10 75769 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 11 75770 -NCIT:C92550 Glioneuronal Tumor with Neuropil-Like Islands 8 75771 -NCIT:C9477 Anaplastic Astrocytoma 8 75772 -NCIT:C129290 Astrocytoma, IDH-Mutant, Grade 3 9 75773 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 10 75774 -NCIT:C129291 Anaplastic Astrocytoma, IDH-Wildtype 9 75775 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 10 75776 -NCIT:C129292 Anaplastic Astrocytoma, Not Otherwise Specified 9 75777 -NCIT:C136517 Recurrent Anaplastic Astrocytoma 9 75778 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 10 75779 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 10 75780 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 10 75781 -NCIT:C169075 Refractory Anaplastic Astrocytoma 9 75782 -NCIT:C185879 High Grade Astrocytoma with Piloid Features 9 75783 -NCIT:C5123 Hemispheric Anaplastic Astrocytoma 9 75784 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 10 75785 -NCIT:C156035 Frontal Lobe Anaplastic Astrocytoma 10 75786 -NCIT:C156036 Temporal Lobe Anaplastic Astrocytoma 10 75787 -NCIT:C171036 Parietal Lobe Anaplastic Astrocytoma 10 75788 -NCIT:C5124 Anaplastic Diencephalic Astrocytoma 9 75789 -NCIT:C5416 Secondary Supratentorial Anaplastic Astrocytoma 9 75790 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 9 75791 -NCIT:C6215 Childhood Anaplastic Astrocytoma 9 75792 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 10 75793 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 10 75794 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 11 75795 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 11 75796 -NCIT:C8257 Adult Anaplastic Astrocytoma 9 75797 -NCIT:C7049 Adult Astrocytic Tumor 7 75798 -NCIT:C115327 Adult Pineal Gland Astrocytoma 8 75799 -NCIT:C6954 Adult Brain Stem Astrocytoma 8 75800 -NCIT:C71016 Adult Pilocytic Astrocytoma 8 75801 -NCIT:C71017 Adult Subependymal Giant Cell Astrocytoma 8 75802 -NCIT:C8289 Adult Infiltrating Astrocytic Tumor 8 75803 -NCIT:C7174 Adult Diffuse Astrocytoma 9 75804 -NCIT:C8257 Adult Anaplastic Astrocytoma 9 75805 -NCIT:C9094 Adult Glioblastoma 9 75806 -NCIT:C27183 Adult Spinal Cord Glioblastoma 10 75807 -NCIT:C68701 Adult Gliosarcoma 10 75808 -NCIT:C9370 Adult Brain Stem Gliosarcoma 11 75809 -NCIT:C68702 Adult Giant Cell Glioblastoma 10 75810 -NCIT:C9375 Adult Brain Glioblastoma 10 75811 -NCIT:C9370 Adult Brain Stem Gliosarcoma 11 75812 -NCIT:C9022 Childhood Astrocytic Tumor 7 75813 -NCIT:C114956 Recurrent Childhood Astrocytic Tumor 8 75814 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 9 75815 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 9 75816 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 10 75817 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 10 75818 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 10 75819 -NCIT:C115364 Recurrent Childhood Glioblastoma 9 75820 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 10 75821 -NCIT:C115365 Recurrent Childhood Gliosarcoma 10 75822 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 9 75823 -NCIT:C115373 Recurrent Childhood Pilomyxoid Astrocytoma 9 75824 -NCIT:C115375 Recurrent Childhood Pleomorphic Xanthoastrocytoma 9 75825 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 9 75826 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 9 75827 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 9 75828 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 75829 -NCIT:C8389 Recurrent Childhood Cerebellar Astrocytoma 9 75830 -NCIT:C9191 Recurrent Childhood Cerebral Astrocytoma 9 75831 -NCIT:C124275 Childhood Astrocytoma 8 75832 -NCIT:C114785 Childhood Subependymal Giant Cell Astrocytoma 9 75833 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 10 75834 -NCIT:C114967 Childhood Diffuse Astrocytoma 9 75835 -NCIT:C114963 Childhood Fibrillary Astrocytoma 10 75836 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 11 75837 -NCIT:C114964 Childhood Gemistocytic Astrocytoma 10 75838 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 11 75839 -NCIT:C114972 Childhood Protoplasmic Astrocytoma 10 75840 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 11 75841 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 10 75842 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 11 75843 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 11 75844 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 11 75845 -NCIT:C188920 Childhood Diffuse Astrocytoma, MYBL1-Altered 10 75846 -NCIT:C188921 Childhood Diffuse Astrocytoma, MYB-Altered 10 75847 -NCIT:C8387 Childhood Cerebral Diffuse Astrocytoma 10 75848 -NCIT:C114970 Childhood Pilomyxoid Astrocytoma 9 75849 -NCIT:C115373 Recurrent Childhood Pilomyxoid Astrocytoma 10 75850 -NCIT:C114971 Childhood Pleomorphic Xanthoastrocytoma 9 75851 -NCIT:C115375 Recurrent Childhood Pleomorphic Xanthoastrocytoma 10 75852 -NCIT:C4048 Childhood Pilocytic Astrocytoma 9 75853 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 10 75854 -NCIT:C27081 Juvenile Pilocytic Astrocytoma 10 75855 -NCIT:C4347 Childhood Cerebral Astrocytoma 9 75856 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 10 75857 -NCIT:C8387 Childhood Cerebral Diffuse Astrocytoma 10 75858 -NCIT:C9191 Recurrent Childhood Cerebral Astrocytoma 10 75859 -NCIT:C6215 Childhood Anaplastic Astrocytoma 9 75860 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 10 75861 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 10 75862 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 11 75863 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 11 75864 -NCIT:C6216 Childhood Brain Stem Astrocytoma 9 75865 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 10 75866 -NCIT:C6286 Childhood Cerebellar Astrocytoma 9 75867 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 10 75868 -NCIT:C8389 Recurrent Childhood Cerebellar Astrocytoma 10 75869 -NCIT:C7534 Childhood Visual Pathway Astrocytoma 9 75870 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 10 75871 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 11 75872 -NCIT:C5136 Childhood Glioblastoma 8 75873 -NCIT:C114966 Childhood Giant Cell Glioblastoma 9 75874 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 10 75875 -NCIT:C114968 Childhood Gliosarcoma 9 75876 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 75877 -NCIT:C115365 Recurrent Childhood Gliosarcoma 10 75878 -NCIT:C115364 Recurrent Childhood Glioblastoma 9 75879 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 10 75880 -NCIT:C115365 Recurrent Childhood Gliosarcoma 10 75881 -NCIT:C147901 Childhood Brain Glioblastoma 9 75882 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 75883 -NCIT:C6960 Oligodendroglial Tumor 6 75884 -NCIT:C3288 Oligodendroglioma 7 75885 -NCIT:C129318 Oligodendroglioma, IDH-Mutant and 1p/19q-Codeleted 8 75886 -NCIT:C188126 Recurrent Oligodendroglioma, IDH-Mutant and 1p/19q-Codeleted 9 75887 -NCIT:C129319 Oligodendroglioma, Not Otherwise Specified 8 75888 -NCIT:C160737 Recurrent Oligodendroglioma 8 75889 -NCIT:C115371 Recurrent Childhood Oligodendroglioma 9 75890 -NCIT:C188126 Recurrent Oligodendroglioma, IDH-Mutant and 1p/19q-Codeleted 9 75891 -NCIT:C188470 Resectable Oligodendroglioma 8 75892 -NCIT:C4014 Adult Oligodendroglioma 8 75893 -NCIT:C9376 Adult Brain Oligodendroglioma 9 75894 -NCIT:C4045 Childhood Oligodendroglioma 8 75895 -NCIT:C114773 Childhood Brain Oligodendroglioma 9 75896 -NCIT:C115371 Recurrent Childhood Oligodendroglioma 9 75897 -NCIT:C4535 Spinal Cord Oligodendroglioma 8 75898 -NCIT:C9377 Brain Oligodendroglioma 8 75899 -NCIT:C114773 Childhood Brain Oligodendroglioma 9 75900 -NCIT:C9376 Adult Brain Oligodendroglioma 9 75901 -NCIT:C4326 Anaplastic Oligodendroglioma 7 75902 -NCIT:C129321 Anaplastic Oligodendroglioma, IDH-Mutant and 1p/19q-Codeleted 8 75903 -NCIT:C129322 Anaplastic Oligodendroglioma, Not Otherwise Specified 8 75904 -NCIT:C142862 Recurrent Anaplastic Oligodendroglioma 8 75905 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 9 75906 -NCIT:C156120 Frontal Lobe Anaplastic Oligodendroglioma 8 75907 -NCIT:C169074 Refractory Anaplastic Oligodendroglioma 8 75908 -NCIT:C5447 Childhood Anaplastic Oligodendroglioma 8 75909 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 9 75910 -NCIT:C8270 Adult Anaplastic Oligodendroglioma 8 75911 -NCIT:C68691 Adult Oligodendroglial Tumor 7 75912 -NCIT:C4014 Adult Oligodendroglioma 8 75913 -NCIT:C9376 Adult Brain Oligodendroglioma 9 75914 -NCIT:C8270 Adult Anaplastic Oligodendroglioma 8 75915 -NCIT:C8501 Brain Stem Glioma 6 75916 -NCIT:C5097 Brain Stem Glioblastoma 7 75917 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 8 75918 -NCIT:C9370 Adult Brain Stem Gliosarcoma 8 75919 -NCIT:C5098 Brain Stem Ependymoma 7 75920 -NCIT:C7445 Brain Stem Astrocytoma 7 75921 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 8 75922 -NCIT:C6216 Childhood Brain Stem Astrocytoma 8 75923 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 9 75924 -NCIT:C6954 Adult Brain Stem Astrocytoma 8 75925 -NCIT:C7446 Anaplastic Brain Stem Glioma 7 75926 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 8 75927 -NCIT:C9042 Childhood Brain Stem Glioma 7 75928 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 8 75929 -NCIT:C114760 Childhood Brain Stem Mixed Glioma 8 75930 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 8 75931 -NCIT:C6216 Childhood Brain Stem Astrocytoma 8 75932 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 9 75933 -NCIT:C9190 Recurrent Childhood Brain Stem Glioma 8 75934 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 9 75935 -NCIT:C9091 Adult Brain Stem Glioma 7 75936 -NCIT:C188925 Adult Diffuse Intrinsic Pontine Glioma 8 75937 -NCIT:C6954 Adult Brain Stem Astrocytoma 8 75938 -NCIT:C9370 Adult Brain Stem Gliosarcoma 8 75939 -NCIT:C9371 Adult Brain Stem Mixed Glioma 8 75940 -NCIT:C94764 Diffuse Intrinsic Pontine Glioma 7 75941 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 8 75942 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 8 75943 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 8 75944 -NCIT:C188925 Adult Diffuse Intrinsic Pontine Glioma 8 75945 -NCIT:C8567 Visual Pathway Glioma 6 75946 -NCIT:C155983 Recurrent Visual Pathway Glioma 7 75947 -NCIT:C7529 Recurrent Childhood Visual Pathway Glioma 8 75948 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 9 75949 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 75950 -NCIT:C7531 Recurrent Childhood Optic Nerve Glioma 9 75951 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 75952 -NCIT:C155984 Refractory Visual Pathway Glioma 7 75953 -NCIT:C4537 Optic Nerve Glioma 7 75954 -NCIT:C6769 Optic Nerve Astrocytoma 8 75955 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 9 75956 -NCIT:C7531 Recurrent Childhood Optic Nerve Glioma 8 75957 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 9 75958 -NCIT:C7533 Visual Pathway Astrocytoma 7 75959 -NCIT:C174539 Retinal Astrocytoma 8 75960 -NCIT:C6769 Optic Nerve Astrocytoma 8 75961 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 9 75962 -NCIT:C7534 Childhood Visual Pathway Astrocytoma 8 75963 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 9 75964 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 75965 -NCIT:C7535 Childhood Visual Pathway Glioma 7 75966 -NCIT:C7529 Recurrent Childhood Visual Pathway Glioma 8 75967 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 9 75968 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 75969 -NCIT:C7531 Recurrent Childhood Optic Nerve Glioma 9 75970 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 75971 -NCIT:C7534 Childhood Visual Pathway Astrocytoma 8 75972 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 9 75973 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 75974 -NCIT:C3230 Meningioma 5 75975 -NCIT:C163006 Unresectable Meningioma 6 75976 -NCIT:C172953 Refractory Meningioma 6 75977 -NCIT:C3707 Meningiomatosis 6 75978 -NCIT:C5275 Multiple Intraspinal Meningiomas 7 75979 -NCIT:C5279 Multiple Skull Base Meningiomas 7 75980 -NCIT:C38936 Grade 1 Meningioma 6 75981 -NCIT:C4055 Benign Meningioma 7 75982 -NCIT:C5133 Benign Intracranial Meningioma 8 75983 -NCIT:C4329 Meningothelial Meningioma 7 75984 -NCIT:C4330 Fibrous Meningioma 7 75985 -NCIT:C4331 Psammomatous Meningioma 7 75986 -NCIT:C4332 Angiomatous Meningioma 7 75987 -NCIT:C4333 Transitional Meningioma 7 75988 -NCIT:C4718 Secretory Meningioma 7 75989 -NCIT:C4720 Lymphoplasmacyte-Rich Meningioma 7 75990 -NCIT:C4721 Microcystic Meningioma 7 75991 -NCIT:C6907 Metaplastic Meningioma 7 75992 -NCIT:C71299 Adult Grade 1 Meningioma 7 75993 -NCIT:C71300 Childhood Grade 1 Meningioma 7 75994 -NCIT:C38937 Grade 2 Meningioma 6 75995 -NCIT:C4722 Clear Cell Meningioma 7 75996 -NCIT:C5287 Spinal Multifocal Clear Cell Meningioma 8 75997 -NCIT:C5295 Brain Stem Intraparenchymal Clear Cell Meningioma 8 75998 -NCIT:C4723 Atypical Meningioma 7 75999 -NCIT:C179224 Recurrent Atypical Meningioma 8 76000 -NCIT:C6852 Adult Atypical Meningioma 8 76001 -NCIT:C6908 Chordoid Meningioma 7 76002 -NCIT:C71301 Childhood Grade 2 Meningioma 7 76003 -NCIT:C71304 Adult Grade 2 Meningioma 7 76004 -NCIT:C6852 Adult Atypical Meningioma 8 76005 -NCIT:C38938 Grade 3 Meningioma 6 76006 -NCIT:C3904 Papillary Meningioma 7 76007 -NCIT:C5270 Cerebellar Papillary Meningioma 8 76008 -NCIT:C8293 Adult Papillary Meningioma 8 76009 -NCIT:C4051 Anaplastic (Malignant) Meningioma 7 76010 -NCIT:C179223 Recurrent Anaplastic (Malignant) Meningioma 8 76011 -NCIT:C27307 Anaplastic (Malignant) Intracranial Meningioma 8 76012 -NCIT:C8275 Adult Anaplastic (Malignant) Meningioma 8 76013 -NCIT:C8605 Anaplastic (Malignant) Intraspinal Meningioma 8 76014 -NCIT:C6909 Rhabdoid Meningioma 7 76015 -NCIT:C71303 Childhood Grade 3 Meningioma 7 76016 -NCIT:C71305 Adult Grade 3 Meningioma 7 76017 -NCIT:C8275 Adult Anaplastic (Malignant) Meningioma 8 76018 -NCIT:C8293 Adult Papillary Meningioma 8 76019 -NCIT:C5274 Metastatic Meningioma 6 76020 -NCIT:C5294 Deletion of the Short Arm of Chromosome 1 (1p) Associated Meningioma 6 76021 -NCIT:C5301 Hereditary Meningioma 6 76022 -NCIT:C5305 Deletion of Chromosome 22 Associated Meningioma 6 76023 -NCIT:C5306 Deletion of Chromosome 3p Associated Meningioma 6 76024 -NCIT:C5312 Recurrent Meningioma 6 76025 -NCIT:C179223 Recurrent Anaplastic (Malignant) Meningioma 7 76026 -NCIT:C179224 Recurrent Atypical Meningioma 7 76027 -NCIT:C7051 Meningioma by Site 6 76028 -NCIT:C4656 Intracranial Meningioma 7 76029 -NCIT:C27307 Anaplastic (Malignant) Intracranial Meningioma 8 76030 -NCIT:C4719 Choroid Plexus Meningioma 8 76031 -NCIT:C5133 Benign Intracranial Meningioma 8 76032 -NCIT:C5270 Cerebellar Papillary Meningioma 8 76033 -NCIT:C5272 Skull Base Meningioma 8 76034 -NCIT:C155776 Sellar Meningioma 9 76035 -NCIT:C155778 Intrasellar Meningioma 10 76036 -NCIT:C6776 Suprasellar Meningioma 10 76037 -NCIT:C5283 Diaphragma Sellae Meningioma 11 76038 -NCIT:C5284 Tuberculum Sellae Meningioma 11 76039 -NCIT:C5311 Pituitary Stalk Meningioma 11 76040 -NCIT:C5268 Cavernous Sinus Meningioma 9 76041 -NCIT:C5271 Petrous Apex Meningioma 9 76042 -NCIT:C5278 Petroclival Meningioma 9 76043 -NCIT:C5279 Multiple Skull Base Meningiomas 9 76044 -NCIT:C5280 Foramen Magnum Meningioma 9 76045 -NCIT:C5281 Anterior Foramen Magnum Meningioma 10 76046 -NCIT:C5282 Posterior Foramen Magnum Meningioma 10 76047 -NCIT:C5285 Sphenoorbital Meningioma 9 76048 -NCIT:C5289 Clivus Meningioma 9 76049 -NCIT:C5288 Lower Clivus Meningioma 10 76050 -NCIT:C5290 Upper Clivus Meningioma 10 76051 -NCIT:C5307 Internal Auditory Canal Meningioma 9 76052 -NCIT:C5313 Sphenocavernous Meningioma 9 76053 -NCIT:C5273 Intraventricular Meningioma 8 76054 -NCIT:C5302 Lateral Ventricle Meningioma 9 76055 -NCIT:C5291 Radiation-Induced Intracranial Meningioma 8 76056 -NCIT:C5587 Visual Pathway Meningioma 8 76057 -NCIT:C4538 Optic Nerve Sheath Meningioma 9 76058 -NCIT:C5304 Bilateral Optic Nerve Meningioma 9 76059 -NCIT:C7538 Anterior Visual Pathway Meningioma 9 76060 -NCIT:C6253 Childhood Intracranial Meningioma 8 76061 -NCIT:C6775 Posterior Fossa Meningioma 8 76062 -NCIT:C5289 Clivus Meningioma 9 76063 -NCIT:C5288 Lower Clivus Meningioma 10 76064 -NCIT:C5290 Upper Clivus Meningioma 10 76065 -NCIT:C5295 Brain Stem Intraparenchymal Clear Cell Meningioma 9 76066 -NCIT:C5300 Cerebellopontine Angle Meningioma 9 76067 -NCIT:C7048 Supratentorial Meningioma 8 76068 -NCIT:C4807 Cerebral Meningioma 9 76069 -NCIT:C4959 Cerebral Convexity Meningioma 10 76070 -NCIT:C5292 Frontal Convexity Meningioma 11 76071 -NCIT:C4960 Parasagittal Meningioma 10 76072 -NCIT:C5269 Intracerebral Cystic Meningioma 10 76073 -NCIT:C5302 Lateral Ventricle Meningioma 10 76074 -NCIT:C5286 Anterior Cranial Fossa Meningioma 9 76075 -NCIT:C5267 Falx Cerebri Meningioma 10 76076 -NCIT:C5268 Cavernous Sinus Meningioma 10 76077 -NCIT:C6771 Olfactory Groove Meningioma 10 76078 -NCIT:C5586 Middle Cranial Fossa Meningioma 9 76079 -NCIT:C5307 Internal Auditory Canal Meningioma 10 76080 -NCIT:C6756 Pineal Region Meningioma 9 76081 -NCIT:C6779 Gasserian Meningioma 9 76082 -NCIT:C9374 Adult Intracranial Meningioma 8 76083 -NCIT:C5134 Spinal Meningioma 7 76084 -NCIT:C5275 Multiple Intraspinal Meningiomas 8 76085 -NCIT:C5287 Spinal Multifocal Clear Cell Meningioma 8 76086 -NCIT:C5296 Cervical Intraspinal Meningioma 8 76087 -NCIT:C5297 Thoracic Intraspinal Meningioma 8 76088 -NCIT:C5298 Lumbar Intraspinal Meningioma 8 76089 -NCIT:C5299 Sacral Intraspinal Meningioma 8 76090 -NCIT:C5310 Epidural Spinal Canal Meningioma 8 76091 -NCIT:C6935 Spinal Cord Meningioma 8 76092 -NCIT:C8605 Anaplastic (Malignant) Intraspinal Meningioma 8 76093 -NCIT:C5293 Jugular Foramen Meningioma 7 76094 -NCIT:C5668 Lung Meningioma 7 76095 -NCIT:C5276 Primary Lung Meningioma 8 76096 -NCIT:C6778 Intraorbital Meningioma 7 76097 -NCIT:C6777 Periocular Meningioma 8 76098 -NCIT:C8264 Childhood Meningioma 6 76099 -NCIT:C6253 Childhood Intracranial Meningioma 7 76100 -NCIT:C71300 Childhood Grade 1 Meningioma 7 76101 -NCIT:C71301 Childhood Grade 2 Meningioma 7 76102 -NCIT:C71303 Childhood Grade 3 Meningioma 7 76103 -NCIT:C9093 Adult Meningioma 6 76104 -NCIT:C71299 Adult Grade 1 Meningioma 7 76105 -NCIT:C71304 Adult Grade 2 Meningioma 7 76106 -NCIT:C6852 Adult Atypical Meningioma 8 76107 -NCIT:C71305 Adult Grade 3 Meningioma 7 76108 -NCIT:C8275 Adult Anaplastic (Malignant) Meningioma 8 76109 -NCIT:C8293 Adult Papillary Meningioma 8 76110 -NCIT:C9374 Adult Intracranial Meningioma 7 76111 -NCIT:C4747 Glioneuronal and Neuronal Tumors 5 76112 -NCIT:C129424 Diffuse Leptomeningeal Glioneuronal Tumor 6 76113 -NCIT:C129427 Multinodular and Vacuolated Neuronal Tumor 6 76114 -NCIT:C180398 Recurrent Multinodular and Vacuolated Neuronal Tumor 7 76115 -NCIT:C188933 Childhood Multinodular and Vacuolated Neuronal Tumor 7 76116 -NCIT:C188934 Adult Multinodular and Vacuolated Neuronal Tumor 7 76117 -NCIT:C129431 Rosette-Forming Glioneuronal Tumor 6 76118 -NCIT:C67559 Rosette-Forming Glioneuronal Tumor of the Fourth Ventricle 7 76119 -NCIT:C179229 Myxoid Glioneuronal Tumor 6 76120 -NCIT:C179230 Myxoid Glioneuronal Tumor of the Septum Pellucidum 7 76121 -NCIT:C180397 Recurrent Myxoid Glioneuronal Tumor 7 76122 -NCIT:C180378 Polymorphous Low Grade Neuroepithelial Tumor of the Young 6 76123 -NCIT:C180400 Recurrent Polymorphous Low Grade Neuroepithelial Tumor of the Young 7 76124 -NCIT:C180532 Dysembryoplastic Neuroepithelial-Like Tumor of the Septum Pellucidum 6 76125 -NCIT:C185935 Diffuse Glioneuronal Tumor with Oligodendroglioma-Like Features and Nuclear Clusters 6 76126 -NCIT:C3788 Ganglioglioma 6 76127 -NCIT:C27362 Childhood Ganglioglioma 7 76128 -NCIT:C27363 Adult Ganglioglioma 7 76129 -NCIT:C3791 Central Neurocytoma 6 76130 -NCIT:C4717 Anaplastic Ganglioglioma 6 76131 -NCIT:C160914 Recurrent Anaplastic Ganglioglioma 7 76132 -NCIT:C160915 Refractory Anaplastic Ganglioglioma 7 76133 -NCIT:C4738 Desmoplastic Infantile Ganglioglioma 6 76134 -NCIT:C6934 Gangliocytoma 6 76135 -NCIT:C180338 Recurrent Gangliocytoma 7 76136 -NCIT:C45917 Sellar Gangliocytoma 7 76137 -NCIT:C45918 Hypothalamic Gangliocytoma 7 76138 -NCIT:C7372 Cerebellar Glioneuronal and Neuronal Tumors 6 76139 -NCIT:C6905 Cerebellar Liponeurocytoma 7 76140 -NCIT:C8419 Dysplastic Cerebellar Gangliocytoma 7 76141 -NCIT:C92554 Papillary Glioneuronal Tumor 6 76142 -NCIT:C92555 Extraventricular Neurocytoma 6 76143 -NCIT:C9476 Desmoplastic Infantile Astrocytoma 6 76144 -NCIT:C9505 Dysembryoplastic Neuroepithelial Tumor 6 76145 -NCIT:C188931 Childhood Dysembryoplastic Neuroepithelial Tumor 7 76146 -NCIT:C188932 Adult Dysembryoplastic Neuroepithelial Tumor 7 76147 -NCIT:C5449 Central Nervous System Mesenchymal, Non-Meningothelial Neoplasm 5 76148 -NCIT:C129526 Central Nervous System Solitary Fibrous Tumor 6 76149 -NCIT:C129527 Central Nervous System Solitary Fibrous Tumor, Grade 3 7 76150 -NCIT:C186603 Central Nervous System Dedifferentiated Solitary Fibrous Tumor 8 76151 -NCIT:C9183 Adult Central Nervous System Solitary Fibrous Tumor, Grade 3 8 76152 -NCIT:C92652 Meningeal Central Nervous System Solitary Fibrous Tumor, Grade 3 8 76153 -NCIT:C129528 Central Nervous System Solitary Fibrous Tumor, Grade 2 7 76154 -NCIT:C129530 Central Nervous System Solitary Fibrous Tumor, Grade 1 7 76155 -NCIT:C175496 Optic Nerve Sheath Solitary Fibrous Tumor 7 76156 -NCIT:C4660 Meningeal Solitary Fibrous Tumor 7 76157 -NCIT:C155784 Sellar Solitary Fibrous Tumor 8 76158 -NCIT:C92652 Meningeal Central Nervous System Solitary Fibrous Tumor, Grade 3 8 76159 -NCIT:C129548 Central Nervous System Desmoid Fibromatosis 6 76160 -NCIT:C186614 Intracranial Mesenchymal Tumor, FET-CREB Fusion-Positive 6 76161 -NCIT:C6757 Benign Central Nervous System Mesenchymal, Non-Meningothelial Neoplasm 6 76162 -NCIT:C129549 Intracranial Fibrous Histiocytoma 7 76163 -NCIT:C129551 Central Nervous System Myofibroblastoma 7 76164 -NCIT:C5451 Central Nervous System Lipoma 7 76165 -NCIT:C129538 Central Nervous System Angiolipoma 8 76166 -NCIT:C5424 Epidural Spinal Canal Angiolipoma 9 76167 -NCIT:C4619 Spinal Cord Lipoma 8 76168 -NCIT:C5444 Intracranial Lipoma 8 76169 -NCIT:C5452 Inner Ear Lipoma 9 76170 -NCIT:C6220 Cerebral Hemisphere Lipoma 9 76171 -NCIT:C5438 Corpus Callosum Lipoma 10 76172 -NCIT:C6997 Central Nervous System Hibernoma 8 76173 -NCIT:C6998 Central Nervous System Leiomyoma 7 76174 -NCIT:C7000 Central Nervous System Rhabdomyoma 7 76175 -NCIT:C7001 Central Nervous System Chondroma 7 76176 -NCIT:C7004 Central Nervous System Hemangioma 7 76177 -NCIT:C84621 Central Nervous System Cavernous Hemangioma 8 76178 -NCIT:C5432 Intracranial Cavernous Hemangioma 9 76179 -NCIT:C6758 Malignant Central Nervous System Mesenchymal, Non-Meningothelial Neoplasm 6 76180 -NCIT:C129527 Central Nervous System Solitary Fibrous Tumor, Grade 3 7 76181 -NCIT:C186603 Central Nervous System Dedifferentiated Solitary Fibrous Tumor 8 76182 -NCIT:C9183 Adult Central Nervous System Solitary Fibrous Tumor, Grade 3 8 76183 -NCIT:C92652 Meningeal Central Nervous System Solitary Fibrous Tumor, Grade 3 8 76184 -NCIT:C129536 Central Nervous System Epithelioid Hemangioendothelioma 7 76185 -NCIT:C5153 Central Nervous System Sarcoma 7 76186 -NCIT:C129534 Central Nervous System Mesenchymal Chondrosarcoma 8 76187 -NCIT:C129566 Central Nervous System Undifferentiated Pleomorphic Sarcoma 8 76188 -NCIT:C186607 Central Nervous System CIC-Rearranged Sarcoma 8 76189 -NCIT:C186611 Central Nervous System Ewing Sarcoma 8 76190 -NCIT:C4073 Meningeal Sarcoma 8 76191 -NCIT:C4334 Meningeal Sarcomatosis 9 76192 -NCIT:C8312 Leptomeningeal Sarcoma 9 76193 -NCIT:C5152 Spinal Cord Sarcoma 8 76194 -NCIT:C5154 Brain Sarcoma 8 76195 -NCIT:C186610 Primary Intracranial Sarcoma, DICER1-Mutant 9 76196 -NCIT:C5462 Brain Extraskeletal Myxoid Chondrosarcoma 9 76197 -NCIT:C6973 Brain Liposarcoma 9 76198 -NCIT:C5450 Central Nervous System Angiosarcoma 8 76199 -NCIT:C5464 Central Nervous System Rhabdomyosarcoma 8 76200 -NCIT:C5465 Central Nervous System Fibrosarcoma 8 76201 -NCIT:C6999 Central Nervous System Leiomyosarcoma 8 76202 -NCIT:C7002 Central Nervous System Extraskeletal Osteosarcoma 8 76203 -NCIT:C7006 Central Nervous System Kaposi Sarcoma 8 76204 -NCIT:C7020 Central Nervous System Inflammatory Myofibroblastic Tumor 6 76205 -NCIT:C5461 Central Nervous System Germ Cell Tumor 5 76206 -NCIT:C100093 Central Nervous System Nongerminomatous Germ Cell Tumor 6 76207 -NCIT:C5441 Central Nervous System Teratoma 7 76208 -NCIT:C155807 Sellar Teratoma 8 76209 -NCIT:C155808 Sellar Mature Teratoma 9 76210 -NCIT:C155809 Sellar Immature Teratoma 9 76211 -NCIT:C155810 Sellar Teratoma with Malignant Transformation 9 76212 -NCIT:C5428 Intramedullary Spinal Cord Teratoma 8 76213 -NCIT:C5794 Adult Central Nervous System Teratoma 8 76214 -NCIT:C27400 Adult Central Nervous System Mature Teratoma 9 76215 -NCIT:C27401 Adult Central Nervous System Immature Teratoma 9 76216 -NCIT:C6204 Childhood Central Nervous System Teratoma 8 76217 -NCIT:C27404 Childhood Central Nervous System Mature Teratoma 9 76218 -NCIT:C27405 Childhood Central Nervous System Immature Teratoma 9 76219 -NCIT:C6753 Pineal Region Teratoma 8 76220 -NCIT:C6754 Pineal Region Mature Teratoma 9 76221 -NCIT:C6755 Pineal Region Immature Teratoma 9 76222 -NCIT:C7013 Central Nervous System Mature Teratoma 8 76223 -NCIT:C155808 Sellar Mature Teratoma 9 76224 -NCIT:C27400 Adult Central Nervous System Mature Teratoma 9 76225 -NCIT:C27404 Childhood Central Nervous System Mature Teratoma 9 76226 -NCIT:C5508 Central Nervous System Dermoid Cyst 9 76227 -NCIT:C6808 Dermoid Cyst of the Spinal Cord 10 76228 -NCIT:C6754 Pineal Region Mature Teratoma 9 76229 -NCIT:C7014 Central Nervous System Immature Teratoma 8 76230 -NCIT:C155809 Sellar Immature Teratoma 9 76231 -NCIT:C27401 Adult Central Nervous System Immature Teratoma 9 76232 -NCIT:C27405 Childhood Central Nervous System Immature Teratoma 9 76233 -NCIT:C6755 Pineal Region Immature Teratoma 9 76234 -NCIT:C7015 Central Nervous System Teratoma with Malignant Transformation 8 76235 -NCIT:C155810 Sellar Teratoma with Malignant Transformation 9 76236 -NCIT:C7010 Central Nervous System Embryonal Carcinoma 7 76237 -NCIT:C155805 Sellar Embryonal Carcinoma 8 76238 -NCIT:C5790 Adult Central Nervous System Embryonal Carcinoma 8 76239 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 8 76240 -NCIT:C7011 Central Nervous System Yolk Sac Tumor 7 76241 -NCIT:C155804 Sellar Yolk Sac Tumor 8 76242 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 8 76243 -NCIT:C6752 Pineal Region Yolk Sac Tumor 8 76244 -NCIT:C7012 Central Nervous System Choriocarcinoma 7 76245 -NCIT:C155806 Sellar Choriocarcinoma 8 76246 -NCIT:C5793 Adult Central Nervous System Choriocarcinoma 8 76247 -NCIT:C6206 Childhood Central Nervous System Choriocarcinoma 8 76248 -NCIT:C6759 Pineal Region Choriocarcinoma 8 76249 -NCIT:C155801 Sellar Germ Cell Tumor 6 76250 -NCIT:C155802 Sellar Germinoma 7 76251 -NCIT:C155803 Suprasellar Germinoma 8 76252 -NCIT:C155804 Sellar Yolk Sac Tumor 7 76253 -NCIT:C155805 Sellar Embryonal Carcinoma 7 76254 -NCIT:C155806 Sellar Choriocarcinoma 7 76255 -NCIT:C155807 Sellar Teratoma 7 76256 -NCIT:C155808 Sellar Mature Teratoma 8 76257 -NCIT:C155809 Sellar Immature Teratoma 8 76258 -NCIT:C155810 Sellar Teratoma with Malignant Transformation 8 76259 -NCIT:C155811 Sellar Mixed Germ Cell Tumor 7 76260 -NCIT:C177769 Suprasellar Germ Cell Tumor 7 76261 -NCIT:C155803 Suprasellar Germinoma 8 76262 -NCIT:C4659 Pineal Region Germ Cell Tumor 6 76263 -NCIT:C6753 Pineal Region Teratoma 7 76264 -NCIT:C6754 Pineal Region Mature Teratoma 8 76265 -NCIT:C6755 Pineal Region Immature Teratoma 8 76266 -NCIT:C6767 Malignant Pineal Region Germ Cell Tumor 7 76267 -NCIT:C6752 Pineal Region Yolk Sac Tumor 8 76268 -NCIT:C6759 Pineal Region Choriocarcinoma 8 76269 -NCIT:C8712 Pineal Region Germinoma 8 76270 -NCIT:C54099 Malignant Central Nervous System Germ Cell Tumor 6 76271 -NCIT:C5403 Malignant Intracranial Germ Cell Tumor 7 76272 -NCIT:C155804 Sellar Yolk Sac Tumor 8 76273 -NCIT:C155805 Sellar Embryonal Carcinoma 8 76274 -NCIT:C155806 Sellar Choriocarcinoma 8 76275 -NCIT:C155810 Sellar Teratoma with Malignant Transformation 8 76276 -NCIT:C155811 Sellar Mixed Germ Cell Tumor 8 76277 -NCIT:C5430 Intracranial Germinoma 8 76278 -NCIT:C155802 Sellar Germinoma 9 76279 -NCIT:C155803 Suprasellar Germinoma 10 76280 -NCIT:C6284 Brain Germinoma 9 76281 -NCIT:C156040 Third Ventricle Germinoma 10 76282 -NCIT:C6207 Childhood Brain Germinoma 10 76283 -NCIT:C8712 Pineal Region Germinoma 10 76284 -NCIT:C6767 Malignant Pineal Region Germ Cell Tumor 8 76285 -NCIT:C6752 Pineal Region Yolk Sac Tumor 9 76286 -NCIT:C6759 Pineal Region Choriocarcinoma 9 76287 -NCIT:C8712 Pineal Region Germinoma 9 76288 -NCIT:C7009 Central Nervous System Germinoma 7 76289 -NCIT:C27406 Childhood Central Nervous System Germinoma 8 76290 -NCIT:C6207 Childhood Brain Germinoma 9 76291 -NCIT:C5430 Intracranial Germinoma 8 76292 -NCIT:C155802 Sellar Germinoma 9 76293 -NCIT:C155803 Suprasellar Germinoma 10 76294 -NCIT:C6284 Brain Germinoma 9 76295 -NCIT:C156040 Third Ventricle Germinoma 10 76296 -NCIT:C6207 Childhood Brain Germinoma 10 76297 -NCIT:C8712 Pineal Region Germinoma 10 76298 -NCIT:C5792 Adult Central Nervous System Germinoma 8 76299 -NCIT:C7010 Central Nervous System Embryonal Carcinoma 7 76300 -NCIT:C155805 Sellar Embryonal Carcinoma 8 76301 -NCIT:C5790 Adult Central Nervous System Embryonal Carcinoma 8 76302 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 8 76303 -NCIT:C7011 Central Nervous System Yolk Sac Tumor 7 76304 -NCIT:C155804 Sellar Yolk Sac Tumor 8 76305 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 8 76306 -NCIT:C6752 Pineal Region Yolk Sac Tumor 8 76307 -NCIT:C7012 Central Nervous System Choriocarcinoma 7 76308 -NCIT:C155806 Sellar Choriocarcinoma 8 76309 -NCIT:C5793 Adult Central Nervous System Choriocarcinoma 8 76310 -NCIT:C6206 Childhood Central Nervous System Choriocarcinoma 8 76311 -NCIT:C6759 Pineal Region Choriocarcinoma 8 76312 -NCIT:C7015 Central Nervous System Teratoma with Malignant Transformation 7 76313 -NCIT:C155810 Sellar Teratoma with Malignant Transformation 8 76314 -NCIT:C7016 Central Nervous System Mixed Germ Cell Tumor 7 76315 -NCIT:C155811 Sellar Mixed Germ Cell Tumor 8 76316 -NCIT:C27402 Adult Central Nervous System Mixed Germ Cell Tumor 8 76317 -NCIT:C27403 Childhood Central Nervous System Mixed Germ Cell Tumor 8 76318 -NCIT:C6205 Childhood Central Nervous System Germ Cell Tumor 6 76319 -NCIT:C27403 Childhood Central Nervous System Mixed Germ Cell Tumor 7 76320 -NCIT:C27406 Childhood Central Nervous System Germinoma 7 76321 -NCIT:C6207 Childhood Brain Germinoma 8 76322 -NCIT:C5795 Childhood Brain Germ Cell Tumor 7 76323 -NCIT:C6207 Childhood Brain Germinoma 8 76324 -NCIT:C6204 Childhood Central Nervous System Teratoma 7 76325 -NCIT:C27404 Childhood Central Nervous System Mature Teratoma 8 76326 -NCIT:C27405 Childhood Central Nervous System Immature Teratoma 8 76327 -NCIT:C6206 Childhood Central Nervous System Choriocarcinoma 7 76328 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 7 76329 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 7 76330 -NCIT:C6285 Adult Central Nervous System Germ Cell Tumor 6 76331 -NCIT:C114778 Adult Intracranial Germ Cell Tumor 7 76332 -NCIT:C27402 Adult Central Nervous System Mixed Germ Cell Tumor 7 76333 -NCIT:C5790 Adult Central Nervous System Embryonal Carcinoma 7 76334 -NCIT:C5792 Adult Central Nervous System Germinoma 7 76335 -NCIT:C5793 Adult Central Nervous System Choriocarcinoma 7 76336 -NCIT:C5794 Adult Central Nervous System Teratoma 7 76337 -NCIT:C27400 Adult Central Nervous System Mature Teratoma 8 76338 -NCIT:C27401 Adult Central Nervous System Immature Teratoma 8 76339 -NCIT:C5466 Central Nervous System Paraganglioma 5 76340 -NCIT:C155769 Sellar Paraganglioma 6 76341 -NCIT:C48318 Cerebellar Paraganglioma 6 76342 -NCIT:C5504 Central Nervous System Melanocytic Neoplasm 5 76343 -NCIT:C4661 Primary Meningeal Melanocytic Neoplasm 6 76344 -NCIT:C115253 Adult Primary Meningeal Melanocytic Neoplasm 7 76345 -NCIT:C5319 Adult Meningeal Melanoma 8 76346 -NCIT:C186649 Circumscribed Meningeal Melanocytic Neoplasm 7 76347 -NCIT:C186650 Meningeal Melanocytoma of Intermediate Grade 8 76348 -NCIT:C4662 Meningeal Melanocytoma 8 76349 -NCIT:C5317 Meningeal Melanoma 8 76350 -NCIT:C5318 Childhood Meningeal Melanoma 9 76351 -NCIT:C5319 Adult Meningeal Melanoma 9 76352 -NCIT:C6891 Meningeal Melanomatosis 9 76353 -NCIT:C6890 Meningeal Melanocytosis 7 76354 -NCIT:C5505 Central Nervous System Melanoma 6 76355 -NCIT:C5158 Spinal Cord Melanoma 7 76356 -NCIT:C5317 Meningeal Melanoma 7 76357 -NCIT:C5318 Childhood Meningeal Melanoma 8 76358 -NCIT:C5319 Adult Meningeal Melanoma 8 76359 -NCIT:C6891 Meningeal Melanomatosis 8 76360 -NCIT:C5442 Intracranial Melanoma 7 76361 -NCIT:C62332 Central Nervous System Carcinoma 5 76362 -NCIT:C4715 Choroid Plexus Carcinoma 6 76363 -NCIT:C124292 Childhood Choroid Plexus Carcinoma 7 76364 -NCIT:C6990 Central Nervous System Embryonal Tumor 5 76365 -NCIT:C114833 Childhood Central Nervous System Embryonal Tumor 6 76366 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 7 76367 -NCIT:C114812 Childhood Pineoblastoma 7 76368 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 76369 -NCIT:C114836 Recurrent Childhood Central Nervous System Embryonal Neoplasm 7 76370 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 76371 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 76372 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 76373 -NCIT:C115203 Childhood Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 7 76374 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 76375 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 9 76376 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 76377 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 7 76378 -NCIT:C3997 Childhood Medulloblastoma 7 76379 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 76380 -NCIT:C5961 Childhood Central Nervous System Embryonal Tumor, Not Otherwise Specified 7 76381 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 76382 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 9 76383 -NCIT:C68634 Childhood Atypical Teratoid/Rhabdoid Tumor 7 76384 -NCIT:C121963 Cribriform Neuroepithelial Tumor 6 76385 -NCIT:C129501 Central Nervous System Embryonal Tumor with Rhabdoid Features 6 76386 -NCIT:C129537 Central Nervous System Ewing Sarcoma/Peripheral Primitive Neuroectodermal Tumor 6 76387 -NCIT:C186611 Central Nervous System Ewing Sarcoma 7 76388 -NCIT:C186534 Embryonal Tumor with Multilayered Rosettes 6 76389 -NCIT:C129499 Embryonal Tumor with Multilayered Rosettes without C19MC Alteration 7 76390 -NCIT:C186535 Embryonal Tumor with Multilayered Rosettes, DICER1-Mutated 7 76391 -NCIT:C4915 Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 7 76392 -NCIT:C115203 Childhood Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 76393 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 9 76394 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 10 76395 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 9 76396 -NCIT:C8290 Adult Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 76397 -NCIT:C186542 Central Nervous System Embryonal Tumor, Not Elsewhere Classified 6 76398 -NCIT:C186556 Central Nervous System Tumor with BCOR Internal Tandem Duplication 6 76399 -NCIT:C3222 Medulloblastoma 6 76400 -NCIT:C129436 Large Cell/Anaplastic Medulloblastoma 7 76401 -NCIT:C129439 Medulloblastoma Molecular Subtypes 7 76402 -NCIT:C129440 Medulloblastoma, WNT-Activated 8 76403 -NCIT:C180892 Refractory Medulloblastoma, WNT-Activated 9 76404 -NCIT:C180893 Recurrent Medulloblastoma, WNT-Activated 9 76405 -NCIT:C129441 Medulloblastoma, SHH-Activated 8 76406 -NCIT:C129442 Medulloblastoma, SHH-Activated, TP53-Mutant 9 76407 -NCIT:C129443 Medulloblastoma, SHH-Activated, TP53-Wildtype 9 76408 -NCIT:C186591 ELP1-Associated Medulloblastoma 10 76409 -NCIT:C147109 Recurrent Medulloblastoma, SHH-Activated 9 76410 -NCIT:C147110 Refractory Medulloblastoma, SHH-Activated 9 76411 -NCIT:C189841 Medulloblastoma, SHH-1 9 76412 -NCIT:C189844 Medulloblastoma, SHH-2 9 76413 -NCIT:C189845 Medulloblastoma, SHH-3 9 76414 -NCIT:C189846 Medulloblastoma, SHH-4 9 76415 -NCIT:C129444 Medulloblastoma, Non-WNT/Non-SHH 8 76416 -NCIT:C129445 Medulloblastoma, Non-WNT/Non-SHH, Group 3 9 76417 -NCIT:C129446 Medulloblastoma, Non-WNT/Non-SHH, Group 4 9 76418 -NCIT:C129447 Medulloblastoma, Not Otherwise Specified 7 76419 -NCIT:C142856 Refractory Medulloblastoma 7 76420 -NCIT:C147110 Refractory Medulloblastoma, SHH-Activated 8 76421 -NCIT:C180892 Refractory Medulloblastoma, WNT-Activated 8 76422 -NCIT:C156039 Fourth Ventricle Medulloblastoma 7 76423 -NCIT:C177725 Metastatic Medulloblastoma 7 76424 -NCIT:C5399 Medulloblastoma with Leptomeningeal Spread 8 76425 -NCIT:C27237 Familial Adenomatous Polyposis Associated Medulloblastoma 7 76426 -NCIT:C3706 Medullomyoblastoma 7 76427 -NCIT:C3997 Childhood Medulloblastoma 7 76428 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 76429 -NCIT:C4011 Adult Medulloblastoma 7 76430 -NCIT:C4956 Desmoplastic/Nodular Medulloblastoma 7 76431 -NCIT:C5401 Cerebellar Vermis Medulloblastoma 7 76432 -NCIT:C5402 Region 17p13 Allelic Loss Associated Medulloblastoma 7 76433 -NCIT:C54039 Classic Medulloblastoma 7 76434 -NCIT:C5405 Nevoid Basal Cell Carcinoma Syndrome Associated Medulloblastoma 7 76435 -NCIT:C5407 Medulloblastoma with Extensive Nodularity 7 76436 -NCIT:C5588 Recurrent Medulloblastoma 7 76437 -NCIT:C147109 Recurrent Medulloblastoma, SHH-Activated 8 76438 -NCIT:C180893 Recurrent Medulloblastoma, WNT-Activated 8 76439 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 76440 -NCIT:C6904 Large Cell Medulloblastoma 7 76441 -NCIT:C92625 Anaplastic Medulloblastoma 7 76442 -NCIT:C9497 Melanocytic Medulloblastoma 7 76443 -NCIT:C4327 Central Nervous System Medulloepithelioma 6 76444 -NCIT:C4826 Central Nervous System Neuroblastoma 6 76445 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 7 76446 -NCIT:C186547 Central Nervous System Neuroblastoma, FOXR2-Activated 7 76447 -NCIT:C5398 Central Nervous System Embryonal Tumor, Not Otherwise Specified 6 76448 -NCIT:C5400 Central Nervous System Embryonal Tumor, Not Otherwise Specified with Leptomeningeal Spread 7 76449 -NCIT:C5406 Spinal Cord Embryonal Tumor, Not Otherwise Specified 7 76450 -NCIT:C5411 Adult Central Nervous System Embryonal Tumor, Not Otherwise Specified 7 76451 -NCIT:C68703 Adult Supratentorial Embryonal Tumor, Not Otherwise Specified 8 76452 -NCIT:C5817 Intracranial Embryonal Tumor, Not Otherwise Specified 7 76453 -NCIT:C5436 Cerebellopontine Angle Embryonal Tumor, Not Otherwise Specified 8 76454 -NCIT:C6968 Supratentorial Embryonal Tumor, Not Otherwise Specified 8 76455 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 9 76456 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 10 76457 -NCIT:C4970 Cerebral Embryonal Tumor, Not Otherwise Specified 9 76458 -NCIT:C68703 Adult Supratentorial Embryonal Tumor, Not Otherwise Specified 9 76459 -NCIT:C5961 Childhood Central Nervous System Embryonal Tumor, Not Otherwise Specified 7 76460 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 76461 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 9 76462 -NCIT:C6906 Atypical Teratoid/Rhabdoid Tumor 6 76463 -NCIT:C133499 Recurrent Atypical Teratoid/Rhabdoid Tumor 7 76464 -NCIT:C162723 Refractory Atypical Teratoid/Rhabdoid Tumor 7 76465 -NCIT:C68634 Childhood Atypical Teratoid/Rhabdoid Tumor 7 76466 -NCIT:C92629 Central Nervous System Ganglioneuroblastoma 6 76467 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 7 76468 -NCIT:C7007 Central Nervous System Hemangioblastoma 5 76469 -NCIT:C155947 Cerebral Hemangioblastoma 6 76470 -NCIT:C155948 Spinal Hemangioblastoma 6 76471 -NCIT:C5146 Cerebellar Hemangioblastoma 6 76472 -NCIT:C5147 Brain Stem Hemangioblastoma 6 76473 -NCIT:C155949 Medullary Hemangioblastoma 7 76474 -NCIT:C7157 Posterior Pituitary Gland Neoplasm 5 76475 -NCIT:C155774 Ependymal Pituicytoma 6 76476 -NCIT:C7017 Granular Cell Tumor of the Sellar Region 6 76477 -NCIT:C94524 Pituicytoma 6 76478 -NCIT:C94537 Spindle Cell Oncocytoma 6 76479 -NCIT:C71700 Recurrent Primary Central Nervous System Neoplasm 5 76480 -NCIT:C132506 Recurrent Glioma 6 76481 -NCIT:C114956 Recurrent Childhood Astrocytic Tumor 7 76482 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 8 76483 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 8 76484 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 9 76485 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 9 76486 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 9 76487 -NCIT:C115364 Recurrent Childhood Glioblastoma 8 76488 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 9 76489 -NCIT:C115365 Recurrent Childhood Gliosarcoma 9 76490 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 8 76491 -NCIT:C115373 Recurrent Childhood Pilomyxoid Astrocytoma 8 76492 -NCIT:C115375 Recurrent Childhood Pleomorphic Xanthoastrocytoma 8 76493 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 8 76494 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 8 76495 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 8 76496 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 9 76497 -NCIT:C8389 Recurrent Childhood Cerebellar Astrocytoma 8 76498 -NCIT:C9191 Recurrent Childhood Cerebral Astrocytoma 8 76499 -NCIT:C131617 Recurrent Ependymal Tumor 7 76500 -NCIT:C157601 Recurrent Ependymoma 8 76501 -NCIT:C8579 Recurrent Childhood Ependymoma 9 76502 -NCIT:C160912 Recurrent Anaplastic Ependymoma 8 76503 -NCIT:C142848 Recurrent Malignant Glioma 7 76504 -NCIT:C126306 Recurrent Glioblastoma 8 76505 -NCIT:C115364 Recurrent Childhood Glioblastoma 9 76506 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 10 76507 -NCIT:C115365 Recurrent Childhood Gliosarcoma 10 76508 -NCIT:C182019 Recurrent Glioblastoma, IDH-Wildtype 9 76509 -NCIT:C131209 Recurrent Gliosarcoma 10 76510 -NCIT:C115365 Recurrent Childhood Gliosarcoma 11 76511 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 10 76512 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 11 76513 -NCIT:C163961 Recurrent Small Cell Glioblastoma 10 76514 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 10 76515 -NCIT:C191198 Recurrent Brain Glioblastoma 9 76516 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 10 76517 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 8 76518 -NCIT:C148038 Recurrent WHO Grade 3 Glioma 8 76519 -NCIT:C136517 Recurrent Anaplastic Astrocytoma 9 76520 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 10 76521 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 10 76522 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 10 76523 -NCIT:C142861 Recurrent Anaplastic Oligoastrocytoma 9 76524 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 10 76525 -NCIT:C142862 Recurrent Anaplastic Oligodendroglioma 9 76526 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 10 76527 -NCIT:C160904 Recurrent Anaplastic Pleomorphic Xanthoastrocytoma 9 76528 -NCIT:C160912 Recurrent Anaplastic Ependymoma 9 76529 -NCIT:C179222 Recurrent Diffuse Midline Glioma, H3 K27M-Mutant 8 76530 -NCIT:C182018 Recurrent Astrocytoma, IDH-Mutant, Grade 4 8 76531 -NCIT:C155983 Recurrent Visual Pathway Glioma 7 76532 -NCIT:C7529 Recurrent Childhood Visual Pathway Glioma 8 76533 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 9 76534 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 76535 -NCIT:C7531 Recurrent Childhood Optic Nerve Glioma 9 76536 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 76537 -NCIT:C177794 Recurrent Low Grade Glioma 7 76538 -NCIT:C148037 Recurrent WHO Grade 2 Glioma 8 76539 -NCIT:C157601 Recurrent Ependymoma 9 76540 -NCIT:C8579 Recurrent Childhood Ependymoma 10 76541 -NCIT:C160737 Recurrent Oligodendroglioma 9 76542 -NCIT:C115371 Recurrent Childhood Oligodendroglioma 10 76543 -NCIT:C188126 Recurrent Oligodendroglioma, IDH-Mutant and 1p/19q-Codeleted 10 76544 -NCIT:C167081 Recurrent Diffuse Astrocytoma 9 76545 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 10 76546 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 11 76547 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 11 76548 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 11 76549 -NCIT:C167082 Recurrent Oligoastrocytoma 9 76550 -NCIT:C115370 Recurrent Childhood Oligoastrocytoma 10 76551 -NCIT:C176464 Recurrent Low Grade Astrocytoma 8 76552 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 9 76553 -NCIT:C167081 Recurrent Diffuse Astrocytoma 9 76554 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 10 76555 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 11 76556 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 11 76557 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 11 76558 -NCIT:C179220 Recurrent Pilocytic Astrocytoma 9 76559 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 10 76560 -NCIT:C177796 Recurrent WHO Grade 1 Glioma 8 76561 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 9 76562 -NCIT:C179220 Recurrent Pilocytic Astrocytoma 9 76563 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 10 76564 -NCIT:C180408 Recurrent Tectal Glioma 7 76565 -NCIT:C188127 Recurrent Astrocytoma, IDH-Mutant 7 76566 -NCIT:C182018 Recurrent Astrocytoma, IDH-Mutant, Grade 4 8 76567 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 8 76568 -NCIT:C9190 Recurrent Childhood Brain Stem Glioma 7 76569 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 8 76570 -NCIT:C153823 Recurrent Primary Malignant Central Nervous System Neoplasm 6 76571 -NCIT:C114836 Recurrent Childhood Central Nervous System Embryonal Neoplasm 7 76572 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 76573 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 76574 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 76575 -NCIT:C133499 Recurrent Atypical Teratoid/Rhabdoid Tumor 7 76576 -NCIT:C138019 Recurrent Central Nervous System Lymphoma 7 76577 -NCIT:C146990 Recurrent Central Nervous System Non-Hodgkin Lymphoma 8 76578 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 9 76579 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 76580 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 76581 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 76582 -NCIT:C142848 Recurrent Malignant Glioma 7 76583 -NCIT:C126306 Recurrent Glioblastoma 8 76584 -NCIT:C115364 Recurrent Childhood Glioblastoma 9 76585 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 10 76586 -NCIT:C115365 Recurrent Childhood Gliosarcoma 10 76587 -NCIT:C182019 Recurrent Glioblastoma, IDH-Wildtype 9 76588 -NCIT:C131209 Recurrent Gliosarcoma 10 76589 -NCIT:C115365 Recurrent Childhood Gliosarcoma 11 76590 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 10 76591 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 11 76592 -NCIT:C163961 Recurrent Small Cell Glioblastoma 10 76593 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 10 76594 -NCIT:C191198 Recurrent Brain Glioblastoma 9 76595 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 10 76596 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 8 76597 -NCIT:C148038 Recurrent WHO Grade 3 Glioma 8 76598 -NCIT:C136517 Recurrent Anaplastic Astrocytoma 9 76599 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 10 76600 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 10 76601 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 10 76602 -NCIT:C142861 Recurrent Anaplastic Oligoastrocytoma 9 76603 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 10 76604 -NCIT:C142862 Recurrent Anaplastic Oligodendroglioma 9 76605 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 10 76606 -NCIT:C160904 Recurrent Anaplastic Pleomorphic Xanthoastrocytoma 9 76607 -NCIT:C160912 Recurrent Anaplastic Ependymoma 9 76608 -NCIT:C179222 Recurrent Diffuse Midline Glioma, H3 K27M-Mutant 8 76609 -NCIT:C182018 Recurrent Astrocytoma, IDH-Mutant, Grade 4 8 76610 -NCIT:C153837 Recurrent Malignant Brain Neoplasm 7 76611 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 76612 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 76613 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 8 76614 -NCIT:C179221 Recurrent Gliomatosis Cerebri 8 76615 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 9 76616 -NCIT:C179226 Recurrent Malignant Choroid Plexus Neoplasm 8 76617 -NCIT:C191198 Recurrent Brain Glioblastoma 8 76618 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 9 76619 -NCIT:C5588 Recurrent Medulloblastoma 8 76620 -NCIT:C147109 Recurrent Medulloblastoma, SHH-Activated 9 76621 -NCIT:C180893 Recurrent Medulloblastoma, WNT-Activated 9 76622 -NCIT:C6774 Recurrent Childhood Medulloblastoma 9 76623 -NCIT:C160914 Recurrent Anaplastic Ganglioglioma 7 76624 -NCIT:C179223 Recurrent Anaplastic (Malignant) Meningioma 7 76625 -NCIT:C7849 Recurrent Retinoblastoma 7 76626 -NCIT:C173154 Recurrent Intracranial Neoplasm 6 76627 -NCIT:C71698 Recurrent Brain Neoplasm 7 76628 -NCIT:C148077 Recurrent Craniopharyngioma 8 76629 -NCIT:C162612 Recurrent Adamantinomatous Craniopharyngioma 9 76630 -NCIT:C153837 Recurrent Malignant Brain Neoplasm 8 76631 -NCIT:C115374 Recurrent Childhood Pineoblastoma 9 76632 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 9 76633 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 9 76634 -NCIT:C179221 Recurrent Gliomatosis Cerebri 9 76635 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 10 76636 -NCIT:C179226 Recurrent Malignant Choroid Plexus Neoplasm 9 76637 -NCIT:C191198 Recurrent Brain Glioblastoma 9 76638 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 10 76639 -NCIT:C5588 Recurrent Medulloblastoma 9 76640 -NCIT:C147109 Recurrent Medulloblastoma, SHH-Activated 10 76641 -NCIT:C180893 Recurrent Medulloblastoma, WNT-Activated 10 76642 -NCIT:C6774 Recurrent Childhood Medulloblastoma 10 76643 -NCIT:C155983 Recurrent Visual Pathway Glioma 8 76644 -NCIT:C7529 Recurrent Childhood Visual Pathway Glioma 9 76645 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 10 76646 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 11 76647 -NCIT:C7531 Recurrent Childhood Optic Nerve Glioma 10 76648 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 11 76649 -NCIT:C179227 Recurrent Pineal Parenchymal Cell Neoplasm 8 76650 -NCIT:C115374 Recurrent Childhood Pineoblastoma 9 76651 -NCIT:C180398 Recurrent Multinodular and Vacuolated Neuronal Tumor 8 76652 -NCIT:C180400 Recurrent Polymorphous Low Grade Neuroepithelial Tumor of the Young 8 76653 -NCIT:C7834 Recurrent Childhood Brain Neoplasm 8 76654 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 9 76655 -NCIT:C115374 Recurrent Childhood Pineoblastoma 9 76656 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 9 76657 -NCIT:C6774 Recurrent Childhood Medulloblastoma 9 76658 -NCIT:C7529 Recurrent Childhood Visual Pathway Glioma 9 76659 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 10 76660 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 11 76661 -NCIT:C7531 Recurrent Childhood Optic Nerve Glioma 10 76662 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 11 76663 -NCIT:C8389 Recurrent Childhood Cerebellar Astrocytoma 9 76664 -NCIT:C9190 Recurrent Childhood Brain Stem Glioma 9 76665 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 10 76666 -NCIT:C9191 Recurrent Childhood Cerebral Astrocytoma 9 76667 -NCIT:C7884 Recurrent Adult Brain Neoplasm 8 76668 -NCIT:C180338 Recurrent Gangliocytoma 6 76669 -NCIT:C180397 Recurrent Myxoid Glioneuronal Tumor 6 76670 -NCIT:C5312 Recurrent Meningioma 6 76671 -NCIT:C179223 Recurrent Anaplastic (Malignant) Meningioma 7 76672 -NCIT:C179224 Recurrent Atypical Meningioma 7 76673 -NCIT:C71699 Recurrent Spinal Cord Neoplasm 6 76674 -NCIT:C71712 Recurrent Childhood Spinal Cord Neoplasm 7 76675 -NCIT:C71713 Recurrent Adult Spinal Cord Neoplasm 7 76676 -NCIT:C9045 Recurrent Childhood Central Nervous System Neoplasm 6 76677 -NCIT:C114836 Recurrent Childhood Central Nervous System Embryonal Neoplasm 7 76678 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 76679 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 76680 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 76681 -NCIT:C114956 Recurrent Childhood Astrocytic Tumor 7 76682 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 8 76683 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 8 76684 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 9 76685 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 9 76686 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 9 76687 -NCIT:C115364 Recurrent Childhood Glioblastoma 8 76688 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 9 76689 -NCIT:C115365 Recurrent Childhood Gliosarcoma 9 76690 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 8 76691 -NCIT:C115373 Recurrent Childhood Pilomyxoid Astrocytoma 8 76692 -NCIT:C115375 Recurrent Childhood Pleomorphic Xanthoastrocytoma 8 76693 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 8 76694 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 8 76695 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 8 76696 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 9 76697 -NCIT:C8389 Recurrent Childhood Cerebellar Astrocytoma 8 76698 -NCIT:C9191 Recurrent Childhood Cerebral Astrocytoma 8 76699 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 7 76700 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 7 76701 -NCIT:C115370 Recurrent Childhood Oligoastrocytoma 7 76702 -NCIT:C115371 Recurrent Childhood Oligodendroglioma 7 76703 -NCIT:C71712 Recurrent Childhood Spinal Cord Neoplasm 7 76704 -NCIT:C7834 Recurrent Childhood Brain Neoplasm 7 76705 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 8 76706 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 76707 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 76708 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 76709 -NCIT:C7529 Recurrent Childhood Visual Pathway Glioma 8 76710 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 9 76711 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 76712 -NCIT:C7531 Recurrent Childhood Optic Nerve Glioma 9 76713 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 76714 -NCIT:C8389 Recurrent Childhood Cerebellar Astrocytoma 8 76715 -NCIT:C9190 Recurrent Childhood Brain Stem Glioma 8 76716 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 9 76717 -NCIT:C9191 Recurrent Childhood Cerebral Astrocytoma 8 76718 -NCIT:C8579 Recurrent Childhood Ependymoma 7 76719 -NCIT:C71701 Refractory Primary Central Nervous System Neoplasm 5 76720 -NCIT:C147107 Refractory Glioma 6 76721 -NCIT:C142855 Refractory Malignant Glioma 7 76722 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 8 76723 -NCIT:C146734 Refractory Glioblastoma 8 76724 -NCIT:C163960 Refractory Small Cell Glioblastoma 9 76725 -NCIT:C163962 Refractory Gliosarcoma 9 76726 -NCIT:C176998 Refractory Giant Cell Glioblastoma 9 76727 -NCIT:C153865 Refractory WHO Grade 3 Glioma 8 76728 -NCIT:C160905 Refractory Anaplastic Pleomorphic Xanthoastrocytoma 9 76729 -NCIT:C160913 Refractory Anaplastic Ependymoma 9 76730 -NCIT:C169074 Refractory Anaplastic Oligodendroglioma 9 76731 -NCIT:C169075 Refractory Anaplastic Astrocytoma 9 76732 -NCIT:C155984 Refractory Visual Pathway Glioma 7 76733 -NCIT:C177793 Refractory Low Grade Glioma 7 76734 -NCIT:C158104 Refractory WHO Grade 2 Glioma 8 76735 -NCIT:C147108 Refractory Ependymoma 9 76736 -NCIT:C177795 Refractory Low Grade Astrocytoma 8 76737 -NCIT:C177798 Refractory WHO Grade 1 Glioma 8 76738 -NCIT:C153842 Refractory Primary Malignant Central Nervous System Neoplasm 6 76739 -NCIT:C138020 Refractory Central Nervous System Lymphoma 7 76740 -NCIT:C146989 Refractory Central Nervous System Non-Hodgkin Lymphoma 8 76741 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 9 76742 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 76743 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 76744 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 76745 -NCIT:C142855 Refractory Malignant Glioma 7 76746 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 8 76747 -NCIT:C146734 Refractory Glioblastoma 8 76748 -NCIT:C163960 Refractory Small Cell Glioblastoma 9 76749 -NCIT:C163962 Refractory Gliosarcoma 9 76750 -NCIT:C176998 Refractory Giant Cell Glioblastoma 9 76751 -NCIT:C153865 Refractory WHO Grade 3 Glioma 8 76752 -NCIT:C160905 Refractory Anaplastic Pleomorphic Xanthoastrocytoma 9 76753 -NCIT:C160913 Refractory Anaplastic Ependymoma 9 76754 -NCIT:C169074 Refractory Anaplastic Oligodendroglioma 9 76755 -NCIT:C169075 Refractory Anaplastic Astrocytoma 9 76756 -NCIT:C153845 Refractory Malignant Brain Neoplasm 7 76757 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 8 76758 -NCIT:C142856 Refractory Medulloblastoma 8 76759 -NCIT:C147110 Refractory Medulloblastoma, SHH-Activated 9 76760 -NCIT:C180892 Refractory Medulloblastoma, WNT-Activated 9 76761 -NCIT:C160915 Refractory Anaplastic Ganglioglioma 7 76762 -NCIT:C162723 Refractory Atypical Teratoid/Rhabdoid Tumor 7 76763 -NCIT:C183152 Refractory Malignant Leptomeningeal Neoplasm 7 76764 -NCIT:C172953 Refractory Meningioma 6 76765 -NCIT:C187214 Refractory Childhood Central Nervous System Neoplasm 6 76766 -NCIT:C187215 Refractory Childhood Brain Neoplasm 7 76767 -NCIT:C71714 Refractory Childhood Spinal Cord Neoplasm 7 76768 -NCIT:C71702 Refractory Brain Neoplasm 6 76769 -NCIT:C153845 Refractory Malignant Brain Neoplasm 7 76770 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 8 76771 -NCIT:C142856 Refractory Medulloblastoma 8 76772 -NCIT:C147110 Refractory Medulloblastoma, SHH-Activated 9 76773 -NCIT:C180892 Refractory Medulloblastoma, WNT-Activated 9 76774 -NCIT:C155984 Refractory Visual Pathway Glioma 7 76775 -NCIT:C187215 Refractory Childhood Brain Neoplasm 7 76776 -NCIT:C71703 Refractory Spinal Cord Neoplasm 6 76777 -NCIT:C71714 Refractory Childhood Spinal Cord Neoplasm 7 76778 -NCIT:C71715 Refractory Adult Spinal Cord Neoplasm 7 76779 -NCIT:C9301 Central Nervous System Lymphoma 5 76780 -NCIT:C114779 Central Nervous System Non-Hodgkin Lymphoma 6 76781 -NCIT:C146989 Refractory Central Nervous System Non-Hodgkin Lymphoma 7 76782 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 8 76783 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 76784 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 76785 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 76786 -NCIT:C146990 Recurrent Central Nervous System Non-Hodgkin Lymphoma 7 76787 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 8 76788 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 76789 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 76790 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 76791 -NCIT:C147948 Central Nervous System B-Cell Non-Hodgkin Lymphoma 7 76792 -NCIT:C71720 Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 76793 -NCIT:C129602 Central Nervous System Intravascular Large B-Cell Lymphoma 9 76794 -NCIT:C155797 Pituitary Gland Diffuse Large B-Cell Lymphoma 9 76795 -NCIT:C157067 Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 76796 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 76797 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 76798 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 76799 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 76800 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 76801 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 76802 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 76803 -NCIT:C95991 Dural Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 76804 -NCIT:C155796 Pituitary Gland Non-Hodgkin Lymphoma 7 76805 -NCIT:C155797 Pituitary Gland Diffuse Large B-Cell Lymphoma 8 76806 -NCIT:C157065 Primary Vitreoretinal Non-Hodgkin Lymphoma 7 76807 -NCIT:C157067 Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 76808 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 76809 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 76810 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 8 76811 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 76812 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 8 76813 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 76814 -NCIT:C4365 Primary Retinal Non-Hodgkin Lymphoma 8 76815 -NCIT:C5409 Central Nervous System T-Cell Non-Hodgkin Lymphoma 7 76816 -NCIT:C129600 Central Nervous System Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 8 76817 -NCIT:C5322 Central Nervous System Anaplastic Large Cell Lymphoma 9 76818 -NCIT:C129598 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Positive 10 76819 -NCIT:C129599 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Negative 10 76820 -NCIT:C7609 Cerebral Non-Hodgkin Lymphoma 7 76821 -NCIT:C114951 Central Nervous System Hodgkin Lymphoma 6 76822 -NCIT:C5055 Cerebral Hodgkin Lymphoma 7 76823 -NCIT:C138019 Recurrent Central Nervous System Lymphoma 6 76824 -NCIT:C146990 Recurrent Central Nervous System Non-Hodgkin Lymphoma 7 76825 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 8 76826 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 76827 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 76828 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 76829 -NCIT:C138020 Refractory Central Nervous System Lymphoma 6 76830 -NCIT:C146989 Refractory Central Nervous System Non-Hodgkin Lymphoma 7 76831 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 8 76832 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 76833 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 76834 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 76835 -NCIT:C186658 Immunodeficiency-Related Central Nervous System Lymphoma 6 76836 -NCIT:C8284 AIDS-Related Primary Central Nervous System Lymphoma 7 76837 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 76838 -NCIT:C5157 Spinal Cord Lymphoma 6 76839 -NCIT:C7611 Cerebral Lymphoma 6 76840 -NCIT:C5054 Cerebral Lymphoma in Immunocompetent Host 7 76841 -NCIT:C5055 Cerebral Hodgkin Lymphoma 7 76842 -NCIT:C7609 Cerebral Non-Hodgkin Lymphoma 7 76843 -NCIT:C94756 Meningeal Lymphoma 6 76844 -NCIT:C95991 Dural Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 7 76845 -NCIT:C3229 Meningeal Neoplasm 4 76846 -NCIT:C3230 Meningioma 5 76847 -NCIT:C163006 Unresectable Meningioma 6 76848 -NCIT:C172953 Refractory Meningioma 6 76849 -NCIT:C3707 Meningiomatosis 6 76850 -NCIT:C5275 Multiple Intraspinal Meningiomas 7 76851 -NCIT:C5279 Multiple Skull Base Meningiomas 7 76852 -NCIT:C38936 Grade 1 Meningioma 6 76853 -NCIT:C4055 Benign Meningioma 7 76854 -NCIT:C5133 Benign Intracranial Meningioma 8 76855 -NCIT:C4329 Meningothelial Meningioma 7 76856 -NCIT:C4330 Fibrous Meningioma 7 76857 -NCIT:C4331 Psammomatous Meningioma 7 76858 -NCIT:C4332 Angiomatous Meningioma 7 76859 -NCIT:C4333 Transitional Meningioma 7 76860 -NCIT:C4718 Secretory Meningioma 7 76861 -NCIT:C4720 Lymphoplasmacyte-Rich Meningioma 7 76862 -NCIT:C4721 Microcystic Meningioma 7 76863 -NCIT:C6907 Metaplastic Meningioma 7 76864 -NCIT:C71299 Adult Grade 1 Meningioma 7 76865 -NCIT:C71300 Childhood Grade 1 Meningioma 7 76866 -NCIT:C38937 Grade 2 Meningioma 6 76867 -NCIT:C4722 Clear Cell Meningioma 7 76868 -NCIT:C5287 Spinal Multifocal Clear Cell Meningioma 8 76869 -NCIT:C5295 Brain Stem Intraparenchymal Clear Cell Meningioma 8 76870 -NCIT:C4723 Atypical Meningioma 7 76871 -NCIT:C179224 Recurrent Atypical Meningioma 8 76872 -NCIT:C6852 Adult Atypical Meningioma 8 76873 -NCIT:C6908 Chordoid Meningioma 7 76874 -NCIT:C71301 Childhood Grade 2 Meningioma 7 76875 -NCIT:C71304 Adult Grade 2 Meningioma 7 76876 -NCIT:C6852 Adult Atypical Meningioma 8 76877 -NCIT:C38938 Grade 3 Meningioma 6 76878 -NCIT:C3904 Papillary Meningioma 7 76879 -NCIT:C5270 Cerebellar Papillary Meningioma 8 76880 -NCIT:C8293 Adult Papillary Meningioma 8 76881 -NCIT:C4051 Anaplastic (Malignant) Meningioma 7 76882 -NCIT:C179223 Recurrent Anaplastic (Malignant) Meningioma 8 76883 -NCIT:C27307 Anaplastic (Malignant) Intracranial Meningioma 8 76884 -NCIT:C8275 Adult Anaplastic (Malignant) Meningioma 8 76885 -NCIT:C8605 Anaplastic (Malignant) Intraspinal Meningioma 8 76886 -NCIT:C6909 Rhabdoid Meningioma 7 76887 -NCIT:C71303 Childhood Grade 3 Meningioma 7 76888 -NCIT:C71305 Adult Grade 3 Meningioma 7 76889 -NCIT:C8275 Adult Anaplastic (Malignant) Meningioma 8 76890 -NCIT:C8293 Adult Papillary Meningioma 8 76891 -NCIT:C5274 Metastatic Meningioma 6 76892 -NCIT:C5294 Deletion of the Short Arm of Chromosome 1 (1p) Associated Meningioma 6 76893 -NCIT:C5301 Hereditary Meningioma 6 76894 -NCIT:C5305 Deletion of Chromosome 22 Associated Meningioma 6 76895 -NCIT:C5306 Deletion of Chromosome 3p Associated Meningioma 6 76896 -NCIT:C5312 Recurrent Meningioma 6 76897 -NCIT:C179223 Recurrent Anaplastic (Malignant) Meningioma 7 76898 -NCIT:C179224 Recurrent Atypical Meningioma 7 76899 -NCIT:C7051 Meningioma by Site 6 76900 -NCIT:C4656 Intracranial Meningioma 7 76901 -NCIT:C27307 Anaplastic (Malignant) Intracranial Meningioma 8 76902 -NCIT:C4719 Choroid Plexus Meningioma 8 76903 -NCIT:C5133 Benign Intracranial Meningioma 8 76904 -NCIT:C5270 Cerebellar Papillary Meningioma 8 76905 -NCIT:C5272 Skull Base Meningioma 8 76906 -NCIT:C155776 Sellar Meningioma 9 76907 -NCIT:C155778 Intrasellar Meningioma 10 76908 -NCIT:C6776 Suprasellar Meningioma 10 76909 -NCIT:C5283 Diaphragma Sellae Meningioma 11 76910 -NCIT:C5284 Tuberculum Sellae Meningioma 11 76911 -NCIT:C5311 Pituitary Stalk Meningioma 11 76912 -NCIT:C5268 Cavernous Sinus Meningioma 9 76913 -NCIT:C5271 Petrous Apex Meningioma 9 76914 -NCIT:C5278 Petroclival Meningioma 9 76915 -NCIT:C5279 Multiple Skull Base Meningiomas 9 76916 -NCIT:C5280 Foramen Magnum Meningioma 9 76917 -NCIT:C5281 Anterior Foramen Magnum Meningioma 10 76918 -NCIT:C5282 Posterior Foramen Magnum Meningioma 10 76919 -NCIT:C5285 Sphenoorbital Meningioma 9 76920 -NCIT:C5289 Clivus Meningioma 9 76921 -NCIT:C5288 Lower Clivus Meningioma 10 76922 -NCIT:C5290 Upper Clivus Meningioma 10 76923 -NCIT:C5307 Internal Auditory Canal Meningioma 9 76924 -NCIT:C5313 Sphenocavernous Meningioma 9 76925 -NCIT:C5273 Intraventricular Meningioma 8 76926 -NCIT:C5302 Lateral Ventricle Meningioma 9 76927 -NCIT:C5291 Radiation-Induced Intracranial Meningioma 8 76928 -NCIT:C5587 Visual Pathway Meningioma 8 76929 -NCIT:C4538 Optic Nerve Sheath Meningioma 9 76930 -NCIT:C5304 Bilateral Optic Nerve Meningioma 9 76931 -NCIT:C7538 Anterior Visual Pathway Meningioma 9 76932 -NCIT:C6253 Childhood Intracranial Meningioma 8 76933 -NCIT:C6775 Posterior Fossa Meningioma 8 76934 -NCIT:C5289 Clivus Meningioma 9 76935 -NCIT:C5288 Lower Clivus Meningioma 10 76936 -NCIT:C5290 Upper Clivus Meningioma 10 76937 -NCIT:C5295 Brain Stem Intraparenchymal Clear Cell Meningioma 9 76938 -NCIT:C5300 Cerebellopontine Angle Meningioma 9 76939 -NCIT:C7048 Supratentorial Meningioma 8 76940 -NCIT:C4807 Cerebral Meningioma 9 76941 -NCIT:C4959 Cerebral Convexity Meningioma 10 76942 -NCIT:C5292 Frontal Convexity Meningioma 11 76943 -NCIT:C4960 Parasagittal Meningioma 10 76944 -NCIT:C5269 Intracerebral Cystic Meningioma 10 76945 -NCIT:C5302 Lateral Ventricle Meningioma 10 76946 -NCIT:C5286 Anterior Cranial Fossa Meningioma 9 76947 -NCIT:C5267 Falx Cerebri Meningioma 10 76948 -NCIT:C5268 Cavernous Sinus Meningioma 10 76949 -NCIT:C6771 Olfactory Groove Meningioma 10 76950 -NCIT:C5586 Middle Cranial Fossa Meningioma 9 76951 -NCIT:C5307 Internal Auditory Canal Meningioma 10 76952 -NCIT:C6756 Pineal Region Meningioma 9 76953 -NCIT:C6779 Gasserian Meningioma 9 76954 -NCIT:C9374 Adult Intracranial Meningioma 8 76955 -NCIT:C5134 Spinal Meningioma 7 76956 -NCIT:C5275 Multiple Intraspinal Meningiomas 8 76957 -NCIT:C5287 Spinal Multifocal Clear Cell Meningioma 8 76958 -NCIT:C5296 Cervical Intraspinal Meningioma 8 76959 -NCIT:C5297 Thoracic Intraspinal Meningioma 8 76960 -NCIT:C5298 Lumbar Intraspinal Meningioma 8 76961 -NCIT:C5299 Sacral Intraspinal Meningioma 8 76962 -NCIT:C5310 Epidural Spinal Canal Meningioma 8 76963 -NCIT:C6935 Spinal Cord Meningioma 8 76964 -NCIT:C8605 Anaplastic (Malignant) Intraspinal Meningioma 8 76965 -NCIT:C5293 Jugular Foramen Meningioma 7 76966 -NCIT:C5668 Lung Meningioma 7 76967 -NCIT:C5276 Primary Lung Meningioma 8 76968 -NCIT:C6778 Intraorbital Meningioma 7 76969 -NCIT:C6777 Periocular Meningioma 8 76970 -NCIT:C8264 Childhood Meningioma 6 76971 -NCIT:C6253 Childhood Intracranial Meningioma 7 76972 -NCIT:C71300 Childhood Grade 1 Meningioma 7 76973 -NCIT:C71301 Childhood Grade 2 Meningioma 7 76974 -NCIT:C71303 Childhood Grade 3 Meningioma 7 76975 -NCIT:C9093 Adult Meningioma 6 76976 -NCIT:C71299 Adult Grade 1 Meningioma 7 76977 -NCIT:C71304 Adult Grade 2 Meningioma 7 76978 -NCIT:C6852 Adult Atypical Meningioma 8 76979 -NCIT:C71305 Adult Grade 3 Meningioma 7 76980 -NCIT:C8275 Adult Anaplastic (Malignant) Meningioma 8 76981 -NCIT:C8293 Adult Papillary Meningioma 8 76982 -NCIT:C9374 Adult Intracranial Meningioma 7 76983 -NCIT:C4628 Malignant Meningeal Neoplasm 5 76984 -NCIT:C27383 Meningeal Carcinomatosis 6 76985 -NCIT:C38938 Grade 3 Meningioma 6 76986 -NCIT:C3904 Papillary Meningioma 7 76987 -NCIT:C5270 Cerebellar Papillary Meningioma 8 76988 -NCIT:C8293 Adult Papillary Meningioma 8 76989 -NCIT:C4051 Anaplastic (Malignant) Meningioma 7 76990 -NCIT:C179223 Recurrent Anaplastic (Malignant) Meningioma 8 76991 -NCIT:C27307 Anaplastic (Malignant) Intracranial Meningioma 8 76992 -NCIT:C8275 Adult Anaplastic (Malignant) Meningioma 8 76993 -NCIT:C8605 Anaplastic (Malignant) Intraspinal Meningioma 8 76994 -NCIT:C6909 Rhabdoid Meningioma 7 76995 -NCIT:C71303 Childhood Grade 3 Meningioma 7 76996 -NCIT:C71305 Adult Grade 3 Meningioma 7 76997 -NCIT:C8275 Adult Anaplastic (Malignant) Meningioma 8 76998 -NCIT:C8293 Adult Papillary Meningioma 8 76999 -NCIT:C4073 Meningeal Sarcoma 6 77000 -NCIT:C4334 Meningeal Sarcomatosis 7 77001 -NCIT:C8312 Leptomeningeal Sarcoma 7 77002 -NCIT:C5446 Meningeal Gliomatosis 6 77003 -NCIT:C8506 Malignant Leptomeningeal Neoplasm 6 77004 -NCIT:C183152 Refractory Malignant Leptomeningeal Neoplasm 7 77005 -NCIT:C3814 Metastatic Malignant Neoplasm in the Leptomeninges 7 77006 -NCIT:C173916 Recurrent Metastatic Malignant Neoplasm in the Leptomeninges 8 77007 -NCIT:C185039 Extramedullary Disease in Plasma Cell Myeloma Involving the Leptomeninges 8 77008 -NCIT:C5399 Medulloblastoma with Leptomeningeal Spread 8 77009 -NCIT:C5400 Central Nervous System Embryonal Tumor, Not Otherwise Specified with Leptomeningeal Spread 8 77010 -NCIT:C94754 Meningeal Leukemia 8 77011 -NCIT:C9111 Meningeal Chronic Myelogenous Leukemia, BCR-ABL1 Positive 9 77012 -NCIT:C5317 Meningeal Melanoma 7 77013 -NCIT:C5318 Childhood Meningeal Melanoma 8 77014 -NCIT:C5319 Adult Meningeal Melanoma 8 77015 -NCIT:C6891 Meningeal Melanomatosis 8 77016 -NCIT:C8312 Leptomeningeal Sarcoma 7 77017 -NCIT:C92652 Meningeal Central Nervous System Solitary Fibrous Tumor, Grade 3 6 77018 -NCIT:C94756 Meningeal Lymphoma 6 77019 -NCIT:C95991 Dural Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 7 77020 -NCIT:C4660 Meningeal Solitary Fibrous Tumor 5 77021 -NCIT:C155784 Sellar Solitary Fibrous Tumor 6 77022 -NCIT:C92652 Meningeal Central Nervous System Solitary Fibrous Tumor, Grade 3 6 77023 -NCIT:C4957 Benign Neoplasm of the Meninges 5 77024 -NCIT:C4055 Benign Meningioma 6 77025 -NCIT:C5133 Benign Intracranial Meningioma 7 77026 -NCIT:C4958 Leptomeningeal Neoplasm 5 77027 -NCIT:C4661 Primary Meningeal Melanocytic Neoplasm 6 77028 -NCIT:C115253 Adult Primary Meningeal Melanocytic Neoplasm 7 77029 -NCIT:C5319 Adult Meningeal Melanoma 8 77030 -NCIT:C186649 Circumscribed Meningeal Melanocytic Neoplasm 7 77031 -NCIT:C186650 Meningeal Melanocytoma of Intermediate Grade 8 77032 -NCIT:C4662 Meningeal Melanocytoma 8 77033 -NCIT:C5317 Meningeal Melanoma 8 77034 -NCIT:C5318 Childhood Meningeal Melanoma 9 77035 -NCIT:C5319 Adult Meningeal Melanoma 9 77036 -NCIT:C6891 Meningeal Melanomatosis 9 77037 -NCIT:C6890 Meningeal Melanocytosis 7 77038 -NCIT:C8506 Malignant Leptomeningeal Neoplasm 6 77039 -NCIT:C183152 Refractory Malignant Leptomeningeal Neoplasm 7 77040 -NCIT:C3814 Metastatic Malignant Neoplasm in the Leptomeninges 7 77041 -NCIT:C173916 Recurrent Metastatic Malignant Neoplasm in the Leptomeninges 8 77042 -NCIT:C185039 Extramedullary Disease in Plasma Cell Myeloma Involving the Leptomeninges 8 77043 -NCIT:C5399 Medulloblastoma with Leptomeningeal Spread 8 77044 -NCIT:C5400 Central Nervous System Embryonal Tumor, Not Otherwise Specified with Leptomeningeal Spread 8 77045 -NCIT:C94754 Meningeal Leukemia 8 77046 -NCIT:C9111 Meningeal Chronic Myelogenous Leukemia, BCR-ABL1 Positive 9 77047 -NCIT:C5317 Meningeal Melanoma 7 77048 -NCIT:C5318 Childhood Meningeal Melanoma 8 77049 -NCIT:C5319 Adult Meningeal Melanoma 8 77050 -NCIT:C6891 Meningeal Melanomatosis 8 77051 -NCIT:C8312 Leptomeningeal Sarcoma 7 77052 -NCIT:C3382 Intraspinal Neoplasm 4 77053 -NCIT:C3019 Epidural Spinal Canal Neoplasm 5 77054 -NCIT:C5310 Epidural Spinal Canal Meningioma 6 77055 -NCIT:C5424 Epidural Spinal Canal Angiolipoma 6 77056 -NCIT:C3381 Spinal Cord Neoplasm 5 77057 -NCIT:C3572 Malignant Spinal Cord Neoplasm 6 77058 -NCIT:C4585 Metastatic Malignant Neoplasm in the Spinal Cord 7 77059 -NCIT:C5439 Drop Metastasis in the Spinal Cord 8 77060 -NCIT:C5152 Spinal Cord Sarcoma 7 77061 -NCIT:C5155 Spinal Cord Neuroblastoma 7 77062 -NCIT:C5157 Spinal Cord Lymphoma 7 77063 -NCIT:C5158 Spinal Cord Melanoma 7 77064 -NCIT:C5406 Spinal Cord Embryonal Tumor, Not Otherwise Specified 7 77065 -NCIT:C3627 Benign Spinal Cord Neoplasm 6 77066 -NCIT:C4619 Spinal Cord Lipoma 7 77067 -NCIT:C5145 Spinal Cord Neurofibroma 7 77068 -NCIT:C6808 Dermoid Cyst of the Spinal Cord 7 77069 -NCIT:C4534 Spinal Cord Glioma 6 77070 -NCIT:C186494 Spinal Cord Ependymoma, MYCN Amplified 7 77071 -NCIT:C3875 Spinal Cord Ependymoma 7 77072 -NCIT:C186495 Childhood Spinal Cord Ependymoma 8 77073 -NCIT:C27399 Adult Spinal Cord Ependymoma 8 77074 -NCIT:C4535 Spinal Cord Oligodendroglioma 7 77075 -NCIT:C4641 Spinal Cord Astrocytoma 7 77076 -NCIT:C5423 Cervicomedullary Junction Neoplasm 6 77077 -NCIT:C5428 Intramedullary Spinal Cord Teratoma 6 77078 -NCIT:C5443 Conus Medullaris Neoplasm 6 77079 -NCIT:C6935 Spinal Cord Meningioma 6 77080 -NCIT:C71024 Adult Spinal Cord Neoplasm 6 77081 -NCIT:C27399 Adult Spinal Cord Ependymoma 7 77082 -NCIT:C71713 Recurrent Adult Spinal Cord Neoplasm 7 77083 -NCIT:C71715 Refractory Adult Spinal Cord Neoplasm 7 77084 -NCIT:C71699 Recurrent Spinal Cord Neoplasm 6 77085 -NCIT:C71712 Recurrent Childhood Spinal Cord Neoplasm 7 77086 -NCIT:C71713 Recurrent Adult Spinal Cord Neoplasm 7 77087 -NCIT:C71703 Refractory Spinal Cord Neoplasm 6 77088 -NCIT:C71714 Refractory Childhood Spinal Cord Neoplasm 7 77089 -NCIT:C71715 Refractory Adult Spinal Cord Neoplasm 7 77090 -NCIT:C9234 Childhood Spinal Cord Neoplasm 6 77091 -NCIT:C186495 Childhood Spinal Cord Ependymoma 7 77092 -NCIT:C71712 Recurrent Childhood Spinal Cord Neoplasm 7 77093 -NCIT:C71714 Refractory Childhood Spinal Cord Neoplasm 7 77094 -NCIT:C5134 Spinal Meningioma 5 77095 -NCIT:C5275 Multiple Intraspinal Meningiomas 6 77096 -NCIT:C5287 Spinal Multifocal Clear Cell Meningioma 6 77097 -NCIT:C5296 Cervical Intraspinal Meningioma 6 77098 -NCIT:C5297 Thoracic Intraspinal Meningioma 6 77099 -NCIT:C5298 Lumbar Intraspinal Meningioma 6 77100 -NCIT:C5299 Sacral Intraspinal Meningioma 6 77101 -NCIT:C5310 Epidural Spinal Canal Meningioma 6 77102 -NCIT:C6935 Spinal Cord Meningioma 6 77103 -NCIT:C8605 Anaplastic (Malignant) Intraspinal Meningioma 6 77104 -NCIT:C5135 Intradural Extramedullary Spinal Canal Neoplasm 5 77105 -NCIT:C5479 Cauda Equina Neoplasm 5 77106 -NCIT:C5324 Cauda Equina Neuroendocrine Tumor 6 77107 -NCIT:C5408 Intradural Extramedullary Cauda Equina Astrocytoma 6 77108 -NCIT:C4627 Malignant Central Nervous System Neoplasm 4 77109 -NCIT:C129807 Central Nervous System Histiocytic Sarcoma 5 77110 -NCIT:C153823 Recurrent Primary Malignant Central Nervous System Neoplasm 5 77111 -NCIT:C114836 Recurrent Childhood Central Nervous System Embryonal Neoplasm 6 77112 -NCIT:C115374 Recurrent Childhood Pineoblastoma 7 77113 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 7 77114 -NCIT:C6774 Recurrent Childhood Medulloblastoma 7 77115 -NCIT:C133499 Recurrent Atypical Teratoid/Rhabdoid Tumor 6 77116 -NCIT:C138019 Recurrent Central Nervous System Lymphoma 6 77117 -NCIT:C146990 Recurrent Central Nervous System Non-Hodgkin Lymphoma 7 77118 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 8 77119 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 77120 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 77121 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 77122 -NCIT:C142848 Recurrent Malignant Glioma 6 77123 -NCIT:C126306 Recurrent Glioblastoma 7 77124 -NCIT:C115364 Recurrent Childhood Glioblastoma 8 77125 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 9 77126 -NCIT:C115365 Recurrent Childhood Gliosarcoma 9 77127 -NCIT:C182019 Recurrent Glioblastoma, IDH-Wildtype 8 77128 -NCIT:C131209 Recurrent Gliosarcoma 9 77129 -NCIT:C115365 Recurrent Childhood Gliosarcoma 10 77130 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 9 77131 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 10 77132 -NCIT:C163961 Recurrent Small Cell Glioblastoma 9 77133 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 9 77134 -NCIT:C191198 Recurrent Brain Glioblastoma 8 77135 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 9 77136 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 7 77137 -NCIT:C148038 Recurrent WHO Grade 3 Glioma 7 77138 -NCIT:C136517 Recurrent Anaplastic Astrocytoma 8 77139 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 9 77140 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 9 77141 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 9 77142 -NCIT:C142861 Recurrent Anaplastic Oligoastrocytoma 8 77143 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 9 77144 -NCIT:C142862 Recurrent Anaplastic Oligodendroglioma 8 77145 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 9 77146 -NCIT:C160904 Recurrent Anaplastic Pleomorphic Xanthoastrocytoma 8 77147 -NCIT:C160912 Recurrent Anaplastic Ependymoma 8 77148 -NCIT:C179222 Recurrent Diffuse Midline Glioma, H3 K27M-Mutant 7 77149 -NCIT:C182018 Recurrent Astrocytoma, IDH-Mutant, Grade 4 7 77150 -NCIT:C153837 Recurrent Malignant Brain Neoplasm 6 77151 -NCIT:C115374 Recurrent Childhood Pineoblastoma 7 77152 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 7 77153 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 7 77154 -NCIT:C179221 Recurrent Gliomatosis Cerebri 7 77155 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 8 77156 -NCIT:C179226 Recurrent Malignant Choroid Plexus Neoplasm 7 77157 -NCIT:C191198 Recurrent Brain Glioblastoma 7 77158 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 8 77159 -NCIT:C5588 Recurrent Medulloblastoma 7 77160 -NCIT:C147109 Recurrent Medulloblastoma, SHH-Activated 8 77161 -NCIT:C180893 Recurrent Medulloblastoma, WNT-Activated 8 77162 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 77163 -NCIT:C160914 Recurrent Anaplastic Ganglioglioma 6 77164 -NCIT:C179223 Recurrent Anaplastic (Malignant) Meningioma 6 77165 -NCIT:C7849 Recurrent Retinoblastoma 6 77166 -NCIT:C153842 Refractory Primary Malignant Central Nervous System Neoplasm 5 77167 -NCIT:C138020 Refractory Central Nervous System Lymphoma 6 77168 -NCIT:C146989 Refractory Central Nervous System Non-Hodgkin Lymphoma 7 77169 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 8 77170 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 77171 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 77172 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 77173 -NCIT:C142855 Refractory Malignant Glioma 6 77174 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 7 77175 -NCIT:C146734 Refractory Glioblastoma 7 77176 -NCIT:C163960 Refractory Small Cell Glioblastoma 8 77177 -NCIT:C163962 Refractory Gliosarcoma 8 77178 -NCIT:C176998 Refractory Giant Cell Glioblastoma 8 77179 -NCIT:C153865 Refractory WHO Grade 3 Glioma 7 77180 -NCIT:C160905 Refractory Anaplastic Pleomorphic Xanthoastrocytoma 8 77181 -NCIT:C160913 Refractory Anaplastic Ependymoma 8 77182 -NCIT:C169074 Refractory Anaplastic Oligodendroglioma 8 77183 -NCIT:C169075 Refractory Anaplastic Astrocytoma 8 77184 -NCIT:C153845 Refractory Malignant Brain Neoplasm 6 77185 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 7 77186 -NCIT:C142856 Refractory Medulloblastoma 7 77187 -NCIT:C147110 Refractory Medulloblastoma, SHH-Activated 8 77188 -NCIT:C180892 Refractory Medulloblastoma, WNT-Activated 8 77189 -NCIT:C160915 Refractory Anaplastic Ganglioglioma 6 77190 -NCIT:C162723 Refractory Atypical Teratoid/Rhabdoid Tumor 6 77191 -NCIT:C183152 Refractory Malignant Leptomeningeal Neoplasm 6 77192 -NCIT:C185037 Extramedullary Disease in Plasma Cell Myeloma Involving the Central Nervous System 5 77193 -NCIT:C185039 Extramedullary Disease in Plasma Cell Myeloma Involving the Leptomeninges 6 77194 -NCIT:C3572 Malignant Spinal Cord Neoplasm 5 77195 -NCIT:C4585 Metastatic Malignant Neoplasm in the Spinal Cord 6 77196 -NCIT:C5439 Drop Metastasis in the Spinal Cord 7 77197 -NCIT:C5152 Spinal Cord Sarcoma 6 77198 -NCIT:C5155 Spinal Cord Neuroblastoma 6 77199 -NCIT:C5157 Spinal Cord Lymphoma 6 77200 -NCIT:C5158 Spinal Cord Melanoma 6 77201 -NCIT:C5406 Spinal Cord Embryonal Tumor, Not Otherwise Specified 6 77202 -NCIT:C4015 Metastatic Malignant Neoplasm in the Central Nervous System 5 77203 -NCIT:C133501 Breast Carcinoma Metastatic in the Central Nervous System 6 77204 -NCIT:C36301 Breast Carcinoma Metastatic in the Brain 7 77205 -NCIT:C133503 Lung Carcinoma Metastatic in the Central Nervous System 6 77206 -NCIT:C36304 Lung Carcinoma Metastatic in the Brain 7 77207 -NCIT:C133504 Melanoma Metastatic in the Central Nervous System 6 77208 -NCIT:C179206 Melanoma Metastatic in the Brain 7 77209 -NCIT:C155786 Metastatic Malignant Neoplasm in the Sellar Region 6 77210 -NCIT:C6805 Metastatic Malignant Neoplasm in the Pituitary Gland 7 77211 -NCIT:C175220 Metastatic Malignant Neoplasm in the Visual Pathway 6 77212 -NCIT:C3813 Metastatic Malignant Neoplasm in the Brain 6 77213 -NCIT:C179206 Melanoma Metastatic in the Brain 7 77214 -NCIT:C187211 Metastatic Childhood Malignant Neoplasm in the Brain 7 77215 -NCIT:C36301 Breast Carcinoma Metastatic in the Brain 7 77216 -NCIT:C36304 Lung Carcinoma Metastatic in the Brain 7 77217 -NCIT:C5057 Secondary Cerebral Hodgkin Lymphoma 7 77218 -NCIT:C5816 Metastatic Adult Malignant Neoplasm in the Brain 7 77219 -NCIT:C8550 Metastatic Malignant Neoplasm in the Brain Stem 7 77220 -NCIT:C3814 Metastatic Malignant Neoplasm in the Leptomeninges 6 77221 -NCIT:C173916 Recurrent Metastatic Malignant Neoplasm in the Leptomeninges 7 77222 -NCIT:C185039 Extramedullary Disease in Plasma Cell Myeloma Involving the Leptomeninges 7 77223 -NCIT:C5399 Medulloblastoma with Leptomeningeal Spread 7 77224 -NCIT:C5400 Central Nervous System Embryonal Tumor, Not Otherwise Specified with Leptomeningeal Spread 7 77225 -NCIT:C94754 Meningeal Leukemia 7 77226 -NCIT:C9111 Meningeal Chronic Myelogenous Leukemia, BCR-ABL1 Positive 8 77227 -NCIT:C4585 Metastatic Malignant Neoplasm in the Spinal Cord 6 77228 -NCIT:C5439 Drop Metastasis in the Spinal Cord 7 77229 -NCIT:C87797 Secondary Central Nervous System Lymphoma 6 77230 -NCIT:C114949 Secondary Central Nervous System Hodgkin Lymphoma 7 77231 -NCIT:C5057 Secondary Cerebral Hodgkin Lymphoma 8 77232 -NCIT:C114950 Secondary Central Nervous System Non-Hodgkin Lymphoma 7 77233 -NCIT:C4628 Malignant Meningeal Neoplasm 5 77234 -NCIT:C27383 Meningeal Carcinomatosis 6 77235 -NCIT:C38938 Grade 3 Meningioma 6 77236 -NCIT:C3904 Papillary Meningioma 7 77237 -NCIT:C5270 Cerebellar Papillary Meningioma 8 77238 -NCIT:C8293 Adult Papillary Meningioma 8 77239 -NCIT:C4051 Anaplastic (Malignant) Meningioma 7 77240 -NCIT:C179223 Recurrent Anaplastic (Malignant) Meningioma 8 77241 -NCIT:C27307 Anaplastic (Malignant) Intracranial Meningioma 8 77242 -NCIT:C8275 Adult Anaplastic (Malignant) Meningioma 8 77243 -NCIT:C8605 Anaplastic (Malignant) Intraspinal Meningioma 8 77244 -NCIT:C6909 Rhabdoid Meningioma 7 77245 -NCIT:C71303 Childhood Grade 3 Meningioma 7 77246 -NCIT:C71305 Adult Grade 3 Meningioma 7 77247 -NCIT:C8275 Adult Anaplastic (Malignant) Meningioma 8 77248 -NCIT:C8293 Adult Papillary Meningioma 8 77249 -NCIT:C4073 Meningeal Sarcoma 6 77250 -NCIT:C4334 Meningeal Sarcomatosis 7 77251 -NCIT:C8312 Leptomeningeal Sarcoma 7 77252 -NCIT:C5446 Meningeal Gliomatosis 6 77253 -NCIT:C8506 Malignant Leptomeningeal Neoplasm 6 77254 -NCIT:C183152 Refractory Malignant Leptomeningeal Neoplasm 7 77255 -NCIT:C3814 Metastatic Malignant Neoplasm in the Leptomeninges 7 77256 -NCIT:C173916 Recurrent Metastatic Malignant Neoplasm in the Leptomeninges 8 77257 -NCIT:C185039 Extramedullary Disease in Plasma Cell Myeloma Involving the Leptomeninges 8 77258 -NCIT:C5399 Medulloblastoma with Leptomeningeal Spread 8 77259 -NCIT:C5400 Central Nervous System Embryonal Tumor, Not Otherwise Specified with Leptomeningeal Spread 8 77260 -NCIT:C94754 Meningeal Leukemia 8 77261 -NCIT:C9111 Meningeal Chronic Myelogenous Leukemia, BCR-ABL1 Positive 9 77262 -NCIT:C5317 Meningeal Melanoma 7 77263 -NCIT:C5318 Childhood Meningeal Melanoma 8 77264 -NCIT:C5319 Adult Meningeal Melanoma 8 77265 -NCIT:C6891 Meningeal Melanomatosis 8 77266 -NCIT:C8312 Leptomeningeal Sarcoma 7 77267 -NCIT:C92652 Meningeal Central Nervous System Solitary Fibrous Tumor, Grade 3 6 77268 -NCIT:C94756 Meningeal Lymphoma 6 77269 -NCIT:C95991 Dural Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 7 77270 -NCIT:C4717 Anaplastic Ganglioglioma 5 77271 -NCIT:C160914 Recurrent Anaplastic Ganglioglioma 6 77272 -NCIT:C160915 Refractory Anaplastic Ganglioglioma 6 77273 -NCIT:C4822 Malignant Glioma 5 77274 -NCIT:C102897 High Grade Astrocytic Tumor 6 77275 -NCIT:C167335 Astrocytoma, IDH-Mutant, Grade 4 7 77276 -NCIT:C182018 Recurrent Astrocytoma, IDH-Mutant, Grade 4 8 77277 -NCIT:C3058 Glioblastoma 7 77278 -NCIT:C111691 Glioblastoma by Gene Expression Profile 8 77279 -NCIT:C111692 Proneural Glioblastoma 9 77280 -NCIT:C111693 Neural Glioblastoma 9 77281 -NCIT:C111694 Classical Glioblastoma 9 77282 -NCIT:C111695 Mesenchymal Glioblastoma 9 77283 -NCIT:C126306 Recurrent Glioblastoma 8 77284 -NCIT:C115364 Recurrent Childhood Glioblastoma 9 77285 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 10 77286 -NCIT:C115365 Recurrent Childhood Gliosarcoma 10 77287 -NCIT:C182019 Recurrent Glioblastoma, IDH-Wildtype 9 77288 -NCIT:C131209 Recurrent Gliosarcoma 10 77289 -NCIT:C115365 Recurrent Childhood Gliosarcoma 11 77290 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 10 77291 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 11 77292 -NCIT:C163961 Recurrent Small Cell Glioblastoma 10 77293 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 10 77294 -NCIT:C191198 Recurrent Brain Glioblastoma 9 77295 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 10 77296 -NCIT:C129295 Glioblastoma, Not Otherwise Specified 8 77297 -NCIT:C146734 Refractory Glioblastoma 8 77298 -NCIT:C163960 Refractory Small Cell Glioblastoma 9 77299 -NCIT:C163962 Refractory Gliosarcoma 9 77300 -NCIT:C176998 Refractory Giant Cell Glioblastoma 9 77301 -NCIT:C166156 Resectable Glioblastoma 8 77302 -NCIT:C170979 Metastatic Glioblastoma 8 77303 -NCIT:C170978 Advanced Glioblastoma 9 77304 -NCIT:C170980 Locally Advanced Glioblastoma 9 77305 -NCIT:C176890 Unresectable Glioblastoma 8 77306 -NCIT:C39750 Glioblastoma, IDH-Wildtype 8 77307 -NCIT:C125890 Small Cell Glioblastoma 9 77308 -NCIT:C163960 Refractory Small Cell Glioblastoma 10 77309 -NCIT:C163961 Recurrent Small Cell Glioblastoma 10 77310 -NCIT:C129293 Epithelioid Glioblastoma 9 77311 -NCIT:C129296 Glioblastoma with Primitive Neuronal Component 9 77312 -NCIT:C132902 MGMT-Unmethylated Glioblastoma 9 77313 -NCIT:C154335 MGMT-Methylated Glioblastoma 9 77314 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 10 77315 -NCIT:C182019 Recurrent Glioblastoma, IDH-Wildtype 9 77316 -NCIT:C131209 Recurrent Gliosarcoma 10 77317 -NCIT:C115365 Recurrent Childhood Gliosarcoma 11 77318 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 10 77319 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 11 77320 -NCIT:C163961 Recurrent Small Cell Glioblastoma 10 77321 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 10 77322 -NCIT:C185178 Granular Cell Glioblastoma 9 77323 -NCIT:C185180 Lipidized Glioblastoma 9 77324 -NCIT:C3796 Gliosarcoma 9 77325 -NCIT:C114968 Childhood Gliosarcoma 10 77326 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 11 77327 -NCIT:C115365 Recurrent Childhood Gliosarcoma 11 77328 -NCIT:C131209 Recurrent Gliosarcoma 10 77329 -NCIT:C115365 Recurrent Childhood Gliosarcoma 11 77330 -NCIT:C163962 Refractory Gliosarcoma 10 77331 -NCIT:C171013 Supratentorial Gliosarcoma 10 77332 -NCIT:C68701 Adult Gliosarcoma 10 77333 -NCIT:C9370 Adult Brain Stem Gliosarcoma 11 77334 -NCIT:C4325 Giant Cell Glioblastoma 9 77335 -NCIT:C114966 Childhood Giant Cell Glioblastoma 10 77336 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 11 77337 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 10 77338 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 11 77339 -NCIT:C176998 Refractory Giant Cell Glioblastoma 10 77340 -NCIT:C68702 Adult Giant Cell Glioblastoma 10 77341 -NCIT:C39751 Secondary Glioblastoma 8 77342 -NCIT:C4642 Brain Glioblastoma 8 77343 -NCIT:C147901 Childhood Brain Glioblastoma 9 77344 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 77345 -NCIT:C191198 Recurrent Brain Glioblastoma 9 77346 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 10 77347 -NCIT:C5148 Infratentorial Glioblastoma 9 77348 -NCIT:C5097 Brain Stem Glioblastoma 10 77349 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 11 77350 -NCIT:C9370 Adult Brain Stem Gliosarcoma 11 77351 -NCIT:C5150 Cerebellar Glioblastoma 10 77352 -NCIT:C5149 Supratentorial Glioblastoma 9 77353 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 10 77354 -NCIT:C5129 Diencephalic Glioblastoma 10 77355 -NCIT:C5151 Cerebral Glioblastoma 10 77356 -NCIT:C171013 Supratentorial Gliosarcoma 11 77357 -NCIT:C9375 Adult Brain Glioblastoma 9 77358 -NCIT:C9370 Adult Brain Stem Gliosarcoma 10 77359 -NCIT:C5136 Childhood Glioblastoma 8 77360 -NCIT:C114966 Childhood Giant Cell Glioblastoma 9 77361 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 10 77362 -NCIT:C114968 Childhood Gliosarcoma 9 77363 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 77364 -NCIT:C115365 Recurrent Childhood Gliosarcoma 10 77365 -NCIT:C115364 Recurrent Childhood Glioblastoma 9 77366 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 10 77367 -NCIT:C115365 Recurrent Childhood Gliosarcoma 10 77368 -NCIT:C147901 Childhood Brain Glioblastoma 9 77369 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 77370 -NCIT:C9094 Adult Glioblastoma 8 77371 -NCIT:C27183 Adult Spinal Cord Glioblastoma 9 77372 -NCIT:C68701 Adult Gliosarcoma 9 77373 -NCIT:C9370 Adult Brain Stem Gliosarcoma 10 77374 -NCIT:C68702 Adult Giant Cell Glioblastoma 9 77375 -NCIT:C9375 Adult Brain Glioblastoma 9 77376 -NCIT:C9370 Adult Brain Stem Gliosarcoma 10 77377 -NCIT:C92549 Multifocal Glioblastomas 8 77378 -NCIT:C9477 Anaplastic Astrocytoma 7 77379 -NCIT:C129290 Astrocytoma, IDH-Mutant, Grade 3 8 77380 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 9 77381 -NCIT:C129291 Anaplastic Astrocytoma, IDH-Wildtype 8 77382 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 9 77383 -NCIT:C129292 Anaplastic Astrocytoma, Not Otherwise Specified 8 77384 -NCIT:C136517 Recurrent Anaplastic Astrocytoma 8 77385 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 9 77386 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 9 77387 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 9 77388 -NCIT:C169075 Refractory Anaplastic Astrocytoma 8 77389 -NCIT:C185879 High Grade Astrocytoma with Piloid Features 8 77390 -NCIT:C5123 Hemispheric Anaplastic Astrocytoma 8 77391 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 9 77392 -NCIT:C156035 Frontal Lobe Anaplastic Astrocytoma 9 77393 -NCIT:C156036 Temporal Lobe Anaplastic Astrocytoma 9 77394 -NCIT:C171036 Parietal Lobe Anaplastic Astrocytoma 9 77395 -NCIT:C5124 Anaplastic Diencephalic Astrocytoma 8 77396 -NCIT:C5416 Secondary Supratentorial Anaplastic Astrocytoma 8 77397 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 8 77398 -NCIT:C6215 Childhood Anaplastic Astrocytoma 8 77399 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 9 77400 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 9 77401 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 10 77402 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 10 77403 -NCIT:C8257 Adult Anaplastic Astrocytoma 8 77404 -NCIT:C127816 WHO Grade 3 Glioma 6 77405 -NCIT:C129327 Anaplastic Pleomorphic Xanthoastrocytoma 7 77406 -NCIT:C160904 Recurrent Anaplastic Pleomorphic Xanthoastrocytoma 8 77407 -NCIT:C160905 Refractory Anaplastic Pleomorphic Xanthoastrocytoma 8 77408 -NCIT:C148038 Recurrent WHO Grade 3 Glioma 7 77409 -NCIT:C136517 Recurrent Anaplastic Astrocytoma 8 77410 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 9 77411 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 9 77412 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 9 77413 -NCIT:C142861 Recurrent Anaplastic Oligoastrocytoma 8 77414 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 9 77415 -NCIT:C142862 Recurrent Anaplastic Oligodendroglioma 8 77416 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 9 77417 -NCIT:C160904 Recurrent Anaplastic Pleomorphic Xanthoastrocytoma 8 77418 -NCIT:C160912 Recurrent Anaplastic Ependymoma 8 77419 -NCIT:C153865 Refractory WHO Grade 3 Glioma 7 77420 -NCIT:C160905 Refractory Anaplastic Pleomorphic Xanthoastrocytoma 8 77421 -NCIT:C160913 Refractory Anaplastic Ependymoma 8 77422 -NCIT:C169074 Refractory Anaplastic Oligodendroglioma 8 77423 -NCIT:C169075 Refractory Anaplastic Astrocytoma 8 77424 -NCIT:C4049 Anaplastic Ependymoma 7 77425 -NCIT:C124293 Childhood Anaplastic Ependymoma 8 77426 -NCIT:C160912 Recurrent Anaplastic Ependymoma 8 77427 -NCIT:C160913 Refractory Anaplastic Ependymoma 8 77428 -NCIT:C8269 Adult Anaplastic Ependymoma 8 77429 -NCIT:C4326 Anaplastic Oligodendroglioma 7 77430 -NCIT:C129321 Anaplastic Oligodendroglioma, IDH-Mutant and 1p/19q-Codeleted 8 77431 -NCIT:C129322 Anaplastic Oligodendroglioma, Not Otherwise Specified 8 77432 -NCIT:C142862 Recurrent Anaplastic Oligodendroglioma 8 77433 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 9 77434 -NCIT:C156120 Frontal Lobe Anaplastic Oligodendroglioma 8 77435 -NCIT:C169074 Refractory Anaplastic Oligodendroglioma 8 77436 -NCIT:C5447 Childhood Anaplastic Oligodendroglioma 8 77437 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 9 77438 -NCIT:C8270 Adult Anaplastic Oligodendroglioma 8 77439 -NCIT:C6959 Anaplastic Oligoastrocytoma 7 77440 -NCIT:C114973 Childhood Anaplastic Oligoastrocytoma 8 77441 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 9 77442 -NCIT:C129324 Anaplastic Oligoastrocytoma, Not Otherwise Specified 8 77443 -NCIT:C142861 Recurrent Anaplastic Oligoastrocytoma 8 77444 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 9 77445 -NCIT:C7446 Anaplastic Brain Stem Glioma 7 77446 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 8 77447 -NCIT:C9477 Anaplastic Astrocytoma 7 77448 -NCIT:C129290 Astrocytoma, IDH-Mutant, Grade 3 8 77449 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 9 77450 -NCIT:C129291 Anaplastic Astrocytoma, IDH-Wildtype 8 77451 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 9 77452 -NCIT:C129292 Anaplastic Astrocytoma, Not Otherwise Specified 8 77453 -NCIT:C136517 Recurrent Anaplastic Astrocytoma 8 77454 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 9 77455 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 9 77456 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 9 77457 -NCIT:C169075 Refractory Anaplastic Astrocytoma 8 77458 -NCIT:C185879 High Grade Astrocytoma with Piloid Features 8 77459 -NCIT:C5123 Hemispheric Anaplastic Astrocytoma 8 77460 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 9 77461 -NCIT:C156035 Frontal Lobe Anaplastic Astrocytoma 9 77462 -NCIT:C156036 Temporal Lobe Anaplastic Astrocytoma 9 77463 -NCIT:C171036 Parietal Lobe Anaplastic Astrocytoma 9 77464 -NCIT:C5124 Anaplastic Diencephalic Astrocytoma 8 77465 -NCIT:C5416 Secondary Supratentorial Anaplastic Astrocytoma 8 77466 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 8 77467 -NCIT:C6215 Childhood Anaplastic Astrocytoma 8 77468 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 9 77469 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 9 77470 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 10 77471 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 10 77472 -NCIT:C8257 Adult Anaplastic Astrocytoma 8 77473 -NCIT:C142848 Recurrent Malignant Glioma 6 77474 -NCIT:C126306 Recurrent Glioblastoma 7 77475 -NCIT:C115364 Recurrent Childhood Glioblastoma 8 77476 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 9 77477 -NCIT:C115365 Recurrent Childhood Gliosarcoma 9 77478 -NCIT:C182019 Recurrent Glioblastoma, IDH-Wildtype 8 77479 -NCIT:C131209 Recurrent Gliosarcoma 9 77480 -NCIT:C115365 Recurrent Childhood Gliosarcoma 10 77481 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 9 77482 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 10 77483 -NCIT:C163961 Recurrent Small Cell Glioblastoma 9 77484 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 9 77485 -NCIT:C191198 Recurrent Brain Glioblastoma 8 77486 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 9 77487 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 7 77488 -NCIT:C148038 Recurrent WHO Grade 3 Glioma 7 77489 -NCIT:C136517 Recurrent Anaplastic Astrocytoma 8 77490 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 9 77491 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 9 77492 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 9 77493 -NCIT:C142861 Recurrent Anaplastic Oligoastrocytoma 8 77494 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 9 77495 -NCIT:C142862 Recurrent Anaplastic Oligodendroglioma 8 77496 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 9 77497 -NCIT:C160904 Recurrent Anaplastic Pleomorphic Xanthoastrocytoma 8 77498 -NCIT:C160912 Recurrent Anaplastic Ependymoma 8 77499 -NCIT:C179222 Recurrent Diffuse Midline Glioma, H3 K27M-Mutant 7 77500 -NCIT:C182018 Recurrent Astrocytoma, IDH-Mutant, Grade 4 7 77501 -NCIT:C142855 Refractory Malignant Glioma 6 77502 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 7 77503 -NCIT:C146734 Refractory Glioblastoma 7 77504 -NCIT:C163960 Refractory Small Cell Glioblastoma 8 77505 -NCIT:C163962 Refractory Gliosarcoma 8 77506 -NCIT:C176998 Refractory Giant Cell Glioblastoma 8 77507 -NCIT:C153865 Refractory WHO Grade 3 Glioma 7 77508 -NCIT:C160905 Refractory Anaplastic Pleomorphic Xanthoastrocytoma 8 77509 -NCIT:C160913 Refractory Anaplastic Ependymoma 8 77510 -NCIT:C169074 Refractory Anaplastic Oligodendroglioma 8 77511 -NCIT:C169075 Refractory Anaplastic Astrocytoma 8 77512 -NCIT:C162993 Malignant Brain Glioma 6 77513 -NCIT:C156120 Frontal Lobe Anaplastic Oligodendroglioma 7 77514 -NCIT:C185371 Diffuse Hemispheric Glioma, H3 G34-Mutant 7 77515 -NCIT:C188926 Childhood Diffuse Hemispheric Glioma, H3 G34-Mutant 8 77516 -NCIT:C188927 Adult Diffuse Hemispheric Glioma, H3 G34-Mutant 8 77517 -NCIT:C185467 Diffuse Pediatric-Type High Grade Glioma, H3-Wildtype and IDH-Wildtype 7 77518 -NCIT:C185468 Diffuse Pediatric-Type High Grade Glioma RTK2 8 77519 -NCIT:C185469 Diffuse Pediatric-Type High Grade Glioma RTK1 8 77520 -NCIT:C185470 Diffuse Pediatric-Type High Grade Glioma MYCN 8 77521 -NCIT:C185471 Infant-Type Hemispheric Glioma 7 77522 -NCIT:C185472 Infant-Type Hemispheric Glioma, NTRK-Altered 8 77523 -NCIT:C185473 Infant-Type Hemispheric Glioma, ROS1-Altered 8 77524 -NCIT:C185474 Infant-Type Hemispheric Glioma, ALK-Altered 8 77525 -NCIT:C185475 Infant-Type Hemispheric Glioma, MET-Altered 8 77526 -NCIT:C4642 Brain Glioblastoma 7 77527 -NCIT:C147901 Childhood Brain Glioblastoma 8 77528 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 9 77529 -NCIT:C191198 Recurrent Brain Glioblastoma 8 77530 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 9 77531 -NCIT:C5148 Infratentorial Glioblastoma 8 77532 -NCIT:C5097 Brain Stem Glioblastoma 9 77533 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 77534 -NCIT:C9370 Adult Brain Stem Gliosarcoma 10 77535 -NCIT:C5150 Cerebellar Glioblastoma 9 77536 -NCIT:C5149 Supratentorial Glioblastoma 8 77537 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 9 77538 -NCIT:C5129 Diencephalic Glioblastoma 9 77539 -NCIT:C5151 Cerebral Glioblastoma 9 77540 -NCIT:C171013 Supratentorial Gliosarcoma 10 77541 -NCIT:C9375 Adult Brain Glioblastoma 8 77542 -NCIT:C9370 Adult Brain Stem Gliosarcoma 9 77543 -NCIT:C5123 Hemispheric Anaplastic Astrocytoma 7 77544 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 8 77545 -NCIT:C156035 Frontal Lobe Anaplastic Astrocytoma 8 77546 -NCIT:C156036 Temporal Lobe Anaplastic Astrocytoma 8 77547 -NCIT:C171036 Parietal Lobe Anaplastic Astrocytoma 8 77548 -NCIT:C5124 Anaplastic Diencephalic Astrocytoma 7 77549 -NCIT:C5416 Secondary Supratentorial Anaplastic Astrocytoma 7 77550 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 7 77551 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 8 77552 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 8 77553 -NCIT:C7446 Anaplastic Brain Stem Glioma 7 77554 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 8 77555 -NCIT:C94764 Diffuse Intrinsic Pontine Glioma 7 77556 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 8 77557 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 8 77558 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 8 77559 -NCIT:C188925 Adult Diffuse Intrinsic Pontine Glioma 8 77560 -NCIT:C180877 Metastatic Glioma 6 77561 -NCIT:C170979 Metastatic Glioblastoma 7 77562 -NCIT:C170978 Advanced Glioblastoma 8 77563 -NCIT:C170980 Locally Advanced Glioblastoma 8 77564 -NCIT:C178558 Metastatic Low Grade Glioma 7 77565 -NCIT:C178559 Metastatic Low Grade Astrocytoma 8 77566 -NCIT:C180876 Locally Advanced Glioma 7 77567 -NCIT:C170980 Locally Advanced Glioblastoma 8 77568 -NCIT:C182151 Diffuse Midline Glioma 6 77569 -NCIT:C182436 Diffuse Non-Pontine Midline Glioma 7 77570 -NCIT:C185368 Diffuse Midline Glioma, H3 K27-Altered 7 77571 -NCIT:C129309 Diffuse Midline Glioma, H3 K27M-Mutant 8 77572 -NCIT:C179222 Recurrent Diffuse Midline Glioma, H3 K27M-Mutant 9 77573 -NCIT:C185369 Diffuse Midline Glioma, EGFR-Mutant 8 77574 -NCIT:C185370 Diffuse Midline Glioma with EZHIP Overexpression 8 77575 -NCIT:C188922 Childhood Diffuse Midline Glioma, H3 K27-Altered 8 77576 -NCIT:C188923 Adult Diffuse Midline Glioma, H3 K27-Altered 8 77577 -NCIT:C94764 Diffuse Intrinsic Pontine Glioma 7 77578 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 8 77579 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 8 77580 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 8 77581 -NCIT:C188925 Adult Diffuse Intrinsic Pontine Glioma 8 77582 -NCIT:C5446 Meningeal Gliomatosis 6 77583 -NCIT:C5114 Malignant Intracranial Neoplasm 5 77584 -NCIT:C155791 Malignant Skull Base Neoplasm 6 77585 -NCIT:C155772 Sellar Neuroblastoma 7 77586 -NCIT:C155786 Metastatic Malignant Neoplasm in the Sellar Region 7 77587 -NCIT:C6805 Metastatic Malignant Neoplasm in the Pituitary Gland 8 77588 -NCIT:C155802 Sellar Germinoma 7 77589 -NCIT:C155803 Suprasellar Germinoma 8 77590 -NCIT:C155804 Sellar Yolk Sac Tumor 7 77591 -NCIT:C155805 Sellar Embryonal Carcinoma 7 77592 -NCIT:C155806 Sellar Choriocarcinoma 7 77593 -NCIT:C155810 Sellar Teratoma with Malignant Transformation 7 77594 -NCIT:C155811 Sellar Mixed Germ Cell Tumor 7 77595 -NCIT:C4769 Malignant Pituitary Gland Neoplasm 7 77596 -NCIT:C155304 Pituitary Gland Blastoma 8 77597 -NCIT:C155796 Pituitary Gland Non-Hodgkin Lymphoma 8 77598 -NCIT:C155797 Pituitary Gland Diffuse Large B-Cell Lymphoma 9 77599 -NCIT:C4536 Metastatic Pituitary Neuroendocrine Tumor 8 77600 -NCIT:C163956 Locally Advanced Pituitary Neuroendocrine Tumor 9 77601 -NCIT:C163959 Metastatic Unresectable Pituitary Neuroendocrine Tumor 9 77602 -NCIT:C5962 Metastatic Lactotroph Pituitary Neuroendocrine Tumor 9 77603 -NCIT:C5963 Metastatic Somatotroph Pituitary Neuroendocrine Tumor 9 77604 -NCIT:C5964 Metastatic Corticotroph Pituitary Neuroendocrine Tumor 9 77605 -NCIT:C5965 Metastatic Thyrotroph Pituitary Neuroendocrine Tumor 9 77606 -NCIT:C6805 Metastatic Malignant Neoplasm in the Pituitary Gland 8 77607 -NCIT:C5453 Skull Base Chordoma 7 77608 -NCIT:C155781 Sellar Chordoma 8 77609 -NCIT:C155782 Sellar Chondroid Chordoma 9 77610 -NCIT:C155783 Sellar Dedifferentiated Chordoma 9 77611 -NCIT:C5412 Clivus Chordoma 8 77612 -NCIT:C5426 Clivus Chondroid Chordoma 9 77613 -NCIT:C175221 Malignant Visual Pathway Neoplasm 6 77614 -NCIT:C170941 Malignant Optic Nerve Neoplasm 7 77615 -NCIT:C175220 Metastatic Malignant Neoplasm in the Visual Pathway 7 77616 -NCIT:C3568 Malignant Brain Neoplasm 6 77617 -NCIT:C153837 Recurrent Malignant Brain Neoplasm 7 77618 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 77619 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 77620 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 8 77621 -NCIT:C179221 Recurrent Gliomatosis Cerebri 8 77622 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 9 77623 -NCIT:C179226 Recurrent Malignant Choroid Plexus Neoplasm 8 77624 -NCIT:C191198 Recurrent Brain Glioblastoma 8 77625 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 9 77626 -NCIT:C5588 Recurrent Medulloblastoma 8 77627 -NCIT:C147109 Recurrent Medulloblastoma, SHH-Activated 9 77628 -NCIT:C180893 Recurrent Medulloblastoma, WNT-Activated 9 77629 -NCIT:C6774 Recurrent Childhood Medulloblastoma 9 77630 -NCIT:C153845 Refractory Malignant Brain Neoplasm 7 77631 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 8 77632 -NCIT:C142856 Refractory Medulloblastoma 8 77633 -NCIT:C147110 Refractory Medulloblastoma, SHH-Activated 9 77634 -NCIT:C180892 Refractory Medulloblastoma, WNT-Activated 9 77635 -NCIT:C162993 Malignant Brain Glioma 7 77636 -NCIT:C156120 Frontal Lobe Anaplastic Oligodendroglioma 8 77637 -NCIT:C185371 Diffuse Hemispheric Glioma, H3 G34-Mutant 8 77638 -NCIT:C188926 Childhood Diffuse Hemispheric Glioma, H3 G34-Mutant 9 77639 -NCIT:C188927 Adult Diffuse Hemispheric Glioma, H3 G34-Mutant 9 77640 -NCIT:C185467 Diffuse Pediatric-Type High Grade Glioma, H3-Wildtype and IDH-Wildtype 8 77641 -NCIT:C185468 Diffuse Pediatric-Type High Grade Glioma RTK2 9 77642 -NCIT:C185469 Diffuse Pediatric-Type High Grade Glioma RTK1 9 77643 -NCIT:C185470 Diffuse Pediatric-Type High Grade Glioma MYCN 9 77644 -NCIT:C185471 Infant-Type Hemispheric Glioma 8 77645 -NCIT:C185472 Infant-Type Hemispheric Glioma, NTRK-Altered 9 77646 -NCIT:C185473 Infant-Type Hemispheric Glioma, ROS1-Altered 9 77647 -NCIT:C185474 Infant-Type Hemispheric Glioma, ALK-Altered 9 77648 -NCIT:C185475 Infant-Type Hemispheric Glioma, MET-Altered 9 77649 -NCIT:C4642 Brain Glioblastoma 8 77650 -NCIT:C147901 Childhood Brain Glioblastoma 9 77651 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 77652 -NCIT:C191198 Recurrent Brain Glioblastoma 9 77653 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 10 77654 -NCIT:C5148 Infratentorial Glioblastoma 9 77655 -NCIT:C5097 Brain Stem Glioblastoma 10 77656 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 11 77657 -NCIT:C9370 Adult Brain Stem Gliosarcoma 11 77658 -NCIT:C5150 Cerebellar Glioblastoma 10 77659 -NCIT:C5149 Supratentorial Glioblastoma 9 77660 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 10 77661 -NCIT:C5129 Diencephalic Glioblastoma 10 77662 -NCIT:C5151 Cerebral Glioblastoma 10 77663 -NCIT:C171013 Supratentorial Gliosarcoma 11 77664 -NCIT:C9375 Adult Brain Glioblastoma 9 77665 -NCIT:C9370 Adult Brain Stem Gliosarcoma 10 77666 -NCIT:C5123 Hemispheric Anaplastic Astrocytoma 8 77667 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 9 77668 -NCIT:C156035 Frontal Lobe Anaplastic Astrocytoma 9 77669 -NCIT:C156036 Temporal Lobe Anaplastic Astrocytoma 9 77670 -NCIT:C171036 Parietal Lobe Anaplastic Astrocytoma 9 77671 -NCIT:C5124 Anaplastic Diencephalic Astrocytoma 8 77672 -NCIT:C5416 Secondary Supratentorial Anaplastic Astrocytoma 8 77673 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 8 77674 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 9 77675 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 9 77676 -NCIT:C7446 Anaplastic Brain Stem Glioma 8 77677 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 9 77678 -NCIT:C94764 Diffuse Intrinsic Pontine Glioma 8 77679 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 9 77680 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 9 77681 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 9 77682 -NCIT:C188925 Adult Diffuse Intrinsic Pontine Glioma 9 77683 -NCIT:C175550 Metastatic Primary Malignant Brain Neoplasm 7 77684 -NCIT:C175549 Advanced Primary Malignant Brain Neoplasm 8 77685 -NCIT:C187213 Advanced Childhood Malignant Brain Neoplasm 9 77686 -NCIT:C177725 Metastatic Medulloblastoma 8 77687 -NCIT:C5399 Medulloblastoma with Leptomeningeal Spread 9 77688 -NCIT:C180874 Locally Advanced Primary Malignant Brain Neoplasm 8 77689 -NCIT:C187212 Metastatic Childhood Malignant Brain Neoplasm 8 77690 -NCIT:C187213 Advanced Childhood Malignant Brain Neoplasm 9 77691 -NCIT:C187207 Childhood Malignant Brain Neoplasm 7 77692 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 77693 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 9 77694 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 8 77695 -NCIT:C114812 Childhood Pineoblastoma 8 77696 -NCIT:C115374 Recurrent Childhood Pineoblastoma 9 77697 -NCIT:C114969 Childhood Gliomatosis Cerebri 8 77698 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 9 77699 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 8 77700 -NCIT:C124292 Childhood Choroid Plexus Carcinoma 8 77701 -NCIT:C147901 Childhood Brain Glioblastoma 8 77702 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 9 77703 -NCIT:C185471 Infant-Type Hemispheric Glioma 8 77704 -NCIT:C185472 Infant-Type Hemispheric Glioma, NTRK-Altered 9 77705 -NCIT:C185473 Infant-Type Hemispheric Glioma, ROS1-Altered 9 77706 -NCIT:C185474 Infant-Type Hemispheric Glioma, ALK-Altered 9 77707 -NCIT:C185475 Infant-Type Hemispheric Glioma, MET-Altered 9 77708 -NCIT:C187211 Metastatic Childhood Malignant Neoplasm in the Brain 8 77709 -NCIT:C187212 Metastatic Childhood Malignant Brain Neoplasm 8 77710 -NCIT:C187213 Advanced Childhood Malignant Brain Neoplasm 9 77711 -NCIT:C188922 Childhood Diffuse Midline Glioma, H3 K27-Altered 8 77712 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 8 77713 -NCIT:C188926 Childhood Diffuse Hemispheric Glioma, H3 G34-Mutant 8 77714 -NCIT:C188935 Childhood Supratentorial Ependymoma ZFTA Fusion-Positive 8 77715 -NCIT:C3997 Childhood Medulloblastoma 8 77716 -NCIT:C6774 Recurrent Childhood Medulloblastoma 9 77717 -NCIT:C6207 Childhood Brain Germinoma 8 77718 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 8 77719 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 9 77720 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 9 77721 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 77722 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 9 77723 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 77724 -NCIT:C3813 Metastatic Malignant Neoplasm in the Brain 7 77725 -NCIT:C179206 Melanoma Metastatic in the Brain 8 77726 -NCIT:C187211 Metastatic Childhood Malignant Neoplasm in the Brain 8 77727 -NCIT:C36301 Breast Carcinoma Metastatic in the Brain 8 77728 -NCIT:C36304 Lung Carcinoma Metastatic in the Brain 8 77729 -NCIT:C5057 Secondary Cerebral Hodgkin Lymphoma 8 77730 -NCIT:C5816 Metastatic Adult Malignant Neoplasm in the Brain 8 77731 -NCIT:C8550 Metastatic Malignant Neoplasm in the Brain Stem 8 77732 -NCIT:C4318 Gliomatosis Cerebri 7 77733 -NCIT:C114969 Childhood Gliomatosis Cerebri 8 77734 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 9 77735 -NCIT:C179221 Recurrent Gliomatosis Cerebri 8 77736 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 9 77737 -NCIT:C41842 Gliomatosis Cerebri Type I 8 77738 -NCIT:C41843 Gliomatosis Cerebri Type II 8 77739 -NCIT:C4533 Malignant Choroid Plexus Neoplasm 7 77740 -NCIT:C179226 Recurrent Malignant Choroid Plexus Neoplasm 8 77741 -NCIT:C4715 Choroid Plexus Carcinoma 8 77742 -NCIT:C124292 Childhood Choroid Plexus Carcinoma 9 77743 -NCIT:C4954 Localized Malignant Brain Neoplasm 7 77744 -NCIT:C4964 Malignant Supratentorial Neoplasm 7 77745 -NCIT:C124292 Childhood Choroid Plexus Carcinoma 8 77746 -NCIT:C186350 Supratentorial Ependymoma ZFTA Fusion-Positive 8 77747 -NCIT:C129351 Supratentorial Ependymoma, ZFTA-RELA Fusion-Positive 9 77748 -NCIT:C188935 Childhood Supratentorial Ependymoma ZFTA Fusion-Positive 9 77749 -NCIT:C188938 Adult Supratentorial Ependymoma ZFTA Fusion-Positive 9 77750 -NCIT:C3573 Malignant Pineal Region Neoplasm 8 77751 -NCIT:C6767 Malignant Pineal Region Germ Cell Tumor 9 77752 -NCIT:C6752 Pineal Region Yolk Sac Tumor 10 77753 -NCIT:C6759 Pineal Region Choriocarcinoma 10 77754 -NCIT:C8712 Pineal Region Germinoma 10 77755 -NCIT:C9344 Pineoblastoma 9 77756 -NCIT:C114812 Childhood Pineoblastoma 10 77757 -NCIT:C115374 Recurrent Childhood Pineoblastoma 11 77758 -NCIT:C8292 Adult Pineoblastoma 10 77759 -NCIT:C4577 Malignant Cerebral Neoplasm 8 77760 -NCIT:C185371 Diffuse Hemispheric Glioma, H3 G34-Mutant 9 77761 -NCIT:C188926 Childhood Diffuse Hemispheric Glioma, H3 G34-Mutant 10 77762 -NCIT:C188927 Adult Diffuse Hemispheric Glioma, H3 G34-Mutant 10 77763 -NCIT:C185471 Infant-Type Hemispheric Glioma 9 77764 -NCIT:C185472 Infant-Type Hemispheric Glioma, NTRK-Altered 10 77765 -NCIT:C185473 Infant-Type Hemispheric Glioma, ROS1-Altered 10 77766 -NCIT:C185474 Infant-Type Hemispheric Glioma, ALK-Altered 10 77767 -NCIT:C185475 Infant-Type Hemispheric Glioma, MET-Altered 10 77768 -NCIT:C4826 Central Nervous System Neuroblastoma 9 77769 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 10 77770 -NCIT:C186547 Central Nervous System Neuroblastoma, FOXR2-Activated 10 77771 -NCIT:C4970 Cerebral Embryonal Tumor, Not Otherwise Specified 9 77772 -NCIT:C5123 Hemispheric Anaplastic Astrocytoma 9 77773 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 10 77774 -NCIT:C156035 Frontal Lobe Anaplastic Astrocytoma 10 77775 -NCIT:C156036 Temporal Lobe Anaplastic Astrocytoma 10 77776 -NCIT:C171036 Parietal Lobe Anaplastic Astrocytoma 10 77777 -NCIT:C5151 Cerebral Glioblastoma 9 77778 -NCIT:C171013 Supratentorial Gliosarcoma 10 77779 -NCIT:C7611 Cerebral Lymphoma 9 77780 -NCIT:C5054 Cerebral Lymphoma in Immunocompetent Host 10 77781 -NCIT:C5055 Cerebral Hodgkin Lymphoma 10 77782 -NCIT:C7609 Cerebral Non-Hodgkin Lymphoma 10 77783 -NCIT:C92629 Central Nervous System Ganglioneuroblastoma 9 77784 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 10 77785 -NCIT:C5126 Malignant Diencephalic Neoplasm 8 77786 -NCIT:C175539 Malignant Hypothalamic Neoplasm 9 77787 -NCIT:C4576 Malignant Thalamic Neoplasm 9 77788 -NCIT:C5124 Anaplastic Diencephalic Astrocytoma 9 77789 -NCIT:C5129 Diencephalic Glioblastoma 9 77790 -NCIT:C5149 Supratentorial Glioblastoma 8 77791 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 9 77792 -NCIT:C5129 Diencephalic Glioblastoma 9 77793 -NCIT:C5151 Cerebral Glioblastoma 9 77794 -NCIT:C171013 Supratentorial Gliosarcoma 10 77795 -NCIT:C5416 Secondary Supratentorial Anaplastic Astrocytoma 8 77796 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 77797 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 9 77798 -NCIT:C6968 Supratentorial Embryonal Tumor, Not Otherwise Specified 8 77799 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 9 77800 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 10 77801 -NCIT:C4970 Cerebral Embryonal Tumor, Not Otherwise Specified 9 77802 -NCIT:C68703 Adult Supratentorial Embryonal Tumor, Not Otherwise Specified 9 77803 -NCIT:C4966 Malignant Infratentorial Neoplasm 7 77804 -NCIT:C3569 Malignant Cerebellar Neoplasm 8 77805 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 9 77806 -NCIT:C3222 Medulloblastoma 9 77807 -NCIT:C129436 Large Cell/Anaplastic Medulloblastoma 10 77808 -NCIT:C129439 Medulloblastoma Molecular Subtypes 10 77809 -NCIT:C129440 Medulloblastoma, WNT-Activated 11 77810 -NCIT:C180892 Refractory Medulloblastoma, WNT-Activated 12 77811 -NCIT:C180893 Recurrent Medulloblastoma, WNT-Activated 12 77812 -NCIT:C129441 Medulloblastoma, SHH-Activated 11 77813 -NCIT:C129442 Medulloblastoma, SHH-Activated, TP53-Mutant 12 77814 -NCIT:C129443 Medulloblastoma, SHH-Activated, TP53-Wildtype 12 77815 -NCIT:C186591 ELP1-Associated Medulloblastoma 13 77816 -NCIT:C147109 Recurrent Medulloblastoma, SHH-Activated 12 77817 -NCIT:C147110 Refractory Medulloblastoma, SHH-Activated 12 77818 -NCIT:C189841 Medulloblastoma, SHH-1 12 77819 -NCIT:C189844 Medulloblastoma, SHH-2 12 77820 -NCIT:C189845 Medulloblastoma, SHH-3 12 77821 -NCIT:C189846 Medulloblastoma, SHH-4 12 77822 -NCIT:C129444 Medulloblastoma, Non-WNT/Non-SHH 11 77823 -NCIT:C129445 Medulloblastoma, Non-WNT/Non-SHH, Group 3 12 77824 -NCIT:C129446 Medulloblastoma, Non-WNT/Non-SHH, Group 4 12 77825 -NCIT:C129447 Medulloblastoma, Not Otherwise Specified 10 77826 -NCIT:C142856 Refractory Medulloblastoma 10 77827 -NCIT:C147110 Refractory Medulloblastoma, SHH-Activated 11 77828 -NCIT:C180892 Refractory Medulloblastoma, WNT-Activated 11 77829 -NCIT:C156039 Fourth Ventricle Medulloblastoma 10 77830 -NCIT:C177725 Metastatic Medulloblastoma 10 77831 -NCIT:C5399 Medulloblastoma with Leptomeningeal Spread 11 77832 -NCIT:C27237 Familial Adenomatous Polyposis Associated Medulloblastoma 10 77833 -NCIT:C3706 Medullomyoblastoma 10 77834 -NCIT:C3997 Childhood Medulloblastoma 10 77835 -NCIT:C6774 Recurrent Childhood Medulloblastoma 11 77836 -NCIT:C4011 Adult Medulloblastoma 10 77837 -NCIT:C4956 Desmoplastic/Nodular Medulloblastoma 10 77838 -NCIT:C5401 Cerebellar Vermis Medulloblastoma 10 77839 -NCIT:C5402 Region 17p13 Allelic Loss Associated Medulloblastoma 10 77840 -NCIT:C54039 Classic Medulloblastoma 10 77841 -NCIT:C5405 Nevoid Basal Cell Carcinoma Syndrome Associated Medulloblastoma 10 77842 -NCIT:C5407 Medulloblastoma with Extensive Nodularity 10 77843 -NCIT:C5588 Recurrent Medulloblastoma 10 77844 -NCIT:C147109 Recurrent Medulloblastoma, SHH-Activated 11 77845 -NCIT:C180893 Recurrent Medulloblastoma, WNT-Activated 11 77846 -NCIT:C6774 Recurrent Childhood Medulloblastoma 11 77847 -NCIT:C6904 Large Cell Medulloblastoma 10 77848 -NCIT:C92625 Anaplastic Medulloblastoma 10 77849 -NCIT:C9497 Melanocytic Medulloblastoma 10 77850 -NCIT:C5270 Cerebellar Papillary Meningioma 9 77851 -NCIT:C3570 Malignant Brain Stem Neoplasm 8 77852 -NCIT:C5097 Brain Stem Glioblastoma 9 77853 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 77854 -NCIT:C9370 Adult Brain Stem Gliosarcoma 10 77855 -NCIT:C7446 Anaplastic Brain Stem Glioma 9 77856 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 10 77857 -NCIT:C8550 Metastatic Malignant Neoplasm in the Brain Stem 9 77858 -NCIT:C94764 Diffuse Intrinsic Pontine Glioma 9 77859 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 10 77860 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 10 77861 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 10 77862 -NCIT:C188925 Adult Diffuse Intrinsic Pontine Glioma 10 77863 -NCIT:C5148 Infratentorial Glioblastoma 8 77864 -NCIT:C5097 Brain Stem Glioblastoma 9 77865 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 77866 -NCIT:C9370 Adult Brain Stem Gliosarcoma 10 77867 -NCIT:C5150 Cerebellar Glioblastoma 9 77868 -NCIT:C5436 Cerebellopontine Angle Embryonal Tumor, Not Otherwise Specified 8 77869 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 77870 -NCIT:C5115 Adult Malignant Brain Neoplasm 7 77871 -NCIT:C188923 Adult Diffuse Midline Glioma, H3 K27-Altered 8 77872 -NCIT:C188925 Adult Diffuse Intrinsic Pontine Glioma 8 77873 -NCIT:C188927 Adult Diffuse Hemispheric Glioma, H3 G34-Mutant 8 77874 -NCIT:C188938 Adult Supratentorial Ependymoma ZFTA Fusion-Positive 8 77875 -NCIT:C4011 Adult Medulloblastoma 8 77876 -NCIT:C5816 Metastatic Adult Malignant Neoplasm in the Brain 8 77877 -NCIT:C68703 Adult Supratentorial Embryonal Tumor, Not Otherwise Specified 8 77878 -NCIT:C8292 Adult Pineoblastoma 8 77879 -NCIT:C9183 Adult Central Nervous System Solitary Fibrous Tumor, Grade 3 8 77880 -NCIT:C9375 Adult Brain Glioblastoma 8 77881 -NCIT:C9370 Adult Brain Stem Gliosarcoma 9 77882 -NCIT:C5154 Brain Sarcoma 7 77883 -NCIT:C186610 Primary Intracranial Sarcoma, DICER1-Mutant 8 77884 -NCIT:C5462 Brain Extraskeletal Myxoid Chondrosarcoma 8 77885 -NCIT:C6973 Brain Liposarcoma 8 77886 -NCIT:C5817 Intracranial Embryonal Tumor, Not Otherwise Specified 7 77887 -NCIT:C5436 Cerebellopontine Angle Embryonal Tumor, Not Otherwise Specified 8 77888 -NCIT:C6968 Supratentorial Embryonal Tumor, Not Otherwise Specified 8 77889 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 9 77890 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 10 77891 -NCIT:C4970 Cerebral Embryonal Tumor, Not Otherwise Specified 9 77892 -NCIT:C68703 Adult Supratentorial Embryonal Tumor, Not Otherwise Specified 9 77893 -NCIT:C6284 Brain Germinoma 7 77894 -NCIT:C156040 Third Ventricle Germinoma 8 77895 -NCIT:C6207 Childhood Brain Germinoma 8 77896 -NCIT:C8712 Pineal Region Germinoma 8 77897 -NCIT:C7045 Malignant Intracranial Neoplasm by Morphology 6 77898 -NCIT:C27307 Anaplastic (Malignant) Intracranial Meningioma 7 77899 -NCIT:C5403 Malignant Intracranial Germ Cell Tumor 7 77900 -NCIT:C155804 Sellar Yolk Sac Tumor 8 77901 -NCIT:C155805 Sellar Embryonal Carcinoma 8 77902 -NCIT:C155806 Sellar Choriocarcinoma 8 77903 -NCIT:C155810 Sellar Teratoma with Malignant Transformation 8 77904 -NCIT:C155811 Sellar Mixed Germ Cell Tumor 8 77905 -NCIT:C5430 Intracranial Germinoma 8 77906 -NCIT:C155802 Sellar Germinoma 9 77907 -NCIT:C155803 Suprasellar Germinoma 10 77908 -NCIT:C6284 Brain Germinoma 9 77909 -NCIT:C156040 Third Ventricle Germinoma 10 77910 -NCIT:C6207 Childhood Brain Germinoma 10 77911 -NCIT:C8712 Pineal Region Germinoma 10 77912 -NCIT:C6767 Malignant Pineal Region Germ Cell Tumor 8 77913 -NCIT:C6752 Pineal Region Yolk Sac Tumor 9 77914 -NCIT:C6759 Pineal Region Choriocarcinoma 9 77915 -NCIT:C8712 Pineal Region Germinoma 9 77916 -NCIT:C5442 Intracranial Melanoma 7 77917 -NCIT:C5462 Brain Extraskeletal Myxoid Chondrosarcoma 7 77918 -NCIT:C6973 Brain Liposarcoma 7 77919 -NCIT:C7008 Intracranial Myeloid Sarcoma 7 77920 -NCIT:C9183 Adult Central Nervous System Solitary Fibrous Tumor, Grade 3 7 77921 -NCIT:C54099 Malignant Central Nervous System Germ Cell Tumor 5 77922 -NCIT:C5403 Malignant Intracranial Germ Cell Tumor 6 77923 -NCIT:C155804 Sellar Yolk Sac Tumor 7 77924 -NCIT:C155805 Sellar Embryonal Carcinoma 7 77925 -NCIT:C155806 Sellar Choriocarcinoma 7 77926 -NCIT:C155810 Sellar Teratoma with Malignant Transformation 7 77927 -NCIT:C155811 Sellar Mixed Germ Cell Tumor 7 77928 -NCIT:C5430 Intracranial Germinoma 7 77929 -NCIT:C155802 Sellar Germinoma 8 77930 -NCIT:C155803 Suprasellar Germinoma 9 77931 -NCIT:C6284 Brain Germinoma 8 77932 -NCIT:C156040 Third Ventricle Germinoma 9 77933 -NCIT:C6207 Childhood Brain Germinoma 9 77934 -NCIT:C8712 Pineal Region Germinoma 9 77935 -NCIT:C6767 Malignant Pineal Region Germ Cell Tumor 7 77936 -NCIT:C6752 Pineal Region Yolk Sac Tumor 8 77937 -NCIT:C6759 Pineal Region Choriocarcinoma 8 77938 -NCIT:C8712 Pineal Region Germinoma 8 77939 -NCIT:C7009 Central Nervous System Germinoma 6 77940 -NCIT:C27406 Childhood Central Nervous System Germinoma 7 77941 -NCIT:C6207 Childhood Brain Germinoma 8 77942 -NCIT:C5430 Intracranial Germinoma 7 77943 -NCIT:C155802 Sellar Germinoma 8 77944 -NCIT:C155803 Suprasellar Germinoma 9 77945 -NCIT:C6284 Brain Germinoma 8 77946 -NCIT:C156040 Third Ventricle Germinoma 9 77947 -NCIT:C6207 Childhood Brain Germinoma 9 77948 -NCIT:C8712 Pineal Region Germinoma 9 77949 -NCIT:C5792 Adult Central Nervous System Germinoma 7 77950 -NCIT:C7010 Central Nervous System Embryonal Carcinoma 6 77951 -NCIT:C155805 Sellar Embryonal Carcinoma 7 77952 -NCIT:C5790 Adult Central Nervous System Embryonal Carcinoma 7 77953 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 7 77954 -NCIT:C7011 Central Nervous System Yolk Sac Tumor 6 77955 -NCIT:C155804 Sellar Yolk Sac Tumor 7 77956 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 7 77957 -NCIT:C6752 Pineal Region Yolk Sac Tumor 7 77958 -NCIT:C7012 Central Nervous System Choriocarcinoma 6 77959 -NCIT:C155806 Sellar Choriocarcinoma 7 77960 -NCIT:C5793 Adult Central Nervous System Choriocarcinoma 7 77961 -NCIT:C6206 Childhood Central Nervous System Choriocarcinoma 7 77962 -NCIT:C6759 Pineal Region Choriocarcinoma 7 77963 -NCIT:C7015 Central Nervous System Teratoma with Malignant Transformation 6 77964 -NCIT:C155810 Sellar Teratoma with Malignant Transformation 7 77965 -NCIT:C7016 Central Nervous System Mixed Germ Cell Tumor 6 77966 -NCIT:C155811 Sellar Mixed Germ Cell Tumor 7 77967 -NCIT:C27402 Adult Central Nervous System Mixed Germ Cell Tumor 7 77968 -NCIT:C27403 Childhood Central Nervous System Mixed Germ Cell Tumor 7 77969 -NCIT:C5440 Central Nervous System Leukemia 5 77970 -NCIT:C94754 Meningeal Leukemia 6 77971 -NCIT:C9111 Meningeal Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 77972 -NCIT:C5448 Childhood Malignant Central Nervous System Neoplasm 5 77973 -NCIT:C114833 Childhood Central Nervous System Embryonal Tumor 6 77974 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 7 77975 -NCIT:C114812 Childhood Pineoblastoma 7 77976 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 77977 -NCIT:C114836 Recurrent Childhood Central Nervous System Embryonal Neoplasm 7 77978 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 77979 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 77980 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 77981 -NCIT:C115203 Childhood Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 7 77982 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 77983 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 9 77984 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 77985 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 7 77986 -NCIT:C3997 Childhood Medulloblastoma 7 77987 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 77988 -NCIT:C5961 Childhood Central Nervous System Embryonal Tumor, Not Otherwise Specified 7 77989 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 77990 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 9 77991 -NCIT:C68634 Childhood Atypical Teratoid/Rhabdoid Tumor 7 77992 -NCIT:C114973 Childhood Anaplastic Oligoastrocytoma 6 77993 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 7 77994 -NCIT:C124293 Childhood Anaplastic Ependymoma 6 77995 -NCIT:C187207 Childhood Malignant Brain Neoplasm 6 77996 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 7 77997 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 77998 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 7 77999 -NCIT:C114812 Childhood Pineoblastoma 7 78000 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 78001 -NCIT:C114969 Childhood Gliomatosis Cerebri 7 78002 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 8 78003 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 7 78004 -NCIT:C124292 Childhood Choroid Plexus Carcinoma 7 78005 -NCIT:C147901 Childhood Brain Glioblastoma 7 78006 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 8 78007 -NCIT:C185471 Infant-Type Hemispheric Glioma 7 78008 -NCIT:C185472 Infant-Type Hemispheric Glioma, NTRK-Altered 8 78009 -NCIT:C185473 Infant-Type Hemispheric Glioma, ROS1-Altered 8 78010 -NCIT:C185474 Infant-Type Hemispheric Glioma, ALK-Altered 8 78011 -NCIT:C185475 Infant-Type Hemispheric Glioma, MET-Altered 8 78012 -NCIT:C187211 Metastatic Childhood Malignant Neoplasm in the Brain 7 78013 -NCIT:C187212 Metastatic Childhood Malignant Brain Neoplasm 7 78014 -NCIT:C187213 Advanced Childhood Malignant Brain Neoplasm 8 78015 -NCIT:C188922 Childhood Diffuse Midline Glioma, H3 K27-Altered 7 78016 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 7 78017 -NCIT:C188926 Childhood Diffuse Hemispheric Glioma, H3 G34-Mutant 7 78018 -NCIT:C188935 Childhood Supratentorial Ependymoma ZFTA Fusion-Positive 7 78019 -NCIT:C3997 Childhood Medulloblastoma 7 78020 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 78021 -NCIT:C6207 Childhood Brain Germinoma 7 78022 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 7 78023 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 8 78024 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 8 78025 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 7 78026 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 78027 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 7 78028 -NCIT:C27403 Childhood Central Nervous System Mixed Germ Cell Tumor 6 78029 -NCIT:C27406 Childhood Central Nervous System Germinoma 6 78030 -NCIT:C6207 Childhood Brain Germinoma 7 78031 -NCIT:C5136 Childhood Glioblastoma 6 78032 -NCIT:C114966 Childhood Giant Cell Glioblastoma 7 78033 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 8 78034 -NCIT:C114968 Childhood Gliosarcoma 7 78035 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 8 78036 -NCIT:C115365 Recurrent Childhood Gliosarcoma 8 78037 -NCIT:C115364 Recurrent Childhood Glioblastoma 7 78038 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 8 78039 -NCIT:C115365 Recurrent Childhood Gliosarcoma 8 78040 -NCIT:C147901 Childhood Brain Glioblastoma 7 78041 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 8 78042 -NCIT:C5318 Childhood Meningeal Melanoma 6 78043 -NCIT:C5447 Childhood Anaplastic Oligodendroglioma 6 78044 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 7 78045 -NCIT:C6206 Childhood Central Nervous System Choriocarcinoma 6 78046 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 6 78047 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 6 78048 -NCIT:C6215 Childhood Anaplastic Astrocytoma 6 78049 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 7 78050 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 7 78051 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 8 78052 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 8 78053 -NCIT:C71303 Childhood Grade 3 Meningioma 6 78054 -NCIT:C9047 Childhood Intraocular Retinoblastoma 6 78055 -NCIT:C9048 Childhood Extraocular Retinoblastoma 6 78056 -NCIT:C5505 Central Nervous System Melanoma 5 78057 -NCIT:C5158 Spinal Cord Melanoma 6 78058 -NCIT:C5317 Meningeal Melanoma 6 78059 -NCIT:C5318 Childhood Meningeal Melanoma 7 78060 -NCIT:C5319 Adult Meningeal Melanoma 7 78061 -NCIT:C6891 Meningeal Melanomatosis 7 78062 -NCIT:C5442 Intracranial Melanoma 6 78063 -NCIT:C62332 Central Nervous System Carcinoma 5 78064 -NCIT:C4715 Choroid Plexus Carcinoma 6 78065 -NCIT:C124292 Childhood Choroid Plexus Carcinoma 7 78066 -NCIT:C6758 Malignant Central Nervous System Mesenchymal, Non-Meningothelial Neoplasm 5 78067 -NCIT:C129527 Central Nervous System Solitary Fibrous Tumor, Grade 3 6 78068 -NCIT:C186603 Central Nervous System Dedifferentiated Solitary Fibrous Tumor 7 78069 -NCIT:C9183 Adult Central Nervous System Solitary Fibrous Tumor, Grade 3 7 78070 -NCIT:C92652 Meningeal Central Nervous System Solitary Fibrous Tumor, Grade 3 7 78071 -NCIT:C129536 Central Nervous System Epithelioid Hemangioendothelioma 6 78072 -NCIT:C5153 Central Nervous System Sarcoma 6 78073 -NCIT:C129534 Central Nervous System Mesenchymal Chondrosarcoma 7 78074 -NCIT:C129566 Central Nervous System Undifferentiated Pleomorphic Sarcoma 7 78075 -NCIT:C186607 Central Nervous System CIC-Rearranged Sarcoma 7 78076 -NCIT:C186611 Central Nervous System Ewing Sarcoma 7 78077 -NCIT:C4073 Meningeal Sarcoma 7 78078 -NCIT:C4334 Meningeal Sarcomatosis 8 78079 -NCIT:C8312 Leptomeningeal Sarcoma 8 78080 -NCIT:C5152 Spinal Cord Sarcoma 7 78081 -NCIT:C5154 Brain Sarcoma 7 78082 -NCIT:C186610 Primary Intracranial Sarcoma, DICER1-Mutant 8 78083 -NCIT:C5462 Brain Extraskeletal Myxoid Chondrosarcoma 8 78084 -NCIT:C6973 Brain Liposarcoma 8 78085 -NCIT:C5450 Central Nervous System Angiosarcoma 7 78086 -NCIT:C5464 Central Nervous System Rhabdomyosarcoma 7 78087 -NCIT:C5465 Central Nervous System Fibrosarcoma 7 78088 -NCIT:C6999 Central Nervous System Leiomyosarcoma 7 78089 -NCIT:C7002 Central Nervous System Extraskeletal Osteosarcoma 7 78090 -NCIT:C7006 Central Nervous System Kaposi Sarcoma 7 78091 -NCIT:C6990 Central Nervous System Embryonal Tumor 5 78092 -NCIT:C114833 Childhood Central Nervous System Embryonal Tumor 6 78093 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 7 78094 -NCIT:C114812 Childhood Pineoblastoma 7 78095 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 78096 -NCIT:C114836 Recurrent Childhood Central Nervous System Embryonal Neoplasm 7 78097 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 78098 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 78099 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 78100 -NCIT:C115203 Childhood Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 7 78101 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 78102 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 9 78103 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 78104 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 7 78105 -NCIT:C3997 Childhood Medulloblastoma 7 78106 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 78107 -NCIT:C5961 Childhood Central Nervous System Embryonal Tumor, Not Otherwise Specified 7 78108 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 78109 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 9 78110 -NCIT:C68634 Childhood Atypical Teratoid/Rhabdoid Tumor 7 78111 -NCIT:C121963 Cribriform Neuroepithelial Tumor 6 78112 -NCIT:C129501 Central Nervous System Embryonal Tumor with Rhabdoid Features 6 78113 -NCIT:C129537 Central Nervous System Ewing Sarcoma/Peripheral Primitive Neuroectodermal Tumor 6 78114 -NCIT:C186611 Central Nervous System Ewing Sarcoma 7 78115 -NCIT:C186534 Embryonal Tumor with Multilayered Rosettes 6 78116 -NCIT:C129499 Embryonal Tumor with Multilayered Rosettes without C19MC Alteration 7 78117 -NCIT:C186535 Embryonal Tumor with Multilayered Rosettes, DICER1-Mutated 7 78118 -NCIT:C4915 Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 7 78119 -NCIT:C115203 Childhood Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 78120 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 9 78121 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 10 78122 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 9 78123 -NCIT:C8290 Adult Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 78124 -NCIT:C186542 Central Nervous System Embryonal Tumor, Not Elsewhere Classified 6 78125 -NCIT:C186556 Central Nervous System Tumor with BCOR Internal Tandem Duplication 6 78126 -NCIT:C3222 Medulloblastoma 6 78127 -NCIT:C129436 Large Cell/Anaplastic Medulloblastoma 7 78128 -NCIT:C129439 Medulloblastoma Molecular Subtypes 7 78129 -NCIT:C129440 Medulloblastoma, WNT-Activated 8 78130 -NCIT:C180892 Refractory Medulloblastoma, WNT-Activated 9 78131 -NCIT:C180893 Recurrent Medulloblastoma, WNT-Activated 9 78132 -NCIT:C129441 Medulloblastoma, SHH-Activated 8 78133 -NCIT:C129442 Medulloblastoma, SHH-Activated, TP53-Mutant 9 78134 -NCIT:C129443 Medulloblastoma, SHH-Activated, TP53-Wildtype 9 78135 -NCIT:C186591 ELP1-Associated Medulloblastoma 10 78136 -NCIT:C147109 Recurrent Medulloblastoma, SHH-Activated 9 78137 -NCIT:C147110 Refractory Medulloblastoma, SHH-Activated 9 78138 -NCIT:C189841 Medulloblastoma, SHH-1 9 78139 -NCIT:C189844 Medulloblastoma, SHH-2 9 78140 -NCIT:C189845 Medulloblastoma, SHH-3 9 78141 -NCIT:C189846 Medulloblastoma, SHH-4 9 78142 -NCIT:C129444 Medulloblastoma, Non-WNT/Non-SHH 8 78143 -NCIT:C129445 Medulloblastoma, Non-WNT/Non-SHH, Group 3 9 78144 -NCIT:C129446 Medulloblastoma, Non-WNT/Non-SHH, Group 4 9 78145 -NCIT:C129447 Medulloblastoma, Not Otherwise Specified 7 78146 -NCIT:C142856 Refractory Medulloblastoma 7 78147 -NCIT:C147110 Refractory Medulloblastoma, SHH-Activated 8 78148 -NCIT:C180892 Refractory Medulloblastoma, WNT-Activated 8 78149 -NCIT:C156039 Fourth Ventricle Medulloblastoma 7 78150 -NCIT:C177725 Metastatic Medulloblastoma 7 78151 -NCIT:C5399 Medulloblastoma with Leptomeningeal Spread 8 78152 -NCIT:C27237 Familial Adenomatous Polyposis Associated Medulloblastoma 7 78153 -NCIT:C3706 Medullomyoblastoma 7 78154 -NCIT:C3997 Childhood Medulloblastoma 7 78155 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 78156 -NCIT:C4011 Adult Medulloblastoma 7 78157 -NCIT:C4956 Desmoplastic/Nodular Medulloblastoma 7 78158 -NCIT:C5401 Cerebellar Vermis Medulloblastoma 7 78159 -NCIT:C5402 Region 17p13 Allelic Loss Associated Medulloblastoma 7 78160 -NCIT:C54039 Classic Medulloblastoma 7 78161 -NCIT:C5405 Nevoid Basal Cell Carcinoma Syndrome Associated Medulloblastoma 7 78162 -NCIT:C5407 Medulloblastoma with Extensive Nodularity 7 78163 -NCIT:C5588 Recurrent Medulloblastoma 7 78164 -NCIT:C147109 Recurrent Medulloblastoma, SHH-Activated 8 78165 -NCIT:C180893 Recurrent Medulloblastoma, WNT-Activated 8 78166 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 78167 -NCIT:C6904 Large Cell Medulloblastoma 7 78168 -NCIT:C92625 Anaplastic Medulloblastoma 7 78169 -NCIT:C9497 Melanocytic Medulloblastoma 7 78170 -NCIT:C4327 Central Nervous System Medulloepithelioma 6 78171 -NCIT:C4826 Central Nervous System Neuroblastoma 6 78172 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 7 78173 -NCIT:C186547 Central Nervous System Neuroblastoma, FOXR2-Activated 7 78174 -NCIT:C5398 Central Nervous System Embryonal Tumor, Not Otherwise Specified 6 78175 -NCIT:C5400 Central Nervous System Embryonal Tumor, Not Otherwise Specified with Leptomeningeal Spread 7 78176 -NCIT:C5406 Spinal Cord Embryonal Tumor, Not Otherwise Specified 7 78177 -NCIT:C5411 Adult Central Nervous System Embryonal Tumor, Not Otherwise Specified 7 78178 -NCIT:C68703 Adult Supratentorial Embryonal Tumor, Not Otherwise Specified 8 78179 -NCIT:C5817 Intracranial Embryonal Tumor, Not Otherwise Specified 7 78180 -NCIT:C5436 Cerebellopontine Angle Embryonal Tumor, Not Otherwise Specified 8 78181 -NCIT:C6968 Supratentorial Embryonal Tumor, Not Otherwise Specified 8 78182 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 9 78183 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 10 78184 -NCIT:C4970 Cerebral Embryonal Tumor, Not Otherwise Specified 9 78185 -NCIT:C68703 Adult Supratentorial Embryonal Tumor, Not Otherwise Specified 9 78186 -NCIT:C5961 Childhood Central Nervous System Embryonal Tumor, Not Otherwise Specified 7 78187 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 78188 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 9 78189 -NCIT:C6906 Atypical Teratoid/Rhabdoid Tumor 6 78190 -NCIT:C133499 Recurrent Atypical Teratoid/Rhabdoid Tumor 7 78191 -NCIT:C162723 Refractory Atypical Teratoid/Rhabdoid Tumor 7 78192 -NCIT:C68634 Childhood Atypical Teratoid/Rhabdoid Tumor 7 78193 -NCIT:C92629 Central Nervous System Ganglioneuroblastoma 6 78194 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 7 78195 -NCIT:C7541 Retinoblastoma 5 78196 -NCIT:C140750 Retinoblastoma by AJCC v8 Stage 6 78197 -NCIT:C140751 Retinoblastoma by AJCC v8 Clinical Stage 7 78198 -NCIT:C140752 Clinical Stage I Retinoblastoma AJCC v8 8 78199 -NCIT:C140753 Clinical Stage II Retinoblastoma AJCC v8 8 78200 -NCIT:C140754 Clinical Stage III Retinoblastoma AJCC v8 8 78201 -NCIT:C140755 Clinical Stage IV Retinoblastoma AJCC v8 8 78202 -NCIT:C140756 Retinoblastoma by AJCC v8 Pathologic Stage 7 78203 -NCIT:C140757 Pathologic Stage I Retinoblastoma AJCC v8 8 78204 -NCIT:C140758 Pathologic Stage II Retinoblastoma AJCC v8 8 78205 -NCIT:C140759 Pathologic Stage III Retinoblastoma AJCC v8 8 78206 -NCIT:C140760 Pathologic Stage IV Retinoblastoma AJCC v8 8 78207 -NCIT:C42596 Sporadic Retinoblastoma 6 78208 -NCIT:C66813 Differentiated Retinoblastoma 6 78209 -NCIT:C66814 Undifferentiated Retinoblastoma 6 78210 -NCIT:C66815 Diffuse Retinoblastoma 6 78211 -NCIT:C7019 Trilateral Retinoblastoma 6 78212 -NCIT:C7846 Intraocular Retinoblastoma 6 78213 -NCIT:C9047 Childhood Intraocular Retinoblastoma 7 78214 -NCIT:C7848 Extraocular Retinoblastoma 6 78215 -NCIT:C9048 Childhood Extraocular Retinoblastoma 7 78216 -NCIT:C7849 Recurrent Retinoblastoma 6 78217 -NCIT:C8495 Hereditary Retinoblastoma 6 78218 -NCIT:C8713 Bilateral Retinoblastoma 6 78219 -NCIT:C8714 Unilateral Retinoblastoma 6 78220 -NCIT:C9301 Central Nervous System Lymphoma 5 78221 -NCIT:C114779 Central Nervous System Non-Hodgkin Lymphoma 6 78222 -NCIT:C146989 Refractory Central Nervous System Non-Hodgkin Lymphoma 7 78223 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 8 78224 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 78225 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 78226 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 78227 -NCIT:C146990 Recurrent Central Nervous System Non-Hodgkin Lymphoma 7 78228 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 8 78229 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 78230 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 78231 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 78232 -NCIT:C147948 Central Nervous System B-Cell Non-Hodgkin Lymphoma 7 78233 -NCIT:C71720 Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 78234 -NCIT:C129602 Central Nervous System Intravascular Large B-Cell Lymphoma 9 78235 -NCIT:C155797 Pituitary Gland Diffuse Large B-Cell Lymphoma 9 78236 -NCIT:C157067 Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 78237 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 78238 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 78239 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 78240 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 78241 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 78242 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 78243 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 78244 -NCIT:C95991 Dural Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 78245 -NCIT:C155796 Pituitary Gland Non-Hodgkin Lymphoma 7 78246 -NCIT:C155797 Pituitary Gland Diffuse Large B-Cell Lymphoma 8 78247 -NCIT:C157065 Primary Vitreoretinal Non-Hodgkin Lymphoma 7 78248 -NCIT:C157067 Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 78249 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 78250 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 78251 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 8 78252 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 78253 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 8 78254 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 78255 -NCIT:C4365 Primary Retinal Non-Hodgkin Lymphoma 8 78256 -NCIT:C5409 Central Nervous System T-Cell Non-Hodgkin Lymphoma 7 78257 -NCIT:C129600 Central Nervous System Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 8 78258 -NCIT:C5322 Central Nervous System Anaplastic Large Cell Lymphoma 9 78259 -NCIT:C129598 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Positive 10 78260 -NCIT:C129599 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Negative 10 78261 -NCIT:C7609 Cerebral Non-Hodgkin Lymphoma 7 78262 -NCIT:C114951 Central Nervous System Hodgkin Lymphoma 6 78263 -NCIT:C5055 Cerebral Hodgkin Lymphoma 7 78264 -NCIT:C138019 Recurrent Central Nervous System Lymphoma 6 78265 -NCIT:C146990 Recurrent Central Nervous System Non-Hodgkin Lymphoma 7 78266 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 8 78267 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 78268 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 78269 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 78270 -NCIT:C138020 Refractory Central Nervous System Lymphoma 6 78271 -NCIT:C146989 Refractory Central Nervous System Non-Hodgkin Lymphoma 7 78272 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 8 78273 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 78274 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 78275 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 78276 -NCIT:C186658 Immunodeficiency-Related Central Nervous System Lymphoma 6 78277 -NCIT:C8284 AIDS-Related Primary Central Nervous System Lymphoma 7 78278 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 78279 -NCIT:C5157 Spinal Cord Lymphoma 6 78280 -NCIT:C7611 Cerebral Lymphoma 6 78281 -NCIT:C5054 Cerebral Lymphoma in Immunocompetent Host 7 78282 -NCIT:C5055 Cerebral Hodgkin Lymphoma 7 78283 -NCIT:C7609 Cerebral Non-Hodgkin Lymphoma 7 78284 -NCIT:C94756 Meningeal Lymphoma 6 78285 -NCIT:C95991 Dural Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 7 78286 -NCIT:C4953 Intracranial Neoplasm 4 78287 -NCIT:C130950 Posterior Fossa Neoplasm 5 78288 -NCIT:C186443 Posterior Fossa Ependymoma 6 78289 -NCIT:C186448 Posterior Fossa Ependymoma, Not Elsewhere Classified 7 78290 -NCIT:C186449 Posterior Fossa Ependymoma, Not Otherwise Specified 7 78291 -NCIT:C188943 Childhood Posterior Fossa Ependymoma 7 78292 -NCIT:C188945 Adult Posterior Fossa Ependymoma 7 78293 -NCIT:C186450 Posterior Fossa Ependymoma, Group A (PFA) 6 78294 -NCIT:C186451 Posterior Fossa Ependymoma, Group B (PFB) 6 78295 -NCIT:C6775 Posterior Fossa Meningioma 6 78296 -NCIT:C5289 Clivus Meningioma 7 78297 -NCIT:C5288 Lower Clivus Meningioma 8 78298 -NCIT:C5290 Upper Clivus Meningioma 8 78299 -NCIT:C5295 Brain Stem Intraparenchymal Clear Cell Meningioma 7 78300 -NCIT:C5300 Cerebellopontine Angle Meningioma 7 78301 -NCIT:C173154 Recurrent Intracranial Neoplasm 5 78302 -NCIT:C71698 Recurrent Brain Neoplasm 6 78303 -NCIT:C148077 Recurrent Craniopharyngioma 7 78304 -NCIT:C162612 Recurrent Adamantinomatous Craniopharyngioma 8 78305 -NCIT:C153837 Recurrent Malignant Brain Neoplasm 7 78306 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 78307 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 78308 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 8 78309 -NCIT:C179221 Recurrent Gliomatosis Cerebri 8 78310 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 9 78311 -NCIT:C179226 Recurrent Malignant Choroid Plexus Neoplasm 8 78312 -NCIT:C191198 Recurrent Brain Glioblastoma 8 78313 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 9 78314 -NCIT:C5588 Recurrent Medulloblastoma 8 78315 -NCIT:C147109 Recurrent Medulloblastoma, SHH-Activated 9 78316 -NCIT:C180893 Recurrent Medulloblastoma, WNT-Activated 9 78317 -NCIT:C6774 Recurrent Childhood Medulloblastoma 9 78318 -NCIT:C155983 Recurrent Visual Pathway Glioma 7 78319 -NCIT:C7529 Recurrent Childhood Visual Pathway Glioma 8 78320 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 9 78321 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 78322 -NCIT:C7531 Recurrent Childhood Optic Nerve Glioma 9 78323 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 78324 -NCIT:C179227 Recurrent Pineal Parenchymal Cell Neoplasm 7 78325 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 78326 -NCIT:C180398 Recurrent Multinodular and Vacuolated Neuronal Tumor 7 78327 -NCIT:C180400 Recurrent Polymorphous Low Grade Neuroepithelial Tumor of the Young 7 78328 -NCIT:C7834 Recurrent Childhood Brain Neoplasm 7 78329 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 8 78330 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 78331 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 78332 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 78333 -NCIT:C7529 Recurrent Childhood Visual Pathway Glioma 8 78334 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 9 78335 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 78336 -NCIT:C7531 Recurrent Childhood Optic Nerve Glioma 9 78337 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 78338 -NCIT:C8389 Recurrent Childhood Cerebellar Astrocytoma 8 78339 -NCIT:C9190 Recurrent Childhood Brain Stem Glioma 8 78340 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 9 78341 -NCIT:C9191 Recurrent Childhood Cerebral Astrocytoma 8 78342 -NCIT:C7884 Recurrent Adult Brain Neoplasm 7 78343 -NCIT:C173155 Metastatic Intracranial Malignant Neoplasm 5 78344 -NCIT:C175550 Metastatic Primary Malignant Brain Neoplasm 6 78345 -NCIT:C175549 Advanced Primary Malignant Brain Neoplasm 7 78346 -NCIT:C187213 Advanced Childhood Malignant Brain Neoplasm 8 78347 -NCIT:C177725 Metastatic Medulloblastoma 7 78348 -NCIT:C5399 Medulloblastoma with Leptomeningeal Spread 8 78349 -NCIT:C180874 Locally Advanced Primary Malignant Brain Neoplasm 7 78350 -NCIT:C187212 Metastatic Childhood Malignant Brain Neoplasm 7 78351 -NCIT:C187213 Advanced Childhood Malignant Brain Neoplasm 8 78352 -NCIT:C2907 Brain Neoplasm 5 78353 -NCIT:C170814 Primary Brain Neoplasm 6 78354 -NCIT:C129427 Multinodular and Vacuolated Neuronal Tumor 7 78355 -NCIT:C180398 Recurrent Multinodular and Vacuolated Neuronal Tumor 8 78356 -NCIT:C188933 Childhood Multinodular and Vacuolated Neuronal Tumor 8 78357 -NCIT:C188934 Adult Multinodular and Vacuolated Neuronal Tumor 8 78358 -NCIT:C156462 Brain Ependymoma 7 78359 -NCIT:C186343 Supratentorial Ependymoma 8 78360 -NCIT:C186348 Supratentorial Ependymoma, Not Elsewhere Classified 9 78361 -NCIT:C186349 Supratentorial Ependymoma, Not Otherwise Specified 9 78362 -NCIT:C9043 Childhood Supratentorial Ependymoma, Not Otherwise Specified 10 78363 -NCIT:C6268 Childhood Cerebral Ependymoma, Not Otherwise Specified 11 78364 -NCIT:C186350 Supratentorial Ependymoma ZFTA Fusion-Positive 8 78365 -NCIT:C129351 Supratentorial Ependymoma, ZFTA-RELA Fusion-Positive 9 78366 -NCIT:C188935 Childhood Supratentorial Ependymoma ZFTA Fusion-Positive 9 78367 -NCIT:C188938 Adult Supratentorial Ependymoma ZFTA Fusion-Positive 9 78368 -NCIT:C186351 Supratentorial Ependymoma YAP1 Fusion-Positive 8 78369 -NCIT:C186355 Supratentorial Ependymoma, YAP1-MAMLD1 Fusion-Positive 9 78370 -NCIT:C186443 Posterior Fossa Ependymoma 8 78371 -NCIT:C186448 Posterior Fossa Ependymoma, Not Elsewhere Classified 9 78372 -NCIT:C186449 Posterior Fossa Ependymoma, Not Otherwise Specified 9 78373 -NCIT:C188943 Childhood Posterior Fossa Ependymoma 9 78374 -NCIT:C188945 Adult Posterior Fossa Ependymoma 9 78375 -NCIT:C186450 Posterior Fossa Ependymoma, Group A (PFA) 8 78376 -NCIT:C186451 Posterior Fossa Ependymoma, Group B (PFB) 8 78377 -NCIT:C5098 Brain Stem Ependymoma 8 78378 -NCIT:C9041 Childhood Infratentorial Ependymoma 8 78379 -NCIT:C9372 Adult Brain Ependymoma 8 78380 -NCIT:C188938 Adult Supratentorial Ependymoma ZFTA Fusion-Positive 9 78381 -NCIT:C188945 Adult Posterior Fossa Ependymoma 9 78382 -NCIT:C162993 Malignant Brain Glioma 7 78383 -NCIT:C156120 Frontal Lobe Anaplastic Oligodendroglioma 8 78384 -NCIT:C185371 Diffuse Hemispheric Glioma, H3 G34-Mutant 8 78385 -NCIT:C188926 Childhood Diffuse Hemispheric Glioma, H3 G34-Mutant 9 78386 -NCIT:C188927 Adult Diffuse Hemispheric Glioma, H3 G34-Mutant 9 78387 -NCIT:C185467 Diffuse Pediatric-Type High Grade Glioma, H3-Wildtype and IDH-Wildtype 8 78388 -NCIT:C185468 Diffuse Pediatric-Type High Grade Glioma RTK2 9 78389 -NCIT:C185469 Diffuse Pediatric-Type High Grade Glioma RTK1 9 78390 -NCIT:C185470 Diffuse Pediatric-Type High Grade Glioma MYCN 9 78391 -NCIT:C185471 Infant-Type Hemispheric Glioma 8 78392 -NCIT:C185472 Infant-Type Hemispheric Glioma, NTRK-Altered 9 78393 -NCIT:C185473 Infant-Type Hemispheric Glioma, ROS1-Altered 9 78394 -NCIT:C185474 Infant-Type Hemispheric Glioma, ALK-Altered 9 78395 -NCIT:C185475 Infant-Type Hemispheric Glioma, MET-Altered 9 78396 -NCIT:C4642 Brain Glioblastoma 8 78397 -NCIT:C147901 Childhood Brain Glioblastoma 9 78398 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 78399 -NCIT:C191198 Recurrent Brain Glioblastoma 9 78400 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 10 78401 -NCIT:C5148 Infratentorial Glioblastoma 9 78402 -NCIT:C5097 Brain Stem Glioblastoma 10 78403 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 11 78404 -NCIT:C9370 Adult Brain Stem Gliosarcoma 11 78405 -NCIT:C5150 Cerebellar Glioblastoma 10 78406 -NCIT:C5149 Supratentorial Glioblastoma 9 78407 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 10 78408 -NCIT:C5129 Diencephalic Glioblastoma 10 78409 -NCIT:C5151 Cerebral Glioblastoma 10 78410 -NCIT:C171013 Supratentorial Gliosarcoma 11 78411 -NCIT:C9375 Adult Brain Glioblastoma 9 78412 -NCIT:C9370 Adult Brain Stem Gliosarcoma 10 78413 -NCIT:C5123 Hemispheric Anaplastic Astrocytoma 8 78414 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 9 78415 -NCIT:C156035 Frontal Lobe Anaplastic Astrocytoma 9 78416 -NCIT:C156036 Temporal Lobe Anaplastic Astrocytoma 9 78417 -NCIT:C171036 Parietal Lobe Anaplastic Astrocytoma 9 78418 -NCIT:C5124 Anaplastic Diencephalic Astrocytoma 8 78419 -NCIT:C5416 Secondary Supratentorial Anaplastic Astrocytoma 8 78420 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 8 78421 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 9 78422 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 9 78423 -NCIT:C7446 Anaplastic Brain Stem Glioma 8 78424 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 9 78425 -NCIT:C94764 Diffuse Intrinsic Pontine Glioma 8 78426 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 9 78427 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 9 78428 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 9 78429 -NCIT:C188925 Adult Diffuse Intrinsic Pontine Glioma 9 78430 -NCIT:C175550 Metastatic Primary Malignant Brain Neoplasm 7 78431 -NCIT:C175549 Advanced Primary Malignant Brain Neoplasm 8 78432 -NCIT:C187213 Advanced Childhood Malignant Brain Neoplasm 9 78433 -NCIT:C177725 Metastatic Medulloblastoma 8 78434 -NCIT:C5399 Medulloblastoma with Leptomeningeal Spread 9 78435 -NCIT:C180874 Locally Advanced Primary Malignant Brain Neoplasm 8 78436 -NCIT:C187212 Metastatic Childhood Malignant Brain Neoplasm 8 78437 -NCIT:C187213 Advanced Childhood Malignant Brain Neoplasm 9 78438 -NCIT:C180378 Polymorphous Low Grade Neuroepithelial Tumor of the Young 7 78439 -NCIT:C180400 Recurrent Polymorphous Low Grade Neuroepithelial Tumor of the Young 8 78440 -NCIT:C186614 Intracranial Mesenchymal Tumor, FET-CREB Fusion-Positive 7 78441 -NCIT:C3222 Medulloblastoma 7 78442 -NCIT:C129436 Large Cell/Anaplastic Medulloblastoma 8 78443 -NCIT:C129439 Medulloblastoma Molecular Subtypes 8 78444 -NCIT:C129440 Medulloblastoma, WNT-Activated 9 78445 -NCIT:C180892 Refractory Medulloblastoma, WNT-Activated 10 78446 -NCIT:C180893 Recurrent Medulloblastoma, WNT-Activated 10 78447 -NCIT:C129441 Medulloblastoma, SHH-Activated 9 78448 -NCIT:C129442 Medulloblastoma, SHH-Activated, TP53-Mutant 10 78449 -NCIT:C129443 Medulloblastoma, SHH-Activated, TP53-Wildtype 10 78450 -NCIT:C186591 ELP1-Associated Medulloblastoma 11 78451 -NCIT:C147109 Recurrent Medulloblastoma, SHH-Activated 10 78452 -NCIT:C147110 Refractory Medulloblastoma, SHH-Activated 10 78453 -NCIT:C189841 Medulloblastoma, SHH-1 10 78454 -NCIT:C189844 Medulloblastoma, SHH-2 10 78455 -NCIT:C189845 Medulloblastoma, SHH-3 10 78456 -NCIT:C189846 Medulloblastoma, SHH-4 10 78457 -NCIT:C129444 Medulloblastoma, Non-WNT/Non-SHH 9 78458 -NCIT:C129445 Medulloblastoma, Non-WNT/Non-SHH, Group 3 10 78459 -NCIT:C129446 Medulloblastoma, Non-WNT/Non-SHH, Group 4 10 78460 -NCIT:C129447 Medulloblastoma, Not Otherwise Specified 8 78461 -NCIT:C142856 Refractory Medulloblastoma 8 78462 -NCIT:C147110 Refractory Medulloblastoma, SHH-Activated 9 78463 -NCIT:C180892 Refractory Medulloblastoma, WNT-Activated 9 78464 -NCIT:C156039 Fourth Ventricle Medulloblastoma 8 78465 -NCIT:C177725 Metastatic Medulloblastoma 8 78466 -NCIT:C5399 Medulloblastoma with Leptomeningeal Spread 9 78467 -NCIT:C27237 Familial Adenomatous Polyposis Associated Medulloblastoma 8 78468 -NCIT:C3706 Medullomyoblastoma 8 78469 -NCIT:C3997 Childhood Medulloblastoma 8 78470 -NCIT:C6774 Recurrent Childhood Medulloblastoma 9 78471 -NCIT:C4011 Adult Medulloblastoma 8 78472 -NCIT:C4956 Desmoplastic/Nodular Medulloblastoma 8 78473 -NCIT:C5401 Cerebellar Vermis Medulloblastoma 8 78474 -NCIT:C5402 Region 17p13 Allelic Loss Associated Medulloblastoma 8 78475 -NCIT:C54039 Classic Medulloblastoma 8 78476 -NCIT:C5405 Nevoid Basal Cell Carcinoma Syndrome Associated Medulloblastoma 8 78477 -NCIT:C5407 Medulloblastoma with Extensive Nodularity 8 78478 -NCIT:C5588 Recurrent Medulloblastoma 8 78479 -NCIT:C147109 Recurrent Medulloblastoma, SHH-Activated 9 78480 -NCIT:C180893 Recurrent Medulloblastoma, WNT-Activated 9 78481 -NCIT:C6774 Recurrent Childhood Medulloblastoma 9 78482 -NCIT:C6904 Large Cell Medulloblastoma 8 78483 -NCIT:C92625 Anaplastic Medulloblastoma 8 78484 -NCIT:C9497 Melanocytic Medulloblastoma 8 78485 -NCIT:C3795 Subependymoma 7 78486 -NCIT:C115623 Adult Subependymoma 8 78487 -NCIT:C4318 Gliomatosis Cerebri 7 78488 -NCIT:C114969 Childhood Gliomatosis Cerebri 8 78489 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 9 78490 -NCIT:C179221 Recurrent Gliomatosis Cerebri 8 78491 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 9 78492 -NCIT:C41842 Gliomatosis Cerebri Type I 8 78493 -NCIT:C41843 Gliomatosis Cerebri Type II 8 78494 -NCIT:C4781 Benign Brain Neoplasm 7 78495 -NCIT:C2964 Craniopharyngioma 8 78496 -NCIT:C148076 Unresectable Craniopharyngioma 9 78497 -NCIT:C148077 Recurrent Craniopharyngioma 9 78498 -NCIT:C162612 Recurrent Adamantinomatous Craniopharyngioma 10 78499 -NCIT:C4010 Adult Craniopharyngioma 9 78500 -NCIT:C188949 Adult Adamantinomatous Craniopharyngioma 10 78501 -NCIT:C4725 Papillary Craniopharyngioma 9 78502 -NCIT:C4726 Adamantinomatous Craniopharyngioma 9 78503 -NCIT:C162612 Recurrent Adamantinomatous Craniopharyngioma 10 78504 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 10 78505 -NCIT:C188949 Adult Adamantinomatous Craniopharyngioma 10 78506 -NCIT:C7816 Childhood Craniopharyngioma 9 78507 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 10 78508 -NCIT:C4963 Benign Supratentorial Neoplasm 8 78509 -NCIT:C3631 Benign Pineal Region Neoplasm 9 78510 -NCIT:C6754 Pineal Region Mature Teratoma 10 78511 -NCIT:C6966 Pineocytoma 10 78512 -NCIT:C8291 Adult Pineocytoma 11 78513 -NCIT:C4782 Benign Pituitary Gland Neoplasm 9 78514 -NCIT:C5127 Benign Diencephalic Neoplasm 9 78515 -NCIT:C6222 Benign Thalamic Neoplasm 10 78516 -NCIT:C5799 Childhood Benign Supratentorial Neoplasm 9 78517 -NCIT:C5800 Childhood Choroid Plexus Papilloma 10 78518 -NCIT:C6219 Childhood Benign Cerebral Neoplasm 10 78519 -NCIT:C8548 Benign Cerebral Neoplasm 9 78520 -NCIT:C5433 Cerebral Hemangioma 10 78521 -NCIT:C6218 Adult Benign Cerebral Neoplasm 10 78522 -NCIT:C6219 Childhood Benign Cerebral Neoplasm 10 78523 -NCIT:C6220 Cerebral Hemisphere Lipoma 10 78524 -NCIT:C5438 Corpus Callosum Lipoma 11 78525 -NCIT:C4965 Benign Infratentorial Neoplasm 8 78526 -NCIT:C4955 Benign Cerebellar Neoplasm 9 78527 -NCIT:C5796 Adult Benign Cerebellar Neoplasm 10 78528 -NCIT:C6809 Cerebellar Pilocytic Astrocytoma 10 78529 -NCIT:C5413 Cerebellopontine Angle Schwannoma 9 78530 -NCIT:C8549 Benign Brain Stem Neoplasm 9 78531 -NCIT:C5797 Adult Benign Brain Stem Neoplasm 10 78532 -NCIT:C5116 Adult Benign Brain Neoplasm 8 78533 -NCIT:C4010 Adult Craniopharyngioma 9 78534 -NCIT:C188949 Adult Adamantinomatous Craniopharyngioma 10 78535 -NCIT:C5796 Adult Benign Cerebellar Neoplasm 9 78536 -NCIT:C5797 Adult Benign Brain Stem Neoplasm 9 78537 -NCIT:C6218 Adult Benign Cerebral Neoplasm 9 78538 -NCIT:C8291 Adult Pineocytoma 9 78539 -NCIT:C5798 Childhood Benign Brain Neoplasm 8 78540 -NCIT:C5799 Childhood Benign Supratentorial Neoplasm 9 78541 -NCIT:C5800 Childhood Choroid Plexus Papilloma 10 78542 -NCIT:C6219 Childhood Benign Cerebral Neoplasm 10 78543 -NCIT:C7816 Childhood Craniopharyngioma 9 78544 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 10 78545 -NCIT:C7739 Brain Hemangioma 8 78546 -NCIT:C5433 Cerebral Hemangioma 9 78547 -NCIT:C8405 Benign Choroid Plexus Neoplasm 8 78548 -NCIT:C3698 Choroid Plexus Papilloma 9 78549 -NCIT:C5800 Childhood Choroid Plexus Papilloma 10 78550 -NCIT:C4807 Cerebral Meningioma 7 78551 -NCIT:C4959 Cerebral Convexity Meningioma 8 78552 -NCIT:C5292 Frontal Convexity Meningioma 9 78553 -NCIT:C4960 Parasagittal Meningioma 8 78554 -NCIT:C5269 Intracerebral Cystic Meningioma 8 78555 -NCIT:C5302 Lateral Ventricle Meningioma 8 78556 -NCIT:C4826 Central Nervous System Neuroblastoma 7 78557 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 8 78558 -NCIT:C186547 Central Nervous System Neuroblastoma, FOXR2-Activated 8 78559 -NCIT:C4952 Localized Brain Neoplasm 7 78560 -NCIT:C150573 Localized Cerebral Neoplasm 8 78561 -NCIT:C4954 Localized Malignant Brain Neoplasm 8 78562 -NCIT:C4975 Primary Brain Stem Neoplasm 7 78563 -NCIT:C5147 Brain Stem Hemangioblastoma 8 78564 -NCIT:C155949 Medullary Hemangioblastoma 9 78565 -NCIT:C5295 Brain Stem Intraparenchymal Clear Cell Meningioma 8 78566 -NCIT:C8501 Brain Stem Glioma 8 78567 -NCIT:C5097 Brain Stem Glioblastoma 9 78568 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 78569 -NCIT:C9370 Adult Brain Stem Gliosarcoma 10 78570 -NCIT:C5098 Brain Stem Ependymoma 9 78571 -NCIT:C7445 Brain Stem Astrocytoma 9 78572 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 10 78573 -NCIT:C6216 Childhood Brain Stem Astrocytoma 10 78574 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 11 78575 -NCIT:C6954 Adult Brain Stem Astrocytoma 10 78576 -NCIT:C7446 Anaplastic Brain Stem Glioma 9 78577 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 10 78578 -NCIT:C9042 Childhood Brain Stem Glioma 9 78579 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 78580 -NCIT:C114760 Childhood Brain Stem Mixed Glioma 10 78581 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 10 78582 -NCIT:C6216 Childhood Brain Stem Astrocytoma 10 78583 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 11 78584 -NCIT:C9190 Recurrent Childhood Brain Stem Glioma 10 78585 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 11 78586 -NCIT:C9091 Adult Brain Stem Glioma 9 78587 -NCIT:C188925 Adult Diffuse Intrinsic Pontine Glioma 10 78588 -NCIT:C6954 Adult Brain Stem Astrocytoma 10 78589 -NCIT:C9370 Adult Brain Stem Gliosarcoma 10 78590 -NCIT:C9371 Adult Brain Stem Mixed Glioma 10 78591 -NCIT:C94764 Diffuse Intrinsic Pontine Glioma 9 78592 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 10 78593 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 10 78594 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 10 78595 -NCIT:C188925 Adult Diffuse Intrinsic Pontine Glioma 10 78596 -NCIT:C8549 Benign Brain Stem Neoplasm 8 78597 -NCIT:C5797 Adult Benign Brain Stem Neoplasm 9 78598 -NCIT:C5154 Brain Sarcoma 7 78599 -NCIT:C186610 Primary Intracranial Sarcoma, DICER1-Mutant 8 78600 -NCIT:C5462 Brain Extraskeletal Myxoid Chondrosarcoma 8 78601 -NCIT:C6973 Brain Liposarcoma 8 78602 -NCIT:C5270 Cerebellar Papillary Meningioma 7 78603 -NCIT:C5273 Intraventricular Meningioma 7 78604 -NCIT:C5302 Lateral Ventricle Meningioma 8 78605 -NCIT:C5414 Cerebellopontine Angle Neoplasm 7 78606 -NCIT:C5300 Cerebellopontine Angle Meningioma 8 78607 -NCIT:C5413 Cerebellopontine Angle Schwannoma 8 78608 -NCIT:C5436 Cerebellopontine Angle Embryonal Tumor, Not Otherwise Specified 8 78609 -NCIT:C5592 Chordoid Glioma 7 78610 -NCIT:C5795 Childhood Brain Germ Cell Tumor 7 78611 -NCIT:C6207 Childhood Brain Germinoma 8 78612 -NCIT:C5817 Intracranial Embryonal Tumor, Not Otherwise Specified 7 78613 -NCIT:C5436 Cerebellopontine Angle Embryonal Tumor, Not Otherwise Specified 8 78614 -NCIT:C6968 Supratentorial Embryonal Tumor, Not Otherwise Specified 8 78615 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 9 78616 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 10 78617 -NCIT:C4970 Cerebral Embryonal Tumor, Not Otherwise Specified 9 78618 -NCIT:C68703 Adult Supratentorial Embryonal Tumor, Not Otherwise Specified 9 78619 -NCIT:C60780 Brain Astrocytoma 7 78620 -NCIT:C156037 Third Ventricle Pilocytic Astrocytoma 8 78621 -NCIT:C156041 Supratentorial Pleomorphic Xanthoastrocytoma 8 78622 -NCIT:C4951 Cerebral Astrocytoma 8 78623 -NCIT:C4347 Childhood Cerebral Astrocytoma 9 78624 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 10 78625 -NCIT:C8387 Childhood Cerebral Diffuse Astrocytoma 10 78626 -NCIT:C9191 Recurrent Childhood Cerebral Astrocytoma 10 78627 -NCIT:C5123 Hemispheric Anaplastic Astrocytoma 9 78628 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 10 78629 -NCIT:C156035 Frontal Lobe Anaplastic Astrocytoma 10 78630 -NCIT:C156036 Temporal Lobe Anaplastic Astrocytoma 10 78631 -NCIT:C171036 Parietal Lobe Anaplastic Astrocytoma 10 78632 -NCIT:C5128 Diencephalic Astrocytoma 8 78633 -NCIT:C5124 Anaplastic Diencephalic Astrocytoma 9 78634 -NCIT:C5416 Secondary Supratentorial Anaplastic Astrocytoma 8 78635 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 8 78636 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 9 78637 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 9 78638 -NCIT:C7445 Brain Stem Astrocytoma 8 78639 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 9 78640 -NCIT:C6216 Childhood Brain Stem Astrocytoma 9 78641 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 10 78642 -NCIT:C6954 Adult Brain Stem Astrocytoma 9 78643 -NCIT:C7534 Childhood Visual Pathway Astrocytoma 8 78644 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 9 78645 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 78646 -NCIT:C8274 Pineal Gland Astrocytoma 8 78647 -NCIT:C115327 Adult Pineal Gland Astrocytoma 9 78648 -NCIT:C9475 Cerebellar Astrocytoma 8 78649 -NCIT:C6286 Childhood Cerebellar Astrocytoma 9 78650 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 10 78651 -NCIT:C8389 Recurrent Childhood Cerebellar Astrocytoma 10 78652 -NCIT:C6809 Cerebellar Pilocytic Astrocytoma 9 78653 -NCIT:C6284 Brain Germinoma 7 78654 -NCIT:C156040 Third Ventricle Germinoma 8 78655 -NCIT:C6207 Childhood Brain Germinoma 8 78656 -NCIT:C8712 Pineal Region Germinoma 8 78657 -NCIT:C67559 Rosette-Forming Glioneuronal Tumor of the Fourth Ventricle 7 78658 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 7 78659 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 78660 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 7 78661 -NCIT:C71698 Recurrent Brain Neoplasm 7 78662 -NCIT:C148077 Recurrent Craniopharyngioma 8 78663 -NCIT:C162612 Recurrent Adamantinomatous Craniopharyngioma 9 78664 -NCIT:C153837 Recurrent Malignant Brain Neoplasm 8 78665 -NCIT:C115374 Recurrent Childhood Pineoblastoma 9 78666 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 9 78667 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 9 78668 -NCIT:C179221 Recurrent Gliomatosis Cerebri 9 78669 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 10 78670 -NCIT:C179226 Recurrent Malignant Choroid Plexus Neoplasm 9 78671 -NCIT:C191198 Recurrent Brain Glioblastoma 9 78672 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 10 78673 -NCIT:C5588 Recurrent Medulloblastoma 9 78674 -NCIT:C147109 Recurrent Medulloblastoma, SHH-Activated 10 78675 -NCIT:C180893 Recurrent Medulloblastoma, WNT-Activated 10 78676 -NCIT:C6774 Recurrent Childhood Medulloblastoma 10 78677 -NCIT:C155983 Recurrent Visual Pathway Glioma 8 78678 -NCIT:C7529 Recurrent Childhood Visual Pathway Glioma 9 78679 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 10 78680 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 11 78681 -NCIT:C7531 Recurrent Childhood Optic Nerve Glioma 10 78682 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 11 78683 -NCIT:C179227 Recurrent Pineal Parenchymal Cell Neoplasm 8 78684 -NCIT:C115374 Recurrent Childhood Pineoblastoma 9 78685 -NCIT:C180398 Recurrent Multinodular and Vacuolated Neuronal Tumor 8 78686 -NCIT:C180400 Recurrent Polymorphous Low Grade Neuroepithelial Tumor of the Young 8 78687 -NCIT:C7834 Recurrent Childhood Brain Neoplasm 8 78688 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 9 78689 -NCIT:C115374 Recurrent Childhood Pineoblastoma 9 78690 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 9 78691 -NCIT:C6774 Recurrent Childhood Medulloblastoma 9 78692 -NCIT:C7529 Recurrent Childhood Visual Pathway Glioma 9 78693 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 10 78694 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 11 78695 -NCIT:C7531 Recurrent Childhood Optic Nerve Glioma 10 78696 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 11 78697 -NCIT:C8389 Recurrent Childhood Cerebellar Astrocytoma 9 78698 -NCIT:C9190 Recurrent Childhood Brain Stem Glioma 9 78699 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 10 78700 -NCIT:C9191 Recurrent Childhood Cerebral Astrocytoma 9 78701 -NCIT:C7884 Recurrent Adult Brain Neoplasm 8 78702 -NCIT:C71702 Refractory Brain Neoplasm 7 78703 -NCIT:C153845 Refractory Malignant Brain Neoplasm 8 78704 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 9 78705 -NCIT:C142856 Refractory Medulloblastoma 9 78706 -NCIT:C147110 Refractory Medulloblastoma, SHH-Activated 10 78707 -NCIT:C180892 Refractory Medulloblastoma, WNT-Activated 10 78708 -NCIT:C155984 Refractory Visual Pathway Glioma 8 78709 -NCIT:C187215 Refractory Childhood Brain Neoplasm 8 78710 -NCIT:C7611 Cerebral Lymphoma 7 78711 -NCIT:C5054 Cerebral Lymphoma in Immunocompetent Host 8 78712 -NCIT:C5055 Cerebral Hodgkin Lymphoma 8 78713 -NCIT:C7609 Cerebral Non-Hodgkin Lymphoma 8 78714 -NCIT:C9183 Adult Central Nervous System Solitary Fibrous Tumor, Grade 3 7 78715 -NCIT:C92555 Extraventricular Neurocytoma 7 78716 -NCIT:C92629 Central Nervous System Ganglioneuroblastoma 7 78717 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 8 78718 -NCIT:C9344 Pineoblastoma 7 78719 -NCIT:C114812 Childhood Pineoblastoma 8 78720 -NCIT:C115374 Recurrent Childhood Pineoblastoma 9 78721 -NCIT:C8292 Adult Pineoblastoma 8 78722 -NCIT:C9377 Brain Oligodendroglioma 7 78723 -NCIT:C114773 Childhood Brain Oligodendroglioma 8 78724 -NCIT:C9376 Adult Brain Oligodendroglioma 8 78725 -NCIT:C9505 Dysembryoplastic Neuroepithelial Tumor 7 78726 -NCIT:C188931 Childhood Dysembryoplastic Neuroepithelial Tumor 8 78727 -NCIT:C188932 Adult Dysembryoplastic Neuroepithelial Tumor 8 78728 -NCIT:C2937 Intraventricular Brain Neoplasm 6 78729 -NCIT:C3473 Choroid Plexus Neoplasm 7 78730 -NCIT:C42080 Childhood Choroid Plexus Neoplasm 8 78731 -NCIT:C124291 Childhood Atypical Choroid Plexus Papilloma 9 78732 -NCIT:C124292 Childhood Choroid Plexus Carcinoma 9 78733 -NCIT:C5800 Childhood Choroid Plexus Papilloma 9 78734 -NCIT:C4533 Malignant Choroid Plexus Neoplasm 8 78735 -NCIT:C179226 Recurrent Malignant Choroid Plexus Neoplasm 9 78736 -NCIT:C4715 Choroid Plexus Carcinoma 9 78737 -NCIT:C124292 Childhood Choroid Plexus Carcinoma 10 78738 -NCIT:C53686 Atypical Choroid Plexus Papilloma 8 78739 -NCIT:C124291 Childhood Atypical Choroid Plexus Papilloma 9 78740 -NCIT:C8405 Benign Choroid Plexus Neoplasm 8 78741 -NCIT:C3698 Choroid Plexus Papilloma 9 78742 -NCIT:C5800 Childhood Choroid Plexus Papilloma 10 78743 -NCIT:C8568 Adult Choroid Plexus Neoplasm 8 78744 -NCIT:C3791 Central Neurocytoma 7 78745 -NCIT:C5273 Intraventricular Meningioma 7 78746 -NCIT:C5302 Lateral Ventricle Meningioma 8 78747 -NCIT:C5592 Chordoid Glioma 7 78748 -NCIT:C3139 Infratentorial Neoplasm 6 78749 -NCIT:C2935 Cerebellar Neoplasm 7 78750 -NCIT:C179883 Cerebellar Peduncle Neoplasm 8 78751 -NCIT:C3569 Malignant Cerebellar Neoplasm 8 78752 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 9 78753 -NCIT:C3222 Medulloblastoma 9 78754 -NCIT:C129436 Large Cell/Anaplastic Medulloblastoma 10 78755 -NCIT:C129439 Medulloblastoma Molecular Subtypes 10 78756 -NCIT:C129440 Medulloblastoma, WNT-Activated 11 78757 -NCIT:C180892 Refractory Medulloblastoma, WNT-Activated 12 78758 -NCIT:C180893 Recurrent Medulloblastoma, WNT-Activated 12 78759 -NCIT:C129441 Medulloblastoma, SHH-Activated 11 78760 -NCIT:C129442 Medulloblastoma, SHH-Activated, TP53-Mutant 12 78761 -NCIT:C129443 Medulloblastoma, SHH-Activated, TP53-Wildtype 12 78762 -NCIT:C186591 ELP1-Associated Medulloblastoma 13 78763 -NCIT:C147109 Recurrent Medulloblastoma, SHH-Activated 12 78764 -NCIT:C147110 Refractory Medulloblastoma, SHH-Activated 12 78765 -NCIT:C189841 Medulloblastoma, SHH-1 12 78766 -NCIT:C189844 Medulloblastoma, SHH-2 12 78767 -NCIT:C189845 Medulloblastoma, SHH-3 12 78768 -NCIT:C189846 Medulloblastoma, SHH-4 12 78769 -NCIT:C129444 Medulloblastoma, Non-WNT/Non-SHH 11 78770 -NCIT:C129445 Medulloblastoma, Non-WNT/Non-SHH, Group 3 12 78771 -NCIT:C129446 Medulloblastoma, Non-WNT/Non-SHH, Group 4 12 78772 -NCIT:C129447 Medulloblastoma, Not Otherwise Specified 10 78773 -NCIT:C142856 Refractory Medulloblastoma 10 78774 -NCIT:C147110 Refractory Medulloblastoma, SHH-Activated 11 78775 -NCIT:C180892 Refractory Medulloblastoma, WNT-Activated 11 78776 -NCIT:C156039 Fourth Ventricle Medulloblastoma 10 78777 -NCIT:C177725 Metastatic Medulloblastoma 10 78778 -NCIT:C5399 Medulloblastoma with Leptomeningeal Spread 11 78779 -NCIT:C27237 Familial Adenomatous Polyposis Associated Medulloblastoma 10 78780 -NCIT:C3706 Medullomyoblastoma 10 78781 -NCIT:C3997 Childhood Medulloblastoma 10 78782 -NCIT:C6774 Recurrent Childhood Medulloblastoma 11 78783 -NCIT:C4011 Adult Medulloblastoma 10 78784 -NCIT:C4956 Desmoplastic/Nodular Medulloblastoma 10 78785 -NCIT:C5401 Cerebellar Vermis Medulloblastoma 10 78786 -NCIT:C5402 Region 17p13 Allelic Loss Associated Medulloblastoma 10 78787 -NCIT:C54039 Classic Medulloblastoma 10 78788 -NCIT:C5405 Nevoid Basal Cell Carcinoma Syndrome Associated Medulloblastoma 10 78789 -NCIT:C5407 Medulloblastoma with Extensive Nodularity 10 78790 -NCIT:C5588 Recurrent Medulloblastoma 10 78791 -NCIT:C147109 Recurrent Medulloblastoma, SHH-Activated 11 78792 -NCIT:C180893 Recurrent Medulloblastoma, WNT-Activated 11 78793 -NCIT:C6774 Recurrent Childhood Medulloblastoma 11 78794 -NCIT:C6904 Large Cell Medulloblastoma 10 78795 -NCIT:C92625 Anaplastic Medulloblastoma 10 78796 -NCIT:C9497 Melanocytic Medulloblastoma 10 78797 -NCIT:C5270 Cerebellar Papillary Meningioma 9 78798 -NCIT:C48318 Cerebellar Paraganglioma 8 78799 -NCIT:C4955 Benign Cerebellar Neoplasm 8 78800 -NCIT:C5796 Adult Benign Cerebellar Neoplasm 9 78801 -NCIT:C6809 Cerebellar Pilocytic Astrocytoma 9 78802 -NCIT:C5146 Cerebellar Hemangioblastoma 8 78803 -NCIT:C5968 Adult Cerebellar Neoplasm 8 78804 -NCIT:C4011 Adult Medulloblastoma 9 78805 -NCIT:C5796 Adult Benign Cerebellar Neoplasm 9 78806 -NCIT:C5970 Childhood Cerebellar Neoplasm 8 78807 -NCIT:C3997 Childhood Medulloblastoma 9 78808 -NCIT:C6774 Recurrent Childhood Medulloblastoma 10 78809 -NCIT:C6286 Childhood Cerebellar Astrocytoma 9 78810 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 10 78811 -NCIT:C8389 Recurrent Childhood Cerebellar Astrocytoma 10 78812 -NCIT:C7372 Cerebellar Glioneuronal and Neuronal Tumors 8 78813 -NCIT:C6905 Cerebellar Liponeurocytoma 9 78814 -NCIT:C8419 Dysplastic Cerebellar Gangliocytoma 9 78815 -NCIT:C9475 Cerebellar Astrocytoma 8 78816 -NCIT:C6286 Childhood Cerebellar Astrocytoma 9 78817 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 10 78818 -NCIT:C8389 Recurrent Childhood Cerebellar Astrocytoma 10 78819 -NCIT:C6809 Cerebellar Pilocytic Astrocytoma 9 78820 -NCIT:C4869 Brain Stem Neoplasm 7 78821 -NCIT:C3570 Malignant Brain Stem Neoplasm 8 78822 -NCIT:C5097 Brain Stem Glioblastoma 9 78823 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 78824 -NCIT:C9370 Adult Brain Stem Gliosarcoma 10 78825 -NCIT:C7446 Anaplastic Brain Stem Glioma 9 78826 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 10 78827 -NCIT:C8550 Metastatic Malignant Neoplasm in the Brain Stem 9 78828 -NCIT:C94764 Diffuse Intrinsic Pontine Glioma 9 78829 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 10 78830 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 10 78831 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 10 78832 -NCIT:C188925 Adult Diffuse Intrinsic Pontine Glioma 10 78833 -NCIT:C4975 Primary Brain Stem Neoplasm 8 78834 -NCIT:C5147 Brain Stem Hemangioblastoma 9 78835 -NCIT:C155949 Medullary Hemangioblastoma 10 78836 -NCIT:C5295 Brain Stem Intraparenchymal Clear Cell Meningioma 9 78837 -NCIT:C8501 Brain Stem Glioma 9 78838 -NCIT:C5097 Brain Stem Glioblastoma 10 78839 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 11 78840 -NCIT:C9370 Adult Brain Stem Gliosarcoma 11 78841 -NCIT:C5098 Brain Stem Ependymoma 10 78842 -NCIT:C7445 Brain Stem Astrocytoma 10 78843 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 11 78844 -NCIT:C6216 Childhood Brain Stem Astrocytoma 11 78845 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 12 78846 -NCIT:C6954 Adult Brain Stem Astrocytoma 11 78847 -NCIT:C7446 Anaplastic Brain Stem Glioma 10 78848 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 11 78849 -NCIT:C9042 Childhood Brain Stem Glioma 10 78850 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 11 78851 -NCIT:C114760 Childhood Brain Stem Mixed Glioma 11 78852 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 11 78853 -NCIT:C6216 Childhood Brain Stem Astrocytoma 11 78854 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 12 78855 -NCIT:C9190 Recurrent Childhood Brain Stem Glioma 11 78856 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 12 78857 -NCIT:C9091 Adult Brain Stem Glioma 10 78858 -NCIT:C188925 Adult Diffuse Intrinsic Pontine Glioma 11 78859 -NCIT:C6954 Adult Brain Stem Astrocytoma 11 78860 -NCIT:C9370 Adult Brain Stem Gliosarcoma 11 78861 -NCIT:C9371 Adult Brain Stem Mixed Glioma 11 78862 -NCIT:C94764 Diffuse Intrinsic Pontine Glioma 10 78863 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 11 78864 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 11 78865 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 11 78866 -NCIT:C188925 Adult Diffuse Intrinsic Pontine Glioma 11 78867 -NCIT:C8549 Benign Brain Stem Neoplasm 9 78868 -NCIT:C5797 Adult Benign Brain Stem Neoplasm 10 78869 -NCIT:C5967 Adult Brain Stem Neoplasm 8 78870 -NCIT:C5797 Adult Benign Brain Stem Neoplasm 9 78871 -NCIT:C9091 Adult Brain Stem Glioma 9 78872 -NCIT:C188925 Adult Diffuse Intrinsic Pontine Glioma 10 78873 -NCIT:C6954 Adult Brain Stem Astrocytoma 10 78874 -NCIT:C9370 Adult Brain Stem Gliosarcoma 10 78875 -NCIT:C9371 Adult Brain Stem Mixed Glioma 10 78876 -NCIT:C5969 Childhood Brain Stem Neoplasm 8 78877 -NCIT:C9042 Childhood Brain Stem Glioma 9 78878 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 78879 -NCIT:C114760 Childhood Brain Stem Mixed Glioma 10 78880 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 10 78881 -NCIT:C6216 Childhood Brain Stem Astrocytoma 10 78882 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 11 78883 -NCIT:C9190 Recurrent Childhood Brain Stem Glioma 10 78884 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 11 78885 -NCIT:C4965 Benign Infratentorial Neoplasm 7 78886 -NCIT:C4955 Benign Cerebellar Neoplasm 8 78887 -NCIT:C5796 Adult Benign Cerebellar Neoplasm 9 78888 -NCIT:C6809 Cerebellar Pilocytic Astrocytoma 9 78889 -NCIT:C5413 Cerebellopontine Angle Schwannoma 8 78890 -NCIT:C8549 Benign Brain Stem Neoplasm 8 78891 -NCIT:C5797 Adult Benign Brain Stem Neoplasm 9 78892 -NCIT:C4966 Malignant Infratentorial Neoplasm 7 78893 -NCIT:C3569 Malignant Cerebellar Neoplasm 8 78894 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 9 78895 -NCIT:C3222 Medulloblastoma 9 78896 -NCIT:C129436 Large Cell/Anaplastic Medulloblastoma 10 78897 -NCIT:C129439 Medulloblastoma Molecular Subtypes 10 78898 -NCIT:C129440 Medulloblastoma, WNT-Activated 11 78899 -NCIT:C180892 Refractory Medulloblastoma, WNT-Activated 12 78900 -NCIT:C180893 Recurrent Medulloblastoma, WNT-Activated 12 78901 -NCIT:C129441 Medulloblastoma, SHH-Activated 11 78902 -NCIT:C129442 Medulloblastoma, SHH-Activated, TP53-Mutant 12 78903 -NCIT:C129443 Medulloblastoma, SHH-Activated, TP53-Wildtype 12 78904 -NCIT:C186591 ELP1-Associated Medulloblastoma 13 78905 -NCIT:C147109 Recurrent Medulloblastoma, SHH-Activated 12 78906 -NCIT:C147110 Refractory Medulloblastoma, SHH-Activated 12 78907 -NCIT:C189841 Medulloblastoma, SHH-1 12 78908 -NCIT:C189844 Medulloblastoma, SHH-2 12 78909 -NCIT:C189845 Medulloblastoma, SHH-3 12 78910 -NCIT:C189846 Medulloblastoma, SHH-4 12 78911 -NCIT:C129444 Medulloblastoma, Non-WNT/Non-SHH 11 78912 -NCIT:C129445 Medulloblastoma, Non-WNT/Non-SHH, Group 3 12 78913 -NCIT:C129446 Medulloblastoma, Non-WNT/Non-SHH, Group 4 12 78914 -NCIT:C129447 Medulloblastoma, Not Otherwise Specified 10 78915 -NCIT:C142856 Refractory Medulloblastoma 10 78916 -NCIT:C147110 Refractory Medulloblastoma, SHH-Activated 11 78917 -NCIT:C180892 Refractory Medulloblastoma, WNT-Activated 11 78918 -NCIT:C156039 Fourth Ventricle Medulloblastoma 10 78919 -NCIT:C177725 Metastatic Medulloblastoma 10 78920 -NCIT:C5399 Medulloblastoma with Leptomeningeal Spread 11 78921 -NCIT:C27237 Familial Adenomatous Polyposis Associated Medulloblastoma 10 78922 -NCIT:C3706 Medullomyoblastoma 10 78923 -NCIT:C3997 Childhood Medulloblastoma 10 78924 -NCIT:C6774 Recurrent Childhood Medulloblastoma 11 78925 -NCIT:C4011 Adult Medulloblastoma 10 78926 -NCIT:C4956 Desmoplastic/Nodular Medulloblastoma 10 78927 -NCIT:C5401 Cerebellar Vermis Medulloblastoma 10 78928 -NCIT:C5402 Region 17p13 Allelic Loss Associated Medulloblastoma 10 78929 -NCIT:C54039 Classic Medulloblastoma 10 78930 -NCIT:C5405 Nevoid Basal Cell Carcinoma Syndrome Associated Medulloblastoma 10 78931 -NCIT:C5407 Medulloblastoma with Extensive Nodularity 10 78932 -NCIT:C5588 Recurrent Medulloblastoma 10 78933 -NCIT:C147109 Recurrent Medulloblastoma, SHH-Activated 11 78934 -NCIT:C180893 Recurrent Medulloblastoma, WNT-Activated 11 78935 -NCIT:C6774 Recurrent Childhood Medulloblastoma 11 78936 -NCIT:C6904 Large Cell Medulloblastoma 10 78937 -NCIT:C92625 Anaplastic Medulloblastoma 10 78938 -NCIT:C9497 Melanocytic Medulloblastoma 10 78939 -NCIT:C5270 Cerebellar Papillary Meningioma 9 78940 -NCIT:C3570 Malignant Brain Stem Neoplasm 8 78941 -NCIT:C5097 Brain Stem Glioblastoma 9 78942 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 78943 -NCIT:C9370 Adult Brain Stem Gliosarcoma 10 78944 -NCIT:C7446 Anaplastic Brain Stem Glioma 9 78945 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 10 78946 -NCIT:C8550 Metastatic Malignant Neoplasm in the Brain Stem 9 78947 -NCIT:C94764 Diffuse Intrinsic Pontine Glioma 9 78948 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 10 78949 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 10 78950 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 10 78951 -NCIT:C188925 Adult Diffuse Intrinsic Pontine Glioma 10 78952 -NCIT:C5148 Infratentorial Glioblastoma 8 78953 -NCIT:C5097 Brain Stem Glioblastoma 9 78954 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 78955 -NCIT:C9370 Adult Brain Stem Gliosarcoma 10 78956 -NCIT:C5150 Cerebellar Glioblastoma 9 78957 -NCIT:C5436 Cerebellopontine Angle Embryonal Tumor, Not Otherwise Specified 8 78958 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 78959 -NCIT:C5280 Foramen Magnum Meningioma 7 78960 -NCIT:C5281 Anterior Foramen Magnum Meningioma 8 78961 -NCIT:C5282 Posterior Foramen Magnum Meningioma 8 78962 -NCIT:C5414 Cerebellopontine Angle Neoplasm 7 78963 -NCIT:C5300 Cerebellopontine Angle Meningioma 8 78964 -NCIT:C5413 Cerebellopontine Angle Schwannoma 8 78965 -NCIT:C5436 Cerebellopontine Angle Embryonal Tumor, Not Otherwise Specified 8 78966 -NCIT:C5802 Childhood Infratentorial Neoplasm 7 78967 -NCIT:C5969 Childhood Brain Stem Neoplasm 8 78968 -NCIT:C9042 Childhood Brain Stem Glioma 9 78969 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 78970 -NCIT:C114760 Childhood Brain Stem Mixed Glioma 10 78971 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 10 78972 -NCIT:C6216 Childhood Brain Stem Astrocytoma 10 78973 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 11 78974 -NCIT:C9190 Recurrent Childhood Brain Stem Glioma 10 78975 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 11 78976 -NCIT:C5970 Childhood Cerebellar Neoplasm 8 78977 -NCIT:C3997 Childhood Medulloblastoma 9 78978 -NCIT:C6774 Recurrent Childhood Medulloblastoma 10 78979 -NCIT:C6286 Childhood Cerebellar Astrocytoma 9 78980 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 10 78981 -NCIT:C8389 Recurrent Childhood Cerebellar Astrocytoma 10 78982 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 78983 -NCIT:C9041 Childhood Infratentorial Ependymoma 8 78984 -NCIT:C3397 Supratentorial Neoplasm 6 78985 -NCIT:C156041 Supratentorial Pleomorphic Xanthoastrocytoma 7 78986 -NCIT:C185935 Diffuse Glioneuronal Tumor with Oligodendroglioma-Like Features and Nuclear Clusters 7 78987 -NCIT:C186343 Supratentorial Ependymoma 7 78988 -NCIT:C186348 Supratentorial Ependymoma, Not Elsewhere Classified 8 78989 -NCIT:C186349 Supratentorial Ependymoma, Not Otherwise Specified 8 78990 -NCIT:C9043 Childhood Supratentorial Ependymoma, Not Otherwise Specified 9 78991 -NCIT:C6268 Childhood Cerebral Ependymoma, Not Otherwise Specified 10 78992 -NCIT:C3328 Pineal Region Neoplasm 7 78993 -NCIT:C178507 Desmoplastic Myxoid Tumor of the Pineal Region, SMARCB1-Mutant 8 78994 -NCIT:C3573 Malignant Pineal Region Neoplasm 8 78995 -NCIT:C6767 Malignant Pineal Region Germ Cell Tumor 9 78996 -NCIT:C6752 Pineal Region Yolk Sac Tumor 10 78997 -NCIT:C6759 Pineal Region Choriocarcinoma 10 78998 -NCIT:C8712 Pineal Region Germinoma 10 78999 -NCIT:C9344 Pineoblastoma 9 79000 -NCIT:C114812 Childhood Pineoblastoma 10 79001 -NCIT:C115374 Recurrent Childhood Pineoblastoma 11 79002 -NCIT:C8292 Adult Pineoblastoma 10 79003 -NCIT:C3631 Benign Pineal Region Neoplasm 8 79004 -NCIT:C6754 Pineal Region Mature Teratoma 9 79005 -NCIT:C6966 Pineocytoma 9 79006 -NCIT:C8291 Adult Pineocytoma 10 79007 -NCIT:C4659 Pineal Region Germ Cell Tumor 8 79008 -NCIT:C6753 Pineal Region Teratoma 9 79009 -NCIT:C6754 Pineal Region Mature Teratoma 10 79010 -NCIT:C6755 Pineal Region Immature Teratoma 10 79011 -NCIT:C6767 Malignant Pineal Region Germ Cell Tumor 9 79012 -NCIT:C6752 Pineal Region Yolk Sac Tumor 10 79013 -NCIT:C6759 Pineal Region Choriocarcinoma 10 79014 -NCIT:C8712 Pineal Region Germinoma 10 79015 -NCIT:C6756 Pineal Region Meningioma 8 79016 -NCIT:C6965 Pineal Parenchymal Cell Neoplasm 8 79017 -NCIT:C115196 Childhood Pineal Parenchymal Cell Neoplasm 9 79018 -NCIT:C114812 Childhood Pineoblastoma 10 79019 -NCIT:C115374 Recurrent Childhood Pineoblastoma 11 79020 -NCIT:C124137 Childhood Pineal Parenchymal Tumor of Intermediate Differentiation 10 79021 -NCIT:C179227 Recurrent Pineal Parenchymal Cell Neoplasm 9 79022 -NCIT:C115374 Recurrent Childhood Pineoblastoma 10 79023 -NCIT:C6966 Pineocytoma 9 79024 -NCIT:C8291 Adult Pineocytoma 10 79025 -NCIT:C6967 Pineal Parenchymal Tumor of Intermediate Differentiation 9 79026 -NCIT:C124137 Childhood Pineal Parenchymal Tumor of Intermediate Differentiation 10 79027 -NCIT:C8273 Adult Pineal Parenchymal Cell Neoplasm 9 79028 -NCIT:C8291 Adult Pineocytoma 10 79029 -NCIT:C8292 Adult Pineoblastoma 10 79030 -NCIT:C9344 Pineoblastoma 9 79031 -NCIT:C114812 Childhood Pineoblastoma 10 79032 -NCIT:C115374 Recurrent Childhood Pineoblastoma 11 79033 -NCIT:C8292 Adult Pineoblastoma 10 79034 -NCIT:C8274 Pineal Gland Astrocytoma 8 79035 -NCIT:C115327 Adult Pineal Gland Astrocytoma 9 79036 -NCIT:C92624 Papillary Tumor of the Pineal Region 8 79037 -NCIT:C4874 Cerebral Neoplasm 7 79038 -NCIT:C129427 Multinodular and Vacuolated Neuronal Tumor 8 79039 -NCIT:C180398 Recurrent Multinodular and Vacuolated Neuronal Tumor 9 79040 -NCIT:C188933 Childhood Multinodular and Vacuolated Neuronal Tumor 9 79041 -NCIT:C188934 Adult Multinodular and Vacuolated Neuronal Tumor 9 79042 -NCIT:C150573 Localized Cerebral Neoplasm 8 79043 -NCIT:C179882 Basal Ganglia Neoplasm 8 79044 -NCIT:C179884 Corpus Callosum Neoplasm 8 79045 -NCIT:C4577 Malignant Cerebral Neoplasm 8 79046 -NCIT:C185371 Diffuse Hemispheric Glioma, H3 G34-Mutant 9 79047 -NCIT:C188926 Childhood Diffuse Hemispheric Glioma, H3 G34-Mutant 10 79048 -NCIT:C188927 Adult Diffuse Hemispheric Glioma, H3 G34-Mutant 10 79049 -NCIT:C185471 Infant-Type Hemispheric Glioma 9 79050 -NCIT:C185472 Infant-Type Hemispheric Glioma, NTRK-Altered 10 79051 -NCIT:C185473 Infant-Type Hemispheric Glioma, ROS1-Altered 10 79052 -NCIT:C185474 Infant-Type Hemispheric Glioma, ALK-Altered 10 79053 -NCIT:C185475 Infant-Type Hemispheric Glioma, MET-Altered 10 79054 -NCIT:C4826 Central Nervous System Neuroblastoma 9 79055 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 10 79056 -NCIT:C186547 Central Nervous System Neuroblastoma, FOXR2-Activated 10 79057 -NCIT:C4970 Cerebral Embryonal Tumor, Not Otherwise Specified 9 79058 -NCIT:C5123 Hemispheric Anaplastic Astrocytoma 9 79059 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 10 79060 -NCIT:C156035 Frontal Lobe Anaplastic Astrocytoma 10 79061 -NCIT:C156036 Temporal Lobe Anaplastic Astrocytoma 10 79062 -NCIT:C171036 Parietal Lobe Anaplastic Astrocytoma 10 79063 -NCIT:C5151 Cerebral Glioblastoma 9 79064 -NCIT:C171013 Supratentorial Gliosarcoma 10 79065 -NCIT:C7611 Cerebral Lymphoma 9 79066 -NCIT:C5054 Cerebral Lymphoma in Immunocompetent Host 10 79067 -NCIT:C5055 Cerebral Hodgkin Lymphoma 10 79068 -NCIT:C7609 Cerebral Non-Hodgkin Lymphoma 10 79069 -NCIT:C92629 Central Nervous System Ganglioneuroblastoma 9 79070 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 10 79071 -NCIT:C4807 Cerebral Meningioma 8 79072 -NCIT:C4959 Cerebral Convexity Meningioma 9 79073 -NCIT:C5292 Frontal Convexity Meningioma 10 79074 -NCIT:C4960 Parasagittal Meningioma 9 79075 -NCIT:C5269 Intracerebral Cystic Meningioma 9 79076 -NCIT:C5302 Lateral Ventricle Meningioma 9 79077 -NCIT:C5567 Temporal Lobe Neoplasm 8 79078 -NCIT:C5572 Frontal Lobe Neoplasm 8 79079 -NCIT:C5573 Parietal Lobe Neoplasm 8 79080 -NCIT:C5574 Occipital Lobe Neoplasm 8 79081 -NCIT:C4963 Benign Supratentorial Neoplasm 7 79082 -NCIT:C3631 Benign Pineal Region Neoplasm 8 79083 -NCIT:C6754 Pineal Region Mature Teratoma 9 79084 -NCIT:C6966 Pineocytoma 9 79085 -NCIT:C8291 Adult Pineocytoma 10 79086 -NCIT:C4782 Benign Pituitary Gland Neoplasm 8 79087 -NCIT:C5127 Benign Diencephalic Neoplasm 8 79088 -NCIT:C6222 Benign Thalamic Neoplasm 9 79089 -NCIT:C5799 Childhood Benign Supratentorial Neoplasm 8 79090 -NCIT:C5800 Childhood Choroid Plexus Papilloma 9 79091 -NCIT:C6219 Childhood Benign Cerebral Neoplasm 9 79092 -NCIT:C8548 Benign Cerebral Neoplasm 8 79093 -NCIT:C5433 Cerebral Hemangioma 9 79094 -NCIT:C6218 Adult Benign Cerebral Neoplasm 9 79095 -NCIT:C6219 Childhood Benign Cerebral Neoplasm 9 79096 -NCIT:C6220 Cerebral Hemisphere Lipoma 9 79097 -NCIT:C5438 Corpus Callosum Lipoma 10 79098 -NCIT:C4964 Malignant Supratentorial Neoplasm 7 79099 -NCIT:C124292 Childhood Choroid Plexus Carcinoma 8 79100 -NCIT:C186350 Supratentorial Ependymoma ZFTA Fusion-Positive 8 79101 -NCIT:C129351 Supratentorial Ependymoma, ZFTA-RELA Fusion-Positive 9 79102 -NCIT:C188935 Childhood Supratentorial Ependymoma ZFTA Fusion-Positive 9 79103 -NCIT:C188938 Adult Supratentorial Ependymoma ZFTA Fusion-Positive 9 79104 -NCIT:C3573 Malignant Pineal Region Neoplasm 8 79105 -NCIT:C6767 Malignant Pineal Region Germ Cell Tumor 9 79106 -NCIT:C6752 Pineal Region Yolk Sac Tumor 10 79107 -NCIT:C6759 Pineal Region Choriocarcinoma 10 79108 -NCIT:C8712 Pineal Region Germinoma 10 79109 -NCIT:C9344 Pineoblastoma 9 79110 -NCIT:C114812 Childhood Pineoblastoma 10 79111 -NCIT:C115374 Recurrent Childhood Pineoblastoma 11 79112 -NCIT:C8292 Adult Pineoblastoma 10 79113 -NCIT:C4577 Malignant Cerebral Neoplasm 8 79114 -NCIT:C185371 Diffuse Hemispheric Glioma, H3 G34-Mutant 9 79115 -NCIT:C188926 Childhood Diffuse Hemispheric Glioma, H3 G34-Mutant 10 79116 -NCIT:C188927 Adult Diffuse Hemispheric Glioma, H3 G34-Mutant 10 79117 -NCIT:C185471 Infant-Type Hemispheric Glioma 9 79118 -NCIT:C185472 Infant-Type Hemispheric Glioma, NTRK-Altered 10 79119 -NCIT:C185473 Infant-Type Hemispheric Glioma, ROS1-Altered 10 79120 -NCIT:C185474 Infant-Type Hemispheric Glioma, ALK-Altered 10 79121 -NCIT:C185475 Infant-Type Hemispheric Glioma, MET-Altered 10 79122 -NCIT:C4826 Central Nervous System Neuroblastoma 9 79123 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 10 79124 -NCIT:C186547 Central Nervous System Neuroblastoma, FOXR2-Activated 10 79125 -NCIT:C4970 Cerebral Embryonal Tumor, Not Otherwise Specified 9 79126 -NCIT:C5123 Hemispheric Anaplastic Astrocytoma 9 79127 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 10 79128 -NCIT:C156035 Frontal Lobe Anaplastic Astrocytoma 10 79129 -NCIT:C156036 Temporal Lobe Anaplastic Astrocytoma 10 79130 -NCIT:C171036 Parietal Lobe Anaplastic Astrocytoma 10 79131 -NCIT:C5151 Cerebral Glioblastoma 9 79132 -NCIT:C171013 Supratentorial Gliosarcoma 10 79133 -NCIT:C7611 Cerebral Lymphoma 9 79134 -NCIT:C5054 Cerebral Lymphoma in Immunocompetent Host 10 79135 -NCIT:C5055 Cerebral Hodgkin Lymphoma 10 79136 -NCIT:C7609 Cerebral Non-Hodgkin Lymphoma 10 79137 -NCIT:C92629 Central Nervous System Ganglioneuroblastoma 9 79138 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 10 79139 -NCIT:C5126 Malignant Diencephalic Neoplasm 8 79140 -NCIT:C175539 Malignant Hypothalamic Neoplasm 9 79141 -NCIT:C4576 Malignant Thalamic Neoplasm 9 79142 -NCIT:C5124 Anaplastic Diencephalic Astrocytoma 9 79143 -NCIT:C5129 Diencephalic Glioblastoma 9 79144 -NCIT:C5149 Supratentorial Glioblastoma 8 79145 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 9 79146 -NCIT:C5129 Diencephalic Glioblastoma 9 79147 -NCIT:C5151 Cerebral Glioblastoma 9 79148 -NCIT:C171013 Supratentorial Gliosarcoma 10 79149 -NCIT:C5416 Secondary Supratentorial Anaplastic Astrocytoma 8 79150 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 79151 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 9 79152 -NCIT:C6968 Supratentorial Embryonal Tumor, Not Otherwise Specified 8 79153 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 9 79154 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 10 79155 -NCIT:C4970 Cerebral Embryonal Tumor, Not Otherwise Specified 9 79156 -NCIT:C68703 Adult Supratentorial Embryonal Tumor, Not Otherwise Specified 9 79157 -NCIT:C5125 Diencephalic Neoplasm 7 79158 -NCIT:C3129 Hypothalamic Neoplasm 8 79159 -NCIT:C175539 Malignant Hypothalamic Neoplasm 9 79160 -NCIT:C45918 Hypothalamic Gangliocytoma 9 79161 -NCIT:C5126 Malignant Diencephalic Neoplasm 8 79162 -NCIT:C175539 Malignant Hypothalamic Neoplasm 9 79163 -NCIT:C4576 Malignant Thalamic Neoplasm 9 79164 -NCIT:C5124 Anaplastic Diencephalic Astrocytoma 9 79165 -NCIT:C5129 Diencephalic Glioblastoma 9 79166 -NCIT:C5127 Benign Diencephalic Neoplasm 8 79167 -NCIT:C6222 Benign Thalamic Neoplasm 9 79168 -NCIT:C5128 Diencephalic Astrocytoma 8 79169 -NCIT:C5124 Anaplastic Diencephalic Astrocytoma 9 79170 -NCIT:C6221 Thalamic Neoplasm 8 79171 -NCIT:C173846 Bilateral Thalamic Glioma 9 79172 -NCIT:C4576 Malignant Thalamic Neoplasm 9 79173 -NCIT:C6222 Benign Thalamic Neoplasm 9 79174 -NCIT:C5960 Childhood Supratentorial Neoplasm 7 79175 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 79176 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 9 79177 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 8 79178 -NCIT:C115196 Childhood Pineal Parenchymal Cell Neoplasm 8 79179 -NCIT:C114812 Childhood Pineoblastoma 9 79180 -NCIT:C115374 Recurrent Childhood Pineoblastoma 10 79181 -NCIT:C124137 Childhood Pineal Parenchymal Tumor of Intermediate Differentiation 9 79182 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 8 79183 -NCIT:C185471 Infant-Type Hemispheric Glioma 8 79184 -NCIT:C185472 Infant-Type Hemispheric Glioma, NTRK-Altered 9 79185 -NCIT:C185473 Infant-Type Hemispheric Glioma, ROS1-Altered 9 79186 -NCIT:C185474 Infant-Type Hemispheric Glioma, ALK-Altered 9 79187 -NCIT:C185475 Infant-Type Hemispheric Glioma, MET-Altered 9 79188 -NCIT:C186351 Supratentorial Ependymoma YAP1 Fusion-Positive 8 79189 -NCIT:C186355 Supratentorial Ependymoma, YAP1-MAMLD1 Fusion-Positive 9 79190 -NCIT:C188926 Childhood Diffuse Hemispheric Glioma, H3 G34-Mutant 8 79191 -NCIT:C188933 Childhood Multinodular and Vacuolated Neuronal Tumor 8 79192 -NCIT:C188935 Childhood Supratentorial Ependymoma ZFTA Fusion-Positive 8 79193 -NCIT:C42080 Childhood Choroid Plexus Neoplasm 8 79194 -NCIT:C124291 Childhood Atypical Choroid Plexus Papilloma 9 79195 -NCIT:C124292 Childhood Choroid Plexus Carcinoma 9 79196 -NCIT:C5800 Childhood Choroid Plexus Papilloma 9 79197 -NCIT:C4347 Childhood Cerebral Astrocytoma 8 79198 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 9 79199 -NCIT:C8387 Childhood Cerebral Diffuse Astrocytoma 9 79200 -NCIT:C9191 Recurrent Childhood Cerebral Astrocytoma 9 79201 -NCIT:C5799 Childhood Benign Supratentorial Neoplasm 8 79202 -NCIT:C5800 Childhood Choroid Plexus Papilloma 9 79203 -NCIT:C6219 Childhood Benign Cerebral Neoplasm 9 79204 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 79205 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 9 79206 -NCIT:C9043 Childhood Supratentorial Ependymoma, Not Otherwise Specified 8 79207 -NCIT:C6268 Childhood Cerebral Ependymoma, Not Otherwise Specified 9 79208 -NCIT:C67559 Rosette-Forming Glioneuronal Tumor of the Fourth Ventricle 7 79209 -NCIT:C7048 Supratentorial Meningioma 7 79210 -NCIT:C4807 Cerebral Meningioma 8 79211 -NCIT:C4959 Cerebral Convexity Meningioma 9 79212 -NCIT:C5292 Frontal Convexity Meningioma 10 79213 -NCIT:C4960 Parasagittal Meningioma 9 79214 -NCIT:C5269 Intracerebral Cystic Meningioma 9 79215 -NCIT:C5302 Lateral Ventricle Meningioma 9 79216 -NCIT:C5286 Anterior Cranial Fossa Meningioma 8 79217 -NCIT:C5267 Falx Cerebri Meningioma 9 79218 -NCIT:C5268 Cavernous Sinus Meningioma 9 79219 -NCIT:C6771 Olfactory Groove Meningioma 9 79220 -NCIT:C5586 Middle Cranial Fossa Meningioma 8 79221 -NCIT:C5307 Internal Auditory Canal Meningioma 9 79222 -NCIT:C6756 Pineal Region Meningioma 8 79223 -NCIT:C6779 Gasserian Meningioma 8 79224 -NCIT:C3568 Malignant Brain Neoplasm 6 79225 -NCIT:C153837 Recurrent Malignant Brain Neoplasm 7 79226 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 79227 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 79228 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 8 79229 -NCIT:C179221 Recurrent Gliomatosis Cerebri 8 79230 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 9 79231 -NCIT:C179226 Recurrent Malignant Choroid Plexus Neoplasm 8 79232 -NCIT:C191198 Recurrent Brain Glioblastoma 8 79233 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 9 79234 -NCIT:C5588 Recurrent Medulloblastoma 8 79235 -NCIT:C147109 Recurrent Medulloblastoma, SHH-Activated 9 79236 -NCIT:C180893 Recurrent Medulloblastoma, WNT-Activated 9 79237 -NCIT:C6774 Recurrent Childhood Medulloblastoma 9 79238 -NCIT:C153845 Refractory Malignant Brain Neoplasm 7 79239 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 8 79240 -NCIT:C142856 Refractory Medulloblastoma 8 79241 -NCIT:C147110 Refractory Medulloblastoma, SHH-Activated 9 79242 -NCIT:C180892 Refractory Medulloblastoma, WNT-Activated 9 79243 -NCIT:C162993 Malignant Brain Glioma 7 79244 -NCIT:C156120 Frontal Lobe Anaplastic Oligodendroglioma 8 79245 -NCIT:C185371 Diffuse Hemispheric Glioma, H3 G34-Mutant 8 79246 -NCIT:C188926 Childhood Diffuse Hemispheric Glioma, H3 G34-Mutant 9 79247 -NCIT:C188927 Adult Diffuse Hemispheric Glioma, H3 G34-Mutant 9 79248 -NCIT:C185467 Diffuse Pediatric-Type High Grade Glioma, H3-Wildtype and IDH-Wildtype 8 79249 -NCIT:C185468 Diffuse Pediatric-Type High Grade Glioma RTK2 9 79250 -NCIT:C185469 Diffuse Pediatric-Type High Grade Glioma RTK1 9 79251 -NCIT:C185470 Diffuse Pediatric-Type High Grade Glioma MYCN 9 79252 -NCIT:C185471 Infant-Type Hemispheric Glioma 8 79253 -NCIT:C185472 Infant-Type Hemispheric Glioma, NTRK-Altered 9 79254 -NCIT:C185473 Infant-Type Hemispheric Glioma, ROS1-Altered 9 79255 -NCIT:C185474 Infant-Type Hemispheric Glioma, ALK-Altered 9 79256 -NCIT:C185475 Infant-Type Hemispheric Glioma, MET-Altered 9 79257 -NCIT:C4642 Brain Glioblastoma 8 79258 -NCIT:C147901 Childhood Brain Glioblastoma 9 79259 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 79260 -NCIT:C191198 Recurrent Brain Glioblastoma 9 79261 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 10 79262 -NCIT:C5148 Infratentorial Glioblastoma 9 79263 -NCIT:C5097 Brain Stem Glioblastoma 10 79264 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 11 79265 -NCIT:C9370 Adult Brain Stem Gliosarcoma 11 79266 -NCIT:C5150 Cerebellar Glioblastoma 10 79267 -NCIT:C5149 Supratentorial Glioblastoma 9 79268 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 10 79269 -NCIT:C5129 Diencephalic Glioblastoma 10 79270 -NCIT:C5151 Cerebral Glioblastoma 10 79271 -NCIT:C171013 Supratentorial Gliosarcoma 11 79272 -NCIT:C9375 Adult Brain Glioblastoma 9 79273 -NCIT:C9370 Adult Brain Stem Gliosarcoma 10 79274 -NCIT:C5123 Hemispheric Anaplastic Astrocytoma 8 79275 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 9 79276 -NCIT:C156035 Frontal Lobe Anaplastic Astrocytoma 9 79277 -NCIT:C156036 Temporal Lobe Anaplastic Astrocytoma 9 79278 -NCIT:C171036 Parietal Lobe Anaplastic Astrocytoma 9 79279 -NCIT:C5124 Anaplastic Diencephalic Astrocytoma 8 79280 -NCIT:C5416 Secondary Supratentorial Anaplastic Astrocytoma 8 79281 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 8 79282 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 9 79283 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 9 79284 -NCIT:C7446 Anaplastic Brain Stem Glioma 8 79285 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 9 79286 -NCIT:C94764 Diffuse Intrinsic Pontine Glioma 8 79287 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 9 79288 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 9 79289 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 9 79290 -NCIT:C188925 Adult Diffuse Intrinsic Pontine Glioma 9 79291 -NCIT:C175550 Metastatic Primary Malignant Brain Neoplasm 7 79292 -NCIT:C175549 Advanced Primary Malignant Brain Neoplasm 8 79293 -NCIT:C187213 Advanced Childhood Malignant Brain Neoplasm 9 79294 -NCIT:C177725 Metastatic Medulloblastoma 8 79295 -NCIT:C5399 Medulloblastoma with Leptomeningeal Spread 9 79296 -NCIT:C180874 Locally Advanced Primary Malignant Brain Neoplasm 8 79297 -NCIT:C187212 Metastatic Childhood Malignant Brain Neoplasm 8 79298 -NCIT:C187213 Advanced Childhood Malignant Brain Neoplasm 9 79299 -NCIT:C187207 Childhood Malignant Brain Neoplasm 7 79300 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 79301 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 9 79302 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 8 79303 -NCIT:C114812 Childhood Pineoblastoma 8 79304 -NCIT:C115374 Recurrent Childhood Pineoblastoma 9 79305 -NCIT:C114969 Childhood Gliomatosis Cerebri 8 79306 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 9 79307 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 8 79308 -NCIT:C124292 Childhood Choroid Plexus Carcinoma 8 79309 -NCIT:C147901 Childhood Brain Glioblastoma 8 79310 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 9 79311 -NCIT:C185471 Infant-Type Hemispheric Glioma 8 79312 -NCIT:C185472 Infant-Type Hemispheric Glioma, NTRK-Altered 9 79313 -NCIT:C185473 Infant-Type Hemispheric Glioma, ROS1-Altered 9 79314 -NCIT:C185474 Infant-Type Hemispheric Glioma, ALK-Altered 9 79315 -NCIT:C185475 Infant-Type Hemispheric Glioma, MET-Altered 9 79316 -NCIT:C187211 Metastatic Childhood Malignant Neoplasm in the Brain 8 79317 -NCIT:C187212 Metastatic Childhood Malignant Brain Neoplasm 8 79318 -NCIT:C187213 Advanced Childhood Malignant Brain Neoplasm 9 79319 -NCIT:C188922 Childhood Diffuse Midline Glioma, H3 K27-Altered 8 79320 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 8 79321 -NCIT:C188926 Childhood Diffuse Hemispheric Glioma, H3 G34-Mutant 8 79322 -NCIT:C188935 Childhood Supratentorial Ependymoma ZFTA Fusion-Positive 8 79323 -NCIT:C3997 Childhood Medulloblastoma 8 79324 -NCIT:C6774 Recurrent Childhood Medulloblastoma 9 79325 -NCIT:C6207 Childhood Brain Germinoma 8 79326 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 8 79327 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 9 79328 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 9 79329 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 79330 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 9 79331 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 79332 -NCIT:C3813 Metastatic Malignant Neoplasm in the Brain 7 79333 -NCIT:C179206 Melanoma Metastatic in the Brain 8 79334 -NCIT:C187211 Metastatic Childhood Malignant Neoplasm in the Brain 8 79335 -NCIT:C36301 Breast Carcinoma Metastatic in the Brain 8 79336 -NCIT:C36304 Lung Carcinoma Metastatic in the Brain 8 79337 -NCIT:C5057 Secondary Cerebral Hodgkin Lymphoma 8 79338 -NCIT:C5816 Metastatic Adult Malignant Neoplasm in the Brain 8 79339 -NCIT:C8550 Metastatic Malignant Neoplasm in the Brain Stem 8 79340 -NCIT:C4318 Gliomatosis Cerebri 7 79341 -NCIT:C114969 Childhood Gliomatosis Cerebri 8 79342 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 9 79343 -NCIT:C179221 Recurrent Gliomatosis Cerebri 8 79344 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 9 79345 -NCIT:C41842 Gliomatosis Cerebri Type I 8 79346 -NCIT:C41843 Gliomatosis Cerebri Type II 8 79347 -NCIT:C4533 Malignant Choroid Plexus Neoplasm 7 79348 -NCIT:C179226 Recurrent Malignant Choroid Plexus Neoplasm 8 79349 -NCIT:C4715 Choroid Plexus Carcinoma 8 79350 -NCIT:C124292 Childhood Choroid Plexus Carcinoma 9 79351 -NCIT:C4954 Localized Malignant Brain Neoplasm 7 79352 -NCIT:C4964 Malignant Supratentorial Neoplasm 7 79353 -NCIT:C124292 Childhood Choroid Plexus Carcinoma 8 79354 -NCIT:C186350 Supratentorial Ependymoma ZFTA Fusion-Positive 8 79355 -NCIT:C129351 Supratentorial Ependymoma, ZFTA-RELA Fusion-Positive 9 79356 -NCIT:C188935 Childhood Supratentorial Ependymoma ZFTA Fusion-Positive 9 79357 -NCIT:C188938 Adult Supratentorial Ependymoma ZFTA Fusion-Positive 9 79358 -NCIT:C3573 Malignant Pineal Region Neoplasm 8 79359 -NCIT:C6767 Malignant Pineal Region Germ Cell Tumor 9 79360 -NCIT:C6752 Pineal Region Yolk Sac Tumor 10 79361 -NCIT:C6759 Pineal Region Choriocarcinoma 10 79362 -NCIT:C8712 Pineal Region Germinoma 10 79363 -NCIT:C9344 Pineoblastoma 9 79364 -NCIT:C114812 Childhood Pineoblastoma 10 79365 -NCIT:C115374 Recurrent Childhood Pineoblastoma 11 79366 -NCIT:C8292 Adult Pineoblastoma 10 79367 -NCIT:C4577 Malignant Cerebral Neoplasm 8 79368 -NCIT:C185371 Diffuse Hemispheric Glioma, H3 G34-Mutant 9 79369 -NCIT:C188926 Childhood Diffuse Hemispheric Glioma, H3 G34-Mutant 10 79370 -NCIT:C188927 Adult Diffuse Hemispheric Glioma, H3 G34-Mutant 10 79371 -NCIT:C185471 Infant-Type Hemispheric Glioma 9 79372 -NCIT:C185472 Infant-Type Hemispheric Glioma, NTRK-Altered 10 79373 -NCIT:C185473 Infant-Type Hemispheric Glioma, ROS1-Altered 10 79374 -NCIT:C185474 Infant-Type Hemispheric Glioma, ALK-Altered 10 79375 -NCIT:C185475 Infant-Type Hemispheric Glioma, MET-Altered 10 79376 -NCIT:C4826 Central Nervous System Neuroblastoma 9 79377 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 10 79378 -NCIT:C186547 Central Nervous System Neuroblastoma, FOXR2-Activated 10 79379 -NCIT:C4970 Cerebral Embryonal Tumor, Not Otherwise Specified 9 79380 -NCIT:C5123 Hemispheric Anaplastic Astrocytoma 9 79381 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 10 79382 -NCIT:C156035 Frontal Lobe Anaplastic Astrocytoma 10 79383 -NCIT:C156036 Temporal Lobe Anaplastic Astrocytoma 10 79384 -NCIT:C171036 Parietal Lobe Anaplastic Astrocytoma 10 79385 -NCIT:C5151 Cerebral Glioblastoma 9 79386 -NCIT:C171013 Supratentorial Gliosarcoma 10 79387 -NCIT:C7611 Cerebral Lymphoma 9 79388 -NCIT:C5054 Cerebral Lymphoma in Immunocompetent Host 10 79389 -NCIT:C5055 Cerebral Hodgkin Lymphoma 10 79390 -NCIT:C7609 Cerebral Non-Hodgkin Lymphoma 10 79391 -NCIT:C92629 Central Nervous System Ganglioneuroblastoma 9 79392 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 10 79393 -NCIT:C5126 Malignant Diencephalic Neoplasm 8 79394 -NCIT:C175539 Malignant Hypothalamic Neoplasm 9 79395 -NCIT:C4576 Malignant Thalamic Neoplasm 9 79396 -NCIT:C5124 Anaplastic Diencephalic Astrocytoma 9 79397 -NCIT:C5129 Diencephalic Glioblastoma 9 79398 -NCIT:C5149 Supratentorial Glioblastoma 8 79399 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 9 79400 -NCIT:C5129 Diencephalic Glioblastoma 9 79401 -NCIT:C5151 Cerebral Glioblastoma 9 79402 -NCIT:C171013 Supratentorial Gliosarcoma 10 79403 -NCIT:C5416 Secondary Supratentorial Anaplastic Astrocytoma 8 79404 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 79405 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 9 79406 -NCIT:C6968 Supratentorial Embryonal Tumor, Not Otherwise Specified 8 79407 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 9 79408 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 10 79409 -NCIT:C4970 Cerebral Embryonal Tumor, Not Otherwise Specified 9 79410 -NCIT:C68703 Adult Supratentorial Embryonal Tumor, Not Otherwise Specified 9 79411 -NCIT:C4966 Malignant Infratentorial Neoplasm 7 79412 -NCIT:C3569 Malignant Cerebellar Neoplasm 8 79413 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 9 79414 -NCIT:C3222 Medulloblastoma 9 79415 -NCIT:C129436 Large Cell/Anaplastic Medulloblastoma 10 79416 -NCIT:C129439 Medulloblastoma Molecular Subtypes 10 79417 -NCIT:C129440 Medulloblastoma, WNT-Activated 11 79418 -NCIT:C180892 Refractory Medulloblastoma, WNT-Activated 12 79419 -NCIT:C180893 Recurrent Medulloblastoma, WNT-Activated 12 79420 -NCIT:C129441 Medulloblastoma, SHH-Activated 11 79421 -NCIT:C129442 Medulloblastoma, SHH-Activated, TP53-Mutant 12 79422 -NCIT:C129443 Medulloblastoma, SHH-Activated, TP53-Wildtype 12 79423 -NCIT:C186591 ELP1-Associated Medulloblastoma 13 79424 -NCIT:C147109 Recurrent Medulloblastoma, SHH-Activated 12 79425 -NCIT:C147110 Refractory Medulloblastoma, SHH-Activated 12 79426 -NCIT:C189841 Medulloblastoma, SHH-1 12 79427 -NCIT:C189844 Medulloblastoma, SHH-2 12 79428 -NCIT:C189845 Medulloblastoma, SHH-3 12 79429 -NCIT:C189846 Medulloblastoma, SHH-4 12 79430 -NCIT:C129444 Medulloblastoma, Non-WNT/Non-SHH 11 79431 -NCIT:C129445 Medulloblastoma, Non-WNT/Non-SHH, Group 3 12 79432 -NCIT:C129446 Medulloblastoma, Non-WNT/Non-SHH, Group 4 12 79433 -NCIT:C129447 Medulloblastoma, Not Otherwise Specified 10 79434 -NCIT:C142856 Refractory Medulloblastoma 10 79435 -NCIT:C147110 Refractory Medulloblastoma, SHH-Activated 11 79436 -NCIT:C180892 Refractory Medulloblastoma, WNT-Activated 11 79437 -NCIT:C156039 Fourth Ventricle Medulloblastoma 10 79438 -NCIT:C177725 Metastatic Medulloblastoma 10 79439 -NCIT:C5399 Medulloblastoma with Leptomeningeal Spread 11 79440 -NCIT:C27237 Familial Adenomatous Polyposis Associated Medulloblastoma 10 79441 -NCIT:C3706 Medullomyoblastoma 10 79442 -NCIT:C3997 Childhood Medulloblastoma 10 79443 -NCIT:C6774 Recurrent Childhood Medulloblastoma 11 79444 -NCIT:C4011 Adult Medulloblastoma 10 79445 -NCIT:C4956 Desmoplastic/Nodular Medulloblastoma 10 79446 -NCIT:C5401 Cerebellar Vermis Medulloblastoma 10 79447 -NCIT:C5402 Region 17p13 Allelic Loss Associated Medulloblastoma 10 79448 -NCIT:C54039 Classic Medulloblastoma 10 79449 -NCIT:C5405 Nevoid Basal Cell Carcinoma Syndrome Associated Medulloblastoma 10 79450 -NCIT:C5407 Medulloblastoma with Extensive Nodularity 10 79451 -NCIT:C5588 Recurrent Medulloblastoma 10 79452 -NCIT:C147109 Recurrent Medulloblastoma, SHH-Activated 11 79453 -NCIT:C180893 Recurrent Medulloblastoma, WNT-Activated 11 79454 -NCIT:C6774 Recurrent Childhood Medulloblastoma 11 79455 -NCIT:C6904 Large Cell Medulloblastoma 10 79456 -NCIT:C92625 Anaplastic Medulloblastoma 10 79457 -NCIT:C9497 Melanocytic Medulloblastoma 10 79458 -NCIT:C5270 Cerebellar Papillary Meningioma 9 79459 -NCIT:C3570 Malignant Brain Stem Neoplasm 8 79460 -NCIT:C5097 Brain Stem Glioblastoma 9 79461 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 79462 -NCIT:C9370 Adult Brain Stem Gliosarcoma 10 79463 -NCIT:C7446 Anaplastic Brain Stem Glioma 9 79464 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 10 79465 -NCIT:C8550 Metastatic Malignant Neoplasm in the Brain Stem 9 79466 -NCIT:C94764 Diffuse Intrinsic Pontine Glioma 9 79467 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 10 79468 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 10 79469 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 10 79470 -NCIT:C188925 Adult Diffuse Intrinsic Pontine Glioma 10 79471 -NCIT:C5148 Infratentorial Glioblastoma 8 79472 -NCIT:C5097 Brain Stem Glioblastoma 9 79473 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 79474 -NCIT:C9370 Adult Brain Stem Gliosarcoma 10 79475 -NCIT:C5150 Cerebellar Glioblastoma 9 79476 -NCIT:C5436 Cerebellopontine Angle Embryonal Tumor, Not Otherwise Specified 8 79477 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 79478 -NCIT:C5115 Adult Malignant Brain Neoplasm 7 79479 -NCIT:C188923 Adult Diffuse Midline Glioma, H3 K27-Altered 8 79480 -NCIT:C188925 Adult Diffuse Intrinsic Pontine Glioma 8 79481 -NCIT:C188927 Adult Diffuse Hemispheric Glioma, H3 G34-Mutant 8 79482 -NCIT:C188938 Adult Supratentorial Ependymoma ZFTA Fusion-Positive 8 79483 -NCIT:C4011 Adult Medulloblastoma 8 79484 -NCIT:C5816 Metastatic Adult Malignant Neoplasm in the Brain 8 79485 -NCIT:C68703 Adult Supratentorial Embryonal Tumor, Not Otherwise Specified 8 79486 -NCIT:C8292 Adult Pineoblastoma 8 79487 -NCIT:C9183 Adult Central Nervous System Solitary Fibrous Tumor, Grade 3 8 79488 -NCIT:C9375 Adult Brain Glioblastoma 8 79489 -NCIT:C9370 Adult Brain Stem Gliosarcoma 9 79490 -NCIT:C5154 Brain Sarcoma 7 79491 -NCIT:C186610 Primary Intracranial Sarcoma, DICER1-Mutant 8 79492 -NCIT:C5462 Brain Extraskeletal Myxoid Chondrosarcoma 8 79493 -NCIT:C6973 Brain Liposarcoma 8 79494 -NCIT:C5817 Intracranial Embryonal Tumor, Not Otherwise Specified 7 79495 -NCIT:C5436 Cerebellopontine Angle Embryonal Tumor, Not Otherwise Specified 8 79496 -NCIT:C6968 Supratentorial Embryonal Tumor, Not Otherwise Specified 8 79497 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 9 79498 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 10 79499 -NCIT:C4970 Cerebral Embryonal Tumor, Not Otherwise Specified 9 79500 -NCIT:C68703 Adult Supratentorial Embryonal Tumor, Not Otherwise Specified 9 79501 -NCIT:C6284 Brain Germinoma 7 79502 -NCIT:C156040 Third Ventricle Germinoma 8 79503 -NCIT:C6207 Childhood Brain Germinoma 8 79504 -NCIT:C8712 Pineal Region Germinoma 8 79505 -NCIT:C7703 Childhood Brain Neoplasm 6 79506 -NCIT:C114773 Childhood Brain Oligodendroglioma 7 79507 -NCIT:C187207 Childhood Malignant Brain Neoplasm 7 79508 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 79509 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 9 79510 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 8 79511 -NCIT:C114812 Childhood Pineoblastoma 8 79512 -NCIT:C115374 Recurrent Childhood Pineoblastoma 9 79513 -NCIT:C114969 Childhood Gliomatosis Cerebri 8 79514 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 9 79515 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 8 79516 -NCIT:C124292 Childhood Choroid Plexus Carcinoma 8 79517 -NCIT:C147901 Childhood Brain Glioblastoma 8 79518 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 9 79519 -NCIT:C185471 Infant-Type Hemispheric Glioma 8 79520 -NCIT:C185472 Infant-Type Hemispheric Glioma, NTRK-Altered 9 79521 -NCIT:C185473 Infant-Type Hemispheric Glioma, ROS1-Altered 9 79522 -NCIT:C185474 Infant-Type Hemispheric Glioma, ALK-Altered 9 79523 -NCIT:C185475 Infant-Type Hemispheric Glioma, MET-Altered 9 79524 -NCIT:C187211 Metastatic Childhood Malignant Neoplasm in the Brain 8 79525 -NCIT:C187212 Metastatic Childhood Malignant Brain Neoplasm 8 79526 -NCIT:C187213 Advanced Childhood Malignant Brain Neoplasm 9 79527 -NCIT:C188922 Childhood Diffuse Midline Glioma, H3 K27-Altered 8 79528 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 8 79529 -NCIT:C188926 Childhood Diffuse Hemispheric Glioma, H3 G34-Mutant 8 79530 -NCIT:C188935 Childhood Supratentorial Ependymoma ZFTA Fusion-Positive 8 79531 -NCIT:C3997 Childhood Medulloblastoma 8 79532 -NCIT:C6774 Recurrent Childhood Medulloblastoma 9 79533 -NCIT:C6207 Childhood Brain Germinoma 8 79534 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 8 79535 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 9 79536 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 9 79537 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 79538 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 9 79539 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 79540 -NCIT:C187215 Refractory Childhood Brain Neoplasm 7 79541 -NCIT:C188931 Childhood Dysembryoplastic Neuroepithelial Tumor 7 79542 -NCIT:C188943 Childhood Posterior Fossa Ependymoma 7 79543 -NCIT:C5795 Childhood Brain Germ Cell Tumor 7 79544 -NCIT:C6207 Childhood Brain Germinoma 8 79545 -NCIT:C5798 Childhood Benign Brain Neoplasm 7 79546 -NCIT:C5799 Childhood Benign Supratentorial Neoplasm 8 79547 -NCIT:C5800 Childhood Choroid Plexus Papilloma 9 79548 -NCIT:C6219 Childhood Benign Cerebral Neoplasm 9 79549 -NCIT:C7816 Childhood Craniopharyngioma 8 79550 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 9 79551 -NCIT:C5802 Childhood Infratentorial Neoplasm 7 79552 -NCIT:C5969 Childhood Brain Stem Neoplasm 8 79553 -NCIT:C9042 Childhood Brain Stem Glioma 9 79554 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 79555 -NCIT:C114760 Childhood Brain Stem Mixed Glioma 10 79556 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 10 79557 -NCIT:C6216 Childhood Brain Stem Astrocytoma 10 79558 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 11 79559 -NCIT:C9190 Recurrent Childhood Brain Stem Glioma 10 79560 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 11 79561 -NCIT:C5970 Childhood Cerebellar Neoplasm 8 79562 -NCIT:C3997 Childhood Medulloblastoma 9 79563 -NCIT:C6774 Recurrent Childhood Medulloblastoma 10 79564 -NCIT:C6286 Childhood Cerebellar Astrocytoma 9 79565 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 10 79566 -NCIT:C8389 Recurrent Childhood Cerebellar Astrocytoma 10 79567 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 79568 -NCIT:C9041 Childhood Infratentorial Ependymoma 8 79569 -NCIT:C5960 Childhood Supratentorial Neoplasm 7 79570 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 79571 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 9 79572 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 8 79573 -NCIT:C115196 Childhood Pineal Parenchymal Cell Neoplasm 8 79574 -NCIT:C114812 Childhood Pineoblastoma 9 79575 -NCIT:C115374 Recurrent Childhood Pineoblastoma 10 79576 -NCIT:C124137 Childhood Pineal Parenchymal Tumor of Intermediate Differentiation 9 79577 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 8 79578 -NCIT:C185471 Infant-Type Hemispheric Glioma 8 79579 -NCIT:C185472 Infant-Type Hemispheric Glioma, NTRK-Altered 9 79580 -NCIT:C185473 Infant-Type Hemispheric Glioma, ROS1-Altered 9 79581 -NCIT:C185474 Infant-Type Hemispheric Glioma, ALK-Altered 9 79582 -NCIT:C185475 Infant-Type Hemispheric Glioma, MET-Altered 9 79583 -NCIT:C186351 Supratentorial Ependymoma YAP1 Fusion-Positive 8 79584 -NCIT:C186355 Supratentorial Ependymoma, YAP1-MAMLD1 Fusion-Positive 9 79585 -NCIT:C188926 Childhood Diffuse Hemispheric Glioma, H3 G34-Mutant 8 79586 -NCIT:C188933 Childhood Multinodular and Vacuolated Neuronal Tumor 8 79587 -NCIT:C188935 Childhood Supratentorial Ependymoma ZFTA Fusion-Positive 8 79588 -NCIT:C42080 Childhood Choroid Plexus Neoplasm 8 79589 -NCIT:C124291 Childhood Atypical Choroid Plexus Papilloma 9 79590 -NCIT:C124292 Childhood Choroid Plexus Carcinoma 9 79591 -NCIT:C5800 Childhood Choroid Plexus Papilloma 9 79592 -NCIT:C4347 Childhood Cerebral Astrocytoma 8 79593 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 9 79594 -NCIT:C8387 Childhood Cerebral Diffuse Astrocytoma 9 79595 -NCIT:C9191 Recurrent Childhood Cerebral Astrocytoma 9 79596 -NCIT:C5799 Childhood Benign Supratentorial Neoplasm 8 79597 -NCIT:C5800 Childhood Choroid Plexus Papilloma 9 79598 -NCIT:C6219 Childhood Benign Cerebral Neoplasm 9 79599 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 79600 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 9 79601 -NCIT:C9043 Childhood Supratentorial Ependymoma, Not Otherwise Specified 8 79602 -NCIT:C6268 Childhood Cerebral Ependymoma, Not Otherwise Specified 9 79603 -NCIT:C6253 Childhood Intracranial Meningioma 7 79604 -NCIT:C7535 Childhood Visual Pathway Glioma 7 79605 -NCIT:C7529 Recurrent Childhood Visual Pathway Glioma 8 79606 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 9 79607 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 79608 -NCIT:C7531 Recurrent Childhood Optic Nerve Glioma 9 79609 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 79610 -NCIT:C7534 Childhood Visual Pathway Astrocytoma 8 79611 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 9 79612 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 79613 -NCIT:C7834 Recurrent Childhood Brain Neoplasm 7 79614 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 8 79615 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 79616 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 79617 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 79618 -NCIT:C7529 Recurrent Childhood Visual Pathway Glioma 8 79619 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 9 79620 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 79621 -NCIT:C7531 Recurrent Childhood Optic Nerve Glioma 9 79622 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 79623 -NCIT:C8389 Recurrent Childhood Cerebellar Astrocytoma 8 79624 -NCIT:C9190 Recurrent Childhood Brain Stem Glioma 8 79625 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 9 79626 -NCIT:C9191 Recurrent Childhood Cerebral Astrocytoma 8 79627 -NCIT:C7710 Adult Brain Neoplasm 6 79628 -NCIT:C115250 Adult Mixed Glioma 7 79629 -NCIT:C9371 Adult Brain Stem Mixed Glioma 8 79630 -NCIT:C115327 Adult Pineal Gland Astrocytoma 7 79631 -NCIT:C115623 Adult Subependymoma 7 79632 -NCIT:C188932 Adult Dysembryoplastic Neuroepithelial Tumor 7 79633 -NCIT:C188934 Adult Multinodular and Vacuolated Neuronal Tumor 7 79634 -NCIT:C5115 Adult Malignant Brain Neoplasm 7 79635 -NCIT:C188923 Adult Diffuse Midline Glioma, H3 K27-Altered 8 79636 -NCIT:C188925 Adult Diffuse Intrinsic Pontine Glioma 8 79637 -NCIT:C188927 Adult Diffuse Hemispheric Glioma, H3 G34-Mutant 8 79638 -NCIT:C188938 Adult Supratentorial Ependymoma ZFTA Fusion-Positive 8 79639 -NCIT:C4011 Adult Medulloblastoma 8 79640 -NCIT:C5816 Metastatic Adult Malignant Neoplasm in the Brain 8 79641 -NCIT:C68703 Adult Supratentorial Embryonal Tumor, Not Otherwise Specified 8 79642 -NCIT:C8292 Adult Pineoblastoma 8 79643 -NCIT:C9183 Adult Central Nervous System Solitary Fibrous Tumor, Grade 3 8 79644 -NCIT:C9375 Adult Brain Glioblastoma 8 79645 -NCIT:C9370 Adult Brain Stem Gliosarcoma 9 79646 -NCIT:C5116 Adult Benign Brain Neoplasm 7 79647 -NCIT:C4010 Adult Craniopharyngioma 8 79648 -NCIT:C188949 Adult Adamantinomatous Craniopharyngioma 9 79649 -NCIT:C5796 Adult Benign Cerebellar Neoplasm 8 79650 -NCIT:C5797 Adult Benign Brain Stem Neoplasm 8 79651 -NCIT:C6218 Adult Benign Cerebral Neoplasm 8 79652 -NCIT:C8291 Adult Pineocytoma 8 79653 -NCIT:C5967 Adult Brain Stem Neoplasm 7 79654 -NCIT:C5797 Adult Benign Brain Stem Neoplasm 8 79655 -NCIT:C9091 Adult Brain Stem Glioma 8 79656 -NCIT:C188925 Adult Diffuse Intrinsic Pontine Glioma 9 79657 -NCIT:C6954 Adult Brain Stem Astrocytoma 9 79658 -NCIT:C9370 Adult Brain Stem Gliosarcoma 9 79659 -NCIT:C9371 Adult Brain Stem Mixed Glioma 9 79660 -NCIT:C5968 Adult Cerebellar Neoplasm 7 79661 -NCIT:C4011 Adult Medulloblastoma 8 79662 -NCIT:C5796 Adult Benign Cerebellar Neoplasm 8 79663 -NCIT:C7884 Recurrent Adult Brain Neoplasm 7 79664 -NCIT:C8273 Adult Pineal Parenchymal Cell Neoplasm 7 79665 -NCIT:C8291 Adult Pineocytoma 8 79666 -NCIT:C8292 Adult Pineoblastoma 8 79667 -NCIT:C8568 Adult Choroid Plexus Neoplasm 7 79668 -NCIT:C9372 Adult Brain Ependymoma 7 79669 -NCIT:C188938 Adult Supratentorial Ependymoma ZFTA Fusion-Positive 8 79670 -NCIT:C188945 Adult Posterior Fossa Ependymoma 8 79671 -NCIT:C9374 Adult Intracranial Meningioma 7 79672 -NCIT:C9376 Adult Brain Oligodendroglioma 7 79673 -NCIT:C35876 Childhood Intracranial Neoplasm 5 79674 -NCIT:C7703 Childhood Brain Neoplasm 6 79675 -NCIT:C114773 Childhood Brain Oligodendroglioma 7 79676 -NCIT:C187207 Childhood Malignant Brain Neoplasm 7 79677 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 79678 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 9 79679 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 8 79680 -NCIT:C114812 Childhood Pineoblastoma 8 79681 -NCIT:C115374 Recurrent Childhood Pineoblastoma 9 79682 -NCIT:C114969 Childhood Gliomatosis Cerebri 8 79683 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 9 79684 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 8 79685 -NCIT:C124292 Childhood Choroid Plexus Carcinoma 8 79686 -NCIT:C147901 Childhood Brain Glioblastoma 8 79687 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 9 79688 -NCIT:C185471 Infant-Type Hemispheric Glioma 8 79689 -NCIT:C185472 Infant-Type Hemispheric Glioma, NTRK-Altered 9 79690 -NCIT:C185473 Infant-Type Hemispheric Glioma, ROS1-Altered 9 79691 -NCIT:C185474 Infant-Type Hemispheric Glioma, ALK-Altered 9 79692 -NCIT:C185475 Infant-Type Hemispheric Glioma, MET-Altered 9 79693 -NCIT:C187211 Metastatic Childhood Malignant Neoplasm in the Brain 8 79694 -NCIT:C187212 Metastatic Childhood Malignant Brain Neoplasm 8 79695 -NCIT:C187213 Advanced Childhood Malignant Brain Neoplasm 9 79696 -NCIT:C188922 Childhood Diffuse Midline Glioma, H3 K27-Altered 8 79697 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 8 79698 -NCIT:C188926 Childhood Diffuse Hemispheric Glioma, H3 G34-Mutant 8 79699 -NCIT:C188935 Childhood Supratentorial Ependymoma ZFTA Fusion-Positive 8 79700 -NCIT:C3997 Childhood Medulloblastoma 8 79701 -NCIT:C6774 Recurrent Childhood Medulloblastoma 9 79702 -NCIT:C6207 Childhood Brain Germinoma 8 79703 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 8 79704 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 9 79705 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 9 79706 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 79707 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 9 79708 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 79709 -NCIT:C187215 Refractory Childhood Brain Neoplasm 7 79710 -NCIT:C188931 Childhood Dysembryoplastic Neuroepithelial Tumor 7 79711 -NCIT:C188943 Childhood Posterior Fossa Ependymoma 7 79712 -NCIT:C5795 Childhood Brain Germ Cell Tumor 7 79713 -NCIT:C6207 Childhood Brain Germinoma 8 79714 -NCIT:C5798 Childhood Benign Brain Neoplasm 7 79715 -NCIT:C5799 Childhood Benign Supratentorial Neoplasm 8 79716 -NCIT:C5800 Childhood Choroid Plexus Papilloma 9 79717 -NCIT:C6219 Childhood Benign Cerebral Neoplasm 9 79718 -NCIT:C7816 Childhood Craniopharyngioma 8 79719 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 9 79720 -NCIT:C5802 Childhood Infratentorial Neoplasm 7 79721 -NCIT:C5969 Childhood Brain Stem Neoplasm 8 79722 -NCIT:C9042 Childhood Brain Stem Glioma 9 79723 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 79724 -NCIT:C114760 Childhood Brain Stem Mixed Glioma 10 79725 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 10 79726 -NCIT:C6216 Childhood Brain Stem Astrocytoma 10 79727 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 11 79728 -NCIT:C9190 Recurrent Childhood Brain Stem Glioma 10 79729 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 11 79730 -NCIT:C5970 Childhood Cerebellar Neoplasm 8 79731 -NCIT:C3997 Childhood Medulloblastoma 9 79732 -NCIT:C6774 Recurrent Childhood Medulloblastoma 10 79733 -NCIT:C6286 Childhood Cerebellar Astrocytoma 9 79734 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 10 79735 -NCIT:C8389 Recurrent Childhood Cerebellar Astrocytoma 10 79736 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 79737 -NCIT:C9041 Childhood Infratentorial Ependymoma 8 79738 -NCIT:C5960 Childhood Supratentorial Neoplasm 7 79739 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 79740 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 9 79741 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 8 79742 -NCIT:C115196 Childhood Pineal Parenchymal Cell Neoplasm 8 79743 -NCIT:C114812 Childhood Pineoblastoma 9 79744 -NCIT:C115374 Recurrent Childhood Pineoblastoma 10 79745 -NCIT:C124137 Childhood Pineal Parenchymal Tumor of Intermediate Differentiation 9 79746 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 8 79747 -NCIT:C185471 Infant-Type Hemispheric Glioma 8 79748 -NCIT:C185472 Infant-Type Hemispheric Glioma, NTRK-Altered 9 79749 -NCIT:C185473 Infant-Type Hemispheric Glioma, ROS1-Altered 9 79750 -NCIT:C185474 Infant-Type Hemispheric Glioma, ALK-Altered 9 79751 -NCIT:C185475 Infant-Type Hemispheric Glioma, MET-Altered 9 79752 -NCIT:C186351 Supratentorial Ependymoma YAP1 Fusion-Positive 8 79753 -NCIT:C186355 Supratentorial Ependymoma, YAP1-MAMLD1 Fusion-Positive 9 79754 -NCIT:C188926 Childhood Diffuse Hemispheric Glioma, H3 G34-Mutant 8 79755 -NCIT:C188933 Childhood Multinodular and Vacuolated Neuronal Tumor 8 79756 -NCIT:C188935 Childhood Supratentorial Ependymoma ZFTA Fusion-Positive 8 79757 -NCIT:C42080 Childhood Choroid Plexus Neoplasm 8 79758 -NCIT:C124291 Childhood Atypical Choroid Plexus Papilloma 9 79759 -NCIT:C124292 Childhood Choroid Plexus Carcinoma 9 79760 -NCIT:C5800 Childhood Choroid Plexus Papilloma 9 79761 -NCIT:C4347 Childhood Cerebral Astrocytoma 8 79762 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 9 79763 -NCIT:C8387 Childhood Cerebral Diffuse Astrocytoma 9 79764 -NCIT:C9191 Recurrent Childhood Cerebral Astrocytoma 9 79765 -NCIT:C5799 Childhood Benign Supratentorial Neoplasm 8 79766 -NCIT:C5800 Childhood Choroid Plexus Papilloma 9 79767 -NCIT:C6219 Childhood Benign Cerebral Neoplasm 9 79768 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 79769 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 9 79770 -NCIT:C9043 Childhood Supratentorial Ependymoma, Not Otherwise Specified 8 79771 -NCIT:C6268 Childhood Cerebral Ependymoma, Not Otherwise Specified 9 79772 -NCIT:C6253 Childhood Intracranial Meningioma 7 79773 -NCIT:C7535 Childhood Visual Pathway Glioma 7 79774 -NCIT:C7529 Recurrent Childhood Visual Pathway Glioma 8 79775 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 9 79776 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 79777 -NCIT:C7531 Recurrent Childhood Optic Nerve Glioma 9 79778 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 79779 -NCIT:C7534 Childhood Visual Pathway Astrocytoma 8 79780 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 9 79781 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 79782 -NCIT:C7834 Recurrent Childhood Brain Neoplasm 7 79783 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 8 79784 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 79785 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 79786 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 79787 -NCIT:C7529 Recurrent Childhood Visual Pathway Glioma 8 79788 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 9 79789 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 79790 -NCIT:C7531 Recurrent Childhood Optic Nerve Glioma 9 79791 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 79792 -NCIT:C8389 Recurrent Childhood Cerebellar Astrocytoma 8 79793 -NCIT:C9190 Recurrent Childhood Brain Stem Glioma 8 79794 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 9 79795 -NCIT:C9191 Recurrent Childhood Cerebral Astrocytoma 8 79796 -NCIT:C4656 Intracranial Meningioma 5 79797 -NCIT:C27307 Anaplastic (Malignant) Intracranial Meningioma 6 79798 -NCIT:C4719 Choroid Plexus Meningioma 6 79799 -NCIT:C5133 Benign Intracranial Meningioma 6 79800 -NCIT:C5270 Cerebellar Papillary Meningioma 6 79801 -NCIT:C5272 Skull Base Meningioma 6 79802 -NCIT:C155776 Sellar Meningioma 7 79803 -NCIT:C155778 Intrasellar Meningioma 8 79804 -NCIT:C6776 Suprasellar Meningioma 8 79805 -NCIT:C5283 Diaphragma Sellae Meningioma 9 79806 -NCIT:C5284 Tuberculum Sellae Meningioma 9 79807 -NCIT:C5311 Pituitary Stalk Meningioma 9 79808 -NCIT:C5268 Cavernous Sinus Meningioma 7 79809 -NCIT:C5271 Petrous Apex Meningioma 7 79810 -NCIT:C5278 Petroclival Meningioma 7 79811 -NCIT:C5279 Multiple Skull Base Meningiomas 7 79812 -NCIT:C5280 Foramen Magnum Meningioma 7 79813 -NCIT:C5281 Anterior Foramen Magnum Meningioma 8 79814 -NCIT:C5282 Posterior Foramen Magnum Meningioma 8 79815 -NCIT:C5285 Sphenoorbital Meningioma 7 79816 -NCIT:C5289 Clivus Meningioma 7 79817 -NCIT:C5288 Lower Clivus Meningioma 8 79818 -NCIT:C5290 Upper Clivus Meningioma 8 79819 -NCIT:C5307 Internal Auditory Canal Meningioma 7 79820 -NCIT:C5313 Sphenocavernous Meningioma 7 79821 -NCIT:C5273 Intraventricular Meningioma 6 79822 -NCIT:C5302 Lateral Ventricle Meningioma 7 79823 -NCIT:C5291 Radiation-Induced Intracranial Meningioma 6 79824 -NCIT:C5587 Visual Pathway Meningioma 6 79825 -NCIT:C4538 Optic Nerve Sheath Meningioma 7 79826 -NCIT:C5304 Bilateral Optic Nerve Meningioma 7 79827 -NCIT:C7538 Anterior Visual Pathway Meningioma 7 79828 -NCIT:C6253 Childhood Intracranial Meningioma 6 79829 -NCIT:C6775 Posterior Fossa Meningioma 6 79830 -NCIT:C5289 Clivus Meningioma 7 79831 -NCIT:C5288 Lower Clivus Meningioma 8 79832 -NCIT:C5290 Upper Clivus Meningioma 8 79833 -NCIT:C5295 Brain Stem Intraparenchymal Clear Cell Meningioma 7 79834 -NCIT:C5300 Cerebellopontine Angle Meningioma 7 79835 -NCIT:C7048 Supratentorial Meningioma 6 79836 -NCIT:C4807 Cerebral Meningioma 7 79837 -NCIT:C4959 Cerebral Convexity Meningioma 8 79838 -NCIT:C5292 Frontal Convexity Meningioma 9 79839 -NCIT:C4960 Parasagittal Meningioma 8 79840 -NCIT:C5269 Intracerebral Cystic Meningioma 8 79841 -NCIT:C5302 Lateral Ventricle Meningioma 8 79842 -NCIT:C5286 Anterior Cranial Fossa Meningioma 7 79843 -NCIT:C5267 Falx Cerebri Meningioma 8 79844 -NCIT:C5268 Cavernous Sinus Meningioma 8 79845 -NCIT:C6771 Olfactory Groove Meningioma 8 79846 -NCIT:C5586 Middle Cranial Fossa Meningioma 7 79847 -NCIT:C5307 Internal Auditory Canal Meningioma 8 79848 -NCIT:C6756 Pineal Region Meningioma 7 79849 -NCIT:C6779 Gasserian Meningioma 7 79850 -NCIT:C9374 Adult Intracranial Meningioma 6 79851 -NCIT:C4676 Skull Base Neoplasm 5 79852 -NCIT:C155791 Malignant Skull Base Neoplasm 6 79853 -NCIT:C155772 Sellar Neuroblastoma 7 79854 -NCIT:C155786 Metastatic Malignant Neoplasm in the Sellar Region 7 79855 -NCIT:C6805 Metastatic Malignant Neoplasm in the Pituitary Gland 8 79856 -NCIT:C155802 Sellar Germinoma 7 79857 -NCIT:C155803 Suprasellar Germinoma 8 79858 -NCIT:C155804 Sellar Yolk Sac Tumor 7 79859 -NCIT:C155805 Sellar Embryonal Carcinoma 7 79860 -NCIT:C155806 Sellar Choriocarcinoma 7 79861 -NCIT:C155810 Sellar Teratoma with Malignant Transformation 7 79862 -NCIT:C155811 Sellar Mixed Germ Cell Tumor 7 79863 -NCIT:C4769 Malignant Pituitary Gland Neoplasm 7 79864 -NCIT:C155304 Pituitary Gland Blastoma 8 79865 -NCIT:C155796 Pituitary Gland Non-Hodgkin Lymphoma 8 79866 -NCIT:C155797 Pituitary Gland Diffuse Large B-Cell Lymphoma 9 79867 -NCIT:C4536 Metastatic Pituitary Neuroendocrine Tumor 8 79868 -NCIT:C163956 Locally Advanced Pituitary Neuroendocrine Tumor 9 79869 -NCIT:C163959 Metastatic Unresectable Pituitary Neuroendocrine Tumor 9 79870 -NCIT:C5962 Metastatic Lactotroph Pituitary Neuroendocrine Tumor 9 79871 -NCIT:C5963 Metastatic Somatotroph Pituitary Neuroendocrine Tumor 9 79872 -NCIT:C5964 Metastatic Corticotroph Pituitary Neuroendocrine Tumor 9 79873 -NCIT:C5965 Metastatic Thyrotroph Pituitary Neuroendocrine Tumor 9 79874 -NCIT:C6805 Metastatic Malignant Neoplasm in the Pituitary Gland 8 79875 -NCIT:C5453 Skull Base Chordoma 7 79876 -NCIT:C155781 Sellar Chordoma 8 79877 -NCIT:C155782 Sellar Chondroid Chordoma 9 79878 -NCIT:C155783 Sellar Dedifferentiated Chordoma 9 79879 -NCIT:C5412 Clivus Chordoma 8 79880 -NCIT:C5426 Clivus Chondroid Chordoma 9 79881 -NCIT:C155793 Benign Skull Base Neoplasm 6 79882 -NCIT:C155768 Sellar Neurocytoma 7 79883 -NCIT:C155780 Sellar Schwannoma 7 79884 -NCIT:C155808 Sellar Mature Teratoma 7 79885 -NCIT:C2964 Craniopharyngioma 7 79886 -NCIT:C148076 Unresectable Craniopharyngioma 8 79887 -NCIT:C148077 Recurrent Craniopharyngioma 8 79888 -NCIT:C162612 Recurrent Adamantinomatous Craniopharyngioma 9 79889 -NCIT:C4010 Adult Craniopharyngioma 8 79890 -NCIT:C188949 Adult Adamantinomatous Craniopharyngioma 9 79891 -NCIT:C4725 Papillary Craniopharyngioma 8 79892 -NCIT:C4726 Adamantinomatous Craniopharyngioma 8 79893 -NCIT:C162612 Recurrent Adamantinomatous Craniopharyngioma 9 79894 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 9 79895 -NCIT:C188949 Adult Adamantinomatous Craniopharyngioma 9 79896 -NCIT:C7816 Childhood Craniopharyngioma 8 79897 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 9 79898 -NCIT:C4782 Benign Pituitary Gland Neoplasm 7 79899 -NCIT:C4944 Sellar Region Neoplasm 6 79900 -NCIT:C155768 Sellar Neurocytoma 7 79901 -NCIT:C155769 Sellar Paraganglioma 7 79902 -NCIT:C155772 Sellar Neuroblastoma 7 79903 -NCIT:C155776 Sellar Meningioma 7 79904 -NCIT:C155778 Intrasellar Meningioma 8 79905 -NCIT:C6776 Suprasellar Meningioma 8 79906 -NCIT:C5283 Diaphragma Sellae Meningioma 9 79907 -NCIT:C5284 Tuberculum Sellae Meningioma 9 79908 -NCIT:C5311 Pituitary Stalk Meningioma 9 79909 -NCIT:C155780 Sellar Schwannoma 7 79910 -NCIT:C155781 Sellar Chordoma 7 79911 -NCIT:C155782 Sellar Chondroid Chordoma 8 79912 -NCIT:C155783 Sellar Dedifferentiated Chordoma 8 79913 -NCIT:C155784 Sellar Solitary Fibrous Tumor 7 79914 -NCIT:C155786 Metastatic Malignant Neoplasm in the Sellar Region 7 79915 -NCIT:C6805 Metastatic Malignant Neoplasm in the Pituitary Gland 8 79916 -NCIT:C155801 Sellar Germ Cell Tumor 7 79917 -NCIT:C155802 Sellar Germinoma 8 79918 -NCIT:C155803 Suprasellar Germinoma 9 79919 -NCIT:C155804 Sellar Yolk Sac Tumor 8 79920 -NCIT:C155805 Sellar Embryonal Carcinoma 8 79921 -NCIT:C155806 Sellar Choriocarcinoma 8 79922 -NCIT:C155807 Sellar Teratoma 8 79923 -NCIT:C155808 Sellar Mature Teratoma 9 79924 -NCIT:C155809 Sellar Immature Teratoma 9 79925 -NCIT:C155810 Sellar Teratoma with Malignant Transformation 9 79926 -NCIT:C155811 Sellar Mixed Germ Cell Tumor 8 79927 -NCIT:C177769 Suprasellar Germ Cell Tumor 8 79928 -NCIT:C155803 Suprasellar Germinoma 9 79929 -NCIT:C2964 Craniopharyngioma 7 79930 -NCIT:C148076 Unresectable Craniopharyngioma 8 79931 -NCIT:C148077 Recurrent Craniopharyngioma 8 79932 -NCIT:C162612 Recurrent Adamantinomatous Craniopharyngioma 9 79933 -NCIT:C4010 Adult Craniopharyngioma 8 79934 -NCIT:C188949 Adult Adamantinomatous Craniopharyngioma 9 79935 -NCIT:C4725 Papillary Craniopharyngioma 8 79936 -NCIT:C4726 Adamantinomatous Craniopharyngioma 8 79937 -NCIT:C162612 Recurrent Adamantinomatous Craniopharyngioma 9 79938 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 9 79939 -NCIT:C188949 Adult Adamantinomatous Craniopharyngioma 9 79940 -NCIT:C7816 Childhood Craniopharyngioma 8 79941 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 9 79942 -NCIT:C3330 Pituitary Gland Neoplasm 7 79943 -NCIT:C45921 Anterior Pituitary Gland Neoplasm 8 79944 -NCIT:C155304 Pituitary Gland Blastoma 9 79945 -NCIT:C3329 Pituitary Neuroendocrine Tumor 9 79946 -NCIT:C132296 Atypical Pituitary Neuroendocrine Tumor 10 79947 -NCIT:C154520 Multiple Synchronous Pituitary Neuroendocrine Tumors of Distinct Lineages 10 79948 -NCIT:C154519 Double Pituitary Neuroendocrine Tumors of Distinct Lineages 11 79949 -NCIT:C155767 Mixed Gangliocytoma-Pituitary Neuroendocrine Tumor 10 79950 -NCIT:C173345 Ectopic Pituitary Neuroendocrine Tumor 10 79951 -NCIT:C173352 Nasopharyngeal Pituitary Neuroendocrine Tumor 11 79952 -NCIT:C187086 Pituitary Neuroendocrine Tumor of PIT1-Lineage 10 79953 -NCIT:C127194 Somatotroph-Lactotroph Pituitary Neuroendocrine Tumor 11 79954 -NCIT:C45927 Mixed Somatotroph and Lactotroph Pituitary Neuroendocrine Tumor 12 79955 -NCIT:C45928 Mammosomatotroph Pituitary Neuroendocrine Tumor 12 79956 -NCIT:C187098 Mature Plurihormonal PIT1 Lineage Pituitary Neuroendocrine Tumor 11 79957 -NCIT:C187099 Immature PIT1 Lineage Pituitary Neuroendocrine Tumor 11 79958 -NCIT:C3342 Lactotroph Pituitary Neuroendocrine Tumor 11 79959 -NCIT:C45931 Densely Granulated Lactotroph Pituitary Neuroendocrine Tumor 12 79960 -NCIT:C45932 Sparsely Granulated Lactotroph Pituitary Neuroendocrine Tumor 12 79961 -NCIT:C5962 Metastatic Lactotroph Pituitary Neuroendocrine Tumor 12 79962 -NCIT:C45929 Acidophil Stem Cell Pituitary Neuroendocrine Tumor 11 79963 -NCIT:C7461 Somatotroph Pituitary Neuroendocrine Tumor 11 79964 -NCIT:C45925 Densely Granulated Somatotroph Pituitary Neuroendocrine Tumor 12 79965 -NCIT:C45926 Sparsely Granulated Somatotroph Pituitary Neuroendocrine Tumor 12 79966 -NCIT:C5963 Metastatic Somatotroph Pituitary Neuroendocrine Tumor 12 79967 -NCIT:C7915 Thyrotroph Pituitary Neuroendocrine Tumor 11 79968 -NCIT:C5965 Metastatic Thyrotroph Pituitary Neuroendocrine Tumor 12 79969 -NCIT:C187087 Pituitary Neuroendocrine Tumor of TPIT-Lineage 10 79970 -NCIT:C7462 Corticotroph Pituitary Neuroendocrine Tumor 11 79971 -NCIT:C154339 Densely Granulated Corticotroph Pituitary Neuroendocrine Tumor 12 79972 -NCIT:C154431 Non-Functioning Densely Granulated Corticotroph Pituitary Neuroendocrine Tumor 13 79973 -NCIT:C154340 Sparsely Granulated Corticotroph Pituitary Neuroendocrine Tumor 12 79974 -NCIT:C154432 Non-Functioning Sparsely Granulated Corticotroph Pituitary Neuroendocrine Tumor 13 79975 -NCIT:C154342 Crooke Cell Tumor 12 79976 -NCIT:C154429 Non-Functioning Corticotroph Pituitary Neuroendocrine Tumor 12 79977 -NCIT:C154431 Non-Functioning Densely Granulated Corticotroph Pituitary Neuroendocrine Tumor 13 79978 -NCIT:C154432 Non-Functioning Sparsely Granulated Corticotroph Pituitary Neuroendocrine Tumor 13 79979 -NCIT:C5964 Metastatic Corticotroph Pituitary Neuroendocrine Tumor 12 79980 -NCIT:C187088 Pituitary Neuroendocrine Tumor of SF1-Lineage 10 79981 -NCIT:C45915 Gonadotroph Pituitary Neuroendocrine Tumor 11 79982 -NCIT:C121152 FSH-Producing Pituitary Neuroendocrine Tumor 12 79983 -NCIT:C121153 LH-Producing Pituitary Neuroendocrine Tumor 12 79984 -NCIT:C187096 Pituitary Neuroendocrine Tumor without Distinct Lineage Differentiation 10 79985 -NCIT:C45916 Plurihormonal Pituitary Neuroendocrine Tumor 11 79986 -NCIT:C154504 Monomorphous Plurihormonal Pituitary Neuroendocrine Tumor 12 79987 -NCIT:C154505 Plurimorphous Plurihormonal Pituitary Neuroendocrine Tumor 12 79988 -NCIT:C45924 Null Cell Pituitary Neuroendocrine Tumor 11 79989 -NCIT:C187135 Pituitary Neuroendocrine Tumor, Not Otherwise Specified 10 79990 -NCIT:C4348 Non-Functioning Pituitary Neuroendocrine Tumor 10 79991 -NCIT:C121678 Non-Functioning Pituitary Neuroendocrine Tumor/Microadenoma 11 79992 -NCIT:C121721 Non-Functioning Pituitary Neuroendocrine Tumor/Macroadenoma 11 79993 -NCIT:C154429 Non-Functioning Corticotroph Pituitary Neuroendocrine Tumor 11 79994 -NCIT:C154431 Non-Functioning Densely Granulated Corticotroph Pituitary Neuroendocrine Tumor 12 79995 -NCIT:C154432 Non-Functioning Sparsely Granulated Corticotroph Pituitary Neuroendocrine Tumor 12 79996 -NCIT:C45924 Null Cell Pituitary Neuroendocrine Tumor 11 79997 -NCIT:C43541 Pituitary Neuroendocrine Tumor/Microadenoma 10 79998 -NCIT:C121678 Non-Functioning Pituitary Neuroendocrine Tumor/Microadenoma 11 79999 -NCIT:C121679 Functioning Pituitary Neuroendocrine Tumor/Microadenoma 11 80000 -NCIT:C43542 Pituitary Neuroendocrine Tumor/Macroadenoma 10 80001 -NCIT:C121720 Functioning Pituitary Neuroendocrine Tumor/Macroadenoma 11 80002 -NCIT:C121721 Non-Functioning Pituitary Neuroendocrine Tumor/Macroadenoma 11 80003 -NCIT:C4536 Metastatic Pituitary Neuroendocrine Tumor 10 80004 -NCIT:C163956 Locally Advanced Pituitary Neuroendocrine Tumor 11 80005 -NCIT:C163959 Metastatic Unresectable Pituitary Neuroendocrine Tumor 11 80006 -NCIT:C5962 Metastatic Lactotroph Pituitary Neuroendocrine Tumor 11 80007 -NCIT:C5963 Metastatic Somatotroph Pituitary Neuroendocrine Tumor 11 80008 -NCIT:C5964 Metastatic Corticotroph Pituitary Neuroendocrine Tumor 11 80009 -NCIT:C5965 Metastatic Thyrotroph Pituitary Neuroendocrine Tumor 11 80010 -NCIT:C8388 Functioning Pituitary Neuroendocrine Tumor 10 80011 -NCIT:C121679 Functioning Pituitary Neuroendocrine Tumor/Microadenoma 11 80012 -NCIT:C121720 Functioning Pituitary Neuroendocrine Tumor/Macroadenoma 11 80013 -NCIT:C7912 Recurrent Anterior Pituitary Gland Neoplasm 9 80014 -NCIT:C4769 Malignant Pituitary Gland Neoplasm 8 80015 -NCIT:C155304 Pituitary Gland Blastoma 9 80016 -NCIT:C155796 Pituitary Gland Non-Hodgkin Lymphoma 9 80017 -NCIT:C155797 Pituitary Gland Diffuse Large B-Cell Lymphoma 10 80018 -NCIT:C4536 Metastatic Pituitary Neuroendocrine Tumor 9 80019 -NCIT:C163956 Locally Advanced Pituitary Neuroendocrine Tumor 10 80020 -NCIT:C163959 Metastatic Unresectable Pituitary Neuroendocrine Tumor 10 80021 -NCIT:C5962 Metastatic Lactotroph Pituitary Neuroendocrine Tumor 10 80022 -NCIT:C5963 Metastatic Somatotroph Pituitary Neuroendocrine Tumor 10 80023 -NCIT:C5964 Metastatic Corticotroph Pituitary Neuroendocrine Tumor 10 80024 -NCIT:C5965 Metastatic Thyrotroph Pituitary Neuroendocrine Tumor 10 80025 -NCIT:C6805 Metastatic Malignant Neoplasm in the Pituitary Gland 9 80026 -NCIT:C4782 Benign Pituitary Gland Neoplasm 8 80027 -NCIT:C7157 Posterior Pituitary Gland Neoplasm 8 80028 -NCIT:C155774 Ependymal Pituicytoma 9 80029 -NCIT:C7017 Granular Cell Tumor of the Sellar Region 9 80030 -NCIT:C94524 Pituicytoma 9 80031 -NCIT:C94537 Spindle Cell Oncocytoma 9 80032 -NCIT:C45917 Sellar Gangliocytoma 7 80033 -NCIT:C5272 Skull Base Meningioma 6 80034 -NCIT:C155776 Sellar Meningioma 7 80035 -NCIT:C155778 Intrasellar Meningioma 8 80036 -NCIT:C6776 Suprasellar Meningioma 8 80037 -NCIT:C5283 Diaphragma Sellae Meningioma 9 80038 -NCIT:C5284 Tuberculum Sellae Meningioma 9 80039 -NCIT:C5311 Pituitary Stalk Meningioma 9 80040 -NCIT:C5268 Cavernous Sinus Meningioma 7 80041 -NCIT:C5271 Petrous Apex Meningioma 7 80042 -NCIT:C5278 Petroclival Meningioma 7 80043 -NCIT:C5279 Multiple Skull Base Meningiomas 7 80044 -NCIT:C5280 Foramen Magnum Meningioma 7 80045 -NCIT:C5281 Anterior Foramen Magnum Meningioma 8 80046 -NCIT:C5282 Posterior Foramen Magnum Meningioma 8 80047 -NCIT:C5285 Sphenoorbital Meningioma 7 80048 -NCIT:C5289 Clivus Meningioma 7 80049 -NCIT:C5288 Lower Clivus Meningioma 8 80050 -NCIT:C5290 Upper Clivus Meningioma 8 80051 -NCIT:C5307 Internal Auditory Canal Meningioma 7 80052 -NCIT:C5313 Sphenocavernous Meningioma 7 80053 -NCIT:C5111 Benign Intracranial Neoplasm 5 80054 -NCIT:C129549 Intracranial Fibrous Histiocytoma 6 80055 -NCIT:C155793 Benign Skull Base Neoplasm 6 80056 -NCIT:C155768 Sellar Neurocytoma 7 80057 -NCIT:C155780 Sellar Schwannoma 7 80058 -NCIT:C155808 Sellar Mature Teratoma 7 80059 -NCIT:C2964 Craniopharyngioma 7 80060 -NCIT:C148076 Unresectable Craniopharyngioma 8 80061 -NCIT:C148077 Recurrent Craniopharyngioma 8 80062 -NCIT:C162612 Recurrent Adamantinomatous Craniopharyngioma 9 80063 -NCIT:C4010 Adult Craniopharyngioma 8 80064 -NCIT:C188949 Adult Adamantinomatous Craniopharyngioma 9 80065 -NCIT:C4725 Papillary Craniopharyngioma 8 80066 -NCIT:C4726 Adamantinomatous Craniopharyngioma 8 80067 -NCIT:C162612 Recurrent Adamantinomatous Craniopharyngioma 9 80068 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 9 80069 -NCIT:C188949 Adult Adamantinomatous Craniopharyngioma 9 80070 -NCIT:C7816 Childhood Craniopharyngioma 8 80071 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 9 80072 -NCIT:C4782 Benign Pituitary Gland Neoplasm 7 80073 -NCIT:C3633 Intracranial Hemangioma 6 80074 -NCIT:C5432 Intracranial Cavernous Hemangioma 7 80075 -NCIT:C7739 Brain Hemangioma 7 80076 -NCIT:C5433 Cerebral Hemangioma 8 80077 -NCIT:C4781 Benign Brain Neoplasm 6 80078 -NCIT:C2964 Craniopharyngioma 7 80079 -NCIT:C148076 Unresectable Craniopharyngioma 8 80080 -NCIT:C148077 Recurrent Craniopharyngioma 8 80081 -NCIT:C162612 Recurrent Adamantinomatous Craniopharyngioma 9 80082 -NCIT:C4010 Adult Craniopharyngioma 8 80083 -NCIT:C188949 Adult Adamantinomatous Craniopharyngioma 9 80084 -NCIT:C4725 Papillary Craniopharyngioma 8 80085 -NCIT:C4726 Adamantinomatous Craniopharyngioma 8 80086 -NCIT:C162612 Recurrent Adamantinomatous Craniopharyngioma 9 80087 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 9 80088 -NCIT:C188949 Adult Adamantinomatous Craniopharyngioma 9 80089 -NCIT:C7816 Childhood Craniopharyngioma 8 80090 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 9 80091 -NCIT:C4963 Benign Supratentorial Neoplasm 7 80092 -NCIT:C3631 Benign Pineal Region Neoplasm 8 80093 -NCIT:C6754 Pineal Region Mature Teratoma 9 80094 -NCIT:C6966 Pineocytoma 9 80095 -NCIT:C8291 Adult Pineocytoma 10 80096 -NCIT:C4782 Benign Pituitary Gland Neoplasm 8 80097 -NCIT:C5127 Benign Diencephalic Neoplasm 8 80098 -NCIT:C6222 Benign Thalamic Neoplasm 9 80099 -NCIT:C5799 Childhood Benign Supratentorial Neoplasm 8 80100 -NCIT:C5800 Childhood Choroid Plexus Papilloma 9 80101 -NCIT:C6219 Childhood Benign Cerebral Neoplasm 9 80102 -NCIT:C8548 Benign Cerebral Neoplasm 8 80103 -NCIT:C5433 Cerebral Hemangioma 9 80104 -NCIT:C6218 Adult Benign Cerebral Neoplasm 9 80105 -NCIT:C6219 Childhood Benign Cerebral Neoplasm 9 80106 -NCIT:C6220 Cerebral Hemisphere Lipoma 9 80107 -NCIT:C5438 Corpus Callosum Lipoma 10 80108 -NCIT:C4965 Benign Infratentorial Neoplasm 7 80109 -NCIT:C4955 Benign Cerebellar Neoplasm 8 80110 -NCIT:C5796 Adult Benign Cerebellar Neoplasm 9 80111 -NCIT:C6809 Cerebellar Pilocytic Astrocytoma 9 80112 -NCIT:C5413 Cerebellopontine Angle Schwannoma 8 80113 -NCIT:C8549 Benign Brain Stem Neoplasm 8 80114 -NCIT:C5797 Adult Benign Brain Stem Neoplasm 9 80115 -NCIT:C5116 Adult Benign Brain Neoplasm 7 80116 -NCIT:C4010 Adult Craniopharyngioma 8 80117 -NCIT:C188949 Adult Adamantinomatous Craniopharyngioma 9 80118 -NCIT:C5796 Adult Benign Cerebellar Neoplasm 8 80119 -NCIT:C5797 Adult Benign Brain Stem Neoplasm 8 80120 -NCIT:C6218 Adult Benign Cerebral Neoplasm 8 80121 -NCIT:C8291 Adult Pineocytoma 8 80122 -NCIT:C5798 Childhood Benign Brain Neoplasm 7 80123 -NCIT:C5799 Childhood Benign Supratentorial Neoplasm 8 80124 -NCIT:C5800 Childhood Choroid Plexus Papilloma 9 80125 -NCIT:C6219 Childhood Benign Cerebral Neoplasm 9 80126 -NCIT:C7816 Childhood Craniopharyngioma 8 80127 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 9 80128 -NCIT:C7739 Brain Hemangioma 7 80129 -NCIT:C5433 Cerebral Hemangioma 8 80130 -NCIT:C8405 Benign Choroid Plexus Neoplasm 7 80131 -NCIT:C3698 Choroid Plexus Papilloma 8 80132 -NCIT:C5800 Childhood Choroid Plexus Papilloma 9 80133 -NCIT:C5133 Benign Intracranial Meningioma 6 80134 -NCIT:C5444 Intracranial Lipoma 6 80135 -NCIT:C5452 Inner Ear Lipoma 7 80136 -NCIT:C6220 Cerebral Hemisphere Lipoma 7 80137 -NCIT:C5438 Corpus Callosum Lipoma 8 80138 -NCIT:C5114 Malignant Intracranial Neoplasm 5 80139 -NCIT:C155791 Malignant Skull Base Neoplasm 6 80140 -NCIT:C155772 Sellar Neuroblastoma 7 80141 -NCIT:C155786 Metastatic Malignant Neoplasm in the Sellar Region 7 80142 -NCIT:C6805 Metastatic Malignant Neoplasm in the Pituitary Gland 8 80143 -NCIT:C155802 Sellar Germinoma 7 80144 -NCIT:C155803 Suprasellar Germinoma 8 80145 -NCIT:C155804 Sellar Yolk Sac Tumor 7 80146 -NCIT:C155805 Sellar Embryonal Carcinoma 7 80147 -NCIT:C155806 Sellar Choriocarcinoma 7 80148 -NCIT:C155810 Sellar Teratoma with Malignant Transformation 7 80149 -NCIT:C155811 Sellar Mixed Germ Cell Tumor 7 80150 -NCIT:C4769 Malignant Pituitary Gland Neoplasm 7 80151 -NCIT:C155304 Pituitary Gland Blastoma 8 80152 -NCIT:C155796 Pituitary Gland Non-Hodgkin Lymphoma 8 80153 -NCIT:C155797 Pituitary Gland Diffuse Large B-Cell Lymphoma 9 80154 -NCIT:C4536 Metastatic Pituitary Neuroendocrine Tumor 8 80155 -NCIT:C163956 Locally Advanced Pituitary Neuroendocrine Tumor 9 80156 -NCIT:C163959 Metastatic Unresectable Pituitary Neuroendocrine Tumor 9 80157 -NCIT:C5962 Metastatic Lactotroph Pituitary Neuroendocrine Tumor 9 80158 -NCIT:C5963 Metastatic Somatotroph Pituitary Neuroendocrine Tumor 9 80159 -NCIT:C5964 Metastatic Corticotroph Pituitary Neuroendocrine Tumor 9 80160 -NCIT:C5965 Metastatic Thyrotroph Pituitary Neuroendocrine Tumor 9 80161 -NCIT:C6805 Metastatic Malignant Neoplasm in the Pituitary Gland 8 80162 -NCIT:C5453 Skull Base Chordoma 7 80163 -NCIT:C155781 Sellar Chordoma 8 80164 -NCIT:C155782 Sellar Chondroid Chordoma 9 80165 -NCIT:C155783 Sellar Dedifferentiated Chordoma 9 80166 -NCIT:C5412 Clivus Chordoma 8 80167 -NCIT:C5426 Clivus Chondroid Chordoma 9 80168 -NCIT:C175221 Malignant Visual Pathway Neoplasm 6 80169 -NCIT:C170941 Malignant Optic Nerve Neoplasm 7 80170 -NCIT:C175220 Metastatic Malignant Neoplasm in the Visual Pathway 7 80171 -NCIT:C3568 Malignant Brain Neoplasm 6 80172 -NCIT:C153837 Recurrent Malignant Brain Neoplasm 7 80173 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 80174 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 80175 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 8 80176 -NCIT:C179221 Recurrent Gliomatosis Cerebri 8 80177 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 9 80178 -NCIT:C179226 Recurrent Malignant Choroid Plexus Neoplasm 8 80179 -NCIT:C191198 Recurrent Brain Glioblastoma 8 80180 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 9 80181 -NCIT:C5588 Recurrent Medulloblastoma 8 80182 -NCIT:C147109 Recurrent Medulloblastoma, SHH-Activated 9 80183 -NCIT:C180893 Recurrent Medulloblastoma, WNT-Activated 9 80184 -NCIT:C6774 Recurrent Childhood Medulloblastoma 9 80185 -NCIT:C153845 Refractory Malignant Brain Neoplasm 7 80186 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 8 80187 -NCIT:C142856 Refractory Medulloblastoma 8 80188 -NCIT:C147110 Refractory Medulloblastoma, SHH-Activated 9 80189 -NCIT:C180892 Refractory Medulloblastoma, WNT-Activated 9 80190 -NCIT:C162993 Malignant Brain Glioma 7 80191 -NCIT:C156120 Frontal Lobe Anaplastic Oligodendroglioma 8 80192 -NCIT:C185371 Diffuse Hemispheric Glioma, H3 G34-Mutant 8 80193 -NCIT:C188926 Childhood Diffuse Hemispheric Glioma, H3 G34-Mutant 9 80194 -NCIT:C188927 Adult Diffuse Hemispheric Glioma, H3 G34-Mutant 9 80195 -NCIT:C185467 Diffuse Pediatric-Type High Grade Glioma, H3-Wildtype and IDH-Wildtype 8 80196 -NCIT:C185468 Diffuse Pediatric-Type High Grade Glioma RTK2 9 80197 -NCIT:C185469 Diffuse Pediatric-Type High Grade Glioma RTK1 9 80198 -NCIT:C185470 Diffuse Pediatric-Type High Grade Glioma MYCN 9 80199 -NCIT:C185471 Infant-Type Hemispheric Glioma 8 80200 -NCIT:C185472 Infant-Type Hemispheric Glioma, NTRK-Altered 9 80201 -NCIT:C185473 Infant-Type Hemispheric Glioma, ROS1-Altered 9 80202 -NCIT:C185474 Infant-Type Hemispheric Glioma, ALK-Altered 9 80203 -NCIT:C185475 Infant-Type Hemispheric Glioma, MET-Altered 9 80204 -NCIT:C4642 Brain Glioblastoma 8 80205 -NCIT:C147901 Childhood Brain Glioblastoma 9 80206 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 80207 -NCIT:C191198 Recurrent Brain Glioblastoma 9 80208 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 10 80209 -NCIT:C5148 Infratentorial Glioblastoma 9 80210 -NCIT:C5097 Brain Stem Glioblastoma 10 80211 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 11 80212 -NCIT:C9370 Adult Brain Stem Gliosarcoma 11 80213 -NCIT:C5150 Cerebellar Glioblastoma 10 80214 -NCIT:C5149 Supratentorial Glioblastoma 9 80215 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 10 80216 -NCIT:C5129 Diencephalic Glioblastoma 10 80217 -NCIT:C5151 Cerebral Glioblastoma 10 80218 -NCIT:C171013 Supratentorial Gliosarcoma 11 80219 -NCIT:C9375 Adult Brain Glioblastoma 9 80220 -NCIT:C9370 Adult Brain Stem Gliosarcoma 10 80221 -NCIT:C5123 Hemispheric Anaplastic Astrocytoma 8 80222 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 9 80223 -NCIT:C156035 Frontal Lobe Anaplastic Astrocytoma 9 80224 -NCIT:C156036 Temporal Lobe Anaplastic Astrocytoma 9 80225 -NCIT:C171036 Parietal Lobe Anaplastic Astrocytoma 9 80226 -NCIT:C5124 Anaplastic Diencephalic Astrocytoma 8 80227 -NCIT:C5416 Secondary Supratentorial Anaplastic Astrocytoma 8 80228 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 8 80229 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 9 80230 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 9 80231 -NCIT:C7446 Anaplastic Brain Stem Glioma 8 80232 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 9 80233 -NCIT:C94764 Diffuse Intrinsic Pontine Glioma 8 80234 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 9 80235 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 9 80236 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 9 80237 -NCIT:C188925 Adult Diffuse Intrinsic Pontine Glioma 9 80238 -NCIT:C175550 Metastatic Primary Malignant Brain Neoplasm 7 80239 -NCIT:C175549 Advanced Primary Malignant Brain Neoplasm 8 80240 -NCIT:C187213 Advanced Childhood Malignant Brain Neoplasm 9 80241 -NCIT:C177725 Metastatic Medulloblastoma 8 80242 -NCIT:C5399 Medulloblastoma with Leptomeningeal Spread 9 80243 -NCIT:C180874 Locally Advanced Primary Malignant Brain Neoplasm 8 80244 -NCIT:C187212 Metastatic Childhood Malignant Brain Neoplasm 8 80245 -NCIT:C187213 Advanced Childhood Malignant Brain Neoplasm 9 80246 -NCIT:C187207 Childhood Malignant Brain Neoplasm 7 80247 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 80248 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 9 80249 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 8 80250 -NCIT:C114812 Childhood Pineoblastoma 8 80251 -NCIT:C115374 Recurrent Childhood Pineoblastoma 9 80252 -NCIT:C114969 Childhood Gliomatosis Cerebri 8 80253 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 9 80254 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 8 80255 -NCIT:C124292 Childhood Choroid Plexus Carcinoma 8 80256 -NCIT:C147901 Childhood Brain Glioblastoma 8 80257 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 9 80258 -NCIT:C185471 Infant-Type Hemispheric Glioma 8 80259 -NCIT:C185472 Infant-Type Hemispheric Glioma, NTRK-Altered 9 80260 -NCIT:C185473 Infant-Type Hemispheric Glioma, ROS1-Altered 9 80261 -NCIT:C185474 Infant-Type Hemispheric Glioma, ALK-Altered 9 80262 -NCIT:C185475 Infant-Type Hemispheric Glioma, MET-Altered 9 80263 -NCIT:C187211 Metastatic Childhood Malignant Neoplasm in the Brain 8 80264 -NCIT:C187212 Metastatic Childhood Malignant Brain Neoplasm 8 80265 -NCIT:C187213 Advanced Childhood Malignant Brain Neoplasm 9 80266 -NCIT:C188922 Childhood Diffuse Midline Glioma, H3 K27-Altered 8 80267 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 8 80268 -NCIT:C188926 Childhood Diffuse Hemispheric Glioma, H3 G34-Mutant 8 80269 -NCIT:C188935 Childhood Supratentorial Ependymoma ZFTA Fusion-Positive 8 80270 -NCIT:C3997 Childhood Medulloblastoma 8 80271 -NCIT:C6774 Recurrent Childhood Medulloblastoma 9 80272 -NCIT:C6207 Childhood Brain Germinoma 8 80273 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 8 80274 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 9 80275 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 9 80276 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 80277 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 9 80278 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 80279 -NCIT:C3813 Metastatic Malignant Neoplasm in the Brain 7 80280 -NCIT:C179206 Melanoma Metastatic in the Brain 8 80281 -NCIT:C187211 Metastatic Childhood Malignant Neoplasm in the Brain 8 80282 -NCIT:C36301 Breast Carcinoma Metastatic in the Brain 8 80283 -NCIT:C36304 Lung Carcinoma Metastatic in the Brain 8 80284 -NCIT:C5057 Secondary Cerebral Hodgkin Lymphoma 8 80285 -NCIT:C5816 Metastatic Adult Malignant Neoplasm in the Brain 8 80286 -NCIT:C8550 Metastatic Malignant Neoplasm in the Brain Stem 8 80287 -NCIT:C4318 Gliomatosis Cerebri 7 80288 -NCIT:C114969 Childhood Gliomatosis Cerebri 8 80289 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 9 80290 -NCIT:C179221 Recurrent Gliomatosis Cerebri 8 80291 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 9 80292 -NCIT:C41842 Gliomatosis Cerebri Type I 8 80293 -NCIT:C41843 Gliomatosis Cerebri Type II 8 80294 -NCIT:C4533 Malignant Choroid Plexus Neoplasm 7 80295 -NCIT:C179226 Recurrent Malignant Choroid Plexus Neoplasm 8 80296 -NCIT:C4715 Choroid Plexus Carcinoma 8 80297 -NCIT:C124292 Childhood Choroid Plexus Carcinoma 9 80298 -NCIT:C4954 Localized Malignant Brain Neoplasm 7 80299 -NCIT:C4964 Malignant Supratentorial Neoplasm 7 80300 -NCIT:C124292 Childhood Choroid Plexus Carcinoma 8 80301 -NCIT:C186350 Supratentorial Ependymoma ZFTA Fusion-Positive 8 80302 -NCIT:C129351 Supratentorial Ependymoma, ZFTA-RELA Fusion-Positive 9 80303 -NCIT:C188935 Childhood Supratentorial Ependymoma ZFTA Fusion-Positive 9 80304 -NCIT:C188938 Adult Supratentorial Ependymoma ZFTA Fusion-Positive 9 80305 -NCIT:C3573 Malignant Pineal Region Neoplasm 8 80306 -NCIT:C6767 Malignant Pineal Region Germ Cell Tumor 9 80307 -NCIT:C6752 Pineal Region Yolk Sac Tumor 10 80308 -NCIT:C6759 Pineal Region Choriocarcinoma 10 80309 -NCIT:C8712 Pineal Region Germinoma 10 80310 -NCIT:C9344 Pineoblastoma 9 80311 -NCIT:C114812 Childhood Pineoblastoma 10 80312 -NCIT:C115374 Recurrent Childhood Pineoblastoma 11 80313 -NCIT:C8292 Adult Pineoblastoma 10 80314 -NCIT:C4577 Malignant Cerebral Neoplasm 8 80315 -NCIT:C185371 Diffuse Hemispheric Glioma, H3 G34-Mutant 9 80316 -NCIT:C188926 Childhood Diffuse Hemispheric Glioma, H3 G34-Mutant 10 80317 -NCIT:C188927 Adult Diffuse Hemispheric Glioma, H3 G34-Mutant 10 80318 -NCIT:C185471 Infant-Type Hemispheric Glioma 9 80319 -NCIT:C185472 Infant-Type Hemispheric Glioma, NTRK-Altered 10 80320 -NCIT:C185473 Infant-Type Hemispheric Glioma, ROS1-Altered 10 80321 -NCIT:C185474 Infant-Type Hemispheric Glioma, ALK-Altered 10 80322 -NCIT:C185475 Infant-Type Hemispheric Glioma, MET-Altered 10 80323 -NCIT:C4826 Central Nervous System Neuroblastoma 9 80324 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 10 80325 -NCIT:C186547 Central Nervous System Neuroblastoma, FOXR2-Activated 10 80326 -NCIT:C4970 Cerebral Embryonal Tumor, Not Otherwise Specified 9 80327 -NCIT:C5123 Hemispheric Anaplastic Astrocytoma 9 80328 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 10 80329 -NCIT:C156035 Frontal Lobe Anaplastic Astrocytoma 10 80330 -NCIT:C156036 Temporal Lobe Anaplastic Astrocytoma 10 80331 -NCIT:C171036 Parietal Lobe Anaplastic Astrocytoma 10 80332 -NCIT:C5151 Cerebral Glioblastoma 9 80333 -NCIT:C171013 Supratentorial Gliosarcoma 10 80334 -NCIT:C7611 Cerebral Lymphoma 9 80335 -NCIT:C5054 Cerebral Lymphoma in Immunocompetent Host 10 80336 -NCIT:C5055 Cerebral Hodgkin Lymphoma 10 80337 -NCIT:C7609 Cerebral Non-Hodgkin Lymphoma 10 80338 -NCIT:C92629 Central Nervous System Ganglioneuroblastoma 9 80339 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 10 80340 -NCIT:C5126 Malignant Diencephalic Neoplasm 8 80341 -NCIT:C175539 Malignant Hypothalamic Neoplasm 9 80342 -NCIT:C4576 Malignant Thalamic Neoplasm 9 80343 -NCIT:C5124 Anaplastic Diencephalic Astrocytoma 9 80344 -NCIT:C5129 Diencephalic Glioblastoma 9 80345 -NCIT:C5149 Supratentorial Glioblastoma 8 80346 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 9 80347 -NCIT:C5129 Diencephalic Glioblastoma 9 80348 -NCIT:C5151 Cerebral Glioblastoma 9 80349 -NCIT:C171013 Supratentorial Gliosarcoma 10 80350 -NCIT:C5416 Secondary Supratentorial Anaplastic Astrocytoma 8 80351 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 80352 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 9 80353 -NCIT:C6968 Supratentorial Embryonal Tumor, Not Otherwise Specified 8 80354 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 9 80355 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 10 80356 -NCIT:C4970 Cerebral Embryonal Tumor, Not Otherwise Specified 9 80357 -NCIT:C68703 Adult Supratentorial Embryonal Tumor, Not Otherwise Specified 9 80358 -NCIT:C4966 Malignant Infratentorial Neoplasm 7 80359 -NCIT:C3569 Malignant Cerebellar Neoplasm 8 80360 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 9 80361 -NCIT:C3222 Medulloblastoma 9 80362 -NCIT:C129436 Large Cell/Anaplastic Medulloblastoma 10 80363 -NCIT:C129439 Medulloblastoma Molecular Subtypes 10 80364 -NCIT:C129440 Medulloblastoma, WNT-Activated 11 80365 -NCIT:C180892 Refractory Medulloblastoma, WNT-Activated 12 80366 -NCIT:C180893 Recurrent Medulloblastoma, WNT-Activated 12 80367 -NCIT:C129441 Medulloblastoma, SHH-Activated 11 80368 -NCIT:C129442 Medulloblastoma, SHH-Activated, TP53-Mutant 12 80369 -NCIT:C129443 Medulloblastoma, SHH-Activated, TP53-Wildtype 12 80370 -NCIT:C186591 ELP1-Associated Medulloblastoma 13 80371 -NCIT:C147109 Recurrent Medulloblastoma, SHH-Activated 12 80372 -NCIT:C147110 Refractory Medulloblastoma, SHH-Activated 12 80373 -NCIT:C189841 Medulloblastoma, SHH-1 12 80374 -NCIT:C189844 Medulloblastoma, SHH-2 12 80375 -NCIT:C189845 Medulloblastoma, SHH-3 12 80376 -NCIT:C189846 Medulloblastoma, SHH-4 12 80377 -NCIT:C129444 Medulloblastoma, Non-WNT/Non-SHH 11 80378 -NCIT:C129445 Medulloblastoma, Non-WNT/Non-SHH, Group 3 12 80379 -NCIT:C129446 Medulloblastoma, Non-WNT/Non-SHH, Group 4 12 80380 -NCIT:C129447 Medulloblastoma, Not Otherwise Specified 10 80381 -NCIT:C142856 Refractory Medulloblastoma 10 80382 -NCIT:C147110 Refractory Medulloblastoma, SHH-Activated 11 80383 -NCIT:C180892 Refractory Medulloblastoma, WNT-Activated 11 80384 -NCIT:C156039 Fourth Ventricle Medulloblastoma 10 80385 -NCIT:C177725 Metastatic Medulloblastoma 10 80386 -NCIT:C5399 Medulloblastoma with Leptomeningeal Spread 11 80387 -NCIT:C27237 Familial Adenomatous Polyposis Associated Medulloblastoma 10 80388 -NCIT:C3706 Medullomyoblastoma 10 80389 -NCIT:C3997 Childhood Medulloblastoma 10 80390 -NCIT:C6774 Recurrent Childhood Medulloblastoma 11 80391 -NCIT:C4011 Adult Medulloblastoma 10 80392 -NCIT:C4956 Desmoplastic/Nodular Medulloblastoma 10 80393 -NCIT:C5401 Cerebellar Vermis Medulloblastoma 10 80394 -NCIT:C5402 Region 17p13 Allelic Loss Associated Medulloblastoma 10 80395 -NCIT:C54039 Classic Medulloblastoma 10 80396 -NCIT:C5405 Nevoid Basal Cell Carcinoma Syndrome Associated Medulloblastoma 10 80397 -NCIT:C5407 Medulloblastoma with Extensive Nodularity 10 80398 -NCIT:C5588 Recurrent Medulloblastoma 10 80399 -NCIT:C147109 Recurrent Medulloblastoma, SHH-Activated 11 80400 -NCIT:C180893 Recurrent Medulloblastoma, WNT-Activated 11 80401 -NCIT:C6774 Recurrent Childhood Medulloblastoma 11 80402 -NCIT:C6904 Large Cell Medulloblastoma 10 80403 -NCIT:C92625 Anaplastic Medulloblastoma 10 80404 -NCIT:C9497 Melanocytic Medulloblastoma 10 80405 -NCIT:C5270 Cerebellar Papillary Meningioma 9 80406 -NCIT:C3570 Malignant Brain Stem Neoplasm 8 80407 -NCIT:C5097 Brain Stem Glioblastoma 9 80408 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 80409 -NCIT:C9370 Adult Brain Stem Gliosarcoma 10 80410 -NCIT:C7446 Anaplastic Brain Stem Glioma 9 80411 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 10 80412 -NCIT:C8550 Metastatic Malignant Neoplasm in the Brain Stem 9 80413 -NCIT:C94764 Diffuse Intrinsic Pontine Glioma 9 80414 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 10 80415 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 10 80416 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 10 80417 -NCIT:C188925 Adult Diffuse Intrinsic Pontine Glioma 10 80418 -NCIT:C5148 Infratentorial Glioblastoma 8 80419 -NCIT:C5097 Brain Stem Glioblastoma 9 80420 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 80421 -NCIT:C9370 Adult Brain Stem Gliosarcoma 10 80422 -NCIT:C5150 Cerebellar Glioblastoma 9 80423 -NCIT:C5436 Cerebellopontine Angle Embryonal Tumor, Not Otherwise Specified 8 80424 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 80425 -NCIT:C5115 Adult Malignant Brain Neoplasm 7 80426 -NCIT:C188923 Adult Diffuse Midline Glioma, H3 K27-Altered 8 80427 -NCIT:C188925 Adult Diffuse Intrinsic Pontine Glioma 8 80428 -NCIT:C188927 Adult Diffuse Hemispheric Glioma, H3 G34-Mutant 8 80429 -NCIT:C188938 Adult Supratentorial Ependymoma ZFTA Fusion-Positive 8 80430 -NCIT:C4011 Adult Medulloblastoma 8 80431 -NCIT:C5816 Metastatic Adult Malignant Neoplasm in the Brain 8 80432 -NCIT:C68703 Adult Supratentorial Embryonal Tumor, Not Otherwise Specified 8 80433 -NCIT:C8292 Adult Pineoblastoma 8 80434 -NCIT:C9183 Adult Central Nervous System Solitary Fibrous Tumor, Grade 3 8 80435 -NCIT:C9375 Adult Brain Glioblastoma 8 80436 -NCIT:C9370 Adult Brain Stem Gliosarcoma 9 80437 -NCIT:C5154 Brain Sarcoma 7 80438 -NCIT:C186610 Primary Intracranial Sarcoma, DICER1-Mutant 8 80439 -NCIT:C5462 Brain Extraskeletal Myxoid Chondrosarcoma 8 80440 -NCIT:C6973 Brain Liposarcoma 8 80441 -NCIT:C5817 Intracranial Embryonal Tumor, Not Otherwise Specified 7 80442 -NCIT:C5436 Cerebellopontine Angle Embryonal Tumor, Not Otherwise Specified 8 80443 -NCIT:C6968 Supratentorial Embryonal Tumor, Not Otherwise Specified 8 80444 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 9 80445 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 10 80446 -NCIT:C4970 Cerebral Embryonal Tumor, Not Otherwise Specified 9 80447 -NCIT:C68703 Adult Supratentorial Embryonal Tumor, Not Otherwise Specified 9 80448 -NCIT:C6284 Brain Germinoma 7 80449 -NCIT:C156040 Third Ventricle Germinoma 8 80450 -NCIT:C6207 Childhood Brain Germinoma 8 80451 -NCIT:C8712 Pineal Region Germinoma 8 80452 -NCIT:C7045 Malignant Intracranial Neoplasm by Morphology 6 80453 -NCIT:C27307 Anaplastic (Malignant) Intracranial Meningioma 7 80454 -NCIT:C5403 Malignant Intracranial Germ Cell Tumor 7 80455 -NCIT:C155804 Sellar Yolk Sac Tumor 8 80456 -NCIT:C155805 Sellar Embryonal Carcinoma 8 80457 -NCIT:C155806 Sellar Choriocarcinoma 8 80458 -NCIT:C155810 Sellar Teratoma with Malignant Transformation 8 80459 -NCIT:C155811 Sellar Mixed Germ Cell Tumor 8 80460 -NCIT:C5430 Intracranial Germinoma 8 80461 -NCIT:C155802 Sellar Germinoma 9 80462 -NCIT:C155803 Suprasellar Germinoma 10 80463 -NCIT:C6284 Brain Germinoma 9 80464 -NCIT:C156040 Third Ventricle Germinoma 10 80465 -NCIT:C6207 Childhood Brain Germinoma 10 80466 -NCIT:C8712 Pineal Region Germinoma 10 80467 -NCIT:C6767 Malignant Pineal Region Germ Cell Tumor 8 80468 -NCIT:C6752 Pineal Region Yolk Sac Tumor 9 80469 -NCIT:C6759 Pineal Region Choriocarcinoma 9 80470 -NCIT:C8712 Pineal Region Germinoma 9 80471 -NCIT:C5442 Intracranial Melanoma 7 80472 -NCIT:C5462 Brain Extraskeletal Myxoid Chondrosarcoma 7 80473 -NCIT:C6973 Brain Liposarcoma 7 80474 -NCIT:C7008 Intracranial Myeloid Sarcoma 7 80475 -NCIT:C9183 Adult Central Nervous System Solitary Fibrous Tumor, Grade 3 7 80476 -NCIT:C5478 Adult Intracranial Neoplasm 5 80477 -NCIT:C114778 Adult Intracranial Germ Cell Tumor 6 80478 -NCIT:C7710 Adult Brain Neoplasm 6 80479 -NCIT:C115250 Adult Mixed Glioma 7 80480 -NCIT:C9371 Adult Brain Stem Mixed Glioma 8 80481 -NCIT:C115327 Adult Pineal Gland Astrocytoma 7 80482 -NCIT:C115623 Adult Subependymoma 7 80483 -NCIT:C188932 Adult Dysembryoplastic Neuroepithelial Tumor 7 80484 -NCIT:C188934 Adult Multinodular and Vacuolated Neuronal Tumor 7 80485 -NCIT:C5115 Adult Malignant Brain Neoplasm 7 80486 -NCIT:C188923 Adult Diffuse Midline Glioma, H3 K27-Altered 8 80487 -NCIT:C188925 Adult Diffuse Intrinsic Pontine Glioma 8 80488 -NCIT:C188927 Adult Diffuse Hemispheric Glioma, H3 G34-Mutant 8 80489 -NCIT:C188938 Adult Supratentorial Ependymoma ZFTA Fusion-Positive 8 80490 -NCIT:C4011 Adult Medulloblastoma 8 80491 -NCIT:C5816 Metastatic Adult Malignant Neoplasm in the Brain 8 80492 -NCIT:C68703 Adult Supratentorial Embryonal Tumor, Not Otherwise Specified 8 80493 -NCIT:C8292 Adult Pineoblastoma 8 80494 -NCIT:C9183 Adult Central Nervous System Solitary Fibrous Tumor, Grade 3 8 80495 -NCIT:C9375 Adult Brain Glioblastoma 8 80496 -NCIT:C9370 Adult Brain Stem Gliosarcoma 9 80497 -NCIT:C5116 Adult Benign Brain Neoplasm 7 80498 -NCIT:C4010 Adult Craniopharyngioma 8 80499 -NCIT:C188949 Adult Adamantinomatous Craniopharyngioma 9 80500 -NCIT:C5796 Adult Benign Cerebellar Neoplasm 8 80501 -NCIT:C5797 Adult Benign Brain Stem Neoplasm 8 80502 -NCIT:C6218 Adult Benign Cerebral Neoplasm 8 80503 -NCIT:C8291 Adult Pineocytoma 8 80504 -NCIT:C5967 Adult Brain Stem Neoplasm 7 80505 -NCIT:C5797 Adult Benign Brain Stem Neoplasm 8 80506 -NCIT:C9091 Adult Brain Stem Glioma 8 80507 -NCIT:C188925 Adult Diffuse Intrinsic Pontine Glioma 9 80508 -NCIT:C6954 Adult Brain Stem Astrocytoma 9 80509 -NCIT:C9370 Adult Brain Stem Gliosarcoma 9 80510 -NCIT:C9371 Adult Brain Stem Mixed Glioma 9 80511 -NCIT:C5968 Adult Cerebellar Neoplasm 7 80512 -NCIT:C4011 Adult Medulloblastoma 8 80513 -NCIT:C5796 Adult Benign Cerebellar Neoplasm 8 80514 -NCIT:C7884 Recurrent Adult Brain Neoplasm 7 80515 -NCIT:C8273 Adult Pineal Parenchymal Cell Neoplasm 7 80516 -NCIT:C8291 Adult Pineocytoma 8 80517 -NCIT:C8292 Adult Pineoblastoma 8 80518 -NCIT:C8568 Adult Choroid Plexus Neoplasm 7 80519 -NCIT:C9372 Adult Brain Ependymoma 7 80520 -NCIT:C188938 Adult Supratentorial Ependymoma ZFTA Fusion-Positive 8 80521 -NCIT:C188945 Adult Posterior Fossa Ependymoma 8 80522 -NCIT:C9374 Adult Intracranial Meningioma 7 80523 -NCIT:C9376 Adult Brain Oligodendroglioma 7 80524 -NCIT:C6262 Visual Pathway Neoplasm 5 80525 -NCIT:C175221 Malignant Visual Pathway Neoplasm 6 80526 -NCIT:C170941 Malignant Optic Nerve Neoplasm 7 80527 -NCIT:C175220 Metastatic Malignant Neoplasm in the Visual Pathway 7 80528 -NCIT:C175224 Visual Pathway Melanocytoma 6 80529 -NCIT:C4230 Optic Disc Melanocytoma 7 80530 -NCIT:C175225 Visual Pathway Medulloepithelioma 6 80531 -NCIT:C179885 Optic Tract Neoplasm 6 80532 -NCIT:C179886 Optic Chiasm Neoplasm 6 80533 -NCIT:C4801 Optic Nerve Neoplasm 6 80534 -NCIT:C170941 Malignant Optic Nerve Neoplasm 7 80535 -NCIT:C175496 Optic Nerve Sheath Solitary Fibrous Tumor 7 80536 -NCIT:C4537 Optic Nerve Glioma 7 80537 -NCIT:C6769 Optic Nerve Astrocytoma 8 80538 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 9 80539 -NCIT:C7531 Recurrent Childhood Optic Nerve Glioma 8 80540 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 9 80541 -NCIT:C4538 Optic Nerve Sheath Meningioma 7 80542 -NCIT:C5304 Bilateral Optic Nerve Meningioma 7 80543 -NCIT:C5587 Visual Pathway Meningioma 6 80544 -NCIT:C4538 Optic Nerve Sheath Meningioma 7 80545 -NCIT:C5304 Bilateral Optic Nerve Meningioma 7 80546 -NCIT:C7538 Anterior Visual Pathway Meningioma 7 80547 -NCIT:C8567 Visual Pathway Glioma 6 80548 -NCIT:C155983 Recurrent Visual Pathway Glioma 7 80549 -NCIT:C7529 Recurrent Childhood Visual Pathway Glioma 8 80550 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 9 80551 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 80552 -NCIT:C7531 Recurrent Childhood Optic Nerve Glioma 9 80553 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 80554 -NCIT:C155984 Refractory Visual Pathway Glioma 7 80555 -NCIT:C4537 Optic Nerve Glioma 7 80556 -NCIT:C6769 Optic Nerve Astrocytoma 8 80557 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 9 80558 -NCIT:C7531 Recurrent Childhood Optic Nerve Glioma 8 80559 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 9 80560 -NCIT:C7533 Visual Pathway Astrocytoma 7 80561 -NCIT:C174539 Retinal Astrocytoma 8 80562 -NCIT:C6769 Optic Nerve Astrocytoma 8 80563 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 9 80564 -NCIT:C7534 Childhood Visual Pathway Astrocytoma 8 80565 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 9 80566 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 80567 -NCIT:C7535 Childhood Visual Pathway Glioma 7 80568 -NCIT:C7529 Recurrent Childhood Visual Pathway Glioma 8 80569 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 9 80570 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 80571 -NCIT:C7531 Recurrent Childhood Optic Nerve Glioma 9 80572 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 80573 -NCIT:C7534 Childhood Visual Pathway Astrocytoma 8 80574 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 9 80575 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 80576 -NCIT:C5131 Adult Central Nervous System Neoplasm 4 80577 -NCIT:C115253 Adult Primary Meningeal Melanocytic Neoplasm 5 80578 -NCIT:C5319 Adult Meningeal Melanoma 6 80579 -NCIT:C188930 Adult Astroblastoma, MN1-Altered 5 80580 -NCIT:C27363 Adult Ganglioglioma 5 80581 -NCIT:C5411 Adult Central Nervous System Embryonal Tumor, Not Otherwise Specified 5 80582 -NCIT:C68703 Adult Supratentorial Embryonal Tumor, Not Otherwise Specified 6 80583 -NCIT:C5478 Adult Intracranial Neoplasm 5 80584 -NCIT:C114778 Adult Intracranial Germ Cell Tumor 6 80585 -NCIT:C7710 Adult Brain Neoplasm 6 80586 -NCIT:C115250 Adult Mixed Glioma 7 80587 -NCIT:C9371 Adult Brain Stem Mixed Glioma 8 80588 -NCIT:C115327 Adult Pineal Gland Astrocytoma 7 80589 -NCIT:C115623 Adult Subependymoma 7 80590 -NCIT:C188932 Adult Dysembryoplastic Neuroepithelial Tumor 7 80591 -NCIT:C188934 Adult Multinodular and Vacuolated Neuronal Tumor 7 80592 -NCIT:C5115 Adult Malignant Brain Neoplasm 7 80593 -NCIT:C188923 Adult Diffuse Midline Glioma, H3 K27-Altered 8 80594 -NCIT:C188925 Adult Diffuse Intrinsic Pontine Glioma 8 80595 -NCIT:C188927 Adult Diffuse Hemispheric Glioma, H3 G34-Mutant 8 80596 -NCIT:C188938 Adult Supratentorial Ependymoma ZFTA Fusion-Positive 8 80597 -NCIT:C4011 Adult Medulloblastoma 8 80598 -NCIT:C5816 Metastatic Adult Malignant Neoplasm in the Brain 8 80599 -NCIT:C68703 Adult Supratentorial Embryonal Tumor, Not Otherwise Specified 8 80600 -NCIT:C8292 Adult Pineoblastoma 8 80601 -NCIT:C9183 Adult Central Nervous System Solitary Fibrous Tumor, Grade 3 8 80602 -NCIT:C9375 Adult Brain Glioblastoma 8 80603 -NCIT:C9370 Adult Brain Stem Gliosarcoma 9 80604 -NCIT:C5116 Adult Benign Brain Neoplasm 7 80605 -NCIT:C4010 Adult Craniopharyngioma 8 80606 -NCIT:C188949 Adult Adamantinomatous Craniopharyngioma 9 80607 -NCIT:C5796 Adult Benign Cerebellar Neoplasm 8 80608 -NCIT:C5797 Adult Benign Brain Stem Neoplasm 8 80609 -NCIT:C6218 Adult Benign Cerebral Neoplasm 8 80610 -NCIT:C8291 Adult Pineocytoma 8 80611 -NCIT:C5967 Adult Brain Stem Neoplasm 7 80612 -NCIT:C5797 Adult Benign Brain Stem Neoplasm 8 80613 -NCIT:C9091 Adult Brain Stem Glioma 8 80614 -NCIT:C188925 Adult Diffuse Intrinsic Pontine Glioma 9 80615 -NCIT:C6954 Adult Brain Stem Astrocytoma 9 80616 -NCIT:C9370 Adult Brain Stem Gliosarcoma 9 80617 -NCIT:C9371 Adult Brain Stem Mixed Glioma 9 80618 -NCIT:C5968 Adult Cerebellar Neoplasm 7 80619 -NCIT:C4011 Adult Medulloblastoma 8 80620 -NCIT:C5796 Adult Benign Cerebellar Neoplasm 8 80621 -NCIT:C7884 Recurrent Adult Brain Neoplasm 7 80622 -NCIT:C8273 Adult Pineal Parenchymal Cell Neoplasm 7 80623 -NCIT:C8291 Adult Pineocytoma 8 80624 -NCIT:C8292 Adult Pineoblastoma 8 80625 -NCIT:C8568 Adult Choroid Plexus Neoplasm 7 80626 -NCIT:C9372 Adult Brain Ependymoma 7 80627 -NCIT:C188938 Adult Supratentorial Ependymoma ZFTA Fusion-Positive 8 80628 -NCIT:C188945 Adult Posterior Fossa Ependymoma 8 80629 -NCIT:C9374 Adult Intracranial Meningioma 7 80630 -NCIT:C9376 Adult Brain Oligodendroglioma 7 80631 -NCIT:C6285 Adult Central Nervous System Germ Cell Tumor 5 80632 -NCIT:C114778 Adult Intracranial Germ Cell Tumor 6 80633 -NCIT:C27402 Adult Central Nervous System Mixed Germ Cell Tumor 6 80634 -NCIT:C5790 Adult Central Nervous System Embryonal Carcinoma 6 80635 -NCIT:C5792 Adult Central Nervous System Germinoma 6 80636 -NCIT:C5793 Adult Central Nervous System Choriocarcinoma 6 80637 -NCIT:C5794 Adult Central Nervous System Teratoma 6 80638 -NCIT:C27400 Adult Central Nervous System Mature Teratoma 7 80639 -NCIT:C27401 Adult Central Nervous System Immature Teratoma 7 80640 -NCIT:C68690 Adult Ependymal Tumor 5 80641 -NCIT:C115263 Adult Myxopapillary Ependymoma 6 80642 -NCIT:C115623 Adult Subependymoma 6 80643 -NCIT:C8269 Adult Anaplastic Ependymoma 6 80644 -NCIT:C9092 Adult Ependymoma 6 80645 -NCIT:C27399 Adult Spinal Cord Ependymoma 7 80646 -NCIT:C9372 Adult Brain Ependymoma 7 80647 -NCIT:C188938 Adult Supratentorial Ependymoma ZFTA Fusion-Positive 8 80648 -NCIT:C188945 Adult Posterior Fossa Ependymoma 8 80649 -NCIT:C68691 Adult Oligodendroglial Tumor 5 80650 -NCIT:C4014 Adult Oligodendroglioma 6 80651 -NCIT:C9376 Adult Brain Oligodendroglioma 7 80652 -NCIT:C8270 Adult Anaplastic Oligodendroglioma 6 80653 -NCIT:C7049 Adult Astrocytic Tumor 5 80654 -NCIT:C115327 Adult Pineal Gland Astrocytoma 6 80655 -NCIT:C6954 Adult Brain Stem Astrocytoma 6 80656 -NCIT:C71016 Adult Pilocytic Astrocytoma 6 80657 -NCIT:C71017 Adult Subependymal Giant Cell Astrocytoma 6 80658 -NCIT:C8289 Adult Infiltrating Astrocytic Tumor 6 80659 -NCIT:C7174 Adult Diffuse Astrocytoma 7 80660 -NCIT:C8257 Adult Anaplastic Astrocytoma 7 80661 -NCIT:C9094 Adult Glioblastoma 7 80662 -NCIT:C27183 Adult Spinal Cord Glioblastoma 8 80663 -NCIT:C68701 Adult Gliosarcoma 8 80664 -NCIT:C9370 Adult Brain Stem Gliosarcoma 9 80665 -NCIT:C68702 Adult Giant Cell Glioblastoma 8 80666 -NCIT:C9375 Adult Brain Glioblastoma 8 80667 -NCIT:C9370 Adult Brain Stem Gliosarcoma 9 80668 -NCIT:C71024 Adult Spinal Cord Neoplasm 5 80669 -NCIT:C27399 Adult Spinal Cord Ependymoma 6 80670 -NCIT:C71713 Recurrent Adult Spinal Cord Neoplasm 6 80671 -NCIT:C71715 Refractory Adult Spinal Cord Neoplasm 6 80672 -NCIT:C8290 Adult Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 5 80673 -NCIT:C9093 Adult Meningioma 5 80674 -NCIT:C71299 Adult Grade 1 Meningioma 6 80675 -NCIT:C71304 Adult Grade 2 Meningioma 6 80676 -NCIT:C6852 Adult Atypical Meningioma 7 80677 -NCIT:C71305 Adult Grade 3 Meningioma 6 80678 -NCIT:C8275 Adult Anaplastic (Malignant) Meningioma 7 80679 -NCIT:C8293 Adult Papillary Meningioma 7 80680 -NCIT:C9374 Adult Intracranial Meningioma 6 80681 -NCIT:C5132 Childhood Central Nervous System Neoplasm 4 80682 -NCIT:C115192 Childhood Ependymal Tumor 5 80683 -NCIT:C124269 Childhood Myxopapillary Ependymoma 6 80684 -NCIT:C124293 Childhood Anaplastic Ependymoma 6 80685 -NCIT:C8578 Childhood Ependymoma 6 80686 -NCIT:C186351 Supratentorial Ependymoma YAP1 Fusion-Positive 7 80687 -NCIT:C186355 Supratentorial Ependymoma, YAP1-MAMLD1 Fusion-Positive 8 80688 -NCIT:C186495 Childhood Spinal Cord Ependymoma 7 80689 -NCIT:C188935 Childhood Supratentorial Ependymoma ZFTA Fusion-Positive 7 80690 -NCIT:C188943 Childhood Posterior Fossa Ependymoma 7 80691 -NCIT:C8579 Recurrent Childhood Ependymoma 7 80692 -NCIT:C9041 Childhood Infratentorial Ependymoma 7 80693 -NCIT:C9043 Childhood Supratentorial Ependymoma, Not Otherwise Specified 7 80694 -NCIT:C6268 Childhood Cerebral Ependymoma, Not Otherwise Specified 8 80695 -NCIT:C115195 Childhood Mixed Glioma 5 80696 -NCIT:C114760 Childhood Brain Stem Mixed Glioma 6 80697 -NCIT:C114973 Childhood Anaplastic Oligoastrocytoma 6 80698 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 7 80699 -NCIT:C114974 Childhood Oligoastrocytoma 6 80700 -NCIT:C115370 Recurrent Childhood Oligoastrocytoma 7 80701 -NCIT:C187214 Refractory Childhood Central Nervous System Neoplasm 5 80702 -NCIT:C187215 Refractory Childhood Brain Neoplasm 6 80703 -NCIT:C71714 Refractory Childhood Spinal Cord Neoplasm 6 80704 -NCIT:C188929 Childhood Astroblastoma, MN1-Altered 5 80705 -NCIT:C27362 Childhood Ganglioglioma 5 80706 -NCIT:C35876 Childhood Intracranial Neoplasm 5 80707 -NCIT:C7703 Childhood Brain Neoplasm 6 80708 -NCIT:C114773 Childhood Brain Oligodendroglioma 7 80709 -NCIT:C187207 Childhood Malignant Brain Neoplasm 7 80710 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 80711 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 9 80712 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 8 80713 -NCIT:C114812 Childhood Pineoblastoma 8 80714 -NCIT:C115374 Recurrent Childhood Pineoblastoma 9 80715 -NCIT:C114969 Childhood Gliomatosis Cerebri 8 80716 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 9 80717 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 8 80718 -NCIT:C124292 Childhood Choroid Plexus Carcinoma 8 80719 -NCIT:C147901 Childhood Brain Glioblastoma 8 80720 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 9 80721 -NCIT:C185471 Infant-Type Hemispheric Glioma 8 80722 -NCIT:C185472 Infant-Type Hemispheric Glioma, NTRK-Altered 9 80723 -NCIT:C185473 Infant-Type Hemispheric Glioma, ROS1-Altered 9 80724 -NCIT:C185474 Infant-Type Hemispheric Glioma, ALK-Altered 9 80725 -NCIT:C185475 Infant-Type Hemispheric Glioma, MET-Altered 9 80726 -NCIT:C187211 Metastatic Childhood Malignant Neoplasm in the Brain 8 80727 -NCIT:C187212 Metastatic Childhood Malignant Brain Neoplasm 8 80728 -NCIT:C187213 Advanced Childhood Malignant Brain Neoplasm 9 80729 -NCIT:C188922 Childhood Diffuse Midline Glioma, H3 K27-Altered 8 80730 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 8 80731 -NCIT:C188926 Childhood Diffuse Hemispheric Glioma, H3 G34-Mutant 8 80732 -NCIT:C188935 Childhood Supratentorial Ependymoma ZFTA Fusion-Positive 8 80733 -NCIT:C3997 Childhood Medulloblastoma 8 80734 -NCIT:C6774 Recurrent Childhood Medulloblastoma 9 80735 -NCIT:C6207 Childhood Brain Germinoma 8 80736 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 8 80737 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 9 80738 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 9 80739 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 80740 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 9 80741 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 80742 -NCIT:C187215 Refractory Childhood Brain Neoplasm 7 80743 -NCIT:C188931 Childhood Dysembryoplastic Neuroepithelial Tumor 7 80744 -NCIT:C188943 Childhood Posterior Fossa Ependymoma 7 80745 -NCIT:C5795 Childhood Brain Germ Cell Tumor 7 80746 -NCIT:C6207 Childhood Brain Germinoma 8 80747 -NCIT:C5798 Childhood Benign Brain Neoplasm 7 80748 -NCIT:C5799 Childhood Benign Supratentorial Neoplasm 8 80749 -NCIT:C5800 Childhood Choroid Plexus Papilloma 9 80750 -NCIT:C6219 Childhood Benign Cerebral Neoplasm 9 80751 -NCIT:C7816 Childhood Craniopharyngioma 8 80752 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 9 80753 -NCIT:C5802 Childhood Infratentorial Neoplasm 7 80754 -NCIT:C5969 Childhood Brain Stem Neoplasm 8 80755 -NCIT:C9042 Childhood Brain Stem Glioma 9 80756 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 80757 -NCIT:C114760 Childhood Brain Stem Mixed Glioma 10 80758 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 10 80759 -NCIT:C6216 Childhood Brain Stem Astrocytoma 10 80760 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 11 80761 -NCIT:C9190 Recurrent Childhood Brain Stem Glioma 10 80762 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 11 80763 -NCIT:C5970 Childhood Cerebellar Neoplasm 8 80764 -NCIT:C3997 Childhood Medulloblastoma 9 80765 -NCIT:C6774 Recurrent Childhood Medulloblastoma 10 80766 -NCIT:C6286 Childhood Cerebellar Astrocytoma 9 80767 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 10 80768 -NCIT:C8389 Recurrent Childhood Cerebellar Astrocytoma 10 80769 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 80770 -NCIT:C9041 Childhood Infratentorial Ependymoma 8 80771 -NCIT:C5960 Childhood Supratentorial Neoplasm 7 80772 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 80773 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 9 80774 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 8 80775 -NCIT:C115196 Childhood Pineal Parenchymal Cell Neoplasm 8 80776 -NCIT:C114812 Childhood Pineoblastoma 9 80777 -NCIT:C115374 Recurrent Childhood Pineoblastoma 10 80778 -NCIT:C124137 Childhood Pineal Parenchymal Tumor of Intermediate Differentiation 9 80779 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 8 80780 -NCIT:C185471 Infant-Type Hemispheric Glioma 8 80781 -NCIT:C185472 Infant-Type Hemispheric Glioma, NTRK-Altered 9 80782 -NCIT:C185473 Infant-Type Hemispheric Glioma, ROS1-Altered 9 80783 -NCIT:C185474 Infant-Type Hemispheric Glioma, ALK-Altered 9 80784 -NCIT:C185475 Infant-Type Hemispheric Glioma, MET-Altered 9 80785 -NCIT:C186351 Supratentorial Ependymoma YAP1 Fusion-Positive 8 80786 -NCIT:C186355 Supratentorial Ependymoma, YAP1-MAMLD1 Fusion-Positive 9 80787 -NCIT:C188926 Childhood Diffuse Hemispheric Glioma, H3 G34-Mutant 8 80788 -NCIT:C188933 Childhood Multinodular and Vacuolated Neuronal Tumor 8 80789 -NCIT:C188935 Childhood Supratentorial Ependymoma ZFTA Fusion-Positive 8 80790 -NCIT:C42080 Childhood Choroid Plexus Neoplasm 8 80791 -NCIT:C124291 Childhood Atypical Choroid Plexus Papilloma 9 80792 -NCIT:C124292 Childhood Choroid Plexus Carcinoma 9 80793 -NCIT:C5800 Childhood Choroid Plexus Papilloma 9 80794 -NCIT:C4347 Childhood Cerebral Astrocytoma 8 80795 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 9 80796 -NCIT:C8387 Childhood Cerebral Diffuse Astrocytoma 9 80797 -NCIT:C9191 Recurrent Childhood Cerebral Astrocytoma 9 80798 -NCIT:C5799 Childhood Benign Supratentorial Neoplasm 8 80799 -NCIT:C5800 Childhood Choroid Plexus Papilloma 9 80800 -NCIT:C6219 Childhood Benign Cerebral Neoplasm 9 80801 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 80802 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 9 80803 -NCIT:C9043 Childhood Supratentorial Ependymoma, Not Otherwise Specified 8 80804 -NCIT:C6268 Childhood Cerebral Ependymoma, Not Otherwise Specified 9 80805 -NCIT:C6253 Childhood Intracranial Meningioma 7 80806 -NCIT:C7535 Childhood Visual Pathway Glioma 7 80807 -NCIT:C7529 Recurrent Childhood Visual Pathway Glioma 8 80808 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 9 80809 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 80810 -NCIT:C7531 Recurrent Childhood Optic Nerve Glioma 9 80811 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 80812 -NCIT:C7534 Childhood Visual Pathway Astrocytoma 8 80813 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 9 80814 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 80815 -NCIT:C7834 Recurrent Childhood Brain Neoplasm 7 80816 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 8 80817 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 80818 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 80819 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 80820 -NCIT:C7529 Recurrent Childhood Visual Pathway Glioma 8 80821 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 9 80822 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 80823 -NCIT:C7531 Recurrent Childhood Optic Nerve Glioma 9 80824 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 80825 -NCIT:C8389 Recurrent Childhood Cerebellar Astrocytoma 8 80826 -NCIT:C9190 Recurrent Childhood Brain Stem Glioma 8 80827 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 9 80828 -NCIT:C9191 Recurrent Childhood Cerebral Astrocytoma 8 80829 -NCIT:C4045 Childhood Oligodendroglioma 5 80830 -NCIT:C114773 Childhood Brain Oligodendroglioma 6 80831 -NCIT:C115371 Recurrent Childhood Oligodendroglioma 6 80832 -NCIT:C4738 Desmoplastic Infantile Ganglioglioma 5 80833 -NCIT:C5448 Childhood Malignant Central Nervous System Neoplasm 5 80834 -NCIT:C114833 Childhood Central Nervous System Embryonal Tumor 6 80835 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 7 80836 -NCIT:C114812 Childhood Pineoblastoma 7 80837 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 80838 -NCIT:C114836 Recurrent Childhood Central Nervous System Embryonal Neoplasm 7 80839 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 80840 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 80841 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 80842 -NCIT:C115203 Childhood Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 7 80843 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 80844 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 9 80845 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 80846 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 7 80847 -NCIT:C3997 Childhood Medulloblastoma 7 80848 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 80849 -NCIT:C5961 Childhood Central Nervous System Embryonal Tumor, Not Otherwise Specified 7 80850 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 80851 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 9 80852 -NCIT:C68634 Childhood Atypical Teratoid/Rhabdoid Tumor 7 80853 -NCIT:C114973 Childhood Anaplastic Oligoastrocytoma 6 80854 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 7 80855 -NCIT:C124293 Childhood Anaplastic Ependymoma 6 80856 -NCIT:C187207 Childhood Malignant Brain Neoplasm 6 80857 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 7 80858 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 80859 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 7 80860 -NCIT:C114812 Childhood Pineoblastoma 7 80861 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 80862 -NCIT:C114969 Childhood Gliomatosis Cerebri 7 80863 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 8 80864 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 7 80865 -NCIT:C124292 Childhood Choroid Plexus Carcinoma 7 80866 -NCIT:C147901 Childhood Brain Glioblastoma 7 80867 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 8 80868 -NCIT:C185471 Infant-Type Hemispheric Glioma 7 80869 -NCIT:C185472 Infant-Type Hemispheric Glioma, NTRK-Altered 8 80870 -NCIT:C185473 Infant-Type Hemispheric Glioma, ROS1-Altered 8 80871 -NCIT:C185474 Infant-Type Hemispheric Glioma, ALK-Altered 8 80872 -NCIT:C185475 Infant-Type Hemispheric Glioma, MET-Altered 8 80873 -NCIT:C187211 Metastatic Childhood Malignant Neoplasm in the Brain 7 80874 -NCIT:C187212 Metastatic Childhood Malignant Brain Neoplasm 7 80875 -NCIT:C187213 Advanced Childhood Malignant Brain Neoplasm 8 80876 -NCIT:C188922 Childhood Diffuse Midline Glioma, H3 K27-Altered 7 80877 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 7 80878 -NCIT:C188926 Childhood Diffuse Hemispheric Glioma, H3 G34-Mutant 7 80879 -NCIT:C188935 Childhood Supratentorial Ependymoma ZFTA Fusion-Positive 7 80880 -NCIT:C3997 Childhood Medulloblastoma 7 80881 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 80882 -NCIT:C6207 Childhood Brain Germinoma 7 80883 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 7 80884 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 8 80885 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 8 80886 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 7 80887 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 80888 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 7 80889 -NCIT:C27403 Childhood Central Nervous System Mixed Germ Cell Tumor 6 80890 -NCIT:C27406 Childhood Central Nervous System Germinoma 6 80891 -NCIT:C6207 Childhood Brain Germinoma 7 80892 -NCIT:C5136 Childhood Glioblastoma 6 80893 -NCIT:C114966 Childhood Giant Cell Glioblastoma 7 80894 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 8 80895 -NCIT:C114968 Childhood Gliosarcoma 7 80896 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 8 80897 -NCIT:C115365 Recurrent Childhood Gliosarcoma 8 80898 -NCIT:C115364 Recurrent Childhood Glioblastoma 7 80899 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 8 80900 -NCIT:C115365 Recurrent Childhood Gliosarcoma 8 80901 -NCIT:C147901 Childhood Brain Glioblastoma 7 80902 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 8 80903 -NCIT:C5318 Childhood Meningeal Melanoma 6 80904 -NCIT:C5447 Childhood Anaplastic Oligodendroglioma 6 80905 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 7 80906 -NCIT:C6206 Childhood Central Nervous System Choriocarcinoma 6 80907 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 6 80908 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 6 80909 -NCIT:C6215 Childhood Anaplastic Astrocytoma 6 80910 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 7 80911 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 7 80912 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 8 80913 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 8 80914 -NCIT:C71303 Childhood Grade 3 Meningioma 6 80915 -NCIT:C9047 Childhood Intraocular Retinoblastoma 6 80916 -NCIT:C9048 Childhood Extraocular Retinoblastoma 6 80917 -NCIT:C5591 Childhood Benign Central Nervous System Neoplasm 5 80918 -NCIT:C27404 Childhood Central Nervous System Mature Teratoma 6 80919 -NCIT:C5798 Childhood Benign Brain Neoplasm 6 80920 -NCIT:C5799 Childhood Benign Supratentorial Neoplasm 7 80921 -NCIT:C5800 Childhood Choroid Plexus Papilloma 8 80922 -NCIT:C6219 Childhood Benign Cerebral Neoplasm 8 80923 -NCIT:C7816 Childhood Craniopharyngioma 7 80924 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 8 80925 -NCIT:C6205 Childhood Central Nervous System Germ Cell Tumor 5 80926 -NCIT:C27403 Childhood Central Nervous System Mixed Germ Cell Tumor 6 80927 -NCIT:C27406 Childhood Central Nervous System Germinoma 6 80928 -NCIT:C6207 Childhood Brain Germinoma 7 80929 -NCIT:C5795 Childhood Brain Germ Cell Tumor 6 80930 -NCIT:C6207 Childhood Brain Germinoma 7 80931 -NCIT:C6204 Childhood Central Nervous System Teratoma 6 80932 -NCIT:C27404 Childhood Central Nervous System Mature Teratoma 7 80933 -NCIT:C27405 Childhood Central Nervous System Immature Teratoma 7 80934 -NCIT:C6206 Childhood Central Nervous System Choriocarcinoma 6 80935 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 6 80936 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 6 80937 -NCIT:C8264 Childhood Meningioma 5 80938 -NCIT:C6253 Childhood Intracranial Meningioma 6 80939 -NCIT:C71300 Childhood Grade 1 Meningioma 6 80940 -NCIT:C71301 Childhood Grade 2 Meningioma 6 80941 -NCIT:C71303 Childhood Grade 3 Meningioma 6 80942 -NCIT:C9022 Childhood Astrocytic Tumor 5 80943 -NCIT:C114956 Recurrent Childhood Astrocytic Tumor 6 80944 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 7 80945 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 7 80946 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 8 80947 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 8 80948 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 8 80949 -NCIT:C115364 Recurrent Childhood Glioblastoma 7 80950 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 8 80951 -NCIT:C115365 Recurrent Childhood Gliosarcoma 8 80952 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 7 80953 -NCIT:C115373 Recurrent Childhood Pilomyxoid Astrocytoma 7 80954 -NCIT:C115375 Recurrent Childhood Pleomorphic Xanthoastrocytoma 7 80955 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 7 80956 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 7 80957 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 7 80958 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 8 80959 -NCIT:C8389 Recurrent Childhood Cerebellar Astrocytoma 7 80960 -NCIT:C9191 Recurrent Childhood Cerebral Astrocytoma 7 80961 -NCIT:C124275 Childhood Astrocytoma 6 80962 -NCIT:C114785 Childhood Subependymal Giant Cell Astrocytoma 7 80963 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 8 80964 -NCIT:C114967 Childhood Diffuse Astrocytoma 7 80965 -NCIT:C114963 Childhood Fibrillary Astrocytoma 8 80966 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 9 80967 -NCIT:C114964 Childhood Gemistocytic Astrocytoma 8 80968 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 9 80969 -NCIT:C114972 Childhood Protoplasmic Astrocytoma 8 80970 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 9 80971 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 8 80972 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 9 80973 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 9 80974 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 9 80975 -NCIT:C188920 Childhood Diffuse Astrocytoma, MYBL1-Altered 8 80976 -NCIT:C188921 Childhood Diffuse Astrocytoma, MYB-Altered 8 80977 -NCIT:C8387 Childhood Cerebral Diffuse Astrocytoma 8 80978 -NCIT:C114970 Childhood Pilomyxoid Astrocytoma 7 80979 -NCIT:C115373 Recurrent Childhood Pilomyxoid Astrocytoma 8 80980 -NCIT:C114971 Childhood Pleomorphic Xanthoastrocytoma 7 80981 -NCIT:C115375 Recurrent Childhood Pleomorphic Xanthoastrocytoma 8 80982 -NCIT:C4048 Childhood Pilocytic Astrocytoma 7 80983 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 8 80984 -NCIT:C27081 Juvenile Pilocytic Astrocytoma 8 80985 -NCIT:C4347 Childhood Cerebral Astrocytoma 7 80986 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 8 80987 -NCIT:C8387 Childhood Cerebral Diffuse Astrocytoma 8 80988 -NCIT:C9191 Recurrent Childhood Cerebral Astrocytoma 8 80989 -NCIT:C6215 Childhood Anaplastic Astrocytoma 7 80990 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 8 80991 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 8 80992 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 9 80993 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 9 80994 -NCIT:C6216 Childhood Brain Stem Astrocytoma 7 80995 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 8 80996 -NCIT:C6286 Childhood Cerebellar Astrocytoma 7 80997 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 8 80998 -NCIT:C8389 Recurrent Childhood Cerebellar Astrocytoma 8 80999 -NCIT:C7534 Childhood Visual Pathway Astrocytoma 7 81000 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 8 81001 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 9 81002 -NCIT:C5136 Childhood Glioblastoma 6 81003 -NCIT:C114966 Childhood Giant Cell Glioblastoma 7 81004 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 8 81005 -NCIT:C114968 Childhood Gliosarcoma 7 81006 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 8 81007 -NCIT:C115365 Recurrent Childhood Gliosarcoma 8 81008 -NCIT:C115364 Recurrent Childhood Glioblastoma 7 81009 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 8 81010 -NCIT:C115365 Recurrent Childhood Gliosarcoma 8 81011 -NCIT:C147901 Childhood Brain Glioblastoma 7 81012 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 8 81013 -NCIT:C9045 Recurrent Childhood Central Nervous System Neoplasm 5 81014 -NCIT:C114836 Recurrent Childhood Central Nervous System Embryonal Neoplasm 6 81015 -NCIT:C115374 Recurrent Childhood Pineoblastoma 7 81016 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 7 81017 -NCIT:C6774 Recurrent Childhood Medulloblastoma 7 81018 -NCIT:C114956 Recurrent Childhood Astrocytic Tumor 6 81019 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 7 81020 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 7 81021 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 8 81022 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 8 81023 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 8 81024 -NCIT:C115364 Recurrent Childhood Glioblastoma 7 81025 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 8 81026 -NCIT:C115365 Recurrent Childhood Gliosarcoma 8 81027 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 7 81028 -NCIT:C115373 Recurrent Childhood Pilomyxoid Astrocytoma 7 81029 -NCIT:C115375 Recurrent Childhood Pleomorphic Xanthoastrocytoma 7 81030 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 7 81031 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 7 81032 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 7 81033 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 8 81034 -NCIT:C8389 Recurrent Childhood Cerebellar Astrocytoma 7 81035 -NCIT:C9191 Recurrent Childhood Cerebral Astrocytoma 7 81036 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 6 81037 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 6 81038 -NCIT:C115370 Recurrent Childhood Oligoastrocytoma 6 81039 -NCIT:C115371 Recurrent Childhood Oligodendroglioma 6 81040 -NCIT:C71712 Recurrent Childhood Spinal Cord Neoplasm 6 81041 -NCIT:C7834 Recurrent Childhood Brain Neoplasm 6 81042 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 7 81043 -NCIT:C115374 Recurrent Childhood Pineoblastoma 7 81044 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 7 81045 -NCIT:C6774 Recurrent Childhood Medulloblastoma 7 81046 -NCIT:C7529 Recurrent Childhood Visual Pathway Glioma 7 81047 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 8 81048 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 9 81049 -NCIT:C7531 Recurrent Childhood Optic Nerve Glioma 8 81050 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 9 81051 -NCIT:C8389 Recurrent Childhood Cerebellar Astrocytoma 7 81052 -NCIT:C9190 Recurrent Childhood Brain Stem Glioma 7 81053 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 8 81054 -NCIT:C9191 Recurrent Childhood Cerebral Astrocytoma 7 81055 -NCIT:C8579 Recurrent Childhood Ependymoma 6 81056 -NCIT:C9234 Childhood Spinal Cord Neoplasm 5 81057 -NCIT:C186495 Childhood Spinal Cord Ependymoma 6 81058 -NCIT:C71712 Recurrent Childhood Spinal Cord Neoplasm 6 81059 -NCIT:C71714 Refractory Childhood Spinal Cord Neoplasm 6 81060 -NCIT:C9476 Desmoplastic Infantile Astrocytoma 5 81061 -NCIT:C5503 Central Nervous System Hematopoietic Neoplasm 4 81062 -NCIT:C185037 Extramedullary Disease in Plasma Cell Myeloma Involving the Central Nervous System 5 81063 -NCIT:C185039 Extramedullary Disease in Plasma Cell Myeloma Involving the Leptomeninges 6 81064 -NCIT:C186662 Central Nervous System Lymphomatoid Granulomatosis 5 81065 -NCIT:C5440 Central Nervous System Leukemia 5 81066 -NCIT:C94754 Meningeal Leukemia 6 81067 -NCIT:C9111 Meningeal Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 81068 -NCIT:C7008 Intracranial Myeloid Sarcoma 5 81069 -NCIT:C87797 Secondary Central Nervous System Lymphoma 5 81070 -NCIT:C114949 Secondary Central Nervous System Hodgkin Lymphoma 6 81071 -NCIT:C5057 Secondary Cerebral Hodgkin Lymphoma 7 81072 -NCIT:C114950 Secondary Central Nervous System Non-Hodgkin Lymphoma 6 81073 -NCIT:C92944 Central Nervous System Histiocytic and Dendritic Cell Neoplasm 5 81074 -NCIT:C129806 Central Nervous System Langerhans Cell Histiocytosis 6 81075 -NCIT:C129807 Central Nervous System Histiocytic Sarcoma 6 81076 -NCIT:C129808 Central Nervous System Erdheim-Chester Disease 6 81077 -NCIT:C9301 Central Nervous System Lymphoma 5 81078 -NCIT:C114779 Central Nervous System Non-Hodgkin Lymphoma 6 81079 -NCIT:C146989 Refractory Central Nervous System Non-Hodgkin Lymphoma 7 81080 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 8 81081 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 81082 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 81083 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 81084 -NCIT:C146990 Recurrent Central Nervous System Non-Hodgkin Lymphoma 7 81085 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 8 81086 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 81087 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 81088 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 81089 -NCIT:C147948 Central Nervous System B-Cell Non-Hodgkin Lymphoma 7 81090 -NCIT:C71720 Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 81091 -NCIT:C129602 Central Nervous System Intravascular Large B-Cell Lymphoma 9 81092 -NCIT:C155797 Pituitary Gland Diffuse Large B-Cell Lymphoma 9 81093 -NCIT:C157067 Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 81094 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 81095 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 81096 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 81097 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 81098 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 81099 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 81100 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 81101 -NCIT:C95991 Dural Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 81102 -NCIT:C155796 Pituitary Gland Non-Hodgkin Lymphoma 7 81103 -NCIT:C155797 Pituitary Gland Diffuse Large B-Cell Lymphoma 8 81104 -NCIT:C157065 Primary Vitreoretinal Non-Hodgkin Lymphoma 7 81105 -NCIT:C157067 Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 81106 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 81107 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 81108 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 8 81109 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 81110 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 8 81111 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 81112 -NCIT:C4365 Primary Retinal Non-Hodgkin Lymphoma 8 81113 -NCIT:C5409 Central Nervous System T-Cell Non-Hodgkin Lymphoma 7 81114 -NCIT:C129600 Central Nervous System Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 8 81115 -NCIT:C5322 Central Nervous System Anaplastic Large Cell Lymphoma 9 81116 -NCIT:C129598 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Positive 10 81117 -NCIT:C129599 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Negative 10 81118 -NCIT:C7609 Cerebral Non-Hodgkin Lymphoma 7 81119 -NCIT:C114951 Central Nervous System Hodgkin Lymphoma 6 81120 -NCIT:C5055 Cerebral Hodgkin Lymphoma 7 81121 -NCIT:C138019 Recurrent Central Nervous System Lymphoma 6 81122 -NCIT:C146990 Recurrent Central Nervous System Non-Hodgkin Lymphoma 7 81123 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 8 81124 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 81125 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 81126 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 81127 -NCIT:C138020 Refractory Central Nervous System Lymphoma 6 81128 -NCIT:C146989 Refractory Central Nervous System Non-Hodgkin Lymphoma 7 81129 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 8 81130 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 81131 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 81132 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 81133 -NCIT:C186658 Immunodeficiency-Related Central Nervous System Lymphoma 6 81134 -NCIT:C8284 AIDS-Related Primary Central Nervous System Lymphoma 7 81135 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 81136 -NCIT:C5157 Spinal Cord Lymphoma 6 81137 -NCIT:C7611 Cerebral Lymphoma 6 81138 -NCIT:C5054 Cerebral Lymphoma in Immunocompetent Host 7 81139 -NCIT:C5055 Cerebral Hodgkin Lymphoma 7 81140 -NCIT:C7609 Cerebral Non-Hodgkin Lymphoma 7 81141 -NCIT:C94756 Meningeal Lymphoma 6 81142 -NCIT:C95991 Dural Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 7 81143 -NCIT:C3355 Respiratory System Neoplasm 2 81144 -NCIT:C3200 Lung Neoplasm 3 81145 -NCIT:C142833 Pulmonary Langerhans Cell Histiocytosis 4 81146 -NCIT:C190095 Childhood Lung Neoplasm 4 81147 -NCIT:C142823 Congenital Peribronchial Myofibroblastic Tumor 5 81148 -NCIT:C190100 Childhood Malignant Lung Neoplasm 5 81149 -NCIT:C118814 Childhood Lung Non-Small Cell Carcinoma 6 81150 -NCIT:C118815 Childhood Lung Small Cell Carcinoma 6 81151 -NCIT:C190621 Childhood Benign Lung Neoplasm 5 81152 -NCIT:C190105 Fetal Lung Interstitial Tumor 6 81153 -NCIT:C27710 Pulmonary Sulcus Neoplasm 4 81154 -NCIT:C7527 Malignant Superior Sulcus Neoplasm 5 81155 -NCIT:C7779 Superior Sulcus Lung Carcinoma 6 81156 -NCIT:C4454 Benign Lung Neoplasm 4 81157 -NCIT:C133091 Lung Adenofibroma 5 81158 -NCIT:C142784 Benign Lung PEComa 5 81159 -NCIT:C38152 Lung Clear Cell Tumor 6 81160 -NCIT:C142829 Lung Myoepithelioma 5 81161 -NCIT:C190105 Fetal Lung Interstitial Tumor 5 81162 -NCIT:C190621 Childhood Benign Lung Neoplasm 5 81163 -NCIT:C190105 Fetal Lung Interstitial Tumor 6 81164 -NCIT:C3497 Pulmonary Hamartoma 5 81165 -NCIT:C5662 Endobronchial Hamartoma 6 81166 -NCIT:C5663 Multiple Pulmonary Hamartomas 6 81167 -NCIT:C4455 Lung Adenoma 5 81168 -NCIT:C183045 Bronchiolar Adenoma/Ciliated Muconodular Papillary Tumor 6 81169 -NCIT:C3494 Lung Papillary Adenoma 6 81170 -NCIT:C4140 Alveolar Adenoma 6 81171 -NCIT:C45603 Lung Pleomorphic Adenoma 6 81172 -NCIT:C45604 Lung Mucinous Cystadenoma 6 81173 -NCIT:C5656 Sclerosing Pneumocytoma 6 81174 -NCIT:C5664 Lung Mucous Gland Adenoma 6 81175 -NCIT:C45629 Lung Chondroma 5 81176 -NCIT:C4888 Benign Lung Hilum Neoplasm 5 81177 -NCIT:C5063 Endobronchial Lipoma 5 81178 -NCIT:C5657 Lung Myolipoma 5 81179 -NCIT:C5658 Lung Fibroma 5 81180 -NCIT:C5660 Lung Leiomyoma 5 81181 -NCIT:C5661 Endobronchial Leiomyoma 6 81182 -NCIT:C8295 Bronchial Papilloma 5 81183 -NCIT:C45573 Lung Squamous Papilloma 6 81184 -NCIT:C45601 Bronchial Glandular Papilloma 6 81185 -NCIT:C45602 Bronchial Mixed Squamous Cell and Glandular Papilloma 6 81186 -NCIT:C45612 Lung Soft Tissue Neoplasm 4 81187 -NCIT:C142783 Lung PEComa 5 81188 -NCIT:C142784 Benign Lung PEComa 6 81189 -NCIT:C38152 Lung Clear Cell Tumor 7 81190 -NCIT:C142785 Lung Malignant PEComa 6 81191 -NCIT:C38153 Lung Lymphangioleiomyomatosis 6 81192 -NCIT:C142823 Congenital Peribronchial Myofibroblastic Tumor 5 81193 -NCIT:C142828 Lung Myoepithelial Tumor 5 81194 -NCIT:C142829 Lung Myoepithelioma 6 81195 -NCIT:C142830 Lung Myoepithelial Carcinoma 6 81196 -NCIT:C39740 Lung Inflammatory Myofibroblastic Tumor 5 81197 -NCIT:C45629 Lung Chondroma 5 81198 -NCIT:C45630 Diffuse Pulmonary Lymphangiomatosis 5 81199 -NCIT:C4860 Lung Sarcoma 5 81200 -NCIT:C142825 Pulmonary Artery Intimal Sarcoma 6 81201 -NCIT:C142827 Primary Pulmonary Myxoid Sarcoma with EWSR1-CREB1 Fusion 6 81202 -NCIT:C173809 Lung Alveolar Soft Part Sarcoma 6 81203 -NCIT:C181201 Lung Rhabdomyosarcoma 6 81204 -NCIT:C188061 Lung Osteosarcoma 6 81205 -NCIT:C3551 Lung Kaposi Sarcoma 6 81206 -NCIT:C45631 Lung Synovial Sarcoma 6 81207 -NCIT:C45632 Lung Biphasic Synovial Sarcoma 7 81208 -NCIT:C45633 Lung Monophasic Synovial Sarcoma 7 81209 -NCIT:C5667 Lung Leiomyosarcoma 6 81210 -NCIT:C5063 Endobronchial Lipoma 5 81211 -NCIT:C5657 Lung Myolipoma 5 81212 -NCIT:C5658 Lung Fibroma 5 81213 -NCIT:C5660 Lung Leiomyoma 5 81214 -NCIT:C5661 Endobronchial Leiomyoma 6 81215 -NCIT:C45636 Lung Germ Cell Tumor 4 81216 -NCIT:C45637 Lung Teratoma 5 81217 -NCIT:C45638 Intrapulmonary Thymoma 4 81218 -NCIT:C5665 Atypical Adenomatous Lung Hyperplasia 4 81219 -NCIT:C5668 Lung Meningioma 4 81220 -NCIT:C5276 Primary Lung Meningioma 5 81221 -NCIT:C5670 Lung Neuroendocrine Neoplasm 4 81222 -NCIT:C157602 Metastatic Lung Neuroendocrine Neoplasm 5 81223 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 6 81224 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 81225 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 7 81226 -NCIT:C165446 Advanced Lung Neuroendocrine Neoplasm 6 81227 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 81228 -NCIT:C177245 Advanced Lung Carcinoid Tumor 7 81229 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 7 81230 -NCIT:C176715 Locally Advanced Lung Neuroendocrine Neoplasm 6 81231 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 7 81232 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 7 81233 -NCIT:C177243 Metastatic Lung Carcinoid Tumor 6 81234 -NCIT:C177245 Advanced Lung Carcinoid Tumor 7 81235 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 6 81236 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 7 81237 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 7 81238 -NCIT:C165454 Unresectable Lung Neuroendocrine Neoplasm 5 81239 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 6 81240 -NCIT:C177246 Unresectable Lung Carcinoid Tumor 6 81241 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 6 81242 -NCIT:C176711 Recurrent Lung Neuroendocrine Neoplasm 5 81243 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 6 81244 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 7 81245 -NCIT:C4038 Lung Carcinoid Tumor 5 81246 -NCIT:C176705 Functioning Lung Carcinoid Tumor 6 81247 -NCIT:C176706 Non-Functioning Lung Carcinoid Tumor 6 81248 -NCIT:C177243 Metastatic Lung Carcinoid Tumor 6 81249 -NCIT:C177245 Advanced Lung Carcinoid Tumor 7 81250 -NCIT:C177246 Unresectable Lung Carcinoid Tumor 6 81251 -NCIT:C45550 Lung Typical Carcinoid Tumor 6 81252 -NCIT:C45551 Lung Atypical Carcinoid Tumor 6 81253 -NCIT:C45569 Lung Neuroendocrine Carcinoma 5 81254 -NCIT:C4917 Lung Small Cell Carcinoma 6 81255 -NCIT:C118815 Childhood Lung Small Cell Carcinoma 7 81256 -NCIT:C136496 Lung Small Cell Carcinoma by AJCC v7 Stage 7 81257 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 8 81258 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 9 81259 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 9 81260 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 8 81261 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 9 81262 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 9 81263 -NCIT:C6679 Stage III Lung Small Cell Carcinoma AJCC v7 8 81264 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 9 81265 -NCIT:C6681 Stage IIIB Lung Small Cell Carcinoma AJCC v7 9 81266 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 10 81267 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 10 81268 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 8 81269 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 7 81270 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 8 81271 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 8 81272 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 7 81273 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 81274 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 81275 -NCIT:C158495 Platinum-Sensitive Lung Small Cell Carcinoma 7 81276 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 7 81277 -NCIT:C188753 Lung Small Cell Carcinoma Neuroendocrine Subtype 7 81278 -NCIT:C188754 Lung Small Cell Carcinoma, Neuroendocrine-High Subtype 8 81279 -NCIT:C188755 Lung Small Cell Carcinoma, Neuroendocrine-Low Subtype 8 81280 -NCIT:C188756 Lung Small Cell Carcinoma Molecular Subtypes 7 81281 -NCIT:C188761 Lung Small Cell Carcinoma, A Subtype 8 81282 -NCIT:C188762 Lung Small Cell Carcinoma, N Subtype 8 81283 -NCIT:C188763 Lung Small Cell Carcinoma, P Subtype 8 81284 -NCIT:C188765 Lung Small Cell Carcinoma, I Subtype 8 81285 -NCIT:C188766 Lung Small Cell Carcinoma, Y Subtype 8 81286 -NCIT:C6683 Occult Lung Small Cell Carcinoma 7 81287 -NCIT:C7853 Limited Stage Lung Small Cell Carcinoma 7 81288 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 8 81289 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 8 81290 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 9 81291 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 9 81292 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 8 81293 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 9 81294 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 9 81295 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 8 81296 -NCIT:C9049 Extensive Stage Lung Small Cell Carcinoma 7 81297 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 8 81298 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 8 81299 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 8 81300 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 8 81301 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 7 81302 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 8 81303 -NCIT:C9137 Combined Lung Small Cell Carcinoma 7 81304 -NCIT:C9379 Combined Lung Small Cell Carcinoma and Lung Adenocarcinoma 8 81305 -NCIT:C9423 Combined Lung Small Cell and Squamous Cell Carcinoma 8 81306 -NCIT:C5672 Lung Large Cell Neuroendocrine Carcinoma 6 81307 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 7 81308 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 81309 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 81310 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 7 81311 -NCIT:C7267 Combined Lung Large Cell Neuroendocrine Carcinoma 7 81312 -NCIT:C7591 Combined Lung Carcinoma 6 81313 -NCIT:C7267 Combined Lung Large Cell Neuroendocrine Carcinoma 7 81314 -NCIT:C9137 Combined Lung Small Cell Carcinoma 7 81315 -NCIT:C9379 Combined Lung Small Cell Carcinoma and Lung Adenocarcinoma 8 81316 -NCIT:C9423 Combined Lung Small Cell and Squamous Cell Carcinoma 8 81317 -NCIT:C5671 Lung Hilum Neoplasm 4 81318 -NCIT:C4566 Malignant Lung Hilum Neoplasm 5 81319 -NCIT:C7454 Lung Hilum Carcinoma 6 81320 -NCIT:C4888 Benign Lung Hilum Neoplasm 5 81321 -NCIT:C60310 Lung Mature B-Cell Neoplasm 4 81322 -NCIT:C181211 Lung Follicular Lymphoma 5 81323 -NCIT:C185043 Lung Plasmacytoma 5 81324 -NCIT:C45605 Lung Diffuse Large B-Cell Lymphoma 5 81325 -NCIT:C183121 Lung Intravascular Large B-Cell Lymphoma 6 81326 -NCIT:C45607 Pulmonary Lymphomatoid Granulomatosis 5 81327 -NCIT:C5264 Lung Mucosa-Associated Lymphoid Tissue Lymphoma 5 81328 -NCIT:C7377 Malignant Lung Neoplasm 4 81329 -NCIT:C142785 Lung Malignant PEComa 5 81330 -NCIT:C157602 Metastatic Lung Neuroendocrine Neoplasm 5 81331 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 6 81332 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 81333 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 7 81334 -NCIT:C165446 Advanced Lung Neuroendocrine Neoplasm 6 81335 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 81336 -NCIT:C177245 Advanced Lung Carcinoid Tumor 7 81337 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 7 81338 -NCIT:C176715 Locally Advanced Lung Neuroendocrine Neoplasm 6 81339 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 7 81340 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 7 81341 -NCIT:C177243 Metastatic Lung Carcinoid Tumor 6 81342 -NCIT:C177245 Advanced Lung Carcinoid Tumor 7 81343 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 6 81344 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 7 81345 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 7 81346 -NCIT:C165454 Unresectable Lung Neuroendocrine Neoplasm 5 81347 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 6 81348 -NCIT:C177246 Unresectable Lung Carcinoid Tumor 6 81349 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 6 81350 -NCIT:C185043 Lung Plasmacytoma 5 81351 -NCIT:C190100 Childhood Malignant Lung Neoplasm 5 81352 -NCIT:C118814 Childhood Lung Non-Small Cell Carcinoma 6 81353 -NCIT:C118815 Childhood Lung Small Cell Carcinoma 6 81354 -NCIT:C3577 Metastatic Malignant Neoplasm in the Lung 5 81355 -NCIT:C185321 Extramedullary Disease in Plasma Cell Myeloma Involving the Lung 6 81356 -NCIT:C27408 Metastatic Carcinoma in the Lung 6 81357 -NCIT:C153224 Colorectal Carcinoma Metastatic in the Lung 7 81358 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 8 81359 -NCIT:C36300 Breast Carcinoma Metastatic in the Lung 7 81360 -NCIT:C36307 Prostate Carcinoma Metastatic in the Lung 7 81361 -NCIT:C4453 Lung Epithelioid Hemangioendothelioma 5 81362 -NCIT:C45652 Lung Melanoma 5 81363 -NCIT:C4566 Malignant Lung Hilum Neoplasm 5 81364 -NCIT:C7454 Lung Hilum Carcinoma 6 81365 -NCIT:C4794 Lung Lymphoma 5 81366 -NCIT:C181205 Lung Hodgkin Lymphoma 6 81367 -NCIT:C5684 Lung Non-Hodgkin Lymphoma 6 81368 -NCIT:C181211 Lung Follicular Lymphoma 7 81369 -NCIT:C188082 Lung Anaplastic Large Cell Lymphoma 7 81370 -NCIT:C45605 Lung Diffuse Large B-Cell Lymphoma 7 81371 -NCIT:C183121 Lung Intravascular Large B-Cell Lymphoma 8 81372 -NCIT:C5264 Lung Mucosa-Associated Lymphoid Tissue Lymphoma 7 81373 -NCIT:C4860 Lung Sarcoma 5 81374 -NCIT:C142825 Pulmonary Artery Intimal Sarcoma 6 81375 -NCIT:C142827 Primary Pulmonary Myxoid Sarcoma with EWSR1-CREB1 Fusion 6 81376 -NCIT:C173809 Lung Alveolar Soft Part Sarcoma 6 81377 -NCIT:C181201 Lung Rhabdomyosarcoma 6 81378 -NCIT:C188061 Lung Osteosarcoma 6 81379 -NCIT:C3551 Lung Kaposi Sarcoma 6 81380 -NCIT:C45631 Lung Synovial Sarcoma 6 81381 -NCIT:C45632 Lung Biphasic Synovial Sarcoma 7 81382 -NCIT:C45633 Lung Monophasic Synovial Sarcoma 7 81383 -NCIT:C5667 Lung Leiomyosarcoma 6 81384 -NCIT:C4878 Lung Carcinoma 5 81385 -NCIT:C136467 Lung Cancer by AJCC v8 Stage 6 81386 -NCIT:C136468 Occult Lung Cancer AJCC v8 7 81387 -NCIT:C136469 Stage 0 Lung Cancer AJCC v8 7 81388 -NCIT:C136470 Stage I Lung Cancer AJCC v8 7 81389 -NCIT:C136471 Stage IA1 Lung Cancer AJCC v8 8 81390 -NCIT:C136472 Stage IA2 Lung Cancer AJCC v8 8 81391 -NCIT:C136473 Stage IA3 Lung Cancer AJCC v8 8 81392 -NCIT:C136474 Stage IB Lung Cancer AJCC v8 8 81393 -NCIT:C136475 Stage II Lung Cancer AJCC v8 7 81394 -NCIT:C136476 Stage IIA Lung Cancer AJCC v8 8 81395 -NCIT:C136477 Stage IIB Lung Cancer AJCC v8 8 81396 -NCIT:C136478 Stage III Lung Cancer AJCC v8 7 81397 -NCIT:C136479 Stage IIIA Lung Cancer AJCC v8 8 81398 -NCIT:C136480 Stage IIIB Lung Cancer AJCC v8 8 81399 -NCIT:C136481 Stage IIIC Lung Cancer AJCC v8 8 81400 -NCIT:C136482 Stage IV Lung Cancer AJCC v8 7 81401 -NCIT:C136483 Stage IVA Lung Cancer AJCC v8 8 81402 -NCIT:C136484 Stage IVB Lung Cancer AJCC v8 8 81403 -NCIT:C141076 Refractory Lung Carcinoma 6 81404 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 7 81405 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 8 81406 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 8 81407 -NCIT:C153081 Refractory Lung Non-Small Cell Carcinoma 7 81408 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 8 81409 -NCIT:C176858 Refractory Lung Non-Squamous Non-Small Cell Carcinoma 8 81410 -NCIT:C179209 Refractory Lung Adenocarcinoma 8 81411 -NCIT:C173331 Refractory Lung Squamous Cell Carcinoma 7 81412 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 8 81413 -NCIT:C142830 Lung Myoepithelial Carcinoma 6 81414 -NCIT:C153202 Metastatic Lung Carcinoma 6 81415 -NCIT:C133503 Lung Carcinoma Metastatic in the Central Nervous System 7 81416 -NCIT:C36304 Lung Carcinoma Metastatic in the Brain 8 81417 -NCIT:C153203 Advanced Lung Carcinoma 7 81418 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 81419 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 8 81420 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 81421 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 81422 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 81423 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 81424 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 81425 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 81426 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 81427 -NCIT:C180922 Advanced Bronchogenic Carcinoma 8 81428 -NCIT:C153206 Locally Advanced Lung Carcinoma 7 81429 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 8 81430 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 81431 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 81432 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 81433 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 81434 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 81435 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 81436 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 81437 -NCIT:C156092 Metastatic Lung Squamous Cell Carcinoma 7 81438 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 81439 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 81440 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 81441 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 81442 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 81443 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 81444 -NCIT:C156094 Metastatic Lung Non-Small Cell Carcinoma 7 81445 -NCIT:C128798 Metastatic Lung Non-Squamous Non-Small Cell Carcinoma 8 81446 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 81447 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 81448 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 81449 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 81450 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 81451 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 81452 -NCIT:C155908 Metastatic Lung Adenocarcinoma 9 81453 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 81454 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 81455 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 9 81456 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 81457 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 81458 -NCIT:C156093 Metastatic Lung Adenosquamous Carcinoma 8 81459 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 81460 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 81461 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 81462 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 81463 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 81464 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 81465 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 8 81466 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 81467 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 81468 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 81469 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 81470 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 81471 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 81472 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 8 81473 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 81474 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 81475 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 81476 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 81477 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 81478 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 7 81479 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 81480 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 81481 -NCIT:C187195 Oligometastatic Lung Carcinoma 7 81482 -NCIT:C36305 Lung Carcinoma Metastatic in the Bone 7 81483 -NCIT:C36306 Lung Carcinoma Metastatic in the Liver 7 81484 -NCIT:C155902 Unresectable Lung Carcinoma 6 81485 -NCIT:C155901 Unresectable Lung Non-Small Cell Carcinoma 7 81486 -NCIT:C162642 Unresectable Lung Non-Squamous Non-Small Cell Carcinoma 8 81487 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 9 81488 -NCIT:C171612 Unresectable Lung Non-Small Cell Squamous Carcinoma 8 81489 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 81490 -NCIT:C174510 Unresectable Lung Adenocarcinoma 8 81491 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 7 81492 -NCIT:C162570 Localized Lung Carcinoma 6 81493 -NCIT:C183116 Lung Hyalinizing Clear Cell Carcinoma 6 81494 -NCIT:C188068 Lung Secretory Carcinoma 6 81495 -NCIT:C190952 Resectable Lung Carcinoma 6 81496 -NCIT:C165767 Resectable Lung Non-Small Cell Carcinoma 7 81497 -NCIT:C190954 Resectable Lung Adenocarcinoma 8 81498 -NCIT:C190953 Resectable Lung Squamous Cell Carcinoma 7 81499 -NCIT:C27637 Transplant-Related Lung Carcinoma 6 81500 -NCIT:C27925 Asbestos-Related Lung Carcinoma 6 81501 -NCIT:C2926 Lung Non-Small Cell Carcinoma 6 81502 -NCIT:C118814 Childhood Lung Non-Small Cell Carcinoma 7 81503 -NCIT:C133254 Lung Non-Small Cell Squamous Carcinoma 7 81504 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 81505 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 81506 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 81507 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 81508 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 8 81509 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 8 81510 -NCIT:C171612 Unresectable Lung Non-Small Cell Squamous Carcinoma 8 81511 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 81512 -NCIT:C45502 Lung Squamous Cell Carcinoma, Papillary Variant 8 81513 -NCIT:C45503 Lung Squamous Cell Carcinoma, Clear Cell Variant 8 81514 -NCIT:C135017 Lung Non-Squamous Non-Small Cell Carcinoma 7 81515 -NCIT:C128797 Recurrent Lung Non-Squamous Non-Small Cell Carcinoma 8 81516 -NCIT:C128798 Metastatic Lung Non-Squamous Non-Small Cell Carcinoma 8 81517 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 81518 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 81519 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 81520 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 81521 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 81522 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 81523 -NCIT:C155908 Metastatic Lung Adenocarcinoma 9 81524 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 81525 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 81526 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 9 81527 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 81528 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 81529 -NCIT:C162642 Unresectable Lung Non-Squamous Non-Small Cell Carcinoma 8 81530 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 9 81531 -NCIT:C176858 Refractory Lung Non-Squamous Non-Small Cell Carcinoma 8 81532 -NCIT:C136491 Lung Non-Small Cell Cancer by AJCC v7 Stage 7 81533 -NCIT:C136490 Lung Adenocarcinoma by AJCC v7 Stage 8 81534 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 9 81535 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 9 81536 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 81537 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 81538 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 9 81539 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 81540 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 81541 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 9 81542 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 81543 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 81544 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 9 81545 -NCIT:C136492 Lung Adenosquamous Carcinoma by AJCC v7 Stage 8 81546 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 9 81547 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 9 81548 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 81549 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 81550 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 9 81551 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 81552 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 81553 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 9 81554 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 81555 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 81556 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 9 81557 -NCIT:C136493 Lung Large Cell Carcinoma by AJCC v7 Stage 8 81558 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 9 81559 -NCIT:C6660 Stage II Lung Large Cell Carcinoma AJCC v7 9 81560 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 81561 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 81562 -NCIT:C8755 Stage I Lung Large Cell Carcinoma AJCC v7 9 81563 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 81564 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 81565 -NCIT:C8756 Stage IV Lung Large Cell Carcinoma AJCC v7 9 81566 -NCIT:C9257 Stage III Lung Large Cell Carcinoma AJCC v7 9 81567 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 81568 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 81569 -NCIT:C4012 Stage IV Lung Non-Small Cell Cancer AJCC v7 8 81570 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 9 81571 -NCIT:C8756 Stage IV Lung Large Cell Carcinoma AJCC v7 9 81572 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 9 81573 -NCIT:C6671 Stage I Lung Non-Small Cell Cancer AJCC v7 8 81574 -NCIT:C5652 Stage IA Lung Non-Small Cell Carcinoma AJCC v7 9 81575 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 81576 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 81577 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 81578 -NCIT:C5653 Stage IB Lung Non-Small Cell Carcinoma AJCC v7 9 81579 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 81580 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 81581 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 81582 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 9 81583 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 81584 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 81585 -NCIT:C8755 Stage I Lung Large Cell Carcinoma AJCC v7 9 81586 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 81587 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 81588 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 9 81589 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 81590 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 81591 -NCIT:C7777 Stage II Lung Non-Small Cell Cancer AJCC v7 8 81592 -NCIT:C5654 Stage IIB Lung Non-Small Cell Carcinoma AJCC v7 9 81593 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 81594 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 81595 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 81596 -NCIT:C5655 Stage IIA Lung Non-Small Cell Carcinoma AJCC v7 9 81597 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 81598 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 81599 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 81600 -NCIT:C6660 Stage II Lung Large Cell Carcinoma AJCC v7 9 81601 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 81602 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 81603 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 9 81604 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 81605 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 81606 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 9 81607 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 81608 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 81609 -NCIT:C7778 Stage III Lung Non-Small Cell Cancer AJCC v7 8 81610 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 9 81611 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 81612 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 81613 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 9 81614 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 81615 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 81616 -NCIT:C9102 Stage IIIA Lung Non-Small Cell Cancer AJCC v7 9 81617 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 81618 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 81619 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 81620 -NCIT:C9103 Stage IIIB Lung Non-Small Cell Cancer AJCC v7 9 81621 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 81622 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 81623 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 81624 -NCIT:C9257 Stage III Lung Large Cell Carcinoma AJCC v7 9 81625 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 81626 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 81627 -NCIT:C9104 Stage 0 Lung Non-Small Cell Cancer AJCC v6 and v7 8 81628 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 9 81629 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 9 81630 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 9 81631 -NCIT:C153081 Refractory Lung Non-Small Cell Carcinoma 7 81632 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 8 81633 -NCIT:C176858 Refractory Lung Non-Squamous Non-Small Cell Carcinoma 8 81634 -NCIT:C179209 Refractory Lung Adenocarcinoma 8 81635 -NCIT:C155901 Unresectable Lung Non-Small Cell Carcinoma 7 81636 -NCIT:C162642 Unresectable Lung Non-Squamous Non-Small Cell Carcinoma 8 81637 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 9 81638 -NCIT:C171612 Unresectable Lung Non-Small Cell Squamous Carcinoma 8 81639 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 81640 -NCIT:C174510 Unresectable Lung Adenocarcinoma 8 81641 -NCIT:C156094 Metastatic Lung Non-Small Cell Carcinoma 7 81642 -NCIT:C128798 Metastatic Lung Non-Squamous Non-Small Cell Carcinoma 8 81643 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 81644 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 81645 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 81646 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 81647 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 81648 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 81649 -NCIT:C155908 Metastatic Lung Adenocarcinoma 9 81650 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 81651 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 81652 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 9 81653 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 81654 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 81655 -NCIT:C156093 Metastatic Lung Adenosquamous Carcinoma 8 81656 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 81657 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 81658 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 81659 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 81660 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 81661 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 81662 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 8 81663 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 81664 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 81665 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 81666 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 81667 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 81668 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 81669 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 8 81670 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 81671 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 81672 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 81673 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 81674 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 81675 -NCIT:C165767 Resectable Lung Non-Small Cell Carcinoma 7 81676 -NCIT:C190954 Resectable Lung Adenocarcinoma 8 81677 -NCIT:C3512 Lung Adenocarcinoma 7 81678 -NCIT:C136486 Lung Adenocarcinoma In Situ 8 81679 -NCIT:C136716 Lung Non-Mucinous Adenocarcinoma In Situ 9 81680 -NCIT:C136717 Lung Mucinous Adenocarcinoma In Situ 9 81681 -NCIT:C136490 Lung Adenocarcinoma by AJCC v7 Stage 8 81682 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 9 81683 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 9 81684 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 81685 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 81686 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 9 81687 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 81688 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 81689 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 9 81690 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 81691 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 81692 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 9 81693 -NCIT:C136709 Invasive Lung Mucinous Adenocarcinoma 8 81694 -NCIT:C136710 Lung Enteric Adenocarcinoma 8 81695 -NCIT:C155908 Metastatic Lung Adenocarcinoma 8 81696 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 81697 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 81698 -NCIT:C174510 Unresectable Lung Adenocarcinoma 8 81699 -NCIT:C179209 Refractory Lung Adenocarcinoma 8 81700 -NCIT:C183109 Invasive Lung Non-Mucinous Adenocarcinoma 8 81701 -NCIT:C123160 Lepidic Adenocarcinoma 9 81702 -NCIT:C5649 Lung Acinar Adenocarcinoma 9 81703 -NCIT:C5650 Lung Papillary Adenocarcinoma 9 81704 -NCIT:C128847 Lung Micropapillary Adenocarcinoma 10 81705 -NCIT:C5651 Solid Lung Adenocarcinoma 9 81706 -NCIT:C190954 Resectable Lung Adenocarcinoma 8 81707 -NCIT:C2923 Minimally Invasive Lung Adenocarcinoma 8 81708 -NCIT:C7268 Minimally Invasive Lung Mucinous Adenocarcinoma 9 81709 -NCIT:C7269 Minimally Invasive Lung Non-Mucinous Adenocarcinoma 9 81710 -NCIT:C7270 Minimally Invasive Lung Mixed Non-Mucinous and Mucinous Adenocarcinoma 9 81711 -NCIT:C45509 Lung Fetal Adenocarcinoma 8 81712 -NCIT:C45512 Lung Colloid Adenocarcinoma 8 81713 -NCIT:C6699 Occult Lung Adenocarcinoma 8 81714 -NCIT:C8757 Recurrent Lung Adenocarcinoma 8 81715 -NCIT:C4450 Lung Large Cell Carcinoma 7 81716 -NCIT:C136493 Lung Large Cell Carcinoma by AJCC v7 Stage 8 81717 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 9 81718 -NCIT:C6660 Stage II Lung Large Cell Carcinoma AJCC v7 9 81719 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 81720 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 81721 -NCIT:C8755 Stage I Lung Large Cell Carcinoma AJCC v7 9 81722 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 81723 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 81724 -NCIT:C8756 Stage IV Lung Large Cell Carcinoma AJCC v7 9 81725 -NCIT:C9257 Stage III Lung Large Cell Carcinoma AJCC v7 9 81726 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 81727 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 81728 -NCIT:C4451 Lung Large Cell Carcinoma, Clear Cell Variant 8 81729 -NCIT:C6685 Occult Lung Large Cell Carcinoma 8 81730 -NCIT:C6876 Lung Large Cell Carcinoma with Rhabdoid Phenotype 8 81731 -NCIT:C7266 Lung Basaloid Large Cell Carcinoma 8 81732 -NCIT:C8753 Recurrent Lung Large Cell Carcinoma 8 81733 -NCIT:C45519 Lung Lymphoepithelial Carcinoma 7 81734 -NCIT:C45540 Lung Sarcomatoid Carcinoma 7 81735 -NCIT:C3732 Pulmonary Blastoma 8 81736 -NCIT:C4452 Lung Giant Cell Carcinoma 8 81737 -NCIT:C45541 Lung Spindle Cell Carcinoma 8 81738 -NCIT:C45542 Lung Pleomorphic Carcinoma 8 81739 -NCIT:C45543 Lung Carcinosarcoma 8 81740 -NCIT:C7783 Recurrent Lung Non-Small Cell Carcinoma 7 81741 -NCIT:C128797 Recurrent Lung Non-Squamous Non-Small Cell Carcinoma 8 81742 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 8 81743 -NCIT:C190195 Locally Recurrent Lung Non-Small Cell Carcinoma 8 81744 -NCIT:C8747 Recurrent Lung Adenosquamous Carcinoma 8 81745 -NCIT:C8753 Recurrent Lung Large Cell Carcinoma 8 81746 -NCIT:C8757 Recurrent Lung Adenocarcinoma 8 81747 -NCIT:C9038 Occult Lung Non-Small Cell Carcinoma 7 81748 -NCIT:C6684 Occult Lung Adenosquamous Carcinoma 8 81749 -NCIT:C6685 Occult Lung Large Cell Carcinoma 8 81750 -NCIT:C6699 Occult Lung Adenocarcinoma 8 81751 -NCIT:C9133 Lung Adenosquamous Carcinoma 7 81752 -NCIT:C136492 Lung Adenosquamous Carcinoma by AJCC v7 Stage 8 81753 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 9 81754 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 9 81755 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 81756 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 81757 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 9 81758 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 81759 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 81760 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 9 81761 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 81762 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 81763 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 9 81764 -NCIT:C156093 Metastatic Lung Adenosquamous Carcinoma 8 81765 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 81766 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 81767 -NCIT:C6684 Occult Lung Adenosquamous Carcinoma 8 81768 -NCIT:C8747 Recurrent Lung Adenosquamous Carcinoma 8 81769 -NCIT:C3493 Lung Squamous Cell Carcinoma 6 81770 -NCIT:C133254 Lung Non-Small Cell Squamous Carcinoma 7 81771 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 81772 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 81773 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 81774 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 81775 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 8 81776 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 8 81777 -NCIT:C171612 Unresectable Lung Non-Small Cell Squamous Carcinoma 8 81778 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 81779 -NCIT:C45502 Lung Squamous Cell Carcinoma, Papillary Variant 8 81780 -NCIT:C45503 Lung Squamous Cell Carcinoma, Clear Cell Variant 8 81781 -NCIT:C136494 Lung Squamous Cell Carcinoma by AJCC v7 Stage 7 81782 -NCIT:C8763 Stage 0 Lung Squamous Cell Carcinoma AJCC v6 and v7 8 81783 -NCIT:C8764 Stage I Lung Squamous Cell Carcinoma AJCC v7 8 81784 -NCIT:C6687 Stage IA Lung Squamous Cell Carcinoma AJCC v7 9 81785 -NCIT:C6692 Stage IB Lung Squamous Cell Carcinoma AJCC v7 9 81786 -NCIT:C8765 Stage II Lung Squamous Cell Carcinoma AJCC v7 8 81787 -NCIT:C6688 Stage IIA Lung Squamous Cell Carcinoma AJCC v7 9 81788 -NCIT:C6691 Stage IIB Lung Squamous Cell Carcinoma AJCC v7 9 81789 -NCIT:C8766 Stage III Lung Squamous Cell Carcinoma AJCC v7 8 81790 -NCIT:C6689 Stage IIIA Lung Squamous Cell Carcinoma AJCC v7 9 81791 -NCIT:C6690 Stage IIIB Lung Squamous Cell Carcinoma AJCC v7 9 81792 -NCIT:C8767 Stage IV Lung Squamous Cell Carcinoma AJCC v7 8 81793 -NCIT:C136713 Lung Keratinizing Squamous Cell Carcinoma 7 81794 -NCIT:C136714 Lung Non-Keratinizing Squamous Cell Carcinoma 7 81795 -NCIT:C136719 Lung Squamous Cell Carcinoma In Situ 7 81796 -NCIT:C8763 Stage 0 Lung Squamous Cell Carcinoma AJCC v6 and v7 8 81797 -NCIT:C156092 Metastatic Lung Squamous Cell Carcinoma 7 81798 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 81799 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 81800 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 81801 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 81802 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 81803 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 81804 -NCIT:C173331 Refractory Lung Squamous Cell Carcinoma 7 81805 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 8 81806 -NCIT:C190953 Resectable Lung Squamous Cell Carcinoma 7 81807 -NCIT:C45504 Lung Squamous Cell Carcinoma, Small Cell Variant 7 81808 -NCIT:C45507 Lung Basaloid Squamous Cell Carcinoma 7 81809 -NCIT:C5014 Recurrent Lung Squamous Cell Carcinoma 7 81810 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 8 81811 -NCIT:C6686 Occult Lung Squamous Cell Carcinoma 7 81812 -NCIT:C35875 Bronchogenic Carcinoma 6 81813 -NCIT:C180922 Advanced Bronchogenic Carcinoma 7 81814 -NCIT:C180923 Recurrent Bronchogenic Carcinoma 7 81815 -NCIT:C7779 Superior Sulcus Lung Carcinoma 7 81816 -NCIT:C45544 Lung Mucoepidermoid Carcinoma 6 81817 -NCIT:C45545 Lung Epithelial-Myoepithelial Carcinoma 6 81818 -NCIT:C45569 Lung Neuroendocrine Carcinoma 6 81819 -NCIT:C4917 Lung Small Cell Carcinoma 7 81820 -NCIT:C118815 Childhood Lung Small Cell Carcinoma 8 81821 -NCIT:C136496 Lung Small Cell Carcinoma by AJCC v7 Stage 8 81822 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 9 81823 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 10 81824 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 10 81825 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 9 81826 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 10 81827 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 10 81828 -NCIT:C6679 Stage III Lung Small Cell Carcinoma AJCC v7 9 81829 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 10 81830 -NCIT:C6681 Stage IIIB Lung Small Cell Carcinoma AJCC v7 10 81831 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 11 81832 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 11 81833 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 9 81834 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 8 81835 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 9 81836 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 9 81837 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 8 81838 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 9 81839 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 81840 -NCIT:C158495 Platinum-Sensitive Lung Small Cell Carcinoma 8 81841 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 8 81842 -NCIT:C188753 Lung Small Cell Carcinoma Neuroendocrine Subtype 8 81843 -NCIT:C188754 Lung Small Cell Carcinoma, Neuroendocrine-High Subtype 9 81844 -NCIT:C188755 Lung Small Cell Carcinoma, Neuroendocrine-Low Subtype 9 81845 -NCIT:C188756 Lung Small Cell Carcinoma Molecular Subtypes 8 81846 -NCIT:C188761 Lung Small Cell Carcinoma, A Subtype 9 81847 -NCIT:C188762 Lung Small Cell Carcinoma, N Subtype 9 81848 -NCIT:C188763 Lung Small Cell Carcinoma, P Subtype 9 81849 -NCIT:C188765 Lung Small Cell Carcinoma, I Subtype 9 81850 -NCIT:C188766 Lung Small Cell Carcinoma, Y Subtype 9 81851 -NCIT:C6683 Occult Lung Small Cell Carcinoma 8 81852 -NCIT:C7853 Limited Stage Lung Small Cell Carcinoma 8 81853 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 9 81854 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 9 81855 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 10 81856 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 10 81857 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 9 81858 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 10 81859 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 10 81860 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 9 81861 -NCIT:C9049 Extensive Stage Lung Small Cell Carcinoma 8 81862 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 9 81863 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 9 81864 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 9 81865 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 9 81866 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 8 81867 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 9 81868 -NCIT:C9137 Combined Lung Small Cell Carcinoma 8 81869 -NCIT:C9379 Combined Lung Small Cell Carcinoma and Lung Adenocarcinoma 9 81870 -NCIT:C9423 Combined Lung Small Cell and Squamous Cell Carcinoma 9 81871 -NCIT:C5672 Lung Large Cell Neuroendocrine Carcinoma 7 81872 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 8 81873 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 81874 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 81875 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 8 81876 -NCIT:C7267 Combined Lung Large Cell Neuroendocrine Carcinoma 8 81877 -NCIT:C7591 Combined Lung Carcinoma 7 81878 -NCIT:C7267 Combined Lung Large Cell Neuroendocrine Carcinoma 8 81879 -NCIT:C9137 Combined Lung Small Cell Carcinoma 8 81880 -NCIT:C9379 Combined Lung Small Cell Carcinoma and Lung Adenocarcinoma 9 81881 -NCIT:C9423 Combined Lung Small Cell and Squamous Cell Carcinoma 9 81882 -NCIT:C5641 Occult Lung Carcinoma 6 81883 -NCIT:C136468 Occult Lung Cancer AJCC v8 7 81884 -NCIT:C6683 Occult Lung Small Cell Carcinoma 7 81885 -NCIT:C6686 Occult Lung Squamous Cell Carcinoma 7 81886 -NCIT:C9038 Occult Lung Non-Small Cell Carcinoma 7 81887 -NCIT:C6684 Occult Lung Adenosquamous Carcinoma 8 81888 -NCIT:C6685 Occult Lung Large Cell Carcinoma 8 81889 -NCIT:C6699 Occult Lung Adenocarcinoma 8 81890 -NCIT:C5666 Lung Adenoid Cystic Carcinoma 6 81891 -NCIT:C7454 Lung Hilum Carcinoma 6 81892 -NCIT:C8953 Recurrent Lung Carcinoma 6 81893 -NCIT:C180923 Recurrent Bronchogenic Carcinoma 7 81894 -NCIT:C5014 Recurrent Lung Squamous Cell Carcinoma 7 81895 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 8 81896 -NCIT:C7783 Recurrent Lung Non-Small Cell Carcinoma 7 81897 -NCIT:C128797 Recurrent Lung Non-Squamous Non-Small Cell Carcinoma 8 81898 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 8 81899 -NCIT:C190195 Locally Recurrent Lung Non-Small Cell Carcinoma 8 81900 -NCIT:C8747 Recurrent Lung Adenosquamous Carcinoma 8 81901 -NCIT:C8753 Recurrent Lung Large Cell Carcinoma 8 81902 -NCIT:C8757 Recurrent Lung Adenocarcinoma 8 81903 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 7 81904 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 8 81905 -NCIT:C90519 Lung Cancer by AJCC v6 Stage 6 81906 -NCIT:C27467 Stage 0 Lung Cancer AJCC v6 and v7 7 81907 -NCIT:C9104 Stage 0 Lung Non-Small Cell Cancer AJCC v6 and v7 8 81908 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 9 81909 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 9 81910 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 9 81911 -NCIT:C8772 Stage I Lung Cancer AJCC v6 7 81912 -NCIT:C8773 Stage III Lung Cancer AJCC v6 7 81913 -NCIT:C8774 Stage IV Lung Cancer AJCC v6 7 81914 -NCIT:C8954 Stage II Lung Cancer AJCC v6 7 81915 -NCIT:C91232 Lung Cancer by AJCC v7 Stage 6 81916 -NCIT:C136491 Lung Non-Small Cell Cancer by AJCC v7 Stage 7 81917 -NCIT:C136490 Lung Adenocarcinoma by AJCC v7 Stage 8 81918 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 9 81919 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 9 81920 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 81921 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 81922 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 9 81923 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 81924 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 81925 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 9 81926 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 81927 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 81928 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 9 81929 -NCIT:C136492 Lung Adenosquamous Carcinoma by AJCC v7 Stage 8 81930 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 9 81931 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 9 81932 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 81933 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 81934 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 9 81935 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 81936 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 81937 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 9 81938 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 81939 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 81940 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 9 81941 -NCIT:C136493 Lung Large Cell Carcinoma by AJCC v7 Stage 8 81942 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 9 81943 -NCIT:C6660 Stage II Lung Large Cell Carcinoma AJCC v7 9 81944 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 81945 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 81946 -NCIT:C8755 Stage I Lung Large Cell Carcinoma AJCC v7 9 81947 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 81948 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 81949 -NCIT:C8756 Stage IV Lung Large Cell Carcinoma AJCC v7 9 81950 -NCIT:C9257 Stage III Lung Large Cell Carcinoma AJCC v7 9 81951 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 81952 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 81953 -NCIT:C4012 Stage IV Lung Non-Small Cell Cancer AJCC v7 8 81954 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 9 81955 -NCIT:C8756 Stage IV Lung Large Cell Carcinoma AJCC v7 9 81956 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 9 81957 -NCIT:C6671 Stage I Lung Non-Small Cell Cancer AJCC v7 8 81958 -NCIT:C5652 Stage IA Lung Non-Small Cell Carcinoma AJCC v7 9 81959 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 81960 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 81961 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 81962 -NCIT:C5653 Stage IB Lung Non-Small Cell Carcinoma AJCC v7 9 81963 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 81964 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 81965 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 81966 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 9 81967 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 81968 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 81969 -NCIT:C8755 Stage I Lung Large Cell Carcinoma AJCC v7 9 81970 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 81971 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 81972 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 9 81973 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 81974 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 81975 -NCIT:C7777 Stage II Lung Non-Small Cell Cancer AJCC v7 8 81976 -NCIT:C5654 Stage IIB Lung Non-Small Cell Carcinoma AJCC v7 9 81977 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 81978 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 81979 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 81980 -NCIT:C5655 Stage IIA Lung Non-Small Cell Carcinoma AJCC v7 9 81981 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 81982 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 81983 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 81984 -NCIT:C6660 Stage II Lung Large Cell Carcinoma AJCC v7 9 81985 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 81986 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 81987 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 9 81988 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 81989 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 81990 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 9 81991 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 81992 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 81993 -NCIT:C7778 Stage III Lung Non-Small Cell Cancer AJCC v7 8 81994 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 9 81995 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 81996 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 81997 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 9 81998 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 81999 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 82000 -NCIT:C9102 Stage IIIA Lung Non-Small Cell Cancer AJCC v7 9 82001 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 82002 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 82003 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 82004 -NCIT:C9103 Stage IIIB Lung Non-Small Cell Cancer AJCC v7 9 82005 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 82006 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 82007 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 82008 -NCIT:C9257 Stage III Lung Large Cell Carcinoma AJCC v7 9 82009 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 82010 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 82011 -NCIT:C9104 Stage 0 Lung Non-Small Cell Cancer AJCC v6 and v7 8 82012 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 9 82013 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 9 82014 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 9 82015 -NCIT:C136494 Lung Squamous Cell Carcinoma by AJCC v7 Stage 7 82016 -NCIT:C8763 Stage 0 Lung Squamous Cell Carcinoma AJCC v6 and v7 8 82017 -NCIT:C8764 Stage I Lung Squamous Cell Carcinoma AJCC v7 8 82018 -NCIT:C6687 Stage IA Lung Squamous Cell Carcinoma AJCC v7 9 82019 -NCIT:C6692 Stage IB Lung Squamous Cell Carcinoma AJCC v7 9 82020 -NCIT:C8765 Stage II Lung Squamous Cell Carcinoma AJCC v7 8 82021 -NCIT:C6688 Stage IIA Lung Squamous Cell Carcinoma AJCC v7 9 82022 -NCIT:C6691 Stage IIB Lung Squamous Cell Carcinoma AJCC v7 9 82023 -NCIT:C8766 Stage III Lung Squamous Cell Carcinoma AJCC v7 8 82024 -NCIT:C6689 Stage IIIA Lung Squamous Cell Carcinoma AJCC v7 9 82025 -NCIT:C6690 Stage IIIB Lung Squamous Cell Carcinoma AJCC v7 9 82026 -NCIT:C8767 Stage IV Lung Squamous Cell Carcinoma AJCC v7 8 82027 -NCIT:C136496 Lung Small Cell Carcinoma by AJCC v7 Stage 7 82028 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 8 82029 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 9 82030 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 9 82031 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 8 82032 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 9 82033 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 9 82034 -NCIT:C6679 Stage III Lung Small Cell Carcinoma AJCC v7 8 82035 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 9 82036 -NCIT:C6681 Stage IIIB Lung Small Cell Carcinoma AJCC v7 9 82037 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 10 82038 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 10 82039 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 8 82040 -NCIT:C27467 Stage 0 Lung Cancer AJCC v6 and v7 7 82041 -NCIT:C9104 Stage 0 Lung Non-Small Cell Cancer AJCC v6 and v7 8 82042 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 9 82043 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 9 82044 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 9 82045 -NCIT:C88888 Stage I Lung Cancer AJCC v7 7 82046 -NCIT:C5642 Stage IA Lung Cancer AJCC v7 8 82047 -NCIT:C5652 Stage IA Lung Non-Small Cell Carcinoma AJCC v7 9 82048 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 82049 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 82050 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 82051 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 9 82052 -NCIT:C6687 Stage IA Lung Squamous Cell Carcinoma AJCC v7 9 82053 -NCIT:C5643 Stage IB Lung Cancer AJCC v7 8 82054 -NCIT:C5653 Stage IB Lung Non-Small Cell Carcinoma AJCC v7 9 82055 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 82056 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 82057 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 82058 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 9 82059 -NCIT:C6692 Stage IB Lung Squamous Cell Carcinoma AJCC v7 9 82060 -NCIT:C6671 Stage I Lung Non-Small Cell Cancer AJCC v7 8 82061 -NCIT:C5652 Stage IA Lung Non-Small Cell Carcinoma AJCC v7 9 82062 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 82063 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 82064 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 82065 -NCIT:C5653 Stage IB Lung Non-Small Cell Carcinoma AJCC v7 9 82066 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 82067 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 82068 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 82069 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 9 82070 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 82071 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 82072 -NCIT:C8755 Stage I Lung Large Cell Carcinoma AJCC v7 9 82073 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 82074 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 82075 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 9 82076 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 82077 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 82078 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 8 82079 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 9 82080 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 9 82081 -NCIT:C8764 Stage I Lung Squamous Cell Carcinoma AJCC v7 8 82082 -NCIT:C6687 Stage IA Lung Squamous Cell Carcinoma AJCC v7 9 82083 -NCIT:C6692 Stage IB Lung Squamous Cell Carcinoma AJCC v7 9 82084 -NCIT:C88889 Stage II Lung Cancer AJCC v7 7 82085 -NCIT:C5644 Stage IIA Lung Cancer AJCC v7 8 82086 -NCIT:C5655 Stage IIA Lung Non-Small Cell Carcinoma AJCC v7 9 82087 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 82088 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 82089 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 82090 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 9 82091 -NCIT:C6688 Stage IIA Lung Squamous Cell Carcinoma AJCC v7 9 82092 -NCIT:C5645 Stage IIB Lung Cancer AJCC v7 8 82093 -NCIT:C5654 Stage IIB Lung Non-Small Cell Carcinoma AJCC v7 9 82094 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 82095 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 82096 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 82097 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 9 82098 -NCIT:C6691 Stage IIB Lung Squamous Cell Carcinoma AJCC v7 9 82099 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 8 82100 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 9 82101 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 9 82102 -NCIT:C7777 Stage II Lung Non-Small Cell Cancer AJCC v7 8 82103 -NCIT:C5654 Stage IIB Lung Non-Small Cell Carcinoma AJCC v7 9 82104 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 82105 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 82106 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 82107 -NCIT:C5655 Stage IIA Lung Non-Small Cell Carcinoma AJCC v7 9 82108 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 82109 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 82110 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 82111 -NCIT:C6660 Stage II Lung Large Cell Carcinoma AJCC v7 9 82112 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 82113 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 82114 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 9 82115 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 82116 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 82117 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 9 82118 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 82119 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 82120 -NCIT:C8765 Stage II Lung Squamous Cell Carcinoma AJCC v7 8 82121 -NCIT:C6688 Stage IIA Lung Squamous Cell Carcinoma AJCC v7 9 82122 -NCIT:C6691 Stage IIB Lung Squamous Cell Carcinoma AJCC v7 9 82123 -NCIT:C88890 Stage III Lung Cancer AJCC v7 7 82124 -NCIT:C5646 Stage IIIA Lung Cancer AJCC v7 8 82125 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 9 82126 -NCIT:C6689 Stage IIIA Lung Squamous Cell Carcinoma AJCC v7 9 82127 -NCIT:C9102 Stage IIIA Lung Non-Small Cell Cancer AJCC v7 9 82128 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 82129 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 82130 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 82131 -NCIT:C5647 Stage IIIB Lung Cancer AJCC v7 8 82132 -NCIT:C6681 Stage IIIB Lung Small Cell Carcinoma AJCC v7 9 82133 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 10 82134 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 10 82135 -NCIT:C6690 Stage IIIB Lung Squamous Cell Carcinoma AJCC v7 9 82136 -NCIT:C9103 Stage IIIB Lung Non-Small Cell Cancer AJCC v7 9 82137 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 82138 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 82139 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 82140 -NCIT:C6679 Stage III Lung Small Cell Carcinoma AJCC v7 8 82141 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 9 82142 -NCIT:C6681 Stage IIIB Lung Small Cell Carcinoma AJCC v7 9 82143 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 10 82144 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 10 82145 -NCIT:C7778 Stage III Lung Non-Small Cell Cancer AJCC v7 8 82146 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 9 82147 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 82148 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 82149 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 9 82150 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 82151 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 82152 -NCIT:C9102 Stage IIIA Lung Non-Small Cell Cancer AJCC v7 9 82153 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 82154 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 82155 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 82156 -NCIT:C9103 Stage IIIB Lung Non-Small Cell Cancer AJCC v7 9 82157 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 82158 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 82159 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 82160 -NCIT:C9257 Stage III Lung Large Cell Carcinoma AJCC v7 9 82161 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 82162 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 82163 -NCIT:C8766 Stage III Lung Squamous Cell Carcinoma AJCC v7 8 82164 -NCIT:C6689 Stage IIIA Lung Squamous Cell Carcinoma AJCC v7 9 82165 -NCIT:C6690 Stage IIIB Lung Squamous Cell Carcinoma AJCC v7 9 82166 -NCIT:C88891 Stage IV Lung Cancer AJCC v7 7 82167 -NCIT:C4012 Stage IV Lung Non-Small Cell Cancer AJCC v7 8 82168 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 9 82169 -NCIT:C8756 Stage IV Lung Large Cell Carcinoma AJCC v7 9 82170 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 9 82171 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 8 82172 -NCIT:C8767 Stage IV Lung Squamous Cell Carcinoma AJCC v7 8 82173 -NCIT:C7527 Malignant Superior Sulcus Neoplasm 5 82174 -NCIT:C7779 Superior Sulcus Lung Carcinoma 6 82175 -NCIT:C7436 Bronchial Intraepithelial Neoplasia 4 82176 -NCIT:C3419 Tracheal Neoplasm 3 82177 -NCIT:C3602 Benign Tracheal Neoplasm 4 82178 -NCIT:C6049 Tracheal Leiomyoma 5 82179 -NCIT:C9346 Malignant Tracheal Neoplasm 4 82180 -NCIT:C4887 Metastatic Malignant Neoplasm in the Trachea 5 82181 -NCIT:C6050 Tracheal Sarcoma 5 82182 -NCIT:C6248 Tracheal Lymphoma 5 82183 -NCIT:C9347 Tracheal Carcinoma 5 82184 -NCIT:C4448 Tracheal Squamous Cell Carcinoma 6 82185 -NCIT:C3639 Tracheal Carcinoma In Situ 7 82186 -NCIT:C6051 Tracheal Adenoid Cystic Carcinoma 6 82187 -NCIT:C4571 Malignant Respiratory System Neoplasm 3 82188 -NCIT:C156885 Malignant Bronchial Neoplasm 4 82189 -NCIT:C35875 Bronchogenic Carcinoma 5 82190 -NCIT:C180922 Advanced Bronchogenic Carcinoma 6 82191 -NCIT:C180923 Recurrent Bronchogenic Carcinoma 6 82192 -NCIT:C7779 Superior Sulcus Lung Carcinoma 6 82193 -NCIT:C5264 Lung Mucosa-Associated Lymphoid Tissue Lymphoma 5 82194 -NCIT:C7377 Malignant Lung Neoplasm 4 82195 -NCIT:C142785 Lung Malignant PEComa 5 82196 -NCIT:C157602 Metastatic Lung Neuroendocrine Neoplasm 5 82197 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 6 82198 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 82199 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 7 82200 -NCIT:C165446 Advanced Lung Neuroendocrine Neoplasm 6 82201 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 82202 -NCIT:C177245 Advanced Lung Carcinoid Tumor 7 82203 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 7 82204 -NCIT:C176715 Locally Advanced Lung Neuroendocrine Neoplasm 6 82205 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 7 82206 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 7 82207 -NCIT:C177243 Metastatic Lung Carcinoid Tumor 6 82208 -NCIT:C177245 Advanced Lung Carcinoid Tumor 7 82209 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 6 82210 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 7 82211 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 7 82212 -NCIT:C165454 Unresectable Lung Neuroendocrine Neoplasm 5 82213 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 6 82214 -NCIT:C177246 Unresectable Lung Carcinoid Tumor 6 82215 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 6 82216 -NCIT:C185043 Lung Plasmacytoma 5 82217 -NCIT:C190100 Childhood Malignant Lung Neoplasm 5 82218 -NCIT:C118814 Childhood Lung Non-Small Cell Carcinoma 6 82219 -NCIT:C118815 Childhood Lung Small Cell Carcinoma 6 82220 -NCIT:C3577 Metastatic Malignant Neoplasm in the Lung 5 82221 -NCIT:C185321 Extramedullary Disease in Plasma Cell Myeloma Involving the Lung 6 82222 -NCIT:C27408 Metastatic Carcinoma in the Lung 6 82223 -NCIT:C153224 Colorectal Carcinoma Metastatic in the Lung 7 82224 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 8 82225 -NCIT:C36300 Breast Carcinoma Metastatic in the Lung 7 82226 -NCIT:C36307 Prostate Carcinoma Metastatic in the Lung 7 82227 -NCIT:C4453 Lung Epithelioid Hemangioendothelioma 5 82228 -NCIT:C45652 Lung Melanoma 5 82229 -NCIT:C4566 Malignant Lung Hilum Neoplasm 5 82230 -NCIT:C7454 Lung Hilum Carcinoma 6 82231 -NCIT:C4794 Lung Lymphoma 5 82232 -NCIT:C181205 Lung Hodgkin Lymphoma 6 82233 -NCIT:C5684 Lung Non-Hodgkin Lymphoma 6 82234 -NCIT:C181211 Lung Follicular Lymphoma 7 82235 -NCIT:C188082 Lung Anaplastic Large Cell Lymphoma 7 82236 -NCIT:C45605 Lung Diffuse Large B-Cell Lymphoma 7 82237 -NCIT:C183121 Lung Intravascular Large B-Cell Lymphoma 8 82238 -NCIT:C5264 Lung Mucosa-Associated Lymphoid Tissue Lymphoma 7 82239 -NCIT:C4860 Lung Sarcoma 5 82240 -NCIT:C142825 Pulmonary Artery Intimal Sarcoma 6 82241 -NCIT:C142827 Primary Pulmonary Myxoid Sarcoma with EWSR1-CREB1 Fusion 6 82242 -NCIT:C173809 Lung Alveolar Soft Part Sarcoma 6 82243 -NCIT:C181201 Lung Rhabdomyosarcoma 6 82244 -NCIT:C188061 Lung Osteosarcoma 6 82245 -NCIT:C3551 Lung Kaposi Sarcoma 6 82246 -NCIT:C45631 Lung Synovial Sarcoma 6 82247 -NCIT:C45632 Lung Biphasic Synovial Sarcoma 7 82248 -NCIT:C45633 Lung Monophasic Synovial Sarcoma 7 82249 -NCIT:C5667 Lung Leiomyosarcoma 6 82250 -NCIT:C4878 Lung Carcinoma 5 82251 -NCIT:C136467 Lung Cancer by AJCC v8 Stage 6 82252 -NCIT:C136468 Occult Lung Cancer AJCC v8 7 82253 -NCIT:C136469 Stage 0 Lung Cancer AJCC v8 7 82254 -NCIT:C136470 Stage I Lung Cancer AJCC v8 7 82255 -NCIT:C136471 Stage IA1 Lung Cancer AJCC v8 8 82256 -NCIT:C136472 Stage IA2 Lung Cancer AJCC v8 8 82257 -NCIT:C136473 Stage IA3 Lung Cancer AJCC v8 8 82258 -NCIT:C136474 Stage IB Lung Cancer AJCC v8 8 82259 -NCIT:C136475 Stage II Lung Cancer AJCC v8 7 82260 -NCIT:C136476 Stage IIA Lung Cancer AJCC v8 8 82261 -NCIT:C136477 Stage IIB Lung Cancer AJCC v8 8 82262 -NCIT:C136478 Stage III Lung Cancer AJCC v8 7 82263 -NCIT:C136479 Stage IIIA Lung Cancer AJCC v8 8 82264 -NCIT:C136480 Stage IIIB Lung Cancer AJCC v8 8 82265 -NCIT:C136481 Stage IIIC Lung Cancer AJCC v8 8 82266 -NCIT:C136482 Stage IV Lung Cancer AJCC v8 7 82267 -NCIT:C136483 Stage IVA Lung Cancer AJCC v8 8 82268 -NCIT:C136484 Stage IVB Lung Cancer AJCC v8 8 82269 -NCIT:C141076 Refractory Lung Carcinoma 6 82270 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 7 82271 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 8 82272 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 8 82273 -NCIT:C153081 Refractory Lung Non-Small Cell Carcinoma 7 82274 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 8 82275 -NCIT:C176858 Refractory Lung Non-Squamous Non-Small Cell Carcinoma 8 82276 -NCIT:C179209 Refractory Lung Adenocarcinoma 8 82277 -NCIT:C173331 Refractory Lung Squamous Cell Carcinoma 7 82278 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 8 82279 -NCIT:C142830 Lung Myoepithelial Carcinoma 6 82280 -NCIT:C153202 Metastatic Lung Carcinoma 6 82281 -NCIT:C133503 Lung Carcinoma Metastatic in the Central Nervous System 7 82282 -NCIT:C36304 Lung Carcinoma Metastatic in the Brain 8 82283 -NCIT:C153203 Advanced Lung Carcinoma 7 82284 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 82285 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 8 82286 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 82287 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 82288 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 82289 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 82290 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 82291 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 82292 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 82293 -NCIT:C180922 Advanced Bronchogenic Carcinoma 8 82294 -NCIT:C153206 Locally Advanced Lung Carcinoma 7 82295 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 8 82296 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 82297 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 82298 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 82299 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 82300 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 82301 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 82302 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 82303 -NCIT:C156092 Metastatic Lung Squamous Cell Carcinoma 7 82304 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 82305 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 82306 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 82307 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 82308 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 82309 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 82310 -NCIT:C156094 Metastatic Lung Non-Small Cell Carcinoma 7 82311 -NCIT:C128798 Metastatic Lung Non-Squamous Non-Small Cell Carcinoma 8 82312 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 82313 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 82314 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 82315 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 82316 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 82317 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 82318 -NCIT:C155908 Metastatic Lung Adenocarcinoma 9 82319 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 82320 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 82321 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 9 82322 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 82323 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 82324 -NCIT:C156093 Metastatic Lung Adenosquamous Carcinoma 8 82325 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 82326 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 82327 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 82328 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 82329 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 82330 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 82331 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 8 82332 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 82333 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 82334 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 82335 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 82336 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 82337 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 82338 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 8 82339 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 82340 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 82341 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 82342 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 82343 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 82344 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 7 82345 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 82346 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 82347 -NCIT:C187195 Oligometastatic Lung Carcinoma 7 82348 -NCIT:C36305 Lung Carcinoma Metastatic in the Bone 7 82349 -NCIT:C36306 Lung Carcinoma Metastatic in the Liver 7 82350 -NCIT:C155902 Unresectable Lung Carcinoma 6 82351 -NCIT:C155901 Unresectable Lung Non-Small Cell Carcinoma 7 82352 -NCIT:C162642 Unresectable Lung Non-Squamous Non-Small Cell Carcinoma 8 82353 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 9 82354 -NCIT:C171612 Unresectable Lung Non-Small Cell Squamous Carcinoma 8 82355 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 82356 -NCIT:C174510 Unresectable Lung Adenocarcinoma 8 82357 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 7 82358 -NCIT:C162570 Localized Lung Carcinoma 6 82359 -NCIT:C183116 Lung Hyalinizing Clear Cell Carcinoma 6 82360 -NCIT:C188068 Lung Secretory Carcinoma 6 82361 -NCIT:C190952 Resectable Lung Carcinoma 6 82362 -NCIT:C165767 Resectable Lung Non-Small Cell Carcinoma 7 82363 -NCIT:C190954 Resectable Lung Adenocarcinoma 8 82364 -NCIT:C190953 Resectable Lung Squamous Cell Carcinoma 7 82365 -NCIT:C27637 Transplant-Related Lung Carcinoma 6 82366 -NCIT:C27925 Asbestos-Related Lung Carcinoma 6 82367 -NCIT:C2926 Lung Non-Small Cell Carcinoma 6 82368 -NCIT:C118814 Childhood Lung Non-Small Cell Carcinoma 7 82369 -NCIT:C133254 Lung Non-Small Cell Squamous Carcinoma 7 82370 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 82371 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 82372 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 82373 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 82374 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 8 82375 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 8 82376 -NCIT:C171612 Unresectable Lung Non-Small Cell Squamous Carcinoma 8 82377 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 82378 -NCIT:C45502 Lung Squamous Cell Carcinoma, Papillary Variant 8 82379 -NCIT:C45503 Lung Squamous Cell Carcinoma, Clear Cell Variant 8 82380 -NCIT:C135017 Lung Non-Squamous Non-Small Cell Carcinoma 7 82381 -NCIT:C128797 Recurrent Lung Non-Squamous Non-Small Cell Carcinoma 8 82382 -NCIT:C128798 Metastatic Lung Non-Squamous Non-Small Cell Carcinoma 8 82383 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 82384 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 82385 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 82386 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 82387 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 82388 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 82389 -NCIT:C155908 Metastatic Lung Adenocarcinoma 9 82390 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 82391 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 82392 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 9 82393 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 82394 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 82395 -NCIT:C162642 Unresectable Lung Non-Squamous Non-Small Cell Carcinoma 8 82396 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 9 82397 -NCIT:C176858 Refractory Lung Non-Squamous Non-Small Cell Carcinoma 8 82398 -NCIT:C136491 Lung Non-Small Cell Cancer by AJCC v7 Stage 7 82399 -NCIT:C136490 Lung Adenocarcinoma by AJCC v7 Stage 8 82400 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 9 82401 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 9 82402 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 82403 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 82404 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 9 82405 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 82406 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 82407 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 9 82408 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 82409 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 82410 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 9 82411 -NCIT:C136492 Lung Adenosquamous Carcinoma by AJCC v7 Stage 8 82412 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 9 82413 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 9 82414 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 82415 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 82416 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 9 82417 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 82418 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 82419 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 9 82420 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 82421 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 82422 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 9 82423 -NCIT:C136493 Lung Large Cell Carcinoma by AJCC v7 Stage 8 82424 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 9 82425 -NCIT:C6660 Stage II Lung Large Cell Carcinoma AJCC v7 9 82426 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 82427 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 82428 -NCIT:C8755 Stage I Lung Large Cell Carcinoma AJCC v7 9 82429 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 82430 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 82431 -NCIT:C8756 Stage IV Lung Large Cell Carcinoma AJCC v7 9 82432 -NCIT:C9257 Stage III Lung Large Cell Carcinoma AJCC v7 9 82433 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 82434 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 82435 -NCIT:C4012 Stage IV Lung Non-Small Cell Cancer AJCC v7 8 82436 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 9 82437 -NCIT:C8756 Stage IV Lung Large Cell Carcinoma AJCC v7 9 82438 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 9 82439 -NCIT:C6671 Stage I Lung Non-Small Cell Cancer AJCC v7 8 82440 -NCIT:C5652 Stage IA Lung Non-Small Cell Carcinoma AJCC v7 9 82441 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 82442 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 82443 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 82444 -NCIT:C5653 Stage IB Lung Non-Small Cell Carcinoma AJCC v7 9 82445 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 82446 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 82447 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 82448 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 9 82449 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 82450 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 82451 -NCIT:C8755 Stage I Lung Large Cell Carcinoma AJCC v7 9 82452 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 82453 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 82454 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 9 82455 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 82456 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 82457 -NCIT:C7777 Stage II Lung Non-Small Cell Cancer AJCC v7 8 82458 -NCIT:C5654 Stage IIB Lung Non-Small Cell Carcinoma AJCC v7 9 82459 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 82460 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 82461 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 82462 -NCIT:C5655 Stage IIA Lung Non-Small Cell Carcinoma AJCC v7 9 82463 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 82464 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 82465 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 82466 -NCIT:C6660 Stage II Lung Large Cell Carcinoma AJCC v7 9 82467 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 82468 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 82469 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 9 82470 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 82471 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 82472 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 9 82473 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 82474 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 82475 -NCIT:C7778 Stage III Lung Non-Small Cell Cancer AJCC v7 8 82476 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 9 82477 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 82478 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 82479 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 9 82480 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 82481 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 82482 -NCIT:C9102 Stage IIIA Lung Non-Small Cell Cancer AJCC v7 9 82483 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 82484 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 82485 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 82486 -NCIT:C9103 Stage IIIB Lung Non-Small Cell Cancer AJCC v7 9 82487 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 82488 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 82489 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 82490 -NCIT:C9257 Stage III Lung Large Cell Carcinoma AJCC v7 9 82491 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 82492 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 82493 -NCIT:C9104 Stage 0 Lung Non-Small Cell Cancer AJCC v6 and v7 8 82494 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 9 82495 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 9 82496 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 9 82497 -NCIT:C153081 Refractory Lung Non-Small Cell Carcinoma 7 82498 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 8 82499 -NCIT:C176858 Refractory Lung Non-Squamous Non-Small Cell Carcinoma 8 82500 -NCIT:C179209 Refractory Lung Adenocarcinoma 8 82501 -NCIT:C155901 Unresectable Lung Non-Small Cell Carcinoma 7 82502 -NCIT:C162642 Unresectable Lung Non-Squamous Non-Small Cell Carcinoma 8 82503 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 9 82504 -NCIT:C171612 Unresectable Lung Non-Small Cell Squamous Carcinoma 8 82505 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 82506 -NCIT:C174510 Unresectable Lung Adenocarcinoma 8 82507 -NCIT:C156094 Metastatic Lung Non-Small Cell Carcinoma 7 82508 -NCIT:C128798 Metastatic Lung Non-Squamous Non-Small Cell Carcinoma 8 82509 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 82510 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 82511 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 82512 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 82513 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 82514 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 82515 -NCIT:C155908 Metastatic Lung Adenocarcinoma 9 82516 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 82517 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 82518 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 9 82519 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 82520 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 82521 -NCIT:C156093 Metastatic Lung Adenosquamous Carcinoma 8 82522 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 82523 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 82524 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 82525 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 82526 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 82527 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 82528 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 8 82529 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 82530 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 82531 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 82532 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 82533 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 82534 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 82535 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 8 82536 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 82537 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 82538 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 82539 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 82540 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 82541 -NCIT:C165767 Resectable Lung Non-Small Cell Carcinoma 7 82542 -NCIT:C190954 Resectable Lung Adenocarcinoma 8 82543 -NCIT:C3512 Lung Adenocarcinoma 7 82544 -NCIT:C136486 Lung Adenocarcinoma In Situ 8 82545 -NCIT:C136716 Lung Non-Mucinous Adenocarcinoma In Situ 9 82546 -NCIT:C136717 Lung Mucinous Adenocarcinoma In Situ 9 82547 -NCIT:C136490 Lung Adenocarcinoma by AJCC v7 Stage 8 82548 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 9 82549 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 9 82550 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 82551 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 82552 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 9 82553 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 82554 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 82555 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 9 82556 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 82557 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 82558 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 9 82559 -NCIT:C136709 Invasive Lung Mucinous Adenocarcinoma 8 82560 -NCIT:C136710 Lung Enteric Adenocarcinoma 8 82561 -NCIT:C155908 Metastatic Lung Adenocarcinoma 8 82562 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 82563 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 82564 -NCIT:C174510 Unresectable Lung Adenocarcinoma 8 82565 -NCIT:C179209 Refractory Lung Adenocarcinoma 8 82566 -NCIT:C183109 Invasive Lung Non-Mucinous Adenocarcinoma 8 82567 -NCIT:C123160 Lepidic Adenocarcinoma 9 82568 -NCIT:C5649 Lung Acinar Adenocarcinoma 9 82569 -NCIT:C5650 Lung Papillary Adenocarcinoma 9 82570 -NCIT:C128847 Lung Micropapillary Adenocarcinoma 10 82571 -NCIT:C5651 Solid Lung Adenocarcinoma 9 82572 -NCIT:C190954 Resectable Lung Adenocarcinoma 8 82573 -NCIT:C2923 Minimally Invasive Lung Adenocarcinoma 8 82574 -NCIT:C7268 Minimally Invasive Lung Mucinous Adenocarcinoma 9 82575 -NCIT:C7269 Minimally Invasive Lung Non-Mucinous Adenocarcinoma 9 82576 -NCIT:C7270 Minimally Invasive Lung Mixed Non-Mucinous and Mucinous Adenocarcinoma 9 82577 -NCIT:C45509 Lung Fetal Adenocarcinoma 8 82578 -NCIT:C45512 Lung Colloid Adenocarcinoma 8 82579 -NCIT:C6699 Occult Lung Adenocarcinoma 8 82580 -NCIT:C8757 Recurrent Lung Adenocarcinoma 8 82581 -NCIT:C4450 Lung Large Cell Carcinoma 7 82582 -NCIT:C136493 Lung Large Cell Carcinoma by AJCC v7 Stage 8 82583 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 9 82584 -NCIT:C6660 Stage II Lung Large Cell Carcinoma AJCC v7 9 82585 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 82586 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 82587 -NCIT:C8755 Stage I Lung Large Cell Carcinoma AJCC v7 9 82588 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 82589 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 82590 -NCIT:C8756 Stage IV Lung Large Cell Carcinoma AJCC v7 9 82591 -NCIT:C9257 Stage III Lung Large Cell Carcinoma AJCC v7 9 82592 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 82593 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 82594 -NCIT:C4451 Lung Large Cell Carcinoma, Clear Cell Variant 8 82595 -NCIT:C6685 Occult Lung Large Cell Carcinoma 8 82596 -NCIT:C6876 Lung Large Cell Carcinoma with Rhabdoid Phenotype 8 82597 -NCIT:C7266 Lung Basaloid Large Cell Carcinoma 8 82598 -NCIT:C8753 Recurrent Lung Large Cell Carcinoma 8 82599 -NCIT:C45519 Lung Lymphoepithelial Carcinoma 7 82600 -NCIT:C45540 Lung Sarcomatoid Carcinoma 7 82601 -NCIT:C3732 Pulmonary Blastoma 8 82602 -NCIT:C4452 Lung Giant Cell Carcinoma 8 82603 -NCIT:C45541 Lung Spindle Cell Carcinoma 8 82604 -NCIT:C45542 Lung Pleomorphic Carcinoma 8 82605 -NCIT:C45543 Lung Carcinosarcoma 8 82606 -NCIT:C7783 Recurrent Lung Non-Small Cell Carcinoma 7 82607 -NCIT:C128797 Recurrent Lung Non-Squamous Non-Small Cell Carcinoma 8 82608 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 8 82609 -NCIT:C190195 Locally Recurrent Lung Non-Small Cell Carcinoma 8 82610 -NCIT:C8747 Recurrent Lung Adenosquamous Carcinoma 8 82611 -NCIT:C8753 Recurrent Lung Large Cell Carcinoma 8 82612 -NCIT:C8757 Recurrent Lung Adenocarcinoma 8 82613 -NCIT:C9038 Occult Lung Non-Small Cell Carcinoma 7 82614 -NCIT:C6684 Occult Lung Adenosquamous Carcinoma 8 82615 -NCIT:C6685 Occult Lung Large Cell Carcinoma 8 82616 -NCIT:C6699 Occult Lung Adenocarcinoma 8 82617 -NCIT:C9133 Lung Adenosquamous Carcinoma 7 82618 -NCIT:C136492 Lung Adenosquamous Carcinoma by AJCC v7 Stage 8 82619 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 9 82620 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 9 82621 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 82622 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 82623 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 9 82624 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 82625 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 82626 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 9 82627 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 82628 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 82629 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 9 82630 -NCIT:C156093 Metastatic Lung Adenosquamous Carcinoma 8 82631 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 82632 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 82633 -NCIT:C6684 Occult Lung Adenosquamous Carcinoma 8 82634 -NCIT:C8747 Recurrent Lung Adenosquamous Carcinoma 8 82635 -NCIT:C3493 Lung Squamous Cell Carcinoma 6 82636 -NCIT:C133254 Lung Non-Small Cell Squamous Carcinoma 7 82637 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 82638 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 82639 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 82640 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 82641 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 8 82642 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 8 82643 -NCIT:C171612 Unresectable Lung Non-Small Cell Squamous Carcinoma 8 82644 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 82645 -NCIT:C45502 Lung Squamous Cell Carcinoma, Papillary Variant 8 82646 -NCIT:C45503 Lung Squamous Cell Carcinoma, Clear Cell Variant 8 82647 -NCIT:C136494 Lung Squamous Cell Carcinoma by AJCC v7 Stage 7 82648 -NCIT:C8763 Stage 0 Lung Squamous Cell Carcinoma AJCC v6 and v7 8 82649 -NCIT:C8764 Stage I Lung Squamous Cell Carcinoma AJCC v7 8 82650 -NCIT:C6687 Stage IA Lung Squamous Cell Carcinoma AJCC v7 9 82651 -NCIT:C6692 Stage IB Lung Squamous Cell Carcinoma AJCC v7 9 82652 -NCIT:C8765 Stage II Lung Squamous Cell Carcinoma AJCC v7 8 82653 -NCIT:C6688 Stage IIA Lung Squamous Cell Carcinoma AJCC v7 9 82654 -NCIT:C6691 Stage IIB Lung Squamous Cell Carcinoma AJCC v7 9 82655 -NCIT:C8766 Stage III Lung Squamous Cell Carcinoma AJCC v7 8 82656 -NCIT:C6689 Stage IIIA Lung Squamous Cell Carcinoma AJCC v7 9 82657 -NCIT:C6690 Stage IIIB Lung Squamous Cell Carcinoma AJCC v7 9 82658 -NCIT:C8767 Stage IV Lung Squamous Cell Carcinoma AJCC v7 8 82659 -NCIT:C136713 Lung Keratinizing Squamous Cell Carcinoma 7 82660 -NCIT:C136714 Lung Non-Keratinizing Squamous Cell Carcinoma 7 82661 -NCIT:C136719 Lung Squamous Cell Carcinoma In Situ 7 82662 -NCIT:C8763 Stage 0 Lung Squamous Cell Carcinoma AJCC v6 and v7 8 82663 -NCIT:C156092 Metastatic Lung Squamous Cell Carcinoma 7 82664 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 82665 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 82666 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 82667 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 82668 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 82669 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 82670 -NCIT:C173331 Refractory Lung Squamous Cell Carcinoma 7 82671 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 8 82672 -NCIT:C190953 Resectable Lung Squamous Cell Carcinoma 7 82673 -NCIT:C45504 Lung Squamous Cell Carcinoma, Small Cell Variant 7 82674 -NCIT:C45507 Lung Basaloid Squamous Cell Carcinoma 7 82675 -NCIT:C5014 Recurrent Lung Squamous Cell Carcinoma 7 82676 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 8 82677 -NCIT:C6686 Occult Lung Squamous Cell Carcinoma 7 82678 -NCIT:C35875 Bronchogenic Carcinoma 6 82679 -NCIT:C180922 Advanced Bronchogenic Carcinoma 7 82680 -NCIT:C180923 Recurrent Bronchogenic Carcinoma 7 82681 -NCIT:C7779 Superior Sulcus Lung Carcinoma 7 82682 -NCIT:C45544 Lung Mucoepidermoid Carcinoma 6 82683 -NCIT:C45545 Lung Epithelial-Myoepithelial Carcinoma 6 82684 -NCIT:C45569 Lung Neuroendocrine Carcinoma 6 82685 -NCIT:C4917 Lung Small Cell Carcinoma 7 82686 -NCIT:C118815 Childhood Lung Small Cell Carcinoma 8 82687 -NCIT:C136496 Lung Small Cell Carcinoma by AJCC v7 Stage 8 82688 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 9 82689 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 10 82690 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 10 82691 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 9 82692 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 10 82693 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 10 82694 -NCIT:C6679 Stage III Lung Small Cell Carcinoma AJCC v7 9 82695 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 10 82696 -NCIT:C6681 Stage IIIB Lung Small Cell Carcinoma AJCC v7 10 82697 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 11 82698 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 11 82699 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 9 82700 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 8 82701 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 9 82702 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 9 82703 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 8 82704 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 9 82705 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 82706 -NCIT:C158495 Platinum-Sensitive Lung Small Cell Carcinoma 8 82707 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 8 82708 -NCIT:C188753 Lung Small Cell Carcinoma Neuroendocrine Subtype 8 82709 -NCIT:C188754 Lung Small Cell Carcinoma, Neuroendocrine-High Subtype 9 82710 -NCIT:C188755 Lung Small Cell Carcinoma, Neuroendocrine-Low Subtype 9 82711 -NCIT:C188756 Lung Small Cell Carcinoma Molecular Subtypes 8 82712 -NCIT:C188761 Lung Small Cell Carcinoma, A Subtype 9 82713 -NCIT:C188762 Lung Small Cell Carcinoma, N Subtype 9 82714 -NCIT:C188763 Lung Small Cell Carcinoma, P Subtype 9 82715 -NCIT:C188765 Lung Small Cell Carcinoma, I Subtype 9 82716 -NCIT:C188766 Lung Small Cell Carcinoma, Y Subtype 9 82717 -NCIT:C6683 Occult Lung Small Cell Carcinoma 8 82718 -NCIT:C7853 Limited Stage Lung Small Cell Carcinoma 8 82719 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 9 82720 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 9 82721 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 10 82722 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 10 82723 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 9 82724 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 10 82725 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 10 82726 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 9 82727 -NCIT:C9049 Extensive Stage Lung Small Cell Carcinoma 8 82728 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 9 82729 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 9 82730 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 9 82731 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 9 82732 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 8 82733 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 9 82734 -NCIT:C9137 Combined Lung Small Cell Carcinoma 8 82735 -NCIT:C9379 Combined Lung Small Cell Carcinoma and Lung Adenocarcinoma 9 82736 -NCIT:C9423 Combined Lung Small Cell and Squamous Cell Carcinoma 9 82737 -NCIT:C5672 Lung Large Cell Neuroendocrine Carcinoma 7 82738 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 8 82739 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 82740 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 82741 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 8 82742 -NCIT:C7267 Combined Lung Large Cell Neuroendocrine Carcinoma 8 82743 -NCIT:C7591 Combined Lung Carcinoma 7 82744 -NCIT:C7267 Combined Lung Large Cell Neuroendocrine Carcinoma 8 82745 -NCIT:C9137 Combined Lung Small Cell Carcinoma 8 82746 -NCIT:C9379 Combined Lung Small Cell Carcinoma and Lung Adenocarcinoma 9 82747 -NCIT:C9423 Combined Lung Small Cell and Squamous Cell Carcinoma 9 82748 -NCIT:C5641 Occult Lung Carcinoma 6 82749 -NCIT:C136468 Occult Lung Cancer AJCC v8 7 82750 -NCIT:C6683 Occult Lung Small Cell Carcinoma 7 82751 -NCIT:C6686 Occult Lung Squamous Cell Carcinoma 7 82752 -NCIT:C9038 Occult Lung Non-Small Cell Carcinoma 7 82753 -NCIT:C6684 Occult Lung Adenosquamous Carcinoma 8 82754 -NCIT:C6685 Occult Lung Large Cell Carcinoma 8 82755 -NCIT:C6699 Occult Lung Adenocarcinoma 8 82756 -NCIT:C5666 Lung Adenoid Cystic Carcinoma 6 82757 -NCIT:C7454 Lung Hilum Carcinoma 6 82758 -NCIT:C8953 Recurrent Lung Carcinoma 6 82759 -NCIT:C180923 Recurrent Bronchogenic Carcinoma 7 82760 -NCIT:C5014 Recurrent Lung Squamous Cell Carcinoma 7 82761 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 8 82762 -NCIT:C7783 Recurrent Lung Non-Small Cell Carcinoma 7 82763 -NCIT:C128797 Recurrent Lung Non-Squamous Non-Small Cell Carcinoma 8 82764 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 8 82765 -NCIT:C190195 Locally Recurrent Lung Non-Small Cell Carcinoma 8 82766 -NCIT:C8747 Recurrent Lung Adenosquamous Carcinoma 8 82767 -NCIT:C8753 Recurrent Lung Large Cell Carcinoma 8 82768 -NCIT:C8757 Recurrent Lung Adenocarcinoma 8 82769 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 7 82770 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 8 82771 -NCIT:C90519 Lung Cancer by AJCC v6 Stage 6 82772 -NCIT:C27467 Stage 0 Lung Cancer AJCC v6 and v7 7 82773 -NCIT:C9104 Stage 0 Lung Non-Small Cell Cancer AJCC v6 and v7 8 82774 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 9 82775 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 9 82776 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 9 82777 -NCIT:C8772 Stage I Lung Cancer AJCC v6 7 82778 -NCIT:C8773 Stage III Lung Cancer AJCC v6 7 82779 -NCIT:C8774 Stage IV Lung Cancer AJCC v6 7 82780 -NCIT:C8954 Stage II Lung Cancer AJCC v6 7 82781 -NCIT:C91232 Lung Cancer by AJCC v7 Stage 6 82782 -NCIT:C136491 Lung Non-Small Cell Cancer by AJCC v7 Stage 7 82783 -NCIT:C136490 Lung Adenocarcinoma by AJCC v7 Stage 8 82784 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 9 82785 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 9 82786 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 82787 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 82788 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 9 82789 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 82790 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 82791 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 9 82792 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 82793 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 82794 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 9 82795 -NCIT:C136492 Lung Adenosquamous Carcinoma by AJCC v7 Stage 8 82796 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 9 82797 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 9 82798 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 82799 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 82800 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 9 82801 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 82802 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 82803 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 9 82804 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 82805 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 82806 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 9 82807 -NCIT:C136493 Lung Large Cell Carcinoma by AJCC v7 Stage 8 82808 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 9 82809 -NCIT:C6660 Stage II Lung Large Cell Carcinoma AJCC v7 9 82810 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 82811 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 82812 -NCIT:C8755 Stage I Lung Large Cell Carcinoma AJCC v7 9 82813 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 82814 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 82815 -NCIT:C8756 Stage IV Lung Large Cell Carcinoma AJCC v7 9 82816 -NCIT:C9257 Stage III Lung Large Cell Carcinoma AJCC v7 9 82817 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 82818 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 82819 -NCIT:C4012 Stage IV Lung Non-Small Cell Cancer AJCC v7 8 82820 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 9 82821 -NCIT:C8756 Stage IV Lung Large Cell Carcinoma AJCC v7 9 82822 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 9 82823 -NCIT:C6671 Stage I Lung Non-Small Cell Cancer AJCC v7 8 82824 -NCIT:C5652 Stage IA Lung Non-Small Cell Carcinoma AJCC v7 9 82825 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 82826 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 82827 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 82828 -NCIT:C5653 Stage IB Lung Non-Small Cell Carcinoma AJCC v7 9 82829 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 82830 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 82831 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 82832 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 9 82833 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 82834 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 82835 -NCIT:C8755 Stage I Lung Large Cell Carcinoma AJCC v7 9 82836 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 82837 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 82838 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 9 82839 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 82840 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 82841 -NCIT:C7777 Stage II Lung Non-Small Cell Cancer AJCC v7 8 82842 -NCIT:C5654 Stage IIB Lung Non-Small Cell Carcinoma AJCC v7 9 82843 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 82844 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 82845 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 82846 -NCIT:C5655 Stage IIA Lung Non-Small Cell Carcinoma AJCC v7 9 82847 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 82848 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 82849 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 82850 -NCIT:C6660 Stage II Lung Large Cell Carcinoma AJCC v7 9 82851 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 82852 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 82853 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 9 82854 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 82855 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 82856 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 9 82857 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 82858 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 82859 -NCIT:C7778 Stage III Lung Non-Small Cell Cancer AJCC v7 8 82860 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 9 82861 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 82862 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 82863 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 9 82864 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 82865 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 82866 -NCIT:C9102 Stage IIIA Lung Non-Small Cell Cancer AJCC v7 9 82867 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 82868 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 82869 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 82870 -NCIT:C9103 Stage IIIB Lung Non-Small Cell Cancer AJCC v7 9 82871 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 82872 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 82873 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 82874 -NCIT:C9257 Stage III Lung Large Cell Carcinoma AJCC v7 9 82875 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 82876 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 82877 -NCIT:C9104 Stage 0 Lung Non-Small Cell Cancer AJCC v6 and v7 8 82878 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 9 82879 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 9 82880 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 9 82881 -NCIT:C136494 Lung Squamous Cell Carcinoma by AJCC v7 Stage 7 82882 -NCIT:C8763 Stage 0 Lung Squamous Cell Carcinoma AJCC v6 and v7 8 82883 -NCIT:C8764 Stage I Lung Squamous Cell Carcinoma AJCC v7 8 82884 -NCIT:C6687 Stage IA Lung Squamous Cell Carcinoma AJCC v7 9 82885 -NCIT:C6692 Stage IB Lung Squamous Cell Carcinoma AJCC v7 9 82886 -NCIT:C8765 Stage II Lung Squamous Cell Carcinoma AJCC v7 8 82887 -NCIT:C6688 Stage IIA Lung Squamous Cell Carcinoma AJCC v7 9 82888 -NCIT:C6691 Stage IIB Lung Squamous Cell Carcinoma AJCC v7 9 82889 -NCIT:C8766 Stage III Lung Squamous Cell Carcinoma AJCC v7 8 82890 -NCIT:C6689 Stage IIIA Lung Squamous Cell Carcinoma AJCC v7 9 82891 -NCIT:C6690 Stage IIIB Lung Squamous Cell Carcinoma AJCC v7 9 82892 -NCIT:C8767 Stage IV Lung Squamous Cell Carcinoma AJCC v7 8 82893 -NCIT:C136496 Lung Small Cell Carcinoma by AJCC v7 Stage 7 82894 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 8 82895 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 9 82896 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 9 82897 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 8 82898 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 9 82899 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 9 82900 -NCIT:C6679 Stage III Lung Small Cell Carcinoma AJCC v7 8 82901 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 9 82902 -NCIT:C6681 Stage IIIB Lung Small Cell Carcinoma AJCC v7 9 82903 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 10 82904 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 10 82905 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 8 82906 -NCIT:C27467 Stage 0 Lung Cancer AJCC v6 and v7 7 82907 -NCIT:C9104 Stage 0 Lung Non-Small Cell Cancer AJCC v6 and v7 8 82908 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 9 82909 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 9 82910 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 9 82911 -NCIT:C88888 Stage I Lung Cancer AJCC v7 7 82912 -NCIT:C5642 Stage IA Lung Cancer AJCC v7 8 82913 -NCIT:C5652 Stage IA Lung Non-Small Cell Carcinoma AJCC v7 9 82914 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 82915 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 82916 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 82917 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 9 82918 -NCIT:C6687 Stage IA Lung Squamous Cell Carcinoma AJCC v7 9 82919 -NCIT:C5643 Stage IB Lung Cancer AJCC v7 8 82920 -NCIT:C5653 Stage IB Lung Non-Small Cell Carcinoma AJCC v7 9 82921 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 82922 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 82923 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 82924 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 9 82925 -NCIT:C6692 Stage IB Lung Squamous Cell Carcinoma AJCC v7 9 82926 -NCIT:C6671 Stage I Lung Non-Small Cell Cancer AJCC v7 8 82927 -NCIT:C5652 Stage IA Lung Non-Small Cell Carcinoma AJCC v7 9 82928 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 82929 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 82930 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 82931 -NCIT:C5653 Stage IB Lung Non-Small Cell Carcinoma AJCC v7 9 82932 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 82933 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 82934 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 82935 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 9 82936 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 82937 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 82938 -NCIT:C8755 Stage I Lung Large Cell Carcinoma AJCC v7 9 82939 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 82940 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 82941 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 9 82942 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 82943 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 82944 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 8 82945 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 9 82946 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 9 82947 -NCIT:C8764 Stage I Lung Squamous Cell Carcinoma AJCC v7 8 82948 -NCIT:C6687 Stage IA Lung Squamous Cell Carcinoma AJCC v7 9 82949 -NCIT:C6692 Stage IB Lung Squamous Cell Carcinoma AJCC v7 9 82950 -NCIT:C88889 Stage II Lung Cancer AJCC v7 7 82951 -NCIT:C5644 Stage IIA Lung Cancer AJCC v7 8 82952 -NCIT:C5655 Stage IIA Lung Non-Small Cell Carcinoma AJCC v7 9 82953 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 82954 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 82955 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 82956 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 9 82957 -NCIT:C6688 Stage IIA Lung Squamous Cell Carcinoma AJCC v7 9 82958 -NCIT:C5645 Stage IIB Lung Cancer AJCC v7 8 82959 -NCIT:C5654 Stage IIB Lung Non-Small Cell Carcinoma AJCC v7 9 82960 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 82961 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 82962 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 82963 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 9 82964 -NCIT:C6691 Stage IIB Lung Squamous Cell Carcinoma AJCC v7 9 82965 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 8 82966 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 9 82967 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 9 82968 -NCIT:C7777 Stage II Lung Non-Small Cell Cancer AJCC v7 8 82969 -NCIT:C5654 Stage IIB Lung Non-Small Cell Carcinoma AJCC v7 9 82970 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 82971 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 82972 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 82973 -NCIT:C5655 Stage IIA Lung Non-Small Cell Carcinoma AJCC v7 9 82974 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 82975 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 82976 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 82977 -NCIT:C6660 Stage II Lung Large Cell Carcinoma AJCC v7 9 82978 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 82979 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 82980 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 9 82981 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 82982 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 82983 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 9 82984 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 82985 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 82986 -NCIT:C8765 Stage II Lung Squamous Cell Carcinoma AJCC v7 8 82987 -NCIT:C6688 Stage IIA Lung Squamous Cell Carcinoma AJCC v7 9 82988 -NCIT:C6691 Stage IIB Lung Squamous Cell Carcinoma AJCC v7 9 82989 -NCIT:C88890 Stage III Lung Cancer AJCC v7 7 82990 -NCIT:C5646 Stage IIIA Lung Cancer AJCC v7 8 82991 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 9 82992 -NCIT:C6689 Stage IIIA Lung Squamous Cell Carcinoma AJCC v7 9 82993 -NCIT:C9102 Stage IIIA Lung Non-Small Cell Cancer AJCC v7 9 82994 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 82995 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 82996 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 82997 -NCIT:C5647 Stage IIIB Lung Cancer AJCC v7 8 82998 -NCIT:C6681 Stage IIIB Lung Small Cell Carcinoma AJCC v7 9 82999 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 10 83000 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 10 83001 -NCIT:C6690 Stage IIIB Lung Squamous Cell Carcinoma AJCC v7 9 83002 -NCIT:C9103 Stage IIIB Lung Non-Small Cell Cancer AJCC v7 9 83003 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 83004 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 83005 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 83006 -NCIT:C6679 Stage III Lung Small Cell Carcinoma AJCC v7 8 83007 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 9 83008 -NCIT:C6681 Stage IIIB Lung Small Cell Carcinoma AJCC v7 9 83009 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 10 83010 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 10 83011 -NCIT:C7778 Stage III Lung Non-Small Cell Cancer AJCC v7 8 83012 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 9 83013 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 83014 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 83015 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 9 83016 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 83017 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 83018 -NCIT:C9102 Stage IIIA Lung Non-Small Cell Cancer AJCC v7 9 83019 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 83020 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 83021 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 83022 -NCIT:C9103 Stage IIIB Lung Non-Small Cell Cancer AJCC v7 9 83023 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 83024 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 83025 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 83026 -NCIT:C9257 Stage III Lung Large Cell Carcinoma AJCC v7 9 83027 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 83028 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 83029 -NCIT:C8766 Stage III Lung Squamous Cell Carcinoma AJCC v7 8 83030 -NCIT:C6689 Stage IIIA Lung Squamous Cell Carcinoma AJCC v7 9 83031 -NCIT:C6690 Stage IIIB Lung Squamous Cell Carcinoma AJCC v7 9 83032 -NCIT:C88891 Stage IV Lung Cancer AJCC v7 7 83033 -NCIT:C4012 Stage IV Lung Non-Small Cell Cancer AJCC v7 8 83034 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 9 83035 -NCIT:C8756 Stage IV Lung Large Cell Carcinoma AJCC v7 9 83036 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 9 83037 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 8 83038 -NCIT:C8767 Stage IV Lung Squamous Cell Carcinoma AJCC v7 8 83039 -NCIT:C7527 Malignant Superior Sulcus Neoplasm 5 83040 -NCIT:C7779 Superior Sulcus Lung Carcinoma 6 83041 -NCIT:C9346 Malignant Tracheal Neoplasm 4 83042 -NCIT:C4887 Metastatic Malignant Neoplasm in the Trachea 5 83043 -NCIT:C6050 Tracheal Sarcoma 5 83044 -NCIT:C6248 Tracheal Lymphoma 5 83045 -NCIT:C9347 Tracheal Carcinoma 5 83046 -NCIT:C4448 Tracheal Squamous Cell Carcinoma 6 83047 -NCIT:C3639 Tracheal Carcinoma In Situ 7 83048 -NCIT:C6051 Tracheal Adenoid Cystic Carcinoma 6 83049 -NCIT:C8531 Benign Respiratory System Neoplasm 3 83050 -NCIT:C3602 Benign Tracheal Neoplasm 4 83051 -NCIT:C6049 Tracheal Leiomyoma 5 83052 -NCIT:C4454 Benign Lung Neoplasm 4 83053 -NCIT:C133091 Lung Adenofibroma 5 83054 -NCIT:C142784 Benign Lung PEComa 5 83055 -NCIT:C38152 Lung Clear Cell Tumor 6 83056 -NCIT:C142829 Lung Myoepithelioma 5 83057 -NCIT:C190105 Fetal Lung Interstitial Tumor 5 83058 -NCIT:C190621 Childhood Benign Lung Neoplasm 5 83059 -NCIT:C190105 Fetal Lung Interstitial Tumor 6 83060 -NCIT:C3497 Pulmonary Hamartoma 5 83061 -NCIT:C5662 Endobronchial Hamartoma 6 83062 -NCIT:C5663 Multiple Pulmonary Hamartomas 6 83063 -NCIT:C4455 Lung Adenoma 5 83064 -NCIT:C183045 Bronchiolar Adenoma/Ciliated Muconodular Papillary Tumor 6 83065 -NCIT:C3494 Lung Papillary Adenoma 6 83066 -NCIT:C4140 Alveolar Adenoma 6 83067 -NCIT:C45603 Lung Pleomorphic Adenoma 6 83068 -NCIT:C45604 Lung Mucinous Cystadenoma 6 83069 -NCIT:C5656 Sclerosing Pneumocytoma 6 83070 -NCIT:C5664 Lung Mucous Gland Adenoma 6 83071 -NCIT:C45629 Lung Chondroma 5 83072 -NCIT:C4888 Benign Lung Hilum Neoplasm 5 83073 -NCIT:C5063 Endobronchial Lipoma 5 83074 -NCIT:C5657 Lung Myolipoma 5 83075 -NCIT:C5658 Lung Fibroma 5 83076 -NCIT:C5660 Lung Leiomyoma 5 83077 -NCIT:C5661 Endobronchial Leiomyoma 6 83078 -NCIT:C8295 Bronchial Papilloma 5 83079 -NCIT:C45573 Lung Squamous Papilloma 6 83080 -NCIT:C45601 Bronchial Glandular Papilloma 6 83081 -NCIT:C45602 Bronchial Mixed Squamous Cell and Glandular Papilloma 6 83082 -NCIT:C3372 Skin Neoplasm 2 83083 -NCIT:C169100 Skin Soft Tissue Neoplasm 3 83084 -NCIT:C156283 Scrotal Sarcoma 4 83085 -NCIT:C156282 Scrotal Liposarcoma 5 83086 -NCIT:C172637 Primitive Non-Neural Granular Cell Tumor 4 83087 -NCIT:C43313 Pilar-Associated Mesenchyme Neoplasm 4 83088 -NCIT:C43323 Benign Pilar-Associated Mesenchyme Neoplasm 5 83089 -NCIT:C27526 Follicular Myxoma 6 83090 -NCIT:C43331 Fibrofolliculoma 6 83091 -NCIT:C43332 Pilar Leiomyoma 6 83092 -NCIT:C43333 Spindle-Cell Predominant Trichodiscoma 6 83093 -NCIT:C4470 Perifollicular Fibroma 6 83094 -NCIT:C4370 Skin Lymphangioleiomyomatosis 4 83095 -NCIT:C4480 Skin Smooth Muscle Neoplasm 4 83096 -NCIT:C4482 Skin Leiomyoma 5 83097 -NCIT:C43332 Pilar Leiomyoma 6 83098 -NCIT:C4483 Dartoic Leiomyoma 6 83099 -NCIT:C4484 Atypical Intradermal Smooth Muscle Neoplasm 5 83100 -NCIT:C4491 Skin Glomus Tumor 4 83101 -NCIT:C36079 Subungual Glomus Tumor 5 83102 -NCIT:C6750 Skin Glomangioma 5 83103 -NCIT:C5345 Telangiectatic Glomangioma 6 83104 -NCIT:C4634 Skin Fibroblastic Neoplasm 4 83105 -NCIT:C172632 Skin Myxofibrosarcoma 5 83106 -NCIT:C4683 Dermatofibrosarcoma Protuberans 5 83107 -NCIT:C177325 Plaque-Like Dermatofibrosarcoma Protuberans 6 83108 -NCIT:C38105 Dermatofibrosarcoma Protuberans with Myoid Differentiation 6 83109 -NCIT:C38106 Myxoid Dermatofibrosarcoma Protuberans 6 83110 -NCIT:C38107 Dedifferentiated Dermatofibrosarcoma Protuberans 6 83111 -NCIT:C27547 Fibrosarcomatous Dermatofibrosarcoma Protuberans 7 83112 -NCIT:C38108 Dermatofibrosarcoma Protuberans with Giant Cell Fibroblastoma-Like Differentiation 6 83113 -NCIT:C9430 Pigmented Dermatofibrosarcoma Protuberans 6 83114 -NCIT:C4700 Giant Cell Fibroblastoma 5 83115 -NCIT:C49025 Myxoinflammatory Fibroblastic Sarcoma 5 83116 -NCIT:C6806 Benign Skin Fibroblastic Neoplasm 5 83117 -NCIT:C170888 Dermatomyofibroma 6 83118 -NCIT:C3942 Fibrous Hamartoma of Infancy 6 83119 -NCIT:C48961 Subcutaneous Nodular Fasciitis 6 83120 -NCIT:C6484 Dermal Fibroma 6 83121 -NCIT:C170889 Plaque-Like CD34-Positive Dermal Fibroma 7 83122 -NCIT:C4470 Perifollicular Fibroma 7 83123 -NCIT:C6486 Nuchal-Type Fibroma 7 83124 -NCIT:C5354 Skin Vascular Neoplasm 4 83125 -NCIT:C27127 Benign Skin Vascular Neoplasm 5 83126 -NCIT:C27509 Skin Lymphangioma 6 83127 -NCIT:C162592 Penile Lymphangioma 7 83128 -NCIT:C4905 Skin Hemangioma 6 83129 -NCIT:C162579 Penile Hemangioma 7 83130 -NCIT:C162580 Penile Epithelioid Hemangioma 8 83131 -NCIT:C34967 Lobular Capillary Hemangioma of Skin and Subcutaneous Tissue 7 83132 -NCIT:C3926 Angioma Serpiginosum 7 83133 -NCIT:C4299 Verrucous Hemangioma 7 83134 -NCIT:C4390 Cherry Hemangioma 7 83135 -NCIT:C4372 Cherry Hemangioma of Lip 8 83136 -NCIT:C4487 Tufted Angioma 7 83137 -NCIT:C4750 Skin Cavernous Hemangioma 7 83138 -NCIT:C6387 Scrotal Hemangioma 7 83139 -NCIT:C7393 Skin Epithelioid Hemangioma 7 83140 -NCIT:C162580 Penile Epithelioid Hemangioma 8 83141 -NCIT:C27529 Malignant Skin Vascular Neoplasm 5 83142 -NCIT:C3550 Skin Kaposi Sarcoma 6 83143 -NCIT:C9112 Classic Kaposi Sarcoma 7 83144 -NCIT:C4489 Skin Angiosarcoma 6 83145 -NCIT:C153626 Recurrent Skin Angiosarcoma 7 83146 -NCIT:C27719 Skin Radiation-Related Angiosarcoma 7 83147 -NCIT:C40379 Angiosarcoma of the Skin of the Arm after Radical Mastectomy followed by Lymphedema 7 83148 -NCIT:C4490 Skin Lymphangiosarcoma 6 83149 -NCIT:C4494 Skin Hemangioendothelioma 5 83150 -NCIT:C5566 Skin Lipomatous Neoplasm 4 83151 -NCIT:C170472 Skin Atypical Lipomatous Tumor/Well Differentiated Liposarcoma 5 83152 -NCIT:C4616 Skin Lipoma 5 83153 -NCIT:C170474 Skin Spindle Cell/Pleomorphic Lipoma 6 83154 -NCIT:C170475 Skin Spindle Cell Lipoma 7 83155 -NCIT:C170476 Skin Pleomorphic Lipoma 7 83156 -NCIT:C170478 Skin Angiolipoma 6 83157 -NCIT:C5615 Skin Liposarcoma 5 83158 -NCIT:C170473 Skin Pleomorphic Liposarcoma 6 83159 -NCIT:C5585 Skin Sarcoma 4 83160 -NCIT:C172632 Skin Myxofibrosarcoma 5 83161 -NCIT:C172634 Skin Ewing Sarcoma 5 83162 -NCIT:C3550 Skin Kaposi Sarcoma 5 83163 -NCIT:C9112 Classic Kaposi Sarcoma 6 83164 -NCIT:C4489 Skin Angiosarcoma 5 83165 -NCIT:C153626 Recurrent Skin Angiosarcoma 6 83166 -NCIT:C27719 Skin Radiation-Related Angiosarcoma 6 83167 -NCIT:C40379 Angiosarcoma of the Skin of the Arm after Radical Mastectomy followed by Lymphedema 6 83168 -NCIT:C4490 Skin Lymphangiosarcoma 5 83169 -NCIT:C49025 Myxoinflammatory Fibroblastic Sarcoma 5 83170 -NCIT:C5576 Skin Undifferentiated Pleomorphic Sarcoma 5 83171 -NCIT:C5615 Skin Liposarcoma 5 83172 -NCIT:C170473 Skin Pleomorphic Liposarcoma 6 83173 -NCIT:C6578 Skin Myxoma 4 83174 -NCIT:C27526 Follicular Myxoma 5 83175 -NCIT:C7749 Skin Fibrohistiocytic Neoplasm 4 83176 -NCIT:C7343 Benign Skin Fibrohistiocytic Neoplasm 5 83177 -NCIT:C6801 Skin Fibrous Histiocytoma 6 83178 -NCIT:C49076 Skin Fibrous Histiocytoma, Fibroblastic Variant 7 83179 -NCIT:C49077 Skin Fibrous Histiocytoma, Histiocytic Variant 7 83180 -NCIT:C49078 Skin Fibrous Histiocytoma, Cellular Variant 7 83181 -NCIT:C49079 Skin Fibrous Histiocytoma, Epithelioid Variant 7 83182 -NCIT:C7344 Skin Intermediate Fibrohistiocytic Neoplasm 5 83183 -NCIT:C6493 Plexiform Fibrohistiocytic Tumor 6 83184 -NCIT:C188975 Childhood Plexiform Fibrohistiocytic Tumor 7 83185 -NCIT:C6721 Chest Wall Plexiform Fibrohistiocytic Tumor 7 83186 -NCIT:C190123 Childhood Skin Neoplasm 3 83187 -NCIT:C188975 Childhood Plexiform Fibrohistiocytic Tumor 4 83188 -NCIT:C190125 Childhood Malignant Skin Neoplasm 4 83189 -NCIT:C190280 Childhood Cutaneous Melanoma 5 83190 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 5 83191 -NCIT:C190618 Childhood Benign Skin Neoplasm 4 83192 -NCIT:C190279 Childhood Pilomatricoma 5 83193 -NCIT:C190284 Childhood Benign Skin Melanocytic Nevus 5 83194 -NCIT:C190281 Childhood Pigmented Spindle Cell Nevus 6 83195 -NCIT:C190282 Childhood Spitz Nevus 6 83196 -NCIT:C190283 Childhood Blue Nevus 6 83197 -NCIT:C190285 Childhood Junctional Nevus 6 83198 -NCIT:C190286 Childhood Compound Nevus 6 83199 -NCIT:C190287 Childhood Dermal Nevus 6 83200 -NCIT:C3944 Congenital Melanocytic Nevus 6 83201 -NCIT:C40330 Vulvar Congenital Melanocytic Nevus 7 83202 -NCIT:C4234 Giant Congenital Nevus 7 83203 -NCIT:C66754 Small Congenital Melanocytic Nevus 7 83204 -NCIT:C66755 Proliferative Nodules in Congenital Melanocytic Nevus 7 83205 -NCIT:C3942 Fibrous Hamartoma of Infancy 5 83206 -NCIT:C2896 Benign Skin Neoplasm 3 83207 -NCIT:C190618 Childhood Benign Skin Neoplasm 4 83208 -NCIT:C190279 Childhood Pilomatricoma 5 83209 -NCIT:C190284 Childhood Benign Skin Melanocytic Nevus 5 83210 -NCIT:C190281 Childhood Pigmented Spindle Cell Nevus 6 83211 -NCIT:C190282 Childhood Spitz Nevus 6 83212 -NCIT:C190283 Childhood Blue Nevus 6 83213 -NCIT:C190285 Childhood Junctional Nevus 6 83214 -NCIT:C190286 Childhood Compound Nevus 6 83215 -NCIT:C190287 Childhood Dermal Nevus 6 83216 -NCIT:C3944 Congenital Melanocytic Nevus 6 83217 -NCIT:C40330 Vulvar Congenital Melanocytic Nevus 7 83218 -NCIT:C4234 Giant Congenital Nevus 7 83219 -NCIT:C66754 Small Congenital Melanocytic Nevus 7 83220 -NCIT:C66755 Proliferative Nodules in Congenital Melanocytic Nevus 7 83221 -NCIT:C3942 Fibrous Hamartoma of Infancy 5 83222 -NCIT:C27514 Adult Xanthogranuloma 4 83223 -NCIT:C3451 Juvenile Xanthogranuloma 4 83224 -NCIT:C3615 Benign Scrotal Neoplasm 4 83225 -NCIT:C6387 Scrotal Hemangioma 5 83226 -NCIT:C4481 Cutaneous Ganglioneuroma 4 83227 -NCIT:C4615 Benign Skin Appendage Neoplasm 4 83228 -NCIT:C167370 Skin Myoepithelioma 5 83229 -NCIT:C27520 Benign Hair Follicle Neoplasm 5 83230 -NCIT:C43315 Benign Outer Hair Sheath and Infundibulum Neoplasm 6 83231 -NCIT:C4113 Trichilemmoma 7 83232 -NCIT:C27521 Classic Type Trichilemmoma 8 83233 -NCIT:C27522 Desmoplastic Trichilemmoma 8 83234 -NCIT:C43325 Trichoadenoma 7 83235 -NCIT:C4468 Pilar Sheath Acanthoma 7 83236 -NCIT:C4469 Tumor of the Follicular Infundibulum 7 83237 -NCIT:C43319 Benign Germinative Follicular Epithelium Neoplasm 6 83238 -NCIT:C168592 Melanocytic Matricoma 7 83239 -NCIT:C27132 Trichoblastoma 7 83240 -NCIT:C27524 Desmoplastic Trichoepithelioma 8 83241 -NCIT:C40314 Vulvar Trichoepithelioma 8 83242 -NCIT:C4112 Trichofolliculoma 7 83243 -NCIT:C7368 Pilomatricoma 7 83244 -NCIT:C190279 Childhood Pilomatricoma 8 83245 -NCIT:C43322 Benign Mixed Epithelial and Mesenchymal Hair Follicle Neoplasm 6 83246 -NCIT:C43323 Benign Pilar-Associated Mesenchyme Neoplasm 6 83247 -NCIT:C27526 Follicular Myxoma 7 83248 -NCIT:C43331 Fibrofolliculoma 7 83249 -NCIT:C43332 Pilar Leiomyoma 7 83250 -NCIT:C43333 Spindle-Cell Predominant Trichodiscoma 7 83251 -NCIT:C4470 Perifollicular Fibroma 7 83252 -NCIT:C4879 Benign Sweat Gland Neoplasm 5 83253 -NCIT:C167342 Spiradenocylindroma 6 83254 -NCIT:C27094 Cylindroma 6 83255 -NCIT:C43351 Sporadic Cylindroma 7 83256 -NCIT:C43352 Turban Tumor 7 83257 -NCIT:C27273 Poroma 6 83258 -NCIT:C43353 Classical Poroma 7 83259 -NCIT:C4473 Dermal Duct Tumor 7 83260 -NCIT:C3760 Hidrocystoma 6 83261 -NCIT:C43342 Apocrine Hidrocystoma 7 83262 -NCIT:C7565 Eccrine Hidrocystoma 7 83263 -NCIT:C4170 Spiradenoma 6 83264 -NCIT:C5193 Breast Spiradenoma 7 83265 -NCIT:C4171 Hidradenoma Papilliferum 6 83266 -NCIT:C128240 Vulvar Hidradenoma Papilliferum 7 83267 -NCIT:C96699 Anal Hidradenoma Papilliferum 7 83268 -NCIT:C4474 Chondroid Syringoma 6 83269 -NCIT:C6797 Benign Eccrine Neoplasm 6 83270 -NCIT:C162848 Digital Papillary Adenoma 7 83271 -NCIT:C3761 Syringoma 7 83272 -NCIT:C40311 Vulvar Syringoma 8 83273 -NCIT:C43356 Syringofibroadenoma 7 83274 -NCIT:C7565 Eccrine Hidrocystoma 7 83275 -NCIT:C6799 Benign Apocrine Neoplasm 6 83276 -NCIT:C4168 Apocrine Adenoma 7 83277 -NCIT:C27527 Tubular Apocrine Adenoma 8 83278 -NCIT:C43342 Apocrine Hidrocystoma 8 83279 -NCIT:C6088 Ceruminous Adenoma 8 83280 -NCIT:C7560 Sweat Gland Adenoma 6 83281 -NCIT:C4168 Apocrine Adenoma 7 83282 -NCIT:C27527 Tubular Apocrine Adenoma 8 83283 -NCIT:C43342 Apocrine Hidrocystoma 8 83284 -NCIT:C6088 Ceruminous Adenoma 8 83285 -NCIT:C4172 Syringocystadenoma Papilliferum 7 83286 -NCIT:C43356 Syringofibroadenoma 7 83287 -NCIT:C7563 Hidradenoma 7 83288 -NCIT:C7567 Clear Cell Hidradenoma 8 83289 -NCIT:C7568 Nodular Hidradenoma 8 83290 -NCIT:C40312 Vulvar Nodular Hidradenoma 9 83291 -NCIT:C7580 Skin Appendage Adenoma 5 83292 -NCIT:C4174 Sebaceous Adenoma 6 83293 -NCIT:C7560 Sweat Gland Adenoma 6 83294 -NCIT:C4168 Apocrine Adenoma 7 83295 -NCIT:C27527 Tubular Apocrine Adenoma 8 83296 -NCIT:C43342 Apocrine Hidrocystoma 8 83297 -NCIT:C6088 Ceruminous Adenoma 8 83298 -NCIT:C4172 Syringocystadenoma Papilliferum 7 83299 -NCIT:C43356 Syringofibroadenoma 7 83300 -NCIT:C7563 Hidradenoma 7 83301 -NCIT:C7567 Clear Cell Hidradenoma 8 83302 -NCIT:C7568 Nodular Hidradenoma 8 83303 -NCIT:C40312 Vulvar Nodular Hidradenoma 9 83304 -NCIT:C8525 Benign Sebaceous Neoplasm 5 83305 -NCIT:C4174 Sebaceous Adenoma 6 83306 -NCIT:C43334 Superficial Epithelioma with Sebaceous Differentiation 6 83307 -NCIT:C43336 Sebaceoma 6 83308 -NCIT:C4632 Dermoid Cyst of the Skin 4 83309 -NCIT:C7158 Benign Dermal Neoplasm 4 83310 -NCIT:C121680 Dermal Nerve Sheath Myxoma 5 83311 -NCIT:C128451 Cutaneous Neurofibroma 5 83312 -NCIT:C27127 Benign Skin Vascular Neoplasm 5 83313 -NCIT:C27509 Skin Lymphangioma 6 83314 -NCIT:C162592 Penile Lymphangioma 7 83315 -NCIT:C4905 Skin Hemangioma 6 83316 -NCIT:C162579 Penile Hemangioma 7 83317 -NCIT:C162580 Penile Epithelioid Hemangioma 8 83318 -NCIT:C34967 Lobular Capillary Hemangioma of Skin and Subcutaneous Tissue 7 83319 -NCIT:C3926 Angioma Serpiginosum 7 83320 -NCIT:C4299 Verrucous Hemangioma 7 83321 -NCIT:C4390 Cherry Hemangioma 7 83322 -NCIT:C4372 Cherry Hemangioma of Lip 8 83323 -NCIT:C4487 Tufted Angioma 7 83324 -NCIT:C4750 Skin Cavernous Hemangioma 7 83325 -NCIT:C6387 Scrotal Hemangioma 7 83326 -NCIT:C7393 Skin Epithelioid Hemangioma 7 83327 -NCIT:C162580 Penile Epithelioid Hemangioma 8 83328 -NCIT:C37258 Paraganglioma-Like Dermal Melanocytic Tumor 5 83329 -NCIT:C4482 Skin Leiomyoma 5 83330 -NCIT:C43332 Pilar Leiomyoma 6 83331 -NCIT:C4483 Dartoic Leiomyoma 6 83332 -NCIT:C4616 Skin Lipoma 5 83333 -NCIT:C170474 Skin Spindle Cell/Pleomorphic Lipoma 6 83334 -NCIT:C170475 Skin Spindle Cell Lipoma 7 83335 -NCIT:C170476 Skin Pleomorphic Lipoma 7 83336 -NCIT:C170478 Skin Angiolipoma 6 83337 -NCIT:C5569 Cutaneous Schwannoma 5 83338 -NCIT:C6578 Skin Myxoma 5 83339 -NCIT:C27526 Follicular Myxoma 6 83340 -NCIT:C6806 Benign Skin Fibroblastic Neoplasm 5 83341 -NCIT:C170888 Dermatomyofibroma 6 83342 -NCIT:C3942 Fibrous Hamartoma of Infancy 6 83343 -NCIT:C48961 Subcutaneous Nodular Fasciitis 6 83344 -NCIT:C6484 Dermal Fibroma 6 83345 -NCIT:C170889 Plaque-Like CD34-Positive Dermal Fibroma 7 83346 -NCIT:C4470 Perifollicular Fibroma 7 83347 -NCIT:C6486 Nuchal-Type Fibroma 7 83348 -NCIT:C7343 Benign Skin Fibrohistiocytic Neoplasm 5 83349 -NCIT:C6801 Skin Fibrous Histiocytoma 6 83350 -NCIT:C49076 Skin Fibrous Histiocytoma, Fibroblastic Variant 7 83351 -NCIT:C49077 Skin Fibrous Histiocytoma, Histiocytic Variant 7 83352 -NCIT:C49078 Skin Fibrous Histiocytoma, Cellular Variant 7 83353 -NCIT:C49079 Skin Fibrous Histiocytoma, Epithelioid Variant 7 83354 -NCIT:C7341 Benign Epithelial Skin Neoplasm 4 83355 -NCIT:C167370 Skin Myoepithelioma 5 83356 -NCIT:C26913 Verruca Plantaris 5 83357 -NCIT:C27087 Verruca Vulgaris 5 83358 -NCIT:C173475 Oral Verruca Vulgaris 6 83359 -NCIT:C43315 Benign Outer Hair Sheath and Infundibulum Neoplasm 5 83360 -NCIT:C4113 Trichilemmoma 6 83361 -NCIT:C27521 Classic Type Trichilemmoma 7 83362 -NCIT:C27522 Desmoplastic Trichilemmoma 7 83363 -NCIT:C43325 Trichoadenoma 6 83364 -NCIT:C4468 Pilar Sheath Acanthoma 6 83365 -NCIT:C4469 Tumor of the Follicular Infundibulum 6 83366 -NCIT:C43319 Benign Germinative Follicular Epithelium Neoplasm 5 83367 -NCIT:C168592 Melanocytic Matricoma 6 83368 -NCIT:C27132 Trichoblastoma 6 83369 -NCIT:C27524 Desmoplastic Trichoepithelioma 7 83370 -NCIT:C40314 Vulvar Trichoepithelioma 7 83371 -NCIT:C4112 Trichofolliculoma 6 83372 -NCIT:C7368 Pilomatricoma 6 83373 -NCIT:C190279 Childhood Pilomatricoma 7 83374 -NCIT:C4614 Skin Papilloma 5 83375 -NCIT:C4879 Benign Sweat Gland Neoplasm 5 83376 -NCIT:C167342 Spiradenocylindroma 6 83377 -NCIT:C27094 Cylindroma 6 83378 -NCIT:C43351 Sporadic Cylindroma 7 83379 -NCIT:C43352 Turban Tumor 7 83380 -NCIT:C27273 Poroma 6 83381 -NCIT:C43353 Classical Poroma 7 83382 -NCIT:C4473 Dermal Duct Tumor 7 83383 -NCIT:C3760 Hidrocystoma 6 83384 -NCIT:C43342 Apocrine Hidrocystoma 7 83385 -NCIT:C7565 Eccrine Hidrocystoma 7 83386 -NCIT:C4170 Spiradenoma 6 83387 -NCIT:C5193 Breast Spiradenoma 7 83388 -NCIT:C4171 Hidradenoma Papilliferum 6 83389 -NCIT:C128240 Vulvar Hidradenoma Papilliferum 7 83390 -NCIT:C96699 Anal Hidradenoma Papilliferum 7 83391 -NCIT:C4474 Chondroid Syringoma 6 83392 -NCIT:C6797 Benign Eccrine Neoplasm 6 83393 -NCIT:C162848 Digital Papillary Adenoma 7 83394 -NCIT:C3761 Syringoma 7 83395 -NCIT:C40311 Vulvar Syringoma 8 83396 -NCIT:C43356 Syringofibroadenoma 7 83397 -NCIT:C7565 Eccrine Hidrocystoma 7 83398 -NCIT:C6799 Benign Apocrine Neoplasm 6 83399 -NCIT:C4168 Apocrine Adenoma 7 83400 -NCIT:C27527 Tubular Apocrine Adenoma 8 83401 -NCIT:C43342 Apocrine Hidrocystoma 8 83402 -NCIT:C6088 Ceruminous Adenoma 8 83403 -NCIT:C7560 Sweat Gland Adenoma 6 83404 -NCIT:C4168 Apocrine Adenoma 7 83405 -NCIT:C27527 Tubular Apocrine Adenoma 8 83406 -NCIT:C43342 Apocrine Hidrocystoma 8 83407 -NCIT:C6088 Ceruminous Adenoma 8 83408 -NCIT:C4172 Syringocystadenoma Papilliferum 7 83409 -NCIT:C43356 Syringofibroadenoma 7 83410 -NCIT:C7563 Hidradenoma 7 83411 -NCIT:C7567 Clear Cell Hidradenoma 8 83412 -NCIT:C7568 Nodular Hidradenoma 8 83413 -NCIT:C40312 Vulvar Nodular Hidradenoma 9 83414 -NCIT:C7419 Acanthoma 5 83415 -NCIT:C165485 Lichen Planus-Like Keratosis 6 83416 -NCIT:C27516 Epidermolytic Acanthoma 6 83417 -NCIT:C27517 Acantholytic Acanthoma 6 83418 -NCIT:C27518 Large Cell Acanthoma 6 83419 -NCIT:C4087 Warty Dyskeratoma 6 83420 -NCIT:C4468 Pilar Sheath Acanthoma 6 83421 -NCIT:C4469 Tumor of the Follicular Infundibulum 6 83422 -NCIT:C9006 Seborrheic Keratosis 6 83423 -NCIT:C27548 Melanoacanthoma 7 83424 -NCIT:C4356 Eyelid Seborrheic Keratosis 7 83425 -NCIT:C6375 Vulvar Seborrheic Keratosis 7 83426 -NCIT:C40291 Vulvar Inverted Follicular Keratosis 8 83427 -NCIT:C9007 Inverted Follicular Keratosis 7 83428 -NCIT:C40291 Vulvar Inverted Follicular Keratosis 8 83429 -NCIT:C97041 Clear Cell Acanthoma 6 83430 -NCIT:C7580 Skin Appendage Adenoma 5 83431 -NCIT:C4174 Sebaceous Adenoma 6 83432 -NCIT:C7560 Sweat Gland Adenoma 6 83433 -NCIT:C4168 Apocrine Adenoma 7 83434 -NCIT:C27527 Tubular Apocrine Adenoma 8 83435 -NCIT:C43342 Apocrine Hidrocystoma 8 83436 -NCIT:C6088 Ceruminous Adenoma 8 83437 -NCIT:C4172 Syringocystadenoma Papilliferum 7 83438 -NCIT:C43356 Syringofibroadenoma 7 83439 -NCIT:C7563 Hidradenoma 7 83440 -NCIT:C7567 Clear Cell Hidradenoma 8 83441 -NCIT:C7568 Nodular Hidradenoma 8 83442 -NCIT:C40312 Vulvar Nodular Hidradenoma 9 83443 -NCIT:C8525 Benign Sebaceous Neoplasm 5 83444 -NCIT:C4174 Sebaceous Adenoma 6 83445 -NCIT:C43334 Superficial Epithelioma with Sebaceous Differentiation 6 83446 -NCIT:C43336 Sebaceoma 6 83447 -NCIT:C7571 Benign Skin Melanocytic Nevus 4 83448 -NCIT:C165529 Combined Nevus 5 83449 -NCIT:C165523 Combined BAP1-Inactivated Nevus 6 83450 -NCIT:C190284 Childhood Benign Skin Melanocytic Nevus 5 83451 -NCIT:C190281 Childhood Pigmented Spindle Cell Nevus 6 83452 -NCIT:C190282 Childhood Spitz Nevus 6 83453 -NCIT:C190283 Childhood Blue Nevus 6 83454 -NCIT:C190285 Childhood Junctional Nevus 6 83455 -NCIT:C190286 Childhood Compound Nevus 6 83456 -NCIT:C190287 Childhood Dermal Nevus 6 83457 -NCIT:C3944 Congenital Melanocytic Nevus 6 83458 -NCIT:C40330 Vulvar Congenital Melanocytic Nevus 7 83459 -NCIT:C4234 Giant Congenital Nevus 7 83460 -NCIT:C66754 Small Congenital Melanocytic Nevus 7 83461 -NCIT:C66755 Proliferative Nodules in Congenital Melanocytic Nevus 7 83462 -NCIT:C27007 Spitz Nevus 5 83463 -NCIT:C190282 Childhood Spitz Nevus 6 83464 -NCIT:C66757 Epithelioid Cell Nevus 6 83465 -NCIT:C66758 Spindle Cell Nevus 6 83466 -NCIT:C82864 Desmoplastic Spitz Nevus 6 83467 -NCIT:C27095 Nonpigmented Nevus 5 83468 -NCIT:C27816 Pigmented Nevus 5 83469 -NCIT:C3803 Blue Nevus 6 83470 -NCIT:C190283 Childhood Blue Nevus 7 83471 -NCIT:C40240 Cervical Blue Nevus 7 83472 -NCIT:C40282 Vaginal Blue Nevus 7 83473 -NCIT:C40332 Vulvar Blue Nevus 7 83474 -NCIT:C4241 Cellular Blue Nevus 7 83475 -NCIT:C4496 Common Blue Nevus 7 83476 -NCIT:C4234 Giant Congenital Nevus 6 83477 -NCIT:C4751 Pigmented Spindle Cell Nevus 6 83478 -NCIT:C190281 Childhood Pigmented Spindle Cell Nevus 7 83479 -NCIT:C3804 Dermal Nevus 5 83480 -NCIT:C190287 Childhood Dermal Nevus 6 83481 -NCIT:C4229 Neuronevus 6 83482 -NCIT:C3880 Eyelid Nevus 5 83483 -NCIT:C3944 Congenital Melanocytic Nevus 5 83484 -NCIT:C40330 Vulvar Congenital Melanocytic Nevus 6 83485 -NCIT:C4234 Giant Congenital Nevus 6 83486 -NCIT:C66754 Small Congenital Melanocytic Nevus 6 83487 -NCIT:C66755 Proliferative Nodules in Congenital Melanocytic Nevus 6 83488 -NCIT:C4226 Balloon Cell Nevus 5 83489 -NCIT:C4495 Cockade Nevus 5 83490 -NCIT:C4497 Desmoplastic Nevus 5 83491 -NCIT:C82864 Desmoplastic Spitz Nevus 6 83492 -NCIT:C4498 Nevus Spilus 5 83493 -NCIT:C54658 Breast Nevus 5 83494 -NCIT:C54659 Acral Nevus 5 83495 -NCIT:C165662 Nail Matrix Nevus 6 83496 -NCIT:C54660 Flexural Skin Nevus 5 83497 -NCIT:C54661 Head and Neck Nevus 5 83498 -NCIT:C7576 Deep Penetrating Nevus 5 83499 -NCIT:C7577 Recurrent Nevus 5 83500 -NCIT:C7602 Halo Nevus 5 83501 -NCIT:C7603 Regressing Nevus 5 83502 -NCIT:C82862 Meyerson Nevus 5 83503 -NCIT:C2920 Malignant Skin Neoplasm 3 83504 -NCIT:C150545 Recurrent Malignant Skin Neoplasm 4 83505 -NCIT:C142876 Recurrent Primary Cutaneous Lymphoma 5 83506 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 6 83507 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 6 83508 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 7 83509 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 7 83510 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 7 83511 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 7 83512 -NCIT:C8686 Recurrent Mycosis Fungoides 7 83513 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 8 83514 -NCIT:C153626 Recurrent Skin Angiosarcoma 5 83515 -NCIT:C156103 Recurrent Blastic Plasmacytoid Dendritic Cell Neoplasm 5 83516 -NCIT:C179464 Recurrent Malignant Scrotal Neoplasm 5 83517 -NCIT:C7903 Recurrent Skin Carcinoma 5 83518 -NCIT:C115440 Recurrent Merkel Cell Carcinoma 6 83519 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 7 83520 -NCIT:C165740 Locally Recurrent Merkel Cell Carcinoma 7 83521 -NCIT:C143012 Recurrent Skin Squamous Cell Carcinoma 6 83522 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 83523 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 7 83524 -NCIT:C165737 Locally Recurrent Skin Squamous Cell Carcinoma 7 83525 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 6 83526 -NCIT:C9097 Recurrent Cutaneous Melanoma 5 83527 -NCIT:C155306 Recurrent Cutaneous Melanoma of the Extremity 6 83528 -NCIT:C175435 Recurrent Acral Lentiginous Melanoma 7 83529 -NCIT:C8785 Recurrent Lentigo Maligna Melanoma 6 83530 -NCIT:C150546 Refractory Malignant Skin Neoplasm 4 83531 -NCIT:C142877 Refractory Primary Cutaneous Lymphoma 5 83532 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 6 83533 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 6 83534 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 7 83535 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 7 83536 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 7 83537 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 7 83538 -NCIT:C8687 Refractory Mycosis Fungoides 7 83539 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 8 83540 -NCIT:C150544 Refractory Cutaneous Melanoma 5 83541 -NCIT:C156104 Refractory Blastic Plasmacytoid Dendritic Cell Neoplasm 5 83542 -NCIT:C165735 Refractory Skin Squamous Cell Carcinoma 5 83543 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 6 83544 -NCIT:C165741 Refractory Merkel Cell Carcinoma 5 83545 -NCIT:C170811 Metastatic Malignant Skin Neoplasm 4 83546 -NCIT:C143013 Metastatic Skin Squamous Cell Carcinoma 5 83547 -NCIT:C153182 Locally Advanced Skin Squamous Cell Carcinoma 6 83548 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 83549 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 6 83550 -NCIT:C168542 Advanced Skin Squamous Cell Carcinoma 6 83551 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 83552 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 6 83553 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 83554 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 83555 -NCIT:C156072 Metastatic Cutaneous Melanoma 5 83556 -NCIT:C171285 Locally Advanced Cutaneous Melanoma 6 83557 -NCIT:C171572 Advanced Cutaneous Melanoma 6 83558 -NCIT:C155311 Advanced Cutaneous Melanoma of the Extremity 7 83559 -NCIT:C179427 Metastatic Acral Lentiginous Melanoma 6 83560 -NCIT:C162572 Metastatic Merkel Cell Carcinoma 5 83561 -NCIT:C165300 Advanced Merkel Cell Carcinoma 6 83562 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 6 83563 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 6 83564 -NCIT:C170812 Advanced Malignant Skin Neoplasm 5 83565 -NCIT:C165300 Advanced Merkel Cell Carcinoma 6 83566 -NCIT:C168542 Advanced Skin Squamous Cell Carcinoma 6 83567 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 83568 -NCIT:C171572 Advanced Cutaneous Melanoma 6 83569 -NCIT:C155311 Advanced Cutaneous Melanoma of the Extremity 7 83570 -NCIT:C172442 Advanced Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 6 83571 -NCIT:C171284 Locally Advanced Malignant Skin Neoplasm 5 83572 -NCIT:C153182 Locally Advanced Skin Squamous Cell Carcinoma 6 83573 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 83574 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 6 83575 -NCIT:C171285 Locally Advanced Cutaneous Melanoma 6 83576 -NCIT:C180374 Early Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 6 83577 -NCIT:C171101 Cutaneous Lymphoma 4 83578 -NCIT:C168651 Cutaneous Burkitt Lymphoma 5 83579 -NCIT:C45266 Cutaneous Mantle Cell Lymphoma 5 83580 -NCIT:C45268 Cutaneous Nasal Type Extranodal NK/T-Cell Lymphoma 5 83581 -NCIT:C45271 Cutaneous Angioimmunoblastic T-Cell Lymphoma 5 83582 -NCIT:C45272 Cutaneous Adult T-Cell Leukemia/Lymphoma 5 83583 -NCIT:C7162 Primary Cutaneous Lymphoma 5 83584 -NCIT:C142876 Recurrent Primary Cutaneous Lymphoma 6 83585 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 7 83586 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 7 83587 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 8 83588 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 8 83589 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 8 83590 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 8 83591 -NCIT:C8686 Recurrent Mycosis Fungoides 8 83592 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 9 83593 -NCIT:C142877 Refractory Primary Cutaneous Lymphoma 6 83594 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 7 83595 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 7 83596 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 8 83597 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 8 83598 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 8 83599 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 8 83600 -NCIT:C8687 Refractory Mycosis Fungoides 8 83601 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 9 83602 -NCIT:C188114 Primary Cutaneous Non-Hodgkin Lymphoma 6 83603 -NCIT:C3467 Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 7 83604 -NCIT:C172442 Advanced Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 83605 -NCIT:C180374 Early Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 83606 -NCIT:C3246 Mycosis Fungoides 8 83607 -NCIT:C141143 Mycosis Fungoides by AJCC v7 Stage 9 83608 -NCIT:C7796 Stage I Mycosis Fungoides AJCC v7 10 83609 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 11 83610 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 11 83611 -NCIT:C7798 Stage II Mycosis Fungoides AJCC v7 10 83612 -NCIT:C7800 Stage III Mycosis Fungoides AJCC v7 10 83613 -NCIT:C7802 Stage IV Mycosis Fungoides AJCC v7 10 83614 -NCIT:C165783 Transformed Mycosis Fungoides 9 83615 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 83616 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 83617 -NCIT:C8686 Recurrent Mycosis Fungoides 9 83618 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 83619 -NCIT:C8687 Refractory Mycosis Fungoides 9 83620 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 83621 -NCIT:C39644 Mycosis Fungoides Variant 8 83622 -NCIT:C35464 Granulomatous Slack Skin Disease 9 83623 -NCIT:C35685 Folliculotropic Mycosis Fungoides 9 83624 -NCIT:C35794 Pagetoid Reticulosis 9 83625 -NCIT:C45332 Primary Cutaneous Peripheral T-Cell Lymphoma, Rare Subtype 8 83626 -NCIT:C139023 Primary Cutaneous Acral CD8-Positive T-Cell Lymphoma 9 83627 -NCIT:C45339 Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 83628 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 83629 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 83630 -NCIT:C45340 Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 83631 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 83632 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 83633 -NCIT:C6860 Primary Cutaneous Anaplastic Large Cell Lymphoma 8 83634 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 83635 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 83636 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 9 83637 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 9 83638 -NCIT:C6918 Subcutaneous Panniculitis-Like T-Cell Lymphoma 8 83639 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 83640 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 83641 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 83642 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 83643 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 83644 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 83645 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 83646 -NCIT:C8686 Recurrent Mycosis Fungoides 9 83647 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 83648 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 83649 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 83650 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 83651 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 83652 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 83653 -NCIT:C8687 Refractory Mycosis Fungoides 9 83654 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 83655 -NCIT:C6858 Primary Cutaneous B-Cell Non-Hodgkin Lymphoma 7 83656 -NCIT:C45193 Primary Cutaneous Diffuse Large B-Cell Lymphoma 8 83657 -NCIT:C45194 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 83658 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 83659 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 83660 -NCIT:C45213 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Other 9 83661 -NCIT:C45214 Primary Cutaneous Intravascular Large B-Cell Lymphoma 10 83662 -NCIT:C45215 Primary Cutaneous T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 10 83663 -NCIT:C45216 Primary Cutaneous Plasmablastic Lymphoma 10 83664 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 8 83665 -NCIT:C7230 Primary Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 83666 -NCIT:C45163 Borrelia Burgdoferi-Associated Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 83667 -NCIT:C7221 Primary Cutaneous Hodgkin Lymphoma 6 83668 -NCIT:C7218 Cutaneous Follicular Lymphoma 5 83669 -NCIT:C6859 Grade 3 Cutaneous Follicular Lymphoma 6 83670 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 6 83671 -NCIT:C7219 Grade 2 Cutaneous Follicular Lymphoma 6 83672 -NCIT:C7220 Grade 1 Cutaneous Follicular Lymphoma 6 83673 -NCIT:C185044 Cutaneous Plasmacytoma 4 83674 -NCIT:C190125 Childhood Malignant Skin Neoplasm 4 83675 -NCIT:C190280 Childhood Cutaneous Melanoma 5 83676 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 5 83677 -NCIT:C3510 Cutaneous Melanoma 4 83678 -NCIT:C137645 Cutaneous Melanoma by AJCC v8 Stage 5 83679 -NCIT:C137646 Cutaneous Melanoma by AJCC v8 Clinical Stage 6 83680 -NCIT:C137647 Clinical Stage 0 Cutaneous Melanoma AJCC v8 7 83681 -NCIT:C137648 Clinical Stage I Cutaneous Melanoma AJCC v8 7 83682 -NCIT:C137649 Clinical Stage IA Cutaneous Melanoma AJCC v8 8 83683 -NCIT:C137650 Clinical Stage IB Cutaneous Melanoma AJCC v8 8 83684 -NCIT:C137651 Clinical Stage II Cutaneous Melanoma AJCC v8 7 83685 -NCIT:C137652 Clinical Stage IIA Cutaneous Melanoma AJCC v8 8 83686 -NCIT:C137653 Clinical Stage IIB Cutaneous Melanoma AJCC v8 8 83687 -NCIT:C137654 Clinical Stage IIC Cutaneous Melanoma AJCC v8 8 83688 -NCIT:C137655 Clinical Stage III Cutaneous Melanoma AJCC v8 7 83689 -NCIT:C137656 Clinical Stage IV Cutaneous Melanoma AJCC v8 7 83690 -NCIT:C137657 Cutaneous Melanoma by AJCC v8 Pathologic Stage 6 83691 -NCIT:C137662 Pathologic Stage 0 Cutaneous Melanoma AJCC v8 7 83692 -NCIT:C137663 Pathologic Stage I Cutaneous Melanoma AJCC v8 7 83693 -NCIT:C137664 Pathologic Stage IA Cutaneous Melanoma AJCC v8 8 83694 -NCIT:C137665 Pathologic Stage IB Cutaneous Melanoma AJCC v8 8 83695 -NCIT:C137666 Pathologic Stage II Cutaneous Melanoma AJCC v8 7 83696 -NCIT:C137667 Pathologic Stage IIA Cutaneous Melanoma AJCC v8 8 83697 -NCIT:C137668 Pathologic Stage IIB Cutaneous Melanoma AJCC v8 8 83698 -NCIT:C137669 Pathologic Stage IIC Cutaneous Melanoma AJCC v8 8 83699 -NCIT:C137670 Pathologic Stage III Cutaneous Melanoma AJCC v8 7 83700 -NCIT:C137671 Pathologic Stage IIIA Cutaneous Melanoma AJCC v8 8 83701 -NCIT:C137672 Pathologic Stage IIIB Cutaneous Melanoma AJCC v8 8 83702 -NCIT:C137673 Pathologic Stage IIIC Cutaneous Melanoma AJCC v8 8 83703 -NCIT:C137675 Pathologic Stage IIID Cutaneous Melanoma AJCC v8 8 83704 -NCIT:C137677 Pathologic Stage IV Cutaneous Melanoma AJCC v8 7 83705 -NCIT:C148245 Unresectable Cutaneous Melanoma 5 83706 -NCIT:C165535 Unresectable Acral Lentiginous Melanoma 6 83707 -NCIT:C150544 Refractory Cutaneous Melanoma 5 83708 -NCIT:C155305 Cutaneous Melanoma of the Extremity 5 83709 -NCIT:C155306 Recurrent Cutaneous Melanoma of the Extremity 6 83710 -NCIT:C175435 Recurrent Acral Lentiginous Melanoma 7 83711 -NCIT:C155311 Advanced Cutaneous Melanoma of the Extremity 6 83712 -NCIT:C4022 Acral Lentiginous Melanoma 6 83713 -NCIT:C165535 Unresectable Acral Lentiginous Melanoma 7 83714 -NCIT:C175435 Recurrent Acral Lentiginous Melanoma 7 83715 -NCIT:C179427 Metastatic Acral Lentiginous Melanoma 7 83716 -NCIT:C8781 Stage I Acral Lentiginous Melanoma AJCC v7 7 83717 -NCIT:C8782 Stage II Acral Lentiginous Melanoma AJCC v6 and v7 7 83718 -NCIT:C8783 Stage III Acral Lentiginous Melanoma AJCC v7 7 83719 -NCIT:C8784 Stage IV Acral Lentiginous Melanoma AJCC v6 and v7 7 83720 -NCIT:C156072 Metastatic Cutaneous Melanoma 5 83721 -NCIT:C171285 Locally Advanced Cutaneous Melanoma 6 83722 -NCIT:C171572 Advanced Cutaneous Melanoma 6 83723 -NCIT:C155311 Advanced Cutaneous Melanoma of the Extremity 7 83724 -NCIT:C179427 Metastatic Acral Lentiginous Melanoma 6 83725 -NCIT:C165497 Spitz Melanoma 5 83726 -NCIT:C165659 High-CSD Melanoma 5 83727 -NCIT:C37257 Desmoplastic Melanoma 6 83728 -NCIT:C48614 Desmoplastic Neurotropic Melanoma 7 83729 -NCIT:C9151 Lentigo Maligna Melanoma 6 83730 -NCIT:C8785 Recurrent Lentigo Maligna Melanoma 7 83731 -NCIT:C8786 Stage I Lentigo Maligna Melanoma AJCC v7 7 83732 -NCIT:C8787 Stage II Lentigo Maligna Melanoma AJCC v6 and v7 7 83733 -NCIT:C8788 Stage III Lentigo Maligna Melanoma AJCC v7 7 83734 -NCIT:C8789 Stage IV Lentigo Maligna Melanoma AJCC v6 and v7 7 83735 -NCIT:C178518 Penile Cutaneous Melanoma 5 83736 -NCIT:C190240 Resectable Cutaneous Melanoma 5 83737 -NCIT:C190280 Childhood Cutaneous Melanoma 5 83738 -NCIT:C27919 Old Burn Scar-Related Cutaneous Melanoma 5 83739 -NCIT:C27920 Solar Radiation-Related Cutaneous Melanoma 5 83740 -NCIT:C4225 Cutaneous Nodular Melanoma 5 83741 -NCIT:C4227 Balloon Cell Melanoma 5 83742 -NCIT:C4232 Melanoma in Junctional Nevus 5 83743 -NCIT:C4240 Melanoma Arising from Blue Nevus 5 83744 -NCIT:C4633 Amelanotic Cutaneous Melanoma 5 83745 -NCIT:C48607 Invasive Cutaneous Melanoma 5 83746 -NCIT:C48612 Minimal Deviation Melanoma 5 83747 -NCIT:C48613 Melanoma in Congenital Melanocytic Nevus 5 83748 -NCIT:C4235 Melanoma Arising in Giant Congenital Nevus 6 83749 -NCIT:C54662 Nevoid Melanoma 5 83750 -NCIT:C54663 Signet Ring Melanoma 5 83751 -NCIT:C66753 Malignant Melanoma in Precancerous Melanosis 5 83752 -NCIT:C7089 Regressing Cutaneous Melanoma 5 83753 -NCIT:C7361 Scrotal Melanoma 5 83754 -NCIT:C8498 Hereditary Melanoma 5 83755 -NCIT:C128801 Cutaneous Malignant Melanoma 2 6 83756 -NCIT:C90514 Cutaneous Melanoma by AJCC v6 Stage 5 83757 -NCIT:C7916 Stage I Cutaneous Melanoma AJCC v6 6 83758 -NCIT:C7917 Stage II Cutaneous Melanoma AJCC v6 and v7 6 83759 -NCIT:C27742 Stage IIB Cutaneous Melanoma AJCC v6 and v7 7 83760 -NCIT:C86033 Stage IIA Cutaneous Melanoma AJCC v6 and v7 7 83761 -NCIT:C86034 Stage IIC Cutaneous Melanoma AJCC v6 and v7 7 83762 -NCIT:C8782 Stage II Acral Lentiginous Melanoma AJCC v6 and v7 7 83763 -NCIT:C8787 Stage II Lentigo Maligna Melanoma AJCC v6 and v7 7 83764 -NCIT:C8791 Stage II Low-CSD Melanoma AJCC v7 7 83765 -NCIT:C7918 Stage III Cutaneous Melanoma AJCC v6 6 83766 -NCIT:C8423 Stage 0 Cutaneous Melanoma AJCC v6 and v7 6 83767 -NCIT:C43372 Lentigo Maligna 7 83768 -NCIT:C9096 Stage IV Cutaneous Melanoma AJCC v6 and v7 6 83769 -NCIT:C8784 Stage IV Acral Lentiginous Melanoma AJCC v6 and v7 7 83770 -NCIT:C8789 Stage IV Lentigo Maligna Melanoma AJCC v6 and v7 7 83771 -NCIT:C8793 Stage IV Low-CSD Melanoma AJCC v7 7 83772 -NCIT:C9097 Recurrent Cutaneous Melanoma 5 83773 -NCIT:C155306 Recurrent Cutaneous Melanoma of the Extremity 6 83774 -NCIT:C175435 Recurrent Acral Lentiginous Melanoma 7 83775 -NCIT:C8785 Recurrent Lentigo Maligna Melanoma 6 83776 -NCIT:C91231 Cutaneous Melanoma by AJCC v7 Stage 5 83777 -NCIT:C7917 Stage II Cutaneous Melanoma AJCC v6 and v7 6 83778 -NCIT:C27742 Stage IIB Cutaneous Melanoma AJCC v6 and v7 7 83779 -NCIT:C86033 Stage IIA Cutaneous Melanoma AJCC v6 and v7 7 83780 -NCIT:C86034 Stage IIC Cutaneous Melanoma AJCC v6 and v7 7 83781 -NCIT:C8782 Stage II Acral Lentiginous Melanoma AJCC v6 and v7 7 83782 -NCIT:C8787 Stage II Lentigo Maligna Melanoma AJCC v6 and v7 7 83783 -NCIT:C8791 Stage II Low-CSD Melanoma AJCC v7 7 83784 -NCIT:C8423 Stage 0 Cutaneous Melanoma AJCC v6 and v7 6 83785 -NCIT:C43372 Lentigo Maligna 7 83786 -NCIT:C88414 Stage I Cutaneous Melanoma AJCC v7 6 83787 -NCIT:C86026 Stage IA Cutaneous Melanoma AJCC v7 7 83788 -NCIT:C86030 Stage IB Cutaneous Melanoma AJCC v7 7 83789 -NCIT:C8781 Stage I Acral Lentiginous Melanoma AJCC v7 7 83790 -NCIT:C8786 Stage I Lentigo Maligna Melanoma AJCC v7 7 83791 -NCIT:C8790 Stage I Low-CSD Melanoma AJCC v7 7 83792 -NCIT:C88415 Stage III Cutaneous Melanoma AJCC v7 6 83793 -NCIT:C86049 Stage IIIA Cutaneous Melanoma AJCC v7 7 83794 -NCIT:C86051 Stage IIIB Cutaneous Melanoma AJCC v7 7 83795 -NCIT:C86053 Stage IIIC Cutaneous Melanoma AJCC v7 7 83796 -NCIT:C8783 Stage III Acral Lentiginous Melanoma AJCC v7 7 83797 -NCIT:C8788 Stage III Lentigo Maligna Melanoma AJCC v7 7 83798 -NCIT:C8792 Stage III Low-CSD Melanoma AJCC v7 7 83799 -NCIT:C9096 Stage IV Cutaneous Melanoma AJCC v6 and v7 6 83800 -NCIT:C8784 Stage IV Acral Lentiginous Melanoma AJCC v6 and v7 7 83801 -NCIT:C8789 Stage IV Lentigo Maligna Melanoma AJCC v6 and v7 7 83802 -NCIT:C8793 Stage IV Low-CSD Melanoma AJCC v7 7 83803 -NCIT:C9152 Low-CSD Melanoma 5 83804 -NCIT:C8790 Stage I Low-CSD Melanoma AJCC v7 6 83805 -NCIT:C8791 Stage II Low-CSD Melanoma AJCC v7 6 83806 -NCIT:C8792 Stage III Low-CSD Melanoma AJCC v7 6 83807 -NCIT:C8793 Stage IV Low-CSD Melanoma AJCC v7 6 83808 -NCIT:C3560 Malignant Scrotal Neoplasm 4 83809 -NCIT:C156283 Scrotal Sarcoma 5 83810 -NCIT:C156282 Scrotal Liposarcoma 6 83811 -NCIT:C179464 Recurrent Malignant Scrotal Neoplasm 5 83812 -NCIT:C6389 Scrotal Carcinoma 5 83813 -NCIT:C4643 Scrotal Squamous Cell Carcinoma 6 83814 -NCIT:C6386 Scrotal Basal Cell Carcinoma 6 83815 -NCIT:C7728 Scrotal Paget Disease 6 83816 -NCIT:C7361 Scrotal Melanoma 5 83817 -NCIT:C45238 Cutaneous Precursor Lymphoid Neoplasm 4 83818 -NCIT:C45241 Cutaneous B Lymphoblastic Leukemia/Lymphoma 5 83819 -NCIT:C45242 Cutaneous T Lymphoblastic Leukemia/Lymphoma 5 83820 -NCIT:C5631 Aleukemic Acute Lymphoblastic Leukemia Cutis 5 83821 -NCIT:C4573 Malignant Skin Appendage Neoplasm 4 83822 -NCIT:C3775 Adnexal Carcinoma 5 83823 -NCIT:C167341 Adnexal Adenocarcinoma, Not Otherwise Specified 6 83824 -NCIT:C167366 Adnexal Cribriform Carcinoma 6 83825 -NCIT:C167368 Adnexal Secretory Carcinoma 6 83826 -NCIT:C167369 Signet Ring Cell/Histiocytoid Carcinoma 6 83827 -NCIT:C167381 Trichoblastic Carcinoma 6 83828 -NCIT:C40310 Sebaceous Carcinoma 6 83829 -NCIT:C160978 Head and Neck Sebaceous Carcinoma 7 83830 -NCIT:C173648 Salivary Gland Sebaceous Carcinoma 8 83831 -NCIT:C40369 Breast Sebaceous Carcinoma 7 83832 -NCIT:C43340 Eye Sebaceous Carcinoma 7 83833 -NCIT:C134831 Eyelid Sebaceous Gland Carcinoma 8 83834 -NCIT:C174404 Conjunctival Sebaceous Carcinoma 8 83835 -NCIT:C43341 Extraocular Cutaneous Sebaceous Carcinoma 7 83836 -NCIT:C40309 Vulvar Sebaceous Carcinoma 8 83837 -NCIT:C4114 Pilomatrical Carcinoma 6 83838 -NCIT:C43326 Trichilemmal Carcinoma 6 83839 -NCIT:C6938 Sweat Gland Carcinoma 6 83840 -NCIT:C128164 Vulvar Adenocarcinoma of Sweat Gland Origin 7 83841 -NCIT:C4027 Vulvar Paget Disease 8 83842 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 8 83843 -NCIT:C40306 Vulvar Porocarcinoma 9 83844 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 8 83845 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 8 83846 -NCIT:C167344 Spiradenocylindrocarcinoma 7 83847 -NCIT:C167364 Endocrine Mucin-Producing Sweat Gland Carcinoma 7 83848 -NCIT:C167365 Syringocystadenocarcinoma Papilliferum 7 83849 -NCIT:C27255 Eccrine Carcinoma 7 83850 -NCIT:C27254 Papillary Eccrine Carcinoma 8 83851 -NCIT:C27534 Digital Papillary Adenocarcinoma 9 83852 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 8 83853 -NCIT:C40306 Vulvar Porocarcinoma 9 83854 -NCIT:C43345 Ductal Eccrine Adenocarcinoma 8 83855 -NCIT:C43346 Ductal Eccrine Carcinoma with Spindle Cell Elements 9 83856 -NCIT:C43347 Squamoid Eccrine Ductal Carcinoma 9 83857 -NCIT:C43349 Ductal Eccrine Carcinoma with Abundant Fibromyxoid Stroma 9 83858 -NCIT:C5560 Porocarcinoma 8 83859 -NCIT:C40306 Vulvar Porocarcinoma 9 83860 -NCIT:C43354 Porocarcinoma In Situ 9 83861 -NCIT:C27533 Primary Cutaneous Mucinous Carcinoma 7 83862 -NCIT:C3682 Sweat Gland Tubular Carcinoma 7 83863 -NCIT:C4169 Apocrine Carcinoma 7 83864 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 8 83865 -NCIT:C4176 Ceruminous Adenocarcinoma 8 83866 -NCIT:C5141 Breast Apocrine Carcinoma 8 83867 -NCIT:C5140 Breast Apocrine Carcinoma In Situ 9 83868 -NCIT:C5457 Invasive Breast Apocrine Carcinoma 9 83869 -NCIT:C43344 Cylindrocarcinoma 7 83870 -NCIT:C4471 Adenoid Cystic Skin Carcinoma 7 83871 -NCIT:C4472 Mucoepidermoid Skin Carcinoma 7 83872 -NCIT:C5117 Spiradenocarcinoma 7 83873 -NCIT:C5180 Malignant Breast Spiradenoma 8 83874 -NCIT:C54664 Hidradenocarcinoma 7 83875 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 8 83876 -NCIT:C7581 Microcystic Adnexal Carcinoma 7 83877 -NCIT:C43310 Malignant Hair Follicle Neoplasm 5 83878 -NCIT:C43316 Malignant Outer Hair Sheath and Infundibulum Neoplasm 6 83879 -NCIT:C167381 Trichoblastic Carcinoma 7 83880 -NCIT:C167382 Trichoblastic Carcinosarcoma 7 83881 -NCIT:C43326 Trichilemmal Carcinoma 7 83882 -NCIT:C43327 Malignant Proliferating Pilar Tumor 7 83883 -NCIT:C43321 Malignant Germinative Follicular Epithelium Neoplasm 6 83884 -NCIT:C4114 Pilomatrical Carcinoma 7 83885 -NCIT:C4810 Malignant Sweat Gland Neoplasm 5 83886 -NCIT:C167346 Malignant Mixed Tumor of the Skin 6 83887 -NCIT:C40304 Malignant Vulvar Sweat Gland Neoplasm 6 83888 -NCIT:C128164 Vulvar Adenocarcinoma of Sweat Gland Origin 7 83889 -NCIT:C4027 Vulvar Paget Disease 8 83890 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 8 83891 -NCIT:C40306 Vulvar Porocarcinoma 9 83892 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 8 83893 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 8 83894 -NCIT:C5559 Malignant Eccrine Neoplasm 6 83895 -NCIT:C27255 Eccrine Carcinoma 7 83896 -NCIT:C27254 Papillary Eccrine Carcinoma 8 83897 -NCIT:C27534 Digital Papillary Adenocarcinoma 9 83898 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 8 83899 -NCIT:C40306 Vulvar Porocarcinoma 9 83900 -NCIT:C43345 Ductal Eccrine Adenocarcinoma 8 83901 -NCIT:C43346 Ductal Eccrine Carcinoma with Spindle Cell Elements 9 83902 -NCIT:C43347 Squamoid Eccrine Ductal Carcinoma 9 83903 -NCIT:C43349 Ductal Eccrine Carcinoma with Abundant Fibromyxoid Stroma 9 83904 -NCIT:C5560 Porocarcinoma 8 83905 -NCIT:C40306 Vulvar Porocarcinoma 9 83906 -NCIT:C43354 Porocarcinoma In Situ 9 83907 -NCIT:C6800 Malignant Apocrine Neoplasm 6 83908 -NCIT:C4169 Apocrine Carcinoma 7 83909 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 8 83910 -NCIT:C4176 Ceruminous Adenocarcinoma 8 83911 -NCIT:C5141 Breast Apocrine Carcinoma 8 83912 -NCIT:C5140 Breast Apocrine Carcinoma In Situ 9 83913 -NCIT:C5457 Invasive Breast Apocrine Carcinoma 9 83914 -NCIT:C6938 Sweat Gland Carcinoma 6 83915 -NCIT:C128164 Vulvar Adenocarcinoma of Sweat Gland Origin 7 83916 -NCIT:C4027 Vulvar Paget Disease 8 83917 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 8 83918 -NCIT:C40306 Vulvar Porocarcinoma 9 83919 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 8 83920 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 8 83921 -NCIT:C167344 Spiradenocylindrocarcinoma 7 83922 -NCIT:C167364 Endocrine Mucin-Producing Sweat Gland Carcinoma 7 83923 -NCIT:C167365 Syringocystadenocarcinoma Papilliferum 7 83924 -NCIT:C27255 Eccrine Carcinoma 7 83925 -NCIT:C27254 Papillary Eccrine Carcinoma 8 83926 -NCIT:C27534 Digital Papillary Adenocarcinoma 9 83927 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 8 83928 -NCIT:C40306 Vulvar Porocarcinoma 9 83929 -NCIT:C43345 Ductal Eccrine Adenocarcinoma 8 83930 -NCIT:C43346 Ductal Eccrine Carcinoma with Spindle Cell Elements 9 83931 -NCIT:C43347 Squamoid Eccrine Ductal Carcinoma 9 83932 -NCIT:C43349 Ductal Eccrine Carcinoma with Abundant Fibromyxoid Stroma 9 83933 -NCIT:C5560 Porocarcinoma 8 83934 -NCIT:C40306 Vulvar Porocarcinoma 9 83935 -NCIT:C43354 Porocarcinoma In Situ 9 83936 -NCIT:C27533 Primary Cutaneous Mucinous Carcinoma 7 83937 -NCIT:C3682 Sweat Gland Tubular Carcinoma 7 83938 -NCIT:C4169 Apocrine Carcinoma 7 83939 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 8 83940 -NCIT:C4176 Ceruminous Adenocarcinoma 8 83941 -NCIT:C5141 Breast Apocrine Carcinoma 8 83942 -NCIT:C5140 Breast Apocrine Carcinoma In Situ 9 83943 -NCIT:C5457 Invasive Breast Apocrine Carcinoma 9 83944 -NCIT:C43344 Cylindrocarcinoma 7 83945 -NCIT:C4471 Adenoid Cystic Skin Carcinoma 7 83946 -NCIT:C4472 Mucoepidermoid Skin Carcinoma 7 83947 -NCIT:C5117 Spiradenocarcinoma 7 83948 -NCIT:C5180 Malignant Breast Spiradenoma 8 83949 -NCIT:C54664 Hidradenocarcinoma 7 83950 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 8 83951 -NCIT:C7581 Microcystic Adnexal Carcinoma 7 83952 -NCIT:C8409 Malignant Sebaceous Neoplasm 5 83953 -NCIT:C40310 Sebaceous Carcinoma 6 83954 -NCIT:C160978 Head and Neck Sebaceous Carcinoma 7 83955 -NCIT:C173648 Salivary Gland Sebaceous Carcinoma 8 83956 -NCIT:C40369 Breast Sebaceous Carcinoma 7 83957 -NCIT:C43340 Eye Sebaceous Carcinoma 7 83958 -NCIT:C134831 Eyelid Sebaceous Gland Carcinoma 8 83959 -NCIT:C174404 Conjunctival Sebaceous Carcinoma 8 83960 -NCIT:C43341 Extraocular Cutaneous Sebaceous Carcinoma 7 83961 -NCIT:C40309 Vulvar Sebaceous Carcinoma 8 83962 -NCIT:C4574 Malignant Dermal Neoplasm 4 83963 -NCIT:C172624 Malignant Peripheral Nerve Sheath Tumor of the Skin 5 83964 -NCIT:C172625 Epithelioid Malignant Peripheral Nerve Sheath Tumor of the Skin 6 83965 -NCIT:C27529 Malignant Skin Vascular Neoplasm 5 83966 -NCIT:C3550 Skin Kaposi Sarcoma 6 83967 -NCIT:C9112 Classic Kaposi Sarcoma 7 83968 -NCIT:C4489 Skin Angiosarcoma 6 83969 -NCIT:C153626 Recurrent Skin Angiosarcoma 7 83970 -NCIT:C27719 Skin Radiation-Related Angiosarcoma 7 83971 -NCIT:C40379 Angiosarcoma of the Skin of the Arm after Radical Mastectomy followed by Lymphedema 7 83972 -NCIT:C4490 Skin Lymphangiosarcoma 6 83973 -NCIT:C5585 Skin Sarcoma 5 83974 -NCIT:C172632 Skin Myxofibrosarcoma 6 83975 -NCIT:C172634 Skin Ewing Sarcoma 6 83976 -NCIT:C3550 Skin Kaposi Sarcoma 6 83977 -NCIT:C9112 Classic Kaposi Sarcoma 7 83978 -NCIT:C4489 Skin Angiosarcoma 6 83979 -NCIT:C153626 Recurrent Skin Angiosarcoma 7 83980 -NCIT:C27719 Skin Radiation-Related Angiosarcoma 7 83981 -NCIT:C40379 Angiosarcoma of the Skin of the Arm after Radical Mastectomy followed by Lymphedema 7 83982 -NCIT:C4490 Skin Lymphangiosarcoma 6 83983 -NCIT:C49025 Myxoinflammatory Fibroblastic Sarcoma 6 83984 -NCIT:C5576 Skin Undifferentiated Pleomorphic Sarcoma 6 83985 -NCIT:C5615 Skin Liposarcoma 6 83986 -NCIT:C170473 Skin Pleomorphic Liposarcoma 7 83987 -NCIT:C5614 Malignant Cutaneous Granular Cell Tumor 5 83988 -NCIT:C9231 Merkel Cell Carcinoma 5 83989 -NCIT:C115440 Recurrent Merkel Cell Carcinoma 6 83990 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 7 83991 -NCIT:C165740 Locally Recurrent Merkel Cell Carcinoma 7 83992 -NCIT:C128247 Vulvar Merkel Cell Carcinoma 6 83993 -NCIT:C136869 Merkel Cell Carcinoma by AJCC v7 Stage 6 83994 -NCIT:C85887 Stage 0 Merkel Cell Carcinoma AJCC v7 7 83995 -NCIT:C85889 Stage I Merkel Cell Carcinoma AJCC v7 7 83996 -NCIT:C85890 Stage IA Merkel Cell Carcinoma AJCC v7 8 83997 -NCIT:C85892 Stage IB Merkel Cell Carcinoma AJCC v7 8 83998 -NCIT:C85893 Stage II Merkel Cell Carcinoma AJCC v7 7 83999 -NCIT:C85894 Stage IIA Merkel Cell Carcinoma AJCC v7 8 84000 -NCIT:C85895 Stage IIB Merkel Cell Carcinoma AJCC v7 8 84001 -NCIT:C85896 Stage IIC Merkel Cell Carcinoma AJCC v7 8 84002 -NCIT:C85897 Stage III Merkel Cell Carcinoma AJCC v7 7 84003 -NCIT:C85898 Stage IIIA Merkel Cell Carcinoma AJCC v7 8 84004 -NCIT:C85899 Stage IIIB Merkel Cell Carcinoma AJCC v7 8 84005 -NCIT:C85900 Stage IV Merkel Cell Carcinoma AJCC v7 7 84006 -NCIT:C136870 Merkel Cell Carcinoma by AJCC v8 Stage 6 84007 -NCIT:C136871 Merkel Cell Carcinoma by AJCC v8 Clinical Stage 7 84008 -NCIT:C136872 Clinical Stage 0 Merkel Cell Carcinoma AJCC v8 8 84009 -NCIT:C136873 Clinical Stage I Merkel Cell Carcinoma AJCC v8 8 84010 -NCIT:C136874 Clinical Stage II Merkel Cell Carcinoma AJCC v8 8 84011 -NCIT:C136875 Clinical Stage IIA Merkel Cell Carcinoma AJCC v8 9 84012 -NCIT:C136876 Clinical Stage IIB Merkel Cell Carcinoma AJCC v8 9 84013 -NCIT:C136877 Clinical Stage III Merkel Cell Carcinoma AJCC v8 8 84014 -NCIT:C136878 Clinical Stage IV Merkel Cell Carcinoma AJCC v8 8 84015 -NCIT:C136880 Merkel Cell Carcinoma by AJCC v8 Pathologic Stage 7 84016 -NCIT:C136881 Pathologic Stage 0 Merkel Cell Carcinoma AJCC v8 8 84017 -NCIT:C136882 Pathologic Stage I Merkel Cell Carcinoma AJCC v8 8 84018 -NCIT:C136883 Pathologic Stage II Merkel Cell Carcinoma AJCC v8 8 84019 -NCIT:C136884 Pathologic Stage IIA Merkel Cell Carcinoma AJCC v8 9 84020 -NCIT:C136885 Pathologic Stage IIB Merkel Cell Carcinoma AJCC v8 9 84021 -NCIT:C136886 Pathologic Stage III Merkel Cell Carcinoma AJCC v8 8 84022 -NCIT:C136887 Pathologic Stage IIIA Merkel Cell Carcinoma AJCC v8 9 84023 -NCIT:C136888 Pathologic Stage IIIB Merkel Cell Carcinoma AJCC v8 9 84024 -NCIT:C136889 Pathologic Stage IV Merkel Cell Carcinoma AJCC v8 8 84025 -NCIT:C162572 Metastatic Merkel Cell Carcinoma 6 84026 -NCIT:C165300 Advanced Merkel Cell Carcinoma 7 84027 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 7 84028 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 7 84029 -NCIT:C162786 Unresectable Merkel Cell Carcinoma 6 84030 -NCIT:C165741 Refractory Merkel Cell Carcinoma 6 84031 -NCIT:C4914 Skin Carcinoma 4 84032 -NCIT:C157324 Unresectable Skin Carcinoma 5 84033 -NCIT:C157320 Unresectable Skin Squamous Cell Carcinoma 6 84034 -NCIT:C157331 Unresectable Skin Basal Cell Carcinoma 6 84035 -NCIT:C162786 Unresectable Merkel Cell Carcinoma 6 84036 -NCIT:C170465 Resectable Skin Carcinoma 5 84037 -NCIT:C170464 Resectable Skin Squamous Cell Carcinoma 6 84038 -NCIT:C162943 Resectable Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 84039 -NCIT:C2921 Skin Basal Cell Carcinoma 5 84040 -NCIT:C157331 Unresectable Skin Basal Cell Carcinoma 6 84041 -NCIT:C181159 Eyelid Basal Cell Carcinoma 6 84042 -NCIT:C27182 Skin Sclerosing/Morphoeic Basal Cell Carcinoma 6 84043 -NCIT:C27535 Skin Adenoid Basal Cell Carcinoma 6 84044 -NCIT:C27536 Skin Clear Cell Basal Cell Carcinoma 6 84045 -NCIT:C27537 Skin Cystic Basal Cell Carcinoma 6 84046 -NCIT:C27539 Skin Infiltrating Basal Cell Carcinoma 6 84047 -NCIT:C27540 Skin Infundibulocystic Basal Cell Carcinoma 6 84048 -NCIT:C27541 Skin Micronodular Basal Cell Carcinoma 6 84049 -NCIT:C2922 Skin Basosquamous Cell Carcinoma 6 84050 -NCIT:C38109 Skin Basal Cell Carcinoma with Adnexal Differentiation 6 84051 -NCIT:C27538 Skin Follicular Basal Cell Carcinoma 7 84052 -NCIT:C4346 Skin Basal Cell Carcinoma with Sebaceous Differentiation 7 84053 -NCIT:C38110 Skin Signet Ring Cell Basal Cell Carcinoma 6 84054 -NCIT:C38111 Skin Basal Cell Carcinoma with Sarcomatoid Differentiation 6 84055 -NCIT:C39961 Penile Basal Cell Carcinoma 6 84056 -NCIT:C4109 Skin Fibroepithelial Basal Cell Carcinoma 6 84057 -NCIT:C54665 Skin Keratotic Basal Cell Carcinoma 6 84058 -NCIT:C6082 External Ear Basal Cell Carcinoma 6 84059 -NCIT:C62282 Skin Nodular Basal Cell Carcinoma 6 84060 -NCIT:C5568 Skin Nodulo-Ulcerative Basal Cell Carcinoma 7 84061 -NCIT:C5616 Skin Nodular Solid Basal Cell Carcinoma 7 84062 -NCIT:C62284 Superficial Basal Cell Carcinoma 6 84063 -NCIT:C4108 Superficial Multifocal Basal Cell Carcinoma 7 84064 -NCIT:C6381 Vulvar Basal Cell Carcinoma 6 84065 -NCIT:C6386 Scrotal Basal Cell Carcinoma 6 84066 -NCIT:C66903 Skin Metatypical Carcinoma 6 84067 -NCIT:C7473 Anal Margin Basal Cell Carcinoma 6 84068 -NCIT:C7585 Skin Adamantinoid Basal Cell Carcinoma 6 84069 -NCIT:C8014 Lip Basal Cell Carcinoma 6 84070 -NCIT:C5893 Stage 0 Lip Basal Cell Carcinoma AJCC v6 and v7 7 84071 -NCIT:C8197 Stage I Lip Basal Cell Carcinoma 7 84072 -NCIT:C8201 Stage II Lip Basal Cell Carcinoma 7 84073 -NCIT:C8205 Stage III Lip Basal Cell Carcinoma 7 84074 -NCIT:C8209 Stage IV Lip Basal Cell Carcinoma 7 84075 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 8 84076 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 8 84077 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 8 84078 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 7 84079 -NCIT:C9359 Skin Pigmented Basal Cell Carcinoma 6 84080 -NCIT:C3640 Stage 0 Skin Cancer 5 84081 -NCIT:C2906 Skin Squamous Cell Carcinoma In Situ 6 84082 -NCIT:C62571 Bowen Disease of the Skin 7 84083 -NCIT:C5893 Stage 0 Lip Basal Cell Carcinoma AJCC v6 and v7 6 84084 -NCIT:C3775 Adnexal Carcinoma 5 84085 -NCIT:C167341 Adnexal Adenocarcinoma, Not Otherwise Specified 6 84086 -NCIT:C167366 Adnexal Cribriform Carcinoma 6 84087 -NCIT:C167368 Adnexal Secretory Carcinoma 6 84088 -NCIT:C167369 Signet Ring Cell/Histiocytoid Carcinoma 6 84089 -NCIT:C167381 Trichoblastic Carcinoma 6 84090 -NCIT:C40310 Sebaceous Carcinoma 6 84091 -NCIT:C160978 Head and Neck Sebaceous Carcinoma 7 84092 -NCIT:C173648 Salivary Gland Sebaceous Carcinoma 8 84093 -NCIT:C40369 Breast Sebaceous Carcinoma 7 84094 -NCIT:C43340 Eye Sebaceous Carcinoma 7 84095 -NCIT:C134831 Eyelid Sebaceous Gland Carcinoma 8 84096 -NCIT:C174404 Conjunctival Sebaceous Carcinoma 8 84097 -NCIT:C43341 Extraocular Cutaneous Sebaceous Carcinoma 7 84098 -NCIT:C40309 Vulvar Sebaceous Carcinoma 8 84099 -NCIT:C4114 Pilomatrical Carcinoma 6 84100 -NCIT:C43326 Trichilemmal Carcinoma 6 84101 -NCIT:C6938 Sweat Gland Carcinoma 6 84102 -NCIT:C128164 Vulvar Adenocarcinoma of Sweat Gland Origin 7 84103 -NCIT:C4027 Vulvar Paget Disease 8 84104 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 8 84105 -NCIT:C40306 Vulvar Porocarcinoma 9 84106 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 8 84107 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 8 84108 -NCIT:C167344 Spiradenocylindrocarcinoma 7 84109 -NCIT:C167364 Endocrine Mucin-Producing Sweat Gland Carcinoma 7 84110 -NCIT:C167365 Syringocystadenocarcinoma Papilliferum 7 84111 -NCIT:C27255 Eccrine Carcinoma 7 84112 -NCIT:C27254 Papillary Eccrine Carcinoma 8 84113 -NCIT:C27534 Digital Papillary Adenocarcinoma 9 84114 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 8 84115 -NCIT:C40306 Vulvar Porocarcinoma 9 84116 -NCIT:C43345 Ductal Eccrine Adenocarcinoma 8 84117 -NCIT:C43346 Ductal Eccrine Carcinoma with Spindle Cell Elements 9 84118 -NCIT:C43347 Squamoid Eccrine Ductal Carcinoma 9 84119 -NCIT:C43349 Ductal Eccrine Carcinoma with Abundant Fibromyxoid Stroma 9 84120 -NCIT:C5560 Porocarcinoma 8 84121 -NCIT:C40306 Vulvar Porocarcinoma 9 84122 -NCIT:C43354 Porocarcinoma In Situ 9 84123 -NCIT:C27533 Primary Cutaneous Mucinous Carcinoma 7 84124 -NCIT:C3682 Sweat Gland Tubular Carcinoma 7 84125 -NCIT:C4169 Apocrine Carcinoma 7 84126 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 8 84127 -NCIT:C4176 Ceruminous Adenocarcinoma 8 84128 -NCIT:C5141 Breast Apocrine Carcinoma 8 84129 -NCIT:C5140 Breast Apocrine Carcinoma In Situ 9 84130 -NCIT:C5457 Invasive Breast Apocrine Carcinoma 9 84131 -NCIT:C43344 Cylindrocarcinoma 7 84132 -NCIT:C4471 Adenoid Cystic Skin Carcinoma 7 84133 -NCIT:C4472 Mucoepidermoid Skin Carcinoma 7 84134 -NCIT:C5117 Spiradenocarcinoma 7 84135 -NCIT:C5180 Malignant Breast Spiradenoma 8 84136 -NCIT:C54664 Hidradenocarcinoma 7 84137 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 8 84138 -NCIT:C7581 Microcystic Adnexal Carcinoma 7 84139 -NCIT:C4819 Skin Squamous Cell Carcinoma 5 84140 -NCIT:C133252 Cutaneous Squamous Cell Carcinoma of the Head and Neck 6 84141 -NCIT:C133253 Cutaneous Squamous Cell Carcinoma of the Head and Neck by AJCC v8 Stage 7 84142 -NCIT:C133255 Stage 0 Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 84143 -NCIT:C133256 Stage I Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 84144 -NCIT:C133257 Stage II Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 84145 -NCIT:C133258 Stage III Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 84146 -NCIT:C133259 Stage IV Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 84147 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 84148 -NCIT:C162943 Resectable Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 84149 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 84150 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 84151 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 84152 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 84153 -NCIT:C6083 External Ear Squamous Cell Carcinoma 7 84154 -NCIT:C143012 Recurrent Skin Squamous Cell Carcinoma 6 84155 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 84156 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 7 84157 -NCIT:C165737 Locally Recurrent Skin Squamous Cell Carcinoma 7 84158 -NCIT:C143013 Metastatic Skin Squamous Cell Carcinoma 6 84159 -NCIT:C153182 Locally Advanced Skin Squamous Cell Carcinoma 7 84160 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 84161 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 7 84162 -NCIT:C168542 Advanced Skin Squamous Cell Carcinoma 7 84163 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 84164 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 84165 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 84166 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 84167 -NCIT:C157320 Unresectable Skin Squamous Cell Carcinoma 6 84168 -NCIT:C160666 Hematologic Malignancy-Associated Skin Squamous Cell Carcinoma 6 84169 -NCIT:C165465 Skin Verrucous Carcinoma 6 84170 -NCIT:C6811 Plantar Verrucous Carcinoma 7 84171 -NCIT:C165466 Skin Squamous Cell Carcinoma with Osteoclast-Like Giant Cells 6 84172 -NCIT:C165467 Skin Lymphoepithelioma-Like Carcinoma 6 84173 -NCIT:C165468 Skin Squamous Cell Carcinoma with Sarcomatoid Differentiation 6 84174 -NCIT:C165735 Refractory Skin Squamous Cell Carcinoma 6 84175 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 84176 -NCIT:C170464 Resectable Skin Squamous Cell Carcinoma 6 84177 -NCIT:C162943 Resectable Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 84178 -NCIT:C27542 Skin Pseudovascular Squamous Cell Carcinoma 6 84179 -NCIT:C27543 Skin Basaloid Carcinoma 6 84180 -NCIT:C27636 Transplant-Related Skin Squamous Cell Carcinoma 6 84181 -NCIT:C27918 Old Burn Scar-Related Skin Squamous Cell Carcinoma 6 84182 -NCIT:C27921 Solar Radiation-Related Skin Squamous Cell Carcinoma 6 84183 -NCIT:C2906 Skin Squamous Cell Carcinoma In Situ 6 84184 -NCIT:C62571 Bowen Disease of the Skin 7 84185 -NCIT:C3146 Keratoacanthoma 6 84186 -NCIT:C128167 Vulvar Keratoacanthoma 7 84187 -NCIT:C174390 Conjunctival Keratoacanthoma 7 84188 -NCIT:C4459 Skin Clear Cell Squamous Cell Carcinoma 6 84189 -NCIT:C4460 Skin Acantholytic Squamous Cell Carcinoma 6 84190 -NCIT:C4643 Scrotal Squamous Cell Carcinoma 6 84191 -NCIT:C4666 Skin Spindle Cell Squamous Cell Carcinoma 6 84192 -NCIT:C6925 Anal Margin Squamous Cell Carcinoma 6 84193 -NCIT:C54250 Skin Adenosquamous Carcinoma 5 84194 -NCIT:C5581 Stage I Skin Cancer 5 84195 -NCIT:C8197 Stage I Lip Basal Cell Carcinoma 6 84196 -NCIT:C5582 Stage II Skin Cancer 5 84197 -NCIT:C8201 Stage II Lip Basal Cell Carcinoma 6 84198 -NCIT:C5583 Stage III Skin Cancer 5 84199 -NCIT:C8205 Stage III Lip Basal Cell Carcinoma 6 84200 -NCIT:C5584 Stage IV Skin Cancer 5 84201 -NCIT:C8209 Stage IV Lip Basal Cell Carcinoma 6 84202 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 7 84203 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 7 84204 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 7 84205 -NCIT:C6389 Scrotal Carcinoma 5 84206 -NCIT:C4643 Scrotal Squamous Cell Carcinoma 6 84207 -NCIT:C6386 Scrotal Basal Cell Carcinoma 6 84208 -NCIT:C7728 Scrotal Paget Disease 6 84209 -NCIT:C7472 Anal Margin Carcinoma 5 84210 -NCIT:C6925 Anal Margin Squamous Cell Carcinoma 6 84211 -NCIT:C7473 Anal Margin Basal Cell Carcinoma 6 84212 -NCIT:C7476 Anal Margin Paget Disease 6 84213 -NCIT:C7903 Recurrent Skin Carcinoma 5 84214 -NCIT:C115440 Recurrent Merkel Cell Carcinoma 6 84215 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 7 84216 -NCIT:C165740 Locally Recurrent Merkel Cell Carcinoma 7 84217 -NCIT:C143012 Recurrent Skin Squamous Cell Carcinoma 6 84218 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 84219 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 7 84220 -NCIT:C165737 Locally Recurrent Skin Squamous Cell Carcinoma 7 84221 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 6 84222 -NCIT:C9231 Merkel Cell Carcinoma 5 84223 -NCIT:C115440 Recurrent Merkel Cell Carcinoma 6 84224 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 7 84225 -NCIT:C165740 Locally Recurrent Merkel Cell Carcinoma 7 84226 -NCIT:C128247 Vulvar Merkel Cell Carcinoma 6 84227 -NCIT:C136869 Merkel Cell Carcinoma by AJCC v7 Stage 6 84228 -NCIT:C85887 Stage 0 Merkel Cell Carcinoma AJCC v7 7 84229 -NCIT:C85889 Stage I Merkel Cell Carcinoma AJCC v7 7 84230 -NCIT:C85890 Stage IA Merkel Cell Carcinoma AJCC v7 8 84231 -NCIT:C85892 Stage IB Merkel Cell Carcinoma AJCC v7 8 84232 -NCIT:C85893 Stage II Merkel Cell Carcinoma AJCC v7 7 84233 -NCIT:C85894 Stage IIA Merkel Cell Carcinoma AJCC v7 8 84234 -NCIT:C85895 Stage IIB Merkel Cell Carcinoma AJCC v7 8 84235 -NCIT:C85896 Stage IIC Merkel Cell Carcinoma AJCC v7 8 84236 -NCIT:C85897 Stage III Merkel Cell Carcinoma AJCC v7 7 84237 -NCIT:C85898 Stage IIIA Merkel Cell Carcinoma AJCC v7 8 84238 -NCIT:C85899 Stage IIIB Merkel Cell Carcinoma AJCC v7 8 84239 -NCIT:C85900 Stage IV Merkel Cell Carcinoma AJCC v7 7 84240 -NCIT:C136870 Merkel Cell Carcinoma by AJCC v8 Stage 6 84241 -NCIT:C136871 Merkel Cell Carcinoma by AJCC v8 Clinical Stage 7 84242 -NCIT:C136872 Clinical Stage 0 Merkel Cell Carcinoma AJCC v8 8 84243 -NCIT:C136873 Clinical Stage I Merkel Cell Carcinoma AJCC v8 8 84244 -NCIT:C136874 Clinical Stage II Merkel Cell Carcinoma AJCC v8 8 84245 -NCIT:C136875 Clinical Stage IIA Merkel Cell Carcinoma AJCC v8 9 84246 -NCIT:C136876 Clinical Stage IIB Merkel Cell Carcinoma AJCC v8 9 84247 -NCIT:C136877 Clinical Stage III Merkel Cell Carcinoma AJCC v8 8 84248 -NCIT:C136878 Clinical Stage IV Merkel Cell Carcinoma AJCC v8 8 84249 -NCIT:C136880 Merkel Cell Carcinoma by AJCC v8 Pathologic Stage 7 84250 -NCIT:C136881 Pathologic Stage 0 Merkel Cell Carcinoma AJCC v8 8 84251 -NCIT:C136882 Pathologic Stage I Merkel Cell Carcinoma AJCC v8 8 84252 -NCIT:C136883 Pathologic Stage II Merkel Cell Carcinoma AJCC v8 8 84253 -NCIT:C136884 Pathologic Stage IIA Merkel Cell Carcinoma AJCC v8 9 84254 -NCIT:C136885 Pathologic Stage IIB Merkel Cell Carcinoma AJCC v8 9 84255 -NCIT:C136886 Pathologic Stage III Merkel Cell Carcinoma AJCC v8 8 84256 -NCIT:C136887 Pathologic Stage IIIA Merkel Cell Carcinoma AJCC v8 9 84257 -NCIT:C136888 Pathologic Stage IIIB Merkel Cell Carcinoma AJCC v8 9 84258 -NCIT:C136889 Pathologic Stage IV Merkel Cell Carcinoma AJCC v8 8 84259 -NCIT:C162572 Metastatic Merkel Cell Carcinoma 6 84260 -NCIT:C165300 Advanced Merkel Cell Carcinoma 7 84261 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 7 84262 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 7 84263 -NCIT:C162786 Unresectable Merkel Cell Carcinoma 6 84264 -NCIT:C165741 Refractory Merkel Cell Carcinoma 6 84265 -NCIT:C5629 Metastatic Malignant Neoplasm in the Skin 4 84266 -NCIT:C185155 Extramedullary Disease in Plasma Cell Myeloma Involving the Skin 5 84267 -NCIT:C5628 Metastatic Carcinoma in the Skin 5 84268 -NCIT:C188113 Metastatic Squamous Cell Carcinoma in the Skin 6 84269 -NCIT:C28311 Metastatic Breast Carcinoma in the Skin 6 84270 -NCIT:C7203 Blastic Plasmacytoid Dendritic Cell Neoplasm 4 84271 -NCIT:C156103 Recurrent Blastic Plasmacytoid Dendritic Cell Neoplasm 5 84272 -NCIT:C156104 Refractory Blastic Plasmacytoid Dendritic Cell Neoplasm 5 84273 -NCIT:C88156 Leukemia Cutis 4 84274 -NCIT:C45264 Cutaneous Chronic Lymphocytic Leukemia 5 84275 -NCIT:C4983 Aleukemic Leukemia Cutis 5 84276 -NCIT:C5630 Aleukemic Monocytic Leukemia Cutis 6 84277 -NCIT:C5631 Aleukemic Acute Lymphoblastic Leukemia Cutis 6 84278 -NCIT:C4380 Scrotal Neoplasm 3 84279 -NCIT:C3560 Malignant Scrotal Neoplasm 4 84280 -NCIT:C156283 Scrotal Sarcoma 5 84281 -NCIT:C156282 Scrotal Liposarcoma 6 84282 -NCIT:C179464 Recurrent Malignant Scrotal Neoplasm 5 84283 -NCIT:C6389 Scrotal Carcinoma 5 84284 -NCIT:C4643 Scrotal Squamous Cell Carcinoma 6 84285 -NCIT:C6386 Scrotal Basal Cell Carcinoma 6 84286 -NCIT:C7728 Scrotal Paget Disease 6 84287 -NCIT:C7361 Scrotal Melanoma 5 84288 -NCIT:C3615 Benign Scrotal Neoplasm 4 84289 -NCIT:C6387 Scrotal Hemangioma 5 84290 -NCIT:C4463 Skin Appendage Neoplasm 3 84291 -NCIT:C3363 Sebaceous Gland Neoplasm 4 84292 -NCIT:C8409 Malignant Sebaceous Neoplasm 5 84293 -NCIT:C40310 Sebaceous Carcinoma 6 84294 -NCIT:C160978 Head and Neck Sebaceous Carcinoma 7 84295 -NCIT:C173648 Salivary Gland Sebaceous Carcinoma 8 84296 -NCIT:C40369 Breast Sebaceous Carcinoma 7 84297 -NCIT:C43340 Eye Sebaceous Carcinoma 7 84298 -NCIT:C134831 Eyelid Sebaceous Gland Carcinoma 8 84299 -NCIT:C174404 Conjunctival Sebaceous Carcinoma 8 84300 -NCIT:C43341 Extraocular Cutaneous Sebaceous Carcinoma 7 84301 -NCIT:C40309 Vulvar Sebaceous Carcinoma 8 84302 -NCIT:C8525 Benign Sebaceous Neoplasm 5 84303 -NCIT:C4174 Sebaceous Adenoma 6 84304 -NCIT:C43334 Superficial Epithelioma with Sebaceous Differentiation 6 84305 -NCIT:C43336 Sebaceoma 6 84306 -NCIT:C3398 Sweat Gland Neoplasm 4 84307 -NCIT:C4810 Malignant Sweat Gland Neoplasm 5 84308 -NCIT:C167346 Malignant Mixed Tumor of the Skin 6 84309 -NCIT:C40304 Malignant Vulvar Sweat Gland Neoplasm 6 84310 -NCIT:C128164 Vulvar Adenocarcinoma of Sweat Gland Origin 7 84311 -NCIT:C4027 Vulvar Paget Disease 8 84312 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 8 84313 -NCIT:C40306 Vulvar Porocarcinoma 9 84314 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 8 84315 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 8 84316 -NCIT:C5559 Malignant Eccrine Neoplasm 6 84317 -NCIT:C27255 Eccrine Carcinoma 7 84318 -NCIT:C27254 Papillary Eccrine Carcinoma 8 84319 -NCIT:C27534 Digital Papillary Adenocarcinoma 9 84320 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 8 84321 -NCIT:C40306 Vulvar Porocarcinoma 9 84322 -NCIT:C43345 Ductal Eccrine Adenocarcinoma 8 84323 -NCIT:C43346 Ductal Eccrine Carcinoma with Spindle Cell Elements 9 84324 -NCIT:C43347 Squamoid Eccrine Ductal Carcinoma 9 84325 -NCIT:C43349 Ductal Eccrine Carcinoma with Abundant Fibromyxoid Stroma 9 84326 -NCIT:C5560 Porocarcinoma 8 84327 -NCIT:C40306 Vulvar Porocarcinoma 9 84328 -NCIT:C43354 Porocarcinoma In Situ 9 84329 -NCIT:C6800 Malignant Apocrine Neoplasm 6 84330 -NCIT:C4169 Apocrine Carcinoma 7 84331 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 8 84332 -NCIT:C4176 Ceruminous Adenocarcinoma 8 84333 -NCIT:C5141 Breast Apocrine Carcinoma 8 84334 -NCIT:C5140 Breast Apocrine Carcinoma In Situ 9 84335 -NCIT:C5457 Invasive Breast Apocrine Carcinoma 9 84336 -NCIT:C6938 Sweat Gland Carcinoma 6 84337 -NCIT:C128164 Vulvar Adenocarcinoma of Sweat Gland Origin 7 84338 -NCIT:C4027 Vulvar Paget Disease 8 84339 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 8 84340 -NCIT:C40306 Vulvar Porocarcinoma 9 84341 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 8 84342 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 8 84343 -NCIT:C167344 Spiradenocylindrocarcinoma 7 84344 -NCIT:C167364 Endocrine Mucin-Producing Sweat Gland Carcinoma 7 84345 -NCIT:C167365 Syringocystadenocarcinoma Papilliferum 7 84346 -NCIT:C27255 Eccrine Carcinoma 7 84347 -NCIT:C27254 Papillary Eccrine Carcinoma 8 84348 -NCIT:C27534 Digital Papillary Adenocarcinoma 9 84349 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 8 84350 -NCIT:C40306 Vulvar Porocarcinoma 9 84351 -NCIT:C43345 Ductal Eccrine Adenocarcinoma 8 84352 -NCIT:C43346 Ductal Eccrine Carcinoma with Spindle Cell Elements 9 84353 -NCIT:C43347 Squamoid Eccrine Ductal Carcinoma 9 84354 -NCIT:C43349 Ductal Eccrine Carcinoma with Abundant Fibromyxoid Stroma 9 84355 -NCIT:C5560 Porocarcinoma 8 84356 -NCIT:C40306 Vulvar Porocarcinoma 9 84357 -NCIT:C43354 Porocarcinoma In Situ 9 84358 -NCIT:C27533 Primary Cutaneous Mucinous Carcinoma 7 84359 -NCIT:C3682 Sweat Gland Tubular Carcinoma 7 84360 -NCIT:C4169 Apocrine Carcinoma 7 84361 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 8 84362 -NCIT:C4176 Ceruminous Adenocarcinoma 8 84363 -NCIT:C5141 Breast Apocrine Carcinoma 8 84364 -NCIT:C5140 Breast Apocrine Carcinoma In Situ 9 84365 -NCIT:C5457 Invasive Breast Apocrine Carcinoma 9 84366 -NCIT:C43344 Cylindrocarcinoma 7 84367 -NCIT:C4471 Adenoid Cystic Skin Carcinoma 7 84368 -NCIT:C4472 Mucoepidermoid Skin Carcinoma 7 84369 -NCIT:C5117 Spiradenocarcinoma 7 84370 -NCIT:C5180 Malignant Breast Spiradenoma 8 84371 -NCIT:C54664 Hidradenocarcinoma 7 84372 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 8 84373 -NCIT:C7581 Microcystic Adnexal Carcinoma 7 84374 -NCIT:C4879 Benign Sweat Gland Neoplasm 5 84375 -NCIT:C167342 Spiradenocylindroma 6 84376 -NCIT:C27094 Cylindroma 6 84377 -NCIT:C43351 Sporadic Cylindroma 7 84378 -NCIT:C43352 Turban Tumor 7 84379 -NCIT:C27273 Poroma 6 84380 -NCIT:C43353 Classical Poroma 7 84381 -NCIT:C4473 Dermal Duct Tumor 7 84382 -NCIT:C3760 Hidrocystoma 6 84383 -NCIT:C43342 Apocrine Hidrocystoma 7 84384 -NCIT:C7565 Eccrine Hidrocystoma 7 84385 -NCIT:C4170 Spiradenoma 6 84386 -NCIT:C5193 Breast Spiradenoma 7 84387 -NCIT:C4171 Hidradenoma Papilliferum 6 84388 -NCIT:C128240 Vulvar Hidradenoma Papilliferum 7 84389 -NCIT:C96699 Anal Hidradenoma Papilliferum 7 84390 -NCIT:C4474 Chondroid Syringoma 6 84391 -NCIT:C6797 Benign Eccrine Neoplasm 6 84392 -NCIT:C162848 Digital Papillary Adenoma 7 84393 -NCIT:C3761 Syringoma 7 84394 -NCIT:C40311 Vulvar Syringoma 8 84395 -NCIT:C43356 Syringofibroadenoma 7 84396 -NCIT:C7565 Eccrine Hidrocystoma 7 84397 -NCIT:C6799 Benign Apocrine Neoplasm 6 84398 -NCIT:C4168 Apocrine Adenoma 7 84399 -NCIT:C27527 Tubular Apocrine Adenoma 8 84400 -NCIT:C43342 Apocrine Hidrocystoma 8 84401 -NCIT:C6088 Ceruminous Adenoma 8 84402 -NCIT:C7560 Sweat Gland Adenoma 6 84403 -NCIT:C4168 Apocrine Adenoma 7 84404 -NCIT:C27527 Tubular Apocrine Adenoma 8 84405 -NCIT:C43342 Apocrine Hidrocystoma 8 84406 -NCIT:C6088 Ceruminous Adenoma 8 84407 -NCIT:C4172 Syringocystadenoma Papilliferum 7 84408 -NCIT:C43356 Syringofibroadenoma 7 84409 -NCIT:C7563 Hidradenoma 7 84410 -NCIT:C7567 Clear Cell Hidradenoma 8 84411 -NCIT:C7568 Nodular Hidradenoma 8 84412 -NCIT:C40312 Vulvar Nodular Hidradenoma 9 84413 -NCIT:C6796 Eccrine Neoplasm 5 84414 -NCIT:C5559 Malignant Eccrine Neoplasm 6 84415 -NCIT:C27255 Eccrine Carcinoma 7 84416 -NCIT:C27254 Papillary Eccrine Carcinoma 8 84417 -NCIT:C27534 Digital Papillary Adenocarcinoma 9 84418 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 8 84419 -NCIT:C40306 Vulvar Porocarcinoma 9 84420 -NCIT:C43345 Ductal Eccrine Adenocarcinoma 8 84421 -NCIT:C43346 Ductal Eccrine Carcinoma with Spindle Cell Elements 9 84422 -NCIT:C43347 Squamoid Eccrine Ductal Carcinoma 9 84423 -NCIT:C43349 Ductal Eccrine Carcinoma with Abundant Fibromyxoid Stroma 9 84424 -NCIT:C5560 Porocarcinoma 8 84425 -NCIT:C40306 Vulvar Porocarcinoma 9 84426 -NCIT:C43354 Porocarcinoma In Situ 9 84427 -NCIT:C6797 Benign Eccrine Neoplasm 6 84428 -NCIT:C162848 Digital Papillary Adenoma 7 84429 -NCIT:C3761 Syringoma 7 84430 -NCIT:C40311 Vulvar Syringoma 8 84431 -NCIT:C43356 Syringofibroadenoma 7 84432 -NCIT:C7565 Eccrine Hidrocystoma 7 84433 -NCIT:C6798 Apocrine Neoplasm 5 84434 -NCIT:C5558 Ceruminous Neoplasm 6 84435 -NCIT:C4176 Ceruminous Adenocarcinoma 7 84436 -NCIT:C6088 Ceruminous Adenoma 7 84437 -NCIT:C6799 Benign Apocrine Neoplasm 6 84438 -NCIT:C4168 Apocrine Adenoma 7 84439 -NCIT:C27527 Tubular Apocrine Adenoma 8 84440 -NCIT:C43342 Apocrine Hidrocystoma 8 84441 -NCIT:C6088 Ceruminous Adenoma 8 84442 -NCIT:C6800 Malignant Apocrine Neoplasm 6 84443 -NCIT:C4169 Apocrine Carcinoma 7 84444 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 8 84445 -NCIT:C4176 Ceruminous Adenocarcinoma 8 84446 -NCIT:C5141 Breast Apocrine Carcinoma 8 84447 -NCIT:C5140 Breast Apocrine Carcinoma In Situ 9 84448 -NCIT:C5457 Invasive Breast Apocrine Carcinoma 9 84449 -NCIT:C40303 Vulvar Neoplasm of Skin Appendage Origin 4 84450 -NCIT:C128240 Vulvar Hidradenoma Papilliferum 5 84451 -NCIT:C40304 Malignant Vulvar Sweat Gland Neoplasm 5 84452 -NCIT:C128164 Vulvar Adenocarcinoma of Sweat Gland Origin 6 84453 -NCIT:C4027 Vulvar Paget Disease 7 84454 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 7 84455 -NCIT:C40306 Vulvar Porocarcinoma 8 84456 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 7 84457 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 7 84458 -NCIT:C40309 Vulvar Sebaceous Carcinoma 5 84459 -NCIT:C40311 Vulvar Syringoma 5 84460 -NCIT:C40312 Vulvar Nodular Hidradenoma 5 84461 -NCIT:C40314 Vulvar Trichoepithelioma 5 84462 -NCIT:C4573 Malignant Skin Appendage Neoplasm 4 84463 -NCIT:C3775 Adnexal Carcinoma 5 84464 -NCIT:C167341 Adnexal Adenocarcinoma, Not Otherwise Specified 6 84465 -NCIT:C167366 Adnexal Cribriform Carcinoma 6 84466 -NCIT:C167368 Adnexal Secretory Carcinoma 6 84467 -NCIT:C167369 Signet Ring Cell/Histiocytoid Carcinoma 6 84468 -NCIT:C167381 Trichoblastic Carcinoma 6 84469 -NCIT:C40310 Sebaceous Carcinoma 6 84470 -NCIT:C160978 Head and Neck Sebaceous Carcinoma 7 84471 -NCIT:C173648 Salivary Gland Sebaceous Carcinoma 8 84472 -NCIT:C40369 Breast Sebaceous Carcinoma 7 84473 -NCIT:C43340 Eye Sebaceous Carcinoma 7 84474 -NCIT:C134831 Eyelid Sebaceous Gland Carcinoma 8 84475 -NCIT:C174404 Conjunctival Sebaceous Carcinoma 8 84476 -NCIT:C43341 Extraocular Cutaneous Sebaceous Carcinoma 7 84477 -NCIT:C40309 Vulvar Sebaceous Carcinoma 8 84478 -NCIT:C4114 Pilomatrical Carcinoma 6 84479 -NCIT:C43326 Trichilemmal Carcinoma 6 84480 -NCIT:C6938 Sweat Gland Carcinoma 6 84481 -NCIT:C128164 Vulvar Adenocarcinoma of Sweat Gland Origin 7 84482 -NCIT:C4027 Vulvar Paget Disease 8 84483 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 8 84484 -NCIT:C40306 Vulvar Porocarcinoma 9 84485 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 8 84486 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 8 84487 -NCIT:C167344 Spiradenocylindrocarcinoma 7 84488 -NCIT:C167364 Endocrine Mucin-Producing Sweat Gland Carcinoma 7 84489 -NCIT:C167365 Syringocystadenocarcinoma Papilliferum 7 84490 -NCIT:C27255 Eccrine Carcinoma 7 84491 -NCIT:C27254 Papillary Eccrine Carcinoma 8 84492 -NCIT:C27534 Digital Papillary Adenocarcinoma 9 84493 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 8 84494 -NCIT:C40306 Vulvar Porocarcinoma 9 84495 -NCIT:C43345 Ductal Eccrine Adenocarcinoma 8 84496 -NCIT:C43346 Ductal Eccrine Carcinoma with Spindle Cell Elements 9 84497 -NCIT:C43347 Squamoid Eccrine Ductal Carcinoma 9 84498 -NCIT:C43349 Ductal Eccrine Carcinoma with Abundant Fibromyxoid Stroma 9 84499 -NCIT:C5560 Porocarcinoma 8 84500 -NCIT:C40306 Vulvar Porocarcinoma 9 84501 -NCIT:C43354 Porocarcinoma In Situ 9 84502 -NCIT:C27533 Primary Cutaneous Mucinous Carcinoma 7 84503 -NCIT:C3682 Sweat Gland Tubular Carcinoma 7 84504 -NCIT:C4169 Apocrine Carcinoma 7 84505 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 8 84506 -NCIT:C4176 Ceruminous Adenocarcinoma 8 84507 -NCIT:C5141 Breast Apocrine Carcinoma 8 84508 -NCIT:C5140 Breast Apocrine Carcinoma In Situ 9 84509 -NCIT:C5457 Invasive Breast Apocrine Carcinoma 9 84510 -NCIT:C43344 Cylindrocarcinoma 7 84511 -NCIT:C4471 Adenoid Cystic Skin Carcinoma 7 84512 -NCIT:C4472 Mucoepidermoid Skin Carcinoma 7 84513 -NCIT:C5117 Spiradenocarcinoma 7 84514 -NCIT:C5180 Malignant Breast Spiradenoma 8 84515 -NCIT:C54664 Hidradenocarcinoma 7 84516 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 8 84517 -NCIT:C7581 Microcystic Adnexal Carcinoma 7 84518 -NCIT:C43310 Malignant Hair Follicle Neoplasm 5 84519 -NCIT:C43316 Malignant Outer Hair Sheath and Infundibulum Neoplasm 6 84520 -NCIT:C167381 Trichoblastic Carcinoma 7 84521 -NCIT:C167382 Trichoblastic Carcinosarcoma 7 84522 -NCIT:C43326 Trichilemmal Carcinoma 7 84523 -NCIT:C43327 Malignant Proliferating Pilar Tumor 7 84524 -NCIT:C43321 Malignant Germinative Follicular Epithelium Neoplasm 6 84525 -NCIT:C4114 Pilomatrical Carcinoma 7 84526 -NCIT:C4810 Malignant Sweat Gland Neoplasm 5 84527 -NCIT:C167346 Malignant Mixed Tumor of the Skin 6 84528 -NCIT:C40304 Malignant Vulvar Sweat Gland Neoplasm 6 84529 -NCIT:C128164 Vulvar Adenocarcinoma of Sweat Gland Origin 7 84530 -NCIT:C4027 Vulvar Paget Disease 8 84531 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 8 84532 -NCIT:C40306 Vulvar Porocarcinoma 9 84533 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 8 84534 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 8 84535 -NCIT:C5559 Malignant Eccrine Neoplasm 6 84536 -NCIT:C27255 Eccrine Carcinoma 7 84537 -NCIT:C27254 Papillary Eccrine Carcinoma 8 84538 -NCIT:C27534 Digital Papillary Adenocarcinoma 9 84539 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 8 84540 -NCIT:C40306 Vulvar Porocarcinoma 9 84541 -NCIT:C43345 Ductal Eccrine Adenocarcinoma 8 84542 -NCIT:C43346 Ductal Eccrine Carcinoma with Spindle Cell Elements 9 84543 -NCIT:C43347 Squamoid Eccrine Ductal Carcinoma 9 84544 -NCIT:C43349 Ductal Eccrine Carcinoma with Abundant Fibromyxoid Stroma 9 84545 -NCIT:C5560 Porocarcinoma 8 84546 -NCIT:C40306 Vulvar Porocarcinoma 9 84547 -NCIT:C43354 Porocarcinoma In Situ 9 84548 -NCIT:C6800 Malignant Apocrine Neoplasm 6 84549 -NCIT:C4169 Apocrine Carcinoma 7 84550 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 8 84551 -NCIT:C4176 Ceruminous Adenocarcinoma 8 84552 -NCIT:C5141 Breast Apocrine Carcinoma 8 84553 -NCIT:C5140 Breast Apocrine Carcinoma In Situ 9 84554 -NCIT:C5457 Invasive Breast Apocrine Carcinoma 9 84555 -NCIT:C6938 Sweat Gland Carcinoma 6 84556 -NCIT:C128164 Vulvar Adenocarcinoma of Sweat Gland Origin 7 84557 -NCIT:C4027 Vulvar Paget Disease 8 84558 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 8 84559 -NCIT:C40306 Vulvar Porocarcinoma 9 84560 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 8 84561 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 8 84562 -NCIT:C167344 Spiradenocylindrocarcinoma 7 84563 -NCIT:C167364 Endocrine Mucin-Producing Sweat Gland Carcinoma 7 84564 -NCIT:C167365 Syringocystadenocarcinoma Papilliferum 7 84565 -NCIT:C27255 Eccrine Carcinoma 7 84566 -NCIT:C27254 Papillary Eccrine Carcinoma 8 84567 -NCIT:C27534 Digital Papillary Adenocarcinoma 9 84568 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 8 84569 -NCIT:C40306 Vulvar Porocarcinoma 9 84570 -NCIT:C43345 Ductal Eccrine Adenocarcinoma 8 84571 -NCIT:C43346 Ductal Eccrine Carcinoma with Spindle Cell Elements 9 84572 -NCIT:C43347 Squamoid Eccrine Ductal Carcinoma 9 84573 -NCIT:C43349 Ductal Eccrine Carcinoma with Abundant Fibromyxoid Stroma 9 84574 -NCIT:C5560 Porocarcinoma 8 84575 -NCIT:C40306 Vulvar Porocarcinoma 9 84576 -NCIT:C43354 Porocarcinoma In Situ 9 84577 -NCIT:C27533 Primary Cutaneous Mucinous Carcinoma 7 84578 -NCIT:C3682 Sweat Gland Tubular Carcinoma 7 84579 -NCIT:C4169 Apocrine Carcinoma 7 84580 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 8 84581 -NCIT:C4176 Ceruminous Adenocarcinoma 8 84582 -NCIT:C5141 Breast Apocrine Carcinoma 8 84583 -NCIT:C5140 Breast Apocrine Carcinoma In Situ 9 84584 -NCIT:C5457 Invasive Breast Apocrine Carcinoma 9 84585 -NCIT:C43344 Cylindrocarcinoma 7 84586 -NCIT:C4471 Adenoid Cystic Skin Carcinoma 7 84587 -NCIT:C4472 Mucoepidermoid Skin Carcinoma 7 84588 -NCIT:C5117 Spiradenocarcinoma 7 84589 -NCIT:C5180 Malignant Breast Spiradenoma 8 84590 -NCIT:C54664 Hidradenocarcinoma 7 84591 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 8 84592 -NCIT:C7581 Microcystic Adnexal Carcinoma 7 84593 -NCIT:C8409 Malignant Sebaceous Neoplasm 5 84594 -NCIT:C40310 Sebaceous Carcinoma 6 84595 -NCIT:C160978 Head and Neck Sebaceous Carcinoma 7 84596 -NCIT:C173648 Salivary Gland Sebaceous Carcinoma 8 84597 -NCIT:C40369 Breast Sebaceous Carcinoma 7 84598 -NCIT:C43340 Eye Sebaceous Carcinoma 7 84599 -NCIT:C134831 Eyelid Sebaceous Gland Carcinoma 8 84600 -NCIT:C174404 Conjunctival Sebaceous Carcinoma 8 84601 -NCIT:C43341 Extraocular Cutaneous Sebaceous Carcinoma 7 84602 -NCIT:C40309 Vulvar Sebaceous Carcinoma 8 84603 -NCIT:C4615 Benign Skin Appendage Neoplasm 4 84604 -NCIT:C167370 Skin Myoepithelioma 5 84605 -NCIT:C27520 Benign Hair Follicle Neoplasm 5 84606 -NCIT:C43315 Benign Outer Hair Sheath and Infundibulum Neoplasm 6 84607 -NCIT:C4113 Trichilemmoma 7 84608 -NCIT:C27521 Classic Type Trichilemmoma 8 84609 -NCIT:C27522 Desmoplastic Trichilemmoma 8 84610 -NCIT:C43325 Trichoadenoma 7 84611 -NCIT:C4468 Pilar Sheath Acanthoma 7 84612 -NCIT:C4469 Tumor of the Follicular Infundibulum 7 84613 -NCIT:C43319 Benign Germinative Follicular Epithelium Neoplasm 6 84614 -NCIT:C168592 Melanocytic Matricoma 7 84615 -NCIT:C27132 Trichoblastoma 7 84616 -NCIT:C27524 Desmoplastic Trichoepithelioma 8 84617 -NCIT:C40314 Vulvar Trichoepithelioma 8 84618 -NCIT:C4112 Trichofolliculoma 7 84619 -NCIT:C7368 Pilomatricoma 7 84620 -NCIT:C190279 Childhood Pilomatricoma 8 84621 -NCIT:C43322 Benign Mixed Epithelial and Mesenchymal Hair Follicle Neoplasm 6 84622 -NCIT:C43323 Benign Pilar-Associated Mesenchyme Neoplasm 6 84623 -NCIT:C27526 Follicular Myxoma 7 84624 -NCIT:C43331 Fibrofolliculoma 7 84625 -NCIT:C43332 Pilar Leiomyoma 7 84626 -NCIT:C43333 Spindle-Cell Predominant Trichodiscoma 7 84627 -NCIT:C4470 Perifollicular Fibroma 7 84628 -NCIT:C4879 Benign Sweat Gland Neoplasm 5 84629 -NCIT:C167342 Spiradenocylindroma 6 84630 -NCIT:C27094 Cylindroma 6 84631 -NCIT:C43351 Sporadic Cylindroma 7 84632 -NCIT:C43352 Turban Tumor 7 84633 -NCIT:C27273 Poroma 6 84634 -NCIT:C43353 Classical Poroma 7 84635 -NCIT:C4473 Dermal Duct Tumor 7 84636 -NCIT:C3760 Hidrocystoma 6 84637 -NCIT:C43342 Apocrine Hidrocystoma 7 84638 -NCIT:C7565 Eccrine Hidrocystoma 7 84639 -NCIT:C4170 Spiradenoma 6 84640 -NCIT:C5193 Breast Spiradenoma 7 84641 -NCIT:C4171 Hidradenoma Papilliferum 6 84642 -NCIT:C128240 Vulvar Hidradenoma Papilliferum 7 84643 -NCIT:C96699 Anal Hidradenoma Papilliferum 7 84644 -NCIT:C4474 Chondroid Syringoma 6 84645 -NCIT:C6797 Benign Eccrine Neoplasm 6 84646 -NCIT:C162848 Digital Papillary Adenoma 7 84647 -NCIT:C3761 Syringoma 7 84648 -NCIT:C40311 Vulvar Syringoma 8 84649 -NCIT:C43356 Syringofibroadenoma 7 84650 -NCIT:C7565 Eccrine Hidrocystoma 7 84651 -NCIT:C6799 Benign Apocrine Neoplasm 6 84652 -NCIT:C4168 Apocrine Adenoma 7 84653 -NCIT:C27527 Tubular Apocrine Adenoma 8 84654 -NCIT:C43342 Apocrine Hidrocystoma 8 84655 -NCIT:C6088 Ceruminous Adenoma 8 84656 -NCIT:C7560 Sweat Gland Adenoma 6 84657 -NCIT:C4168 Apocrine Adenoma 7 84658 -NCIT:C27527 Tubular Apocrine Adenoma 8 84659 -NCIT:C43342 Apocrine Hidrocystoma 8 84660 -NCIT:C6088 Ceruminous Adenoma 8 84661 -NCIT:C4172 Syringocystadenoma Papilliferum 7 84662 -NCIT:C43356 Syringofibroadenoma 7 84663 -NCIT:C7563 Hidradenoma 7 84664 -NCIT:C7567 Clear Cell Hidradenoma 8 84665 -NCIT:C7568 Nodular Hidradenoma 8 84666 -NCIT:C40312 Vulvar Nodular Hidradenoma 9 84667 -NCIT:C7580 Skin Appendage Adenoma 5 84668 -NCIT:C4174 Sebaceous Adenoma 6 84669 -NCIT:C7560 Sweat Gland Adenoma 6 84670 -NCIT:C4168 Apocrine Adenoma 7 84671 -NCIT:C27527 Tubular Apocrine Adenoma 8 84672 -NCIT:C43342 Apocrine Hidrocystoma 8 84673 -NCIT:C6088 Ceruminous Adenoma 8 84674 -NCIT:C4172 Syringocystadenoma Papilliferum 7 84675 -NCIT:C43356 Syringofibroadenoma 7 84676 -NCIT:C7563 Hidradenoma 7 84677 -NCIT:C7567 Clear Cell Hidradenoma 8 84678 -NCIT:C7568 Nodular Hidradenoma 8 84679 -NCIT:C40312 Vulvar Nodular Hidradenoma 9 84680 -NCIT:C8525 Benign Sebaceous Neoplasm 5 84681 -NCIT:C4174 Sebaceous Adenoma 6 84682 -NCIT:C43334 Superficial Epithelioma with Sebaceous Differentiation 6 84683 -NCIT:C43336 Sebaceoma 6 84684 -NCIT:C7367 Hair Follicle Neoplasm 4 84685 -NCIT:C27520 Benign Hair Follicle Neoplasm 5 84686 -NCIT:C43315 Benign Outer Hair Sheath and Infundibulum Neoplasm 6 84687 -NCIT:C4113 Trichilemmoma 7 84688 -NCIT:C27521 Classic Type Trichilemmoma 8 84689 -NCIT:C27522 Desmoplastic Trichilemmoma 8 84690 -NCIT:C43325 Trichoadenoma 7 84691 -NCIT:C4468 Pilar Sheath Acanthoma 7 84692 -NCIT:C4469 Tumor of the Follicular Infundibulum 7 84693 -NCIT:C43319 Benign Germinative Follicular Epithelium Neoplasm 6 84694 -NCIT:C168592 Melanocytic Matricoma 7 84695 -NCIT:C27132 Trichoblastoma 7 84696 -NCIT:C27524 Desmoplastic Trichoepithelioma 8 84697 -NCIT:C40314 Vulvar Trichoepithelioma 8 84698 -NCIT:C4112 Trichofolliculoma 7 84699 -NCIT:C7368 Pilomatricoma 7 84700 -NCIT:C190279 Childhood Pilomatricoma 8 84701 -NCIT:C43322 Benign Mixed Epithelial and Mesenchymal Hair Follicle Neoplasm 6 84702 -NCIT:C43323 Benign Pilar-Associated Mesenchyme Neoplasm 6 84703 -NCIT:C27526 Follicular Myxoma 7 84704 -NCIT:C43331 Fibrofolliculoma 7 84705 -NCIT:C43332 Pilar Leiomyoma 7 84706 -NCIT:C43333 Spindle-Cell Predominant Trichodiscoma 7 84707 -NCIT:C4470 Perifollicular Fibroma 7 84708 -NCIT:C43310 Malignant Hair Follicle Neoplasm 5 84709 -NCIT:C43316 Malignant Outer Hair Sheath and Infundibulum Neoplasm 6 84710 -NCIT:C167381 Trichoblastic Carcinoma 7 84711 -NCIT:C167382 Trichoblastic Carcinosarcoma 7 84712 -NCIT:C43326 Trichilemmal Carcinoma 7 84713 -NCIT:C43327 Malignant Proliferating Pilar Tumor 7 84714 -NCIT:C43321 Malignant Germinative Follicular Epithelium Neoplasm 6 84715 -NCIT:C4114 Pilomatrical Carcinoma 7 84716 -NCIT:C43311 Germinative Follicular Epithelium Neoplasm 5 84717 -NCIT:C43319 Benign Germinative Follicular Epithelium Neoplasm 6 84718 -NCIT:C168592 Melanocytic Matricoma 7 84719 -NCIT:C27132 Trichoblastoma 7 84720 -NCIT:C27524 Desmoplastic Trichoepithelioma 8 84721 -NCIT:C40314 Vulvar Trichoepithelioma 8 84722 -NCIT:C4112 Trichofolliculoma 7 84723 -NCIT:C7368 Pilomatricoma 7 84724 -NCIT:C190279 Childhood Pilomatricoma 8 84725 -NCIT:C43321 Malignant Germinative Follicular Epithelium Neoplasm 6 84726 -NCIT:C4114 Pilomatrical Carcinoma 7 84727 -NCIT:C43312 Mixed Epithelial and Mesenchymal Hair Follicle Neoplasm 5 84728 -NCIT:C43322 Benign Mixed Epithelial and Mesenchymal Hair Follicle Neoplasm 6 84729 -NCIT:C43313 Pilar-Associated Mesenchyme Neoplasm 5 84730 -NCIT:C43323 Benign Pilar-Associated Mesenchyme Neoplasm 6 84731 -NCIT:C27526 Follicular Myxoma 7 84732 -NCIT:C43331 Fibrofolliculoma 7 84733 -NCIT:C43332 Pilar Leiomyoma 7 84734 -NCIT:C43333 Spindle-Cell Predominant Trichodiscoma 7 84735 -NCIT:C4470 Perifollicular Fibroma 7 84736 -NCIT:C43324 Outer Hair Sheath and Infundibulum Neoplasm 5 84737 -NCIT:C27125 Proliferating Trichilemmal Tumor 6 84738 -NCIT:C43315 Benign Outer Hair Sheath and Infundibulum Neoplasm 6 84739 -NCIT:C4113 Trichilemmoma 7 84740 -NCIT:C27521 Classic Type Trichilemmoma 8 84741 -NCIT:C27522 Desmoplastic Trichilemmoma 8 84742 -NCIT:C43325 Trichoadenoma 7 84743 -NCIT:C4468 Pilar Sheath Acanthoma 7 84744 -NCIT:C4469 Tumor of the Follicular Infundibulum 7 84745 -NCIT:C43316 Malignant Outer Hair Sheath and Infundibulum Neoplasm 6 84746 -NCIT:C167381 Trichoblastic Carcinoma 7 84747 -NCIT:C167382 Trichoblastic Carcinosarcoma 7 84748 -NCIT:C43326 Trichilemmal Carcinoma 7 84749 -NCIT:C43327 Malignant Proliferating Pilar Tumor 7 84750 -NCIT:C4475 Dermal Neoplasm 3 84751 -NCIT:C4370 Skin Lymphangioleiomyomatosis 4 84752 -NCIT:C4479 Cutaneous Neural Neoplasm 4 84753 -NCIT:C121680 Dermal Nerve Sheath Myxoma 5 84754 -NCIT:C128451 Cutaneous Neurofibroma 5 84755 -NCIT:C172621 Cutaneous Perineurioma 5 84756 -NCIT:C172624 Malignant Peripheral Nerve Sheath Tumor of the Skin 5 84757 -NCIT:C172625 Epithelioid Malignant Peripheral Nerve Sheath Tumor of the Skin 6 84758 -NCIT:C4481 Cutaneous Ganglioneuroma 5 84759 -NCIT:C5569 Cutaneous Schwannoma 5 84760 -NCIT:C5617 Cutaneous Granular Cell Tumor 5 84761 -NCIT:C5614 Malignant Cutaneous Granular Cell Tumor 6 84762 -NCIT:C4480 Skin Smooth Muscle Neoplasm 4 84763 -NCIT:C4482 Skin Leiomyoma 5 84764 -NCIT:C43332 Pilar Leiomyoma 6 84765 -NCIT:C4483 Dartoic Leiomyoma 6 84766 -NCIT:C4484 Atypical Intradermal Smooth Muscle Neoplasm 5 84767 -NCIT:C4491 Skin Glomus Tumor 4 84768 -NCIT:C36079 Subungual Glomus Tumor 5 84769 -NCIT:C6750 Skin Glomangioma 5 84770 -NCIT:C5345 Telangiectatic Glomangioma 6 84771 -NCIT:C4574 Malignant Dermal Neoplasm 4 84772 -NCIT:C172624 Malignant Peripheral Nerve Sheath Tumor of the Skin 5 84773 -NCIT:C172625 Epithelioid Malignant Peripheral Nerve Sheath Tumor of the Skin 6 84774 -NCIT:C27529 Malignant Skin Vascular Neoplasm 5 84775 -NCIT:C3550 Skin Kaposi Sarcoma 6 84776 -NCIT:C9112 Classic Kaposi Sarcoma 7 84777 -NCIT:C4489 Skin Angiosarcoma 6 84778 -NCIT:C153626 Recurrent Skin Angiosarcoma 7 84779 -NCIT:C27719 Skin Radiation-Related Angiosarcoma 7 84780 -NCIT:C40379 Angiosarcoma of the Skin of the Arm after Radical Mastectomy followed by Lymphedema 7 84781 -NCIT:C4490 Skin Lymphangiosarcoma 6 84782 -NCIT:C5585 Skin Sarcoma 5 84783 -NCIT:C172632 Skin Myxofibrosarcoma 6 84784 -NCIT:C172634 Skin Ewing Sarcoma 6 84785 -NCIT:C3550 Skin Kaposi Sarcoma 6 84786 -NCIT:C9112 Classic Kaposi Sarcoma 7 84787 -NCIT:C4489 Skin Angiosarcoma 6 84788 -NCIT:C153626 Recurrent Skin Angiosarcoma 7 84789 -NCIT:C27719 Skin Radiation-Related Angiosarcoma 7 84790 -NCIT:C40379 Angiosarcoma of the Skin of the Arm after Radical Mastectomy followed by Lymphedema 7 84791 -NCIT:C4490 Skin Lymphangiosarcoma 6 84792 -NCIT:C49025 Myxoinflammatory Fibroblastic Sarcoma 6 84793 -NCIT:C5576 Skin Undifferentiated Pleomorphic Sarcoma 6 84794 -NCIT:C5615 Skin Liposarcoma 6 84795 -NCIT:C170473 Skin Pleomorphic Liposarcoma 7 84796 -NCIT:C5614 Malignant Cutaneous Granular Cell Tumor 5 84797 -NCIT:C9231 Merkel Cell Carcinoma 5 84798 -NCIT:C115440 Recurrent Merkel Cell Carcinoma 6 84799 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 7 84800 -NCIT:C165740 Locally Recurrent Merkel Cell Carcinoma 7 84801 -NCIT:C128247 Vulvar Merkel Cell Carcinoma 6 84802 -NCIT:C136869 Merkel Cell Carcinoma by AJCC v7 Stage 6 84803 -NCIT:C85887 Stage 0 Merkel Cell Carcinoma AJCC v7 7 84804 -NCIT:C85889 Stage I Merkel Cell Carcinoma AJCC v7 7 84805 -NCIT:C85890 Stage IA Merkel Cell Carcinoma AJCC v7 8 84806 -NCIT:C85892 Stage IB Merkel Cell Carcinoma AJCC v7 8 84807 -NCIT:C85893 Stage II Merkel Cell Carcinoma AJCC v7 7 84808 -NCIT:C85894 Stage IIA Merkel Cell Carcinoma AJCC v7 8 84809 -NCIT:C85895 Stage IIB Merkel Cell Carcinoma AJCC v7 8 84810 -NCIT:C85896 Stage IIC Merkel Cell Carcinoma AJCC v7 8 84811 -NCIT:C85897 Stage III Merkel Cell Carcinoma AJCC v7 7 84812 -NCIT:C85898 Stage IIIA Merkel Cell Carcinoma AJCC v7 8 84813 -NCIT:C85899 Stage IIIB Merkel Cell Carcinoma AJCC v7 8 84814 -NCIT:C85900 Stage IV Merkel Cell Carcinoma AJCC v7 7 84815 -NCIT:C136870 Merkel Cell Carcinoma by AJCC v8 Stage 6 84816 -NCIT:C136871 Merkel Cell Carcinoma by AJCC v8 Clinical Stage 7 84817 -NCIT:C136872 Clinical Stage 0 Merkel Cell Carcinoma AJCC v8 8 84818 -NCIT:C136873 Clinical Stage I Merkel Cell Carcinoma AJCC v8 8 84819 -NCIT:C136874 Clinical Stage II Merkel Cell Carcinoma AJCC v8 8 84820 -NCIT:C136875 Clinical Stage IIA Merkel Cell Carcinoma AJCC v8 9 84821 -NCIT:C136876 Clinical Stage IIB Merkel Cell Carcinoma AJCC v8 9 84822 -NCIT:C136877 Clinical Stage III Merkel Cell Carcinoma AJCC v8 8 84823 -NCIT:C136878 Clinical Stage IV Merkel Cell Carcinoma AJCC v8 8 84824 -NCIT:C136880 Merkel Cell Carcinoma by AJCC v8 Pathologic Stage 7 84825 -NCIT:C136881 Pathologic Stage 0 Merkel Cell Carcinoma AJCC v8 8 84826 -NCIT:C136882 Pathologic Stage I Merkel Cell Carcinoma AJCC v8 8 84827 -NCIT:C136883 Pathologic Stage II Merkel Cell Carcinoma AJCC v8 8 84828 -NCIT:C136884 Pathologic Stage IIA Merkel Cell Carcinoma AJCC v8 9 84829 -NCIT:C136885 Pathologic Stage IIB Merkel Cell Carcinoma AJCC v8 9 84830 -NCIT:C136886 Pathologic Stage III Merkel Cell Carcinoma AJCC v8 8 84831 -NCIT:C136887 Pathologic Stage IIIA Merkel Cell Carcinoma AJCC v8 9 84832 -NCIT:C136888 Pathologic Stage IIIB Merkel Cell Carcinoma AJCC v8 9 84833 -NCIT:C136889 Pathologic Stage IV Merkel Cell Carcinoma AJCC v8 8 84834 -NCIT:C162572 Metastatic Merkel Cell Carcinoma 6 84835 -NCIT:C165300 Advanced Merkel Cell Carcinoma 7 84836 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 7 84837 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 7 84838 -NCIT:C162786 Unresectable Merkel Cell Carcinoma 6 84839 -NCIT:C165741 Refractory Merkel Cell Carcinoma 6 84840 -NCIT:C4634 Skin Fibroblastic Neoplasm 4 84841 -NCIT:C172632 Skin Myxofibrosarcoma 5 84842 -NCIT:C4683 Dermatofibrosarcoma Protuberans 5 84843 -NCIT:C177325 Plaque-Like Dermatofibrosarcoma Protuberans 6 84844 -NCIT:C38105 Dermatofibrosarcoma Protuberans with Myoid Differentiation 6 84845 -NCIT:C38106 Myxoid Dermatofibrosarcoma Protuberans 6 84846 -NCIT:C38107 Dedifferentiated Dermatofibrosarcoma Protuberans 6 84847 -NCIT:C27547 Fibrosarcomatous Dermatofibrosarcoma Protuberans 7 84848 -NCIT:C38108 Dermatofibrosarcoma Protuberans with Giant Cell Fibroblastoma-Like Differentiation 6 84849 -NCIT:C9430 Pigmented Dermatofibrosarcoma Protuberans 6 84850 -NCIT:C4700 Giant Cell Fibroblastoma 5 84851 -NCIT:C49025 Myxoinflammatory Fibroblastic Sarcoma 5 84852 -NCIT:C6806 Benign Skin Fibroblastic Neoplasm 5 84853 -NCIT:C170888 Dermatomyofibroma 6 84854 -NCIT:C3942 Fibrous Hamartoma of Infancy 6 84855 -NCIT:C48961 Subcutaneous Nodular Fasciitis 6 84856 -NCIT:C6484 Dermal Fibroma 6 84857 -NCIT:C170889 Plaque-Like CD34-Positive Dermal Fibroma 7 84858 -NCIT:C4470 Perifollicular Fibroma 7 84859 -NCIT:C6486 Nuchal-Type Fibroma 7 84860 -NCIT:C5277 Primary Cutaneous Meningioma 4 84861 -NCIT:C5354 Skin Vascular Neoplasm 4 84862 -NCIT:C27127 Benign Skin Vascular Neoplasm 5 84863 -NCIT:C27509 Skin Lymphangioma 6 84864 -NCIT:C162592 Penile Lymphangioma 7 84865 -NCIT:C4905 Skin Hemangioma 6 84866 -NCIT:C162579 Penile Hemangioma 7 84867 -NCIT:C162580 Penile Epithelioid Hemangioma 8 84868 -NCIT:C34967 Lobular Capillary Hemangioma of Skin and Subcutaneous Tissue 7 84869 -NCIT:C3926 Angioma Serpiginosum 7 84870 -NCIT:C4299 Verrucous Hemangioma 7 84871 -NCIT:C4390 Cherry Hemangioma 7 84872 -NCIT:C4372 Cherry Hemangioma of Lip 8 84873 -NCIT:C4487 Tufted Angioma 7 84874 -NCIT:C4750 Skin Cavernous Hemangioma 7 84875 -NCIT:C6387 Scrotal Hemangioma 7 84876 -NCIT:C7393 Skin Epithelioid Hemangioma 7 84877 -NCIT:C162580 Penile Epithelioid Hemangioma 8 84878 -NCIT:C27529 Malignant Skin Vascular Neoplasm 5 84879 -NCIT:C3550 Skin Kaposi Sarcoma 6 84880 -NCIT:C9112 Classic Kaposi Sarcoma 7 84881 -NCIT:C4489 Skin Angiosarcoma 6 84882 -NCIT:C153626 Recurrent Skin Angiosarcoma 7 84883 -NCIT:C27719 Skin Radiation-Related Angiosarcoma 7 84884 -NCIT:C40379 Angiosarcoma of the Skin of the Arm after Radical Mastectomy followed by Lymphedema 7 84885 -NCIT:C4490 Skin Lymphangiosarcoma 6 84886 -NCIT:C4494 Skin Hemangioendothelioma 5 84887 -NCIT:C5566 Skin Lipomatous Neoplasm 4 84888 -NCIT:C170472 Skin Atypical Lipomatous Tumor/Well Differentiated Liposarcoma 5 84889 -NCIT:C4616 Skin Lipoma 5 84890 -NCIT:C170474 Skin Spindle Cell/Pleomorphic Lipoma 6 84891 -NCIT:C170475 Skin Spindle Cell Lipoma 7 84892 -NCIT:C170476 Skin Pleomorphic Lipoma 7 84893 -NCIT:C170478 Skin Angiolipoma 6 84894 -NCIT:C5615 Skin Liposarcoma 5 84895 -NCIT:C170473 Skin Pleomorphic Liposarcoma 6 84896 -NCIT:C7158 Benign Dermal Neoplasm 4 84897 -NCIT:C121680 Dermal Nerve Sheath Myxoma 5 84898 -NCIT:C128451 Cutaneous Neurofibroma 5 84899 -NCIT:C27127 Benign Skin Vascular Neoplasm 5 84900 -NCIT:C27509 Skin Lymphangioma 6 84901 -NCIT:C162592 Penile Lymphangioma 7 84902 -NCIT:C4905 Skin Hemangioma 6 84903 -NCIT:C162579 Penile Hemangioma 7 84904 -NCIT:C162580 Penile Epithelioid Hemangioma 8 84905 -NCIT:C34967 Lobular Capillary Hemangioma of Skin and Subcutaneous Tissue 7 84906 -NCIT:C3926 Angioma Serpiginosum 7 84907 -NCIT:C4299 Verrucous Hemangioma 7 84908 -NCIT:C4390 Cherry Hemangioma 7 84909 -NCIT:C4372 Cherry Hemangioma of Lip 8 84910 -NCIT:C4487 Tufted Angioma 7 84911 -NCIT:C4750 Skin Cavernous Hemangioma 7 84912 -NCIT:C6387 Scrotal Hemangioma 7 84913 -NCIT:C7393 Skin Epithelioid Hemangioma 7 84914 -NCIT:C162580 Penile Epithelioid Hemangioma 8 84915 -NCIT:C37258 Paraganglioma-Like Dermal Melanocytic Tumor 5 84916 -NCIT:C4482 Skin Leiomyoma 5 84917 -NCIT:C43332 Pilar Leiomyoma 6 84918 -NCIT:C4483 Dartoic Leiomyoma 6 84919 -NCIT:C4616 Skin Lipoma 5 84920 -NCIT:C170474 Skin Spindle Cell/Pleomorphic Lipoma 6 84921 -NCIT:C170475 Skin Spindle Cell Lipoma 7 84922 -NCIT:C170476 Skin Pleomorphic Lipoma 7 84923 -NCIT:C170478 Skin Angiolipoma 6 84924 -NCIT:C5569 Cutaneous Schwannoma 5 84925 -NCIT:C6578 Skin Myxoma 5 84926 -NCIT:C27526 Follicular Myxoma 6 84927 -NCIT:C6806 Benign Skin Fibroblastic Neoplasm 5 84928 -NCIT:C170888 Dermatomyofibroma 6 84929 -NCIT:C3942 Fibrous Hamartoma of Infancy 6 84930 -NCIT:C48961 Subcutaneous Nodular Fasciitis 6 84931 -NCIT:C6484 Dermal Fibroma 6 84932 -NCIT:C170889 Plaque-Like CD34-Positive Dermal Fibroma 7 84933 -NCIT:C4470 Perifollicular Fibroma 7 84934 -NCIT:C6486 Nuchal-Type Fibroma 7 84935 -NCIT:C7343 Benign Skin Fibrohistiocytic Neoplasm 5 84936 -NCIT:C6801 Skin Fibrous Histiocytoma 6 84937 -NCIT:C49076 Skin Fibrous Histiocytoma, Fibroblastic Variant 7 84938 -NCIT:C49077 Skin Fibrous Histiocytoma, Histiocytic Variant 7 84939 -NCIT:C49078 Skin Fibrous Histiocytoma, Cellular Variant 7 84940 -NCIT:C49079 Skin Fibrous Histiocytoma, Epithelioid Variant 7 84941 -NCIT:C7749 Skin Fibrohistiocytic Neoplasm 4 84942 -NCIT:C7343 Benign Skin Fibrohistiocytic Neoplasm 5 84943 -NCIT:C6801 Skin Fibrous Histiocytoma 6 84944 -NCIT:C49076 Skin Fibrous Histiocytoma, Fibroblastic Variant 7 84945 -NCIT:C49077 Skin Fibrous Histiocytoma, Histiocytic Variant 7 84946 -NCIT:C49078 Skin Fibrous Histiocytoma, Cellular Variant 7 84947 -NCIT:C49079 Skin Fibrous Histiocytoma, Epithelioid Variant 7 84948 -NCIT:C7344 Skin Intermediate Fibrohistiocytic Neoplasm 5 84949 -NCIT:C6493 Plexiform Fibrohistiocytic Tumor 6 84950 -NCIT:C188975 Childhood Plexiform Fibrohistiocytic Tumor 7 84951 -NCIT:C6721 Chest Wall Plexiform Fibrohistiocytic Tumor 7 84952 -NCIT:C45240 Cutaneous Hematopoietic and Lymphoid Cell Neoplasm 3 84953 -NCIT:C168980 Cutaneous Histiocytic and Dendritic Cell Neoplasm 4 84954 -NCIT:C168983 Cutaneous Langerhans Cell Histiocytosis 5 84955 -NCIT:C168984 Cutaneous Indeterminate Dendritic Cell Tumor 5 84956 -NCIT:C168991 Cutaneous Erdheim-Chester Disease 5 84957 -NCIT:C27514 Adult Xanthogranuloma 5 84958 -NCIT:C3451 Juvenile Xanthogranuloma 5 84959 -NCIT:C171101 Cutaneous Lymphoma 4 84960 -NCIT:C168651 Cutaneous Burkitt Lymphoma 5 84961 -NCIT:C45266 Cutaneous Mantle Cell Lymphoma 5 84962 -NCIT:C45268 Cutaneous Nasal Type Extranodal NK/T-Cell Lymphoma 5 84963 -NCIT:C45271 Cutaneous Angioimmunoblastic T-Cell Lymphoma 5 84964 -NCIT:C45272 Cutaneous Adult T-Cell Leukemia/Lymphoma 5 84965 -NCIT:C7162 Primary Cutaneous Lymphoma 5 84966 -NCIT:C142876 Recurrent Primary Cutaneous Lymphoma 6 84967 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 7 84968 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 7 84969 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 8 84970 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 8 84971 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 8 84972 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 8 84973 -NCIT:C8686 Recurrent Mycosis Fungoides 8 84974 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 9 84975 -NCIT:C142877 Refractory Primary Cutaneous Lymphoma 6 84976 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 7 84977 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 7 84978 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 8 84979 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 8 84980 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 8 84981 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 8 84982 -NCIT:C8687 Refractory Mycosis Fungoides 8 84983 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 9 84984 -NCIT:C188114 Primary Cutaneous Non-Hodgkin Lymphoma 6 84985 -NCIT:C3467 Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 7 84986 -NCIT:C172442 Advanced Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 84987 -NCIT:C180374 Early Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 84988 -NCIT:C3246 Mycosis Fungoides 8 84989 -NCIT:C141143 Mycosis Fungoides by AJCC v7 Stage 9 84990 -NCIT:C7796 Stage I Mycosis Fungoides AJCC v7 10 84991 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 11 84992 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 11 84993 -NCIT:C7798 Stage II Mycosis Fungoides AJCC v7 10 84994 -NCIT:C7800 Stage III Mycosis Fungoides AJCC v7 10 84995 -NCIT:C7802 Stage IV Mycosis Fungoides AJCC v7 10 84996 -NCIT:C165783 Transformed Mycosis Fungoides 9 84997 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 84998 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 84999 -NCIT:C8686 Recurrent Mycosis Fungoides 9 85000 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 85001 -NCIT:C8687 Refractory Mycosis Fungoides 9 85002 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 85003 -NCIT:C39644 Mycosis Fungoides Variant 8 85004 -NCIT:C35464 Granulomatous Slack Skin Disease 9 85005 -NCIT:C35685 Folliculotropic Mycosis Fungoides 9 85006 -NCIT:C35794 Pagetoid Reticulosis 9 85007 -NCIT:C45332 Primary Cutaneous Peripheral T-Cell Lymphoma, Rare Subtype 8 85008 -NCIT:C139023 Primary Cutaneous Acral CD8-Positive T-Cell Lymphoma 9 85009 -NCIT:C45339 Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 85010 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 85011 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 85012 -NCIT:C45340 Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 85013 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 85014 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 85015 -NCIT:C6860 Primary Cutaneous Anaplastic Large Cell Lymphoma 8 85016 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 85017 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 85018 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 9 85019 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 9 85020 -NCIT:C6918 Subcutaneous Panniculitis-Like T-Cell Lymphoma 8 85021 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 85022 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 85023 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 85024 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 85025 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 85026 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 85027 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 85028 -NCIT:C8686 Recurrent Mycosis Fungoides 9 85029 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 85030 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 85031 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 85032 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 85033 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 85034 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 85035 -NCIT:C8687 Refractory Mycosis Fungoides 9 85036 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 85037 -NCIT:C6858 Primary Cutaneous B-Cell Non-Hodgkin Lymphoma 7 85038 -NCIT:C45193 Primary Cutaneous Diffuse Large B-Cell Lymphoma 8 85039 -NCIT:C45194 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 85040 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 85041 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 85042 -NCIT:C45213 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Other 9 85043 -NCIT:C45214 Primary Cutaneous Intravascular Large B-Cell Lymphoma 10 85044 -NCIT:C45215 Primary Cutaneous T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 10 85045 -NCIT:C45216 Primary Cutaneous Plasmablastic Lymphoma 10 85046 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 8 85047 -NCIT:C7230 Primary Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 85048 -NCIT:C45163 Borrelia Burgdoferi-Associated Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 85049 -NCIT:C7221 Primary Cutaneous Hodgkin Lymphoma 6 85050 -NCIT:C7218 Cutaneous Follicular Lymphoma 5 85051 -NCIT:C6859 Grade 3 Cutaneous Follicular Lymphoma 6 85052 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 6 85053 -NCIT:C7219 Grade 2 Cutaneous Follicular Lymphoma 6 85054 -NCIT:C7220 Grade 1 Cutaneous Follicular Lymphoma 6 85055 -NCIT:C45238 Cutaneous Precursor Lymphoid Neoplasm 4 85056 -NCIT:C45241 Cutaneous B Lymphoblastic Leukemia/Lymphoma 5 85057 -NCIT:C45242 Cutaneous T Lymphoblastic Leukemia/Lymphoma 5 85058 -NCIT:C5631 Aleukemic Acute Lymphoblastic Leukemia Cutis 5 85059 -NCIT:C45249 Cutaneous Mature B-Cell Neoplasm 4 85060 -NCIT:C168651 Cutaneous Burkitt Lymphoma 5 85061 -NCIT:C185044 Cutaneous Plasmacytoma 5 85062 -NCIT:C185155 Extramedullary Disease in Plasma Cell Myeloma Involving the Skin 5 85063 -NCIT:C45264 Cutaneous Chronic Lymphocytic Leukemia 5 85064 -NCIT:C45266 Cutaneous Mantle Cell Lymphoma 5 85065 -NCIT:C45267 Cutaneous Lymphomatoid Granulomatosis 5 85066 -NCIT:C6858 Primary Cutaneous B-Cell Non-Hodgkin Lymphoma 5 85067 -NCIT:C45193 Primary Cutaneous Diffuse Large B-Cell Lymphoma 6 85068 -NCIT:C45194 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 7 85069 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 8 85070 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 8 85071 -NCIT:C45213 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Other 7 85072 -NCIT:C45214 Primary Cutaneous Intravascular Large B-Cell Lymphoma 8 85073 -NCIT:C45215 Primary Cutaneous T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 8 85074 -NCIT:C45216 Primary Cutaneous Plasmablastic Lymphoma 8 85075 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 6 85076 -NCIT:C7230 Primary Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 6 85077 -NCIT:C45163 Borrelia Burgdoferi-Associated Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 7 85078 -NCIT:C7218 Cutaneous Follicular Lymphoma 5 85079 -NCIT:C6859 Grade 3 Cutaneous Follicular Lymphoma 6 85080 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 6 85081 -NCIT:C7219 Grade 2 Cutaneous Follicular Lymphoma 6 85082 -NCIT:C7220 Grade 1 Cutaneous Follicular Lymphoma 6 85083 -NCIT:C45250 Cutaneous Mature T-Cell and NK-Cell Neoplasm 4 85084 -NCIT:C3467 Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 5 85085 -NCIT:C172442 Advanced Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 6 85086 -NCIT:C180374 Early Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 6 85087 -NCIT:C3246 Mycosis Fungoides 6 85088 -NCIT:C141143 Mycosis Fungoides by AJCC v7 Stage 7 85089 -NCIT:C7796 Stage I Mycosis Fungoides AJCC v7 8 85090 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 9 85091 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 9 85092 -NCIT:C7798 Stage II Mycosis Fungoides AJCC v7 8 85093 -NCIT:C7800 Stage III Mycosis Fungoides AJCC v7 8 85094 -NCIT:C7802 Stage IV Mycosis Fungoides AJCC v7 8 85095 -NCIT:C165783 Transformed Mycosis Fungoides 7 85096 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 8 85097 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 8 85098 -NCIT:C8686 Recurrent Mycosis Fungoides 7 85099 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 8 85100 -NCIT:C8687 Refractory Mycosis Fungoides 7 85101 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 8 85102 -NCIT:C39644 Mycosis Fungoides Variant 6 85103 -NCIT:C35464 Granulomatous Slack Skin Disease 7 85104 -NCIT:C35685 Folliculotropic Mycosis Fungoides 7 85105 -NCIT:C35794 Pagetoid Reticulosis 7 85106 -NCIT:C45332 Primary Cutaneous Peripheral T-Cell Lymphoma, Rare Subtype 6 85107 -NCIT:C139023 Primary Cutaneous Acral CD8-Positive T-Cell Lymphoma 7 85108 -NCIT:C45339 Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 7 85109 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 8 85110 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 8 85111 -NCIT:C45340 Primary Cutaneous Gamma-Delta T-Cell Lymphoma 7 85112 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 8 85113 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 8 85114 -NCIT:C6860 Primary Cutaneous Anaplastic Large Cell Lymphoma 6 85115 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 7 85116 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 7 85117 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 7 85118 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 7 85119 -NCIT:C6918 Subcutaneous Panniculitis-Like T-Cell Lymphoma 6 85120 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 7 85121 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 7 85122 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 6 85123 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 7 85124 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 7 85125 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 7 85126 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 7 85127 -NCIT:C8686 Recurrent Mycosis Fungoides 7 85128 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 8 85129 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 6 85130 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 7 85131 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 7 85132 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 7 85133 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 7 85134 -NCIT:C8687 Refractory Mycosis Fungoides 7 85135 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 8 85136 -NCIT:C3721 Lymphomatoid Papulosis 5 85137 -NCIT:C139014 Type D Lymphomatoid Papulosis 6 85138 -NCIT:C139015 Type E Lymphomatoid Papulosis 6 85139 -NCIT:C139017 Lymphomatoid Papulosis with DUSP22-IRF4 Gene Rearrangement 6 85140 -NCIT:C7197 Type A Lymphomatoid Papulosis 6 85141 -NCIT:C7198 Type B Lymphomatoid Papulosis 6 85142 -NCIT:C7199 Type C Lymphomatoid Papulosis 6 85143 -NCIT:C45268 Cutaneous Nasal Type Extranodal NK/T-Cell Lymphoma 5 85144 -NCIT:C45271 Cutaneous Angioimmunoblastic T-Cell Lymphoma 5 85145 -NCIT:C45272 Cutaneous Adult T-Cell Leukemia/Lymphoma 5 85146 -NCIT:C45366 Primary Cutaneous CD4-Positive Small/Medium T-Cell Lymphoproliferative Disorder 5 85147 -NCIT:C7195 Primary Cutaneous CD30-Positive T-Cell Lymphoproliferative Disorder 5 85148 -NCIT:C6860 Primary Cutaneous Anaplastic Large Cell Lymphoma 6 85149 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 7 85150 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 7 85151 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 7 85152 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 7 85153 -NCIT:C7196 Borderline Primary Cutaneous CD30-Positive T-Cell Lymphoproliferative Disorder 6 85154 -NCIT:C7199 Type C Lymphomatoid Papulosis 7 85155 -NCIT:C7200 Anaplastic Large Cell Lymphoma, Lymphomatoid Papulosis-Like Histology 7 85156 -NCIT:C7197 Type A Lymphomatoid Papulosis 6 85157 -NCIT:C7137 Cutaneous Mastocytosis 4 85158 -NCIT:C43277 Pure Cutaneous Mastocytosis 5 85159 -NCIT:C3218 Diffuse Cutaneous Mastocytosis 6 85160 -NCIT:C3433 Urticaria Pigmentosa/Maculopapular Cutaneous Mastocytosis 6 85161 -NCIT:C7138 Solitary Mastocytoma of the Skin 6 85162 -NCIT:C7203 Blastic Plasmacytoid Dendritic Cell Neoplasm 4 85163 -NCIT:C156103 Recurrent Blastic Plasmacytoid Dendritic Cell Neoplasm 5 85164 -NCIT:C156104 Refractory Blastic Plasmacytoid Dendritic Cell Neoplasm 5 85165 -NCIT:C88156 Leukemia Cutis 4 85166 -NCIT:C45264 Cutaneous Chronic Lymphocytic Leukemia 5 85167 -NCIT:C4983 Aleukemic Leukemia Cutis 5 85168 -NCIT:C5630 Aleukemic Monocytic Leukemia Cutis 6 85169 -NCIT:C5631 Aleukemic Acute Lymphoblastic Leukemia Cutis 6 85170 -NCIT:C7161 Skin Melanocytic Neoplasm 3 85171 -NCIT:C136825 Atypical Spitz Nevus 4 85172 -NCIT:C165498 Pigmented Epithelioid Melanocytoma 4 85173 -NCIT:C165522 BAP1-Inactivated Skin Melanocytic Neoplasm 4 85174 -NCIT:C165523 Combined BAP1-Inactivated Nevus 5 85175 -NCIT:C165525 BAP1-Inactivated Melanocytoma 5 85176 -NCIT:C3510 Cutaneous Melanoma 4 85177 -NCIT:C137645 Cutaneous Melanoma by AJCC v8 Stage 5 85178 -NCIT:C137646 Cutaneous Melanoma by AJCC v8 Clinical Stage 6 85179 -NCIT:C137647 Clinical Stage 0 Cutaneous Melanoma AJCC v8 7 85180 -NCIT:C137648 Clinical Stage I Cutaneous Melanoma AJCC v8 7 85181 -NCIT:C137649 Clinical Stage IA Cutaneous Melanoma AJCC v8 8 85182 -NCIT:C137650 Clinical Stage IB Cutaneous Melanoma AJCC v8 8 85183 -NCIT:C137651 Clinical Stage II Cutaneous Melanoma AJCC v8 7 85184 -NCIT:C137652 Clinical Stage IIA Cutaneous Melanoma AJCC v8 8 85185 -NCIT:C137653 Clinical Stage IIB Cutaneous Melanoma AJCC v8 8 85186 -NCIT:C137654 Clinical Stage IIC Cutaneous Melanoma AJCC v8 8 85187 -NCIT:C137655 Clinical Stage III Cutaneous Melanoma AJCC v8 7 85188 -NCIT:C137656 Clinical Stage IV Cutaneous Melanoma AJCC v8 7 85189 -NCIT:C137657 Cutaneous Melanoma by AJCC v8 Pathologic Stage 6 85190 -NCIT:C137662 Pathologic Stage 0 Cutaneous Melanoma AJCC v8 7 85191 -NCIT:C137663 Pathologic Stage I Cutaneous Melanoma AJCC v8 7 85192 -NCIT:C137664 Pathologic Stage IA Cutaneous Melanoma AJCC v8 8 85193 -NCIT:C137665 Pathologic Stage IB Cutaneous Melanoma AJCC v8 8 85194 -NCIT:C137666 Pathologic Stage II Cutaneous Melanoma AJCC v8 7 85195 -NCIT:C137667 Pathologic Stage IIA Cutaneous Melanoma AJCC v8 8 85196 -NCIT:C137668 Pathologic Stage IIB Cutaneous Melanoma AJCC v8 8 85197 -NCIT:C137669 Pathologic Stage IIC Cutaneous Melanoma AJCC v8 8 85198 -NCIT:C137670 Pathologic Stage III Cutaneous Melanoma AJCC v8 7 85199 -NCIT:C137671 Pathologic Stage IIIA Cutaneous Melanoma AJCC v8 8 85200 -NCIT:C137672 Pathologic Stage IIIB Cutaneous Melanoma AJCC v8 8 85201 -NCIT:C137673 Pathologic Stage IIIC Cutaneous Melanoma AJCC v8 8 85202 -NCIT:C137675 Pathologic Stage IIID Cutaneous Melanoma AJCC v8 8 85203 -NCIT:C137677 Pathologic Stage IV Cutaneous Melanoma AJCC v8 7 85204 -NCIT:C148245 Unresectable Cutaneous Melanoma 5 85205 -NCIT:C165535 Unresectable Acral Lentiginous Melanoma 6 85206 -NCIT:C150544 Refractory Cutaneous Melanoma 5 85207 -NCIT:C155305 Cutaneous Melanoma of the Extremity 5 85208 -NCIT:C155306 Recurrent Cutaneous Melanoma of the Extremity 6 85209 -NCIT:C175435 Recurrent Acral Lentiginous Melanoma 7 85210 -NCIT:C155311 Advanced Cutaneous Melanoma of the Extremity 6 85211 -NCIT:C4022 Acral Lentiginous Melanoma 6 85212 -NCIT:C165535 Unresectable Acral Lentiginous Melanoma 7 85213 -NCIT:C175435 Recurrent Acral Lentiginous Melanoma 7 85214 -NCIT:C179427 Metastatic Acral Lentiginous Melanoma 7 85215 -NCIT:C8781 Stage I Acral Lentiginous Melanoma AJCC v7 7 85216 -NCIT:C8782 Stage II Acral Lentiginous Melanoma AJCC v6 and v7 7 85217 -NCIT:C8783 Stage III Acral Lentiginous Melanoma AJCC v7 7 85218 -NCIT:C8784 Stage IV Acral Lentiginous Melanoma AJCC v6 and v7 7 85219 -NCIT:C156072 Metastatic Cutaneous Melanoma 5 85220 -NCIT:C171285 Locally Advanced Cutaneous Melanoma 6 85221 -NCIT:C171572 Advanced Cutaneous Melanoma 6 85222 -NCIT:C155311 Advanced Cutaneous Melanoma of the Extremity 7 85223 -NCIT:C179427 Metastatic Acral Lentiginous Melanoma 6 85224 -NCIT:C165497 Spitz Melanoma 5 85225 -NCIT:C165659 High-CSD Melanoma 5 85226 -NCIT:C37257 Desmoplastic Melanoma 6 85227 -NCIT:C48614 Desmoplastic Neurotropic Melanoma 7 85228 -NCIT:C9151 Lentigo Maligna Melanoma 6 85229 -NCIT:C8785 Recurrent Lentigo Maligna Melanoma 7 85230 -NCIT:C8786 Stage I Lentigo Maligna Melanoma AJCC v7 7 85231 -NCIT:C8787 Stage II Lentigo Maligna Melanoma AJCC v6 and v7 7 85232 -NCIT:C8788 Stage III Lentigo Maligna Melanoma AJCC v7 7 85233 -NCIT:C8789 Stage IV Lentigo Maligna Melanoma AJCC v6 and v7 7 85234 -NCIT:C178518 Penile Cutaneous Melanoma 5 85235 -NCIT:C190240 Resectable Cutaneous Melanoma 5 85236 -NCIT:C190280 Childhood Cutaneous Melanoma 5 85237 -NCIT:C27919 Old Burn Scar-Related Cutaneous Melanoma 5 85238 -NCIT:C27920 Solar Radiation-Related Cutaneous Melanoma 5 85239 -NCIT:C4225 Cutaneous Nodular Melanoma 5 85240 -NCIT:C4227 Balloon Cell Melanoma 5 85241 -NCIT:C4232 Melanoma in Junctional Nevus 5 85242 -NCIT:C4240 Melanoma Arising from Blue Nevus 5 85243 -NCIT:C4633 Amelanotic Cutaneous Melanoma 5 85244 -NCIT:C48607 Invasive Cutaneous Melanoma 5 85245 -NCIT:C48612 Minimal Deviation Melanoma 5 85246 -NCIT:C48613 Melanoma in Congenital Melanocytic Nevus 5 85247 -NCIT:C4235 Melanoma Arising in Giant Congenital Nevus 6 85248 -NCIT:C54662 Nevoid Melanoma 5 85249 -NCIT:C54663 Signet Ring Melanoma 5 85250 -NCIT:C66753 Malignant Melanoma in Precancerous Melanosis 5 85251 -NCIT:C7089 Regressing Cutaneous Melanoma 5 85252 -NCIT:C7361 Scrotal Melanoma 5 85253 -NCIT:C8498 Hereditary Melanoma 5 85254 -NCIT:C128801 Cutaneous Malignant Melanoma 2 6 85255 -NCIT:C90514 Cutaneous Melanoma by AJCC v6 Stage 5 85256 -NCIT:C7916 Stage I Cutaneous Melanoma AJCC v6 6 85257 -NCIT:C7917 Stage II Cutaneous Melanoma AJCC v6 and v7 6 85258 -NCIT:C27742 Stage IIB Cutaneous Melanoma AJCC v6 and v7 7 85259 -NCIT:C86033 Stage IIA Cutaneous Melanoma AJCC v6 and v7 7 85260 -NCIT:C86034 Stage IIC Cutaneous Melanoma AJCC v6 and v7 7 85261 -NCIT:C8782 Stage II Acral Lentiginous Melanoma AJCC v6 and v7 7 85262 -NCIT:C8787 Stage II Lentigo Maligna Melanoma AJCC v6 and v7 7 85263 -NCIT:C8791 Stage II Low-CSD Melanoma AJCC v7 7 85264 -NCIT:C7918 Stage III Cutaneous Melanoma AJCC v6 6 85265 -NCIT:C8423 Stage 0 Cutaneous Melanoma AJCC v6 and v7 6 85266 -NCIT:C43372 Lentigo Maligna 7 85267 -NCIT:C9096 Stage IV Cutaneous Melanoma AJCC v6 and v7 6 85268 -NCIT:C8784 Stage IV Acral Lentiginous Melanoma AJCC v6 and v7 7 85269 -NCIT:C8789 Stage IV Lentigo Maligna Melanoma AJCC v6 and v7 7 85270 -NCIT:C8793 Stage IV Low-CSD Melanoma AJCC v7 7 85271 -NCIT:C9097 Recurrent Cutaneous Melanoma 5 85272 -NCIT:C155306 Recurrent Cutaneous Melanoma of the Extremity 6 85273 -NCIT:C175435 Recurrent Acral Lentiginous Melanoma 7 85274 -NCIT:C8785 Recurrent Lentigo Maligna Melanoma 6 85275 -NCIT:C91231 Cutaneous Melanoma by AJCC v7 Stage 5 85276 -NCIT:C7917 Stage II Cutaneous Melanoma AJCC v6 and v7 6 85277 -NCIT:C27742 Stage IIB Cutaneous Melanoma AJCC v6 and v7 7 85278 -NCIT:C86033 Stage IIA Cutaneous Melanoma AJCC v6 and v7 7 85279 -NCIT:C86034 Stage IIC Cutaneous Melanoma AJCC v6 and v7 7 85280 -NCIT:C8782 Stage II Acral Lentiginous Melanoma AJCC v6 and v7 7 85281 -NCIT:C8787 Stage II Lentigo Maligna Melanoma AJCC v6 and v7 7 85282 -NCIT:C8791 Stage II Low-CSD Melanoma AJCC v7 7 85283 -NCIT:C8423 Stage 0 Cutaneous Melanoma AJCC v6 and v7 6 85284 -NCIT:C43372 Lentigo Maligna 7 85285 -NCIT:C88414 Stage I Cutaneous Melanoma AJCC v7 6 85286 -NCIT:C86026 Stage IA Cutaneous Melanoma AJCC v7 7 85287 -NCIT:C86030 Stage IB Cutaneous Melanoma AJCC v7 7 85288 -NCIT:C8781 Stage I Acral Lentiginous Melanoma AJCC v7 7 85289 -NCIT:C8786 Stage I Lentigo Maligna Melanoma AJCC v7 7 85290 -NCIT:C8790 Stage I Low-CSD Melanoma AJCC v7 7 85291 -NCIT:C88415 Stage III Cutaneous Melanoma AJCC v7 6 85292 -NCIT:C86049 Stage IIIA Cutaneous Melanoma AJCC v7 7 85293 -NCIT:C86051 Stage IIIB Cutaneous Melanoma AJCC v7 7 85294 -NCIT:C86053 Stage IIIC Cutaneous Melanoma AJCC v7 7 85295 -NCIT:C8783 Stage III Acral Lentiginous Melanoma AJCC v7 7 85296 -NCIT:C8788 Stage III Lentigo Maligna Melanoma AJCC v7 7 85297 -NCIT:C8792 Stage III Low-CSD Melanoma AJCC v7 7 85298 -NCIT:C9096 Stage IV Cutaneous Melanoma AJCC v6 and v7 6 85299 -NCIT:C8784 Stage IV Acral Lentiginous Melanoma AJCC v6 and v7 7 85300 -NCIT:C8789 Stage IV Lentigo Maligna Melanoma AJCC v6 and v7 7 85301 -NCIT:C8793 Stage IV Low-CSD Melanoma AJCC v7 7 85302 -NCIT:C9152 Low-CSD Melanoma 5 85303 -NCIT:C8790 Stage I Low-CSD Melanoma AJCC v7 6 85304 -NCIT:C8791 Stage II Low-CSD Melanoma AJCC v7 6 85305 -NCIT:C8792 Stage III Low-CSD Melanoma AJCC v7 6 85306 -NCIT:C8793 Stage IV Low-CSD Melanoma AJCC v7 6 85307 -NCIT:C3694 Dysplastic Nevus 4 85308 -NCIT:C40334 Vulvar Dysplastic Melanocytic Nevus 5 85309 -NCIT:C37258 Paraganglioma-Like Dermal Melanocytic Tumor 4 85310 -NCIT:C7571 Benign Skin Melanocytic Nevus 4 85311 -NCIT:C165529 Combined Nevus 5 85312 -NCIT:C165523 Combined BAP1-Inactivated Nevus 6 85313 -NCIT:C190284 Childhood Benign Skin Melanocytic Nevus 5 85314 -NCIT:C190281 Childhood Pigmented Spindle Cell Nevus 6 85315 -NCIT:C190282 Childhood Spitz Nevus 6 85316 -NCIT:C190283 Childhood Blue Nevus 6 85317 -NCIT:C190285 Childhood Junctional Nevus 6 85318 -NCIT:C190286 Childhood Compound Nevus 6 85319 -NCIT:C190287 Childhood Dermal Nevus 6 85320 -NCIT:C3944 Congenital Melanocytic Nevus 6 85321 -NCIT:C40330 Vulvar Congenital Melanocytic Nevus 7 85322 -NCIT:C4234 Giant Congenital Nevus 7 85323 -NCIT:C66754 Small Congenital Melanocytic Nevus 7 85324 -NCIT:C66755 Proliferative Nodules in Congenital Melanocytic Nevus 7 85325 -NCIT:C27007 Spitz Nevus 5 85326 -NCIT:C190282 Childhood Spitz Nevus 6 85327 -NCIT:C66757 Epithelioid Cell Nevus 6 85328 -NCIT:C66758 Spindle Cell Nevus 6 85329 -NCIT:C82864 Desmoplastic Spitz Nevus 6 85330 -NCIT:C27095 Nonpigmented Nevus 5 85331 -NCIT:C27816 Pigmented Nevus 5 85332 -NCIT:C3803 Blue Nevus 6 85333 -NCIT:C190283 Childhood Blue Nevus 7 85334 -NCIT:C40240 Cervical Blue Nevus 7 85335 -NCIT:C40282 Vaginal Blue Nevus 7 85336 -NCIT:C40332 Vulvar Blue Nevus 7 85337 -NCIT:C4241 Cellular Blue Nevus 7 85338 -NCIT:C4496 Common Blue Nevus 7 85339 -NCIT:C4234 Giant Congenital Nevus 6 85340 -NCIT:C4751 Pigmented Spindle Cell Nevus 6 85341 -NCIT:C190281 Childhood Pigmented Spindle Cell Nevus 7 85342 -NCIT:C3804 Dermal Nevus 5 85343 -NCIT:C190287 Childhood Dermal Nevus 6 85344 -NCIT:C4229 Neuronevus 6 85345 -NCIT:C3880 Eyelid Nevus 5 85346 -NCIT:C3944 Congenital Melanocytic Nevus 5 85347 -NCIT:C40330 Vulvar Congenital Melanocytic Nevus 6 85348 -NCIT:C4234 Giant Congenital Nevus 6 85349 -NCIT:C66754 Small Congenital Melanocytic Nevus 6 85350 -NCIT:C66755 Proliferative Nodules in Congenital Melanocytic Nevus 6 85351 -NCIT:C4226 Balloon Cell Nevus 5 85352 -NCIT:C4495 Cockade Nevus 5 85353 -NCIT:C4497 Desmoplastic Nevus 5 85354 -NCIT:C82864 Desmoplastic Spitz Nevus 6 85355 -NCIT:C4498 Nevus Spilus 5 85356 -NCIT:C54658 Breast Nevus 5 85357 -NCIT:C54659 Acral Nevus 5 85358 -NCIT:C165662 Nail Matrix Nevus 6 85359 -NCIT:C54660 Flexural Skin Nevus 5 85360 -NCIT:C54661 Head and Neck Nevus 5 85361 -NCIT:C7576 Deep Penetrating Nevus 5 85362 -NCIT:C7577 Recurrent Nevus 5 85363 -NCIT:C7602 Halo Nevus 5 85364 -NCIT:C7603 Regressing Nevus 5 85365 -NCIT:C82862 Meyerson Nevus 5 85366 -NCIT:C7342 Epithelial Skin Neoplasm 3 85367 -NCIT:C43311 Germinative Follicular Epithelium Neoplasm 4 85368 -NCIT:C43319 Benign Germinative Follicular Epithelium Neoplasm 5 85369 -NCIT:C168592 Melanocytic Matricoma 6 85370 -NCIT:C27132 Trichoblastoma 6 85371 -NCIT:C27524 Desmoplastic Trichoepithelioma 7 85372 -NCIT:C40314 Vulvar Trichoepithelioma 7 85373 -NCIT:C4112 Trichofolliculoma 6 85374 -NCIT:C7368 Pilomatricoma 6 85375 -NCIT:C190279 Childhood Pilomatricoma 7 85376 -NCIT:C43321 Malignant Germinative Follicular Epithelium Neoplasm 5 85377 -NCIT:C4114 Pilomatrical Carcinoma 6 85378 -NCIT:C4914 Skin Carcinoma 4 85379 -NCIT:C157324 Unresectable Skin Carcinoma 5 85380 -NCIT:C157320 Unresectable Skin Squamous Cell Carcinoma 6 85381 -NCIT:C157331 Unresectable Skin Basal Cell Carcinoma 6 85382 -NCIT:C162786 Unresectable Merkel Cell Carcinoma 6 85383 -NCIT:C170465 Resectable Skin Carcinoma 5 85384 -NCIT:C170464 Resectable Skin Squamous Cell Carcinoma 6 85385 -NCIT:C162943 Resectable Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 85386 -NCIT:C2921 Skin Basal Cell Carcinoma 5 85387 -NCIT:C157331 Unresectable Skin Basal Cell Carcinoma 6 85388 -NCIT:C181159 Eyelid Basal Cell Carcinoma 6 85389 -NCIT:C27182 Skin Sclerosing/Morphoeic Basal Cell Carcinoma 6 85390 -NCIT:C27535 Skin Adenoid Basal Cell Carcinoma 6 85391 -NCIT:C27536 Skin Clear Cell Basal Cell Carcinoma 6 85392 -NCIT:C27537 Skin Cystic Basal Cell Carcinoma 6 85393 -NCIT:C27539 Skin Infiltrating Basal Cell Carcinoma 6 85394 -NCIT:C27540 Skin Infundibulocystic Basal Cell Carcinoma 6 85395 -NCIT:C27541 Skin Micronodular Basal Cell Carcinoma 6 85396 -NCIT:C2922 Skin Basosquamous Cell Carcinoma 6 85397 -NCIT:C38109 Skin Basal Cell Carcinoma with Adnexal Differentiation 6 85398 -NCIT:C27538 Skin Follicular Basal Cell Carcinoma 7 85399 -NCIT:C4346 Skin Basal Cell Carcinoma with Sebaceous Differentiation 7 85400 -NCIT:C38110 Skin Signet Ring Cell Basal Cell Carcinoma 6 85401 -NCIT:C38111 Skin Basal Cell Carcinoma with Sarcomatoid Differentiation 6 85402 -NCIT:C39961 Penile Basal Cell Carcinoma 6 85403 -NCIT:C4109 Skin Fibroepithelial Basal Cell Carcinoma 6 85404 -NCIT:C54665 Skin Keratotic Basal Cell Carcinoma 6 85405 -NCIT:C6082 External Ear Basal Cell Carcinoma 6 85406 -NCIT:C62282 Skin Nodular Basal Cell Carcinoma 6 85407 -NCIT:C5568 Skin Nodulo-Ulcerative Basal Cell Carcinoma 7 85408 -NCIT:C5616 Skin Nodular Solid Basal Cell Carcinoma 7 85409 -NCIT:C62284 Superficial Basal Cell Carcinoma 6 85410 -NCIT:C4108 Superficial Multifocal Basal Cell Carcinoma 7 85411 -NCIT:C6381 Vulvar Basal Cell Carcinoma 6 85412 -NCIT:C6386 Scrotal Basal Cell Carcinoma 6 85413 -NCIT:C66903 Skin Metatypical Carcinoma 6 85414 -NCIT:C7473 Anal Margin Basal Cell Carcinoma 6 85415 -NCIT:C7585 Skin Adamantinoid Basal Cell Carcinoma 6 85416 -NCIT:C8014 Lip Basal Cell Carcinoma 6 85417 -NCIT:C5893 Stage 0 Lip Basal Cell Carcinoma AJCC v6 and v7 7 85418 -NCIT:C8197 Stage I Lip Basal Cell Carcinoma 7 85419 -NCIT:C8201 Stage II Lip Basal Cell Carcinoma 7 85420 -NCIT:C8205 Stage III Lip Basal Cell Carcinoma 7 85421 -NCIT:C8209 Stage IV Lip Basal Cell Carcinoma 7 85422 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 8 85423 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 8 85424 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 8 85425 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 7 85426 -NCIT:C9359 Skin Pigmented Basal Cell Carcinoma 6 85427 -NCIT:C3640 Stage 0 Skin Cancer 5 85428 -NCIT:C2906 Skin Squamous Cell Carcinoma In Situ 6 85429 -NCIT:C62571 Bowen Disease of the Skin 7 85430 -NCIT:C5893 Stage 0 Lip Basal Cell Carcinoma AJCC v6 and v7 6 85431 -NCIT:C3775 Adnexal Carcinoma 5 85432 -NCIT:C167341 Adnexal Adenocarcinoma, Not Otherwise Specified 6 85433 -NCIT:C167366 Adnexal Cribriform Carcinoma 6 85434 -NCIT:C167368 Adnexal Secretory Carcinoma 6 85435 -NCIT:C167369 Signet Ring Cell/Histiocytoid Carcinoma 6 85436 -NCIT:C167381 Trichoblastic Carcinoma 6 85437 -NCIT:C40310 Sebaceous Carcinoma 6 85438 -NCIT:C160978 Head and Neck Sebaceous Carcinoma 7 85439 -NCIT:C173648 Salivary Gland Sebaceous Carcinoma 8 85440 -NCIT:C40369 Breast Sebaceous Carcinoma 7 85441 -NCIT:C43340 Eye Sebaceous Carcinoma 7 85442 -NCIT:C134831 Eyelid Sebaceous Gland Carcinoma 8 85443 -NCIT:C174404 Conjunctival Sebaceous Carcinoma 8 85444 -NCIT:C43341 Extraocular Cutaneous Sebaceous Carcinoma 7 85445 -NCIT:C40309 Vulvar Sebaceous Carcinoma 8 85446 -NCIT:C4114 Pilomatrical Carcinoma 6 85447 -NCIT:C43326 Trichilemmal Carcinoma 6 85448 -NCIT:C6938 Sweat Gland Carcinoma 6 85449 -NCIT:C128164 Vulvar Adenocarcinoma of Sweat Gland Origin 7 85450 -NCIT:C4027 Vulvar Paget Disease 8 85451 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 8 85452 -NCIT:C40306 Vulvar Porocarcinoma 9 85453 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 8 85454 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 8 85455 -NCIT:C167344 Spiradenocylindrocarcinoma 7 85456 -NCIT:C167364 Endocrine Mucin-Producing Sweat Gland Carcinoma 7 85457 -NCIT:C167365 Syringocystadenocarcinoma Papilliferum 7 85458 -NCIT:C27255 Eccrine Carcinoma 7 85459 -NCIT:C27254 Papillary Eccrine Carcinoma 8 85460 -NCIT:C27534 Digital Papillary Adenocarcinoma 9 85461 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 8 85462 -NCIT:C40306 Vulvar Porocarcinoma 9 85463 -NCIT:C43345 Ductal Eccrine Adenocarcinoma 8 85464 -NCIT:C43346 Ductal Eccrine Carcinoma with Spindle Cell Elements 9 85465 -NCIT:C43347 Squamoid Eccrine Ductal Carcinoma 9 85466 -NCIT:C43349 Ductal Eccrine Carcinoma with Abundant Fibromyxoid Stroma 9 85467 -NCIT:C5560 Porocarcinoma 8 85468 -NCIT:C40306 Vulvar Porocarcinoma 9 85469 -NCIT:C43354 Porocarcinoma In Situ 9 85470 -NCIT:C27533 Primary Cutaneous Mucinous Carcinoma 7 85471 -NCIT:C3682 Sweat Gland Tubular Carcinoma 7 85472 -NCIT:C4169 Apocrine Carcinoma 7 85473 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 8 85474 -NCIT:C4176 Ceruminous Adenocarcinoma 8 85475 -NCIT:C5141 Breast Apocrine Carcinoma 8 85476 -NCIT:C5140 Breast Apocrine Carcinoma In Situ 9 85477 -NCIT:C5457 Invasive Breast Apocrine Carcinoma 9 85478 -NCIT:C43344 Cylindrocarcinoma 7 85479 -NCIT:C4471 Adenoid Cystic Skin Carcinoma 7 85480 -NCIT:C4472 Mucoepidermoid Skin Carcinoma 7 85481 -NCIT:C5117 Spiradenocarcinoma 7 85482 -NCIT:C5180 Malignant Breast Spiradenoma 8 85483 -NCIT:C54664 Hidradenocarcinoma 7 85484 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 8 85485 -NCIT:C7581 Microcystic Adnexal Carcinoma 7 85486 -NCIT:C4819 Skin Squamous Cell Carcinoma 5 85487 -NCIT:C133252 Cutaneous Squamous Cell Carcinoma of the Head and Neck 6 85488 -NCIT:C133253 Cutaneous Squamous Cell Carcinoma of the Head and Neck by AJCC v8 Stage 7 85489 -NCIT:C133255 Stage 0 Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 85490 -NCIT:C133256 Stage I Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 85491 -NCIT:C133257 Stage II Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 85492 -NCIT:C133258 Stage III Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 85493 -NCIT:C133259 Stage IV Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 85494 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 85495 -NCIT:C162943 Resectable Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 85496 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 85497 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 85498 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 85499 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 85500 -NCIT:C6083 External Ear Squamous Cell Carcinoma 7 85501 -NCIT:C143012 Recurrent Skin Squamous Cell Carcinoma 6 85502 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 85503 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 7 85504 -NCIT:C165737 Locally Recurrent Skin Squamous Cell Carcinoma 7 85505 -NCIT:C143013 Metastatic Skin Squamous Cell Carcinoma 6 85506 -NCIT:C153182 Locally Advanced Skin Squamous Cell Carcinoma 7 85507 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 85508 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 7 85509 -NCIT:C168542 Advanced Skin Squamous Cell Carcinoma 7 85510 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 85511 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 85512 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 85513 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 85514 -NCIT:C157320 Unresectable Skin Squamous Cell Carcinoma 6 85515 -NCIT:C160666 Hematologic Malignancy-Associated Skin Squamous Cell Carcinoma 6 85516 -NCIT:C165465 Skin Verrucous Carcinoma 6 85517 -NCIT:C6811 Plantar Verrucous Carcinoma 7 85518 -NCIT:C165466 Skin Squamous Cell Carcinoma with Osteoclast-Like Giant Cells 6 85519 -NCIT:C165467 Skin Lymphoepithelioma-Like Carcinoma 6 85520 -NCIT:C165468 Skin Squamous Cell Carcinoma with Sarcomatoid Differentiation 6 85521 -NCIT:C165735 Refractory Skin Squamous Cell Carcinoma 6 85522 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 85523 -NCIT:C170464 Resectable Skin Squamous Cell Carcinoma 6 85524 -NCIT:C162943 Resectable Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 85525 -NCIT:C27542 Skin Pseudovascular Squamous Cell Carcinoma 6 85526 -NCIT:C27543 Skin Basaloid Carcinoma 6 85527 -NCIT:C27636 Transplant-Related Skin Squamous Cell Carcinoma 6 85528 -NCIT:C27918 Old Burn Scar-Related Skin Squamous Cell Carcinoma 6 85529 -NCIT:C27921 Solar Radiation-Related Skin Squamous Cell Carcinoma 6 85530 -NCIT:C2906 Skin Squamous Cell Carcinoma In Situ 6 85531 -NCIT:C62571 Bowen Disease of the Skin 7 85532 -NCIT:C3146 Keratoacanthoma 6 85533 -NCIT:C128167 Vulvar Keratoacanthoma 7 85534 -NCIT:C174390 Conjunctival Keratoacanthoma 7 85535 -NCIT:C4459 Skin Clear Cell Squamous Cell Carcinoma 6 85536 -NCIT:C4460 Skin Acantholytic Squamous Cell Carcinoma 6 85537 -NCIT:C4643 Scrotal Squamous Cell Carcinoma 6 85538 -NCIT:C4666 Skin Spindle Cell Squamous Cell Carcinoma 6 85539 -NCIT:C6925 Anal Margin Squamous Cell Carcinoma 6 85540 -NCIT:C54250 Skin Adenosquamous Carcinoma 5 85541 -NCIT:C5581 Stage I Skin Cancer 5 85542 -NCIT:C8197 Stage I Lip Basal Cell Carcinoma 6 85543 -NCIT:C5582 Stage II Skin Cancer 5 85544 -NCIT:C8201 Stage II Lip Basal Cell Carcinoma 6 85545 -NCIT:C5583 Stage III Skin Cancer 5 85546 -NCIT:C8205 Stage III Lip Basal Cell Carcinoma 6 85547 -NCIT:C5584 Stage IV Skin Cancer 5 85548 -NCIT:C8209 Stage IV Lip Basal Cell Carcinoma 6 85549 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 7 85550 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 7 85551 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 7 85552 -NCIT:C6389 Scrotal Carcinoma 5 85553 -NCIT:C4643 Scrotal Squamous Cell Carcinoma 6 85554 -NCIT:C6386 Scrotal Basal Cell Carcinoma 6 85555 -NCIT:C7728 Scrotal Paget Disease 6 85556 -NCIT:C7472 Anal Margin Carcinoma 5 85557 -NCIT:C6925 Anal Margin Squamous Cell Carcinoma 6 85558 -NCIT:C7473 Anal Margin Basal Cell Carcinoma 6 85559 -NCIT:C7476 Anal Margin Paget Disease 6 85560 -NCIT:C7903 Recurrent Skin Carcinoma 5 85561 -NCIT:C115440 Recurrent Merkel Cell Carcinoma 6 85562 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 7 85563 -NCIT:C165740 Locally Recurrent Merkel Cell Carcinoma 7 85564 -NCIT:C143012 Recurrent Skin Squamous Cell Carcinoma 6 85565 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 85566 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 7 85567 -NCIT:C165737 Locally Recurrent Skin Squamous Cell Carcinoma 7 85568 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 6 85569 -NCIT:C9231 Merkel Cell Carcinoma 5 85570 -NCIT:C115440 Recurrent Merkel Cell Carcinoma 6 85571 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 7 85572 -NCIT:C165740 Locally Recurrent Merkel Cell Carcinoma 7 85573 -NCIT:C128247 Vulvar Merkel Cell Carcinoma 6 85574 -NCIT:C136869 Merkel Cell Carcinoma by AJCC v7 Stage 6 85575 -NCIT:C85887 Stage 0 Merkel Cell Carcinoma AJCC v7 7 85576 -NCIT:C85889 Stage I Merkel Cell Carcinoma AJCC v7 7 85577 -NCIT:C85890 Stage IA Merkel Cell Carcinoma AJCC v7 8 85578 -NCIT:C85892 Stage IB Merkel Cell Carcinoma AJCC v7 8 85579 -NCIT:C85893 Stage II Merkel Cell Carcinoma AJCC v7 7 85580 -NCIT:C85894 Stage IIA Merkel Cell Carcinoma AJCC v7 8 85581 -NCIT:C85895 Stage IIB Merkel Cell Carcinoma AJCC v7 8 85582 -NCIT:C85896 Stage IIC Merkel Cell Carcinoma AJCC v7 8 85583 -NCIT:C85897 Stage III Merkel Cell Carcinoma AJCC v7 7 85584 -NCIT:C85898 Stage IIIA Merkel Cell Carcinoma AJCC v7 8 85585 -NCIT:C85899 Stage IIIB Merkel Cell Carcinoma AJCC v7 8 85586 -NCIT:C85900 Stage IV Merkel Cell Carcinoma AJCC v7 7 85587 -NCIT:C136870 Merkel Cell Carcinoma by AJCC v8 Stage 6 85588 -NCIT:C136871 Merkel Cell Carcinoma by AJCC v8 Clinical Stage 7 85589 -NCIT:C136872 Clinical Stage 0 Merkel Cell Carcinoma AJCC v8 8 85590 -NCIT:C136873 Clinical Stage I Merkel Cell Carcinoma AJCC v8 8 85591 -NCIT:C136874 Clinical Stage II Merkel Cell Carcinoma AJCC v8 8 85592 -NCIT:C136875 Clinical Stage IIA Merkel Cell Carcinoma AJCC v8 9 85593 -NCIT:C136876 Clinical Stage IIB Merkel Cell Carcinoma AJCC v8 9 85594 -NCIT:C136877 Clinical Stage III Merkel Cell Carcinoma AJCC v8 8 85595 -NCIT:C136878 Clinical Stage IV Merkel Cell Carcinoma AJCC v8 8 85596 -NCIT:C136880 Merkel Cell Carcinoma by AJCC v8 Pathologic Stage 7 85597 -NCIT:C136881 Pathologic Stage 0 Merkel Cell Carcinoma AJCC v8 8 85598 -NCIT:C136882 Pathologic Stage I Merkel Cell Carcinoma AJCC v8 8 85599 -NCIT:C136883 Pathologic Stage II Merkel Cell Carcinoma AJCC v8 8 85600 -NCIT:C136884 Pathologic Stage IIA Merkel Cell Carcinoma AJCC v8 9 85601 -NCIT:C136885 Pathologic Stage IIB Merkel Cell Carcinoma AJCC v8 9 85602 -NCIT:C136886 Pathologic Stage III Merkel Cell Carcinoma AJCC v8 8 85603 -NCIT:C136887 Pathologic Stage IIIA Merkel Cell Carcinoma AJCC v8 9 85604 -NCIT:C136888 Pathologic Stage IIIB Merkel Cell Carcinoma AJCC v8 9 85605 -NCIT:C136889 Pathologic Stage IV Merkel Cell Carcinoma AJCC v8 8 85606 -NCIT:C162572 Metastatic Merkel Cell Carcinoma 6 85607 -NCIT:C165300 Advanced Merkel Cell Carcinoma 7 85608 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 7 85609 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 7 85610 -NCIT:C162786 Unresectable Merkel Cell Carcinoma 6 85611 -NCIT:C165741 Refractory Merkel Cell Carcinoma 6 85612 -NCIT:C5628 Metastatic Carcinoma in the Skin 4 85613 -NCIT:C188113 Metastatic Squamous Cell Carcinoma in the Skin 5 85614 -NCIT:C28311 Metastatic Breast Carcinoma in the Skin 5 85615 -NCIT:C7341 Benign Epithelial Skin Neoplasm 4 85616 -NCIT:C167370 Skin Myoepithelioma 5 85617 -NCIT:C26913 Verruca Plantaris 5 85618 -NCIT:C27087 Verruca Vulgaris 5 85619 -NCIT:C173475 Oral Verruca Vulgaris 6 85620 -NCIT:C43315 Benign Outer Hair Sheath and Infundibulum Neoplasm 5 85621 -NCIT:C4113 Trichilemmoma 6 85622 -NCIT:C27521 Classic Type Trichilemmoma 7 85623 -NCIT:C27522 Desmoplastic Trichilemmoma 7 85624 -NCIT:C43325 Trichoadenoma 6 85625 -NCIT:C4468 Pilar Sheath Acanthoma 6 85626 -NCIT:C4469 Tumor of the Follicular Infundibulum 6 85627 -NCIT:C43319 Benign Germinative Follicular Epithelium Neoplasm 5 85628 -NCIT:C168592 Melanocytic Matricoma 6 85629 -NCIT:C27132 Trichoblastoma 6 85630 -NCIT:C27524 Desmoplastic Trichoepithelioma 7 85631 -NCIT:C40314 Vulvar Trichoepithelioma 7 85632 -NCIT:C4112 Trichofolliculoma 6 85633 -NCIT:C7368 Pilomatricoma 6 85634 -NCIT:C190279 Childhood Pilomatricoma 7 85635 -NCIT:C4614 Skin Papilloma 5 85636 -NCIT:C4879 Benign Sweat Gland Neoplasm 5 85637 -NCIT:C167342 Spiradenocylindroma 6 85638 -NCIT:C27094 Cylindroma 6 85639 -NCIT:C43351 Sporadic Cylindroma 7 85640 -NCIT:C43352 Turban Tumor 7 85641 -NCIT:C27273 Poroma 6 85642 -NCIT:C43353 Classical Poroma 7 85643 -NCIT:C4473 Dermal Duct Tumor 7 85644 -NCIT:C3760 Hidrocystoma 6 85645 -NCIT:C43342 Apocrine Hidrocystoma 7 85646 -NCIT:C7565 Eccrine Hidrocystoma 7 85647 -NCIT:C4170 Spiradenoma 6 85648 -NCIT:C5193 Breast Spiradenoma 7 85649 -NCIT:C4171 Hidradenoma Papilliferum 6 85650 -NCIT:C128240 Vulvar Hidradenoma Papilliferum 7 85651 -NCIT:C96699 Anal Hidradenoma Papilliferum 7 85652 -NCIT:C4474 Chondroid Syringoma 6 85653 -NCIT:C6797 Benign Eccrine Neoplasm 6 85654 -NCIT:C162848 Digital Papillary Adenoma 7 85655 -NCIT:C3761 Syringoma 7 85656 -NCIT:C40311 Vulvar Syringoma 8 85657 -NCIT:C43356 Syringofibroadenoma 7 85658 -NCIT:C7565 Eccrine Hidrocystoma 7 85659 -NCIT:C6799 Benign Apocrine Neoplasm 6 85660 -NCIT:C4168 Apocrine Adenoma 7 85661 -NCIT:C27527 Tubular Apocrine Adenoma 8 85662 -NCIT:C43342 Apocrine Hidrocystoma 8 85663 -NCIT:C6088 Ceruminous Adenoma 8 85664 -NCIT:C7560 Sweat Gland Adenoma 6 85665 -NCIT:C4168 Apocrine Adenoma 7 85666 -NCIT:C27527 Tubular Apocrine Adenoma 8 85667 -NCIT:C43342 Apocrine Hidrocystoma 8 85668 -NCIT:C6088 Ceruminous Adenoma 8 85669 -NCIT:C4172 Syringocystadenoma Papilliferum 7 85670 -NCIT:C43356 Syringofibroadenoma 7 85671 -NCIT:C7563 Hidradenoma 7 85672 -NCIT:C7567 Clear Cell Hidradenoma 8 85673 -NCIT:C7568 Nodular Hidradenoma 8 85674 -NCIT:C40312 Vulvar Nodular Hidradenoma 9 85675 -NCIT:C7419 Acanthoma 5 85676 -NCIT:C165485 Lichen Planus-Like Keratosis 6 85677 -NCIT:C27516 Epidermolytic Acanthoma 6 85678 -NCIT:C27517 Acantholytic Acanthoma 6 85679 -NCIT:C27518 Large Cell Acanthoma 6 85680 -NCIT:C4087 Warty Dyskeratoma 6 85681 -NCIT:C4468 Pilar Sheath Acanthoma 6 85682 -NCIT:C4469 Tumor of the Follicular Infundibulum 6 85683 -NCIT:C9006 Seborrheic Keratosis 6 85684 -NCIT:C27548 Melanoacanthoma 7 85685 -NCIT:C4356 Eyelid Seborrheic Keratosis 7 85686 -NCIT:C6375 Vulvar Seborrheic Keratosis 7 85687 -NCIT:C40291 Vulvar Inverted Follicular Keratosis 8 85688 -NCIT:C9007 Inverted Follicular Keratosis 7 85689 -NCIT:C40291 Vulvar Inverted Follicular Keratosis 8 85690 -NCIT:C97041 Clear Cell Acanthoma 6 85691 -NCIT:C7580 Skin Appendage Adenoma 5 85692 -NCIT:C4174 Sebaceous Adenoma 6 85693 -NCIT:C7560 Sweat Gland Adenoma 6 85694 -NCIT:C4168 Apocrine Adenoma 7 85695 -NCIT:C27527 Tubular Apocrine Adenoma 8 85696 -NCIT:C43342 Apocrine Hidrocystoma 8 85697 -NCIT:C6088 Ceruminous Adenoma 8 85698 -NCIT:C4172 Syringocystadenoma Papilliferum 7 85699 -NCIT:C43356 Syringofibroadenoma 7 85700 -NCIT:C7563 Hidradenoma 7 85701 -NCIT:C7567 Clear Cell Hidradenoma 8 85702 -NCIT:C7568 Nodular Hidradenoma 8 85703 -NCIT:C40312 Vulvar Nodular Hidradenoma 9 85704 -NCIT:C8525 Benign Sebaceous Neoplasm 5 85705 -NCIT:C4174 Sebaceous Adenoma 6 85706 -NCIT:C43334 Superficial Epithelioma with Sebaceous Differentiation 6 85707 -NCIT:C43336 Sebaceoma 6 85708 -NCIT:C3406 Thoracic Neoplasm 2 85709 -NCIT:C190090 Childhood Thoracic Neoplasm 3 85710 -NCIT:C190095 Childhood Lung Neoplasm 4 85711 -NCIT:C142823 Congenital Peribronchial Myofibroblastic Tumor 5 85712 -NCIT:C190100 Childhood Malignant Lung Neoplasm 5 85713 -NCIT:C118814 Childhood Lung Non-Small Cell Carcinoma 6 85714 -NCIT:C118815 Childhood Lung Small Cell Carcinoma 6 85715 -NCIT:C190621 Childhood Benign Lung Neoplasm 5 85716 -NCIT:C190105 Fetal Lung Interstitial Tumor 6 85717 -NCIT:C190098 Childhood Malignant Thoracic Neoplasm 4 85718 -NCIT:C188455 Childhood Primary Mediastinal (Thymic) Large B-Cell Lymphoma 5 85719 -NCIT:C190100 Childhood Malignant Lung Neoplasm 5 85720 -NCIT:C118814 Childhood Lung Non-Small Cell Carcinoma 6 85721 -NCIT:C118815 Childhood Lung Small Cell Carcinoma 6 85722 -NCIT:C5669 Pleuropulmonary Blastoma 5 85723 -NCIT:C45626 Type I Pleuropulmonary Blastoma 6 85724 -NCIT:C45627 Type II Pleuropulmonary Blastoma 6 85725 -NCIT:C45628 Type III Pleuropulmonary Blastoma 6 85726 -NCIT:C190620 Childhood Benign Thoracic Neoplasm 4 85727 -NCIT:C190104 Childhood Cardiac Rhabdomyoma 5 85728 -NCIT:C190621 Childhood Benign Lung Neoplasm 5 85729 -NCIT:C190105 Fetal Lung Interstitial Tumor 6 85730 -NCIT:C5429 Childhood Mediastinal Neurogenic Neoplasm 4 85731 -NCIT:C3081 Heart Neoplasm 3 85732 -NCIT:C147005 Cardiac Germ Cell Tumor 4 85733 -NCIT:C147007 Cardiac Teratoma 5 85734 -NCIT:C5357 Benign Cardiac Germ Cell Tumor 5 85735 -NCIT:C5371 Malignant Cardiac Germ Cell Tumor 5 85736 -NCIT:C147006 Cardiac Yolk Sac Tumor 6 85737 -NCIT:C3548 Malignant Cardiac Neoplasm 4 85738 -NCIT:C4568 Malignant Epicardial Neoplasm 5 85739 -NCIT:C4569 Malignant Myocardial Neoplasm 5 85740 -NCIT:C4570 Malignant Endocardial Neoplasm 5 85741 -NCIT:C4889 Metastatic Malignant Neoplasm in the Heart 5 85742 -NCIT:C5369 Secondary Heart Lymphoma 6 85743 -NCIT:C5362 Cardiac Epithelioid Hemangioendothelioma 5 85744 -NCIT:C5368 Cardiac Lymphoma 5 85745 -NCIT:C183146 Cardiac Diffuse Large B-Cell Lymphoma 6 85746 -NCIT:C183141 Cardiac Fibrin-Associated Diffuse Large B-Cell Lymphoma 7 85747 -NCIT:C5370 Cardiac Myeloid Sarcoma 5 85748 -NCIT:C5371 Malignant Cardiac Germ Cell Tumor 5 85749 -NCIT:C147006 Cardiac Yolk Sac Tumor 6 85750 -NCIT:C5392 Metastatic Cardiac Paraganglioma 5 85751 -NCIT:C7723 Cardiac Sarcoma 5 85752 -NCIT:C147003 Cardiac Extraskeletal Osteosarcoma 6 85753 -NCIT:C147097 Cardiac Angiosarcoma 6 85754 -NCIT:C45755 Cardiac Undifferentiated Pleomorphic Sarcoma 6 85755 -NCIT:C45756 Cardiac Synovial Sarcoma 6 85756 -NCIT:C45757 Cardiac Biphasic Synovial Sarcoma 7 85757 -NCIT:C45758 Cardiac Monophasic Synovial Sarcoma 7 85758 -NCIT:C45759 Cardiac Rhabdomyosarcoma 6 85759 -NCIT:C5361 Cardiac Fibrosarcoma 6 85760 -NCIT:C147004 Cardiac Myxofibrosarcoma 7 85761 -NCIT:C5363 Cardiac Kaposi Sarcoma 6 85762 -NCIT:C5364 Cardiac Leiomyosarcoma 6 85763 -NCIT:C5367 Cardiac Malignant Peripheral Nerve Sheath Tumor 6 85764 -NCIT:C3605 Benign Cardiac Neoplasm 4 85765 -NCIT:C45749 Cardiac Hemangioma 5 85766 -NCIT:C45750 Cardiac Cavernous Hemangioma 6 85767 -NCIT:C45751 Cardiac Capillary Hemangioma 6 85768 -NCIT:C45752 Cardiac Intramuscular Hemangioma 6 85769 -NCIT:C45754 Cystic Tumor of the Atrioventricular Node 5 85770 -NCIT:C4607 Benign Myocardial Neoplasm 5 85771 -NCIT:C6739 Cardiac Rhabdomyoma 6 85772 -NCIT:C190104 Childhood Cardiac Rhabdomyoma 7 85773 -NCIT:C45747 Adult Cardiac Cellular Rhabdomyoma 7 85774 -NCIT:C49179 Conventional Cardiac Rhabdomyoma 7 85775 -NCIT:C4608 Benign Endocardial Neoplasm 5 85776 -NCIT:C3695 Papillary Fibroelastoma 6 85777 -NCIT:C7748 Cardiac Myxoma 6 85778 -NCIT:C3499 Atrial Myxoma 7 85779 -NCIT:C4791 Left Atrial Myxoma 8 85780 -NCIT:C4792 Right Atrial Myxoma 8 85781 -NCIT:C45748 Ventricular Myxoma 7 85782 -NCIT:C5357 Benign Cardiac Germ Cell Tumor 5 85783 -NCIT:C5358 Cardiac Schwannoma 5 85784 -NCIT:C5359 Cardiac Neurofibroma 5 85785 -NCIT:C5389 Benign Atrial Neoplasm 5 85786 -NCIT:C3499 Atrial Myxoma 6 85787 -NCIT:C4791 Left Atrial Myxoma 7 85788 -NCIT:C4792 Right Atrial Myxoma 7 85789 -NCIT:C6741 Cardiac Lipoma 5 85790 -NCIT:C6742 Epicardial Lipoma 6 85791 -NCIT:C6947 Cardiac Fibroma 5 85792 -NCIT:C8535 Benign Epicardial Neoplasm 5 85793 -NCIT:C6742 Epicardial Lipoma 6 85794 -NCIT:C45753 Cardiac Inflammatory Myofibroblastic Tumor 4 85795 -NCIT:C4651 Pericardial Neoplasm 4 85796 -NCIT:C4281 Pericardial Solitary Fibrous Tumor 5 85797 -NCIT:C4567 Malignant Pericardial Neoplasm 5 85798 -NCIT:C147098 Pericardial Sarcoma 6 85799 -NCIT:C147101 Pericardial Angiosarcoma 7 85800 -NCIT:C147102 Pericardial Synovial Sarcoma 7 85801 -NCIT:C147104 Malignant Pericardial Germ Cell Tumor 6 85802 -NCIT:C147105 Pericardial Yolk Sac Tumor 7 85803 -NCIT:C183136 Pericardial Primary Effusion Lymphoma 6 85804 -NCIT:C45762 Metastatic Malignant Neoplasm in the Pericardium 6 85805 -NCIT:C27385 Pericardial Carcinomatosis 7 85806 -NCIT:C7631 Pericardial Malignant Mesothelioma 6 85807 -NCIT:C8703 Advanced Pericardial Malignant Mesothelioma 7 85808 -NCIT:C9253 Recurrent Pericardial Malignant Mesothelioma 7 85809 -NCIT:C7753 Malignant Pericarditis 6 85810 -NCIT:C45761 Pericardial Germ Cell Tumor 5 85811 -NCIT:C147103 Pericardial Teratoma 6 85812 -NCIT:C6744 Pericardial Mature Teratoma 7 85813 -NCIT:C147104 Malignant Pericardial Germ Cell Tumor 6 85814 -NCIT:C147105 Pericardial Yolk Sac Tumor 7 85815 -NCIT:C147106 Benign Pericardial Germ Cell Tumor 6 85816 -NCIT:C6744 Pericardial Mature Teratoma 7 85817 -NCIT:C7632 Pericardial Mesothelioma 5 85818 -NCIT:C7631 Pericardial Malignant Mesothelioma 6 85819 -NCIT:C8703 Advanced Pericardial Malignant Mesothelioma 7 85820 -NCIT:C9253 Recurrent Pericardial Malignant Mesothelioma 7 85821 -NCIT:C92187 Pericardial Adenomatoid Tumor 6 85822 -NCIT:C8536 Benign Pericardial Neoplasm 5 85823 -NCIT:C147106 Benign Pericardial Germ Cell Tumor 6 85824 -NCIT:C6744 Pericardial Mature Teratoma 7 85825 -NCIT:C6743 Pericardial Leiomyoma 6 85826 -NCIT:C92187 Pericardial Adenomatoid Tumor 6 85827 -NCIT:C5346 Endocardial Neoplasm 4 85828 -NCIT:C4570 Malignant Endocardial Neoplasm 5 85829 -NCIT:C4608 Benign Endocardial Neoplasm 5 85830 -NCIT:C3695 Papillary Fibroelastoma 6 85831 -NCIT:C7748 Cardiac Myxoma 6 85832 -NCIT:C3499 Atrial Myxoma 7 85833 -NCIT:C4791 Left Atrial Myxoma 8 85834 -NCIT:C4792 Right Atrial Myxoma 8 85835 -NCIT:C45748 Ventricular Myxoma 7 85836 -NCIT:C5347 Epicardial Neoplasm 4 85837 -NCIT:C4568 Malignant Epicardial Neoplasm 5 85838 -NCIT:C5360 Cardiac Granular Cell Tumor 5 85839 -NCIT:C8535 Benign Epicardial Neoplasm 5 85840 -NCIT:C6742 Epicardial Lipoma 6 85841 -NCIT:C5349 Myocardial Neoplasm 4 85842 -NCIT:C4569 Malignant Myocardial Neoplasm 5 85843 -NCIT:C4607 Benign Myocardial Neoplasm 5 85844 -NCIT:C6739 Cardiac Rhabdomyoma 6 85845 -NCIT:C190104 Childhood Cardiac Rhabdomyoma 7 85846 -NCIT:C45747 Adult Cardiac Cellular Rhabdomyoma 7 85847 -NCIT:C49179 Conventional Cardiac Rhabdomyoma 7 85848 -NCIT:C6410 Cardiac Paraganglioma 4 85849 -NCIT:C5390 Atrial Paraganglioma 5 85850 -NCIT:C5392 Metastatic Cardiac Paraganglioma 5 85851 -NCIT:C3200 Lung Neoplasm 3 85852 -NCIT:C142833 Pulmonary Langerhans Cell Histiocytosis 4 85853 -NCIT:C190095 Childhood Lung Neoplasm 4 85854 -NCIT:C142823 Congenital Peribronchial Myofibroblastic Tumor 5 85855 -NCIT:C190100 Childhood Malignant Lung Neoplasm 5 85856 -NCIT:C118814 Childhood Lung Non-Small Cell Carcinoma 6 85857 -NCIT:C118815 Childhood Lung Small Cell Carcinoma 6 85858 -NCIT:C190621 Childhood Benign Lung Neoplasm 5 85859 -NCIT:C190105 Fetal Lung Interstitial Tumor 6 85860 -NCIT:C27710 Pulmonary Sulcus Neoplasm 4 85861 -NCIT:C7527 Malignant Superior Sulcus Neoplasm 5 85862 -NCIT:C7779 Superior Sulcus Lung Carcinoma 6 85863 -NCIT:C4454 Benign Lung Neoplasm 4 85864 -NCIT:C133091 Lung Adenofibroma 5 85865 -NCIT:C142784 Benign Lung PEComa 5 85866 -NCIT:C38152 Lung Clear Cell Tumor 6 85867 -NCIT:C142829 Lung Myoepithelioma 5 85868 -NCIT:C190105 Fetal Lung Interstitial Tumor 5 85869 -NCIT:C190621 Childhood Benign Lung Neoplasm 5 85870 -NCIT:C190105 Fetal Lung Interstitial Tumor 6 85871 -NCIT:C3497 Pulmonary Hamartoma 5 85872 -NCIT:C5662 Endobronchial Hamartoma 6 85873 -NCIT:C5663 Multiple Pulmonary Hamartomas 6 85874 -NCIT:C4455 Lung Adenoma 5 85875 -NCIT:C183045 Bronchiolar Adenoma/Ciliated Muconodular Papillary Tumor 6 85876 -NCIT:C3494 Lung Papillary Adenoma 6 85877 -NCIT:C4140 Alveolar Adenoma 6 85878 -NCIT:C45603 Lung Pleomorphic Adenoma 6 85879 -NCIT:C45604 Lung Mucinous Cystadenoma 6 85880 -NCIT:C5656 Sclerosing Pneumocytoma 6 85881 -NCIT:C5664 Lung Mucous Gland Adenoma 6 85882 -NCIT:C45629 Lung Chondroma 5 85883 -NCIT:C4888 Benign Lung Hilum Neoplasm 5 85884 -NCIT:C5063 Endobronchial Lipoma 5 85885 -NCIT:C5657 Lung Myolipoma 5 85886 -NCIT:C5658 Lung Fibroma 5 85887 -NCIT:C5660 Lung Leiomyoma 5 85888 -NCIT:C5661 Endobronchial Leiomyoma 6 85889 -NCIT:C8295 Bronchial Papilloma 5 85890 -NCIT:C45573 Lung Squamous Papilloma 6 85891 -NCIT:C45601 Bronchial Glandular Papilloma 6 85892 -NCIT:C45602 Bronchial Mixed Squamous Cell and Glandular Papilloma 6 85893 -NCIT:C45612 Lung Soft Tissue Neoplasm 4 85894 -NCIT:C142783 Lung PEComa 5 85895 -NCIT:C142784 Benign Lung PEComa 6 85896 -NCIT:C38152 Lung Clear Cell Tumor 7 85897 -NCIT:C142785 Lung Malignant PEComa 6 85898 -NCIT:C38153 Lung Lymphangioleiomyomatosis 6 85899 -NCIT:C142823 Congenital Peribronchial Myofibroblastic Tumor 5 85900 -NCIT:C142828 Lung Myoepithelial Tumor 5 85901 -NCIT:C142829 Lung Myoepithelioma 6 85902 -NCIT:C142830 Lung Myoepithelial Carcinoma 6 85903 -NCIT:C39740 Lung Inflammatory Myofibroblastic Tumor 5 85904 -NCIT:C45629 Lung Chondroma 5 85905 -NCIT:C45630 Diffuse Pulmonary Lymphangiomatosis 5 85906 -NCIT:C4860 Lung Sarcoma 5 85907 -NCIT:C142825 Pulmonary Artery Intimal Sarcoma 6 85908 -NCIT:C142827 Primary Pulmonary Myxoid Sarcoma with EWSR1-CREB1 Fusion 6 85909 -NCIT:C173809 Lung Alveolar Soft Part Sarcoma 6 85910 -NCIT:C181201 Lung Rhabdomyosarcoma 6 85911 -NCIT:C188061 Lung Osteosarcoma 6 85912 -NCIT:C3551 Lung Kaposi Sarcoma 6 85913 -NCIT:C45631 Lung Synovial Sarcoma 6 85914 -NCIT:C45632 Lung Biphasic Synovial Sarcoma 7 85915 -NCIT:C45633 Lung Monophasic Synovial Sarcoma 7 85916 -NCIT:C5667 Lung Leiomyosarcoma 6 85917 -NCIT:C5063 Endobronchial Lipoma 5 85918 -NCIT:C5657 Lung Myolipoma 5 85919 -NCIT:C5658 Lung Fibroma 5 85920 -NCIT:C5660 Lung Leiomyoma 5 85921 -NCIT:C5661 Endobronchial Leiomyoma 6 85922 -NCIT:C45636 Lung Germ Cell Tumor 4 85923 -NCIT:C45637 Lung Teratoma 5 85924 -NCIT:C45638 Intrapulmonary Thymoma 4 85925 -NCIT:C5665 Atypical Adenomatous Lung Hyperplasia 4 85926 -NCIT:C5668 Lung Meningioma 4 85927 -NCIT:C5276 Primary Lung Meningioma 5 85928 -NCIT:C5670 Lung Neuroendocrine Neoplasm 4 85929 -NCIT:C157602 Metastatic Lung Neuroendocrine Neoplasm 5 85930 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 6 85931 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 85932 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 7 85933 -NCIT:C165446 Advanced Lung Neuroendocrine Neoplasm 6 85934 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 85935 -NCIT:C177245 Advanced Lung Carcinoid Tumor 7 85936 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 7 85937 -NCIT:C176715 Locally Advanced Lung Neuroendocrine Neoplasm 6 85938 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 7 85939 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 7 85940 -NCIT:C177243 Metastatic Lung Carcinoid Tumor 6 85941 -NCIT:C177245 Advanced Lung Carcinoid Tumor 7 85942 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 6 85943 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 7 85944 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 7 85945 -NCIT:C165454 Unresectable Lung Neuroendocrine Neoplasm 5 85946 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 6 85947 -NCIT:C177246 Unresectable Lung Carcinoid Tumor 6 85948 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 6 85949 -NCIT:C176711 Recurrent Lung Neuroendocrine Neoplasm 5 85950 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 6 85951 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 7 85952 -NCIT:C4038 Lung Carcinoid Tumor 5 85953 -NCIT:C176705 Functioning Lung Carcinoid Tumor 6 85954 -NCIT:C176706 Non-Functioning Lung Carcinoid Tumor 6 85955 -NCIT:C177243 Metastatic Lung Carcinoid Tumor 6 85956 -NCIT:C177245 Advanced Lung Carcinoid Tumor 7 85957 -NCIT:C177246 Unresectable Lung Carcinoid Tumor 6 85958 -NCIT:C45550 Lung Typical Carcinoid Tumor 6 85959 -NCIT:C45551 Lung Atypical Carcinoid Tumor 6 85960 -NCIT:C45569 Lung Neuroendocrine Carcinoma 5 85961 -NCIT:C4917 Lung Small Cell Carcinoma 6 85962 -NCIT:C118815 Childhood Lung Small Cell Carcinoma 7 85963 -NCIT:C136496 Lung Small Cell Carcinoma by AJCC v7 Stage 7 85964 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 8 85965 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 9 85966 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 9 85967 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 8 85968 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 9 85969 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 9 85970 -NCIT:C6679 Stage III Lung Small Cell Carcinoma AJCC v7 8 85971 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 9 85972 -NCIT:C6681 Stage IIIB Lung Small Cell Carcinoma AJCC v7 9 85973 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 10 85974 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 10 85975 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 8 85976 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 7 85977 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 8 85978 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 8 85979 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 7 85980 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 85981 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 85982 -NCIT:C158495 Platinum-Sensitive Lung Small Cell Carcinoma 7 85983 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 7 85984 -NCIT:C188753 Lung Small Cell Carcinoma Neuroendocrine Subtype 7 85985 -NCIT:C188754 Lung Small Cell Carcinoma, Neuroendocrine-High Subtype 8 85986 -NCIT:C188755 Lung Small Cell Carcinoma, Neuroendocrine-Low Subtype 8 85987 -NCIT:C188756 Lung Small Cell Carcinoma Molecular Subtypes 7 85988 -NCIT:C188761 Lung Small Cell Carcinoma, A Subtype 8 85989 -NCIT:C188762 Lung Small Cell Carcinoma, N Subtype 8 85990 -NCIT:C188763 Lung Small Cell Carcinoma, P Subtype 8 85991 -NCIT:C188765 Lung Small Cell Carcinoma, I Subtype 8 85992 -NCIT:C188766 Lung Small Cell Carcinoma, Y Subtype 8 85993 -NCIT:C6683 Occult Lung Small Cell Carcinoma 7 85994 -NCIT:C7853 Limited Stage Lung Small Cell Carcinoma 7 85995 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 8 85996 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 8 85997 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 9 85998 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 9 85999 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 8 86000 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 9 86001 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 9 86002 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 8 86003 -NCIT:C9049 Extensive Stage Lung Small Cell Carcinoma 7 86004 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 8 86005 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 8 86006 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 8 86007 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 8 86008 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 7 86009 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 8 86010 -NCIT:C9137 Combined Lung Small Cell Carcinoma 7 86011 -NCIT:C9379 Combined Lung Small Cell Carcinoma and Lung Adenocarcinoma 8 86012 -NCIT:C9423 Combined Lung Small Cell and Squamous Cell Carcinoma 8 86013 -NCIT:C5672 Lung Large Cell Neuroendocrine Carcinoma 6 86014 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 7 86015 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 86016 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 86017 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 7 86018 -NCIT:C7267 Combined Lung Large Cell Neuroendocrine Carcinoma 7 86019 -NCIT:C7591 Combined Lung Carcinoma 6 86020 -NCIT:C7267 Combined Lung Large Cell Neuroendocrine Carcinoma 7 86021 -NCIT:C9137 Combined Lung Small Cell Carcinoma 7 86022 -NCIT:C9379 Combined Lung Small Cell Carcinoma and Lung Adenocarcinoma 8 86023 -NCIT:C9423 Combined Lung Small Cell and Squamous Cell Carcinoma 8 86024 -NCIT:C5671 Lung Hilum Neoplasm 4 86025 -NCIT:C4566 Malignant Lung Hilum Neoplasm 5 86026 -NCIT:C7454 Lung Hilum Carcinoma 6 86027 -NCIT:C4888 Benign Lung Hilum Neoplasm 5 86028 -NCIT:C60310 Lung Mature B-Cell Neoplasm 4 86029 -NCIT:C181211 Lung Follicular Lymphoma 5 86030 -NCIT:C185043 Lung Plasmacytoma 5 86031 -NCIT:C45605 Lung Diffuse Large B-Cell Lymphoma 5 86032 -NCIT:C183121 Lung Intravascular Large B-Cell Lymphoma 6 86033 -NCIT:C45607 Pulmonary Lymphomatoid Granulomatosis 5 86034 -NCIT:C5264 Lung Mucosa-Associated Lymphoid Tissue Lymphoma 5 86035 -NCIT:C7377 Malignant Lung Neoplasm 4 86036 -NCIT:C142785 Lung Malignant PEComa 5 86037 -NCIT:C157602 Metastatic Lung Neuroendocrine Neoplasm 5 86038 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 6 86039 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 86040 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 7 86041 -NCIT:C165446 Advanced Lung Neuroendocrine Neoplasm 6 86042 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 86043 -NCIT:C177245 Advanced Lung Carcinoid Tumor 7 86044 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 7 86045 -NCIT:C176715 Locally Advanced Lung Neuroendocrine Neoplasm 6 86046 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 7 86047 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 7 86048 -NCIT:C177243 Metastatic Lung Carcinoid Tumor 6 86049 -NCIT:C177245 Advanced Lung Carcinoid Tumor 7 86050 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 6 86051 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 7 86052 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 7 86053 -NCIT:C165454 Unresectable Lung Neuroendocrine Neoplasm 5 86054 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 6 86055 -NCIT:C177246 Unresectable Lung Carcinoid Tumor 6 86056 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 6 86057 -NCIT:C185043 Lung Plasmacytoma 5 86058 -NCIT:C190100 Childhood Malignant Lung Neoplasm 5 86059 -NCIT:C118814 Childhood Lung Non-Small Cell Carcinoma 6 86060 -NCIT:C118815 Childhood Lung Small Cell Carcinoma 6 86061 -NCIT:C3577 Metastatic Malignant Neoplasm in the Lung 5 86062 -NCIT:C185321 Extramedullary Disease in Plasma Cell Myeloma Involving the Lung 6 86063 -NCIT:C27408 Metastatic Carcinoma in the Lung 6 86064 -NCIT:C153224 Colorectal Carcinoma Metastatic in the Lung 7 86065 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 8 86066 -NCIT:C36300 Breast Carcinoma Metastatic in the Lung 7 86067 -NCIT:C36307 Prostate Carcinoma Metastatic in the Lung 7 86068 -NCIT:C4453 Lung Epithelioid Hemangioendothelioma 5 86069 -NCIT:C45652 Lung Melanoma 5 86070 -NCIT:C4566 Malignant Lung Hilum Neoplasm 5 86071 -NCIT:C7454 Lung Hilum Carcinoma 6 86072 -NCIT:C4794 Lung Lymphoma 5 86073 -NCIT:C181205 Lung Hodgkin Lymphoma 6 86074 -NCIT:C5684 Lung Non-Hodgkin Lymphoma 6 86075 -NCIT:C181211 Lung Follicular Lymphoma 7 86076 -NCIT:C188082 Lung Anaplastic Large Cell Lymphoma 7 86077 -NCIT:C45605 Lung Diffuse Large B-Cell Lymphoma 7 86078 -NCIT:C183121 Lung Intravascular Large B-Cell Lymphoma 8 86079 -NCIT:C5264 Lung Mucosa-Associated Lymphoid Tissue Lymphoma 7 86080 -NCIT:C4860 Lung Sarcoma 5 86081 -NCIT:C142825 Pulmonary Artery Intimal Sarcoma 6 86082 -NCIT:C142827 Primary Pulmonary Myxoid Sarcoma with EWSR1-CREB1 Fusion 6 86083 -NCIT:C173809 Lung Alveolar Soft Part Sarcoma 6 86084 -NCIT:C181201 Lung Rhabdomyosarcoma 6 86085 -NCIT:C188061 Lung Osteosarcoma 6 86086 -NCIT:C3551 Lung Kaposi Sarcoma 6 86087 -NCIT:C45631 Lung Synovial Sarcoma 6 86088 -NCIT:C45632 Lung Biphasic Synovial Sarcoma 7 86089 -NCIT:C45633 Lung Monophasic Synovial Sarcoma 7 86090 -NCIT:C5667 Lung Leiomyosarcoma 6 86091 -NCIT:C4878 Lung Carcinoma 5 86092 -NCIT:C136467 Lung Cancer by AJCC v8 Stage 6 86093 -NCIT:C136468 Occult Lung Cancer AJCC v8 7 86094 -NCIT:C136469 Stage 0 Lung Cancer AJCC v8 7 86095 -NCIT:C136470 Stage I Lung Cancer AJCC v8 7 86096 -NCIT:C136471 Stage IA1 Lung Cancer AJCC v8 8 86097 -NCIT:C136472 Stage IA2 Lung Cancer AJCC v8 8 86098 -NCIT:C136473 Stage IA3 Lung Cancer AJCC v8 8 86099 -NCIT:C136474 Stage IB Lung Cancer AJCC v8 8 86100 -NCIT:C136475 Stage II Lung Cancer AJCC v8 7 86101 -NCIT:C136476 Stage IIA Lung Cancer AJCC v8 8 86102 -NCIT:C136477 Stage IIB Lung Cancer AJCC v8 8 86103 -NCIT:C136478 Stage III Lung Cancer AJCC v8 7 86104 -NCIT:C136479 Stage IIIA Lung Cancer AJCC v8 8 86105 -NCIT:C136480 Stage IIIB Lung Cancer AJCC v8 8 86106 -NCIT:C136481 Stage IIIC Lung Cancer AJCC v8 8 86107 -NCIT:C136482 Stage IV Lung Cancer AJCC v8 7 86108 -NCIT:C136483 Stage IVA Lung Cancer AJCC v8 8 86109 -NCIT:C136484 Stage IVB Lung Cancer AJCC v8 8 86110 -NCIT:C141076 Refractory Lung Carcinoma 6 86111 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 7 86112 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 8 86113 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 8 86114 -NCIT:C153081 Refractory Lung Non-Small Cell Carcinoma 7 86115 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 8 86116 -NCIT:C176858 Refractory Lung Non-Squamous Non-Small Cell Carcinoma 8 86117 -NCIT:C179209 Refractory Lung Adenocarcinoma 8 86118 -NCIT:C173331 Refractory Lung Squamous Cell Carcinoma 7 86119 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 8 86120 -NCIT:C142830 Lung Myoepithelial Carcinoma 6 86121 -NCIT:C153202 Metastatic Lung Carcinoma 6 86122 -NCIT:C133503 Lung Carcinoma Metastatic in the Central Nervous System 7 86123 -NCIT:C36304 Lung Carcinoma Metastatic in the Brain 8 86124 -NCIT:C153203 Advanced Lung Carcinoma 7 86125 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 86126 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 8 86127 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 86128 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 86129 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 86130 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 86131 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 86132 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 86133 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 86134 -NCIT:C180922 Advanced Bronchogenic Carcinoma 8 86135 -NCIT:C153206 Locally Advanced Lung Carcinoma 7 86136 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 8 86137 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 86138 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 86139 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 86140 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 86141 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 86142 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 86143 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 86144 -NCIT:C156092 Metastatic Lung Squamous Cell Carcinoma 7 86145 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 86146 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 86147 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 86148 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 86149 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 86150 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 86151 -NCIT:C156094 Metastatic Lung Non-Small Cell Carcinoma 7 86152 -NCIT:C128798 Metastatic Lung Non-Squamous Non-Small Cell Carcinoma 8 86153 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 86154 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 86155 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 86156 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 86157 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 86158 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 86159 -NCIT:C155908 Metastatic Lung Adenocarcinoma 9 86160 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 86161 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 86162 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 9 86163 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 86164 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 86165 -NCIT:C156093 Metastatic Lung Adenosquamous Carcinoma 8 86166 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 86167 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 86168 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 86169 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 86170 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 86171 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 86172 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 8 86173 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 86174 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 86175 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 86176 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 86177 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 86178 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 86179 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 8 86180 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 86181 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 86182 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 86183 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 86184 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 86185 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 7 86186 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 86187 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 86188 -NCIT:C187195 Oligometastatic Lung Carcinoma 7 86189 -NCIT:C36305 Lung Carcinoma Metastatic in the Bone 7 86190 -NCIT:C36306 Lung Carcinoma Metastatic in the Liver 7 86191 -NCIT:C155902 Unresectable Lung Carcinoma 6 86192 -NCIT:C155901 Unresectable Lung Non-Small Cell Carcinoma 7 86193 -NCIT:C162642 Unresectable Lung Non-Squamous Non-Small Cell Carcinoma 8 86194 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 9 86195 -NCIT:C171612 Unresectable Lung Non-Small Cell Squamous Carcinoma 8 86196 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 86197 -NCIT:C174510 Unresectable Lung Adenocarcinoma 8 86198 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 7 86199 -NCIT:C162570 Localized Lung Carcinoma 6 86200 -NCIT:C183116 Lung Hyalinizing Clear Cell Carcinoma 6 86201 -NCIT:C188068 Lung Secretory Carcinoma 6 86202 -NCIT:C190952 Resectable Lung Carcinoma 6 86203 -NCIT:C165767 Resectable Lung Non-Small Cell Carcinoma 7 86204 -NCIT:C190954 Resectable Lung Adenocarcinoma 8 86205 -NCIT:C190953 Resectable Lung Squamous Cell Carcinoma 7 86206 -NCIT:C27637 Transplant-Related Lung Carcinoma 6 86207 -NCIT:C27925 Asbestos-Related Lung Carcinoma 6 86208 -NCIT:C2926 Lung Non-Small Cell Carcinoma 6 86209 -NCIT:C118814 Childhood Lung Non-Small Cell Carcinoma 7 86210 -NCIT:C133254 Lung Non-Small Cell Squamous Carcinoma 7 86211 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 86212 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 86213 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 86214 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 86215 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 8 86216 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 8 86217 -NCIT:C171612 Unresectable Lung Non-Small Cell Squamous Carcinoma 8 86218 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 86219 -NCIT:C45502 Lung Squamous Cell Carcinoma, Papillary Variant 8 86220 -NCIT:C45503 Lung Squamous Cell Carcinoma, Clear Cell Variant 8 86221 -NCIT:C135017 Lung Non-Squamous Non-Small Cell Carcinoma 7 86222 -NCIT:C128797 Recurrent Lung Non-Squamous Non-Small Cell Carcinoma 8 86223 -NCIT:C128798 Metastatic Lung Non-Squamous Non-Small Cell Carcinoma 8 86224 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 86225 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 86226 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 86227 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 86228 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 86229 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 86230 -NCIT:C155908 Metastatic Lung Adenocarcinoma 9 86231 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 86232 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 86233 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 9 86234 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 86235 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 86236 -NCIT:C162642 Unresectable Lung Non-Squamous Non-Small Cell Carcinoma 8 86237 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 9 86238 -NCIT:C176858 Refractory Lung Non-Squamous Non-Small Cell Carcinoma 8 86239 -NCIT:C136491 Lung Non-Small Cell Cancer by AJCC v7 Stage 7 86240 -NCIT:C136490 Lung Adenocarcinoma by AJCC v7 Stage 8 86241 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 9 86242 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 9 86243 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 86244 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 86245 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 9 86246 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 86247 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 86248 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 9 86249 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 86250 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 86251 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 9 86252 -NCIT:C136492 Lung Adenosquamous Carcinoma by AJCC v7 Stage 8 86253 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 9 86254 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 9 86255 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 86256 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 86257 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 9 86258 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 86259 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 86260 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 9 86261 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 86262 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 86263 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 9 86264 -NCIT:C136493 Lung Large Cell Carcinoma by AJCC v7 Stage 8 86265 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 9 86266 -NCIT:C6660 Stage II Lung Large Cell Carcinoma AJCC v7 9 86267 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 86268 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 86269 -NCIT:C8755 Stage I Lung Large Cell Carcinoma AJCC v7 9 86270 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 86271 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 86272 -NCIT:C8756 Stage IV Lung Large Cell Carcinoma AJCC v7 9 86273 -NCIT:C9257 Stage III Lung Large Cell Carcinoma AJCC v7 9 86274 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 86275 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 86276 -NCIT:C4012 Stage IV Lung Non-Small Cell Cancer AJCC v7 8 86277 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 9 86278 -NCIT:C8756 Stage IV Lung Large Cell Carcinoma AJCC v7 9 86279 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 9 86280 -NCIT:C6671 Stage I Lung Non-Small Cell Cancer AJCC v7 8 86281 -NCIT:C5652 Stage IA Lung Non-Small Cell Carcinoma AJCC v7 9 86282 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 86283 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 86284 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 86285 -NCIT:C5653 Stage IB Lung Non-Small Cell Carcinoma AJCC v7 9 86286 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 86287 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 86288 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 86289 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 9 86290 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 86291 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 86292 -NCIT:C8755 Stage I Lung Large Cell Carcinoma AJCC v7 9 86293 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 86294 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 86295 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 9 86296 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 86297 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 86298 -NCIT:C7777 Stage II Lung Non-Small Cell Cancer AJCC v7 8 86299 -NCIT:C5654 Stage IIB Lung Non-Small Cell Carcinoma AJCC v7 9 86300 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 86301 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 86302 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 86303 -NCIT:C5655 Stage IIA Lung Non-Small Cell Carcinoma AJCC v7 9 86304 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 86305 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 86306 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 86307 -NCIT:C6660 Stage II Lung Large Cell Carcinoma AJCC v7 9 86308 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 86309 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 86310 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 9 86311 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 86312 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 86313 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 9 86314 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 86315 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 86316 -NCIT:C7778 Stage III Lung Non-Small Cell Cancer AJCC v7 8 86317 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 9 86318 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 86319 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 86320 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 9 86321 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 86322 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 86323 -NCIT:C9102 Stage IIIA Lung Non-Small Cell Cancer AJCC v7 9 86324 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 86325 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 86326 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 86327 -NCIT:C9103 Stage IIIB Lung Non-Small Cell Cancer AJCC v7 9 86328 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 86329 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 86330 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 86331 -NCIT:C9257 Stage III Lung Large Cell Carcinoma AJCC v7 9 86332 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 86333 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 86334 -NCIT:C9104 Stage 0 Lung Non-Small Cell Cancer AJCC v6 and v7 8 86335 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 9 86336 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 9 86337 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 9 86338 -NCIT:C153081 Refractory Lung Non-Small Cell Carcinoma 7 86339 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 8 86340 -NCIT:C176858 Refractory Lung Non-Squamous Non-Small Cell Carcinoma 8 86341 -NCIT:C179209 Refractory Lung Adenocarcinoma 8 86342 -NCIT:C155901 Unresectable Lung Non-Small Cell Carcinoma 7 86343 -NCIT:C162642 Unresectable Lung Non-Squamous Non-Small Cell Carcinoma 8 86344 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 9 86345 -NCIT:C171612 Unresectable Lung Non-Small Cell Squamous Carcinoma 8 86346 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 86347 -NCIT:C174510 Unresectable Lung Adenocarcinoma 8 86348 -NCIT:C156094 Metastatic Lung Non-Small Cell Carcinoma 7 86349 -NCIT:C128798 Metastatic Lung Non-Squamous Non-Small Cell Carcinoma 8 86350 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 86351 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 86352 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 86353 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 86354 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 86355 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 86356 -NCIT:C155908 Metastatic Lung Adenocarcinoma 9 86357 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 86358 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 86359 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 9 86360 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 86361 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 86362 -NCIT:C156093 Metastatic Lung Adenosquamous Carcinoma 8 86363 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 86364 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 86365 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 86366 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 86367 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 86368 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 86369 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 8 86370 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 86371 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 86372 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 86373 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 86374 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 86375 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 86376 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 8 86377 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 86378 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 86379 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 86380 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 86381 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 86382 -NCIT:C165767 Resectable Lung Non-Small Cell Carcinoma 7 86383 -NCIT:C190954 Resectable Lung Adenocarcinoma 8 86384 -NCIT:C3512 Lung Adenocarcinoma 7 86385 -NCIT:C136486 Lung Adenocarcinoma In Situ 8 86386 -NCIT:C136716 Lung Non-Mucinous Adenocarcinoma In Situ 9 86387 -NCIT:C136717 Lung Mucinous Adenocarcinoma In Situ 9 86388 -NCIT:C136490 Lung Adenocarcinoma by AJCC v7 Stage 8 86389 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 9 86390 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 9 86391 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 86392 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 86393 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 9 86394 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 86395 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 86396 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 9 86397 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 86398 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 86399 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 9 86400 -NCIT:C136709 Invasive Lung Mucinous Adenocarcinoma 8 86401 -NCIT:C136710 Lung Enteric Adenocarcinoma 8 86402 -NCIT:C155908 Metastatic Lung Adenocarcinoma 8 86403 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 86404 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 86405 -NCIT:C174510 Unresectable Lung Adenocarcinoma 8 86406 -NCIT:C179209 Refractory Lung Adenocarcinoma 8 86407 -NCIT:C183109 Invasive Lung Non-Mucinous Adenocarcinoma 8 86408 -NCIT:C123160 Lepidic Adenocarcinoma 9 86409 -NCIT:C5649 Lung Acinar Adenocarcinoma 9 86410 -NCIT:C5650 Lung Papillary Adenocarcinoma 9 86411 -NCIT:C128847 Lung Micropapillary Adenocarcinoma 10 86412 -NCIT:C5651 Solid Lung Adenocarcinoma 9 86413 -NCIT:C190954 Resectable Lung Adenocarcinoma 8 86414 -NCIT:C2923 Minimally Invasive Lung Adenocarcinoma 8 86415 -NCIT:C7268 Minimally Invasive Lung Mucinous Adenocarcinoma 9 86416 -NCIT:C7269 Minimally Invasive Lung Non-Mucinous Adenocarcinoma 9 86417 -NCIT:C7270 Minimally Invasive Lung Mixed Non-Mucinous and Mucinous Adenocarcinoma 9 86418 -NCIT:C45509 Lung Fetal Adenocarcinoma 8 86419 -NCIT:C45512 Lung Colloid Adenocarcinoma 8 86420 -NCIT:C6699 Occult Lung Adenocarcinoma 8 86421 -NCIT:C8757 Recurrent Lung Adenocarcinoma 8 86422 -NCIT:C4450 Lung Large Cell Carcinoma 7 86423 -NCIT:C136493 Lung Large Cell Carcinoma by AJCC v7 Stage 8 86424 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 9 86425 -NCIT:C6660 Stage II Lung Large Cell Carcinoma AJCC v7 9 86426 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 86427 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 86428 -NCIT:C8755 Stage I Lung Large Cell Carcinoma AJCC v7 9 86429 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 86430 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 86431 -NCIT:C8756 Stage IV Lung Large Cell Carcinoma AJCC v7 9 86432 -NCIT:C9257 Stage III Lung Large Cell Carcinoma AJCC v7 9 86433 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 86434 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 86435 -NCIT:C4451 Lung Large Cell Carcinoma, Clear Cell Variant 8 86436 -NCIT:C6685 Occult Lung Large Cell Carcinoma 8 86437 -NCIT:C6876 Lung Large Cell Carcinoma with Rhabdoid Phenotype 8 86438 -NCIT:C7266 Lung Basaloid Large Cell Carcinoma 8 86439 -NCIT:C8753 Recurrent Lung Large Cell Carcinoma 8 86440 -NCIT:C45519 Lung Lymphoepithelial Carcinoma 7 86441 -NCIT:C45540 Lung Sarcomatoid Carcinoma 7 86442 -NCIT:C3732 Pulmonary Blastoma 8 86443 -NCIT:C4452 Lung Giant Cell Carcinoma 8 86444 -NCIT:C45541 Lung Spindle Cell Carcinoma 8 86445 -NCIT:C45542 Lung Pleomorphic Carcinoma 8 86446 -NCIT:C45543 Lung Carcinosarcoma 8 86447 -NCIT:C7783 Recurrent Lung Non-Small Cell Carcinoma 7 86448 -NCIT:C128797 Recurrent Lung Non-Squamous Non-Small Cell Carcinoma 8 86449 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 8 86450 -NCIT:C190195 Locally Recurrent Lung Non-Small Cell Carcinoma 8 86451 -NCIT:C8747 Recurrent Lung Adenosquamous Carcinoma 8 86452 -NCIT:C8753 Recurrent Lung Large Cell Carcinoma 8 86453 -NCIT:C8757 Recurrent Lung Adenocarcinoma 8 86454 -NCIT:C9038 Occult Lung Non-Small Cell Carcinoma 7 86455 -NCIT:C6684 Occult Lung Adenosquamous Carcinoma 8 86456 -NCIT:C6685 Occult Lung Large Cell Carcinoma 8 86457 -NCIT:C6699 Occult Lung Adenocarcinoma 8 86458 -NCIT:C9133 Lung Adenosquamous Carcinoma 7 86459 -NCIT:C136492 Lung Adenosquamous Carcinoma by AJCC v7 Stage 8 86460 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 9 86461 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 9 86462 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 86463 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 86464 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 9 86465 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 86466 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 86467 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 9 86468 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 86469 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 86470 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 9 86471 -NCIT:C156093 Metastatic Lung Adenosquamous Carcinoma 8 86472 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 86473 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 86474 -NCIT:C6684 Occult Lung Adenosquamous Carcinoma 8 86475 -NCIT:C8747 Recurrent Lung Adenosquamous Carcinoma 8 86476 -NCIT:C3493 Lung Squamous Cell Carcinoma 6 86477 -NCIT:C133254 Lung Non-Small Cell Squamous Carcinoma 7 86478 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 86479 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 86480 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 86481 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 86482 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 8 86483 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 8 86484 -NCIT:C171612 Unresectable Lung Non-Small Cell Squamous Carcinoma 8 86485 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 86486 -NCIT:C45502 Lung Squamous Cell Carcinoma, Papillary Variant 8 86487 -NCIT:C45503 Lung Squamous Cell Carcinoma, Clear Cell Variant 8 86488 -NCIT:C136494 Lung Squamous Cell Carcinoma by AJCC v7 Stage 7 86489 -NCIT:C8763 Stage 0 Lung Squamous Cell Carcinoma AJCC v6 and v7 8 86490 -NCIT:C8764 Stage I Lung Squamous Cell Carcinoma AJCC v7 8 86491 -NCIT:C6687 Stage IA Lung Squamous Cell Carcinoma AJCC v7 9 86492 -NCIT:C6692 Stage IB Lung Squamous Cell Carcinoma AJCC v7 9 86493 -NCIT:C8765 Stage II Lung Squamous Cell Carcinoma AJCC v7 8 86494 -NCIT:C6688 Stage IIA Lung Squamous Cell Carcinoma AJCC v7 9 86495 -NCIT:C6691 Stage IIB Lung Squamous Cell Carcinoma AJCC v7 9 86496 -NCIT:C8766 Stage III Lung Squamous Cell Carcinoma AJCC v7 8 86497 -NCIT:C6689 Stage IIIA Lung Squamous Cell Carcinoma AJCC v7 9 86498 -NCIT:C6690 Stage IIIB Lung Squamous Cell Carcinoma AJCC v7 9 86499 -NCIT:C8767 Stage IV Lung Squamous Cell Carcinoma AJCC v7 8 86500 -NCIT:C136713 Lung Keratinizing Squamous Cell Carcinoma 7 86501 -NCIT:C136714 Lung Non-Keratinizing Squamous Cell Carcinoma 7 86502 -NCIT:C136719 Lung Squamous Cell Carcinoma In Situ 7 86503 -NCIT:C8763 Stage 0 Lung Squamous Cell Carcinoma AJCC v6 and v7 8 86504 -NCIT:C156092 Metastatic Lung Squamous Cell Carcinoma 7 86505 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 86506 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 86507 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 86508 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 86509 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 86510 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 86511 -NCIT:C173331 Refractory Lung Squamous Cell Carcinoma 7 86512 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 8 86513 -NCIT:C190953 Resectable Lung Squamous Cell Carcinoma 7 86514 -NCIT:C45504 Lung Squamous Cell Carcinoma, Small Cell Variant 7 86515 -NCIT:C45507 Lung Basaloid Squamous Cell Carcinoma 7 86516 -NCIT:C5014 Recurrent Lung Squamous Cell Carcinoma 7 86517 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 8 86518 -NCIT:C6686 Occult Lung Squamous Cell Carcinoma 7 86519 -NCIT:C35875 Bronchogenic Carcinoma 6 86520 -NCIT:C180922 Advanced Bronchogenic Carcinoma 7 86521 -NCIT:C180923 Recurrent Bronchogenic Carcinoma 7 86522 -NCIT:C7779 Superior Sulcus Lung Carcinoma 7 86523 -NCIT:C45544 Lung Mucoepidermoid Carcinoma 6 86524 -NCIT:C45545 Lung Epithelial-Myoepithelial Carcinoma 6 86525 -NCIT:C45569 Lung Neuroendocrine Carcinoma 6 86526 -NCIT:C4917 Lung Small Cell Carcinoma 7 86527 -NCIT:C118815 Childhood Lung Small Cell Carcinoma 8 86528 -NCIT:C136496 Lung Small Cell Carcinoma by AJCC v7 Stage 8 86529 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 9 86530 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 10 86531 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 10 86532 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 9 86533 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 10 86534 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 10 86535 -NCIT:C6679 Stage III Lung Small Cell Carcinoma AJCC v7 9 86536 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 10 86537 -NCIT:C6681 Stage IIIB Lung Small Cell Carcinoma AJCC v7 10 86538 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 11 86539 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 11 86540 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 9 86541 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 8 86542 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 9 86543 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 9 86544 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 8 86545 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 9 86546 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 86547 -NCIT:C158495 Platinum-Sensitive Lung Small Cell Carcinoma 8 86548 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 8 86549 -NCIT:C188753 Lung Small Cell Carcinoma Neuroendocrine Subtype 8 86550 -NCIT:C188754 Lung Small Cell Carcinoma, Neuroendocrine-High Subtype 9 86551 -NCIT:C188755 Lung Small Cell Carcinoma, Neuroendocrine-Low Subtype 9 86552 -NCIT:C188756 Lung Small Cell Carcinoma Molecular Subtypes 8 86553 -NCIT:C188761 Lung Small Cell Carcinoma, A Subtype 9 86554 -NCIT:C188762 Lung Small Cell Carcinoma, N Subtype 9 86555 -NCIT:C188763 Lung Small Cell Carcinoma, P Subtype 9 86556 -NCIT:C188765 Lung Small Cell Carcinoma, I Subtype 9 86557 -NCIT:C188766 Lung Small Cell Carcinoma, Y Subtype 9 86558 -NCIT:C6683 Occult Lung Small Cell Carcinoma 8 86559 -NCIT:C7853 Limited Stage Lung Small Cell Carcinoma 8 86560 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 9 86561 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 9 86562 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 10 86563 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 10 86564 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 9 86565 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 10 86566 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 10 86567 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 9 86568 -NCIT:C9049 Extensive Stage Lung Small Cell Carcinoma 8 86569 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 9 86570 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 9 86571 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 9 86572 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 9 86573 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 8 86574 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 9 86575 -NCIT:C9137 Combined Lung Small Cell Carcinoma 8 86576 -NCIT:C9379 Combined Lung Small Cell Carcinoma and Lung Adenocarcinoma 9 86577 -NCIT:C9423 Combined Lung Small Cell and Squamous Cell Carcinoma 9 86578 -NCIT:C5672 Lung Large Cell Neuroendocrine Carcinoma 7 86579 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 8 86580 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 86581 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 86582 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 8 86583 -NCIT:C7267 Combined Lung Large Cell Neuroendocrine Carcinoma 8 86584 -NCIT:C7591 Combined Lung Carcinoma 7 86585 -NCIT:C7267 Combined Lung Large Cell Neuroendocrine Carcinoma 8 86586 -NCIT:C9137 Combined Lung Small Cell Carcinoma 8 86587 -NCIT:C9379 Combined Lung Small Cell Carcinoma and Lung Adenocarcinoma 9 86588 -NCIT:C9423 Combined Lung Small Cell and Squamous Cell Carcinoma 9 86589 -NCIT:C5641 Occult Lung Carcinoma 6 86590 -NCIT:C136468 Occult Lung Cancer AJCC v8 7 86591 -NCIT:C6683 Occult Lung Small Cell Carcinoma 7 86592 -NCIT:C6686 Occult Lung Squamous Cell Carcinoma 7 86593 -NCIT:C9038 Occult Lung Non-Small Cell Carcinoma 7 86594 -NCIT:C6684 Occult Lung Adenosquamous Carcinoma 8 86595 -NCIT:C6685 Occult Lung Large Cell Carcinoma 8 86596 -NCIT:C6699 Occult Lung Adenocarcinoma 8 86597 -NCIT:C5666 Lung Adenoid Cystic Carcinoma 6 86598 -NCIT:C7454 Lung Hilum Carcinoma 6 86599 -NCIT:C8953 Recurrent Lung Carcinoma 6 86600 -NCIT:C180923 Recurrent Bronchogenic Carcinoma 7 86601 -NCIT:C5014 Recurrent Lung Squamous Cell Carcinoma 7 86602 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 8 86603 -NCIT:C7783 Recurrent Lung Non-Small Cell Carcinoma 7 86604 -NCIT:C128797 Recurrent Lung Non-Squamous Non-Small Cell Carcinoma 8 86605 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 8 86606 -NCIT:C190195 Locally Recurrent Lung Non-Small Cell Carcinoma 8 86607 -NCIT:C8747 Recurrent Lung Adenosquamous Carcinoma 8 86608 -NCIT:C8753 Recurrent Lung Large Cell Carcinoma 8 86609 -NCIT:C8757 Recurrent Lung Adenocarcinoma 8 86610 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 7 86611 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 8 86612 -NCIT:C90519 Lung Cancer by AJCC v6 Stage 6 86613 -NCIT:C27467 Stage 0 Lung Cancer AJCC v6 and v7 7 86614 -NCIT:C9104 Stage 0 Lung Non-Small Cell Cancer AJCC v6 and v7 8 86615 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 9 86616 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 9 86617 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 9 86618 -NCIT:C8772 Stage I Lung Cancer AJCC v6 7 86619 -NCIT:C8773 Stage III Lung Cancer AJCC v6 7 86620 -NCIT:C8774 Stage IV Lung Cancer AJCC v6 7 86621 -NCIT:C8954 Stage II Lung Cancer AJCC v6 7 86622 -NCIT:C91232 Lung Cancer by AJCC v7 Stage 6 86623 -NCIT:C136491 Lung Non-Small Cell Cancer by AJCC v7 Stage 7 86624 -NCIT:C136490 Lung Adenocarcinoma by AJCC v7 Stage 8 86625 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 9 86626 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 9 86627 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 86628 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 86629 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 9 86630 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 86631 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 86632 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 9 86633 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 86634 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 86635 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 9 86636 -NCIT:C136492 Lung Adenosquamous Carcinoma by AJCC v7 Stage 8 86637 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 9 86638 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 9 86639 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 86640 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 86641 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 9 86642 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 86643 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 86644 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 9 86645 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 86646 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 86647 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 9 86648 -NCIT:C136493 Lung Large Cell Carcinoma by AJCC v7 Stage 8 86649 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 9 86650 -NCIT:C6660 Stage II Lung Large Cell Carcinoma AJCC v7 9 86651 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 86652 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 86653 -NCIT:C8755 Stage I Lung Large Cell Carcinoma AJCC v7 9 86654 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 86655 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 86656 -NCIT:C8756 Stage IV Lung Large Cell Carcinoma AJCC v7 9 86657 -NCIT:C9257 Stage III Lung Large Cell Carcinoma AJCC v7 9 86658 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 86659 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 86660 -NCIT:C4012 Stage IV Lung Non-Small Cell Cancer AJCC v7 8 86661 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 9 86662 -NCIT:C8756 Stage IV Lung Large Cell Carcinoma AJCC v7 9 86663 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 9 86664 -NCIT:C6671 Stage I Lung Non-Small Cell Cancer AJCC v7 8 86665 -NCIT:C5652 Stage IA Lung Non-Small Cell Carcinoma AJCC v7 9 86666 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 86667 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 86668 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 86669 -NCIT:C5653 Stage IB Lung Non-Small Cell Carcinoma AJCC v7 9 86670 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 86671 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 86672 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 86673 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 9 86674 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 86675 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 86676 -NCIT:C8755 Stage I Lung Large Cell Carcinoma AJCC v7 9 86677 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 86678 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 86679 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 9 86680 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 86681 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 86682 -NCIT:C7777 Stage II Lung Non-Small Cell Cancer AJCC v7 8 86683 -NCIT:C5654 Stage IIB Lung Non-Small Cell Carcinoma AJCC v7 9 86684 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 86685 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 86686 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 86687 -NCIT:C5655 Stage IIA Lung Non-Small Cell Carcinoma AJCC v7 9 86688 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 86689 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 86690 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 86691 -NCIT:C6660 Stage II Lung Large Cell Carcinoma AJCC v7 9 86692 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 86693 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 86694 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 9 86695 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 86696 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 86697 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 9 86698 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 86699 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 86700 -NCIT:C7778 Stage III Lung Non-Small Cell Cancer AJCC v7 8 86701 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 9 86702 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 86703 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 86704 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 9 86705 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 86706 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 86707 -NCIT:C9102 Stage IIIA Lung Non-Small Cell Cancer AJCC v7 9 86708 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 86709 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 86710 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 86711 -NCIT:C9103 Stage IIIB Lung Non-Small Cell Cancer AJCC v7 9 86712 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 86713 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 86714 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 86715 -NCIT:C9257 Stage III Lung Large Cell Carcinoma AJCC v7 9 86716 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 86717 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 86718 -NCIT:C9104 Stage 0 Lung Non-Small Cell Cancer AJCC v6 and v7 8 86719 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 9 86720 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 9 86721 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 9 86722 -NCIT:C136494 Lung Squamous Cell Carcinoma by AJCC v7 Stage 7 86723 -NCIT:C8763 Stage 0 Lung Squamous Cell Carcinoma AJCC v6 and v7 8 86724 -NCIT:C8764 Stage I Lung Squamous Cell Carcinoma AJCC v7 8 86725 -NCIT:C6687 Stage IA Lung Squamous Cell Carcinoma AJCC v7 9 86726 -NCIT:C6692 Stage IB Lung Squamous Cell Carcinoma AJCC v7 9 86727 -NCIT:C8765 Stage II Lung Squamous Cell Carcinoma AJCC v7 8 86728 -NCIT:C6688 Stage IIA Lung Squamous Cell Carcinoma AJCC v7 9 86729 -NCIT:C6691 Stage IIB Lung Squamous Cell Carcinoma AJCC v7 9 86730 -NCIT:C8766 Stage III Lung Squamous Cell Carcinoma AJCC v7 8 86731 -NCIT:C6689 Stage IIIA Lung Squamous Cell Carcinoma AJCC v7 9 86732 -NCIT:C6690 Stage IIIB Lung Squamous Cell Carcinoma AJCC v7 9 86733 -NCIT:C8767 Stage IV Lung Squamous Cell Carcinoma AJCC v7 8 86734 -NCIT:C136496 Lung Small Cell Carcinoma by AJCC v7 Stage 7 86735 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 8 86736 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 9 86737 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 9 86738 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 8 86739 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 9 86740 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 9 86741 -NCIT:C6679 Stage III Lung Small Cell Carcinoma AJCC v7 8 86742 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 9 86743 -NCIT:C6681 Stage IIIB Lung Small Cell Carcinoma AJCC v7 9 86744 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 10 86745 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 10 86746 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 8 86747 -NCIT:C27467 Stage 0 Lung Cancer AJCC v6 and v7 7 86748 -NCIT:C9104 Stage 0 Lung Non-Small Cell Cancer AJCC v6 and v7 8 86749 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 9 86750 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 9 86751 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 9 86752 -NCIT:C88888 Stage I Lung Cancer AJCC v7 7 86753 -NCIT:C5642 Stage IA Lung Cancer AJCC v7 8 86754 -NCIT:C5652 Stage IA Lung Non-Small Cell Carcinoma AJCC v7 9 86755 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 86756 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 86757 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 86758 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 9 86759 -NCIT:C6687 Stage IA Lung Squamous Cell Carcinoma AJCC v7 9 86760 -NCIT:C5643 Stage IB Lung Cancer AJCC v7 8 86761 -NCIT:C5653 Stage IB Lung Non-Small Cell Carcinoma AJCC v7 9 86762 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 86763 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 86764 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 86765 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 9 86766 -NCIT:C6692 Stage IB Lung Squamous Cell Carcinoma AJCC v7 9 86767 -NCIT:C6671 Stage I Lung Non-Small Cell Cancer AJCC v7 8 86768 -NCIT:C5652 Stage IA Lung Non-Small Cell Carcinoma AJCC v7 9 86769 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 86770 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 86771 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 86772 -NCIT:C5653 Stage IB Lung Non-Small Cell Carcinoma AJCC v7 9 86773 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 86774 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 86775 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 86776 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 9 86777 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 86778 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 86779 -NCIT:C8755 Stage I Lung Large Cell Carcinoma AJCC v7 9 86780 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 86781 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 86782 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 9 86783 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 86784 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 86785 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 8 86786 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 9 86787 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 9 86788 -NCIT:C8764 Stage I Lung Squamous Cell Carcinoma AJCC v7 8 86789 -NCIT:C6687 Stage IA Lung Squamous Cell Carcinoma AJCC v7 9 86790 -NCIT:C6692 Stage IB Lung Squamous Cell Carcinoma AJCC v7 9 86791 -NCIT:C88889 Stage II Lung Cancer AJCC v7 7 86792 -NCIT:C5644 Stage IIA Lung Cancer AJCC v7 8 86793 -NCIT:C5655 Stage IIA Lung Non-Small Cell Carcinoma AJCC v7 9 86794 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 86795 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 86796 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 86797 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 9 86798 -NCIT:C6688 Stage IIA Lung Squamous Cell Carcinoma AJCC v7 9 86799 -NCIT:C5645 Stage IIB Lung Cancer AJCC v7 8 86800 -NCIT:C5654 Stage IIB Lung Non-Small Cell Carcinoma AJCC v7 9 86801 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 86802 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 86803 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 86804 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 9 86805 -NCIT:C6691 Stage IIB Lung Squamous Cell Carcinoma AJCC v7 9 86806 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 8 86807 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 9 86808 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 9 86809 -NCIT:C7777 Stage II Lung Non-Small Cell Cancer AJCC v7 8 86810 -NCIT:C5654 Stage IIB Lung Non-Small Cell Carcinoma AJCC v7 9 86811 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 86812 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 86813 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 86814 -NCIT:C5655 Stage IIA Lung Non-Small Cell Carcinoma AJCC v7 9 86815 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 86816 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 86817 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 86818 -NCIT:C6660 Stage II Lung Large Cell Carcinoma AJCC v7 9 86819 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 86820 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 86821 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 9 86822 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 86823 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 86824 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 9 86825 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 86826 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 86827 -NCIT:C8765 Stage II Lung Squamous Cell Carcinoma AJCC v7 8 86828 -NCIT:C6688 Stage IIA Lung Squamous Cell Carcinoma AJCC v7 9 86829 -NCIT:C6691 Stage IIB Lung Squamous Cell Carcinoma AJCC v7 9 86830 -NCIT:C88890 Stage III Lung Cancer AJCC v7 7 86831 -NCIT:C5646 Stage IIIA Lung Cancer AJCC v7 8 86832 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 9 86833 -NCIT:C6689 Stage IIIA Lung Squamous Cell Carcinoma AJCC v7 9 86834 -NCIT:C9102 Stage IIIA Lung Non-Small Cell Cancer AJCC v7 9 86835 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 86836 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 86837 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 86838 -NCIT:C5647 Stage IIIB Lung Cancer AJCC v7 8 86839 -NCIT:C6681 Stage IIIB Lung Small Cell Carcinoma AJCC v7 9 86840 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 10 86841 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 10 86842 -NCIT:C6690 Stage IIIB Lung Squamous Cell Carcinoma AJCC v7 9 86843 -NCIT:C9103 Stage IIIB Lung Non-Small Cell Cancer AJCC v7 9 86844 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 86845 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 86846 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 86847 -NCIT:C6679 Stage III Lung Small Cell Carcinoma AJCC v7 8 86848 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 9 86849 -NCIT:C6681 Stage IIIB Lung Small Cell Carcinoma AJCC v7 9 86850 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 10 86851 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 10 86852 -NCIT:C7778 Stage III Lung Non-Small Cell Cancer AJCC v7 8 86853 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 9 86854 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 86855 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 86856 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 9 86857 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 86858 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 86859 -NCIT:C9102 Stage IIIA Lung Non-Small Cell Cancer AJCC v7 9 86860 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 86861 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 86862 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 86863 -NCIT:C9103 Stage IIIB Lung Non-Small Cell Cancer AJCC v7 9 86864 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 86865 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 86866 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 86867 -NCIT:C9257 Stage III Lung Large Cell Carcinoma AJCC v7 9 86868 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 86869 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 86870 -NCIT:C8766 Stage III Lung Squamous Cell Carcinoma AJCC v7 8 86871 -NCIT:C6689 Stage IIIA Lung Squamous Cell Carcinoma AJCC v7 9 86872 -NCIT:C6690 Stage IIIB Lung Squamous Cell Carcinoma AJCC v7 9 86873 -NCIT:C88891 Stage IV Lung Cancer AJCC v7 7 86874 -NCIT:C4012 Stage IV Lung Non-Small Cell Cancer AJCC v7 8 86875 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 9 86876 -NCIT:C8756 Stage IV Lung Large Cell Carcinoma AJCC v7 9 86877 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 9 86878 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 8 86879 -NCIT:C8767 Stage IV Lung Squamous Cell Carcinoma AJCC v7 8 86880 -NCIT:C7527 Malignant Superior Sulcus Neoplasm 5 86881 -NCIT:C7779 Superior Sulcus Lung Carcinoma 6 86882 -NCIT:C7436 Bronchial Intraepithelial Neoplasia 4 86883 -NCIT:C3221 Mediastinal Neoplasm 3 86884 -NCIT:C3549 Malignant Mediastinal Neoplasm 4 86885 -NCIT:C183374 Mediastinal Follicular Dendritic Cell Sarcoma 5 86886 -NCIT:C3578 Metastatic Malignant Neoplasm in the Mediastinum 5 86887 -NCIT:C45738 Mediastinal T Lymphoblastic Leukemia/Lymphoma 5 86888 -NCIT:C45739 Mediastinal T Acute Lymphoblastic Leukemia 6 86889 -NCIT:C45740 Mediastinal T Lymphoblastic Lymphoma 6 86890 -NCIT:C45741 Mediastinal Myeloid Sarcoma 5 86891 -NCIT:C146883 Mediastinal Granulocytic Sarcoma 6 86892 -NCIT:C6446 Malignant Mediastinal Germ Cell Tumor 5 86893 -NCIT:C146848 Malignant Mediastinal Germ Cell Tumor Stage Grouping of the Pediatric Study Group 6 86894 -NCIT:C146849 Stage I Malignant Mediastinal Germ Cell Tumor 7 86895 -NCIT:C146850 Stage II Malignant Mediastinal Germ Cell Tumor 7 86896 -NCIT:C146851 Stage III Malignant Mediastinal Germ Cell Tumor 7 86897 -NCIT:C146852 Stage IV Malignant Mediastinal Germ Cell Tumor 7 86898 -NCIT:C146861 Mediastinal Mixed Germ Cell Tumor 6 86899 -NCIT:C6444 Mediastinal Mixed Nongerminomatous Germ Cell Tumor 7 86900 -NCIT:C6442 Mediastinal Mixed Embryonal Carcinoma and Teratoma 8 86901 -NCIT:C45732 Mediastinal Germ Cell Tumor with Somatic-Type Malignancy 6 86902 -NCIT:C6439 Malignant Mediastinal Nongerminomatous Germ Cell Tumor 6 86903 -NCIT:C45733 Malignant Mediastinal Germ Cell Tumor with Associated Hematologic Malignancy 7 86904 -NCIT:C6440 Mediastinal Choriocarcinoma 7 86905 -NCIT:C6441 Mediastinal Embryonal Carcinoma 7 86906 -NCIT:C6443 Mediastinal Yolk Sac Tumor 7 86907 -NCIT:C6444 Mediastinal Mixed Nongerminomatous Germ Cell Tumor 7 86908 -NCIT:C6442 Mediastinal Mixed Embryonal Carcinoma and Teratoma 8 86909 -NCIT:C6812 Mediastinal Seminoma 6 86910 -NCIT:C6627 Mediastinal Ganglioneuroblastoma 5 86911 -NCIT:C6628 Mediastinal Neuroblastoma 5 86912 -NCIT:C6633 Mediastinal Lymphoma 5 86913 -NCIT:C153175 Recurrent Mediastinal Lymphoma 6 86914 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 7 86915 -NCIT:C153177 Refractory Mediastinal Lymphoma 6 86916 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 7 86917 -NCIT:C171037 Mediastinal Non-Hodgkin Lymphoma 6 86918 -NCIT:C45380 Thymic Mucosa-Associated Lymphoid Tissue Lymphoma 7 86919 -NCIT:C45740 Mediastinal T Lymphoblastic Lymphoma 7 86920 -NCIT:C9280 Primary Mediastinal (Thymic) Large B-Cell Lymphoma 7 86921 -NCIT:C141262 Primary Mediastinal (Thymic) Large B-Cell Lymphoma by Ann Arbor Stage 8 86922 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 86923 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 86924 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 86925 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 86926 -NCIT:C188455 Childhood Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 86927 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 86928 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 86929 -NCIT:C37870 Mediastinal B-Cell Lymphoma, Unclassifiable, with Features Intermediate between Diffuse Large B-Cell Lymphoma and Classic Hodgkin Lymphoma 6 86930 -NCIT:C6451 Thymic Lymphoma 6 86931 -NCIT:C45380 Thymic Mucosa-Associated Lymphoid Tissue Lymphoma 7 86932 -NCIT:C9280 Primary Mediastinal (Thymic) Large B-Cell Lymphoma 7 86933 -NCIT:C141262 Primary Mediastinal (Thymic) Large B-Cell Lymphoma by Ann Arbor Stage 8 86934 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 86935 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 86936 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 86937 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 86938 -NCIT:C188455 Childhood Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 86939 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 86940 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 86941 -NCIT:C95057 Thymic Hodgkin Lymphoma 7 86942 -NCIT:C6634 Mediastinal Hodgkin Lymphoma 6 86943 -NCIT:C95057 Thymic Hodgkin Lymphoma 7 86944 -NCIT:C6642 Malignant Mediastinal Soft Tissue Neoplasm 5 86945 -NCIT:C146988 Mediastinal Epithelioid Hemangioendothelioma 6 86946 -NCIT:C6606 Mediastinal Sarcoma 6 86947 -NCIT:C6613 Mediastinal Angiosarcoma 7 86948 -NCIT:C6614 Mediastinal Liposarcoma 7 86949 -NCIT:C95038 Thymoliposarcoma 8 86950 -NCIT:C6615 Mediastinal Extraskeletal Osteosarcoma 7 86951 -NCIT:C6617 Mediastinal Rhabdomyosarcoma 7 86952 -NCIT:C6618 Mediastinal Synovial Sarcoma 7 86953 -NCIT:C6619 Mediastinal Leiomyosarcoma 7 86954 -NCIT:C6626 Mediastinal Malignant Peripheral Nerve Sheath Tumor 7 86955 -NCIT:C6630 Malignant Melanotic Peripheral Nerve Sheath Tumor of the Mediastinum 8 86956 -NCIT:C3604 Benign Mediastinal Neoplasm 4 86957 -NCIT:C6445 Benign Mediastinal Germ Cell Tumor 5 86958 -NCIT:C7104 Mediastinal Mature Teratoma 6 86959 -NCIT:C6593 Benign Mediastinal Soft Tissue Neoplasm 5 86960 -NCIT:C146987 Mediastinal Hemangioma 6 86961 -NCIT:C27488 Mediastinal Lipomatosis 6 86962 -NCIT:C6595 Mediastinal Lymphangioma 6 86963 -NCIT:C6596 Mediastinal Chondroma 6 86964 -NCIT:C6598 Mediastinal Leiomyoma 6 86965 -NCIT:C6599 Mediastinal Lipoma 6 86966 -NCIT:C6600 Mediastinal Rhabdomyoma 6 86967 -NCIT:C6631 Mediastinal Neurofibroma 5 86968 -NCIT:C6632 Mediastinal Ganglioneuroma 5 86969 -NCIT:C6643 Mediastinal Schwannoma 5 86970 -NCIT:C6636 Mediastinal Psammomatous Schwannoma 6 86971 -NCIT:C45639 Mediastinal Thymoma 4 86972 -NCIT:C6437 Mediastinal Germ Cell Tumor 4 86973 -NCIT:C6438 Mediastinal Teratoma 5 86974 -NCIT:C4668 Mediastinal Immature Teratoma 6 86975 -NCIT:C7104 Mediastinal Mature Teratoma 6 86976 -NCIT:C6445 Benign Mediastinal Germ Cell Tumor 5 86977 -NCIT:C7104 Mediastinal Mature Teratoma 6 86978 -NCIT:C6446 Malignant Mediastinal Germ Cell Tumor 5 86979 -NCIT:C146848 Malignant Mediastinal Germ Cell Tumor Stage Grouping of the Pediatric Study Group 6 86980 -NCIT:C146849 Stage I Malignant Mediastinal Germ Cell Tumor 7 86981 -NCIT:C146850 Stage II Malignant Mediastinal Germ Cell Tumor 7 86982 -NCIT:C146851 Stage III Malignant Mediastinal Germ Cell Tumor 7 86983 -NCIT:C146852 Stage IV Malignant Mediastinal Germ Cell Tumor 7 86984 -NCIT:C146861 Mediastinal Mixed Germ Cell Tumor 6 86985 -NCIT:C6444 Mediastinal Mixed Nongerminomatous Germ Cell Tumor 7 86986 -NCIT:C6442 Mediastinal Mixed Embryonal Carcinoma and Teratoma 8 86987 -NCIT:C45732 Mediastinal Germ Cell Tumor with Somatic-Type Malignancy 6 86988 -NCIT:C6439 Malignant Mediastinal Nongerminomatous Germ Cell Tumor 6 86989 -NCIT:C45733 Malignant Mediastinal Germ Cell Tumor with Associated Hematologic Malignancy 7 86990 -NCIT:C6440 Mediastinal Choriocarcinoma 7 86991 -NCIT:C6441 Mediastinal Embryonal Carcinoma 7 86992 -NCIT:C6443 Mediastinal Yolk Sac Tumor 7 86993 -NCIT:C6444 Mediastinal Mixed Nongerminomatous Germ Cell Tumor 7 86994 -NCIT:C6442 Mediastinal Mixed Embryonal Carcinoma and Teratoma 8 86995 -NCIT:C6812 Mediastinal Seminoma 6 86996 -NCIT:C6601 Mediastinal Granular Cell Tumor 4 86997 -NCIT:C6624 Mediastinal Neurogenic Neoplasm 4 86998 -NCIT:C45743 Mediastinal Paraganglioma 5 86999 -NCIT:C5429 Childhood Mediastinal Neurogenic Neoplasm 5 87000 -NCIT:C6626 Mediastinal Malignant Peripheral Nerve Sheath Tumor 5 87001 -NCIT:C6630 Malignant Melanotic Peripheral Nerve Sheath Tumor of the Mediastinum 6 87002 -NCIT:C6627 Mediastinal Ganglioneuroblastoma 5 87003 -NCIT:C6628 Mediastinal Neuroblastoma 5 87004 -NCIT:C6631 Mediastinal Neurofibroma 5 87005 -NCIT:C6632 Mediastinal Ganglioneuroma 5 87006 -NCIT:C6643 Mediastinal Schwannoma 5 87007 -NCIT:C6636 Mediastinal Psammomatous Schwannoma 6 87008 -NCIT:C6637 Mediastinal Soft Tissue Neoplasm 4 87009 -NCIT:C45744 Mediastinal Solitary Fibrous Tumor 5 87010 -NCIT:C95044 Thymus Solitary Fibrous Tumor 6 87011 -NCIT:C6593 Benign Mediastinal Soft Tissue Neoplasm 5 87012 -NCIT:C146987 Mediastinal Hemangioma 6 87013 -NCIT:C27488 Mediastinal Lipomatosis 6 87014 -NCIT:C6595 Mediastinal Lymphangioma 6 87015 -NCIT:C6596 Mediastinal Chondroma 6 87016 -NCIT:C6598 Mediastinal Leiomyoma 6 87017 -NCIT:C6599 Mediastinal Lipoma 6 87018 -NCIT:C6600 Mediastinal Rhabdomyoma 6 87019 -NCIT:C6642 Malignant Mediastinal Soft Tissue Neoplasm 5 87020 -NCIT:C146988 Mediastinal Epithelioid Hemangioendothelioma 6 87021 -NCIT:C6606 Mediastinal Sarcoma 6 87022 -NCIT:C6613 Mediastinal Angiosarcoma 7 87023 -NCIT:C6614 Mediastinal Liposarcoma 7 87024 -NCIT:C95038 Thymoliposarcoma 8 87025 -NCIT:C6615 Mediastinal Extraskeletal Osteosarcoma 7 87026 -NCIT:C6617 Mediastinal Rhabdomyosarcoma 7 87027 -NCIT:C6618 Mediastinal Synovial Sarcoma 7 87028 -NCIT:C6619 Mediastinal Leiomyosarcoma 7 87029 -NCIT:C6626 Mediastinal Malignant Peripheral Nerve Sheath Tumor 7 87030 -NCIT:C6630 Malignant Melanotic Peripheral Nerve Sheath Tumor of the Mediastinum 8 87031 -NCIT:C3332 Pleural Neoplasm 3 87032 -NCIT:C3547 Malignant Pleural Neoplasm 4 87033 -NCIT:C188055 Pleural Proximal-Type Epithelioid Sarcoma 5 87034 -NCIT:C188063 Pleural Leiomyosarcoma 5 87035 -NCIT:C3579 Metastatic Malignant Neoplasm in the Pleura 5 87036 -NCIT:C27384 Pleural Carcinomatosis 6 87037 -NCIT:C45687 Pleural Lymphoma 5 87038 -NCIT:C183135 Pleural Primary Effusion Lymphoma 6 87039 -NCIT:C45691 Pyothorax-Associated Lymphoma 6 87040 -NCIT:C45695 Pleural Epithelioid Hemangioendothelioma 5 87041 -NCIT:C45696 Pleural Synovial Sarcoma 5 87042 -NCIT:C45697 Pleural Monophasic Synovial Sarcoma 6 87043 -NCIT:C45698 Pleural Biphasic Synovial Sarcoma 6 87044 -NCIT:C7376 Pleural Malignant Mesothelioma 5 87045 -NCIT:C136374 Pleural Malignant Mesothelioma by AJCC v7 Stage 6 87046 -NCIT:C6646 Stage I Pleural Malignant Mesothelioma AJCC v7 7 87047 -NCIT:C87195 Stage IA Pleural Malignant Mesothelioma AJCC v7 8 87048 -NCIT:C87196 Stage IB Pleural Malignant Mesothelioma AJCC v7 8 87049 -NCIT:C6647 Stage II Pleural Malignant Mesothelioma AJCC v7 7 87050 -NCIT:C6648 Stage III Pleural Malignant Mesothelioma AJCC v7 7 87051 -NCIT:C6649 Stage IV Pleural Malignant Mesothelioma AJCC v7 7 87052 -NCIT:C136399 Pleural Malignant Mesothelioma by AJCC v8 Stage 6 87053 -NCIT:C136400 Stage I Pleural Malignant Mesothelioma AJCC v8 7 87054 -NCIT:C136401 Stage IB Pleural Malignant Mesothelioma AJCC v8 8 87055 -NCIT:C136409 Stage IA Pleural Malignant Mesothelioma AJCC v8 8 87056 -NCIT:C136402 Stage II Pleural Malignant Mesothelioma AJCC v8 7 87057 -NCIT:C136403 Stage III Pleural Malignant Mesothelioma AJCC v8 7 87058 -NCIT:C136404 Stage IIIA Pleural Malignant Mesothelioma AJCC v8 8 87059 -NCIT:C136405 Stage IIIB Pleural Malignant Mesothelioma AJCC v8 8 87060 -NCIT:C136406 Stage IV Pleural Malignant Mesothelioma AJCC v8 7 87061 -NCIT:C154441 Resectable Pleural Malignant Mesothelioma 6 87062 -NCIT:C154444 Unresectable Pleural Malignant Mesothelioma 6 87063 -NCIT:C173616 Unresectable Pleural Epithelioid Mesothelioma 7 87064 -NCIT:C173617 Unresectable Pleural Sarcomatoid Mesothelioma 7 87065 -NCIT:C173618 Unresectable Pleural Biphasic Mesothelioma 7 87066 -NCIT:C159675 Refractory Pleural Malignant Mesothelioma 6 87067 -NCIT:C168545 Metastatic Pleural Malignant Mesothelioma 6 87068 -NCIT:C175936 Locally Advanced Pleural Malignant Mesothelioma 7 87069 -NCIT:C8706 Advanced Pleural Malignant Mesothelioma 7 87070 -NCIT:C45662 Pleural Epithelioid Mesothelioma 6 87071 -NCIT:C173616 Unresectable Pleural Epithelioid Mesothelioma 7 87072 -NCIT:C45663 Pleural Sarcomatoid Mesothelioma 6 87073 -NCIT:C173617 Unresectable Pleural Sarcomatoid Mesothelioma 7 87074 -NCIT:C45664 Pleural Desmoplastic Mesothelioma 6 87075 -NCIT:C45665 Pleural Biphasic Mesothelioma 6 87076 -NCIT:C173618 Unresectable Pleural Biphasic Mesothelioma 7 87077 -NCIT:C45666 Localized Pleural Malignant Mesothelioma 6 87078 -NCIT:C8707 Recurrent Pleural Malignant Mesothelioma 6 87079 -NCIT:C3603 Benign Pleural Neoplasm 4 87080 -NCIT:C183277 Pleural Calcifying Fibrous Tumor 5 87081 -NCIT:C4499 Pleural Adenomatoid Tumor 5 87082 -NCIT:C6644 Pleural Lipoma 5 87083 -NCIT:C4457 Pleural Solitary Fibrous Tumor 4 87084 -NCIT:C9351 Pleural Mesothelioma 4 87085 -NCIT:C183134 Pleural Mesothelioma In Situ 5 87086 -NCIT:C4499 Pleural Adenomatoid Tumor 5 87087 -NCIT:C45660 Pleural Well Differentiated Papillary Mesothelial Tumor 5 87088 -NCIT:C7376 Pleural Malignant Mesothelioma 5 87089 -NCIT:C136374 Pleural Malignant Mesothelioma by AJCC v7 Stage 6 87090 -NCIT:C6646 Stage I Pleural Malignant Mesothelioma AJCC v7 7 87091 -NCIT:C87195 Stage IA Pleural Malignant Mesothelioma AJCC v7 8 87092 -NCIT:C87196 Stage IB Pleural Malignant Mesothelioma AJCC v7 8 87093 -NCIT:C6647 Stage II Pleural Malignant Mesothelioma AJCC v7 7 87094 -NCIT:C6648 Stage III Pleural Malignant Mesothelioma AJCC v7 7 87095 -NCIT:C6649 Stage IV Pleural Malignant Mesothelioma AJCC v7 7 87096 -NCIT:C136399 Pleural Malignant Mesothelioma by AJCC v8 Stage 6 87097 -NCIT:C136400 Stage I Pleural Malignant Mesothelioma AJCC v8 7 87098 -NCIT:C136401 Stage IB Pleural Malignant Mesothelioma AJCC v8 8 87099 -NCIT:C136409 Stage IA Pleural Malignant Mesothelioma AJCC v8 8 87100 -NCIT:C136402 Stage II Pleural Malignant Mesothelioma AJCC v8 7 87101 -NCIT:C136403 Stage III Pleural Malignant Mesothelioma AJCC v8 7 87102 -NCIT:C136404 Stage IIIA Pleural Malignant Mesothelioma AJCC v8 8 87103 -NCIT:C136405 Stage IIIB Pleural Malignant Mesothelioma AJCC v8 8 87104 -NCIT:C136406 Stage IV Pleural Malignant Mesothelioma AJCC v8 7 87105 -NCIT:C154441 Resectable Pleural Malignant Mesothelioma 6 87106 -NCIT:C154444 Unresectable Pleural Malignant Mesothelioma 6 87107 -NCIT:C173616 Unresectable Pleural Epithelioid Mesothelioma 7 87108 -NCIT:C173617 Unresectable Pleural Sarcomatoid Mesothelioma 7 87109 -NCIT:C173618 Unresectable Pleural Biphasic Mesothelioma 7 87110 -NCIT:C159675 Refractory Pleural Malignant Mesothelioma 6 87111 -NCIT:C168545 Metastatic Pleural Malignant Mesothelioma 6 87112 -NCIT:C175936 Locally Advanced Pleural Malignant Mesothelioma 7 87113 -NCIT:C8706 Advanced Pleural Malignant Mesothelioma 7 87114 -NCIT:C45662 Pleural Epithelioid Mesothelioma 6 87115 -NCIT:C173616 Unresectable Pleural Epithelioid Mesothelioma 7 87116 -NCIT:C45663 Pleural Sarcomatoid Mesothelioma 6 87117 -NCIT:C173617 Unresectable Pleural Sarcomatoid Mesothelioma 7 87118 -NCIT:C45664 Pleural Desmoplastic Mesothelioma 6 87119 -NCIT:C45665 Pleural Biphasic Mesothelioma 6 87120 -NCIT:C173618 Unresectable Pleural Biphasic Mesothelioma 7 87121 -NCIT:C45666 Localized Pleural Malignant Mesothelioma 6 87122 -NCIT:C8707 Recurrent Pleural Malignant Mesothelioma 6 87123 -NCIT:C3412 Thymus Neoplasm 3 87124 -NCIT:C4458 Benign Thymus Neoplasm 4 87125 -NCIT:C45710 Thymus Lipofibroadenoma 5 87126 -NCIT:C4962 Malignant Thymus Neoplasm 4 87127 -NCIT:C162461 Metastatic Thymic Neuroendocrine Neoplasm 5 87128 -NCIT:C180871 Advanced Thymic Neuroendocrine Neoplasm 6 87129 -NCIT:C180872 Unresectable Thymic Neuroendocrine Neoplasm 5 87130 -NCIT:C45722 Combined Thymic Epithelial Neoplasm 5 87131 -NCIT:C115444 Recurrent Combined Thymic Epithelial Neoplasm 6 87132 -NCIT:C4903 Metastatic Malignant Neoplasm in the Thymus 5 87133 -NCIT:C6451 Thymic Lymphoma 5 87134 -NCIT:C45380 Thymic Mucosa-Associated Lymphoid Tissue Lymphoma 6 87135 -NCIT:C9280 Primary Mediastinal (Thymic) Large B-Cell Lymphoma 6 87136 -NCIT:C141262 Primary Mediastinal (Thymic) Large B-Cell Lymphoma by Ann Arbor Stage 7 87137 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 87138 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 87139 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 87140 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 87141 -NCIT:C188455 Childhood Primary Mediastinal (Thymic) Large B-Cell Lymphoma 7 87142 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 7 87143 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 7 87144 -NCIT:C95057 Thymic Hodgkin Lymphoma 6 87145 -NCIT:C7569 Thymic Carcinoma 5 87146 -NCIT:C146706 Mediastinal/Thymic NUT Carcinoma 6 87147 -NCIT:C148125 Unresectable Thymic Carcinoma 6 87148 -NCIT:C148127 Recurrent Thymic Carcinoma 6 87149 -NCIT:C148128 Metastatic Thymic Carcinoma 6 87150 -NCIT:C148126 Locally Advanced Thymic Carcinoma 7 87151 -NCIT:C159903 Advanced Thymic Carcinoma 7 87152 -NCIT:C148173 Refractory Thymic Carcinoma 6 87153 -NCIT:C171031 Thymic Neuroendocrine Carcinoma 6 87154 -NCIT:C6460 Thymic Small Cell Neuroendocrine Carcinoma 7 87155 -NCIT:C6461 Thymic Large Cell Neuroendocrine Carcinoma 7 87156 -NCIT:C183313 Thymic Carcinoma with Adenoid Cystic Carcinoma-Like Features 6 87157 -NCIT:C183316 Thymic Carcinoma, Not Otherwise Specified 6 87158 -NCIT:C35718 Thymic Undifferentiated Carcinoma 6 87159 -NCIT:C6455 Thymic Squamous Cell Carcinoma 6 87160 -NCIT:C6456 Thymic Basaloid Carcinoma 7 87161 -NCIT:C6457 Thymic Mucoepidermoid Carcinoma 6 87162 -NCIT:C6458 Thymic Adenosquamous Carcinoma 6 87163 -NCIT:C6459 Thymic Adenocarcinoma 6 87164 -NCIT:C146717 Thymic Hepatoid Adenocarcinoma 7 87165 -NCIT:C183314 Thymic Enteric-Type Adenocarcinoma 7 87166 -NCIT:C183315 Thymic Adenocarcinoma, Not Otherwise Specified 7 87167 -NCIT:C27937 Thymic Low Grade Papillary Adenocarcinoma 7 87168 -NCIT:C6462 Thymic Clear Cell Carcinoma 6 87169 -NCIT:C6463 Thymic Sarcomatoid Carcinoma 6 87170 -NCIT:C7998 Thymic Lymphoepithelial Carcinoma 6 87171 -NCIT:C7612 Malignant Thymoma 5 87172 -NCIT:C148099 Refractory Malignant Thymoma 6 87173 -NCIT:C6886 Malignant Type AB Thymoma 6 87174 -NCIT:C6889 Malignant Type B2 Thymoma 6 87175 -NCIT:C7904 Invasive Malignant Thymoma 6 87176 -NCIT:C159904 Advanced Malignant Thymoma 7 87177 -NCIT:C7905 Recurrent Malignant Thymoma 6 87178 -NCIT:C7996 Malignant Type B1 Thymoma 6 87179 -NCIT:C7997 Thymoma Type B3 6 87180 -NCIT:C7999 Malignant Type A Thymoma 6 87181 -NCIT:C9080 Noninvasive Malignant Thymoma 6 87182 -NCIT:C95038 Thymoliposarcoma 5 87183 -NCIT:C6450 Thymic Epithelial Neoplasm 4 87184 -NCIT:C136320 Thymic Epithelial Neoplasm by AJCC v8 Stage 5 87185 -NCIT:C136322 Stage I Thymic Epithelial Neoplasm AJCC v8 6 87186 -NCIT:C136348 Stage I Thymoma AJCC v8 7 87187 -NCIT:C136323 Stage II Thymic Epithelial Neoplasm AJCC v8 6 87188 -NCIT:C136349 Stage II Thymoma AJCC v8 7 87189 -NCIT:C136325 Stage III Thymic Epithelial Neoplasm AJCC v8 6 87190 -NCIT:C136327 Stage IIIA Thymic Epithelial Neoplasm AJCC v8 7 87191 -NCIT:C136351 Stage IIIA Thymoma AJCC v8 8 87192 -NCIT:C136328 Stage IIIB Thymic Epithelial Neoplasm AJCC v8 7 87193 -NCIT:C136352 Stage IIIB Thymoma AJCC v8 8 87194 -NCIT:C136350 Stage III Thymoma AJCC v8 7 87195 -NCIT:C136351 Stage IIIA Thymoma AJCC v8 8 87196 -NCIT:C136352 Stage IIIB Thymoma AJCC v8 8 87197 -NCIT:C136329 Stage IV Thymic Epithelial Neoplasm AJCC v8 6 87198 -NCIT:C136330 Stage IVA Thymic Epithelial Neoplasm AJCC v8 7 87199 -NCIT:C136354 Stage IVA Thymoma AJCC v8 8 87200 -NCIT:C136331 Stage IVB Thymic Epithelial Neoplasm AJCC v8 7 87201 -NCIT:C136356 Stage IVB Thymoma AJCC v8 8 87202 -NCIT:C136353 Stage IV Thymoma AJCC v8 7 87203 -NCIT:C136354 Stage IVA Thymoma AJCC v8 8 87204 -NCIT:C136356 Stage IVB Thymoma AJCC v8 8 87205 -NCIT:C136345 Thymoma by AJCC v8 Stage 6 87206 -NCIT:C136348 Stage I Thymoma AJCC v8 7 87207 -NCIT:C136349 Stage II Thymoma AJCC v8 7 87208 -NCIT:C136350 Stage III Thymoma AJCC v8 7 87209 -NCIT:C136351 Stage IIIA Thymoma AJCC v8 8 87210 -NCIT:C136352 Stage IIIB Thymoma AJCC v8 8 87211 -NCIT:C136353 Stage IV Thymoma AJCC v8 7 87212 -NCIT:C136354 Stage IVA Thymoma AJCC v8 8 87213 -NCIT:C136356 Stage IVB Thymoma AJCC v8 8 87214 -NCIT:C162460 Thymic Neuroendocrine Neoplasm 5 87215 -NCIT:C162461 Metastatic Thymic Neuroendocrine Neoplasm 6 87216 -NCIT:C180871 Advanced Thymic Neuroendocrine Neoplasm 7 87217 -NCIT:C171031 Thymic Neuroendocrine Carcinoma 6 87218 -NCIT:C6460 Thymic Small Cell Neuroendocrine Carcinoma 7 87219 -NCIT:C6461 Thymic Large Cell Neuroendocrine Carcinoma 7 87220 -NCIT:C180872 Unresectable Thymic Neuroendocrine Neoplasm 6 87221 -NCIT:C6430 Thymic Carcinoid Tumor 6 87222 -NCIT:C45719 Thymic Atypical Carcinoid Tumor 7 87223 -NCIT:C45720 Thymic Typical Carcinoid Tumor 7 87224 -NCIT:C3411 Thymoma 5 87225 -NCIT:C112006 Thymoma by Masaoka-Koga Stage 6 87226 -NCIT:C112007 Masaoka-Koga Stage I 7 87227 -NCIT:C112010 Masaoka-Koga Stage III 7 87228 -NCIT:C115033 Masaoka-Koga Stage II 7 87229 -NCIT:C112008 Masaoka-Koga Stage IIa 8 87230 -NCIT:C112009 Masaoka-Koga Stage IIb 8 87231 -NCIT:C115034 Masaoka-Koga Stage IV 7 87232 -NCIT:C112011 Masaoka-Koga Stage IVa 8 87233 -NCIT:C112012 Masaoka-Koga Stage IVb 8 87234 -NCIT:C136345 Thymoma by AJCC v8 Stage 6 87235 -NCIT:C136348 Stage I Thymoma AJCC v8 7 87236 -NCIT:C136349 Stage II Thymoma AJCC v8 7 87237 -NCIT:C136350 Stage III Thymoma AJCC v8 7 87238 -NCIT:C136351 Stage IIIA Thymoma AJCC v8 8 87239 -NCIT:C136352 Stage IIIB Thymoma AJCC v8 8 87240 -NCIT:C136353 Stage IV Thymoma AJCC v8 7 87241 -NCIT:C136354 Stage IVA Thymoma AJCC v8 8 87242 -NCIT:C136356 Stage IVB Thymoma AJCC v8 8 87243 -NCIT:C156268 Intrathyroidal Thymoma 6 87244 -NCIT:C45638 Intrapulmonary Thymoma 6 87245 -NCIT:C45639 Mediastinal Thymoma 6 87246 -NCIT:C45706 Micronodular Thymoma with Lymphoid Stroma 6 87247 -NCIT:C45707 Metaplastic Thymoma 6 87248 -NCIT:C45708 Microscopic Thymoma 6 87249 -NCIT:C45709 Sclerosing Thymoma 6 87250 -NCIT:C6453 Invasive Thymoma 6 87251 -NCIT:C45699 Minimally Invasive Thymoma 7 87252 -NCIT:C45700 Widely Invasive Thymoma 7 87253 -NCIT:C7904 Invasive Malignant Thymoma 7 87254 -NCIT:C159904 Advanced Malignant Thymoma 8 87255 -NCIT:C6454 Thymoma Type A 6 87256 -NCIT:C146640 Atypical Type A Thymoma 7 87257 -NCIT:C7999 Malignant Type A Thymoma 7 87258 -NCIT:C6885 Thymoma Type AB 6 87259 -NCIT:C6886 Malignant Type AB Thymoma 7 87260 -NCIT:C7114 Thymoma Type B 6 87261 -NCIT:C6887 Thymoma Type B1 7 87262 -NCIT:C7996 Malignant Type B1 Thymoma 8 87263 -NCIT:C6888 Thymoma Type B2 7 87264 -NCIT:C6889 Malignant Type B2 Thymoma 8 87265 -NCIT:C7997 Thymoma Type B3 7 87266 -NCIT:C7386 Encapsulated Thymoma 6 87267 -NCIT:C7612 Malignant Thymoma 6 87268 -NCIT:C148099 Refractory Malignant Thymoma 7 87269 -NCIT:C6886 Malignant Type AB Thymoma 7 87270 -NCIT:C6889 Malignant Type B2 Thymoma 7 87271 -NCIT:C7904 Invasive Malignant Thymoma 7 87272 -NCIT:C159904 Advanced Malignant Thymoma 8 87273 -NCIT:C7905 Recurrent Malignant Thymoma 7 87274 -NCIT:C7996 Malignant Type B1 Thymoma 7 87275 -NCIT:C7997 Thymoma Type B3 7 87276 -NCIT:C7999 Malignant Type A Thymoma 7 87277 -NCIT:C9080 Noninvasive Malignant Thymoma 7 87278 -NCIT:C95048 Ectopic Cervical Thymoma 6 87279 -NCIT:C45722 Combined Thymic Epithelial Neoplasm 5 87280 -NCIT:C115444 Recurrent Combined Thymic Epithelial Neoplasm 6 87281 -NCIT:C7569 Thymic Carcinoma 5 87282 -NCIT:C146706 Mediastinal/Thymic NUT Carcinoma 6 87283 -NCIT:C148125 Unresectable Thymic Carcinoma 6 87284 -NCIT:C148127 Recurrent Thymic Carcinoma 6 87285 -NCIT:C148128 Metastatic Thymic Carcinoma 6 87286 -NCIT:C148126 Locally Advanced Thymic Carcinoma 7 87287 -NCIT:C159903 Advanced Thymic Carcinoma 7 87288 -NCIT:C148173 Refractory Thymic Carcinoma 6 87289 -NCIT:C171031 Thymic Neuroendocrine Carcinoma 6 87290 -NCIT:C6460 Thymic Small Cell Neuroendocrine Carcinoma 7 87291 -NCIT:C6461 Thymic Large Cell Neuroendocrine Carcinoma 7 87292 -NCIT:C183313 Thymic Carcinoma with Adenoid Cystic Carcinoma-Like Features 6 87293 -NCIT:C183316 Thymic Carcinoma, Not Otherwise Specified 6 87294 -NCIT:C35718 Thymic Undifferentiated Carcinoma 6 87295 -NCIT:C6455 Thymic Squamous Cell Carcinoma 6 87296 -NCIT:C6456 Thymic Basaloid Carcinoma 7 87297 -NCIT:C6457 Thymic Mucoepidermoid Carcinoma 6 87298 -NCIT:C6458 Thymic Adenosquamous Carcinoma 6 87299 -NCIT:C6459 Thymic Adenocarcinoma 6 87300 -NCIT:C146717 Thymic Hepatoid Adenocarcinoma 7 87301 -NCIT:C183314 Thymic Enteric-Type Adenocarcinoma 7 87302 -NCIT:C183315 Thymic Adenocarcinoma, Not Otherwise Specified 7 87303 -NCIT:C27937 Thymic Low Grade Papillary Adenocarcinoma 7 87304 -NCIT:C6462 Thymic Clear Cell Carcinoma 6 87305 -NCIT:C6463 Thymic Sarcomatoid Carcinoma 6 87306 -NCIT:C7998 Thymic Lymphoepithelial Carcinoma 6 87307 -NCIT:C95044 Thymus Solitary Fibrous Tumor 4 87308 -NCIT:C35749 Axillary Neoplasm 3 87309 -NCIT:C35748 Metastatic Malignant Neoplasm in the Axilla 4 87310 -NCIT:C35750 Benign Axillary Neoplasm 4 87311 -NCIT:C35419 Axillary Lipoma 5 87312 -NCIT:C3576 Malignant Thoracic Neoplasm 3 87313 -NCIT:C142781 Thoracic NUT Carcinoma 4 87314 -NCIT:C146706 Mediastinal/Thymic NUT Carcinoma 5 87315 -NCIT:C155919 Metastatic Malignant Neoplasm in the Thoracic Cavity 4 87316 -NCIT:C35748 Metastatic Malignant Neoplasm in the Axilla 5 87317 -NCIT:C3577 Metastatic Malignant Neoplasm in the Lung 5 87318 -NCIT:C185321 Extramedullary Disease in Plasma Cell Myeloma Involving the Lung 6 87319 -NCIT:C27408 Metastatic Carcinoma in the Lung 6 87320 -NCIT:C153224 Colorectal Carcinoma Metastatic in the Lung 7 87321 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 8 87322 -NCIT:C36300 Breast Carcinoma Metastatic in the Lung 7 87323 -NCIT:C36307 Prostate Carcinoma Metastatic in the Lung 7 87324 -NCIT:C3578 Metastatic Malignant Neoplasm in the Mediastinum 5 87325 -NCIT:C3579 Metastatic Malignant Neoplasm in the Pleura 5 87326 -NCIT:C27384 Pleural Carcinomatosis 6 87327 -NCIT:C45762 Metastatic Malignant Neoplasm in the Pericardium 5 87328 -NCIT:C27385 Pericardial Carcinomatosis 6 87329 -NCIT:C4889 Metastatic Malignant Neoplasm in the Heart 5 87330 -NCIT:C5369 Secondary Heart Lymphoma 6 87331 -NCIT:C4903 Metastatic Malignant Neoplasm in the Thymus 5 87332 -NCIT:C8530 Metastatic Malignant Neoplasm in the Chest Wall 5 87333 -NCIT:C8527 Metastatic Malignant Neoplasm in the Sternum 6 87334 -NCIT:C176862 Metastatic Malignant Thoracic Neoplasm 4 87335 -NCIT:C148128 Metastatic Thymic Carcinoma 5 87336 -NCIT:C148126 Locally Advanced Thymic Carcinoma 6 87337 -NCIT:C159903 Advanced Thymic Carcinoma 6 87338 -NCIT:C153202 Metastatic Lung Carcinoma 5 87339 -NCIT:C133503 Lung Carcinoma Metastatic in the Central Nervous System 6 87340 -NCIT:C36304 Lung Carcinoma Metastatic in the Brain 7 87341 -NCIT:C153203 Advanced Lung Carcinoma 6 87342 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 87343 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 7 87344 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 87345 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 87346 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 87347 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 87348 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 8 87349 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 7 87350 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 87351 -NCIT:C180922 Advanced Bronchogenic Carcinoma 7 87352 -NCIT:C153206 Locally Advanced Lung Carcinoma 6 87353 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 7 87354 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 87355 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 87356 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 87357 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 87358 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 87359 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 8 87360 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 7 87361 -NCIT:C156092 Metastatic Lung Squamous Cell Carcinoma 6 87362 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 7 87363 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 87364 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 87365 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 87366 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 7 87367 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 87368 -NCIT:C156094 Metastatic Lung Non-Small Cell Carcinoma 6 87369 -NCIT:C128798 Metastatic Lung Non-Squamous Non-Small Cell Carcinoma 7 87370 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 87371 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 87372 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 87373 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 87374 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 87375 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 87376 -NCIT:C155908 Metastatic Lung Adenocarcinoma 8 87377 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 87378 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 87379 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 8 87380 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 87381 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 87382 -NCIT:C156093 Metastatic Lung Adenosquamous Carcinoma 7 87383 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 8 87384 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 8 87385 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 7 87386 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 87387 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 87388 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 87389 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 7 87390 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 87391 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 87392 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 87393 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 87394 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 87395 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 8 87396 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 7 87397 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 87398 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 87399 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 87400 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 87401 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 8 87402 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 6 87403 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 87404 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 7 87405 -NCIT:C187195 Oligometastatic Lung Carcinoma 6 87406 -NCIT:C36305 Lung Carcinoma Metastatic in the Bone 6 87407 -NCIT:C36306 Lung Carcinoma Metastatic in the Liver 6 87408 -NCIT:C176863 Advanced Malignant Thoracic Neoplasm 5 87409 -NCIT:C153203 Advanced Lung Carcinoma 6 87410 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 87411 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 7 87412 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 87413 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 87414 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 87415 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 87416 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 8 87417 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 7 87418 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 87419 -NCIT:C180922 Advanced Bronchogenic Carcinoma 7 87420 -NCIT:C159903 Advanced Thymic Carcinoma 6 87421 -NCIT:C165446 Advanced Lung Neuroendocrine Neoplasm 6 87422 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 87423 -NCIT:C177245 Advanced Lung Carcinoid Tumor 7 87424 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 7 87425 -NCIT:C8703 Advanced Pericardial Malignant Mesothelioma 6 87426 -NCIT:C8706 Advanced Pleural Malignant Mesothelioma 6 87427 -NCIT:C6413 Metastatic Intrathoracic Paravertebral Paraganglioma 5 87428 -NCIT:C179420 Unresectable Malignant Thoracic Neoplasm 4 87429 -NCIT:C148125 Unresectable Thymic Carcinoma 5 87430 -NCIT:C154444 Unresectable Pleural Malignant Mesothelioma 5 87431 -NCIT:C173616 Unresectable Pleural Epithelioid Mesothelioma 6 87432 -NCIT:C173617 Unresectable Pleural Sarcomatoid Mesothelioma 6 87433 -NCIT:C173618 Unresectable Pleural Biphasic Mesothelioma 6 87434 -NCIT:C155902 Unresectable Lung Carcinoma 5 87435 -NCIT:C155901 Unresectable Lung Non-Small Cell Carcinoma 6 87436 -NCIT:C162642 Unresectable Lung Non-Squamous Non-Small Cell Carcinoma 7 87437 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 8 87438 -NCIT:C171612 Unresectable Lung Non-Small Cell Squamous Carcinoma 7 87439 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 8 87440 -NCIT:C174510 Unresectable Lung Adenocarcinoma 7 87441 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 6 87442 -NCIT:C165454 Unresectable Lung Neuroendocrine Neoplasm 5 87443 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 6 87444 -NCIT:C177246 Unresectable Lung Carcinoid Tumor 6 87445 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 6 87446 -NCIT:C180872 Unresectable Thymic Neuroendocrine Neoplasm 5 87447 -NCIT:C183115 Thoracic SMARCA4-Deficient Undifferentiated Tumor 4 87448 -NCIT:C190098 Childhood Malignant Thoracic Neoplasm 4 87449 -NCIT:C188455 Childhood Primary Mediastinal (Thymic) Large B-Cell Lymphoma 5 87450 -NCIT:C190100 Childhood Malignant Lung Neoplasm 5 87451 -NCIT:C118814 Childhood Lung Non-Small Cell Carcinoma 6 87452 -NCIT:C118815 Childhood Lung Small Cell Carcinoma 6 87453 -NCIT:C5669 Pleuropulmonary Blastoma 5 87454 -NCIT:C45626 Type I Pleuropulmonary Blastoma 6 87455 -NCIT:C45627 Type II Pleuropulmonary Blastoma 6 87456 -NCIT:C45628 Type III Pleuropulmonary Blastoma 6 87457 -NCIT:C3547 Malignant Pleural Neoplasm 4 87458 -NCIT:C188055 Pleural Proximal-Type Epithelioid Sarcoma 5 87459 -NCIT:C188063 Pleural Leiomyosarcoma 5 87460 -NCIT:C3579 Metastatic Malignant Neoplasm in the Pleura 5 87461 -NCIT:C27384 Pleural Carcinomatosis 6 87462 -NCIT:C45687 Pleural Lymphoma 5 87463 -NCIT:C183135 Pleural Primary Effusion Lymphoma 6 87464 -NCIT:C45691 Pyothorax-Associated Lymphoma 6 87465 -NCIT:C45695 Pleural Epithelioid Hemangioendothelioma 5 87466 -NCIT:C45696 Pleural Synovial Sarcoma 5 87467 -NCIT:C45697 Pleural Monophasic Synovial Sarcoma 6 87468 -NCIT:C45698 Pleural Biphasic Synovial Sarcoma 6 87469 -NCIT:C7376 Pleural Malignant Mesothelioma 5 87470 -NCIT:C136374 Pleural Malignant Mesothelioma by AJCC v7 Stage 6 87471 -NCIT:C6646 Stage I Pleural Malignant Mesothelioma AJCC v7 7 87472 -NCIT:C87195 Stage IA Pleural Malignant Mesothelioma AJCC v7 8 87473 -NCIT:C87196 Stage IB Pleural Malignant Mesothelioma AJCC v7 8 87474 -NCIT:C6647 Stage II Pleural Malignant Mesothelioma AJCC v7 7 87475 -NCIT:C6648 Stage III Pleural Malignant Mesothelioma AJCC v7 7 87476 -NCIT:C6649 Stage IV Pleural Malignant Mesothelioma AJCC v7 7 87477 -NCIT:C136399 Pleural Malignant Mesothelioma by AJCC v8 Stage 6 87478 -NCIT:C136400 Stage I Pleural Malignant Mesothelioma AJCC v8 7 87479 -NCIT:C136401 Stage IB Pleural Malignant Mesothelioma AJCC v8 8 87480 -NCIT:C136409 Stage IA Pleural Malignant Mesothelioma AJCC v8 8 87481 -NCIT:C136402 Stage II Pleural Malignant Mesothelioma AJCC v8 7 87482 -NCIT:C136403 Stage III Pleural Malignant Mesothelioma AJCC v8 7 87483 -NCIT:C136404 Stage IIIA Pleural Malignant Mesothelioma AJCC v8 8 87484 -NCIT:C136405 Stage IIIB Pleural Malignant Mesothelioma AJCC v8 8 87485 -NCIT:C136406 Stage IV Pleural Malignant Mesothelioma AJCC v8 7 87486 -NCIT:C154441 Resectable Pleural Malignant Mesothelioma 6 87487 -NCIT:C154444 Unresectable Pleural Malignant Mesothelioma 6 87488 -NCIT:C173616 Unresectable Pleural Epithelioid Mesothelioma 7 87489 -NCIT:C173617 Unresectable Pleural Sarcomatoid Mesothelioma 7 87490 -NCIT:C173618 Unresectable Pleural Biphasic Mesothelioma 7 87491 -NCIT:C159675 Refractory Pleural Malignant Mesothelioma 6 87492 -NCIT:C168545 Metastatic Pleural Malignant Mesothelioma 6 87493 -NCIT:C175936 Locally Advanced Pleural Malignant Mesothelioma 7 87494 -NCIT:C8706 Advanced Pleural Malignant Mesothelioma 7 87495 -NCIT:C45662 Pleural Epithelioid Mesothelioma 6 87496 -NCIT:C173616 Unresectable Pleural Epithelioid Mesothelioma 7 87497 -NCIT:C45663 Pleural Sarcomatoid Mesothelioma 6 87498 -NCIT:C173617 Unresectable Pleural Sarcomatoid Mesothelioma 7 87499 -NCIT:C45664 Pleural Desmoplastic Mesothelioma 6 87500 -NCIT:C45665 Pleural Biphasic Mesothelioma 6 87501 -NCIT:C173618 Unresectable Pleural Biphasic Mesothelioma 7 87502 -NCIT:C45666 Localized Pleural Malignant Mesothelioma 6 87503 -NCIT:C8707 Recurrent Pleural Malignant Mesothelioma 6 87504 -NCIT:C3548 Malignant Cardiac Neoplasm 4 87505 -NCIT:C4568 Malignant Epicardial Neoplasm 5 87506 -NCIT:C4569 Malignant Myocardial Neoplasm 5 87507 -NCIT:C4570 Malignant Endocardial Neoplasm 5 87508 -NCIT:C4889 Metastatic Malignant Neoplasm in the Heart 5 87509 -NCIT:C5369 Secondary Heart Lymphoma 6 87510 -NCIT:C5362 Cardiac Epithelioid Hemangioendothelioma 5 87511 -NCIT:C5368 Cardiac Lymphoma 5 87512 -NCIT:C183146 Cardiac Diffuse Large B-Cell Lymphoma 6 87513 -NCIT:C183141 Cardiac Fibrin-Associated Diffuse Large B-Cell Lymphoma 7 87514 -NCIT:C5370 Cardiac Myeloid Sarcoma 5 87515 -NCIT:C5371 Malignant Cardiac Germ Cell Tumor 5 87516 -NCIT:C147006 Cardiac Yolk Sac Tumor 6 87517 -NCIT:C5392 Metastatic Cardiac Paraganglioma 5 87518 -NCIT:C7723 Cardiac Sarcoma 5 87519 -NCIT:C147003 Cardiac Extraskeletal Osteosarcoma 6 87520 -NCIT:C147097 Cardiac Angiosarcoma 6 87521 -NCIT:C45755 Cardiac Undifferentiated Pleomorphic Sarcoma 6 87522 -NCIT:C45756 Cardiac Synovial Sarcoma 6 87523 -NCIT:C45757 Cardiac Biphasic Synovial Sarcoma 7 87524 -NCIT:C45758 Cardiac Monophasic Synovial Sarcoma 7 87525 -NCIT:C45759 Cardiac Rhabdomyosarcoma 6 87526 -NCIT:C5361 Cardiac Fibrosarcoma 6 87527 -NCIT:C147004 Cardiac Myxofibrosarcoma 7 87528 -NCIT:C5363 Cardiac Kaposi Sarcoma 6 87529 -NCIT:C5364 Cardiac Leiomyosarcoma 6 87530 -NCIT:C5367 Cardiac Malignant Peripheral Nerve Sheath Tumor 6 87531 -NCIT:C3549 Malignant Mediastinal Neoplasm 4 87532 -NCIT:C183374 Mediastinal Follicular Dendritic Cell Sarcoma 5 87533 -NCIT:C3578 Metastatic Malignant Neoplasm in the Mediastinum 5 87534 -NCIT:C45738 Mediastinal T Lymphoblastic Leukemia/Lymphoma 5 87535 -NCIT:C45739 Mediastinal T Acute Lymphoblastic Leukemia 6 87536 -NCIT:C45740 Mediastinal T Lymphoblastic Lymphoma 6 87537 -NCIT:C45741 Mediastinal Myeloid Sarcoma 5 87538 -NCIT:C146883 Mediastinal Granulocytic Sarcoma 6 87539 -NCIT:C6446 Malignant Mediastinal Germ Cell Tumor 5 87540 -NCIT:C146848 Malignant Mediastinal Germ Cell Tumor Stage Grouping of the Pediatric Study Group 6 87541 -NCIT:C146849 Stage I Malignant Mediastinal Germ Cell Tumor 7 87542 -NCIT:C146850 Stage II Malignant Mediastinal Germ Cell Tumor 7 87543 -NCIT:C146851 Stage III Malignant Mediastinal Germ Cell Tumor 7 87544 -NCIT:C146852 Stage IV Malignant Mediastinal Germ Cell Tumor 7 87545 -NCIT:C146861 Mediastinal Mixed Germ Cell Tumor 6 87546 -NCIT:C6444 Mediastinal Mixed Nongerminomatous Germ Cell Tumor 7 87547 -NCIT:C6442 Mediastinal Mixed Embryonal Carcinoma and Teratoma 8 87548 -NCIT:C45732 Mediastinal Germ Cell Tumor with Somatic-Type Malignancy 6 87549 -NCIT:C6439 Malignant Mediastinal Nongerminomatous Germ Cell Tumor 6 87550 -NCIT:C45733 Malignant Mediastinal Germ Cell Tumor with Associated Hematologic Malignancy 7 87551 -NCIT:C6440 Mediastinal Choriocarcinoma 7 87552 -NCIT:C6441 Mediastinal Embryonal Carcinoma 7 87553 -NCIT:C6443 Mediastinal Yolk Sac Tumor 7 87554 -NCIT:C6444 Mediastinal Mixed Nongerminomatous Germ Cell Tumor 7 87555 -NCIT:C6442 Mediastinal Mixed Embryonal Carcinoma and Teratoma 8 87556 -NCIT:C6812 Mediastinal Seminoma 6 87557 -NCIT:C6627 Mediastinal Ganglioneuroblastoma 5 87558 -NCIT:C6628 Mediastinal Neuroblastoma 5 87559 -NCIT:C6633 Mediastinal Lymphoma 5 87560 -NCIT:C153175 Recurrent Mediastinal Lymphoma 6 87561 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 7 87562 -NCIT:C153177 Refractory Mediastinal Lymphoma 6 87563 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 7 87564 -NCIT:C171037 Mediastinal Non-Hodgkin Lymphoma 6 87565 -NCIT:C45380 Thymic Mucosa-Associated Lymphoid Tissue Lymphoma 7 87566 -NCIT:C45740 Mediastinal T Lymphoblastic Lymphoma 7 87567 -NCIT:C9280 Primary Mediastinal (Thymic) Large B-Cell Lymphoma 7 87568 -NCIT:C141262 Primary Mediastinal (Thymic) Large B-Cell Lymphoma by Ann Arbor Stage 8 87569 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 87570 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 87571 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 87572 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 87573 -NCIT:C188455 Childhood Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 87574 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 87575 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 87576 -NCIT:C37870 Mediastinal B-Cell Lymphoma, Unclassifiable, with Features Intermediate between Diffuse Large B-Cell Lymphoma and Classic Hodgkin Lymphoma 6 87577 -NCIT:C6451 Thymic Lymphoma 6 87578 -NCIT:C45380 Thymic Mucosa-Associated Lymphoid Tissue Lymphoma 7 87579 -NCIT:C9280 Primary Mediastinal (Thymic) Large B-Cell Lymphoma 7 87580 -NCIT:C141262 Primary Mediastinal (Thymic) Large B-Cell Lymphoma by Ann Arbor Stage 8 87581 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 87582 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 87583 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 87584 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 87585 -NCIT:C188455 Childhood Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 87586 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 87587 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 87588 -NCIT:C95057 Thymic Hodgkin Lymphoma 7 87589 -NCIT:C6634 Mediastinal Hodgkin Lymphoma 6 87590 -NCIT:C95057 Thymic Hodgkin Lymphoma 7 87591 -NCIT:C6642 Malignant Mediastinal Soft Tissue Neoplasm 5 87592 -NCIT:C146988 Mediastinal Epithelioid Hemangioendothelioma 6 87593 -NCIT:C6606 Mediastinal Sarcoma 6 87594 -NCIT:C6613 Mediastinal Angiosarcoma 7 87595 -NCIT:C6614 Mediastinal Liposarcoma 7 87596 -NCIT:C95038 Thymoliposarcoma 8 87597 -NCIT:C6615 Mediastinal Extraskeletal Osteosarcoma 7 87598 -NCIT:C6617 Mediastinal Rhabdomyosarcoma 7 87599 -NCIT:C6618 Mediastinal Synovial Sarcoma 7 87600 -NCIT:C6619 Mediastinal Leiomyosarcoma 7 87601 -NCIT:C6626 Mediastinal Malignant Peripheral Nerve Sheath Tumor 7 87602 -NCIT:C6630 Malignant Melanotic Peripheral Nerve Sheath Tumor of the Mediastinum 8 87603 -NCIT:C45625 Malignant Lung and Pleural Neoplasm 4 87604 -NCIT:C5669 Pleuropulmonary Blastoma 5 87605 -NCIT:C45626 Type I Pleuropulmonary Blastoma 6 87606 -NCIT:C45627 Type II Pleuropulmonary Blastoma 6 87607 -NCIT:C45628 Type III Pleuropulmonary Blastoma 6 87608 -NCIT:C4567 Malignant Pericardial Neoplasm 4 87609 -NCIT:C147098 Pericardial Sarcoma 5 87610 -NCIT:C147101 Pericardial Angiosarcoma 6 87611 -NCIT:C147102 Pericardial Synovial Sarcoma 6 87612 -NCIT:C147104 Malignant Pericardial Germ Cell Tumor 5 87613 -NCIT:C147105 Pericardial Yolk Sac Tumor 6 87614 -NCIT:C183136 Pericardial Primary Effusion Lymphoma 5 87615 -NCIT:C45762 Metastatic Malignant Neoplasm in the Pericardium 5 87616 -NCIT:C27385 Pericardial Carcinomatosis 6 87617 -NCIT:C7631 Pericardial Malignant Mesothelioma 5 87618 -NCIT:C8703 Advanced Pericardial Malignant Mesothelioma 6 87619 -NCIT:C9253 Recurrent Pericardial Malignant Mesothelioma 6 87620 -NCIT:C7753 Malignant Pericarditis 5 87621 -NCIT:C4580 Malignant Chest Wall Neoplasm 4 87622 -NCIT:C155873 Chest Wall Sarcoma 5 87623 -NCIT:C6711 Chest Wall Solitary Plasmacytoma 5 87624 -NCIT:C6712 Chest Wall Lymphoma 5 87625 -NCIT:C6716 Sternal Lymphoma 6 87626 -NCIT:C6723 Chest Wall Hodgkin Lymphoma 6 87627 -NCIT:C6724 Malignant Chest Wall Bone Neoplasm 5 87628 -NCIT:C8408 Malignant Sternal Neoplasm 5 87629 -NCIT:C6716 Sternal Lymphoma 6 87630 -NCIT:C8527 Metastatic Malignant Neoplasm in the Sternum 6 87631 -NCIT:C8530 Metastatic Malignant Neoplasm in the Chest Wall 5 87632 -NCIT:C8527 Metastatic Malignant Neoplasm in the Sternum 6 87633 -NCIT:C4962 Malignant Thymus Neoplasm 4 87634 -NCIT:C162461 Metastatic Thymic Neuroendocrine Neoplasm 5 87635 -NCIT:C180871 Advanced Thymic Neuroendocrine Neoplasm 6 87636 -NCIT:C180872 Unresectable Thymic Neuroendocrine Neoplasm 5 87637 -NCIT:C45722 Combined Thymic Epithelial Neoplasm 5 87638 -NCIT:C115444 Recurrent Combined Thymic Epithelial Neoplasm 6 87639 -NCIT:C4903 Metastatic Malignant Neoplasm in the Thymus 5 87640 -NCIT:C6451 Thymic Lymphoma 5 87641 -NCIT:C45380 Thymic Mucosa-Associated Lymphoid Tissue Lymphoma 6 87642 -NCIT:C9280 Primary Mediastinal (Thymic) Large B-Cell Lymphoma 6 87643 -NCIT:C141262 Primary Mediastinal (Thymic) Large B-Cell Lymphoma by Ann Arbor Stage 7 87644 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 87645 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 87646 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 87647 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 87648 -NCIT:C188455 Childhood Primary Mediastinal (Thymic) Large B-Cell Lymphoma 7 87649 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 7 87650 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 7 87651 -NCIT:C95057 Thymic Hodgkin Lymphoma 6 87652 -NCIT:C7569 Thymic Carcinoma 5 87653 -NCIT:C146706 Mediastinal/Thymic NUT Carcinoma 6 87654 -NCIT:C148125 Unresectable Thymic Carcinoma 6 87655 -NCIT:C148127 Recurrent Thymic Carcinoma 6 87656 -NCIT:C148128 Metastatic Thymic Carcinoma 6 87657 -NCIT:C148126 Locally Advanced Thymic Carcinoma 7 87658 -NCIT:C159903 Advanced Thymic Carcinoma 7 87659 -NCIT:C148173 Refractory Thymic Carcinoma 6 87660 -NCIT:C171031 Thymic Neuroendocrine Carcinoma 6 87661 -NCIT:C6460 Thymic Small Cell Neuroendocrine Carcinoma 7 87662 -NCIT:C6461 Thymic Large Cell Neuroendocrine Carcinoma 7 87663 -NCIT:C183313 Thymic Carcinoma with Adenoid Cystic Carcinoma-Like Features 6 87664 -NCIT:C183316 Thymic Carcinoma, Not Otherwise Specified 6 87665 -NCIT:C35718 Thymic Undifferentiated Carcinoma 6 87666 -NCIT:C6455 Thymic Squamous Cell Carcinoma 6 87667 -NCIT:C6456 Thymic Basaloid Carcinoma 7 87668 -NCIT:C6457 Thymic Mucoepidermoid Carcinoma 6 87669 -NCIT:C6458 Thymic Adenosquamous Carcinoma 6 87670 -NCIT:C6459 Thymic Adenocarcinoma 6 87671 -NCIT:C146717 Thymic Hepatoid Adenocarcinoma 7 87672 -NCIT:C183314 Thymic Enteric-Type Adenocarcinoma 7 87673 -NCIT:C183315 Thymic Adenocarcinoma, Not Otherwise Specified 7 87674 -NCIT:C27937 Thymic Low Grade Papillary Adenocarcinoma 7 87675 -NCIT:C6462 Thymic Clear Cell Carcinoma 6 87676 -NCIT:C6463 Thymic Sarcomatoid Carcinoma 6 87677 -NCIT:C7998 Thymic Lymphoepithelial Carcinoma 6 87678 -NCIT:C7612 Malignant Thymoma 5 87679 -NCIT:C148099 Refractory Malignant Thymoma 6 87680 -NCIT:C6886 Malignant Type AB Thymoma 6 87681 -NCIT:C6889 Malignant Type B2 Thymoma 6 87682 -NCIT:C7904 Invasive Malignant Thymoma 6 87683 -NCIT:C159904 Advanced Malignant Thymoma 7 87684 -NCIT:C7905 Recurrent Malignant Thymoma 6 87685 -NCIT:C7996 Malignant Type B1 Thymoma 6 87686 -NCIT:C7997 Thymoma Type B3 6 87687 -NCIT:C7999 Malignant Type A Thymoma 6 87688 -NCIT:C9080 Noninvasive Malignant Thymoma 6 87689 -NCIT:C95038 Thymoliposarcoma 5 87690 -NCIT:C7377 Malignant Lung Neoplasm 4 87691 -NCIT:C142785 Lung Malignant PEComa 5 87692 -NCIT:C157602 Metastatic Lung Neuroendocrine Neoplasm 5 87693 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 6 87694 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 87695 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 7 87696 -NCIT:C165446 Advanced Lung Neuroendocrine Neoplasm 6 87697 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 87698 -NCIT:C177245 Advanced Lung Carcinoid Tumor 7 87699 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 7 87700 -NCIT:C176715 Locally Advanced Lung Neuroendocrine Neoplasm 6 87701 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 7 87702 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 7 87703 -NCIT:C177243 Metastatic Lung Carcinoid Tumor 6 87704 -NCIT:C177245 Advanced Lung Carcinoid Tumor 7 87705 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 6 87706 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 7 87707 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 7 87708 -NCIT:C165454 Unresectable Lung Neuroendocrine Neoplasm 5 87709 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 6 87710 -NCIT:C177246 Unresectable Lung Carcinoid Tumor 6 87711 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 6 87712 -NCIT:C185043 Lung Plasmacytoma 5 87713 -NCIT:C190100 Childhood Malignant Lung Neoplasm 5 87714 -NCIT:C118814 Childhood Lung Non-Small Cell Carcinoma 6 87715 -NCIT:C118815 Childhood Lung Small Cell Carcinoma 6 87716 -NCIT:C3577 Metastatic Malignant Neoplasm in the Lung 5 87717 -NCIT:C185321 Extramedullary Disease in Plasma Cell Myeloma Involving the Lung 6 87718 -NCIT:C27408 Metastatic Carcinoma in the Lung 6 87719 -NCIT:C153224 Colorectal Carcinoma Metastatic in the Lung 7 87720 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 8 87721 -NCIT:C36300 Breast Carcinoma Metastatic in the Lung 7 87722 -NCIT:C36307 Prostate Carcinoma Metastatic in the Lung 7 87723 -NCIT:C4453 Lung Epithelioid Hemangioendothelioma 5 87724 -NCIT:C45652 Lung Melanoma 5 87725 -NCIT:C4566 Malignant Lung Hilum Neoplasm 5 87726 -NCIT:C7454 Lung Hilum Carcinoma 6 87727 -NCIT:C4794 Lung Lymphoma 5 87728 -NCIT:C181205 Lung Hodgkin Lymphoma 6 87729 -NCIT:C5684 Lung Non-Hodgkin Lymphoma 6 87730 -NCIT:C181211 Lung Follicular Lymphoma 7 87731 -NCIT:C188082 Lung Anaplastic Large Cell Lymphoma 7 87732 -NCIT:C45605 Lung Diffuse Large B-Cell Lymphoma 7 87733 -NCIT:C183121 Lung Intravascular Large B-Cell Lymphoma 8 87734 -NCIT:C5264 Lung Mucosa-Associated Lymphoid Tissue Lymphoma 7 87735 -NCIT:C4860 Lung Sarcoma 5 87736 -NCIT:C142825 Pulmonary Artery Intimal Sarcoma 6 87737 -NCIT:C142827 Primary Pulmonary Myxoid Sarcoma with EWSR1-CREB1 Fusion 6 87738 -NCIT:C173809 Lung Alveolar Soft Part Sarcoma 6 87739 -NCIT:C181201 Lung Rhabdomyosarcoma 6 87740 -NCIT:C188061 Lung Osteosarcoma 6 87741 -NCIT:C3551 Lung Kaposi Sarcoma 6 87742 -NCIT:C45631 Lung Synovial Sarcoma 6 87743 -NCIT:C45632 Lung Biphasic Synovial Sarcoma 7 87744 -NCIT:C45633 Lung Monophasic Synovial Sarcoma 7 87745 -NCIT:C5667 Lung Leiomyosarcoma 6 87746 -NCIT:C4878 Lung Carcinoma 5 87747 -NCIT:C136467 Lung Cancer by AJCC v8 Stage 6 87748 -NCIT:C136468 Occult Lung Cancer AJCC v8 7 87749 -NCIT:C136469 Stage 0 Lung Cancer AJCC v8 7 87750 -NCIT:C136470 Stage I Lung Cancer AJCC v8 7 87751 -NCIT:C136471 Stage IA1 Lung Cancer AJCC v8 8 87752 -NCIT:C136472 Stage IA2 Lung Cancer AJCC v8 8 87753 -NCIT:C136473 Stage IA3 Lung Cancer AJCC v8 8 87754 -NCIT:C136474 Stage IB Lung Cancer AJCC v8 8 87755 -NCIT:C136475 Stage II Lung Cancer AJCC v8 7 87756 -NCIT:C136476 Stage IIA Lung Cancer AJCC v8 8 87757 -NCIT:C136477 Stage IIB Lung Cancer AJCC v8 8 87758 -NCIT:C136478 Stage III Lung Cancer AJCC v8 7 87759 -NCIT:C136479 Stage IIIA Lung Cancer AJCC v8 8 87760 -NCIT:C136480 Stage IIIB Lung Cancer AJCC v8 8 87761 -NCIT:C136481 Stage IIIC Lung Cancer AJCC v8 8 87762 -NCIT:C136482 Stage IV Lung Cancer AJCC v8 7 87763 -NCIT:C136483 Stage IVA Lung Cancer AJCC v8 8 87764 -NCIT:C136484 Stage IVB Lung Cancer AJCC v8 8 87765 -NCIT:C141076 Refractory Lung Carcinoma 6 87766 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 7 87767 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 8 87768 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 8 87769 -NCIT:C153081 Refractory Lung Non-Small Cell Carcinoma 7 87770 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 8 87771 -NCIT:C176858 Refractory Lung Non-Squamous Non-Small Cell Carcinoma 8 87772 -NCIT:C179209 Refractory Lung Adenocarcinoma 8 87773 -NCIT:C173331 Refractory Lung Squamous Cell Carcinoma 7 87774 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 8 87775 -NCIT:C142830 Lung Myoepithelial Carcinoma 6 87776 -NCIT:C153202 Metastatic Lung Carcinoma 6 87777 -NCIT:C133503 Lung Carcinoma Metastatic in the Central Nervous System 7 87778 -NCIT:C36304 Lung Carcinoma Metastatic in the Brain 8 87779 -NCIT:C153203 Advanced Lung Carcinoma 7 87780 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 87781 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 8 87782 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 87783 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 87784 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 87785 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 87786 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 87787 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 87788 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 87789 -NCIT:C180922 Advanced Bronchogenic Carcinoma 8 87790 -NCIT:C153206 Locally Advanced Lung Carcinoma 7 87791 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 8 87792 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 87793 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 87794 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 87795 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 87796 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 87797 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 87798 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 87799 -NCIT:C156092 Metastatic Lung Squamous Cell Carcinoma 7 87800 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 87801 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 87802 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 87803 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 87804 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 87805 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 87806 -NCIT:C156094 Metastatic Lung Non-Small Cell Carcinoma 7 87807 -NCIT:C128798 Metastatic Lung Non-Squamous Non-Small Cell Carcinoma 8 87808 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 87809 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 87810 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 87811 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 87812 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 87813 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 87814 -NCIT:C155908 Metastatic Lung Adenocarcinoma 9 87815 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 87816 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 87817 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 9 87818 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 87819 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 87820 -NCIT:C156093 Metastatic Lung Adenosquamous Carcinoma 8 87821 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 87822 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 87823 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 87824 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 87825 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 87826 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 87827 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 8 87828 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 87829 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 87830 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 87831 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 87832 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 87833 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 87834 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 8 87835 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 87836 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 87837 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 87838 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 87839 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 87840 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 7 87841 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 87842 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 87843 -NCIT:C187195 Oligometastatic Lung Carcinoma 7 87844 -NCIT:C36305 Lung Carcinoma Metastatic in the Bone 7 87845 -NCIT:C36306 Lung Carcinoma Metastatic in the Liver 7 87846 -NCIT:C155902 Unresectable Lung Carcinoma 6 87847 -NCIT:C155901 Unresectable Lung Non-Small Cell Carcinoma 7 87848 -NCIT:C162642 Unresectable Lung Non-Squamous Non-Small Cell Carcinoma 8 87849 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 9 87850 -NCIT:C171612 Unresectable Lung Non-Small Cell Squamous Carcinoma 8 87851 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 87852 -NCIT:C174510 Unresectable Lung Adenocarcinoma 8 87853 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 7 87854 -NCIT:C162570 Localized Lung Carcinoma 6 87855 -NCIT:C183116 Lung Hyalinizing Clear Cell Carcinoma 6 87856 -NCIT:C188068 Lung Secretory Carcinoma 6 87857 -NCIT:C190952 Resectable Lung Carcinoma 6 87858 -NCIT:C165767 Resectable Lung Non-Small Cell Carcinoma 7 87859 -NCIT:C190954 Resectable Lung Adenocarcinoma 8 87860 -NCIT:C190953 Resectable Lung Squamous Cell Carcinoma 7 87861 -NCIT:C27637 Transplant-Related Lung Carcinoma 6 87862 -NCIT:C27925 Asbestos-Related Lung Carcinoma 6 87863 -NCIT:C2926 Lung Non-Small Cell Carcinoma 6 87864 -NCIT:C118814 Childhood Lung Non-Small Cell Carcinoma 7 87865 -NCIT:C133254 Lung Non-Small Cell Squamous Carcinoma 7 87866 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 87867 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 87868 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 87869 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 87870 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 8 87871 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 8 87872 -NCIT:C171612 Unresectable Lung Non-Small Cell Squamous Carcinoma 8 87873 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 87874 -NCIT:C45502 Lung Squamous Cell Carcinoma, Papillary Variant 8 87875 -NCIT:C45503 Lung Squamous Cell Carcinoma, Clear Cell Variant 8 87876 -NCIT:C135017 Lung Non-Squamous Non-Small Cell Carcinoma 7 87877 -NCIT:C128797 Recurrent Lung Non-Squamous Non-Small Cell Carcinoma 8 87878 -NCIT:C128798 Metastatic Lung Non-Squamous Non-Small Cell Carcinoma 8 87879 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 87880 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 87881 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 87882 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 87883 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 87884 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 87885 -NCIT:C155908 Metastatic Lung Adenocarcinoma 9 87886 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 87887 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 87888 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 9 87889 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 87890 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 87891 -NCIT:C162642 Unresectable Lung Non-Squamous Non-Small Cell Carcinoma 8 87892 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 9 87893 -NCIT:C176858 Refractory Lung Non-Squamous Non-Small Cell Carcinoma 8 87894 -NCIT:C136491 Lung Non-Small Cell Cancer by AJCC v7 Stage 7 87895 -NCIT:C136490 Lung Adenocarcinoma by AJCC v7 Stage 8 87896 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 9 87897 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 9 87898 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 87899 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 87900 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 9 87901 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 87902 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 87903 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 9 87904 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 87905 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 87906 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 9 87907 -NCIT:C136492 Lung Adenosquamous Carcinoma by AJCC v7 Stage 8 87908 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 9 87909 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 9 87910 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 87911 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 87912 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 9 87913 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 87914 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 87915 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 9 87916 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 87917 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 87918 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 9 87919 -NCIT:C136493 Lung Large Cell Carcinoma by AJCC v7 Stage 8 87920 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 9 87921 -NCIT:C6660 Stage II Lung Large Cell Carcinoma AJCC v7 9 87922 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 87923 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 87924 -NCIT:C8755 Stage I Lung Large Cell Carcinoma AJCC v7 9 87925 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 87926 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 87927 -NCIT:C8756 Stage IV Lung Large Cell Carcinoma AJCC v7 9 87928 -NCIT:C9257 Stage III Lung Large Cell Carcinoma AJCC v7 9 87929 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 87930 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 87931 -NCIT:C4012 Stage IV Lung Non-Small Cell Cancer AJCC v7 8 87932 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 9 87933 -NCIT:C8756 Stage IV Lung Large Cell Carcinoma AJCC v7 9 87934 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 9 87935 -NCIT:C6671 Stage I Lung Non-Small Cell Cancer AJCC v7 8 87936 -NCIT:C5652 Stage IA Lung Non-Small Cell Carcinoma AJCC v7 9 87937 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 87938 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 87939 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 87940 -NCIT:C5653 Stage IB Lung Non-Small Cell Carcinoma AJCC v7 9 87941 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 87942 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 87943 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 87944 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 9 87945 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 87946 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 87947 -NCIT:C8755 Stage I Lung Large Cell Carcinoma AJCC v7 9 87948 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 87949 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 87950 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 9 87951 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 87952 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 87953 -NCIT:C7777 Stage II Lung Non-Small Cell Cancer AJCC v7 8 87954 -NCIT:C5654 Stage IIB Lung Non-Small Cell Carcinoma AJCC v7 9 87955 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 87956 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 87957 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 87958 -NCIT:C5655 Stage IIA Lung Non-Small Cell Carcinoma AJCC v7 9 87959 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 87960 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 87961 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 87962 -NCIT:C6660 Stage II Lung Large Cell Carcinoma AJCC v7 9 87963 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 87964 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 87965 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 9 87966 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 87967 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 87968 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 9 87969 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 87970 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 87971 -NCIT:C7778 Stage III Lung Non-Small Cell Cancer AJCC v7 8 87972 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 9 87973 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 87974 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 87975 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 9 87976 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 87977 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 87978 -NCIT:C9102 Stage IIIA Lung Non-Small Cell Cancer AJCC v7 9 87979 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 87980 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 87981 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 87982 -NCIT:C9103 Stage IIIB Lung Non-Small Cell Cancer AJCC v7 9 87983 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 87984 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 87985 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 87986 -NCIT:C9257 Stage III Lung Large Cell Carcinoma AJCC v7 9 87987 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 87988 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 87989 -NCIT:C9104 Stage 0 Lung Non-Small Cell Cancer AJCC v6 and v7 8 87990 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 9 87991 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 9 87992 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 9 87993 -NCIT:C153081 Refractory Lung Non-Small Cell Carcinoma 7 87994 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 8 87995 -NCIT:C176858 Refractory Lung Non-Squamous Non-Small Cell Carcinoma 8 87996 -NCIT:C179209 Refractory Lung Adenocarcinoma 8 87997 -NCIT:C155901 Unresectable Lung Non-Small Cell Carcinoma 7 87998 -NCIT:C162642 Unresectable Lung Non-Squamous Non-Small Cell Carcinoma 8 87999 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 9 88000 -NCIT:C171612 Unresectable Lung Non-Small Cell Squamous Carcinoma 8 88001 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 88002 -NCIT:C174510 Unresectable Lung Adenocarcinoma 8 88003 -NCIT:C156094 Metastatic Lung Non-Small Cell Carcinoma 7 88004 -NCIT:C128798 Metastatic Lung Non-Squamous Non-Small Cell Carcinoma 8 88005 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 88006 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 88007 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 88008 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 88009 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 88010 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 88011 -NCIT:C155908 Metastatic Lung Adenocarcinoma 9 88012 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 88013 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 88014 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 9 88015 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 88016 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 88017 -NCIT:C156093 Metastatic Lung Adenosquamous Carcinoma 8 88018 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 88019 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 88020 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 88021 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 88022 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 88023 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 88024 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 8 88025 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 88026 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 88027 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 88028 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 88029 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 88030 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 88031 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 8 88032 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 88033 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 88034 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 88035 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 88036 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 88037 -NCIT:C165767 Resectable Lung Non-Small Cell Carcinoma 7 88038 -NCIT:C190954 Resectable Lung Adenocarcinoma 8 88039 -NCIT:C3512 Lung Adenocarcinoma 7 88040 -NCIT:C136486 Lung Adenocarcinoma In Situ 8 88041 -NCIT:C136716 Lung Non-Mucinous Adenocarcinoma In Situ 9 88042 -NCIT:C136717 Lung Mucinous Adenocarcinoma In Situ 9 88043 -NCIT:C136490 Lung Adenocarcinoma by AJCC v7 Stage 8 88044 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 9 88045 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 9 88046 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 88047 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 88048 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 9 88049 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 88050 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 88051 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 9 88052 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 88053 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 88054 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 9 88055 -NCIT:C136709 Invasive Lung Mucinous Adenocarcinoma 8 88056 -NCIT:C136710 Lung Enteric Adenocarcinoma 8 88057 -NCIT:C155908 Metastatic Lung Adenocarcinoma 8 88058 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 88059 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 88060 -NCIT:C174510 Unresectable Lung Adenocarcinoma 8 88061 -NCIT:C179209 Refractory Lung Adenocarcinoma 8 88062 -NCIT:C183109 Invasive Lung Non-Mucinous Adenocarcinoma 8 88063 -NCIT:C123160 Lepidic Adenocarcinoma 9 88064 -NCIT:C5649 Lung Acinar Adenocarcinoma 9 88065 -NCIT:C5650 Lung Papillary Adenocarcinoma 9 88066 -NCIT:C128847 Lung Micropapillary Adenocarcinoma 10 88067 -NCIT:C5651 Solid Lung Adenocarcinoma 9 88068 -NCIT:C190954 Resectable Lung Adenocarcinoma 8 88069 -NCIT:C2923 Minimally Invasive Lung Adenocarcinoma 8 88070 -NCIT:C7268 Minimally Invasive Lung Mucinous Adenocarcinoma 9 88071 -NCIT:C7269 Minimally Invasive Lung Non-Mucinous Adenocarcinoma 9 88072 -NCIT:C7270 Minimally Invasive Lung Mixed Non-Mucinous and Mucinous Adenocarcinoma 9 88073 -NCIT:C45509 Lung Fetal Adenocarcinoma 8 88074 -NCIT:C45512 Lung Colloid Adenocarcinoma 8 88075 -NCIT:C6699 Occult Lung Adenocarcinoma 8 88076 -NCIT:C8757 Recurrent Lung Adenocarcinoma 8 88077 -NCIT:C4450 Lung Large Cell Carcinoma 7 88078 -NCIT:C136493 Lung Large Cell Carcinoma by AJCC v7 Stage 8 88079 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 9 88080 -NCIT:C6660 Stage II Lung Large Cell Carcinoma AJCC v7 9 88081 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 88082 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 88083 -NCIT:C8755 Stage I Lung Large Cell Carcinoma AJCC v7 9 88084 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 88085 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 88086 -NCIT:C8756 Stage IV Lung Large Cell Carcinoma AJCC v7 9 88087 -NCIT:C9257 Stage III Lung Large Cell Carcinoma AJCC v7 9 88088 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 88089 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 88090 -NCIT:C4451 Lung Large Cell Carcinoma, Clear Cell Variant 8 88091 -NCIT:C6685 Occult Lung Large Cell Carcinoma 8 88092 -NCIT:C6876 Lung Large Cell Carcinoma with Rhabdoid Phenotype 8 88093 -NCIT:C7266 Lung Basaloid Large Cell Carcinoma 8 88094 -NCIT:C8753 Recurrent Lung Large Cell Carcinoma 8 88095 -NCIT:C45519 Lung Lymphoepithelial Carcinoma 7 88096 -NCIT:C45540 Lung Sarcomatoid Carcinoma 7 88097 -NCIT:C3732 Pulmonary Blastoma 8 88098 -NCIT:C4452 Lung Giant Cell Carcinoma 8 88099 -NCIT:C45541 Lung Spindle Cell Carcinoma 8 88100 -NCIT:C45542 Lung Pleomorphic Carcinoma 8 88101 -NCIT:C45543 Lung Carcinosarcoma 8 88102 -NCIT:C7783 Recurrent Lung Non-Small Cell Carcinoma 7 88103 -NCIT:C128797 Recurrent Lung Non-Squamous Non-Small Cell Carcinoma 8 88104 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 8 88105 -NCIT:C190195 Locally Recurrent Lung Non-Small Cell Carcinoma 8 88106 -NCIT:C8747 Recurrent Lung Adenosquamous Carcinoma 8 88107 -NCIT:C8753 Recurrent Lung Large Cell Carcinoma 8 88108 -NCIT:C8757 Recurrent Lung Adenocarcinoma 8 88109 -NCIT:C9038 Occult Lung Non-Small Cell Carcinoma 7 88110 -NCIT:C6684 Occult Lung Adenosquamous Carcinoma 8 88111 -NCIT:C6685 Occult Lung Large Cell Carcinoma 8 88112 -NCIT:C6699 Occult Lung Adenocarcinoma 8 88113 -NCIT:C9133 Lung Adenosquamous Carcinoma 7 88114 -NCIT:C136492 Lung Adenosquamous Carcinoma by AJCC v7 Stage 8 88115 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 9 88116 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 9 88117 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 88118 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 88119 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 9 88120 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 88121 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 88122 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 9 88123 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 88124 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 88125 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 9 88126 -NCIT:C156093 Metastatic Lung Adenosquamous Carcinoma 8 88127 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 88128 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 88129 -NCIT:C6684 Occult Lung Adenosquamous Carcinoma 8 88130 -NCIT:C8747 Recurrent Lung Adenosquamous Carcinoma 8 88131 -NCIT:C3493 Lung Squamous Cell Carcinoma 6 88132 -NCIT:C133254 Lung Non-Small Cell Squamous Carcinoma 7 88133 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 88134 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 88135 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 88136 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 88137 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 8 88138 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 8 88139 -NCIT:C171612 Unresectable Lung Non-Small Cell Squamous Carcinoma 8 88140 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 88141 -NCIT:C45502 Lung Squamous Cell Carcinoma, Papillary Variant 8 88142 -NCIT:C45503 Lung Squamous Cell Carcinoma, Clear Cell Variant 8 88143 -NCIT:C136494 Lung Squamous Cell Carcinoma by AJCC v7 Stage 7 88144 -NCIT:C8763 Stage 0 Lung Squamous Cell Carcinoma AJCC v6 and v7 8 88145 -NCIT:C8764 Stage I Lung Squamous Cell Carcinoma AJCC v7 8 88146 -NCIT:C6687 Stage IA Lung Squamous Cell Carcinoma AJCC v7 9 88147 -NCIT:C6692 Stage IB Lung Squamous Cell Carcinoma AJCC v7 9 88148 -NCIT:C8765 Stage II Lung Squamous Cell Carcinoma AJCC v7 8 88149 -NCIT:C6688 Stage IIA Lung Squamous Cell Carcinoma AJCC v7 9 88150 -NCIT:C6691 Stage IIB Lung Squamous Cell Carcinoma AJCC v7 9 88151 -NCIT:C8766 Stage III Lung Squamous Cell Carcinoma AJCC v7 8 88152 -NCIT:C6689 Stage IIIA Lung Squamous Cell Carcinoma AJCC v7 9 88153 -NCIT:C6690 Stage IIIB Lung Squamous Cell Carcinoma AJCC v7 9 88154 -NCIT:C8767 Stage IV Lung Squamous Cell Carcinoma AJCC v7 8 88155 -NCIT:C136713 Lung Keratinizing Squamous Cell Carcinoma 7 88156 -NCIT:C136714 Lung Non-Keratinizing Squamous Cell Carcinoma 7 88157 -NCIT:C136719 Lung Squamous Cell Carcinoma In Situ 7 88158 -NCIT:C8763 Stage 0 Lung Squamous Cell Carcinoma AJCC v6 and v7 8 88159 -NCIT:C156092 Metastatic Lung Squamous Cell Carcinoma 7 88160 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 88161 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 88162 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 88163 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 88164 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 88165 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 88166 -NCIT:C173331 Refractory Lung Squamous Cell Carcinoma 7 88167 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 8 88168 -NCIT:C190953 Resectable Lung Squamous Cell Carcinoma 7 88169 -NCIT:C45504 Lung Squamous Cell Carcinoma, Small Cell Variant 7 88170 -NCIT:C45507 Lung Basaloid Squamous Cell Carcinoma 7 88171 -NCIT:C5014 Recurrent Lung Squamous Cell Carcinoma 7 88172 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 8 88173 -NCIT:C6686 Occult Lung Squamous Cell Carcinoma 7 88174 -NCIT:C35875 Bronchogenic Carcinoma 6 88175 -NCIT:C180922 Advanced Bronchogenic Carcinoma 7 88176 -NCIT:C180923 Recurrent Bronchogenic Carcinoma 7 88177 -NCIT:C7779 Superior Sulcus Lung Carcinoma 7 88178 -NCIT:C45544 Lung Mucoepidermoid Carcinoma 6 88179 -NCIT:C45545 Lung Epithelial-Myoepithelial Carcinoma 6 88180 -NCIT:C45569 Lung Neuroendocrine Carcinoma 6 88181 -NCIT:C4917 Lung Small Cell Carcinoma 7 88182 -NCIT:C118815 Childhood Lung Small Cell Carcinoma 8 88183 -NCIT:C136496 Lung Small Cell Carcinoma by AJCC v7 Stage 8 88184 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 9 88185 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 10 88186 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 10 88187 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 9 88188 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 10 88189 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 10 88190 -NCIT:C6679 Stage III Lung Small Cell Carcinoma AJCC v7 9 88191 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 10 88192 -NCIT:C6681 Stage IIIB Lung Small Cell Carcinoma AJCC v7 10 88193 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 11 88194 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 11 88195 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 9 88196 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 8 88197 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 9 88198 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 9 88199 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 8 88200 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 9 88201 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 88202 -NCIT:C158495 Platinum-Sensitive Lung Small Cell Carcinoma 8 88203 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 8 88204 -NCIT:C188753 Lung Small Cell Carcinoma Neuroendocrine Subtype 8 88205 -NCIT:C188754 Lung Small Cell Carcinoma, Neuroendocrine-High Subtype 9 88206 -NCIT:C188755 Lung Small Cell Carcinoma, Neuroendocrine-Low Subtype 9 88207 -NCIT:C188756 Lung Small Cell Carcinoma Molecular Subtypes 8 88208 -NCIT:C188761 Lung Small Cell Carcinoma, A Subtype 9 88209 -NCIT:C188762 Lung Small Cell Carcinoma, N Subtype 9 88210 -NCIT:C188763 Lung Small Cell Carcinoma, P Subtype 9 88211 -NCIT:C188765 Lung Small Cell Carcinoma, I Subtype 9 88212 -NCIT:C188766 Lung Small Cell Carcinoma, Y Subtype 9 88213 -NCIT:C6683 Occult Lung Small Cell Carcinoma 8 88214 -NCIT:C7853 Limited Stage Lung Small Cell Carcinoma 8 88215 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 9 88216 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 9 88217 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 10 88218 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 10 88219 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 9 88220 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 10 88221 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 10 88222 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 9 88223 -NCIT:C9049 Extensive Stage Lung Small Cell Carcinoma 8 88224 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 9 88225 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 9 88226 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 9 88227 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 9 88228 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 8 88229 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 9 88230 -NCIT:C9137 Combined Lung Small Cell Carcinoma 8 88231 -NCIT:C9379 Combined Lung Small Cell Carcinoma and Lung Adenocarcinoma 9 88232 -NCIT:C9423 Combined Lung Small Cell and Squamous Cell Carcinoma 9 88233 -NCIT:C5672 Lung Large Cell Neuroendocrine Carcinoma 7 88234 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 8 88235 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 88236 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 88237 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 8 88238 -NCIT:C7267 Combined Lung Large Cell Neuroendocrine Carcinoma 8 88239 -NCIT:C7591 Combined Lung Carcinoma 7 88240 -NCIT:C7267 Combined Lung Large Cell Neuroendocrine Carcinoma 8 88241 -NCIT:C9137 Combined Lung Small Cell Carcinoma 8 88242 -NCIT:C9379 Combined Lung Small Cell Carcinoma and Lung Adenocarcinoma 9 88243 -NCIT:C9423 Combined Lung Small Cell and Squamous Cell Carcinoma 9 88244 -NCIT:C5641 Occult Lung Carcinoma 6 88245 -NCIT:C136468 Occult Lung Cancer AJCC v8 7 88246 -NCIT:C6683 Occult Lung Small Cell Carcinoma 7 88247 -NCIT:C6686 Occult Lung Squamous Cell Carcinoma 7 88248 -NCIT:C9038 Occult Lung Non-Small Cell Carcinoma 7 88249 -NCIT:C6684 Occult Lung Adenosquamous Carcinoma 8 88250 -NCIT:C6685 Occult Lung Large Cell Carcinoma 8 88251 -NCIT:C6699 Occult Lung Adenocarcinoma 8 88252 -NCIT:C5666 Lung Adenoid Cystic Carcinoma 6 88253 -NCIT:C7454 Lung Hilum Carcinoma 6 88254 -NCIT:C8953 Recurrent Lung Carcinoma 6 88255 -NCIT:C180923 Recurrent Bronchogenic Carcinoma 7 88256 -NCIT:C5014 Recurrent Lung Squamous Cell Carcinoma 7 88257 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 8 88258 -NCIT:C7783 Recurrent Lung Non-Small Cell Carcinoma 7 88259 -NCIT:C128797 Recurrent Lung Non-Squamous Non-Small Cell Carcinoma 8 88260 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 8 88261 -NCIT:C190195 Locally Recurrent Lung Non-Small Cell Carcinoma 8 88262 -NCIT:C8747 Recurrent Lung Adenosquamous Carcinoma 8 88263 -NCIT:C8753 Recurrent Lung Large Cell Carcinoma 8 88264 -NCIT:C8757 Recurrent Lung Adenocarcinoma 8 88265 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 7 88266 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 8 88267 -NCIT:C90519 Lung Cancer by AJCC v6 Stage 6 88268 -NCIT:C27467 Stage 0 Lung Cancer AJCC v6 and v7 7 88269 -NCIT:C9104 Stage 0 Lung Non-Small Cell Cancer AJCC v6 and v7 8 88270 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 9 88271 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 9 88272 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 9 88273 -NCIT:C8772 Stage I Lung Cancer AJCC v6 7 88274 -NCIT:C8773 Stage III Lung Cancer AJCC v6 7 88275 -NCIT:C8774 Stage IV Lung Cancer AJCC v6 7 88276 -NCIT:C8954 Stage II Lung Cancer AJCC v6 7 88277 -NCIT:C91232 Lung Cancer by AJCC v7 Stage 6 88278 -NCIT:C136491 Lung Non-Small Cell Cancer by AJCC v7 Stage 7 88279 -NCIT:C136490 Lung Adenocarcinoma by AJCC v7 Stage 8 88280 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 9 88281 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 9 88282 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 88283 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 88284 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 9 88285 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 88286 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 88287 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 9 88288 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 88289 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 88290 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 9 88291 -NCIT:C136492 Lung Adenosquamous Carcinoma by AJCC v7 Stage 8 88292 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 9 88293 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 9 88294 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 88295 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 88296 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 9 88297 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 88298 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 88299 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 9 88300 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 88301 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 88302 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 9 88303 -NCIT:C136493 Lung Large Cell Carcinoma by AJCC v7 Stage 8 88304 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 9 88305 -NCIT:C6660 Stage II Lung Large Cell Carcinoma AJCC v7 9 88306 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 88307 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 88308 -NCIT:C8755 Stage I Lung Large Cell Carcinoma AJCC v7 9 88309 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 88310 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 88311 -NCIT:C8756 Stage IV Lung Large Cell Carcinoma AJCC v7 9 88312 -NCIT:C9257 Stage III Lung Large Cell Carcinoma AJCC v7 9 88313 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 88314 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 88315 -NCIT:C4012 Stage IV Lung Non-Small Cell Cancer AJCC v7 8 88316 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 9 88317 -NCIT:C8756 Stage IV Lung Large Cell Carcinoma AJCC v7 9 88318 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 9 88319 -NCIT:C6671 Stage I Lung Non-Small Cell Cancer AJCC v7 8 88320 -NCIT:C5652 Stage IA Lung Non-Small Cell Carcinoma AJCC v7 9 88321 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 88322 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 88323 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 88324 -NCIT:C5653 Stage IB Lung Non-Small Cell Carcinoma AJCC v7 9 88325 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 88326 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 88327 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 88328 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 9 88329 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 88330 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 88331 -NCIT:C8755 Stage I Lung Large Cell Carcinoma AJCC v7 9 88332 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 88333 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 88334 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 9 88335 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 88336 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 88337 -NCIT:C7777 Stage II Lung Non-Small Cell Cancer AJCC v7 8 88338 -NCIT:C5654 Stage IIB Lung Non-Small Cell Carcinoma AJCC v7 9 88339 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 88340 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 88341 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 88342 -NCIT:C5655 Stage IIA Lung Non-Small Cell Carcinoma AJCC v7 9 88343 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 88344 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 88345 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 88346 -NCIT:C6660 Stage II Lung Large Cell Carcinoma AJCC v7 9 88347 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 88348 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 88349 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 9 88350 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 88351 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 88352 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 9 88353 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 88354 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 88355 -NCIT:C7778 Stage III Lung Non-Small Cell Cancer AJCC v7 8 88356 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 9 88357 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 88358 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 88359 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 9 88360 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 88361 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 88362 -NCIT:C9102 Stage IIIA Lung Non-Small Cell Cancer AJCC v7 9 88363 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 88364 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 88365 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 88366 -NCIT:C9103 Stage IIIB Lung Non-Small Cell Cancer AJCC v7 9 88367 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 88368 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 88369 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 88370 -NCIT:C9257 Stage III Lung Large Cell Carcinoma AJCC v7 9 88371 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 88372 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 88373 -NCIT:C9104 Stage 0 Lung Non-Small Cell Cancer AJCC v6 and v7 8 88374 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 9 88375 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 9 88376 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 9 88377 -NCIT:C136494 Lung Squamous Cell Carcinoma by AJCC v7 Stage 7 88378 -NCIT:C8763 Stage 0 Lung Squamous Cell Carcinoma AJCC v6 and v7 8 88379 -NCIT:C8764 Stage I Lung Squamous Cell Carcinoma AJCC v7 8 88380 -NCIT:C6687 Stage IA Lung Squamous Cell Carcinoma AJCC v7 9 88381 -NCIT:C6692 Stage IB Lung Squamous Cell Carcinoma AJCC v7 9 88382 -NCIT:C8765 Stage II Lung Squamous Cell Carcinoma AJCC v7 8 88383 -NCIT:C6688 Stage IIA Lung Squamous Cell Carcinoma AJCC v7 9 88384 -NCIT:C6691 Stage IIB Lung Squamous Cell Carcinoma AJCC v7 9 88385 -NCIT:C8766 Stage III Lung Squamous Cell Carcinoma AJCC v7 8 88386 -NCIT:C6689 Stage IIIA Lung Squamous Cell Carcinoma AJCC v7 9 88387 -NCIT:C6690 Stage IIIB Lung Squamous Cell Carcinoma AJCC v7 9 88388 -NCIT:C8767 Stage IV Lung Squamous Cell Carcinoma AJCC v7 8 88389 -NCIT:C136496 Lung Small Cell Carcinoma by AJCC v7 Stage 7 88390 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 8 88391 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 9 88392 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 9 88393 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 8 88394 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 9 88395 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 9 88396 -NCIT:C6679 Stage III Lung Small Cell Carcinoma AJCC v7 8 88397 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 9 88398 -NCIT:C6681 Stage IIIB Lung Small Cell Carcinoma AJCC v7 9 88399 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 10 88400 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 10 88401 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 8 88402 -NCIT:C27467 Stage 0 Lung Cancer AJCC v6 and v7 7 88403 -NCIT:C9104 Stage 0 Lung Non-Small Cell Cancer AJCC v6 and v7 8 88404 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 9 88405 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 9 88406 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 9 88407 -NCIT:C88888 Stage I Lung Cancer AJCC v7 7 88408 -NCIT:C5642 Stage IA Lung Cancer AJCC v7 8 88409 -NCIT:C5652 Stage IA Lung Non-Small Cell Carcinoma AJCC v7 9 88410 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 88411 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 88412 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 88413 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 9 88414 -NCIT:C6687 Stage IA Lung Squamous Cell Carcinoma AJCC v7 9 88415 -NCIT:C5643 Stage IB Lung Cancer AJCC v7 8 88416 -NCIT:C5653 Stage IB Lung Non-Small Cell Carcinoma AJCC v7 9 88417 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 88418 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 88419 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 88420 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 9 88421 -NCIT:C6692 Stage IB Lung Squamous Cell Carcinoma AJCC v7 9 88422 -NCIT:C6671 Stage I Lung Non-Small Cell Cancer AJCC v7 8 88423 -NCIT:C5652 Stage IA Lung Non-Small Cell Carcinoma AJCC v7 9 88424 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 88425 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 88426 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 88427 -NCIT:C5653 Stage IB Lung Non-Small Cell Carcinoma AJCC v7 9 88428 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 88429 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 88430 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 88431 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 9 88432 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 88433 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 88434 -NCIT:C8755 Stage I Lung Large Cell Carcinoma AJCC v7 9 88435 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 88436 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 88437 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 9 88438 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 88439 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 88440 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 8 88441 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 9 88442 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 9 88443 -NCIT:C8764 Stage I Lung Squamous Cell Carcinoma AJCC v7 8 88444 -NCIT:C6687 Stage IA Lung Squamous Cell Carcinoma AJCC v7 9 88445 -NCIT:C6692 Stage IB Lung Squamous Cell Carcinoma AJCC v7 9 88446 -NCIT:C88889 Stage II Lung Cancer AJCC v7 7 88447 -NCIT:C5644 Stage IIA Lung Cancer AJCC v7 8 88448 -NCIT:C5655 Stage IIA Lung Non-Small Cell Carcinoma AJCC v7 9 88449 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 88450 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 88451 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 88452 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 9 88453 -NCIT:C6688 Stage IIA Lung Squamous Cell Carcinoma AJCC v7 9 88454 -NCIT:C5645 Stage IIB Lung Cancer AJCC v7 8 88455 -NCIT:C5654 Stage IIB Lung Non-Small Cell Carcinoma AJCC v7 9 88456 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 88457 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 88458 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 88459 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 9 88460 -NCIT:C6691 Stage IIB Lung Squamous Cell Carcinoma AJCC v7 9 88461 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 8 88462 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 9 88463 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 9 88464 -NCIT:C7777 Stage II Lung Non-Small Cell Cancer AJCC v7 8 88465 -NCIT:C5654 Stage IIB Lung Non-Small Cell Carcinoma AJCC v7 9 88466 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 88467 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 88468 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 88469 -NCIT:C5655 Stage IIA Lung Non-Small Cell Carcinoma AJCC v7 9 88470 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 88471 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 88472 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 88473 -NCIT:C6660 Stage II Lung Large Cell Carcinoma AJCC v7 9 88474 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 88475 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 88476 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 9 88477 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 88478 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 88479 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 9 88480 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 88481 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 88482 -NCIT:C8765 Stage II Lung Squamous Cell Carcinoma AJCC v7 8 88483 -NCIT:C6688 Stage IIA Lung Squamous Cell Carcinoma AJCC v7 9 88484 -NCIT:C6691 Stage IIB Lung Squamous Cell Carcinoma AJCC v7 9 88485 -NCIT:C88890 Stage III Lung Cancer AJCC v7 7 88486 -NCIT:C5646 Stage IIIA Lung Cancer AJCC v7 8 88487 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 9 88488 -NCIT:C6689 Stage IIIA Lung Squamous Cell Carcinoma AJCC v7 9 88489 -NCIT:C9102 Stage IIIA Lung Non-Small Cell Cancer AJCC v7 9 88490 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 88491 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 88492 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 88493 -NCIT:C5647 Stage IIIB Lung Cancer AJCC v7 8 88494 -NCIT:C6681 Stage IIIB Lung Small Cell Carcinoma AJCC v7 9 88495 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 10 88496 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 10 88497 -NCIT:C6690 Stage IIIB Lung Squamous Cell Carcinoma AJCC v7 9 88498 -NCIT:C9103 Stage IIIB Lung Non-Small Cell Cancer AJCC v7 9 88499 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 88500 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 88501 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 88502 -NCIT:C6679 Stage III Lung Small Cell Carcinoma AJCC v7 8 88503 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 9 88504 -NCIT:C6681 Stage IIIB Lung Small Cell Carcinoma AJCC v7 9 88505 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 10 88506 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 10 88507 -NCIT:C7778 Stage III Lung Non-Small Cell Cancer AJCC v7 8 88508 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 9 88509 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 88510 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 88511 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 9 88512 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 88513 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 88514 -NCIT:C9102 Stage IIIA Lung Non-Small Cell Cancer AJCC v7 9 88515 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 88516 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 88517 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 88518 -NCIT:C9103 Stage IIIB Lung Non-Small Cell Cancer AJCC v7 9 88519 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 88520 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 88521 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 88522 -NCIT:C9257 Stage III Lung Large Cell Carcinoma AJCC v7 9 88523 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 88524 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 88525 -NCIT:C8766 Stage III Lung Squamous Cell Carcinoma AJCC v7 8 88526 -NCIT:C6689 Stage IIIA Lung Squamous Cell Carcinoma AJCC v7 9 88527 -NCIT:C6690 Stage IIIB Lung Squamous Cell Carcinoma AJCC v7 9 88528 -NCIT:C88891 Stage IV Lung Cancer AJCC v7 7 88529 -NCIT:C4012 Stage IV Lung Non-Small Cell Cancer AJCC v7 8 88530 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 9 88531 -NCIT:C8756 Stage IV Lung Large Cell Carcinoma AJCC v7 9 88532 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 9 88533 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 8 88534 -NCIT:C8767 Stage IV Lung Squamous Cell Carcinoma AJCC v7 8 88535 -NCIT:C7527 Malignant Superior Sulcus Neoplasm 5 88536 -NCIT:C7779 Superior Sulcus Lung Carcinoma 6 88537 -NCIT:C4565 Benign Thoracic Neoplasm 3 88538 -NCIT:C190620 Childhood Benign Thoracic Neoplasm 4 88539 -NCIT:C190104 Childhood Cardiac Rhabdomyoma 5 88540 -NCIT:C190621 Childhood Benign Lung Neoplasm 5 88541 -NCIT:C190105 Fetal Lung Interstitial Tumor 6 88542 -NCIT:C35750 Benign Axillary Neoplasm 4 88543 -NCIT:C35419 Axillary Lipoma 5 88544 -NCIT:C3603 Benign Pleural Neoplasm 4 88545 -NCIT:C183277 Pleural Calcifying Fibrous Tumor 5 88546 -NCIT:C4499 Pleural Adenomatoid Tumor 5 88547 -NCIT:C6644 Pleural Lipoma 5 88548 -NCIT:C3604 Benign Mediastinal Neoplasm 4 88549 -NCIT:C6445 Benign Mediastinal Germ Cell Tumor 5 88550 -NCIT:C7104 Mediastinal Mature Teratoma 6 88551 -NCIT:C6593 Benign Mediastinal Soft Tissue Neoplasm 5 88552 -NCIT:C146987 Mediastinal Hemangioma 6 88553 -NCIT:C27488 Mediastinal Lipomatosis 6 88554 -NCIT:C6595 Mediastinal Lymphangioma 6 88555 -NCIT:C6596 Mediastinal Chondroma 6 88556 -NCIT:C6598 Mediastinal Leiomyoma 6 88557 -NCIT:C6599 Mediastinal Lipoma 6 88558 -NCIT:C6600 Mediastinal Rhabdomyoma 6 88559 -NCIT:C6631 Mediastinal Neurofibroma 5 88560 -NCIT:C6632 Mediastinal Ganglioneuroma 5 88561 -NCIT:C6643 Mediastinal Schwannoma 5 88562 -NCIT:C6636 Mediastinal Psammomatous Schwannoma 6 88563 -NCIT:C3605 Benign Cardiac Neoplasm 4 88564 -NCIT:C45749 Cardiac Hemangioma 5 88565 -NCIT:C45750 Cardiac Cavernous Hemangioma 6 88566 -NCIT:C45751 Cardiac Capillary Hemangioma 6 88567 -NCIT:C45752 Cardiac Intramuscular Hemangioma 6 88568 -NCIT:C45754 Cystic Tumor of the Atrioventricular Node 5 88569 -NCIT:C4607 Benign Myocardial Neoplasm 5 88570 -NCIT:C6739 Cardiac Rhabdomyoma 6 88571 -NCIT:C190104 Childhood Cardiac Rhabdomyoma 7 88572 -NCIT:C45747 Adult Cardiac Cellular Rhabdomyoma 7 88573 -NCIT:C49179 Conventional Cardiac Rhabdomyoma 7 88574 -NCIT:C4608 Benign Endocardial Neoplasm 5 88575 -NCIT:C3695 Papillary Fibroelastoma 6 88576 -NCIT:C7748 Cardiac Myxoma 6 88577 -NCIT:C3499 Atrial Myxoma 7 88578 -NCIT:C4791 Left Atrial Myxoma 8 88579 -NCIT:C4792 Right Atrial Myxoma 8 88580 -NCIT:C45748 Ventricular Myxoma 7 88581 -NCIT:C5357 Benign Cardiac Germ Cell Tumor 5 88582 -NCIT:C5358 Cardiac Schwannoma 5 88583 -NCIT:C5359 Cardiac Neurofibroma 5 88584 -NCIT:C5389 Benign Atrial Neoplasm 5 88585 -NCIT:C3499 Atrial Myxoma 6 88586 -NCIT:C4791 Left Atrial Myxoma 7 88587 -NCIT:C4792 Right Atrial Myxoma 7 88588 -NCIT:C6741 Cardiac Lipoma 5 88589 -NCIT:C6742 Epicardial Lipoma 6 88590 -NCIT:C6947 Cardiac Fibroma 5 88591 -NCIT:C8535 Benign Epicardial Neoplasm 5 88592 -NCIT:C6742 Epicardial Lipoma 6 88593 -NCIT:C4454 Benign Lung Neoplasm 4 88594 -NCIT:C133091 Lung Adenofibroma 5 88595 -NCIT:C142784 Benign Lung PEComa 5 88596 -NCIT:C38152 Lung Clear Cell Tumor 6 88597 -NCIT:C142829 Lung Myoepithelioma 5 88598 -NCIT:C190105 Fetal Lung Interstitial Tumor 5 88599 -NCIT:C190621 Childhood Benign Lung Neoplasm 5 88600 -NCIT:C190105 Fetal Lung Interstitial Tumor 6 88601 -NCIT:C3497 Pulmonary Hamartoma 5 88602 -NCIT:C5662 Endobronchial Hamartoma 6 88603 -NCIT:C5663 Multiple Pulmonary Hamartomas 6 88604 -NCIT:C4455 Lung Adenoma 5 88605 -NCIT:C183045 Bronchiolar Adenoma/Ciliated Muconodular Papillary Tumor 6 88606 -NCIT:C3494 Lung Papillary Adenoma 6 88607 -NCIT:C4140 Alveolar Adenoma 6 88608 -NCIT:C45603 Lung Pleomorphic Adenoma 6 88609 -NCIT:C45604 Lung Mucinous Cystadenoma 6 88610 -NCIT:C5656 Sclerosing Pneumocytoma 6 88611 -NCIT:C5664 Lung Mucous Gland Adenoma 6 88612 -NCIT:C45629 Lung Chondroma 5 88613 -NCIT:C4888 Benign Lung Hilum Neoplasm 5 88614 -NCIT:C5063 Endobronchial Lipoma 5 88615 -NCIT:C5657 Lung Myolipoma 5 88616 -NCIT:C5658 Lung Fibroma 5 88617 -NCIT:C5660 Lung Leiomyoma 5 88618 -NCIT:C5661 Endobronchial Leiomyoma 6 88619 -NCIT:C8295 Bronchial Papilloma 5 88620 -NCIT:C45573 Lung Squamous Papilloma 6 88621 -NCIT:C45601 Bronchial Glandular Papilloma 6 88622 -NCIT:C45602 Bronchial Mixed Squamous Cell and Glandular Papilloma 6 88623 -NCIT:C8529 Benign Chest Wall Neoplasm 4 88624 -NCIT:C6719 Chest Wall Lipoma 5 88625 -NCIT:C8416 Benign Sternal Neoplasm 5 88626 -NCIT:C6714 Sternal Chondromyxoid Fibroma 6 88627 -NCIT:C6718 Sternal Intraosseous Schwannoma 6 88628 -NCIT:C8536 Benign Pericardial Neoplasm 4 88629 -NCIT:C147106 Benign Pericardial Germ Cell Tumor 5 88630 -NCIT:C6744 Pericardial Mature Teratoma 6 88631 -NCIT:C6743 Pericardial Leiomyoma 5 88632 -NCIT:C92187 Pericardial Adenomatoid Tumor 5 88633 -NCIT:C4929 Chest Wall Neoplasm 3 88634 -NCIT:C4580 Malignant Chest Wall Neoplasm 4 88635 -NCIT:C155873 Chest Wall Sarcoma 5 88636 -NCIT:C6711 Chest Wall Solitary Plasmacytoma 5 88637 -NCIT:C6712 Chest Wall Lymphoma 5 88638 -NCIT:C6716 Sternal Lymphoma 6 88639 -NCIT:C6723 Chest Wall Hodgkin Lymphoma 6 88640 -NCIT:C6724 Malignant Chest Wall Bone Neoplasm 5 88641 -NCIT:C8408 Malignant Sternal Neoplasm 5 88642 -NCIT:C6716 Sternal Lymphoma 6 88643 -NCIT:C8527 Metastatic Malignant Neoplasm in the Sternum 6 88644 -NCIT:C8530 Metastatic Malignant Neoplasm in the Chest Wall 5 88645 -NCIT:C8527 Metastatic Malignant Neoplasm in the Sternum 6 88646 -NCIT:C6713 Chest Wall Fibromatosis 4 88647 -NCIT:C6720 Chest Wall Parachordoma 4 88648 -NCIT:C6721 Chest Wall Plexiform Fibrohistiocytic Tumor 4 88649 -NCIT:C6730 Sternal Neoplasm 4 88650 -NCIT:C8408 Malignant Sternal Neoplasm 5 88651 -NCIT:C6716 Sternal Lymphoma 6 88652 -NCIT:C8527 Metastatic Malignant Neoplasm in the Sternum 6 88653 -NCIT:C8416 Benign Sternal Neoplasm 5 88654 -NCIT:C6714 Sternal Chondromyxoid Fibroma 6 88655 -NCIT:C6718 Sternal Intraosseous Schwannoma 6 88656 -NCIT:C8529 Benign Chest Wall Neoplasm 4 88657 -NCIT:C6719 Chest Wall Lipoma 5 88658 -NCIT:C8416 Benign Sternal Neoplasm 5 88659 -NCIT:C6714 Sternal Chondromyxoid Fibroma 6 88660 -NCIT:C6718 Sternal Intraosseous Schwannoma 6 88661 -NCIT:C6411 Intrathoracic Paravertebral Paraganglioma 3 88662 -NCIT:C6413 Metastatic Intrathoracic Paravertebral Paraganglioma 4 88663 -NCIT:C35813 Hematopoietic and Lymphoid System Neoplasm 2 88664 -NCIT:C27134 Hematopoietic and Lymphoid Cell Neoplasm 3 88665 -NCIT:C27357 Refractory Hematologic Malignancy 4 88666 -NCIT:C148426 Refractory Leukemia 5 88667 -NCIT:C148431 Refractory Acute Leukemia 6 88668 -NCIT:C134319 Refractory Acute Myeloid Leukemia 7 88669 -NCIT:C174486 Refractory Acute Myeloid Leukemia Not Otherwise Specified 8 88670 -NCIT:C174511 Refractory Acute Monoblastic and Monocytic Leukemia 9 88671 -NCIT:C174512 Refractory Acute Myelomonocytic Leukemia 9 88672 -NCIT:C180897 Refractory Acute Myeloid Leukemia with Myelodysplasia-Related Changes 8 88673 -NCIT:C187449 Refractory Childhood Acute Myeloid Leukemia 8 88674 -NCIT:C136488 Refractory Acute Lymphoblastic Leukemia 7 88675 -NCIT:C122624 Refractory Childhood Acute Lymphoblastic Leukemia 8 88676 -NCIT:C126309 Refractory Adult Acute Lymphoblastic Leukemia 8 88677 -NCIT:C142812 Refractory B Acute Lymphoblastic Leukemia 8 88678 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 9 88679 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 88680 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 9 88681 -NCIT:C150510 Refractory T Acute Lymphoblastic Leukemia 8 88682 -NCIT:C151977 Refractory Burkitt Leukemia 7 88683 -NCIT:C172630 Refractory Acute Leukemia of Ambiguous Lineage 7 88684 -NCIT:C148430 Refractory Mixed Phenotype Acute Leukemia 8 88685 -NCIT:C173683 Refractory Acute Biphenotypic Leukemia 9 88686 -NCIT:C179205 Refractory Acute Bilineal Leukemia 9 88687 -NCIT:C173503 Refractory Acute Undifferentiated Leukemia 8 88688 -NCIT:C150044 Refractory Chronic Leukemia 6 88689 -NCIT:C150049 Refractory Chronic Myelomonocytic Leukemia 7 88690 -NCIT:C157691 Refractory T-Cell Prolymphocytic Leukemia 7 88691 -NCIT:C157693 Refractory Aggressive NK-Cell Leukemia 7 88692 -NCIT:C157697 Refractory B-Cell Prolymphocytic Leukemia 7 88693 -NCIT:C171064 Refractory Hairy Cell Leukemia Variant 7 88694 -NCIT:C177000 Refractory Sezary Syndrome 7 88695 -NCIT:C180986 Refractory T-Cell Large Granular Lymphocyte Leukemia 7 88696 -NCIT:C7885 Refractory Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 88697 -NCIT:C7886 Refractory Chronic Lymphocytic Leukemia 7 88698 -NCIT:C158152 Refractory Transformed Chronic Lymphocytic Leukemia 8 88699 -NCIT:C8030 Refractory Hairy Cell Leukemia 7 88700 -NCIT:C190787 Refractory Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 88701 -NCIT:C172280 Refractory Malignant Lymphoid Neoplasm 5 88702 -NCIT:C134154 Refractory Lymphoma 6 88703 -NCIT:C138014 Refractory B-Cell Lymphoma, Unclassifiable, with Features Intermediate between Diffuse Large B-Cell Lymphoma and Classic Hodgkin Lymphoma 7 88704 -NCIT:C138020 Refractory Central Nervous System Lymphoma 7 88705 -NCIT:C146989 Refractory Central Nervous System Non-Hodgkin Lymphoma 8 88706 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 9 88707 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 88708 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 88709 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 88710 -NCIT:C138022 Refractory Testicular Lymphoma 7 88711 -NCIT:C138024 Refractory Breast Lymphoma 7 88712 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 8 88713 -NCIT:C142877 Refractory Primary Cutaneous Lymphoma 7 88714 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 8 88715 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 88716 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 88717 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 88718 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 88719 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 88720 -NCIT:C8687 Refractory Mycosis Fungoides 9 88721 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 88722 -NCIT:C153177 Refractory Mediastinal Lymphoma 7 88723 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 88724 -NCIT:C157682 Refractory Primary Bone Lymphoma 7 88725 -NCIT:C160149 Refractory EBV-Related Lymphoma 7 88726 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 88727 -NCIT:C187197 Refractory Childhood Lymphoma 7 88728 -NCIT:C115458 Refractory Childhood Hodgkin Lymphoma 8 88729 -NCIT:C8701 Refractory Non-Hodgkin Lymphoma 7 88730 -NCIT:C140091 Refractory Transformed Non-Hodgkin Lymphoma 8 88731 -NCIT:C158150 Refractory Transformed B-Cell Non-Hodgkin Lymphoma 9 88732 -NCIT:C160240 Refractory Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 10 88733 -NCIT:C186484 Refractory Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 10 88734 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 11 88735 -NCIT:C165791 Refractory Transformed T-cell Non-Hodgkin Lymphoma 9 88736 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 88737 -NCIT:C146989 Refractory Central Nervous System Non-Hodgkin Lymphoma 8 88738 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 9 88739 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 88740 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 88741 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 88742 -NCIT:C151978 Refractory Lymphoblastic Lymphoma 8 88743 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 9 88744 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 9 88745 -NCIT:C156233 Refractory Aggressive Non-Hodgkin Lymphoma 8 88746 -NCIT:C178555 Refractory Aggressive B-Cell Non-Hodgkin Lymphoma 9 88747 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 88748 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 88749 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 10 88750 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 11 88751 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 11 88752 -NCIT:C8847 Refractory Burkitt Lymphoma 10 88753 -NCIT:C8862 Refractory Mantle Cell Lymphoma 10 88754 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 10 88755 -NCIT:C178556 Refractory Aggressive T-Cell Non-Hodgkin Lymphoma 9 88756 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 10 88757 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 88758 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 88759 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 88760 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 88761 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 10 88762 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 10 88763 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 10 88764 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 10 88765 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 10 88766 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 88767 -NCIT:C173046 Refractory Indolent Non-Hodgkin Lymphoma 8 88768 -NCIT:C148175 Refractory Indolent Adult Non-Hodgkin Lymphoma 9 88769 -NCIT:C183514 Refractory Indolent B-Cell Non-Hodgkin Lymphoma 9 88770 -NCIT:C143085 Refractory Marginal Zone Lymphoma 10 88771 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 11 88772 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 88773 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 11 88774 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 10 88775 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 10 88776 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 10 88777 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 11 88778 -NCIT:C183515 Refractory Indolent T-Cell Non-Hodgkin Lymphoma 9 88779 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 88780 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 88781 -NCIT:C8687 Refractory Mycosis Fungoides 10 88782 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 88783 -NCIT:C8664 Refractory T-Cell Non-Hodgkin Lymphoma 8 88784 -NCIT:C178556 Refractory Aggressive T-Cell Non-Hodgkin Lymphoma 9 88785 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 10 88786 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 88787 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 88788 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 88789 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 88790 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 10 88791 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 10 88792 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 10 88793 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 10 88794 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 10 88795 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 88796 -NCIT:C183515 Refractory Indolent T-Cell Non-Hodgkin Lymphoma 9 88797 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 88798 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 88799 -NCIT:C8687 Refractory Mycosis Fungoides 10 88800 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 88801 -NCIT:C8689 Refractory Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 9 88802 -NCIT:C148129 Refractory Mycosis Fungoides and Sezary Syndrome 10 88803 -NCIT:C177000 Refractory Sezary Syndrome 11 88804 -NCIT:C8687 Refractory Mycosis Fungoides 11 88805 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 12 88806 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 10 88807 -NCIT:C157690 Refractory NK-Cell Lymphoma, Unclassifiable 10 88808 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 88809 -NCIT:C165791 Refractory Transformed T-cell Non-Hodgkin Lymphoma 10 88810 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 88811 -NCIT:C168779 Refractory Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 10 88812 -NCIT:C168781 Refractory Follicular T-Cell Lymphoma 10 88813 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 10 88814 -NCIT:C8658 Refractory Anaplastic Large Cell Lymphoma 10 88815 -NCIT:C162689 Refractory Systemic Anaplastic Large Cell Lymphoma 11 88816 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 12 88817 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 11 88818 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 11 88819 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 10 88820 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 10 88821 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 10 88822 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 10 88823 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 11 88824 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 11 88825 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 11 88826 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 11 88827 -NCIT:C8687 Refractory Mycosis Fungoides 11 88828 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 12 88829 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 88830 -NCIT:C8842 Refractory B-Cell Non-Hodgkin Lymphoma 8 88831 -NCIT:C178555 Refractory Aggressive B-Cell Non-Hodgkin Lymphoma 9 88832 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 88833 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 88834 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 10 88835 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 11 88836 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 11 88837 -NCIT:C8847 Refractory Burkitt Lymphoma 10 88838 -NCIT:C8862 Refractory Mantle Cell Lymphoma 10 88839 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 10 88840 -NCIT:C183514 Refractory Indolent B-Cell Non-Hodgkin Lymphoma 9 88841 -NCIT:C143085 Refractory Marginal Zone Lymphoma 10 88842 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 11 88843 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 88844 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 11 88845 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 10 88846 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 10 88847 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 10 88848 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 11 88849 -NCIT:C7228 Refractory Mature B-Cell Non-Hodgkin Lymphoma 9 88850 -NCIT:C143085 Refractory Marginal Zone Lymphoma 10 88851 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 11 88852 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 88853 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 11 88854 -NCIT:C158150 Refractory Transformed B-Cell Non-Hodgkin Lymphoma 10 88855 -NCIT:C160240 Refractory Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 11 88856 -NCIT:C186484 Refractory Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 11 88857 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 12 88858 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 10 88859 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 11 88860 -NCIT:C8846 Refractory Small Lymphocytic Lymphoma 10 88861 -NCIT:C8847 Refractory Burkitt Lymphoma 10 88862 -NCIT:C8853 Refractory Diffuse Large B-Cell Lymphoma 10 88863 -NCIT:C138018 Refractory Extranodal Diffuse Large B-cell Lymphoma 11 88864 -NCIT:C138026 Refractory Intravascular Large B-Cell Lymphoma 11 88865 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 88866 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 88867 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 11 88868 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 12 88869 -NCIT:C157678 Refractory T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 11 88870 -NCIT:C157680 Refractory Primary Effusion Lymphoma 11 88871 -NCIT:C157684 Refractory Plasmablastic Lymphoma 11 88872 -NCIT:C160233 Refractory High Grade B-Cell Lymphoma 11 88873 -NCIT:C151979 Refractory High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 12 88874 -NCIT:C162453 Refractory High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 12 88875 -NCIT:C188789 Refractory High Grade B-Cell Lymphoma, Not Otherwise Specified 12 88876 -NCIT:C165241 Refractory Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 88877 -NCIT:C160238 Refractory Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 12 88878 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 12 88879 -NCIT:C182034 Refractory Immunoblastic Lymphoma 12 88880 -NCIT:C8927 Refractory Centroblastic Lymphoma 12 88881 -NCIT:C183142 Refractory Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 11 88882 -NCIT:C188791 Refractory ALK-Positive Large B-Cell Lymphoma 11 88883 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 88884 -NCIT:C8858 Refractory Follicular Lymphoma 10 88885 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 11 88886 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 11 88887 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 11 88888 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 12 88889 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 12 88890 -NCIT:C8862 Refractory Mantle Cell Lymphoma 10 88891 -NCIT:C8836 Refractory Hodgkin Lymphoma 7 88892 -NCIT:C115458 Refractory Childhood Hodgkin Lymphoma 8 88893 -NCIT:C133736 Refractory Classic Hodgkin Lymphoma 8 88894 -NCIT:C142982 Refractory Lymphocyte-Rich Classic Hodgkin Lymphoma 9 88895 -NCIT:C8650 Refractory Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 88896 -NCIT:C8833 Refractory Mixed Cellularity Classic Hodgkin Lymphoma 9 88897 -NCIT:C8838 Refractory Nodular Sclerosis Classic Hodgkin Lymphoma 9 88898 -NCIT:C7260 Refractory Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 88899 -NCIT:C136488 Refractory Acute Lymphoblastic Leukemia 6 88900 -NCIT:C122624 Refractory Childhood Acute Lymphoblastic Leukemia 7 88901 -NCIT:C126309 Refractory Adult Acute Lymphoblastic Leukemia 7 88902 -NCIT:C142812 Refractory B Acute Lymphoblastic Leukemia 7 88903 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 88904 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 88905 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 88906 -NCIT:C150510 Refractory T Acute Lymphoblastic Leukemia 7 88907 -NCIT:C151977 Refractory Burkitt Leukemia 6 88908 -NCIT:C157475 Refractory Monomorphic Post-Transplant Lymphoproliferative Disorder 6 88909 -NCIT:C157697 Refractory B-Cell Prolymphocytic Leukemia 6 88910 -NCIT:C171064 Refractory Hairy Cell Leukemia Variant 6 88911 -NCIT:C172282 Refractory Chronic Lymphocytic Leukemia/Small Lymphocytic Lymphoma 6 88912 -NCIT:C7886 Refractory Chronic Lymphocytic Leukemia 7 88913 -NCIT:C158152 Refractory Transformed Chronic Lymphocytic Leukemia 8 88914 -NCIT:C8846 Refractory Small Lymphocytic Lymphoma 7 88915 -NCIT:C173411 Refractory Mature T-Cell and NK-Cell Neoplasm 6 88916 -NCIT:C157691 Refractory T-Cell Prolymphocytic Leukemia 7 88917 -NCIT:C157693 Refractory Aggressive NK-Cell Leukemia 7 88918 -NCIT:C180986 Refractory T-Cell Large Granular Lymphocyte Leukemia 7 88919 -NCIT:C8689 Refractory Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 7 88920 -NCIT:C148129 Refractory Mycosis Fungoides and Sezary Syndrome 8 88921 -NCIT:C177000 Refractory Sezary Syndrome 9 88922 -NCIT:C8687 Refractory Mycosis Fungoides 9 88923 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 88924 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 8 88925 -NCIT:C157690 Refractory NK-Cell Lymphoma, Unclassifiable 8 88926 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 8 88927 -NCIT:C165791 Refractory Transformed T-cell Non-Hodgkin Lymphoma 8 88928 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 9 88929 -NCIT:C168779 Refractory Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 8 88930 -NCIT:C168781 Refractory Follicular T-Cell Lymphoma 8 88931 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 8 88932 -NCIT:C8658 Refractory Anaplastic Large Cell Lymphoma 8 88933 -NCIT:C162689 Refractory Systemic Anaplastic Large Cell Lymphoma 9 88934 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 88935 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 88936 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 88937 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 8 88938 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 8 88939 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 8 88940 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 88941 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 88942 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 88943 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 88944 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 88945 -NCIT:C8687 Refractory Mycosis Fungoides 9 88946 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 88947 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 88948 -NCIT:C7813 Refractory Plasma Cell Neoplasm 6 88949 -NCIT:C133731 Refractory Primary Amyloidosis 7 88950 -NCIT:C174055 Refractory AL Amyloidosis 8 88951 -NCIT:C7024 Refractory Plasma Cell Myeloma 7 88952 -NCIT:C178375 Triple-Class Refractory Plasma Cell Myeloma 8 88953 -NCIT:C8030 Refractory Hairy Cell Leukemia 6 88954 -NCIT:C8696 Refractory T Lymphoblastic Leukemia/Lymphoma 6 88955 -NCIT:C150510 Refractory T Acute Lymphoblastic Leukemia 7 88956 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 7 88957 -NCIT:C172281 Refractory Myeloid Neoplasm 5 88958 -NCIT:C134319 Refractory Acute Myeloid Leukemia 6 88959 -NCIT:C174486 Refractory Acute Myeloid Leukemia Not Otherwise Specified 7 88960 -NCIT:C174511 Refractory Acute Monoblastic and Monocytic Leukemia 8 88961 -NCIT:C174512 Refractory Acute Myelomonocytic Leukemia 8 88962 -NCIT:C180897 Refractory Acute Myeloid Leukemia with Myelodysplasia-Related Changes 7 88963 -NCIT:C187449 Refractory Childhood Acute Myeloid Leukemia 7 88964 -NCIT:C148362 Refractory Myelodysplastic Syndrome 6 88965 -NCIT:C156104 Refractory Blastic Plasmacytoid Dendritic Cell Neoplasm 6 88966 -NCIT:C170816 Refractory Malignant Mastocytosis 6 88967 -NCIT:C170911 Refractory Myeloproliferative Neoplasm 6 88968 -NCIT:C171340 Refractory Primary Myelofibrosis 7 88969 -NCIT:C190787 Refractory Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 88970 -NCIT:C7885 Refractory Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 88971 -NCIT:C171339 Refractory Myelodysplastic/Myeloproliferative Neoplasm 6 88972 -NCIT:C150049 Refractory Chronic Myelomonocytic Leukemia 7 88973 -NCIT:C27358 Recurrent Hematologic Malignancy 4 88974 -NCIT:C148425 Recurrent Leukemia 5 88975 -NCIT:C148429 Recurrent Acute Leukemia 6 88976 -NCIT:C142810 Recurrent Acute Lymphoblastic Leukemia 7 88977 -NCIT:C142811 Recurrent B Acute Lymphoblastic Leukemia 8 88978 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 9 88979 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 88980 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 9 88981 -NCIT:C150131 Recurrent T Acute Lymphoblastic Leukemia 8 88982 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 9 88983 -NCIT:C7784 Recurrent Childhood Acute Lymphoblastic Leukemia 8 88984 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 9 88985 -NCIT:C7883 Recurrent Adult Acute Lymphoblastic Leukemia 8 88986 -NCIT:C148427 Recurrent Acute Myeloid Leukemia 7 88987 -NCIT:C125715 Recurrent Acute Myeloid Leukemia with Myelodysplasia-Related Changes 8 88988 -NCIT:C156720 Recurrent Acute Myeloid Leukemia with Multilineage Dysplasia 9 88989 -NCIT:C156716 Recurrent Acute Myeloid Leukemia Not Otherwise Specified 8 88990 -NCIT:C156717 Recurrent Acute Myelomonocytic Leukemia 9 88991 -NCIT:C156722 Recurrent Acute Monoblastic and Monocytic Leukemia 9 88992 -NCIT:C156723 Recurrent Acute Erythroid Leukemia 9 88993 -NCIT:C156731 Recurrent Acute Megakaryoblastic Leukemia 9 88994 -NCIT:C156718 Recurrent Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 8 88995 -NCIT:C156719 Recurrent Acute Myeloid Leukemia with t (9;11) (p21.3; q23.3); MLLT3-MLL 9 88996 -NCIT:C169107 Recurrent Acute Promyelocytic Leukemia with PML-RARA 9 88997 -NCIT:C7882 Recurrent Adult Acute Myeloid Leukemia 8 88998 -NCIT:C9068 Recurrent Childhood Acute Myeloid Leukemia 8 88999 -NCIT:C151976 Recurrent Burkitt Leukemia 7 89000 -NCIT:C172626 Recurrent Acute Leukemia of Ambiguous Lineage 7 89001 -NCIT:C141446 Recurrent Acute Undifferentiated Leukemia 8 89002 -NCIT:C148423 Recurrent Mixed Phenotype Acute Leukemia 8 89003 -NCIT:C141445 Recurrent Acute Biphenotypic Leukemia 9 89004 -NCIT:C179204 Recurrent Acute Bilineal Leukemia 9 89005 -NCIT:C150043 Recurrent Chronic Leukemia 6 89006 -NCIT:C142882 Recurrent Hairy Cell Leukemia 7 89007 -NCIT:C150048 Recurrent Chronic Myelomonocytic Leukemia 7 89008 -NCIT:C150133 Recurrent T-Cell Prolymphocytic Leukemia 7 89009 -NCIT:C157692 Recurrent Aggressive NK-Cell Leukemia 7 89010 -NCIT:C158081 Recurrent B-Cell Prolymphocytic Leukemia 7 89011 -NCIT:C171065 Recurrent Hairy Cell Leukemia Variant 7 89012 -NCIT:C176999 Recurrent Sezary Syndrome 7 89013 -NCIT:C180985 Recurrent T-Cell Large Granular Lymphocyte Leukemia 7 89014 -NCIT:C8645 Recurrent Chronic Lymphocytic Leukemia 7 89015 -NCIT:C158151 Recurrent Transformed Chronic Lymphocytic Leukemia 8 89016 -NCIT:C9070 Recurrent Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 89017 -NCIT:C190786 Recurrent Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 89018 -NCIT:C172132 Recurrent Myeloid Neoplasm 5 89019 -NCIT:C148363 Recurrent Myelodysplastic Syndrome 6 89020 -NCIT:C148427 Recurrent Acute Myeloid Leukemia 6 89021 -NCIT:C125715 Recurrent Acute Myeloid Leukemia with Myelodysplasia-Related Changes 7 89022 -NCIT:C156720 Recurrent Acute Myeloid Leukemia with Multilineage Dysplasia 8 89023 -NCIT:C156716 Recurrent Acute Myeloid Leukemia Not Otherwise Specified 7 89024 -NCIT:C156717 Recurrent Acute Myelomonocytic Leukemia 8 89025 -NCIT:C156722 Recurrent Acute Monoblastic and Monocytic Leukemia 8 89026 -NCIT:C156723 Recurrent Acute Erythroid Leukemia 8 89027 -NCIT:C156731 Recurrent Acute Megakaryoblastic Leukemia 8 89028 -NCIT:C156718 Recurrent Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 7 89029 -NCIT:C156719 Recurrent Acute Myeloid Leukemia with t (9;11) (p21.3; q23.3); MLLT3-MLL 8 89030 -NCIT:C169107 Recurrent Acute Promyelocytic Leukemia with PML-RARA 8 89031 -NCIT:C7882 Recurrent Adult Acute Myeloid Leukemia 7 89032 -NCIT:C9068 Recurrent Childhood Acute Myeloid Leukemia 7 89033 -NCIT:C156103 Recurrent Blastic Plasmacytoid Dendritic Cell Neoplasm 6 89034 -NCIT:C166142 Recurrent Myeloproliferative Neoplasm 6 89035 -NCIT:C179203 Recurrent Primary Myelofibrosis 7 89036 -NCIT:C190786 Recurrent Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 89037 -NCIT:C9070 Recurrent Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 89038 -NCIT:C166143 Recurrent Myelodysplastic/Myeloproliferative Neoplasm 6 89039 -NCIT:C150048 Recurrent Chronic Myelomonocytic Leukemia 7 89040 -NCIT:C170817 Recurrent Malignant Mastocytosis 6 89041 -NCIT:C172133 Recurrent Malignant Lymphoid Neoplasm 5 89042 -NCIT:C131873 Recurrent Chronic Lymphocytic Leukemia/Small Lymphocytic Lymphoma 6 89043 -NCIT:C8154 Recurrent Small Lymphocytic Lymphoma 7 89044 -NCIT:C8645 Recurrent Chronic Lymphocytic Leukemia 7 89045 -NCIT:C158151 Recurrent Transformed Chronic Lymphocytic Leukemia 8 89046 -NCIT:C134157 Recurrent Lymphoma 6 89047 -NCIT:C138013 Recurrent B-Cell Lymphoma, Unclassifiable, with Features Intermediate between Diffuse Large B-Cell Lymphoma and Classic Hodgkin Lymphoma 7 89048 -NCIT:C138019 Recurrent Central Nervous System Lymphoma 7 89049 -NCIT:C146990 Recurrent Central Nervous System Non-Hodgkin Lymphoma 8 89050 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 9 89051 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 89052 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 89053 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 89054 -NCIT:C138021 Recurrent Testicular Lymphoma 7 89055 -NCIT:C138023 Recurrent Breast Lymphoma 7 89056 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 8 89057 -NCIT:C142876 Recurrent Primary Cutaneous Lymphoma 7 89058 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 8 89059 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 89060 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 89061 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 89062 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 89063 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 89064 -NCIT:C8686 Recurrent Mycosis Fungoides 9 89065 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 89066 -NCIT:C147863 Recurrent EBV-Related Lymphoma 7 89067 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 89068 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 8 89069 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 9 89070 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 9 89071 -NCIT:C153175 Recurrent Mediastinal Lymphoma 7 89072 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 89073 -NCIT:C157681 Recurrent Primary Bone Lymphoma 7 89074 -NCIT:C187196 Recurrent Childhood Lymphoma 7 89075 -NCIT:C115369 Recurrent Childhood Non-Hodgkin Lymphoma 8 89076 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 9 89077 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 9 89078 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 9 89079 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 9 89080 -NCIT:C8059 Recurrent Childhood Hodgkin Lymphoma 8 89081 -NCIT:C4937 Recurrent Hodgkin Lymphoma 7 89082 -NCIT:C133592 Recurrent Classic Hodgkin Lymphoma 8 89083 -NCIT:C136971 Recurrent Lymphocyte-Rich Classic Hodgkin Lymphoma 9 89084 -NCIT:C8649 Recurrent Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 89085 -NCIT:C8832 Recurrent Mixed Cellularity Classic Hodgkin Lymphoma 9 89086 -NCIT:C8837 Recurrent Nodular Sclerosis Classic Hodgkin Lymphoma 9 89087 -NCIT:C7259 Recurrent Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 89088 -NCIT:C7789 Recurrent Adult Hodgkin Lymphoma 8 89089 -NCIT:C8059 Recurrent Childhood Hodgkin Lymphoma 8 89090 -NCIT:C9251 Recurrent Non-Hodgkin Lymphoma 7 89091 -NCIT:C115369 Recurrent Childhood Non-Hodgkin Lymphoma 8 89092 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 9 89093 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 9 89094 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 9 89095 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 9 89096 -NCIT:C146990 Recurrent Central Nervous System Non-Hodgkin Lymphoma 8 89097 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 9 89098 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 89099 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 89100 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 89101 -NCIT:C156232 Recurrent Aggressive Non-Hodgkin Lymphoma 8 89102 -NCIT:C178553 Recurrent Aggressive B-Cell Non-Hodgkin Lymphoma 9 89103 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 89104 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 89105 -NCIT:C5008 Recurrent Burkitt Lymphoma 10 89106 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 11 89107 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 11 89108 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 10 89109 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 11 89110 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 11 89111 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 10 89112 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 11 89113 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 11 89114 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 10 89115 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 10 89116 -NCIT:C178554 Recurrent Aggressive T-Cell Non-Hodgkin Lymphoma 9 89117 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 89118 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 10 89119 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 89120 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 89121 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 10 89122 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 89123 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 89124 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 10 89125 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 10 89126 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 10 89127 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 10 89128 -NCIT:C8490 Recurrent Aggressive Adult Non-Hodgkin Lymphoma 9 89129 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 89130 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 10 89131 -NCIT:C8164 Recurrent Adult Lymphoblastic Lymphoma 10 89132 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 10 89133 -NCIT:C181796 Recurrent Indolent Non-Hodgkin Lymphoma 8 89134 -NCIT:C183512 Recurrent Indolent B-Cell Non-Hodgkin Lymphoma 9 89135 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 10 89136 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 11 89137 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 89138 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 11 89139 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 10 89140 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 10 89141 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 10 89142 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 11 89143 -NCIT:C183513 Recurrent Indolent T-Cell Non-Hodgkin Lymphoma 9 89144 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 89145 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 89146 -NCIT:C8686 Recurrent Mycosis Fungoides 10 89147 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 89148 -NCIT:C8488 Recurrent Indolent Adult Non-Hodgkin Lymphoma 9 89149 -NCIT:C8098 Recurrent Adult Non-Hodgkin Lymphoma 8 89150 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 9 89151 -NCIT:C8488 Recurrent Indolent Adult Non-Hodgkin Lymphoma 9 89152 -NCIT:C8490 Recurrent Aggressive Adult Non-Hodgkin Lymphoma 9 89153 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 89154 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 10 89155 -NCIT:C8164 Recurrent Adult Lymphoblastic Lymphoma 10 89156 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 10 89157 -NCIT:C8663 Recurrent T-Cell Non-Hodgkin Lymphoma 8 89158 -NCIT:C178554 Recurrent Aggressive T-Cell Non-Hodgkin Lymphoma 9 89159 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 89160 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 10 89161 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 89162 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 89163 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 10 89164 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 89165 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 89166 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 10 89167 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 10 89168 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 10 89169 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 10 89170 -NCIT:C183513 Recurrent Indolent T-Cell Non-Hodgkin Lymphoma 9 89171 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 89172 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 89173 -NCIT:C8686 Recurrent Mycosis Fungoides 10 89174 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 89175 -NCIT:C8688 Recurrent Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 9 89176 -NCIT:C115439 Recurrent Mycosis Fungoides and Sezary Syndrome 10 89177 -NCIT:C176999 Recurrent Sezary Syndrome 11 89178 -NCIT:C8686 Recurrent Mycosis Fungoides 11 89179 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 12 89180 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 89181 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 10 89182 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 89183 -NCIT:C157689 Recurrent NK-Cell Lymphoma, Unclassifiable 10 89184 -NCIT:C165789 Recurrent Transformed T-cell Non-Hodgkin Lymphoma 10 89185 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 89186 -NCIT:C168778 Recurrent Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 10 89187 -NCIT:C168780 Recurrent Follicular T-Cell Lymphoma 10 89188 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 10 89189 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 10 89190 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 11 89191 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 11 89192 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 11 89193 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 11 89194 -NCIT:C8686 Recurrent Mycosis Fungoides 11 89195 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 12 89196 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 10 89197 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 10 89198 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 10 89199 -NCIT:C9250 Recurrent Anaplastic Large Cell Lymphoma 10 89200 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 11 89201 -NCIT:C162688 Recurrent Systemic Anaplastic Large Cell Lymphoma 11 89202 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 12 89203 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 11 89204 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 11 89205 -NCIT:C8702 Recurrent Transformed Non-Hodgkin Lymphoma 8 89206 -NCIT:C158149 Recurrent Transformed B-Cell Non-Hodgkin Lymphoma 9 89207 -NCIT:C160232 Recurrent Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 10 89208 -NCIT:C186483 Recurrent Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 10 89209 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 11 89210 -NCIT:C165789 Recurrent Transformed T-cell Non-Hodgkin Lymphoma 9 89211 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 89212 -NCIT:C8841 Recurrent B-Cell Non-Hodgkin Lymphoma 8 89213 -NCIT:C165799 Recurrent Mature B-Cell Non-Hodgkin Lymphoma 9 89214 -NCIT:C158149 Recurrent Transformed B-Cell Non-Hodgkin Lymphoma 10 89215 -NCIT:C160232 Recurrent Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 11 89216 -NCIT:C186483 Recurrent Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 11 89217 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 12 89218 -NCIT:C5007 Recurrent Follicular Lymphoma 10 89219 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 11 89220 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 11 89221 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 11 89222 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 12 89223 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 12 89224 -NCIT:C5008 Recurrent Burkitt Lymphoma 10 89225 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 11 89226 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 11 89227 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 10 89228 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 11 89229 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 89230 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 11 89231 -NCIT:C8154 Recurrent Small Lymphocytic Lymphoma 10 89232 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 10 89233 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 10 89234 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 11 89235 -NCIT:C8852 Recurrent Diffuse Large B-Cell Lymphoma 10 89236 -NCIT:C138015 Recurrent Extranodal Diffuse Large B-cell Lymphoma 11 89237 -NCIT:C138025 Recurrent Intravascular Large B-Cell Lymphoma 11 89238 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 89239 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 89240 -NCIT:C156696 Recurrent T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 11 89241 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 11 89242 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 12 89243 -NCIT:C157679 Recurrent Primary Effusion Lymphoma 11 89244 -NCIT:C157683 Recurrent Plasmablastic Lymphoma 11 89245 -NCIT:C160229 Recurrent High Grade B-Cell Lymphoma 11 89246 -NCIT:C151980 Recurrent High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 12 89247 -NCIT:C162451 Recurrent High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 12 89248 -NCIT:C188788 Recurrent High Grade B-Cell Lymphoma, Not Otherwise Specified 12 89249 -NCIT:C165240 Recurrent Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 89250 -NCIT:C160230 Recurrent Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 12 89251 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 12 89252 -NCIT:C182035 Recurrent Immunoblastic Lymphoma 12 89253 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 13 89254 -NCIT:C8926 Recurrent Centroblastic Lymphoma 12 89255 -NCIT:C183140 Recurrent Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 11 89256 -NCIT:C188790 Recurrent ALK-Positive Large B-Cell Lymphoma 11 89257 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 11 89258 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 12 89259 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 12 89260 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 89261 -NCIT:C178553 Recurrent Aggressive B-Cell Non-Hodgkin Lymphoma 9 89262 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 89263 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 89264 -NCIT:C5008 Recurrent Burkitt Lymphoma 10 89265 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 11 89266 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 11 89267 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 10 89268 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 11 89269 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 11 89270 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 10 89271 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 11 89272 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 11 89273 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 10 89274 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 10 89275 -NCIT:C183512 Recurrent Indolent B-Cell Non-Hodgkin Lymphoma 9 89276 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 10 89277 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 11 89278 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 89279 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 11 89280 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 10 89281 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 10 89282 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 10 89283 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 11 89284 -NCIT:C142810 Recurrent Acute Lymphoblastic Leukemia 6 89285 -NCIT:C142811 Recurrent B Acute Lymphoblastic Leukemia 7 89286 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 89287 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 89288 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 89289 -NCIT:C150131 Recurrent T Acute Lymphoblastic Leukemia 7 89290 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 89291 -NCIT:C7784 Recurrent Childhood Acute Lymphoblastic Leukemia 7 89292 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 89293 -NCIT:C7883 Recurrent Adult Acute Lymphoblastic Leukemia 7 89294 -NCIT:C142882 Recurrent Hairy Cell Leukemia 6 89295 -NCIT:C151976 Recurrent Burkitt Leukemia 6 89296 -NCIT:C157474 Recurrent Monomorphic Post-Transplant Lymphoproliferative Disorder 6 89297 -NCIT:C158081 Recurrent B-Cell Prolymphocytic Leukemia 6 89298 -NCIT:C171065 Recurrent Hairy Cell Leukemia Variant 6 89299 -NCIT:C172289 Recurrent Plasma Cell Neoplasm 6 89300 -NCIT:C133732 Recurrent Primary Amyloidosis 7 89301 -NCIT:C174054 Recurrent AL Amyloidosis 8 89302 -NCIT:C7025 Recurrent Plasma Cell Myeloma 7 89303 -NCIT:C173409 Recurrent Mature T-Cell and NK-Cell Neoplasm 6 89304 -NCIT:C150133 Recurrent T-Cell Prolymphocytic Leukemia 7 89305 -NCIT:C157692 Recurrent Aggressive NK-Cell Leukemia 7 89306 -NCIT:C180985 Recurrent T-Cell Large Granular Lymphocyte Leukemia 7 89307 -NCIT:C8688 Recurrent Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 7 89308 -NCIT:C115439 Recurrent Mycosis Fungoides and Sezary Syndrome 8 89309 -NCIT:C176999 Recurrent Sezary Syndrome 9 89310 -NCIT:C8686 Recurrent Mycosis Fungoides 9 89311 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 89312 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 8 89313 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 8 89314 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 89315 -NCIT:C157689 Recurrent NK-Cell Lymphoma, Unclassifiable 8 89316 -NCIT:C165789 Recurrent Transformed T-cell Non-Hodgkin Lymphoma 8 89317 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 9 89318 -NCIT:C168778 Recurrent Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 8 89319 -NCIT:C168780 Recurrent Follicular T-Cell Lymphoma 8 89320 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 8 89321 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 89322 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 89323 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 89324 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 89325 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 89326 -NCIT:C8686 Recurrent Mycosis Fungoides 9 89327 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 89328 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 8 89329 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 8 89330 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 8 89331 -NCIT:C9250 Recurrent Anaplastic Large Cell Lymphoma 8 89332 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 9 89333 -NCIT:C162688 Recurrent Systemic Anaplastic Large Cell Lymphoma 9 89334 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 89335 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 89336 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 89337 -NCIT:C8695 Recurrent T Lymphoblastic Leukemia/Lymphoma 6 89338 -NCIT:C150131 Recurrent T Acute Lymphoblastic Leukemia 7 89339 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 89340 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 7 89341 -NCIT:C27639 Transplant-Related Hematologic Malignancy 4 89342 -NCIT:C27695 EBV-Related Clonal Post-Transplant Lymphoproliferative Disorder 5 89343 -NCIT:C7239 Hodgkin-Like Post-Transplant Lymphoproliferative Disorder 6 89344 -NCIT:C7243 Classic Hodgkin Lymphoma Type Post-Transplant Lymphoproliferative Disorder 6 89345 -NCIT:C7233 Monomorphic Post-Transplant Lymphoproliferative Disorder 5 89346 -NCIT:C157474 Recurrent Monomorphic Post-Transplant Lymphoproliferative Disorder 6 89347 -NCIT:C157475 Refractory Monomorphic Post-Transplant Lymphoproliferative Disorder 6 89348 -NCIT:C7237 Monomorphic B-Cell Post-Transplant Lymphoproliferative Disorder 6 89349 -NCIT:C7240 Plasma Cell Post-Transplant Lymphoproliferative Disorder 7 89350 -NCIT:C7241 Plasmacytoma-Like Post-Transplant Lymphoproliferative Disorder 8 89351 -NCIT:C7242 Plasma Cell Myeloma Post-Transplant Lymphoproliferative Disorder 8 89352 -NCIT:C7244 Burkitt Lymphoma Post-Transplant Lymphoproliferative Disorder 7 89353 -NCIT:C7245 Burkitt-Like Lymphoma Post-Transplant Lymphoproliferative Disorder 8 89354 -NCIT:C7246 Diffuse Large B-Cell Lymphoma Post-Transplant Lymphoproliferative Disorder 7 89355 -NCIT:C7247 Anaplastic Lymphoma Post-Transplant Lymphoproliferative Disorder 8 89356 -NCIT:C7248 Centroblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 8 89357 -NCIT:C7249 Immunoblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 8 89358 -NCIT:C7238 Monomorphic T/NK-Cell Post-Transplant Lymphoproliferative Disorder 6 89359 -NCIT:C3161 Leukemia 4 89360 -NCIT:C148425 Recurrent Leukemia 5 89361 -NCIT:C148429 Recurrent Acute Leukemia 6 89362 -NCIT:C142810 Recurrent Acute Lymphoblastic Leukemia 7 89363 -NCIT:C142811 Recurrent B Acute Lymphoblastic Leukemia 8 89364 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 9 89365 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 89366 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 9 89367 -NCIT:C150131 Recurrent T Acute Lymphoblastic Leukemia 8 89368 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 9 89369 -NCIT:C7784 Recurrent Childhood Acute Lymphoblastic Leukemia 8 89370 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 9 89371 -NCIT:C7883 Recurrent Adult Acute Lymphoblastic Leukemia 8 89372 -NCIT:C148427 Recurrent Acute Myeloid Leukemia 7 89373 -NCIT:C125715 Recurrent Acute Myeloid Leukemia with Myelodysplasia-Related Changes 8 89374 -NCIT:C156720 Recurrent Acute Myeloid Leukemia with Multilineage Dysplasia 9 89375 -NCIT:C156716 Recurrent Acute Myeloid Leukemia Not Otherwise Specified 8 89376 -NCIT:C156717 Recurrent Acute Myelomonocytic Leukemia 9 89377 -NCIT:C156722 Recurrent Acute Monoblastic and Monocytic Leukemia 9 89378 -NCIT:C156723 Recurrent Acute Erythroid Leukemia 9 89379 -NCIT:C156731 Recurrent Acute Megakaryoblastic Leukemia 9 89380 -NCIT:C156718 Recurrent Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 8 89381 -NCIT:C156719 Recurrent Acute Myeloid Leukemia with t (9;11) (p21.3; q23.3); MLLT3-MLL 9 89382 -NCIT:C169107 Recurrent Acute Promyelocytic Leukemia with PML-RARA 9 89383 -NCIT:C7882 Recurrent Adult Acute Myeloid Leukemia 8 89384 -NCIT:C9068 Recurrent Childhood Acute Myeloid Leukemia 8 89385 -NCIT:C151976 Recurrent Burkitt Leukemia 7 89386 -NCIT:C172626 Recurrent Acute Leukemia of Ambiguous Lineage 7 89387 -NCIT:C141446 Recurrent Acute Undifferentiated Leukemia 8 89388 -NCIT:C148423 Recurrent Mixed Phenotype Acute Leukemia 8 89389 -NCIT:C141445 Recurrent Acute Biphenotypic Leukemia 9 89390 -NCIT:C179204 Recurrent Acute Bilineal Leukemia 9 89391 -NCIT:C150043 Recurrent Chronic Leukemia 6 89392 -NCIT:C142882 Recurrent Hairy Cell Leukemia 7 89393 -NCIT:C150048 Recurrent Chronic Myelomonocytic Leukemia 7 89394 -NCIT:C150133 Recurrent T-Cell Prolymphocytic Leukemia 7 89395 -NCIT:C157692 Recurrent Aggressive NK-Cell Leukemia 7 89396 -NCIT:C158081 Recurrent B-Cell Prolymphocytic Leukemia 7 89397 -NCIT:C171065 Recurrent Hairy Cell Leukemia Variant 7 89398 -NCIT:C176999 Recurrent Sezary Syndrome 7 89399 -NCIT:C180985 Recurrent T-Cell Large Granular Lymphocyte Leukemia 7 89400 -NCIT:C8645 Recurrent Chronic Lymphocytic Leukemia 7 89401 -NCIT:C158151 Recurrent Transformed Chronic Lymphocytic Leukemia 8 89402 -NCIT:C9070 Recurrent Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 89403 -NCIT:C190786 Recurrent Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 89404 -NCIT:C148426 Refractory Leukemia 5 89405 -NCIT:C148431 Refractory Acute Leukemia 6 89406 -NCIT:C134319 Refractory Acute Myeloid Leukemia 7 89407 -NCIT:C174486 Refractory Acute Myeloid Leukemia Not Otherwise Specified 8 89408 -NCIT:C174511 Refractory Acute Monoblastic and Monocytic Leukemia 9 89409 -NCIT:C174512 Refractory Acute Myelomonocytic Leukemia 9 89410 -NCIT:C180897 Refractory Acute Myeloid Leukemia with Myelodysplasia-Related Changes 8 89411 -NCIT:C187449 Refractory Childhood Acute Myeloid Leukemia 8 89412 -NCIT:C136488 Refractory Acute Lymphoblastic Leukemia 7 89413 -NCIT:C122624 Refractory Childhood Acute Lymphoblastic Leukemia 8 89414 -NCIT:C126309 Refractory Adult Acute Lymphoblastic Leukemia 8 89415 -NCIT:C142812 Refractory B Acute Lymphoblastic Leukemia 8 89416 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 9 89417 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 89418 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 9 89419 -NCIT:C150510 Refractory T Acute Lymphoblastic Leukemia 8 89420 -NCIT:C151977 Refractory Burkitt Leukemia 7 89421 -NCIT:C172630 Refractory Acute Leukemia of Ambiguous Lineage 7 89422 -NCIT:C148430 Refractory Mixed Phenotype Acute Leukemia 8 89423 -NCIT:C173683 Refractory Acute Biphenotypic Leukemia 9 89424 -NCIT:C179205 Refractory Acute Bilineal Leukemia 9 89425 -NCIT:C173503 Refractory Acute Undifferentiated Leukemia 8 89426 -NCIT:C150044 Refractory Chronic Leukemia 6 89427 -NCIT:C150049 Refractory Chronic Myelomonocytic Leukemia 7 89428 -NCIT:C157691 Refractory T-Cell Prolymphocytic Leukemia 7 89429 -NCIT:C157693 Refractory Aggressive NK-Cell Leukemia 7 89430 -NCIT:C157697 Refractory B-Cell Prolymphocytic Leukemia 7 89431 -NCIT:C171064 Refractory Hairy Cell Leukemia Variant 7 89432 -NCIT:C177000 Refractory Sezary Syndrome 7 89433 -NCIT:C180986 Refractory T-Cell Large Granular Lymphocyte Leukemia 7 89434 -NCIT:C7885 Refractory Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 89435 -NCIT:C7886 Refractory Chronic Lymphocytic Leukemia 7 89436 -NCIT:C158152 Refractory Transformed Chronic Lymphocytic Leukemia 8 89437 -NCIT:C8030 Refractory Hairy Cell Leukemia 7 89438 -NCIT:C190787 Refractory Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 89439 -NCIT:C26814 Radiation-Related Leukemia 5 89440 -NCIT:C3169 Mast Cell Leukemia 5 89441 -NCIT:C188031 Mast Cell Leukemia Associated with Another Hematological Neoplasm 6 89442 -NCIT:C3172 Myeloid Leukemia 5 89443 -NCIT:C3171 Acute Myeloid Leukemia 6 89444 -NCIT:C122687 Cytogenetically Normal Acute Myeloid Leukemia 7 89445 -NCIT:C186730 Therapy-Related Cytogenetically Normal Acute Myeloid Leukemia 8 89446 -NCIT:C134319 Refractory Acute Myeloid Leukemia 7 89447 -NCIT:C174486 Refractory Acute Myeloid Leukemia Not Otherwise Specified 8 89448 -NCIT:C174511 Refractory Acute Monoblastic and Monocytic Leukemia 9 89449 -NCIT:C174512 Refractory Acute Myelomonocytic Leukemia 9 89450 -NCIT:C180897 Refractory Acute Myeloid Leukemia with Myelodysplasia-Related Changes 8 89451 -NCIT:C187449 Refractory Childhood Acute Myeloid Leukemia 8 89452 -NCIT:C148427 Recurrent Acute Myeloid Leukemia 7 89453 -NCIT:C125715 Recurrent Acute Myeloid Leukemia with Myelodysplasia-Related Changes 8 89454 -NCIT:C156720 Recurrent Acute Myeloid Leukemia with Multilineage Dysplasia 9 89455 -NCIT:C156716 Recurrent Acute Myeloid Leukemia Not Otherwise Specified 8 89456 -NCIT:C156717 Recurrent Acute Myelomonocytic Leukemia 9 89457 -NCIT:C156722 Recurrent Acute Monoblastic and Monocytic Leukemia 9 89458 -NCIT:C156723 Recurrent Acute Erythroid Leukemia 9 89459 -NCIT:C156731 Recurrent Acute Megakaryoblastic Leukemia 9 89460 -NCIT:C156718 Recurrent Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 8 89461 -NCIT:C156719 Recurrent Acute Myeloid Leukemia with t (9;11) (p21.3; q23.3); MLLT3-MLL 9 89462 -NCIT:C169107 Recurrent Acute Promyelocytic Leukemia with PML-RARA 9 89463 -NCIT:C7882 Recurrent Adult Acute Myeloid Leukemia 8 89464 -NCIT:C9068 Recurrent Childhood Acute Myeloid Leukemia 8 89465 -NCIT:C25765 Secondary Acute Myeloid Leukemia 7 89466 -NCIT:C172129 Acute Myeloid Leukemia Arising from Previous Myeloproliferative Neoplasm 8 89467 -NCIT:C172130 Acute Myeloid Leukemia Arising from Previous Myelodysplastic/Myeloproliferative Neoplasm 8 89468 -NCIT:C27931 Benzene-Related Acute Myeloid Leukemia 8 89469 -NCIT:C4037 Acute Myeloid Leukemia Arising from Previous Myelodysplastic Syndrome 8 89470 -NCIT:C8252 Therapy-Related Acute Myeloid Leukemia 8 89471 -NCIT:C186730 Therapy-Related Cytogenetically Normal Acute Myeloid Leukemia 9 89472 -NCIT:C27754 Alkylating Agent-Related Acute Myeloid Leukemia 9 89473 -NCIT:C27755 Topoisomerase II Inhibitor-Related Acute Myeloid Leukemia 9 89474 -NCIT:C27753 Acute Myeloid Leukemia Not Otherwise Specified 7 89475 -NCIT:C122625 Childhood Acute Myeloid Leukemia Not Otherwise Specified 8 89476 -NCIT:C7940 Childhood Acute Monoblastic and Monocytic Leukemia 9 89477 -NCIT:C9162 Childhood Acute Monoblastic Leukemia 10 89478 -NCIT:C9163 Childhood Acute Monocytic Leukemia 10 89479 -NCIT:C7970 Childhood Acute Myelomonocytic Leukemia 9 89480 -NCIT:C7971 Childhood Acute Basophilic Leukemia 9 89481 -NCIT:C7972 Childhood Acute Megakaryoblastic Leukemia 9 89482 -NCIT:C8304 Childhood Acute Myeloid Leukemia with Minimal Differentiation 9 89483 -NCIT:C9158 Childhood Acute Myeloid Leukemia without Maturation 9 89484 -NCIT:C9164 Childhood Acute Erythroid Leukemia 9 89485 -NCIT:C9381 Childhood Acute Myeloid Leukemia with Maturation 9 89486 -NCIT:C156716 Recurrent Acute Myeloid Leukemia Not Otherwise Specified 8 89487 -NCIT:C156717 Recurrent Acute Myelomonocytic Leukemia 9 89488 -NCIT:C156722 Recurrent Acute Monoblastic and Monocytic Leukemia 9 89489 -NCIT:C156723 Recurrent Acute Erythroid Leukemia 9 89490 -NCIT:C156731 Recurrent Acute Megakaryoblastic Leukemia 9 89491 -NCIT:C174486 Refractory Acute Myeloid Leukemia Not Otherwise Specified 8 89492 -NCIT:C174511 Refractory Acute Monoblastic and Monocytic Leukemia 9 89493 -NCIT:C174512 Refractory Acute Myelomonocytic Leukemia 9 89494 -NCIT:C3164 Acute Basophilic Leukemia 8 89495 -NCIT:C7964 Adult Acute Basophilic Leukemia 9 89496 -NCIT:C7971 Childhood Acute Basophilic Leukemia 9 89497 -NCIT:C3170 Acute Megakaryoblastic Leukemia 8 89498 -NCIT:C156731 Recurrent Acute Megakaryoblastic Leukemia 9 89499 -NCIT:C7965 Adult Acute Megakaryoblastic Leukemia 9 89500 -NCIT:C7972 Childhood Acute Megakaryoblastic Leukemia 9 89501 -NCIT:C3249 Acute Myeloid Leukemia without Maturation 8 89502 -NCIT:C9158 Childhood Acute Myeloid Leukemia without Maturation 9 89503 -NCIT:C9380 Adult Acute Myeloid Leukemia without Maturation 9 89504 -NCIT:C3250 Acute Myeloid Leukemia with Maturation 8 89505 -NCIT:C7961 Adult Acute Myeloid Leukemia with Maturation 9 89506 -NCIT:C9381 Childhood Acute Myeloid Leukemia with Maturation 9 89507 -NCIT:C4344 Acute Panmyelosis with Myelofibrosis 8 89508 -NCIT:C7318 Acute Monoblastic and Monocytic Leukemia 8 89509 -NCIT:C156722 Recurrent Acute Monoblastic and Monocytic Leukemia 9 89510 -NCIT:C174511 Refractory Acute Monoblastic and Monocytic Leukemia 9 89511 -NCIT:C4861 Acute Monocytic Leukemia 9 89512 -NCIT:C5630 Aleukemic Monocytic Leukemia Cutis 10 89513 -NCIT:C8263 Adult Acute Monocytic Leukemia 10 89514 -NCIT:C9163 Childhood Acute Monocytic Leukemia 10 89515 -NCIT:C7171 Acute Monoblastic Leukemia 9 89516 -NCIT:C9156 Adult Acute Monoblastic Leukemia 10 89517 -NCIT:C9162 Childhood Acute Monoblastic Leukemia 10 89518 -NCIT:C7319 Adult Acute Monoblastic and Monocytic Leukemia 9 89519 -NCIT:C8263 Adult Acute Monocytic Leukemia 10 89520 -NCIT:C9156 Adult Acute Monoblastic Leukemia 10 89521 -NCIT:C7940 Childhood Acute Monoblastic and Monocytic Leukemia 9 89522 -NCIT:C9162 Childhood Acute Monoblastic Leukemia 10 89523 -NCIT:C9163 Childhood Acute Monocytic Leukemia 10 89524 -NCIT:C7463 Acute Myelomonocytic Leukemia 8 89525 -NCIT:C156717 Recurrent Acute Myelomonocytic Leukemia 9 89526 -NCIT:C174512 Refractory Acute Myelomonocytic Leukemia 9 89527 -NCIT:C42779 Acute Myelomonocytic Leukemia without Abnormal Eosinophils 9 89528 -NCIT:C7962 Adult Acute Myelomonocytic Leukemia 9 89529 -NCIT:C7970 Childhood Acute Myelomonocytic Leukemia 9 89530 -NCIT:C9020 Acute Myelomonocytic Leukemia with Abnormal Eosinophils 9 89531 -NCIT:C8460 Acute Myeloid Leukemia with Minimal Differentiation 8 89532 -NCIT:C8303 Adult Acute Myeloid Leukemia with Minimal Differentiation 9 89533 -NCIT:C8304 Childhood Acute Myeloid Leukemia with Minimal Differentiation 9 89534 -NCIT:C8923 Acute Erythroid Leukemia 8 89535 -NCIT:C156723 Recurrent Acute Erythroid Leukemia 9 89536 -NCIT:C7152 Erythroleukemia 9 89537 -NCIT:C68694 Adult Erythroleukemia 10 89538 -NCIT:C7467 Pure Erythroid Leukemia 9 89539 -NCIT:C68693 Adult Pure Erythroid Leukemia 10 89540 -NCIT:C9153 Adult Acute Erythroid Leukemia 9 89541 -NCIT:C68693 Adult Pure Erythroid Leukemia 10 89542 -NCIT:C68694 Adult Erythroleukemia 10 89543 -NCIT:C9164 Childhood Acute Erythroid Leukemia 9 89544 -NCIT:C7175 Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 7 89545 -NCIT:C122688 Core Binding Factor Acute Myeloid Leukemia 8 89546 -NCIT:C129785 Acute Myeloid Leukemia with BCR-ABL1 8 89547 -NCIT:C156718 Recurrent Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 8 89548 -NCIT:C156719 Recurrent Acute Myeloid Leukemia with t (9;11) (p21.3; q23.3); MLLT3-MLL 9 89549 -NCIT:C169107 Recurrent Acute Promyelocytic Leukemia with PML-RARA 9 89550 -NCIT:C162775 Acute Myeloid Leukemia with Trisomy 8 8 89551 -NCIT:C174129 Acute Myeloid Leukemia with MLL Rearrangement 8 89552 -NCIT:C132101 Acute Myeloid Leukemia with t(10;11)(p12;q23); MLLT10-MLL 9 89553 -NCIT:C132105 Acute Myeloid Leukemia with t(6;11)(q27;q23); MLLT4-MLL 9 89554 -NCIT:C6924 Acute Myeloid Leukemia with Variant MLL Translocations 9 89555 -NCIT:C82403 Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 9 89556 -NCIT:C156719 Recurrent Acute Myeloid Leukemia with t (9;11) (p21.3; q23.3); MLLT3-MLL 10 89557 -NCIT:C188451 Childhood Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 10 89558 -NCIT:C68696 Adult Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 10 89559 -NCIT:C3182 Acute Promyelocytic Leukemia with PML-RARA 8 89560 -NCIT:C169107 Recurrent Acute Promyelocytic Leukemia with PML-RARA 9 89561 -NCIT:C27756 Typical Acute Promyelocytic Leukemia 9 89562 -NCIT:C27757 Microgranular Acute Promyelocytic Leukemia 9 89563 -NCIT:C7968 Childhood Acute Promyelocytic Leukemia with PML-RARA 9 89564 -NCIT:C9155 Adult Acute Promyelocytic Leukemia with PML-RARA 9 89565 -NCIT:C36055 Acute Myeloid Leukemia with a Variant RARA Translocation 8 89566 -NCIT:C36056 Acute Myeloid Leukemia with t(11;17)(q23;q21) 9 89567 -NCIT:C36057 Acute Myeloid Leukemia with t(5;17)(q35;q21) 9 89568 -NCIT:C36058 Acute Myeloid Leukemia with t(11;17)(q13;q21) 9 89569 -NCIT:C38377 Acute Myeloid Leukemia with t(17;17)(q21;q21) 9 89570 -NCIT:C68700 Adult Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 8 89571 -NCIT:C68696 Adult Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 9 89572 -NCIT:C68697 Adult Acute Myeloid Leukemia with inv(16)(p13.1q22); CBFB-MYH11 9 89573 -NCIT:C68698 Adult Acute Myeloid Leukemia with t(16;16)(p13.1;q22); CBFB-MYH11 9 89574 -NCIT:C68699 Adult Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 9 89575 -NCIT:C9155 Adult Acute Promyelocytic Leukemia with PML-RARA 9 89576 -NCIT:C82423 Acute Myeloid Leukemia with t(6;9) (p23;q34.1); DEK-NUP214 8 89577 -NCIT:C82426 Acute Myeloid Leukemia with inv(3) (q21.3;q26.2) or t(3;3) (q21.3;q26.2); GATA2, MECOM 8 89578 -NCIT:C122716 Acute Myeloid Leukemia with inv(3) (q21.3;q26.2); GATA2, MECOM 9 89579 -NCIT:C122717 Acute Myeloid Leukemia with t(3;3) (q21.3;q26.2); GATA2, MECOM 9 89580 -NCIT:C82427 Acute Myeloid Leukemia (Megakaryoblastic) with t(1;22)(p13.3;q13.1); RBM15-MKL1 8 89581 -NCIT:C9287 Acute Myeloid Leukemia with inv(16)(p13.1q22) or t(16;16)(p13.1;q22); CBFB-MYH11 8 89582 -NCIT:C9018 Acute Myeloid Leukemia with inv(16)(p13.1q22); CBFB-MYH11 9 89583 -NCIT:C68697 Adult Acute Myeloid Leukemia with inv(16)(p13.1q22); CBFB-MYH11 10 89584 -NCIT:C9019 Acute Myeloid Leukemia with t(16;16)(p13.1;q22); CBFB-MYH11 9 89585 -NCIT:C68698 Adult Acute Myeloid Leukemia with t(16;16)(p13.1;q22); CBFB-MYH11 10 89586 -NCIT:C9288 Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 8 89587 -NCIT:C188450 Childhood Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 9 89588 -NCIT:C68699 Adult Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 9 89589 -NCIT:C7600 Acute Myeloid Leukemia with Myelodysplasia-Related Changes 7 89590 -NCIT:C125715 Recurrent Acute Myeloid Leukemia with Myelodysplasia-Related Changes 8 89591 -NCIT:C156720 Recurrent Acute Myeloid Leukemia with Multilineage Dysplasia 9 89592 -NCIT:C180897 Refractory Acute Myeloid Leukemia with Myelodysplasia-Related Changes 8 89593 -NCIT:C4037 Acute Myeloid Leukemia Arising from Previous Myelodysplastic Syndrome 8 89594 -NCIT:C9289 Acute Myeloid Leukemia with Multilineage Dysplasia 8 89595 -NCIT:C156720 Recurrent Acute Myeloid Leukemia with Multilineage Dysplasia 9 89596 -NCIT:C82430 Acute Myeloid Leukemia with Gene Mutations 7 89597 -NCIT:C126748 Acute Myeloid Leukemia with FLT3/ITD Mutation 8 89598 -NCIT:C129786 Acute Myeloid Leukemia with RUNX1 Mutation 8 89599 -NCIT:C151898 Acute Myeloid Leukemia with Germline CEBPA Mutation 8 89600 -NCIT:C82431 Acute Myeloid Leukemia with NPM1 Mutation 8 89601 -NCIT:C82433 Acute Myeloid Leukemia with CEBPA Mutation 8 89602 -NCIT:C129782 Acute Myeloid Leukemia with Biallelic Mutations of CEBPA 9 89603 -NCIT:C129783 Acute Myeloid Leukemia with Monoallelic Mutations of CEBPA 9 89604 -NCIT:C9154 Adult Acute Myeloid Leukemia 7 89605 -NCIT:C68700 Adult Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 8 89606 -NCIT:C68696 Adult Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 9 89607 -NCIT:C68697 Adult Acute Myeloid Leukemia with inv(16)(p13.1q22); CBFB-MYH11 9 89608 -NCIT:C68698 Adult Acute Myeloid Leukemia with t(16;16)(p13.1;q22); CBFB-MYH11 9 89609 -NCIT:C68699 Adult Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 9 89610 -NCIT:C9155 Adult Acute Promyelocytic Leukemia with PML-RARA 9 89611 -NCIT:C7319 Adult Acute Monoblastic and Monocytic Leukemia 8 89612 -NCIT:C8263 Adult Acute Monocytic Leukemia 9 89613 -NCIT:C9156 Adult Acute Monoblastic Leukemia 9 89614 -NCIT:C7882 Recurrent Adult Acute Myeloid Leukemia 8 89615 -NCIT:C7961 Adult Acute Myeloid Leukemia with Maturation 8 89616 -NCIT:C7962 Adult Acute Myelomonocytic Leukemia 8 89617 -NCIT:C7964 Adult Acute Basophilic Leukemia 8 89618 -NCIT:C7965 Adult Acute Megakaryoblastic Leukemia 8 89619 -NCIT:C8303 Adult Acute Myeloid Leukemia with Minimal Differentiation 8 89620 -NCIT:C9153 Adult Acute Erythroid Leukemia 8 89621 -NCIT:C68693 Adult Pure Erythroid Leukemia 9 89622 -NCIT:C68694 Adult Erythroleukemia 9 89623 -NCIT:C9380 Adult Acute Myeloid Leukemia without Maturation 8 89624 -NCIT:C9160 Childhood Acute Myeloid Leukemia 7 89625 -NCIT:C122625 Childhood Acute Myeloid Leukemia Not Otherwise Specified 8 89626 -NCIT:C7940 Childhood Acute Monoblastic and Monocytic Leukemia 9 89627 -NCIT:C9162 Childhood Acute Monoblastic Leukemia 10 89628 -NCIT:C9163 Childhood Acute Monocytic Leukemia 10 89629 -NCIT:C7970 Childhood Acute Myelomonocytic Leukemia 9 89630 -NCIT:C7971 Childhood Acute Basophilic Leukemia 9 89631 -NCIT:C7972 Childhood Acute Megakaryoblastic Leukemia 9 89632 -NCIT:C8304 Childhood Acute Myeloid Leukemia with Minimal Differentiation 9 89633 -NCIT:C9158 Childhood Acute Myeloid Leukemia without Maturation 9 89634 -NCIT:C9164 Childhood Acute Erythroid Leukemia 9 89635 -NCIT:C9381 Childhood Acute Myeloid Leukemia with Maturation 9 89636 -NCIT:C122690 Acute Myeloid Leukemia with t(7;12)(q36;p13); HLXB9-ETV6 8 89637 -NCIT:C122691 Childhood Acute Myeloid Leukemia with NUP98 Rearrangement 8 89638 -NCIT:C131502 Acute Myeloid Leukemia with t(5;11)(q35;p15); NUP98-NSD1 9 89639 -NCIT:C131504 Acute Myeloid Leukemia with t(11;15)(p15;q35); NUP98-JARID1A 9 89640 -NCIT:C132111 Acute Megakaryoblastic Leukemia with NUP98-KDM5A 9 89641 -NCIT:C122725 Childhood Acute Myeloid Leukemia with Abnormalities of Chromosome 5q 8 89642 -NCIT:C122726 Childhood Acute Myeloid Leukemia with Abnormalities of Chromosome 7 8 89643 -NCIT:C132101 Acute Myeloid Leukemia with t(10;11)(p12;q23); MLLT10-MLL 8 89644 -NCIT:C132105 Acute Myeloid Leukemia with t(6;11)(q27;q23); MLLT4-MLL 8 89645 -NCIT:C132109 Acute Megakaryoblastic Leukemia with CBFA2T3-GLIS2 8 89646 -NCIT:C167089 Acute Myeloid Leukemia with RAM Immunophenotype 8 89647 -NCIT:C187449 Refractory Childhood Acute Myeloid Leukemia 8 89648 -NCIT:C188450 Childhood Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 8 89649 -NCIT:C188451 Childhood Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 8 89650 -NCIT:C7968 Childhood Acute Promyelocytic Leukemia with PML-RARA 8 89651 -NCIT:C82431 Acute Myeloid Leukemia with NPM1 Mutation 8 89652 -NCIT:C82433 Acute Myeloid Leukemia with CEBPA Mutation 8 89653 -NCIT:C129782 Acute Myeloid Leukemia with Biallelic Mutations of CEBPA 9 89654 -NCIT:C129783 Acute Myeloid Leukemia with Monoallelic Mutations of CEBPA 9 89655 -NCIT:C9068 Recurrent Childhood Acute Myeloid Leukemia 8 89656 -NCIT:C3174 Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 89657 -NCIT:C3173 Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 89658 -NCIT:C190786 Recurrent Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 8 89659 -NCIT:C190787 Refractory Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 8 89660 -NCIT:C3175 Chronic Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 89661 -NCIT:C7303 Splenic Manifestation of Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 89662 -NCIT:C7320 Childhood Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 89663 -NCIT:C7885 Refractory Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 89664 -NCIT:C9070 Recurrent Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 89665 -NCIT:C9110 Blast Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 89666 -NCIT:C9111 Meningeal Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 89667 -NCIT:C9128 Philadelphia Chromosome Positive, BCR-ABL1 Positive Chronic Myelogenous Leukemia 7 89668 -NCIT:C9129 Philadelphia Chromosome Negative, BCR-ABL1 Positive Chronic Myelogenous Leukemia 7 89669 -NCIT:C3176 Philadelphia-Negative Myelogenous Leukemia 6 89670 -NCIT:C9129 Philadelphia Chromosome Negative, BCR-ABL1 Positive Chronic Myelogenous Leukemia 7 89671 -NCIT:C3177 Philadelphia-Positive Myelogenous Leukemia 6 89672 -NCIT:C9128 Philadelphia Chromosome Positive, BCR-ABL1 Positive Chronic Myelogenous Leukemia 7 89673 -NCIT:C3483 Chronic Leukemia 5 89674 -NCIT:C126351 Chronic Eosinophilic Leukemia with FIP1L1-PDGFRA 6 89675 -NCIT:C150043 Recurrent Chronic Leukemia 6 89676 -NCIT:C142882 Recurrent Hairy Cell Leukemia 7 89677 -NCIT:C150048 Recurrent Chronic Myelomonocytic Leukemia 7 89678 -NCIT:C150133 Recurrent T-Cell Prolymphocytic Leukemia 7 89679 -NCIT:C157692 Recurrent Aggressive NK-Cell Leukemia 7 89680 -NCIT:C158081 Recurrent B-Cell Prolymphocytic Leukemia 7 89681 -NCIT:C171065 Recurrent Hairy Cell Leukemia Variant 7 89682 -NCIT:C176999 Recurrent Sezary Syndrome 7 89683 -NCIT:C180985 Recurrent T-Cell Large Granular Lymphocyte Leukemia 7 89684 -NCIT:C8645 Recurrent Chronic Lymphocytic Leukemia 7 89685 -NCIT:C158151 Recurrent Transformed Chronic Lymphocytic Leukemia 8 89686 -NCIT:C9070 Recurrent Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 89687 -NCIT:C150044 Refractory Chronic Leukemia 6 89688 -NCIT:C150049 Refractory Chronic Myelomonocytic Leukemia 7 89689 -NCIT:C157691 Refractory T-Cell Prolymphocytic Leukemia 7 89690 -NCIT:C157693 Refractory Aggressive NK-Cell Leukemia 7 89691 -NCIT:C157697 Refractory B-Cell Prolymphocytic Leukemia 7 89692 -NCIT:C171064 Refractory Hairy Cell Leukemia Variant 7 89693 -NCIT:C177000 Refractory Sezary Syndrome 7 89694 -NCIT:C180986 Refractory T-Cell Large Granular Lymphocyte Leukemia 7 89695 -NCIT:C7885 Refractory Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 89696 -NCIT:C7886 Refractory Chronic Lymphocytic Leukemia 7 89697 -NCIT:C158152 Refractory Transformed Chronic Lymphocytic Leukemia 8 89698 -NCIT:C8030 Refractory Hairy Cell Leukemia 7 89699 -NCIT:C3163 Chronic Lymphocytic Leukemia 6 89700 -NCIT:C141206 Chronic Lymphocytic Leukemia- Modified Rai Staging System 7 89701 -NCIT:C7847 Stage 0 Chronic Lymphocytic Leukemia 8 89702 -NCIT:C7874 Stage I Chronic Lymphocytic Leukemia 8 89703 -NCIT:C7875 Stage II Chronic Lymphocytic Leukemia 8 89704 -NCIT:C7876 Stage III Chronic Lymphocytic Leukemia 8 89705 -NCIT:C8646 Stage IV Chronic Lymphocytic Leukemia 8 89706 -NCIT:C141208 Chronic Lymphocytic Leukemia- Binet Staging System 7 89707 -NCIT:C141209 Stage A Chronic Lymphocytic Leukemia 8 89708 -NCIT:C141210 Stage B Chronic Lymphocytic Leukemia 8 89709 -NCIT:C141211 Stage C Chronic Lymphocytic Leukemia 8 89710 -NCIT:C157624 Transformed Chronic Lymphocytic Leukemia to Diffuse Large B-Cell Lymphoma 7 89711 -NCIT:C158151 Recurrent Transformed Chronic Lymphocytic Leukemia 8 89712 -NCIT:C158152 Refractory Transformed Chronic Lymphocytic Leukemia 8 89713 -NCIT:C36272 Chronic Lymphocytic Leukemia with Plasmacytoid Differentiation 7 89714 -NCIT:C37202 Chronic Lymphocytic Leukemia with Immunoglobulin Heavy Chain Variable-Region Gene Somatic Hypermutation 7 89715 -NCIT:C37205 Chronic Lymphocytic Leukemia with Unmutated Immunoglobulin Heavy Chain Variable-Region Gene 7 89716 -NCIT:C45264 Cutaneous Chronic Lymphocytic Leukemia 7 89717 -NCIT:C7176 Aleukemic Chronic Lymphocytic Leukemia 7 89718 -NCIT:C7300 Splenic Manifestation of Chronic Lymphocytic Leukemia 7 89719 -NCIT:C7886 Refractory Chronic Lymphocytic Leukemia 7 89720 -NCIT:C158152 Refractory Transformed Chronic Lymphocytic Leukemia 8 89721 -NCIT:C8645 Recurrent Chronic Lymphocytic Leukemia 7 89722 -NCIT:C158151 Recurrent Transformed Chronic Lymphocytic Leukemia 8 89723 -NCIT:C3175 Chronic Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 89724 -NCIT:C3179 Chronic Neutrophilic Leukemia 6 89725 -NCIT:C3181 Prolymphocytic Leukemia 6 89726 -NCIT:C4752 T-Cell Prolymphocytic Leukemia 7 89727 -NCIT:C150133 Recurrent T-Cell Prolymphocytic Leukemia 8 89728 -NCIT:C157691 Refractory T-Cell Prolymphocytic Leukemia 8 89729 -NCIT:C36270 T-Cell Prolymphocytic Leukemia, Small Cell Variant 8 89730 -NCIT:C36271 T-Cell Prolymphocytic Leukemia, Cerebriform Cell Variant 8 89731 -NCIT:C7298 Splenic Manifestation of T-Cell Prolymphocytic Leukemia 8 89732 -NCIT:C4753 B-Cell Prolymphocytic Leukemia 7 89733 -NCIT:C157697 Refractory B-Cell Prolymphocytic Leukemia 8 89734 -NCIT:C158081 Recurrent B-Cell Prolymphocytic Leukemia 8 89735 -NCIT:C7299 Splenic Manifestation of B-Cell Prolymphocytic Leukemia 8 89736 -NCIT:C7297 Splenic Manifestation of Prolymphocytic Leukemia 7 89737 -NCIT:C7298 Splenic Manifestation of T-Cell Prolymphocytic Leukemia 8 89738 -NCIT:C7299 Splenic Manifestation of B-Cell Prolymphocytic Leukemia 8 89739 -NCIT:C4563 Chronic Eosinophilic Leukemia, Not Otherwise Specified 6 89740 -NCIT:C4664 T-Cell Large Granular Lymphocyte Leukemia 6 89741 -NCIT:C180985 Recurrent T-Cell Large Granular Lymphocyte Leukemia 7 89742 -NCIT:C180986 Refractory T-Cell Large Granular Lymphocyte Leukemia 7 89743 -NCIT:C39584 T-Cell Large Granular Lymphocyte Leukemia, Common Variant 7 89744 -NCIT:C39586 T-Cell Large Granular Lymphocyte Leukemia Expressing the T-Cell Receptor Gamma-Delta 7 89745 -NCIT:C7302 Splenic Manifestation of T-Cell Large Granular Lymphocyte Leukemia 7 89746 -NCIT:C7401 Hairy Cell Leukemia Variant 6 89747 -NCIT:C171064 Refractory Hairy Cell Leukemia Variant 7 89748 -NCIT:C171065 Recurrent Hairy Cell Leukemia Variant 7 89749 -NCIT:C7402 Hairy Cell Leukemia 6 89750 -NCIT:C142882 Recurrent Hairy Cell Leukemia 7 89751 -NCIT:C7301 Splenic Manifestation of Hairy Cell Leukemia 7 89752 -NCIT:C8029 Progressive Hairy Cell Leukemia Initial Treatment 7 89753 -NCIT:C8030 Refractory Hairy Cell Leukemia 7 89754 -NCIT:C8647 Aggressive NK-Cell Leukemia 6 89755 -NCIT:C157692 Recurrent Aggressive NK-Cell Leukemia 7 89756 -NCIT:C157693 Refractory Aggressive NK-Cell Leukemia 7 89757 -NCIT:C4982 Aleukemic Leukemia 5 89758 -NCIT:C4343 Aleukemic Lymphoid Leukemia 6 89759 -NCIT:C7176 Aleukemic Chronic Lymphocytic Leukemia 7 89760 -NCIT:C7177 Aleukemic Acute Lymphoblastic Leukemia 7 89761 -NCIT:C5631 Aleukemic Acute Lymphoblastic Leukemia Cutis 8 89762 -NCIT:C4983 Aleukemic Leukemia Cutis 6 89763 -NCIT:C5630 Aleukemic Monocytic Leukemia Cutis 7 89764 -NCIT:C5631 Aleukemic Acute Lymphoblastic Leukemia Cutis 7 89765 -NCIT:C4989 Childhood Leukemia 5 89766 -NCIT:C122603 Infant Leukemia 6 89767 -NCIT:C122614 Infant Acute Lymphoblastic Leukemia 7 89768 -NCIT:C122617 Infant Acute Lymphoblastic Leukemia with MLL Rearrangement 8 89769 -NCIT:C122621 Infant Acute Lymphoblastic Leukemia without MLL Gene Rearrangement 8 89770 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 8 89771 -NCIT:C122690 Acute Myeloid Leukemia with t(7;12)(q36;p13); HLXB9-ETV6 7 89772 -NCIT:C126110 Infant Acute Undifferentiated Leukemia 7 89773 -NCIT:C126111 Infant Acute Biphenotypic Leukemia 7 89774 -NCIT:C3845 Neonatal Leukemia 7 89775 -NCIT:C187056 Childhood Acute Leukemia 6 89776 -NCIT:C126110 Infant Acute Undifferentiated Leukemia 7 89777 -NCIT:C126111 Infant Acute Biphenotypic Leukemia 7 89778 -NCIT:C3168 Childhood Acute Lymphoblastic Leukemia 7 89779 -NCIT:C122614 Infant Acute Lymphoblastic Leukemia 8 89780 -NCIT:C122617 Infant Acute Lymphoblastic Leukemia with MLL Rearrangement 9 89781 -NCIT:C122621 Infant Acute Lymphoblastic Leukemia without MLL Gene Rearrangement 9 89782 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 9 89783 -NCIT:C122624 Refractory Childhood Acute Lymphoblastic Leukemia 8 89784 -NCIT:C7784 Recurrent Childhood Acute Lymphoblastic Leukemia 8 89785 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 9 89786 -NCIT:C7953 Childhood T Acute Lymphoblastic Leukemia 8 89787 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 9 89788 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 9 89789 -NCIT:C9140 Childhood B Acute Lymphoblastic Leukemia 8 89790 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 89791 -NCIT:C7952 Childhood Burkitt Leukemia 7 89792 -NCIT:C9160 Childhood Acute Myeloid Leukemia 7 89793 -NCIT:C122625 Childhood Acute Myeloid Leukemia Not Otherwise Specified 8 89794 -NCIT:C7940 Childhood Acute Monoblastic and Monocytic Leukemia 9 89795 -NCIT:C9162 Childhood Acute Monoblastic Leukemia 10 89796 -NCIT:C9163 Childhood Acute Monocytic Leukemia 10 89797 -NCIT:C7970 Childhood Acute Myelomonocytic Leukemia 9 89798 -NCIT:C7971 Childhood Acute Basophilic Leukemia 9 89799 -NCIT:C7972 Childhood Acute Megakaryoblastic Leukemia 9 89800 -NCIT:C8304 Childhood Acute Myeloid Leukemia with Minimal Differentiation 9 89801 -NCIT:C9158 Childhood Acute Myeloid Leukemia without Maturation 9 89802 -NCIT:C9164 Childhood Acute Erythroid Leukemia 9 89803 -NCIT:C9381 Childhood Acute Myeloid Leukemia with Maturation 9 89804 -NCIT:C122690 Acute Myeloid Leukemia with t(7;12)(q36;p13); HLXB9-ETV6 8 89805 -NCIT:C122691 Childhood Acute Myeloid Leukemia with NUP98 Rearrangement 8 89806 -NCIT:C131502 Acute Myeloid Leukemia with t(5;11)(q35;p15); NUP98-NSD1 9 89807 -NCIT:C131504 Acute Myeloid Leukemia with t(11;15)(p15;q35); NUP98-JARID1A 9 89808 -NCIT:C132111 Acute Megakaryoblastic Leukemia with NUP98-KDM5A 9 89809 -NCIT:C122725 Childhood Acute Myeloid Leukemia with Abnormalities of Chromosome 5q 8 89810 -NCIT:C122726 Childhood Acute Myeloid Leukemia with Abnormalities of Chromosome 7 8 89811 -NCIT:C132101 Acute Myeloid Leukemia with t(10;11)(p12;q23); MLLT10-MLL 8 89812 -NCIT:C132105 Acute Myeloid Leukemia with t(6;11)(q27;q23); MLLT4-MLL 8 89813 -NCIT:C132109 Acute Megakaryoblastic Leukemia with CBFA2T3-GLIS2 8 89814 -NCIT:C167089 Acute Myeloid Leukemia with RAM Immunophenotype 8 89815 -NCIT:C187449 Refractory Childhood Acute Myeloid Leukemia 8 89816 -NCIT:C188450 Childhood Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 8 89817 -NCIT:C188451 Childhood Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 8 89818 -NCIT:C7968 Childhood Acute Promyelocytic Leukemia with PML-RARA 8 89819 -NCIT:C82431 Acute Myeloid Leukemia with NPM1 Mutation 8 89820 -NCIT:C82433 Acute Myeloid Leukemia with CEBPA Mutation 8 89821 -NCIT:C129782 Acute Myeloid Leukemia with Biallelic Mutations of CEBPA 9 89822 -NCIT:C129783 Acute Myeloid Leukemia with Monoallelic Mutations of CEBPA 9 89823 -NCIT:C9068 Recurrent Childhood Acute Myeloid Leukemia 8 89824 -NCIT:C7320 Childhood Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 89825 -NCIT:C5440 Central Nervous System Leukemia 5 89826 -NCIT:C94754 Meningeal Leukemia 6 89827 -NCIT:C9111 Meningeal Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 89828 -NCIT:C7296 Splenic Manifestation of Leukemia 5 89829 -NCIT:C7297 Splenic Manifestation of Prolymphocytic Leukemia 6 89830 -NCIT:C7298 Splenic Manifestation of T-Cell Prolymphocytic Leukemia 7 89831 -NCIT:C7299 Splenic Manifestation of B-Cell Prolymphocytic Leukemia 7 89832 -NCIT:C7300 Splenic Manifestation of Chronic Lymphocytic Leukemia 6 89833 -NCIT:C7301 Splenic Manifestation of Hairy Cell Leukemia 6 89834 -NCIT:C7302 Splenic Manifestation of T-Cell Large Granular Lymphocyte Leukemia 6 89835 -NCIT:C7303 Splenic Manifestation of Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 89836 -NCIT:C7539 Lymphoid Leukemia 5 89837 -NCIT:C3163 Chronic Lymphocytic Leukemia 6 89838 -NCIT:C141206 Chronic Lymphocytic Leukemia- Modified Rai Staging System 7 89839 -NCIT:C7847 Stage 0 Chronic Lymphocytic Leukemia 8 89840 -NCIT:C7874 Stage I Chronic Lymphocytic Leukemia 8 89841 -NCIT:C7875 Stage II Chronic Lymphocytic Leukemia 8 89842 -NCIT:C7876 Stage III Chronic Lymphocytic Leukemia 8 89843 -NCIT:C8646 Stage IV Chronic Lymphocytic Leukemia 8 89844 -NCIT:C141208 Chronic Lymphocytic Leukemia- Binet Staging System 7 89845 -NCIT:C141209 Stage A Chronic Lymphocytic Leukemia 8 89846 -NCIT:C141210 Stage B Chronic Lymphocytic Leukemia 8 89847 -NCIT:C141211 Stage C Chronic Lymphocytic Leukemia 8 89848 -NCIT:C157624 Transformed Chronic Lymphocytic Leukemia to Diffuse Large B-Cell Lymphoma 7 89849 -NCIT:C158151 Recurrent Transformed Chronic Lymphocytic Leukemia 8 89850 -NCIT:C158152 Refractory Transformed Chronic Lymphocytic Leukemia 8 89851 -NCIT:C36272 Chronic Lymphocytic Leukemia with Plasmacytoid Differentiation 7 89852 -NCIT:C37202 Chronic Lymphocytic Leukemia with Immunoglobulin Heavy Chain Variable-Region Gene Somatic Hypermutation 7 89853 -NCIT:C37205 Chronic Lymphocytic Leukemia with Unmutated Immunoglobulin Heavy Chain Variable-Region Gene 7 89854 -NCIT:C45264 Cutaneous Chronic Lymphocytic Leukemia 7 89855 -NCIT:C7176 Aleukemic Chronic Lymphocytic Leukemia 7 89856 -NCIT:C7300 Splenic Manifestation of Chronic Lymphocytic Leukemia 7 89857 -NCIT:C7886 Refractory Chronic Lymphocytic Leukemia 7 89858 -NCIT:C158152 Refractory Transformed Chronic Lymphocytic Leukemia 8 89859 -NCIT:C8645 Recurrent Chronic Lymphocytic Leukemia 7 89860 -NCIT:C158151 Recurrent Transformed Chronic Lymphocytic Leukemia 8 89861 -NCIT:C3167 Acute Lymphoblastic Leukemia 6 89862 -NCIT:C121973 Acute Lymphoblastic Leukemia by Gene Expression Profile 7 89863 -NCIT:C121975 DDIT4L Acute Lymphoblastic Leukemia 8 89864 -NCIT:C121978 Acute Lymphoblastic Leukemia by ROSE Cluster 8 89865 -NCIT:C121980 ROSE Cluster 1 9 89866 -NCIT:C121981 ROSE Cluster 2 9 89867 -NCIT:C121982 ROSE Cluster 3 9 89868 -NCIT:C121983 ROSE Cluster 4 9 89869 -NCIT:C121984 ROSE Cluster 5 9 89870 -NCIT:C121985 ROSE Cluster 6 9 89871 -NCIT:C121986 ROSE Cluster 7 9 89872 -NCIT:C121988 ROSE Cluster 8 9 89873 -NCIT:C136488 Refractory Acute Lymphoblastic Leukemia 7 89874 -NCIT:C122624 Refractory Childhood Acute Lymphoblastic Leukemia 8 89875 -NCIT:C126309 Refractory Adult Acute Lymphoblastic Leukemia 8 89876 -NCIT:C142812 Refractory B Acute Lymphoblastic Leukemia 8 89877 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 9 89878 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 89879 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 9 89880 -NCIT:C150510 Refractory T Acute Lymphoblastic Leukemia 8 89881 -NCIT:C142810 Recurrent Acute Lymphoblastic Leukemia 7 89882 -NCIT:C142811 Recurrent B Acute Lymphoblastic Leukemia 8 89883 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 9 89884 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 89885 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 9 89886 -NCIT:C150131 Recurrent T Acute Lymphoblastic Leukemia 8 89887 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 9 89888 -NCIT:C7784 Recurrent Childhood Acute Lymphoblastic Leukemia 8 89889 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 9 89890 -NCIT:C7883 Recurrent Adult Acute Lymphoblastic Leukemia 8 89891 -NCIT:C3168 Childhood Acute Lymphoblastic Leukemia 7 89892 -NCIT:C122614 Infant Acute Lymphoblastic Leukemia 8 89893 -NCIT:C122617 Infant Acute Lymphoblastic Leukemia with MLL Rearrangement 9 89894 -NCIT:C122621 Infant Acute Lymphoblastic Leukemia without MLL Gene Rearrangement 9 89895 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 9 89896 -NCIT:C122624 Refractory Childhood Acute Lymphoblastic Leukemia 8 89897 -NCIT:C7784 Recurrent Childhood Acute Lymphoblastic Leukemia 8 89898 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 9 89899 -NCIT:C7953 Childhood T Acute Lymphoblastic Leukemia 8 89900 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 9 89901 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 9 89902 -NCIT:C9140 Childhood B Acute Lymphoblastic Leukemia 8 89903 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 89904 -NCIT:C3183 T Acute Lymphoblastic Leukemia 7 89905 -NCIT:C130043 Early T Acute Lymphoblastic Leukemia 8 89906 -NCIT:C150131 Recurrent T Acute Lymphoblastic Leukemia 8 89907 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 9 89908 -NCIT:C150510 Refractory T Acute Lymphoblastic Leukemia 8 89909 -NCIT:C45739 Mediastinal T Acute Lymphoblastic Leukemia 8 89910 -NCIT:C7953 Childhood T Acute Lymphoblastic Leukemia 8 89911 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 9 89912 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 9 89913 -NCIT:C9142 Adult T Acute Lymphoblastic Leukemia 8 89914 -NCIT:C4967 Adult Acute Lymphoblastic Leukemia 7 89915 -NCIT:C126309 Refractory Adult Acute Lymphoblastic Leukemia 8 89916 -NCIT:C7883 Recurrent Adult Acute Lymphoblastic Leukemia 8 89917 -NCIT:C9142 Adult T Acute Lymphoblastic Leukemia 8 89918 -NCIT:C9143 Adult B Acute Lymphoblastic Leukemia 8 89919 -NCIT:C114819 Adult B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 89920 -NCIT:C7177 Aleukemic Acute Lymphoblastic Leukemia 7 89921 -NCIT:C5631 Aleukemic Acute Lymphoblastic Leukemia Cutis 8 89922 -NCIT:C8644 B Acute Lymphoblastic Leukemia 7 89923 -NCIT:C121974 B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 89924 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 9 89925 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 9 89926 -NCIT:C128629 B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 89927 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 9 89928 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 9 89929 -NCIT:C130040 B Acute Lymphoblastic Leukemia with Intrachromosomal Amplification of Chromosome 21 8 89930 -NCIT:C142811 Recurrent B Acute Lymphoblastic Leukemia 8 89931 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 9 89932 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 89933 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 9 89934 -NCIT:C142812 Refractory B Acute Lymphoblastic Leukemia 8 89935 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 9 89936 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 89937 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 9 89938 -NCIT:C162776 B Acute Lymphoblastic Leukemia with t(4;11)(q21;23) 8 89939 -NCIT:C190847 B Acute Lymphoblastic Leukemia Associated with Down Syndrome 8 89940 -NCIT:C190957 B Acute Lymphoblastic Leukemia with ETV6-RUNX1-Like Features 8 89941 -NCIT:C36312 B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 89942 -NCIT:C114819 Adult B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 89943 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 89944 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 89945 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 89946 -NCIT:C80342 B Acute Lymphoblastic Leukemia with t(v;11q23.3); MLL Rearranged 8 89947 -NCIT:C80343 B Acute Lymphoblastic Leukemia with t(12;21)(p13.2;q22.1); ETV6-RUNX1 8 89948 -NCIT:C80344 Hyperdiploid B Acute Lymphoblastic Leukemia 8 89949 -NCIT:C80345 Hypodiploid B Acute Lymphoblastic Leukemia 8 89950 -NCIT:C80346 B Acute Lymphoblastic Leukemia with t(5;14)(q31.1;q32.3); IL3-IGH 8 89951 -NCIT:C80347 B Acute Lymphoblastic Leukemia with t(1;19)(q23;p13.3); E2A-PBX1 (TCF3-PBX1) 8 89952 -NCIT:C9140 Childhood B Acute Lymphoblastic Leukemia 8 89953 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 89954 -NCIT:C9143 Adult B Acute Lymphoblastic Leukemia 8 89955 -NCIT:C114819 Adult B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 89956 -NCIT:C3180 Plasma Cell Leukemia 6 89957 -NCIT:C191432 Secondary Plasma Cell Leukemia 7 89958 -NCIT:C3181 Prolymphocytic Leukemia 6 89959 -NCIT:C4752 T-Cell Prolymphocytic Leukemia 7 89960 -NCIT:C150133 Recurrent T-Cell Prolymphocytic Leukemia 8 89961 -NCIT:C157691 Refractory T-Cell Prolymphocytic Leukemia 8 89962 -NCIT:C36270 T-Cell Prolymphocytic Leukemia, Small Cell Variant 8 89963 -NCIT:C36271 T-Cell Prolymphocytic Leukemia, Cerebriform Cell Variant 8 89964 -NCIT:C7298 Splenic Manifestation of T-Cell Prolymphocytic Leukemia 8 89965 -NCIT:C4753 B-Cell Prolymphocytic Leukemia 7 89966 -NCIT:C157697 Refractory B-Cell Prolymphocytic Leukemia 8 89967 -NCIT:C158081 Recurrent B-Cell Prolymphocytic Leukemia 8 89968 -NCIT:C7299 Splenic Manifestation of B-Cell Prolymphocytic Leukemia 8 89969 -NCIT:C7297 Splenic Manifestation of Prolymphocytic Leukemia 7 89970 -NCIT:C7298 Splenic Manifestation of T-Cell Prolymphocytic Leukemia 8 89971 -NCIT:C7299 Splenic Manifestation of B-Cell Prolymphocytic Leukemia 8 89972 -NCIT:C4343 Aleukemic Lymphoid Leukemia 6 89973 -NCIT:C7176 Aleukemic Chronic Lymphocytic Leukemia 7 89974 -NCIT:C7177 Aleukemic Acute Lymphoblastic Leukemia 7 89975 -NCIT:C5631 Aleukemic Acute Lymphoblastic Leukemia Cutis 8 89976 -NCIT:C4664 T-Cell Large Granular Lymphocyte Leukemia 6 89977 -NCIT:C180985 Recurrent T-Cell Large Granular Lymphocyte Leukemia 7 89978 -NCIT:C180986 Refractory T-Cell Large Granular Lymphocyte Leukemia 7 89979 -NCIT:C39584 T-Cell Large Granular Lymphocyte Leukemia, Common Variant 7 89980 -NCIT:C39586 T-Cell Large Granular Lymphocyte Leukemia Expressing the T-Cell Receptor Gamma-Delta 7 89981 -NCIT:C7302 Splenic Manifestation of T-Cell Large Granular Lymphocyte Leukemia 7 89982 -NCIT:C7400 Burkitt Leukemia 6 89983 -NCIT:C151976 Recurrent Burkitt Leukemia 7 89984 -NCIT:C151977 Refractory Burkitt Leukemia 7 89985 -NCIT:C7952 Childhood Burkitt Leukemia 7 89986 -NCIT:C7954 Adult Burkitt Leukemia 7 89987 -NCIT:C7401 Hairy Cell Leukemia Variant 6 89988 -NCIT:C171064 Refractory Hairy Cell Leukemia Variant 7 89989 -NCIT:C171065 Recurrent Hairy Cell Leukemia Variant 7 89990 -NCIT:C7402 Hairy Cell Leukemia 6 89991 -NCIT:C142882 Recurrent Hairy Cell Leukemia 7 89992 -NCIT:C7301 Splenic Manifestation of Hairy Cell Leukemia 7 89993 -NCIT:C8029 Progressive Hairy Cell Leukemia Initial Treatment 7 89994 -NCIT:C8030 Refractory Hairy Cell Leukemia 7 89995 -NCIT:C8594 Leukemic Phase of Lymphoma 6 89996 -NCIT:C138192 Leukemic Nonnodal Mantle Cell Lymphoma 7 89997 -NCIT:C3366 Sezary Syndrome 7 89998 -NCIT:C176999 Recurrent Sezary Syndrome 8 89999 -NCIT:C177000 Refractory Sezary Syndrome 8 90000 -NCIT:C36265 Acute Adult T-Cell Leukemia/Lymphoma 7 90001 -NCIT:C7178 Smoldering Adult T-Cell Leukemia/Lymphoma 7 90002 -NCIT:C7179 Chronic Adult T-Cell Leukemia/Lymphoma 7 90003 -NCIT:C8647 Aggressive NK-Cell Leukemia 6 90004 -NCIT:C157692 Recurrent Aggressive NK-Cell Leukemia 7 90005 -NCIT:C157693 Refractory Aggressive NK-Cell Leukemia 7 90006 -NCIT:C80683 Therapy-Related Leukemia 5 90007 -NCIT:C80691 Chemotherapy-Related Leukemia 6 90008 -NCIT:C27754 Alkylating Agent-Related Acute Myeloid Leukemia 7 90009 -NCIT:C8252 Therapy-Related Acute Myeloid Leukemia 6 90010 -NCIT:C186730 Therapy-Related Cytogenetically Normal Acute Myeloid Leukemia 7 90011 -NCIT:C27754 Alkylating Agent-Related Acute Myeloid Leukemia 7 90012 -NCIT:C27755 Topoisomerase II Inhibitor-Related Acute Myeloid Leukemia 7 90013 -NCIT:C88156 Leukemia Cutis 5 90014 -NCIT:C45264 Cutaneous Chronic Lymphocytic Leukemia 6 90015 -NCIT:C4983 Aleukemic Leukemia Cutis 6 90016 -NCIT:C5630 Aleukemic Monocytic Leukemia Cutis 7 90017 -NCIT:C5631 Aleukemic Acute Lymphoblastic Leukemia Cutis 7 90018 -NCIT:C9277 Testicular Leukemia 5 90019 -NCIT:C9300 Acute Leukemia 5 90020 -NCIT:C148429 Recurrent Acute Leukemia 6 90021 -NCIT:C142810 Recurrent Acute Lymphoblastic Leukemia 7 90022 -NCIT:C142811 Recurrent B Acute Lymphoblastic Leukemia 8 90023 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 9 90024 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 90025 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 9 90026 -NCIT:C150131 Recurrent T Acute Lymphoblastic Leukemia 8 90027 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 9 90028 -NCIT:C7784 Recurrent Childhood Acute Lymphoblastic Leukemia 8 90029 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 9 90030 -NCIT:C7883 Recurrent Adult Acute Lymphoblastic Leukemia 8 90031 -NCIT:C148427 Recurrent Acute Myeloid Leukemia 7 90032 -NCIT:C125715 Recurrent Acute Myeloid Leukemia with Myelodysplasia-Related Changes 8 90033 -NCIT:C156720 Recurrent Acute Myeloid Leukemia with Multilineage Dysplasia 9 90034 -NCIT:C156716 Recurrent Acute Myeloid Leukemia Not Otherwise Specified 8 90035 -NCIT:C156717 Recurrent Acute Myelomonocytic Leukemia 9 90036 -NCIT:C156722 Recurrent Acute Monoblastic and Monocytic Leukemia 9 90037 -NCIT:C156723 Recurrent Acute Erythroid Leukemia 9 90038 -NCIT:C156731 Recurrent Acute Megakaryoblastic Leukemia 9 90039 -NCIT:C156718 Recurrent Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 8 90040 -NCIT:C156719 Recurrent Acute Myeloid Leukemia with t (9;11) (p21.3; q23.3); MLLT3-MLL 9 90041 -NCIT:C169107 Recurrent Acute Promyelocytic Leukemia with PML-RARA 9 90042 -NCIT:C7882 Recurrent Adult Acute Myeloid Leukemia 8 90043 -NCIT:C9068 Recurrent Childhood Acute Myeloid Leukemia 8 90044 -NCIT:C151976 Recurrent Burkitt Leukemia 7 90045 -NCIT:C172626 Recurrent Acute Leukemia of Ambiguous Lineage 7 90046 -NCIT:C141446 Recurrent Acute Undifferentiated Leukemia 8 90047 -NCIT:C148423 Recurrent Mixed Phenotype Acute Leukemia 8 90048 -NCIT:C141445 Recurrent Acute Biphenotypic Leukemia 9 90049 -NCIT:C179204 Recurrent Acute Bilineal Leukemia 9 90050 -NCIT:C148431 Refractory Acute Leukemia 6 90051 -NCIT:C134319 Refractory Acute Myeloid Leukemia 7 90052 -NCIT:C174486 Refractory Acute Myeloid Leukemia Not Otherwise Specified 8 90053 -NCIT:C174511 Refractory Acute Monoblastic and Monocytic Leukemia 9 90054 -NCIT:C174512 Refractory Acute Myelomonocytic Leukemia 9 90055 -NCIT:C180897 Refractory Acute Myeloid Leukemia with Myelodysplasia-Related Changes 8 90056 -NCIT:C187449 Refractory Childhood Acute Myeloid Leukemia 8 90057 -NCIT:C136488 Refractory Acute Lymphoblastic Leukemia 7 90058 -NCIT:C122624 Refractory Childhood Acute Lymphoblastic Leukemia 8 90059 -NCIT:C126309 Refractory Adult Acute Lymphoblastic Leukemia 8 90060 -NCIT:C142812 Refractory B Acute Lymphoblastic Leukemia 8 90061 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 9 90062 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 90063 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 9 90064 -NCIT:C150510 Refractory T Acute Lymphoblastic Leukemia 8 90065 -NCIT:C151977 Refractory Burkitt Leukemia 7 90066 -NCIT:C172630 Refractory Acute Leukemia of Ambiguous Lineage 7 90067 -NCIT:C148430 Refractory Mixed Phenotype Acute Leukemia 8 90068 -NCIT:C173683 Refractory Acute Biphenotypic Leukemia 9 90069 -NCIT:C179205 Refractory Acute Bilineal Leukemia 9 90070 -NCIT:C173503 Refractory Acute Undifferentiated Leukemia 8 90071 -NCIT:C187056 Childhood Acute Leukemia 6 90072 -NCIT:C126110 Infant Acute Undifferentiated Leukemia 7 90073 -NCIT:C126111 Infant Acute Biphenotypic Leukemia 7 90074 -NCIT:C3168 Childhood Acute Lymphoblastic Leukemia 7 90075 -NCIT:C122614 Infant Acute Lymphoblastic Leukemia 8 90076 -NCIT:C122617 Infant Acute Lymphoblastic Leukemia with MLL Rearrangement 9 90077 -NCIT:C122621 Infant Acute Lymphoblastic Leukemia without MLL Gene Rearrangement 9 90078 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 9 90079 -NCIT:C122624 Refractory Childhood Acute Lymphoblastic Leukemia 8 90080 -NCIT:C7784 Recurrent Childhood Acute Lymphoblastic Leukemia 8 90081 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 9 90082 -NCIT:C7953 Childhood T Acute Lymphoblastic Leukemia 8 90083 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 9 90084 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 9 90085 -NCIT:C9140 Childhood B Acute Lymphoblastic Leukemia 8 90086 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 90087 -NCIT:C7952 Childhood Burkitt Leukemia 7 90088 -NCIT:C9160 Childhood Acute Myeloid Leukemia 7 90089 -NCIT:C122625 Childhood Acute Myeloid Leukemia Not Otherwise Specified 8 90090 -NCIT:C7940 Childhood Acute Monoblastic and Monocytic Leukemia 9 90091 -NCIT:C9162 Childhood Acute Monoblastic Leukemia 10 90092 -NCIT:C9163 Childhood Acute Monocytic Leukemia 10 90093 -NCIT:C7970 Childhood Acute Myelomonocytic Leukemia 9 90094 -NCIT:C7971 Childhood Acute Basophilic Leukemia 9 90095 -NCIT:C7972 Childhood Acute Megakaryoblastic Leukemia 9 90096 -NCIT:C8304 Childhood Acute Myeloid Leukemia with Minimal Differentiation 9 90097 -NCIT:C9158 Childhood Acute Myeloid Leukemia without Maturation 9 90098 -NCIT:C9164 Childhood Acute Erythroid Leukemia 9 90099 -NCIT:C9381 Childhood Acute Myeloid Leukemia with Maturation 9 90100 -NCIT:C122690 Acute Myeloid Leukemia with t(7;12)(q36;p13); HLXB9-ETV6 8 90101 -NCIT:C122691 Childhood Acute Myeloid Leukemia with NUP98 Rearrangement 8 90102 -NCIT:C131502 Acute Myeloid Leukemia with t(5;11)(q35;p15); NUP98-NSD1 9 90103 -NCIT:C131504 Acute Myeloid Leukemia with t(11;15)(p15;q35); NUP98-JARID1A 9 90104 -NCIT:C132111 Acute Megakaryoblastic Leukemia with NUP98-KDM5A 9 90105 -NCIT:C122725 Childhood Acute Myeloid Leukemia with Abnormalities of Chromosome 5q 8 90106 -NCIT:C122726 Childhood Acute Myeloid Leukemia with Abnormalities of Chromosome 7 8 90107 -NCIT:C132101 Acute Myeloid Leukemia with t(10;11)(p12;q23); MLLT10-MLL 8 90108 -NCIT:C132105 Acute Myeloid Leukemia with t(6;11)(q27;q23); MLLT4-MLL 8 90109 -NCIT:C132109 Acute Megakaryoblastic Leukemia with CBFA2T3-GLIS2 8 90110 -NCIT:C167089 Acute Myeloid Leukemia with RAM Immunophenotype 8 90111 -NCIT:C187449 Refractory Childhood Acute Myeloid Leukemia 8 90112 -NCIT:C188450 Childhood Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 8 90113 -NCIT:C188451 Childhood Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 8 90114 -NCIT:C7968 Childhood Acute Promyelocytic Leukemia with PML-RARA 8 90115 -NCIT:C82431 Acute Myeloid Leukemia with NPM1 Mutation 8 90116 -NCIT:C82433 Acute Myeloid Leukemia with CEBPA Mutation 8 90117 -NCIT:C129782 Acute Myeloid Leukemia with Biallelic Mutations of CEBPA 9 90118 -NCIT:C129783 Acute Myeloid Leukemia with Monoallelic Mutations of CEBPA 9 90119 -NCIT:C9068 Recurrent Childhood Acute Myeloid Leukemia 8 90120 -NCIT:C3167 Acute Lymphoblastic Leukemia 6 90121 -NCIT:C121973 Acute Lymphoblastic Leukemia by Gene Expression Profile 7 90122 -NCIT:C121975 DDIT4L Acute Lymphoblastic Leukemia 8 90123 -NCIT:C121978 Acute Lymphoblastic Leukemia by ROSE Cluster 8 90124 -NCIT:C121980 ROSE Cluster 1 9 90125 -NCIT:C121981 ROSE Cluster 2 9 90126 -NCIT:C121982 ROSE Cluster 3 9 90127 -NCIT:C121983 ROSE Cluster 4 9 90128 -NCIT:C121984 ROSE Cluster 5 9 90129 -NCIT:C121985 ROSE Cluster 6 9 90130 -NCIT:C121986 ROSE Cluster 7 9 90131 -NCIT:C121988 ROSE Cluster 8 9 90132 -NCIT:C136488 Refractory Acute Lymphoblastic Leukemia 7 90133 -NCIT:C122624 Refractory Childhood Acute Lymphoblastic Leukemia 8 90134 -NCIT:C126309 Refractory Adult Acute Lymphoblastic Leukemia 8 90135 -NCIT:C142812 Refractory B Acute Lymphoblastic Leukemia 8 90136 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 9 90137 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 90138 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 9 90139 -NCIT:C150510 Refractory T Acute Lymphoblastic Leukemia 8 90140 -NCIT:C142810 Recurrent Acute Lymphoblastic Leukemia 7 90141 -NCIT:C142811 Recurrent B Acute Lymphoblastic Leukemia 8 90142 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 9 90143 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 90144 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 9 90145 -NCIT:C150131 Recurrent T Acute Lymphoblastic Leukemia 8 90146 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 9 90147 -NCIT:C7784 Recurrent Childhood Acute Lymphoblastic Leukemia 8 90148 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 9 90149 -NCIT:C7883 Recurrent Adult Acute Lymphoblastic Leukemia 8 90150 -NCIT:C3168 Childhood Acute Lymphoblastic Leukemia 7 90151 -NCIT:C122614 Infant Acute Lymphoblastic Leukemia 8 90152 -NCIT:C122617 Infant Acute Lymphoblastic Leukemia with MLL Rearrangement 9 90153 -NCIT:C122621 Infant Acute Lymphoblastic Leukemia without MLL Gene Rearrangement 9 90154 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 9 90155 -NCIT:C122624 Refractory Childhood Acute Lymphoblastic Leukemia 8 90156 -NCIT:C7784 Recurrent Childhood Acute Lymphoblastic Leukemia 8 90157 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 9 90158 -NCIT:C7953 Childhood T Acute Lymphoblastic Leukemia 8 90159 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 9 90160 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 9 90161 -NCIT:C9140 Childhood B Acute Lymphoblastic Leukemia 8 90162 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 90163 -NCIT:C3183 T Acute Lymphoblastic Leukemia 7 90164 -NCIT:C130043 Early T Acute Lymphoblastic Leukemia 8 90165 -NCIT:C150131 Recurrent T Acute Lymphoblastic Leukemia 8 90166 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 9 90167 -NCIT:C150510 Refractory T Acute Lymphoblastic Leukemia 8 90168 -NCIT:C45739 Mediastinal T Acute Lymphoblastic Leukemia 8 90169 -NCIT:C7953 Childhood T Acute Lymphoblastic Leukemia 8 90170 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 9 90171 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 9 90172 -NCIT:C9142 Adult T Acute Lymphoblastic Leukemia 8 90173 -NCIT:C4967 Adult Acute Lymphoblastic Leukemia 7 90174 -NCIT:C126309 Refractory Adult Acute Lymphoblastic Leukemia 8 90175 -NCIT:C7883 Recurrent Adult Acute Lymphoblastic Leukemia 8 90176 -NCIT:C9142 Adult T Acute Lymphoblastic Leukemia 8 90177 -NCIT:C9143 Adult B Acute Lymphoblastic Leukemia 8 90178 -NCIT:C114819 Adult B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 90179 -NCIT:C7177 Aleukemic Acute Lymphoblastic Leukemia 7 90180 -NCIT:C5631 Aleukemic Acute Lymphoblastic Leukemia Cutis 8 90181 -NCIT:C8644 B Acute Lymphoblastic Leukemia 7 90182 -NCIT:C121974 B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 90183 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 9 90184 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 9 90185 -NCIT:C128629 B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 90186 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 9 90187 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 9 90188 -NCIT:C130040 B Acute Lymphoblastic Leukemia with Intrachromosomal Amplification of Chromosome 21 8 90189 -NCIT:C142811 Recurrent B Acute Lymphoblastic Leukemia 8 90190 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 9 90191 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 90192 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 9 90193 -NCIT:C142812 Refractory B Acute Lymphoblastic Leukemia 8 90194 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 9 90195 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 90196 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 9 90197 -NCIT:C162776 B Acute Lymphoblastic Leukemia with t(4;11)(q21;23) 8 90198 -NCIT:C190847 B Acute Lymphoblastic Leukemia Associated with Down Syndrome 8 90199 -NCIT:C190957 B Acute Lymphoblastic Leukemia with ETV6-RUNX1-Like Features 8 90200 -NCIT:C36312 B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 90201 -NCIT:C114819 Adult B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 90202 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 90203 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 90204 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 90205 -NCIT:C80342 B Acute Lymphoblastic Leukemia with t(v;11q23.3); MLL Rearranged 8 90206 -NCIT:C80343 B Acute Lymphoblastic Leukemia with t(12;21)(p13.2;q22.1); ETV6-RUNX1 8 90207 -NCIT:C80344 Hyperdiploid B Acute Lymphoblastic Leukemia 8 90208 -NCIT:C80345 Hypodiploid B Acute Lymphoblastic Leukemia 8 90209 -NCIT:C80346 B Acute Lymphoblastic Leukemia with t(5;14)(q31.1;q32.3); IL3-IGH 8 90210 -NCIT:C80347 B Acute Lymphoblastic Leukemia with t(1;19)(q23;p13.3); E2A-PBX1 (TCF3-PBX1) 8 90211 -NCIT:C9140 Childhood B Acute Lymphoblastic Leukemia 8 90212 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 90213 -NCIT:C9143 Adult B Acute Lymphoblastic Leukemia 8 90214 -NCIT:C114819 Adult B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 90215 -NCIT:C3171 Acute Myeloid Leukemia 6 90216 -NCIT:C122687 Cytogenetically Normal Acute Myeloid Leukemia 7 90217 -NCIT:C186730 Therapy-Related Cytogenetically Normal Acute Myeloid Leukemia 8 90218 -NCIT:C134319 Refractory Acute Myeloid Leukemia 7 90219 -NCIT:C174486 Refractory Acute Myeloid Leukemia Not Otherwise Specified 8 90220 -NCIT:C174511 Refractory Acute Monoblastic and Monocytic Leukemia 9 90221 -NCIT:C174512 Refractory Acute Myelomonocytic Leukemia 9 90222 -NCIT:C180897 Refractory Acute Myeloid Leukemia with Myelodysplasia-Related Changes 8 90223 -NCIT:C187449 Refractory Childhood Acute Myeloid Leukemia 8 90224 -NCIT:C148427 Recurrent Acute Myeloid Leukemia 7 90225 -NCIT:C125715 Recurrent Acute Myeloid Leukemia with Myelodysplasia-Related Changes 8 90226 -NCIT:C156720 Recurrent Acute Myeloid Leukemia with Multilineage Dysplasia 9 90227 -NCIT:C156716 Recurrent Acute Myeloid Leukemia Not Otherwise Specified 8 90228 -NCIT:C156717 Recurrent Acute Myelomonocytic Leukemia 9 90229 -NCIT:C156722 Recurrent Acute Monoblastic and Monocytic Leukemia 9 90230 -NCIT:C156723 Recurrent Acute Erythroid Leukemia 9 90231 -NCIT:C156731 Recurrent Acute Megakaryoblastic Leukemia 9 90232 -NCIT:C156718 Recurrent Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 8 90233 -NCIT:C156719 Recurrent Acute Myeloid Leukemia with t (9;11) (p21.3; q23.3); MLLT3-MLL 9 90234 -NCIT:C169107 Recurrent Acute Promyelocytic Leukemia with PML-RARA 9 90235 -NCIT:C7882 Recurrent Adult Acute Myeloid Leukemia 8 90236 -NCIT:C9068 Recurrent Childhood Acute Myeloid Leukemia 8 90237 -NCIT:C25765 Secondary Acute Myeloid Leukemia 7 90238 -NCIT:C172129 Acute Myeloid Leukemia Arising from Previous Myeloproliferative Neoplasm 8 90239 -NCIT:C172130 Acute Myeloid Leukemia Arising from Previous Myelodysplastic/Myeloproliferative Neoplasm 8 90240 -NCIT:C27931 Benzene-Related Acute Myeloid Leukemia 8 90241 -NCIT:C4037 Acute Myeloid Leukemia Arising from Previous Myelodysplastic Syndrome 8 90242 -NCIT:C8252 Therapy-Related Acute Myeloid Leukemia 8 90243 -NCIT:C186730 Therapy-Related Cytogenetically Normal Acute Myeloid Leukemia 9 90244 -NCIT:C27754 Alkylating Agent-Related Acute Myeloid Leukemia 9 90245 -NCIT:C27755 Topoisomerase II Inhibitor-Related Acute Myeloid Leukemia 9 90246 -NCIT:C27753 Acute Myeloid Leukemia Not Otherwise Specified 7 90247 -NCIT:C122625 Childhood Acute Myeloid Leukemia Not Otherwise Specified 8 90248 -NCIT:C7940 Childhood Acute Monoblastic and Monocytic Leukemia 9 90249 -NCIT:C9162 Childhood Acute Monoblastic Leukemia 10 90250 -NCIT:C9163 Childhood Acute Monocytic Leukemia 10 90251 -NCIT:C7970 Childhood Acute Myelomonocytic Leukemia 9 90252 -NCIT:C7971 Childhood Acute Basophilic Leukemia 9 90253 -NCIT:C7972 Childhood Acute Megakaryoblastic Leukemia 9 90254 -NCIT:C8304 Childhood Acute Myeloid Leukemia with Minimal Differentiation 9 90255 -NCIT:C9158 Childhood Acute Myeloid Leukemia without Maturation 9 90256 -NCIT:C9164 Childhood Acute Erythroid Leukemia 9 90257 -NCIT:C9381 Childhood Acute Myeloid Leukemia with Maturation 9 90258 -NCIT:C156716 Recurrent Acute Myeloid Leukemia Not Otherwise Specified 8 90259 -NCIT:C156717 Recurrent Acute Myelomonocytic Leukemia 9 90260 -NCIT:C156722 Recurrent Acute Monoblastic and Monocytic Leukemia 9 90261 -NCIT:C156723 Recurrent Acute Erythroid Leukemia 9 90262 -NCIT:C156731 Recurrent Acute Megakaryoblastic Leukemia 9 90263 -NCIT:C174486 Refractory Acute Myeloid Leukemia Not Otherwise Specified 8 90264 -NCIT:C174511 Refractory Acute Monoblastic and Monocytic Leukemia 9 90265 -NCIT:C174512 Refractory Acute Myelomonocytic Leukemia 9 90266 -NCIT:C3164 Acute Basophilic Leukemia 8 90267 -NCIT:C7964 Adult Acute Basophilic Leukemia 9 90268 -NCIT:C7971 Childhood Acute Basophilic Leukemia 9 90269 -NCIT:C3170 Acute Megakaryoblastic Leukemia 8 90270 -NCIT:C156731 Recurrent Acute Megakaryoblastic Leukemia 9 90271 -NCIT:C7965 Adult Acute Megakaryoblastic Leukemia 9 90272 -NCIT:C7972 Childhood Acute Megakaryoblastic Leukemia 9 90273 -NCIT:C3249 Acute Myeloid Leukemia without Maturation 8 90274 -NCIT:C9158 Childhood Acute Myeloid Leukemia without Maturation 9 90275 -NCIT:C9380 Adult Acute Myeloid Leukemia without Maturation 9 90276 -NCIT:C3250 Acute Myeloid Leukemia with Maturation 8 90277 -NCIT:C7961 Adult Acute Myeloid Leukemia with Maturation 9 90278 -NCIT:C9381 Childhood Acute Myeloid Leukemia with Maturation 9 90279 -NCIT:C4344 Acute Panmyelosis with Myelofibrosis 8 90280 -NCIT:C7318 Acute Monoblastic and Monocytic Leukemia 8 90281 -NCIT:C156722 Recurrent Acute Monoblastic and Monocytic Leukemia 9 90282 -NCIT:C174511 Refractory Acute Monoblastic and Monocytic Leukemia 9 90283 -NCIT:C4861 Acute Monocytic Leukemia 9 90284 -NCIT:C5630 Aleukemic Monocytic Leukemia Cutis 10 90285 -NCIT:C8263 Adult Acute Monocytic Leukemia 10 90286 -NCIT:C9163 Childhood Acute Monocytic Leukemia 10 90287 -NCIT:C7171 Acute Monoblastic Leukemia 9 90288 -NCIT:C9156 Adult Acute Monoblastic Leukemia 10 90289 -NCIT:C9162 Childhood Acute Monoblastic Leukemia 10 90290 -NCIT:C7319 Adult Acute Monoblastic and Monocytic Leukemia 9 90291 -NCIT:C8263 Adult Acute Monocytic Leukemia 10 90292 -NCIT:C9156 Adult Acute Monoblastic Leukemia 10 90293 -NCIT:C7940 Childhood Acute Monoblastic and Monocytic Leukemia 9 90294 -NCIT:C9162 Childhood Acute Monoblastic Leukemia 10 90295 -NCIT:C9163 Childhood Acute Monocytic Leukemia 10 90296 -NCIT:C7463 Acute Myelomonocytic Leukemia 8 90297 -NCIT:C156717 Recurrent Acute Myelomonocytic Leukemia 9 90298 -NCIT:C174512 Refractory Acute Myelomonocytic Leukemia 9 90299 -NCIT:C42779 Acute Myelomonocytic Leukemia without Abnormal Eosinophils 9 90300 -NCIT:C7962 Adult Acute Myelomonocytic Leukemia 9 90301 -NCIT:C7970 Childhood Acute Myelomonocytic Leukemia 9 90302 -NCIT:C9020 Acute Myelomonocytic Leukemia with Abnormal Eosinophils 9 90303 -NCIT:C8460 Acute Myeloid Leukemia with Minimal Differentiation 8 90304 -NCIT:C8303 Adult Acute Myeloid Leukemia with Minimal Differentiation 9 90305 -NCIT:C8304 Childhood Acute Myeloid Leukemia with Minimal Differentiation 9 90306 -NCIT:C8923 Acute Erythroid Leukemia 8 90307 -NCIT:C156723 Recurrent Acute Erythroid Leukemia 9 90308 -NCIT:C7152 Erythroleukemia 9 90309 -NCIT:C68694 Adult Erythroleukemia 10 90310 -NCIT:C7467 Pure Erythroid Leukemia 9 90311 -NCIT:C68693 Adult Pure Erythroid Leukemia 10 90312 -NCIT:C9153 Adult Acute Erythroid Leukemia 9 90313 -NCIT:C68693 Adult Pure Erythroid Leukemia 10 90314 -NCIT:C68694 Adult Erythroleukemia 10 90315 -NCIT:C9164 Childhood Acute Erythroid Leukemia 9 90316 -NCIT:C7175 Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 7 90317 -NCIT:C122688 Core Binding Factor Acute Myeloid Leukemia 8 90318 -NCIT:C129785 Acute Myeloid Leukemia with BCR-ABL1 8 90319 -NCIT:C156718 Recurrent Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 8 90320 -NCIT:C156719 Recurrent Acute Myeloid Leukemia with t (9;11) (p21.3; q23.3); MLLT3-MLL 9 90321 -NCIT:C169107 Recurrent Acute Promyelocytic Leukemia with PML-RARA 9 90322 -NCIT:C162775 Acute Myeloid Leukemia with Trisomy 8 8 90323 -NCIT:C174129 Acute Myeloid Leukemia with MLL Rearrangement 8 90324 -NCIT:C132101 Acute Myeloid Leukemia with t(10;11)(p12;q23); MLLT10-MLL 9 90325 -NCIT:C132105 Acute Myeloid Leukemia with t(6;11)(q27;q23); MLLT4-MLL 9 90326 -NCIT:C6924 Acute Myeloid Leukemia with Variant MLL Translocations 9 90327 -NCIT:C82403 Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 9 90328 -NCIT:C156719 Recurrent Acute Myeloid Leukemia with t (9;11) (p21.3; q23.3); MLLT3-MLL 10 90329 -NCIT:C188451 Childhood Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 10 90330 -NCIT:C68696 Adult Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 10 90331 -NCIT:C3182 Acute Promyelocytic Leukemia with PML-RARA 8 90332 -NCIT:C169107 Recurrent Acute Promyelocytic Leukemia with PML-RARA 9 90333 -NCIT:C27756 Typical Acute Promyelocytic Leukemia 9 90334 -NCIT:C27757 Microgranular Acute Promyelocytic Leukemia 9 90335 -NCIT:C7968 Childhood Acute Promyelocytic Leukemia with PML-RARA 9 90336 -NCIT:C9155 Adult Acute Promyelocytic Leukemia with PML-RARA 9 90337 -NCIT:C36055 Acute Myeloid Leukemia with a Variant RARA Translocation 8 90338 -NCIT:C36056 Acute Myeloid Leukemia with t(11;17)(q23;q21) 9 90339 -NCIT:C36057 Acute Myeloid Leukemia with t(5;17)(q35;q21) 9 90340 -NCIT:C36058 Acute Myeloid Leukemia with t(11;17)(q13;q21) 9 90341 -NCIT:C38377 Acute Myeloid Leukemia with t(17;17)(q21;q21) 9 90342 -NCIT:C68700 Adult Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 8 90343 -NCIT:C68696 Adult Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 9 90344 -NCIT:C68697 Adult Acute Myeloid Leukemia with inv(16)(p13.1q22); CBFB-MYH11 9 90345 -NCIT:C68698 Adult Acute Myeloid Leukemia with t(16;16)(p13.1;q22); CBFB-MYH11 9 90346 -NCIT:C68699 Adult Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 9 90347 -NCIT:C9155 Adult Acute Promyelocytic Leukemia with PML-RARA 9 90348 -NCIT:C82423 Acute Myeloid Leukemia with t(6;9) (p23;q34.1); DEK-NUP214 8 90349 -NCIT:C82426 Acute Myeloid Leukemia with inv(3) (q21.3;q26.2) or t(3;3) (q21.3;q26.2); GATA2, MECOM 8 90350 -NCIT:C122716 Acute Myeloid Leukemia with inv(3) (q21.3;q26.2); GATA2, MECOM 9 90351 -NCIT:C122717 Acute Myeloid Leukemia with t(3;3) (q21.3;q26.2); GATA2, MECOM 9 90352 -NCIT:C82427 Acute Myeloid Leukemia (Megakaryoblastic) with t(1;22)(p13.3;q13.1); RBM15-MKL1 8 90353 -NCIT:C9287 Acute Myeloid Leukemia with inv(16)(p13.1q22) or t(16;16)(p13.1;q22); CBFB-MYH11 8 90354 -NCIT:C9018 Acute Myeloid Leukemia with inv(16)(p13.1q22); CBFB-MYH11 9 90355 -NCIT:C68697 Adult Acute Myeloid Leukemia with inv(16)(p13.1q22); CBFB-MYH11 10 90356 -NCIT:C9019 Acute Myeloid Leukemia with t(16;16)(p13.1;q22); CBFB-MYH11 9 90357 -NCIT:C68698 Adult Acute Myeloid Leukemia with t(16;16)(p13.1;q22); CBFB-MYH11 10 90358 -NCIT:C9288 Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 8 90359 -NCIT:C188450 Childhood Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 9 90360 -NCIT:C68699 Adult Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 9 90361 -NCIT:C7600 Acute Myeloid Leukemia with Myelodysplasia-Related Changes 7 90362 -NCIT:C125715 Recurrent Acute Myeloid Leukemia with Myelodysplasia-Related Changes 8 90363 -NCIT:C156720 Recurrent Acute Myeloid Leukemia with Multilineage Dysplasia 9 90364 -NCIT:C180897 Refractory Acute Myeloid Leukemia with Myelodysplasia-Related Changes 8 90365 -NCIT:C4037 Acute Myeloid Leukemia Arising from Previous Myelodysplastic Syndrome 8 90366 -NCIT:C9289 Acute Myeloid Leukemia with Multilineage Dysplasia 8 90367 -NCIT:C156720 Recurrent Acute Myeloid Leukemia with Multilineage Dysplasia 9 90368 -NCIT:C82430 Acute Myeloid Leukemia with Gene Mutations 7 90369 -NCIT:C126748 Acute Myeloid Leukemia with FLT3/ITD Mutation 8 90370 -NCIT:C129786 Acute Myeloid Leukemia with RUNX1 Mutation 8 90371 -NCIT:C151898 Acute Myeloid Leukemia with Germline CEBPA Mutation 8 90372 -NCIT:C82431 Acute Myeloid Leukemia with NPM1 Mutation 8 90373 -NCIT:C82433 Acute Myeloid Leukemia with CEBPA Mutation 8 90374 -NCIT:C129782 Acute Myeloid Leukemia with Biallelic Mutations of CEBPA 9 90375 -NCIT:C129783 Acute Myeloid Leukemia with Monoallelic Mutations of CEBPA 9 90376 -NCIT:C9154 Adult Acute Myeloid Leukemia 7 90377 -NCIT:C68700 Adult Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 8 90378 -NCIT:C68696 Adult Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 9 90379 -NCIT:C68697 Adult Acute Myeloid Leukemia with inv(16)(p13.1q22); CBFB-MYH11 9 90380 -NCIT:C68698 Adult Acute Myeloid Leukemia with t(16;16)(p13.1;q22); CBFB-MYH11 9 90381 -NCIT:C68699 Adult Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 9 90382 -NCIT:C9155 Adult Acute Promyelocytic Leukemia with PML-RARA 9 90383 -NCIT:C7319 Adult Acute Monoblastic and Monocytic Leukemia 8 90384 -NCIT:C8263 Adult Acute Monocytic Leukemia 9 90385 -NCIT:C9156 Adult Acute Monoblastic Leukemia 9 90386 -NCIT:C7882 Recurrent Adult Acute Myeloid Leukemia 8 90387 -NCIT:C7961 Adult Acute Myeloid Leukemia with Maturation 8 90388 -NCIT:C7962 Adult Acute Myelomonocytic Leukemia 8 90389 -NCIT:C7964 Adult Acute Basophilic Leukemia 8 90390 -NCIT:C7965 Adult Acute Megakaryoblastic Leukemia 8 90391 -NCIT:C8303 Adult Acute Myeloid Leukemia with Minimal Differentiation 8 90392 -NCIT:C9153 Adult Acute Erythroid Leukemia 8 90393 -NCIT:C68693 Adult Pure Erythroid Leukemia 9 90394 -NCIT:C68694 Adult Erythroleukemia 9 90395 -NCIT:C9380 Adult Acute Myeloid Leukemia without Maturation 8 90396 -NCIT:C9160 Childhood Acute Myeloid Leukemia 7 90397 -NCIT:C122625 Childhood Acute Myeloid Leukemia Not Otherwise Specified 8 90398 -NCIT:C7940 Childhood Acute Monoblastic and Monocytic Leukemia 9 90399 -NCIT:C9162 Childhood Acute Monoblastic Leukemia 10 90400 -NCIT:C9163 Childhood Acute Monocytic Leukemia 10 90401 -NCIT:C7970 Childhood Acute Myelomonocytic Leukemia 9 90402 -NCIT:C7971 Childhood Acute Basophilic Leukemia 9 90403 -NCIT:C7972 Childhood Acute Megakaryoblastic Leukemia 9 90404 -NCIT:C8304 Childhood Acute Myeloid Leukemia with Minimal Differentiation 9 90405 -NCIT:C9158 Childhood Acute Myeloid Leukemia without Maturation 9 90406 -NCIT:C9164 Childhood Acute Erythroid Leukemia 9 90407 -NCIT:C9381 Childhood Acute Myeloid Leukemia with Maturation 9 90408 -NCIT:C122690 Acute Myeloid Leukemia with t(7;12)(q36;p13); HLXB9-ETV6 8 90409 -NCIT:C122691 Childhood Acute Myeloid Leukemia with NUP98 Rearrangement 8 90410 -NCIT:C131502 Acute Myeloid Leukemia with t(5;11)(q35;p15); NUP98-NSD1 9 90411 -NCIT:C131504 Acute Myeloid Leukemia with t(11;15)(p15;q35); NUP98-JARID1A 9 90412 -NCIT:C132111 Acute Megakaryoblastic Leukemia with NUP98-KDM5A 9 90413 -NCIT:C122725 Childhood Acute Myeloid Leukemia with Abnormalities of Chromosome 5q 8 90414 -NCIT:C122726 Childhood Acute Myeloid Leukemia with Abnormalities of Chromosome 7 8 90415 -NCIT:C132101 Acute Myeloid Leukemia with t(10;11)(p12;q23); MLLT10-MLL 8 90416 -NCIT:C132105 Acute Myeloid Leukemia with t(6;11)(q27;q23); MLLT4-MLL 8 90417 -NCIT:C132109 Acute Megakaryoblastic Leukemia with CBFA2T3-GLIS2 8 90418 -NCIT:C167089 Acute Myeloid Leukemia with RAM Immunophenotype 8 90419 -NCIT:C187449 Refractory Childhood Acute Myeloid Leukemia 8 90420 -NCIT:C188450 Childhood Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 8 90421 -NCIT:C188451 Childhood Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 8 90422 -NCIT:C7968 Childhood Acute Promyelocytic Leukemia with PML-RARA 8 90423 -NCIT:C82431 Acute Myeloid Leukemia with NPM1 Mutation 8 90424 -NCIT:C82433 Acute Myeloid Leukemia with CEBPA Mutation 8 90425 -NCIT:C129782 Acute Myeloid Leukemia with Biallelic Mutations of CEBPA 9 90426 -NCIT:C129783 Acute Myeloid Leukemia with Monoallelic Mutations of CEBPA 9 90427 -NCIT:C9068 Recurrent Childhood Acute Myeloid Leukemia 8 90428 -NCIT:C7400 Burkitt Leukemia 6 90429 -NCIT:C151976 Recurrent Burkitt Leukemia 7 90430 -NCIT:C151977 Refractory Burkitt Leukemia 7 90431 -NCIT:C7952 Childhood Burkitt Leukemia 7 90432 -NCIT:C7954 Adult Burkitt Leukemia 7 90433 -NCIT:C7464 Acute Leukemia of Ambiguous Lineage 6 90434 -NCIT:C151975 Acute Leukemia of Ambiguous Lineage, Not Otherwise Specified 7 90435 -NCIT:C172626 Recurrent Acute Leukemia of Ambiguous Lineage 7 90436 -NCIT:C141446 Recurrent Acute Undifferentiated Leukemia 8 90437 -NCIT:C148423 Recurrent Mixed Phenotype Acute Leukemia 8 90438 -NCIT:C141445 Recurrent Acute Biphenotypic Leukemia 9 90439 -NCIT:C179204 Recurrent Acute Bilineal Leukemia 9 90440 -NCIT:C172630 Refractory Acute Leukemia of Ambiguous Lineage 7 90441 -NCIT:C148430 Refractory Mixed Phenotype Acute Leukemia 8 90442 -NCIT:C173683 Refractory Acute Biphenotypic Leukemia 9 90443 -NCIT:C179205 Refractory Acute Bilineal Leukemia 9 90444 -NCIT:C173503 Refractory Acute Undifferentiated Leukemia 8 90445 -NCIT:C82179 Mixed Phenotype Acute Leukemia 7 90446 -NCIT:C148423 Recurrent Mixed Phenotype Acute Leukemia 8 90447 -NCIT:C141445 Recurrent Acute Biphenotypic Leukemia 9 90448 -NCIT:C179204 Recurrent Acute Bilineal Leukemia 9 90449 -NCIT:C148430 Refractory Mixed Phenotype Acute Leukemia 8 90450 -NCIT:C173683 Refractory Acute Biphenotypic Leukemia 9 90451 -NCIT:C179205 Refractory Acute Bilineal Leukemia 9 90452 -NCIT:C151990 Mixed Phenotype Acute Leukemia, Not Otherwise Specified, Rare Subtypes 8 90453 -NCIT:C151991 Mixed Phenotype Acute Leukemia, B/T/Myeloid, Not Otherwise Specified 9 90454 -NCIT:C151992 Mixed Phenotype Acute Leukemia, B/T, Not Otherwise Specified 9 90455 -NCIT:C4673 Acute Biphenotypic Leukemia 8 90456 -NCIT:C126111 Infant Acute Biphenotypic Leukemia 9 90457 -NCIT:C141445 Recurrent Acute Biphenotypic Leukemia 9 90458 -NCIT:C173683 Refractory Acute Biphenotypic Leukemia 9 90459 -NCIT:C6923 Acute Bilineal Leukemia 8 90460 -NCIT:C179204 Recurrent Acute Bilineal Leukemia 9 90461 -NCIT:C179205 Refractory Acute Bilineal Leukemia 9 90462 -NCIT:C82192 Mixed Phenotype Acute Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 90463 -NCIT:C82203 Mixed Phenotype Acute Leukemia with t(v;11q23.3); MLL Rearranged 8 90464 -NCIT:C82212 Mixed Phenotype Acute Leukemia, B/Myeloid, Not Otherwise Specified 8 90465 -NCIT:C82213 Mixed Phenotype Acute Leukemia, T/Myeloid, Not Otherwise Specified 8 90466 -NCIT:C9298 Acute Undifferentiated Leukemia 7 90467 -NCIT:C126110 Infant Acute Undifferentiated Leukemia 8 90468 -NCIT:C141446 Recurrent Acute Undifferentiated Leukemia 8 90469 -NCIT:C173503 Refractory Acute Undifferentiated Leukemia 8 90470 -NCIT:C45240 Cutaneous Hematopoietic and Lymphoid Cell Neoplasm 4 90471 -NCIT:C168980 Cutaneous Histiocytic and Dendritic Cell Neoplasm 5 90472 -NCIT:C168983 Cutaneous Langerhans Cell Histiocytosis 6 90473 -NCIT:C168984 Cutaneous Indeterminate Dendritic Cell Tumor 6 90474 -NCIT:C168991 Cutaneous Erdheim-Chester Disease 6 90475 -NCIT:C27514 Adult Xanthogranuloma 6 90476 -NCIT:C3451 Juvenile Xanthogranuloma 6 90477 -NCIT:C171101 Cutaneous Lymphoma 5 90478 -NCIT:C168651 Cutaneous Burkitt Lymphoma 6 90479 -NCIT:C45266 Cutaneous Mantle Cell Lymphoma 6 90480 -NCIT:C45268 Cutaneous Nasal Type Extranodal NK/T-Cell Lymphoma 6 90481 -NCIT:C45271 Cutaneous Angioimmunoblastic T-Cell Lymphoma 6 90482 -NCIT:C45272 Cutaneous Adult T-Cell Leukemia/Lymphoma 6 90483 -NCIT:C7162 Primary Cutaneous Lymphoma 6 90484 -NCIT:C142876 Recurrent Primary Cutaneous Lymphoma 7 90485 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 8 90486 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 90487 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 90488 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 90489 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 90490 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 90491 -NCIT:C8686 Recurrent Mycosis Fungoides 9 90492 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 90493 -NCIT:C142877 Refractory Primary Cutaneous Lymphoma 7 90494 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 8 90495 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 90496 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 90497 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 90498 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 90499 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 90500 -NCIT:C8687 Refractory Mycosis Fungoides 9 90501 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 90502 -NCIT:C188114 Primary Cutaneous Non-Hodgkin Lymphoma 7 90503 -NCIT:C3467 Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 90504 -NCIT:C172442 Advanced Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 90505 -NCIT:C180374 Early Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 90506 -NCIT:C3246 Mycosis Fungoides 9 90507 -NCIT:C141143 Mycosis Fungoides by AJCC v7 Stage 10 90508 -NCIT:C7796 Stage I Mycosis Fungoides AJCC v7 11 90509 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 12 90510 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 12 90511 -NCIT:C7798 Stage II Mycosis Fungoides AJCC v7 11 90512 -NCIT:C7800 Stage III Mycosis Fungoides AJCC v7 11 90513 -NCIT:C7802 Stage IV Mycosis Fungoides AJCC v7 11 90514 -NCIT:C165783 Transformed Mycosis Fungoides 10 90515 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 90516 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 90517 -NCIT:C8686 Recurrent Mycosis Fungoides 10 90518 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 90519 -NCIT:C8687 Refractory Mycosis Fungoides 10 90520 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 90521 -NCIT:C39644 Mycosis Fungoides Variant 9 90522 -NCIT:C35464 Granulomatous Slack Skin Disease 10 90523 -NCIT:C35685 Folliculotropic Mycosis Fungoides 10 90524 -NCIT:C35794 Pagetoid Reticulosis 10 90525 -NCIT:C45332 Primary Cutaneous Peripheral T-Cell Lymphoma, Rare Subtype 9 90526 -NCIT:C139023 Primary Cutaneous Acral CD8-Positive T-Cell Lymphoma 10 90527 -NCIT:C45339 Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 90528 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 11 90529 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 11 90530 -NCIT:C45340 Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 90531 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 11 90532 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 11 90533 -NCIT:C6860 Primary Cutaneous Anaplastic Large Cell Lymphoma 9 90534 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 90535 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 90536 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 10 90537 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 10 90538 -NCIT:C6918 Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 90539 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 90540 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 90541 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 90542 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 90543 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 90544 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 90545 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 90546 -NCIT:C8686 Recurrent Mycosis Fungoides 10 90547 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 90548 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 90549 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 90550 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 90551 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 90552 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 90553 -NCIT:C8687 Refractory Mycosis Fungoides 10 90554 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 90555 -NCIT:C6858 Primary Cutaneous B-Cell Non-Hodgkin Lymphoma 8 90556 -NCIT:C45193 Primary Cutaneous Diffuse Large B-Cell Lymphoma 9 90557 -NCIT:C45194 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 90558 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 90559 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 90560 -NCIT:C45213 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Other 10 90561 -NCIT:C45214 Primary Cutaneous Intravascular Large B-Cell Lymphoma 11 90562 -NCIT:C45215 Primary Cutaneous T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 11 90563 -NCIT:C45216 Primary Cutaneous Plasmablastic Lymphoma 11 90564 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 9 90565 -NCIT:C7230 Primary Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 90566 -NCIT:C45163 Borrelia Burgdoferi-Associated Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 90567 -NCIT:C7221 Primary Cutaneous Hodgkin Lymphoma 7 90568 -NCIT:C7218 Cutaneous Follicular Lymphoma 6 90569 -NCIT:C6859 Grade 3 Cutaneous Follicular Lymphoma 7 90570 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 7 90571 -NCIT:C7219 Grade 2 Cutaneous Follicular Lymphoma 7 90572 -NCIT:C7220 Grade 1 Cutaneous Follicular Lymphoma 7 90573 -NCIT:C45238 Cutaneous Precursor Lymphoid Neoplasm 5 90574 -NCIT:C45241 Cutaneous B Lymphoblastic Leukemia/Lymphoma 6 90575 -NCIT:C45242 Cutaneous T Lymphoblastic Leukemia/Lymphoma 6 90576 -NCIT:C5631 Aleukemic Acute Lymphoblastic Leukemia Cutis 6 90577 -NCIT:C45249 Cutaneous Mature B-Cell Neoplasm 5 90578 -NCIT:C168651 Cutaneous Burkitt Lymphoma 6 90579 -NCIT:C185044 Cutaneous Plasmacytoma 6 90580 -NCIT:C185155 Extramedullary Disease in Plasma Cell Myeloma Involving the Skin 6 90581 -NCIT:C45264 Cutaneous Chronic Lymphocytic Leukemia 6 90582 -NCIT:C45266 Cutaneous Mantle Cell Lymphoma 6 90583 -NCIT:C45267 Cutaneous Lymphomatoid Granulomatosis 6 90584 -NCIT:C6858 Primary Cutaneous B-Cell Non-Hodgkin Lymphoma 6 90585 -NCIT:C45193 Primary Cutaneous Diffuse Large B-Cell Lymphoma 7 90586 -NCIT:C45194 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 8 90587 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 90588 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 90589 -NCIT:C45213 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Other 8 90590 -NCIT:C45214 Primary Cutaneous Intravascular Large B-Cell Lymphoma 9 90591 -NCIT:C45215 Primary Cutaneous T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 9 90592 -NCIT:C45216 Primary Cutaneous Plasmablastic Lymphoma 9 90593 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 7 90594 -NCIT:C7230 Primary Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 7 90595 -NCIT:C45163 Borrelia Burgdoferi-Associated Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 90596 -NCIT:C7218 Cutaneous Follicular Lymphoma 6 90597 -NCIT:C6859 Grade 3 Cutaneous Follicular Lymphoma 7 90598 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 7 90599 -NCIT:C7219 Grade 2 Cutaneous Follicular Lymphoma 7 90600 -NCIT:C7220 Grade 1 Cutaneous Follicular Lymphoma 7 90601 -NCIT:C45250 Cutaneous Mature T-Cell and NK-Cell Neoplasm 5 90602 -NCIT:C3467 Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 6 90603 -NCIT:C172442 Advanced Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 7 90604 -NCIT:C180374 Early Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 7 90605 -NCIT:C3246 Mycosis Fungoides 7 90606 -NCIT:C141143 Mycosis Fungoides by AJCC v7 Stage 8 90607 -NCIT:C7796 Stage I Mycosis Fungoides AJCC v7 9 90608 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 10 90609 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 10 90610 -NCIT:C7798 Stage II Mycosis Fungoides AJCC v7 9 90611 -NCIT:C7800 Stage III Mycosis Fungoides AJCC v7 9 90612 -NCIT:C7802 Stage IV Mycosis Fungoides AJCC v7 9 90613 -NCIT:C165783 Transformed Mycosis Fungoides 8 90614 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 9 90615 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 9 90616 -NCIT:C8686 Recurrent Mycosis Fungoides 8 90617 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 9 90618 -NCIT:C8687 Refractory Mycosis Fungoides 8 90619 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 9 90620 -NCIT:C39644 Mycosis Fungoides Variant 7 90621 -NCIT:C35464 Granulomatous Slack Skin Disease 8 90622 -NCIT:C35685 Folliculotropic Mycosis Fungoides 8 90623 -NCIT:C35794 Pagetoid Reticulosis 8 90624 -NCIT:C45332 Primary Cutaneous Peripheral T-Cell Lymphoma, Rare Subtype 7 90625 -NCIT:C139023 Primary Cutaneous Acral CD8-Positive T-Cell Lymphoma 8 90626 -NCIT:C45339 Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 8 90627 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 90628 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 90629 -NCIT:C45340 Primary Cutaneous Gamma-Delta T-Cell Lymphoma 8 90630 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 90631 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 90632 -NCIT:C6860 Primary Cutaneous Anaplastic Large Cell Lymphoma 7 90633 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 8 90634 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 8 90635 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 8 90636 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 8 90637 -NCIT:C6918 Subcutaneous Panniculitis-Like T-Cell Lymphoma 7 90638 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 8 90639 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 8 90640 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 7 90641 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 8 90642 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 8 90643 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 8 90644 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 8 90645 -NCIT:C8686 Recurrent Mycosis Fungoides 8 90646 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 9 90647 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 7 90648 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 8 90649 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 8 90650 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 8 90651 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 8 90652 -NCIT:C8687 Refractory Mycosis Fungoides 8 90653 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 9 90654 -NCIT:C3721 Lymphomatoid Papulosis 6 90655 -NCIT:C139014 Type D Lymphomatoid Papulosis 7 90656 -NCIT:C139015 Type E Lymphomatoid Papulosis 7 90657 -NCIT:C139017 Lymphomatoid Papulosis with DUSP22-IRF4 Gene Rearrangement 7 90658 -NCIT:C7197 Type A Lymphomatoid Papulosis 7 90659 -NCIT:C7198 Type B Lymphomatoid Papulosis 7 90660 -NCIT:C7199 Type C Lymphomatoid Papulosis 7 90661 -NCIT:C45268 Cutaneous Nasal Type Extranodal NK/T-Cell Lymphoma 6 90662 -NCIT:C45271 Cutaneous Angioimmunoblastic T-Cell Lymphoma 6 90663 -NCIT:C45272 Cutaneous Adult T-Cell Leukemia/Lymphoma 6 90664 -NCIT:C45366 Primary Cutaneous CD4-Positive Small/Medium T-Cell Lymphoproliferative Disorder 6 90665 -NCIT:C7195 Primary Cutaneous CD30-Positive T-Cell Lymphoproliferative Disorder 6 90666 -NCIT:C6860 Primary Cutaneous Anaplastic Large Cell Lymphoma 7 90667 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 8 90668 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 8 90669 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 8 90670 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 8 90671 -NCIT:C7196 Borderline Primary Cutaneous CD30-Positive T-Cell Lymphoproliferative Disorder 7 90672 -NCIT:C7199 Type C Lymphomatoid Papulosis 8 90673 -NCIT:C7200 Anaplastic Large Cell Lymphoma, Lymphomatoid Papulosis-Like Histology 8 90674 -NCIT:C7197 Type A Lymphomatoid Papulosis 7 90675 -NCIT:C7137 Cutaneous Mastocytosis 5 90676 -NCIT:C43277 Pure Cutaneous Mastocytosis 6 90677 -NCIT:C3218 Diffuse Cutaneous Mastocytosis 7 90678 -NCIT:C3433 Urticaria Pigmentosa/Maculopapular Cutaneous Mastocytosis 7 90679 -NCIT:C7138 Solitary Mastocytoma of the Skin 7 90680 -NCIT:C7203 Blastic Plasmacytoid Dendritic Cell Neoplasm 5 90681 -NCIT:C156103 Recurrent Blastic Plasmacytoid Dendritic Cell Neoplasm 6 90682 -NCIT:C156104 Refractory Blastic Plasmacytoid Dendritic Cell Neoplasm 6 90683 -NCIT:C88156 Leukemia Cutis 5 90684 -NCIT:C45264 Cutaneous Chronic Lymphocytic Leukemia 6 90685 -NCIT:C4983 Aleukemic Leukemia Cutis 6 90686 -NCIT:C5630 Aleukemic Monocytic Leukemia Cutis 7 90687 -NCIT:C5631 Aleukemic Acute Lymphoblastic Leukemia Cutis 7 90688 -NCIT:C5503 Central Nervous System Hematopoietic Neoplasm 4 90689 -NCIT:C185037 Extramedullary Disease in Plasma Cell Myeloma Involving the Central Nervous System 5 90690 -NCIT:C185039 Extramedullary Disease in Plasma Cell Myeloma Involving the Leptomeninges 6 90691 -NCIT:C186662 Central Nervous System Lymphomatoid Granulomatosis 5 90692 -NCIT:C5440 Central Nervous System Leukemia 5 90693 -NCIT:C94754 Meningeal Leukemia 6 90694 -NCIT:C9111 Meningeal Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 90695 -NCIT:C7008 Intracranial Myeloid Sarcoma 5 90696 -NCIT:C87797 Secondary Central Nervous System Lymphoma 5 90697 -NCIT:C114949 Secondary Central Nervous System Hodgkin Lymphoma 6 90698 -NCIT:C5057 Secondary Cerebral Hodgkin Lymphoma 7 90699 -NCIT:C114950 Secondary Central Nervous System Non-Hodgkin Lymphoma 6 90700 -NCIT:C92944 Central Nervous System Histiocytic and Dendritic Cell Neoplasm 5 90701 -NCIT:C129806 Central Nervous System Langerhans Cell Histiocytosis 6 90702 -NCIT:C129807 Central Nervous System Histiocytic Sarcoma 6 90703 -NCIT:C129808 Central Nervous System Erdheim-Chester Disease 6 90704 -NCIT:C9301 Central Nervous System Lymphoma 5 90705 -NCIT:C114779 Central Nervous System Non-Hodgkin Lymphoma 6 90706 -NCIT:C146989 Refractory Central Nervous System Non-Hodgkin Lymphoma 7 90707 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 8 90708 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 90709 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 90710 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 90711 -NCIT:C146990 Recurrent Central Nervous System Non-Hodgkin Lymphoma 7 90712 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 8 90713 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 90714 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 90715 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 90716 -NCIT:C147948 Central Nervous System B-Cell Non-Hodgkin Lymphoma 7 90717 -NCIT:C71720 Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 90718 -NCIT:C129602 Central Nervous System Intravascular Large B-Cell Lymphoma 9 90719 -NCIT:C155797 Pituitary Gland Diffuse Large B-Cell Lymphoma 9 90720 -NCIT:C157067 Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 90721 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 90722 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 90723 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 90724 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 90725 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 90726 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 90727 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 90728 -NCIT:C95991 Dural Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 90729 -NCIT:C155796 Pituitary Gland Non-Hodgkin Lymphoma 7 90730 -NCIT:C155797 Pituitary Gland Diffuse Large B-Cell Lymphoma 8 90731 -NCIT:C157065 Primary Vitreoretinal Non-Hodgkin Lymphoma 7 90732 -NCIT:C157067 Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 90733 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 90734 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 90735 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 8 90736 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 90737 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 8 90738 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 90739 -NCIT:C4365 Primary Retinal Non-Hodgkin Lymphoma 8 90740 -NCIT:C5409 Central Nervous System T-Cell Non-Hodgkin Lymphoma 7 90741 -NCIT:C129600 Central Nervous System Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 8 90742 -NCIT:C5322 Central Nervous System Anaplastic Large Cell Lymphoma 9 90743 -NCIT:C129598 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Positive 10 90744 -NCIT:C129599 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Negative 10 90745 -NCIT:C7609 Cerebral Non-Hodgkin Lymphoma 7 90746 -NCIT:C114951 Central Nervous System Hodgkin Lymphoma 6 90747 -NCIT:C5055 Cerebral Hodgkin Lymphoma 7 90748 -NCIT:C138019 Recurrent Central Nervous System Lymphoma 6 90749 -NCIT:C146990 Recurrent Central Nervous System Non-Hodgkin Lymphoma 7 90750 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 8 90751 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 90752 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 90753 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 90754 -NCIT:C138020 Refractory Central Nervous System Lymphoma 6 90755 -NCIT:C146989 Refractory Central Nervous System Non-Hodgkin Lymphoma 7 90756 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 8 90757 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 90758 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 90759 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 90760 -NCIT:C186658 Immunodeficiency-Related Central Nervous System Lymphoma 6 90761 -NCIT:C8284 AIDS-Related Primary Central Nervous System Lymphoma 7 90762 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 90763 -NCIT:C5157 Spinal Cord Lymphoma 6 90764 -NCIT:C7611 Cerebral Lymphoma 6 90765 -NCIT:C5054 Cerebral Lymphoma in Immunocompetent Host 7 90766 -NCIT:C5055 Cerebral Hodgkin Lymphoma 7 90767 -NCIT:C7609 Cerebral Non-Hodgkin Lymphoma 7 90768 -NCIT:C94756 Meningeal Lymphoma 6 90769 -NCIT:C95991 Dural Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 7 90770 -NCIT:C7065 Lymphocytic Neoplasm 4 90771 -NCIT:C172133 Recurrent Malignant Lymphoid Neoplasm 5 90772 -NCIT:C131873 Recurrent Chronic Lymphocytic Leukemia/Small Lymphocytic Lymphoma 6 90773 -NCIT:C8154 Recurrent Small Lymphocytic Lymphoma 7 90774 -NCIT:C8645 Recurrent Chronic Lymphocytic Leukemia 7 90775 -NCIT:C158151 Recurrent Transformed Chronic Lymphocytic Leukemia 8 90776 -NCIT:C134157 Recurrent Lymphoma 6 90777 -NCIT:C138013 Recurrent B-Cell Lymphoma, Unclassifiable, with Features Intermediate between Diffuse Large B-Cell Lymphoma and Classic Hodgkin Lymphoma 7 90778 -NCIT:C138019 Recurrent Central Nervous System Lymphoma 7 90779 -NCIT:C146990 Recurrent Central Nervous System Non-Hodgkin Lymphoma 8 90780 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 9 90781 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 90782 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 90783 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 90784 -NCIT:C138021 Recurrent Testicular Lymphoma 7 90785 -NCIT:C138023 Recurrent Breast Lymphoma 7 90786 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 8 90787 -NCIT:C142876 Recurrent Primary Cutaneous Lymphoma 7 90788 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 8 90789 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 90790 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 90791 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 90792 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 90793 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 90794 -NCIT:C8686 Recurrent Mycosis Fungoides 9 90795 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 90796 -NCIT:C147863 Recurrent EBV-Related Lymphoma 7 90797 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 90798 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 8 90799 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 9 90800 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 9 90801 -NCIT:C153175 Recurrent Mediastinal Lymphoma 7 90802 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 90803 -NCIT:C157681 Recurrent Primary Bone Lymphoma 7 90804 -NCIT:C187196 Recurrent Childhood Lymphoma 7 90805 -NCIT:C115369 Recurrent Childhood Non-Hodgkin Lymphoma 8 90806 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 9 90807 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 9 90808 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 9 90809 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 9 90810 -NCIT:C8059 Recurrent Childhood Hodgkin Lymphoma 8 90811 -NCIT:C4937 Recurrent Hodgkin Lymphoma 7 90812 -NCIT:C133592 Recurrent Classic Hodgkin Lymphoma 8 90813 -NCIT:C136971 Recurrent Lymphocyte-Rich Classic Hodgkin Lymphoma 9 90814 -NCIT:C8649 Recurrent Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 90815 -NCIT:C8832 Recurrent Mixed Cellularity Classic Hodgkin Lymphoma 9 90816 -NCIT:C8837 Recurrent Nodular Sclerosis Classic Hodgkin Lymphoma 9 90817 -NCIT:C7259 Recurrent Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 90818 -NCIT:C7789 Recurrent Adult Hodgkin Lymphoma 8 90819 -NCIT:C8059 Recurrent Childhood Hodgkin Lymphoma 8 90820 -NCIT:C9251 Recurrent Non-Hodgkin Lymphoma 7 90821 -NCIT:C115369 Recurrent Childhood Non-Hodgkin Lymphoma 8 90822 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 9 90823 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 9 90824 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 9 90825 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 9 90826 -NCIT:C146990 Recurrent Central Nervous System Non-Hodgkin Lymphoma 8 90827 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 9 90828 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 90829 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 90830 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 90831 -NCIT:C156232 Recurrent Aggressive Non-Hodgkin Lymphoma 8 90832 -NCIT:C178553 Recurrent Aggressive B-Cell Non-Hodgkin Lymphoma 9 90833 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 90834 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 90835 -NCIT:C5008 Recurrent Burkitt Lymphoma 10 90836 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 11 90837 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 11 90838 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 10 90839 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 11 90840 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 11 90841 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 10 90842 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 11 90843 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 11 90844 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 10 90845 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 10 90846 -NCIT:C178554 Recurrent Aggressive T-Cell Non-Hodgkin Lymphoma 9 90847 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 90848 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 10 90849 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 90850 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 90851 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 10 90852 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 90853 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 90854 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 10 90855 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 10 90856 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 10 90857 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 10 90858 -NCIT:C8490 Recurrent Aggressive Adult Non-Hodgkin Lymphoma 9 90859 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 90860 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 10 90861 -NCIT:C8164 Recurrent Adult Lymphoblastic Lymphoma 10 90862 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 10 90863 -NCIT:C181796 Recurrent Indolent Non-Hodgkin Lymphoma 8 90864 -NCIT:C183512 Recurrent Indolent B-Cell Non-Hodgkin Lymphoma 9 90865 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 10 90866 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 11 90867 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 90868 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 11 90869 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 10 90870 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 10 90871 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 10 90872 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 11 90873 -NCIT:C183513 Recurrent Indolent T-Cell Non-Hodgkin Lymphoma 9 90874 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 90875 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 90876 -NCIT:C8686 Recurrent Mycosis Fungoides 10 90877 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 90878 -NCIT:C8488 Recurrent Indolent Adult Non-Hodgkin Lymphoma 9 90879 -NCIT:C8098 Recurrent Adult Non-Hodgkin Lymphoma 8 90880 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 9 90881 -NCIT:C8488 Recurrent Indolent Adult Non-Hodgkin Lymphoma 9 90882 -NCIT:C8490 Recurrent Aggressive Adult Non-Hodgkin Lymphoma 9 90883 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 90884 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 10 90885 -NCIT:C8164 Recurrent Adult Lymphoblastic Lymphoma 10 90886 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 10 90887 -NCIT:C8663 Recurrent T-Cell Non-Hodgkin Lymphoma 8 90888 -NCIT:C178554 Recurrent Aggressive T-Cell Non-Hodgkin Lymphoma 9 90889 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 90890 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 10 90891 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 90892 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 90893 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 10 90894 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 90895 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 90896 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 10 90897 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 10 90898 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 10 90899 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 10 90900 -NCIT:C183513 Recurrent Indolent T-Cell Non-Hodgkin Lymphoma 9 90901 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 90902 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 90903 -NCIT:C8686 Recurrent Mycosis Fungoides 10 90904 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 90905 -NCIT:C8688 Recurrent Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 9 90906 -NCIT:C115439 Recurrent Mycosis Fungoides and Sezary Syndrome 10 90907 -NCIT:C176999 Recurrent Sezary Syndrome 11 90908 -NCIT:C8686 Recurrent Mycosis Fungoides 11 90909 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 12 90910 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 90911 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 10 90912 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 90913 -NCIT:C157689 Recurrent NK-Cell Lymphoma, Unclassifiable 10 90914 -NCIT:C165789 Recurrent Transformed T-cell Non-Hodgkin Lymphoma 10 90915 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 90916 -NCIT:C168778 Recurrent Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 10 90917 -NCIT:C168780 Recurrent Follicular T-Cell Lymphoma 10 90918 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 10 90919 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 10 90920 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 11 90921 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 11 90922 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 11 90923 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 11 90924 -NCIT:C8686 Recurrent Mycosis Fungoides 11 90925 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 12 90926 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 10 90927 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 10 90928 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 10 90929 -NCIT:C9250 Recurrent Anaplastic Large Cell Lymphoma 10 90930 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 11 90931 -NCIT:C162688 Recurrent Systemic Anaplastic Large Cell Lymphoma 11 90932 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 12 90933 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 11 90934 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 11 90935 -NCIT:C8702 Recurrent Transformed Non-Hodgkin Lymphoma 8 90936 -NCIT:C158149 Recurrent Transformed B-Cell Non-Hodgkin Lymphoma 9 90937 -NCIT:C160232 Recurrent Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 10 90938 -NCIT:C186483 Recurrent Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 10 90939 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 11 90940 -NCIT:C165789 Recurrent Transformed T-cell Non-Hodgkin Lymphoma 9 90941 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 90942 -NCIT:C8841 Recurrent B-Cell Non-Hodgkin Lymphoma 8 90943 -NCIT:C165799 Recurrent Mature B-Cell Non-Hodgkin Lymphoma 9 90944 -NCIT:C158149 Recurrent Transformed B-Cell Non-Hodgkin Lymphoma 10 90945 -NCIT:C160232 Recurrent Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 11 90946 -NCIT:C186483 Recurrent Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 11 90947 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 12 90948 -NCIT:C5007 Recurrent Follicular Lymphoma 10 90949 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 11 90950 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 11 90951 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 11 90952 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 12 90953 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 12 90954 -NCIT:C5008 Recurrent Burkitt Lymphoma 10 90955 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 11 90956 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 11 90957 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 10 90958 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 11 90959 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 90960 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 11 90961 -NCIT:C8154 Recurrent Small Lymphocytic Lymphoma 10 90962 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 10 90963 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 10 90964 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 11 90965 -NCIT:C8852 Recurrent Diffuse Large B-Cell Lymphoma 10 90966 -NCIT:C138015 Recurrent Extranodal Diffuse Large B-cell Lymphoma 11 90967 -NCIT:C138025 Recurrent Intravascular Large B-Cell Lymphoma 11 90968 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 90969 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 90970 -NCIT:C156696 Recurrent T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 11 90971 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 11 90972 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 12 90973 -NCIT:C157679 Recurrent Primary Effusion Lymphoma 11 90974 -NCIT:C157683 Recurrent Plasmablastic Lymphoma 11 90975 -NCIT:C160229 Recurrent High Grade B-Cell Lymphoma 11 90976 -NCIT:C151980 Recurrent High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 12 90977 -NCIT:C162451 Recurrent High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 12 90978 -NCIT:C188788 Recurrent High Grade B-Cell Lymphoma, Not Otherwise Specified 12 90979 -NCIT:C165240 Recurrent Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 90980 -NCIT:C160230 Recurrent Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 12 90981 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 12 90982 -NCIT:C182035 Recurrent Immunoblastic Lymphoma 12 90983 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 13 90984 -NCIT:C8926 Recurrent Centroblastic Lymphoma 12 90985 -NCIT:C183140 Recurrent Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 11 90986 -NCIT:C188790 Recurrent ALK-Positive Large B-Cell Lymphoma 11 90987 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 11 90988 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 12 90989 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 12 90990 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 90991 -NCIT:C178553 Recurrent Aggressive B-Cell Non-Hodgkin Lymphoma 9 90992 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 90993 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 90994 -NCIT:C5008 Recurrent Burkitt Lymphoma 10 90995 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 11 90996 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 11 90997 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 10 90998 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 11 90999 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 11 91000 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 10 91001 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 11 91002 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 11 91003 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 10 91004 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 10 91005 -NCIT:C183512 Recurrent Indolent B-Cell Non-Hodgkin Lymphoma 9 91006 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 10 91007 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 11 91008 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 91009 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 11 91010 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 10 91011 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 10 91012 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 10 91013 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 11 91014 -NCIT:C142810 Recurrent Acute Lymphoblastic Leukemia 6 91015 -NCIT:C142811 Recurrent B Acute Lymphoblastic Leukemia 7 91016 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 91017 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 91018 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 91019 -NCIT:C150131 Recurrent T Acute Lymphoblastic Leukemia 7 91020 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 91021 -NCIT:C7784 Recurrent Childhood Acute Lymphoblastic Leukemia 7 91022 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 91023 -NCIT:C7883 Recurrent Adult Acute Lymphoblastic Leukemia 7 91024 -NCIT:C142882 Recurrent Hairy Cell Leukemia 6 91025 -NCIT:C151976 Recurrent Burkitt Leukemia 6 91026 -NCIT:C157474 Recurrent Monomorphic Post-Transplant Lymphoproliferative Disorder 6 91027 -NCIT:C158081 Recurrent B-Cell Prolymphocytic Leukemia 6 91028 -NCIT:C171065 Recurrent Hairy Cell Leukemia Variant 6 91029 -NCIT:C172289 Recurrent Plasma Cell Neoplasm 6 91030 -NCIT:C133732 Recurrent Primary Amyloidosis 7 91031 -NCIT:C174054 Recurrent AL Amyloidosis 8 91032 -NCIT:C7025 Recurrent Plasma Cell Myeloma 7 91033 -NCIT:C173409 Recurrent Mature T-Cell and NK-Cell Neoplasm 6 91034 -NCIT:C150133 Recurrent T-Cell Prolymphocytic Leukemia 7 91035 -NCIT:C157692 Recurrent Aggressive NK-Cell Leukemia 7 91036 -NCIT:C180985 Recurrent T-Cell Large Granular Lymphocyte Leukemia 7 91037 -NCIT:C8688 Recurrent Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 7 91038 -NCIT:C115439 Recurrent Mycosis Fungoides and Sezary Syndrome 8 91039 -NCIT:C176999 Recurrent Sezary Syndrome 9 91040 -NCIT:C8686 Recurrent Mycosis Fungoides 9 91041 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 91042 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 8 91043 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 8 91044 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 91045 -NCIT:C157689 Recurrent NK-Cell Lymphoma, Unclassifiable 8 91046 -NCIT:C165789 Recurrent Transformed T-cell Non-Hodgkin Lymphoma 8 91047 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 9 91048 -NCIT:C168778 Recurrent Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 8 91049 -NCIT:C168780 Recurrent Follicular T-Cell Lymphoma 8 91050 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 8 91051 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 91052 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 91053 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 91054 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 91055 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 91056 -NCIT:C8686 Recurrent Mycosis Fungoides 9 91057 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 91058 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 8 91059 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 8 91060 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 8 91061 -NCIT:C9250 Recurrent Anaplastic Large Cell Lymphoma 8 91062 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 9 91063 -NCIT:C162688 Recurrent Systemic Anaplastic Large Cell Lymphoma 9 91064 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 91065 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 91066 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 91067 -NCIT:C8695 Recurrent T Lymphoblastic Leukemia/Lymphoma 6 91068 -NCIT:C150131 Recurrent T Acute Lymphoblastic Leukemia 7 91069 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 91070 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 7 91071 -NCIT:C172280 Refractory Malignant Lymphoid Neoplasm 5 91072 -NCIT:C134154 Refractory Lymphoma 6 91073 -NCIT:C138014 Refractory B-Cell Lymphoma, Unclassifiable, with Features Intermediate between Diffuse Large B-Cell Lymphoma and Classic Hodgkin Lymphoma 7 91074 -NCIT:C138020 Refractory Central Nervous System Lymphoma 7 91075 -NCIT:C146989 Refractory Central Nervous System Non-Hodgkin Lymphoma 8 91076 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 9 91077 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 91078 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 91079 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 91080 -NCIT:C138022 Refractory Testicular Lymphoma 7 91081 -NCIT:C138024 Refractory Breast Lymphoma 7 91082 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 8 91083 -NCIT:C142877 Refractory Primary Cutaneous Lymphoma 7 91084 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 8 91085 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 91086 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 91087 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 91088 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 91089 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 91090 -NCIT:C8687 Refractory Mycosis Fungoides 9 91091 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 91092 -NCIT:C153177 Refractory Mediastinal Lymphoma 7 91093 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 91094 -NCIT:C157682 Refractory Primary Bone Lymphoma 7 91095 -NCIT:C160149 Refractory EBV-Related Lymphoma 7 91096 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 91097 -NCIT:C187197 Refractory Childhood Lymphoma 7 91098 -NCIT:C115458 Refractory Childhood Hodgkin Lymphoma 8 91099 -NCIT:C8701 Refractory Non-Hodgkin Lymphoma 7 91100 -NCIT:C140091 Refractory Transformed Non-Hodgkin Lymphoma 8 91101 -NCIT:C158150 Refractory Transformed B-Cell Non-Hodgkin Lymphoma 9 91102 -NCIT:C160240 Refractory Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 10 91103 -NCIT:C186484 Refractory Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 10 91104 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 11 91105 -NCIT:C165791 Refractory Transformed T-cell Non-Hodgkin Lymphoma 9 91106 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 91107 -NCIT:C146989 Refractory Central Nervous System Non-Hodgkin Lymphoma 8 91108 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 9 91109 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 91110 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 91111 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 91112 -NCIT:C151978 Refractory Lymphoblastic Lymphoma 8 91113 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 9 91114 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 9 91115 -NCIT:C156233 Refractory Aggressive Non-Hodgkin Lymphoma 8 91116 -NCIT:C178555 Refractory Aggressive B-Cell Non-Hodgkin Lymphoma 9 91117 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 91118 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 91119 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 10 91120 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 11 91121 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 11 91122 -NCIT:C8847 Refractory Burkitt Lymphoma 10 91123 -NCIT:C8862 Refractory Mantle Cell Lymphoma 10 91124 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 10 91125 -NCIT:C178556 Refractory Aggressive T-Cell Non-Hodgkin Lymphoma 9 91126 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 10 91127 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 91128 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 91129 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 91130 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 91131 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 10 91132 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 10 91133 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 10 91134 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 10 91135 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 10 91136 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 91137 -NCIT:C173046 Refractory Indolent Non-Hodgkin Lymphoma 8 91138 -NCIT:C148175 Refractory Indolent Adult Non-Hodgkin Lymphoma 9 91139 -NCIT:C183514 Refractory Indolent B-Cell Non-Hodgkin Lymphoma 9 91140 -NCIT:C143085 Refractory Marginal Zone Lymphoma 10 91141 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 11 91142 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 91143 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 11 91144 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 10 91145 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 10 91146 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 10 91147 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 11 91148 -NCIT:C183515 Refractory Indolent T-Cell Non-Hodgkin Lymphoma 9 91149 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 91150 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 91151 -NCIT:C8687 Refractory Mycosis Fungoides 10 91152 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 91153 -NCIT:C8664 Refractory T-Cell Non-Hodgkin Lymphoma 8 91154 -NCIT:C178556 Refractory Aggressive T-Cell Non-Hodgkin Lymphoma 9 91155 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 10 91156 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 91157 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 91158 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 91159 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 91160 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 10 91161 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 10 91162 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 10 91163 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 10 91164 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 10 91165 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 91166 -NCIT:C183515 Refractory Indolent T-Cell Non-Hodgkin Lymphoma 9 91167 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 91168 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 91169 -NCIT:C8687 Refractory Mycosis Fungoides 10 91170 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 91171 -NCIT:C8689 Refractory Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 9 91172 -NCIT:C148129 Refractory Mycosis Fungoides and Sezary Syndrome 10 91173 -NCIT:C177000 Refractory Sezary Syndrome 11 91174 -NCIT:C8687 Refractory Mycosis Fungoides 11 91175 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 12 91176 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 10 91177 -NCIT:C157690 Refractory NK-Cell Lymphoma, Unclassifiable 10 91178 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 91179 -NCIT:C165791 Refractory Transformed T-cell Non-Hodgkin Lymphoma 10 91180 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 91181 -NCIT:C168779 Refractory Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 10 91182 -NCIT:C168781 Refractory Follicular T-Cell Lymphoma 10 91183 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 10 91184 -NCIT:C8658 Refractory Anaplastic Large Cell Lymphoma 10 91185 -NCIT:C162689 Refractory Systemic Anaplastic Large Cell Lymphoma 11 91186 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 12 91187 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 11 91188 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 11 91189 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 10 91190 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 10 91191 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 10 91192 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 10 91193 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 11 91194 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 11 91195 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 11 91196 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 11 91197 -NCIT:C8687 Refractory Mycosis Fungoides 11 91198 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 12 91199 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 91200 -NCIT:C8842 Refractory B-Cell Non-Hodgkin Lymphoma 8 91201 -NCIT:C178555 Refractory Aggressive B-Cell Non-Hodgkin Lymphoma 9 91202 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 91203 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 91204 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 10 91205 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 11 91206 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 11 91207 -NCIT:C8847 Refractory Burkitt Lymphoma 10 91208 -NCIT:C8862 Refractory Mantle Cell Lymphoma 10 91209 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 10 91210 -NCIT:C183514 Refractory Indolent B-Cell Non-Hodgkin Lymphoma 9 91211 -NCIT:C143085 Refractory Marginal Zone Lymphoma 10 91212 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 11 91213 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 91214 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 11 91215 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 10 91216 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 10 91217 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 10 91218 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 11 91219 -NCIT:C7228 Refractory Mature B-Cell Non-Hodgkin Lymphoma 9 91220 -NCIT:C143085 Refractory Marginal Zone Lymphoma 10 91221 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 11 91222 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 91223 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 11 91224 -NCIT:C158150 Refractory Transformed B-Cell Non-Hodgkin Lymphoma 10 91225 -NCIT:C160240 Refractory Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 11 91226 -NCIT:C186484 Refractory Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 11 91227 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 12 91228 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 10 91229 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 11 91230 -NCIT:C8846 Refractory Small Lymphocytic Lymphoma 10 91231 -NCIT:C8847 Refractory Burkitt Lymphoma 10 91232 -NCIT:C8853 Refractory Diffuse Large B-Cell Lymphoma 10 91233 -NCIT:C138018 Refractory Extranodal Diffuse Large B-cell Lymphoma 11 91234 -NCIT:C138026 Refractory Intravascular Large B-Cell Lymphoma 11 91235 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 91236 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 91237 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 11 91238 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 12 91239 -NCIT:C157678 Refractory T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 11 91240 -NCIT:C157680 Refractory Primary Effusion Lymphoma 11 91241 -NCIT:C157684 Refractory Plasmablastic Lymphoma 11 91242 -NCIT:C160233 Refractory High Grade B-Cell Lymphoma 11 91243 -NCIT:C151979 Refractory High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 12 91244 -NCIT:C162453 Refractory High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 12 91245 -NCIT:C188789 Refractory High Grade B-Cell Lymphoma, Not Otherwise Specified 12 91246 -NCIT:C165241 Refractory Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 91247 -NCIT:C160238 Refractory Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 12 91248 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 12 91249 -NCIT:C182034 Refractory Immunoblastic Lymphoma 12 91250 -NCIT:C8927 Refractory Centroblastic Lymphoma 12 91251 -NCIT:C183142 Refractory Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 11 91252 -NCIT:C188791 Refractory ALK-Positive Large B-Cell Lymphoma 11 91253 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 91254 -NCIT:C8858 Refractory Follicular Lymphoma 10 91255 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 11 91256 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 11 91257 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 11 91258 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 12 91259 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 12 91260 -NCIT:C8862 Refractory Mantle Cell Lymphoma 10 91261 -NCIT:C8836 Refractory Hodgkin Lymphoma 7 91262 -NCIT:C115458 Refractory Childhood Hodgkin Lymphoma 8 91263 -NCIT:C133736 Refractory Classic Hodgkin Lymphoma 8 91264 -NCIT:C142982 Refractory Lymphocyte-Rich Classic Hodgkin Lymphoma 9 91265 -NCIT:C8650 Refractory Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 91266 -NCIT:C8833 Refractory Mixed Cellularity Classic Hodgkin Lymphoma 9 91267 -NCIT:C8838 Refractory Nodular Sclerosis Classic Hodgkin Lymphoma 9 91268 -NCIT:C7260 Refractory Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 91269 -NCIT:C136488 Refractory Acute Lymphoblastic Leukemia 6 91270 -NCIT:C122624 Refractory Childhood Acute Lymphoblastic Leukemia 7 91271 -NCIT:C126309 Refractory Adult Acute Lymphoblastic Leukemia 7 91272 -NCIT:C142812 Refractory B Acute Lymphoblastic Leukemia 7 91273 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 91274 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 91275 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 91276 -NCIT:C150510 Refractory T Acute Lymphoblastic Leukemia 7 91277 -NCIT:C151977 Refractory Burkitt Leukemia 6 91278 -NCIT:C157475 Refractory Monomorphic Post-Transplant Lymphoproliferative Disorder 6 91279 -NCIT:C157697 Refractory B-Cell Prolymphocytic Leukemia 6 91280 -NCIT:C171064 Refractory Hairy Cell Leukemia Variant 6 91281 -NCIT:C172282 Refractory Chronic Lymphocytic Leukemia/Small Lymphocytic Lymphoma 6 91282 -NCIT:C7886 Refractory Chronic Lymphocytic Leukemia 7 91283 -NCIT:C158152 Refractory Transformed Chronic Lymphocytic Leukemia 8 91284 -NCIT:C8846 Refractory Small Lymphocytic Lymphoma 7 91285 -NCIT:C173411 Refractory Mature T-Cell and NK-Cell Neoplasm 6 91286 -NCIT:C157691 Refractory T-Cell Prolymphocytic Leukemia 7 91287 -NCIT:C157693 Refractory Aggressive NK-Cell Leukemia 7 91288 -NCIT:C180986 Refractory T-Cell Large Granular Lymphocyte Leukemia 7 91289 -NCIT:C8689 Refractory Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 7 91290 -NCIT:C148129 Refractory Mycosis Fungoides and Sezary Syndrome 8 91291 -NCIT:C177000 Refractory Sezary Syndrome 9 91292 -NCIT:C8687 Refractory Mycosis Fungoides 9 91293 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 91294 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 8 91295 -NCIT:C157690 Refractory NK-Cell Lymphoma, Unclassifiable 8 91296 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 8 91297 -NCIT:C165791 Refractory Transformed T-cell Non-Hodgkin Lymphoma 8 91298 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 9 91299 -NCIT:C168779 Refractory Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 8 91300 -NCIT:C168781 Refractory Follicular T-Cell Lymphoma 8 91301 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 8 91302 -NCIT:C8658 Refractory Anaplastic Large Cell Lymphoma 8 91303 -NCIT:C162689 Refractory Systemic Anaplastic Large Cell Lymphoma 9 91304 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 91305 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 91306 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 91307 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 8 91308 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 8 91309 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 8 91310 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 91311 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 91312 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 91313 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 91314 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 91315 -NCIT:C8687 Refractory Mycosis Fungoides 9 91316 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 91317 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 91318 -NCIT:C7813 Refractory Plasma Cell Neoplasm 6 91319 -NCIT:C133731 Refractory Primary Amyloidosis 7 91320 -NCIT:C174055 Refractory AL Amyloidosis 8 91321 -NCIT:C7024 Refractory Plasma Cell Myeloma 7 91322 -NCIT:C178375 Triple-Class Refractory Plasma Cell Myeloma 8 91323 -NCIT:C8030 Refractory Hairy Cell Leukemia 6 91324 -NCIT:C8696 Refractory T Lymphoblastic Leukemia/Lymphoma 6 91325 -NCIT:C150510 Refractory T Acute Lymphoblastic Leukemia 7 91326 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 7 91327 -NCIT:C27907 B-Cell Neoplasm 5 91328 -NCIT:C188021 B-Cell Malignant Neoplasm 6 91329 -NCIT:C148065 Advanced B-Cell Malignant Neoplasm 7 91330 -NCIT:C171264 Advanced Diffuse Large B-Cell Lymphoma 8 91331 -NCIT:C172359 Advanced Follicular Lymphoma 8 91332 -NCIT:C172360 Advanced Marginal Zone Lymphoma 8 91333 -NCIT:C27911 Chronic Lymphocytic Leukemia/Small Lymphocytic Lymphoma 7 91334 -NCIT:C131873 Recurrent Chronic Lymphocytic Leukemia/Small Lymphocytic Lymphoma 8 91335 -NCIT:C8154 Recurrent Small Lymphocytic Lymphoma 9 91336 -NCIT:C8645 Recurrent Chronic Lymphocytic Leukemia 9 91337 -NCIT:C158151 Recurrent Transformed Chronic Lymphocytic Leukemia 10 91338 -NCIT:C172282 Refractory Chronic Lymphocytic Leukemia/Small Lymphocytic Lymphoma 8 91339 -NCIT:C7886 Refractory Chronic Lymphocytic Leukemia 9 91340 -NCIT:C158152 Refractory Transformed Chronic Lymphocytic Leukemia 10 91341 -NCIT:C8846 Refractory Small Lymphocytic Lymphoma 9 91342 -NCIT:C3163 Chronic Lymphocytic Leukemia 8 91343 -NCIT:C141206 Chronic Lymphocytic Leukemia- Modified Rai Staging System 9 91344 -NCIT:C7847 Stage 0 Chronic Lymphocytic Leukemia 10 91345 -NCIT:C7874 Stage I Chronic Lymphocytic Leukemia 10 91346 -NCIT:C7875 Stage II Chronic Lymphocytic Leukemia 10 91347 -NCIT:C7876 Stage III Chronic Lymphocytic Leukemia 10 91348 -NCIT:C8646 Stage IV Chronic Lymphocytic Leukemia 10 91349 -NCIT:C141208 Chronic Lymphocytic Leukemia- Binet Staging System 9 91350 -NCIT:C141209 Stage A Chronic Lymphocytic Leukemia 10 91351 -NCIT:C141210 Stage B Chronic Lymphocytic Leukemia 10 91352 -NCIT:C141211 Stage C Chronic Lymphocytic Leukemia 10 91353 -NCIT:C157624 Transformed Chronic Lymphocytic Leukemia to Diffuse Large B-Cell Lymphoma 9 91354 -NCIT:C158151 Recurrent Transformed Chronic Lymphocytic Leukemia 10 91355 -NCIT:C158152 Refractory Transformed Chronic Lymphocytic Leukemia 10 91356 -NCIT:C36272 Chronic Lymphocytic Leukemia with Plasmacytoid Differentiation 9 91357 -NCIT:C37202 Chronic Lymphocytic Leukemia with Immunoglobulin Heavy Chain Variable-Region Gene Somatic Hypermutation 9 91358 -NCIT:C37205 Chronic Lymphocytic Leukemia with Unmutated Immunoglobulin Heavy Chain Variable-Region Gene 9 91359 -NCIT:C45264 Cutaneous Chronic Lymphocytic Leukemia 9 91360 -NCIT:C7176 Aleukemic Chronic Lymphocytic Leukemia 9 91361 -NCIT:C7300 Splenic Manifestation of Chronic Lymphocytic Leukemia 9 91362 -NCIT:C7886 Refractory Chronic Lymphocytic Leukemia 9 91363 -NCIT:C158152 Refractory Transformed Chronic Lymphocytic Leukemia 10 91364 -NCIT:C8645 Recurrent Chronic Lymphocytic Leukemia 9 91365 -NCIT:C158151 Recurrent Transformed Chronic Lymphocytic Leukemia 10 91366 -NCIT:C37201 Chronic Lymphocytic Leukemia/Small Lymphocytic Lymphoma with Immunoglobulin Heavy Chain Variable-Region Gene Somatic Hypermutation 8 91367 -NCIT:C37202 Chronic Lymphocytic Leukemia with Immunoglobulin Heavy Chain Variable-Region Gene Somatic Hypermutation 9 91368 -NCIT:C37203 Small Lymphocytic Lymphoma with Immunoglobulin Heavy Chain Variable-Region Gene Somatic Hypermutation 9 91369 -NCIT:C37204 Chronic Lymphocytic Leukemia/Small Lymphocytic Lymphoma with Unmutated Immunoglobulin Heavy Chain Variable-Region Gene 8 91370 -NCIT:C37205 Chronic Lymphocytic Leukemia with Unmutated Immunoglobulin Heavy Chain Variable-Region Gene 9 91371 -NCIT:C37206 Small Lymphocytic Lymphoma with Unmutated Immunoglobulin Heavy Chain Variable-Region Gene 9 91372 -NCIT:C7540 Small Lymphocytic Lymphoma 8 91373 -NCIT:C141259 Small Lymphocytic Lymphoma by Ann Arbor Stage 9 91374 -NCIT:C8070 Ann Arbor Stage I Small Lymphocytic Lymphoma 10 91375 -NCIT:C8115 Ann Arbor Stage II Small Lymphocytic Lymphoma 10 91376 -NCIT:C8128 Ann Arbor Stage III Small Lymphocytic Lymphoma 10 91377 -NCIT:C8141 Ann Arbor Stage IV Small Lymphocytic Lymphoma 10 91378 -NCIT:C161605 Prostate Small Lymphocytic Lymphoma 9 91379 -NCIT:C36273 Small Lymphocytic Lymphoma with Plasmacytoid Differentiation 9 91380 -NCIT:C37203 Small Lymphocytic Lymphoma with Immunoglobulin Heavy Chain Variable-Region Gene Somatic Hypermutation 9 91381 -NCIT:C37206 Small Lymphocytic Lymphoma with Unmutated Immunoglobulin Heavy Chain Variable-Region Gene 9 91382 -NCIT:C7304 Splenic Small Lymphocytic Lymphoma 9 91383 -NCIT:C8154 Recurrent Small Lymphocytic Lymphoma 9 91384 -NCIT:C8846 Refractory Small Lymphocytic Lymphoma 9 91385 -NCIT:C3180 Plasma Cell Leukemia 7 91386 -NCIT:C191432 Secondary Plasma Cell Leukemia 8 91387 -NCIT:C3242 Plasma Cell Myeloma 7 91388 -NCIT:C139008 Plasma Cell Myeloma by DS Stage 8 91389 -NCIT:C7850 DS Stage I Plasma Cell Myeloma 9 91390 -NCIT:C181859 DS Stage IA Plasma Cell Myeloma 10 91391 -NCIT:C181860 DS Stage IB Plasma Cell Myeloma 10 91392 -NCIT:C7851 DS Stage II Plasma Cell Myeloma 9 91393 -NCIT:C181862 DS Stage IIA Plasma Cell Myeloma 10 91394 -NCIT:C181864 DS Stage IIB Plasma Cell Myeloma 10 91395 -NCIT:C7852 DS Stage III Plasma Cell Myeloma 9 91396 -NCIT:C181865 DS Stage IIIA Plasma Cell Myeloma 10 91397 -NCIT:C181866 DS Stage IIIB Plasma Cell Myeloma 10 91398 -NCIT:C139009 Plasma Cell Myeloma by ISS Stage 8 91399 -NCIT:C70658 ISS Stage I Plasma Cell Myeloma 9 91400 -NCIT:C70659 ISS Stage II Plasma Cell Myeloma 9 91401 -NCIT:C70660 ISS Stage III Plasma Cell Myeloma 9 91402 -NCIT:C141393 Plasma Cell Myeloma by RISS Stage 8 91403 -NCIT:C141394 RISS Stage I Plasma Cell Myeloma 9 91404 -NCIT:C141395 RISS Stage II Plasma Cell Myeloma 9 91405 -NCIT:C141396 RISS Stage III Plasma Cell Myeloma 9 91406 -NCIT:C185149 Extramedullary Disease in Plasma Cell Myeloma 8 91407 -NCIT:C185037 Extramedullary Disease in Plasma Cell Myeloma Involving the Central Nervous System 9 91408 -NCIT:C185039 Extramedullary Disease in Plasma Cell Myeloma Involving the Leptomeninges 10 91409 -NCIT:C185151 Extramedullary Disease in Plasma Cell Myeloma Involving the Spleen 9 91410 -NCIT:C185152 Extramedullary Disease in Plasma Cell Myeloma Involving the Liver 9 91411 -NCIT:C185153 Extramedullary Disease in Plasma Cell Myeloma Involving the Kidney 9 91412 -NCIT:C185155 Extramedullary Disease in Plasma Cell Myeloma Involving the Skin 9 91413 -NCIT:C185321 Extramedullary Disease in Plasma Cell Myeloma Involving the Lung 9 91414 -NCIT:C188074 Extramedullary Disease in Plasma Cell Myeloma Involving the Uterine Corpus 9 91415 -NCIT:C4734 Non-Secretory Plasma Cell Myeloma 8 91416 -NCIT:C7024 Refractory Plasma Cell Myeloma 8 91417 -NCIT:C178375 Triple-Class Refractory Plasma Cell Myeloma 9 91418 -NCIT:C7025 Recurrent Plasma Cell Myeloma 8 91419 -NCIT:C7149 Smoldering Plasma Cell Myeloma 8 91420 -NCIT:C7150 Indolent Plasma Cell Myeloma 8 91421 -NCIT:C7242 Plasma Cell Myeloma Post-Transplant Lymphoproliferative Disorder 8 91422 -NCIT:C7765 Osteosclerotic Plasma Cell Myeloma 8 91423 -NCIT:C3457 B-Cell Non-Hodgkin Lymphoma 7 91424 -NCIT:C141243 B-Cell Non-Hodgkin Lymphoma by Ann Arbor Stage 8 91425 -NCIT:C141250 B Lymphoblastic Lymphoma by Ann Arbor Stage 9 91426 -NCIT:C8871 Ann Arbor Stage I B Lymphoblastic Lymphoma 10 91427 -NCIT:C8872 Ann Arbor Stage III B Lymphoblastic Lymphoma 10 91428 -NCIT:C8873 Ann Arbor Stage IV B Lymphoblastic Lymphoma 10 91429 -NCIT:C8937 Ann Arbor Stage II B Lymphoblastic Lymphoma 10 91430 -NCIT:C141253 Burkitt Lymphoma by Ann Arbor Stage 9 91431 -NCIT:C5084 Ann Arbor Stage IV Burkitt Lymphoma 10 91432 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 11 91433 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 11 91434 -NCIT:C8848 Ann Arbor Stage I Burkitt Lymphoma 10 91435 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 11 91436 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 11 91437 -NCIT:C8849 Ann Arbor Stage II Burkitt Lymphoma 10 91438 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 11 91439 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 12 91440 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 12 91441 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 11 91442 -NCIT:C8850 Ann Arbor Stage III Burkitt Lymphoma 10 91443 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 11 91444 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 11 91445 -NCIT:C141254 Diffuse Large B-Cell Lymphoma by Ann Arbor Stage 9 91446 -NCIT:C141262 Primary Mediastinal (Thymic) Large B-Cell Lymphoma by Ann Arbor Stage 10 91447 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 91448 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 91449 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 91450 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 91451 -NCIT:C141263 Centroblastic Lymphoma by Ann Arbor Stage 10 91452 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 11 91453 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 11 91454 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 11 91455 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 11 91456 -NCIT:C8854 Ann Arbor Stage I Diffuse Large B-Cell Lymphoma 10 91457 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 11 91458 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 91459 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 11 91460 -NCIT:C8855 Ann Arbor Stage II Diffuse Large B-Cell Lymphoma 10 91461 -NCIT:C171158 Ann Arbor Stage IIX (Bulky) Diffuse Large B-Cell Lymphoma 11 91462 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 11 91463 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 12 91464 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 12 91465 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 91466 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 11 91467 -NCIT:C8856 Ann Arbor Stage III Diffuse Large B-Cell Lymphoma 10 91468 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 11 91469 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 91470 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 11 91471 -NCIT:C8857 Ann Arbor Stage IV Diffuse Large B-Cell Lymphoma 10 91472 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 11 91473 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 91474 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 11 91475 -NCIT:C141255 Follicular Lymphoma by Ann Arbor Stage 9 91476 -NCIT:C5006 Ann Arbor Stage IV Follicular Lymphoma 10 91477 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 11 91478 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 11 91479 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 11 91480 -NCIT:C8859 Ann Arbor Stage I Follicular Lymphoma 10 91481 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 11 91482 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 11 91483 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 11 91484 -NCIT:C8860 Ann Arbor Stage II Follicular Lymphoma 10 91485 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 11 91486 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 12 91487 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 12 91488 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 11 91489 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 12 91490 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 12 91491 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 11 91492 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 12 91493 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 12 91494 -NCIT:C8861 Ann Arbor Stage III Follicular Lymphoma 10 91495 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 11 91496 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 11 91497 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 11 91498 -NCIT:C141256 Lymphoplasmacytic Lymphoma by Ann Arbor Stage 9 91499 -NCIT:C8653 Ann Arbor Stage I Lymphoplasmacytic Lymphoma 10 91500 -NCIT:C8654 Ann Arbor Stage II Lymphoplasmacytic Lymphoma 10 91501 -NCIT:C8655 Ann Arbor Stage III Lymphoplasmacytic Lymphoma 10 91502 -NCIT:C8656 Ann Arbor Stage IV Lymphoplasmacytic Lymphoma 10 91503 -NCIT:C141257 Mantle Cell Lymphoma by Ann Arbor Stage 9 91504 -NCIT:C8465 Ann Arbor Stage I Mantle Cell Lymphoma 10 91505 -NCIT:C8483 Ann Arbor Stage III Mantle Cell Lymphoma 10 91506 -NCIT:C8486 Ann Arbor Stage IV Mantle Cell Lymphoma 10 91507 -NCIT:C9202 Ann Arbor Stage II Mantle Cell Lymphoma 10 91508 -NCIT:C8473 Ann Arbor Stage II Contiguous Mantle Cell Lymphoma 11 91509 -NCIT:C9198 Ann Arbor Stage II Non-Contiguous Mantle Cell Lymphoma 11 91510 -NCIT:C141258 Marginal Zone Lymphoma by Ann Arbor Stage 9 91511 -NCIT:C141260 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue by Ann Arbor Stage 10 91512 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 91513 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 91514 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 91515 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 91516 -NCIT:C141261 Nodal Marginal Zone Lymphoma by Ann Arbor Stage 10 91517 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 11 91518 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 11 91519 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 11 91520 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 11 91521 -NCIT:C68678 Ann Arbor Stage I Marginal Zone Lymphoma 10 91522 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 91523 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 11 91524 -NCIT:C68679 Ann Arbor Stage II Marginal Zone Lymphoma 10 91525 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 91526 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 11 91527 -NCIT:C68682 Ann Arbor Stage III Marginal Zone Lymphoma 10 91528 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 91529 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 11 91530 -NCIT:C68683 Ann Arbor Stage IV Marginal Zone Lymphoma 10 91531 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 91532 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 11 91533 -NCIT:C141259 Small Lymphocytic Lymphoma by Ann Arbor Stage 9 91534 -NCIT:C8070 Ann Arbor Stage I Small Lymphocytic Lymphoma 10 91535 -NCIT:C8115 Ann Arbor Stage II Small Lymphocytic Lymphoma 10 91536 -NCIT:C8128 Ann Arbor Stage III Small Lymphocytic Lymphoma 10 91537 -NCIT:C8141 Ann Arbor Stage IV Small Lymphocytic Lymphoma 10 91538 -NCIT:C27308 Ann Arbor Stage I B-Cell Non-Hodgkin Lymphoma 9 91539 -NCIT:C68678 Ann Arbor Stage I Marginal Zone Lymphoma 10 91540 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 91541 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 11 91542 -NCIT:C8070 Ann Arbor Stage I Small Lymphocytic Lymphoma 10 91543 -NCIT:C8465 Ann Arbor Stage I Mantle Cell Lymphoma 10 91544 -NCIT:C8653 Ann Arbor Stage I Lymphoplasmacytic Lymphoma 10 91545 -NCIT:C8848 Ann Arbor Stage I Burkitt Lymphoma 10 91546 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 11 91547 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 11 91548 -NCIT:C8854 Ann Arbor Stage I Diffuse Large B-Cell Lymphoma 10 91549 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 11 91550 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 91551 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 11 91552 -NCIT:C8859 Ann Arbor Stage I Follicular Lymphoma 10 91553 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 11 91554 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 11 91555 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 11 91556 -NCIT:C8871 Ann Arbor Stage I B Lymphoblastic Lymphoma 10 91557 -NCIT:C8843 Ann Arbor Stage II B-Cell Non-Hodgkin Lymphoma 9 91558 -NCIT:C68679 Ann Arbor Stage II Marginal Zone Lymphoma 10 91559 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 91560 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 11 91561 -NCIT:C8115 Ann Arbor Stage II Small Lymphocytic Lymphoma 10 91562 -NCIT:C8654 Ann Arbor Stage II Lymphoplasmacytic Lymphoma 10 91563 -NCIT:C8849 Ann Arbor Stage II Burkitt Lymphoma 10 91564 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 11 91565 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 12 91566 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 12 91567 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 11 91568 -NCIT:C8855 Ann Arbor Stage II Diffuse Large B-Cell Lymphoma 10 91569 -NCIT:C171158 Ann Arbor Stage IIX (Bulky) Diffuse Large B-Cell Lymphoma 11 91570 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 11 91571 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 12 91572 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 12 91573 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 91574 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 11 91575 -NCIT:C8860 Ann Arbor Stage II Follicular Lymphoma 10 91576 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 11 91577 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 12 91578 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 12 91579 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 11 91580 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 12 91581 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 12 91582 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 11 91583 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 12 91584 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 12 91585 -NCIT:C8937 Ann Arbor Stage II B Lymphoblastic Lymphoma 10 91586 -NCIT:C9202 Ann Arbor Stage II Mantle Cell Lymphoma 10 91587 -NCIT:C8473 Ann Arbor Stage II Contiguous Mantle Cell Lymphoma 11 91588 -NCIT:C9198 Ann Arbor Stage II Non-Contiguous Mantle Cell Lymphoma 11 91589 -NCIT:C8844 Ann Arbor Stage III B-Cell Non-Hodgkin Lymphoma 9 91590 -NCIT:C68682 Ann Arbor Stage III Marginal Zone Lymphoma 10 91591 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 91592 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 11 91593 -NCIT:C8128 Ann Arbor Stage III Small Lymphocytic Lymphoma 10 91594 -NCIT:C8483 Ann Arbor Stage III Mantle Cell Lymphoma 10 91595 -NCIT:C8655 Ann Arbor Stage III Lymphoplasmacytic Lymphoma 10 91596 -NCIT:C8850 Ann Arbor Stage III Burkitt Lymphoma 10 91597 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 11 91598 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 11 91599 -NCIT:C8856 Ann Arbor Stage III Diffuse Large B-Cell Lymphoma 10 91600 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 11 91601 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 91602 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 11 91603 -NCIT:C8861 Ann Arbor Stage III Follicular Lymphoma 10 91604 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 11 91605 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 11 91606 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 11 91607 -NCIT:C8872 Ann Arbor Stage III B Lymphoblastic Lymphoma 10 91608 -NCIT:C8845 Ann Arbor Stage IV B-Cell Non-Hodgkin Lymphoma 9 91609 -NCIT:C5006 Ann Arbor Stage IV Follicular Lymphoma 10 91610 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 11 91611 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 11 91612 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 11 91613 -NCIT:C5084 Ann Arbor Stage IV Burkitt Lymphoma 10 91614 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 11 91615 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 11 91616 -NCIT:C68683 Ann Arbor Stage IV Marginal Zone Lymphoma 10 91617 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 91618 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 11 91619 -NCIT:C8141 Ann Arbor Stage IV Small Lymphocytic Lymphoma 10 91620 -NCIT:C8486 Ann Arbor Stage IV Mantle Cell Lymphoma 10 91621 -NCIT:C8656 Ann Arbor Stage IV Lymphoplasmacytic Lymphoma 10 91622 -NCIT:C8857 Ann Arbor Stage IV Diffuse Large B-Cell Lymphoma 10 91623 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 11 91624 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 91625 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 11 91626 -NCIT:C8873 Ann Arbor Stage IV B Lymphoblastic Lymphoma 10 91627 -NCIT:C147948 Central Nervous System B-Cell Non-Hodgkin Lymphoma 8 91628 -NCIT:C71720 Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 91629 -NCIT:C129602 Central Nervous System Intravascular Large B-Cell Lymphoma 10 91630 -NCIT:C155797 Pituitary Gland Diffuse Large B-Cell Lymphoma 10 91631 -NCIT:C157067 Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 91632 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 91633 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 91634 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 10 91635 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 91636 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 10 91637 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 91638 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 10 91639 -NCIT:C95991 Dural Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 91640 -NCIT:C178541 Aggressive B-Cell Non-Hodgkin Lymphoma 8 91641 -NCIT:C131911 Burkitt-Like Lymphoma with 11q Aberration 9 91642 -NCIT:C178553 Recurrent Aggressive B-Cell Non-Hodgkin Lymphoma 9 91643 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 91644 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 91645 -NCIT:C5008 Recurrent Burkitt Lymphoma 10 91646 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 11 91647 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 11 91648 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 10 91649 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 11 91650 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 11 91651 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 10 91652 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 11 91653 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 11 91654 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 10 91655 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 10 91656 -NCIT:C178555 Refractory Aggressive B-Cell Non-Hodgkin Lymphoma 9 91657 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 91658 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 91659 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 10 91660 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 11 91661 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 11 91662 -NCIT:C8847 Refractory Burkitt Lymphoma 10 91663 -NCIT:C8862 Refractory Mantle Cell Lymphoma 10 91664 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 10 91665 -NCIT:C2912 Burkitt Lymphoma 9 91666 -NCIT:C141253 Burkitt Lymphoma by Ann Arbor Stage 10 91667 -NCIT:C5084 Ann Arbor Stage IV Burkitt Lymphoma 11 91668 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 12 91669 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 12 91670 -NCIT:C8848 Ann Arbor Stage I Burkitt Lymphoma 11 91671 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 12 91672 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 12 91673 -NCIT:C8849 Ann Arbor Stage II Burkitt Lymphoma 11 91674 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 12 91675 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 13 91676 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 13 91677 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 12 91678 -NCIT:C8850 Ann Arbor Stage III Burkitt Lymphoma 11 91679 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 12 91680 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 12 91681 -NCIT:C168651 Cutaneous Burkitt Lymphoma 10 91682 -NCIT:C188075 Kidney Burkitt Lymphoma 10 91683 -NCIT:C27409 Small Intestinal Burkitt Lymphoma 10 91684 -NCIT:C27410 Small Intestinal Atypical Burkitt/Burkitt-Like Lymphoma 11 91685 -NCIT:C27694 EBV-Related Burkitt Lymphoma 10 91686 -NCIT:C27122 Endemic Burkitt Lymphoma 11 91687 -NCIT:C27914 Sporadic Burkitt Lymphoma 10 91688 -NCIT:C27915 Immunodeficiency-Related Burkitt Lymphoma 10 91689 -NCIT:C7244 Burkitt Lymphoma Post-Transplant Lymphoproliferative Disorder 11 91690 -NCIT:C7245 Burkitt-Like Lymphoma Post-Transplant Lymphoproliferative Disorder 12 91691 -NCIT:C7255 Methotrexate-Related Burkitt Lymphoma 11 91692 -NCIT:C8286 AIDS-Related Burkitt Lymphoma 11 91693 -NCIT:C27857 AIDS-Related Burkitt Lymphoma with Plasmacytoid Differentiation 12 91694 -NCIT:C40376 Breast Burkitt Lymphoma 10 91695 -NCIT:C5008 Recurrent Burkitt Lymphoma 10 91696 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 11 91697 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 11 91698 -NCIT:C5251 Gastric Burkitt Lymphoma 10 91699 -NCIT:C6917 Atypical Burkitt/Burkitt-Like Lymphoma 10 91700 -NCIT:C27410 Small Intestinal Atypical Burkitt/Burkitt-Like Lymphoma 11 91701 -NCIT:C7245 Burkitt-Like Lymphoma Post-Transplant Lymphoproliferative Disorder 11 91702 -NCIT:C7188 Classical Burkitt Lymphoma 10 91703 -NCIT:C7189 Burkitt Lymphoma with Plasmacytoid Differentiation 10 91704 -NCIT:C27857 AIDS-Related Burkitt Lymphoma with Plasmacytoid Differentiation 11 91705 -NCIT:C7309 Splenic Burkitt Lymphoma 10 91706 -NCIT:C8847 Refractory Burkitt Lymphoma 10 91707 -NCIT:C9062 Adult Burkitt Lymphoma 10 91708 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 11 91709 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 11 91710 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 12 91711 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 12 91712 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 11 91713 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 11 91714 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 11 91715 -NCIT:C9095 Childhood Burkitt Lymphoma 10 91716 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 11 91717 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 11 91718 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 11 91719 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 11 91720 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 11 91721 -NCIT:C96502 Colorectal Burkitt Lymphoma 10 91722 -NCIT:C27465 Colon Burkitt Lymphoma 11 91723 -NCIT:C3460 Grade 3 Follicular Lymphoma 9 91724 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 10 91725 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 11 91726 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 11 91727 -NCIT:C6859 Grade 3 Cutaneous Follicular Lymphoma 10 91728 -NCIT:C7191 Grade 3a Follicular Lymphoma 10 91729 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 11 91730 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 11 91731 -NCIT:C7192 Grade 3b Follicular Lymphoma 10 91732 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 11 91733 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 11 91734 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 10 91735 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 10 91736 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 11 91737 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 11 91738 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 10 91739 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 10 91740 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 10 91741 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 11 91742 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 11 91743 -NCIT:C36081 Diffuse Large B-Cell Lymphoma Activated B-Cell Type 9 91744 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 91745 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 91746 -NCIT:C4337 Mantle Cell Lymphoma 9 91747 -NCIT:C141257 Mantle Cell Lymphoma by Ann Arbor Stage 10 91748 -NCIT:C8465 Ann Arbor Stage I Mantle Cell Lymphoma 11 91749 -NCIT:C8483 Ann Arbor Stage III Mantle Cell Lymphoma 11 91750 -NCIT:C8486 Ann Arbor Stage IV Mantle Cell Lymphoma 11 91751 -NCIT:C9202 Ann Arbor Stage II Mantle Cell Lymphoma 11 91752 -NCIT:C8473 Ann Arbor Stage II Contiguous Mantle Cell Lymphoma 12 91753 -NCIT:C9198 Ann Arbor Stage II Non-Contiguous Mantle Cell Lymphoma 12 91754 -NCIT:C161604 Prostate Mantle Cell Lymphoma 10 91755 -NCIT:C181210 Parotid Gland Mantle Cell Lymphoma 10 91756 -NCIT:C188080 Tonsillar Mantle Cell Lymphoma 10 91757 -NCIT:C27440 Gastric Mantle Cell Lymphoma 10 91758 -NCIT:C27441 Small Intestinal Mantle Cell Lymphoma 10 91759 -NCIT:C39747 Pleomorphic Variant Mantle Cell Lymphoma 10 91760 -NCIT:C45266 Cutaneous Mantle Cell Lymphoma 10 91761 -NCIT:C7229 Blastoid Variant Mantle Cell Lymphoma 10 91762 -NCIT:C7306 Splenic Mantle Cell Lymphoma 10 91763 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 10 91764 -NCIT:C8862 Refractory Mantle Cell Lymphoma 10 91765 -NCIT:C96505 Colorectal Mantle Cell Lymphoma 10 91766 -NCIT:C27411 Colon Mantle Cell Lymphoma 11 91767 -NCIT:C45194 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 91768 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 91769 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 91770 -NCIT:C45231 Diffuse Large B-Cell Lymphoma Unclassifiable 9 91771 -NCIT:C7212 AIDS-Related Diffuse Large B-cell Lymphoma 9 91772 -NCIT:C27858 AIDS-Related Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 10 91773 -NCIT:C27859 AIDS-Related Plasmablastic Lymphoma 10 91774 -NCIT:C38160 AIDS-Related Plasmablastic Lymphoma of Mucosa Site 11 91775 -NCIT:C9016 AIDS-Related Plasmablastic Lymphoma of the Oral Mucosa 12 91776 -NCIT:C8285 AIDS-Related Immunoblastic Lymphoma 10 91777 -NCIT:C9017 AIDS-Related Primary Effusion Lymphoma 10 91778 -NCIT:C7246 Diffuse Large B-Cell Lymphoma Post-Transplant Lymphoproliferative Disorder 9 91779 -NCIT:C7247 Anaplastic Lymphoma Post-Transplant Lymphoproliferative Disorder 10 91780 -NCIT:C7248 Centroblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 10 91781 -NCIT:C7249 Immunoblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 10 91782 -NCIT:C7933 Grade III Lymphomatoid Granulomatosis 9 91783 -NCIT:C115150 Adult Grade III Lymphomatoid Granulomatosis 10 91784 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 11 91785 -NCIT:C115204 Childhood Grade III Lymphomatoid Granulomatosis 10 91786 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 11 91787 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 10 91788 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 11 91789 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 11 91790 -NCIT:C8868 B Lymphoblastic Lymphoma 9 91791 -NCIT:C141250 B Lymphoblastic Lymphoma by Ann Arbor Stage 10 91792 -NCIT:C8871 Ann Arbor Stage I B Lymphoblastic Lymphoma 11 91793 -NCIT:C8872 Ann Arbor Stage III B Lymphoblastic Lymphoma 11 91794 -NCIT:C8873 Ann Arbor Stage IV B Lymphoblastic Lymphoma 11 91795 -NCIT:C8937 Ann Arbor Stage II B Lymphoblastic Lymphoma 11 91796 -NCIT:C7209 Childhood B Lymphoblastic Lymphoma 10 91797 -NCIT:C7310 Splenic B Lymphoblastic Lymphoma 10 91798 -NCIT:C7338 Adult B Lymphoblastic Lymphoma 10 91799 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 10 91800 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 10 91801 -NCIT:C7056 Mature B-Cell Non-Hodgkin Lymphoma 8 91802 -NCIT:C131911 Burkitt-Like Lymphoma with 11q Aberration 9 91803 -NCIT:C133494 Large B-Cell Lymphoma with IRF4 Rearrangement 9 91804 -NCIT:C188458 Childhood Large B-Cell Lymphoma with IRF4 Rearrangement 10 91805 -NCIT:C139681 Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 9 91806 -NCIT:C160232 Recurrent Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 10 91807 -NCIT:C160240 Refractory Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 10 91808 -NCIT:C165799 Recurrent Mature B-Cell Non-Hodgkin Lymphoma 9 91809 -NCIT:C158149 Recurrent Transformed B-Cell Non-Hodgkin Lymphoma 10 91810 -NCIT:C160232 Recurrent Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 11 91811 -NCIT:C186483 Recurrent Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 11 91812 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 12 91813 -NCIT:C5007 Recurrent Follicular Lymphoma 10 91814 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 11 91815 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 11 91816 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 11 91817 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 12 91818 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 12 91819 -NCIT:C5008 Recurrent Burkitt Lymphoma 10 91820 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 11 91821 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 11 91822 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 10 91823 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 11 91824 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 91825 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 11 91826 -NCIT:C8154 Recurrent Small Lymphocytic Lymphoma 10 91827 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 10 91828 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 10 91829 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 11 91830 -NCIT:C8852 Recurrent Diffuse Large B-Cell Lymphoma 10 91831 -NCIT:C138015 Recurrent Extranodal Diffuse Large B-cell Lymphoma 11 91832 -NCIT:C138025 Recurrent Intravascular Large B-Cell Lymphoma 11 91833 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 91834 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 91835 -NCIT:C156696 Recurrent T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 11 91836 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 11 91837 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 12 91838 -NCIT:C157679 Recurrent Primary Effusion Lymphoma 11 91839 -NCIT:C157683 Recurrent Plasmablastic Lymphoma 11 91840 -NCIT:C160229 Recurrent High Grade B-Cell Lymphoma 11 91841 -NCIT:C151980 Recurrent High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 12 91842 -NCIT:C162451 Recurrent High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 12 91843 -NCIT:C188788 Recurrent High Grade B-Cell Lymphoma, Not Otherwise Specified 12 91844 -NCIT:C165240 Recurrent Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 91845 -NCIT:C160230 Recurrent Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 12 91846 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 12 91847 -NCIT:C182035 Recurrent Immunoblastic Lymphoma 12 91848 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 13 91849 -NCIT:C8926 Recurrent Centroblastic Lymphoma 12 91850 -NCIT:C183140 Recurrent Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 11 91851 -NCIT:C188790 Recurrent ALK-Positive Large B-Cell Lymphoma 11 91852 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 11 91853 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 12 91854 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 12 91855 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 91856 -NCIT:C171299 Indolent B-Cell Non-Hodgkin Lymphoma 9 91857 -NCIT:C175451 Primary Uveal Non-Hodgkin Lymphoma 10 91858 -NCIT:C175464 Primary Choroidal Non-Hodgkin Lymphoma 11 91859 -NCIT:C175466 Primary Ciliary Body Non-Hodgkin Lymphoma 11 91860 -NCIT:C175467 Primary Iris Non-Hodgkin Lymphoma 11 91861 -NCIT:C3212 Lymphoplasmacytic Lymphoma 10 91862 -NCIT:C141256 Lymphoplasmacytic Lymphoma by Ann Arbor Stage 11 91863 -NCIT:C8653 Ann Arbor Stage I Lymphoplasmacytic Lymphoma 12 91864 -NCIT:C8654 Ann Arbor Stage II Lymphoplasmacytic Lymphoma 12 91865 -NCIT:C8655 Ann Arbor Stage III Lymphoplasmacytic Lymphoma 12 91866 -NCIT:C8656 Ann Arbor Stage IV Lymphoplasmacytic Lymphoma 12 91867 -NCIT:C7305 Splenic Lymphoplasmacytic Lymphoma 11 91868 -NCIT:C80307 Waldenstrom Macroglobulinemia 11 91869 -NCIT:C115212 Familial Waldenstrom Macroglobulinemia 12 91870 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 12 91871 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 12 91872 -NCIT:C155910 Smoldering Waldenstrom Macroglobulinemia 12 91873 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 11 91874 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 12 91875 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 11 91876 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 12 91877 -NCIT:C3465 Grade 1 Follicular Lymphoma 10 91878 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 11 91879 -NCIT:C7220 Grade 1 Cutaneous Follicular Lymphoma 11 91880 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 11 91881 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 11 91882 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 12 91883 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 12 91884 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 11 91885 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 11 91886 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 11 91887 -NCIT:C37203 Small Lymphocytic Lymphoma with Immunoglobulin Heavy Chain Variable-Region Gene Somatic Hypermutation 10 91888 -NCIT:C4341 Marginal Zone Lymphoma 10 91889 -NCIT:C141258 Marginal Zone Lymphoma by Ann Arbor Stage 11 91890 -NCIT:C141260 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue by Ann Arbor Stage 12 91891 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 13 91892 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 13 91893 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 13 91894 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 13 91895 -NCIT:C141261 Nodal Marginal Zone Lymphoma by Ann Arbor Stage 12 91896 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 13 91897 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 13 91898 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 13 91899 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 13 91900 -NCIT:C68678 Ann Arbor Stage I Marginal Zone Lymphoma 12 91901 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 13 91902 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 13 91903 -NCIT:C68679 Ann Arbor Stage II Marginal Zone Lymphoma 12 91904 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 13 91905 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 13 91906 -NCIT:C68682 Ann Arbor Stage III Marginal Zone Lymphoma 12 91907 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 13 91908 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 13 91909 -NCIT:C68683 Ann Arbor Stage IV Marginal Zone Lymphoma 12 91910 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 13 91911 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 13 91912 -NCIT:C143085 Refractory Marginal Zone Lymphoma 11 91913 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 12 91914 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 91915 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 12 91916 -NCIT:C172360 Advanced Marginal Zone Lymphoma 11 91917 -NCIT:C3898 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 91918 -NCIT:C123394 Childhood Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 91919 -NCIT:C141260 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue by Ann Arbor Stage 12 91920 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 13 91921 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 13 91922 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 13 91923 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 13 91924 -NCIT:C172844 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue Involving the Digestive System 12 91925 -NCIT:C5266 Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 13 91926 -NCIT:C27763 Helicobacter Pylori-Associated Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 14 91927 -NCIT:C5635 Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 13 91928 -NCIT:C45166 Campylobacter Jejuni-Associated Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 14 91929 -NCIT:C5768 Liver Mucosa-Associated Lymphoid Tissue Lymphoma 13 91930 -NCIT:C95626 Esophageal Mucosa-Associated Lymphoid Tissue Lymphoma 13 91931 -NCIT:C96506 Colorectal Mucosa-Associated Lymphoid Tissue Lymphoma 13 91932 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 14 91933 -NCIT:C173693 Salivary Gland Mucosa-Associated Lymphoid Tissue Lymphoma 12 91934 -NCIT:C35687 Parotid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 13 91935 -NCIT:C181910 Endometrial Mucosa-Associated Lymphoid Tissue Lymphoma 12 91936 -NCIT:C35688 Breast Mucosa-Associated Lymphoid Tissue Lymphoma 12 91937 -NCIT:C35689 Ocular Adnexal Mucosa-Associated Lymphoid Tissue Lymphoma 12 91938 -NCIT:C175431 Conjunctival Mucosa-Associated Lymphoid Tissue Lymphoma 13 91939 -NCIT:C175482 Lacrimal System Mucosa-Associated Lymphoid Tissue Lymphoma 13 91940 -NCIT:C175483 Lacrimal Gland Mucosa-Associated Lymphoid Tissue Lymphoma 14 91941 -NCIT:C175484 Lacrimal Drainage System Mucosa-Associated Lymphoid Tissue Lymphoma 14 91942 -NCIT:C182357 Diffusion Restriction 13 91943 -NCIT:C44960 Chlamydia Psittaci-Associated Ocular Adnexal Mucosa-Associated Lymphoid Tissue Lymphoma 13 91944 -NCIT:C39878 Bladder Mucosa-Associated Lymphoid Tissue Lymphoma 12 91945 -NCIT:C45380 Thymic Mucosa-Associated Lymphoid Tissue Lymphoma 12 91946 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 91947 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 91948 -NCIT:C5264 Lung Mucosa-Associated Lymphoid Tissue Lymphoma 12 91949 -NCIT:C7230 Primary Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 91950 -NCIT:C45163 Borrelia Burgdoferi-Associated Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 13 91951 -NCIT:C7601 Thyroid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 12 91952 -NCIT:C95991 Dural Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 91953 -NCIT:C4663 Splenic Marginal Zone Lymphoma 11 91954 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 12 91955 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 12 91956 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 11 91957 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 12 91958 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 91959 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 12 91960 -NCIT:C8863 Nodal Marginal Zone Lymphoma 11 91961 -NCIT:C141261 Nodal Marginal Zone Lymphoma by Ann Arbor Stage 12 91962 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 13 91963 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 13 91964 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 13 91965 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 13 91966 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 12 91967 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 12 91968 -NCIT:C80299 Pediatric Nodal Marginal Zone Lymphoma 12 91969 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 10 91970 -NCIT:C7264 Diffuse Follicular Lymphoma 10 91971 -NCIT:C7194 Grade 2 Diffuse Follicular Lymphoma 11 91972 -NCIT:C9464 Grade 1 Diffuse Follicular Lymphoma 11 91973 -NCIT:C8968 Grade 2 Follicular Lymphoma 10 91974 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 11 91975 -NCIT:C7219 Grade 2 Cutaneous Follicular Lymphoma 11 91976 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 11 91977 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 11 91978 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 12 91979 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 12 91980 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 11 91981 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 11 91982 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 11 91983 -NCIT:C179717 Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 9 91984 -NCIT:C156699 Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 10 91985 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 11 91986 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 11 91987 -NCIT:C157625 Transformed Small Lymphocytic Lymphoma to Diffuse Large B-Cell Lymphoma 10 91988 -NCIT:C185134 Transformed Lymphoplasmacytic Lymphoma to Diffuse Large B-Cell Lymphoma 10 91989 -NCIT:C185135 Transformed Waldenstrom Macroglobulinemia to Diffuse Large B-Cell Lymphoma 11 91990 -NCIT:C186483 Recurrent Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 10 91991 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 11 91992 -NCIT:C186484 Refractory Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 10 91993 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 11 91994 -NCIT:C2912 Burkitt Lymphoma 9 91995 -NCIT:C141253 Burkitt Lymphoma by Ann Arbor Stage 10 91996 -NCIT:C5084 Ann Arbor Stage IV Burkitt Lymphoma 11 91997 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 12 91998 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 12 91999 -NCIT:C8848 Ann Arbor Stage I Burkitt Lymphoma 11 92000 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 12 92001 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 12 92002 -NCIT:C8849 Ann Arbor Stage II Burkitt Lymphoma 11 92003 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 12 92004 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 13 92005 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 13 92006 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 12 92007 -NCIT:C8850 Ann Arbor Stage III Burkitt Lymphoma 11 92008 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 12 92009 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 12 92010 -NCIT:C168651 Cutaneous Burkitt Lymphoma 10 92011 -NCIT:C188075 Kidney Burkitt Lymphoma 10 92012 -NCIT:C27409 Small Intestinal Burkitt Lymphoma 10 92013 -NCIT:C27410 Small Intestinal Atypical Burkitt/Burkitt-Like Lymphoma 11 92014 -NCIT:C27694 EBV-Related Burkitt Lymphoma 10 92015 -NCIT:C27122 Endemic Burkitt Lymphoma 11 92016 -NCIT:C27914 Sporadic Burkitt Lymphoma 10 92017 -NCIT:C27915 Immunodeficiency-Related Burkitt Lymphoma 10 92018 -NCIT:C7244 Burkitt Lymphoma Post-Transplant Lymphoproliferative Disorder 11 92019 -NCIT:C7245 Burkitt-Like Lymphoma Post-Transplant Lymphoproliferative Disorder 12 92020 -NCIT:C7255 Methotrexate-Related Burkitt Lymphoma 11 92021 -NCIT:C8286 AIDS-Related Burkitt Lymphoma 11 92022 -NCIT:C27857 AIDS-Related Burkitt Lymphoma with Plasmacytoid Differentiation 12 92023 -NCIT:C40376 Breast Burkitt Lymphoma 10 92024 -NCIT:C5008 Recurrent Burkitt Lymphoma 10 92025 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 11 92026 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 11 92027 -NCIT:C5251 Gastric Burkitt Lymphoma 10 92028 -NCIT:C6917 Atypical Burkitt/Burkitt-Like Lymphoma 10 92029 -NCIT:C27410 Small Intestinal Atypical Burkitt/Burkitt-Like Lymphoma 11 92030 -NCIT:C7245 Burkitt-Like Lymphoma Post-Transplant Lymphoproliferative Disorder 11 92031 -NCIT:C7188 Classical Burkitt Lymphoma 10 92032 -NCIT:C7189 Burkitt Lymphoma with Plasmacytoid Differentiation 10 92033 -NCIT:C27857 AIDS-Related Burkitt Lymphoma with Plasmacytoid Differentiation 11 92034 -NCIT:C7309 Splenic Burkitt Lymphoma 10 92035 -NCIT:C8847 Refractory Burkitt Lymphoma 10 92036 -NCIT:C9062 Adult Burkitt Lymphoma 10 92037 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 11 92038 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 11 92039 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 12 92040 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 12 92041 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 11 92042 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 11 92043 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 11 92044 -NCIT:C9095 Childhood Burkitt Lymphoma 10 92045 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 11 92046 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 11 92047 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 11 92048 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 11 92049 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 11 92050 -NCIT:C96502 Colorectal Burkitt Lymphoma 10 92051 -NCIT:C27465 Colon Burkitt Lymphoma 11 92052 -NCIT:C3082 Heavy Chain Disease 9 92053 -NCIT:C3083 Gamma Heavy Chain Disease 10 92054 -NCIT:C3132 Alpha Heavy Chain Disease 10 92055 -NCIT:C3892 Mu Heavy Chain Disease 10 92056 -NCIT:C3209 Follicular Lymphoma 9 92057 -NCIT:C138185 Duodenal-Type Follicular Lymphoma 10 92058 -NCIT:C138186 Predominantly Diffuse Follicular Lymphoma with 1p36 Deletion 10 92059 -NCIT:C141255 Follicular Lymphoma by Ann Arbor Stage 10 92060 -NCIT:C5006 Ann Arbor Stage IV Follicular Lymphoma 11 92061 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 12 92062 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 12 92063 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 12 92064 -NCIT:C8859 Ann Arbor Stage I Follicular Lymphoma 11 92065 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 12 92066 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 12 92067 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 12 92068 -NCIT:C8860 Ann Arbor Stage II Follicular Lymphoma 11 92069 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 12 92070 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 13 92071 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 13 92072 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 12 92073 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 13 92074 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 13 92075 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 12 92076 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 13 92077 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 13 92078 -NCIT:C8861 Ann Arbor Stage III Follicular Lymphoma 11 92079 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 12 92080 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 12 92081 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 12 92082 -NCIT:C150589 Testicular Follicular Lymphoma 10 92083 -NCIT:C156410 Thyroid Gland Follicular Lymphoma 10 92084 -NCIT:C161603 Prostate Follicular Lymphoma 10 92085 -NCIT:C172359 Advanced Follicular Lymphoma 10 92086 -NCIT:C173715 Salivary Gland Follicular Lymphoma 10 92087 -NCIT:C173716 Parotid Gland Follicular Lymphoma 11 92088 -NCIT:C175430 Conjunctival Follicular Lymphoma 10 92089 -NCIT:C175488 Lacrimal Gland Follicular Lymphoma 10 92090 -NCIT:C181211 Lung Follicular Lymphoma 10 92091 -NCIT:C3460 Grade 3 Follicular Lymphoma 10 92092 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 11 92093 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 12 92094 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 12 92095 -NCIT:C6859 Grade 3 Cutaneous Follicular Lymphoma 11 92096 -NCIT:C7191 Grade 3a Follicular Lymphoma 11 92097 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 12 92098 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 12 92099 -NCIT:C7192 Grade 3b Follicular Lymphoma 11 92100 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 12 92101 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 12 92102 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 11 92103 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 11 92104 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 12 92105 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 12 92106 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 11 92107 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 11 92108 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 11 92109 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 12 92110 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 12 92111 -NCIT:C3465 Grade 1 Follicular Lymphoma 10 92112 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 11 92113 -NCIT:C7220 Grade 1 Cutaneous Follicular Lymphoma 11 92114 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 11 92115 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 11 92116 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 12 92117 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 12 92118 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 11 92119 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 11 92120 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 11 92121 -NCIT:C37209 Diffuse Blastoid B-Cell Lymphoma 10 92122 -NCIT:C40377 Breast Follicular Lymphoma 10 92123 -NCIT:C5007 Recurrent Follicular Lymphoma 10 92124 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 11 92125 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 11 92126 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 11 92127 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 12 92128 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 12 92129 -NCIT:C7218 Cutaneous Follicular Lymphoma 10 92130 -NCIT:C6859 Grade 3 Cutaneous Follicular Lymphoma 11 92131 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 11 92132 -NCIT:C7219 Grade 2 Cutaneous Follicular Lymphoma 11 92133 -NCIT:C7220 Grade 1 Cutaneous Follicular Lymphoma 11 92134 -NCIT:C7254 Methotrexate-Associated Follicular Lymphoma 10 92135 -NCIT:C7264 Diffuse Follicular Lymphoma 10 92136 -NCIT:C7194 Grade 2 Diffuse Follicular Lymphoma 11 92137 -NCIT:C9464 Grade 1 Diffuse Follicular Lymphoma 11 92138 -NCIT:C7307 Splenic Follicular Lymphoma 10 92139 -NCIT:C80297 Pediatric-Type Follicular Lymphoma 10 92140 -NCIT:C80298 Intestinal Follicular Lymphoma 10 92141 -NCIT:C96056 Small Intestinal Follicular Lymphoma 11 92142 -NCIT:C8858 Refractory Follicular Lymphoma 10 92143 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 11 92144 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 11 92145 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 11 92146 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 12 92147 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 12 92148 -NCIT:C8968 Grade 2 Follicular Lymphoma 10 92149 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 11 92150 -NCIT:C7219 Grade 2 Cutaneous Follicular Lymphoma 11 92151 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 11 92152 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 11 92153 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 12 92154 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 12 92155 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 11 92156 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 11 92157 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 11 92158 -NCIT:C4337 Mantle Cell Lymphoma 9 92159 -NCIT:C141257 Mantle Cell Lymphoma by Ann Arbor Stage 10 92160 -NCIT:C8465 Ann Arbor Stage I Mantle Cell Lymphoma 11 92161 -NCIT:C8483 Ann Arbor Stage III Mantle Cell Lymphoma 11 92162 -NCIT:C8486 Ann Arbor Stage IV Mantle Cell Lymphoma 11 92163 -NCIT:C9202 Ann Arbor Stage II Mantle Cell Lymphoma 11 92164 -NCIT:C8473 Ann Arbor Stage II Contiguous Mantle Cell Lymphoma 12 92165 -NCIT:C9198 Ann Arbor Stage II Non-Contiguous Mantle Cell Lymphoma 12 92166 -NCIT:C161604 Prostate Mantle Cell Lymphoma 10 92167 -NCIT:C181210 Parotid Gland Mantle Cell Lymphoma 10 92168 -NCIT:C188080 Tonsillar Mantle Cell Lymphoma 10 92169 -NCIT:C27440 Gastric Mantle Cell Lymphoma 10 92170 -NCIT:C27441 Small Intestinal Mantle Cell Lymphoma 10 92171 -NCIT:C39747 Pleomorphic Variant Mantle Cell Lymphoma 10 92172 -NCIT:C45266 Cutaneous Mantle Cell Lymphoma 10 92173 -NCIT:C7229 Blastoid Variant Mantle Cell Lymphoma 10 92174 -NCIT:C7306 Splenic Mantle Cell Lymphoma 10 92175 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 10 92176 -NCIT:C8862 Refractory Mantle Cell Lymphoma 10 92177 -NCIT:C96505 Colorectal Mantle Cell Lymphoma 10 92178 -NCIT:C27411 Colon Mantle Cell Lymphoma 11 92179 -NCIT:C6858 Primary Cutaneous B-Cell Non-Hodgkin Lymphoma 9 92180 -NCIT:C45193 Primary Cutaneous Diffuse Large B-Cell Lymphoma 10 92181 -NCIT:C45194 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 92182 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 12 92183 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 12 92184 -NCIT:C45213 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Other 11 92185 -NCIT:C45214 Primary Cutaneous Intravascular Large B-Cell Lymphoma 12 92186 -NCIT:C45215 Primary Cutaneous T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 12 92187 -NCIT:C45216 Primary Cutaneous Plasmablastic Lymphoma 12 92188 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 10 92189 -NCIT:C7230 Primary Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 92190 -NCIT:C45163 Borrelia Burgdoferi-Associated Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 92191 -NCIT:C7228 Refractory Mature B-Cell Non-Hodgkin Lymphoma 9 92192 -NCIT:C143085 Refractory Marginal Zone Lymphoma 10 92193 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 11 92194 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 92195 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 11 92196 -NCIT:C158150 Refractory Transformed B-Cell Non-Hodgkin Lymphoma 10 92197 -NCIT:C160240 Refractory Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 11 92198 -NCIT:C186484 Refractory Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 11 92199 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 12 92200 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 10 92201 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 11 92202 -NCIT:C8846 Refractory Small Lymphocytic Lymphoma 10 92203 -NCIT:C8847 Refractory Burkitt Lymphoma 10 92204 -NCIT:C8853 Refractory Diffuse Large B-Cell Lymphoma 10 92205 -NCIT:C138018 Refractory Extranodal Diffuse Large B-cell Lymphoma 11 92206 -NCIT:C138026 Refractory Intravascular Large B-Cell Lymphoma 11 92207 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 92208 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 92209 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 11 92210 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 12 92211 -NCIT:C157678 Refractory T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 11 92212 -NCIT:C157680 Refractory Primary Effusion Lymphoma 11 92213 -NCIT:C157684 Refractory Plasmablastic Lymphoma 11 92214 -NCIT:C160233 Refractory High Grade B-Cell Lymphoma 11 92215 -NCIT:C151979 Refractory High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 12 92216 -NCIT:C162453 Refractory High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 12 92217 -NCIT:C188789 Refractory High Grade B-Cell Lymphoma, Not Otherwise Specified 12 92218 -NCIT:C165241 Refractory Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 92219 -NCIT:C160238 Refractory Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 12 92220 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 12 92221 -NCIT:C182034 Refractory Immunoblastic Lymphoma 12 92222 -NCIT:C8927 Refractory Centroblastic Lymphoma 12 92223 -NCIT:C183142 Refractory Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 11 92224 -NCIT:C188791 Refractory ALK-Positive Large B-Cell Lymphoma 11 92225 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 92226 -NCIT:C8858 Refractory Follicular Lymphoma 10 92227 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 11 92228 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 11 92229 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 11 92230 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 12 92231 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 12 92232 -NCIT:C8862 Refractory Mantle Cell Lymphoma 10 92233 -NCIT:C7540 Small Lymphocytic Lymphoma 9 92234 -NCIT:C141259 Small Lymphocytic Lymphoma by Ann Arbor Stage 10 92235 -NCIT:C8070 Ann Arbor Stage I Small Lymphocytic Lymphoma 11 92236 -NCIT:C8115 Ann Arbor Stage II Small Lymphocytic Lymphoma 11 92237 -NCIT:C8128 Ann Arbor Stage III Small Lymphocytic Lymphoma 11 92238 -NCIT:C8141 Ann Arbor Stage IV Small Lymphocytic Lymphoma 11 92239 -NCIT:C161605 Prostate Small Lymphocytic Lymphoma 10 92240 -NCIT:C36273 Small Lymphocytic Lymphoma with Plasmacytoid Differentiation 10 92241 -NCIT:C37203 Small Lymphocytic Lymphoma with Immunoglobulin Heavy Chain Variable-Region Gene Somatic Hypermutation 10 92242 -NCIT:C37206 Small Lymphocytic Lymphoma with Unmutated Immunoglobulin Heavy Chain Variable-Region Gene 10 92243 -NCIT:C7304 Splenic Small Lymphocytic Lymphoma 10 92244 -NCIT:C8154 Recurrent Small Lymphocytic Lymphoma 10 92245 -NCIT:C8846 Refractory Small Lymphocytic Lymphoma 10 92246 -NCIT:C80309 Splenic Diffuse Red Pulp Small B-Cell Lymphoma 9 92247 -NCIT:C8851 Diffuse Large B-Cell Lymphoma 9 92248 -NCIT:C138211 High Grade B-Cell Lymphoma 10 92249 -NCIT:C138195 High Grade B-Cell Lymphoma with MYC and BCL2 and/or BCL6 Rearrangements 11 92250 -NCIT:C125904 High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 12 92251 -NCIT:C151979 Refractory High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 13 92252 -NCIT:C151980 Recurrent High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 13 92253 -NCIT:C131913 High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 12 92254 -NCIT:C162451 Recurrent High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 13 92255 -NCIT:C162453 Refractory High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 13 92256 -NCIT:C160229 Recurrent High Grade B-Cell Lymphoma 11 92257 -NCIT:C151980 Recurrent High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 12 92258 -NCIT:C162451 Recurrent High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 12 92259 -NCIT:C188788 Recurrent High Grade B-Cell Lymphoma, Not Otherwise Specified 12 92260 -NCIT:C160233 Refractory High Grade B-Cell Lymphoma 11 92261 -NCIT:C151979 Refractory High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 12 92262 -NCIT:C162453 Refractory High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 12 92263 -NCIT:C188789 Refractory High Grade B-Cell Lymphoma, Not Otherwise Specified 12 92264 -NCIT:C80291 High Grade B-Cell Lymphoma, Not Otherwise Specified 11 92265 -NCIT:C188788 Recurrent High Grade B-Cell Lymphoma, Not Otherwise Specified 12 92266 -NCIT:C188789 Refractory High Grade B-Cell Lymphoma, Not Otherwise Specified 12 92267 -NCIT:C96057 Small Intestinal High Grade B-Cell Lymphoma, Not Otherwise Specified 12 92268 -NCIT:C96501 Colorectal High Grade B-Cell Lymphoma, Not Otherwise Specified 12 92269 -NCIT:C138320 HHV8-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 92270 -NCIT:C138899 Double-Expressor Lymphoma 10 92271 -NCIT:C141254 Diffuse Large B-Cell Lymphoma by Ann Arbor Stage 10 92272 -NCIT:C141262 Primary Mediastinal (Thymic) Large B-Cell Lymphoma by Ann Arbor Stage 11 92273 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 12 92274 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 12 92275 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 12 92276 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 12 92277 -NCIT:C141263 Centroblastic Lymphoma by Ann Arbor Stage 11 92278 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 12 92279 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 12 92280 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 12 92281 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 12 92282 -NCIT:C8854 Ann Arbor Stage I Diffuse Large B-Cell Lymphoma 11 92283 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 12 92284 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 12 92285 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 12 92286 -NCIT:C8855 Ann Arbor Stage II Diffuse Large B-Cell Lymphoma 11 92287 -NCIT:C171158 Ann Arbor Stage IIX (Bulky) Diffuse Large B-Cell Lymphoma 12 92288 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 12 92289 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 13 92290 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 13 92291 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 12 92292 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 12 92293 -NCIT:C8856 Ann Arbor Stage III Diffuse Large B-Cell Lymphoma 11 92294 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 12 92295 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 12 92296 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 12 92297 -NCIT:C8857 Ann Arbor Stage IV Diffuse Large B-Cell Lymphoma 11 92298 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 12 92299 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 12 92300 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 12 92301 -NCIT:C150396 Fibrin-Associated Diffuse Large B-Cell Lymphoma 10 92302 -NCIT:C183141 Cardiac Fibrin-Associated Diffuse Large B-Cell Lymphoma 11 92303 -NCIT:C161602 Prostate Diffuse Large B-Cell Lymphoma 10 92304 -NCIT:C162467 Testicular Diffuse Large B-Cell Lymphoma 10 92305 -NCIT:C171264 Advanced Diffuse Large B-Cell Lymphoma 10 92306 -NCIT:C172850 Digestive System Diffuse Large B-Cell Lymphoma 10 92307 -NCIT:C5253 Gastric Diffuse Large B-Cell Lymphoma 11 92308 -NCIT:C95625 Esophageal Diffuse Large B-Cell Lymphoma 11 92309 -NCIT:C96055 Small Intestinal Diffuse Large B-Cell Lymphoma 11 92310 -NCIT:C96057 Small Intestinal High Grade B-Cell Lymphoma, Not Otherwise Specified 12 92311 -NCIT:C96503 Colorectal Diffuse Large B-Cell Lymphoma 11 92312 -NCIT:C96501 Colorectal High Grade B-Cell Lymphoma, Not Otherwise Specified 12 92313 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 12 92314 -NCIT:C96843 Liver Diffuse Large B-Cell Lymphoma 11 92315 -NCIT:C173717 Salivary Gland Diffuse Large B-Cell Lymphoma 10 92316 -NCIT:C173719 Parotid Gland Diffuse Large B-Cell Lymphoma 11 92317 -NCIT:C173811 Primary Bone Diffuse Large B-Cell Lymphoma 10 92318 -NCIT:C175433 Conjunctival Diffuse Large B-Cell Lymphoma 10 92319 -NCIT:C175485 Lacrimal System Diffuse Large B-Cell Lymphoma 10 92320 -NCIT:C175486 Lacrimal Gland Diffuse Large B-Cell Lymphoma 11 92321 -NCIT:C175487 Lacrimal Drainage System Diffuse Large B-Cell Lymphoma 11 92322 -NCIT:C183146 Cardiac Diffuse Large B-Cell Lymphoma 10 92323 -NCIT:C183141 Cardiac Fibrin-Associated Diffuse Large B-Cell Lymphoma 11 92324 -NCIT:C188072 Tonsillar Diffuse Large B-Cell Lymphoma 10 92325 -NCIT:C188081 Nasal Cavity Diffuse Large B-Cell Lymphoma 10 92326 -NCIT:C27856 Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 10 92327 -NCIT:C27858 AIDS-Related Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 11 92328 -NCIT:C40375 Breast Diffuse Large B-Cell Lymphoma 10 92329 -NCIT:C4342 Intravascular Large B-Cell Lymphoma 10 92330 -NCIT:C129602 Central Nervous System Intravascular Large B-Cell Lymphoma 11 92331 -NCIT:C138025 Recurrent Intravascular Large B-Cell Lymphoma 11 92332 -NCIT:C138026 Refractory Intravascular Large B-Cell Lymphoma 11 92333 -NCIT:C183121 Lung Intravascular Large B-Cell Lymphoma 11 92334 -NCIT:C45214 Primary Cutaneous Intravascular Large B-Cell Lymphoma 11 92335 -NCIT:C45193 Primary Cutaneous Diffuse Large B-Cell Lymphoma 10 92336 -NCIT:C45194 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 92337 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 12 92338 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 12 92339 -NCIT:C45213 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Other 11 92340 -NCIT:C45214 Primary Cutaneous Intravascular Large B-Cell Lymphoma 12 92341 -NCIT:C45215 Primary Cutaneous T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 12 92342 -NCIT:C45216 Primary Cutaneous Plasmablastic Lymphoma 12 92343 -NCIT:C45605 Lung Diffuse Large B-Cell Lymphoma 10 92344 -NCIT:C183121 Lung Intravascular Large B-Cell Lymphoma 11 92345 -NCIT:C6046 Thyroid Gland Diffuse Large B-Cell Lymphoma 10 92346 -NCIT:C7263 Thyroid Gland Immunoblastic Lymphoma 11 92347 -NCIT:C6073 Paranasal Sinus Diffuse Large B-Cell Lymphoma 10 92348 -NCIT:C63533 Kidney Diffuse Large B-Cell Lymphoma 10 92349 -NCIT:C6915 Primary Effusion Lymphoma 10 92350 -NCIT:C150406 Extracavitary Primary Effusion Lymphoma 11 92351 -NCIT:C150407 Body Cavity Primary Effusion Lymphoma 11 92352 -NCIT:C183135 Pleural Primary Effusion Lymphoma 12 92353 -NCIT:C183136 Pericardial Primary Effusion Lymphoma 12 92354 -NCIT:C183137 Peritoneal Primary Effusion Lymphoma 12 92355 -NCIT:C157679 Recurrent Primary Effusion Lymphoma 11 92356 -NCIT:C157680 Refractory Primary Effusion Lymphoma 11 92357 -NCIT:C9017 AIDS-Related Primary Effusion Lymphoma 11 92358 -NCIT:C71720 Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 10 92359 -NCIT:C129602 Central Nervous System Intravascular Large B-Cell Lymphoma 11 92360 -NCIT:C155797 Pituitary Gland Diffuse Large B-Cell Lymphoma 11 92361 -NCIT:C157067 Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 92362 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 12 92363 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 12 92364 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 11 92365 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 12 92366 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 11 92367 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 12 92368 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 11 92369 -NCIT:C7212 AIDS-Related Diffuse Large B-cell Lymphoma 10 92370 -NCIT:C27858 AIDS-Related Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 11 92371 -NCIT:C27859 AIDS-Related Plasmablastic Lymphoma 11 92372 -NCIT:C38160 AIDS-Related Plasmablastic Lymphoma of Mucosa Site 12 92373 -NCIT:C9016 AIDS-Related Plasmablastic Lymphoma of the Oral Mucosa 13 92374 -NCIT:C8285 AIDS-Related Immunoblastic Lymphoma 11 92375 -NCIT:C9017 AIDS-Related Primary Effusion Lymphoma 11 92376 -NCIT:C7224 Plasmablastic Lymphoma 10 92377 -NCIT:C157683 Recurrent Plasmablastic Lymphoma 11 92378 -NCIT:C157684 Refractory Plasmablastic Lymphoma 11 92379 -NCIT:C27859 AIDS-Related Plasmablastic Lymphoma 11 92380 -NCIT:C38160 AIDS-Related Plasmablastic Lymphoma of Mucosa Site 12 92381 -NCIT:C9016 AIDS-Related Plasmablastic Lymphoma of the Oral Mucosa 13 92382 -NCIT:C38159 Plasmablastic Lymphoma of Mucosa Site 11 92383 -NCIT:C38160 AIDS-Related Plasmablastic Lymphoma of Mucosa Site 12 92384 -NCIT:C9016 AIDS-Related Plasmablastic Lymphoma of the Oral Mucosa 13 92385 -NCIT:C80290 Plasmablastic Lymphoma of the Oral Mucosa 12 92386 -NCIT:C9016 AIDS-Related Plasmablastic Lymphoma of the Oral Mucosa 13 92387 -NCIT:C45216 Primary Cutaneous Plasmablastic Lymphoma 11 92388 -NCIT:C7225 ALK-Positive Large B-Cell Lymphoma 10 92389 -NCIT:C188790 Recurrent ALK-Positive Large B-Cell Lymphoma 11 92390 -NCIT:C188791 Refractory ALK-Positive Large B-Cell Lymphoma 11 92391 -NCIT:C7246 Diffuse Large B-Cell Lymphoma Post-Transplant Lymphoproliferative Disorder 10 92392 -NCIT:C7247 Anaplastic Lymphoma Post-Transplant Lymphoproliferative Disorder 11 92393 -NCIT:C7248 Centroblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 11 92394 -NCIT:C7249 Immunoblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 11 92395 -NCIT:C7253 Methotrexate-Associated Diffuse Large B-Cell Lymphoma 10 92396 -NCIT:C7308 Splenic Diffuse Large B-Cell Lymphoma 10 92397 -NCIT:C7615 Adult Diffuse Large B-Cell Lymphoma 10 92398 -NCIT:C115150 Adult Grade III Lymphomatoid Granulomatosis 11 92399 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 12 92400 -NCIT:C188457 Adult EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 92401 -NCIT:C7873 Adult Immunoblastic Lymphoma 11 92402 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 12 92403 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 12 92404 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 13 92405 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 13 92406 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 12 92407 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 12 92408 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 12 92409 -NCIT:C7616 Childhood Diffuse Large B-Cell Lymphoma 10 92410 -NCIT:C115204 Childhood Grade III Lymphomatoid Granulomatosis 11 92411 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 12 92412 -NCIT:C188455 Childhood Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 92413 -NCIT:C188456 Childhood EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 92414 -NCIT:C9079 Childhood Immunoblastic Lymphoma 11 92415 -NCIT:C7933 Grade III Lymphomatoid Granulomatosis 10 92416 -NCIT:C115150 Adult Grade III Lymphomatoid Granulomatosis 11 92417 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 12 92418 -NCIT:C115204 Childhood Grade III Lymphomatoid Granulomatosis 11 92419 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 12 92420 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 11 92421 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 12 92422 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 12 92423 -NCIT:C80280 Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 92424 -NCIT:C148392 Diffuse Large B-Cell Lymphoma, Not Otherwise Specified Molecular Subtypes 11 92425 -NCIT:C148394 MCD Diffuse Large B-Cell Lymphoma 12 92426 -NCIT:C148395 BN2 Diffuse Large B-Cell Lymphoma 12 92427 -NCIT:C148396 N1 Diffuse Large B-Cell Lymphoma 12 92428 -NCIT:C148398 EZB Diffuse Large B-Cell Lymphoma 12 92429 -NCIT:C187445 ST2 Diffuse Large B-Cell Lymphoma 12 92430 -NCIT:C187447 A53 Diffuse Large B-Cell Lymphoma 12 92431 -NCIT:C165240 Recurrent Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 92432 -NCIT:C160230 Recurrent Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 12 92433 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 12 92434 -NCIT:C182035 Recurrent Immunoblastic Lymphoma 12 92435 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 13 92436 -NCIT:C8926 Recurrent Centroblastic Lymphoma 12 92437 -NCIT:C165241 Refractory Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 92438 -NCIT:C160238 Refractory Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 12 92439 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 12 92440 -NCIT:C182034 Refractory Immunoblastic Lymphoma 12 92441 -NCIT:C8927 Refractory Centroblastic Lymphoma 12 92442 -NCIT:C3461 Immunoblastic Lymphoma 11 92443 -NCIT:C182034 Refractory Immunoblastic Lymphoma 12 92444 -NCIT:C182035 Recurrent Immunoblastic Lymphoma 12 92445 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 13 92446 -NCIT:C7249 Immunoblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 12 92447 -NCIT:C7263 Thyroid Gland Immunoblastic Lymphoma 12 92448 -NCIT:C7873 Adult Immunoblastic Lymphoma 12 92449 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 13 92450 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 13 92451 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 14 92452 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 14 92453 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 13 92454 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 13 92455 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 13 92456 -NCIT:C8285 AIDS-Related Immunoblastic Lymphoma 12 92457 -NCIT:C9079 Childhood Immunoblastic Lymphoma 12 92458 -NCIT:C4074 Centroblastic Lymphoma 11 92459 -NCIT:C141263 Centroblastic Lymphoma by Ann Arbor Stage 12 92460 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 13 92461 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 13 92462 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 13 92463 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 13 92464 -NCIT:C7248 Centroblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 12 92465 -NCIT:C8926 Recurrent Centroblastic Lymphoma 12 92466 -NCIT:C8927 Refractory Centroblastic Lymphoma 12 92467 -NCIT:C45219 Diffuse Large B-Cell Lymphoma, Not Otherwise Specified by Gene Expression Profile 11 92468 -NCIT:C36080 Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 12 92469 -NCIT:C160230 Recurrent Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 13 92470 -NCIT:C160238 Refractory Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 13 92471 -NCIT:C36081 Diffuse Large B-Cell Lymphoma Activated B-Cell Type 12 92472 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 13 92473 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 13 92474 -NCIT:C45231 Diffuse Large B-Cell Lymphoma Unclassifiable 12 92475 -NCIT:C6916 Anaplastic Lymphoma 11 92476 -NCIT:C7247 Anaplastic Lymphoma Post-Transplant Lymphoproliferative Disorder 12 92477 -NCIT:C80281 EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 92478 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 92479 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 92480 -NCIT:C188456 Childhood EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 92481 -NCIT:C188457 Adult EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 92482 -NCIT:C80289 Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 10 92483 -NCIT:C183140 Recurrent Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 11 92484 -NCIT:C183142 Refractory Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 11 92485 -NCIT:C45691 Pyothorax-Associated Lymphoma 11 92486 -NCIT:C8852 Recurrent Diffuse Large B-Cell Lymphoma 10 92487 -NCIT:C138015 Recurrent Extranodal Diffuse Large B-cell Lymphoma 11 92488 -NCIT:C138025 Recurrent Intravascular Large B-Cell Lymphoma 11 92489 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 92490 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 92491 -NCIT:C156696 Recurrent T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 11 92492 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 11 92493 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 12 92494 -NCIT:C157679 Recurrent Primary Effusion Lymphoma 11 92495 -NCIT:C157683 Recurrent Plasmablastic Lymphoma 11 92496 -NCIT:C160229 Recurrent High Grade B-Cell Lymphoma 11 92497 -NCIT:C151980 Recurrent High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 12 92498 -NCIT:C162451 Recurrent High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 12 92499 -NCIT:C188788 Recurrent High Grade B-Cell Lymphoma, Not Otherwise Specified 12 92500 -NCIT:C165240 Recurrent Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 92501 -NCIT:C160230 Recurrent Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 12 92502 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 12 92503 -NCIT:C182035 Recurrent Immunoblastic Lymphoma 12 92504 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 13 92505 -NCIT:C8926 Recurrent Centroblastic Lymphoma 12 92506 -NCIT:C183140 Recurrent Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 11 92507 -NCIT:C188790 Recurrent ALK-Positive Large B-Cell Lymphoma 11 92508 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 11 92509 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 12 92510 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 12 92511 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 92512 -NCIT:C8853 Refractory Diffuse Large B-Cell Lymphoma 10 92513 -NCIT:C138018 Refractory Extranodal Diffuse Large B-cell Lymphoma 11 92514 -NCIT:C138026 Refractory Intravascular Large B-Cell Lymphoma 11 92515 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 92516 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 92517 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 11 92518 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 12 92519 -NCIT:C157678 Refractory T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 11 92520 -NCIT:C157680 Refractory Primary Effusion Lymphoma 11 92521 -NCIT:C157684 Refractory Plasmablastic Lymphoma 11 92522 -NCIT:C160233 Refractory High Grade B-Cell Lymphoma 11 92523 -NCIT:C151979 Refractory High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 12 92524 -NCIT:C162453 Refractory High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 12 92525 -NCIT:C188789 Refractory High Grade B-Cell Lymphoma, Not Otherwise Specified 12 92526 -NCIT:C165241 Refractory Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 92527 -NCIT:C160238 Refractory Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 12 92528 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 12 92529 -NCIT:C182034 Refractory Immunoblastic Lymphoma 12 92530 -NCIT:C8927 Refractory Centroblastic Lymphoma 12 92531 -NCIT:C183142 Refractory Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 11 92532 -NCIT:C188791 Refractory ALK-Positive Large B-Cell Lymphoma 11 92533 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 92534 -NCIT:C9280 Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 92535 -NCIT:C141262 Primary Mediastinal (Thymic) Large B-Cell Lymphoma by Ann Arbor Stage 11 92536 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 12 92537 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 12 92538 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 12 92539 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 12 92540 -NCIT:C188455 Childhood Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 92541 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 92542 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 92543 -NCIT:C9496 T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 10 92544 -NCIT:C156696 Recurrent T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 11 92545 -NCIT:C157678 Refractory T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 11 92546 -NCIT:C45215 Primary Cutaneous T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 11 92547 -NCIT:C8841 Recurrent B-Cell Non-Hodgkin Lymphoma 8 92548 -NCIT:C165799 Recurrent Mature B-Cell Non-Hodgkin Lymphoma 9 92549 -NCIT:C158149 Recurrent Transformed B-Cell Non-Hodgkin Lymphoma 10 92550 -NCIT:C160232 Recurrent Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 11 92551 -NCIT:C186483 Recurrent Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 11 92552 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 12 92553 -NCIT:C5007 Recurrent Follicular Lymphoma 10 92554 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 11 92555 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 11 92556 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 11 92557 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 12 92558 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 12 92559 -NCIT:C5008 Recurrent Burkitt Lymphoma 10 92560 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 11 92561 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 11 92562 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 10 92563 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 11 92564 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 92565 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 11 92566 -NCIT:C8154 Recurrent Small Lymphocytic Lymphoma 10 92567 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 10 92568 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 10 92569 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 11 92570 -NCIT:C8852 Recurrent Diffuse Large B-Cell Lymphoma 10 92571 -NCIT:C138015 Recurrent Extranodal Diffuse Large B-cell Lymphoma 11 92572 -NCIT:C138025 Recurrent Intravascular Large B-Cell Lymphoma 11 92573 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 92574 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 92575 -NCIT:C156696 Recurrent T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 11 92576 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 11 92577 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 12 92578 -NCIT:C157679 Recurrent Primary Effusion Lymphoma 11 92579 -NCIT:C157683 Recurrent Plasmablastic Lymphoma 11 92580 -NCIT:C160229 Recurrent High Grade B-Cell Lymphoma 11 92581 -NCIT:C151980 Recurrent High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 12 92582 -NCIT:C162451 Recurrent High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 12 92583 -NCIT:C188788 Recurrent High Grade B-Cell Lymphoma, Not Otherwise Specified 12 92584 -NCIT:C165240 Recurrent Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 92585 -NCIT:C160230 Recurrent Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 12 92586 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 12 92587 -NCIT:C182035 Recurrent Immunoblastic Lymphoma 12 92588 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 13 92589 -NCIT:C8926 Recurrent Centroblastic Lymphoma 12 92590 -NCIT:C183140 Recurrent Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 11 92591 -NCIT:C188790 Recurrent ALK-Positive Large B-Cell Lymphoma 11 92592 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 11 92593 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 12 92594 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 12 92595 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 92596 -NCIT:C178553 Recurrent Aggressive B-Cell Non-Hodgkin Lymphoma 9 92597 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 92598 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 92599 -NCIT:C5008 Recurrent Burkitt Lymphoma 10 92600 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 11 92601 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 11 92602 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 10 92603 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 11 92604 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 11 92605 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 10 92606 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 11 92607 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 11 92608 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 10 92609 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 10 92610 -NCIT:C183512 Recurrent Indolent B-Cell Non-Hodgkin Lymphoma 9 92611 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 10 92612 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 11 92613 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 92614 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 11 92615 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 10 92616 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 10 92617 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 10 92618 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 11 92619 -NCIT:C8842 Refractory B-Cell Non-Hodgkin Lymphoma 8 92620 -NCIT:C178555 Refractory Aggressive B-Cell Non-Hodgkin Lymphoma 9 92621 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 92622 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 92623 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 10 92624 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 11 92625 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 11 92626 -NCIT:C8847 Refractory Burkitt Lymphoma 10 92627 -NCIT:C8862 Refractory Mantle Cell Lymphoma 10 92628 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 10 92629 -NCIT:C183514 Refractory Indolent B-Cell Non-Hodgkin Lymphoma 9 92630 -NCIT:C143085 Refractory Marginal Zone Lymphoma 10 92631 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 11 92632 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 92633 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 11 92634 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 10 92635 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 10 92636 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 10 92637 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 11 92638 -NCIT:C7228 Refractory Mature B-Cell Non-Hodgkin Lymphoma 9 92639 -NCIT:C143085 Refractory Marginal Zone Lymphoma 10 92640 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 11 92641 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 92642 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 11 92643 -NCIT:C158150 Refractory Transformed B-Cell Non-Hodgkin Lymphoma 10 92644 -NCIT:C160240 Refractory Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 11 92645 -NCIT:C186484 Refractory Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 11 92646 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 12 92647 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 10 92648 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 11 92649 -NCIT:C8846 Refractory Small Lymphocytic Lymphoma 10 92650 -NCIT:C8847 Refractory Burkitt Lymphoma 10 92651 -NCIT:C8853 Refractory Diffuse Large B-Cell Lymphoma 10 92652 -NCIT:C138018 Refractory Extranodal Diffuse Large B-cell Lymphoma 11 92653 -NCIT:C138026 Refractory Intravascular Large B-Cell Lymphoma 11 92654 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 92655 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 92656 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 11 92657 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 12 92658 -NCIT:C157678 Refractory T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 11 92659 -NCIT:C157680 Refractory Primary Effusion Lymphoma 11 92660 -NCIT:C157684 Refractory Plasmablastic Lymphoma 11 92661 -NCIT:C160233 Refractory High Grade B-Cell Lymphoma 11 92662 -NCIT:C151979 Refractory High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 12 92663 -NCIT:C162453 Refractory High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 12 92664 -NCIT:C188789 Refractory High Grade B-Cell Lymphoma, Not Otherwise Specified 12 92665 -NCIT:C165241 Refractory Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 92666 -NCIT:C160238 Refractory Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 12 92667 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 12 92668 -NCIT:C182034 Refractory Immunoblastic Lymphoma 12 92669 -NCIT:C8927 Refractory Centroblastic Lymphoma 12 92670 -NCIT:C183142 Refractory Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 11 92671 -NCIT:C188791 Refractory ALK-Positive Large B-Cell Lymphoma 11 92672 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 92673 -NCIT:C8858 Refractory Follicular Lymphoma 10 92674 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 11 92675 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 11 92676 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 11 92677 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 12 92678 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 12 92679 -NCIT:C8862 Refractory Mantle Cell Lymphoma 10 92680 -NCIT:C96053 Small Intestinal B-Cell Non-Hodgkin Lymphoma 8 92681 -NCIT:C27409 Small Intestinal Burkitt Lymphoma 9 92682 -NCIT:C27410 Small Intestinal Atypical Burkitt/Burkitt-Like Lymphoma 10 92683 -NCIT:C27441 Small Intestinal Mantle Cell Lymphoma 9 92684 -NCIT:C3132 Alpha Heavy Chain Disease 9 92685 -NCIT:C5635 Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 9 92686 -NCIT:C45166 Campylobacter Jejuni-Associated Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 10 92687 -NCIT:C96055 Small Intestinal Diffuse Large B-Cell Lymphoma 9 92688 -NCIT:C96057 Small Intestinal High Grade B-Cell Lymphoma, Not Otherwise Specified 10 92689 -NCIT:C96056 Small Intestinal Follicular Lymphoma 9 92690 -NCIT:C4753 B-Cell Prolymphocytic Leukemia 7 92691 -NCIT:C157697 Refractory B-Cell Prolymphocytic Leukemia 8 92692 -NCIT:C158081 Recurrent B-Cell Prolymphocytic Leukemia 8 92693 -NCIT:C7299 Splenic Manifestation of B-Cell Prolymphocytic Leukemia 8 92694 -NCIT:C7237 Monomorphic B-Cell Post-Transplant Lymphoproliferative Disorder 7 92695 -NCIT:C7240 Plasma Cell Post-Transplant Lymphoproliferative Disorder 8 92696 -NCIT:C7241 Plasmacytoma-Like Post-Transplant Lymphoproliferative Disorder 9 92697 -NCIT:C7242 Plasma Cell Myeloma Post-Transplant Lymphoproliferative Disorder 9 92698 -NCIT:C7244 Burkitt Lymphoma Post-Transplant Lymphoproliferative Disorder 8 92699 -NCIT:C7245 Burkitt-Like Lymphoma Post-Transplant Lymphoproliferative Disorder 9 92700 -NCIT:C7246 Diffuse Large B-Cell Lymphoma Post-Transplant Lymphoproliferative Disorder 8 92701 -NCIT:C7247 Anaplastic Lymphoma Post-Transplant Lymphoproliferative Disorder 9 92702 -NCIT:C7248 Centroblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 9 92703 -NCIT:C7249 Immunoblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 9 92704 -NCIT:C7400 Burkitt Leukemia 7 92705 -NCIT:C151976 Recurrent Burkitt Leukemia 8 92706 -NCIT:C151977 Refractory Burkitt Leukemia 8 92707 -NCIT:C7952 Childhood Burkitt Leukemia 8 92708 -NCIT:C7954 Adult Burkitt Leukemia 8 92709 -NCIT:C7402 Hairy Cell Leukemia 7 92710 -NCIT:C142882 Recurrent Hairy Cell Leukemia 8 92711 -NCIT:C7301 Splenic Manifestation of Hairy Cell Leukemia 8 92712 -NCIT:C8029 Progressive Hairy Cell Leukemia Initial Treatment 8 92713 -NCIT:C8030 Refractory Hairy Cell Leukemia 8 92714 -NCIT:C80308 Splenic B-Cell Lymphoma/Leukemia, Unclassifiable 7 92715 -NCIT:C7401 Hairy Cell Leukemia Variant 8 92716 -NCIT:C171064 Refractory Hairy Cell Leukemia Variant 9 92717 -NCIT:C171065 Recurrent Hairy Cell Leukemia Variant 9 92718 -NCIT:C80309 Splenic Diffuse Red Pulp Small B-Cell Lymphoma 8 92719 -NCIT:C8936 B Lymphoblastic Leukemia/Lymphoma 7 92720 -NCIT:C188453 Childhood B Lymphoblastic Leukemia/Lymphoma 8 92721 -NCIT:C7209 Childhood B Lymphoblastic Lymphoma 9 92722 -NCIT:C9140 Childhood B Acute Lymphoblastic Leukemia 9 92723 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 10 92724 -NCIT:C45241 Cutaneous B Lymphoblastic Leukemia/Lymphoma 8 92725 -NCIT:C80326 B Lymphoblastic Leukemia/Lymphoma, Not Otherwise Specified 8 92726 -NCIT:C80328 B Lymphoblastic Leukemia/Lymphoma with Recurrent Genetic Abnormalities 8 92727 -NCIT:C129787 B Lymphoblastic Leukemia/Lymphoma with BCR-ABL1-Like Features 9 92728 -NCIT:C121974 B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 10 92729 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 11 92730 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 11 92731 -NCIT:C130039 B-Lymphoblastic Leukemia/Lymphoma with Intrachromosomal Amplification of Chromosome 21 9 92732 -NCIT:C130040 B Acute Lymphoblastic Leukemia with Intrachromosomal Amplification of Chromosome 21 10 92733 -NCIT:C190956 B Lymphoblastic Leukemia/Lymphoma with ETV6-RUNX1-Like Features 9 92734 -NCIT:C190957 B Acute Lymphoblastic Leukemia with ETV6-RUNX1-Like Features 10 92735 -NCIT:C80331 B Lymphoblastic Leukemia/Lymphoma with t(9;22)(q34.1;q11.2); BCR-ABL1 9 92736 -NCIT:C36312 B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 10 92737 -NCIT:C114819 Adult B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 11 92738 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 11 92739 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 11 92740 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 11 92741 -NCIT:C80332 B Lymphoblastic Leukemia/Lymphoma with t(v;11q23.3); MLL Rearranged 9 92742 -NCIT:C80342 B Acute Lymphoblastic Leukemia with t(v;11q23.3); MLL Rearranged 10 92743 -NCIT:C80334 B Lymphoblastic Leukemia/Lymphoma with t(12;21)(p13.2;q22.1); ETV6-RUNX1 9 92744 -NCIT:C80343 B Acute Lymphoblastic Leukemia with t(12;21)(p13.2;q22.1); ETV6-RUNX1 10 92745 -NCIT:C80335 B Lymphoblastic Leukemia/Lymphoma with Hyperdiploidy 9 92746 -NCIT:C80344 Hyperdiploid B Acute Lymphoblastic Leukemia 10 92747 -NCIT:C80338 B Lymphoblastic Leukemia/Lymphoma with Hypodiploidy 9 92748 -NCIT:C80345 Hypodiploid B Acute Lymphoblastic Leukemia 10 92749 -NCIT:C80340 B Lymphoblastic Leukemia/Lymphoma with t(5;14)(q31.1;q32.3); IL3-IGH 9 92750 -NCIT:C80346 B Acute Lymphoblastic Leukemia with t(5;14)(q31.1;q32.3); IL3-IGH 10 92751 -NCIT:C80341 B Lymphoblastic Leukemia/Lymphoma with t(1;19)(q23;p13.3); E2A-PBX1 (TCF3-PBX1) 9 92752 -NCIT:C80347 B Acute Lymphoblastic Leukemia with t(1;19)(q23;p13.3); E2A-PBX1 (TCF3-PBX1) 10 92753 -NCIT:C8644 B Acute Lymphoblastic Leukemia 8 92754 -NCIT:C121974 B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 9 92755 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 10 92756 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 10 92757 -NCIT:C128629 B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 9 92758 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 10 92759 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 10 92760 -NCIT:C130040 B Acute Lymphoblastic Leukemia with Intrachromosomal Amplification of Chromosome 21 9 92761 -NCIT:C142811 Recurrent B Acute Lymphoblastic Leukemia 9 92762 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 10 92763 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 10 92764 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 10 92765 -NCIT:C142812 Refractory B Acute Lymphoblastic Leukemia 9 92766 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 10 92767 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 10 92768 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 10 92769 -NCIT:C162776 B Acute Lymphoblastic Leukemia with t(4;11)(q21;23) 9 92770 -NCIT:C190847 B Acute Lymphoblastic Leukemia Associated with Down Syndrome 9 92771 -NCIT:C190957 B Acute Lymphoblastic Leukemia with ETV6-RUNX1-Like Features 9 92772 -NCIT:C36312 B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 92773 -NCIT:C114819 Adult B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 10 92774 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 10 92775 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 10 92776 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 10 92777 -NCIT:C80342 B Acute Lymphoblastic Leukemia with t(v;11q23.3); MLL Rearranged 9 92778 -NCIT:C80343 B Acute Lymphoblastic Leukemia with t(12;21)(p13.2;q22.1); ETV6-RUNX1 9 92779 -NCIT:C80344 Hyperdiploid B Acute Lymphoblastic Leukemia 9 92780 -NCIT:C80345 Hypodiploid B Acute Lymphoblastic Leukemia 9 92781 -NCIT:C80346 B Acute Lymphoblastic Leukemia with t(5;14)(q31.1;q32.3); IL3-IGH 9 92782 -NCIT:C80347 B Acute Lymphoblastic Leukemia with t(1;19)(q23;p13.3); E2A-PBX1 (TCF3-PBX1) 9 92783 -NCIT:C9140 Childhood B Acute Lymphoblastic Leukemia 9 92784 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 10 92785 -NCIT:C9143 Adult B Acute Lymphoblastic Leukemia 9 92786 -NCIT:C114819 Adult B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 10 92787 -NCIT:C8868 B Lymphoblastic Lymphoma 8 92788 -NCIT:C141250 B Lymphoblastic Lymphoma by Ann Arbor Stage 9 92789 -NCIT:C8871 Ann Arbor Stage I B Lymphoblastic Lymphoma 10 92790 -NCIT:C8872 Ann Arbor Stage III B Lymphoblastic Lymphoma 10 92791 -NCIT:C8873 Ann Arbor Stage IV B Lymphoblastic Lymphoma 10 92792 -NCIT:C8937 Ann Arbor Stage II B Lymphoblastic Lymphoma 10 92793 -NCIT:C7209 Childhood B Lymphoblastic Lymphoma 9 92794 -NCIT:C7310 Splenic B Lymphoblastic Lymphoma 9 92795 -NCIT:C7338 Adult B Lymphoblastic Lymphoma 9 92796 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 9 92797 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 9 92798 -NCIT:C9349 Plasmacytoma 7 92799 -NCIT:C118421 Anaplastic Plasmacytoma 8 92800 -NCIT:C4002 Extraosseous Plasmacytoma 8 92801 -NCIT:C162470 Testicular Plasmacytoma 9 92802 -NCIT:C173169 Sinonasal Plasmacytoma 9 92803 -NCIT:C185041 Splenic Plasmacytoma 9 92804 -NCIT:C185042 Liver Plasmacytoma 9 92805 -NCIT:C185043 Lung Plasmacytoma 9 92806 -NCIT:C185044 Cutaneous Plasmacytoma 9 92807 -NCIT:C6932 Solitary Plasmacytoma 8 92808 -NCIT:C6711 Chest Wall Solitary Plasmacytoma 9 92809 -NCIT:C7812 Solitary Plasmacytoma of Bone 9 92810 -NCIT:C185035 Multiple Solitary Plasmacytoma of Bone 10 92811 -NCIT:C27910 Mature B-Cell Neoplasm 6 92812 -NCIT:C27911 Chronic Lymphocytic Leukemia/Small Lymphocytic Lymphoma 7 92813 -NCIT:C131873 Recurrent Chronic Lymphocytic Leukemia/Small Lymphocytic Lymphoma 8 92814 -NCIT:C8154 Recurrent Small Lymphocytic Lymphoma 9 92815 -NCIT:C8645 Recurrent Chronic Lymphocytic Leukemia 9 92816 -NCIT:C158151 Recurrent Transformed Chronic Lymphocytic Leukemia 10 92817 -NCIT:C172282 Refractory Chronic Lymphocytic Leukemia/Small Lymphocytic Lymphoma 8 92818 -NCIT:C7886 Refractory Chronic Lymphocytic Leukemia 9 92819 -NCIT:C158152 Refractory Transformed Chronic Lymphocytic Leukemia 10 92820 -NCIT:C8846 Refractory Small Lymphocytic Lymphoma 9 92821 -NCIT:C3163 Chronic Lymphocytic Leukemia 8 92822 -NCIT:C141206 Chronic Lymphocytic Leukemia- Modified Rai Staging System 9 92823 -NCIT:C7847 Stage 0 Chronic Lymphocytic Leukemia 10 92824 -NCIT:C7874 Stage I Chronic Lymphocytic Leukemia 10 92825 -NCIT:C7875 Stage II Chronic Lymphocytic Leukemia 10 92826 -NCIT:C7876 Stage III Chronic Lymphocytic Leukemia 10 92827 -NCIT:C8646 Stage IV Chronic Lymphocytic Leukemia 10 92828 -NCIT:C141208 Chronic Lymphocytic Leukemia- Binet Staging System 9 92829 -NCIT:C141209 Stage A Chronic Lymphocytic Leukemia 10 92830 -NCIT:C141210 Stage B Chronic Lymphocytic Leukemia 10 92831 -NCIT:C141211 Stage C Chronic Lymphocytic Leukemia 10 92832 -NCIT:C157624 Transformed Chronic Lymphocytic Leukemia to Diffuse Large B-Cell Lymphoma 9 92833 -NCIT:C158151 Recurrent Transformed Chronic Lymphocytic Leukemia 10 92834 -NCIT:C158152 Refractory Transformed Chronic Lymphocytic Leukemia 10 92835 -NCIT:C36272 Chronic Lymphocytic Leukemia with Plasmacytoid Differentiation 9 92836 -NCIT:C37202 Chronic Lymphocytic Leukemia with Immunoglobulin Heavy Chain Variable-Region Gene Somatic Hypermutation 9 92837 -NCIT:C37205 Chronic Lymphocytic Leukemia with Unmutated Immunoglobulin Heavy Chain Variable-Region Gene 9 92838 -NCIT:C45264 Cutaneous Chronic Lymphocytic Leukemia 9 92839 -NCIT:C7176 Aleukemic Chronic Lymphocytic Leukemia 9 92840 -NCIT:C7300 Splenic Manifestation of Chronic Lymphocytic Leukemia 9 92841 -NCIT:C7886 Refractory Chronic Lymphocytic Leukemia 9 92842 -NCIT:C158152 Refractory Transformed Chronic Lymphocytic Leukemia 10 92843 -NCIT:C8645 Recurrent Chronic Lymphocytic Leukemia 9 92844 -NCIT:C158151 Recurrent Transformed Chronic Lymphocytic Leukemia 10 92845 -NCIT:C37201 Chronic Lymphocytic Leukemia/Small Lymphocytic Lymphoma with Immunoglobulin Heavy Chain Variable-Region Gene Somatic Hypermutation 8 92846 -NCIT:C37202 Chronic Lymphocytic Leukemia with Immunoglobulin Heavy Chain Variable-Region Gene Somatic Hypermutation 9 92847 -NCIT:C37203 Small Lymphocytic Lymphoma with Immunoglobulin Heavy Chain Variable-Region Gene Somatic Hypermutation 9 92848 -NCIT:C37204 Chronic Lymphocytic Leukemia/Small Lymphocytic Lymphoma with Unmutated Immunoglobulin Heavy Chain Variable-Region Gene 8 92849 -NCIT:C37205 Chronic Lymphocytic Leukemia with Unmutated Immunoglobulin Heavy Chain Variable-Region Gene 9 92850 -NCIT:C37206 Small Lymphocytic Lymphoma with Unmutated Immunoglobulin Heavy Chain Variable-Region Gene 9 92851 -NCIT:C7540 Small Lymphocytic Lymphoma 8 92852 -NCIT:C141259 Small Lymphocytic Lymphoma by Ann Arbor Stage 9 92853 -NCIT:C8070 Ann Arbor Stage I Small Lymphocytic Lymphoma 10 92854 -NCIT:C8115 Ann Arbor Stage II Small Lymphocytic Lymphoma 10 92855 -NCIT:C8128 Ann Arbor Stage III Small Lymphocytic Lymphoma 10 92856 -NCIT:C8141 Ann Arbor Stage IV Small Lymphocytic Lymphoma 10 92857 -NCIT:C161605 Prostate Small Lymphocytic Lymphoma 9 92858 -NCIT:C36273 Small Lymphocytic Lymphoma with Plasmacytoid Differentiation 9 92859 -NCIT:C37203 Small Lymphocytic Lymphoma with Immunoglobulin Heavy Chain Variable-Region Gene Somatic Hypermutation 9 92860 -NCIT:C37206 Small Lymphocytic Lymphoma with Unmutated Immunoglobulin Heavy Chain Variable-Region Gene 9 92861 -NCIT:C7304 Splenic Small Lymphocytic Lymphoma 9 92862 -NCIT:C8154 Recurrent Small Lymphocytic Lymphoma 9 92863 -NCIT:C8846 Refractory Small Lymphocytic Lymphoma 9 92864 -NCIT:C45249 Cutaneous Mature B-Cell Neoplasm 7 92865 -NCIT:C168651 Cutaneous Burkitt Lymphoma 8 92866 -NCIT:C185044 Cutaneous Plasmacytoma 8 92867 -NCIT:C185155 Extramedullary Disease in Plasma Cell Myeloma Involving the Skin 8 92868 -NCIT:C45264 Cutaneous Chronic Lymphocytic Leukemia 8 92869 -NCIT:C45266 Cutaneous Mantle Cell Lymphoma 8 92870 -NCIT:C45267 Cutaneous Lymphomatoid Granulomatosis 8 92871 -NCIT:C6858 Primary Cutaneous B-Cell Non-Hodgkin Lymphoma 8 92872 -NCIT:C45193 Primary Cutaneous Diffuse Large B-Cell Lymphoma 9 92873 -NCIT:C45194 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 92874 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 92875 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 92876 -NCIT:C45213 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Other 10 92877 -NCIT:C45214 Primary Cutaneous Intravascular Large B-Cell Lymphoma 11 92878 -NCIT:C45215 Primary Cutaneous T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 11 92879 -NCIT:C45216 Primary Cutaneous Plasmablastic Lymphoma 11 92880 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 9 92881 -NCIT:C7230 Primary Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 92882 -NCIT:C45163 Borrelia Burgdoferi-Associated Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 92883 -NCIT:C7218 Cutaneous Follicular Lymphoma 8 92884 -NCIT:C6859 Grade 3 Cutaneous Follicular Lymphoma 9 92885 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 9 92886 -NCIT:C7219 Grade 2 Cutaneous Follicular Lymphoma 9 92887 -NCIT:C7220 Grade 1 Cutaneous Follicular Lymphoma 9 92888 -NCIT:C4665 Plasma Cell Neoplasm 7 92889 -NCIT:C150588 Non-IgM Monoclonal Gammopathy of Undetermined Significance 8 92890 -NCIT:C172289 Recurrent Plasma Cell Neoplasm 8 92891 -NCIT:C133732 Recurrent Primary Amyloidosis 9 92892 -NCIT:C174054 Recurrent AL Amyloidosis 10 92893 -NCIT:C7025 Recurrent Plasma Cell Myeloma 9 92894 -NCIT:C3180 Plasma Cell Leukemia 8 92895 -NCIT:C191432 Secondary Plasma Cell Leukemia 9 92896 -NCIT:C3242 Plasma Cell Myeloma 8 92897 -NCIT:C139008 Plasma Cell Myeloma by DS Stage 9 92898 -NCIT:C7850 DS Stage I Plasma Cell Myeloma 10 92899 -NCIT:C181859 DS Stage IA Plasma Cell Myeloma 11 92900 -NCIT:C181860 DS Stage IB Plasma Cell Myeloma 11 92901 -NCIT:C7851 DS Stage II Plasma Cell Myeloma 10 92902 -NCIT:C181862 DS Stage IIA Plasma Cell Myeloma 11 92903 -NCIT:C181864 DS Stage IIB Plasma Cell Myeloma 11 92904 -NCIT:C7852 DS Stage III Plasma Cell Myeloma 10 92905 -NCIT:C181865 DS Stage IIIA Plasma Cell Myeloma 11 92906 -NCIT:C181866 DS Stage IIIB Plasma Cell Myeloma 11 92907 -NCIT:C139009 Plasma Cell Myeloma by ISS Stage 9 92908 -NCIT:C70658 ISS Stage I Plasma Cell Myeloma 10 92909 -NCIT:C70659 ISS Stage II Plasma Cell Myeloma 10 92910 -NCIT:C70660 ISS Stage III Plasma Cell Myeloma 10 92911 -NCIT:C141393 Plasma Cell Myeloma by RISS Stage 9 92912 -NCIT:C141394 RISS Stage I Plasma Cell Myeloma 10 92913 -NCIT:C141395 RISS Stage II Plasma Cell Myeloma 10 92914 -NCIT:C141396 RISS Stage III Plasma Cell Myeloma 10 92915 -NCIT:C185149 Extramedullary Disease in Plasma Cell Myeloma 9 92916 -NCIT:C185037 Extramedullary Disease in Plasma Cell Myeloma Involving the Central Nervous System 10 92917 -NCIT:C185039 Extramedullary Disease in Plasma Cell Myeloma Involving the Leptomeninges 11 92918 -NCIT:C185151 Extramedullary Disease in Plasma Cell Myeloma Involving the Spleen 10 92919 -NCIT:C185152 Extramedullary Disease in Plasma Cell Myeloma Involving the Liver 10 92920 -NCIT:C185153 Extramedullary Disease in Plasma Cell Myeloma Involving the Kidney 10 92921 -NCIT:C185155 Extramedullary Disease in Plasma Cell Myeloma Involving the Skin 10 92922 -NCIT:C185321 Extramedullary Disease in Plasma Cell Myeloma Involving the Lung 10 92923 -NCIT:C188074 Extramedullary Disease in Plasma Cell Myeloma Involving the Uterine Corpus 10 92924 -NCIT:C4734 Non-Secretory Plasma Cell Myeloma 9 92925 -NCIT:C7024 Refractory Plasma Cell Myeloma 9 92926 -NCIT:C178375 Triple-Class Refractory Plasma Cell Myeloma 10 92927 -NCIT:C7025 Recurrent Plasma Cell Myeloma 9 92928 -NCIT:C7149 Smoldering Plasma Cell Myeloma 9 92929 -NCIT:C7150 Indolent Plasma Cell Myeloma 9 92930 -NCIT:C7242 Plasma Cell Myeloma Post-Transplant Lymphoproliferative Disorder 9 92931 -NCIT:C7765 Osteosclerotic Plasma Cell Myeloma 9 92932 -NCIT:C7151 Monoclonal Immunoglobulin Deposition Disease 8 92933 -NCIT:C158965 Light and Heavy Chain Deposition Disease 9 92934 -NCIT:C3819 Primary Amyloidosis 9 92935 -NCIT:C133731 Refractory Primary Amyloidosis 10 92936 -NCIT:C174055 Refractory AL Amyloidosis 11 92937 -NCIT:C133732 Recurrent Primary Amyloidosis 10 92938 -NCIT:C174054 Recurrent AL Amyloidosis 11 92939 -NCIT:C189282 Familial Primary Localized Cutaneous Amyloidosis-1 10 92940 -NCIT:C8299 Primary Systemic Amyloidosis 10 92941 -NCIT:C158962 AH Amyloidosis 11 92942 -NCIT:C158963 AL Amyloidosis 11 92943 -NCIT:C174054 Recurrent AL Amyloidosis 12 92944 -NCIT:C174055 Refractory AL Amyloidosis 12 92945 -NCIT:C158964 AHL Amyloidosis 11 92946 -NCIT:C7339 Heavy Chain Deposition Disease 9 92947 -NCIT:C7727 Light Chain Deposition Disease 9 92948 -NCIT:C7240 Plasma Cell Post-Transplant Lymphoproliferative Disorder 8 92949 -NCIT:C7241 Plasmacytoma-Like Post-Transplant Lymphoproliferative Disorder 9 92950 -NCIT:C7242 Plasma Cell Myeloma Post-Transplant Lymphoproliferative Disorder 9 92951 -NCIT:C7813 Refractory Plasma Cell Neoplasm 8 92952 -NCIT:C133731 Refractory Primary Amyloidosis 9 92953 -NCIT:C174055 Refractory AL Amyloidosis 10 92954 -NCIT:C7024 Refractory Plasma Cell Myeloma 9 92955 -NCIT:C178375 Triple-Class Refractory Plasma Cell Myeloma 10 92956 -NCIT:C9349 Plasmacytoma 8 92957 -NCIT:C118421 Anaplastic Plasmacytoma 9 92958 -NCIT:C4002 Extraosseous Plasmacytoma 9 92959 -NCIT:C162470 Testicular Plasmacytoma 10 92960 -NCIT:C173169 Sinonasal Plasmacytoma 10 92961 -NCIT:C185041 Splenic Plasmacytoma 10 92962 -NCIT:C185042 Liver Plasmacytoma 10 92963 -NCIT:C185043 Lung Plasmacytoma 10 92964 -NCIT:C185044 Cutaneous Plasmacytoma 10 92965 -NCIT:C6932 Solitary Plasmacytoma 9 92966 -NCIT:C6711 Chest Wall Solitary Plasmacytoma 10 92967 -NCIT:C7812 Solitary Plasmacytoma of Bone 10 92968 -NCIT:C185035 Multiple Solitary Plasmacytoma of Bone 11 92969 -NCIT:C4753 B-Cell Prolymphocytic Leukemia 7 92970 -NCIT:C157697 Refractory B-Cell Prolymphocytic Leukemia 8 92971 -NCIT:C158081 Recurrent B-Cell Prolymphocytic Leukemia 8 92972 -NCIT:C7299 Splenic Manifestation of B-Cell Prolymphocytic Leukemia 8 92973 -NCIT:C60310 Lung Mature B-Cell Neoplasm 7 92974 -NCIT:C181211 Lung Follicular Lymphoma 8 92975 -NCIT:C185043 Lung Plasmacytoma 8 92976 -NCIT:C45605 Lung Diffuse Large B-Cell Lymphoma 8 92977 -NCIT:C183121 Lung Intravascular Large B-Cell Lymphoma 9 92978 -NCIT:C45607 Pulmonary Lymphomatoid Granulomatosis 8 92979 -NCIT:C5264 Lung Mucosa-Associated Lymphoid Tissue Lymphoma 8 92980 -NCIT:C7056 Mature B-Cell Non-Hodgkin Lymphoma 7 92981 -NCIT:C131911 Burkitt-Like Lymphoma with 11q Aberration 8 92982 -NCIT:C133494 Large B-Cell Lymphoma with IRF4 Rearrangement 8 92983 -NCIT:C188458 Childhood Large B-Cell Lymphoma with IRF4 Rearrangement 9 92984 -NCIT:C139681 Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 8 92985 -NCIT:C160232 Recurrent Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 9 92986 -NCIT:C160240 Refractory Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 9 92987 -NCIT:C165799 Recurrent Mature B-Cell Non-Hodgkin Lymphoma 8 92988 -NCIT:C158149 Recurrent Transformed B-Cell Non-Hodgkin Lymphoma 9 92989 -NCIT:C160232 Recurrent Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 10 92990 -NCIT:C186483 Recurrent Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 10 92991 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 11 92992 -NCIT:C5007 Recurrent Follicular Lymphoma 9 92993 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 10 92994 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 10 92995 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 10 92996 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 11 92997 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 11 92998 -NCIT:C5008 Recurrent Burkitt Lymphoma 9 92999 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 10 93000 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 10 93001 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 9 93002 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 10 93003 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 93004 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 10 93005 -NCIT:C8154 Recurrent Small Lymphocytic Lymphoma 9 93006 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 9 93007 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 9 93008 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 10 93009 -NCIT:C8852 Recurrent Diffuse Large B-Cell Lymphoma 9 93010 -NCIT:C138015 Recurrent Extranodal Diffuse Large B-cell Lymphoma 10 93011 -NCIT:C138025 Recurrent Intravascular Large B-Cell Lymphoma 10 93012 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 93013 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 93014 -NCIT:C156696 Recurrent T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 10 93015 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 10 93016 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 93017 -NCIT:C157679 Recurrent Primary Effusion Lymphoma 10 93018 -NCIT:C157683 Recurrent Plasmablastic Lymphoma 10 93019 -NCIT:C160229 Recurrent High Grade B-Cell Lymphoma 10 93020 -NCIT:C151980 Recurrent High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 11 93021 -NCIT:C162451 Recurrent High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 11 93022 -NCIT:C188788 Recurrent High Grade B-Cell Lymphoma, Not Otherwise Specified 11 93023 -NCIT:C165240 Recurrent Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 93024 -NCIT:C160230 Recurrent Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 11 93025 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 11 93026 -NCIT:C182035 Recurrent Immunoblastic Lymphoma 11 93027 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 12 93028 -NCIT:C8926 Recurrent Centroblastic Lymphoma 11 93029 -NCIT:C183140 Recurrent Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 10 93030 -NCIT:C188790 Recurrent ALK-Positive Large B-Cell Lymphoma 10 93031 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 10 93032 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 11 93033 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 11 93034 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 93035 -NCIT:C171299 Indolent B-Cell Non-Hodgkin Lymphoma 8 93036 -NCIT:C175451 Primary Uveal Non-Hodgkin Lymphoma 9 93037 -NCIT:C175464 Primary Choroidal Non-Hodgkin Lymphoma 10 93038 -NCIT:C175466 Primary Ciliary Body Non-Hodgkin Lymphoma 10 93039 -NCIT:C175467 Primary Iris Non-Hodgkin Lymphoma 10 93040 -NCIT:C3212 Lymphoplasmacytic Lymphoma 9 93041 -NCIT:C141256 Lymphoplasmacytic Lymphoma by Ann Arbor Stage 10 93042 -NCIT:C8653 Ann Arbor Stage I Lymphoplasmacytic Lymphoma 11 93043 -NCIT:C8654 Ann Arbor Stage II Lymphoplasmacytic Lymphoma 11 93044 -NCIT:C8655 Ann Arbor Stage III Lymphoplasmacytic Lymphoma 11 93045 -NCIT:C8656 Ann Arbor Stage IV Lymphoplasmacytic Lymphoma 11 93046 -NCIT:C7305 Splenic Lymphoplasmacytic Lymphoma 10 93047 -NCIT:C80307 Waldenstrom Macroglobulinemia 10 93048 -NCIT:C115212 Familial Waldenstrom Macroglobulinemia 11 93049 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 11 93050 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 11 93051 -NCIT:C155910 Smoldering Waldenstrom Macroglobulinemia 11 93052 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 10 93053 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 11 93054 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 10 93055 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 11 93056 -NCIT:C3465 Grade 1 Follicular Lymphoma 9 93057 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 10 93058 -NCIT:C7220 Grade 1 Cutaneous Follicular Lymphoma 10 93059 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 10 93060 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 10 93061 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 11 93062 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 11 93063 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 10 93064 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 10 93065 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 10 93066 -NCIT:C37203 Small Lymphocytic Lymphoma with Immunoglobulin Heavy Chain Variable-Region Gene Somatic Hypermutation 9 93067 -NCIT:C4341 Marginal Zone Lymphoma 9 93068 -NCIT:C141258 Marginal Zone Lymphoma by Ann Arbor Stage 10 93069 -NCIT:C141260 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue by Ann Arbor Stage 11 93070 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 93071 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 93072 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 93073 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 93074 -NCIT:C141261 Nodal Marginal Zone Lymphoma by Ann Arbor Stage 11 93075 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 12 93076 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 12 93077 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 12 93078 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 12 93079 -NCIT:C68678 Ann Arbor Stage I Marginal Zone Lymphoma 11 93080 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 93081 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 12 93082 -NCIT:C68679 Ann Arbor Stage II Marginal Zone Lymphoma 11 93083 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 93084 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 12 93085 -NCIT:C68682 Ann Arbor Stage III Marginal Zone Lymphoma 11 93086 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 93087 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 12 93088 -NCIT:C68683 Ann Arbor Stage IV Marginal Zone Lymphoma 11 93089 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 93090 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 12 93091 -NCIT:C143085 Refractory Marginal Zone Lymphoma 10 93092 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 11 93093 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 93094 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 11 93095 -NCIT:C172360 Advanced Marginal Zone Lymphoma 10 93096 -NCIT:C3898 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 93097 -NCIT:C123394 Childhood Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 93098 -NCIT:C141260 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue by Ann Arbor Stage 11 93099 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 93100 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 93101 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 93102 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 93103 -NCIT:C172844 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue Involving the Digestive System 11 93104 -NCIT:C5266 Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 12 93105 -NCIT:C27763 Helicobacter Pylori-Associated Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 13 93106 -NCIT:C5635 Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 12 93107 -NCIT:C45166 Campylobacter Jejuni-Associated Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 13 93108 -NCIT:C5768 Liver Mucosa-Associated Lymphoid Tissue Lymphoma 12 93109 -NCIT:C95626 Esophageal Mucosa-Associated Lymphoid Tissue Lymphoma 12 93110 -NCIT:C96506 Colorectal Mucosa-Associated Lymphoid Tissue Lymphoma 12 93111 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 13 93112 -NCIT:C173693 Salivary Gland Mucosa-Associated Lymphoid Tissue Lymphoma 11 93113 -NCIT:C35687 Parotid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 12 93114 -NCIT:C181910 Endometrial Mucosa-Associated Lymphoid Tissue Lymphoma 11 93115 -NCIT:C35688 Breast Mucosa-Associated Lymphoid Tissue Lymphoma 11 93116 -NCIT:C35689 Ocular Adnexal Mucosa-Associated Lymphoid Tissue Lymphoma 11 93117 -NCIT:C175431 Conjunctival Mucosa-Associated Lymphoid Tissue Lymphoma 12 93118 -NCIT:C175482 Lacrimal System Mucosa-Associated Lymphoid Tissue Lymphoma 12 93119 -NCIT:C175483 Lacrimal Gland Mucosa-Associated Lymphoid Tissue Lymphoma 13 93120 -NCIT:C175484 Lacrimal Drainage System Mucosa-Associated Lymphoid Tissue Lymphoma 13 93121 -NCIT:C182357 Diffusion Restriction 12 93122 -NCIT:C44960 Chlamydia Psittaci-Associated Ocular Adnexal Mucosa-Associated Lymphoid Tissue Lymphoma 12 93123 -NCIT:C39878 Bladder Mucosa-Associated Lymphoid Tissue Lymphoma 11 93124 -NCIT:C45380 Thymic Mucosa-Associated Lymphoid Tissue Lymphoma 11 93125 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 93126 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 93127 -NCIT:C5264 Lung Mucosa-Associated Lymphoid Tissue Lymphoma 11 93128 -NCIT:C7230 Primary Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 93129 -NCIT:C45163 Borrelia Burgdoferi-Associated Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 93130 -NCIT:C7601 Thyroid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 11 93131 -NCIT:C95991 Dural Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 93132 -NCIT:C4663 Splenic Marginal Zone Lymphoma 10 93133 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 11 93134 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 11 93135 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 10 93136 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 11 93137 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 93138 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 11 93139 -NCIT:C8863 Nodal Marginal Zone Lymphoma 10 93140 -NCIT:C141261 Nodal Marginal Zone Lymphoma by Ann Arbor Stage 11 93141 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 12 93142 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 12 93143 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 12 93144 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 12 93145 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 11 93146 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 11 93147 -NCIT:C80299 Pediatric Nodal Marginal Zone Lymphoma 11 93148 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 9 93149 -NCIT:C7264 Diffuse Follicular Lymphoma 9 93150 -NCIT:C7194 Grade 2 Diffuse Follicular Lymphoma 10 93151 -NCIT:C9464 Grade 1 Diffuse Follicular Lymphoma 10 93152 -NCIT:C8968 Grade 2 Follicular Lymphoma 9 93153 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 10 93154 -NCIT:C7219 Grade 2 Cutaneous Follicular Lymphoma 10 93155 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 10 93156 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 10 93157 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 11 93158 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 11 93159 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 10 93160 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 10 93161 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 10 93162 -NCIT:C179717 Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 8 93163 -NCIT:C156699 Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 9 93164 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 10 93165 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 10 93166 -NCIT:C157625 Transformed Small Lymphocytic Lymphoma to Diffuse Large B-Cell Lymphoma 9 93167 -NCIT:C185134 Transformed Lymphoplasmacytic Lymphoma to Diffuse Large B-Cell Lymphoma 9 93168 -NCIT:C185135 Transformed Waldenstrom Macroglobulinemia to Diffuse Large B-Cell Lymphoma 10 93169 -NCIT:C186483 Recurrent Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 9 93170 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 10 93171 -NCIT:C186484 Refractory Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 9 93172 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 10 93173 -NCIT:C2912 Burkitt Lymphoma 8 93174 -NCIT:C141253 Burkitt Lymphoma by Ann Arbor Stage 9 93175 -NCIT:C5084 Ann Arbor Stage IV Burkitt Lymphoma 10 93176 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 11 93177 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 11 93178 -NCIT:C8848 Ann Arbor Stage I Burkitt Lymphoma 10 93179 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 11 93180 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 11 93181 -NCIT:C8849 Ann Arbor Stage II Burkitt Lymphoma 10 93182 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 11 93183 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 12 93184 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 12 93185 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 11 93186 -NCIT:C8850 Ann Arbor Stage III Burkitt Lymphoma 10 93187 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 11 93188 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 11 93189 -NCIT:C168651 Cutaneous Burkitt Lymphoma 9 93190 -NCIT:C188075 Kidney Burkitt Lymphoma 9 93191 -NCIT:C27409 Small Intestinal Burkitt Lymphoma 9 93192 -NCIT:C27410 Small Intestinal Atypical Burkitt/Burkitt-Like Lymphoma 10 93193 -NCIT:C27694 EBV-Related Burkitt Lymphoma 9 93194 -NCIT:C27122 Endemic Burkitt Lymphoma 10 93195 -NCIT:C27914 Sporadic Burkitt Lymphoma 9 93196 -NCIT:C27915 Immunodeficiency-Related Burkitt Lymphoma 9 93197 -NCIT:C7244 Burkitt Lymphoma Post-Transplant Lymphoproliferative Disorder 10 93198 -NCIT:C7245 Burkitt-Like Lymphoma Post-Transplant Lymphoproliferative Disorder 11 93199 -NCIT:C7255 Methotrexate-Related Burkitt Lymphoma 10 93200 -NCIT:C8286 AIDS-Related Burkitt Lymphoma 10 93201 -NCIT:C27857 AIDS-Related Burkitt Lymphoma with Plasmacytoid Differentiation 11 93202 -NCIT:C40376 Breast Burkitt Lymphoma 9 93203 -NCIT:C5008 Recurrent Burkitt Lymphoma 9 93204 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 10 93205 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 10 93206 -NCIT:C5251 Gastric Burkitt Lymphoma 9 93207 -NCIT:C6917 Atypical Burkitt/Burkitt-Like Lymphoma 9 93208 -NCIT:C27410 Small Intestinal Atypical Burkitt/Burkitt-Like Lymphoma 10 93209 -NCIT:C7245 Burkitt-Like Lymphoma Post-Transplant Lymphoproliferative Disorder 10 93210 -NCIT:C7188 Classical Burkitt Lymphoma 9 93211 -NCIT:C7189 Burkitt Lymphoma with Plasmacytoid Differentiation 9 93212 -NCIT:C27857 AIDS-Related Burkitt Lymphoma with Plasmacytoid Differentiation 10 93213 -NCIT:C7309 Splenic Burkitt Lymphoma 9 93214 -NCIT:C8847 Refractory Burkitt Lymphoma 9 93215 -NCIT:C9062 Adult Burkitt Lymphoma 9 93216 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 10 93217 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 10 93218 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 11 93219 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 11 93220 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 10 93221 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 10 93222 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 10 93223 -NCIT:C9095 Childhood Burkitt Lymphoma 9 93224 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 10 93225 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 10 93226 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 10 93227 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 10 93228 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 10 93229 -NCIT:C96502 Colorectal Burkitt Lymphoma 9 93230 -NCIT:C27465 Colon Burkitt Lymphoma 10 93231 -NCIT:C3082 Heavy Chain Disease 8 93232 -NCIT:C3083 Gamma Heavy Chain Disease 9 93233 -NCIT:C3132 Alpha Heavy Chain Disease 9 93234 -NCIT:C3892 Mu Heavy Chain Disease 9 93235 -NCIT:C3209 Follicular Lymphoma 8 93236 -NCIT:C138185 Duodenal-Type Follicular Lymphoma 9 93237 -NCIT:C138186 Predominantly Diffuse Follicular Lymphoma with 1p36 Deletion 9 93238 -NCIT:C141255 Follicular Lymphoma by Ann Arbor Stage 9 93239 -NCIT:C5006 Ann Arbor Stage IV Follicular Lymphoma 10 93240 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 11 93241 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 11 93242 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 11 93243 -NCIT:C8859 Ann Arbor Stage I Follicular Lymphoma 10 93244 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 11 93245 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 11 93246 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 11 93247 -NCIT:C8860 Ann Arbor Stage II Follicular Lymphoma 10 93248 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 11 93249 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 12 93250 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 12 93251 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 11 93252 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 12 93253 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 12 93254 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 11 93255 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 12 93256 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 12 93257 -NCIT:C8861 Ann Arbor Stage III Follicular Lymphoma 10 93258 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 11 93259 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 11 93260 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 11 93261 -NCIT:C150589 Testicular Follicular Lymphoma 9 93262 -NCIT:C156410 Thyroid Gland Follicular Lymphoma 9 93263 -NCIT:C161603 Prostate Follicular Lymphoma 9 93264 -NCIT:C172359 Advanced Follicular Lymphoma 9 93265 -NCIT:C173715 Salivary Gland Follicular Lymphoma 9 93266 -NCIT:C173716 Parotid Gland Follicular Lymphoma 10 93267 -NCIT:C175430 Conjunctival Follicular Lymphoma 9 93268 -NCIT:C175488 Lacrimal Gland Follicular Lymphoma 9 93269 -NCIT:C181211 Lung Follicular Lymphoma 9 93270 -NCIT:C3460 Grade 3 Follicular Lymphoma 9 93271 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 10 93272 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 11 93273 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 11 93274 -NCIT:C6859 Grade 3 Cutaneous Follicular Lymphoma 10 93275 -NCIT:C7191 Grade 3a Follicular Lymphoma 10 93276 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 11 93277 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 11 93278 -NCIT:C7192 Grade 3b Follicular Lymphoma 10 93279 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 11 93280 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 11 93281 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 10 93282 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 10 93283 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 11 93284 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 11 93285 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 10 93286 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 10 93287 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 10 93288 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 11 93289 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 11 93290 -NCIT:C3465 Grade 1 Follicular Lymphoma 9 93291 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 10 93292 -NCIT:C7220 Grade 1 Cutaneous Follicular Lymphoma 10 93293 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 10 93294 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 10 93295 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 11 93296 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 11 93297 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 10 93298 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 10 93299 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 10 93300 -NCIT:C37209 Diffuse Blastoid B-Cell Lymphoma 9 93301 -NCIT:C40377 Breast Follicular Lymphoma 9 93302 -NCIT:C5007 Recurrent Follicular Lymphoma 9 93303 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 10 93304 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 10 93305 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 10 93306 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 11 93307 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 11 93308 -NCIT:C7218 Cutaneous Follicular Lymphoma 9 93309 -NCIT:C6859 Grade 3 Cutaneous Follicular Lymphoma 10 93310 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 10 93311 -NCIT:C7219 Grade 2 Cutaneous Follicular Lymphoma 10 93312 -NCIT:C7220 Grade 1 Cutaneous Follicular Lymphoma 10 93313 -NCIT:C7254 Methotrexate-Associated Follicular Lymphoma 9 93314 -NCIT:C7264 Diffuse Follicular Lymphoma 9 93315 -NCIT:C7194 Grade 2 Diffuse Follicular Lymphoma 10 93316 -NCIT:C9464 Grade 1 Diffuse Follicular Lymphoma 10 93317 -NCIT:C7307 Splenic Follicular Lymphoma 9 93318 -NCIT:C80297 Pediatric-Type Follicular Lymphoma 9 93319 -NCIT:C80298 Intestinal Follicular Lymphoma 9 93320 -NCIT:C96056 Small Intestinal Follicular Lymphoma 10 93321 -NCIT:C8858 Refractory Follicular Lymphoma 9 93322 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 10 93323 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 10 93324 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 10 93325 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 11 93326 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 11 93327 -NCIT:C8968 Grade 2 Follicular Lymphoma 9 93328 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 10 93329 -NCIT:C7219 Grade 2 Cutaneous Follicular Lymphoma 10 93330 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 10 93331 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 10 93332 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 11 93333 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 11 93334 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 10 93335 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 10 93336 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 10 93337 -NCIT:C4337 Mantle Cell Lymphoma 8 93338 -NCIT:C141257 Mantle Cell Lymphoma by Ann Arbor Stage 9 93339 -NCIT:C8465 Ann Arbor Stage I Mantle Cell Lymphoma 10 93340 -NCIT:C8483 Ann Arbor Stage III Mantle Cell Lymphoma 10 93341 -NCIT:C8486 Ann Arbor Stage IV Mantle Cell Lymphoma 10 93342 -NCIT:C9202 Ann Arbor Stage II Mantle Cell Lymphoma 10 93343 -NCIT:C8473 Ann Arbor Stage II Contiguous Mantle Cell Lymphoma 11 93344 -NCIT:C9198 Ann Arbor Stage II Non-Contiguous Mantle Cell Lymphoma 11 93345 -NCIT:C161604 Prostate Mantle Cell Lymphoma 9 93346 -NCIT:C181210 Parotid Gland Mantle Cell Lymphoma 9 93347 -NCIT:C188080 Tonsillar Mantle Cell Lymphoma 9 93348 -NCIT:C27440 Gastric Mantle Cell Lymphoma 9 93349 -NCIT:C27441 Small Intestinal Mantle Cell Lymphoma 9 93350 -NCIT:C39747 Pleomorphic Variant Mantle Cell Lymphoma 9 93351 -NCIT:C45266 Cutaneous Mantle Cell Lymphoma 9 93352 -NCIT:C7229 Blastoid Variant Mantle Cell Lymphoma 9 93353 -NCIT:C7306 Splenic Mantle Cell Lymphoma 9 93354 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 9 93355 -NCIT:C8862 Refractory Mantle Cell Lymphoma 9 93356 -NCIT:C96505 Colorectal Mantle Cell Lymphoma 9 93357 -NCIT:C27411 Colon Mantle Cell Lymphoma 10 93358 -NCIT:C6858 Primary Cutaneous B-Cell Non-Hodgkin Lymphoma 8 93359 -NCIT:C45193 Primary Cutaneous Diffuse Large B-Cell Lymphoma 9 93360 -NCIT:C45194 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 93361 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 93362 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 93363 -NCIT:C45213 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Other 10 93364 -NCIT:C45214 Primary Cutaneous Intravascular Large B-Cell Lymphoma 11 93365 -NCIT:C45215 Primary Cutaneous T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 11 93366 -NCIT:C45216 Primary Cutaneous Plasmablastic Lymphoma 11 93367 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 9 93368 -NCIT:C7230 Primary Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 93369 -NCIT:C45163 Borrelia Burgdoferi-Associated Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 93370 -NCIT:C7228 Refractory Mature B-Cell Non-Hodgkin Lymphoma 8 93371 -NCIT:C143085 Refractory Marginal Zone Lymphoma 9 93372 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 10 93373 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 93374 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 10 93375 -NCIT:C158150 Refractory Transformed B-Cell Non-Hodgkin Lymphoma 9 93376 -NCIT:C160240 Refractory Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 10 93377 -NCIT:C186484 Refractory Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 10 93378 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 11 93379 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 9 93380 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 10 93381 -NCIT:C8846 Refractory Small Lymphocytic Lymphoma 9 93382 -NCIT:C8847 Refractory Burkitt Lymphoma 9 93383 -NCIT:C8853 Refractory Diffuse Large B-Cell Lymphoma 9 93384 -NCIT:C138018 Refractory Extranodal Diffuse Large B-cell Lymphoma 10 93385 -NCIT:C138026 Refractory Intravascular Large B-Cell Lymphoma 10 93386 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 93387 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 93388 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 10 93389 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 93390 -NCIT:C157678 Refractory T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 10 93391 -NCIT:C157680 Refractory Primary Effusion Lymphoma 10 93392 -NCIT:C157684 Refractory Plasmablastic Lymphoma 10 93393 -NCIT:C160233 Refractory High Grade B-Cell Lymphoma 10 93394 -NCIT:C151979 Refractory High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 11 93395 -NCIT:C162453 Refractory High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 11 93396 -NCIT:C188789 Refractory High Grade B-Cell Lymphoma, Not Otherwise Specified 11 93397 -NCIT:C165241 Refractory Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 93398 -NCIT:C160238 Refractory Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 11 93399 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 11 93400 -NCIT:C182034 Refractory Immunoblastic Lymphoma 11 93401 -NCIT:C8927 Refractory Centroblastic Lymphoma 11 93402 -NCIT:C183142 Refractory Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 10 93403 -NCIT:C188791 Refractory ALK-Positive Large B-Cell Lymphoma 10 93404 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 93405 -NCIT:C8858 Refractory Follicular Lymphoma 9 93406 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 10 93407 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 10 93408 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 10 93409 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 11 93410 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 11 93411 -NCIT:C8862 Refractory Mantle Cell Lymphoma 9 93412 -NCIT:C7540 Small Lymphocytic Lymphoma 8 93413 -NCIT:C141259 Small Lymphocytic Lymphoma by Ann Arbor Stage 9 93414 -NCIT:C8070 Ann Arbor Stage I Small Lymphocytic Lymphoma 10 93415 -NCIT:C8115 Ann Arbor Stage II Small Lymphocytic Lymphoma 10 93416 -NCIT:C8128 Ann Arbor Stage III Small Lymphocytic Lymphoma 10 93417 -NCIT:C8141 Ann Arbor Stage IV Small Lymphocytic Lymphoma 10 93418 -NCIT:C161605 Prostate Small Lymphocytic Lymphoma 9 93419 -NCIT:C36273 Small Lymphocytic Lymphoma with Plasmacytoid Differentiation 9 93420 -NCIT:C37203 Small Lymphocytic Lymphoma with Immunoglobulin Heavy Chain Variable-Region Gene Somatic Hypermutation 9 93421 -NCIT:C37206 Small Lymphocytic Lymphoma with Unmutated Immunoglobulin Heavy Chain Variable-Region Gene 9 93422 -NCIT:C7304 Splenic Small Lymphocytic Lymphoma 9 93423 -NCIT:C8154 Recurrent Small Lymphocytic Lymphoma 9 93424 -NCIT:C8846 Refractory Small Lymphocytic Lymphoma 9 93425 -NCIT:C80309 Splenic Diffuse Red Pulp Small B-Cell Lymphoma 8 93426 -NCIT:C8851 Diffuse Large B-Cell Lymphoma 8 93427 -NCIT:C138211 High Grade B-Cell Lymphoma 9 93428 -NCIT:C138195 High Grade B-Cell Lymphoma with MYC and BCL2 and/or BCL6 Rearrangements 10 93429 -NCIT:C125904 High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 11 93430 -NCIT:C151979 Refractory High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 12 93431 -NCIT:C151980 Recurrent High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 12 93432 -NCIT:C131913 High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 11 93433 -NCIT:C162451 Recurrent High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 12 93434 -NCIT:C162453 Refractory High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 12 93435 -NCIT:C160229 Recurrent High Grade B-Cell Lymphoma 10 93436 -NCIT:C151980 Recurrent High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 11 93437 -NCIT:C162451 Recurrent High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 11 93438 -NCIT:C188788 Recurrent High Grade B-Cell Lymphoma, Not Otherwise Specified 11 93439 -NCIT:C160233 Refractory High Grade B-Cell Lymphoma 10 93440 -NCIT:C151979 Refractory High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 11 93441 -NCIT:C162453 Refractory High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 11 93442 -NCIT:C188789 Refractory High Grade B-Cell Lymphoma, Not Otherwise Specified 11 93443 -NCIT:C80291 High Grade B-Cell Lymphoma, Not Otherwise Specified 10 93444 -NCIT:C188788 Recurrent High Grade B-Cell Lymphoma, Not Otherwise Specified 11 93445 -NCIT:C188789 Refractory High Grade B-Cell Lymphoma, Not Otherwise Specified 11 93446 -NCIT:C96057 Small Intestinal High Grade B-Cell Lymphoma, Not Otherwise Specified 11 93447 -NCIT:C96501 Colorectal High Grade B-Cell Lymphoma, Not Otherwise Specified 11 93448 -NCIT:C138320 HHV8-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 93449 -NCIT:C138899 Double-Expressor Lymphoma 9 93450 -NCIT:C141254 Diffuse Large B-Cell Lymphoma by Ann Arbor Stage 9 93451 -NCIT:C141262 Primary Mediastinal (Thymic) Large B-Cell Lymphoma by Ann Arbor Stage 10 93452 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 93453 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 93454 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 93455 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 93456 -NCIT:C141263 Centroblastic Lymphoma by Ann Arbor Stage 10 93457 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 11 93458 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 11 93459 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 11 93460 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 11 93461 -NCIT:C8854 Ann Arbor Stage I Diffuse Large B-Cell Lymphoma 10 93462 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 11 93463 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 93464 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 11 93465 -NCIT:C8855 Ann Arbor Stage II Diffuse Large B-Cell Lymphoma 10 93466 -NCIT:C171158 Ann Arbor Stage IIX (Bulky) Diffuse Large B-Cell Lymphoma 11 93467 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 11 93468 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 12 93469 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 12 93470 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 93471 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 11 93472 -NCIT:C8856 Ann Arbor Stage III Diffuse Large B-Cell Lymphoma 10 93473 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 11 93474 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 93475 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 11 93476 -NCIT:C8857 Ann Arbor Stage IV Diffuse Large B-Cell Lymphoma 10 93477 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 11 93478 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 93479 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 11 93480 -NCIT:C150396 Fibrin-Associated Diffuse Large B-Cell Lymphoma 9 93481 -NCIT:C183141 Cardiac Fibrin-Associated Diffuse Large B-Cell Lymphoma 10 93482 -NCIT:C161602 Prostate Diffuse Large B-Cell Lymphoma 9 93483 -NCIT:C162467 Testicular Diffuse Large B-Cell Lymphoma 9 93484 -NCIT:C171264 Advanced Diffuse Large B-Cell Lymphoma 9 93485 -NCIT:C172850 Digestive System Diffuse Large B-Cell Lymphoma 9 93486 -NCIT:C5253 Gastric Diffuse Large B-Cell Lymphoma 10 93487 -NCIT:C95625 Esophageal Diffuse Large B-Cell Lymphoma 10 93488 -NCIT:C96055 Small Intestinal Diffuse Large B-Cell Lymphoma 10 93489 -NCIT:C96057 Small Intestinal High Grade B-Cell Lymphoma, Not Otherwise Specified 11 93490 -NCIT:C96503 Colorectal Diffuse Large B-Cell Lymphoma 10 93491 -NCIT:C96501 Colorectal High Grade B-Cell Lymphoma, Not Otherwise Specified 11 93492 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 11 93493 -NCIT:C96843 Liver Diffuse Large B-Cell Lymphoma 10 93494 -NCIT:C173717 Salivary Gland Diffuse Large B-Cell Lymphoma 9 93495 -NCIT:C173719 Parotid Gland Diffuse Large B-Cell Lymphoma 10 93496 -NCIT:C173811 Primary Bone Diffuse Large B-Cell Lymphoma 9 93497 -NCIT:C175433 Conjunctival Diffuse Large B-Cell Lymphoma 9 93498 -NCIT:C175485 Lacrimal System Diffuse Large B-Cell Lymphoma 9 93499 -NCIT:C175486 Lacrimal Gland Diffuse Large B-Cell Lymphoma 10 93500 -NCIT:C175487 Lacrimal Drainage System Diffuse Large B-Cell Lymphoma 10 93501 -NCIT:C183146 Cardiac Diffuse Large B-Cell Lymphoma 9 93502 -NCIT:C183141 Cardiac Fibrin-Associated Diffuse Large B-Cell Lymphoma 10 93503 -NCIT:C188072 Tonsillar Diffuse Large B-Cell Lymphoma 9 93504 -NCIT:C188081 Nasal Cavity Diffuse Large B-Cell Lymphoma 9 93505 -NCIT:C27856 Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 9 93506 -NCIT:C27858 AIDS-Related Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 10 93507 -NCIT:C40375 Breast Diffuse Large B-Cell Lymphoma 9 93508 -NCIT:C4342 Intravascular Large B-Cell Lymphoma 9 93509 -NCIT:C129602 Central Nervous System Intravascular Large B-Cell Lymphoma 10 93510 -NCIT:C138025 Recurrent Intravascular Large B-Cell Lymphoma 10 93511 -NCIT:C138026 Refractory Intravascular Large B-Cell Lymphoma 10 93512 -NCIT:C183121 Lung Intravascular Large B-Cell Lymphoma 10 93513 -NCIT:C45214 Primary Cutaneous Intravascular Large B-Cell Lymphoma 10 93514 -NCIT:C45193 Primary Cutaneous Diffuse Large B-Cell Lymphoma 9 93515 -NCIT:C45194 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 93516 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 93517 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 93518 -NCIT:C45213 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Other 10 93519 -NCIT:C45214 Primary Cutaneous Intravascular Large B-Cell Lymphoma 11 93520 -NCIT:C45215 Primary Cutaneous T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 11 93521 -NCIT:C45216 Primary Cutaneous Plasmablastic Lymphoma 11 93522 -NCIT:C45605 Lung Diffuse Large B-Cell Lymphoma 9 93523 -NCIT:C183121 Lung Intravascular Large B-Cell Lymphoma 10 93524 -NCIT:C6046 Thyroid Gland Diffuse Large B-Cell Lymphoma 9 93525 -NCIT:C7263 Thyroid Gland Immunoblastic Lymphoma 10 93526 -NCIT:C6073 Paranasal Sinus Diffuse Large B-Cell Lymphoma 9 93527 -NCIT:C63533 Kidney Diffuse Large B-Cell Lymphoma 9 93528 -NCIT:C6915 Primary Effusion Lymphoma 9 93529 -NCIT:C150406 Extracavitary Primary Effusion Lymphoma 10 93530 -NCIT:C150407 Body Cavity Primary Effusion Lymphoma 10 93531 -NCIT:C183135 Pleural Primary Effusion Lymphoma 11 93532 -NCIT:C183136 Pericardial Primary Effusion Lymphoma 11 93533 -NCIT:C183137 Peritoneal Primary Effusion Lymphoma 11 93534 -NCIT:C157679 Recurrent Primary Effusion Lymphoma 10 93535 -NCIT:C157680 Refractory Primary Effusion Lymphoma 10 93536 -NCIT:C9017 AIDS-Related Primary Effusion Lymphoma 10 93537 -NCIT:C71720 Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 93538 -NCIT:C129602 Central Nervous System Intravascular Large B-Cell Lymphoma 10 93539 -NCIT:C155797 Pituitary Gland Diffuse Large B-Cell Lymphoma 10 93540 -NCIT:C157067 Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 93541 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 93542 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 93543 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 10 93544 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 93545 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 10 93546 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 93547 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 10 93548 -NCIT:C7212 AIDS-Related Diffuse Large B-cell Lymphoma 9 93549 -NCIT:C27858 AIDS-Related Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 10 93550 -NCIT:C27859 AIDS-Related Plasmablastic Lymphoma 10 93551 -NCIT:C38160 AIDS-Related Plasmablastic Lymphoma of Mucosa Site 11 93552 -NCIT:C9016 AIDS-Related Plasmablastic Lymphoma of the Oral Mucosa 12 93553 -NCIT:C8285 AIDS-Related Immunoblastic Lymphoma 10 93554 -NCIT:C9017 AIDS-Related Primary Effusion Lymphoma 10 93555 -NCIT:C7224 Plasmablastic Lymphoma 9 93556 -NCIT:C157683 Recurrent Plasmablastic Lymphoma 10 93557 -NCIT:C157684 Refractory Plasmablastic Lymphoma 10 93558 -NCIT:C27859 AIDS-Related Plasmablastic Lymphoma 10 93559 -NCIT:C38160 AIDS-Related Plasmablastic Lymphoma of Mucosa Site 11 93560 -NCIT:C9016 AIDS-Related Plasmablastic Lymphoma of the Oral Mucosa 12 93561 -NCIT:C38159 Plasmablastic Lymphoma of Mucosa Site 10 93562 -NCIT:C38160 AIDS-Related Plasmablastic Lymphoma of Mucosa Site 11 93563 -NCIT:C9016 AIDS-Related Plasmablastic Lymphoma of the Oral Mucosa 12 93564 -NCIT:C80290 Plasmablastic Lymphoma of the Oral Mucosa 11 93565 -NCIT:C9016 AIDS-Related Plasmablastic Lymphoma of the Oral Mucosa 12 93566 -NCIT:C45216 Primary Cutaneous Plasmablastic Lymphoma 10 93567 -NCIT:C7225 ALK-Positive Large B-Cell Lymphoma 9 93568 -NCIT:C188790 Recurrent ALK-Positive Large B-Cell Lymphoma 10 93569 -NCIT:C188791 Refractory ALK-Positive Large B-Cell Lymphoma 10 93570 -NCIT:C7246 Diffuse Large B-Cell Lymphoma Post-Transplant Lymphoproliferative Disorder 9 93571 -NCIT:C7247 Anaplastic Lymphoma Post-Transplant Lymphoproliferative Disorder 10 93572 -NCIT:C7248 Centroblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 10 93573 -NCIT:C7249 Immunoblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 10 93574 -NCIT:C7253 Methotrexate-Associated Diffuse Large B-Cell Lymphoma 9 93575 -NCIT:C7308 Splenic Diffuse Large B-Cell Lymphoma 9 93576 -NCIT:C7615 Adult Diffuse Large B-Cell Lymphoma 9 93577 -NCIT:C115150 Adult Grade III Lymphomatoid Granulomatosis 10 93578 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 11 93579 -NCIT:C188457 Adult EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 93580 -NCIT:C7873 Adult Immunoblastic Lymphoma 10 93581 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 11 93582 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 11 93583 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 12 93584 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 12 93585 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 11 93586 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 11 93587 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 11 93588 -NCIT:C7616 Childhood Diffuse Large B-Cell Lymphoma 9 93589 -NCIT:C115204 Childhood Grade III Lymphomatoid Granulomatosis 10 93590 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 11 93591 -NCIT:C188455 Childhood Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 93592 -NCIT:C188456 Childhood EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 93593 -NCIT:C9079 Childhood Immunoblastic Lymphoma 10 93594 -NCIT:C7933 Grade III Lymphomatoid Granulomatosis 9 93595 -NCIT:C115150 Adult Grade III Lymphomatoid Granulomatosis 10 93596 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 11 93597 -NCIT:C115204 Childhood Grade III Lymphomatoid Granulomatosis 10 93598 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 11 93599 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 10 93600 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 11 93601 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 11 93602 -NCIT:C80280 Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 93603 -NCIT:C148392 Diffuse Large B-Cell Lymphoma, Not Otherwise Specified Molecular Subtypes 10 93604 -NCIT:C148394 MCD Diffuse Large B-Cell Lymphoma 11 93605 -NCIT:C148395 BN2 Diffuse Large B-Cell Lymphoma 11 93606 -NCIT:C148396 N1 Diffuse Large B-Cell Lymphoma 11 93607 -NCIT:C148398 EZB Diffuse Large B-Cell Lymphoma 11 93608 -NCIT:C187445 ST2 Diffuse Large B-Cell Lymphoma 11 93609 -NCIT:C187447 A53 Diffuse Large B-Cell Lymphoma 11 93610 -NCIT:C165240 Recurrent Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 93611 -NCIT:C160230 Recurrent Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 11 93612 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 11 93613 -NCIT:C182035 Recurrent Immunoblastic Lymphoma 11 93614 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 12 93615 -NCIT:C8926 Recurrent Centroblastic Lymphoma 11 93616 -NCIT:C165241 Refractory Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 93617 -NCIT:C160238 Refractory Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 11 93618 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 11 93619 -NCIT:C182034 Refractory Immunoblastic Lymphoma 11 93620 -NCIT:C8927 Refractory Centroblastic Lymphoma 11 93621 -NCIT:C3461 Immunoblastic Lymphoma 10 93622 -NCIT:C182034 Refractory Immunoblastic Lymphoma 11 93623 -NCIT:C182035 Recurrent Immunoblastic Lymphoma 11 93624 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 12 93625 -NCIT:C7249 Immunoblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 11 93626 -NCIT:C7263 Thyroid Gland Immunoblastic Lymphoma 11 93627 -NCIT:C7873 Adult Immunoblastic Lymphoma 11 93628 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 12 93629 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 12 93630 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 13 93631 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 13 93632 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 12 93633 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 12 93634 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 12 93635 -NCIT:C8285 AIDS-Related Immunoblastic Lymphoma 11 93636 -NCIT:C9079 Childhood Immunoblastic Lymphoma 11 93637 -NCIT:C4074 Centroblastic Lymphoma 10 93638 -NCIT:C141263 Centroblastic Lymphoma by Ann Arbor Stage 11 93639 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 12 93640 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 12 93641 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 12 93642 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 12 93643 -NCIT:C7248 Centroblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 11 93644 -NCIT:C8926 Recurrent Centroblastic Lymphoma 11 93645 -NCIT:C8927 Refractory Centroblastic Lymphoma 11 93646 -NCIT:C45219 Diffuse Large B-Cell Lymphoma, Not Otherwise Specified by Gene Expression Profile 10 93647 -NCIT:C36080 Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 11 93648 -NCIT:C160230 Recurrent Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 12 93649 -NCIT:C160238 Refractory Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 12 93650 -NCIT:C36081 Diffuse Large B-Cell Lymphoma Activated B-Cell Type 11 93651 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 12 93652 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 12 93653 -NCIT:C45231 Diffuse Large B-Cell Lymphoma Unclassifiable 11 93654 -NCIT:C6916 Anaplastic Lymphoma 10 93655 -NCIT:C7247 Anaplastic Lymphoma Post-Transplant Lymphoproliferative Disorder 11 93656 -NCIT:C80281 EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 93657 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 93658 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 93659 -NCIT:C188456 Childhood EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 93660 -NCIT:C188457 Adult EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 93661 -NCIT:C80289 Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 9 93662 -NCIT:C183140 Recurrent Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 10 93663 -NCIT:C183142 Refractory Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 10 93664 -NCIT:C45691 Pyothorax-Associated Lymphoma 10 93665 -NCIT:C8852 Recurrent Diffuse Large B-Cell Lymphoma 9 93666 -NCIT:C138015 Recurrent Extranodal Diffuse Large B-cell Lymphoma 10 93667 -NCIT:C138025 Recurrent Intravascular Large B-Cell Lymphoma 10 93668 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 93669 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 93670 -NCIT:C156696 Recurrent T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 10 93671 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 10 93672 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 93673 -NCIT:C157679 Recurrent Primary Effusion Lymphoma 10 93674 -NCIT:C157683 Recurrent Plasmablastic Lymphoma 10 93675 -NCIT:C160229 Recurrent High Grade B-Cell Lymphoma 10 93676 -NCIT:C151980 Recurrent High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 11 93677 -NCIT:C162451 Recurrent High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 11 93678 -NCIT:C188788 Recurrent High Grade B-Cell Lymphoma, Not Otherwise Specified 11 93679 -NCIT:C165240 Recurrent Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 93680 -NCIT:C160230 Recurrent Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 11 93681 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 11 93682 -NCIT:C182035 Recurrent Immunoblastic Lymphoma 11 93683 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 12 93684 -NCIT:C8926 Recurrent Centroblastic Lymphoma 11 93685 -NCIT:C183140 Recurrent Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 10 93686 -NCIT:C188790 Recurrent ALK-Positive Large B-Cell Lymphoma 10 93687 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 10 93688 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 11 93689 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 11 93690 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 93691 -NCIT:C8853 Refractory Diffuse Large B-Cell Lymphoma 9 93692 -NCIT:C138018 Refractory Extranodal Diffuse Large B-cell Lymphoma 10 93693 -NCIT:C138026 Refractory Intravascular Large B-Cell Lymphoma 10 93694 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 93695 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 93696 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 10 93697 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 93698 -NCIT:C157678 Refractory T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 10 93699 -NCIT:C157680 Refractory Primary Effusion Lymphoma 10 93700 -NCIT:C157684 Refractory Plasmablastic Lymphoma 10 93701 -NCIT:C160233 Refractory High Grade B-Cell Lymphoma 10 93702 -NCIT:C151979 Refractory High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 11 93703 -NCIT:C162453 Refractory High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 11 93704 -NCIT:C188789 Refractory High Grade B-Cell Lymphoma, Not Otherwise Specified 11 93705 -NCIT:C165241 Refractory Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 93706 -NCIT:C160238 Refractory Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 11 93707 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 11 93708 -NCIT:C182034 Refractory Immunoblastic Lymphoma 11 93709 -NCIT:C8927 Refractory Centroblastic Lymphoma 11 93710 -NCIT:C183142 Refractory Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 10 93711 -NCIT:C188791 Refractory ALK-Positive Large B-Cell Lymphoma 10 93712 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 93713 -NCIT:C9280 Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 93714 -NCIT:C141262 Primary Mediastinal (Thymic) Large B-Cell Lymphoma by Ann Arbor Stage 10 93715 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 93716 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 93717 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 93718 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 93719 -NCIT:C188455 Childhood Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 93720 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 93721 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 93722 -NCIT:C9496 T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 9 93723 -NCIT:C156696 Recurrent T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 10 93724 -NCIT:C157678 Refractory T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 10 93725 -NCIT:C45215 Primary Cutaneous T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 10 93726 -NCIT:C7182 B-Cell Proliferation of Uncertain Malignant Potential 7 93727 -NCIT:C138181 In Situ Follicular Neoplasia 8 93728 -NCIT:C138191 In Situ Mantle Cell Neoplasia 8 93729 -NCIT:C157343 Monoclonal Gammopathy of Renal Significance 8 93730 -NCIT:C3996 Monoclonal Gammopathy of Undetermined Significance 8 93731 -NCIT:C150566 IgM Monoclonal Gammopathy of Undetermined Significance 9 93732 -NCIT:C150588 Non-IgM Monoclonal Gammopathy of Undetermined Significance 9 93733 -NCIT:C7183 Polymorphic Post-Transplant Lymphoproliferative Disorder 8 93734 -NCIT:C157476 Recurrent Polymorphic Post-Transplant Lymphoproliferative Disorder 9 93735 -NCIT:C157477 Refractory Polymorphic Post-Transplant Lymphoproliferative Disorder 9 93736 -NCIT:C7930 Lymphomatoid Granulomatosis 8 93737 -NCIT:C123392 Childhood Lymphomatoid Granulomatosis 9 93738 -NCIT:C115204 Childhood Grade III Lymphomatoid Granulomatosis 10 93739 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 11 93740 -NCIT:C123393 Recurrent Childhood Lymphomatoid Granulomatosis 10 93741 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 11 93742 -NCIT:C186662 Central Nervous System Lymphomatoid Granulomatosis 9 93743 -NCIT:C45267 Cutaneous Lymphomatoid Granulomatosis 9 93744 -NCIT:C45607 Pulmonary Lymphomatoid Granulomatosis 9 93745 -NCIT:C7931 Grade I Lymphomatoid Granulomatosis 9 93746 -NCIT:C115430 Recurrent Grade I Lymphomatoid Granulomatosis 10 93747 -NCIT:C7932 Grade II Lymphomatoid Granulomatosis 9 93748 -NCIT:C115431 Recurrent Grade II Lymphomatoid Granulomatosis 10 93749 -NCIT:C7933 Grade III Lymphomatoid Granulomatosis 9 93750 -NCIT:C115150 Adult Grade III Lymphomatoid Granulomatosis 10 93751 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 11 93752 -NCIT:C115204 Childhood Grade III Lymphomatoid Granulomatosis 10 93753 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 11 93754 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 10 93755 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 11 93756 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 11 93757 -NCIT:C7934 Recurrent Lymphomatoid Granulomatosis 9 93758 -NCIT:C115430 Recurrent Grade I Lymphomatoid Granulomatosis 10 93759 -NCIT:C115431 Recurrent Grade II Lymphomatoid Granulomatosis 10 93760 -NCIT:C123393 Recurrent Childhood Lymphomatoid Granulomatosis 10 93761 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 11 93762 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 10 93763 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 11 93764 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 11 93765 -NCIT:C7237 Monomorphic B-Cell Post-Transplant Lymphoproliferative Disorder 7 93766 -NCIT:C7240 Plasma Cell Post-Transplant Lymphoproliferative Disorder 8 93767 -NCIT:C7241 Plasmacytoma-Like Post-Transplant Lymphoproliferative Disorder 9 93768 -NCIT:C7242 Plasma Cell Myeloma Post-Transplant Lymphoproliferative Disorder 9 93769 -NCIT:C7244 Burkitt Lymphoma Post-Transplant Lymphoproliferative Disorder 8 93770 -NCIT:C7245 Burkitt-Like Lymphoma Post-Transplant Lymphoproliferative Disorder 9 93771 -NCIT:C7246 Diffuse Large B-Cell Lymphoma Post-Transplant Lymphoproliferative Disorder 8 93772 -NCIT:C7247 Anaplastic Lymphoma Post-Transplant Lymphoproliferative Disorder 9 93773 -NCIT:C7248 Centroblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 9 93774 -NCIT:C7249 Immunoblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 9 93775 -NCIT:C7400 Burkitt Leukemia 7 93776 -NCIT:C151976 Recurrent Burkitt Leukemia 8 93777 -NCIT:C151977 Refractory Burkitt Leukemia 8 93778 -NCIT:C7952 Childhood Burkitt Leukemia 8 93779 -NCIT:C7954 Adult Burkitt Leukemia 8 93780 -NCIT:C7402 Hairy Cell Leukemia 7 93781 -NCIT:C142882 Recurrent Hairy Cell Leukemia 8 93782 -NCIT:C7301 Splenic Manifestation of Hairy Cell Leukemia 8 93783 -NCIT:C8029 Progressive Hairy Cell Leukemia Initial Treatment 8 93784 -NCIT:C8030 Refractory Hairy Cell Leukemia 8 93785 -NCIT:C80308 Splenic B-Cell Lymphoma/Leukemia, Unclassifiable 7 93786 -NCIT:C7401 Hairy Cell Leukemia Variant 8 93787 -NCIT:C171064 Refractory Hairy Cell Leukemia Variant 9 93788 -NCIT:C171065 Recurrent Hairy Cell Leukemia Variant 9 93789 -NCIT:C80309 Splenic Diffuse Red Pulp Small B-Cell Lymphoma 8 93790 -NCIT:C80310 Monoclonal B-Cell Lymphocytosis 7 93791 -NCIT:C27908 T-Cell and NK-Cell Neoplasm 5 93792 -NCIT:C190400 Recurrent T-Cell and NK-Cell Neoplasm 6 93793 -NCIT:C173409 Recurrent Mature T-Cell and NK-Cell Neoplasm 7 93794 -NCIT:C150133 Recurrent T-Cell Prolymphocytic Leukemia 8 93795 -NCIT:C157692 Recurrent Aggressive NK-Cell Leukemia 8 93796 -NCIT:C180985 Recurrent T-Cell Large Granular Lymphocyte Leukemia 8 93797 -NCIT:C8688 Recurrent Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 8 93798 -NCIT:C115439 Recurrent Mycosis Fungoides and Sezary Syndrome 9 93799 -NCIT:C176999 Recurrent Sezary Syndrome 10 93800 -NCIT:C8686 Recurrent Mycosis Fungoides 10 93801 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 93802 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 93803 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 9 93804 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 93805 -NCIT:C157689 Recurrent NK-Cell Lymphoma, Unclassifiable 9 93806 -NCIT:C165789 Recurrent Transformed T-cell Non-Hodgkin Lymphoma 9 93807 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 93808 -NCIT:C168778 Recurrent Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 9 93809 -NCIT:C168780 Recurrent Follicular T-Cell Lymphoma 9 93810 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 9 93811 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 93812 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 93813 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 93814 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 93815 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 93816 -NCIT:C8686 Recurrent Mycosis Fungoides 10 93817 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 93818 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 9 93819 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 9 93820 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 9 93821 -NCIT:C9250 Recurrent Anaplastic Large Cell Lymphoma 9 93822 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 10 93823 -NCIT:C162688 Recurrent Systemic Anaplastic Large Cell Lymphoma 10 93824 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 11 93825 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 93826 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 93827 -NCIT:C8663 Recurrent T-Cell Non-Hodgkin Lymphoma 7 93828 -NCIT:C178554 Recurrent Aggressive T-Cell Non-Hodgkin Lymphoma 8 93829 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 93830 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 9 93831 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 93832 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 93833 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 9 93834 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 93835 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 93836 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 9 93837 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 9 93838 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 9 93839 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 9 93840 -NCIT:C183513 Recurrent Indolent T-Cell Non-Hodgkin Lymphoma 8 93841 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 93842 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 93843 -NCIT:C8686 Recurrent Mycosis Fungoides 9 93844 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 93845 -NCIT:C8688 Recurrent Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 8 93846 -NCIT:C115439 Recurrent Mycosis Fungoides and Sezary Syndrome 9 93847 -NCIT:C176999 Recurrent Sezary Syndrome 10 93848 -NCIT:C8686 Recurrent Mycosis Fungoides 10 93849 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 93850 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 93851 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 9 93852 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 93853 -NCIT:C157689 Recurrent NK-Cell Lymphoma, Unclassifiable 9 93854 -NCIT:C165789 Recurrent Transformed T-cell Non-Hodgkin Lymphoma 9 93855 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 93856 -NCIT:C168778 Recurrent Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 9 93857 -NCIT:C168780 Recurrent Follicular T-Cell Lymphoma 9 93858 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 9 93859 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 93860 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 93861 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 93862 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 93863 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 93864 -NCIT:C8686 Recurrent Mycosis Fungoides 10 93865 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 93866 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 9 93867 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 9 93868 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 9 93869 -NCIT:C9250 Recurrent Anaplastic Large Cell Lymphoma 9 93870 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 10 93871 -NCIT:C162688 Recurrent Systemic Anaplastic Large Cell Lymphoma 10 93872 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 11 93873 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 93874 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 93875 -NCIT:C8695 Recurrent T Lymphoblastic Leukemia/Lymphoma 7 93876 -NCIT:C150131 Recurrent T Acute Lymphoblastic Leukemia 8 93877 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 9 93878 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 8 93879 -NCIT:C190401 Refractory T-Cell and NK-Cell Neoplasm 6 93880 -NCIT:C173411 Refractory Mature T-Cell and NK-Cell Neoplasm 7 93881 -NCIT:C157691 Refractory T-Cell Prolymphocytic Leukemia 8 93882 -NCIT:C157693 Refractory Aggressive NK-Cell Leukemia 8 93883 -NCIT:C180986 Refractory T-Cell Large Granular Lymphocyte Leukemia 8 93884 -NCIT:C8689 Refractory Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 8 93885 -NCIT:C148129 Refractory Mycosis Fungoides and Sezary Syndrome 9 93886 -NCIT:C177000 Refractory Sezary Syndrome 10 93887 -NCIT:C8687 Refractory Mycosis Fungoides 10 93888 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 93889 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 9 93890 -NCIT:C157690 Refractory NK-Cell Lymphoma, Unclassifiable 9 93891 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 93892 -NCIT:C165791 Refractory Transformed T-cell Non-Hodgkin Lymphoma 9 93893 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 93894 -NCIT:C168779 Refractory Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 9 93895 -NCIT:C168781 Refractory Follicular T-Cell Lymphoma 9 93896 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 9 93897 -NCIT:C8658 Refractory Anaplastic Large Cell Lymphoma 9 93898 -NCIT:C162689 Refractory Systemic Anaplastic Large Cell Lymphoma 10 93899 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 11 93900 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 93901 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 93902 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 9 93903 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 9 93904 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 9 93905 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 93906 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 93907 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 93908 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 93909 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 93910 -NCIT:C8687 Refractory Mycosis Fungoides 10 93911 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 93912 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 93913 -NCIT:C8664 Refractory T-Cell Non-Hodgkin Lymphoma 7 93914 -NCIT:C178556 Refractory Aggressive T-Cell Non-Hodgkin Lymphoma 8 93915 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 9 93916 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 93917 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 93918 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 93919 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 93920 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 9 93921 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 9 93922 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 9 93923 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 9 93924 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 9 93925 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 93926 -NCIT:C183515 Refractory Indolent T-Cell Non-Hodgkin Lymphoma 8 93927 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 93928 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 93929 -NCIT:C8687 Refractory Mycosis Fungoides 9 93930 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 93931 -NCIT:C8689 Refractory Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 8 93932 -NCIT:C148129 Refractory Mycosis Fungoides and Sezary Syndrome 9 93933 -NCIT:C177000 Refractory Sezary Syndrome 10 93934 -NCIT:C8687 Refractory Mycosis Fungoides 10 93935 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 93936 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 9 93937 -NCIT:C157690 Refractory NK-Cell Lymphoma, Unclassifiable 9 93938 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 93939 -NCIT:C165791 Refractory Transformed T-cell Non-Hodgkin Lymphoma 9 93940 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 93941 -NCIT:C168779 Refractory Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 9 93942 -NCIT:C168781 Refractory Follicular T-Cell Lymphoma 9 93943 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 9 93944 -NCIT:C8658 Refractory Anaplastic Large Cell Lymphoma 9 93945 -NCIT:C162689 Refractory Systemic Anaplastic Large Cell Lymphoma 10 93946 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 11 93947 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 93948 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 93949 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 9 93950 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 9 93951 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 9 93952 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 93953 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 93954 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 93955 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 93956 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 93957 -NCIT:C8687 Refractory Mycosis Fungoides 10 93958 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 93959 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 93960 -NCIT:C8696 Refractory T Lymphoblastic Leukemia/Lymphoma 7 93961 -NCIT:C150510 Refractory T Acute Lymphoblastic Leukemia 8 93962 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 8 93963 -NCIT:C27909 Mature T-Cell and NK-Cell Neoplasm 6 93964 -NCIT:C173409 Recurrent Mature T-Cell and NK-Cell Neoplasm 7 93965 -NCIT:C150133 Recurrent T-Cell Prolymphocytic Leukemia 8 93966 -NCIT:C157692 Recurrent Aggressive NK-Cell Leukemia 8 93967 -NCIT:C180985 Recurrent T-Cell Large Granular Lymphocyte Leukemia 8 93968 -NCIT:C8688 Recurrent Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 8 93969 -NCIT:C115439 Recurrent Mycosis Fungoides and Sezary Syndrome 9 93970 -NCIT:C176999 Recurrent Sezary Syndrome 10 93971 -NCIT:C8686 Recurrent Mycosis Fungoides 10 93972 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 93973 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 93974 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 9 93975 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 93976 -NCIT:C157689 Recurrent NK-Cell Lymphoma, Unclassifiable 9 93977 -NCIT:C165789 Recurrent Transformed T-cell Non-Hodgkin Lymphoma 9 93978 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 93979 -NCIT:C168778 Recurrent Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 9 93980 -NCIT:C168780 Recurrent Follicular T-Cell Lymphoma 9 93981 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 9 93982 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 93983 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 93984 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 93985 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 93986 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 93987 -NCIT:C8686 Recurrent Mycosis Fungoides 10 93988 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 93989 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 9 93990 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 9 93991 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 9 93992 -NCIT:C9250 Recurrent Anaplastic Large Cell Lymphoma 9 93993 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 10 93994 -NCIT:C162688 Recurrent Systemic Anaplastic Large Cell Lymphoma 10 93995 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 11 93996 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 93997 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 93998 -NCIT:C173411 Refractory Mature T-Cell and NK-Cell Neoplasm 7 93999 -NCIT:C157691 Refractory T-Cell Prolymphocytic Leukemia 8 94000 -NCIT:C157693 Refractory Aggressive NK-Cell Leukemia 8 94001 -NCIT:C180986 Refractory T-Cell Large Granular Lymphocyte Leukemia 8 94002 -NCIT:C8689 Refractory Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 8 94003 -NCIT:C148129 Refractory Mycosis Fungoides and Sezary Syndrome 9 94004 -NCIT:C177000 Refractory Sezary Syndrome 10 94005 -NCIT:C8687 Refractory Mycosis Fungoides 10 94006 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 94007 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 9 94008 -NCIT:C157690 Refractory NK-Cell Lymphoma, Unclassifiable 9 94009 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 94010 -NCIT:C165791 Refractory Transformed T-cell Non-Hodgkin Lymphoma 9 94011 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 94012 -NCIT:C168779 Refractory Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 9 94013 -NCIT:C168781 Refractory Follicular T-Cell Lymphoma 9 94014 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 9 94015 -NCIT:C8658 Refractory Anaplastic Large Cell Lymphoma 9 94016 -NCIT:C162689 Refractory Systemic Anaplastic Large Cell Lymphoma 10 94017 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 11 94018 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 94019 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 94020 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 9 94021 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 9 94022 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 9 94023 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 94024 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 94025 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 94026 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 94027 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 94028 -NCIT:C8687 Refractory Mycosis Fungoides 10 94029 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 94030 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 94031 -NCIT:C27897 T-Cell Proliferation of Uncertain Malignant Potential 7 94032 -NCIT:C139021 Indolent T-Cell Lymphoproliferative Disorder of the Gastrointestinal Tract 8 94033 -NCIT:C3721 Lymphomatoid Papulosis 8 94034 -NCIT:C139014 Type D Lymphomatoid Papulosis 9 94035 -NCIT:C139015 Type E Lymphomatoid Papulosis 9 94036 -NCIT:C139017 Lymphomatoid Papulosis with DUSP22-IRF4 Gene Rearrangement 9 94037 -NCIT:C7197 Type A Lymphomatoid Papulosis 9 94038 -NCIT:C7198 Type B Lymphomatoid Papulosis 9 94039 -NCIT:C7199 Type C Lymphomatoid Papulosis 9 94040 -NCIT:C7196 Borderline Primary Cutaneous CD30-Positive T-Cell Lymphoproliferative Disorder 8 94041 -NCIT:C7199 Type C Lymphomatoid Papulosis 9 94042 -NCIT:C7200 Anaplastic Large Cell Lymphoma, Lymphomatoid Papulosis-Like Histology 9 94043 -NCIT:C3468 Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 7 94044 -NCIT:C128696 Peripheral T-Cell Lymphoma, Unclassifiable 8 94045 -NCIT:C128697 NK-Cell Lymphoma, Unclassifiable 8 94046 -NCIT:C157689 Recurrent NK-Cell Lymphoma, Unclassifiable 9 94047 -NCIT:C157690 Refractory NK-Cell Lymphoma, Unclassifiable 9 94048 -NCIT:C129600 Central Nervous System Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 8 94049 -NCIT:C5322 Central Nervous System Anaplastic Large Cell Lymphoma 9 94050 -NCIT:C129598 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Positive 10 94051 -NCIT:C129599 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Negative 10 94052 -NCIT:C139005 Nodal Peripheral T-Cell Lymphoma of T Follicular Helper Cell Origin 8 94053 -NCIT:C139011 Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 9 94054 -NCIT:C168778 Recurrent Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 10 94055 -NCIT:C168779 Refractory Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 10 94056 -NCIT:C7528 Angioimmunoblastic T-Cell Lymphoma 9 94057 -NCIT:C141294 Angioimmunoblastic T-Cell Lymphoma by Ann Arbor Stage 10 94058 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 11 94059 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 11 94060 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 11 94061 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 11 94062 -NCIT:C45271 Cutaneous Angioimmunoblastic T-Cell Lymphoma 10 94063 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 10 94064 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 10 94065 -NCIT:C80375 Follicular T-Cell Lymphoma 9 94066 -NCIT:C168780 Recurrent Follicular T-Cell Lymphoma 10 94067 -NCIT:C168781 Refractory Follicular T-Cell Lymphoma 10 94068 -NCIT:C141272 Mature T- and NK-Cell Lymphoma by Ann Arbor Stage 8 94069 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 9 94070 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 10 94071 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 10 94072 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 10 94073 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 10 94074 -NCIT:C141284 Noncutaneous Anaplastic Large Cell Lymphoma by Ann Arbor Stage 9 94075 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 10 94076 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94077 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94078 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94079 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94080 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 10 94081 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94082 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 10 94083 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94084 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 10 94085 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94086 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 10 94087 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94088 -NCIT:C141294 Angioimmunoblastic T-Cell Lymphoma by Ann Arbor Stage 9 94089 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 10 94090 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 10 94091 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 10 94092 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 10 94093 -NCIT:C141295 Enteropathy-Associated T-Cell Lymphoma by Ann Arbor Stage 9 94094 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 10 94095 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 10 94096 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 10 94097 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 10 94098 -NCIT:C141296 Nasal Type NK/T-Cell Lymphoma by Ann Arbor Stage 9 94099 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 10 94100 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 10 94101 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 10 94102 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 10 94103 -NCIT:C8690 Ann Arbor Stage I Mature T- and NK-Cell Lymphoma 9 94104 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 10 94105 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 10 94106 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94107 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 10 94108 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 10 94109 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 10 94110 -NCIT:C8691 Ann Arbor Stage II Mature T- and NK-Cell Lymphoma 9 94111 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 10 94112 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 10 94113 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94114 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 10 94115 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 10 94116 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 10 94117 -NCIT:C8692 Ann Arbor Stage III Mature T- and NK-Cell Lymphoma 9 94118 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 10 94119 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 10 94120 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94121 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 10 94122 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 10 94123 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 10 94124 -NCIT:C8693 Ann Arbor Stage IV Mature T- and NK-Cell Lymphoma 9 94125 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 10 94126 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 10 94127 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94128 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 10 94129 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 10 94130 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 10 94131 -NCIT:C150495 Intestinal T-Cell Lymphoma 8 94132 -NCIT:C150505 Intestinal T-Cell Lymphoma, Not Otherwise Specified 9 94133 -NCIT:C4737 Enteropathy-Associated T-Cell Lymphoma 9 94134 -NCIT:C141295 Enteropathy-Associated T-Cell Lymphoma by Ann Arbor Stage 10 94135 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 11 94136 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 11 94137 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 11 94138 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 11 94139 -NCIT:C39610 Small Intestinal Enteropathy-Associated T-Cell Lymphoma 10 94140 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 10 94141 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 10 94142 -NCIT:C96058 Monomorphic Epitheliotropic Intestinal T-Cell Lymphoma 9 94143 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 94144 -NCIT:C150504 Small Intestinal Monomorphic Epitheliotropic T-Cell Lymphoma 10 94145 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 94146 -NCIT:C171300 Indolent T-Cell Non-Hodgkin Lymphoma 8 94147 -NCIT:C3246 Mycosis Fungoides 9 94148 -NCIT:C141143 Mycosis Fungoides by AJCC v7 Stage 10 94149 -NCIT:C7796 Stage I Mycosis Fungoides AJCC v7 11 94150 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 12 94151 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 12 94152 -NCIT:C7798 Stage II Mycosis Fungoides AJCC v7 11 94153 -NCIT:C7800 Stage III Mycosis Fungoides AJCC v7 11 94154 -NCIT:C7802 Stage IV Mycosis Fungoides AJCC v7 11 94155 -NCIT:C165783 Transformed Mycosis Fungoides 10 94156 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 94157 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 94158 -NCIT:C8686 Recurrent Mycosis Fungoides 10 94159 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 94160 -NCIT:C8687 Refractory Mycosis Fungoides 10 94161 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 94162 -NCIT:C39644 Mycosis Fungoides Variant 9 94163 -NCIT:C35464 Granulomatous Slack Skin Disease 10 94164 -NCIT:C35685 Folliculotropic Mycosis Fungoides 10 94165 -NCIT:C35794 Pagetoid Reticulosis 10 94166 -NCIT:C6860 Primary Cutaneous Anaplastic Large Cell Lymphoma 9 94167 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 94168 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 94169 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 10 94170 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 10 94171 -NCIT:C6918 Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 94172 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 94173 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 94174 -NCIT:C3184 Adult T-Cell Leukemia/Lymphoma 8 94175 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 9 94176 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 10 94177 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 10 94178 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 10 94179 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 10 94180 -NCIT:C36265 Acute Adult T-Cell Leukemia/Lymphoma 9 94181 -NCIT:C36266 Lymphomatous Adult T-Cell Leukemia/Lymphoma 9 94182 -NCIT:C36268 Hodgkin-Like Adult T-Cell Leukemia/Lymphoma 9 94183 -NCIT:C45272 Cutaneous Adult T-Cell Leukemia/Lymphoma 9 94184 -NCIT:C7178 Smoldering Adult T-Cell Leukemia/Lymphoma 9 94185 -NCIT:C7179 Chronic Adult T-Cell Leukemia/Lymphoma 9 94186 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 9 94187 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 9 94188 -NCIT:C3467 Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 94189 -NCIT:C172442 Advanced Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 94190 -NCIT:C180374 Early Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 94191 -NCIT:C3246 Mycosis Fungoides 9 94192 -NCIT:C141143 Mycosis Fungoides by AJCC v7 Stage 10 94193 -NCIT:C7796 Stage I Mycosis Fungoides AJCC v7 11 94194 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 12 94195 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 12 94196 -NCIT:C7798 Stage II Mycosis Fungoides AJCC v7 11 94197 -NCIT:C7800 Stage III Mycosis Fungoides AJCC v7 11 94198 -NCIT:C7802 Stage IV Mycosis Fungoides AJCC v7 11 94199 -NCIT:C165783 Transformed Mycosis Fungoides 10 94200 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 94201 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 94202 -NCIT:C8686 Recurrent Mycosis Fungoides 10 94203 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 94204 -NCIT:C8687 Refractory Mycosis Fungoides 10 94205 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 94206 -NCIT:C39644 Mycosis Fungoides Variant 9 94207 -NCIT:C35464 Granulomatous Slack Skin Disease 10 94208 -NCIT:C35685 Folliculotropic Mycosis Fungoides 10 94209 -NCIT:C35794 Pagetoid Reticulosis 10 94210 -NCIT:C45332 Primary Cutaneous Peripheral T-Cell Lymphoma, Rare Subtype 9 94211 -NCIT:C139023 Primary Cutaneous Acral CD8-Positive T-Cell Lymphoma 10 94212 -NCIT:C45339 Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 94213 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 11 94214 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 11 94215 -NCIT:C45340 Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 94216 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 11 94217 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 11 94218 -NCIT:C6860 Primary Cutaneous Anaplastic Large Cell Lymphoma 9 94219 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 94220 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 94221 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 10 94222 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 10 94223 -NCIT:C6918 Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 94224 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 94225 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 94226 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 94227 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 94228 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 94229 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 94230 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 94231 -NCIT:C8686 Recurrent Mycosis Fungoides 10 94232 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 94233 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 94234 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 94235 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 94236 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 94237 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 94238 -NCIT:C8687 Refractory Mycosis Fungoides 10 94239 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 94240 -NCIT:C3720 Anaplastic Large Cell Lymphoma 8 94241 -NCIT:C141284 Noncutaneous Anaplastic Large Cell Lymphoma by Ann Arbor Stage 9 94242 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 10 94243 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94244 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94245 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94246 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94247 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 10 94248 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94249 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 10 94250 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94251 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 10 94252 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94253 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 10 94254 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94255 -NCIT:C166179 Localized Anaplastic Large Cell Lymphoma 9 94256 -NCIT:C166180 Advanced Anaplastic Large Cell Lymphoma 9 94257 -NCIT:C188082 Lung Anaplastic Large Cell Lymphoma 9 94258 -NCIT:C27367 Adult Anaplastic Large Cell Lymphoma 9 94259 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 10 94260 -NCIT:C27366 Adult Systemic Anaplastic Large Cell Lymphoma 10 94261 -NCIT:C37193 Anaplastic Large Cell Lymphoma, ALK-Positive 9 94262 -NCIT:C129598 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Positive 10 94263 -NCIT:C188460 Childhood Anaplastic Large Cell Lymphoma, ALK-Positive 10 94264 -NCIT:C37195 Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 94265 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 11 94266 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 11 94267 -NCIT:C37194 Anaplastic Large Cell Lymphoma, ALK-Negative 9 94268 -NCIT:C129599 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Negative 10 94269 -NCIT:C139012 Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 94270 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 11 94271 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 11 94272 -NCIT:C37196 Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Negative 10 94273 -NCIT:C39674 Anaplastic Large Cell Lymphoma, Giant Cell Rich Subtype 9 94274 -NCIT:C39675 Anaplastic Large Cell Lymphoma, Sarcomatoid Subtype 9 94275 -NCIT:C39676 Anaplastic Large Cell Lymphoma, Signet Ring-Like Subtype 9 94276 -NCIT:C5322 Central Nervous System Anaplastic Large Cell Lymphoma 9 94277 -NCIT:C129598 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Positive 10 94278 -NCIT:C129599 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Negative 10 94279 -NCIT:C5636 Childhood Anaplastic Large Cell Lymphoma 9 94280 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 10 94281 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 10 94282 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94283 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94284 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94285 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94286 -NCIT:C188460 Childhood Anaplastic Large Cell Lymphoma, ALK-Positive 10 94287 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 10 94288 -NCIT:C9471 Childhood Systemic Anaplastic Large Cell Lymphoma 10 94289 -NCIT:C6860 Primary Cutaneous Anaplastic Large Cell Lymphoma 9 94290 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 94291 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 94292 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 10 94293 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 10 94294 -NCIT:C7206 Common Variant Anaplastic Large Cell Lymphoma 9 94295 -NCIT:C7207 Lymphohistiocytic Variant Anaplastic Large Cell Lymphoma 9 94296 -NCIT:C7208 Small Cell Variant Anaplastic Large Cell Lymphoma 9 94297 -NCIT:C8658 Refractory Anaplastic Large Cell Lymphoma 9 94298 -NCIT:C162689 Refractory Systemic Anaplastic Large Cell Lymphoma 10 94299 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 11 94300 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 94301 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 94302 -NCIT:C9250 Recurrent Anaplastic Large Cell Lymphoma 9 94303 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 10 94304 -NCIT:C162688 Recurrent Systemic Anaplastic Large Cell Lymphoma 10 94305 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 11 94306 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 94307 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 94308 -NCIT:C9470 Systemic Anaplastic Large Cell Lymphoma 9 94309 -NCIT:C162688 Recurrent Systemic Anaplastic Large Cell Lymphoma 10 94310 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 11 94311 -NCIT:C162689 Refractory Systemic Anaplastic Large Cell Lymphoma 10 94312 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 11 94313 -NCIT:C27366 Adult Systemic Anaplastic Large Cell Lymphoma 10 94314 -NCIT:C37195 Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 94315 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 11 94316 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 11 94317 -NCIT:C37196 Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Negative 10 94318 -NCIT:C9471 Childhood Systemic Anaplastic Large Cell Lymphoma 10 94319 -NCIT:C4340 Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 94320 -NCIT:C139288 Primary EBV-Positive Nodal T-Cell or NK-Cell Lymphoma 9 94321 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 94322 -NCIT:C188459 Childhood Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 94323 -NCIT:C7205 Lymphoepithelioid Variant Peripheral T-Cell Lymphoma 9 94324 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 94325 -NCIT:C4684 Nasal Type Extranodal NK/T-Cell Lymphoma 8 94326 -NCIT:C115154 Adult Nasal Type Extranodal NK/T-Cell Lymphoma 9 94327 -NCIT:C141296 Nasal Type NK/T-Cell Lymphoma by Ann Arbor Stage 9 94328 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 10 94329 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 10 94330 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 10 94331 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 10 94332 -NCIT:C162468 Testicular Nasal Type Extranodal NK/T-Cell Lymphoma 9 94333 -NCIT:C173172 Sinonasal Extranodal NK/T-Cell Lymphoma 9 94334 -NCIT:C173173 Nasal Cavity Extranodal NK/T-Cell Lymphoma 10 94335 -NCIT:C45268 Cutaneous Nasal Type Extranodal NK/T-Cell Lymphoma 9 94336 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 9 94337 -NCIT:C68692 Childhood Nasal Type Extranodal NK/T-Cell Lymphoma 9 94338 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 9 94339 -NCIT:C5637 Childhood Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 8 94340 -NCIT:C188459 Childhood Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 94341 -NCIT:C5636 Childhood Anaplastic Large Cell Lymphoma 9 94342 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 10 94343 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 10 94344 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94345 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94346 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94347 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94348 -NCIT:C188460 Childhood Anaplastic Large Cell Lymphoma, ALK-Positive 10 94349 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 10 94350 -NCIT:C9471 Childhood Systemic Anaplastic Large Cell Lymphoma 10 94351 -NCIT:C68692 Childhood Nasal Type Extranodal NK/T-Cell Lymphoma 9 94352 -NCIT:C80374 Systemic EBV-Positive T-Cell Lymphoma of Childhood 9 94353 -NCIT:C7252 Methotrexate-Associated Peripheral T-Cell Lymphoma 8 94354 -NCIT:C8459 Hepatosplenic T-Cell Lymphoma 8 94355 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 9 94356 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 9 94357 -NCIT:C8688 Recurrent Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 8 94358 -NCIT:C115439 Recurrent Mycosis Fungoides and Sezary Syndrome 9 94359 -NCIT:C176999 Recurrent Sezary Syndrome 10 94360 -NCIT:C8686 Recurrent Mycosis Fungoides 10 94361 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 94362 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 94363 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 9 94364 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 94365 -NCIT:C157689 Recurrent NK-Cell Lymphoma, Unclassifiable 9 94366 -NCIT:C165789 Recurrent Transformed T-cell Non-Hodgkin Lymphoma 9 94367 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 94368 -NCIT:C168778 Recurrent Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 9 94369 -NCIT:C168780 Recurrent Follicular T-Cell Lymphoma 9 94370 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 9 94371 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 94372 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 94373 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 94374 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 94375 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 94376 -NCIT:C8686 Recurrent Mycosis Fungoides 10 94377 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 94378 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 9 94379 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 9 94380 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 9 94381 -NCIT:C9250 Recurrent Anaplastic Large Cell Lymphoma 9 94382 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 10 94383 -NCIT:C162688 Recurrent Systemic Anaplastic Large Cell Lymphoma 10 94384 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 11 94385 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 94386 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 94387 -NCIT:C8689 Refractory Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 8 94388 -NCIT:C148129 Refractory Mycosis Fungoides and Sezary Syndrome 9 94389 -NCIT:C177000 Refractory Sezary Syndrome 10 94390 -NCIT:C8687 Refractory Mycosis Fungoides 10 94391 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 94392 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 9 94393 -NCIT:C157690 Refractory NK-Cell Lymphoma, Unclassifiable 9 94394 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 94395 -NCIT:C165791 Refractory Transformed T-cell Non-Hodgkin Lymphoma 9 94396 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 94397 -NCIT:C168779 Refractory Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 9 94398 -NCIT:C168781 Refractory Follicular T-Cell Lymphoma 9 94399 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 9 94400 -NCIT:C8658 Refractory Anaplastic Large Cell Lymphoma 9 94401 -NCIT:C162689 Refractory Systemic Anaplastic Large Cell Lymphoma 10 94402 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 11 94403 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 94404 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 94405 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 9 94406 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 9 94407 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 9 94408 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 94409 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 94410 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 94411 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 94412 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 94413 -NCIT:C8687 Refractory Mycosis Fungoides 10 94414 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 94415 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 94416 -NCIT:C9265 Mycosis Fungoides and Sezary Syndrome 8 94417 -NCIT:C115439 Recurrent Mycosis Fungoides and Sezary Syndrome 9 94418 -NCIT:C176999 Recurrent Sezary Syndrome 10 94419 -NCIT:C8686 Recurrent Mycosis Fungoides 10 94420 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 94421 -NCIT:C141142 Mycosis Fungoides and Sezary Syndrome by AJCC v7 Stage 9 94422 -NCIT:C141143 Mycosis Fungoides by AJCC v7 Stage 10 94423 -NCIT:C7796 Stage I Mycosis Fungoides AJCC v7 11 94424 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 12 94425 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 12 94426 -NCIT:C7798 Stage II Mycosis Fungoides AJCC v7 11 94427 -NCIT:C7800 Stage III Mycosis Fungoides AJCC v7 11 94428 -NCIT:C7802 Stage IV Mycosis Fungoides AJCC v7 11 94429 -NCIT:C88150 Stage I Mycosis Fungoides and Sezary Syndrome AJCC v7 10 94430 -NCIT:C7796 Stage I Mycosis Fungoides AJCC v7 11 94431 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 12 94432 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 12 94433 -NCIT:C88151 Stage IA Mycosis Fungoides and Sezary Syndrome AJCC v7 11 94434 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 12 94435 -NCIT:C88152 Stage IB Mycosis Fungoides and Sezary Syndrome AJCC v7 11 94436 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 12 94437 -NCIT:C88153 Stage II Mycosis Fungoides and Sezary Syndrome AJCC v7 10 94438 -NCIT:C7798 Stage II Mycosis Fungoides AJCC v7 11 94439 -NCIT:C88154 Stage IIA Mycosis Fungoides and Sezary Syndrome AJCC v7 11 94440 -NCIT:C88155 Stage IIB Mycosis Fungoides and Sezary Syndrome AJCC v7 11 94441 -NCIT:C88157 Stage III Mycosis Fungoides and Sezary Syndrome AJCC v7 10 94442 -NCIT:C7800 Stage III Mycosis Fungoides AJCC v7 11 94443 -NCIT:C88158 Stage IIIA Mycosis Fungoides and Sezary Syndrome AJCC v7 11 94444 -NCIT:C88159 Stage IIIB Mycosis Fungoides and Sezary Syndrome AJCC v7 11 94445 -NCIT:C88160 Stage IV Mycosis Fungoides and Sezary Syndrome AJCC v7 10 94446 -NCIT:C7802 Stage IV Mycosis Fungoides AJCC v7 11 94447 -NCIT:C88161 Stage IVA Mycosis Fungoides and Sezary Syndrome AJCC v7 11 94448 -NCIT:C88162 Stage IVB Mycosis Fungoides and Sezary Syndrome AJCC v7 11 94449 -NCIT:C141346 Mycosis Fungoides and Sezary Syndrome by AJCC v8 Stage 9 94450 -NCIT:C141347 Stage I Mycosis Fungoides and Sezary Syndrome AJCC v8 10 94451 -NCIT:C141348 Stage IA Mycosis Fungoides and Sezary Syndrome AJCC v8 11 94452 -NCIT:C141349 Stage IB Mycosis Fungoides and Sezary Syndrome AJCC v8 11 94453 -NCIT:C141350 Stage II Mycosis Fungoides and Sezary Syndrome AJCC v8 10 94454 -NCIT:C141351 Stage IIA Mycosis Fungoides and Sezary Syndrome AJCC v8 11 94455 -NCIT:C141352 Stage IIB Mycosis Fungoides and Sezary Syndrome AJCC v8 11 94456 -NCIT:C141353 Stage III Mycosis Fungoides and Sezary Syndrome AJCC v8 10 94457 -NCIT:C141354 Stage IIIA Mycosis Fungoides and Sezary Syndrome AJCC v8 11 94458 -NCIT:C141355 Stage IIIB Mycosis Fungoides and Sezary Syndrome AJCC v8 11 94459 -NCIT:C141356 Stage IV Mycosis Fungoides and Sezary Syndrome AJCC v8 10 94460 -NCIT:C141357 Stage IVA1 Mycosis Fungoides and Sezary Syndrome AJCC v8 11 94461 -NCIT:C141358 Stage IVA2 Mycosis Fungoides and Sezary Syndrome AJCC v8 11 94462 -NCIT:C141359 Stage IVB Mycosis Fungoides and Sezary Syndrome AJCC v8 11 94463 -NCIT:C148129 Refractory Mycosis Fungoides and Sezary Syndrome 9 94464 -NCIT:C177000 Refractory Sezary Syndrome 10 94465 -NCIT:C8687 Refractory Mycosis Fungoides 10 94466 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 94467 -NCIT:C3246 Mycosis Fungoides 9 94468 -NCIT:C141143 Mycosis Fungoides by AJCC v7 Stage 10 94469 -NCIT:C7796 Stage I Mycosis Fungoides AJCC v7 11 94470 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 12 94471 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 12 94472 -NCIT:C7798 Stage II Mycosis Fungoides AJCC v7 11 94473 -NCIT:C7800 Stage III Mycosis Fungoides AJCC v7 11 94474 -NCIT:C7802 Stage IV Mycosis Fungoides AJCC v7 11 94475 -NCIT:C165783 Transformed Mycosis Fungoides 10 94476 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 94477 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 94478 -NCIT:C8686 Recurrent Mycosis Fungoides 10 94479 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 94480 -NCIT:C8687 Refractory Mycosis Fungoides 10 94481 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 94482 -NCIT:C3366 Sezary Syndrome 9 94483 -NCIT:C176999 Recurrent Sezary Syndrome 10 94484 -NCIT:C177000 Refractory Sezary Syndrome 10 94485 -NCIT:C39644 Mycosis Fungoides Variant 9 94486 -NCIT:C35464 Granulomatous Slack Skin Disease 10 94487 -NCIT:C35685 Folliculotropic Mycosis Fungoides 10 94488 -NCIT:C35794 Pagetoid Reticulosis 10 94489 -NCIT:C39591 Chronic Lymphoproliferative Disorder of NK-Cells 7 94490 -NCIT:C45250 Cutaneous Mature T-Cell and NK-Cell Neoplasm 7 94491 -NCIT:C3467 Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 94492 -NCIT:C172442 Advanced Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 94493 -NCIT:C180374 Early Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 94494 -NCIT:C3246 Mycosis Fungoides 9 94495 -NCIT:C141143 Mycosis Fungoides by AJCC v7 Stage 10 94496 -NCIT:C7796 Stage I Mycosis Fungoides AJCC v7 11 94497 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 12 94498 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 12 94499 -NCIT:C7798 Stage II Mycosis Fungoides AJCC v7 11 94500 -NCIT:C7800 Stage III Mycosis Fungoides AJCC v7 11 94501 -NCIT:C7802 Stage IV Mycosis Fungoides AJCC v7 11 94502 -NCIT:C165783 Transformed Mycosis Fungoides 10 94503 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 94504 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 94505 -NCIT:C8686 Recurrent Mycosis Fungoides 10 94506 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 94507 -NCIT:C8687 Refractory Mycosis Fungoides 10 94508 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 94509 -NCIT:C39644 Mycosis Fungoides Variant 9 94510 -NCIT:C35464 Granulomatous Slack Skin Disease 10 94511 -NCIT:C35685 Folliculotropic Mycosis Fungoides 10 94512 -NCIT:C35794 Pagetoid Reticulosis 10 94513 -NCIT:C45332 Primary Cutaneous Peripheral T-Cell Lymphoma, Rare Subtype 9 94514 -NCIT:C139023 Primary Cutaneous Acral CD8-Positive T-Cell Lymphoma 10 94515 -NCIT:C45339 Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 94516 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 11 94517 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 11 94518 -NCIT:C45340 Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 94519 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 11 94520 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 11 94521 -NCIT:C6860 Primary Cutaneous Anaplastic Large Cell Lymphoma 9 94522 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 94523 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 94524 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 10 94525 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 10 94526 -NCIT:C6918 Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 94527 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 94528 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 94529 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 94530 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 94531 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 94532 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 94533 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 94534 -NCIT:C8686 Recurrent Mycosis Fungoides 10 94535 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 94536 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 94537 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 94538 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 94539 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 94540 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 94541 -NCIT:C8687 Refractory Mycosis Fungoides 10 94542 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 94543 -NCIT:C3721 Lymphomatoid Papulosis 8 94544 -NCIT:C139014 Type D Lymphomatoid Papulosis 9 94545 -NCIT:C139015 Type E Lymphomatoid Papulosis 9 94546 -NCIT:C139017 Lymphomatoid Papulosis with DUSP22-IRF4 Gene Rearrangement 9 94547 -NCIT:C7197 Type A Lymphomatoid Papulosis 9 94548 -NCIT:C7198 Type B Lymphomatoid Papulosis 9 94549 -NCIT:C7199 Type C Lymphomatoid Papulosis 9 94550 -NCIT:C45268 Cutaneous Nasal Type Extranodal NK/T-Cell Lymphoma 8 94551 -NCIT:C45271 Cutaneous Angioimmunoblastic T-Cell Lymphoma 8 94552 -NCIT:C45272 Cutaneous Adult T-Cell Leukemia/Lymphoma 8 94553 -NCIT:C45366 Primary Cutaneous CD4-Positive Small/Medium T-Cell Lymphoproliferative Disorder 8 94554 -NCIT:C7195 Primary Cutaneous CD30-Positive T-Cell Lymphoproliferative Disorder 8 94555 -NCIT:C6860 Primary Cutaneous Anaplastic Large Cell Lymphoma 9 94556 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 94557 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 94558 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 10 94559 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 10 94560 -NCIT:C7196 Borderline Primary Cutaneous CD30-Positive T-Cell Lymphoproliferative Disorder 9 94561 -NCIT:C7199 Type C Lymphomatoid Papulosis 10 94562 -NCIT:C7200 Anaplastic Large Cell Lymphoma, Lymphomatoid Papulosis-Like Histology 10 94563 -NCIT:C7197 Type A Lymphomatoid Papulosis 9 94564 -NCIT:C4664 T-Cell Large Granular Lymphocyte Leukemia 7 94565 -NCIT:C180985 Recurrent T-Cell Large Granular Lymphocyte Leukemia 8 94566 -NCIT:C180986 Refractory T-Cell Large Granular Lymphocyte Leukemia 8 94567 -NCIT:C39584 T-Cell Large Granular Lymphocyte Leukemia, Common Variant 8 94568 -NCIT:C39586 T-Cell Large Granular Lymphocyte Leukemia Expressing the T-Cell Receptor Gamma-Delta 8 94569 -NCIT:C7302 Splenic Manifestation of T-Cell Large Granular Lymphocyte Leukemia 8 94570 -NCIT:C4752 T-Cell Prolymphocytic Leukemia 7 94571 -NCIT:C150133 Recurrent T-Cell Prolymphocytic Leukemia 8 94572 -NCIT:C157691 Refractory T-Cell Prolymphocytic Leukemia 8 94573 -NCIT:C36270 T-Cell Prolymphocytic Leukemia, Small Cell Variant 8 94574 -NCIT:C36271 T-Cell Prolymphocytic Leukemia, Cerebriform Cell Variant 8 94575 -NCIT:C7298 Splenic Manifestation of T-Cell Prolymphocytic Leukemia 8 94576 -NCIT:C80373 EBV-Positive T-Cell Lymphoproliferative Disorder of Childhood 7 94577 -NCIT:C45327 Hydroa Vacciniforme-Like Lymphoproliferative Disorder 8 94578 -NCIT:C80374 Systemic EBV-Positive T-Cell Lymphoma of Childhood 8 94579 -NCIT:C8647 Aggressive NK-Cell Leukemia 7 94580 -NCIT:C157692 Recurrent Aggressive NK-Cell Leukemia 8 94581 -NCIT:C157693 Refractory Aggressive NK-Cell Leukemia 8 94582 -NCIT:C3466 T-Cell Non-Hodgkin Lymphoma 6 94583 -NCIT:C141247 T-Cell Non-Hodgkin Lymphoma by Ann Arbor Stage 7 94584 -NCIT:C141272 Mature T- and NK-Cell Lymphoma by Ann Arbor Stage 8 94585 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 9 94586 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 10 94587 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 10 94588 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 10 94589 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 10 94590 -NCIT:C141284 Noncutaneous Anaplastic Large Cell Lymphoma by Ann Arbor Stage 9 94591 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 10 94592 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94593 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94594 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94595 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94596 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 10 94597 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94598 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 10 94599 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94600 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 10 94601 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94602 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 10 94603 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94604 -NCIT:C141294 Angioimmunoblastic T-Cell Lymphoma by Ann Arbor Stage 9 94605 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 10 94606 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 10 94607 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 10 94608 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 10 94609 -NCIT:C141295 Enteropathy-Associated T-Cell Lymphoma by Ann Arbor Stage 9 94610 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 10 94611 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 10 94612 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 10 94613 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 10 94614 -NCIT:C141296 Nasal Type NK/T-Cell Lymphoma by Ann Arbor Stage 9 94615 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 10 94616 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 10 94617 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 10 94618 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 10 94619 -NCIT:C8690 Ann Arbor Stage I Mature T- and NK-Cell Lymphoma 9 94620 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 10 94621 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 10 94622 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94623 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 10 94624 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 10 94625 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 10 94626 -NCIT:C8691 Ann Arbor Stage II Mature T- and NK-Cell Lymphoma 9 94627 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 10 94628 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 10 94629 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94630 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 10 94631 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 10 94632 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 10 94633 -NCIT:C8692 Ann Arbor Stage III Mature T- and NK-Cell Lymphoma 9 94634 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 10 94635 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 10 94636 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94637 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 10 94638 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 10 94639 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 10 94640 -NCIT:C8693 Ann Arbor Stage IV Mature T- and NK-Cell Lymphoma 9 94641 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 10 94642 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 10 94643 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94644 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 10 94645 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 10 94646 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 10 94647 -NCIT:C8665 Ann Arbor Stage I T-Cell Non-Hodgkin Lymphoma 8 94648 -NCIT:C8690 Ann Arbor Stage I Mature T- and NK-Cell Lymphoma 9 94649 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 10 94650 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 10 94651 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94652 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 10 94653 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 10 94654 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 10 94655 -NCIT:C8666 Ann Arbor Stage II T-Cell Non-Hodgkin Lymphoma 8 94656 -NCIT:C8691 Ann Arbor Stage II Mature T- and NK-Cell Lymphoma 9 94657 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 10 94658 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 10 94659 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94660 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 10 94661 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 10 94662 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 10 94663 -NCIT:C8667 Ann Arbor Stage III T-Cell Non-Hodgkin Lymphoma 8 94664 -NCIT:C8692 Ann Arbor Stage III Mature T- and NK-Cell Lymphoma 9 94665 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 10 94666 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 10 94667 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94668 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 10 94669 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 10 94670 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 10 94671 -NCIT:C8668 Ann Arbor Stage IV T-Cell Non-Hodgkin Lymphoma 8 94672 -NCIT:C8693 Ann Arbor Stage IV Mature T- and NK-Cell Lymphoma 9 94673 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 10 94674 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 10 94675 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94676 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 10 94677 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 10 94678 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 10 94679 -NCIT:C178547 Aggressive T-Cell Non-Hodgkin Lymphoma 7 94680 -NCIT:C150495 Intestinal T-Cell Lymphoma 8 94681 -NCIT:C150505 Intestinal T-Cell Lymphoma, Not Otherwise Specified 9 94682 -NCIT:C4737 Enteropathy-Associated T-Cell Lymphoma 9 94683 -NCIT:C141295 Enteropathy-Associated T-Cell Lymphoma by Ann Arbor Stage 10 94684 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 11 94685 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 11 94686 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 11 94687 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 11 94688 -NCIT:C39610 Small Intestinal Enteropathy-Associated T-Cell Lymphoma 10 94689 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 10 94690 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 10 94691 -NCIT:C96058 Monomorphic Epitheliotropic Intestinal T-Cell Lymphoma 9 94692 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 94693 -NCIT:C150504 Small Intestinal Monomorphic Epitheliotropic T-Cell Lymphoma 10 94694 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 94695 -NCIT:C178554 Recurrent Aggressive T-Cell Non-Hodgkin Lymphoma 8 94696 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 94697 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 9 94698 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 94699 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 94700 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 9 94701 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 94702 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 94703 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 9 94704 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 9 94705 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 9 94706 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 9 94707 -NCIT:C178556 Refractory Aggressive T-Cell Non-Hodgkin Lymphoma 8 94708 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 9 94709 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 94710 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 94711 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 94712 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 94713 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 9 94714 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 9 94715 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 9 94716 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 9 94717 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 9 94718 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 94719 -NCIT:C3184 Adult T-Cell Leukemia/Lymphoma 8 94720 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 9 94721 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 10 94722 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 10 94723 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 10 94724 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 10 94725 -NCIT:C36265 Acute Adult T-Cell Leukemia/Lymphoma 9 94726 -NCIT:C36266 Lymphomatous Adult T-Cell Leukemia/Lymphoma 9 94727 -NCIT:C36268 Hodgkin-Like Adult T-Cell Leukemia/Lymphoma 9 94728 -NCIT:C45272 Cutaneous Adult T-Cell Leukemia/Lymphoma 9 94729 -NCIT:C7178 Smoldering Adult T-Cell Leukemia/Lymphoma 9 94730 -NCIT:C7179 Chronic Adult T-Cell Leukemia/Lymphoma 9 94731 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 9 94732 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 9 94733 -NCIT:C37194 Anaplastic Large Cell Lymphoma, ALK-Negative 8 94734 -NCIT:C129599 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Negative 9 94735 -NCIT:C139012 Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 94736 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 94737 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 94738 -NCIT:C37196 Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Negative 9 94739 -NCIT:C4340 Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 94740 -NCIT:C139288 Primary EBV-Positive Nodal T-Cell or NK-Cell Lymphoma 9 94741 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 94742 -NCIT:C188459 Childhood Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 94743 -NCIT:C7205 Lymphoepithelioid Variant Peripheral T-Cell Lymphoma 9 94744 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 94745 -NCIT:C45339 Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 8 94746 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 94747 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 94748 -NCIT:C45340 Primary Cutaneous Gamma-Delta T-Cell Lymphoma 8 94749 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 94750 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 94751 -NCIT:C4684 Nasal Type Extranodal NK/T-Cell Lymphoma 8 94752 -NCIT:C115154 Adult Nasal Type Extranodal NK/T-Cell Lymphoma 9 94753 -NCIT:C141296 Nasal Type NK/T-Cell Lymphoma by Ann Arbor Stage 9 94754 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 10 94755 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 10 94756 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 10 94757 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 10 94758 -NCIT:C162468 Testicular Nasal Type Extranodal NK/T-Cell Lymphoma 9 94759 -NCIT:C173172 Sinonasal Extranodal NK/T-Cell Lymphoma 9 94760 -NCIT:C173173 Nasal Cavity Extranodal NK/T-Cell Lymphoma 10 94761 -NCIT:C45268 Cutaneous Nasal Type Extranodal NK/T-Cell Lymphoma 9 94762 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 9 94763 -NCIT:C68692 Childhood Nasal Type Extranodal NK/T-Cell Lymphoma 9 94764 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 9 94765 -NCIT:C6919 T Lymphoblastic Lymphoma 8 94766 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 9 94767 -NCIT:C45740 Mediastinal T Lymphoblastic Lymphoma 9 94768 -NCIT:C7210 Childhood T Lymphoblastic Lymphoma 9 94769 -NCIT:C7226 Adult T Lymphoblastic Lymphoma 9 94770 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 9 94771 -NCIT:C7311 Splenic T Lymphoblastic Lymphoma 9 94772 -NCIT:C7528 Angioimmunoblastic T-Cell Lymphoma 8 94773 -NCIT:C141294 Angioimmunoblastic T-Cell Lymphoma by Ann Arbor Stage 9 94774 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 10 94775 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 10 94776 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 10 94777 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 10 94778 -NCIT:C45271 Cutaneous Angioimmunoblastic T-Cell Lymphoma 9 94779 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 9 94780 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 9 94781 -NCIT:C8459 Hepatosplenic T-Cell Lymphoma 8 94782 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 9 94783 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 9 94784 -NCIT:C3468 Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 7 94785 -NCIT:C128696 Peripheral T-Cell Lymphoma, Unclassifiable 8 94786 -NCIT:C128697 NK-Cell Lymphoma, Unclassifiable 8 94787 -NCIT:C157689 Recurrent NK-Cell Lymphoma, Unclassifiable 9 94788 -NCIT:C157690 Refractory NK-Cell Lymphoma, Unclassifiable 9 94789 -NCIT:C129600 Central Nervous System Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 8 94790 -NCIT:C5322 Central Nervous System Anaplastic Large Cell Lymphoma 9 94791 -NCIT:C129598 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Positive 10 94792 -NCIT:C129599 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Negative 10 94793 -NCIT:C139005 Nodal Peripheral T-Cell Lymphoma of T Follicular Helper Cell Origin 8 94794 -NCIT:C139011 Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 9 94795 -NCIT:C168778 Recurrent Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 10 94796 -NCIT:C168779 Refractory Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 10 94797 -NCIT:C7528 Angioimmunoblastic T-Cell Lymphoma 9 94798 -NCIT:C141294 Angioimmunoblastic T-Cell Lymphoma by Ann Arbor Stage 10 94799 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 11 94800 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 11 94801 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 11 94802 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 11 94803 -NCIT:C45271 Cutaneous Angioimmunoblastic T-Cell Lymphoma 10 94804 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 10 94805 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 10 94806 -NCIT:C80375 Follicular T-Cell Lymphoma 9 94807 -NCIT:C168780 Recurrent Follicular T-Cell Lymphoma 10 94808 -NCIT:C168781 Refractory Follicular T-Cell Lymphoma 10 94809 -NCIT:C141272 Mature T- and NK-Cell Lymphoma by Ann Arbor Stage 8 94810 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 9 94811 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 10 94812 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 10 94813 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 10 94814 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 10 94815 -NCIT:C141284 Noncutaneous Anaplastic Large Cell Lymphoma by Ann Arbor Stage 9 94816 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 10 94817 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94818 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94819 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94820 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94821 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 10 94822 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94823 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 10 94824 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94825 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 10 94826 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94827 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 10 94828 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94829 -NCIT:C141294 Angioimmunoblastic T-Cell Lymphoma by Ann Arbor Stage 9 94830 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 10 94831 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 10 94832 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 10 94833 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 10 94834 -NCIT:C141295 Enteropathy-Associated T-Cell Lymphoma by Ann Arbor Stage 9 94835 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 10 94836 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 10 94837 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 10 94838 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 10 94839 -NCIT:C141296 Nasal Type NK/T-Cell Lymphoma by Ann Arbor Stage 9 94840 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 10 94841 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 10 94842 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 10 94843 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 10 94844 -NCIT:C8690 Ann Arbor Stage I Mature T- and NK-Cell Lymphoma 9 94845 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 10 94846 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 10 94847 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94848 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 10 94849 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 10 94850 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 10 94851 -NCIT:C8691 Ann Arbor Stage II Mature T- and NK-Cell Lymphoma 9 94852 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 10 94853 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 10 94854 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94855 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 10 94856 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 10 94857 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 10 94858 -NCIT:C8692 Ann Arbor Stage III Mature T- and NK-Cell Lymphoma 9 94859 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 10 94860 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 10 94861 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94862 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 10 94863 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 10 94864 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 10 94865 -NCIT:C8693 Ann Arbor Stage IV Mature T- and NK-Cell Lymphoma 9 94866 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 10 94867 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 10 94868 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94869 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 10 94870 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 10 94871 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 10 94872 -NCIT:C150495 Intestinal T-Cell Lymphoma 8 94873 -NCIT:C150505 Intestinal T-Cell Lymphoma, Not Otherwise Specified 9 94874 -NCIT:C4737 Enteropathy-Associated T-Cell Lymphoma 9 94875 -NCIT:C141295 Enteropathy-Associated T-Cell Lymphoma by Ann Arbor Stage 10 94876 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 11 94877 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 11 94878 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 11 94879 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 11 94880 -NCIT:C39610 Small Intestinal Enteropathy-Associated T-Cell Lymphoma 10 94881 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 10 94882 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 10 94883 -NCIT:C96058 Monomorphic Epitheliotropic Intestinal T-Cell Lymphoma 9 94884 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 94885 -NCIT:C150504 Small Intestinal Monomorphic Epitheliotropic T-Cell Lymphoma 10 94886 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 94887 -NCIT:C171300 Indolent T-Cell Non-Hodgkin Lymphoma 8 94888 -NCIT:C3246 Mycosis Fungoides 9 94889 -NCIT:C141143 Mycosis Fungoides by AJCC v7 Stage 10 94890 -NCIT:C7796 Stage I Mycosis Fungoides AJCC v7 11 94891 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 12 94892 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 12 94893 -NCIT:C7798 Stage II Mycosis Fungoides AJCC v7 11 94894 -NCIT:C7800 Stage III Mycosis Fungoides AJCC v7 11 94895 -NCIT:C7802 Stage IV Mycosis Fungoides AJCC v7 11 94896 -NCIT:C165783 Transformed Mycosis Fungoides 10 94897 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 94898 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 94899 -NCIT:C8686 Recurrent Mycosis Fungoides 10 94900 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 94901 -NCIT:C8687 Refractory Mycosis Fungoides 10 94902 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 94903 -NCIT:C39644 Mycosis Fungoides Variant 9 94904 -NCIT:C35464 Granulomatous Slack Skin Disease 10 94905 -NCIT:C35685 Folliculotropic Mycosis Fungoides 10 94906 -NCIT:C35794 Pagetoid Reticulosis 10 94907 -NCIT:C6860 Primary Cutaneous Anaplastic Large Cell Lymphoma 9 94908 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 94909 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 94910 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 10 94911 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 10 94912 -NCIT:C6918 Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 94913 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 94914 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 94915 -NCIT:C3184 Adult T-Cell Leukemia/Lymphoma 8 94916 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 9 94917 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 10 94918 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 10 94919 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 10 94920 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 10 94921 -NCIT:C36265 Acute Adult T-Cell Leukemia/Lymphoma 9 94922 -NCIT:C36266 Lymphomatous Adult T-Cell Leukemia/Lymphoma 9 94923 -NCIT:C36268 Hodgkin-Like Adult T-Cell Leukemia/Lymphoma 9 94924 -NCIT:C45272 Cutaneous Adult T-Cell Leukemia/Lymphoma 9 94925 -NCIT:C7178 Smoldering Adult T-Cell Leukemia/Lymphoma 9 94926 -NCIT:C7179 Chronic Adult T-Cell Leukemia/Lymphoma 9 94927 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 9 94928 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 9 94929 -NCIT:C3467 Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 94930 -NCIT:C172442 Advanced Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 94931 -NCIT:C180374 Early Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 94932 -NCIT:C3246 Mycosis Fungoides 9 94933 -NCIT:C141143 Mycosis Fungoides by AJCC v7 Stage 10 94934 -NCIT:C7796 Stage I Mycosis Fungoides AJCC v7 11 94935 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 12 94936 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 12 94937 -NCIT:C7798 Stage II Mycosis Fungoides AJCC v7 11 94938 -NCIT:C7800 Stage III Mycosis Fungoides AJCC v7 11 94939 -NCIT:C7802 Stage IV Mycosis Fungoides AJCC v7 11 94940 -NCIT:C165783 Transformed Mycosis Fungoides 10 94941 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 94942 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 94943 -NCIT:C8686 Recurrent Mycosis Fungoides 10 94944 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 94945 -NCIT:C8687 Refractory Mycosis Fungoides 10 94946 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 94947 -NCIT:C39644 Mycosis Fungoides Variant 9 94948 -NCIT:C35464 Granulomatous Slack Skin Disease 10 94949 -NCIT:C35685 Folliculotropic Mycosis Fungoides 10 94950 -NCIT:C35794 Pagetoid Reticulosis 10 94951 -NCIT:C45332 Primary Cutaneous Peripheral T-Cell Lymphoma, Rare Subtype 9 94952 -NCIT:C139023 Primary Cutaneous Acral CD8-Positive T-Cell Lymphoma 10 94953 -NCIT:C45339 Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 94954 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 11 94955 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 11 94956 -NCIT:C45340 Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 94957 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 11 94958 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 11 94959 -NCIT:C6860 Primary Cutaneous Anaplastic Large Cell Lymphoma 9 94960 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 94961 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 94962 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 10 94963 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 10 94964 -NCIT:C6918 Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 94965 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 94966 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 94967 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 94968 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 94969 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 94970 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 94971 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 94972 -NCIT:C8686 Recurrent Mycosis Fungoides 10 94973 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 94974 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 94975 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 94976 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 94977 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 94978 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 94979 -NCIT:C8687 Refractory Mycosis Fungoides 10 94980 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 94981 -NCIT:C3720 Anaplastic Large Cell Lymphoma 8 94982 -NCIT:C141284 Noncutaneous Anaplastic Large Cell Lymphoma by Ann Arbor Stage 9 94983 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 10 94984 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94985 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94986 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94987 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94988 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 10 94989 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94990 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 10 94991 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94992 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 10 94993 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94994 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 10 94995 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 94996 -NCIT:C166179 Localized Anaplastic Large Cell Lymphoma 9 94997 -NCIT:C166180 Advanced Anaplastic Large Cell Lymphoma 9 94998 -NCIT:C188082 Lung Anaplastic Large Cell Lymphoma 9 94999 -NCIT:C27367 Adult Anaplastic Large Cell Lymphoma 9 95000 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 10 95001 -NCIT:C27366 Adult Systemic Anaplastic Large Cell Lymphoma 10 95002 -NCIT:C37193 Anaplastic Large Cell Lymphoma, ALK-Positive 9 95003 -NCIT:C129598 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Positive 10 95004 -NCIT:C188460 Childhood Anaplastic Large Cell Lymphoma, ALK-Positive 10 95005 -NCIT:C37195 Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 95006 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 11 95007 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 11 95008 -NCIT:C37194 Anaplastic Large Cell Lymphoma, ALK-Negative 9 95009 -NCIT:C129599 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Negative 10 95010 -NCIT:C139012 Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 95011 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 11 95012 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 11 95013 -NCIT:C37196 Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Negative 10 95014 -NCIT:C39674 Anaplastic Large Cell Lymphoma, Giant Cell Rich Subtype 9 95015 -NCIT:C39675 Anaplastic Large Cell Lymphoma, Sarcomatoid Subtype 9 95016 -NCIT:C39676 Anaplastic Large Cell Lymphoma, Signet Ring-Like Subtype 9 95017 -NCIT:C5322 Central Nervous System Anaplastic Large Cell Lymphoma 9 95018 -NCIT:C129598 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Positive 10 95019 -NCIT:C129599 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Negative 10 95020 -NCIT:C5636 Childhood Anaplastic Large Cell Lymphoma 9 95021 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 10 95022 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 10 95023 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 95024 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 95025 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 95026 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 95027 -NCIT:C188460 Childhood Anaplastic Large Cell Lymphoma, ALK-Positive 10 95028 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 10 95029 -NCIT:C9471 Childhood Systemic Anaplastic Large Cell Lymphoma 10 95030 -NCIT:C6860 Primary Cutaneous Anaplastic Large Cell Lymphoma 9 95031 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 95032 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 95033 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 10 95034 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 10 95035 -NCIT:C7206 Common Variant Anaplastic Large Cell Lymphoma 9 95036 -NCIT:C7207 Lymphohistiocytic Variant Anaplastic Large Cell Lymphoma 9 95037 -NCIT:C7208 Small Cell Variant Anaplastic Large Cell Lymphoma 9 95038 -NCIT:C8658 Refractory Anaplastic Large Cell Lymphoma 9 95039 -NCIT:C162689 Refractory Systemic Anaplastic Large Cell Lymphoma 10 95040 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 11 95041 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 95042 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 95043 -NCIT:C9250 Recurrent Anaplastic Large Cell Lymphoma 9 95044 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 10 95045 -NCIT:C162688 Recurrent Systemic Anaplastic Large Cell Lymphoma 10 95046 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 11 95047 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 95048 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 95049 -NCIT:C9470 Systemic Anaplastic Large Cell Lymphoma 9 95050 -NCIT:C162688 Recurrent Systemic Anaplastic Large Cell Lymphoma 10 95051 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 11 95052 -NCIT:C162689 Refractory Systemic Anaplastic Large Cell Lymphoma 10 95053 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 11 95054 -NCIT:C27366 Adult Systemic Anaplastic Large Cell Lymphoma 10 95055 -NCIT:C37195 Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 95056 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 11 95057 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 11 95058 -NCIT:C37196 Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Negative 10 95059 -NCIT:C9471 Childhood Systemic Anaplastic Large Cell Lymphoma 10 95060 -NCIT:C4340 Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 95061 -NCIT:C139288 Primary EBV-Positive Nodal T-Cell or NK-Cell Lymphoma 9 95062 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 95063 -NCIT:C188459 Childhood Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 95064 -NCIT:C7205 Lymphoepithelioid Variant Peripheral T-Cell Lymphoma 9 95065 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 95066 -NCIT:C4684 Nasal Type Extranodal NK/T-Cell Lymphoma 8 95067 -NCIT:C115154 Adult Nasal Type Extranodal NK/T-Cell Lymphoma 9 95068 -NCIT:C141296 Nasal Type NK/T-Cell Lymphoma by Ann Arbor Stage 9 95069 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 10 95070 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 10 95071 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 10 95072 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 10 95073 -NCIT:C162468 Testicular Nasal Type Extranodal NK/T-Cell Lymphoma 9 95074 -NCIT:C173172 Sinonasal Extranodal NK/T-Cell Lymphoma 9 95075 -NCIT:C173173 Nasal Cavity Extranodal NK/T-Cell Lymphoma 10 95076 -NCIT:C45268 Cutaneous Nasal Type Extranodal NK/T-Cell Lymphoma 9 95077 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 9 95078 -NCIT:C68692 Childhood Nasal Type Extranodal NK/T-Cell Lymphoma 9 95079 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 9 95080 -NCIT:C5637 Childhood Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 8 95081 -NCIT:C188459 Childhood Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 95082 -NCIT:C5636 Childhood Anaplastic Large Cell Lymphoma 9 95083 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 10 95084 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 10 95085 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 95086 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 95087 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 95088 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 95089 -NCIT:C188460 Childhood Anaplastic Large Cell Lymphoma, ALK-Positive 10 95090 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 10 95091 -NCIT:C9471 Childhood Systemic Anaplastic Large Cell Lymphoma 10 95092 -NCIT:C68692 Childhood Nasal Type Extranodal NK/T-Cell Lymphoma 9 95093 -NCIT:C80374 Systemic EBV-Positive T-Cell Lymphoma of Childhood 9 95094 -NCIT:C7252 Methotrexate-Associated Peripheral T-Cell Lymphoma 8 95095 -NCIT:C8459 Hepatosplenic T-Cell Lymphoma 8 95096 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 9 95097 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 9 95098 -NCIT:C8688 Recurrent Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 8 95099 -NCIT:C115439 Recurrent Mycosis Fungoides and Sezary Syndrome 9 95100 -NCIT:C176999 Recurrent Sezary Syndrome 10 95101 -NCIT:C8686 Recurrent Mycosis Fungoides 10 95102 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 95103 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 95104 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 9 95105 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 95106 -NCIT:C157689 Recurrent NK-Cell Lymphoma, Unclassifiable 9 95107 -NCIT:C165789 Recurrent Transformed T-cell Non-Hodgkin Lymphoma 9 95108 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 95109 -NCIT:C168778 Recurrent Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 9 95110 -NCIT:C168780 Recurrent Follicular T-Cell Lymphoma 9 95111 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 9 95112 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 95113 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 95114 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 95115 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 95116 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 95117 -NCIT:C8686 Recurrent Mycosis Fungoides 10 95118 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 95119 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 9 95120 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 9 95121 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 9 95122 -NCIT:C9250 Recurrent Anaplastic Large Cell Lymphoma 9 95123 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 10 95124 -NCIT:C162688 Recurrent Systemic Anaplastic Large Cell Lymphoma 10 95125 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 11 95126 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 95127 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 95128 -NCIT:C8689 Refractory Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 8 95129 -NCIT:C148129 Refractory Mycosis Fungoides and Sezary Syndrome 9 95130 -NCIT:C177000 Refractory Sezary Syndrome 10 95131 -NCIT:C8687 Refractory Mycosis Fungoides 10 95132 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 95133 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 9 95134 -NCIT:C157690 Refractory NK-Cell Lymphoma, Unclassifiable 9 95135 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 95136 -NCIT:C165791 Refractory Transformed T-cell Non-Hodgkin Lymphoma 9 95137 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 95138 -NCIT:C168779 Refractory Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 9 95139 -NCIT:C168781 Refractory Follicular T-Cell Lymphoma 9 95140 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 9 95141 -NCIT:C8658 Refractory Anaplastic Large Cell Lymphoma 9 95142 -NCIT:C162689 Refractory Systemic Anaplastic Large Cell Lymphoma 10 95143 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 11 95144 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 95145 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 95146 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 9 95147 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 9 95148 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 9 95149 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 95150 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 95151 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 95152 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 95153 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 95154 -NCIT:C8687 Refractory Mycosis Fungoides 10 95155 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 95156 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 95157 -NCIT:C9265 Mycosis Fungoides and Sezary Syndrome 8 95158 -NCIT:C115439 Recurrent Mycosis Fungoides and Sezary Syndrome 9 95159 -NCIT:C176999 Recurrent Sezary Syndrome 10 95160 -NCIT:C8686 Recurrent Mycosis Fungoides 10 95161 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 95162 -NCIT:C141142 Mycosis Fungoides and Sezary Syndrome by AJCC v7 Stage 9 95163 -NCIT:C141143 Mycosis Fungoides by AJCC v7 Stage 10 95164 -NCIT:C7796 Stage I Mycosis Fungoides AJCC v7 11 95165 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 12 95166 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 12 95167 -NCIT:C7798 Stage II Mycosis Fungoides AJCC v7 11 95168 -NCIT:C7800 Stage III Mycosis Fungoides AJCC v7 11 95169 -NCIT:C7802 Stage IV Mycosis Fungoides AJCC v7 11 95170 -NCIT:C88150 Stage I Mycosis Fungoides and Sezary Syndrome AJCC v7 10 95171 -NCIT:C7796 Stage I Mycosis Fungoides AJCC v7 11 95172 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 12 95173 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 12 95174 -NCIT:C88151 Stage IA Mycosis Fungoides and Sezary Syndrome AJCC v7 11 95175 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 12 95176 -NCIT:C88152 Stage IB Mycosis Fungoides and Sezary Syndrome AJCC v7 11 95177 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 12 95178 -NCIT:C88153 Stage II Mycosis Fungoides and Sezary Syndrome AJCC v7 10 95179 -NCIT:C7798 Stage II Mycosis Fungoides AJCC v7 11 95180 -NCIT:C88154 Stage IIA Mycosis Fungoides and Sezary Syndrome AJCC v7 11 95181 -NCIT:C88155 Stage IIB Mycosis Fungoides and Sezary Syndrome AJCC v7 11 95182 -NCIT:C88157 Stage III Mycosis Fungoides and Sezary Syndrome AJCC v7 10 95183 -NCIT:C7800 Stage III Mycosis Fungoides AJCC v7 11 95184 -NCIT:C88158 Stage IIIA Mycosis Fungoides and Sezary Syndrome AJCC v7 11 95185 -NCIT:C88159 Stage IIIB Mycosis Fungoides and Sezary Syndrome AJCC v7 11 95186 -NCIT:C88160 Stage IV Mycosis Fungoides and Sezary Syndrome AJCC v7 10 95187 -NCIT:C7802 Stage IV Mycosis Fungoides AJCC v7 11 95188 -NCIT:C88161 Stage IVA Mycosis Fungoides and Sezary Syndrome AJCC v7 11 95189 -NCIT:C88162 Stage IVB Mycosis Fungoides and Sezary Syndrome AJCC v7 11 95190 -NCIT:C141346 Mycosis Fungoides and Sezary Syndrome by AJCC v8 Stage 9 95191 -NCIT:C141347 Stage I Mycosis Fungoides and Sezary Syndrome AJCC v8 10 95192 -NCIT:C141348 Stage IA Mycosis Fungoides and Sezary Syndrome AJCC v8 11 95193 -NCIT:C141349 Stage IB Mycosis Fungoides and Sezary Syndrome AJCC v8 11 95194 -NCIT:C141350 Stage II Mycosis Fungoides and Sezary Syndrome AJCC v8 10 95195 -NCIT:C141351 Stage IIA Mycosis Fungoides and Sezary Syndrome AJCC v8 11 95196 -NCIT:C141352 Stage IIB Mycosis Fungoides and Sezary Syndrome AJCC v8 11 95197 -NCIT:C141353 Stage III Mycosis Fungoides and Sezary Syndrome AJCC v8 10 95198 -NCIT:C141354 Stage IIIA Mycosis Fungoides and Sezary Syndrome AJCC v8 11 95199 -NCIT:C141355 Stage IIIB Mycosis Fungoides and Sezary Syndrome AJCC v8 11 95200 -NCIT:C141356 Stage IV Mycosis Fungoides and Sezary Syndrome AJCC v8 10 95201 -NCIT:C141357 Stage IVA1 Mycosis Fungoides and Sezary Syndrome AJCC v8 11 95202 -NCIT:C141358 Stage IVA2 Mycosis Fungoides and Sezary Syndrome AJCC v8 11 95203 -NCIT:C141359 Stage IVB Mycosis Fungoides and Sezary Syndrome AJCC v8 11 95204 -NCIT:C148129 Refractory Mycosis Fungoides and Sezary Syndrome 9 95205 -NCIT:C177000 Refractory Sezary Syndrome 10 95206 -NCIT:C8687 Refractory Mycosis Fungoides 10 95207 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 95208 -NCIT:C3246 Mycosis Fungoides 9 95209 -NCIT:C141143 Mycosis Fungoides by AJCC v7 Stage 10 95210 -NCIT:C7796 Stage I Mycosis Fungoides AJCC v7 11 95211 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 12 95212 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 12 95213 -NCIT:C7798 Stage II Mycosis Fungoides AJCC v7 11 95214 -NCIT:C7800 Stage III Mycosis Fungoides AJCC v7 11 95215 -NCIT:C7802 Stage IV Mycosis Fungoides AJCC v7 11 95216 -NCIT:C165783 Transformed Mycosis Fungoides 10 95217 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 95218 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 95219 -NCIT:C8686 Recurrent Mycosis Fungoides 10 95220 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 95221 -NCIT:C8687 Refractory Mycosis Fungoides 10 95222 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 95223 -NCIT:C3366 Sezary Syndrome 9 95224 -NCIT:C176999 Recurrent Sezary Syndrome 10 95225 -NCIT:C177000 Refractory Sezary Syndrome 10 95226 -NCIT:C39644 Mycosis Fungoides Variant 9 95227 -NCIT:C35464 Granulomatous Slack Skin Disease 10 95228 -NCIT:C35685 Folliculotropic Mycosis Fungoides 10 95229 -NCIT:C35794 Pagetoid Reticulosis 10 95230 -NCIT:C5182 Breast T-Cell Non-Hodgkin Lymphoma 7 95231 -NCIT:C139012 Breast Implant-Associated Anaplastic Large Cell Lymphoma 8 95232 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 95233 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 95234 -NCIT:C5254 Gastric T-Cell Non-Hodgkin Lymphoma 7 95235 -NCIT:C5409 Central Nervous System T-Cell Non-Hodgkin Lymphoma 7 95236 -NCIT:C129600 Central Nervous System Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 8 95237 -NCIT:C5322 Central Nervous System Anaplastic Large Cell Lymphoma 9 95238 -NCIT:C129598 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Positive 10 95239 -NCIT:C129599 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Negative 10 95240 -NCIT:C8663 Recurrent T-Cell Non-Hodgkin Lymphoma 7 95241 -NCIT:C178554 Recurrent Aggressive T-Cell Non-Hodgkin Lymphoma 8 95242 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 95243 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 9 95244 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 95245 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 95246 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 9 95247 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 95248 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 95249 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 9 95250 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 9 95251 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 9 95252 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 9 95253 -NCIT:C183513 Recurrent Indolent T-Cell Non-Hodgkin Lymphoma 8 95254 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 95255 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 95256 -NCIT:C8686 Recurrent Mycosis Fungoides 9 95257 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 95258 -NCIT:C8688 Recurrent Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 8 95259 -NCIT:C115439 Recurrent Mycosis Fungoides and Sezary Syndrome 9 95260 -NCIT:C176999 Recurrent Sezary Syndrome 10 95261 -NCIT:C8686 Recurrent Mycosis Fungoides 10 95262 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 95263 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 95264 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 9 95265 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 95266 -NCIT:C157689 Recurrent NK-Cell Lymphoma, Unclassifiable 9 95267 -NCIT:C165789 Recurrent Transformed T-cell Non-Hodgkin Lymphoma 9 95268 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 95269 -NCIT:C168778 Recurrent Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 9 95270 -NCIT:C168780 Recurrent Follicular T-Cell Lymphoma 9 95271 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 9 95272 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 95273 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 95274 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 95275 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 95276 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 95277 -NCIT:C8686 Recurrent Mycosis Fungoides 10 95278 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 95279 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 9 95280 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 9 95281 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 9 95282 -NCIT:C9250 Recurrent Anaplastic Large Cell Lymphoma 9 95283 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 10 95284 -NCIT:C162688 Recurrent Systemic Anaplastic Large Cell Lymphoma 10 95285 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 11 95286 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 95287 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 95288 -NCIT:C8664 Refractory T-Cell Non-Hodgkin Lymphoma 7 95289 -NCIT:C178556 Refractory Aggressive T-Cell Non-Hodgkin Lymphoma 8 95290 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 9 95291 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 95292 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 95293 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 95294 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 95295 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 9 95296 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 9 95297 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 9 95298 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 9 95299 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 9 95300 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 95301 -NCIT:C183515 Refractory Indolent T-Cell Non-Hodgkin Lymphoma 8 95302 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 95303 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 95304 -NCIT:C8687 Refractory Mycosis Fungoides 9 95305 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 95306 -NCIT:C8689 Refractory Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 8 95307 -NCIT:C148129 Refractory Mycosis Fungoides and Sezary Syndrome 9 95308 -NCIT:C177000 Refractory Sezary Syndrome 10 95309 -NCIT:C8687 Refractory Mycosis Fungoides 10 95310 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 95311 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 9 95312 -NCIT:C157690 Refractory NK-Cell Lymphoma, Unclassifiable 9 95313 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 95314 -NCIT:C165791 Refractory Transformed T-cell Non-Hodgkin Lymphoma 9 95315 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 95316 -NCIT:C168779 Refractory Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 9 95317 -NCIT:C168781 Refractory Follicular T-Cell Lymphoma 9 95318 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 9 95319 -NCIT:C8658 Refractory Anaplastic Large Cell Lymphoma 9 95320 -NCIT:C162689 Refractory Systemic Anaplastic Large Cell Lymphoma 10 95321 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 11 95322 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 95323 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 95324 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 9 95325 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 9 95326 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 9 95327 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 95328 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 95329 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 95330 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 95331 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 95332 -NCIT:C8687 Refractory Mycosis Fungoides 10 95333 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 95334 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 95335 -NCIT:C96054 Small Intestinal T-Cell Non-Hodgkin Lymphoma 7 95336 -NCIT:C150504 Small Intestinal Monomorphic Epitheliotropic T-Cell Lymphoma 8 95337 -NCIT:C39610 Small Intestinal Enteropathy-Associated T-Cell Lymphoma 8 95338 -NCIT:C8694 T Lymphoblastic Leukemia/Lymphoma 6 95339 -NCIT:C3183 T Acute Lymphoblastic Leukemia 7 95340 -NCIT:C130043 Early T Acute Lymphoblastic Leukemia 8 95341 -NCIT:C150131 Recurrent T Acute Lymphoblastic Leukemia 8 95342 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 9 95343 -NCIT:C150510 Refractory T Acute Lymphoblastic Leukemia 8 95344 -NCIT:C45739 Mediastinal T Acute Lymphoblastic Leukemia 8 95345 -NCIT:C7953 Childhood T Acute Lymphoblastic Leukemia 8 95346 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 9 95347 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 9 95348 -NCIT:C9142 Adult T Acute Lymphoblastic Leukemia 8 95349 -NCIT:C45242 Cutaneous T Lymphoblastic Leukemia/Lymphoma 7 95350 -NCIT:C45738 Mediastinal T Lymphoblastic Leukemia/Lymphoma 7 95351 -NCIT:C45739 Mediastinal T Acute Lymphoblastic Leukemia 8 95352 -NCIT:C45740 Mediastinal T Lymphoblastic Lymphoma 8 95353 -NCIT:C5640 Childhood T Lymphoblastic Leukemia/Lymphoma 7 95354 -NCIT:C7210 Childhood T Lymphoblastic Lymphoma 8 95355 -NCIT:C7953 Childhood T Acute Lymphoblastic Leukemia 8 95356 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 9 95357 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 9 95358 -NCIT:C6919 T Lymphoblastic Lymphoma 7 95359 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 8 95360 -NCIT:C45740 Mediastinal T Lymphoblastic Lymphoma 8 95361 -NCIT:C7210 Childhood T Lymphoblastic Lymphoma 8 95362 -NCIT:C7226 Adult T Lymphoblastic Lymphoma 8 95363 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 8 95364 -NCIT:C7311 Splenic T Lymphoblastic Lymphoma 8 95365 -NCIT:C8695 Recurrent T Lymphoblastic Leukemia/Lymphoma 7 95366 -NCIT:C150131 Recurrent T Acute Lymphoblastic Leukemia 8 95367 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 9 95368 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 8 95369 -NCIT:C8696 Refractory T Lymphoblastic Leukemia/Lymphoma 7 95370 -NCIT:C150510 Refractory T Acute Lymphoblastic Leukemia 8 95371 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 8 95372 -NCIT:C8697 Stage I T Lymphoblastic Leukemia/Lymphoma 7 95373 -NCIT:C8698 Stage II T Lymphoblastic Leukemia/Lymphoma 7 95374 -NCIT:C8699 Stage III T Lymphoblastic Leukemia/Lymphoma 7 95375 -NCIT:C8700 Stage IV T Lymphoblastic Leukemia/Lymphoma 7 95376 -NCIT:C3208 Lymphoma 5 95377 -NCIT:C134154 Refractory Lymphoma 6 95378 -NCIT:C138014 Refractory B-Cell Lymphoma, Unclassifiable, with Features Intermediate between Diffuse Large B-Cell Lymphoma and Classic Hodgkin Lymphoma 7 95379 -NCIT:C138020 Refractory Central Nervous System Lymphoma 7 95380 -NCIT:C146989 Refractory Central Nervous System Non-Hodgkin Lymphoma 8 95381 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 9 95382 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 95383 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 95384 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 95385 -NCIT:C138022 Refractory Testicular Lymphoma 7 95386 -NCIT:C138024 Refractory Breast Lymphoma 7 95387 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 8 95388 -NCIT:C142877 Refractory Primary Cutaneous Lymphoma 7 95389 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 8 95390 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 95391 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 95392 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 95393 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 95394 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 95395 -NCIT:C8687 Refractory Mycosis Fungoides 9 95396 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 95397 -NCIT:C153177 Refractory Mediastinal Lymphoma 7 95398 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 95399 -NCIT:C157682 Refractory Primary Bone Lymphoma 7 95400 -NCIT:C160149 Refractory EBV-Related Lymphoma 7 95401 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 95402 -NCIT:C187197 Refractory Childhood Lymphoma 7 95403 -NCIT:C115458 Refractory Childhood Hodgkin Lymphoma 8 95404 -NCIT:C8701 Refractory Non-Hodgkin Lymphoma 7 95405 -NCIT:C140091 Refractory Transformed Non-Hodgkin Lymphoma 8 95406 -NCIT:C158150 Refractory Transformed B-Cell Non-Hodgkin Lymphoma 9 95407 -NCIT:C160240 Refractory Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 10 95408 -NCIT:C186484 Refractory Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 10 95409 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 11 95410 -NCIT:C165791 Refractory Transformed T-cell Non-Hodgkin Lymphoma 9 95411 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 95412 -NCIT:C146989 Refractory Central Nervous System Non-Hodgkin Lymphoma 8 95413 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 9 95414 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 95415 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 95416 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 95417 -NCIT:C151978 Refractory Lymphoblastic Lymphoma 8 95418 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 9 95419 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 9 95420 -NCIT:C156233 Refractory Aggressive Non-Hodgkin Lymphoma 8 95421 -NCIT:C178555 Refractory Aggressive B-Cell Non-Hodgkin Lymphoma 9 95422 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 95423 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 95424 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 10 95425 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 11 95426 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 11 95427 -NCIT:C8847 Refractory Burkitt Lymphoma 10 95428 -NCIT:C8862 Refractory Mantle Cell Lymphoma 10 95429 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 10 95430 -NCIT:C178556 Refractory Aggressive T-Cell Non-Hodgkin Lymphoma 9 95431 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 10 95432 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 95433 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 95434 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 95435 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 95436 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 10 95437 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 10 95438 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 10 95439 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 10 95440 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 10 95441 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 95442 -NCIT:C173046 Refractory Indolent Non-Hodgkin Lymphoma 8 95443 -NCIT:C148175 Refractory Indolent Adult Non-Hodgkin Lymphoma 9 95444 -NCIT:C183514 Refractory Indolent B-Cell Non-Hodgkin Lymphoma 9 95445 -NCIT:C143085 Refractory Marginal Zone Lymphoma 10 95446 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 11 95447 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 95448 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 11 95449 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 10 95450 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 10 95451 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 10 95452 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 11 95453 -NCIT:C183515 Refractory Indolent T-Cell Non-Hodgkin Lymphoma 9 95454 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 95455 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 95456 -NCIT:C8687 Refractory Mycosis Fungoides 10 95457 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 95458 -NCIT:C8664 Refractory T-Cell Non-Hodgkin Lymphoma 8 95459 -NCIT:C178556 Refractory Aggressive T-Cell Non-Hodgkin Lymphoma 9 95460 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 10 95461 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 95462 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 95463 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 95464 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 95465 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 10 95466 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 10 95467 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 10 95468 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 10 95469 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 10 95470 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 95471 -NCIT:C183515 Refractory Indolent T-Cell Non-Hodgkin Lymphoma 9 95472 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 95473 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 95474 -NCIT:C8687 Refractory Mycosis Fungoides 10 95475 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 95476 -NCIT:C8689 Refractory Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 9 95477 -NCIT:C148129 Refractory Mycosis Fungoides and Sezary Syndrome 10 95478 -NCIT:C177000 Refractory Sezary Syndrome 11 95479 -NCIT:C8687 Refractory Mycosis Fungoides 11 95480 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 12 95481 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 10 95482 -NCIT:C157690 Refractory NK-Cell Lymphoma, Unclassifiable 10 95483 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 95484 -NCIT:C165791 Refractory Transformed T-cell Non-Hodgkin Lymphoma 10 95485 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 95486 -NCIT:C168779 Refractory Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 10 95487 -NCIT:C168781 Refractory Follicular T-Cell Lymphoma 10 95488 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 10 95489 -NCIT:C8658 Refractory Anaplastic Large Cell Lymphoma 10 95490 -NCIT:C162689 Refractory Systemic Anaplastic Large Cell Lymphoma 11 95491 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 12 95492 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 11 95493 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 11 95494 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 10 95495 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 10 95496 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 10 95497 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 10 95498 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 11 95499 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 11 95500 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 11 95501 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 11 95502 -NCIT:C8687 Refractory Mycosis Fungoides 11 95503 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 12 95504 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 95505 -NCIT:C8842 Refractory B-Cell Non-Hodgkin Lymphoma 8 95506 -NCIT:C178555 Refractory Aggressive B-Cell Non-Hodgkin Lymphoma 9 95507 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 95508 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 95509 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 10 95510 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 11 95511 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 11 95512 -NCIT:C8847 Refractory Burkitt Lymphoma 10 95513 -NCIT:C8862 Refractory Mantle Cell Lymphoma 10 95514 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 10 95515 -NCIT:C183514 Refractory Indolent B-Cell Non-Hodgkin Lymphoma 9 95516 -NCIT:C143085 Refractory Marginal Zone Lymphoma 10 95517 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 11 95518 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 95519 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 11 95520 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 10 95521 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 10 95522 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 10 95523 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 11 95524 -NCIT:C7228 Refractory Mature B-Cell Non-Hodgkin Lymphoma 9 95525 -NCIT:C143085 Refractory Marginal Zone Lymphoma 10 95526 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 11 95527 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 95528 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 11 95529 -NCIT:C158150 Refractory Transformed B-Cell Non-Hodgkin Lymphoma 10 95530 -NCIT:C160240 Refractory Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 11 95531 -NCIT:C186484 Refractory Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 11 95532 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 12 95533 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 10 95534 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 11 95535 -NCIT:C8846 Refractory Small Lymphocytic Lymphoma 10 95536 -NCIT:C8847 Refractory Burkitt Lymphoma 10 95537 -NCIT:C8853 Refractory Diffuse Large B-Cell Lymphoma 10 95538 -NCIT:C138018 Refractory Extranodal Diffuse Large B-cell Lymphoma 11 95539 -NCIT:C138026 Refractory Intravascular Large B-Cell Lymphoma 11 95540 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 95541 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 95542 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 11 95543 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 12 95544 -NCIT:C157678 Refractory T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 11 95545 -NCIT:C157680 Refractory Primary Effusion Lymphoma 11 95546 -NCIT:C157684 Refractory Plasmablastic Lymphoma 11 95547 -NCIT:C160233 Refractory High Grade B-Cell Lymphoma 11 95548 -NCIT:C151979 Refractory High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 12 95549 -NCIT:C162453 Refractory High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 12 95550 -NCIT:C188789 Refractory High Grade B-Cell Lymphoma, Not Otherwise Specified 12 95551 -NCIT:C165241 Refractory Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 95552 -NCIT:C160238 Refractory Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 12 95553 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 12 95554 -NCIT:C182034 Refractory Immunoblastic Lymphoma 12 95555 -NCIT:C8927 Refractory Centroblastic Lymphoma 12 95556 -NCIT:C183142 Refractory Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 11 95557 -NCIT:C188791 Refractory ALK-Positive Large B-Cell Lymphoma 11 95558 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 95559 -NCIT:C8858 Refractory Follicular Lymphoma 10 95560 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 11 95561 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 11 95562 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 11 95563 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 12 95564 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 12 95565 -NCIT:C8862 Refractory Mantle Cell Lymphoma 10 95566 -NCIT:C8836 Refractory Hodgkin Lymphoma 7 95567 -NCIT:C115458 Refractory Childhood Hodgkin Lymphoma 8 95568 -NCIT:C133736 Refractory Classic Hodgkin Lymphoma 8 95569 -NCIT:C142982 Refractory Lymphocyte-Rich Classic Hodgkin Lymphoma 9 95570 -NCIT:C8650 Refractory Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 95571 -NCIT:C8833 Refractory Mixed Cellularity Classic Hodgkin Lymphoma 9 95572 -NCIT:C8838 Refractory Nodular Sclerosis Classic Hodgkin Lymphoma 9 95573 -NCIT:C7260 Refractory Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 95574 -NCIT:C134157 Recurrent Lymphoma 6 95575 -NCIT:C138013 Recurrent B-Cell Lymphoma, Unclassifiable, with Features Intermediate between Diffuse Large B-Cell Lymphoma and Classic Hodgkin Lymphoma 7 95576 -NCIT:C138019 Recurrent Central Nervous System Lymphoma 7 95577 -NCIT:C146990 Recurrent Central Nervous System Non-Hodgkin Lymphoma 8 95578 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 9 95579 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 95580 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 95581 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 95582 -NCIT:C138021 Recurrent Testicular Lymphoma 7 95583 -NCIT:C138023 Recurrent Breast Lymphoma 7 95584 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 8 95585 -NCIT:C142876 Recurrent Primary Cutaneous Lymphoma 7 95586 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 8 95587 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 95588 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 95589 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 95590 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 95591 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 95592 -NCIT:C8686 Recurrent Mycosis Fungoides 9 95593 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 95594 -NCIT:C147863 Recurrent EBV-Related Lymphoma 7 95595 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 95596 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 8 95597 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 9 95598 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 9 95599 -NCIT:C153175 Recurrent Mediastinal Lymphoma 7 95600 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 95601 -NCIT:C157681 Recurrent Primary Bone Lymphoma 7 95602 -NCIT:C187196 Recurrent Childhood Lymphoma 7 95603 -NCIT:C115369 Recurrent Childhood Non-Hodgkin Lymphoma 8 95604 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 9 95605 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 9 95606 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 9 95607 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 9 95608 -NCIT:C8059 Recurrent Childhood Hodgkin Lymphoma 8 95609 -NCIT:C4937 Recurrent Hodgkin Lymphoma 7 95610 -NCIT:C133592 Recurrent Classic Hodgkin Lymphoma 8 95611 -NCIT:C136971 Recurrent Lymphocyte-Rich Classic Hodgkin Lymphoma 9 95612 -NCIT:C8649 Recurrent Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 95613 -NCIT:C8832 Recurrent Mixed Cellularity Classic Hodgkin Lymphoma 9 95614 -NCIT:C8837 Recurrent Nodular Sclerosis Classic Hodgkin Lymphoma 9 95615 -NCIT:C7259 Recurrent Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 95616 -NCIT:C7789 Recurrent Adult Hodgkin Lymphoma 8 95617 -NCIT:C8059 Recurrent Childhood Hodgkin Lymphoma 8 95618 -NCIT:C9251 Recurrent Non-Hodgkin Lymphoma 7 95619 -NCIT:C115369 Recurrent Childhood Non-Hodgkin Lymphoma 8 95620 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 9 95621 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 9 95622 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 9 95623 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 9 95624 -NCIT:C146990 Recurrent Central Nervous System Non-Hodgkin Lymphoma 8 95625 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 9 95626 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 95627 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 95628 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 95629 -NCIT:C156232 Recurrent Aggressive Non-Hodgkin Lymphoma 8 95630 -NCIT:C178553 Recurrent Aggressive B-Cell Non-Hodgkin Lymphoma 9 95631 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 95632 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 95633 -NCIT:C5008 Recurrent Burkitt Lymphoma 10 95634 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 11 95635 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 11 95636 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 10 95637 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 11 95638 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 11 95639 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 10 95640 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 11 95641 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 11 95642 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 10 95643 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 10 95644 -NCIT:C178554 Recurrent Aggressive T-Cell Non-Hodgkin Lymphoma 9 95645 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 95646 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 10 95647 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 95648 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 95649 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 10 95650 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 95651 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 95652 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 10 95653 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 10 95654 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 10 95655 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 10 95656 -NCIT:C8490 Recurrent Aggressive Adult Non-Hodgkin Lymphoma 9 95657 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 95658 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 10 95659 -NCIT:C8164 Recurrent Adult Lymphoblastic Lymphoma 10 95660 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 10 95661 -NCIT:C181796 Recurrent Indolent Non-Hodgkin Lymphoma 8 95662 -NCIT:C183512 Recurrent Indolent B-Cell Non-Hodgkin Lymphoma 9 95663 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 10 95664 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 11 95665 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 95666 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 11 95667 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 10 95668 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 10 95669 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 10 95670 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 11 95671 -NCIT:C183513 Recurrent Indolent T-Cell Non-Hodgkin Lymphoma 9 95672 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 95673 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 95674 -NCIT:C8686 Recurrent Mycosis Fungoides 10 95675 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 95676 -NCIT:C8488 Recurrent Indolent Adult Non-Hodgkin Lymphoma 9 95677 -NCIT:C8098 Recurrent Adult Non-Hodgkin Lymphoma 8 95678 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 9 95679 -NCIT:C8488 Recurrent Indolent Adult Non-Hodgkin Lymphoma 9 95680 -NCIT:C8490 Recurrent Aggressive Adult Non-Hodgkin Lymphoma 9 95681 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 95682 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 10 95683 -NCIT:C8164 Recurrent Adult Lymphoblastic Lymphoma 10 95684 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 10 95685 -NCIT:C8663 Recurrent T-Cell Non-Hodgkin Lymphoma 8 95686 -NCIT:C178554 Recurrent Aggressive T-Cell Non-Hodgkin Lymphoma 9 95687 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 95688 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 10 95689 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 95690 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 95691 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 10 95692 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 95693 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 95694 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 10 95695 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 10 95696 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 10 95697 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 10 95698 -NCIT:C183513 Recurrent Indolent T-Cell Non-Hodgkin Lymphoma 9 95699 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 95700 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 95701 -NCIT:C8686 Recurrent Mycosis Fungoides 10 95702 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 95703 -NCIT:C8688 Recurrent Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 9 95704 -NCIT:C115439 Recurrent Mycosis Fungoides and Sezary Syndrome 10 95705 -NCIT:C176999 Recurrent Sezary Syndrome 11 95706 -NCIT:C8686 Recurrent Mycosis Fungoides 11 95707 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 12 95708 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 95709 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 10 95710 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 95711 -NCIT:C157689 Recurrent NK-Cell Lymphoma, Unclassifiable 10 95712 -NCIT:C165789 Recurrent Transformed T-cell Non-Hodgkin Lymphoma 10 95713 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 95714 -NCIT:C168778 Recurrent Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 10 95715 -NCIT:C168780 Recurrent Follicular T-Cell Lymphoma 10 95716 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 10 95717 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 10 95718 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 11 95719 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 11 95720 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 11 95721 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 11 95722 -NCIT:C8686 Recurrent Mycosis Fungoides 11 95723 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 12 95724 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 10 95725 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 10 95726 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 10 95727 -NCIT:C9250 Recurrent Anaplastic Large Cell Lymphoma 10 95728 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 11 95729 -NCIT:C162688 Recurrent Systemic Anaplastic Large Cell Lymphoma 11 95730 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 12 95731 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 11 95732 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 11 95733 -NCIT:C8702 Recurrent Transformed Non-Hodgkin Lymphoma 8 95734 -NCIT:C158149 Recurrent Transformed B-Cell Non-Hodgkin Lymphoma 9 95735 -NCIT:C160232 Recurrent Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 10 95736 -NCIT:C186483 Recurrent Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 10 95737 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 11 95738 -NCIT:C165789 Recurrent Transformed T-cell Non-Hodgkin Lymphoma 9 95739 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 95740 -NCIT:C8841 Recurrent B-Cell Non-Hodgkin Lymphoma 8 95741 -NCIT:C165799 Recurrent Mature B-Cell Non-Hodgkin Lymphoma 9 95742 -NCIT:C158149 Recurrent Transformed B-Cell Non-Hodgkin Lymphoma 10 95743 -NCIT:C160232 Recurrent Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 11 95744 -NCIT:C186483 Recurrent Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 11 95745 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 12 95746 -NCIT:C5007 Recurrent Follicular Lymphoma 10 95747 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 11 95748 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 11 95749 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 11 95750 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 12 95751 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 12 95752 -NCIT:C5008 Recurrent Burkitt Lymphoma 10 95753 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 11 95754 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 11 95755 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 10 95756 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 11 95757 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 95758 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 11 95759 -NCIT:C8154 Recurrent Small Lymphocytic Lymphoma 10 95760 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 10 95761 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 10 95762 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 11 95763 -NCIT:C8852 Recurrent Diffuse Large B-Cell Lymphoma 10 95764 -NCIT:C138015 Recurrent Extranodal Diffuse Large B-cell Lymphoma 11 95765 -NCIT:C138025 Recurrent Intravascular Large B-Cell Lymphoma 11 95766 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 95767 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 95768 -NCIT:C156696 Recurrent T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 11 95769 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 11 95770 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 12 95771 -NCIT:C157679 Recurrent Primary Effusion Lymphoma 11 95772 -NCIT:C157683 Recurrent Plasmablastic Lymphoma 11 95773 -NCIT:C160229 Recurrent High Grade B-Cell Lymphoma 11 95774 -NCIT:C151980 Recurrent High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 12 95775 -NCIT:C162451 Recurrent High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 12 95776 -NCIT:C188788 Recurrent High Grade B-Cell Lymphoma, Not Otherwise Specified 12 95777 -NCIT:C165240 Recurrent Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 95778 -NCIT:C160230 Recurrent Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 12 95779 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 12 95780 -NCIT:C182035 Recurrent Immunoblastic Lymphoma 12 95781 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 13 95782 -NCIT:C8926 Recurrent Centroblastic Lymphoma 12 95783 -NCIT:C183140 Recurrent Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 11 95784 -NCIT:C188790 Recurrent ALK-Positive Large B-Cell Lymphoma 11 95785 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 11 95786 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 12 95787 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 12 95788 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 95789 -NCIT:C178553 Recurrent Aggressive B-Cell Non-Hodgkin Lymphoma 9 95790 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 95791 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 95792 -NCIT:C5008 Recurrent Burkitt Lymphoma 10 95793 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 11 95794 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 11 95795 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 10 95796 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 11 95797 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 11 95798 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 10 95799 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 11 95800 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 11 95801 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 10 95802 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 10 95803 -NCIT:C183512 Recurrent Indolent B-Cell Non-Hodgkin Lymphoma 9 95804 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 10 95805 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 11 95806 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 95807 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 11 95808 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 10 95809 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 10 95810 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 10 95811 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 11 95812 -NCIT:C150678 Methotrexate-Associated Lymphoma 6 95813 -NCIT:C7252 Methotrexate-Associated Peripheral T-Cell Lymphoma 7 95814 -NCIT:C7253 Methotrexate-Associated Diffuse Large B-Cell Lymphoma 7 95815 -NCIT:C7254 Methotrexate-Associated Follicular Lymphoma 7 95816 -NCIT:C7255 Methotrexate-Related Burkitt Lymphoma 7 95817 -NCIT:C7256 Methotrexate-Associated Hodgkin Lymphoma 7 95818 -NCIT:C153172 Advanced Lymphoma 6 95819 -NCIT:C172371 Advanced Non-Hodgkin Lymphoma 7 95820 -NCIT:C166180 Advanced Anaplastic Large Cell Lymphoma 8 95821 -NCIT:C171264 Advanced Diffuse Large B-Cell Lymphoma 8 95822 -NCIT:C172359 Advanced Follicular Lymphoma 8 95823 -NCIT:C172360 Advanced Marginal Zone Lymphoma 8 95824 -NCIT:C172361 Advanced Transformed Non-Hodgkin Lymphoma 8 95825 -NCIT:C172442 Advanced Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 95826 -NCIT:C53283 Advanced Favorable Non-Hodgkin Lymphoma 8 95827 -NCIT:C53284 Advanced Unfavorable Non-Hodgkin Lymphoma 8 95828 -NCIT:C172373 Advanced Hodgkin Lymphoma 7 95829 -NCIT:C68662 Advanced Favorable Hodgkin Lymphoma 8 95830 -NCIT:C68665 Advanced Unfavorable Hodgkin Lymphoma 8 95831 -NCIT:C157657 Unresectable Lymphoma 6 95832 -NCIT:C176994 Locally Advanced Lymphoma 6 95833 -NCIT:C180374 Early Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 7 95834 -NCIT:C27268 Lymphoma by Stage 6 95835 -NCIT:C141139 Lymphoma by Ann Arbor Stage 7 95836 -NCIT:C141140 Non-Hodgkin Lymphoma by Ann Arbor Stage 8 95837 -NCIT:C141235 Adult Non-Hodgkin Lymphoma by Ann Arbor Stage 9 95838 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 10 95839 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 11 95840 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 11 95841 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 11 95842 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 11 95843 -NCIT:C8102 Ann Arbor Stage I Adult Non-Hodgkin Lymphoma 10 95844 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 11 95845 -NCIT:C8464 Ann Arbor Stage I Indolent Adult Non-Hodgkin Lymphoma 11 95846 -NCIT:C9252 Ann Arbor Stage I Aggressive Adult Non-Hodgkin Lymphoma 11 95847 -NCIT:C8079 Ann Arbor Stage I Adult Lymphoblastic Lymphoma 12 95848 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 12 95849 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 12 95850 -NCIT:C8103 Ann Arbor Stage II Adult Non-Hodgkin Lymphoma 10 95851 -NCIT:C68686 Ann Arbor Stage II Aggressive Adult Non-Hodgkin Lymphoma 11 95852 -NCIT:C8125 Ann Arbor Stage II Adult Lymphoblastic Lymphoma 12 95853 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 13 95854 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 13 95855 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 12 95856 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 13 95857 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 13 95858 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 12 95859 -NCIT:C8472 Ann Arbor Stage II Contiguous Adult Aggressive Non-Hodgkin Lymphoma 12 95860 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 13 95861 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 13 95862 -NCIT:C8479 Ann Arbor Stage II Non-Contiguous Aggressive Adult Non-Hodgkin Lymphoma 12 95863 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 13 95864 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 13 95865 -NCIT:C68688 Ann Arbor Stage II Indolent Adult Non-Hodgkin Lymphoma 11 95866 -NCIT:C8467 Ann Arbor Stage II Contiguous Adult Indolent Non-Hodgkin Lymphoma 12 95867 -NCIT:C8478 Ann Arbor Stage II Non-Contiguous Adult Indolent Non-Hodgkin Lymphoma 12 95868 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 11 95869 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 12 95870 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 12 95871 -NCIT:C8466 Ann Arbor Stage II Contiguous Adult Non-Hodgkin Lymphoma 11 95872 -NCIT:C8467 Ann Arbor Stage II Contiguous Adult Indolent Non-Hodgkin Lymphoma 12 95873 -NCIT:C8472 Ann Arbor Stage II Contiguous Adult Aggressive Non-Hodgkin Lymphoma 12 95874 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 13 95875 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 13 95876 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 12 95877 -NCIT:C8477 Ann Arbor Stage II Non-Contiguous Adult Non-Hodgkin Lymphoma 11 95878 -NCIT:C8478 Ann Arbor Stage II Non-Contiguous Adult Indolent Non-Hodgkin Lymphoma 12 95879 -NCIT:C8479 Ann Arbor Stage II Non-Contiguous Aggressive Adult Non-Hodgkin Lymphoma 12 95880 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 13 95881 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 13 95882 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 12 95883 -NCIT:C8104 Ann Arbor Stage III Adult Non-Hodgkin Lymphoma 10 95884 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 11 95885 -NCIT:C8482 Ann Arbor Stage III Indolent Adult Non-Hodgkin Lymphoma 11 95886 -NCIT:C8484 Ann Arbor Stage III Aggressive Adult Non-Hodgkin Lymphoma 11 95887 -NCIT:C8138 Ann Arbor Stage III Adult Lymphoblastic Lymphoma 12 95888 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 12 95889 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 12 95890 -NCIT:C8105 Ann Arbor Stage IV Adult Non-Hodgkin Lymphoma 10 95891 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 11 95892 -NCIT:C8485 Ann Arbor Stage IV Indolent Adult Non-Hodgkin Lymphoma 11 95893 -NCIT:C8487 Ann Arbor Stage IV Aggressive Adult Non-Hodgkin Lymphoma 11 95894 -NCIT:C8151 Ann Arbor Stage IV Adult Lymphoblastic Lymphoma 12 95895 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 12 95896 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 12 95897 -NCIT:C141236 Childhood Non-Hodgkin Lymphoma by Ann Arbor Stage 9 95898 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 10 95899 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 95900 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 95901 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 95902 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 95903 -NCIT:C94791 Ann Arbor Stage I Childhood Non-Hodgkin Lymphoma 10 95904 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 95905 -NCIT:C9056 Ann Arbor Stage I Childhood Lymphoblastic Lymphoma 11 95906 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 11 95907 -NCIT:C94792 Ann Arbor Stage II Childhood Non-Hodgkin Lymphoma 10 95908 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 95909 -NCIT:C9057 Ann Arbor Stage II Childhood Lymphoblastic Lymphoma 11 95910 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 11 95911 -NCIT:C94793 Ann Arbor Stage III Childhood Non-Hodgkin Lymphoma 10 95912 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 95913 -NCIT:C9058 Ann Arbor Stage III Childhood Lymphoblastic Lymphoma 11 95914 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 11 95915 -NCIT:C94794 Ann Arbor Stage IV Childhood Non-Hodgkin Lymphoma 10 95916 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 95917 -NCIT:C9059 Ann Arbor Stage IV Childhood Lymphoblastic Lymphoma 11 95918 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 11 95919 -NCIT:C141243 B-Cell Non-Hodgkin Lymphoma by Ann Arbor Stage 9 95920 -NCIT:C141250 B Lymphoblastic Lymphoma by Ann Arbor Stage 10 95921 -NCIT:C8871 Ann Arbor Stage I B Lymphoblastic Lymphoma 11 95922 -NCIT:C8872 Ann Arbor Stage III B Lymphoblastic Lymphoma 11 95923 -NCIT:C8873 Ann Arbor Stage IV B Lymphoblastic Lymphoma 11 95924 -NCIT:C8937 Ann Arbor Stage II B Lymphoblastic Lymphoma 11 95925 -NCIT:C141253 Burkitt Lymphoma by Ann Arbor Stage 10 95926 -NCIT:C5084 Ann Arbor Stage IV Burkitt Lymphoma 11 95927 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 12 95928 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 12 95929 -NCIT:C8848 Ann Arbor Stage I Burkitt Lymphoma 11 95930 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 12 95931 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 12 95932 -NCIT:C8849 Ann Arbor Stage II Burkitt Lymphoma 11 95933 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 12 95934 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 13 95935 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 13 95936 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 12 95937 -NCIT:C8850 Ann Arbor Stage III Burkitt Lymphoma 11 95938 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 12 95939 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 12 95940 -NCIT:C141254 Diffuse Large B-Cell Lymphoma by Ann Arbor Stage 10 95941 -NCIT:C141262 Primary Mediastinal (Thymic) Large B-Cell Lymphoma by Ann Arbor Stage 11 95942 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 12 95943 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 12 95944 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 12 95945 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 12 95946 -NCIT:C141263 Centroblastic Lymphoma by Ann Arbor Stage 11 95947 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 12 95948 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 12 95949 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 12 95950 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 12 95951 -NCIT:C8854 Ann Arbor Stage I Diffuse Large B-Cell Lymphoma 11 95952 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 12 95953 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 12 95954 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 12 95955 -NCIT:C8855 Ann Arbor Stage II Diffuse Large B-Cell Lymphoma 11 95956 -NCIT:C171158 Ann Arbor Stage IIX (Bulky) Diffuse Large B-Cell Lymphoma 12 95957 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 12 95958 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 13 95959 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 13 95960 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 12 95961 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 12 95962 -NCIT:C8856 Ann Arbor Stage III Diffuse Large B-Cell Lymphoma 11 95963 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 12 95964 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 12 95965 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 12 95966 -NCIT:C8857 Ann Arbor Stage IV Diffuse Large B-Cell Lymphoma 11 95967 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 12 95968 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 12 95969 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 12 95970 -NCIT:C141255 Follicular Lymphoma by Ann Arbor Stage 10 95971 -NCIT:C5006 Ann Arbor Stage IV Follicular Lymphoma 11 95972 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 12 95973 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 12 95974 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 12 95975 -NCIT:C8859 Ann Arbor Stage I Follicular Lymphoma 11 95976 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 12 95977 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 12 95978 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 12 95979 -NCIT:C8860 Ann Arbor Stage II Follicular Lymphoma 11 95980 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 12 95981 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 13 95982 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 13 95983 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 12 95984 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 13 95985 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 13 95986 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 12 95987 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 13 95988 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 13 95989 -NCIT:C8861 Ann Arbor Stage III Follicular Lymphoma 11 95990 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 12 95991 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 12 95992 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 12 95993 -NCIT:C141256 Lymphoplasmacytic Lymphoma by Ann Arbor Stage 10 95994 -NCIT:C8653 Ann Arbor Stage I Lymphoplasmacytic Lymphoma 11 95995 -NCIT:C8654 Ann Arbor Stage II Lymphoplasmacytic Lymphoma 11 95996 -NCIT:C8655 Ann Arbor Stage III Lymphoplasmacytic Lymphoma 11 95997 -NCIT:C8656 Ann Arbor Stage IV Lymphoplasmacytic Lymphoma 11 95998 -NCIT:C141257 Mantle Cell Lymphoma by Ann Arbor Stage 10 95999 -NCIT:C8465 Ann Arbor Stage I Mantle Cell Lymphoma 11 96000 -NCIT:C8483 Ann Arbor Stage III Mantle Cell Lymphoma 11 96001 -NCIT:C8486 Ann Arbor Stage IV Mantle Cell Lymphoma 11 96002 -NCIT:C9202 Ann Arbor Stage II Mantle Cell Lymphoma 11 96003 -NCIT:C8473 Ann Arbor Stage II Contiguous Mantle Cell Lymphoma 12 96004 -NCIT:C9198 Ann Arbor Stage II Non-Contiguous Mantle Cell Lymphoma 12 96005 -NCIT:C141258 Marginal Zone Lymphoma by Ann Arbor Stage 10 96006 -NCIT:C141260 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue by Ann Arbor Stage 11 96007 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 96008 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 96009 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 96010 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 96011 -NCIT:C141261 Nodal Marginal Zone Lymphoma by Ann Arbor Stage 11 96012 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 12 96013 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 12 96014 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 12 96015 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 12 96016 -NCIT:C68678 Ann Arbor Stage I Marginal Zone Lymphoma 11 96017 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 96018 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 12 96019 -NCIT:C68679 Ann Arbor Stage II Marginal Zone Lymphoma 11 96020 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 96021 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 12 96022 -NCIT:C68682 Ann Arbor Stage III Marginal Zone Lymphoma 11 96023 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 96024 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 12 96025 -NCIT:C68683 Ann Arbor Stage IV Marginal Zone Lymphoma 11 96026 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 96027 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 12 96028 -NCIT:C141259 Small Lymphocytic Lymphoma by Ann Arbor Stage 10 96029 -NCIT:C8070 Ann Arbor Stage I Small Lymphocytic Lymphoma 11 96030 -NCIT:C8115 Ann Arbor Stage II Small Lymphocytic Lymphoma 11 96031 -NCIT:C8128 Ann Arbor Stage III Small Lymphocytic Lymphoma 11 96032 -NCIT:C8141 Ann Arbor Stage IV Small Lymphocytic Lymphoma 11 96033 -NCIT:C27308 Ann Arbor Stage I B-Cell Non-Hodgkin Lymphoma 10 96034 -NCIT:C68678 Ann Arbor Stage I Marginal Zone Lymphoma 11 96035 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 96036 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 12 96037 -NCIT:C8070 Ann Arbor Stage I Small Lymphocytic Lymphoma 11 96038 -NCIT:C8465 Ann Arbor Stage I Mantle Cell Lymphoma 11 96039 -NCIT:C8653 Ann Arbor Stage I Lymphoplasmacytic Lymphoma 11 96040 -NCIT:C8848 Ann Arbor Stage I Burkitt Lymphoma 11 96041 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 12 96042 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 12 96043 -NCIT:C8854 Ann Arbor Stage I Diffuse Large B-Cell Lymphoma 11 96044 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 12 96045 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 12 96046 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 12 96047 -NCIT:C8859 Ann Arbor Stage I Follicular Lymphoma 11 96048 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 12 96049 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 12 96050 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 12 96051 -NCIT:C8871 Ann Arbor Stage I B Lymphoblastic Lymphoma 11 96052 -NCIT:C8843 Ann Arbor Stage II B-Cell Non-Hodgkin Lymphoma 10 96053 -NCIT:C68679 Ann Arbor Stage II Marginal Zone Lymphoma 11 96054 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 96055 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 12 96056 -NCIT:C8115 Ann Arbor Stage II Small Lymphocytic Lymphoma 11 96057 -NCIT:C8654 Ann Arbor Stage II Lymphoplasmacytic Lymphoma 11 96058 -NCIT:C8849 Ann Arbor Stage II Burkitt Lymphoma 11 96059 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 12 96060 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 13 96061 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 13 96062 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 12 96063 -NCIT:C8855 Ann Arbor Stage II Diffuse Large B-Cell Lymphoma 11 96064 -NCIT:C171158 Ann Arbor Stage IIX (Bulky) Diffuse Large B-Cell Lymphoma 12 96065 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 12 96066 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 13 96067 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 13 96068 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 12 96069 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 12 96070 -NCIT:C8860 Ann Arbor Stage II Follicular Lymphoma 11 96071 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 12 96072 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 13 96073 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 13 96074 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 12 96075 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 13 96076 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 13 96077 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 12 96078 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 13 96079 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 13 96080 -NCIT:C8937 Ann Arbor Stage II B Lymphoblastic Lymphoma 11 96081 -NCIT:C9202 Ann Arbor Stage II Mantle Cell Lymphoma 11 96082 -NCIT:C8473 Ann Arbor Stage II Contiguous Mantle Cell Lymphoma 12 96083 -NCIT:C9198 Ann Arbor Stage II Non-Contiguous Mantle Cell Lymphoma 12 96084 -NCIT:C8844 Ann Arbor Stage III B-Cell Non-Hodgkin Lymphoma 10 96085 -NCIT:C68682 Ann Arbor Stage III Marginal Zone Lymphoma 11 96086 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 96087 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 12 96088 -NCIT:C8128 Ann Arbor Stage III Small Lymphocytic Lymphoma 11 96089 -NCIT:C8483 Ann Arbor Stage III Mantle Cell Lymphoma 11 96090 -NCIT:C8655 Ann Arbor Stage III Lymphoplasmacytic Lymphoma 11 96091 -NCIT:C8850 Ann Arbor Stage III Burkitt Lymphoma 11 96092 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 12 96093 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 12 96094 -NCIT:C8856 Ann Arbor Stage III Diffuse Large B-Cell Lymphoma 11 96095 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 12 96096 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 12 96097 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 12 96098 -NCIT:C8861 Ann Arbor Stage III Follicular Lymphoma 11 96099 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 12 96100 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 12 96101 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 12 96102 -NCIT:C8872 Ann Arbor Stage III B Lymphoblastic Lymphoma 11 96103 -NCIT:C8845 Ann Arbor Stage IV B-Cell Non-Hodgkin Lymphoma 10 96104 -NCIT:C5006 Ann Arbor Stage IV Follicular Lymphoma 11 96105 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 12 96106 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 12 96107 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 12 96108 -NCIT:C5084 Ann Arbor Stage IV Burkitt Lymphoma 11 96109 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 12 96110 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 12 96111 -NCIT:C68683 Ann Arbor Stage IV Marginal Zone Lymphoma 11 96112 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 96113 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 12 96114 -NCIT:C8141 Ann Arbor Stage IV Small Lymphocytic Lymphoma 11 96115 -NCIT:C8486 Ann Arbor Stage IV Mantle Cell Lymphoma 11 96116 -NCIT:C8656 Ann Arbor Stage IV Lymphoplasmacytic Lymphoma 11 96117 -NCIT:C8857 Ann Arbor Stage IV Diffuse Large B-Cell Lymphoma 11 96118 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 12 96119 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 12 96120 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 12 96121 -NCIT:C8873 Ann Arbor Stage IV B Lymphoblastic Lymphoma 11 96122 -NCIT:C141247 T-Cell Non-Hodgkin Lymphoma by Ann Arbor Stage 9 96123 -NCIT:C141272 Mature T- and NK-Cell Lymphoma by Ann Arbor Stage 10 96124 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 11 96125 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 12 96126 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 12 96127 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 12 96128 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 12 96129 -NCIT:C141284 Noncutaneous Anaplastic Large Cell Lymphoma by Ann Arbor Stage 11 96130 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 12 96131 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 13 96132 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 13 96133 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 13 96134 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 13 96135 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 12 96136 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 13 96137 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 12 96138 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 13 96139 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 12 96140 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 13 96141 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 12 96142 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 13 96143 -NCIT:C141294 Angioimmunoblastic T-Cell Lymphoma by Ann Arbor Stage 11 96144 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 12 96145 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 12 96146 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 12 96147 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 12 96148 -NCIT:C141295 Enteropathy-Associated T-Cell Lymphoma by Ann Arbor Stage 11 96149 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 12 96150 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 12 96151 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 12 96152 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 12 96153 -NCIT:C141296 Nasal Type NK/T-Cell Lymphoma by Ann Arbor Stage 11 96154 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 12 96155 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 12 96156 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 12 96157 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 12 96158 -NCIT:C8690 Ann Arbor Stage I Mature T- and NK-Cell Lymphoma 11 96159 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 12 96160 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 12 96161 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 13 96162 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 12 96163 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 12 96164 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 12 96165 -NCIT:C8691 Ann Arbor Stage II Mature T- and NK-Cell Lymphoma 11 96166 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 12 96167 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 12 96168 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 13 96169 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 12 96170 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 12 96171 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 12 96172 -NCIT:C8692 Ann Arbor Stage III Mature T- and NK-Cell Lymphoma 11 96173 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 12 96174 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 12 96175 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 13 96176 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 12 96177 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 12 96178 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 12 96179 -NCIT:C8693 Ann Arbor Stage IV Mature T- and NK-Cell Lymphoma 11 96180 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 12 96181 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 12 96182 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 13 96183 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 12 96184 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 12 96185 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 12 96186 -NCIT:C8665 Ann Arbor Stage I T-Cell Non-Hodgkin Lymphoma 10 96187 -NCIT:C8690 Ann Arbor Stage I Mature T- and NK-Cell Lymphoma 11 96188 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 12 96189 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 12 96190 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 13 96191 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 12 96192 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 12 96193 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 12 96194 -NCIT:C8666 Ann Arbor Stage II T-Cell Non-Hodgkin Lymphoma 10 96195 -NCIT:C8691 Ann Arbor Stage II Mature T- and NK-Cell Lymphoma 11 96196 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 12 96197 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 12 96198 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 13 96199 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 12 96200 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 12 96201 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 12 96202 -NCIT:C8667 Ann Arbor Stage III T-Cell Non-Hodgkin Lymphoma 10 96203 -NCIT:C8692 Ann Arbor Stage III Mature T- and NK-Cell Lymphoma 11 96204 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 12 96205 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 12 96206 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 13 96207 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 12 96208 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 12 96209 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 12 96210 -NCIT:C8668 Ann Arbor Stage IV T-Cell Non-Hodgkin Lymphoma 10 96211 -NCIT:C8693 Ann Arbor Stage IV Mature T- and NK-Cell Lymphoma 11 96212 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 12 96213 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 12 96214 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 13 96215 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 12 96216 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 12 96217 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 12 96218 -NCIT:C8520 Ann Arbor Stage I Non-Hodgkin Lymphoma 9 96219 -NCIT:C27308 Ann Arbor Stage I B-Cell Non-Hodgkin Lymphoma 10 96220 -NCIT:C68678 Ann Arbor Stage I Marginal Zone Lymphoma 11 96221 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 96222 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 12 96223 -NCIT:C8070 Ann Arbor Stage I Small Lymphocytic Lymphoma 11 96224 -NCIT:C8465 Ann Arbor Stage I Mantle Cell Lymphoma 11 96225 -NCIT:C8653 Ann Arbor Stage I Lymphoplasmacytic Lymphoma 11 96226 -NCIT:C8848 Ann Arbor Stage I Burkitt Lymphoma 11 96227 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 12 96228 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 12 96229 -NCIT:C8854 Ann Arbor Stage I Diffuse Large B-Cell Lymphoma 11 96230 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 12 96231 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 12 96232 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 12 96233 -NCIT:C8859 Ann Arbor Stage I Follicular Lymphoma 11 96234 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 12 96235 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 12 96236 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 12 96237 -NCIT:C8871 Ann Arbor Stage I B Lymphoblastic Lymphoma 11 96238 -NCIT:C8102 Ann Arbor Stage I Adult Non-Hodgkin Lymphoma 10 96239 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 11 96240 -NCIT:C8464 Ann Arbor Stage I Indolent Adult Non-Hodgkin Lymphoma 11 96241 -NCIT:C9252 Ann Arbor Stage I Aggressive Adult Non-Hodgkin Lymphoma 11 96242 -NCIT:C8079 Ann Arbor Stage I Adult Lymphoblastic Lymphoma 12 96243 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 12 96244 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 12 96245 -NCIT:C8665 Ann Arbor Stage I T-Cell Non-Hodgkin Lymphoma 10 96246 -NCIT:C8690 Ann Arbor Stage I Mature T- and NK-Cell Lymphoma 11 96247 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 12 96248 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 12 96249 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 13 96250 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 12 96251 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 12 96252 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 12 96253 -NCIT:C94791 Ann Arbor Stage I Childhood Non-Hodgkin Lymphoma 10 96254 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 96255 -NCIT:C9056 Ann Arbor Stage I Childhood Lymphoblastic Lymphoma 11 96256 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 11 96257 -NCIT:C8521 Ann Arbor Stage II Non-Hodgkin Lymphoma 9 96258 -NCIT:C171159 Ann Arbor Stage IIX (Bulky) Non-Hodgkin Lymphoma 10 96259 -NCIT:C171158 Ann Arbor Stage IIX (Bulky) Diffuse Large B-Cell Lymphoma 11 96260 -NCIT:C8103 Ann Arbor Stage II Adult Non-Hodgkin Lymphoma 10 96261 -NCIT:C68686 Ann Arbor Stage II Aggressive Adult Non-Hodgkin Lymphoma 11 96262 -NCIT:C8125 Ann Arbor Stage II Adult Lymphoblastic Lymphoma 12 96263 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 13 96264 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 13 96265 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 12 96266 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 13 96267 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 13 96268 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 12 96269 -NCIT:C8472 Ann Arbor Stage II Contiguous Adult Aggressive Non-Hodgkin Lymphoma 12 96270 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 13 96271 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 13 96272 -NCIT:C8479 Ann Arbor Stage II Non-Contiguous Aggressive Adult Non-Hodgkin Lymphoma 12 96273 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 13 96274 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 13 96275 -NCIT:C68688 Ann Arbor Stage II Indolent Adult Non-Hodgkin Lymphoma 11 96276 -NCIT:C8467 Ann Arbor Stage II Contiguous Adult Indolent Non-Hodgkin Lymphoma 12 96277 -NCIT:C8478 Ann Arbor Stage II Non-Contiguous Adult Indolent Non-Hodgkin Lymphoma 12 96278 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 11 96279 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 12 96280 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 12 96281 -NCIT:C8466 Ann Arbor Stage II Contiguous Adult Non-Hodgkin Lymphoma 11 96282 -NCIT:C8467 Ann Arbor Stage II Contiguous Adult Indolent Non-Hodgkin Lymphoma 12 96283 -NCIT:C8472 Ann Arbor Stage II Contiguous Adult Aggressive Non-Hodgkin Lymphoma 12 96284 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 13 96285 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 13 96286 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 12 96287 -NCIT:C8477 Ann Arbor Stage II Non-Contiguous Adult Non-Hodgkin Lymphoma 11 96288 -NCIT:C8478 Ann Arbor Stage II Non-Contiguous Adult Indolent Non-Hodgkin Lymphoma 12 96289 -NCIT:C8479 Ann Arbor Stage II Non-Contiguous Aggressive Adult Non-Hodgkin Lymphoma 12 96290 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 13 96291 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 13 96292 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 12 96293 -NCIT:C8666 Ann Arbor Stage II T-Cell Non-Hodgkin Lymphoma 10 96294 -NCIT:C8691 Ann Arbor Stage II Mature T- and NK-Cell Lymphoma 11 96295 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 12 96296 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 12 96297 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 13 96298 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 12 96299 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 12 96300 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 12 96301 -NCIT:C8843 Ann Arbor Stage II B-Cell Non-Hodgkin Lymphoma 10 96302 -NCIT:C68679 Ann Arbor Stage II Marginal Zone Lymphoma 11 96303 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 96304 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 12 96305 -NCIT:C8115 Ann Arbor Stage II Small Lymphocytic Lymphoma 11 96306 -NCIT:C8654 Ann Arbor Stage II Lymphoplasmacytic Lymphoma 11 96307 -NCIT:C8849 Ann Arbor Stage II Burkitt Lymphoma 11 96308 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 12 96309 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 13 96310 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 13 96311 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 12 96312 -NCIT:C8855 Ann Arbor Stage II Diffuse Large B-Cell Lymphoma 11 96313 -NCIT:C171158 Ann Arbor Stage IIX (Bulky) Diffuse Large B-Cell Lymphoma 12 96314 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 12 96315 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 13 96316 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 13 96317 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 12 96318 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 12 96319 -NCIT:C8860 Ann Arbor Stage II Follicular Lymphoma 11 96320 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 12 96321 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 13 96322 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 13 96323 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 12 96324 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 13 96325 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 13 96326 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 12 96327 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 13 96328 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 13 96329 -NCIT:C8937 Ann Arbor Stage II B Lymphoblastic Lymphoma 11 96330 -NCIT:C9202 Ann Arbor Stage II Mantle Cell Lymphoma 11 96331 -NCIT:C8473 Ann Arbor Stage II Contiguous Mantle Cell Lymphoma 12 96332 -NCIT:C9198 Ann Arbor Stage II Non-Contiguous Mantle Cell Lymphoma 12 96333 -NCIT:C94792 Ann Arbor Stage II Childhood Non-Hodgkin Lymphoma 10 96334 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 96335 -NCIT:C9057 Ann Arbor Stage II Childhood Lymphoblastic Lymphoma 11 96336 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 11 96337 -NCIT:C8522 Ann Arbor Stage III Non-Hodgkin Lymphoma 9 96338 -NCIT:C8104 Ann Arbor Stage III Adult Non-Hodgkin Lymphoma 10 96339 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 11 96340 -NCIT:C8482 Ann Arbor Stage III Indolent Adult Non-Hodgkin Lymphoma 11 96341 -NCIT:C8484 Ann Arbor Stage III Aggressive Adult Non-Hodgkin Lymphoma 11 96342 -NCIT:C8138 Ann Arbor Stage III Adult Lymphoblastic Lymphoma 12 96343 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 12 96344 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 12 96345 -NCIT:C8667 Ann Arbor Stage III T-Cell Non-Hodgkin Lymphoma 10 96346 -NCIT:C8692 Ann Arbor Stage III Mature T- and NK-Cell Lymphoma 11 96347 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 12 96348 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 12 96349 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 13 96350 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 12 96351 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 12 96352 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 12 96353 -NCIT:C8844 Ann Arbor Stage III B-Cell Non-Hodgkin Lymphoma 10 96354 -NCIT:C68682 Ann Arbor Stage III Marginal Zone Lymphoma 11 96355 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 96356 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 12 96357 -NCIT:C8128 Ann Arbor Stage III Small Lymphocytic Lymphoma 11 96358 -NCIT:C8483 Ann Arbor Stage III Mantle Cell Lymphoma 11 96359 -NCIT:C8655 Ann Arbor Stage III Lymphoplasmacytic Lymphoma 11 96360 -NCIT:C8850 Ann Arbor Stage III Burkitt Lymphoma 11 96361 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 12 96362 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 12 96363 -NCIT:C8856 Ann Arbor Stage III Diffuse Large B-Cell Lymphoma 11 96364 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 12 96365 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 12 96366 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 12 96367 -NCIT:C8861 Ann Arbor Stage III Follicular Lymphoma 11 96368 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 12 96369 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 12 96370 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 12 96371 -NCIT:C8872 Ann Arbor Stage III B Lymphoblastic Lymphoma 11 96372 -NCIT:C94793 Ann Arbor Stage III Childhood Non-Hodgkin Lymphoma 10 96373 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 96374 -NCIT:C9058 Ann Arbor Stage III Childhood Lymphoblastic Lymphoma 11 96375 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 11 96376 -NCIT:C8523 Ann Arbor Stage IV Non-Hodgkin Lymphoma 9 96377 -NCIT:C8105 Ann Arbor Stage IV Adult Non-Hodgkin Lymphoma 10 96378 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 11 96379 -NCIT:C8485 Ann Arbor Stage IV Indolent Adult Non-Hodgkin Lymphoma 11 96380 -NCIT:C8487 Ann Arbor Stage IV Aggressive Adult Non-Hodgkin Lymphoma 11 96381 -NCIT:C8151 Ann Arbor Stage IV Adult Lymphoblastic Lymphoma 12 96382 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 12 96383 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 12 96384 -NCIT:C8668 Ann Arbor Stage IV T-Cell Non-Hodgkin Lymphoma 10 96385 -NCIT:C8693 Ann Arbor Stage IV Mature T- and NK-Cell Lymphoma 11 96386 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 12 96387 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 12 96388 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 13 96389 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 12 96390 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 12 96391 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 12 96392 -NCIT:C8845 Ann Arbor Stage IV B-Cell Non-Hodgkin Lymphoma 10 96393 -NCIT:C5006 Ann Arbor Stage IV Follicular Lymphoma 11 96394 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 12 96395 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 12 96396 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 12 96397 -NCIT:C5084 Ann Arbor Stage IV Burkitt Lymphoma 11 96398 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 12 96399 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 12 96400 -NCIT:C68683 Ann Arbor Stage IV Marginal Zone Lymphoma 11 96401 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 96402 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 12 96403 -NCIT:C8141 Ann Arbor Stage IV Small Lymphocytic Lymphoma 11 96404 -NCIT:C8486 Ann Arbor Stage IV Mantle Cell Lymphoma 11 96405 -NCIT:C8656 Ann Arbor Stage IV Lymphoplasmacytic Lymphoma 11 96406 -NCIT:C8857 Ann Arbor Stage IV Diffuse Large B-Cell Lymphoma 11 96407 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 12 96408 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 12 96409 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 12 96410 -NCIT:C8873 Ann Arbor Stage IV B Lymphoblastic Lymphoma 11 96411 -NCIT:C94794 Ann Arbor Stage IV Childhood Non-Hodgkin Lymphoma 10 96412 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 96413 -NCIT:C9059 Ann Arbor Stage IV Childhood Lymphoblastic Lymphoma 11 96414 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 11 96415 -NCIT:C141141 Hodgkin Lymphoma by Ann Arbor Stage 8 96416 -NCIT:C141222 Lymphocyte-Depleted Classic Hodgkin Lymphoma by Ann Arbor Stage 9 96417 -NCIT:C3583 Ann Arbor Stage III Lymphocyte-Depleted Classic Hodgkin Lymphoma 10 96418 -NCIT:C5064 Ann Arbor Stage I Lymphocyte-Depleted Classic Hodgkin Lymphoma 10 96419 -NCIT:C5065 Ann Arbor Stage I Subdiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 11 96420 -NCIT:C5066 Ann Arbor Stage I Supradiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 11 96421 -NCIT:C5067 Ann Arbor Stage II Lymphocyte-Depleted Classic Hodgkin Lymphoma 10 96422 -NCIT:C5068 Ann Arbor Stage II Subdiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 11 96423 -NCIT:C5069 Ann Arbor Stage II Supradiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 11 96424 -NCIT:C8651 Ann Arbor Stage IV Lymphocyte-Depleted Classic Hodgkin Lymphoma 10 96425 -NCIT:C141223 Nodular Sclerosis Classic Hodgkin Lymphoma by Ann Arbor Stage 9 96426 -NCIT:C3581 Ann Arbor Stage III Nodular Sclerosis Classic Hodgkin Lymphoma 10 96427 -NCIT:C5081 Ann Arbor Stage II Nodular Sclerosis Classic Hodgkin Lymphoma 10 96428 -NCIT:C5082 Ann Arbor Stage II Subdiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 11 96429 -NCIT:C5083 Ann Arbor Stage II Supradiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 11 96430 -NCIT:C8839 Ann Arbor Stage I Nodular Sclerosis Classic Hodgkin Lymphoma 10 96431 -NCIT:C5079 Ann Arbor Stage I Subdiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 11 96432 -NCIT:C5080 Ann Arbor Stage I Supradiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 11 96433 -NCIT:C8840 Ann Arbor Stage IV Nodular Sclerosis Classic Hodgkin Lymphoma 10 96434 -NCIT:C141224 Mixed Cellularity Classic Hodgkin Lymphoma by Ann Arbor Stage 9 96435 -NCIT:C3582 Ann Arbor Stage III Mixed Cellularity Classic Hodgkin Lymphoma 10 96436 -NCIT:C5077 Ann Arbor Stage II Mixed Cellularity Classic Hodgkin Lymphoma 10 96437 -NCIT:C5078 Ann Arbor Stage II Subdiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 11 96438 -NCIT:C5104 Ann Arbor Stage II Supradiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 11 96439 -NCIT:C8834 Ann Arbor Stage I Mixed Cellularity Classic Hodgkin Lymphoma 10 96440 -NCIT:C5075 Ann Arbor Stage I Subdiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 11 96441 -NCIT:C5076 Ann Arbor Stage I Supradiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 11 96442 -NCIT:C8835 Ann Arbor Stage IV Mixed Cellularity Classic Hodgkin Lymphoma 10 96443 -NCIT:C141225 Nodular Lymphocyte Predominant Hodgkin Lymphoma by Ann Arbor Stage 9 96444 -NCIT:C5070 Ann Arbor Stage II Nodular Lymphocyte Predominant Hodgkin Lymphoma 10 96445 -NCIT:C5071 Ann Arbor Stage II Subdiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 11 96446 -NCIT:C5072 Ann Arbor Stage II Supradiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 11 96447 -NCIT:C5634 Ann Arbor Stage I Nodular Lymphocyte Predominant Hodgkin Lymphoma 10 96448 -NCIT:C5073 Ann Arbor Stage I Subdiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 11 96449 -NCIT:C5074 Ann Arbor Stage I Supradiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 11 96450 -NCIT:C7261 Ann Arbor Stage IV Nodular Lymphocyte Predominant Hodgkin Lymphoma 10 96451 -NCIT:C7262 Ann Arbor Stage III Nodular Lymphocyte Predominant Hodgkin Lymphoma 10 96452 -NCIT:C141226 Adult Hodgkin Lymphoma by Ann Arbor Stage 9 96453 -NCIT:C9032 Ann Arbor Stage I Adult Hodgkin Lymphoma 10 96454 -NCIT:C9033 Ann Arbor Stage II Adult Hodgkin Lymphoma 10 96455 -NCIT:C9034 Ann Arbor Stage III Adult Hodgkin Lymphoma 10 96456 -NCIT:C9035 Ann Arbor Stage IV Adult Hodgkin Lymphoma 10 96457 -NCIT:C141227 Childhood Hodgkin Lymphoma by Ann Arbor Stage 9 96458 -NCIT:C8055 Ann Arbor Stage II Childhood Hodgkin Lymphoma 10 96459 -NCIT:C8056 Ann Arbor Stage I Childhood Hodgkin Lymphoma 10 96460 -NCIT:C8057 Ann Arbor Stage III Childhood Hodgkin Lymphoma 10 96461 -NCIT:C8058 Ann Arbor Stage IV Childhood Hodgkin Lymphoma 10 96462 -NCIT:C3584 Ann Arbor Stage III Hodgkin Lymphoma 9 96463 -NCIT:C3581 Ann Arbor Stage III Nodular Sclerosis Classic Hodgkin Lymphoma 10 96464 -NCIT:C3582 Ann Arbor Stage III Mixed Cellularity Classic Hodgkin Lymphoma 10 96465 -NCIT:C3583 Ann Arbor Stage III Lymphocyte-Depleted Classic Hodgkin Lymphoma 10 96466 -NCIT:C3914 Ann Arbor Stage IIIA Hodgkin Lymphoma 10 96467 -NCIT:C4058 Ann Arbor Stage IIIB Hodgkin Lymphoma 10 96468 -NCIT:C7262 Ann Arbor Stage III Nodular Lymphocyte Predominant Hodgkin Lymphoma 10 96469 -NCIT:C8057 Ann Arbor Stage III Childhood Hodgkin Lymphoma 10 96470 -NCIT:C9034 Ann Arbor Stage III Adult Hodgkin Lymphoma 10 96471 -NCIT:C8517 Ann Arbor Stage I Hodgkin Lymphoma 9 96472 -NCIT:C3911 Ann Arbor Stage IA Hodgkin Lymphoma 10 96473 -NCIT:C5011 Ann Arbor Stage I Supradiaphragmatic Hodgkin Lymphoma 10 96474 -NCIT:C5066 Ann Arbor Stage I Supradiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 11 96475 -NCIT:C5074 Ann Arbor Stage I Supradiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 11 96476 -NCIT:C5076 Ann Arbor Stage I Supradiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 11 96477 -NCIT:C5080 Ann Arbor Stage I Supradiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 11 96478 -NCIT:C5012 Ann Arbor Stage I Subdiaphragmatic Hodgkin Lymphoma 10 96479 -NCIT:C5065 Ann Arbor Stage I Subdiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 11 96480 -NCIT:C5073 Ann Arbor Stage I Subdiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 11 96481 -NCIT:C5075 Ann Arbor Stage I Subdiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 11 96482 -NCIT:C5079 Ann Arbor Stage I Subdiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 11 96483 -NCIT:C5064 Ann Arbor Stage I Lymphocyte-Depleted Classic Hodgkin Lymphoma 10 96484 -NCIT:C5065 Ann Arbor Stage I Subdiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 11 96485 -NCIT:C5066 Ann Arbor Stage I Supradiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 11 96486 -NCIT:C5632 Ann Arbor Stage IB Hodgkin Lymphoma 10 96487 -NCIT:C5634 Ann Arbor Stage I Nodular Lymphocyte Predominant Hodgkin Lymphoma 10 96488 -NCIT:C5073 Ann Arbor Stage I Subdiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 11 96489 -NCIT:C5074 Ann Arbor Stage I Supradiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 11 96490 -NCIT:C8056 Ann Arbor Stage I Childhood Hodgkin Lymphoma 10 96491 -NCIT:C8834 Ann Arbor Stage I Mixed Cellularity Classic Hodgkin Lymphoma 10 96492 -NCIT:C5075 Ann Arbor Stage I Subdiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 11 96493 -NCIT:C5076 Ann Arbor Stage I Supradiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 11 96494 -NCIT:C8839 Ann Arbor Stage I Nodular Sclerosis Classic Hodgkin Lymphoma 10 96495 -NCIT:C5079 Ann Arbor Stage I Subdiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 11 96496 -NCIT:C5080 Ann Arbor Stage I Supradiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 11 96497 -NCIT:C9032 Ann Arbor Stage I Adult Hodgkin Lymphoma 10 96498 -NCIT:C8518 Ann Arbor Stage II Hodgkin Lymphoma 9 96499 -NCIT:C3912 Ann Arbor Stage IIA Hodgkin Lymphoma 10 96500 -NCIT:C3913 Ann Arbor Stage IIB Hodgkin Lymphoma 10 96501 -NCIT:C5009 Ann Arbor Stage II Supradiaphragmatic Hodgkin Lymphoma 10 96502 -NCIT:C5069 Ann Arbor Stage II Supradiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 11 96503 -NCIT:C5072 Ann Arbor Stage II Supradiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 11 96504 -NCIT:C5083 Ann Arbor Stage II Supradiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 11 96505 -NCIT:C5104 Ann Arbor Stage II Supradiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 11 96506 -NCIT:C5010 Ann Arbor Stage II Subdiaphragmatic Hodgkin Lymphoma 10 96507 -NCIT:C5068 Ann Arbor Stage II Subdiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 11 96508 -NCIT:C5071 Ann Arbor Stage II Subdiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 11 96509 -NCIT:C5078 Ann Arbor Stage II Subdiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 11 96510 -NCIT:C5082 Ann Arbor Stage II Subdiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 11 96511 -NCIT:C5067 Ann Arbor Stage II Lymphocyte-Depleted Classic Hodgkin Lymphoma 10 96512 -NCIT:C5068 Ann Arbor Stage II Subdiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 11 96513 -NCIT:C5069 Ann Arbor Stage II Supradiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 11 96514 -NCIT:C5070 Ann Arbor Stage II Nodular Lymphocyte Predominant Hodgkin Lymphoma 10 96515 -NCIT:C5071 Ann Arbor Stage II Subdiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 11 96516 -NCIT:C5072 Ann Arbor Stage II Supradiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 11 96517 -NCIT:C5077 Ann Arbor Stage II Mixed Cellularity Classic Hodgkin Lymphoma 10 96518 -NCIT:C5078 Ann Arbor Stage II Subdiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 11 96519 -NCIT:C5104 Ann Arbor Stage II Supradiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 11 96520 -NCIT:C5081 Ann Arbor Stage II Nodular Sclerosis Classic Hodgkin Lymphoma 10 96521 -NCIT:C5082 Ann Arbor Stage II Subdiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 11 96522 -NCIT:C5083 Ann Arbor Stage II Supradiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 11 96523 -NCIT:C8055 Ann Arbor Stage II Childhood Hodgkin Lymphoma 10 96524 -NCIT:C9033 Ann Arbor Stage II Adult Hodgkin Lymphoma 10 96525 -NCIT:C8519 Ann Arbor Stage IV Hodgkin Lymphoma 9 96526 -NCIT:C4059 Ann Arbor Stage IVA Hodgkin Lymphoma 10 96527 -NCIT:C5633 Ann Arbor Stage IVB Hodgkin Lymphoma 10 96528 -NCIT:C7261 Ann Arbor Stage IV Nodular Lymphocyte Predominant Hodgkin Lymphoma 10 96529 -NCIT:C8058 Ann Arbor Stage IV Childhood Hodgkin Lymphoma 10 96530 -NCIT:C8651 Ann Arbor Stage IV Lymphocyte-Depleted Classic Hodgkin Lymphoma 10 96531 -NCIT:C8835 Ann Arbor Stage IV Mixed Cellularity Classic Hodgkin Lymphoma 10 96532 -NCIT:C8840 Ann Arbor Stage IV Nodular Sclerosis Classic Hodgkin Lymphoma 10 96533 -NCIT:C9035 Ann Arbor Stage IV Adult Hodgkin Lymphoma 10 96534 -NCIT:C8318 Ann Arbor Stage I Lymphoma 8 96535 -NCIT:C8517 Ann Arbor Stage I Hodgkin Lymphoma 9 96536 -NCIT:C3911 Ann Arbor Stage IA Hodgkin Lymphoma 10 96537 -NCIT:C5011 Ann Arbor Stage I Supradiaphragmatic Hodgkin Lymphoma 10 96538 -NCIT:C5066 Ann Arbor Stage I Supradiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 11 96539 -NCIT:C5074 Ann Arbor Stage I Supradiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 11 96540 -NCIT:C5076 Ann Arbor Stage I Supradiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 11 96541 -NCIT:C5080 Ann Arbor Stage I Supradiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 11 96542 -NCIT:C5012 Ann Arbor Stage I Subdiaphragmatic Hodgkin Lymphoma 10 96543 -NCIT:C5065 Ann Arbor Stage I Subdiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 11 96544 -NCIT:C5073 Ann Arbor Stage I Subdiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 11 96545 -NCIT:C5075 Ann Arbor Stage I Subdiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 11 96546 -NCIT:C5079 Ann Arbor Stage I Subdiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 11 96547 -NCIT:C5064 Ann Arbor Stage I Lymphocyte-Depleted Classic Hodgkin Lymphoma 10 96548 -NCIT:C5065 Ann Arbor Stage I Subdiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 11 96549 -NCIT:C5066 Ann Arbor Stage I Supradiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 11 96550 -NCIT:C5632 Ann Arbor Stage IB Hodgkin Lymphoma 10 96551 -NCIT:C5634 Ann Arbor Stage I Nodular Lymphocyte Predominant Hodgkin Lymphoma 10 96552 -NCIT:C5073 Ann Arbor Stage I Subdiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 11 96553 -NCIT:C5074 Ann Arbor Stage I Supradiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 11 96554 -NCIT:C8056 Ann Arbor Stage I Childhood Hodgkin Lymphoma 10 96555 -NCIT:C8834 Ann Arbor Stage I Mixed Cellularity Classic Hodgkin Lymphoma 10 96556 -NCIT:C5075 Ann Arbor Stage I Subdiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 11 96557 -NCIT:C5076 Ann Arbor Stage I Supradiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 11 96558 -NCIT:C8839 Ann Arbor Stage I Nodular Sclerosis Classic Hodgkin Lymphoma 10 96559 -NCIT:C5079 Ann Arbor Stage I Subdiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 11 96560 -NCIT:C5080 Ann Arbor Stage I Supradiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 11 96561 -NCIT:C9032 Ann Arbor Stage I Adult Hodgkin Lymphoma 10 96562 -NCIT:C8520 Ann Arbor Stage I Non-Hodgkin Lymphoma 9 96563 -NCIT:C27308 Ann Arbor Stage I B-Cell Non-Hodgkin Lymphoma 10 96564 -NCIT:C68678 Ann Arbor Stage I Marginal Zone Lymphoma 11 96565 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 96566 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 12 96567 -NCIT:C8070 Ann Arbor Stage I Small Lymphocytic Lymphoma 11 96568 -NCIT:C8465 Ann Arbor Stage I Mantle Cell Lymphoma 11 96569 -NCIT:C8653 Ann Arbor Stage I Lymphoplasmacytic Lymphoma 11 96570 -NCIT:C8848 Ann Arbor Stage I Burkitt Lymphoma 11 96571 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 12 96572 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 12 96573 -NCIT:C8854 Ann Arbor Stage I Diffuse Large B-Cell Lymphoma 11 96574 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 12 96575 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 12 96576 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 12 96577 -NCIT:C8859 Ann Arbor Stage I Follicular Lymphoma 11 96578 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 12 96579 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 12 96580 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 12 96581 -NCIT:C8871 Ann Arbor Stage I B Lymphoblastic Lymphoma 11 96582 -NCIT:C8102 Ann Arbor Stage I Adult Non-Hodgkin Lymphoma 10 96583 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 11 96584 -NCIT:C8464 Ann Arbor Stage I Indolent Adult Non-Hodgkin Lymphoma 11 96585 -NCIT:C9252 Ann Arbor Stage I Aggressive Adult Non-Hodgkin Lymphoma 11 96586 -NCIT:C8079 Ann Arbor Stage I Adult Lymphoblastic Lymphoma 12 96587 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 12 96588 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 12 96589 -NCIT:C8665 Ann Arbor Stage I T-Cell Non-Hodgkin Lymphoma 10 96590 -NCIT:C8690 Ann Arbor Stage I Mature T- and NK-Cell Lymphoma 11 96591 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 12 96592 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 12 96593 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 13 96594 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 12 96595 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 12 96596 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 12 96597 -NCIT:C94791 Ann Arbor Stage I Childhood Non-Hodgkin Lymphoma 10 96598 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 96599 -NCIT:C9056 Ann Arbor Stage I Childhood Lymphoblastic Lymphoma 11 96600 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 11 96601 -NCIT:C94797 Ann Arbor Stage I AIDS-Related Lymphoma 9 96602 -NCIT:C8319 Ann Arbor Stage II Lymphoma 8 96603 -NCIT:C8518 Ann Arbor Stage II Hodgkin Lymphoma 9 96604 -NCIT:C3912 Ann Arbor Stage IIA Hodgkin Lymphoma 10 96605 -NCIT:C3913 Ann Arbor Stage IIB Hodgkin Lymphoma 10 96606 -NCIT:C5009 Ann Arbor Stage II Supradiaphragmatic Hodgkin Lymphoma 10 96607 -NCIT:C5069 Ann Arbor Stage II Supradiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 11 96608 -NCIT:C5072 Ann Arbor Stage II Supradiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 11 96609 -NCIT:C5083 Ann Arbor Stage II Supradiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 11 96610 -NCIT:C5104 Ann Arbor Stage II Supradiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 11 96611 -NCIT:C5010 Ann Arbor Stage II Subdiaphragmatic Hodgkin Lymphoma 10 96612 -NCIT:C5068 Ann Arbor Stage II Subdiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 11 96613 -NCIT:C5071 Ann Arbor Stage II Subdiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 11 96614 -NCIT:C5078 Ann Arbor Stage II Subdiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 11 96615 -NCIT:C5082 Ann Arbor Stage II Subdiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 11 96616 -NCIT:C5067 Ann Arbor Stage II Lymphocyte-Depleted Classic Hodgkin Lymphoma 10 96617 -NCIT:C5068 Ann Arbor Stage II Subdiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 11 96618 -NCIT:C5069 Ann Arbor Stage II Supradiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 11 96619 -NCIT:C5070 Ann Arbor Stage II Nodular Lymphocyte Predominant Hodgkin Lymphoma 10 96620 -NCIT:C5071 Ann Arbor Stage II Subdiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 11 96621 -NCIT:C5072 Ann Arbor Stage II Supradiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 11 96622 -NCIT:C5077 Ann Arbor Stage II Mixed Cellularity Classic Hodgkin Lymphoma 10 96623 -NCIT:C5078 Ann Arbor Stage II Subdiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 11 96624 -NCIT:C5104 Ann Arbor Stage II Supradiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 11 96625 -NCIT:C5081 Ann Arbor Stage II Nodular Sclerosis Classic Hodgkin Lymphoma 10 96626 -NCIT:C5082 Ann Arbor Stage II Subdiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 11 96627 -NCIT:C5083 Ann Arbor Stage II Supradiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 11 96628 -NCIT:C8055 Ann Arbor Stage II Childhood Hodgkin Lymphoma 10 96629 -NCIT:C9033 Ann Arbor Stage II Adult Hodgkin Lymphoma 10 96630 -NCIT:C8521 Ann Arbor Stage II Non-Hodgkin Lymphoma 9 96631 -NCIT:C171159 Ann Arbor Stage IIX (Bulky) Non-Hodgkin Lymphoma 10 96632 -NCIT:C171158 Ann Arbor Stage IIX (Bulky) Diffuse Large B-Cell Lymphoma 11 96633 -NCIT:C8103 Ann Arbor Stage II Adult Non-Hodgkin Lymphoma 10 96634 -NCIT:C68686 Ann Arbor Stage II Aggressive Adult Non-Hodgkin Lymphoma 11 96635 -NCIT:C8125 Ann Arbor Stage II Adult Lymphoblastic Lymphoma 12 96636 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 13 96637 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 13 96638 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 12 96639 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 13 96640 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 13 96641 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 12 96642 -NCIT:C8472 Ann Arbor Stage II Contiguous Adult Aggressive Non-Hodgkin Lymphoma 12 96643 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 13 96644 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 13 96645 -NCIT:C8479 Ann Arbor Stage II Non-Contiguous Aggressive Adult Non-Hodgkin Lymphoma 12 96646 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 13 96647 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 13 96648 -NCIT:C68688 Ann Arbor Stage II Indolent Adult Non-Hodgkin Lymphoma 11 96649 -NCIT:C8467 Ann Arbor Stage II Contiguous Adult Indolent Non-Hodgkin Lymphoma 12 96650 -NCIT:C8478 Ann Arbor Stage II Non-Contiguous Adult Indolent Non-Hodgkin Lymphoma 12 96651 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 11 96652 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 12 96653 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 12 96654 -NCIT:C8466 Ann Arbor Stage II Contiguous Adult Non-Hodgkin Lymphoma 11 96655 -NCIT:C8467 Ann Arbor Stage II Contiguous Adult Indolent Non-Hodgkin Lymphoma 12 96656 -NCIT:C8472 Ann Arbor Stage II Contiguous Adult Aggressive Non-Hodgkin Lymphoma 12 96657 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 13 96658 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 13 96659 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 12 96660 -NCIT:C8477 Ann Arbor Stage II Non-Contiguous Adult Non-Hodgkin Lymphoma 11 96661 -NCIT:C8478 Ann Arbor Stage II Non-Contiguous Adult Indolent Non-Hodgkin Lymphoma 12 96662 -NCIT:C8479 Ann Arbor Stage II Non-Contiguous Aggressive Adult Non-Hodgkin Lymphoma 12 96663 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 13 96664 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 13 96665 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 12 96666 -NCIT:C8666 Ann Arbor Stage II T-Cell Non-Hodgkin Lymphoma 10 96667 -NCIT:C8691 Ann Arbor Stage II Mature T- and NK-Cell Lymphoma 11 96668 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 12 96669 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 12 96670 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 13 96671 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 12 96672 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 12 96673 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 12 96674 -NCIT:C8843 Ann Arbor Stage II B-Cell Non-Hodgkin Lymphoma 10 96675 -NCIT:C68679 Ann Arbor Stage II Marginal Zone Lymphoma 11 96676 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 96677 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 12 96678 -NCIT:C8115 Ann Arbor Stage II Small Lymphocytic Lymphoma 11 96679 -NCIT:C8654 Ann Arbor Stage II Lymphoplasmacytic Lymphoma 11 96680 -NCIT:C8849 Ann Arbor Stage II Burkitt Lymphoma 11 96681 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 12 96682 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 13 96683 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 13 96684 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 12 96685 -NCIT:C8855 Ann Arbor Stage II Diffuse Large B-Cell Lymphoma 11 96686 -NCIT:C171158 Ann Arbor Stage IIX (Bulky) Diffuse Large B-Cell Lymphoma 12 96687 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 12 96688 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 13 96689 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 13 96690 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 12 96691 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 12 96692 -NCIT:C8860 Ann Arbor Stage II Follicular Lymphoma 11 96693 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 12 96694 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 13 96695 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 13 96696 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 12 96697 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 13 96698 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 13 96699 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 12 96700 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 13 96701 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 13 96702 -NCIT:C8937 Ann Arbor Stage II B Lymphoblastic Lymphoma 11 96703 -NCIT:C9202 Ann Arbor Stage II Mantle Cell Lymphoma 11 96704 -NCIT:C8473 Ann Arbor Stage II Contiguous Mantle Cell Lymphoma 12 96705 -NCIT:C9198 Ann Arbor Stage II Non-Contiguous Mantle Cell Lymphoma 12 96706 -NCIT:C94792 Ann Arbor Stage II Childhood Non-Hodgkin Lymphoma 10 96707 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 96708 -NCIT:C9057 Ann Arbor Stage II Childhood Lymphoblastic Lymphoma 11 96709 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 11 96710 -NCIT:C94798 Ann Arbor Stage II AIDS-Related Lymphoma 9 96711 -NCIT:C8320 Ann Arbor Stage III Lymphoma 8 96712 -NCIT:C3584 Ann Arbor Stage III Hodgkin Lymphoma 9 96713 -NCIT:C3581 Ann Arbor Stage III Nodular Sclerosis Classic Hodgkin Lymphoma 10 96714 -NCIT:C3582 Ann Arbor Stage III Mixed Cellularity Classic Hodgkin Lymphoma 10 96715 -NCIT:C3583 Ann Arbor Stage III Lymphocyte-Depleted Classic Hodgkin Lymphoma 10 96716 -NCIT:C3914 Ann Arbor Stage IIIA Hodgkin Lymphoma 10 96717 -NCIT:C4058 Ann Arbor Stage IIIB Hodgkin Lymphoma 10 96718 -NCIT:C7262 Ann Arbor Stage III Nodular Lymphocyte Predominant Hodgkin Lymphoma 10 96719 -NCIT:C8057 Ann Arbor Stage III Childhood Hodgkin Lymphoma 10 96720 -NCIT:C9034 Ann Arbor Stage III Adult Hodgkin Lymphoma 10 96721 -NCIT:C8522 Ann Arbor Stage III Non-Hodgkin Lymphoma 9 96722 -NCIT:C8104 Ann Arbor Stage III Adult Non-Hodgkin Lymphoma 10 96723 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 11 96724 -NCIT:C8482 Ann Arbor Stage III Indolent Adult Non-Hodgkin Lymphoma 11 96725 -NCIT:C8484 Ann Arbor Stage III Aggressive Adult Non-Hodgkin Lymphoma 11 96726 -NCIT:C8138 Ann Arbor Stage III Adult Lymphoblastic Lymphoma 12 96727 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 12 96728 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 12 96729 -NCIT:C8667 Ann Arbor Stage III T-Cell Non-Hodgkin Lymphoma 10 96730 -NCIT:C8692 Ann Arbor Stage III Mature T- and NK-Cell Lymphoma 11 96731 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 12 96732 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 12 96733 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 13 96734 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 12 96735 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 12 96736 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 12 96737 -NCIT:C8844 Ann Arbor Stage III B-Cell Non-Hodgkin Lymphoma 10 96738 -NCIT:C68682 Ann Arbor Stage III Marginal Zone Lymphoma 11 96739 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 96740 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 12 96741 -NCIT:C8128 Ann Arbor Stage III Small Lymphocytic Lymphoma 11 96742 -NCIT:C8483 Ann Arbor Stage III Mantle Cell Lymphoma 11 96743 -NCIT:C8655 Ann Arbor Stage III Lymphoplasmacytic Lymphoma 11 96744 -NCIT:C8850 Ann Arbor Stage III Burkitt Lymphoma 11 96745 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 12 96746 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 12 96747 -NCIT:C8856 Ann Arbor Stage III Diffuse Large B-Cell Lymphoma 11 96748 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 12 96749 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 12 96750 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 12 96751 -NCIT:C8861 Ann Arbor Stage III Follicular Lymphoma 11 96752 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 12 96753 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 12 96754 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 12 96755 -NCIT:C8872 Ann Arbor Stage III B Lymphoblastic Lymphoma 11 96756 -NCIT:C94793 Ann Arbor Stage III Childhood Non-Hodgkin Lymphoma 10 96757 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 96758 -NCIT:C9058 Ann Arbor Stage III Childhood Lymphoblastic Lymphoma 11 96759 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 11 96760 -NCIT:C94799 Ann Arbor Stage III AIDS-Related Lymphoma 9 96761 -NCIT:C8321 Ann Arbor Stage IV Lymphoma 8 96762 -NCIT:C8519 Ann Arbor Stage IV Hodgkin Lymphoma 9 96763 -NCIT:C4059 Ann Arbor Stage IVA Hodgkin Lymphoma 10 96764 -NCIT:C5633 Ann Arbor Stage IVB Hodgkin Lymphoma 10 96765 -NCIT:C7261 Ann Arbor Stage IV Nodular Lymphocyte Predominant Hodgkin Lymphoma 10 96766 -NCIT:C8058 Ann Arbor Stage IV Childhood Hodgkin Lymphoma 10 96767 -NCIT:C8651 Ann Arbor Stage IV Lymphocyte-Depleted Classic Hodgkin Lymphoma 10 96768 -NCIT:C8835 Ann Arbor Stage IV Mixed Cellularity Classic Hodgkin Lymphoma 10 96769 -NCIT:C8840 Ann Arbor Stage IV Nodular Sclerosis Classic Hodgkin Lymphoma 10 96770 -NCIT:C9035 Ann Arbor Stage IV Adult Hodgkin Lymphoma 10 96771 -NCIT:C8523 Ann Arbor Stage IV Non-Hodgkin Lymphoma 9 96772 -NCIT:C8105 Ann Arbor Stage IV Adult Non-Hodgkin Lymphoma 10 96773 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 11 96774 -NCIT:C8485 Ann Arbor Stage IV Indolent Adult Non-Hodgkin Lymphoma 11 96775 -NCIT:C8487 Ann Arbor Stage IV Aggressive Adult Non-Hodgkin Lymphoma 11 96776 -NCIT:C8151 Ann Arbor Stage IV Adult Lymphoblastic Lymphoma 12 96777 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 12 96778 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 12 96779 -NCIT:C8668 Ann Arbor Stage IV T-Cell Non-Hodgkin Lymphoma 10 96780 -NCIT:C8693 Ann Arbor Stage IV Mature T- and NK-Cell Lymphoma 11 96781 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 12 96782 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 12 96783 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 13 96784 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 12 96785 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 12 96786 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 12 96787 -NCIT:C8845 Ann Arbor Stage IV B-Cell Non-Hodgkin Lymphoma 10 96788 -NCIT:C5006 Ann Arbor Stage IV Follicular Lymphoma 11 96789 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 12 96790 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 12 96791 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 12 96792 -NCIT:C5084 Ann Arbor Stage IV Burkitt Lymphoma 11 96793 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 12 96794 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 12 96795 -NCIT:C68683 Ann Arbor Stage IV Marginal Zone Lymphoma 11 96796 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 96797 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 12 96798 -NCIT:C8141 Ann Arbor Stage IV Small Lymphocytic Lymphoma 11 96799 -NCIT:C8486 Ann Arbor Stage IV Mantle Cell Lymphoma 11 96800 -NCIT:C8656 Ann Arbor Stage IV Lymphoplasmacytic Lymphoma 11 96801 -NCIT:C8857 Ann Arbor Stage IV Diffuse Large B-Cell Lymphoma 11 96802 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 12 96803 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 12 96804 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 12 96805 -NCIT:C8873 Ann Arbor Stage IV B Lymphoblastic Lymphoma 11 96806 -NCIT:C94794 Ann Arbor Stage IV Childhood Non-Hodgkin Lymphoma 10 96807 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 96808 -NCIT:C9059 Ann Arbor Stage IV Childhood Lymphoblastic Lymphoma 11 96809 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 11 96810 -NCIT:C94800 Ann Arbor Stage IV AIDS-Related Lymphoma 9 96811 -NCIT:C141205 Lymphoma by AJCC v8 Stage 7 96812 -NCIT:C141148 Lugano Classification Adult Lymphoma by AJCC v8 Stage 8 96813 -NCIT:C141149 Lugano Classification Limited Stage Adult Lymphoma AJCC v8 9 96814 -NCIT:C141150 Lugano Classification Stage I Adult Lymphoma AJCC v8 10 96815 -NCIT:C141160 Lugano Classification Stage I Adult Non-Hodgkin Lymphoma AJCC v8 11 96816 -NCIT:C141191 Lugano Classification Stage I Adult Hodgkin Lymphoma AJCC v8 11 96817 -NCIT:C141151 Lugano Classification Stage IE Adult Lymphoma AJCC v8 10 96818 -NCIT:C141161 Lugano Classification Stage IE Adult Non-Hodgkin Lymphoma AJCC v8 11 96819 -NCIT:C141192 Lugano Classification Stage IE Adult Hodgkin Lymphoma AJCC v8 11 96820 -NCIT:C141152 Lugano Classification Stage II Adult Lymphoma AJCC v8 10 96821 -NCIT:C141154 Lugano Classification Stage II Bulky Adult Lymphoma AJCC v8 11 96822 -NCIT:C141164 Lugano Classification Stage II Bulky Adult Non-Hodgkin Lymphoma AJCC v8 12 96823 -NCIT:C141195 Lugano Classification Stage II Bulky Adult Hodgkin Lymphoma AJCC v8 12 96824 -NCIT:C141162 Lugano Classification Stage II Adult Non-Hodgkin Lymphoma AJCC v8 11 96825 -NCIT:C141164 Lugano Classification Stage II Bulky Adult Non-Hodgkin Lymphoma AJCC v8 12 96826 -NCIT:C141193 Lugano Classification Stage II Adult Hodgkin Lymphoma AJCC v8 11 96827 -NCIT:C141195 Lugano Classification Stage II Bulky Adult Hodgkin Lymphoma AJCC v8 12 96828 -NCIT:C141153 Lugano Classification Stage IIE Adult Lymphoma AJCC v8 10 96829 -NCIT:C141163 Lugano Classification Stage IIE Adult Non-Hodgkin Lymphoma AJCC v8 11 96830 -NCIT:C141194 Lugano Classification Stage IIE Adult Hodgkin Lymphoma AJCC v8 11 96831 -NCIT:C141159 Lugano Classification Limited Stage Adult Non-Hodgkin Lymphoma AJCC v8 10 96832 -NCIT:C141160 Lugano Classification Stage I Adult Non-Hodgkin Lymphoma AJCC v8 11 96833 -NCIT:C141161 Lugano Classification Stage IE Adult Non-Hodgkin Lymphoma AJCC v8 11 96834 -NCIT:C141162 Lugano Classification Stage II Adult Non-Hodgkin Lymphoma AJCC v8 11 96835 -NCIT:C141164 Lugano Classification Stage II Bulky Adult Non-Hodgkin Lymphoma AJCC v8 12 96836 -NCIT:C141163 Lugano Classification Stage IIE Adult Non-Hodgkin Lymphoma AJCC v8 11 96837 -NCIT:C141190 Lugano Classification Limited Stage Adult Hodgkin Lymphoma AJCC v8 10 96838 -NCIT:C141191 Lugano Classification Stage I Adult Hodgkin Lymphoma AJCC v8 11 96839 -NCIT:C141192 Lugano Classification Stage IE Adult Hodgkin Lymphoma AJCC v8 11 96840 -NCIT:C141193 Lugano Classification Stage II Adult Hodgkin Lymphoma AJCC v8 11 96841 -NCIT:C141195 Lugano Classification Stage II Bulky Adult Hodgkin Lymphoma AJCC v8 12 96842 -NCIT:C141194 Lugano Classification Stage IIE Adult Hodgkin Lymphoma AJCC v8 11 96843 -NCIT:C141155 Lugano Classification Advanced Stage Adult Lymphoma AJCC v8 9 96844 -NCIT:C141156 Lugano Classification Stage III Adult Lymphoma AJCC v8 10 96845 -NCIT:C141166 Lugano Classification Stage III Adult Non-Hodgkin Lymphoma AJCC v8 11 96846 -NCIT:C141197 Lugano Classification Stage III Adult Hodgkin Lymphoma AJCC v8 11 96847 -NCIT:C141157 Lugano Classification Stage IV Adult Lymphoma AJCC v8 10 96848 -NCIT:C141167 Lugano Classification Stage IV Adult Non-Hodgkin Lymphoma AJCC v8 11 96849 -NCIT:C141198 Lugano Classification Stage IV Adult Hodgkin Lymphoma AJCC v8 11 96850 -NCIT:C141165 Lugano Classification Advanced Stage Adult Non-Hodgkin Lymphoma AJCC v8 10 96851 -NCIT:C141166 Lugano Classification Stage III Adult Non-Hodgkin Lymphoma AJCC v8 11 96852 -NCIT:C141167 Lugano Classification Stage IV Adult Non-Hodgkin Lymphoma AJCC v8 11 96853 -NCIT:C141196 Lugano Classification Advanced Stage Adult Hodgkin Lymphoma AJCC v8 10 96854 -NCIT:C141197 Lugano Classification Stage III Adult Hodgkin Lymphoma AJCC v8 11 96855 -NCIT:C141198 Lugano Classification Stage IV Adult Hodgkin Lymphoma AJCC v8 11 96856 -NCIT:C141158 Lugano Classification Adult Non-Hodgkin Lymphoma by AJCC v8 Stage 9 96857 -NCIT:C141159 Lugano Classification Limited Stage Adult Non-Hodgkin Lymphoma AJCC v8 10 96858 -NCIT:C141160 Lugano Classification Stage I Adult Non-Hodgkin Lymphoma AJCC v8 11 96859 -NCIT:C141161 Lugano Classification Stage IE Adult Non-Hodgkin Lymphoma AJCC v8 11 96860 -NCIT:C141162 Lugano Classification Stage II Adult Non-Hodgkin Lymphoma AJCC v8 11 96861 -NCIT:C141164 Lugano Classification Stage II Bulky Adult Non-Hodgkin Lymphoma AJCC v8 12 96862 -NCIT:C141163 Lugano Classification Stage IIE Adult Non-Hodgkin Lymphoma AJCC v8 11 96863 -NCIT:C141165 Lugano Classification Advanced Stage Adult Non-Hodgkin Lymphoma AJCC v8 10 96864 -NCIT:C141166 Lugano Classification Stage III Adult Non-Hodgkin Lymphoma AJCC v8 11 96865 -NCIT:C141167 Lugano Classification Stage IV Adult Non-Hodgkin Lymphoma AJCC v8 11 96866 -NCIT:C141189 Lugano Classification Adult Hodgkin Lymphoma by AJCC v8 Stage 9 96867 -NCIT:C141190 Lugano Classification Limited Stage Adult Hodgkin Lymphoma AJCC v8 10 96868 -NCIT:C141191 Lugano Classification Stage I Adult Hodgkin Lymphoma AJCC v8 11 96869 -NCIT:C141192 Lugano Classification Stage IE Adult Hodgkin Lymphoma AJCC v8 11 96870 -NCIT:C141193 Lugano Classification Stage II Adult Hodgkin Lymphoma AJCC v8 11 96871 -NCIT:C141195 Lugano Classification Stage II Bulky Adult Hodgkin Lymphoma AJCC v8 12 96872 -NCIT:C141194 Lugano Classification Stage IIE Adult Hodgkin Lymphoma AJCC v8 11 96873 -NCIT:C141196 Lugano Classification Advanced Stage Adult Hodgkin Lymphoma AJCC v8 10 96874 -NCIT:C141197 Lugano Classification Stage III Adult Hodgkin Lymphoma AJCC v8 11 96875 -NCIT:C141198 Lugano Classification Stage IV Adult Hodgkin Lymphoma AJCC v8 11 96876 -NCIT:C141168 Lugano Classification Hodgkin Lymphoma by AJCC v8 Stage 8 96877 -NCIT:C141169 Lugano Classification Limited Stage Hodgkin Lymphoma AJCC v8 9 96878 -NCIT:C141170 Lugano Classification Stage I Hodgkin Lymphoma AJCC v8 10 96879 -NCIT:C141180 Lugano Classification Stage I Childhood Hodgkin Lymphoma AJCC v8 11 96880 -NCIT:C141191 Lugano Classification Stage I Adult Hodgkin Lymphoma AJCC v8 11 96881 -NCIT:C141171 Lugano Classification Stage IE Hodgkin Lymphoma AJCC v8 10 96882 -NCIT:C141181 Lugano Classification Stage IE Childhood Hodgkin Lymphoma AJCC v8 11 96883 -NCIT:C141192 Lugano Classification Stage IE Adult Hodgkin Lymphoma AJCC v8 11 96884 -NCIT:C141172 Lugano Classification Stage II Hodgkin Lymphoma AJCC v8 10 96885 -NCIT:C141174 Lugano Classification Stage II Bulky Hodgkin Lymphoma AJCC v8 11 96886 -NCIT:C141184 Lugano Classification Stage II Bulky Childhood Hodgkin Lymphoma AJCC v8 12 96887 -NCIT:C141195 Lugano Classification Stage II Bulky Adult Hodgkin Lymphoma AJCC v8 12 96888 -NCIT:C141182 Lugano Classification Stage II Childhood Hodgkin Lymphoma AJCC v8 11 96889 -NCIT:C141184 Lugano Classification Stage II Bulky Childhood Hodgkin Lymphoma AJCC v8 12 96890 -NCIT:C141193 Lugano Classification Stage II Adult Hodgkin Lymphoma AJCC v8 11 96891 -NCIT:C141195 Lugano Classification Stage II Bulky Adult Hodgkin Lymphoma AJCC v8 12 96892 -NCIT:C141173 Lugano Classification Stage IIE Hodgkin Lymphoma AJCC v8 10 96893 -NCIT:C141183 Lugano Classification Stage IIE Childhood Hodgkin Lymphoma AJCC v8 11 96894 -NCIT:C141194 Lugano Classification Stage IIE Adult Hodgkin Lymphoma AJCC v8 11 96895 -NCIT:C141179 Lugano Classification Limited Stage Childhood Hodgkin Lymphoma AJCC v8 10 96896 -NCIT:C141180 Lugano Classification Stage I Childhood Hodgkin Lymphoma AJCC v8 11 96897 -NCIT:C141181 Lugano Classification Stage IE Childhood Hodgkin Lymphoma AJCC v8 11 96898 -NCIT:C141182 Lugano Classification Stage II Childhood Hodgkin Lymphoma AJCC v8 11 96899 -NCIT:C141184 Lugano Classification Stage II Bulky Childhood Hodgkin Lymphoma AJCC v8 12 96900 -NCIT:C141183 Lugano Classification Stage IIE Childhood Hodgkin Lymphoma AJCC v8 11 96901 -NCIT:C141190 Lugano Classification Limited Stage Adult Hodgkin Lymphoma AJCC v8 10 96902 -NCIT:C141191 Lugano Classification Stage I Adult Hodgkin Lymphoma AJCC v8 11 96903 -NCIT:C141192 Lugano Classification Stage IE Adult Hodgkin Lymphoma AJCC v8 11 96904 -NCIT:C141193 Lugano Classification Stage II Adult Hodgkin Lymphoma AJCC v8 11 96905 -NCIT:C141195 Lugano Classification Stage II Bulky Adult Hodgkin Lymphoma AJCC v8 12 96906 -NCIT:C141194 Lugano Classification Stage IIE Adult Hodgkin Lymphoma AJCC v8 11 96907 -NCIT:C141175 Lugano Classification Advanced Stage Hodgkin Lymphoma AJCC v8 9 96908 -NCIT:C141176 Lugano Classification Stage III Hodgkin Lymphoma AJCC v8 10 96909 -NCIT:C141186 Lugano Classification Stage III Childhood Hodgkin Lymphoma AJCC v8 11 96910 -NCIT:C141197 Lugano Classification Stage III Adult Hodgkin Lymphoma AJCC v8 11 96911 -NCIT:C141177 Lugano Classification Stage IV Hodgkin Lymphoma AJCC v8 10 96912 -NCIT:C141187 Lugano Classification Stage IV Childhood Hodgkin Lymphoma AJCC v8 11 96913 -NCIT:C141198 Lugano Classification Stage IV Adult Hodgkin Lymphoma AJCC v8 11 96914 -NCIT:C141185 Lugano Classification Advanced Stage Childhood Hodgkin Lymphoma AJCC v8 10 96915 -NCIT:C141186 Lugano Classification Stage III Childhood Hodgkin Lymphoma AJCC v8 11 96916 -NCIT:C141187 Lugano Classification Stage IV Childhood Hodgkin Lymphoma AJCC v8 11 96917 -NCIT:C141196 Lugano Classification Advanced Stage Adult Hodgkin Lymphoma AJCC v8 10 96918 -NCIT:C141197 Lugano Classification Stage III Adult Hodgkin Lymphoma AJCC v8 11 96919 -NCIT:C141198 Lugano Classification Stage IV Adult Hodgkin Lymphoma AJCC v8 11 96920 -NCIT:C141178 Lugano Classification Childhood Hodgkin Lymphoma by AJCC v8 Stage 9 96921 -NCIT:C141179 Lugano Classification Limited Stage Childhood Hodgkin Lymphoma AJCC v8 10 96922 -NCIT:C141180 Lugano Classification Stage I Childhood Hodgkin Lymphoma AJCC v8 11 96923 -NCIT:C141181 Lugano Classification Stage IE Childhood Hodgkin Lymphoma AJCC v8 11 96924 -NCIT:C141182 Lugano Classification Stage II Childhood Hodgkin Lymphoma AJCC v8 11 96925 -NCIT:C141184 Lugano Classification Stage II Bulky Childhood Hodgkin Lymphoma AJCC v8 12 96926 -NCIT:C141183 Lugano Classification Stage IIE Childhood Hodgkin Lymphoma AJCC v8 11 96927 -NCIT:C141185 Lugano Classification Advanced Stage Childhood Hodgkin Lymphoma AJCC v8 10 96928 -NCIT:C141186 Lugano Classification Stage III Childhood Hodgkin Lymphoma AJCC v8 11 96929 -NCIT:C141187 Lugano Classification Stage IV Childhood Hodgkin Lymphoma AJCC v8 11 96930 -NCIT:C141189 Lugano Classification Adult Hodgkin Lymphoma by AJCC v8 Stage 9 96931 -NCIT:C141190 Lugano Classification Limited Stage Adult Hodgkin Lymphoma AJCC v8 10 96932 -NCIT:C141191 Lugano Classification Stage I Adult Hodgkin Lymphoma AJCC v8 11 96933 -NCIT:C141192 Lugano Classification Stage IE Adult Hodgkin Lymphoma AJCC v8 11 96934 -NCIT:C141193 Lugano Classification Stage II Adult Hodgkin Lymphoma AJCC v8 11 96935 -NCIT:C141195 Lugano Classification Stage II Bulky Adult Hodgkin Lymphoma AJCC v8 12 96936 -NCIT:C141194 Lugano Classification Stage IIE Adult Hodgkin Lymphoma AJCC v8 11 96937 -NCIT:C141196 Lugano Classification Advanced Stage Adult Hodgkin Lymphoma AJCC v8 10 96938 -NCIT:C141197 Lugano Classification Stage III Adult Hodgkin Lymphoma AJCC v8 11 96939 -NCIT:C141198 Lugano Classification Stage IV Adult Hodgkin Lymphoma AJCC v8 11 96940 -NCIT:C141202 Childhood Lymphoma by AJCC v8 Stage 8 96941 -NCIT:C141178 Lugano Classification Childhood Hodgkin Lymphoma by AJCC v8 Stage 9 96942 -NCIT:C141179 Lugano Classification Limited Stage Childhood Hodgkin Lymphoma AJCC v8 10 96943 -NCIT:C141180 Lugano Classification Stage I Childhood Hodgkin Lymphoma AJCC v8 11 96944 -NCIT:C141181 Lugano Classification Stage IE Childhood Hodgkin Lymphoma AJCC v8 11 96945 -NCIT:C141182 Lugano Classification Stage II Childhood Hodgkin Lymphoma AJCC v8 11 96946 -NCIT:C141184 Lugano Classification Stage II Bulky Childhood Hodgkin Lymphoma AJCC v8 12 96947 -NCIT:C141183 Lugano Classification Stage IIE Childhood Hodgkin Lymphoma AJCC v8 11 96948 -NCIT:C141185 Lugano Classification Advanced Stage Childhood Hodgkin Lymphoma AJCC v8 10 96949 -NCIT:C141186 Lugano Classification Stage III Childhood Hodgkin Lymphoma AJCC v8 11 96950 -NCIT:C141187 Lugano Classification Stage IV Childhood Hodgkin Lymphoma AJCC v8 11 96951 -NCIT:C141217 St. Jude Childhood Non-Hodgkin Lymphoma by AJCC v8 Stage 9 96952 -NCIT:C141218 St. Jude Stage I Childhood Non-Hodgkin Lymphoma AJCC v8 10 96953 -NCIT:C141219 St. Jude Stage II Childhood Non-Hodgkin Lymphoma AJCC v8 10 96954 -NCIT:C141220 St. Jude Stage III Childhood Non-Hodgkin Lymphoma AJCC v8 10 96955 -NCIT:C141221 St. Jude Stage IV Childhood Non-Hodgkin Lymphoma AJCC v8 10 96956 -NCIT:C141346 Mycosis Fungoides and Sezary Syndrome by AJCC v8 Stage 8 96957 -NCIT:C141347 Stage I Mycosis Fungoides and Sezary Syndrome AJCC v8 9 96958 -NCIT:C141348 Stage IA Mycosis Fungoides and Sezary Syndrome AJCC v8 10 96959 -NCIT:C141349 Stage IB Mycosis Fungoides and Sezary Syndrome AJCC v8 10 96960 -NCIT:C141350 Stage II Mycosis Fungoides and Sezary Syndrome AJCC v8 9 96961 -NCIT:C141351 Stage IIA Mycosis Fungoides and Sezary Syndrome AJCC v8 10 96962 -NCIT:C141352 Stage IIB Mycosis Fungoides and Sezary Syndrome AJCC v8 10 96963 -NCIT:C141353 Stage III Mycosis Fungoides and Sezary Syndrome AJCC v8 9 96964 -NCIT:C141354 Stage IIIA Mycosis Fungoides and Sezary Syndrome AJCC v8 10 96965 -NCIT:C141355 Stage IIIB Mycosis Fungoides and Sezary Syndrome AJCC v8 10 96966 -NCIT:C141356 Stage IV Mycosis Fungoides and Sezary Syndrome AJCC v8 9 96967 -NCIT:C141357 Stage IVA1 Mycosis Fungoides and Sezary Syndrome AJCC v8 10 96968 -NCIT:C141358 Stage IVA2 Mycosis Fungoides and Sezary Syndrome AJCC v8 10 96969 -NCIT:C141359 Stage IVB Mycosis Fungoides and Sezary Syndrome AJCC v8 10 96970 -NCIT:C27699 Virus-Related Lymphoma 6 96971 -NCIT:C138320 HHV8-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 7 96972 -NCIT:C27691 EBV-Related Lymphoma 7 96973 -NCIT:C147863 Recurrent EBV-Related Lymphoma 8 96974 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 96975 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 9 96976 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 96977 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 10 96978 -NCIT:C160149 Refractory EBV-Related Lymphoma 8 96979 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 96980 -NCIT:C27692 EBV-Related Hodgkin Lymphoma 8 96981 -NCIT:C7243 Classic Hodgkin Lymphoma Type Post-Transplant Lymphoproliferative Disorder 9 96982 -NCIT:C27693 EBV-Related Non-Hodgkin Lymphoma 8 96983 -NCIT:C139288 Primary EBV-Positive Nodal T-Cell or NK-Cell Lymphoma 9 96984 -NCIT:C27694 EBV-Related Burkitt Lymphoma 9 96985 -NCIT:C27122 Endemic Burkitt Lymphoma 10 96986 -NCIT:C7933 Grade III Lymphomatoid Granulomatosis 9 96987 -NCIT:C115150 Adult Grade III Lymphomatoid Granulomatosis 10 96988 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 11 96989 -NCIT:C115204 Childhood Grade III Lymphomatoid Granulomatosis 10 96990 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 11 96991 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 10 96992 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 11 96993 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 11 96994 -NCIT:C80281 EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 96995 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 96996 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 96997 -NCIT:C188456 Childhood EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 96998 -NCIT:C188457 Adult EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 96999 -NCIT:C80374 Systemic EBV-Positive T-Cell Lymphoma of Childhood 9 97000 -NCIT:C27695 EBV-Related Clonal Post-Transplant Lymphoproliferative Disorder 8 97001 -NCIT:C7239 Hodgkin-Like Post-Transplant Lymphoproliferative Disorder 9 97002 -NCIT:C7243 Classic Hodgkin Lymphoma Type Post-Transplant Lymphoproliferative Disorder 9 97003 -NCIT:C27856 Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 7 97004 -NCIT:C27858 AIDS-Related Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 8 97005 -NCIT:C3184 Adult T-Cell Leukemia/Lymphoma 7 97006 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 8 97007 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 9 97008 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 9 97009 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 9 97010 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 9 97011 -NCIT:C36265 Acute Adult T-Cell Leukemia/Lymphoma 8 97012 -NCIT:C36266 Lymphomatous Adult T-Cell Leukemia/Lymphoma 8 97013 -NCIT:C36268 Hodgkin-Like Adult T-Cell Leukemia/Lymphoma 8 97014 -NCIT:C45272 Cutaneous Adult T-Cell Leukemia/Lymphoma 8 97015 -NCIT:C7178 Smoldering Adult T-Cell Leukemia/Lymphoma 8 97016 -NCIT:C7179 Chronic Adult T-Cell Leukemia/Lymphoma 8 97017 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 8 97018 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 8 97019 -NCIT:C3471 AIDS-Related Lymphoma 7 97020 -NCIT:C5051 AIDS-Related Non-Hodgkin Lymphoma 8 97021 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 97022 -NCIT:C7212 AIDS-Related Diffuse Large B-cell Lymphoma 9 97023 -NCIT:C27858 AIDS-Related Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 10 97024 -NCIT:C27859 AIDS-Related Plasmablastic Lymphoma 10 97025 -NCIT:C38160 AIDS-Related Plasmablastic Lymphoma of Mucosa Site 11 97026 -NCIT:C9016 AIDS-Related Plasmablastic Lymphoma of the Oral Mucosa 12 97027 -NCIT:C8285 AIDS-Related Immunoblastic Lymphoma 10 97028 -NCIT:C9017 AIDS-Related Primary Effusion Lymphoma 10 97029 -NCIT:C7434 AIDS-Related Non-Hodgkin Lymphoma of the Cervix 9 97030 -NCIT:C7465 AIDS-Related Anal Non-Hodgkin Lymphoma 9 97031 -NCIT:C8286 AIDS-Related Burkitt Lymphoma 9 97032 -NCIT:C27857 AIDS-Related Burkitt Lymphoma with Plasmacytoid Differentiation 10 97033 -NCIT:C8298 AIDS-Related Lymphoblastic Lymphoma 9 97034 -NCIT:C8284 AIDS-Related Primary Central Nervous System Lymphoma 8 97035 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 97036 -NCIT:C9279 AIDS-Related Hodgkin Lymphoma 8 97037 -NCIT:C94797 Ann Arbor Stage I AIDS-Related Lymphoma 8 97038 -NCIT:C94798 Ann Arbor Stage II AIDS-Related Lymphoma 8 97039 -NCIT:C94799 Ann Arbor Stage III AIDS-Related Lymphoma 8 97040 -NCIT:C94800 Ann Arbor Stage IV AIDS-Related Lymphoma 8 97041 -NCIT:C6915 Primary Effusion Lymphoma 7 97042 -NCIT:C150406 Extracavitary Primary Effusion Lymphoma 8 97043 -NCIT:C150407 Body Cavity Primary Effusion Lymphoma 8 97044 -NCIT:C183135 Pleural Primary Effusion Lymphoma 9 97045 -NCIT:C183136 Pericardial Primary Effusion Lymphoma 9 97046 -NCIT:C183137 Peritoneal Primary Effusion Lymphoma 9 97047 -NCIT:C157679 Recurrent Primary Effusion Lymphoma 8 97048 -NCIT:C157680 Refractory Primary Effusion Lymphoma 8 97049 -NCIT:C9017 AIDS-Related Primary Effusion Lymphoma 8 97050 -NCIT:C3211 Non-Hodgkin Lymphoma 6 97051 -NCIT:C114779 Central Nervous System Non-Hodgkin Lymphoma 7 97052 -NCIT:C146989 Refractory Central Nervous System Non-Hodgkin Lymphoma 8 97053 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 9 97054 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 97055 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 97056 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 97057 -NCIT:C146990 Recurrent Central Nervous System Non-Hodgkin Lymphoma 8 97058 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 9 97059 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 97060 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 97061 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 97062 -NCIT:C147948 Central Nervous System B-Cell Non-Hodgkin Lymphoma 8 97063 -NCIT:C71720 Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 97064 -NCIT:C129602 Central Nervous System Intravascular Large B-Cell Lymphoma 10 97065 -NCIT:C155797 Pituitary Gland Diffuse Large B-Cell Lymphoma 10 97066 -NCIT:C157067 Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 97067 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 97068 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 97069 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 10 97070 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 97071 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 10 97072 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 97073 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 10 97074 -NCIT:C95991 Dural Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 97075 -NCIT:C155796 Pituitary Gland Non-Hodgkin Lymphoma 8 97076 -NCIT:C155797 Pituitary Gland Diffuse Large B-Cell Lymphoma 9 97077 -NCIT:C157065 Primary Vitreoretinal Non-Hodgkin Lymphoma 8 97078 -NCIT:C157067 Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 97079 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 97080 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 97081 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 9 97082 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 97083 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 9 97084 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 97085 -NCIT:C4365 Primary Retinal Non-Hodgkin Lymphoma 9 97086 -NCIT:C5409 Central Nervous System T-Cell Non-Hodgkin Lymphoma 8 97087 -NCIT:C129600 Central Nervous System Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 9 97088 -NCIT:C5322 Central Nervous System Anaplastic Large Cell Lymphoma 10 97089 -NCIT:C129598 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Positive 11 97090 -NCIT:C129599 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Negative 11 97091 -NCIT:C7609 Cerebral Non-Hodgkin Lymphoma 8 97092 -NCIT:C114950 Secondary Central Nervous System Non-Hodgkin Lymphoma 7 97093 -NCIT:C121930 Primary Bone Non-Hodgkin Lymphoma 7 97094 -NCIT:C173811 Primary Bone Diffuse Large B-Cell Lymphoma 8 97095 -NCIT:C141140 Non-Hodgkin Lymphoma by Ann Arbor Stage 7 97096 -NCIT:C141235 Adult Non-Hodgkin Lymphoma by Ann Arbor Stage 8 97097 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 9 97098 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 10 97099 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 10 97100 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 10 97101 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 10 97102 -NCIT:C8102 Ann Arbor Stage I Adult Non-Hodgkin Lymphoma 9 97103 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 10 97104 -NCIT:C8464 Ann Arbor Stage I Indolent Adult Non-Hodgkin Lymphoma 10 97105 -NCIT:C9252 Ann Arbor Stage I Aggressive Adult Non-Hodgkin Lymphoma 10 97106 -NCIT:C8079 Ann Arbor Stage I Adult Lymphoblastic Lymphoma 11 97107 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 11 97108 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 11 97109 -NCIT:C8103 Ann Arbor Stage II Adult Non-Hodgkin Lymphoma 9 97110 -NCIT:C68686 Ann Arbor Stage II Aggressive Adult Non-Hodgkin Lymphoma 10 97111 -NCIT:C8125 Ann Arbor Stage II Adult Lymphoblastic Lymphoma 11 97112 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 12 97113 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 12 97114 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 11 97115 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 12 97116 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 12 97117 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 11 97118 -NCIT:C8472 Ann Arbor Stage II Contiguous Adult Aggressive Non-Hodgkin Lymphoma 11 97119 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 12 97120 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 12 97121 -NCIT:C8479 Ann Arbor Stage II Non-Contiguous Aggressive Adult Non-Hodgkin Lymphoma 11 97122 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 12 97123 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 12 97124 -NCIT:C68688 Ann Arbor Stage II Indolent Adult Non-Hodgkin Lymphoma 10 97125 -NCIT:C8467 Ann Arbor Stage II Contiguous Adult Indolent Non-Hodgkin Lymphoma 11 97126 -NCIT:C8478 Ann Arbor Stage II Non-Contiguous Adult Indolent Non-Hodgkin Lymphoma 11 97127 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 10 97128 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 11 97129 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 11 97130 -NCIT:C8466 Ann Arbor Stage II Contiguous Adult Non-Hodgkin Lymphoma 10 97131 -NCIT:C8467 Ann Arbor Stage II Contiguous Adult Indolent Non-Hodgkin Lymphoma 11 97132 -NCIT:C8472 Ann Arbor Stage II Contiguous Adult Aggressive Non-Hodgkin Lymphoma 11 97133 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 12 97134 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 12 97135 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 11 97136 -NCIT:C8477 Ann Arbor Stage II Non-Contiguous Adult Non-Hodgkin Lymphoma 10 97137 -NCIT:C8478 Ann Arbor Stage II Non-Contiguous Adult Indolent Non-Hodgkin Lymphoma 11 97138 -NCIT:C8479 Ann Arbor Stage II Non-Contiguous Aggressive Adult Non-Hodgkin Lymphoma 11 97139 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 12 97140 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 12 97141 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 11 97142 -NCIT:C8104 Ann Arbor Stage III Adult Non-Hodgkin Lymphoma 9 97143 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 10 97144 -NCIT:C8482 Ann Arbor Stage III Indolent Adult Non-Hodgkin Lymphoma 10 97145 -NCIT:C8484 Ann Arbor Stage III Aggressive Adult Non-Hodgkin Lymphoma 10 97146 -NCIT:C8138 Ann Arbor Stage III Adult Lymphoblastic Lymphoma 11 97147 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 11 97148 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 11 97149 -NCIT:C8105 Ann Arbor Stage IV Adult Non-Hodgkin Lymphoma 9 97150 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 10 97151 -NCIT:C8485 Ann Arbor Stage IV Indolent Adult Non-Hodgkin Lymphoma 10 97152 -NCIT:C8487 Ann Arbor Stage IV Aggressive Adult Non-Hodgkin Lymphoma 10 97153 -NCIT:C8151 Ann Arbor Stage IV Adult Lymphoblastic Lymphoma 11 97154 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 11 97155 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 11 97156 -NCIT:C141236 Childhood Non-Hodgkin Lymphoma by Ann Arbor Stage 8 97157 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 9 97158 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 97159 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 97160 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 97161 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 97162 -NCIT:C94791 Ann Arbor Stage I Childhood Non-Hodgkin Lymphoma 9 97163 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 97164 -NCIT:C9056 Ann Arbor Stage I Childhood Lymphoblastic Lymphoma 10 97165 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 10 97166 -NCIT:C94792 Ann Arbor Stage II Childhood Non-Hodgkin Lymphoma 9 97167 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 97168 -NCIT:C9057 Ann Arbor Stage II Childhood Lymphoblastic Lymphoma 10 97169 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 10 97170 -NCIT:C94793 Ann Arbor Stage III Childhood Non-Hodgkin Lymphoma 9 97171 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 97172 -NCIT:C9058 Ann Arbor Stage III Childhood Lymphoblastic Lymphoma 10 97173 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 10 97174 -NCIT:C94794 Ann Arbor Stage IV Childhood Non-Hodgkin Lymphoma 9 97175 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 97176 -NCIT:C9059 Ann Arbor Stage IV Childhood Lymphoblastic Lymphoma 10 97177 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 10 97178 -NCIT:C141243 B-Cell Non-Hodgkin Lymphoma by Ann Arbor Stage 8 97179 -NCIT:C141250 B Lymphoblastic Lymphoma by Ann Arbor Stage 9 97180 -NCIT:C8871 Ann Arbor Stage I B Lymphoblastic Lymphoma 10 97181 -NCIT:C8872 Ann Arbor Stage III B Lymphoblastic Lymphoma 10 97182 -NCIT:C8873 Ann Arbor Stage IV B Lymphoblastic Lymphoma 10 97183 -NCIT:C8937 Ann Arbor Stage II B Lymphoblastic Lymphoma 10 97184 -NCIT:C141253 Burkitt Lymphoma by Ann Arbor Stage 9 97185 -NCIT:C5084 Ann Arbor Stage IV Burkitt Lymphoma 10 97186 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 11 97187 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 11 97188 -NCIT:C8848 Ann Arbor Stage I Burkitt Lymphoma 10 97189 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 11 97190 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 11 97191 -NCIT:C8849 Ann Arbor Stage II Burkitt Lymphoma 10 97192 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 11 97193 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 12 97194 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 12 97195 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 11 97196 -NCIT:C8850 Ann Arbor Stage III Burkitt Lymphoma 10 97197 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 11 97198 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 11 97199 -NCIT:C141254 Diffuse Large B-Cell Lymphoma by Ann Arbor Stage 9 97200 -NCIT:C141262 Primary Mediastinal (Thymic) Large B-Cell Lymphoma by Ann Arbor Stage 10 97201 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 97202 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 97203 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 97204 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 97205 -NCIT:C141263 Centroblastic Lymphoma by Ann Arbor Stage 10 97206 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 11 97207 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 11 97208 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 11 97209 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 11 97210 -NCIT:C8854 Ann Arbor Stage I Diffuse Large B-Cell Lymphoma 10 97211 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 11 97212 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 97213 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 11 97214 -NCIT:C8855 Ann Arbor Stage II Diffuse Large B-Cell Lymphoma 10 97215 -NCIT:C171158 Ann Arbor Stage IIX (Bulky) Diffuse Large B-Cell Lymphoma 11 97216 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 11 97217 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 12 97218 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 12 97219 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 97220 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 11 97221 -NCIT:C8856 Ann Arbor Stage III Diffuse Large B-Cell Lymphoma 10 97222 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 11 97223 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 97224 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 11 97225 -NCIT:C8857 Ann Arbor Stage IV Diffuse Large B-Cell Lymphoma 10 97226 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 11 97227 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 97228 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 11 97229 -NCIT:C141255 Follicular Lymphoma by Ann Arbor Stage 9 97230 -NCIT:C5006 Ann Arbor Stage IV Follicular Lymphoma 10 97231 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 11 97232 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 11 97233 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 11 97234 -NCIT:C8859 Ann Arbor Stage I Follicular Lymphoma 10 97235 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 11 97236 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 11 97237 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 11 97238 -NCIT:C8860 Ann Arbor Stage II Follicular Lymphoma 10 97239 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 11 97240 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 12 97241 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 12 97242 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 11 97243 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 12 97244 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 12 97245 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 11 97246 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 12 97247 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 12 97248 -NCIT:C8861 Ann Arbor Stage III Follicular Lymphoma 10 97249 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 11 97250 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 11 97251 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 11 97252 -NCIT:C141256 Lymphoplasmacytic Lymphoma by Ann Arbor Stage 9 97253 -NCIT:C8653 Ann Arbor Stage I Lymphoplasmacytic Lymphoma 10 97254 -NCIT:C8654 Ann Arbor Stage II Lymphoplasmacytic Lymphoma 10 97255 -NCIT:C8655 Ann Arbor Stage III Lymphoplasmacytic Lymphoma 10 97256 -NCIT:C8656 Ann Arbor Stage IV Lymphoplasmacytic Lymphoma 10 97257 -NCIT:C141257 Mantle Cell Lymphoma by Ann Arbor Stage 9 97258 -NCIT:C8465 Ann Arbor Stage I Mantle Cell Lymphoma 10 97259 -NCIT:C8483 Ann Arbor Stage III Mantle Cell Lymphoma 10 97260 -NCIT:C8486 Ann Arbor Stage IV Mantle Cell Lymphoma 10 97261 -NCIT:C9202 Ann Arbor Stage II Mantle Cell Lymphoma 10 97262 -NCIT:C8473 Ann Arbor Stage II Contiguous Mantle Cell Lymphoma 11 97263 -NCIT:C9198 Ann Arbor Stage II Non-Contiguous Mantle Cell Lymphoma 11 97264 -NCIT:C141258 Marginal Zone Lymphoma by Ann Arbor Stage 9 97265 -NCIT:C141260 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue by Ann Arbor Stage 10 97266 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 97267 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 97268 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 97269 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 97270 -NCIT:C141261 Nodal Marginal Zone Lymphoma by Ann Arbor Stage 10 97271 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 11 97272 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 11 97273 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 11 97274 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 11 97275 -NCIT:C68678 Ann Arbor Stage I Marginal Zone Lymphoma 10 97276 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 97277 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 11 97278 -NCIT:C68679 Ann Arbor Stage II Marginal Zone Lymphoma 10 97279 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 97280 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 11 97281 -NCIT:C68682 Ann Arbor Stage III Marginal Zone Lymphoma 10 97282 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 97283 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 11 97284 -NCIT:C68683 Ann Arbor Stage IV Marginal Zone Lymphoma 10 97285 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 97286 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 11 97287 -NCIT:C141259 Small Lymphocytic Lymphoma by Ann Arbor Stage 9 97288 -NCIT:C8070 Ann Arbor Stage I Small Lymphocytic Lymphoma 10 97289 -NCIT:C8115 Ann Arbor Stage II Small Lymphocytic Lymphoma 10 97290 -NCIT:C8128 Ann Arbor Stage III Small Lymphocytic Lymphoma 10 97291 -NCIT:C8141 Ann Arbor Stage IV Small Lymphocytic Lymphoma 10 97292 -NCIT:C27308 Ann Arbor Stage I B-Cell Non-Hodgkin Lymphoma 9 97293 -NCIT:C68678 Ann Arbor Stage I Marginal Zone Lymphoma 10 97294 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 97295 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 11 97296 -NCIT:C8070 Ann Arbor Stage I Small Lymphocytic Lymphoma 10 97297 -NCIT:C8465 Ann Arbor Stage I Mantle Cell Lymphoma 10 97298 -NCIT:C8653 Ann Arbor Stage I Lymphoplasmacytic Lymphoma 10 97299 -NCIT:C8848 Ann Arbor Stage I Burkitt Lymphoma 10 97300 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 11 97301 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 11 97302 -NCIT:C8854 Ann Arbor Stage I Diffuse Large B-Cell Lymphoma 10 97303 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 11 97304 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 97305 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 11 97306 -NCIT:C8859 Ann Arbor Stage I Follicular Lymphoma 10 97307 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 11 97308 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 11 97309 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 11 97310 -NCIT:C8871 Ann Arbor Stage I B Lymphoblastic Lymphoma 10 97311 -NCIT:C8843 Ann Arbor Stage II B-Cell Non-Hodgkin Lymphoma 9 97312 -NCIT:C68679 Ann Arbor Stage II Marginal Zone Lymphoma 10 97313 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 97314 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 11 97315 -NCIT:C8115 Ann Arbor Stage II Small Lymphocytic Lymphoma 10 97316 -NCIT:C8654 Ann Arbor Stage II Lymphoplasmacytic Lymphoma 10 97317 -NCIT:C8849 Ann Arbor Stage II Burkitt Lymphoma 10 97318 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 11 97319 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 12 97320 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 12 97321 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 11 97322 -NCIT:C8855 Ann Arbor Stage II Diffuse Large B-Cell Lymphoma 10 97323 -NCIT:C171158 Ann Arbor Stage IIX (Bulky) Diffuse Large B-Cell Lymphoma 11 97324 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 11 97325 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 12 97326 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 12 97327 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 97328 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 11 97329 -NCIT:C8860 Ann Arbor Stage II Follicular Lymphoma 10 97330 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 11 97331 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 12 97332 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 12 97333 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 11 97334 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 12 97335 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 12 97336 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 11 97337 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 12 97338 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 12 97339 -NCIT:C8937 Ann Arbor Stage II B Lymphoblastic Lymphoma 10 97340 -NCIT:C9202 Ann Arbor Stage II Mantle Cell Lymphoma 10 97341 -NCIT:C8473 Ann Arbor Stage II Contiguous Mantle Cell Lymphoma 11 97342 -NCIT:C9198 Ann Arbor Stage II Non-Contiguous Mantle Cell Lymphoma 11 97343 -NCIT:C8844 Ann Arbor Stage III B-Cell Non-Hodgkin Lymphoma 9 97344 -NCIT:C68682 Ann Arbor Stage III Marginal Zone Lymphoma 10 97345 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 97346 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 11 97347 -NCIT:C8128 Ann Arbor Stage III Small Lymphocytic Lymphoma 10 97348 -NCIT:C8483 Ann Arbor Stage III Mantle Cell Lymphoma 10 97349 -NCIT:C8655 Ann Arbor Stage III Lymphoplasmacytic Lymphoma 10 97350 -NCIT:C8850 Ann Arbor Stage III Burkitt Lymphoma 10 97351 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 11 97352 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 11 97353 -NCIT:C8856 Ann Arbor Stage III Diffuse Large B-Cell Lymphoma 10 97354 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 11 97355 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 97356 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 11 97357 -NCIT:C8861 Ann Arbor Stage III Follicular Lymphoma 10 97358 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 11 97359 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 11 97360 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 11 97361 -NCIT:C8872 Ann Arbor Stage III B Lymphoblastic Lymphoma 10 97362 -NCIT:C8845 Ann Arbor Stage IV B-Cell Non-Hodgkin Lymphoma 9 97363 -NCIT:C5006 Ann Arbor Stage IV Follicular Lymphoma 10 97364 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 11 97365 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 11 97366 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 11 97367 -NCIT:C5084 Ann Arbor Stage IV Burkitt Lymphoma 10 97368 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 11 97369 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 11 97370 -NCIT:C68683 Ann Arbor Stage IV Marginal Zone Lymphoma 10 97371 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 97372 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 11 97373 -NCIT:C8141 Ann Arbor Stage IV Small Lymphocytic Lymphoma 10 97374 -NCIT:C8486 Ann Arbor Stage IV Mantle Cell Lymphoma 10 97375 -NCIT:C8656 Ann Arbor Stage IV Lymphoplasmacytic Lymphoma 10 97376 -NCIT:C8857 Ann Arbor Stage IV Diffuse Large B-Cell Lymphoma 10 97377 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 11 97378 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 97379 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 11 97380 -NCIT:C8873 Ann Arbor Stage IV B Lymphoblastic Lymphoma 10 97381 -NCIT:C141247 T-Cell Non-Hodgkin Lymphoma by Ann Arbor Stage 8 97382 -NCIT:C141272 Mature T- and NK-Cell Lymphoma by Ann Arbor Stage 9 97383 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 10 97384 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 11 97385 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 11 97386 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 11 97387 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 11 97388 -NCIT:C141284 Noncutaneous Anaplastic Large Cell Lymphoma by Ann Arbor Stage 10 97389 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 11 97390 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 97391 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 97392 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 97393 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 97394 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 11 97395 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 97396 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 11 97397 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 97398 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 11 97399 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 97400 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 11 97401 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 97402 -NCIT:C141294 Angioimmunoblastic T-Cell Lymphoma by Ann Arbor Stage 10 97403 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 11 97404 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 11 97405 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 11 97406 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 11 97407 -NCIT:C141295 Enteropathy-Associated T-Cell Lymphoma by Ann Arbor Stage 10 97408 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 11 97409 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 11 97410 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 11 97411 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 11 97412 -NCIT:C141296 Nasal Type NK/T-Cell Lymphoma by Ann Arbor Stage 10 97413 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 11 97414 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 11 97415 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 11 97416 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 11 97417 -NCIT:C8690 Ann Arbor Stage I Mature T- and NK-Cell Lymphoma 10 97418 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 11 97419 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 11 97420 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 97421 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 11 97422 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 11 97423 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 11 97424 -NCIT:C8691 Ann Arbor Stage II Mature T- and NK-Cell Lymphoma 10 97425 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 11 97426 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 11 97427 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 97428 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 11 97429 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 11 97430 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 11 97431 -NCIT:C8692 Ann Arbor Stage III Mature T- and NK-Cell Lymphoma 10 97432 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 11 97433 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 11 97434 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 97435 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 11 97436 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 11 97437 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 11 97438 -NCIT:C8693 Ann Arbor Stage IV Mature T- and NK-Cell Lymphoma 10 97439 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 11 97440 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 11 97441 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 97442 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 11 97443 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 11 97444 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 11 97445 -NCIT:C8665 Ann Arbor Stage I T-Cell Non-Hodgkin Lymphoma 9 97446 -NCIT:C8690 Ann Arbor Stage I Mature T- and NK-Cell Lymphoma 10 97447 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 11 97448 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 11 97449 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 97450 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 11 97451 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 11 97452 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 11 97453 -NCIT:C8666 Ann Arbor Stage II T-Cell Non-Hodgkin Lymphoma 9 97454 -NCIT:C8691 Ann Arbor Stage II Mature T- and NK-Cell Lymphoma 10 97455 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 11 97456 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 11 97457 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 97458 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 11 97459 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 11 97460 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 11 97461 -NCIT:C8667 Ann Arbor Stage III T-Cell Non-Hodgkin Lymphoma 9 97462 -NCIT:C8692 Ann Arbor Stage III Mature T- and NK-Cell Lymphoma 10 97463 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 11 97464 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 11 97465 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 97466 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 11 97467 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 11 97468 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 11 97469 -NCIT:C8668 Ann Arbor Stage IV T-Cell Non-Hodgkin Lymphoma 9 97470 -NCIT:C8693 Ann Arbor Stage IV Mature T- and NK-Cell Lymphoma 10 97471 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 11 97472 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 11 97473 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 97474 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 11 97475 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 11 97476 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 11 97477 -NCIT:C8520 Ann Arbor Stage I Non-Hodgkin Lymphoma 8 97478 -NCIT:C27308 Ann Arbor Stage I B-Cell Non-Hodgkin Lymphoma 9 97479 -NCIT:C68678 Ann Arbor Stage I Marginal Zone Lymphoma 10 97480 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 97481 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 11 97482 -NCIT:C8070 Ann Arbor Stage I Small Lymphocytic Lymphoma 10 97483 -NCIT:C8465 Ann Arbor Stage I Mantle Cell Lymphoma 10 97484 -NCIT:C8653 Ann Arbor Stage I Lymphoplasmacytic Lymphoma 10 97485 -NCIT:C8848 Ann Arbor Stage I Burkitt Lymphoma 10 97486 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 11 97487 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 11 97488 -NCIT:C8854 Ann Arbor Stage I Diffuse Large B-Cell Lymphoma 10 97489 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 11 97490 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 97491 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 11 97492 -NCIT:C8859 Ann Arbor Stage I Follicular Lymphoma 10 97493 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 11 97494 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 11 97495 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 11 97496 -NCIT:C8871 Ann Arbor Stage I B Lymphoblastic Lymphoma 10 97497 -NCIT:C8102 Ann Arbor Stage I Adult Non-Hodgkin Lymphoma 9 97498 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 10 97499 -NCIT:C8464 Ann Arbor Stage I Indolent Adult Non-Hodgkin Lymphoma 10 97500 -NCIT:C9252 Ann Arbor Stage I Aggressive Adult Non-Hodgkin Lymphoma 10 97501 -NCIT:C8079 Ann Arbor Stage I Adult Lymphoblastic Lymphoma 11 97502 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 11 97503 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 11 97504 -NCIT:C8665 Ann Arbor Stage I T-Cell Non-Hodgkin Lymphoma 9 97505 -NCIT:C8690 Ann Arbor Stage I Mature T- and NK-Cell Lymphoma 10 97506 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 11 97507 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 11 97508 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 97509 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 11 97510 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 11 97511 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 11 97512 -NCIT:C94791 Ann Arbor Stage I Childhood Non-Hodgkin Lymphoma 9 97513 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 97514 -NCIT:C9056 Ann Arbor Stage I Childhood Lymphoblastic Lymphoma 10 97515 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 10 97516 -NCIT:C8521 Ann Arbor Stage II Non-Hodgkin Lymphoma 8 97517 -NCIT:C171159 Ann Arbor Stage IIX (Bulky) Non-Hodgkin Lymphoma 9 97518 -NCIT:C171158 Ann Arbor Stage IIX (Bulky) Diffuse Large B-Cell Lymphoma 10 97519 -NCIT:C8103 Ann Arbor Stage II Adult Non-Hodgkin Lymphoma 9 97520 -NCIT:C68686 Ann Arbor Stage II Aggressive Adult Non-Hodgkin Lymphoma 10 97521 -NCIT:C8125 Ann Arbor Stage II Adult Lymphoblastic Lymphoma 11 97522 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 12 97523 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 12 97524 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 11 97525 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 12 97526 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 12 97527 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 11 97528 -NCIT:C8472 Ann Arbor Stage II Contiguous Adult Aggressive Non-Hodgkin Lymphoma 11 97529 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 12 97530 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 12 97531 -NCIT:C8479 Ann Arbor Stage II Non-Contiguous Aggressive Adult Non-Hodgkin Lymphoma 11 97532 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 12 97533 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 12 97534 -NCIT:C68688 Ann Arbor Stage II Indolent Adult Non-Hodgkin Lymphoma 10 97535 -NCIT:C8467 Ann Arbor Stage II Contiguous Adult Indolent Non-Hodgkin Lymphoma 11 97536 -NCIT:C8478 Ann Arbor Stage II Non-Contiguous Adult Indolent Non-Hodgkin Lymphoma 11 97537 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 10 97538 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 11 97539 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 11 97540 -NCIT:C8466 Ann Arbor Stage II Contiguous Adult Non-Hodgkin Lymphoma 10 97541 -NCIT:C8467 Ann Arbor Stage II Contiguous Adult Indolent Non-Hodgkin Lymphoma 11 97542 -NCIT:C8472 Ann Arbor Stage II Contiguous Adult Aggressive Non-Hodgkin Lymphoma 11 97543 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 12 97544 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 12 97545 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 11 97546 -NCIT:C8477 Ann Arbor Stage II Non-Contiguous Adult Non-Hodgkin Lymphoma 10 97547 -NCIT:C8478 Ann Arbor Stage II Non-Contiguous Adult Indolent Non-Hodgkin Lymphoma 11 97548 -NCIT:C8479 Ann Arbor Stage II Non-Contiguous Aggressive Adult Non-Hodgkin Lymphoma 11 97549 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 12 97550 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 12 97551 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 11 97552 -NCIT:C8666 Ann Arbor Stage II T-Cell Non-Hodgkin Lymphoma 9 97553 -NCIT:C8691 Ann Arbor Stage II Mature T- and NK-Cell Lymphoma 10 97554 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 11 97555 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 11 97556 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 97557 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 11 97558 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 11 97559 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 11 97560 -NCIT:C8843 Ann Arbor Stage II B-Cell Non-Hodgkin Lymphoma 9 97561 -NCIT:C68679 Ann Arbor Stage II Marginal Zone Lymphoma 10 97562 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 97563 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 11 97564 -NCIT:C8115 Ann Arbor Stage II Small Lymphocytic Lymphoma 10 97565 -NCIT:C8654 Ann Arbor Stage II Lymphoplasmacytic Lymphoma 10 97566 -NCIT:C8849 Ann Arbor Stage II Burkitt Lymphoma 10 97567 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 11 97568 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 12 97569 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 12 97570 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 11 97571 -NCIT:C8855 Ann Arbor Stage II Diffuse Large B-Cell Lymphoma 10 97572 -NCIT:C171158 Ann Arbor Stage IIX (Bulky) Diffuse Large B-Cell Lymphoma 11 97573 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 11 97574 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 12 97575 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 12 97576 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 97577 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 11 97578 -NCIT:C8860 Ann Arbor Stage II Follicular Lymphoma 10 97579 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 11 97580 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 12 97581 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 12 97582 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 11 97583 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 12 97584 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 12 97585 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 11 97586 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 12 97587 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 12 97588 -NCIT:C8937 Ann Arbor Stage II B Lymphoblastic Lymphoma 10 97589 -NCIT:C9202 Ann Arbor Stage II Mantle Cell Lymphoma 10 97590 -NCIT:C8473 Ann Arbor Stage II Contiguous Mantle Cell Lymphoma 11 97591 -NCIT:C9198 Ann Arbor Stage II Non-Contiguous Mantle Cell Lymphoma 11 97592 -NCIT:C94792 Ann Arbor Stage II Childhood Non-Hodgkin Lymphoma 9 97593 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 97594 -NCIT:C9057 Ann Arbor Stage II Childhood Lymphoblastic Lymphoma 10 97595 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 10 97596 -NCIT:C8522 Ann Arbor Stage III Non-Hodgkin Lymphoma 8 97597 -NCIT:C8104 Ann Arbor Stage III Adult Non-Hodgkin Lymphoma 9 97598 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 10 97599 -NCIT:C8482 Ann Arbor Stage III Indolent Adult Non-Hodgkin Lymphoma 10 97600 -NCIT:C8484 Ann Arbor Stage III Aggressive Adult Non-Hodgkin Lymphoma 10 97601 -NCIT:C8138 Ann Arbor Stage III Adult Lymphoblastic Lymphoma 11 97602 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 11 97603 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 11 97604 -NCIT:C8667 Ann Arbor Stage III T-Cell Non-Hodgkin Lymphoma 9 97605 -NCIT:C8692 Ann Arbor Stage III Mature T- and NK-Cell Lymphoma 10 97606 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 11 97607 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 11 97608 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 97609 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 11 97610 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 11 97611 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 11 97612 -NCIT:C8844 Ann Arbor Stage III B-Cell Non-Hodgkin Lymphoma 9 97613 -NCIT:C68682 Ann Arbor Stage III Marginal Zone Lymphoma 10 97614 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 97615 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 11 97616 -NCIT:C8128 Ann Arbor Stage III Small Lymphocytic Lymphoma 10 97617 -NCIT:C8483 Ann Arbor Stage III Mantle Cell Lymphoma 10 97618 -NCIT:C8655 Ann Arbor Stage III Lymphoplasmacytic Lymphoma 10 97619 -NCIT:C8850 Ann Arbor Stage III Burkitt Lymphoma 10 97620 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 11 97621 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 11 97622 -NCIT:C8856 Ann Arbor Stage III Diffuse Large B-Cell Lymphoma 10 97623 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 11 97624 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 97625 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 11 97626 -NCIT:C8861 Ann Arbor Stage III Follicular Lymphoma 10 97627 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 11 97628 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 11 97629 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 11 97630 -NCIT:C8872 Ann Arbor Stage III B Lymphoblastic Lymphoma 10 97631 -NCIT:C94793 Ann Arbor Stage III Childhood Non-Hodgkin Lymphoma 9 97632 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 97633 -NCIT:C9058 Ann Arbor Stage III Childhood Lymphoblastic Lymphoma 10 97634 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 10 97635 -NCIT:C8523 Ann Arbor Stage IV Non-Hodgkin Lymphoma 8 97636 -NCIT:C8105 Ann Arbor Stage IV Adult Non-Hodgkin Lymphoma 9 97637 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 10 97638 -NCIT:C8485 Ann Arbor Stage IV Indolent Adult Non-Hodgkin Lymphoma 10 97639 -NCIT:C8487 Ann Arbor Stage IV Aggressive Adult Non-Hodgkin Lymphoma 10 97640 -NCIT:C8151 Ann Arbor Stage IV Adult Lymphoblastic Lymphoma 11 97641 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 11 97642 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 11 97643 -NCIT:C8668 Ann Arbor Stage IV T-Cell Non-Hodgkin Lymphoma 9 97644 -NCIT:C8693 Ann Arbor Stage IV Mature T- and NK-Cell Lymphoma 10 97645 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 11 97646 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 11 97647 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 97648 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 11 97649 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 11 97650 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 11 97651 -NCIT:C8845 Ann Arbor Stage IV B-Cell Non-Hodgkin Lymphoma 9 97652 -NCIT:C5006 Ann Arbor Stage IV Follicular Lymphoma 10 97653 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 11 97654 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 11 97655 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 11 97656 -NCIT:C5084 Ann Arbor Stage IV Burkitt Lymphoma 10 97657 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 11 97658 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 11 97659 -NCIT:C68683 Ann Arbor Stage IV Marginal Zone Lymphoma 10 97660 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 97661 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 11 97662 -NCIT:C8141 Ann Arbor Stage IV Small Lymphocytic Lymphoma 10 97663 -NCIT:C8486 Ann Arbor Stage IV Mantle Cell Lymphoma 10 97664 -NCIT:C8656 Ann Arbor Stage IV Lymphoplasmacytic Lymphoma 10 97665 -NCIT:C8857 Ann Arbor Stage IV Diffuse Large B-Cell Lymphoma 10 97666 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 11 97667 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 97668 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 11 97669 -NCIT:C8873 Ann Arbor Stage IV B Lymphoblastic Lymphoma 10 97670 -NCIT:C94794 Ann Arbor Stage IV Childhood Non-Hodgkin Lymphoma 9 97671 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 97672 -NCIT:C9059 Ann Arbor Stage IV Childhood Lymphoblastic Lymphoma 10 97673 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 10 97674 -NCIT:C151957 Transformed Non-Hodgkin Lymphoma 7 97675 -NCIT:C139681 Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 8 97676 -NCIT:C160232 Recurrent Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 9 97677 -NCIT:C160240 Refractory Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 9 97678 -NCIT:C140091 Refractory Transformed Non-Hodgkin Lymphoma 8 97679 -NCIT:C158150 Refractory Transformed B-Cell Non-Hodgkin Lymphoma 9 97680 -NCIT:C160240 Refractory Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 10 97681 -NCIT:C186484 Refractory Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 10 97682 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 11 97683 -NCIT:C165791 Refractory Transformed T-cell Non-Hodgkin Lymphoma 9 97684 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 97685 -NCIT:C165783 Transformed Mycosis Fungoides 8 97686 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 9 97687 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 9 97688 -NCIT:C172361 Advanced Transformed Non-Hodgkin Lymphoma 8 97689 -NCIT:C179717 Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 8 97690 -NCIT:C156699 Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 9 97691 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 10 97692 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 10 97693 -NCIT:C157625 Transformed Small Lymphocytic Lymphoma to Diffuse Large B-Cell Lymphoma 9 97694 -NCIT:C185134 Transformed Lymphoplasmacytic Lymphoma to Diffuse Large B-Cell Lymphoma 9 97695 -NCIT:C185135 Transformed Waldenstrom Macroglobulinemia to Diffuse Large B-Cell Lymphoma 10 97696 -NCIT:C186483 Recurrent Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 9 97697 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 10 97698 -NCIT:C186484 Refractory Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 9 97699 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 10 97700 -NCIT:C179721 Transformed B-Cell Lymphoma, Unclassifiable, with Features Intermediate between Diffuse Large B-Cell Lymphoma and Classic Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 8 97701 -NCIT:C8702 Recurrent Transformed Non-Hodgkin Lymphoma 8 97702 -NCIT:C158149 Recurrent Transformed B-Cell Non-Hodgkin Lymphoma 9 97703 -NCIT:C160232 Recurrent Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 10 97704 -NCIT:C186483 Recurrent Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 10 97705 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 11 97706 -NCIT:C165789 Recurrent Transformed T-cell Non-Hodgkin Lymphoma 9 97707 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 97708 -NCIT:C171037 Mediastinal Non-Hodgkin Lymphoma 7 97709 -NCIT:C45380 Thymic Mucosa-Associated Lymphoid Tissue Lymphoma 8 97710 -NCIT:C45740 Mediastinal T Lymphoblastic Lymphoma 8 97711 -NCIT:C9280 Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 97712 -NCIT:C141262 Primary Mediastinal (Thymic) Large B-Cell Lymphoma by Ann Arbor Stage 9 97713 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 97714 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 97715 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 97716 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 97717 -NCIT:C188455 Childhood Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 97718 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 97719 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 97720 -NCIT:C172371 Advanced Non-Hodgkin Lymphoma 7 97721 -NCIT:C166180 Advanced Anaplastic Large Cell Lymphoma 8 97722 -NCIT:C171264 Advanced Diffuse Large B-Cell Lymphoma 8 97723 -NCIT:C172359 Advanced Follicular Lymphoma 8 97724 -NCIT:C172360 Advanced Marginal Zone Lymphoma 8 97725 -NCIT:C172361 Advanced Transformed Non-Hodgkin Lymphoma 8 97726 -NCIT:C172442 Advanced Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 97727 -NCIT:C53283 Advanced Favorable Non-Hodgkin Lymphoma 8 97728 -NCIT:C53284 Advanced Unfavorable Non-Hodgkin Lymphoma 8 97729 -NCIT:C173171 Sinonasal Non-Hodgkin Lymphoma 7 97730 -NCIT:C173172 Sinonasal Extranodal NK/T-Cell Lymphoma 8 97731 -NCIT:C173173 Nasal Cavity Extranodal NK/T-Cell Lymphoma 9 97732 -NCIT:C6069 Paranasal Sinus Non-Hodgkin Lymphoma 8 97733 -NCIT:C6073 Paranasal Sinus Diffuse Large B-Cell Lymphoma 9 97734 -NCIT:C6075 Nasal Cavity Non-Hodgkin Lymphoma 8 97735 -NCIT:C173173 Nasal Cavity Extranodal NK/T-Cell Lymphoma 9 97736 -NCIT:C188081 Nasal Cavity Diffuse Large B-Cell Lymphoma 9 97737 -NCIT:C173355 Pharyngeal Non-Hodgkin Lymphoma 7 97738 -NCIT:C173359 Nasopharyngeal Non-Hodgkin Lymphoma 8 97739 -NCIT:C173579 Oropharyngeal Non-Hodgkin Lymphoma 8 97740 -NCIT:C188072 Tonsillar Diffuse Large B-Cell Lymphoma 9 97741 -NCIT:C188080 Tonsillar Mantle Cell Lymphoma 9 97742 -NCIT:C173691 Salivary Gland Non-Hodgkin Lymphoma 7 97743 -NCIT:C173693 Salivary Gland Mucosa-Associated Lymphoid Tissue Lymphoma 8 97744 -NCIT:C35687 Parotid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 9 97745 -NCIT:C173715 Salivary Gland Follicular Lymphoma 8 97746 -NCIT:C173716 Parotid Gland Follicular Lymphoma 9 97747 -NCIT:C173717 Salivary Gland Diffuse Large B-Cell Lymphoma 8 97748 -NCIT:C173719 Parotid Gland Diffuse Large B-Cell Lymphoma 9 97749 -NCIT:C5981 Major Salivary Gland Non-Hodgkin Lymphoma 8 97750 -NCIT:C5951 Parotid Gland Non-Hodgkin Lymphoma 9 97751 -NCIT:C173716 Parotid Gland Follicular Lymphoma 10 97752 -NCIT:C173719 Parotid Gland Diffuse Large B-Cell Lymphoma 10 97753 -NCIT:C181210 Parotid Gland Mantle Cell Lymphoma 10 97754 -NCIT:C35687 Parotid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 10 97755 -NCIT:C175470 Secondary Choroidal Non-Hodgkin Lymphoma 7 97756 -NCIT:C185753 Extranodal Non-Hodgkin Lymphoma 7 97757 -NCIT:C188114 Primary Cutaneous Non-Hodgkin Lymphoma 8 97758 -NCIT:C3467 Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 97759 -NCIT:C172442 Advanced Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 10 97760 -NCIT:C180374 Early Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 10 97761 -NCIT:C3246 Mycosis Fungoides 10 97762 -NCIT:C141143 Mycosis Fungoides by AJCC v7 Stage 11 97763 -NCIT:C7796 Stage I Mycosis Fungoides AJCC v7 12 97764 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 13 97765 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 13 97766 -NCIT:C7798 Stage II Mycosis Fungoides AJCC v7 12 97767 -NCIT:C7800 Stage III Mycosis Fungoides AJCC v7 12 97768 -NCIT:C7802 Stage IV Mycosis Fungoides AJCC v7 12 97769 -NCIT:C165783 Transformed Mycosis Fungoides 11 97770 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 12 97771 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 12 97772 -NCIT:C8686 Recurrent Mycosis Fungoides 11 97773 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 12 97774 -NCIT:C8687 Refractory Mycosis Fungoides 11 97775 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 12 97776 -NCIT:C39644 Mycosis Fungoides Variant 10 97777 -NCIT:C35464 Granulomatous Slack Skin Disease 11 97778 -NCIT:C35685 Folliculotropic Mycosis Fungoides 11 97779 -NCIT:C35794 Pagetoid Reticulosis 11 97780 -NCIT:C45332 Primary Cutaneous Peripheral T-Cell Lymphoma, Rare Subtype 10 97781 -NCIT:C139023 Primary Cutaneous Acral CD8-Positive T-Cell Lymphoma 11 97782 -NCIT:C45339 Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 11 97783 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 12 97784 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 12 97785 -NCIT:C45340 Primary Cutaneous Gamma-Delta T-Cell Lymphoma 11 97786 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 12 97787 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 12 97788 -NCIT:C6860 Primary Cutaneous Anaplastic Large Cell Lymphoma 10 97789 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 11 97790 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 11 97791 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 11 97792 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 11 97793 -NCIT:C6918 Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 97794 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 11 97795 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 11 97796 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 10 97797 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 11 97798 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 11 97799 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 11 97800 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 11 97801 -NCIT:C8686 Recurrent Mycosis Fungoides 11 97802 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 12 97803 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 10 97804 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 11 97805 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 11 97806 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 11 97807 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 11 97808 -NCIT:C8687 Refractory Mycosis Fungoides 11 97809 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 12 97810 -NCIT:C6858 Primary Cutaneous B-Cell Non-Hodgkin Lymphoma 9 97811 -NCIT:C45193 Primary Cutaneous Diffuse Large B-Cell Lymphoma 10 97812 -NCIT:C45194 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 97813 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 12 97814 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 12 97815 -NCIT:C45213 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Other 11 97816 -NCIT:C45214 Primary Cutaneous Intravascular Large B-Cell Lymphoma 12 97817 -NCIT:C45215 Primary Cutaneous T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 12 97818 -NCIT:C45216 Primary Cutaneous Plasmablastic Lymphoma 12 97819 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 10 97820 -NCIT:C7230 Primary Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 97821 -NCIT:C45163 Borrelia Burgdoferi-Associated Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 97822 -NCIT:C3898 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 97823 -NCIT:C123394 Childhood Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 97824 -NCIT:C141260 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue by Ann Arbor Stage 9 97825 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 97826 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 97827 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 97828 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 97829 -NCIT:C172844 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue Involving the Digestive System 9 97830 -NCIT:C5266 Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 10 97831 -NCIT:C27763 Helicobacter Pylori-Associated Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 11 97832 -NCIT:C5635 Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 10 97833 -NCIT:C45166 Campylobacter Jejuni-Associated Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 11 97834 -NCIT:C5768 Liver Mucosa-Associated Lymphoid Tissue Lymphoma 10 97835 -NCIT:C95626 Esophageal Mucosa-Associated Lymphoid Tissue Lymphoma 10 97836 -NCIT:C96506 Colorectal Mucosa-Associated Lymphoid Tissue Lymphoma 10 97837 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 11 97838 -NCIT:C173693 Salivary Gland Mucosa-Associated Lymphoid Tissue Lymphoma 9 97839 -NCIT:C35687 Parotid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 10 97840 -NCIT:C181910 Endometrial Mucosa-Associated Lymphoid Tissue Lymphoma 9 97841 -NCIT:C35688 Breast Mucosa-Associated Lymphoid Tissue Lymphoma 9 97842 -NCIT:C35689 Ocular Adnexal Mucosa-Associated Lymphoid Tissue Lymphoma 9 97843 -NCIT:C175431 Conjunctival Mucosa-Associated Lymphoid Tissue Lymphoma 10 97844 -NCIT:C175482 Lacrimal System Mucosa-Associated Lymphoid Tissue Lymphoma 10 97845 -NCIT:C175483 Lacrimal Gland Mucosa-Associated Lymphoid Tissue Lymphoma 11 97846 -NCIT:C175484 Lacrimal Drainage System Mucosa-Associated Lymphoid Tissue Lymphoma 11 97847 -NCIT:C182357 Diffusion Restriction 10 97848 -NCIT:C44960 Chlamydia Psittaci-Associated Ocular Adnexal Mucosa-Associated Lymphoid Tissue Lymphoma 10 97849 -NCIT:C39878 Bladder Mucosa-Associated Lymphoid Tissue Lymphoma 9 97850 -NCIT:C45380 Thymic Mucosa-Associated Lymphoid Tissue Lymphoma 9 97851 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 97852 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 97853 -NCIT:C5264 Lung Mucosa-Associated Lymphoid Tissue Lymphoma 9 97854 -NCIT:C7230 Primary Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 97855 -NCIT:C45163 Borrelia Burgdoferi-Associated Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 97856 -NCIT:C7601 Thyroid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 9 97857 -NCIT:C95991 Dural Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 97858 -NCIT:C4684 Nasal Type Extranodal NK/T-Cell Lymphoma 8 97859 -NCIT:C115154 Adult Nasal Type Extranodal NK/T-Cell Lymphoma 9 97860 -NCIT:C141296 Nasal Type NK/T-Cell Lymphoma by Ann Arbor Stage 9 97861 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 10 97862 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 10 97863 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 10 97864 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 10 97865 -NCIT:C162468 Testicular Nasal Type Extranodal NK/T-Cell Lymphoma 9 97866 -NCIT:C173172 Sinonasal Extranodal NK/T-Cell Lymphoma 9 97867 -NCIT:C173173 Nasal Cavity Extranodal NK/T-Cell Lymphoma 10 97868 -NCIT:C45268 Cutaneous Nasal Type Extranodal NK/T-Cell Lymphoma 9 97869 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 9 97870 -NCIT:C68692 Childhood Nasal Type Extranodal NK/T-Cell Lymphoma 9 97871 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 9 97872 -NCIT:C27693 EBV-Related Non-Hodgkin Lymphoma 7 97873 -NCIT:C139288 Primary EBV-Positive Nodal T-Cell or NK-Cell Lymphoma 8 97874 -NCIT:C27694 EBV-Related Burkitt Lymphoma 8 97875 -NCIT:C27122 Endemic Burkitt Lymphoma 9 97876 -NCIT:C7933 Grade III Lymphomatoid Granulomatosis 8 97877 -NCIT:C115150 Adult Grade III Lymphomatoid Granulomatosis 9 97878 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 97879 -NCIT:C115204 Childhood Grade III Lymphomatoid Granulomatosis 9 97880 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 10 97881 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 9 97882 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 97883 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 10 97884 -NCIT:C80281 EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 97885 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 97886 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 97887 -NCIT:C188456 Childhood EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 97888 -NCIT:C188457 Adult EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 97889 -NCIT:C80374 Systemic EBV-Positive T-Cell Lymphoma of Childhood 8 97890 -NCIT:C27762 Helicobacter Pylori-Related Non-Hodgkin Lymphoma 7 97891 -NCIT:C27763 Helicobacter Pylori-Associated Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 8 97892 -NCIT:C3457 B-Cell Non-Hodgkin Lymphoma 7 97893 -NCIT:C141243 B-Cell Non-Hodgkin Lymphoma by Ann Arbor Stage 8 97894 -NCIT:C141250 B Lymphoblastic Lymphoma by Ann Arbor Stage 9 97895 -NCIT:C8871 Ann Arbor Stage I B Lymphoblastic Lymphoma 10 97896 -NCIT:C8872 Ann Arbor Stage III B Lymphoblastic Lymphoma 10 97897 -NCIT:C8873 Ann Arbor Stage IV B Lymphoblastic Lymphoma 10 97898 -NCIT:C8937 Ann Arbor Stage II B Lymphoblastic Lymphoma 10 97899 -NCIT:C141253 Burkitt Lymphoma by Ann Arbor Stage 9 97900 -NCIT:C5084 Ann Arbor Stage IV Burkitt Lymphoma 10 97901 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 11 97902 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 11 97903 -NCIT:C8848 Ann Arbor Stage I Burkitt Lymphoma 10 97904 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 11 97905 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 11 97906 -NCIT:C8849 Ann Arbor Stage II Burkitt Lymphoma 10 97907 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 11 97908 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 12 97909 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 12 97910 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 11 97911 -NCIT:C8850 Ann Arbor Stage III Burkitt Lymphoma 10 97912 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 11 97913 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 11 97914 -NCIT:C141254 Diffuse Large B-Cell Lymphoma by Ann Arbor Stage 9 97915 -NCIT:C141262 Primary Mediastinal (Thymic) Large B-Cell Lymphoma by Ann Arbor Stage 10 97916 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 97917 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 97918 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 97919 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 97920 -NCIT:C141263 Centroblastic Lymphoma by Ann Arbor Stage 10 97921 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 11 97922 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 11 97923 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 11 97924 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 11 97925 -NCIT:C8854 Ann Arbor Stage I Diffuse Large B-Cell Lymphoma 10 97926 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 11 97927 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 97928 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 11 97929 -NCIT:C8855 Ann Arbor Stage II Diffuse Large B-Cell Lymphoma 10 97930 -NCIT:C171158 Ann Arbor Stage IIX (Bulky) Diffuse Large B-Cell Lymphoma 11 97931 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 11 97932 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 12 97933 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 12 97934 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 97935 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 11 97936 -NCIT:C8856 Ann Arbor Stage III Diffuse Large B-Cell Lymphoma 10 97937 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 11 97938 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 97939 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 11 97940 -NCIT:C8857 Ann Arbor Stage IV Diffuse Large B-Cell Lymphoma 10 97941 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 11 97942 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 97943 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 11 97944 -NCIT:C141255 Follicular Lymphoma by Ann Arbor Stage 9 97945 -NCIT:C5006 Ann Arbor Stage IV Follicular Lymphoma 10 97946 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 11 97947 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 11 97948 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 11 97949 -NCIT:C8859 Ann Arbor Stage I Follicular Lymphoma 10 97950 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 11 97951 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 11 97952 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 11 97953 -NCIT:C8860 Ann Arbor Stage II Follicular Lymphoma 10 97954 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 11 97955 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 12 97956 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 12 97957 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 11 97958 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 12 97959 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 12 97960 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 11 97961 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 12 97962 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 12 97963 -NCIT:C8861 Ann Arbor Stage III Follicular Lymphoma 10 97964 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 11 97965 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 11 97966 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 11 97967 -NCIT:C141256 Lymphoplasmacytic Lymphoma by Ann Arbor Stage 9 97968 -NCIT:C8653 Ann Arbor Stage I Lymphoplasmacytic Lymphoma 10 97969 -NCIT:C8654 Ann Arbor Stage II Lymphoplasmacytic Lymphoma 10 97970 -NCIT:C8655 Ann Arbor Stage III Lymphoplasmacytic Lymphoma 10 97971 -NCIT:C8656 Ann Arbor Stage IV Lymphoplasmacytic Lymphoma 10 97972 -NCIT:C141257 Mantle Cell Lymphoma by Ann Arbor Stage 9 97973 -NCIT:C8465 Ann Arbor Stage I Mantle Cell Lymphoma 10 97974 -NCIT:C8483 Ann Arbor Stage III Mantle Cell Lymphoma 10 97975 -NCIT:C8486 Ann Arbor Stage IV Mantle Cell Lymphoma 10 97976 -NCIT:C9202 Ann Arbor Stage II Mantle Cell Lymphoma 10 97977 -NCIT:C8473 Ann Arbor Stage II Contiguous Mantle Cell Lymphoma 11 97978 -NCIT:C9198 Ann Arbor Stage II Non-Contiguous Mantle Cell Lymphoma 11 97979 -NCIT:C141258 Marginal Zone Lymphoma by Ann Arbor Stage 9 97980 -NCIT:C141260 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue by Ann Arbor Stage 10 97981 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 97982 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 97983 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 97984 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 97985 -NCIT:C141261 Nodal Marginal Zone Lymphoma by Ann Arbor Stage 10 97986 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 11 97987 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 11 97988 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 11 97989 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 11 97990 -NCIT:C68678 Ann Arbor Stage I Marginal Zone Lymphoma 10 97991 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 97992 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 11 97993 -NCIT:C68679 Ann Arbor Stage II Marginal Zone Lymphoma 10 97994 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 97995 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 11 97996 -NCIT:C68682 Ann Arbor Stage III Marginal Zone Lymphoma 10 97997 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 97998 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 11 97999 -NCIT:C68683 Ann Arbor Stage IV Marginal Zone Lymphoma 10 98000 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 98001 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 11 98002 -NCIT:C141259 Small Lymphocytic Lymphoma by Ann Arbor Stage 9 98003 -NCIT:C8070 Ann Arbor Stage I Small Lymphocytic Lymphoma 10 98004 -NCIT:C8115 Ann Arbor Stage II Small Lymphocytic Lymphoma 10 98005 -NCIT:C8128 Ann Arbor Stage III Small Lymphocytic Lymphoma 10 98006 -NCIT:C8141 Ann Arbor Stage IV Small Lymphocytic Lymphoma 10 98007 -NCIT:C27308 Ann Arbor Stage I B-Cell Non-Hodgkin Lymphoma 9 98008 -NCIT:C68678 Ann Arbor Stage I Marginal Zone Lymphoma 10 98009 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 98010 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 11 98011 -NCIT:C8070 Ann Arbor Stage I Small Lymphocytic Lymphoma 10 98012 -NCIT:C8465 Ann Arbor Stage I Mantle Cell Lymphoma 10 98013 -NCIT:C8653 Ann Arbor Stage I Lymphoplasmacytic Lymphoma 10 98014 -NCIT:C8848 Ann Arbor Stage I Burkitt Lymphoma 10 98015 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 11 98016 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 11 98017 -NCIT:C8854 Ann Arbor Stage I Diffuse Large B-Cell Lymphoma 10 98018 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 11 98019 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 98020 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 11 98021 -NCIT:C8859 Ann Arbor Stage I Follicular Lymphoma 10 98022 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 11 98023 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 11 98024 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 11 98025 -NCIT:C8871 Ann Arbor Stage I B Lymphoblastic Lymphoma 10 98026 -NCIT:C8843 Ann Arbor Stage II B-Cell Non-Hodgkin Lymphoma 9 98027 -NCIT:C68679 Ann Arbor Stage II Marginal Zone Lymphoma 10 98028 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 98029 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 11 98030 -NCIT:C8115 Ann Arbor Stage II Small Lymphocytic Lymphoma 10 98031 -NCIT:C8654 Ann Arbor Stage II Lymphoplasmacytic Lymphoma 10 98032 -NCIT:C8849 Ann Arbor Stage II Burkitt Lymphoma 10 98033 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 11 98034 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 12 98035 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 12 98036 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 11 98037 -NCIT:C8855 Ann Arbor Stage II Diffuse Large B-Cell Lymphoma 10 98038 -NCIT:C171158 Ann Arbor Stage IIX (Bulky) Diffuse Large B-Cell Lymphoma 11 98039 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 11 98040 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 12 98041 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 12 98042 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 98043 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 11 98044 -NCIT:C8860 Ann Arbor Stage II Follicular Lymphoma 10 98045 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 11 98046 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 12 98047 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 12 98048 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 11 98049 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 12 98050 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 12 98051 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 11 98052 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 12 98053 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 12 98054 -NCIT:C8937 Ann Arbor Stage II B Lymphoblastic Lymphoma 10 98055 -NCIT:C9202 Ann Arbor Stage II Mantle Cell Lymphoma 10 98056 -NCIT:C8473 Ann Arbor Stage II Contiguous Mantle Cell Lymphoma 11 98057 -NCIT:C9198 Ann Arbor Stage II Non-Contiguous Mantle Cell Lymphoma 11 98058 -NCIT:C8844 Ann Arbor Stage III B-Cell Non-Hodgkin Lymphoma 9 98059 -NCIT:C68682 Ann Arbor Stage III Marginal Zone Lymphoma 10 98060 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 98061 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 11 98062 -NCIT:C8128 Ann Arbor Stage III Small Lymphocytic Lymphoma 10 98063 -NCIT:C8483 Ann Arbor Stage III Mantle Cell Lymphoma 10 98064 -NCIT:C8655 Ann Arbor Stage III Lymphoplasmacytic Lymphoma 10 98065 -NCIT:C8850 Ann Arbor Stage III Burkitt Lymphoma 10 98066 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 11 98067 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 11 98068 -NCIT:C8856 Ann Arbor Stage III Diffuse Large B-Cell Lymphoma 10 98069 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 11 98070 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 98071 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 11 98072 -NCIT:C8861 Ann Arbor Stage III Follicular Lymphoma 10 98073 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 11 98074 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 11 98075 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 11 98076 -NCIT:C8872 Ann Arbor Stage III B Lymphoblastic Lymphoma 10 98077 -NCIT:C8845 Ann Arbor Stage IV B-Cell Non-Hodgkin Lymphoma 9 98078 -NCIT:C5006 Ann Arbor Stage IV Follicular Lymphoma 10 98079 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 11 98080 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 11 98081 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 11 98082 -NCIT:C5084 Ann Arbor Stage IV Burkitt Lymphoma 10 98083 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 11 98084 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 11 98085 -NCIT:C68683 Ann Arbor Stage IV Marginal Zone Lymphoma 10 98086 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 98087 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 11 98088 -NCIT:C8141 Ann Arbor Stage IV Small Lymphocytic Lymphoma 10 98089 -NCIT:C8486 Ann Arbor Stage IV Mantle Cell Lymphoma 10 98090 -NCIT:C8656 Ann Arbor Stage IV Lymphoplasmacytic Lymphoma 10 98091 -NCIT:C8857 Ann Arbor Stage IV Diffuse Large B-Cell Lymphoma 10 98092 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 11 98093 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 98094 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 11 98095 -NCIT:C8873 Ann Arbor Stage IV B Lymphoblastic Lymphoma 10 98096 -NCIT:C147948 Central Nervous System B-Cell Non-Hodgkin Lymphoma 8 98097 -NCIT:C71720 Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 98098 -NCIT:C129602 Central Nervous System Intravascular Large B-Cell Lymphoma 10 98099 -NCIT:C155797 Pituitary Gland Diffuse Large B-Cell Lymphoma 10 98100 -NCIT:C157067 Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 98101 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 98102 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 98103 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 10 98104 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 98105 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 10 98106 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 98107 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 10 98108 -NCIT:C95991 Dural Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 98109 -NCIT:C178541 Aggressive B-Cell Non-Hodgkin Lymphoma 8 98110 -NCIT:C131911 Burkitt-Like Lymphoma with 11q Aberration 9 98111 -NCIT:C178553 Recurrent Aggressive B-Cell Non-Hodgkin Lymphoma 9 98112 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 98113 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 98114 -NCIT:C5008 Recurrent Burkitt Lymphoma 10 98115 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 11 98116 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 11 98117 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 10 98118 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 11 98119 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 11 98120 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 10 98121 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 11 98122 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 11 98123 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 10 98124 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 10 98125 -NCIT:C178555 Refractory Aggressive B-Cell Non-Hodgkin Lymphoma 9 98126 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 98127 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 98128 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 10 98129 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 11 98130 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 11 98131 -NCIT:C8847 Refractory Burkitt Lymphoma 10 98132 -NCIT:C8862 Refractory Mantle Cell Lymphoma 10 98133 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 10 98134 -NCIT:C2912 Burkitt Lymphoma 9 98135 -NCIT:C141253 Burkitt Lymphoma by Ann Arbor Stage 10 98136 -NCIT:C5084 Ann Arbor Stage IV Burkitt Lymphoma 11 98137 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 12 98138 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 12 98139 -NCIT:C8848 Ann Arbor Stage I Burkitt Lymphoma 11 98140 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 12 98141 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 12 98142 -NCIT:C8849 Ann Arbor Stage II Burkitt Lymphoma 11 98143 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 12 98144 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 13 98145 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 13 98146 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 12 98147 -NCIT:C8850 Ann Arbor Stage III Burkitt Lymphoma 11 98148 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 12 98149 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 12 98150 -NCIT:C168651 Cutaneous Burkitt Lymphoma 10 98151 -NCIT:C188075 Kidney Burkitt Lymphoma 10 98152 -NCIT:C27409 Small Intestinal Burkitt Lymphoma 10 98153 -NCIT:C27410 Small Intestinal Atypical Burkitt/Burkitt-Like Lymphoma 11 98154 -NCIT:C27694 EBV-Related Burkitt Lymphoma 10 98155 -NCIT:C27122 Endemic Burkitt Lymphoma 11 98156 -NCIT:C27914 Sporadic Burkitt Lymphoma 10 98157 -NCIT:C27915 Immunodeficiency-Related Burkitt Lymphoma 10 98158 -NCIT:C7244 Burkitt Lymphoma Post-Transplant Lymphoproliferative Disorder 11 98159 -NCIT:C7245 Burkitt-Like Lymphoma Post-Transplant Lymphoproliferative Disorder 12 98160 -NCIT:C7255 Methotrexate-Related Burkitt Lymphoma 11 98161 -NCIT:C8286 AIDS-Related Burkitt Lymphoma 11 98162 -NCIT:C27857 AIDS-Related Burkitt Lymphoma with Plasmacytoid Differentiation 12 98163 -NCIT:C40376 Breast Burkitt Lymphoma 10 98164 -NCIT:C5008 Recurrent Burkitt Lymphoma 10 98165 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 11 98166 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 11 98167 -NCIT:C5251 Gastric Burkitt Lymphoma 10 98168 -NCIT:C6917 Atypical Burkitt/Burkitt-Like Lymphoma 10 98169 -NCIT:C27410 Small Intestinal Atypical Burkitt/Burkitt-Like Lymphoma 11 98170 -NCIT:C7245 Burkitt-Like Lymphoma Post-Transplant Lymphoproliferative Disorder 11 98171 -NCIT:C7188 Classical Burkitt Lymphoma 10 98172 -NCIT:C7189 Burkitt Lymphoma with Plasmacytoid Differentiation 10 98173 -NCIT:C27857 AIDS-Related Burkitt Lymphoma with Plasmacytoid Differentiation 11 98174 -NCIT:C7309 Splenic Burkitt Lymphoma 10 98175 -NCIT:C8847 Refractory Burkitt Lymphoma 10 98176 -NCIT:C9062 Adult Burkitt Lymphoma 10 98177 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 11 98178 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 11 98179 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 12 98180 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 12 98181 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 11 98182 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 11 98183 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 11 98184 -NCIT:C9095 Childhood Burkitt Lymphoma 10 98185 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 11 98186 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 11 98187 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 11 98188 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 11 98189 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 11 98190 -NCIT:C96502 Colorectal Burkitt Lymphoma 10 98191 -NCIT:C27465 Colon Burkitt Lymphoma 11 98192 -NCIT:C3460 Grade 3 Follicular Lymphoma 9 98193 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 10 98194 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 11 98195 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 11 98196 -NCIT:C6859 Grade 3 Cutaneous Follicular Lymphoma 10 98197 -NCIT:C7191 Grade 3a Follicular Lymphoma 10 98198 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 11 98199 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 11 98200 -NCIT:C7192 Grade 3b Follicular Lymphoma 10 98201 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 11 98202 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 11 98203 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 10 98204 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 10 98205 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 11 98206 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 11 98207 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 10 98208 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 10 98209 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 10 98210 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 11 98211 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 11 98212 -NCIT:C36081 Diffuse Large B-Cell Lymphoma Activated B-Cell Type 9 98213 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 98214 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 98215 -NCIT:C4337 Mantle Cell Lymphoma 9 98216 -NCIT:C141257 Mantle Cell Lymphoma by Ann Arbor Stage 10 98217 -NCIT:C8465 Ann Arbor Stage I Mantle Cell Lymphoma 11 98218 -NCIT:C8483 Ann Arbor Stage III Mantle Cell Lymphoma 11 98219 -NCIT:C8486 Ann Arbor Stage IV Mantle Cell Lymphoma 11 98220 -NCIT:C9202 Ann Arbor Stage II Mantle Cell Lymphoma 11 98221 -NCIT:C8473 Ann Arbor Stage II Contiguous Mantle Cell Lymphoma 12 98222 -NCIT:C9198 Ann Arbor Stage II Non-Contiguous Mantle Cell Lymphoma 12 98223 -NCIT:C161604 Prostate Mantle Cell Lymphoma 10 98224 -NCIT:C181210 Parotid Gland Mantle Cell Lymphoma 10 98225 -NCIT:C188080 Tonsillar Mantle Cell Lymphoma 10 98226 -NCIT:C27440 Gastric Mantle Cell Lymphoma 10 98227 -NCIT:C27441 Small Intestinal Mantle Cell Lymphoma 10 98228 -NCIT:C39747 Pleomorphic Variant Mantle Cell Lymphoma 10 98229 -NCIT:C45266 Cutaneous Mantle Cell Lymphoma 10 98230 -NCIT:C7229 Blastoid Variant Mantle Cell Lymphoma 10 98231 -NCIT:C7306 Splenic Mantle Cell Lymphoma 10 98232 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 10 98233 -NCIT:C8862 Refractory Mantle Cell Lymphoma 10 98234 -NCIT:C96505 Colorectal Mantle Cell Lymphoma 10 98235 -NCIT:C27411 Colon Mantle Cell Lymphoma 11 98236 -NCIT:C45194 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 98237 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 98238 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 98239 -NCIT:C45231 Diffuse Large B-Cell Lymphoma Unclassifiable 9 98240 -NCIT:C7212 AIDS-Related Diffuse Large B-cell Lymphoma 9 98241 -NCIT:C27858 AIDS-Related Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 10 98242 -NCIT:C27859 AIDS-Related Plasmablastic Lymphoma 10 98243 -NCIT:C38160 AIDS-Related Plasmablastic Lymphoma of Mucosa Site 11 98244 -NCIT:C9016 AIDS-Related Plasmablastic Lymphoma of the Oral Mucosa 12 98245 -NCIT:C8285 AIDS-Related Immunoblastic Lymphoma 10 98246 -NCIT:C9017 AIDS-Related Primary Effusion Lymphoma 10 98247 -NCIT:C7246 Diffuse Large B-Cell Lymphoma Post-Transplant Lymphoproliferative Disorder 9 98248 -NCIT:C7247 Anaplastic Lymphoma Post-Transplant Lymphoproliferative Disorder 10 98249 -NCIT:C7248 Centroblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 10 98250 -NCIT:C7249 Immunoblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 10 98251 -NCIT:C7933 Grade III Lymphomatoid Granulomatosis 9 98252 -NCIT:C115150 Adult Grade III Lymphomatoid Granulomatosis 10 98253 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 11 98254 -NCIT:C115204 Childhood Grade III Lymphomatoid Granulomatosis 10 98255 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 11 98256 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 10 98257 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 11 98258 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 11 98259 -NCIT:C8868 B Lymphoblastic Lymphoma 9 98260 -NCIT:C141250 B Lymphoblastic Lymphoma by Ann Arbor Stage 10 98261 -NCIT:C8871 Ann Arbor Stage I B Lymphoblastic Lymphoma 11 98262 -NCIT:C8872 Ann Arbor Stage III B Lymphoblastic Lymphoma 11 98263 -NCIT:C8873 Ann Arbor Stage IV B Lymphoblastic Lymphoma 11 98264 -NCIT:C8937 Ann Arbor Stage II B Lymphoblastic Lymphoma 11 98265 -NCIT:C7209 Childhood B Lymphoblastic Lymphoma 10 98266 -NCIT:C7310 Splenic B Lymphoblastic Lymphoma 10 98267 -NCIT:C7338 Adult B Lymphoblastic Lymphoma 10 98268 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 10 98269 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 10 98270 -NCIT:C7056 Mature B-Cell Non-Hodgkin Lymphoma 8 98271 -NCIT:C131911 Burkitt-Like Lymphoma with 11q Aberration 9 98272 -NCIT:C133494 Large B-Cell Lymphoma with IRF4 Rearrangement 9 98273 -NCIT:C188458 Childhood Large B-Cell Lymphoma with IRF4 Rearrangement 10 98274 -NCIT:C139681 Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 9 98275 -NCIT:C160232 Recurrent Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 10 98276 -NCIT:C160240 Refractory Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 10 98277 -NCIT:C165799 Recurrent Mature B-Cell Non-Hodgkin Lymphoma 9 98278 -NCIT:C158149 Recurrent Transformed B-Cell Non-Hodgkin Lymphoma 10 98279 -NCIT:C160232 Recurrent Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 11 98280 -NCIT:C186483 Recurrent Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 11 98281 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 12 98282 -NCIT:C5007 Recurrent Follicular Lymphoma 10 98283 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 11 98284 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 11 98285 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 11 98286 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 12 98287 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 12 98288 -NCIT:C5008 Recurrent Burkitt Lymphoma 10 98289 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 11 98290 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 11 98291 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 10 98292 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 11 98293 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 98294 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 11 98295 -NCIT:C8154 Recurrent Small Lymphocytic Lymphoma 10 98296 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 10 98297 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 10 98298 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 11 98299 -NCIT:C8852 Recurrent Diffuse Large B-Cell Lymphoma 10 98300 -NCIT:C138015 Recurrent Extranodal Diffuse Large B-cell Lymphoma 11 98301 -NCIT:C138025 Recurrent Intravascular Large B-Cell Lymphoma 11 98302 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 98303 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 98304 -NCIT:C156696 Recurrent T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 11 98305 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 11 98306 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 12 98307 -NCIT:C157679 Recurrent Primary Effusion Lymphoma 11 98308 -NCIT:C157683 Recurrent Plasmablastic Lymphoma 11 98309 -NCIT:C160229 Recurrent High Grade B-Cell Lymphoma 11 98310 -NCIT:C151980 Recurrent High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 12 98311 -NCIT:C162451 Recurrent High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 12 98312 -NCIT:C188788 Recurrent High Grade B-Cell Lymphoma, Not Otherwise Specified 12 98313 -NCIT:C165240 Recurrent Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 98314 -NCIT:C160230 Recurrent Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 12 98315 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 12 98316 -NCIT:C182035 Recurrent Immunoblastic Lymphoma 12 98317 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 13 98318 -NCIT:C8926 Recurrent Centroblastic Lymphoma 12 98319 -NCIT:C183140 Recurrent Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 11 98320 -NCIT:C188790 Recurrent ALK-Positive Large B-Cell Lymphoma 11 98321 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 11 98322 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 12 98323 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 12 98324 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 98325 -NCIT:C171299 Indolent B-Cell Non-Hodgkin Lymphoma 9 98326 -NCIT:C175451 Primary Uveal Non-Hodgkin Lymphoma 10 98327 -NCIT:C175464 Primary Choroidal Non-Hodgkin Lymphoma 11 98328 -NCIT:C175466 Primary Ciliary Body Non-Hodgkin Lymphoma 11 98329 -NCIT:C175467 Primary Iris Non-Hodgkin Lymphoma 11 98330 -NCIT:C3212 Lymphoplasmacytic Lymphoma 10 98331 -NCIT:C141256 Lymphoplasmacytic Lymphoma by Ann Arbor Stage 11 98332 -NCIT:C8653 Ann Arbor Stage I Lymphoplasmacytic Lymphoma 12 98333 -NCIT:C8654 Ann Arbor Stage II Lymphoplasmacytic Lymphoma 12 98334 -NCIT:C8655 Ann Arbor Stage III Lymphoplasmacytic Lymphoma 12 98335 -NCIT:C8656 Ann Arbor Stage IV Lymphoplasmacytic Lymphoma 12 98336 -NCIT:C7305 Splenic Lymphoplasmacytic Lymphoma 11 98337 -NCIT:C80307 Waldenstrom Macroglobulinemia 11 98338 -NCIT:C115212 Familial Waldenstrom Macroglobulinemia 12 98339 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 12 98340 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 12 98341 -NCIT:C155910 Smoldering Waldenstrom Macroglobulinemia 12 98342 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 11 98343 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 12 98344 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 11 98345 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 12 98346 -NCIT:C3465 Grade 1 Follicular Lymphoma 10 98347 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 11 98348 -NCIT:C7220 Grade 1 Cutaneous Follicular Lymphoma 11 98349 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 11 98350 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 11 98351 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 12 98352 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 12 98353 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 11 98354 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 11 98355 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 11 98356 -NCIT:C37203 Small Lymphocytic Lymphoma with Immunoglobulin Heavy Chain Variable-Region Gene Somatic Hypermutation 10 98357 -NCIT:C4341 Marginal Zone Lymphoma 10 98358 -NCIT:C141258 Marginal Zone Lymphoma by Ann Arbor Stage 11 98359 -NCIT:C141260 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue by Ann Arbor Stage 12 98360 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 13 98361 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 13 98362 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 13 98363 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 13 98364 -NCIT:C141261 Nodal Marginal Zone Lymphoma by Ann Arbor Stage 12 98365 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 13 98366 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 13 98367 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 13 98368 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 13 98369 -NCIT:C68678 Ann Arbor Stage I Marginal Zone Lymphoma 12 98370 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 13 98371 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 13 98372 -NCIT:C68679 Ann Arbor Stage II Marginal Zone Lymphoma 12 98373 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 13 98374 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 13 98375 -NCIT:C68682 Ann Arbor Stage III Marginal Zone Lymphoma 12 98376 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 13 98377 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 13 98378 -NCIT:C68683 Ann Arbor Stage IV Marginal Zone Lymphoma 12 98379 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 13 98380 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 13 98381 -NCIT:C143085 Refractory Marginal Zone Lymphoma 11 98382 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 12 98383 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 98384 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 12 98385 -NCIT:C172360 Advanced Marginal Zone Lymphoma 11 98386 -NCIT:C3898 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 98387 -NCIT:C123394 Childhood Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 98388 -NCIT:C141260 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue by Ann Arbor Stage 12 98389 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 13 98390 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 13 98391 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 13 98392 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 13 98393 -NCIT:C172844 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue Involving the Digestive System 12 98394 -NCIT:C5266 Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 13 98395 -NCIT:C27763 Helicobacter Pylori-Associated Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 14 98396 -NCIT:C5635 Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 13 98397 -NCIT:C45166 Campylobacter Jejuni-Associated Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 14 98398 -NCIT:C5768 Liver Mucosa-Associated Lymphoid Tissue Lymphoma 13 98399 -NCIT:C95626 Esophageal Mucosa-Associated Lymphoid Tissue Lymphoma 13 98400 -NCIT:C96506 Colorectal Mucosa-Associated Lymphoid Tissue Lymphoma 13 98401 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 14 98402 -NCIT:C173693 Salivary Gland Mucosa-Associated Lymphoid Tissue Lymphoma 12 98403 -NCIT:C35687 Parotid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 13 98404 -NCIT:C181910 Endometrial Mucosa-Associated Lymphoid Tissue Lymphoma 12 98405 -NCIT:C35688 Breast Mucosa-Associated Lymphoid Tissue Lymphoma 12 98406 -NCIT:C35689 Ocular Adnexal Mucosa-Associated Lymphoid Tissue Lymphoma 12 98407 -NCIT:C175431 Conjunctival Mucosa-Associated Lymphoid Tissue Lymphoma 13 98408 -NCIT:C175482 Lacrimal System Mucosa-Associated Lymphoid Tissue Lymphoma 13 98409 -NCIT:C175483 Lacrimal Gland Mucosa-Associated Lymphoid Tissue Lymphoma 14 98410 -NCIT:C175484 Lacrimal Drainage System Mucosa-Associated Lymphoid Tissue Lymphoma 14 98411 -NCIT:C182357 Diffusion Restriction 13 98412 -NCIT:C44960 Chlamydia Psittaci-Associated Ocular Adnexal Mucosa-Associated Lymphoid Tissue Lymphoma 13 98413 -NCIT:C39878 Bladder Mucosa-Associated Lymphoid Tissue Lymphoma 12 98414 -NCIT:C45380 Thymic Mucosa-Associated Lymphoid Tissue Lymphoma 12 98415 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 98416 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 98417 -NCIT:C5264 Lung Mucosa-Associated Lymphoid Tissue Lymphoma 12 98418 -NCIT:C7230 Primary Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 98419 -NCIT:C45163 Borrelia Burgdoferi-Associated Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 13 98420 -NCIT:C7601 Thyroid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 12 98421 -NCIT:C95991 Dural Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 98422 -NCIT:C4663 Splenic Marginal Zone Lymphoma 11 98423 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 12 98424 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 12 98425 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 11 98426 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 12 98427 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 98428 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 12 98429 -NCIT:C8863 Nodal Marginal Zone Lymphoma 11 98430 -NCIT:C141261 Nodal Marginal Zone Lymphoma by Ann Arbor Stage 12 98431 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 13 98432 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 13 98433 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 13 98434 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 13 98435 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 12 98436 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 12 98437 -NCIT:C80299 Pediatric Nodal Marginal Zone Lymphoma 12 98438 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 10 98439 -NCIT:C7264 Diffuse Follicular Lymphoma 10 98440 -NCIT:C7194 Grade 2 Diffuse Follicular Lymphoma 11 98441 -NCIT:C9464 Grade 1 Diffuse Follicular Lymphoma 11 98442 -NCIT:C8968 Grade 2 Follicular Lymphoma 10 98443 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 11 98444 -NCIT:C7219 Grade 2 Cutaneous Follicular Lymphoma 11 98445 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 11 98446 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 11 98447 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 12 98448 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 12 98449 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 11 98450 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 11 98451 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 11 98452 -NCIT:C179717 Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 9 98453 -NCIT:C156699 Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 10 98454 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 11 98455 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 11 98456 -NCIT:C157625 Transformed Small Lymphocytic Lymphoma to Diffuse Large B-Cell Lymphoma 10 98457 -NCIT:C185134 Transformed Lymphoplasmacytic Lymphoma to Diffuse Large B-Cell Lymphoma 10 98458 -NCIT:C185135 Transformed Waldenstrom Macroglobulinemia to Diffuse Large B-Cell Lymphoma 11 98459 -NCIT:C186483 Recurrent Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 10 98460 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 11 98461 -NCIT:C186484 Refractory Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 10 98462 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 11 98463 -NCIT:C2912 Burkitt Lymphoma 9 98464 -NCIT:C141253 Burkitt Lymphoma by Ann Arbor Stage 10 98465 -NCIT:C5084 Ann Arbor Stage IV Burkitt Lymphoma 11 98466 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 12 98467 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 12 98468 -NCIT:C8848 Ann Arbor Stage I Burkitt Lymphoma 11 98469 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 12 98470 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 12 98471 -NCIT:C8849 Ann Arbor Stage II Burkitt Lymphoma 11 98472 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 12 98473 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 13 98474 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 13 98475 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 12 98476 -NCIT:C8850 Ann Arbor Stage III Burkitt Lymphoma 11 98477 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 12 98478 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 12 98479 -NCIT:C168651 Cutaneous Burkitt Lymphoma 10 98480 -NCIT:C188075 Kidney Burkitt Lymphoma 10 98481 -NCIT:C27409 Small Intestinal Burkitt Lymphoma 10 98482 -NCIT:C27410 Small Intestinal Atypical Burkitt/Burkitt-Like Lymphoma 11 98483 -NCIT:C27694 EBV-Related Burkitt Lymphoma 10 98484 -NCIT:C27122 Endemic Burkitt Lymphoma 11 98485 -NCIT:C27914 Sporadic Burkitt Lymphoma 10 98486 -NCIT:C27915 Immunodeficiency-Related Burkitt Lymphoma 10 98487 -NCIT:C7244 Burkitt Lymphoma Post-Transplant Lymphoproliferative Disorder 11 98488 -NCIT:C7245 Burkitt-Like Lymphoma Post-Transplant Lymphoproliferative Disorder 12 98489 -NCIT:C7255 Methotrexate-Related Burkitt Lymphoma 11 98490 -NCIT:C8286 AIDS-Related Burkitt Lymphoma 11 98491 -NCIT:C27857 AIDS-Related Burkitt Lymphoma with Plasmacytoid Differentiation 12 98492 -NCIT:C40376 Breast Burkitt Lymphoma 10 98493 -NCIT:C5008 Recurrent Burkitt Lymphoma 10 98494 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 11 98495 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 11 98496 -NCIT:C5251 Gastric Burkitt Lymphoma 10 98497 -NCIT:C6917 Atypical Burkitt/Burkitt-Like Lymphoma 10 98498 -NCIT:C27410 Small Intestinal Atypical Burkitt/Burkitt-Like Lymphoma 11 98499 -NCIT:C7245 Burkitt-Like Lymphoma Post-Transplant Lymphoproliferative Disorder 11 98500 -NCIT:C7188 Classical Burkitt Lymphoma 10 98501 -NCIT:C7189 Burkitt Lymphoma with Plasmacytoid Differentiation 10 98502 -NCIT:C27857 AIDS-Related Burkitt Lymphoma with Plasmacytoid Differentiation 11 98503 -NCIT:C7309 Splenic Burkitt Lymphoma 10 98504 -NCIT:C8847 Refractory Burkitt Lymphoma 10 98505 -NCIT:C9062 Adult Burkitt Lymphoma 10 98506 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 11 98507 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 11 98508 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 12 98509 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 12 98510 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 11 98511 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 11 98512 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 11 98513 -NCIT:C9095 Childhood Burkitt Lymphoma 10 98514 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 11 98515 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 11 98516 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 11 98517 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 11 98518 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 11 98519 -NCIT:C96502 Colorectal Burkitt Lymphoma 10 98520 -NCIT:C27465 Colon Burkitt Lymphoma 11 98521 -NCIT:C3082 Heavy Chain Disease 9 98522 -NCIT:C3083 Gamma Heavy Chain Disease 10 98523 -NCIT:C3132 Alpha Heavy Chain Disease 10 98524 -NCIT:C3892 Mu Heavy Chain Disease 10 98525 -NCIT:C3209 Follicular Lymphoma 9 98526 -NCIT:C138185 Duodenal-Type Follicular Lymphoma 10 98527 -NCIT:C138186 Predominantly Diffuse Follicular Lymphoma with 1p36 Deletion 10 98528 -NCIT:C141255 Follicular Lymphoma by Ann Arbor Stage 10 98529 -NCIT:C5006 Ann Arbor Stage IV Follicular Lymphoma 11 98530 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 12 98531 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 12 98532 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 12 98533 -NCIT:C8859 Ann Arbor Stage I Follicular Lymphoma 11 98534 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 12 98535 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 12 98536 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 12 98537 -NCIT:C8860 Ann Arbor Stage II Follicular Lymphoma 11 98538 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 12 98539 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 13 98540 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 13 98541 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 12 98542 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 13 98543 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 13 98544 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 12 98545 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 13 98546 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 13 98547 -NCIT:C8861 Ann Arbor Stage III Follicular Lymphoma 11 98548 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 12 98549 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 12 98550 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 12 98551 -NCIT:C150589 Testicular Follicular Lymphoma 10 98552 -NCIT:C156410 Thyroid Gland Follicular Lymphoma 10 98553 -NCIT:C161603 Prostate Follicular Lymphoma 10 98554 -NCIT:C172359 Advanced Follicular Lymphoma 10 98555 -NCIT:C173715 Salivary Gland Follicular Lymphoma 10 98556 -NCIT:C173716 Parotid Gland Follicular Lymphoma 11 98557 -NCIT:C175430 Conjunctival Follicular Lymphoma 10 98558 -NCIT:C175488 Lacrimal Gland Follicular Lymphoma 10 98559 -NCIT:C181211 Lung Follicular Lymphoma 10 98560 -NCIT:C3460 Grade 3 Follicular Lymphoma 10 98561 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 11 98562 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 12 98563 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 12 98564 -NCIT:C6859 Grade 3 Cutaneous Follicular Lymphoma 11 98565 -NCIT:C7191 Grade 3a Follicular Lymphoma 11 98566 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 12 98567 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 12 98568 -NCIT:C7192 Grade 3b Follicular Lymphoma 11 98569 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 12 98570 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 12 98571 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 11 98572 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 11 98573 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 12 98574 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 12 98575 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 11 98576 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 11 98577 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 11 98578 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 12 98579 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 12 98580 -NCIT:C3465 Grade 1 Follicular Lymphoma 10 98581 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 11 98582 -NCIT:C7220 Grade 1 Cutaneous Follicular Lymphoma 11 98583 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 11 98584 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 11 98585 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 12 98586 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 12 98587 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 11 98588 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 11 98589 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 11 98590 -NCIT:C37209 Diffuse Blastoid B-Cell Lymphoma 10 98591 -NCIT:C40377 Breast Follicular Lymphoma 10 98592 -NCIT:C5007 Recurrent Follicular Lymphoma 10 98593 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 11 98594 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 11 98595 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 11 98596 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 12 98597 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 12 98598 -NCIT:C7218 Cutaneous Follicular Lymphoma 10 98599 -NCIT:C6859 Grade 3 Cutaneous Follicular Lymphoma 11 98600 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 11 98601 -NCIT:C7219 Grade 2 Cutaneous Follicular Lymphoma 11 98602 -NCIT:C7220 Grade 1 Cutaneous Follicular Lymphoma 11 98603 -NCIT:C7254 Methotrexate-Associated Follicular Lymphoma 10 98604 -NCIT:C7264 Diffuse Follicular Lymphoma 10 98605 -NCIT:C7194 Grade 2 Diffuse Follicular Lymphoma 11 98606 -NCIT:C9464 Grade 1 Diffuse Follicular Lymphoma 11 98607 -NCIT:C7307 Splenic Follicular Lymphoma 10 98608 -NCIT:C80297 Pediatric-Type Follicular Lymphoma 10 98609 -NCIT:C80298 Intestinal Follicular Lymphoma 10 98610 -NCIT:C96056 Small Intestinal Follicular Lymphoma 11 98611 -NCIT:C8858 Refractory Follicular Lymphoma 10 98612 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 11 98613 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 11 98614 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 11 98615 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 12 98616 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 12 98617 -NCIT:C8968 Grade 2 Follicular Lymphoma 10 98618 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 11 98619 -NCIT:C7219 Grade 2 Cutaneous Follicular Lymphoma 11 98620 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 11 98621 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 11 98622 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 12 98623 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 12 98624 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 11 98625 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 11 98626 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 11 98627 -NCIT:C4337 Mantle Cell Lymphoma 9 98628 -NCIT:C141257 Mantle Cell Lymphoma by Ann Arbor Stage 10 98629 -NCIT:C8465 Ann Arbor Stage I Mantle Cell Lymphoma 11 98630 -NCIT:C8483 Ann Arbor Stage III Mantle Cell Lymphoma 11 98631 -NCIT:C8486 Ann Arbor Stage IV Mantle Cell Lymphoma 11 98632 -NCIT:C9202 Ann Arbor Stage II Mantle Cell Lymphoma 11 98633 -NCIT:C8473 Ann Arbor Stage II Contiguous Mantle Cell Lymphoma 12 98634 -NCIT:C9198 Ann Arbor Stage II Non-Contiguous Mantle Cell Lymphoma 12 98635 -NCIT:C161604 Prostate Mantle Cell Lymphoma 10 98636 -NCIT:C181210 Parotid Gland Mantle Cell Lymphoma 10 98637 -NCIT:C188080 Tonsillar Mantle Cell Lymphoma 10 98638 -NCIT:C27440 Gastric Mantle Cell Lymphoma 10 98639 -NCIT:C27441 Small Intestinal Mantle Cell Lymphoma 10 98640 -NCIT:C39747 Pleomorphic Variant Mantle Cell Lymphoma 10 98641 -NCIT:C45266 Cutaneous Mantle Cell Lymphoma 10 98642 -NCIT:C7229 Blastoid Variant Mantle Cell Lymphoma 10 98643 -NCIT:C7306 Splenic Mantle Cell Lymphoma 10 98644 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 10 98645 -NCIT:C8862 Refractory Mantle Cell Lymphoma 10 98646 -NCIT:C96505 Colorectal Mantle Cell Lymphoma 10 98647 -NCIT:C27411 Colon Mantle Cell Lymphoma 11 98648 -NCIT:C6858 Primary Cutaneous B-Cell Non-Hodgkin Lymphoma 9 98649 -NCIT:C45193 Primary Cutaneous Diffuse Large B-Cell Lymphoma 10 98650 -NCIT:C45194 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 98651 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 12 98652 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 12 98653 -NCIT:C45213 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Other 11 98654 -NCIT:C45214 Primary Cutaneous Intravascular Large B-Cell Lymphoma 12 98655 -NCIT:C45215 Primary Cutaneous T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 12 98656 -NCIT:C45216 Primary Cutaneous Plasmablastic Lymphoma 12 98657 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 10 98658 -NCIT:C7230 Primary Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 98659 -NCIT:C45163 Borrelia Burgdoferi-Associated Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 98660 -NCIT:C7228 Refractory Mature B-Cell Non-Hodgkin Lymphoma 9 98661 -NCIT:C143085 Refractory Marginal Zone Lymphoma 10 98662 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 11 98663 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 98664 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 11 98665 -NCIT:C158150 Refractory Transformed B-Cell Non-Hodgkin Lymphoma 10 98666 -NCIT:C160240 Refractory Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 11 98667 -NCIT:C186484 Refractory Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 11 98668 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 12 98669 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 10 98670 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 11 98671 -NCIT:C8846 Refractory Small Lymphocytic Lymphoma 10 98672 -NCIT:C8847 Refractory Burkitt Lymphoma 10 98673 -NCIT:C8853 Refractory Diffuse Large B-Cell Lymphoma 10 98674 -NCIT:C138018 Refractory Extranodal Diffuse Large B-cell Lymphoma 11 98675 -NCIT:C138026 Refractory Intravascular Large B-Cell Lymphoma 11 98676 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 98677 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 98678 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 11 98679 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 12 98680 -NCIT:C157678 Refractory T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 11 98681 -NCIT:C157680 Refractory Primary Effusion Lymphoma 11 98682 -NCIT:C157684 Refractory Plasmablastic Lymphoma 11 98683 -NCIT:C160233 Refractory High Grade B-Cell Lymphoma 11 98684 -NCIT:C151979 Refractory High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 12 98685 -NCIT:C162453 Refractory High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 12 98686 -NCIT:C188789 Refractory High Grade B-Cell Lymphoma, Not Otherwise Specified 12 98687 -NCIT:C165241 Refractory Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 98688 -NCIT:C160238 Refractory Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 12 98689 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 12 98690 -NCIT:C182034 Refractory Immunoblastic Lymphoma 12 98691 -NCIT:C8927 Refractory Centroblastic Lymphoma 12 98692 -NCIT:C183142 Refractory Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 11 98693 -NCIT:C188791 Refractory ALK-Positive Large B-Cell Lymphoma 11 98694 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 98695 -NCIT:C8858 Refractory Follicular Lymphoma 10 98696 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 11 98697 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 11 98698 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 11 98699 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 12 98700 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 12 98701 -NCIT:C8862 Refractory Mantle Cell Lymphoma 10 98702 -NCIT:C7540 Small Lymphocytic Lymphoma 9 98703 -NCIT:C141259 Small Lymphocytic Lymphoma by Ann Arbor Stage 10 98704 -NCIT:C8070 Ann Arbor Stage I Small Lymphocytic Lymphoma 11 98705 -NCIT:C8115 Ann Arbor Stage II Small Lymphocytic Lymphoma 11 98706 -NCIT:C8128 Ann Arbor Stage III Small Lymphocytic Lymphoma 11 98707 -NCIT:C8141 Ann Arbor Stage IV Small Lymphocytic Lymphoma 11 98708 -NCIT:C161605 Prostate Small Lymphocytic Lymphoma 10 98709 -NCIT:C36273 Small Lymphocytic Lymphoma with Plasmacytoid Differentiation 10 98710 -NCIT:C37203 Small Lymphocytic Lymphoma with Immunoglobulin Heavy Chain Variable-Region Gene Somatic Hypermutation 10 98711 -NCIT:C37206 Small Lymphocytic Lymphoma with Unmutated Immunoglobulin Heavy Chain Variable-Region Gene 10 98712 -NCIT:C7304 Splenic Small Lymphocytic Lymphoma 10 98713 -NCIT:C8154 Recurrent Small Lymphocytic Lymphoma 10 98714 -NCIT:C8846 Refractory Small Lymphocytic Lymphoma 10 98715 -NCIT:C80309 Splenic Diffuse Red Pulp Small B-Cell Lymphoma 9 98716 -NCIT:C8851 Diffuse Large B-Cell Lymphoma 9 98717 -NCIT:C138211 High Grade B-Cell Lymphoma 10 98718 -NCIT:C138195 High Grade B-Cell Lymphoma with MYC and BCL2 and/or BCL6 Rearrangements 11 98719 -NCIT:C125904 High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 12 98720 -NCIT:C151979 Refractory High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 13 98721 -NCIT:C151980 Recurrent High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 13 98722 -NCIT:C131913 High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 12 98723 -NCIT:C162451 Recurrent High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 13 98724 -NCIT:C162453 Refractory High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 13 98725 -NCIT:C160229 Recurrent High Grade B-Cell Lymphoma 11 98726 -NCIT:C151980 Recurrent High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 12 98727 -NCIT:C162451 Recurrent High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 12 98728 -NCIT:C188788 Recurrent High Grade B-Cell Lymphoma, Not Otherwise Specified 12 98729 -NCIT:C160233 Refractory High Grade B-Cell Lymphoma 11 98730 -NCIT:C151979 Refractory High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 12 98731 -NCIT:C162453 Refractory High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 12 98732 -NCIT:C188789 Refractory High Grade B-Cell Lymphoma, Not Otherwise Specified 12 98733 -NCIT:C80291 High Grade B-Cell Lymphoma, Not Otherwise Specified 11 98734 -NCIT:C188788 Recurrent High Grade B-Cell Lymphoma, Not Otherwise Specified 12 98735 -NCIT:C188789 Refractory High Grade B-Cell Lymphoma, Not Otherwise Specified 12 98736 -NCIT:C96057 Small Intestinal High Grade B-Cell Lymphoma, Not Otherwise Specified 12 98737 -NCIT:C96501 Colorectal High Grade B-Cell Lymphoma, Not Otherwise Specified 12 98738 -NCIT:C138320 HHV8-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 98739 -NCIT:C138899 Double-Expressor Lymphoma 10 98740 -NCIT:C141254 Diffuse Large B-Cell Lymphoma by Ann Arbor Stage 10 98741 -NCIT:C141262 Primary Mediastinal (Thymic) Large B-Cell Lymphoma by Ann Arbor Stage 11 98742 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 12 98743 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 12 98744 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 12 98745 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 12 98746 -NCIT:C141263 Centroblastic Lymphoma by Ann Arbor Stage 11 98747 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 12 98748 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 12 98749 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 12 98750 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 12 98751 -NCIT:C8854 Ann Arbor Stage I Diffuse Large B-Cell Lymphoma 11 98752 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 12 98753 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 12 98754 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 12 98755 -NCIT:C8855 Ann Arbor Stage II Diffuse Large B-Cell Lymphoma 11 98756 -NCIT:C171158 Ann Arbor Stage IIX (Bulky) Diffuse Large B-Cell Lymphoma 12 98757 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 12 98758 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 13 98759 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 13 98760 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 12 98761 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 12 98762 -NCIT:C8856 Ann Arbor Stage III Diffuse Large B-Cell Lymphoma 11 98763 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 12 98764 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 12 98765 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 12 98766 -NCIT:C8857 Ann Arbor Stage IV Diffuse Large B-Cell Lymphoma 11 98767 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 12 98768 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 12 98769 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 12 98770 -NCIT:C150396 Fibrin-Associated Diffuse Large B-Cell Lymphoma 10 98771 -NCIT:C183141 Cardiac Fibrin-Associated Diffuse Large B-Cell Lymphoma 11 98772 -NCIT:C161602 Prostate Diffuse Large B-Cell Lymphoma 10 98773 -NCIT:C162467 Testicular Diffuse Large B-Cell Lymphoma 10 98774 -NCIT:C171264 Advanced Diffuse Large B-Cell Lymphoma 10 98775 -NCIT:C172850 Digestive System Diffuse Large B-Cell Lymphoma 10 98776 -NCIT:C5253 Gastric Diffuse Large B-Cell Lymphoma 11 98777 -NCIT:C95625 Esophageal Diffuse Large B-Cell Lymphoma 11 98778 -NCIT:C96055 Small Intestinal Diffuse Large B-Cell Lymphoma 11 98779 -NCIT:C96057 Small Intestinal High Grade B-Cell Lymphoma, Not Otherwise Specified 12 98780 -NCIT:C96503 Colorectal Diffuse Large B-Cell Lymphoma 11 98781 -NCIT:C96501 Colorectal High Grade B-Cell Lymphoma, Not Otherwise Specified 12 98782 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 12 98783 -NCIT:C96843 Liver Diffuse Large B-Cell Lymphoma 11 98784 -NCIT:C173717 Salivary Gland Diffuse Large B-Cell Lymphoma 10 98785 -NCIT:C173719 Parotid Gland Diffuse Large B-Cell Lymphoma 11 98786 -NCIT:C173811 Primary Bone Diffuse Large B-Cell Lymphoma 10 98787 -NCIT:C175433 Conjunctival Diffuse Large B-Cell Lymphoma 10 98788 -NCIT:C175485 Lacrimal System Diffuse Large B-Cell Lymphoma 10 98789 -NCIT:C175486 Lacrimal Gland Diffuse Large B-Cell Lymphoma 11 98790 -NCIT:C175487 Lacrimal Drainage System Diffuse Large B-Cell Lymphoma 11 98791 -NCIT:C183146 Cardiac Diffuse Large B-Cell Lymphoma 10 98792 -NCIT:C183141 Cardiac Fibrin-Associated Diffuse Large B-Cell Lymphoma 11 98793 -NCIT:C188072 Tonsillar Diffuse Large B-Cell Lymphoma 10 98794 -NCIT:C188081 Nasal Cavity Diffuse Large B-Cell Lymphoma 10 98795 -NCIT:C27856 Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 10 98796 -NCIT:C27858 AIDS-Related Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 11 98797 -NCIT:C40375 Breast Diffuse Large B-Cell Lymphoma 10 98798 -NCIT:C4342 Intravascular Large B-Cell Lymphoma 10 98799 -NCIT:C129602 Central Nervous System Intravascular Large B-Cell Lymphoma 11 98800 -NCIT:C138025 Recurrent Intravascular Large B-Cell Lymphoma 11 98801 -NCIT:C138026 Refractory Intravascular Large B-Cell Lymphoma 11 98802 -NCIT:C183121 Lung Intravascular Large B-Cell Lymphoma 11 98803 -NCIT:C45214 Primary Cutaneous Intravascular Large B-Cell Lymphoma 11 98804 -NCIT:C45193 Primary Cutaneous Diffuse Large B-Cell Lymphoma 10 98805 -NCIT:C45194 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 98806 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 12 98807 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 12 98808 -NCIT:C45213 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Other 11 98809 -NCIT:C45214 Primary Cutaneous Intravascular Large B-Cell Lymphoma 12 98810 -NCIT:C45215 Primary Cutaneous T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 12 98811 -NCIT:C45216 Primary Cutaneous Plasmablastic Lymphoma 12 98812 -NCIT:C45605 Lung Diffuse Large B-Cell Lymphoma 10 98813 -NCIT:C183121 Lung Intravascular Large B-Cell Lymphoma 11 98814 -NCIT:C6046 Thyroid Gland Diffuse Large B-Cell Lymphoma 10 98815 -NCIT:C7263 Thyroid Gland Immunoblastic Lymphoma 11 98816 -NCIT:C6073 Paranasal Sinus Diffuse Large B-Cell Lymphoma 10 98817 -NCIT:C63533 Kidney Diffuse Large B-Cell Lymphoma 10 98818 -NCIT:C6915 Primary Effusion Lymphoma 10 98819 -NCIT:C150406 Extracavitary Primary Effusion Lymphoma 11 98820 -NCIT:C150407 Body Cavity Primary Effusion Lymphoma 11 98821 -NCIT:C183135 Pleural Primary Effusion Lymphoma 12 98822 -NCIT:C183136 Pericardial Primary Effusion Lymphoma 12 98823 -NCIT:C183137 Peritoneal Primary Effusion Lymphoma 12 98824 -NCIT:C157679 Recurrent Primary Effusion Lymphoma 11 98825 -NCIT:C157680 Refractory Primary Effusion Lymphoma 11 98826 -NCIT:C9017 AIDS-Related Primary Effusion Lymphoma 11 98827 -NCIT:C71720 Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 10 98828 -NCIT:C129602 Central Nervous System Intravascular Large B-Cell Lymphoma 11 98829 -NCIT:C155797 Pituitary Gland Diffuse Large B-Cell Lymphoma 11 98830 -NCIT:C157067 Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 98831 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 12 98832 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 12 98833 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 11 98834 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 12 98835 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 11 98836 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 12 98837 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 11 98838 -NCIT:C7212 AIDS-Related Diffuse Large B-cell Lymphoma 10 98839 -NCIT:C27858 AIDS-Related Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 11 98840 -NCIT:C27859 AIDS-Related Plasmablastic Lymphoma 11 98841 -NCIT:C38160 AIDS-Related Plasmablastic Lymphoma of Mucosa Site 12 98842 -NCIT:C9016 AIDS-Related Plasmablastic Lymphoma of the Oral Mucosa 13 98843 -NCIT:C8285 AIDS-Related Immunoblastic Lymphoma 11 98844 -NCIT:C9017 AIDS-Related Primary Effusion Lymphoma 11 98845 -NCIT:C7224 Plasmablastic Lymphoma 10 98846 -NCIT:C157683 Recurrent Plasmablastic Lymphoma 11 98847 -NCIT:C157684 Refractory Plasmablastic Lymphoma 11 98848 -NCIT:C27859 AIDS-Related Plasmablastic Lymphoma 11 98849 -NCIT:C38160 AIDS-Related Plasmablastic Lymphoma of Mucosa Site 12 98850 -NCIT:C9016 AIDS-Related Plasmablastic Lymphoma of the Oral Mucosa 13 98851 -NCIT:C38159 Plasmablastic Lymphoma of Mucosa Site 11 98852 -NCIT:C38160 AIDS-Related Plasmablastic Lymphoma of Mucosa Site 12 98853 -NCIT:C9016 AIDS-Related Plasmablastic Lymphoma of the Oral Mucosa 13 98854 -NCIT:C80290 Plasmablastic Lymphoma of the Oral Mucosa 12 98855 -NCIT:C9016 AIDS-Related Plasmablastic Lymphoma of the Oral Mucosa 13 98856 -NCIT:C45216 Primary Cutaneous Plasmablastic Lymphoma 11 98857 -NCIT:C7225 ALK-Positive Large B-Cell Lymphoma 10 98858 -NCIT:C188790 Recurrent ALK-Positive Large B-Cell Lymphoma 11 98859 -NCIT:C188791 Refractory ALK-Positive Large B-Cell Lymphoma 11 98860 -NCIT:C7246 Diffuse Large B-Cell Lymphoma Post-Transplant Lymphoproliferative Disorder 10 98861 -NCIT:C7247 Anaplastic Lymphoma Post-Transplant Lymphoproliferative Disorder 11 98862 -NCIT:C7248 Centroblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 11 98863 -NCIT:C7249 Immunoblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 11 98864 -NCIT:C7253 Methotrexate-Associated Diffuse Large B-Cell Lymphoma 10 98865 -NCIT:C7308 Splenic Diffuse Large B-Cell Lymphoma 10 98866 -NCIT:C7615 Adult Diffuse Large B-Cell Lymphoma 10 98867 -NCIT:C115150 Adult Grade III Lymphomatoid Granulomatosis 11 98868 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 12 98869 -NCIT:C188457 Adult EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 98870 -NCIT:C7873 Adult Immunoblastic Lymphoma 11 98871 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 12 98872 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 12 98873 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 13 98874 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 13 98875 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 12 98876 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 12 98877 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 12 98878 -NCIT:C7616 Childhood Diffuse Large B-Cell Lymphoma 10 98879 -NCIT:C115204 Childhood Grade III Lymphomatoid Granulomatosis 11 98880 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 12 98881 -NCIT:C188455 Childhood Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 98882 -NCIT:C188456 Childhood EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 98883 -NCIT:C9079 Childhood Immunoblastic Lymphoma 11 98884 -NCIT:C7933 Grade III Lymphomatoid Granulomatosis 10 98885 -NCIT:C115150 Adult Grade III Lymphomatoid Granulomatosis 11 98886 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 12 98887 -NCIT:C115204 Childhood Grade III Lymphomatoid Granulomatosis 11 98888 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 12 98889 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 11 98890 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 12 98891 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 12 98892 -NCIT:C80280 Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 98893 -NCIT:C148392 Diffuse Large B-Cell Lymphoma, Not Otherwise Specified Molecular Subtypes 11 98894 -NCIT:C148394 MCD Diffuse Large B-Cell Lymphoma 12 98895 -NCIT:C148395 BN2 Diffuse Large B-Cell Lymphoma 12 98896 -NCIT:C148396 N1 Diffuse Large B-Cell Lymphoma 12 98897 -NCIT:C148398 EZB Diffuse Large B-Cell Lymphoma 12 98898 -NCIT:C187445 ST2 Diffuse Large B-Cell Lymphoma 12 98899 -NCIT:C187447 A53 Diffuse Large B-Cell Lymphoma 12 98900 -NCIT:C165240 Recurrent Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 98901 -NCIT:C160230 Recurrent Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 12 98902 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 12 98903 -NCIT:C182035 Recurrent Immunoblastic Lymphoma 12 98904 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 13 98905 -NCIT:C8926 Recurrent Centroblastic Lymphoma 12 98906 -NCIT:C165241 Refractory Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 98907 -NCIT:C160238 Refractory Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 12 98908 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 12 98909 -NCIT:C182034 Refractory Immunoblastic Lymphoma 12 98910 -NCIT:C8927 Refractory Centroblastic Lymphoma 12 98911 -NCIT:C3461 Immunoblastic Lymphoma 11 98912 -NCIT:C182034 Refractory Immunoblastic Lymphoma 12 98913 -NCIT:C182035 Recurrent Immunoblastic Lymphoma 12 98914 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 13 98915 -NCIT:C7249 Immunoblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 12 98916 -NCIT:C7263 Thyroid Gland Immunoblastic Lymphoma 12 98917 -NCIT:C7873 Adult Immunoblastic Lymphoma 12 98918 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 13 98919 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 13 98920 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 14 98921 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 14 98922 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 13 98923 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 13 98924 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 13 98925 -NCIT:C8285 AIDS-Related Immunoblastic Lymphoma 12 98926 -NCIT:C9079 Childhood Immunoblastic Lymphoma 12 98927 -NCIT:C4074 Centroblastic Lymphoma 11 98928 -NCIT:C141263 Centroblastic Lymphoma by Ann Arbor Stage 12 98929 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 13 98930 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 13 98931 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 13 98932 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 13 98933 -NCIT:C7248 Centroblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 12 98934 -NCIT:C8926 Recurrent Centroblastic Lymphoma 12 98935 -NCIT:C8927 Refractory Centroblastic Lymphoma 12 98936 -NCIT:C45219 Diffuse Large B-Cell Lymphoma, Not Otherwise Specified by Gene Expression Profile 11 98937 -NCIT:C36080 Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 12 98938 -NCIT:C160230 Recurrent Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 13 98939 -NCIT:C160238 Refractory Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 13 98940 -NCIT:C36081 Diffuse Large B-Cell Lymphoma Activated B-Cell Type 12 98941 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 13 98942 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 13 98943 -NCIT:C45231 Diffuse Large B-Cell Lymphoma Unclassifiable 12 98944 -NCIT:C6916 Anaplastic Lymphoma 11 98945 -NCIT:C7247 Anaplastic Lymphoma Post-Transplant Lymphoproliferative Disorder 12 98946 -NCIT:C80281 EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 98947 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 98948 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 98949 -NCIT:C188456 Childhood EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 98950 -NCIT:C188457 Adult EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 98951 -NCIT:C80289 Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 10 98952 -NCIT:C183140 Recurrent Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 11 98953 -NCIT:C183142 Refractory Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 11 98954 -NCIT:C45691 Pyothorax-Associated Lymphoma 11 98955 -NCIT:C8852 Recurrent Diffuse Large B-Cell Lymphoma 10 98956 -NCIT:C138015 Recurrent Extranodal Diffuse Large B-cell Lymphoma 11 98957 -NCIT:C138025 Recurrent Intravascular Large B-Cell Lymphoma 11 98958 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 98959 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 98960 -NCIT:C156696 Recurrent T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 11 98961 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 11 98962 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 12 98963 -NCIT:C157679 Recurrent Primary Effusion Lymphoma 11 98964 -NCIT:C157683 Recurrent Plasmablastic Lymphoma 11 98965 -NCIT:C160229 Recurrent High Grade B-Cell Lymphoma 11 98966 -NCIT:C151980 Recurrent High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 12 98967 -NCIT:C162451 Recurrent High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 12 98968 -NCIT:C188788 Recurrent High Grade B-Cell Lymphoma, Not Otherwise Specified 12 98969 -NCIT:C165240 Recurrent Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 98970 -NCIT:C160230 Recurrent Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 12 98971 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 12 98972 -NCIT:C182035 Recurrent Immunoblastic Lymphoma 12 98973 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 13 98974 -NCIT:C8926 Recurrent Centroblastic Lymphoma 12 98975 -NCIT:C183140 Recurrent Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 11 98976 -NCIT:C188790 Recurrent ALK-Positive Large B-Cell Lymphoma 11 98977 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 11 98978 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 12 98979 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 12 98980 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 98981 -NCIT:C8853 Refractory Diffuse Large B-Cell Lymphoma 10 98982 -NCIT:C138018 Refractory Extranodal Diffuse Large B-cell Lymphoma 11 98983 -NCIT:C138026 Refractory Intravascular Large B-Cell Lymphoma 11 98984 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 98985 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 98986 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 11 98987 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 12 98988 -NCIT:C157678 Refractory T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 11 98989 -NCIT:C157680 Refractory Primary Effusion Lymphoma 11 98990 -NCIT:C157684 Refractory Plasmablastic Lymphoma 11 98991 -NCIT:C160233 Refractory High Grade B-Cell Lymphoma 11 98992 -NCIT:C151979 Refractory High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 12 98993 -NCIT:C162453 Refractory High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 12 98994 -NCIT:C188789 Refractory High Grade B-Cell Lymphoma, Not Otherwise Specified 12 98995 -NCIT:C165241 Refractory Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 98996 -NCIT:C160238 Refractory Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 12 98997 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 12 98998 -NCIT:C182034 Refractory Immunoblastic Lymphoma 12 98999 -NCIT:C8927 Refractory Centroblastic Lymphoma 12 99000 -NCIT:C183142 Refractory Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 11 99001 -NCIT:C188791 Refractory ALK-Positive Large B-Cell Lymphoma 11 99002 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 99003 -NCIT:C9280 Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 99004 -NCIT:C141262 Primary Mediastinal (Thymic) Large B-Cell Lymphoma by Ann Arbor Stage 11 99005 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 12 99006 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 12 99007 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 12 99008 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 12 99009 -NCIT:C188455 Childhood Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 99010 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 99011 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 99012 -NCIT:C9496 T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 10 99013 -NCIT:C156696 Recurrent T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 11 99014 -NCIT:C157678 Refractory T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 11 99015 -NCIT:C45215 Primary Cutaneous T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 11 99016 -NCIT:C8841 Recurrent B-Cell Non-Hodgkin Lymphoma 8 99017 -NCIT:C165799 Recurrent Mature B-Cell Non-Hodgkin Lymphoma 9 99018 -NCIT:C158149 Recurrent Transformed B-Cell Non-Hodgkin Lymphoma 10 99019 -NCIT:C160232 Recurrent Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 11 99020 -NCIT:C186483 Recurrent Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 11 99021 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 12 99022 -NCIT:C5007 Recurrent Follicular Lymphoma 10 99023 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 11 99024 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 11 99025 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 11 99026 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 12 99027 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 12 99028 -NCIT:C5008 Recurrent Burkitt Lymphoma 10 99029 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 11 99030 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 11 99031 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 10 99032 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 11 99033 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 99034 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 11 99035 -NCIT:C8154 Recurrent Small Lymphocytic Lymphoma 10 99036 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 10 99037 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 10 99038 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 11 99039 -NCIT:C8852 Recurrent Diffuse Large B-Cell Lymphoma 10 99040 -NCIT:C138015 Recurrent Extranodal Diffuse Large B-cell Lymphoma 11 99041 -NCIT:C138025 Recurrent Intravascular Large B-Cell Lymphoma 11 99042 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 99043 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 99044 -NCIT:C156696 Recurrent T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 11 99045 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 11 99046 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 12 99047 -NCIT:C157679 Recurrent Primary Effusion Lymphoma 11 99048 -NCIT:C157683 Recurrent Plasmablastic Lymphoma 11 99049 -NCIT:C160229 Recurrent High Grade B-Cell Lymphoma 11 99050 -NCIT:C151980 Recurrent High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 12 99051 -NCIT:C162451 Recurrent High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 12 99052 -NCIT:C188788 Recurrent High Grade B-Cell Lymphoma, Not Otherwise Specified 12 99053 -NCIT:C165240 Recurrent Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 99054 -NCIT:C160230 Recurrent Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 12 99055 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 12 99056 -NCIT:C182035 Recurrent Immunoblastic Lymphoma 12 99057 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 13 99058 -NCIT:C8926 Recurrent Centroblastic Lymphoma 12 99059 -NCIT:C183140 Recurrent Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 11 99060 -NCIT:C188790 Recurrent ALK-Positive Large B-Cell Lymphoma 11 99061 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 11 99062 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 12 99063 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 12 99064 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 99065 -NCIT:C178553 Recurrent Aggressive B-Cell Non-Hodgkin Lymphoma 9 99066 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 99067 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 99068 -NCIT:C5008 Recurrent Burkitt Lymphoma 10 99069 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 11 99070 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 11 99071 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 10 99072 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 11 99073 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 11 99074 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 10 99075 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 11 99076 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 11 99077 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 10 99078 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 10 99079 -NCIT:C183512 Recurrent Indolent B-Cell Non-Hodgkin Lymphoma 9 99080 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 10 99081 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 11 99082 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 99083 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 11 99084 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 10 99085 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 10 99086 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 10 99087 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 11 99088 -NCIT:C8842 Refractory B-Cell Non-Hodgkin Lymphoma 8 99089 -NCIT:C178555 Refractory Aggressive B-Cell Non-Hodgkin Lymphoma 9 99090 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 99091 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 99092 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 10 99093 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 11 99094 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 11 99095 -NCIT:C8847 Refractory Burkitt Lymphoma 10 99096 -NCIT:C8862 Refractory Mantle Cell Lymphoma 10 99097 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 10 99098 -NCIT:C183514 Refractory Indolent B-Cell Non-Hodgkin Lymphoma 9 99099 -NCIT:C143085 Refractory Marginal Zone Lymphoma 10 99100 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 11 99101 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 99102 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 11 99103 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 10 99104 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 10 99105 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 10 99106 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 11 99107 -NCIT:C7228 Refractory Mature B-Cell Non-Hodgkin Lymphoma 9 99108 -NCIT:C143085 Refractory Marginal Zone Lymphoma 10 99109 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 11 99110 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 99111 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 11 99112 -NCIT:C158150 Refractory Transformed B-Cell Non-Hodgkin Lymphoma 10 99113 -NCIT:C160240 Refractory Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 11 99114 -NCIT:C186484 Refractory Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 11 99115 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 12 99116 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 10 99117 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 11 99118 -NCIT:C8846 Refractory Small Lymphocytic Lymphoma 10 99119 -NCIT:C8847 Refractory Burkitt Lymphoma 10 99120 -NCIT:C8853 Refractory Diffuse Large B-Cell Lymphoma 10 99121 -NCIT:C138018 Refractory Extranodal Diffuse Large B-cell Lymphoma 11 99122 -NCIT:C138026 Refractory Intravascular Large B-Cell Lymphoma 11 99123 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 99124 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 99125 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 11 99126 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 12 99127 -NCIT:C157678 Refractory T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 11 99128 -NCIT:C157680 Refractory Primary Effusion Lymphoma 11 99129 -NCIT:C157684 Refractory Plasmablastic Lymphoma 11 99130 -NCIT:C160233 Refractory High Grade B-Cell Lymphoma 11 99131 -NCIT:C151979 Refractory High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 12 99132 -NCIT:C162453 Refractory High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 12 99133 -NCIT:C188789 Refractory High Grade B-Cell Lymphoma, Not Otherwise Specified 12 99134 -NCIT:C165241 Refractory Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 99135 -NCIT:C160238 Refractory Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 12 99136 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 12 99137 -NCIT:C182034 Refractory Immunoblastic Lymphoma 12 99138 -NCIT:C8927 Refractory Centroblastic Lymphoma 12 99139 -NCIT:C183142 Refractory Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 11 99140 -NCIT:C188791 Refractory ALK-Positive Large B-Cell Lymphoma 11 99141 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 99142 -NCIT:C8858 Refractory Follicular Lymphoma 10 99143 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 11 99144 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 11 99145 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 11 99146 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 12 99147 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 12 99148 -NCIT:C8862 Refractory Mantle Cell Lymphoma 10 99149 -NCIT:C96053 Small Intestinal B-Cell Non-Hodgkin Lymphoma 8 99150 -NCIT:C27409 Small Intestinal Burkitt Lymphoma 9 99151 -NCIT:C27410 Small Intestinal Atypical Burkitt/Burkitt-Like Lymphoma 10 99152 -NCIT:C27441 Small Intestinal Mantle Cell Lymphoma 9 99153 -NCIT:C3132 Alpha Heavy Chain Disease 9 99154 -NCIT:C5635 Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 9 99155 -NCIT:C45166 Campylobacter Jejuni-Associated Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 10 99156 -NCIT:C96055 Small Intestinal Diffuse Large B-Cell Lymphoma 9 99157 -NCIT:C96057 Small Intestinal High Grade B-Cell Lymphoma, Not Otherwise Specified 10 99158 -NCIT:C96056 Small Intestinal Follicular Lymphoma 9 99159 -NCIT:C3466 T-Cell Non-Hodgkin Lymphoma 7 99160 -NCIT:C141247 T-Cell Non-Hodgkin Lymphoma by Ann Arbor Stage 8 99161 -NCIT:C141272 Mature T- and NK-Cell Lymphoma by Ann Arbor Stage 9 99162 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 10 99163 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 11 99164 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 11 99165 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 11 99166 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 11 99167 -NCIT:C141284 Noncutaneous Anaplastic Large Cell Lymphoma by Ann Arbor Stage 10 99168 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 11 99169 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 99170 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 99171 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 99172 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 99173 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 11 99174 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 99175 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 11 99176 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 99177 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 11 99178 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 99179 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 11 99180 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 99181 -NCIT:C141294 Angioimmunoblastic T-Cell Lymphoma by Ann Arbor Stage 10 99182 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 11 99183 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 11 99184 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 11 99185 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 11 99186 -NCIT:C141295 Enteropathy-Associated T-Cell Lymphoma by Ann Arbor Stage 10 99187 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 11 99188 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 11 99189 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 11 99190 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 11 99191 -NCIT:C141296 Nasal Type NK/T-Cell Lymphoma by Ann Arbor Stage 10 99192 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 11 99193 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 11 99194 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 11 99195 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 11 99196 -NCIT:C8690 Ann Arbor Stage I Mature T- and NK-Cell Lymphoma 10 99197 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 11 99198 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 11 99199 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 99200 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 11 99201 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 11 99202 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 11 99203 -NCIT:C8691 Ann Arbor Stage II Mature T- and NK-Cell Lymphoma 10 99204 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 11 99205 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 11 99206 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 99207 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 11 99208 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 11 99209 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 11 99210 -NCIT:C8692 Ann Arbor Stage III Mature T- and NK-Cell Lymphoma 10 99211 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 11 99212 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 11 99213 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 99214 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 11 99215 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 11 99216 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 11 99217 -NCIT:C8693 Ann Arbor Stage IV Mature T- and NK-Cell Lymphoma 10 99218 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 11 99219 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 11 99220 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 99221 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 11 99222 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 11 99223 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 11 99224 -NCIT:C8665 Ann Arbor Stage I T-Cell Non-Hodgkin Lymphoma 9 99225 -NCIT:C8690 Ann Arbor Stage I Mature T- and NK-Cell Lymphoma 10 99226 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 11 99227 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 11 99228 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 99229 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 11 99230 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 11 99231 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 11 99232 -NCIT:C8666 Ann Arbor Stage II T-Cell Non-Hodgkin Lymphoma 9 99233 -NCIT:C8691 Ann Arbor Stage II Mature T- and NK-Cell Lymphoma 10 99234 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 11 99235 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 11 99236 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 99237 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 11 99238 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 11 99239 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 11 99240 -NCIT:C8667 Ann Arbor Stage III T-Cell Non-Hodgkin Lymphoma 9 99241 -NCIT:C8692 Ann Arbor Stage III Mature T- and NK-Cell Lymphoma 10 99242 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 11 99243 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 11 99244 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 99245 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 11 99246 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 11 99247 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 11 99248 -NCIT:C8668 Ann Arbor Stage IV T-Cell Non-Hodgkin Lymphoma 9 99249 -NCIT:C8693 Ann Arbor Stage IV Mature T- and NK-Cell Lymphoma 10 99250 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 11 99251 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 11 99252 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 99253 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 11 99254 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 11 99255 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 11 99256 -NCIT:C178547 Aggressive T-Cell Non-Hodgkin Lymphoma 8 99257 -NCIT:C150495 Intestinal T-Cell Lymphoma 9 99258 -NCIT:C150505 Intestinal T-Cell Lymphoma, Not Otherwise Specified 10 99259 -NCIT:C4737 Enteropathy-Associated T-Cell Lymphoma 10 99260 -NCIT:C141295 Enteropathy-Associated T-Cell Lymphoma by Ann Arbor Stage 11 99261 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 12 99262 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 12 99263 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 12 99264 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 12 99265 -NCIT:C39610 Small Intestinal Enteropathy-Associated T-Cell Lymphoma 11 99266 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 11 99267 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 11 99268 -NCIT:C96058 Monomorphic Epitheliotropic Intestinal T-Cell Lymphoma 10 99269 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 11 99270 -NCIT:C150504 Small Intestinal Monomorphic Epitheliotropic T-Cell Lymphoma 11 99271 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 11 99272 -NCIT:C178554 Recurrent Aggressive T-Cell Non-Hodgkin Lymphoma 9 99273 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 99274 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 10 99275 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 99276 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 99277 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 10 99278 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 99279 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 99280 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 10 99281 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 10 99282 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 10 99283 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 10 99284 -NCIT:C178556 Refractory Aggressive T-Cell Non-Hodgkin Lymphoma 9 99285 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 10 99286 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 99287 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 99288 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 99289 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 99290 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 10 99291 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 10 99292 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 10 99293 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 10 99294 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 10 99295 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 99296 -NCIT:C3184 Adult T-Cell Leukemia/Lymphoma 9 99297 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 10 99298 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 11 99299 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 11 99300 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 11 99301 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 11 99302 -NCIT:C36265 Acute Adult T-Cell Leukemia/Lymphoma 10 99303 -NCIT:C36266 Lymphomatous Adult T-Cell Leukemia/Lymphoma 10 99304 -NCIT:C36268 Hodgkin-Like Adult T-Cell Leukemia/Lymphoma 10 99305 -NCIT:C45272 Cutaneous Adult T-Cell Leukemia/Lymphoma 10 99306 -NCIT:C7178 Smoldering Adult T-Cell Leukemia/Lymphoma 10 99307 -NCIT:C7179 Chronic Adult T-Cell Leukemia/Lymphoma 10 99308 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 10 99309 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 10 99310 -NCIT:C37194 Anaplastic Large Cell Lymphoma, ALK-Negative 9 99311 -NCIT:C129599 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Negative 10 99312 -NCIT:C139012 Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 99313 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 11 99314 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 11 99315 -NCIT:C37196 Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Negative 10 99316 -NCIT:C4340 Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 99317 -NCIT:C139288 Primary EBV-Positive Nodal T-Cell or NK-Cell Lymphoma 10 99318 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 99319 -NCIT:C188459 Childhood Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 99320 -NCIT:C7205 Lymphoepithelioid Variant Peripheral T-Cell Lymphoma 10 99321 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 99322 -NCIT:C45339 Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 99323 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 99324 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 99325 -NCIT:C45340 Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 99326 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 99327 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 99328 -NCIT:C4684 Nasal Type Extranodal NK/T-Cell Lymphoma 9 99329 -NCIT:C115154 Adult Nasal Type Extranodal NK/T-Cell Lymphoma 10 99330 -NCIT:C141296 Nasal Type NK/T-Cell Lymphoma by Ann Arbor Stage 10 99331 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 11 99332 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 11 99333 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 11 99334 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 11 99335 -NCIT:C162468 Testicular Nasal Type Extranodal NK/T-Cell Lymphoma 10 99336 -NCIT:C173172 Sinonasal Extranodal NK/T-Cell Lymphoma 10 99337 -NCIT:C173173 Nasal Cavity Extranodal NK/T-Cell Lymphoma 11 99338 -NCIT:C45268 Cutaneous Nasal Type Extranodal NK/T-Cell Lymphoma 10 99339 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 10 99340 -NCIT:C68692 Childhood Nasal Type Extranodal NK/T-Cell Lymphoma 10 99341 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 10 99342 -NCIT:C6919 T Lymphoblastic Lymphoma 9 99343 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 10 99344 -NCIT:C45740 Mediastinal T Lymphoblastic Lymphoma 10 99345 -NCIT:C7210 Childhood T Lymphoblastic Lymphoma 10 99346 -NCIT:C7226 Adult T Lymphoblastic Lymphoma 10 99347 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 10 99348 -NCIT:C7311 Splenic T Lymphoblastic Lymphoma 10 99349 -NCIT:C7528 Angioimmunoblastic T-Cell Lymphoma 9 99350 -NCIT:C141294 Angioimmunoblastic T-Cell Lymphoma by Ann Arbor Stage 10 99351 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 11 99352 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 11 99353 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 11 99354 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 11 99355 -NCIT:C45271 Cutaneous Angioimmunoblastic T-Cell Lymphoma 10 99356 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 10 99357 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 10 99358 -NCIT:C8459 Hepatosplenic T-Cell Lymphoma 9 99359 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 10 99360 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 10 99361 -NCIT:C3468 Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 8 99362 -NCIT:C128696 Peripheral T-Cell Lymphoma, Unclassifiable 9 99363 -NCIT:C128697 NK-Cell Lymphoma, Unclassifiable 9 99364 -NCIT:C157689 Recurrent NK-Cell Lymphoma, Unclassifiable 10 99365 -NCIT:C157690 Refractory NK-Cell Lymphoma, Unclassifiable 10 99366 -NCIT:C129600 Central Nervous System Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 9 99367 -NCIT:C5322 Central Nervous System Anaplastic Large Cell Lymphoma 10 99368 -NCIT:C129598 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Positive 11 99369 -NCIT:C129599 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Negative 11 99370 -NCIT:C139005 Nodal Peripheral T-Cell Lymphoma of T Follicular Helper Cell Origin 9 99371 -NCIT:C139011 Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 10 99372 -NCIT:C168778 Recurrent Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 11 99373 -NCIT:C168779 Refractory Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 11 99374 -NCIT:C7528 Angioimmunoblastic T-Cell Lymphoma 10 99375 -NCIT:C141294 Angioimmunoblastic T-Cell Lymphoma by Ann Arbor Stage 11 99376 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 12 99377 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 12 99378 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 12 99379 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 12 99380 -NCIT:C45271 Cutaneous Angioimmunoblastic T-Cell Lymphoma 11 99381 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 11 99382 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 11 99383 -NCIT:C80375 Follicular T-Cell Lymphoma 10 99384 -NCIT:C168780 Recurrent Follicular T-Cell Lymphoma 11 99385 -NCIT:C168781 Refractory Follicular T-Cell Lymphoma 11 99386 -NCIT:C141272 Mature T- and NK-Cell Lymphoma by Ann Arbor Stage 9 99387 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 10 99388 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 11 99389 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 11 99390 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 11 99391 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 11 99392 -NCIT:C141284 Noncutaneous Anaplastic Large Cell Lymphoma by Ann Arbor Stage 10 99393 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 11 99394 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 99395 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 99396 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 99397 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 99398 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 11 99399 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 99400 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 11 99401 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 99402 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 11 99403 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 99404 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 11 99405 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 99406 -NCIT:C141294 Angioimmunoblastic T-Cell Lymphoma by Ann Arbor Stage 10 99407 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 11 99408 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 11 99409 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 11 99410 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 11 99411 -NCIT:C141295 Enteropathy-Associated T-Cell Lymphoma by Ann Arbor Stage 10 99412 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 11 99413 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 11 99414 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 11 99415 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 11 99416 -NCIT:C141296 Nasal Type NK/T-Cell Lymphoma by Ann Arbor Stage 10 99417 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 11 99418 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 11 99419 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 11 99420 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 11 99421 -NCIT:C8690 Ann Arbor Stage I Mature T- and NK-Cell Lymphoma 10 99422 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 11 99423 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 11 99424 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 99425 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 11 99426 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 11 99427 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 11 99428 -NCIT:C8691 Ann Arbor Stage II Mature T- and NK-Cell Lymphoma 10 99429 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 11 99430 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 11 99431 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 99432 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 11 99433 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 11 99434 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 11 99435 -NCIT:C8692 Ann Arbor Stage III Mature T- and NK-Cell Lymphoma 10 99436 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 11 99437 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 11 99438 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 99439 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 11 99440 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 11 99441 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 11 99442 -NCIT:C8693 Ann Arbor Stage IV Mature T- and NK-Cell Lymphoma 10 99443 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 11 99444 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 11 99445 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 99446 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 11 99447 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 11 99448 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 11 99449 -NCIT:C150495 Intestinal T-Cell Lymphoma 9 99450 -NCIT:C150505 Intestinal T-Cell Lymphoma, Not Otherwise Specified 10 99451 -NCIT:C4737 Enteropathy-Associated T-Cell Lymphoma 10 99452 -NCIT:C141295 Enteropathy-Associated T-Cell Lymphoma by Ann Arbor Stage 11 99453 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 12 99454 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 12 99455 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 12 99456 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 12 99457 -NCIT:C39610 Small Intestinal Enteropathy-Associated T-Cell Lymphoma 11 99458 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 11 99459 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 11 99460 -NCIT:C96058 Monomorphic Epitheliotropic Intestinal T-Cell Lymphoma 10 99461 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 11 99462 -NCIT:C150504 Small Intestinal Monomorphic Epitheliotropic T-Cell Lymphoma 11 99463 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 11 99464 -NCIT:C171300 Indolent T-Cell Non-Hodgkin Lymphoma 9 99465 -NCIT:C3246 Mycosis Fungoides 10 99466 -NCIT:C141143 Mycosis Fungoides by AJCC v7 Stage 11 99467 -NCIT:C7796 Stage I Mycosis Fungoides AJCC v7 12 99468 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 13 99469 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 13 99470 -NCIT:C7798 Stage II Mycosis Fungoides AJCC v7 12 99471 -NCIT:C7800 Stage III Mycosis Fungoides AJCC v7 12 99472 -NCIT:C7802 Stage IV Mycosis Fungoides AJCC v7 12 99473 -NCIT:C165783 Transformed Mycosis Fungoides 11 99474 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 12 99475 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 12 99476 -NCIT:C8686 Recurrent Mycosis Fungoides 11 99477 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 12 99478 -NCIT:C8687 Refractory Mycosis Fungoides 11 99479 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 12 99480 -NCIT:C39644 Mycosis Fungoides Variant 10 99481 -NCIT:C35464 Granulomatous Slack Skin Disease 11 99482 -NCIT:C35685 Folliculotropic Mycosis Fungoides 11 99483 -NCIT:C35794 Pagetoid Reticulosis 11 99484 -NCIT:C6860 Primary Cutaneous Anaplastic Large Cell Lymphoma 10 99485 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 11 99486 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 11 99487 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 11 99488 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 11 99489 -NCIT:C6918 Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 99490 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 11 99491 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 11 99492 -NCIT:C3184 Adult T-Cell Leukemia/Lymphoma 9 99493 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 10 99494 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 11 99495 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 11 99496 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 11 99497 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 11 99498 -NCIT:C36265 Acute Adult T-Cell Leukemia/Lymphoma 10 99499 -NCIT:C36266 Lymphomatous Adult T-Cell Leukemia/Lymphoma 10 99500 -NCIT:C36268 Hodgkin-Like Adult T-Cell Leukemia/Lymphoma 10 99501 -NCIT:C45272 Cutaneous Adult T-Cell Leukemia/Lymphoma 10 99502 -NCIT:C7178 Smoldering Adult T-Cell Leukemia/Lymphoma 10 99503 -NCIT:C7179 Chronic Adult T-Cell Leukemia/Lymphoma 10 99504 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 10 99505 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 10 99506 -NCIT:C3467 Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 99507 -NCIT:C172442 Advanced Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 10 99508 -NCIT:C180374 Early Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 10 99509 -NCIT:C3246 Mycosis Fungoides 10 99510 -NCIT:C141143 Mycosis Fungoides by AJCC v7 Stage 11 99511 -NCIT:C7796 Stage I Mycosis Fungoides AJCC v7 12 99512 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 13 99513 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 13 99514 -NCIT:C7798 Stage II Mycosis Fungoides AJCC v7 12 99515 -NCIT:C7800 Stage III Mycosis Fungoides AJCC v7 12 99516 -NCIT:C7802 Stage IV Mycosis Fungoides AJCC v7 12 99517 -NCIT:C165783 Transformed Mycosis Fungoides 11 99518 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 12 99519 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 12 99520 -NCIT:C8686 Recurrent Mycosis Fungoides 11 99521 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 12 99522 -NCIT:C8687 Refractory Mycosis Fungoides 11 99523 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 12 99524 -NCIT:C39644 Mycosis Fungoides Variant 10 99525 -NCIT:C35464 Granulomatous Slack Skin Disease 11 99526 -NCIT:C35685 Folliculotropic Mycosis Fungoides 11 99527 -NCIT:C35794 Pagetoid Reticulosis 11 99528 -NCIT:C45332 Primary Cutaneous Peripheral T-Cell Lymphoma, Rare Subtype 10 99529 -NCIT:C139023 Primary Cutaneous Acral CD8-Positive T-Cell Lymphoma 11 99530 -NCIT:C45339 Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 11 99531 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 12 99532 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 12 99533 -NCIT:C45340 Primary Cutaneous Gamma-Delta T-Cell Lymphoma 11 99534 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 12 99535 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 12 99536 -NCIT:C6860 Primary Cutaneous Anaplastic Large Cell Lymphoma 10 99537 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 11 99538 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 11 99539 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 11 99540 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 11 99541 -NCIT:C6918 Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 99542 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 11 99543 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 11 99544 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 10 99545 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 11 99546 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 11 99547 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 11 99548 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 11 99549 -NCIT:C8686 Recurrent Mycosis Fungoides 11 99550 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 12 99551 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 10 99552 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 11 99553 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 11 99554 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 11 99555 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 11 99556 -NCIT:C8687 Refractory Mycosis Fungoides 11 99557 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 12 99558 -NCIT:C3720 Anaplastic Large Cell Lymphoma 9 99559 -NCIT:C141284 Noncutaneous Anaplastic Large Cell Lymphoma by Ann Arbor Stage 10 99560 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 11 99561 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 99562 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 99563 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 99564 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 99565 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 11 99566 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 99567 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 11 99568 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 99569 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 11 99570 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 99571 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 11 99572 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 99573 -NCIT:C166179 Localized Anaplastic Large Cell Lymphoma 10 99574 -NCIT:C166180 Advanced Anaplastic Large Cell Lymphoma 10 99575 -NCIT:C188082 Lung Anaplastic Large Cell Lymphoma 10 99576 -NCIT:C27367 Adult Anaplastic Large Cell Lymphoma 10 99577 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 11 99578 -NCIT:C27366 Adult Systemic Anaplastic Large Cell Lymphoma 11 99579 -NCIT:C37193 Anaplastic Large Cell Lymphoma, ALK-Positive 10 99580 -NCIT:C129598 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Positive 11 99581 -NCIT:C188460 Childhood Anaplastic Large Cell Lymphoma, ALK-Positive 11 99582 -NCIT:C37195 Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 11 99583 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 12 99584 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 12 99585 -NCIT:C37194 Anaplastic Large Cell Lymphoma, ALK-Negative 10 99586 -NCIT:C129599 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Negative 11 99587 -NCIT:C139012 Breast Implant-Associated Anaplastic Large Cell Lymphoma 11 99588 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 12 99589 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 12 99590 -NCIT:C37196 Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Negative 11 99591 -NCIT:C39674 Anaplastic Large Cell Lymphoma, Giant Cell Rich Subtype 10 99592 -NCIT:C39675 Anaplastic Large Cell Lymphoma, Sarcomatoid Subtype 10 99593 -NCIT:C39676 Anaplastic Large Cell Lymphoma, Signet Ring-Like Subtype 10 99594 -NCIT:C5322 Central Nervous System Anaplastic Large Cell Lymphoma 10 99595 -NCIT:C129598 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Positive 11 99596 -NCIT:C129599 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Negative 11 99597 -NCIT:C5636 Childhood Anaplastic Large Cell Lymphoma 10 99598 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 11 99599 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 11 99600 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 99601 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 99602 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 99603 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 99604 -NCIT:C188460 Childhood Anaplastic Large Cell Lymphoma, ALK-Positive 11 99605 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 11 99606 -NCIT:C9471 Childhood Systemic Anaplastic Large Cell Lymphoma 11 99607 -NCIT:C6860 Primary Cutaneous Anaplastic Large Cell Lymphoma 10 99608 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 11 99609 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 11 99610 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 11 99611 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 11 99612 -NCIT:C7206 Common Variant Anaplastic Large Cell Lymphoma 10 99613 -NCIT:C7207 Lymphohistiocytic Variant Anaplastic Large Cell Lymphoma 10 99614 -NCIT:C7208 Small Cell Variant Anaplastic Large Cell Lymphoma 10 99615 -NCIT:C8658 Refractory Anaplastic Large Cell Lymphoma 10 99616 -NCIT:C162689 Refractory Systemic Anaplastic Large Cell Lymphoma 11 99617 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 12 99618 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 11 99619 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 11 99620 -NCIT:C9250 Recurrent Anaplastic Large Cell Lymphoma 10 99621 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 11 99622 -NCIT:C162688 Recurrent Systemic Anaplastic Large Cell Lymphoma 11 99623 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 12 99624 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 11 99625 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 11 99626 -NCIT:C9470 Systemic Anaplastic Large Cell Lymphoma 10 99627 -NCIT:C162688 Recurrent Systemic Anaplastic Large Cell Lymphoma 11 99628 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 12 99629 -NCIT:C162689 Refractory Systemic Anaplastic Large Cell Lymphoma 11 99630 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 12 99631 -NCIT:C27366 Adult Systemic Anaplastic Large Cell Lymphoma 11 99632 -NCIT:C37195 Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 11 99633 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 12 99634 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 12 99635 -NCIT:C37196 Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Negative 11 99636 -NCIT:C9471 Childhood Systemic Anaplastic Large Cell Lymphoma 11 99637 -NCIT:C4340 Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 99638 -NCIT:C139288 Primary EBV-Positive Nodal T-Cell or NK-Cell Lymphoma 10 99639 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 99640 -NCIT:C188459 Childhood Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 99641 -NCIT:C7205 Lymphoepithelioid Variant Peripheral T-Cell Lymphoma 10 99642 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 99643 -NCIT:C4684 Nasal Type Extranodal NK/T-Cell Lymphoma 9 99644 -NCIT:C115154 Adult Nasal Type Extranodal NK/T-Cell Lymphoma 10 99645 -NCIT:C141296 Nasal Type NK/T-Cell Lymphoma by Ann Arbor Stage 10 99646 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 11 99647 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 11 99648 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 11 99649 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 11 99650 -NCIT:C162468 Testicular Nasal Type Extranodal NK/T-Cell Lymphoma 10 99651 -NCIT:C173172 Sinonasal Extranodal NK/T-Cell Lymphoma 10 99652 -NCIT:C173173 Nasal Cavity Extranodal NK/T-Cell Lymphoma 11 99653 -NCIT:C45268 Cutaneous Nasal Type Extranodal NK/T-Cell Lymphoma 10 99654 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 10 99655 -NCIT:C68692 Childhood Nasal Type Extranodal NK/T-Cell Lymphoma 10 99656 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 10 99657 -NCIT:C5637 Childhood Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 9 99658 -NCIT:C188459 Childhood Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 99659 -NCIT:C5636 Childhood Anaplastic Large Cell Lymphoma 10 99660 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 11 99661 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 11 99662 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 99663 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 99664 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 99665 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 99666 -NCIT:C188460 Childhood Anaplastic Large Cell Lymphoma, ALK-Positive 11 99667 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 11 99668 -NCIT:C9471 Childhood Systemic Anaplastic Large Cell Lymphoma 11 99669 -NCIT:C68692 Childhood Nasal Type Extranodal NK/T-Cell Lymphoma 10 99670 -NCIT:C80374 Systemic EBV-Positive T-Cell Lymphoma of Childhood 10 99671 -NCIT:C7252 Methotrexate-Associated Peripheral T-Cell Lymphoma 9 99672 -NCIT:C8459 Hepatosplenic T-Cell Lymphoma 9 99673 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 10 99674 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 10 99675 -NCIT:C8688 Recurrent Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 9 99676 -NCIT:C115439 Recurrent Mycosis Fungoides and Sezary Syndrome 10 99677 -NCIT:C176999 Recurrent Sezary Syndrome 11 99678 -NCIT:C8686 Recurrent Mycosis Fungoides 11 99679 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 12 99680 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 99681 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 10 99682 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 99683 -NCIT:C157689 Recurrent NK-Cell Lymphoma, Unclassifiable 10 99684 -NCIT:C165789 Recurrent Transformed T-cell Non-Hodgkin Lymphoma 10 99685 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 99686 -NCIT:C168778 Recurrent Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 10 99687 -NCIT:C168780 Recurrent Follicular T-Cell Lymphoma 10 99688 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 10 99689 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 10 99690 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 11 99691 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 11 99692 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 11 99693 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 11 99694 -NCIT:C8686 Recurrent Mycosis Fungoides 11 99695 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 12 99696 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 10 99697 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 10 99698 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 10 99699 -NCIT:C9250 Recurrent Anaplastic Large Cell Lymphoma 10 99700 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 11 99701 -NCIT:C162688 Recurrent Systemic Anaplastic Large Cell Lymphoma 11 99702 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 12 99703 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 11 99704 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 11 99705 -NCIT:C8689 Refractory Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 9 99706 -NCIT:C148129 Refractory Mycosis Fungoides and Sezary Syndrome 10 99707 -NCIT:C177000 Refractory Sezary Syndrome 11 99708 -NCIT:C8687 Refractory Mycosis Fungoides 11 99709 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 12 99710 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 10 99711 -NCIT:C157690 Refractory NK-Cell Lymphoma, Unclassifiable 10 99712 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 99713 -NCIT:C165791 Refractory Transformed T-cell Non-Hodgkin Lymphoma 10 99714 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 99715 -NCIT:C168779 Refractory Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 10 99716 -NCIT:C168781 Refractory Follicular T-Cell Lymphoma 10 99717 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 10 99718 -NCIT:C8658 Refractory Anaplastic Large Cell Lymphoma 10 99719 -NCIT:C162689 Refractory Systemic Anaplastic Large Cell Lymphoma 11 99720 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 12 99721 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 11 99722 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 11 99723 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 10 99724 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 10 99725 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 10 99726 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 10 99727 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 11 99728 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 11 99729 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 11 99730 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 11 99731 -NCIT:C8687 Refractory Mycosis Fungoides 11 99732 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 12 99733 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 99734 -NCIT:C9265 Mycosis Fungoides and Sezary Syndrome 9 99735 -NCIT:C115439 Recurrent Mycosis Fungoides and Sezary Syndrome 10 99736 -NCIT:C176999 Recurrent Sezary Syndrome 11 99737 -NCIT:C8686 Recurrent Mycosis Fungoides 11 99738 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 12 99739 -NCIT:C141142 Mycosis Fungoides and Sezary Syndrome by AJCC v7 Stage 10 99740 -NCIT:C141143 Mycosis Fungoides by AJCC v7 Stage 11 99741 -NCIT:C7796 Stage I Mycosis Fungoides AJCC v7 12 99742 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 13 99743 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 13 99744 -NCIT:C7798 Stage II Mycosis Fungoides AJCC v7 12 99745 -NCIT:C7800 Stage III Mycosis Fungoides AJCC v7 12 99746 -NCIT:C7802 Stage IV Mycosis Fungoides AJCC v7 12 99747 -NCIT:C88150 Stage I Mycosis Fungoides and Sezary Syndrome AJCC v7 11 99748 -NCIT:C7796 Stage I Mycosis Fungoides AJCC v7 12 99749 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 13 99750 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 13 99751 -NCIT:C88151 Stage IA Mycosis Fungoides and Sezary Syndrome AJCC v7 12 99752 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 13 99753 -NCIT:C88152 Stage IB Mycosis Fungoides and Sezary Syndrome AJCC v7 12 99754 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 13 99755 -NCIT:C88153 Stage II Mycosis Fungoides and Sezary Syndrome AJCC v7 11 99756 -NCIT:C7798 Stage II Mycosis Fungoides AJCC v7 12 99757 -NCIT:C88154 Stage IIA Mycosis Fungoides and Sezary Syndrome AJCC v7 12 99758 -NCIT:C88155 Stage IIB Mycosis Fungoides and Sezary Syndrome AJCC v7 12 99759 -NCIT:C88157 Stage III Mycosis Fungoides and Sezary Syndrome AJCC v7 11 99760 -NCIT:C7800 Stage III Mycosis Fungoides AJCC v7 12 99761 -NCIT:C88158 Stage IIIA Mycosis Fungoides and Sezary Syndrome AJCC v7 12 99762 -NCIT:C88159 Stage IIIB Mycosis Fungoides and Sezary Syndrome AJCC v7 12 99763 -NCIT:C88160 Stage IV Mycosis Fungoides and Sezary Syndrome AJCC v7 11 99764 -NCIT:C7802 Stage IV Mycosis Fungoides AJCC v7 12 99765 -NCIT:C88161 Stage IVA Mycosis Fungoides and Sezary Syndrome AJCC v7 12 99766 -NCIT:C88162 Stage IVB Mycosis Fungoides and Sezary Syndrome AJCC v7 12 99767 -NCIT:C141346 Mycosis Fungoides and Sezary Syndrome by AJCC v8 Stage 10 99768 -NCIT:C141347 Stage I Mycosis Fungoides and Sezary Syndrome AJCC v8 11 99769 -NCIT:C141348 Stage IA Mycosis Fungoides and Sezary Syndrome AJCC v8 12 99770 -NCIT:C141349 Stage IB Mycosis Fungoides and Sezary Syndrome AJCC v8 12 99771 -NCIT:C141350 Stage II Mycosis Fungoides and Sezary Syndrome AJCC v8 11 99772 -NCIT:C141351 Stage IIA Mycosis Fungoides and Sezary Syndrome AJCC v8 12 99773 -NCIT:C141352 Stage IIB Mycosis Fungoides and Sezary Syndrome AJCC v8 12 99774 -NCIT:C141353 Stage III Mycosis Fungoides and Sezary Syndrome AJCC v8 11 99775 -NCIT:C141354 Stage IIIA Mycosis Fungoides and Sezary Syndrome AJCC v8 12 99776 -NCIT:C141355 Stage IIIB Mycosis Fungoides and Sezary Syndrome AJCC v8 12 99777 -NCIT:C141356 Stage IV Mycosis Fungoides and Sezary Syndrome AJCC v8 11 99778 -NCIT:C141357 Stage IVA1 Mycosis Fungoides and Sezary Syndrome AJCC v8 12 99779 -NCIT:C141358 Stage IVA2 Mycosis Fungoides and Sezary Syndrome AJCC v8 12 99780 -NCIT:C141359 Stage IVB Mycosis Fungoides and Sezary Syndrome AJCC v8 12 99781 -NCIT:C148129 Refractory Mycosis Fungoides and Sezary Syndrome 10 99782 -NCIT:C177000 Refractory Sezary Syndrome 11 99783 -NCIT:C8687 Refractory Mycosis Fungoides 11 99784 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 12 99785 -NCIT:C3246 Mycosis Fungoides 10 99786 -NCIT:C141143 Mycosis Fungoides by AJCC v7 Stage 11 99787 -NCIT:C7796 Stage I Mycosis Fungoides AJCC v7 12 99788 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 13 99789 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 13 99790 -NCIT:C7798 Stage II Mycosis Fungoides AJCC v7 12 99791 -NCIT:C7800 Stage III Mycosis Fungoides AJCC v7 12 99792 -NCIT:C7802 Stage IV Mycosis Fungoides AJCC v7 12 99793 -NCIT:C165783 Transformed Mycosis Fungoides 11 99794 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 12 99795 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 12 99796 -NCIT:C8686 Recurrent Mycosis Fungoides 11 99797 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 12 99798 -NCIT:C8687 Refractory Mycosis Fungoides 11 99799 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 12 99800 -NCIT:C3366 Sezary Syndrome 10 99801 -NCIT:C176999 Recurrent Sezary Syndrome 11 99802 -NCIT:C177000 Refractory Sezary Syndrome 11 99803 -NCIT:C39644 Mycosis Fungoides Variant 10 99804 -NCIT:C35464 Granulomatous Slack Skin Disease 11 99805 -NCIT:C35685 Folliculotropic Mycosis Fungoides 11 99806 -NCIT:C35794 Pagetoid Reticulosis 11 99807 -NCIT:C5182 Breast T-Cell Non-Hodgkin Lymphoma 8 99808 -NCIT:C139012 Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 99809 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 99810 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 99811 -NCIT:C5254 Gastric T-Cell Non-Hodgkin Lymphoma 8 99812 -NCIT:C5409 Central Nervous System T-Cell Non-Hodgkin Lymphoma 8 99813 -NCIT:C129600 Central Nervous System Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 9 99814 -NCIT:C5322 Central Nervous System Anaplastic Large Cell Lymphoma 10 99815 -NCIT:C129598 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Positive 11 99816 -NCIT:C129599 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Negative 11 99817 -NCIT:C8663 Recurrent T-Cell Non-Hodgkin Lymphoma 8 99818 -NCIT:C178554 Recurrent Aggressive T-Cell Non-Hodgkin Lymphoma 9 99819 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 99820 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 10 99821 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 99822 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 99823 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 10 99824 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 99825 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 99826 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 10 99827 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 10 99828 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 10 99829 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 10 99830 -NCIT:C183513 Recurrent Indolent T-Cell Non-Hodgkin Lymphoma 9 99831 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 99832 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 99833 -NCIT:C8686 Recurrent Mycosis Fungoides 10 99834 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 99835 -NCIT:C8688 Recurrent Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 9 99836 -NCIT:C115439 Recurrent Mycosis Fungoides and Sezary Syndrome 10 99837 -NCIT:C176999 Recurrent Sezary Syndrome 11 99838 -NCIT:C8686 Recurrent Mycosis Fungoides 11 99839 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 12 99840 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 99841 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 10 99842 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 99843 -NCIT:C157689 Recurrent NK-Cell Lymphoma, Unclassifiable 10 99844 -NCIT:C165789 Recurrent Transformed T-cell Non-Hodgkin Lymphoma 10 99845 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 99846 -NCIT:C168778 Recurrent Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 10 99847 -NCIT:C168780 Recurrent Follicular T-Cell Lymphoma 10 99848 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 10 99849 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 10 99850 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 11 99851 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 11 99852 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 11 99853 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 11 99854 -NCIT:C8686 Recurrent Mycosis Fungoides 11 99855 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 12 99856 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 10 99857 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 10 99858 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 10 99859 -NCIT:C9250 Recurrent Anaplastic Large Cell Lymphoma 10 99860 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 11 99861 -NCIT:C162688 Recurrent Systemic Anaplastic Large Cell Lymphoma 11 99862 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 12 99863 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 11 99864 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 11 99865 -NCIT:C8664 Refractory T-Cell Non-Hodgkin Lymphoma 8 99866 -NCIT:C178556 Refractory Aggressive T-Cell Non-Hodgkin Lymphoma 9 99867 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 10 99868 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 99869 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 99870 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 99871 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 99872 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 10 99873 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 10 99874 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 10 99875 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 10 99876 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 10 99877 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 99878 -NCIT:C183515 Refractory Indolent T-Cell Non-Hodgkin Lymphoma 9 99879 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 99880 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 99881 -NCIT:C8687 Refractory Mycosis Fungoides 10 99882 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 99883 -NCIT:C8689 Refractory Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 9 99884 -NCIT:C148129 Refractory Mycosis Fungoides and Sezary Syndrome 10 99885 -NCIT:C177000 Refractory Sezary Syndrome 11 99886 -NCIT:C8687 Refractory Mycosis Fungoides 11 99887 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 12 99888 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 10 99889 -NCIT:C157690 Refractory NK-Cell Lymphoma, Unclassifiable 10 99890 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 99891 -NCIT:C165791 Refractory Transformed T-cell Non-Hodgkin Lymphoma 10 99892 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 99893 -NCIT:C168779 Refractory Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 10 99894 -NCIT:C168781 Refractory Follicular T-Cell Lymphoma 10 99895 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 10 99896 -NCIT:C8658 Refractory Anaplastic Large Cell Lymphoma 10 99897 -NCIT:C162689 Refractory Systemic Anaplastic Large Cell Lymphoma 11 99898 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 12 99899 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 11 99900 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 11 99901 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 10 99902 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 10 99903 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 10 99904 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 10 99905 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 11 99906 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 11 99907 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 11 99908 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 11 99909 -NCIT:C8687 Refractory Mycosis Fungoides 11 99910 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 12 99911 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 99912 -NCIT:C96054 Small Intestinal T-Cell Non-Hodgkin Lymphoma 8 99913 -NCIT:C150504 Small Intestinal Monomorphic Epitheliotropic T-Cell Lymphoma 9 99914 -NCIT:C39610 Small Intestinal Enteropathy-Associated T-Cell Lymphoma 9 99915 -NCIT:C38161 Digestive System Non-Hodgkin Lymphoma 7 99916 -NCIT:C150495 Intestinal T-Cell Lymphoma 8 99917 -NCIT:C150505 Intestinal T-Cell Lymphoma, Not Otherwise Specified 9 99918 -NCIT:C4737 Enteropathy-Associated T-Cell Lymphoma 9 99919 -NCIT:C141295 Enteropathy-Associated T-Cell Lymphoma by Ann Arbor Stage 10 99920 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 11 99921 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 11 99922 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 11 99923 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 11 99924 -NCIT:C39610 Small Intestinal Enteropathy-Associated T-Cell Lymphoma 10 99925 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 10 99926 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 10 99927 -NCIT:C96058 Monomorphic Epitheliotropic Intestinal T-Cell Lymphoma 9 99928 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 99929 -NCIT:C150504 Small Intestinal Monomorphic Epitheliotropic T-Cell Lymphoma 10 99930 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 99931 -NCIT:C172844 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue Involving the Digestive System 8 99932 -NCIT:C5266 Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 9 99933 -NCIT:C27763 Helicobacter Pylori-Associated Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 10 99934 -NCIT:C5635 Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 9 99935 -NCIT:C45166 Campylobacter Jejuni-Associated Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 10 99936 -NCIT:C5768 Liver Mucosa-Associated Lymphoid Tissue Lymphoma 9 99937 -NCIT:C95626 Esophageal Mucosa-Associated Lymphoid Tissue Lymphoma 9 99938 -NCIT:C96506 Colorectal Mucosa-Associated Lymphoid Tissue Lymphoma 9 99939 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 10 99940 -NCIT:C172850 Digestive System Diffuse Large B-Cell Lymphoma 8 99941 -NCIT:C5253 Gastric Diffuse Large B-Cell Lymphoma 9 99942 -NCIT:C95625 Esophageal Diffuse Large B-Cell Lymphoma 9 99943 -NCIT:C96055 Small Intestinal Diffuse Large B-Cell Lymphoma 9 99944 -NCIT:C96057 Small Intestinal High Grade B-Cell Lymphoma, Not Otherwise Specified 10 99945 -NCIT:C96503 Colorectal Diffuse Large B-Cell Lymphoma 9 99946 -NCIT:C96501 Colorectal High Grade B-Cell Lymphoma, Not Otherwise Specified 10 99947 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 10 99948 -NCIT:C96843 Liver Diffuse Large B-Cell Lymphoma 9 99949 -NCIT:C27235 Gastric Non-Hodgkin Lymphoma 8 99950 -NCIT:C5251 Gastric Burkitt Lymphoma 9 99951 -NCIT:C5253 Gastric Diffuse Large B-Cell Lymphoma 9 99952 -NCIT:C5254 Gastric T-Cell Non-Hodgkin Lymphoma 9 99953 -NCIT:C5266 Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 9 99954 -NCIT:C27763 Helicobacter Pylori-Associated Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 10 99955 -NCIT:C4339 Multifocal Lymphomatous Polyposis 8 99956 -NCIT:C5688 Esophageal Non-Hodgkin Lymphoma 8 99957 -NCIT:C95625 Esophageal Diffuse Large B-Cell Lymphoma 9 99958 -NCIT:C95626 Esophageal Mucosa-Associated Lymphoid Tissue Lymphoma 9 99959 -NCIT:C5766 Liver Non-Hodgkin Lymphoma 8 99960 -NCIT:C5768 Liver Mucosa-Associated Lymphoid Tissue Lymphoma 9 99961 -NCIT:C8459 Hepatosplenic T-Cell Lymphoma 9 99962 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 10 99963 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 10 99964 -NCIT:C96843 Liver Diffuse Large B-Cell Lymphoma 9 99965 -NCIT:C5789 Pancreatic Non-Hodgkin Lymphoma 8 99966 -NCIT:C7231 Small Intestinal Non-Hodgkin Lymphoma 8 99967 -NCIT:C96053 Small Intestinal B-Cell Non-Hodgkin Lymphoma 9 99968 -NCIT:C27409 Small Intestinal Burkitt Lymphoma 10 99969 -NCIT:C27410 Small Intestinal Atypical Burkitt/Burkitt-Like Lymphoma 11 99970 -NCIT:C27441 Small Intestinal Mantle Cell Lymphoma 10 99971 -NCIT:C3132 Alpha Heavy Chain Disease 10 99972 -NCIT:C5635 Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 10 99973 -NCIT:C45166 Campylobacter Jejuni-Associated Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 11 99974 -NCIT:C96055 Small Intestinal Diffuse Large B-Cell Lymphoma 10 99975 -NCIT:C96057 Small Intestinal High Grade B-Cell Lymphoma, Not Otherwise Specified 11 99976 -NCIT:C96056 Small Intestinal Follicular Lymphoma 10 99977 -NCIT:C96054 Small Intestinal T-Cell Non-Hodgkin Lymphoma 9 99978 -NCIT:C150504 Small Intestinal Monomorphic Epitheliotropic T-Cell Lymphoma 10 99979 -NCIT:C39610 Small Intestinal Enteropathy-Associated T-Cell Lymphoma 10 99980 -NCIT:C7465 AIDS-Related Anal Non-Hodgkin Lymphoma 8 99981 -NCIT:C80298 Intestinal Follicular Lymphoma 8 99982 -NCIT:C96056 Small Intestinal Follicular Lymphoma 9 99983 -NCIT:C96499 Colorectal Non-Hodgkin Lymphoma 8 99984 -NCIT:C4950 Colon Non-Hodgkin Lymphoma 9 99985 -NCIT:C27411 Colon Mantle Cell Lymphoma 10 99986 -NCIT:C27465 Colon Burkitt Lymphoma 10 99987 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 10 99988 -NCIT:C5521 Cecum Non-Hodgkin Lymphoma 10 99989 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 10 99990 -NCIT:C96502 Colorectal Burkitt Lymphoma 9 99991 -NCIT:C27465 Colon Burkitt Lymphoma 10 99992 -NCIT:C96503 Colorectal Diffuse Large B-Cell Lymphoma 9 99993 -NCIT:C96501 Colorectal High Grade B-Cell Lymphoma, Not Otherwise Specified 10 99994 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 10 99995 -NCIT:C96505 Colorectal Mantle Cell Lymphoma 9 99996 -NCIT:C27411 Colon Mantle Cell Lymphoma 10 99997 -NCIT:C96506 Colorectal Mucosa-Associated Lymphoid Tissue Lymphoma 9 99998 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 10 99999 -NCIT:C5051 AIDS-Related Non-Hodgkin Lymphoma 7 100000 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 100001 -NCIT:C7212 AIDS-Related Diffuse Large B-cell Lymphoma 8 100002 -NCIT:C27858 AIDS-Related Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 9 100003 -NCIT:C27859 AIDS-Related Plasmablastic Lymphoma 9 100004 -NCIT:C38160 AIDS-Related Plasmablastic Lymphoma of Mucosa Site 10 100005 -NCIT:C9016 AIDS-Related Plasmablastic Lymphoma of the Oral Mucosa 11 100006 -NCIT:C8285 AIDS-Related Immunoblastic Lymphoma 9 100007 -NCIT:C9017 AIDS-Related Primary Effusion Lymphoma 9 100008 -NCIT:C7434 AIDS-Related Non-Hodgkin Lymphoma of the Cervix 8 100009 -NCIT:C7465 AIDS-Related Anal Non-Hodgkin Lymphoma 8 100010 -NCIT:C8286 AIDS-Related Burkitt Lymphoma 8 100011 -NCIT:C27857 AIDS-Related Burkitt Lymphoma with Plasmacytoid Differentiation 9 100012 -NCIT:C8298 AIDS-Related Lymphoblastic Lymphoma 8 100013 -NCIT:C5181 Breast Non-Hodgkin Lymphoma 7 100014 -NCIT:C35688 Breast Mucosa-Associated Lymphoid Tissue Lymphoma 8 100015 -NCIT:C40375 Breast Diffuse Large B-Cell Lymphoma 8 100016 -NCIT:C40376 Breast Burkitt Lymphoma 8 100017 -NCIT:C40377 Breast Follicular Lymphoma 8 100018 -NCIT:C5182 Breast T-Cell Non-Hodgkin Lymphoma 8 100019 -NCIT:C139012 Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 100020 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 100021 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 100022 -NCIT:C5534 Prostate Non-Hodgkin Lymphoma 7 100023 -NCIT:C161602 Prostate Diffuse Large B-Cell Lymphoma 8 100024 -NCIT:C161603 Prostate Follicular Lymphoma 8 100025 -NCIT:C161604 Prostate Mantle Cell Lymphoma 8 100026 -NCIT:C161605 Prostate Small Lymphocytic Lymphoma 8 100027 -NCIT:C5684 Lung Non-Hodgkin Lymphoma 7 100028 -NCIT:C181211 Lung Follicular Lymphoma 8 100029 -NCIT:C188082 Lung Anaplastic Large Cell Lymphoma 8 100030 -NCIT:C45605 Lung Diffuse Large B-Cell Lymphoma 8 100031 -NCIT:C183121 Lung Intravascular Large B-Cell Lymphoma 9 100032 -NCIT:C5264 Lung Mucosa-Associated Lymphoid Tissue Lymphoma 8 100033 -NCIT:C6044 Thyroid Gland Non-Hodgkin Lymphoma 7 100034 -NCIT:C156410 Thyroid Gland Follicular Lymphoma 8 100035 -NCIT:C6046 Thyroid Gland Diffuse Large B-Cell Lymphoma 8 100036 -NCIT:C7263 Thyroid Gland Immunoblastic Lymphoma 9 100037 -NCIT:C7601 Thyroid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 8 100038 -NCIT:C7215 Non-Hodgkin Lymphoma by Clinical Course 7 100039 -NCIT:C68837 Favorable Non-Hodgkin Lymphoma 8 100040 -NCIT:C53280 Early Favorable Non-Hodgkin Lymphoma 9 100041 -NCIT:C53283 Advanced Favorable Non-Hodgkin Lymphoma 9 100042 -NCIT:C68838 Unfavorable Non-Hodgkin Lymphoma 8 100043 -NCIT:C53282 Early Unfavorable Non-Hodgkin Lymphoma 9 100044 -NCIT:C53284 Advanced Unfavorable Non-Hodgkin Lymphoma 9 100045 -NCIT:C7216 Non-Hodgkin Lymphoma with Variable Clinical Course 8 100046 -NCIT:C9280 Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 100047 -NCIT:C141262 Primary Mediastinal (Thymic) Large B-Cell Lymphoma by Ann Arbor Stage 10 100048 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 100049 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 100050 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 100051 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 100052 -NCIT:C188455 Childhood Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 100053 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 100054 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 100055 -NCIT:C8504 Indolent Non-Hodgkin Lymphoma 8 100056 -NCIT:C171299 Indolent B-Cell Non-Hodgkin Lymphoma 9 100057 -NCIT:C175451 Primary Uveal Non-Hodgkin Lymphoma 10 100058 -NCIT:C175464 Primary Choroidal Non-Hodgkin Lymphoma 11 100059 -NCIT:C175466 Primary Ciliary Body Non-Hodgkin Lymphoma 11 100060 -NCIT:C175467 Primary Iris Non-Hodgkin Lymphoma 11 100061 -NCIT:C3212 Lymphoplasmacytic Lymphoma 10 100062 -NCIT:C141256 Lymphoplasmacytic Lymphoma by Ann Arbor Stage 11 100063 -NCIT:C8653 Ann Arbor Stage I Lymphoplasmacytic Lymphoma 12 100064 -NCIT:C8654 Ann Arbor Stage II Lymphoplasmacytic Lymphoma 12 100065 -NCIT:C8655 Ann Arbor Stage III Lymphoplasmacytic Lymphoma 12 100066 -NCIT:C8656 Ann Arbor Stage IV Lymphoplasmacytic Lymphoma 12 100067 -NCIT:C7305 Splenic Lymphoplasmacytic Lymphoma 11 100068 -NCIT:C80307 Waldenstrom Macroglobulinemia 11 100069 -NCIT:C115212 Familial Waldenstrom Macroglobulinemia 12 100070 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 12 100071 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 12 100072 -NCIT:C155910 Smoldering Waldenstrom Macroglobulinemia 12 100073 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 11 100074 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 12 100075 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 11 100076 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 12 100077 -NCIT:C3465 Grade 1 Follicular Lymphoma 10 100078 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 11 100079 -NCIT:C7220 Grade 1 Cutaneous Follicular Lymphoma 11 100080 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 11 100081 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 11 100082 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 12 100083 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 12 100084 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 11 100085 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 11 100086 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 11 100087 -NCIT:C37203 Small Lymphocytic Lymphoma with Immunoglobulin Heavy Chain Variable-Region Gene Somatic Hypermutation 10 100088 -NCIT:C4341 Marginal Zone Lymphoma 10 100089 -NCIT:C141258 Marginal Zone Lymphoma by Ann Arbor Stage 11 100090 -NCIT:C141260 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue by Ann Arbor Stage 12 100091 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 13 100092 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 13 100093 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 13 100094 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 13 100095 -NCIT:C141261 Nodal Marginal Zone Lymphoma by Ann Arbor Stage 12 100096 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 13 100097 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 13 100098 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 13 100099 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 13 100100 -NCIT:C68678 Ann Arbor Stage I Marginal Zone Lymphoma 12 100101 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 13 100102 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 13 100103 -NCIT:C68679 Ann Arbor Stage II Marginal Zone Lymphoma 12 100104 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 13 100105 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 13 100106 -NCIT:C68682 Ann Arbor Stage III Marginal Zone Lymphoma 12 100107 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 13 100108 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 13 100109 -NCIT:C68683 Ann Arbor Stage IV Marginal Zone Lymphoma 12 100110 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 13 100111 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 13 100112 -NCIT:C143085 Refractory Marginal Zone Lymphoma 11 100113 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 12 100114 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 100115 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 12 100116 -NCIT:C172360 Advanced Marginal Zone Lymphoma 11 100117 -NCIT:C3898 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 100118 -NCIT:C123394 Childhood Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 100119 -NCIT:C141260 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue by Ann Arbor Stage 12 100120 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 13 100121 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 13 100122 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 13 100123 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 13 100124 -NCIT:C172844 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue Involving the Digestive System 12 100125 -NCIT:C5266 Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 13 100126 -NCIT:C27763 Helicobacter Pylori-Associated Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 14 100127 -NCIT:C5635 Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 13 100128 -NCIT:C45166 Campylobacter Jejuni-Associated Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 14 100129 -NCIT:C5768 Liver Mucosa-Associated Lymphoid Tissue Lymphoma 13 100130 -NCIT:C95626 Esophageal Mucosa-Associated Lymphoid Tissue Lymphoma 13 100131 -NCIT:C96506 Colorectal Mucosa-Associated Lymphoid Tissue Lymphoma 13 100132 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 14 100133 -NCIT:C173693 Salivary Gland Mucosa-Associated Lymphoid Tissue Lymphoma 12 100134 -NCIT:C35687 Parotid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 13 100135 -NCIT:C181910 Endometrial Mucosa-Associated Lymphoid Tissue Lymphoma 12 100136 -NCIT:C35688 Breast Mucosa-Associated Lymphoid Tissue Lymphoma 12 100137 -NCIT:C35689 Ocular Adnexal Mucosa-Associated Lymphoid Tissue Lymphoma 12 100138 -NCIT:C175431 Conjunctival Mucosa-Associated Lymphoid Tissue Lymphoma 13 100139 -NCIT:C175482 Lacrimal System Mucosa-Associated Lymphoid Tissue Lymphoma 13 100140 -NCIT:C175483 Lacrimal Gland Mucosa-Associated Lymphoid Tissue Lymphoma 14 100141 -NCIT:C175484 Lacrimal Drainage System Mucosa-Associated Lymphoid Tissue Lymphoma 14 100142 -NCIT:C182357 Diffusion Restriction 13 100143 -NCIT:C44960 Chlamydia Psittaci-Associated Ocular Adnexal Mucosa-Associated Lymphoid Tissue Lymphoma 13 100144 -NCIT:C39878 Bladder Mucosa-Associated Lymphoid Tissue Lymphoma 12 100145 -NCIT:C45380 Thymic Mucosa-Associated Lymphoid Tissue Lymphoma 12 100146 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 100147 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 100148 -NCIT:C5264 Lung Mucosa-Associated Lymphoid Tissue Lymphoma 12 100149 -NCIT:C7230 Primary Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 100150 -NCIT:C45163 Borrelia Burgdoferi-Associated Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 13 100151 -NCIT:C7601 Thyroid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 12 100152 -NCIT:C95991 Dural Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 100153 -NCIT:C4663 Splenic Marginal Zone Lymphoma 11 100154 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 12 100155 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 12 100156 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 11 100157 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 12 100158 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 100159 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 12 100160 -NCIT:C8863 Nodal Marginal Zone Lymphoma 11 100161 -NCIT:C141261 Nodal Marginal Zone Lymphoma by Ann Arbor Stage 12 100162 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 13 100163 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 13 100164 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 13 100165 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 13 100166 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 12 100167 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 12 100168 -NCIT:C80299 Pediatric Nodal Marginal Zone Lymphoma 12 100169 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 10 100170 -NCIT:C7264 Diffuse Follicular Lymphoma 10 100171 -NCIT:C7194 Grade 2 Diffuse Follicular Lymphoma 11 100172 -NCIT:C9464 Grade 1 Diffuse Follicular Lymphoma 11 100173 -NCIT:C8968 Grade 2 Follicular Lymphoma 10 100174 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 11 100175 -NCIT:C7219 Grade 2 Cutaneous Follicular Lymphoma 11 100176 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 11 100177 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 11 100178 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 12 100179 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 12 100180 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 11 100181 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 11 100182 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 11 100183 -NCIT:C171300 Indolent T-Cell Non-Hodgkin Lymphoma 9 100184 -NCIT:C3246 Mycosis Fungoides 10 100185 -NCIT:C141143 Mycosis Fungoides by AJCC v7 Stage 11 100186 -NCIT:C7796 Stage I Mycosis Fungoides AJCC v7 12 100187 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 13 100188 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 13 100189 -NCIT:C7798 Stage II Mycosis Fungoides AJCC v7 12 100190 -NCIT:C7800 Stage III Mycosis Fungoides AJCC v7 12 100191 -NCIT:C7802 Stage IV Mycosis Fungoides AJCC v7 12 100192 -NCIT:C165783 Transformed Mycosis Fungoides 11 100193 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 12 100194 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 12 100195 -NCIT:C8686 Recurrent Mycosis Fungoides 11 100196 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 12 100197 -NCIT:C8687 Refractory Mycosis Fungoides 11 100198 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 12 100199 -NCIT:C39644 Mycosis Fungoides Variant 10 100200 -NCIT:C35464 Granulomatous Slack Skin Disease 11 100201 -NCIT:C35685 Folliculotropic Mycosis Fungoides 11 100202 -NCIT:C35794 Pagetoid Reticulosis 11 100203 -NCIT:C6860 Primary Cutaneous Anaplastic Large Cell Lymphoma 10 100204 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 11 100205 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 11 100206 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 11 100207 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 11 100208 -NCIT:C6918 Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 100209 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 11 100210 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 11 100211 -NCIT:C173046 Refractory Indolent Non-Hodgkin Lymphoma 9 100212 -NCIT:C148175 Refractory Indolent Adult Non-Hodgkin Lymphoma 10 100213 -NCIT:C183514 Refractory Indolent B-Cell Non-Hodgkin Lymphoma 10 100214 -NCIT:C143085 Refractory Marginal Zone Lymphoma 11 100215 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 12 100216 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 100217 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 12 100218 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 11 100219 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 11 100220 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 11 100221 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 12 100222 -NCIT:C183515 Refractory Indolent T-Cell Non-Hodgkin Lymphoma 10 100223 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 11 100224 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 11 100225 -NCIT:C8687 Refractory Mycosis Fungoides 11 100226 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 12 100227 -NCIT:C181796 Recurrent Indolent Non-Hodgkin Lymphoma 9 100228 -NCIT:C183512 Recurrent Indolent B-Cell Non-Hodgkin Lymphoma 10 100229 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 11 100230 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 12 100231 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 100232 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 12 100233 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 11 100234 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 11 100235 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 11 100236 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 12 100237 -NCIT:C183513 Recurrent Indolent T-Cell Non-Hodgkin Lymphoma 10 100238 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 11 100239 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 11 100240 -NCIT:C8686 Recurrent Mycosis Fungoides 11 100241 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 12 100242 -NCIT:C8488 Recurrent Indolent Adult Non-Hodgkin Lymphoma 10 100243 -NCIT:C8491 Indolent Adult Non-Hodgkin Lymphoma 9 100244 -NCIT:C148175 Refractory Indolent Adult Non-Hodgkin Lymphoma 10 100245 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 10 100246 -NCIT:C68688 Ann Arbor Stage II Indolent Adult Non-Hodgkin Lymphoma 10 100247 -NCIT:C8467 Ann Arbor Stage II Contiguous Adult Indolent Non-Hodgkin Lymphoma 11 100248 -NCIT:C8478 Ann Arbor Stage II Non-Contiguous Adult Indolent Non-Hodgkin Lymphoma 11 100249 -NCIT:C8464 Ann Arbor Stage I Indolent Adult Non-Hodgkin Lymphoma 10 100250 -NCIT:C8482 Ann Arbor Stage III Indolent Adult Non-Hodgkin Lymphoma 10 100251 -NCIT:C8485 Ann Arbor Stage IV Indolent Adult Non-Hodgkin Lymphoma 10 100252 -NCIT:C8488 Recurrent Indolent Adult Non-Hodgkin Lymphoma 10 100253 -NCIT:C9244 Aggressive Non-Hodgkin Lymphoma 8 100254 -NCIT:C156232 Recurrent Aggressive Non-Hodgkin Lymphoma 9 100255 -NCIT:C178553 Recurrent Aggressive B-Cell Non-Hodgkin Lymphoma 10 100256 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 100257 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 11 100258 -NCIT:C5008 Recurrent Burkitt Lymphoma 11 100259 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 12 100260 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 12 100261 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 11 100262 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 12 100263 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 12 100264 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 11 100265 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 12 100266 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 12 100267 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 11 100268 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 11 100269 -NCIT:C178554 Recurrent Aggressive T-Cell Non-Hodgkin Lymphoma 10 100270 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 11 100271 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 11 100272 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 11 100273 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 11 100274 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 11 100275 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 11 100276 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 11 100277 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 11 100278 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 11 100279 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 11 100280 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 11 100281 -NCIT:C8490 Recurrent Aggressive Adult Non-Hodgkin Lymphoma 10 100282 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 11 100283 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 11 100284 -NCIT:C8164 Recurrent Adult Lymphoblastic Lymphoma 11 100285 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 11 100286 -NCIT:C156233 Refractory Aggressive Non-Hodgkin Lymphoma 9 100287 -NCIT:C178555 Refractory Aggressive B-Cell Non-Hodgkin Lymphoma 10 100288 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 100289 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 11 100290 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 11 100291 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 12 100292 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 12 100293 -NCIT:C8847 Refractory Burkitt Lymphoma 11 100294 -NCIT:C8862 Refractory Mantle Cell Lymphoma 11 100295 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 11 100296 -NCIT:C178556 Refractory Aggressive T-Cell Non-Hodgkin Lymphoma 10 100297 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 11 100298 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 11 100299 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 11 100300 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 11 100301 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 11 100302 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 11 100303 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 11 100304 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 11 100305 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 11 100306 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 11 100307 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 11 100308 -NCIT:C178541 Aggressive B-Cell Non-Hodgkin Lymphoma 9 100309 -NCIT:C131911 Burkitt-Like Lymphoma with 11q Aberration 10 100310 -NCIT:C178553 Recurrent Aggressive B-Cell Non-Hodgkin Lymphoma 10 100311 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 100312 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 11 100313 -NCIT:C5008 Recurrent Burkitt Lymphoma 11 100314 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 12 100315 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 12 100316 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 11 100317 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 12 100318 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 12 100319 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 11 100320 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 12 100321 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 12 100322 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 11 100323 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 11 100324 -NCIT:C178555 Refractory Aggressive B-Cell Non-Hodgkin Lymphoma 10 100325 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 100326 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 11 100327 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 11 100328 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 12 100329 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 12 100330 -NCIT:C8847 Refractory Burkitt Lymphoma 11 100331 -NCIT:C8862 Refractory Mantle Cell Lymphoma 11 100332 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 11 100333 -NCIT:C2912 Burkitt Lymphoma 10 100334 -NCIT:C141253 Burkitt Lymphoma by Ann Arbor Stage 11 100335 -NCIT:C5084 Ann Arbor Stage IV Burkitt Lymphoma 12 100336 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 13 100337 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 13 100338 -NCIT:C8848 Ann Arbor Stage I Burkitt Lymphoma 12 100339 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 13 100340 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 13 100341 -NCIT:C8849 Ann Arbor Stage II Burkitt Lymphoma 12 100342 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 13 100343 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 14 100344 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 14 100345 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 13 100346 -NCIT:C8850 Ann Arbor Stage III Burkitt Lymphoma 12 100347 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 13 100348 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 13 100349 -NCIT:C168651 Cutaneous Burkitt Lymphoma 11 100350 -NCIT:C188075 Kidney Burkitt Lymphoma 11 100351 -NCIT:C27409 Small Intestinal Burkitt Lymphoma 11 100352 -NCIT:C27410 Small Intestinal Atypical Burkitt/Burkitt-Like Lymphoma 12 100353 -NCIT:C27694 EBV-Related Burkitt Lymphoma 11 100354 -NCIT:C27122 Endemic Burkitt Lymphoma 12 100355 -NCIT:C27914 Sporadic Burkitt Lymphoma 11 100356 -NCIT:C27915 Immunodeficiency-Related Burkitt Lymphoma 11 100357 -NCIT:C7244 Burkitt Lymphoma Post-Transplant Lymphoproliferative Disorder 12 100358 -NCIT:C7245 Burkitt-Like Lymphoma Post-Transplant Lymphoproliferative Disorder 13 100359 -NCIT:C7255 Methotrexate-Related Burkitt Lymphoma 12 100360 -NCIT:C8286 AIDS-Related Burkitt Lymphoma 12 100361 -NCIT:C27857 AIDS-Related Burkitt Lymphoma with Plasmacytoid Differentiation 13 100362 -NCIT:C40376 Breast Burkitt Lymphoma 11 100363 -NCIT:C5008 Recurrent Burkitt Lymphoma 11 100364 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 12 100365 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 12 100366 -NCIT:C5251 Gastric Burkitt Lymphoma 11 100367 -NCIT:C6917 Atypical Burkitt/Burkitt-Like Lymphoma 11 100368 -NCIT:C27410 Small Intestinal Atypical Burkitt/Burkitt-Like Lymphoma 12 100369 -NCIT:C7245 Burkitt-Like Lymphoma Post-Transplant Lymphoproliferative Disorder 12 100370 -NCIT:C7188 Classical Burkitt Lymphoma 11 100371 -NCIT:C7189 Burkitt Lymphoma with Plasmacytoid Differentiation 11 100372 -NCIT:C27857 AIDS-Related Burkitt Lymphoma with Plasmacytoid Differentiation 12 100373 -NCIT:C7309 Splenic Burkitt Lymphoma 11 100374 -NCIT:C8847 Refractory Burkitt Lymphoma 11 100375 -NCIT:C9062 Adult Burkitt Lymphoma 11 100376 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 12 100377 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 12 100378 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 13 100379 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 13 100380 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 12 100381 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 12 100382 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 12 100383 -NCIT:C9095 Childhood Burkitt Lymphoma 11 100384 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 12 100385 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 12 100386 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 12 100387 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 12 100388 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 12 100389 -NCIT:C96502 Colorectal Burkitt Lymphoma 11 100390 -NCIT:C27465 Colon Burkitt Lymphoma 12 100391 -NCIT:C3460 Grade 3 Follicular Lymphoma 10 100392 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 11 100393 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 12 100394 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 12 100395 -NCIT:C6859 Grade 3 Cutaneous Follicular Lymphoma 11 100396 -NCIT:C7191 Grade 3a Follicular Lymphoma 11 100397 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 12 100398 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 12 100399 -NCIT:C7192 Grade 3b Follicular Lymphoma 11 100400 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 12 100401 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 12 100402 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 11 100403 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 11 100404 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 12 100405 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 12 100406 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 11 100407 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 11 100408 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 11 100409 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 12 100410 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 12 100411 -NCIT:C36081 Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 100412 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 11 100413 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 11 100414 -NCIT:C4337 Mantle Cell Lymphoma 10 100415 -NCIT:C141257 Mantle Cell Lymphoma by Ann Arbor Stage 11 100416 -NCIT:C8465 Ann Arbor Stage I Mantle Cell Lymphoma 12 100417 -NCIT:C8483 Ann Arbor Stage III Mantle Cell Lymphoma 12 100418 -NCIT:C8486 Ann Arbor Stage IV Mantle Cell Lymphoma 12 100419 -NCIT:C9202 Ann Arbor Stage II Mantle Cell Lymphoma 12 100420 -NCIT:C8473 Ann Arbor Stage II Contiguous Mantle Cell Lymphoma 13 100421 -NCIT:C9198 Ann Arbor Stage II Non-Contiguous Mantle Cell Lymphoma 13 100422 -NCIT:C161604 Prostate Mantle Cell Lymphoma 11 100423 -NCIT:C181210 Parotid Gland Mantle Cell Lymphoma 11 100424 -NCIT:C188080 Tonsillar Mantle Cell Lymphoma 11 100425 -NCIT:C27440 Gastric Mantle Cell Lymphoma 11 100426 -NCIT:C27441 Small Intestinal Mantle Cell Lymphoma 11 100427 -NCIT:C39747 Pleomorphic Variant Mantle Cell Lymphoma 11 100428 -NCIT:C45266 Cutaneous Mantle Cell Lymphoma 11 100429 -NCIT:C7229 Blastoid Variant Mantle Cell Lymphoma 11 100430 -NCIT:C7306 Splenic Mantle Cell Lymphoma 11 100431 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 11 100432 -NCIT:C8862 Refractory Mantle Cell Lymphoma 11 100433 -NCIT:C96505 Colorectal Mantle Cell Lymphoma 11 100434 -NCIT:C27411 Colon Mantle Cell Lymphoma 12 100435 -NCIT:C45194 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 100436 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 100437 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 100438 -NCIT:C45231 Diffuse Large B-Cell Lymphoma Unclassifiable 10 100439 -NCIT:C7212 AIDS-Related Diffuse Large B-cell Lymphoma 10 100440 -NCIT:C27858 AIDS-Related Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 11 100441 -NCIT:C27859 AIDS-Related Plasmablastic Lymphoma 11 100442 -NCIT:C38160 AIDS-Related Plasmablastic Lymphoma of Mucosa Site 12 100443 -NCIT:C9016 AIDS-Related Plasmablastic Lymphoma of the Oral Mucosa 13 100444 -NCIT:C8285 AIDS-Related Immunoblastic Lymphoma 11 100445 -NCIT:C9017 AIDS-Related Primary Effusion Lymphoma 11 100446 -NCIT:C7246 Diffuse Large B-Cell Lymphoma Post-Transplant Lymphoproliferative Disorder 10 100447 -NCIT:C7247 Anaplastic Lymphoma Post-Transplant Lymphoproliferative Disorder 11 100448 -NCIT:C7248 Centroblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 11 100449 -NCIT:C7249 Immunoblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 11 100450 -NCIT:C7933 Grade III Lymphomatoid Granulomatosis 10 100451 -NCIT:C115150 Adult Grade III Lymphomatoid Granulomatosis 11 100452 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 12 100453 -NCIT:C115204 Childhood Grade III Lymphomatoid Granulomatosis 11 100454 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 12 100455 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 11 100456 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 12 100457 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 12 100458 -NCIT:C8868 B Lymphoblastic Lymphoma 10 100459 -NCIT:C141250 B Lymphoblastic Lymphoma by Ann Arbor Stage 11 100460 -NCIT:C8871 Ann Arbor Stage I B Lymphoblastic Lymphoma 12 100461 -NCIT:C8872 Ann Arbor Stage III B Lymphoblastic Lymphoma 12 100462 -NCIT:C8873 Ann Arbor Stage IV B Lymphoblastic Lymphoma 12 100463 -NCIT:C8937 Ann Arbor Stage II B Lymphoblastic Lymphoma 12 100464 -NCIT:C7209 Childhood B Lymphoblastic Lymphoma 11 100465 -NCIT:C7310 Splenic B Lymphoblastic Lymphoma 11 100466 -NCIT:C7338 Adult B Lymphoblastic Lymphoma 11 100467 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 11 100468 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 11 100469 -NCIT:C178547 Aggressive T-Cell Non-Hodgkin Lymphoma 9 100470 -NCIT:C150495 Intestinal T-Cell Lymphoma 10 100471 -NCIT:C150505 Intestinal T-Cell Lymphoma, Not Otherwise Specified 11 100472 -NCIT:C4737 Enteropathy-Associated T-Cell Lymphoma 11 100473 -NCIT:C141295 Enteropathy-Associated T-Cell Lymphoma by Ann Arbor Stage 12 100474 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 13 100475 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 13 100476 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 13 100477 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 13 100478 -NCIT:C39610 Small Intestinal Enteropathy-Associated T-Cell Lymphoma 12 100479 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 12 100480 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 12 100481 -NCIT:C96058 Monomorphic Epitheliotropic Intestinal T-Cell Lymphoma 11 100482 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 12 100483 -NCIT:C150504 Small Intestinal Monomorphic Epitheliotropic T-Cell Lymphoma 12 100484 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 12 100485 -NCIT:C178554 Recurrent Aggressive T-Cell Non-Hodgkin Lymphoma 10 100486 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 11 100487 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 11 100488 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 11 100489 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 11 100490 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 11 100491 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 11 100492 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 11 100493 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 11 100494 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 11 100495 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 11 100496 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 11 100497 -NCIT:C178556 Refractory Aggressive T-Cell Non-Hodgkin Lymphoma 10 100498 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 11 100499 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 11 100500 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 11 100501 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 11 100502 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 11 100503 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 11 100504 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 11 100505 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 11 100506 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 11 100507 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 11 100508 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 11 100509 -NCIT:C3184 Adult T-Cell Leukemia/Lymphoma 10 100510 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 11 100511 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 12 100512 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 12 100513 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 12 100514 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 12 100515 -NCIT:C36265 Acute Adult T-Cell Leukemia/Lymphoma 11 100516 -NCIT:C36266 Lymphomatous Adult T-Cell Leukemia/Lymphoma 11 100517 -NCIT:C36268 Hodgkin-Like Adult T-Cell Leukemia/Lymphoma 11 100518 -NCIT:C45272 Cutaneous Adult T-Cell Leukemia/Lymphoma 11 100519 -NCIT:C7178 Smoldering Adult T-Cell Leukemia/Lymphoma 11 100520 -NCIT:C7179 Chronic Adult T-Cell Leukemia/Lymphoma 11 100521 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 11 100522 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 11 100523 -NCIT:C37194 Anaplastic Large Cell Lymphoma, ALK-Negative 10 100524 -NCIT:C129599 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Negative 11 100525 -NCIT:C139012 Breast Implant-Associated Anaplastic Large Cell Lymphoma 11 100526 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 12 100527 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 12 100528 -NCIT:C37196 Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Negative 11 100529 -NCIT:C4340 Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 100530 -NCIT:C139288 Primary EBV-Positive Nodal T-Cell or NK-Cell Lymphoma 11 100531 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 11 100532 -NCIT:C188459 Childhood Peripheral T-Cell Lymphoma, Not Otherwise Specified 11 100533 -NCIT:C7205 Lymphoepithelioid Variant Peripheral T-Cell Lymphoma 11 100534 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 11 100535 -NCIT:C45339 Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 100536 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 11 100537 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 11 100538 -NCIT:C45340 Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 100539 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 11 100540 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 11 100541 -NCIT:C4684 Nasal Type Extranodal NK/T-Cell Lymphoma 10 100542 -NCIT:C115154 Adult Nasal Type Extranodal NK/T-Cell Lymphoma 11 100543 -NCIT:C141296 Nasal Type NK/T-Cell Lymphoma by Ann Arbor Stage 11 100544 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 12 100545 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 12 100546 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 12 100547 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 12 100548 -NCIT:C162468 Testicular Nasal Type Extranodal NK/T-Cell Lymphoma 11 100549 -NCIT:C173172 Sinonasal Extranodal NK/T-Cell Lymphoma 11 100550 -NCIT:C173173 Nasal Cavity Extranodal NK/T-Cell Lymphoma 12 100551 -NCIT:C45268 Cutaneous Nasal Type Extranodal NK/T-Cell Lymphoma 11 100552 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 11 100553 -NCIT:C68692 Childhood Nasal Type Extranodal NK/T-Cell Lymphoma 11 100554 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 11 100555 -NCIT:C6919 T Lymphoblastic Lymphoma 10 100556 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 11 100557 -NCIT:C45740 Mediastinal T Lymphoblastic Lymphoma 11 100558 -NCIT:C7210 Childhood T Lymphoblastic Lymphoma 11 100559 -NCIT:C7226 Adult T Lymphoblastic Lymphoma 11 100560 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 11 100561 -NCIT:C7311 Splenic T Lymphoblastic Lymphoma 11 100562 -NCIT:C7528 Angioimmunoblastic T-Cell Lymphoma 10 100563 -NCIT:C141294 Angioimmunoblastic T-Cell Lymphoma by Ann Arbor Stage 11 100564 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 12 100565 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 12 100566 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 12 100567 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 12 100568 -NCIT:C45271 Cutaneous Angioimmunoblastic T-Cell Lymphoma 11 100569 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 11 100570 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 11 100571 -NCIT:C8459 Hepatosplenic T-Cell Lymphoma 10 100572 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 11 100573 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 11 100574 -NCIT:C8492 Aggressive Adult Non-Hodgkin Lymphoma 9 100575 -NCIT:C115150 Adult Grade III Lymphomatoid Granulomatosis 10 100576 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 11 100577 -NCIT:C115154 Adult Nasal Type Extranodal NK/T-Cell Lymphoma 10 100578 -NCIT:C3184 Adult T-Cell Leukemia/Lymphoma 10 100579 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 11 100580 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 12 100581 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 12 100582 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 12 100583 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 12 100584 -NCIT:C36265 Acute Adult T-Cell Leukemia/Lymphoma 11 100585 -NCIT:C36266 Lymphomatous Adult T-Cell Leukemia/Lymphoma 11 100586 -NCIT:C36268 Hodgkin-Like Adult T-Cell Leukemia/Lymphoma 11 100587 -NCIT:C45272 Cutaneous Adult T-Cell Leukemia/Lymphoma 11 100588 -NCIT:C7178 Smoldering Adult T-Cell Leukemia/Lymphoma 11 100589 -NCIT:C7179 Chronic Adult T-Cell Leukemia/Lymphoma 11 100590 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 11 100591 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 11 100592 -NCIT:C68686 Ann Arbor Stage II Aggressive Adult Non-Hodgkin Lymphoma 10 100593 -NCIT:C8125 Ann Arbor Stage II Adult Lymphoblastic Lymphoma 11 100594 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 12 100595 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 12 100596 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 11 100597 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 12 100598 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 12 100599 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 11 100600 -NCIT:C8472 Ann Arbor Stage II Contiguous Adult Aggressive Non-Hodgkin Lymphoma 11 100601 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 12 100602 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 12 100603 -NCIT:C8479 Ann Arbor Stage II Non-Contiguous Aggressive Adult Non-Hodgkin Lymphoma 11 100604 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 12 100605 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 12 100606 -NCIT:C8484 Ann Arbor Stage III Aggressive Adult Non-Hodgkin Lymphoma 10 100607 -NCIT:C8138 Ann Arbor Stage III Adult Lymphoblastic Lymphoma 11 100608 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 11 100609 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 11 100610 -NCIT:C8487 Ann Arbor Stage IV Aggressive Adult Non-Hodgkin Lymphoma 10 100611 -NCIT:C8151 Ann Arbor Stage IV Adult Lymphoblastic Lymphoma 11 100612 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 11 100613 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 11 100614 -NCIT:C8490 Recurrent Aggressive Adult Non-Hodgkin Lymphoma 10 100615 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 11 100616 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 11 100617 -NCIT:C8164 Recurrent Adult Lymphoblastic Lymphoma 11 100618 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 11 100619 -NCIT:C9062 Adult Burkitt Lymphoma 10 100620 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 11 100621 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 11 100622 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 12 100623 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 12 100624 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 11 100625 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 11 100626 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 11 100627 -NCIT:C9252 Ann Arbor Stage I Aggressive Adult Non-Hodgkin Lymphoma 10 100628 -NCIT:C8079 Ann Arbor Stage I Adult Lymphoblastic Lymphoma 11 100629 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 11 100630 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 11 100631 -NCIT:C9361 Adult Lymphoblastic Lymphoma 10 100632 -NCIT:C7226 Adult T Lymphoblastic Lymphoma 11 100633 -NCIT:C7338 Adult B Lymphoblastic Lymphoma 11 100634 -NCIT:C8079 Ann Arbor Stage I Adult Lymphoblastic Lymphoma 11 100635 -NCIT:C8125 Ann Arbor Stage II Adult Lymphoblastic Lymphoma 11 100636 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 12 100637 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 12 100638 -NCIT:C8138 Ann Arbor Stage III Adult Lymphoblastic Lymphoma 11 100639 -NCIT:C8151 Ann Arbor Stage IV Adult Lymphoblastic Lymphoma 11 100640 -NCIT:C8164 Recurrent Adult Lymphoblastic Lymphoma 11 100641 -NCIT:C7294 Splenic Non-Hodgkin Lymphoma 7 100642 -NCIT:C4663 Splenic Marginal Zone Lymphoma 8 100643 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 9 100644 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 9 100645 -NCIT:C7307 Splenic Follicular Lymphoma 8 100646 -NCIT:C7308 Splenic Diffuse Large B-Cell Lymphoma 8 100647 -NCIT:C7309 Splenic Burkitt Lymphoma 8 100648 -NCIT:C80309 Splenic Diffuse Red Pulp Small B-Cell Lymphoma 8 100649 -NCIT:C8459 Hepatosplenic T-Cell Lymphoma 8 100650 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 9 100651 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 9 100652 -NCIT:C7704 Adult Non-Hodgkin Lymphoma 7 100653 -NCIT:C114784 Non-Hodgkin Lymphoma During Pregnancy 8 100654 -NCIT:C141158 Lugano Classification Adult Non-Hodgkin Lymphoma by AJCC v8 Stage 8 100655 -NCIT:C141159 Lugano Classification Limited Stage Adult Non-Hodgkin Lymphoma AJCC v8 9 100656 -NCIT:C141160 Lugano Classification Stage I Adult Non-Hodgkin Lymphoma AJCC v8 10 100657 -NCIT:C141161 Lugano Classification Stage IE Adult Non-Hodgkin Lymphoma AJCC v8 10 100658 -NCIT:C141162 Lugano Classification Stage II Adult Non-Hodgkin Lymphoma AJCC v8 10 100659 -NCIT:C141164 Lugano Classification Stage II Bulky Adult Non-Hodgkin Lymphoma AJCC v8 11 100660 -NCIT:C141163 Lugano Classification Stage IIE Adult Non-Hodgkin Lymphoma AJCC v8 10 100661 -NCIT:C141165 Lugano Classification Advanced Stage Adult Non-Hodgkin Lymphoma AJCC v8 9 100662 -NCIT:C141166 Lugano Classification Stage III Adult Non-Hodgkin Lymphoma AJCC v8 10 100663 -NCIT:C141167 Lugano Classification Stage IV Adult Non-Hodgkin Lymphoma AJCC v8 10 100664 -NCIT:C141235 Adult Non-Hodgkin Lymphoma by Ann Arbor Stage 8 100665 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 9 100666 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 10 100667 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 10 100668 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 10 100669 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 10 100670 -NCIT:C8102 Ann Arbor Stage I Adult Non-Hodgkin Lymphoma 9 100671 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 10 100672 -NCIT:C8464 Ann Arbor Stage I Indolent Adult Non-Hodgkin Lymphoma 10 100673 -NCIT:C9252 Ann Arbor Stage I Aggressive Adult Non-Hodgkin Lymphoma 10 100674 -NCIT:C8079 Ann Arbor Stage I Adult Lymphoblastic Lymphoma 11 100675 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 11 100676 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 11 100677 -NCIT:C8103 Ann Arbor Stage II Adult Non-Hodgkin Lymphoma 9 100678 -NCIT:C68686 Ann Arbor Stage II Aggressive Adult Non-Hodgkin Lymphoma 10 100679 -NCIT:C8125 Ann Arbor Stage II Adult Lymphoblastic Lymphoma 11 100680 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 12 100681 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 12 100682 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 11 100683 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 12 100684 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 12 100685 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 11 100686 -NCIT:C8472 Ann Arbor Stage II Contiguous Adult Aggressive Non-Hodgkin Lymphoma 11 100687 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 12 100688 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 12 100689 -NCIT:C8479 Ann Arbor Stage II Non-Contiguous Aggressive Adult Non-Hodgkin Lymphoma 11 100690 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 12 100691 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 12 100692 -NCIT:C68688 Ann Arbor Stage II Indolent Adult Non-Hodgkin Lymphoma 10 100693 -NCIT:C8467 Ann Arbor Stage II Contiguous Adult Indolent Non-Hodgkin Lymphoma 11 100694 -NCIT:C8478 Ann Arbor Stage II Non-Contiguous Adult Indolent Non-Hodgkin Lymphoma 11 100695 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 10 100696 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 11 100697 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 11 100698 -NCIT:C8466 Ann Arbor Stage II Contiguous Adult Non-Hodgkin Lymphoma 10 100699 -NCIT:C8467 Ann Arbor Stage II Contiguous Adult Indolent Non-Hodgkin Lymphoma 11 100700 -NCIT:C8472 Ann Arbor Stage II Contiguous Adult Aggressive Non-Hodgkin Lymphoma 11 100701 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 12 100702 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 12 100703 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 11 100704 -NCIT:C8477 Ann Arbor Stage II Non-Contiguous Adult Non-Hodgkin Lymphoma 10 100705 -NCIT:C8478 Ann Arbor Stage II Non-Contiguous Adult Indolent Non-Hodgkin Lymphoma 11 100706 -NCIT:C8479 Ann Arbor Stage II Non-Contiguous Aggressive Adult Non-Hodgkin Lymphoma 11 100707 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 12 100708 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 12 100709 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 11 100710 -NCIT:C8104 Ann Arbor Stage III Adult Non-Hodgkin Lymphoma 9 100711 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 10 100712 -NCIT:C8482 Ann Arbor Stage III Indolent Adult Non-Hodgkin Lymphoma 10 100713 -NCIT:C8484 Ann Arbor Stage III Aggressive Adult Non-Hodgkin Lymphoma 10 100714 -NCIT:C8138 Ann Arbor Stage III Adult Lymphoblastic Lymphoma 11 100715 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 11 100716 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 11 100717 -NCIT:C8105 Ann Arbor Stage IV Adult Non-Hodgkin Lymphoma 9 100718 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 10 100719 -NCIT:C8485 Ann Arbor Stage IV Indolent Adult Non-Hodgkin Lymphoma 10 100720 -NCIT:C8487 Ann Arbor Stage IV Aggressive Adult Non-Hodgkin Lymphoma 10 100721 -NCIT:C8151 Ann Arbor Stage IV Adult Lymphoblastic Lymphoma 11 100722 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 11 100723 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 11 100724 -NCIT:C27367 Adult Anaplastic Large Cell Lymphoma 8 100725 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 9 100726 -NCIT:C27366 Adult Systemic Anaplastic Large Cell Lymphoma 9 100727 -NCIT:C7615 Adult Diffuse Large B-Cell Lymphoma 8 100728 -NCIT:C115150 Adult Grade III Lymphomatoid Granulomatosis 9 100729 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 100730 -NCIT:C188457 Adult EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 100731 -NCIT:C7873 Adult Immunoblastic Lymphoma 9 100732 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 10 100733 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 10 100734 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 11 100735 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 11 100736 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 10 100737 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 10 100738 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 10 100739 -NCIT:C8098 Recurrent Adult Non-Hodgkin Lymphoma 8 100740 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 9 100741 -NCIT:C8488 Recurrent Indolent Adult Non-Hodgkin Lymphoma 9 100742 -NCIT:C8490 Recurrent Aggressive Adult Non-Hodgkin Lymphoma 9 100743 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 100744 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 10 100745 -NCIT:C8164 Recurrent Adult Lymphoblastic Lymphoma 10 100746 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 10 100747 -NCIT:C8491 Indolent Adult Non-Hodgkin Lymphoma 8 100748 -NCIT:C148175 Refractory Indolent Adult Non-Hodgkin Lymphoma 9 100749 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 9 100750 -NCIT:C68688 Ann Arbor Stage II Indolent Adult Non-Hodgkin Lymphoma 9 100751 -NCIT:C8467 Ann Arbor Stage II Contiguous Adult Indolent Non-Hodgkin Lymphoma 10 100752 -NCIT:C8478 Ann Arbor Stage II Non-Contiguous Adult Indolent Non-Hodgkin Lymphoma 10 100753 -NCIT:C8464 Ann Arbor Stage I Indolent Adult Non-Hodgkin Lymphoma 9 100754 -NCIT:C8482 Ann Arbor Stage III Indolent Adult Non-Hodgkin Lymphoma 9 100755 -NCIT:C8485 Ann Arbor Stage IV Indolent Adult Non-Hodgkin Lymphoma 9 100756 -NCIT:C8488 Recurrent Indolent Adult Non-Hodgkin Lymphoma 9 100757 -NCIT:C8492 Aggressive Adult Non-Hodgkin Lymphoma 8 100758 -NCIT:C115150 Adult Grade III Lymphomatoid Granulomatosis 9 100759 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 100760 -NCIT:C115154 Adult Nasal Type Extranodal NK/T-Cell Lymphoma 9 100761 -NCIT:C3184 Adult T-Cell Leukemia/Lymphoma 9 100762 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 10 100763 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 11 100764 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 11 100765 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 11 100766 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 11 100767 -NCIT:C36265 Acute Adult T-Cell Leukemia/Lymphoma 10 100768 -NCIT:C36266 Lymphomatous Adult T-Cell Leukemia/Lymphoma 10 100769 -NCIT:C36268 Hodgkin-Like Adult T-Cell Leukemia/Lymphoma 10 100770 -NCIT:C45272 Cutaneous Adult T-Cell Leukemia/Lymphoma 10 100771 -NCIT:C7178 Smoldering Adult T-Cell Leukemia/Lymphoma 10 100772 -NCIT:C7179 Chronic Adult T-Cell Leukemia/Lymphoma 10 100773 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 10 100774 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 10 100775 -NCIT:C68686 Ann Arbor Stage II Aggressive Adult Non-Hodgkin Lymphoma 9 100776 -NCIT:C8125 Ann Arbor Stage II Adult Lymphoblastic Lymphoma 10 100777 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 11 100778 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 11 100779 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 10 100780 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 11 100781 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 11 100782 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 10 100783 -NCIT:C8472 Ann Arbor Stage II Contiguous Adult Aggressive Non-Hodgkin Lymphoma 10 100784 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 11 100785 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 11 100786 -NCIT:C8479 Ann Arbor Stage II Non-Contiguous Aggressive Adult Non-Hodgkin Lymphoma 10 100787 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 11 100788 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 11 100789 -NCIT:C8484 Ann Arbor Stage III Aggressive Adult Non-Hodgkin Lymphoma 9 100790 -NCIT:C8138 Ann Arbor Stage III Adult Lymphoblastic Lymphoma 10 100791 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 10 100792 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 10 100793 -NCIT:C8487 Ann Arbor Stage IV Aggressive Adult Non-Hodgkin Lymphoma 9 100794 -NCIT:C8151 Ann Arbor Stage IV Adult Lymphoblastic Lymphoma 10 100795 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 10 100796 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 10 100797 -NCIT:C8490 Recurrent Aggressive Adult Non-Hodgkin Lymphoma 9 100798 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 100799 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 10 100800 -NCIT:C8164 Recurrent Adult Lymphoblastic Lymphoma 10 100801 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 10 100802 -NCIT:C9062 Adult Burkitt Lymphoma 9 100803 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 10 100804 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 10 100805 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 11 100806 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 11 100807 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 10 100808 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 10 100809 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 10 100810 -NCIT:C9252 Ann Arbor Stage I Aggressive Adult Non-Hodgkin Lymphoma 9 100811 -NCIT:C8079 Ann Arbor Stage I Adult Lymphoblastic Lymphoma 10 100812 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 10 100813 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 10 100814 -NCIT:C9361 Adult Lymphoblastic Lymphoma 9 100815 -NCIT:C7226 Adult T Lymphoblastic Lymphoma 10 100816 -NCIT:C7338 Adult B Lymphoblastic Lymphoma 10 100817 -NCIT:C8079 Ann Arbor Stage I Adult Lymphoblastic Lymphoma 10 100818 -NCIT:C8125 Ann Arbor Stage II Adult Lymphoblastic Lymphoma 10 100819 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 11 100820 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 11 100821 -NCIT:C8138 Ann Arbor Stage III Adult Lymphoblastic Lymphoma 10 100822 -NCIT:C8151 Ann Arbor Stage IV Adult Lymphoblastic Lymphoma 10 100823 -NCIT:C8164 Recurrent Adult Lymphoblastic Lymphoma 10 100824 -NCIT:C7706 Childhood Non-Hodgkin Lymphoma 7 100825 -NCIT:C115369 Recurrent Childhood Non-Hodgkin Lymphoma 8 100826 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 9 100827 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 9 100828 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 9 100829 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 9 100830 -NCIT:C123394 Childhood Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 100831 -NCIT:C141217 St. Jude Childhood Non-Hodgkin Lymphoma by AJCC v8 Stage 8 100832 -NCIT:C141218 St. Jude Stage I Childhood Non-Hodgkin Lymphoma AJCC v8 9 100833 -NCIT:C141219 St. Jude Stage II Childhood Non-Hodgkin Lymphoma AJCC v8 9 100834 -NCIT:C141220 St. Jude Stage III Childhood Non-Hodgkin Lymphoma AJCC v8 9 100835 -NCIT:C141221 St. Jude Stage IV Childhood Non-Hodgkin Lymphoma AJCC v8 9 100836 -NCIT:C141236 Childhood Non-Hodgkin Lymphoma by Ann Arbor Stage 8 100837 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 9 100838 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 100839 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 100840 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 100841 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 100842 -NCIT:C94791 Ann Arbor Stage I Childhood Non-Hodgkin Lymphoma 9 100843 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 100844 -NCIT:C9056 Ann Arbor Stage I Childhood Lymphoblastic Lymphoma 10 100845 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 10 100846 -NCIT:C94792 Ann Arbor Stage II Childhood Non-Hodgkin Lymphoma 9 100847 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 100848 -NCIT:C9057 Ann Arbor Stage II Childhood Lymphoblastic Lymphoma 10 100849 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 10 100850 -NCIT:C94793 Ann Arbor Stage III Childhood Non-Hodgkin Lymphoma 9 100851 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 100852 -NCIT:C9058 Ann Arbor Stage III Childhood Lymphoblastic Lymphoma 10 100853 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 10 100854 -NCIT:C94794 Ann Arbor Stage IV Childhood Non-Hodgkin Lymphoma 9 100855 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 100856 -NCIT:C9059 Ann Arbor Stage IV Childhood Lymphoblastic Lymphoma 10 100857 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 10 100858 -NCIT:C188458 Childhood Large B-Cell Lymphoma with IRF4 Rearrangement 8 100859 -NCIT:C5637 Childhood Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 8 100860 -NCIT:C188459 Childhood Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 100861 -NCIT:C5636 Childhood Anaplastic Large Cell Lymphoma 9 100862 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 10 100863 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 10 100864 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 100865 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 100866 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 100867 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 100868 -NCIT:C188460 Childhood Anaplastic Large Cell Lymphoma, ALK-Positive 10 100869 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 10 100870 -NCIT:C9471 Childhood Systemic Anaplastic Large Cell Lymphoma 10 100871 -NCIT:C68692 Childhood Nasal Type Extranodal NK/T-Cell Lymphoma 9 100872 -NCIT:C80374 Systemic EBV-Positive T-Cell Lymphoma of Childhood 9 100873 -NCIT:C7616 Childhood Diffuse Large B-Cell Lymphoma 8 100874 -NCIT:C115204 Childhood Grade III Lymphomatoid Granulomatosis 9 100875 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 10 100876 -NCIT:C188455 Childhood Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 100877 -NCIT:C188456 Childhood EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 100878 -NCIT:C9079 Childhood Immunoblastic Lymphoma 9 100879 -NCIT:C80299 Pediatric Nodal Marginal Zone Lymphoma 8 100880 -NCIT:C9095 Childhood Burkitt Lymphoma 8 100881 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 9 100882 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 9 100883 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 9 100884 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 9 100885 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 9 100886 -NCIT:C9124 Childhood Lymphoblastic Lymphoma 8 100887 -NCIT:C7209 Childhood B Lymphoblastic Lymphoma 9 100888 -NCIT:C7210 Childhood T Lymphoblastic Lymphoma 9 100889 -NCIT:C9056 Ann Arbor Stage I Childhood Lymphoblastic Lymphoma 9 100890 -NCIT:C9057 Ann Arbor Stage II Childhood Lymphoblastic Lymphoma 9 100891 -NCIT:C9058 Ann Arbor Stage III Childhood Lymphoblastic Lymphoma 9 100892 -NCIT:C9059 Ann Arbor Stage IV Childhood Lymphoblastic Lymphoma 9 100893 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 9 100894 -NCIT:C8594 Leukemic Phase of Lymphoma 7 100895 -NCIT:C138192 Leukemic Nonnodal Mantle Cell Lymphoma 8 100896 -NCIT:C3366 Sezary Syndrome 8 100897 -NCIT:C176999 Recurrent Sezary Syndrome 9 100898 -NCIT:C177000 Refractory Sezary Syndrome 9 100899 -NCIT:C36265 Acute Adult T-Cell Leukemia/Lymphoma 8 100900 -NCIT:C7178 Smoldering Adult T-Cell Leukemia/Lymphoma 8 100901 -NCIT:C7179 Chronic Adult T-Cell Leukemia/Lymphoma 8 100902 -NCIT:C8701 Refractory Non-Hodgkin Lymphoma 7 100903 -NCIT:C140091 Refractory Transformed Non-Hodgkin Lymphoma 8 100904 -NCIT:C158150 Refractory Transformed B-Cell Non-Hodgkin Lymphoma 9 100905 -NCIT:C160240 Refractory Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 10 100906 -NCIT:C186484 Refractory Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 10 100907 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 11 100908 -NCIT:C165791 Refractory Transformed T-cell Non-Hodgkin Lymphoma 9 100909 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 100910 -NCIT:C146989 Refractory Central Nervous System Non-Hodgkin Lymphoma 8 100911 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 9 100912 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 100913 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 100914 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 100915 -NCIT:C151978 Refractory Lymphoblastic Lymphoma 8 100916 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 9 100917 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 9 100918 -NCIT:C156233 Refractory Aggressive Non-Hodgkin Lymphoma 8 100919 -NCIT:C178555 Refractory Aggressive B-Cell Non-Hodgkin Lymphoma 9 100920 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 100921 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 100922 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 10 100923 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 11 100924 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 11 100925 -NCIT:C8847 Refractory Burkitt Lymphoma 10 100926 -NCIT:C8862 Refractory Mantle Cell Lymphoma 10 100927 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 10 100928 -NCIT:C178556 Refractory Aggressive T-Cell Non-Hodgkin Lymphoma 9 100929 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 10 100930 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 100931 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 100932 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 100933 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 100934 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 10 100935 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 10 100936 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 10 100937 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 10 100938 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 10 100939 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 100940 -NCIT:C173046 Refractory Indolent Non-Hodgkin Lymphoma 8 100941 -NCIT:C148175 Refractory Indolent Adult Non-Hodgkin Lymphoma 9 100942 -NCIT:C183514 Refractory Indolent B-Cell Non-Hodgkin Lymphoma 9 100943 -NCIT:C143085 Refractory Marginal Zone Lymphoma 10 100944 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 11 100945 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 100946 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 11 100947 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 10 100948 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 10 100949 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 10 100950 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 11 100951 -NCIT:C183515 Refractory Indolent T-Cell Non-Hodgkin Lymphoma 9 100952 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 100953 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 100954 -NCIT:C8687 Refractory Mycosis Fungoides 10 100955 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 100956 -NCIT:C8664 Refractory T-Cell Non-Hodgkin Lymphoma 8 100957 -NCIT:C178556 Refractory Aggressive T-Cell Non-Hodgkin Lymphoma 9 100958 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 10 100959 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 100960 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 100961 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 100962 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 100963 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 10 100964 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 10 100965 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 10 100966 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 10 100967 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 10 100968 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 100969 -NCIT:C183515 Refractory Indolent T-Cell Non-Hodgkin Lymphoma 9 100970 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 100971 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 100972 -NCIT:C8687 Refractory Mycosis Fungoides 10 100973 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 100974 -NCIT:C8689 Refractory Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 9 100975 -NCIT:C148129 Refractory Mycosis Fungoides and Sezary Syndrome 10 100976 -NCIT:C177000 Refractory Sezary Syndrome 11 100977 -NCIT:C8687 Refractory Mycosis Fungoides 11 100978 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 12 100979 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 10 100980 -NCIT:C157690 Refractory NK-Cell Lymphoma, Unclassifiable 10 100981 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 100982 -NCIT:C165791 Refractory Transformed T-cell Non-Hodgkin Lymphoma 10 100983 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 100984 -NCIT:C168779 Refractory Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 10 100985 -NCIT:C168781 Refractory Follicular T-Cell Lymphoma 10 100986 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 10 100987 -NCIT:C8658 Refractory Anaplastic Large Cell Lymphoma 10 100988 -NCIT:C162689 Refractory Systemic Anaplastic Large Cell Lymphoma 11 100989 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 12 100990 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 11 100991 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 11 100992 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 10 100993 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 10 100994 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 10 100995 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 10 100996 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 11 100997 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 11 100998 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 11 100999 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 11 101000 -NCIT:C8687 Refractory Mycosis Fungoides 11 101001 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 12 101002 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 101003 -NCIT:C8842 Refractory B-Cell Non-Hodgkin Lymphoma 8 101004 -NCIT:C178555 Refractory Aggressive B-Cell Non-Hodgkin Lymphoma 9 101005 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 101006 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 101007 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 10 101008 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 11 101009 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 11 101010 -NCIT:C8847 Refractory Burkitt Lymphoma 10 101011 -NCIT:C8862 Refractory Mantle Cell Lymphoma 10 101012 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 10 101013 -NCIT:C183514 Refractory Indolent B-Cell Non-Hodgkin Lymphoma 9 101014 -NCIT:C143085 Refractory Marginal Zone Lymphoma 10 101015 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 11 101016 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 101017 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 11 101018 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 10 101019 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 10 101020 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 10 101021 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 11 101022 -NCIT:C7228 Refractory Mature B-Cell Non-Hodgkin Lymphoma 9 101023 -NCIT:C143085 Refractory Marginal Zone Lymphoma 10 101024 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 11 101025 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 101026 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 11 101027 -NCIT:C158150 Refractory Transformed B-Cell Non-Hodgkin Lymphoma 10 101028 -NCIT:C160240 Refractory Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 11 101029 -NCIT:C186484 Refractory Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 11 101030 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 12 101031 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 10 101032 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 11 101033 -NCIT:C8846 Refractory Small Lymphocytic Lymphoma 10 101034 -NCIT:C8847 Refractory Burkitt Lymphoma 10 101035 -NCIT:C8853 Refractory Diffuse Large B-Cell Lymphoma 10 101036 -NCIT:C138018 Refractory Extranodal Diffuse Large B-cell Lymphoma 11 101037 -NCIT:C138026 Refractory Intravascular Large B-Cell Lymphoma 11 101038 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 101039 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 101040 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 11 101041 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 12 101042 -NCIT:C157678 Refractory T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 11 101043 -NCIT:C157680 Refractory Primary Effusion Lymphoma 11 101044 -NCIT:C157684 Refractory Plasmablastic Lymphoma 11 101045 -NCIT:C160233 Refractory High Grade B-Cell Lymphoma 11 101046 -NCIT:C151979 Refractory High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 12 101047 -NCIT:C162453 Refractory High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 12 101048 -NCIT:C188789 Refractory High Grade B-Cell Lymphoma, Not Otherwise Specified 12 101049 -NCIT:C165241 Refractory Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 101050 -NCIT:C160238 Refractory Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 12 101051 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 12 101052 -NCIT:C182034 Refractory Immunoblastic Lymphoma 12 101053 -NCIT:C8927 Refractory Centroblastic Lymphoma 12 101054 -NCIT:C183142 Refractory Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 11 101055 -NCIT:C188791 Refractory ALK-Positive Large B-Cell Lymphoma 11 101056 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 101057 -NCIT:C8858 Refractory Follicular Lymphoma 10 101058 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 11 101059 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 11 101060 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 11 101061 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 12 101062 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 12 101063 -NCIT:C8862 Refractory Mantle Cell Lymphoma 10 101064 -NCIT:C88145 Ocular Adnexal Non-Hodgkin Lymphoma 7 101065 -NCIT:C175432 Conjunctival Non-Hodgkin Lymphoma 8 101066 -NCIT:C175430 Conjunctival Follicular Lymphoma 9 101067 -NCIT:C175431 Conjunctival Mucosa-Associated Lymphoid Tissue Lymphoma 9 101068 -NCIT:C175433 Conjunctival Diffuse Large B-Cell Lymphoma 9 101069 -NCIT:C175479 Lacrimal System Non-Hodgkin Lymphoma 8 101070 -NCIT:C175480 Lacrimal Gland Non-Hodgkin Lymphoma 9 101071 -NCIT:C175483 Lacrimal Gland Mucosa-Associated Lymphoid Tissue Lymphoma 10 101072 -NCIT:C175486 Lacrimal Gland Diffuse Large B-Cell Lymphoma 10 101073 -NCIT:C175488 Lacrimal Gland Follicular Lymphoma 10 101074 -NCIT:C175481 Lacrimal Drainage System Non-Hodgkin Lymphoma 9 101075 -NCIT:C175484 Lacrimal Drainage System Mucosa-Associated Lymphoid Tissue Lymphoma 10 101076 -NCIT:C175487 Lacrimal Drainage System Diffuse Large B-Cell Lymphoma 10 101077 -NCIT:C175482 Lacrimal System Mucosa-Associated Lymphoid Tissue Lymphoma 9 101078 -NCIT:C175483 Lacrimal Gland Mucosa-Associated Lymphoid Tissue Lymphoma 10 101079 -NCIT:C175484 Lacrimal Drainage System Mucosa-Associated Lymphoid Tissue Lymphoma 10 101080 -NCIT:C175485 Lacrimal System Diffuse Large B-Cell Lymphoma 9 101081 -NCIT:C175486 Lacrimal Gland Diffuse Large B-Cell Lymphoma 10 101082 -NCIT:C175487 Lacrimal Drainage System Diffuse Large B-Cell Lymphoma 10 101083 -NCIT:C35689 Ocular Adnexal Mucosa-Associated Lymphoid Tissue Lymphoma 8 101084 -NCIT:C175431 Conjunctival Mucosa-Associated Lymphoid Tissue Lymphoma 9 101085 -NCIT:C175482 Lacrimal System Mucosa-Associated Lymphoid Tissue Lymphoma 9 101086 -NCIT:C175483 Lacrimal Gland Mucosa-Associated Lymphoid Tissue Lymphoma 10 101087 -NCIT:C175484 Lacrimal Drainage System Mucosa-Associated Lymphoid Tissue Lymphoma 10 101088 -NCIT:C182357 Diffusion Restriction 9 101089 -NCIT:C44960 Chlamydia Psittaci-Associated Ocular Adnexal Mucosa-Associated Lymphoid Tissue Lymphoma 9 101090 -NCIT:C9184 Primary Intraocular Non-Hodgkin Lymphoma 7 101091 -NCIT:C157065 Primary Vitreoretinal Non-Hodgkin Lymphoma 8 101092 -NCIT:C157067 Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 101093 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 101094 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 101095 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 9 101096 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 101097 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 9 101098 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 101099 -NCIT:C4365 Primary Retinal Non-Hodgkin Lymphoma 9 101100 -NCIT:C175451 Primary Uveal Non-Hodgkin Lymphoma 8 101101 -NCIT:C175464 Primary Choroidal Non-Hodgkin Lymphoma 9 101102 -NCIT:C175466 Primary Ciliary Body Non-Hodgkin Lymphoma 9 101103 -NCIT:C175467 Primary Iris Non-Hodgkin Lymphoma 9 101104 -NCIT:C9251 Recurrent Non-Hodgkin Lymphoma 7 101105 -NCIT:C115369 Recurrent Childhood Non-Hodgkin Lymphoma 8 101106 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 9 101107 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 9 101108 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 9 101109 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 9 101110 -NCIT:C146990 Recurrent Central Nervous System Non-Hodgkin Lymphoma 8 101111 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 9 101112 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 101113 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 101114 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 101115 -NCIT:C156232 Recurrent Aggressive Non-Hodgkin Lymphoma 8 101116 -NCIT:C178553 Recurrent Aggressive B-Cell Non-Hodgkin Lymphoma 9 101117 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 101118 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 101119 -NCIT:C5008 Recurrent Burkitt Lymphoma 10 101120 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 11 101121 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 11 101122 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 10 101123 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 11 101124 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 11 101125 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 10 101126 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 11 101127 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 11 101128 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 10 101129 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 10 101130 -NCIT:C178554 Recurrent Aggressive T-Cell Non-Hodgkin Lymphoma 9 101131 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 101132 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 10 101133 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 101134 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 101135 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 10 101136 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 101137 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 101138 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 10 101139 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 10 101140 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 10 101141 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 10 101142 -NCIT:C8490 Recurrent Aggressive Adult Non-Hodgkin Lymphoma 9 101143 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 101144 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 10 101145 -NCIT:C8164 Recurrent Adult Lymphoblastic Lymphoma 10 101146 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 10 101147 -NCIT:C181796 Recurrent Indolent Non-Hodgkin Lymphoma 8 101148 -NCIT:C183512 Recurrent Indolent B-Cell Non-Hodgkin Lymphoma 9 101149 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 10 101150 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 11 101151 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 101152 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 11 101153 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 10 101154 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 10 101155 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 10 101156 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 11 101157 -NCIT:C183513 Recurrent Indolent T-Cell Non-Hodgkin Lymphoma 9 101158 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 101159 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 101160 -NCIT:C8686 Recurrent Mycosis Fungoides 10 101161 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 101162 -NCIT:C8488 Recurrent Indolent Adult Non-Hodgkin Lymphoma 9 101163 -NCIT:C8098 Recurrent Adult Non-Hodgkin Lymphoma 8 101164 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 9 101165 -NCIT:C8488 Recurrent Indolent Adult Non-Hodgkin Lymphoma 9 101166 -NCIT:C8490 Recurrent Aggressive Adult Non-Hodgkin Lymphoma 9 101167 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 101168 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 10 101169 -NCIT:C8164 Recurrent Adult Lymphoblastic Lymphoma 10 101170 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 10 101171 -NCIT:C8663 Recurrent T-Cell Non-Hodgkin Lymphoma 8 101172 -NCIT:C178554 Recurrent Aggressive T-Cell Non-Hodgkin Lymphoma 9 101173 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 101174 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 10 101175 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 101176 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 101177 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 10 101178 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 101179 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 101180 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 10 101181 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 10 101182 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 10 101183 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 10 101184 -NCIT:C183513 Recurrent Indolent T-Cell Non-Hodgkin Lymphoma 9 101185 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 101186 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 101187 -NCIT:C8686 Recurrent Mycosis Fungoides 10 101188 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 101189 -NCIT:C8688 Recurrent Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 9 101190 -NCIT:C115439 Recurrent Mycosis Fungoides and Sezary Syndrome 10 101191 -NCIT:C176999 Recurrent Sezary Syndrome 11 101192 -NCIT:C8686 Recurrent Mycosis Fungoides 11 101193 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 12 101194 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 101195 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 10 101196 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 101197 -NCIT:C157689 Recurrent NK-Cell Lymphoma, Unclassifiable 10 101198 -NCIT:C165789 Recurrent Transformed T-cell Non-Hodgkin Lymphoma 10 101199 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 101200 -NCIT:C168778 Recurrent Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 10 101201 -NCIT:C168780 Recurrent Follicular T-Cell Lymphoma 10 101202 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 10 101203 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 10 101204 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 11 101205 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 11 101206 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 11 101207 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 11 101208 -NCIT:C8686 Recurrent Mycosis Fungoides 11 101209 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 12 101210 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 10 101211 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 10 101212 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 10 101213 -NCIT:C9250 Recurrent Anaplastic Large Cell Lymphoma 10 101214 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 11 101215 -NCIT:C162688 Recurrent Systemic Anaplastic Large Cell Lymphoma 11 101216 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 12 101217 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 11 101218 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 11 101219 -NCIT:C8702 Recurrent Transformed Non-Hodgkin Lymphoma 8 101220 -NCIT:C158149 Recurrent Transformed B-Cell Non-Hodgkin Lymphoma 9 101221 -NCIT:C160232 Recurrent Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 10 101222 -NCIT:C186483 Recurrent Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 10 101223 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 11 101224 -NCIT:C165789 Recurrent Transformed T-cell Non-Hodgkin Lymphoma 9 101225 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 101226 -NCIT:C8841 Recurrent B-Cell Non-Hodgkin Lymphoma 8 101227 -NCIT:C165799 Recurrent Mature B-Cell Non-Hodgkin Lymphoma 9 101228 -NCIT:C158149 Recurrent Transformed B-Cell Non-Hodgkin Lymphoma 10 101229 -NCIT:C160232 Recurrent Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 11 101230 -NCIT:C186483 Recurrent Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 11 101231 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 12 101232 -NCIT:C5007 Recurrent Follicular Lymphoma 10 101233 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 11 101234 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 11 101235 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 11 101236 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 12 101237 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 12 101238 -NCIT:C5008 Recurrent Burkitt Lymphoma 10 101239 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 11 101240 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 11 101241 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 10 101242 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 11 101243 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 101244 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 11 101245 -NCIT:C8154 Recurrent Small Lymphocytic Lymphoma 10 101246 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 10 101247 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 10 101248 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 11 101249 -NCIT:C8852 Recurrent Diffuse Large B-Cell Lymphoma 10 101250 -NCIT:C138015 Recurrent Extranodal Diffuse Large B-cell Lymphoma 11 101251 -NCIT:C138025 Recurrent Intravascular Large B-Cell Lymphoma 11 101252 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 101253 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 101254 -NCIT:C156696 Recurrent T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 11 101255 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 11 101256 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 12 101257 -NCIT:C157679 Recurrent Primary Effusion Lymphoma 11 101258 -NCIT:C157683 Recurrent Plasmablastic Lymphoma 11 101259 -NCIT:C160229 Recurrent High Grade B-Cell Lymphoma 11 101260 -NCIT:C151980 Recurrent High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 12 101261 -NCIT:C162451 Recurrent High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 12 101262 -NCIT:C188788 Recurrent High Grade B-Cell Lymphoma, Not Otherwise Specified 12 101263 -NCIT:C165240 Recurrent Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 101264 -NCIT:C160230 Recurrent Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 12 101265 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 12 101266 -NCIT:C182035 Recurrent Immunoblastic Lymphoma 12 101267 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 13 101268 -NCIT:C8926 Recurrent Centroblastic Lymphoma 12 101269 -NCIT:C183140 Recurrent Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 11 101270 -NCIT:C188790 Recurrent ALK-Positive Large B-Cell Lymphoma 11 101271 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 11 101272 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 12 101273 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 12 101274 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 101275 -NCIT:C178553 Recurrent Aggressive B-Cell Non-Hodgkin Lymphoma 9 101276 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 101277 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 101278 -NCIT:C5008 Recurrent Burkitt Lymphoma 10 101279 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 11 101280 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 11 101281 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 10 101282 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 11 101283 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 11 101284 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 10 101285 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 11 101286 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 11 101287 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 10 101288 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 10 101289 -NCIT:C183512 Recurrent Indolent B-Cell Non-Hodgkin Lymphoma 9 101290 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 10 101291 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 11 101292 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 101293 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 11 101294 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 10 101295 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 10 101296 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 10 101297 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 11 101298 -NCIT:C9360 Lymphoblastic Lymphoma 7 101299 -NCIT:C151978 Refractory Lymphoblastic Lymphoma 8 101300 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 9 101301 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 9 101302 -NCIT:C6919 T Lymphoblastic Lymphoma 8 101303 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 9 101304 -NCIT:C45740 Mediastinal T Lymphoblastic Lymphoma 9 101305 -NCIT:C7210 Childhood T Lymphoblastic Lymphoma 9 101306 -NCIT:C7226 Adult T Lymphoblastic Lymphoma 9 101307 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 9 101308 -NCIT:C7311 Splenic T Lymphoblastic Lymphoma 9 101309 -NCIT:C7312 Splenic Lymphoblastic Lymphoma 8 101310 -NCIT:C7310 Splenic B Lymphoblastic Lymphoma 9 101311 -NCIT:C7311 Splenic T Lymphoblastic Lymphoma 9 101312 -NCIT:C8298 AIDS-Related Lymphoblastic Lymphoma 8 101313 -NCIT:C8868 B Lymphoblastic Lymphoma 8 101314 -NCIT:C141250 B Lymphoblastic Lymphoma by Ann Arbor Stage 9 101315 -NCIT:C8871 Ann Arbor Stage I B Lymphoblastic Lymphoma 10 101316 -NCIT:C8872 Ann Arbor Stage III B Lymphoblastic Lymphoma 10 101317 -NCIT:C8873 Ann Arbor Stage IV B Lymphoblastic Lymphoma 10 101318 -NCIT:C8937 Ann Arbor Stage II B Lymphoblastic Lymphoma 10 101319 -NCIT:C7209 Childhood B Lymphoblastic Lymphoma 9 101320 -NCIT:C7310 Splenic B Lymphoblastic Lymphoma 9 101321 -NCIT:C7338 Adult B Lymphoblastic Lymphoma 9 101322 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 9 101323 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 9 101324 -NCIT:C9124 Childhood Lymphoblastic Lymphoma 8 101325 -NCIT:C7209 Childhood B Lymphoblastic Lymphoma 9 101326 -NCIT:C7210 Childhood T Lymphoblastic Lymphoma 9 101327 -NCIT:C9056 Ann Arbor Stage I Childhood Lymphoblastic Lymphoma 9 101328 -NCIT:C9057 Ann Arbor Stage II Childhood Lymphoblastic Lymphoma 9 101329 -NCIT:C9058 Ann Arbor Stage III Childhood Lymphoblastic Lymphoma 9 101330 -NCIT:C9059 Ann Arbor Stage IV Childhood Lymphoblastic Lymphoma 9 101331 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 9 101332 -NCIT:C9361 Adult Lymphoblastic Lymphoma 8 101333 -NCIT:C7226 Adult T Lymphoblastic Lymphoma 9 101334 -NCIT:C7338 Adult B Lymphoblastic Lymphoma 9 101335 -NCIT:C8079 Ann Arbor Stage I Adult Lymphoblastic Lymphoma 9 101336 -NCIT:C8125 Ann Arbor Stage II Adult Lymphoblastic Lymphoma 9 101337 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 10 101338 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 10 101339 -NCIT:C8138 Ann Arbor Stage III Adult Lymphoblastic Lymphoma 9 101340 -NCIT:C8151 Ann Arbor Stage IV Adult Lymphoblastic Lymphoma 9 101341 -NCIT:C8164 Recurrent Adult Lymphoblastic Lymphoma 9 101342 -NCIT:C37869 B-Cell Lymphoma, Unclassifiable, with Features Intermediate between Diffuse Large B-Cell Lymphoma and Classic Hodgkin Lymphoma 6 101343 -NCIT:C138013 Recurrent B-Cell Lymphoma, Unclassifiable, with Features Intermediate between Diffuse Large B-Cell Lymphoma and Classic Hodgkin Lymphoma 7 101344 -NCIT:C138014 Refractory B-Cell Lymphoma, Unclassifiable, with Features Intermediate between Diffuse Large B-Cell Lymphoma and Classic Hodgkin Lymphoma 7 101345 -NCIT:C37870 Mediastinal B-Cell Lymphoma, Unclassifiable, with Features Intermediate between Diffuse Large B-Cell Lymphoma and Classic Hodgkin Lymphoma 7 101346 -NCIT:C38661 Composite Lymphoma 6 101347 -NCIT:C39578 Autoimmune Lymphoproliferative Syndrome-Related Lymphoma 6 101348 -NCIT:C4938 Localized Lymphoma 6 101349 -NCIT:C166179 Localized Anaplastic Large Cell Lymphoma 7 101350 -NCIT:C5165 Childhood Lymphoma 6 101351 -NCIT:C141202 Childhood Lymphoma by AJCC v8 Stage 7 101352 -NCIT:C141178 Lugano Classification Childhood Hodgkin Lymphoma by AJCC v8 Stage 8 101353 -NCIT:C141179 Lugano Classification Limited Stage Childhood Hodgkin Lymphoma AJCC v8 9 101354 -NCIT:C141180 Lugano Classification Stage I Childhood Hodgkin Lymphoma AJCC v8 10 101355 -NCIT:C141181 Lugano Classification Stage IE Childhood Hodgkin Lymphoma AJCC v8 10 101356 -NCIT:C141182 Lugano Classification Stage II Childhood Hodgkin Lymphoma AJCC v8 10 101357 -NCIT:C141184 Lugano Classification Stage II Bulky Childhood Hodgkin Lymphoma AJCC v8 11 101358 -NCIT:C141183 Lugano Classification Stage IIE Childhood Hodgkin Lymphoma AJCC v8 10 101359 -NCIT:C141185 Lugano Classification Advanced Stage Childhood Hodgkin Lymphoma AJCC v8 9 101360 -NCIT:C141186 Lugano Classification Stage III Childhood Hodgkin Lymphoma AJCC v8 10 101361 -NCIT:C141187 Lugano Classification Stage IV Childhood Hodgkin Lymphoma AJCC v8 10 101362 -NCIT:C141217 St. Jude Childhood Non-Hodgkin Lymphoma by AJCC v8 Stage 8 101363 -NCIT:C141218 St. Jude Stage I Childhood Non-Hodgkin Lymphoma AJCC v8 9 101364 -NCIT:C141219 St. Jude Stage II Childhood Non-Hodgkin Lymphoma AJCC v8 9 101365 -NCIT:C141220 St. Jude Stage III Childhood Non-Hodgkin Lymphoma AJCC v8 9 101366 -NCIT:C141221 St. Jude Stage IV Childhood Non-Hodgkin Lymphoma AJCC v8 9 101367 -NCIT:C187196 Recurrent Childhood Lymphoma 7 101368 -NCIT:C115369 Recurrent Childhood Non-Hodgkin Lymphoma 8 101369 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 9 101370 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 9 101371 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 9 101372 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 9 101373 -NCIT:C8059 Recurrent Childhood Hodgkin Lymphoma 8 101374 -NCIT:C187197 Refractory Childhood Lymphoma 7 101375 -NCIT:C115458 Refractory Childhood Hodgkin Lymphoma 8 101376 -NCIT:C7706 Childhood Non-Hodgkin Lymphoma 7 101377 -NCIT:C115369 Recurrent Childhood Non-Hodgkin Lymphoma 8 101378 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 9 101379 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 9 101380 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 9 101381 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 9 101382 -NCIT:C123394 Childhood Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 101383 -NCIT:C141217 St. Jude Childhood Non-Hodgkin Lymphoma by AJCC v8 Stage 8 101384 -NCIT:C141218 St. Jude Stage I Childhood Non-Hodgkin Lymphoma AJCC v8 9 101385 -NCIT:C141219 St. Jude Stage II Childhood Non-Hodgkin Lymphoma AJCC v8 9 101386 -NCIT:C141220 St. Jude Stage III Childhood Non-Hodgkin Lymphoma AJCC v8 9 101387 -NCIT:C141221 St. Jude Stage IV Childhood Non-Hodgkin Lymphoma AJCC v8 9 101388 -NCIT:C141236 Childhood Non-Hodgkin Lymphoma by Ann Arbor Stage 8 101389 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 9 101390 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 101391 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 101392 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 101393 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 101394 -NCIT:C94791 Ann Arbor Stage I Childhood Non-Hodgkin Lymphoma 9 101395 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 101396 -NCIT:C9056 Ann Arbor Stage I Childhood Lymphoblastic Lymphoma 10 101397 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 10 101398 -NCIT:C94792 Ann Arbor Stage II Childhood Non-Hodgkin Lymphoma 9 101399 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 101400 -NCIT:C9057 Ann Arbor Stage II Childhood Lymphoblastic Lymphoma 10 101401 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 10 101402 -NCIT:C94793 Ann Arbor Stage III Childhood Non-Hodgkin Lymphoma 9 101403 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 101404 -NCIT:C9058 Ann Arbor Stage III Childhood Lymphoblastic Lymphoma 10 101405 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 10 101406 -NCIT:C94794 Ann Arbor Stage IV Childhood Non-Hodgkin Lymphoma 9 101407 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 101408 -NCIT:C9059 Ann Arbor Stage IV Childhood Lymphoblastic Lymphoma 10 101409 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 10 101410 -NCIT:C188458 Childhood Large B-Cell Lymphoma with IRF4 Rearrangement 8 101411 -NCIT:C5637 Childhood Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 8 101412 -NCIT:C188459 Childhood Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 101413 -NCIT:C5636 Childhood Anaplastic Large Cell Lymphoma 9 101414 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 10 101415 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 10 101416 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 101417 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 101418 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 101419 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 101420 -NCIT:C188460 Childhood Anaplastic Large Cell Lymphoma, ALK-Positive 10 101421 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 10 101422 -NCIT:C9471 Childhood Systemic Anaplastic Large Cell Lymphoma 10 101423 -NCIT:C68692 Childhood Nasal Type Extranodal NK/T-Cell Lymphoma 9 101424 -NCIT:C80374 Systemic EBV-Positive T-Cell Lymphoma of Childhood 9 101425 -NCIT:C7616 Childhood Diffuse Large B-Cell Lymphoma 8 101426 -NCIT:C115204 Childhood Grade III Lymphomatoid Granulomatosis 9 101427 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 10 101428 -NCIT:C188455 Childhood Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 101429 -NCIT:C188456 Childhood EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 101430 -NCIT:C9079 Childhood Immunoblastic Lymphoma 9 101431 -NCIT:C80299 Pediatric Nodal Marginal Zone Lymphoma 8 101432 -NCIT:C9095 Childhood Burkitt Lymphoma 8 101433 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 9 101434 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 9 101435 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 9 101436 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 9 101437 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 9 101438 -NCIT:C9124 Childhood Lymphoblastic Lymphoma 8 101439 -NCIT:C7209 Childhood B Lymphoblastic Lymphoma 9 101440 -NCIT:C7210 Childhood T Lymphoblastic Lymphoma 9 101441 -NCIT:C9056 Ann Arbor Stage I Childhood Lymphoblastic Lymphoma 9 101442 -NCIT:C9057 Ann Arbor Stage II Childhood Lymphoblastic Lymphoma 9 101443 -NCIT:C9058 Ann Arbor Stage III Childhood Lymphoblastic Lymphoma 9 101444 -NCIT:C9059 Ann Arbor Stage IV Childhood Lymphoblastic Lymphoma 9 101445 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 9 101446 -NCIT:C7714 Childhood Hodgkin Lymphoma 7 101447 -NCIT:C114806 Childhood Favorable Prognosis Hodgkin Lymphoma 8 101448 -NCIT:C114808 Childhood Unfavorable Prognosis Hodgkin Lymphoma 8 101449 -NCIT:C115458 Refractory Childhood Hodgkin Lymphoma 8 101450 -NCIT:C141178 Lugano Classification Childhood Hodgkin Lymphoma by AJCC v8 Stage 8 101451 -NCIT:C141179 Lugano Classification Limited Stage Childhood Hodgkin Lymphoma AJCC v8 9 101452 -NCIT:C141180 Lugano Classification Stage I Childhood Hodgkin Lymphoma AJCC v8 10 101453 -NCIT:C141181 Lugano Classification Stage IE Childhood Hodgkin Lymphoma AJCC v8 10 101454 -NCIT:C141182 Lugano Classification Stage II Childhood Hodgkin Lymphoma AJCC v8 10 101455 -NCIT:C141184 Lugano Classification Stage II Bulky Childhood Hodgkin Lymphoma AJCC v8 11 101456 -NCIT:C141183 Lugano Classification Stage IIE Childhood Hodgkin Lymphoma AJCC v8 10 101457 -NCIT:C141185 Lugano Classification Advanced Stage Childhood Hodgkin Lymphoma AJCC v8 9 101458 -NCIT:C141186 Lugano Classification Stage III Childhood Hodgkin Lymphoma AJCC v8 10 101459 -NCIT:C141187 Lugano Classification Stage IV Childhood Hodgkin Lymphoma AJCC v8 10 101460 -NCIT:C141227 Childhood Hodgkin Lymphoma by Ann Arbor Stage 8 101461 -NCIT:C8055 Ann Arbor Stage II Childhood Hodgkin Lymphoma 9 101462 -NCIT:C8056 Ann Arbor Stage I Childhood Hodgkin Lymphoma 9 101463 -NCIT:C8057 Ann Arbor Stage III Childhood Hodgkin Lymphoma 9 101464 -NCIT:C8058 Ann Arbor Stage IV Childhood Hodgkin Lymphoma 9 101465 -NCIT:C69142 Childhood Classic Hodgkin Lymphoma 8 101466 -NCIT:C7054 Childhood Lymphocyte-Rich Classic Hodgkin Lymphoma 9 101467 -NCIT:C8061 Childhood Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 101468 -NCIT:C8062 Childhood Nodular Sclerosis Classic Hodgkin Lymphoma 9 101469 -NCIT:C8063 Childhood Mixed Cellularity Classic Hodgkin Lymphoma 9 101470 -NCIT:C8059 Recurrent Childhood Hodgkin Lymphoma 8 101471 -NCIT:C8060 Childhood Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 101472 -NCIT:C7185 Lymphoma by Site 6 101473 -NCIT:C126464 Fallopian Tube Lymphoma 7 101474 -NCIT:C162548 Penile Lymphoma 7 101475 -NCIT:C171101 Cutaneous Lymphoma 7 101476 -NCIT:C168651 Cutaneous Burkitt Lymphoma 8 101477 -NCIT:C45266 Cutaneous Mantle Cell Lymphoma 8 101478 -NCIT:C45268 Cutaneous Nasal Type Extranodal NK/T-Cell Lymphoma 8 101479 -NCIT:C45271 Cutaneous Angioimmunoblastic T-Cell Lymphoma 8 101480 -NCIT:C45272 Cutaneous Adult T-Cell Leukemia/Lymphoma 8 101481 -NCIT:C7162 Primary Cutaneous Lymphoma 8 101482 -NCIT:C142876 Recurrent Primary Cutaneous Lymphoma 9 101483 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 101484 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 10 101485 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 11 101486 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 11 101487 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 11 101488 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 11 101489 -NCIT:C8686 Recurrent Mycosis Fungoides 11 101490 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 12 101491 -NCIT:C142877 Refractory Primary Cutaneous Lymphoma 9 101492 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 101493 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 10 101494 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 11 101495 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 11 101496 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 11 101497 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 11 101498 -NCIT:C8687 Refractory Mycosis Fungoides 11 101499 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 12 101500 -NCIT:C188114 Primary Cutaneous Non-Hodgkin Lymphoma 9 101501 -NCIT:C3467 Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 10 101502 -NCIT:C172442 Advanced Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 11 101503 -NCIT:C180374 Early Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 11 101504 -NCIT:C3246 Mycosis Fungoides 11 101505 -NCIT:C141143 Mycosis Fungoides by AJCC v7 Stage 12 101506 -NCIT:C7796 Stage I Mycosis Fungoides AJCC v7 13 101507 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 14 101508 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 14 101509 -NCIT:C7798 Stage II Mycosis Fungoides AJCC v7 13 101510 -NCIT:C7800 Stage III Mycosis Fungoides AJCC v7 13 101511 -NCIT:C7802 Stage IV Mycosis Fungoides AJCC v7 13 101512 -NCIT:C165783 Transformed Mycosis Fungoides 12 101513 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 13 101514 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 13 101515 -NCIT:C8686 Recurrent Mycosis Fungoides 12 101516 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 13 101517 -NCIT:C8687 Refractory Mycosis Fungoides 12 101518 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 13 101519 -NCIT:C39644 Mycosis Fungoides Variant 11 101520 -NCIT:C35464 Granulomatous Slack Skin Disease 12 101521 -NCIT:C35685 Folliculotropic Mycosis Fungoides 12 101522 -NCIT:C35794 Pagetoid Reticulosis 12 101523 -NCIT:C45332 Primary Cutaneous Peripheral T-Cell Lymphoma, Rare Subtype 11 101524 -NCIT:C139023 Primary Cutaneous Acral CD8-Positive T-Cell Lymphoma 12 101525 -NCIT:C45339 Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 12 101526 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 13 101527 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 13 101528 -NCIT:C45340 Primary Cutaneous Gamma-Delta T-Cell Lymphoma 12 101529 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 13 101530 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 13 101531 -NCIT:C6860 Primary Cutaneous Anaplastic Large Cell Lymphoma 11 101532 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 12 101533 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 12 101534 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 12 101535 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 12 101536 -NCIT:C6918 Subcutaneous Panniculitis-Like T-Cell Lymphoma 11 101537 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 12 101538 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 12 101539 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 11 101540 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 12 101541 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 12 101542 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 12 101543 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 12 101544 -NCIT:C8686 Recurrent Mycosis Fungoides 12 101545 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 13 101546 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 11 101547 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 12 101548 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 12 101549 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 12 101550 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 12 101551 -NCIT:C8687 Refractory Mycosis Fungoides 12 101552 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 13 101553 -NCIT:C6858 Primary Cutaneous B-Cell Non-Hodgkin Lymphoma 10 101554 -NCIT:C45193 Primary Cutaneous Diffuse Large B-Cell Lymphoma 11 101555 -NCIT:C45194 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 12 101556 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 13 101557 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 13 101558 -NCIT:C45213 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Other 12 101559 -NCIT:C45214 Primary Cutaneous Intravascular Large B-Cell Lymphoma 13 101560 -NCIT:C45215 Primary Cutaneous T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 13 101561 -NCIT:C45216 Primary Cutaneous Plasmablastic Lymphoma 13 101562 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 11 101563 -NCIT:C7230 Primary Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 101564 -NCIT:C45163 Borrelia Burgdoferi-Associated Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 101565 -NCIT:C7221 Primary Cutaneous Hodgkin Lymphoma 9 101566 -NCIT:C7218 Cutaneous Follicular Lymphoma 8 101567 -NCIT:C6859 Grade 3 Cutaneous Follicular Lymphoma 9 101568 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 9 101569 -NCIT:C7219 Grade 2 Cutaneous Follicular Lymphoma 9 101570 -NCIT:C7220 Grade 1 Cutaneous Follicular Lymphoma 9 101571 -NCIT:C173170 Sinonasal Lymphoma 7 101572 -NCIT:C173171 Sinonasal Non-Hodgkin Lymphoma 8 101573 -NCIT:C173172 Sinonasal Extranodal NK/T-Cell Lymphoma 9 101574 -NCIT:C173173 Nasal Cavity Extranodal NK/T-Cell Lymphoma 10 101575 -NCIT:C6069 Paranasal Sinus Non-Hodgkin Lymphoma 9 101576 -NCIT:C6073 Paranasal Sinus Diffuse Large B-Cell Lymphoma 10 101577 -NCIT:C6075 Nasal Cavity Non-Hodgkin Lymphoma 9 101578 -NCIT:C173173 Nasal Cavity Extranodal NK/T-Cell Lymphoma 10 101579 -NCIT:C188081 Nasal Cavity Diffuse Large B-Cell Lymphoma 10 101580 -NCIT:C6068 Paranasal Sinus Lymphoma 8 101581 -NCIT:C6069 Paranasal Sinus Non-Hodgkin Lymphoma 9 101582 -NCIT:C6073 Paranasal Sinus Diffuse Large B-Cell Lymphoma 10 101583 -NCIT:C6074 Nasal Cavity Lymphoma 8 101584 -NCIT:C6075 Nasal Cavity Non-Hodgkin Lymphoma 9 101585 -NCIT:C173173 Nasal Cavity Extranodal NK/T-Cell Lymphoma 10 101586 -NCIT:C188081 Nasal Cavity Diffuse Large B-Cell Lymphoma 10 101587 -NCIT:C173354 Pharyngeal Lymphoma 7 101588 -NCIT:C173355 Pharyngeal Non-Hodgkin Lymphoma 8 101589 -NCIT:C173359 Nasopharyngeal Non-Hodgkin Lymphoma 9 101590 -NCIT:C173579 Oropharyngeal Non-Hodgkin Lymphoma 9 101591 -NCIT:C188072 Tonsillar Diffuse Large B-Cell Lymphoma 10 101592 -NCIT:C188080 Tonsillar Mantle Cell Lymphoma 10 101593 -NCIT:C173356 Pharyngeal Hodgkin Lymphoma 8 101594 -NCIT:C173361 Nasopharyngeal Hodgkin Lymphoma 9 101595 -NCIT:C173578 Oropharyngeal Hodgkin Lymphoma 9 101596 -NCIT:C173357 Nasopharyngeal Lymphoma 8 101597 -NCIT:C173359 Nasopharyngeal Non-Hodgkin Lymphoma 9 101598 -NCIT:C173361 Nasopharyngeal Hodgkin Lymphoma 9 101599 -NCIT:C173577 Oropharyngeal Lymphoma 8 101600 -NCIT:C173578 Oropharyngeal Hodgkin Lymphoma 9 101601 -NCIT:C173579 Oropharyngeal Non-Hodgkin Lymphoma 9 101602 -NCIT:C188072 Tonsillar Diffuse Large B-Cell Lymphoma 10 101603 -NCIT:C188080 Tonsillar Mantle Cell Lymphoma 10 101604 -NCIT:C5918 Tonsillar Lymphoma 9 101605 -NCIT:C188072 Tonsillar Diffuse Large B-Cell Lymphoma 10 101606 -NCIT:C188080 Tonsillar Mantle Cell Lymphoma 10 101607 -NCIT:C173690 Salivary Gland Lymphoma 7 101608 -NCIT:C173691 Salivary Gland Non-Hodgkin Lymphoma 8 101609 -NCIT:C173693 Salivary Gland Mucosa-Associated Lymphoid Tissue Lymphoma 9 101610 -NCIT:C35687 Parotid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 10 101611 -NCIT:C173715 Salivary Gland Follicular Lymphoma 9 101612 -NCIT:C173716 Parotid Gland Follicular Lymphoma 10 101613 -NCIT:C173717 Salivary Gland Diffuse Large B-Cell Lymphoma 9 101614 -NCIT:C173719 Parotid Gland Diffuse Large B-Cell Lymphoma 10 101615 -NCIT:C5981 Major Salivary Gland Non-Hodgkin Lymphoma 9 101616 -NCIT:C5951 Parotid Gland Non-Hodgkin Lymphoma 10 101617 -NCIT:C173716 Parotid Gland Follicular Lymphoma 11 101618 -NCIT:C173719 Parotid Gland Diffuse Large B-Cell Lymphoma 11 101619 -NCIT:C181210 Parotid Gland Mantle Cell Lymphoma 11 101620 -NCIT:C35687 Parotid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 11 101621 -NCIT:C173692 Salivary Gland Hodgkin Lymphoma 8 101622 -NCIT:C185752 Extranodal Lymphoma 7 101623 -NCIT:C185753 Extranodal Non-Hodgkin Lymphoma 8 101624 -NCIT:C188114 Primary Cutaneous Non-Hodgkin Lymphoma 9 101625 -NCIT:C3467 Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 10 101626 -NCIT:C172442 Advanced Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 11 101627 -NCIT:C180374 Early Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 11 101628 -NCIT:C3246 Mycosis Fungoides 11 101629 -NCIT:C141143 Mycosis Fungoides by AJCC v7 Stage 12 101630 -NCIT:C7796 Stage I Mycosis Fungoides AJCC v7 13 101631 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 14 101632 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 14 101633 -NCIT:C7798 Stage II Mycosis Fungoides AJCC v7 13 101634 -NCIT:C7800 Stage III Mycosis Fungoides AJCC v7 13 101635 -NCIT:C7802 Stage IV Mycosis Fungoides AJCC v7 13 101636 -NCIT:C165783 Transformed Mycosis Fungoides 12 101637 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 13 101638 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 13 101639 -NCIT:C8686 Recurrent Mycosis Fungoides 12 101640 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 13 101641 -NCIT:C8687 Refractory Mycosis Fungoides 12 101642 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 13 101643 -NCIT:C39644 Mycosis Fungoides Variant 11 101644 -NCIT:C35464 Granulomatous Slack Skin Disease 12 101645 -NCIT:C35685 Folliculotropic Mycosis Fungoides 12 101646 -NCIT:C35794 Pagetoid Reticulosis 12 101647 -NCIT:C45332 Primary Cutaneous Peripheral T-Cell Lymphoma, Rare Subtype 11 101648 -NCIT:C139023 Primary Cutaneous Acral CD8-Positive T-Cell Lymphoma 12 101649 -NCIT:C45339 Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 12 101650 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 13 101651 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 13 101652 -NCIT:C45340 Primary Cutaneous Gamma-Delta T-Cell Lymphoma 12 101653 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 13 101654 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 13 101655 -NCIT:C6860 Primary Cutaneous Anaplastic Large Cell Lymphoma 11 101656 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 12 101657 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 12 101658 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 12 101659 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 12 101660 -NCIT:C6918 Subcutaneous Panniculitis-Like T-Cell Lymphoma 11 101661 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 12 101662 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 12 101663 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 11 101664 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 12 101665 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 12 101666 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 12 101667 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 12 101668 -NCIT:C8686 Recurrent Mycosis Fungoides 12 101669 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 13 101670 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 11 101671 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 12 101672 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 12 101673 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 12 101674 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 12 101675 -NCIT:C8687 Refractory Mycosis Fungoides 12 101676 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 13 101677 -NCIT:C6858 Primary Cutaneous B-Cell Non-Hodgkin Lymphoma 10 101678 -NCIT:C45193 Primary Cutaneous Diffuse Large B-Cell Lymphoma 11 101679 -NCIT:C45194 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 12 101680 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 13 101681 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 13 101682 -NCIT:C45213 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Other 12 101683 -NCIT:C45214 Primary Cutaneous Intravascular Large B-Cell Lymphoma 13 101684 -NCIT:C45215 Primary Cutaneous T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 13 101685 -NCIT:C45216 Primary Cutaneous Plasmablastic Lymphoma 13 101686 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 11 101687 -NCIT:C7230 Primary Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 101688 -NCIT:C45163 Borrelia Burgdoferi-Associated Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 101689 -NCIT:C3898 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 101690 -NCIT:C123394 Childhood Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 101691 -NCIT:C141260 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue by Ann Arbor Stage 10 101692 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 101693 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 101694 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 101695 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 101696 -NCIT:C172844 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue Involving the Digestive System 10 101697 -NCIT:C5266 Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 11 101698 -NCIT:C27763 Helicobacter Pylori-Associated Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 12 101699 -NCIT:C5635 Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 11 101700 -NCIT:C45166 Campylobacter Jejuni-Associated Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 12 101701 -NCIT:C5768 Liver Mucosa-Associated Lymphoid Tissue Lymphoma 11 101702 -NCIT:C95626 Esophageal Mucosa-Associated Lymphoid Tissue Lymphoma 11 101703 -NCIT:C96506 Colorectal Mucosa-Associated Lymphoid Tissue Lymphoma 11 101704 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 12 101705 -NCIT:C173693 Salivary Gland Mucosa-Associated Lymphoid Tissue Lymphoma 10 101706 -NCIT:C35687 Parotid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 11 101707 -NCIT:C181910 Endometrial Mucosa-Associated Lymphoid Tissue Lymphoma 10 101708 -NCIT:C35688 Breast Mucosa-Associated Lymphoid Tissue Lymphoma 10 101709 -NCIT:C35689 Ocular Adnexal Mucosa-Associated Lymphoid Tissue Lymphoma 10 101710 -NCIT:C175431 Conjunctival Mucosa-Associated Lymphoid Tissue Lymphoma 11 101711 -NCIT:C175482 Lacrimal System Mucosa-Associated Lymphoid Tissue Lymphoma 11 101712 -NCIT:C175483 Lacrimal Gland Mucosa-Associated Lymphoid Tissue Lymphoma 12 101713 -NCIT:C175484 Lacrimal Drainage System Mucosa-Associated Lymphoid Tissue Lymphoma 12 101714 -NCIT:C182357 Diffusion Restriction 11 101715 -NCIT:C44960 Chlamydia Psittaci-Associated Ocular Adnexal Mucosa-Associated Lymphoid Tissue Lymphoma 11 101716 -NCIT:C39878 Bladder Mucosa-Associated Lymphoid Tissue Lymphoma 10 101717 -NCIT:C45380 Thymic Mucosa-Associated Lymphoid Tissue Lymphoma 10 101718 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 101719 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 101720 -NCIT:C5264 Lung Mucosa-Associated Lymphoid Tissue Lymphoma 10 101721 -NCIT:C7230 Primary Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 101722 -NCIT:C45163 Borrelia Burgdoferi-Associated Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 101723 -NCIT:C7601 Thyroid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 10 101724 -NCIT:C95991 Dural Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 101725 -NCIT:C4684 Nasal Type Extranodal NK/T-Cell Lymphoma 9 101726 -NCIT:C115154 Adult Nasal Type Extranodal NK/T-Cell Lymphoma 10 101727 -NCIT:C141296 Nasal Type NK/T-Cell Lymphoma by Ann Arbor Stage 10 101728 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 11 101729 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 11 101730 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 11 101731 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 11 101732 -NCIT:C162468 Testicular Nasal Type Extranodal NK/T-Cell Lymphoma 10 101733 -NCIT:C173172 Sinonasal Extranodal NK/T-Cell Lymphoma 10 101734 -NCIT:C173173 Nasal Cavity Extranodal NK/T-Cell Lymphoma 11 101735 -NCIT:C45268 Cutaneous Nasal Type Extranodal NK/T-Cell Lymphoma 10 101736 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 10 101737 -NCIT:C68692 Childhood Nasal Type Extranodal NK/T-Cell Lymphoma 10 101738 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 10 101739 -NCIT:C35690 Eye Lymphoma 7 101740 -NCIT:C88145 Ocular Adnexal Non-Hodgkin Lymphoma 8 101741 -NCIT:C175432 Conjunctival Non-Hodgkin Lymphoma 9 101742 -NCIT:C175430 Conjunctival Follicular Lymphoma 10 101743 -NCIT:C175431 Conjunctival Mucosa-Associated Lymphoid Tissue Lymphoma 10 101744 -NCIT:C175433 Conjunctival Diffuse Large B-Cell Lymphoma 10 101745 -NCIT:C175479 Lacrimal System Non-Hodgkin Lymphoma 9 101746 -NCIT:C175480 Lacrimal Gland Non-Hodgkin Lymphoma 10 101747 -NCIT:C175483 Lacrimal Gland Mucosa-Associated Lymphoid Tissue Lymphoma 11 101748 -NCIT:C175486 Lacrimal Gland Diffuse Large B-Cell Lymphoma 11 101749 -NCIT:C175488 Lacrimal Gland Follicular Lymphoma 11 101750 -NCIT:C175481 Lacrimal Drainage System Non-Hodgkin Lymphoma 10 101751 -NCIT:C175484 Lacrimal Drainage System Mucosa-Associated Lymphoid Tissue Lymphoma 11 101752 -NCIT:C175487 Lacrimal Drainage System Diffuse Large B-Cell Lymphoma 11 101753 -NCIT:C175482 Lacrimal System Mucosa-Associated Lymphoid Tissue Lymphoma 10 101754 -NCIT:C175483 Lacrimal Gland Mucosa-Associated Lymphoid Tissue Lymphoma 11 101755 -NCIT:C175484 Lacrimal Drainage System Mucosa-Associated Lymphoid Tissue Lymphoma 11 101756 -NCIT:C175485 Lacrimal System Diffuse Large B-Cell Lymphoma 10 101757 -NCIT:C175486 Lacrimal Gland Diffuse Large B-Cell Lymphoma 11 101758 -NCIT:C175487 Lacrimal Drainage System Diffuse Large B-Cell Lymphoma 11 101759 -NCIT:C35689 Ocular Adnexal Mucosa-Associated Lymphoid Tissue Lymphoma 9 101760 -NCIT:C175431 Conjunctival Mucosa-Associated Lymphoid Tissue Lymphoma 10 101761 -NCIT:C175482 Lacrimal System Mucosa-Associated Lymphoid Tissue Lymphoma 10 101762 -NCIT:C175483 Lacrimal Gland Mucosa-Associated Lymphoid Tissue Lymphoma 11 101763 -NCIT:C175484 Lacrimal Drainage System Mucosa-Associated Lymphoid Tissue Lymphoma 11 101764 -NCIT:C182357 Diffusion Restriction 10 101765 -NCIT:C44960 Chlamydia Psittaci-Associated Ocular Adnexal Mucosa-Associated Lymphoid Tissue Lymphoma 10 101766 -NCIT:C9184 Primary Intraocular Non-Hodgkin Lymphoma 8 101767 -NCIT:C157065 Primary Vitreoretinal Non-Hodgkin Lymphoma 9 101768 -NCIT:C157067 Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 101769 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 101770 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 101771 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 10 101772 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 101773 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 10 101774 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 101775 -NCIT:C4365 Primary Retinal Non-Hodgkin Lymphoma 10 101776 -NCIT:C175451 Primary Uveal Non-Hodgkin Lymphoma 9 101777 -NCIT:C175464 Primary Choroidal Non-Hodgkin Lymphoma 10 101778 -NCIT:C175466 Primary Ciliary Body Non-Hodgkin Lymphoma 10 101779 -NCIT:C175467 Primary Iris Non-Hodgkin Lymphoma 10 101780 -NCIT:C38162 Digestive System Lymphoma 7 101781 -NCIT:C38161 Digestive System Non-Hodgkin Lymphoma 8 101782 -NCIT:C150495 Intestinal T-Cell Lymphoma 9 101783 -NCIT:C150505 Intestinal T-Cell Lymphoma, Not Otherwise Specified 10 101784 -NCIT:C4737 Enteropathy-Associated T-Cell Lymphoma 10 101785 -NCIT:C141295 Enteropathy-Associated T-Cell Lymphoma by Ann Arbor Stage 11 101786 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 12 101787 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 12 101788 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 12 101789 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 12 101790 -NCIT:C39610 Small Intestinal Enteropathy-Associated T-Cell Lymphoma 11 101791 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 11 101792 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 11 101793 -NCIT:C96058 Monomorphic Epitheliotropic Intestinal T-Cell Lymphoma 10 101794 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 11 101795 -NCIT:C150504 Small Intestinal Monomorphic Epitheliotropic T-Cell Lymphoma 11 101796 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 11 101797 -NCIT:C172844 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue Involving the Digestive System 9 101798 -NCIT:C5266 Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 10 101799 -NCIT:C27763 Helicobacter Pylori-Associated Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 11 101800 -NCIT:C5635 Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 10 101801 -NCIT:C45166 Campylobacter Jejuni-Associated Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 11 101802 -NCIT:C5768 Liver Mucosa-Associated Lymphoid Tissue Lymphoma 10 101803 -NCIT:C95626 Esophageal Mucosa-Associated Lymphoid Tissue Lymphoma 10 101804 -NCIT:C96506 Colorectal Mucosa-Associated Lymphoid Tissue Lymphoma 10 101805 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 11 101806 -NCIT:C172850 Digestive System Diffuse Large B-Cell Lymphoma 9 101807 -NCIT:C5253 Gastric Diffuse Large B-Cell Lymphoma 10 101808 -NCIT:C95625 Esophageal Diffuse Large B-Cell Lymphoma 10 101809 -NCIT:C96055 Small Intestinal Diffuse Large B-Cell Lymphoma 10 101810 -NCIT:C96057 Small Intestinal High Grade B-Cell Lymphoma, Not Otherwise Specified 11 101811 -NCIT:C96503 Colorectal Diffuse Large B-Cell Lymphoma 10 101812 -NCIT:C96501 Colorectal High Grade B-Cell Lymphoma, Not Otherwise Specified 11 101813 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 11 101814 -NCIT:C96843 Liver Diffuse Large B-Cell Lymphoma 10 101815 -NCIT:C27235 Gastric Non-Hodgkin Lymphoma 9 101816 -NCIT:C5251 Gastric Burkitt Lymphoma 10 101817 -NCIT:C5253 Gastric Diffuse Large B-Cell Lymphoma 10 101818 -NCIT:C5254 Gastric T-Cell Non-Hodgkin Lymphoma 10 101819 -NCIT:C5266 Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 10 101820 -NCIT:C27763 Helicobacter Pylori-Associated Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 11 101821 -NCIT:C4339 Multifocal Lymphomatous Polyposis 9 101822 -NCIT:C5688 Esophageal Non-Hodgkin Lymphoma 9 101823 -NCIT:C95625 Esophageal Diffuse Large B-Cell Lymphoma 10 101824 -NCIT:C95626 Esophageal Mucosa-Associated Lymphoid Tissue Lymphoma 10 101825 -NCIT:C5766 Liver Non-Hodgkin Lymphoma 9 101826 -NCIT:C5768 Liver Mucosa-Associated Lymphoid Tissue Lymphoma 10 101827 -NCIT:C8459 Hepatosplenic T-Cell Lymphoma 10 101828 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 11 101829 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 11 101830 -NCIT:C96843 Liver Diffuse Large B-Cell Lymphoma 10 101831 -NCIT:C5789 Pancreatic Non-Hodgkin Lymphoma 9 101832 -NCIT:C7231 Small Intestinal Non-Hodgkin Lymphoma 9 101833 -NCIT:C96053 Small Intestinal B-Cell Non-Hodgkin Lymphoma 10 101834 -NCIT:C27409 Small Intestinal Burkitt Lymphoma 11 101835 -NCIT:C27410 Small Intestinal Atypical Burkitt/Burkitt-Like Lymphoma 12 101836 -NCIT:C27441 Small Intestinal Mantle Cell Lymphoma 11 101837 -NCIT:C3132 Alpha Heavy Chain Disease 11 101838 -NCIT:C5635 Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 11 101839 -NCIT:C45166 Campylobacter Jejuni-Associated Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 12 101840 -NCIT:C96055 Small Intestinal Diffuse Large B-Cell Lymphoma 11 101841 -NCIT:C96057 Small Intestinal High Grade B-Cell Lymphoma, Not Otherwise Specified 12 101842 -NCIT:C96056 Small Intestinal Follicular Lymphoma 11 101843 -NCIT:C96054 Small Intestinal T-Cell Non-Hodgkin Lymphoma 10 101844 -NCIT:C150504 Small Intestinal Monomorphic Epitheliotropic T-Cell Lymphoma 11 101845 -NCIT:C39610 Small Intestinal Enteropathy-Associated T-Cell Lymphoma 11 101846 -NCIT:C7465 AIDS-Related Anal Non-Hodgkin Lymphoma 9 101847 -NCIT:C80298 Intestinal Follicular Lymphoma 9 101848 -NCIT:C96056 Small Intestinal Follicular Lymphoma 10 101849 -NCIT:C96499 Colorectal Non-Hodgkin Lymphoma 9 101850 -NCIT:C4950 Colon Non-Hodgkin Lymphoma 10 101851 -NCIT:C27411 Colon Mantle Cell Lymphoma 11 101852 -NCIT:C27465 Colon Burkitt Lymphoma 11 101853 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 11 101854 -NCIT:C5521 Cecum Non-Hodgkin Lymphoma 11 101855 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 11 101856 -NCIT:C96502 Colorectal Burkitt Lymphoma 10 101857 -NCIT:C27465 Colon Burkitt Lymphoma 11 101858 -NCIT:C96503 Colorectal Diffuse Large B-Cell Lymphoma 10 101859 -NCIT:C96501 Colorectal High Grade B-Cell Lymphoma, Not Otherwise Specified 11 101860 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 11 101861 -NCIT:C96505 Colorectal Mantle Cell Lymphoma 10 101862 -NCIT:C27411 Colon Mantle Cell Lymphoma 11 101863 -NCIT:C96506 Colorectal Mucosa-Associated Lymphoid Tissue Lymphoma 10 101864 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 11 101865 -NCIT:C38163 Digestive System Hodgkin Lymphoma 8 101866 -NCIT:C5337 Small Intestinal Hodgkin Lymphoma 9 101867 -NCIT:C5638 Gastric Hodgkin Lymphoma 9 101868 -NCIT:C5689 Esophageal Hodgkin Lymphoma 9 101869 -NCIT:C96500 Colorectal Hodgkin Lymphoma 9 101870 -NCIT:C5499 Colon Hodgkin Lymphoma 10 101871 -NCIT:C4007 Small Intestinal Lymphoma 8 101872 -NCIT:C5337 Small Intestinal Hodgkin Lymphoma 9 101873 -NCIT:C7231 Small Intestinal Non-Hodgkin Lymphoma 9 101874 -NCIT:C96053 Small Intestinal B-Cell Non-Hodgkin Lymphoma 10 101875 -NCIT:C27409 Small Intestinal Burkitt Lymphoma 11 101876 -NCIT:C27410 Small Intestinal Atypical Burkitt/Burkitt-Like Lymphoma 12 101877 -NCIT:C27441 Small Intestinal Mantle Cell Lymphoma 11 101878 -NCIT:C3132 Alpha Heavy Chain Disease 11 101879 -NCIT:C5635 Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 11 101880 -NCIT:C45166 Campylobacter Jejuni-Associated Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 12 101881 -NCIT:C96055 Small Intestinal Diffuse Large B-Cell Lymphoma 11 101882 -NCIT:C96057 Small Intestinal High Grade B-Cell Lymphoma, Not Otherwise Specified 12 101883 -NCIT:C96056 Small Intestinal Follicular Lymphoma 11 101884 -NCIT:C96054 Small Intestinal T-Cell Non-Hodgkin Lymphoma 10 101885 -NCIT:C150504 Small Intestinal Monomorphic Epitheliotropic T-Cell Lymphoma 11 101886 -NCIT:C39610 Small Intestinal Enteropathy-Associated T-Cell Lymphoma 11 101887 -NCIT:C4636 Gastric Lymphoma 8 101888 -NCIT:C27235 Gastric Non-Hodgkin Lymphoma 9 101889 -NCIT:C5251 Gastric Burkitt Lymphoma 10 101890 -NCIT:C5253 Gastric Diffuse Large B-Cell Lymphoma 10 101891 -NCIT:C5254 Gastric T-Cell Non-Hodgkin Lymphoma 10 101892 -NCIT:C5266 Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 10 101893 -NCIT:C27763 Helicobacter Pylori-Associated Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 11 101894 -NCIT:C5638 Gastric Hodgkin Lymphoma 9 101895 -NCIT:C4949 Liver Lymphoma 8 101896 -NCIT:C5766 Liver Non-Hodgkin Lymphoma 9 101897 -NCIT:C5768 Liver Mucosa-Associated Lymphoid Tissue Lymphoma 10 101898 -NCIT:C8459 Hepatosplenic T-Cell Lymphoma 10 101899 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 11 101900 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 11 101901 -NCIT:C96843 Liver Diffuse Large B-Cell Lymphoma 10 101902 -NCIT:C5513 Appendix Lymphoma 8 101903 -NCIT:C5601 Anal Lymphoma 8 101904 -NCIT:C7465 AIDS-Related Anal Non-Hodgkin Lymphoma 9 101905 -NCIT:C5687 Esophageal Lymphoma 8 101906 -NCIT:C5688 Esophageal Non-Hodgkin Lymphoma 9 101907 -NCIT:C95625 Esophageal Diffuse Large B-Cell Lymphoma 10 101908 -NCIT:C95626 Esophageal Mucosa-Associated Lymphoid Tissue Lymphoma 10 101909 -NCIT:C5689 Esophageal Hodgkin Lymphoma 9 101910 -NCIT:C5714 Pancreatic Lymphoma 8 101911 -NCIT:C5789 Pancreatic Non-Hodgkin Lymphoma 9 101912 -NCIT:C5734 Gallbladder Lymphoma 8 101913 -NCIT:C96498 Colorectal Lymphoma 8 101914 -NCIT:C4793 Colon Lymphoma 9 101915 -NCIT:C4950 Colon Non-Hodgkin Lymphoma 10 101916 -NCIT:C27411 Colon Mantle Cell Lymphoma 11 101917 -NCIT:C27465 Colon Burkitt Lymphoma 11 101918 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 11 101919 -NCIT:C5521 Cecum Non-Hodgkin Lymphoma 11 101920 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 11 101921 -NCIT:C5499 Colon Hodgkin Lymphoma 10 101922 -NCIT:C5515 Cecum Lymphoma 10 101923 -NCIT:C5521 Cecum Non-Hodgkin Lymphoma 11 101924 -NCIT:C5553 Rectal Lymphoma 9 101925 -NCIT:C96499 Colorectal Non-Hodgkin Lymphoma 9 101926 -NCIT:C4950 Colon Non-Hodgkin Lymphoma 10 101927 -NCIT:C27411 Colon Mantle Cell Lymphoma 11 101928 -NCIT:C27465 Colon Burkitt Lymphoma 11 101929 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 11 101930 -NCIT:C5521 Cecum Non-Hodgkin Lymphoma 11 101931 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 11 101932 -NCIT:C96502 Colorectal Burkitt Lymphoma 10 101933 -NCIT:C27465 Colon Burkitt Lymphoma 11 101934 -NCIT:C96503 Colorectal Diffuse Large B-Cell Lymphoma 10 101935 -NCIT:C96501 Colorectal High Grade B-Cell Lymphoma, Not Otherwise Specified 11 101936 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 11 101937 -NCIT:C96505 Colorectal Mantle Cell Lymphoma 10 101938 -NCIT:C27411 Colon Mantle Cell Lymphoma 11 101939 -NCIT:C96506 Colorectal Mucosa-Associated Lymphoid Tissue Lymphoma 10 101940 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 11 101941 -NCIT:C96500 Colorectal Hodgkin Lymphoma 9 101942 -NCIT:C5499 Colon Hodgkin Lymphoma 10 101943 -NCIT:C96952 Extrahepatic Bile Duct Lymphoma 8 101944 -NCIT:C40021 Ovarian Lymphoma 7 101945 -NCIT:C45687 Pleural Lymphoma 7 101946 -NCIT:C183135 Pleural Primary Effusion Lymphoma 8 101947 -NCIT:C45691 Pyothorax-Associated Lymphoma 8 101948 -NCIT:C4671 Breast Lymphoma 7 101949 -NCIT:C138023 Recurrent Breast Lymphoma 8 101950 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 101951 -NCIT:C138024 Refractory Breast Lymphoma 8 101952 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 101953 -NCIT:C5181 Breast Non-Hodgkin Lymphoma 8 101954 -NCIT:C35688 Breast Mucosa-Associated Lymphoid Tissue Lymphoma 9 101955 -NCIT:C40375 Breast Diffuse Large B-Cell Lymphoma 9 101956 -NCIT:C40376 Breast Burkitt Lymphoma 9 101957 -NCIT:C40377 Breast Follicular Lymphoma 9 101958 -NCIT:C5182 Breast T-Cell Non-Hodgkin Lymphoma 9 101959 -NCIT:C139012 Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 101960 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 11 101961 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 11 101962 -NCIT:C4794 Lung Lymphoma 7 101963 -NCIT:C181205 Lung Hodgkin Lymphoma 8 101964 -NCIT:C5684 Lung Non-Hodgkin Lymphoma 8 101965 -NCIT:C181211 Lung Follicular Lymphoma 9 101966 -NCIT:C188082 Lung Anaplastic Large Cell Lymphoma 9 101967 -NCIT:C45605 Lung Diffuse Large B-Cell Lymphoma 9 101968 -NCIT:C183121 Lung Intravascular Large B-Cell Lymphoma 10 101969 -NCIT:C5264 Lung Mucosa-Associated Lymphoid Tissue Lymphoma 9 101970 -NCIT:C48873 Splenic Lymphoma 7 101971 -NCIT:C7294 Splenic Non-Hodgkin Lymphoma 8 101972 -NCIT:C4663 Splenic Marginal Zone Lymphoma 9 101973 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 10 101974 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 10 101975 -NCIT:C7307 Splenic Follicular Lymphoma 9 101976 -NCIT:C7308 Splenic Diffuse Large B-Cell Lymphoma 9 101977 -NCIT:C7309 Splenic Burkitt Lymphoma 9 101978 -NCIT:C80309 Splenic Diffuse Red Pulp Small B-Cell Lymphoma 9 101979 -NCIT:C8459 Hepatosplenic T-Cell Lymphoma 9 101980 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 10 101981 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 10 101982 -NCIT:C7295 Splenic Hodgkin Lymphoma 8 101983 -NCIT:C5265 Thyroid Gland Lymphoma 7 101984 -NCIT:C181209 Thyroid Gland Hodgkin Lymphoma 8 101985 -NCIT:C6044 Thyroid Gland Non-Hodgkin Lymphoma 8 101986 -NCIT:C156410 Thyroid Gland Follicular Lymphoma 9 101987 -NCIT:C6046 Thyroid Gland Diffuse Large B-Cell Lymphoma 9 101988 -NCIT:C7263 Thyroid Gland Immunoblastic Lymphoma 10 101989 -NCIT:C7601 Thyroid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 9 101990 -NCIT:C5368 Cardiac Lymphoma 7 101991 -NCIT:C183146 Cardiac Diffuse Large B-Cell Lymphoma 8 101992 -NCIT:C183141 Cardiac Fibrin-Associated Diffuse Large B-Cell Lymphoma 9 101993 -NCIT:C5369 Secondary Heart Lymphoma 7 101994 -NCIT:C5533 Prostate Lymphoma 7 101995 -NCIT:C5534 Prostate Non-Hodgkin Lymphoma 8 101996 -NCIT:C161602 Prostate Diffuse Large B-Cell Lymphoma 9 101997 -NCIT:C161603 Prostate Follicular Lymphoma 9 101998 -NCIT:C161604 Prostate Mantle Cell Lymphoma 9 101999 -NCIT:C161605 Prostate Small Lymphocytic Lymphoma 9 102000 -NCIT:C6164 Bladder Lymphoma 7 102001 -NCIT:C39878 Bladder Mucosa-Associated Lymphoid Tissue Lymphoma 8 102002 -NCIT:C6175 Ureter Lymphoma 7 102003 -NCIT:C6244 Orbit Lymphoma 7 102004 -NCIT:C6248 Tracheal Lymphoma 7 102005 -NCIT:C63532 Kidney Lymphoma 7 102006 -NCIT:C188075 Kidney Burkitt Lymphoma 8 102007 -NCIT:C63533 Kidney Diffuse Large B-Cell Lymphoma 8 102008 -NCIT:C6620 Primary Bone Lymphoma 7 102009 -NCIT:C121930 Primary Bone Non-Hodgkin Lymphoma 8 102010 -NCIT:C173811 Primary Bone Diffuse Large B-Cell Lymphoma 9 102011 -NCIT:C157681 Recurrent Primary Bone Lymphoma 8 102012 -NCIT:C157682 Refractory Primary Bone Lymphoma 8 102013 -NCIT:C181207 Primary Bone Hodgkin Lymphoma 8 102014 -NCIT:C6633 Mediastinal Lymphoma 7 102015 -NCIT:C153175 Recurrent Mediastinal Lymphoma 8 102016 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 102017 -NCIT:C153177 Refractory Mediastinal Lymphoma 8 102018 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 102019 -NCIT:C171037 Mediastinal Non-Hodgkin Lymphoma 8 102020 -NCIT:C45380 Thymic Mucosa-Associated Lymphoid Tissue Lymphoma 9 102021 -NCIT:C45740 Mediastinal T Lymphoblastic Lymphoma 9 102022 -NCIT:C9280 Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 102023 -NCIT:C141262 Primary Mediastinal (Thymic) Large B-Cell Lymphoma by Ann Arbor Stage 10 102024 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 102025 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 102026 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 102027 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 102028 -NCIT:C188455 Childhood Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 102029 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 102030 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 102031 -NCIT:C37870 Mediastinal B-Cell Lymphoma, Unclassifiable, with Features Intermediate between Diffuse Large B-Cell Lymphoma and Classic Hodgkin Lymphoma 8 102032 -NCIT:C6451 Thymic Lymphoma 8 102033 -NCIT:C45380 Thymic Mucosa-Associated Lymphoid Tissue Lymphoma 9 102034 -NCIT:C9280 Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 102035 -NCIT:C141262 Primary Mediastinal (Thymic) Large B-Cell Lymphoma by Ann Arbor Stage 10 102036 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 102037 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 102038 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 102039 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 102040 -NCIT:C188455 Childhood Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 102041 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 102042 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 102043 -NCIT:C95057 Thymic Hodgkin Lymphoma 9 102044 -NCIT:C6634 Mediastinal Hodgkin Lymphoma 8 102045 -NCIT:C95057 Thymic Hodgkin Lymphoma 9 102046 -NCIT:C6712 Chest Wall Lymphoma 7 102047 -NCIT:C6716 Sternal Lymphoma 8 102048 -NCIT:C6723 Chest Wall Hodgkin Lymphoma 8 102049 -NCIT:C6810 Testicular Lymphoma 7 102050 -NCIT:C138021 Recurrent Testicular Lymphoma 8 102051 -NCIT:C138022 Refractory Testicular Lymphoma 8 102052 -NCIT:C150589 Testicular Follicular Lymphoma 8 102053 -NCIT:C162467 Testicular Diffuse Large B-Cell Lymphoma 8 102054 -NCIT:C162468 Testicular Nasal Type Extranodal NK/T-Cell Lymphoma 8 102055 -NCIT:C7353 Retroperitoneal Lymphoma 7 102056 -NCIT:C156945 Adrenal Gland Lymphoma 8 102057 -NCIT:C87797 Secondary Central Nervous System Lymphoma 7 102058 -NCIT:C114949 Secondary Central Nervous System Hodgkin Lymphoma 8 102059 -NCIT:C5057 Secondary Cerebral Hodgkin Lymphoma 9 102060 -NCIT:C114950 Secondary Central Nervous System Non-Hodgkin Lymphoma 8 102061 -NCIT:C9301 Central Nervous System Lymphoma 7 102062 -NCIT:C114779 Central Nervous System Non-Hodgkin Lymphoma 8 102063 -NCIT:C146989 Refractory Central Nervous System Non-Hodgkin Lymphoma 9 102064 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 10 102065 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 102066 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 10 102067 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 102068 -NCIT:C146990 Recurrent Central Nervous System Non-Hodgkin Lymphoma 9 102069 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 10 102070 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 102071 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 10 102072 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 102073 -NCIT:C147948 Central Nervous System B-Cell Non-Hodgkin Lymphoma 9 102074 -NCIT:C71720 Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 10 102075 -NCIT:C129602 Central Nervous System Intravascular Large B-Cell Lymphoma 11 102076 -NCIT:C155797 Pituitary Gland Diffuse Large B-Cell Lymphoma 11 102077 -NCIT:C157067 Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 102078 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 12 102079 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 12 102080 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 11 102081 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 12 102082 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 11 102083 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 12 102084 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 11 102085 -NCIT:C95991 Dural Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 102086 -NCIT:C155796 Pituitary Gland Non-Hodgkin Lymphoma 9 102087 -NCIT:C155797 Pituitary Gland Diffuse Large B-Cell Lymphoma 10 102088 -NCIT:C157065 Primary Vitreoretinal Non-Hodgkin Lymphoma 9 102089 -NCIT:C157067 Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 102090 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 102091 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 102092 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 10 102093 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 102094 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 10 102095 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 102096 -NCIT:C4365 Primary Retinal Non-Hodgkin Lymphoma 10 102097 -NCIT:C5409 Central Nervous System T-Cell Non-Hodgkin Lymphoma 9 102098 -NCIT:C129600 Central Nervous System Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 10 102099 -NCIT:C5322 Central Nervous System Anaplastic Large Cell Lymphoma 11 102100 -NCIT:C129598 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Positive 12 102101 -NCIT:C129599 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Negative 12 102102 -NCIT:C7609 Cerebral Non-Hodgkin Lymphoma 9 102103 -NCIT:C114951 Central Nervous System Hodgkin Lymphoma 8 102104 -NCIT:C5055 Cerebral Hodgkin Lymphoma 9 102105 -NCIT:C138019 Recurrent Central Nervous System Lymphoma 8 102106 -NCIT:C146990 Recurrent Central Nervous System Non-Hodgkin Lymphoma 9 102107 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 10 102108 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 102109 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 10 102110 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 102111 -NCIT:C138020 Refractory Central Nervous System Lymphoma 8 102112 -NCIT:C146989 Refractory Central Nervous System Non-Hodgkin Lymphoma 9 102113 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 10 102114 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 102115 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 10 102116 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 102117 -NCIT:C186658 Immunodeficiency-Related Central Nervous System Lymphoma 8 102118 -NCIT:C8284 AIDS-Related Primary Central Nervous System Lymphoma 9 102119 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 10 102120 -NCIT:C5157 Spinal Cord Lymphoma 8 102121 -NCIT:C7611 Cerebral Lymphoma 8 102122 -NCIT:C5054 Cerebral Lymphoma in Immunocompetent Host 9 102123 -NCIT:C5055 Cerebral Hodgkin Lymphoma 9 102124 -NCIT:C7609 Cerebral Non-Hodgkin Lymphoma 9 102125 -NCIT:C94756 Meningeal Lymphoma 8 102126 -NCIT:C95991 Dural Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 102127 -NCIT:C7587 Adult Lymphoma 6 102128 -NCIT:C141148 Lugano Classification Adult Lymphoma by AJCC v8 Stage 7 102129 -NCIT:C141149 Lugano Classification Limited Stage Adult Lymphoma AJCC v8 8 102130 -NCIT:C141150 Lugano Classification Stage I Adult Lymphoma AJCC v8 9 102131 -NCIT:C141160 Lugano Classification Stage I Adult Non-Hodgkin Lymphoma AJCC v8 10 102132 -NCIT:C141191 Lugano Classification Stage I Adult Hodgkin Lymphoma AJCC v8 10 102133 -NCIT:C141151 Lugano Classification Stage IE Adult Lymphoma AJCC v8 9 102134 -NCIT:C141161 Lugano Classification Stage IE Adult Non-Hodgkin Lymphoma AJCC v8 10 102135 -NCIT:C141192 Lugano Classification Stage IE Adult Hodgkin Lymphoma AJCC v8 10 102136 -NCIT:C141152 Lugano Classification Stage II Adult Lymphoma AJCC v8 9 102137 -NCIT:C141154 Lugano Classification Stage II Bulky Adult Lymphoma AJCC v8 10 102138 -NCIT:C141164 Lugano Classification Stage II Bulky Adult Non-Hodgkin Lymphoma AJCC v8 11 102139 -NCIT:C141195 Lugano Classification Stage II Bulky Adult Hodgkin Lymphoma AJCC v8 11 102140 -NCIT:C141162 Lugano Classification Stage II Adult Non-Hodgkin Lymphoma AJCC v8 10 102141 -NCIT:C141164 Lugano Classification Stage II Bulky Adult Non-Hodgkin Lymphoma AJCC v8 11 102142 -NCIT:C141193 Lugano Classification Stage II Adult Hodgkin Lymphoma AJCC v8 10 102143 -NCIT:C141195 Lugano Classification Stage II Bulky Adult Hodgkin Lymphoma AJCC v8 11 102144 -NCIT:C141153 Lugano Classification Stage IIE Adult Lymphoma AJCC v8 9 102145 -NCIT:C141163 Lugano Classification Stage IIE Adult Non-Hodgkin Lymphoma AJCC v8 10 102146 -NCIT:C141194 Lugano Classification Stage IIE Adult Hodgkin Lymphoma AJCC v8 10 102147 -NCIT:C141159 Lugano Classification Limited Stage Adult Non-Hodgkin Lymphoma AJCC v8 9 102148 -NCIT:C141160 Lugano Classification Stage I Adult Non-Hodgkin Lymphoma AJCC v8 10 102149 -NCIT:C141161 Lugano Classification Stage IE Adult Non-Hodgkin Lymphoma AJCC v8 10 102150 -NCIT:C141162 Lugano Classification Stage II Adult Non-Hodgkin Lymphoma AJCC v8 10 102151 -NCIT:C141164 Lugano Classification Stage II Bulky Adult Non-Hodgkin Lymphoma AJCC v8 11 102152 -NCIT:C141163 Lugano Classification Stage IIE Adult Non-Hodgkin Lymphoma AJCC v8 10 102153 -NCIT:C141190 Lugano Classification Limited Stage Adult Hodgkin Lymphoma AJCC v8 9 102154 -NCIT:C141191 Lugano Classification Stage I Adult Hodgkin Lymphoma AJCC v8 10 102155 -NCIT:C141192 Lugano Classification Stage IE Adult Hodgkin Lymphoma AJCC v8 10 102156 -NCIT:C141193 Lugano Classification Stage II Adult Hodgkin Lymphoma AJCC v8 10 102157 -NCIT:C141195 Lugano Classification Stage II Bulky Adult Hodgkin Lymphoma AJCC v8 11 102158 -NCIT:C141194 Lugano Classification Stage IIE Adult Hodgkin Lymphoma AJCC v8 10 102159 -NCIT:C141155 Lugano Classification Advanced Stage Adult Lymphoma AJCC v8 8 102160 -NCIT:C141156 Lugano Classification Stage III Adult Lymphoma AJCC v8 9 102161 -NCIT:C141166 Lugano Classification Stage III Adult Non-Hodgkin Lymphoma AJCC v8 10 102162 -NCIT:C141197 Lugano Classification Stage III Adult Hodgkin Lymphoma AJCC v8 10 102163 -NCIT:C141157 Lugano Classification Stage IV Adult Lymphoma AJCC v8 9 102164 -NCIT:C141167 Lugano Classification Stage IV Adult Non-Hodgkin Lymphoma AJCC v8 10 102165 -NCIT:C141198 Lugano Classification Stage IV Adult Hodgkin Lymphoma AJCC v8 10 102166 -NCIT:C141165 Lugano Classification Advanced Stage Adult Non-Hodgkin Lymphoma AJCC v8 9 102167 -NCIT:C141166 Lugano Classification Stage III Adult Non-Hodgkin Lymphoma AJCC v8 10 102168 -NCIT:C141167 Lugano Classification Stage IV Adult Non-Hodgkin Lymphoma AJCC v8 10 102169 -NCIT:C141196 Lugano Classification Advanced Stage Adult Hodgkin Lymphoma AJCC v8 9 102170 -NCIT:C141197 Lugano Classification Stage III Adult Hodgkin Lymphoma AJCC v8 10 102171 -NCIT:C141198 Lugano Classification Stage IV Adult Hodgkin Lymphoma AJCC v8 10 102172 -NCIT:C141158 Lugano Classification Adult Non-Hodgkin Lymphoma by AJCC v8 Stage 8 102173 -NCIT:C141159 Lugano Classification Limited Stage Adult Non-Hodgkin Lymphoma AJCC v8 9 102174 -NCIT:C141160 Lugano Classification Stage I Adult Non-Hodgkin Lymphoma AJCC v8 10 102175 -NCIT:C141161 Lugano Classification Stage IE Adult Non-Hodgkin Lymphoma AJCC v8 10 102176 -NCIT:C141162 Lugano Classification Stage II Adult Non-Hodgkin Lymphoma AJCC v8 10 102177 -NCIT:C141164 Lugano Classification Stage II Bulky Adult Non-Hodgkin Lymphoma AJCC v8 11 102178 -NCIT:C141163 Lugano Classification Stage IIE Adult Non-Hodgkin Lymphoma AJCC v8 10 102179 -NCIT:C141165 Lugano Classification Advanced Stage Adult Non-Hodgkin Lymphoma AJCC v8 9 102180 -NCIT:C141166 Lugano Classification Stage III Adult Non-Hodgkin Lymphoma AJCC v8 10 102181 -NCIT:C141167 Lugano Classification Stage IV Adult Non-Hodgkin Lymphoma AJCC v8 10 102182 -NCIT:C141189 Lugano Classification Adult Hodgkin Lymphoma by AJCC v8 Stage 8 102183 -NCIT:C141190 Lugano Classification Limited Stage Adult Hodgkin Lymphoma AJCC v8 9 102184 -NCIT:C141191 Lugano Classification Stage I Adult Hodgkin Lymphoma AJCC v8 10 102185 -NCIT:C141192 Lugano Classification Stage IE Adult Hodgkin Lymphoma AJCC v8 10 102186 -NCIT:C141193 Lugano Classification Stage II Adult Hodgkin Lymphoma AJCC v8 10 102187 -NCIT:C141195 Lugano Classification Stage II Bulky Adult Hodgkin Lymphoma AJCC v8 11 102188 -NCIT:C141194 Lugano Classification Stage IIE Adult Hodgkin Lymphoma AJCC v8 10 102189 -NCIT:C141196 Lugano Classification Advanced Stage Adult Hodgkin Lymphoma AJCC v8 9 102190 -NCIT:C141197 Lugano Classification Stage III Adult Hodgkin Lymphoma AJCC v8 10 102191 -NCIT:C141198 Lugano Classification Stage IV Adult Hodgkin Lymphoma AJCC v8 10 102192 -NCIT:C7702 Adult Hodgkin Lymphoma 7 102193 -NCIT:C114783 Hodgkin Lymphoma During Pregnancy 8 102194 -NCIT:C114807 Adult Favorable Prognosis Hodgkin Lymphoma 8 102195 -NCIT:C114809 Adult Unfavorable Prognosis Hodgkin Lymphoma 8 102196 -NCIT:C141189 Lugano Classification Adult Hodgkin Lymphoma by AJCC v8 Stage 8 102197 -NCIT:C141190 Lugano Classification Limited Stage Adult Hodgkin Lymphoma AJCC v8 9 102198 -NCIT:C141191 Lugano Classification Stage I Adult Hodgkin Lymphoma AJCC v8 10 102199 -NCIT:C141192 Lugano Classification Stage IE Adult Hodgkin Lymphoma AJCC v8 10 102200 -NCIT:C141193 Lugano Classification Stage II Adult Hodgkin Lymphoma AJCC v8 10 102201 -NCIT:C141195 Lugano Classification Stage II Bulky Adult Hodgkin Lymphoma AJCC v8 11 102202 -NCIT:C141194 Lugano Classification Stage IIE Adult Hodgkin Lymphoma AJCC v8 10 102203 -NCIT:C141196 Lugano Classification Advanced Stage Adult Hodgkin Lymphoma AJCC v8 9 102204 -NCIT:C141197 Lugano Classification Stage III Adult Hodgkin Lymphoma AJCC v8 10 102205 -NCIT:C141198 Lugano Classification Stage IV Adult Hodgkin Lymphoma AJCC v8 10 102206 -NCIT:C141226 Adult Hodgkin Lymphoma by Ann Arbor Stage 8 102207 -NCIT:C9032 Ann Arbor Stage I Adult Hodgkin Lymphoma 9 102208 -NCIT:C9033 Ann Arbor Stage II Adult Hodgkin Lymphoma 9 102209 -NCIT:C9034 Ann Arbor Stage III Adult Hodgkin Lymphoma 9 102210 -NCIT:C9035 Ann Arbor Stage IV Adult Hodgkin Lymphoma 9 102211 -NCIT:C69138 Adult Classic Hodgkin Lymphoma 8 102212 -NCIT:C7223 Adult Lymphocyte-Rich Classic Hodgkin Lymphoma 9 102213 -NCIT:C9125 Adult Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 102214 -NCIT:C9126 Adult Nodular Sclerosis Classic Hodgkin Lymphoma 9 102215 -NCIT:C9127 Adult Mixed Cellularity Classic Hodgkin Lymphoma 9 102216 -NCIT:C7789 Recurrent Adult Hodgkin Lymphoma 8 102217 -NCIT:C7942 Adult Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 102218 -NCIT:C7704 Adult Non-Hodgkin Lymphoma 7 102219 -NCIT:C114784 Non-Hodgkin Lymphoma During Pregnancy 8 102220 -NCIT:C141158 Lugano Classification Adult Non-Hodgkin Lymphoma by AJCC v8 Stage 8 102221 -NCIT:C141159 Lugano Classification Limited Stage Adult Non-Hodgkin Lymphoma AJCC v8 9 102222 -NCIT:C141160 Lugano Classification Stage I Adult Non-Hodgkin Lymphoma AJCC v8 10 102223 -NCIT:C141161 Lugano Classification Stage IE Adult Non-Hodgkin Lymphoma AJCC v8 10 102224 -NCIT:C141162 Lugano Classification Stage II Adult Non-Hodgkin Lymphoma AJCC v8 10 102225 -NCIT:C141164 Lugano Classification Stage II Bulky Adult Non-Hodgkin Lymphoma AJCC v8 11 102226 -NCIT:C141163 Lugano Classification Stage IIE Adult Non-Hodgkin Lymphoma AJCC v8 10 102227 -NCIT:C141165 Lugano Classification Advanced Stage Adult Non-Hodgkin Lymphoma AJCC v8 9 102228 -NCIT:C141166 Lugano Classification Stage III Adult Non-Hodgkin Lymphoma AJCC v8 10 102229 -NCIT:C141167 Lugano Classification Stage IV Adult Non-Hodgkin Lymphoma AJCC v8 10 102230 -NCIT:C141235 Adult Non-Hodgkin Lymphoma by Ann Arbor Stage 8 102231 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 9 102232 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 10 102233 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 10 102234 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 10 102235 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 10 102236 -NCIT:C8102 Ann Arbor Stage I Adult Non-Hodgkin Lymphoma 9 102237 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 10 102238 -NCIT:C8464 Ann Arbor Stage I Indolent Adult Non-Hodgkin Lymphoma 10 102239 -NCIT:C9252 Ann Arbor Stage I Aggressive Adult Non-Hodgkin Lymphoma 10 102240 -NCIT:C8079 Ann Arbor Stage I Adult Lymphoblastic Lymphoma 11 102241 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 11 102242 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 11 102243 -NCIT:C8103 Ann Arbor Stage II Adult Non-Hodgkin Lymphoma 9 102244 -NCIT:C68686 Ann Arbor Stage II Aggressive Adult Non-Hodgkin Lymphoma 10 102245 -NCIT:C8125 Ann Arbor Stage II Adult Lymphoblastic Lymphoma 11 102246 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 12 102247 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 12 102248 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 11 102249 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 12 102250 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 12 102251 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 11 102252 -NCIT:C8472 Ann Arbor Stage II Contiguous Adult Aggressive Non-Hodgkin Lymphoma 11 102253 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 12 102254 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 12 102255 -NCIT:C8479 Ann Arbor Stage II Non-Contiguous Aggressive Adult Non-Hodgkin Lymphoma 11 102256 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 12 102257 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 12 102258 -NCIT:C68688 Ann Arbor Stage II Indolent Adult Non-Hodgkin Lymphoma 10 102259 -NCIT:C8467 Ann Arbor Stage II Contiguous Adult Indolent Non-Hodgkin Lymphoma 11 102260 -NCIT:C8478 Ann Arbor Stage II Non-Contiguous Adult Indolent Non-Hodgkin Lymphoma 11 102261 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 10 102262 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 11 102263 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 11 102264 -NCIT:C8466 Ann Arbor Stage II Contiguous Adult Non-Hodgkin Lymphoma 10 102265 -NCIT:C8467 Ann Arbor Stage II Contiguous Adult Indolent Non-Hodgkin Lymphoma 11 102266 -NCIT:C8472 Ann Arbor Stage II Contiguous Adult Aggressive Non-Hodgkin Lymphoma 11 102267 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 12 102268 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 12 102269 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 11 102270 -NCIT:C8477 Ann Arbor Stage II Non-Contiguous Adult Non-Hodgkin Lymphoma 10 102271 -NCIT:C8478 Ann Arbor Stage II Non-Contiguous Adult Indolent Non-Hodgkin Lymphoma 11 102272 -NCIT:C8479 Ann Arbor Stage II Non-Contiguous Aggressive Adult Non-Hodgkin Lymphoma 11 102273 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 12 102274 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 12 102275 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 11 102276 -NCIT:C8104 Ann Arbor Stage III Adult Non-Hodgkin Lymphoma 9 102277 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 10 102278 -NCIT:C8482 Ann Arbor Stage III Indolent Adult Non-Hodgkin Lymphoma 10 102279 -NCIT:C8484 Ann Arbor Stage III Aggressive Adult Non-Hodgkin Lymphoma 10 102280 -NCIT:C8138 Ann Arbor Stage III Adult Lymphoblastic Lymphoma 11 102281 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 11 102282 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 11 102283 -NCIT:C8105 Ann Arbor Stage IV Adult Non-Hodgkin Lymphoma 9 102284 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 10 102285 -NCIT:C8485 Ann Arbor Stage IV Indolent Adult Non-Hodgkin Lymphoma 10 102286 -NCIT:C8487 Ann Arbor Stage IV Aggressive Adult Non-Hodgkin Lymphoma 10 102287 -NCIT:C8151 Ann Arbor Stage IV Adult Lymphoblastic Lymphoma 11 102288 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 11 102289 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 11 102290 -NCIT:C27367 Adult Anaplastic Large Cell Lymphoma 8 102291 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 9 102292 -NCIT:C27366 Adult Systemic Anaplastic Large Cell Lymphoma 9 102293 -NCIT:C7615 Adult Diffuse Large B-Cell Lymphoma 8 102294 -NCIT:C115150 Adult Grade III Lymphomatoid Granulomatosis 9 102295 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 102296 -NCIT:C188457 Adult EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 102297 -NCIT:C7873 Adult Immunoblastic Lymphoma 9 102298 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 10 102299 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 10 102300 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 11 102301 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 11 102302 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 10 102303 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 10 102304 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 10 102305 -NCIT:C8098 Recurrent Adult Non-Hodgkin Lymphoma 8 102306 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 9 102307 -NCIT:C8488 Recurrent Indolent Adult Non-Hodgkin Lymphoma 9 102308 -NCIT:C8490 Recurrent Aggressive Adult Non-Hodgkin Lymphoma 9 102309 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 102310 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 10 102311 -NCIT:C8164 Recurrent Adult Lymphoblastic Lymphoma 10 102312 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 10 102313 -NCIT:C8491 Indolent Adult Non-Hodgkin Lymphoma 8 102314 -NCIT:C148175 Refractory Indolent Adult Non-Hodgkin Lymphoma 9 102315 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 9 102316 -NCIT:C68688 Ann Arbor Stage II Indolent Adult Non-Hodgkin Lymphoma 9 102317 -NCIT:C8467 Ann Arbor Stage II Contiguous Adult Indolent Non-Hodgkin Lymphoma 10 102318 -NCIT:C8478 Ann Arbor Stage II Non-Contiguous Adult Indolent Non-Hodgkin Lymphoma 10 102319 -NCIT:C8464 Ann Arbor Stage I Indolent Adult Non-Hodgkin Lymphoma 9 102320 -NCIT:C8482 Ann Arbor Stage III Indolent Adult Non-Hodgkin Lymphoma 9 102321 -NCIT:C8485 Ann Arbor Stage IV Indolent Adult Non-Hodgkin Lymphoma 9 102322 -NCIT:C8488 Recurrent Indolent Adult Non-Hodgkin Lymphoma 9 102323 -NCIT:C8492 Aggressive Adult Non-Hodgkin Lymphoma 8 102324 -NCIT:C115150 Adult Grade III Lymphomatoid Granulomatosis 9 102325 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 102326 -NCIT:C115154 Adult Nasal Type Extranodal NK/T-Cell Lymphoma 9 102327 -NCIT:C3184 Adult T-Cell Leukemia/Lymphoma 9 102328 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 10 102329 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 11 102330 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 11 102331 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 11 102332 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 11 102333 -NCIT:C36265 Acute Adult T-Cell Leukemia/Lymphoma 10 102334 -NCIT:C36266 Lymphomatous Adult T-Cell Leukemia/Lymphoma 10 102335 -NCIT:C36268 Hodgkin-Like Adult T-Cell Leukemia/Lymphoma 10 102336 -NCIT:C45272 Cutaneous Adult T-Cell Leukemia/Lymphoma 10 102337 -NCIT:C7178 Smoldering Adult T-Cell Leukemia/Lymphoma 10 102338 -NCIT:C7179 Chronic Adult T-Cell Leukemia/Lymphoma 10 102339 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 10 102340 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 10 102341 -NCIT:C68686 Ann Arbor Stage II Aggressive Adult Non-Hodgkin Lymphoma 9 102342 -NCIT:C8125 Ann Arbor Stage II Adult Lymphoblastic Lymphoma 10 102343 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 11 102344 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 11 102345 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 10 102346 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 11 102347 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 11 102348 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 10 102349 -NCIT:C8472 Ann Arbor Stage II Contiguous Adult Aggressive Non-Hodgkin Lymphoma 10 102350 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 11 102351 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 11 102352 -NCIT:C8479 Ann Arbor Stage II Non-Contiguous Aggressive Adult Non-Hodgkin Lymphoma 10 102353 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 11 102354 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 11 102355 -NCIT:C8484 Ann Arbor Stage III Aggressive Adult Non-Hodgkin Lymphoma 9 102356 -NCIT:C8138 Ann Arbor Stage III Adult Lymphoblastic Lymphoma 10 102357 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 10 102358 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 10 102359 -NCIT:C8487 Ann Arbor Stage IV Aggressive Adult Non-Hodgkin Lymphoma 9 102360 -NCIT:C8151 Ann Arbor Stage IV Adult Lymphoblastic Lymphoma 10 102361 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 10 102362 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 10 102363 -NCIT:C8490 Recurrent Aggressive Adult Non-Hodgkin Lymphoma 9 102364 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 102365 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 10 102366 -NCIT:C8164 Recurrent Adult Lymphoblastic Lymphoma 10 102367 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 10 102368 -NCIT:C9062 Adult Burkitt Lymphoma 9 102369 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 10 102370 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 10 102371 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 11 102372 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 11 102373 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 10 102374 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 10 102375 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 10 102376 -NCIT:C9252 Ann Arbor Stage I Aggressive Adult Non-Hodgkin Lymphoma 9 102377 -NCIT:C8079 Ann Arbor Stage I Adult Lymphoblastic Lymphoma 10 102378 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 10 102379 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 10 102380 -NCIT:C9361 Adult Lymphoblastic Lymphoma 9 102381 -NCIT:C7226 Adult T Lymphoblastic Lymphoma 10 102382 -NCIT:C7338 Adult B Lymphoblastic Lymphoma 10 102383 -NCIT:C8079 Ann Arbor Stage I Adult Lymphoblastic Lymphoma 10 102384 -NCIT:C8125 Ann Arbor Stage II Adult Lymphoblastic Lymphoma 10 102385 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 11 102386 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 11 102387 -NCIT:C8138 Ann Arbor Stage III Adult Lymphoblastic Lymphoma 10 102388 -NCIT:C8151 Ann Arbor Stage IV Adult Lymphoblastic Lymphoma 10 102389 -NCIT:C8164 Recurrent Adult Lymphoblastic Lymphoma 10 102390 -NCIT:C9357 Hodgkin Lymphoma 6 102391 -NCIT:C114949 Secondary Central Nervous System Hodgkin Lymphoma 7 102392 -NCIT:C5057 Secondary Cerebral Hodgkin Lymphoma 8 102393 -NCIT:C114951 Central Nervous System Hodgkin Lymphoma 7 102394 -NCIT:C5055 Cerebral Hodgkin Lymphoma 8 102395 -NCIT:C141141 Hodgkin Lymphoma by Ann Arbor Stage 7 102396 -NCIT:C141222 Lymphocyte-Depleted Classic Hodgkin Lymphoma by Ann Arbor Stage 8 102397 -NCIT:C3583 Ann Arbor Stage III Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 102398 -NCIT:C5064 Ann Arbor Stage I Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 102399 -NCIT:C5065 Ann Arbor Stage I Subdiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 10 102400 -NCIT:C5066 Ann Arbor Stage I Supradiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 10 102401 -NCIT:C5067 Ann Arbor Stage II Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 102402 -NCIT:C5068 Ann Arbor Stage II Subdiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 10 102403 -NCIT:C5069 Ann Arbor Stage II Supradiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 10 102404 -NCIT:C8651 Ann Arbor Stage IV Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 102405 -NCIT:C141223 Nodular Sclerosis Classic Hodgkin Lymphoma by Ann Arbor Stage 8 102406 -NCIT:C3581 Ann Arbor Stage III Nodular Sclerosis Classic Hodgkin Lymphoma 9 102407 -NCIT:C5081 Ann Arbor Stage II Nodular Sclerosis Classic Hodgkin Lymphoma 9 102408 -NCIT:C5082 Ann Arbor Stage II Subdiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 10 102409 -NCIT:C5083 Ann Arbor Stage II Supradiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 10 102410 -NCIT:C8839 Ann Arbor Stage I Nodular Sclerosis Classic Hodgkin Lymphoma 9 102411 -NCIT:C5079 Ann Arbor Stage I Subdiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 10 102412 -NCIT:C5080 Ann Arbor Stage I Supradiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 10 102413 -NCIT:C8840 Ann Arbor Stage IV Nodular Sclerosis Classic Hodgkin Lymphoma 9 102414 -NCIT:C141224 Mixed Cellularity Classic Hodgkin Lymphoma by Ann Arbor Stage 8 102415 -NCIT:C3582 Ann Arbor Stage III Mixed Cellularity Classic Hodgkin Lymphoma 9 102416 -NCIT:C5077 Ann Arbor Stage II Mixed Cellularity Classic Hodgkin Lymphoma 9 102417 -NCIT:C5078 Ann Arbor Stage II Subdiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 10 102418 -NCIT:C5104 Ann Arbor Stage II Supradiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 10 102419 -NCIT:C8834 Ann Arbor Stage I Mixed Cellularity Classic Hodgkin Lymphoma 9 102420 -NCIT:C5075 Ann Arbor Stage I Subdiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 10 102421 -NCIT:C5076 Ann Arbor Stage I Supradiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 10 102422 -NCIT:C8835 Ann Arbor Stage IV Mixed Cellularity Classic Hodgkin Lymphoma 9 102423 -NCIT:C141225 Nodular Lymphocyte Predominant Hodgkin Lymphoma by Ann Arbor Stage 8 102424 -NCIT:C5070 Ann Arbor Stage II Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 102425 -NCIT:C5071 Ann Arbor Stage II Subdiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 10 102426 -NCIT:C5072 Ann Arbor Stage II Supradiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 10 102427 -NCIT:C5634 Ann Arbor Stage I Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 102428 -NCIT:C5073 Ann Arbor Stage I Subdiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 10 102429 -NCIT:C5074 Ann Arbor Stage I Supradiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 10 102430 -NCIT:C7261 Ann Arbor Stage IV Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 102431 -NCIT:C7262 Ann Arbor Stage III Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 102432 -NCIT:C141226 Adult Hodgkin Lymphoma by Ann Arbor Stage 8 102433 -NCIT:C9032 Ann Arbor Stage I Adult Hodgkin Lymphoma 9 102434 -NCIT:C9033 Ann Arbor Stage II Adult Hodgkin Lymphoma 9 102435 -NCIT:C9034 Ann Arbor Stage III Adult Hodgkin Lymphoma 9 102436 -NCIT:C9035 Ann Arbor Stage IV Adult Hodgkin Lymphoma 9 102437 -NCIT:C141227 Childhood Hodgkin Lymphoma by Ann Arbor Stage 8 102438 -NCIT:C8055 Ann Arbor Stage II Childhood Hodgkin Lymphoma 9 102439 -NCIT:C8056 Ann Arbor Stage I Childhood Hodgkin Lymphoma 9 102440 -NCIT:C8057 Ann Arbor Stage III Childhood Hodgkin Lymphoma 9 102441 -NCIT:C8058 Ann Arbor Stage IV Childhood Hodgkin Lymphoma 9 102442 -NCIT:C3584 Ann Arbor Stage III Hodgkin Lymphoma 8 102443 -NCIT:C3581 Ann Arbor Stage III Nodular Sclerosis Classic Hodgkin Lymphoma 9 102444 -NCIT:C3582 Ann Arbor Stage III Mixed Cellularity Classic Hodgkin Lymphoma 9 102445 -NCIT:C3583 Ann Arbor Stage III Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 102446 -NCIT:C3914 Ann Arbor Stage IIIA Hodgkin Lymphoma 9 102447 -NCIT:C4058 Ann Arbor Stage IIIB Hodgkin Lymphoma 9 102448 -NCIT:C7262 Ann Arbor Stage III Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 102449 -NCIT:C8057 Ann Arbor Stage III Childhood Hodgkin Lymphoma 9 102450 -NCIT:C9034 Ann Arbor Stage III Adult Hodgkin Lymphoma 9 102451 -NCIT:C8517 Ann Arbor Stage I Hodgkin Lymphoma 8 102452 -NCIT:C3911 Ann Arbor Stage IA Hodgkin Lymphoma 9 102453 -NCIT:C5011 Ann Arbor Stage I Supradiaphragmatic Hodgkin Lymphoma 9 102454 -NCIT:C5066 Ann Arbor Stage I Supradiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 10 102455 -NCIT:C5074 Ann Arbor Stage I Supradiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 10 102456 -NCIT:C5076 Ann Arbor Stage I Supradiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 10 102457 -NCIT:C5080 Ann Arbor Stage I Supradiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 10 102458 -NCIT:C5012 Ann Arbor Stage I Subdiaphragmatic Hodgkin Lymphoma 9 102459 -NCIT:C5065 Ann Arbor Stage I Subdiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 10 102460 -NCIT:C5073 Ann Arbor Stage I Subdiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 10 102461 -NCIT:C5075 Ann Arbor Stage I Subdiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 10 102462 -NCIT:C5079 Ann Arbor Stage I Subdiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 10 102463 -NCIT:C5064 Ann Arbor Stage I Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 102464 -NCIT:C5065 Ann Arbor Stage I Subdiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 10 102465 -NCIT:C5066 Ann Arbor Stage I Supradiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 10 102466 -NCIT:C5632 Ann Arbor Stage IB Hodgkin Lymphoma 9 102467 -NCIT:C5634 Ann Arbor Stage I Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 102468 -NCIT:C5073 Ann Arbor Stage I Subdiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 10 102469 -NCIT:C5074 Ann Arbor Stage I Supradiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 10 102470 -NCIT:C8056 Ann Arbor Stage I Childhood Hodgkin Lymphoma 9 102471 -NCIT:C8834 Ann Arbor Stage I Mixed Cellularity Classic Hodgkin Lymphoma 9 102472 -NCIT:C5075 Ann Arbor Stage I Subdiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 10 102473 -NCIT:C5076 Ann Arbor Stage I Supradiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 10 102474 -NCIT:C8839 Ann Arbor Stage I Nodular Sclerosis Classic Hodgkin Lymphoma 9 102475 -NCIT:C5079 Ann Arbor Stage I Subdiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 10 102476 -NCIT:C5080 Ann Arbor Stage I Supradiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 10 102477 -NCIT:C9032 Ann Arbor Stage I Adult Hodgkin Lymphoma 9 102478 -NCIT:C8518 Ann Arbor Stage II Hodgkin Lymphoma 8 102479 -NCIT:C3912 Ann Arbor Stage IIA Hodgkin Lymphoma 9 102480 -NCIT:C3913 Ann Arbor Stage IIB Hodgkin Lymphoma 9 102481 -NCIT:C5009 Ann Arbor Stage II Supradiaphragmatic Hodgkin Lymphoma 9 102482 -NCIT:C5069 Ann Arbor Stage II Supradiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 10 102483 -NCIT:C5072 Ann Arbor Stage II Supradiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 10 102484 -NCIT:C5083 Ann Arbor Stage II Supradiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 10 102485 -NCIT:C5104 Ann Arbor Stage II Supradiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 10 102486 -NCIT:C5010 Ann Arbor Stage II Subdiaphragmatic Hodgkin Lymphoma 9 102487 -NCIT:C5068 Ann Arbor Stage II Subdiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 10 102488 -NCIT:C5071 Ann Arbor Stage II Subdiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 10 102489 -NCIT:C5078 Ann Arbor Stage II Subdiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 10 102490 -NCIT:C5082 Ann Arbor Stage II Subdiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 10 102491 -NCIT:C5067 Ann Arbor Stage II Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 102492 -NCIT:C5068 Ann Arbor Stage II Subdiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 10 102493 -NCIT:C5069 Ann Arbor Stage II Supradiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 10 102494 -NCIT:C5070 Ann Arbor Stage II Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 102495 -NCIT:C5071 Ann Arbor Stage II Subdiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 10 102496 -NCIT:C5072 Ann Arbor Stage II Supradiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 10 102497 -NCIT:C5077 Ann Arbor Stage II Mixed Cellularity Classic Hodgkin Lymphoma 9 102498 -NCIT:C5078 Ann Arbor Stage II Subdiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 10 102499 -NCIT:C5104 Ann Arbor Stage II Supradiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 10 102500 -NCIT:C5081 Ann Arbor Stage II Nodular Sclerosis Classic Hodgkin Lymphoma 9 102501 -NCIT:C5082 Ann Arbor Stage II Subdiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 10 102502 -NCIT:C5083 Ann Arbor Stage II Supradiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 10 102503 -NCIT:C8055 Ann Arbor Stage II Childhood Hodgkin Lymphoma 9 102504 -NCIT:C9033 Ann Arbor Stage II Adult Hodgkin Lymphoma 9 102505 -NCIT:C8519 Ann Arbor Stage IV Hodgkin Lymphoma 8 102506 -NCIT:C4059 Ann Arbor Stage IVA Hodgkin Lymphoma 9 102507 -NCIT:C5633 Ann Arbor Stage IVB Hodgkin Lymphoma 9 102508 -NCIT:C7261 Ann Arbor Stage IV Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 102509 -NCIT:C8058 Ann Arbor Stage IV Childhood Hodgkin Lymphoma 9 102510 -NCIT:C8651 Ann Arbor Stage IV Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 102511 -NCIT:C8835 Ann Arbor Stage IV Mixed Cellularity Classic Hodgkin Lymphoma 9 102512 -NCIT:C8840 Ann Arbor Stage IV Nodular Sclerosis Classic Hodgkin Lymphoma 9 102513 -NCIT:C9035 Ann Arbor Stage IV Adult Hodgkin Lymphoma 9 102514 -NCIT:C141168 Lugano Classification Hodgkin Lymphoma by AJCC v8 Stage 7 102515 -NCIT:C141169 Lugano Classification Limited Stage Hodgkin Lymphoma AJCC v8 8 102516 -NCIT:C141170 Lugano Classification Stage I Hodgkin Lymphoma AJCC v8 9 102517 -NCIT:C141180 Lugano Classification Stage I Childhood Hodgkin Lymphoma AJCC v8 10 102518 -NCIT:C141191 Lugano Classification Stage I Adult Hodgkin Lymphoma AJCC v8 10 102519 -NCIT:C141171 Lugano Classification Stage IE Hodgkin Lymphoma AJCC v8 9 102520 -NCIT:C141181 Lugano Classification Stage IE Childhood Hodgkin Lymphoma AJCC v8 10 102521 -NCIT:C141192 Lugano Classification Stage IE Adult Hodgkin Lymphoma AJCC v8 10 102522 -NCIT:C141172 Lugano Classification Stage II Hodgkin Lymphoma AJCC v8 9 102523 -NCIT:C141174 Lugano Classification Stage II Bulky Hodgkin Lymphoma AJCC v8 10 102524 -NCIT:C141184 Lugano Classification Stage II Bulky Childhood Hodgkin Lymphoma AJCC v8 11 102525 -NCIT:C141195 Lugano Classification Stage II Bulky Adult Hodgkin Lymphoma AJCC v8 11 102526 -NCIT:C141182 Lugano Classification Stage II Childhood Hodgkin Lymphoma AJCC v8 10 102527 -NCIT:C141184 Lugano Classification Stage II Bulky Childhood Hodgkin Lymphoma AJCC v8 11 102528 -NCIT:C141193 Lugano Classification Stage II Adult Hodgkin Lymphoma AJCC v8 10 102529 -NCIT:C141195 Lugano Classification Stage II Bulky Adult Hodgkin Lymphoma AJCC v8 11 102530 -NCIT:C141173 Lugano Classification Stage IIE Hodgkin Lymphoma AJCC v8 9 102531 -NCIT:C141183 Lugano Classification Stage IIE Childhood Hodgkin Lymphoma AJCC v8 10 102532 -NCIT:C141194 Lugano Classification Stage IIE Adult Hodgkin Lymphoma AJCC v8 10 102533 -NCIT:C141179 Lugano Classification Limited Stage Childhood Hodgkin Lymphoma AJCC v8 9 102534 -NCIT:C141180 Lugano Classification Stage I Childhood Hodgkin Lymphoma AJCC v8 10 102535 -NCIT:C141181 Lugano Classification Stage IE Childhood Hodgkin Lymphoma AJCC v8 10 102536 -NCIT:C141182 Lugano Classification Stage II Childhood Hodgkin Lymphoma AJCC v8 10 102537 -NCIT:C141184 Lugano Classification Stage II Bulky Childhood Hodgkin Lymphoma AJCC v8 11 102538 -NCIT:C141183 Lugano Classification Stage IIE Childhood Hodgkin Lymphoma AJCC v8 10 102539 -NCIT:C141190 Lugano Classification Limited Stage Adult Hodgkin Lymphoma AJCC v8 9 102540 -NCIT:C141191 Lugano Classification Stage I Adult Hodgkin Lymphoma AJCC v8 10 102541 -NCIT:C141192 Lugano Classification Stage IE Adult Hodgkin Lymphoma AJCC v8 10 102542 -NCIT:C141193 Lugano Classification Stage II Adult Hodgkin Lymphoma AJCC v8 10 102543 -NCIT:C141195 Lugano Classification Stage II Bulky Adult Hodgkin Lymphoma AJCC v8 11 102544 -NCIT:C141194 Lugano Classification Stage IIE Adult Hodgkin Lymphoma AJCC v8 10 102545 -NCIT:C141175 Lugano Classification Advanced Stage Hodgkin Lymphoma AJCC v8 8 102546 -NCIT:C141176 Lugano Classification Stage III Hodgkin Lymphoma AJCC v8 9 102547 -NCIT:C141186 Lugano Classification Stage III Childhood Hodgkin Lymphoma AJCC v8 10 102548 -NCIT:C141197 Lugano Classification Stage III Adult Hodgkin Lymphoma AJCC v8 10 102549 -NCIT:C141177 Lugano Classification Stage IV Hodgkin Lymphoma AJCC v8 9 102550 -NCIT:C141187 Lugano Classification Stage IV Childhood Hodgkin Lymphoma AJCC v8 10 102551 -NCIT:C141198 Lugano Classification Stage IV Adult Hodgkin Lymphoma AJCC v8 10 102552 -NCIT:C141185 Lugano Classification Advanced Stage Childhood Hodgkin Lymphoma AJCC v8 9 102553 -NCIT:C141186 Lugano Classification Stage III Childhood Hodgkin Lymphoma AJCC v8 10 102554 -NCIT:C141187 Lugano Classification Stage IV Childhood Hodgkin Lymphoma AJCC v8 10 102555 -NCIT:C141196 Lugano Classification Advanced Stage Adult Hodgkin Lymphoma AJCC v8 9 102556 -NCIT:C141197 Lugano Classification Stage III Adult Hodgkin Lymphoma AJCC v8 10 102557 -NCIT:C141198 Lugano Classification Stage IV Adult Hodgkin Lymphoma AJCC v8 10 102558 -NCIT:C141178 Lugano Classification Childhood Hodgkin Lymphoma by AJCC v8 Stage 8 102559 -NCIT:C141179 Lugano Classification Limited Stage Childhood Hodgkin Lymphoma AJCC v8 9 102560 -NCIT:C141180 Lugano Classification Stage I Childhood Hodgkin Lymphoma AJCC v8 10 102561 -NCIT:C141181 Lugano Classification Stage IE Childhood Hodgkin Lymphoma AJCC v8 10 102562 -NCIT:C141182 Lugano Classification Stage II Childhood Hodgkin Lymphoma AJCC v8 10 102563 -NCIT:C141184 Lugano Classification Stage II Bulky Childhood Hodgkin Lymphoma AJCC v8 11 102564 -NCIT:C141183 Lugano Classification Stage IIE Childhood Hodgkin Lymphoma AJCC v8 10 102565 -NCIT:C141185 Lugano Classification Advanced Stage Childhood Hodgkin Lymphoma AJCC v8 9 102566 -NCIT:C141186 Lugano Classification Stage III Childhood Hodgkin Lymphoma AJCC v8 10 102567 -NCIT:C141187 Lugano Classification Stage IV Childhood Hodgkin Lymphoma AJCC v8 10 102568 -NCIT:C141189 Lugano Classification Adult Hodgkin Lymphoma by AJCC v8 Stage 8 102569 -NCIT:C141190 Lugano Classification Limited Stage Adult Hodgkin Lymphoma AJCC v8 9 102570 -NCIT:C141191 Lugano Classification Stage I Adult Hodgkin Lymphoma AJCC v8 10 102571 -NCIT:C141192 Lugano Classification Stage IE Adult Hodgkin Lymphoma AJCC v8 10 102572 -NCIT:C141193 Lugano Classification Stage II Adult Hodgkin Lymphoma AJCC v8 10 102573 -NCIT:C141195 Lugano Classification Stage II Bulky Adult Hodgkin Lymphoma AJCC v8 11 102574 -NCIT:C141194 Lugano Classification Stage IIE Adult Hodgkin Lymphoma AJCC v8 10 102575 -NCIT:C141196 Lugano Classification Advanced Stage Adult Hodgkin Lymphoma AJCC v8 9 102576 -NCIT:C141197 Lugano Classification Stage III Adult Hodgkin Lymphoma AJCC v8 10 102577 -NCIT:C141198 Lugano Classification Stage IV Adult Hodgkin Lymphoma AJCC v8 10 102578 -NCIT:C172373 Advanced Hodgkin Lymphoma 7 102579 -NCIT:C68662 Advanced Favorable Hodgkin Lymphoma 8 102580 -NCIT:C68665 Advanced Unfavorable Hodgkin Lymphoma 8 102581 -NCIT:C173356 Pharyngeal Hodgkin Lymphoma 7 102582 -NCIT:C173361 Nasopharyngeal Hodgkin Lymphoma 8 102583 -NCIT:C173578 Oropharyngeal Hodgkin Lymphoma 8 102584 -NCIT:C173692 Salivary Gland Hodgkin Lymphoma 7 102585 -NCIT:C181205 Lung Hodgkin Lymphoma 7 102586 -NCIT:C181207 Primary Bone Hodgkin Lymphoma 7 102587 -NCIT:C181209 Thyroid Gland Hodgkin Lymphoma 7 102588 -NCIT:C27692 EBV-Related Hodgkin Lymphoma 7 102589 -NCIT:C7243 Classic Hodgkin Lymphoma Type Post-Transplant Lymphoproliferative Disorder 8 102590 -NCIT:C38163 Digestive System Hodgkin Lymphoma 7 102591 -NCIT:C5337 Small Intestinal Hodgkin Lymphoma 8 102592 -NCIT:C5638 Gastric Hodgkin Lymphoma 8 102593 -NCIT:C5689 Esophageal Hodgkin Lymphoma 8 102594 -NCIT:C96500 Colorectal Hodgkin Lymphoma 8 102595 -NCIT:C5499 Colon Hodgkin Lymphoma 9 102596 -NCIT:C4937 Recurrent Hodgkin Lymphoma 7 102597 -NCIT:C133592 Recurrent Classic Hodgkin Lymphoma 8 102598 -NCIT:C136971 Recurrent Lymphocyte-Rich Classic Hodgkin Lymphoma 9 102599 -NCIT:C8649 Recurrent Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 102600 -NCIT:C8832 Recurrent Mixed Cellularity Classic Hodgkin Lymphoma 9 102601 -NCIT:C8837 Recurrent Nodular Sclerosis Classic Hodgkin Lymphoma 9 102602 -NCIT:C7259 Recurrent Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 102603 -NCIT:C7789 Recurrent Adult Hodgkin Lymphoma 8 102604 -NCIT:C8059 Recurrent Childhood Hodgkin Lymphoma 8 102605 -NCIT:C6634 Mediastinal Hodgkin Lymphoma 7 102606 -NCIT:C95057 Thymic Hodgkin Lymphoma 8 102607 -NCIT:C6723 Chest Wall Hodgkin Lymphoma 7 102608 -NCIT:C68666 Hodgkin Lymphoma by Clinical Course 7 102609 -NCIT:C68660 Favorable Hodgkin Lymphoma 8 102610 -NCIT:C114806 Childhood Favorable Prognosis Hodgkin Lymphoma 9 102611 -NCIT:C114807 Adult Favorable Prognosis Hodgkin Lymphoma 9 102612 -NCIT:C68661 Early Favorable Hodgkin Lymphoma 9 102613 -NCIT:C68662 Advanced Favorable Hodgkin Lymphoma 9 102614 -NCIT:C68663 Unfavorable Hodgkin Lymphoma 8 102615 -NCIT:C114808 Childhood Unfavorable Prognosis Hodgkin Lymphoma 9 102616 -NCIT:C114809 Adult Unfavorable Prognosis Hodgkin Lymphoma 9 102617 -NCIT:C68664 Early Unfavorable Hodgkin Lymphoma 9 102618 -NCIT:C68665 Advanced Unfavorable Hodgkin Lymphoma 9 102619 -NCIT:C7164 Classic Hodgkin Lymphoma 7 102620 -NCIT:C133592 Recurrent Classic Hodgkin Lymphoma 8 102621 -NCIT:C136971 Recurrent Lymphocyte-Rich Classic Hodgkin Lymphoma 9 102622 -NCIT:C8649 Recurrent Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 102623 -NCIT:C8832 Recurrent Mixed Cellularity Classic Hodgkin Lymphoma 9 102624 -NCIT:C8837 Recurrent Nodular Sclerosis Classic Hodgkin Lymphoma 9 102625 -NCIT:C133736 Refractory Classic Hodgkin Lymphoma 8 102626 -NCIT:C142982 Refractory Lymphocyte-Rich Classic Hodgkin Lymphoma 9 102627 -NCIT:C8650 Refractory Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 102628 -NCIT:C8833 Refractory Mixed Cellularity Classic Hodgkin Lymphoma 9 102629 -NCIT:C8838 Refractory Nodular Sclerosis Classic Hodgkin Lymphoma 9 102630 -NCIT:C3517 Mixed Cellularity Classic Hodgkin Lymphoma 8 102631 -NCIT:C141224 Mixed Cellularity Classic Hodgkin Lymphoma by Ann Arbor Stage 9 102632 -NCIT:C3582 Ann Arbor Stage III Mixed Cellularity Classic Hodgkin Lymphoma 10 102633 -NCIT:C5077 Ann Arbor Stage II Mixed Cellularity Classic Hodgkin Lymphoma 10 102634 -NCIT:C5078 Ann Arbor Stage II Subdiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 11 102635 -NCIT:C5104 Ann Arbor Stage II Supradiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 11 102636 -NCIT:C8834 Ann Arbor Stage I Mixed Cellularity Classic Hodgkin Lymphoma 10 102637 -NCIT:C5075 Ann Arbor Stage I Subdiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 11 102638 -NCIT:C5076 Ann Arbor Stage I Supradiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 11 102639 -NCIT:C8835 Ann Arbor Stage IV Mixed Cellularity Classic Hodgkin Lymphoma 10 102640 -NCIT:C8063 Childhood Mixed Cellularity Classic Hodgkin Lymphoma 9 102641 -NCIT:C8832 Recurrent Mixed Cellularity Classic Hodgkin Lymphoma 9 102642 -NCIT:C8833 Refractory Mixed Cellularity Classic Hodgkin Lymphoma 9 102643 -NCIT:C9127 Adult Mixed Cellularity Classic Hodgkin Lymphoma 9 102644 -NCIT:C3518 Nodular Sclerosis Classic Hodgkin Lymphoma 8 102645 -NCIT:C141223 Nodular Sclerosis Classic Hodgkin Lymphoma by Ann Arbor Stage 9 102646 -NCIT:C3581 Ann Arbor Stage III Nodular Sclerosis Classic Hodgkin Lymphoma 10 102647 -NCIT:C5081 Ann Arbor Stage II Nodular Sclerosis Classic Hodgkin Lymphoma 10 102648 -NCIT:C5082 Ann Arbor Stage II Subdiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 11 102649 -NCIT:C5083 Ann Arbor Stage II Supradiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 11 102650 -NCIT:C8839 Ann Arbor Stage I Nodular Sclerosis Classic Hodgkin Lymphoma 10 102651 -NCIT:C5079 Ann Arbor Stage I Subdiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 11 102652 -NCIT:C5080 Ann Arbor Stage I Supradiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 11 102653 -NCIT:C8840 Ann Arbor Stage IV Nodular Sclerosis Classic Hodgkin Lymphoma 10 102654 -NCIT:C27807 Nodular Sclerosis Classic Hodgkin Lymphoma, Syncytial Variant 9 102655 -NCIT:C67171 Nodular Sclerosis Classic Hodgkin Lymphoma, Cellular Phase 9 102656 -NCIT:C7165 Grade 1 Nodular Sclerosis Classic Hodgkin Lymphoma 9 102657 -NCIT:C7166 Grade 2 Nodular Sclerosis Classic Hodgkin Lymphoma 9 102658 -NCIT:C8062 Childhood Nodular Sclerosis Classic Hodgkin Lymphoma 9 102659 -NCIT:C8837 Recurrent Nodular Sclerosis Classic Hodgkin Lymphoma 9 102660 -NCIT:C8838 Refractory Nodular Sclerosis Classic Hodgkin Lymphoma 9 102661 -NCIT:C9126 Adult Nodular Sclerosis Classic Hodgkin Lymphoma 9 102662 -NCIT:C6913 Lymphocyte-Rich Classic Hodgkin Lymphoma 8 102663 -NCIT:C136971 Recurrent Lymphocyte-Rich Classic Hodgkin Lymphoma 9 102664 -NCIT:C142982 Refractory Lymphocyte-Rich Classic Hodgkin Lymphoma 9 102665 -NCIT:C7054 Childhood Lymphocyte-Rich Classic Hodgkin Lymphoma 9 102666 -NCIT:C7223 Adult Lymphocyte-Rich Classic Hodgkin Lymphoma 9 102667 -NCIT:C69138 Adult Classic Hodgkin Lymphoma 8 102668 -NCIT:C7223 Adult Lymphocyte-Rich Classic Hodgkin Lymphoma 9 102669 -NCIT:C9125 Adult Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 102670 -NCIT:C9126 Adult Nodular Sclerosis Classic Hodgkin Lymphoma 9 102671 -NCIT:C9127 Adult Mixed Cellularity Classic Hodgkin Lymphoma 9 102672 -NCIT:C69142 Childhood Classic Hodgkin Lymphoma 8 102673 -NCIT:C7054 Childhood Lymphocyte-Rich Classic Hodgkin Lymphoma 9 102674 -NCIT:C8061 Childhood Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 102675 -NCIT:C8062 Childhood Nodular Sclerosis Classic Hodgkin Lymphoma 9 102676 -NCIT:C8063 Childhood Mixed Cellularity Classic Hodgkin Lymphoma 9 102677 -NCIT:C9283 Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 102678 -NCIT:C141222 Lymphocyte-Depleted Classic Hodgkin Lymphoma by Ann Arbor Stage 9 102679 -NCIT:C3583 Ann Arbor Stage III Lymphocyte-Depleted Classic Hodgkin Lymphoma 10 102680 -NCIT:C5064 Ann Arbor Stage I Lymphocyte-Depleted Classic Hodgkin Lymphoma 10 102681 -NCIT:C5065 Ann Arbor Stage I Subdiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 11 102682 -NCIT:C5066 Ann Arbor Stage I Supradiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 11 102683 -NCIT:C5067 Ann Arbor Stage II Lymphocyte-Depleted Classic Hodgkin Lymphoma 10 102684 -NCIT:C5068 Ann Arbor Stage II Subdiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 11 102685 -NCIT:C5069 Ann Arbor Stage II Supradiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 11 102686 -NCIT:C8651 Ann Arbor Stage IV Lymphocyte-Depleted Classic Hodgkin Lymphoma 10 102687 -NCIT:C8061 Childhood Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 102688 -NCIT:C8649 Recurrent Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 102689 -NCIT:C8650 Refractory Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 102690 -NCIT:C9125 Adult Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 102691 -NCIT:C7221 Primary Cutaneous Hodgkin Lymphoma 7 102692 -NCIT:C7256 Methotrexate-Associated Hodgkin Lymphoma 7 102693 -NCIT:C7258 Nodular Lymphocyte Predominant Hodgkin Lymphoma 7 102694 -NCIT:C141225 Nodular Lymphocyte Predominant Hodgkin Lymphoma by Ann Arbor Stage 8 102695 -NCIT:C5070 Ann Arbor Stage II Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 102696 -NCIT:C5071 Ann Arbor Stage II Subdiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 10 102697 -NCIT:C5072 Ann Arbor Stage II Supradiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 10 102698 -NCIT:C5634 Ann Arbor Stage I Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 102699 -NCIT:C5073 Ann Arbor Stage I Subdiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 10 102700 -NCIT:C5074 Ann Arbor Stage I Supradiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 10 102701 -NCIT:C7261 Ann Arbor Stage IV Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 102702 -NCIT:C7262 Ann Arbor Stage III Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 102703 -NCIT:C7259 Recurrent Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 102704 -NCIT:C7260 Refractory Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 102705 -NCIT:C7942 Adult Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 102706 -NCIT:C8060 Childhood Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 102707 -NCIT:C7295 Splenic Hodgkin Lymphoma 7 102708 -NCIT:C7702 Adult Hodgkin Lymphoma 7 102709 -NCIT:C114783 Hodgkin Lymphoma During Pregnancy 8 102710 -NCIT:C114807 Adult Favorable Prognosis Hodgkin Lymphoma 8 102711 -NCIT:C114809 Adult Unfavorable Prognosis Hodgkin Lymphoma 8 102712 -NCIT:C141189 Lugano Classification Adult Hodgkin Lymphoma by AJCC v8 Stage 8 102713 -NCIT:C141190 Lugano Classification Limited Stage Adult Hodgkin Lymphoma AJCC v8 9 102714 -NCIT:C141191 Lugano Classification Stage I Adult Hodgkin Lymphoma AJCC v8 10 102715 -NCIT:C141192 Lugano Classification Stage IE Adult Hodgkin Lymphoma AJCC v8 10 102716 -NCIT:C141193 Lugano Classification Stage II Adult Hodgkin Lymphoma AJCC v8 10 102717 -NCIT:C141195 Lugano Classification Stage II Bulky Adult Hodgkin Lymphoma AJCC v8 11 102718 -NCIT:C141194 Lugano Classification Stage IIE Adult Hodgkin Lymphoma AJCC v8 10 102719 -NCIT:C141196 Lugano Classification Advanced Stage Adult Hodgkin Lymphoma AJCC v8 9 102720 -NCIT:C141197 Lugano Classification Stage III Adult Hodgkin Lymphoma AJCC v8 10 102721 -NCIT:C141198 Lugano Classification Stage IV Adult Hodgkin Lymphoma AJCC v8 10 102722 -NCIT:C141226 Adult Hodgkin Lymphoma by Ann Arbor Stage 8 102723 -NCIT:C9032 Ann Arbor Stage I Adult Hodgkin Lymphoma 9 102724 -NCIT:C9033 Ann Arbor Stage II Adult Hodgkin Lymphoma 9 102725 -NCIT:C9034 Ann Arbor Stage III Adult Hodgkin Lymphoma 9 102726 -NCIT:C9035 Ann Arbor Stage IV Adult Hodgkin Lymphoma 9 102727 -NCIT:C69138 Adult Classic Hodgkin Lymphoma 8 102728 -NCIT:C7223 Adult Lymphocyte-Rich Classic Hodgkin Lymphoma 9 102729 -NCIT:C9125 Adult Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 102730 -NCIT:C9126 Adult Nodular Sclerosis Classic Hodgkin Lymphoma 9 102731 -NCIT:C9127 Adult Mixed Cellularity Classic Hodgkin Lymphoma 9 102732 -NCIT:C7789 Recurrent Adult Hodgkin Lymphoma 8 102733 -NCIT:C7942 Adult Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 102734 -NCIT:C7714 Childhood Hodgkin Lymphoma 7 102735 -NCIT:C114806 Childhood Favorable Prognosis Hodgkin Lymphoma 8 102736 -NCIT:C114808 Childhood Unfavorable Prognosis Hodgkin Lymphoma 8 102737 -NCIT:C115458 Refractory Childhood Hodgkin Lymphoma 8 102738 -NCIT:C141178 Lugano Classification Childhood Hodgkin Lymphoma by AJCC v8 Stage 8 102739 -NCIT:C141179 Lugano Classification Limited Stage Childhood Hodgkin Lymphoma AJCC v8 9 102740 -NCIT:C141180 Lugano Classification Stage I Childhood Hodgkin Lymphoma AJCC v8 10 102741 -NCIT:C141181 Lugano Classification Stage IE Childhood Hodgkin Lymphoma AJCC v8 10 102742 -NCIT:C141182 Lugano Classification Stage II Childhood Hodgkin Lymphoma AJCC v8 10 102743 -NCIT:C141184 Lugano Classification Stage II Bulky Childhood Hodgkin Lymphoma AJCC v8 11 102744 -NCIT:C141183 Lugano Classification Stage IIE Childhood Hodgkin Lymphoma AJCC v8 10 102745 -NCIT:C141185 Lugano Classification Advanced Stage Childhood Hodgkin Lymphoma AJCC v8 9 102746 -NCIT:C141186 Lugano Classification Stage III Childhood Hodgkin Lymphoma AJCC v8 10 102747 -NCIT:C141187 Lugano Classification Stage IV Childhood Hodgkin Lymphoma AJCC v8 10 102748 -NCIT:C141227 Childhood Hodgkin Lymphoma by Ann Arbor Stage 8 102749 -NCIT:C8055 Ann Arbor Stage II Childhood Hodgkin Lymphoma 9 102750 -NCIT:C8056 Ann Arbor Stage I Childhood Hodgkin Lymphoma 9 102751 -NCIT:C8057 Ann Arbor Stage III Childhood Hodgkin Lymphoma 9 102752 -NCIT:C8058 Ann Arbor Stage IV Childhood Hodgkin Lymphoma 9 102753 -NCIT:C69142 Childhood Classic Hodgkin Lymphoma 8 102754 -NCIT:C7054 Childhood Lymphocyte-Rich Classic Hodgkin Lymphoma 9 102755 -NCIT:C8061 Childhood Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 102756 -NCIT:C8062 Childhood Nodular Sclerosis Classic Hodgkin Lymphoma 9 102757 -NCIT:C8063 Childhood Mixed Cellularity Classic Hodgkin Lymphoma 9 102758 -NCIT:C8059 Recurrent Childhood Hodgkin Lymphoma 8 102759 -NCIT:C8060 Childhood Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 102760 -NCIT:C8836 Refractory Hodgkin Lymphoma 7 102761 -NCIT:C115458 Refractory Childhood Hodgkin Lymphoma 8 102762 -NCIT:C133736 Refractory Classic Hodgkin Lymphoma 8 102763 -NCIT:C142982 Refractory Lymphocyte-Rich Classic Hodgkin Lymphoma 9 102764 -NCIT:C8650 Refractory Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 102765 -NCIT:C8833 Refractory Mixed Cellularity Classic Hodgkin Lymphoma 9 102766 -NCIT:C8838 Refractory Nodular Sclerosis Classic Hodgkin Lymphoma 9 102767 -NCIT:C7260 Refractory Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 102768 -NCIT:C9279 AIDS-Related Hodgkin Lymphoma 7 102769 -NCIT:C40970 Angiocentric Immunoproliferative Lesion 5 102770 -NCIT:C7930 Lymphomatoid Granulomatosis 6 102771 -NCIT:C123392 Childhood Lymphomatoid Granulomatosis 7 102772 -NCIT:C115204 Childhood Grade III Lymphomatoid Granulomatosis 8 102773 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 9 102774 -NCIT:C123393 Recurrent Childhood Lymphomatoid Granulomatosis 8 102775 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 9 102776 -NCIT:C186662 Central Nervous System Lymphomatoid Granulomatosis 7 102777 -NCIT:C45267 Cutaneous Lymphomatoid Granulomatosis 7 102778 -NCIT:C45607 Pulmonary Lymphomatoid Granulomatosis 7 102779 -NCIT:C7931 Grade I Lymphomatoid Granulomatosis 7 102780 -NCIT:C115430 Recurrent Grade I Lymphomatoid Granulomatosis 8 102781 -NCIT:C7932 Grade II Lymphomatoid Granulomatosis 7 102782 -NCIT:C115431 Recurrent Grade II Lymphomatoid Granulomatosis 8 102783 -NCIT:C7933 Grade III Lymphomatoid Granulomatosis 7 102784 -NCIT:C115150 Adult Grade III Lymphomatoid Granulomatosis 8 102785 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 9 102786 -NCIT:C115204 Childhood Grade III Lymphomatoid Granulomatosis 8 102787 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 9 102788 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 8 102789 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 9 102790 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 9 102791 -NCIT:C7934 Recurrent Lymphomatoid Granulomatosis 7 102792 -NCIT:C115430 Recurrent Grade I Lymphomatoid Granulomatosis 8 102793 -NCIT:C115431 Recurrent Grade II Lymphomatoid Granulomatosis 8 102794 -NCIT:C123393 Recurrent Childhood Lymphomatoid Granulomatosis 8 102795 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 9 102796 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 8 102797 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 9 102798 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 9 102799 -NCIT:C7055 Precursor Lymphoid Neoplasm 5 102800 -NCIT:C3167 Acute Lymphoblastic Leukemia 6 102801 -NCIT:C121973 Acute Lymphoblastic Leukemia by Gene Expression Profile 7 102802 -NCIT:C121975 DDIT4L Acute Lymphoblastic Leukemia 8 102803 -NCIT:C121978 Acute Lymphoblastic Leukemia by ROSE Cluster 8 102804 -NCIT:C121980 ROSE Cluster 1 9 102805 -NCIT:C121981 ROSE Cluster 2 9 102806 -NCIT:C121982 ROSE Cluster 3 9 102807 -NCIT:C121983 ROSE Cluster 4 9 102808 -NCIT:C121984 ROSE Cluster 5 9 102809 -NCIT:C121985 ROSE Cluster 6 9 102810 -NCIT:C121986 ROSE Cluster 7 9 102811 -NCIT:C121988 ROSE Cluster 8 9 102812 -NCIT:C136488 Refractory Acute Lymphoblastic Leukemia 7 102813 -NCIT:C122624 Refractory Childhood Acute Lymphoblastic Leukemia 8 102814 -NCIT:C126309 Refractory Adult Acute Lymphoblastic Leukemia 8 102815 -NCIT:C142812 Refractory B Acute Lymphoblastic Leukemia 8 102816 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 9 102817 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 102818 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 9 102819 -NCIT:C150510 Refractory T Acute Lymphoblastic Leukemia 8 102820 -NCIT:C142810 Recurrent Acute Lymphoblastic Leukemia 7 102821 -NCIT:C142811 Recurrent B Acute Lymphoblastic Leukemia 8 102822 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 9 102823 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 102824 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 9 102825 -NCIT:C150131 Recurrent T Acute Lymphoblastic Leukemia 8 102826 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 9 102827 -NCIT:C7784 Recurrent Childhood Acute Lymphoblastic Leukemia 8 102828 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 9 102829 -NCIT:C7883 Recurrent Adult Acute Lymphoblastic Leukemia 8 102830 -NCIT:C3168 Childhood Acute Lymphoblastic Leukemia 7 102831 -NCIT:C122614 Infant Acute Lymphoblastic Leukemia 8 102832 -NCIT:C122617 Infant Acute Lymphoblastic Leukemia with MLL Rearrangement 9 102833 -NCIT:C122621 Infant Acute Lymphoblastic Leukemia without MLL Gene Rearrangement 9 102834 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 9 102835 -NCIT:C122624 Refractory Childhood Acute Lymphoblastic Leukemia 8 102836 -NCIT:C7784 Recurrent Childhood Acute Lymphoblastic Leukemia 8 102837 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 9 102838 -NCIT:C7953 Childhood T Acute Lymphoblastic Leukemia 8 102839 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 9 102840 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 9 102841 -NCIT:C9140 Childhood B Acute Lymphoblastic Leukemia 8 102842 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 102843 -NCIT:C3183 T Acute Lymphoblastic Leukemia 7 102844 -NCIT:C130043 Early T Acute Lymphoblastic Leukemia 8 102845 -NCIT:C150131 Recurrent T Acute Lymphoblastic Leukemia 8 102846 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 9 102847 -NCIT:C150510 Refractory T Acute Lymphoblastic Leukemia 8 102848 -NCIT:C45739 Mediastinal T Acute Lymphoblastic Leukemia 8 102849 -NCIT:C7953 Childhood T Acute Lymphoblastic Leukemia 8 102850 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 9 102851 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 9 102852 -NCIT:C9142 Adult T Acute Lymphoblastic Leukemia 8 102853 -NCIT:C4967 Adult Acute Lymphoblastic Leukemia 7 102854 -NCIT:C126309 Refractory Adult Acute Lymphoblastic Leukemia 8 102855 -NCIT:C7883 Recurrent Adult Acute Lymphoblastic Leukemia 8 102856 -NCIT:C9142 Adult T Acute Lymphoblastic Leukemia 8 102857 -NCIT:C9143 Adult B Acute Lymphoblastic Leukemia 8 102858 -NCIT:C114819 Adult B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 102859 -NCIT:C7177 Aleukemic Acute Lymphoblastic Leukemia 7 102860 -NCIT:C5631 Aleukemic Acute Lymphoblastic Leukemia Cutis 8 102861 -NCIT:C8644 B Acute Lymphoblastic Leukemia 7 102862 -NCIT:C121974 B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 102863 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 9 102864 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 9 102865 -NCIT:C128629 B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 102866 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 9 102867 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 9 102868 -NCIT:C130040 B Acute Lymphoblastic Leukemia with Intrachromosomal Amplification of Chromosome 21 8 102869 -NCIT:C142811 Recurrent B Acute Lymphoblastic Leukemia 8 102870 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 9 102871 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 102872 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 9 102873 -NCIT:C142812 Refractory B Acute Lymphoblastic Leukemia 8 102874 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 9 102875 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 102876 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 9 102877 -NCIT:C162776 B Acute Lymphoblastic Leukemia with t(4;11)(q21;23) 8 102878 -NCIT:C190847 B Acute Lymphoblastic Leukemia Associated with Down Syndrome 8 102879 -NCIT:C190957 B Acute Lymphoblastic Leukemia with ETV6-RUNX1-Like Features 8 102880 -NCIT:C36312 B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 102881 -NCIT:C114819 Adult B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 102882 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 102883 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 102884 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 102885 -NCIT:C80342 B Acute Lymphoblastic Leukemia with t(v;11q23.3); MLL Rearranged 8 102886 -NCIT:C80343 B Acute Lymphoblastic Leukemia with t(12;21)(p13.2;q22.1); ETV6-RUNX1 8 102887 -NCIT:C80344 Hyperdiploid B Acute Lymphoblastic Leukemia 8 102888 -NCIT:C80345 Hypodiploid B Acute Lymphoblastic Leukemia 8 102889 -NCIT:C80346 B Acute Lymphoblastic Leukemia with t(5;14)(q31.1;q32.3); IL3-IGH 8 102890 -NCIT:C80347 B Acute Lymphoblastic Leukemia with t(1;19)(q23;p13.3); E2A-PBX1 (TCF3-PBX1) 8 102891 -NCIT:C9140 Childhood B Acute Lymphoblastic Leukemia 8 102892 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 102893 -NCIT:C9143 Adult B Acute Lymphoblastic Leukemia 8 102894 -NCIT:C114819 Adult B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 102895 -NCIT:C45238 Cutaneous Precursor Lymphoid Neoplasm 6 102896 -NCIT:C45241 Cutaneous B Lymphoblastic Leukemia/Lymphoma 7 102897 -NCIT:C45242 Cutaneous T Lymphoblastic Leukemia/Lymphoma 7 102898 -NCIT:C5631 Aleukemic Acute Lymphoblastic Leukemia Cutis 7 102899 -NCIT:C82217 Natural Killer Cell Lymphoblastic Leukemia/Lymphoma 6 102900 -NCIT:C8694 T Lymphoblastic Leukemia/Lymphoma 6 102901 -NCIT:C3183 T Acute Lymphoblastic Leukemia 7 102902 -NCIT:C130043 Early T Acute Lymphoblastic Leukemia 8 102903 -NCIT:C150131 Recurrent T Acute Lymphoblastic Leukemia 8 102904 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 9 102905 -NCIT:C150510 Refractory T Acute Lymphoblastic Leukemia 8 102906 -NCIT:C45739 Mediastinal T Acute Lymphoblastic Leukemia 8 102907 -NCIT:C7953 Childhood T Acute Lymphoblastic Leukemia 8 102908 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 9 102909 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 9 102910 -NCIT:C9142 Adult T Acute Lymphoblastic Leukemia 8 102911 -NCIT:C45242 Cutaneous T Lymphoblastic Leukemia/Lymphoma 7 102912 -NCIT:C45738 Mediastinal T Lymphoblastic Leukemia/Lymphoma 7 102913 -NCIT:C45739 Mediastinal T Acute Lymphoblastic Leukemia 8 102914 -NCIT:C45740 Mediastinal T Lymphoblastic Lymphoma 8 102915 -NCIT:C5640 Childhood T Lymphoblastic Leukemia/Lymphoma 7 102916 -NCIT:C7210 Childhood T Lymphoblastic Lymphoma 8 102917 -NCIT:C7953 Childhood T Acute Lymphoblastic Leukemia 8 102918 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 9 102919 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 9 102920 -NCIT:C6919 T Lymphoblastic Lymphoma 7 102921 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 8 102922 -NCIT:C45740 Mediastinal T Lymphoblastic Lymphoma 8 102923 -NCIT:C7210 Childhood T Lymphoblastic Lymphoma 8 102924 -NCIT:C7226 Adult T Lymphoblastic Lymphoma 8 102925 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 8 102926 -NCIT:C7311 Splenic T Lymphoblastic Lymphoma 8 102927 -NCIT:C8695 Recurrent T Lymphoblastic Leukemia/Lymphoma 7 102928 -NCIT:C150131 Recurrent T Acute Lymphoblastic Leukemia 8 102929 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 9 102930 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 8 102931 -NCIT:C8696 Refractory T Lymphoblastic Leukemia/Lymphoma 7 102932 -NCIT:C150510 Refractory T Acute Lymphoblastic Leukemia 8 102933 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 8 102934 -NCIT:C8697 Stage I T Lymphoblastic Leukemia/Lymphoma 7 102935 -NCIT:C8698 Stage II T Lymphoblastic Leukemia/Lymphoma 7 102936 -NCIT:C8699 Stage III T Lymphoblastic Leukemia/Lymphoma 7 102937 -NCIT:C8700 Stage IV T Lymphoblastic Leukemia/Lymphoma 7 102938 -NCIT:C8936 B Lymphoblastic Leukemia/Lymphoma 6 102939 -NCIT:C188453 Childhood B Lymphoblastic Leukemia/Lymphoma 7 102940 -NCIT:C7209 Childhood B Lymphoblastic Lymphoma 8 102941 -NCIT:C9140 Childhood B Acute Lymphoblastic Leukemia 8 102942 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 102943 -NCIT:C45241 Cutaneous B Lymphoblastic Leukemia/Lymphoma 7 102944 -NCIT:C80326 B Lymphoblastic Leukemia/Lymphoma, Not Otherwise Specified 7 102945 -NCIT:C80328 B Lymphoblastic Leukemia/Lymphoma with Recurrent Genetic Abnormalities 7 102946 -NCIT:C129787 B Lymphoblastic Leukemia/Lymphoma with BCR-ABL1-Like Features 8 102947 -NCIT:C121974 B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 9 102948 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 10 102949 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 10 102950 -NCIT:C130039 B-Lymphoblastic Leukemia/Lymphoma with Intrachromosomal Amplification of Chromosome 21 8 102951 -NCIT:C130040 B Acute Lymphoblastic Leukemia with Intrachromosomal Amplification of Chromosome 21 9 102952 -NCIT:C190956 B Lymphoblastic Leukemia/Lymphoma with ETV6-RUNX1-Like Features 8 102953 -NCIT:C190957 B Acute Lymphoblastic Leukemia with ETV6-RUNX1-Like Features 9 102954 -NCIT:C80331 B Lymphoblastic Leukemia/Lymphoma with t(9;22)(q34.1;q11.2); BCR-ABL1 8 102955 -NCIT:C36312 B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 102956 -NCIT:C114819 Adult B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 10 102957 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 10 102958 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 10 102959 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 10 102960 -NCIT:C80332 B Lymphoblastic Leukemia/Lymphoma with t(v;11q23.3); MLL Rearranged 8 102961 -NCIT:C80342 B Acute Lymphoblastic Leukemia with t(v;11q23.3); MLL Rearranged 9 102962 -NCIT:C80334 B Lymphoblastic Leukemia/Lymphoma with t(12;21)(p13.2;q22.1); ETV6-RUNX1 8 102963 -NCIT:C80343 B Acute Lymphoblastic Leukemia with t(12;21)(p13.2;q22.1); ETV6-RUNX1 9 102964 -NCIT:C80335 B Lymphoblastic Leukemia/Lymphoma with Hyperdiploidy 8 102965 -NCIT:C80344 Hyperdiploid B Acute Lymphoblastic Leukemia 9 102966 -NCIT:C80338 B Lymphoblastic Leukemia/Lymphoma with Hypodiploidy 8 102967 -NCIT:C80345 Hypodiploid B Acute Lymphoblastic Leukemia 9 102968 -NCIT:C80340 B Lymphoblastic Leukemia/Lymphoma with t(5;14)(q31.1;q32.3); IL3-IGH 8 102969 -NCIT:C80346 B Acute Lymphoblastic Leukemia with t(5;14)(q31.1;q32.3); IL3-IGH 9 102970 -NCIT:C80341 B Lymphoblastic Leukemia/Lymphoma with t(1;19)(q23;p13.3); E2A-PBX1 (TCF3-PBX1) 8 102971 -NCIT:C80347 B Acute Lymphoblastic Leukemia with t(1;19)(q23;p13.3); E2A-PBX1 (TCF3-PBX1) 9 102972 -NCIT:C8644 B Acute Lymphoblastic Leukemia 7 102973 -NCIT:C121974 B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 102974 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 9 102975 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 9 102976 -NCIT:C128629 B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 102977 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 9 102978 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 9 102979 -NCIT:C130040 B Acute Lymphoblastic Leukemia with Intrachromosomal Amplification of Chromosome 21 8 102980 -NCIT:C142811 Recurrent B Acute Lymphoblastic Leukemia 8 102981 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 9 102982 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 102983 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 9 102984 -NCIT:C142812 Refractory B Acute Lymphoblastic Leukemia 8 102985 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 9 102986 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 102987 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 9 102988 -NCIT:C162776 B Acute Lymphoblastic Leukemia with t(4;11)(q21;23) 8 102989 -NCIT:C190847 B Acute Lymphoblastic Leukemia Associated with Down Syndrome 8 102990 -NCIT:C190957 B Acute Lymphoblastic Leukemia with ETV6-RUNX1-Like Features 8 102991 -NCIT:C36312 B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 102992 -NCIT:C114819 Adult B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 102993 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 102994 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 102995 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 102996 -NCIT:C80342 B Acute Lymphoblastic Leukemia with t(v;11q23.3); MLL Rearranged 8 102997 -NCIT:C80343 B Acute Lymphoblastic Leukemia with t(12;21)(p13.2;q22.1); ETV6-RUNX1 8 102998 -NCIT:C80344 Hyperdiploid B Acute Lymphoblastic Leukemia 8 102999 -NCIT:C80345 Hypodiploid B Acute Lymphoblastic Leukemia 8 103000 -NCIT:C80346 B Acute Lymphoblastic Leukemia with t(5;14)(q31.1;q32.3); IL3-IGH 8 103001 -NCIT:C80347 B Acute Lymphoblastic Leukemia with t(1;19)(q23;p13.3); E2A-PBX1 (TCF3-PBX1) 8 103002 -NCIT:C9140 Childhood B Acute Lymphoblastic Leukemia 8 103003 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 103004 -NCIT:C9143 Adult B Acute Lymphoblastic Leukemia 8 103005 -NCIT:C114819 Adult B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 103006 -NCIT:C8868 B Lymphoblastic Lymphoma 7 103007 -NCIT:C141250 B Lymphoblastic Lymphoma by Ann Arbor Stage 8 103008 -NCIT:C8871 Ann Arbor Stage I B Lymphoblastic Lymphoma 9 103009 -NCIT:C8872 Ann Arbor Stage III B Lymphoblastic Lymphoma 9 103010 -NCIT:C8873 Ann Arbor Stage IV B Lymphoblastic Lymphoma 9 103011 -NCIT:C8937 Ann Arbor Stage II B Lymphoblastic Lymphoma 9 103012 -NCIT:C7209 Childhood B Lymphoblastic Lymphoma 8 103013 -NCIT:C7310 Splenic B Lymphoblastic Lymphoma 8 103014 -NCIT:C7338 Adult B Lymphoblastic Lymphoma 8 103015 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 8 103016 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 8 103017 -NCIT:C9360 Lymphoblastic Lymphoma 6 103018 -NCIT:C151978 Refractory Lymphoblastic Lymphoma 7 103019 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 8 103020 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 8 103021 -NCIT:C6919 T Lymphoblastic Lymphoma 7 103022 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 8 103023 -NCIT:C45740 Mediastinal T Lymphoblastic Lymphoma 8 103024 -NCIT:C7210 Childhood T Lymphoblastic Lymphoma 8 103025 -NCIT:C7226 Adult T Lymphoblastic Lymphoma 8 103026 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 8 103027 -NCIT:C7311 Splenic T Lymphoblastic Lymphoma 8 103028 -NCIT:C7312 Splenic Lymphoblastic Lymphoma 7 103029 -NCIT:C7310 Splenic B Lymphoblastic Lymphoma 8 103030 -NCIT:C7311 Splenic T Lymphoblastic Lymphoma 8 103031 -NCIT:C8298 AIDS-Related Lymphoblastic Lymphoma 7 103032 -NCIT:C8868 B Lymphoblastic Lymphoma 7 103033 -NCIT:C141250 B Lymphoblastic Lymphoma by Ann Arbor Stage 8 103034 -NCIT:C8871 Ann Arbor Stage I B Lymphoblastic Lymphoma 9 103035 -NCIT:C8872 Ann Arbor Stage III B Lymphoblastic Lymphoma 9 103036 -NCIT:C8873 Ann Arbor Stage IV B Lymphoblastic Lymphoma 9 103037 -NCIT:C8937 Ann Arbor Stage II B Lymphoblastic Lymphoma 9 103038 -NCIT:C7209 Childhood B Lymphoblastic Lymphoma 8 103039 -NCIT:C7310 Splenic B Lymphoblastic Lymphoma 8 103040 -NCIT:C7338 Adult B Lymphoblastic Lymphoma 8 103041 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 8 103042 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 8 103043 -NCIT:C9124 Childhood Lymphoblastic Lymphoma 7 103044 -NCIT:C7209 Childhood B Lymphoblastic Lymphoma 8 103045 -NCIT:C7210 Childhood T Lymphoblastic Lymphoma 8 103046 -NCIT:C9056 Ann Arbor Stage I Childhood Lymphoblastic Lymphoma 8 103047 -NCIT:C9057 Ann Arbor Stage II Childhood Lymphoblastic Lymphoma 8 103048 -NCIT:C9058 Ann Arbor Stage III Childhood Lymphoblastic Lymphoma 8 103049 -NCIT:C9059 Ann Arbor Stage IV Childhood Lymphoblastic Lymphoma 8 103050 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 8 103051 -NCIT:C9361 Adult Lymphoblastic Lymphoma 7 103052 -NCIT:C7226 Adult T Lymphoblastic Lymphoma 8 103053 -NCIT:C7338 Adult B Lymphoblastic Lymphoma 8 103054 -NCIT:C8079 Ann Arbor Stage I Adult Lymphoblastic Lymphoma 8 103055 -NCIT:C8125 Ann Arbor Stage II Adult Lymphoblastic Lymphoma 8 103056 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 9 103057 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 9 103058 -NCIT:C8138 Ann Arbor Stage III Adult Lymphoblastic Lymphoma 8 103059 -NCIT:C8151 Ann Arbor Stage IV Adult Lymphoblastic Lymphoma 8 103060 -NCIT:C8164 Recurrent Adult Lymphoblastic Lymphoma 8 103061 -NCIT:C7232 Neoplastic Post-Transplant Lymphoproliferative Disorder 5 103062 -NCIT:C188179 Refractory Neoplastic Post-Transplant Lymphoproliferative Disorder 6 103063 -NCIT:C157475 Refractory Monomorphic Post-Transplant Lymphoproliferative Disorder 7 103064 -NCIT:C157477 Refractory Polymorphic Post-Transplant Lymphoproliferative Disorder 7 103065 -NCIT:C188180 Recurrent Neoplastic Post-Transplant Lymphoproliferative Disorder 6 103066 -NCIT:C157474 Recurrent Monomorphic Post-Transplant Lymphoproliferative Disorder 7 103067 -NCIT:C157476 Recurrent Polymorphic Post-Transplant Lymphoproliferative Disorder 7 103068 -NCIT:C27695 EBV-Related Clonal Post-Transplant Lymphoproliferative Disorder 6 103069 -NCIT:C7239 Hodgkin-Like Post-Transplant Lymphoproliferative Disorder 7 103070 -NCIT:C7243 Classic Hodgkin Lymphoma Type Post-Transplant Lymphoproliferative Disorder 7 103071 -NCIT:C7183 Polymorphic Post-Transplant Lymphoproliferative Disorder 6 103072 -NCIT:C157476 Recurrent Polymorphic Post-Transplant Lymphoproliferative Disorder 7 103073 -NCIT:C157477 Refractory Polymorphic Post-Transplant Lymphoproliferative Disorder 7 103074 -NCIT:C7233 Monomorphic Post-Transplant Lymphoproliferative Disorder 6 103075 -NCIT:C157474 Recurrent Monomorphic Post-Transplant Lymphoproliferative Disorder 7 103076 -NCIT:C157475 Refractory Monomorphic Post-Transplant Lymphoproliferative Disorder 7 103077 -NCIT:C7237 Monomorphic B-Cell Post-Transplant Lymphoproliferative Disorder 7 103078 -NCIT:C7240 Plasma Cell Post-Transplant Lymphoproliferative Disorder 8 103079 -NCIT:C7241 Plasmacytoma-Like Post-Transplant Lymphoproliferative Disorder 9 103080 -NCIT:C7242 Plasma Cell Myeloma Post-Transplant Lymphoproliferative Disorder 9 103081 -NCIT:C7244 Burkitt Lymphoma Post-Transplant Lymphoproliferative Disorder 8 103082 -NCIT:C7245 Burkitt-Like Lymphoma Post-Transplant Lymphoproliferative Disorder 9 103083 -NCIT:C7246 Diffuse Large B-Cell Lymphoma Post-Transplant Lymphoproliferative Disorder 8 103084 -NCIT:C7247 Anaplastic Lymphoma Post-Transplant Lymphoproliferative Disorder 9 103085 -NCIT:C7248 Centroblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 9 103086 -NCIT:C7249 Immunoblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 9 103087 -NCIT:C7238 Monomorphic T/NK-Cell Post-Transplant Lymphoproliferative Disorder 7 103088 -NCIT:C7539 Lymphoid Leukemia 5 103089 -NCIT:C3163 Chronic Lymphocytic Leukemia 6 103090 -NCIT:C141206 Chronic Lymphocytic Leukemia- Modified Rai Staging System 7 103091 -NCIT:C7847 Stage 0 Chronic Lymphocytic Leukemia 8 103092 -NCIT:C7874 Stage I Chronic Lymphocytic Leukemia 8 103093 -NCIT:C7875 Stage II Chronic Lymphocytic Leukemia 8 103094 -NCIT:C7876 Stage III Chronic Lymphocytic Leukemia 8 103095 -NCIT:C8646 Stage IV Chronic Lymphocytic Leukemia 8 103096 -NCIT:C141208 Chronic Lymphocytic Leukemia- Binet Staging System 7 103097 -NCIT:C141209 Stage A Chronic Lymphocytic Leukemia 8 103098 -NCIT:C141210 Stage B Chronic Lymphocytic Leukemia 8 103099 -NCIT:C141211 Stage C Chronic Lymphocytic Leukemia 8 103100 -NCIT:C157624 Transformed Chronic Lymphocytic Leukemia to Diffuse Large B-Cell Lymphoma 7 103101 -NCIT:C158151 Recurrent Transformed Chronic Lymphocytic Leukemia 8 103102 -NCIT:C158152 Refractory Transformed Chronic Lymphocytic Leukemia 8 103103 -NCIT:C36272 Chronic Lymphocytic Leukemia with Plasmacytoid Differentiation 7 103104 -NCIT:C37202 Chronic Lymphocytic Leukemia with Immunoglobulin Heavy Chain Variable-Region Gene Somatic Hypermutation 7 103105 -NCIT:C37205 Chronic Lymphocytic Leukemia with Unmutated Immunoglobulin Heavy Chain Variable-Region Gene 7 103106 -NCIT:C45264 Cutaneous Chronic Lymphocytic Leukemia 7 103107 -NCIT:C7176 Aleukemic Chronic Lymphocytic Leukemia 7 103108 -NCIT:C7300 Splenic Manifestation of Chronic Lymphocytic Leukemia 7 103109 -NCIT:C7886 Refractory Chronic Lymphocytic Leukemia 7 103110 -NCIT:C158152 Refractory Transformed Chronic Lymphocytic Leukemia 8 103111 -NCIT:C8645 Recurrent Chronic Lymphocytic Leukemia 7 103112 -NCIT:C158151 Recurrent Transformed Chronic Lymphocytic Leukemia 8 103113 -NCIT:C3167 Acute Lymphoblastic Leukemia 6 103114 -NCIT:C121973 Acute Lymphoblastic Leukemia by Gene Expression Profile 7 103115 -NCIT:C121975 DDIT4L Acute Lymphoblastic Leukemia 8 103116 -NCIT:C121978 Acute Lymphoblastic Leukemia by ROSE Cluster 8 103117 -NCIT:C121980 ROSE Cluster 1 9 103118 -NCIT:C121981 ROSE Cluster 2 9 103119 -NCIT:C121982 ROSE Cluster 3 9 103120 -NCIT:C121983 ROSE Cluster 4 9 103121 -NCIT:C121984 ROSE Cluster 5 9 103122 -NCIT:C121985 ROSE Cluster 6 9 103123 -NCIT:C121986 ROSE Cluster 7 9 103124 -NCIT:C121988 ROSE Cluster 8 9 103125 -NCIT:C136488 Refractory Acute Lymphoblastic Leukemia 7 103126 -NCIT:C122624 Refractory Childhood Acute Lymphoblastic Leukemia 8 103127 -NCIT:C126309 Refractory Adult Acute Lymphoblastic Leukemia 8 103128 -NCIT:C142812 Refractory B Acute Lymphoblastic Leukemia 8 103129 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 9 103130 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 103131 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 9 103132 -NCIT:C150510 Refractory T Acute Lymphoblastic Leukemia 8 103133 -NCIT:C142810 Recurrent Acute Lymphoblastic Leukemia 7 103134 -NCIT:C142811 Recurrent B Acute Lymphoblastic Leukemia 8 103135 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 9 103136 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 103137 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 9 103138 -NCIT:C150131 Recurrent T Acute Lymphoblastic Leukemia 8 103139 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 9 103140 -NCIT:C7784 Recurrent Childhood Acute Lymphoblastic Leukemia 8 103141 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 9 103142 -NCIT:C7883 Recurrent Adult Acute Lymphoblastic Leukemia 8 103143 -NCIT:C3168 Childhood Acute Lymphoblastic Leukemia 7 103144 -NCIT:C122614 Infant Acute Lymphoblastic Leukemia 8 103145 -NCIT:C122617 Infant Acute Lymphoblastic Leukemia with MLL Rearrangement 9 103146 -NCIT:C122621 Infant Acute Lymphoblastic Leukemia without MLL Gene Rearrangement 9 103147 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 9 103148 -NCIT:C122624 Refractory Childhood Acute Lymphoblastic Leukemia 8 103149 -NCIT:C7784 Recurrent Childhood Acute Lymphoblastic Leukemia 8 103150 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 9 103151 -NCIT:C7953 Childhood T Acute Lymphoblastic Leukemia 8 103152 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 9 103153 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 9 103154 -NCIT:C9140 Childhood B Acute Lymphoblastic Leukemia 8 103155 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 103156 -NCIT:C3183 T Acute Lymphoblastic Leukemia 7 103157 -NCIT:C130043 Early T Acute Lymphoblastic Leukemia 8 103158 -NCIT:C150131 Recurrent T Acute Lymphoblastic Leukemia 8 103159 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 9 103160 -NCIT:C150510 Refractory T Acute Lymphoblastic Leukemia 8 103161 -NCIT:C45739 Mediastinal T Acute Lymphoblastic Leukemia 8 103162 -NCIT:C7953 Childhood T Acute Lymphoblastic Leukemia 8 103163 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 9 103164 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 9 103165 -NCIT:C9142 Adult T Acute Lymphoblastic Leukemia 8 103166 -NCIT:C4967 Adult Acute Lymphoblastic Leukemia 7 103167 -NCIT:C126309 Refractory Adult Acute Lymphoblastic Leukemia 8 103168 -NCIT:C7883 Recurrent Adult Acute Lymphoblastic Leukemia 8 103169 -NCIT:C9142 Adult T Acute Lymphoblastic Leukemia 8 103170 -NCIT:C9143 Adult B Acute Lymphoblastic Leukemia 8 103171 -NCIT:C114819 Adult B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 103172 -NCIT:C7177 Aleukemic Acute Lymphoblastic Leukemia 7 103173 -NCIT:C5631 Aleukemic Acute Lymphoblastic Leukemia Cutis 8 103174 -NCIT:C8644 B Acute Lymphoblastic Leukemia 7 103175 -NCIT:C121974 B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 103176 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 9 103177 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 9 103178 -NCIT:C128629 B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 103179 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 9 103180 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 9 103181 -NCIT:C130040 B Acute Lymphoblastic Leukemia with Intrachromosomal Amplification of Chromosome 21 8 103182 -NCIT:C142811 Recurrent B Acute Lymphoblastic Leukemia 8 103183 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 9 103184 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 103185 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 9 103186 -NCIT:C142812 Refractory B Acute Lymphoblastic Leukemia 8 103187 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 9 103188 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 103189 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 9 103190 -NCIT:C162776 B Acute Lymphoblastic Leukemia with t(4;11)(q21;23) 8 103191 -NCIT:C190847 B Acute Lymphoblastic Leukemia Associated with Down Syndrome 8 103192 -NCIT:C190957 B Acute Lymphoblastic Leukemia with ETV6-RUNX1-Like Features 8 103193 -NCIT:C36312 B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 103194 -NCIT:C114819 Adult B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 103195 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 103196 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 103197 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 103198 -NCIT:C80342 B Acute Lymphoblastic Leukemia with t(v;11q23.3); MLL Rearranged 8 103199 -NCIT:C80343 B Acute Lymphoblastic Leukemia with t(12;21)(p13.2;q22.1); ETV6-RUNX1 8 103200 -NCIT:C80344 Hyperdiploid B Acute Lymphoblastic Leukemia 8 103201 -NCIT:C80345 Hypodiploid B Acute Lymphoblastic Leukemia 8 103202 -NCIT:C80346 B Acute Lymphoblastic Leukemia with t(5;14)(q31.1;q32.3); IL3-IGH 8 103203 -NCIT:C80347 B Acute Lymphoblastic Leukemia with t(1;19)(q23;p13.3); E2A-PBX1 (TCF3-PBX1) 8 103204 -NCIT:C9140 Childhood B Acute Lymphoblastic Leukemia 8 103205 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 103206 -NCIT:C9143 Adult B Acute Lymphoblastic Leukemia 8 103207 -NCIT:C114819 Adult B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 103208 -NCIT:C3180 Plasma Cell Leukemia 6 103209 -NCIT:C191432 Secondary Plasma Cell Leukemia 7 103210 -NCIT:C3181 Prolymphocytic Leukemia 6 103211 -NCIT:C4752 T-Cell Prolymphocytic Leukemia 7 103212 -NCIT:C150133 Recurrent T-Cell Prolymphocytic Leukemia 8 103213 -NCIT:C157691 Refractory T-Cell Prolymphocytic Leukemia 8 103214 -NCIT:C36270 T-Cell Prolymphocytic Leukemia, Small Cell Variant 8 103215 -NCIT:C36271 T-Cell Prolymphocytic Leukemia, Cerebriform Cell Variant 8 103216 -NCIT:C7298 Splenic Manifestation of T-Cell Prolymphocytic Leukemia 8 103217 -NCIT:C4753 B-Cell Prolymphocytic Leukemia 7 103218 -NCIT:C157697 Refractory B-Cell Prolymphocytic Leukemia 8 103219 -NCIT:C158081 Recurrent B-Cell Prolymphocytic Leukemia 8 103220 -NCIT:C7299 Splenic Manifestation of B-Cell Prolymphocytic Leukemia 8 103221 -NCIT:C7297 Splenic Manifestation of Prolymphocytic Leukemia 7 103222 -NCIT:C7298 Splenic Manifestation of T-Cell Prolymphocytic Leukemia 8 103223 -NCIT:C7299 Splenic Manifestation of B-Cell Prolymphocytic Leukemia 8 103224 -NCIT:C4343 Aleukemic Lymphoid Leukemia 6 103225 -NCIT:C7176 Aleukemic Chronic Lymphocytic Leukemia 7 103226 -NCIT:C7177 Aleukemic Acute Lymphoblastic Leukemia 7 103227 -NCIT:C5631 Aleukemic Acute Lymphoblastic Leukemia Cutis 8 103228 -NCIT:C4664 T-Cell Large Granular Lymphocyte Leukemia 6 103229 -NCIT:C180985 Recurrent T-Cell Large Granular Lymphocyte Leukemia 7 103230 -NCIT:C180986 Refractory T-Cell Large Granular Lymphocyte Leukemia 7 103231 -NCIT:C39584 T-Cell Large Granular Lymphocyte Leukemia, Common Variant 7 103232 -NCIT:C39586 T-Cell Large Granular Lymphocyte Leukemia Expressing the T-Cell Receptor Gamma-Delta 7 103233 -NCIT:C7302 Splenic Manifestation of T-Cell Large Granular Lymphocyte Leukemia 7 103234 -NCIT:C7400 Burkitt Leukemia 6 103235 -NCIT:C151976 Recurrent Burkitt Leukemia 7 103236 -NCIT:C151977 Refractory Burkitt Leukemia 7 103237 -NCIT:C7952 Childhood Burkitt Leukemia 7 103238 -NCIT:C7954 Adult Burkitt Leukemia 7 103239 -NCIT:C7401 Hairy Cell Leukemia Variant 6 103240 -NCIT:C171064 Refractory Hairy Cell Leukemia Variant 7 103241 -NCIT:C171065 Recurrent Hairy Cell Leukemia Variant 7 103242 -NCIT:C7402 Hairy Cell Leukemia 6 103243 -NCIT:C142882 Recurrent Hairy Cell Leukemia 7 103244 -NCIT:C7301 Splenic Manifestation of Hairy Cell Leukemia 7 103245 -NCIT:C8029 Progressive Hairy Cell Leukemia Initial Treatment 7 103246 -NCIT:C8030 Refractory Hairy Cell Leukemia 7 103247 -NCIT:C8594 Leukemic Phase of Lymphoma 6 103248 -NCIT:C138192 Leukemic Nonnodal Mantle Cell Lymphoma 7 103249 -NCIT:C3366 Sezary Syndrome 7 103250 -NCIT:C176999 Recurrent Sezary Syndrome 8 103251 -NCIT:C177000 Refractory Sezary Syndrome 8 103252 -NCIT:C36265 Acute Adult T-Cell Leukemia/Lymphoma 7 103253 -NCIT:C7178 Smoldering Adult T-Cell Leukemia/Lymphoma 7 103254 -NCIT:C7179 Chronic Adult T-Cell Leukemia/Lymphoma 7 103255 -NCIT:C8647 Aggressive NK-Cell Leukemia 6 103256 -NCIT:C157692 Recurrent Aggressive NK-Cell Leukemia 7 103257 -NCIT:C157693 Refractory Aggressive NK-Cell Leukemia 7 103258 -NCIT:C84270 Myeloid/Lymphoid Neoplasms with Eosinophilia and Rearrangement of PDGFRA, PDGFRB, or FGFR1, or with PCM1-JAK2 4 103259 -NCIT:C129853 Myeloid/Lymphoid Neoplasms with PCM1-JAK2 5 103260 -NCIT:C84275 Myeloid/Lymphoid Neoplasms with PDGFRA Rearrangement 5 103261 -NCIT:C126351 Chronic Eosinophilic Leukemia with FIP1L1-PDGFRA 6 103262 -NCIT:C84276 Myeloid/Lymphoid Neoplasms with PDGFRB Rearrangement 5 103263 -NCIT:C129852 Chronic Myelomonocytic Leukemia with Eosinophilia Associated with t(5;12)(q31;p12) 6 103264 -NCIT:C84277 Myeloid/Lymphoid Neoplasms with FGFR1 Rearrangement 5 103265 -NCIT:C9290 Myeloid Neoplasm 4 103266 -NCIT:C130038 Myeloid Neoplasms with Germline Predisposition 5 103267 -NCIT:C151897 Myeloid Neoplasms with Germline Predisposition without a Preexisting Disorder or Organ Dysfunction 6 103268 -NCIT:C151898 Acute Myeloid Leukemia with Germline CEBPA Mutation 7 103269 -NCIT:C151901 Myeloid Neoplasms with Germline DDX41 Mutation 7 103270 -NCIT:C151902 Myeloid Neoplasms with Germline Predisposition and Preexisting Platelet Disorders 6 103271 -NCIT:C151903 Myeloid Neoplasms with Germline RUNX1 Mutation 7 103272 -NCIT:C151908 Myeloid Neoplasms with Germline ANKRD26 Mutation 7 103273 -NCIT:C151911 Myeloid Neoplasms with Germline ETV6 Mutation 7 103274 -NCIT:C151910 Myeloid Neoplasms with Germline Predisposition Associated with Other Organ Dysfunction 6 103275 -NCIT:C151912 Myeloid Neoplasms with Germline GATA2 Mutation 7 103276 -NCIT:C151921 Myeloid Neoplasms with Germline Predisposition Associated with Telomerase Biology Disorders 7 103277 -NCIT:C151922 Myeloid Neoplasms with Germline Predisposition Associated with Inherited Bone Marrow Failure Syndromes 7 103278 -NCIT:C185293 Myeloid Neoplasms with Germline SAMD9 Mutation 7 103279 -NCIT:C168746 SAMD9-Associated Hereditary Myelodysplastic Syndrome 8 103280 -NCIT:C185294 Myeloid Neoplasms with Germline SAMD9L Mutation 7 103281 -NCIT:C168747 SAMD9L-Associated Hereditary Myelodysplastic Syndrome 8 103282 -NCIT:C172132 Recurrent Myeloid Neoplasm 5 103283 -NCIT:C148363 Recurrent Myelodysplastic Syndrome 6 103284 -NCIT:C148427 Recurrent Acute Myeloid Leukemia 6 103285 -NCIT:C125715 Recurrent Acute Myeloid Leukemia with Myelodysplasia-Related Changes 7 103286 -NCIT:C156720 Recurrent Acute Myeloid Leukemia with Multilineage Dysplasia 8 103287 -NCIT:C156716 Recurrent Acute Myeloid Leukemia Not Otherwise Specified 7 103288 -NCIT:C156717 Recurrent Acute Myelomonocytic Leukemia 8 103289 -NCIT:C156722 Recurrent Acute Monoblastic and Monocytic Leukemia 8 103290 -NCIT:C156723 Recurrent Acute Erythroid Leukemia 8 103291 -NCIT:C156731 Recurrent Acute Megakaryoblastic Leukemia 8 103292 -NCIT:C156718 Recurrent Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 7 103293 -NCIT:C156719 Recurrent Acute Myeloid Leukemia with t (9;11) (p21.3; q23.3); MLLT3-MLL 8 103294 -NCIT:C169107 Recurrent Acute Promyelocytic Leukemia with PML-RARA 8 103295 -NCIT:C7882 Recurrent Adult Acute Myeloid Leukemia 7 103296 -NCIT:C9068 Recurrent Childhood Acute Myeloid Leukemia 7 103297 -NCIT:C156103 Recurrent Blastic Plasmacytoid Dendritic Cell Neoplasm 6 103298 -NCIT:C166142 Recurrent Myeloproliferative Neoplasm 6 103299 -NCIT:C179203 Recurrent Primary Myelofibrosis 7 103300 -NCIT:C190786 Recurrent Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 103301 -NCIT:C9070 Recurrent Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 103302 -NCIT:C166143 Recurrent Myelodysplastic/Myeloproliferative Neoplasm 6 103303 -NCIT:C150048 Recurrent Chronic Myelomonocytic Leukemia 7 103304 -NCIT:C170817 Recurrent Malignant Mastocytosis 6 103305 -NCIT:C172281 Refractory Myeloid Neoplasm 5 103306 -NCIT:C134319 Refractory Acute Myeloid Leukemia 6 103307 -NCIT:C174486 Refractory Acute Myeloid Leukemia Not Otherwise Specified 7 103308 -NCIT:C174511 Refractory Acute Monoblastic and Monocytic Leukemia 8 103309 -NCIT:C174512 Refractory Acute Myelomonocytic Leukemia 8 103310 -NCIT:C180897 Refractory Acute Myeloid Leukemia with Myelodysplasia-Related Changes 7 103311 -NCIT:C187449 Refractory Childhood Acute Myeloid Leukemia 7 103312 -NCIT:C148362 Refractory Myelodysplastic Syndrome 6 103313 -NCIT:C156104 Refractory Blastic Plasmacytoid Dendritic Cell Neoplasm 6 103314 -NCIT:C170816 Refractory Malignant Mastocytosis 6 103315 -NCIT:C170911 Refractory Myeloproliferative Neoplasm 6 103316 -NCIT:C171340 Refractory Primary Myelofibrosis 7 103317 -NCIT:C190787 Refractory Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 103318 -NCIT:C7885 Refractory Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 103319 -NCIT:C171339 Refractory Myelodysplastic/Myeloproliferative Neoplasm 6 103320 -NCIT:C150049 Refractory Chronic Myelomonocytic Leukemia 7 103321 -NCIT:C27262 Myelodysplastic/Myeloproliferative Neoplasm 5 103322 -NCIT:C166143 Recurrent Myelodysplastic/Myeloproliferative Neoplasm 6 103323 -NCIT:C150048 Recurrent Chronic Myelomonocytic Leukemia 7 103324 -NCIT:C171339 Refractory Myelodysplastic/Myeloproliferative Neoplasm 6 103325 -NCIT:C150049 Refractory Chronic Myelomonocytic Leukemia 7 103326 -NCIT:C27780 Myelodysplastic/Myeloproliferative Neoplasm, Unclassifiable 6 103327 -NCIT:C3178 Chronic Myelomonocytic Leukemia 6 103328 -NCIT:C130035 Chronic Myelomonocytic Leukemia-0 7 103329 -NCIT:C150048 Recurrent Chronic Myelomonocytic Leukemia 7 103330 -NCIT:C150049 Refractory Chronic Myelomonocytic Leukemia 7 103331 -NCIT:C36060 Chronic Myelomonocytic Leukemia with Eosinophilia 7 103332 -NCIT:C36061 Chronic Myelomonocytic Leukemia-1 7 103333 -NCIT:C36062 Chronic Myelomonocytic Leukemia-2 7 103334 -NCIT:C3519 Atypical Chronic Myeloid Leukemia, BCR-ABL1 Negative 6 103335 -NCIT:C82397 Therapy-Related Myelodysplastic/Myeloproliferative Neoplasm 6 103336 -NCIT:C82616 Myelodysplastic/Myeloproliferative Neoplasm with Ring Sideroblasts and Thrombocytosis 6 103337 -NCIT:C9233 Juvenile Myelomonocytic Leukemia 6 103338 -NCIT:C27912 Therapy-Related Myeloid Neoplasm 5 103339 -NCIT:C27722 Therapy-Related Myelodysplastic Syndrome 6 103340 -NCIT:C7642 Epipodophyllotoxin-Related Myelodysplastic Syndrome 7 103341 -NCIT:C7643 Alkylating Agent-Related Myelodysplastic Syndrome 7 103342 -NCIT:C27913 Alkylating Agent-Related Acute Myeloid Leukemia and Myelodysplastic Syndrome 6 103343 -NCIT:C27754 Alkylating Agent-Related Acute Myeloid Leukemia 7 103344 -NCIT:C7643 Alkylating Agent-Related Myelodysplastic Syndrome 7 103345 -NCIT:C82397 Therapy-Related Myelodysplastic/Myeloproliferative Neoplasm 6 103346 -NCIT:C8252 Therapy-Related Acute Myeloid Leukemia 6 103347 -NCIT:C186730 Therapy-Related Cytogenetically Normal Acute Myeloid Leukemia 7 103348 -NCIT:C27754 Alkylating Agent-Related Acute Myeloid Leukemia 7 103349 -NCIT:C27755 Topoisomerase II Inhibitor-Related Acute Myeloid Leukemia 7 103350 -NCIT:C3172 Myeloid Leukemia 5 103351 -NCIT:C3171 Acute Myeloid Leukemia 6 103352 -NCIT:C122687 Cytogenetically Normal Acute Myeloid Leukemia 7 103353 -NCIT:C186730 Therapy-Related Cytogenetically Normal Acute Myeloid Leukemia 8 103354 -NCIT:C134319 Refractory Acute Myeloid Leukemia 7 103355 -NCIT:C174486 Refractory Acute Myeloid Leukemia Not Otherwise Specified 8 103356 -NCIT:C174511 Refractory Acute Monoblastic and Monocytic Leukemia 9 103357 -NCIT:C174512 Refractory Acute Myelomonocytic Leukemia 9 103358 -NCIT:C180897 Refractory Acute Myeloid Leukemia with Myelodysplasia-Related Changes 8 103359 -NCIT:C187449 Refractory Childhood Acute Myeloid Leukemia 8 103360 -NCIT:C148427 Recurrent Acute Myeloid Leukemia 7 103361 -NCIT:C125715 Recurrent Acute Myeloid Leukemia with Myelodysplasia-Related Changes 8 103362 -NCIT:C156720 Recurrent Acute Myeloid Leukemia with Multilineage Dysplasia 9 103363 -NCIT:C156716 Recurrent Acute Myeloid Leukemia Not Otherwise Specified 8 103364 -NCIT:C156717 Recurrent Acute Myelomonocytic Leukemia 9 103365 -NCIT:C156722 Recurrent Acute Monoblastic and Monocytic Leukemia 9 103366 -NCIT:C156723 Recurrent Acute Erythroid Leukemia 9 103367 -NCIT:C156731 Recurrent Acute Megakaryoblastic Leukemia 9 103368 -NCIT:C156718 Recurrent Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 8 103369 -NCIT:C156719 Recurrent Acute Myeloid Leukemia with t (9;11) (p21.3; q23.3); MLLT3-MLL 9 103370 -NCIT:C169107 Recurrent Acute Promyelocytic Leukemia with PML-RARA 9 103371 -NCIT:C7882 Recurrent Adult Acute Myeloid Leukemia 8 103372 -NCIT:C9068 Recurrent Childhood Acute Myeloid Leukemia 8 103373 -NCIT:C25765 Secondary Acute Myeloid Leukemia 7 103374 -NCIT:C172129 Acute Myeloid Leukemia Arising from Previous Myeloproliferative Neoplasm 8 103375 -NCIT:C172130 Acute Myeloid Leukemia Arising from Previous Myelodysplastic/Myeloproliferative Neoplasm 8 103376 -NCIT:C27931 Benzene-Related Acute Myeloid Leukemia 8 103377 -NCIT:C4037 Acute Myeloid Leukemia Arising from Previous Myelodysplastic Syndrome 8 103378 -NCIT:C8252 Therapy-Related Acute Myeloid Leukemia 8 103379 -NCIT:C186730 Therapy-Related Cytogenetically Normal Acute Myeloid Leukemia 9 103380 -NCIT:C27754 Alkylating Agent-Related Acute Myeloid Leukemia 9 103381 -NCIT:C27755 Topoisomerase II Inhibitor-Related Acute Myeloid Leukemia 9 103382 -NCIT:C27753 Acute Myeloid Leukemia Not Otherwise Specified 7 103383 -NCIT:C122625 Childhood Acute Myeloid Leukemia Not Otherwise Specified 8 103384 -NCIT:C7940 Childhood Acute Monoblastic and Monocytic Leukemia 9 103385 -NCIT:C9162 Childhood Acute Monoblastic Leukemia 10 103386 -NCIT:C9163 Childhood Acute Monocytic Leukemia 10 103387 -NCIT:C7970 Childhood Acute Myelomonocytic Leukemia 9 103388 -NCIT:C7971 Childhood Acute Basophilic Leukemia 9 103389 -NCIT:C7972 Childhood Acute Megakaryoblastic Leukemia 9 103390 -NCIT:C8304 Childhood Acute Myeloid Leukemia with Minimal Differentiation 9 103391 -NCIT:C9158 Childhood Acute Myeloid Leukemia without Maturation 9 103392 -NCIT:C9164 Childhood Acute Erythroid Leukemia 9 103393 -NCIT:C9381 Childhood Acute Myeloid Leukemia with Maturation 9 103394 -NCIT:C156716 Recurrent Acute Myeloid Leukemia Not Otherwise Specified 8 103395 -NCIT:C156717 Recurrent Acute Myelomonocytic Leukemia 9 103396 -NCIT:C156722 Recurrent Acute Monoblastic and Monocytic Leukemia 9 103397 -NCIT:C156723 Recurrent Acute Erythroid Leukemia 9 103398 -NCIT:C156731 Recurrent Acute Megakaryoblastic Leukemia 9 103399 -NCIT:C174486 Refractory Acute Myeloid Leukemia Not Otherwise Specified 8 103400 -NCIT:C174511 Refractory Acute Monoblastic and Monocytic Leukemia 9 103401 -NCIT:C174512 Refractory Acute Myelomonocytic Leukemia 9 103402 -NCIT:C3164 Acute Basophilic Leukemia 8 103403 -NCIT:C7964 Adult Acute Basophilic Leukemia 9 103404 -NCIT:C7971 Childhood Acute Basophilic Leukemia 9 103405 -NCIT:C3170 Acute Megakaryoblastic Leukemia 8 103406 -NCIT:C156731 Recurrent Acute Megakaryoblastic Leukemia 9 103407 -NCIT:C7965 Adult Acute Megakaryoblastic Leukemia 9 103408 -NCIT:C7972 Childhood Acute Megakaryoblastic Leukemia 9 103409 -NCIT:C3249 Acute Myeloid Leukemia without Maturation 8 103410 -NCIT:C9158 Childhood Acute Myeloid Leukemia without Maturation 9 103411 -NCIT:C9380 Adult Acute Myeloid Leukemia without Maturation 9 103412 -NCIT:C3250 Acute Myeloid Leukemia with Maturation 8 103413 -NCIT:C7961 Adult Acute Myeloid Leukemia with Maturation 9 103414 -NCIT:C9381 Childhood Acute Myeloid Leukemia with Maturation 9 103415 -NCIT:C4344 Acute Panmyelosis with Myelofibrosis 8 103416 -NCIT:C7318 Acute Monoblastic and Monocytic Leukemia 8 103417 -NCIT:C156722 Recurrent Acute Monoblastic and Monocytic Leukemia 9 103418 -NCIT:C174511 Refractory Acute Monoblastic and Monocytic Leukemia 9 103419 -NCIT:C4861 Acute Monocytic Leukemia 9 103420 -NCIT:C5630 Aleukemic Monocytic Leukemia Cutis 10 103421 -NCIT:C8263 Adult Acute Monocytic Leukemia 10 103422 -NCIT:C9163 Childhood Acute Monocytic Leukemia 10 103423 -NCIT:C7171 Acute Monoblastic Leukemia 9 103424 -NCIT:C9156 Adult Acute Monoblastic Leukemia 10 103425 -NCIT:C9162 Childhood Acute Monoblastic Leukemia 10 103426 -NCIT:C7319 Adult Acute Monoblastic and Monocytic Leukemia 9 103427 -NCIT:C8263 Adult Acute Monocytic Leukemia 10 103428 -NCIT:C9156 Adult Acute Monoblastic Leukemia 10 103429 -NCIT:C7940 Childhood Acute Monoblastic and Monocytic Leukemia 9 103430 -NCIT:C9162 Childhood Acute Monoblastic Leukemia 10 103431 -NCIT:C9163 Childhood Acute Monocytic Leukemia 10 103432 -NCIT:C7463 Acute Myelomonocytic Leukemia 8 103433 -NCIT:C156717 Recurrent Acute Myelomonocytic Leukemia 9 103434 -NCIT:C174512 Refractory Acute Myelomonocytic Leukemia 9 103435 -NCIT:C42779 Acute Myelomonocytic Leukemia without Abnormal Eosinophils 9 103436 -NCIT:C7962 Adult Acute Myelomonocytic Leukemia 9 103437 -NCIT:C7970 Childhood Acute Myelomonocytic Leukemia 9 103438 -NCIT:C9020 Acute Myelomonocytic Leukemia with Abnormal Eosinophils 9 103439 -NCIT:C8460 Acute Myeloid Leukemia with Minimal Differentiation 8 103440 -NCIT:C8303 Adult Acute Myeloid Leukemia with Minimal Differentiation 9 103441 -NCIT:C8304 Childhood Acute Myeloid Leukemia with Minimal Differentiation 9 103442 -NCIT:C8923 Acute Erythroid Leukemia 8 103443 -NCIT:C156723 Recurrent Acute Erythroid Leukemia 9 103444 -NCIT:C7152 Erythroleukemia 9 103445 -NCIT:C68694 Adult Erythroleukemia 10 103446 -NCIT:C7467 Pure Erythroid Leukemia 9 103447 -NCIT:C68693 Adult Pure Erythroid Leukemia 10 103448 -NCIT:C9153 Adult Acute Erythroid Leukemia 9 103449 -NCIT:C68693 Adult Pure Erythroid Leukemia 10 103450 -NCIT:C68694 Adult Erythroleukemia 10 103451 -NCIT:C9164 Childhood Acute Erythroid Leukemia 9 103452 -NCIT:C7175 Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 7 103453 -NCIT:C122688 Core Binding Factor Acute Myeloid Leukemia 8 103454 -NCIT:C129785 Acute Myeloid Leukemia with BCR-ABL1 8 103455 -NCIT:C156718 Recurrent Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 8 103456 -NCIT:C156719 Recurrent Acute Myeloid Leukemia with t (9;11) (p21.3; q23.3); MLLT3-MLL 9 103457 -NCIT:C169107 Recurrent Acute Promyelocytic Leukemia with PML-RARA 9 103458 -NCIT:C162775 Acute Myeloid Leukemia with Trisomy 8 8 103459 -NCIT:C174129 Acute Myeloid Leukemia with MLL Rearrangement 8 103460 -NCIT:C132101 Acute Myeloid Leukemia with t(10;11)(p12;q23); MLLT10-MLL 9 103461 -NCIT:C132105 Acute Myeloid Leukemia with t(6;11)(q27;q23); MLLT4-MLL 9 103462 -NCIT:C6924 Acute Myeloid Leukemia with Variant MLL Translocations 9 103463 -NCIT:C82403 Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 9 103464 -NCIT:C156719 Recurrent Acute Myeloid Leukemia with t (9;11) (p21.3; q23.3); MLLT3-MLL 10 103465 -NCIT:C188451 Childhood Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 10 103466 -NCIT:C68696 Adult Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 10 103467 -NCIT:C3182 Acute Promyelocytic Leukemia with PML-RARA 8 103468 -NCIT:C169107 Recurrent Acute Promyelocytic Leukemia with PML-RARA 9 103469 -NCIT:C27756 Typical Acute Promyelocytic Leukemia 9 103470 -NCIT:C27757 Microgranular Acute Promyelocytic Leukemia 9 103471 -NCIT:C7968 Childhood Acute Promyelocytic Leukemia with PML-RARA 9 103472 -NCIT:C9155 Adult Acute Promyelocytic Leukemia with PML-RARA 9 103473 -NCIT:C36055 Acute Myeloid Leukemia with a Variant RARA Translocation 8 103474 -NCIT:C36056 Acute Myeloid Leukemia with t(11;17)(q23;q21) 9 103475 -NCIT:C36057 Acute Myeloid Leukemia with t(5;17)(q35;q21) 9 103476 -NCIT:C36058 Acute Myeloid Leukemia with t(11;17)(q13;q21) 9 103477 -NCIT:C38377 Acute Myeloid Leukemia with t(17;17)(q21;q21) 9 103478 -NCIT:C68700 Adult Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 8 103479 -NCIT:C68696 Adult Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 9 103480 -NCIT:C68697 Adult Acute Myeloid Leukemia with inv(16)(p13.1q22); CBFB-MYH11 9 103481 -NCIT:C68698 Adult Acute Myeloid Leukemia with t(16;16)(p13.1;q22); CBFB-MYH11 9 103482 -NCIT:C68699 Adult Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 9 103483 -NCIT:C9155 Adult Acute Promyelocytic Leukemia with PML-RARA 9 103484 -NCIT:C82423 Acute Myeloid Leukemia with t(6;9) (p23;q34.1); DEK-NUP214 8 103485 -NCIT:C82426 Acute Myeloid Leukemia with inv(3) (q21.3;q26.2) or t(3;3) (q21.3;q26.2); GATA2, MECOM 8 103486 -NCIT:C122716 Acute Myeloid Leukemia with inv(3) (q21.3;q26.2); GATA2, MECOM 9 103487 -NCIT:C122717 Acute Myeloid Leukemia with t(3;3) (q21.3;q26.2); GATA2, MECOM 9 103488 -NCIT:C82427 Acute Myeloid Leukemia (Megakaryoblastic) with t(1;22)(p13.3;q13.1); RBM15-MKL1 8 103489 -NCIT:C9287 Acute Myeloid Leukemia with inv(16)(p13.1q22) or t(16;16)(p13.1;q22); CBFB-MYH11 8 103490 -NCIT:C9018 Acute Myeloid Leukemia with inv(16)(p13.1q22); CBFB-MYH11 9 103491 -NCIT:C68697 Adult Acute Myeloid Leukemia with inv(16)(p13.1q22); CBFB-MYH11 10 103492 -NCIT:C9019 Acute Myeloid Leukemia with t(16;16)(p13.1;q22); CBFB-MYH11 9 103493 -NCIT:C68698 Adult Acute Myeloid Leukemia with t(16;16)(p13.1;q22); CBFB-MYH11 10 103494 -NCIT:C9288 Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 8 103495 -NCIT:C188450 Childhood Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 9 103496 -NCIT:C68699 Adult Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 9 103497 -NCIT:C7600 Acute Myeloid Leukemia with Myelodysplasia-Related Changes 7 103498 -NCIT:C125715 Recurrent Acute Myeloid Leukemia with Myelodysplasia-Related Changes 8 103499 -NCIT:C156720 Recurrent Acute Myeloid Leukemia with Multilineage Dysplasia 9 103500 -NCIT:C180897 Refractory Acute Myeloid Leukemia with Myelodysplasia-Related Changes 8 103501 -NCIT:C4037 Acute Myeloid Leukemia Arising from Previous Myelodysplastic Syndrome 8 103502 -NCIT:C9289 Acute Myeloid Leukemia with Multilineage Dysplasia 8 103503 -NCIT:C156720 Recurrent Acute Myeloid Leukemia with Multilineage Dysplasia 9 103504 -NCIT:C82430 Acute Myeloid Leukemia with Gene Mutations 7 103505 -NCIT:C126748 Acute Myeloid Leukemia with FLT3/ITD Mutation 8 103506 -NCIT:C129786 Acute Myeloid Leukemia with RUNX1 Mutation 8 103507 -NCIT:C151898 Acute Myeloid Leukemia with Germline CEBPA Mutation 8 103508 -NCIT:C82431 Acute Myeloid Leukemia with NPM1 Mutation 8 103509 -NCIT:C82433 Acute Myeloid Leukemia with CEBPA Mutation 8 103510 -NCIT:C129782 Acute Myeloid Leukemia with Biallelic Mutations of CEBPA 9 103511 -NCIT:C129783 Acute Myeloid Leukemia with Monoallelic Mutations of CEBPA 9 103512 -NCIT:C9154 Adult Acute Myeloid Leukemia 7 103513 -NCIT:C68700 Adult Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 8 103514 -NCIT:C68696 Adult Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 9 103515 -NCIT:C68697 Adult Acute Myeloid Leukemia with inv(16)(p13.1q22); CBFB-MYH11 9 103516 -NCIT:C68698 Adult Acute Myeloid Leukemia with t(16;16)(p13.1;q22); CBFB-MYH11 9 103517 -NCIT:C68699 Adult Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 9 103518 -NCIT:C9155 Adult Acute Promyelocytic Leukemia with PML-RARA 9 103519 -NCIT:C7319 Adult Acute Monoblastic and Monocytic Leukemia 8 103520 -NCIT:C8263 Adult Acute Monocytic Leukemia 9 103521 -NCIT:C9156 Adult Acute Monoblastic Leukemia 9 103522 -NCIT:C7882 Recurrent Adult Acute Myeloid Leukemia 8 103523 -NCIT:C7961 Adult Acute Myeloid Leukemia with Maturation 8 103524 -NCIT:C7962 Adult Acute Myelomonocytic Leukemia 8 103525 -NCIT:C7964 Adult Acute Basophilic Leukemia 8 103526 -NCIT:C7965 Adult Acute Megakaryoblastic Leukemia 8 103527 -NCIT:C8303 Adult Acute Myeloid Leukemia with Minimal Differentiation 8 103528 -NCIT:C9153 Adult Acute Erythroid Leukemia 8 103529 -NCIT:C68693 Adult Pure Erythroid Leukemia 9 103530 -NCIT:C68694 Adult Erythroleukemia 9 103531 -NCIT:C9380 Adult Acute Myeloid Leukemia without Maturation 8 103532 -NCIT:C9160 Childhood Acute Myeloid Leukemia 7 103533 -NCIT:C122625 Childhood Acute Myeloid Leukemia Not Otherwise Specified 8 103534 -NCIT:C7940 Childhood Acute Monoblastic and Monocytic Leukemia 9 103535 -NCIT:C9162 Childhood Acute Monoblastic Leukemia 10 103536 -NCIT:C9163 Childhood Acute Monocytic Leukemia 10 103537 -NCIT:C7970 Childhood Acute Myelomonocytic Leukemia 9 103538 -NCIT:C7971 Childhood Acute Basophilic Leukemia 9 103539 -NCIT:C7972 Childhood Acute Megakaryoblastic Leukemia 9 103540 -NCIT:C8304 Childhood Acute Myeloid Leukemia with Minimal Differentiation 9 103541 -NCIT:C9158 Childhood Acute Myeloid Leukemia without Maturation 9 103542 -NCIT:C9164 Childhood Acute Erythroid Leukemia 9 103543 -NCIT:C9381 Childhood Acute Myeloid Leukemia with Maturation 9 103544 -NCIT:C122690 Acute Myeloid Leukemia with t(7;12)(q36;p13); HLXB9-ETV6 8 103545 -NCIT:C122691 Childhood Acute Myeloid Leukemia with NUP98 Rearrangement 8 103546 -NCIT:C131502 Acute Myeloid Leukemia with t(5;11)(q35;p15); NUP98-NSD1 9 103547 -NCIT:C131504 Acute Myeloid Leukemia with t(11;15)(p15;q35); NUP98-JARID1A 9 103548 -NCIT:C132111 Acute Megakaryoblastic Leukemia with NUP98-KDM5A 9 103549 -NCIT:C122725 Childhood Acute Myeloid Leukemia with Abnormalities of Chromosome 5q 8 103550 -NCIT:C122726 Childhood Acute Myeloid Leukemia with Abnormalities of Chromosome 7 8 103551 -NCIT:C132101 Acute Myeloid Leukemia with t(10;11)(p12;q23); MLLT10-MLL 8 103552 -NCIT:C132105 Acute Myeloid Leukemia with t(6;11)(q27;q23); MLLT4-MLL 8 103553 -NCIT:C132109 Acute Megakaryoblastic Leukemia with CBFA2T3-GLIS2 8 103554 -NCIT:C167089 Acute Myeloid Leukemia with RAM Immunophenotype 8 103555 -NCIT:C187449 Refractory Childhood Acute Myeloid Leukemia 8 103556 -NCIT:C188450 Childhood Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 8 103557 -NCIT:C188451 Childhood Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 8 103558 -NCIT:C7968 Childhood Acute Promyelocytic Leukemia with PML-RARA 8 103559 -NCIT:C82431 Acute Myeloid Leukemia with NPM1 Mutation 8 103560 -NCIT:C82433 Acute Myeloid Leukemia with CEBPA Mutation 8 103561 -NCIT:C129782 Acute Myeloid Leukemia with Biallelic Mutations of CEBPA 9 103562 -NCIT:C129783 Acute Myeloid Leukemia with Monoallelic Mutations of CEBPA 9 103563 -NCIT:C9068 Recurrent Childhood Acute Myeloid Leukemia 8 103564 -NCIT:C3174 Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 103565 -NCIT:C3173 Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 103566 -NCIT:C190786 Recurrent Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 8 103567 -NCIT:C190787 Refractory Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 8 103568 -NCIT:C3175 Chronic Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 103569 -NCIT:C7303 Splenic Manifestation of Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 103570 -NCIT:C7320 Childhood Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 103571 -NCIT:C7885 Refractory Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 103572 -NCIT:C9070 Recurrent Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 103573 -NCIT:C9110 Blast Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 103574 -NCIT:C9111 Meningeal Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 103575 -NCIT:C9128 Philadelphia Chromosome Positive, BCR-ABL1 Positive Chronic Myelogenous Leukemia 7 103576 -NCIT:C9129 Philadelphia Chromosome Negative, BCR-ABL1 Positive Chronic Myelogenous Leukemia 7 103577 -NCIT:C3176 Philadelphia-Negative Myelogenous Leukemia 6 103578 -NCIT:C9129 Philadelphia Chromosome Negative, BCR-ABL1 Positive Chronic Myelogenous Leukemia 7 103579 -NCIT:C3177 Philadelphia-Positive Myelogenous Leukemia 6 103580 -NCIT:C9128 Philadelphia Chromosome Positive, BCR-ABL1 Positive Chronic Myelogenous Leukemia 7 103581 -NCIT:C3247 Myelodysplastic Syndrome 5 103582 -NCIT:C115153 Adult Myelodysplastic Syndrome 6 103583 -NCIT:C122686 Hypocellular Myelodysplastic Syndrome 6 103584 -NCIT:C148362 Refractory Myelodysplastic Syndrome 6 103585 -NCIT:C148363 Recurrent Myelodysplastic Syndrome 6 103586 -NCIT:C168742 Hereditary Myelodysplastic Syndrome 6 103587 -NCIT:C168746 SAMD9-Associated Hereditary Myelodysplastic Syndrome 7 103588 -NCIT:C168747 SAMD9L-Associated Hereditary Myelodysplastic Syndrome 7 103589 -NCIT:C27280 Secondary Myelodysplastic Syndrome 6 103590 -NCIT:C27722 Therapy-Related Myelodysplastic Syndrome 7 103591 -NCIT:C7642 Epipodophyllotoxin-Related Myelodysplastic Syndrome 8 103592 -NCIT:C7643 Alkylating Agent-Related Myelodysplastic Syndrome 8 103593 -NCIT:C4036 Myelodysplastic Syndrome with Ring Sideroblasts 6 103594 -NCIT:C130037 Myelodysplastic Syndrome with Ring Sideroblasts and Single Lineage Dysplasia 7 103595 -NCIT:C27726 Myelodysplastic Syndrome with Ring Sideroblasts and Multilineage Dysplasia 7 103596 -NCIT:C6867 Myelodysplastic Syndrome with Isolated del(5q) 6 103597 -NCIT:C68744 Childhood Myelodysplastic Syndrome 6 103598 -NCIT:C188449 Childhood Myelodysplastic Syndrome with Excess Blasts 7 103599 -NCIT:C82596 Refractory Cytopenia of Childhood 7 103600 -NCIT:C7506 Myelodysplastic Syndrome with Excess Blasts 6 103601 -NCIT:C188449 Childhood Myelodysplastic Syndrome with Excess Blasts 7 103602 -NCIT:C7167 Myelodysplastic Syndrome with Excess Blasts-1 7 103603 -NCIT:C7168 Myelodysplastic Syndrome with Excess Blasts-2 7 103604 -NCIT:C82595 Myelodysplastic Syndrome with Excess Blasts and Fibrosis 7 103605 -NCIT:C8253 de novo Myelodysplastic Syndrome 6 103606 -NCIT:C82591 Myelodysplastic Syndrome with Single Lineage Dysplasia 6 103607 -NCIT:C2872 Refractory Anemia 7 103608 -NCIT:C82593 Refractory Neutropenia 7 103609 -NCIT:C82594 Refractory Thrombocytopenia 7 103610 -NCIT:C8574 Myelodysplastic Syndrome with Multilineage Dysplasia 6 103611 -NCIT:C8648 Myelodysplastic Syndrome, Unclassifiable 6 103612 -NCIT:C168677 Myelodysplastic Syndrome, Unclassifiable, With 1 Percent Blasts 7 103613 -NCIT:C168678 Myelodysplastic Syndrome, Unclassifiable, Based on Defining Cytogenetic Abnormality 7 103614 -NCIT:C168681 Myelodysplastic Syndrome, Unclassifiable, with Single Lineage Dysplasia 7 103615 -NCIT:C97310 Myelodysplastic Syndrome with Somatic Mutations 6 103616 -NCIT:C3520 Myeloid Sarcoma 5 103617 -NCIT:C132260 Small Intestinal Myeloid Sarcoma 6 103618 -NCIT:C162469 Testicular Myeloid Sarcoma 6 103619 -NCIT:C173489 Oral Cavity Myeloid Sarcoma 6 103620 -NCIT:C35815 Granulocytic Sarcoma 6 103621 -NCIT:C146883 Mediastinal Granulocytic Sarcoma 7 103622 -NCIT:C35817 Blastic Granulocytic Sarcoma 7 103623 -NCIT:C35818 Immature Granulocytic Sarcoma 7 103624 -NCIT:C35819 Differentiated Granulocytic Sarcoma 7 103625 -NCIT:C35816 Monoblastic Sarcoma 6 103626 -NCIT:C45741 Mediastinal Myeloid Sarcoma 6 103627 -NCIT:C146883 Mediastinal Granulocytic Sarcoma 7 103628 -NCIT:C5370 Cardiac Myeloid Sarcoma 6 103629 -NCIT:C5527 Prostate Myeloid Sarcoma 6 103630 -NCIT:C7008 Intracranial Myeloid Sarcoma 6 103631 -NCIT:C4345 Myeloproliferative Neoplasm 5 103632 -NCIT:C166142 Recurrent Myeloproliferative Neoplasm 6 103633 -NCIT:C179203 Recurrent Primary Myelofibrosis 7 103634 -NCIT:C190786 Recurrent Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 103635 -NCIT:C9070 Recurrent Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 103636 -NCIT:C170911 Refractory Myeloproliferative Neoplasm 6 103637 -NCIT:C171340 Refractory Primary Myelofibrosis 7 103638 -NCIT:C190787 Refractory Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 103639 -NCIT:C7885 Refractory Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 103640 -NCIT:C188315 Accelerated Phase Myeloproliferative Neoplasm 6 103641 -NCIT:C188317 Accelerated Phase Primary Myelofibrosis 7 103642 -NCIT:C3173 Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 103643 -NCIT:C190786 Recurrent Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 8 103644 -NCIT:C190787 Refractory Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 8 103645 -NCIT:C188316 Blast Phase Myeloproliferative Neoplasm 6 103646 -NCIT:C188318 Blast Phase Primary Myelofibrosis 7 103647 -NCIT:C9110 Blast Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 103648 -NCIT:C27350 Myeloproliferative Neoplasm, Unclassifiable 6 103649 -NCIT:C2862 Primary Myelofibrosis 6 103650 -NCIT:C171340 Refractory Primary Myelofibrosis 7 103651 -NCIT:C179203 Recurrent Primary Myelofibrosis 7 103652 -NCIT:C188314 Chronic Phase Primary Myelofibrosis 7 103653 -NCIT:C188317 Accelerated Phase Primary Myelofibrosis 7 103654 -NCIT:C188318 Blast Phase Primary Myelofibrosis 7 103655 -NCIT:C41237 Prefibrotic/Early Primary Myelofibrosis 7 103656 -NCIT:C41238 Overt Primary Myelofibrosis 7 103657 -NCIT:C3174 Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 103658 -NCIT:C3173 Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 103659 -NCIT:C190786 Recurrent Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 8 103660 -NCIT:C190787 Refractory Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 8 103661 -NCIT:C3175 Chronic Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 103662 -NCIT:C7303 Splenic Manifestation of Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 103663 -NCIT:C7320 Childhood Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 103664 -NCIT:C7885 Refractory Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 103665 -NCIT:C9070 Recurrent Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 103666 -NCIT:C9110 Blast Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 103667 -NCIT:C9111 Meningeal Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 103668 -NCIT:C9128 Philadelphia Chromosome Positive, BCR-ABL1 Positive Chronic Myelogenous Leukemia 7 103669 -NCIT:C9129 Philadelphia Chromosome Negative, BCR-ABL1 Positive Chronic Myelogenous Leukemia 7 103670 -NCIT:C3179 Chronic Neutrophilic Leukemia 6 103671 -NCIT:C3336 Polycythemia Vera 6 103672 -NCIT:C41232 Polycythemia Vera, Polycythemic Phase 7 103673 -NCIT:C41233 Polycythemia Vera, Post-Polycythemic Myelofibrosis Phase 7 103674 -NCIT:C3407 Essential Thrombocythemia 6 103675 -NCIT:C4563 Chronic Eosinophilic Leukemia, Not Otherwise Specified 6 103676 -NCIT:C7064 Erythroid Neoplasm 5 103677 -NCIT:C3336 Polycythemia Vera 6 103678 -NCIT:C41232 Polycythemia Vera, Polycythemic Phase 7 103679 -NCIT:C41233 Polycythemia Vera, Post-Polycythemic Myelofibrosis Phase 7 103680 -NCIT:C8923 Acute Erythroid Leukemia 6 103681 -NCIT:C156723 Recurrent Acute Erythroid Leukemia 7 103682 -NCIT:C7152 Erythroleukemia 7 103683 -NCIT:C68694 Adult Erythroleukemia 8 103684 -NCIT:C7467 Pure Erythroid Leukemia 7 103685 -NCIT:C68693 Adult Pure Erythroid Leukemia 8 103686 -NCIT:C9153 Adult Acute Erythroid Leukemia 7 103687 -NCIT:C68693 Adult Pure Erythroid Leukemia 8 103688 -NCIT:C68694 Adult Erythroleukemia 8 103689 -NCIT:C9164 Childhood Acute Erythroid Leukemia 7 103690 -NCIT:C7066 Megakaryocytic Neoplasm 5 103691 -NCIT:C3170 Acute Megakaryoblastic Leukemia 6 103692 -NCIT:C156731 Recurrent Acute Megakaryoblastic Leukemia 7 103693 -NCIT:C7965 Adult Acute Megakaryoblastic Leukemia 7 103694 -NCIT:C7972 Childhood Acute Megakaryoblastic Leukemia 7 103695 -NCIT:C3407 Essential Thrombocythemia 6 103696 -NCIT:C7203 Blastic Plasmacytoid Dendritic Cell Neoplasm 5 103697 -NCIT:C156103 Recurrent Blastic Plasmacytoid Dendritic Cell Neoplasm 6 103698 -NCIT:C156104 Refractory Blastic Plasmacytoid Dendritic Cell Neoplasm 6 103699 -NCIT:C82338 Myeloid Proliferations Associated with Down Syndrome 5 103700 -NCIT:C43223 Myeloid Leukemia Associated with Down Syndrome 6 103701 -NCIT:C82339 Transient Abnormal Myelopoiesis Associated with Down Syndrome 6 103702 -NCIT:C9295 Mast Cell Neoplasm 5 103703 -NCIT:C84269 Mastocytosis 6 103704 -NCIT:C7137 Cutaneous Mastocytosis 7 103705 -NCIT:C43277 Pure Cutaneous Mastocytosis 8 103706 -NCIT:C3218 Diffuse Cutaneous Mastocytosis 9 103707 -NCIT:C3433 Urticaria Pigmentosa/Maculopapular Cutaneous Mastocytosis 9 103708 -NCIT:C7138 Solitary Mastocytoma of the Skin 9 103709 -NCIT:C9235 Systemic Mastocytosis 7 103710 -NCIT:C43284 Primary Systemic Mastocytosis 8 103711 -NCIT:C115460 Smoldering Systemic Mastocytosis 9 103712 -NCIT:C188041 Smoldering Systemic Mastocytosis with an Associated Hematological Neoplasm 10 103713 -NCIT:C3169 Mast Cell Leukemia 9 103714 -NCIT:C188031 Mast Cell Leukemia Associated with Another Hematological Neoplasm 10 103715 -NCIT:C9284 Systemic Mastocytosis with an Associated Hematological Neoplasm 9 103716 -NCIT:C188031 Mast Cell Leukemia Associated with Another Hematological Neoplasm 10 103717 -NCIT:C188041 Smoldering Systemic Mastocytosis with an Associated Hematological Neoplasm 10 103718 -NCIT:C9285 Aggressive Systemic Mastocytosis 9 103719 -NCIT:C186732 Aggressive Systemic Mastocytosis Associated with Germ Cell Tumor 10 103720 -NCIT:C9286 Indolent Systemic Mastocytosis 9 103721 -NCIT:C8991 Malignant Mastocytosis 8 103722 -NCIT:C170816 Refractory Malignant Mastocytosis 9 103723 -NCIT:C170817 Recurrent Malignant Mastocytosis 9 103724 -NCIT:C186735 Systemic Mastocytosis Associated with Germ Cell Tumor 9 103725 -NCIT:C186732 Aggressive Systemic Mastocytosis Associated with Germ Cell Tumor 10 103726 -NCIT:C3169 Mast Cell Leukemia 9 103727 -NCIT:C188031 Mast Cell Leukemia Associated with Another Hematological Neoplasm 10 103728 -NCIT:C9284 Systemic Mastocytosis with an Associated Hematological Neoplasm 9 103729 -NCIT:C188031 Mast Cell Leukemia Associated with Another Hematological Neoplasm 10 103730 -NCIT:C188041 Smoldering Systemic Mastocytosis with an Associated Hematological Neoplasm 10 103731 -NCIT:C9285 Aggressive Systemic Mastocytosis 9 103732 -NCIT:C186732 Aggressive Systemic Mastocytosis Associated with Germ Cell Tumor 10 103733 -NCIT:C9348 Mast Cell Sarcoma 9 103734 -NCIT:C9303 Mastocytoma 6 103735 -NCIT:C3217 Benign Mastocytoma 7 103736 -NCIT:C7136 Extracutaneous Mastocytoma 7 103737 -NCIT:C9294 Histiocytic and Dendritic Cell Neoplasm 4 103738 -NCIT:C134168 Refractory Histiocytic and Dendritic Cell Neoplasm 5 103739 -NCIT:C134177 Refractory Langerhans Cell Histiocytosis 6 103740 -NCIT:C136489 Refractory Erdheim-Chester Disease 6 103741 -NCIT:C134172 Recurrent Histiocytic and Dendritic Cell Neoplasm 5 103742 -NCIT:C134175 Recurrent Langerhans Cell Histiocytosis 6 103743 -NCIT:C150692 Tumors Derived from Langerhans Cells 5 103744 -NCIT:C3107 Langerhans Cell Histiocytosis 6 103745 -NCIT:C114483 Childhood Langerhans Cell Histiocytosis 7 103746 -NCIT:C123395 Childhood Langerhans Cell Histiocytosis with Risk Organ Involvement 8 103747 -NCIT:C123396 Childhood Langerhans Cell Histiocytosis without Risk Organ Involvement 8 103748 -NCIT:C114929 Adult Langerhans Cell Histiocytosis 7 103749 -NCIT:C129806 Central Nervous System Langerhans Cell Histiocytosis 7 103750 -NCIT:C134175 Recurrent Langerhans Cell Histiocytosis 7 103751 -NCIT:C134177 Refractory Langerhans Cell Histiocytosis 7 103752 -NCIT:C150701 Langerhans Cell Histiocytosis, Monostotic 7 103753 -NCIT:C142833 Pulmonary Langerhans Cell Histiocytosis 8 103754 -NCIT:C3016 Eosinophilic Granuloma 8 103755 -NCIT:C150702 Langerhans Cell Histiocytosis, Polyostotic 7 103756 -NCIT:C6920 Hand-Schuller-Christian Disease 8 103757 -NCIT:C150703 Langerhans Cell Histiocytosis, Disseminated 7 103758 -NCIT:C3160 Letterer-Siwe Disease 8 103759 -NCIT:C168983 Cutaneous Langerhans Cell Histiocytosis 7 103760 -NCIT:C173486 Head and Neck Langerhans Cell Histiocytosis 7 103761 -NCIT:C156407 Thyroid Gland Langerhans Cell Histiocytosis 8 103762 -NCIT:C173487 Oral Mucosa Langerhans Cell Histiocytosis 8 103763 -NCIT:C178607 Bone Langerhans Cell Histiocytosis 7 103764 -NCIT:C6921 Langerhans Cell Sarcoma 6 103765 -NCIT:C168980 Cutaneous Histiocytic and Dendritic Cell Neoplasm 5 103766 -NCIT:C168983 Cutaneous Langerhans Cell Histiocytosis 6 103767 -NCIT:C168984 Cutaneous Indeterminate Dendritic Cell Tumor 6 103768 -NCIT:C168991 Cutaneous Erdheim-Chester Disease 6 103769 -NCIT:C27514 Adult Xanthogranuloma 6 103770 -NCIT:C3451 Juvenile Xanthogranuloma 6 103771 -NCIT:C173485 Head and Neck Histiocytic and Dendritic Cell Neoplasm 5 103772 -NCIT:C156406 Thyroid Gland Histiocytic and Dendritic Cell Neoplasm 6 103773 -NCIT:C156407 Thyroid Gland Langerhans Cell Histiocytosis 7 103774 -NCIT:C156408 Thyroid Gland Follicular Dendritic Cell Sarcoma 7 103775 -NCIT:C173486 Head and Neck Langerhans Cell Histiocytosis 6 103776 -NCIT:C156407 Thyroid Gland Langerhans Cell Histiocytosis 7 103777 -NCIT:C173487 Oral Mucosa Langerhans Cell Histiocytosis 7 103778 -NCIT:C173580 Head and Neck Follicular Dendritic Cell Sarcoma 6 103779 -NCIT:C156408 Thyroid Gland Follicular Dendritic Cell Sarcoma 7 103780 -NCIT:C27349 Histiocytic Sarcoma 5 103781 -NCIT:C129807 Central Nervous System Histiocytic Sarcoma 6 103782 -NCIT:C53972 Erdheim-Chester Disease 5 103783 -NCIT:C129808 Central Nervous System Erdheim-Chester Disease 6 103784 -NCIT:C136489 Refractory Erdheim-Chester Disease 6 103785 -NCIT:C168991 Cutaneous Erdheim-Chester Disease 6 103786 -NCIT:C178609 Bone Erdheim-Chester Disease 6 103787 -NCIT:C81758 Fibroblastic Reticular Cell Tumor 5 103788 -NCIT:C81767 Indeterminate Dendritic Cell Tumor 5 103789 -NCIT:C168984 Cutaneous Indeterminate Dendritic Cell Tumor 6 103790 -NCIT:C81772 Disseminated Juvenile Xanthogranuloma 5 103791 -NCIT:C9281 Follicular Dendritic Cell Sarcoma 5 103792 -NCIT:C172846 Conventional Follicular Dendritic Cell Sarcoma 6 103793 -NCIT:C172847 EBV-Positive Inflammatory Follicular Dendritic Cell Sarcoma 6 103794 -NCIT:C150704 EBV-Positive Inflammatory Follicular Dendritic Cell Sarcoma of the Digestive System 7 103795 -NCIT:C173580 Head and Neck Follicular Dendritic Cell Sarcoma 6 103796 -NCIT:C156408 Thyroid Gland Follicular Dendritic Cell Sarcoma 7 103797 -NCIT:C183374 Mediastinal Follicular Dendritic Cell Sarcoma 6 103798 -NCIT:C9282 Interdigitating Dendritic Cell Sarcoma 5 103799 -NCIT:C92944 Central Nervous System Histiocytic and Dendritic Cell Neoplasm 5 103800 -NCIT:C129806 Central Nervous System Langerhans Cell Histiocytosis 6 103801 -NCIT:C129807 Central Nervous System Histiocytic Sarcoma 6 103802 -NCIT:C129808 Central Nervous System Erdheim-Chester Disease 6 103803 -NCIT:C9431 Childhood Hematopoietic and Lymphoid Cell Neoplasm 4 103804 -NCIT:C114483 Childhood Langerhans Cell Histiocytosis 5 103805 -NCIT:C123395 Childhood Langerhans Cell Histiocytosis with Risk Organ Involvement 6 103806 -NCIT:C123396 Childhood Langerhans Cell Histiocytosis without Risk Organ Involvement 6 103807 -NCIT:C188453 Childhood B Lymphoblastic Leukemia/Lymphoma 5 103808 -NCIT:C7209 Childhood B Lymphoblastic Lymphoma 6 103809 -NCIT:C9140 Childhood B Acute Lymphoblastic Leukemia 6 103810 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 7 103811 -NCIT:C43223 Myeloid Leukemia Associated with Down Syndrome 5 103812 -NCIT:C4989 Childhood Leukemia 5 103813 -NCIT:C122603 Infant Leukemia 6 103814 -NCIT:C122614 Infant Acute Lymphoblastic Leukemia 7 103815 -NCIT:C122617 Infant Acute Lymphoblastic Leukemia with MLL Rearrangement 8 103816 -NCIT:C122621 Infant Acute Lymphoblastic Leukemia without MLL Gene Rearrangement 8 103817 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 8 103818 -NCIT:C122690 Acute Myeloid Leukemia with t(7;12)(q36;p13); HLXB9-ETV6 7 103819 -NCIT:C126110 Infant Acute Undifferentiated Leukemia 7 103820 -NCIT:C126111 Infant Acute Biphenotypic Leukemia 7 103821 -NCIT:C3845 Neonatal Leukemia 7 103822 -NCIT:C187056 Childhood Acute Leukemia 6 103823 -NCIT:C126110 Infant Acute Undifferentiated Leukemia 7 103824 -NCIT:C126111 Infant Acute Biphenotypic Leukemia 7 103825 -NCIT:C3168 Childhood Acute Lymphoblastic Leukemia 7 103826 -NCIT:C122614 Infant Acute Lymphoblastic Leukemia 8 103827 -NCIT:C122617 Infant Acute Lymphoblastic Leukemia with MLL Rearrangement 9 103828 -NCIT:C122621 Infant Acute Lymphoblastic Leukemia without MLL Gene Rearrangement 9 103829 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 9 103830 -NCIT:C122624 Refractory Childhood Acute Lymphoblastic Leukemia 8 103831 -NCIT:C7784 Recurrent Childhood Acute Lymphoblastic Leukemia 8 103832 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 9 103833 -NCIT:C7953 Childhood T Acute Lymphoblastic Leukemia 8 103834 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 9 103835 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 9 103836 -NCIT:C9140 Childhood B Acute Lymphoblastic Leukemia 8 103837 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 103838 -NCIT:C7952 Childhood Burkitt Leukemia 7 103839 -NCIT:C9160 Childhood Acute Myeloid Leukemia 7 103840 -NCIT:C122625 Childhood Acute Myeloid Leukemia Not Otherwise Specified 8 103841 -NCIT:C7940 Childhood Acute Monoblastic and Monocytic Leukemia 9 103842 -NCIT:C9162 Childhood Acute Monoblastic Leukemia 10 103843 -NCIT:C9163 Childhood Acute Monocytic Leukemia 10 103844 -NCIT:C7970 Childhood Acute Myelomonocytic Leukemia 9 103845 -NCIT:C7971 Childhood Acute Basophilic Leukemia 9 103846 -NCIT:C7972 Childhood Acute Megakaryoblastic Leukemia 9 103847 -NCIT:C8304 Childhood Acute Myeloid Leukemia with Minimal Differentiation 9 103848 -NCIT:C9158 Childhood Acute Myeloid Leukemia without Maturation 9 103849 -NCIT:C9164 Childhood Acute Erythroid Leukemia 9 103850 -NCIT:C9381 Childhood Acute Myeloid Leukemia with Maturation 9 103851 -NCIT:C122690 Acute Myeloid Leukemia with t(7;12)(q36;p13); HLXB9-ETV6 8 103852 -NCIT:C122691 Childhood Acute Myeloid Leukemia with NUP98 Rearrangement 8 103853 -NCIT:C131502 Acute Myeloid Leukemia with t(5;11)(q35;p15); NUP98-NSD1 9 103854 -NCIT:C131504 Acute Myeloid Leukemia with t(11;15)(p15;q35); NUP98-JARID1A 9 103855 -NCIT:C132111 Acute Megakaryoblastic Leukemia with NUP98-KDM5A 9 103856 -NCIT:C122725 Childhood Acute Myeloid Leukemia with Abnormalities of Chromosome 5q 8 103857 -NCIT:C122726 Childhood Acute Myeloid Leukemia with Abnormalities of Chromosome 7 8 103858 -NCIT:C132101 Acute Myeloid Leukemia with t(10;11)(p12;q23); MLLT10-MLL 8 103859 -NCIT:C132105 Acute Myeloid Leukemia with t(6;11)(q27;q23); MLLT4-MLL 8 103860 -NCIT:C132109 Acute Megakaryoblastic Leukemia with CBFA2T3-GLIS2 8 103861 -NCIT:C167089 Acute Myeloid Leukemia with RAM Immunophenotype 8 103862 -NCIT:C187449 Refractory Childhood Acute Myeloid Leukemia 8 103863 -NCIT:C188450 Childhood Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 8 103864 -NCIT:C188451 Childhood Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 8 103865 -NCIT:C7968 Childhood Acute Promyelocytic Leukemia with PML-RARA 8 103866 -NCIT:C82431 Acute Myeloid Leukemia with NPM1 Mutation 8 103867 -NCIT:C82433 Acute Myeloid Leukemia with CEBPA Mutation 8 103868 -NCIT:C129782 Acute Myeloid Leukemia with Biallelic Mutations of CEBPA 9 103869 -NCIT:C129783 Acute Myeloid Leukemia with Monoallelic Mutations of CEBPA 9 103870 -NCIT:C9068 Recurrent Childhood Acute Myeloid Leukemia 8 103871 -NCIT:C7320 Childhood Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 103872 -NCIT:C5165 Childhood Lymphoma 5 103873 -NCIT:C141202 Childhood Lymphoma by AJCC v8 Stage 6 103874 -NCIT:C141178 Lugano Classification Childhood Hodgkin Lymphoma by AJCC v8 Stage 7 103875 -NCIT:C141179 Lugano Classification Limited Stage Childhood Hodgkin Lymphoma AJCC v8 8 103876 -NCIT:C141180 Lugano Classification Stage I Childhood Hodgkin Lymphoma AJCC v8 9 103877 -NCIT:C141181 Lugano Classification Stage IE Childhood Hodgkin Lymphoma AJCC v8 9 103878 -NCIT:C141182 Lugano Classification Stage II Childhood Hodgkin Lymphoma AJCC v8 9 103879 -NCIT:C141184 Lugano Classification Stage II Bulky Childhood Hodgkin Lymphoma AJCC v8 10 103880 -NCIT:C141183 Lugano Classification Stage IIE Childhood Hodgkin Lymphoma AJCC v8 9 103881 -NCIT:C141185 Lugano Classification Advanced Stage Childhood Hodgkin Lymphoma AJCC v8 8 103882 -NCIT:C141186 Lugano Classification Stage III Childhood Hodgkin Lymphoma AJCC v8 9 103883 -NCIT:C141187 Lugano Classification Stage IV Childhood Hodgkin Lymphoma AJCC v8 9 103884 -NCIT:C141217 St. Jude Childhood Non-Hodgkin Lymphoma by AJCC v8 Stage 7 103885 -NCIT:C141218 St. Jude Stage I Childhood Non-Hodgkin Lymphoma AJCC v8 8 103886 -NCIT:C141219 St. Jude Stage II Childhood Non-Hodgkin Lymphoma AJCC v8 8 103887 -NCIT:C141220 St. Jude Stage III Childhood Non-Hodgkin Lymphoma AJCC v8 8 103888 -NCIT:C141221 St. Jude Stage IV Childhood Non-Hodgkin Lymphoma AJCC v8 8 103889 -NCIT:C187196 Recurrent Childhood Lymphoma 6 103890 -NCIT:C115369 Recurrent Childhood Non-Hodgkin Lymphoma 7 103891 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 8 103892 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 8 103893 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 8 103894 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 8 103895 -NCIT:C8059 Recurrent Childhood Hodgkin Lymphoma 7 103896 -NCIT:C187197 Refractory Childhood Lymphoma 6 103897 -NCIT:C115458 Refractory Childhood Hodgkin Lymphoma 7 103898 -NCIT:C7706 Childhood Non-Hodgkin Lymphoma 6 103899 -NCIT:C115369 Recurrent Childhood Non-Hodgkin Lymphoma 7 103900 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 8 103901 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 8 103902 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 8 103903 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 8 103904 -NCIT:C123394 Childhood Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 7 103905 -NCIT:C141217 St. Jude Childhood Non-Hodgkin Lymphoma by AJCC v8 Stage 7 103906 -NCIT:C141218 St. Jude Stage I Childhood Non-Hodgkin Lymphoma AJCC v8 8 103907 -NCIT:C141219 St. Jude Stage II Childhood Non-Hodgkin Lymphoma AJCC v8 8 103908 -NCIT:C141220 St. Jude Stage III Childhood Non-Hodgkin Lymphoma AJCC v8 8 103909 -NCIT:C141221 St. Jude Stage IV Childhood Non-Hodgkin Lymphoma AJCC v8 8 103910 -NCIT:C141236 Childhood Non-Hodgkin Lymphoma by Ann Arbor Stage 7 103911 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 8 103912 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 103913 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 103914 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 103915 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 103916 -NCIT:C94791 Ann Arbor Stage I Childhood Non-Hodgkin Lymphoma 8 103917 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 103918 -NCIT:C9056 Ann Arbor Stage I Childhood Lymphoblastic Lymphoma 9 103919 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 9 103920 -NCIT:C94792 Ann Arbor Stage II Childhood Non-Hodgkin Lymphoma 8 103921 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 103922 -NCIT:C9057 Ann Arbor Stage II Childhood Lymphoblastic Lymphoma 9 103923 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 9 103924 -NCIT:C94793 Ann Arbor Stage III Childhood Non-Hodgkin Lymphoma 8 103925 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 103926 -NCIT:C9058 Ann Arbor Stage III Childhood Lymphoblastic Lymphoma 9 103927 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 9 103928 -NCIT:C94794 Ann Arbor Stage IV Childhood Non-Hodgkin Lymphoma 8 103929 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 103930 -NCIT:C9059 Ann Arbor Stage IV Childhood Lymphoblastic Lymphoma 9 103931 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 9 103932 -NCIT:C188458 Childhood Large B-Cell Lymphoma with IRF4 Rearrangement 7 103933 -NCIT:C5637 Childhood Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 7 103934 -NCIT:C188459 Childhood Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 103935 -NCIT:C5636 Childhood Anaplastic Large Cell Lymphoma 8 103936 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 9 103937 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 9 103938 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 103939 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 103940 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 103941 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 103942 -NCIT:C188460 Childhood Anaplastic Large Cell Lymphoma, ALK-Positive 9 103943 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 9 103944 -NCIT:C9471 Childhood Systemic Anaplastic Large Cell Lymphoma 9 103945 -NCIT:C68692 Childhood Nasal Type Extranodal NK/T-Cell Lymphoma 8 103946 -NCIT:C80374 Systemic EBV-Positive T-Cell Lymphoma of Childhood 8 103947 -NCIT:C7616 Childhood Diffuse Large B-Cell Lymphoma 7 103948 -NCIT:C115204 Childhood Grade III Lymphomatoid Granulomatosis 8 103949 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 9 103950 -NCIT:C188455 Childhood Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 103951 -NCIT:C188456 Childhood EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 103952 -NCIT:C9079 Childhood Immunoblastic Lymphoma 8 103953 -NCIT:C80299 Pediatric Nodal Marginal Zone Lymphoma 7 103954 -NCIT:C9095 Childhood Burkitt Lymphoma 7 103955 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 8 103956 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 8 103957 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 8 103958 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 8 103959 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 8 103960 -NCIT:C9124 Childhood Lymphoblastic Lymphoma 7 103961 -NCIT:C7209 Childhood B Lymphoblastic Lymphoma 8 103962 -NCIT:C7210 Childhood T Lymphoblastic Lymphoma 8 103963 -NCIT:C9056 Ann Arbor Stage I Childhood Lymphoblastic Lymphoma 8 103964 -NCIT:C9057 Ann Arbor Stage II Childhood Lymphoblastic Lymphoma 8 103965 -NCIT:C9058 Ann Arbor Stage III Childhood Lymphoblastic Lymphoma 8 103966 -NCIT:C9059 Ann Arbor Stage IV Childhood Lymphoblastic Lymphoma 8 103967 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 8 103968 -NCIT:C7714 Childhood Hodgkin Lymphoma 6 103969 -NCIT:C114806 Childhood Favorable Prognosis Hodgkin Lymphoma 7 103970 -NCIT:C114808 Childhood Unfavorable Prognosis Hodgkin Lymphoma 7 103971 -NCIT:C115458 Refractory Childhood Hodgkin Lymphoma 7 103972 -NCIT:C141178 Lugano Classification Childhood Hodgkin Lymphoma by AJCC v8 Stage 7 103973 -NCIT:C141179 Lugano Classification Limited Stage Childhood Hodgkin Lymphoma AJCC v8 8 103974 -NCIT:C141180 Lugano Classification Stage I Childhood Hodgkin Lymphoma AJCC v8 9 103975 -NCIT:C141181 Lugano Classification Stage IE Childhood Hodgkin Lymphoma AJCC v8 9 103976 -NCIT:C141182 Lugano Classification Stage II Childhood Hodgkin Lymphoma AJCC v8 9 103977 -NCIT:C141184 Lugano Classification Stage II Bulky Childhood Hodgkin Lymphoma AJCC v8 10 103978 -NCIT:C141183 Lugano Classification Stage IIE Childhood Hodgkin Lymphoma AJCC v8 9 103979 -NCIT:C141185 Lugano Classification Advanced Stage Childhood Hodgkin Lymphoma AJCC v8 8 103980 -NCIT:C141186 Lugano Classification Stage III Childhood Hodgkin Lymphoma AJCC v8 9 103981 -NCIT:C141187 Lugano Classification Stage IV Childhood Hodgkin Lymphoma AJCC v8 9 103982 -NCIT:C141227 Childhood Hodgkin Lymphoma by Ann Arbor Stage 7 103983 -NCIT:C8055 Ann Arbor Stage II Childhood Hodgkin Lymphoma 8 103984 -NCIT:C8056 Ann Arbor Stage I Childhood Hodgkin Lymphoma 8 103985 -NCIT:C8057 Ann Arbor Stage III Childhood Hodgkin Lymphoma 8 103986 -NCIT:C8058 Ann Arbor Stage IV Childhood Hodgkin Lymphoma 8 103987 -NCIT:C69142 Childhood Classic Hodgkin Lymphoma 7 103988 -NCIT:C7054 Childhood Lymphocyte-Rich Classic Hodgkin Lymphoma 8 103989 -NCIT:C8061 Childhood Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 103990 -NCIT:C8062 Childhood Nodular Sclerosis Classic Hodgkin Lymphoma 8 103991 -NCIT:C8063 Childhood Mixed Cellularity Classic Hodgkin Lymphoma 8 103992 -NCIT:C8059 Recurrent Childhood Hodgkin Lymphoma 7 103993 -NCIT:C8060 Childhood Nodular Lymphocyte Predominant Hodgkin Lymphoma 7 103994 -NCIT:C5640 Childhood T Lymphoblastic Leukemia/Lymphoma 5 103995 -NCIT:C7210 Childhood T Lymphoblastic Lymphoma 6 103996 -NCIT:C7953 Childhood T Acute Lymphoblastic Leukemia 6 103997 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 7 103998 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 7 103999 -NCIT:C68744 Childhood Myelodysplastic Syndrome 5 104000 -NCIT:C188449 Childhood Myelodysplastic Syndrome with Excess Blasts 6 104001 -NCIT:C82596 Refractory Cytopenia of Childhood 6 104002 -NCIT:C80373 EBV-Positive T-Cell Lymphoproliferative Disorder of Childhood 5 104003 -NCIT:C45327 Hydroa Vacciniforme-Like Lymphoproliferative Disorder 6 104004 -NCIT:C80374 Systemic EBV-Positive T-Cell Lymphoma of Childhood 6 104005 -NCIT:C82339 Transient Abnormal Myelopoiesis Associated with Down Syndrome 5 104006 -NCIT:C3383 Splenic Neoplasm 3 104007 -NCIT:C3539 Malignant Splenic Neoplasm 4 104008 -NCIT:C185041 Splenic Plasmacytoma 5 104009 -NCIT:C185151 Extramedullary Disease in Plasma Cell Myeloma Involving the Spleen 5 104010 -NCIT:C48873 Splenic Lymphoma 5 104011 -NCIT:C7294 Splenic Non-Hodgkin Lymphoma 6 104012 -NCIT:C4663 Splenic Marginal Zone Lymphoma 7 104013 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 8 104014 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 8 104015 -NCIT:C7307 Splenic Follicular Lymphoma 7 104016 -NCIT:C7308 Splenic Diffuse Large B-Cell Lymphoma 7 104017 -NCIT:C7309 Splenic Burkitt Lymphoma 7 104018 -NCIT:C80309 Splenic Diffuse Red Pulp Small B-Cell Lymphoma 7 104019 -NCIT:C8459 Hepatosplenic T-Cell Lymphoma 7 104020 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 8 104021 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 8 104022 -NCIT:C7295 Splenic Hodgkin Lymphoma 6 104023 -NCIT:C7292 Malignant Splenic Soft Tissue Neoplasm 5 104024 -NCIT:C4564 Splenic Angiosarcoma 6 104025 -NCIT:C7296 Splenic Manifestation of Leukemia 5 104026 -NCIT:C7297 Splenic Manifestation of Prolymphocytic Leukemia 6 104027 -NCIT:C7298 Splenic Manifestation of T-Cell Prolymphocytic Leukemia 7 104028 -NCIT:C7299 Splenic Manifestation of B-Cell Prolymphocytic Leukemia 7 104029 -NCIT:C7300 Splenic Manifestation of Chronic Lymphocytic Leukemia 6 104030 -NCIT:C7301 Splenic Manifestation of Hairy Cell Leukemia 6 104031 -NCIT:C7302 Splenic Manifestation of T-Cell Large Granular Lymphocyte Leukemia 6 104032 -NCIT:C7303 Splenic Manifestation of Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 104033 -NCIT:C80308 Splenic B-Cell Lymphoma/Leukemia, Unclassifiable 5 104034 -NCIT:C7401 Hairy Cell Leukemia Variant 6 104035 -NCIT:C171064 Refractory Hairy Cell Leukemia Variant 7 104036 -NCIT:C171065 Recurrent Hairy Cell Leukemia Variant 7 104037 -NCIT:C80309 Splenic Diffuse Red Pulp Small B-Cell Lymphoma 6 104038 -NCIT:C4902 Benign Splenic Neoplasm 4 104039 -NCIT:C8541 Splenic Hemangioma 5 104040 -NCIT:C35370 Bone Marrow Neoplasm 3 104041 -NCIT:C35501 Malignant Bone Marrow Neoplasm 4 104042 -NCIT:C27262 Myelodysplastic/Myeloproliferative Neoplasm 5 104043 -NCIT:C166143 Recurrent Myelodysplastic/Myeloproliferative Neoplasm 6 104044 -NCIT:C150048 Recurrent Chronic Myelomonocytic Leukemia 7 104045 -NCIT:C171339 Refractory Myelodysplastic/Myeloproliferative Neoplasm 6 104046 -NCIT:C150049 Refractory Chronic Myelomonocytic Leukemia 7 104047 -NCIT:C27780 Myelodysplastic/Myeloproliferative Neoplasm, Unclassifiable 6 104048 -NCIT:C3178 Chronic Myelomonocytic Leukemia 6 104049 -NCIT:C130035 Chronic Myelomonocytic Leukemia-0 7 104050 -NCIT:C150048 Recurrent Chronic Myelomonocytic Leukemia 7 104051 -NCIT:C150049 Refractory Chronic Myelomonocytic Leukemia 7 104052 -NCIT:C36060 Chronic Myelomonocytic Leukemia with Eosinophilia 7 104053 -NCIT:C36061 Chronic Myelomonocytic Leukemia-1 7 104054 -NCIT:C36062 Chronic Myelomonocytic Leukemia-2 7 104055 -NCIT:C3519 Atypical Chronic Myeloid Leukemia, BCR-ABL1 Negative 6 104056 -NCIT:C82397 Therapy-Related Myelodysplastic/Myeloproliferative Neoplasm 6 104057 -NCIT:C82616 Myelodysplastic/Myeloproliferative Neoplasm with Ring Sideroblasts and Thrombocytosis 6 104058 -NCIT:C9233 Juvenile Myelomonocytic Leukemia 6 104059 -NCIT:C27912 Therapy-Related Myeloid Neoplasm 5 104060 -NCIT:C27722 Therapy-Related Myelodysplastic Syndrome 6 104061 -NCIT:C7642 Epipodophyllotoxin-Related Myelodysplastic Syndrome 7 104062 -NCIT:C7643 Alkylating Agent-Related Myelodysplastic Syndrome 7 104063 -NCIT:C27913 Alkylating Agent-Related Acute Myeloid Leukemia and Myelodysplastic Syndrome 6 104064 -NCIT:C27754 Alkylating Agent-Related Acute Myeloid Leukemia 7 104065 -NCIT:C7643 Alkylating Agent-Related Myelodysplastic Syndrome 7 104066 -NCIT:C82397 Therapy-Related Myelodysplastic/Myeloproliferative Neoplasm 6 104067 -NCIT:C8252 Therapy-Related Acute Myeloid Leukemia 6 104068 -NCIT:C186730 Therapy-Related Cytogenetically Normal Acute Myeloid Leukemia 7 104069 -NCIT:C27754 Alkylating Agent-Related Acute Myeloid Leukemia 7 104070 -NCIT:C27755 Topoisomerase II Inhibitor-Related Acute Myeloid Leukemia 7 104071 -NCIT:C3172 Myeloid Leukemia 5 104072 -NCIT:C3171 Acute Myeloid Leukemia 6 104073 -NCIT:C122687 Cytogenetically Normal Acute Myeloid Leukemia 7 104074 -NCIT:C186730 Therapy-Related Cytogenetically Normal Acute Myeloid Leukemia 8 104075 -NCIT:C134319 Refractory Acute Myeloid Leukemia 7 104076 -NCIT:C174486 Refractory Acute Myeloid Leukemia Not Otherwise Specified 8 104077 -NCIT:C174511 Refractory Acute Monoblastic and Monocytic Leukemia 9 104078 -NCIT:C174512 Refractory Acute Myelomonocytic Leukemia 9 104079 -NCIT:C180897 Refractory Acute Myeloid Leukemia with Myelodysplasia-Related Changes 8 104080 -NCIT:C187449 Refractory Childhood Acute Myeloid Leukemia 8 104081 -NCIT:C148427 Recurrent Acute Myeloid Leukemia 7 104082 -NCIT:C125715 Recurrent Acute Myeloid Leukemia with Myelodysplasia-Related Changes 8 104083 -NCIT:C156720 Recurrent Acute Myeloid Leukemia with Multilineage Dysplasia 9 104084 -NCIT:C156716 Recurrent Acute Myeloid Leukemia Not Otherwise Specified 8 104085 -NCIT:C156717 Recurrent Acute Myelomonocytic Leukemia 9 104086 -NCIT:C156722 Recurrent Acute Monoblastic and Monocytic Leukemia 9 104087 -NCIT:C156723 Recurrent Acute Erythroid Leukemia 9 104088 -NCIT:C156731 Recurrent Acute Megakaryoblastic Leukemia 9 104089 -NCIT:C156718 Recurrent Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 8 104090 -NCIT:C156719 Recurrent Acute Myeloid Leukemia with t (9;11) (p21.3; q23.3); MLLT3-MLL 9 104091 -NCIT:C169107 Recurrent Acute Promyelocytic Leukemia with PML-RARA 9 104092 -NCIT:C7882 Recurrent Adult Acute Myeloid Leukemia 8 104093 -NCIT:C9068 Recurrent Childhood Acute Myeloid Leukemia 8 104094 -NCIT:C25765 Secondary Acute Myeloid Leukemia 7 104095 -NCIT:C172129 Acute Myeloid Leukemia Arising from Previous Myeloproliferative Neoplasm 8 104096 -NCIT:C172130 Acute Myeloid Leukemia Arising from Previous Myelodysplastic/Myeloproliferative Neoplasm 8 104097 -NCIT:C27931 Benzene-Related Acute Myeloid Leukemia 8 104098 -NCIT:C4037 Acute Myeloid Leukemia Arising from Previous Myelodysplastic Syndrome 8 104099 -NCIT:C8252 Therapy-Related Acute Myeloid Leukemia 8 104100 -NCIT:C186730 Therapy-Related Cytogenetically Normal Acute Myeloid Leukemia 9 104101 -NCIT:C27754 Alkylating Agent-Related Acute Myeloid Leukemia 9 104102 -NCIT:C27755 Topoisomerase II Inhibitor-Related Acute Myeloid Leukemia 9 104103 -NCIT:C27753 Acute Myeloid Leukemia Not Otherwise Specified 7 104104 -NCIT:C122625 Childhood Acute Myeloid Leukemia Not Otherwise Specified 8 104105 -NCIT:C7940 Childhood Acute Monoblastic and Monocytic Leukemia 9 104106 -NCIT:C9162 Childhood Acute Monoblastic Leukemia 10 104107 -NCIT:C9163 Childhood Acute Monocytic Leukemia 10 104108 -NCIT:C7970 Childhood Acute Myelomonocytic Leukemia 9 104109 -NCIT:C7971 Childhood Acute Basophilic Leukemia 9 104110 -NCIT:C7972 Childhood Acute Megakaryoblastic Leukemia 9 104111 -NCIT:C8304 Childhood Acute Myeloid Leukemia with Minimal Differentiation 9 104112 -NCIT:C9158 Childhood Acute Myeloid Leukemia without Maturation 9 104113 -NCIT:C9164 Childhood Acute Erythroid Leukemia 9 104114 -NCIT:C9381 Childhood Acute Myeloid Leukemia with Maturation 9 104115 -NCIT:C156716 Recurrent Acute Myeloid Leukemia Not Otherwise Specified 8 104116 -NCIT:C156717 Recurrent Acute Myelomonocytic Leukemia 9 104117 -NCIT:C156722 Recurrent Acute Monoblastic and Monocytic Leukemia 9 104118 -NCIT:C156723 Recurrent Acute Erythroid Leukemia 9 104119 -NCIT:C156731 Recurrent Acute Megakaryoblastic Leukemia 9 104120 -NCIT:C174486 Refractory Acute Myeloid Leukemia Not Otherwise Specified 8 104121 -NCIT:C174511 Refractory Acute Monoblastic and Monocytic Leukemia 9 104122 -NCIT:C174512 Refractory Acute Myelomonocytic Leukemia 9 104123 -NCIT:C3164 Acute Basophilic Leukemia 8 104124 -NCIT:C7964 Adult Acute Basophilic Leukemia 9 104125 -NCIT:C7971 Childhood Acute Basophilic Leukemia 9 104126 -NCIT:C3170 Acute Megakaryoblastic Leukemia 8 104127 -NCIT:C156731 Recurrent Acute Megakaryoblastic Leukemia 9 104128 -NCIT:C7965 Adult Acute Megakaryoblastic Leukemia 9 104129 -NCIT:C7972 Childhood Acute Megakaryoblastic Leukemia 9 104130 -NCIT:C3249 Acute Myeloid Leukemia without Maturation 8 104131 -NCIT:C9158 Childhood Acute Myeloid Leukemia without Maturation 9 104132 -NCIT:C9380 Adult Acute Myeloid Leukemia without Maturation 9 104133 -NCIT:C3250 Acute Myeloid Leukemia with Maturation 8 104134 -NCIT:C7961 Adult Acute Myeloid Leukemia with Maturation 9 104135 -NCIT:C9381 Childhood Acute Myeloid Leukemia with Maturation 9 104136 -NCIT:C4344 Acute Panmyelosis with Myelofibrosis 8 104137 -NCIT:C7318 Acute Monoblastic and Monocytic Leukemia 8 104138 -NCIT:C156722 Recurrent Acute Monoblastic and Monocytic Leukemia 9 104139 -NCIT:C174511 Refractory Acute Monoblastic and Monocytic Leukemia 9 104140 -NCIT:C4861 Acute Monocytic Leukemia 9 104141 -NCIT:C5630 Aleukemic Monocytic Leukemia Cutis 10 104142 -NCIT:C8263 Adult Acute Monocytic Leukemia 10 104143 -NCIT:C9163 Childhood Acute Monocytic Leukemia 10 104144 -NCIT:C7171 Acute Monoblastic Leukemia 9 104145 -NCIT:C9156 Adult Acute Monoblastic Leukemia 10 104146 -NCIT:C9162 Childhood Acute Monoblastic Leukemia 10 104147 -NCIT:C7319 Adult Acute Monoblastic and Monocytic Leukemia 9 104148 -NCIT:C8263 Adult Acute Monocytic Leukemia 10 104149 -NCIT:C9156 Adult Acute Monoblastic Leukemia 10 104150 -NCIT:C7940 Childhood Acute Monoblastic and Monocytic Leukemia 9 104151 -NCIT:C9162 Childhood Acute Monoblastic Leukemia 10 104152 -NCIT:C9163 Childhood Acute Monocytic Leukemia 10 104153 -NCIT:C7463 Acute Myelomonocytic Leukemia 8 104154 -NCIT:C156717 Recurrent Acute Myelomonocytic Leukemia 9 104155 -NCIT:C174512 Refractory Acute Myelomonocytic Leukemia 9 104156 -NCIT:C42779 Acute Myelomonocytic Leukemia without Abnormal Eosinophils 9 104157 -NCIT:C7962 Adult Acute Myelomonocytic Leukemia 9 104158 -NCIT:C7970 Childhood Acute Myelomonocytic Leukemia 9 104159 -NCIT:C9020 Acute Myelomonocytic Leukemia with Abnormal Eosinophils 9 104160 -NCIT:C8460 Acute Myeloid Leukemia with Minimal Differentiation 8 104161 -NCIT:C8303 Adult Acute Myeloid Leukemia with Minimal Differentiation 9 104162 -NCIT:C8304 Childhood Acute Myeloid Leukemia with Minimal Differentiation 9 104163 -NCIT:C8923 Acute Erythroid Leukemia 8 104164 -NCIT:C156723 Recurrent Acute Erythroid Leukemia 9 104165 -NCIT:C7152 Erythroleukemia 9 104166 -NCIT:C68694 Adult Erythroleukemia 10 104167 -NCIT:C7467 Pure Erythroid Leukemia 9 104168 -NCIT:C68693 Adult Pure Erythroid Leukemia 10 104169 -NCIT:C9153 Adult Acute Erythroid Leukemia 9 104170 -NCIT:C68693 Adult Pure Erythroid Leukemia 10 104171 -NCIT:C68694 Adult Erythroleukemia 10 104172 -NCIT:C9164 Childhood Acute Erythroid Leukemia 9 104173 -NCIT:C7175 Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 7 104174 -NCIT:C122688 Core Binding Factor Acute Myeloid Leukemia 8 104175 -NCIT:C129785 Acute Myeloid Leukemia with BCR-ABL1 8 104176 -NCIT:C156718 Recurrent Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 8 104177 -NCIT:C156719 Recurrent Acute Myeloid Leukemia with t (9;11) (p21.3; q23.3); MLLT3-MLL 9 104178 -NCIT:C169107 Recurrent Acute Promyelocytic Leukemia with PML-RARA 9 104179 -NCIT:C162775 Acute Myeloid Leukemia with Trisomy 8 8 104180 -NCIT:C174129 Acute Myeloid Leukemia with MLL Rearrangement 8 104181 -NCIT:C132101 Acute Myeloid Leukemia with t(10;11)(p12;q23); MLLT10-MLL 9 104182 -NCIT:C132105 Acute Myeloid Leukemia with t(6;11)(q27;q23); MLLT4-MLL 9 104183 -NCIT:C6924 Acute Myeloid Leukemia with Variant MLL Translocations 9 104184 -NCIT:C82403 Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 9 104185 -NCIT:C156719 Recurrent Acute Myeloid Leukemia with t (9;11) (p21.3; q23.3); MLLT3-MLL 10 104186 -NCIT:C188451 Childhood Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 10 104187 -NCIT:C68696 Adult Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 10 104188 -NCIT:C3182 Acute Promyelocytic Leukemia with PML-RARA 8 104189 -NCIT:C169107 Recurrent Acute Promyelocytic Leukemia with PML-RARA 9 104190 -NCIT:C27756 Typical Acute Promyelocytic Leukemia 9 104191 -NCIT:C27757 Microgranular Acute Promyelocytic Leukemia 9 104192 -NCIT:C7968 Childhood Acute Promyelocytic Leukemia with PML-RARA 9 104193 -NCIT:C9155 Adult Acute Promyelocytic Leukemia with PML-RARA 9 104194 -NCIT:C36055 Acute Myeloid Leukemia with a Variant RARA Translocation 8 104195 -NCIT:C36056 Acute Myeloid Leukemia with t(11;17)(q23;q21) 9 104196 -NCIT:C36057 Acute Myeloid Leukemia with t(5;17)(q35;q21) 9 104197 -NCIT:C36058 Acute Myeloid Leukemia with t(11;17)(q13;q21) 9 104198 -NCIT:C38377 Acute Myeloid Leukemia with t(17;17)(q21;q21) 9 104199 -NCIT:C68700 Adult Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 8 104200 -NCIT:C68696 Adult Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 9 104201 -NCIT:C68697 Adult Acute Myeloid Leukemia with inv(16)(p13.1q22); CBFB-MYH11 9 104202 -NCIT:C68698 Adult Acute Myeloid Leukemia with t(16;16)(p13.1;q22); CBFB-MYH11 9 104203 -NCIT:C68699 Adult Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 9 104204 -NCIT:C9155 Adult Acute Promyelocytic Leukemia with PML-RARA 9 104205 -NCIT:C82423 Acute Myeloid Leukemia with t(6;9) (p23;q34.1); DEK-NUP214 8 104206 -NCIT:C82426 Acute Myeloid Leukemia with inv(3) (q21.3;q26.2) or t(3;3) (q21.3;q26.2); GATA2, MECOM 8 104207 -NCIT:C122716 Acute Myeloid Leukemia with inv(3) (q21.3;q26.2); GATA2, MECOM 9 104208 -NCIT:C122717 Acute Myeloid Leukemia with t(3;3) (q21.3;q26.2); GATA2, MECOM 9 104209 -NCIT:C82427 Acute Myeloid Leukemia (Megakaryoblastic) with t(1;22)(p13.3;q13.1); RBM15-MKL1 8 104210 -NCIT:C9287 Acute Myeloid Leukemia with inv(16)(p13.1q22) or t(16;16)(p13.1;q22); CBFB-MYH11 8 104211 -NCIT:C9018 Acute Myeloid Leukemia with inv(16)(p13.1q22); CBFB-MYH11 9 104212 -NCIT:C68697 Adult Acute Myeloid Leukemia with inv(16)(p13.1q22); CBFB-MYH11 10 104213 -NCIT:C9019 Acute Myeloid Leukemia with t(16;16)(p13.1;q22); CBFB-MYH11 9 104214 -NCIT:C68698 Adult Acute Myeloid Leukemia with t(16;16)(p13.1;q22); CBFB-MYH11 10 104215 -NCIT:C9288 Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 8 104216 -NCIT:C188450 Childhood Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 9 104217 -NCIT:C68699 Adult Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 9 104218 -NCIT:C7600 Acute Myeloid Leukemia with Myelodysplasia-Related Changes 7 104219 -NCIT:C125715 Recurrent Acute Myeloid Leukemia with Myelodysplasia-Related Changes 8 104220 -NCIT:C156720 Recurrent Acute Myeloid Leukemia with Multilineage Dysplasia 9 104221 -NCIT:C180897 Refractory Acute Myeloid Leukemia with Myelodysplasia-Related Changes 8 104222 -NCIT:C4037 Acute Myeloid Leukemia Arising from Previous Myelodysplastic Syndrome 8 104223 -NCIT:C9289 Acute Myeloid Leukemia with Multilineage Dysplasia 8 104224 -NCIT:C156720 Recurrent Acute Myeloid Leukemia with Multilineage Dysplasia 9 104225 -NCIT:C82430 Acute Myeloid Leukemia with Gene Mutations 7 104226 -NCIT:C126748 Acute Myeloid Leukemia with FLT3/ITD Mutation 8 104227 -NCIT:C129786 Acute Myeloid Leukemia with RUNX1 Mutation 8 104228 -NCIT:C151898 Acute Myeloid Leukemia with Germline CEBPA Mutation 8 104229 -NCIT:C82431 Acute Myeloid Leukemia with NPM1 Mutation 8 104230 -NCIT:C82433 Acute Myeloid Leukemia with CEBPA Mutation 8 104231 -NCIT:C129782 Acute Myeloid Leukemia with Biallelic Mutations of CEBPA 9 104232 -NCIT:C129783 Acute Myeloid Leukemia with Monoallelic Mutations of CEBPA 9 104233 -NCIT:C9154 Adult Acute Myeloid Leukemia 7 104234 -NCIT:C68700 Adult Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 8 104235 -NCIT:C68696 Adult Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 9 104236 -NCIT:C68697 Adult Acute Myeloid Leukemia with inv(16)(p13.1q22); CBFB-MYH11 9 104237 -NCIT:C68698 Adult Acute Myeloid Leukemia with t(16;16)(p13.1;q22); CBFB-MYH11 9 104238 -NCIT:C68699 Adult Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 9 104239 -NCIT:C9155 Adult Acute Promyelocytic Leukemia with PML-RARA 9 104240 -NCIT:C7319 Adult Acute Monoblastic and Monocytic Leukemia 8 104241 -NCIT:C8263 Adult Acute Monocytic Leukemia 9 104242 -NCIT:C9156 Adult Acute Monoblastic Leukemia 9 104243 -NCIT:C7882 Recurrent Adult Acute Myeloid Leukemia 8 104244 -NCIT:C7961 Adult Acute Myeloid Leukemia with Maturation 8 104245 -NCIT:C7962 Adult Acute Myelomonocytic Leukemia 8 104246 -NCIT:C7964 Adult Acute Basophilic Leukemia 8 104247 -NCIT:C7965 Adult Acute Megakaryoblastic Leukemia 8 104248 -NCIT:C8303 Adult Acute Myeloid Leukemia with Minimal Differentiation 8 104249 -NCIT:C9153 Adult Acute Erythroid Leukemia 8 104250 -NCIT:C68693 Adult Pure Erythroid Leukemia 9 104251 -NCIT:C68694 Adult Erythroleukemia 9 104252 -NCIT:C9380 Adult Acute Myeloid Leukemia without Maturation 8 104253 -NCIT:C9160 Childhood Acute Myeloid Leukemia 7 104254 -NCIT:C122625 Childhood Acute Myeloid Leukemia Not Otherwise Specified 8 104255 -NCIT:C7940 Childhood Acute Monoblastic and Monocytic Leukemia 9 104256 -NCIT:C9162 Childhood Acute Monoblastic Leukemia 10 104257 -NCIT:C9163 Childhood Acute Monocytic Leukemia 10 104258 -NCIT:C7970 Childhood Acute Myelomonocytic Leukemia 9 104259 -NCIT:C7971 Childhood Acute Basophilic Leukemia 9 104260 -NCIT:C7972 Childhood Acute Megakaryoblastic Leukemia 9 104261 -NCIT:C8304 Childhood Acute Myeloid Leukemia with Minimal Differentiation 9 104262 -NCIT:C9158 Childhood Acute Myeloid Leukemia without Maturation 9 104263 -NCIT:C9164 Childhood Acute Erythroid Leukemia 9 104264 -NCIT:C9381 Childhood Acute Myeloid Leukemia with Maturation 9 104265 -NCIT:C122690 Acute Myeloid Leukemia with t(7;12)(q36;p13); HLXB9-ETV6 8 104266 -NCIT:C122691 Childhood Acute Myeloid Leukemia with NUP98 Rearrangement 8 104267 -NCIT:C131502 Acute Myeloid Leukemia with t(5;11)(q35;p15); NUP98-NSD1 9 104268 -NCIT:C131504 Acute Myeloid Leukemia with t(11;15)(p15;q35); NUP98-JARID1A 9 104269 -NCIT:C132111 Acute Megakaryoblastic Leukemia with NUP98-KDM5A 9 104270 -NCIT:C122725 Childhood Acute Myeloid Leukemia with Abnormalities of Chromosome 5q 8 104271 -NCIT:C122726 Childhood Acute Myeloid Leukemia with Abnormalities of Chromosome 7 8 104272 -NCIT:C132101 Acute Myeloid Leukemia with t(10;11)(p12;q23); MLLT10-MLL 8 104273 -NCIT:C132105 Acute Myeloid Leukemia with t(6;11)(q27;q23); MLLT4-MLL 8 104274 -NCIT:C132109 Acute Megakaryoblastic Leukemia with CBFA2T3-GLIS2 8 104275 -NCIT:C167089 Acute Myeloid Leukemia with RAM Immunophenotype 8 104276 -NCIT:C187449 Refractory Childhood Acute Myeloid Leukemia 8 104277 -NCIT:C188450 Childhood Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 8 104278 -NCIT:C188451 Childhood Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 8 104279 -NCIT:C7968 Childhood Acute Promyelocytic Leukemia with PML-RARA 8 104280 -NCIT:C82431 Acute Myeloid Leukemia with NPM1 Mutation 8 104281 -NCIT:C82433 Acute Myeloid Leukemia with CEBPA Mutation 8 104282 -NCIT:C129782 Acute Myeloid Leukemia with Biallelic Mutations of CEBPA 9 104283 -NCIT:C129783 Acute Myeloid Leukemia with Monoallelic Mutations of CEBPA 9 104284 -NCIT:C9068 Recurrent Childhood Acute Myeloid Leukemia 8 104285 -NCIT:C3174 Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 104286 -NCIT:C3173 Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 104287 -NCIT:C190786 Recurrent Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 8 104288 -NCIT:C190787 Refractory Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 8 104289 -NCIT:C3175 Chronic Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 104290 -NCIT:C7303 Splenic Manifestation of Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 104291 -NCIT:C7320 Childhood Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 104292 -NCIT:C7885 Refractory Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 104293 -NCIT:C9070 Recurrent Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 104294 -NCIT:C9110 Blast Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 104295 -NCIT:C9111 Meningeal Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 104296 -NCIT:C9128 Philadelphia Chromosome Positive, BCR-ABL1 Positive Chronic Myelogenous Leukemia 7 104297 -NCIT:C9129 Philadelphia Chromosome Negative, BCR-ABL1 Positive Chronic Myelogenous Leukemia 7 104298 -NCIT:C3176 Philadelphia-Negative Myelogenous Leukemia 6 104299 -NCIT:C9129 Philadelphia Chromosome Negative, BCR-ABL1 Positive Chronic Myelogenous Leukemia 7 104300 -NCIT:C3177 Philadelphia-Positive Myelogenous Leukemia 6 104301 -NCIT:C9128 Philadelphia Chromosome Positive, BCR-ABL1 Positive Chronic Myelogenous Leukemia 7 104302 -NCIT:C3247 Myelodysplastic Syndrome 5 104303 -NCIT:C115153 Adult Myelodysplastic Syndrome 6 104304 -NCIT:C122686 Hypocellular Myelodysplastic Syndrome 6 104305 -NCIT:C148362 Refractory Myelodysplastic Syndrome 6 104306 -NCIT:C148363 Recurrent Myelodysplastic Syndrome 6 104307 -NCIT:C168742 Hereditary Myelodysplastic Syndrome 6 104308 -NCIT:C168746 SAMD9-Associated Hereditary Myelodysplastic Syndrome 7 104309 -NCIT:C168747 SAMD9L-Associated Hereditary Myelodysplastic Syndrome 7 104310 -NCIT:C27280 Secondary Myelodysplastic Syndrome 6 104311 -NCIT:C27722 Therapy-Related Myelodysplastic Syndrome 7 104312 -NCIT:C7642 Epipodophyllotoxin-Related Myelodysplastic Syndrome 8 104313 -NCIT:C7643 Alkylating Agent-Related Myelodysplastic Syndrome 8 104314 -NCIT:C4036 Myelodysplastic Syndrome with Ring Sideroblasts 6 104315 -NCIT:C130037 Myelodysplastic Syndrome with Ring Sideroblasts and Single Lineage Dysplasia 7 104316 -NCIT:C27726 Myelodysplastic Syndrome with Ring Sideroblasts and Multilineage Dysplasia 7 104317 -NCIT:C6867 Myelodysplastic Syndrome with Isolated del(5q) 6 104318 -NCIT:C68744 Childhood Myelodysplastic Syndrome 6 104319 -NCIT:C188449 Childhood Myelodysplastic Syndrome with Excess Blasts 7 104320 -NCIT:C82596 Refractory Cytopenia of Childhood 7 104321 -NCIT:C7506 Myelodysplastic Syndrome with Excess Blasts 6 104322 -NCIT:C188449 Childhood Myelodysplastic Syndrome with Excess Blasts 7 104323 -NCIT:C7167 Myelodysplastic Syndrome with Excess Blasts-1 7 104324 -NCIT:C7168 Myelodysplastic Syndrome with Excess Blasts-2 7 104325 -NCIT:C82595 Myelodysplastic Syndrome with Excess Blasts and Fibrosis 7 104326 -NCIT:C8253 de novo Myelodysplastic Syndrome 6 104327 -NCIT:C82591 Myelodysplastic Syndrome with Single Lineage Dysplasia 6 104328 -NCIT:C2872 Refractory Anemia 7 104329 -NCIT:C82593 Refractory Neutropenia 7 104330 -NCIT:C82594 Refractory Thrombocytopenia 7 104331 -NCIT:C8574 Myelodysplastic Syndrome with Multilineage Dysplasia 6 104332 -NCIT:C8648 Myelodysplastic Syndrome, Unclassifiable 6 104333 -NCIT:C168677 Myelodysplastic Syndrome, Unclassifiable, With 1 Percent Blasts 7 104334 -NCIT:C168678 Myelodysplastic Syndrome, Unclassifiable, Based on Defining Cytogenetic Abnormality 7 104335 -NCIT:C168681 Myelodysplastic Syndrome, Unclassifiable, with Single Lineage Dysplasia 7 104336 -NCIT:C97310 Myelodysplastic Syndrome with Somatic Mutations 6 104337 -NCIT:C4345 Myeloproliferative Neoplasm 5 104338 -NCIT:C166142 Recurrent Myeloproliferative Neoplasm 6 104339 -NCIT:C179203 Recurrent Primary Myelofibrosis 7 104340 -NCIT:C190786 Recurrent Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 104341 -NCIT:C9070 Recurrent Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 104342 -NCIT:C170911 Refractory Myeloproliferative Neoplasm 6 104343 -NCIT:C171340 Refractory Primary Myelofibrosis 7 104344 -NCIT:C190787 Refractory Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 104345 -NCIT:C7885 Refractory Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 104346 -NCIT:C188315 Accelerated Phase Myeloproliferative Neoplasm 6 104347 -NCIT:C188317 Accelerated Phase Primary Myelofibrosis 7 104348 -NCIT:C3173 Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 104349 -NCIT:C190786 Recurrent Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 8 104350 -NCIT:C190787 Refractory Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 8 104351 -NCIT:C188316 Blast Phase Myeloproliferative Neoplasm 6 104352 -NCIT:C188318 Blast Phase Primary Myelofibrosis 7 104353 -NCIT:C9110 Blast Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 104354 -NCIT:C27350 Myeloproliferative Neoplasm, Unclassifiable 6 104355 -NCIT:C2862 Primary Myelofibrosis 6 104356 -NCIT:C171340 Refractory Primary Myelofibrosis 7 104357 -NCIT:C179203 Recurrent Primary Myelofibrosis 7 104358 -NCIT:C188314 Chronic Phase Primary Myelofibrosis 7 104359 -NCIT:C188317 Accelerated Phase Primary Myelofibrosis 7 104360 -NCIT:C188318 Blast Phase Primary Myelofibrosis 7 104361 -NCIT:C41237 Prefibrotic/Early Primary Myelofibrosis 7 104362 -NCIT:C41238 Overt Primary Myelofibrosis 7 104363 -NCIT:C3174 Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 104364 -NCIT:C3173 Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 104365 -NCIT:C190786 Recurrent Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 8 104366 -NCIT:C190787 Refractory Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 8 104367 -NCIT:C3175 Chronic Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 104368 -NCIT:C7303 Splenic Manifestation of Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 104369 -NCIT:C7320 Childhood Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 104370 -NCIT:C7885 Refractory Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 104371 -NCIT:C9070 Recurrent Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 104372 -NCIT:C9110 Blast Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 104373 -NCIT:C9111 Meningeal Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 104374 -NCIT:C9128 Philadelphia Chromosome Positive, BCR-ABL1 Positive Chronic Myelogenous Leukemia 7 104375 -NCIT:C9129 Philadelphia Chromosome Negative, BCR-ABL1 Positive Chronic Myelogenous Leukemia 7 104376 -NCIT:C3179 Chronic Neutrophilic Leukemia 6 104377 -NCIT:C3336 Polycythemia Vera 6 104378 -NCIT:C41232 Polycythemia Vera, Polycythemic Phase 7 104379 -NCIT:C41233 Polycythemia Vera, Post-Polycythemic Myelofibrosis Phase 7 104380 -NCIT:C3407 Essential Thrombocythemia 6 104381 -NCIT:C4563 Chronic Eosinophilic Leukemia, Not Otherwise Specified 6 104382 -NCIT:C4582 Metastatic Malignant Neoplasm in the Bone Marrow 5 104383 -NCIT:C7064 Erythroid Neoplasm 5 104384 -NCIT:C3336 Polycythemia Vera 6 104385 -NCIT:C41232 Polycythemia Vera, Polycythemic Phase 7 104386 -NCIT:C41233 Polycythemia Vera, Post-Polycythemic Myelofibrosis Phase 7 104387 -NCIT:C8923 Acute Erythroid Leukemia 6 104388 -NCIT:C156723 Recurrent Acute Erythroid Leukemia 7 104389 -NCIT:C7152 Erythroleukemia 7 104390 -NCIT:C68694 Adult Erythroleukemia 8 104391 -NCIT:C7467 Pure Erythroid Leukemia 7 104392 -NCIT:C68693 Adult Pure Erythroid Leukemia 8 104393 -NCIT:C9153 Adult Acute Erythroid Leukemia 7 104394 -NCIT:C68693 Adult Pure Erythroid Leukemia 8 104395 -NCIT:C68694 Adult Erythroleukemia 8 104396 -NCIT:C9164 Childhood Acute Erythroid Leukemia 7 104397 -NCIT:C7066 Megakaryocytic Neoplasm 5 104398 -NCIT:C3170 Acute Megakaryoblastic Leukemia 6 104399 -NCIT:C156731 Recurrent Acute Megakaryoblastic Leukemia 7 104400 -NCIT:C7965 Adult Acute Megakaryoblastic Leukemia 7 104401 -NCIT:C7972 Childhood Acute Megakaryoblastic Leukemia 7 104402 -NCIT:C3407 Essential Thrombocythemia 6 104403 -NCIT:C35497 Lymph Node Neoplasm 3 104404 -NCIT:C35812 Malignant Lymph Node Neoplasm 4 104405 -NCIT:C27500 Lymphadenopathic Kaposi Sarcoma 5 104406 -NCIT:C4904 Metastatic Malignant Neoplasm in the Lymph Nodes 5 104407 -NCIT:C153227 Breast Carcinoma Metastatic in the Lymph Nodes 6 104408 -NCIT:C157452 Metastatic Squamous Cell Carcinoma in the Cervical Lymph Nodes 6 104409 -NCIT:C161587 Prostate Carcinoma Metastatic in the Lymph Nodes 6 104410 -NCIT:C175222 Metastatic Malignant Neoplasm in the Regional Lymph Nodes 6 104411 -NCIT:C175934 Metastatic Malignant Neoplasm in the Supraclavicular Lymph Nodes 6 104412 -NCIT:C183510 Metastatic Malignant Neoplasm in the Mediastinal Lymph Nodes 6 104413 -NCIT:C3636 Benign Lymph Node Neoplasm 4 104414 -NCIT:C3810 Connective and Soft Tissue Neoplasm 2 104415 -NCIT:C166354 Musculoskeletal Neoplasm 3 104416 -NCIT:C166356 Benign Musculoskeletal Neoplasm 4 104417 -NCIT:C4880 Benign Bone Neoplasm 5 104418 -NCIT:C121842 Osteochondromyxoma 6 104419 -NCIT:C121901 Benign Notochordal Cell Tumor 6 104420 -NCIT:C190577 Childhood Benign Bone Neoplasm 6 104421 -NCIT:C189019 Childhood Subungual Exostosis 7 104422 -NCIT:C189020 Childhood Osteoblastoma 7 104423 -NCIT:C189021 Childhood Osteoid Osteoma 7 104424 -NCIT:C189023 Childhood Chondroblastoma 7 104425 -NCIT:C189024 Childhood Osteochondroma 7 104426 -NCIT:C189025 Childhood Chondromyxoid Fibroma 7 104427 -NCIT:C189028 Childhood Bone Hemangioma 7 104428 -NCIT:C189029 Childhood Aneurysmal Bone Cyst 7 104429 -NCIT:C189031 Childhood Non-Ossifying Fibroma 7 104430 -NCIT:C189033 Childhood Fibrous Dysplasia 7 104431 -NCIT:C27475 Bone Lipoma 6 104432 -NCIT:C178604 Bone Hibernoma 7 104433 -NCIT:C27476 Bone Schwannoma 6 104434 -NCIT:C27477 Benign Osteoclastic Giant Cell-Rich Tumor of Bone 6 104435 -NCIT:C121893 Giant Cell Lesion of Small Bones 7 104436 -NCIT:C2945 Chondroblastoma 6 104437 -NCIT:C173895 Maxillofacial Chondroblastoma 7 104438 -NCIT:C189023 Childhood Chondroblastoma 7 104439 -NCIT:C3007 Enchondroma 6 104440 -NCIT:C3008 Enchondromatosis 6 104441 -NCIT:C3294 Osteoblastoma 6 104442 -NCIT:C173899 Maxillofacial Osteoblastoma 7 104443 -NCIT:C189020 Childhood Osteoblastoma 7 104444 -NCIT:C4308 Cementoblastoma 7 104445 -NCIT:C3295 Osteochondroma 6 104446 -NCIT:C189024 Childhood Osteochondroma 7 104447 -NCIT:C53455 Solitary Osteochondroma 7 104448 -NCIT:C53457 Multiple Osteochondromas 7 104449 -NCIT:C3296 Osteoma 6 104450 -NCIT:C121923 Ivory Exostosis 7 104451 -NCIT:C121924 Enostosis 7 104452 -NCIT:C129569 Skull Osteoma 7 104453 -NCIT:C173894 Maxillofacial Osteoma 8 104454 -NCIT:C3297 Osteoid Osteoma 6 104455 -NCIT:C173898 Maxillofacial Osteoid Osteoma 7 104456 -NCIT:C189021 Childhood Osteoid Osteoma 7 104457 -NCIT:C34417 Benign Neoplasm of Lower Jaw Bone 6 104458 -NCIT:C34609 Fibrous Dysplasia 6 104459 -NCIT:C173926 Craniofacial Fibrous Dysplasia 7 104460 -NCIT:C189033 Childhood Fibrous Dysplasia 7 104461 -NCIT:C34610 Polyostotic Fibrous Dysplasia 7 104462 -NCIT:C53971 Monostotic Fibrous Dysplasia 7 104463 -NCIT:C3516 Aneurysmal Bone Cyst 6 104464 -NCIT:C189029 Childhood Aneurysmal Bone Cyst 7 104465 -NCIT:C3830 Chondromyxoid Fibroma 6 104466 -NCIT:C173897 Maxillofacial Chondromyxoid Fibroma 7 104467 -NCIT:C189025 Childhood Chondromyxoid Fibroma 7 104468 -NCIT:C6714 Sternal Chondromyxoid Fibroma 7 104469 -NCIT:C4302 Periosteal Chondroma 6 104470 -NCIT:C53963 Fibrous Histiocytoma of Bone 6 104471 -NCIT:C121929 Non-Ossifying Fibroma 7 104472 -NCIT:C189031 Childhood Non-Ossifying Fibroma 8 104473 -NCIT:C6477 Bone Hemangioma 6 104474 -NCIT:C189028 Childhood Bone Hemangioma 7 104475 -NCIT:C5396 Bone Epithelioid Hemangioma 7 104476 -NCIT:C66761 Periosteal Fibroma 6 104477 -NCIT:C4882 Benign Muscle Neoplasm 5 104478 -NCIT:C3358 Rhabdomyoma 6 104479 -NCIT:C188983 Childhood Rhabdomyoma 7 104480 -NCIT:C190104 Childhood Cardiac Rhabdomyoma 8 104481 -NCIT:C49166 Extracardiac Rhabdomyoma 7 104482 -NCIT:C162496 Paratesticular Rhabdomyoma 8 104483 -NCIT:C4260 Fetal Rhabdomyoma 8 104484 -NCIT:C27480 Classic Rhabdomyoma 9 104485 -NCIT:C6518 Intermediate Rhabdomyoma 9 104486 -NCIT:C4261 Adult Extracardiac Rhabdomyoma 8 104487 -NCIT:C6517 Genital Rhabdomyoma 8 104488 -NCIT:C181942 Vulvar Rhabdomyoma 9 104489 -NCIT:C40266 Cervical Rhabdomyoma 9 104490 -NCIT:C6372 Vaginal Rhabdomyoma 9 104491 -NCIT:C6600 Mediastinal Rhabdomyoma 8 104492 -NCIT:C7000 Central Nervous System Rhabdomyoma 8 104493 -NCIT:C6739 Cardiac Rhabdomyoma 7 104494 -NCIT:C190104 Childhood Cardiac Rhabdomyoma 8 104495 -NCIT:C45747 Adult Cardiac Cellular Rhabdomyoma 8 104496 -NCIT:C49179 Conventional Cardiac Rhabdomyoma 8 104497 -NCIT:C6510 Benign Smooth Muscle Neoplasm 6 104498 -NCIT:C3157 Leiomyoma 7 104499 -NCIT:C128046 Cervical Leiomyoma 8 104500 -NCIT:C156346 Thyroid Gland Leiomyoma 8 104501 -NCIT:C159209 Kidney Leiomyoma 8 104502 -NCIT:C162494 Paratesticular Leiomyoma 8 104503 -NCIT:C161638 Seminal Vesicle Leiomyoma 9 104504 -NCIT:C162583 Penile Leiomyoma 8 104505 -NCIT:C172942 Digestive System Leiomyoma 8 104506 -NCIT:C3866 Esophageal Leiomyoma 9 104507 -NCIT:C3876 Gastric Leiomyoma 9 104508 -NCIT:C5514 Appendix Leiomyoma 9 104509 -NCIT:C5608 Anal Leiomyoma 9 104510 -NCIT:C5677 Colorectal Leiomyoma 9 104511 -NCIT:C5492 Colon Leiomyoma 10 104512 -NCIT:C5552 Rectal Leiomyoma 10 104513 -NCIT:C5747 Gallbladder Leiomyoma 9 104514 -NCIT:C5753 Liver Leiomyoma 9 104515 -NCIT:C5855 Extrahepatic Bile Duct Leiomyoma 9 104516 -NCIT:C7725 Small Intestinal Leiomyoma 9 104517 -NCIT:C173140 Sinonasal Leiomyoma 8 104518 -NCIT:C179360 Ovarian Leiomyoma 8 104519 -NCIT:C179923 Uterine Ligament Leiomyoma 8 104520 -NCIT:C179924 Broad Ligament Leiomyoma 9 104521 -NCIT:C188253 Adrenal Gland Leiomyoma 8 104522 -NCIT:C3434 Uterine Corpus Leiomyoma 8 104523 -NCIT:C126975 Uterine Corpus Hydropic Leiomyoma 9 104524 -NCIT:C3511 Uterine Corpus Degenerated Leiomyoma 9 104525 -NCIT:C40162 Uterine Corpus Leiomyoma, Mitotically Active Variant 9 104526 -NCIT:C40163 Uterine Corpus Cellular Leiomyoma 9 104527 -NCIT:C40164 Uterine Corpus Epithelioid Leiomyoma 9 104528 -NCIT:C40165 Uterine Corpus Apoplectic Leiomyoma 9 104529 -NCIT:C40166 Uterine Corpus Myxoid Leiomyoma 9 104530 -NCIT:C40167 Uterine Corpus Bizarre Leiomyoma 9 104531 -NCIT:C40168 Uterine Corpus Lipoleiomyoma 9 104532 -NCIT:C40170 Uterine Corpus Diffuse Leiomyomatosis 9 104533 -NCIT:C40172 Uterine Corpus Dissecting Leiomyoma 9 104534 -NCIT:C40173 Uterine Corpus Metastasizing Leiomyoma 9 104535 -NCIT:C5356 Uterine Corpus Intravenous Leiomyomatosis 9 104536 -NCIT:C3748 Leiomyomatosis 8 104537 -NCIT:C3958 Disseminated Peritoneal Leiomyomatosis 9 104538 -NCIT:C40170 Uterine Corpus Diffuse Leiomyomatosis 9 104539 -NCIT:C4518 Intravenous Leiomyomatosis 9 104540 -NCIT:C5356 Uterine Corpus Intravenous Leiomyomatosis 10 104541 -NCIT:C40127 Fallopian Tube Leiomyoma 8 104542 -NCIT:C40326 Vulvar Leiomyoma 8 104543 -NCIT:C40399 Breast Leiomyoma 8 104544 -NCIT:C4256 Cellular Leiomyoma 8 104545 -NCIT:C40163 Uterine Corpus Cellular Leiomyoma 9 104546 -NCIT:C4257 Bizarre Leiomyoma 8 104547 -NCIT:C40167 Uterine Corpus Bizarre Leiomyoma 9 104548 -NCIT:C4482 Skin Leiomyoma 8 104549 -NCIT:C43332 Pilar Leiomyoma 9 104550 -NCIT:C4483 Dartoic Leiomyoma 9 104551 -NCIT:C4560 Ciliary Body Leiomyoma 8 104552 -NCIT:C53964 Bone Leiomyoma 8 104553 -NCIT:C5544 Prostate Leiomyoma 8 104554 -NCIT:C5660 Lung Leiomyoma 8 104555 -NCIT:C5661 Endobronchial Leiomyoma 9 104556 -NCIT:C5909 Oral Cavity Leiomyoma 8 104557 -NCIT:C6027 Laryngeal Leiomyoma 8 104558 -NCIT:C6049 Tracheal Leiomyoma 8 104559 -NCIT:C6161 Ureter Leiomyoma 8 104560 -NCIT:C6171 Urethral Leiomyoma 8 104561 -NCIT:C6178 Bladder Leiomyoma 8 104562 -NCIT:C6373 Vaginal Leiomyoma 8 104563 -NCIT:C6512 Deep Leiomyoma 8 104564 -NCIT:C6598 Mediastinal Leiomyoma 8 104565 -NCIT:C6743 Pericardial Leiomyoma 8 104566 -NCIT:C67563 Myxoid Leiomyoma 8 104567 -NCIT:C40166 Uterine Corpus Myxoid Leiomyoma 9 104568 -NCIT:C6998 Central Nervous System Leiomyoma 8 104569 -NCIT:C6515 Benign Skeletal Muscle Neoplasm 6 104570 -NCIT:C49166 Extracardiac Rhabdomyoma 7 104571 -NCIT:C162496 Paratesticular Rhabdomyoma 8 104572 -NCIT:C4260 Fetal Rhabdomyoma 8 104573 -NCIT:C27480 Classic Rhabdomyoma 9 104574 -NCIT:C6518 Intermediate Rhabdomyoma 9 104575 -NCIT:C4261 Adult Extracardiac Rhabdomyoma 8 104576 -NCIT:C6517 Genital Rhabdomyoma 8 104577 -NCIT:C181942 Vulvar Rhabdomyoma 9 104578 -NCIT:C40266 Cervical Rhabdomyoma 9 104579 -NCIT:C6372 Vaginal Rhabdomyoma 9 104580 -NCIT:C6600 Mediastinal Rhabdomyoma 8 104581 -NCIT:C7000 Central Nervous System Rhabdomyoma 8 104582 -NCIT:C166357 Malignant Musculoskeletal Neoplasm 4 104583 -NCIT:C4016 Malignant Bone Neoplasm 5 104584 -NCIT:C121933 Malignant Osteoclastic Giant Cell-Rich Tumor of Bone 6 104585 -NCIT:C4304 Malignancy in Giant Cell Tumor of Bone 7 104586 -NCIT:C121941 Bone Epithelioid Hemangioendothelioma 6 104587 -NCIT:C136610 Bone Cancer by AJCC v7 Stage 6 104588 -NCIT:C136632 Bone Sarcoma by AJCC v7 Stage 7 104589 -NCIT:C136633 Osteosarcoma by AJCC v7 Stage 8 104590 -NCIT:C6612 Stage III Osteosarcoma AJCC v7 9 104591 -NCIT:C6701 Stage IV Osteosarcoma AJCC v7 9 104592 -NCIT:C6702 Stage IVA Osteosarcoma AJCC v7 10 104593 -NCIT:C6703 Stage IVB Osteosarcoma AJCC v7 10 104594 -NCIT:C6709 Stage I Osteosarcoma AJCC v7 9 104595 -NCIT:C6607 Stage IA Osteosarcoma AJCC v7 10 104596 -NCIT:C6609 Stage IB Osteosarcoma AJCC v7 10 104597 -NCIT:C6710 Stage II Osteosarcoma AJCC v7 9 104598 -NCIT:C6610 Stage IIA Osteosarcoma AJCC v7 10 104599 -NCIT:C6611 Stage IIB Osteosarcoma AJCC v7 10 104600 -NCIT:C6468 Stage III Bone Sarcoma AJCC v7 8 104601 -NCIT:C6612 Stage III Osteosarcoma AJCC v7 9 104602 -NCIT:C6704 Stage I Bone Sarcoma AJCC v7 8 104603 -NCIT:C6464 Stage IA Bone Sarcoma AJCC v7 9 104604 -NCIT:C6607 Stage IA Osteosarcoma AJCC v7 10 104605 -NCIT:C6465 Stage IB Bone Sarcoma AJCC v7 9 104606 -NCIT:C6609 Stage IB Osteosarcoma AJCC v7 10 104607 -NCIT:C6709 Stage I Osteosarcoma AJCC v7 9 104608 -NCIT:C6607 Stage IA Osteosarcoma AJCC v7 10 104609 -NCIT:C6609 Stage IB Osteosarcoma AJCC v7 10 104610 -NCIT:C6705 Stage II Bone Sarcoma AJCC v7 8 104611 -NCIT:C6466 Stage IIB Bone Sarcoma AJCC v7 9 104612 -NCIT:C6611 Stage IIB Osteosarcoma AJCC v7 10 104613 -NCIT:C6467 Stage IIA Bone Sarcoma AJCC v7 9 104614 -NCIT:C6610 Stage IIA Osteosarcoma AJCC v7 10 104615 -NCIT:C6710 Stage II Osteosarcoma AJCC v7 9 104616 -NCIT:C6610 Stage IIA Osteosarcoma AJCC v7 10 104617 -NCIT:C6611 Stage IIB Osteosarcoma AJCC v7 10 104618 -NCIT:C6706 Stage IV Bone Sarcoma AJCC v7 8 104619 -NCIT:C6701 Stage IV Osteosarcoma AJCC v7 9 104620 -NCIT:C6702 Stage IVA Osteosarcoma AJCC v7 10 104621 -NCIT:C6703 Stage IVB Osteosarcoma AJCC v7 10 104622 -NCIT:C6707 Stage IVA Bone Sarcoma AJCC v7 9 104623 -NCIT:C6702 Stage IVA Osteosarcoma AJCC v7 10 104624 -NCIT:C6708 Stage IVB Bone Sarcoma AJCC v7 9 104625 -NCIT:C6703 Stage IVB Osteosarcoma AJCC v7 10 104626 -NCIT:C87178 Stage I Bone Cancer AJCC v7 7 104627 -NCIT:C6704 Stage I Bone Sarcoma AJCC v7 8 104628 -NCIT:C6464 Stage IA Bone Sarcoma AJCC v7 9 104629 -NCIT:C6607 Stage IA Osteosarcoma AJCC v7 10 104630 -NCIT:C6465 Stage IB Bone Sarcoma AJCC v7 9 104631 -NCIT:C6609 Stage IB Osteosarcoma AJCC v7 10 104632 -NCIT:C6709 Stage I Osteosarcoma AJCC v7 9 104633 -NCIT:C6607 Stage IA Osteosarcoma AJCC v7 10 104634 -NCIT:C6609 Stage IB Osteosarcoma AJCC v7 10 104635 -NCIT:C87179 Stage IA Bone Cancer AJCC v7 8 104636 -NCIT:C6464 Stage IA Bone Sarcoma AJCC v7 9 104637 -NCIT:C6607 Stage IA Osteosarcoma AJCC v7 10 104638 -NCIT:C87180 Stage IB Bone Cancer AJCC v7 8 104639 -NCIT:C6465 Stage IB Bone Sarcoma AJCC v7 9 104640 -NCIT:C6609 Stage IB Osteosarcoma AJCC v7 10 104641 -NCIT:C87181 Stage II Bone Cancer AJCC v7 7 104642 -NCIT:C6705 Stage II Bone Sarcoma AJCC v7 8 104643 -NCIT:C6466 Stage IIB Bone Sarcoma AJCC v7 9 104644 -NCIT:C6611 Stage IIB Osteosarcoma AJCC v7 10 104645 -NCIT:C6467 Stage IIA Bone Sarcoma AJCC v7 9 104646 -NCIT:C6610 Stage IIA Osteosarcoma AJCC v7 10 104647 -NCIT:C6710 Stage II Osteosarcoma AJCC v7 9 104648 -NCIT:C6610 Stage IIA Osteosarcoma AJCC v7 10 104649 -NCIT:C6611 Stage IIB Osteosarcoma AJCC v7 10 104650 -NCIT:C87182 Stage IIA Bone Cancer AJCC v7 8 104651 -NCIT:C6467 Stage IIA Bone Sarcoma AJCC v7 9 104652 -NCIT:C6610 Stage IIA Osteosarcoma AJCC v7 10 104653 -NCIT:C87183 Stage IIB Bone Cancer AJCC v7 8 104654 -NCIT:C6466 Stage IIB Bone Sarcoma AJCC v7 9 104655 -NCIT:C6611 Stage IIB Osteosarcoma AJCC v7 10 104656 -NCIT:C87184 Stage III Bone Cancer AJCC v7 7 104657 -NCIT:C6468 Stage III Bone Sarcoma AJCC v7 8 104658 -NCIT:C6612 Stage III Osteosarcoma AJCC v7 9 104659 -NCIT:C87185 Stage IV Bone Cancer AJCC v7 7 104660 -NCIT:C6706 Stage IV Bone Sarcoma AJCC v7 8 104661 -NCIT:C6701 Stage IV Osteosarcoma AJCC v7 9 104662 -NCIT:C6702 Stage IVA Osteosarcoma AJCC v7 10 104663 -NCIT:C6703 Stage IVB Osteosarcoma AJCC v7 10 104664 -NCIT:C6707 Stage IVA Bone Sarcoma AJCC v7 9 104665 -NCIT:C6702 Stage IVA Osteosarcoma AJCC v7 10 104666 -NCIT:C6708 Stage IVB Bone Sarcoma AJCC v7 9 104667 -NCIT:C6703 Stage IVB Osteosarcoma AJCC v7 10 104668 -NCIT:C87186 Stage IVA Bone Cancer AJCC v7 8 104669 -NCIT:C6707 Stage IVA Bone Sarcoma AJCC v7 9 104670 -NCIT:C6702 Stage IVA Osteosarcoma AJCC v7 10 104671 -NCIT:C87187 Stage IVB Bone Cancer AJCC v7 8 104672 -NCIT:C6708 Stage IVB Bone Sarcoma AJCC v7 9 104673 -NCIT:C6703 Stage IVB Osteosarcoma AJCC v7 10 104674 -NCIT:C136612 Bone Cancer by AJCC v8 Stage 6 104675 -NCIT:C136613 Stage I Bone Cancer AJCC v8 7 104676 -NCIT:C136614 Stage IA Bone Cancer AJCC v8 8 104677 -NCIT:C136615 Stage IB Bone Cancer AJCC v8 8 104678 -NCIT:C136616 Stage II Bone Cancer AJCC v8 7 104679 -NCIT:C136617 Stage IIA Bone Cancer AJCC v8 8 104680 -NCIT:C136618 Stage IIB Bone Cancer AJCC v8 8 104681 -NCIT:C136619 Stage III Bone Cancer AJCC v8 7 104682 -NCIT:C136620 Stage IV Bone Cancer AJCC v8 7 104683 -NCIT:C136621 Stage IVA Bone Cancer AJCC v8 8 104684 -NCIT:C136622 Stage IVB Bone Cancer AJCC v8 8 104685 -NCIT:C150524 Recurrent Malignant Bone Neoplasm 6 104686 -NCIT:C115351 Recurrent Adult Undifferentiated High Grade Pleomorphic Sarcoma of Bone 7 104687 -NCIT:C115368 Recurrent Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 7 104688 -NCIT:C155973 Recurrent Chordoma 7 104689 -NCIT:C162728 Recurrent Dedifferentiated Chordoma 8 104690 -NCIT:C185073 Locally Recurrent Chordoma 8 104691 -NCIT:C157681 Recurrent Primary Bone Lymphoma 7 104692 -NCIT:C27354 Recurrent Peripheral Primitive Neuroectodermal Tumor of Bone 7 104693 -NCIT:C6622 Recurrent Bone Ewing Sarcoma 7 104694 -NCIT:C150525 Refractory Malignant Bone Neoplasm 6 104695 -NCIT:C157682 Refractory Primary Bone Lymphoma 7 104696 -NCIT:C162721 Refractory Chordoma 7 104697 -NCIT:C162729 Refractory Dedifferentiated Chordoma 8 104698 -NCIT:C187448 Resectable Malignant Bone Neoplasm 6 104699 -NCIT:C190578 Childhood Malignant Bone Neoplasm 6 104700 -NCIT:C189017 Childhood Bone Sarcoma 7 104701 -NCIT:C114750 Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 8 104702 -NCIT:C115368 Recurrent Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 9 104703 -NCIT:C115998 Localized Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 9 104704 -NCIT:C189022 Childhood Bone Osteosarcoma 8 104705 -NCIT:C123398 Childhood Periosteal Osteosarcoma 9 104706 -NCIT:C6589 Childhood Parosteal Osteosarcoma 9 104707 -NCIT:C6590 Childhood Conventional Osteosarcoma 9 104708 -NCIT:C189026 Childhood Primary Central Chondrosarcoma 8 104709 -NCIT:C189032 Childhood Chordoma 7 104710 -NCIT:C2947 Chordoma 6 104711 -NCIT:C153323 Metastatic Chordoma 7 104712 -NCIT:C153324 Locally Advanced Chordoma 8 104713 -NCIT:C173333 Advanced Chordoma 8 104714 -NCIT:C153325 Unresectable Chordoma 7 104715 -NCIT:C155973 Recurrent Chordoma 7 104716 -NCIT:C162728 Recurrent Dedifferentiated Chordoma 8 104717 -NCIT:C185073 Locally Recurrent Chordoma 8 104718 -NCIT:C162721 Refractory Chordoma 7 104719 -NCIT:C162729 Refractory Dedifferentiated Chordoma 8 104720 -NCIT:C177898 Poorly Differentiated Chordoma 7 104721 -NCIT:C178563 Conventional Chordoma 7 104722 -NCIT:C6902 Chondroid Chordoma 8 104723 -NCIT:C155782 Sellar Chondroid Chordoma 9 104724 -NCIT:C5426 Clivus Chondroid Chordoma 9 104725 -NCIT:C189032 Childhood Chordoma 7 104726 -NCIT:C48876 Dedifferentiated Chordoma 7 104727 -NCIT:C155783 Sellar Dedifferentiated Chordoma 8 104728 -NCIT:C162728 Recurrent Dedifferentiated Chordoma 8 104729 -NCIT:C162729 Refractory Dedifferentiated Chordoma 8 104730 -NCIT:C5156 Spinal Chordoma 7 104731 -NCIT:C129927 Sacral Chordoma 8 104732 -NCIT:C177775 Thoracic Chordoma 8 104733 -NCIT:C5453 Skull Base Chordoma 7 104734 -NCIT:C155781 Sellar Chordoma 8 104735 -NCIT:C155782 Sellar Chondroid Chordoma 9 104736 -NCIT:C155783 Sellar Dedifferentiated Chordoma 9 104737 -NCIT:C5412 Clivus Chordoma 8 104738 -NCIT:C5426 Clivus Chondroid Chordoma 9 104739 -NCIT:C35178 Malignant Neoplasm of Lower Jaw Bone 6 104740 -NCIT:C3580 Metastatic Malignant Neoplasm in the Bone 6 104741 -NCIT:C185156 Plasma Cell Myeloma-Induced Bone Disease 7 104742 -NCIT:C36082 Metastatic Carcinoma in the Bone 7 104743 -NCIT:C36303 Breast Carcinoma Metastatic in the Bone 8 104744 -NCIT:C153226 Breast Carcinoma Metastatic in the Spine 9 104745 -NCIT:C36305 Lung Carcinoma Metastatic in the Bone 8 104746 -NCIT:C36308 Prostate Carcinoma Metastatic in the Bone 8 104747 -NCIT:C4881 Metastatic Malignant Neoplasm in the Spine 7 104748 -NCIT:C153226 Breast Carcinoma Metastatic in the Spine 8 104749 -NCIT:C35871 Ewing Sarcoma/Peripheral Primitive Neuroectodermal Tumor of Bone 6 104750 -NCIT:C4835 Ewing Sarcoma of Bone 7 104751 -NCIT:C6621 Metastatic Bone Ewing Sarcoma 8 104752 -NCIT:C6622 Recurrent Bone Ewing Sarcoma 8 104753 -NCIT:C6623 Localized Bone Ewing Sarcoma 8 104754 -NCIT:C8776 Peripheral Primitive Neuroectodermal Tumor of Bone 7 104755 -NCIT:C27353 Localized Peripheral Primitive Neuroectodermal Tumor of Bone 8 104756 -NCIT:C27354 Recurrent Peripheral Primitive Neuroectodermal Tumor of Bone 8 104757 -NCIT:C36074 Metastatic Peripheral Primitive Neuroectodermal Tumor of Bone 8 104758 -NCIT:C6620 Primary Bone Lymphoma 6 104759 -NCIT:C121930 Primary Bone Non-Hodgkin Lymphoma 7 104760 -NCIT:C173811 Primary Bone Diffuse Large B-Cell Lymphoma 8 104761 -NCIT:C157681 Recurrent Primary Bone Lymphoma 7 104762 -NCIT:C157682 Refractory Primary Bone Lymphoma 7 104763 -NCIT:C181207 Primary Bone Hodgkin Lymphoma 7 104764 -NCIT:C6724 Malignant Chest Wall Bone Neoplasm 6 104765 -NCIT:C7644 Adamantinoma 6 104766 -NCIT:C8461 Tibial Adamantinoma 7 104767 -NCIT:C7812 Solitary Plasmacytoma of Bone 6 104768 -NCIT:C185035 Multiple Solitary Plasmacytoma of Bone 7 104769 -NCIT:C9312 Bone Sarcoma 6 104770 -NCIT:C136632 Bone Sarcoma by AJCC v7 Stage 7 104771 -NCIT:C136633 Osteosarcoma by AJCC v7 Stage 8 104772 -NCIT:C6612 Stage III Osteosarcoma AJCC v7 9 104773 -NCIT:C6701 Stage IV Osteosarcoma AJCC v7 9 104774 -NCIT:C6702 Stage IVA Osteosarcoma AJCC v7 10 104775 -NCIT:C6703 Stage IVB Osteosarcoma AJCC v7 10 104776 -NCIT:C6709 Stage I Osteosarcoma AJCC v7 9 104777 -NCIT:C6607 Stage IA Osteosarcoma AJCC v7 10 104778 -NCIT:C6609 Stage IB Osteosarcoma AJCC v7 10 104779 -NCIT:C6710 Stage II Osteosarcoma AJCC v7 9 104780 -NCIT:C6610 Stage IIA Osteosarcoma AJCC v7 10 104781 -NCIT:C6611 Stage IIB Osteosarcoma AJCC v7 10 104782 -NCIT:C6468 Stage III Bone Sarcoma AJCC v7 8 104783 -NCIT:C6612 Stage III Osteosarcoma AJCC v7 9 104784 -NCIT:C6704 Stage I Bone Sarcoma AJCC v7 8 104785 -NCIT:C6464 Stage IA Bone Sarcoma AJCC v7 9 104786 -NCIT:C6607 Stage IA Osteosarcoma AJCC v7 10 104787 -NCIT:C6465 Stage IB Bone Sarcoma AJCC v7 9 104788 -NCIT:C6609 Stage IB Osteosarcoma AJCC v7 10 104789 -NCIT:C6709 Stage I Osteosarcoma AJCC v7 9 104790 -NCIT:C6607 Stage IA Osteosarcoma AJCC v7 10 104791 -NCIT:C6609 Stage IB Osteosarcoma AJCC v7 10 104792 -NCIT:C6705 Stage II Bone Sarcoma AJCC v7 8 104793 -NCIT:C6466 Stage IIB Bone Sarcoma AJCC v7 9 104794 -NCIT:C6611 Stage IIB Osteosarcoma AJCC v7 10 104795 -NCIT:C6467 Stage IIA Bone Sarcoma AJCC v7 9 104796 -NCIT:C6610 Stage IIA Osteosarcoma AJCC v7 10 104797 -NCIT:C6710 Stage II Osteosarcoma AJCC v7 9 104798 -NCIT:C6610 Stage IIA Osteosarcoma AJCC v7 10 104799 -NCIT:C6611 Stage IIB Osteosarcoma AJCC v7 10 104800 -NCIT:C6706 Stage IV Bone Sarcoma AJCC v7 8 104801 -NCIT:C6701 Stage IV Osteosarcoma AJCC v7 9 104802 -NCIT:C6702 Stage IVA Osteosarcoma AJCC v7 10 104803 -NCIT:C6703 Stage IVB Osteosarcoma AJCC v7 10 104804 -NCIT:C6707 Stage IVA Bone Sarcoma AJCC v7 9 104805 -NCIT:C6702 Stage IVA Osteosarcoma AJCC v7 10 104806 -NCIT:C6708 Stage IVB Bone Sarcoma AJCC v7 9 104807 -NCIT:C6703 Stage IVB Osteosarcoma AJCC v7 10 104808 -NCIT:C153072 Unresectable Bone Sarcoma 7 104809 -NCIT:C153475 Locally Advanced Unresectable Bone Sarcoma 8 104810 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 9 104811 -NCIT:C171070 Unresectable Primary Central Chondrosarcoma 8 104812 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 9 104813 -NCIT:C153073 Metastatic Bone Sarcoma 7 104814 -NCIT:C153070 Locally Advanced Bone Sarcoma 8 104815 -NCIT:C153475 Locally Advanced Unresectable Bone Sarcoma 9 104816 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 10 104817 -NCIT:C162762 Advanced Bone Sarcoma 8 104818 -NCIT:C171072 Metastatic Primary Central Chondrosarcoma 8 104819 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 9 104820 -NCIT:C38157 Metachronous Osteosarcoma 8 104821 -NCIT:C6621 Metastatic Bone Ewing Sarcoma 8 104822 -NCIT:C173841 Maxillofacial Sarcoma 7 104823 -NCIT:C173842 Maxillofacial Chondrosarcoma 8 104824 -NCIT:C173843 Maxillofacial Mesenchymal Chondrosarcoma 9 104825 -NCIT:C173844 Maxillofacial Osteosarcoma 8 104826 -NCIT:C188064 Bone Malignant Peripheral Nerve Sheath Tumor 7 104827 -NCIT:C189017 Childhood Bone Sarcoma 7 104828 -NCIT:C114750 Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 8 104829 -NCIT:C115368 Recurrent Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 9 104830 -NCIT:C115998 Localized Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 9 104831 -NCIT:C189022 Childhood Bone Osteosarcoma 8 104832 -NCIT:C123398 Childhood Periosteal Osteosarcoma 9 104833 -NCIT:C6589 Childhood Parosteal Osteosarcoma 9 104834 -NCIT:C6590 Childhood Conventional Osteosarcoma 9 104835 -NCIT:C189026 Childhood Primary Central Chondrosarcoma 8 104836 -NCIT:C27482 Secondary Chondrosarcoma 7 104837 -NCIT:C121881 Secondary Central Chondrosarcoma 8 104838 -NCIT:C178477 Secondary Central Atypical Cartilaginous Tumor/Chondrosarcoma, Grade 1 9 104839 -NCIT:C121882 Secondary Peripheral Chondrosarcoma 8 104840 -NCIT:C178481 Secondary Peripheral Chondrosarcoma, Grade 1 9 104841 -NCIT:C178492 Secondary Peripheral Chondrosarcoma, Grade 2 9 104842 -NCIT:C178494 Secondary Peripheral Chondrosarcoma, Grade 3 9 104843 -NCIT:C4304 Malignancy in Giant Cell Tumor of Bone 7 104844 -NCIT:C4835 Ewing Sarcoma of Bone 7 104845 -NCIT:C6621 Metastatic Bone Ewing Sarcoma 8 104846 -NCIT:C6622 Recurrent Bone Ewing Sarcoma 8 104847 -NCIT:C6623 Localized Bone Ewing Sarcoma 8 104848 -NCIT:C53493 Mesenchymal Chondrosarcoma of Bone 7 104849 -NCIT:C173843 Maxillofacial Mesenchymal Chondrosarcoma 8 104850 -NCIT:C53707 Bone Osteosarcoma 7 104851 -NCIT:C173844 Maxillofacial Osteosarcoma 8 104852 -NCIT:C189022 Childhood Bone Osteosarcoma 8 104853 -NCIT:C123398 Childhood Periosteal Osteosarcoma 9 104854 -NCIT:C6589 Childhood Parosteal Osteosarcoma 9 104855 -NCIT:C6590 Childhood Conventional Osteosarcoma 9 104856 -NCIT:C38157 Metachronous Osteosarcoma 8 104857 -NCIT:C4834 Primary Bone Osteosarcoma 8 104858 -NCIT:C136633 Osteosarcoma by AJCC v7 Stage 9 104859 -NCIT:C6612 Stage III Osteosarcoma AJCC v7 10 104860 -NCIT:C6701 Stage IV Osteosarcoma AJCC v7 10 104861 -NCIT:C6702 Stage IVA Osteosarcoma AJCC v7 11 104862 -NCIT:C6703 Stage IVB Osteosarcoma AJCC v7 11 104863 -NCIT:C6709 Stage I Osteosarcoma AJCC v7 10 104864 -NCIT:C6607 Stage IA Osteosarcoma AJCC v7 11 104865 -NCIT:C6609 Stage IB Osteosarcoma AJCC v7 11 104866 -NCIT:C6710 Stage II Osteosarcoma AJCC v7 10 104867 -NCIT:C6610 Stage IIA Osteosarcoma AJCC v7 11 104868 -NCIT:C6611 Stage IIB Osteosarcoma AJCC v7 11 104869 -NCIT:C35870 Conventional Osteosarcoma 9 104870 -NCIT:C179410 Giant Cell-Rich Osteosarcoma 10 104871 -NCIT:C4020 Fibroblastic Osteosarcoma 10 104872 -NCIT:C4021 Chondroblastic Osteosarcoma 10 104873 -NCIT:C53953 Osteoblastic Osteosarcoma 10 104874 -NCIT:C6590 Childhood Conventional Osteosarcoma 10 104875 -NCIT:C3902 Telangiectatic Osteosarcoma 9 104876 -NCIT:C4023 Small Cell Osteosarcoma 9 104877 -NCIT:C6470 Multifocal Osteosarcoma 9 104878 -NCIT:C6471 Synchronous Multifocal Osteosarcoma 10 104879 -NCIT:C6472 Asynchronous Multifocal Osteosarcoma 10 104880 -NCIT:C6474 Low Grade Central Osteosarcoma 9 104881 -NCIT:C7134 Bone Surface (Peripheral) Osteosarcoma 9 104882 -NCIT:C53958 High Grade Surface Osteosarcoma 10 104883 -NCIT:C8969 Parosteal Osteosarcoma 10 104884 -NCIT:C6589 Childhood Parosteal Osteosarcoma 11 104885 -NCIT:C8970 Periosteal Osteosarcoma 10 104886 -NCIT:C123398 Childhood Periosteal Osteosarcoma 11 104887 -NCIT:C53704 Secondary Osteosarcoma 8 104888 -NCIT:C53706 Radiation-Related Osteosarcoma 9 104889 -NCIT:C6469 Osteosarcoma Arising in Paget Disease of Bone 9 104890 -NCIT:C6475 Clear Cell Chondrosarcoma 7 104891 -NCIT:C6476 Dedifferentiated Chondrosarcoma 7 104892 -NCIT:C6479 Bone Angiosarcoma 7 104893 -NCIT:C6604 Bone Fibrosarcoma 7 104894 -NCIT:C7154 Bone Leiomyosarcoma 7 104895 -NCIT:C7155 Primary Central Chondrosarcoma 7 104896 -NCIT:C171070 Unresectable Primary Central Chondrosarcoma 8 104897 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 9 104898 -NCIT:C171072 Metastatic Primary Central Chondrosarcoma 8 104899 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 9 104900 -NCIT:C178476 Primary Central Atypical Cartilaginous Tumor/Chondrosarcoma, Grade 1 8 104901 -NCIT:C189026 Childhood Primary Central Chondrosarcoma 8 104902 -NCIT:C7357 Periosteal Chondrosarcoma 7 104903 -NCIT:C7598 Bone Liposarcoma 7 104904 -NCIT:C8563 Undifferentiated High Grade Pleomorphic Sarcoma of Bone 7 104905 -NCIT:C114750 Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 8 104906 -NCIT:C115368 Recurrent Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 9 104907 -NCIT:C115998 Localized Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 9 104908 -NCIT:C114782 Adult Undifferentiated High Grade Pleomorphic Sarcoma of Bone 8 104909 -NCIT:C115351 Recurrent Adult Undifferentiated High Grade Pleomorphic Sarcoma of Bone 9 104910 -NCIT:C115997 Localized Adult Undifferentiated High Grade Pleomorphic Sarcoma of Bone 9 104911 -NCIT:C151984 Pelvic Undifferentiated High Grade Pleomorphic Sarcoma 8 104912 -NCIT:C4883 Malignant Muscle Neoplasm 5 104913 -NCIT:C6511 Malignant Smooth Muscle Neoplasm 6 104914 -NCIT:C3158 Leiomyosarcoma 7 104915 -NCIT:C121571 Leiomyosarcoma of Deep Soft Tissue 8 104916 -NCIT:C27904 Retroperitoneal Leiomyosarcoma 9 104917 -NCIT:C128047 Cervical Leiomyosarcoma 8 104918 -NCIT:C132147 Unresectable Leiomyosarcoma 8 104919 -NCIT:C168728 Unresectable Soft Tissue Leiomyosarcoma 9 104920 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 10 104921 -NCIT:C148294 Refractory Leiomyosarcoma 8 104922 -NCIT:C156347 Thyroid Gland Leiomyosarcoma 8 104923 -NCIT:C159670 Bladder Leiomyosarcoma 8 104924 -NCIT:C162306 EBV-Related Leiomyosarcoma 8 104925 -NCIT:C162495 Paratesticular Leiomyosarcoma 8 104926 -NCIT:C161641 Seminal Vesicle Leiomyosarcoma 9 104927 -NCIT:C162585 Penile Leiomyosarcoma 8 104928 -NCIT:C172951 Digestive System Leiomyosarcoma 8 104929 -NCIT:C188065 Pancreatic Leiomyosarcoma 9 104930 -NCIT:C27200 Gastric Leiomyosarcoma 9 104931 -NCIT:C5334 Esophageal Leiomyosarcoma 9 104932 -NCIT:C5599 Anal Leiomyosarcoma 9 104933 -NCIT:C5756 Liver Leiomyosarcoma 9 104934 -NCIT:C5841 Gallbladder Leiomyosarcoma 9 104935 -NCIT:C5848 Extrahepatic Bile Duct Leiomyosarcoma 9 104936 -NCIT:C7085 Small Intestinal Leiomyosarcoma 9 104937 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 10 104938 -NCIT:C96435 Appendix Leiomyosarcoma 9 104939 -NCIT:C96509 Colorectal Leiomyosarcoma 9 104940 -NCIT:C5494 Colon Leiomyosarcoma 10 104941 -NCIT:C5549 Rectal Leiomyosarcoma 10 104942 -NCIT:C173123 Sinonasal Leiomyosarcoma 8 104943 -NCIT:C175500 Conjunctival Leiomyosarcoma 8 104944 -NCIT:C175505 Resectable Leiomyosarcoma 8 104945 -NCIT:C178220 Pleomorphic Leiomyosarcoma 8 104946 -NCIT:C178222 Dedifferentiated Leiomyosarcoma 9 104947 -NCIT:C179926 Broad Ligament Leiomyosarcoma 8 104948 -NCIT:C188063 Pleural Leiomyosarcoma 8 104949 -NCIT:C188254 Adrenal Gland Leiomyosarcoma 8 104950 -NCIT:C27494 Granular Cell Leiomyosarcoma 8 104951 -NCIT:C27495 Inflammatory Leiomyosarcoma 8 104952 -NCIT:C3700 Epithelioid Leiomyosarcoma 8 104953 -NCIT:C40174 Uterine Corpus Epithelioid Leiomyosarcoma 9 104954 -NCIT:C3701 Myxoid Leiomyosarcoma 8 104955 -NCIT:C40175 Uterine Corpus Myxoid Leiomyosarcoma 9 104956 -NCIT:C40128 Fallopian Tube Leiomyosarcoma 8 104957 -NCIT:C40318 Vulvar Leiomyosarcoma 8 104958 -NCIT:C5186 Breast Leiomyosarcoma 8 104959 -NCIT:C5234 Ovarian Leiomyosarcoma 8 104960 -NCIT:C5364 Cardiac Leiomyosarcoma 8 104961 -NCIT:C5387 Leiomyosarcoma of Vessels 8 104962 -NCIT:C5372 Inferior Vena Cava Leiomyosarcoma 9 104963 -NCIT:C5373 Pulmonary Artery Leiomyosarcoma 9 104964 -NCIT:C5374 Pulmonary Vein Leiomyosarcoma 9 104965 -NCIT:C5388 Renal Vein Leiomyosarcoma 9 104966 -NCIT:C6745 Superior Vena Cava Leiomyosarcoma 9 104967 -NCIT:C5526 Prostate Leiomyosarcoma 8 104968 -NCIT:C5667 Lung Leiomyosarcoma 8 104969 -NCIT:C6022 Laryngeal Leiomyosarcoma 8 104970 -NCIT:C6183 Kidney Leiomyosarcoma 8 104971 -NCIT:C6326 Vaginal Leiomyosarcoma 8 104972 -NCIT:C6340 Uterine Corpus Leiomyosarcoma 8 104973 -NCIT:C139870 Uterine Corpus Leiomyosarcoma by AJCC v8 Stage 9 104974 -NCIT:C139871 Stage I Uterine Corpus Leiomyosarcoma AJCC v8 10 104975 -NCIT:C139872 Stage IA Uterine Corpus Leiomyosarcoma AJCC v8 11 104976 -NCIT:C139873 Stage IB Uterine Corpus Leiomyosarcoma AJCC v8 11 104977 -NCIT:C139874 Stage II Uterine Corpus Leiomyosarcoma AJCC v8 10 104978 -NCIT:C139875 Stage III Uterine Corpus Leiomyosarcoma AJCC v8 10 104979 -NCIT:C139876 Stage IIIA Uterine Corpus Leiomyosarcoma AJCC v8 11 104980 -NCIT:C139877 Stage IIIB Uterine Corpus Leiomyosarcoma AJCC v8 11 104981 -NCIT:C139878 Stage IIIC Uterine Corpus Leiomyosarcoma AJCC v8 11 104982 -NCIT:C139879 Stage IV Uterine Corpus Leiomyosarcoma AJCC v8 10 104983 -NCIT:C139880 Stage IVA Uterine Corpus Leiomyosarcoma AJCC v8 11 104984 -NCIT:C139881 Stage IVB Uterine Corpus Leiomyosarcoma AJCC v8 11 104985 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 9 104986 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 9 104987 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 10 104988 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 9 104989 -NCIT:C40174 Uterine Corpus Epithelioid Leiomyosarcoma 9 104990 -NCIT:C40175 Uterine Corpus Myxoid Leiomyosarcoma 9 104991 -NCIT:C6619 Mediastinal Leiomyosarcoma 8 104992 -NCIT:C6999 Central Nervous System Leiomyosarcoma 8 104993 -NCIT:C7154 Bone Leiomyosarcoma 8 104994 -NCIT:C7810 Adult Leiomyosarcoma 8 104995 -NCIT:C8093 Childhood Leiomyosarcoma 8 104996 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 9 104997 -NCIT:C8813 Metastatic Leiomyosarcoma 8 104998 -NCIT:C160917 Locally Advanced Leiomyosarcoma 9 104999 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 10 105000 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 11 105001 -NCIT:C165780 Advanced Leiomyosarcoma 9 105002 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 10 105003 -NCIT:C168725 Metastatic Soft Tissue Leiomyosarcoma 9 105004 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 10 105005 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 10 105006 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 11 105007 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 10 105008 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 11 105009 -NCIT:C8814 Localized Leiomyosarcoma 8 105010 -NCIT:C8815 Recurrent Leiomyosarcoma 8 105011 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 9 105012 -NCIT:C9389 Well Differentiated Leiomyosarcoma 8 105013 -NCIT:C9390 Leiomyosarcoma NCI Grade 3 8 105014 -NCIT:C9391 Leiomyosarcoma NCI Grade 2 8 105015 -NCIT:C9428 Conventional Leiomyosarcoma 8 105016 -NCIT:C6516 Malignant Skeletal Muscle Neoplasm 6 105017 -NCIT:C3359 Rhabdomyosarcoma 7 105018 -NCIT:C121654 Spindle Cell/Sclerosing Rhabdomyosarcoma 8 105019 -NCIT:C121655 Sclerosing Rhabdomyosarcoma 9 105020 -NCIT:C178235 MYOD1-Mutant Spindle Cell/Sclerosing Rhabdomyosarcoma 9 105021 -NCIT:C6519 Spindle Cell Rhabdomyosarcoma 9 105022 -NCIT:C123397 Childhood Spindle Cell Rhabdomyosarcoma 10 105023 -NCIT:C178232 Congenital/Infantile Spindle Cell Rhabdomyosarcoma with VGLL2/NCOA2/CITED2 Rearrangements 10 105024 -NCIT:C178236 Intraosseous Spindle Cell Rhabdomyosarcoma with TFCP2/NCOA2 Rearrangements 10 105025 -NCIT:C123735 Fusion-Positive Rhabdomyosarcoma 8 105026 -NCIT:C123731 Fusion-Positive Alveolar Rhabdomyosarcoma 9 105027 -NCIT:C123736 Fusion-Negative Rhabdomyosarcoma 8 105028 -NCIT:C123732 Fusion-Negative Alveolar Rhabdomyosarcoma 9 105029 -NCIT:C127058 Uterine Corpus Rhabdomyosarcoma 8 105030 -NCIT:C128048 Cervical Rhabdomyosarcoma 8 105031 -NCIT:C128080 Vaginal Rhabdomyosarcoma 8 105032 -NCIT:C40268 Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 9 105033 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 105034 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 105035 -NCIT:C142851 Refractory Rhabdomyosarcoma 8 105036 -NCIT:C142880 Refractory Alveolar Rhabdomyosarcoma 9 105037 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 9 105038 -NCIT:C151981 Pelvic Rhabdomyosarcoma 8 105039 -NCIT:C151982 Abdominal Rhabdomyosarcoma 8 105040 -NCIT:C151983 Unresectable Rhabdomyosarcoma 8 105041 -NCIT:C159206 Kidney Rhabdomyosarcoma 8 105042 -NCIT:C159667 Bladder Rhabdomyosarcoma 8 105043 -NCIT:C159668 Bladder Embryonal Rhabdomyosarcoma 9 105044 -NCIT:C159669 Bladder Alveolar Rhabdomyosarcoma 9 105045 -NCIT:C162497 Paratesticular Rhabdomyosarcoma 8 105046 -NCIT:C162588 Penile Rhabdomyosarcoma 8 105047 -NCIT:C166414 Metastatic Rhabdomyosarcoma 8 105048 -NCIT:C166415 Locally Advanced Rhabdomyosarcoma 9 105049 -NCIT:C183250 Metastatic Embryonal Rhabdomyosarcoma 9 105050 -NCIT:C172952 Digestive System Rhabdomyosarcoma 8 105051 -NCIT:C5610 Anal Rhabdomyosarcoma 9 105052 -NCIT:C5627 Rectal Rhabdomyosarcoma 9 105053 -NCIT:C5834 Liver Rhabdomyosarcoma 9 105054 -NCIT:C5839 Gallbladder Rhabdomyosarcoma 9 105055 -NCIT:C5860 Extrahepatic Bile Duct Rhabdomyosarcoma 9 105056 -NCIT:C5847 Extrahepatic Bile Duct Embryonal Rhabdomyosarcoma 10 105057 -NCIT:C95623 Esophageal Rhabdomyosarcoma 9 105058 -NCIT:C173124 Sinonasal Rhabdomyosarcoma 8 105059 -NCIT:C175501 Conjunctival Rhabdomyosarcoma 8 105060 -NCIT:C181201 Lung Rhabdomyosarcoma 8 105061 -NCIT:C181944 Vulvar Rhabdomyosarcoma 8 105062 -NCIT:C128273 Vulvar Alveolar Rhabdomyosarcoma 9 105063 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 9 105064 -NCIT:C188071 Retroperitoneal Rhabdomyosarcoma 8 105065 -NCIT:C3749 Alveolar Rhabdomyosarcoma 8 105066 -NCIT:C123731 Fusion-Positive Alveolar Rhabdomyosarcoma 9 105067 -NCIT:C123732 Fusion-Negative Alveolar Rhabdomyosarcoma 9 105068 -NCIT:C128273 Vulvar Alveolar Rhabdomyosarcoma 9 105069 -NCIT:C142880 Refractory Alveolar Rhabdomyosarcoma 9 105070 -NCIT:C142881 Recurrent Alveolar Rhabdomyosarcoma 9 105071 -NCIT:C159669 Bladder Alveolar Rhabdomyosarcoma 9 105072 -NCIT:C188070 Prostate Alveolar Rhabdomyosarcoma 9 105073 -NCIT:C27492 Conventional Alveolar Rhabdomyosarcoma 9 105074 -NCIT:C27493 Solid Alveolar Rhabdomyosarcoma 9 105075 -NCIT:C6247 Orbit Alveolar Rhabdomyosarcoma 9 105076 -NCIT:C7958 Childhood Alveolar Rhabdomyosarcoma 9 105077 -NCIT:C4258 Pleomorphic Rhabdomyosarcoma 8 105078 -NCIT:C27369 Adult Pleomorphic Rhabdomyosarcoma 9 105079 -NCIT:C7959 Childhood Pleomorphic Rhabdomyosarcoma 9 105080 -NCIT:C4259 Rhabdomyosarcoma with Mixed Embryonal and Alveolar Features 8 105081 -NCIT:C7960 Childhood Rhabdomyosarcoma with Mixed Embryonal and Alveolar Features 9 105082 -NCIT:C4543 Orbit Rhabdomyosarcoma 8 105083 -NCIT:C6246 Orbit Embryonal Rhabdomyosarcoma 9 105084 -NCIT:C6247 Orbit Alveolar Rhabdomyosarcoma 9 105085 -NCIT:C45759 Cardiac Rhabdomyosarcoma 8 105086 -NCIT:C5190 Breast Rhabdomyosarcoma 8 105087 -NCIT:C5236 Ovarian Rhabdomyosarcoma 8 105088 -NCIT:C5464 Central Nervous System Rhabdomyosarcoma 8 105089 -NCIT:C5522 Prostate Rhabdomyosarcoma 8 105090 -NCIT:C188070 Prostate Alveolar Rhabdomyosarcoma 9 105091 -NCIT:C5525 Prostate Embryonal Rhabdomyosarcoma 9 105092 -NCIT:C6378 Testicular Rhabdomyosarcoma 8 105093 -NCIT:C6617 Mediastinal Rhabdomyosarcoma 8 105094 -NCIT:C7705 Childhood Rhabdomyosarcoma 8 105095 -NCIT:C123397 Childhood Spindle Cell Rhabdomyosarcoma 9 105096 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 9 105097 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 9 105098 -NCIT:C7957 Childhood Embryonal Rhabdomyosarcoma 9 105099 -NCIT:C35574 Childhood Botryoid-Type Embryonal Rhabdomyosarcoma 10 105100 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 11 105101 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 11 105102 -NCIT:C7958 Childhood Alveolar Rhabdomyosarcoma 9 105103 -NCIT:C7959 Childhood Pleomorphic Rhabdomyosarcoma 9 105104 -NCIT:C7960 Childhood Rhabdomyosarcoma with Mixed Embryonal and Alveolar Features 9 105105 -NCIT:C8065 Localized Childhood Rhabdomyosarcoma 9 105106 -NCIT:C8824 Recurrent Rhabdomyosarcoma 8 105107 -NCIT:C142881 Recurrent Alveolar Rhabdomyosarcoma 9 105108 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 9 105109 -NCIT:C8971 Embryonal Rhabdomyosarcoma 8 105110 -NCIT:C159668 Bladder Embryonal Rhabdomyosarcoma 9 105111 -NCIT:C183250 Metastatic Embryonal Rhabdomyosarcoma 9 105112 -NCIT:C188115 Middle Ear Embryonal Rhabdomyosarcoma 9 105113 -NCIT:C49204 Anaplastic Embryonal Rhabdomyosarcoma 9 105114 -NCIT:C5525 Prostate Embryonal Rhabdomyosarcoma 9 105115 -NCIT:C5847 Extrahepatic Bile Duct Embryonal Rhabdomyosarcoma 9 105116 -NCIT:C6246 Orbit Embryonal Rhabdomyosarcoma 9 105117 -NCIT:C7957 Childhood Embryonal Rhabdomyosarcoma 9 105118 -NCIT:C35574 Childhood Botryoid-Type Embryonal Rhabdomyosarcoma 10 105119 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 11 105120 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 11 105121 -NCIT:C9150 Botryoid-Type Embryonal Rhabdomyosarcoma 9 105122 -NCIT:C35574 Childhood Botryoid-Type Embryonal Rhabdomyosarcoma 10 105123 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 11 105124 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 11 105125 -NCIT:C36099 Adult Botryoid-Type Embryonal Rhabdomyosarcoma 10 105126 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 11 105127 -NCIT:C40268 Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 105128 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 11 105129 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 11 105130 -NCIT:C9130 Adult Rhabdomyosarcoma 8 105131 -NCIT:C27369 Adult Pleomorphic Rhabdomyosarcoma 9 105132 -NCIT:C36099 Adult Botryoid-Type Embryonal Rhabdomyosarcoma 9 105133 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 105134 -NCIT:C4063 Myomatous Neoplasm 4 105135 -NCIT:C3751 Smooth Muscle Neoplasm 5 105136 -NCIT:C178217 EBV-Associated Smooth Muscle Tumor 6 105137 -NCIT:C188982 Childhood EBV-Associated Smooth Muscle Tumor 7 105138 -NCIT:C179359 Ovarian Smooth Muscle Neoplasm 6 105139 -NCIT:C179360 Ovarian Leiomyoma 7 105140 -NCIT:C179362 Ovarian Smooth Muscle Tumor of Uncertain Malignant Potential 7 105141 -NCIT:C5234 Ovarian Leiomyosarcoma 7 105142 -NCIT:C181941 Female Reproductive System Smooth Muscle Tumor of Uncertain Malignant Potential 6 105143 -NCIT:C179362 Ovarian Smooth Muscle Tumor of Uncertain Malignant Potential 7 105144 -NCIT:C181939 Vulvar Smooth Muscle Tumor of Uncertain Malignant Potential 7 105145 -NCIT:C181940 Vaginal Smooth Muscle Tumor of Uncertain Malignant Potential 7 105146 -NCIT:C40177 Uterine Corpus Smooth Muscle Tumor of Uncertain Malignant Potential 7 105147 -NCIT:C180540 Uterine Corpus Spindle Smooth Muscle Tumor of Uncertain Malignant Potential 8 105148 -NCIT:C180541 Uterine Corpus Myxoid Smooth Muscle Tumor of Uncertain Malignant Potential 8 105149 -NCIT:C180542 Uterine Corpus Epithelioid Smooth Muscle Tumor of Uncertain Malignant Potential 8 105150 -NCIT:C40176 Uterine Corpus Smooth Muscle Neoplasm 6 105151 -NCIT:C3434 Uterine Corpus Leiomyoma 7 105152 -NCIT:C126975 Uterine Corpus Hydropic Leiomyoma 8 105153 -NCIT:C3511 Uterine Corpus Degenerated Leiomyoma 8 105154 -NCIT:C40162 Uterine Corpus Leiomyoma, Mitotically Active Variant 8 105155 -NCIT:C40163 Uterine Corpus Cellular Leiomyoma 8 105156 -NCIT:C40164 Uterine Corpus Epithelioid Leiomyoma 8 105157 -NCIT:C40165 Uterine Corpus Apoplectic Leiomyoma 8 105158 -NCIT:C40166 Uterine Corpus Myxoid Leiomyoma 8 105159 -NCIT:C40167 Uterine Corpus Bizarre Leiomyoma 8 105160 -NCIT:C40168 Uterine Corpus Lipoleiomyoma 8 105161 -NCIT:C40170 Uterine Corpus Diffuse Leiomyomatosis 8 105162 -NCIT:C40172 Uterine Corpus Dissecting Leiomyoma 8 105163 -NCIT:C40173 Uterine Corpus Metastasizing Leiomyoma 8 105164 -NCIT:C5356 Uterine Corpus Intravenous Leiomyomatosis 8 105165 -NCIT:C40177 Uterine Corpus Smooth Muscle Tumor of Uncertain Malignant Potential 7 105166 -NCIT:C180540 Uterine Corpus Spindle Smooth Muscle Tumor of Uncertain Malignant Potential 8 105167 -NCIT:C180541 Uterine Corpus Myxoid Smooth Muscle Tumor of Uncertain Malignant Potential 8 105168 -NCIT:C180542 Uterine Corpus Epithelioid Smooth Muscle Tumor of Uncertain Malignant Potential 8 105169 -NCIT:C6340 Uterine Corpus Leiomyosarcoma 7 105170 -NCIT:C139870 Uterine Corpus Leiomyosarcoma by AJCC v8 Stage 8 105171 -NCIT:C139871 Stage I Uterine Corpus Leiomyosarcoma AJCC v8 9 105172 -NCIT:C139872 Stage IA Uterine Corpus Leiomyosarcoma AJCC v8 10 105173 -NCIT:C139873 Stage IB Uterine Corpus Leiomyosarcoma AJCC v8 10 105174 -NCIT:C139874 Stage II Uterine Corpus Leiomyosarcoma AJCC v8 9 105175 -NCIT:C139875 Stage III Uterine Corpus Leiomyosarcoma AJCC v8 9 105176 -NCIT:C139876 Stage IIIA Uterine Corpus Leiomyosarcoma AJCC v8 10 105177 -NCIT:C139877 Stage IIIB Uterine Corpus Leiomyosarcoma AJCC v8 10 105178 -NCIT:C139878 Stage IIIC Uterine Corpus Leiomyosarcoma AJCC v8 10 105179 -NCIT:C139879 Stage IV Uterine Corpus Leiomyosarcoma AJCC v8 9 105180 -NCIT:C139880 Stage IVA Uterine Corpus Leiomyosarcoma AJCC v8 10 105181 -NCIT:C139881 Stage IVB Uterine Corpus Leiomyosarcoma AJCC v8 10 105182 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 8 105183 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 8 105184 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 9 105185 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 8 105186 -NCIT:C40174 Uterine Corpus Epithelioid Leiomyosarcoma 8 105187 -NCIT:C40175 Uterine Corpus Myxoid Leiomyosarcoma 8 105188 -NCIT:C4480 Skin Smooth Muscle Neoplasm 6 105189 -NCIT:C4482 Skin Leiomyoma 7 105190 -NCIT:C43332 Pilar Leiomyoma 8 105191 -NCIT:C4483 Dartoic Leiomyoma 8 105192 -NCIT:C4484 Atypical Intradermal Smooth Muscle Neoplasm 7 105193 -NCIT:C6510 Benign Smooth Muscle Neoplasm 6 105194 -NCIT:C3157 Leiomyoma 7 105195 -NCIT:C128046 Cervical Leiomyoma 8 105196 -NCIT:C156346 Thyroid Gland Leiomyoma 8 105197 -NCIT:C159209 Kidney Leiomyoma 8 105198 -NCIT:C162494 Paratesticular Leiomyoma 8 105199 -NCIT:C161638 Seminal Vesicle Leiomyoma 9 105200 -NCIT:C162583 Penile Leiomyoma 8 105201 -NCIT:C172942 Digestive System Leiomyoma 8 105202 -NCIT:C3866 Esophageal Leiomyoma 9 105203 -NCIT:C3876 Gastric Leiomyoma 9 105204 -NCIT:C5514 Appendix Leiomyoma 9 105205 -NCIT:C5608 Anal Leiomyoma 9 105206 -NCIT:C5677 Colorectal Leiomyoma 9 105207 -NCIT:C5492 Colon Leiomyoma 10 105208 -NCIT:C5552 Rectal Leiomyoma 10 105209 -NCIT:C5747 Gallbladder Leiomyoma 9 105210 -NCIT:C5753 Liver Leiomyoma 9 105211 -NCIT:C5855 Extrahepatic Bile Duct Leiomyoma 9 105212 -NCIT:C7725 Small Intestinal Leiomyoma 9 105213 -NCIT:C173140 Sinonasal Leiomyoma 8 105214 -NCIT:C179360 Ovarian Leiomyoma 8 105215 -NCIT:C179923 Uterine Ligament Leiomyoma 8 105216 -NCIT:C179924 Broad Ligament Leiomyoma 9 105217 -NCIT:C188253 Adrenal Gland Leiomyoma 8 105218 -NCIT:C3434 Uterine Corpus Leiomyoma 8 105219 -NCIT:C126975 Uterine Corpus Hydropic Leiomyoma 9 105220 -NCIT:C3511 Uterine Corpus Degenerated Leiomyoma 9 105221 -NCIT:C40162 Uterine Corpus Leiomyoma, Mitotically Active Variant 9 105222 -NCIT:C40163 Uterine Corpus Cellular Leiomyoma 9 105223 -NCIT:C40164 Uterine Corpus Epithelioid Leiomyoma 9 105224 -NCIT:C40165 Uterine Corpus Apoplectic Leiomyoma 9 105225 -NCIT:C40166 Uterine Corpus Myxoid Leiomyoma 9 105226 -NCIT:C40167 Uterine Corpus Bizarre Leiomyoma 9 105227 -NCIT:C40168 Uterine Corpus Lipoleiomyoma 9 105228 -NCIT:C40170 Uterine Corpus Diffuse Leiomyomatosis 9 105229 -NCIT:C40172 Uterine Corpus Dissecting Leiomyoma 9 105230 -NCIT:C40173 Uterine Corpus Metastasizing Leiomyoma 9 105231 -NCIT:C5356 Uterine Corpus Intravenous Leiomyomatosis 9 105232 -NCIT:C3748 Leiomyomatosis 8 105233 -NCIT:C3958 Disseminated Peritoneal Leiomyomatosis 9 105234 -NCIT:C40170 Uterine Corpus Diffuse Leiomyomatosis 9 105235 -NCIT:C4518 Intravenous Leiomyomatosis 9 105236 -NCIT:C5356 Uterine Corpus Intravenous Leiomyomatosis 10 105237 -NCIT:C40127 Fallopian Tube Leiomyoma 8 105238 -NCIT:C40326 Vulvar Leiomyoma 8 105239 -NCIT:C40399 Breast Leiomyoma 8 105240 -NCIT:C4256 Cellular Leiomyoma 8 105241 -NCIT:C40163 Uterine Corpus Cellular Leiomyoma 9 105242 -NCIT:C4257 Bizarre Leiomyoma 8 105243 -NCIT:C40167 Uterine Corpus Bizarre Leiomyoma 9 105244 -NCIT:C4482 Skin Leiomyoma 8 105245 -NCIT:C43332 Pilar Leiomyoma 9 105246 -NCIT:C4483 Dartoic Leiomyoma 9 105247 -NCIT:C4560 Ciliary Body Leiomyoma 8 105248 -NCIT:C53964 Bone Leiomyoma 8 105249 -NCIT:C5544 Prostate Leiomyoma 8 105250 -NCIT:C5660 Lung Leiomyoma 8 105251 -NCIT:C5661 Endobronchial Leiomyoma 9 105252 -NCIT:C5909 Oral Cavity Leiomyoma 8 105253 -NCIT:C6027 Laryngeal Leiomyoma 8 105254 -NCIT:C6049 Tracheal Leiomyoma 8 105255 -NCIT:C6161 Ureter Leiomyoma 8 105256 -NCIT:C6171 Urethral Leiomyoma 8 105257 -NCIT:C6178 Bladder Leiomyoma 8 105258 -NCIT:C6373 Vaginal Leiomyoma 8 105259 -NCIT:C6512 Deep Leiomyoma 8 105260 -NCIT:C6598 Mediastinal Leiomyoma 8 105261 -NCIT:C6743 Pericardial Leiomyoma 8 105262 -NCIT:C67563 Myxoid Leiomyoma 8 105263 -NCIT:C40166 Uterine Corpus Myxoid Leiomyoma 9 105264 -NCIT:C6998 Central Nervous System Leiomyoma 8 105265 -NCIT:C6511 Malignant Smooth Muscle Neoplasm 6 105266 -NCIT:C3158 Leiomyosarcoma 7 105267 -NCIT:C121571 Leiomyosarcoma of Deep Soft Tissue 8 105268 -NCIT:C27904 Retroperitoneal Leiomyosarcoma 9 105269 -NCIT:C128047 Cervical Leiomyosarcoma 8 105270 -NCIT:C132147 Unresectable Leiomyosarcoma 8 105271 -NCIT:C168728 Unresectable Soft Tissue Leiomyosarcoma 9 105272 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 10 105273 -NCIT:C148294 Refractory Leiomyosarcoma 8 105274 -NCIT:C156347 Thyroid Gland Leiomyosarcoma 8 105275 -NCIT:C159670 Bladder Leiomyosarcoma 8 105276 -NCIT:C162306 EBV-Related Leiomyosarcoma 8 105277 -NCIT:C162495 Paratesticular Leiomyosarcoma 8 105278 -NCIT:C161641 Seminal Vesicle Leiomyosarcoma 9 105279 -NCIT:C162585 Penile Leiomyosarcoma 8 105280 -NCIT:C172951 Digestive System Leiomyosarcoma 8 105281 -NCIT:C188065 Pancreatic Leiomyosarcoma 9 105282 -NCIT:C27200 Gastric Leiomyosarcoma 9 105283 -NCIT:C5334 Esophageal Leiomyosarcoma 9 105284 -NCIT:C5599 Anal Leiomyosarcoma 9 105285 -NCIT:C5756 Liver Leiomyosarcoma 9 105286 -NCIT:C5841 Gallbladder Leiomyosarcoma 9 105287 -NCIT:C5848 Extrahepatic Bile Duct Leiomyosarcoma 9 105288 -NCIT:C7085 Small Intestinal Leiomyosarcoma 9 105289 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 10 105290 -NCIT:C96435 Appendix Leiomyosarcoma 9 105291 -NCIT:C96509 Colorectal Leiomyosarcoma 9 105292 -NCIT:C5494 Colon Leiomyosarcoma 10 105293 -NCIT:C5549 Rectal Leiomyosarcoma 10 105294 -NCIT:C173123 Sinonasal Leiomyosarcoma 8 105295 -NCIT:C175500 Conjunctival Leiomyosarcoma 8 105296 -NCIT:C175505 Resectable Leiomyosarcoma 8 105297 -NCIT:C178220 Pleomorphic Leiomyosarcoma 8 105298 -NCIT:C178222 Dedifferentiated Leiomyosarcoma 9 105299 -NCIT:C179926 Broad Ligament Leiomyosarcoma 8 105300 -NCIT:C188063 Pleural Leiomyosarcoma 8 105301 -NCIT:C188254 Adrenal Gland Leiomyosarcoma 8 105302 -NCIT:C27494 Granular Cell Leiomyosarcoma 8 105303 -NCIT:C27495 Inflammatory Leiomyosarcoma 8 105304 -NCIT:C3700 Epithelioid Leiomyosarcoma 8 105305 -NCIT:C40174 Uterine Corpus Epithelioid Leiomyosarcoma 9 105306 -NCIT:C3701 Myxoid Leiomyosarcoma 8 105307 -NCIT:C40175 Uterine Corpus Myxoid Leiomyosarcoma 9 105308 -NCIT:C40128 Fallopian Tube Leiomyosarcoma 8 105309 -NCIT:C40318 Vulvar Leiomyosarcoma 8 105310 -NCIT:C5186 Breast Leiomyosarcoma 8 105311 -NCIT:C5234 Ovarian Leiomyosarcoma 8 105312 -NCIT:C5364 Cardiac Leiomyosarcoma 8 105313 -NCIT:C5387 Leiomyosarcoma of Vessels 8 105314 -NCIT:C5372 Inferior Vena Cava Leiomyosarcoma 9 105315 -NCIT:C5373 Pulmonary Artery Leiomyosarcoma 9 105316 -NCIT:C5374 Pulmonary Vein Leiomyosarcoma 9 105317 -NCIT:C5388 Renal Vein Leiomyosarcoma 9 105318 -NCIT:C6745 Superior Vena Cava Leiomyosarcoma 9 105319 -NCIT:C5526 Prostate Leiomyosarcoma 8 105320 -NCIT:C5667 Lung Leiomyosarcoma 8 105321 -NCIT:C6022 Laryngeal Leiomyosarcoma 8 105322 -NCIT:C6183 Kidney Leiomyosarcoma 8 105323 -NCIT:C6326 Vaginal Leiomyosarcoma 8 105324 -NCIT:C6340 Uterine Corpus Leiomyosarcoma 8 105325 -NCIT:C139870 Uterine Corpus Leiomyosarcoma by AJCC v8 Stage 9 105326 -NCIT:C139871 Stage I Uterine Corpus Leiomyosarcoma AJCC v8 10 105327 -NCIT:C139872 Stage IA Uterine Corpus Leiomyosarcoma AJCC v8 11 105328 -NCIT:C139873 Stage IB Uterine Corpus Leiomyosarcoma AJCC v8 11 105329 -NCIT:C139874 Stage II Uterine Corpus Leiomyosarcoma AJCC v8 10 105330 -NCIT:C139875 Stage III Uterine Corpus Leiomyosarcoma AJCC v8 10 105331 -NCIT:C139876 Stage IIIA Uterine Corpus Leiomyosarcoma AJCC v8 11 105332 -NCIT:C139877 Stage IIIB Uterine Corpus Leiomyosarcoma AJCC v8 11 105333 -NCIT:C139878 Stage IIIC Uterine Corpus Leiomyosarcoma AJCC v8 11 105334 -NCIT:C139879 Stage IV Uterine Corpus Leiomyosarcoma AJCC v8 10 105335 -NCIT:C139880 Stage IVA Uterine Corpus Leiomyosarcoma AJCC v8 11 105336 -NCIT:C139881 Stage IVB Uterine Corpus Leiomyosarcoma AJCC v8 11 105337 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 9 105338 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 9 105339 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 10 105340 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 9 105341 -NCIT:C40174 Uterine Corpus Epithelioid Leiomyosarcoma 9 105342 -NCIT:C40175 Uterine Corpus Myxoid Leiomyosarcoma 9 105343 -NCIT:C6619 Mediastinal Leiomyosarcoma 8 105344 -NCIT:C6999 Central Nervous System Leiomyosarcoma 8 105345 -NCIT:C7154 Bone Leiomyosarcoma 8 105346 -NCIT:C7810 Adult Leiomyosarcoma 8 105347 -NCIT:C8093 Childhood Leiomyosarcoma 8 105348 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 9 105349 -NCIT:C8813 Metastatic Leiomyosarcoma 8 105350 -NCIT:C160917 Locally Advanced Leiomyosarcoma 9 105351 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 10 105352 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 11 105353 -NCIT:C165780 Advanced Leiomyosarcoma 9 105354 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 10 105355 -NCIT:C168725 Metastatic Soft Tissue Leiomyosarcoma 9 105356 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 10 105357 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 10 105358 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 11 105359 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 10 105360 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 11 105361 -NCIT:C8814 Localized Leiomyosarcoma 8 105362 -NCIT:C8815 Recurrent Leiomyosarcoma 8 105363 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 9 105364 -NCIT:C9389 Well Differentiated Leiomyosarcoma 8 105365 -NCIT:C9390 Leiomyosarcoma NCI Grade 3 8 105366 -NCIT:C9391 Leiomyosarcoma NCI Grade 2 8 105367 -NCIT:C9428 Conventional Leiomyosarcoma 8 105368 -NCIT:C4882 Benign Muscle Neoplasm 5 105369 -NCIT:C3358 Rhabdomyoma 6 105370 -NCIT:C188983 Childhood Rhabdomyoma 7 105371 -NCIT:C190104 Childhood Cardiac Rhabdomyoma 8 105372 -NCIT:C49166 Extracardiac Rhabdomyoma 7 105373 -NCIT:C162496 Paratesticular Rhabdomyoma 8 105374 -NCIT:C4260 Fetal Rhabdomyoma 8 105375 -NCIT:C27480 Classic Rhabdomyoma 9 105376 -NCIT:C6518 Intermediate Rhabdomyoma 9 105377 -NCIT:C4261 Adult Extracardiac Rhabdomyoma 8 105378 -NCIT:C6517 Genital Rhabdomyoma 8 105379 -NCIT:C181942 Vulvar Rhabdomyoma 9 105380 -NCIT:C40266 Cervical Rhabdomyoma 9 105381 -NCIT:C6372 Vaginal Rhabdomyoma 9 105382 -NCIT:C6600 Mediastinal Rhabdomyoma 8 105383 -NCIT:C7000 Central Nervous System Rhabdomyoma 8 105384 -NCIT:C6739 Cardiac Rhabdomyoma 7 105385 -NCIT:C190104 Childhood Cardiac Rhabdomyoma 8 105386 -NCIT:C45747 Adult Cardiac Cellular Rhabdomyoma 8 105387 -NCIT:C49179 Conventional Cardiac Rhabdomyoma 8 105388 -NCIT:C6510 Benign Smooth Muscle Neoplasm 6 105389 -NCIT:C3157 Leiomyoma 7 105390 -NCIT:C128046 Cervical Leiomyoma 8 105391 -NCIT:C156346 Thyroid Gland Leiomyoma 8 105392 -NCIT:C159209 Kidney Leiomyoma 8 105393 -NCIT:C162494 Paratesticular Leiomyoma 8 105394 -NCIT:C161638 Seminal Vesicle Leiomyoma 9 105395 -NCIT:C162583 Penile Leiomyoma 8 105396 -NCIT:C172942 Digestive System Leiomyoma 8 105397 -NCIT:C3866 Esophageal Leiomyoma 9 105398 -NCIT:C3876 Gastric Leiomyoma 9 105399 -NCIT:C5514 Appendix Leiomyoma 9 105400 -NCIT:C5608 Anal Leiomyoma 9 105401 -NCIT:C5677 Colorectal Leiomyoma 9 105402 -NCIT:C5492 Colon Leiomyoma 10 105403 -NCIT:C5552 Rectal Leiomyoma 10 105404 -NCIT:C5747 Gallbladder Leiomyoma 9 105405 -NCIT:C5753 Liver Leiomyoma 9 105406 -NCIT:C5855 Extrahepatic Bile Duct Leiomyoma 9 105407 -NCIT:C7725 Small Intestinal Leiomyoma 9 105408 -NCIT:C173140 Sinonasal Leiomyoma 8 105409 -NCIT:C179360 Ovarian Leiomyoma 8 105410 -NCIT:C179923 Uterine Ligament Leiomyoma 8 105411 -NCIT:C179924 Broad Ligament Leiomyoma 9 105412 -NCIT:C188253 Adrenal Gland Leiomyoma 8 105413 -NCIT:C3434 Uterine Corpus Leiomyoma 8 105414 -NCIT:C126975 Uterine Corpus Hydropic Leiomyoma 9 105415 -NCIT:C3511 Uterine Corpus Degenerated Leiomyoma 9 105416 -NCIT:C40162 Uterine Corpus Leiomyoma, Mitotically Active Variant 9 105417 -NCIT:C40163 Uterine Corpus Cellular Leiomyoma 9 105418 -NCIT:C40164 Uterine Corpus Epithelioid Leiomyoma 9 105419 -NCIT:C40165 Uterine Corpus Apoplectic Leiomyoma 9 105420 -NCIT:C40166 Uterine Corpus Myxoid Leiomyoma 9 105421 -NCIT:C40167 Uterine Corpus Bizarre Leiomyoma 9 105422 -NCIT:C40168 Uterine Corpus Lipoleiomyoma 9 105423 -NCIT:C40170 Uterine Corpus Diffuse Leiomyomatosis 9 105424 -NCIT:C40172 Uterine Corpus Dissecting Leiomyoma 9 105425 -NCIT:C40173 Uterine Corpus Metastasizing Leiomyoma 9 105426 -NCIT:C5356 Uterine Corpus Intravenous Leiomyomatosis 9 105427 -NCIT:C3748 Leiomyomatosis 8 105428 -NCIT:C3958 Disseminated Peritoneal Leiomyomatosis 9 105429 -NCIT:C40170 Uterine Corpus Diffuse Leiomyomatosis 9 105430 -NCIT:C4518 Intravenous Leiomyomatosis 9 105431 -NCIT:C5356 Uterine Corpus Intravenous Leiomyomatosis 10 105432 -NCIT:C40127 Fallopian Tube Leiomyoma 8 105433 -NCIT:C40326 Vulvar Leiomyoma 8 105434 -NCIT:C40399 Breast Leiomyoma 8 105435 -NCIT:C4256 Cellular Leiomyoma 8 105436 -NCIT:C40163 Uterine Corpus Cellular Leiomyoma 9 105437 -NCIT:C4257 Bizarre Leiomyoma 8 105438 -NCIT:C40167 Uterine Corpus Bizarre Leiomyoma 9 105439 -NCIT:C4482 Skin Leiomyoma 8 105440 -NCIT:C43332 Pilar Leiomyoma 9 105441 -NCIT:C4483 Dartoic Leiomyoma 9 105442 -NCIT:C4560 Ciliary Body Leiomyoma 8 105443 -NCIT:C53964 Bone Leiomyoma 8 105444 -NCIT:C5544 Prostate Leiomyoma 8 105445 -NCIT:C5660 Lung Leiomyoma 8 105446 -NCIT:C5661 Endobronchial Leiomyoma 9 105447 -NCIT:C5909 Oral Cavity Leiomyoma 8 105448 -NCIT:C6027 Laryngeal Leiomyoma 8 105449 -NCIT:C6049 Tracheal Leiomyoma 8 105450 -NCIT:C6161 Ureter Leiomyoma 8 105451 -NCIT:C6171 Urethral Leiomyoma 8 105452 -NCIT:C6178 Bladder Leiomyoma 8 105453 -NCIT:C6373 Vaginal Leiomyoma 8 105454 -NCIT:C6512 Deep Leiomyoma 8 105455 -NCIT:C6598 Mediastinal Leiomyoma 8 105456 -NCIT:C6743 Pericardial Leiomyoma 8 105457 -NCIT:C67563 Myxoid Leiomyoma 8 105458 -NCIT:C40166 Uterine Corpus Myxoid Leiomyoma 9 105459 -NCIT:C6998 Central Nervous System Leiomyoma 8 105460 -NCIT:C6515 Benign Skeletal Muscle Neoplasm 6 105461 -NCIT:C49166 Extracardiac Rhabdomyoma 7 105462 -NCIT:C162496 Paratesticular Rhabdomyoma 8 105463 -NCIT:C4260 Fetal Rhabdomyoma 8 105464 -NCIT:C27480 Classic Rhabdomyoma 9 105465 -NCIT:C6518 Intermediate Rhabdomyoma 9 105466 -NCIT:C4261 Adult Extracardiac Rhabdomyoma 8 105467 -NCIT:C6517 Genital Rhabdomyoma 8 105468 -NCIT:C181942 Vulvar Rhabdomyoma 9 105469 -NCIT:C40266 Cervical Rhabdomyoma 9 105470 -NCIT:C6372 Vaginal Rhabdomyoma 9 105471 -NCIT:C6600 Mediastinal Rhabdomyoma 8 105472 -NCIT:C7000 Central Nervous System Rhabdomyoma 8 105473 -NCIT:C4883 Malignant Muscle Neoplasm 5 105474 -NCIT:C6511 Malignant Smooth Muscle Neoplasm 6 105475 -NCIT:C3158 Leiomyosarcoma 7 105476 -NCIT:C121571 Leiomyosarcoma of Deep Soft Tissue 8 105477 -NCIT:C27904 Retroperitoneal Leiomyosarcoma 9 105478 -NCIT:C128047 Cervical Leiomyosarcoma 8 105479 -NCIT:C132147 Unresectable Leiomyosarcoma 8 105480 -NCIT:C168728 Unresectable Soft Tissue Leiomyosarcoma 9 105481 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 10 105482 -NCIT:C148294 Refractory Leiomyosarcoma 8 105483 -NCIT:C156347 Thyroid Gland Leiomyosarcoma 8 105484 -NCIT:C159670 Bladder Leiomyosarcoma 8 105485 -NCIT:C162306 EBV-Related Leiomyosarcoma 8 105486 -NCIT:C162495 Paratesticular Leiomyosarcoma 8 105487 -NCIT:C161641 Seminal Vesicle Leiomyosarcoma 9 105488 -NCIT:C162585 Penile Leiomyosarcoma 8 105489 -NCIT:C172951 Digestive System Leiomyosarcoma 8 105490 -NCIT:C188065 Pancreatic Leiomyosarcoma 9 105491 -NCIT:C27200 Gastric Leiomyosarcoma 9 105492 -NCIT:C5334 Esophageal Leiomyosarcoma 9 105493 -NCIT:C5599 Anal Leiomyosarcoma 9 105494 -NCIT:C5756 Liver Leiomyosarcoma 9 105495 -NCIT:C5841 Gallbladder Leiomyosarcoma 9 105496 -NCIT:C5848 Extrahepatic Bile Duct Leiomyosarcoma 9 105497 -NCIT:C7085 Small Intestinal Leiomyosarcoma 9 105498 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 10 105499 -NCIT:C96435 Appendix Leiomyosarcoma 9 105500 -NCIT:C96509 Colorectal Leiomyosarcoma 9 105501 -NCIT:C5494 Colon Leiomyosarcoma 10 105502 -NCIT:C5549 Rectal Leiomyosarcoma 10 105503 -NCIT:C173123 Sinonasal Leiomyosarcoma 8 105504 -NCIT:C175500 Conjunctival Leiomyosarcoma 8 105505 -NCIT:C175505 Resectable Leiomyosarcoma 8 105506 -NCIT:C178220 Pleomorphic Leiomyosarcoma 8 105507 -NCIT:C178222 Dedifferentiated Leiomyosarcoma 9 105508 -NCIT:C179926 Broad Ligament Leiomyosarcoma 8 105509 -NCIT:C188063 Pleural Leiomyosarcoma 8 105510 -NCIT:C188254 Adrenal Gland Leiomyosarcoma 8 105511 -NCIT:C27494 Granular Cell Leiomyosarcoma 8 105512 -NCIT:C27495 Inflammatory Leiomyosarcoma 8 105513 -NCIT:C3700 Epithelioid Leiomyosarcoma 8 105514 -NCIT:C40174 Uterine Corpus Epithelioid Leiomyosarcoma 9 105515 -NCIT:C3701 Myxoid Leiomyosarcoma 8 105516 -NCIT:C40175 Uterine Corpus Myxoid Leiomyosarcoma 9 105517 -NCIT:C40128 Fallopian Tube Leiomyosarcoma 8 105518 -NCIT:C40318 Vulvar Leiomyosarcoma 8 105519 -NCIT:C5186 Breast Leiomyosarcoma 8 105520 -NCIT:C5234 Ovarian Leiomyosarcoma 8 105521 -NCIT:C5364 Cardiac Leiomyosarcoma 8 105522 -NCIT:C5387 Leiomyosarcoma of Vessels 8 105523 -NCIT:C5372 Inferior Vena Cava Leiomyosarcoma 9 105524 -NCIT:C5373 Pulmonary Artery Leiomyosarcoma 9 105525 -NCIT:C5374 Pulmonary Vein Leiomyosarcoma 9 105526 -NCIT:C5388 Renal Vein Leiomyosarcoma 9 105527 -NCIT:C6745 Superior Vena Cava Leiomyosarcoma 9 105528 -NCIT:C5526 Prostate Leiomyosarcoma 8 105529 -NCIT:C5667 Lung Leiomyosarcoma 8 105530 -NCIT:C6022 Laryngeal Leiomyosarcoma 8 105531 -NCIT:C6183 Kidney Leiomyosarcoma 8 105532 -NCIT:C6326 Vaginal Leiomyosarcoma 8 105533 -NCIT:C6340 Uterine Corpus Leiomyosarcoma 8 105534 -NCIT:C139870 Uterine Corpus Leiomyosarcoma by AJCC v8 Stage 9 105535 -NCIT:C139871 Stage I Uterine Corpus Leiomyosarcoma AJCC v8 10 105536 -NCIT:C139872 Stage IA Uterine Corpus Leiomyosarcoma AJCC v8 11 105537 -NCIT:C139873 Stage IB Uterine Corpus Leiomyosarcoma AJCC v8 11 105538 -NCIT:C139874 Stage II Uterine Corpus Leiomyosarcoma AJCC v8 10 105539 -NCIT:C139875 Stage III Uterine Corpus Leiomyosarcoma AJCC v8 10 105540 -NCIT:C139876 Stage IIIA Uterine Corpus Leiomyosarcoma AJCC v8 11 105541 -NCIT:C139877 Stage IIIB Uterine Corpus Leiomyosarcoma AJCC v8 11 105542 -NCIT:C139878 Stage IIIC Uterine Corpus Leiomyosarcoma AJCC v8 11 105543 -NCIT:C139879 Stage IV Uterine Corpus Leiomyosarcoma AJCC v8 10 105544 -NCIT:C139880 Stage IVA Uterine Corpus Leiomyosarcoma AJCC v8 11 105545 -NCIT:C139881 Stage IVB Uterine Corpus Leiomyosarcoma AJCC v8 11 105546 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 9 105547 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 9 105548 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 10 105549 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 9 105550 -NCIT:C40174 Uterine Corpus Epithelioid Leiomyosarcoma 9 105551 -NCIT:C40175 Uterine Corpus Myxoid Leiomyosarcoma 9 105552 -NCIT:C6619 Mediastinal Leiomyosarcoma 8 105553 -NCIT:C6999 Central Nervous System Leiomyosarcoma 8 105554 -NCIT:C7154 Bone Leiomyosarcoma 8 105555 -NCIT:C7810 Adult Leiomyosarcoma 8 105556 -NCIT:C8093 Childhood Leiomyosarcoma 8 105557 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 9 105558 -NCIT:C8813 Metastatic Leiomyosarcoma 8 105559 -NCIT:C160917 Locally Advanced Leiomyosarcoma 9 105560 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 10 105561 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 11 105562 -NCIT:C165780 Advanced Leiomyosarcoma 9 105563 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 10 105564 -NCIT:C168725 Metastatic Soft Tissue Leiomyosarcoma 9 105565 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 10 105566 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 10 105567 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 11 105568 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 10 105569 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 11 105570 -NCIT:C8814 Localized Leiomyosarcoma 8 105571 -NCIT:C8815 Recurrent Leiomyosarcoma 8 105572 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 9 105573 -NCIT:C9389 Well Differentiated Leiomyosarcoma 8 105574 -NCIT:C9390 Leiomyosarcoma NCI Grade 3 8 105575 -NCIT:C9391 Leiomyosarcoma NCI Grade 2 8 105576 -NCIT:C9428 Conventional Leiomyosarcoma 8 105577 -NCIT:C6516 Malignant Skeletal Muscle Neoplasm 6 105578 -NCIT:C3359 Rhabdomyosarcoma 7 105579 -NCIT:C121654 Spindle Cell/Sclerosing Rhabdomyosarcoma 8 105580 -NCIT:C121655 Sclerosing Rhabdomyosarcoma 9 105581 -NCIT:C178235 MYOD1-Mutant Spindle Cell/Sclerosing Rhabdomyosarcoma 9 105582 -NCIT:C6519 Spindle Cell Rhabdomyosarcoma 9 105583 -NCIT:C123397 Childhood Spindle Cell Rhabdomyosarcoma 10 105584 -NCIT:C178232 Congenital/Infantile Spindle Cell Rhabdomyosarcoma with VGLL2/NCOA2/CITED2 Rearrangements 10 105585 -NCIT:C178236 Intraosseous Spindle Cell Rhabdomyosarcoma with TFCP2/NCOA2 Rearrangements 10 105586 -NCIT:C123735 Fusion-Positive Rhabdomyosarcoma 8 105587 -NCIT:C123731 Fusion-Positive Alveolar Rhabdomyosarcoma 9 105588 -NCIT:C123736 Fusion-Negative Rhabdomyosarcoma 8 105589 -NCIT:C123732 Fusion-Negative Alveolar Rhabdomyosarcoma 9 105590 -NCIT:C127058 Uterine Corpus Rhabdomyosarcoma 8 105591 -NCIT:C128048 Cervical Rhabdomyosarcoma 8 105592 -NCIT:C128080 Vaginal Rhabdomyosarcoma 8 105593 -NCIT:C40268 Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 9 105594 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 105595 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 105596 -NCIT:C142851 Refractory Rhabdomyosarcoma 8 105597 -NCIT:C142880 Refractory Alveolar Rhabdomyosarcoma 9 105598 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 9 105599 -NCIT:C151981 Pelvic Rhabdomyosarcoma 8 105600 -NCIT:C151982 Abdominal Rhabdomyosarcoma 8 105601 -NCIT:C151983 Unresectable Rhabdomyosarcoma 8 105602 -NCIT:C159206 Kidney Rhabdomyosarcoma 8 105603 -NCIT:C159667 Bladder Rhabdomyosarcoma 8 105604 -NCIT:C159668 Bladder Embryonal Rhabdomyosarcoma 9 105605 -NCIT:C159669 Bladder Alveolar Rhabdomyosarcoma 9 105606 -NCIT:C162497 Paratesticular Rhabdomyosarcoma 8 105607 -NCIT:C162588 Penile Rhabdomyosarcoma 8 105608 -NCIT:C166414 Metastatic Rhabdomyosarcoma 8 105609 -NCIT:C166415 Locally Advanced Rhabdomyosarcoma 9 105610 -NCIT:C183250 Metastatic Embryonal Rhabdomyosarcoma 9 105611 -NCIT:C172952 Digestive System Rhabdomyosarcoma 8 105612 -NCIT:C5610 Anal Rhabdomyosarcoma 9 105613 -NCIT:C5627 Rectal Rhabdomyosarcoma 9 105614 -NCIT:C5834 Liver Rhabdomyosarcoma 9 105615 -NCIT:C5839 Gallbladder Rhabdomyosarcoma 9 105616 -NCIT:C5860 Extrahepatic Bile Duct Rhabdomyosarcoma 9 105617 -NCIT:C5847 Extrahepatic Bile Duct Embryonal Rhabdomyosarcoma 10 105618 -NCIT:C95623 Esophageal Rhabdomyosarcoma 9 105619 -NCIT:C173124 Sinonasal Rhabdomyosarcoma 8 105620 -NCIT:C175501 Conjunctival Rhabdomyosarcoma 8 105621 -NCIT:C181201 Lung Rhabdomyosarcoma 8 105622 -NCIT:C181944 Vulvar Rhabdomyosarcoma 8 105623 -NCIT:C128273 Vulvar Alveolar Rhabdomyosarcoma 9 105624 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 9 105625 -NCIT:C188071 Retroperitoneal Rhabdomyosarcoma 8 105626 -NCIT:C3749 Alveolar Rhabdomyosarcoma 8 105627 -NCIT:C123731 Fusion-Positive Alveolar Rhabdomyosarcoma 9 105628 -NCIT:C123732 Fusion-Negative Alveolar Rhabdomyosarcoma 9 105629 -NCIT:C128273 Vulvar Alveolar Rhabdomyosarcoma 9 105630 -NCIT:C142880 Refractory Alveolar Rhabdomyosarcoma 9 105631 -NCIT:C142881 Recurrent Alveolar Rhabdomyosarcoma 9 105632 -NCIT:C159669 Bladder Alveolar Rhabdomyosarcoma 9 105633 -NCIT:C188070 Prostate Alveolar Rhabdomyosarcoma 9 105634 -NCIT:C27492 Conventional Alveolar Rhabdomyosarcoma 9 105635 -NCIT:C27493 Solid Alveolar Rhabdomyosarcoma 9 105636 -NCIT:C6247 Orbit Alveolar Rhabdomyosarcoma 9 105637 -NCIT:C7958 Childhood Alveolar Rhabdomyosarcoma 9 105638 -NCIT:C4258 Pleomorphic Rhabdomyosarcoma 8 105639 -NCIT:C27369 Adult Pleomorphic Rhabdomyosarcoma 9 105640 -NCIT:C7959 Childhood Pleomorphic Rhabdomyosarcoma 9 105641 -NCIT:C4259 Rhabdomyosarcoma with Mixed Embryonal and Alveolar Features 8 105642 -NCIT:C7960 Childhood Rhabdomyosarcoma with Mixed Embryonal and Alveolar Features 9 105643 -NCIT:C4543 Orbit Rhabdomyosarcoma 8 105644 -NCIT:C6246 Orbit Embryonal Rhabdomyosarcoma 9 105645 -NCIT:C6247 Orbit Alveolar Rhabdomyosarcoma 9 105646 -NCIT:C45759 Cardiac Rhabdomyosarcoma 8 105647 -NCIT:C5190 Breast Rhabdomyosarcoma 8 105648 -NCIT:C5236 Ovarian Rhabdomyosarcoma 8 105649 -NCIT:C5464 Central Nervous System Rhabdomyosarcoma 8 105650 -NCIT:C5522 Prostate Rhabdomyosarcoma 8 105651 -NCIT:C188070 Prostate Alveolar Rhabdomyosarcoma 9 105652 -NCIT:C5525 Prostate Embryonal Rhabdomyosarcoma 9 105653 -NCIT:C6378 Testicular Rhabdomyosarcoma 8 105654 -NCIT:C6617 Mediastinal Rhabdomyosarcoma 8 105655 -NCIT:C7705 Childhood Rhabdomyosarcoma 8 105656 -NCIT:C123397 Childhood Spindle Cell Rhabdomyosarcoma 9 105657 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 9 105658 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 9 105659 -NCIT:C7957 Childhood Embryonal Rhabdomyosarcoma 9 105660 -NCIT:C35574 Childhood Botryoid-Type Embryonal Rhabdomyosarcoma 10 105661 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 11 105662 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 11 105663 -NCIT:C7958 Childhood Alveolar Rhabdomyosarcoma 9 105664 -NCIT:C7959 Childhood Pleomorphic Rhabdomyosarcoma 9 105665 -NCIT:C7960 Childhood Rhabdomyosarcoma with Mixed Embryonal and Alveolar Features 9 105666 -NCIT:C8065 Localized Childhood Rhabdomyosarcoma 9 105667 -NCIT:C8824 Recurrent Rhabdomyosarcoma 8 105668 -NCIT:C142881 Recurrent Alveolar Rhabdomyosarcoma 9 105669 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 9 105670 -NCIT:C8971 Embryonal Rhabdomyosarcoma 8 105671 -NCIT:C159668 Bladder Embryonal Rhabdomyosarcoma 9 105672 -NCIT:C183250 Metastatic Embryonal Rhabdomyosarcoma 9 105673 -NCIT:C188115 Middle Ear Embryonal Rhabdomyosarcoma 9 105674 -NCIT:C49204 Anaplastic Embryonal Rhabdomyosarcoma 9 105675 -NCIT:C5525 Prostate Embryonal Rhabdomyosarcoma 9 105676 -NCIT:C5847 Extrahepatic Bile Duct Embryonal Rhabdomyosarcoma 9 105677 -NCIT:C6246 Orbit Embryonal Rhabdomyosarcoma 9 105678 -NCIT:C7957 Childhood Embryonal Rhabdomyosarcoma 9 105679 -NCIT:C35574 Childhood Botryoid-Type Embryonal Rhabdomyosarcoma 10 105680 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 11 105681 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 11 105682 -NCIT:C9150 Botryoid-Type Embryonal Rhabdomyosarcoma 9 105683 -NCIT:C35574 Childhood Botryoid-Type Embryonal Rhabdomyosarcoma 10 105684 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 11 105685 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 11 105686 -NCIT:C36099 Adult Botryoid-Type Embryonal Rhabdomyosarcoma 10 105687 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 11 105688 -NCIT:C40268 Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 105689 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 11 105690 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 11 105691 -NCIT:C9130 Adult Rhabdomyosarcoma 8 105692 -NCIT:C27369 Adult Pleomorphic Rhabdomyosarcoma 9 105693 -NCIT:C36099 Adult Botryoid-Type Embryonal Rhabdomyosarcoma 9 105694 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 105695 -NCIT:C6514 Skeletal Muscle Neoplasm 5 105696 -NCIT:C6515 Benign Skeletal Muscle Neoplasm 6 105697 -NCIT:C49166 Extracardiac Rhabdomyoma 7 105698 -NCIT:C162496 Paratesticular Rhabdomyoma 8 105699 -NCIT:C4260 Fetal Rhabdomyoma 8 105700 -NCIT:C27480 Classic Rhabdomyoma 9 105701 -NCIT:C6518 Intermediate Rhabdomyoma 9 105702 -NCIT:C4261 Adult Extracardiac Rhabdomyoma 8 105703 -NCIT:C6517 Genital Rhabdomyoma 8 105704 -NCIT:C181942 Vulvar Rhabdomyoma 9 105705 -NCIT:C40266 Cervical Rhabdomyoma 9 105706 -NCIT:C6372 Vaginal Rhabdomyoma 9 105707 -NCIT:C6600 Mediastinal Rhabdomyoma 8 105708 -NCIT:C7000 Central Nervous System Rhabdomyoma 8 105709 -NCIT:C6516 Malignant Skeletal Muscle Neoplasm 6 105710 -NCIT:C3359 Rhabdomyosarcoma 7 105711 -NCIT:C121654 Spindle Cell/Sclerosing Rhabdomyosarcoma 8 105712 -NCIT:C121655 Sclerosing Rhabdomyosarcoma 9 105713 -NCIT:C178235 MYOD1-Mutant Spindle Cell/Sclerosing Rhabdomyosarcoma 9 105714 -NCIT:C6519 Spindle Cell Rhabdomyosarcoma 9 105715 -NCIT:C123397 Childhood Spindle Cell Rhabdomyosarcoma 10 105716 -NCIT:C178232 Congenital/Infantile Spindle Cell Rhabdomyosarcoma with VGLL2/NCOA2/CITED2 Rearrangements 10 105717 -NCIT:C178236 Intraosseous Spindle Cell Rhabdomyosarcoma with TFCP2/NCOA2 Rearrangements 10 105718 -NCIT:C123735 Fusion-Positive Rhabdomyosarcoma 8 105719 -NCIT:C123731 Fusion-Positive Alveolar Rhabdomyosarcoma 9 105720 -NCIT:C123736 Fusion-Negative Rhabdomyosarcoma 8 105721 -NCIT:C123732 Fusion-Negative Alveolar Rhabdomyosarcoma 9 105722 -NCIT:C127058 Uterine Corpus Rhabdomyosarcoma 8 105723 -NCIT:C128048 Cervical Rhabdomyosarcoma 8 105724 -NCIT:C128080 Vaginal Rhabdomyosarcoma 8 105725 -NCIT:C40268 Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 9 105726 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 105727 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 105728 -NCIT:C142851 Refractory Rhabdomyosarcoma 8 105729 -NCIT:C142880 Refractory Alveolar Rhabdomyosarcoma 9 105730 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 9 105731 -NCIT:C151981 Pelvic Rhabdomyosarcoma 8 105732 -NCIT:C151982 Abdominal Rhabdomyosarcoma 8 105733 -NCIT:C151983 Unresectable Rhabdomyosarcoma 8 105734 -NCIT:C159206 Kidney Rhabdomyosarcoma 8 105735 -NCIT:C159667 Bladder Rhabdomyosarcoma 8 105736 -NCIT:C159668 Bladder Embryonal Rhabdomyosarcoma 9 105737 -NCIT:C159669 Bladder Alveolar Rhabdomyosarcoma 9 105738 -NCIT:C162497 Paratesticular Rhabdomyosarcoma 8 105739 -NCIT:C162588 Penile Rhabdomyosarcoma 8 105740 -NCIT:C166414 Metastatic Rhabdomyosarcoma 8 105741 -NCIT:C166415 Locally Advanced Rhabdomyosarcoma 9 105742 -NCIT:C183250 Metastatic Embryonal Rhabdomyosarcoma 9 105743 -NCIT:C172952 Digestive System Rhabdomyosarcoma 8 105744 -NCIT:C5610 Anal Rhabdomyosarcoma 9 105745 -NCIT:C5627 Rectal Rhabdomyosarcoma 9 105746 -NCIT:C5834 Liver Rhabdomyosarcoma 9 105747 -NCIT:C5839 Gallbladder Rhabdomyosarcoma 9 105748 -NCIT:C5860 Extrahepatic Bile Duct Rhabdomyosarcoma 9 105749 -NCIT:C5847 Extrahepatic Bile Duct Embryonal Rhabdomyosarcoma 10 105750 -NCIT:C95623 Esophageal Rhabdomyosarcoma 9 105751 -NCIT:C173124 Sinonasal Rhabdomyosarcoma 8 105752 -NCIT:C175501 Conjunctival Rhabdomyosarcoma 8 105753 -NCIT:C181201 Lung Rhabdomyosarcoma 8 105754 -NCIT:C181944 Vulvar Rhabdomyosarcoma 8 105755 -NCIT:C128273 Vulvar Alveolar Rhabdomyosarcoma 9 105756 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 9 105757 -NCIT:C188071 Retroperitoneal Rhabdomyosarcoma 8 105758 -NCIT:C3749 Alveolar Rhabdomyosarcoma 8 105759 -NCIT:C123731 Fusion-Positive Alveolar Rhabdomyosarcoma 9 105760 -NCIT:C123732 Fusion-Negative Alveolar Rhabdomyosarcoma 9 105761 -NCIT:C128273 Vulvar Alveolar Rhabdomyosarcoma 9 105762 -NCIT:C142880 Refractory Alveolar Rhabdomyosarcoma 9 105763 -NCIT:C142881 Recurrent Alveolar Rhabdomyosarcoma 9 105764 -NCIT:C159669 Bladder Alveolar Rhabdomyosarcoma 9 105765 -NCIT:C188070 Prostate Alveolar Rhabdomyosarcoma 9 105766 -NCIT:C27492 Conventional Alveolar Rhabdomyosarcoma 9 105767 -NCIT:C27493 Solid Alveolar Rhabdomyosarcoma 9 105768 -NCIT:C6247 Orbit Alveolar Rhabdomyosarcoma 9 105769 -NCIT:C7958 Childhood Alveolar Rhabdomyosarcoma 9 105770 -NCIT:C4258 Pleomorphic Rhabdomyosarcoma 8 105771 -NCIT:C27369 Adult Pleomorphic Rhabdomyosarcoma 9 105772 -NCIT:C7959 Childhood Pleomorphic Rhabdomyosarcoma 9 105773 -NCIT:C4259 Rhabdomyosarcoma with Mixed Embryonal and Alveolar Features 8 105774 -NCIT:C7960 Childhood Rhabdomyosarcoma with Mixed Embryonal and Alveolar Features 9 105775 -NCIT:C4543 Orbit Rhabdomyosarcoma 8 105776 -NCIT:C6246 Orbit Embryonal Rhabdomyosarcoma 9 105777 -NCIT:C6247 Orbit Alveolar Rhabdomyosarcoma 9 105778 -NCIT:C45759 Cardiac Rhabdomyosarcoma 8 105779 -NCIT:C5190 Breast Rhabdomyosarcoma 8 105780 -NCIT:C5236 Ovarian Rhabdomyosarcoma 8 105781 -NCIT:C5464 Central Nervous System Rhabdomyosarcoma 8 105782 -NCIT:C5522 Prostate Rhabdomyosarcoma 8 105783 -NCIT:C188070 Prostate Alveolar Rhabdomyosarcoma 9 105784 -NCIT:C5525 Prostate Embryonal Rhabdomyosarcoma 9 105785 -NCIT:C6378 Testicular Rhabdomyosarcoma 8 105786 -NCIT:C6617 Mediastinal Rhabdomyosarcoma 8 105787 -NCIT:C7705 Childhood Rhabdomyosarcoma 8 105788 -NCIT:C123397 Childhood Spindle Cell Rhabdomyosarcoma 9 105789 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 9 105790 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 9 105791 -NCIT:C7957 Childhood Embryonal Rhabdomyosarcoma 9 105792 -NCIT:C35574 Childhood Botryoid-Type Embryonal Rhabdomyosarcoma 10 105793 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 11 105794 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 11 105795 -NCIT:C7958 Childhood Alveolar Rhabdomyosarcoma 9 105796 -NCIT:C7959 Childhood Pleomorphic Rhabdomyosarcoma 9 105797 -NCIT:C7960 Childhood Rhabdomyosarcoma with Mixed Embryonal and Alveolar Features 9 105798 -NCIT:C8065 Localized Childhood Rhabdomyosarcoma 9 105799 -NCIT:C8824 Recurrent Rhabdomyosarcoma 8 105800 -NCIT:C142881 Recurrent Alveolar Rhabdomyosarcoma 9 105801 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 9 105802 -NCIT:C8971 Embryonal Rhabdomyosarcoma 8 105803 -NCIT:C159668 Bladder Embryonal Rhabdomyosarcoma 9 105804 -NCIT:C183250 Metastatic Embryonal Rhabdomyosarcoma 9 105805 -NCIT:C188115 Middle Ear Embryonal Rhabdomyosarcoma 9 105806 -NCIT:C49204 Anaplastic Embryonal Rhabdomyosarcoma 9 105807 -NCIT:C5525 Prostate Embryonal Rhabdomyosarcoma 9 105808 -NCIT:C5847 Extrahepatic Bile Duct Embryonal Rhabdomyosarcoma 9 105809 -NCIT:C6246 Orbit Embryonal Rhabdomyosarcoma 9 105810 -NCIT:C7957 Childhood Embryonal Rhabdomyosarcoma 9 105811 -NCIT:C35574 Childhood Botryoid-Type Embryonal Rhabdomyosarcoma 10 105812 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 11 105813 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 11 105814 -NCIT:C9150 Botryoid-Type Embryonal Rhabdomyosarcoma 9 105815 -NCIT:C35574 Childhood Botryoid-Type Embryonal Rhabdomyosarcoma 10 105816 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 11 105817 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 11 105818 -NCIT:C36099 Adult Botryoid-Type Embryonal Rhabdomyosarcoma 10 105819 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 11 105820 -NCIT:C40268 Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 105821 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 11 105822 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 11 105823 -NCIT:C9130 Adult Rhabdomyosarcoma 8 105824 -NCIT:C27369 Adult Pleomorphic Rhabdomyosarcoma 9 105825 -NCIT:C36099 Adult Botryoid-Type Embryonal Rhabdomyosarcoma 9 105826 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 105827 -NCIT:C9343 Bone Neoplasm 4 105828 -NCIT:C121926 Intermediate Bone Neoplasm 5 105829 -NCIT:C121931 Intermediate Osteoclastic Giant Cell-Rich Tumor of Bone 6 105830 -NCIT:C121932 Giant Cell Tumor of Bone 7 105831 -NCIT:C189030 Childhood Giant Cell Tumor of Bone 8 105832 -NCIT:C178599 Fibrocartilaginous Mesenchymoma 6 105833 -NCIT:C66796 Aggressive Osteoblastoma 6 105834 -NCIT:C66799 Metastasizing Chondroblastoma 6 105835 -NCIT:C173845 Maxillofacial Neoplasm 5 105836 -NCIT:C173841 Maxillofacial Sarcoma 6 105837 -NCIT:C173842 Maxillofacial Chondrosarcoma 7 105838 -NCIT:C173843 Maxillofacial Mesenchymal Chondrosarcoma 8 105839 -NCIT:C173844 Maxillofacial Osteosarcoma 7 105840 -NCIT:C173892 Benign Maxillofacial Neoplasm 6 105841 -NCIT:C173893 Maxillofacial Chondroma 7 105842 -NCIT:C173894 Maxillofacial Osteoma 7 105843 -NCIT:C173895 Maxillofacial Chondroblastoma 7 105844 -NCIT:C173897 Maxillofacial Chondromyxoid Fibroma 7 105845 -NCIT:C173898 Maxillofacial Osteoid Osteoma 7 105846 -NCIT:C173899 Maxillofacial Osteoblastoma 7 105847 -NCIT:C173900 Maxillofacial Desmoplastic Fibroma 7 105848 -NCIT:C178607 Bone Langerhans Cell Histiocytosis 5 105849 -NCIT:C178609 Bone Erdheim-Chester Disease 5 105850 -NCIT:C189015 Childhood Bone Neoplasm 5 105851 -NCIT:C189030 Childhood Giant Cell Tumor of Bone 6 105852 -NCIT:C190577 Childhood Benign Bone Neoplasm 6 105853 -NCIT:C189019 Childhood Subungual Exostosis 7 105854 -NCIT:C189020 Childhood Osteoblastoma 7 105855 -NCIT:C189021 Childhood Osteoid Osteoma 7 105856 -NCIT:C189023 Childhood Chondroblastoma 7 105857 -NCIT:C189024 Childhood Osteochondroma 7 105858 -NCIT:C189025 Childhood Chondromyxoid Fibroma 7 105859 -NCIT:C189028 Childhood Bone Hemangioma 7 105860 -NCIT:C189029 Childhood Aneurysmal Bone Cyst 7 105861 -NCIT:C189031 Childhood Non-Ossifying Fibroma 7 105862 -NCIT:C189033 Childhood Fibrous Dysplasia 7 105863 -NCIT:C190578 Childhood Malignant Bone Neoplasm 6 105864 -NCIT:C189017 Childhood Bone Sarcoma 7 105865 -NCIT:C114750 Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 8 105866 -NCIT:C115368 Recurrent Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 9 105867 -NCIT:C115998 Localized Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 9 105868 -NCIT:C189022 Childhood Bone Osteosarcoma 8 105869 -NCIT:C123398 Childhood Periosteal Osteosarcoma 9 105870 -NCIT:C6589 Childhood Parosteal Osteosarcoma 9 105871 -NCIT:C6590 Childhood Conventional Osteosarcoma 9 105872 -NCIT:C189026 Childhood Primary Central Chondrosarcoma 8 105873 -NCIT:C189032 Childhood Chordoma 7 105874 -NCIT:C3738 Osteoclastic Giant Cell-Rich Tumor of Bone 5 105875 -NCIT:C121931 Intermediate Osteoclastic Giant Cell-Rich Tumor of Bone 6 105876 -NCIT:C121932 Giant Cell Tumor of Bone 7 105877 -NCIT:C189030 Childhood Giant Cell Tumor of Bone 8 105878 -NCIT:C121933 Malignant Osteoclastic Giant Cell-Rich Tumor of Bone 6 105879 -NCIT:C4304 Malignancy in Giant Cell Tumor of Bone 7 105880 -NCIT:C27477 Benign Osteoclastic Giant Cell-Rich Tumor of Bone 6 105881 -NCIT:C121893 Giant Cell Lesion of Small Bones 7 105882 -NCIT:C4016 Malignant Bone Neoplasm 5 105883 -NCIT:C121933 Malignant Osteoclastic Giant Cell-Rich Tumor of Bone 6 105884 -NCIT:C4304 Malignancy in Giant Cell Tumor of Bone 7 105885 -NCIT:C121941 Bone Epithelioid Hemangioendothelioma 6 105886 -NCIT:C136610 Bone Cancer by AJCC v7 Stage 6 105887 -NCIT:C136632 Bone Sarcoma by AJCC v7 Stage 7 105888 -NCIT:C136633 Osteosarcoma by AJCC v7 Stage 8 105889 -NCIT:C6612 Stage III Osteosarcoma AJCC v7 9 105890 -NCIT:C6701 Stage IV Osteosarcoma AJCC v7 9 105891 -NCIT:C6702 Stage IVA Osteosarcoma AJCC v7 10 105892 -NCIT:C6703 Stage IVB Osteosarcoma AJCC v7 10 105893 -NCIT:C6709 Stage I Osteosarcoma AJCC v7 9 105894 -NCIT:C6607 Stage IA Osteosarcoma AJCC v7 10 105895 -NCIT:C6609 Stage IB Osteosarcoma AJCC v7 10 105896 -NCIT:C6710 Stage II Osteosarcoma AJCC v7 9 105897 -NCIT:C6610 Stage IIA Osteosarcoma AJCC v7 10 105898 -NCIT:C6611 Stage IIB Osteosarcoma AJCC v7 10 105899 -NCIT:C6468 Stage III Bone Sarcoma AJCC v7 8 105900 -NCIT:C6612 Stage III Osteosarcoma AJCC v7 9 105901 -NCIT:C6704 Stage I Bone Sarcoma AJCC v7 8 105902 -NCIT:C6464 Stage IA Bone Sarcoma AJCC v7 9 105903 -NCIT:C6607 Stage IA Osteosarcoma AJCC v7 10 105904 -NCIT:C6465 Stage IB Bone Sarcoma AJCC v7 9 105905 -NCIT:C6609 Stage IB Osteosarcoma AJCC v7 10 105906 -NCIT:C6709 Stage I Osteosarcoma AJCC v7 9 105907 -NCIT:C6607 Stage IA Osteosarcoma AJCC v7 10 105908 -NCIT:C6609 Stage IB Osteosarcoma AJCC v7 10 105909 -NCIT:C6705 Stage II Bone Sarcoma AJCC v7 8 105910 -NCIT:C6466 Stage IIB Bone Sarcoma AJCC v7 9 105911 -NCIT:C6611 Stage IIB Osteosarcoma AJCC v7 10 105912 -NCIT:C6467 Stage IIA Bone Sarcoma AJCC v7 9 105913 -NCIT:C6610 Stage IIA Osteosarcoma AJCC v7 10 105914 -NCIT:C6710 Stage II Osteosarcoma AJCC v7 9 105915 -NCIT:C6610 Stage IIA Osteosarcoma AJCC v7 10 105916 -NCIT:C6611 Stage IIB Osteosarcoma AJCC v7 10 105917 -NCIT:C6706 Stage IV Bone Sarcoma AJCC v7 8 105918 -NCIT:C6701 Stage IV Osteosarcoma AJCC v7 9 105919 -NCIT:C6702 Stage IVA Osteosarcoma AJCC v7 10 105920 -NCIT:C6703 Stage IVB Osteosarcoma AJCC v7 10 105921 -NCIT:C6707 Stage IVA Bone Sarcoma AJCC v7 9 105922 -NCIT:C6702 Stage IVA Osteosarcoma AJCC v7 10 105923 -NCIT:C6708 Stage IVB Bone Sarcoma AJCC v7 9 105924 -NCIT:C6703 Stage IVB Osteosarcoma AJCC v7 10 105925 -NCIT:C87178 Stage I Bone Cancer AJCC v7 7 105926 -NCIT:C6704 Stage I Bone Sarcoma AJCC v7 8 105927 -NCIT:C6464 Stage IA Bone Sarcoma AJCC v7 9 105928 -NCIT:C6607 Stage IA Osteosarcoma AJCC v7 10 105929 -NCIT:C6465 Stage IB Bone Sarcoma AJCC v7 9 105930 -NCIT:C6609 Stage IB Osteosarcoma AJCC v7 10 105931 -NCIT:C6709 Stage I Osteosarcoma AJCC v7 9 105932 -NCIT:C6607 Stage IA Osteosarcoma AJCC v7 10 105933 -NCIT:C6609 Stage IB Osteosarcoma AJCC v7 10 105934 -NCIT:C87179 Stage IA Bone Cancer AJCC v7 8 105935 -NCIT:C6464 Stage IA Bone Sarcoma AJCC v7 9 105936 -NCIT:C6607 Stage IA Osteosarcoma AJCC v7 10 105937 -NCIT:C87180 Stage IB Bone Cancer AJCC v7 8 105938 -NCIT:C6465 Stage IB Bone Sarcoma AJCC v7 9 105939 -NCIT:C6609 Stage IB Osteosarcoma AJCC v7 10 105940 -NCIT:C87181 Stage II Bone Cancer AJCC v7 7 105941 -NCIT:C6705 Stage II Bone Sarcoma AJCC v7 8 105942 -NCIT:C6466 Stage IIB Bone Sarcoma AJCC v7 9 105943 -NCIT:C6611 Stage IIB Osteosarcoma AJCC v7 10 105944 -NCIT:C6467 Stage IIA Bone Sarcoma AJCC v7 9 105945 -NCIT:C6610 Stage IIA Osteosarcoma AJCC v7 10 105946 -NCIT:C6710 Stage II Osteosarcoma AJCC v7 9 105947 -NCIT:C6610 Stage IIA Osteosarcoma AJCC v7 10 105948 -NCIT:C6611 Stage IIB Osteosarcoma AJCC v7 10 105949 -NCIT:C87182 Stage IIA Bone Cancer AJCC v7 8 105950 -NCIT:C6467 Stage IIA Bone Sarcoma AJCC v7 9 105951 -NCIT:C6610 Stage IIA Osteosarcoma AJCC v7 10 105952 -NCIT:C87183 Stage IIB Bone Cancer AJCC v7 8 105953 -NCIT:C6466 Stage IIB Bone Sarcoma AJCC v7 9 105954 -NCIT:C6611 Stage IIB Osteosarcoma AJCC v7 10 105955 -NCIT:C87184 Stage III Bone Cancer AJCC v7 7 105956 -NCIT:C6468 Stage III Bone Sarcoma AJCC v7 8 105957 -NCIT:C6612 Stage III Osteosarcoma AJCC v7 9 105958 -NCIT:C87185 Stage IV Bone Cancer AJCC v7 7 105959 -NCIT:C6706 Stage IV Bone Sarcoma AJCC v7 8 105960 -NCIT:C6701 Stage IV Osteosarcoma AJCC v7 9 105961 -NCIT:C6702 Stage IVA Osteosarcoma AJCC v7 10 105962 -NCIT:C6703 Stage IVB Osteosarcoma AJCC v7 10 105963 -NCIT:C6707 Stage IVA Bone Sarcoma AJCC v7 9 105964 -NCIT:C6702 Stage IVA Osteosarcoma AJCC v7 10 105965 -NCIT:C6708 Stage IVB Bone Sarcoma AJCC v7 9 105966 -NCIT:C6703 Stage IVB Osteosarcoma AJCC v7 10 105967 -NCIT:C87186 Stage IVA Bone Cancer AJCC v7 8 105968 -NCIT:C6707 Stage IVA Bone Sarcoma AJCC v7 9 105969 -NCIT:C6702 Stage IVA Osteosarcoma AJCC v7 10 105970 -NCIT:C87187 Stage IVB Bone Cancer AJCC v7 8 105971 -NCIT:C6708 Stage IVB Bone Sarcoma AJCC v7 9 105972 -NCIT:C6703 Stage IVB Osteosarcoma AJCC v7 10 105973 -NCIT:C136612 Bone Cancer by AJCC v8 Stage 6 105974 -NCIT:C136613 Stage I Bone Cancer AJCC v8 7 105975 -NCIT:C136614 Stage IA Bone Cancer AJCC v8 8 105976 -NCIT:C136615 Stage IB Bone Cancer AJCC v8 8 105977 -NCIT:C136616 Stage II Bone Cancer AJCC v8 7 105978 -NCIT:C136617 Stage IIA Bone Cancer AJCC v8 8 105979 -NCIT:C136618 Stage IIB Bone Cancer AJCC v8 8 105980 -NCIT:C136619 Stage III Bone Cancer AJCC v8 7 105981 -NCIT:C136620 Stage IV Bone Cancer AJCC v8 7 105982 -NCIT:C136621 Stage IVA Bone Cancer AJCC v8 8 105983 -NCIT:C136622 Stage IVB Bone Cancer AJCC v8 8 105984 -NCIT:C150524 Recurrent Malignant Bone Neoplasm 6 105985 -NCIT:C115351 Recurrent Adult Undifferentiated High Grade Pleomorphic Sarcoma of Bone 7 105986 -NCIT:C115368 Recurrent Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 7 105987 -NCIT:C155973 Recurrent Chordoma 7 105988 -NCIT:C162728 Recurrent Dedifferentiated Chordoma 8 105989 -NCIT:C185073 Locally Recurrent Chordoma 8 105990 -NCIT:C157681 Recurrent Primary Bone Lymphoma 7 105991 -NCIT:C27354 Recurrent Peripheral Primitive Neuroectodermal Tumor of Bone 7 105992 -NCIT:C6622 Recurrent Bone Ewing Sarcoma 7 105993 -NCIT:C150525 Refractory Malignant Bone Neoplasm 6 105994 -NCIT:C157682 Refractory Primary Bone Lymphoma 7 105995 -NCIT:C162721 Refractory Chordoma 7 105996 -NCIT:C162729 Refractory Dedifferentiated Chordoma 8 105997 -NCIT:C187448 Resectable Malignant Bone Neoplasm 6 105998 -NCIT:C190578 Childhood Malignant Bone Neoplasm 6 105999 -NCIT:C189017 Childhood Bone Sarcoma 7 106000 -NCIT:C114750 Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 8 106001 -NCIT:C115368 Recurrent Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 9 106002 -NCIT:C115998 Localized Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 9 106003 -NCIT:C189022 Childhood Bone Osteosarcoma 8 106004 -NCIT:C123398 Childhood Periosteal Osteosarcoma 9 106005 -NCIT:C6589 Childhood Parosteal Osteosarcoma 9 106006 -NCIT:C6590 Childhood Conventional Osteosarcoma 9 106007 -NCIT:C189026 Childhood Primary Central Chondrosarcoma 8 106008 -NCIT:C189032 Childhood Chordoma 7 106009 -NCIT:C2947 Chordoma 6 106010 -NCIT:C153323 Metastatic Chordoma 7 106011 -NCIT:C153324 Locally Advanced Chordoma 8 106012 -NCIT:C173333 Advanced Chordoma 8 106013 -NCIT:C153325 Unresectable Chordoma 7 106014 -NCIT:C155973 Recurrent Chordoma 7 106015 -NCIT:C162728 Recurrent Dedifferentiated Chordoma 8 106016 -NCIT:C185073 Locally Recurrent Chordoma 8 106017 -NCIT:C162721 Refractory Chordoma 7 106018 -NCIT:C162729 Refractory Dedifferentiated Chordoma 8 106019 -NCIT:C177898 Poorly Differentiated Chordoma 7 106020 -NCIT:C178563 Conventional Chordoma 7 106021 -NCIT:C6902 Chondroid Chordoma 8 106022 -NCIT:C155782 Sellar Chondroid Chordoma 9 106023 -NCIT:C5426 Clivus Chondroid Chordoma 9 106024 -NCIT:C189032 Childhood Chordoma 7 106025 -NCIT:C48876 Dedifferentiated Chordoma 7 106026 -NCIT:C155783 Sellar Dedifferentiated Chordoma 8 106027 -NCIT:C162728 Recurrent Dedifferentiated Chordoma 8 106028 -NCIT:C162729 Refractory Dedifferentiated Chordoma 8 106029 -NCIT:C5156 Spinal Chordoma 7 106030 -NCIT:C129927 Sacral Chordoma 8 106031 -NCIT:C177775 Thoracic Chordoma 8 106032 -NCIT:C5453 Skull Base Chordoma 7 106033 -NCIT:C155781 Sellar Chordoma 8 106034 -NCIT:C155782 Sellar Chondroid Chordoma 9 106035 -NCIT:C155783 Sellar Dedifferentiated Chordoma 9 106036 -NCIT:C5412 Clivus Chordoma 8 106037 -NCIT:C5426 Clivus Chondroid Chordoma 9 106038 -NCIT:C35178 Malignant Neoplasm of Lower Jaw Bone 6 106039 -NCIT:C3580 Metastatic Malignant Neoplasm in the Bone 6 106040 -NCIT:C185156 Plasma Cell Myeloma-Induced Bone Disease 7 106041 -NCIT:C36082 Metastatic Carcinoma in the Bone 7 106042 -NCIT:C36303 Breast Carcinoma Metastatic in the Bone 8 106043 -NCIT:C153226 Breast Carcinoma Metastatic in the Spine 9 106044 -NCIT:C36305 Lung Carcinoma Metastatic in the Bone 8 106045 -NCIT:C36308 Prostate Carcinoma Metastatic in the Bone 8 106046 -NCIT:C4881 Metastatic Malignant Neoplasm in the Spine 7 106047 -NCIT:C153226 Breast Carcinoma Metastatic in the Spine 8 106048 -NCIT:C35871 Ewing Sarcoma/Peripheral Primitive Neuroectodermal Tumor of Bone 6 106049 -NCIT:C4835 Ewing Sarcoma of Bone 7 106050 -NCIT:C6621 Metastatic Bone Ewing Sarcoma 8 106051 -NCIT:C6622 Recurrent Bone Ewing Sarcoma 8 106052 -NCIT:C6623 Localized Bone Ewing Sarcoma 8 106053 -NCIT:C8776 Peripheral Primitive Neuroectodermal Tumor of Bone 7 106054 -NCIT:C27353 Localized Peripheral Primitive Neuroectodermal Tumor of Bone 8 106055 -NCIT:C27354 Recurrent Peripheral Primitive Neuroectodermal Tumor of Bone 8 106056 -NCIT:C36074 Metastatic Peripheral Primitive Neuroectodermal Tumor of Bone 8 106057 -NCIT:C6620 Primary Bone Lymphoma 6 106058 -NCIT:C121930 Primary Bone Non-Hodgkin Lymphoma 7 106059 -NCIT:C173811 Primary Bone Diffuse Large B-Cell Lymphoma 8 106060 -NCIT:C157681 Recurrent Primary Bone Lymphoma 7 106061 -NCIT:C157682 Refractory Primary Bone Lymphoma 7 106062 -NCIT:C181207 Primary Bone Hodgkin Lymphoma 7 106063 -NCIT:C6724 Malignant Chest Wall Bone Neoplasm 6 106064 -NCIT:C7644 Adamantinoma 6 106065 -NCIT:C8461 Tibial Adamantinoma 7 106066 -NCIT:C7812 Solitary Plasmacytoma of Bone 6 106067 -NCIT:C185035 Multiple Solitary Plasmacytoma of Bone 7 106068 -NCIT:C9312 Bone Sarcoma 6 106069 -NCIT:C136632 Bone Sarcoma by AJCC v7 Stage 7 106070 -NCIT:C136633 Osteosarcoma by AJCC v7 Stage 8 106071 -NCIT:C6612 Stage III Osteosarcoma AJCC v7 9 106072 -NCIT:C6701 Stage IV Osteosarcoma AJCC v7 9 106073 -NCIT:C6702 Stage IVA Osteosarcoma AJCC v7 10 106074 -NCIT:C6703 Stage IVB Osteosarcoma AJCC v7 10 106075 -NCIT:C6709 Stage I Osteosarcoma AJCC v7 9 106076 -NCIT:C6607 Stage IA Osteosarcoma AJCC v7 10 106077 -NCIT:C6609 Stage IB Osteosarcoma AJCC v7 10 106078 -NCIT:C6710 Stage II Osteosarcoma AJCC v7 9 106079 -NCIT:C6610 Stage IIA Osteosarcoma AJCC v7 10 106080 -NCIT:C6611 Stage IIB Osteosarcoma AJCC v7 10 106081 -NCIT:C6468 Stage III Bone Sarcoma AJCC v7 8 106082 -NCIT:C6612 Stage III Osteosarcoma AJCC v7 9 106083 -NCIT:C6704 Stage I Bone Sarcoma AJCC v7 8 106084 -NCIT:C6464 Stage IA Bone Sarcoma AJCC v7 9 106085 -NCIT:C6607 Stage IA Osteosarcoma AJCC v7 10 106086 -NCIT:C6465 Stage IB Bone Sarcoma AJCC v7 9 106087 -NCIT:C6609 Stage IB Osteosarcoma AJCC v7 10 106088 -NCIT:C6709 Stage I Osteosarcoma AJCC v7 9 106089 -NCIT:C6607 Stage IA Osteosarcoma AJCC v7 10 106090 -NCIT:C6609 Stage IB Osteosarcoma AJCC v7 10 106091 -NCIT:C6705 Stage II Bone Sarcoma AJCC v7 8 106092 -NCIT:C6466 Stage IIB Bone Sarcoma AJCC v7 9 106093 -NCIT:C6611 Stage IIB Osteosarcoma AJCC v7 10 106094 -NCIT:C6467 Stage IIA Bone Sarcoma AJCC v7 9 106095 -NCIT:C6610 Stage IIA Osteosarcoma AJCC v7 10 106096 -NCIT:C6710 Stage II Osteosarcoma AJCC v7 9 106097 -NCIT:C6610 Stage IIA Osteosarcoma AJCC v7 10 106098 -NCIT:C6611 Stage IIB Osteosarcoma AJCC v7 10 106099 -NCIT:C6706 Stage IV Bone Sarcoma AJCC v7 8 106100 -NCIT:C6701 Stage IV Osteosarcoma AJCC v7 9 106101 -NCIT:C6702 Stage IVA Osteosarcoma AJCC v7 10 106102 -NCIT:C6703 Stage IVB Osteosarcoma AJCC v7 10 106103 -NCIT:C6707 Stage IVA Bone Sarcoma AJCC v7 9 106104 -NCIT:C6702 Stage IVA Osteosarcoma AJCC v7 10 106105 -NCIT:C6708 Stage IVB Bone Sarcoma AJCC v7 9 106106 -NCIT:C6703 Stage IVB Osteosarcoma AJCC v7 10 106107 -NCIT:C153072 Unresectable Bone Sarcoma 7 106108 -NCIT:C153475 Locally Advanced Unresectable Bone Sarcoma 8 106109 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 9 106110 -NCIT:C171070 Unresectable Primary Central Chondrosarcoma 8 106111 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 9 106112 -NCIT:C153073 Metastatic Bone Sarcoma 7 106113 -NCIT:C153070 Locally Advanced Bone Sarcoma 8 106114 -NCIT:C153475 Locally Advanced Unresectable Bone Sarcoma 9 106115 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 10 106116 -NCIT:C162762 Advanced Bone Sarcoma 8 106117 -NCIT:C171072 Metastatic Primary Central Chondrosarcoma 8 106118 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 9 106119 -NCIT:C38157 Metachronous Osteosarcoma 8 106120 -NCIT:C6621 Metastatic Bone Ewing Sarcoma 8 106121 -NCIT:C173841 Maxillofacial Sarcoma 7 106122 -NCIT:C173842 Maxillofacial Chondrosarcoma 8 106123 -NCIT:C173843 Maxillofacial Mesenchymal Chondrosarcoma 9 106124 -NCIT:C173844 Maxillofacial Osteosarcoma 8 106125 -NCIT:C188064 Bone Malignant Peripheral Nerve Sheath Tumor 7 106126 -NCIT:C189017 Childhood Bone Sarcoma 7 106127 -NCIT:C114750 Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 8 106128 -NCIT:C115368 Recurrent Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 9 106129 -NCIT:C115998 Localized Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 9 106130 -NCIT:C189022 Childhood Bone Osteosarcoma 8 106131 -NCIT:C123398 Childhood Periosteal Osteosarcoma 9 106132 -NCIT:C6589 Childhood Parosteal Osteosarcoma 9 106133 -NCIT:C6590 Childhood Conventional Osteosarcoma 9 106134 -NCIT:C189026 Childhood Primary Central Chondrosarcoma 8 106135 -NCIT:C27482 Secondary Chondrosarcoma 7 106136 -NCIT:C121881 Secondary Central Chondrosarcoma 8 106137 -NCIT:C178477 Secondary Central Atypical Cartilaginous Tumor/Chondrosarcoma, Grade 1 9 106138 -NCIT:C121882 Secondary Peripheral Chondrosarcoma 8 106139 -NCIT:C178481 Secondary Peripheral Chondrosarcoma, Grade 1 9 106140 -NCIT:C178492 Secondary Peripheral Chondrosarcoma, Grade 2 9 106141 -NCIT:C178494 Secondary Peripheral Chondrosarcoma, Grade 3 9 106142 -NCIT:C4304 Malignancy in Giant Cell Tumor of Bone 7 106143 -NCIT:C4835 Ewing Sarcoma of Bone 7 106144 -NCIT:C6621 Metastatic Bone Ewing Sarcoma 8 106145 -NCIT:C6622 Recurrent Bone Ewing Sarcoma 8 106146 -NCIT:C6623 Localized Bone Ewing Sarcoma 8 106147 -NCIT:C53493 Mesenchymal Chondrosarcoma of Bone 7 106148 -NCIT:C173843 Maxillofacial Mesenchymal Chondrosarcoma 8 106149 -NCIT:C53707 Bone Osteosarcoma 7 106150 -NCIT:C173844 Maxillofacial Osteosarcoma 8 106151 -NCIT:C189022 Childhood Bone Osteosarcoma 8 106152 -NCIT:C123398 Childhood Periosteal Osteosarcoma 9 106153 -NCIT:C6589 Childhood Parosteal Osteosarcoma 9 106154 -NCIT:C6590 Childhood Conventional Osteosarcoma 9 106155 -NCIT:C38157 Metachronous Osteosarcoma 8 106156 -NCIT:C4834 Primary Bone Osteosarcoma 8 106157 -NCIT:C136633 Osteosarcoma by AJCC v7 Stage 9 106158 -NCIT:C6612 Stage III Osteosarcoma AJCC v7 10 106159 -NCIT:C6701 Stage IV Osteosarcoma AJCC v7 10 106160 -NCIT:C6702 Stage IVA Osteosarcoma AJCC v7 11 106161 -NCIT:C6703 Stage IVB Osteosarcoma AJCC v7 11 106162 -NCIT:C6709 Stage I Osteosarcoma AJCC v7 10 106163 -NCIT:C6607 Stage IA Osteosarcoma AJCC v7 11 106164 -NCIT:C6609 Stage IB Osteosarcoma AJCC v7 11 106165 -NCIT:C6710 Stage II Osteosarcoma AJCC v7 10 106166 -NCIT:C6610 Stage IIA Osteosarcoma AJCC v7 11 106167 -NCIT:C6611 Stage IIB Osteosarcoma AJCC v7 11 106168 -NCIT:C35870 Conventional Osteosarcoma 9 106169 -NCIT:C179410 Giant Cell-Rich Osteosarcoma 10 106170 -NCIT:C4020 Fibroblastic Osteosarcoma 10 106171 -NCIT:C4021 Chondroblastic Osteosarcoma 10 106172 -NCIT:C53953 Osteoblastic Osteosarcoma 10 106173 -NCIT:C6590 Childhood Conventional Osteosarcoma 10 106174 -NCIT:C3902 Telangiectatic Osteosarcoma 9 106175 -NCIT:C4023 Small Cell Osteosarcoma 9 106176 -NCIT:C6470 Multifocal Osteosarcoma 9 106177 -NCIT:C6471 Synchronous Multifocal Osteosarcoma 10 106178 -NCIT:C6472 Asynchronous Multifocal Osteosarcoma 10 106179 -NCIT:C6474 Low Grade Central Osteosarcoma 9 106180 -NCIT:C7134 Bone Surface (Peripheral) Osteosarcoma 9 106181 -NCIT:C53958 High Grade Surface Osteosarcoma 10 106182 -NCIT:C8969 Parosteal Osteosarcoma 10 106183 -NCIT:C6589 Childhood Parosteal Osteosarcoma 11 106184 -NCIT:C8970 Periosteal Osteosarcoma 10 106185 -NCIT:C123398 Childhood Periosteal Osteosarcoma 11 106186 -NCIT:C53704 Secondary Osteosarcoma 8 106187 -NCIT:C53706 Radiation-Related Osteosarcoma 9 106188 -NCIT:C6469 Osteosarcoma Arising in Paget Disease of Bone 9 106189 -NCIT:C6475 Clear Cell Chondrosarcoma 7 106190 -NCIT:C6476 Dedifferentiated Chondrosarcoma 7 106191 -NCIT:C6479 Bone Angiosarcoma 7 106192 -NCIT:C6604 Bone Fibrosarcoma 7 106193 -NCIT:C7154 Bone Leiomyosarcoma 7 106194 -NCIT:C7155 Primary Central Chondrosarcoma 7 106195 -NCIT:C171070 Unresectable Primary Central Chondrosarcoma 8 106196 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 9 106197 -NCIT:C171072 Metastatic Primary Central Chondrosarcoma 8 106198 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 9 106199 -NCIT:C178476 Primary Central Atypical Cartilaginous Tumor/Chondrosarcoma, Grade 1 8 106200 -NCIT:C189026 Childhood Primary Central Chondrosarcoma 8 106201 -NCIT:C7357 Periosteal Chondrosarcoma 7 106202 -NCIT:C7598 Bone Liposarcoma 7 106203 -NCIT:C8563 Undifferentiated High Grade Pleomorphic Sarcoma of Bone 7 106204 -NCIT:C114750 Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 8 106205 -NCIT:C115368 Recurrent Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 9 106206 -NCIT:C115998 Localized Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 9 106207 -NCIT:C114782 Adult Undifferentiated High Grade Pleomorphic Sarcoma of Bone 8 106208 -NCIT:C115351 Recurrent Adult Undifferentiated High Grade Pleomorphic Sarcoma of Bone 9 106209 -NCIT:C115997 Localized Adult Undifferentiated High Grade Pleomorphic Sarcoma of Bone 9 106210 -NCIT:C151984 Pelvic Undifferentiated High Grade Pleomorphic Sarcoma 8 106211 -NCIT:C4880 Benign Bone Neoplasm 5 106212 -NCIT:C121842 Osteochondromyxoma 6 106213 -NCIT:C121901 Benign Notochordal Cell Tumor 6 106214 -NCIT:C190577 Childhood Benign Bone Neoplasm 6 106215 -NCIT:C189019 Childhood Subungual Exostosis 7 106216 -NCIT:C189020 Childhood Osteoblastoma 7 106217 -NCIT:C189021 Childhood Osteoid Osteoma 7 106218 -NCIT:C189023 Childhood Chondroblastoma 7 106219 -NCIT:C189024 Childhood Osteochondroma 7 106220 -NCIT:C189025 Childhood Chondromyxoid Fibroma 7 106221 -NCIT:C189028 Childhood Bone Hemangioma 7 106222 -NCIT:C189029 Childhood Aneurysmal Bone Cyst 7 106223 -NCIT:C189031 Childhood Non-Ossifying Fibroma 7 106224 -NCIT:C189033 Childhood Fibrous Dysplasia 7 106225 -NCIT:C27475 Bone Lipoma 6 106226 -NCIT:C178604 Bone Hibernoma 7 106227 -NCIT:C27476 Bone Schwannoma 6 106228 -NCIT:C27477 Benign Osteoclastic Giant Cell-Rich Tumor of Bone 6 106229 -NCIT:C121893 Giant Cell Lesion of Small Bones 7 106230 -NCIT:C2945 Chondroblastoma 6 106231 -NCIT:C173895 Maxillofacial Chondroblastoma 7 106232 -NCIT:C189023 Childhood Chondroblastoma 7 106233 -NCIT:C3007 Enchondroma 6 106234 -NCIT:C3008 Enchondromatosis 6 106235 -NCIT:C3294 Osteoblastoma 6 106236 -NCIT:C173899 Maxillofacial Osteoblastoma 7 106237 -NCIT:C189020 Childhood Osteoblastoma 7 106238 -NCIT:C4308 Cementoblastoma 7 106239 -NCIT:C3295 Osteochondroma 6 106240 -NCIT:C189024 Childhood Osteochondroma 7 106241 -NCIT:C53455 Solitary Osteochondroma 7 106242 -NCIT:C53457 Multiple Osteochondromas 7 106243 -NCIT:C3296 Osteoma 6 106244 -NCIT:C121923 Ivory Exostosis 7 106245 -NCIT:C121924 Enostosis 7 106246 -NCIT:C129569 Skull Osteoma 7 106247 -NCIT:C173894 Maxillofacial Osteoma 8 106248 -NCIT:C3297 Osteoid Osteoma 6 106249 -NCIT:C173898 Maxillofacial Osteoid Osteoma 7 106250 -NCIT:C189021 Childhood Osteoid Osteoma 7 106251 -NCIT:C34417 Benign Neoplasm of Lower Jaw Bone 6 106252 -NCIT:C34609 Fibrous Dysplasia 6 106253 -NCIT:C173926 Craniofacial Fibrous Dysplasia 7 106254 -NCIT:C189033 Childhood Fibrous Dysplasia 7 106255 -NCIT:C34610 Polyostotic Fibrous Dysplasia 7 106256 -NCIT:C53971 Monostotic Fibrous Dysplasia 7 106257 -NCIT:C3516 Aneurysmal Bone Cyst 6 106258 -NCIT:C189029 Childhood Aneurysmal Bone Cyst 7 106259 -NCIT:C3830 Chondromyxoid Fibroma 6 106260 -NCIT:C173897 Maxillofacial Chondromyxoid Fibroma 7 106261 -NCIT:C189025 Childhood Chondromyxoid Fibroma 7 106262 -NCIT:C6714 Sternal Chondromyxoid Fibroma 7 106263 -NCIT:C4302 Periosteal Chondroma 6 106264 -NCIT:C53963 Fibrous Histiocytoma of Bone 6 106265 -NCIT:C121929 Non-Ossifying Fibroma 7 106266 -NCIT:C189031 Childhood Non-Ossifying Fibroma 8 106267 -NCIT:C6477 Bone Hemangioma 6 106268 -NCIT:C189028 Childhood Bone Hemangioma 7 106269 -NCIT:C5396 Bone Epithelioid Hemangioma 7 106270 -NCIT:C66761 Periosteal Fibroma 6 106271 -NCIT:C6478 Vascular Bone Neoplasm 5 106272 -NCIT:C121941 Bone Epithelioid Hemangioendothelioma 6 106273 -NCIT:C6477 Bone Hemangioma 6 106274 -NCIT:C189028 Childhood Bone Hemangioma 7 106275 -NCIT:C5396 Bone Epithelioid Hemangioma 7 106276 -NCIT:C6479 Bone Angiosarcoma 6 106277 -NCIT:C6480 Bone Glomus Tumor 5 106278 -NCIT:C7063 Notochordal Tumor 5 106279 -NCIT:C121901 Benign Notochordal Cell Tumor 6 106280 -NCIT:C2947 Chordoma 6 106281 -NCIT:C153323 Metastatic Chordoma 7 106282 -NCIT:C153324 Locally Advanced Chordoma 8 106283 -NCIT:C173333 Advanced Chordoma 8 106284 -NCIT:C153325 Unresectable Chordoma 7 106285 -NCIT:C155973 Recurrent Chordoma 7 106286 -NCIT:C162728 Recurrent Dedifferentiated Chordoma 8 106287 -NCIT:C185073 Locally Recurrent Chordoma 8 106288 -NCIT:C162721 Refractory Chordoma 7 106289 -NCIT:C162729 Refractory Dedifferentiated Chordoma 8 106290 -NCIT:C177898 Poorly Differentiated Chordoma 7 106291 -NCIT:C178563 Conventional Chordoma 7 106292 -NCIT:C6902 Chondroid Chordoma 8 106293 -NCIT:C155782 Sellar Chondroid Chordoma 9 106294 -NCIT:C5426 Clivus Chondroid Chordoma 9 106295 -NCIT:C189032 Childhood Chordoma 7 106296 -NCIT:C48876 Dedifferentiated Chordoma 7 106297 -NCIT:C155783 Sellar Dedifferentiated Chordoma 8 106298 -NCIT:C162728 Recurrent Dedifferentiated Chordoma 8 106299 -NCIT:C162729 Refractory Dedifferentiated Chordoma 8 106300 -NCIT:C5156 Spinal Chordoma 7 106301 -NCIT:C129927 Sacral Chordoma 8 106302 -NCIT:C177775 Thoracic Chordoma 8 106303 -NCIT:C5453 Skull Base Chordoma 7 106304 -NCIT:C155781 Sellar Chordoma 8 106305 -NCIT:C155782 Sellar Chondroid Chordoma 9 106306 -NCIT:C155783 Sellar Dedifferentiated Chordoma 9 106307 -NCIT:C5412 Clivus Chordoma 8 106308 -NCIT:C5426 Clivus Chondroid Chordoma 9 106309 -NCIT:C188963 Childhood Connective and Soft Tissue Neoplasm 3 106310 -NCIT:C114926 Childhood Epithelioid Hemangioendothelioma 4 106311 -NCIT:C123906 Childhood Gastrointestinal Stromal Tumor 4 106312 -NCIT:C142823 Congenital Peribronchial Myofibroblastic Tumor 4 106313 -NCIT:C188964 Childhood NTRK-Rearranged Spindle Cell Neoplasm 4 106314 -NCIT:C188972 Childhood Inflammatory Myofibroblastic Tumor 4 106315 -NCIT:C188975 Childhood Plexiform Fibrohistiocytic Tumor 4 106316 -NCIT:C188976 Childhood Tenosynovial Giant Cell Tumor 4 106317 -NCIT:C188977 Childhood Kaposiform Hemangioendothelioma 4 106318 -NCIT:C188978 Childhood Papillary Intralymphatic Angioendothelioma 4 106319 -NCIT:C188979 Childhood Pseudomyogenic Hemangioendothelioma 4 106320 -NCIT:C188981 Childhood Sarcoma 4 106321 -NCIT:C188984 Childhood Ectomesenchymoma 5 106322 -NCIT:C189002 Childhood Ewing Sarcoma 5 106323 -NCIT:C189261 Childhood Kidney Ewing Sarcoma 6 106324 -NCIT:C189003 Childhood Round Cell Sarcoma with EWSR1-non-ETS Fusion 5 106325 -NCIT:C189006 Childhood CIC-Rearranged Sarcoma 5 106326 -NCIT:C189007 Childhood Sarcoma with BCOR Genetic Alterations 5 106327 -NCIT:C189017 Childhood Bone Sarcoma 5 106328 -NCIT:C114750 Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 6 106329 -NCIT:C115368 Recurrent Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 7 106330 -NCIT:C115998 Localized Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 7 106331 -NCIT:C189022 Childhood Bone Osteosarcoma 6 106332 -NCIT:C123398 Childhood Periosteal Osteosarcoma 7 106333 -NCIT:C6589 Childhood Parosteal Osteosarcoma 7 106334 -NCIT:C6590 Childhood Conventional Osteosarcoma 7 106335 -NCIT:C189026 Childhood Primary Central Chondrosarcoma 6 106336 -NCIT:C189027 Childhood Chondrosarcoma 5 106337 -NCIT:C189026 Childhood Primary Central Chondrosarcoma 6 106338 -NCIT:C27374 Childhood Mesenchymal Chondrosarcoma 6 106339 -NCIT:C6585 Childhood Osteosarcoma 5 106340 -NCIT:C187189 Recurrent Childhood Osteosarcoma 6 106341 -NCIT:C187192 Refractory Childhood Osteosarcoma 6 106342 -NCIT:C189022 Childhood Bone Osteosarcoma 6 106343 -NCIT:C123398 Childhood Periosteal Osteosarcoma 7 106344 -NCIT:C6589 Childhood Parosteal Osteosarcoma 7 106345 -NCIT:C6590 Childhood Conventional Osteosarcoma 7 106346 -NCIT:C27376 Childhood Extraskeletal Osteosarcoma 6 106347 -NCIT:C7715 Childhood Soft Tissue Sarcoma 5 106348 -NCIT:C114749 Childhood Undifferentiated Pleomorphic Sarcoma 6 106349 -NCIT:C115292 Localized Childhood Soft Tissue Sarcoma 6 106350 -NCIT:C8065 Localized Childhood Rhabdomyosarcoma 7 106351 -NCIT:C187194 Refractory Childhood Soft Tissue Sarcoma 6 106352 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 7 106353 -NCIT:C188980 Childhood Kaposi Sarcoma 6 106354 -NCIT:C189260 Childhood Anaplastic Sarcoma of the Kidney 6 106355 -NCIT:C189261 Childhood Kidney Ewing Sarcoma 6 106356 -NCIT:C189934 Childhood Liver Embryonal Sarcoma 6 106357 -NCIT:C190020 Childhood Liver Angiosarcoma 6 106358 -NCIT:C27371 Childhood Clear Cell Sarcoma of Soft Tissue 6 106359 -NCIT:C27372 Childhood Desmoplastic Small Round Cell Tumor 6 106360 -NCIT:C27376 Childhood Extraskeletal Osteosarcoma 6 106361 -NCIT:C27377 Childhood Extraskeletal Myxoid Chondrosarcoma 6 106362 -NCIT:C4264 Clear Cell Sarcoma of the Kidney 6 106363 -NCIT:C7705 Childhood Rhabdomyosarcoma 6 106364 -NCIT:C123397 Childhood Spindle Cell Rhabdomyosarcoma 7 106365 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 7 106366 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 7 106367 -NCIT:C7957 Childhood Embryonal Rhabdomyosarcoma 7 106368 -NCIT:C35574 Childhood Botryoid-Type Embryonal Rhabdomyosarcoma 8 106369 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 9 106370 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 9 106371 -NCIT:C7958 Childhood Alveolar Rhabdomyosarcoma 7 106372 -NCIT:C7959 Childhood Pleomorphic Rhabdomyosarcoma 7 106373 -NCIT:C7960 Childhood Rhabdomyosarcoma with Mixed Embryonal and Alveolar Features 7 106374 -NCIT:C8065 Localized Childhood Rhabdomyosarcoma 7 106375 -NCIT:C8066 Metastatic Childhood Soft Tissue Sarcoma 6 106376 -NCIT:C8067 Recurrent Childhood Soft Tissue Sarcoma 6 106377 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 7 106378 -NCIT:C8089 Childhood Synovial Sarcoma 6 106379 -NCIT:C8092 Childhood Alveolar Soft Part Sarcoma 6 106380 -NCIT:C8093 Childhood Leiomyosarcoma 6 106381 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 7 106382 -NCIT:C8095 Childhood Epithelioid Sarcoma 6 106383 -NCIT:C8088 Childhood Fibrosarcoma 5 106384 -NCIT:C188970 Childhood Low Grade Fibromyxoid Sarcoma 6 106385 -NCIT:C188971 Childhood Sclerosing Epithelioid Fibrosarcoma 6 106386 -NCIT:C188973 Childhood Low Grade Myofibroblastic Sarcoma 6 106387 -NCIT:C4244 Infantile Fibrosarcoma 6 106388 -NCIT:C8091 Childhood Liposarcoma 5 106389 -NCIT:C8094 Childhood Malignant Peripheral Nerve Sheath Tumor 5 106390 -NCIT:C9174 Childhood Angiosarcoma 5 106391 -NCIT:C190020 Childhood Liver Angiosarcoma 6 106392 -NCIT:C188982 Childhood EBV-Associated Smooth Muscle Tumor 4 106393 -NCIT:C188999 Childhood Angiomatoid Fibrous Histiocytoma 4 106394 -NCIT:C189000 Childhood PEComa 4 106395 -NCIT:C6565 Childhood Kidney Angiomyolipoma 5 106396 -NCIT:C189001 Childhood Myoepithelial Tumor 4 106397 -NCIT:C189015 Childhood Bone Neoplasm 4 106398 -NCIT:C189030 Childhood Giant Cell Tumor of Bone 5 106399 -NCIT:C190577 Childhood Benign Bone Neoplasm 5 106400 -NCIT:C189019 Childhood Subungual Exostosis 6 106401 -NCIT:C189020 Childhood Osteoblastoma 6 106402 -NCIT:C189021 Childhood Osteoid Osteoma 6 106403 -NCIT:C189023 Childhood Chondroblastoma 6 106404 -NCIT:C189024 Childhood Osteochondroma 6 106405 -NCIT:C189025 Childhood Chondromyxoid Fibroma 6 106406 -NCIT:C189028 Childhood Bone Hemangioma 6 106407 -NCIT:C189029 Childhood Aneurysmal Bone Cyst 6 106408 -NCIT:C189031 Childhood Non-Ossifying Fibroma 6 106409 -NCIT:C189033 Childhood Fibrous Dysplasia 6 106410 -NCIT:C190578 Childhood Malignant Bone Neoplasm 5 106411 -NCIT:C189017 Childhood Bone Sarcoma 6 106412 -NCIT:C114750 Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 7 106413 -NCIT:C115368 Recurrent Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 8 106414 -NCIT:C115998 Localized Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 8 106415 -NCIT:C189022 Childhood Bone Osteosarcoma 7 106416 -NCIT:C123398 Childhood Periosteal Osteosarcoma 8 106417 -NCIT:C6589 Childhood Parosteal Osteosarcoma 8 106418 -NCIT:C6590 Childhood Conventional Osteosarcoma 8 106419 -NCIT:C189026 Childhood Primary Central Chondrosarcoma 7 106420 -NCIT:C189032 Childhood Chordoma 6 106421 -NCIT:C190576 Childhood Benign Connective and Soft Tissue Neoplasm 4 106422 -NCIT:C180887 Infantile Myofibroma 5 106423 -NCIT:C188965 Childhood EWSR1-SMAD3-Positive Fibroblastic Tumor 5 106424 -NCIT:C188974 Childhood Fibrous Histiocytoma 5 106425 -NCIT:C189031 Childhood Non-Ossifying Fibroma 6 106426 -NCIT:C188983 Childhood Rhabdomyoma 5 106427 -NCIT:C190104 Childhood Cardiac Rhabdomyoma 6 106428 -NCIT:C189288 Childhood Ovarian Fibroma 5 106429 -NCIT:C190019 Liver Congenital Hemangioma 5 106430 -NCIT:C190160 Sinonasal Tract Myxoma 5 106431 -NCIT:C190577 Childhood Benign Bone Neoplasm 5 106432 -NCIT:C189019 Childhood Subungual Exostosis 6 106433 -NCIT:C189020 Childhood Osteoblastoma 6 106434 -NCIT:C189021 Childhood Osteoid Osteoma 6 106435 -NCIT:C189023 Childhood Chondroblastoma 6 106436 -NCIT:C189024 Childhood Osteochondroma 6 106437 -NCIT:C189025 Childhood Chondromyxoid Fibroma 6 106438 -NCIT:C189028 Childhood Bone Hemangioma 6 106439 -NCIT:C189029 Childhood Aneurysmal Bone Cyst 6 106440 -NCIT:C189031 Childhood Non-Ossifying Fibroma 6 106441 -NCIT:C189033 Childhood Fibrous Dysplasia 6 106442 -NCIT:C27483 Lipoblastoma 5 106443 -NCIT:C3456 Inclusion Body Fibromatosis 5 106444 -NCIT:C3942 Fibrous Hamartoma of Infancy 5 106445 -NCIT:C4818 Calcifying Aponeurotic Fibroma 5 106446 -NCIT:C5751 Liver Mesenchymal Hamartoma 5 106447 -NCIT:C6645 Infantile Hemangioma 5 106448 -NCIT:C96840 Liver Infantile Hemangioma 6 106449 -NCIT:C99086 Airway Infantile Hemangioma 6 106450 -NCIT:C6586 Extrarenal Rhabdoid Tumor 4 106451 -NCIT:C161608 Extrarenal Rhabdoid Tumor of the Prostate 5 106452 -NCIT:C171169 Extrarenal Rhabdoid Tumor of the Ovary 5 106453 -NCIT:C171170 Recurrent Extrarenal Rhabdoid Tumor of the Ovary 6 106454 -NCIT:C171171 Refractory Extrarenal Rhabdoid Tumor of the Ovary 6 106455 -NCIT:C188881 Recurrent Extrarenal Rhabdoid Tumor 5 106456 -NCIT:C171170 Recurrent Extrarenal Rhabdoid Tumor of the Ovary 6 106457 -NCIT:C188884 Refractory Extrarenal Rhabdoid Tumor 5 106458 -NCIT:C171171 Refractory Extrarenal Rhabdoid Tumor of the Ovary 6 106459 -NCIT:C188886 Unresectable Extrarenal Rhabdoid Tumor 5 106460 -NCIT:C96847 Extrarenal Rhabdoid Tumor of the Liver 5 106461 -NCIT:C99180 Lipofibromatosis 4 106462 -NCIT:C3055 Giant Cell Tumor 3 106463 -NCIT:C3402 Tenosynovial Giant Cell Tumor 4 106464 -NCIT:C188976 Childhood Tenosynovial Giant Cell Tumor 5 106465 -NCIT:C3401 Tenosynovial Giant Cell Tumor, Diffuse Type 5 106466 -NCIT:C6532 Tenosynovial Giant Cell Tumor, Localized Type 5 106467 -NCIT:C6535 Malignant Tenosynovial Giant Cell Tumor 5 106468 -NCIT:C3738 Osteoclastic Giant Cell-Rich Tumor of Bone 4 106469 -NCIT:C121931 Intermediate Osteoclastic Giant Cell-Rich Tumor of Bone 5 106470 -NCIT:C121932 Giant Cell Tumor of Bone 6 106471 -NCIT:C189030 Childhood Giant Cell Tumor of Bone 7 106472 -NCIT:C121933 Malignant Osteoclastic Giant Cell-Rich Tumor of Bone 5 106473 -NCIT:C4304 Malignancy in Giant Cell Tumor of Bone 6 106474 -NCIT:C27477 Benign Osteoclastic Giant Cell-Rich Tumor of Bone 5 106475 -NCIT:C121893 Giant Cell Lesion of Small Bones 6 106476 -NCIT:C49107 Giant Cell Tumor of Soft Tissue 4 106477 -NCIT:C3377 Soft Tissue Neoplasm 3 106478 -NCIT:C158636 Bladder Soft Tissue Neoplasm 4 106479 -NCIT:C159673 Bladder PEComa 5 106480 -NCIT:C159674 Bladder Benign PEComa 6 106481 -NCIT:C159677 Bladder Malignant PEComa 6 106482 -NCIT:C159679 Bladder Solitary Fibrous Tumor 5 106483 -NCIT:C4669 Bladder Sarcoma 5 106484 -NCIT:C156277 Bladder Alveolar Soft Part Sarcoma 6 106485 -NCIT:C159667 Bladder Rhabdomyosarcoma 6 106486 -NCIT:C159668 Bladder Embryonal Rhabdomyosarcoma 7 106487 -NCIT:C159669 Bladder Alveolar Rhabdomyosarcoma 7 106488 -NCIT:C159670 Bladder Leiomyosarcoma 6 106489 -NCIT:C159671 Bladder Angiosarcoma 6 106490 -NCIT:C6177 Bladder Inflammatory Myofibroblastic Tumor 5 106491 -NCIT:C6178 Bladder Leiomyoma 5 106492 -NCIT:C161045 Prostate Soft Tissue Neoplasm 4 106493 -NCIT:C161042 Prostate Inflammatory Myofibroblastic Tumor 5 106494 -NCIT:C161579 Prostate Solitary Fibrous Tumor 5 106495 -NCIT:C161580 Prostate Malignant Solitary Fibrous Tumor 6 106496 -NCIT:C161582 Prostate Granular Cell Tumor 5 106497 -NCIT:C3972 Prostate Fibroma 5 106498 -NCIT:C39904 Tumor of Specialized Prostatic Stroma 5 106499 -NCIT:C39905 Prostate Stromal Tumor of Uncertain Malignant Potential 6 106500 -NCIT:C5524 Prostate Stromal Sarcoma 6 106501 -NCIT:C5544 Prostate Leiomyoma 5 106502 -NCIT:C7731 Prostate Sarcoma 5 106503 -NCIT:C161034 Prostate Synovial Sarcoma 6 106504 -NCIT:C161035 Prostate Osteosarcoma 6 106505 -NCIT:C161038 Prostate Undifferentiated Pleomorphic Sarcoma 6 106506 -NCIT:C5522 Prostate Rhabdomyosarcoma 6 106507 -NCIT:C188070 Prostate Alveolar Rhabdomyosarcoma 7 106508 -NCIT:C5525 Prostate Embryonal Rhabdomyosarcoma 7 106509 -NCIT:C5523 Prostate Kaposi Sarcoma 6 106510 -NCIT:C5524 Prostate Stromal Sarcoma 6 106511 -NCIT:C5526 Prostate Leiomyosarcoma 6 106512 -NCIT:C5528 Prostate Angiosarcoma 6 106513 -NCIT:C162492 Paratesticular Soft Tissue Neoplasm 4 106514 -NCIT:C161637 Seminal Vesicle Soft Tissue Neoplasm 5 106515 -NCIT:C161638 Seminal Vesicle Leiomyoma 6 106516 -NCIT:C161639 Seminal Vesicle Schwannoma 6 106517 -NCIT:C161640 Seminal Vesicle Mammary-Type Myofibroblastoma 6 106518 -NCIT:C161641 Seminal Vesicle Leiomyosarcoma 6 106519 -NCIT:C161642 Seminal Vesicle Angiosarcoma 6 106520 -NCIT:C162493 Paratesticular Liposarcoma 5 106521 -NCIT:C162494 Paratesticular Leiomyoma 5 106522 -NCIT:C161638 Seminal Vesicle Leiomyoma 6 106523 -NCIT:C162495 Paratesticular Leiomyosarcoma 5 106524 -NCIT:C161641 Seminal Vesicle Leiomyosarcoma 6 106525 -NCIT:C162496 Paratesticular Rhabdomyoma 5 106526 -NCIT:C162497 Paratesticular Rhabdomyosarcoma 5 106527 -NCIT:C162498 Paratesticular Cellular Angiofibroma 5 106528 -NCIT:C162500 Paratesticular Mammary-Type Myofibroblastoma 5 106529 -NCIT:C161640 Seminal Vesicle Mammary-Type Myofibroblastoma 6 106530 -NCIT:C162501 Paratesticular Deep (Aggressive) Angiomyxoma 5 106531 -NCIT:C162502 Paratesticular Schwannoma 5 106532 -NCIT:C161639 Seminal Vesicle Schwannoma 6 106533 -NCIT:C162503 Paratesticular Hemangioma 5 106534 -NCIT:C6384 Paratesticular Lipoma 5 106535 -NCIT:C3606 Spermatic Cord Lipoma 6 106536 -NCIT:C162574 Penile Soft Tissue Neoplasm 4 106537 -NCIT:C162579 Penile Hemangioma 5 106538 -NCIT:C162580 Penile Epithelioid Hemangioma 6 106539 -NCIT:C162581 Penile Epithelioid Hemangioendothelioma 5 106540 -NCIT:C162582 Penile Glomus Tumor 5 106541 -NCIT:C162583 Penile Leiomyoma 5 106542 -NCIT:C162590 Penile Myointimoma 5 106543 -NCIT:C162592 Penile Lymphangioma 5 106544 -NCIT:C7730 Penile Sarcoma 5 106545 -NCIT:C162578 Penile Angiosarcoma 6 106546 -NCIT:C162584 Penile Malignant Peripheral Nerve Sheath Tumor 6 106547 -NCIT:C162585 Penile Leiomyosarcoma 6 106548 -NCIT:C162588 Penile Rhabdomyosarcoma 6 106549 -NCIT:C162589 Penile Undifferentiated Pleomorphic Sarcoma 6 106550 -NCIT:C6377 Penile Kaposi Sarcoma 6 106551 -NCIT:C169100 Skin Soft Tissue Neoplasm 4 106552 -NCIT:C156283 Scrotal Sarcoma 5 106553 -NCIT:C156282 Scrotal Liposarcoma 6 106554 -NCIT:C172637 Primitive Non-Neural Granular Cell Tumor 5 106555 -NCIT:C43313 Pilar-Associated Mesenchyme Neoplasm 5 106556 -NCIT:C43323 Benign Pilar-Associated Mesenchyme Neoplasm 6 106557 -NCIT:C27526 Follicular Myxoma 7 106558 -NCIT:C43331 Fibrofolliculoma 7 106559 -NCIT:C43332 Pilar Leiomyoma 7 106560 -NCIT:C43333 Spindle-Cell Predominant Trichodiscoma 7 106561 -NCIT:C4470 Perifollicular Fibroma 7 106562 -NCIT:C4370 Skin Lymphangioleiomyomatosis 5 106563 -NCIT:C4480 Skin Smooth Muscle Neoplasm 5 106564 -NCIT:C4482 Skin Leiomyoma 6 106565 -NCIT:C43332 Pilar Leiomyoma 7 106566 -NCIT:C4483 Dartoic Leiomyoma 7 106567 -NCIT:C4484 Atypical Intradermal Smooth Muscle Neoplasm 6 106568 -NCIT:C4491 Skin Glomus Tumor 5 106569 -NCIT:C36079 Subungual Glomus Tumor 6 106570 -NCIT:C6750 Skin Glomangioma 6 106571 -NCIT:C5345 Telangiectatic Glomangioma 7 106572 -NCIT:C4634 Skin Fibroblastic Neoplasm 5 106573 -NCIT:C172632 Skin Myxofibrosarcoma 6 106574 -NCIT:C4683 Dermatofibrosarcoma Protuberans 6 106575 -NCIT:C177325 Plaque-Like Dermatofibrosarcoma Protuberans 7 106576 -NCIT:C38105 Dermatofibrosarcoma Protuberans with Myoid Differentiation 7 106577 -NCIT:C38106 Myxoid Dermatofibrosarcoma Protuberans 7 106578 -NCIT:C38107 Dedifferentiated Dermatofibrosarcoma Protuberans 7 106579 -NCIT:C27547 Fibrosarcomatous Dermatofibrosarcoma Protuberans 8 106580 -NCIT:C38108 Dermatofibrosarcoma Protuberans with Giant Cell Fibroblastoma-Like Differentiation 7 106581 -NCIT:C9430 Pigmented Dermatofibrosarcoma Protuberans 7 106582 -NCIT:C4700 Giant Cell Fibroblastoma 6 106583 -NCIT:C49025 Myxoinflammatory Fibroblastic Sarcoma 6 106584 -NCIT:C6806 Benign Skin Fibroblastic Neoplasm 6 106585 -NCIT:C170888 Dermatomyofibroma 7 106586 -NCIT:C3942 Fibrous Hamartoma of Infancy 7 106587 -NCIT:C48961 Subcutaneous Nodular Fasciitis 7 106588 -NCIT:C6484 Dermal Fibroma 7 106589 -NCIT:C170889 Plaque-Like CD34-Positive Dermal Fibroma 8 106590 -NCIT:C4470 Perifollicular Fibroma 8 106591 -NCIT:C6486 Nuchal-Type Fibroma 8 106592 -NCIT:C5354 Skin Vascular Neoplasm 5 106593 -NCIT:C27127 Benign Skin Vascular Neoplasm 6 106594 -NCIT:C27509 Skin Lymphangioma 7 106595 -NCIT:C162592 Penile Lymphangioma 8 106596 -NCIT:C4905 Skin Hemangioma 7 106597 -NCIT:C162579 Penile Hemangioma 8 106598 -NCIT:C162580 Penile Epithelioid Hemangioma 9 106599 -NCIT:C34967 Lobular Capillary Hemangioma of Skin and Subcutaneous Tissue 8 106600 -NCIT:C3926 Angioma Serpiginosum 8 106601 -NCIT:C4299 Verrucous Hemangioma 8 106602 -NCIT:C4390 Cherry Hemangioma 8 106603 -NCIT:C4372 Cherry Hemangioma of Lip 9 106604 -NCIT:C4487 Tufted Angioma 8 106605 -NCIT:C4750 Skin Cavernous Hemangioma 8 106606 -NCIT:C6387 Scrotal Hemangioma 8 106607 -NCIT:C7393 Skin Epithelioid Hemangioma 8 106608 -NCIT:C162580 Penile Epithelioid Hemangioma 9 106609 -NCIT:C27529 Malignant Skin Vascular Neoplasm 6 106610 -NCIT:C3550 Skin Kaposi Sarcoma 7 106611 -NCIT:C9112 Classic Kaposi Sarcoma 8 106612 -NCIT:C4489 Skin Angiosarcoma 7 106613 -NCIT:C153626 Recurrent Skin Angiosarcoma 8 106614 -NCIT:C27719 Skin Radiation-Related Angiosarcoma 8 106615 -NCIT:C40379 Angiosarcoma of the Skin of the Arm after Radical Mastectomy followed by Lymphedema 8 106616 -NCIT:C4490 Skin Lymphangiosarcoma 7 106617 -NCIT:C4494 Skin Hemangioendothelioma 6 106618 -NCIT:C5566 Skin Lipomatous Neoplasm 5 106619 -NCIT:C170472 Skin Atypical Lipomatous Tumor/Well Differentiated Liposarcoma 6 106620 -NCIT:C4616 Skin Lipoma 6 106621 -NCIT:C170474 Skin Spindle Cell/Pleomorphic Lipoma 7 106622 -NCIT:C170475 Skin Spindle Cell Lipoma 8 106623 -NCIT:C170476 Skin Pleomorphic Lipoma 8 106624 -NCIT:C170478 Skin Angiolipoma 7 106625 -NCIT:C5615 Skin Liposarcoma 6 106626 -NCIT:C170473 Skin Pleomorphic Liposarcoma 7 106627 -NCIT:C5585 Skin Sarcoma 5 106628 -NCIT:C172632 Skin Myxofibrosarcoma 6 106629 -NCIT:C172634 Skin Ewing Sarcoma 6 106630 -NCIT:C3550 Skin Kaposi Sarcoma 6 106631 -NCIT:C9112 Classic Kaposi Sarcoma 7 106632 -NCIT:C4489 Skin Angiosarcoma 6 106633 -NCIT:C153626 Recurrent Skin Angiosarcoma 7 106634 -NCIT:C27719 Skin Radiation-Related Angiosarcoma 7 106635 -NCIT:C40379 Angiosarcoma of the Skin of the Arm after Radical Mastectomy followed by Lymphedema 7 106636 -NCIT:C4490 Skin Lymphangiosarcoma 6 106637 -NCIT:C49025 Myxoinflammatory Fibroblastic Sarcoma 6 106638 -NCIT:C5576 Skin Undifferentiated Pleomorphic Sarcoma 6 106639 -NCIT:C5615 Skin Liposarcoma 6 106640 -NCIT:C170473 Skin Pleomorphic Liposarcoma 7 106641 -NCIT:C6578 Skin Myxoma 5 106642 -NCIT:C27526 Follicular Myxoma 6 106643 -NCIT:C7749 Skin Fibrohistiocytic Neoplasm 5 106644 -NCIT:C7343 Benign Skin Fibrohistiocytic Neoplasm 6 106645 -NCIT:C6801 Skin Fibrous Histiocytoma 7 106646 -NCIT:C49076 Skin Fibrous Histiocytoma, Fibroblastic Variant 8 106647 -NCIT:C49077 Skin Fibrous Histiocytoma, Histiocytic Variant 8 106648 -NCIT:C49078 Skin Fibrous Histiocytoma, Cellular Variant 8 106649 -NCIT:C49079 Skin Fibrous Histiocytoma, Epithelioid Variant 8 106650 -NCIT:C7344 Skin Intermediate Fibrohistiocytic Neoplasm 6 106651 -NCIT:C6493 Plexiform Fibrohistiocytic Tumor 7 106652 -NCIT:C188975 Childhood Plexiform Fibrohistiocytic Tumor 8 106653 -NCIT:C6721 Chest Wall Plexiform Fibrohistiocytic Tumor 8 106654 -NCIT:C172852 Digestive System Soft Tissue Neoplasm 4 106655 -NCIT:C172849 Digestive System Sarcoma 5 106656 -NCIT:C150704 EBV-Positive Inflammatory Follicular Dendritic Cell Sarcoma of the Digestive System 6 106657 -NCIT:C172951 Digestive System Leiomyosarcoma 6 106658 -NCIT:C188065 Pancreatic Leiomyosarcoma 7 106659 -NCIT:C27200 Gastric Leiomyosarcoma 7 106660 -NCIT:C5334 Esophageal Leiomyosarcoma 7 106661 -NCIT:C5599 Anal Leiomyosarcoma 7 106662 -NCIT:C5756 Liver Leiomyosarcoma 7 106663 -NCIT:C5841 Gallbladder Leiomyosarcoma 7 106664 -NCIT:C5848 Extrahepatic Bile Duct Leiomyosarcoma 7 106665 -NCIT:C7085 Small Intestinal Leiomyosarcoma 7 106666 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 8 106667 -NCIT:C96435 Appendix Leiomyosarcoma 7 106668 -NCIT:C96509 Colorectal Leiomyosarcoma 7 106669 -NCIT:C5494 Colon Leiomyosarcoma 8 106670 -NCIT:C5549 Rectal Leiomyosarcoma 8 106671 -NCIT:C172952 Digestive System Rhabdomyosarcoma 6 106672 -NCIT:C5610 Anal Rhabdomyosarcoma 7 106673 -NCIT:C5627 Rectal Rhabdomyosarcoma 7 106674 -NCIT:C5834 Liver Rhabdomyosarcoma 7 106675 -NCIT:C5839 Gallbladder Rhabdomyosarcoma 7 106676 -NCIT:C5860 Extrahepatic Bile Duct Rhabdomyosarcoma 7 106677 -NCIT:C5847 Extrahepatic Bile Duct Embryonal Rhabdomyosarcoma 8 106678 -NCIT:C95623 Esophageal Rhabdomyosarcoma 7 106679 -NCIT:C172955 Digestive System Kaposi Sarcoma 6 106680 -NCIT:C5529 Gastric Kaposi Sarcoma 7 106681 -NCIT:C5624 AIDS-Related Gastric Kaposi Sarcoma 8 106682 -NCIT:C5602 Anal Kaposi Sarcoma 7 106683 -NCIT:C5706 Esophageal Kaposi Sarcoma 7 106684 -NCIT:C5842 Gallbladder Kaposi Sarcoma 7 106685 -NCIT:C96059 Small Intestinal Kaposi Sarcoma 7 106686 -NCIT:C96434 Appendix Kaposi Sarcoma 7 106687 -NCIT:C96510 Colorectal Kaposi Sarcoma 7 106688 -NCIT:C5516 Colon Kaposi Sarcoma 8 106689 -NCIT:C5550 Rectal Kaposi Sarcoma 8 106690 -NCIT:C96844 Liver Kaposi Sarcoma 7 106691 -NCIT:C96951 Extrahepatic Bile Duct Kaposi Sarcoma 7 106692 -NCIT:C172980 Gastrointestinal Clear Cell Sarcoma/Malignant Gastrointestinal Neuroectodermal Tumor 6 106693 -NCIT:C27439 Gastric Sarcoma 6 106694 -NCIT:C27200 Gastric Leiomyosarcoma 7 106695 -NCIT:C5488 Gastric Liposarcoma 7 106696 -NCIT:C5529 Gastric Kaposi Sarcoma 7 106697 -NCIT:C5624 AIDS-Related Gastric Kaposi Sarcoma 8 106698 -NCIT:C95897 Gastric Malignant Gastrointestinal Stromal Tumor 7 106699 -NCIT:C95899 Gastric Synovial Sarcoma 7 106700 -NCIT:C4437 Liver Sarcoma 6 106701 -NCIT:C27096 Liver Embryonal Sarcoma 7 106702 -NCIT:C189934 Childhood Liver Embryonal Sarcoma 8 106703 -NCIT:C189935 Adult Liver Embryonal Sarcoma 8 106704 -NCIT:C4438 Liver Angiosarcoma 7 106705 -NCIT:C190020 Childhood Liver Angiosarcoma 8 106706 -NCIT:C5756 Liver Leiomyosarcoma 7 106707 -NCIT:C5832 Liver Fibrosarcoma 7 106708 -NCIT:C5833 Liver Extraskeletal Osteosarcoma 7 106709 -NCIT:C5834 Liver Rhabdomyosarcoma 7 106710 -NCIT:C96844 Liver Kaposi Sarcoma 7 106711 -NCIT:C96845 Liver Synovial Sarcoma 7 106712 -NCIT:C5029 Extrahepatic Bile Duct Sarcoma 6 106713 -NCIT:C5848 Extrahepatic Bile Duct Leiomyosarcoma 7 106714 -NCIT:C5860 Extrahepatic Bile Duct Rhabdomyosarcoma 7 106715 -NCIT:C5847 Extrahepatic Bile Duct Embryonal Rhabdomyosarcoma 8 106716 -NCIT:C96951 Extrahepatic Bile Duct Kaposi Sarcoma 7 106717 -NCIT:C5335 Small Intestinal Sarcoma 6 106718 -NCIT:C5336 Small Intestinal Fibrosarcoma 7 106719 -NCIT:C7085 Small Intestinal Leiomyosarcoma 7 106720 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 8 106721 -NCIT:C82972 Duodenal Extraskeletal Osteosarcoma 7 106722 -NCIT:C96059 Small Intestinal Kaposi Sarcoma 7 106723 -NCIT:C96060 Small Intestinal Angiosarcoma 7 106724 -NCIT:C5341 Esophageal Sarcoma 6 106725 -NCIT:C5334 Esophageal Leiomyosarcoma 7 106726 -NCIT:C5705 Esophageal Liposarcoma 7 106727 -NCIT:C5706 Esophageal Kaposi Sarcoma 7 106728 -NCIT:C92185 Esophageal Malignant Peripheral Nerve Sheath Tumor 7 106729 -NCIT:C95623 Esophageal Rhabdomyosarcoma 7 106730 -NCIT:C95624 Esophageal Synovial Sarcoma 7 106731 -NCIT:C5611 Anal Sarcoma 6 106732 -NCIT:C5599 Anal Leiomyosarcoma 7 106733 -NCIT:C5602 Anal Kaposi Sarcoma 7 106734 -NCIT:C5610 Anal Rhabdomyosarcoma 7 106735 -NCIT:C5715 Pancreatic Sarcoma 6 106736 -NCIT:C188065 Pancreatic Leiomyosarcoma 7 106737 -NCIT:C5736 Gallbladder Sarcoma 6 106738 -NCIT:C5839 Gallbladder Rhabdomyosarcoma 7 106739 -NCIT:C5840 Gallbladder Angiosarcoma 7 106740 -NCIT:C5841 Gallbladder Leiomyosarcoma 7 106741 -NCIT:C5842 Gallbladder Kaposi Sarcoma 7 106742 -NCIT:C96508 Colorectal Sarcoma 6 106743 -NCIT:C5495 Colon Sarcoma 7 106744 -NCIT:C156279 Colon Liposarcoma 8 106745 -NCIT:C5494 Colon Leiomyosarcoma 8 106746 -NCIT:C5516 Colon Kaposi Sarcoma 8 106747 -NCIT:C5548 Rectal Sarcoma 7 106748 -NCIT:C5549 Rectal Leiomyosarcoma 8 106749 -NCIT:C5550 Rectal Kaposi Sarcoma 8 106750 -NCIT:C5627 Rectal Rhabdomyosarcoma 8 106751 -NCIT:C96509 Colorectal Leiomyosarcoma 7 106752 -NCIT:C5494 Colon Leiomyosarcoma 8 106753 -NCIT:C5549 Rectal Leiomyosarcoma 8 106754 -NCIT:C96510 Colorectal Kaposi Sarcoma 7 106755 -NCIT:C5516 Colon Kaposi Sarcoma 8 106756 -NCIT:C5550 Rectal Kaposi Sarcoma 8 106757 -NCIT:C96511 Colorectal Angiosarcoma 7 106758 -NCIT:C172851 Digestive System Inflammatory Myofibroblastic Tumor 5 106759 -NCIT:C5858 Liver Inflammatory Myofibroblastic Tumor 6 106760 -NCIT:C7022 Gastric Inflammatory Myofibroblastic Tumor 6 106761 -NCIT:C172853 Esophageal Soft Tissue Neoplasm 5 106762 -NCIT:C27430 Esophageal Gastrointestinal Stromal Tumor 6 106763 -NCIT:C3866 Esophageal Leiomyoma 6 106764 -NCIT:C5341 Esophageal Sarcoma 6 106765 -NCIT:C5334 Esophageal Leiomyosarcoma 7 106766 -NCIT:C5705 Esophageal Liposarcoma 7 106767 -NCIT:C5706 Esophageal Kaposi Sarcoma 7 106768 -NCIT:C92185 Esophageal Malignant Peripheral Nerve Sheath Tumor 7 106769 -NCIT:C95623 Esophageal Rhabdomyosarcoma 7 106770 -NCIT:C95624 Esophageal Synovial Sarcoma 7 106771 -NCIT:C5701 Esophageal Lipoma 6 106772 -NCIT:C5702 Esophageal Fibroma 6 106773 -NCIT:C172854 Hepatobiliary Soft Tissue Neoplasm 5 106774 -NCIT:C172855 Gallbladder Soft Tissue Neoplasm 6 106775 -NCIT:C5736 Gallbladder Sarcoma 7 106776 -NCIT:C5839 Gallbladder Rhabdomyosarcoma 8 106777 -NCIT:C5840 Gallbladder Angiosarcoma 8 106778 -NCIT:C5841 Gallbladder Leiomyosarcoma 8 106779 -NCIT:C5842 Gallbladder Kaposi Sarcoma 8 106780 -NCIT:C5747 Gallbladder Leiomyoma 7 106781 -NCIT:C5835 Gallbladder Lipoma 7 106782 -NCIT:C172856 Liver Soft Tissue Neoplasm 6 106783 -NCIT:C27485 Liver Angiomyolipoma 7 106784 -NCIT:C4437 Liver Sarcoma 7 106785 -NCIT:C27096 Liver Embryonal Sarcoma 8 106786 -NCIT:C189934 Childhood Liver Embryonal Sarcoma 9 106787 -NCIT:C189935 Adult Liver Embryonal Sarcoma 9 106788 -NCIT:C4438 Liver Angiosarcoma 8 106789 -NCIT:C190020 Childhood Liver Angiosarcoma 9 106790 -NCIT:C5756 Liver Leiomyosarcoma 8 106791 -NCIT:C5832 Liver Fibrosarcoma 8 106792 -NCIT:C5833 Liver Extraskeletal Osteosarcoma 8 106793 -NCIT:C5834 Liver Rhabdomyosarcoma 8 106794 -NCIT:C96844 Liver Kaposi Sarcoma 8 106795 -NCIT:C96845 Liver Synovial Sarcoma 8 106796 -NCIT:C5750 Liver Lipoma 7 106797 -NCIT:C5753 Liver Leiomyoma 7 106798 -NCIT:C5858 Liver Inflammatory Myofibroblastic Tumor 7 106799 -NCIT:C172857 Intestinal Soft Tissue Neoplasm 5 106800 -NCIT:C5339 Small Intestinal Lipoma 6 106801 -NCIT:C5677 Colorectal Leiomyoma 6 106802 -NCIT:C5492 Colon Leiomyoma 7 106803 -NCIT:C5552 Rectal Leiomyoma 7 106804 -NCIT:C5678 Colorectal Lipoma 6 106805 -NCIT:C5493 Colon Lipoma 7 106806 -NCIT:C5551 Rectal Lipoma 7 106807 -NCIT:C7725 Small Intestinal Leiomyoma 6 106808 -NCIT:C172940 Digestive System Solitary Fibrous Tumor 5 106809 -NCIT:C5752 Liver Solitary Fibrous Tumor 6 106810 -NCIT:C172941 Inflammatory Fibroid Polyp 5 106811 -NCIT:C172942 Digestive System Leiomyoma 5 106812 -NCIT:C3866 Esophageal Leiomyoma 6 106813 -NCIT:C3876 Gastric Leiomyoma 6 106814 -NCIT:C5514 Appendix Leiomyoma 6 106815 -NCIT:C5608 Anal Leiomyoma 6 106816 -NCIT:C5677 Colorectal Leiomyoma 6 106817 -NCIT:C5492 Colon Leiomyoma 7 106818 -NCIT:C5552 Rectal Leiomyoma 7 106819 -NCIT:C5747 Gallbladder Leiomyoma 6 106820 -NCIT:C5753 Liver Leiomyoma 6 106821 -NCIT:C5855 Extrahepatic Bile Duct Leiomyoma 6 106822 -NCIT:C7725 Small Intestinal Leiomyoma 6 106823 -NCIT:C172945 Digestive System Lipoma 5 106824 -NCIT:C43576 Appendix Lipoma 6 106825 -NCIT:C5258 Gastric Lipoma 6 106826 -NCIT:C5339 Small Intestinal Lipoma 6 106827 -NCIT:C5678 Colorectal Lipoma 6 106828 -NCIT:C5493 Colon Lipoma 7 106829 -NCIT:C5551 Rectal Lipoma 7 106830 -NCIT:C5701 Esophageal Lipoma 6 106831 -NCIT:C5750 Liver Lipoma 6 106832 -NCIT:C5835 Gallbladder Lipoma 6 106833 -NCIT:C5854 Extrahepatic Bile Duct Lipoma 6 106834 -NCIT:C27940 Gastrointestinal Autonomic Nerve Tumor 5 106835 -NCIT:C35778 Gastrointestinal Stromal Tumor of the Gastrointestinal Tract 5 106836 -NCIT:C27430 Esophageal Gastrointestinal Stromal Tumor 6 106837 -NCIT:C27735 Colorectal Gastrointestinal Stromal Tumor 6 106838 -NCIT:C5806 Gastric Gastrointestinal Stromal Tumor 6 106839 -NCIT:C87825 Stage IA Gastric Gastrointestinal Stromal Tumor 7 106840 -NCIT:C87826 Stage IB Gastric Gastrointestinal Stromal Tumor 7 106841 -NCIT:C87827 Stage II Gastric Gastrointestinal Stromal Tumor 7 106842 -NCIT:C87828 Stage IIIA Gastric Gastrointestinal Stromal Tumor 7 106843 -NCIT:C87829 Stage IIIB Gastric Gastrointestinal Stromal Tumor 7 106844 -NCIT:C87830 Stage IV Gastric Gastrointestinal Stromal Tumor 7 106845 -NCIT:C95895 Benign Gastric Gastrointestinal Stromal Tumor 7 106846 -NCIT:C95897 Gastric Malignant Gastrointestinal Stromal Tumor 7 106847 -NCIT:C95898 Gastric Gastrointestinal Stromal Tumor of Uncertain Malignant Potential 7 106848 -NCIT:C5811 Small Intestinal Gastrointestinal Stromal Tumor 6 106849 -NCIT:C87831 Stage I Small Intestinal Gastrointestinal Stromal Tumor 7 106850 -NCIT:C87832 Stage II Small Intestinal Gastrointestinal Stromal Tumor 7 106851 -NCIT:C87833 Stage IIIA Small Intestinal Gastrointestinal Stromal Tumor 7 106852 -NCIT:C87834 Stage IIIB Small Intestinal Gastrointestinal Stromal Tumor 7 106853 -NCIT:C87835 Stage IV Small Intestinal Gastrointestinal Stromal Tumor 7 106854 -NCIT:C5487 Gastric Soft Tissue Neoplasm 5 106855 -NCIT:C27438 Benign Gastric Soft Tissue Neoplasm 6 106856 -NCIT:C3876 Gastric Leiomyoma 7 106857 -NCIT:C5258 Gastric Lipoma 7 106858 -NCIT:C5481 Gastric Hemangioma 7 106859 -NCIT:C5482 Gastric Lymphangioma 7 106860 -NCIT:C95895 Benign Gastric Gastrointestinal Stromal Tumor 7 106861 -NCIT:C95902 Gastric Plexiform Fibromyxoma 7 106862 -NCIT:C27439 Gastric Sarcoma 6 106863 -NCIT:C27200 Gastric Leiomyosarcoma 7 106864 -NCIT:C5488 Gastric Liposarcoma 7 106865 -NCIT:C5529 Gastric Kaposi Sarcoma 7 106866 -NCIT:C5624 AIDS-Related Gastric Kaposi Sarcoma 8 106867 -NCIT:C95897 Gastric Malignant Gastrointestinal Stromal Tumor 7 106868 -NCIT:C95899 Gastric Synovial Sarcoma 7 106869 -NCIT:C5806 Gastric Gastrointestinal Stromal Tumor 6 106870 -NCIT:C87825 Stage IA Gastric Gastrointestinal Stromal Tumor 7 106871 -NCIT:C87826 Stage IB Gastric Gastrointestinal Stromal Tumor 7 106872 -NCIT:C87827 Stage II Gastric Gastrointestinal Stromal Tumor 7 106873 -NCIT:C87828 Stage IIIA Gastric Gastrointestinal Stromal Tumor 7 106874 -NCIT:C87829 Stage IIIB Gastric Gastrointestinal Stromal Tumor 7 106875 -NCIT:C87830 Stage IV Gastric Gastrointestinal Stromal Tumor 7 106876 -NCIT:C95895 Benign Gastric Gastrointestinal Stromal Tumor 7 106877 -NCIT:C95897 Gastric Malignant Gastrointestinal Stromal Tumor 7 106878 -NCIT:C95898 Gastric Gastrointestinal Stromal Tumor of Uncertain Malignant Potential 7 106879 -NCIT:C7022 Gastric Inflammatory Myofibroblastic Tumor 6 106880 -NCIT:C95900 Gastric Glomus Tumor 6 106881 -NCIT:C5751 Liver Mesenchymal Hamartoma 5 106882 -NCIT:C5856 Benign Extrahepatic Bile Duct Soft Tissue Neoplasm 5 106883 -NCIT:C5853 Extrahepatic Bile Duct Fibroma 6 106884 -NCIT:C5854 Extrahepatic Bile Duct Lipoma 6 106885 -NCIT:C5855 Extrahepatic Bile Duct Leiomyoma 6 106886 -NCIT:C173117 Sinonasal Soft Tissue Neoplasm 4 106887 -NCIT:C173132 Intermediate Sinonasal Soft Tissue Neoplasm 5 106888 -NCIT:C173133 Sinonasal Desmoid Fibromatosis 6 106889 -NCIT:C173136 Sinonasal Glomangiopericytoma 6 106890 -NCIT:C173137 Sinonasal Solitary Fibrous Tumor 6 106891 -NCIT:C173139 Benign Sinonasal Soft Tissue Neoplasm 5 106892 -NCIT:C173140 Sinonasal Leiomyoma 6 106893 -NCIT:C173142 Sinonasal Hemangioma 6 106894 -NCIT:C190160 Sinonasal Tract Myxoma 6 106895 -NCIT:C173176 Malignant Sinonasal Soft Tissue Neoplasm 5 106896 -NCIT:C173118 Sinonasal Sarcoma 6 106897 -NCIT:C164205 Biphenotypic Sinonasal Sarcoma 7 106898 -NCIT:C173120 Sinonasal Fibrosarcoma 7 106899 -NCIT:C173121 Sinonasal Undifferentiated Pleomorphic Sarcoma 7 106900 -NCIT:C173123 Sinonasal Leiomyosarcoma 7 106901 -NCIT:C173124 Sinonasal Rhabdomyosarcoma 7 106902 -NCIT:C173125 Sinonasal Angiosarcoma 7 106903 -NCIT:C173127 Sinonasal Malignant Peripheral Nerve Sheath Tumor 7 106904 -NCIT:C173128 Sinonasal Synovial Sarcoma 7 106905 -NCIT:C6849 Paranasal Sinus Sarcoma 7 106906 -NCIT:C6850 High Grade Paranasal Sinus Sarcoma 8 106907 -NCIT:C6851 Low Grade Paranasal Sinus Sarcoma 8 106908 -NCIT:C173138 Sinonasal Epithelioid Hemangioendothelioma 6 106909 -NCIT:C173175 Sinonasal Ewing Sarcoma/Peripheral Primitive Neuroectodermal Tumor 6 106910 -NCIT:C173397 Laryngeal Soft Tissue Neoplasm 4 106911 -NCIT:C173399 Benign Laryngeal Soft Tissue Neoplasm 5 106912 -NCIT:C6026 Subglottic Hemangioma 6 106913 -NCIT:C6027 Laryngeal Leiomyoma 6 106914 -NCIT:C173400 Malignant Laryngeal Soft Tissue Neoplasm 5 106915 -NCIT:C173408 Laryngeal Soft Tissue Sarcoma 6 106916 -NCIT:C6021 Laryngeal Liposarcoma 7 106917 -NCIT:C6022 Laryngeal Leiomyosarcoma 7 106918 -NCIT:C173402 Laryngeal Inflammatory Myofibroblastic Tumor 5 106919 -NCIT:C173405 Laryngeal Granular Cell Tumor 5 106920 -NCIT:C173479 Oral Cavity Soft Tissue Neoplasm 4 106921 -NCIT:C173480 Benign Oral Cavity Soft Tissue Neoplasm 5 106922 -NCIT:C27478 Gingival Angiofibroma 6 106923 -NCIT:C3950 Oral Mucosa Lobular Capillary Hemangioma 6 106924 -NCIT:C4831 Gingival Hemangioma 6 106925 -NCIT:C5909 Oral Cavity Leiomyoma 6 106926 -NCIT:C5910 Oral Cavity Lipoma 6 106927 -NCIT:C7734 Tongue Lipoma 7 106928 -NCIT:C173481 Oral Cavity Soft Tissue Sarcoma 5 106929 -NCIT:C156274 Tongue Sarcoma 6 106930 -NCIT:C156273 Tongue Alveolar Soft Part Sarcoma' 7 106931 -NCIT:C173404 Tongue Liposarcoma 7 106932 -NCIT:C173477 Oral Cavity Kaposi Sarcoma 6 106933 -NCIT:C6749 Palate Kaposi Sarcoma 7 106934 -NCIT:C173478 Oral Cavity Low Grade Myofibroblastic Sarcoma 6 106935 -NCIT:C40126 Fallopian Tube Soft Tissue Neoplasm 4 106936 -NCIT:C40125 Fallopian Tube Adenosarcoma 5 106937 -NCIT:C40127 Fallopian Tube Leiomyoma 5 106938 -NCIT:C40128 Fallopian Tube Leiomyosarcoma 5 106939 -NCIT:C40179 Uterine Corpus Soft Tissue Neoplasm 4 106940 -NCIT:C180545 Uterine Corpus Inflammatory Myofibroblastic Tumor 5 106941 -NCIT:C40176 Uterine Corpus Smooth Muscle Neoplasm 5 106942 -NCIT:C3434 Uterine Corpus Leiomyoma 6 106943 -NCIT:C126975 Uterine Corpus Hydropic Leiomyoma 7 106944 -NCIT:C3511 Uterine Corpus Degenerated Leiomyoma 7 106945 -NCIT:C40162 Uterine Corpus Leiomyoma, Mitotically Active Variant 7 106946 -NCIT:C40163 Uterine Corpus Cellular Leiomyoma 7 106947 -NCIT:C40164 Uterine Corpus Epithelioid Leiomyoma 7 106948 -NCIT:C40165 Uterine Corpus Apoplectic Leiomyoma 7 106949 -NCIT:C40166 Uterine Corpus Myxoid Leiomyoma 7 106950 -NCIT:C40167 Uterine Corpus Bizarre Leiomyoma 7 106951 -NCIT:C40168 Uterine Corpus Lipoleiomyoma 7 106952 -NCIT:C40170 Uterine Corpus Diffuse Leiomyomatosis 7 106953 -NCIT:C40172 Uterine Corpus Dissecting Leiomyoma 7 106954 -NCIT:C40173 Uterine Corpus Metastasizing Leiomyoma 7 106955 -NCIT:C5356 Uterine Corpus Intravenous Leiomyomatosis 7 106956 -NCIT:C40177 Uterine Corpus Smooth Muscle Tumor of Uncertain Malignant Potential 6 106957 -NCIT:C180540 Uterine Corpus Spindle Smooth Muscle Tumor of Uncertain Malignant Potential 7 106958 -NCIT:C180541 Uterine Corpus Myxoid Smooth Muscle Tumor of Uncertain Malignant Potential 7 106959 -NCIT:C180542 Uterine Corpus Epithelioid Smooth Muscle Tumor of Uncertain Malignant Potential 7 106960 -NCIT:C6340 Uterine Corpus Leiomyosarcoma 6 106961 -NCIT:C139870 Uterine Corpus Leiomyosarcoma by AJCC v8 Stage 7 106962 -NCIT:C139871 Stage I Uterine Corpus Leiomyosarcoma AJCC v8 8 106963 -NCIT:C139872 Stage IA Uterine Corpus Leiomyosarcoma AJCC v8 9 106964 -NCIT:C139873 Stage IB Uterine Corpus Leiomyosarcoma AJCC v8 9 106965 -NCIT:C139874 Stage II Uterine Corpus Leiomyosarcoma AJCC v8 8 106966 -NCIT:C139875 Stage III Uterine Corpus Leiomyosarcoma AJCC v8 8 106967 -NCIT:C139876 Stage IIIA Uterine Corpus Leiomyosarcoma AJCC v8 9 106968 -NCIT:C139877 Stage IIIB Uterine Corpus Leiomyosarcoma AJCC v8 9 106969 -NCIT:C139878 Stage IIIC Uterine Corpus Leiomyosarcoma AJCC v8 9 106970 -NCIT:C139879 Stage IV Uterine Corpus Leiomyosarcoma AJCC v8 8 106971 -NCIT:C139880 Stage IVA Uterine Corpus Leiomyosarcoma AJCC v8 9 106972 -NCIT:C139881 Stage IVB Uterine Corpus Leiomyosarcoma AJCC v8 9 106973 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 7 106974 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 7 106975 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 106976 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 7 106977 -NCIT:C40174 Uterine Corpus Epithelioid Leiomyosarcoma 7 106978 -NCIT:C40175 Uterine Corpus Myxoid Leiomyosarcoma 7 106979 -NCIT:C40178 Mixed Endometrial Stromal and Smooth Muscle Neoplasm 5 106980 -NCIT:C40180 Uterine Corpus PEComa 5 106981 -NCIT:C127071 Benign Uterine Corpus PEComa 6 106982 -NCIT:C127072 Uterine Corpus Malignant PEComa 6 106983 -NCIT:C40217 Uterine Corpus Endometrial Stromal and Related Neoplasms 5 106984 -NCIT:C127005 Uterine Corpus Tumor Resembling Ovarian Sex Cord Tumor 6 106985 -NCIT:C40219 Uterine Corpus Endometrial Stromal Sarcoma 6 106986 -NCIT:C126998 Uterine Corpus High Grade Endometrial Stromal Sarcoma 7 106987 -NCIT:C139882 Uterine Corpus Endometrial Stromal Sarcoma by AJCC v8 Stage 7 106988 -NCIT:C139883 Stage I Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 8 106989 -NCIT:C139884 Stage IA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 106990 -NCIT:C139885 Stage IB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 106991 -NCIT:C139886 Stage II Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 8 106992 -NCIT:C139887 Stage III Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 8 106993 -NCIT:C139888 Stage IIIA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 106994 -NCIT:C139889 Stage IIIB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 106995 -NCIT:C139890 Stage IIIC Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 106996 -NCIT:C139891 Stage IV Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 8 106997 -NCIT:C139892 Stage IVA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 106998 -NCIT:C139893 Stage IVB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 106999 -NCIT:C40223 Uterine Corpus Low Grade Endometrial Stromal Sarcoma 7 107000 -NCIT:C4262 Endometrial Stromal Nodule 6 107001 -NCIT:C8972 Uterine Corpus Undifferentiated Sarcoma 6 107002 -NCIT:C6339 Uterine Corpus Sarcoma 5 107003 -NCIT:C127058 Uterine Corpus Rhabdomyosarcoma 6 107004 -NCIT:C136708 Uterine Corpus Sarcoma by AJCC v7 Stage 6 107005 -NCIT:C8258 Stage I Uterine Sarcoma AJCC v7 7 107006 -NCIT:C87132 Stage IA Uterine Sarcoma AJCC v7 8 107007 -NCIT:C87133 Stage IB Uterine Sarcoma AJCC v7 8 107008 -NCIT:C87134 Stage IC Uterine Sarcoma AJCC v7 8 107009 -NCIT:C8259 Stage II Uterine Sarcoma AJCC v7 7 107010 -NCIT:C115130 Stage IIA Uterine Sarcoma AJCC v7 8 107011 -NCIT:C115131 Stage IIB Uterine Sarcoma AJCC v7 8 107012 -NCIT:C8260 Stage III Uterine Sarcoma AJCC v7 7 107013 -NCIT:C87135 Stage IIIA Uterine Sarcoma AJCC v7 8 107014 -NCIT:C87137 Stage IIIB Uterine Sarcoma AJCC v7 8 107015 -NCIT:C87138 Stage IIIC Uterine Sarcoma AJCC v7 8 107016 -NCIT:C9179 Stage IV Uterine Sarcoma AJCC v7 7 107017 -NCIT:C87140 Stage IVA Uterine Sarcoma AJCC v7 8 107018 -NCIT:C87144 Stage IVB Uterine Sarcoma AJCC v7 8 107019 -NCIT:C139869 Uterine Corpus Sarcoma by AJCC v8 Stage 6 107020 -NCIT:C139870 Uterine Corpus Leiomyosarcoma by AJCC v8 Stage 7 107021 -NCIT:C139871 Stage I Uterine Corpus Leiomyosarcoma AJCC v8 8 107022 -NCIT:C139872 Stage IA Uterine Corpus Leiomyosarcoma AJCC v8 9 107023 -NCIT:C139873 Stage IB Uterine Corpus Leiomyosarcoma AJCC v8 9 107024 -NCIT:C139874 Stage II Uterine Corpus Leiomyosarcoma AJCC v8 8 107025 -NCIT:C139875 Stage III Uterine Corpus Leiomyosarcoma AJCC v8 8 107026 -NCIT:C139876 Stage IIIA Uterine Corpus Leiomyosarcoma AJCC v8 9 107027 -NCIT:C139877 Stage IIIB Uterine Corpus Leiomyosarcoma AJCC v8 9 107028 -NCIT:C139878 Stage IIIC Uterine Corpus Leiomyosarcoma AJCC v8 9 107029 -NCIT:C139879 Stage IV Uterine Corpus Leiomyosarcoma AJCC v8 8 107030 -NCIT:C139880 Stage IVA Uterine Corpus Leiomyosarcoma AJCC v8 9 107031 -NCIT:C139881 Stage IVB Uterine Corpus Leiomyosarcoma AJCC v8 9 107032 -NCIT:C139882 Uterine Corpus Endometrial Stromal Sarcoma by AJCC v8 Stage 7 107033 -NCIT:C139883 Stage I Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 8 107034 -NCIT:C139884 Stage IA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 107035 -NCIT:C139885 Stage IB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 107036 -NCIT:C139886 Stage II Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 8 107037 -NCIT:C139887 Stage III Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 8 107038 -NCIT:C139888 Stage IIIA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 107039 -NCIT:C139889 Stage IIIB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 107040 -NCIT:C139890 Stage IIIC Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 107041 -NCIT:C139891 Stage IV Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 8 107042 -NCIT:C139892 Stage IVA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 107043 -NCIT:C139893 Stage IVB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 107044 -NCIT:C139894 Uterine Corpus Adenosarcoma by AJCC v8 Stage 7 107045 -NCIT:C139895 Stage I Uterine Corpus Adenosarcoma AJCC v8 8 107046 -NCIT:C139896 Stage IA Uterine Corpus Adenosarcoma AJCC v8 9 107047 -NCIT:C139897 Stage IB Uterine Corpus Adenosarcoma AJCC v8 9 107048 -NCIT:C139898 Stage IC Uterine Corpus Adenosarcoma AJCC v8 9 107049 -NCIT:C139899 Stage II Uterine Corpus Adenosarcoma AJCC v8 8 107050 -NCIT:C139900 Stage III Uterine Corpus Adenosarcoma AJCC v8 8 107051 -NCIT:C139901 Stage IIIA Uterine Corpus Adenosarcoma AJCC v8 9 107052 -NCIT:C139902 Stage IIIB Uterine Corpus Adenosarcoma AJCC v8 9 107053 -NCIT:C139903 Stage IIIC Uterine Corpus Adenosarcoma AJCC v8 9 107054 -NCIT:C139904 Stage IV Uterine Corpus Adenosarcoma AJCC v8 8 107055 -NCIT:C139905 Stage IVA Uterine Corpus Adenosarcoma AJCC v8 9 107056 -NCIT:C139906 Stage IVB Uterine Corpus Adenosarcoma AJCC v8 9 107057 -NCIT:C180546 Uterine Corpus Central Primitive Neuroectodermal Tumor 6 107058 -NCIT:C190009 Metastatic Uterine Corpus Sarcoma 6 107059 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 7 107060 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 107061 -NCIT:C190016 Unresectable Uterine Corpus Sarcoma 6 107062 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 7 107063 -NCIT:C40219 Uterine Corpus Endometrial Stromal Sarcoma 6 107064 -NCIT:C126998 Uterine Corpus High Grade Endometrial Stromal Sarcoma 7 107065 -NCIT:C139882 Uterine Corpus Endometrial Stromal Sarcoma by AJCC v8 Stage 7 107066 -NCIT:C139883 Stage I Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 8 107067 -NCIT:C139884 Stage IA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 107068 -NCIT:C139885 Stage IB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 107069 -NCIT:C139886 Stage II Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 8 107070 -NCIT:C139887 Stage III Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 8 107071 -NCIT:C139888 Stage IIIA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 107072 -NCIT:C139889 Stage IIIB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 107073 -NCIT:C139890 Stage IIIC Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 107074 -NCIT:C139891 Stage IV Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 8 107075 -NCIT:C139892 Stage IVA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 107076 -NCIT:C139893 Stage IVB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 107077 -NCIT:C40223 Uterine Corpus Low Grade Endometrial Stromal Sarcoma 7 107078 -NCIT:C6336 Uterine Corpus Adenosarcoma 6 107079 -NCIT:C139894 Uterine Corpus Adenosarcoma by AJCC v8 Stage 7 107080 -NCIT:C139895 Stage I Uterine Corpus Adenosarcoma AJCC v8 8 107081 -NCIT:C139896 Stage IA Uterine Corpus Adenosarcoma AJCC v8 9 107082 -NCIT:C139897 Stage IB Uterine Corpus Adenosarcoma AJCC v8 9 107083 -NCIT:C139898 Stage IC Uterine Corpus Adenosarcoma AJCC v8 9 107084 -NCIT:C139899 Stage II Uterine Corpus Adenosarcoma AJCC v8 8 107085 -NCIT:C139900 Stage III Uterine Corpus Adenosarcoma AJCC v8 8 107086 -NCIT:C139901 Stage IIIA Uterine Corpus Adenosarcoma AJCC v8 9 107087 -NCIT:C139902 Stage IIIB Uterine Corpus Adenosarcoma AJCC v8 9 107088 -NCIT:C139903 Stage IIIC Uterine Corpus Adenosarcoma AJCC v8 9 107089 -NCIT:C139904 Stage IV Uterine Corpus Adenosarcoma AJCC v8 8 107090 -NCIT:C139905 Stage IVA Uterine Corpus Adenosarcoma AJCC v8 9 107091 -NCIT:C139906 Stage IVB Uterine Corpus Adenosarcoma AJCC v8 9 107092 -NCIT:C6340 Uterine Corpus Leiomyosarcoma 6 107093 -NCIT:C139870 Uterine Corpus Leiomyosarcoma by AJCC v8 Stage 7 107094 -NCIT:C139871 Stage I Uterine Corpus Leiomyosarcoma AJCC v8 8 107095 -NCIT:C139872 Stage IA Uterine Corpus Leiomyosarcoma AJCC v8 9 107096 -NCIT:C139873 Stage IB Uterine Corpus Leiomyosarcoma AJCC v8 9 107097 -NCIT:C139874 Stage II Uterine Corpus Leiomyosarcoma AJCC v8 8 107098 -NCIT:C139875 Stage III Uterine Corpus Leiomyosarcoma AJCC v8 8 107099 -NCIT:C139876 Stage IIIA Uterine Corpus Leiomyosarcoma AJCC v8 9 107100 -NCIT:C139877 Stage IIIB Uterine Corpus Leiomyosarcoma AJCC v8 9 107101 -NCIT:C139878 Stage IIIC Uterine Corpus Leiomyosarcoma AJCC v8 9 107102 -NCIT:C139879 Stage IV Uterine Corpus Leiomyosarcoma AJCC v8 8 107103 -NCIT:C139880 Stage IVA Uterine Corpus Leiomyosarcoma AJCC v8 9 107104 -NCIT:C139881 Stage IVB Uterine Corpus Leiomyosarcoma AJCC v8 9 107105 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 7 107106 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 7 107107 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 107108 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 7 107109 -NCIT:C40174 Uterine Corpus Epithelioid Leiomyosarcoma 7 107110 -NCIT:C40175 Uterine Corpus Myxoid Leiomyosarcoma 7 107111 -NCIT:C8261 Recurrent Uterine Corpus Sarcoma 6 107112 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 7 107113 -NCIT:C8972 Uterine Corpus Undifferentiated Sarcoma 6 107114 -NCIT:C40216 Cervical Soft Tissue Neoplasm 4 107115 -NCIT:C128053 Benign Cervical Soft Tissue Neoplasm 5 107116 -NCIT:C128046 Cervical Leiomyoma 6 107117 -NCIT:C40266 Cervical Rhabdomyoma 6 107118 -NCIT:C128054 Malignant Cervical Soft Tissue Neoplasm 5 107119 -NCIT:C128047 Cervical Leiomyosarcoma 6 107120 -NCIT:C128048 Cervical Rhabdomyosarcoma 6 107121 -NCIT:C128049 Cervical Angiosarcoma 6 107122 -NCIT:C128050 Cervical Malignant Peripheral Nerve Sheath Tumor 6 107123 -NCIT:C40222 Cervical Low Grade Endometrioid Stromal Sarcoma 6 107124 -NCIT:C40224 Endocervical Undifferentiated Sarcoma 6 107125 -NCIT:C40225 Cervical Alveolar Soft Part Sarcoma 6 107126 -NCIT:C40229 Cervical Adenosarcoma 6 107127 -NCIT:C7433 AIDS-Related Cervical Kaposi Sarcoma 6 107128 -NCIT:C40218 Cervical Endometrioid Stromal and Related Neoplasms 5 107129 -NCIT:C40222 Cervical Low Grade Endometrioid Stromal Sarcoma 6 107130 -NCIT:C40224 Endocervical Undifferentiated Sarcoma 6 107131 -NCIT:C40265 Vaginal Soft Tissue Neoplasm 4 107132 -NCIT:C128079 Vaginal Superficial Myofibroblastoma 5 107133 -NCIT:C181936 Vaginal Solitary Fibrous Tumor 5 107134 -NCIT:C181940 Vaginal Smooth Muscle Tumor of Uncertain Malignant Potential 5 107135 -NCIT:C40269 Vaginal Endometrioid Stromal and Related Neoplasms 5 107136 -NCIT:C40271 Vaginal Low Grade Endometrioid Stromal Sarcoma 6 107137 -NCIT:C40272 Vaginal Undifferentiated Sarcoma 6 107138 -NCIT:C40273 Vaginal Deep (Aggressive) Angiomyxoma 5 107139 -NCIT:C45445 Vaginal Angiomyofibroblastoma 5 107140 -NCIT:C6372 Vaginal Rhabdomyoma 5 107141 -NCIT:C6373 Vaginal Leiomyoma 5 107142 -NCIT:C7737 Vaginal Sarcoma 5 107143 -NCIT:C128080 Vaginal Rhabdomyosarcoma 6 107144 -NCIT:C40268 Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 7 107145 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 8 107146 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 8 107147 -NCIT:C40271 Vaginal Low Grade Endometrioid Stromal Sarcoma 6 107148 -NCIT:C40272 Vaginal Undifferentiated Sarcoma 6 107149 -NCIT:C40277 Vaginal Adenosarcoma 6 107150 -NCIT:C6326 Vaginal Leiomyosarcoma 6 107151 -NCIT:C40316 Vulvar Soft Tissue Neoplasm 4 107152 -NCIT:C128270 Vulvar Lipoma 5 107153 -NCIT:C128271 Vulvar Fibrolipoma 6 107154 -NCIT:C128272 Vulvar Superficial Myofibroblastoma 5 107155 -NCIT:C181925 Vulvar Lipoblastoma-Like Tumor 5 107156 -NCIT:C181926 Vulvar Prepubertal Fibroma 5 107157 -NCIT:C181935 Vulvar Solitary Fibrous Tumor 5 107158 -NCIT:C181939 Vulvar Smooth Muscle Tumor of Uncertain Malignant Potential 5 107159 -NCIT:C181942 Vulvar Rhabdomyoma 5 107160 -NCIT:C40317 Vulvar Sarcoma 5 107161 -NCIT:C176515 Vulvar Angiosarcoma 6 107162 -NCIT:C181938 Vulvar Kaposi Sarcoma 6 107163 -NCIT:C181944 Vulvar Rhabdomyosarcoma 6 107164 -NCIT:C128273 Vulvar Alveolar Rhabdomyosarcoma 7 107165 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 7 107166 -NCIT:C181971 Vulvar Epithelioid Sarcoma 6 107167 -NCIT:C181973 Vulvar Distal-Type Epithelioid Sarcoma 7 107168 -NCIT:C40319 Vulvar Proximal-Type Epithelioid Sarcoma 7 107169 -NCIT:C181977 Vulvar Ewing Sarcoma 6 107170 -NCIT:C40318 Vulvar Leiomyosarcoma 6 107171 -NCIT:C40320 Vulvar Alveolar Soft Part Sarcoma 6 107172 -NCIT:C40321 Vulvar Liposarcoma 6 107173 -NCIT:C40325 Vulvar Angiomyxoma 5 107174 -NCIT:C40322 Vulvar Deep (Aggressive) Angiomyxoma 6 107175 -NCIT:C40324 Vulvar Superficial Angiomyxoma 6 107176 -NCIT:C40326 Vulvar Leiomyoma 5 107177 -NCIT:C40327 Vulvar Cellular Angiofibroma 5 107178 -NCIT:C45446 Vulvar Angiomyofibroblastoma 5 107179 -NCIT:C40392 Myoepithelial Tumor 4 107180 -NCIT:C142828 Lung Myoepithelial Tumor 5 107181 -NCIT:C142829 Lung Myoepithelioma 6 107182 -NCIT:C142830 Lung Myoepithelial Carcinoma 6 107183 -NCIT:C189001 Childhood Myoepithelial Tumor 5 107184 -NCIT:C40389 Breast Myoepithelial Tumor 5 107185 -NCIT:C40385 Breast Myoepitheliosis 6 107186 -NCIT:C40386 Breast Atypical Myoepitheliosis 7 107187 -NCIT:C40387 Breast Intraductal Myoepitheliosis 7 107188 -NCIT:C40388 Breast Periductal Myoepitheliosis 7 107189 -NCIT:C40395 Breast Malignant Myoepithelioma 6 107190 -NCIT:C6899 Breast Adenomyoepithelioma 6 107191 -NCIT:C5143 Malignant Breast Adenomyoepithelioma 7 107192 -NCIT:C5144 Benign Breast Adenomyoepithelioma 7 107193 -NCIT:C40393 Salivary Gland Myoepithelial Tumor 5 107194 -NCIT:C35700 Salivary Gland Myoepithelial Carcinoma 6 107195 -NCIT:C5978 Salivary Gland Myoepithelioma 6 107196 -NCIT:C6581 Parachordoma 5 107197 -NCIT:C6720 Chest Wall Parachordoma 6 107198 -NCIT:C7442 Benign Myoepithelioma 5 107199 -NCIT:C121785 Ectomesenchymal Chondromyxoid Tumor 6 107200 -NCIT:C121786 Mixed Tumor, Not Otherwise Specified 6 107201 -NCIT:C142829 Lung Myoepithelioma 6 107202 -NCIT:C167370 Skin Myoepithelioma 6 107203 -NCIT:C175272 Lacrimal Gland Myoepithelioma 6 107204 -NCIT:C5978 Salivary Gland Myoepithelioma 6 107205 -NCIT:C7596 Malignant Myoepithelioma 5 107206 -NCIT:C121787 Malignant Mixed Tumor, Not Otherwise Specified 6 107207 -NCIT:C142830 Lung Myoepithelial Carcinoma 6 107208 -NCIT:C162732 Recurrent Malignant Myoepithelioma 6 107209 -NCIT:C162733 Refractory Malignant Myoepithelioma 6 107210 -NCIT:C175274 Lacrimal Gland Myoepithelial Carcinoma 6 107211 -NCIT:C35700 Salivary Gland Myoepithelial Carcinoma 6 107212 -NCIT:C40395 Breast Malignant Myoepithelioma 6 107213 -NCIT:C40406 Breast Soft Tissue Neoplasm 4 107214 -NCIT:C176253 Breast Nodular Fasciitis 5 107215 -NCIT:C179218 Breast Periductal Stromal Tumor 5 107216 -NCIT:C40389 Breast Myoepithelial Tumor 5 107217 -NCIT:C40385 Breast Myoepitheliosis 6 107218 -NCIT:C40386 Breast Atypical Myoepitheliosis 7 107219 -NCIT:C40387 Breast Intraductal Myoepitheliosis 7 107220 -NCIT:C40388 Breast Periductal Myoepitheliosis 7 107221 -NCIT:C40395 Breast Malignant Myoepithelioma 6 107222 -NCIT:C6899 Breast Adenomyoepithelioma 6 107223 -NCIT:C5143 Malignant Breast Adenomyoepithelioma 7 107224 -NCIT:C5144 Benign Breast Adenomyoepithelioma 7 107225 -NCIT:C40397 Breast Myofibroblastoma 5 107226 -NCIT:C40398 Breast Inflammatory Myofibroblastic Tumor 5 107227 -NCIT:C40399 Breast Leiomyoma 5 107228 -NCIT:C40400 Breast Granular Cell Tumor 5 107229 -NCIT:C4647 Breast Lipoma 5 107230 -NCIT:C176255 Breast Angiolipoma 6 107231 -NCIT:C4670 Breast Sarcoma 5 107232 -NCIT:C170727 Recurrent Breast Sarcoma 6 107233 -NCIT:C133092 Recurrent Breast Angiosarcoma 7 107234 -NCIT:C5184 Breast Angiosarcoma 6 107235 -NCIT:C133092 Recurrent Breast Angiosarcoma 7 107236 -NCIT:C176251 Primary Breast Angiosarcoma 7 107237 -NCIT:C40378 Postradiation Breast Angiosarcoma 7 107238 -NCIT:C5185 Breast Fibrosarcoma 6 107239 -NCIT:C5186 Breast Leiomyosarcoma 6 107240 -NCIT:C5187 Breast Liposarcoma 6 107241 -NCIT:C5189 Breast Extraskeletal Osteosarcoma 6 107242 -NCIT:C5190 Breast Rhabdomyosarcoma 6 107243 -NCIT:C5209 Breast Vascular Neoplasm 5 107244 -NCIT:C40381 Breast Angiomatosis 6 107245 -NCIT:C5184 Breast Angiosarcoma 6 107246 -NCIT:C133092 Recurrent Breast Angiosarcoma 7 107247 -NCIT:C176251 Primary Breast Angiosarcoma 7 107248 -NCIT:C40378 Postradiation Breast Angiosarcoma 7 107249 -NCIT:C5353 Breast Hemangioma 6 107250 -NCIT:C5210 Breast Capillary Hemangioma 7 107251 -NCIT:C5211 Breast Epithelioid Hemangioma 7 107252 -NCIT:C4242 Benign Soft Tissue Neoplasm 4 107253 -NCIT:C128270 Vulvar Lipoma 5 107254 -NCIT:C128271 Vulvar Fibrolipoma 6 107255 -NCIT:C162503 Paratesticular Hemangioma 5 107256 -NCIT:C162590 Penile Myointimoma 5 107257 -NCIT:C172945 Digestive System Lipoma 5 107258 -NCIT:C43576 Appendix Lipoma 6 107259 -NCIT:C5258 Gastric Lipoma 6 107260 -NCIT:C5339 Small Intestinal Lipoma 6 107261 -NCIT:C5678 Colorectal Lipoma 6 107262 -NCIT:C5493 Colon Lipoma 7 107263 -NCIT:C5551 Rectal Lipoma 7 107264 -NCIT:C5701 Esophageal Lipoma 6 107265 -NCIT:C5750 Liver Lipoma 6 107266 -NCIT:C5835 Gallbladder Lipoma 6 107267 -NCIT:C5854 Extrahepatic Bile Duct Lipoma 6 107268 -NCIT:C173139 Benign Sinonasal Soft Tissue Neoplasm 5 107269 -NCIT:C173140 Sinonasal Leiomyoma 6 107270 -NCIT:C173142 Sinonasal Hemangioma 6 107271 -NCIT:C190160 Sinonasal Tract Myxoma 6 107272 -NCIT:C173399 Benign Laryngeal Soft Tissue Neoplasm 5 107273 -NCIT:C6026 Subglottic Hemangioma 6 107274 -NCIT:C6027 Laryngeal Leiomyoma 6 107275 -NCIT:C173480 Benign Oral Cavity Soft Tissue Neoplasm 5 107276 -NCIT:C27478 Gingival Angiofibroma 6 107277 -NCIT:C3950 Oral Mucosa Lobular Capillary Hemangioma 6 107278 -NCIT:C4831 Gingival Hemangioma 6 107279 -NCIT:C5909 Oral Cavity Leiomyoma 6 107280 -NCIT:C5910 Oral Cavity Lipoma 6 107281 -NCIT:C7734 Tongue Lipoma 7 107282 -NCIT:C181925 Vulvar Lipoblastoma-Like Tumor 5 107283 -NCIT:C27127 Benign Skin Vascular Neoplasm 5 107284 -NCIT:C27509 Skin Lymphangioma 6 107285 -NCIT:C162592 Penile Lymphangioma 7 107286 -NCIT:C4905 Skin Hemangioma 6 107287 -NCIT:C162579 Penile Hemangioma 7 107288 -NCIT:C162580 Penile Epithelioid Hemangioma 8 107289 -NCIT:C34967 Lobular Capillary Hemangioma of Skin and Subcutaneous Tissue 7 107290 -NCIT:C3926 Angioma Serpiginosum 7 107291 -NCIT:C4299 Verrucous Hemangioma 7 107292 -NCIT:C4390 Cherry Hemangioma 7 107293 -NCIT:C4372 Cherry Hemangioma of Lip 8 107294 -NCIT:C4487 Tufted Angioma 7 107295 -NCIT:C4750 Skin Cavernous Hemangioma 7 107296 -NCIT:C6387 Scrotal Hemangioma 7 107297 -NCIT:C7393 Skin Epithelioid Hemangioma 7 107298 -NCIT:C162580 Penile Epithelioid Hemangioma 8 107299 -NCIT:C27438 Benign Gastric Soft Tissue Neoplasm 5 107300 -NCIT:C3876 Gastric Leiomyoma 6 107301 -NCIT:C5258 Gastric Lipoma 6 107302 -NCIT:C5481 Gastric Hemangioma 6 107303 -NCIT:C5482 Gastric Lymphangioma 6 107304 -NCIT:C95895 Benign Gastric Gastrointestinal Stromal Tumor 6 107305 -NCIT:C95902 Gastric Plexiform Fibromyxoma 6 107306 -NCIT:C3829 Benign Synovial Neoplasm 5 107307 -NCIT:C3401 Tenosynovial Giant Cell Tumor, Diffuse Type 6 107308 -NCIT:C34467 Synovial Chondromatosis 6 107309 -NCIT:C6525 Synovial Hemangioma 6 107310 -NCIT:C6532 Tenosynovial Giant Cell Tumor, Localized Type 6 107311 -NCIT:C40381 Breast Angiomatosis 5 107312 -NCIT:C4262 Endometrial Stromal Nodule 5 107313 -NCIT:C43323 Benign Pilar-Associated Mesenchyme Neoplasm 5 107314 -NCIT:C27526 Follicular Myxoma 6 107315 -NCIT:C43331 Fibrofolliculoma 6 107316 -NCIT:C43332 Pilar Leiomyoma 6 107317 -NCIT:C43333 Spindle-Cell Predominant Trichodiscoma 6 107318 -NCIT:C4470 Perifollicular Fibroma 6 107319 -NCIT:C4616 Skin Lipoma 5 107320 -NCIT:C170474 Skin Spindle Cell/Pleomorphic Lipoma 6 107321 -NCIT:C170475 Skin Spindle Cell Lipoma 7 107322 -NCIT:C170476 Skin Pleomorphic Lipoma 7 107323 -NCIT:C170478 Skin Angiolipoma 6 107324 -NCIT:C4647 Breast Lipoma 5 107325 -NCIT:C176255 Breast Angiolipoma 6 107326 -NCIT:C4882 Benign Muscle Neoplasm 5 107327 -NCIT:C3358 Rhabdomyoma 6 107328 -NCIT:C188983 Childhood Rhabdomyoma 7 107329 -NCIT:C190104 Childhood Cardiac Rhabdomyoma 8 107330 -NCIT:C49166 Extracardiac Rhabdomyoma 7 107331 -NCIT:C162496 Paratesticular Rhabdomyoma 8 107332 -NCIT:C4260 Fetal Rhabdomyoma 8 107333 -NCIT:C27480 Classic Rhabdomyoma 9 107334 -NCIT:C6518 Intermediate Rhabdomyoma 9 107335 -NCIT:C4261 Adult Extracardiac Rhabdomyoma 8 107336 -NCIT:C6517 Genital Rhabdomyoma 8 107337 -NCIT:C181942 Vulvar Rhabdomyoma 9 107338 -NCIT:C40266 Cervical Rhabdomyoma 9 107339 -NCIT:C6372 Vaginal Rhabdomyoma 9 107340 -NCIT:C6600 Mediastinal Rhabdomyoma 8 107341 -NCIT:C7000 Central Nervous System Rhabdomyoma 8 107342 -NCIT:C6739 Cardiac Rhabdomyoma 7 107343 -NCIT:C190104 Childhood Cardiac Rhabdomyoma 8 107344 -NCIT:C45747 Adult Cardiac Cellular Rhabdomyoma 8 107345 -NCIT:C49179 Conventional Cardiac Rhabdomyoma 8 107346 -NCIT:C6510 Benign Smooth Muscle Neoplasm 6 107347 -NCIT:C3157 Leiomyoma 7 107348 -NCIT:C128046 Cervical Leiomyoma 8 107349 -NCIT:C156346 Thyroid Gland Leiomyoma 8 107350 -NCIT:C159209 Kidney Leiomyoma 8 107351 -NCIT:C162494 Paratesticular Leiomyoma 8 107352 -NCIT:C161638 Seminal Vesicle Leiomyoma 9 107353 -NCIT:C162583 Penile Leiomyoma 8 107354 -NCIT:C172942 Digestive System Leiomyoma 8 107355 -NCIT:C3866 Esophageal Leiomyoma 9 107356 -NCIT:C3876 Gastric Leiomyoma 9 107357 -NCIT:C5514 Appendix Leiomyoma 9 107358 -NCIT:C5608 Anal Leiomyoma 9 107359 -NCIT:C5677 Colorectal Leiomyoma 9 107360 -NCIT:C5492 Colon Leiomyoma 10 107361 -NCIT:C5552 Rectal Leiomyoma 10 107362 -NCIT:C5747 Gallbladder Leiomyoma 9 107363 -NCIT:C5753 Liver Leiomyoma 9 107364 -NCIT:C5855 Extrahepatic Bile Duct Leiomyoma 9 107365 -NCIT:C7725 Small Intestinal Leiomyoma 9 107366 -NCIT:C173140 Sinonasal Leiomyoma 8 107367 -NCIT:C179360 Ovarian Leiomyoma 8 107368 -NCIT:C179923 Uterine Ligament Leiomyoma 8 107369 -NCIT:C179924 Broad Ligament Leiomyoma 9 107370 -NCIT:C188253 Adrenal Gland Leiomyoma 8 107371 -NCIT:C3434 Uterine Corpus Leiomyoma 8 107372 -NCIT:C126975 Uterine Corpus Hydropic Leiomyoma 9 107373 -NCIT:C3511 Uterine Corpus Degenerated Leiomyoma 9 107374 -NCIT:C40162 Uterine Corpus Leiomyoma, Mitotically Active Variant 9 107375 -NCIT:C40163 Uterine Corpus Cellular Leiomyoma 9 107376 -NCIT:C40164 Uterine Corpus Epithelioid Leiomyoma 9 107377 -NCIT:C40165 Uterine Corpus Apoplectic Leiomyoma 9 107378 -NCIT:C40166 Uterine Corpus Myxoid Leiomyoma 9 107379 -NCIT:C40167 Uterine Corpus Bizarre Leiomyoma 9 107380 -NCIT:C40168 Uterine Corpus Lipoleiomyoma 9 107381 -NCIT:C40170 Uterine Corpus Diffuse Leiomyomatosis 9 107382 -NCIT:C40172 Uterine Corpus Dissecting Leiomyoma 9 107383 -NCIT:C40173 Uterine Corpus Metastasizing Leiomyoma 9 107384 -NCIT:C5356 Uterine Corpus Intravenous Leiomyomatosis 9 107385 -NCIT:C3748 Leiomyomatosis 8 107386 -NCIT:C3958 Disseminated Peritoneal Leiomyomatosis 9 107387 -NCIT:C40170 Uterine Corpus Diffuse Leiomyomatosis 9 107388 -NCIT:C4518 Intravenous Leiomyomatosis 9 107389 -NCIT:C5356 Uterine Corpus Intravenous Leiomyomatosis 10 107390 -NCIT:C40127 Fallopian Tube Leiomyoma 8 107391 -NCIT:C40326 Vulvar Leiomyoma 8 107392 -NCIT:C40399 Breast Leiomyoma 8 107393 -NCIT:C4256 Cellular Leiomyoma 8 107394 -NCIT:C40163 Uterine Corpus Cellular Leiomyoma 9 107395 -NCIT:C4257 Bizarre Leiomyoma 8 107396 -NCIT:C40167 Uterine Corpus Bizarre Leiomyoma 9 107397 -NCIT:C4482 Skin Leiomyoma 8 107398 -NCIT:C43332 Pilar Leiomyoma 9 107399 -NCIT:C4483 Dartoic Leiomyoma 9 107400 -NCIT:C4560 Ciliary Body Leiomyoma 8 107401 -NCIT:C53964 Bone Leiomyoma 8 107402 -NCIT:C5544 Prostate Leiomyoma 8 107403 -NCIT:C5660 Lung Leiomyoma 8 107404 -NCIT:C5661 Endobronchial Leiomyoma 9 107405 -NCIT:C5909 Oral Cavity Leiomyoma 8 107406 -NCIT:C6027 Laryngeal Leiomyoma 8 107407 -NCIT:C6049 Tracheal Leiomyoma 8 107408 -NCIT:C6161 Ureter Leiomyoma 8 107409 -NCIT:C6171 Urethral Leiomyoma 8 107410 -NCIT:C6178 Bladder Leiomyoma 8 107411 -NCIT:C6373 Vaginal Leiomyoma 8 107412 -NCIT:C6512 Deep Leiomyoma 8 107413 -NCIT:C6598 Mediastinal Leiomyoma 8 107414 -NCIT:C6743 Pericardial Leiomyoma 8 107415 -NCIT:C67563 Myxoid Leiomyoma 8 107416 -NCIT:C40166 Uterine Corpus Myxoid Leiomyoma 9 107417 -NCIT:C6998 Central Nervous System Leiomyoma 8 107418 -NCIT:C6515 Benign Skeletal Muscle Neoplasm 6 107419 -NCIT:C49166 Extracardiac Rhabdomyoma 7 107420 -NCIT:C162496 Paratesticular Rhabdomyoma 8 107421 -NCIT:C4260 Fetal Rhabdomyoma 8 107422 -NCIT:C27480 Classic Rhabdomyoma 9 107423 -NCIT:C6518 Intermediate Rhabdomyoma 9 107424 -NCIT:C4261 Adult Extracardiac Rhabdomyoma 8 107425 -NCIT:C6517 Genital Rhabdomyoma 8 107426 -NCIT:C181942 Vulvar Rhabdomyoma 9 107427 -NCIT:C40266 Cervical Rhabdomyoma 9 107428 -NCIT:C6372 Vaginal Rhabdomyoma 9 107429 -NCIT:C6600 Mediastinal Rhabdomyoma 8 107430 -NCIT:C7000 Central Nervous System Rhabdomyoma 8 107431 -NCIT:C5063 Endobronchial Lipoma 5 107432 -NCIT:C5353 Breast Hemangioma 5 107433 -NCIT:C5210 Breast Capillary Hemangioma 6 107434 -NCIT:C5211 Breast Epithelioid Hemangioma 6 107435 -NCIT:C53998 Benign Gastrointestinal Stromal Tumor 5 107436 -NCIT:C95895 Benign Gastric Gastrointestinal Stromal Tumor 6 107437 -NCIT:C5657 Lung Myolipoma 5 107438 -NCIT:C5751 Liver Mesenchymal Hamartoma 5 107439 -NCIT:C5856 Benign Extrahepatic Bile Duct Soft Tissue Neoplasm 5 107440 -NCIT:C5853 Extrahepatic Bile Duct Fibroma 6 107441 -NCIT:C5854 Extrahepatic Bile Duct Lipoma 6 107442 -NCIT:C5855 Extrahepatic Bile Duct Leiomyoma 6 107443 -NCIT:C6384 Paratesticular Lipoma 5 107444 -NCIT:C3606 Spermatic Cord Lipoma 6 107445 -NCIT:C6571 Benign Extraskeletal Cartilaginous and Osseous Neoplasm 5 107446 -NCIT:C9482 Soft Tissue Chondroma 6 107447 -NCIT:C45629 Lung Chondroma 7 107448 -NCIT:C6596 Mediastinal Chondroma 7 107449 -NCIT:C7001 Central Nervous System Chondroma 7 107450 -NCIT:C6587 Benign Soft Tissue Tumor of Uncertain Differentiation 5 107451 -NCIT:C121713 Acral Fibromyxoma 6 107452 -NCIT:C121791 Benign PEComa 6 107453 -NCIT:C127071 Benign Uterine Corpus PEComa 7 107454 -NCIT:C142784 Benign Lung PEComa 7 107455 -NCIT:C38152 Lung Clear Cell Tumor 8 107456 -NCIT:C159674 Bladder Benign PEComa 7 107457 -NCIT:C3254 Angiomyxoma 6 107458 -NCIT:C40323 Superficial Angiomyxoma 7 107459 -NCIT:C40324 Vulvar Superficial Angiomyxoma 8 107460 -NCIT:C40325 Vulvar Angiomyxoma 7 107461 -NCIT:C40322 Vulvar Deep (Aggressive) Angiomyxoma 8 107462 -NCIT:C40324 Vulvar Superficial Angiomyxoma 8 107463 -NCIT:C6936 Deep (Aggressive) Angiomyxoma 7 107464 -NCIT:C162501 Paratesticular Deep (Aggressive) Angiomyxoma 8 107465 -NCIT:C40273 Vaginal Deep (Aggressive) Angiomyxoma 8 107466 -NCIT:C40322 Vulvar Deep (Aggressive) Angiomyxoma 8 107467 -NCIT:C53594 Pleomorphic Hyalinizing Angiectatic Tumor of Soft Parts 6 107468 -NCIT:C53595 Ectopic Hamartomatous Thymoma 6 107469 -NCIT:C6577 Myxoma 6 107470 -NCIT:C175495 Conjunctival Myxoma 7 107471 -NCIT:C190160 Sinonasal Tract Myxoma 7 107472 -NCIT:C5245 Ovarian Myxoma 7 107473 -NCIT:C6578 Skin Myxoma 7 107474 -NCIT:C27526 Follicular Myxoma 8 107475 -NCIT:C6579 Intramuscular Myxoma 7 107476 -NCIT:C53589 Cellular Myxoma 8 107477 -NCIT:C6580 Juxta-Articular Myxoma 7 107478 -NCIT:C7748 Cardiac Myxoma 7 107479 -NCIT:C3499 Atrial Myxoma 8 107480 -NCIT:C4791 Left Atrial Myxoma 9 107481 -NCIT:C4792 Right Atrial Myxoma 9 107482 -NCIT:C45748 Ventricular Myxoma 8 107483 -NCIT:C6593 Benign Mediastinal Soft Tissue Neoplasm 5 107484 -NCIT:C146987 Mediastinal Hemangioma 6 107485 -NCIT:C27488 Mediastinal Lipomatosis 6 107486 -NCIT:C6595 Mediastinal Lymphangioma 6 107487 -NCIT:C6596 Mediastinal Chondroma 6 107488 -NCIT:C6598 Mediastinal Leiomyoma 6 107489 -NCIT:C6599 Mediastinal Lipoma 6 107490 -NCIT:C6600 Mediastinal Rhabdomyoma 6 107491 -NCIT:C6757 Benign Central Nervous System Mesenchymal, Non-Meningothelial Neoplasm 5 107492 -NCIT:C129549 Intracranial Fibrous Histiocytoma 6 107493 -NCIT:C129551 Central Nervous System Myofibroblastoma 6 107494 -NCIT:C5451 Central Nervous System Lipoma 6 107495 -NCIT:C129538 Central Nervous System Angiolipoma 7 107496 -NCIT:C5424 Epidural Spinal Canal Angiolipoma 8 107497 -NCIT:C4619 Spinal Cord Lipoma 7 107498 -NCIT:C5444 Intracranial Lipoma 7 107499 -NCIT:C5452 Inner Ear Lipoma 8 107500 -NCIT:C6220 Cerebral Hemisphere Lipoma 8 107501 -NCIT:C5438 Corpus Callosum Lipoma 9 107502 -NCIT:C6997 Central Nervous System Hibernoma 7 107503 -NCIT:C6998 Central Nervous System Leiomyoma 6 107504 -NCIT:C7000 Central Nervous System Rhabdomyoma 6 107505 -NCIT:C7001 Central Nervous System Chondroma 6 107506 -NCIT:C7004 Central Nervous System Hemangioma 6 107507 -NCIT:C84621 Central Nervous System Cavernous Hemangioma 7 107508 -NCIT:C5432 Intracranial Cavernous Hemangioma 8 107509 -NCIT:C7147 Benign Fibroblastic Neoplasm 5 107510 -NCIT:C121154 Proliferative Myositis 6 107511 -NCIT:C172941 Inflammatory Fibroid Polyp 6 107512 -NCIT:C177278 EWSR1-SMAD3-Positive Fibroblastic Tumor 6 107513 -NCIT:C188965 Childhood EWSR1-SMAD3-Positive Fibroblastic Tumor 7 107514 -NCIT:C3041 Fibroma 6 107515 -NCIT:C170736 Pleomorphic Fibroma 7 107516 -NCIT:C181926 Vulvar Prepubertal Fibroma 7 107517 -NCIT:C27515 Desmoplastic Fibroblastoma 7 107518 -NCIT:C3498 Ovarian Fibroma 7 107519 -NCIT:C189288 Childhood Ovarian Fibroma 8 107520 -NCIT:C7291 Ovarian Cellular Fibroma 8 107521 -NCIT:C3740 Desmoplastic Fibroma 7 107522 -NCIT:C173900 Maxillofacial Desmoplastic Fibroma 8 107523 -NCIT:C3799 Angiofibroma 7 107524 -NCIT:C177323 Angiofibroma of Soft Tissue 8 107525 -NCIT:C27256 Giant Cell Angiofibroma 8 107526 -NCIT:C27257 Cellular Angiofibroma 8 107527 -NCIT:C162498 Paratesticular Cellular Angiofibroma 9 107528 -NCIT:C40327 Vulvar Cellular Angiofibroma 9 107529 -NCIT:C27478 Gingival Angiofibroma 8 107530 -NCIT:C27479 Nasopharyngeal Angiofibroma 8 107531 -NCIT:C3972 Prostate Fibroma 7 107532 -NCIT:C39951 Testicular Fibroma 7 107533 -NCIT:C4818 Calcifying Aponeurotic Fibroma 7 107534 -NCIT:C49017 Gardner Fibroma 7 107535 -NCIT:C5394 Solitary Adult Fibroma 7 107536 -NCIT:C5658 Lung Fibroma 7 107537 -NCIT:C5702 Esophageal Fibroma 7 107538 -NCIT:C5853 Extrahepatic Bile Duct Fibroma 7 107539 -NCIT:C6484 Dermal Fibroma 7 107540 -NCIT:C170889 Plaque-Like CD34-Positive Dermal Fibroma 8 107541 -NCIT:C4470 Perifollicular Fibroma 8 107542 -NCIT:C6486 Nuchal-Type Fibroma 8 107543 -NCIT:C6485 Tendon Sheath Fibroma 7 107544 -NCIT:C66761 Periosteal Fibroma 7 107545 -NCIT:C66764 Fascial Fibroma 7 107546 -NCIT:C6892 Cellular Fibroma 7 107547 -NCIT:C7291 Ovarian Cellular Fibroma 8 107548 -NCIT:C6947 Cardiac Fibroma 7 107549 -NCIT:C3253 Myositis Ossificans 6 107550 -NCIT:C3456 Inclusion Body Fibromatosis 6 107551 -NCIT:C3827 Nodular Fasciitis 6 107552 -NCIT:C173687 Salivary Gland Nodular Fasciitis 7 107553 -NCIT:C173688 Parotid Gland Nodular Fasciitis 8 107554 -NCIT:C176253 Breast Nodular Fasciitis 7 107555 -NCIT:C27248 Cranial Nodular Fasciitis 7 107556 -NCIT:C4729 Intravascular Nodular Fasciitis 7 107557 -NCIT:C48961 Subcutaneous Nodular Fasciitis 7 107558 -NCIT:C4245 Elastofibroma 6 107559 -NCIT:C4728 Proliferative Fasciitis 6 107560 -NCIT:C4811 Fibromatosis Colli 6 107561 -NCIT:C49012 Myofibroblastoma 6 107562 -NCIT:C121181 Mammary-Type Myofibroblastoma 7 107563 -NCIT:C128079 Vaginal Superficial Myofibroblastoma 8 107564 -NCIT:C128272 Vulvar Superficial Myofibroblastoma 8 107565 -NCIT:C162500 Paratesticular Mammary-Type Myofibroblastoma 8 107566 -NCIT:C161640 Seminal Vesicle Mammary-Type Myofibroblastoma 9 107567 -NCIT:C129551 Central Nervous System Myofibroblastoma 7 107568 -NCIT:C40397 Breast Myofibroblastoma 7 107569 -NCIT:C6584 Palisaded Lymph Node Myofibroblastoma 7 107570 -NCIT:C49016 Angiomyofibroblastoma 6 107571 -NCIT:C45445 Vaginal Angiomyofibroblastoma 7 107572 -NCIT:C45446 Vulvar Angiomyofibroblastoma 7 107573 -NCIT:C6488 Calcifying Fibrous Tumor 6 107574 -NCIT:C179560 Peritoneal Calcifying Fibrous Tumor 7 107575 -NCIT:C183277 Pleural Calcifying Fibrous Tumor 7 107576 -NCIT:C6573 Fibroosseous Pseudotumor of Digits 6 107577 -NCIT:C6806 Benign Skin Fibroblastic Neoplasm 6 107578 -NCIT:C170888 Dermatomyofibroma 7 107579 -NCIT:C3942 Fibrous Hamartoma of Infancy 7 107580 -NCIT:C48961 Subcutaneous Nodular Fasciitis 7 107581 -NCIT:C6484 Dermal Fibroma 7 107582 -NCIT:C170889 Plaque-Like CD34-Positive Dermal Fibroma 8 107583 -NCIT:C4470 Perifollicular Fibroma 8 107584 -NCIT:C6486 Nuchal-Type Fibroma 8 107585 -NCIT:C7343 Benign Skin Fibrohistiocytic Neoplasm 5 107586 -NCIT:C6801 Skin Fibrous Histiocytoma 6 107587 -NCIT:C49076 Skin Fibrous Histiocytoma, Fibroblastic Variant 7 107588 -NCIT:C49077 Skin Fibrous Histiocytoma, Histiocytic Variant 7 107589 -NCIT:C49078 Skin Fibrous Histiocytoma, Cellular Variant 7 107590 -NCIT:C49079 Skin Fibrous Histiocytoma, Epithelioid Variant 7 107591 -NCIT:C7442 Benign Myoepithelioma 5 107592 -NCIT:C121785 Ectomesenchymal Chondromyxoid Tumor 6 107593 -NCIT:C121786 Mixed Tumor, Not Otherwise Specified 6 107594 -NCIT:C142829 Lung Myoepithelioma 6 107595 -NCIT:C167370 Skin Myoepithelioma 6 107596 -NCIT:C175272 Lacrimal Gland Myoepithelioma 6 107597 -NCIT:C5978 Salivary Gland Myoepithelioma 6 107598 -NCIT:C81854 Benign Epithelioid Cell Type Gastrointestinal Stromal Tumor 5 107599 -NCIT:C45612 Lung Soft Tissue Neoplasm 4 107600 -NCIT:C142783 Lung PEComa 5 107601 -NCIT:C142784 Benign Lung PEComa 6 107602 -NCIT:C38152 Lung Clear Cell Tumor 7 107603 -NCIT:C142785 Lung Malignant PEComa 6 107604 -NCIT:C38153 Lung Lymphangioleiomyomatosis 6 107605 -NCIT:C142823 Congenital Peribronchial Myofibroblastic Tumor 5 107606 -NCIT:C142828 Lung Myoepithelial Tumor 5 107607 -NCIT:C142829 Lung Myoepithelioma 6 107608 -NCIT:C142830 Lung Myoepithelial Carcinoma 6 107609 -NCIT:C39740 Lung Inflammatory Myofibroblastic Tumor 5 107610 -NCIT:C45629 Lung Chondroma 5 107611 -NCIT:C45630 Diffuse Pulmonary Lymphangiomatosis 5 107612 -NCIT:C4860 Lung Sarcoma 5 107613 -NCIT:C142825 Pulmonary Artery Intimal Sarcoma 6 107614 -NCIT:C142827 Primary Pulmonary Myxoid Sarcoma with EWSR1-CREB1 Fusion 6 107615 -NCIT:C173809 Lung Alveolar Soft Part Sarcoma 6 107616 -NCIT:C181201 Lung Rhabdomyosarcoma 6 107617 -NCIT:C188061 Lung Osteosarcoma 6 107618 -NCIT:C3551 Lung Kaposi Sarcoma 6 107619 -NCIT:C45631 Lung Synovial Sarcoma 6 107620 -NCIT:C45632 Lung Biphasic Synovial Sarcoma 7 107621 -NCIT:C45633 Lung Monophasic Synovial Sarcoma 7 107622 -NCIT:C5667 Lung Leiomyosarcoma 6 107623 -NCIT:C5063 Endobronchial Lipoma 5 107624 -NCIT:C5657 Lung Myolipoma 5 107625 -NCIT:C5658 Lung Fibroma 5 107626 -NCIT:C5660 Lung Leiomyoma 5 107627 -NCIT:C5661 Endobronchial Leiomyoma 6 107628 -NCIT:C4867 Malignant Soft Tissue Neoplasm 4 107629 -NCIT:C128054 Malignant Cervical Soft Tissue Neoplasm 5 107630 -NCIT:C128047 Cervical Leiomyosarcoma 6 107631 -NCIT:C128048 Cervical Rhabdomyosarcoma 6 107632 -NCIT:C128049 Cervical Angiosarcoma 6 107633 -NCIT:C128050 Cervical Malignant Peripheral Nerve Sheath Tumor 6 107634 -NCIT:C40222 Cervical Low Grade Endometrioid Stromal Sarcoma 6 107635 -NCIT:C40224 Endocervical Undifferentiated Sarcoma 6 107636 -NCIT:C40225 Cervical Alveolar Soft Part Sarcoma 6 107637 -NCIT:C40229 Cervical Adenosarcoma 6 107638 -NCIT:C7433 AIDS-Related Cervical Kaposi Sarcoma 6 107639 -NCIT:C150536 Recurrent Malignant Soft Tissue Neoplasm 5 107640 -NCIT:C139002 Recurrent Soft Tissue Sarcoma 6 107641 -NCIT:C153626 Recurrent Skin Angiosarcoma 7 107642 -NCIT:C158426 Recurrent Desmoplastic Small Round Cell Tumor 7 107643 -NCIT:C169050 Recurrent Soft Tissue Sarcoma of the Trunk and Extremities 7 107644 -NCIT:C170727 Recurrent Breast Sarcoma 7 107645 -NCIT:C133092 Recurrent Breast Angiosarcoma 8 107646 -NCIT:C180980 Recurrent Clear Cell Sarcoma of Soft Tissue 7 107647 -NCIT:C5059 Recurrent Epithelioid Sarcoma 7 107648 -NCIT:C7822 Recurrent Adult Soft Tissue Sarcoma 7 107649 -NCIT:C7935 Recurrent Kaposi Sarcoma 7 107650 -NCIT:C8067 Recurrent Childhood Soft Tissue Sarcoma 7 107651 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 8 107652 -NCIT:C8261 Recurrent Uterine Corpus Sarcoma 7 107653 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 8 107654 -NCIT:C8795 Recurrent Undifferentiated Pleomorphic Sarcoma 7 107655 -NCIT:C8798 Recurrent Alveolar Soft Part Sarcoma 7 107656 -NCIT:C8803 Recurrent Extraskeletal Ewing Sarcoma 7 107657 -NCIT:C8807 Recurrent Extraskeletal Myxoid Chondrosarcoma 7 107658 -NCIT:C8811 Recurrent Extraskeletal Osteosarcoma 7 107659 -NCIT:C8824 Recurrent Rhabdomyosarcoma 7 107660 -NCIT:C142881 Recurrent Alveolar Rhabdomyosarcoma 8 107661 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 8 107662 -NCIT:C8827 Recurrent Synovial Sarcoma 7 107663 -NCIT:C188881 Recurrent Extrarenal Rhabdoid Tumor 6 107664 -NCIT:C171170 Recurrent Extrarenal Rhabdoid Tumor of the Ovary 7 107665 -NCIT:C150537 Refractory Malignant Soft Tissue Neoplasm 5 107666 -NCIT:C139001 Refractory Soft Tissue Sarcoma 6 107667 -NCIT:C142851 Refractory Rhabdomyosarcoma 7 107668 -NCIT:C142880 Refractory Alveolar Rhabdomyosarcoma 8 107669 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 8 107670 -NCIT:C148295 Refractory Undifferentiated Pleomorphic Sarcoma 7 107671 -NCIT:C148296 Refractory Synovial Sarcoma 7 107672 -NCIT:C156474 Refractory Kaposi Sarcoma 7 107673 -NCIT:C158427 Refractory Desmoplastic Small Round Cell Tumor 7 107674 -NCIT:C162722 Refractory Epithelioid Sarcoma 7 107675 -NCIT:C171168 Refractory Extraskeletal Myxoid Chondrosarcoma 7 107676 -NCIT:C180979 Refractory Clear Cell Sarcoma of Soft Tissue 7 107677 -NCIT:C185882 Refractory Malignant Gastrointestinal Stromal Tumor 7 107678 -NCIT:C187194 Refractory Childhood Soft Tissue Sarcoma 7 107679 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 8 107680 -NCIT:C188034 Refractory Alveolar Soft Part Sarcoma 7 107681 -NCIT:C175664 Refractory Malignant Glomus Tumor 6 107682 -NCIT:C188884 Refractory Extrarenal Rhabdoid Tumor 6 107683 -NCIT:C171171 Refractory Extrarenal Rhabdoid Tumor of the Ovary 7 107684 -NCIT:C162581 Penile Epithelioid Hemangioendothelioma 5 107685 -NCIT:C173176 Malignant Sinonasal Soft Tissue Neoplasm 5 107686 -NCIT:C173118 Sinonasal Sarcoma 6 107687 -NCIT:C164205 Biphenotypic Sinonasal Sarcoma 7 107688 -NCIT:C173120 Sinonasal Fibrosarcoma 7 107689 -NCIT:C173121 Sinonasal Undifferentiated Pleomorphic Sarcoma 7 107690 -NCIT:C173123 Sinonasal Leiomyosarcoma 7 107691 -NCIT:C173124 Sinonasal Rhabdomyosarcoma 7 107692 -NCIT:C173125 Sinonasal Angiosarcoma 7 107693 -NCIT:C173127 Sinonasal Malignant Peripheral Nerve Sheath Tumor 7 107694 -NCIT:C173128 Sinonasal Synovial Sarcoma 7 107695 -NCIT:C6849 Paranasal Sinus Sarcoma 7 107696 -NCIT:C6850 High Grade Paranasal Sinus Sarcoma 8 107697 -NCIT:C6851 Low Grade Paranasal Sinus Sarcoma 8 107698 -NCIT:C173138 Sinonasal Epithelioid Hemangioendothelioma 6 107699 -NCIT:C173175 Sinonasal Ewing Sarcoma/Peripheral Primitive Neuroectodermal Tumor 6 107700 -NCIT:C173400 Malignant Laryngeal Soft Tissue Neoplasm 5 107701 -NCIT:C173408 Laryngeal Soft Tissue Sarcoma 6 107702 -NCIT:C6021 Laryngeal Liposarcoma 7 107703 -NCIT:C6022 Laryngeal Leiomyosarcoma 7 107704 -NCIT:C27293 Extraskeletal Ewing Sarcoma/Peripheral Primitive Neuroectodermal Tumor 5 107705 -NCIT:C173175 Sinonasal Ewing Sarcoma/Peripheral Primitive Neuroectodermal Tumor 6 107706 -NCIT:C27471 Peripheral Primitive Neuroectodermal Tumor of Soft Tissues 6 107707 -NCIT:C7135 Extraskeletal Ewing Sarcoma 6 107708 -NCIT:C159208 Kidney Ewing Sarcoma 7 107709 -NCIT:C189261 Childhood Kidney Ewing Sarcoma 8 107710 -NCIT:C172634 Skin Ewing Sarcoma 7 107711 -NCIT:C181977 Vulvar Ewing Sarcoma 7 107712 -NCIT:C186611 Central Nervous System Ewing Sarcoma 7 107713 -NCIT:C8801 Metastatic Extraskeletal Ewing Sarcoma 7 107714 -NCIT:C8802 Localized Extraskeletal Ewing Sarcoma 7 107715 -NCIT:C8803 Recurrent Extraskeletal Ewing Sarcoma 7 107716 -NCIT:C6530 Malignant Pericytic Neoplasm 5 107717 -NCIT:C4221 Malignant Glomus Tumor 6 107718 -NCIT:C175661 Unresectable Malignant Glomus Tumor 7 107719 -NCIT:C175662 Metastatic Malignant Glomus Tumor 7 107720 -NCIT:C175663 Locally Advanced Malignant Glomus Tumor 8 107721 -NCIT:C175664 Refractory Malignant Glomus Tumor 7 107722 -NCIT:C6531 Malignant Synovial Neoplasm 5 107723 -NCIT:C176467 Synovial Chondrosarcoma 6 107724 -NCIT:C6535 Malignant Tenosynovial Giant Cell Tumor 6 107725 -NCIT:C6588 Malignant Soft Tissue Tumor of Uncertain Differentiation 5 107726 -NCIT:C121774 Malignant Ossifying Fibromyxoid Tumor 6 107727 -NCIT:C121792 Malignant PEComa 6 107728 -NCIT:C127072 Uterine Corpus Malignant PEComa 7 107729 -NCIT:C142785 Lung Malignant PEComa 7 107730 -NCIT:C159677 Bladder Malignant PEComa 7 107731 -NCIT:C164245 Metastatic Malignant PEComa 7 107732 -NCIT:C164246 Advanced Malignant PEComa 8 107733 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 8 107734 -NCIT:C27502 Extraskeletal Myxoid Chondrosarcoma 6 107735 -NCIT:C171168 Refractory Extraskeletal Myxoid Chondrosarcoma 7 107736 -NCIT:C27377 Childhood Extraskeletal Myxoid Chondrosarcoma 7 107737 -NCIT:C27501 Conventional Extraskeletal Myxoid Chondrosarcoma 7 107738 -NCIT:C5462 Brain Extraskeletal Myxoid Chondrosarcoma 7 107739 -NCIT:C7924 Adult Extraskeletal Myxoid Chondrosarcoma 7 107740 -NCIT:C8804 Metastatic Extraskeletal Myxoid Chondrosarcoma 7 107741 -NCIT:C8807 Recurrent Extraskeletal Myxoid Chondrosarcoma 7 107742 -NCIT:C3400 Synovial Sarcoma 6 107743 -NCIT:C147102 Pericardial Synovial Sarcoma 7 107744 -NCIT:C148296 Refractory Synovial Sarcoma 7 107745 -NCIT:C153074 Unresectable Synovial Sarcoma 7 107746 -NCIT:C157737 Kidney Synovial Sarcoma 7 107747 -NCIT:C161034 Prostate Synovial Sarcoma 7 107748 -NCIT:C173128 Sinonasal Synovial Sarcoma 7 107749 -NCIT:C4279 Biphasic Synovial Sarcoma 7 107750 -NCIT:C45632 Lung Biphasic Synovial Sarcoma 8 107751 -NCIT:C45698 Pleural Biphasic Synovial Sarcoma 8 107752 -NCIT:C45757 Cardiac Biphasic Synovial Sarcoma 8 107753 -NCIT:C45631 Lung Synovial Sarcoma 7 107754 -NCIT:C45632 Lung Biphasic Synovial Sarcoma 8 107755 -NCIT:C45633 Lung Monophasic Synovial Sarcoma 8 107756 -NCIT:C45696 Pleural Synovial Sarcoma 7 107757 -NCIT:C45697 Pleural Monophasic Synovial Sarcoma 8 107758 -NCIT:C45698 Pleural Biphasic Synovial Sarcoma 8 107759 -NCIT:C45756 Cardiac Synovial Sarcoma 7 107760 -NCIT:C45757 Cardiac Biphasic Synovial Sarcoma 8 107761 -NCIT:C45758 Cardiac Monophasic Synovial Sarcoma 8 107762 -NCIT:C6534 Monophasic Synovial Sarcoma 7 107763 -NCIT:C4277 Spindle Cell Synovial Sarcoma 8 107764 -NCIT:C4278 Epithelial Synovial Sarcoma 8 107765 -NCIT:C45633 Lung Monophasic Synovial Sarcoma 8 107766 -NCIT:C45697 Pleural Monophasic Synovial Sarcoma 8 107767 -NCIT:C45758 Cardiac Monophasic Synovial Sarcoma 8 107768 -NCIT:C6618 Mediastinal Synovial Sarcoma 7 107769 -NCIT:C7817 Adult Synovial Sarcoma 7 107770 -NCIT:C8089 Childhood Synovial Sarcoma 7 107771 -NCIT:C8825 Metastatic Synovial Sarcoma 7 107772 -NCIT:C153184 Advanced Synovial Sarcoma 8 107773 -NCIT:C171399 Locally Advanced Synovial Sarcoma 8 107774 -NCIT:C8826 Localized Synovial Sarcoma 7 107775 -NCIT:C8827 Recurrent Synovial Sarcoma 7 107776 -NCIT:C95624 Esophageal Synovial Sarcoma 7 107777 -NCIT:C95899 Gastric Synovial Sarcoma 7 107778 -NCIT:C96845 Liver Synovial Sarcoma 7 107779 -NCIT:C3714 Epithelioid Sarcoma 6 107780 -NCIT:C162722 Refractory Epithelioid Sarcoma 7 107781 -NCIT:C167379 Unresectable Epithelioid Sarcoma 7 107782 -NCIT:C181971 Vulvar Epithelioid Sarcoma 7 107783 -NCIT:C181973 Vulvar Distal-Type Epithelioid Sarcoma 8 107784 -NCIT:C40319 Vulvar Proximal-Type Epithelioid Sarcoma 8 107785 -NCIT:C27472 Proximal-Type Epithelioid Sarcoma 7 107786 -NCIT:C188055 Pleural Proximal-Type Epithelioid Sarcoma 8 107787 -NCIT:C40319 Vulvar Proximal-Type Epithelioid Sarcoma 8 107788 -NCIT:C27473 Distal-Type Epithelioid Sarcoma 7 107789 -NCIT:C181973 Vulvar Distal-Type Epithelioid Sarcoma 8 107790 -NCIT:C5059 Recurrent Epithelioid Sarcoma 7 107791 -NCIT:C7944 Adult Epithelioid Sarcoma 7 107792 -NCIT:C8095 Childhood Epithelioid Sarcoma 7 107793 -NCIT:C8799 Metastatic Epithelioid Sarcoma 7 107794 -NCIT:C167378 Locally Advanced Epithelioid Sarcoma 8 107795 -NCIT:C167380 Advanced Epithelioid Sarcoma 8 107796 -NCIT:C8800 Localized Epithelioid Sarcoma 7 107797 -NCIT:C9409 Epithelioid Sarcoma NCI Grade 2 7 107798 -NCIT:C9410 Epithelioid Sarcoma NCI Grade 3 7 107799 -NCIT:C3745 Clear Cell Sarcoma of Soft Tissue 6 107800 -NCIT:C161585 Metastatic Clear Cell Sarcoma of Soft Tissue 7 107801 -NCIT:C161586 Advanced Clear Cell Sarcoma of Soft Tissue 8 107802 -NCIT:C180979 Refractory Clear Cell Sarcoma of Soft Tissue 7 107803 -NCIT:C180980 Recurrent Clear Cell Sarcoma of Soft Tissue 7 107804 -NCIT:C27370 Adult Clear Cell Sarcoma of Soft Tissue 7 107805 -NCIT:C27371 Childhood Clear Cell Sarcoma of Soft Tissue 7 107806 -NCIT:C3750 Alveolar Soft Part Sarcoma 6 107807 -NCIT:C156273 Tongue Alveolar Soft Part Sarcoma' 7 107808 -NCIT:C156276 Orbital Alveolar Soft Part Sarcoma 7 107809 -NCIT:C156277 Bladder Alveolar Soft Part Sarcoma 7 107810 -NCIT:C164078 Unresectable Alveolar Soft Part Sarcoma 7 107811 -NCIT:C173809 Lung Alveolar Soft Part Sarcoma 7 107812 -NCIT:C188034 Refractory Alveolar Soft Part Sarcoma 7 107813 -NCIT:C40225 Cervical Alveolar Soft Part Sarcoma 7 107814 -NCIT:C40320 Vulvar Alveolar Soft Part Sarcoma 7 107815 -NCIT:C7943 Adult Alveolar Soft Part Sarcoma 7 107816 -NCIT:C8092 Childhood Alveolar Soft Part Sarcoma 7 107817 -NCIT:C8796 Metastatic Alveolar Soft Part Sarcoma 7 107818 -NCIT:C164076 Locally Advanced Alveolar Soft Part Sarcoma 8 107819 -NCIT:C188198 Advanced Alveolar Soft Part Sarcoma 8 107820 -NCIT:C8797 Localized Alveolar Soft Part Sarcoma 7 107821 -NCIT:C8798 Recurrent Alveolar Soft Part Sarcoma 7 107822 -NCIT:C53677 Intimal Sarcoma 6 107823 -NCIT:C142825 Pulmonary Artery Intimal Sarcoma 7 107824 -NCIT:C6586 Extrarenal Rhabdoid Tumor 6 107825 -NCIT:C161608 Extrarenal Rhabdoid Tumor of the Prostate 7 107826 -NCIT:C171169 Extrarenal Rhabdoid Tumor of the Ovary 7 107827 -NCIT:C171170 Recurrent Extrarenal Rhabdoid Tumor of the Ovary 8 107828 -NCIT:C171171 Refractory Extrarenal Rhabdoid Tumor of the Ovary 8 107829 -NCIT:C188881 Recurrent Extrarenal Rhabdoid Tumor 7 107830 -NCIT:C171170 Recurrent Extrarenal Rhabdoid Tumor of the Ovary 8 107831 -NCIT:C188884 Refractory Extrarenal Rhabdoid Tumor 7 107832 -NCIT:C171171 Refractory Extrarenal Rhabdoid Tumor of the Ovary 8 107833 -NCIT:C188886 Unresectable Extrarenal Rhabdoid Tumor 7 107834 -NCIT:C96847 Extrarenal Rhabdoid Tumor of the Liver 7 107835 -NCIT:C7135 Extraskeletal Ewing Sarcoma 6 107836 -NCIT:C159208 Kidney Ewing Sarcoma 7 107837 -NCIT:C189261 Childhood Kidney Ewing Sarcoma 8 107838 -NCIT:C172634 Skin Ewing Sarcoma 7 107839 -NCIT:C181977 Vulvar Ewing Sarcoma 7 107840 -NCIT:C186611 Central Nervous System Ewing Sarcoma 7 107841 -NCIT:C8801 Metastatic Extraskeletal Ewing Sarcoma 7 107842 -NCIT:C8802 Localized Extraskeletal Ewing Sarcoma 7 107843 -NCIT:C8803 Recurrent Extraskeletal Ewing Sarcoma 7 107844 -NCIT:C8300 Desmoplastic Small Round Cell Tumor 6 107845 -NCIT:C126356 Peritoneal Desmoplastic Small Round Cell Tumor 7 107846 -NCIT:C158426 Recurrent Desmoplastic Small Round Cell Tumor 7 107847 -NCIT:C158427 Refractory Desmoplastic Small Round Cell Tumor 7 107848 -NCIT:C170826 Unresectable Desmoplastic Small Round Cell Tumor 7 107849 -NCIT:C170827 Metastatic Desmoplastic Small Round Cell Tumor 7 107850 -NCIT:C180875 Locally Advanced Desmoplastic Small Round Cell Tumor 8 107851 -NCIT:C27372 Childhood Desmoplastic Small Round Cell Tumor 7 107852 -NCIT:C27373 Adult Desmoplastic Small Round Cell Tumor 7 107853 -NCIT:C6642 Malignant Mediastinal Soft Tissue Neoplasm 5 107854 -NCIT:C146988 Mediastinal Epithelioid Hemangioendothelioma 6 107855 -NCIT:C6606 Mediastinal Sarcoma 6 107856 -NCIT:C6613 Mediastinal Angiosarcoma 7 107857 -NCIT:C6614 Mediastinal Liposarcoma 7 107858 -NCIT:C95038 Thymoliposarcoma 8 107859 -NCIT:C6615 Mediastinal Extraskeletal Osteosarcoma 7 107860 -NCIT:C6617 Mediastinal Rhabdomyosarcoma 7 107861 -NCIT:C6618 Mediastinal Synovial Sarcoma 7 107862 -NCIT:C6619 Mediastinal Leiomyosarcoma 7 107863 -NCIT:C6626 Mediastinal Malignant Peripheral Nerve Sheath Tumor 7 107864 -NCIT:C6630 Malignant Melanotic Peripheral Nerve Sheath Tumor of the Mediastinum 8 107865 -NCIT:C6758 Malignant Central Nervous System Mesenchymal, Non-Meningothelial Neoplasm 5 107866 -NCIT:C129527 Central Nervous System Solitary Fibrous Tumor, Grade 3 6 107867 -NCIT:C186603 Central Nervous System Dedifferentiated Solitary Fibrous Tumor 7 107868 -NCIT:C9183 Adult Central Nervous System Solitary Fibrous Tumor, Grade 3 7 107869 -NCIT:C92652 Meningeal Central Nervous System Solitary Fibrous Tumor, Grade 3 7 107870 -NCIT:C129536 Central Nervous System Epithelioid Hemangioendothelioma 6 107871 -NCIT:C5153 Central Nervous System Sarcoma 6 107872 -NCIT:C129534 Central Nervous System Mesenchymal Chondrosarcoma 7 107873 -NCIT:C129566 Central Nervous System Undifferentiated Pleomorphic Sarcoma 7 107874 -NCIT:C186607 Central Nervous System CIC-Rearranged Sarcoma 7 107875 -NCIT:C186611 Central Nervous System Ewing Sarcoma 7 107876 -NCIT:C4073 Meningeal Sarcoma 7 107877 -NCIT:C4334 Meningeal Sarcomatosis 8 107878 -NCIT:C8312 Leptomeningeal Sarcoma 8 107879 -NCIT:C5152 Spinal Cord Sarcoma 7 107880 -NCIT:C5154 Brain Sarcoma 7 107881 -NCIT:C186610 Primary Intracranial Sarcoma, DICER1-Mutant 8 107882 -NCIT:C5462 Brain Extraskeletal Myxoid Chondrosarcoma 8 107883 -NCIT:C6973 Brain Liposarcoma 8 107884 -NCIT:C5450 Central Nervous System Angiosarcoma 7 107885 -NCIT:C5464 Central Nervous System Rhabdomyosarcoma 7 107886 -NCIT:C5465 Central Nervous System Fibrosarcoma 7 107887 -NCIT:C6999 Central Nervous System Leiomyosarcoma 7 107888 -NCIT:C7002 Central Nervous System Extraskeletal Osteosarcoma 7 107889 -NCIT:C7006 Central Nervous System Kaposi Sarcoma 7 107890 -NCIT:C7292 Malignant Splenic Soft Tissue Neoplasm 5 107891 -NCIT:C4564 Splenic Angiosarcoma 6 107892 -NCIT:C81855 Malignant Epithelioid Cell Type Gastrointestinal Stromal Tumor 5 107893 -NCIT:C9306 Soft Tissue Sarcoma 5 107894 -NCIT:C121571 Leiomyosarcoma of Deep Soft Tissue 6 107895 -NCIT:C27904 Retroperitoneal Leiomyosarcoma 7 107896 -NCIT:C121671 Soft Tissue Angiosarcoma 6 107897 -NCIT:C162578 Penile Angiosarcoma 7 107898 -NCIT:C171026 Visceral Angiosarcoma 7 107899 -NCIT:C147097 Cardiac Angiosarcoma 8 107900 -NCIT:C147101 Pericardial Angiosarcoma 8 107901 -NCIT:C159205 Kidney Angiosarcoma 8 107902 -NCIT:C159671 Bladder Angiosarcoma 8 107903 -NCIT:C161642 Seminal Vesicle Angiosarcoma 8 107904 -NCIT:C4438 Liver Angiosarcoma 8 107905 -NCIT:C190020 Childhood Liver Angiosarcoma 9 107906 -NCIT:C4564 Splenic Angiosarcoma 8 107907 -NCIT:C48320 Adrenal Gland Angiosarcoma 8 107908 -NCIT:C5232 Ovarian Angiosarcoma 8 107909 -NCIT:C5376 Aortic Angiosarcoma 8 107910 -NCIT:C5378 Superior Vena Cava Angiosarcoma 8 107911 -NCIT:C5385 Uterine Angiosarcoma 8 107912 -NCIT:C128049 Cervical Angiosarcoma 9 107913 -NCIT:C5528 Prostate Angiosarcoma 8 107914 -NCIT:C5840 Gallbladder Angiosarcoma 8 107915 -NCIT:C6043 Thyroid Gland Angiosarcoma 8 107916 -NCIT:C6613 Mediastinal Angiosarcoma 8 107917 -NCIT:C6746 Pulmonary Artery Angiosarcoma 8 107918 -NCIT:C96060 Small Intestinal Angiosarcoma 8 107919 -NCIT:C96511 Colorectal Angiosarcoma 8 107920 -NCIT:C173125 Sinonasal Angiosarcoma 7 107921 -NCIT:C176515 Vulvar Angiosarcoma 7 107922 -NCIT:C4489 Skin Angiosarcoma 7 107923 -NCIT:C153626 Recurrent Skin Angiosarcoma 8 107924 -NCIT:C27719 Skin Radiation-Related Angiosarcoma 8 107925 -NCIT:C40379 Angiosarcoma of the Skin of the Arm after Radical Mastectomy followed by Lymphedema 8 107926 -NCIT:C5184 Breast Angiosarcoma 7 107927 -NCIT:C133092 Recurrent Breast Angiosarcoma 8 107928 -NCIT:C176251 Primary Breast Angiosarcoma 8 107929 -NCIT:C40378 Postradiation Breast Angiosarcoma 8 107930 -NCIT:C5320 Peripheral Intraneural Angiosarcoma 7 107931 -NCIT:C5450 Central Nervous System Angiosarcoma 7 107932 -NCIT:C121793 Undifferentiated Soft Tissue Sarcoma 6 107933 -NCIT:C121797 Undifferentiated Spindle Cell Sarcoma 7 107934 -NCIT:C121799 Undifferentiated Round Cell Sarcoma 7 107935 -NCIT:C121802 Undifferentiated Epithelioid Sarcoma 7 107936 -NCIT:C121804 Undifferentiated Sarcoma, Not Otherwise Specified 7 107937 -NCIT:C4247 Undifferentiated Pleomorphic Sarcoma 7 107938 -NCIT:C114541 Adult Undifferentiated Pleomorphic Sarcoma 8 107939 -NCIT:C114749 Childhood Undifferentiated Pleomorphic Sarcoma 8 107940 -NCIT:C129566 Central Nervous System Undifferentiated Pleomorphic Sarcoma 8 107941 -NCIT:C148295 Refractory Undifferentiated Pleomorphic Sarcoma 8 107942 -NCIT:C150610 Unresectable Undifferentiated Pleomorphic Sarcoma 8 107943 -NCIT:C150611 Resectable Undifferentiated Pleomorphic Sarcoma 8 107944 -NCIT:C151985 Abdominal Undifferentiated Pleomorphic Sarcoma 8 107945 -NCIT:C161038 Prostate Undifferentiated Pleomorphic Sarcoma 8 107946 -NCIT:C162589 Penile Undifferentiated Pleomorphic Sarcoma 8 107947 -NCIT:C173121 Sinonasal Undifferentiated Pleomorphic Sarcoma 8 107948 -NCIT:C173808 Retroperitoneal Undifferentiated Pleomorphic Sarcoma 8 107949 -NCIT:C45755 Cardiac Undifferentiated Pleomorphic Sarcoma 8 107950 -NCIT:C4926 Metastatic Undifferentiated Pleomorphic Sarcoma 8 107951 -NCIT:C160919 Locally Advanced Undifferentiated Pleomorphic Sarcoma 9 107952 -NCIT:C165781 Advanced Undifferentiated Pleomorphic Sarcoma 9 107953 -NCIT:C5576 Skin Undifferentiated Pleomorphic Sarcoma 8 107954 -NCIT:C6497 Undifferentiated Pleomorphic Sarcoma, Inflammatory Variant 8 107955 -NCIT:C8380 Undifferentiated Pleomorphic Sarcoma with Osteoclast-Like Giant Cells 8 107956 -NCIT:C8795 Recurrent Undifferentiated Pleomorphic Sarcoma 8 107957 -NCIT:C128047 Cervical Leiomyosarcoma 6 107958 -NCIT:C128048 Cervical Rhabdomyosarcoma 6 107959 -NCIT:C128050 Cervical Malignant Peripheral Nerve Sheath Tumor 6 107960 -NCIT:C136693 Soft Tissue Sarcoma by AJCC v8 Stage 6 107961 -NCIT:C136694 Soft Tissue Sarcoma of the Trunk and Extremities by AJCC v8 Stage 7 107962 -NCIT:C136696 Stage I Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 8 107963 -NCIT:C136698 Stage IA Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 9 107964 -NCIT:C136700 Stage IB Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 9 107965 -NCIT:C136701 Stage II Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 8 107966 -NCIT:C136702 Stage III Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 8 107967 -NCIT:C136703 Stage IIIA Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 9 107968 -NCIT:C136705 Stage IIIB Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 9 107969 -NCIT:C136706 Stage IV Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 8 107970 -NCIT:C136767 Gastrointestinal Stromal Tumor by AJCC v8 Stage 7 107971 -NCIT:C136768 Gastric and Omental Gastrointestinal Stromal Tumor by AJCC v8 Stage 8 107972 -NCIT:C136770 Stage I Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 9 107973 -NCIT:C136771 Stage IA Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 10 107974 -NCIT:C136772 Stage IB Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 10 107975 -NCIT:C136773 Stage II Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 9 107976 -NCIT:C136774 Stage III Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 9 107977 -NCIT:C136775 Stage IIIA Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 10 107978 -NCIT:C136777 Stage IIIB Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 10 107979 -NCIT:C136778 Stage IV Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 9 107980 -NCIT:C136769 Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor by AJCC v8 Stage 8 107981 -NCIT:C136780 Stage I Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 9 107982 -NCIT:C136781 Stage II Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 9 107983 -NCIT:C136783 Stage III Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 9 107984 -NCIT:C136784 Stage IIIA Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 10 107985 -NCIT:C136785 Stage IIIB Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 10 107986 -NCIT:C136786 Stage IV Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 9 107987 -NCIT:C136811 Retroperitoneal Sarcoma by AJCC v8 Stage 7 107988 -NCIT:C136812 Stage I Retroperitoneal Sarcoma AJCC v8 8 107989 -NCIT:C136813 Stage IA Retroperitoneal Sarcoma AJCC v8 9 107990 -NCIT:C136814 Stage IB Retroperitoneal Sarcoma AJCC v8 9 107991 -NCIT:C136815 Stage II Retroperitoneal Sarcoma AJCC v8 8 107992 -NCIT:C136816 Stage III Retroperitoneal Sarcoma AJCC v8 8 107993 -NCIT:C136817 Stage IIIA Retroperitoneal Sarcoma AJCC v8 9 107994 -NCIT:C136818 Stage IIIB Retroperitoneal Sarcoma AJCC v8 9 107995 -NCIT:C136819 Stage IV Retroperitoneal Sarcoma AJCC v8 8 107996 -NCIT:C136707 Soft Tissue Sarcoma by AJCC v7 Stage 6 107997 -NCIT:C6537 Stage I Soft Tissue Sarcoma AJCC v7 7 107998 -NCIT:C7818 Stage I Adult Soft Tissue Sarcoma AJCC v7 8 107999 -NCIT:C8569 Stage IA Adult Soft Tissue Sarcoma AJCC v7 9 108000 -NCIT:C8570 Stage IB Adult Soft Tissue Sarcoma AJCC v7 9 108001 -NCIT:C8580 Stage IB Soft Tissue Sarcoma AJCC v7 8 108002 -NCIT:C8570 Stage IB Adult Soft Tissue Sarcoma AJCC v7 9 108003 -NCIT:C8583 Stage IA Soft Tissue Sarcoma AJCC v7 8 108004 -NCIT:C8569 Stage IA Adult Soft Tissue Sarcoma AJCC v7 9 108005 -NCIT:C6538 Stage II Soft Tissue Sarcoma AJCC v7 7 108006 -NCIT:C7819 Stage II Adult Soft Tissue Sarcoma AJCC v7 8 108007 -NCIT:C8571 Stage IIA Adult Soft Tissue Sarcoma AJCC v7 9 108008 -NCIT:C8572 Stage IIB Adult Soft Tissue Sarcoma AJCC v7 9 108009 -NCIT:C8581 Stage IIA Soft Tissue Sarcoma AJCC v7 8 108010 -NCIT:C8571 Stage IIA Adult Soft Tissue Sarcoma AJCC v7 9 108011 -NCIT:C8582 Stage IIB Soft Tissue Sarcoma AJCC v7 8 108012 -NCIT:C8572 Stage IIB Adult Soft Tissue Sarcoma AJCC v7 9 108013 -NCIT:C8585 Stage III Soft Tissue Sarcoma AJCC v7 7 108014 -NCIT:C7820 Stage III Adult Soft Tissue Sarcoma AJCC v7 8 108015 -NCIT:C8586 Stage IV Soft Tissue Sarcoma AJCC v7 7 108016 -NCIT:C4243 Sarcomatosis 8 108017 -NCIT:C4334 Meningeal Sarcomatosis 9 108018 -NCIT:C7821 Stage IV Adult Soft Tissue Sarcoma AJCC v7 8 108019 -NCIT:C139001 Refractory Soft Tissue Sarcoma 6 108020 -NCIT:C142851 Refractory Rhabdomyosarcoma 7 108021 -NCIT:C142880 Refractory Alveolar Rhabdomyosarcoma 8 108022 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 8 108023 -NCIT:C148295 Refractory Undifferentiated Pleomorphic Sarcoma 7 108024 -NCIT:C148296 Refractory Synovial Sarcoma 7 108025 -NCIT:C156474 Refractory Kaposi Sarcoma 7 108026 -NCIT:C158427 Refractory Desmoplastic Small Round Cell Tumor 7 108027 -NCIT:C162722 Refractory Epithelioid Sarcoma 7 108028 -NCIT:C171168 Refractory Extraskeletal Myxoid Chondrosarcoma 7 108029 -NCIT:C180979 Refractory Clear Cell Sarcoma of Soft Tissue 7 108030 -NCIT:C185882 Refractory Malignant Gastrointestinal Stromal Tumor 7 108031 -NCIT:C187194 Refractory Childhood Soft Tissue Sarcoma 7 108032 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 8 108033 -NCIT:C188034 Refractory Alveolar Soft Part Sarcoma 7 108034 -NCIT:C139002 Recurrent Soft Tissue Sarcoma 6 108035 -NCIT:C153626 Recurrent Skin Angiosarcoma 7 108036 -NCIT:C158426 Recurrent Desmoplastic Small Round Cell Tumor 7 108037 -NCIT:C169050 Recurrent Soft Tissue Sarcoma of the Trunk and Extremities 7 108038 -NCIT:C170727 Recurrent Breast Sarcoma 7 108039 -NCIT:C133092 Recurrent Breast Angiosarcoma 8 108040 -NCIT:C180980 Recurrent Clear Cell Sarcoma of Soft Tissue 7 108041 -NCIT:C5059 Recurrent Epithelioid Sarcoma 7 108042 -NCIT:C7822 Recurrent Adult Soft Tissue Sarcoma 7 108043 -NCIT:C7935 Recurrent Kaposi Sarcoma 7 108044 -NCIT:C8067 Recurrent Childhood Soft Tissue Sarcoma 7 108045 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 8 108046 -NCIT:C8261 Recurrent Uterine Corpus Sarcoma 7 108047 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 8 108048 -NCIT:C8795 Recurrent Undifferentiated Pleomorphic Sarcoma 7 108049 -NCIT:C8798 Recurrent Alveolar Soft Part Sarcoma 7 108050 -NCIT:C8803 Recurrent Extraskeletal Ewing Sarcoma 7 108051 -NCIT:C8807 Recurrent Extraskeletal Myxoid Chondrosarcoma 7 108052 -NCIT:C8811 Recurrent Extraskeletal Osteosarcoma 7 108053 -NCIT:C8824 Recurrent Rhabdomyosarcoma 7 108054 -NCIT:C142881 Recurrent Alveolar Rhabdomyosarcoma 8 108055 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 8 108056 -NCIT:C8827 Recurrent Synovial Sarcoma 7 108057 -NCIT:C147098 Pericardial Sarcoma 6 108058 -NCIT:C147101 Pericardial Angiosarcoma 7 108059 -NCIT:C147102 Pericardial Synovial Sarcoma 7 108060 -NCIT:C153068 Unresectable Soft Tissue Sarcoma 6 108061 -NCIT:C150610 Unresectable Undifferentiated Pleomorphic Sarcoma 7 108062 -NCIT:C150741 Unresectable Malignant Gastrointestinal Stromal Tumor 7 108063 -NCIT:C151983 Unresectable Rhabdomyosarcoma 7 108064 -NCIT:C153074 Unresectable Synovial Sarcoma 7 108065 -NCIT:C153476 Locally Advanced Unresectable Soft Tissue Sarcoma 7 108066 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 8 108067 -NCIT:C164078 Unresectable Alveolar Soft Part Sarcoma 7 108068 -NCIT:C167379 Unresectable Epithelioid Sarcoma 7 108069 -NCIT:C168728 Unresectable Soft Tissue Leiomyosarcoma 7 108070 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 8 108071 -NCIT:C170826 Unresectable Desmoplastic Small Round Cell Tumor 7 108072 -NCIT:C178372 Unresectable Myxofibrosarcoma 7 108073 -NCIT:C190016 Unresectable Uterine Corpus Sarcoma 7 108074 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 8 108075 -NCIT:C153069 Metastatic Soft Tissue Sarcoma 6 108076 -NCIT:C150738 Metastatic Gastrointestinal Stromal Tumor 7 108077 -NCIT:C150739 Locally Advanced Gastrointestinal Stromal Tumor 8 108078 -NCIT:C173502 Advanced Gastrointestinal Stromal Tumor 8 108079 -NCIT:C153066 Locally Advanced Soft Tissue Sarcoma 7 108080 -NCIT:C150739 Locally Advanced Gastrointestinal Stromal Tumor 8 108081 -NCIT:C153476 Locally Advanced Unresectable Soft Tissue Sarcoma 8 108082 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 9 108083 -NCIT:C160919 Locally Advanced Undifferentiated Pleomorphic Sarcoma 8 108084 -NCIT:C164076 Locally Advanced Alveolar Soft Part Sarcoma 8 108085 -NCIT:C166415 Locally Advanced Rhabdomyosarcoma 8 108086 -NCIT:C167378 Locally Advanced Epithelioid Sarcoma 8 108087 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 8 108088 -NCIT:C171399 Locally Advanced Synovial Sarcoma 8 108089 -NCIT:C180875 Locally Advanced Desmoplastic Small Round Cell Tumor 8 108090 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 8 108091 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 9 108092 -NCIT:C156071 Metastatic Adult Soft Tissue Sarcoma 7 108093 -NCIT:C156475 Metastatic Kaposi Sarcoma 7 108094 -NCIT:C156476 Advanced Kaposi Sarcoma 8 108095 -NCIT:C161585 Metastatic Clear Cell Sarcoma of Soft Tissue 7 108096 -NCIT:C161586 Advanced Clear Cell Sarcoma of Soft Tissue 8 108097 -NCIT:C162194 Advanced Soft Tissue Sarcoma 7 108098 -NCIT:C153184 Advanced Synovial Sarcoma 8 108099 -NCIT:C156476 Advanced Kaposi Sarcoma 8 108100 -NCIT:C161586 Advanced Clear Cell Sarcoma of Soft Tissue 8 108101 -NCIT:C164246 Advanced Malignant PEComa 8 108102 -NCIT:C165781 Advanced Undifferentiated Pleomorphic Sarcoma 8 108103 -NCIT:C167380 Advanced Epithelioid Sarcoma 8 108104 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 8 108105 -NCIT:C171304 Advanced Myxofibrosarcoma 8 108106 -NCIT:C173502 Advanced Gastrointestinal Stromal Tumor 8 108107 -NCIT:C188198 Advanced Alveolar Soft Part Sarcoma 8 108108 -NCIT:C164245 Metastatic Malignant PEComa 7 108109 -NCIT:C164246 Advanced Malignant PEComa 8 108110 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 8 108111 -NCIT:C166414 Metastatic Rhabdomyosarcoma 7 108112 -NCIT:C166415 Locally Advanced Rhabdomyosarcoma 8 108113 -NCIT:C183250 Metastatic Embryonal Rhabdomyosarcoma 8 108114 -NCIT:C168670 Metastatic Myxofibrosarcoma 7 108115 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 8 108116 -NCIT:C171304 Advanced Myxofibrosarcoma 8 108117 -NCIT:C168725 Metastatic Soft Tissue Leiomyosarcoma 7 108118 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 8 108119 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 8 108120 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 9 108121 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 8 108122 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 9 108123 -NCIT:C170827 Metastatic Desmoplastic Small Round Cell Tumor 7 108124 -NCIT:C180875 Locally Advanced Desmoplastic Small Round Cell Tumor 8 108125 -NCIT:C190009 Metastatic Uterine Corpus Sarcoma 7 108126 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 8 108127 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 9 108128 -NCIT:C4926 Metastatic Undifferentiated Pleomorphic Sarcoma 7 108129 -NCIT:C160919 Locally Advanced Undifferentiated Pleomorphic Sarcoma 8 108130 -NCIT:C165781 Advanced Undifferentiated Pleomorphic Sarcoma 8 108131 -NCIT:C8066 Metastatic Childhood Soft Tissue Sarcoma 7 108132 -NCIT:C8796 Metastatic Alveolar Soft Part Sarcoma 7 108133 -NCIT:C164076 Locally Advanced Alveolar Soft Part Sarcoma 8 108134 -NCIT:C188198 Advanced Alveolar Soft Part Sarcoma 8 108135 -NCIT:C8799 Metastatic Epithelioid Sarcoma 7 108136 -NCIT:C167378 Locally Advanced Epithelioid Sarcoma 8 108137 -NCIT:C167380 Advanced Epithelioid Sarcoma 8 108138 -NCIT:C8801 Metastatic Extraskeletal Ewing Sarcoma 7 108139 -NCIT:C8804 Metastatic Extraskeletal Myxoid Chondrosarcoma 7 108140 -NCIT:C8808 Metastatic Extraskeletal Osteosarcoma 7 108141 -NCIT:C8825 Metastatic Synovial Sarcoma 7 108142 -NCIT:C153184 Advanced Synovial Sarcoma 8 108143 -NCIT:C171399 Locally Advanced Synovial Sarcoma 8 108144 -NCIT:C153086 Resectable Soft Tissue Sarcoma 6 108145 -NCIT:C150611 Resectable Undifferentiated Pleomorphic Sarcoma 7 108146 -NCIT:C156283 Scrotal Sarcoma 6 108147 -NCIT:C156282 Scrotal Liposarcoma 7 108148 -NCIT:C162493 Paratesticular Liposarcoma 6 108149 -NCIT:C162495 Paratesticular Leiomyosarcoma 6 108150 -NCIT:C161641 Seminal Vesicle Leiomyosarcoma 7 108151 -NCIT:C162497 Paratesticular Rhabdomyosarcoma 6 108152 -NCIT:C165190 Soft Tissue Sarcoma of the Trunk and Extremities 6 108153 -NCIT:C136694 Soft Tissue Sarcoma of the Trunk and Extremities by AJCC v8 Stage 7 108154 -NCIT:C136696 Stage I Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 8 108155 -NCIT:C136698 Stage IA Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 9 108156 -NCIT:C136700 Stage IB Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 9 108157 -NCIT:C136701 Stage II Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 8 108158 -NCIT:C136702 Stage III Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 8 108159 -NCIT:C136703 Stage IIIA Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 9 108160 -NCIT:C136705 Stage IIIB Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 9 108161 -NCIT:C136706 Stage IV Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 8 108162 -NCIT:C169050 Recurrent Soft Tissue Sarcoma of the Trunk and Extremities 7 108163 -NCIT:C172849 Digestive System Sarcoma 6 108164 -NCIT:C150704 EBV-Positive Inflammatory Follicular Dendritic Cell Sarcoma of the Digestive System 7 108165 -NCIT:C172951 Digestive System Leiomyosarcoma 7 108166 -NCIT:C188065 Pancreatic Leiomyosarcoma 8 108167 -NCIT:C27200 Gastric Leiomyosarcoma 8 108168 -NCIT:C5334 Esophageal Leiomyosarcoma 8 108169 -NCIT:C5599 Anal Leiomyosarcoma 8 108170 -NCIT:C5756 Liver Leiomyosarcoma 8 108171 -NCIT:C5841 Gallbladder Leiomyosarcoma 8 108172 -NCIT:C5848 Extrahepatic Bile Duct Leiomyosarcoma 8 108173 -NCIT:C7085 Small Intestinal Leiomyosarcoma 8 108174 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 9 108175 -NCIT:C96435 Appendix Leiomyosarcoma 8 108176 -NCIT:C96509 Colorectal Leiomyosarcoma 8 108177 -NCIT:C5494 Colon Leiomyosarcoma 9 108178 -NCIT:C5549 Rectal Leiomyosarcoma 9 108179 -NCIT:C172952 Digestive System Rhabdomyosarcoma 7 108180 -NCIT:C5610 Anal Rhabdomyosarcoma 8 108181 -NCIT:C5627 Rectal Rhabdomyosarcoma 8 108182 -NCIT:C5834 Liver Rhabdomyosarcoma 8 108183 -NCIT:C5839 Gallbladder Rhabdomyosarcoma 8 108184 -NCIT:C5860 Extrahepatic Bile Duct Rhabdomyosarcoma 8 108185 -NCIT:C5847 Extrahepatic Bile Duct Embryonal Rhabdomyosarcoma 9 108186 -NCIT:C95623 Esophageal Rhabdomyosarcoma 8 108187 -NCIT:C172955 Digestive System Kaposi Sarcoma 7 108188 -NCIT:C5529 Gastric Kaposi Sarcoma 8 108189 -NCIT:C5624 AIDS-Related Gastric Kaposi Sarcoma 9 108190 -NCIT:C5602 Anal Kaposi Sarcoma 8 108191 -NCIT:C5706 Esophageal Kaposi Sarcoma 8 108192 -NCIT:C5842 Gallbladder Kaposi Sarcoma 8 108193 -NCIT:C96059 Small Intestinal Kaposi Sarcoma 8 108194 -NCIT:C96434 Appendix Kaposi Sarcoma 8 108195 -NCIT:C96510 Colorectal Kaposi Sarcoma 8 108196 -NCIT:C5516 Colon Kaposi Sarcoma 9 108197 -NCIT:C5550 Rectal Kaposi Sarcoma 9 108198 -NCIT:C96844 Liver Kaposi Sarcoma 8 108199 -NCIT:C96951 Extrahepatic Bile Duct Kaposi Sarcoma 8 108200 -NCIT:C172980 Gastrointestinal Clear Cell Sarcoma/Malignant Gastrointestinal Neuroectodermal Tumor 7 108201 -NCIT:C27439 Gastric Sarcoma 7 108202 -NCIT:C27200 Gastric Leiomyosarcoma 8 108203 -NCIT:C5488 Gastric Liposarcoma 8 108204 -NCIT:C5529 Gastric Kaposi Sarcoma 8 108205 -NCIT:C5624 AIDS-Related Gastric Kaposi Sarcoma 9 108206 -NCIT:C95897 Gastric Malignant Gastrointestinal Stromal Tumor 8 108207 -NCIT:C95899 Gastric Synovial Sarcoma 8 108208 -NCIT:C4437 Liver Sarcoma 7 108209 -NCIT:C27096 Liver Embryonal Sarcoma 8 108210 -NCIT:C189934 Childhood Liver Embryonal Sarcoma 9 108211 -NCIT:C189935 Adult Liver Embryonal Sarcoma 9 108212 -NCIT:C4438 Liver Angiosarcoma 8 108213 -NCIT:C190020 Childhood Liver Angiosarcoma 9 108214 -NCIT:C5756 Liver Leiomyosarcoma 8 108215 -NCIT:C5832 Liver Fibrosarcoma 8 108216 -NCIT:C5833 Liver Extraskeletal Osteosarcoma 8 108217 -NCIT:C5834 Liver Rhabdomyosarcoma 8 108218 -NCIT:C96844 Liver Kaposi Sarcoma 8 108219 -NCIT:C96845 Liver Synovial Sarcoma 8 108220 -NCIT:C5029 Extrahepatic Bile Duct Sarcoma 7 108221 -NCIT:C5848 Extrahepatic Bile Duct Leiomyosarcoma 8 108222 -NCIT:C5860 Extrahepatic Bile Duct Rhabdomyosarcoma 8 108223 -NCIT:C5847 Extrahepatic Bile Duct Embryonal Rhabdomyosarcoma 9 108224 -NCIT:C96951 Extrahepatic Bile Duct Kaposi Sarcoma 8 108225 -NCIT:C5335 Small Intestinal Sarcoma 7 108226 -NCIT:C5336 Small Intestinal Fibrosarcoma 8 108227 -NCIT:C7085 Small Intestinal Leiomyosarcoma 8 108228 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 9 108229 -NCIT:C82972 Duodenal Extraskeletal Osteosarcoma 8 108230 -NCIT:C96059 Small Intestinal Kaposi Sarcoma 8 108231 -NCIT:C96060 Small Intestinal Angiosarcoma 8 108232 -NCIT:C5341 Esophageal Sarcoma 7 108233 -NCIT:C5334 Esophageal Leiomyosarcoma 8 108234 -NCIT:C5705 Esophageal Liposarcoma 8 108235 -NCIT:C5706 Esophageal Kaposi Sarcoma 8 108236 -NCIT:C92185 Esophageal Malignant Peripheral Nerve Sheath Tumor 8 108237 -NCIT:C95623 Esophageal Rhabdomyosarcoma 8 108238 -NCIT:C95624 Esophageal Synovial Sarcoma 8 108239 -NCIT:C5611 Anal Sarcoma 7 108240 -NCIT:C5599 Anal Leiomyosarcoma 8 108241 -NCIT:C5602 Anal Kaposi Sarcoma 8 108242 -NCIT:C5610 Anal Rhabdomyosarcoma 8 108243 -NCIT:C5715 Pancreatic Sarcoma 7 108244 -NCIT:C188065 Pancreatic Leiomyosarcoma 8 108245 -NCIT:C5736 Gallbladder Sarcoma 7 108246 -NCIT:C5839 Gallbladder Rhabdomyosarcoma 8 108247 -NCIT:C5840 Gallbladder Angiosarcoma 8 108248 -NCIT:C5841 Gallbladder Leiomyosarcoma 8 108249 -NCIT:C5842 Gallbladder Kaposi Sarcoma 8 108250 -NCIT:C96508 Colorectal Sarcoma 7 108251 -NCIT:C5495 Colon Sarcoma 8 108252 -NCIT:C156279 Colon Liposarcoma 9 108253 -NCIT:C5494 Colon Leiomyosarcoma 9 108254 -NCIT:C5516 Colon Kaposi Sarcoma 9 108255 -NCIT:C5548 Rectal Sarcoma 8 108256 -NCIT:C5549 Rectal Leiomyosarcoma 9 108257 -NCIT:C5550 Rectal Kaposi Sarcoma 9 108258 -NCIT:C5627 Rectal Rhabdomyosarcoma 9 108259 -NCIT:C96509 Colorectal Leiomyosarcoma 8 108260 -NCIT:C5494 Colon Leiomyosarcoma 9 108261 -NCIT:C5549 Rectal Leiomyosarcoma 9 108262 -NCIT:C96510 Colorectal Kaposi Sarcoma 8 108263 -NCIT:C5516 Colon Kaposi Sarcoma 9 108264 -NCIT:C5550 Rectal Kaposi Sarcoma 9 108265 -NCIT:C96511 Colorectal Angiosarcoma 8 108266 -NCIT:C173118 Sinonasal Sarcoma 6 108267 -NCIT:C164205 Biphenotypic Sinonasal Sarcoma 7 108268 -NCIT:C173120 Sinonasal Fibrosarcoma 7 108269 -NCIT:C173121 Sinonasal Undifferentiated Pleomorphic Sarcoma 7 108270 -NCIT:C173123 Sinonasal Leiomyosarcoma 7 108271 -NCIT:C173124 Sinonasal Rhabdomyosarcoma 7 108272 -NCIT:C173125 Sinonasal Angiosarcoma 7 108273 -NCIT:C173127 Sinonasal Malignant Peripheral Nerve Sheath Tumor 7 108274 -NCIT:C173128 Sinonasal Synovial Sarcoma 7 108275 -NCIT:C6849 Paranasal Sinus Sarcoma 7 108276 -NCIT:C6850 High Grade Paranasal Sinus Sarcoma 8 108277 -NCIT:C6851 Low Grade Paranasal Sinus Sarcoma 8 108278 -NCIT:C173408 Laryngeal Soft Tissue Sarcoma 6 108279 -NCIT:C6021 Laryngeal Liposarcoma 7 108280 -NCIT:C6022 Laryngeal Leiomyosarcoma 7 108281 -NCIT:C173481 Oral Cavity Soft Tissue Sarcoma 6 108282 -NCIT:C156274 Tongue Sarcoma 7 108283 -NCIT:C156273 Tongue Alveolar Soft Part Sarcoma' 8 108284 -NCIT:C173404 Tongue Liposarcoma 8 108285 -NCIT:C173477 Oral Cavity Kaposi Sarcoma 7 108286 -NCIT:C6749 Palate Kaposi Sarcoma 8 108287 -NCIT:C173478 Oral Cavity Low Grade Myofibroblastic Sarcoma 7 108288 -NCIT:C175502 Conjunctival Sarcoma 6 108289 -NCIT:C175499 Conjunctival Angiosarcoma 7 108290 -NCIT:C175500 Conjunctival Leiomyosarcoma 7 108291 -NCIT:C175501 Conjunctival Rhabdomyosarcoma 7 108292 -NCIT:C4578 Conjunctival Kaposi Sarcoma 7 108293 -NCIT:C176467 Synovial Chondrosarcoma 6 108294 -NCIT:C189240 Localized Soft Tissue Sarcoma 6 108295 -NCIT:C115292 Localized Childhood Soft Tissue Sarcoma 7 108296 -NCIT:C8065 Localized Childhood Rhabdomyosarcoma 8 108297 -NCIT:C8797 Localized Alveolar Soft Part Sarcoma 7 108298 -NCIT:C8800 Localized Epithelioid Sarcoma 7 108299 -NCIT:C8802 Localized Extraskeletal Ewing Sarcoma 7 108300 -NCIT:C8809 Localized Extraskeletal Osteosarcoma 7 108301 -NCIT:C8826 Localized Synovial Sarcoma 7 108302 -NCIT:C27502 Extraskeletal Myxoid Chondrosarcoma 6 108303 -NCIT:C171168 Refractory Extraskeletal Myxoid Chondrosarcoma 7 108304 -NCIT:C27377 Childhood Extraskeletal Myxoid Chondrosarcoma 7 108305 -NCIT:C27501 Conventional Extraskeletal Myxoid Chondrosarcoma 7 108306 -NCIT:C5462 Brain Extraskeletal Myxoid Chondrosarcoma 7 108307 -NCIT:C7924 Adult Extraskeletal Myxoid Chondrosarcoma 7 108308 -NCIT:C8804 Metastatic Extraskeletal Myxoid Chondrosarcoma 7 108309 -NCIT:C8807 Recurrent Extraskeletal Myxoid Chondrosarcoma 7 108310 -NCIT:C27707 Virus-Related Sarcoma 6 108311 -NCIT:C162305 EBV-Related Sarcoma 7 108312 -NCIT:C162306 EBV-Related Leiomyosarcoma 8 108313 -NCIT:C172847 EBV-Positive Inflammatory Follicular Dendritic Cell Sarcoma 8 108314 -NCIT:C150704 EBV-Positive Inflammatory Follicular Dendritic Cell Sarcoma of the Digestive System 9 108315 -NCIT:C9087 Kaposi Sarcoma 7 108316 -NCIT:C156474 Refractory Kaposi Sarcoma 8 108317 -NCIT:C156475 Metastatic Kaposi Sarcoma 8 108318 -NCIT:C156476 Advanced Kaposi Sarcoma 9 108319 -NCIT:C172955 Digestive System Kaposi Sarcoma 8 108320 -NCIT:C5529 Gastric Kaposi Sarcoma 9 108321 -NCIT:C5624 AIDS-Related Gastric Kaposi Sarcoma 10 108322 -NCIT:C5602 Anal Kaposi Sarcoma 9 108323 -NCIT:C5706 Esophageal Kaposi Sarcoma 9 108324 -NCIT:C5842 Gallbladder Kaposi Sarcoma 9 108325 -NCIT:C96059 Small Intestinal Kaposi Sarcoma 9 108326 -NCIT:C96434 Appendix Kaposi Sarcoma 9 108327 -NCIT:C96510 Colorectal Kaposi Sarcoma 9 108328 -NCIT:C5516 Colon Kaposi Sarcoma 10 108329 -NCIT:C5550 Rectal Kaposi Sarcoma 10 108330 -NCIT:C96844 Liver Kaposi Sarcoma 9 108331 -NCIT:C96951 Extrahepatic Bile Duct Kaposi Sarcoma 9 108332 -NCIT:C173477 Oral Cavity Kaposi Sarcoma 8 108333 -NCIT:C6749 Palate Kaposi Sarcoma 9 108334 -NCIT:C181938 Vulvar Kaposi Sarcoma 8 108335 -NCIT:C188980 Childhood Kaposi Sarcoma 8 108336 -NCIT:C27500 Lymphadenopathic Kaposi Sarcoma 8 108337 -NCIT:C3550 Skin Kaposi Sarcoma 8 108338 -NCIT:C9112 Classic Kaposi Sarcoma 9 108339 -NCIT:C3551 Lung Kaposi Sarcoma 8 108340 -NCIT:C35873 Iatrogenic Kaposi Sarcoma 8 108341 -NCIT:C9113 Kaposi Sarcoma Related to Immunosuppressive Treatment 9 108342 -NCIT:C27640 Transplant-Related Kaposi Sarcoma 10 108343 -NCIT:C35874 Endemic African Kaposi Sarcoma 8 108344 -NCIT:C3992 AIDS-Related Kaposi Sarcoma 8 108345 -NCIT:C5624 AIDS-Related Gastric Kaposi Sarcoma 9 108346 -NCIT:C7433 AIDS-Related Cervical Kaposi Sarcoma 9 108347 -NCIT:C4578 Conjunctival Kaposi Sarcoma 8 108348 -NCIT:C4579 Corneal Kaposi Sarcoma 8 108349 -NCIT:C5363 Cardiac Kaposi Sarcoma 8 108350 -NCIT:C5523 Prostate Kaposi Sarcoma 8 108351 -NCIT:C5952 Parotid Gland Kaposi Sarcoma 8 108352 -NCIT:C6377 Penile Kaposi Sarcoma 8 108353 -NCIT:C7006 Central Nervous System Kaposi Sarcoma 8 108354 -NCIT:C7935 Recurrent Kaposi Sarcoma 8 108355 -NCIT:C9413 Kaposi Sarcoma NCI Grade 2 8 108356 -NCIT:C9414 Kaposi Sarcoma NCI Grade 3 8 108357 -NCIT:C3255 Myxosarcoma 6 108358 -NCIT:C3400 Synovial Sarcoma 6 108359 -NCIT:C147102 Pericardial Synovial Sarcoma 7 108360 -NCIT:C148296 Refractory Synovial Sarcoma 7 108361 -NCIT:C153074 Unresectable Synovial Sarcoma 7 108362 -NCIT:C157737 Kidney Synovial Sarcoma 7 108363 -NCIT:C161034 Prostate Synovial Sarcoma 7 108364 -NCIT:C173128 Sinonasal Synovial Sarcoma 7 108365 -NCIT:C4279 Biphasic Synovial Sarcoma 7 108366 -NCIT:C45632 Lung Biphasic Synovial Sarcoma 8 108367 -NCIT:C45698 Pleural Biphasic Synovial Sarcoma 8 108368 -NCIT:C45757 Cardiac Biphasic Synovial Sarcoma 8 108369 -NCIT:C45631 Lung Synovial Sarcoma 7 108370 -NCIT:C45632 Lung Biphasic Synovial Sarcoma 8 108371 -NCIT:C45633 Lung Monophasic Synovial Sarcoma 8 108372 -NCIT:C45696 Pleural Synovial Sarcoma 7 108373 -NCIT:C45697 Pleural Monophasic Synovial Sarcoma 8 108374 -NCIT:C45698 Pleural Biphasic Synovial Sarcoma 8 108375 -NCIT:C45756 Cardiac Synovial Sarcoma 7 108376 -NCIT:C45757 Cardiac Biphasic Synovial Sarcoma 8 108377 -NCIT:C45758 Cardiac Monophasic Synovial Sarcoma 8 108378 -NCIT:C6534 Monophasic Synovial Sarcoma 7 108379 -NCIT:C4277 Spindle Cell Synovial Sarcoma 8 108380 -NCIT:C4278 Epithelial Synovial Sarcoma 8 108381 -NCIT:C45633 Lung Monophasic Synovial Sarcoma 8 108382 -NCIT:C45697 Pleural Monophasic Synovial Sarcoma 8 108383 -NCIT:C45758 Cardiac Monophasic Synovial Sarcoma 8 108384 -NCIT:C6618 Mediastinal Synovial Sarcoma 7 108385 -NCIT:C7817 Adult Synovial Sarcoma 7 108386 -NCIT:C8089 Childhood Synovial Sarcoma 7 108387 -NCIT:C8825 Metastatic Synovial Sarcoma 7 108388 -NCIT:C153184 Advanced Synovial Sarcoma 8 108389 -NCIT:C171399 Locally Advanced Synovial Sarcoma 8 108390 -NCIT:C8826 Localized Synovial Sarcoma 7 108391 -NCIT:C8827 Recurrent Synovial Sarcoma 7 108392 -NCIT:C95624 Esophageal Synovial Sarcoma 7 108393 -NCIT:C95899 Gastric Synovial Sarcoma 7 108394 -NCIT:C96845 Liver Synovial Sarcoma 7 108395 -NCIT:C3714 Epithelioid Sarcoma 6 108396 -NCIT:C162722 Refractory Epithelioid Sarcoma 7 108397 -NCIT:C167379 Unresectable Epithelioid Sarcoma 7 108398 -NCIT:C181971 Vulvar Epithelioid Sarcoma 7 108399 -NCIT:C181973 Vulvar Distal-Type Epithelioid Sarcoma 8 108400 -NCIT:C40319 Vulvar Proximal-Type Epithelioid Sarcoma 8 108401 -NCIT:C27472 Proximal-Type Epithelioid Sarcoma 7 108402 -NCIT:C188055 Pleural Proximal-Type Epithelioid Sarcoma 8 108403 -NCIT:C40319 Vulvar Proximal-Type Epithelioid Sarcoma 8 108404 -NCIT:C27473 Distal-Type Epithelioid Sarcoma 7 108405 -NCIT:C181973 Vulvar Distal-Type Epithelioid Sarcoma 8 108406 -NCIT:C5059 Recurrent Epithelioid Sarcoma 7 108407 -NCIT:C7944 Adult Epithelioid Sarcoma 7 108408 -NCIT:C8095 Childhood Epithelioid Sarcoma 7 108409 -NCIT:C8799 Metastatic Epithelioid Sarcoma 7 108410 -NCIT:C167378 Locally Advanced Epithelioid Sarcoma 8 108411 -NCIT:C167380 Advanced Epithelioid Sarcoma 8 108412 -NCIT:C8800 Localized Epithelioid Sarcoma 7 108413 -NCIT:C9409 Epithelioid Sarcoma NCI Grade 2 7 108414 -NCIT:C9410 Epithelioid Sarcoma NCI Grade 3 7 108415 -NCIT:C3745 Clear Cell Sarcoma of Soft Tissue 6 108416 -NCIT:C161585 Metastatic Clear Cell Sarcoma of Soft Tissue 7 108417 -NCIT:C161586 Advanced Clear Cell Sarcoma of Soft Tissue 8 108418 -NCIT:C180979 Refractory Clear Cell Sarcoma of Soft Tissue 7 108419 -NCIT:C180980 Recurrent Clear Cell Sarcoma of Soft Tissue 7 108420 -NCIT:C27370 Adult Clear Cell Sarcoma of Soft Tissue 7 108421 -NCIT:C27371 Childhood Clear Cell Sarcoma of Soft Tissue 7 108422 -NCIT:C3750 Alveolar Soft Part Sarcoma 6 108423 -NCIT:C156273 Tongue Alveolar Soft Part Sarcoma' 7 108424 -NCIT:C156276 Orbital Alveolar Soft Part Sarcoma 7 108425 -NCIT:C156277 Bladder Alveolar Soft Part Sarcoma 7 108426 -NCIT:C164078 Unresectable Alveolar Soft Part Sarcoma 7 108427 -NCIT:C173809 Lung Alveolar Soft Part Sarcoma 7 108428 -NCIT:C188034 Refractory Alveolar Soft Part Sarcoma 7 108429 -NCIT:C40225 Cervical Alveolar Soft Part Sarcoma 7 108430 -NCIT:C40320 Vulvar Alveolar Soft Part Sarcoma 7 108431 -NCIT:C7943 Adult Alveolar Soft Part Sarcoma 7 108432 -NCIT:C8092 Childhood Alveolar Soft Part Sarcoma 7 108433 -NCIT:C8796 Metastatic Alveolar Soft Part Sarcoma 7 108434 -NCIT:C164076 Locally Advanced Alveolar Soft Part Sarcoma 8 108435 -NCIT:C188198 Advanced Alveolar Soft Part Sarcoma 8 108436 -NCIT:C8797 Localized Alveolar Soft Part Sarcoma 7 108437 -NCIT:C8798 Recurrent Alveolar Soft Part Sarcoma 7 108438 -NCIT:C40128 Fallopian Tube Leiomyosarcoma 6 108439 -NCIT:C40317 Vulvar Sarcoma 6 108440 -NCIT:C176515 Vulvar Angiosarcoma 7 108441 -NCIT:C181938 Vulvar Kaposi Sarcoma 7 108442 -NCIT:C181944 Vulvar Rhabdomyosarcoma 7 108443 -NCIT:C128273 Vulvar Alveolar Rhabdomyosarcoma 8 108444 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 8 108445 -NCIT:C181971 Vulvar Epithelioid Sarcoma 7 108446 -NCIT:C181973 Vulvar Distal-Type Epithelioid Sarcoma 8 108447 -NCIT:C40319 Vulvar Proximal-Type Epithelioid Sarcoma 8 108448 -NCIT:C181977 Vulvar Ewing Sarcoma 7 108449 -NCIT:C40318 Vulvar Leiomyosarcoma 7 108450 -NCIT:C40320 Vulvar Alveolar Soft Part Sarcoma 7 108451 -NCIT:C40321 Vulvar Liposarcoma 7 108452 -NCIT:C4525 Kidney Sarcoma 6 108453 -NCIT:C154496 Anaplastic Sarcoma of the Kidney 7 108454 -NCIT:C189260 Childhood Anaplastic Sarcoma of the Kidney 8 108455 -NCIT:C157737 Kidney Synovial Sarcoma 7 108456 -NCIT:C159205 Kidney Angiosarcoma 7 108457 -NCIT:C159206 Kidney Rhabdomyosarcoma 7 108458 -NCIT:C159208 Kidney Ewing Sarcoma 7 108459 -NCIT:C189261 Childhood Kidney Ewing Sarcoma 8 108460 -NCIT:C4264 Clear Cell Sarcoma of the Kidney 7 108461 -NCIT:C6181 Kidney Extraskeletal Osteosarcoma 7 108462 -NCIT:C6183 Kidney Leiomyosarcoma 7 108463 -NCIT:C6185 Kidney Liposarcoma 7 108464 -NCIT:C7726 Kidney Fibrosarcoma 7 108465 -NCIT:C4669 Bladder Sarcoma 6 108466 -NCIT:C156277 Bladder Alveolar Soft Part Sarcoma 7 108467 -NCIT:C159667 Bladder Rhabdomyosarcoma 7 108468 -NCIT:C159668 Bladder Embryonal Rhabdomyosarcoma 8 108469 -NCIT:C159669 Bladder Alveolar Rhabdomyosarcoma 8 108470 -NCIT:C159670 Bladder Leiomyosarcoma 7 108471 -NCIT:C159671 Bladder Angiosarcoma 7 108472 -NCIT:C4670 Breast Sarcoma 6 108473 -NCIT:C170727 Recurrent Breast Sarcoma 7 108474 -NCIT:C133092 Recurrent Breast Angiosarcoma 8 108475 -NCIT:C5184 Breast Angiosarcoma 7 108476 -NCIT:C133092 Recurrent Breast Angiosarcoma 8 108477 -NCIT:C176251 Primary Breast Angiosarcoma 8 108478 -NCIT:C40378 Postradiation Breast Angiosarcoma 8 108479 -NCIT:C5185 Breast Fibrosarcoma 7 108480 -NCIT:C5186 Breast Leiomyosarcoma 7 108481 -NCIT:C5187 Breast Liposarcoma 7 108482 -NCIT:C5189 Breast Extraskeletal Osteosarcoma 7 108483 -NCIT:C5190 Breast Rhabdomyosarcoma 7 108484 -NCIT:C4832 Retroperitoneal Sarcoma 6 108485 -NCIT:C136811 Retroperitoneal Sarcoma by AJCC v8 Stage 7 108486 -NCIT:C136812 Stage I Retroperitoneal Sarcoma AJCC v8 8 108487 -NCIT:C136813 Stage IA Retroperitoneal Sarcoma AJCC v8 9 108488 -NCIT:C136814 Stage IB Retroperitoneal Sarcoma AJCC v8 9 108489 -NCIT:C136815 Stage II Retroperitoneal Sarcoma AJCC v8 8 108490 -NCIT:C136816 Stage III Retroperitoneal Sarcoma AJCC v8 8 108491 -NCIT:C136817 Stage IIIA Retroperitoneal Sarcoma AJCC v8 9 108492 -NCIT:C136818 Stage IIIB Retroperitoneal Sarcoma AJCC v8 9 108493 -NCIT:C136819 Stage IV Retroperitoneal Sarcoma AJCC v8 8 108494 -NCIT:C156956 Adrenal Gland Sarcoma 7 108495 -NCIT:C188254 Adrenal Gland Leiomyosarcoma 8 108496 -NCIT:C48320 Adrenal Gland Angiosarcoma 8 108497 -NCIT:C173808 Retroperitoneal Undifferentiated Pleomorphic Sarcoma 7 108498 -NCIT:C188071 Retroperitoneal Rhabdomyosarcoma 7 108499 -NCIT:C188073 Retroperitoneal Malignant Peripheral Nerve Sheath Tumor 7 108500 -NCIT:C27904 Retroperitoneal Leiomyosarcoma 7 108501 -NCIT:C4860 Lung Sarcoma 6 108502 -NCIT:C142825 Pulmonary Artery Intimal Sarcoma 7 108503 -NCIT:C142827 Primary Pulmonary Myxoid Sarcoma with EWSR1-CREB1 Fusion 7 108504 -NCIT:C173809 Lung Alveolar Soft Part Sarcoma 7 108505 -NCIT:C181201 Lung Rhabdomyosarcoma 7 108506 -NCIT:C188061 Lung Osteosarcoma 7 108507 -NCIT:C3551 Lung Kaposi Sarcoma 7 108508 -NCIT:C45631 Lung Synovial Sarcoma 7 108509 -NCIT:C45632 Lung Biphasic Synovial Sarcoma 8 108510 -NCIT:C45633 Lung Monophasic Synovial Sarcoma 8 108511 -NCIT:C5667 Lung Leiomyosarcoma 7 108512 -NCIT:C5153 Central Nervous System Sarcoma 6 108513 -NCIT:C129534 Central Nervous System Mesenchymal Chondrosarcoma 7 108514 -NCIT:C129566 Central Nervous System Undifferentiated Pleomorphic Sarcoma 7 108515 -NCIT:C186607 Central Nervous System CIC-Rearranged Sarcoma 7 108516 -NCIT:C186611 Central Nervous System Ewing Sarcoma 7 108517 -NCIT:C4073 Meningeal Sarcoma 7 108518 -NCIT:C4334 Meningeal Sarcomatosis 8 108519 -NCIT:C8312 Leptomeningeal Sarcoma 8 108520 -NCIT:C5152 Spinal Cord Sarcoma 7 108521 -NCIT:C5154 Brain Sarcoma 7 108522 -NCIT:C186610 Primary Intracranial Sarcoma, DICER1-Mutant 8 108523 -NCIT:C5462 Brain Extraskeletal Myxoid Chondrosarcoma 8 108524 -NCIT:C6973 Brain Liposarcoma 8 108525 -NCIT:C5450 Central Nervous System Angiosarcoma 7 108526 -NCIT:C5464 Central Nervous System Rhabdomyosarcoma 7 108527 -NCIT:C5465 Central Nervous System Fibrosarcoma 7 108528 -NCIT:C6999 Central Nervous System Leiomyosarcoma 7 108529 -NCIT:C7002 Central Nervous System Extraskeletal Osteosarcoma 7 108530 -NCIT:C7006 Central Nervous System Kaposi Sarcoma 7 108531 -NCIT:C53677 Intimal Sarcoma 6 108532 -NCIT:C142825 Pulmonary Artery Intimal Sarcoma 7 108533 -NCIT:C5585 Skin Sarcoma 6 108534 -NCIT:C172632 Skin Myxofibrosarcoma 7 108535 -NCIT:C172634 Skin Ewing Sarcoma 7 108536 -NCIT:C3550 Skin Kaposi Sarcoma 7 108537 -NCIT:C9112 Classic Kaposi Sarcoma 8 108538 -NCIT:C4489 Skin Angiosarcoma 7 108539 -NCIT:C153626 Recurrent Skin Angiosarcoma 8 108540 -NCIT:C27719 Skin Radiation-Related Angiosarcoma 8 108541 -NCIT:C40379 Angiosarcoma of the Skin of the Arm after Radical Mastectomy followed by Lymphedema 8 108542 -NCIT:C4490 Skin Lymphangiosarcoma 7 108543 -NCIT:C49025 Myxoinflammatory Fibroblastic Sarcoma 7 108544 -NCIT:C5576 Skin Undifferentiated Pleomorphic Sarcoma 7 108545 -NCIT:C5615 Skin Liposarcoma 7 108546 -NCIT:C170473 Skin Pleomorphic Liposarcoma 8 108547 -NCIT:C5983 Major Salivary Gland Sarcoma 6 108548 -NCIT:C156280 Parotid Gland Sarcoma 7 108549 -NCIT:C156281 Parotid Gland Liposarcoma 8 108550 -NCIT:C5952 Parotid Gland Kaposi Sarcoma 8 108551 -NCIT:C6041 Thyroid Gland Sarcoma 6 108552 -NCIT:C156341 Thyroid Gland Malignant Peripheral Nerve Sheath Tumor 7 108553 -NCIT:C156347 Thyroid Gland Leiomyosarcoma 7 108554 -NCIT:C6043 Thyroid Gland Angiosarcoma 7 108555 -NCIT:C6050 Tracheal Sarcoma 6 108556 -NCIT:C6095 Orbit Sarcoma 6 108557 -NCIT:C156276 Orbital Alveolar Soft Part Sarcoma 7 108558 -NCIT:C4543 Orbit Rhabdomyosarcoma 7 108559 -NCIT:C6246 Orbit Embryonal Rhabdomyosarcoma 8 108560 -NCIT:C6247 Orbit Alveolar Rhabdomyosarcoma 8 108561 -NCIT:C6339 Uterine Corpus Sarcoma 6 108562 -NCIT:C127058 Uterine Corpus Rhabdomyosarcoma 7 108563 -NCIT:C136708 Uterine Corpus Sarcoma by AJCC v7 Stage 7 108564 -NCIT:C8258 Stage I Uterine Sarcoma AJCC v7 8 108565 -NCIT:C87132 Stage IA Uterine Sarcoma AJCC v7 9 108566 -NCIT:C87133 Stage IB Uterine Sarcoma AJCC v7 9 108567 -NCIT:C87134 Stage IC Uterine Sarcoma AJCC v7 9 108568 -NCIT:C8259 Stage II Uterine Sarcoma AJCC v7 8 108569 -NCIT:C115130 Stage IIA Uterine Sarcoma AJCC v7 9 108570 -NCIT:C115131 Stage IIB Uterine Sarcoma AJCC v7 9 108571 -NCIT:C8260 Stage III Uterine Sarcoma AJCC v7 8 108572 -NCIT:C87135 Stage IIIA Uterine Sarcoma AJCC v7 9 108573 -NCIT:C87137 Stage IIIB Uterine Sarcoma AJCC v7 9 108574 -NCIT:C87138 Stage IIIC Uterine Sarcoma AJCC v7 9 108575 -NCIT:C9179 Stage IV Uterine Sarcoma AJCC v7 8 108576 -NCIT:C87140 Stage IVA Uterine Sarcoma AJCC v7 9 108577 -NCIT:C87144 Stage IVB Uterine Sarcoma AJCC v7 9 108578 -NCIT:C139869 Uterine Corpus Sarcoma by AJCC v8 Stage 7 108579 -NCIT:C139870 Uterine Corpus Leiomyosarcoma by AJCC v8 Stage 8 108580 -NCIT:C139871 Stage I Uterine Corpus Leiomyosarcoma AJCC v8 9 108581 -NCIT:C139872 Stage IA Uterine Corpus Leiomyosarcoma AJCC v8 10 108582 -NCIT:C139873 Stage IB Uterine Corpus Leiomyosarcoma AJCC v8 10 108583 -NCIT:C139874 Stage II Uterine Corpus Leiomyosarcoma AJCC v8 9 108584 -NCIT:C139875 Stage III Uterine Corpus Leiomyosarcoma AJCC v8 9 108585 -NCIT:C139876 Stage IIIA Uterine Corpus Leiomyosarcoma AJCC v8 10 108586 -NCIT:C139877 Stage IIIB Uterine Corpus Leiomyosarcoma AJCC v8 10 108587 -NCIT:C139878 Stage IIIC Uterine Corpus Leiomyosarcoma AJCC v8 10 108588 -NCIT:C139879 Stage IV Uterine Corpus Leiomyosarcoma AJCC v8 9 108589 -NCIT:C139880 Stage IVA Uterine Corpus Leiomyosarcoma AJCC v8 10 108590 -NCIT:C139881 Stage IVB Uterine Corpus Leiomyosarcoma AJCC v8 10 108591 -NCIT:C139882 Uterine Corpus Endometrial Stromal Sarcoma by AJCC v8 Stage 8 108592 -NCIT:C139883 Stage I Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 108593 -NCIT:C139884 Stage IA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 108594 -NCIT:C139885 Stage IB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 108595 -NCIT:C139886 Stage II Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 108596 -NCIT:C139887 Stage III Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 108597 -NCIT:C139888 Stage IIIA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 108598 -NCIT:C139889 Stage IIIB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 108599 -NCIT:C139890 Stage IIIC Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 108600 -NCIT:C139891 Stage IV Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 108601 -NCIT:C139892 Stage IVA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 108602 -NCIT:C139893 Stage IVB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 108603 -NCIT:C139894 Uterine Corpus Adenosarcoma by AJCC v8 Stage 8 108604 -NCIT:C139895 Stage I Uterine Corpus Adenosarcoma AJCC v8 9 108605 -NCIT:C139896 Stage IA Uterine Corpus Adenosarcoma AJCC v8 10 108606 -NCIT:C139897 Stage IB Uterine Corpus Adenosarcoma AJCC v8 10 108607 -NCIT:C139898 Stage IC Uterine Corpus Adenosarcoma AJCC v8 10 108608 -NCIT:C139899 Stage II Uterine Corpus Adenosarcoma AJCC v8 9 108609 -NCIT:C139900 Stage III Uterine Corpus Adenosarcoma AJCC v8 9 108610 -NCIT:C139901 Stage IIIA Uterine Corpus Adenosarcoma AJCC v8 10 108611 -NCIT:C139902 Stage IIIB Uterine Corpus Adenosarcoma AJCC v8 10 108612 -NCIT:C139903 Stage IIIC Uterine Corpus Adenosarcoma AJCC v8 10 108613 -NCIT:C139904 Stage IV Uterine Corpus Adenosarcoma AJCC v8 9 108614 -NCIT:C139905 Stage IVA Uterine Corpus Adenosarcoma AJCC v8 10 108615 -NCIT:C139906 Stage IVB Uterine Corpus Adenosarcoma AJCC v8 10 108616 -NCIT:C180546 Uterine Corpus Central Primitive Neuroectodermal Tumor 7 108617 -NCIT:C190009 Metastatic Uterine Corpus Sarcoma 7 108618 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 8 108619 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 9 108620 -NCIT:C190016 Unresectable Uterine Corpus Sarcoma 7 108621 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 8 108622 -NCIT:C40219 Uterine Corpus Endometrial Stromal Sarcoma 7 108623 -NCIT:C126998 Uterine Corpus High Grade Endometrial Stromal Sarcoma 8 108624 -NCIT:C139882 Uterine Corpus Endometrial Stromal Sarcoma by AJCC v8 Stage 8 108625 -NCIT:C139883 Stage I Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 108626 -NCIT:C139884 Stage IA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 108627 -NCIT:C139885 Stage IB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 108628 -NCIT:C139886 Stage II Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 108629 -NCIT:C139887 Stage III Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 108630 -NCIT:C139888 Stage IIIA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 108631 -NCIT:C139889 Stage IIIB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 108632 -NCIT:C139890 Stage IIIC Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 108633 -NCIT:C139891 Stage IV Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 108634 -NCIT:C139892 Stage IVA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 108635 -NCIT:C139893 Stage IVB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 108636 -NCIT:C40223 Uterine Corpus Low Grade Endometrial Stromal Sarcoma 8 108637 -NCIT:C6336 Uterine Corpus Adenosarcoma 7 108638 -NCIT:C139894 Uterine Corpus Adenosarcoma by AJCC v8 Stage 8 108639 -NCIT:C139895 Stage I Uterine Corpus Adenosarcoma AJCC v8 9 108640 -NCIT:C139896 Stage IA Uterine Corpus Adenosarcoma AJCC v8 10 108641 -NCIT:C139897 Stage IB Uterine Corpus Adenosarcoma AJCC v8 10 108642 -NCIT:C139898 Stage IC Uterine Corpus Adenosarcoma AJCC v8 10 108643 -NCIT:C139899 Stage II Uterine Corpus Adenosarcoma AJCC v8 9 108644 -NCIT:C139900 Stage III Uterine Corpus Adenosarcoma AJCC v8 9 108645 -NCIT:C139901 Stage IIIA Uterine Corpus Adenosarcoma AJCC v8 10 108646 -NCIT:C139902 Stage IIIB Uterine Corpus Adenosarcoma AJCC v8 10 108647 -NCIT:C139903 Stage IIIC Uterine Corpus Adenosarcoma AJCC v8 10 108648 -NCIT:C139904 Stage IV Uterine Corpus Adenosarcoma AJCC v8 9 108649 -NCIT:C139905 Stage IVA Uterine Corpus Adenosarcoma AJCC v8 10 108650 -NCIT:C139906 Stage IVB Uterine Corpus Adenosarcoma AJCC v8 10 108651 -NCIT:C6340 Uterine Corpus Leiomyosarcoma 7 108652 -NCIT:C139870 Uterine Corpus Leiomyosarcoma by AJCC v8 Stage 8 108653 -NCIT:C139871 Stage I Uterine Corpus Leiomyosarcoma AJCC v8 9 108654 -NCIT:C139872 Stage IA Uterine Corpus Leiomyosarcoma AJCC v8 10 108655 -NCIT:C139873 Stage IB Uterine Corpus Leiomyosarcoma AJCC v8 10 108656 -NCIT:C139874 Stage II Uterine Corpus Leiomyosarcoma AJCC v8 9 108657 -NCIT:C139875 Stage III Uterine Corpus Leiomyosarcoma AJCC v8 9 108658 -NCIT:C139876 Stage IIIA Uterine Corpus Leiomyosarcoma AJCC v8 10 108659 -NCIT:C139877 Stage IIIB Uterine Corpus Leiomyosarcoma AJCC v8 10 108660 -NCIT:C139878 Stage IIIC Uterine Corpus Leiomyosarcoma AJCC v8 10 108661 -NCIT:C139879 Stage IV Uterine Corpus Leiomyosarcoma AJCC v8 9 108662 -NCIT:C139880 Stage IVA Uterine Corpus Leiomyosarcoma AJCC v8 10 108663 -NCIT:C139881 Stage IVB Uterine Corpus Leiomyosarcoma AJCC v8 10 108664 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 8 108665 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 8 108666 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 9 108667 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 8 108668 -NCIT:C40174 Uterine Corpus Epithelioid Leiomyosarcoma 8 108669 -NCIT:C40175 Uterine Corpus Myxoid Leiomyosarcoma 8 108670 -NCIT:C8261 Recurrent Uterine Corpus Sarcoma 7 108671 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 8 108672 -NCIT:C8972 Uterine Corpus Undifferentiated Sarcoma 7 108673 -NCIT:C6359 Testicular Sarcoma 6 108674 -NCIT:C6378 Testicular Rhabdomyosarcoma 7 108675 -NCIT:C6605 Soft Tissue Fibrosarcoma 6 108676 -NCIT:C173120 Sinonasal Fibrosarcoma 7 108677 -NCIT:C173478 Oral Cavity Low Grade Myofibroblastic Sarcoma 7 108678 -NCIT:C49025 Myxoinflammatory Fibroblastic Sarcoma 7 108679 -NCIT:C5185 Breast Fibrosarcoma 7 108680 -NCIT:C5233 Ovarian Fibrosarcoma 7 108681 -NCIT:C5336 Small Intestinal Fibrosarcoma 7 108682 -NCIT:C5361 Cardiac Fibrosarcoma 7 108683 -NCIT:C147004 Cardiac Myxofibrosarcoma 8 108684 -NCIT:C5465 Central Nervous System Fibrosarcoma 7 108685 -NCIT:C5832 Liver Fibrosarcoma 7 108686 -NCIT:C6496 Myxofibrosarcoma 7 108687 -NCIT:C147004 Cardiac Myxofibrosarcoma 8 108688 -NCIT:C168670 Metastatic Myxofibrosarcoma 8 108689 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 9 108690 -NCIT:C171304 Advanced Myxofibrosarcoma 9 108691 -NCIT:C172632 Skin Myxofibrosarcoma 8 108692 -NCIT:C177414 Epithelioid Myxofibrosarcoma 8 108693 -NCIT:C178372 Unresectable Myxofibrosarcoma 8 108694 -NCIT:C7726 Kidney Fibrosarcoma 7 108695 -NCIT:C6606 Mediastinal Sarcoma 6 108696 -NCIT:C6613 Mediastinal Angiosarcoma 7 108697 -NCIT:C6614 Mediastinal Liposarcoma 7 108698 -NCIT:C95038 Thymoliposarcoma 8 108699 -NCIT:C6615 Mediastinal Extraskeletal Osteosarcoma 7 108700 -NCIT:C6617 Mediastinal Rhabdomyosarcoma 7 108701 -NCIT:C6618 Mediastinal Synovial Sarcoma 7 108702 -NCIT:C6619 Mediastinal Leiomyosarcoma 7 108703 -NCIT:C6626 Mediastinal Malignant Peripheral Nerve Sheath Tumor 7 108704 -NCIT:C6630 Malignant Melanotic Peripheral Nerve Sheath Tumor of the Mediastinum 8 108705 -NCIT:C6926 Stromal Sarcoma 6 108706 -NCIT:C53994 Undifferentiated Stromal Sarcoma 7 108707 -NCIT:C40066 Ovarian Undifferentiated Sarcoma 8 108708 -NCIT:C40224 Endocervical Undifferentiated Sarcoma 8 108709 -NCIT:C40272 Vaginal Undifferentiated Sarcoma 8 108710 -NCIT:C8972 Uterine Corpus Undifferentiated Sarcoma 8 108711 -NCIT:C53999 Malignant Gastrointestinal Stromal Tumor 7 108712 -NCIT:C136767 Gastrointestinal Stromal Tumor by AJCC v8 Stage 8 108713 -NCIT:C136768 Gastric and Omental Gastrointestinal Stromal Tumor by AJCC v8 Stage 9 108714 -NCIT:C136770 Stage I Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 10 108715 -NCIT:C136771 Stage IA Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 11 108716 -NCIT:C136772 Stage IB Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 11 108717 -NCIT:C136773 Stage II Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 10 108718 -NCIT:C136774 Stage III Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 10 108719 -NCIT:C136775 Stage IIIA Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 11 108720 -NCIT:C136777 Stage IIIB Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 11 108721 -NCIT:C136778 Stage IV Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 10 108722 -NCIT:C136769 Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor by AJCC v8 Stage 9 108723 -NCIT:C136780 Stage I Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 10 108724 -NCIT:C136781 Stage II Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 10 108725 -NCIT:C136783 Stage III Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 10 108726 -NCIT:C136784 Stage IIIA Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 11 108727 -NCIT:C136785 Stage IIIB Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 11 108728 -NCIT:C136786 Stage IV Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 10 108729 -NCIT:C150738 Metastatic Gastrointestinal Stromal Tumor 8 108730 -NCIT:C150739 Locally Advanced Gastrointestinal Stromal Tumor 9 108731 -NCIT:C173502 Advanced Gastrointestinal Stromal Tumor 9 108732 -NCIT:C150741 Unresectable Malignant Gastrointestinal Stromal Tumor 8 108733 -NCIT:C179932 Dedifferentiated Gastrointestinal Stromal Tumor 8 108734 -NCIT:C185882 Refractory Malignant Gastrointestinal Stromal Tumor 8 108735 -NCIT:C95897 Gastric Malignant Gastrointestinal Stromal Tumor 8 108736 -NCIT:C5524 Prostate Stromal Sarcoma 7 108737 -NCIT:C8973 Endometrioid Stromal Sarcoma 7 108738 -NCIT:C40219 Uterine Corpus Endometrial Stromal Sarcoma 8 108739 -NCIT:C126998 Uterine Corpus High Grade Endometrial Stromal Sarcoma 9 108740 -NCIT:C139882 Uterine Corpus Endometrial Stromal Sarcoma by AJCC v8 Stage 9 108741 -NCIT:C139883 Stage I Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 108742 -NCIT:C139884 Stage IA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 108743 -NCIT:C139885 Stage IB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 108744 -NCIT:C139886 Stage II Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 108745 -NCIT:C139887 Stage III Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 108746 -NCIT:C139888 Stage IIIA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 108747 -NCIT:C139889 Stage IIIB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 108748 -NCIT:C139890 Stage IIIC Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 108749 -NCIT:C139891 Stage IV Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 108750 -NCIT:C139892 Stage IVA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 108751 -NCIT:C139893 Stage IVB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 108752 -NCIT:C40223 Uterine Corpus Low Grade Endometrial Stromal Sarcoma 9 108753 -NCIT:C4263 Low Grade Endometrioid Stromal Sarcoma 8 108754 -NCIT:C179562 Peritoneal Low Grade Endometrioid Stromal Sarcoma 9 108755 -NCIT:C40063 Ovarian Low Grade Endometrioid Stromal Sarcoma 9 108756 -NCIT:C40222 Cervical Low Grade Endometrioid Stromal Sarcoma 9 108757 -NCIT:C40223 Uterine Corpus Low Grade Endometrial Stromal Sarcoma 9 108758 -NCIT:C40271 Vaginal Low Grade Endometrioid Stromal Sarcoma 9 108759 -NCIT:C9474 Adenosarcoma 7 108760 -NCIT:C102570 Broad Ligament Adenosarcoma 8 108761 -NCIT:C40125 Fallopian Tube Adenosarcoma 8 108762 -NCIT:C40229 Cervical Adenosarcoma 8 108763 -NCIT:C40277 Vaginal Adenosarcoma 8 108764 -NCIT:C6336 Uterine Corpus Adenosarcoma 8 108765 -NCIT:C139894 Uterine Corpus Adenosarcoma by AJCC v8 Stage 9 108766 -NCIT:C139895 Stage I Uterine Corpus Adenosarcoma AJCC v8 10 108767 -NCIT:C139896 Stage IA Uterine Corpus Adenosarcoma AJCC v8 11 108768 -NCIT:C139897 Stage IB Uterine Corpus Adenosarcoma AJCC v8 11 108769 -NCIT:C139898 Stage IC Uterine Corpus Adenosarcoma AJCC v8 11 108770 -NCIT:C139899 Stage II Uterine Corpus Adenosarcoma AJCC v8 10 108771 -NCIT:C139900 Stage III Uterine Corpus Adenosarcoma AJCC v8 10 108772 -NCIT:C139901 Stage IIIA Uterine Corpus Adenosarcoma AJCC v8 11 108773 -NCIT:C139902 Stage IIIB Uterine Corpus Adenosarcoma AJCC v8 11 108774 -NCIT:C139903 Stage IIIC Uterine Corpus Adenosarcoma AJCC v8 11 108775 -NCIT:C139904 Stage IV Uterine Corpus Adenosarcoma AJCC v8 10 108776 -NCIT:C139905 Stage IVA Uterine Corpus Adenosarcoma AJCC v8 11 108777 -NCIT:C139906 Stage IVB Uterine Corpus Adenosarcoma AJCC v8 11 108778 -NCIT:C7317 Ovarian Adenosarcoma 8 108779 -NCIT:C7135 Extraskeletal Ewing Sarcoma 6 108780 -NCIT:C159208 Kidney Ewing Sarcoma 7 108781 -NCIT:C189261 Childhood Kidney Ewing Sarcoma 8 108782 -NCIT:C172634 Skin Ewing Sarcoma 7 108783 -NCIT:C181977 Vulvar Ewing Sarcoma 7 108784 -NCIT:C186611 Central Nervous System Ewing Sarcoma 7 108785 -NCIT:C8801 Metastatic Extraskeletal Ewing Sarcoma 7 108786 -NCIT:C8802 Localized Extraskeletal Ewing Sarcoma 7 108787 -NCIT:C8803 Recurrent Extraskeletal Ewing Sarcoma 7 108788 -NCIT:C7707 Adult Soft Tissue Sarcoma 6 108789 -NCIT:C114541 Adult Undifferentiated Pleomorphic Sarcoma 7 108790 -NCIT:C156071 Metastatic Adult Soft Tissue Sarcoma 7 108791 -NCIT:C189935 Adult Liver Embryonal Sarcoma 7 108792 -NCIT:C27370 Adult Clear Cell Sarcoma of Soft Tissue 7 108793 -NCIT:C27373 Adult Desmoplastic Small Round Cell Tumor 7 108794 -NCIT:C27375 Adult Mesenchymal Chondrosarcoma 7 108795 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 7 108796 -NCIT:C7817 Adult Synovial Sarcoma 7 108797 -NCIT:C7818 Stage I Adult Soft Tissue Sarcoma AJCC v7 7 108798 -NCIT:C8569 Stage IA Adult Soft Tissue Sarcoma AJCC v7 8 108799 -NCIT:C8570 Stage IB Adult Soft Tissue Sarcoma AJCC v7 8 108800 -NCIT:C7819 Stage II Adult Soft Tissue Sarcoma AJCC v7 7 108801 -NCIT:C8571 Stage IIA Adult Soft Tissue Sarcoma AJCC v7 8 108802 -NCIT:C8572 Stage IIB Adult Soft Tissue Sarcoma AJCC v7 8 108803 -NCIT:C7820 Stage III Adult Soft Tissue Sarcoma AJCC v7 7 108804 -NCIT:C7821 Stage IV Adult Soft Tissue Sarcoma AJCC v7 7 108805 -NCIT:C7822 Recurrent Adult Soft Tissue Sarcoma 7 108806 -NCIT:C7924 Adult Extraskeletal Myxoid Chondrosarcoma 7 108807 -NCIT:C7925 Adult Extraskeletal Osteosarcoma 7 108808 -NCIT:C7943 Adult Alveolar Soft Part Sarcoma 7 108809 -NCIT:C7944 Adult Epithelioid Sarcoma 7 108810 -NCIT:C7715 Childhood Soft Tissue Sarcoma 6 108811 -NCIT:C114749 Childhood Undifferentiated Pleomorphic Sarcoma 7 108812 -NCIT:C115292 Localized Childhood Soft Tissue Sarcoma 7 108813 -NCIT:C8065 Localized Childhood Rhabdomyosarcoma 8 108814 -NCIT:C187194 Refractory Childhood Soft Tissue Sarcoma 7 108815 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 8 108816 -NCIT:C188980 Childhood Kaposi Sarcoma 7 108817 -NCIT:C189260 Childhood Anaplastic Sarcoma of the Kidney 7 108818 -NCIT:C189261 Childhood Kidney Ewing Sarcoma 7 108819 -NCIT:C189934 Childhood Liver Embryonal Sarcoma 7 108820 -NCIT:C190020 Childhood Liver Angiosarcoma 7 108821 -NCIT:C27371 Childhood Clear Cell Sarcoma of Soft Tissue 7 108822 -NCIT:C27372 Childhood Desmoplastic Small Round Cell Tumor 7 108823 -NCIT:C27376 Childhood Extraskeletal Osteosarcoma 7 108824 -NCIT:C27377 Childhood Extraskeletal Myxoid Chondrosarcoma 7 108825 -NCIT:C4264 Clear Cell Sarcoma of the Kidney 7 108826 -NCIT:C7705 Childhood Rhabdomyosarcoma 7 108827 -NCIT:C123397 Childhood Spindle Cell Rhabdomyosarcoma 8 108828 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 8 108829 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 8 108830 -NCIT:C7957 Childhood Embryonal Rhabdomyosarcoma 8 108831 -NCIT:C35574 Childhood Botryoid-Type Embryonal Rhabdomyosarcoma 9 108832 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 108833 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 10 108834 -NCIT:C7958 Childhood Alveolar Rhabdomyosarcoma 8 108835 -NCIT:C7959 Childhood Pleomorphic Rhabdomyosarcoma 8 108836 -NCIT:C7960 Childhood Rhabdomyosarcoma with Mixed Embryonal and Alveolar Features 8 108837 -NCIT:C8065 Localized Childhood Rhabdomyosarcoma 8 108838 -NCIT:C8066 Metastatic Childhood Soft Tissue Sarcoma 7 108839 -NCIT:C8067 Recurrent Childhood Soft Tissue Sarcoma 7 108840 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 8 108841 -NCIT:C8089 Childhood Synovial Sarcoma 7 108842 -NCIT:C8092 Childhood Alveolar Soft Part Sarcoma 7 108843 -NCIT:C8093 Childhood Leiomyosarcoma 7 108844 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 8 108845 -NCIT:C8095 Childhood Epithelioid Sarcoma 7 108846 -NCIT:C7723 Cardiac Sarcoma 6 108847 -NCIT:C147003 Cardiac Extraskeletal Osteosarcoma 7 108848 -NCIT:C147097 Cardiac Angiosarcoma 7 108849 -NCIT:C45755 Cardiac Undifferentiated Pleomorphic Sarcoma 7 108850 -NCIT:C45756 Cardiac Synovial Sarcoma 7 108851 -NCIT:C45757 Cardiac Biphasic Synovial Sarcoma 8 108852 -NCIT:C45758 Cardiac Monophasic Synovial Sarcoma 8 108853 -NCIT:C45759 Cardiac Rhabdomyosarcoma 7 108854 -NCIT:C5361 Cardiac Fibrosarcoma 7 108855 -NCIT:C147004 Cardiac Myxofibrosarcoma 8 108856 -NCIT:C5363 Cardiac Kaposi Sarcoma 7 108857 -NCIT:C5364 Cardiac Leiomyosarcoma 7 108858 -NCIT:C5367 Cardiac Malignant Peripheral Nerve Sheath Tumor 7 108859 -NCIT:C7730 Penile Sarcoma 6 108860 -NCIT:C162578 Penile Angiosarcoma 7 108861 -NCIT:C162584 Penile Malignant Peripheral Nerve Sheath Tumor 7 108862 -NCIT:C162585 Penile Leiomyosarcoma 7 108863 -NCIT:C162588 Penile Rhabdomyosarcoma 7 108864 -NCIT:C162589 Penile Undifferentiated Pleomorphic Sarcoma 7 108865 -NCIT:C6377 Penile Kaposi Sarcoma 7 108866 -NCIT:C7731 Prostate Sarcoma 6 108867 -NCIT:C161034 Prostate Synovial Sarcoma 7 108868 -NCIT:C161035 Prostate Osteosarcoma 7 108869 -NCIT:C161038 Prostate Undifferentiated Pleomorphic Sarcoma 7 108870 -NCIT:C5522 Prostate Rhabdomyosarcoma 7 108871 -NCIT:C188070 Prostate Alveolar Rhabdomyosarcoma 8 108872 -NCIT:C5525 Prostate Embryonal Rhabdomyosarcoma 8 108873 -NCIT:C5523 Prostate Kaposi Sarcoma 7 108874 -NCIT:C5524 Prostate Stromal Sarcoma 7 108875 -NCIT:C5526 Prostate Leiomyosarcoma 7 108876 -NCIT:C5528 Prostate Angiosarcoma 7 108877 -NCIT:C7737 Vaginal Sarcoma 6 108878 -NCIT:C128080 Vaginal Rhabdomyosarcoma 7 108879 -NCIT:C40268 Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 8 108880 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 9 108881 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 9 108882 -NCIT:C40271 Vaginal Low Grade Endometrioid Stromal Sarcoma 7 108883 -NCIT:C40272 Vaginal Undifferentiated Sarcoma 7 108884 -NCIT:C40277 Vaginal Adenosarcoma 7 108885 -NCIT:C6326 Vaginal Leiomyosarcoma 7 108886 -NCIT:C8267 Ovarian Sarcoma 6 108887 -NCIT:C40063 Ovarian Low Grade Endometrioid Stromal Sarcoma 7 108888 -NCIT:C40066 Ovarian Undifferentiated Sarcoma 7 108889 -NCIT:C5232 Ovarian Angiosarcoma 7 108890 -NCIT:C5233 Ovarian Fibrosarcoma 7 108891 -NCIT:C5234 Ovarian Leiomyosarcoma 7 108892 -NCIT:C5236 Ovarian Rhabdomyosarcoma 7 108893 -NCIT:C6419 Ovarian Liposarcoma 7 108894 -NCIT:C5235 Ovarian Myxoid Liposarcoma 8 108895 -NCIT:C7317 Ovarian Adenosarcoma 7 108896 -NCIT:C8300 Desmoplastic Small Round Cell Tumor 6 108897 -NCIT:C126356 Peritoneal Desmoplastic Small Round Cell Tumor 7 108898 -NCIT:C158426 Recurrent Desmoplastic Small Round Cell Tumor 7 108899 -NCIT:C158427 Refractory Desmoplastic Small Round Cell Tumor 7 108900 -NCIT:C170826 Unresectable Desmoplastic Small Round Cell Tumor 7 108901 -NCIT:C170827 Metastatic Desmoplastic Small Round Cell Tumor 7 108902 -NCIT:C180875 Locally Advanced Desmoplastic Small Round Cell Tumor 8 108903 -NCIT:C27372 Childhood Desmoplastic Small Round Cell Tumor 7 108904 -NCIT:C27373 Adult Desmoplastic Small Round Cell Tumor 7 108905 -NCIT:C8810 Extraskeletal Osteosarcoma 6 108906 -NCIT:C147003 Cardiac Extraskeletal Osteosarcoma 7 108907 -NCIT:C161035 Prostate Osteosarcoma 7 108908 -NCIT:C188061 Lung Osteosarcoma 7 108909 -NCIT:C27376 Childhood Extraskeletal Osteosarcoma 7 108910 -NCIT:C5189 Breast Extraskeletal Osteosarcoma 7 108911 -NCIT:C5833 Liver Extraskeletal Osteosarcoma 7 108912 -NCIT:C6181 Kidney Extraskeletal Osteosarcoma 7 108913 -NCIT:C6615 Mediastinal Extraskeletal Osteosarcoma 7 108914 -NCIT:C7002 Central Nervous System Extraskeletal Osteosarcoma 7 108915 -NCIT:C7925 Adult Extraskeletal Osteosarcoma 7 108916 -NCIT:C82972 Duodenal Extraskeletal Osteosarcoma 7 108917 -NCIT:C8808 Metastatic Extraskeletal Osteosarcoma 7 108918 -NCIT:C8809 Localized Extraskeletal Osteosarcoma 7 108919 -NCIT:C8811 Recurrent Extraskeletal Osteosarcoma 7 108920 -NCIT:C5244 Ovarian Soft Tissue Neoplasm 4 108921 -NCIT:C179359 Ovarian Smooth Muscle Neoplasm 5 108922 -NCIT:C179360 Ovarian Leiomyoma 6 108923 -NCIT:C179362 Ovarian Smooth Muscle Tumor of Uncertain Malignant Potential 6 108924 -NCIT:C5234 Ovarian Leiomyosarcoma 6 108925 -NCIT:C3498 Ovarian Fibroma 5 108926 -NCIT:C189288 Childhood Ovarian Fibroma 6 108927 -NCIT:C7291 Ovarian Cellular Fibroma 6 108928 -NCIT:C40065 Ovarian Endometrioid Stromal and Related Neoplasms 5 108929 -NCIT:C40063 Ovarian Low Grade Endometrioid Stromal Sarcoma 6 108930 -NCIT:C40066 Ovarian Undifferentiated Sarcoma 6 108931 -NCIT:C5245 Ovarian Myxoma 5 108932 -NCIT:C8267 Ovarian Sarcoma 5 108933 -NCIT:C40063 Ovarian Low Grade Endometrioid Stromal Sarcoma 6 108934 -NCIT:C40066 Ovarian Undifferentiated Sarcoma 6 108935 -NCIT:C5232 Ovarian Angiosarcoma 6 108936 -NCIT:C5233 Ovarian Fibrosarcoma 6 108937 -NCIT:C5234 Ovarian Leiomyosarcoma 6 108938 -NCIT:C5236 Ovarian Rhabdomyosarcoma 6 108939 -NCIT:C6419 Ovarian Liposarcoma 6 108940 -NCIT:C5235 Ovarian Myxoid Liposarcoma 7 108941 -NCIT:C7317 Ovarian Adenosarcoma 6 108942 -NCIT:C5449 Central Nervous System Mesenchymal, Non-Meningothelial Neoplasm 4 108943 -NCIT:C129526 Central Nervous System Solitary Fibrous Tumor 5 108944 -NCIT:C129527 Central Nervous System Solitary Fibrous Tumor, Grade 3 6 108945 -NCIT:C186603 Central Nervous System Dedifferentiated Solitary Fibrous Tumor 7 108946 -NCIT:C9183 Adult Central Nervous System Solitary Fibrous Tumor, Grade 3 7 108947 -NCIT:C92652 Meningeal Central Nervous System Solitary Fibrous Tumor, Grade 3 7 108948 -NCIT:C129528 Central Nervous System Solitary Fibrous Tumor, Grade 2 6 108949 -NCIT:C129530 Central Nervous System Solitary Fibrous Tumor, Grade 1 6 108950 -NCIT:C175496 Optic Nerve Sheath Solitary Fibrous Tumor 6 108951 -NCIT:C4660 Meningeal Solitary Fibrous Tumor 6 108952 -NCIT:C155784 Sellar Solitary Fibrous Tumor 7 108953 -NCIT:C92652 Meningeal Central Nervous System Solitary Fibrous Tumor, Grade 3 7 108954 -NCIT:C129548 Central Nervous System Desmoid Fibromatosis 5 108955 -NCIT:C186614 Intracranial Mesenchymal Tumor, FET-CREB Fusion-Positive 5 108956 -NCIT:C6757 Benign Central Nervous System Mesenchymal, Non-Meningothelial Neoplasm 5 108957 -NCIT:C129549 Intracranial Fibrous Histiocytoma 6 108958 -NCIT:C129551 Central Nervous System Myofibroblastoma 6 108959 -NCIT:C5451 Central Nervous System Lipoma 6 108960 -NCIT:C129538 Central Nervous System Angiolipoma 7 108961 -NCIT:C5424 Epidural Spinal Canal Angiolipoma 8 108962 -NCIT:C4619 Spinal Cord Lipoma 7 108963 -NCIT:C5444 Intracranial Lipoma 7 108964 -NCIT:C5452 Inner Ear Lipoma 8 108965 -NCIT:C6220 Cerebral Hemisphere Lipoma 8 108966 -NCIT:C5438 Corpus Callosum Lipoma 9 108967 -NCIT:C6997 Central Nervous System Hibernoma 7 108968 -NCIT:C6998 Central Nervous System Leiomyoma 6 108969 -NCIT:C7000 Central Nervous System Rhabdomyoma 6 108970 -NCIT:C7001 Central Nervous System Chondroma 6 108971 -NCIT:C7004 Central Nervous System Hemangioma 6 108972 -NCIT:C84621 Central Nervous System Cavernous Hemangioma 7 108973 -NCIT:C5432 Intracranial Cavernous Hemangioma 8 108974 -NCIT:C6758 Malignant Central Nervous System Mesenchymal, Non-Meningothelial Neoplasm 5 108975 -NCIT:C129527 Central Nervous System Solitary Fibrous Tumor, Grade 3 6 108976 -NCIT:C186603 Central Nervous System Dedifferentiated Solitary Fibrous Tumor 7 108977 -NCIT:C9183 Adult Central Nervous System Solitary Fibrous Tumor, Grade 3 7 108978 -NCIT:C92652 Meningeal Central Nervous System Solitary Fibrous Tumor, Grade 3 7 108979 -NCIT:C129536 Central Nervous System Epithelioid Hemangioendothelioma 6 108980 -NCIT:C5153 Central Nervous System Sarcoma 6 108981 -NCIT:C129534 Central Nervous System Mesenchymal Chondrosarcoma 7 108982 -NCIT:C129566 Central Nervous System Undifferentiated Pleomorphic Sarcoma 7 108983 -NCIT:C186607 Central Nervous System CIC-Rearranged Sarcoma 7 108984 -NCIT:C186611 Central Nervous System Ewing Sarcoma 7 108985 -NCIT:C4073 Meningeal Sarcoma 7 108986 -NCIT:C4334 Meningeal Sarcomatosis 8 108987 -NCIT:C8312 Leptomeningeal Sarcoma 8 108988 -NCIT:C5152 Spinal Cord Sarcoma 7 108989 -NCIT:C5154 Brain Sarcoma 7 108990 -NCIT:C186610 Primary Intracranial Sarcoma, DICER1-Mutant 8 108991 -NCIT:C5462 Brain Extraskeletal Myxoid Chondrosarcoma 8 108992 -NCIT:C6973 Brain Liposarcoma 8 108993 -NCIT:C5450 Central Nervous System Angiosarcoma 7 108994 -NCIT:C5464 Central Nervous System Rhabdomyosarcoma 7 108995 -NCIT:C5465 Central Nervous System Fibrosarcoma 7 108996 -NCIT:C6999 Central Nervous System Leiomyosarcoma 7 108997 -NCIT:C7002 Central Nervous System Extraskeletal Osteosarcoma 7 108998 -NCIT:C7006 Central Nervous System Kaposi Sarcoma 7 108999 -NCIT:C7020 Central Nervous System Inflammatory Myofibroblastic Tumor 5 109000 -NCIT:C6570 Extraskeletal Cartilaginous and Osseous Neoplasm 4 109001 -NCIT:C6571 Benign Extraskeletal Cartilaginous and Osseous Neoplasm 5 109002 -NCIT:C9482 Soft Tissue Chondroma 6 109003 -NCIT:C45629 Lung Chondroma 7 109004 -NCIT:C6596 Mediastinal Chondroma 7 109005 -NCIT:C7001 Central Nervous System Chondroma 7 109006 -NCIT:C6572 Malignant Extraskeletal Cartilaginous and Osseous Neoplasm 5 109007 -NCIT:C8810 Extraskeletal Osteosarcoma 6 109008 -NCIT:C147003 Cardiac Extraskeletal Osteosarcoma 7 109009 -NCIT:C161035 Prostate Osteosarcoma 7 109010 -NCIT:C188061 Lung Osteosarcoma 7 109011 -NCIT:C27376 Childhood Extraskeletal Osteosarcoma 7 109012 -NCIT:C5189 Breast Extraskeletal Osteosarcoma 7 109013 -NCIT:C5833 Liver Extraskeletal Osteosarcoma 7 109014 -NCIT:C6181 Kidney Extraskeletal Osteosarcoma 7 109015 -NCIT:C6615 Mediastinal Extraskeletal Osteosarcoma 7 109016 -NCIT:C7002 Central Nervous System Extraskeletal Osteosarcoma 7 109017 -NCIT:C7925 Adult Extraskeletal Osteosarcoma 7 109018 -NCIT:C82972 Duodenal Extraskeletal Osteosarcoma 7 109019 -NCIT:C8808 Metastatic Extraskeletal Osteosarcoma 7 109020 -NCIT:C8809 Localized Extraskeletal Osteosarcoma 7 109021 -NCIT:C8811 Recurrent Extraskeletal Osteosarcoma 7 109022 -NCIT:C6637 Mediastinal Soft Tissue Neoplasm 4 109023 -NCIT:C45744 Mediastinal Solitary Fibrous Tumor 5 109024 -NCIT:C95044 Thymus Solitary Fibrous Tumor 6 109025 -NCIT:C6593 Benign Mediastinal Soft Tissue Neoplasm 5 109026 -NCIT:C146987 Mediastinal Hemangioma 6 109027 -NCIT:C27488 Mediastinal Lipomatosis 6 109028 -NCIT:C6595 Mediastinal Lymphangioma 6 109029 -NCIT:C6596 Mediastinal Chondroma 6 109030 -NCIT:C6598 Mediastinal Leiomyoma 6 109031 -NCIT:C6599 Mediastinal Lipoma 6 109032 -NCIT:C6600 Mediastinal Rhabdomyoma 6 109033 -NCIT:C6642 Malignant Mediastinal Soft Tissue Neoplasm 5 109034 -NCIT:C146988 Mediastinal Epithelioid Hemangioendothelioma 6 109035 -NCIT:C6606 Mediastinal Sarcoma 6 109036 -NCIT:C6613 Mediastinal Angiosarcoma 7 109037 -NCIT:C6614 Mediastinal Liposarcoma 7 109038 -NCIT:C95038 Thymoliposarcoma 8 109039 -NCIT:C6615 Mediastinal Extraskeletal Osteosarcoma 7 109040 -NCIT:C6617 Mediastinal Rhabdomyosarcoma 7 109041 -NCIT:C6618 Mediastinal Synovial Sarcoma 7 109042 -NCIT:C6619 Mediastinal Leiomyosarcoma 7 109043 -NCIT:C6626 Mediastinal Malignant Peripheral Nerve Sheath Tumor 7 109044 -NCIT:C6630 Malignant Melanotic Peripheral Nerve Sheath Tumor of the Mediastinum 8 109045 -NCIT:C6781 Stromal Neoplasm 4 109046 -NCIT:C175494 Conjunctival Stromal Tumor 5 109047 -NCIT:C179218 Breast Periductal Stromal Tumor 5 109048 -NCIT:C3868 Gastrointestinal Stromal Tumor 5 109049 -NCIT:C123906 Childhood Gastrointestinal Stromal Tumor 6 109050 -NCIT:C128460 Recurrent Gastrointestinal Stromal Tumor 6 109051 -NCIT:C27716 Extragastrointestinal Gastrointestinal Stromal Tumor 6 109052 -NCIT:C40337 Retroperitoneal Gastrointestinal Stromal Tumor 7 109053 -NCIT:C40338 Peritoneal Gastrointestinal Stromal Tumor 7 109054 -NCIT:C40339 Mesenteric Gastrointestinal Stromal Tumor 8 109055 -NCIT:C40340 Omentum Gastrointestinal Stromal Tumor 8 109056 -NCIT:C27792 Spindle Cell Type Gastrointestinal Stromal Tumor 6 109057 -NCIT:C27793 Mixed Cell Type Gastrointestinal Stromal Tumor 6 109058 -NCIT:C3486 Epithelioid Cell Type Gastrointestinal Stromal Tumor 6 109059 -NCIT:C81854 Benign Epithelioid Cell Type Gastrointestinal Stromal Tumor 7 109060 -NCIT:C81855 Malignant Epithelioid Cell Type Gastrointestinal Stromal Tumor 7 109061 -NCIT:C35778 Gastrointestinal Stromal Tumor of the Gastrointestinal Tract 6 109062 -NCIT:C27430 Esophageal Gastrointestinal Stromal Tumor 7 109063 -NCIT:C27735 Colorectal Gastrointestinal Stromal Tumor 7 109064 -NCIT:C5806 Gastric Gastrointestinal Stromal Tumor 7 109065 -NCIT:C87825 Stage IA Gastric Gastrointestinal Stromal Tumor 8 109066 -NCIT:C87826 Stage IB Gastric Gastrointestinal Stromal Tumor 8 109067 -NCIT:C87827 Stage II Gastric Gastrointestinal Stromal Tumor 8 109068 -NCIT:C87828 Stage IIIA Gastric Gastrointestinal Stromal Tumor 8 109069 -NCIT:C87829 Stage IIIB Gastric Gastrointestinal Stromal Tumor 8 109070 -NCIT:C87830 Stage IV Gastric Gastrointestinal Stromal Tumor 8 109071 -NCIT:C95895 Benign Gastric Gastrointestinal Stromal Tumor 8 109072 -NCIT:C95897 Gastric Malignant Gastrointestinal Stromal Tumor 8 109073 -NCIT:C95898 Gastric Gastrointestinal Stromal Tumor of Uncertain Malignant Potential 8 109074 -NCIT:C5811 Small Intestinal Gastrointestinal Stromal Tumor 7 109075 -NCIT:C87831 Stage I Small Intestinal Gastrointestinal Stromal Tumor 8 109076 -NCIT:C87832 Stage II Small Intestinal Gastrointestinal Stromal Tumor 8 109077 -NCIT:C87833 Stage IIIA Small Intestinal Gastrointestinal Stromal Tumor 8 109078 -NCIT:C87834 Stage IIIB Small Intestinal Gastrointestinal Stromal Tumor 8 109079 -NCIT:C87835 Stage IV Small Intestinal Gastrointestinal Stromal Tumor 8 109080 -NCIT:C53998 Benign Gastrointestinal Stromal Tumor 6 109081 -NCIT:C95895 Benign Gastric Gastrointestinal Stromal Tumor 7 109082 -NCIT:C53999 Malignant Gastrointestinal Stromal Tumor 6 109083 -NCIT:C136767 Gastrointestinal Stromal Tumor by AJCC v8 Stage 7 109084 -NCIT:C136768 Gastric and Omental Gastrointestinal Stromal Tumor by AJCC v8 Stage 8 109085 -NCIT:C136770 Stage I Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 9 109086 -NCIT:C136771 Stage IA Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 10 109087 -NCIT:C136772 Stage IB Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 10 109088 -NCIT:C136773 Stage II Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 9 109089 -NCIT:C136774 Stage III Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 9 109090 -NCIT:C136775 Stage IIIA Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 10 109091 -NCIT:C136777 Stage IIIB Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 10 109092 -NCIT:C136778 Stage IV Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 9 109093 -NCIT:C136769 Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor by AJCC v8 Stage 8 109094 -NCIT:C136780 Stage I Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 9 109095 -NCIT:C136781 Stage II Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 9 109096 -NCIT:C136783 Stage III Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 9 109097 -NCIT:C136784 Stage IIIA Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 10 109098 -NCIT:C136785 Stage IIIB Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 10 109099 -NCIT:C136786 Stage IV Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 9 109100 -NCIT:C150738 Metastatic Gastrointestinal Stromal Tumor 7 109101 -NCIT:C150739 Locally Advanced Gastrointestinal Stromal Tumor 8 109102 -NCIT:C173502 Advanced Gastrointestinal Stromal Tumor 8 109103 -NCIT:C150741 Unresectable Malignant Gastrointestinal Stromal Tumor 7 109104 -NCIT:C179932 Dedifferentiated Gastrointestinal Stromal Tumor 7 109105 -NCIT:C185882 Refractory Malignant Gastrointestinal Stromal Tumor 7 109106 -NCIT:C95897 Gastric Malignant Gastrointestinal Stromal Tumor 7 109107 -NCIT:C54000 Gastrointestinal Stromal Tumor of Uncertain Malignant Potential 6 109108 -NCIT:C95898 Gastric Gastrointestinal Stromal Tumor of Uncertain Malignant Potential 7 109109 -NCIT:C39904 Tumor of Specialized Prostatic Stroma 5 109110 -NCIT:C39905 Prostate Stromal Tumor of Uncertain Malignant Potential 6 109111 -NCIT:C5524 Prostate Stromal Sarcoma 6 109112 -NCIT:C6926 Stromal Sarcoma 5 109113 -NCIT:C53994 Undifferentiated Stromal Sarcoma 6 109114 -NCIT:C40066 Ovarian Undifferentiated Sarcoma 7 109115 -NCIT:C40224 Endocervical Undifferentiated Sarcoma 7 109116 -NCIT:C40272 Vaginal Undifferentiated Sarcoma 7 109117 -NCIT:C8972 Uterine Corpus Undifferentiated Sarcoma 7 109118 -NCIT:C53999 Malignant Gastrointestinal Stromal Tumor 6 109119 -NCIT:C136767 Gastrointestinal Stromal Tumor by AJCC v8 Stage 7 109120 -NCIT:C136768 Gastric and Omental Gastrointestinal Stromal Tumor by AJCC v8 Stage 8 109121 -NCIT:C136770 Stage I Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 9 109122 -NCIT:C136771 Stage IA Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 10 109123 -NCIT:C136772 Stage IB Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 10 109124 -NCIT:C136773 Stage II Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 9 109125 -NCIT:C136774 Stage III Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 9 109126 -NCIT:C136775 Stage IIIA Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 10 109127 -NCIT:C136777 Stage IIIB Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 10 109128 -NCIT:C136778 Stage IV Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 9 109129 -NCIT:C136769 Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor by AJCC v8 Stage 8 109130 -NCIT:C136780 Stage I Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 9 109131 -NCIT:C136781 Stage II Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 9 109132 -NCIT:C136783 Stage III Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 9 109133 -NCIT:C136784 Stage IIIA Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 10 109134 -NCIT:C136785 Stage IIIB Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 10 109135 -NCIT:C136786 Stage IV Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 9 109136 -NCIT:C150738 Metastatic Gastrointestinal Stromal Tumor 7 109137 -NCIT:C150739 Locally Advanced Gastrointestinal Stromal Tumor 8 109138 -NCIT:C173502 Advanced Gastrointestinal Stromal Tumor 8 109139 -NCIT:C150741 Unresectable Malignant Gastrointestinal Stromal Tumor 7 109140 -NCIT:C179932 Dedifferentiated Gastrointestinal Stromal Tumor 7 109141 -NCIT:C185882 Refractory Malignant Gastrointestinal Stromal Tumor 7 109142 -NCIT:C95897 Gastric Malignant Gastrointestinal Stromal Tumor 7 109143 -NCIT:C5524 Prostate Stromal Sarcoma 6 109144 -NCIT:C8973 Endometrioid Stromal Sarcoma 6 109145 -NCIT:C40219 Uterine Corpus Endometrial Stromal Sarcoma 7 109146 -NCIT:C126998 Uterine Corpus High Grade Endometrial Stromal Sarcoma 8 109147 -NCIT:C139882 Uterine Corpus Endometrial Stromal Sarcoma by AJCC v8 Stage 8 109148 -NCIT:C139883 Stage I Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 109149 -NCIT:C139884 Stage IA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 109150 -NCIT:C139885 Stage IB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 109151 -NCIT:C139886 Stage II Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 109152 -NCIT:C139887 Stage III Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 109153 -NCIT:C139888 Stage IIIA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 109154 -NCIT:C139889 Stage IIIB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 109155 -NCIT:C139890 Stage IIIC Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 109156 -NCIT:C139891 Stage IV Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 109157 -NCIT:C139892 Stage IVA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 109158 -NCIT:C139893 Stage IVB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 109159 -NCIT:C40223 Uterine Corpus Low Grade Endometrial Stromal Sarcoma 8 109160 -NCIT:C4263 Low Grade Endometrioid Stromal Sarcoma 7 109161 -NCIT:C179562 Peritoneal Low Grade Endometrioid Stromal Sarcoma 8 109162 -NCIT:C40063 Ovarian Low Grade Endometrioid Stromal Sarcoma 8 109163 -NCIT:C40222 Cervical Low Grade Endometrioid Stromal Sarcoma 8 109164 -NCIT:C40223 Uterine Corpus Low Grade Endometrial Stromal Sarcoma 8 109165 -NCIT:C40271 Vaginal Low Grade Endometrioid Stromal Sarcoma 8 109166 -NCIT:C9474 Adenosarcoma 6 109167 -NCIT:C102570 Broad Ligament Adenosarcoma 7 109168 -NCIT:C40125 Fallopian Tube Adenosarcoma 7 109169 -NCIT:C40229 Cervical Adenosarcoma 7 109170 -NCIT:C40277 Vaginal Adenosarcoma 7 109171 -NCIT:C6336 Uterine Corpus Adenosarcoma 7 109172 -NCIT:C139894 Uterine Corpus Adenosarcoma by AJCC v8 Stage 8 109173 -NCIT:C139895 Stage I Uterine Corpus Adenosarcoma AJCC v8 9 109174 -NCIT:C139896 Stage IA Uterine Corpus Adenosarcoma AJCC v8 10 109175 -NCIT:C139897 Stage IB Uterine Corpus Adenosarcoma AJCC v8 10 109176 -NCIT:C139898 Stage IC Uterine Corpus Adenosarcoma AJCC v8 10 109177 -NCIT:C139899 Stage II Uterine Corpus Adenosarcoma AJCC v8 9 109178 -NCIT:C139900 Stage III Uterine Corpus Adenosarcoma AJCC v8 9 109179 -NCIT:C139901 Stage IIIA Uterine Corpus Adenosarcoma AJCC v8 10 109180 -NCIT:C139902 Stage IIIB Uterine Corpus Adenosarcoma AJCC v8 10 109181 -NCIT:C139903 Stage IIIC Uterine Corpus Adenosarcoma AJCC v8 10 109182 -NCIT:C139904 Stage IV Uterine Corpus Adenosarcoma AJCC v8 9 109183 -NCIT:C139905 Stage IVA Uterine Corpus Adenosarcoma AJCC v8 10 109184 -NCIT:C139906 Stage IVB Uterine Corpus Adenosarcoma AJCC v8 10 109185 -NCIT:C7317 Ovarian Adenosarcoma 7 109186 -NCIT:C8384 Endometrioid Stromal and Related Neoplasms 5 109187 -NCIT:C40065 Ovarian Endometrioid Stromal and Related Neoplasms 6 109188 -NCIT:C40063 Ovarian Low Grade Endometrioid Stromal Sarcoma 7 109189 -NCIT:C40066 Ovarian Undifferentiated Sarcoma 7 109190 -NCIT:C40217 Uterine Corpus Endometrial Stromal and Related Neoplasms 6 109191 -NCIT:C127005 Uterine Corpus Tumor Resembling Ovarian Sex Cord Tumor 7 109192 -NCIT:C40219 Uterine Corpus Endometrial Stromal Sarcoma 7 109193 -NCIT:C126998 Uterine Corpus High Grade Endometrial Stromal Sarcoma 8 109194 -NCIT:C139882 Uterine Corpus Endometrial Stromal Sarcoma by AJCC v8 Stage 8 109195 -NCIT:C139883 Stage I Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 109196 -NCIT:C139884 Stage IA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 109197 -NCIT:C139885 Stage IB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 109198 -NCIT:C139886 Stage II Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 109199 -NCIT:C139887 Stage III Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 109200 -NCIT:C139888 Stage IIIA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 109201 -NCIT:C139889 Stage IIIB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 109202 -NCIT:C139890 Stage IIIC Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 109203 -NCIT:C139891 Stage IV Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 109204 -NCIT:C139892 Stage IVA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 109205 -NCIT:C139893 Stage IVB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 109206 -NCIT:C40223 Uterine Corpus Low Grade Endometrial Stromal Sarcoma 8 109207 -NCIT:C4262 Endometrial Stromal Nodule 7 109208 -NCIT:C8972 Uterine Corpus Undifferentiated Sarcoma 7 109209 -NCIT:C40218 Cervical Endometrioid Stromal and Related Neoplasms 6 109210 -NCIT:C40222 Cervical Low Grade Endometrioid Stromal Sarcoma 7 109211 -NCIT:C40224 Endocervical Undifferentiated Sarcoma 7 109212 -NCIT:C40269 Vaginal Endometrioid Stromal and Related Neoplasms 6 109213 -NCIT:C40271 Vaginal Low Grade Endometrioid Stromal Sarcoma 7 109214 -NCIT:C40272 Vaginal Undifferentiated Sarcoma 7 109215 -NCIT:C53994 Undifferentiated Stromal Sarcoma 6 109216 -NCIT:C40066 Ovarian Undifferentiated Sarcoma 7 109217 -NCIT:C40224 Endocervical Undifferentiated Sarcoma 7 109218 -NCIT:C40272 Vaginal Undifferentiated Sarcoma 7 109219 -NCIT:C8972 Uterine Corpus Undifferentiated Sarcoma 7 109220 -NCIT:C8973 Endometrioid Stromal Sarcoma 6 109221 -NCIT:C40219 Uterine Corpus Endometrial Stromal Sarcoma 7 109222 -NCIT:C126998 Uterine Corpus High Grade Endometrial Stromal Sarcoma 8 109223 -NCIT:C139882 Uterine Corpus Endometrial Stromal Sarcoma by AJCC v8 Stage 8 109224 -NCIT:C139883 Stage I Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 109225 -NCIT:C139884 Stage IA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 109226 -NCIT:C139885 Stage IB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 109227 -NCIT:C139886 Stage II Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 109228 -NCIT:C139887 Stage III Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 109229 -NCIT:C139888 Stage IIIA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 109230 -NCIT:C139889 Stage IIIB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 109231 -NCIT:C139890 Stage IIIC Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 109232 -NCIT:C139891 Stage IV Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 109233 -NCIT:C139892 Stage IVA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 109234 -NCIT:C139893 Stage IVB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 109235 -NCIT:C40223 Uterine Corpus Low Grade Endometrial Stromal Sarcoma 8 109236 -NCIT:C4263 Low Grade Endometrioid Stromal Sarcoma 7 109237 -NCIT:C179562 Peritoneal Low Grade Endometrioid Stromal Sarcoma 8 109238 -NCIT:C40063 Ovarian Low Grade Endometrioid Stromal Sarcoma 8 109239 -NCIT:C40222 Cervical Low Grade Endometrioid Stromal Sarcoma 8 109240 -NCIT:C40223 Uterine Corpus Low Grade Endometrial Stromal Sarcoma 8 109241 -NCIT:C40271 Vaginal Low Grade Endometrioid Stromal Sarcoma 8 109242 -NCIT:C7148 Soft Tissue Tumor of Uncertain Differentiation 4 109243 -NCIT:C121738 Intermediate Soft Tissue Tumor of Uncertain Differentiation 5 109244 -NCIT:C121752 Hemosiderotic Fibrolipomatous Tumor 6 109245 -NCIT:C4246 Atypical Fibroxanthoma 6 109246 -NCIT:C27545 Classic Type Atypical Fibroxanthoma 7 109247 -NCIT:C27546 Spindle Cell Type Atypical Fibroxanthoma 7 109248 -NCIT:C6494 Angiomatoid Fibrous Histiocytoma 6 109249 -NCIT:C188999 Childhood Angiomatoid Fibrous Histiocytoma 7 109250 -NCIT:C6582 Ossifying Fibromyxoid Tumor 6 109251 -NCIT:C121774 Malignant Ossifying Fibromyxoid Tumor 7 109252 -NCIT:C178426 NTRK-Rearranged Spindle Cell Neoplasm 5 109253 -NCIT:C188964 Childhood NTRK-Rearranged Spindle Cell Neoplasm 6 109254 -NCIT:C38150 PEComa 5 109255 -NCIT:C121790 Sclerosing PEComa 6 109256 -NCIT:C121791 Benign PEComa 6 109257 -NCIT:C127071 Benign Uterine Corpus PEComa 7 109258 -NCIT:C142784 Benign Lung PEComa 7 109259 -NCIT:C38152 Lung Clear Cell Tumor 8 109260 -NCIT:C159674 Bladder Benign PEComa 7 109261 -NCIT:C121792 Malignant PEComa 6 109262 -NCIT:C127072 Uterine Corpus Malignant PEComa 7 109263 -NCIT:C142785 Lung Malignant PEComa 7 109264 -NCIT:C159677 Bladder Malignant PEComa 7 109265 -NCIT:C164245 Metastatic Malignant PEComa 7 109266 -NCIT:C164246 Advanced Malignant PEComa 8 109267 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 8 109268 -NCIT:C142783 Lung PEComa 6 109269 -NCIT:C142784 Benign Lung PEComa 7 109270 -NCIT:C38152 Lung Clear Cell Tumor 8 109271 -NCIT:C142785 Lung Malignant PEComa 7 109272 -NCIT:C38153 Lung Lymphangioleiomyomatosis 7 109273 -NCIT:C159673 Bladder PEComa 6 109274 -NCIT:C159674 Bladder Benign PEComa 7 109275 -NCIT:C159677 Bladder Malignant PEComa 7 109276 -NCIT:C189000 Childhood PEComa 6 109277 -NCIT:C6565 Childhood Kidney Angiomyolipoma 7 109278 -NCIT:C3204 Lymphangioleiomyoma 6 109279 -NCIT:C3725 Lymphangioleiomyomatosis 6 109280 -NCIT:C38153 Lung Lymphangioleiomyomatosis 7 109281 -NCIT:C4370 Skin Lymphangioleiomyomatosis 7 109282 -NCIT:C3734 Angiomyolipoma 6 109283 -NCIT:C27485 Liver Angiomyolipoma 7 109284 -NCIT:C38151 Epithelioid Angiomyolipoma 7 109285 -NCIT:C158032 Kidney Epithelioid Angiomyolipoma 8 109286 -NCIT:C3888 Kidney Angiomyolipoma 7 109287 -NCIT:C158032 Kidney Epithelioid Angiomyolipoma 8 109288 -NCIT:C191391 Kidney Classic Angiomyolipoma 8 109289 -NCIT:C191392 Kidney Oncocytoma-Like Angiomyolipoma 9 109290 -NCIT:C191393 Kidney Angiomyolipoma with Epithelial Cysts 9 109291 -NCIT:C6565 Childhood Kidney Angiomyolipoma 8 109292 -NCIT:C38154 Clear Cell Myomelanocytic Tumor of the Falciform Ligament/Ligamentum Teres 6 109293 -NCIT:C40180 Uterine Corpus PEComa 6 109294 -NCIT:C127071 Benign Uterine Corpus PEComa 7 109295 -NCIT:C127072 Uterine Corpus Malignant PEComa 7 109296 -NCIT:C6587 Benign Soft Tissue Tumor of Uncertain Differentiation 5 109297 -NCIT:C121713 Acral Fibromyxoma 6 109298 -NCIT:C121791 Benign PEComa 6 109299 -NCIT:C127071 Benign Uterine Corpus PEComa 7 109300 -NCIT:C142784 Benign Lung PEComa 7 109301 -NCIT:C38152 Lung Clear Cell Tumor 8 109302 -NCIT:C159674 Bladder Benign PEComa 7 109303 -NCIT:C3254 Angiomyxoma 6 109304 -NCIT:C40323 Superficial Angiomyxoma 7 109305 -NCIT:C40324 Vulvar Superficial Angiomyxoma 8 109306 -NCIT:C40325 Vulvar Angiomyxoma 7 109307 -NCIT:C40322 Vulvar Deep (Aggressive) Angiomyxoma 8 109308 -NCIT:C40324 Vulvar Superficial Angiomyxoma 8 109309 -NCIT:C6936 Deep (Aggressive) Angiomyxoma 7 109310 -NCIT:C162501 Paratesticular Deep (Aggressive) Angiomyxoma 8 109311 -NCIT:C40273 Vaginal Deep (Aggressive) Angiomyxoma 8 109312 -NCIT:C40322 Vulvar Deep (Aggressive) Angiomyxoma 8 109313 -NCIT:C53594 Pleomorphic Hyalinizing Angiectatic Tumor of Soft Parts 6 109314 -NCIT:C53595 Ectopic Hamartomatous Thymoma 6 109315 -NCIT:C6577 Myxoma 6 109316 -NCIT:C175495 Conjunctival Myxoma 7 109317 -NCIT:C190160 Sinonasal Tract Myxoma 7 109318 -NCIT:C5245 Ovarian Myxoma 7 109319 -NCIT:C6578 Skin Myxoma 7 109320 -NCIT:C27526 Follicular Myxoma 8 109321 -NCIT:C6579 Intramuscular Myxoma 7 109322 -NCIT:C53589 Cellular Myxoma 8 109323 -NCIT:C6580 Juxta-Articular Myxoma 7 109324 -NCIT:C7748 Cardiac Myxoma 7 109325 -NCIT:C3499 Atrial Myxoma 8 109326 -NCIT:C4791 Left Atrial Myxoma 9 109327 -NCIT:C4792 Right Atrial Myxoma 9 109328 -NCIT:C45748 Ventricular Myxoma 8 109329 -NCIT:C6588 Malignant Soft Tissue Tumor of Uncertain Differentiation 5 109330 -NCIT:C121774 Malignant Ossifying Fibromyxoid Tumor 6 109331 -NCIT:C121792 Malignant PEComa 6 109332 -NCIT:C127072 Uterine Corpus Malignant PEComa 7 109333 -NCIT:C142785 Lung Malignant PEComa 7 109334 -NCIT:C159677 Bladder Malignant PEComa 7 109335 -NCIT:C164245 Metastatic Malignant PEComa 7 109336 -NCIT:C164246 Advanced Malignant PEComa 8 109337 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 8 109338 -NCIT:C27502 Extraskeletal Myxoid Chondrosarcoma 6 109339 -NCIT:C171168 Refractory Extraskeletal Myxoid Chondrosarcoma 7 109340 -NCIT:C27377 Childhood Extraskeletal Myxoid Chondrosarcoma 7 109341 -NCIT:C27501 Conventional Extraskeletal Myxoid Chondrosarcoma 7 109342 -NCIT:C5462 Brain Extraskeletal Myxoid Chondrosarcoma 7 109343 -NCIT:C7924 Adult Extraskeletal Myxoid Chondrosarcoma 7 109344 -NCIT:C8804 Metastatic Extraskeletal Myxoid Chondrosarcoma 7 109345 -NCIT:C8807 Recurrent Extraskeletal Myxoid Chondrosarcoma 7 109346 -NCIT:C3400 Synovial Sarcoma 6 109347 -NCIT:C147102 Pericardial Synovial Sarcoma 7 109348 -NCIT:C148296 Refractory Synovial Sarcoma 7 109349 -NCIT:C153074 Unresectable Synovial Sarcoma 7 109350 -NCIT:C157737 Kidney Synovial Sarcoma 7 109351 -NCIT:C161034 Prostate Synovial Sarcoma 7 109352 -NCIT:C173128 Sinonasal Synovial Sarcoma 7 109353 -NCIT:C4279 Biphasic Synovial Sarcoma 7 109354 -NCIT:C45632 Lung Biphasic Synovial Sarcoma 8 109355 -NCIT:C45698 Pleural Biphasic Synovial Sarcoma 8 109356 -NCIT:C45757 Cardiac Biphasic Synovial Sarcoma 8 109357 -NCIT:C45631 Lung Synovial Sarcoma 7 109358 -NCIT:C45632 Lung Biphasic Synovial Sarcoma 8 109359 -NCIT:C45633 Lung Monophasic Synovial Sarcoma 8 109360 -NCIT:C45696 Pleural Synovial Sarcoma 7 109361 -NCIT:C45697 Pleural Monophasic Synovial Sarcoma 8 109362 -NCIT:C45698 Pleural Biphasic Synovial Sarcoma 8 109363 -NCIT:C45756 Cardiac Synovial Sarcoma 7 109364 -NCIT:C45757 Cardiac Biphasic Synovial Sarcoma 8 109365 -NCIT:C45758 Cardiac Monophasic Synovial Sarcoma 8 109366 -NCIT:C6534 Monophasic Synovial Sarcoma 7 109367 -NCIT:C4277 Spindle Cell Synovial Sarcoma 8 109368 -NCIT:C4278 Epithelial Synovial Sarcoma 8 109369 -NCIT:C45633 Lung Monophasic Synovial Sarcoma 8 109370 -NCIT:C45697 Pleural Monophasic Synovial Sarcoma 8 109371 -NCIT:C45758 Cardiac Monophasic Synovial Sarcoma 8 109372 -NCIT:C6618 Mediastinal Synovial Sarcoma 7 109373 -NCIT:C7817 Adult Synovial Sarcoma 7 109374 -NCIT:C8089 Childhood Synovial Sarcoma 7 109375 -NCIT:C8825 Metastatic Synovial Sarcoma 7 109376 -NCIT:C153184 Advanced Synovial Sarcoma 8 109377 -NCIT:C171399 Locally Advanced Synovial Sarcoma 8 109378 -NCIT:C8826 Localized Synovial Sarcoma 7 109379 -NCIT:C8827 Recurrent Synovial Sarcoma 7 109380 -NCIT:C95624 Esophageal Synovial Sarcoma 7 109381 -NCIT:C95899 Gastric Synovial Sarcoma 7 109382 -NCIT:C96845 Liver Synovial Sarcoma 7 109383 -NCIT:C3714 Epithelioid Sarcoma 6 109384 -NCIT:C162722 Refractory Epithelioid Sarcoma 7 109385 -NCIT:C167379 Unresectable Epithelioid Sarcoma 7 109386 -NCIT:C181971 Vulvar Epithelioid Sarcoma 7 109387 -NCIT:C181973 Vulvar Distal-Type Epithelioid Sarcoma 8 109388 -NCIT:C40319 Vulvar Proximal-Type Epithelioid Sarcoma 8 109389 -NCIT:C27472 Proximal-Type Epithelioid Sarcoma 7 109390 -NCIT:C188055 Pleural Proximal-Type Epithelioid Sarcoma 8 109391 -NCIT:C40319 Vulvar Proximal-Type Epithelioid Sarcoma 8 109392 -NCIT:C27473 Distal-Type Epithelioid Sarcoma 7 109393 -NCIT:C181973 Vulvar Distal-Type Epithelioid Sarcoma 8 109394 -NCIT:C5059 Recurrent Epithelioid Sarcoma 7 109395 -NCIT:C7944 Adult Epithelioid Sarcoma 7 109396 -NCIT:C8095 Childhood Epithelioid Sarcoma 7 109397 -NCIT:C8799 Metastatic Epithelioid Sarcoma 7 109398 -NCIT:C167378 Locally Advanced Epithelioid Sarcoma 8 109399 -NCIT:C167380 Advanced Epithelioid Sarcoma 8 109400 -NCIT:C8800 Localized Epithelioid Sarcoma 7 109401 -NCIT:C9409 Epithelioid Sarcoma NCI Grade 2 7 109402 -NCIT:C9410 Epithelioid Sarcoma NCI Grade 3 7 109403 -NCIT:C3745 Clear Cell Sarcoma of Soft Tissue 6 109404 -NCIT:C161585 Metastatic Clear Cell Sarcoma of Soft Tissue 7 109405 -NCIT:C161586 Advanced Clear Cell Sarcoma of Soft Tissue 8 109406 -NCIT:C180979 Refractory Clear Cell Sarcoma of Soft Tissue 7 109407 -NCIT:C180980 Recurrent Clear Cell Sarcoma of Soft Tissue 7 109408 -NCIT:C27370 Adult Clear Cell Sarcoma of Soft Tissue 7 109409 -NCIT:C27371 Childhood Clear Cell Sarcoma of Soft Tissue 7 109410 -NCIT:C3750 Alveolar Soft Part Sarcoma 6 109411 -NCIT:C156273 Tongue Alveolar Soft Part Sarcoma' 7 109412 -NCIT:C156276 Orbital Alveolar Soft Part Sarcoma 7 109413 -NCIT:C156277 Bladder Alveolar Soft Part Sarcoma 7 109414 -NCIT:C164078 Unresectable Alveolar Soft Part Sarcoma 7 109415 -NCIT:C173809 Lung Alveolar Soft Part Sarcoma 7 109416 -NCIT:C188034 Refractory Alveolar Soft Part Sarcoma 7 109417 -NCIT:C40225 Cervical Alveolar Soft Part Sarcoma 7 109418 -NCIT:C40320 Vulvar Alveolar Soft Part Sarcoma 7 109419 -NCIT:C7943 Adult Alveolar Soft Part Sarcoma 7 109420 -NCIT:C8092 Childhood Alveolar Soft Part Sarcoma 7 109421 -NCIT:C8796 Metastatic Alveolar Soft Part Sarcoma 7 109422 -NCIT:C164076 Locally Advanced Alveolar Soft Part Sarcoma 8 109423 -NCIT:C188198 Advanced Alveolar Soft Part Sarcoma 8 109424 -NCIT:C8797 Localized Alveolar Soft Part Sarcoma 7 109425 -NCIT:C8798 Recurrent Alveolar Soft Part Sarcoma 7 109426 -NCIT:C53677 Intimal Sarcoma 6 109427 -NCIT:C142825 Pulmonary Artery Intimal Sarcoma 7 109428 -NCIT:C6586 Extrarenal Rhabdoid Tumor 6 109429 -NCIT:C161608 Extrarenal Rhabdoid Tumor of the Prostate 7 109430 -NCIT:C171169 Extrarenal Rhabdoid Tumor of the Ovary 7 109431 -NCIT:C171170 Recurrent Extrarenal Rhabdoid Tumor of the Ovary 8 109432 -NCIT:C171171 Refractory Extrarenal Rhabdoid Tumor of the Ovary 8 109433 -NCIT:C188881 Recurrent Extrarenal Rhabdoid Tumor 7 109434 -NCIT:C171170 Recurrent Extrarenal Rhabdoid Tumor of the Ovary 8 109435 -NCIT:C188884 Refractory Extrarenal Rhabdoid Tumor 7 109436 -NCIT:C171171 Refractory Extrarenal Rhabdoid Tumor of the Ovary 8 109437 -NCIT:C188886 Unresectable Extrarenal Rhabdoid Tumor 7 109438 -NCIT:C96847 Extrarenal Rhabdoid Tumor of the Liver 7 109439 -NCIT:C7135 Extraskeletal Ewing Sarcoma 6 109440 -NCIT:C159208 Kidney Ewing Sarcoma 7 109441 -NCIT:C189261 Childhood Kidney Ewing Sarcoma 8 109442 -NCIT:C172634 Skin Ewing Sarcoma 7 109443 -NCIT:C181977 Vulvar Ewing Sarcoma 7 109444 -NCIT:C186611 Central Nervous System Ewing Sarcoma 7 109445 -NCIT:C8801 Metastatic Extraskeletal Ewing Sarcoma 7 109446 -NCIT:C8802 Localized Extraskeletal Ewing Sarcoma 7 109447 -NCIT:C8803 Recurrent Extraskeletal Ewing Sarcoma 7 109448 -NCIT:C8300 Desmoplastic Small Round Cell Tumor 6 109449 -NCIT:C126356 Peritoneal Desmoplastic Small Round Cell Tumor 7 109450 -NCIT:C158426 Recurrent Desmoplastic Small Round Cell Tumor 7 109451 -NCIT:C158427 Refractory Desmoplastic Small Round Cell Tumor 7 109452 -NCIT:C170826 Unresectable Desmoplastic Small Round Cell Tumor 7 109453 -NCIT:C170827 Metastatic Desmoplastic Small Round Cell Tumor 7 109454 -NCIT:C180875 Locally Advanced Desmoplastic Small Round Cell Tumor 8 109455 -NCIT:C27372 Childhood Desmoplastic Small Round Cell Tumor 7 109456 -NCIT:C27373 Adult Desmoplastic Small Round Cell Tumor 7 109457 -NCIT:C66760 Fibromyxoid Tumor 5 109458 -NCIT:C121713 Acral Fibromyxoma 6 109459 -NCIT:C6582 Ossifying Fibromyxoid Tumor 6 109460 -NCIT:C121774 Malignant Ossifying Fibromyxoid Tumor 7 109461 -NCIT:C6583 Nonossifying Fibromyxoid Tumor 6 109462 -NCIT:C7653 Intermediate Soft Tissue Neoplasm 4 109463 -NCIT:C121738 Intermediate Soft Tissue Tumor of Uncertain Differentiation 5 109464 -NCIT:C121752 Hemosiderotic Fibrolipomatous Tumor 6 109465 -NCIT:C4246 Atypical Fibroxanthoma 6 109466 -NCIT:C27545 Classic Type Atypical Fibroxanthoma 7 109467 -NCIT:C27546 Spindle Cell Type Atypical Fibroxanthoma 7 109468 -NCIT:C6494 Angiomatoid Fibrous Histiocytoma 6 109469 -NCIT:C188999 Childhood Angiomatoid Fibrous Histiocytoma 7 109470 -NCIT:C6582 Ossifying Fibromyxoid Tumor 6 109471 -NCIT:C121774 Malignant Ossifying Fibromyxoid Tumor 7 109472 -NCIT:C173132 Intermediate Sinonasal Soft Tissue Neoplasm 5 109473 -NCIT:C173133 Sinonasal Desmoid Fibromatosis 6 109474 -NCIT:C173136 Sinonasal Glomangiopericytoma 6 109475 -NCIT:C173137 Sinonasal Solitary Fibrous Tumor 6 109476 -NCIT:C6491 Intermediate Fibrohistiocytic Neoplasm 5 109477 -NCIT:C49107 Giant Cell Tumor of Soft Tissue 6 109478 -NCIT:C7344 Skin Intermediate Fibrohistiocytic Neoplasm 6 109479 -NCIT:C6493 Plexiform Fibrohistiocytic Tumor 7 109480 -NCIT:C188975 Childhood Plexiform Fibrohistiocytic Tumor 8 109481 -NCIT:C6721 Chest Wall Plexiform Fibrohistiocytic Tumor 8 109482 -NCIT:C7333 Intermediate Fibroblastic Neoplasm 5 109483 -NCIT:C177324 Superficial CD34-Positive Fibroblastic Tumor 6 109484 -NCIT:C4683 Dermatofibrosarcoma Protuberans 6 109485 -NCIT:C177325 Plaque-Like Dermatofibrosarcoma Protuberans 7 109486 -NCIT:C38105 Dermatofibrosarcoma Protuberans with Myoid Differentiation 7 109487 -NCIT:C38106 Myxoid Dermatofibrosarcoma Protuberans 7 109488 -NCIT:C38107 Dedifferentiated Dermatofibrosarcoma Protuberans 7 109489 -NCIT:C27547 Fibrosarcomatous Dermatofibrosarcoma Protuberans 8 109490 -NCIT:C38108 Dermatofibrosarcoma Protuberans with Giant Cell Fibroblastoma-Like Differentiation 7 109491 -NCIT:C9430 Pigmented Dermatofibrosarcoma Protuberans 7 109492 -NCIT:C4700 Giant Cell Fibroblastoma 6 109493 -NCIT:C6481 Inflammatory Myofibroblastic Tumor 6 109494 -NCIT:C126359 Abdominal Inflammatory Myofibroblastic Tumor 7 109495 -NCIT:C161042 Prostate Inflammatory Myofibroblastic Tumor 7 109496 -NCIT:C172851 Digestive System Inflammatory Myofibroblastic Tumor 7 109497 -NCIT:C5858 Liver Inflammatory Myofibroblastic Tumor 8 109498 -NCIT:C7022 Gastric Inflammatory Myofibroblastic Tumor 8 109499 -NCIT:C173402 Laryngeal Inflammatory Myofibroblastic Tumor 7 109500 -NCIT:C180545 Uterine Corpus Inflammatory Myofibroblastic Tumor 7 109501 -NCIT:C188972 Childhood Inflammatory Myofibroblastic Tumor 7 109502 -NCIT:C39740 Lung Inflammatory Myofibroblastic Tumor 7 109503 -NCIT:C39741 Retroperitoneal Inflammatory Myofibroblastic Tumor 7 109504 -NCIT:C40398 Breast Inflammatory Myofibroblastic Tumor 7 109505 -NCIT:C45753 Cardiac Inflammatory Myofibroblastic Tumor 7 109506 -NCIT:C6177 Bladder Inflammatory Myofibroblastic Tumor 7 109507 -NCIT:C7020 Central Nervous System Inflammatory Myofibroblastic Tumor 7 109508 -NCIT:C6814 Superficial Fibromatosis 6 109509 -NCIT:C3316 Penile Fibromatosis 7 109510 -NCIT:C3469 Palmar Fibromatosis 7 109511 -NCIT:C4680 Plantar Fibromatosis 7 109512 -NCIT:C9182 Desmoid Fibromatosis 6 109513 -NCIT:C126358 Pelvic Fibromatosis 7 109514 -NCIT:C155875 Recurrent Desmoid Fibromatosis 7 109515 -NCIT:C155877 Unresectable Desmoid Fibromatosis 7 109516 -NCIT:C175667 Locally Invasive Desmoid-Type Fibromatosis 7 109517 -NCIT:C175670 Refractory Desmoid Fibromatosis 7 109518 -NCIT:C3741 Abdominal (Mesenteric) Fibromatosis 7 109519 -NCIT:C6489 Extraabdominal Fibromatosis 7 109520 -NCIT:C129548 Central Nervous System Desmoid Fibromatosis 8 109521 -NCIT:C173133 Sinonasal Desmoid Fibromatosis 8 109522 -NCIT:C6713 Chest Wall Fibromatosis 8 109523 -NCIT:C99180 Lipofibromatosis 6 109524 -NCIT:C7334 Intermediate Vascular Neoplasm 5 109525 -NCIT:C7391 Intermediate Blood Vessel Neoplasm 6 109526 -NCIT:C45473 Intermediate (Locally Aggressive) Blood Vessel Neoplasm 7 109527 -NCIT:C27510 Kaposiform Hemangioendothelioma 8 109528 -NCIT:C188977 Childhood Kaposiform Hemangioendothelioma 9 109529 -NCIT:C45474 Intermediate (Rarely Metastasizing) Blood Vessel Neoplasm 7 109530 -NCIT:C121668 Pseudomyogenic Hemangioendothelioma 8 109531 -NCIT:C188979 Childhood Pseudomyogenic Hemangioendothelioma 9 109532 -NCIT:C27511 Retiform Hemangioendothelioma 8 109533 -NCIT:C45475 Composite Hemangioendothelioma 8 109534 -NCIT:C45476 Polymorphus Hemangioendothelioma 8 109535 -NCIT:C7526 Papillary Intralymphatic Angioendothelioma 8 109536 -NCIT:C188978 Childhood Papillary Intralymphatic Angioendothelioma 9 109537 -NCIT:C7630 Intermediate Lipomatous Neoplasm 5 109538 -NCIT:C6505 Atypical Lipomatous Tumor/Well Differentiated Liposarcoma 6 109539 -NCIT:C170472 Skin Atypical Lipomatous Tumor/Well Differentiated Liposarcoma 7 109540 -NCIT:C176979 Lipoma-Like Atypical Lipomatous Tumor/Well Differentiated Liposarcoma 7 109541 -NCIT:C176980 Superficial Atypical Lipomatous Tumor/Well Differentiated Liposarcoma 7 109542 -NCIT:C176981 Atypical Lipomatous Tumor/Well Differentiated Liposarcoma of Deep Soft Tissue 7 109543 -NCIT:C6507 Sclerosing Atypical Lipomatous Tumor/Well Differentiated Liposarcoma 7 109544 -NCIT:C6508 Inflammatory Atypical Lipomatous Tumor/Well Differentiated Liposarcoma 7 109545 -NCIT:C97076 Giant Cell Angioblastoma 5 109546 -NCIT:C8323 Soft Tissue Amyloid Neoplasm 4 109547 -NCIT:C8964 Synovial Neoplasm 4 109548 -NCIT:C3402 Tenosynovial Giant Cell Tumor 5 109549 -NCIT:C188976 Childhood Tenosynovial Giant Cell Tumor 6 109550 -NCIT:C3401 Tenosynovial Giant Cell Tumor, Diffuse Type 6 109551 -NCIT:C6532 Tenosynovial Giant Cell Tumor, Localized Type 6 109552 -NCIT:C6535 Malignant Tenosynovial Giant Cell Tumor 6 109553 -NCIT:C3829 Benign Synovial Neoplasm 5 109554 -NCIT:C3401 Tenosynovial Giant Cell Tumor, Diffuse Type 6 109555 -NCIT:C34467 Synovial Chondromatosis 6 109556 -NCIT:C6525 Synovial Hemangioma 6 109557 -NCIT:C6532 Tenosynovial Giant Cell Tumor, Localized Type 6 109558 -NCIT:C6531 Malignant Synovial Neoplasm 5 109559 -NCIT:C176467 Synovial Chondrosarcoma 6 109560 -NCIT:C6535 Malignant Tenosynovial Giant Cell Tumor 6 109561 -NCIT:C53684 Benign Connective and Soft Tissue Neoplasm 3 109562 -NCIT:C121788 Benign Phosphaturic Mesenchymal Tumor 4 109563 -NCIT:C166356 Benign Musculoskeletal Neoplasm 4 109564 -NCIT:C4880 Benign Bone Neoplasm 5 109565 -NCIT:C121842 Osteochondromyxoma 6 109566 -NCIT:C121901 Benign Notochordal Cell Tumor 6 109567 -NCIT:C190577 Childhood Benign Bone Neoplasm 6 109568 -NCIT:C189019 Childhood Subungual Exostosis 7 109569 -NCIT:C189020 Childhood Osteoblastoma 7 109570 -NCIT:C189021 Childhood Osteoid Osteoma 7 109571 -NCIT:C189023 Childhood Chondroblastoma 7 109572 -NCIT:C189024 Childhood Osteochondroma 7 109573 -NCIT:C189025 Childhood Chondromyxoid Fibroma 7 109574 -NCIT:C189028 Childhood Bone Hemangioma 7 109575 -NCIT:C189029 Childhood Aneurysmal Bone Cyst 7 109576 -NCIT:C189031 Childhood Non-Ossifying Fibroma 7 109577 -NCIT:C189033 Childhood Fibrous Dysplasia 7 109578 -NCIT:C27475 Bone Lipoma 6 109579 -NCIT:C178604 Bone Hibernoma 7 109580 -NCIT:C27476 Bone Schwannoma 6 109581 -NCIT:C27477 Benign Osteoclastic Giant Cell-Rich Tumor of Bone 6 109582 -NCIT:C121893 Giant Cell Lesion of Small Bones 7 109583 -NCIT:C2945 Chondroblastoma 6 109584 -NCIT:C173895 Maxillofacial Chondroblastoma 7 109585 -NCIT:C189023 Childhood Chondroblastoma 7 109586 -NCIT:C3007 Enchondroma 6 109587 -NCIT:C3008 Enchondromatosis 6 109588 -NCIT:C3294 Osteoblastoma 6 109589 -NCIT:C173899 Maxillofacial Osteoblastoma 7 109590 -NCIT:C189020 Childhood Osteoblastoma 7 109591 -NCIT:C4308 Cementoblastoma 7 109592 -NCIT:C3295 Osteochondroma 6 109593 -NCIT:C189024 Childhood Osteochondroma 7 109594 -NCIT:C53455 Solitary Osteochondroma 7 109595 -NCIT:C53457 Multiple Osteochondromas 7 109596 -NCIT:C3296 Osteoma 6 109597 -NCIT:C121923 Ivory Exostosis 7 109598 -NCIT:C121924 Enostosis 7 109599 -NCIT:C129569 Skull Osteoma 7 109600 -NCIT:C173894 Maxillofacial Osteoma 8 109601 -NCIT:C3297 Osteoid Osteoma 6 109602 -NCIT:C173898 Maxillofacial Osteoid Osteoma 7 109603 -NCIT:C189021 Childhood Osteoid Osteoma 7 109604 -NCIT:C34417 Benign Neoplasm of Lower Jaw Bone 6 109605 -NCIT:C34609 Fibrous Dysplasia 6 109606 -NCIT:C173926 Craniofacial Fibrous Dysplasia 7 109607 -NCIT:C189033 Childhood Fibrous Dysplasia 7 109608 -NCIT:C34610 Polyostotic Fibrous Dysplasia 7 109609 -NCIT:C53971 Monostotic Fibrous Dysplasia 7 109610 -NCIT:C3516 Aneurysmal Bone Cyst 6 109611 -NCIT:C189029 Childhood Aneurysmal Bone Cyst 7 109612 -NCIT:C3830 Chondromyxoid Fibroma 6 109613 -NCIT:C173897 Maxillofacial Chondromyxoid Fibroma 7 109614 -NCIT:C189025 Childhood Chondromyxoid Fibroma 7 109615 -NCIT:C6714 Sternal Chondromyxoid Fibroma 7 109616 -NCIT:C4302 Periosteal Chondroma 6 109617 -NCIT:C53963 Fibrous Histiocytoma of Bone 6 109618 -NCIT:C121929 Non-Ossifying Fibroma 7 109619 -NCIT:C189031 Childhood Non-Ossifying Fibroma 8 109620 -NCIT:C6477 Bone Hemangioma 6 109621 -NCIT:C189028 Childhood Bone Hemangioma 7 109622 -NCIT:C5396 Bone Epithelioid Hemangioma 7 109623 -NCIT:C66761 Periosteal Fibroma 6 109624 -NCIT:C4882 Benign Muscle Neoplasm 5 109625 -NCIT:C3358 Rhabdomyoma 6 109626 -NCIT:C188983 Childhood Rhabdomyoma 7 109627 -NCIT:C190104 Childhood Cardiac Rhabdomyoma 8 109628 -NCIT:C49166 Extracardiac Rhabdomyoma 7 109629 -NCIT:C162496 Paratesticular Rhabdomyoma 8 109630 -NCIT:C4260 Fetal Rhabdomyoma 8 109631 -NCIT:C27480 Classic Rhabdomyoma 9 109632 -NCIT:C6518 Intermediate Rhabdomyoma 9 109633 -NCIT:C4261 Adult Extracardiac Rhabdomyoma 8 109634 -NCIT:C6517 Genital Rhabdomyoma 8 109635 -NCIT:C181942 Vulvar Rhabdomyoma 9 109636 -NCIT:C40266 Cervical Rhabdomyoma 9 109637 -NCIT:C6372 Vaginal Rhabdomyoma 9 109638 -NCIT:C6600 Mediastinal Rhabdomyoma 8 109639 -NCIT:C7000 Central Nervous System Rhabdomyoma 8 109640 -NCIT:C6739 Cardiac Rhabdomyoma 7 109641 -NCIT:C190104 Childhood Cardiac Rhabdomyoma 8 109642 -NCIT:C45747 Adult Cardiac Cellular Rhabdomyoma 8 109643 -NCIT:C49179 Conventional Cardiac Rhabdomyoma 8 109644 -NCIT:C6510 Benign Smooth Muscle Neoplasm 6 109645 -NCIT:C3157 Leiomyoma 7 109646 -NCIT:C128046 Cervical Leiomyoma 8 109647 -NCIT:C156346 Thyroid Gland Leiomyoma 8 109648 -NCIT:C159209 Kidney Leiomyoma 8 109649 -NCIT:C162494 Paratesticular Leiomyoma 8 109650 -NCIT:C161638 Seminal Vesicle Leiomyoma 9 109651 -NCIT:C162583 Penile Leiomyoma 8 109652 -NCIT:C172942 Digestive System Leiomyoma 8 109653 -NCIT:C3866 Esophageal Leiomyoma 9 109654 -NCIT:C3876 Gastric Leiomyoma 9 109655 -NCIT:C5514 Appendix Leiomyoma 9 109656 -NCIT:C5608 Anal Leiomyoma 9 109657 -NCIT:C5677 Colorectal Leiomyoma 9 109658 -NCIT:C5492 Colon Leiomyoma 10 109659 -NCIT:C5552 Rectal Leiomyoma 10 109660 -NCIT:C5747 Gallbladder Leiomyoma 9 109661 -NCIT:C5753 Liver Leiomyoma 9 109662 -NCIT:C5855 Extrahepatic Bile Duct Leiomyoma 9 109663 -NCIT:C7725 Small Intestinal Leiomyoma 9 109664 -NCIT:C173140 Sinonasal Leiomyoma 8 109665 -NCIT:C179360 Ovarian Leiomyoma 8 109666 -NCIT:C179923 Uterine Ligament Leiomyoma 8 109667 -NCIT:C179924 Broad Ligament Leiomyoma 9 109668 -NCIT:C188253 Adrenal Gland Leiomyoma 8 109669 -NCIT:C3434 Uterine Corpus Leiomyoma 8 109670 -NCIT:C126975 Uterine Corpus Hydropic Leiomyoma 9 109671 -NCIT:C3511 Uterine Corpus Degenerated Leiomyoma 9 109672 -NCIT:C40162 Uterine Corpus Leiomyoma, Mitotically Active Variant 9 109673 -NCIT:C40163 Uterine Corpus Cellular Leiomyoma 9 109674 -NCIT:C40164 Uterine Corpus Epithelioid Leiomyoma 9 109675 -NCIT:C40165 Uterine Corpus Apoplectic Leiomyoma 9 109676 -NCIT:C40166 Uterine Corpus Myxoid Leiomyoma 9 109677 -NCIT:C40167 Uterine Corpus Bizarre Leiomyoma 9 109678 -NCIT:C40168 Uterine Corpus Lipoleiomyoma 9 109679 -NCIT:C40170 Uterine Corpus Diffuse Leiomyomatosis 9 109680 -NCIT:C40172 Uterine Corpus Dissecting Leiomyoma 9 109681 -NCIT:C40173 Uterine Corpus Metastasizing Leiomyoma 9 109682 -NCIT:C5356 Uterine Corpus Intravenous Leiomyomatosis 9 109683 -NCIT:C3748 Leiomyomatosis 8 109684 -NCIT:C3958 Disseminated Peritoneal Leiomyomatosis 9 109685 -NCIT:C40170 Uterine Corpus Diffuse Leiomyomatosis 9 109686 -NCIT:C4518 Intravenous Leiomyomatosis 9 109687 -NCIT:C5356 Uterine Corpus Intravenous Leiomyomatosis 10 109688 -NCIT:C40127 Fallopian Tube Leiomyoma 8 109689 -NCIT:C40326 Vulvar Leiomyoma 8 109690 -NCIT:C40399 Breast Leiomyoma 8 109691 -NCIT:C4256 Cellular Leiomyoma 8 109692 -NCIT:C40163 Uterine Corpus Cellular Leiomyoma 9 109693 -NCIT:C4257 Bizarre Leiomyoma 8 109694 -NCIT:C40167 Uterine Corpus Bizarre Leiomyoma 9 109695 -NCIT:C4482 Skin Leiomyoma 8 109696 -NCIT:C43332 Pilar Leiomyoma 9 109697 -NCIT:C4483 Dartoic Leiomyoma 9 109698 -NCIT:C4560 Ciliary Body Leiomyoma 8 109699 -NCIT:C53964 Bone Leiomyoma 8 109700 -NCIT:C5544 Prostate Leiomyoma 8 109701 -NCIT:C5660 Lung Leiomyoma 8 109702 -NCIT:C5661 Endobronchial Leiomyoma 9 109703 -NCIT:C5909 Oral Cavity Leiomyoma 8 109704 -NCIT:C6027 Laryngeal Leiomyoma 8 109705 -NCIT:C6049 Tracheal Leiomyoma 8 109706 -NCIT:C6161 Ureter Leiomyoma 8 109707 -NCIT:C6171 Urethral Leiomyoma 8 109708 -NCIT:C6178 Bladder Leiomyoma 8 109709 -NCIT:C6373 Vaginal Leiomyoma 8 109710 -NCIT:C6512 Deep Leiomyoma 8 109711 -NCIT:C6598 Mediastinal Leiomyoma 8 109712 -NCIT:C6743 Pericardial Leiomyoma 8 109713 -NCIT:C67563 Myxoid Leiomyoma 8 109714 -NCIT:C40166 Uterine Corpus Myxoid Leiomyoma 9 109715 -NCIT:C6998 Central Nervous System Leiomyoma 8 109716 -NCIT:C6515 Benign Skeletal Muscle Neoplasm 6 109717 -NCIT:C49166 Extracardiac Rhabdomyoma 7 109718 -NCIT:C162496 Paratesticular Rhabdomyoma 8 109719 -NCIT:C4260 Fetal Rhabdomyoma 8 109720 -NCIT:C27480 Classic Rhabdomyoma 9 109721 -NCIT:C6518 Intermediate Rhabdomyoma 9 109722 -NCIT:C4261 Adult Extracardiac Rhabdomyoma 8 109723 -NCIT:C6517 Genital Rhabdomyoma 8 109724 -NCIT:C181942 Vulvar Rhabdomyoma 9 109725 -NCIT:C40266 Cervical Rhabdomyoma 9 109726 -NCIT:C6372 Vaginal Rhabdomyoma 9 109727 -NCIT:C6600 Mediastinal Rhabdomyoma 8 109728 -NCIT:C7000 Central Nervous System Rhabdomyoma 8 109729 -NCIT:C190576 Childhood Benign Connective and Soft Tissue Neoplasm 4 109730 -NCIT:C180887 Infantile Myofibroma 5 109731 -NCIT:C188965 Childhood EWSR1-SMAD3-Positive Fibroblastic Tumor 5 109732 -NCIT:C188974 Childhood Fibrous Histiocytoma 5 109733 -NCIT:C189031 Childhood Non-Ossifying Fibroma 6 109734 -NCIT:C188983 Childhood Rhabdomyoma 5 109735 -NCIT:C190104 Childhood Cardiac Rhabdomyoma 6 109736 -NCIT:C189288 Childhood Ovarian Fibroma 5 109737 -NCIT:C190019 Liver Congenital Hemangioma 5 109738 -NCIT:C190160 Sinonasal Tract Myxoma 5 109739 -NCIT:C190577 Childhood Benign Bone Neoplasm 5 109740 -NCIT:C189019 Childhood Subungual Exostosis 6 109741 -NCIT:C189020 Childhood Osteoblastoma 6 109742 -NCIT:C189021 Childhood Osteoid Osteoma 6 109743 -NCIT:C189023 Childhood Chondroblastoma 6 109744 -NCIT:C189024 Childhood Osteochondroma 6 109745 -NCIT:C189025 Childhood Chondromyxoid Fibroma 6 109746 -NCIT:C189028 Childhood Bone Hemangioma 6 109747 -NCIT:C189029 Childhood Aneurysmal Bone Cyst 6 109748 -NCIT:C189031 Childhood Non-Ossifying Fibroma 6 109749 -NCIT:C189033 Childhood Fibrous Dysplasia 6 109750 -NCIT:C27483 Lipoblastoma 5 109751 -NCIT:C3456 Inclusion Body Fibromatosis 5 109752 -NCIT:C3942 Fibrous Hamartoma of Infancy 5 109753 -NCIT:C4818 Calcifying Aponeurotic Fibroma 5 109754 -NCIT:C5751 Liver Mesenchymal Hamartoma 5 109755 -NCIT:C6645 Infantile Hemangioma 5 109756 -NCIT:C96840 Liver Infantile Hemangioma 6 109757 -NCIT:C99086 Airway Infantile Hemangioma 6 109758 -NCIT:C4242 Benign Soft Tissue Neoplasm 4 109759 -NCIT:C128270 Vulvar Lipoma 5 109760 -NCIT:C128271 Vulvar Fibrolipoma 6 109761 -NCIT:C162503 Paratesticular Hemangioma 5 109762 -NCIT:C162590 Penile Myointimoma 5 109763 -NCIT:C172945 Digestive System Lipoma 5 109764 -NCIT:C43576 Appendix Lipoma 6 109765 -NCIT:C5258 Gastric Lipoma 6 109766 -NCIT:C5339 Small Intestinal Lipoma 6 109767 -NCIT:C5678 Colorectal Lipoma 6 109768 -NCIT:C5493 Colon Lipoma 7 109769 -NCIT:C5551 Rectal Lipoma 7 109770 -NCIT:C5701 Esophageal Lipoma 6 109771 -NCIT:C5750 Liver Lipoma 6 109772 -NCIT:C5835 Gallbladder Lipoma 6 109773 -NCIT:C5854 Extrahepatic Bile Duct Lipoma 6 109774 -NCIT:C173139 Benign Sinonasal Soft Tissue Neoplasm 5 109775 -NCIT:C173140 Sinonasal Leiomyoma 6 109776 -NCIT:C173142 Sinonasal Hemangioma 6 109777 -NCIT:C190160 Sinonasal Tract Myxoma 6 109778 -NCIT:C173399 Benign Laryngeal Soft Tissue Neoplasm 5 109779 -NCIT:C6026 Subglottic Hemangioma 6 109780 -NCIT:C6027 Laryngeal Leiomyoma 6 109781 -NCIT:C173480 Benign Oral Cavity Soft Tissue Neoplasm 5 109782 -NCIT:C27478 Gingival Angiofibroma 6 109783 -NCIT:C3950 Oral Mucosa Lobular Capillary Hemangioma 6 109784 -NCIT:C4831 Gingival Hemangioma 6 109785 -NCIT:C5909 Oral Cavity Leiomyoma 6 109786 -NCIT:C5910 Oral Cavity Lipoma 6 109787 -NCIT:C7734 Tongue Lipoma 7 109788 -NCIT:C181925 Vulvar Lipoblastoma-Like Tumor 5 109789 -NCIT:C27127 Benign Skin Vascular Neoplasm 5 109790 -NCIT:C27509 Skin Lymphangioma 6 109791 -NCIT:C162592 Penile Lymphangioma 7 109792 -NCIT:C4905 Skin Hemangioma 6 109793 -NCIT:C162579 Penile Hemangioma 7 109794 -NCIT:C162580 Penile Epithelioid Hemangioma 8 109795 -NCIT:C34967 Lobular Capillary Hemangioma of Skin and Subcutaneous Tissue 7 109796 -NCIT:C3926 Angioma Serpiginosum 7 109797 -NCIT:C4299 Verrucous Hemangioma 7 109798 -NCIT:C4390 Cherry Hemangioma 7 109799 -NCIT:C4372 Cherry Hemangioma of Lip 8 109800 -NCIT:C4487 Tufted Angioma 7 109801 -NCIT:C4750 Skin Cavernous Hemangioma 7 109802 -NCIT:C6387 Scrotal Hemangioma 7 109803 -NCIT:C7393 Skin Epithelioid Hemangioma 7 109804 -NCIT:C162580 Penile Epithelioid Hemangioma 8 109805 -NCIT:C27438 Benign Gastric Soft Tissue Neoplasm 5 109806 -NCIT:C3876 Gastric Leiomyoma 6 109807 -NCIT:C5258 Gastric Lipoma 6 109808 -NCIT:C5481 Gastric Hemangioma 6 109809 -NCIT:C5482 Gastric Lymphangioma 6 109810 -NCIT:C95895 Benign Gastric Gastrointestinal Stromal Tumor 6 109811 -NCIT:C95902 Gastric Plexiform Fibromyxoma 6 109812 -NCIT:C3829 Benign Synovial Neoplasm 5 109813 -NCIT:C3401 Tenosynovial Giant Cell Tumor, Diffuse Type 6 109814 -NCIT:C34467 Synovial Chondromatosis 6 109815 -NCIT:C6525 Synovial Hemangioma 6 109816 -NCIT:C6532 Tenosynovial Giant Cell Tumor, Localized Type 6 109817 -NCIT:C40381 Breast Angiomatosis 5 109818 -NCIT:C4262 Endometrial Stromal Nodule 5 109819 -NCIT:C43323 Benign Pilar-Associated Mesenchyme Neoplasm 5 109820 -NCIT:C27526 Follicular Myxoma 6 109821 -NCIT:C43331 Fibrofolliculoma 6 109822 -NCIT:C43332 Pilar Leiomyoma 6 109823 -NCIT:C43333 Spindle-Cell Predominant Trichodiscoma 6 109824 -NCIT:C4470 Perifollicular Fibroma 6 109825 -NCIT:C4616 Skin Lipoma 5 109826 -NCIT:C170474 Skin Spindle Cell/Pleomorphic Lipoma 6 109827 -NCIT:C170475 Skin Spindle Cell Lipoma 7 109828 -NCIT:C170476 Skin Pleomorphic Lipoma 7 109829 -NCIT:C170478 Skin Angiolipoma 6 109830 -NCIT:C4647 Breast Lipoma 5 109831 -NCIT:C176255 Breast Angiolipoma 6 109832 -NCIT:C4882 Benign Muscle Neoplasm 5 109833 -NCIT:C3358 Rhabdomyoma 6 109834 -NCIT:C188983 Childhood Rhabdomyoma 7 109835 -NCIT:C190104 Childhood Cardiac Rhabdomyoma 8 109836 -NCIT:C49166 Extracardiac Rhabdomyoma 7 109837 -NCIT:C162496 Paratesticular Rhabdomyoma 8 109838 -NCIT:C4260 Fetal Rhabdomyoma 8 109839 -NCIT:C27480 Classic Rhabdomyoma 9 109840 -NCIT:C6518 Intermediate Rhabdomyoma 9 109841 -NCIT:C4261 Adult Extracardiac Rhabdomyoma 8 109842 -NCIT:C6517 Genital Rhabdomyoma 8 109843 -NCIT:C181942 Vulvar Rhabdomyoma 9 109844 -NCIT:C40266 Cervical Rhabdomyoma 9 109845 -NCIT:C6372 Vaginal Rhabdomyoma 9 109846 -NCIT:C6600 Mediastinal Rhabdomyoma 8 109847 -NCIT:C7000 Central Nervous System Rhabdomyoma 8 109848 -NCIT:C6739 Cardiac Rhabdomyoma 7 109849 -NCIT:C190104 Childhood Cardiac Rhabdomyoma 8 109850 -NCIT:C45747 Adult Cardiac Cellular Rhabdomyoma 8 109851 -NCIT:C49179 Conventional Cardiac Rhabdomyoma 8 109852 -NCIT:C6510 Benign Smooth Muscle Neoplasm 6 109853 -NCIT:C3157 Leiomyoma 7 109854 -NCIT:C128046 Cervical Leiomyoma 8 109855 -NCIT:C156346 Thyroid Gland Leiomyoma 8 109856 -NCIT:C159209 Kidney Leiomyoma 8 109857 -NCIT:C162494 Paratesticular Leiomyoma 8 109858 -NCIT:C161638 Seminal Vesicle Leiomyoma 9 109859 -NCIT:C162583 Penile Leiomyoma 8 109860 -NCIT:C172942 Digestive System Leiomyoma 8 109861 -NCIT:C3866 Esophageal Leiomyoma 9 109862 -NCIT:C3876 Gastric Leiomyoma 9 109863 -NCIT:C5514 Appendix Leiomyoma 9 109864 -NCIT:C5608 Anal Leiomyoma 9 109865 -NCIT:C5677 Colorectal Leiomyoma 9 109866 -NCIT:C5492 Colon Leiomyoma 10 109867 -NCIT:C5552 Rectal Leiomyoma 10 109868 -NCIT:C5747 Gallbladder Leiomyoma 9 109869 -NCIT:C5753 Liver Leiomyoma 9 109870 -NCIT:C5855 Extrahepatic Bile Duct Leiomyoma 9 109871 -NCIT:C7725 Small Intestinal Leiomyoma 9 109872 -NCIT:C173140 Sinonasal Leiomyoma 8 109873 -NCIT:C179360 Ovarian Leiomyoma 8 109874 -NCIT:C179923 Uterine Ligament Leiomyoma 8 109875 -NCIT:C179924 Broad Ligament Leiomyoma 9 109876 -NCIT:C188253 Adrenal Gland Leiomyoma 8 109877 -NCIT:C3434 Uterine Corpus Leiomyoma 8 109878 -NCIT:C126975 Uterine Corpus Hydropic Leiomyoma 9 109879 -NCIT:C3511 Uterine Corpus Degenerated Leiomyoma 9 109880 -NCIT:C40162 Uterine Corpus Leiomyoma, Mitotically Active Variant 9 109881 -NCIT:C40163 Uterine Corpus Cellular Leiomyoma 9 109882 -NCIT:C40164 Uterine Corpus Epithelioid Leiomyoma 9 109883 -NCIT:C40165 Uterine Corpus Apoplectic Leiomyoma 9 109884 -NCIT:C40166 Uterine Corpus Myxoid Leiomyoma 9 109885 -NCIT:C40167 Uterine Corpus Bizarre Leiomyoma 9 109886 -NCIT:C40168 Uterine Corpus Lipoleiomyoma 9 109887 -NCIT:C40170 Uterine Corpus Diffuse Leiomyomatosis 9 109888 -NCIT:C40172 Uterine Corpus Dissecting Leiomyoma 9 109889 -NCIT:C40173 Uterine Corpus Metastasizing Leiomyoma 9 109890 -NCIT:C5356 Uterine Corpus Intravenous Leiomyomatosis 9 109891 -NCIT:C3748 Leiomyomatosis 8 109892 -NCIT:C3958 Disseminated Peritoneal Leiomyomatosis 9 109893 -NCIT:C40170 Uterine Corpus Diffuse Leiomyomatosis 9 109894 -NCIT:C4518 Intravenous Leiomyomatosis 9 109895 -NCIT:C5356 Uterine Corpus Intravenous Leiomyomatosis 10 109896 -NCIT:C40127 Fallopian Tube Leiomyoma 8 109897 -NCIT:C40326 Vulvar Leiomyoma 8 109898 -NCIT:C40399 Breast Leiomyoma 8 109899 -NCIT:C4256 Cellular Leiomyoma 8 109900 -NCIT:C40163 Uterine Corpus Cellular Leiomyoma 9 109901 -NCIT:C4257 Bizarre Leiomyoma 8 109902 -NCIT:C40167 Uterine Corpus Bizarre Leiomyoma 9 109903 -NCIT:C4482 Skin Leiomyoma 8 109904 -NCIT:C43332 Pilar Leiomyoma 9 109905 -NCIT:C4483 Dartoic Leiomyoma 9 109906 -NCIT:C4560 Ciliary Body Leiomyoma 8 109907 -NCIT:C53964 Bone Leiomyoma 8 109908 -NCIT:C5544 Prostate Leiomyoma 8 109909 -NCIT:C5660 Lung Leiomyoma 8 109910 -NCIT:C5661 Endobronchial Leiomyoma 9 109911 -NCIT:C5909 Oral Cavity Leiomyoma 8 109912 -NCIT:C6027 Laryngeal Leiomyoma 8 109913 -NCIT:C6049 Tracheal Leiomyoma 8 109914 -NCIT:C6161 Ureter Leiomyoma 8 109915 -NCIT:C6171 Urethral Leiomyoma 8 109916 -NCIT:C6178 Bladder Leiomyoma 8 109917 -NCIT:C6373 Vaginal Leiomyoma 8 109918 -NCIT:C6512 Deep Leiomyoma 8 109919 -NCIT:C6598 Mediastinal Leiomyoma 8 109920 -NCIT:C6743 Pericardial Leiomyoma 8 109921 -NCIT:C67563 Myxoid Leiomyoma 8 109922 -NCIT:C40166 Uterine Corpus Myxoid Leiomyoma 9 109923 -NCIT:C6998 Central Nervous System Leiomyoma 8 109924 -NCIT:C6515 Benign Skeletal Muscle Neoplasm 6 109925 -NCIT:C49166 Extracardiac Rhabdomyoma 7 109926 -NCIT:C162496 Paratesticular Rhabdomyoma 8 109927 -NCIT:C4260 Fetal Rhabdomyoma 8 109928 -NCIT:C27480 Classic Rhabdomyoma 9 109929 -NCIT:C6518 Intermediate Rhabdomyoma 9 109930 -NCIT:C4261 Adult Extracardiac Rhabdomyoma 8 109931 -NCIT:C6517 Genital Rhabdomyoma 8 109932 -NCIT:C181942 Vulvar Rhabdomyoma 9 109933 -NCIT:C40266 Cervical Rhabdomyoma 9 109934 -NCIT:C6372 Vaginal Rhabdomyoma 9 109935 -NCIT:C6600 Mediastinal Rhabdomyoma 8 109936 -NCIT:C7000 Central Nervous System Rhabdomyoma 8 109937 -NCIT:C5063 Endobronchial Lipoma 5 109938 -NCIT:C5353 Breast Hemangioma 5 109939 -NCIT:C5210 Breast Capillary Hemangioma 6 109940 -NCIT:C5211 Breast Epithelioid Hemangioma 6 109941 -NCIT:C53998 Benign Gastrointestinal Stromal Tumor 5 109942 -NCIT:C95895 Benign Gastric Gastrointestinal Stromal Tumor 6 109943 -NCIT:C5657 Lung Myolipoma 5 109944 -NCIT:C5751 Liver Mesenchymal Hamartoma 5 109945 -NCIT:C5856 Benign Extrahepatic Bile Duct Soft Tissue Neoplasm 5 109946 -NCIT:C5853 Extrahepatic Bile Duct Fibroma 6 109947 -NCIT:C5854 Extrahepatic Bile Duct Lipoma 6 109948 -NCIT:C5855 Extrahepatic Bile Duct Leiomyoma 6 109949 -NCIT:C6384 Paratesticular Lipoma 5 109950 -NCIT:C3606 Spermatic Cord Lipoma 6 109951 -NCIT:C6571 Benign Extraskeletal Cartilaginous and Osseous Neoplasm 5 109952 -NCIT:C9482 Soft Tissue Chondroma 6 109953 -NCIT:C45629 Lung Chondroma 7 109954 -NCIT:C6596 Mediastinal Chondroma 7 109955 -NCIT:C7001 Central Nervous System Chondroma 7 109956 -NCIT:C6587 Benign Soft Tissue Tumor of Uncertain Differentiation 5 109957 -NCIT:C121713 Acral Fibromyxoma 6 109958 -NCIT:C121791 Benign PEComa 6 109959 -NCIT:C127071 Benign Uterine Corpus PEComa 7 109960 -NCIT:C142784 Benign Lung PEComa 7 109961 -NCIT:C38152 Lung Clear Cell Tumor 8 109962 -NCIT:C159674 Bladder Benign PEComa 7 109963 -NCIT:C3254 Angiomyxoma 6 109964 -NCIT:C40323 Superficial Angiomyxoma 7 109965 -NCIT:C40324 Vulvar Superficial Angiomyxoma 8 109966 -NCIT:C40325 Vulvar Angiomyxoma 7 109967 -NCIT:C40322 Vulvar Deep (Aggressive) Angiomyxoma 8 109968 -NCIT:C40324 Vulvar Superficial Angiomyxoma 8 109969 -NCIT:C6936 Deep (Aggressive) Angiomyxoma 7 109970 -NCIT:C162501 Paratesticular Deep (Aggressive) Angiomyxoma 8 109971 -NCIT:C40273 Vaginal Deep (Aggressive) Angiomyxoma 8 109972 -NCIT:C40322 Vulvar Deep (Aggressive) Angiomyxoma 8 109973 -NCIT:C53594 Pleomorphic Hyalinizing Angiectatic Tumor of Soft Parts 6 109974 -NCIT:C53595 Ectopic Hamartomatous Thymoma 6 109975 -NCIT:C6577 Myxoma 6 109976 -NCIT:C175495 Conjunctival Myxoma 7 109977 -NCIT:C190160 Sinonasal Tract Myxoma 7 109978 -NCIT:C5245 Ovarian Myxoma 7 109979 -NCIT:C6578 Skin Myxoma 7 109980 -NCIT:C27526 Follicular Myxoma 8 109981 -NCIT:C6579 Intramuscular Myxoma 7 109982 -NCIT:C53589 Cellular Myxoma 8 109983 -NCIT:C6580 Juxta-Articular Myxoma 7 109984 -NCIT:C7748 Cardiac Myxoma 7 109985 -NCIT:C3499 Atrial Myxoma 8 109986 -NCIT:C4791 Left Atrial Myxoma 9 109987 -NCIT:C4792 Right Atrial Myxoma 9 109988 -NCIT:C45748 Ventricular Myxoma 8 109989 -NCIT:C6593 Benign Mediastinal Soft Tissue Neoplasm 5 109990 -NCIT:C146987 Mediastinal Hemangioma 6 109991 -NCIT:C27488 Mediastinal Lipomatosis 6 109992 -NCIT:C6595 Mediastinal Lymphangioma 6 109993 -NCIT:C6596 Mediastinal Chondroma 6 109994 -NCIT:C6598 Mediastinal Leiomyoma 6 109995 -NCIT:C6599 Mediastinal Lipoma 6 109996 -NCIT:C6600 Mediastinal Rhabdomyoma 6 109997 -NCIT:C6757 Benign Central Nervous System Mesenchymal, Non-Meningothelial Neoplasm 5 109998 -NCIT:C129549 Intracranial Fibrous Histiocytoma 6 109999 -NCIT:C129551 Central Nervous System Myofibroblastoma 6 110000 -NCIT:C5451 Central Nervous System Lipoma 6 110001 -NCIT:C129538 Central Nervous System Angiolipoma 7 110002 -NCIT:C5424 Epidural Spinal Canal Angiolipoma 8 110003 -NCIT:C4619 Spinal Cord Lipoma 7 110004 -NCIT:C5444 Intracranial Lipoma 7 110005 -NCIT:C5452 Inner Ear Lipoma 8 110006 -NCIT:C6220 Cerebral Hemisphere Lipoma 8 110007 -NCIT:C5438 Corpus Callosum Lipoma 9 110008 -NCIT:C6997 Central Nervous System Hibernoma 7 110009 -NCIT:C6998 Central Nervous System Leiomyoma 6 110010 -NCIT:C7000 Central Nervous System Rhabdomyoma 6 110011 -NCIT:C7001 Central Nervous System Chondroma 6 110012 -NCIT:C7004 Central Nervous System Hemangioma 6 110013 -NCIT:C84621 Central Nervous System Cavernous Hemangioma 7 110014 -NCIT:C5432 Intracranial Cavernous Hemangioma 8 110015 -NCIT:C7147 Benign Fibroblastic Neoplasm 5 110016 -NCIT:C121154 Proliferative Myositis 6 110017 -NCIT:C172941 Inflammatory Fibroid Polyp 6 110018 -NCIT:C177278 EWSR1-SMAD3-Positive Fibroblastic Tumor 6 110019 -NCIT:C188965 Childhood EWSR1-SMAD3-Positive Fibroblastic Tumor 7 110020 -NCIT:C3041 Fibroma 6 110021 -NCIT:C170736 Pleomorphic Fibroma 7 110022 -NCIT:C181926 Vulvar Prepubertal Fibroma 7 110023 -NCIT:C27515 Desmoplastic Fibroblastoma 7 110024 -NCIT:C3498 Ovarian Fibroma 7 110025 -NCIT:C189288 Childhood Ovarian Fibroma 8 110026 -NCIT:C7291 Ovarian Cellular Fibroma 8 110027 -NCIT:C3740 Desmoplastic Fibroma 7 110028 -NCIT:C173900 Maxillofacial Desmoplastic Fibroma 8 110029 -NCIT:C3799 Angiofibroma 7 110030 -NCIT:C177323 Angiofibroma of Soft Tissue 8 110031 -NCIT:C27256 Giant Cell Angiofibroma 8 110032 -NCIT:C27257 Cellular Angiofibroma 8 110033 -NCIT:C162498 Paratesticular Cellular Angiofibroma 9 110034 -NCIT:C40327 Vulvar Cellular Angiofibroma 9 110035 -NCIT:C27478 Gingival Angiofibroma 8 110036 -NCIT:C27479 Nasopharyngeal Angiofibroma 8 110037 -NCIT:C3972 Prostate Fibroma 7 110038 -NCIT:C39951 Testicular Fibroma 7 110039 -NCIT:C4818 Calcifying Aponeurotic Fibroma 7 110040 -NCIT:C49017 Gardner Fibroma 7 110041 -NCIT:C5394 Solitary Adult Fibroma 7 110042 -NCIT:C5658 Lung Fibroma 7 110043 -NCIT:C5702 Esophageal Fibroma 7 110044 -NCIT:C5853 Extrahepatic Bile Duct Fibroma 7 110045 -NCIT:C6484 Dermal Fibroma 7 110046 -NCIT:C170889 Plaque-Like CD34-Positive Dermal Fibroma 8 110047 -NCIT:C4470 Perifollicular Fibroma 8 110048 -NCIT:C6486 Nuchal-Type Fibroma 8 110049 -NCIT:C6485 Tendon Sheath Fibroma 7 110050 -NCIT:C66761 Periosteal Fibroma 7 110051 -NCIT:C66764 Fascial Fibroma 7 110052 -NCIT:C6892 Cellular Fibroma 7 110053 -NCIT:C7291 Ovarian Cellular Fibroma 8 110054 -NCIT:C6947 Cardiac Fibroma 7 110055 -NCIT:C3253 Myositis Ossificans 6 110056 -NCIT:C3456 Inclusion Body Fibromatosis 6 110057 -NCIT:C3827 Nodular Fasciitis 6 110058 -NCIT:C173687 Salivary Gland Nodular Fasciitis 7 110059 -NCIT:C173688 Parotid Gland Nodular Fasciitis 8 110060 -NCIT:C176253 Breast Nodular Fasciitis 7 110061 -NCIT:C27248 Cranial Nodular Fasciitis 7 110062 -NCIT:C4729 Intravascular Nodular Fasciitis 7 110063 -NCIT:C48961 Subcutaneous Nodular Fasciitis 7 110064 -NCIT:C4245 Elastofibroma 6 110065 -NCIT:C4728 Proliferative Fasciitis 6 110066 -NCIT:C4811 Fibromatosis Colli 6 110067 -NCIT:C49012 Myofibroblastoma 6 110068 -NCIT:C121181 Mammary-Type Myofibroblastoma 7 110069 -NCIT:C128079 Vaginal Superficial Myofibroblastoma 8 110070 -NCIT:C128272 Vulvar Superficial Myofibroblastoma 8 110071 -NCIT:C162500 Paratesticular Mammary-Type Myofibroblastoma 8 110072 -NCIT:C161640 Seminal Vesicle Mammary-Type Myofibroblastoma 9 110073 -NCIT:C129551 Central Nervous System Myofibroblastoma 7 110074 -NCIT:C40397 Breast Myofibroblastoma 7 110075 -NCIT:C6584 Palisaded Lymph Node Myofibroblastoma 7 110076 -NCIT:C49016 Angiomyofibroblastoma 6 110077 -NCIT:C45445 Vaginal Angiomyofibroblastoma 7 110078 -NCIT:C45446 Vulvar Angiomyofibroblastoma 7 110079 -NCIT:C6488 Calcifying Fibrous Tumor 6 110080 -NCIT:C179560 Peritoneal Calcifying Fibrous Tumor 7 110081 -NCIT:C183277 Pleural Calcifying Fibrous Tumor 7 110082 -NCIT:C6573 Fibroosseous Pseudotumor of Digits 6 110083 -NCIT:C6806 Benign Skin Fibroblastic Neoplasm 6 110084 -NCIT:C170888 Dermatomyofibroma 7 110085 -NCIT:C3942 Fibrous Hamartoma of Infancy 7 110086 -NCIT:C48961 Subcutaneous Nodular Fasciitis 7 110087 -NCIT:C6484 Dermal Fibroma 7 110088 -NCIT:C170889 Plaque-Like CD34-Positive Dermal Fibroma 8 110089 -NCIT:C4470 Perifollicular Fibroma 8 110090 -NCIT:C6486 Nuchal-Type Fibroma 8 110091 -NCIT:C7343 Benign Skin Fibrohistiocytic Neoplasm 5 110092 -NCIT:C6801 Skin Fibrous Histiocytoma 6 110093 -NCIT:C49076 Skin Fibrous Histiocytoma, Fibroblastic Variant 7 110094 -NCIT:C49077 Skin Fibrous Histiocytoma, Histiocytic Variant 7 110095 -NCIT:C49078 Skin Fibrous Histiocytoma, Cellular Variant 7 110096 -NCIT:C49079 Skin Fibrous Histiocytoma, Epithelioid Variant 7 110097 -NCIT:C7442 Benign Myoepithelioma 5 110098 -NCIT:C121785 Ectomesenchymal Chondromyxoid Tumor 6 110099 -NCIT:C121786 Mixed Tumor, Not Otherwise Specified 6 110100 -NCIT:C142829 Lung Myoepithelioma 6 110101 -NCIT:C167370 Skin Myoepithelioma 6 110102 -NCIT:C175272 Lacrimal Gland Myoepithelioma 6 110103 -NCIT:C5978 Salivary Gland Myoepithelioma 6 110104 -NCIT:C81854 Benign Epithelioid Cell Type Gastrointestinal Stromal Tumor 5 110105 -NCIT:C4502 Benign Lipomatous Neoplasm 4 110106 -NCIT:C181925 Vulvar Lipoblastoma-Like Tumor 5 110107 -NCIT:C27483 Lipoblastoma 5 110108 -NCIT:C27489 Atypical Spindle Cell/Pleomorphic Lipomatous Tumor 5 110109 -NCIT:C3192 Lipoma 5 110110 -NCIT:C128270 Vulvar Lipoma 6 110111 -NCIT:C128271 Vulvar Fibrolipoma 7 110112 -NCIT:C172945 Digestive System Lipoma 6 110113 -NCIT:C43576 Appendix Lipoma 7 110114 -NCIT:C5258 Gastric Lipoma 7 110115 -NCIT:C5339 Small Intestinal Lipoma 7 110116 -NCIT:C5678 Colorectal Lipoma 7 110117 -NCIT:C5493 Colon Lipoma 8 110118 -NCIT:C5551 Rectal Lipoma 8 110119 -NCIT:C5701 Esophageal Lipoma 7 110120 -NCIT:C5750 Liver Lipoma 7 110121 -NCIT:C5835 Gallbladder Lipoma 7 110122 -NCIT:C5854 Extrahepatic Bile Duct Lipoma 7 110123 -NCIT:C173681 Salivary Gland Lipoma 6 110124 -NCIT:C5982 Parotid Gland Lipoma 7 110125 -NCIT:C188250 Adrenal Gland Lipoma 6 110126 -NCIT:C27475 Bone Lipoma 6 110127 -NCIT:C178604 Bone Hibernoma 7 110128 -NCIT:C27530 Conventional Lipoma 6 110129 -NCIT:C35419 Axillary Lipoma 6 110130 -NCIT:C3702 Hibernoma 6 110131 -NCIT:C178604 Bone Hibernoma 7 110132 -NCIT:C6997 Central Nervous System Hibernoma 7 110133 -NCIT:C3733 Angiolipoma 6 110134 -NCIT:C129538 Central Nervous System Angiolipoma 7 110135 -NCIT:C5424 Epidural Spinal Canal Angiolipoma 8 110136 -NCIT:C170478 Skin Angiolipoma 7 110137 -NCIT:C176255 Breast Angiolipoma 7 110138 -NCIT:C7449 Infiltrating Angiolipoma 7 110139 -NCIT:C4249 Fibrolipoma 6 110140 -NCIT:C128271 Vulvar Fibrolipoma 7 110141 -NCIT:C4251 Fibromyxolipoma 6 110142 -NCIT:C4616 Skin Lipoma 6 110143 -NCIT:C170474 Skin Spindle Cell/Pleomorphic Lipoma 7 110144 -NCIT:C170475 Skin Spindle Cell Lipoma 8 110145 -NCIT:C170476 Skin Pleomorphic Lipoma 8 110146 -NCIT:C170478 Skin Angiolipoma 7 110147 -NCIT:C4618 External Ear Lipoma 6 110148 -NCIT:C4647 Breast Lipoma 6 110149 -NCIT:C176255 Breast Angiolipoma 7 110150 -NCIT:C5063 Endobronchial Lipoma 6 110151 -NCIT:C5101 Kidney Lipoma 6 110152 -NCIT:C5451 Central Nervous System Lipoma 6 110153 -NCIT:C129538 Central Nervous System Angiolipoma 7 110154 -NCIT:C5424 Epidural Spinal Canal Angiolipoma 8 110155 -NCIT:C4619 Spinal Cord Lipoma 7 110156 -NCIT:C5444 Intracranial Lipoma 7 110157 -NCIT:C5452 Inner Ear Lipoma 8 110158 -NCIT:C6220 Cerebral Hemisphere Lipoma 8 110159 -NCIT:C5438 Corpus Callosum Lipoma 9 110160 -NCIT:C6997 Central Nervous System Hibernoma 7 110161 -NCIT:C5910 Oral Cavity Lipoma 6 110162 -NCIT:C7734 Tongue Lipoma 7 110163 -NCIT:C5989 Tonsillar Lipoma 6 110164 -NCIT:C6384 Paratesticular Lipoma 6 110165 -NCIT:C3606 Spermatic Cord Lipoma 7 110166 -NCIT:C6498 Deep Lipoma 6 110167 -NCIT:C6499 Tendon Sheath Lipoma 7 110168 -NCIT:C6500 Lumbosacral Lipoma 7 110169 -NCIT:C7450 Intramuscular Lipoma 7 110170 -NCIT:C121131 Infiltrating Intramuscular Lipoma 8 110171 -NCIT:C7451 Infiltrating Lipoma 7 110172 -NCIT:C121131 Infiltrating Intramuscular Lipoma 8 110173 -NCIT:C6503 Chondroid Lipoma 6 110174 -NCIT:C6599 Mediastinal Lipoma 6 110175 -NCIT:C6644 Pleural Lipoma 6 110176 -NCIT:C6719 Chest Wall Lipoma 6 110177 -NCIT:C6741 Cardiac Lipoma 6 110178 -NCIT:C6742 Epicardial Lipoma 7 110179 -NCIT:C7180 Spindle Cell/Pleomorphic Lipoma 6 110180 -NCIT:C170474 Skin Spindle Cell/Pleomorphic Lipoma 7 110181 -NCIT:C170475 Skin Spindle Cell Lipoma 8 110182 -NCIT:C170476 Skin Pleomorphic Lipoma 8 110183 -NCIT:C3703 Pleomorphic Lipoma 7 110184 -NCIT:C170476 Skin Pleomorphic Lipoma 8 110185 -NCIT:C4254 Spindle Cell Lipoma 7 110186 -NCIT:C170475 Skin Spindle Cell Lipoma 8 110187 -NCIT:C9502 Myolipoma 6 110188 -NCIT:C5657 Lung Myolipoma 7 110189 -NCIT:C3193 Lipomatosis 5 110190 -NCIT:C27486 Pelvic Lipomatosis 6 110191 -NCIT:C27487 Steroid Lipomatosis 6 110192 -NCIT:C27488 Mediastinal Lipomatosis 6 110193 -NCIT:C4392 Cervical Symmetrical Lipomatosis 6 110194 -NCIT:C4701 Encephalocraniocutaneous Lipomatosis 6 110195 -NCIT:C48899 HIV Lipodystrophy 6 110196 -NCIT:C5431 Lipomatosis of Nerve 6 110197 -NCIT:C6504 Diffuse Lipomatosis 6 110198 -NCIT:C4255 Lipoblastomatosis 5 110199 -NCIT:C6490 Benign Fibrohistiocytic Neoplasm 4 110200 -NCIT:C3401 Tenosynovial Giant Cell Tumor, Diffuse Type 5 110201 -NCIT:C35765 Histiocytoma 5 110202 -NCIT:C3739 Fibrous Histiocytoma 6 110203 -NCIT:C129549 Intracranial Fibrous Histiocytoma 7 110204 -NCIT:C188974 Childhood Fibrous Histiocytoma 7 110205 -NCIT:C189031 Childhood Non-Ossifying Fibroma 8 110206 -NCIT:C53963 Fibrous Histiocytoma of Bone 7 110207 -NCIT:C121929 Non-Ossifying Fibroma 8 110208 -NCIT:C189031 Childhood Non-Ossifying Fibroma 9 110209 -NCIT:C6492 Deep Fibrous Histiocytoma 7 110210 -NCIT:C6801 Skin Fibrous Histiocytoma 7 110211 -NCIT:C49076 Skin Fibrous Histiocytoma, Fibroblastic Variant 8 110212 -NCIT:C49077 Skin Fibrous Histiocytoma, Histiocytic Variant 8 110213 -NCIT:C49078 Skin Fibrous Histiocytoma, Cellular Variant 8 110214 -NCIT:C49079 Skin Fibrous Histiocytoma, Epithelioid Variant 8 110215 -NCIT:C6532 Tenosynovial Giant Cell Tumor, Localized Type 5 110216 -NCIT:C7343 Benign Skin Fibrohistiocytic Neoplasm 5 110217 -NCIT:C6801 Skin Fibrous Histiocytoma 6 110218 -NCIT:C49076 Skin Fibrous Histiocytoma, Fibroblastic Variant 7 110219 -NCIT:C49077 Skin Fibrous Histiocytoma, Histiocytic Variant 7 110220 -NCIT:C49078 Skin Fibrous Histiocytoma, Cellular Variant 7 110221 -NCIT:C49079 Skin Fibrous Histiocytoma, Epithelioid Variant 7 110222 -NCIT:C6529 Benign Pericytic Neoplasm 4 110223 -NCIT:C3742 Myofibromatosis 5 110224 -NCIT:C176943 Infantile Myofibromatosis 1 6 110225 -NCIT:C176944 Infantile Myofibromatosis 2 6 110226 -NCIT:C3747 Angioleiomyoma 5 110227 -NCIT:C49110 Solid Angioleiomyoma 6 110228 -NCIT:C49111 Venous Angioleiomyoma 6 110229 -NCIT:C49115 Cavernous Angioleiomyoma 6 110230 -NCIT:C5355 Intravascular Angioleiomyoma 6 110231 -NCIT:C6748 Benign Glomus Tumor 5 110232 -NCIT:C27496 Glomangiomatosis 6 110233 -NCIT:C7052 Myofibroma 5 110234 -NCIT:C180887 Infantile Myofibroma 6 110235 -NCIT:C180888 Adult Myofibroma 6 110236 -NCIT:C6602 Benign Osteogenic Neoplasm 4 110237 -NCIT:C3294 Osteoblastoma 5 110238 -NCIT:C173899 Maxillofacial Osteoblastoma 6 110239 -NCIT:C189020 Childhood Osteoblastoma 6 110240 -NCIT:C4308 Cementoblastoma 6 110241 -NCIT:C3296 Osteoma 5 110242 -NCIT:C121923 Ivory Exostosis 6 110243 -NCIT:C121924 Enostosis 6 110244 -NCIT:C129569 Skull Osteoma 6 110245 -NCIT:C173894 Maxillofacial Osteoma 7 110246 -NCIT:C3297 Osteoid Osteoma 5 110247 -NCIT:C173898 Maxillofacial Osteoid Osteoma 6 110248 -NCIT:C189021 Childhood Osteoid Osteoma 6 110249 -NCIT:C7389 Benign Vascular Neoplasm 4 110250 -NCIT:C156342 Thyroid Gland Benign Vascular Neoplasm 5 110251 -NCIT:C156343 Thyroid Gland Hemangioma 6 110252 -NCIT:C156344 Thyroid Gland Cavernous Hemangioma 7 110253 -NCIT:C156345 Thyroid Gland Lymphangioma 6 110254 -NCIT:C27127 Benign Skin Vascular Neoplasm 5 110255 -NCIT:C27509 Skin Lymphangioma 6 110256 -NCIT:C162592 Penile Lymphangioma 7 110257 -NCIT:C4905 Skin Hemangioma 6 110258 -NCIT:C162579 Penile Hemangioma 7 110259 -NCIT:C162580 Penile Epithelioid Hemangioma 8 110260 -NCIT:C34967 Lobular Capillary Hemangioma of Skin and Subcutaneous Tissue 7 110261 -NCIT:C3926 Angioma Serpiginosum 7 110262 -NCIT:C4299 Verrucous Hemangioma 7 110263 -NCIT:C4390 Cherry Hemangioma 7 110264 -NCIT:C4372 Cherry Hemangioma of Lip 8 110265 -NCIT:C4487 Tufted Angioma 7 110266 -NCIT:C4750 Skin Cavernous Hemangioma 7 110267 -NCIT:C6387 Scrotal Hemangioma 7 110268 -NCIT:C7393 Skin Epithelioid Hemangioma 7 110269 -NCIT:C162580 Penile Epithelioid Hemangioma 8 110270 -NCIT:C6524 Benign Lymphatic Vessel Neoplasm 5 110271 -NCIT:C8965 Lymphangioma 6 110272 -NCIT:C156345 Thyroid Gland Lymphangioma 7 110273 -NCIT:C159214 Kidney Lymphangioma 7 110274 -NCIT:C175498 Conjunctival Lymphangioma 7 110275 -NCIT:C188252 Adrenal Gland Lymphangioma 7 110276 -NCIT:C27508 Intra-Abdominal Lymphangioma 7 110277 -NCIT:C5500 Colon Lymphangioma 8 110278 -NCIT:C96841 Liver Lymphangioma 8 110279 -NCIT:C27509 Skin Lymphangioma 7 110280 -NCIT:C162592 Penile Lymphangioma 8 110281 -NCIT:C3203 Acquired Progressive Lymphangioma 7 110282 -NCIT:C3724 Cystic Hygroma 7 110283 -NCIT:C116899 Congenital Cystic Hygroma 8 110284 -NCIT:C45485 Lymphangioma Circumscriptum 7 110285 -NCIT:C53316 Cavernous Lymphangioma 7 110286 -NCIT:C5393 Parotid Gland Lymphangioma 7 110287 -NCIT:C5482 Gastric Lymphangioma 7 110288 -NCIT:C6595 Mediastinal Lymphangioma 7 110289 -NCIT:C66792 Hemolymphangioma 7 110290 -NCIT:C8537 Benign Blood Vessel Neoplasm 5 110291 -NCIT:C27503 Angiomatosis 6 110292 -NCIT:C3821 Hemangiomatosis with Thrombocytopenia 7 110293 -NCIT:C40381 Breast Angiomatosis 7 110294 -NCIT:C3085 Hemangioma 6 110295 -NCIT:C146987 Mediastinal Hemangioma 7 110296 -NCIT:C156343 Thyroid Gland Hemangioma 7 110297 -NCIT:C156344 Thyroid Gland Cavernous Hemangioma 8 110298 -NCIT:C159211 Kidney Hemangioma 7 110299 -NCIT:C159680 Bladder Hemangioma 7 110300 -NCIT:C161581 Prostate Hemangioma 7 110301 -NCIT:C162503 Paratesticular Hemangioma 7 110302 -NCIT:C173142 Sinonasal Hemangioma 7 110303 -NCIT:C173680 Salivary Gland Hemangioma 7 110304 -NCIT:C5397 Parotid Gland Hemangioma 8 110305 -NCIT:C175497 Conjunctival Hemangioma 7 110306 -NCIT:C188251 Adrenal Gland Hemangioma 7 110307 -NCIT:C27018 Acquired Hemangioma 7 110308 -NCIT:C27505 Glomeruloid Hemangioma 7 110309 -NCIT:C27506 Hobnail Hemangioma 7 110310 -NCIT:C27507 Hemangioma of Peripheral Nerve 7 110311 -NCIT:C3086 Cavernous Hemangioma 7 110312 -NCIT:C156344 Thyroid Gland Cavernous Hemangioma 8 110313 -NCIT:C27777 Giant Hemangioma 8 110314 -NCIT:C4546 Orbit Cavernous Hemangioma 8 110315 -NCIT:C45750 Cardiac Cavernous Hemangioma 8 110316 -NCIT:C4750 Skin Cavernous Hemangioma 8 110317 -NCIT:C4921 Retinal Cavernous Hemangioma 8 110318 -NCIT:C5395 Colon Cavernous Hemangioma 8 110319 -NCIT:C7053 Cavernous Hemangioma of the Face 8 110320 -NCIT:C84621 Central Nervous System Cavernous Hemangioma 8 110321 -NCIT:C5432 Intracranial Cavernous Hemangioma 9 110322 -NCIT:C96839 Liver Cavernous Hemangioma 8 110323 -NCIT:C3633 Intracranial Hemangioma 7 110324 -NCIT:C5432 Intracranial Cavernous Hemangioma 8 110325 -NCIT:C7739 Brain Hemangioma 8 110326 -NCIT:C5433 Cerebral Hemangioma 9 110327 -NCIT:C3635 Intra-Abdominal Hemangioma 7 110328 -NCIT:C3869 Liver Hemangioma 8 110329 -NCIT:C190019 Liver Congenital Hemangioma 9 110330 -NCIT:C96839 Liver Cavernous Hemangioma 9 110331 -NCIT:C96840 Liver Infantile Hemangioma 9 110332 -NCIT:C5481 Gastric Hemangioma 8 110333 -NCIT:C8541 Splenic Hemangioma 8 110334 -NCIT:C3841 Congenital Hemangioma 7 110335 -NCIT:C172207 Rapidly Involuting Congenital Hemangioma 8 110336 -NCIT:C172208 Non-Involuting Congenital Hemangioma 8 110337 -NCIT:C172209 Partially Involuting Congenital Hemangioma 8 110338 -NCIT:C190019 Liver Congenital Hemangioma 8 110339 -NCIT:C4486 Blue Rubber Bleb Nevus 8 110340 -NCIT:C4296 Venous Hemangioma 7 110341 -NCIT:C4298 Epithelioid Hemangioma 7 110342 -NCIT:C5211 Breast Epithelioid Hemangioma 8 110343 -NCIT:C5396 Bone Epithelioid Hemangioma 8 110344 -NCIT:C7393 Skin Epithelioid Hemangioma 8 110345 -NCIT:C162580 Penile Epithelioid Hemangioma 9 110346 -NCIT:C4562 Choroid Hemangioma 7 110347 -NCIT:C45749 Cardiac Hemangioma 7 110348 -NCIT:C45750 Cardiac Cavernous Hemangioma 8 110349 -NCIT:C45751 Cardiac Capillary Hemangioma 8 110350 -NCIT:C45752 Cardiac Intramuscular Hemangioma 8 110351 -NCIT:C4754 Spindle Cell Hemangioma 7 110352 -NCIT:C4831 Gingival Hemangioma 7 110353 -NCIT:C4868 Placental Hemangioma 7 110354 -NCIT:C4905 Skin Hemangioma 7 110355 -NCIT:C162579 Penile Hemangioma 8 110356 -NCIT:C162580 Penile Epithelioid Hemangioma 9 110357 -NCIT:C34967 Lobular Capillary Hemangioma of Skin and Subcutaneous Tissue 8 110358 -NCIT:C3926 Angioma Serpiginosum 8 110359 -NCIT:C4299 Verrucous Hemangioma 8 110360 -NCIT:C4390 Cherry Hemangioma 8 110361 -NCIT:C4372 Cherry Hemangioma of Lip 9 110362 -NCIT:C4487 Tufted Angioma 8 110363 -NCIT:C4750 Skin Cavernous Hemangioma 8 110364 -NCIT:C6387 Scrotal Hemangioma 8 110365 -NCIT:C7393 Skin Epithelioid Hemangioma 8 110366 -NCIT:C162580 Penile Epithelioid Hemangioma 9 110367 -NCIT:C5353 Breast Hemangioma 7 110368 -NCIT:C5210 Breast Capillary Hemangioma 8 110369 -NCIT:C5211 Breast Epithelioid Hemangioma 8 110370 -NCIT:C6026 Subglottic Hemangioma 7 110371 -NCIT:C6245 Orbit Hemangioma 7 110372 -NCIT:C4545 Orbit Capillary Hemangioma 8 110373 -NCIT:C4546 Orbit Cavernous Hemangioma 8 110374 -NCIT:C6477 Bone Hemangioma 7 110375 -NCIT:C189028 Childhood Bone Hemangioma 8 110376 -NCIT:C5396 Bone Epithelioid Hemangioma 8 110377 -NCIT:C6525 Synovial Hemangioma 7 110378 -NCIT:C6555 Deep Hemangioma 7 110379 -NCIT:C3699 Intramuscular Hemangioma 8 110380 -NCIT:C45752 Cardiac Intramuscular Hemangioma 9 110381 -NCIT:C6526 Perineural Hemangioma 8 110382 -NCIT:C7004 Central Nervous System Hemangioma 7 110383 -NCIT:C84621 Central Nervous System Cavernous Hemangioma 8 110384 -NCIT:C5432 Intracranial Cavernous Hemangioma 9 110385 -NCIT:C7457 Capillary Hemangioma 7 110386 -NCIT:C131760 Anastomosing Hemangioma 8 110387 -NCIT:C3480 Lobular Capillary Hemangioma 8 110388 -NCIT:C27552 Multiple Lobular Capillary Hemangiomas 9 110389 -NCIT:C34967 Lobular Capillary Hemangioma of Skin and Subcutaneous Tissue 9 110390 -NCIT:C3950 Oral Mucosa Lobular Capillary Hemangioma 9 110391 -NCIT:C4357 Eyelid Capillary Hemangioma 8 110392 -NCIT:C4390 Cherry Hemangioma 8 110393 -NCIT:C4372 Cherry Hemangioma of Lip 9 110394 -NCIT:C4487 Tufted Angioma 8 110395 -NCIT:C4545 Orbit Capillary Hemangioma 8 110396 -NCIT:C45751 Cardiac Capillary Hemangioma 8 110397 -NCIT:C5210 Breast Capillary Hemangioma 8 110398 -NCIT:C6645 Infantile Hemangioma 8 110399 -NCIT:C96840 Liver Infantile Hemangioma 9 110400 -NCIT:C99086 Airway Infantile Hemangioma 9 110401 -NCIT:C7741 Digestive System Hemangioma 7 110402 -NCIT:C3869 Liver Hemangioma 8 110403 -NCIT:C190019 Liver Congenital Hemangioma 9 110404 -NCIT:C96839 Liver Cavernous Hemangioma 9 110405 -NCIT:C96840 Liver Infantile Hemangioma 9 110406 -NCIT:C5395 Colon Cavernous Hemangioma 8 110407 -NCIT:C5481 Gastric Hemangioma 8 110408 -NCIT:C95622 Esophageal Hemangioma 8 110409 -NCIT:C7744 Mucous Membrane Hemangioma 7 110410 -NCIT:C8540 Subcutaneous Hemangioma 7 110411 -NCIT:C172206 Sinusoidal Hemangioma 8 110412 -NCIT:C8592 Benign Chondrogenic Neoplasm 4 110413 -NCIT:C121842 Osteochondromyxoma 5 110414 -NCIT:C121844 Subungual Exostosis 5 110415 -NCIT:C189019 Childhood Subungual Exostosis 6 110416 -NCIT:C121845 Bizarre Parosteal Osteochondromatous Proliferation 5 110417 -NCIT:C2945 Chondroblastoma 5 110418 -NCIT:C173895 Maxillofacial Chondroblastoma 6 110419 -NCIT:C189023 Childhood Chondroblastoma 6 110420 -NCIT:C3295 Osteochondroma 5 110421 -NCIT:C189024 Childhood Osteochondroma 6 110422 -NCIT:C53455 Solitary Osteochondroma 6 110423 -NCIT:C53457 Multiple Osteochondromas 6 110424 -NCIT:C35259 Chondromatosis 5 110425 -NCIT:C3008 Enchondromatosis 6 110426 -NCIT:C34467 Synovial Chondromatosis 6 110427 -NCIT:C3830 Chondromyxoid Fibroma 5 110428 -NCIT:C173897 Maxillofacial Chondromyxoid Fibroma 6 110429 -NCIT:C189025 Childhood Chondromyxoid Fibroma 6 110430 -NCIT:C6714 Sternal Chondromyxoid Fibroma 6 110431 -NCIT:C53459 Chondroma 5 110432 -NCIT:C173406 Laryngeal Chondroma 6 110433 -NCIT:C173893 Maxillofacial Chondroma 6 110434 -NCIT:C3007 Enchondroma 6 110435 -NCIT:C4302 Periosteal Chondroma 6 110436 -NCIT:C9482 Soft Tissue Chondroma 6 110437 -NCIT:C45629 Lung Chondroma 7 110438 -NCIT:C6596 Mediastinal Chondroma 7 110439 -NCIT:C7001 Central Nervous System Chondroma 7 110440 -NCIT:C7059 Mesenchymal Cell Neoplasm 3 110441 -NCIT:C4063 Myomatous Neoplasm 4 110442 -NCIT:C3751 Smooth Muscle Neoplasm 5 110443 -NCIT:C178217 EBV-Associated Smooth Muscle Tumor 6 110444 -NCIT:C188982 Childhood EBV-Associated Smooth Muscle Tumor 7 110445 -NCIT:C179359 Ovarian Smooth Muscle Neoplasm 6 110446 -NCIT:C179360 Ovarian Leiomyoma 7 110447 -NCIT:C179362 Ovarian Smooth Muscle Tumor of Uncertain Malignant Potential 7 110448 -NCIT:C5234 Ovarian Leiomyosarcoma 7 110449 -NCIT:C181941 Female Reproductive System Smooth Muscle Tumor of Uncertain Malignant Potential 6 110450 -NCIT:C179362 Ovarian Smooth Muscle Tumor of Uncertain Malignant Potential 7 110451 -NCIT:C181939 Vulvar Smooth Muscle Tumor of Uncertain Malignant Potential 7 110452 -NCIT:C181940 Vaginal Smooth Muscle Tumor of Uncertain Malignant Potential 7 110453 -NCIT:C40177 Uterine Corpus Smooth Muscle Tumor of Uncertain Malignant Potential 7 110454 -NCIT:C180540 Uterine Corpus Spindle Smooth Muscle Tumor of Uncertain Malignant Potential 8 110455 -NCIT:C180541 Uterine Corpus Myxoid Smooth Muscle Tumor of Uncertain Malignant Potential 8 110456 -NCIT:C180542 Uterine Corpus Epithelioid Smooth Muscle Tumor of Uncertain Malignant Potential 8 110457 -NCIT:C40176 Uterine Corpus Smooth Muscle Neoplasm 6 110458 -NCIT:C3434 Uterine Corpus Leiomyoma 7 110459 -NCIT:C126975 Uterine Corpus Hydropic Leiomyoma 8 110460 -NCIT:C3511 Uterine Corpus Degenerated Leiomyoma 8 110461 -NCIT:C40162 Uterine Corpus Leiomyoma, Mitotically Active Variant 8 110462 -NCIT:C40163 Uterine Corpus Cellular Leiomyoma 8 110463 -NCIT:C40164 Uterine Corpus Epithelioid Leiomyoma 8 110464 -NCIT:C40165 Uterine Corpus Apoplectic Leiomyoma 8 110465 -NCIT:C40166 Uterine Corpus Myxoid Leiomyoma 8 110466 -NCIT:C40167 Uterine Corpus Bizarre Leiomyoma 8 110467 -NCIT:C40168 Uterine Corpus Lipoleiomyoma 8 110468 -NCIT:C40170 Uterine Corpus Diffuse Leiomyomatosis 8 110469 -NCIT:C40172 Uterine Corpus Dissecting Leiomyoma 8 110470 -NCIT:C40173 Uterine Corpus Metastasizing Leiomyoma 8 110471 -NCIT:C5356 Uterine Corpus Intravenous Leiomyomatosis 8 110472 -NCIT:C40177 Uterine Corpus Smooth Muscle Tumor of Uncertain Malignant Potential 7 110473 -NCIT:C180540 Uterine Corpus Spindle Smooth Muscle Tumor of Uncertain Malignant Potential 8 110474 -NCIT:C180541 Uterine Corpus Myxoid Smooth Muscle Tumor of Uncertain Malignant Potential 8 110475 -NCIT:C180542 Uterine Corpus Epithelioid Smooth Muscle Tumor of Uncertain Malignant Potential 8 110476 -NCIT:C6340 Uterine Corpus Leiomyosarcoma 7 110477 -NCIT:C139870 Uterine Corpus Leiomyosarcoma by AJCC v8 Stage 8 110478 -NCIT:C139871 Stage I Uterine Corpus Leiomyosarcoma AJCC v8 9 110479 -NCIT:C139872 Stage IA Uterine Corpus Leiomyosarcoma AJCC v8 10 110480 -NCIT:C139873 Stage IB Uterine Corpus Leiomyosarcoma AJCC v8 10 110481 -NCIT:C139874 Stage II Uterine Corpus Leiomyosarcoma AJCC v8 9 110482 -NCIT:C139875 Stage III Uterine Corpus Leiomyosarcoma AJCC v8 9 110483 -NCIT:C139876 Stage IIIA Uterine Corpus Leiomyosarcoma AJCC v8 10 110484 -NCIT:C139877 Stage IIIB Uterine Corpus Leiomyosarcoma AJCC v8 10 110485 -NCIT:C139878 Stage IIIC Uterine Corpus Leiomyosarcoma AJCC v8 10 110486 -NCIT:C139879 Stage IV Uterine Corpus Leiomyosarcoma AJCC v8 9 110487 -NCIT:C139880 Stage IVA Uterine Corpus Leiomyosarcoma AJCC v8 10 110488 -NCIT:C139881 Stage IVB Uterine Corpus Leiomyosarcoma AJCC v8 10 110489 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 8 110490 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 8 110491 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 9 110492 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 8 110493 -NCIT:C40174 Uterine Corpus Epithelioid Leiomyosarcoma 8 110494 -NCIT:C40175 Uterine Corpus Myxoid Leiomyosarcoma 8 110495 -NCIT:C4480 Skin Smooth Muscle Neoplasm 6 110496 -NCIT:C4482 Skin Leiomyoma 7 110497 -NCIT:C43332 Pilar Leiomyoma 8 110498 -NCIT:C4483 Dartoic Leiomyoma 8 110499 -NCIT:C4484 Atypical Intradermal Smooth Muscle Neoplasm 7 110500 -NCIT:C6510 Benign Smooth Muscle Neoplasm 6 110501 -NCIT:C3157 Leiomyoma 7 110502 -NCIT:C128046 Cervical Leiomyoma 8 110503 -NCIT:C156346 Thyroid Gland Leiomyoma 8 110504 -NCIT:C159209 Kidney Leiomyoma 8 110505 -NCIT:C162494 Paratesticular Leiomyoma 8 110506 -NCIT:C161638 Seminal Vesicle Leiomyoma 9 110507 -NCIT:C162583 Penile Leiomyoma 8 110508 -NCIT:C172942 Digestive System Leiomyoma 8 110509 -NCIT:C3866 Esophageal Leiomyoma 9 110510 -NCIT:C3876 Gastric Leiomyoma 9 110511 -NCIT:C5514 Appendix Leiomyoma 9 110512 -NCIT:C5608 Anal Leiomyoma 9 110513 -NCIT:C5677 Colorectal Leiomyoma 9 110514 -NCIT:C5492 Colon Leiomyoma 10 110515 -NCIT:C5552 Rectal Leiomyoma 10 110516 -NCIT:C5747 Gallbladder Leiomyoma 9 110517 -NCIT:C5753 Liver Leiomyoma 9 110518 -NCIT:C5855 Extrahepatic Bile Duct Leiomyoma 9 110519 -NCIT:C7725 Small Intestinal Leiomyoma 9 110520 -NCIT:C173140 Sinonasal Leiomyoma 8 110521 -NCIT:C179360 Ovarian Leiomyoma 8 110522 -NCIT:C179923 Uterine Ligament Leiomyoma 8 110523 -NCIT:C179924 Broad Ligament Leiomyoma 9 110524 -NCIT:C188253 Adrenal Gland Leiomyoma 8 110525 -NCIT:C3434 Uterine Corpus Leiomyoma 8 110526 -NCIT:C126975 Uterine Corpus Hydropic Leiomyoma 9 110527 -NCIT:C3511 Uterine Corpus Degenerated Leiomyoma 9 110528 -NCIT:C40162 Uterine Corpus Leiomyoma, Mitotically Active Variant 9 110529 -NCIT:C40163 Uterine Corpus Cellular Leiomyoma 9 110530 -NCIT:C40164 Uterine Corpus Epithelioid Leiomyoma 9 110531 -NCIT:C40165 Uterine Corpus Apoplectic Leiomyoma 9 110532 -NCIT:C40166 Uterine Corpus Myxoid Leiomyoma 9 110533 -NCIT:C40167 Uterine Corpus Bizarre Leiomyoma 9 110534 -NCIT:C40168 Uterine Corpus Lipoleiomyoma 9 110535 -NCIT:C40170 Uterine Corpus Diffuse Leiomyomatosis 9 110536 -NCIT:C40172 Uterine Corpus Dissecting Leiomyoma 9 110537 -NCIT:C40173 Uterine Corpus Metastasizing Leiomyoma 9 110538 -NCIT:C5356 Uterine Corpus Intravenous Leiomyomatosis 9 110539 -NCIT:C3748 Leiomyomatosis 8 110540 -NCIT:C3958 Disseminated Peritoneal Leiomyomatosis 9 110541 -NCIT:C40170 Uterine Corpus Diffuse Leiomyomatosis 9 110542 -NCIT:C4518 Intravenous Leiomyomatosis 9 110543 -NCIT:C5356 Uterine Corpus Intravenous Leiomyomatosis 10 110544 -NCIT:C40127 Fallopian Tube Leiomyoma 8 110545 -NCIT:C40326 Vulvar Leiomyoma 8 110546 -NCIT:C40399 Breast Leiomyoma 8 110547 -NCIT:C4256 Cellular Leiomyoma 8 110548 -NCIT:C40163 Uterine Corpus Cellular Leiomyoma 9 110549 -NCIT:C4257 Bizarre Leiomyoma 8 110550 -NCIT:C40167 Uterine Corpus Bizarre Leiomyoma 9 110551 -NCIT:C4482 Skin Leiomyoma 8 110552 -NCIT:C43332 Pilar Leiomyoma 9 110553 -NCIT:C4483 Dartoic Leiomyoma 9 110554 -NCIT:C4560 Ciliary Body Leiomyoma 8 110555 -NCIT:C53964 Bone Leiomyoma 8 110556 -NCIT:C5544 Prostate Leiomyoma 8 110557 -NCIT:C5660 Lung Leiomyoma 8 110558 -NCIT:C5661 Endobronchial Leiomyoma 9 110559 -NCIT:C5909 Oral Cavity Leiomyoma 8 110560 -NCIT:C6027 Laryngeal Leiomyoma 8 110561 -NCIT:C6049 Tracheal Leiomyoma 8 110562 -NCIT:C6161 Ureter Leiomyoma 8 110563 -NCIT:C6171 Urethral Leiomyoma 8 110564 -NCIT:C6178 Bladder Leiomyoma 8 110565 -NCIT:C6373 Vaginal Leiomyoma 8 110566 -NCIT:C6512 Deep Leiomyoma 8 110567 -NCIT:C6598 Mediastinal Leiomyoma 8 110568 -NCIT:C6743 Pericardial Leiomyoma 8 110569 -NCIT:C67563 Myxoid Leiomyoma 8 110570 -NCIT:C40166 Uterine Corpus Myxoid Leiomyoma 9 110571 -NCIT:C6998 Central Nervous System Leiomyoma 8 110572 -NCIT:C6511 Malignant Smooth Muscle Neoplasm 6 110573 -NCIT:C3158 Leiomyosarcoma 7 110574 -NCIT:C121571 Leiomyosarcoma of Deep Soft Tissue 8 110575 -NCIT:C27904 Retroperitoneal Leiomyosarcoma 9 110576 -NCIT:C128047 Cervical Leiomyosarcoma 8 110577 -NCIT:C132147 Unresectable Leiomyosarcoma 8 110578 -NCIT:C168728 Unresectable Soft Tissue Leiomyosarcoma 9 110579 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 10 110580 -NCIT:C148294 Refractory Leiomyosarcoma 8 110581 -NCIT:C156347 Thyroid Gland Leiomyosarcoma 8 110582 -NCIT:C159670 Bladder Leiomyosarcoma 8 110583 -NCIT:C162306 EBV-Related Leiomyosarcoma 8 110584 -NCIT:C162495 Paratesticular Leiomyosarcoma 8 110585 -NCIT:C161641 Seminal Vesicle Leiomyosarcoma 9 110586 -NCIT:C162585 Penile Leiomyosarcoma 8 110587 -NCIT:C172951 Digestive System Leiomyosarcoma 8 110588 -NCIT:C188065 Pancreatic Leiomyosarcoma 9 110589 -NCIT:C27200 Gastric Leiomyosarcoma 9 110590 -NCIT:C5334 Esophageal Leiomyosarcoma 9 110591 -NCIT:C5599 Anal Leiomyosarcoma 9 110592 -NCIT:C5756 Liver Leiomyosarcoma 9 110593 -NCIT:C5841 Gallbladder Leiomyosarcoma 9 110594 -NCIT:C5848 Extrahepatic Bile Duct Leiomyosarcoma 9 110595 -NCIT:C7085 Small Intestinal Leiomyosarcoma 9 110596 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 10 110597 -NCIT:C96435 Appendix Leiomyosarcoma 9 110598 -NCIT:C96509 Colorectal Leiomyosarcoma 9 110599 -NCIT:C5494 Colon Leiomyosarcoma 10 110600 -NCIT:C5549 Rectal Leiomyosarcoma 10 110601 -NCIT:C173123 Sinonasal Leiomyosarcoma 8 110602 -NCIT:C175500 Conjunctival Leiomyosarcoma 8 110603 -NCIT:C175505 Resectable Leiomyosarcoma 8 110604 -NCIT:C178220 Pleomorphic Leiomyosarcoma 8 110605 -NCIT:C178222 Dedifferentiated Leiomyosarcoma 9 110606 -NCIT:C179926 Broad Ligament Leiomyosarcoma 8 110607 -NCIT:C188063 Pleural Leiomyosarcoma 8 110608 -NCIT:C188254 Adrenal Gland Leiomyosarcoma 8 110609 -NCIT:C27494 Granular Cell Leiomyosarcoma 8 110610 -NCIT:C27495 Inflammatory Leiomyosarcoma 8 110611 -NCIT:C3700 Epithelioid Leiomyosarcoma 8 110612 -NCIT:C40174 Uterine Corpus Epithelioid Leiomyosarcoma 9 110613 -NCIT:C3701 Myxoid Leiomyosarcoma 8 110614 -NCIT:C40175 Uterine Corpus Myxoid Leiomyosarcoma 9 110615 -NCIT:C40128 Fallopian Tube Leiomyosarcoma 8 110616 -NCIT:C40318 Vulvar Leiomyosarcoma 8 110617 -NCIT:C5186 Breast Leiomyosarcoma 8 110618 -NCIT:C5234 Ovarian Leiomyosarcoma 8 110619 -NCIT:C5364 Cardiac Leiomyosarcoma 8 110620 -NCIT:C5387 Leiomyosarcoma of Vessels 8 110621 -NCIT:C5372 Inferior Vena Cava Leiomyosarcoma 9 110622 -NCIT:C5373 Pulmonary Artery Leiomyosarcoma 9 110623 -NCIT:C5374 Pulmonary Vein Leiomyosarcoma 9 110624 -NCIT:C5388 Renal Vein Leiomyosarcoma 9 110625 -NCIT:C6745 Superior Vena Cava Leiomyosarcoma 9 110626 -NCIT:C5526 Prostate Leiomyosarcoma 8 110627 -NCIT:C5667 Lung Leiomyosarcoma 8 110628 -NCIT:C6022 Laryngeal Leiomyosarcoma 8 110629 -NCIT:C6183 Kidney Leiomyosarcoma 8 110630 -NCIT:C6326 Vaginal Leiomyosarcoma 8 110631 -NCIT:C6340 Uterine Corpus Leiomyosarcoma 8 110632 -NCIT:C139870 Uterine Corpus Leiomyosarcoma by AJCC v8 Stage 9 110633 -NCIT:C139871 Stage I Uterine Corpus Leiomyosarcoma AJCC v8 10 110634 -NCIT:C139872 Stage IA Uterine Corpus Leiomyosarcoma AJCC v8 11 110635 -NCIT:C139873 Stage IB Uterine Corpus Leiomyosarcoma AJCC v8 11 110636 -NCIT:C139874 Stage II Uterine Corpus Leiomyosarcoma AJCC v8 10 110637 -NCIT:C139875 Stage III Uterine Corpus Leiomyosarcoma AJCC v8 10 110638 -NCIT:C139876 Stage IIIA Uterine Corpus Leiomyosarcoma AJCC v8 11 110639 -NCIT:C139877 Stage IIIB Uterine Corpus Leiomyosarcoma AJCC v8 11 110640 -NCIT:C139878 Stage IIIC Uterine Corpus Leiomyosarcoma AJCC v8 11 110641 -NCIT:C139879 Stage IV Uterine Corpus Leiomyosarcoma AJCC v8 10 110642 -NCIT:C139880 Stage IVA Uterine Corpus Leiomyosarcoma AJCC v8 11 110643 -NCIT:C139881 Stage IVB Uterine Corpus Leiomyosarcoma AJCC v8 11 110644 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 9 110645 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 9 110646 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 10 110647 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 9 110648 -NCIT:C40174 Uterine Corpus Epithelioid Leiomyosarcoma 9 110649 -NCIT:C40175 Uterine Corpus Myxoid Leiomyosarcoma 9 110650 -NCIT:C6619 Mediastinal Leiomyosarcoma 8 110651 -NCIT:C6999 Central Nervous System Leiomyosarcoma 8 110652 -NCIT:C7154 Bone Leiomyosarcoma 8 110653 -NCIT:C7810 Adult Leiomyosarcoma 8 110654 -NCIT:C8093 Childhood Leiomyosarcoma 8 110655 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 9 110656 -NCIT:C8813 Metastatic Leiomyosarcoma 8 110657 -NCIT:C160917 Locally Advanced Leiomyosarcoma 9 110658 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 10 110659 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 11 110660 -NCIT:C165780 Advanced Leiomyosarcoma 9 110661 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 10 110662 -NCIT:C168725 Metastatic Soft Tissue Leiomyosarcoma 9 110663 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 10 110664 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 10 110665 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 11 110666 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 10 110667 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 11 110668 -NCIT:C8814 Localized Leiomyosarcoma 8 110669 -NCIT:C8815 Recurrent Leiomyosarcoma 8 110670 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 9 110671 -NCIT:C9389 Well Differentiated Leiomyosarcoma 8 110672 -NCIT:C9390 Leiomyosarcoma NCI Grade 3 8 110673 -NCIT:C9391 Leiomyosarcoma NCI Grade 2 8 110674 -NCIT:C9428 Conventional Leiomyosarcoma 8 110675 -NCIT:C4882 Benign Muscle Neoplasm 5 110676 -NCIT:C3358 Rhabdomyoma 6 110677 -NCIT:C188983 Childhood Rhabdomyoma 7 110678 -NCIT:C190104 Childhood Cardiac Rhabdomyoma 8 110679 -NCIT:C49166 Extracardiac Rhabdomyoma 7 110680 -NCIT:C162496 Paratesticular Rhabdomyoma 8 110681 -NCIT:C4260 Fetal Rhabdomyoma 8 110682 -NCIT:C27480 Classic Rhabdomyoma 9 110683 -NCIT:C6518 Intermediate Rhabdomyoma 9 110684 -NCIT:C4261 Adult Extracardiac Rhabdomyoma 8 110685 -NCIT:C6517 Genital Rhabdomyoma 8 110686 -NCIT:C181942 Vulvar Rhabdomyoma 9 110687 -NCIT:C40266 Cervical Rhabdomyoma 9 110688 -NCIT:C6372 Vaginal Rhabdomyoma 9 110689 -NCIT:C6600 Mediastinal Rhabdomyoma 8 110690 -NCIT:C7000 Central Nervous System Rhabdomyoma 8 110691 -NCIT:C6739 Cardiac Rhabdomyoma 7 110692 -NCIT:C190104 Childhood Cardiac Rhabdomyoma 8 110693 -NCIT:C45747 Adult Cardiac Cellular Rhabdomyoma 8 110694 -NCIT:C49179 Conventional Cardiac Rhabdomyoma 8 110695 -NCIT:C6510 Benign Smooth Muscle Neoplasm 6 110696 -NCIT:C3157 Leiomyoma 7 110697 -NCIT:C128046 Cervical Leiomyoma 8 110698 -NCIT:C156346 Thyroid Gland Leiomyoma 8 110699 -NCIT:C159209 Kidney Leiomyoma 8 110700 -NCIT:C162494 Paratesticular Leiomyoma 8 110701 -NCIT:C161638 Seminal Vesicle Leiomyoma 9 110702 -NCIT:C162583 Penile Leiomyoma 8 110703 -NCIT:C172942 Digestive System Leiomyoma 8 110704 -NCIT:C3866 Esophageal Leiomyoma 9 110705 -NCIT:C3876 Gastric Leiomyoma 9 110706 -NCIT:C5514 Appendix Leiomyoma 9 110707 -NCIT:C5608 Anal Leiomyoma 9 110708 -NCIT:C5677 Colorectal Leiomyoma 9 110709 -NCIT:C5492 Colon Leiomyoma 10 110710 -NCIT:C5552 Rectal Leiomyoma 10 110711 -NCIT:C5747 Gallbladder Leiomyoma 9 110712 -NCIT:C5753 Liver Leiomyoma 9 110713 -NCIT:C5855 Extrahepatic Bile Duct Leiomyoma 9 110714 -NCIT:C7725 Small Intestinal Leiomyoma 9 110715 -NCIT:C173140 Sinonasal Leiomyoma 8 110716 -NCIT:C179360 Ovarian Leiomyoma 8 110717 -NCIT:C179923 Uterine Ligament Leiomyoma 8 110718 -NCIT:C179924 Broad Ligament Leiomyoma 9 110719 -NCIT:C188253 Adrenal Gland Leiomyoma 8 110720 -NCIT:C3434 Uterine Corpus Leiomyoma 8 110721 -NCIT:C126975 Uterine Corpus Hydropic Leiomyoma 9 110722 -NCIT:C3511 Uterine Corpus Degenerated Leiomyoma 9 110723 -NCIT:C40162 Uterine Corpus Leiomyoma, Mitotically Active Variant 9 110724 -NCIT:C40163 Uterine Corpus Cellular Leiomyoma 9 110725 -NCIT:C40164 Uterine Corpus Epithelioid Leiomyoma 9 110726 -NCIT:C40165 Uterine Corpus Apoplectic Leiomyoma 9 110727 -NCIT:C40166 Uterine Corpus Myxoid Leiomyoma 9 110728 -NCIT:C40167 Uterine Corpus Bizarre Leiomyoma 9 110729 -NCIT:C40168 Uterine Corpus Lipoleiomyoma 9 110730 -NCIT:C40170 Uterine Corpus Diffuse Leiomyomatosis 9 110731 -NCIT:C40172 Uterine Corpus Dissecting Leiomyoma 9 110732 -NCIT:C40173 Uterine Corpus Metastasizing Leiomyoma 9 110733 -NCIT:C5356 Uterine Corpus Intravenous Leiomyomatosis 9 110734 -NCIT:C3748 Leiomyomatosis 8 110735 -NCIT:C3958 Disseminated Peritoneal Leiomyomatosis 9 110736 -NCIT:C40170 Uterine Corpus Diffuse Leiomyomatosis 9 110737 -NCIT:C4518 Intravenous Leiomyomatosis 9 110738 -NCIT:C5356 Uterine Corpus Intravenous Leiomyomatosis 10 110739 -NCIT:C40127 Fallopian Tube Leiomyoma 8 110740 -NCIT:C40326 Vulvar Leiomyoma 8 110741 -NCIT:C40399 Breast Leiomyoma 8 110742 -NCIT:C4256 Cellular Leiomyoma 8 110743 -NCIT:C40163 Uterine Corpus Cellular Leiomyoma 9 110744 -NCIT:C4257 Bizarre Leiomyoma 8 110745 -NCIT:C40167 Uterine Corpus Bizarre Leiomyoma 9 110746 -NCIT:C4482 Skin Leiomyoma 8 110747 -NCIT:C43332 Pilar Leiomyoma 9 110748 -NCIT:C4483 Dartoic Leiomyoma 9 110749 -NCIT:C4560 Ciliary Body Leiomyoma 8 110750 -NCIT:C53964 Bone Leiomyoma 8 110751 -NCIT:C5544 Prostate Leiomyoma 8 110752 -NCIT:C5660 Lung Leiomyoma 8 110753 -NCIT:C5661 Endobronchial Leiomyoma 9 110754 -NCIT:C5909 Oral Cavity Leiomyoma 8 110755 -NCIT:C6027 Laryngeal Leiomyoma 8 110756 -NCIT:C6049 Tracheal Leiomyoma 8 110757 -NCIT:C6161 Ureter Leiomyoma 8 110758 -NCIT:C6171 Urethral Leiomyoma 8 110759 -NCIT:C6178 Bladder Leiomyoma 8 110760 -NCIT:C6373 Vaginal Leiomyoma 8 110761 -NCIT:C6512 Deep Leiomyoma 8 110762 -NCIT:C6598 Mediastinal Leiomyoma 8 110763 -NCIT:C6743 Pericardial Leiomyoma 8 110764 -NCIT:C67563 Myxoid Leiomyoma 8 110765 -NCIT:C40166 Uterine Corpus Myxoid Leiomyoma 9 110766 -NCIT:C6998 Central Nervous System Leiomyoma 8 110767 -NCIT:C6515 Benign Skeletal Muscle Neoplasm 6 110768 -NCIT:C49166 Extracardiac Rhabdomyoma 7 110769 -NCIT:C162496 Paratesticular Rhabdomyoma 8 110770 -NCIT:C4260 Fetal Rhabdomyoma 8 110771 -NCIT:C27480 Classic Rhabdomyoma 9 110772 -NCIT:C6518 Intermediate Rhabdomyoma 9 110773 -NCIT:C4261 Adult Extracardiac Rhabdomyoma 8 110774 -NCIT:C6517 Genital Rhabdomyoma 8 110775 -NCIT:C181942 Vulvar Rhabdomyoma 9 110776 -NCIT:C40266 Cervical Rhabdomyoma 9 110777 -NCIT:C6372 Vaginal Rhabdomyoma 9 110778 -NCIT:C6600 Mediastinal Rhabdomyoma 8 110779 -NCIT:C7000 Central Nervous System Rhabdomyoma 8 110780 -NCIT:C4883 Malignant Muscle Neoplasm 5 110781 -NCIT:C6511 Malignant Smooth Muscle Neoplasm 6 110782 -NCIT:C3158 Leiomyosarcoma 7 110783 -NCIT:C121571 Leiomyosarcoma of Deep Soft Tissue 8 110784 -NCIT:C27904 Retroperitoneal Leiomyosarcoma 9 110785 -NCIT:C128047 Cervical Leiomyosarcoma 8 110786 -NCIT:C132147 Unresectable Leiomyosarcoma 8 110787 -NCIT:C168728 Unresectable Soft Tissue Leiomyosarcoma 9 110788 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 10 110789 -NCIT:C148294 Refractory Leiomyosarcoma 8 110790 -NCIT:C156347 Thyroid Gland Leiomyosarcoma 8 110791 -NCIT:C159670 Bladder Leiomyosarcoma 8 110792 -NCIT:C162306 EBV-Related Leiomyosarcoma 8 110793 -NCIT:C162495 Paratesticular Leiomyosarcoma 8 110794 -NCIT:C161641 Seminal Vesicle Leiomyosarcoma 9 110795 -NCIT:C162585 Penile Leiomyosarcoma 8 110796 -NCIT:C172951 Digestive System Leiomyosarcoma 8 110797 -NCIT:C188065 Pancreatic Leiomyosarcoma 9 110798 -NCIT:C27200 Gastric Leiomyosarcoma 9 110799 -NCIT:C5334 Esophageal Leiomyosarcoma 9 110800 -NCIT:C5599 Anal Leiomyosarcoma 9 110801 -NCIT:C5756 Liver Leiomyosarcoma 9 110802 -NCIT:C5841 Gallbladder Leiomyosarcoma 9 110803 -NCIT:C5848 Extrahepatic Bile Duct Leiomyosarcoma 9 110804 -NCIT:C7085 Small Intestinal Leiomyosarcoma 9 110805 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 10 110806 -NCIT:C96435 Appendix Leiomyosarcoma 9 110807 -NCIT:C96509 Colorectal Leiomyosarcoma 9 110808 -NCIT:C5494 Colon Leiomyosarcoma 10 110809 -NCIT:C5549 Rectal Leiomyosarcoma 10 110810 -NCIT:C173123 Sinonasal Leiomyosarcoma 8 110811 -NCIT:C175500 Conjunctival Leiomyosarcoma 8 110812 -NCIT:C175505 Resectable Leiomyosarcoma 8 110813 -NCIT:C178220 Pleomorphic Leiomyosarcoma 8 110814 -NCIT:C178222 Dedifferentiated Leiomyosarcoma 9 110815 -NCIT:C179926 Broad Ligament Leiomyosarcoma 8 110816 -NCIT:C188063 Pleural Leiomyosarcoma 8 110817 -NCIT:C188254 Adrenal Gland Leiomyosarcoma 8 110818 -NCIT:C27494 Granular Cell Leiomyosarcoma 8 110819 -NCIT:C27495 Inflammatory Leiomyosarcoma 8 110820 -NCIT:C3700 Epithelioid Leiomyosarcoma 8 110821 -NCIT:C40174 Uterine Corpus Epithelioid Leiomyosarcoma 9 110822 -NCIT:C3701 Myxoid Leiomyosarcoma 8 110823 -NCIT:C40175 Uterine Corpus Myxoid Leiomyosarcoma 9 110824 -NCIT:C40128 Fallopian Tube Leiomyosarcoma 8 110825 -NCIT:C40318 Vulvar Leiomyosarcoma 8 110826 -NCIT:C5186 Breast Leiomyosarcoma 8 110827 -NCIT:C5234 Ovarian Leiomyosarcoma 8 110828 -NCIT:C5364 Cardiac Leiomyosarcoma 8 110829 -NCIT:C5387 Leiomyosarcoma of Vessels 8 110830 -NCIT:C5372 Inferior Vena Cava Leiomyosarcoma 9 110831 -NCIT:C5373 Pulmonary Artery Leiomyosarcoma 9 110832 -NCIT:C5374 Pulmonary Vein Leiomyosarcoma 9 110833 -NCIT:C5388 Renal Vein Leiomyosarcoma 9 110834 -NCIT:C6745 Superior Vena Cava Leiomyosarcoma 9 110835 -NCIT:C5526 Prostate Leiomyosarcoma 8 110836 -NCIT:C5667 Lung Leiomyosarcoma 8 110837 -NCIT:C6022 Laryngeal Leiomyosarcoma 8 110838 -NCIT:C6183 Kidney Leiomyosarcoma 8 110839 -NCIT:C6326 Vaginal Leiomyosarcoma 8 110840 -NCIT:C6340 Uterine Corpus Leiomyosarcoma 8 110841 -NCIT:C139870 Uterine Corpus Leiomyosarcoma by AJCC v8 Stage 9 110842 -NCIT:C139871 Stage I Uterine Corpus Leiomyosarcoma AJCC v8 10 110843 -NCIT:C139872 Stage IA Uterine Corpus Leiomyosarcoma AJCC v8 11 110844 -NCIT:C139873 Stage IB Uterine Corpus Leiomyosarcoma AJCC v8 11 110845 -NCIT:C139874 Stage II Uterine Corpus Leiomyosarcoma AJCC v8 10 110846 -NCIT:C139875 Stage III Uterine Corpus Leiomyosarcoma AJCC v8 10 110847 -NCIT:C139876 Stage IIIA Uterine Corpus Leiomyosarcoma AJCC v8 11 110848 -NCIT:C139877 Stage IIIB Uterine Corpus Leiomyosarcoma AJCC v8 11 110849 -NCIT:C139878 Stage IIIC Uterine Corpus Leiomyosarcoma AJCC v8 11 110850 -NCIT:C139879 Stage IV Uterine Corpus Leiomyosarcoma AJCC v8 10 110851 -NCIT:C139880 Stage IVA Uterine Corpus Leiomyosarcoma AJCC v8 11 110852 -NCIT:C139881 Stage IVB Uterine Corpus Leiomyosarcoma AJCC v8 11 110853 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 9 110854 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 9 110855 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 10 110856 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 9 110857 -NCIT:C40174 Uterine Corpus Epithelioid Leiomyosarcoma 9 110858 -NCIT:C40175 Uterine Corpus Myxoid Leiomyosarcoma 9 110859 -NCIT:C6619 Mediastinal Leiomyosarcoma 8 110860 -NCIT:C6999 Central Nervous System Leiomyosarcoma 8 110861 -NCIT:C7154 Bone Leiomyosarcoma 8 110862 -NCIT:C7810 Adult Leiomyosarcoma 8 110863 -NCIT:C8093 Childhood Leiomyosarcoma 8 110864 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 9 110865 -NCIT:C8813 Metastatic Leiomyosarcoma 8 110866 -NCIT:C160917 Locally Advanced Leiomyosarcoma 9 110867 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 10 110868 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 11 110869 -NCIT:C165780 Advanced Leiomyosarcoma 9 110870 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 10 110871 -NCIT:C168725 Metastatic Soft Tissue Leiomyosarcoma 9 110872 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 10 110873 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 10 110874 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 11 110875 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 10 110876 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 11 110877 -NCIT:C8814 Localized Leiomyosarcoma 8 110878 -NCIT:C8815 Recurrent Leiomyosarcoma 8 110879 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 9 110880 -NCIT:C9389 Well Differentiated Leiomyosarcoma 8 110881 -NCIT:C9390 Leiomyosarcoma NCI Grade 3 8 110882 -NCIT:C9391 Leiomyosarcoma NCI Grade 2 8 110883 -NCIT:C9428 Conventional Leiomyosarcoma 8 110884 -NCIT:C6516 Malignant Skeletal Muscle Neoplasm 6 110885 -NCIT:C3359 Rhabdomyosarcoma 7 110886 -NCIT:C121654 Spindle Cell/Sclerosing Rhabdomyosarcoma 8 110887 -NCIT:C121655 Sclerosing Rhabdomyosarcoma 9 110888 -NCIT:C178235 MYOD1-Mutant Spindle Cell/Sclerosing Rhabdomyosarcoma 9 110889 -NCIT:C6519 Spindle Cell Rhabdomyosarcoma 9 110890 -NCIT:C123397 Childhood Spindle Cell Rhabdomyosarcoma 10 110891 -NCIT:C178232 Congenital/Infantile Spindle Cell Rhabdomyosarcoma with VGLL2/NCOA2/CITED2 Rearrangements 10 110892 -NCIT:C178236 Intraosseous Spindle Cell Rhabdomyosarcoma with TFCP2/NCOA2 Rearrangements 10 110893 -NCIT:C123735 Fusion-Positive Rhabdomyosarcoma 8 110894 -NCIT:C123731 Fusion-Positive Alveolar Rhabdomyosarcoma 9 110895 -NCIT:C123736 Fusion-Negative Rhabdomyosarcoma 8 110896 -NCIT:C123732 Fusion-Negative Alveolar Rhabdomyosarcoma 9 110897 -NCIT:C127058 Uterine Corpus Rhabdomyosarcoma 8 110898 -NCIT:C128048 Cervical Rhabdomyosarcoma 8 110899 -NCIT:C128080 Vaginal Rhabdomyosarcoma 8 110900 -NCIT:C40268 Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 9 110901 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 110902 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 110903 -NCIT:C142851 Refractory Rhabdomyosarcoma 8 110904 -NCIT:C142880 Refractory Alveolar Rhabdomyosarcoma 9 110905 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 9 110906 -NCIT:C151981 Pelvic Rhabdomyosarcoma 8 110907 -NCIT:C151982 Abdominal Rhabdomyosarcoma 8 110908 -NCIT:C151983 Unresectable Rhabdomyosarcoma 8 110909 -NCIT:C159206 Kidney Rhabdomyosarcoma 8 110910 -NCIT:C159667 Bladder Rhabdomyosarcoma 8 110911 -NCIT:C159668 Bladder Embryonal Rhabdomyosarcoma 9 110912 -NCIT:C159669 Bladder Alveolar Rhabdomyosarcoma 9 110913 -NCIT:C162497 Paratesticular Rhabdomyosarcoma 8 110914 -NCIT:C162588 Penile Rhabdomyosarcoma 8 110915 -NCIT:C166414 Metastatic Rhabdomyosarcoma 8 110916 -NCIT:C166415 Locally Advanced Rhabdomyosarcoma 9 110917 -NCIT:C183250 Metastatic Embryonal Rhabdomyosarcoma 9 110918 -NCIT:C172952 Digestive System Rhabdomyosarcoma 8 110919 -NCIT:C5610 Anal Rhabdomyosarcoma 9 110920 -NCIT:C5627 Rectal Rhabdomyosarcoma 9 110921 -NCIT:C5834 Liver Rhabdomyosarcoma 9 110922 -NCIT:C5839 Gallbladder Rhabdomyosarcoma 9 110923 -NCIT:C5860 Extrahepatic Bile Duct Rhabdomyosarcoma 9 110924 -NCIT:C5847 Extrahepatic Bile Duct Embryonal Rhabdomyosarcoma 10 110925 -NCIT:C95623 Esophageal Rhabdomyosarcoma 9 110926 -NCIT:C173124 Sinonasal Rhabdomyosarcoma 8 110927 -NCIT:C175501 Conjunctival Rhabdomyosarcoma 8 110928 -NCIT:C181201 Lung Rhabdomyosarcoma 8 110929 -NCIT:C181944 Vulvar Rhabdomyosarcoma 8 110930 -NCIT:C128273 Vulvar Alveolar Rhabdomyosarcoma 9 110931 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 9 110932 -NCIT:C188071 Retroperitoneal Rhabdomyosarcoma 8 110933 -NCIT:C3749 Alveolar Rhabdomyosarcoma 8 110934 -NCIT:C123731 Fusion-Positive Alveolar Rhabdomyosarcoma 9 110935 -NCIT:C123732 Fusion-Negative Alveolar Rhabdomyosarcoma 9 110936 -NCIT:C128273 Vulvar Alveolar Rhabdomyosarcoma 9 110937 -NCIT:C142880 Refractory Alveolar Rhabdomyosarcoma 9 110938 -NCIT:C142881 Recurrent Alveolar Rhabdomyosarcoma 9 110939 -NCIT:C159669 Bladder Alveolar Rhabdomyosarcoma 9 110940 -NCIT:C188070 Prostate Alveolar Rhabdomyosarcoma 9 110941 -NCIT:C27492 Conventional Alveolar Rhabdomyosarcoma 9 110942 -NCIT:C27493 Solid Alveolar Rhabdomyosarcoma 9 110943 -NCIT:C6247 Orbit Alveolar Rhabdomyosarcoma 9 110944 -NCIT:C7958 Childhood Alveolar Rhabdomyosarcoma 9 110945 -NCIT:C4258 Pleomorphic Rhabdomyosarcoma 8 110946 -NCIT:C27369 Adult Pleomorphic Rhabdomyosarcoma 9 110947 -NCIT:C7959 Childhood Pleomorphic Rhabdomyosarcoma 9 110948 -NCIT:C4259 Rhabdomyosarcoma with Mixed Embryonal and Alveolar Features 8 110949 -NCIT:C7960 Childhood Rhabdomyosarcoma with Mixed Embryonal and Alveolar Features 9 110950 -NCIT:C4543 Orbit Rhabdomyosarcoma 8 110951 -NCIT:C6246 Orbit Embryonal Rhabdomyosarcoma 9 110952 -NCIT:C6247 Orbit Alveolar Rhabdomyosarcoma 9 110953 -NCIT:C45759 Cardiac Rhabdomyosarcoma 8 110954 -NCIT:C5190 Breast Rhabdomyosarcoma 8 110955 -NCIT:C5236 Ovarian Rhabdomyosarcoma 8 110956 -NCIT:C5464 Central Nervous System Rhabdomyosarcoma 8 110957 -NCIT:C5522 Prostate Rhabdomyosarcoma 8 110958 -NCIT:C188070 Prostate Alveolar Rhabdomyosarcoma 9 110959 -NCIT:C5525 Prostate Embryonal Rhabdomyosarcoma 9 110960 -NCIT:C6378 Testicular Rhabdomyosarcoma 8 110961 -NCIT:C6617 Mediastinal Rhabdomyosarcoma 8 110962 -NCIT:C7705 Childhood Rhabdomyosarcoma 8 110963 -NCIT:C123397 Childhood Spindle Cell Rhabdomyosarcoma 9 110964 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 9 110965 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 9 110966 -NCIT:C7957 Childhood Embryonal Rhabdomyosarcoma 9 110967 -NCIT:C35574 Childhood Botryoid-Type Embryonal Rhabdomyosarcoma 10 110968 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 11 110969 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 11 110970 -NCIT:C7958 Childhood Alveolar Rhabdomyosarcoma 9 110971 -NCIT:C7959 Childhood Pleomorphic Rhabdomyosarcoma 9 110972 -NCIT:C7960 Childhood Rhabdomyosarcoma with Mixed Embryonal and Alveolar Features 9 110973 -NCIT:C8065 Localized Childhood Rhabdomyosarcoma 9 110974 -NCIT:C8824 Recurrent Rhabdomyosarcoma 8 110975 -NCIT:C142881 Recurrent Alveolar Rhabdomyosarcoma 9 110976 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 9 110977 -NCIT:C8971 Embryonal Rhabdomyosarcoma 8 110978 -NCIT:C159668 Bladder Embryonal Rhabdomyosarcoma 9 110979 -NCIT:C183250 Metastatic Embryonal Rhabdomyosarcoma 9 110980 -NCIT:C188115 Middle Ear Embryonal Rhabdomyosarcoma 9 110981 -NCIT:C49204 Anaplastic Embryonal Rhabdomyosarcoma 9 110982 -NCIT:C5525 Prostate Embryonal Rhabdomyosarcoma 9 110983 -NCIT:C5847 Extrahepatic Bile Duct Embryonal Rhabdomyosarcoma 9 110984 -NCIT:C6246 Orbit Embryonal Rhabdomyosarcoma 9 110985 -NCIT:C7957 Childhood Embryonal Rhabdomyosarcoma 9 110986 -NCIT:C35574 Childhood Botryoid-Type Embryonal Rhabdomyosarcoma 10 110987 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 11 110988 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 11 110989 -NCIT:C9150 Botryoid-Type Embryonal Rhabdomyosarcoma 9 110990 -NCIT:C35574 Childhood Botryoid-Type Embryonal Rhabdomyosarcoma 10 110991 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 11 110992 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 11 110993 -NCIT:C36099 Adult Botryoid-Type Embryonal Rhabdomyosarcoma 10 110994 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 11 110995 -NCIT:C40268 Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 110996 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 11 110997 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 11 110998 -NCIT:C9130 Adult Rhabdomyosarcoma 8 110999 -NCIT:C27369 Adult Pleomorphic Rhabdomyosarcoma 9 111000 -NCIT:C36099 Adult Botryoid-Type Embryonal Rhabdomyosarcoma 9 111001 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 111002 -NCIT:C6514 Skeletal Muscle Neoplasm 5 111003 -NCIT:C6515 Benign Skeletal Muscle Neoplasm 6 111004 -NCIT:C49166 Extracardiac Rhabdomyoma 7 111005 -NCIT:C162496 Paratesticular Rhabdomyoma 8 111006 -NCIT:C4260 Fetal Rhabdomyoma 8 111007 -NCIT:C27480 Classic Rhabdomyoma 9 111008 -NCIT:C6518 Intermediate Rhabdomyoma 9 111009 -NCIT:C4261 Adult Extracardiac Rhabdomyoma 8 111010 -NCIT:C6517 Genital Rhabdomyoma 8 111011 -NCIT:C181942 Vulvar Rhabdomyoma 9 111012 -NCIT:C40266 Cervical Rhabdomyoma 9 111013 -NCIT:C6372 Vaginal Rhabdomyoma 9 111014 -NCIT:C6600 Mediastinal Rhabdomyoma 8 111015 -NCIT:C7000 Central Nervous System Rhabdomyoma 8 111016 -NCIT:C6516 Malignant Skeletal Muscle Neoplasm 6 111017 -NCIT:C3359 Rhabdomyosarcoma 7 111018 -NCIT:C121654 Spindle Cell/Sclerosing Rhabdomyosarcoma 8 111019 -NCIT:C121655 Sclerosing Rhabdomyosarcoma 9 111020 -NCIT:C178235 MYOD1-Mutant Spindle Cell/Sclerosing Rhabdomyosarcoma 9 111021 -NCIT:C6519 Spindle Cell Rhabdomyosarcoma 9 111022 -NCIT:C123397 Childhood Spindle Cell Rhabdomyosarcoma 10 111023 -NCIT:C178232 Congenital/Infantile Spindle Cell Rhabdomyosarcoma with VGLL2/NCOA2/CITED2 Rearrangements 10 111024 -NCIT:C178236 Intraosseous Spindle Cell Rhabdomyosarcoma with TFCP2/NCOA2 Rearrangements 10 111025 -NCIT:C123735 Fusion-Positive Rhabdomyosarcoma 8 111026 -NCIT:C123731 Fusion-Positive Alveolar Rhabdomyosarcoma 9 111027 -NCIT:C123736 Fusion-Negative Rhabdomyosarcoma 8 111028 -NCIT:C123732 Fusion-Negative Alveolar Rhabdomyosarcoma 9 111029 -NCIT:C127058 Uterine Corpus Rhabdomyosarcoma 8 111030 -NCIT:C128048 Cervical Rhabdomyosarcoma 8 111031 -NCIT:C128080 Vaginal Rhabdomyosarcoma 8 111032 -NCIT:C40268 Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 9 111033 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 111034 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 111035 -NCIT:C142851 Refractory Rhabdomyosarcoma 8 111036 -NCIT:C142880 Refractory Alveolar Rhabdomyosarcoma 9 111037 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 9 111038 -NCIT:C151981 Pelvic Rhabdomyosarcoma 8 111039 -NCIT:C151982 Abdominal Rhabdomyosarcoma 8 111040 -NCIT:C151983 Unresectable Rhabdomyosarcoma 8 111041 -NCIT:C159206 Kidney Rhabdomyosarcoma 8 111042 -NCIT:C159667 Bladder Rhabdomyosarcoma 8 111043 -NCIT:C159668 Bladder Embryonal Rhabdomyosarcoma 9 111044 -NCIT:C159669 Bladder Alveolar Rhabdomyosarcoma 9 111045 -NCIT:C162497 Paratesticular Rhabdomyosarcoma 8 111046 -NCIT:C162588 Penile Rhabdomyosarcoma 8 111047 -NCIT:C166414 Metastatic Rhabdomyosarcoma 8 111048 -NCIT:C166415 Locally Advanced Rhabdomyosarcoma 9 111049 -NCIT:C183250 Metastatic Embryonal Rhabdomyosarcoma 9 111050 -NCIT:C172952 Digestive System Rhabdomyosarcoma 8 111051 -NCIT:C5610 Anal Rhabdomyosarcoma 9 111052 -NCIT:C5627 Rectal Rhabdomyosarcoma 9 111053 -NCIT:C5834 Liver Rhabdomyosarcoma 9 111054 -NCIT:C5839 Gallbladder Rhabdomyosarcoma 9 111055 -NCIT:C5860 Extrahepatic Bile Duct Rhabdomyosarcoma 9 111056 -NCIT:C5847 Extrahepatic Bile Duct Embryonal Rhabdomyosarcoma 10 111057 -NCIT:C95623 Esophageal Rhabdomyosarcoma 9 111058 -NCIT:C173124 Sinonasal Rhabdomyosarcoma 8 111059 -NCIT:C175501 Conjunctival Rhabdomyosarcoma 8 111060 -NCIT:C181201 Lung Rhabdomyosarcoma 8 111061 -NCIT:C181944 Vulvar Rhabdomyosarcoma 8 111062 -NCIT:C128273 Vulvar Alveolar Rhabdomyosarcoma 9 111063 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 9 111064 -NCIT:C188071 Retroperitoneal Rhabdomyosarcoma 8 111065 -NCIT:C3749 Alveolar Rhabdomyosarcoma 8 111066 -NCIT:C123731 Fusion-Positive Alveolar Rhabdomyosarcoma 9 111067 -NCIT:C123732 Fusion-Negative Alveolar Rhabdomyosarcoma 9 111068 -NCIT:C128273 Vulvar Alveolar Rhabdomyosarcoma 9 111069 -NCIT:C142880 Refractory Alveolar Rhabdomyosarcoma 9 111070 -NCIT:C142881 Recurrent Alveolar Rhabdomyosarcoma 9 111071 -NCIT:C159669 Bladder Alveolar Rhabdomyosarcoma 9 111072 -NCIT:C188070 Prostate Alveolar Rhabdomyosarcoma 9 111073 -NCIT:C27492 Conventional Alveolar Rhabdomyosarcoma 9 111074 -NCIT:C27493 Solid Alveolar Rhabdomyosarcoma 9 111075 -NCIT:C6247 Orbit Alveolar Rhabdomyosarcoma 9 111076 -NCIT:C7958 Childhood Alveolar Rhabdomyosarcoma 9 111077 -NCIT:C4258 Pleomorphic Rhabdomyosarcoma 8 111078 -NCIT:C27369 Adult Pleomorphic Rhabdomyosarcoma 9 111079 -NCIT:C7959 Childhood Pleomorphic Rhabdomyosarcoma 9 111080 -NCIT:C4259 Rhabdomyosarcoma with Mixed Embryonal and Alveolar Features 8 111081 -NCIT:C7960 Childhood Rhabdomyosarcoma with Mixed Embryonal and Alveolar Features 9 111082 -NCIT:C4543 Orbit Rhabdomyosarcoma 8 111083 -NCIT:C6246 Orbit Embryonal Rhabdomyosarcoma 9 111084 -NCIT:C6247 Orbit Alveolar Rhabdomyosarcoma 9 111085 -NCIT:C45759 Cardiac Rhabdomyosarcoma 8 111086 -NCIT:C5190 Breast Rhabdomyosarcoma 8 111087 -NCIT:C5236 Ovarian Rhabdomyosarcoma 8 111088 -NCIT:C5464 Central Nervous System Rhabdomyosarcoma 8 111089 -NCIT:C5522 Prostate Rhabdomyosarcoma 8 111090 -NCIT:C188070 Prostate Alveolar Rhabdomyosarcoma 9 111091 -NCIT:C5525 Prostate Embryonal Rhabdomyosarcoma 9 111092 -NCIT:C6378 Testicular Rhabdomyosarcoma 8 111093 -NCIT:C6617 Mediastinal Rhabdomyosarcoma 8 111094 -NCIT:C7705 Childhood Rhabdomyosarcoma 8 111095 -NCIT:C123397 Childhood Spindle Cell Rhabdomyosarcoma 9 111096 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 9 111097 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 9 111098 -NCIT:C7957 Childhood Embryonal Rhabdomyosarcoma 9 111099 -NCIT:C35574 Childhood Botryoid-Type Embryonal Rhabdomyosarcoma 10 111100 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 11 111101 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 11 111102 -NCIT:C7958 Childhood Alveolar Rhabdomyosarcoma 9 111103 -NCIT:C7959 Childhood Pleomorphic Rhabdomyosarcoma 9 111104 -NCIT:C7960 Childhood Rhabdomyosarcoma with Mixed Embryonal and Alveolar Features 9 111105 -NCIT:C8065 Localized Childhood Rhabdomyosarcoma 9 111106 -NCIT:C8824 Recurrent Rhabdomyosarcoma 8 111107 -NCIT:C142881 Recurrent Alveolar Rhabdomyosarcoma 9 111108 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 9 111109 -NCIT:C8971 Embryonal Rhabdomyosarcoma 8 111110 -NCIT:C159668 Bladder Embryonal Rhabdomyosarcoma 9 111111 -NCIT:C183250 Metastatic Embryonal Rhabdomyosarcoma 9 111112 -NCIT:C188115 Middle Ear Embryonal Rhabdomyosarcoma 9 111113 -NCIT:C49204 Anaplastic Embryonal Rhabdomyosarcoma 9 111114 -NCIT:C5525 Prostate Embryonal Rhabdomyosarcoma 9 111115 -NCIT:C5847 Extrahepatic Bile Duct Embryonal Rhabdomyosarcoma 9 111116 -NCIT:C6246 Orbit Embryonal Rhabdomyosarcoma 9 111117 -NCIT:C7957 Childhood Embryonal Rhabdomyosarcoma 9 111118 -NCIT:C35574 Childhood Botryoid-Type Embryonal Rhabdomyosarcoma 10 111119 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 11 111120 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 11 111121 -NCIT:C9150 Botryoid-Type Embryonal Rhabdomyosarcoma 9 111122 -NCIT:C35574 Childhood Botryoid-Type Embryonal Rhabdomyosarcoma 10 111123 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 11 111124 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 11 111125 -NCIT:C36099 Adult Botryoid-Type Embryonal Rhabdomyosarcoma 10 111126 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 11 111127 -NCIT:C40268 Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 111128 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 11 111129 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 11 111130 -NCIT:C9130 Adult Rhabdomyosarcoma 8 111131 -NCIT:C27369 Adult Pleomorphic Rhabdomyosarcoma 9 111132 -NCIT:C36099 Adult Botryoid-Type Embryonal Rhabdomyosarcoma 9 111133 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 111134 -NCIT:C4248 Lipomatous Neoplasm 4 111135 -NCIT:C3194 Liposarcoma 5 111136 -NCIT:C132148 Unresectable Liposarcoma 6 111137 -NCIT:C150598 Unresectable Dedifferentiated Liposarcoma 7 111138 -NCIT:C168719 Unresectable Myxoid Liposarcoma 7 111139 -NCIT:C182028 Unresectable Pleomorphic Liposarcoma 7 111140 -NCIT:C150594 Refractory Liposarcoma 6 111141 -NCIT:C148297 Refractory Myxoid Liposarcoma 7 111142 -NCIT:C150593 Refractory Dedifferentiated Liposarcoma 7 111143 -NCIT:C150606 Resectable Liposarcoma 6 111144 -NCIT:C150607 Resectable Dedifferentiated Liposarcoma 7 111145 -NCIT:C156279 Colon Liposarcoma 6 111146 -NCIT:C156281 Parotid Gland Liposarcoma 6 111147 -NCIT:C156282 Scrotal Liposarcoma 6 111148 -NCIT:C162493 Paratesticular Liposarcoma 6 111149 -NCIT:C173404 Tongue Liposarcoma 6 111150 -NCIT:C176989 Myxoid Pleomorphic Liposarcoma 6 111151 -NCIT:C27781 Myxoid Liposarcoma 6 111152 -NCIT:C148297 Refractory Myxoid Liposarcoma 7 111153 -NCIT:C148298 Metastatic Myxoid Liposarcoma 7 111154 -NCIT:C162763 Advanced Myxoid Liposarcoma 8 111155 -NCIT:C150579 Recurrent Myxoid Liposarcoma 7 111156 -NCIT:C168719 Unresectable Myxoid Liposarcoma 7 111157 -NCIT:C5235 Ovarian Myxoid Liposarcoma 7 111158 -NCIT:C3704 Dedifferentiated Liposarcoma 6 111159 -NCIT:C150592 Recurrent Dedifferentiated Liposarcoma 7 111160 -NCIT:C150593 Refractory Dedifferentiated Liposarcoma 7 111161 -NCIT:C150598 Unresectable Dedifferentiated Liposarcoma 7 111162 -NCIT:C150607 Resectable Dedifferentiated Liposarcoma 7 111163 -NCIT:C164070 Metastatic Dedifferentiated Liposarcoma 7 111164 -NCIT:C164071 Locally Advanced Dedifferentiated Liposarcoma 8 111165 -NCIT:C168715 Advanced Dedifferentiated Liposarcoma 8 111166 -NCIT:C3705 Pleomorphic Liposarcoma 6 111167 -NCIT:C170473 Skin Pleomorphic Liposarcoma 7 111168 -NCIT:C182025 Metastatic Pleomorphic Liposarcoma 7 111169 -NCIT:C182026 Advanced Pleomorphic Liposarcoma 8 111170 -NCIT:C182028 Unresectable Pleomorphic Liposarcoma 7 111171 -NCIT:C40321 Vulvar Liposarcoma 6 111172 -NCIT:C4253 Mixed Liposarcoma 6 111173 -NCIT:C5187 Breast Liposarcoma 6 111174 -NCIT:C5488 Gastric Liposarcoma 6 111175 -NCIT:C5615 Skin Liposarcoma 6 111176 -NCIT:C170473 Skin Pleomorphic Liposarcoma 7 111177 -NCIT:C5705 Esophageal Liposarcoma 6 111178 -NCIT:C6021 Laryngeal Liposarcoma 6 111179 -NCIT:C6185 Kidney Liposarcoma 6 111180 -NCIT:C6419 Ovarian Liposarcoma 6 111181 -NCIT:C5235 Ovarian Myxoid Liposarcoma 7 111182 -NCIT:C6614 Mediastinal Liposarcoma 6 111183 -NCIT:C95038 Thymoliposarcoma 7 111184 -NCIT:C6973 Brain Liposarcoma 6 111185 -NCIT:C7598 Bone Liposarcoma 6 111186 -NCIT:C7811 Adult Liposarcoma 6 111187 -NCIT:C8091 Childhood Liposarcoma 6 111188 -NCIT:C8816 Metastatic Liposarcoma 6 111189 -NCIT:C148298 Metastatic Myxoid Liposarcoma 7 111190 -NCIT:C162763 Advanced Myxoid Liposarcoma 8 111191 -NCIT:C160916 Locally Advanced Liposarcoma 7 111192 -NCIT:C164071 Locally Advanced Dedifferentiated Liposarcoma 8 111193 -NCIT:C164070 Metastatic Dedifferentiated Liposarcoma 7 111194 -NCIT:C164071 Locally Advanced Dedifferentiated Liposarcoma 8 111195 -NCIT:C168715 Advanced Dedifferentiated Liposarcoma 8 111196 -NCIT:C168701 Advanced Liposarcoma 7 111197 -NCIT:C162763 Advanced Myxoid Liposarcoma 8 111198 -NCIT:C168715 Advanced Dedifferentiated Liposarcoma 8 111199 -NCIT:C182026 Advanced Pleomorphic Liposarcoma 8 111200 -NCIT:C182025 Metastatic Pleomorphic Liposarcoma 7 111201 -NCIT:C182026 Advanced Pleomorphic Liposarcoma 8 111202 -NCIT:C8817 Localized Liposarcoma 6 111203 -NCIT:C8818 Recurrent Liposarcoma 6 111204 -NCIT:C150579 Recurrent Myxoid Liposarcoma 7 111205 -NCIT:C150592 Recurrent Dedifferentiated Liposarcoma 7 111206 -NCIT:C4502 Benign Lipomatous Neoplasm 5 111207 -NCIT:C181925 Vulvar Lipoblastoma-Like Tumor 6 111208 -NCIT:C27483 Lipoblastoma 6 111209 -NCIT:C27489 Atypical Spindle Cell/Pleomorphic Lipomatous Tumor 6 111210 -NCIT:C3192 Lipoma 6 111211 -NCIT:C128270 Vulvar Lipoma 7 111212 -NCIT:C128271 Vulvar Fibrolipoma 8 111213 -NCIT:C172945 Digestive System Lipoma 7 111214 -NCIT:C43576 Appendix Lipoma 8 111215 -NCIT:C5258 Gastric Lipoma 8 111216 -NCIT:C5339 Small Intestinal Lipoma 8 111217 -NCIT:C5678 Colorectal Lipoma 8 111218 -NCIT:C5493 Colon Lipoma 9 111219 -NCIT:C5551 Rectal Lipoma 9 111220 -NCIT:C5701 Esophageal Lipoma 8 111221 -NCIT:C5750 Liver Lipoma 8 111222 -NCIT:C5835 Gallbladder Lipoma 8 111223 -NCIT:C5854 Extrahepatic Bile Duct Lipoma 8 111224 -NCIT:C173681 Salivary Gland Lipoma 7 111225 -NCIT:C5982 Parotid Gland Lipoma 8 111226 -NCIT:C188250 Adrenal Gland Lipoma 7 111227 -NCIT:C27475 Bone Lipoma 7 111228 -NCIT:C178604 Bone Hibernoma 8 111229 -NCIT:C27530 Conventional Lipoma 7 111230 -NCIT:C35419 Axillary Lipoma 7 111231 -NCIT:C3702 Hibernoma 7 111232 -NCIT:C178604 Bone Hibernoma 8 111233 -NCIT:C6997 Central Nervous System Hibernoma 8 111234 -NCIT:C3733 Angiolipoma 7 111235 -NCIT:C129538 Central Nervous System Angiolipoma 8 111236 -NCIT:C5424 Epidural Spinal Canal Angiolipoma 9 111237 -NCIT:C170478 Skin Angiolipoma 8 111238 -NCIT:C176255 Breast Angiolipoma 8 111239 -NCIT:C7449 Infiltrating Angiolipoma 8 111240 -NCIT:C4249 Fibrolipoma 7 111241 -NCIT:C128271 Vulvar Fibrolipoma 8 111242 -NCIT:C4251 Fibromyxolipoma 7 111243 -NCIT:C4616 Skin Lipoma 7 111244 -NCIT:C170474 Skin Spindle Cell/Pleomorphic Lipoma 8 111245 -NCIT:C170475 Skin Spindle Cell Lipoma 9 111246 -NCIT:C170476 Skin Pleomorphic Lipoma 9 111247 -NCIT:C170478 Skin Angiolipoma 8 111248 -NCIT:C4618 External Ear Lipoma 7 111249 -NCIT:C4647 Breast Lipoma 7 111250 -NCIT:C176255 Breast Angiolipoma 8 111251 -NCIT:C5063 Endobronchial Lipoma 7 111252 -NCIT:C5101 Kidney Lipoma 7 111253 -NCIT:C5451 Central Nervous System Lipoma 7 111254 -NCIT:C129538 Central Nervous System Angiolipoma 8 111255 -NCIT:C5424 Epidural Spinal Canal Angiolipoma 9 111256 -NCIT:C4619 Spinal Cord Lipoma 8 111257 -NCIT:C5444 Intracranial Lipoma 8 111258 -NCIT:C5452 Inner Ear Lipoma 9 111259 -NCIT:C6220 Cerebral Hemisphere Lipoma 9 111260 -NCIT:C5438 Corpus Callosum Lipoma 10 111261 -NCIT:C6997 Central Nervous System Hibernoma 8 111262 -NCIT:C5910 Oral Cavity Lipoma 7 111263 -NCIT:C7734 Tongue Lipoma 8 111264 -NCIT:C5989 Tonsillar Lipoma 7 111265 -NCIT:C6384 Paratesticular Lipoma 7 111266 -NCIT:C3606 Spermatic Cord Lipoma 8 111267 -NCIT:C6498 Deep Lipoma 7 111268 -NCIT:C6499 Tendon Sheath Lipoma 8 111269 -NCIT:C6500 Lumbosacral Lipoma 8 111270 -NCIT:C7450 Intramuscular Lipoma 8 111271 -NCIT:C121131 Infiltrating Intramuscular Lipoma 9 111272 -NCIT:C7451 Infiltrating Lipoma 8 111273 -NCIT:C121131 Infiltrating Intramuscular Lipoma 9 111274 -NCIT:C6503 Chondroid Lipoma 7 111275 -NCIT:C6599 Mediastinal Lipoma 7 111276 -NCIT:C6644 Pleural Lipoma 7 111277 -NCIT:C6719 Chest Wall Lipoma 7 111278 -NCIT:C6741 Cardiac Lipoma 7 111279 -NCIT:C6742 Epicardial Lipoma 8 111280 -NCIT:C7180 Spindle Cell/Pleomorphic Lipoma 7 111281 -NCIT:C170474 Skin Spindle Cell/Pleomorphic Lipoma 8 111282 -NCIT:C170475 Skin Spindle Cell Lipoma 9 111283 -NCIT:C170476 Skin Pleomorphic Lipoma 9 111284 -NCIT:C3703 Pleomorphic Lipoma 8 111285 -NCIT:C170476 Skin Pleomorphic Lipoma 9 111286 -NCIT:C4254 Spindle Cell Lipoma 8 111287 -NCIT:C170475 Skin Spindle Cell Lipoma 9 111288 -NCIT:C9502 Myolipoma 7 111289 -NCIT:C5657 Lung Myolipoma 8 111290 -NCIT:C3193 Lipomatosis 6 111291 -NCIT:C27486 Pelvic Lipomatosis 7 111292 -NCIT:C27487 Steroid Lipomatosis 7 111293 -NCIT:C27488 Mediastinal Lipomatosis 7 111294 -NCIT:C4392 Cervical Symmetrical Lipomatosis 7 111295 -NCIT:C4701 Encephalocraniocutaneous Lipomatosis 7 111296 -NCIT:C48899 HIV Lipodystrophy 7 111297 -NCIT:C5431 Lipomatosis of Nerve 7 111298 -NCIT:C6504 Diffuse Lipomatosis 7 111299 -NCIT:C4255 Lipoblastomatosis 6 111300 -NCIT:C5566 Skin Lipomatous Neoplasm 5 111301 -NCIT:C170472 Skin Atypical Lipomatous Tumor/Well Differentiated Liposarcoma 6 111302 -NCIT:C4616 Skin Lipoma 6 111303 -NCIT:C170474 Skin Spindle Cell/Pleomorphic Lipoma 7 111304 -NCIT:C170475 Skin Spindle Cell Lipoma 8 111305 -NCIT:C170476 Skin Pleomorphic Lipoma 8 111306 -NCIT:C170478 Skin Angiolipoma 7 111307 -NCIT:C5615 Skin Liposarcoma 6 111308 -NCIT:C170473 Skin Pleomorphic Liposarcoma 7 111309 -NCIT:C7630 Intermediate Lipomatous Neoplasm 5 111310 -NCIT:C6505 Atypical Lipomatous Tumor/Well Differentiated Liposarcoma 6 111311 -NCIT:C170472 Skin Atypical Lipomatous Tumor/Well Differentiated Liposarcoma 7 111312 -NCIT:C176979 Lipoma-Like Atypical Lipomatous Tumor/Well Differentiated Liposarcoma 7 111313 -NCIT:C176980 Superficial Atypical Lipomatous Tumor/Well Differentiated Liposarcoma 7 111314 -NCIT:C176981 Atypical Lipomatous Tumor/Well Differentiated Liposarcoma of Deep Soft Tissue 7 111315 -NCIT:C6507 Sclerosing Atypical Lipomatous Tumor/Well Differentiated Liposarcoma 7 111316 -NCIT:C6508 Inflammatory Atypical Lipomatous Tumor/Well Differentiated Liposarcoma 7 111317 -NCIT:C4755 Chondrogenic Neoplasm 4 111318 -NCIT:C121846 Intermediate Chondrogenic Neoplasm 5 111319 -NCIT:C66799 Metastasizing Chondroblastoma 6 111320 -NCIT:C2946 Chondrosarcoma 5 111321 -NCIT:C121870 Chondrosarcoma, Grade 2 6 111322 -NCIT:C178491 Central Chondrosarcoma, Grade 2 7 111323 -NCIT:C178492 Secondary Peripheral Chondrosarcoma, Grade 2 7 111324 -NCIT:C121871 Chondrosarcoma, Grade 3 6 111325 -NCIT:C178493 Central Chondrosarcoma, Grade 3 7 111326 -NCIT:C178494 Secondary Peripheral Chondrosarcoma, Grade 3 7 111327 -NCIT:C173407 Laryngeal Chondrosarcoma 6 111328 -NCIT:C173842 Maxillofacial Chondrosarcoma 6 111329 -NCIT:C173843 Maxillofacial Mesenchymal Chondrosarcoma 7 111330 -NCIT:C176467 Synovial Chondrosarcoma 6 111331 -NCIT:C189027 Childhood Chondrosarcoma 6 111332 -NCIT:C189026 Childhood Primary Central Chondrosarcoma 7 111333 -NCIT:C27374 Childhood Mesenchymal Chondrosarcoma 7 111334 -NCIT:C27482 Secondary Chondrosarcoma 6 111335 -NCIT:C121881 Secondary Central Chondrosarcoma 7 111336 -NCIT:C178477 Secondary Central Atypical Cartilaginous Tumor/Chondrosarcoma, Grade 1 8 111337 -NCIT:C121882 Secondary Peripheral Chondrosarcoma 7 111338 -NCIT:C178481 Secondary Peripheral Chondrosarcoma, Grade 1 8 111339 -NCIT:C178492 Secondary Peripheral Chondrosarcoma, Grade 2 8 111340 -NCIT:C178494 Secondary Peripheral Chondrosarcoma, Grade 3 8 111341 -NCIT:C3737 Mesenchymal Chondrosarcoma 6 111342 -NCIT:C129534 Central Nervous System Mesenchymal Chondrosarcoma 7 111343 -NCIT:C27374 Childhood Mesenchymal Chondrosarcoma 7 111344 -NCIT:C27375 Adult Mesenchymal Chondrosarcoma 7 111345 -NCIT:C53493 Mesenchymal Chondrosarcoma of Bone 7 111346 -NCIT:C173843 Maxillofacial Mesenchymal Chondrosarcoma 8 111347 -NCIT:C6475 Clear Cell Chondrosarcoma 6 111348 -NCIT:C6476 Dedifferentiated Chondrosarcoma 6 111349 -NCIT:C7155 Primary Central Chondrosarcoma 6 111350 -NCIT:C171070 Unresectable Primary Central Chondrosarcoma 7 111351 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 8 111352 -NCIT:C171072 Metastatic Primary Central Chondrosarcoma 7 111353 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 8 111354 -NCIT:C178476 Primary Central Atypical Cartilaginous Tumor/Chondrosarcoma, Grade 1 7 111355 -NCIT:C189026 Childhood Primary Central Chondrosarcoma 7 111356 -NCIT:C7357 Periosteal Chondrosarcoma 6 111357 -NCIT:C8778 Localized Chondrosarcoma 6 111358 -NCIT:C8779 Metastatic Chondrosarcoma 6 111359 -NCIT:C170953 Locally Advanced Chondrosarcoma 7 111360 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 8 111361 -NCIT:C171072 Metastatic Primary Central Chondrosarcoma 7 111362 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 8 111363 -NCIT:C8780 Recurrent Chondrosarcoma 6 111364 -NCIT:C9027 Atypical Cartilaginous Tumor/Chondrosarcoma, Grade 1 6 111365 -NCIT:C178473 Central Atypical Cartilaginous Tumor/Chondrosarcoma, Grade 1 7 111366 -NCIT:C178476 Primary Central Atypical Cartilaginous Tumor/Chondrosarcoma, Grade 1 8 111367 -NCIT:C178477 Secondary Central Atypical Cartilaginous Tumor/Chondrosarcoma, Grade 1 8 111368 -NCIT:C178478 Central Atypical Cartilaginous Tumor 8 111369 -NCIT:C178479 Central Chondrosarcoma, Grade 1 8 111370 -NCIT:C178480 Secondary Peripheral Atypical Cartilaginous Tumor/Chondrosarcoma, Grade 1 7 111371 -NCIT:C178481 Secondary Peripheral Chondrosarcoma, Grade 1 8 111372 -NCIT:C178482 Secondary Peripheral Atypical Cartilaginous Tumor 8 111373 -NCIT:C178483 Atypical Cartilaginous Tumor 7 111374 -NCIT:C178478 Central Atypical Cartilaginous Tumor 8 111375 -NCIT:C178482 Secondary Peripheral Atypical Cartilaginous Tumor 8 111376 -NCIT:C178484 Chondrosarcoma, Grade 1 7 111377 -NCIT:C178479 Central Chondrosarcoma, Grade 1 8 111378 -NCIT:C178481 Secondary Peripheral Chondrosarcoma, Grade 1 8 111379 -NCIT:C8592 Benign Chondrogenic Neoplasm 5 111380 -NCIT:C121842 Osteochondromyxoma 6 111381 -NCIT:C121844 Subungual Exostosis 6 111382 -NCIT:C189019 Childhood Subungual Exostosis 7 111383 -NCIT:C121845 Bizarre Parosteal Osteochondromatous Proliferation 6 111384 -NCIT:C2945 Chondroblastoma 6 111385 -NCIT:C173895 Maxillofacial Chondroblastoma 7 111386 -NCIT:C189023 Childhood Chondroblastoma 7 111387 -NCIT:C3295 Osteochondroma 6 111388 -NCIT:C189024 Childhood Osteochondroma 7 111389 -NCIT:C53455 Solitary Osteochondroma 7 111390 -NCIT:C53457 Multiple Osteochondromas 7 111391 -NCIT:C35259 Chondromatosis 6 111392 -NCIT:C3008 Enchondromatosis 7 111393 -NCIT:C34467 Synovial Chondromatosis 7 111394 -NCIT:C3830 Chondromyxoid Fibroma 6 111395 -NCIT:C173897 Maxillofacial Chondromyxoid Fibroma 7 111396 -NCIT:C189025 Childhood Chondromyxoid Fibroma 7 111397 -NCIT:C6714 Sternal Chondromyxoid Fibroma 7 111398 -NCIT:C53459 Chondroma 6 111399 -NCIT:C173406 Laryngeal Chondroma 7 111400 -NCIT:C173893 Maxillofacial Chondroma 7 111401 -NCIT:C3007 Enchondroma 7 111402 -NCIT:C4302 Periosteal Chondroma 7 111403 -NCIT:C9482 Soft Tissue Chondroma 7 111404 -NCIT:C45629 Lung Chondroma 8 111405 -NCIT:C6596 Mediastinal Chondroma 8 111406 -NCIT:C7001 Central Nervous System Chondroma 8 111407 -NCIT:C6528 Pericytic Neoplasm 4 111408 -NCIT:C3060 Glomus Tumor 5 111409 -NCIT:C162582 Penile Glomus Tumor 6 111410 -NCIT:C27497 Glomus Tumor of Uncertain Malignant Potential 6 111411 -NCIT:C4221 Malignant Glomus Tumor 6 111412 -NCIT:C175661 Unresectable Malignant Glomus Tumor 7 111413 -NCIT:C175662 Metastatic Malignant Glomus Tumor 7 111414 -NCIT:C175663 Locally Advanced Malignant Glomus Tumor 8 111415 -NCIT:C175664 Refractory Malignant Glomus Tumor 7 111416 -NCIT:C4222 Glomangioma 6 111417 -NCIT:C5350 Hereditary Glomangioma 7 111418 -NCIT:C6750 Skin Glomangioma 7 111419 -NCIT:C5345 Telangiectatic Glomangioma 8 111420 -NCIT:C4223 Glomangiomyoma 6 111421 -NCIT:C4491 Skin Glomus Tumor 6 111422 -NCIT:C36079 Subungual Glomus Tumor 7 111423 -NCIT:C6750 Skin Glomangioma 7 111424 -NCIT:C5345 Telangiectatic Glomangioma 8 111425 -NCIT:C51133 Solid Glomus Tumor 6 111426 -NCIT:C6480 Bone Glomus Tumor 6 111427 -NCIT:C6748 Benign Glomus Tumor 6 111428 -NCIT:C27496 Glomangiomatosis 7 111429 -NCIT:C95900 Gastric Glomus Tumor 6 111430 -NCIT:C50401 Myopericytoma 5 111431 -NCIT:C6529 Benign Pericytic Neoplasm 5 111432 -NCIT:C3742 Myofibromatosis 6 111433 -NCIT:C176943 Infantile Myofibromatosis 1 7 111434 -NCIT:C176944 Infantile Myofibromatosis 2 7 111435 -NCIT:C3747 Angioleiomyoma 6 111436 -NCIT:C49110 Solid Angioleiomyoma 7 111437 -NCIT:C49111 Venous Angioleiomyoma 7 111438 -NCIT:C49115 Cavernous Angioleiomyoma 7 111439 -NCIT:C5355 Intravascular Angioleiomyoma 7 111440 -NCIT:C6748 Benign Glomus Tumor 6 111441 -NCIT:C27496 Glomangiomatosis 7 111442 -NCIT:C7052 Myofibroma 6 111443 -NCIT:C180887 Infantile Myofibroma 7 111444 -NCIT:C180888 Adult Myofibroma 7 111445 -NCIT:C6530 Malignant Pericytic Neoplasm 5 111446 -NCIT:C4221 Malignant Glomus Tumor 6 111447 -NCIT:C175661 Unresectable Malignant Glomus Tumor 7 111448 -NCIT:C175662 Metastatic Malignant Glomus Tumor 7 111449 -NCIT:C175663 Locally Advanced Malignant Glomus Tumor 8 111450 -NCIT:C175664 Refractory Malignant Glomus Tumor 7 111451 -NCIT:C6603 Osteogenic Neoplasm 4 111452 -NCIT:C121925 Intermediate Osteogenic Neoplasm 5 111453 -NCIT:C66796 Aggressive Osteoblastoma 6 111454 -NCIT:C6602 Benign Osteogenic Neoplasm 5 111455 -NCIT:C3294 Osteoblastoma 6 111456 -NCIT:C173899 Maxillofacial Osteoblastoma 7 111457 -NCIT:C189020 Childhood Osteoblastoma 7 111458 -NCIT:C4308 Cementoblastoma 7 111459 -NCIT:C3296 Osteoma 6 111460 -NCIT:C121923 Ivory Exostosis 7 111461 -NCIT:C121924 Enostosis 7 111462 -NCIT:C129569 Skull Osteoma 7 111463 -NCIT:C173894 Maxillofacial Osteoma 8 111464 -NCIT:C3297 Osteoid Osteoma 6 111465 -NCIT:C173898 Maxillofacial Osteoid Osteoma 7 111466 -NCIT:C189021 Childhood Osteoid Osteoma 7 111467 -NCIT:C9145 Osteosarcoma 5 111468 -NCIT:C132850 Unresectable Osteosarcoma 6 111469 -NCIT:C142857 Refractory Osteosarcoma 6 111470 -NCIT:C187192 Refractory Childhood Osteosarcoma 7 111471 -NCIT:C162661 Resectable Osteosarcoma 6 111472 -NCIT:C53707 Bone Osteosarcoma 6 111473 -NCIT:C173844 Maxillofacial Osteosarcoma 7 111474 -NCIT:C189022 Childhood Bone Osteosarcoma 7 111475 -NCIT:C123398 Childhood Periosteal Osteosarcoma 8 111476 -NCIT:C6589 Childhood Parosteal Osteosarcoma 8 111477 -NCIT:C6590 Childhood Conventional Osteosarcoma 8 111478 -NCIT:C38157 Metachronous Osteosarcoma 7 111479 -NCIT:C4834 Primary Bone Osteosarcoma 7 111480 -NCIT:C136633 Osteosarcoma by AJCC v7 Stage 8 111481 -NCIT:C6612 Stage III Osteosarcoma AJCC v7 9 111482 -NCIT:C6701 Stage IV Osteosarcoma AJCC v7 9 111483 -NCIT:C6702 Stage IVA Osteosarcoma AJCC v7 10 111484 -NCIT:C6703 Stage IVB Osteosarcoma AJCC v7 10 111485 -NCIT:C6709 Stage I Osteosarcoma AJCC v7 9 111486 -NCIT:C6607 Stage IA Osteosarcoma AJCC v7 10 111487 -NCIT:C6609 Stage IB Osteosarcoma AJCC v7 10 111488 -NCIT:C6710 Stage II Osteosarcoma AJCC v7 9 111489 -NCIT:C6610 Stage IIA Osteosarcoma AJCC v7 10 111490 -NCIT:C6611 Stage IIB Osteosarcoma AJCC v7 10 111491 -NCIT:C35870 Conventional Osteosarcoma 8 111492 -NCIT:C179410 Giant Cell-Rich Osteosarcoma 9 111493 -NCIT:C4020 Fibroblastic Osteosarcoma 9 111494 -NCIT:C4021 Chondroblastic Osteosarcoma 9 111495 -NCIT:C53953 Osteoblastic Osteosarcoma 9 111496 -NCIT:C6590 Childhood Conventional Osteosarcoma 9 111497 -NCIT:C3902 Telangiectatic Osteosarcoma 8 111498 -NCIT:C4023 Small Cell Osteosarcoma 8 111499 -NCIT:C6470 Multifocal Osteosarcoma 8 111500 -NCIT:C6471 Synchronous Multifocal Osteosarcoma 9 111501 -NCIT:C6472 Asynchronous Multifocal Osteosarcoma 9 111502 -NCIT:C6474 Low Grade Central Osteosarcoma 8 111503 -NCIT:C7134 Bone Surface (Peripheral) Osteosarcoma 8 111504 -NCIT:C53958 High Grade Surface Osteosarcoma 9 111505 -NCIT:C8969 Parosteal Osteosarcoma 9 111506 -NCIT:C6589 Childhood Parosteal Osteosarcoma 10 111507 -NCIT:C8970 Periosteal Osteosarcoma 9 111508 -NCIT:C123398 Childhood Periosteal Osteosarcoma 10 111509 -NCIT:C53704 Secondary Osteosarcoma 7 111510 -NCIT:C53706 Radiation-Related Osteosarcoma 8 111511 -NCIT:C6469 Osteosarcoma Arising in Paget Disease of Bone 8 111512 -NCIT:C6585 Childhood Osteosarcoma 6 111513 -NCIT:C187189 Recurrent Childhood Osteosarcoma 7 111514 -NCIT:C187192 Refractory Childhood Osteosarcoma 7 111515 -NCIT:C189022 Childhood Bone Osteosarcoma 7 111516 -NCIT:C123398 Childhood Periosteal Osteosarcoma 8 111517 -NCIT:C6589 Childhood Parosteal Osteosarcoma 8 111518 -NCIT:C6590 Childhood Conventional Osteosarcoma 8 111519 -NCIT:C27376 Childhood Extraskeletal Osteosarcoma 7 111520 -NCIT:C7780 Localized Osteosarcoma 6 111521 -NCIT:C8809 Localized Extraskeletal Osteosarcoma 7 111522 -NCIT:C7781 Metastatic Osteosarcoma 6 111523 -NCIT:C175665 Locally Advanced Osteosarcoma 7 111524 -NCIT:C38157 Metachronous Osteosarcoma 7 111525 -NCIT:C8808 Metastatic Extraskeletal Osteosarcoma 7 111526 -NCIT:C7881 Recurrent Osteosarcoma 6 111527 -NCIT:C187189 Recurrent Childhood Osteosarcoma 7 111528 -NCIT:C8811 Recurrent Extraskeletal Osteosarcoma 7 111529 -NCIT:C8810 Extraskeletal Osteosarcoma 6 111530 -NCIT:C147003 Cardiac Extraskeletal Osteosarcoma 7 111531 -NCIT:C161035 Prostate Osteosarcoma 7 111532 -NCIT:C188061 Lung Osteosarcoma 7 111533 -NCIT:C27376 Childhood Extraskeletal Osteosarcoma 7 111534 -NCIT:C5189 Breast Extraskeletal Osteosarcoma 7 111535 -NCIT:C5833 Liver Extraskeletal Osteosarcoma 7 111536 -NCIT:C6181 Kidney Extraskeletal Osteosarcoma 7 111537 -NCIT:C6615 Mediastinal Extraskeletal Osteosarcoma 7 111538 -NCIT:C7002 Central Nervous System Extraskeletal Osteosarcoma 7 111539 -NCIT:C7925 Adult Extraskeletal Osteosarcoma 7 111540 -NCIT:C82972 Duodenal Extraskeletal Osteosarcoma 7 111541 -NCIT:C8808 Metastatic Extraskeletal Osteosarcoma 7 111542 -NCIT:C8809 Localized Extraskeletal Osteosarcoma 7 111543 -NCIT:C8811 Recurrent Extraskeletal Osteosarcoma 7 111544 -NCIT:C67237 Phosphaturic Mesenchymal Tumor 4 111545 -NCIT:C121788 Benign Phosphaturic Mesenchymal Tumor 5 111546 -NCIT:C121789 Malignant Phosphaturic Mesenchymal Tumor 5 111547 -NCIT:C6781 Stromal Neoplasm 4 111548 -NCIT:C175494 Conjunctival Stromal Tumor 5 111549 -NCIT:C179218 Breast Periductal Stromal Tumor 5 111550 -NCIT:C3868 Gastrointestinal Stromal Tumor 5 111551 -NCIT:C123906 Childhood Gastrointestinal Stromal Tumor 6 111552 -NCIT:C128460 Recurrent Gastrointestinal Stromal Tumor 6 111553 -NCIT:C27716 Extragastrointestinal Gastrointestinal Stromal Tumor 6 111554 -NCIT:C40337 Retroperitoneal Gastrointestinal Stromal Tumor 7 111555 -NCIT:C40338 Peritoneal Gastrointestinal Stromal Tumor 7 111556 -NCIT:C40339 Mesenteric Gastrointestinal Stromal Tumor 8 111557 -NCIT:C40340 Omentum Gastrointestinal Stromal Tumor 8 111558 -NCIT:C27792 Spindle Cell Type Gastrointestinal Stromal Tumor 6 111559 -NCIT:C27793 Mixed Cell Type Gastrointestinal Stromal Tumor 6 111560 -NCIT:C3486 Epithelioid Cell Type Gastrointestinal Stromal Tumor 6 111561 -NCIT:C81854 Benign Epithelioid Cell Type Gastrointestinal Stromal Tumor 7 111562 -NCIT:C81855 Malignant Epithelioid Cell Type Gastrointestinal Stromal Tumor 7 111563 -NCIT:C35778 Gastrointestinal Stromal Tumor of the Gastrointestinal Tract 6 111564 -NCIT:C27430 Esophageal Gastrointestinal Stromal Tumor 7 111565 -NCIT:C27735 Colorectal Gastrointestinal Stromal Tumor 7 111566 -NCIT:C5806 Gastric Gastrointestinal Stromal Tumor 7 111567 -NCIT:C87825 Stage IA Gastric Gastrointestinal Stromal Tumor 8 111568 -NCIT:C87826 Stage IB Gastric Gastrointestinal Stromal Tumor 8 111569 -NCIT:C87827 Stage II Gastric Gastrointestinal Stromal Tumor 8 111570 -NCIT:C87828 Stage IIIA Gastric Gastrointestinal Stromal Tumor 8 111571 -NCIT:C87829 Stage IIIB Gastric Gastrointestinal Stromal Tumor 8 111572 -NCIT:C87830 Stage IV Gastric Gastrointestinal Stromal Tumor 8 111573 -NCIT:C95895 Benign Gastric Gastrointestinal Stromal Tumor 8 111574 -NCIT:C95897 Gastric Malignant Gastrointestinal Stromal Tumor 8 111575 -NCIT:C95898 Gastric Gastrointestinal Stromal Tumor of Uncertain Malignant Potential 8 111576 -NCIT:C5811 Small Intestinal Gastrointestinal Stromal Tumor 7 111577 -NCIT:C87831 Stage I Small Intestinal Gastrointestinal Stromal Tumor 8 111578 -NCIT:C87832 Stage II Small Intestinal Gastrointestinal Stromal Tumor 8 111579 -NCIT:C87833 Stage IIIA Small Intestinal Gastrointestinal Stromal Tumor 8 111580 -NCIT:C87834 Stage IIIB Small Intestinal Gastrointestinal Stromal Tumor 8 111581 -NCIT:C87835 Stage IV Small Intestinal Gastrointestinal Stromal Tumor 8 111582 -NCIT:C53998 Benign Gastrointestinal Stromal Tumor 6 111583 -NCIT:C95895 Benign Gastric Gastrointestinal Stromal Tumor 7 111584 -NCIT:C53999 Malignant Gastrointestinal Stromal Tumor 6 111585 -NCIT:C136767 Gastrointestinal Stromal Tumor by AJCC v8 Stage 7 111586 -NCIT:C136768 Gastric and Omental Gastrointestinal Stromal Tumor by AJCC v8 Stage 8 111587 -NCIT:C136770 Stage I Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 9 111588 -NCIT:C136771 Stage IA Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 10 111589 -NCIT:C136772 Stage IB Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 10 111590 -NCIT:C136773 Stage II Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 9 111591 -NCIT:C136774 Stage III Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 9 111592 -NCIT:C136775 Stage IIIA Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 10 111593 -NCIT:C136777 Stage IIIB Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 10 111594 -NCIT:C136778 Stage IV Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 9 111595 -NCIT:C136769 Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor by AJCC v8 Stage 8 111596 -NCIT:C136780 Stage I Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 9 111597 -NCIT:C136781 Stage II Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 9 111598 -NCIT:C136783 Stage III Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 9 111599 -NCIT:C136784 Stage IIIA Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 10 111600 -NCIT:C136785 Stage IIIB Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 10 111601 -NCIT:C136786 Stage IV Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 9 111602 -NCIT:C150738 Metastatic Gastrointestinal Stromal Tumor 7 111603 -NCIT:C150739 Locally Advanced Gastrointestinal Stromal Tumor 8 111604 -NCIT:C173502 Advanced Gastrointestinal Stromal Tumor 8 111605 -NCIT:C150741 Unresectable Malignant Gastrointestinal Stromal Tumor 7 111606 -NCIT:C179932 Dedifferentiated Gastrointestinal Stromal Tumor 7 111607 -NCIT:C185882 Refractory Malignant Gastrointestinal Stromal Tumor 7 111608 -NCIT:C95897 Gastric Malignant Gastrointestinal Stromal Tumor 7 111609 -NCIT:C54000 Gastrointestinal Stromal Tumor of Uncertain Malignant Potential 6 111610 -NCIT:C95898 Gastric Gastrointestinal Stromal Tumor of Uncertain Malignant Potential 7 111611 -NCIT:C39904 Tumor of Specialized Prostatic Stroma 5 111612 -NCIT:C39905 Prostate Stromal Tumor of Uncertain Malignant Potential 6 111613 -NCIT:C5524 Prostate Stromal Sarcoma 6 111614 -NCIT:C6926 Stromal Sarcoma 5 111615 -NCIT:C53994 Undifferentiated Stromal Sarcoma 6 111616 -NCIT:C40066 Ovarian Undifferentiated Sarcoma 7 111617 -NCIT:C40224 Endocervical Undifferentiated Sarcoma 7 111618 -NCIT:C40272 Vaginal Undifferentiated Sarcoma 7 111619 -NCIT:C8972 Uterine Corpus Undifferentiated Sarcoma 7 111620 -NCIT:C53999 Malignant Gastrointestinal Stromal Tumor 6 111621 -NCIT:C136767 Gastrointestinal Stromal Tumor by AJCC v8 Stage 7 111622 -NCIT:C136768 Gastric and Omental Gastrointestinal Stromal Tumor by AJCC v8 Stage 8 111623 -NCIT:C136770 Stage I Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 9 111624 -NCIT:C136771 Stage IA Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 10 111625 -NCIT:C136772 Stage IB Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 10 111626 -NCIT:C136773 Stage II Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 9 111627 -NCIT:C136774 Stage III Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 9 111628 -NCIT:C136775 Stage IIIA Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 10 111629 -NCIT:C136777 Stage IIIB Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 10 111630 -NCIT:C136778 Stage IV Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 9 111631 -NCIT:C136769 Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor by AJCC v8 Stage 8 111632 -NCIT:C136780 Stage I Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 9 111633 -NCIT:C136781 Stage II Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 9 111634 -NCIT:C136783 Stage III Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 9 111635 -NCIT:C136784 Stage IIIA Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 10 111636 -NCIT:C136785 Stage IIIB Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 10 111637 -NCIT:C136786 Stage IV Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 9 111638 -NCIT:C150738 Metastatic Gastrointestinal Stromal Tumor 7 111639 -NCIT:C150739 Locally Advanced Gastrointestinal Stromal Tumor 8 111640 -NCIT:C173502 Advanced Gastrointestinal Stromal Tumor 8 111641 -NCIT:C150741 Unresectable Malignant Gastrointestinal Stromal Tumor 7 111642 -NCIT:C179932 Dedifferentiated Gastrointestinal Stromal Tumor 7 111643 -NCIT:C185882 Refractory Malignant Gastrointestinal Stromal Tumor 7 111644 -NCIT:C95897 Gastric Malignant Gastrointestinal Stromal Tumor 7 111645 -NCIT:C5524 Prostate Stromal Sarcoma 6 111646 -NCIT:C8973 Endometrioid Stromal Sarcoma 6 111647 -NCIT:C40219 Uterine Corpus Endometrial Stromal Sarcoma 7 111648 -NCIT:C126998 Uterine Corpus High Grade Endometrial Stromal Sarcoma 8 111649 -NCIT:C139882 Uterine Corpus Endometrial Stromal Sarcoma by AJCC v8 Stage 8 111650 -NCIT:C139883 Stage I Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 111651 -NCIT:C139884 Stage IA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 111652 -NCIT:C139885 Stage IB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 111653 -NCIT:C139886 Stage II Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 111654 -NCIT:C139887 Stage III Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 111655 -NCIT:C139888 Stage IIIA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 111656 -NCIT:C139889 Stage IIIB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 111657 -NCIT:C139890 Stage IIIC Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 111658 -NCIT:C139891 Stage IV Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 111659 -NCIT:C139892 Stage IVA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 111660 -NCIT:C139893 Stage IVB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 111661 -NCIT:C40223 Uterine Corpus Low Grade Endometrial Stromal Sarcoma 8 111662 -NCIT:C4263 Low Grade Endometrioid Stromal Sarcoma 7 111663 -NCIT:C179562 Peritoneal Low Grade Endometrioid Stromal Sarcoma 8 111664 -NCIT:C40063 Ovarian Low Grade Endometrioid Stromal Sarcoma 8 111665 -NCIT:C40222 Cervical Low Grade Endometrioid Stromal Sarcoma 8 111666 -NCIT:C40223 Uterine Corpus Low Grade Endometrial Stromal Sarcoma 8 111667 -NCIT:C40271 Vaginal Low Grade Endometrioid Stromal Sarcoma 8 111668 -NCIT:C9474 Adenosarcoma 6 111669 -NCIT:C102570 Broad Ligament Adenosarcoma 7 111670 -NCIT:C40125 Fallopian Tube Adenosarcoma 7 111671 -NCIT:C40229 Cervical Adenosarcoma 7 111672 -NCIT:C40277 Vaginal Adenosarcoma 7 111673 -NCIT:C6336 Uterine Corpus Adenosarcoma 7 111674 -NCIT:C139894 Uterine Corpus Adenosarcoma by AJCC v8 Stage 8 111675 -NCIT:C139895 Stage I Uterine Corpus Adenosarcoma AJCC v8 9 111676 -NCIT:C139896 Stage IA Uterine Corpus Adenosarcoma AJCC v8 10 111677 -NCIT:C139897 Stage IB Uterine Corpus Adenosarcoma AJCC v8 10 111678 -NCIT:C139898 Stage IC Uterine Corpus Adenosarcoma AJCC v8 10 111679 -NCIT:C139899 Stage II Uterine Corpus Adenosarcoma AJCC v8 9 111680 -NCIT:C139900 Stage III Uterine Corpus Adenosarcoma AJCC v8 9 111681 -NCIT:C139901 Stage IIIA Uterine Corpus Adenosarcoma AJCC v8 10 111682 -NCIT:C139902 Stage IIIB Uterine Corpus Adenosarcoma AJCC v8 10 111683 -NCIT:C139903 Stage IIIC Uterine Corpus Adenosarcoma AJCC v8 10 111684 -NCIT:C139904 Stage IV Uterine Corpus Adenosarcoma AJCC v8 9 111685 -NCIT:C139905 Stage IVA Uterine Corpus Adenosarcoma AJCC v8 10 111686 -NCIT:C139906 Stage IVB Uterine Corpus Adenosarcoma AJCC v8 10 111687 -NCIT:C7317 Ovarian Adenosarcoma 7 111688 -NCIT:C8384 Endometrioid Stromal and Related Neoplasms 5 111689 -NCIT:C40065 Ovarian Endometrioid Stromal and Related Neoplasms 6 111690 -NCIT:C40063 Ovarian Low Grade Endometrioid Stromal Sarcoma 7 111691 -NCIT:C40066 Ovarian Undifferentiated Sarcoma 7 111692 -NCIT:C40217 Uterine Corpus Endometrial Stromal and Related Neoplasms 6 111693 -NCIT:C127005 Uterine Corpus Tumor Resembling Ovarian Sex Cord Tumor 7 111694 -NCIT:C40219 Uterine Corpus Endometrial Stromal Sarcoma 7 111695 -NCIT:C126998 Uterine Corpus High Grade Endometrial Stromal Sarcoma 8 111696 -NCIT:C139882 Uterine Corpus Endometrial Stromal Sarcoma by AJCC v8 Stage 8 111697 -NCIT:C139883 Stage I Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 111698 -NCIT:C139884 Stage IA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 111699 -NCIT:C139885 Stage IB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 111700 -NCIT:C139886 Stage II Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 111701 -NCIT:C139887 Stage III Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 111702 -NCIT:C139888 Stage IIIA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 111703 -NCIT:C139889 Stage IIIB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 111704 -NCIT:C139890 Stage IIIC Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 111705 -NCIT:C139891 Stage IV Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 111706 -NCIT:C139892 Stage IVA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 111707 -NCIT:C139893 Stage IVB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 111708 -NCIT:C40223 Uterine Corpus Low Grade Endometrial Stromal Sarcoma 8 111709 -NCIT:C4262 Endometrial Stromal Nodule 7 111710 -NCIT:C8972 Uterine Corpus Undifferentiated Sarcoma 7 111711 -NCIT:C40218 Cervical Endometrioid Stromal and Related Neoplasms 6 111712 -NCIT:C40222 Cervical Low Grade Endometrioid Stromal Sarcoma 7 111713 -NCIT:C40224 Endocervical Undifferentiated Sarcoma 7 111714 -NCIT:C40269 Vaginal Endometrioid Stromal and Related Neoplasms 6 111715 -NCIT:C40271 Vaginal Low Grade Endometrioid Stromal Sarcoma 7 111716 -NCIT:C40272 Vaginal Undifferentiated Sarcoma 7 111717 -NCIT:C53994 Undifferentiated Stromal Sarcoma 6 111718 -NCIT:C40066 Ovarian Undifferentiated Sarcoma 7 111719 -NCIT:C40224 Endocervical Undifferentiated Sarcoma 7 111720 -NCIT:C40272 Vaginal Undifferentiated Sarcoma 7 111721 -NCIT:C8972 Uterine Corpus Undifferentiated Sarcoma 7 111722 -NCIT:C8973 Endometrioid Stromal Sarcoma 6 111723 -NCIT:C40219 Uterine Corpus Endometrial Stromal Sarcoma 7 111724 -NCIT:C126998 Uterine Corpus High Grade Endometrial Stromal Sarcoma 8 111725 -NCIT:C139882 Uterine Corpus Endometrial Stromal Sarcoma by AJCC v8 Stage 8 111726 -NCIT:C139883 Stage I Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 111727 -NCIT:C139884 Stage IA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 111728 -NCIT:C139885 Stage IB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 111729 -NCIT:C139886 Stage II Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 111730 -NCIT:C139887 Stage III Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 111731 -NCIT:C139888 Stage IIIA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 111732 -NCIT:C139889 Stage IIIB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 111733 -NCIT:C139890 Stage IIIC Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 111734 -NCIT:C139891 Stage IV Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 111735 -NCIT:C139892 Stage IVA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 111736 -NCIT:C139893 Stage IVB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 111737 -NCIT:C40223 Uterine Corpus Low Grade Endometrial Stromal Sarcoma 8 111738 -NCIT:C4263 Low Grade Endometrioid Stromal Sarcoma 7 111739 -NCIT:C179562 Peritoneal Low Grade Endometrioid Stromal Sarcoma 8 111740 -NCIT:C40063 Ovarian Low Grade Endometrioid Stromal Sarcoma 8 111741 -NCIT:C40222 Cervical Low Grade Endometrioid Stromal Sarcoma 8 111742 -NCIT:C40223 Uterine Corpus Low Grade Endometrial Stromal Sarcoma 8 111743 -NCIT:C40271 Vaginal Low Grade Endometrioid Stromal Sarcoma 8 111744 -NCIT:C7075 Fibroblastic Neoplasm 4 111745 -NCIT:C3042 Fibromatosis 5 111746 -NCIT:C3456 Inclusion Body Fibromatosis 6 111747 -NCIT:C4811 Fibromatosis Colli 6 111748 -NCIT:C6814 Superficial Fibromatosis 6 111749 -NCIT:C3316 Penile Fibromatosis 7 111750 -NCIT:C3469 Palmar Fibromatosis 7 111751 -NCIT:C4680 Plantar Fibromatosis 7 111752 -NCIT:C9182 Desmoid Fibromatosis 6 111753 -NCIT:C126358 Pelvic Fibromatosis 7 111754 -NCIT:C155875 Recurrent Desmoid Fibromatosis 7 111755 -NCIT:C155877 Unresectable Desmoid Fibromatosis 7 111756 -NCIT:C175667 Locally Invasive Desmoid-Type Fibromatosis 7 111757 -NCIT:C175670 Refractory Desmoid Fibromatosis 7 111758 -NCIT:C3741 Abdominal (Mesenteric) Fibromatosis 7 111759 -NCIT:C6489 Extraabdominal Fibromatosis 7 111760 -NCIT:C129548 Central Nervous System Desmoid Fibromatosis 8 111761 -NCIT:C173133 Sinonasal Desmoid Fibromatosis 8 111762 -NCIT:C6713 Chest Wall Fibromatosis 8 111763 -NCIT:C99180 Lipofibromatosis 6 111764 -NCIT:C3043 Fibrosarcoma 5 111765 -NCIT:C158428 Recurrent Fibrosarcoma 6 111766 -NCIT:C158429 Refractory Fibrosarcoma 6 111767 -NCIT:C168717 Unresectable Fibrosarcoma 6 111768 -NCIT:C178372 Unresectable Myxofibrosarcoma 7 111769 -NCIT:C4317 Ameloblastic Fibrosarcoma 6 111770 -NCIT:C45202 Low Grade Fibromyxoid Sarcoma 6 111771 -NCIT:C188970 Childhood Low Grade Fibromyxoid Sarcoma 7 111772 -NCIT:C45203 Low Grade Fibromyxoid Sarcoma with Giant Collagen Rosettes 7 111773 -NCIT:C45210 Classical Low Grade Fibromyxoid Sarcoma 7 111774 -NCIT:C49024 Low Grade Myofibroblastic Sarcoma 6 111775 -NCIT:C173478 Oral Cavity Low Grade Myofibroblastic Sarcoma 7 111776 -NCIT:C188973 Childhood Low Grade Myofibroblastic Sarcoma 7 111777 -NCIT:C49027 Sclerosing Epithelioid Fibrosarcoma 6 111778 -NCIT:C188971 Childhood Sclerosing Epithelioid Fibrosarcoma 7 111779 -NCIT:C5060 Localized Fibrosarcoma 6 111780 -NCIT:C6604 Bone Fibrosarcoma 6 111781 -NCIT:C6605 Soft Tissue Fibrosarcoma 6 111782 -NCIT:C173120 Sinonasal Fibrosarcoma 7 111783 -NCIT:C173478 Oral Cavity Low Grade Myofibroblastic Sarcoma 7 111784 -NCIT:C49025 Myxoinflammatory Fibroblastic Sarcoma 7 111785 -NCIT:C5185 Breast Fibrosarcoma 7 111786 -NCIT:C5233 Ovarian Fibrosarcoma 7 111787 -NCIT:C5336 Small Intestinal Fibrosarcoma 7 111788 -NCIT:C5361 Cardiac Fibrosarcoma 7 111789 -NCIT:C147004 Cardiac Myxofibrosarcoma 8 111790 -NCIT:C5465 Central Nervous System Fibrosarcoma 7 111791 -NCIT:C5832 Liver Fibrosarcoma 7 111792 -NCIT:C6496 Myxofibrosarcoma 7 111793 -NCIT:C147004 Cardiac Myxofibrosarcoma 8 111794 -NCIT:C168670 Metastatic Myxofibrosarcoma 8 111795 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 9 111796 -NCIT:C171304 Advanced Myxofibrosarcoma 9 111797 -NCIT:C172632 Skin Myxofibrosarcoma 8 111798 -NCIT:C177414 Epithelioid Myxofibrosarcoma 8 111799 -NCIT:C178372 Unresectable Myxofibrosarcoma 8 111800 -NCIT:C7726 Kidney Fibrosarcoma 7 111801 -NCIT:C66765 Fascial Fibrosarcoma 6 111802 -NCIT:C7809 Adult Fibrosarcoma 6 111803 -NCIT:C8088 Childhood Fibrosarcoma 6 111804 -NCIT:C188970 Childhood Low Grade Fibromyxoid Sarcoma 7 111805 -NCIT:C188971 Childhood Sclerosing Epithelioid Fibrosarcoma 7 111806 -NCIT:C188973 Childhood Low Grade Myofibroblastic Sarcoma 7 111807 -NCIT:C4244 Infantile Fibrosarcoma 7 111808 -NCIT:C8812 Metastatic Fibrosarcoma 6 111809 -NCIT:C168670 Metastatic Myxofibrosarcoma 7 111810 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 8 111811 -NCIT:C171304 Advanced Myxofibrosarcoma 8 111812 -NCIT:C168716 Advanced Fibrosarcoma 7 111813 -NCIT:C171304 Advanced Myxofibrosarcoma 8 111814 -NCIT:C171317 Locally Advanced Fibrosarcoma 7 111815 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 8 111816 -NCIT:C9025 Well Differentiated Fibrosarcoma 6 111817 -NCIT:C9404 Poorly Differentiated Fibrosarcoma 6 111818 -NCIT:C9429 Conventional Fibrosarcoma 6 111819 -NCIT:C4634 Skin Fibroblastic Neoplasm 5 111820 -NCIT:C172632 Skin Myxofibrosarcoma 6 111821 -NCIT:C4683 Dermatofibrosarcoma Protuberans 6 111822 -NCIT:C177325 Plaque-Like Dermatofibrosarcoma Protuberans 7 111823 -NCIT:C38105 Dermatofibrosarcoma Protuberans with Myoid Differentiation 7 111824 -NCIT:C38106 Myxoid Dermatofibrosarcoma Protuberans 7 111825 -NCIT:C38107 Dedifferentiated Dermatofibrosarcoma Protuberans 7 111826 -NCIT:C27547 Fibrosarcomatous Dermatofibrosarcoma Protuberans 8 111827 -NCIT:C38108 Dermatofibrosarcoma Protuberans with Giant Cell Fibroblastoma-Like Differentiation 7 111828 -NCIT:C9430 Pigmented Dermatofibrosarcoma Protuberans 7 111829 -NCIT:C4700 Giant Cell Fibroblastoma 6 111830 -NCIT:C49025 Myxoinflammatory Fibroblastic Sarcoma 6 111831 -NCIT:C6806 Benign Skin Fibroblastic Neoplasm 6 111832 -NCIT:C170888 Dermatomyofibroma 7 111833 -NCIT:C3942 Fibrous Hamartoma of Infancy 7 111834 -NCIT:C48961 Subcutaneous Nodular Fasciitis 7 111835 -NCIT:C6484 Dermal Fibroma 7 111836 -NCIT:C170889 Plaque-Like CD34-Positive Dermal Fibroma 8 111837 -NCIT:C4470 Perifollicular Fibroma 8 111838 -NCIT:C6486 Nuchal-Type Fibroma 8 111839 -NCIT:C7147 Benign Fibroblastic Neoplasm 5 111840 -NCIT:C121154 Proliferative Myositis 6 111841 -NCIT:C172941 Inflammatory Fibroid Polyp 6 111842 -NCIT:C177278 EWSR1-SMAD3-Positive Fibroblastic Tumor 6 111843 -NCIT:C188965 Childhood EWSR1-SMAD3-Positive Fibroblastic Tumor 7 111844 -NCIT:C3041 Fibroma 6 111845 -NCIT:C170736 Pleomorphic Fibroma 7 111846 -NCIT:C181926 Vulvar Prepubertal Fibroma 7 111847 -NCIT:C27515 Desmoplastic Fibroblastoma 7 111848 -NCIT:C3498 Ovarian Fibroma 7 111849 -NCIT:C189288 Childhood Ovarian Fibroma 8 111850 -NCIT:C7291 Ovarian Cellular Fibroma 8 111851 -NCIT:C3740 Desmoplastic Fibroma 7 111852 -NCIT:C173900 Maxillofacial Desmoplastic Fibroma 8 111853 -NCIT:C3799 Angiofibroma 7 111854 -NCIT:C177323 Angiofibroma of Soft Tissue 8 111855 -NCIT:C27256 Giant Cell Angiofibroma 8 111856 -NCIT:C27257 Cellular Angiofibroma 8 111857 -NCIT:C162498 Paratesticular Cellular Angiofibroma 9 111858 -NCIT:C40327 Vulvar Cellular Angiofibroma 9 111859 -NCIT:C27478 Gingival Angiofibroma 8 111860 -NCIT:C27479 Nasopharyngeal Angiofibroma 8 111861 -NCIT:C3972 Prostate Fibroma 7 111862 -NCIT:C39951 Testicular Fibroma 7 111863 -NCIT:C4818 Calcifying Aponeurotic Fibroma 7 111864 -NCIT:C49017 Gardner Fibroma 7 111865 -NCIT:C5394 Solitary Adult Fibroma 7 111866 -NCIT:C5658 Lung Fibroma 7 111867 -NCIT:C5702 Esophageal Fibroma 7 111868 -NCIT:C5853 Extrahepatic Bile Duct Fibroma 7 111869 -NCIT:C6484 Dermal Fibroma 7 111870 -NCIT:C170889 Plaque-Like CD34-Positive Dermal Fibroma 8 111871 -NCIT:C4470 Perifollicular Fibroma 8 111872 -NCIT:C6486 Nuchal-Type Fibroma 8 111873 -NCIT:C6485 Tendon Sheath Fibroma 7 111874 -NCIT:C66761 Periosteal Fibroma 7 111875 -NCIT:C66764 Fascial Fibroma 7 111876 -NCIT:C6892 Cellular Fibroma 7 111877 -NCIT:C7291 Ovarian Cellular Fibroma 8 111878 -NCIT:C6947 Cardiac Fibroma 7 111879 -NCIT:C3253 Myositis Ossificans 6 111880 -NCIT:C3456 Inclusion Body Fibromatosis 6 111881 -NCIT:C3827 Nodular Fasciitis 6 111882 -NCIT:C173687 Salivary Gland Nodular Fasciitis 7 111883 -NCIT:C173688 Parotid Gland Nodular Fasciitis 8 111884 -NCIT:C176253 Breast Nodular Fasciitis 7 111885 -NCIT:C27248 Cranial Nodular Fasciitis 7 111886 -NCIT:C4729 Intravascular Nodular Fasciitis 7 111887 -NCIT:C48961 Subcutaneous Nodular Fasciitis 7 111888 -NCIT:C4245 Elastofibroma 6 111889 -NCIT:C4728 Proliferative Fasciitis 6 111890 -NCIT:C4811 Fibromatosis Colli 6 111891 -NCIT:C49012 Myofibroblastoma 6 111892 -NCIT:C121181 Mammary-Type Myofibroblastoma 7 111893 -NCIT:C128079 Vaginal Superficial Myofibroblastoma 8 111894 -NCIT:C128272 Vulvar Superficial Myofibroblastoma 8 111895 -NCIT:C162500 Paratesticular Mammary-Type Myofibroblastoma 8 111896 -NCIT:C161640 Seminal Vesicle Mammary-Type Myofibroblastoma 9 111897 -NCIT:C129551 Central Nervous System Myofibroblastoma 7 111898 -NCIT:C40397 Breast Myofibroblastoma 7 111899 -NCIT:C6584 Palisaded Lymph Node Myofibroblastoma 7 111900 -NCIT:C49016 Angiomyofibroblastoma 6 111901 -NCIT:C45445 Vaginal Angiomyofibroblastoma 7 111902 -NCIT:C45446 Vulvar Angiomyofibroblastoma 7 111903 -NCIT:C6488 Calcifying Fibrous Tumor 6 111904 -NCIT:C179560 Peritoneal Calcifying Fibrous Tumor 7 111905 -NCIT:C183277 Pleural Calcifying Fibrous Tumor 7 111906 -NCIT:C6573 Fibroosseous Pseudotumor of Digits 6 111907 -NCIT:C6806 Benign Skin Fibroblastic Neoplasm 6 111908 -NCIT:C170888 Dermatomyofibroma 7 111909 -NCIT:C3942 Fibrous Hamartoma of Infancy 7 111910 -NCIT:C48961 Subcutaneous Nodular Fasciitis 7 111911 -NCIT:C6484 Dermal Fibroma 7 111912 -NCIT:C170889 Plaque-Like CD34-Positive Dermal Fibroma 8 111913 -NCIT:C4470 Perifollicular Fibroma 8 111914 -NCIT:C6486 Nuchal-Type Fibroma 8 111915 -NCIT:C7333 Intermediate Fibroblastic Neoplasm 5 111916 -NCIT:C177324 Superficial CD34-Positive Fibroblastic Tumor 6 111917 -NCIT:C4683 Dermatofibrosarcoma Protuberans 6 111918 -NCIT:C177325 Plaque-Like Dermatofibrosarcoma Protuberans 7 111919 -NCIT:C38105 Dermatofibrosarcoma Protuberans with Myoid Differentiation 7 111920 -NCIT:C38106 Myxoid Dermatofibrosarcoma Protuberans 7 111921 -NCIT:C38107 Dedifferentiated Dermatofibrosarcoma Protuberans 7 111922 -NCIT:C27547 Fibrosarcomatous Dermatofibrosarcoma Protuberans 8 111923 -NCIT:C38108 Dermatofibrosarcoma Protuberans with Giant Cell Fibroblastoma-Like Differentiation 7 111924 -NCIT:C9430 Pigmented Dermatofibrosarcoma Protuberans 7 111925 -NCIT:C4700 Giant Cell Fibroblastoma 6 111926 -NCIT:C6481 Inflammatory Myofibroblastic Tumor 6 111927 -NCIT:C126359 Abdominal Inflammatory Myofibroblastic Tumor 7 111928 -NCIT:C161042 Prostate Inflammatory Myofibroblastic Tumor 7 111929 -NCIT:C172851 Digestive System Inflammatory Myofibroblastic Tumor 7 111930 -NCIT:C5858 Liver Inflammatory Myofibroblastic Tumor 8 111931 -NCIT:C7022 Gastric Inflammatory Myofibroblastic Tumor 8 111932 -NCIT:C173402 Laryngeal Inflammatory Myofibroblastic Tumor 7 111933 -NCIT:C180545 Uterine Corpus Inflammatory Myofibroblastic Tumor 7 111934 -NCIT:C188972 Childhood Inflammatory Myofibroblastic Tumor 7 111935 -NCIT:C39740 Lung Inflammatory Myofibroblastic Tumor 7 111936 -NCIT:C39741 Retroperitoneal Inflammatory Myofibroblastic Tumor 7 111937 -NCIT:C40398 Breast Inflammatory Myofibroblastic Tumor 7 111938 -NCIT:C45753 Cardiac Inflammatory Myofibroblastic Tumor 7 111939 -NCIT:C6177 Bladder Inflammatory Myofibroblastic Tumor 7 111940 -NCIT:C7020 Central Nervous System Inflammatory Myofibroblastic Tumor 7 111941 -NCIT:C6814 Superficial Fibromatosis 6 111942 -NCIT:C3316 Penile Fibromatosis 7 111943 -NCIT:C3469 Palmar Fibromatosis 7 111944 -NCIT:C4680 Plantar Fibromatosis 7 111945 -NCIT:C9182 Desmoid Fibromatosis 6 111946 -NCIT:C126358 Pelvic Fibromatosis 7 111947 -NCIT:C155875 Recurrent Desmoid Fibromatosis 7 111948 -NCIT:C155877 Unresectable Desmoid Fibromatosis 7 111949 -NCIT:C175667 Locally Invasive Desmoid-Type Fibromatosis 7 111950 -NCIT:C175670 Refractory Desmoid Fibromatosis 7 111951 -NCIT:C3741 Abdominal (Mesenteric) Fibromatosis 7 111952 -NCIT:C6489 Extraabdominal Fibromatosis 7 111953 -NCIT:C129548 Central Nervous System Desmoid Fibromatosis 8 111954 -NCIT:C173133 Sinonasal Desmoid Fibromatosis 8 111955 -NCIT:C6713 Chest Wall Fibromatosis 8 111956 -NCIT:C99180 Lipofibromatosis 6 111957 -NCIT:C7634 Solitary Fibrous Tumor 5 111958 -NCIT:C126357 Peritoneal Solitary Fibrous Tumor 6 111959 -NCIT:C129526 Central Nervous System Solitary Fibrous Tumor 6 111960 -NCIT:C129527 Central Nervous System Solitary Fibrous Tumor, Grade 3 7 111961 -NCIT:C186603 Central Nervous System Dedifferentiated Solitary Fibrous Tumor 8 111962 -NCIT:C9183 Adult Central Nervous System Solitary Fibrous Tumor, Grade 3 8 111963 -NCIT:C92652 Meningeal Central Nervous System Solitary Fibrous Tumor, Grade 3 8 111964 -NCIT:C129528 Central Nervous System Solitary Fibrous Tumor, Grade 2 7 111965 -NCIT:C129530 Central Nervous System Solitary Fibrous Tumor, Grade 1 7 111966 -NCIT:C175496 Optic Nerve Sheath Solitary Fibrous Tumor 7 111967 -NCIT:C4660 Meningeal Solitary Fibrous Tumor 7 111968 -NCIT:C155784 Sellar Solitary Fibrous Tumor 8 111969 -NCIT:C92652 Meningeal Central Nervous System Solitary Fibrous Tumor, Grade 3 8 111970 -NCIT:C156349 Thyroid Gland Solitary Fibrous Tumor 6 111971 -NCIT:C159222 Kidney Solitary Fibrous Tumor 6 111972 -NCIT:C159679 Bladder Solitary Fibrous Tumor 6 111973 -NCIT:C161579 Prostate Solitary Fibrous Tumor 6 111974 -NCIT:C161580 Prostate Malignant Solitary Fibrous Tumor 7 111975 -NCIT:C172940 Digestive System Solitary Fibrous Tumor 6 111976 -NCIT:C5752 Liver Solitary Fibrous Tumor 7 111977 -NCIT:C173137 Sinonasal Solitary Fibrous Tumor 6 111978 -NCIT:C181935 Vulvar Solitary Fibrous Tumor 6 111979 -NCIT:C181936 Vaginal Solitary Fibrous Tumor 6 111980 -NCIT:C4281 Pericardial Solitary Fibrous Tumor 6 111981 -NCIT:C4457 Pleural Solitary Fibrous Tumor 6 111982 -NCIT:C45744 Mediastinal Solitary Fibrous Tumor 6 111983 -NCIT:C95044 Thymus Solitary Fibrous Tumor 7 111984 -NCIT:C6894 Malignant Solitary Fibrous Tumor 6 111985 -NCIT:C129527 Central Nervous System Solitary Fibrous Tumor, Grade 3 7 111986 -NCIT:C186603 Central Nervous System Dedifferentiated Solitary Fibrous Tumor 8 111987 -NCIT:C9183 Adult Central Nervous System Solitary Fibrous Tumor, Grade 3 8 111988 -NCIT:C92652 Meningeal Central Nervous System Solitary Fibrous Tumor, Grade 3 8 111989 -NCIT:C161580 Prostate Malignant Solitary Fibrous Tumor 7 111990 -NCIT:C79948 Dedifferentiated Solitary Fibrous Tumor 7 111991 -NCIT:C186603 Central Nervous System Dedifferentiated Solitary Fibrous Tumor 8 111992 -NCIT:C8402 Fibrohistiocytic Neoplasm 4 111993 -NCIT:C121500 Malignant Fibrohistiocytic Neoplasm 5 111994 -NCIT:C6535 Malignant Tenosynovial Giant Cell Tumor 6 111995 -NCIT:C6490 Benign Fibrohistiocytic Neoplasm 5 111996 -NCIT:C3401 Tenosynovial Giant Cell Tumor, Diffuse Type 6 111997 -NCIT:C35765 Histiocytoma 6 111998 -NCIT:C3739 Fibrous Histiocytoma 7 111999 -NCIT:C129549 Intracranial Fibrous Histiocytoma 8 112000 -NCIT:C188974 Childhood Fibrous Histiocytoma 8 112001 -NCIT:C189031 Childhood Non-Ossifying Fibroma 9 112002 -NCIT:C53963 Fibrous Histiocytoma of Bone 8 112003 -NCIT:C121929 Non-Ossifying Fibroma 9 112004 -NCIT:C189031 Childhood Non-Ossifying Fibroma 10 112005 -NCIT:C6492 Deep Fibrous Histiocytoma 8 112006 -NCIT:C6801 Skin Fibrous Histiocytoma 8 112007 -NCIT:C49076 Skin Fibrous Histiocytoma, Fibroblastic Variant 9 112008 -NCIT:C49077 Skin Fibrous Histiocytoma, Histiocytic Variant 9 112009 -NCIT:C49078 Skin Fibrous Histiocytoma, Cellular Variant 9 112010 -NCIT:C49079 Skin Fibrous Histiocytoma, Epithelioid Variant 9 112011 -NCIT:C6532 Tenosynovial Giant Cell Tumor, Localized Type 6 112012 -NCIT:C7343 Benign Skin Fibrohistiocytic Neoplasm 6 112013 -NCIT:C6801 Skin Fibrous Histiocytoma 7 112014 -NCIT:C49076 Skin Fibrous Histiocytoma, Fibroblastic Variant 8 112015 -NCIT:C49077 Skin Fibrous Histiocytoma, Histiocytic Variant 8 112016 -NCIT:C49078 Skin Fibrous Histiocytoma, Cellular Variant 8 112017 -NCIT:C49079 Skin Fibrous Histiocytoma, Epithelioid Variant 8 112018 -NCIT:C6491 Intermediate Fibrohistiocytic Neoplasm 5 112019 -NCIT:C49107 Giant Cell Tumor of Soft Tissue 6 112020 -NCIT:C7344 Skin Intermediate Fibrohistiocytic Neoplasm 6 112021 -NCIT:C6493 Plexiform Fibrohistiocytic Tumor 7 112022 -NCIT:C188975 Childhood Plexiform Fibrohistiocytic Tumor 8 112023 -NCIT:C6721 Chest Wall Plexiform Fibrohistiocytic Tumor 8 112024 -NCIT:C7749 Skin Fibrohistiocytic Neoplasm 5 112025 -NCIT:C7343 Benign Skin Fibrohistiocytic Neoplasm 6 112026 -NCIT:C6801 Skin Fibrous Histiocytoma 7 112027 -NCIT:C49076 Skin Fibrous Histiocytoma, Fibroblastic Variant 8 112028 -NCIT:C49077 Skin Fibrous Histiocytoma, Histiocytic Variant 8 112029 -NCIT:C49078 Skin Fibrous Histiocytoma, Cellular Variant 8 112030 -NCIT:C49079 Skin Fibrous Histiocytoma, Epithelioid Variant 8 112031 -NCIT:C7344 Skin Intermediate Fibrohistiocytic Neoplasm 6 112032 -NCIT:C6493 Plexiform Fibrohistiocytic Tumor 7 112033 -NCIT:C188975 Childhood Plexiform Fibrohistiocytic Tumor 8 112034 -NCIT:C6721 Chest Wall Plexiform Fibrohistiocytic Tumor 8 112035 -NCIT:C9118 Sarcoma 3 112036 -NCIT:C148301 Refractory Sarcoma 4 112037 -NCIT:C139001 Refractory Soft Tissue Sarcoma 5 112038 -NCIT:C142851 Refractory Rhabdomyosarcoma 6 112039 -NCIT:C142880 Refractory Alveolar Rhabdomyosarcoma 7 112040 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 7 112041 -NCIT:C148295 Refractory Undifferentiated Pleomorphic Sarcoma 6 112042 -NCIT:C148296 Refractory Synovial Sarcoma 6 112043 -NCIT:C156474 Refractory Kaposi Sarcoma 6 112044 -NCIT:C158427 Refractory Desmoplastic Small Round Cell Tumor 6 112045 -NCIT:C162722 Refractory Epithelioid Sarcoma 6 112046 -NCIT:C171168 Refractory Extraskeletal Myxoid Chondrosarcoma 6 112047 -NCIT:C180979 Refractory Clear Cell Sarcoma of Soft Tissue 6 112048 -NCIT:C185882 Refractory Malignant Gastrointestinal Stromal Tumor 6 112049 -NCIT:C187194 Refractory Childhood Soft Tissue Sarcoma 6 112050 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 7 112051 -NCIT:C188034 Refractory Alveolar Soft Part Sarcoma 6 112052 -NCIT:C142853 Refractory Ewing Sarcoma 5 112053 -NCIT:C142857 Refractory Osteosarcoma 5 112054 -NCIT:C187192 Refractory Childhood Osteosarcoma 6 112055 -NCIT:C148294 Refractory Leiomyosarcoma 5 112056 -NCIT:C150594 Refractory Liposarcoma 5 112057 -NCIT:C148297 Refractory Myxoid Liposarcoma 6 112058 -NCIT:C150593 Refractory Dedifferentiated Liposarcoma 6 112059 -NCIT:C155987 Refractory Malignant Peripheral Nerve Sheath Tumor 5 112060 -NCIT:C162725 Refractory Epithelioid Malignant Peripheral Nerve Sheath Tumor 6 112061 -NCIT:C158429 Refractory Fibrosarcoma 5 112062 -NCIT:C158431 Refractory Spindle Cell Sarcoma 5 112063 -NCIT:C148302 Recurrent Sarcoma 4 112064 -NCIT:C115351 Recurrent Adult Undifferentiated High Grade Pleomorphic Sarcoma of Bone 5 112065 -NCIT:C115368 Recurrent Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 5 112066 -NCIT:C139002 Recurrent Soft Tissue Sarcoma 5 112067 -NCIT:C153626 Recurrent Skin Angiosarcoma 6 112068 -NCIT:C158426 Recurrent Desmoplastic Small Round Cell Tumor 6 112069 -NCIT:C169050 Recurrent Soft Tissue Sarcoma of the Trunk and Extremities 6 112070 -NCIT:C170727 Recurrent Breast Sarcoma 6 112071 -NCIT:C133092 Recurrent Breast Angiosarcoma 7 112072 -NCIT:C180980 Recurrent Clear Cell Sarcoma of Soft Tissue 6 112073 -NCIT:C5059 Recurrent Epithelioid Sarcoma 6 112074 -NCIT:C7822 Recurrent Adult Soft Tissue Sarcoma 6 112075 -NCIT:C7935 Recurrent Kaposi Sarcoma 6 112076 -NCIT:C8067 Recurrent Childhood Soft Tissue Sarcoma 6 112077 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 7 112078 -NCIT:C8261 Recurrent Uterine Corpus Sarcoma 6 112079 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 7 112080 -NCIT:C8795 Recurrent Undifferentiated Pleomorphic Sarcoma 6 112081 -NCIT:C8798 Recurrent Alveolar Soft Part Sarcoma 6 112082 -NCIT:C8803 Recurrent Extraskeletal Ewing Sarcoma 6 112083 -NCIT:C8807 Recurrent Extraskeletal Myxoid Chondrosarcoma 6 112084 -NCIT:C8811 Recurrent Extraskeletal Osteosarcoma 6 112085 -NCIT:C8824 Recurrent Rhabdomyosarcoma 6 112086 -NCIT:C142881 Recurrent Alveolar Rhabdomyosarcoma 7 112087 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 7 112088 -NCIT:C8827 Recurrent Synovial Sarcoma 6 112089 -NCIT:C155648 Recurrent Sarcoma of the Extremity 5 112090 -NCIT:C158428 Recurrent Fibrosarcoma 5 112091 -NCIT:C158430 Recurrent Spindle Cell Sarcoma 5 112092 -NCIT:C173815 Recurrent Ectomesenchymoma 5 112093 -NCIT:C5384 Recurrent Angiosarcoma 5 112094 -NCIT:C133092 Recurrent Breast Angiosarcoma 6 112095 -NCIT:C153626 Recurrent Skin Angiosarcoma 6 112096 -NCIT:C7808 Recurrent Ewing Sarcoma 5 112097 -NCIT:C6622 Recurrent Bone Ewing Sarcoma 6 112098 -NCIT:C8803 Recurrent Extraskeletal Ewing Sarcoma 6 112099 -NCIT:C7881 Recurrent Osteosarcoma 5 112100 -NCIT:C187189 Recurrent Childhood Osteosarcoma 6 112101 -NCIT:C8811 Recurrent Extraskeletal Osteosarcoma 6 112102 -NCIT:C8780 Recurrent Chondrosarcoma 5 112103 -NCIT:C8815 Recurrent Leiomyosarcoma 5 112104 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 6 112105 -NCIT:C8818 Recurrent Liposarcoma 5 112106 -NCIT:C150579 Recurrent Myxoid Liposarcoma 6 112107 -NCIT:C150592 Recurrent Dedifferentiated Liposarcoma 6 112108 -NCIT:C8823 Recurrent Malignant Peripheral Nerve Sheath Tumor 5 112109 -NCIT:C162724 Recurrent Epithelioid Malignant Peripheral Nerve Sheath Tumor 6 112110 -NCIT:C148331 Unresectable Sarcoma 4 112111 -NCIT:C132147 Unresectable Leiomyosarcoma 5 112112 -NCIT:C168728 Unresectable Soft Tissue Leiomyosarcoma 6 112113 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 7 112114 -NCIT:C132148 Unresectable Liposarcoma 5 112115 -NCIT:C150598 Unresectable Dedifferentiated Liposarcoma 6 112116 -NCIT:C168719 Unresectable Myxoid Liposarcoma 6 112117 -NCIT:C182028 Unresectable Pleomorphic Liposarcoma 6 112118 -NCIT:C132849 Unresectable Ewing Sarcoma 5 112119 -NCIT:C132850 Unresectable Osteosarcoma 5 112120 -NCIT:C152074 Metastatic Unresectable Sarcoma 5 112121 -NCIT:C153477 Locally Advanced Unresectable Sarcoma 6 112122 -NCIT:C153475 Locally Advanced Unresectable Bone Sarcoma 7 112123 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 8 112124 -NCIT:C153476 Locally Advanced Unresectable Soft Tissue Sarcoma 7 112125 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 8 112126 -NCIT:C153068 Unresectable Soft Tissue Sarcoma 5 112127 -NCIT:C150610 Unresectable Undifferentiated Pleomorphic Sarcoma 6 112128 -NCIT:C150741 Unresectable Malignant Gastrointestinal Stromal Tumor 6 112129 -NCIT:C151983 Unresectable Rhabdomyosarcoma 6 112130 -NCIT:C153074 Unresectable Synovial Sarcoma 6 112131 -NCIT:C153476 Locally Advanced Unresectable Soft Tissue Sarcoma 6 112132 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 7 112133 -NCIT:C164078 Unresectable Alveolar Soft Part Sarcoma 6 112134 -NCIT:C167379 Unresectable Epithelioid Sarcoma 6 112135 -NCIT:C168728 Unresectable Soft Tissue Leiomyosarcoma 6 112136 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 7 112137 -NCIT:C170826 Unresectable Desmoplastic Small Round Cell Tumor 6 112138 -NCIT:C178372 Unresectable Myxofibrosarcoma 6 112139 -NCIT:C190016 Unresectable Uterine Corpus Sarcoma 6 112140 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 7 112141 -NCIT:C153072 Unresectable Bone Sarcoma 5 112142 -NCIT:C153475 Locally Advanced Unresectable Bone Sarcoma 6 112143 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 7 112144 -NCIT:C171070 Unresectable Primary Central Chondrosarcoma 6 112145 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 7 112146 -NCIT:C164312 Unresectable Malignant Peripheral Nerve Sheath Tumor 5 112147 -NCIT:C168717 Unresectable Fibrosarcoma 5 112148 -NCIT:C178372 Unresectable Myxofibrosarcoma 6 112149 -NCIT:C168718 Unresectable Angiosarcoma 5 112150 -NCIT:C150605 Resectable Sarcoma 4 112151 -NCIT:C150606 Resectable Liposarcoma 5 112152 -NCIT:C150607 Resectable Dedifferentiated Liposarcoma 6 112153 -NCIT:C153086 Resectable Soft Tissue Sarcoma 5 112154 -NCIT:C150611 Resectable Undifferentiated Pleomorphic Sarcoma 6 112155 -NCIT:C162661 Resectable Osteosarcoma 5 112156 -NCIT:C175505 Resectable Leiomyosarcoma 5 112157 -NCIT:C152076 Metastatic Sarcoma 4 112158 -NCIT:C152074 Metastatic Unresectable Sarcoma 5 112159 -NCIT:C153477 Locally Advanced Unresectable Sarcoma 6 112160 -NCIT:C153475 Locally Advanced Unresectable Bone Sarcoma 7 112161 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 8 112162 -NCIT:C153476 Locally Advanced Unresectable Soft Tissue Sarcoma 7 112163 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 8 112164 -NCIT:C153069 Metastatic Soft Tissue Sarcoma 5 112165 -NCIT:C150738 Metastatic Gastrointestinal Stromal Tumor 6 112166 -NCIT:C150739 Locally Advanced Gastrointestinal Stromal Tumor 7 112167 -NCIT:C173502 Advanced Gastrointestinal Stromal Tumor 7 112168 -NCIT:C153066 Locally Advanced Soft Tissue Sarcoma 6 112169 -NCIT:C150739 Locally Advanced Gastrointestinal Stromal Tumor 7 112170 -NCIT:C153476 Locally Advanced Unresectable Soft Tissue Sarcoma 7 112171 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 8 112172 -NCIT:C160919 Locally Advanced Undifferentiated Pleomorphic Sarcoma 7 112173 -NCIT:C164076 Locally Advanced Alveolar Soft Part Sarcoma 7 112174 -NCIT:C166415 Locally Advanced Rhabdomyosarcoma 7 112175 -NCIT:C167378 Locally Advanced Epithelioid Sarcoma 7 112176 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 7 112177 -NCIT:C171399 Locally Advanced Synovial Sarcoma 7 112178 -NCIT:C180875 Locally Advanced Desmoplastic Small Round Cell Tumor 7 112179 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 7 112180 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 112181 -NCIT:C156071 Metastatic Adult Soft Tissue Sarcoma 6 112182 -NCIT:C156475 Metastatic Kaposi Sarcoma 6 112183 -NCIT:C156476 Advanced Kaposi Sarcoma 7 112184 -NCIT:C161585 Metastatic Clear Cell Sarcoma of Soft Tissue 6 112185 -NCIT:C161586 Advanced Clear Cell Sarcoma of Soft Tissue 7 112186 -NCIT:C162194 Advanced Soft Tissue Sarcoma 6 112187 -NCIT:C153184 Advanced Synovial Sarcoma 7 112188 -NCIT:C156476 Advanced Kaposi Sarcoma 7 112189 -NCIT:C161586 Advanced Clear Cell Sarcoma of Soft Tissue 7 112190 -NCIT:C164246 Advanced Malignant PEComa 7 112191 -NCIT:C165781 Advanced Undifferentiated Pleomorphic Sarcoma 7 112192 -NCIT:C167380 Advanced Epithelioid Sarcoma 7 112193 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 7 112194 -NCIT:C171304 Advanced Myxofibrosarcoma 7 112195 -NCIT:C173502 Advanced Gastrointestinal Stromal Tumor 7 112196 -NCIT:C188198 Advanced Alveolar Soft Part Sarcoma 7 112197 -NCIT:C164245 Metastatic Malignant PEComa 6 112198 -NCIT:C164246 Advanced Malignant PEComa 7 112199 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 7 112200 -NCIT:C166414 Metastatic Rhabdomyosarcoma 6 112201 -NCIT:C166415 Locally Advanced Rhabdomyosarcoma 7 112202 -NCIT:C183250 Metastatic Embryonal Rhabdomyosarcoma 7 112203 -NCIT:C168670 Metastatic Myxofibrosarcoma 6 112204 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 7 112205 -NCIT:C171304 Advanced Myxofibrosarcoma 7 112206 -NCIT:C168725 Metastatic Soft Tissue Leiomyosarcoma 6 112207 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 7 112208 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 7 112209 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 112210 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 7 112211 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 112212 -NCIT:C170827 Metastatic Desmoplastic Small Round Cell Tumor 6 112213 -NCIT:C180875 Locally Advanced Desmoplastic Small Round Cell Tumor 7 112214 -NCIT:C190009 Metastatic Uterine Corpus Sarcoma 6 112215 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 7 112216 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 112217 -NCIT:C4926 Metastatic Undifferentiated Pleomorphic Sarcoma 6 112218 -NCIT:C160919 Locally Advanced Undifferentiated Pleomorphic Sarcoma 7 112219 -NCIT:C165781 Advanced Undifferentiated Pleomorphic Sarcoma 7 112220 -NCIT:C8066 Metastatic Childhood Soft Tissue Sarcoma 6 112221 -NCIT:C8796 Metastatic Alveolar Soft Part Sarcoma 6 112222 -NCIT:C164076 Locally Advanced Alveolar Soft Part Sarcoma 7 112223 -NCIT:C188198 Advanced Alveolar Soft Part Sarcoma 7 112224 -NCIT:C8799 Metastatic Epithelioid Sarcoma 6 112225 -NCIT:C167378 Locally Advanced Epithelioid Sarcoma 7 112226 -NCIT:C167380 Advanced Epithelioid Sarcoma 7 112227 -NCIT:C8801 Metastatic Extraskeletal Ewing Sarcoma 6 112228 -NCIT:C8804 Metastatic Extraskeletal Myxoid Chondrosarcoma 6 112229 -NCIT:C8808 Metastatic Extraskeletal Osteosarcoma 6 112230 -NCIT:C8825 Metastatic Synovial Sarcoma 6 112231 -NCIT:C153184 Advanced Synovial Sarcoma 7 112232 -NCIT:C171399 Locally Advanced Synovial Sarcoma 7 112233 -NCIT:C153071 Locally Advanced Sarcoma 5 112234 -NCIT:C146856 Locally Advanced Angiosarcoma 6 112235 -NCIT:C153066 Locally Advanced Soft Tissue Sarcoma 6 112236 -NCIT:C150739 Locally Advanced Gastrointestinal Stromal Tumor 7 112237 -NCIT:C153476 Locally Advanced Unresectable Soft Tissue Sarcoma 7 112238 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 8 112239 -NCIT:C160919 Locally Advanced Undifferentiated Pleomorphic Sarcoma 7 112240 -NCIT:C164076 Locally Advanced Alveolar Soft Part Sarcoma 7 112241 -NCIT:C166415 Locally Advanced Rhabdomyosarcoma 7 112242 -NCIT:C167378 Locally Advanced Epithelioid Sarcoma 7 112243 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 7 112244 -NCIT:C171399 Locally Advanced Synovial Sarcoma 7 112245 -NCIT:C180875 Locally Advanced Desmoplastic Small Round Cell Tumor 7 112246 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 7 112247 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 112248 -NCIT:C153070 Locally Advanced Bone Sarcoma 6 112249 -NCIT:C153475 Locally Advanced Unresectable Bone Sarcoma 7 112250 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 8 112251 -NCIT:C153477 Locally Advanced Unresectable Sarcoma 6 112252 -NCIT:C153475 Locally Advanced Unresectable Bone Sarcoma 7 112253 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 8 112254 -NCIT:C153476 Locally Advanced Unresectable Soft Tissue Sarcoma 7 112255 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 8 112256 -NCIT:C160916 Locally Advanced Liposarcoma 6 112257 -NCIT:C164071 Locally Advanced Dedifferentiated Liposarcoma 7 112258 -NCIT:C160917 Locally Advanced Leiomyosarcoma 6 112259 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 7 112260 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 112261 -NCIT:C164074 Locally Advanced Malignant Peripheral Nerve Sheath Tumor 6 112262 -NCIT:C164080 Locally Advanced Ewing Sarcoma 6 112263 -NCIT:C168668 Locally Advanced High Grade Sarcoma 6 112264 -NCIT:C170953 Locally Advanced Chondrosarcoma 6 112265 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 7 112266 -NCIT:C171317 Locally Advanced Fibrosarcoma 6 112267 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 7 112268 -NCIT:C175665 Locally Advanced Osteosarcoma 6 112269 -NCIT:C153073 Metastatic Bone Sarcoma 5 112270 -NCIT:C153070 Locally Advanced Bone Sarcoma 6 112271 -NCIT:C153475 Locally Advanced Unresectable Bone Sarcoma 7 112272 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 8 112273 -NCIT:C162762 Advanced Bone Sarcoma 6 112274 -NCIT:C171072 Metastatic Primary Central Chondrosarcoma 6 112275 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 7 112276 -NCIT:C38157 Metachronous Osteosarcoma 6 112277 -NCIT:C6621 Metastatic Bone Ewing Sarcoma 6 112278 -NCIT:C153185 Advanced Sarcoma 5 112279 -NCIT:C155649 Advanced Sarcoma of the Extremity 6 112280 -NCIT:C162194 Advanced Soft Tissue Sarcoma 6 112281 -NCIT:C153184 Advanced Synovial Sarcoma 7 112282 -NCIT:C156476 Advanced Kaposi Sarcoma 7 112283 -NCIT:C161586 Advanced Clear Cell Sarcoma of Soft Tissue 7 112284 -NCIT:C164246 Advanced Malignant PEComa 7 112285 -NCIT:C165781 Advanced Undifferentiated Pleomorphic Sarcoma 7 112286 -NCIT:C167380 Advanced Epithelioid Sarcoma 7 112287 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 7 112288 -NCIT:C171304 Advanced Myxofibrosarcoma 7 112289 -NCIT:C173502 Advanced Gastrointestinal Stromal Tumor 7 112290 -NCIT:C188198 Advanced Alveolar Soft Part Sarcoma 7 112291 -NCIT:C162762 Advanced Bone Sarcoma 6 112292 -NCIT:C165780 Advanced Leiomyosarcoma 6 112293 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 7 112294 -NCIT:C168701 Advanced Liposarcoma 6 112295 -NCIT:C162763 Advanced Myxoid Liposarcoma 7 112296 -NCIT:C168715 Advanced Dedifferentiated Liposarcoma 7 112297 -NCIT:C182026 Advanced Pleomorphic Liposarcoma 7 112298 -NCIT:C168714 Advanced Malignant Peripheral Nerve Sheath Tumor 6 112299 -NCIT:C168716 Advanced Fibrosarcoma 6 112300 -NCIT:C171304 Advanced Myxofibrosarcoma 7 112301 -NCIT:C168720 Advanced Angiosarcoma 6 112302 -NCIT:C168667 Metastatic High Grade Sarcoma 5 112303 -NCIT:C168668 Locally Advanced High Grade Sarcoma 6 112304 -NCIT:C179657 Metastatic Sarcoma in the Peritoneum 5 112305 -NCIT:C179656 Peritoneal Sarcomatosis 6 112306 -NCIT:C7781 Metastatic Osteosarcoma 5 112307 -NCIT:C175665 Locally Advanced Osteosarcoma 6 112308 -NCIT:C38157 Metachronous Osteosarcoma 6 112309 -NCIT:C8808 Metastatic Extraskeletal Osteosarcoma 6 112310 -NCIT:C7807 Metastatic Ewing Sarcoma 5 112311 -NCIT:C164080 Locally Advanced Ewing Sarcoma 6 112312 -NCIT:C6621 Metastatic Bone Ewing Sarcoma 6 112313 -NCIT:C8801 Metastatic Extraskeletal Ewing Sarcoma 6 112314 -NCIT:C8708 Metastatic Angiosarcoma 5 112315 -NCIT:C146856 Locally Advanced Angiosarcoma 6 112316 -NCIT:C168720 Advanced Angiosarcoma 6 112317 -NCIT:C8779 Metastatic Chondrosarcoma 5 112318 -NCIT:C170953 Locally Advanced Chondrosarcoma 6 112319 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 7 112320 -NCIT:C171072 Metastatic Primary Central Chondrosarcoma 6 112321 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 7 112322 -NCIT:C8812 Metastatic Fibrosarcoma 5 112323 -NCIT:C168670 Metastatic Myxofibrosarcoma 6 112324 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 7 112325 -NCIT:C171304 Advanced Myxofibrosarcoma 7 112326 -NCIT:C168716 Advanced Fibrosarcoma 6 112327 -NCIT:C171304 Advanced Myxofibrosarcoma 7 112328 -NCIT:C171317 Locally Advanced Fibrosarcoma 6 112329 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 7 112330 -NCIT:C8813 Metastatic Leiomyosarcoma 5 112331 -NCIT:C160917 Locally Advanced Leiomyosarcoma 6 112332 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 7 112333 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 112334 -NCIT:C165780 Advanced Leiomyosarcoma 6 112335 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 7 112336 -NCIT:C168725 Metastatic Soft Tissue Leiomyosarcoma 6 112337 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 7 112338 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 7 112339 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 112340 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 7 112341 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 112342 -NCIT:C8816 Metastatic Liposarcoma 5 112343 -NCIT:C148298 Metastatic Myxoid Liposarcoma 6 112344 -NCIT:C162763 Advanced Myxoid Liposarcoma 7 112345 -NCIT:C160916 Locally Advanced Liposarcoma 6 112346 -NCIT:C164071 Locally Advanced Dedifferentiated Liposarcoma 7 112347 -NCIT:C164070 Metastatic Dedifferentiated Liposarcoma 6 112348 -NCIT:C164071 Locally Advanced Dedifferentiated Liposarcoma 7 112349 -NCIT:C168715 Advanced Dedifferentiated Liposarcoma 7 112350 -NCIT:C168701 Advanced Liposarcoma 6 112351 -NCIT:C162763 Advanced Myxoid Liposarcoma 7 112352 -NCIT:C168715 Advanced Dedifferentiated Liposarcoma 7 112353 -NCIT:C182026 Advanced Pleomorphic Liposarcoma 7 112354 -NCIT:C182025 Metastatic Pleomorphic Liposarcoma 6 112355 -NCIT:C182026 Advanced Pleomorphic Liposarcoma 7 112356 -NCIT:C8822 Metastatic Malignant Peripheral Nerve Sheath Tumor 5 112357 -NCIT:C164074 Locally Advanced Malignant Peripheral Nerve Sheath Tumor 6 112358 -NCIT:C168714 Advanced Malignant Peripheral Nerve Sheath Tumor 6 112359 -NCIT:C155647 Sarcoma of the Extremity 4 112360 -NCIT:C155648 Recurrent Sarcoma of the Extremity 5 112361 -NCIT:C155649 Advanced Sarcoma of the Extremity 5 112362 -NCIT:C155873 Chest Wall Sarcoma 4 112363 -NCIT:C157652 Pelvic Sarcoma 4 112364 -NCIT:C151981 Pelvic Rhabdomyosarcoma 5 112365 -NCIT:C151984 Pelvic Undifferentiated High Grade Pleomorphic Sarcoma 5 112366 -NCIT:C164198 Head and Neck Sarcoma 4 112367 -NCIT:C173118 Sinonasal Sarcoma 5 112368 -NCIT:C164205 Biphenotypic Sinonasal Sarcoma 6 112369 -NCIT:C173120 Sinonasal Fibrosarcoma 6 112370 -NCIT:C173121 Sinonasal Undifferentiated Pleomorphic Sarcoma 6 112371 -NCIT:C173123 Sinonasal Leiomyosarcoma 6 112372 -NCIT:C173124 Sinonasal Rhabdomyosarcoma 6 112373 -NCIT:C173125 Sinonasal Angiosarcoma 6 112374 -NCIT:C173127 Sinonasal Malignant Peripheral Nerve Sheath Tumor 6 112375 -NCIT:C173128 Sinonasal Synovial Sarcoma 6 112376 -NCIT:C6849 Paranasal Sinus Sarcoma 6 112377 -NCIT:C6850 High Grade Paranasal Sinus Sarcoma 7 112378 -NCIT:C6851 Low Grade Paranasal Sinus Sarcoma 7 112379 -NCIT:C173841 Maxillofacial Sarcoma 5 112380 -NCIT:C173842 Maxillofacial Chondrosarcoma 6 112381 -NCIT:C173843 Maxillofacial Mesenchymal Chondrosarcoma 7 112382 -NCIT:C173844 Maxillofacial Osteosarcoma 6 112383 -NCIT:C5916 Oral Cavity Sarcoma 5 112384 -NCIT:C173481 Oral Cavity Soft Tissue Sarcoma 6 112385 -NCIT:C156274 Tongue Sarcoma 7 112386 -NCIT:C156273 Tongue Alveolar Soft Part Sarcoma' 8 112387 -NCIT:C173404 Tongue Liposarcoma 8 112388 -NCIT:C173477 Oral Cavity Kaposi Sarcoma 7 112389 -NCIT:C6749 Palate Kaposi Sarcoma 8 112390 -NCIT:C173478 Oral Cavity Low Grade Myofibroblastic Sarcoma 7 112391 -NCIT:C173738 Odontogenic Sarcoma 6 112392 -NCIT:C173739 Ameloblastic Fibrodentinosarcoma 7 112393 -NCIT:C173740 Ameloblastic Fibroodontosarcoma 7 112394 -NCIT:C4317 Ameloblastic Fibrosarcoma 7 112395 -NCIT:C5983 Major Salivary Gland Sarcoma 5 112396 -NCIT:C156280 Parotid Gland Sarcoma 6 112397 -NCIT:C156281 Parotid Gland Liposarcoma 7 112398 -NCIT:C5952 Parotid Gland Kaposi Sarcoma 7 112399 -NCIT:C6020 Laryngeal Sarcoma 5 112400 -NCIT:C173407 Laryngeal Chondrosarcoma 6 112401 -NCIT:C173408 Laryngeal Soft Tissue Sarcoma 6 112402 -NCIT:C6021 Laryngeal Liposarcoma 7 112403 -NCIT:C6022 Laryngeal Leiomyosarcoma 7 112404 -NCIT:C6041 Thyroid Gland Sarcoma 5 112405 -NCIT:C156341 Thyroid Gland Malignant Peripheral Nerve Sheath Tumor 6 112406 -NCIT:C156347 Thyroid Gland Leiomyosarcoma 6 112407 -NCIT:C6043 Thyroid Gland Angiosarcoma 6 112408 -NCIT:C6095 Orbit Sarcoma 5 112409 -NCIT:C156276 Orbital Alveolar Soft Part Sarcoma 6 112410 -NCIT:C4543 Orbit Rhabdomyosarcoma 6 112411 -NCIT:C6246 Orbit Embryonal Rhabdomyosarcoma 7 112412 -NCIT:C6247 Orbit Alveolar Rhabdomyosarcoma 7 112413 -NCIT:C176558 Localized Sarcoma 4 112414 -NCIT:C115997 Localized Adult Undifferentiated High Grade Pleomorphic Sarcoma of Bone 5 112415 -NCIT:C115998 Localized Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 5 112416 -NCIT:C189240 Localized Soft Tissue Sarcoma 5 112417 -NCIT:C115292 Localized Childhood Soft Tissue Sarcoma 6 112418 -NCIT:C8065 Localized Childhood Rhabdomyosarcoma 7 112419 -NCIT:C8797 Localized Alveolar Soft Part Sarcoma 6 112420 -NCIT:C8800 Localized Epithelioid Sarcoma 6 112421 -NCIT:C8802 Localized Extraskeletal Ewing Sarcoma 6 112422 -NCIT:C8809 Localized Extraskeletal Osteosarcoma 6 112423 -NCIT:C8826 Localized Synovial Sarcoma 6 112424 -NCIT:C5060 Localized Fibrosarcoma 5 112425 -NCIT:C7780 Localized Osteosarcoma 5 112426 -NCIT:C8809 Localized Extraskeletal Osteosarcoma 6 112427 -NCIT:C7806 Localized Ewing Sarcoma 5 112428 -NCIT:C6623 Localized Bone Ewing Sarcoma 6 112429 -NCIT:C8802 Localized Extraskeletal Ewing Sarcoma 6 112430 -NCIT:C8814 Localized Leiomyosarcoma 5 112431 -NCIT:C8817 Localized Liposarcoma 5 112432 -NCIT:C9275 Localized Angiosarcoma 5 112433 -NCIT:C188981 Childhood Sarcoma 4 112434 -NCIT:C188984 Childhood Ectomesenchymoma 5 112435 -NCIT:C189002 Childhood Ewing Sarcoma 5 112436 -NCIT:C189261 Childhood Kidney Ewing Sarcoma 6 112437 -NCIT:C189003 Childhood Round Cell Sarcoma with EWSR1-non-ETS Fusion 5 112438 -NCIT:C189006 Childhood CIC-Rearranged Sarcoma 5 112439 -NCIT:C189007 Childhood Sarcoma with BCOR Genetic Alterations 5 112440 -NCIT:C189017 Childhood Bone Sarcoma 5 112441 -NCIT:C114750 Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 6 112442 -NCIT:C115368 Recurrent Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 7 112443 -NCIT:C115998 Localized Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 7 112444 -NCIT:C189022 Childhood Bone Osteosarcoma 6 112445 -NCIT:C123398 Childhood Periosteal Osteosarcoma 7 112446 -NCIT:C6589 Childhood Parosteal Osteosarcoma 7 112447 -NCIT:C6590 Childhood Conventional Osteosarcoma 7 112448 -NCIT:C189026 Childhood Primary Central Chondrosarcoma 6 112449 -NCIT:C189027 Childhood Chondrosarcoma 5 112450 -NCIT:C189026 Childhood Primary Central Chondrosarcoma 6 112451 -NCIT:C27374 Childhood Mesenchymal Chondrosarcoma 6 112452 -NCIT:C6585 Childhood Osteosarcoma 5 112453 -NCIT:C187189 Recurrent Childhood Osteosarcoma 6 112454 -NCIT:C187192 Refractory Childhood Osteosarcoma 6 112455 -NCIT:C189022 Childhood Bone Osteosarcoma 6 112456 -NCIT:C123398 Childhood Periosteal Osteosarcoma 7 112457 -NCIT:C6589 Childhood Parosteal Osteosarcoma 7 112458 -NCIT:C6590 Childhood Conventional Osteosarcoma 7 112459 -NCIT:C27376 Childhood Extraskeletal Osteosarcoma 6 112460 -NCIT:C7715 Childhood Soft Tissue Sarcoma 5 112461 -NCIT:C114749 Childhood Undifferentiated Pleomorphic Sarcoma 6 112462 -NCIT:C115292 Localized Childhood Soft Tissue Sarcoma 6 112463 -NCIT:C8065 Localized Childhood Rhabdomyosarcoma 7 112464 -NCIT:C187194 Refractory Childhood Soft Tissue Sarcoma 6 112465 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 7 112466 -NCIT:C188980 Childhood Kaposi Sarcoma 6 112467 -NCIT:C189260 Childhood Anaplastic Sarcoma of the Kidney 6 112468 -NCIT:C189261 Childhood Kidney Ewing Sarcoma 6 112469 -NCIT:C189934 Childhood Liver Embryonal Sarcoma 6 112470 -NCIT:C190020 Childhood Liver Angiosarcoma 6 112471 -NCIT:C27371 Childhood Clear Cell Sarcoma of Soft Tissue 6 112472 -NCIT:C27372 Childhood Desmoplastic Small Round Cell Tumor 6 112473 -NCIT:C27376 Childhood Extraskeletal Osteosarcoma 6 112474 -NCIT:C27377 Childhood Extraskeletal Myxoid Chondrosarcoma 6 112475 -NCIT:C4264 Clear Cell Sarcoma of the Kidney 6 112476 -NCIT:C7705 Childhood Rhabdomyosarcoma 6 112477 -NCIT:C123397 Childhood Spindle Cell Rhabdomyosarcoma 7 112478 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 7 112479 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 7 112480 -NCIT:C7957 Childhood Embryonal Rhabdomyosarcoma 7 112481 -NCIT:C35574 Childhood Botryoid-Type Embryonal Rhabdomyosarcoma 8 112482 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 9 112483 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 9 112484 -NCIT:C7958 Childhood Alveolar Rhabdomyosarcoma 7 112485 -NCIT:C7959 Childhood Pleomorphic Rhabdomyosarcoma 7 112486 -NCIT:C7960 Childhood Rhabdomyosarcoma with Mixed Embryonal and Alveolar Features 7 112487 -NCIT:C8065 Localized Childhood Rhabdomyosarcoma 7 112488 -NCIT:C8066 Metastatic Childhood Soft Tissue Sarcoma 6 112489 -NCIT:C8067 Recurrent Childhood Soft Tissue Sarcoma 6 112490 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 7 112491 -NCIT:C8089 Childhood Synovial Sarcoma 6 112492 -NCIT:C8092 Childhood Alveolar Soft Part Sarcoma 6 112493 -NCIT:C8093 Childhood Leiomyosarcoma 6 112494 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 7 112495 -NCIT:C8095 Childhood Epithelioid Sarcoma 6 112496 -NCIT:C8088 Childhood Fibrosarcoma 5 112497 -NCIT:C188970 Childhood Low Grade Fibromyxoid Sarcoma 6 112498 -NCIT:C188971 Childhood Sclerosing Epithelioid Fibrosarcoma 6 112499 -NCIT:C188973 Childhood Low Grade Myofibroblastic Sarcoma 6 112500 -NCIT:C4244 Infantile Fibrosarcoma 6 112501 -NCIT:C8091 Childhood Liposarcoma 5 112502 -NCIT:C8094 Childhood Malignant Peripheral Nerve Sheath Tumor 5 112503 -NCIT:C9174 Childhood Angiosarcoma 5 112504 -NCIT:C190020 Childhood Liver Angiosarcoma 6 112505 -NCIT:C27005 Spindle Cell Sarcoma 4 112506 -NCIT:C121789 Malignant Phosphaturic Mesenchymal Tumor 5 112507 -NCIT:C121797 Undifferentiated Spindle Cell Sarcoma 5 112508 -NCIT:C158430 Recurrent Spindle Cell Sarcoma 5 112509 -NCIT:C158431 Refractory Spindle Cell Sarcoma 5 112510 -NCIT:C164205 Biphenotypic Sinonasal Sarcoma 5 112511 -NCIT:C53677 Intimal Sarcoma 5 112512 -NCIT:C142825 Pulmonary Artery Intimal Sarcoma 6 112513 -NCIT:C27349 Histiocytic Sarcoma 4 112514 -NCIT:C129807 Central Nervous System Histiocytic Sarcoma 5 112515 -NCIT:C2946 Chondrosarcoma 4 112516 -NCIT:C121870 Chondrosarcoma, Grade 2 5 112517 -NCIT:C178491 Central Chondrosarcoma, Grade 2 6 112518 -NCIT:C178492 Secondary Peripheral Chondrosarcoma, Grade 2 6 112519 -NCIT:C121871 Chondrosarcoma, Grade 3 5 112520 -NCIT:C178493 Central Chondrosarcoma, Grade 3 6 112521 -NCIT:C178494 Secondary Peripheral Chondrosarcoma, Grade 3 6 112522 -NCIT:C173407 Laryngeal Chondrosarcoma 5 112523 -NCIT:C173842 Maxillofacial Chondrosarcoma 5 112524 -NCIT:C173843 Maxillofacial Mesenchymal Chondrosarcoma 6 112525 -NCIT:C176467 Synovial Chondrosarcoma 5 112526 -NCIT:C189027 Childhood Chondrosarcoma 5 112527 -NCIT:C189026 Childhood Primary Central Chondrosarcoma 6 112528 -NCIT:C27374 Childhood Mesenchymal Chondrosarcoma 6 112529 -NCIT:C27482 Secondary Chondrosarcoma 5 112530 -NCIT:C121881 Secondary Central Chondrosarcoma 6 112531 -NCIT:C178477 Secondary Central Atypical Cartilaginous Tumor/Chondrosarcoma, Grade 1 7 112532 -NCIT:C121882 Secondary Peripheral Chondrosarcoma 6 112533 -NCIT:C178481 Secondary Peripheral Chondrosarcoma, Grade 1 7 112534 -NCIT:C178492 Secondary Peripheral Chondrosarcoma, Grade 2 7 112535 -NCIT:C178494 Secondary Peripheral Chondrosarcoma, Grade 3 7 112536 -NCIT:C3737 Mesenchymal Chondrosarcoma 5 112537 -NCIT:C129534 Central Nervous System Mesenchymal Chondrosarcoma 6 112538 -NCIT:C27374 Childhood Mesenchymal Chondrosarcoma 6 112539 -NCIT:C27375 Adult Mesenchymal Chondrosarcoma 6 112540 -NCIT:C53493 Mesenchymal Chondrosarcoma of Bone 6 112541 -NCIT:C173843 Maxillofacial Mesenchymal Chondrosarcoma 7 112542 -NCIT:C6475 Clear Cell Chondrosarcoma 5 112543 -NCIT:C6476 Dedifferentiated Chondrosarcoma 5 112544 -NCIT:C7155 Primary Central Chondrosarcoma 5 112545 -NCIT:C171070 Unresectable Primary Central Chondrosarcoma 6 112546 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 7 112547 -NCIT:C171072 Metastatic Primary Central Chondrosarcoma 6 112548 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 7 112549 -NCIT:C178476 Primary Central Atypical Cartilaginous Tumor/Chondrosarcoma, Grade 1 6 112550 -NCIT:C189026 Childhood Primary Central Chondrosarcoma 6 112551 -NCIT:C7357 Periosteal Chondrosarcoma 5 112552 -NCIT:C8778 Localized Chondrosarcoma 5 112553 -NCIT:C8779 Metastatic Chondrosarcoma 5 112554 -NCIT:C170953 Locally Advanced Chondrosarcoma 6 112555 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 7 112556 -NCIT:C171072 Metastatic Primary Central Chondrosarcoma 6 112557 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 7 112558 -NCIT:C8780 Recurrent Chondrosarcoma 5 112559 -NCIT:C9027 Atypical Cartilaginous Tumor/Chondrosarcoma, Grade 1 5 112560 -NCIT:C178473 Central Atypical Cartilaginous Tumor/Chondrosarcoma, Grade 1 6 112561 -NCIT:C178476 Primary Central Atypical Cartilaginous Tumor/Chondrosarcoma, Grade 1 7 112562 -NCIT:C178477 Secondary Central Atypical Cartilaginous Tumor/Chondrosarcoma, Grade 1 7 112563 -NCIT:C178478 Central Atypical Cartilaginous Tumor 7 112564 -NCIT:C178479 Central Chondrosarcoma, Grade 1 7 112565 -NCIT:C178480 Secondary Peripheral Atypical Cartilaginous Tumor/Chondrosarcoma, Grade 1 6 112566 -NCIT:C178481 Secondary Peripheral Chondrosarcoma, Grade 1 7 112567 -NCIT:C178482 Secondary Peripheral Atypical Cartilaginous Tumor 7 112568 -NCIT:C178483 Atypical Cartilaginous Tumor 6 112569 -NCIT:C178478 Central Atypical Cartilaginous Tumor 7 112570 -NCIT:C178482 Secondary Peripheral Atypical Cartilaginous Tumor 7 112571 -NCIT:C178484 Chondrosarcoma, Grade 1 6 112572 -NCIT:C178479 Central Chondrosarcoma, Grade 1 7 112573 -NCIT:C178481 Secondary Peripheral Chondrosarcoma, Grade 1 7 112574 -NCIT:C3043 Fibrosarcoma 4 112575 -NCIT:C158428 Recurrent Fibrosarcoma 5 112576 -NCIT:C158429 Refractory Fibrosarcoma 5 112577 -NCIT:C168717 Unresectable Fibrosarcoma 5 112578 -NCIT:C178372 Unresectable Myxofibrosarcoma 6 112579 -NCIT:C4317 Ameloblastic Fibrosarcoma 5 112580 -NCIT:C45202 Low Grade Fibromyxoid Sarcoma 5 112581 -NCIT:C188970 Childhood Low Grade Fibromyxoid Sarcoma 6 112582 -NCIT:C45203 Low Grade Fibromyxoid Sarcoma with Giant Collagen Rosettes 6 112583 -NCIT:C45210 Classical Low Grade Fibromyxoid Sarcoma 6 112584 -NCIT:C49024 Low Grade Myofibroblastic Sarcoma 5 112585 -NCIT:C173478 Oral Cavity Low Grade Myofibroblastic Sarcoma 6 112586 -NCIT:C188973 Childhood Low Grade Myofibroblastic Sarcoma 6 112587 -NCIT:C49027 Sclerosing Epithelioid Fibrosarcoma 5 112588 -NCIT:C188971 Childhood Sclerosing Epithelioid Fibrosarcoma 6 112589 -NCIT:C5060 Localized Fibrosarcoma 5 112590 -NCIT:C6604 Bone Fibrosarcoma 5 112591 -NCIT:C6605 Soft Tissue Fibrosarcoma 5 112592 -NCIT:C173120 Sinonasal Fibrosarcoma 6 112593 -NCIT:C173478 Oral Cavity Low Grade Myofibroblastic Sarcoma 6 112594 -NCIT:C49025 Myxoinflammatory Fibroblastic Sarcoma 6 112595 -NCIT:C5185 Breast Fibrosarcoma 6 112596 -NCIT:C5233 Ovarian Fibrosarcoma 6 112597 -NCIT:C5336 Small Intestinal Fibrosarcoma 6 112598 -NCIT:C5361 Cardiac Fibrosarcoma 6 112599 -NCIT:C147004 Cardiac Myxofibrosarcoma 7 112600 -NCIT:C5465 Central Nervous System Fibrosarcoma 6 112601 -NCIT:C5832 Liver Fibrosarcoma 6 112602 -NCIT:C6496 Myxofibrosarcoma 6 112603 -NCIT:C147004 Cardiac Myxofibrosarcoma 7 112604 -NCIT:C168670 Metastatic Myxofibrosarcoma 7 112605 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 8 112606 -NCIT:C171304 Advanced Myxofibrosarcoma 8 112607 -NCIT:C172632 Skin Myxofibrosarcoma 7 112608 -NCIT:C177414 Epithelioid Myxofibrosarcoma 7 112609 -NCIT:C178372 Unresectable Myxofibrosarcoma 7 112610 -NCIT:C7726 Kidney Fibrosarcoma 6 112611 -NCIT:C66765 Fascial Fibrosarcoma 5 112612 -NCIT:C7809 Adult Fibrosarcoma 5 112613 -NCIT:C8088 Childhood Fibrosarcoma 5 112614 -NCIT:C188970 Childhood Low Grade Fibromyxoid Sarcoma 6 112615 -NCIT:C188971 Childhood Sclerosing Epithelioid Fibrosarcoma 6 112616 -NCIT:C188973 Childhood Low Grade Myofibroblastic Sarcoma 6 112617 -NCIT:C4244 Infantile Fibrosarcoma 6 112618 -NCIT:C8812 Metastatic Fibrosarcoma 5 112619 -NCIT:C168670 Metastatic Myxofibrosarcoma 6 112620 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 7 112621 -NCIT:C171304 Advanced Myxofibrosarcoma 7 112622 -NCIT:C168716 Advanced Fibrosarcoma 6 112623 -NCIT:C171304 Advanced Myxofibrosarcoma 7 112624 -NCIT:C171317 Locally Advanced Fibrosarcoma 6 112625 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 7 112626 -NCIT:C9025 Well Differentiated Fibrosarcoma 5 112627 -NCIT:C9404 Poorly Differentiated Fibrosarcoma 5 112628 -NCIT:C9429 Conventional Fibrosarcoma 5 112629 -NCIT:C3088 Angiosarcoma 4 112630 -NCIT:C121671 Soft Tissue Angiosarcoma 5 112631 -NCIT:C162578 Penile Angiosarcoma 6 112632 -NCIT:C171026 Visceral Angiosarcoma 6 112633 -NCIT:C147097 Cardiac Angiosarcoma 7 112634 -NCIT:C147101 Pericardial Angiosarcoma 7 112635 -NCIT:C159205 Kidney Angiosarcoma 7 112636 -NCIT:C159671 Bladder Angiosarcoma 7 112637 -NCIT:C161642 Seminal Vesicle Angiosarcoma 7 112638 -NCIT:C4438 Liver Angiosarcoma 7 112639 -NCIT:C190020 Childhood Liver Angiosarcoma 8 112640 -NCIT:C4564 Splenic Angiosarcoma 7 112641 -NCIT:C48320 Adrenal Gland Angiosarcoma 7 112642 -NCIT:C5232 Ovarian Angiosarcoma 7 112643 -NCIT:C5376 Aortic Angiosarcoma 7 112644 -NCIT:C5378 Superior Vena Cava Angiosarcoma 7 112645 -NCIT:C5385 Uterine Angiosarcoma 7 112646 -NCIT:C128049 Cervical Angiosarcoma 8 112647 -NCIT:C5528 Prostate Angiosarcoma 7 112648 -NCIT:C5840 Gallbladder Angiosarcoma 7 112649 -NCIT:C6043 Thyroid Gland Angiosarcoma 7 112650 -NCIT:C6613 Mediastinal Angiosarcoma 7 112651 -NCIT:C6746 Pulmonary Artery Angiosarcoma 7 112652 -NCIT:C96060 Small Intestinal Angiosarcoma 7 112653 -NCIT:C96511 Colorectal Angiosarcoma 7 112654 -NCIT:C173125 Sinonasal Angiosarcoma 6 112655 -NCIT:C176515 Vulvar Angiosarcoma 6 112656 -NCIT:C4489 Skin Angiosarcoma 6 112657 -NCIT:C153626 Recurrent Skin Angiosarcoma 7 112658 -NCIT:C27719 Skin Radiation-Related Angiosarcoma 7 112659 -NCIT:C40379 Angiosarcoma of the Skin of the Arm after Radical Mastectomy followed by Lymphedema 7 112660 -NCIT:C5184 Breast Angiosarcoma 6 112661 -NCIT:C133092 Recurrent Breast Angiosarcoma 7 112662 -NCIT:C176251 Primary Breast Angiosarcoma 7 112663 -NCIT:C40378 Postradiation Breast Angiosarcoma 7 112664 -NCIT:C5320 Peripheral Intraneural Angiosarcoma 6 112665 -NCIT:C5450 Central Nervous System Angiosarcoma 6 112666 -NCIT:C168718 Unresectable Angiosarcoma 5 112667 -NCIT:C175499 Conjunctival Angiosarcoma 5 112668 -NCIT:C27512 Angiosarcoma Associated with Lymphedema 5 112669 -NCIT:C40379 Angiosarcoma of the Skin of the Arm after Radical Mastectomy followed by Lymphedema 6 112670 -NCIT:C27513 Radiation-Related Angiosarcoma 5 112671 -NCIT:C27719 Skin Radiation-Related Angiosarcoma 6 112672 -NCIT:C5384 Recurrent Angiosarcoma 5 112673 -NCIT:C133092 Recurrent Breast Angiosarcoma 6 112674 -NCIT:C153626 Recurrent Skin Angiosarcoma 6 112675 -NCIT:C6479 Bone Angiosarcoma 5 112676 -NCIT:C8708 Metastatic Angiosarcoma 5 112677 -NCIT:C146856 Locally Advanced Angiosarcoma 6 112678 -NCIT:C168720 Advanced Angiosarcoma 6 112679 -NCIT:C9031 Poorly Differentiated Angiosarcoma 5 112680 -NCIT:C9040 Adult Angiosarcoma 5 112681 -NCIT:C9174 Childhood Angiosarcoma 5 112682 -NCIT:C190020 Childhood Liver Angiosarcoma 6 112683 -NCIT:C9275 Localized Angiosarcoma 5 112684 -NCIT:C9411 Angiosarcoma NCI Grade 2 5 112685 -NCIT:C9412 Angiosarcoma NCI Grade 3 5 112686 -NCIT:C9426 Conventional Angiosarcoma 5 112687 -NCIT:C3158 Leiomyosarcoma 4 112688 -NCIT:C121571 Leiomyosarcoma of Deep Soft Tissue 5 112689 -NCIT:C27904 Retroperitoneal Leiomyosarcoma 6 112690 -NCIT:C128047 Cervical Leiomyosarcoma 5 112691 -NCIT:C132147 Unresectable Leiomyosarcoma 5 112692 -NCIT:C168728 Unresectable Soft Tissue Leiomyosarcoma 6 112693 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 7 112694 -NCIT:C148294 Refractory Leiomyosarcoma 5 112695 -NCIT:C156347 Thyroid Gland Leiomyosarcoma 5 112696 -NCIT:C159670 Bladder Leiomyosarcoma 5 112697 -NCIT:C162306 EBV-Related Leiomyosarcoma 5 112698 -NCIT:C162495 Paratesticular Leiomyosarcoma 5 112699 -NCIT:C161641 Seminal Vesicle Leiomyosarcoma 6 112700 -NCIT:C162585 Penile Leiomyosarcoma 5 112701 -NCIT:C172951 Digestive System Leiomyosarcoma 5 112702 -NCIT:C188065 Pancreatic Leiomyosarcoma 6 112703 -NCIT:C27200 Gastric Leiomyosarcoma 6 112704 -NCIT:C5334 Esophageal Leiomyosarcoma 6 112705 -NCIT:C5599 Anal Leiomyosarcoma 6 112706 -NCIT:C5756 Liver Leiomyosarcoma 6 112707 -NCIT:C5841 Gallbladder Leiomyosarcoma 6 112708 -NCIT:C5848 Extrahepatic Bile Duct Leiomyosarcoma 6 112709 -NCIT:C7085 Small Intestinal Leiomyosarcoma 6 112710 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 7 112711 -NCIT:C96435 Appendix Leiomyosarcoma 6 112712 -NCIT:C96509 Colorectal Leiomyosarcoma 6 112713 -NCIT:C5494 Colon Leiomyosarcoma 7 112714 -NCIT:C5549 Rectal Leiomyosarcoma 7 112715 -NCIT:C173123 Sinonasal Leiomyosarcoma 5 112716 -NCIT:C175500 Conjunctival Leiomyosarcoma 5 112717 -NCIT:C175505 Resectable Leiomyosarcoma 5 112718 -NCIT:C178220 Pleomorphic Leiomyosarcoma 5 112719 -NCIT:C178222 Dedifferentiated Leiomyosarcoma 6 112720 -NCIT:C179926 Broad Ligament Leiomyosarcoma 5 112721 -NCIT:C188063 Pleural Leiomyosarcoma 5 112722 -NCIT:C188254 Adrenal Gland Leiomyosarcoma 5 112723 -NCIT:C27494 Granular Cell Leiomyosarcoma 5 112724 -NCIT:C27495 Inflammatory Leiomyosarcoma 5 112725 -NCIT:C3700 Epithelioid Leiomyosarcoma 5 112726 -NCIT:C40174 Uterine Corpus Epithelioid Leiomyosarcoma 6 112727 -NCIT:C3701 Myxoid Leiomyosarcoma 5 112728 -NCIT:C40175 Uterine Corpus Myxoid Leiomyosarcoma 6 112729 -NCIT:C40128 Fallopian Tube Leiomyosarcoma 5 112730 -NCIT:C40318 Vulvar Leiomyosarcoma 5 112731 -NCIT:C5186 Breast Leiomyosarcoma 5 112732 -NCIT:C5234 Ovarian Leiomyosarcoma 5 112733 -NCIT:C5364 Cardiac Leiomyosarcoma 5 112734 -NCIT:C5387 Leiomyosarcoma of Vessels 5 112735 -NCIT:C5372 Inferior Vena Cava Leiomyosarcoma 6 112736 -NCIT:C5373 Pulmonary Artery Leiomyosarcoma 6 112737 -NCIT:C5374 Pulmonary Vein Leiomyosarcoma 6 112738 -NCIT:C5388 Renal Vein Leiomyosarcoma 6 112739 -NCIT:C6745 Superior Vena Cava Leiomyosarcoma 6 112740 -NCIT:C5526 Prostate Leiomyosarcoma 5 112741 -NCIT:C5667 Lung Leiomyosarcoma 5 112742 -NCIT:C6022 Laryngeal Leiomyosarcoma 5 112743 -NCIT:C6183 Kidney Leiomyosarcoma 5 112744 -NCIT:C6326 Vaginal Leiomyosarcoma 5 112745 -NCIT:C6340 Uterine Corpus Leiomyosarcoma 5 112746 -NCIT:C139870 Uterine Corpus Leiomyosarcoma by AJCC v8 Stage 6 112747 -NCIT:C139871 Stage I Uterine Corpus Leiomyosarcoma AJCC v8 7 112748 -NCIT:C139872 Stage IA Uterine Corpus Leiomyosarcoma AJCC v8 8 112749 -NCIT:C139873 Stage IB Uterine Corpus Leiomyosarcoma AJCC v8 8 112750 -NCIT:C139874 Stage II Uterine Corpus Leiomyosarcoma AJCC v8 7 112751 -NCIT:C139875 Stage III Uterine Corpus Leiomyosarcoma AJCC v8 7 112752 -NCIT:C139876 Stage IIIA Uterine Corpus Leiomyosarcoma AJCC v8 8 112753 -NCIT:C139877 Stage IIIB Uterine Corpus Leiomyosarcoma AJCC v8 8 112754 -NCIT:C139878 Stage IIIC Uterine Corpus Leiomyosarcoma AJCC v8 8 112755 -NCIT:C139879 Stage IV Uterine Corpus Leiomyosarcoma AJCC v8 7 112756 -NCIT:C139880 Stage IVA Uterine Corpus Leiomyosarcoma AJCC v8 8 112757 -NCIT:C139881 Stage IVB Uterine Corpus Leiomyosarcoma AJCC v8 8 112758 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 6 112759 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 6 112760 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 7 112761 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 6 112762 -NCIT:C40174 Uterine Corpus Epithelioid Leiomyosarcoma 6 112763 -NCIT:C40175 Uterine Corpus Myxoid Leiomyosarcoma 6 112764 -NCIT:C6619 Mediastinal Leiomyosarcoma 5 112765 -NCIT:C6999 Central Nervous System Leiomyosarcoma 5 112766 -NCIT:C7154 Bone Leiomyosarcoma 5 112767 -NCIT:C7810 Adult Leiomyosarcoma 5 112768 -NCIT:C8093 Childhood Leiomyosarcoma 5 112769 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 6 112770 -NCIT:C8813 Metastatic Leiomyosarcoma 5 112771 -NCIT:C160917 Locally Advanced Leiomyosarcoma 6 112772 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 7 112773 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 112774 -NCIT:C165780 Advanced Leiomyosarcoma 6 112775 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 7 112776 -NCIT:C168725 Metastatic Soft Tissue Leiomyosarcoma 6 112777 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 7 112778 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 7 112779 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 112780 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 7 112781 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 112782 -NCIT:C8814 Localized Leiomyosarcoma 5 112783 -NCIT:C8815 Recurrent Leiomyosarcoma 5 112784 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 6 112785 -NCIT:C9389 Well Differentiated Leiomyosarcoma 5 112786 -NCIT:C9390 Leiomyosarcoma NCI Grade 3 5 112787 -NCIT:C9391 Leiomyosarcoma NCI Grade 2 5 112788 -NCIT:C9428 Conventional Leiomyosarcoma 5 112789 -NCIT:C3194 Liposarcoma 4 112790 -NCIT:C132148 Unresectable Liposarcoma 5 112791 -NCIT:C150598 Unresectable Dedifferentiated Liposarcoma 6 112792 -NCIT:C168719 Unresectable Myxoid Liposarcoma 6 112793 -NCIT:C182028 Unresectable Pleomorphic Liposarcoma 6 112794 -NCIT:C150594 Refractory Liposarcoma 5 112795 -NCIT:C148297 Refractory Myxoid Liposarcoma 6 112796 -NCIT:C150593 Refractory Dedifferentiated Liposarcoma 6 112797 -NCIT:C150606 Resectable Liposarcoma 5 112798 -NCIT:C150607 Resectable Dedifferentiated Liposarcoma 6 112799 -NCIT:C156279 Colon Liposarcoma 5 112800 -NCIT:C156281 Parotid Gland Liposarcoma 5 112801 -NCIT:C156282 Scrotal Liposarcoma 5 112802 -NCIT:C162493 Paratesticular Liposarcoma 5 112803 -NCIT:C173404 Tongue Liposarcoma 5 112804 -NCIT:C176989 Myxoid Pleomorphic Liposarcoma 5 112805 -NCIT:C27781 Myxoid Liposarcoma 5 112806 -NCIT:C148297 Refractory Myxoid Liposarcoma 6 112807 -NCIT:C148298 Metastatic Myxoid Liposarcoma 6 112808 -NCIT:C162763 Advanced Myxoid Liposarcoma 7 112809 -NCIT:C150579 Recurrent Myxoid Liposarcoma 6 112810 -NCIT:C168719 Unresectable Myxoid Liposarcoma 6 112811 -NCIT:C5235 Ovarian Myxoid Liposarcoma 6 112812 -NCIT:C3704 Dedifferentiated Liposarcoma 5 112813 -NCIT:C150592 Recurrent Dedifferentiated Liposarcoma 6 112814 -NCIT:C150593 Refractory Dedifferentiated Liposarcoma 6 112815 -NCIT:C150598 Unresectable Dedifferentiated Liposarcoma 6 112816 -NCIT:C150607 Resectable Dedifferentiated Liposarcoma 6 112817 -NCIT:C164070 Metastatic Dedifferentiated Liposarcoma 6 112818 -NCIT:C164071 Locally Advanced Dedifferentiated Liposarcoma 7 112819 -NCIT:C168715 Advanced Dedifferentiated Liposarcoma 7 112820 -NCIT:C3705 Pleomorphic Liposarcoma 5 112821 -NCIT:C170473 Skin Pleomorphic Liposarcoma 6 112822 -NCIT:C182025 Metastatic Pleomorphic Liposarcoma 6 112823 -NCIT:C182026 Advanced Pleomorphic Liposarcoma 7 112824 -NCIT:C182028 Unresectable Pleomorphic Liposarcoma 6 112825 -NCIT:C40321 Vulvar Liposarcoma 5 112826 -NCIT:C4253 Mixed Liposarcoma 5 112827 -NCIT:C5187 Breast Liposarcoma 5 112828 -NCIT:C5488 Gastric Liposarcoma 5 112829 -NCIT:C5615 Skin Liposarcoma 5 112830 -NCIT:C170473 Skin Pleomorphic Liposarcoma 6 112831 -NCIT:C5705 Esophageal Liposarcoma 5 112832 -NCIT:C6021 Laryngeal Liposarcoma 5 112833 -NCIT:C6185 Kidney Liposarcoma 5 112834 -NCIT:C6419 Ovarian Liposarcoma 5 112835 -NCIT:C5235 Ovarian Myxoid Liposarcoma 6 112836 -NCIT:C6614 Mediastinal Liposarcoma 5 112837 -NCIT:C95038 Thymoliposarcoma 6 112838 -NCIT:C6973 Brain Liposarcoma 5 112839 -NCIT:C7598 Bone Liposarcoma 5 112840 -NCIT:C7811 Adult Liposarcoma 5 112841 -NCIT:C8091 Childhood Liposarcoma 5 112842 -NCIT:C8816 Metastatic Liposarcoma 5 112843 -NCIT:C148298 Metastatic Myxoid Liposarcoma 6 112844 -NCIT:C162763 Advanced Myxoid Liposarcoma 7 112845 -NCIT:C160916 Locally Advanced Liposarcoma 6 112846 -NCIT:C164071 Locally Advanced Dedifferentiated Liposarcoma 7 112847 -NCIT:C164070 Metastatic Dedifferentiated Liposarcoma 6 112848 -NCIT:C164071 Locally Advanced Dedifferentiated Liposarcoma 7 112849 -NCIT:C168715 Advanced Dedifferentiated Liposarcoma 7 112850 -NCIT:C168701 Advanced Liposarcoma 6 112851 -NCIT:C162763 Advanced Myxoid Liposarcoma 7 112852 -NCIT:C168715 Advanced Dedifferentiated Liposarcoma 7 112853 -NCIT:C182026 Advanced Pleomorphic Liposarcoma 7 112854 -NCIT:C182025 Metastatic Pleomorphic Liposarcoma 6 112855 -NCIT:C182026 Advanced Pleomorphic Liposarcoma 7 112856 -NCIT:C8817 Localized Liposarcoma 5 112857 -NCIT:C8818 Recurrent Liposarcoma 5 112858 -NCIT:C150579 Recurrent Myxoid Liposarcoma 6 112859 -NCIT:C150592 Recurrent Dedifferentiated Liposarcoma 6 112860 -NCIT:C3746 Small Cell Sarcoma 4 112861 -NCIT:C165671 EWSR1-Negative Small Round Cell Tumor 5 112862 -NCIT:C120224 CIC-Rearranged Sarcoma 6 112863 -NCIT:C165663 CIC-DUX4 Sarcoma 7 112864 -NCIT:C165665 CIC-DUX4L Sarcoma 7 112865 -NCIT:C186607 Central Nervous System CIC-Rearranged Sarcoma 7 112866 -NCIT:C189006 Childhood CIC-Rearranged Sarcoma 7 112867 -NCIT:C178459 Round Cell Sarcoma with EWSR1-non-ETS Fusion 5 112868 -NCIT:C178460 Round Cell Sarcoma with EWSR1-NFATC2 Gene Fusion 6 112869 -NCIT:C178461 Round Cell Sarcoma with EWSR1-PATZ1 Gene Fusion 6 112870 -NCIT:C178462 Round Cell Sarcoma with FUS-NFATC2 Gene Fusion 6 112871 -NCIT:C189003 Childhood Round Cell Sarcoma with EWSR1-non-ETS Fusion 6 112872 -NCIT:C178465 Sarcoma with BCOR Genetic Alterations 5 112873 -NCIT:C178466 BCOR-CCNB3 Sarcoma 6 112874 -NCIT:C178468 BCOR ITD Sarcoma 6 112875 -NCIT:C189007 Childhood Sarcoma with BCOR Genetic Alterations 6 112876 -NCIT:C180546 Uterine Corpus Central Primitive Neuroectodermal Tumor 5 112877 -NCIT:C3737 Mesenchymal Chondrosarcoma 5 112878 -NCIT:C129534 Central Nervous System Mesenchymal Chondrosarcoma 6 112879 -NCIT:C27374 Childhood Mesenchymal Chondrosarcoma 6 112880 -NCIT:C27375 Adult Mesenchymal Chondrosarcoma 6 112881 -NCIT:C53493 Mesenchymal Chondrosarcoma of Bone 6 112882 -NCIT:C173843 Maxillofacial Mesenchymal Chondrosarcoma 7 112883 -NCIT:C4023 Small Cell Osteosarcoma 5 112884 -NCIT:C8300 Desmoplastic Small Round Cell Tumor 5 112885 -NCIT:C126356 Peritoneal Desmoplastic Small Round Cell Tumor 6 112886 -NCIT:C158426 Recurrent Desmoplastic Small Round Cell Tumor 6 112887 -NCIT:C158427 Refractory Desmoplastic Small Round Cell Tumor 6 112888 -NCIT:C170826 Unresectable Desmoplastic Small Round Cell Tumor 6 112889 -NCIT:C170827 Metastatic Desmoplastic Small Round Cell Tumor 6 112890 -NCIT:C180875 Locally Advanced Desmoplastic Small Round Cell Tumor 7 112891 -NCIT:C27372 Childhood Desmoplastic Small Round Cell Tumor 6 112892 -NCIT:C27373 Adult Desmoplastic Small Round Cell Tumor 6 112893 -NCIT:C3798 Malignant Peripheral Nerve Sheath Tumor 4 112894 -NCIT:C128050 Cervical Malignant Peripheral Nerve Sheath Tumor 5 112895 -NCIT:C155987 Refractory Malignant Peripheral Nerve Sheath Tumor 5 112896 -NCIT:C162725 Refractory Epithelioid Malignant Peripheral Nerve Sheath Tumor 6 112897 -NCIT:C156341 Thyroid Gland Malignant Peripheral Nerve Sheath Tumor 5 112898 -NCIT:C162584 Penile Malignant Peripheral Nerve Sheath Tumor 5 112899 -NCIT:C164312 Unresectable Malignant Peripheral Nerve Sheath Tumor 5 112900 -NCIT:C164313 NF1-Associated Malignant Peripheral Nerve Sheath Tumor 5 112901 -NCIT:C164314 Sporadic Malignant Peripheral Nerve Sheath Tumor 5 112902 -NCIT:C164316 Radiation-Induced Malignant Peripheral Nerve Sheath Tumor 5 112903 -NCIT:C172624 Malignant Peripheral Nerve Sheath Tumor of the Skin 5 112904 -NCIT:C172625 Epithelioid Malignant Peripheral Nerve Sheath Tumor of the Skin 6 112905 -NCIT:C173127 Sinonasal Malignant Peripheral Nerve Sheath Tumor 5 112906 -NCIT:C188064 Bone Malignant Peripheral Nerve Sheath Tumor 5 112907 -NCIT:C188073 Retroperitoneal Malignant Peripheral Nerve Sheath Tumor 5 112908 -NCIT:C4748 Malignant Melanotic Peripheral Nerve Sheath Tumor 5 112909 -NCIT:C6630 Malignant Melanotic Peripheral Nerve Sheath Tumor of the Mediastinum 6 112910 -NCIT:C6910 Malignant Melanotic Psammomatous Peripheral Nerve Sheath Tumor 6 112911 -NCIT:C5367 Cardiac Malignant Peripheral Nerve Sheath Tumor 5 112912 -NCIT:C6560 Glandular Malignant Peripheral Nerve Sheath Tumor 5 112913 -NCIT:C6561 Epithelioid Malignant Peripheral Nerve Sheath Tumor 5 112914 -NCIT:C162724 Recurrent Epithelioid Malignant Peripheral Nerve Sheath Tumor 6 112915 -NCIT:C162725 Refractory Epithelioid Malignant Peripheral Nerve Sheath Tumor 6 112916 -NCIT:C172625 Epithelioid Malignant Peripheral Nerve Sheath Tumor of the Skin 6 112917 -NCIT:C6626 Mediastinal Malignant Peripheral Nerve Sheath Tumor 5 112918 -NCIT:C6630 Malignant Melanotic Peripheral Nerve Sheath Tumor of the Mediastinum 6 112919 -NCIT:C66845 Malignant Peripheral Nerve Sheath Tumor with Perineurial Differentiation 5 112920 -NCIT:C7814 Adult Malignant Peripheral Nerve Sheath Tumor 5 112921 -NCIT:C8094 Childhood Malignant Peripheral Nerve Sheath Tumor 5 112922 -NCIT:C8822 Metastatic Malignant Peripheral Nerve Sheath Tumor 5 112923 -NCIT:C164074 Locally Advanced Malignant Peripheral Nerve Sheath Tumor 6 112924 -NCIT:C168714 Advanced Malignant Peripheral Nerve Sheath Tumor 6 112925 -NCIT:C8823 Recurrent Malignant Peripheral Nerve Sheath Tumor 5 112926 -NCIT:C162724 Recurrent Epithelioid Malignant Peripheral Nerve Sheath Tumor 6 112927 -NCIT:C9026 Low Grade Malignant Peripheral Nerve Sheath Tumor 5 112928 -NCIT:C9030 High Grade Malignant Peripheral Nerve Sheath Tumor 5 112929 -NCIT:C92185 Esophageal Malignant Peripheral Nerve Sheath Tumor 5 112930 -NCIT:C92186 Intraocular Malignant Peripheral Nerve Sheath Tumor 5 112931 -NCIT:C92647 Malignant Peripheral Nerve Sheath Tumor with Mesenchymal Differentiation 5 112932 -NCIT:C4335 Malignant Triton Tumor 6 112933 -NCIT:C4817 Ewing Sarcoma 4 112934 -NCIT:C132849 Unresectable Ewing Sarcoma 5 112935 -NCIT:C142853 Refractory Ewing Sarcoma 5 112936 -NCIT:C174456 Atypical Ewing Sarcoma 5 112937 -NCIT:C189002 Childhood Ewing Sarcoma 5 112938 -NCIT:C189261 Childhood Kidney Ewing Sarcoma 6 112939 -NCIT:C4835 Ewing Sarcoma of Bone 5 112940 -NCIT:C6621 Metastatic Bone Ewing Sarcoma 6 112941 -NCIT:C6622 Recurrent Bone Ewing Sarcoma 6 112942 -NCIT:C6623 Localized Bone Ewing Sarcoma 6 112943 -NCIT:C7135 Extraskeletal Ewing Sarcoma 5 112944 -NCIT:C159208 Kidney Ewing Sarcoma 6 112945 -NCIT:C189261 Childhood Kidney Ewing Sarcoma 7 112946 -NCIT:C172634 Skin Ewing Sarcoma 6 112947 -NCIT:C181977 Vulvar Ewing Sarcoma 6 112948 -NCIT:C186611 Central Nervous System Ewing Sarcoma 6 112949 -NCIT:C8801 Metastatic Extraskeletal Ewing Sarcoma 6 112950 -NCIT:C8802 Localized Extraskeletal Ewing Sarcoma 6 112951 -NCIT:C8803 Recurrent Extraskeletal Ewing Sarcoma 6 112952 -NCIT:C7806 Localized Ewing Sarcoma 5 112953 -NCIT:C6623 Localized Bone Ewing Sarcoma 6 112954 -NCIT:C8802 Localized Extraskeletal Ewing Sarcoma 6 112955 -NCIT:C7807 Metastatic Ewing Sarcoma 5 112956 -NCIT:C164080 Locally Advanced Ewing Sarcoma 6 112957 -NCIT:C6621 Metastatic Bone Ewing Sarcoma 6 112958 -NCIT:C8801 Metastatic Extraskeletal Ewing Sarcoma 6 112959 -NCIT:C7808 Recurrent Ewing Sarcoma 5 112960 -NCIT:C6622 Recurrent Bone Ewing Sarcoma 6 112961 -NCIT:C8803 Recurrent Extraskeletal Ewing Sarcoma 6 112962 -NCIT:C6921 Langerhans Cell Sarcoma 4 112963 -NCIT:C9023 Sarcoma by FNCLCC Grade 4 112964 -NCIT:C9024 FNCLCC Sarcoma Grade 1 5 112965 -NCIT:C9025 Well Differentiated Fibrosarcoma 6 112966 -NCIT:C9389 Well Differentiated Leiomyosarcoma 6 112967 -NCIT:C9028 FNCLCC Sarcoma Grade 2 5 112968 -NCIT:C6496 Myxofibrosarcoma 6 112969 -NCIT:C147004 Cardiac Myxofibrosarcoma 7 112970 -NCIT:C168670 Metastatic Myxofibrosarcoma 7 112971 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 8 112972 -NCIT:C171304 Advanced Myxofibrosarcoma 8 112973 -NCIT:C172632 Skin Myxofibrosarcoma 7 112974 -NCIT:C177414 Epithelioid Myxofibrosarcoma 7 112975 -NCIT:C178372 Unresectable Myxofibrosarcoma 7 112976 -NCIT:C9426 Conventional Angiosarcoma 6 112977 -NCIT:C9428 Conventional Leiomyosarcoma 6 112978 -NCIT:C9429 Conventional Fibrosarcoma 6 112979 -NCIT:C9029 FNCLCC Sarcoma Grade 3 5 112980 -NCIT:C27096 Liver Embryonal Sarcoma 6 112981 -NCIT:C189934 Childhood Liver Embryonal Sarcoma 7 112982 -NCIT:C189935 Adult Liver Embryonal Sarcoma 7 112983 -NCIT:C3700 Epithelioid Leiomyosarcoma 6 112984 -NCIT:C40174 Uterine Corpus Epithelioid Leiomyosarcoma 7 112985 -NCIT:C3704 Dedifferentiated Liposarcoma 6 112986 -NCIT:C150592 Recurrent Dedifferentiated Liposarcoma 7 112987 -NCIT:C150593 Refractory Dedifferentiated Liposarcoma 7 112988 -NCIT:C150598 Unresectable Dedifferentiated Liposarcoma 7 112989 -NCIT:C150607 Resectable Dedifferentiated Liposarcoma 7 112990 -NCIT:C164070 Metastatic Dedifferentiated Liposarcoma 7 112991 -NCIT:C164071 Locally Advanced Dedifferentiated Liposarcoma 8 112992 -NCIT:C168715 Advanced Dedifferentiated Liposarcoma 8 112993 -NCIT:C3705 Pleomorphic Liposarcoma 6 112994 -NCIT:C170473 Skin Pleomorphic Liposarcoma 7 112995 -NCIT:C182025 Metastatic Pleomorphic Liposarcoma 7 112996 -NCIT:C182026 Advanced Pleomorphic Liposarcoma 8 112997 -NCIT:C182028 Unresectable Pleomorphic Liposarcoma 7 112998 -NCIT:C3714 Epithelioid Sarcoma 6 112999 -NCIT:C162722 Refractory Epithelioid Sarcoma 7 113000 -NCIT:C167379 Unresectable Epithelioid Sarcoma 7 113001 -NCIT:C181971 Vulvar Epithelioid Sarcoma 7 113002 -NCIT:C181973 Vulvar Distal-Type Epithelioid Sarcoma 8 113003 -NCIT:C40319 Vulvar Proximal-Type Epithelioid Sarcoma 8 113004 -NCIT:C27472 Proximal-Type Epithelioid Sarcoma 7 113005 -NCIT:C188055 Pleural Proximal-Type Epithelioid Sarcoma 8 113006 -NCIT:C40319 Vulvar Proximal-Type Epithelioid Sarcoma 8 113007 -NCIT:C27473 Distal-Type Epithelioid Sarcoma 7 113008 -NCIT:C181973 Vulvar Distal-Type Epithelioid Sarcoma 8 113009 -NCIT:C5059 Recurrent Epithelioid Sarcoma 7 113010 -NCIT:C7944 Adult Epithelioid Sarcoma 7 113011 -NCIT:C8095 Childhood Epithelioid Sarcoma 7 113012 -NCIT:C8799 Metastatic Epithelioid Sarcoma 7 113013 -NCIT:C167378 Locally Advanced Epithelioid Sarcoma 8 113014 -NCIT:C167380 Advanced Epithelioid Sarcoma 8 113015 -NCIT:C8800 Localized Epithelioid Sarcoma 7 113016 -NCIT:C9409 Epithelioid Sarcoma NCI Grade 2 7 113017 -NCIT:C9410 Epithelioid Sarcoma NCI Grade 3 7 113018 -NCIT:C3749 Alveolar Rhabdomyosarcoma 6 113019 -NCIT:C123731 Fusion-Positive Alveolar Rhabdomyosarcoma 7 113020 -NCIT:C123732 Fusion-Negative Alveolar Rhabdomyosarcoma 7 113021 -NCIT:C128273 Vulvar Alveolar Rhabdomyosarcoma 7 113022 -NCIT:C142880 Refractory Alveolar Rhabdomyosarcoma 7 113023 -NCIT:C142881 Recurrent Alveolar Rhabdomyosarcoma 7 113024 -NCIT:C159669 Bladder Alveolar Rhabdomyosarcoma 7 113025 -NCIT:C188070 Prostate Alveolar Rhabdomyosarcoma 7 113026 -NCIT:C27492 Conventional Alveolar Rhabdomyosarcoma 7 113027 -NCIT:C27493 Solid Alveolar Rhabdomyosarcoma 7 113028 -NCIT:C6247 Orbit Alveolar Rhabdomyosarcoma 7 113029 -NCIT:C7958 Childhood Alveolar Rhabdomyosarcoma 7 113030 -NCIT:C3750 Alveolar Soft Part Sarcoma 6 113031 -NCIT:C156273 Tongue Alveolar Soft Part Sarcoma' 7 113032 -NCIT:C156276 Orbital Alveolar Soft Part Sarcoma 7 113033 -NCIT:C156277 Bladder Alveolar Soft Part Sarcoma 7 113034 -NCIT:C164078 Unresectable Alveolar Soft Part Sarcoma 7 113035 -NCIT:C173809 Lung Alveolar Soft Part Sarcoma 7 113036 -NCIT:C188034 Refractory Alveolar Soft Part Sarcoma 7 113037 -NCIT:C40225 Cervical Alveolar Soft Part Sarcoma 7 113038 -NCIT:C40320 Vulvar Alveolar Soft Part Sarcoma 7 113039 -NCIT:C7943 Adult Alveolar Soft Part Sarcoma 7 113040 -NCIT:C8092 Childhood Alveolar Soft Part Sarcoma 7 113041 -NCIT:C8796 Metastatic Alveolar Soft Part Sarcoma 7 113042 -NCIT:C164076 Locally Advanced Alveolar Soft Part Sarcoma 8 113043 -NCIT:C188198 Advanced Alveolar Soft Part Sarcoma 8 113044 -NCIT:C8797 Localized Alveolar Soft Part Sarcoma 7 113045 -NCIT:C8798 Recurrent Alveolar Soft Part Sarcoma 7 113046 -NCIT:C4279 Biphasic Synovial Sarcoma 6 113047 -NCIT:C45632 Lung Biphasic Synovial Sarcoma 7 113048 -NCIT:C45698 Pleural Biphasic Synovial Sarcoma 7 113049 -NCIT:C45757 Cardiac Biphasic Synovial Sarcoma 7 113050 -NCIT:C6497 Undifferentiated Pleomorphic Sarcoma, Inflammatory Variant 6 113051 -NCIT:C6534 Monophasic Synovial Sarcoma 6 113052 -NCIT:C4277 Spindle Cell Synovial Sarcoma 7 113053 -NCIT:C4278 Epithelial Synovial Sarcoma 7 113054 -NCIT:C45633 Lung Monophasic Synovial Sarcoma 7 113055 -NCIT:C45697 Pleural Monophasic Synovial Sarcoma 7 113056 -NCIT:C45758 Cardiac Monophasic Synovial Sarcoma 7 113057 -NCIT:C8380 Undifferentiated Pleomorphic Sarcoma with Osteoclast-Like Giant Cells 6 113058 -NCIT:C8971 Embryonal Rhabdomyosarcoma 6 113059 -NCIT:C159668 Bladder Embryonal Rhabdomyosarcoma 7 113060 -NCIT:C183250 Metastatic Embryonal Rhabdomyosarcoma 7 113061 -NCIT:C188115 Middle Ear Embryonal Rhabdomyosarcoma 7 113062 -NCIT:C49204 Anaplastic Embryonal Rhabdomyosarcoma 7 113063 -NCIT:C5525 Prostate Embryonal Rhabdomyosarcoma 7 113064 -NCIT:C5847 Extrahepatic Bile Duct Embryonal Rhabdomyosarcoma 7 113065 -NCIT:C6246 Orbit Embryonal Rhabdomyosarcoma 7 113066 -NCIT:C7957 Childhood Embryonal Rhabdomyosarcoma 7 113067 -NCIT:C35574 Childhood Botryoid-Type Embryonal Rhabdomyosarcoma 8 113068 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 9 113069 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 9 113070 -NCIT:C9150 Botryoid-Type Embryonal Rhabdomyosarcoma 7 113071 -NCIT:C35574 Childhood Botryoid-Type Embryonal Rhabdomyosarcoma 8 113072 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 9 113073 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 9 113074 -NCIT:C36099 Adult Botryoid-Type Embryonal Rhabdomyosarcoma 8 113075 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 9 113076 -NCIT:C40268 Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 8 113077 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 9 113078 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 9 113079 -NCIT:C9031 Poorly Differentiated Angiosarcoma 6 113080 -NCIT:C9404 Poorly Differentiated Fibrosarcoma 6 113081 -NCIT:C9145 Osteosarcoma 4 113082 -NCIT:C132850 Unresectable Osteosarcoma 5 113083 -NCIT:C142857 Refractory Osteosarcoma 5 113084 -NCIT:C187192 Refractory Childhood Osteosarcoma 6 113085 -NCIT:C162661 Resectable Osteosarcoma 5 113086 -NCIT:C53707 Bone Osteosarcoma 5 113087 -NCIT:C173844 Maxillofacial Osteosarcoma 6 113088 -NCIT:C189022 Childhood Bone Osteosarcoma 6 113089 -NCIT:C123398 Childhood Periosteal Osteosarcoma 7 113090 -NCIT:C6589 Childhood Parosteal Osteosarcoma 7 113091 -NCIT:C6590 Childhood Conventional Osteosarcoma 7 113092 -NCIT:C38157 Metachronous Osteosarcoma 6 113093 -NCIT:C4834 Primary Bone Osteosarcoma 6 113094 -NCIT:C136633 Osteosarcoma by AJCC v7 Stage 7 113095 -NCIT:C6612 Stage III Osteosarcoma AJCC v7 8 113096 -NCIT:C6701 Stage IV Osteosarcoma AJCC v7 8 113097 -NCIT:C6702 Stage IVA Osteosarcoma AJCC v7 9 113098 -NCIT:C6703 Stage IVB Osteosarcoma AJCC v7 9 113099 -NCIT:C6709 Stage I Osteosarcoma AJCC v7 8 113100 -NCIT:C6607 Stage IA Osteosarcoma AJCC v7 9 113101 -NCIT:C6609 Stage IB Osteosarcoma AJCC v7 9 113102 -NCIT:C6710 Stage II Osteosarcoma AJCC v7 8 113103 -NCIT:C6610 Stage IIA Osteosarcoma AJCC v7 9 113104 -NCIT:C6611 Stage IIB Osteosarcoma AJCC v7 9 113105 -NCIT:C35870 Conventional Osteosarcoma 7 113106 -NCIT:C179410 Giant Cell-Rich Osteosarcoma 8 113107 -NCIT:C4020 Fibroblastic Osteosarcoma 8 113108 -NCIT:C4021 Chondroblastic Osteosarcoma 8 113109 -NCIT:C53953 Osteoblastic Osteosarcoma 8 113110 -NCIT:C6590 Childhood Conventional Osteosarcoma 8 113111 -NCIT:C3902 Telangiectatic Osteosarcoma 7 113112 -NCIT:C4023 Small Cell Osteosarcoma 7 113113 -NCIT:C6470 Multifocal Osteosarcoma 7 113114 -NCIT:C6471 Synchronous Multifocal Osteosarcoma 8 113115 -NCIT:C6472 Asynchronous Multifocal Osteosarcoma 8 113116 -NCIT:C6474 Low Grade Central Osteosarcoma 7 113117 -NCIT:C7134 Bone Surface (Peripheral) Osteosarcoma 7 113118 -NCIT:C53958 High Grade Surface Osteosarcoma 8 113119 -NCIT:C8969 Parosteal Osteosarcoma 8 113120 -NCIT:C6589 Childhood Parosteal Osteosarcoma 9 113121 -NCIT:C8970 Periosteal Osteosarcoma 8 113122 -NCIT:C123398 Childhood Periosteal Osteosarcoma 9 113123 -NCIT:C53704 Secondary Osteosarcoma 6 113124 -NCIT:C53706 Radiation-Related Osteosarcoma 7 113125 -NCIT:C6469 Osteosarcoma Arising in Paget Disease of Bone 7 113126 -NCIT:C6585 Childhood Osteosarcoma 5 113127 -NCIT:C187189 Recurrent Childhood Osteosarcoma 6 113128 -NCIT:C187192 Refractory Childhood Osteosarcoma 6 113129 -NCIT:C189022 Childhood Bone Osteosarcoma 6 113130 -NCIT:C123398 Childhood Periosteal Osteosarcoma 7 113131 -NCIT:C6589 Childhood Parosteal Osteosarcoma 7 113132 -NCIT:C6590 Childhood Conventional Osteosarcoma 7 113133 -NCIT:C27376 Childhood Extraskeletal Osteosarcoma 6 113134 -NCIT:C7780 Localized Osteosarcoma 5 113135 -NCIT:C8809 Localized Extraskeletal Osteosarcoma 6 113136 -NCIT:C7781 Metastatic Osteosarcoma 5 113137 -NCIT:C175665 Locally Advanced Osteosarcoma 6 113138 -NCIT:C38157 Metachronous Osteosarcoma 6 113139 -NCIT:C8808 Metastatic Extraskeletal Osteosarcoma 6 113140 -NCIT:C7881 Recurrent Osteosarcoma 5 113141 -NCIT:C187189 Recurrent Childhood Osteosarcoma 6 113142 -NCIT:C8811 Recurrent Extraskeletal Osteosarcoma 6 113143 -NCIT:C8810 Extraskeletal Osteosarcoma 5 113144 -NCIT:C147003 Cardiac Extraskeletal Osteosarcoma 6 113145 -NCIT:C161035 Prostate Osteosarcoma 6 113146 -NCIT:C188061 Lung Osteosarcoma 6 113147 -NCIT:C27376 Childhood Extraskeletal Osteosarcoma 6 113148 -NCIT:C5189 Breast Extraskeletal Osteosarcoma 6 113149 -NCIT:C5833 Liver Extraskeletal Osteosarcoma 6 113150 -NCIT:C6181 Kidney Extraskeletal Osteosarcoma 6 113151 -NCIT:C6615 Mediastinal Extraskeletal Osteosarcoma 6 113152 -NCIT:C7002 Central Nervous System Extraskeletal Osteosarcoma 6 113153 -NCIT:C7925 Adult Extraskeletal Osteosarcoma 6 113154 -NCIT:C82972 Duodenal Extraskeletal Osteosarcoma 6 113155 -NCIT:C8808 Metastatic Extraskeletal Osteosarcoma 6 113156 -NCIT:C8809 Localized Extraskeletal Osteosarcoma 6 113157 -NCIT:C8811 Recurrent Extraskeletal Osteosarcoma 6 113158 -NCIT:C9281 Follicular Dendritic Cell Sarcoma 4 113159 -NCIT:C172846 Conventional Follicular Dendritic Cell Sarcoma 5 113160 -NCIT:C172847 EBV-Positive Inflammatory Follicular Dendritic Cell Sarcoma 5 113161 -NCIT:C150704 EBV-Positive Inflammatory Follicular Dendritic Cell Sarcoma of the Digestive System 6 113162 -NCIT:C173580 Head and Neck Follicular Dendritic Cell Sarcoma 5 113163 -NCIT:C156408 Thyroid Gland Follicular Dendritic Cell Sarcoma 6 113164 -NCIT:C183374 Mediastinal Follicular Dendritic Cell Sarcoma 5 113165 -NCIT:C9282 Interdigitating Dendritic Cell Sarcoma 4 113166 -NCIT:C9306 Soft Tissue Sarcoma 4 113167 -NCIT:C121571 Leiomyosarcoma of Deep Soft Tissue 5 113168 -NCIT:C27904 Retroperitoneal Leiomyosarcoma 6 113169 -NCIT:C121671 Soft Tissue Angiosarcoma 5 113170 -NCIT:C162578 Penile Angiosarcoma 6 113171 -NCIT:C171026 Visceral Angiosarcoma 6 113172 -NCIT:C147097 Cardiac Angiosarcoma 7 113173 -NCIT:C147101 Pericardial Angiosarcoma 7 113174 -NCIT:C159205 Kidney Angiosarcoma 7 113175 -NCIT:C159671 Bladder Angiosarcoma 7 113176 -NCIT:C161642 Seminal Vesicle Angiosarcoma 7 113177 -NCIT:C4438 Liver Angiosarcoma 7 113178 -NCIT:C190020 Childhood Liver Angiosarcoma 8 113179 -NCIT:C4564 Splenic Angiosarcoma 7 113180 -NCIT:C48320 Adrenal Gland Angiosarcoma 7 113181 -NCIT:C5232 Ovarian Angiosarcoma 7 113182 -NCIT:C5376 Aortic Angiosarcoma 7 113183 -NCIT:C5378 Superior Vena Cava Angiosarcoma 7 113184 -NCIT:C5385 Uterine Angiosarcoma 7 113185 -NCIT:C128049 Cervical Angiosarcoma 8 113186 -NCIT:C5528 Prostate Angiosarcoma 7 113187 -NCIT:C5840 Gallbladder Angiosarcoma 7 113188 -NCIT:C6043 Thyroid Gland Angiosarcoma 7 113189 -NCIT:C6613 Mediastinal Angiosarcoma 7 113190 -NCIT:C6746 Pulmonary Artery Angiosarcoma 7 113191 -NCIT:C96060 Small Intestinal Angiosarcoma 7 113192 -NCIT:C96511 Colorectal Angiosarcoma 7 113193 -NCIT:C173125 Sinonasal Angiosarcoma 6 113194 -NCIT:C176515 Vulvar Angiosarcoma 6 113195 -NCIT:C4489 Skin Angiosarcoma 6 113196 -NCIT:C153626 Recurrent Skin Angiosarcoma 7 113197 -NCIT:C27719 Skin Radiation-Related Angiosarcoma 7 113198 -NCIT:C40379 Angiosarcoma of the Skin of the Arm after Radical Mastectomy followed by Lymphedema 7 113199 -NCIT:C5184 Breast Angiosarcoma 6 113200 -NCIT:C133092 Recurrent Breast Angiosarcoma 7 113201 -NCIT:C176251 Primary Breast Angiosarcoma 7 113202 -NCIT:C40378 Postradiation Breast Angiosarcoma 7 113203 -NCIT:C5320 Peripheral Intraneural Angiosarcoma 6 113204 -NCIT:C5450 Central Nervous System Angiosarcoma 6 113205 -NCIT:C121793 Undifferentiated Soft Tissue Sarcoma 5 113206 -NCIT:C121797 Undifferentiated Spindle Cell Sarcoma 6 113207 -NCIT:C121799 Undifferentiated Round Cell Sarcoma 6 113208 -NCIT:C121802 Undifferentiated Epithelioid Sarcoma 6 113209 -NCIT:C121804 Undifferentiated Sarcoma, Not Otherwise Specified 6 113210 -NCIT:C4247 Undifferentiated Pleomorphic Sarcoma 6 113211 -NCIT:C114541 Adult Undifferentiated Pleomorphic Sarcoma 7 113212 -NCIT:C114749 Childhood Undifferentiated Pleomorphic Sarcoma 7 113213 -NCIT:C129566 Central Nervous System Undifferentiated Pleomorphic Sarcoma 7 113214 -NCIT:C148295 Refractory Undifferentiated Pleomorphic Sarcoma 7 113215 -NCIT:C150610 Unresectable Undifferentiated Pleomorphic Sarcoma 7 113216 -NCIT:C150611 Resectable Undifferentiated Pleomorphic Sarcoma 7 113217 -NCIT:C151985 Abdominal Undifferentiated Pleomorphic Sarcoma 7 113218 -NCIT:C161038 Prostate Undifferentiated Pleomorphic Sarcoma 7 113219 -NCIT:C162589 Penile Undifferentiated Pleomorphic Sarcoma 7 113220 -NCIT:C173121 Sinonasal Undifferentiated Pleomorphic Sarcoma 7 113221 -NCIT:C173808 Retroperitoneal Undifferentiated Pleomorphic Sarcoma 7 113222 -NCIT:C45755 Cardiac Undifferentiated Pleomorphic Sarcoma 7 113223 -NCIT:C4926 Metastatic Undifferentiated Pleomorphic Sarcoma 7 113224 -NCIT:C160919 Locally Advanced Undifferentiated Pleomorphic Sarcoma 8 113225 -NCIT:C165781 Advanced Undifferentiated Pleomorphic Sarcoma 8 113226 -NCIT:C5576 Skin Undifferentiated Pleomorphic Sarcoma 7 113227 -NCIT:C6497 Undifferentiated Pleomorphic Sarcoma, Inflammatory Variant 7 113228 -NCIT:C8380 Undifferentiated Pleomorphic Sarcoma with Osteoclast-Like Giant Cells 7 113229 -NCIT:C8795 Recurrent Undifferentiated Pleomorphic Sarcoma 7 113230 -NCIT:C128047 Cervical Leiomyosarcoma 5 113231 -NCIT:C128048 Cervical Rhabdomyosarcoma 5 113232 -NCIT:C128050 Cervical Malignant Peripheral Nerve Sheath Tumor 5 113233 -NCIT:C136693 Soft Tissue Sarcoma by AJCC v8 Stage 5 113234 -NCIT:C136694 Soft Tissue Sarcoma of the Trunk and Extremities by AJCC v8 Stage 6 113235 -NCIT:C136696 Stage I Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 7 113236 -NCIT:C136698 Stage IA Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 8 113237 -NCIT:C136700 Stage IB Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 8 113238 -NCIT:C136701 Stage II Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 7 113239 -NCIT:C136702 Stage III Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 7 113240 -NCIT:C136703 Stage IIIA Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 8 113241 -NCIT:C136705 Stage IIIB Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 8 113242 -NCIT:C136706 Stage IV Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 7 113243 -NCIT:C136767 Gastrointestinal Stromal Tumor by AJCC v8 Stage 6 113244 -NCIT:C136768 Gastric and Omental Gastrointestinal Stromal Tumor by AJCC v8 Stage 7 113245 -NCIT:C136770 Stage I Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 8 113246 -NCIT:C136771 Stage IA Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 9 113247 -NCIT:C136772 Stage IB Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 9 113248 -NCIT:C136773 Stage II Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 8 113249 -NCIT:C136774 Stage III Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 8 113250 -NCIT:C136775 Stage IIIA Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 9 113251 -NCIT:C136777 Stage IIIB Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 9 113252 -NCIT:C136778 Stage IV Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 8 113253 -NCIT:C136769 Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor by AJCC v8 Stage 7 113254 -NCIT:C136780 Stage I Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 8 113255 -NCIT:C136781 Stage II Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 8 113256 -NCIT:C136783 Stage III Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 8 113257 -NCIT:C136784 Stage IIIA Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 9 113258 -NCIT:C136785 Stage IIIB Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 9 113259 -NCIT:C136786 Stage IV Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 8 113260 -NCIT:C136811 Retroperitoneal Sarcoma by AJCC v8 Stage 6 113261 -NCIT:C136812 Stage I Retroperitoneal Sarcoma AJCC v8 7 113262 -NCIT:C136813 Stage IA Retroperitoneal Sarcoma AJCC v8 8 113263 -NCIT:C136814 Stage IB Retroperitoneal Sarcoma AJCC v8 8 113264 -NCIT:C136815 Stage II Retroperitoneal Sarcoma AJCC v8 7 113265 -NCIT:C136816 Stage III Retroperitoneal Sarcoma AJCC v8 7 113266 -NCIT:C136817 Stage IIIA Retroperitoneal Sarcoma AJCC v8 8 113267 -NCIT:C136818 Stage IIIB Retroperitoneal Sarcoma AJCC v8 8 113268 -NCIT:C136819 Stage IV Retroperitoneal Sarcoma AJCC v8 7 113269 -NCIT:C136707 Soft Tissue Sarcoma by AJCC v7 Stage 5 113270 -NCIT:C6537 Stage I Soft Tissue Sarcoma AJCC v7 6 113271 -NCIT:C7818 Stage I Adult Soft Tissue Sarcoma AJCC v7 7 113272 -NCIT:C8569 Stage IA Adult Soft Tissue Sarcoma AJCC v7 8 113273 -NCIT:C8570 Stage IB Adult Soft Tissue Sarcoma AJCC v7 8 113274 -NCIT:C8580 Stage IB Soft Tissue Sarcoma AJCC v7 7 113275 -NCIT:C8570 Stage IB Adult Soft Tissue Sarcoma AJCC v7 8 113276 -NCIT:C8583 Stage IA Soft Tissue Sarcoma AJCC v7 7 113277 -NCIT:C8569 Stage IA Adult Soft Tissue Sarcoma AJCC v7 8 113278 -NCIT:C6538 Stage II Soft Tissue Sarcoma AJCC v7 6 113279 -NCIT:C7819 Stage II Adult Soft Tissue Sarcoma AJCC v7 7 113280 -NCIT:C8571 Stage IIA Adult Soft Tissue Sarcoma AJCC v7 8 113281 -NCIT:C8572 Stage IIB Adult Soft Tissue Sarcoma AJCC v7 8 113282 -NCIT:C8581 Stage IIA Soft Tissue Sarcoma AJCC v7 7 113283 -NCIT:C8571 Stage IIA Adult Soft Tissue Sarcoma AJCC v7 8 113284 -NCIT:C8582 Stage IIB Soft Tissue Sarcoma AJCC v7 7 113285 -NCIT:C8572 Stage IIB Adult Soft Tissue Sarcoma AJCC v7 8 113286 -NCIT:C8585 Stage III Soft Tissue Sarcoma AJCC v7 6 113287 -NCIT:C7820 Stage III Adult Soft Tissue Sarcoma AJCC v7 7 113288 -NCIT:C8586 Stage IV Soft Tissue Sarcoma AJCC v7 6 113289 -NCIT:C4243 Sarcomatosis 7 113290 -NCIT:C4334 Meningeal Sarcomatosis 8 113291 -NCIT:C7821 Stage IV Adult Soft Tissue Sarcoma AJCC v7 7 113292 -NCIT:C139001 Refractory Soft Tissue Sarcoma 5 113293 -NCIT:C142851 Refractory Rhabdomyosarcoma 6 113294 -NCIT:C142880 Refractory Alveolar Rhabdomyosarcoma 7 113295 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 7 113296 -NCIT:C148295 Refractory Undifferentiated Pleomorphic Sarcoma 6 113297 -NCIT:C148296 Refractory Synovial Sarcoma 6 113298 -NCIT:C156474 Refractory Kaposi Sarcoma 6 113299 -NCIT:C158427 Refractory Desmoplastic Small Round Cell Tumor 6 113300 -NCIT:C162722 Refractory Epithelioid Sarcoma 6 113301 -NCIT:C171168 Refractory Extraskeletal Myxoid Chondrosarcoma 6 113302 -NCIT:C180979 Refractory Clear Cell Sarcoma of Soft Tissue 6 113303 -NCIT:C185882 Refractory Malignant Gastrointestinal Stromal Tumor 6 113304 -NCIT:C187194 Refractory Childhood Soft Tissue Sarcoma 6 113305 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 7 113306 -NCIT:C188034 Refractory Alveolar Soft Part Sarcoma 6 113307 -NCIT:C139002 Recurrent Soft Tissue Sarcoma 5 113308 -NCIT:C153626 Recurrent Skin Angiosarcoma 6 113309 -NCIT:C158426 Recurrent Desmoplastic Small Round Cell Tumor 6 113310 -NCIT:C169050 Recurrent Soft Tissue Sarcoma of the Trunk and Extremities 6 113311 -NCIT:C170727 Recurrent Breast Sarcoma 6 113312 -NCIT:C133092 Recurrent Breast Angiosarcoma 7 113313 -NCIT:C180980 Recurrent Clear Cell Sarcoma of Soft Tissue 6 113314 -NCIT:C5059 Recurrent Epithelioid Sarcoma 6 113315 -NCIT:C7822 Recurrent Adult Soft Tissue Sarcoma 6 113316 -NCIT:C7935 Recurrent Kaposi Sarcoma 6 113317 -NCIT:C8067 Recurrent Childhood Soft Tissue Sarcoma 6 113318 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 7 113319 -NCIT:C8261 Recurrent Uterine Corpus Sarcoma 6 113320 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 7 113321 -NCIT:C8795 Recurrent Undifferentiated Pleomorphic Sarcoma 6 113322 -NCIT:C8798 Recurrent Alveolar Soft Part Sarcoma 6 113323 -NCIT:C8803 Recurrent Extraskeletal Ewing Sarcoma 6 113324 -NCIT:C8807 Recurrent Extraskeletal Myxoid Chondrosarcoma 6 113325 -NCIT:C8811 Recurrent Extraskeletal Osteosarcoma 6 113326 -NCIT:C8824 Recurrent Rhabdomyosarcoma 6 113327 -NCIT:C142881 Recurrent Alveolar Rhabdomyosarcoma 7 113328 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 7 113329 -NCIT:C8827 Recurrent Synovial Sarcoma 6 113330 -NCIT:C147098 Pericardial Sarcoma 5 113331 -NCIT:C147101 Pericardial Angiosarcoma 6 113332 -NCIT:C147102 Pericardial Synovial Sarcoma 6 113333 -NCIT:C153068 Unresectable Soft Tissue Sarcoma 5 113334 -NCIT:C150610 Unresectable Undifferentiated Pleomorphic Sarcoma 6 113335 -NCIT:C150741 Unresectable Malignant Gastrointestinal Stromal Tumor 6 113336 -NCIT:C151983 Unresectable Rhabdomyosarcoma 6 113337 -NCIT:C153074 Unresectable Synovial Sarcoma 6 113338 -NCIT:C153476 Locally Advanced Unresectable Soft Tissue Sarcoma 6 113339 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 7 113340 -NCIT:C164078 Unresectable Alveolar Soft Part Sarcoma 6 113341 -NCIT:C167379 Unresectable Epithelioid Sarcoma 6 113342 -NCIT:C168728 Unresectable Soft Tissue Leiomyosarcoma 6 113343 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 7 113344 -NCIT:C170826 Unresectable Desmoplastic Small Round Cell Tumor 6 113345 -NCIT:C178372 Unresectable Myxofibrosarcoma 6 113346 -NCIT:C190016 Unresectable Uterine Corpus Sarcoma 6 113347 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 7 113348 -NCIT:C153069 Metastatic Soft Tissue Sarcoma 5 113349 -NCIT:C150738 Metastatic Gastrointestinal Stromal Tumor 6 113350 -NCIT:C150739 Locally Advanced Gastrointestinal Stromal Tumor 7 113351 -NCIT:C173502 Advanced Gastrointestinal Stromal Tumor 7 113352 -NCIT:C153066 Locally Advanced Soft Tissue Sarcoma 6 113353 -NCIT:C150739 Locally Advanced Gastrointestinal Stromal Tumor 7 113354 -NCIT:C153476 Locally Advanced Unresectable Soft Tissue Sarcoma 7 113355 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 8 113356 -NCIT:C160919 Locally Advanced Undifferentiated Pleomorphic Sarcoma 7 113357 -NCIT:C164076 Locally Advanced Alveolar Soft Part Sarcoma 7 113358 -NCIT:C166415 Locally Advanced Rhabdomyosarcoma 7 113359 -NCIT:C167378 Locally Advanced Epithelioid Sarcoma 7 113360 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 7 113361 -NCIT:C171399 Locally Advanced Synovial Sarcoma 7 113362 -NCIT:C180875 Locally Advanced Desmoplastic Small Round Cell Tumor 7 113363 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 7 113364 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 113365 -NCIT:C156071 Metastatic Adult Soft Tissue Sarcoma 6 113366 -NCIT:C156475 Metastatic Kaposi Sarcoma 6 113367 -NCIT:C156476 Advanced Kaposi Sarcoma 7 113368 -NCIT:C161585 Metastatic Clear Cell Sarcoma of Soft Tissue 6 113369 -NCIT:C161586 Advanced Clear Cell Sarcoma of Soft Tissue 7 113370 -NCIT:C162194 Advanced Soft Tissue Sarcoma 6 113371 -NCIT:C153184 Advanced Synovial Sarcoma 7 113372 -NCIT:C156476 Advanced Kaposi Sarcoma 7 113373 -NCIT:C161586 Advanced Clear Cell Sarcoma of Soft Tissue 7 113374 -NCIT:C164246 Advanced Malignant PEComa 7 113375 -NCIT:C165781 Advanced Undifferentiated Pleomorphic Sarcoma 7 113376 -NCIT:C167380 Advanced Epithelioid Sarcoma 7 113377 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 7 113378 -NCIT:C171304 Advanced Myxofibrosarcoma 7 113379 -NCIT:C173502 Advanced Gastrointestinal Stromal Tumor 7 113380 -NCIT:C188198 Advanced Alveolar Soft Part Sarcoma 7 113381 -NCIT:C164245 Metastatic Malignant PEComa 6 113382 -NCIT:C164246 Advanced Malignant PEComa 7 113383 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 7 113384 -NCIT:C166414 Metastatic Rhabdomyosarcoma 6 113385 -NCIT:C166415 Locally Advanced Rhabdomyosarcoma 7 113386 -NCIT:C183250 Metastatic Embryonal Rhabdomyosarcoma 7 113387 -NCIT:C168670 Metastatic Myxofibrosarcoma 6 113388 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 7 113389 -NCIT:C171304 Advanced Myxofibrosarcoma 7 113390 -NCIT:C168725 Metastatic Soft Tissue Leiomyosarcoma 6 113391 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 7 113392 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 7 113393 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 113394 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 7 113395 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 113396 -NCIT:C170827 Metastatic Desmoplastic Small Round Cell Tumor 6 113397 -NCIT:C180875 Locally Advanced Desmoplastic Small Round Cell Tumor 7 113398 -NCIT:C190009 Metastatic Uterine Corpus Sarcoma 6 113399 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 7 113400 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 113401 -NCIT:C4926 Metastatic Undifferentiated Pleomorphic Sarcoma 6 113402 -NCIT:C160919 Locally Advanced Undifferentiated Pleomorphic Sarcoma 7 113403 -NCIT:C165781 Advanced Undifferentiated Pleomorphic Sarcoma 7 113404 -NCIT:C8066 Metastatic Childhood Soft Tissue Sarcoma 6 113405 -NCIT:C8796 Metastatic Alveolar Soft Part Sarcoma 6 113406 -NCIT:C164076 Locally Advanced Alveolar Soft Part Sarcoma 7 113407 -NCIT:C188198 Advanced Alveolar Soft Part Sarcoma 7 113408 -NCIT:C8799 Metastatic Epithelioid Sarcoma 6 113409 -NCIT:C167378 Locally Advanced Epithelioid Sarcoma 7 113410 -NCIT:C167380 Advanced Epithelioid Sarcoma 7 113411 -NCIT:C8801 Metastatic Extraskeletal Ewing Sarcoma 6 113412 -NCIT:C8804 Metastatic Extraskeletal Myxoid Chondrosarcoma 6 113413 -NCIT:C8808 Metastatic Extraskeletal Osteosarcoma 6 113414 -NCIT:C8825 Metastatic Synovial Sarcoma 6 113415 -NCIT:C153184 Advanced Synovial Sarcoma 7 113416 -NCIT:C171399 Locally Advanced Synovial Sarcoma 7 113417 -NCIT:C153086 Resectable Soft Tissue Sarcoma 5 113418 -NCIT:C150611 Resectable Undifferentiated Pleomorphic Sarcoma 6 113419 -NCIT:C156283 Scrotal Sarcoma 5 113420 -NCIT:C156282 Scrotal Liposarcoma 6 113421 -NCIT:C162493 Paratesticular Liposarcoma 5 113422 -NCIT:C162495 Paratesticular Leiomyosarcoma 5 113423 -NCIT:C161641 Seminal Vesicle Leiomyosarcoma 6 113424 -NCIT:C162497 Paratesticular Rhabdomyosarcoma 5 113425 -NCIT:C165190 Soft Tissue Sarcoma of the Trunk and Extremities 5 113426 -NCIT:C136694 Soft Tissue Sarcoma of the Trunk and Extremities by AJCC v8 Stage 6 113427 -NCIT:C136696 Stage I Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 7 113428 -NCIT:C136698 Stage IA Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 8 113429 -NCIT:C136700 Stage IB Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 8 113430 -NCIT:C136701 Stage II Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 7 113431 -NCIT:C136702 Stage III Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 7 113432 -NCIT:C136703 Stage IIIA Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 8 113433 -NCIT:C136705 Stage IIIB Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 8 113434 -NCIT:C136706 Stage IV Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 7 113435 -NCIT:C169050 Recurrent Soft Tissue Sarcoma of the Trunk and Extremities 6 113436 -NCIT:C172849 Digestive System Sarcoma 5 113437 -NCIT:C150704 EBV-Positive Inflammatory Follicular Dendritic Cell Sarcoma of the Digestive System 6 113438 -NCIT:C172951 Digestive System Leiomyosarcoma 6 113439 -NCIT:C188065 Pancreatic Leiomyosarcoma 7 113440 -NCIT:C27200 Gastric Leiomyosarcoma 7 113441 -NCIT:C5334 Esophageal Leiomyosarcoma 7 113442 -NCIT:C5599 Anal Leiomyosarcoma 7 113443 -NCIT:C5756 Liver Leiomyosarcoma 7 113444 -NCIT:C5841 Gallbladder Leiomyosarcoma 7 113445 -NCIT:C5848 Extrahepatic Bile Duct Leiomyosarcoma 7 113446 -NCIT:C7085 Small Intestinal Leiomyosarcoma 7 113447 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 8 113448 -NCIT:C96435 Appendix Leiomyosarcoma 7 113449 -NCIT:C96509 Colorectal Leiomyosarcoma 7 113450 -NCIT:C5494 Colon Leiomyosarcoma 8 113451 -NCIT:C5549 Rectal Leiomyosarcoma 8 113452 -NCIT:C172952 Digestive System Rhabdomyosarcoma 6 113453 -NCIT:C5610 Anal Rhabdomyosarcoma 7 113454 -NCIT:C5627 Rectal Rhabdomyosarcoma 7 113455 -NCIT:C5834 Liver Rhabdomyosarcoma 7 113456 -NCIT:C5839 Gallbladder Rhabdomyosarcoma 7 113457 -NCIT:C5860 Extrahepatic Bile Duct Rhabdomyosarcoma 7 113458 -NCIT:C5847 Extrahepatic Bile Duct Embryonal Rhabdomyosarcoma 8 113459 -NCIT:C95623 Esophageal Rhabdomyosarcoma 7 113460 -NCIT:C172955 Digestive System Kaposi Sarcoma 6 113461 -NCIT:C5529 Gastric Kaposi Sarcoma 7 113462 -NCIT:C5624 AIDS-Related Gastric Kaposi Sarcoma 8 113463 -NCIT:C5602 Anal Kaposi Sarcoma 7 113464 -NCIT:C5706 Esophageal Kaposi Sarcoma 7 113465 -NCIT:C5842 Gallbladder Kaposi Sarcoma 7 113466 -NCIT:C96059 Small Intestinal Kaposi Sarcoma 7 113467 -NCIT:C96434 Appendix Kaposi Sarcoma 7 113468 -NCIT:C96510 Colorectal Kaposi Sarcoma 7 113469 -NCIT:C5516 Colon Kaposi Sarcoma 8 113470 -NCIT:C5550 Rectal Kaposi Sarcoma 8 113471 -NCIT:C96844 Liver Kaposi Sarcoma 7 113472 -NCIT:C96951 Extrahepatic Bile Duct Kaposi Sarcoma 7 113473 -NCIT:C172980 Gastrointestinal Clear Cell Sarcoma/Malignant Gastrointestinal Neuroectodermal Tumor 6 113474 -NCIT:C27439 Gastric Sarcoma 6 113475 -NCIT:C27200 Gastric Leiomyosarcoma 7 113476 -NCIT:C5488 Gastric Liposarcoma 7 113477 -NCIT:C5529 Gastric Kaposi Sarcoma 7 113478 -NCIT:C5624 AIDS-Related Gastric Kaposi Sarcoma 8 113479 -NCIT:C95897 Gastric Malignant Gastrointestinal Stromal Tumor 7 113480 -NCIT:C95899 Gastric Synovial Sarcoma 7 113481 -NCIT:C4437 Liver Sarcoma 6 113482 -NCIT:C27096 Liver Embryonal Sarcoma 7 113483 -NCIT:C189934 Childhood Liver Embryonal Sarcoma 8 113484 -NCIT:C189935 Adult Liver Embryonal Sarcoma 8 113485 -NCIT:C4438 Liver Angiosarcoma 7 113486 -NCIT:C190020 Childhood Liver Angiosarcoma 8 113487 -NCIT:C5756 Liver Leiomyosarcoma 7 113488 -NCIT:C5832 Liver Fibrosarcoma 7 113489 -NCIT:C5833 Liver Extraskeletal Osteosarcoma 7 113490 -NCIT:C5834 Liver Rhabdomyosarcoma 7 113491 -NCIT:C96844 Liver Kaposi Sarcoma 7 113492 -NCIT:C96845 Liver Synovial Sarcoma 7 113493 -NCIT:C5029 Extrahepatic Bile Duct Sarcoma 6 113494 -NCIT:C5848 Extrahepatic Bile Duct Leiomyosarcoma 7 113495 -NCIT:C5860 Extrahepatic Bile Duct Rhabdomyosarcoma 7 113496 -NCIT:C5847 Extrahepatic Bile Duct Embryonal Rhabdomyosarcoma 8 113497 -NCIT:C96951 Extrahepatic Bile Duct Kaposi Sarcoma 7 113498 -NCIT:C5335 Small Intestinal Sarcoma 6 113499 -NCIT:C5336 Small Intestinal Fibrosarcoma 7 113500 -NCIT:C7085 Small Intestinal Leiomyosarcoma 7 113501 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 8 113502 -NCIT:C82972 Duodenal Extraskeletal Osteosarcoma 7 113503 -NCIT:C96059 Small Intestinal Kaposi Sarcoma 7 113504 -NCIT:C96060 Small Intestinal Angiosarcoma 7 113505 -NCIT:C5341 Esophageal Sarcoma 6 113506 -NCIT:C5334 Esophageal Leiomyosarcoma 7 113507 -NCIT:C5705 Esophageal Liposarcoma 7 113508 -NCIT:C5706 Esophageal Kaposi Sarcoma 7 113509 -NCIT:C92185 Esophageal Malignant Peripheral Nerve Sheath Tumor 7 113510 -NCIT:C95623 Esophageal Rhabdomyosarcoma 7 113511 -NCIT:C95624 Esophageal Synovial Sarcoma 7 113512 -NCIT:C5611 Anal Sarcoma 6 113513 -NCIT:C5599 Anal Leiomyosarcoma 7 113514 -NCIT:C5602 Anal Kaposi Sarcoma 7 113515 -NCIT:C5610 Anal Rhabdomyosarcoma 7 113516 -NCIT:C5715 Pancreatic Sarcoma 6 113517 -NCIT:C188065 Pancreatic Leiomyosarcoma 7 113518 -NCIT:C5736 Gallbladder Sarcoma 6 113519 -NCIT:C5839 Gallbladder Rhabdomyosarcoma 7 113520 -NCIT:C5840 Gallbladder Angiosarcoma 7 113521 -NCIT:C5841 Gallbladder Leiomyosarcoma 7 113522 -NCIT:C5842 Gallbladder Kaposi Sarcoma 7 113523 -NCIT:C96508 Colorectal Sarcoma 6 113524 -NCIT:C5495 Colon Sarcoma 7 113525 -NCIT:C156279 Colon Liposarcoma 8 113526 -NCIT:C5494 Colon Leiomyosarcoma 8 113527 -NCIT:C5516 Colon Kaposi Sarcoma 8 113528 -NCIT:C5548 Rectal Sarcoma 7 113529 -NCIT:C5549 Rectal Leiomyosarcoma 8 113530 -NCIT:C5550 Rectal Kaposi Sarcoma 8 113531 -NCIT:C5627 Rectal Rhabdomyosarcoma 8 113532 -NCIT:C96509 Colorectal Leiomyosarcoma 7 113533 -NCIT:C5494 Colon Leiomyosarcoma 8 113534 -NCIT:C5549 Rectal Leiomyosarcoma 8 113535 -NCIT:C96510 Colorectal Kaposi Sarcoma 7 113536 -NCIT:C5516 Colon Kaposi Sarcoma 8 113537 -NCIT:C5550 Rectal Kaposi Sarcoma 8 113538 -NCIT:C96511 Colorectal Angiosarcoma 7 113539 -NCIT:C173118 Sinonasal Sarcoma 5 113540 -NCIT:C164205 Biphenotypic Sinonasal Sarcoma 6 113541 -NCIT:C173120 Sinonasal Fibrosarcoma 6 113542 -NCIT:C173121 Sinonasal Undifferentiated Pleomorphic Sarcoma 6 113543 -NCIT:C173123 Sinonasal Leiomyosarcoma 6 113544 -NCIT:C173124 Sinonasal Rhabdomyosarcoma 6 113545 -NCIT:C173125 Sinonasal Angiosarcoma 6 113546 -NCIT:C173127 Sinonasal Malignant Peripheral Nerve Sheath Tumor 6 113547 -NCIT:C173128 Sinonasal Synovial Sarcoma 6 113548 -NCIT:C6849 Paranasal Sinus Sarcoma 6 113549 -NCIT:C6850 High Grade Paranasal Sinus Sarcoma 7 113550 -NCIT:C6851 Low Grade Paranasal Sinus Sarcoma 7 113551 -NCIT:C173408 Laryngeal Soft Tissue Sarcoma 5 113552 -NCIT:C6021 Laryngeal Liposarcoma 6 113553 -NCIT:C6022 Laryngeal Leiomyosarcoma 6 113554 -NCIT:C173481 Oral Cavity Soft Tissue Sarcoma 5 113555 -NCIT:C156274 Tongue Sarcoma 6 113556 -NCIT:C156273 Tongue Alveolar Soft Part Sarcoma' 7 113557 -NCIT:C173404 Tongue Liposarcoma 7 113558 -NCIT:C173477 Oral Cavity Kaposi Sarcoma 6 113559 -NCIT:C6749 Palate Kaposi Sarcoma 7 113560 -NCIT:C173478 Oral Cavity Low Grade Myofibroblastic Sarcoma 6 113561 -NCIT:C175502 Conjunctival Sarcoma 5 113562 -NCIT:C175499 Conjunctival Angiosarcoma 6 113563 -NCIT:C175500 Conjunctival Leiomyosarcoma 6 113564 -NCIT:C175501 Conjunctival Rhabdomyosarcoma 6 113565 -NCIT:C4578 Conjunctival Kaposi Sarcoma 6 113566 -NCIT:C176467 Synovial Chondrosarcoma 5 113567 -NCIT:C189240 Localized Soft Tissue Sarcoma 5 113568 -NCIT:C115292 Localized Childhood Soft Tissue Sarcoma 6 113569 -NCIT:C8065 Localized Childhood Rhabdomyosarcoma 7 113570 -NCIT:C8797 Localized Alveolar Soft Part Sarcoma 6 113571 -NCIT:C8800 Localized Epithelioid Sarcoma 6 113572 -NCIT:C8802 Localized Extraskeletal Ewing Sarcoma 6 113573 -NCIT:C8809 Localized Extraskeletal Osteosarcoma 6 113574 -NCIT:C8826 Localized Synovial Sarcoma 6 113575 -NCIT:C27502 Extraskeletal Myxoid Chondrosarcoma 5 113576 -NCIT:C171168 Refractory Extraskeletal Myxoid Chondrosarcoma 6 113577 -NCIT:C27377 Childhood Extraskeletal Myxoid Chondrosarcoma 6 113578 -NCIT:C27501 Conventional Extraskeletal Myxoid Chondrosarcoma 6 113579 -NCIT:C5462 Brain Extraskeletal Myxoid Chondrosarcoma 6 113580 -NCIT:C7924 Adult Extraskeletal Myxoid Chondrosarcoma 6 113581 -NCIT:C8804 Metastatic Extraskeletal Myxoid Chondrosarcoma 6 113582 -NCIT:C8807 Recurrent Extraskeletal Myxoid Chondrosarcoma 6 113583 -NCIT:C27707 Virus-Related Sarcoma 5 113584 -NCIT:C162305 EBV-Related Sarcoma 6 113585 -NCIT:C162306 EBV-Related Leiomyosarcoma 7 113586 -NCIT:C172847 EBV-Positive Inflammatory Follicular Dendritic Cell Sarcoma 7 113587 -NCIT:C150704 EBV-Positive Inflammatory Follicular Dendritic Cell Sarcoma of the Digestive System 8 113588 -NCIT:C9087 Kaposi Sarcoma 6 113589 -NCIT:C156474 Refractory Kaposi Sarcoma 7 113590 -NCIT:C156475 Metastatic Kaposi Sarcoma 7 113591 -NCIT:C156476 Advanced Kaposi Sarcoma 8 113592 -NCIT:C172955 Digestive System Kaposi Sarcoma 7 113593 -NCIT:C5529 Gastric Kaposi Sarcoma 8 113594 -NCIT:C5624 AIDS-Related Gastric Kaposi Sarcoma 9 113595 -NCIT:C5602 Anal Kaposi Sarcoma 8 113596 -NCIT:C5706 Esophageal Kaposi Sarcoma 8 113597 -NCIT:C5842 Gallbladder Kaposi Sarcoma 8 113598 -NCIT:C96059 Small Intestinal Kaposi Sarcoma 8 113599 -NCIT:C96434 Appendix Kaposi Sarcoma 8 113600 -NCIT:C96510 Colorectal Kaposi Sarcoma 8 113601 -NCIT:C5516 Colon Kaposi Sarcoma 9 113602 -NCIT:C5550 Rectal Kaposi Sarcoma 9 113603 -NCIT:C96844 Liver Kaposi Sarcoma 8 113604 -NCIT:C96951 Extrahepatic Bile Duct Kaposi Sarcoma 8 113605 -NCIT:C173477 Oral Cavity Kaposi Sarcoma 7 113606 -NCIT:C6749 Palate Kaposi Sarcoma 8 113607 -NCIT:C181938 Vulvar Kaposi Sarcoma 7 113608 -NCIT:C188980 Childhood Kaposi Sarcoma 7 113609 -NCIT:C27500 Lymphadenopathic Kaposi Sarcoma 7 113610 -NCIT:C3550 Skin Kaposi Sarcoma 7 113611 -NCIT:C9112 Classic Kaposi Sarcoma 8 113612 -NCIT:C3551 Lung Kaposi Sarcoma 7 113613 -NCIT:C35873 Iatrogenic Kaposi Sarcoma 7 113614 -NCIT:C9113 Kaposi Sarcoma Related to Immunosuppressive Treatment 8 113615 -NCIT:C27640 Transplant-Related Kaposi Sarcoma 9 113616 -NCIT:C35874 Endemic African Kaposi Sarcoma 7 113617 -NCIT:C3992 AIDS-Related Kaposi Sarcoma 7 113618 -NCIT:C5624 AIDS-Related Gastric Kaposi Sarcoma 8 113619 -NCIT:C7433 AIDS-Related Cervical Kaposi Sarcoma 8 113620 -NCIT:C4578 Conjunctival Kaposi Sarcoma 7 113621 -NCIT:C4579 Corneal Kaposi Sarcoma 7 113622 -NCIT:C5363 Cardiac Kaposi Sarcoma 7 113623 -NCIT:C5523 Prostate Kaposi Sarcoma 7 113624 -NCIT:C5952 Parotid Gland Kaposi Sarcoma 7 113625 -NCIT:C6377 Penile Kaposi Sarcoma 7 113626 -NCIT:C7006 Central Nervous System Kaposi Sarcoma 7 113627 -NCIT:C7935 Recurrent Kaposi Sarcoma 7 113628 -NCIT:C9413 Kaposi Sarcoma NCI Grade 2 7 113629 -NCIT:C9414 Kaposi Sarcoma NCI Grade 3 7 113630 -NCIT:C3255 Myxosarcoma 5 113631 -NCIT:C3400 Synovial Sarcoma 5 113632 -NCIT:C147102 Pericardial Synovial Sarcoma 6 113633 -NCIT:C148296 Refractory Synovial Sarcoma 6 113634 -NCIT:C153074 Unresectable Synovial Sarcoma 6 113635 -NCIT:C157737 Kidney Synovial Sarcoma 6 113636 -NCIT:C161034 Prostate Synovial Sarcoma 6 113637 -NCIT:C173128 Sinonasal Synovial Sarcoma 6 113638 -NCIT:C4279 Biphasic Synovial Sarcoma 6 113639 -NCIT:C45632 Lung Biphasic Synovial Sarcoma 7 113640 -NCIT:C45698 Pleural Biphasic Synovial Sarcoma 7 113641 -NCIT:C45757 Cardiac Biphasic Synovial Sarcoma 7 113642 -NCIT:C45631 Lung Synovial Sarcoma 6 113643 -NCIT:C45632 Lung Biphasic Synovial Sarcoma 7 113644 -NCIT:C45633 Lung Monophasic Synovial Sarcoma 7 113645 -NCIT:C45696 Pleural Synovial Sarcoma 6 113646 -NCIT:C45697 Pleural Monophasic Synovial Sarcoma 7 113647 -NCIT:C45698 Pleural Biphasic Synovial Sarcoma 7 113648 -NCIT:C45756 Cardiac Synovial Sarcoma 6 113649 -NCIT:C45757 Cardiac Biphasic Synovial Sarcoma 7 113650 -NCIT:C45758 Cardiac Monophasic Synovial Sarcoma 7 113651 -NCIT:C6534 Monophasic Synovial Sarcoma 6 113652 -NCIT:C4277 Spindle Cell Synovial Sarcoma 7 113653 -NCIT:C4278 Epithelial Synovial Sarcoma 7 113654 -NCIT:C45633 Lung Monophasic Synovial Sarcoma 7 113655 -NCIT:C45697 Pleural Monophasic Synovial Sarcoma 7 113656 -NCIT:C45758 Cardiac Monophasic Synovial Sarcoma 7 113657 -NCIT:C6618 Mediastinal Synovial Sarcoma 6 113658 -NCIT:C7817 Adult Synovial Sarcoma 6 113659 -NCIT:C8089 Childhood Synovial Sarcoma 6 113660 -NCIT:C8825 Metastatic Synovial Sarcoma 6 113661 -NCIT:C153184 Advanced Synovial Sarcoma 7 113662 -NCIT:C171399 Locally Advanced Synovial Sarcoma 7 113663 -NCIT:C8826 Localized Synovial Sarcoma 6 113664 -NCIT:C8827 Recurrent Synovial Sarcoma 6 113665 -NCIT:C95624 Esophageal Synovial Sarcoma 6 113666 -NCIT:C95899 Gastric Synovial Sarcoma 6 113667 -NCIT:C96845 Liver Synovial Sarcoma 6 113668 -NCIT:C3714 Epithelioid Sarcoma 5 113669 -NCIT:C162722 Refractory Epithelioid Sarcoma 6 113670 -NCIT:C167379 Unresectable Epithelioid Sarcoma 6 113671 -NCIT:C181971 Vulvar Epithelioid Sarcoma 6 113672 -NCIT:C181973 Vulvar Distal-Type Epithelioid Sarcoma 7 113673 -NCIT:C40319 Vulvar Proximal-Type Epithelioid Sarcoma 7 113674 -NCIT:C27472 Proximal-Type Epithelioid Sarcoma 6 113675 -NCIT:C188055 Pleural Proximal-Type Epithelioid Sarcoma 7 113676 -NCIT:C40319 Vulvar Proximal-Type Epithelioid Sarcoma 7 113677 -NCIT:C27473 Distal-Type Epithelioid Sarcoma 6 113678 -NCIT:C181973 Vulvar Distal-Type Epithelioid Sarcoma 7 113679 -NCIT:C5059 Recurrent Epithelioid Sarcoma 6 113680 -NCIT:C7944 Adult Epithelioid Sarcoma 6 113681 -NCIT:C8095 Childhood Epithelioid Sarcoma 6 113682 -NCIT:C8799 Metastatic Epithelioid Sarcoma 6 113683 -NCIT:C167378 Locally Advanced Epithelioid Sarcoma 7 113684 -NCIT:C167380 Advanced Epithelioid Sarcoma 7 113685 -NCIT:C8800 Localized Epithelioid Sarcoma 6 113686 -NCIT:C9409 Epithelioid Sarcoma NCI Grade 2 6 113687 -NCIT:C9410 Epithelioid Sarcoma NCI Grade 3 6 113688 -NCIT:C3745 Clear Cell Sarcoma of Soft Tissue 5 113689 -NCIT:C161585 Metastatic Clear Cell Sarcoma of Soft Tissue 6 113690 -NCIT:C161586 Advanced Clear Cell Sarcoma of Soft Tissue 7 113691 -NCIT:C180979 Refractory Clear Cell Sarcoma of Soft Tissue 6 113692 -NCIT:C180980 Recurrent Clear Cell Sarcoma of Soft Tissue 6 113693 -NCIT:C27370 Adult Clear Cell Sarcoma of Soft Tissue 6 113694 -NCIT:C27371 Childhood Clear Cell Sarcoma of Soft Tissue 6 113695 -NCIT:C3750 Alveolar Soft Part Sarcoma 5 113696 -NCIT:C156273 Tongue Alveolar Soft Part Sarcoma' 6 113697 -NCIT:C156276 Orbital Alveolar Soft Part Sarcoma 6 113698 -NCIT:C156277 Bladder Alveolar Soft Part Sarcoma 6 113699 -NCIT:C164078 Unresectable Alveolar Soft Part Sarcoma 6 113700 -NCIT:C173809 Lung Alveolar Soft Part Sarcoma 6 113701 -NCIT:C188034 Refractory Alveolar Soft Part Sarcoma 6 113702 -NCIT:C40225 Cervical Alveolar Soft Part Sarcoma 6 113703 -NCIT:C40320 Vulvar Alveolar Soft Part Sarcoma 6 113704 -NCIT:C7943 Adult Alveolar Soft Part Sarcoma 6 113705 -NCIT:C8092 Childhood Alveolar Soft Part Sarcoma 6 113706 -NCIT:C8796 Metastatic Alveolar Soft Part Sarcoma 6 113707 -NCIT:C164076 Locally Advanced Alveolar Soft Part Sarcoma 7 113708 -NCIT:C188198 Advanced Alveolar Soft Part Sarcoma 7 113709 -NCIT:C8797 Localized Alveolar Soft Part Sarcoma 6 113710 -NCIT:C8798 Recurrent Alveolar Soft Part Sarcoma 6 113711 -NCIT:C40128 Fallopian Tube Leiomyosarcoma 5 113712 -NCIT:C40317 Vulvar Sarcoma 5 113713 -NCIT:C176515 Vulvar Angiosarcoma 6 113714 -NCIT:C181938 Vulvar Kaposi Sarcoma 6 113715 -NCIT:C181944 Vulvar Rhabdomyosarcoma 6 113716 -NCIT:C128273 Vulvar Alveolar Rhabdomyosarcoma 7 113717 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 7 113718 -NCIT:C181971 Vulvar Epithelioid Sarcoma 6 113719 -NCIT:C181973 Vulvar Distal-Type Epithelioid Sarcoma 7 113720 -NCIT:C40319 Vulvar Proximal-Type Epithelioid Sarcoma 7 113721 -NCIT:C181977 Vulvar Ewing Sarcoma 6 113722 -NCIT:C40318 Vulvar Leiomyosarcoma 6 113723 -NCIT:C40320 Vulvar Alveolar Soft Part Sarcoma 6 113724 -NCIT:C40321 Vulvar Liposarcoma 6 113725 -NCIT:C4525 Kidney Sarcoma 5 113726 -NCIT:C154496 Anaplastic Sarcoma of the Kidney 6 113727 -NCIT:C189260 Childhood Anaplastic Sarcoma of the Kidney 7 113728 -NCIT:C157737 Kidney Synovial Sarcoma 6 113729 -NCIT:C159205 Kidney Angiosarcoma 6 113730 -NCIT:C159206 Kidney Rhabdomyosarcoma 6 113731 -NCIT:C159208 Kidney Ewing Sarcoma 6 113732 -NCIT:C189261 Childhood Kidney Ewing Sarcoma 7 113733 -NCIT:C4264 Clear Cell Sarcoma of the Kidney 6 113734 -NCIT:C6181 Kidney Extraskeletal Osteosarcoma 6 113735 -NCIT:C6183 Kidney Leiomyosarcoma 6 113736 -NCIT:C6185 Kidney Liposarcoma 6 113737 -NCIT:C7726 Kidney Fibrosarcoma 6 113738 -NCIT:C4669 Bladder Sarcoma 5 113739 -NCIT:C156277 Bladder Alveolar Soft Part Sarcoma 6 113740 -NCIT:C159667 Bladder Rhabdomyosarcoma 6 113741 -NCIT:C159668 Bladder Embryonal Rhabdomyosarcoma 7 113742 -NCIT:C159669 Bladder Alveolar Rhabdomyosarcoma 7 113743 -NCIT:C159670 Bladder Leiomyosarcoma 6 113744 -NCIT:C159671 Bladder Angiosarcoma 6 113745 -NCIT:C4670 Breast Sarcoma 5 113746 -NCIT:C170727 Recurrent Breast Sarcoma 6 113747 -NCIT:C133092 Recurrent Breast Angiosarcoma 7 113748 -NCIT:C5184 Breast Angiosarcoma 6 113749 -NCIT:C133092 Recurrent Breast Angiosarcoma 7 113750 -NCIT:C176251 Primary Breast Angiosarcoma 7 113751 -NCIT:C40378 Postradiation Breast Angiosarcoma 7 113752 -NCIT:C5185 Breast Fibrosarcoma 6 113753 -NCIT:C5186 Breast Leiomyosarcoma 6 113754 -NCIT:C5187 Breast Liposarcoma 6 113755 -NCIT:C5189 Breast Extraskeletal Osteosarcoma 6 113756 -NCIT:C5190 Breast Rhabdomyosarcoma 6 113757 -NCIT:C4832 Retroperitoneal Sarcoma 5 113758 -NCIT:C136811 Retroperitoneal Sarcoma by AJCC v8 Stage 6 113759 -NCIT:C136812 Stage I Retroperitoneal Sarcoma AJCC v8 7 113760 -NCIT:C136813 Stage IA Retroperitoneal Sarcoma AJCC v8 8 113761 -NCIT:C136814 Stage IB Retroperitoneal Sarcoma AJCC v8 8 113762 -NCIT:C136815 Stage II Retroperitoneal Sarcoma AJCC v8 7 113763 -NCIT:C136816 Stage III Retroperitoneal Sarcoma AJCC v8 7 113764 -NCIT:C136817 Stage IIIA Retroperitoneal Sarcoma AJCC v8 8 113765 -NCIT:C136818 Stage IIIB Retroperitoneal Sarcoma AJCC v8 8 113766 -NCIT:C136819 Stage IV Retroperitoneal Sarcoma AJCC v8 7 113767 -NCIT:C156956 Adrenal Gland Sarcoma 6 113768 -NCIT:C188254 Adrenal Gland Leiomyosarcoma 7 113769 -NCIT:C48320 Adrenal Gland Angiosarcoma 7 113770 -NCIT:C173808 Retroperitoneal Undifferentiated Pleomorphic Sarcoma 6 113771 -NCIT:C188071 Retroperitoneal Rhabdomyosarcoma 6 113772 -NCIT:C188073 Retroperitoneal Malignant Peripheral Nerve Sheath Tumor 6 113773 -NCIT:C27904 Retroperitoneal Leiomyosarcoma 6 113774 -NCIT:C4860 Lung Sarcoma 5 113775 -NCIT:C142825 Pulmonary Artery Intimal Sarcoma 6 113776 -NCIT:C142827 Primary Pulmonary Myxoid Sarcoma with EWSR1-CREB1 Fusion 6 113777 -NCIT:C173809 Lung Alveolar Soft Part Sarcoma 6 113778 -NCIT:C181201 Lung Rhabdomyosarcoma 6 113779 -NCIT:C188061 Lung Osteosarcoma 6 113780 -NCIT:C3551 Lung Kaposi Sarcoma 6 113781 -NCIT:C45631 Lung Synovial Sarcoma 6 113782 -NCIT:C45632 Lung Biphasic Synovial Sarcoma 7 113783 -NCIT:C45633 Lung Monophasic Synovial Sarcoma 7 113784 -NCIT:C5667 Lung Leiomyosarcoma 6 113785 -NCIT:C5153 Central Nervous System Sarcoma 5 113786 -NCIT:C129534 Central Nervous System Mesenchymal Chondrosarcoma 6 113787 -NCIT:C129566 Central Nervous System Undifferentiated Pleomorphic Sarcoma 6 113788 -NCIT:C186607 Central Nervous System CIC-Rearranged Sarcoma 6 113789 -NCIT:C186611 Central Nervous System Ewing Sarcoma 6 113790 -NCIT:C4073 Meningeal Sarcoma 6 113791 -NCIT:C4334 Meningeal Sarcomatosis 7 113792 -NCIT:C8312 Leptomeningeal Sarcoma 7 113793 -NCIT:C5152 Spinal Cord Sarcoma 6 113794 -NCIT:C5154 Brain Sarcoma 6 113795 -NCIT:C186610 Primary Intracranial Sarcoma, DICER1-Mutant 7 113796 -NCIT:C5462 Brain Extraskeletal Myxoid Chondrosarcoma 7 113797 -NCIT:C6973 Brain Liposarcoma 7 113798 -NCIT:C5450 Central Nervous System Angiosarcoma 6 113799 -NCIT:C5464 Central Nervous System Rhabdomyosarcoma 6 113800 -NCIT:C5465 Central Nervous System Fibrosarcoma 6 113801 -NCIT:C6999 Central Nervous System Leiomyosarcoma 6 113802 -NCIT:C7002 Central Nervous System Extraskeletal Osteosarcoma 6 113803 -NCIT:C7006 Central Nervous System Kaposi Sarcoma 6 113804 -NCIT:C53677 Intimal Sarcoma 5 113805 -NCIT:C142825 Pulmonary Artery Intimal Sarcoma 6 113806 -NCIT:C5585 Skin Sarcoma 5 113807 -NCIT:C172632 Skin Myxofibrosarcoma 6 113808 -NCIT:C172634 Skin Ewing Sarcoma 6 113809 -NCIT:C3550 Skin Kaposi Sarcoma 6 113810 -NCIT:C9112 Classic Kaposi Sarcoma 7 113811 -NCIT:C4489 Skin Angiosarcoma 6 113812 -NCIT:C153626 Recurrent Skin Angiosarcoma 7 113813 -NCIT:C27719 Skin Radiation-Related Angiosarcoma 7 113814 -NCIT:C40379 Angiosarcoma of the Skin of the Arm after Radical Mastectomy followed by Lymphedema 7 113815 -NCIT:C4490 Skin Lymphangiosarcoma 6 113816 -NCIT:C49025 Myxoinflammatory Fibroblastic Sarcoma 6 113817 -NCIT:C5576 Skin Undifferentiated Pleomorphic Sarcoma 6 113818 -NCIT:C5615 Skin Liposarcoma 6 113819 -NCIT:C170473 Skin Pleomorphic Liposarcoma 7 113820 -NCIT:C5983 Major Salivary Gland Sarcoma 5 113821 -NCIT:C156280 Parotid Gland Sarcoma 6 113822 -NCIT:C156281 Parotid Gland Liposarcoma 7 113823 -NCIT:C5952 Parotid Gland Kaposi Sarcoma 7 113824 -NCIT:C6041 Thyroid Gland Sarcoma 5 113825 -NCIT:C156341 Thyroid Gland Malignant Peripheral Nerve Sheath Tumor 6 113826 -NCIT:C156347 Thyroid Gland Leiomyosarcoma 6 113827 -NCIT:C6043 Thyroid Gland Angiosarcoma 6 113828 -NCIT:C6050 Tracheal Sarcoma 5 113829 -NCIT:C6095 Orbit Sarcoma 5 113830 -NCIT:C156276 Orbital Alveolar Soft Part Sarcoma 6 113831 -NCIT:C4543 Orbit Rhabdomyosarcoma 6 113832 -NCIT:C6246 Orbit Embryonal Rhabdomyosarcoma 7 113833 -NCIT:C6247 Orbit Alveolar Rhabdomyosarcoma 7 113834 -NCIT:C6339 Uterine Corpus Sarcoma 5 113835 -NCIT:C127058 Uterine Corpus Rhabdomyosarcoma 6 113836 -NCIT:C136708 Uterine Corpus Sarcoma by AJCC v7 Stage 6 113837 -NCIT:C8258 Stage I Uterine Sarcoma AJCC v7 7 113838 -NCIT:C87132 Stage IA Uterine Sarcoma AJCC v7 8 113839 -NCIT:C87133 Stage IB Uterine Sarcoma AJCC v7 8 113840 -NCIT:C87134 Stage IC Uterine Sarcoma AJCC v7 8 113841 -NCIT:C8259 Stage II Uterine Sarcoma AJCC v7 7 113842 -NCIT:C115130 Stage IIA Uterine Sarcoma AJCC v7 8 113843 -NCIT:C115131 Stage IIB Uterine Sarcoma AJCC v7 8 113844 -NCIT:C8260 Stage III Uterine Sarcoma AJCC v7 7 113845 -NCIT:C87135 Stage IIIA Uterine Sarcoma AJCC v7 8 113846 -NCIT:C87137 Stage IIIB Uterine Sarcoma AJCC v7 8 113847 -NCIT:C87138 Stage IIIC Uterine Sarcoma AJCC v7 8 113848 -NCIT:C9179 Stage IV Uterine Sarcoma AJCC v7 7 113849 -NCIT:C87140 Stage IVA Uterine Sarcoma AJCC v7 8 113850 -NCIT:C87144 Stage IVB Uterine Sarcoma AJCC v7 8 113851 -NCIT:C139869 Uterine Corpus Sarcoma by AJCC v8 Stage 6 113852 -NCIT:C139870 Uterine Corpus Leiomyosarcoma by AJCC v8 Stage 7 113853 -NCIT:C139871 Stage I Uterine Corpus Leiomyosarcoma AJCC v8 8 113854 -NCIT:C139872 Stage IA Uterine Corpus Leiomyosarcoma AJCC v8 9 113855 -NCIT:C139873 Stage IB Uterine Corpus Leiomyosarcoma AJCC v8 9 113856 -NCIT:C139874 Stage II Uterine Corpus Leiomyosarcoma AJCC v8 8 113857 -NCIT:C139875 Stage III Uterine Corpus Leiomyosarcoma AJCC v8 8 113858 -NCIT:C139876 Stage IIIA Uterine Corpus Leiomyosarcoma AJCC v8 9 113859 -NCIT:C139877 Stage IIIB Uterine Corpus Leiomyosarcoma AJCC v8 9 113860 -NCIT:C139878 Stage IIIC Uterine Corpus Leiomyosarcoma AJCC v8 9 113861 -NCIT:C139879 Stage IV Uterine Corpus Leiomyosarcoma AJCC v8 8 113862 -NCIT:C139880 Stage IVA Uterine Corpus Leiomyosarcoma AJCC v8 9 113863 -NCIT:C139881 Stage IVB Uterine Corpus Leiomyosarcoma AJCC v8 9 113864 -NCIT:C139882 Uterine Corpus Endometrial Stromal Sarcoma by AJCC v8 Stage 7 113865 -NCIT:C139883 Stage I Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 8 113866 -NCIT:C139884 Stage IA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 113867 -NCIT:C139885 Stage IB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 113868 -NCIT:C139886 Stage II Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 8 113869 -NCIT:C139887 Stage III Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 8 113870 -NCIT:C139888 Stage IIIA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 113871 -NCIT:C139889 Stage IIIB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 113872 -NCIT:C139890 Stage IIIC Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 113873 -NCIT:C139891 Stage IV Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 8 113874 -NCIT:C139892 Stage IVA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 113875 -NCIT:C139893 Stage IVB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 113876 -NCIT:C139894 Uterine Corpus Adenosarcoma by AJCC v8 Stage 7 113877 -NCIT:C139895 Stage I Uterine Corpus Adenosarcoma AJCC v8 8 113878 -NCIT:C139896 Stage IA Uterine Corpus Adenosarcoma AJCC v8 9 113879 -NCIT:C139897 Stage IB Uterine Corpus Adenosarcoma AJCC v8 9 113880 -NCIT:C139898 Stage IC Uterine Corpus Adenosarcoma AJCC v8 9 113881 -NCIT:C139899 Stage II Uterine Corpus Adenosarcoma AJCC v8 8 113882 -NCIT:C139900 Stage III Uterine Corpus Adenosarcoma AJCC v8 8 113883 -NCIT:C139901 Stage IIIA Uterine Corpus Adenosarcoma AJCC v8 9 113884 -NCIT:C139902 Stage IIIB Uterine Corpus Adenosarcoma AJCC v8 9 113885 -NCIT:C139903 Stage IIIC Uterine Corpus Adenosarcoma AJCC v8 9 113886 -NCIT:C139904 Stage IV Uterine Corpus Adenosarcoma AJCC v8 8 113887 -NCIT:C139905 Stage IVA Uterine Corpus Adenosarcoma AJCC v8 9 113888 -NCIT:C139906 Stage IVB Uterine Corpus Adenosarcoma AJCC v8 9 113889 -NCIT:C180546 Uterine Corpus Central Primitive Neuroectodermal Tumor 6 113890 -NCIT:C190009 Metastatic Uterine Corpus Sarcoma 6 113891 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 7 113892 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 113893 -NCIT:C190016 Unresectable Uterine Corpus Sarcoma 6 113894 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 7 113895 -NCIT:C40219 Uterine Corpus Endometrial Stromal Sarcoma 6 113896 -NCIT:C126998 Uterine Corpus High Grade Endometrial Stromal Sarcoma 7 113897 -NCIT:C139882 Uterine Corpus Endometrial Stromal Sarcoma by AJCC v8 Stage 7 113898 -NCIT:C139883 Stage I Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 8 113899 -NCIT:C139884 Stage IA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 113900 -NCIT:C139885 Stage IB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 113901 -NCIT:C139886 Stage II Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 8 113902 -NCIT:C139887 Stage III Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 8 113903 -NCIT:C139888 Stage IIIA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 113904 -NCIT:C139889 Stage IIIB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 113905 -NCIT:C139890 Stage IIIC Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 113906 -NCIT:C139891 Stage IV Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 8 113907 -NCIT:C139892 Stage IVA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 113908 -NCIT:C139893 Stage IVB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 113909 -NCIT:C40223 Uterine Corpus Low Grade Endometrial Stromal Sarcoma 7 113910 -NCIT:C6336 Uterine Corpus Adenosarcoma 6 113911 -NCIT:C139894 Uterine Corpus Adenosarcoma by AJCC v8 Stage 7 113912 -NCIT:C139895 Stage I Uterine Corpus Adenosarcoma AJCC v8 8 113913 -NCIT:C139896 Stage IA Uterine Corpus Adenosarcoma AJCC v8 9 113914 -NCIT:C139897 Stage IB Uterine Corpus Adenosarcoma AJCC v8 9 113915 -NCIT:C139898 Stage IC Uterine Corpus Adenosarcoma AJCC v8 9 113916 -NCIT:C139899 Stage II Uterine Corpus Adenosarcoma AJCC v8 8 113917 -NCIT:C139900 Stage III Uterine Corpus Adenosarcoma AJCC v8 8 113918 -NCIT:C139901 Stage IIIA Uterine Corpus Adenosarcoma AJCC v8 9 113919 -NCIT:C139902 Stage IIIB Uterine Corpus Adenosarcoma AJCC v8 9 113920 -NCIT:C139903 Stage IIIC Uterine Corpus Adenosarcoma AJCC v8 9 113921 -NCIT:C139904 Stage IV Uterine Corpus Adenosarcoma AJCC v8 8 113922 -NCIT:C139905 Stage IVA Uterine Corpus Adenosarcoma AJCC v8 9 113923 -NCIT:C139906 Stage IVB Uterine Corpus Adenosarcoma AJCC v8 9 113924 -NCIT:C6340 Uterine Corpus Leiomyosarcoma 6 113925 -NCIT:C139870 Uterine Corpus Leiomyosarcoma by AJCC v8 Stage 7 113926 -NCIT:C139871 Stage I Uterine Corpus Leiomyosarcoma AJCC v8 8 113927 -NCIT:C139872 Stage IA Uterine Corpus Leiomyosarcoma AJCC v8 9 113928 -NCIT:C139873 Stage IB Uterine Corpus Leiomyosarcoma AJCC v8 9 113929 -NCIT:C139874 Stage II Uterine Corpus Leiomyosarcoma AJCC v8 8 113930 -NCIT:C139875 Stage III Uterine Corpus Leiomyosarcoma AJCC v8 8 113931 -NCIT:C139876 Stage IIIA Uterine Corpus Leiomyosarcoma AJCC v8 9 113932 -NCIT:C139877 Stage IIIB Uterine Corpus Leiomyosarcoma AJCC v8 9 113933 -NCIT:C139878 Stage IIIC Uterine Corpus Leiomyosarcoma AJCC v8 9 113934 -NCIT:C139879 Stage IV Uterine Corpus Leiomyosarcoma AJCC v8 8 113935 -NCIT:C139880 Stage IVA Uterine Corpus Leiomyosarcoma AJCC v8 9 113936 -NCIT:C139881 Stage IVB Uterine Corpus Leiomyosarcoma AJCC v8 9 113937 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 7 113938 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 7 113939 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 113940 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 7 113941 -NCIT:C40174 Uterine Corpus Epithelioid Leiomyosarcoma 7 113942 -NCIT:C40175 Uterine Corpus Myxoid Leiomyosarcoma 7 113943 -NCIT:C8261 Recurrent Uterine Corpus Sarcoma 6 113944 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 7 113945 -NCIT:C8972 Uterine Corpus Undifferentiated Sarcoma 6 113946 -NCIT:C6359 Testicular Sarcoma 5 113947 -NCIT:C6378 Testicular Rhabdomyosarcoma 6 113948 -NCIT:C6605 Soft Tissue Fibrosarcoma 5 113949 -NCIT:C173120 Sinonasal Fibrosarcoma 6 113950 -NCIT:C173478 Oral Cavity Low Grade Myofibroblastic Sarcoma 6 113951 -NCIT:C49025 Myxoinflammatory Fibroblastic Sarcoma 6 113952 -NCIT:C5185 Breast Fibrosarcoma 6 113953 -NCIT:C5233 Ovarian Fibrosarcoma 6 113954 -NCIT:C5336 Small Intestinal Fibrosarcoma 6 113955 -NCIT:C5361 Cardiac Fibrosarcoma 6 113956 -NCIT:C147004 Cardiac Myxofibrosarcoma 7 113957 -NCIT:C5465 Central Nervous System Fibrosarcoma 6 113958 -NCIT:C5832 Liver Fibrosarcoma 6 113959 -NCIT:C6496 Myxofibrosarcoma 6 113960 -NCIT:C147004 Cardiac Myxofibrosarcoma 7 113961 -NCIT:C168670 Metastatic Myxofibrosarcoma 7 113962 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 8 113963 -NCIT:C171304 Advanced Myxofibrosarcoma 8 113964 -NCIT:C172632 Skin Myxofibrosarcoma 7 113965 -NCIT:C177414 Epithelioid Myxofibrosarcoma 7 113966 -NCIT:C178372 Unresectable Myxofibrosarcoma 7 113967 -NCIT:C7726 Kidney Fibrosarcoma 6 113968 -NCIT:C6606 Mediastinal Sarcoma 5 113969 -NCIT:C6613 Mediastinal Angiosarcoma 6 113970 -NCIT:C6614 Mediastinal Liposarcoma 6 113971 -NCIT:C95038 Thymoliposarcoma 7 113972 -NCIT:C6615 Mediastinal Extraskeletal Osteosarcoma 6 113973 -NCIT:C6617 Mediastinal Rhabdomyosarcoma 6 113974 -NCIT:C6618 Mediastinal Synovial Sarcoma 6 113975 -NCIT:C6619 Mediastinal Leiomyosarcoma 6 113976 -NCIT:C6626 Mediastinal Malignant Peripheral Nerve Sheath Tumor 6 113977 -NCIT:C6630 Malignant Melanotic Peripheral Nerve Sheath Tumor of the Mediastinum 7 113978 -NCIT:C6926 Stromal Sarcoma 5 113979 -NCIT:C53994 Undifferentiated Stromal Sarcoma 6 113980 -NCIT:C40066 Ovarian Undifferentiated Sarcoma 7 113981 -NCIT:C40224 Endocervical Undifferentiated Sarcoma 7 113982 -NCIT:C40272 Vaginal Undifferentiated Sarcoma 7 113983 -NCIT:C8972 Uterine Corpus Undifferentiated Sarcoma 7 113984 -NCIT:C53999 Malignant Gastrointestinal Stromal Tumor 6 113985 -NCIT:C136767 Gastrointestinal Stromal Tumor by AJCC v8 Stage 7 113986 -NCIT:C136768 Gastric and Omental Gastrointestinal Stromal Tumor by AJCC v8 Stage 8 113987 -NCIT:C136770 Stage I Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 9 113988 -NCIT:C136771 Stage IA Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 10 113989 -NCIT:C136772 Stage IB Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 10 113990 -NCIT:C136773 Stage II Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 9 113991 -NCIT:C136774 Stage III Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 9 113992 -NCIT:C136775 Stage IIIA Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 10 113993 -NCIT:C136777 Stage IIIB Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 10 113994 -NCIT:C136778 Stage IV Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 9 113995 -NCIT:C136769 Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor by AJCC v8 Stage 8 113996 -NCIT:C136780 Stage I Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 9 113997 -NCIT:C136781 Stage II Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 9 113998 -NCIT:C136783 Stage III Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 9 113999 -NCIT:C136784 Stage IIIA Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 10 114000 -NCIT:C136785 Stage IIIB Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 10 114001 -NCIT:C136786 Stage IV Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 9 114002 -NCIT:C150738 Metastatic Gastrointestinal Stromal Tumor 7 114003 -NCIT:C150739 Locally Advanced Gastrointestinal Stromal Tumor 8 114004 -NCIT:C173502 Advanced Gastrointestinal Stromal Tumor 8 114005 -NCIT:C150741 Unresectable Malignant Gastrointestinal Stromal Tumor 7 114006 -NCIT:C179932 Dedifferentiated Gastrointestinal Stromal Tumor 7 114007 -NCIT:C185882 Refractory Malignant Gastrointestinal Stromal Tumor 7 114008 -NCIT:C95897 Gastric Malignant Gastrointestinal Stromal Tumor 7 114009 -NCIT:C5524 Prostate Stromal Sarcoma 6 114010 -NCIT:C8973 Endometrioid Stromal Sarcoma 6 114011 -NCIT:C40219 Uterine Corpus Endometrial Stromal Sarcoma 7 114012 -NCIT:C126998 Uterine Corpus High Grade Endometrial Stromal Sarcoma 8 114013 -NCIT:C139882 Uterine Corpus Endometrial Stromal Sarcoma by AJCC v8 Stage 8 114014 -NCIT:C139883 Stage I Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 114015 -NCIT:C139884 Stage IA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 114016 -NCIT:C139885 Stage IB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 114017 -NCIT:C139886 Stage II Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 114018 -NCIT:C139887 Stage III Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 114019 -NCIT:C139888 Stage IIIA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 114020 -NCIT:C139889 Stage IIIB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 114021 -NCIT:C139890 Stage IIIC Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 114022 -NCIT:C139891 Stage IV Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 114023 -NCIT:C139892 Stage IVA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 114024 -NCIT:C139893 Stage IVB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 114025 -NCIT:C40223 Uterine Corpus Low Grade Endometrial Stromal Sarcoma 8 114026 -NCIT:C4263 Low Grade Endometrioid Stromal Sarcoma 7 114027 -NCIT:C179562 Peritoneal Low Grade Endometrioid Stromal Sarcoma 8 114028 -NCIT:C40063 Ovarian Low Grade Endometrioid Stromal Sarcoma 8 114029 -NCIT:C40222 Cervical Low Grade Endometrioid Stromal Sarcoma 8 114030 -NCIT:C40223 Uterine Corpus Low Grade Endometrial Stromal Sarcoma 8 114031 -NCIT:C40271 Vaginal Low Grade Endometrioid Stromal Sarcoma 8 114032 -NCIT:C9474 Adenosarcoma 6 114033 -NCIT:C102570 Broad Ligament Adenosarcoma 7 114034 -NCIT:C40125 Fallopian Tube Adenosarcoma 7 114035 -NCIT:C40229 Cervical Adenosarcoma 7 114036 -NCIT:C40277 Vaginal Adenosarcoma 7 114037 -NCIT:C6336 Uterine Corpus Adenosarcoma 7 114038 -NCIT:C139894 Uterine Corpus Adenosarcoma by AJCC v8 Stage 8 114039 -NCIT:C139895 Stage I Uterine Corpus Adenosarcoma AJCC v8 9 114040 -NCIT:C139896 Stage IA Uterine Corpus Adenosarcoma AJCC v8 10 114041 -NCIT:C139897 Stage IB Uterine Corpus Adenosarcoma AJCC v8 10 114042 -NCIT:C139898 Stage IC Uterine Corpus Adenosarcoma AJCC v8 10 114043 -NCIT:C139899 Stage II Uterine Corpus Adenosarcoma AJCC v8 9 114044 -NCIT:C139900 Stage III Uterine Corpus Adenosarcoma AJCC v8 9 114045 -NCIT:C139901 Stage IIIA Uterine Corpus Adenosarcoma AJCC v8 10 114046 -NCIT:C139902 Stage IIIB Uterine Corpus Adenosarcoma AJCC v8 10 114047 -NCIT:C139903 Stage IIIC Uterine Corpus Adenosarcoma AJCC v8 10 114048 -NCIT:C139904 Stage IV Uterine Corpus Adenosarcoma AJCC v8 9 114049 -NCIT:C139905 Stage IVA Uterine Corpus Adenosarcoma AJCC v8 10 114050 -NCIT:C139906 Stage IVB Uterine Corpus Adenosarcoma AJCC v8 10 114051 -NCIT:C7317 Ovarian Adenosarcoma 7 114052 -NCIT:C7135 Extraskeletal Ewing Sarcoma 5 114053 -NCIT:C159208 Kidney Ewing Sarcoma 6 114054 -NCIT:C189261 Childhood Kidney Ewing Sarcoma 7 114055 -NCIT:C172634 Skin Ewing Sarcoma 6 114056 -NCIT:C181977 Vulvar Ewing Sarcoma 6 114057 -NCIT:C186611 Central Nervous System Ewing Sarcoma 6 114058 -NCIT:C8801 Metastatic Extraskeletal Ewing Sarcoma 6 114059 -NCIT:C8802 Localized Extraskeletal Ewing Sarcoma 6 114060 -NCIT:C8803 Recurrent Extraskeletal Ewing Sarcoma 6 114061 -NCIT:C7707 Adult Soft Tissue Sarcoma 5 114062 -NCIT:C114541 Adult Undifferentiated Pleomorphic Sarcoma 6 114063 -NCIT:C156071 Metastatic Adult Soft Tissue Sarcoma 6 114064 -NCIT:C189935 Adult Liver Embryonal Sarcoma 6 114065 -NCIT:C27370 Adult Clear Cell Sarcoma of Soft Tissue 6 114066 -NCIT:C27373 Adult Desmoplastic Small Round Cell Tumor 6 114067 -NCIT:C27375 Adult Mesenchymal Chondrosarcoma 6 114068 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 6 114069 -NCIT:C7817 Adult Synovial Sarcoma 6 114070 -NCIT:C7818 Stage I Adult Soft Tissue Sarcoma AJCC v7 6 114071 -NCIT:C8569 Stage IA Adult Soft Tissue Sarcoma AJCC v7 7 114072 -NCIT:C8570 Stage IB Adult Soft Tissue Sarcoma AJCC v7 7 114073 -NCIT:C7819 Stage II Adult Soft Tissue Sarcoma AJCC v7 6 114074 -NCIT:C8571 Stage IIA Adult Soft Tissue Sarcoma AJCC v7 7 114075 -NCIT:C8572 Stage IIB Adult Soft Tissue Sarcoma AJCC v7 7 114076 -NCIT:C7820 Stage III Adult Soft Tissue Sarcoma AJCC v7 6 114077 -NCIT:C7821 Stage IV Adult Soft Tissue Sarcoma AJCC v7 6 114078 -NCIT:C7822 Recurrent Adult Soft Tissue Sarcoma 6 114079 -NCIT:C7924 Adult Extraskeletal Myxoid Chondrosarcoma 6 114080 -NCIT:C7925 Adult Extraskeletal Osteosarcoma 6 114081 -NCIT:C7943 Adult Alveolar Soft Part Sarcoma 6 114082 -NCIT:C7944 Adult Epithelioid Sarcoma 6 114083 -NCIT:C7715 Childhood Soft Tissue Sarcoma 5 114084 -NCIT:C114749 Childhood Undifferentiated Pleomorphic Sarcoma 6 114085 -NCIT:C115292 Localized Childhood Soft Tissue Sarcoma 6 114086 -NCIT:C8065 Localized Childhood Rhabdomyosarcoma 7 114087 -NCIT:C187194 Refractory Childhood Soft Tissue Sarcoma 6 114088 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 7 114089 -NCIT:C188980 Childhood Kaposi Sarcoma 6 114090 -NCIT:C189260 Childhood Anaplastic Sarcoma of the Kidney 6 114091 -NCIT:C189261 Childhood Kidney Ewing Sarcoma 6 114092 -NCIT:C189934 Childhood Liver Embryonal Sarcoma 6 114093 -NCIT:C190020 Childhood Liver Angiosarcoma 6 114094 -NCIT:C27371 Childhood Clear Cell Sarcoma of Soft Tissue 6 114095 -NCIT:C27372 Childhood Desmoplastic Small Round Cell Tumor 6 114096 -NCIT:C27376 Childhood Extraskeletal Osteosarcoma 6 114097 -NCIT:C27377 Childhood Extraskeletal Myxoid Chondrosarcoma 6 114098 -NCIT:C4264 Clear Cell Sarcoma of the Kidney 6 114099 -NCIT:C7705 Childhood Rhabdomyosarcoma 6 114100 -NCIT:C123397 Childhood Spindle Cell Rhabdomyosarcoma 7 114101 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 7 114102 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 7 114103 -NCIT:C7957 Childhood Embryonal Rhabdomyosarcoma 7 114104 -NCIT:C35574 Childhood Botryoid-Type Embryonal Rhabdomyosarcoma 8 114105 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 9 114106 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 9 114107 -NCIT:C7958 Childhood Alveolar Rhabdomyosarcoma 7 114108 -NCIT:C7959 Childhood Pleomorphic Rhabdomyosarcoma 7 114109 -NCIT:C7960 Childhood Rhabdomyosarcoma with Mixed Embryonal and Alveolar Features 7 114110 -NCIT:C8065 Localized Childhood Rhabdomyosarcoma 7 114111 -NCIT:C8066 Metastatic Childhood Soft Tissue Sarcoma 6 114112 -NCIT:C8067 Recurrent Childhood Soft Tissue Sarcoma 6 114113 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 7 114114 -NCIT:C8089 Childhood Synovial Sarcoma 6 114115 -NCIT:C8092 Childhood Alveolar Soft Part Sarcoma 6 114116 -NCIT:C8093 Childhood Leiomyosarcoma 6 114117 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 7 114118 -NCIT:C8095 Childhood Epithelioid Sarcoma 6 114119 -NCIT:C7723 Cardiac Sarcoma 5 114120 -NCIT:C147003 Cardiac Extraskeletal Osteosarcoma 6 114121 -NCIT:C147097 Cardiac Angiosarcoma 6 114122 -NCIT:C45755 Cardiac Undifferentiated Pleomorphic Sarcoma 6 114123 -NCIT:C45756 Cardiac Synovial Sarcoma 6 114124 -NCIT:C45757 Cardiac Biphasic Synovial Sarcoma 7 114125 -NCIT:C45758 Cardiac Monophasic Synovial Sarcoma 7 114126 -NCIT:C45759 Cardiac Rhabdomyosarcoma 6 114127 -NCIT:C5361 Cardiac Fibrosarcoma 6 114128 -NCIT:C147004 Cardiac Myxofibrosarcoma 7 114129 -NCIT:C5363 Cardiac Kaposi Sarcoma 6 114130 -NCIT:C5364 Cardiac Leiomyosarcoma 6 114131 -NCIT:C5367 Cardiac Malignant Peripheral Nerve Sheath Tumor 6 114132 -NCIT:C7730 Penile Sarcoma 5 114133 -NCIT:C162578 Penile Angiosarcoma 6 114134 -NCIT:C162584 Penile Malignant Peripheral Nerve Sheath Tumor 6 114135 -NCIT:C162585 Penile Leiomyosarcoma 6 114136 -NCIT:C162588 Penile Rhabdomyosarcoma 6 114137 -NCIT:C162589 Penile Undifferentiated Pleomorphic Sarcoma 6 114138 -NCIT:C6377 Penile Kaposi Sarcoma 6 114139 -NCIT:C7731 Prostate Sarcoma 5 114140 -NCIT:C161034 Prostate Synovial Sarcoma 6 114141 -NCIT:C161035 Prostate Osteosarcoma 6 114142 -NCIT:C161038 Prostate Undifferentiated Pleomorphic Sarcoma 6 114143 -NCIT:C5522 Prostate Rhabdomyosarcoma 6 114144 -NCIT:C188070 Prostate Alveolar Rhabdomyosarcoma 7 114145 -NCIT:C5525 Prostate Embryonal Rhabdomyosarcoma 7 114146 -NCIT:C5523 Prostate Kaposi Sarcoma 6 114147 -NCIT:C5524 Prostate Stromal Sarcoma 6 114148 -NCIT:C5526 Prostate Leiomyosarcoma 6 114149 -NCIT:C5528 Prostate Angiosarcoma 6 114150 -NCIT:C7737 Vaginal Sarcoma 5 114151 -NCIT:C128080 Vaginal Rhabdomyosarcoma 6 114152 -NCIT:C40268 Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 7 114153 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 8 114154 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 8 114155 -NCIT:C40271 Vaginal Low Grade Endometrioid Stromal Sarcoma 6 114156 -NCIT:C40272 Vaginal Undifferentiated Sarcoma 6 114157 -NCIT:C40277 Vaginal Adenosarcoma 6 114158 -NCIT:C6326 Vaginal Leiomyosarcoma 6 114159 -NCIT:C8267 Ovarian Sarcoma 5 114160 -NCIT:C40063 Ovarian Low Grade Endometrioid Stromal Sarcoma 6 114161 -NCIT:C40066 Ovarian Undifferentiated Sarcoma 6 114162 -NCIT:C5232 Ovarian Angiosarcoma 6 114163 -NCIT:C5233 Ovarian Fibrosarcoma 6 114164 -NCIT:C5234 Ovarian Leiomyosarcoma 6 114165 -NCIT:C5236 Ovarian Rhabdomyosarcoma 6 114166 -NCIT:C6419 Ovarian Liposarcoma 6 114167 -NCIT:C5235 Ovarian Myxoid Liposarcoma 7 114168 -NCIT:C7317 Ovarian Adenosarcoma 6 114169 -NCIT:C8300 Desmoplastic Small Round Cell Tumor 5 114170 -NCIT:C126356 Peritoneal Desmoplastic Small Round Cell Tumor 6 114171 -NCIT:C158426 Recurrent Desmoplastic Small Round Cell Tumor 6 114172 -NCIT:C158427 Refractory Desmoplastic Small Round Cell Tumor 6 114173 -NCIT:C170826 Unresectable Desmoplastic Small Round Cell Tumor 6 114174 -NCIT:C170827 Metastatic Desmoplastic Small Round Cell Tumor 6 114175 -NCIT:C180875 Locally Advanced Desmoplastic Small Round Cell Tumor 7 114176 -NCIT:C27372 Childhood Desmoplastic Small Round Cell Tumor 6 114177 -NCIT:C27373 Adult Desmoplastic Small Round Cell Tumor 6 114178 -NCIT:C8810 Extraskeletal Osteosarcoma 5 114179 -NCIT:C147003 Cardiac Extraskeletal Osteosarcoma 6 114180 -NCIT:C161035 Prostate Osteosarcoma 6 114181 -NCIT:C188061 Lung Osteosarcoma 6 114182 -NCIT:C27376 Childhood Extraskeletal Osteosarcoma 6 114183 -NCIT:C5189 Breast Extraskeletal Osteosarcoma 6 114184 -NCIT:C5833 Liver Extraskeletal Osteosarcoma 6 114185 -NCIT:C6181 Kidney Extraskeletal Osteosarcoma 6 114186 -NCIT:C6615 Mediastinal Extraskeletal Osteosarcoma 6 114187 -NCIT:C7002 Central Nervous System Extraskeletal Osteosarcoma 6 114188 -NCIT:C7925 Adult Extraskeletal Osteosarcoma 6 114189 -NCIT:C82972 Duodenal Extraskeletal Osteosarcoma 6 114190 -NCIT:C8808 Metastatic Extraskeletal Osteosarcoma 6 114191 -NCIT:C8809 Localized Extraskeletal Osteosarcoma 6 114192 -NCIT:C8811 Recurrent Extraskeletal Osteosarcoma 6 114193 -NCIT:C9312 Bone Sarcoma 4 114194 -NCIT:C136632 Bone Sarcoma by AJCC v7 Stage 5 114195 -NCIT:C136633 Osteosarcoma by AJCC v7 Stage 6 114196 -NCIT:C6612 Stage III Osteosarcoma AJCC v7 7 114197 -NCIT:C6701 Stage IV Osteosarcoma AJCC v7 7 114198 -NCIT:C6702 Stage IVA Osteosarcoma AJCC v7 8 114199 -NCIT:C6703 Stage IVB Osteosarcoma AJCC v7 8 114200 -NCIT:C6709 Stage I Osteosarcoma AJCC v7 7 114201 -NCIT:C6607 Stage IA Osteosarcoma AJCC v7 8 114202 -NCIT:C6609 Stage IB Osteosarcoma AJCC v7 8 114203 -NCIT:C6710 Stage II Osteosarcoma AJCC v7 7 114204 -NCIT:C6610 Stage IIA Osteosarcoma AJCC v7 8 114205 -NCIT:C6611 Stage IIB Osteosarcoma AJCC v7 8 114206 -NCIT:C6468 Stage III Bone Sarcoma AJCC v7 6 114207 -NCIT:C6612 Stage III Osteosarcoma AJCC v7 7 114208 -NCIT:C6704 Stage I Bone Sarcoma AJCC v7 6 114209 -NCIT:C6464 Stage IA Bone Sarcoma AJCC v7 7 114210 -NCIT:C6607 Stage IA Osteosarcoma AJCC v7 8 114211 -NCIT:C6465 Stage IB Bone Sarcoma AJCC v7 7 114212 -NCIT:C6609 Stage IB Osteosarcoma AJCC v7 8 114213 -NCIT:C6709 Stage I Osteosarcoma AJCC v7 7 114214 -NCIT:C6607 Stage IA Osteosarcoma AJCC v7 8 114215 -NCIT:C6609 Stage IB Osteosarcoma AJCC v7 8 114216 -NCIT:C6705 Stage II Bone Sarcoma AJCC v7 6 114217 -NCIT:C6466 Stage IIB Bone Sarcoma AJCC v7 7 114218 -NCIT:C6611 Stage IIB Osteosarcoma AJCC v7 8 114219 -NCIT:C6467 Stage IIA Bone Sarcoma AJCC v7 7 114220 -NCIT:C6610 Stage IIA Osteosarcoma AJCC v7 8 114221 -NCIT:C6710 Stage II Osteosarcoma AJCC v7 7 114222 -NCIT:C6610 Stage IIA Osteosarcoma AJCC v7 8 114223 -NCIT:C6611 Stage IIB Osteosarcoma AJCC v7 8 114224 -NCIT:C6706 Stage IV Bone Sarcoma AJCC v7 6 114225 -NCIT:C6701 Stage IV Osteosarcoma AJCC v7 7 114226 -NCIT:C6702 Stage IVA Osteosarcoma AJCC v7 8 114227 -NCIT:C6703 Stage IVB Osteosarcoma AJCC v7 8 114228 -NCIT:C6707 Stage IVA Bone Sarcoma AJCC v7 7 114229 -NCIT:C6702 Stage IVA Osteosarcoma AJCC v7 8 114230 -NCIT:C6708 Stage IVB Bone Sarcoma AJCC v7 7 114231 -NCIT:C6703 Stage IVB Osteosarcoma AJCC v7 8 114232 -NCIT:C153072 Unresectable Bone Sarcoma 5 114233 -NCIT:C153475 Locally Advanced Unresectable Bone Sarcoma 6 114234 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 7 114235 -NCIT:C171070 Unresectable Primary Central Chondrosarcoma 6 114236 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 7 114237 -NCIT:C153073 Metastatic Bone Sarcoma 5 114238 -NCIT:C153070 Locally Advanced Bone Sarcoma 6 114239 -NCIT:C153475 Locally Advanced Unresectable Bone Sarcoma 7 114240 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 8 114241 -NCIT:C162762 Advanced Bone Sarcoma 6 114242 -NCIT:C171072 Metastatic Primary Central Chondrosarcoma 6 114243 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 7 114244 -NCIT:C38157 Metachronous Osteosarcoma 6 114245 -NCIT:C6621 Metastatic Bone Ewing Sarcoma 6 114246 -NCIT:C173841 Maxillofacial Sarcoma 5 114247 -NCIT:C173842 Maxillofacial Chondrosarcoma 6 114248 -NCIT:C173843 Maxillofacial Mesenchymal Chondrosarcoma 7 114249 -NCIT:C173844 Maxillofacial Osteosarcoma 6 114250 -NCIT:C188064 Bone Malignant Peripheral Nerve Sheath Tumor 5 114251 -NCIT:C189017 Childhood Bone Sarcoma 5 114252 -NCIT:C114750 Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 6 114253 -NCIT:C115368 Recurrent Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 7 114254 -NCIT:C115998 Localized Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 7 114255 -NCIT:C189022 Childhood Bone Osteosarcoma 6 114256 -NCIT:C123398 Childhood Periosteal Osteosarcoma 7 114257 -NCIT:C6589 Childhood Parosteal Osteosarcoma 7 114258 -NCIT:C6590 Childhood Conventional Osteosarcoma 7 114259 -NCIT:C189026 Childhood Primary Central Chondrosarcoma 6 114260 -NCIT:C27482 Secondary Chondrosarcoma 5 114261 -NCIT:C121881 Secondary Central Chondrosarcoma 6 114262 -NCIT:C178477 Secondary Central Atypical Cartilaginous Tumor/Chondrosarcoma, Grade 1 7 114263 -NCIT:C121882 Secondary Peripheral Chondrosarcoma 6 114264 -NCIT:C178481 Secondary Peripheral Chondrosarcoma, Grade 1 7 114265 -NCIT:C178492 Secondary Peripheral Chondrosarcoma, Grade 2 7 114266 -NCIT:C178494 Secondary Peripheral Chondrosarcoma, Grade 3 7 114267 -NCIT:C4304 Malignancy in Giant Cell Tumor of Bone 5 114268 -NCIT:C4835 Ewing Sarcoma of Bone 5 114269 -NCIT:C6621 Metastatic Bone Ewing Sarcoma 6 114270 -NCIT:C6622 Recurrent Bone Ewing Sarcoma 6 114271 -NCIT:C6623 Localized Bone Ewing Sarcoma 6 114272 -NCIT:C53493 Mesenchymal Chondrosarcoma of Bone 5 114273 -NCIT:C173843 Maxillofacial Mesenchymal Chondrosarcoma 6 114274 -NCIT:C53707 Bone Osteosarcoma 5 114275 -NCIT:C173844 Maxillofacial Osteosarcoma 6 114276 -NCIT:C189022 Childhood Bone Osteosarcoma 6 114277 -NCIT:C123398 Childhood Periosteal Osteosarcoma 7 114278 -NCIT:C6589 Childhood Parosteal Osteosarcoma 7 114279 -NCIT:C6590 Childhood Conventional Osteosarcoma 7 114280 -NCIT:C38157 Metachronous Osteosarcoma 6 114281 -NCIT:C4834 Primary Bone Osteosarcoma 6 114282 -NCIT:C136633 Osteosarcoma by AJCC v7 Stage 7 114283 -NCIT:C6612 Stage III Osteosarcoma AJCC v7 8 114284 -NCIT:C6701 Stage IV Osteosarcoma AJCC v7 8 114285 -NCIT:C6702 Stage IVA Osteosarcoma AJCC v7 9 114286 -NCIT:C6703 Stage IVB Osteosarcoma AJCC v7 9 114287 -NCIT:C6709 Stage I Osteosarcoma AJCC v7 8 114288 -NCIT:C6607 Stage IA Osteosarcoma AJCC v7 9 114289 -NCIT:C6609 Stage IB Osteosarcoma AJCC v7 9 114290 -NCIT:C6710 Stage II Osteosarcoma AJCC v7 8 114291 -NCIT:C6610 Stage IIA Osteosarcoma AJCC v7 9 114292 -NCIT:C6611 Stage IIB Osteosarcoma AJCC v7 9 114293 -NCIT:C35870 Conventional Osteosarcoma 7 114294 -NCIT:C179410 Giant Cell-Rich Osteosarcoma 8 114295 -NCIT:C4020 Fibroblastic Osteosarcoma 8 114296 -NCIT:C4021 Chondroblastic Osteosarcoma 8 114297 -NCIT:C53953 Osteoblastic Osteosarcoma 8 114298 -NCIT:C6590 Childhood Conventional Osteosarcoma 8 114299 -NCIT:C3902 Telangiectatic Osteosarcoma 7 114300 -NCIT:C4023 Small Cell Osteosarcoma 7 114301 -NCIT:C6470 Multifocal Osteosarcoma 7 114302 -NCIT:C6471 Synchronous Multifocal Osteosarcoma 8 114303 -NCIT:C6472 Asynchronous Multifocal Osteosarcoma 8 114304 -NCIT:C6474 Low Grade Central Osteosarcoma 7 114305 -NCIT:C7134 Bone Surface (Peripheral) Osteosarcoma 7 114306 -NCIT:C53958 High Grade Surface Osteosarcoma 8 114307 -NCIT:C8969 Parosteal Osteosarcoma 8 114308 -NCIT:C6589 Childhood Parosteal Osteosarcoma 9 114309 -NCIT:C8970 Periosteal Osteosarcoma 8 114310 -NCIT:C123398 Childhood Periosteal Osteosarcoma 9 114311 -NCIT:C53704 Secondary Osteosarcoma 6 114312 -NCIT:C53706 Radiation-Related Osteosarcoma 7 114313 -NCIT:C6469 Osteosarcoma Arising in Paget Disease of Bone 7 114314 -NCIT:C6475 Clear Cell Chondrosarcoma 5 114315 -NCIT:C6476 Dedifferentiated Chondrosarcoma 5 114316 -NCIT:C6479 Bone Angiosarcoma 5 114317 -NCIT:C6604 Bone Fibrosarcoma 5 114318 -NCIT:C7154 Bone Leiomyosarcoma 5 114319 -NCIT:C7155 Primary Central Chondrosarcoma 5 114320 -NCIT:C171070 Unresectable Primary Central Chondrosarcoma 6 114321 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 7 114322 -NCIT:C171072 Metastatic Primary Central Chondrosarcoma 6 114323 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 7 114324 -NCIT:C178476 Primary Central Atypical Cartilaginous Tumor/Chondrosarcoma, Grade 1 6 114325 -NCIT:C189026 Childhood Primary Central Chondrosarcoma 6 114326 -NCIT:C7357 Periosteal Chondrosarcoma 5 114327 -NCIT:C7598 Bone Liposarcoma 5 114328 -NCIT:C8563 Undifferentiated High Grade Pleomorphic Sarcoma of Bone 5 114329 -NCIT:C114750 Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 6 114330 -NCIT:C115368 Recurrent Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 7 114331 -NCIT:C115998 Localized Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 7 114332 -NCIT:C114782 Adult Undifferentiated High Grade Pleomorphic Sarcoma of Bone 6 114333 -NCIT:C115351 Recurrent Adult Undifferentiated High Grade Pleomorphic Sarcoma of Bone 7 114334 -NCIT:C115997 Localized Adult Undifferentiated High Grade Pleomorphic Sarcoma of Bone 7 114335 -NCIT:C151984 Pelvic Undifferentiated High Grade Pleomorphic Sarcoma 6 114336 -NCIT:C93125 Radiation-Related Sarcoma 4 114337 -NCIT:C27513 Radiation-Related Angiosarcoma 5 114338 -NCIT:C27719 Skin Radiation-Related Angiosarcoma 6 114339 -NCIT:C53706 Radiation-Related Osteosarcoma 5 114340 -NCIT:C9387 Sarcoma by NCI Grade 4 114341 -NCIT:C9388 Sarcoma NCI Grade 1 5 114342 -NCIT:C9025 Well Differentiated Fibrosarcoma 6 114343 -NCIT:C9389 Well Differentiated Leiomyosarcoma 6 114344 -NCIT:C9400 Sarcoma NCI Grade 2 5 114345 -NCIT:C9391 Leiomyosarcoma NCI Grade 2 6 114346 -NCIT:C9409 Epithelioid Sarcoma NCI Grade 2 6 114347 -NCIT:C9411 Angiosarcoma NCI Grade 2 6 114348 -NCIT:C9413 Kaposi Sarcoma NCI Grade 2 6 114349 -NCIT:C9415 Sarcoma NCI Grade 3 5 114350 -NCIT:C3359 Rhabdomyosarcoma 6 114351 -NCIT:C121654 Spindle Cell/Sclerosing Rhabdomyosarcoma 7 114352 -NCIT:C121655 Sclerosing Rhabdomyosarcoma 8 114353 -NCIT:C178235 MYOD1-Mutant Spindle Cell/Sclerosing Rhabdomyosarcoma 8 114354 -NCIT:C6519 Spindle Cell Rhabdomyosarcoma 8 114355 -NCIT:C123397 Childhood Spindle Cell Rhabdomyosarcoma 9 114356 -NCIT:C178232 Congenital/Infantile Spindle Cell Rhabdomyosarcoma with VGLL2/NCOA2/CITED2 Rearrangements 9 114357 -NCIT:C178236 Intraosseous Spindle Cell Rhabdomyosarcoma with TFCP2/NCOA2 Rearrangements 9 114358 -NCIT:C123735 Fusion-Positive Rhabdomyosarcoma 7 114359 -NCIT:C123731 Fusion-Positive Alveolar Rhabdomyosarcoma 8 114360 -NCIT:C123736 Fusion-Negative Rhabdomyosarcoma 7 114361 -NCIT:C123732 Fusion-Negative Alveolar Rhabdomyosarcoma 8 114362 -NCIT:C127058 Uterine Corpus Rhabdomyosarcoma 7 114363 -NCIT:C128048 Cervical Rhabdomyosarcoma 7 114364 -NCIT:C128080 Vaginal Rhabdomyosarcoma 7 114365 -NCIT:C40268 Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 8 114366 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 9 114367 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 9 114368 -NCIT:C142851 Refractory Rhabdomyosarcoma 7 114369 -NCIT:C142880 Refractory Alveolar Rhabdomyosarcoma 8 114370 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 8 114371 -NCIT:C151981 Pelvic Rhabdomyosarcoma 7 114372 -NCIT:C151982 Abdominal Rhabdomyosarcoma 7 114373 -NCIT:C151983 Unresectable Rhabdomyosarcoma 7 114374 -NCIT:C159206 Kidney Rhabdomyosarcoma 7 114375 -NCIT:C159667 Bladder Rhabdomyosarcoma 7 114376 -NCIT:C159668 Bladder Embryonal Rhabdomyosarcoma 8 114377 -NCIT:C159669 Bladder Alveolar Rhabdomyosarcoma 8 114378 -NCIT:C162497 Paratesticular Rhabdomyosarcoma 7 114379 -NCIT:C162588 Penile Rhabdomyosarcoma 7 114380 -NCIT:C166414 Metastatic Rhabdomyosarcoma 7 114381 -NCIT:C166415 Locally Advanced Rhabdomyosarcoma 8 114382 -NCIT:C183250 Metastatic Embryonal Rhabdomyosarcoma 8 114383 -NCIT:C172952 Digestive System Rhabdomyosarcoma 7 114384 -NCIT:C5610 Anal Rhabdomyosarcoma 8 114385 -NCIT:C5627 Rectal Rhabdomyosarcoma 8 114386 -NCIT:C5834 Liver Rhabdomyosarcoma 8 114387 -NCIT:C5839 Gallbladder Rhabdomyosarcoma 8 114388 -NCIT:C5860 Extrahepatic Bile Duct Rhabdomyosarcoma 8 114389 -NCIT:C5847 Extrahepatic Bile Duct Embryonal Rhabdomyosarcoma 9 114390 -NCIT:C95623 Esophageal Rhabdomyosarcoma 8 114391 -NCIT:C173124 Sinonasal Rhabdomyosarcoma 7 114392 -NCIT:C175501 Conjunctival Rhabdomyosarcoma 7 114393 -NCIT:C181201 Lung Rhabdomyosarcoma 7 114394 -NCIT:C181944 Vulvar Rhabdomyosarcoma 7 114395 -NCIT:C128273 Vulvar Alveolar Rhabdomyosarcoma 8 114396 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 8 114397 -NCIT:C188071 Retroperitoneal Rhabdomyosarcoma 7 114398 -NCIT:C3749 Alveolar Rhabdomyosarcoma 7 114399 -NCIT:C123731 Fusion-Positive Alveolar Rhabdomyosarcoma 8 114400 -NCIT:C123732 Fusion-Negative Alveolar Rhabdomyosarcoma 8 114401 -NCIT:C128273 Vulvar Alveolar Rhabdomyosarcoma 8 114402 -NCIT:C142880 Refractory Alveolar Rhabdomyosarcoma 8 114403 -NCIT:C142881 Recurrent Alveolar Rhabdomyosarcoma 8 114404 -NCIT:C159669 Bladder Alveolar Rhabdomyosarcoma 8 114405 -NCIT:C188070 Prostate Alveolar Rhabdomyosarcoma 8 114406 -NCIT:C27492 Conventional Alveolar Rhabdomyosarcoma 8 114407 -NCIT:C27493 Solid Alveolar Rhabdomyosarcoma 8 114408 -NCIT:C6247 Orbit Alveolar Rhabdomyosarcoma 8 114409 -NCIT:C7958 Childhood Alveolar Rhabdomyosarcoma 8 114410 -NCIT:C4258 Pleomorphic Rhabdomyosarcoma 7 114411 -NCIT:C27369 Adult Pleomorphic Rhabdomyosarcoma 8 114412 -NCIT:C7959 Childhood Pleomorphic Rhabdomyosarcoma 8 114413 -NCIT:C4259 Rhabdomyosarcoma with Mixed Embryonal and Alveolar Features 7 114414 -NCIT:C7960 Childhood Rhabdomyosarcoma with Mixed Embryonal and Alveolar Features 8 114415 -NCIT:C4543 Orbit Rhabdomyosarcoma 7 114416 -NCIT:C6246 Orbit Embryonal Rhabdomyosarcoma 8 114417 -NCIT:C6247 Orbit Alveolar Rhabdomyosarcoma 8 114418 -NCIT:C45759 Cardiac Rhabdomyosarcoma 7 114419 -NCIT:C5190 Breast Rhabdomyosarcoma 7 114420 -NCIT:C5236 Ovarian Rhabdomyosarcoma 7 114421 -NCIT:C5464 Central Nervous System Rhabdomyosarcoma 7 114422 -NCIT:C5522 Prostate Rhabdomyosarcoma 7 114423 -NCIT:C188070 Prostate Alveolar Rhabdomyosarcoma 8 114424 -NCIT:C5525 Prostate Embryonal Rhabdomyosarcoma 8 114425 -NCIT:C6378 Testicular Rhabdomyosarcoma 7 114426 -NCIT:C6617 Mediastinal Rhabdomyosarcoma 7 114427 -NCIT:C7705 Childhood Rhabdomyosarcoma 7 114428 -NCIT:C123397 Childhood Spindle Cell Rhabdomyosarcoma 8 114429 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 8 114430 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 8 114431 -NCIT:C7957 Childhood Embryonal Rhabdomyosarcoma 8 114432 -NCIT:C35574 Childhood Botryoid-Type Embryonal Rhabdomyosarcoma 9 114433 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 114434 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 10 114435 -NCIT:C7958 Childhood Alveolar Rhabdomyosarcoma 8 114436 -NCIT:C7959 Childhood Pleomorphic Rhabdomyosarcoma 8 114437 -NCIT:C7960 Childhood Rhabdomyosarcoma with Mixed Embryonal and Alveolar Features 8 114438 -NCIT:C8065 Localized Childhood Rhabdomyosarcoma 8 114439 -NCIT:C8824 Recurrent Rhabdomyosarcoma 7 114440 -NCIT:C142881 Recurrent Alveolar Rhabdomyosarcoma 8 114441 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 8 114442 -NCIT:C8971 Embryonal Rhabdomyosarcoma 7 114443 -NCIT:C159668 Bladder Embryonal Rhabdomyosarcoma 8 114444 -NCIT:C183250 Metastatic Embryonal Rhabdomyosarcoma 8 114445 -NCIT:C188115 Middle Ear Embryonal Rhabdomyosarcoma 8 114446 -NCIT:C49204 Anaplastic Embryonal Rhabdomyosarcoma 8 114447 -NCIT:C5525 Prostate Embryonal Rhabdomyosarcoma 8 114448 -NCIT:C5847 Extrahepatic Bile Duct Embryonal Rhabdomyosarcoma 8 114449 -NCIT:C6246 Orbit Embryonal Rhabdomyosarcoma 8 114450 -NCIT:C7957 Childhood Embryonal Rhabdomyosarcoma 8 114451 -NCIT:C35574 Childhood Botryoid-Type Embryonal Rhabdomyosarcoma 9 114452 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 114453 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 10 114454 -NCIT:C9150 Botryoid-Type Embryonal Rhabdomyosarcoma 8 114455 -NCIT:C35574 Childhood Botryoid-Type Embryonal Rhabdomyosarcoma 9 114456 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 114457 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 10 114458 -NCIT:C36099 Adult Botryoid-Type Embryonal Rhabdomyosarcoma 9 114459 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 114460 -NCIT:C40268 Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 9 114461 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 114462 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 114463 -NCIT:C9130 Adult Rhabdomyosarcoma 7 114464 -NCIT:C27369 Adult Pleomorphic Rhabdomyosarcoma 8 114465 -NCIT:C36099 Adult Botryoid-Type Embryonal Rhabdomyosarcoma 8 114466 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 9 114467 -NCIT:C3400 Synovial Sarcoma 6 114468 -NCIT:C147102 Pericardial Synovial Sarcoma 7 114469 -NCIT:C148296 Refractory Synovial Sarcoma 7 114470 -NCIT:C153074 Unresectable Synovial Sarcoma 7 114471 -NCIT:C157737 Kidney Synovial Sarcoma 7 114472 -NCIT:C161034 Prostate Synovial Sarcoma 7 114473 -NCIT:C173128 Sinonasal Synovial Sarcoma 7 114474 -NCIT:C4279 Biphasic Synovial Sarcoma 7 114475 -NCIT:C45632 Lung Biphasic Synovial Sarcoma 8 114476 -NCIT:C45698 Pleural Biphasic Synovial Sarcoma 8 114477 -NCIT:C45757 Cardiac Biphasic Synovial Sarcoma 8 114478 -NCIT:C45631 Lung Synovial Sarcoma 7 114479 -NCIT:C45632 Lung Biphasic Synovial Sarcoma 8 114480 -NCIT:C45633 Lung Monophasic Synovial Sarcoma 8 114481 -NCIT:C45696 Pleural Synovial Sarcoma 7 114482 -NCIT:C45697 Pleural Monophasic Synovial Sarcoma 8 114483 -NCIT:C45698 Pleural Biphasic Synovial Sarcoma 8 114484 -NCIT:C45756 Cardiac Synovial Sarcoma 7 114485 -NCIT:C45757 Cardiac Biphasic Synovial Sarcoma 8 114486 -NCIT:C45758 Cardiac Monophasic Synovial Sarcoma 8 114487 -NCIT:C6534 Monophasic Synovial Sarcoma 7 114488 -NCIT:C4277 Spindle Cell Synovial Sarcoma 8 114489 -NCIT:C4278 Epithelial Synovial Sarcoma 8 114490 -NCIT:C45633 Lung Monophasic Synovial Sarcoma 8 114491 -NCIT:C45697 Pleural Monophasic Synovial Sarcoma 8 114492 -NCIT:C45758 Cardiac Monophasic Synovial Sarcoma 8 114493 -NCIT:C6618 Mediastinal Synovial Sarcoma 7 114494 -NCIT:C7817 Adult Synovial Sarcoma 7 114495 -NCIT:C8089 Childhood Synovial Sarcoma 7 114496 -NCIT:C8825 Metastatic Synovial Sarcoma 7 114497 -NCIT:C153184 Advanced Synovial Sarcoma 8 114498 -NCIT:C171399 Locally Advanced Synovial Sarcoma 8 114499 -NCIT:C8826 Localized Synovial Sarcoma 7 114500 -NCIT:C8827 Recurrent Synovial Sarcoma 7 114501 -NCIT:C95624 Esophageal Synovial Sarcoma 7 114502 -NCIT:C95899 Gastric Synovial Sarcoma 7 114503 -NCIT:C96845 Liver Synovial Sarcoma 7 114504 -NCIT:C3705 Pleomorphic Liposarcoma 6 114505 -NCIT:C170473 Skin Pleomorphic Liposarcoma 7 114506 -NCIT:C182025 Metastatic Pleomorphic Liposarcoma 7 114507 -NCIT:C182026 Advanced Pleomorphic Liposarcoma 8 114508 -NCIT:C182028 Unresectable Pleomorphic Liposarcoma 7 114509 -NCIT:C3750 Alveolar Soft Part Sarcoma 6 114510 -NCIT:C156273 Tongue Alveolar Soft Part Sarcoma' 7 114511 -NCIT:C156276 Orbital Alveolar Soft Part Sarcoma 7 114512 -NCIT:C156277 Bladder Alveolar Soft Part Sarcoma 7 114513 -NCIT:C164078 Unresectable Alveolar Soft Part Sarcoma 7 114514 -NCIT:C173809 Lung Alveolar Soft Part Sarcoma 7 114515 -NCIT:C188034 Refractory Alveolar Soft Part Sarcoma 7 114516 -NCIT:C40225 Cervical Alveolar Soft Part Sarcoma 7 114517 -NCIT:C40320 Vulvar Alveolar Soft Part Sarcoma 7 114518 -NCIT:C7943 Adult Alveolar Soft Part Sarcoma 7 114519 -NCIT:C8092 Childhood Alveolar Soft Part Sarcoma 7 114520 -NCIT:C8796 Metastatic Alveolar Soft Part Sarcoma 7 114521 -NCIT:C164076 Locally Advanced Alveolar Soft Part Sarcoma 8 114522 -NCIT:C188198 Advanced Alveolar Soft Part Sarcoma 8 114523 -NCIT:C8797 Localized Alveolar Soft Part Sarcoma 7 114524 -NCIT:C8798 Recurrent Alveolar Soft Part Sarcoma 7 114525 -NCIT:C4716 Ectomesenchymoma 6 114526 -NCIT:C173815 Recurrent Ectomesenchymoma 7 114527 -NCIT:C188984 Childhood Ectomesenchymoma 7 114528 -NCIT:C9390 Leiomyosarcoma NCI Grade 3 6 114529 -NCIT:C9404 Poorly Differentiated Fibrosarcoma 6 114530 -NCIT:C9410 Epithelioid Sarcoma NCI Grade 3 6 114531 -NCIT:C9412 Angiosarcoma NCI Grade 3 6 114532 -NCIT:C9414 Kaposi Sarcoma NCI Grade 3 6 114533 -NCIT:C9416 Sarcoma by AJCC Grade 4 114534 -NCIT:C9417 Low Grade Sarcoma 5 114535 -NCIT:C9419 AJCC Grade 1 Sarcoma 6 114536 -NCIT:C9420 AJCC Grade 2 Sarcoma 6 114537 -NCIT:C9418 High Grade Sarcoma 5 114538 -NCIT:C168667 Metastatic High Grade Sarcoma 6 114539 -NCIT:C168668 Locally Advanced High Grade Sarcoma 7 114540 -NCIT:C9421 AJCC Grade 3 Sarcoma 6 114541 -NCIT:C9422 AJCC Grade 4 Sarcoma 6 114542 -NCIT:C4784 Cardiovascular Neoplasm 2 114543 -NCIT:C114940 Malignant Cardiovascular Neoplasm 3 114544 -NCIT:C3548 Malignant Cardiac Neoplasm 4 114545 -NCIT:C4568 Malignant Epicardial Neoplasm 5 114546 -NCIT:C4569 Malignant Myocardial Neoplasm 5 114547 -NCIT:C4570 Malignant Endocardial Neoplasm 5 114548 -NCIT:C4889 Metastatic Malignant Neoplasm in the Heart 5 114549 -NCIT:C5369 Secondary Heart Lymphoma 6 114550 -NCIT:C5362 Cardiac Epithelioid Hemangioendothelioma 5 114551 -NCIT:C5368 Cardiac Lymphoma 5 114552 -NCIT:C183146 Cardiac Diffuse Large B-Cell Lymphoma 6 114553 -NCIT:C183141 Cardiac Fibrin-Associated Diffuse Large B-Cell Lymphoma 7 114554 -NCIT:C5370 Cardiac Myeloid Sarcoma 5 114555 -NCIT:C5371 Malignant Cardiac Germ Cell Tumor 5 114556 -NCIT:C147006 Cardiac Yolk Sac Tumor 6 114557 -NCIT:C5392 Metastatic Cardiac Paraganglioma 5 114558 -NCIT:C7723 Cardiac Sarcoma 5 114559 -NCIT:C147003 Cardiac Extraskeletal Osteosarcoma 6 114560 -NCIT:C147097 Cardiac Angiosarcoma 6 114561 -NCIT:C45755 Cardiac Undifferentiated Pleomorphic Sarcoma 6 114562 -NCIT:C45756 Cardiac Synovial Sarcoma 6 114563 -NCIT:C45757 Cardiac Biphasic Synovial Sarcoma 7 114564 -NCIT:C45758 Cardiac Monophasic Synovial Sarcoma 7 114565 -NCIT:C45759 Cardiac Rhabdomyosarcoma 6 114566 -NCIT:C5361 Cardiac Fibrosarcoma 6 114567 -NCIT:C147004 Cardiac Myxofibrosarcoma 7 114568 -NCIT:C5363 Cardiac Kaposi Sarcoma 6 114569 -NCIT:C5364 Cardiac Leiomyosarcoma 6 114570 -NCIT:C5367 Cardiac Malignant Peripheral Nerve Sheath Tumor 6 114571 -NCIT:C4567 Malignant Pericardial Neoplasm 4 114572 -NCIT:C147098 Pericardial Sarcoma 5 114573 -NCIT:C147101 Pericardial Angiosarcoma 6 114574 -NCIT:C147102 Pericardial Synovial Sarcoma 6 114575 -NCIT:C147104 Malignant Pericardial Germ Cell Tumor 5 114576 -NCIT:C147105 Pericardial Yolk Sac Tumor 6 114577 -NCIT:C183136 Pericardial Primary Effusion Lymphoma 5 114578 -NCIT:C45762 Metastatic Malignant Neoplasm in the Pericardium 5 114579 -NCIT:C27385 Pericardial Carcinomatosis 6 114580 -NCIT:C7631 Pericardial Malignant Mesothelioma 5 114581 -NCIT:C8703 Advanced Pericardial Malignant Mesothelioma 6 114582 -NCIT:C9253 Recurrent Pericardial Malignant Mesothelioma 6 114583 -NCIT:C7753 Malignant Pericarditis 5 114584 -NCIT:C4575 Malignant Great Vessel Neoplasm 4 114585 -NCIT:C5375 Malignant Aortic Neoplasm 5 114586 -NCIT:C5377 Malignant Inferior Vena Cava Neoplasm 5 114587 -NCIT:C5379 Malignant Superior Vena Cava Neoplasm 5 114588 -NCIT:C6745 Superior Vena Cava Leiomyosarcoma 6 114589 -NCIT:C5380 Malignant Pulmonary Artery Neoplasm 5 114590 -NCIT:C5381 Pulmonary Artery Choriocarcinoma 6 114591 -NCIT:C5383 Malignant Pulmonary Vein Neoplasm 5 114592 -NCIT:C7390 Malignant Vascular Neoplasm 4 114593 -NCIT:C27529 Malignant Skin Vascular Neoplasm 5 114594 -NCIT:C3550 Skin Kaposi Sarcoma 6 114595 -NCIT:C9112 Classic Kaposi Sarcoma 7 114596 -NCIT:C4489 Skin Angiosarcoma 6 114597 -NCIT:C153626 Recurrent Skin Angiosarcoma 7 114598 -NCIT:C27719 Skin Radiation-Related Angiosarcoma 7 114599 -NCIT:C40379 Angiosarcoma of the Skin of the Arm after Radical Mastectomy followed by Lymphedema 7 114600 -NCIT:C4490 Skin Lymphangiosarcoma 6 114601 -NCIT:C3205 Lymphangiosarcoma 5 114602 -NCIT:C4490 Skin Lymphangiosarcoma 6 114603 -NCIT:C8538 Malignant Blood Vessel Neoplasm 5 114604 -NCIT:C3088 Angiosarcoma 6 114605 -NCIT:C121671 Soft Tissue Angiosarcoma 7 114606 -NCIT:C162578 Penile Angiosarcoma 8 114607 -NCIT:C171026 Visceral Angiosarcoma 8 114608 -NCIT:C147097 Cardiac Angiosarcoma 9 114609 -NCIT:C147101 Pericardial Angiosarcoma 9 114610 -NCIT:C159205 Kidney Angiosarcoma 9 114611 -NCIT:C159671 Bladder Angiosarcoma 9 114612 -NCIT:C161642 Seminal Vesicle Angiosarcoma 9 114613 -NCIT:C4438 Liver Angiosarcoma 9 114614 -NCIT:C190020 Childhood Liver Angiosarcoma 10 114615 -NCIT:C4564 Splenic Angiosarcoma 9 114616 -NCIT:C48320 Adrenal Gland Angiosarcoma 9 114617 -NCIT:C5232 Ovarian Angiosarcoma 9 114618 -NCIT:C5376 Aortic Angiosarcoma 9 114619 -NCIT:C5378 Superior Vena Cava Angiosarcoma 9 114620 -NCIT:C5385 Uterine Angiosarcoma 9 114621 -NCIT:C128049 Cervical Angiosarcoma 10 114622 -NCIT:C5528 Prostate Angiosarcoma 9 114623 -NCIT:C5840 Gallbladder Angiosarcoma 9 114624 -NCIT:C6043 Thyroid Gland Angiosarcoma 9 114625 -NCIT:C6613 Mediastinal Angiosarcoma 9 114626 -NCIT:C6746 Pulmonary Artery Angiosarcoma 9 114627 -NCIT:C96060 Small Intestinal Angiosarcoma 9 114628 -NCIT:C96511 Colorectal Angiosarcoma 9 114629 -NCIT:C173125 Sinonasal Angiosarcoma 8 114630 -NCIT:C176515 Vulvar Angiosarcoma 8 114631 -NCIT:C4489 Skin Angiosarcoma 8 114632 -NCIT:C153626 Recurrent Skin Angiosarcoma 9 114633 -NCIT:C27719 Skin Radiation-Related Angiosarcoma 9 114634 -NCIT:C40379 Angiosarcoma of the Skin of the Arm after Radical Mastectomy followed by Lymphedema 9 114635 -NCIT:C5184 Breast Angiosarcoma 8 114636 -NCIT:C133092 Recurrent Breast Angiosarcoma 9 114637 -NCIT:C176251 Primary Breast Angiosarcoma 9 114638 -NCIT:C40378 Postradiation Breast Angiosarcoma 9 114639 -NCIT:C5320 Peripheral Intraneural Angiosarcoma 8 114640 -NCIT:C5450 Central Nervous System Angiosarcoma 8 114641 -NCIT:C168718 Unresectable Angiosarcoma 7 114642 -NCIT:C175499 Conjunctival Angiosarcoma 7 114643 -NCIT:C27512 Angiosarcoma Associated with Lymphedema 7 114644 -NCIT:C40379 Angiosarcoma of the Skin of the Arm after Radical Mastectomy followed by Lymphedema 8 114645 -NCIT:C27513 Radiation-Related Angiosarcoma 7 114646 -NCIT:C27719 Skin Radiation-Related Angiosarcoma 8 114647 -NCIT:C5384 Recurrent Angiosarcoma 7 114648 -NCIT:C133092 Recurrent Breast Angiosarcoma 8 114649 -NCIT:C153626 Recurrent Skin Angiosarcoma 8 114650 -NCIT:C6479 Bone Angiosarcoma 7 114651 -NCIT:C8708 Metastatic Angiosarcoma 7 114652 -NCIT:C146856 Locally Advanced Angiosarcoma 8 114653 -NCIT:C168720 Advanced Angiosarcoma 8 114654 -NCIT:C9031 Poorly Differentiated Angiosarcoma 7 114655 -NCIT:C9040 Adult Angiosarcoma 7 114656 -NCIT:C9174 Childhood Angiosarcoma 7 114657 -NCIT:C190020 Childhood Liver Angiosarcoma 8 114658 -NCIT:C9275 Localized Angiosarcoma 7 114659 -NCIT:C9411 Angiosarcoma NCI Grade 2 7 114660 -NCIT:C9412 Angiosarcoma NCI Grade 3 7 114661 -NCIT:C9426 Conventional Angiosarcoma 7 114662 -NCIT:C3800 Epithelioid Hemangioendothelioma 6 114663 -NCIT:C114923 Adult Epithelioid Hemangioendothelioma 7 114664 -NCIT:C114926 Childhood Epithelioid Hemangioendothelioma 7 114665 -NCIT:C121941 Bone Epithelioid Hemangioendothelioma 7 114666 -NCIT:C129536 Central Nervous System Epithelioid Hemangioendothelioma 7 114667 -NCIT:C146858 Metastatic Epithelioid Hemangioendothelioma 7 114668 -NCIT:C146857 Locally Advanced Epithelioid Hemangioendothelioma 8 114669 -NCIT:C168721 Advanced Epithelioid Hemangioendothelioma 8 114670 -NCIT:C146988 Mediastinal Epithelioid Hemangioendothelioma 7 114671 -NCIT:C162581 Penile Epithelioid Hemangioendothelioma 7 114672 -NCIT:C168723 Unresectable Epithelioid Hemangioendothelioma 7 114673 -NCIT:C173138 Sinonasal Epithelioid Hemangioendothelioma 7 114674 -NCIT:C177552 Epithelioid Hemangioendothelioma with WWTR1-CAMTA1 Gene Fusion 7 114675 -NCIT:C177553 Epithelioid Hemangioendothelioma with YAP1-TFE3 Gene Fusion 7 114676 -NCIT:C4453 Lung Epithelioid Hemangioendothelioma 7 114677 -NCIT:C45695 Pleural Epithelioid Hemangioendothelioma 7 114678 -NCIT:C5362 Cardiac Epithelioid Hemangioendothelioma 7 114679 -NCIT:C96846 Liver Epithelioid Hemangioendothelioma 7 114680 -NCIT:C9087 Kaposi Sarcoma 6 114681 -NCIT:C156474 Refractory Kaposi Sarcoma 7 114682 -NCIT:C156475 Metastatic Kaposi Sarcoma 7 114683 -NCIT:C156476 Advanced Kaposi Sarcoma 8 114684 -NCIT:C172955 Digestive System Kaposi Sarcoma 7 114685 -NCIT:C5529 Gastric Kaposi Sarcoma 8 114686 -NCIT:C5624 AIDS-Related Gastric Kaposi Sarcoma 9 114687 -NCIT:C5602 Anal Kaposi Sarcoma 8 114688 -NCIT:C5706 Esophageal Kaposi Sarcoma 8 114689 -NCIT:C5842 Gallbladder Kaposi Sarcoma 8 114690 -NCIT:C96059 Small Intestinal Kaposi Sarcoma 8 114691 -NCIT:C96434 Appendix Kaposi Sarcoma 8 114692 -NCIT:C96510 Colorectal Kaposi Sarcoma 8 114693 -NCIT:C5516 Colon Kaposi Sarcoma 9 114694 -NCIT:C5550 Rectal Kaposi Sarcoma 9 114695 -NCIT:C96844 Liver Kaposi Sarcoma 8 114696 -NCIT:C96951 Extrahepatic Bile Duct Kaposi Sarcoma 8 114697 -NCIT:C173477 Oral Cavity Kaposi Sarcoma 7 114698 -NCIT:C6749 Palate Kaposi Sarcoma 8 114699 -NCIT:C181938 Vulvar Kaposi Sarcoma 7 114700 -NCIT:C188980 Childhood Kaposi Sarcoma 7 114701 -NCIT:C27500 Lymphadenopathic Kaposi Sarcoma 7 114702 -NCIT:C3550 Skin Kaposi Sarcoma 7 114703 -NCIT:C9112 Classic Kaposi Sarcoma 8 114704 -NCIT:C3551 Lung Kaposi Sarcoma 7 114705 -NCIT:C35873 Iatrogenic Kaposi Sarcoma 7 114706 -NCIT:C9113 Kaposi Sarcoma Related to Immunosuppressive Treatment 8 114707 -NCIT:C27640 Transplant-Related Kaposi Sarcoma 9 114708 -NCIT:C35874 Endemic African Kaposi Sarcoma 7 114709 -NCIT:C3992 AIDS-Related Kaposi Sarcoma 7 114710 -NCIT:C5624 AIDS-Related Gastric Kaposi Sarcoma 8 114711 -NCIT:C7433 AIDS-Related Cervical Kaposi Sarcoma 8 114712 -NCIT:C4578 Conjunctival Kaposi Sarcoma 7 114713 -NCIT:C4579 Corneal Kaposi Sarcoma 7 114714 -NCIT:C5363 Cardiac Kaposi Sarcoma 7 114715 -NCIT:C5523 Prostate Kaposi Sarcoma 7 114716 -NCIT:C5952 Parotid Gland Kaposi Sarcoma 7 114717 -NCIT:C6377 Penile Kaposi Sarcoma 7 114718 -NCIT:C7006 Central Nervous System Kaposi Sarcoma 7 114719 -NCIT:C7935 Recurrent Kaposi Sarcoma 7 114720 -NCIT:C9413 Kaposi Sarcoma NCI Grade 2 7 114721 -NCIT:C9414 Kaposi Sarcoma NCI Grade 3 7 114722 -NCIT:C3081 Heart Neoplasm 3 114723 -NCIT:C147005 Cardiac Germ Cell Tumor 4 114724 -NCIT:C147007 Cardiac Teratoma 5 114725 -NCIT:C5357 Benign Cardiac Germ Cell Tumor 5 114726 -NCIT:C5371 Malignant Cardiac Germ Cell Tumor 5 114727 -NCIT:C147006 Cardiac Yolk Sac Tumor 6 114728 -NCIT:C3548 Malignant Cardiac Neoplasm 4 114729 -NCIT:C4568 Malignant Epicardial Neoplasm 5 114730 -NCIT:C4569 Malignant Myocardial Neoplasm 5 114731 -NCIT:C4570 Malignant Endocardial Neoplasm 5 114732 -NCIT:C4889 Metastatic Malignant Neoplasm in the Heart 5 114733 -NCIT:C5369 Secondary Heart Lymphoma 6 114734 -NCIT:C5362 Cardiac Epithelioid Hemangioendothelioma 5 114735 -NCIT:C5368 Cardiac Lymphoma 5 114736 -NCIT:C183146 Cardiac Diffuse Large B-Cell Lymphoma 6 114737 -NCIT:C183141 Cardiac Fibrin-Associated Diffuse Large B-Cell Lymphoma 7 114738 -NCIT:C5370 Cardiac Myeloid Sarcoma 5 114739 -NCIT:C5371 Malignant Cardiac Germ Cell Tumor 5 114740 -NCIT:C147006 Cardiac Yolk Sac Tumor 6 114741 -NCIT:C5392 Metastatic Cardiac Paraganglioma 5 114742 -NCIT:C7723 Cardiac Sarcoma 5 114743 -NCIT:C147003 Cardiac Extraskeletal Osteosarcoma 6 114744 -NCIT:C147097 Cardiac Angiosarcoma 6 114745 -NCIT:C45755 Cardiac Undifferentiated Pleomorphic Sarcoma 6 114746 -NCIT:C45756 Cardiac Synovial Sarcoma 6 114747 -NCIT:C45757 Cardiac Biphasic Synovial Sarcoma 7 114748 -NCIT:C45758 Cardiac Monophasic Synovial Sarcoma 7 114749 -NCIT:C45759 Cardiac Rhabdomyosarcoma 6 114750 -NCIT:C5361 Cardiac Fibrosarcoma 6 114751 -NCIT:C147004 Cardiac Myxofibrosarcoma 7 114752 -NCIT:C5363 Cardiac Kaposi Sarcoma 6 114753 -NCIT:C5364 Cardiac Leiomyosarcoma 6 114754 -NCIT:C5367 Cardiac Malignant Peripheral Nerve Sheath Tumor 6 114755 -NCIT:C3605 Benign Cardiac Neoplasm 4 114756 -NCIT:C45749 Cardiac Hemangioma 5 114757 -NCIT:C45750 Cardiac Cavernous Hemangioma 6 114758 -NCIT:C45751 Cardiac Capillary Hemangioma 6 114759 -NCIT:C45752 Cardiac Intramuscular Hemangioma 6 114760 -NCIT:C45754 Cystic Tumor of the Atrioventricular Node 5 114761 -NCIT:C4607 Benign Myocardial Neoplasm 5 114762 -NCIT:C6739 Cardiac Rhabdomyoma 6 114763 -NCIT:C190104 Childhood Cardiac Rhabdomyoma 7 114764 -NCIT:C45747 Adult Cardiac Cellular Rhabdomyoma 7 114765 -NCIT:C49179 Conventional Cardiac Rhabdomyoma 7 114766 -NCIT:C4608 Benign Endocardial Neoplasm 5 114767 -NCIT:C3695 Papillary Fibroelastoma 6 114768 -NCIT:C7748 Cardiac Myxoma 6 114769 -NCIT:C3499 Atrial Myxoma 7 114770 -NCIT:C4791 Left Atrial Myxoma 8 114771 -NCIT:C4792 Right Atrial Myxoma 8 114772 -NCIT:C45748 Ventricular Myxoma 7 114773 -NCIT:C5357 Benign Cardiac Germ Cell Tumor 5 114774 -NCIT:C5358 Cardiac Schwannoma 5 114775 -NCIT:C5359 Cardiac Neurofibroma 5 114776 -NCIT:C5389 Benign Atrial Neoplasm 5 114777 -NCIT:C3499 Atrial Myxoma 6 114778 -NCIT:C4791 Left Atrial Myxoma 7 114779 -NCIT:C4792 Right Atrial Myxoma 7 114780 -NCIT:C6741 Cardiac Lipoma 5 114781 -NCIT:C6742 Epicardial Lipoma 6 114782 -NCIT:C6947 Cardiac Fibroma 5 114783 -NCIT:C8535 Benign Epicardial Neoplasm 5 114784 -NCIT:C6742 Epicardial Lipoma 6 114785 -NCIT:C45753 Cardiac Inflammatory Myofibroblastic Tumor 4 114786 -NCIT:C4651 Pericardial Neoplasm 4 114787 -NCIT:C4281 Pericardial Solitary Fibrous Tumor 5 114788 -NCIT:C4567 Malignant Pericardial Neoplasm 5 114789 -NCIT:C147098 Pericardial Sarcoma 6 114790 -NCIT:C147101 Pericardial Angiosarcoma 7 114791 -NCIT:C147102 Pericardial Synovial Sarcoma 7 114792 -NCIT:C147104 Malignant Pericardial Germ Cell Tumor 6 114793 -NCIT:C147105 Pericardial Yolk Sac Tumor 7 114794 -NCIT:C183136 Pericardial Primary Effusion Lymphoma 6 114795 -NCIT:C45762 Metastatic Malignant Neoplasm in the Pericardium 6 114796 -NCIT:C27385 Pericardial Carcinomatosis 7 114797 -NCIT:C7631 Pericardial Malignant Mesothelioma 6 114798 -NCIT:C8703 Advanced Pericardial Malignant Mesothelioma 7 114799 -NCIT:C9253 Recurrent Pericardial Malignant Mesothelioma 7 114800 -NCIT:C7753 Malignant Pericarditis 6 114801 -NCIT:C45761 Pericardial Germ Cell Tumor 5 114802 -NCIT:C147103 Pericardial Teratoma 6 114803 -NCIT:C6744 Pericardial Mature Teratoma 7 114804 -NCIT:C147104 Malignant Pericardial Germ Cell Tumor 6 114805 -NCIT:C147105 Pericardial Yolk Sac Tumor 7 114806 -NCIT:C147106 Benign Pericardial Germ Cell Tumor 6 114807 -NCIT:C6744 Pericardial Mature Teratoma 7 114808 -NCIT:C7632 Pericardial Mesothelioma 5 114809 -NCIT:C7631 Pericardial Malignant Mesothelioma 6 114810 -NCIT:C8703 Advanced Pericardial Malignant Mesothelioma 7 114811 -NCIT:C9253 Recurrent Pericardial Malignant Mesothelioma 7 114812 -NCIT:C92187 Pericardial Adenomatoid Tumor 6 114813 -NCIT:C8536 Benign Pericardial Neoplasm 5 114814 -NCIT:C147106 Benign Pericardial Germ Cell Tumor 6 114815 -NCIT:C6744 Pericardial Mature Teratoma 7 114816 -NCIT:C6743 Pericardial Leiomyoma 6 114817 -NCIT:C92187 Pericardial Adenomatoid Tumor 6 114818 -NCIT:C5346 Endocardial Neoplasm 4 114819 -NCIT:C4570 Malignant Endocardial Neoplasm 5 114820 -NCIT:C4608 Benign Endocardial Neoplasm 5 114821 -NCIT:C3695 Papillary Fibroelastoma 6 114822 -NCIT:C7748 Cardiac Myxoma 6 114823 -NCIT:C3499 Atrial Myxoma 7 114824 -NCIT:C4791 Left Atrial Myxoma 8 114825 -NCIT:C4792 Right Atrial Myxoma 8 114826 -NCIT:C45748 Ventricular Myxoma 7 114827 -NCIT:C5347 Epicardial Neoplasm 4 114828 -NCIT:C4568 Malignant Epicardial Neoplasm 5 114829 -NCIT:C5360 Cardiac Granular Cell Tumor 5 114830 -NCIT:C8535 Benign Epicardial Neoplasm 5 114831 -NCIT:C6742 Epicardial Lipoma 6 114832 -NCIT:C5349 Myocardial Neoplasm 4 114833 -NCIT:C4569 Malignant Myocardial Neoplasm 5 114834 -NCIT:C4607 Benign Myocardial Neoplasm 5 114835 -NCIT:C6739 Cardiac Rhabdomyoma 6 114836 -NCIT:C190104 Childhood Cardiac Rhabdomyoma 7 114837 -NCIT:C45747 Adult Cardiac Cellular Rhabdomyoma 7 114838 -NCIT:C49179 Conventional Cardiac Rhabdomyoma 7 114839 -NCIT:C6410 Cardiac Paraganglioma 4 114840 -NCIT:C5390 Atrial Paraganglioma 5 114841 -NCIT:C5392 Metastatic Cardiac Paraganglioma 5 114842 -NCIT:C5348 Great Vessel Neoplasm 3 114843 -NCIT:C4575 Malignant Great Vessel Neoplasm 4 114844 -NCIT:C5375 Malignant Aortic Neoplasm 5 114845 -NCIT:C5377 Malignant Inferior Vena Cava Neoplasm 5 114846 -NCIT:C5379 Malignant Superior Vena Cava Neoplasm 5 114847 -NCIT:C6745 Superior Vena Cava Leiomyosarcoma 6 114848 -NCIT:C5380 Malignant Pulmonary Artery Neoplasm 5 114849 -NCIT:C5381 Pulmonary Artery Choriocarcinoma 6 114850 -NCIT:C5383 Malignant Pulmonary Vein Neoplasm 5 114851 -NCIT:C8539 Benign Great Vessel Neoplasm 4 114852 -NCIT:C7388 Vascular Neoplasm 3 114853 -NCIT:C3723 Lymphatic Vessel Neoplasm 4 114854 -NCIT:C3205 Lymphangiosarcoma 5 114855 -NCIT:C4490 Skin Lymphangiosarcoma 6 114856 -NCIT:C6524 Benign Lymphatic Vessel Neoplasm 5 114857 -NCIT:C8965 Lymphangioma 6 114858 -NCIT:C156345 Thyroid Gland Lymphangioma 7 114859 -NCIT:C159214 Kidney Lymphangioma 7 114860 -NCIT:C175498 Conjunctival Lymphangioma 7 114861 -NCIT:C188252 Adrenal Gland Lymphangioma 7 114862 -NCIT:C27508 Intra-Abdominal Lymphangioma 7 114863 -NCIT:C5500 Colon Lymphangioma 8 114864 -NCIT:C96841 Liver Lymphangioma 8 114865 -NCIT:C27509 Skin Lymphangioma 7 114866 -NCIT:C162592 Penile Lymphangioma 8 114867 -NCIT:C3203 Acquired Progressive Lymphangioma 7 114868 -NCIT:C3724 Cystic Hygroma 7 114869 -NCIT:C116899 Congenital Cystic Hygroma 8 114870 -NCIT:C45485 Lymphangioma Circumscriptum 7 114871 -NCIT:C53316 Cavernous Lymphangioma 7 114872 -NCIT:C5393 Parotid Gland Lymphangioma 7 114873 -NCIT:C5482 Gastric Lymphangioma 7 114874 -NCIT:C6595 Mediastinal Lymphangioma 7 114875 -NCIT:C66792 Hemolymphangioma 7 114876 -NCIT:C8373 Lymphangiomatosis 5 114877 -NCIT:C45630 Diffuse Pulmonary Lymphangiomatosis 6 114878 -NCIT:C96842 Liver Lymphangiomatosis 6 114879 -NCIT:C5209 Breast Vascular Neoplasm 4 114880 -NCIT:C40381 Breast Angiomatosis 5 114881 -NCIT:C5184 Breast Angiosarcoma 5 114882 -NCIT:C133092 Recurrent Breast Angiosarcoma 6 114883 -NCIT:C176251 Primary Breast Angiosarcoma 6 114884 -NCIT:C40378 Postradiation Breast Angiosarcoma 6 114885 -NCIT:C5353 Breast Hemangioma 5 114886 -NCIT:C5210 Breast Capillary Hemangioma 6 114887 -NCIT:C5211 Breast Epithelioid Hemangioma 6 114888 -NCIT:C5354 Skin Vascular Neoplasm 4 114889 -NCIT:C27127 Benign Skin Vascular Neoplasm 5 114890 -NCIT:C27509 Skin Lymphangioma 6 114891 -NCIT:C162592 Penile Lymphangioma 7 114892 -NCIT:C4905 Skin Hemangioma 6 114893 -NCIT:C162579 Penile Hemangioma 7 114894 -NCIT:C162580 Penile Epithelioid Hemangioma 8 114895 -NCIT:C34967 Lobular Capillary Hemangioma of Skin and Subcutaneous Tissue 7 114896 -NCIT:C3926 Angioma Serpiginosum 7 114897 -NCIT:C4299 Verrucous Hemangioma 7 114898 -NCIT:C4390 Cherry Hemangioma 7 114899 -NCIT:C4372 Cherry Hemangioma of Lip 8 114900 -NCIT:C4487 Tufted Angioma 7 114901 -NCIT:C4750 Skin Cavernous Hemangioma 7 114902 -NCIT:C6387 Scrotal Hemangioma 7 114903 -NCIT:C7393 Skin Epithelioid Hemangioma 7 114904 -NCIT:C162580 Penile Epithelioid Hemangioma 8 114905 -NCIT:C27529 Malignant Skin Vascular Neoplasm 5 114906 -NCIT:C3550 Skin Kaposi Sarcoma 6 114907 -NCIT:C9112 Classic Kaposi Sarcoma 7 114908 -NCIT:C4489 Skin Angiosarcoma 6 114909 -NCIT:C153626 Recurrent Skin Angiosarcoma 7 114910 -NCIT:C27719 Skin Radiation-Related Angiosarcoma 7 114911 -NCIT:C40379 Angiosarcoma of the Skin of the Arm after Radical Mastectomy followed by Lymphedema 7 114912 -NCIT:C4490 Skin Lymphangiosarcoma 6 114913 -NCIT:C4494 Skin Hemangioendothelioma 5 114914 -NCIT:C6478 Vascular Bone Neoplasm 4 114915 -NCIT:C121941 Bone Epithelioid Hemangioendothelioma 5 114916 -NCIT:C6477 Bone Hemangioma 5 114917 -NCIT:C189028 Childhood Bone Hemangioma 6 114918 -NCIT:C5396 Bone Epithelioid Hemangioma 6 114919 -NCIT:C6479 Bone Angiosarcoma 5 114920 -NCIT:C7334 Intermediate Vascular Neoplasm 4 114921 -NCIT:C7391 Intermediate Blood Vessel Neoplasm 5 114922 -NCIT:C45473 Intermediate (Locally Aggressive) Blood Vessel Neoplasm 6 114923 -NCIT:C27510 Kaposiform Hemangioendothelioma 7 114924 -NCIT:C188977 Childhood Kaposiform Hemangioendothelioma 8 114925 -NCIT:C45474 Intermediate (Rarely Metastasizing) Blood Vessel Neoplasm 6 114926 -NCIT:C121668 Pseudomyogenic Hemangioendothelioma 7 114927 -NCIT:C188979 Childhood Pseudomyogenic Hemangioendothelioma 8 114928 -NCIT:C27511 Retiform Hemangioendothelioma 7 114929 -NCIT:C45475 Composite Hemangioendothelioma 7 114930 -NCIT:C45476 Polymorphus Hemangioendothelioma 7 114931 -NCIT:C7526 Papillary Intralymphatic Angioendothelioma 7 114932 -NCIT:C188978 Childhood Papillary Intralymphatic Angioendothelioma 8 114933 -NCIT:C7387 Blood Vessel Neoplasm 4 114934 -NCIT:C3084 Hemangioendothelioma 5 114935 -NCIT:C27510 Kaposiform Hemangioendothelioma 6 114936 -NCIT:C188977 Childhood Kaposiform Hemangioendothelioma 7 114937 -NCIT:C27511 Retiform Hemangioendothelioma 6 114938 -NCIT:C3800 Epithelioid Hemangioendothelioma 6 114939 -NCIT:C114923 Adult Epithelioid Hemangioendothelioma 7 114940 -NCIT:C114926 Childhood Epithelioid Hemangioendothelioma 7 114941 -NCIT:C121941 Bone Epithelioid Hemangioendothelioma 7 114942 -NCIT:C129536 Central Nervous System Epithelioid Hemangioendothelioma 7 114943 -NCIT:C146858 Metastatic Epithelioid Hemangioendothelioma 7 114944 -NCIT:C146857 Locally Advanced Epithelioid Hemangioendothelioma 8 114945 -NCIT:C168721 Advanced Epithelioid Hemangioendothelioma 8 114946 -NCIT:C146988 Mediastinal Epithelioid Hemangioendothelioma 7 114947 -NCIT:C162581 Penile Epithelioid Hemangioendothelioma 7 114948 -NCIT:C168723 Unresectable Epithelioid Hemangioendothelioma 7 114949 -NCIT:C173138 Sinonasal Epithelioid Hemangioendothelioma 7 114950 -NCIT:C177552 Epithelioid Hemangioendothelioma with WWTR1-CAMTA1 Gene Fusion 7 114951 -NCIT:C177553 Epithelioid Hemangioendothelioma with YAP1-TFE3 Gene Fusion 7 114952 -NCIT:C4453 Lung Epithelioid Hemangioendothelioma 7 114953 -NCIT:C45695 Pleural Epithelioid Hemangioendothelioma 7 114954 -NCIT:C5362 Cardiac Epithelioid Hemangioendothelioma 7 114955 -NCIT:C96846 Liver Epithelioid Hemangioendothelioma 7 114956 -NCIT:C4494 Skin Hemangioendothelioma 6 114957 -NCIT:C45475 Composite Hemangioendothelioma 6 114958 -NCIT:C45476 Polymorphus Hemangioendothelioma 6 114959 -NCIT:C7526 Papillary Intralymphatic Angioendothelioma 6 114960 -NCIT:C188978 Childhood Papillary Intralymphatic Angioendothelioma 7 114961 -NCIT:C7391 Intermediate Blood Vessel Neoplasm 5 114962 -NCIT:C45473 Intermediate (Locally Aggressive) Blood Vessel Neoplasm 6 114963 -NCIT:C27510 Kaposiform Hemangioendothelioma 7 114964 -NCIT:C188977 Childhood Kaposiform Hemangioendothelioma 8 114965 -NCIT:C45474 Intermediate (Rarely Metastasizing) Blood Vessel Neoplasm 6 114966 -NCIT:C121668 Pseudomyogenic Hemangioendothelioma 7 114967 -NCIT:C188979 Childhood Pseudomyogenic Hemangioendothelioma 8 114968 -NCIT:C27511 Retiform Hemangioendothelioma 7 114969 -NCIT:C45475 Composite Hemangioendothelioma 7 114970 -NCIT:C45476 Polymorphus Hemangioendothelioma 7 114971 -NCIT:C7526 Papillary Intralymphatic Angioendothelioma 7 114972 -NCIT:C188978 Childhood Papillary Intralymphatic Angioendothelioma 8 114973 -NCIT:C8537 Benign Blood Vessel Neoplasm 5 114974 -NCIT:C27503 Angiomatosis 6 114975 -NCIT:C3821 Hemangiomatosis with Thrombocytopenia 7 114976 -NCIT:C40381 Breast Angiomatosis 7 114977 -NCIT:C3085 Hemangioma 6 114978 -NCIT:C146987 Mediastinal Hemangioma 7 114979 -NCIT:C156343 Thyroid Gland Hemangioma 7 114980 -NCIT:C156344 Thyroid Gland Cavernous Hemangioma 8 114981 -NCIT:C159211 Kidney Hemangioma 7 114982 -NCIT:C159680 Bladder Hemangioma 7 114983 -NCIT:C161581 Prostate Hemangioma 7 114984 -NCIT:C162503 Paratesticular Hemangioma 7 114985 -NCIT:C173142 Sinonasal Hemangioma 7 114986 -NCIT:C173680 Salivary Gland Hemangioma 7 114987 -NCIT:C5397 Parotid Gland Hemangioma 8 114988 -NCIT:C175497 Conjunctival Hemangioma 7 114989 -NCIT:C188251 Adrenal Gland Hemangioma 7 114990 -NCIT:C27018 Acquired Hemangioma 7 114991 -NCIT:C27505 Glomeruloid Hemangioma 7 114992 -NCIT:C27506 Hobnail Hemangioma 7 114993 -NCIT:C27507 Hemangioma of Peripheral Nerve 7 114994 -NCIT:C3086 Cavernous Hemangioma 7 114995 -NCIT:C156344 Thyroid Gland Cavernous Hemangioma 8 114996 -NCIT:C27777 Giant Hemangioma 8 114997 -NCIT:C4546 Orbit Cavernous Hemangioma 8 114998 -NCIT:C45750 Cardiac Cavernous Hemangioma 8 114999 -NCIT:C4750 Skin Cavernous Hemangioma 8 115000 -NCIT:C4921 Retinal Cavernous Hemangioma 8 115001 -NCIT:C5395 Colon Cavernous Hemangioma 8 115002 -NCIT:C7053 Cavernous Hemangioma of the Face 8 115003 -NCIT:C84621 Central Nervous System Cavernous Hemangioma 8 115004 -NCIT:C5432 Intracranial Cavernous Hemangioma 9 115005 -NCIT:C96839 Liver Cavernous Hemangioma 8 115006 -NCIT:C3633 Intracranial Hemangioma 7 115007 -NCIT:C5432 Intracranial Cavernous Hemangioma 8 115008 -NCIT:C7739 Brain Hemangioma 8 115009 -NCIT:C5433 Cerebral Hemangioma 9 115010 -NCIT:C3635 Intra-Abdominal Hemangioma 7 115011 -NCIT:C3869 Liver Hemangioma 8 115012 -NCIT:C190019 Liver Congenital Hemangioma 9 115013 -NCIT:C96839 Liver Cavernous Hemangioma 9 115014 -NCIT:C96840 Liver Infantile Hemangioma 9 115015 -NCIT:C5481 Gastric Hemangioma 8 115016 -NCIT:C8541 Splenic Hemangioma 8 115017 -NCIT:C3841 Congenital Hemangioma 7 115018 -NCIT:C172207 Rapidly Involuting Congenital Hemangioma 8 115019 -NCIT:C172208 Non-Involuting Congenital Hemangioma 8 115020 -NCIT:C172209 Partially Involuting Congenital Hemangioma 8 115021 -NCIT:C190019 Liver Congenital Hemangioma 8 115022 -NCIT:C4486 Blue Rubber Bleb Nevus 8 115023 -NCIT:C4296 Venous Hemangioma 7 115024 -NCIT:C4298 Epithelioid Hemangioma 7 115025 -NCIT:C5211 Breast Epithelioid Hemangioma 8 115026 -NCIT:C5396 Bone Epithelioid Hemangioma 8 115027 -NCIT:C7393 Skin Epithelioid Hemangioma 8 115028 -NCIT:C162580 Penile Epithelioid Hemangioma 9 115029 -NCIT:C4562 Choroid Hemangioma 7 115030 -NCIT:C45749 Cardiac Hemangioma 7 115031 -NCIT:C45750 Cardiac Cavernous Hemangioma 8 115032 -NCIT:C45751 Cardiac Capillary Hemangioma 8 115033 -NCIT:C45752 Cardiac Intramuscular Hemangioma 8 115034 -NCIT:C4754 Spindle Cell Hemangioma 7 115035 -NCIT:C4831 Gingival Hemangioma 7 115036 -NCIT:C4868 Placental Hemangioma 7 115037 -NCIT:C4905 Skin Hemangioma 7 115038 -NCIT:C162579 Penile Hemangioma 8 115039 -NCIT:C162580 Penile Epithelioid Hemangioma 9 115040 -NCIT:C34967 Lobular Capillary Hemangioma of Skin and Subcutaneous Tissue 8 115041 -NCIT:C3926 Angioma Serpiginosum 8 115042 -NCIT:C4299 Verrucous Hemangioma 8 115043 -NCIT:C4390 Cherry Hemangioma 8 115044 -NCIT:C4372 Cherry Hemangioma of Lip 9 115045 -NCIT:C4487 Tufted Angioma 8 115046 -NCIT:C4750 Skin Cavernous Hemangioma 8 115047 -NCIT:C6387 Scrotal Hemangioma 8 115048 -NCIT:C7393 Skin Epithelioid Hemangioma 8 115049 -NCIT:C162580 Penile Epithelioid Hemangioma 9 115050 -NCIT:C5353 Breast Hemangioma 7 115051 -NCIT:C5210 Breast Capillary Hemangioma 8 115052 -NCIT:C5211 Breast Epithelioid Hemangioma 8 115053 -NCIT:C6026 Subglottic Hemangioma 7 115054 -NCIT:C6245 Orbit Hemangioma 7 115055 -NCIT:C4545 Orbit Capillary Hemangioma 8 115056 -NCIT:C4546 Orbit Cavernous Hemangioma 8 115057 -NCIT:C6477 Bone Hemangioma 7 115058 -NCIT:C189028 Childhood Bone Hemangioma 8 115059 -NCIT:C5396 Bone Epithelioid Hemangioma 8 115060 -NCIT:C6525 Synovial Hemangioma 7 115061 -NCIT:C6555 Deep Hemangioma 7 115062 -NCIT:C3699 Intramuscular Hemangioma 8 115063 -NCIT:C45752 Cardiac Intramuscular Hemangioma 9 115064 -NCIT:C6526 Perineural Hemangioma 8 115065 -NCIT:C7004 Central Nervous System Hemangioma 7 115066 -NCIT:C84621 Central Nervous System Cavernous Hemangioma 8 115067 -NCIT:C5432 Intracranial Cavernous Hemangioma 9 115068 -NCIT:C7457 Capillary Hemangioma 7 115069 -NCIT:C131760 Anastomosing Hemangioma 8 115070 -NCIT:C3480 Lobular Capillary Hemangioma 8 115071 -NCIT:C27552 Multiple Lobular Capillary Hemangiomas 9 115072 -NCIT:C34967 Lobular Capillary Hemangioma of Skin and Subcutaneous Tissue 9 115073 -NCIT:C3950 Oral Mucosa Lobular Capillary Hemangioma 9 115074 -NCIT:C4357 Eyelid Capillary Hemangioma 8 115075 -NCIT:C4390 Cherry Hemangioma 8 115076 -NCIT:C4372 Cherry Hemangioma of Lip 9 115077 -NCIT:C4487 Tufted Angioma 8 115078 -NCIT:C4545 Orbit Capillary Hemangioma 8 115079 -NCIT:C45751 Cardiac Capillary Hemangioma 8 115080 -NCIT:C5210 Breast Capillary Hemangioma 8 115081 -NCIT:C6645 Infantile Hemangioma 8 115082 -NCIT:C96840 Liver Infantile Hemangioma 9 115083 -NCIT:C99086 Airway Infantile Hemangioma 9 115084 -NCIT:C7741 Digestive System Hemangioma 7 115085 -NCIT:C3869 Liver Hemangioma 8 115086 -NCIT:C190019 Liver Congenital Hemangioma 9 115087 -NCIT:C96839 Liver Cavernous Hemangioma 9 115088 -NCIT:C96840 Liver Infantile Hemangioma 9 115089 -NCIT:C5395 Colon Cavernous Hemangioma 8 115090 -NCIT:C5481 Gastric Hemangioma 8 115091 -NCIT:C95622 Esophageal Hemangioma 8 115092 -NCIT:C7744 Mucous Membrane Hemangioma 7 115093 -NCIT:C8540 Subcutaneous Hemangioma 7 115094 -NCIT:C172206 Sinusoidal Hemangioma 8 115095 -NCIT:C8538 Malignant Blood Vessel Neoplasm 5 115096 -NCIT:C3088 Angiosarcoma 6 115097 -NCIT:C121671 Soft Tissue Angiosarcoma 7 115098 -NCIT:C162578 Penile Angiosarcoma 8 115099 -NCIT:C171026 Visceral Angiosarcoma 8 115100 -NCIT:C147097 Cardiac Angiosarcoma 9 115101 -NCIT:C147101 Pericardial Angiosarcoma 9 115102 -NCIT:C159205 Kidney Angiosarcoma 9 115103 -NCIT:C159671 Bladder Angiosarcoma 9 115104 -NCIT:C161642 Seminal Vesicle Angiosarcoma 9 115105 -NCIT:C4438 Liver Angiosarcoma 9 115106 -NCIT:C190020 Childhood Liver Angiosarcoma 10 115107 -NCIT:C4564 Splenic Angiosarcoma 9 115108 -NCIT:C48320 Adrenal Gland Angiosarcoma 9 115109 -NCIT:C5232 Ovarian Angiosarcoma 9 115110 -NCIT:C5376 Aortic Angiosarcoma 9 115111 -NCIT:C5378 Superior Vena Cava Angiosarcoma 9 115112 -NCIT:C5385 Uterine Angiosarcoma 9 115113 -NCIT:C128049 Cervical Angiosarcoma 10 115114 -NCIT:C5528 Prostate Angiosarcoma 9 115115 -NCIT:C5840 Gallbladder Angiosarcoma 9 115116 -NCIT:C6043 Thyroid Gland Angiosarcoma 9 115117 -NCIT:C6613 Mediastinal Angiosarcoma 9 115118 -NCIT:C6746 Pulmonary Artery Angiosarcoma 9 115119 -NCIT:C96060 Small Intestinal Angiosarcoma 9 115120 -NCIT:C96511 Colorectal Angiosarcoma 9 115121 -NCIT:C173125 Sinonasal Angiosarcoma 8 115122 -NCIT:C176515 Vulvar Angiosarcoma 8 115123 -NCIT:C4489 Skin Angiosarcoma 8 115124 -NCIT:C153626 Recurrent Skin Angiosarcoma 9 115125 -NCIT:C27719 Skin Radiation-Related Angiosarcoma 9 115126 -NCIT:C40379 Angiosarcoma of the Skin of the Arm after Radical Mastectomy followed by Lymphedema 9 115127 -NCIT:C5184 Breast Angiosarcoma 8 115128 -NCIT:C133092 Recurrent Breast Angiosarcoma 9 115129 -NCIT:C176251 Primary Breast Angiosarcoma 9 115130 -NCIT:C40378 Postradiation Breast Angiosarcoma 9 115131 -NCIT:C5320 Peripheral Intraneural Angiosarcoma 8 115132 -NCIT:C5450 Central Nervous System Angiosarcoma 8 115133 -NCIT:C168718 Unresectable Angiosarcoma 7 115134 -NCIT:C175499 Conjunctival Angiosarcoma 7 115135 -NCIT:C27512 Angiosarcoma Associated with Lymphedema 7 115136 -NCIT:C40379 Angiosarcoma of the Skin of the Arm after Radical Mastectomy followed by Lymphedema 8 115137 -NCIT:C27513 Radiation-Related Angiosarcoma 7 115138 -NCIT:C27719 Skin Radiation-Related Angiosarcoma 8 115139 -NCIT:C5384 Recurrent Angiosarcoma 7 115140 -NCIT:C133092 Recurrent Breast Angiosarcoma 8 115141 -NCIT:C153626 Recurrent Skin Angiosarcoma 8 115142 -NCIT:C6479 Bone Angiosarcoma 7 115143 -NCIT:C8708 Metastatic Angiosarcoma 7 115144 -NCIT:C146856 Locally Advanced Angiosarcoma 8 115145 -NCIT:C168720 Advanced Angiosarcoma 8 115146 -NCIT:C9031 Poorly Differentiated Angiosarcoma 7 115147 -NCIT:C9040 Adult Angiosarcoma 7 115148 -NCIT:C9174 Childhood Angiosarcoma 7 115149 -NCIT:C190020 Childhood Liver Angiosarcoma 8 115150 -NCIT:C9275 Localized Angiosarcoma 7 115151 -NCIT:C9411 Angiosarcoma NCI Grade 2 7 115152 -NCIT:C9412 Angiosarcoma NCI Grade 3 7 115153 -NCIT:C9426 Conventional Angiosarcoma 7 115154 -NCIT:C3800 Epithelioid Hemangioendothelioma 6 115155 -NCIT:C114923 Adult Epithelioid Hemangioendothelioma 7 115156 -NCIT:C114926 Childhood Epithelioid Hemangioendothelioma 7 115157 -NCIT:C121941 Bone Epithelioid Hemangioendothelioma 7 115158 -NCIT:C129536 Central Nervous System Epithelioid Hemangioendothelioma 7 115159 -NCIT:C146858 Metastatic Epithelioid Hemangioendothelioma 7 115160 -NCIT:C146857 Locally Advanced Epithelioid Hemangioendothelioma 8 115161 -NCIT:C168721 Advanced Epithelioid Hemangioendothelioma 8 115162 -NCIT:C146988 Mediastinal Epithelioid Hemangioendothelioma 7 115163 -NCIT:C162581 Penile Epithelioid Hemangioendothelioma 7 115164 -NCIT:C168723 Unresectable Epithelioid Hemangioendothelioma 7 115165 -NCIT:C173138 Sinonasal Epithelioid Hemangioendothelioma 7 115166 -NCIT:C177552 Epithelioid Hemangioendothelioma with WWTR1-CAMTA1 Gene Fusion 7 115167 -NCIT:C177553 Epithelioid Hemangioendothelioma with YAP1-TFE3 Gene Fusion 7 115168 -NCIT:C4453 Lung Epithelioid Hemangioendothelioma 7 115169 -NCIT:C45695 Pleural Epithelioid Hemangioendothelioma 7 115170 -NCIT:C5362 Cardiac Epithelioid Hemangioendothelioma 7 115171 -NCIT:C96846 Liver Epithelioid Hemangioendothelioma 7 115172 -NCIT:C9087 Kaposi Sarcoma 6 115173 -NCIT:C156474 Refractory Kaposi Sarcoma 7 115174 -NCIT:C156475 Metastatic Kaposi Sarcoma 7 115175 -NCIT:C156476 Advanced Kaposi Sarcoma 8 115176 -NCIT:C172955 Digestive System Kaposi Sarcoma 7 115177 -NCIT:C5529 Gastric Kaposi Sarcoma 8 115178 -NCIT:C5624 AIDS-Related Gastric Kaposi Sarcoma 9 115179 -NCIT:C5602 Anal Kaposi Sarcoma 8 115180 -NCIT:C5706 Esophageal Kaposi Sarcoma 8 115181 -NCIT:C5842 Gallbladder Kaposi Sarcoma 8 115182 -NCIT:C96059 Small Intestinal Kaposi Sarcoma 8 115183 -NCIT:C96434 Appendix Kaposi Sarcoma 8 115184 -NCIT:C96510 Colorectal Kaposi Sarcoma 8 115185 -NCIT:C5516 Colon Kaposi Sarcoma 9 115186 -NCIT:C5550 Rectal Kaposi Sarcoma 9 115187 -NCIT:C96844 Liver Kaposi Sarcoma 8 115188 -NCIT:C96951 Extrahepatic Bile Duct Kaposi Sarcoma 8 115189 -NCIT:C173477 Oral Cavity Kaposi Sarcoma 7 115190 -NCIT:C6749 Palate Kaposi Sarcoma 8 115191 -NCIT:C181938 Vulvar Kaposi Sarcoma 7 115192 -NCIT:C188980 Childhood Kaposi Sarcoma 7 115193 -NCIT:C27500 Lymphadenopathic Kaposi Sarcoma 7 115194 -NCIT:C3550 Skin Kaposi Sarcoma 7 115195 -NCIT:C9112 Classic Kaposi Sarcoma 8 115196 -NCIT:C3551 Lung Kaposi Sarcoma 7 115197 -NCIT:C35873 Iatrogenic Kaposi Sarcoma 7 115198 -NCIT:C9113 Kaposi Sarcoma Related to Immunosuppressive Treatment 8 115199 -NCIT:C27640 Transplant-Related Kaposi Sarcoma 9 115200 -NCIT:C35874 Endemic African Kaposi Sarcoma 7 115201 -NCIT:C3992 AIDS-Related Kaposi Sarcoma 7 115202 -NCIT:C5624 AIDS-Related Gastric Kaposi Sarcoma 8 115203 -NCIT:C7433 AIDS-Related Cervical Kaposi Sarcoma 8 115204 -NCIT:C4578 Conjunctival Kaposi Sarcoma 7 115205 -NCIT:C4579 Corneal Kaposi Sarcoma 7 115206 -NCIT:C5363 Cardiac Kaposi Sarcoma 7 115207 -NCIT:C5523 Prostate Kaposi Sarcoma 7 115208 -NCIT:C5952 Parotid Gland Kaposi Sarcoma 7 115209 -NCIT:C6377 Penile Kaposi Sarcoma 7 115210 -NCIT:C7006 Central Nervous System Kaposi Sarcoma 7 115211 -NCIT:C7935 Recurrent Kaposi Sarcoma 7 115212 -NCIT:C9413 Kaposi Sarcoma NCI Grade 2 7 115213 -NCIT:C9414 Kaposi Sarcoma NCI Grade 3 7 115214 -NCIT:C7389 Benign Vascular Neoplasm 4 115215 -NCIT:C156342 Thyroid Gland Benign Vascular Neoplasm 5 115216 -NCIT:C156343 Thyroid Gland Hemangioma 6 115217 -NCIT:C156344 Thyroid Gland Cavernous Hemangioma 7 115218 -NCIT:C156345 Thyroid Gland Lymphangioma 6 115219 -NCIT:C27127 Benign Skin Vascular Neoplasm 5 115220 -NCIT:C27509 Skin Lymphangioma 6 115221 -NCIT:C162592 Penile Lymphangioma 7 115222 -NCIT:C4905 Skin Hemangioma 6 115223 -NCIT:C162579 Penile Hemangioma 7 115224 -NCIT:C162580 Penile Epithelioid Hemangioma 8 115225 -NCIT:C34967 Lobular Capillary Hemangioma of Skin and Subcutaneous Tissue 7 115226 -NCIT:C3926 Angioma Serpiginosum 7 115227 -NCIT:C4299 Verrucous Hemangioma 7 115228 -NCIT:C4390 Cherry Hemangioma 7 115229 -NCIT:C4372 Cherry Hemangioma of Lip 8 115230 -NCIT:C4487 Tufted Angioma 7 115231 -NCIT:C4750 Skin Cavernous Hemangioma 7 115232 -NCIT:C6387 Scrotal Hemangioma 7 115233 -NCIT:C7393 Skin Epithelioid Hemangioma 7 115234 -NCIT:C162580 Penile Epithelioid Hemangioma 8 115235 -NCIT:C6524 Benign Lymphatic Vessel Neoplasm 5 115236 -NCIT:C8965 Lymphangioma 6 115237 -NCIT:C156345 Thyroid Gland Lymphangioma 7 115238 -NCIT:C159214 Kidney Lymphangioma 7 115239 -NCIT:C175498 Conjunctival Lymphangioma 7 115240 -NCIT:C188252 Adrenal Gland Lymphangioma 7 115241 -NCIT:C27508 Intra-Abdominal Lymphangioma 7 115242 -NCIT:C5500 Colon Lymphangioma 8 115243 -NCIT:C96841 Liver Lymphangioma 8 115244 -NCIT:C27509 Skin Lymphangioma 7 115245 -NCIT:C162592 Penile Lymphangioma 8 115246 -NCIT:C3203 Acquired Progressive Lymphangioma 7 115247 -NCIT:C3724 Cystic Hygroma 7 115248 -NCIT:C116899 Congenital Cystic Hygroma 8 115249 -NCIT:C45485 Lymphangioma Circumscriptum 7 115250 -NCIT:C53316 Cavernous Lymphangioma 7 115251 -NCIT:C5393 Parotid Gland Lymphangioma 7 115252 -NCIT:C5482 Gastric Lymphangioma 7 115253 -NCIT:C6595 Mediastinal Lymphangioma 7 115254 -NCIT:C66792 Hemolymphangioma 7 115255 -NCIT:C8537 Benign Blood Vessel Neoplasm 5 115256 -NCIT:C27503 Angiomatosis 6 115257 -NCIT:C3821 Hemangiomatosis with Thrombocytopenia 7 115258 -NCIT:C40381 Breast Angiomatosis 7 115259 -NCIT:C3085 Hemangioma 6 115260 -NCIT:C146987 Mediastinal Hemangioma 7 115261 -NCIT:C156343 Thyroid Gland Hemangioma 7 115262 -NCIT:C156344 Thyroid Gland Cavernous Hemangioma 8 115263 -NCIT:C159211 Kidney Hemangioma 7 115264 -NCIT:C159680 Bladder Hemangioma 7 115265 -NCIT:C161581 Prostate Hemangioma 7 115266 -NCIT:C162503 Paratesticular Hemangioma 7 115267 -NCIT:C173142 Sinonasal Hemangioma 7 115268 -NCIT:C173680 Salivary Gland Hemangioma 7 115269 -NCIT:C5397 Parotid Gland Hemangioma 8 115270 -NCIT:C175497 Conjunctival Hemangioma 7 115271 -NCIT:C188251 Adrenal Gland Hemangioma 7 115272 -NCIT:C27018 Acquired Hemangioma 7 115273 -NCIT:C27505 Glomeruloid Hemangioma 7 115274 -NCIT:C27506 Hobnail Hemangioma 7 115275 -NCIT:C27507 Hemangioma of Peripheral Nerve 7 115276 -NCIT:C3086 Cavernous Hemangioma 7 115277 -NCIT:C156344 Thyroid Gland Cavernous Hemangioma 8 115278 -NCIT:C27777 Giant Hemangioma 8 115279 -NCIT:C4546 Orbit Cavernous Hemangioma 8 115280 -NCIT:C45750 Cardiac Cavernous Hemangioma 8 115281 -NCIT:C4750 Skin Cavernous Hemangioma 8 115282 -NCIT:C4921 Retinal Cavernous Hemangioma 8 115283 -NCIT:C5395 Colon Cavernous Hemangioma 8 115284 -NCIT:C7053 Cavernous Hemangioma of the Face 8 115285 -NCIT:C84621 Central Nervous System Cavernous Hemangioma 8 115286 -NCIT:C5432 Intracranial Cavernous Hemangioma 9 115287 -NCIT:C96839 Liver Cavernous Hemangioma 8 115288 -NCIT:C3633 Intracranial Hemangioma 7 115289 -NCIT:C5432 Intracranial Cavernous Hemangioma 8 115290 -NCIT:C7739 Brain Hemangioma 8 115291 -NCIT:C5433 Cerebral Hemangioma 9 115292 -NCIT:C3635 Intra-Abdominal Hemangioma 7 115293 -NCIT:C3869 Liver Hemangioma 8 115294 -NCIT:C190019 Liver Congenital Hemangioma 9 115295 -NCIT:C96839 Liver Cavernous Hemangioma 9 115296 -NCIT:C96840 Liver Infantile Hemangioma 9 115297 -NCIT:C5481 Gastric Hemangioma 8 115298 -NCIT:C8541 Splenic Hemangioma 8 115299 -NCIT:C3841 Congenital Hemangioma 7 115300 -NCIT:C172207 Rapidly Involuting Congenital Hemangioma 8 115301 -NCIT:C172208 Non-Involuting Congenital Hemangioma 8 115302 -NCIT:C172209 Partially Involuting Congenital Hemangioma 8 115303 -NCIT:C190019 Liver Congenital Hemangioma 8 115304 -NCIT:C4486 Blue Rubber Bleb Nevus 8 115305 -NCIT:C4296 Venous Hemangioma 7 115306 -NCIT:C4298 Epithelioid Hemangioma 7 115307 -NCIT:C5211 Breast Epithelioid Hemangioma 8 115308 -NCIT:C5396 Bone Epithelioid Hemangioma 8 115309 -NCIT:C7393 Skin Epithelioid Hemangioma 8 115310 -NCIT:C162580 Penile Epithelioid Hemangioma 9 115311 -NCIT:C4562 Choroid Hemangioma 7 115312 -NCIT:C45749 Cardiac Hemangioma 7 115313 -NCIT:C45750 Cardiac Cavernous Hemangioma 8 115314 -NCIT:C45751 Cardiac Capillary Hemangioma 8 115315 -NCIT:C45752 Cardiac Intramuscular Hemangioma 8 115316 -NCIT:C4754 Spindle Cell Hemangioma 7 115317 -NCIT:C4831 Gingival Hemangioma 7 115318 -NCIT:C4868 Placental Hemangioma 7 115319 -NCIT:C4905 Skin Hemangioma 7 115320 -NCIT:C162579 Penile Hemangioma 8 115321 -NCIT:C162580 Penile Epithelioid Hemangioma 9 115322 -NCIT:C34967 Lobular Capillary Hemangioma of Skin and Subcutaneous Tissue 8 115323 -NCIT:C3926 Angioma Serpiginosum 8 115324 -NCIT:C4299 Verrucous Hemangioma 8 115325 -NCIT:C4390 Cherry Hemangioma 8 115326 -NCIT:C4372 Cherry Hemangioma of Lip 9 115327 -NCIT:C4487 Tufted Angioma 8 115328 -NCIT:C4750 Skin Cavernous Hemangioma 8 115329 -NCIT:C6387 Scrotal Hemangioma 8 115330 -NCIT:C7393 Skin Epithelioid Hemangioma 8 115331 -NCIT:C162580 Penile Epithelioid Hemangioma 9 115332 -NCIT:C5353 Breast Hemangioma 7 115333 -NCIT:C5210 Breast Capillary Hemangioma 8 115334 -NCIT:C5211 Breast Epithelioid Hemangioma 8 115335 -NCIT:C6026 Subglottic Hemangioma 7 115336 -NCIT:C6245 Orbit Hemangioma 7 115337 -NCIT:C4545 Orbit Capillary Hemangioma 8 115338 -NCIT:C4546 Orbit Cavernous Hemangioma 8 115339 -NCIT:C6477 Bone Hemangioma 7 115340 -NCIT:C189028 Childhood Bone Hemangioma 8 115341 -NCIT:C5396 Bone Epithelioid Hemangioma 8 115342 -NCIT:C6525 Synovial Hemangioma 7 115343 -NCIT:C6555 Deep Hemangioma 7 115344 -NCIT:C3699 Intramuscular Hemangioma 8 115345 -NCIT:C45752 Cardiac Intramuscular Hemangioma 9 115346 -NCIT:C6526 Perineural Hemangioma 8 115347 -NCIT:C7004 Central Nervous System Hemangioma 7 115348 -NCIT:C84621 Central Nervous System Cavernous Hemangioma 8 115349 -NCIT:C5432 Intracranial Cavernous Hemangioma 9 115350 -NCIT:C7457 Capillary Hemangioma 7 115351 -NCIT:C131760 Anastomosing Hemangioma 8 115352 -NCIT:C3480 Lobular Capillary Hemangioma 8 115353 -NCIT:C27552 Multiple Lobular Capillary Hemangiomas 9 115354 -NCIT:C34967 Lobular Capillary Hemangioma of Skin and Subcutaneous Tissue 9 115355 -NCIT:C3950 Oral Mucosa Lobular Capillary Hemangioma 9 115356 -NCIT:C4357 Eyelid Capillary Hemangioma 8 115357 -NCIT:C4390 Cherry Hemangioma 8 115358 -NCIT:C4372 Cherry Hemangioma of Lip 9 115359 -NCIT:C4487 Tufted Angioma 8 115360 -NCIT:C4545 Orbit Capillary Hemangioma 8 115361 -NCIT:C45751 Cardiac Capillary Hemangioma 8 115362 -NCIT:C5210 Breast Capillary Hemangioma 8 115363 -NCIT:C6645 Infantile Hemangioma 8 115364 -NCIT:C96840 Liver Infantile Hemangioma 9 115365 -NCIT:C99086 Airway Infantile Hemangioma 9 115366 -NCIT:C7741 Digestive System Hemangioma 7 115367 -NCIT:C3869 Liver Hemangioma 8 115368 -NCIT:C190019 Liver Congenital Hemangioma 9 115369 -NCIT:C96839 Liver Cavernous Hemangioma 9 115370 -NCIT:C96840 Liver Infantile Hemangioma 9 115371 -NCIT:C5395 Colon Cavernous Hemangioma 8 115372 -NCIT:C5481 Gastric Hemangioma 8 115373 -NCIT:C95622 Esophageal Hemangioma 8 115374 -NCIT:C7744 Mucous Membrane Hemangioma 7 115375 -NCIT:C8540 Subcutaneous Hemangioma 7 115376 -NCIT:C172206 Sinusoidal Hemangioma 8 115377 -NCIT:C7390 Malignant Vascular Neoplasm 4 115378 -NCIT:C27529 Malignant Skin Vascular Neoplasm 5 115379 -NCIT:C3550 Skin Kaposi Sarcoma 6 115380 -NCIT:C9112 Classic Kaposi Sarcoma 7 115381 -NCIT:C4489 Skin Angiosarcoma 6 115382 -NCIT:C153626 Recurrent Skin Angiosarcoma 7 115383 -NCIT:C27719 Skin Radiation-Related Angiosarcoma 7 115384 -NCIT:C40379 Angiosarcoma of the Skin of the Arm after Radical Mastectomy followed by Lymphedema 7 115385 -NCIT:C4490 Skin Lymphangiosarcoma 6 115386 -NCIT:C3205 Lymphangiosarcoma 5 115387 -NCIT:C4490 Skin Lymphangiosarcoma 6 115388 -NCIT:C8538 Malignant Blood Vessel Neoplasm 5 115389 -NCIT:C3088 Angiosarcoma 6 115390 -NCIT:C121671 Soft Tissue Angiosarcoma 7 115391 -NCIT:C162578 Penile Angiosarcoma 8 115392 -NCIT:C171026 Visceral Angiosarcoma 8 115393 -NCIT:C147097 Cardiac Angiosarcoma 9 115394 -NCIT:C147101 Pericardial Angiosarcoma 9 115395 -NCIT:C159205 Kidney Angiosarcoma 9 115396 -NCIT:C159671 Bladder Angiosarcoma 9 115397 -NCIT:C161642 Seminal Vesicle Angiosarcoma 9 115398 -NCIT:C4438 Liver Angiosarcoma 9 115399 -NCIT:C190020 Childhood Liver Angiosarcoma 10 115400 -NCIT:C4564 Splenic Angiosarcoma 9 115401 -NCIT:C48320 Adrenal Gland Angiosarcoma 9 115402 -NCIT:C5232 Ovarian Angiosarcoma 9 115403 -NCIT:C5376 Aortic Angiosarcoma 9 115404 -NCIT:C5378 Superior Vena Cava Angiosarcoma 9 115405 -NCIT:C5385 Uterine Angiosarcoma 9 115406 -NCIT:C128049 Cervical Angiosarcoma 10 115407 -NCIT:C5528 Prostate Angiosarcoma 9 115408 -NCIT:C5840 Gallbladder Angiosarcoma 9 115409 -NCIT:C6043 Thyroid Gland Angiosarcoma 9 115410 -NCIT:C6613 Mediastinal Angiosarcoma 9 115411 -NCIT:C6746 Pulmonary Artery Angiosarcoma 9 115412 -NCIT:C96060 Small Intestinal Angiosarcoma 9 115413 -NCIT:C96511 Colorectal Angiosarcoma 9 115414 -NCIT:C173125 Sinonasal Angiosarcoma 8 115415 -NCIT:C176515 Vulvar Angiosarcoma 8 115416 -NCIT:C4489 Skin Angiosarcoma 8 115417 -NCIT:C153626 Recurrent Skin Angiosarcoma 9 115418 -NCIT:C27719 Skin Radiation-Related Angiosarcoma 9 115419 -NCIT:C40379 Angiosarcoma of the Skin of the Arm after Radical Mastectomy followed by Lymphedema 9 115420 -NCIT:C5184 Breast Angiosarcoma 8 115421 -NCIT:C133092 Recurrent Breast Angiosarcoma 9 115422 -NCIT:C176251 Primary Breast Angiosarcoma 9 115423 -NCIT:C40378 Postradiation Breast Angiosarcoma 9 115424 -NCIT:C5320 Peripheral Intraneural Angiosarcoma 8 115425 -NCIT:C5450 Central Nervous System Angiosarcoma 8 115426 -NCIT:C168718 Unresectable Angiosarcoma 7 115427 -NCIT:C175499 Conjunctival Angiosarcoma 7 115428 -NCIT:C27512 Angiosarcoma Associated with Lymphedema 7 115429 -NCIT:C40379 Angiosarcoma of the Skin of the Arm after Radical Mastectomy followed by Lymphedema 8 115430 -NCIT:C27513 Radiation-Related Angiosarcoma 7 115431 -NCIT:C27719 Skin Radiation-Related Angiosarcoma 8 115432 -NCIT:C5384 Recurrent Angiosarcoma 7 115433 -NCIT:C133092 Recurrent Breast Angiosarcoma 8 115434 -NCIT:C153626 Recurrent Skin Angiosarcoma 8 115435 -NCIT:C6479 Bone Angiosarcoma 7 115436 -NCIT:C8708 Metastatic Angiosarcoma 7 115437 -NCIT:C146856 Locally Advanced Angiosarcoma 8 115438 -NCIT:C168720 Advanced Angiosarcoma 8 115439 -NCIT:C9031 Poorly Differentiated Angiosarcoma 7 115440 -NCIT:C9040 Adult Angiosarcoma 7 115441 -NCIT:C9174 Childhood Angiosarcoma 7 115442 -NCIT:C190020 Childhood Liver Angiosarcoma 8 115443 -NCIT:C9275 Localized Angiosarcoma 7 115444 -NCIT:C9411 Angiosarcoma NCI Grade 2 7 115445 -NCIT:C9412 Angiosarcoma NCI Grade 3 7 115446 -NCIT:C9426 Conventional Angiosarcoma 7 115447 -NCIT:C3800 Epithelioid Hemangioendothelioma 6 115448 -NCIT:C114923 Adult Epithelioid Hemangioendothelioma 7 115449 -NCIT:C114926 Childhood Epithelioid Hemangioendothelioma 7 115450 -NCIT:C121941 Bone Epithelioid Hemangioendothelioma 7 115451 -NCIT:C129536 Central Nervous System Epithelioid Hemangioendothelioma 7 115452 -NCIT:C146858 Metastatic Epithelioid Hemangioendothelioma 7 115453 -NCIT:C146857 Locally Advanced Epithelioid Hemangioendothelioma 8 115454 -NCIT:C168721 Advanced Epithelioid Hemangioendothelioma 8 115455 -NCIT:C146988 Mediastinal Epithelioid Hemangioendothelioma 7 115456 -NCIT:C162581 Penile Epithelioid Hemangioendothelioma 7 115457 -NCIT:C168723 Unresectable Epithelioid Hemangioendothelioma 7 115458 -NCIT:C173138 Sinonasal Epithelioid Hemangioendothelioma 7 115459 -NCIT:C177552 Epithelioid Hemangioendothelioma with WWTR1-CAMTA1 Gene Fusion 7 115460 -NCIT:C177553 Epithelioid Hemangioendothelioma with YAP1-TFE3 Gene Fusion 7 115461 -NCIT:C4453 Lung Epithelioid Hemangioendothelioma 7 115462 -NCIT:C45695 Pleural Epithelioid Hemangioendothelioma 7 115463 -NCIT:C5362 Cardiac Epithelioid Hemangioendothelioma 7 115464 -NCIT:C96846 Liver Epithelioid Hemangioendothelioma 7 115465 -NCIT:C9087 Kaposi Sarcoma 6 115466 -NCIT:C156474 Refractory Kaposi Sarcoma 7 115467 -NCIT:C156475 Metastatic Kaposi Sarcoma 7 115468 -NCIT:C156476 Advanced Kaposi Sarcoma 8 115469 -NCIT:C172955 Digestive System Kaposi Sarcoma 7 115470 -NCIT:C5529 Gastric Kaposi Sarcoma 8 115471 -NCIT:C5624 AIDS-Related Gastric Kaposi Sarcoma 9 115472 -NCIT:C5602 Anal Kaposi Sarcoma 8 115473 -NCIT:C5706 Esophageal Kaposi Sarcoma 8 115474 -NCIT:C5842 Gallbladder Kaposi Sarcoma 8 115475 -NCIT:C96059 Small Intestinal Kaposi Sarcoma 8 115476 -NCIT:C96434 Appendix Kaposi Sarcoma 8 115477 -NCIT:C96510 Colorectal Kaposi Sarcoma 8 115478 -NCIT:C5516 Colon Kaposi Sarcoma 9 115479 -NCIT:C5550 Rectal Kaposi Sarcoma 9 115480 -NCIT:C96844 Liver Kaposi Sarcoma 8 115481 -NCIT:C96951 Extrahepatic Bile Duct Kaposi Sarcoma 8 115482 -NCIT:C173477 Oral Cavity Kaposi Sarcoma 7 115483 -NCIT:C6749 Palate Kaposi Sarcoma 8 115484 -NCIT:C181938 Vulvar Kaposi Sarcoma 7 115485 -NCIT:C188980 Childhood Kaposi Sarcoma 7 115486 -NCIT:C27500 Lymphadenopathic Kaposi Sarcoma 7 115487 -NCIT:C3550 Skin Kaposi Sarcoma 7 115488 -NCIT:C9112 Classic Kaposi Sarcoma 8 115489 -NCIT:C3551 Lung Kaposi Sarcoma 7 115490 -NCIT:C35873 Iatrogenic Kaposi Sarcoma 7 115491 -NCIT:C9113 Kaposi Sarcoma Related to Immunosuppressive Treatment 8 115492 -NCIT:C27640 Transplant-Related Kaposi Sarcoma 9 115493 -NCIT:C35874 Endemic African Kaposi Sarcoma 7 115494 -NCIT:C3992 AIDS-Related Kaposi Sarcoma 7 115495 -NCIT:C5624 AIDS-Related Gastric Kaposi Sarcoma 8 115496 -NCIT:C7433 AIDS-Related Cervical Kaposi Sarcoma 8 115497 -NCIT:C4578 Conjunctival Kaposi Sarcoma 7 115498 -NCIT:C4579 Corneal Kaposi Sarcoma 7 115499 -NCIT:C5363 Cardiac Kaposi Sarcoma 7 115500 -NCIT:C5523 Prostate Kaposi Sarcoma 7 115501 -NCIT:C5952 Parotid Gland Kaposi Sarcoma 7 115502 -NCIT:C6377 Penile Kaposi Sarcoma 7 115503 -NCIT:C7006 Central Nervous System Kaposi Sarcoma 7 115504 -NCIT:C7935 Recurrent Kaposi Sarcoma 7 115505 -NCIT:C9413 Kaposi Sarcoma NCI Grade 2 7 115506 -NCIT:C9414 Kaposi Sarcoma NCI Grade 3 7 115507 -NCIT:C7337 Peritoneal and Retroperitoneal Neoplasm 2 115508 -NCIT:C156711 Malignant Peritoneal and Retroperitoneal Neoplasm 3 115509 -NCIT:C3537 Malignant Retroperitoneal Neoplasm 4 115510 -NCIT:C179463 Recurrent Malignant Retroperitoneal Neoplasm 5 115511 -NCIT:C6417 Recurrent Adrenal Cortical Carcinoma 6 115512 -NCIT:C4832 Retroperitoneal Sarcoma 5 115513 -NCIT:C136811 Retroperitoneal Sarcoma by AJCC v8 Stage 6 115514 -NCIT:C136812 Stage I Retroperitoneal Sarcoma AJCC v8 7 115515 -NCIT:C136813 Stage IA Retroperitoneal Sarcoma AJCC v8 8 115516 -NCIT:C136814 Stage IB Retroperitoneal Sarcoma AJCC v8 8 115517 -NCIT:C136815 Stage II Retroperitoneal Sarcoma AJCC v8 7 115518 -NCIT:C136816 Stage III Retroperitoneal Sarcoma AJCC v8 7 115519 -NCIT:C136817 Stage IIIA Retroperitoneal Sarcoma AJCC v8 8 115520 -NCIT:C136818 Stage IIIB Retroperitoneal Sarcoma AJCC v8 8 115521 -NCIT:C136819 Stage IV Retroperitoneal Sarcoma AJCC v8 7 115522 -NCIT:C156956 Adrenal Gland Sarcoma 6 115523 -NCIT:C188254 Adrenal Gland Leiomyosarcoma 7 115524 -NCIT:C48320 Adrenal Gland Angiosarcoma 7 115525 -NCIT:C173808 Retroperitoneal Undifferentiated Pleomorphic Sarcoma 6 115526 -NCIT:C188071 Retroperitoneal Rhabdomyosarcoma 6 115527 -NCIT:C188073 Retroperitoneal Malignant Peripheral Nerve Sheath Tumor 6 115528 -NCIT:C27904 Retroperitoneal Leiomyosarcoma 6 115529 -NCIT:C7352 Retroperitoneal Carcinoma 5 115530 -NCIT:C9325 Adrenal Cortical Carcinoma 6 115531 -NCIT:C104030 Adrenal Cortical Carcinoma by ENSAT Stage 7 115532 -NCIT:C104031 ENSAT Stage I Adrenal Cortical Carcinoma 8 115533 -NCIT:C104032 ENSAT Stage II Adrenal Cortical Carcinoma 8 115534 -NCIT:C104033 ENSAT Stage III Adrenal Cortical Carcinoma 8 115535 -NCIT:C104034 ENSAT Stage IV Adrenal Cortical Carcinoma 8 115536 -NCIT:C141098 Adrenal Cortical Carcinoma by AJCC v7 Stage 7 115537 -NCIT:C9214 Stage I Adrenal Cortical Carcinoma AJCC v7 8 115538 -NCIT:C9215 Stage II Adrenal Cortical Carcinoma AJCC v7 8 115539 -NCIT:C9216 Stage III Adrenal Cortical Carcinoma AJCC v7 8 115540 -NCIT:C9217 Stage IV Adrenal Cortical Carcinoma AJCC v7 8 115541 -NCIT:C141100 Adrenal Cortical Carcinoma by AJCC v8 Stage 7 115542 -NCIT:C141101 Stage I Adrenal Cortical Carcinoma AJCC v8 8 115543 -NCIT:C141102 Stage II Adrenal Cortical Carcinoma AJCC v8 8 115544 -NCIT:C141103 Stage III Adrenal Cortical Carcinoma AJCC v8 8 115545 -NCIT:C141104 Stage IV Adrenal Cortical Carcinoma AJCC v8 8 115546 -NCIT:C150580 Unresectable Adrenal Cortical Carcinoma 7 115547 -NCIT:C156070 Metastatic Adrenal Cortical Carcinoma 7 115548 -NCIT:C174443 Locally Advanced Adrenal Cortical Carcinoma 8 115549 -NCIT:C191863 Advanced Adrenal Cortical Carcinoma 8 115550 -NCIT:C188036 Refractory Adrenal Cortical Carcinoma 7 115551 -NCIT:C188181 Adrenal Cortical Oncocytic Carcinoma 7 115552 -NCIT:C188182 Adrenal Cortical Myxoid Carcinoma 7 115553 -NCIT:C188183 Adrenal Cortical High Grade Carcinoma 7 115554 -NCIT:C190069 Childhood Adrenal Cortical Carcinoma 7 115555 -NCIT:C6417 Recurrent Adrenal Cortical Carcinoma 7 115556 -NCIT:C68635 Adrenal Cortical Low Grade Carcinoma 7 115557 -NCIT:C68644 Adrenal Cortical Sarcomatoid Carcinoma 7 115558 -NCIT:C7353 Retroperitoneal Lymphoma 5 115559 -NCIT:C156945 Adrenal Gland Lymphoma 6 115560 -NCIT:C9338 Malignant Adrenal Gland Neoplasm 5 115561 -NCIT:C156945 Adrenal Gland Lymphoma 6 115562 -NCIT:C156956 Adrenal Gland Sarcoma 6 115563 -NCIT:C188254 Adrenal Gland Leiomyosarcoma 7 115564 -NCIT:C48320 Adrenal Gland Angiosarcoma 7 115565 -NCIT:C4396 Malignant Adrenal Medulla Neoplasm 6 115566 -NCIT:C4220 Metastatic Adrenal Gland Pheochromocytoma 7 115567 -NCIT:C157129 Locally Advanced Adrenal Gland Pheochromocytoma 8 115568 -NCIT:C160853 Advanced Adrenal Gland Pheochromocytoma 8 115569 -NCIT:C92184 Metastatic Adrenal Gland Composite Pheochromocytoma 8 115570 -NCIT:C4827 Adrenal Gland Neuroblastoma 7 115571 -NCIT:C7646 Adrenal Gland Ganglioneuroblastoma 7 115572 -NCIT:C157243 Adrenal Gland Ganglioneuroblastoma, Intermixed 8 115573 -NCIT:C157244 Adrenal Gland Ganglioneuroblastoma, Nodular 8 115574 -NCIT:C9276 Metastatic Carcinoma in the Adrenal Medulla 7 115575 -NCIT:C8610 Metastatic Malignant Neoplasm in the Adrenal Gland 6 115576 -NCIT:C27381 Metastatic Carcinoma in the Adrenal Cortex 7 115577 -NCIT:C9276 Metastatic Carcinoma in the Adrenal Medulla 7 115578 -NCIT:C9327 Malignant Adrenal Cortical Neoplasm 6 115579 -NCIT:C188185 Adrenal Cortical Melanoma 7 115580 -NCIT:C27381 Metastatic Carcinoma in the Adrenal Cortex 7 115581 -NCIT:C9325 Adrenal Cortical Carcinoma 7 115582 -NCIT:C104030 Adrenal Cortical Carcinoma by ENSAT Stage 8 115583 -NCIT:C104031 ENSAT Stage I Adrenal Cortical Carcinoma 9 115584 -NCIT:C104032 ENSAT Stage II Adrenal Cortical Carcinoma 9 115585 -NCIT:C104033 ENSAT Stage III Adrenal Cortical Carcinoma 9 115586 -NCIT:C104034 ENSAT Stage IV Adrenal Cortical Carcinoma 9 115587 -NCIT:C141098 Adrenal Cortical Carcinoma by AJCC v7 Stage 8 115588 -NCIT:C9214 Stage I Adrenal Cortical Carcinoma AJCC v7 9 115589 -NCIT:C9215 Stage II Adrenal Cortical Carcinoma AJCC v7 9 115590 -NCIT:C9216 Stage III Adrenal Cortical Carcinoma AJCC v7 9 115591 -NCIT:C9217 Stage IV Adrenal Cortical Carcinoma AJCC v7 9 115592 -NCIT:C141100 Adrenal Cortical Carcinoma by AJCC v8 Stage 8 115593 -NCIT:C141101 Stage I Adrenal Cortical Carcinoma AJCC v8 9 115594 -NCIT:C141102 Stage II Adrenal Cortical Carcinoma AJCC v8 9 115595 -NCIT:C141103 Stage III Adrenal Cortical Carcinoma AJCC v8 9 115596 -NCIT:C141104 Stage IV Adrenal Cortical Carcinoma AJCC v8 9 115597 -NCIT:C150580 Unresectable Adrenal Cortical Carcinoma 8 115598 -NCIT:C156070 Metastatic Adrenal Cortical Carcinoma 8 115599 -NCIT:C174443 Locally Advanced Adrenal Cortical Carcinoma 9 115600 -NCIT:C191863 Advanced Adrenal Cortical Carcinoma 9 115601 -NCIT:C188036 Refractory Adrenal Cortical Carcinoma 8 115602 -NCIT:C188181 Adrenal Cortical Oncocytic Carcinoma 8 115603 -NCIT:C188182 Adrenal Cortical Myxoid Carcinoma 8 115604 -NCIT:C188183 Adrenal Cortical High Grade Carcinoma 8 115605 -NCIT:C190069 Childhood Adrenal Cortical Carcinoma 8 115606 -NCIT:C6417 Recurrent Adrenal Cortical Carcinoma 8 115607 -NCIT:C68635 Adrenal Cortical Low Grade Carcinoma 8 115608 -NCIT:C68644 Adrenal Cortical Sarcomatoid Carcinoma 8 115609 -NCIT:C3538 Malignant Peritoneal Neoplasm 4 115610 -NCIT:C126356 Peritoneal Desmoplastic Small Round Cell Tumor 5 115611 -NCIT:C136410 Malignant Peritoneal Germ Cell Tumor 5 115612 -NCIT:C159507 Primary Peritoneal Carcinosarcoma 5 115613 -NCIT:C179562 Peritoneal Low Grade Endometrioid Stromal Sarcoma 5 115614 -NCIT:C183137 Peritoneal Primary Effusion Lymphoma 5 115615 -NCIT:C40022 Primary Peritoneal Carcinoma 5 115616 -NCIT:C115441 Recurrent Primary Peritoneal Carcinoma 6 115617 -NCIT:C170751 Recurrent Platinum-Resistant Primary Peritoneal Carcinoma 7 115618 -NCIT:C170756 Recurrent Primary Peritoneal Undifferentiated Carcinoma 7 115619 -NCIT:C170759 Recurrent Primary Peritoneal Transitional Cell Carcinoma 7 115620 -NCIT:C170767 Recurrent Primary Peritoneal Adenocarcinoma 7 115621 -NCIT:C156453 Recurrent Primary Peritoneal Serous Adenocarcinoma 8 115622 -NCIT:C156454 Recurrent Primary Peritoneal Low Grade Serous Adenocarcinoma 9 115623 -NCIT:C165268 Recurrent Primary Peritoneal High Grade Serous Adenocarcinoma 9 115624 -NCIT:C165269 Recurrent Primary Peritoneal Endometrioid Adenocarcinoma 8 115625 -NCIT:C170761 Recurrent Primary Peritoneal Clear Cell Adenocarcinoma 8 115626 -NCIT:C191407 Recurrent Platinum-Sensitive Primary Peritoneal Carcinoma 7 115627 -NCIT:C140003 Primary Peritoneal Cancer by AJCC v7 Stage 6 115628 -NCIT:C115094 Stage III Primary Peritoneal Cancer AJCC v7 7 115629 -NCIT:C115095 Stage IIIA Primary Peritoneal Cancer AJCC v7 8 115630 -NCIT:C115096 Stage IIIB Primary Peritoneal Cancer AJCC v7 8 115631 -NCIT:C115097 Stage IIIC Primary Peritoneal Cancer AJCC v7 8 115632 -NCIT:C115098 Stage IV Primary Peritoneal Cancer AJCC v7 7 115633 -NCIT:C140004 Primary Peritoneal Cancer by AJCC v8 Stage 6 115634 -NCIT:C140005 Stage II Primary Peritoneal Cancer AJCC v8 7 115635 -NCIT:C140006 Stage IIA Primary Peritoneal Cancer AJCC v8 8 115636 -NCIT:C140007 Stage IIB Primary Peritoneal Cancer AJCC v8 8 115637 -NCIT:C140008 Stage III Primary Peritoneal Cancer AJCC v8 7 115638 -NCIT:C140009 Stage IIIA Primary Peritoneal Cancer AJCC v8 8 115639 -NCIT:C140010 Stage IIIB Primary Peritoneal Cancer AJCC v8 8 115640 -NCIT:C140011 Stage IIIC Primary Peritoneal Cancer AJCC v8 8 115641 -NCIT:C140012 Stage IV Primary Peritoneal Cancer AJCC v8 7 115642 -NCIT:C140013 Stage IVA Primary Peritoneal Cancer AJCC v8 8 115643 -NCIT:C140014 Stage IVB Primary Peritoneal Cancer AJCC v8 8 115644 -NCIT:C152046 Refractory Primary Peritoneal Carcinoma 6 115645 -NCIT:C157622 Platinum-Resistant Primary Peritoneal Carcinoma 7 115646 -NCIT:C170751 Recurrent Platinum-Resistant Primary Peritoneal Carcinoma 8 115647 -NCIT:C170975 Refractory Primary Peritoneal Adenocarcinoma 7 115648 -NCIT:C171021 Refractory Primary Peritoneal Serous Adenocarcinoma 8 115649 -NCIT:C178686 Refractory Primary Peritoneal High Grade Serous Adenocarcinoma 9 115650 -NCIT:C178687 Refractory Primary Peritoneal Low Grade Serous Adenocarcinoma 9 115651 -NCIT:C178684 Refractory Primary Peritoneal Clear Cell Adenocarcinoma 8 115652 -NCIT:C178685 Refractory Primary Peritoneal Endometrioid Adenocarcinoma 8 115653 -NCIT:C178688 Refractory Primary Peritoneal Transitional Cell Carcinoma 7 115654 -NCIT:C178689 Refractory Primary Peritoneal Undifferentiated Carcinoma 7 115655 -NCIT:C178702 Platinum-Refractory Primary Peritoneal Carcinoma 7 115656 -NCIT:C160872 Platinum-Sensitive Primary Peritoneal Carcinoma 6 115657 -NCIT:C191407 Recurrent Platinum-Sensitive Primary Peritoneal Carcinoma 7 115658 -NCIT:C162562 Primary Peritoneal Undifferentiated Carcinoma 6 115659 -NCIT:C170756 Recurrent Primary Peritoneal Undifferentiated Carcinoma 7 115660 -NCIT:C178689 Refractory Primary Peritoneal Undifferentiated Carcinoma 7 115661 -NCIT:C162564 Primary Peritoneal Transitional Cell Carcinoma 6 115662 -NCIT:C170759 Recurrent Primary Peritoneal Transitional Cell Carcinoma 7 115663 -NCIT:C178688 Refractory Primary Peritoneal Transitional Cell Carcinoma 7 115664 -NCIT:C167203 Metastatic Primary Peritoneal Carcinoma 6 115665 -NCIT:C167204 Locally Advanced Primary Peritoneal Carcinoma 7 115666 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 8 115667 -NCIT:C167396 Advanced Primary Peritoneal Carcinoma 7 115668 -NCIT:C170972 Metastatic Primary Peritoneal Adenocarcinoma 7 115669 -NCIT:C171019 Metastatic Primary Peritoneal Serous Adenocarcinoma 8 115670 -NCIT:C186453 Metastatic Primary Peritoneal High Grade Serous Adenocarcinoma 9 115671 -NCIT:C170733 Primary Peritoneal Adenocarcinoma 6 115672 -NCIT:C162566 Primary Peritoneal Clear Cell Adenocarcinoma 7 115673 -NCIT:C170761 Recurrent Primary Peritoneal Clear Cell Adenocarcinoma 8 115674 -NCIT:C178684 Refractory Primary Peritoneal Clear Cell Adenocarcinoma 8 115675 -NCIT:C165260 Primary Peritoneal Endometrioid Adenocarcinoma 7 115676 -NCIT:C165269 Recurrent Primary Peritoneal Endometrioid Adenocarcinoma 8 115677 -NCIT:C178685 Refractory Primary Peritoneal Endometrioid Adenocarcinoma 8 115678 -NCIT:C186276 Unresectable Primary Peritoneal Endometrioid Adenocarcinoma 8 115679 -NCIT:C170767 Recurrent Primary Peritoneal Adenocarcinoma 7 115680 -NCIT:C156453 Recurrent Primary Peritoneal Serous Adenocarcinoma 8 115681 -NCIT:C156454 Recurrent Primary Peritoneal Low Grade Serous Adenocarcinoma 9 115682 -NCIT:C165268 Recurrent Primary Peritoneal High Grade Serous Adenocarcinoma 9 115683 -NCIT:C165269 Recurrent Primary Peritoneal Endometrioid Adenocarcinoma 8 115684 -NCIT:C170761 Recurrent Primary Peritoneal Clear Cell Adenocarcinoma 8 115685 -NCIT:C170972 Metastatic Primary Peritoneal Adenocarcinoma 7 115686 -NCIT:C171019 Metastatic Primary Peritoneal Serous Adenocarcinoma 8 115687 -NCIT:C186453 Metastatic Primary Peritoneal High Grade Serous Adenocarcinoma 9 115688 -NCIT:C170974 Unresectable Primary Peritoneal Adenocarcinoma 7 115689 -NCIT:C171020 Unresectable Primary Peritoneal Serous Adenocarcinoma 8 115690 -NCIT:C186275 Unresectable Primary Peritoneal High Grade Serous Adenocarcinoma 9 115691 -NCIT:C186276 Unresectable Primary Peritoneal Endometrioid Adenocarcinoma 8 115692 -NCIT:C170975 Refractory Primary Peritoneal Adenocarcinoma 7 115693 -NCIT:C171021 Refractory Primary Peritoneal Serous Adenocarcinoma 8 115694 -NCIT:C178686 Refractory Primary Peritoneal High Grade Serous Adenocarcinoma 9 115695 -NCIT:C178687 Refractory Primary Peritoneal Low Grade Serous Adenocarcinoma 9 115696 -NCIT:C178684 Refractory Primary Peritoneal Clear Cell Adenocarcinoma 8 115697 -NCIT:C178685 Refractory Primary Peritoneal Endometrioid Adenocarcinoma 8 115698 -NCIT:C40023 Primary Peritoneal Serous Adenocarcinoma 7 115699 -NCIT:C126353 Primary Peritoneal High Grade Serous Adenocarcinoma 8 115700 -NCIT:C165268 Recurrent Primary Peritoneal High Grade Serous Adenocarcinoma 9 115701 -NCIT:C178686 Refractory Primary Peritoneal High Grade Serous Adenocarcinoma 9 115702 -NCIT:C186275 Unresectable Primary Peritoneal High Grade Serous Adenocarcinoma 9 115703 -NCIT:C186453 Metastatic Primary Peritoneal High Grade Serous Adenocarcinoma 9 115704 -NCIT:C126354 Primary Peritoneal Low Grade Serous Adenocarcinoma 8 115705 -NCIT:C156454 Recurrent Primary Peritoneal Low Grade Serous Adenocarcinoma 9 115706 -NCIT:C178687 Refractory Primary Peritoneal Low Grade Serous Adenocarcinoma 9 115707 -NCIT:C156453 Recurrent Primary Peritoneal Serous Adenocarcinoma 8 115708 -NCIT:C156454 Recurrent Primary Peritoneal Low Grade Serous Adenocarcinoma 9 115709 -NCIT:C165268 Recurrent Primary Peritoneal High Grade Serous Adenocarcinoma 9 115710 -NCIT:C171019 Metastatic Primary Peritoneal Serous Adenocarcinoma 8 115711 -NCIT:C186453 Metastatic Primary Peritoneal High Grade Serous Adenocarcinoma 9 115712 -NCIT:C171020 Unresectable Primary Peritoneal Serous Adenocarcinoma 8 115713 -NCIT:C186275 Unresectable Primary Peritoneal High Grade Serous Adenocarcinoma 9 115714 -NCIT:C171021 Refractory Primary Peritoneal Serous Adenocarcinoma 8 115715 -NCIT:C178686 Refractory Primary Peritoneal High Grade Serous Adenocarcinoma 9 115716 -NCIT:C178687 Refractory Primary Peritoneal Low Grade Serous Adenocarcinoma 9 115717 -NCIT:C7695 Primary Peritoneal Serous Papillary Adenocarcinoma 8 115718 -NCIT:C170973 Unresectable Primary Peritoneal Carcinoma 6 115719 -NCIT:C170974 Unresectable Primary Peritoneal Adenocarcinoma 7 115720 -NCIT:C171020 Unresectable Primary Peritoneal Serous Adenocarcinoma 8 115721 -NCIT:C186275 Unresectable Primary Peritoneal High Grade Serous Adenocarcinoma 9 115722 -NCIT:C186276 Unresectable Primary Peritoneal Endometrioid Adenocarcinoma 8 115723 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 7 115724 -NCIT:C4583 Metastatic Malignant Neoplasm in the Peritoneum 5 115725 -NCIT:C179654 Metastatic Carcinoma in the Peritoneum 6 115726 -NCIT:C27382 Peritoneal Carcinomatosis 7 115727 -NCIT:C3345 Pseudomyxoma Peritonei 8 115728 -NCIT:C179179 Recurrent Pseudomyxoma Peritonei 9 115729 -NCIT:C179180 Refractory Pseudomyxoma Peritonei 9 115730 -NCIT:C179657 Metastatic Sarcoma in the Peritoneum 6 115731 -NCIT:C179656 Peritoneal Sarcomatosis 7 115732 -NCIT:C9350 Peritoneal Malignant Mesothelioma 5 115733 -NCIT:C162940 Peritoneal Epithelioid Mesothelioma 6 115734 -NCIT:C173613 Unresectable Peritoneal Epithelioid Mesothelioma 7 115735 -NCIT:C168804 Peritoneal Sarcomatoid Mesothelioma 6 115736 -NCIT:C173614 Unresectable Peritoneal Sarcomatoid Mesothelioma 7 115737 -NCIT:C168805 Peritoneal Biphasic Mesothelioma 6 115738 -NCIT:C173615 Unresectable Peritoneal Biphasic Mesothelioma 7 115739 -NCIT:C173612 Unresectable Peritoneal Malignant Mesothelioma 6 115740 -NCIT:C173613 Unresectable Peritoneal Epithelioid Mesothelioma 7 115741 -NCIT:C173614 Unresectable Peritoneal Sarcomatoid Mesothelioma 7 115742 -NCIT:C173615 Unresectable Peritoneal Biphasic Mesothelioma 7 115743 -NCIT:C179462 Metastatic Peritoneal Malignant Mesothelioma 6 115744 -NCIT:C8704 Advanced Peritoneal Malignant Mesothelioma 7 115745 -NCIT:C8705 Recurrent Peritoneal Malignant Mesothelioma 6 115746 -NCIT:C156713 Benign Peritoneal and Retroperitoneal Neoplasm 3 115747 -NCIT:C4447 Benign Retroperitoneal Neoplasm 4 115748 -NCIT:C3629 Benign Adrenal Gland Neoplasm 5 115749 -NCIT:C188250 Adrenal Gland Lipoma 6 115750 -NCIT:C188251 Adrenal Gland Hemangioma 6 115751 -NCIT:C188252 Adrenal Gland Lymphangioma 6 115752 -NCIT:C188253 Adrenal Gland Leiomyoma 6 115753 -NCIT:C4895 Benign Adrenal Medulla Neoplasm 6 115754 -NCIT:C156944 Adrenal Gland Schwannoma 7 115755 -NCIT:C157245 Adrenal Gland Ganglioneuroma 7 115756 -NCIT:C9004 Benign Adrenal Cortical Neoplasm 6 115757 -NCIT:C48319 Adrenal Cortical Adenomatoid Tumor 7 115758 -NCIT:C9003 Adrenal Cortical Adenoma 7 115759 -NCIT:C190068 Childhood Adrenal Cortical Adenoma 8 115760 -NCIT:C4163 Adrenal Cortical Compact Cell Adenoma 8 115761 -NCIT:C4164 Pigmented Adrenal Cortical Adenoma 8 115762 -NCIT:C4165 Adrenal Cortical Clear Cell Adenoma 8 115763 -NCIT:C4166 Adrenal Cortical Glomerulosa Cell Adenoma 8 115764 -NCIT:C4167 Adrenal Cortical Mixed Cell Adenoma 8 115765 -NCIT:C48447 Adrenal Cortical Oncocytic Adenoma 8 115766 -NCIT:C48449 Cortisol-Producing Adrenal Cortical Adenoma 8 115767 -NCIT:C48451 Aldosterone-Producing Adrenal Cortical Adenoma 8 115768 -NCIT:C48452 Sex Hormone-Producing Adrenal Cortical Adenoma 8 115769 -NCIT:C48454 Androgen-Producing Adrenal Cortical Adenoma 9 115770 -NCIT:C48456 Estrogen-Producing Adrenal Cortical Adenoma 9 115771 -NCIT:C48458 Non-Functioning Adrenal Cortical Adenoma 8 115772 -NCIT:C5427 Retroperitoneal Ganglioneuroma 5 115773 -NCIT:C157245 Adrenal Gland Ganglioneuroma 6 115774 -NCIT:C8612 Benign Peritoneal Neoplasm 4 115775 -NCIT:C179560 Peritoneal Calcifying Fibrous Tumor 5 115776 -NCIT:C3958 Disseminated Peritoneal Leiomyomatosis 5 115777 -NCIT:C7354 Peritoneal Adenomatoid Tumor 5 115778 -NCIT:C3322 Peritoneal Neoplasm 3 115779 -NCIT:C126357 Peritoneal Solitary Fibrous Tumor 4 115780 -NCIT:C173164 Peritoneal Implant 4 115781 -NCIT:C3538 Malignant Peritoneal Neoplasm 4 115782 -NCIT:C126356 Peritoneal Desmoplastic Small Round Cell Tumor 5 115783 -NCIT:C136410 Malignant Peritoneal Germ Cell Tumor 5 115784 -NCIT:C159507 Primary Peritoneal Carcinosarcoma 5 115785 -NCIT:C179562 Peritoneal Low Grade Endometrioid Stromal Sarcoma 5 115786 -NCIT:C183137 Peritoneal Primary Effusion Lymphoma 5 115787 -NCIT:C40022 Primary Peritoneal Carcinoma 5 115788 -NCIT:C115441 Recurrent Primary Peritoneal Carcinoma 6 115789 -NCIT:C170751 Recurrent Platinum-Resistant Primary Peritoneal Carcinoma 7 115790 -NCIT:C170756 Recurrent Primary Peritoneal Undifferentiated Carcinoma 7 115791 -NCIT:C170759 Recurrent Primary Peritoneal Transitional Cell Carcinoma 7 115792 -NCIT:C170767 Recurrent Primary Peritoneal Adenocarcinoma 7 115793 -NCIT:C156453 Recurrent Primary Peritoneal Serous Adenocarcinoma 8 115794 -NCIT:C156454 Recurrent Primary Peritoneal Low Grade Serous Adenocarcinoma 9 115795 -NCIT:C165268 Recurrent Primary Peritoneal High Grade Serous Adenocarcinoma 9 115796 -NCIT:C165269 Recurrent Primary Peritoneal Endometrioid Adenocarcinoma 8 115797 -NCIT:C170761 Recurrent Primary Peritoneal Clear Cell Adenocarcinoma 8 115798 -NCIT:C191407 Recurrent Platinum-Sensitive Primary Peritoneal Carcinoma 7 115799 -NCIT:C140003 Primary Peritoneal Cancer by AJCC v7 Stage 6 115800 -NCIT:C115094 Stage III Primary Peritoneal Cancer AJCC v7 7 115801 -NCIT:C115095 Stage IIIA Primary Peritoneal Cancer AJCC v7 8 115802 -NCIT:C115096 Stage IIIB Primary Peritoneal Cancer AJCC v7 8 115803 -NCIT:C115097 Stage IIIC Primary Peritoneal Cancer AJCC v7 8 115804 -NCIT:C115098 Stage IV Primary Peritoneal Cancer AJCC v7 7 115805 -NCIT:C140004 Primary Peritoneal Cancer by AJCC v8 Stage 6 115806 -NCIT:C140005 Stage II Primary Peritoneal Cancer AJCC v8 7 115807 -NCIT:C140006 Stage IIA Primary Peritoneal Cancer AJCC v8 8 115808 -NCIT:C140007 Stage IIB Primary Peritoneal Cancer AJCC v8 8 115809 -NCIT:C140008 Stage III Primary Peritoneal Cancer AJCC v8 7 115810 -NCIT:C140009 Stage IIIA Primary Peritoneal Cancer AJCC v8 8 115811 -NCIT:C140010 Stage IIIB Primary Peritoneal Cancer AJCC v8 8 115812 -NCIT:C140011 Stage IIIC Primary Peritoneal Cancer AJCC v8 8 115813 -NCIT:C140012 Stage IV Primary Peritoneal Cancer AJCC v8 7 115814 -NCIT:C140013 Stage IVA Primary Peritoneal Cancer AJCC v8 8 115815 -NCIT:C140014 Stage IVB Primary Peritoneal Cancer AJCC v8 8 115816 -NCIT:C152046 Refractory Primary Peritoneal Carcinoma 6 115817 -NCIT:C157622 Platinum-Resistant Primary Peritoneal Carcinoma 7 115818 -NCIT:C170751 Recurrent Platinum-Resistant Primary Peritoneal Carcinoma 8 115819 -NCIT:C170975 Refractory Primary Peritoneal Adenocarcinoma 7 115820 -NCIT:C171021 Refractory Primary Peritoneal Serous Adenocarcinoma 8 115821 -NCIT:C178686 Refractory Primary Peritoneal High Grade Serous Adenocarcinoma 9 115822 -NCIT:C178687 Refractory Primary Peritoneal Low Grade Serous Adenocarcinoma 9 115823 -NCIT:C178684 Refractory Primary Peritoneal Clear Cell Adenocarcinoma 8 115824 -NCIT:C178685 Refractory Primary Peritoneal Endometrioid Adenocarcinoma 8 115825 -NCIT:C178688 Refractory Primary Peritoneal Transitional Cell Carcinoma 7 115826 -NCIT:C178689 Refractory Primary Peritoneal Undifferentiated Carcinoma 7 115827 -NCIT:C178702 Platinum-Refractory Primary Peritoneal Carcinoma 7 115828 -NCIT:C160872 Platinum-Sensitive Primary Peritoneal Carcinoma 6 115829 -NCIT:C191407 Recurrent Platinum-Sensitive Primary Peritoneal Carcinoma 7 115830 -NCIT:C162562 Primary Peritoneal Undifferentiated Carcinoma 6 115831 -NCIT:C170756 Recurrent Primary Peritoneal Undifferentiated Carcinoma 7 115832 -NCIT:C178689 Refractory Primary Peritoneal Undifferentiated Carcinoma 7 115833 -NCIT:C162564 Primary Peritoneal Transitional Cell Carcinoma 6 115834 -NCIT:C170759 Recurrent Primary Peritoneal Transitional Cell Carcinoma 7 115835 -NCIT:C178688 Refractory Primary Peritoneal Transitional Cell Carcinoma 7 115836 -NCIT:C167203 Metastatic Primary Peritoneal Carcinoma 6 115837 -NCIT:C167204 Locally Advanced Primary Peritoneal Carcinoma 7 115838 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 8 115839 -NCIT:C167396 Advanced Primary Peritoneal Carcinoma 7 115840 -NCIT:C170972 Metastatic Primary Peritoneal Adenocarcinoma 7 115841 -NCIT:C171019 Metastatic Primary Peritoneal Serous Adenocarcinoma 8 115842 -NCIT:C186453 Metastatic Primary Peritoneal High Grade Serous Adenocarcinoma 9 115843 -NCIT:C170733 Primary Peritoneal Adenocarcinoma 6 115844 -NCIT:C162566 Primary Peritoneal Clear Cell Adenocarcinoma 7 115845 -NCIT:C170761 Recurrent Primary Peritoneal Clear Cell Adenocarcinoma 8 115846 -NCIT:C178684 Refractory Primary Peritoneal Clear Cell Adenocarcinoma 8 115847 -NCIT:C165260 Primary Peritoneal Endometrioid Adenocarcinoma 7 115848 -NCIT:C165269 Recurrent Primary Peritoneal Endometrioid Adenocarcinoma 8 115849 -NCIT:C178685 Refractory Primary Peritoneal Endometrioid Adenocarcinoma 8 115850 -NCIT:C186276 Unresectable Primary Peritoneal Endometrioid Adenocarcinoma 8 115851 -NCIT:C170767 Recurrent Primary Peritoneal Adenocarcinoma 7 115852 -NCIT:C156453 Recurrent Primary Peritoneal Serous Adenocarcinoma 8 115853 -NCIT:C156454 Recurrent Primary Peritoneal Low Grade Serous Adenocarcinoma 9 115854 -NCIT:C165268 Recurrent Primary Peritoneal High Grade Serous Adenocarcinoma 9 115855 -NCIT:C165269 Recurrent Primary Peritoneal Endometrioid Adenocarcinoma 8 115856 -NCIT:C170761 Recurrent Primary Peritoneal Clear Cell Adenocarcinoma 8 115857 -NCIT:C170972 Metastatic Primary Peritoneal Adenocarcinoma 7 115858 -NCIT:C171019 Metastatic Primary Peritoneal Serous Adenocarcinoma 8 115859 -NCIT:C186453 Metastatic Primary Peritoneal High Grade Serous Adenocarcinoma 9 115860 -NCIT:C170974 Unresectable Primary Peritoneal Adenocarcinoma 7 115861 -NCIT:C171020 Unresectable Primary Peritoneal Serous Adenocarcinoma 8 115862 -NCIT:C186275 Unresectable Primary Peritoneal High Grade Serous Adenocarcinoma 9 115863 -NCIT:C186276 Unresectable Primary Peritoneal Endometrioid Adenocarcinoma 8 115864 -NCIT:C170975 Refractory Primary Peritoneal Adenocarcinoma 7 115865 -NCIT:C171021 Refractory Primary Peritoneal Serous Adenocarcinoma 8 115866 -NCIT:C178686 Refractory Primary Peritoneal High Grade Serous Adenocarcinoma 9 115867 -NCIT:C178687 Refractory Primary Peritoneal Low Grade Serous Adenocarcinoma 9 115868 -NCIT:C178684 Refractory Primary Peritoneal Clear Cell Adenocarcinoma 8 115869 -NCIT:C178685 Refractory Primary Peritoneal Endometrioid Adenocarcinoma 8 115870 -NCIT:C40023 Primary Peritoneal Serous Adenocarcinoma 7 115871 -NCIT:C126353 Primary Peritoneal High Grade Serous Adenocarcinoma 8 115872 -NCIT:C165268 Recurrent Primary Peritoneal High Grade Serous Adenocarcinoma 9 115873 -NCIT:C178686 Refractory Primary Peritoneal High Grade Serous Adenocarcinoma 9 115874 -NCIT:C186275 Unresectable Primary Peritoneal High Grade Serous Adenocarcinoma 9 115875 -NCIT:C186453 Metastatic Primary Peritoneal High Grade Serous Adenocarcinoma 9 115876 -NCIT:C126354 Primary Peritoneal Low Grade Serous Adenocarcinoma 8 115877 -NCIT:C156454 Recurrent Primary Peritoneal Low Grade Serous Adenocarcinoma 9 115878 -NCIT:C178687 Refractory Primary Peritoneal Low Grade Serous Adenocarcinoma 9 115879 -NCIT:C156453 Recurrent Primary Peritoneal Serous Adenocarcinoma 8 115880 -NCIT:C156454 Recurrent Primary Peritoneal Low Grade Serous Adenocarcinoma 9 115881 -NCIT:C165268 Recurrent Primary Peritoneal High Grade Serous Adenocarcinoma 9 115882 -NCIT:C171019 Metastatic Primary Peritoneal Serous Adenocarcinoma 8 115883 -NCIT:C186453 Metastatic Primary Peritoneal High Grade Serous Adenocarcinoma 9 115884 -NCIT:C171020 Unresectable Primary Peritoneal Serous Adenocarcinoma 8 115885 -NCIT:C186275 Unresectable Primary Peritoneal High Grade Serous Adenocarcinoma 9 115886 -NCIT:C171021 Refractory Primary Peritoneal Serous Adenocarcinoma 8 115887 -NCIT:C178686 Refractory Primary Peritoneal High Grade Serous Adenocarcinoma 9 115888 -NCIT:C178687 Refractory Primary Peritoneal Low Grade Serous Adenocarcinoma 9 115889 -NCIT:C7695 Primary Peritoneal Serous Papillary Adenocarcinoma 8 115890 -NCIT:C170973 Unresectable Primary Peritoneal Carcinoma 6 115891 -NCIT:C170974 Unresectable Primary Peritoneal Adenocarcinoma 7 115892 -NCIT:C171020 Unresectable Primary Peritoneal Serous Adenocarcinoma 8 115893 -NCIT:C186275 Unresectable Primary Peritoneal High Grade Serous Adenocarcinoma 9 115894 -NCIT:C186276 Unresectable Primary Peritoneal Endometrioid Adenocarcinoma 8 115895 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 7 115896 -NCIT:C4583 Metastatic Malignant Neoplasm in the Peritoneum 5 115897 -NCIT:C179654 Metastatic Carcinoma in the Peritoneum 6 115898 -NCIT:C27382 Peritoneal Carcinomatosis 7 115899 -NCIT:C3345 Pseudomyxoma Peritonei 8 115900 -NCIT:C179179 Recurrent Pseudomyxoma Peritonei 9 115901 -NCIT:C179180 Refractory Pseudomyxoma Peritonei 9 115902 -NCIT:C179657 Metastatic Sarcoma in the Peritoneum 6 115903 -NCIT:C179656 Peritoneal Sarcomatosis 7 115904 -NCIT:C9350 Peritoneal Malignant Mesothelioma 5 115905 -NCIT:C162940 Peritoneal Epithelioid Mesothelioma 6 115906 -NCIT:C173613 Unresectable Peritoneal Epithelioid Mesothelioma 7 115907 -NCIT:C168804 Peritoneal Sarcomatoid Mesothelioma 6 115908 -NCIT:C173614 Unresectable Peritoneal Sarcomatoid Mesothelioma 7 115909 -NCIT:C168805 Peritoneal Biphasic Mesothelioma 6 115910 -NCIT:C173615 Unresectable Peritoneal Biphasic Mesothelioma 7 115911 -NCIT:C173612 Unresectable Peritoneal Malignant Mesothelioma 6 115912 -NCIT:C173613 Unresectable Peritoneal Epithelioid Mesothelioma 7 115913 -NCIT:C173614 Unresectable Peritoneal Sarcomatoid Mesothelioma 7 115914 -NCIT:C173615 Unresectable Peritoneal Biphasic Mesothelioma 7 115915 -NCIT:C179462 Metastatic Peritoneal Malignant Mesothelioma 6 115916 -NCIT:C8704 Advanced Peritoneal Malignant Mesothelioma 7 115917 -NCIT:C8705 Recurrent Peritoneal Malignant Mesothelioma 6 115918 -NCIT:C40024 Borderline Peritoneal Serous Tumor 4 115919 -NCIT:C40338 Peritoneal Gastrointestinal Stromal Tumor 4 115920 -NCIT:C40339 Mesenteric Gastrointestinal Stromal Tumor 5 115921 -NCIT:C40340 Omentum Gastrointestinal Stromal Tumor 5 115922 -NCIT:C7633 Peritoneal Mesothelioma 4 115923 -NCIT:C45661 Peritoneal Well Differentiated Papillary Mesothelial Tumor 5 115924 -NCIT:C6536 Peritoneal Multicystic Mesothelioma 5 115925 -NCIT:C7354 Peritoneal Adenomatoid Tumor 5 115926 -NCIT:C9350 Peritoneal Malignant Mesothelioma 5 115927 -NCIT:C162940 Peritoneal Epithelioid Mesothelioma 6 115928 -NCIT:C173613 Unresectable Peritoneal Epithelioid Mesothelioma 7 115929 -NCIT:C168804 Peritoneal Sarcomatoid Mesothelioma 6 115930 -NCIT:C173614 Unresectable Peritoneal Sarcomatoid Mesothelioma 7 115931 -NCIT:C168805 Peritoneal Biphasic Mesothelioma 6 115932 -NCIT:C173615 Unresectable Peritoneal Biphasic Mesothelioma 7 115933 -NCIT:C173612 Unresectable Peritoneal Malignant Mesothelioma 6 115934 -NCIT:C173613 Unresectable Peritoneal Epithelioid Mesothelioma 7 115935 -NCIT:C173614 Unresectable Peritoneal Sarcomatoid Mesothelioma 7 115936 -NCIT:C173615 Unresectable Peritoneal Biphasic Mesothelioma 7 115937 -NCIT:C179462 Metastatic Peritoneal Malignant Mesothelioma 6 115938 -NCIT:C8704 Advanced Peritoneal Malignant Mesothelioma 7 115939 -NCIT:C8705 Recurrent Peritoneal Malignant Mesothelioma 6 115940 -NCIT:C8612 Benign Peritoneal Neoplasm 4 115941 -NCIT:C179560 Peritoneal Calcifying Fibrous Tumor 5 115942 -NCIT:C3958 Disseminated Peritoneal Leiomyomatosis 5 115943 -NCIT:C7354 Peritoneal Adenomatoid Tumor 5 115944 -NCIT:C3357 Retroperitoneal Neoplasm 3 115945 -NCIT:C2859 Adrenal Gland Neoplasm 4 115946 -NCIT:C2858 Adrenal Cortical Neoplasm 5 115947 -NCIT:C156943 Adrenal Cortical Sex Cord-Stromal Tumor 6 115948 -NCIT:C9004 Benign Adrenal Cortical Neoplasm 6 115949 -NCIT:C48319 Adrenal Cortical Adenomatoid Tumor 7 115950 -NCIT:C9003 Adrenal Cortical Adenoma 7 115951 -NCIT:C190068 Childhood Adrenal Cortical Adenoma 8 115952 -NCIT:C4163 Adrenal Cortical Compact Cell Adenoma 8 115953 -NCIT:C4164 Pigmented Adrenal Cortical Adenoma 8 115954 -NCIT:C4165 Adrenal Cortical Clear Cell Adenoma 8 115955 -NCIT:C4166 Adrenal Cortical Glomerulosa Cell Adenoma 8 115956 -NCIT:C4167 Adrenal Cortical Mixed Cell Adenoma 8 115957 -NCIT:C48447 Adrenal Cortical Oncocytic Adenoma 8 115958 -NCIT:C48449 Cortisol-Producing Adrenal Cortical Adenoma 8 115959 -NCIT:C48451 Aldosterone-Producing Adrenal Cortical Adenoma 8 115960 -NCIT:C48452 Sex Hormone-Producing Adrenal Cortical Adenoma 8 115961 -NCIT:C48454 Androgen-Producing Adrenal Cortical Adenoma 9 115962 -NCIT:C48456 Estrogen-Producing Adrenal Cortical Adenoma 9 115963 -NCIT:C48458 Non-Functioning Adrenal Cortical Adenoma 8 115964 -NCIT:C9327 Malignant Adrenal Cortical Neoplasm 6 115965 -NCIT:C188185 Adrenal Cortical Melanoma 7 115966 -NCIT:C27381 Metastatic Carcinoma in the Adrenal Cortex 7 115967 -NCIT:C9325 Adrenal Cortical Carcinoma 7 115968 -NCIT:C104030 Adrenal Cortical Carcinoma by ENSAT Stage 8 115969 -NCIT:C104031 ENSAT Stage I Adrenal Cortical Carcinoma 9 115970 -NCIT:C104032 ENSAT Stage II Adrenal Cortical Carcinoma 9 115971 -NCIT:C104033 ENSAT Stage III Adrenal Cortical Carcinoma 9 115972 -NCIT:C104034 ENSAT Stage IV Adrenal Cortical Carcinoma 9 115973 -NCIT:C141098 Adrenal Cortical Carcinoma by AJCC v7 Stage 8 115974 -NCIT:C9214 Stage I Adrenal Cortical Carcinoma AJCC v7 9 115975 -NCIT:C9215 Stage II Adrenal Cortical Carcinoma AJCC v7 9 115976 -NCIT:C9216 Stage III Adrenal Cortical Carcinoma AJCC v7 9 115977 -NCIT:C9217 Stage IV Adrenal Cortical Carcinoma AJCC v7 9 115978 -NCIT:C141100 Adrenal Cortical Carcinoma by AJCC v8 Stage 8 115979 -NCIT:C141101 Stage I Adrenal Cortical Carcinoma AJCC v8 9 115980 -NCIT:C141102 Stage II Adrenal Cortical Carcinoma AJCC v8 9 115981 -NCIT:C141103 Stage III Adrenal Cortical Carcinoma AJCC v8 9 115982 -NCIT:C141104 Stage IV Adrenal Cortical Carcinoma AJCC v8 9 115983 -NCIT:C150580 Unresectable Adrenal Cortical Carcinoma 8 115984 -NCIT:C156070 Metastatic Adrenal Cortical Carcinoma 8 115985 -NCIT:C174443 Locally Advanced Adrenal Cortical Carcinoma 9 115986 -NCIT:C191863 Advanced Adrenal Cortical Carcinoma 9 115987 -NCIT:C188036 Refractory Adrenal Cortical Carcinoma 8 115988 -NCIT:C188181 Adrenal Cortical Oncocytic Carcinoma 8 115989 -NCIT:C188182 Adrenal Cortical Myxoid Carcinoma 8 115990 -NCIT:C188183 Adrenal Cortical High Grade Carcinoma 8 115991 -NCIT:C190069 Childhood Adrenal Cortical Carcinoma 8 115992 -NCIT:C6417 Recurrent Adrenal Cortical Carcinoma 8 115993 -NCIT:C68635 Adrenal Cortical Low Grade Carcinoma 8 115994 -NCIT:C68644 Adrenal Cortical Sarcomatoid Carcinoma 8 115995 -NCIT:C3629 Benign Adrenal Gland Neoplasm 5 115996 -NCIT:C188250 Adrenal Gland Lipoma 6 115997 -NCIT:C188251 Adrenal Gland Hemangioma 6 115998 -NCIT:C188252 Adrenal Gland Lymphangioma 6 115999 -NCIT:C188253 Adrenal Gland Leiomyoma 6 116000 -NCIT:C4895 Benign Adrenal Medulla Neoplasm 6 116001 -NCIT:C156944 Adrenal Gland Schwannoma 7 116002 -NCIT:C157245 Adrenal Gland Ganglioneuroma 7 116003 -NCIT:C9004 Benign Adrenal Cortical Neoplasm 6 116004 -NCIT:C48319 Adrenal Cortical Adenomatoid Tumor 7 116005 -NCIT:C9003 Adrenal Cortical Adenoma 7 116006 -NCIT:C190068 Childhood Adrenal Cortical Adenoma 8 116007 -NCIT:C4163 Adrenal Cortical Compact Cell Adenoma 8 116008 -NCIT:C4164 Pigmented Adrenal Cortical Adenoma 8 116009 -NCIT:C4165 Adrenal Cortical Clear Cell Adenoma 8 116010 -NCIT:C4166 Adrenal Cortical Glomerulosa Cell Adenoma 8 116011 -NCIT:C4167 Adrenal Cortical Mixed Cell Adenoma 8 116012 -NCIT:C48447 Adrenal Cortical Oncocytic Adenoma 8 116013 -NCIT:C48449 Cortisol-Producing Adrenal Cortical Adenoma 8 116014 -NCIT:C48451 Aldosterone-Producing Adrenal Cortical Adenoma 8 116015 -NCIT:C48452 Sex Hormone-Producing Adrenal Cortical Adenoma 8 116016 -NCIT:C48454 Androgen-Producing Adrenal Cortical Adenoma 9 116017 -NCIT:C48456 Estrogen-Producing Adrenal Cortical Adenoma 9 116018 -NCIT:C48458 Non-Functioning Adrenal Cortical Adenoma 8 116019 -NCIT:C4856 Adrenal Medulla Neoplasm 5 116020 -NCIT:C3326 Adrenal Gland Pheochromocytoma 6 116021 -NCIT:C118822 Childhood Adrenal Gland Pheochromocytoma 7 116022 -NCIT:C157128 Unresectable Adrenal Gland Pheochromocytoma 7 116023 -NCIT:C157248 Hereditary Adrenal Gland Pheochromocytoma 7 116024 -NCIT:C158402 Refractory Adrenal Gland Pheochromocytoma 7 116025 -NCIT:C4220 Metastatic Adrenal Gland Pheochromocytoma 7 116026 -NCIT:C157129 Locally Advanced Adrenal Gland Pheochromocytoma 8 116027 -NCIT:C160853 Advanced Adrenal Gland Pheochromocytoma 8 116028 -NCIT:C92184 Metastatic Adrenal Gland Composite Pheochromocytoma 8 116029 -NCIT:C48305 Non-Metastatic Adrenal Gland Pheochromocytoma 7 116030 -NCIT:C92181 Non-Metastatic Adrenal Gland Composite Pheochromocytoma 8 116031 -NCIT:C48306 Adrenal Gland Composite Pheochromocytoma 7 116032 -NCIT:C92181 Non-Metastatic Adrenal Gland Composite Pheochromocytoma 8 116033 -NCIT:C92184 Metastatic Adrenal Gland Composite Pheochromocytoma 8 116034 -NCIT:C8045 Regional Adrenal Gland Pheochromocytoma 7 116035 -NCIT:C8047 Recurrent Adrenal Gland Pheochromocytoma 7 116036 -NCIT:C4396 Malignant Adrenal Medulla Neoplasm 6 116037 -NCIT:C4220 Metastatic Adrenal Gland Pheochromocytoma 7 116038 -NCIT:C157129 Locally Advanced Adrenal Gland Pheochromocytoma 8 116039 -NCIT:C160853 Advanced Adrenal Gland Pheochromocytoma 8 116040 -NCIT:C92184 Metastatic Adrenal Gland Composite Pheochromocytoma 8 116041 -NCIT:C4827 Adrenal Gland Neuroblastoma 7 116042 -NCIT:C7646 Adrenal Gland Ganglioneuroblastoma 7 116043 -NCIT:C157243 Adrenal Gland Ganglioneuroblastoma, Intermixed 8 116044 -NCIT:C157244 Adrenal Gland Ganglioneuroblastoma, Nodular 8 116045 -NCIT:C9276 Metastatic Carcinoma in the Adrenal Medulla 7 116046 -NCIT:C4895 Benign Adrenal Medulla Neoplasm 6 116047 -NCIT:C156944 Adrenal Gland Schwannoma 7 116048 -NCIT:C157245 Adrenal Gland Ganglioneuroma 7 116049 -NCIT:C9338 Malignant Adrenal Gland Neoplasm 5 116050 -NCIT:C156945 Adrenal Gland Lymphoma 6 116051 -NCIT:C156956 Adrenal Gland Sarcoma 6 116052 -NCIT:C188254 Adrenal Gland Leiomyosarcoma 7 116053 -NCIT:C48320 Adrenal Gland Angiosarcoma 7 116054 -NCIT:C4396 Malignant Adrenal Medulla Neoplasm 6 116055 -NCIT:C4220 Metastatic Adrenal Gland Pheochromocytoma 7 116056 -NCIT:C157129 Locally Advanced Adrenal Gland Pheochromocytoma 8 116057 -NCIT:C160853 Advanced Adrenal Gland Pheochromocytoma 8 116058 -NCIT:C92184 Metastatic Adrenal Gland Composite Pheochromocytoma 8 116059 -NCIT:C4827 Adrenal Gland Neuroblastoma 7 116060 -NCIT:C7646 Adrenal Gland Ganglioneuroblastoma 7 116061 -NCIT:C157243 Adrenal Gland Ganglioneuroblastoma, Intermixed 8 116062 -NCIT:C157244 Adrenal Gland Ganglioneuroblastoma, Nodular 8 116063 -NCIT:C9276 Metastatic Carcinoma in the Adrenal Medulla 7 116064 -NCIT:C8610 Metastatic Malignant Neoplasm in the Adrenal Gland 6 116065 -NCIT:C27381 Metastatic Carcinoma in the Adrenal Cortex 7 116066 -NCIT:C9276 Metastatic Carcinoma in the Adrenal Medulla 7 116067 -NCIT:C9327 Malignant Adrenal Cortical Neoplasm 6 116068 -NCIT:C188185 Adrenal Cortical Melanoma 7 116069 -NCIT:C27381 Metastatic Carcinoma in the Adrenal Cortex 7 116070 -NCIT:C9325 Adrenal Cortical Carcinoma 7 116071 -NCIT:C104030 Adrenal Cortical Carcinoma by ENSAT Stage 8 116072 -NCIT:C104031 ENSAT Stage I Adrenal Cortical Carcinoma 9 116073 -NCIT:C104032 ENSAT Stage II Adrenal Cortical Carcinoma 9 116074 -NCIT:C104033 ENSAT Stage III Adrenal Cortical Carcinoma 9 116075 -NCIT:C104034 ENSAT Stage IV Adrenal Cortical Carcinoma 9 116076 -NCIT:C141098 Adrenal Cortical Carcinoma by AJCC v7 Stage 8 116077 -NCIT:C9214 Stage I Adrenal Cortical Carcinoma AJCC v7 9 116078 -NCIT:C9215 Stage II Adrenal Cortical Carcinoma AJCC v7 9 116079 -NCIT:C9216 Stage III Adrenal Cortical Carcinoma AJCC v7 9 116080 -NCIT:C9217 Stage IV Adrenal Cortical Carcinoma AJCC v7 9 116081 -NCIT:C141100 Adrenal Cortical Carcinoma by AJCC v8 Stage 8 116082 -NCIT:C141101 Stage I Adrenal Cortical Carcinoma AJCC v8 9 116083 -NCIT:C141102 Stage II Adrenal Cortical Carcinoma AJCC v8 9 116084 -NCIT:C141103 Stage III Adrenal Cortical Carcinoma AJCC v8 9 116085 -NCIT:C141104 Stage IV Adrenal Cortical Carcinoma AJCC v8 9 116086 -NCIT:C150580 Unresectable Adrenal Cortical Carcinoma 8 116087 -NCIT:C156070 Metastatic Adrenal Cortical Carcinoma 8 116088 -NCIT:C174443 Locally Advanced Adrenal Cortical Carcinoma 9 116089 -NCIT:C191863 Advanced Adrenal Cortical Carcinoma 9 116090 -NCIT:C188036 Refractory Adrenal Cortical Carcinoma 8 116091 -NCIT:C188181 Adrenal Cortical Oncocytic Carcinoma 8 116092 -NCIT:C188182 Adrenal Cortical Myxoid Carcinoma 8 116093 -NCIT:C188183 Adrenal Cortical High Grade Carcinoma 8 116094 -NCIT:C190069 Childhood Adrenal Cortical Carcinoma 8 116095 -NCIT:C6417 Recurrent Adrenal Cortical Carcinoma 8 116096 -NCIT:C68635 Adrenal Cortical Low Grade Carcinoma 8 116097 -NCIT:C68644 Adrenal Cortical Sarcomatoid Carcinoma 8 116098 -NCIT:C3537 Malignant Retroperitoneal Neoplasm 4 116099 -NCIT:C179463 Recurrent Malignant Retroperitoneal Neoplasm 5 116100 -NCIT:C6417 Recurrent Adrenal Cortical Carcinoma 6 116101 -NCIT:C4832 Retroperitoneal Sarcoma 5 116102 -NCIT:C136811 Retroperitoneal Sarcoma by AJCC v8 Stage 6 116103 -NCIT:C136812 Stage I Retroperitoneal Sarcoma AJCC v8 7 116104 -NCIT:C136813 Stage IA Retroperitoneal Sarcoma AJCC v8 8 116105 -NCIT:C136814 Stage IB Retroperitoneal Sarcoma AJCC v8 8 116106 -NCIT:C136815 Stage II Retroperitoneal Sarcoma AJCC v8 7 116107 -NCIT:C136816 Stage III Retroperitoneal Sarcoma AJCC v8 7 116108 -NCIT:C136817 Stage IIIA Retroperitoneal Sarcoma AJCC v8 8 116109 -NCIT:C136818 Stage IIIB Retroperitoneal Sarcoma AJCC v8 8 116110 -NCIT:C136819 Stage IV Retroperitoneal Sarcoma AJCC v8 7 116111 -NCIT:C156956 Adrenal Gland Sarcoma 6 116112 -NCIT:C188254 Adrenal Gland Leiomyosarcoma 7 116113 -NCIT:C48320 Adrenal Gland Angiosarcoma 7 116114 -NCIT:C173808 Retroperitoneal Undifferentiated Pleomorphic Sarcoma 6 116115 -NCIT:C188071 Retroperitoneal Rhabdomyosarcoma 6 116116 -NCIT:C188073 Retroperitoneal Malignant Peripheral Nerve Sheath Tumor 6 116117 -NCIT:C27904 Retroperitoneal Leiomyosarcoma 6 116118 -NCIT:C7352 Retroperitoneal Carcinoma 5 116119 -NCIT:C9325 Adrenal Cortical Carcinoma 6 116120 -NCIT:C104030 Adrenal Cortical Carcinoma by ENSAT Stage 7 116121 -NCIT:C104031 ENSAT Stage I Adrenal Cortical Carcinoma 8 116122 -NCIT:C104032 ENSAT Stage II Adrenal Cortical Carcinoma 8 116123 -NCIT:C104033 ENSAT Stage III Adrenal Cortical Carcinoma 8 116124 -NCIT:C104034 ENSAT Stage IV Adrenal Cortical Carcinoma 8 116125 -NCIT:C141098 Adrenal Cortical Carcinoma by AJCC v7 Stage 7 116126 -NCIT:C9214 Stage I Adrenal Cortical Carcinoma AJCC v7 8 116127 -NCIT:C9215 Stage II Adrenal Cortical Carcinoma AJCC v7 8 116128 -NCIT:C9216 Stage III Adrenal Cortical Carcinoma AJCC v7 8 116129 -NCIT:C9217 Stage IV Adrenal Cortical Carcinoma AJCC v7 8 116130 -NCIT:C141100 Adrenal Cortical Carcinoma by AJCC v8 Stage 7 116131 -NCIT:C141101 Stage I Adrenal Cortical Carcinoma AJCC v8 8 116132 -NCIT:C141102 Stage II Adrenal Cortical Carcinoma AJCC v8 8 116133 -NCIT:C141103 Stage III Adrenal Cortical Carcinoma AJCC v8 8 116134 -NCIT:C141104 Stage IV Adrenal Cortical Carcinoma AJCC v8 8 116135 -NCIT:C150580 Unresectable Adrenal Cortical Carcinoma 7 116136 -NCIT:C156070 Metastatic Adrenal Cortical Carcinoma 7 116137 -NCIT:C174443 Locally Advanced Adrenal Cortical Carcinoma 8 116138 -NCIT:C191863 Advanced Adrenal Cortical Carcinoma 8 116139 -NCIT:C188036 Refractory Adrenal Cortical Carcinoma 7 116140 -NCIT:C188181 Adrenal Cortical Oncocytic Carcinoma 7 116141 -NCIT:C188182 Adrenal Cortical Myxoid Carcinoma 7 116142 -NCIT:C188183 Adrenal Cortical High Grade Carcinoma 7 116143 -NCIT:C190069 Childhood Adrenal Cortical Carcinoma 7 116144 -NCIT:C6417 Recurrent Adrenal Cortical Carcinoma 7 116145 -NCIT:C68635 Adrenal Cortical Low Grade Carcinoma 7 116146 -NCIT:C68644 Adrenal Cortical Sarcomatoid Carcinoma 7 116147 -NCIT:C7353 Retroperitoneal Lymphoma 5 116148 -NCIT:C156945 Adrenal Gland Lymphoma 6 116149 -NCIT:C9338 Malignant Adrenal Gland Neoplasm 5 116150 -NCIT:C156945 Adrenal Gland Lymphoma 6 116151 -NCIT:C156956 Adrenal Gland Sarcoma 6 116152 -NCIT:C188254 Adrenal Gland Leiomyosarcoma 7 116153 -NCIT:C48320 Adrenal Gland Angiosarcoma 7 116154 -NCIT:C4396 Malignant Adrenal Medulla Neoplasm 6 116155 -NCIT:C4220 Metastatic Adrenal Gland Pheochromocytoma 7 116156 -NCIT:C157129 Locally Advanced Adrenal Gland Pheochromocytoma 8 116157 -NCIT:C160853 Advanced Adrenal Gland Pheochromocytoma 8 116158 -NCIT:C92184 Metastatic Adrenal Gland Composite Pheochromocytoma 8 116159 -NCIT:C4827 Adrenal Gland Neuroblastoma 7 116160 -NCIT:C7646 Adrenal Gland Ganglioneuroblastoma 7 116161 -NCIT:C157243 Adrenal Gland Ganglioneuroblastoma, Intermixed 8 116162 -NCIT:C157244 Adrenal Gland Ganglioneuroblastoma, Nodular 8 116163 -NCIT:C9276 Metastatic Carcinoma in the Adrenal Medulla 7 116164 -NCIT:C8610 Metastatic Malignant Neoplasm in the Adrenal Gland 6 116165 -NCIT:C27381 Metastatic Carcinoma in the Adrenal Cortex 7 116166 -NCIT:C9276 Metastatic Carcinoma in the Adrenal Medulla 7 116167 -NCIT:C9327 Malignant Adrenal Cortical Neoplasm 6 116168 -NCIT:C188185 Adrenal Cortical Melanoma 7 116169 -NCIT:C27381 Metastatic Carcinoma in the Adrenal Cortex 7 116170 -NCIT:C9325 Adrenal Cortical Carcinoma 7 116171 -NCIT:C104030 Adrenal Cortical Carcinoma by ENSAT Stage 8 116172 -NCIT:C104031 ENSAT Stage I Adrenal Cortical Carcinoma 9 116173 -NCIT:C104032 ENSAT Stage II Adrenal Cortical Carcinoma 9 116174 -NCIT:C104033 ENSAT Stage III Adrenal Cortical Carcinoma 9 116175 -NCIT:C104034 ENSAT Stage IV Adrenal Cortical Carcinoma 9 116176 -NCIT:C141098 Adrenal Cortical Carcinoma by AJCC v7 Stage 8 116177 -NCIT:C9214 Stage I Adrenal Cortical Carcinoma AJCC v7 9 116178 -NCIT:C9215 Stage II Adrenal Cortical Carcinoma AJCC v7 9 116179 -NCIT:C9216 Stage III Adrenal Cortical Carcinoma AJCC v7 9 116180 -NCIT:C9217 Stage IV Adrenal Cortical Carcinoma AJCC v7 9 116181 -NCIT:C141100 Adrenal Cortical Carcinoma by AJCC v8 Stage 8 116182 -NCIT:C141101 Stage I Adrenal Cortical Carcinoma AJCC v8 9 116183 -NCIT:C141102 Stage II Adrenal Cortical Carcinoma AJCC v8 9 116184 -NCIT:C141103 Stage III Adrenal Cortical Carcinoma AJCC v8 9 116185 -NCIT:C141104 Stage IV Adrenal Cortical Carcinoma AJCC v8 9 116186 -NCIT:C150580 Unresectable Adrenal Cortical Carcinoma 8 116187 -NCIT:C156070 Metastatic Adrenal Cortical Carcinoma 8 116188 -NCIT:C174443 Locally Advanced Adrenal Cortical Carcinoma 9 116189 -NCIT:C191863 Advanced Adrenal Cortical Carcinoma 9 116190 -NCIT:C188036 Refractory Adrenal Cortical Carcinoma 8 116191 -NCIT:C188181 Adrenal Cortical Oncocytic Carcinoma 8 116192 -NCIT:C188182 Adrenal Cortical Myxoid Carcinoma 8 116193 -NCIT:C188183 Adrenal Cortical High Grade Carcinoma 8 116194 -NCIT:C190069 Childhood Adrenal Cortical Carcinoma 8 116195 -NCIT:C6417 Recurrent Adrenal Cortical Carcinoma 8 116196 -NCIT:C68635 Adrenal Cortical Low Grade Carcinoma 8 116197 -NCIT:C68644 Adrenal Cortical Sarcomatoid Carcinoma 8 116198 -NCIT:C39741 Retroperitoneal Inflammatory Myofibroblastic Tumor 4 116199 -NCIT:C40337 Retroperitoneal Gastrointestinal Stromal Tumor 4 116200 -NCIT:C4447 Benign Retroperitoneal Neoplasm 4 116201 -NCIT:C3629 Benign Adrenal Gland Neoplasm 5 116202 -NCIT:C188250 Adrenal Gland Lipoma 6 116203 -NCIT:C188251 Adrenal Gland Hemangioma 6 116204 -NCIT:C188252 Adrenal Gland Lymphangioma 6 116205 -NCIT:C188253 Adrenal Gland Leiomyoma 6 116206 -NCIT:C4895 Benign Adrenal Medulla Neoplasm 6 116207 -NCIT:C156944 Adrenal Gland Schwannoma 7 116208 -NCIT:C157245 Adrenal Gland Ganglioneuroma 7 116209 -NCIT:C9004 Benign Adrenal Cortical Neoplasm 6 116210 -NCIT:C48319 Adrenal Cortical Adenomatoid Tumor 7 116211 -NCIT:C9003 Adrenal Cortical Adenoma 7 116212 -NCIT:C190068 Childhood Adrenal Cortical Adenoma 8 116213 -NCIT:C4163 Adrenal Cortical Compact Cell Adenoma 8 116214 -NCIT:C4164 Pigmented Adrenal Cortical Adenoma 8 116215 -NCIT:C4165 Adrenal Cortical Clear Cell Adenoma 8 116216 -NCIT:C4166 Adrenal Cortical Glomerulosa Cell Adenoma 8 116217 -NCIT:C4167 Adrenal Cortical Mixed Cell Adenoma 8 116218 -NCIT:C48447 Adrenal Cortical Oncocytic Adenoma 8 116219 -NCIT:C48449 Cortisol-Producing Adrenal Cortical Adenoma 8 116220 -NCIT:C48451 Aldosterone-Producing Adrenal Cortical Adenoma 8 116221 -NCIT:C48452 Sex Hormone-Producing Adrenal Cortical Adenoma 8 116222 -NCIT:C48454 Androgen-Producing Adrenal Cortical Adenoma 9 116223 -NCIT:C48456 Estrogen-Producing Adrenal Cortical Adenoma 9 116224 -NCIT:C48458 Non-Functioning Adrenal Cortical Adenoma 8 116225 -NCIT:C5427 Retroperitoneal Ganglioneuroma 5 116226 -NCIT:C157245 Adrenal Gland Ganglioneuroma 6 116227 -NCIT:C5328 Extra-Adrenal Retroperitoneal Paraganglioma 4 116228 -NCIT:C48317 Superior and Inferior Paraaortic Paraganglioma 5 116229 -NCIT:C6447 Retroperitoneal Germ Cell Tumor 4 116230 -NCIT:C4741 Neoplasm by Morphology 1 116231 -NCIT:C27134 Hematopoietic and Lymphoid Cell Neoplasm 2 116232 -NCIT:C27357 Refractory Hematologic Malignancy 3 116233 -NCIT:C148426 Refractory Leukemia 4 116234 -NCIT:C148431 Refractory Acute Leukemia 5 116235 -NCIT:C134319 Refractory Acute Myeloid Leukemia 6 116236 -NCIT:C174486 Refractory Acute Myeloid Leukemia Not Otherwise Specified 7 116237 -NCIT:C174511 Refractory Acute Monoblastic and Monocytic Leukemia 8 116238 -NCIT:C174512 Refractory Acute Myelomonocytic Leukemia 8 116239 -NCIT:C180897 Refractory Acute Myeloid Leukemia with Myelodysplasia-Related Changes 7 116240 -NCIT:C187449 Refractory Childhood Acute Myeloid Leukemia 7 116241 -NCIT:C136488 Refractory Acute Lymphoblastic Leukemia 6 116242 -NCIT:C122624 Refractory Childhood Acute Lymphoblastic Leukemia 7 116243 -NCIT:C126309 Refractory Adult Acute Lymphoblastic Leukemia 7 116244 -NCIT:C142812 Refractory B Acute Lymphoblastic Leukemia 7 116245 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 116246 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 116247 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 116248 -NCIT:C150510 Refractory T Acute Lymphoblastic Leukemia 7 116249 -NCIT:C151977 Refractory Burkitt Leukemia 6 116250 -NCIT:C172630 Refractory Acute Leukemia of Ambiguous Lineage 6 116251 -NCIT:C148430 Refractory Mixed Phenotype Acute Leukemia 7 116252 -NCIT:C173683 Refractory Acute Biphenotypic Leukemia 8 116253 -NCIT:C179205 Refractory Acute Bilineal Leukemia 8 116254 -NCIT:C173503 Refractory Acute Undifferentiated Leukemia 7 116255 -NCIT:C150044 Refractory Chronic Leukemia 5 116256 -NCIT:C150049 Refractory Chronic Myelomonocytic Leukemia 6 116257 -NCIT:C157691 Refractory T-Cell Prolymphocytic Leukemia 6 116258 -NCIT:C157693 Refractory Aggressive NK-Cell Leukemia 6 116259 -NCIT:C157697 Refractory B-Cell Prolymphocytic Leukemia 6 116260 -NCIT:C171064 Refractory Hairy Cell Leukemia Variant 6 116261 -NCIT:C177000 Refractory Sezary Syndrome 6 116262 -NCIT:C180986 Refractory T-Cell Large Granular Lymphocyte Leukemia 6 116263 -NCIT:C7885 Refractory Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 116264 -NCIT:C7886 Refractory Chronic Lymphocytic Leukemia 6 116265 -NCIT:C158152 Refractory Transformed Chronic Lymphocytic Leukemia 7 116266 -NCIT:C8030 Refractory Hairy Cell Leukemia 6 116267 -NCIT:C190787 Refractory Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 5 116268 -NCIT:C172280 Refractory Malignant Lymphoid Neoplasm 4 116269 -NCIT:C134154 Refractory Lymphoma 5 116270 -NCIT:C138014 Refractory B-Cell Lymphoma, Unclassifiable, with Features Intermediate between Diffuse Large B-Cell Lymphoma and Classic Hodgkin Lymphoma 6 116271 -NCIT:C138020 Refractory Central Nervous System Lymphoma 6 116272 -NCIT:C146989 Refractory Central Nervous System Non-Hodgkin Lymphoma 7 116273 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 8 116274 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 116275 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 116276 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 116277 -NCIT:C138022 Refractory Testicular Lymphoma 6 116278 -NCIT:C138024 Refractory Breast Lymphoma 6 116279 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 7 116280 -NCIT:C142877 Refractory Primary Cutaneous Lymphoma 6 116281 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 7 116282 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 7 116283 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 8 116284 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 8 116285 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 8 116286 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 8 116287 -NCIT:C8687 Refractory Mycosis Fungoides 8 116288 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 9 116289 -NCIT:C153177 Refractory Mediastinal Lymphoma 6 116290 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 7 116291 -NCIT:C157682 Refractory Primary Bone Lymphoma 6 116292 -NCIT:C160149 Refractory EBV-Related Lymphoma 6 116293 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 7 116294 -NCIT:C187197 Refractory Childhood Lymphoma 6 116295 -NCIT:C115458 Refractory Childhood Hodgkin Lymphoma 7 116296 -NCIT:C8701 Refractory Non-Hodgkin Lymphoma 6 116297 -NCIT:C140091 Refractory Transformed Non-Hodgkin Lymphoma 7 116298 -NCIT:C158150 Refractory Transformed B-Cell Non-Hodgkin Lymphoma 8 116299 -NCIT:C160240 Refractory Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 9 116300 -NCIT:C186484 Refractory Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 9 116301 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 10 116302 -NCIT:C165791 Refractory Transformed T-cell Non-Hodgkin Lymphoma 8 116303 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 9 116304 -NCIT:C146989 Refractory Central Nervous System Non-Hodgkin Lymphoma 7 116305 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 8 116306 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 116307 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 116308 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 116309 -NCIT:C151978 Refractory Lymphoblastic Lymphoma 7 116310 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 8 116311 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 8 116312 -NCIT:C156233 Refractory Aggressive Non-Hodgkin Lymphoma 7 116313 -NCIT:C178555 Refractory Aggressive B-Cell Non-Hodgkin Lymphoma 8 116314 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 116315 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 9 116316 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 9 116317 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 10 116318 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 10 116319 -NCIT:C8847 Refractory Burkitt Lymphoma 9 116320 -NCIT:C8862 Refractory Mantle Cell Lymphoma 9 116321 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 9 116322 -NCIT:C178556 Refractory Aggressive T-Cell Non-Hodgkin Lymphoma 8 116323 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 9 116324 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 116325 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 116326 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 116327 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 116328 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 9 116329 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 9 116330 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 9 116331 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 9 116332 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 9 116333 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 116334 -NCIT:C173046 Refractory Indolent Non-Hodgkin Lymphoma 7 116335 -NCIT:C148175 Refractory Indolent Adult Non-Hodgkin Lymphoma 8 116336 -NCIT:C183514 Refractory Indolent B-Cell Non-Hodgkin Lymphoma 8 116337 -NCIT:C143085 Refractory Marginal Zone Lymphoma 9 116338 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 10 116339 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 116340 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 10 116341 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 9 116342 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 9 116343 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 9 116344 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 10 116345 -NCIT:C183515 Refractory Indolent T-Cell Non-Hodgkin Lymphoma 8 116346 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 116347 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 116348 -NCIT:C8687 Refractory Mycosis Fungoides 9 116349 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 116350 -NCIT:C8664 Refractory T-Cell Non-Hodgkin Lymphoma 7 116351 -NCIT:C178556 Refractory Aggressive T-Cell Non-Hodgkin Lymphoma 8 116352 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 9 116353 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 116354 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 116355 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 116356 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 116357 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 9 116358 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 9 116359 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 9 116360 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 9 116361 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 9 116362 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 116363 -NCIT:C183515 Refractory Indolent T-Cell Non-Hodgkin Lymphoma 8 116364 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 116365 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 116366 -NCIT:C8687 Refractory Mycosis Fungoides 9 116367 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 116368 -NCIT:C8689 Refractory Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 8 116369 -NCIT:C148129 Refractory Mycosis Fungoides and Sezary Syndrome 9 116370 -NCIT:C177000 Refractory Sezary Syndrome 10 116371 -NCIT:C8687 Refractory Mycosis Fungoides 10 116372 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 116373 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 9 116374 -NCIT:C157690 Refractory NK-Cell Lymphoma, Unclassifiable 9 116375 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 116376 -NCIT:C165791 Refractory Transformed T-cell Non-Hodgkin Lymphoma 9 116377 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 116378 -NCIT:C168779 Refractory Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 9 116379 -NCIT:C168781 Refractory Follicular T-Cell Lymphoma 9 116380 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 9 116381 -NCIT:C8658 Refractory Anaplastic Large Cell Lymphoma 9 116382 -NCIT:C162689 Refractory Systemic Anaplastic Large Cell Lymphoma 10 116383 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 11 116384 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 116385 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 116386 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 9 116387 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 9 116388 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 9 116389 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 116390 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 116391 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 116392 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 116393 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 116394 -NCIT:C8687 Refractory Mycosis Fungoides 10 116395 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 116396 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 116397 -NCIT:C8842 Refractory B-Cell Non-Hodgkin Lymphoma 7 116398 -NCIT:C178555 Refractory Aggressive B-Cell Non-Hodgkin Lymphoma 8 116399 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 116400 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 9 116401 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 9 116402 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 10 116403 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 10 116404 -NCIT:C8847 Refractory Burkitt Lymphoma 9 116405 -NCIT:C8862 Refractory Mantle Cell Lymphoma 9 116406 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 9 116407 -NCIT:C183514 Refractory Indolent B-Cell Non-Hodgkin Lymphoma 8 116408 -NCIT:C143085 Refractory Marginal Zone Lymphoma 9 116409 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 10 116410 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 116411 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 10 116412 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 9 116413 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 9 116414 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 9 116415 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 10 116416 -NCIT:C7228 Refractory Mature B-Cell Non-Hodgkin Lymphoma 8 116417 -NCIT:C143085 Refractory Marginal Zone Lymphoma 9 116418 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 10 116419 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 116420 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 10 116421 -NCIT:C158150 Refractory Transformed B-Cell Non-Hodgkin Lymphoma 9 116422 -NCIT:C160240 Refractory Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 10 116423 -NCIT:C186484 Refractory Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 10 116424 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 11 116425 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 9 116426 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 10 116427 -NCIT:C8846 Refractory Small Lymphocytic Lymphoma 9 116428 -NCIT:C8847 Refractory Burkitt Lymphoma 9 116429 -NCIT:C8853 Refractory Diffuse Large B-Cell Lymphoma 9 116430 -NCIT:C138018 Refractory Extranodal Diffuse Large B-cell Lymphoma 10 116431 -NCIT:C138026 Refractory Intravascular Large B-Cell Lymphoma 10 116432 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 116433 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 116434 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 10 116435 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 116436 -NCIT:C157678 Refractory T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 10 116437 -NCIT:C157680 Refractory Primary Effusion Lymphoma 10 116438 -NCIT:C157684 Refractory Plasmablastic Lymphoma 10 116439 -NCIT:C160233 Refractory High Grade B-Cell Lymphoma 10 116440 -NCIT:C151979 Refractory High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 11 116441 -NCIT:C162453 Refractory High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 11 116442 -NCIT:C188789 Refractory High Grade B-Cell Lymphoma, Not Otherwise Specified 11 116443 -NCIT:C165241 Refractory Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 116444 -NCIT:C160238 Refractory Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 11 116445 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 11 116446 -NCIT:C182034 Refractory Immunoblastic Lymphoma 11 116447 -NCIT:C8927 Refractory Centroblastic Lymphoma 11 116448 -NCIT:C183142 Refractory Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 10 116449 -NCIT:C188791 Refractory ALK-Positive Large B-Cell Lymphoma 10 116450 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 116451 -NCIT:C8858 Refractory Follicular Lymphoma 9 116452 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 10 116453 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 10 116454 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 10 116455 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 11 116456 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 11 116457 -NCIT:C8862 Refractory Mantle Cell Lymphoma 9 116458 -NCIT:C8836 Refractory Hodgkin Lymphoma 6 116459 -NCIT:C115458 Refractory Childhood Hodgkin Lymphoma 7 116460 -NCIT:C133736 Refractory Classic Hodgkin Lymphoma 7 116461 -NCIT:C142982 Refractory Lymphocyte-Rich Classic Hodgkin Lymphoma 8 116462 -NCIT:C8650 Refractory Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 116463 -NCIT:C8833 Refractory Mixed Cellularity Classic Hodgkin Lymphoma 8 116464 -NCIT:C8838 Refractory Nodular Sclerosis Classic Hodgkin Lymphoma 8 116465 -NCIT:C7260 Refractory Nodular Lymphocyte Predominant Hodgkin Lymphoma 7 116466 -NCIT:C136488 Refractory Acute Lymphoblastic Leukemia 5 116467 -NCIT:C122624 Refractory Childhood Acute Lymphoblastic Leukemia 6 116468 -NCIT:C126309 Refractory Adult Acute Lymphoblastic Leukemia 6 116469 -NCIT:C142812 Refractory B Acute Lymphoblastic Leukemia 6 116470 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 7 116471 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 7 116472 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 7 116473 -NCIT:C150510 Refractory T Acute Lymphoblastic Leukemia 6 116474 -NCIT:C151977 Refractory Burkitt Leukemia 5 116475 -NCIT:C157475 Refractory Monomorphic Post-Transplant Lymphoproliferative Disorder 5 116476 -NCIT:C157697 Refractory B-Cell Prolymphocytic Leukemia 5 116477 -NCIT:C171064 Refractory Hairy Cell Leukemia Variant 5 116478 -NCIT:C172282 Refractory Chronic Lymphocytic Leukemia/Small Lymphocytic Lymphoma 5 116479 -NCIT:C7886 Refractory Chronic Lymphocytic Leukemia 6 116480 -NCIT:C158152 Refractory Transformed Chronic Lymphocytic Leukemia 7 116481 -NCIT:C8846 Refractory Small Lymphocytic Lymphoma 6 116482 -NCIT:C173411 Refractory Mature T-Cell and NK-Cell Neoplasm 5 116483 -NCIT:C157691 Refractory T-Cell Prolymphocytic Leukemia 6 116484 -NCIT:C157693 Refractory Aggressive NK-Cell Leukemia 6 116485 -NCIT:C180986 Refractory T-Cell Large Granular Lymphocyte Leukemia 6 116486 -NCIT:C8689 Refractory Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 6 116487 -NCIT:C148129 Refractory Mycosis Fungoides and Sezary Syndrome 7 116488 -NCIT:C177000 Refractory Sezary Syndrome 8 116489 -NCIT:C8687 Refractory Mycosis Fungoides 8 116490 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 9 116491 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 7 116492 -NCIT:C157690 Refractory NK-Cell Lymphoma, Unclassifiable 7 116493 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 7 116494 -NCIT:C165791 Refractory Transformed T-cell Non-Hodgkin Lymphoma 7 116495 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 8 116496 -NCIT:C168779 Refractory Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 7 116497 -NCIT:C168781 Refractory Follicular T-Cell Lymphoma 7 116498 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 7 116499 -NCIT:C8658 Refractory Anaplastic Large Cell Lymphoma 7 116500 -NCIT:C162689 Refractory Systemic Anaplastic Large Cell Lymphoma 8 116501 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 9 116502 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 8 116503 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 8 116504 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 7 116505 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 7 116506 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 7 116507 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 7 116508 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 8 116509 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 8 116510 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 8 116511 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 8 116512 -NCIT:C8687 Refractory Mycosis Fungoides 8 116513 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 9 116514 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 7 116515 -NCIT:C7813 Refractory Plasma Cell Neoplasm 5 116516 -NCIT:C133731 Refractory Primary Amyloidosis 6 116517 -NCIT:C174055 Refractory AL Amyloidosis 7 116518 -NCIT:C7024 Refractory Plasma Cell Myeloma 6 116519 -NCIT:C178375 Triple-Class Refractory Plasma Cell Myeloma 7 116520 -NCIT:C8030 Refractory Hairy Cell Leukemia 5 116521 -NCIT:C8696 Refractory T Lymphoblastic Leukemia/Lymphoma 5 116522 -NCIT:C150510 Refractory T Acute Lymphoblastic Leukemia 6 116523 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 6 116524 -NCIT:C172281 Refractory Myeloid Neoplasm 4 116525 -NCIT:C134319 Refractory Acute Myeloid Leukemia 5 116526 -NCIT:C174486 Refractory Acute Myeloid Leukemia Not Otherwise Specified 6 116527 -NCIT:C174511 Refractory Acute Monoblastic and Monocytic Leukemia 7 116528 -NCIT:C174512 Refractory Acute Myelomonocytic Leukemia 7 116529 -NCIT:C180897 Refractory Acute Myeloid Leukemia with Myelodysplasia-Related Changes 6 116530 -NCIT:C187449 Refractory Childhood Acute Myeloid Leukemia 6 116531 -NCIT:C148362 Refractory Myelodysplastic Syndrome 5 116532 -NCIT:C156104 Refractory Blastic Plasmacytoid Dendritic Cell Neoplasm 5 116533 -NCIT:C170816 Refractory Malignant Mastocytosis 5 116534 -NCIT:C170911 Refractory Myeloproliferative Neoplasm 5 116535 -NCIT:C171340 Refractory Primary Myelofibrosis 6 116536 -NCIT:C190787 Refractory Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 116537 -NCIT:C7885 Refractory Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 116538 -NCIT:C171339 Refractory Myelodysplastic/Myeloproliferative Neoplasm 5 116539 -NCIT:C150049 Refractory Chronic Myelomonocytic Leukemia 6 116540 -NCIT:C27358 Recurrent Hematologic Malignancy 3 116541 -NCIT:C148425 Recurrent Leukemia 4 116542 -NCIT:C148429 Recurrent Acute Leukemia 5 116543 -NCIT:C142810 Recurrent Acute Lymphoblastic Leukemia 6 116544 -NCIT:C142811 Recurrent B Acute Lymphoblastic Leukemia 7 116545 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 116546 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 116547 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 116548 -NCIT:C150131 Recurrent T Acute Lymphoblastic Leukemia 7 116549 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 116550 -NCIT:C7784 Recurrent Childhood Acute Lymphoblastic Leukemia 7 116551 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 116552 -NCIT:C7883 Recurrent Adult Acute Lymphoblastic Leukemia 7 116553 -NCIT:C148427 Recurrent Acute Myeloid Leukemia 6 116554 -NCIT:C125715 Recurrent Acute Myeloid Leukemia with Myelodysplasia-Related Changes 7 116555 -NCIT:C156720 Recurrent Acute Myeloid Leukemia with Multilineage Dysplasia 8 116556 -NCIT:C156716 Recurrent Acute Myeloid Leukemia Not Otherwise Specified 7 116557 -NCIT:C156717 Recurrent Acute Myelomonocytic Leukemia 8 116558 -NCIT:C156722 Recurrent Acute Monoblastic and Monocytic Leukemia 8 116559 -NCIT:C156723 Recurrent Acute Erythroid Leukemia 8 116560 -NCIT:C156731 Recurrent Acute Megakaryoblastic Leukemia 8 116561 -NCIT:C156718 Recurrent Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 7 116562 -NCIT:C156719 Recurrent Acute Myeloid Leukemia with t (9;11) (p21.3; q23.3); MLLT3-MLL 8 116563 -NCIT:C169107 Recurrent Acute Promyelocytic Leukemia with PML-RARA 8 116564 -NCIT:C7882 Recurrent Adult Acute Myeloid Leukemia 7 116565 -NCIT:C9068 Recurrent Childhood Acute Myeloid Leukemia 7 116566 -NCIT:C151976 Recurrent Burkitt Leukemia 6 116567 -NCIT:C172626 Recurrent Acute Leukemia of Ambiguous Lineage 6 116568 -NCIT:C141446 Recurrent Acute Undifferentiated Leukemia 7 116569 -NCIT:C148423 Recurrent Mixed Phenotype Acute Leukemia 7 116570 -NCIT:C141445 Recurrent Acute Biphenotypic Leukemia 8 116571 -NCIT:C179204 Recurrent Acute Bilineal Leukemia 8 116572 -NCIT:C150043 Recurrent Chronic Leukemia 5 116573 -NCIT:C142882 Recurrent Hairy Cell Leukemia 6 116574 -NCIT:C150048 Recurrent Chronic Myelomonocytic Leukemia 6 116575 -NCIT:C150133 Recurrent T-Cell Prolymphocytic Leukemia 6 116576 -NCIT:C157692 Recurrent Aggressive NK-Cell Leukemia 6 116577 -NCIT:C158081 Recurrent B-Cell Prolymphocytic Leukemia 6 116578 -NCIT:C171065 Recurrent Hairy Cell Leukemia Variant 6 116579 -NCIT:C176999 Recurrent Sezary Syndrome 6 116580 -NCIT:C180985 Recurrent T-Cell Large Granular Lymphocyte Leukemia 6 116581 -NCIT:C8645 Recurrent Chronic Lymphocytic Leukemia 6 116582 -NCIT:C158151 Recurrent Transformed Chronic Lymphocytic Leukemia 7 116583 -NCIT:C9070 Recurrent Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 116584 -NCIT:C190786 Recurrent Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 5 116585 -NCIT:C172132 Recurrent Myeloid Neoplasm 4 116586 -NCIT:C148363 Recurrent Myelodysplastic Syndrome 5 116587 -NCIT:C148427 Recurrent Acute Myeloid Leukemia 5 116588 -NCIT:C125715 Recurrent Acute Myeloid Leukemia with Myelodysplasia-Related Changes 6 116589 -NCIT:C156720 Recurrent Acute Myeloid Leukemia with Multilineage Dysplasia 7 116590 -NCIT:C156716 Recurrent Acute Myeloid Leukemia Not Otherwise Specified 6 116591 -NCIT:C156717 Recurrent Acute Myelomonocytic Leukemia 7 116592 -NCIT:C156722 Recurrent Acute Monoblastic and Monocytic Leukemia 7 116593 -NCIT:C156723 Recurrent Acute Erythroid Leukemia 7 116594 -NCIT:C156731 Recurrent Acute Megakaryoblastic Leukemia 7 116595 -NCIT:C156718 Recurrent Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 6 116596 -NCIT:C156719 Recurrent Acute Myeloid Leukemia with t (9;11) (p21.3; q23.3); MLLT3-MLL 7 116597 -NCIT:C169107 Recurrent Acute Promyelocytic Leukemia with PML-RARA 7 116598 -NCIT:C7882 Recurrent Adult Acute Myeloid Leukemia 6 116599 -NCIT:C9068 Recurrent Childhood Acute Myeloid Leukemia 6 116600 -NCIT:C156103 Recurrent Blastic Plasmacytoid Dendritic Cell Neoplasm 5 116601 -NCIT:C166142 Recurrent Myeloproliferative Neoplasm 5 116602 -NCIT:C179203 Recurrent Primary Myelofibrosis 6 116603 -NCIT:C190786 Recurrent Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 116604 -NCIT:C9070 Recurrent Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 116605 -NCIT:C166143 Recurrent Myelodysplastic/Myeloproliferative Neoplasm 5 116606 -NCIT:C150048 Recurrent Chronic Myelomonocytic Leukemia 6 116607 -NCIT:C170817 Recurrent Malignant Mastocytosis 5 116608 -NCIT:C172133 Recurrent Malignant Lymphoid Neoplasm 4 116609 -NCIT:C131873 Recurrent Chronic Lymphocytic Leukemia/Small Lymphocytic Lymphoma 5 116610 -NCIT:C8154 Recurrent Small Lymphocytic Lymphoma 6 116611 -NCIT:C8645 Recurrent Chronic Lymphocytic Leukemia 6 116612 -NCIT:C158151 Recurrent Transformed Chronic Lymphocytic Leukemia 7 116613 -NCIT:C134157 Recurrent Lymphoma 5 116614 -NCIT:C138013 Recurrent B-Cell Lymphoma, Unclassifiable, with Features Intermediate between Diffuse Large B-Cell Lymphoma and Classic Hodgkin Lymphoma 6 116615 -NCIT:C138019 Recurrent Central Nervous System Lymphoma 6 116616 -NCIT:C146990 Recurrent Central Nervous System Non-Hodgkin Lymphoma 7 116617 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 8 116618 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 116619 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 116620 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 116621 -NCIT:C138021 Recurrent Testicular Lymphoma 6 116622 -NCIT:C138023 Recurrent Breast Lymphoma 6 116623 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 7 116624 -NCIT:C142876 Recurrent Primary Cutaneous Lymphoma 6 116625 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 7 116626 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 7 116627 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 8 116628 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 8 116629 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 8 116630 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 8 116631 -NCIT:C8686 Recurrent Mycosis Fungoides 8 116632 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 9 116633 -NCIT:C147863 Recurrent EBV-Related Lymphoma 6 116634 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 7 116635 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 7 116636 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 8 116637 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 8 116638 -NCIT:C153175 Recurrent Mediastinal Lymphoma 6 116639 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 7 116640 -NCIT:C157681 Recurrent Primary Bone Lymphoma 6 116641 -NCIT:C187196 Recurrent Childhood Lymphoma 6 116642 -NCIT:C115369 Recurrent Childhood Non-Hodgkin Lymphoma 7 116643 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 8 116644 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 8 116645 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 8 116646 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 8 116647 -NCIT:C8059 Recurrent Childhood Hodgkin Lymphoma 7 116648 -NCIT:C4937 Recurrent Hodgkin Lymphoma 6 116649 -NCIT:C133592 Recurrent Classic Hodgkin Lymphoma 7 116650 -NCIT:C136971 Recurrent Lymphocyte-Rich Classic Hodgkin Lymphoma 8 116651 -NCIT:C8649 Recurrent Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 116652 -NCIT:C8832 Recurrent Mixed Cellularity Classic Hodgkin Lymphoma 8 116653 -NCIT:C8837 Recurrent Nodular Sclerosis Classic Hodgkin Lymphoma 8 116654 -NCIT:C7259 Recurrent Nodular Lymphocyte Predominant Hodgkin Lymphoma 7 116655 -NCIT:C7789 Recurrent Adult Hodgkin Lymphoma 7 116656 -NCIT:C8059 Recurrent Childhood Hodgkin Lymphoma 7 116657 -NCIT:C9251 Recurrent Non-Hodgkin Lymphoma 6 116658 -NCIT:C115369 Recurrent Childhood Non-Hodgkin Lymphoma 7 116659 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 8 116660 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 8 116661 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 8 116662 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 8 116663 -NCIT:C146990 Recurrent Central Nervous System Non-Hodgkin Lymphoma 7 116664 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 8 116665 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 116666 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 116667 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 116668 -NCIT:C156232 Recurrent Aggressive Non-Hodgkin Lymphoma 7 116669 -NCIT:C178553 Recurrent Aggressive B-Cell Non-Hodgkin Lymphoma 8 116670 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 116671 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 9 116672 -NCIT:C5008 Recurrent Burkitt Lymphoma 9 116673 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 10 116674 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 10 116675 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 9 116676 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 116677 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 10 116678 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 9 116679 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 10 116680 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 10 116681 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 9 116682 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 9 116683 -NCIT:C178554 Recurrent Aggressive T-Cell Non-Hodgkin Lymphoma 8 116684 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 116685 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 9 116686 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 116687 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 116688 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 9 116689 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 116690 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 116691 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 9 116692 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 9 116693 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 9 116694 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 9 116695 -NCIT:C8490 Recurrent Aggressive Adult Non-Hodgkin Lymphoma 8 116696 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 9 116697 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 9 116698 -NCIT:C8164 Recurrent Adult Lymphoblastic Lymphoma 9 116699 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 9 116700 -NCIT:C181796 Recurrent Indolent Non-Hodgkin Lymphoma 7 116701 -NCIT:C183512 Recurrent Indolent B-Cell Non-Hodgkin Lymphoma 8 116702 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 9 116703 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 10 116704 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 116705 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 10 116706 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 9 116707 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 9 116708 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 9 116709 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 10 116710 -NCIT:C183513 Recurrent Indolent T-Cell Non-Hodgkin Lymphoma 8 116711 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 116712 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 116713 -NCIT:C8686 Recurrent Mycosis Fungoides 9 116714 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 116715 -NCIT:C8488 Recurrent Indolent Adult Non-Hodgkin Lymphoma 8 116716 -NCIT:C8098 Recurrent Adult Non-Hodgkin Lymphoma 7 116717 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 8 116718 -NCIT:C8488 Recurrent Indolent Adult Non-Hodgkin Lymphoma 8 116719 -NCIT:C8490 Recurrent Aggressive Adult Non-Hodgkin Lymphoma 8 116720 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 9 116721 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 9 116722 -NCIT:C8164 Recurrent Adult Lymphoblastic Lymphoma 9 116723 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 9 116724 -NCIT:C8663 Recurrent T-Cell Non-Hodgkin Lymphoma 7 116725 -NCIT:C178554 Recurrent Aggressive T-Cell Non-Hodgkin Lymphoma 8 116726 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 116727 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 9 116728 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 116729 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 116730 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 9 116731 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 116732 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 116733 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 9 116734 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 9 116735 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 9 116736 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 9 116737 -NCIT:C183513 Recurrent Indolent T-Cell Non-Hodgkin Lymphoma 8 116738 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 116739 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 116740 -NCIT:C8686 Recurrent Mycosis Fungoides 9 116741 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 116742 -NCIT:C8688 Recurrent Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 8 116743 -NCIT:C115439 Recurrent Mycosis Fungoides and Sezary Syndrome 9 116744 -NCIT:C176999 Recurrent Sezary Syndrome 10 116745 -NCIT:C8686 Recurrent Mycosis Fungoides 10 116746 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 116747 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 116748 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 9 116749 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 116750 -NCIT:C157689 Recurrent NK-Cell Lymphoma, Unclassifiable 9 116751 -NCIT:C165789 Recurrent Transformed T-cell Non-Hodgkin Lymphoma 9 116752 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 116753 -NCIT:C168778 Recurrent Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 9 116754 -NCIT:C168780 Recurrent Follicular T-Cell Lymphoma 9 116755 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 9 116756 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 116757 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 116758 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 116759 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 116760 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 116761 -NCIT:C8686 Recurrent Mycosis Fungoides 10 116762 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 116763 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 9 116764 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 9 116765 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 9 116766 -NCIT:C9250 Recurrent Anaplastic Large Cell Lymphoma 9 116767 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 10 116768 -NCIT:C162688 Recurrent Systemic Anaplastic Large Cell Lymphoma 10 116769 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 11 116770 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 116771 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 116772 -NCIT:C8702 Recurrent Transformed Non-Hodgkin Lymphoma 7 116773 -NCIT:C158149 Recurrent Transformed B-Cell Non-Hodgkin Lymphoma 8 116774 -NCIT:C160232 Recurrent Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 9 116775 -NCIT:C186483 Recurrent Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 9 116776 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 10 116777 -NCIT:C165789 Recurrent Transformed T-cell Non-Hodgkin Lymphoma 8 116778 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 9 116779 -NCIT:C8841 Recurrent B-Cell Non-Hodgkin Lymphoma 7 116780 -NCIT:C165799 Recurrent Mature B-Cell Non-Hodgkin Lymphoma 8 116781 -NCIT:C158149 Recurrent Transformed B-Cell Non-Hodgkin Lymphoma 9 116782 -NCIT:C160232 Recurrent Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 10 116783 -NCIT:C186483 Recurrent Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 10 116784 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 11 116785 -NCIT:C5007 Recurrent Follicular Lymphoma 9 116786 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 10 116787 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 10 116788 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 10 116789 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 11 116790 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 11 116791 -NCIT:C5008 Recurrent Burkitt Lymphoma 9 116792 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 10 116793 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 10 116794 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 9 116795 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 10 116796 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 116797 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 10 116798 -NCIT:C8154 Recurrent Small Lymphocytic Lymphoma 9 116799 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 9 116800 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 9 116801 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 10 116802 -NCIT:C8852 Recurrent Diffuse Large B-Cell Lymphoma 9 116803 -NCIT:C138015 Recurrent Extranodal Diffuse Large B-cell Lymphoma 10 116804 -NCIT:C138025 Recurrent Intravascular Large B-Cell Lymphoma 10 116805 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 116806 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 116807 -NCIT:C156696 Recurrent T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 10 116808 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 10 116809 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 116810 -NCIT:C157679 Recurrent Primary Effusion Lymphoma 10 116811 -NCIT:C157683 Recurrent Plasmablastic Lymphoma 10 116812 -NCIT:C160229 Recurrent High Grade B-Cell Lymphoma 10 116813 -NCIT:C151980 Recurrent High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 11 116814 -NCIT:C162451 Recurrent High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 11 116815 -NCIT:C188788 Recurrent High Grade B-Cell Lymphoma, Not Otherwise Specified 11 116816 -NCIT:C165240 Recurrent Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 116817 -NCIT:C160230 Recurrent Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 11 116818 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 11 116819 -NCIT:C182035 Recurrent Immunoblastic Lymphoma 11 116820 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 12 116821 -NCIT:C8926 Recurrent Centroblastic Lymphoma 11 116822 -NCIT:C183140 Recurrent Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 10 116823 -NCIT:C188790 Recurrent ALK-Positive Large B-Cell Lymphoma 10 116824 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 10 116825 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 11 116826 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 11 116827 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 116828 -NCIT:C178553 Recurrent Aggressive B-Cell Non-Hodgkin Lymphoma 8 116829 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 116830 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 9 116831 -NCIT:C5008 Recurrent Burkitt Lymphoma 9 116832 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 10 116833 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 10 116834 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 9 116835 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 116836 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 10 116837 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 9 116838 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 10 116839 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 10 116840 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 9 116841 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 9 116842 -NCIT:C183512 Recurrent Indolent B-Cell Non-Hodgkin Lymphoma 8 116843 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 9 116844 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 10 116845 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 116846 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 10 116847 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 9 116848 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 9 116849 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 9 116850 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 10 116851 -NCIT:C142810 Recurrent Acute Lymphoblastic Leukemia 5 116852 -NCIT:C142811 Recurrent B Acute Lymphoblastic Leukemia 6 116853 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 7 116854 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 7 116855 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 7 116856 -NCIT:C150131 Recurrent T Acute Lymphoblastic Leukemia 6 116857 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 7 116858 -NCIT:C7784 Recurrent Childhood Acute Lymphoblastic Leukemia 6 116859 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 7 116860 -NCIT:C7883 Recurrent Adult Acute Lymphoblastic Leukemia 6 116861 -NCIT:C142882 Recurrent Hairy Cell Leukemia 5 116862 -NCIT:C151976 Recurrent Burkitt Leukemia 5 116863 -NCIT:C157474 Recurrent Monomorphic Post-Transplant Lymphoproliferative Disorder 5 116864 -NCIT:C158081 Recurrent B-Cell Prolymphocytic Leukemia 5 116865 -NCIT:C171065 Recurrent Hairy Cell Leukemia Variant 5 116866 -NCIT:C172289 Recurrent Plasma Cell Neoplasm 5 116867 -NCIT:C133732 Recurrent Primary Amyloidosis 6 116868 -NCIT:C174054 Recurrent AL Amyloidosis 7 116869 -NCIT:C7025 Recurrent Plasma Cell Myeloma 6 116870 -NCIT:C173409 Recurrent Mature T-Cell and NK-Cell Neoplasm 5 116871 -NCIT:C150133 Recurrent T-Cell Prolymphocytic Leukemia 6 116872 -NCIT:C157692 Recurrent Aggressive NK-Cell Leukemia 6 116873 -NCIT:C180985 Recurrent T-Cell Large Granular Lymphocyte Leukemia 6 116874 -NCIT:C8688 Recurrent Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 6 116875 -NCIT:C115439 Recurrent Mycosis Fungoides and Sezary Syndrome 7 116876 -NCIT:C176999 Recurrent Sezary Syndrome 8 116877 -NCIT:C8686 Recurrent Mycosis Fungoides 8 116878 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 9 116879 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 7 116880 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 7 116881 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 7 116882 -NCIT:C157689 Recurrent NK-Cell Lymphoma, Unclassifiable 7 116883 -NCIT:C165789 Recurrent Transformed T-cell Non-Hodgkin Lymphoma 7 116884 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 8 116885 -NCIT:C168778 Recurrent Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 7 116886 -NCIT:C168780 Recurrent Follicular T-Cell Lymphoma 7 116887 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 7 116888 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 7 116889 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 8 116890 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 8 116891 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 8 116892 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 8 116893 -NCIT:C8686 Recurrent Mycosis Fungoides 8 116894 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 9 116895 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 7 116896 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 7 116897 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 7 116898 -NCIT:C9250 Recurrent Anaplastic Large Cell Lymphoma 7 116899 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 8 116900 -NCIT:C162688 Recurrent Systemic Anaplastic Large Cell Lymphoma 8 116901 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 9 116902 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 8 116903 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 8 116904 -NCIT:C8695 Recurrent T Lymphoblastic Leukemia/Lymphoma 5 116905 -NCIT:C150131 Recurrent T Acute Lymphoblastic Leukemia 6 116906 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 7 116907 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 6 116908 -NCIT:C27639 Transplant-Related Hematologic Malignancy 3 116909 -NCIT:C27695 EBV-Related Clonal Post-Transplant Lymphoproliferative Disorder 4 116910 -NCIT:C7239 Hodgkin-Like Post-Transplant Lymphoproliferative Disorder 5 116911 -NCIT:C7243 Classic Hodgkin Lymphoma Type Post-Transplant Lymphoproliferative Disorder 5 116912 -NCIT:C7233 Monomorphic Post-Transplant Lymphoproliferative Disorder 4 116913 -NCIT:C157474 Recurrent Monomorphic Post-Transplant Lymphoproliferative Disorder 5 116914 -NCIT:C157475 Refractory Monomorphic Post-Transplant Lymphoproliferative Disorder 5 116915 -NCIT:C7237 Monomorphic B-Cell Post-Transplant Lymphoproliferative Disorder 5 116916 -NCIT:C7240 Plasma Cell Post-Transplant Lymphoproliferative Disorder 6 116917 -NCIT:C7241 Plasmacytoma-Like Post-Transplant Lymphoproliferative Disorder 7 116918 -NCIT:C7242 Plasma Cell Myeloma Post-Transplant Lymphoproliferative Disorder 7 116919 -NCIT:C7244 Burkitt Lymphoma Post-Transplant Lymphoproliferative Disorder 6 116920 -NCIT:C7245 Burkitt-Like Lymphoma Post-Transplant Lymphoproliferative Disorder 7 116921 -NCIT:C7246 Diffuse Large B-Cell Lymphoma Post-Transplant Lymphoproliferative Disorder 6 116922 -NCIT:C7247 Anaplastic Lymphoma Post-Transplant Lymphoproliferative Disorder 7 116923 -NCIT:C7248 Centroblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 7 116924 -NCIT:C7249 Immunoblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 7 116925 -NCIT:C7238 Monomorphic T/NK-Cell Post-Transplant Lymphoproliferative Disorder 5 116926 -NCIT:C3161 Leukemia 3 116927 -NCIT:C148425 Recurrent Leukemia 4 116928 -NCIT:C148429 Recurrent Acute Leukemia 5 116929 -NCIT:C142810 Recurrent Acute Lymphoblastic Leukemia 6 116930 -NCIT:C142811 Recurrent B Acute Lymphoblastic Leukemia 7 116931 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 116932 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 116933 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 116934 -NCIT:C150131 Recurrent T Acute Lymphoblastic Leukemia 7 116935 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 116936 -NCIT:C7784 Recurrent Childhood Acute Lymphoblastic Leukemia 7 116937 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 116938 -NCIT:C7883 Recurrent Adult Acute Lymphoblastic Leukemia 7 116939 -NCIT:C148427 Recurrent Acute Myeloid Leukemia 6 116940 -NCIT:C125715 Recurrent Acute Myeloid Leukemia with Myelodysplasia-Related Changes 7 116941 -NCIT:C156720 Recurrent Acute Myeloid Leukemia with Multilineage Dysplasia 8 116942 -NCIT:C156716 Recurrent Acute Myeloid Leukemia Not Otherwise Specified 7 116943 -NCIT:C156717 Recurrent Acute Myelomonocytic Leukemia 8 116944 -NCIT:C156722 Recurrent Acute Monoblastic and Monocytic Leukemia 8 116945 -NCIT:C156723 Recurrent Acute Erythroid Leukemia 8 116946 -NCIT:C156731 Recurrent Acute Megakaryoblastic Leukemia 8 116947 -NCIT:C156718 Recurrent Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 7 116948 -NCIT:C156719 Recurrent Acute Myeloid Leukemia with t (9;11) (p21.3; q23.3); MLLT3-MLL 8 116949 -NCIT:C169107 Recurrent Acute Promyelocytic Leukemia with PML-RARA 8 116950 -NCIT:C7882 Recurrent Adult Acute Myeloid Leukemia 7 116951 -NCIT:C9068 Recurrent Childhood Acute Myeloid Leukemia 7 116952 -NCIT:C151976 Recurrent Burkitt Leukemia 6 116953 -NCIT:C172626 Recurrent Acute Leukemia of Ambiguous Lineage 6 116954 -NCIT:C141446 Recurrent Acute Undifferentiated Leukemia 7 116955 -NCIT:C148423 Recurrent Mixed Phenotype Acute Leukemia 7 116956 -NCIT:C141445 Recurrent Acute Biphenotypic Leukemia 8 116957 -NCIT:C179204 Recurrent Acute Bilineal Leukemia 8 116958 -NCIT:C150043 Recurrent Chronic Leukemia 5 116959 -NCIT:C142882 Recurrent Hairy Cell Leukemia 6 116960 -NCIT:C150048 Recurrent Chronic Myelomonocytic Leukemia 6 116961 -NCIT:C150133 Recurrent T-Cell Prolymphocytic Leukemia 6 116962 -NCIT:C157692 Recurrent Aggressive NK-Cell Leukemia 6 116963 -NCIT:C158081 Recurrent B-Cell Prolymphocytic Leukemia 6 116964 -NCIT:C171065 Recurrent Hairy Cell Leukemia Variant 6 116965 -NCIT:C176999 Recurrent Sezary Syndrome 6 116966 -NCIT:C180985 Recurrent T-Cell Large Granular Lymphocyte Leukemia 6 116967 -NCIT:C8645 Recurrent Chronic Lymphocytic Leukemia 6 116968 -NCIT:C158151 Recurrent Transformed Chronic Lymphocytic Leukemia 7 116969 -NCIT:C9070 Recurrent Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 116970 -NCIT:C190786 Recurrent Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 5 116971 -NCIT:C148426 Refractory Leukemia 4 116972 -NCIT:C148431 Refractory Acute Leukemia 5 116973 -NCIT:C134319 Refractory Acute Myeloid Leukemia 6 116974 -NCIT:C174486 Refractory Acute Myeloid Leukemia Not Otherwise Specified 7 116975 -NCIT:C174511 Refractory Acute Monoblastic and Monocytic Leukemia 8 116976 -NCIT:C174512 Refractory Acute Myelomonocytic Leukemia 8 116977 -NCIT:C180897 Refractory Acute Myeloid Leukemia with Myelodysplasia-Related Changes 7 116978 -NCIT:C187449 Refractory Childhood Acute Myeloid Leukemia 7 116979 -NCIT:C136488 Refractory Acute Lymphoblastic Leukemia 6 116980 -NCIT:C122624 Refractory Childhood Acute Lymphoblastic Leukemia 7 116981 -NCIT:C126309 Refractory Adult Acute Lymphoblastic Leukemia 7 116982 -NCIT:C142812 Refractory B Acute Lymphoblastic Leukemia 7 116983 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 116984 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 116985 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 116986 -NCIT:C150510 Refractory T Acute Lymphoblastic Leukemia 7 116987 -NCIT:C151977 Refractory Burkitt Leukemia 6 116988 -NCIT:C172630 Refractory Acute Leukemia of Ambiguous Lineage 6 116989 -NCIT:C148430 Refractory Mixed Phenotype Acute Leukemia 7 116990 -NCIT:C173683 Refractory Acute Biphenotypic Leukemia 8 116991 -NCIT:C179205 Refractory Acute Bilineal Leukemia 8 116992 -NCIT:C173503 Refractory Acute Undifferentiated Leukemia 7 116993 -NCIT:C150044 Refractory Chronic Leukemia 5 116994 -NCIT:C150049 Refractory Chronic Myelomonocytic Leukemia 6 116995 -NCIT:C157691 Refractory T-Cell Prolymphocytic Leukemia 6 116996 -NCIT:C157693 Refractory Aggressive NK-Cell Leukemia 6 116997 -NCIT:C157697 Refractory B-Cell Prolymphocytic Leukemia 6 116998 -NCIT:C171064 Refractory Hairy Cell Leukemia Variant 6 116999 -NCIT:C177000 Refractory Sezary Syndrome 6 117000 -NCIT:C180986 Refractory T-Cell Large Granular Lymphocyte Leukemia 6 117001 -NCIT:C7885 Refractory Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 117002 -NCIT:C7886 Refractory Chronic Lymphocytic Leukemia 6 117003 -NCIT:C158152 Refractory Transformed Chronic Lymphocytic Leukemia 7 117004 -NCIT:C8030 Refractory Hairy Cell Leukemia 6 117005 -NCIT:C190787 Refractory Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 5 117006 -NCIT:C26814 Radiation-Related Leukemia 4 117007 -NCIT:C3169 Mast Cell Leukemia 4 117008 -NCIT:C188031 Mast Cell Leukemia Associated with Another Hematological Neoplasm 5 117009 -NCIT:C3172 Myeloid Leukemia 4 117010 -NCIT:C3171 Acute Myeloid Leukemia 5 117011 -NCIT:C122687 Cytogenetically Normal Acute Myeloid Leukemia 6 117012 -NCIT:C186730 Therapy-Related Cytogenetically Normal Acute Myeloid Leukemia 7 117013 -NCIT:C134319 Refractory Acute Myeloid Leukemia 6 117014 -NCIT:C174486 Refractory Acute Myeloid Leukemia Not Otherwise Specified 7 117015 -NCIT:C174511 Refractory Acute Monoblastic and Monocytic Leukemia 8 117016 -NCIT:C174512 Refractory Acute Myelomonocytic Leukemia 8 117017 -NCIT:C180897 Refractory Acute Myeloid Leukemia with Myelodysplasia-Related Changes 7 117018 -NCIT:C187449 Refractory Childhood Acute Myeloid Leukemia 7 117019 -NCIT:C148427 Recurrent Acute Myeloid Leukemia 6 117020 -NCIT:C125715 Recurrent Acute Myeloid Leukemia with Myelodysplasia-Related Changes 7 117021 -NCIT:C156720 Recurrent Acute Myeloid Leukemia with Multilineage Dysplasia 8 117022 -NCIT:C156716 Recurrent Acute Myeloid Leukemia Not Otherwise Specified 7 117023 -NCIT:C156717 Recurrent Acute Myelomonocytic Leukemia 8 117024 -NCIT:C156722 Recurrent Acute Monoblastic and Monocytic Leukemia 8 117025 -NCIT:C156723 Recurrent Acute Erythroid Leukemia 8 117026 -NCIT:C156731 Recurrent Acute Megakaryoblastic Leukemia 8 117027 -NCIT:C156718 Recurrent Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 7 117028 -NCIT:C156719 Recurrent Acute Myeloid Leukemia with t (9;11) (p21.3; q23.3); MLLT3-MLL 8 117029 -NCIT:C169107 Recurrent Acute Promyelocytic Leukemia with PML-RARA 8 117030 -NCIT:C7882 Recurrent Adult Acute Myeloid Leukemia 7 117031 -NCIT:C9068 Recurrent Childhood Acute Myeloid Leukemia 7 117032 -NCIT:C25765 Secondary Acute Myeloid Leukemia 6 117033 -NCIT:C172129 Acute Myeloid Leukemia Arising from Previous Myeloproliferative Neoplasm 7 117034 -NCIT:C172130 Acute Myeloid Leukemia Arising from Previous Myelodysplastic/Myeloproliferative Neoplasm 7 117035 -NCIT:C27931 Benzene-Related Acute Myeloid Leukemia 7 117036 -NCIT:C4037 Acute Myeloid Leukemia Arising from Previous Myelodysplastic Syndrome 7 117037 -NCIT:C8252 Therapy-Related Acute Myeloid Leukemia 7 117038 -NCIT:C186730 Therapy-Related Cytogenetically Normal Acute Myeloid Leukemia 8 117039 -NCIT:C27754 Alkylating Agent-Related Acute Myeloid Leukemia 8 117040 -NCIT:C27755 Topoisomerase II Inhibitor-Related Acute Myeloid Leukemia 8 117041 -NCIT:C27753 Acute Myeloid Leukemia Not Otherwise Specified 6 117042 -NCIT:C122625 Childhood Acute Myeloid Leukemia Not Otherwise Specified 7 117043 -NCIT:C7940 Childhood Acute Monoblastic and Monocytic Leukemia 8 117044 -NCIT:C9162 Childhood Acute Monoblastic Leukemia 9 117045 -NCIT:C9163 Childhood Acute Monocytic Leukemia 9 117046 -NCIT:C7970 Childhood Acute Myelomonocytic Leukemia 8 117047 -NCIT:C7971 Childhood Acute Basophilic Leukemia 8 117048 -NCIT:C7972 Childhood Acute Megakaryoblastic Leukemia 8 117049 -NCIT:C8304 Childhood Acute Myeloid Leukemia with Minimal Differentiation 8 117050 -NCIT:C9158 Childhood Acute Myeloid Leukemia without Maturation 8 117051 -NCIT:C9164 Childhood Acute Erythroid Leukemia 8 117052 -NCIT:C9381 Childhood Acute Myeloid Leukemia with Maturation 8 117053 -NCIT:C156716 Recurrent Acute Myeloid Leukemia Not Otherwise Specified 7 117054 -NCIT:C156717 Recurrent Acute Myelomonocytic Leukemia 8 117055 -NCIT:C156722 Recurrent Acute Monoblastic and Monocytic Leukemia 8 117056 -NCIT:C156723 Recurrent Acute Erythroid Leukemia 8 117057 -NCIT:C156731 Recurrent Acute Megakaryoblastic Leukemia 8 117058 -NCIT:C174486 Refractory Acute Myeloid Leukemia Not Otherwise Specified 7 117059 -NCIT:C174511 Refractory Acute Monoblastic and Monocytic Leukemia 8 117060 -NCIT:C174512 Refractory Acute Myelomonocytic Leukemia 8 117061 -NCIT:C3164 Acute Basophilic Leukemia 7 117062 -NCIT:C7964 Adult Acute Basophilic Leukemia 8 117063 -NCIT:C7971 Childhood Acute Basophilic Leukemia 8 117064 -NCIT:C3170 Acute Megakaryoblastic Leukemia 7 117065 -NCIT:C156731 Recurrent Acute Megakaryoblastic Leukemia 8 117066 -NCIT:C7965 Adult Acute Megakaryoblastic Leukemia 8 117067 -NCIT:C7972 Childhood Acute Megakaryoblastic Leukemia 8 117068 -NCIT:C3249 Acute Myeloid Leukemia without Maturation 7 117069 -NCIT:C9158 Childhood Acute Myeloid Leukemia without Maturation 8 117070 -NCIT:C9380 Adult Acute Myeloid Leukemia without Maturation 8 117071 -NCIT:C3250 Acute Myeloid Leukemia with Maturation 7 117072 -NCIT:C7961 Adult Acute Myeloid Leukemia with Maturation 8 117073 -NCIT:C9381 Childhood Acute Myeloid Leukemia with Maturation 8 117074 -NCIT:C4344 Acute Panmyelosis with Myelofibrosis 7 117075 -NCIT:C7318 Acute Monoblastic and Monocytic Leukemia 7 117076 -NCIT:C156722 Recurrent Acute Monoblastic and Monocytic Leukemia 8 117077 -NCIT:C174511 Refractory Acute Monoblastic and Monocytic Leukemia 8 117078 -NCIT:C4861 Acute Monocytic Leukemia 8 117079 -NCIT:C5630 Aleukemic Monocytic Leukemia Cutis 9 117080 -NCIT:C8263 Adult Acute Monocytic Leukemia 9 117081 -NCIT:C9163 Childhood Acute Monocytic Leukemia 9 117082 -NCIT:C7171 Acute Monoblastic Leukemia 8 117083 -NCIT:C9156 Adult Acute Monoblastic Leukemia 9 117084 -NCIT:C9162 Childhood Acute Monoblastic Leukemia 9 117085 -NCIT:C7319 Adult Acute Monoblastic and Monocytic Leukemia 8 117086 -NCIT:C8263 Adult Acute Monocytic Leukemia 9 117087 -NCIT:C9156 Adult Acute Monoblastic Leukemia 9 117088 -NCIT:C7940 Childhood Acute Monoblastic and Monocytic Leukemia 8 117089 -NCIT:C9162 Childhood Acute Monoblastic Leukemia 9 117090 -NCIT:C9163 Childhood Acute Monocytic Leukemia 9 117091 -NCIT:C7463 Acute Myelomonocytic Leukemia 7 117092 -NCIT:C156717 Recurrent Acute Myelomonocytic Leukemia 8 117093 -NCIT:C174512 Refractory Acute Myelomonocytic Leukemia 8 117094 -NCIT:C42779 Acute Myelomonocytic Leukemia without Abnormal Eosinophils 8 117095 -NCIT:C7962 Adult Acute Myelomonocytic Leukemia 8 117096 -NCIT:C7970 Childhood Acute Myelomonocytic Leukemia 8 117097 -NCIT:C9020 Acute Myelomonocytic Leukemia with Abnormal Eosinophils 8 117098 -NCIT:C8460 Acute Myeloid Leukemia with Minimal Differentiation 7 117099 -NCIT:C8303 Adult Acute Myeloid Leukemia with Minimal Differentiation 8 117100 -NCIT:C8304 Childhood Acute Myeloid Leukemia with Minimal Differentiation 8 117101 -NCIT:C8923 Acute Erythroid Leukemia 7 117102 -NCIT:C156723 Recurrent Acute Erythroid Leukemia 8 117103 -NCIT:C7152 Erythroleukemia 8 117104 -NCIT:C68694 Adult Erythroleukemia 9 117105 -NCIT:C7467 Pure Erythroid Leukemia 8 117106 -NCIT:C68693 Adult Pure Erythroid Leukemia 9 117107 -NCIT:C9153 Adult Acute Erythroid Leukemia 8 117108 -NCIT:C68693 Adult Pure Erythroid Leukemia 9 117109 -NCIT:C68694 Adult Erythroleukemia 9 117110 -NCIT:C9164 Childhood Acute Erythroid Leukemia 8 117111 -NCIT:C7175 Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 6 117112 -NCIT:C122688 Core Binding Factor Acute Myeloid Leukemia 7 117113 -NCIT:C129785 Acute Myeloid Leukemia with BCR-ABL1 7 117114 -NCIT:C156718 Recurrent Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 7 117115 -NCIT:C156719 Recurrent Acute Myeloid Leukemia with t (9;11) (p21.3; q23.3); MLLT3-MLL 8 117116 -NCIT:C169107 Recurrent Acute Promyelocytic Leukemia with PML-RARA 8 117117 -NCIT:C162775 Acute Myeloid Leukemia with Trisomy 8 7 117118 -NCIT:C174129 Acute Myeloid Leukemia with MLL Rearrangement 7 117119 -NCIT:C132101 Acute Myeloid Leukemia with t(10;11)(p12;q23); MLLT10-MLL 8 117120 -NCIT:C132105 Acute Myeloid Leukemia with t(6;11)(q27;q23); MLLT4-MLL 8 117121 -NCIT:C6924 Acute Myeloid Leukemia with Variant MLL Translocations 8 117122 -NCIT:C82403 Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 8 117123 -NCIT:C156719 Recurrent Acute Myeloid Leukemia with t (9;11) (p21.3; q23.3); MLLT3-MLL 9 117124 -NCIT:C188451 Childhood Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 9 117125 -NCIT:C68696 Adult Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 9 117126 -NCIT:C3182 Acute Promyelocytic Leukemia with PML-RARA 7 117127 -NCIT:C169107 Recurrent Acute Promyelocytic Leukemia with PML-RARA 8 117128 -NCIT:C27756 Typical Acute Promyelocytic Leukemia 8 117129 -NCIT:C27757 Microgranular Acute Promyelocytic Leukemia 8 117130 -NCIT:C7968 Childhood Acute Promyelocytic Leukemia with PML-RARA 8 117131 -NCIT:C9155 Adult Acute Promyelocytic Leukemia with PML-RARA 8 117132 -NCIT:C36055 Acute Myeloid Leukemia with a Variant RARA Translocation 7 117133 -NCIT:C36056 Acute Myeloid Leukemia with t(11;17)(q23;q21) 8 117134 -NCIT:C36057 Acute Myeloid Leukemia with t(5;17)(q35;q21) 8 117135 -NCIT:C36058 Acute Myeloid Leukemia with t(11;17)(q13;q21) 8 117136 -NCIT:C38377 Acute Myeloid Leukemia with t(17;17)(q21;q21) 8 117137 -NCIT:C68700 Adult Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 7 117138 -NCIT:C68696 Adult Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 8 117139 -NCIT:C68697 Adult Acute Myeloid Leukemia with inv(16)(p13.1q22); CBFB-MYH11 8 117140 -NCIT:C68698 Adult Acute Myeloid Leukemia with t(16;16)(p13.1;q22); CBFB-MYH11 8 117141 -NCIT:C68699 Adult Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 8 117142 -NCIT:C9155 Adult Acute Promyelocytic Leukemia with PML-RARA 8 117143 -NCIT:C82423 Acute Myeloid Leukemia with t(6;9) (p23;q34.1); DEK-NUP214 7 117144 -NCIT:C82426 Acute Myeloid Leukemia with inv(3) (q21.3;q26.2) or t(3;3) (q21.3;q26.2); GATA2, MECOM 7 117145 -NCIT:C122716 Acute Myeloid Leukemia with inv(3) (q21.3;q26.2); GATA2, MECOM 8 117146 -NCIT:C122717 Acute Myeloid Leukemia with t(3;3) (q21.3;q26.2); GATA2, MECOM 8 117147 -NCIT:C82427 Acute Myeloid Leukemia (Megakaryoblastic) with t(1;22)(p13.3;q13.1); RBM15-MKL1 7 117148 -NCIT:C9287 Acute Myeloid Leukemia with inv(16)(p13.1q22) or t(16;16)(p13.1;q22); CBFB-MYH11 7 117149 -NCIT:C9018 Acute Myeloid Leukemia with inv(16)(p13.1q22); CBFB-MYH11 8 117150 -NCIT:C68697 Adult Acute Myeloid Leukemia with inv(16)(p13.1q22); CBFB-MYH11 9 117151 -NCIT:C9019 Acute Myeloid Leukemia with t(16;16)(p13.1;q22); CBFB-MYH11 8 117152 -NCIT:C68698 Adult Acute Myeloid Leukemia with t(16;16)(p13.1;q22); CBFB-MYH11 9 117153 -NCIT:C9288 Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 7 117154 -NCIT:C188450 Childhood Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 8 117155 -NCIT:C68699 Adult Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 8 117156 -NCIT:C7600 Acute Myeloid Leukemia with Myelodysplasia-Related Changes 6 117157 -NCIT:C125715 Recurrent Acute Myeloid Leukemia with Myelodysplasia-Related Changes 7 117158 -NCIT:C156720 Recurrent Acute Myeloid Leukemia with Multilineage Dysplasia 8 117159 -NCIT:C180897 Refractory Acute Myeloid Leukemia with Myelodysplasia-Related Changes 7 117160 -NCIT:C4037 Acute Myeloid Leukemia Arising from Previous Myelodysplastic Syndrome 7 117161 -NCIT:C9289 Acute Myeloid Leukemia with Multilineage Dysplasia 7 117162 -NCIT:C156720 Recurrent Acute Myeloid Leukemia with Multilineage Dysplasia 8 117163 -NCIT:C82430 Acute Myeloid Leukemia with Gene Mutations 6 117164 -NCIT:C126748 Acute Myeloid Leukemia with FLT3/ITD Mutation 7 117165 -NCIT:C129786 Acute Myeloid Leukemia with RUNX1 Mutation 7 117166 -NCIT:C151898 Acute Myeloid Leukemia with Germline CEBPA Mutation 7 117167 -NCIT:C82431 Acute Myeloid Leukemia with NPM1 Mutation 7 117168 -NCIT:C82433 Acute Myeloid Leukemia with CEBPA Mutation 7 117169 -NCIT:C129782 Acute Myeloid Leukemia with Biallelic Mutations of CEBPA 8 117170 -NCIT:C129783 Acute Myeloid Leukemia with Monoallelic Mutations of CEBPA 8 117171 -NCIT:C9154 Adult Acute Myeloid Leukemia 6 117172 -NCIT:C68700 Adult Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 7 117173 -NCIT:C68696 Adult Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 8 117174 -NCIT:C68697 Adult Acute Myeloid Leukemia with inv(16)(p13.1q22); CBFB-MYH11 8 117175 -NCIT:C68698 Adult Acute Myeloid Leukemia with t(16;16)(p13.1;q22); CBFB-MYH11 8 117176 -NCIT:C68699 Adult Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 8 117177 -NCIT:C9155 Adult Acute Promyelocytic Leukemia with PML-RARA 8 117178 -NCIT:C7319 Adult Acute Monoblastic and Monocytic Leukemia 7 117179 -NCIT:C8263 Adult Acute Monocytic Leukemia 8 117180 -NCIT:C9156 Adult Acute Monoblastic Leukemia 8 117181 -NCIT:C7882 Recurrent Adult Acute Myeloid Leukemia 7 117182 -NCIT:C7961 Adult Acute Myeloid Leukemia with Maturation 7 117183 -NCIT:C7962 Adult Acute Myelomonocytic Leukemia 7 117184 -NCIT:C7964 Adult Acute Basophilic Leukemia 7 117185 -NCIT:C7965 Adult Acute Megakaryoblastic Leukemia 7 117186 -NCIT:C8303 Adult Acute Myeloid Leukemia with Minimal Differentiation 7 117187 -NCIT:C9153 Adult Acute Erythroid Leukemia 7 117188 -NCIT:C68693 Adult Pure Erythroid Leukemia 8 117189 -NCIT:C68694 Adult Erythroleukemia 8 117190 -NCIT:C9380 Adult Acute Myeloid Leukemia without Maturation 7 117191 -NCIT:C9160 Childhood Acute Myeloid Leukemia 6 117192 -NCIT:C122625 Childhood Acute Myeloid Leukemia Not Otherwise Specified 7 117193 -NCIT:C7940 Childhood Acute Monoblastic and Monocytic Leukemia 8 117194 -NCIT:C9162 Childhood Acute Monoblastic Leukemia 9 117195 -NCIT:C9163 Childhood Acute Monocytic Leukemia 9 117196 -NCIT:C7970 Childhood Acute Myelomonocytic Leukemia 8 117197 -NCIT:C7971 Childhood Acute Basophilic Leukemia 8 117198 -NCIT:C7972 Childhood Acute Megakaryoblastic Leukemia 8 117199 -NCIT:C8304 Childhood Acute Myeloid Leukemia with Minimal Differentiation 8 117200 -NCIT:C9158 Childhood Acute Myeloid Leukemia without Maturation 8 117201 -NCIT:C9164 Childhood Acute Erythroid Leukemia 8 117202 -NCIT:C9381 Childhood Acute Myeloid Leukemia with Maturation 8 117203 -NCIT:C122690 Acute Myeloid Leukemia with t(7;12)(q36;p13); HLXB9-ETV6 7 117204 -NCIT:C122691 Childhood Acute Myeloid Leukemia with NUP98 Rearrangement 7 117205 -NCIT:C131502 Acute Myeloid Leukemia with t(5;11)(q35;p15); NUP98-NSD1 8 117206 -NCIT:C131504 Acute Myeloid Leukemia with t(11;15)(p15;q35); NUP98-JARID1A 8 117207 -NCIT:C132111 Acute Megakaryoblastic Leukemia with NUP98-KDM5A 8 117208 -NCIT:C122725 Childhood Acute Myeloid Leukemia with Abnormalities of Chromosome 5q 7 117209 -NCIT:C122726 Childhood Acute Myeloid Leukemia with Abnormalities of Chromosome 7 7 117210 -NCIT:C132101 Acute Myeloid Leukemia with t(10;11)(p12;q23); MLLT10-MLL 7 117211 -NCIT:C132105 Acute Myeloid Leukemia with t(6;11)(q27;q23); MLLT4-MLL 7 117212 -NCIT:C132109 Acute Megakaryoblastic Leukemia with CBFA2T3-GLIS2 7 117213 -NCIT:C167089 Acute Myeloid Leukemia with RAM Immunophenotype 7 117214 -NCIT:C187449 Refractory Childhood Acute Myeloid Leukemia 7 117215 -NCIT:C188450 Childhood Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 7 117216 -NCIT:C188451 Childhood Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 7 117217 -NCIT:C7968 Childhood Acute Promyelocytic Leukemia with PML-RARA 7 117218 -NCIT:C82431 Acute Myeloid Leukemia with NPM1 Mutation 7 117219 -NCIT:C82433 Acute Myeloid Leukemia with CEBPA Mutation 7 117220 -NCIT:C129782 Acute Myeloid Leukemia with Biallelic Mutations of CEBPA 8 117221 -NCIT:C129783 Acute Myeloid Leukemia with Monoallelic Mutations of CEBPA 8 117222 -NCIT:C9068 Recurrent Childhood Acute Myeloid Leukemia 7 117223 -NCIT:C3174 Chronic Myelogenous Leukemia, BCR-ABL1 Positive 5 117224 -NCIT:C3173 Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 117225 -NCIT:C190786 Recurrent Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 117226 -NCIT:C190787 Refractory Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 117227 -NCIT:C3175 Chronic Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 117228 -NCIT:C7303 Splenic Manifestation of Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 117229 -NCIT:C7320 Childhood Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 117230 -NCIT:C7885 Refractory Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 117231 -NCIT:C9070 Recurrent Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 117232 -NCIT:C9110 Blast Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 117233 -NCIT:C9111 Meningeal Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 117234 -NCIT:C9128 Philadelphia Chromosome Positive, BCR-ABL1 Positive Chronic Myelogenous Leukemia 6 117235 -NCIT:C9129 Philadelphia Chromosome Negative, BCR-ABL1 Positive Chronic Myelogenous Leukemia 6 117236 -NCIT:C3176 Philadelphia-Negative Myelogenous Leukemia 5 117237 -NCIT:C9129 Philadelphia Chromosome Negative, BCR-ABL1 Positive Chronic Myelogenous Leukemia 6 117238 -NCIT:C3177 Philadelphia-Positive Myelogenous Leukemia 5 117239 -NCIT:C9128 Philadelphia Chromosome Positive, BCR-ABL1 Positive Chronic Myelogenous Leukemia 6 117240 -NCIT:C3483 Chronic Leukemia 4 117241 -NCIT:C126351 Chronic Eosinophilic Leukemia with FIP1L1-PDGFRA 5 117242 -NCIT:C150043 Recurrent Chronic Leukemia 5 117243 -NCIT:C142882 Recurrent Hairy Cell Leukemia 6 117244 -NCIT:C150048 Recurrent Chronic Myelomonocytic Leukemia 6 117245 -NCIT:C150133 Recurrent T-Cell Prolymphocytic Leukemia 6 117246 -NCIT:C157692 Recurrent Aggressive NK-Cell Leukemia 6 117247 -NCIT:C158081 Recurrent B-Cell Prolymphocytic Leukemia 6 117248 -NCIT:C171065 Recurrent Hairy Cell Leukemia Variant 6 117249 -NCIT:C176999 Recurrent Sezary Syndrome 6 117250 -NCIT:C180985 Recurrent T-Cell Large Granular Lymphocyte Leukemia 6 117251 -NCIT:C8645 Recurrent Chronic Lymphocytic Leukemia 6 117252 -NCIT:C158151 Recurrent Transformed Chronic Lymphocytic Leukemia 7 117253 -NCIT:C9070 Recurrent Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 117254 -NCIT:C150044 Refractory Chronic Leukemia 5 117255 -NCIT:C150049 Refractory Chronic Myelomonocytic Leukemia 6 117256 -NCIT:C157691 Refractory T-Cell Prolymphocytic Leukemia 6 117257 -NCIT:C157693 Refractory Aggressive NK-Cell Leukemia 6 117258 -NCIT:C157697 Refractory B-Cell Prolymphocytic Leukemia 6 117259 -NCIT:C171064 Refractory Hairy Cell Leukemia Variant 6 117260 -NCIT:C177000 Refractory Sezary Syndrome 6 117261 -NCIT:C180986 Refractory T-Cell Large Granular Lymphocyte Leukemia 6 117262 -NCIT:C7885 Refractory Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 117263 -NCIT:C7886 Refractory Chronic Lymphocytic Leukemia 6 117264 -NCIT:C158152 Refractory Transformed Chronic Lymphocytic Leukemia 7 117265 -NCIT:C8030 Refractory Hairy Cell Leukemia 6 117266 -NCIT:C3163 Chronic Lymphocytic Leukemia 5 117267 -NCIT:C141206 Chronic Lymphocytic Leukemia- Modified Rai Staging System 6 117268 -NCIT:C7847 Stage 0 Chronic Lymphocytic Leukemia 7 117269 -NCIT:C7874 Stage I Chronic Lymphocytic Leukemia 7 117270 -NCIT:C7875 Stage II Chronic Lymphocytic Leukemia 7 117271 -NCIT:C7876 Stage III Chronic Lymphocytic Leukemia 7 117272 -NCIT:C8646 Stage IV Chronic Lymphocytic Leukemia 7 117273 -NCIT:C141208 Chronic Lymphocytic Leukemia- Binet Staging System 6 117274 -NCIT:C141209 Stage A Chronic Lymphocytic Leukemia 7 117275 -NCIT:C141210 Stage B Chronic Lymphocytic Leukemia 7 117276 -NCIT:C141211 Stage C Chronic Lymphocytic Leukemia 7 117277 -NCIT:C157624 Transformed Chronic Lymphocytic Leukemia to Diffuse Large B-Cell Lymphoma 6 117278 -NCIT:C158151 Recurrent Transformed Chronic Lymphocytic Leukemia 7 117279 -NCIT:C158152 Refractory Transformed Chronic Lymphocytic Leukemia 7 117280 -NCIT:C36272 Chronic Lymphocytic Leukemia with Plasmacytoid Differentiation 6 117281 -NCIT:C37202 Chronic Lymphocytic Leukemia with Immunoglobulin Heavy Chain Variable-Region Gene Somatic Hypermutation 6 117282 -NCIT:C37205 Chronic Lymphocytic Leukemia with Unmutated Immunoglobulin Heavy Chain Variable-Region Gene 6 117283 -NCIT:C45264 Cutaneous Chronic Lymphocytic Leukemia 6 117284 -NCIT:C7176 Aleukemic Chronic Lymphocytic Leukemia 6 117285 -NCIT:C7300 Splenic Manifestation of Chronic Lymphocytic Leukemia 6 117286 -NCIT:C7886 Refractory Chronic Lymphocytic Leukemia 6 117287 -NCIT:C158152 Refractory Transformed Chronic Lymphocytic Leukemia 7 117288 -NCIT:C8645 Recurrent Chronic Lymphocytic Leukemia 6 117289 -NCIT:C158151 Recurrent Transformed Chronic Lymphocytic Leukemia 7 117290 -NCIT:C3175 Chronic Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 5 117291 -NCIT:C3179 Chronic Neutrophilic Leukemia 5 117292 -NCIT:C3181 Prolymphocytic Leukemia 5 117293 -NCIT:C4752 T-Cell Prolymphocytic Leukemia 6 117294 -NCIT:C150133 Recurrent T-Cell Prolymphocytic Leukemia 7 117295 -NCIT:C157691 Refractory T-Cell Prolymphocytic Leukemia 7 117296 -NCIT:C36270 T-Cell Prolymphocytic Leukemia, Small Cell Variant 7 117297 -NCIT:C36271 T-Cell Prolymphocytic Leukemia, Cerebriform Cell Variant 7 117298 -NCIT:C7298 Splenic Manifestation of T-Cell Prolymphocytic Leukemia 7 117299 -NCIT:C4753 B-Cell Prolymphocytic Leukemia 6 117300 -NCIT:C157697 Refractory B-Cell Prolymphocytic Leukemia 7 117301 -NCIT:C158081 Recurrent B-Cell Prolymphocytic Leukemia 7 117302 -NCIT:C7299 Splenic Manifestation of B-Cell Prolymphocytic Leukemia 7 117303 -NCIT:C7297 Splenic Manifestation of Prolymphocytic Leukemia 6 117304 -NCIT:C7298 Splenic Manifestation of T-Cell Prolymphocytic Leukemia 7 117305 -NCIT:C7299 Splenic Manifestation of B-Cell Prolymphocytic Leukemia 7 117306 -NCIT:C4563 Chronic Eosinophilic Leukemia, Not Otherwise Specified 5 117307 -NCIT:C4664 T-Cell Large Granular Lymphocyte Leukemia 5 117308 -NCIT:C180985 Recurrent T-Cell Large Granular Lymphocyte Leukemia 6 117309 -NCIT:C180986 Refractory T-Cell Large Granular Lymphocyte Leukemia 6 117310 -NCIT:C39584 T-Cell Large Granular Lymphocyte Leukemia, Common Variant 6 117311 -NCIT:C39586 T-Cell Large Granular Lymphocyte Leukemia Expressing the T-Cell Receptor Gamma-Delta 6 117312 -NCIT:C7302 Splenic Manifestation of T-Cell Large Granular Lymphocyte Leukemia 6 117313 -NCIT:C7401 Hairy Cell Leukemia Variant 5 117314 -NCIT:C171064 Refractory Hairy Cell Leukemia Variant 6 117315 -NCIT:C171065 Recurrent Hairy Cell Leukemia Variant 6 117316 -NCIT:C7402 Hairy Cell Leukemia 5 117317 -NCIT:C142882 Recurrent Hairy Cell Leukemia 6 117318 -NCIT:C7301 Splenic Manifestation of Hairy Cell Leukemia 6 117319 -NCIT:C8029 Progressive Hairy Cell Leukemia Initial Treatment 6 117320 -NCIT:C8030 Refractory Hairy Cell Leukemia 6 117321 -NCIT:C8647 Aggressive NK-Cell Leukemia 5 117322 -NCIT:C157692 Recurrent Aggressive NK-Cell Leukemia 6 117323 -NCIT:C157693 Refractory Aggressive NK-Cell Leukemia 6 117324 -NCIT:C4982 Aleukemic Leukemia 4 117325 -NCIT:C4343 Aleukemic Lymphoid Leukemia 5 117326 -NCIT:C7176 Aleukemic Chronic Lymphocytic Leukemia 6 117327 -NCIT:C7177 Aleukemic Acute Lymphoblastic Leukemia 6 117328 -NCIT:C5631 Aleukemic Acute Lymphoblastic Leukemia Cutis 7 117329 -NCIT:C4983 Aleukemic Leukemia Cutis 5 117330 -NCIT:C5630 Aleukemic Monocytic Leukemia Cutis 6 117331 -NCIT:C5631 Aleukemic Acute Lymphoblastic Leukemia Cutis 6 117332 -NCIT:C4989 Childhood Leukemia 4 117333 -NCIT:C122603 Infant Leukemia 5 117334 -NCIT:C122614 Infant Acute Lymphoblastic Leukemia 6 117335 -NCIT:C122617 Infant Acute Lymphoblastic Leukemia with MLL Rearrangement 7 117336 -NCIT:C122621 Infant Acute Lymphoblastic Leukemia without MLL Gene Rearrangement 7 117337 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 7 117338 -NCIT:C122690 Acute Myeloid Leukemia with t(7;12)(q36;p13); HLXB9-ETV6 6 117339 -NCIT:C126110 Infant Acute Undifferentiated Leukemia 6 117340 -NCIT:C126111 Infant Acute Biphenotypic Leukemia 6 117341 -NCIT:C3845 Neonatal Leukemia 6 117342 -NCIT:C187056 Childhood Acute Leukemia 5 117343 -NCIT:C126110 Infant Acute Undifferentiated Leukemia 6 117344 -NCIT:C126111 Infant Acute Biphenotypic Leukemia 6 117345 -NCIT:C3168 Childhood Acute Lymphoblastic Leukemia 6 117346 -NCIT:C122614 Infant Acute Lymphoblastic Leukemia 7 117347 -NCIT:C122617 Infant Acute Lymphoblastic Leukemia with MLL Rearrangement 8 117348 -NCIT:C122621 Infant Acute Lymphoblastic Leukemia without MLL Gene Rearrangement 8 117349 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 8 117350 -NCIT:C122624 Refractory Childhood Acute Lymphoblastic Leukemia 7 117351 -NCIT:C7784 Recurrent Childhood Acute Lymphoblastic Leukemia 7 117352 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 117353 -NCIT:C7953 Childhood T Acute Lymphoblastic Leukemia 7 117354 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 8 117355 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 117356 -NCIT:C9140 Childhood B Acute Lymphoblastic Leukemia 7 117357 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 117358 -NCIT:C7952 Childhood Burkitt Leukemia 6 117359 -NCIT:C9160 Childhood Acute Myeloid Leukemia 6 117360 -NCIT:C122625 Childhood Acute Myeloid Leukemia Not Otherwise Specified 7 117361 -NCIT:C7940 Childhood Acute Monoblastic and Monocytic Leukemia 8 117362 -NCIT:C9162 Childhood Acute Monoblastic Leukemia 9 117363 -NCIT:C9163 Childhood Acute Monocytic Leukemia 9 117364 -NCIT:C7970 Childhood Acute Myelomonocytic Leukemia 8 117365 -NCIT:C7971 Childhood Acute Basophilic Leukemia 8 117366 -NCIT:C7972 Childhood Acute Megakaryoblastic Leukemia 8 117367 -NCIT:C8304 Childhood Acute Myeloid Leukemia with Minimal Differentiation 8 117368 -NCIT:C9158 Childhood Acute Myeloid Leukemia without Maturation 8 117369 -NCIT:C9164 Childhood Acute Erythroid Leukemia 8 117370 -NCIT:C9381 Childhood Acute Myeloid Leukemia with Maturation 8 117371 -NCIT:C122690 Acute Myeloid Leukemia with t(7;12)(q36;p13); HLXB9-ETV6 7 117372 -NCIT:C122691 Childhood Acute Myeloid Leukemia with NUP98 Rearrangement 7 117373 -NCIT:C131502 Acute Myeloid Leukemia with t(5;11)(q35;p15); NUP98-NSD1 8 117374 -NCIT:C131504 Acute Myeloid Leukemia with t(11;15)(p15;q35); NUP98-JARID1A 8 117375 -NCIT:C132111 Acute Megakaryoblastic Leukemia with NUP98-KDM5A 8 117376 -NCIT:C122725 Childhood Acute Myeloid Leukemia with Abnormalities of Chromosome 5q 7 117377 -NCIT:C122726 Childhood Acute Myeloid Leukemia with Abnormalities of Chromosome 7 7 117378 -NCIT:C132101 Acute Myeloid Leukemia with t(10;11)(p12;q23); MLLT10-MLL 7 117379 -NCIT:C132105 Acute Myeloid Leukemia with t(6;11)(q27;q23); MLLT4-MLL 7 117380 -NCIT:C132109 Acute Megakaryoblastic Leukemia with CBFA2T3-GLIS2 7 117381 -NCIT:C167089 Acute Myeloid Leukemia with RAM Immunophenotype 7 117382 -NCIT:C187449 Refractory Childhood Acute Myeloid Leukemia 7 117383 -NCIT:C188450 Childhood Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 7 117384 -NCIT:C188451 Childhood Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 7 117385 -NCIT:C7968 Childhood Acute Promyelocytic Leukemia with PML-RARA 7 117386 -NCIT:C82431 Acute Myeloid Leukemia with NPM1 Mutation 7 117387 -NCIT:C82433 Acute Myeloid Leukemia with CEBPA Mutation 7 117388 -NCIT:C129782 Acute Myeloid Leukemia with Biallelic Mutations of CEBPA 8 117389 -NCIT:C129783 Acute Myeloid Leukemia with Monoallelic Mutations of CEBPA 8 117390 -NCIT:C9068 Recurrent Childhood Acute Myeloid Leukemia 7 117391 -NCIT:C7320 Childhood Chronic Myelogenous Leukemia, BCR-ABL1 Positive 5 117392 -NCIT:C5440 Central Nervous System Leukemia 4 117393 -NCIT:C94754 Meningeal Leukemia 5 117394 -NCIT:C9111 Meningeal Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 117395 -NCIT:C7296 Splenic Manifestation of Leukemia 4 117396 -NCIT:C7297 Splenic Manifestation of Prolymphocytic Leukemia 5 117397 -NCIT:C7298 Splenic Manifestation of T-Cell Prolymphocytic Leukemia 6 117398 -NCIT:C7299 Splenic Manifestation of B-Cell Prolymphocytic Leukemia 6 117399 -NCIT:C7300 Splenic Manifestation of Chronic Lymphocytic Leukemia 5 117400 -NCIT:C7301 Splenic Manifestation of Hairy Cell Leukemia 5 117401 -NCIT:C7302 Splenic Manifestation of T-Cell Large Granular Lymphocyte Leukemia 5 117402 -NCIT:C7303 Splenic Manifestation of Chronic Myelogenous Leukemia, BCR-ABL1 Positive 5 117403 -NCIT:C7539 Lymphoid Leukemia 4 117404 -NCIT:C3163 Chronic Lymphocytic Leukemia 5 117405 -NCIT:C141206 Chronic Lymphocytic Leukemia- Modified Rai Staging System 6 117406 -NCIT:C7847 Stage 0 Chronic Lymphocytic Leukemia 7 117407 -NCIT:C7874 Stage I Chronic Lymphocytic Leukemia 7 117408 -NCIT:C7875 Stage II Chronic Lymphocytic Leukemia 7 117409 -NCIT:C7876 Stage III Chronic Lymphocytic Leukemia 7 117410 -NCIT:C8646 Stage IV Chronic Lymphocytic Leukemia 7 117411 -NCIT:C141208 Chronic Lymphocytic Leukemia- Binet Staging System 6 117412 -NCIT:C141209 Stage A Chronic Lymphocytic Leukemia 7 117413 -NCIT:C141210 Stage B Chronic Lymphocytic Leukemia 7 117414 -NCIT:C141211 Stage C Chronic Lymphocytic Leukemia 7 117415 -NCIT:C157624 Transformed Chronic Lymphocytic Leukemia to Diffuse Large B-Cell Lymphoma 6 117416 -NCIT:C158151 Recurrent Transformed Chronic Lymphocytic Leukemia 7 117417 -NCIT:C158152 Refractory Transformed Chronic Lymphocytic Leukemia 7 117418 -NCIT:C36272 Chronic Lymphocytic Leukemia with Plasmacytoid Differentiation 6 117419 -NCIT:C37202 Chronic Lymphocytic Leukemia with Immunoglobulin Heavy Chain Variable-Region Gene Somatic Hypermutation 6 117420 -NCIT:C37205 Chronic Lymphocytic Leukemia with Unmutated Immunoglobulin Heavy Chain Variable-Region Gene 6 117421 -NCIT:C45264 Cutaneous Chronic Lymphocytic Leukemia 6 117422 -NCIT:C7176 Aleukemic Chronic Lymphocytic Leukemia 6 117423 -NCIT:C7300 Splenic Manifestation of Chronic Lymphocytic Leukemia 6 117424 -NCIT:C7886 Refractory Chronic Lymphocytic Leukemia 6 117425 -NCIT:C158152 Refractory Transformed Chronic Lymphocytic Leukemia 7 117426 -NCIT:C8645 Recurrent Chronic Lymphocytic Leukemia 6 117427 -NCIT:C158151 Recurrent Transformed Chronic Lymphocytic Leukemia 7 117428 -NCIT:C3167 Acute Lymphoblastic Leukemia 5 117429 -NCIT:C121973 Acute Lymphoblastic Leukemia by Gene Expression Profile 6 117430 -NCIT:C121975 DDIT4L Acute Lymphoblastic Leukemia 7 117431 -NCIT:C121978 Acute Lymphoblastic Leukemia by ROSE Cluster 7 117432 -NCIT:C121980 ROSE Cluster 1 8 117433 -NCIT:C121981 ROSE Cluster 2 8 117434 -NCIT:C121982 ROSE Cluster 3 8 117435 -NCIT:C121983 ROSE Cluster 4 8 117436 -NCIT:C121984 ROSE Cluster 5 8 117437 -NCIT:C121985 ROSE Cluster 6 8 117438 -NCIT:C121986 ROSE Cluster 7 8 117439 -NCIT:C121988 ROSE Cluster 8 8 117440 -NCIT:C136488 Refractory Acute Lymphoblastic Leukemia 6 117441 -NCIT:C122624 Refractory Childhood Acute Lymphoblastic Leukemia 7 117442 -NCIT:C126309 Refractory Adult Acute Lymphoblastic Leukemia 7 117443 -NCIT:C142812 Refractory B Acute Lymphoblastic Leukemia 7 117444 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 117445 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 117446 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 117447 -NCIT:C150510 Refractory T Acute Lymphoblastic Leukemia 7 117448 -NCIT:C142810 Recurrent Acute Lymphoblastic Leukemia 6 117449 -NCIT:C142811 Recurrent B Acute Lymphoblastic Leukemia 7 117450 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 117451 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 117452 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 117453 -NCIT:C150131 Recurrent T Acute Lymphoblastic Leukemia 7 117454 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 117455 -NCIT:C7784 Recurrent Childhood Acute Lymphoblastic Leukemia 7 117456 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 117457 -NCIT:C7883 Recurrent Adult Acute Lymphoblastic Leukemia 7 117458 -NCIT:C3168 Childhood Acute Lymphoblastic Leukemia 6 117459 -NCIT:C122614 Infant Acute Lymphoblastic Leukemia 7 117460 -NCIT:C122617 Infant Acute Lymphoblastic Leukemia with MLL Rearrangement 8 117461 -NCIT:C122621 Infant Acute Lymphoblastic Leukemia without MLL Gene Rearrangement 8 117462 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 8 117463 -NCIT:C122624 Refractory Childhood Acute Lymphoblastic Leukemia 7 117464 -NCIT:C7784 Recurrent Childhood Acute Lymphoblastic Leukemia 7 117465 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 117466 -NCIT:C7953 Childhood T Acute Lymphoblastic Leukemia 7 117467 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 8 117468 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 117469 -NCIT:C9140 Childhood B Acute Lymphoblastic Leukemia 7 117470 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 117471 -NCIT:C3183 T Acute Lymphoblastic Leukemia 6 117472 -NCIT:C130043 Early T Acute Lymphoblastic Leukemia 7 117473 -NCIT:C150131 Recurrent T Acute Lymphoblastic Leukemia 7 117474 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 117475 -NCIT:C150510 Refractory T Acute Lymphoblastic Leukemia 7 117476 -NCIT:C45739 Mediastinal T Acute Lymphoblastic Leukemia 7 117477 -NCIT:C7953 Childhood T Acute Lymphoblastic Leukemia 7 117478 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 8 117479 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 117480 -NCIT:C9142 Adult T Acute Lymphoblastic Leukemia 7 117481 -NCIT:C4967 Adult Acute Lymphoblastic Leukemia 6 117482 -NCIT:C126309 Refractory Adult Acute Lymphoblastic Leukemia 7 117483 -NCIT:C7883 Recurrent Adult Acute Lymphoblastic Leukemia 7 117484 -NCIT:C9142 Adult T Acute Lymphoblastic Leukemia 7 117485 -NCIT:C9143 Adult B Acute Lymphoblastic Leukemia 7 117486 -NCIT:C114819 Adult B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 117487 -NCIT:C7177 Aleukemic Acute Lymphoblastic Leukemia 6 117488 -NCIT:C5631 Aleukemic Acute Lymphoblastic Leukemia Cutis 7 117489 -NCIT:C8644 B Acute Lymphoblastic Leukemia 6 117490 -NCIT:C121974 B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 7 117491 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 117492 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 117493 -NCIT:C128629 B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 7 117494 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 117495 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 117496 -NCIT:C130040 B Acute Lymphoblastic Leukemia with Intrachromosomal Amplification of Chromosome 21 7 117497 -NCIT:C142811 Recurrent B Acute Lymphoblastic Leukemia 7 117498 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 117499 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 117500 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 117501 -NCIT:C142812 Refractory B Acute Lymphoblastic Leukemia 7 117502 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 117503 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 117504 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 117505 -NCIT:C162776 B Acute Lymphoblastic Leukemia with t(4;11)(q21;23) 7 117506 -NCIT:C190847 B Acute Lymphoblastic Leukemia Associated with Down Syndrome 7 117507 -NCIT:C190957 B Acute Lymphoblastic Leukemia with ETV6-RUNX1-Like Features 7 117508 -NCIT:C36312 B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 7 117509 -NCIT:C114819 Adult B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 117510 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 117511 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 117512 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 117513 -NCIT:C80342 B Acute Lymphoblastic Leukemia with t(v;11q23.3); MLL Rearranged 7 117514 -NCIT:C80343 B Acute Lymphoblastic Leukemia with t(12;21)(p13.2;q22.1); ETV6-RUNX1 7 117515 -NCIT:C80344 Hyperdiploid B Acute Lymphoblastic Leukemia 7 117516 -NCIT:C80345 Hypodiploid B Acute Lymphoblastic Leukemia 7 117517 -NCIT:C80346 B Acute Lymphoblastic Leukemia with t(5;14)(q31.1;q32.3); IL3-IGH 7 117518 -NCIT:C80347 B Acute Lymphoblastic Leukemia with t(1;19)(q23;p13.3); E2A-PBX1 (TCF3-PBX1) 7 117519 -NCIT:C9140 Childhood B Acute Lymphoblastic Leukemia 7 117520 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 117521 -NCIT:C9143 Adult B Acute Lymphoblastic Leukemia 7 117522 -NCIT:C114819 Adult B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 117523 -NCIT:C3180 Plasma Cell Leukemia 5 117524 -NCIT:C191432 Secondary Plasma Cell Leukemia 6 117525 -NCIT:C3181 Prolymphocytic Leukemia 5 117526 -NCIT:C4752 T-Cell Prolymphocytic Leukemia 6 117527 -NCIT:C150133 Recurrent T-Cell Prolymphocytic Leukemia 7 117528 -NCIT:C157691 Refractory T-Cell Prolymphocytic Leukemia 7 117529 -NCIT:C36270 T-Cell Prolymphocytic Leukemia, Small Cell Variant 7 117530 -NCIT:C36271 T-Cell Prolymphocytic Leukemia, Cerebriform Cell Variant 7 117531 -NCIT:C7298 Splenic Manifestation of T-Cell Prolymphocytic Leukemia 7 117532 -NCIT:C4753 B-Cell Prolymphocytic Leukemia 6 117533 -NCIT:C157697 Refractory B-Cell Prolymphocytic Leukemia 7 117534 -NCIT:C158081 Recurrent B-Cell Prolymphocytic Leukemia 7 117535 -NCIT:C7299 Splenic Manifestation of B-Cell Prolymphocytic Leukemia 7 117536 -NCIT:C7297 Splenic Manifestation of Prolymphocytic Leukemia 6 117537 -NCIT:C7298 Splenic Manifestation of T-Cell Prolymphocytic Leukemia 7 117538 -NCIT:C7299 Splenic Manifestation of B-Cell Prolymphocytic Leukemia 7 117539 -NCIT:C4343 Aleukemic Lymphoid Leukemia 5 117540 -NCIT:C7176 Aleukemic Chronic Lymphocytic Leukemia 6 117541 -NCIT:C7177 Aleukemic Acute Lymphoblastic Leukemia 6 117542 -NCIT:C5631 Aleukemic Acute Lymphoblastic Leukemia Cutis 7 117543 -NCIT:C4664 T-Cell Large Granular Lymphocyte Leukemia 5 117544 -NCIT:C180985 Recurrent T-Cell Large Granular Lymphocyte Leukemia 6 117545 -NCIT:C180986 Refractory T-Cell Large Granular Lymphocyte Leukemia 6 117546 -NCIT:C39584 T-Cell Large Granular Lymphocyte Leukemia, Common Variant 6 117547 -NCIT:C39586 T-Cell Large Granular Lymphocyte Leukemia Expressing the T-Cell Receptor Gamma-Delta 6 117548 -NCIT:C7302 Splenic Manifestation of T-Cell Large Granular Lymphocyte Leukemia 6 117549 -NCIT:C7400 Burkitt Leukemia 5 117550 -NCIT:C151976 Recurrent Burkitt Leukemia 6 117551 -NCIT:C151977 Refractory Burkitt Leukemia 6 117552 -NCIT:C7952 Childhood Burkitt Leukemia 6 117553 -NCIT:C7954 Adult Burkitt Leukemia 6 117554 -NCIT:C7401 Hairy Cell Leukemia Variant 5 117555 -NCIT:C171064 Refractory Hairy Cell Leukemia Variant 6 117556 -NCIT:C171065 Recurrent Hairy Cell Leukemia Variant 6 117557 -NCIT:C7402 Hairy Cell Leukemia 5 117558 -NCIT:C142882 Recurrent Hairy Cell Leukemia 6 117559 -NCIT:C7301 Splenic Manifestation of Hairy Cell Leukemia 6 117560 -NCIT:C8029 Progressive Hairy Cell Leukemia Initial Treatment 6 117561 -NCIT:C8030 Refractory Hairy Cell Leukemia 6 117562 -NCIT:C8594 Leukemic Phase of Lymphoma 5 117563 -NCIT:C138192 Leukemic Nonnodal Mantle Cell Lymphoma 6 117564 -NCIT:C3366 Sezary Syndrome 6 117565 -NCIT:C176999 Recurrent Sezary Syndrome 7 117566 -NCIT:C177000 Refractory Sezary Syndrome 7 117567 -NCIT:C36265 Acute Adult T-Cell Leukemia/Lymphoma 6 117568 -NCIT:C7178 Smoldering Adult T-Cell Leukemia/Lymphoma 6 117569 -NCIT:C7179 Chronic Adult T-Cell Leukemia/Lymphoma 6 117570 -NCIT:C8647 Aggressive NK-Cell Leukemia 5 117571 -NCIT:C157692 Recurrent Aggressive NK-Cell Leukemia 6 117572 -NCIT:C157693 Refractory Aggressive NK-Cell Leukemia 6 117573 -NCIT:C80683 Therapy-Related Leukemia 4 117574 -NCIT:C80691 Chemotherapy-Related Leukemia 5 117575 -NCIT:C27754 Alkylating Agent-Related Acute Myeloid Leukemia 6 117576 -NCIT:C8252 Therapy-Related Acute Myeloid Leukemia 5 117577 -NCIT:C186730 Therapy-Related Cytogenetically Normal Acute Myeloid Leukemia 6 117578 -NCIT:C27754 Alkylating Agent-Related Acute Myeloid Leukemia 6 117579 -NCIT:C27755 Topoisomerase II Inhibitor-Related Acute Myeloid Leukemia 6 117580 -NCIT:C88156 Leukemia Cutis 4 117581 -NCIT:C45264 Cutaneous Chronic Lymphocytic Leukemia 5 117582 -NCIT:C4983 Aleukemic Leukemia Cutis 5 117583 -NCIT:C5630 Aleukemic Monocytic Leukemia Cutis 6 117584 -NCIT:C5631 Aleukemic Acute Lymphoblastic Leukemia Cutis 6 117585 -NCIT:C9277 Testicular Leukemia 4 117586 -NCIT:C9300 Acute Leukemia 4 117587 -NCIT:C148429 Recurrent Acute Leukemia 5 117588 -NCIT:C142810 Recurrent Acute Lymphoblastic Leukemia 6 117589 -NCIT:C142811 Recurrent B Acute Lymphoblastic Leukemia 7 117590 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 117591 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 117592 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 117593 -NCIT:C150131 Recurrent T Acute Lymphoblastic Leukemia 7 117594 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 117595 -NCIT:C7784 Recurrent Childhood Acute Lymphoblastic Leukemia 7 117596 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 117597 -NCIT:C7883 Recurrent Adult Acute Lymphoblastic Leukemia 7 117598 -NCIT:C148427 Recurrent Acute Myeloid Leukemia 6 117599 -NCIT:C125715 Recurrent Acute Myeloid Leukemia with Myelodysplasia-Related Changes 7 117600 -NCIT:C156720 Recurrent Acute Myeloid Leukemia with Multilineage Dysplasia 8 117601 -NCIT:C156716 Recurrent Acute Myeloid Leukemia Not Otherwise Specified 7 117602 -NCIT:C156717 Recurrent Acute Myelomonocytic Leukemia 8 117603 -NCIT:C156722 Recurrent Acute Monoblastic and Monocytic Leukemia 8 117604 -NCIT:C156723 Recurrent Acute Erythroid Leukemia 8 117605 -NCIT:C156731 Recurrent Acute Megakaryoblastic Leukemia 8 117606 -NCIT:C156718 Recurrent Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 7 117607 -NCIT:C156719 Recurrent Acute Myeloid Leukemia with t (9;11) (p21.3; q23.3); MLLT3-MLL 8 117608 -NCIT:C169107 Recurrent Acute Promyelocytic Leukemia with PML-RARA 8 117609 -NCIT:C7882 Recurrent Adult Acute Myeloid Leukemia 7 117610 -NCIT:C9068 Recurrent Childhood Acute Myeloid Leukemia 7 117611 -NCIT:C151976 Recurrent Burkitt Leukemia 6 117612 -NCIT:C172626 Recurrent Acute Leukemia of Ambiguous Lineage 6 117613 -NCIT:C141446 Recurrent Acute Undifferentiated Leukemia 7 117614 -NCIT:C148423 Recurrent Mixed Phenotype Acute Leukemia 7 117615 -NCIT:C141445 Recurrent Acute Biphenotypic Leukemia 8 117616 -NCIT:C179204 Recurrent Acute Bilineal Leukemia 8 117617 -NCIT:C148431 Refractory Acute Leukemia 5 117618 -NCIT:C134319 Refractory Acute Myeloid Leukemia 6 117619 -NCIT:C174486 Refractory Acute Myeloid Leukemia Not Otherwise Specified 7 117620 -NCIT:C174511 Refractory Acute Monoblastic and Monocytic Leukemia 8 117621 -NCIT:C174512 Refractory Acute Myelomonocytic Leukemia 8 117622 -NCIT:C180897 Refractory Acute Myeloid Leukemia with Myelodysplasia-Related Changes 7 117623 -NCIT:C187449 Refractory Childhood Acute Myeloid Leukemia 7 117624 -NCIT:C136488 Refractory Acute Lymphoblastic Leukemia 6 117625 -NCIT:C122624 Refractory Childhood Acute Lymphoblastic Leukemia 7 117626 -NCIT:C126309 Refractory Adult Acute Lymphoblastic Leukemia 7 117627 -NCIT:C142812 Refractory B Acute Lymphoblastic Leukemia 7 117628 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 117629 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 117630 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 117631 -NCIT:C150510 Refractory T Acute Lymphoblastic Leukemia 7 117632 -NCIT:C151977 Refractory Burkitt Leukemia 6 117633 -NCIT:C172630 Refractory Acute Leukemia of Ambiguous Lineage 6 117634 -NCIT:C148430 Refractory Mixed Phenotype Acute Leukemia 7 117635 -NCIT:C173683 Refractory Acute Biphenotypic Leukemia 8 117636 -NCIT:C179205 Refractory Acute Bilineal Leukemia 8 117637 -NCIT:C173503 Refractory Acute Undifferentiated Leukemia 7 117638 -NCIT:C187056 Childhood Acute Leukemia 5 117639 -NCIT:C126110 Infant Acute Undifferentiated Leukemia 6 117640 -NCIT:C126111 Infant Acute Biphenotypic Leukemia 6 117641 -NCIT:C3168 Childhood Acute Lymphoblastic Leukemia 6 117642 -NCIT:C122614 Infant Acute Lymphoblastic Leukemia 7 117643 -NCIT:C122617 Infant Acute Lymphoblastic Leukemia with MLL Rearrangement 8 117644 -NCIT:C122621 Infant Acute Lymphoblastic Leukemia without MLL Gene Rearrangement 8 117645 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 8 117646 -NCIT:C122624 Refractory Childhood Acute Lymphoblastic Leukemia 7 117647 -NCIT:C7784 Recurrent Childhood Acute Lymphoblastic Leukemia 7 117648 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 117649 -NCIT:C7953 Childhood T Acute Lymphoblastic Leukemia 7 117650 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 8 117651 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 117652 -NCIT:C9140 Childhood B Acute Lymphoblastic Leukemia 7 117653 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 117654 -NCIT:C7952 Childhood Burkitt Leukemia 6 117655 -NCIT:C9160 Childhood Acute Myeloid Leukemia 6 117656 -NCIT:C122625 Childhood Acute Myeloid Leukemia Not Otherwise Specified 7 117657 -NCIT:C7940 Childhood Acute Monoblastic and Monocytic Leukemia 8 117658 -NCIT:C9162 Childhood Acute Monoblastic Leukemia 9 117659 -NCIT:C9163 Childhood Acute Monocytic Leukemia 9 117660 -NCIT:C7970 Childhood Acute Myelomonocytic Leukemia 8 117661 -NCIT:C7971 Childhood Acute Basophilic Leukemia 8 117662 -NCIT:C7972 Childhood Acute Megakaryoblastic Leukemia 8 117663 -NCIT:C8304 Childhood Acute Myeloid Leukemia with Minimal Differentiation 8 117664 -NCIT:C9158 Childhood Acute Myeloid Leukemia without Maturation 8 117665 -NCIT:C9164 Childhood Acute Erythroid Leukemia 8 117666 -NCIT:C9381 Childhood Acute Myeloid Leukemia with Maturation 8 117667 -NCIT:C122690 Acute Myeloid Leukemia with t(7;12)(q36;p13); HLXB9-ETV6 7 117668 -NCIT:C122691 Childhood Acute Myeloid Leukemia with NUP98 Rearrangement 7 117669 -NCIT:C131502 Acute Myeloid Leukemia with t(5;11)(q35;p15); NUP98-NSD1 8 117670 -NCIT:C131504 Acute Myeloid Leukemia with t(11;15)(p15;q35); NUP98-JARID1A 8 117671 -NCIT:C132111 Acute Megakaryoblastic Leukemia with NUP98-KDM5A 8 117672 -NCIT:C122725 Childhood Acute Myeloid Leukemia with Abnormalities of Chromosome 5q 7 117673 -NCIT:C122726 Childhood Acute Myeloid Leukemia with Abnormalities of Chromosome 7 7 117674 -NCIT:C132101 Acute Myeloid Leukemia with t(10;11)(p12;q23); MLLT10-MLL 7 117675 -NCIT:C132105 Acute Myeloid Leukemia with t(6;11)(q27;q23); MLLT4-MLL 7 117676 -NCIT:C132109 Acute Megakaryoblastic Leukemia with CBFA2T3-GLIS2 7 117677 -NCIT:C167089 Acute Myeloid Leukemia with RAM Immunophenotype 7 117678 -NCIT:C187449 Refractory Childhood Acute Myeloid Leukemia 7 117679 -NCIT:C188450 Childhood Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 7 117680 -NCIT:C188451 Childhood Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 7 117681 -NCIT:C7968 Childhood Acute Promyelocytic Leukemia with PML-RARA 7 117682 -NCIT:C82431 Acute Myeloid Leukemia with NPM1 Mutation 7 117683 -NCIT:C82433 Acute Myeloid Leukemia with CEBPA Mutation 7 117684 -NCIT:C129782 Acute Myeloid Leukemia with Biallelic Mutations of CEBPA 8 117685 -NCIT:C129783 Acute Myeloid Leukemia with Monoallelic Mutations of CEBPA 8 117686 -NCIT:C9068 Recurrent Childhood Acute Myeloid Leukemia 7 117687 -NCIT:C3167 Acute Lymphoblastic Leukemia 5 117688 -NCIT:C121973 Acute Lymphoblastic Leukemia by Gene Expression Profile 6 117689 -NCIT:C121975 DDIT4L Acute Lymphoblastic Leukemia 7 117690 -NCIT:C121978 Acute Lymphoblastic Leukemia by ROSE Cluster 7 117691 -NCIT:C121980 ROSE Cluster 1 8 117692 -NCIT:C121981 ROSE Cluster 2 8 117693 -NCIT:C121982 ROSE Cluster 3 8 117694 -NCIT:C121983 ROSE Cluster 4 8 117695 -NCIT:C121984 ROSE Cluster 5 8 117696 -NCIT:C121985 ROSE Cluster 6 8 117697 -NCIT:C121986 ROSE Cluster 7 8 117698 -NCIT:C121988 ROSE Cluster 8 8 117699 -NCIT:C136488 Refractory Acute Lymphoblastic Leukemia 6 117700 -NCIT:C122624 Refractory Childhood Acute Lymphoblastic Leukemia 7 117701 -NCIT:C126309 Refractory Adult Acute Lymphoblastic Leukemia 7 117702 -NCIT:C142812 Refractory B Acute Lymphoblastic Leukemia 7 117703 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 117704 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 117705 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 117706 -NCIT:C150510 Refractory T Acute Lymphoblastic Leukemia 7 117707 -NCIT:C142810 Recurrent Acute Lymphoblastic Leukemia 6 117708 -NCIT:C142811 Recurrent B Acute Lymphoblastic Leukemia 7 117709 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 117710 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 117711 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 117712 -NCIT:C150131 Recurrent T Acute Lymphoblastic Leukemia 7 117713 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 117714 -NCIT:C7784 Recurrent Childhood Acute Lymphoblastic Leukemia 7 117715 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 117716 -NCIT:C7883 Recurrent Adult Acute Lymphoblastic Leukemia 7 117717 -NCIT:C3168 Childhood Acute Lymphoblastic Leukemia 6 117718 -NCIT:C122614 Infant Acute Lymphoblastic Leukemia 7 117719 -NCIT:C122617 Infant Acute Lymphoblastic Leukemia with MLL Rearrangement 8 117720 -NCIT:C122621 Infant Acute Lymphoblastic Leukemia without MLL Gene Rearrangement 8 117721 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 8 117722 -NCIT:C122624 Refractory Childhood Acute Lymphoblastic Leukemia 7 117723 -NCIT:C7784 Recurrent Childhood Acute Lymphoblastic Leukemia 7 117724 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 117725 -NCIT:C7953 Childhood T Acute Lymphoblastic Leukemia 7 117726 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 8 117727 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 117728 -NCIT:C9140 Childhood B Acute Lymphoblastic Leukemia 7 117729 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 117730 -NCIT:C3183 T Acute Lymphoblastic Leukemia 6 117731 -NCIT:C130043 Early T Acute Lymphoblastic Leukemia 7 117732 -NCIT:C150131 Recurrent T Acute Lymphoblastic Leukemia 7 117733 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 117734 -NCIT:C150510 Refractory T Acute Lymphoblastic Leukemia 7 117735 -NCIT:C45739 Mediastinal T Acute Lymphoblastic Leukemia 7 117736 -NCIT:C7953 Childhood T Acute Lymphoblastic Leukemia 7 117737 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 8 117738 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 117739 -NCIT:C9142 Adult T Acute Lymphoblastic Leukemia 7 117740 -NCIT:C4967 Adult Acute Lymphoblastic Leukemia 6 117741 -NCIT:C126309 Refractory Adult Acute Lymphoblastic Leukemia 7 117742 -NCIT:C7883 Recurrent Adult Acute Lymphoblastic Leukemia 7 117743 -NCIT:C9142 Adult T Acute Lymphoblastic Leukemia 7 117744 -NCIT:C9143 Adult B Acute Lymphoblastic Leukemia 7 117745 -NCIT:C114819 Adult B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 117746 -NCIT:C7177 Aleukemic Acute Lymphoblastic Leukemia 6 117747 -NCIT:C5631 Aleukemic Acute Lymphoblastic Leukemia Cutis 7 117748 -NCIT:C8644 B Acute Lymphoblastic Leukemia 6 117749 -NCIT:C121974 B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 7 117750 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 117751 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 117752 -NCIT:C128629 B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 7 117753 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 117754 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 117755 -NCIT:C130040 B Acute Lymphoblastic Leukemia with Intrachromosomal Amplification of Chromosome 21 7 117756 -NCIT:C142811 Recurrent B Acute Lymphoblastic Leukemia 7 117757 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 117758 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 117759 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 117760 -NCIT:C142812 Refractory B Acute Lymphoblastic Leukemia 7 117761 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 117762 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 117763 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 117764 -NCIT:C162776 B Acute Lymphoblastic Leukemia with t(4;11)(q21;23) 7 117765 -NCIT:C190847 B Acute Lymphoblastic Leukemia Associated with Down Syndrome 7 117766 -NCIT:C190957 B Acute Lymphoblastic Leukemia with ETV6-RUNX1-Like Features 7 117767 -NCIT:C36312 B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 7 117768 -NCIT:C114819 Adult B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 117769 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 117770 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 117771 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 117772 -NCIT:C80342 B Acute Lymphoblastic Leukemia with t(v;11q23.3); MLL Rearranged 7 117773 -NCIT:C80343 B Acute Lymphoblastic Leukemia with t(12;21)(p13.2;q22.1); ETV6-RUNX1 7 117774 -NCIT:C80344 Hyperdiploid B Acute Lymphoblastic Leukemia 7 117775 -NCIT:C80345 Hypodiploid B Acute Lymphoblastic Leukemia 7 117776 -NCIT:C80346 B Acute Lymphoblastic Leukemia with t(5;14)(q31.1;q32.3); IL3-IGH 7 117777 -NCIT:C80347 B Acute Lymphoblastic Leukemia with t(1;19)(q23;p13.3); E2A-PBX1 (TCF3-PBX1) 7 117778 -NCIT:C9140 Childhood B Acute Lymphoblastic Leukemia 7 117779 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 117780 -NCIT:C9143 Adult B Acute Lymphoblastic Leukemia 7 117781 -NCIT:C114819 Adult B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 117782 -NCIT:C3171 Acute Myeloid Leukemia 5 117783 -NCIT:C122687 Cytogenetically Normal Acute Myeloid Leukemia 6 117784 -NCIT:C186730 Therapy-Related Cytogenetically Normal Acute Myeloid Leukemia 7 117785 -NCIT:C134319 Refractory Acute Myeloid Leukemia 6 117786 -NCIT:C174486 Refractory Acute Myeloid Leukemia Not Otherwise Specified 7 117787 -NCIT:C174511 Refractory Acute Monoblastic and Monocytic Leukemia 8 117788 -NCIT:C174512 Refractory Acute Myelomonocytic Leukemia 8 117789 -NCIT:C180897 Refractory Acute Myeloid Leukemia with Myelodysplasia-Related Changes 7 117790 -NCIT:C187449 Refractory Childhood Acute Myeloid Leukemia 7 117791 -NCIT:C148427 Recurrent Acute Myeloid Leukemia 6 117792 -NCIT:C125715 Recurrent Acute Myeloid Leukemia with Myelodysplasia-Related Changes 7 117793 -NCIT:C156720 Recurrent Acute Myeloid Leukemia with Multilineage Dysplasia 8 117794 -NCIT:C156716 Recurrent Acute Myeloid Leukemia Not Otherwise Specified 7 117795 -NCIT:C156717 Recurrent Acute Myelomonocytic Leukemia 8 117796 -NCIT:C156722 Recurrent Acute Monoblastic and Monocytic Leukemia 8 117797 -NCIT:C156723 Recurrent Acute Erythroid Leukemia 8 117798 -NCIT:C156731 Recurrent Acute Megakaryoblastic Leukemia 8 117799 -NCIT:C156718 Recurrent Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 7 117800 -NCIT:C156719 Recurrent Acute Myeloid Leukemia with t (9;11) (p21.3; q23.3); MLLT3-MLL 8 117801 -NCIT:C169107 Recurrent Acute Promyelocytic Leukemia with PML-RARA 8 117802 -NCIT:C7882 Recurrent Adult Acute Myeloid Leukemia 7 117803 -NCIT:C9068 Recurrent Childhood Acute Myeloid Leukemia 7 117804 -NCIT:C25765 Secondary Acute Myeloid Leukemia 6 117805 -NCIT:C172129 Acute Myeloid Leukemia Arising from Previous Myeloproliferative Neoplasm 7 117806 -NCIT:C172130 Acute Myeloid Leukemia Arising from Previous Myelodysplastic/Myeloproliferative Neoplasm 7 117807 -NCIT:C27931 Benzene-Related Acute Myeloid Leukemia 7 117808 -NCIT:C4037 Acute Myeloid Leukemia Arising from Previous Myelodysplastic Syndrome 7 117809 -NCIT:C8252 Therapy-Related Acute Myeloid Leukemia 7 117810 -NCIT:C186730 Therapy-Related Cytogenetically Normal Acute Myeloid Leukemia 8 117811 -NCIT:C27754 Alkylating Agent-Related Acute Myeloid Leukemia 8 117812 -NCIT:C27755 Topoisomerase II Inhibitor-Related Acute Myeloid Leukemia 8 117813 -NCIT:C27753 Acute Myeloid Leukemia Not Otherwise Specified 6 117814 -NCIT:C122625 Childhood Acute Myeloid Leukemia Not Otherwise Specified 7 117815 -NCIT:C7940 Childhood Acute Monoblastic and Monocytic Leukemia 8 117816 -NCIT:C9162 Childhood Acute Monoblastic Leukemia 9 117817 -NCIT:C9163 Childhood Acute Monocytic Leukemia 9 117818 -NCIT:C7970 Childhood Acute Myelomonocytic Leukemia 8 117819 -NCIT:C7971 Childhood Acute Basophilic Leukemia 8 117820 -NCIT:C7972 Childhood Acute Megakaryoblastic Leukemia 8 117821 -NCIT:C8304 Childhood Acute Myeloid Leukemia with Minimal Differentiation 8 117822 -NCIT:C9158 Childhood Acute Myeloid Leukemia without Maturation 8 117823 -NCIT:C9164 Childhood Acute Erythroid Leukemia 8 117824 -NCIT:C9381 Childhood Acute Myeloid Leukemia with Maturation 8 117825 -NCIT:C156716 Recurrent Acute Myeloid Leukemia Not Otherwise Specified 7 117826 -NCIT:C156717 Recurrent Acute Myelomonocytic Leukemia 8 117827 -NCIT:C156722 Recurrent Acute Monoblastic and Monocytic Leukemia 8 117828 -NCIT:C156723 Recurrent Acute Erythroid Leukemia 8 117829 -NCIT:C156731 Recurrent Acute Megakaryoblastic Leukemia 8 117830 -NCIT:C174486 Refractory Acute Myeloid Leukemia Not Otherwise Specified 7 117831 -NCIT:C174511 Refractory Acute Monoblastic and Monocytic Leukemia 8 117832 -NCIT:C174512 Refractory Acute Myelomonocytic Leukemia 8 117833 -NCIT:C3164 Acute Basophilic Leukemia 7 117834 -NCIT:C7964 Adult Acute Basophilic Leukemia 8 117835 -NCIT:C7971 Childhood Acute Basophilic Leukemia 8 117836 -NCIT:C3170 Acute Megakaryoblastic Leukemia 7 117837 -NCIT:C156731 Recurrent Acute Megakaryoblastic Leukemia 8 117838 -NCIT:C7965 Adult Acute Megakaryoblastic Leukemia 8 117839 -NCIT:C7972 Childhood Acute Megakaryoblastic Leukemia 8 117840 -NCIT:C3249 Acute Myeloid Leukemia without Maturation 7 117841 -NCIT:C9158 Childhood Acute Myeloid Leukemia without Maturation 8 117842 -NCIT:C9380 Adult Acute Myeloid Leukemia without Maturation 8 117843 -NCIT:C3250 Acute Myeloid Leukemia with Maturation 7 117844 -NCIT:C7961 Adult Acute Myeloid Leukemia with Maturation 8 117845 -NCIT:C9381 Childhood Acute Myeloid Leukemia with Maturation 8 117846 -NCIT:C4344 Acute Panmyelosis with Myelofibrosis 7 117847 -NCIT:C7318 Acute Monoblastic and Monocytic Leukemia 7 117848 -NCIT:C156722 Recurrent Acute Monoblastic and Monocytic Leukemia 8 117849 -NCIT:C174511 Refractory Acute Monoblastic and Monocytic Leukemia 8 117850 -NCIT:C4861 Acute Monocytic Leukemia 8 117851 -NCIT:C5630 Aleukemic Monocytic Leukemia Cutis 9 117852 -NCIT:C8263 Adult Acute Monocytic Leukemia 9 117853 -NCIT:C9163 Childhood Acute Monocytic Leukemia 9 117854 -NCIT:C7171 Acute Monoblastic Leukemia 8 117855 -NCIT:C9156 Adult Acute Monoblastic Leukemia 9 117856 -NCIT:C9162 Childhood Acute Monoblastic Leukemia 9 117857 -NCIT:C7319 Adult Acute Monoblastic and Monocytic Leukemia 8 117858 -NCIT:C8263 Adult Acute Monocytic Leukemia 9 117859 -NCIT:C9156 Adult Acute Monoblastic Leukemia 9 117860 -NCIT:C7940 Childhood Acute Monoblastic and Monocytic Leukemia 8 117861 -NCIT:C9162 Childhood Acute Monoblastic Leukemia 9 117862 -NCIT:C9163 Childhood Acute Monocytic Leukemia 9 117863 -NCIT:C7463 Acute Myelomonocytic Leukemia 7 117864 -NCIT:C156717 Recurrent Acute Myelomonocytic Leukemia 8 117865 -NCIT:C174512 Refractory Acute Myelomonocytic Leukemia 8 117866 -NCIT:C42779 Acute Myelomonocytic Leukemia without Abnormal Eosinophils 8 117867 -NCIT:C7962 Adult Acute Myelomonocytic Leukemia 8 117868 -NCIT:C7970 Childhood Acute Myelomonocytic Leukemia 8 117869 -NCIT:C9020 Acute Myelomonocytic Leukemia with Abnormal Eosinophils 8 117870 -NCIT:C8460 Acute Myeloid Leukemia with Minimal Differentiation 7 117871 -NCIT:C8303 Adult Acute Myeloid Leukemia with Minimal Differentiation 8 117872 -NCIT:C8304 Childhood Acute Myeloid Leukemia with Minimal Differentiation 8 117873 -NCIT:C8923 Acute Erythroid Leukemia 7 117874 -NCIT:C156723 Recurrent Acute Erythroid Leukemia 8 117875 -NCIT:C7152 Erythroleukemia 8 117876 -NCIT:C68694 Adult Erythroleukemia 9 117877 -NCIT:C7467 Pure Erythroid Leukemia 8 117878 -NCIT:C68693 Adult Pure Erythroid Leukemia 9 117879 -NCIT:C9153 Adult Acute Erythroid Leukemia 8 117880 -NCIT:C68693 Adult Pure Erythroid Leukemia 9 117881 -NCIT:C68694 Adult Erythroleukemia 9 117882 -NCIT:C9164 Childhood Acute Erythroid Leukemia 8 117883 -NCIT:C7175 Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 6 117884 -NCIT:C122688 Core Binding Factor Acute Myeloid Leukemia 7 117885 -NCIT:C129785 Acute Myeloid Leukemia with BCR-ABL1 7 117886 -NCIT:C156718 Recurrent Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 7 117887 -NCIT:C156719 Recurrent Acute Myeloid Leukemia with t (9;11) (p21.3; q23.3); MLLT3-MLL 8 117888 -NCIT:C169107 Recurrent Acute Promyelocytic Leukemia with PML-RARA 8 117889 -NCIT:C162775 Acute Myeloid Leukemia with Trisomy 8 7 117890 -NCIT:C174129 Acute Myeloid Leukemia with MLL Rearrangement 7 117891 -NCIT:C132101 Acute Myeloid Leukemia with t(10;11)(p12;q23); MLLT10-MLL 8 117892 -NCIT:C132105 Acute Myeloid Leukemia with t(6;11)(q27;q23); MLLT4-MLL 8 117893 -NCIT:C6924 Acute Myeloid Leukemia with Variant MLL Translocations 8 117894 -NCIT:C82403 Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 8 117895 -NCIT:C156719 Recurrent Acute Myeloid Leukemia with t (9;11) (p21.3; q23.3); MLLT3-MLL 9 117896 -NCIT:C188451 Childhood Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 9 117897 -NCIT:C68696 Adult Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 9 117898 -NCIT:C3182 Acute Promyelocytic Leukemia with PML-RARA 7 117899 -NCIT:C169107 Recurrent Acute Promyelocytic Leukemia with PML-RARA 8 117900 -NCIT:C27756 Typical Acute Promyelocytic Leukemia 8 117901 -NCIT:C27757 Microgranular Acute Promyelocytic Leukemia 8 117902 -NCIT:C7968 Childhood Acute Promyelocytic Leukemia with PML-RARA 8 117903 -NCIT:C9155 Adult Acute Promyelocytic Leukemia with PML-RARA 8 117904 -NCIT:C36055 Acute Myeloid Leukemia with a Variant RARA Translocation 7 117905 -NCIT:C36056 Acute Myeloid Leukemia with t(11;17)(q23;q21) 8 117906 -NCIT:C36057 Acute Myeloid Leukemia with t(5;17)(q35;q21) 8 117907 -NCIT:C36058 Acute Myeloid Leukemia with t(11;17)(q13;q21) 8 117908 -NCIT:C38377 Acute Myeloid Leukemia with t(17;17)(q21;q21) 8 117909 -NCIT:C68700 Adult Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 7 117910 -NCIT:C68696 Adult Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 8 117911 -NCIT:C68697 Adult Acute Myeloid Leukemia with inv(16)(p13.1q22); CBFB-MYH11 8 117912 -NCIT:C68698 Adult Acute Myeloid Leukemia with t(16;16)(p13.1;q22); CBFB-MYH11 8 117913 -NCIT:C68699 Adult Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 8 117914 -NCIT:C9155 Adult Acute Promyelocytic Leukemia with PML-RARA 8 117915 -NCIT:C82423 Acute Myeloid Leukemia with t(6;9) (p23;q34.1); DEK-NUP214 7 117916 -NCIT:C82426 Acute Myeloid Leukemia with inv(3) (q21.3;q26.2) or t(3;3) (q21.3;q26.2); GATA2, MECOM 7 117917 -NCIT:C122716 Acute Myeloid Leukemia with inv(3) (q21.3;q26.2); GATA2, MECOM 8 117918 -NCIT:C122717 Acute Myeloid Leukemia with t(3;3) (q21.3;q26.2); GATA2, MECOM 8 117919 -NCIT:C82427 Acute Myeloid Leukemia (Megakaryoblastic) with t(1;22)(p13.3;q13.1); RBM15-MKL1 7 117920 -NCIT:C9287 Acute Myeloid Leukemia with inv(16)(p13.1q22) or t(16;16)(p13.1;q22); CBFB-MYH11 7 117921 -NCIT:C9018 Acute Myeloid Leukemia with inv(16)(p13.1q22); CBFB-MYH11 8 117922 -NCIT:C68697 Adult Acute Myeloid Leukemia with inv(16)(p13.1q22); CBFB-MYH11 9 117923 -NCIT:C9019 Acute Myeloid Leukemia with t(16;16)(p13.1;q22); CBFB-MYH11 8 117924 -NCIT:C68698 Adult Acute Myeloid Leukemia with t(16;16)(p13.1;q22); CBFB-MYH11 9 117925 -NCIT:C9288 Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 7 117926 -NCIT:C188450 Childhood Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 8 117927 -NCIT:C68699 Adult Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 8 117928 -NCIT:C7600 Acute Myeloid Leukemia with Myelodysplasia-Related Changes 6 117929 -NCIT:C125715 Recurrent Acute Myeloid Leukemia with Myelodysplasia-Related Changes 7 117930 -NCIT:C156720 Recurrent Acute Myeloid Leukemia with Multilineage Dysplasia 8 117931 -NCIT:C180897 Refractory Acute Myeloid Leukemia with Myelodysplasia-Related Changes 7 117932 -NCIT:C4037 Acute Myeloid Leukemia Arising from Previous Myelodysplastic Syndrome 7 117933 -NCIT:C9289 Acute Myeloid Leukemia with Multilineage Dysplasia 7 117934 -NCIT:C156720 Recurrent Acute Myeloid Leukemia with Multilineage Dysplasia 8 117935 -NCIT:C82430 Acute Myeloid Leukemia with Gene Mutations 6 117936 -NCIT:C126748 Acute Myeloid Leukemia with FLT3/ITD Mutation 7 117937 -NCIT:C129786 Acute Myeloid Leukemia with RUNX1 Mutation 7 117938 -NCIT:C151898 Acute Myeloid Leukemia with Germline CEBPA Mutation 7 117939 -NCIT:C82431 Acute Myeloid Leukemia with NPM1 Mutation 7 117940 -NCIT:C82433 Acute Myeloid Leukemia with CEBPA Mutation 7 117941 -NCIT:C129782 Acute Myeloid Leukemia with Biallelic Mutations of CEBPA 8 117942 -NCIT:C129783 Acute Myeloid Leukemia with Monoallelic Mutations of CEBPA 8 117943 -NCIT:C9154 Adult Acute Myeloid Leukemia 6 117944 -NCIT:C68700 Adult Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 7 117945 -NCIT:C68696 Adult Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 8 117946 -NCIT:C68697 Adult Acute Myeloid Leukemia with inv(16)(p13.1q22); CBFB-MYH11 8 117947 -NCIT:C68698 Adult Acute Myeloid Leukemia with t(16;16)(p13.1;q22); CBFB-MYH11 8 117948 -NCIT:C68699 Adult Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 8 117949 -NCIT:C9155 Adult Acute Promyelocytic Leukemia with PML-RARA 8 117950 -NCIT:C7319 Adult Acute Monoblastic and Monocytic Leukemia 7 117951 -NCIT:C8263 Adult Acute Monocytic Leukemia 8 117952 -NCIT:C9156 Adult Acute Monoblastic Leukemia 8 117953 -NCIT:C7882 Recurrent Adult Acute Myeloid Leukemia 7 117954 -NCIT:C7961 Adult Acute Myeloid Leukemia with Maturation 7 117955 -NCIT:C7962 Adult Acute Myelomonocytic Leukemia 7 117956 -NCIT:C7964 Adult Acute Basophilic Leukemia 7 117957 -NCIT:C7965 Adult Acute Megakaryoblastic Leukemia 7 117958 -NCIT:C8303 Adult Acute Myeloid Leukemia with Minimal Differentiation 7 117959 -NCIT:C9153 Adult Acute Erythroid Leukemia 7 117960 -NCIT:C68693 Adult Pure Erythroid Leukemia 8 117961 -NCIT:C68694 Adult Erythroleukemia 8 117962 -NCIT:C9380 Adult Acute Myeloid Leukemia without Maturation 7 117963 -NCIT:C9160 Childhood Acute Myeloid Leukemia 6 117964 -NCIT:C122625 Childhood Acute Myeloid Leukemia Not Otherwise Specified 7 117965 -NCIT:C7940 Childhood Acute Monoblastic and Monocytic Leukemia 8 117966 -NCIT:C9162 Childhood Acute Monoblastic Leukemia 9 117967 -NCIT:C9163 Childhood Acute Monocytic Leukemia 9 117968 -NCIT:C7970 Childhood Acute Myelomonocytic Leukemia 8 117969 -NCIT:C7971 Childhood Acute Basophilic Leukemia 8 117970 -NCIT:C7972 Childhood Acute Megakaryoblastic Leukemia 8 117971 -NCIT:C8304 Childhood Acute Myeloid Leukemia with Minimal Differentiation 8 117972 -NCIT:C9158 Childhood Acute Myeloid Leukemia without Maturation 8 117973 -NCIT:C9164 Childhood Acute Erythroid Leukemia 8 117974 -NCIT:C9381 Childhood Acute Myeloid Leukemia with Maturation 8 117975 -NCIT:C122690 Acute Myeloid Leukemia with t(7;12)(q36;p13); HLXB9-ETV6 7 117976 -NCIT:C122691 Childhood Acute Myeloid Leukemia with NUP98 Rearrangement 7 117977 -NCIT:C131502 Acute Myeloid Leukemia with t(5;11)(q35;p15); NUP98-NSD1 8 117978 -NCIT:C131504 Acute Myeloid Leukemia with t(11;15)(p15;q35); NUP98-JARID1A 8 117979 -NCIT:C132111 Acute Megakaryoblastic Leukemia with NUP98-KDM5A 8 117980 -NCIT:C122725 Childhood Acute Myeloid Leukemia with Abnormalities of Chromosome 5q 7 117981 -NCIT:C122726 Childhood Acute Myeloid Leukemia with Abnormalities of Chromosome 7 7 117982 -NCIT:C132101 Acute Myeloid Leukemia with t(10;11)(p12;q23); MLLT10-MLL 7 117983 -NCIT:C132105 Acute Myeloid Leukemia with t(6;11)(q27;q23); MLLT4-MLL 7 117984 -NCIT:C132109 Acute Megakaryoblastic Leukemia with CBFA2T3-GLIS2 7 117985 -NCIT:C167089 Acute Myeloid Leukemia with RAM Immunophenotype 7 117986 -NCIT:C187449 Refractory Childhood Acute Myeloid Leukemia 7 117987 -NCIT:C188450 Childhood Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 7 117988 -NCIT:C188451 Childhood Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 7 117989 -NCIT:C7968 Childhood Acute Promyelocytic Leukemia with PML-RARA 7 117990 -NCIT:C82431 Acute Myeloid Leukemia with NPM1 Mutation 7 117991 -NCIT:C82433 Acute Myeloid Leukemia with CEBPA Mutation 7 117992 -NCIT:C129782 Acute Myeloid Leukemia with Biallelic Mutations of CEBPA 8 117993 -NCIT:C129783 Acute Myeloid Leukemia with Monoallelic Mutations of CEBPA 8 117994 -NCIT:C9068 Recurrent Childhood Acute Myeloid Leukemia 7 117995 -NCIT:C7400 Burkitt Leukemia 5 117996 -NCIT:C151976 Recurrent Burkitt Leukemia 6 117997 -NCIT:C151977 Refractory Burkitt Leukemia 6 117998 -NCIT:C7952 Childhood Burkitt Leukemia 6 117999 -NCIT:C7954 Adult Burkitt Leukemia 6 118000 -NCIT:C7464 Acute Leukemia of Ambiguous Lineage 5 118001 -NCIT:C151975 Acute Leukemia of Ambiguous Lineage, Not Otherwise Specified 6 118002 -NCIT:C172626 Recurrent Acute Leukemia of Ambiguous Lineage 6 118003 -NCIT:C141446 Recurrent Acute Undifferentiated Leukemia 7 118004 -NCIT:C148423 Recurrent Mixed Phenotype Acute Leukemia 7 118005 -NCIT:C141445 Recurrent Acute Biphenotypic Leukemia 8 118006 -NCIT:C179204 Recurrent Acute Bilineal Leukemia 8 118007 -NCIT:C172630 Refractory Acute Leukemia of Ambiguous Lineage 6 118008 -NCIT:C148430 Refractory Mixed Phenotype Acute Leukemia 7 118009 -NCIT:C173683 Refractory Acute Biphenotypic Leukemia 8 118010 -NCIT:C179205 Refractory Acute Bilineal Leukemia 8 118011 -NCIT:C173503 Refractory Acute Undifferentiated Leukemia 7 118012 -NCIT:C82179 Mixed Phenotype Acute Leukemia 6 118013 -NCIT:C148423 Recurrent Mixed Phenotype Acute Leukemia 7 118014 -NCIT:C141445 Recurrent Acute Biphenotypic Leukemia 8 118015 -NCIT:C179204 Recurrent Acute Bilineal Leukemia 8 118016 -NCIT:C148430 Refractory Mixed Phenotype Acute Leukemia 7 118017 -NCIT:C173683 Refractory Acute Biphenotypic Leukemia 8 118018 -NCIT:C179205 Refractory Acute Bilineal Leukemia 8 118019 -NCIT:C151990 Mixed Phenotype Acute Leukemia, Not Otherwise Specified, Rare Subtypes 7 118020 -NCIT:C151991 Mixed Phenotype Acute Leukemia, B/T/Myeloid, Not Otherwise Specified 8 118021 -NCIT:C151992 Mixed Phenotype Acute Leukemia, B/T, Not Otherwise Specified 8 118022 -NCIT:C4673 Acute Biphenotypic Leukemia 7 118023 -NCIT:C126111 Infant Acute Biphenotypic Leukemia 8 118024 -NCIT:C141445 Recurrent Acute Biphenotypic Leukemia 8 118025 -NCIT:C173683 Refractory Acute Biphenotypic Leukemia 8 118026 -NCIT:C6923 Acute Bilineal Leukemia 7 118027 -NCIT:C179204 Recurrent Acute Bilineal Leukemia 8 118028 -NCIT:C179205 Refractory Acute Bilineal Leukemia 8 118029 -NCIT:C82192 Mixed Phenotype Acute Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 7 118030 -NCIT:C82203 Mixed Phenotype Acute Leukemia with t(v;11q23.3); MLL Rearranged 7 118031 -NCIT:C82212 Mixed Phenotype Acute Leukemia, B/Myeloid, Not Otherwise Specified 7 118032 -NCIT:C82213 Mixed Phenotype Acute Leukemia, T/Myeloid, Not Otherwise Specified 7 118033 -NCIT:C9298 Acute Undifferentiated Leukemia 6 118034 -NCIT:C126110 Infant Acute Undifferentiated Leukemia 7 118035 -NCIT:C141446 Recurrent Acute Undifferentiated Leukemia 7 118036 -NCIT:C173503 Refractory Acute Undifferentiated Leukemia 7 118037 -NCIT:C45240 Cutaneous Hematopoietic and Lymphoid Cell Neoplasm 3 118038 -NCIT:C168980 Cutaneous Histiocytic and Dendritic Cell Neoplasm 4 118039 -NCIT:C168983 Cutaneous Langerhans Cell Histiocytosis 5 118040 -NCIT:C168984 Cutaneous Indeterminate Dendritic Cell Tumor 5 118041 -NCIT:C168991 Cutaneous Erdheim-Chester Disease 5 118042 -NCIT:C27514 Adult Xanthogranuloma 5 118043 -NCIT:C3451 Juvenile Xanthogranuloma 5 118044 -NCIT:C171101 Cutaneous Lymphoma 4 118045 -NCIT:C168651 Cutaneous Burkitt Lymphoma 5 118046 -NCIT:C45266 Cutaneous Mantle Cell Lymphoma 5 118047 -NCIT:C45268 Cutaneous Nasal Type Extranodal NK/T-Cell Lymphoma 5 118048 -NCIT:C45271 Cutaneous Angioimmunoblastic T-Cell Lymphoma 5 118049 -NCIT:C45272 Cutaneous Adult T-Cell Leukemia/Lymphoma 5 118050 -NCIT:C7162 Primary Cutaneous Lymphoma 5 118051 -NCIT:C142876 Recurrent Primary Cutaneous Lymphoma 6 118052 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 7 118053 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 7 118054 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 8 118055 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 8 118056 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 8 118057 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 8 118058 -NCIT:C8686 Recurrent Mycosis Fungoides 8 118059 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 9 118060 -NCIT:C142877 Refractory Primary Cutaneous Lymphoma 6 118061 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 7 118062 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 7 118063 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 8 118064 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 8 118065 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 8 118066 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 8 118067 -NCIT:C8687 Refractory Mycosis Fungoides 8 118068 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 9 118069 -NCIT:C188114 Primary Cutaneous Non-Hodgkin Lymphoma 6 118070 -NCIT:C3467 Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 7 118071 -NCIT:C172442 Advanced Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 118072 -NCIT:C180374 Early Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 118073 -NCIT:C3246 Mycosis Fungoides 8 118074 -NCIT:C141143 Mycosis Fungoides by AJCC v7 Stage 9 118075 -NCIT:C7796 Stage I Mycosis Fungoides AJCC v7 10 118076 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 11 118077 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 11 118078 -NCIT:C7798 Stage II Mycosis Fungoides AJCC v7 10 118079 -NCIT:C7800 Stage III Mycosis Fungoides AJCC v7 10 118080 -NCIT:C7802 Stage IV Mycosis Fungoides AJCC v7 10 118081 -NCIT:C165783 Transformed Mycosis Fungoides 9 118082 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 118083 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 118084 -NCIT:C8686 Recurrent Mycosis Fungoides 9 118085 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 118086 -NCIT:C8687 Refractory Mycosis Fungoides 9 118087 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 118088 -NCIT:C39644 Mycosis Fungoides Variant 8 118089 -NCIT:C35464 Granulomatous Slack Skin Disease 9 118090 -NCIT:C35685 Folliculotropic Mycosis Fungoides 9 118091 -NCIT:C35794 Pagetoid Reticulosis 9 118092 -NCIT:C45332 Primary Cutaneous Peripheral T-Cell Lymphoma, Rare Subtype 8 118093 -NCIT:C139023 Primary Cutaneous Acral CD8-Positive T-Cell Lymphoma 9 118094 -NCIT:C45339 Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 118095 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 118096 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 118097 -NCIT:C45340 Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 118098 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 118099 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 118100 -NCIT:C6860 Primary Cutaneous Anaplastic Large Cell Lymphoma 8 118101 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 118102 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 118103 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 9 118104 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 9 118105 -NCIT:C6918 Subcutaneous Panniculitis-Like T-Cell Lymphoma 8 118106 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 118107 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 118108 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 118109 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 118110 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 118111 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 118112 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 118113 -NCIT:C8686 Recurrent Mycosis Fungoides 9 118114 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 118115 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 118116 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 118117 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 118118 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 118119 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 118120 -NCIT:C8687 Refractory Mycosis Fungoides 9 118121 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 118122 -NCIT:C6858 Primary Cutaneous B-Cell Non-Hodgkin Lymphoma 7 118123 -NCIT:C45193 Primary Cutaneous Diffuse Large B-Cell Lymphoma 8 118124 -NCIT:C45194 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 118125 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 118126 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 118127 -NCIT:C45213 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Other 9 118128 -NCIT:C45214 Primary Cutaneous Intravascular Large B-Cell Lymphoma 10 118129 -NCIT:C45215 Primary Cutaneous T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 10 118130 -NCIT:C45216 Primary Cutaneous Plasmablastic Lymphoma 10 118131 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 8 118132 -NCIT:C7230 Primary Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 118133 -NCIT:C45163 Borrelia Burgdoferi-Associated Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 118134 -NCIT:C7221 Primary Cutaneous Hodgkin Lymphoma 6 118135 -NCIT:C7218 Cutaneous Follicular Lymphoma 5 118136 -NCIT:C6859 Grade 3 Cutaneous Follicular Lymphoma 6 118137 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 6 118138 -NCIT:C7219 Grade 2 Cutaneous Follicular Lymphoma 6 118139 -NCIT:C7220 Grade 1 Cutaneous Follicular Lymphoma 6 118140 -NCIT:C45238 Cutaneous Precursor Lymphoid Neoplasm 4 118141 -NCIT:C45241 Cutaneous B Lymphoblastic Leukemia/Lymphoma 5 118142 -NCIT:C45242 Cutaneous T Lymphoblastic Leukemia/Lymphoma 5 118143 -NCIT:C5631 Aleukemic Acute Lymphoblastic Leukemia Cutis 5 118144 -NCIT:C45249 Cutaneous Mature B-Cell Neoplasm 4 118145 -NCIT:C168651 Cutaneous Burkitt Lymphoma 5 118146 -NCIT:C185044 Cutaneous Plasmacytoma 5 118147 -NCIT:C185155 Extramedullary Disease in Plasma Cell Myeloma Involving the Skin 5 118148 -NCIT:C45264 Cutaneous Chronic Lymphocytic Leukemia 5 118149 -NCIT:C45266 Cutaneous Mantle Cell Lymphoma 5 118150 -NCIT:C45267 Cutaneous Lymphomatoid Granulomatosis 5 118151 -NCIT:C6858 Primary Cutaneous B-Cell Non-Hodgkin Lymphoma 5 118152 -NCIT:C45193 Primary Cutaneous Diffuse Large B-Cell Lymphoma 6 118153 -NCIT:C45194 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 7 118154 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 8 118155 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 8 118156 -NCIT:C45213 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Other 7 118157 -NCIT:C45214 Primary Cutaneous Intravascular Large B-Cell Lymphoma 8 118158 -NCIT:C45215 Primary Cutaneous T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 8 118159 -NCIT:C45216 Primary Cutaneous Plasmablastic Lymphoma 8 118160 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 6 118161 -NCIT:C7230 Primary Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 6 118162 -NCIT:C45163 Borrelia Burgdoferi-Associated Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 7 118163 -NCIT:C7218 Cutaneous Follicular Lymphoma 5 118164 -NCIT:C6859 Grade 3 Cutaneous Follicular Lymphoma 6 118165 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 6 118166 -NCIT:C7219 Grade 2 Cutaneous Follicular Lymphoma 6 118167 -NCIT:C7220 Grade 1 Cutaneous Follicular Lymphoma 6 118168 -NCIT:C45250 Cutaneous Mature T-Cell and NK-Cell Neoplasm 4 118169 -NCIT:C3467 Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 5 118170 -NCIT:C172442 Advanced Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 6 118171 -NCIT:C180374 Early Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 6 118172 -NCIT:C3246 Mycosis Fungoides 6 118173 -NCIT:C141143 Mycosis Fungoides by AJCC v7 Stage 7 118174 -NCIT:C7796 Stage I Mycosis Fungoides AJCC v7 8 118175 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 9 118176 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 9 118177 -NCIT:C7798 Stage II Mycosis Fungoides AJCC v7 8 118178 -NCIT:C7800 Stage III Mycosis Fungoides AJCC v7 8 118179 -NCIT:C7802 Stage IV Mycosis Fungoides AJCC v7 8 118180 -NCIT:C165783 Transformed Mycosis Fungoides 7 118181 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 8 118182 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 8 118183 -NCIT:C8686 Recurrent Mycosis Fungoides 7 118184 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 8 118185 -NCIT:C8687 Refractory Mycosis Fungoides 7 118186 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 8 118187 -NCIT:C39644 Mycosis Fungoides Variant 6 118188 -NCIT:C35464 Granulomatous Slack Skin Disease 7 118189 -NCIT:C35685 Folliculotropic Mycosis Fungoides 7 118190 -NCIT:C35794 Pagetoid Reticulosis 7 118191 -NCIT:C45332 Primary Cutaneous Peripheral T-Cell Lymphoma, Rare Subtype 6 118192 -NCIT:C139023 Primary Cutaneous Acral CD8-Positive T-Cell Lymphoma 7 118193 -NCIT:C45339 Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 7 118194 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 8 118195 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 8 118196 -NCIT:C45340 Primary Cutaneous Gamma-Delta T-Cell Lymphoma 7 118197 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 8 118198 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 8 118199 -NCIT:C6860 Primary Cutaneous Anaplastic Large Cell Lymphoma 6 118200 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 7 118201 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 7 118202 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 7 118203 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 7 118204 -NCIT:C6918 Subcutaneous Panniculitis-Like T-Cell Lymphoma 6 118205 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 7 118206 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 7 118207 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 6 118208 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 7 118209 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 7 118210 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 7 118211 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 7 118212 -NCIT:C8686 Recurrent Mycosis Fungoides 7 118213 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 8 118214 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 6 118215 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 7 118216 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 7 118217 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 7 118218 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 7 118219 -NCIT:C8687 Refractory Mycosis Fungoides 7 118220 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 8 118221 -NCIT:C3721 Lymphomatoid Papulosis 5 118222 -NCIT:C139014 Type D Lymphomatoid Papulosis 6 118223 -NCIT:C139015 Type E Lymphomatoid Papulosis 6 118224 -NCIT:C139017 Lymphomatoid Papulosis with DUSP22-IRF4 Gene Rearrangement 6 118225 -NCIT:C7197 Type A Lymphomatoid Papulosis 6 118226 -NCIT:C7198 Type B Lymphomatoid Papulosis 6 118227 -NCIT:C7199 Type C Lymphomatoid Papulosis 6 118228 -NCIT:C45268 Cutaneous Nasal Type Extranodal NK/T-Cell Lymphoma 5 118229 -NCIT:C45271 Cutaneous Angioimmunoblastic T-Cell Lymphoma 5 118230 -NCIT:C45272 Cutaneous Adult T-Cell Leukemia/Lymphoma 5 118231 -NCIT:C45366 Primary Cutaneous CD4-Positive Small/Medium T-Cell Lymphoproliferative Disorder 5 118232 -NCIT:C7195 Primary Cutaneous CD30-Positive T-Cell Lymphoproliferative Disorder 5 118233 -NCIT:C6860 Primary Cutaneous Anaplastic Large Cell Lymphoma 6 118234 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 7 118235 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 7 118236 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 7 118237 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 7 118238 -NCIT:C7196 Borderline Primary Cutaneous CD30-Positive T-Cell Lymphoproliferative Disorder 6 118239 -NCIT:C7199 Type C Lymphomatoid Papulosis 7 118240 -NCIT:C7200 Anaplastic Large Cell Lymphoma, Lymphomatoid Papulosis-Like Histology 7 118241 -NCIT:C7197 Type A Lymphomatoid Papulosis 6 118242 -NCIT:C7137 Cutaneous Mastocytosis 4 118243 -NCIT:C43277 Pure Cutaneous Mastocytosis 5 118244 -NCIT:C3218 Diffuse Cutaneous Mastocytosis 6 118245 -NCIT:C3433 Urticaria Pigmentosa/Maculopapular Cutaneous Mastocytosis 6 118246 -NCIT:C7138 Solitary Mastocytoma of the Skin 6 118247 -NCIT:C7203 Blastic Plasmacytoid Dendritic Cell Neoplasm 4 118248 -NCIT:C156103 Recurrent Blastic Plasmacytoid Dendritic Cell Neoplasm 5 118249 -NCIT:C156104 Refractory Blastic Plasmacytoid Dendritic Cell Neoplasm 5 118250 -NCIT:C88156 Leukemia Cutis 4 118251 -NCIT:C45264 Cutaneous Chronic Lymphocytic Leukemia 5 118252 -NCIT:C4983 Aleukemic Leukemia Cutis 5 118253 -NCIT:C5630 Aleukemic Monocytic Leukemia Cutis 6 118254 -NCIT:C5631 Aleukemic Acute Lymphoblastic Leukemia Cutis 6 118255 -NCIT:C5503 Central Nervous System Hematopoietic Neoplasm 3 118256 -NCIT:C185037 Extramedullary Disease in Plasma Cell Myeloma Involving the Central Nervous System 4 118257 -NCIT:C185039 Extramedullary Disease in Plasma Cell Myeloma Involving the Leptomeninges 5 118258 -NCIT:C186662 Central Nervous System Lymphomatoid Granulomatosis 4 118259 -NCIT:C5440 Central Nervous System Leukemia 4 118260 -NCIT:C94754 Meningeal Leukemia 5 118261 -NCIT:C9111 Meningeal Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 118262 -NCIT:C7008 Intracranial Myeloid Sarcoma 4 118263 -NCIT:C87797 Secondary Central Nervous System Lymphoma 4 118264 -NCIT:C114949 Secondary Central Nervous System Hodgkin Lymphoma 5 118265 -NCIT:C5057 Secondary Cerebral Hodgkin Lymphoma 6 118266 -NCIT:C114950 Secondary Central Nervous System Non-Hodgkin Lymphoma 5 118267 -NCIT:C92944 Central Nervous System Histiocytic and Dendritic Cell Neoplasm 4 118268 -NCIT:C129806 Central Nervous System Langerhans Cell Histiocytosis 5 118269 -NCIT:C129807 Central Nervous System Histiocytic Sarcoma 5 118270 -NCIT:C129808 Central Nervous System Erdheim-Chester Disease 5 118271 -NCIT:C9301 Central Nervous System Lymphoma 4 118272 -NCIT:C114779 Central Nervous System Non-Hodgkin Lymphoma 5 118273 -NCIT:C146989 Refractory Central Nervous System Non-Hodgkin Lymphoma 6 118274 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 7 118275 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 118276 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 7 118277 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 118278 -NCIT:C146990 Recurrent Central Nervous System Non-Hodgkin Lymphoma 6 118279 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 7 118280 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 118281 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 7 118282 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 118283 -NCIT:C147948 Central Nervous System B-Cell Non-Hodgkin Lymphoma 6 118284 -NCIT:C71720 Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 7 118285 -NCIT:C129602 Central Nervous System Intravascular Large B-Cell Lymphoma 8 118286 -NCIT:C155797 Pituitary Gland Diffuse Large B-Cell Lymphoma 8 118287 -NCIT:C157067 Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 118288 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 118289 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 118290 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 118291 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 118292 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 118293 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 118294 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 118295 -NCIT:C95991 Dural Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 7 118296 -NCIT:C155796 Pituitary Gland Non-Hodgkin Lymphoma 6 118297 -NCIT:C155797 Pituitary Gland Diffuse Large B-Cell Lymphoma 7 118298 -NCIT:C157065 Primary Vitreoretinal Non-Hodgkin Lymphoma 6 118299 -NCIT:C157067 Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 7 118300 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 118301 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 118302 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 7 118303 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 118304 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 7 118305 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 118306 -NCIT:C4365 Primary Retinal Non-Hodgkin Lymphoma 7 118307 -NCIT:C5409 Central Nervous System T-Cell Non-Hodgkin Lymphoma 6 118308 -NCIT:C129600 Central Nervous System Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 7 118309 -NCIT:C5322 Central Nervous System Anaplastic Large Cell Lymphoma 8 118310 -NCIT:C129598 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Positive 9 118311 -NCIT:C129599 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Negative 9 118312 -NCIT:C7609 Cerebral Non-Hodgkin Lymphoma 6 118313 -NCIT:C114951 Central Nervous System Hodgkin Lymphoma 5 118314 -NCIT:C5055 Cerebral Hodgkin Lymphoma 6 118315 -NCIT:C138019 Recurrent Central Nervous System Lymphoma 5 118316 -NCIT:C146990 Recurrent Central Nervous System Non-Hodgkin Lymphoma 6 118317 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 7 118318 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 118319 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 7 118320 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 118321 -NCIT:C138020 Refractory Central Nervous System Lymphoma 5 118322 -NCIT:C146989 Refractory Central Nervous System Non-Hodgkin Lymphoma 6 118323 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 7 118324 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 118325 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 7 118326 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 118327 -NCIT:C186658 Immunodeficiency-Related Central Nervous System Lymphoma 5 118328 -NCIT:C8284 AIDS-Related Primary Central Nervous System Lymphoma 6 118329 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 7 118330 -NCIT:C5157 Spinal Cord Lymphoma 5 118331 -NCIT:C7611 Cerebral Lymphoma 5 118332 -NCIT:C5054 Cerebral Lymphoma in Immunocompetent Host 6 118333 -NCIT:C5055 Cerebral Hodgkin Lymphoma 6 118334 -NCIT:C7609 Cerebral Non-Hodgkin Lymphoma 6 118335 -NCIT:C94756 Meningeal Lymphoma 5 118336 -NCIT:C95991 Dural Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 6 118337 -NCIT:C7065 Lymphocytic Neoplasm 3 118338 -NCIT:C172133 Recurrent Malignant Lymphoid Neoplasm 4 118339 -NCIT:C131873 Recurrent Chronic Lymphocytic Leukemia/Small Lymphocytic Lymphoma 5 118340 -NCIT:C8154 Recurrent Small Lymphocytic Lymphoma 6 118341 -NCIT:C8645 Recurrent Chronic Lymphocytic Leukemia 6 118342 -NCIT:C158151 Recurrent Transformed Chronic Lymphocytic Leukemia 7 118343 -NCIT:C134157 Recurrent Lymphoma 5 118344 -NCIT:C138013 Recurrent B-Cell Lymphoma, Unclassifiable, with Features Intermediate between Diffuse Large B-Cell Lymphoma and Classic Hodgkin Lymphoma 6 118345 -NCIT:C138019 Recurrent Central Nervous System Lymphoma 6 118346 -NCIT:C146990 Recurrent Central Nervous System Non-Hodgkin Lymphoma 7 118347 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 8 118348 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 118349 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 118350 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 118351 -NCIT:C138021 Recurrent Testicular Lymphoma 6 118352 -NCIT:C138023 Recurrent Breast Lymphoma 6 118353 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 7 118354 -NCIT:C142876 Recurrent Primary Cutaneous Lymphoma 6 118355 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 7 118356 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 7 118357 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 8 118358 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 8 118359 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 8 118360 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 8 118361 -NCIT:C8686 Recurrent Mycosis Fungoides 8 118362 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 9 118363 -NCIT:C147863 Recurrent EBV-Related Lymphoma 6 118364 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 7 118365 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 7 118366 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 8 118367 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 8 118368 -NCIT:C153175 Recurrent Mediastinal Lymphoma 6 118369 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 7 118370 -NCIT:C157681 Recurrent Primary Bone Lymphoma 6 118371 -NCIT:C187196 Recurrent Childhood Lymphoma 6 118372 -NCIT:C115369 Recurrent Childhood Non-Hodgkin Lymphoma 7 118373 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 8 118374 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 8 118375 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 8 118376 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 8 118377 -NCIT:C8059 Recurrent Childhood Hodgkin Lymphoma 7 118378 -NCIT:C4937 Recurrent Hodgkin Lymphoma 6 118379 -NCIT:C133592 Recurrent Classic Hodgkin Lymphoma 7 118380 -NCIT:C136971 Recurrent Lymphocyte-Rich Classic Hodgkin Lymphoma 8 118381 -NCIT:C8649 Recurrent Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 118382 -NCIT:C8832 Recurrent Mixed Cellularity Classic Hodgkin Lymphoma 8 118383 -NCIT:C8837 Recurrent Nodular Sclerosis Classic Hodgkin Lymphoma 8 118384 -NCIT:C7259 Recurrent Nodular Lymphocyte Predominant Hodgkin Lymphoma 7 118385 -NCIT:C7789 Recurrent Adult Hodgkin Lymphoma 7 118386 -NCIT:C8059 Recurrent Childhood Hodgkin Lymphoma 7 118387 -NCIT:C9251 Recurrent Non-Hodgkin Lymphoma 6 118388 -NCIT:C115369 Recurrent Childhood Non-Hodgkin Lymphoma 7 118389 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 8 118390 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 8 118391 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 8 118392 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 8 118393 -NCIT:C146990 Recurrent Central Nervous System Non-Hodgkin Lymphoma 7 118394 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 8 118395 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 118396 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 118397 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 118398 -NCIT:C156232 Recurrent Aggressive Non-Hodgkin Lymphoma 7 118399 -NCIT:C178553 Recurrent Aggressive B-Cell Non-Hodgkin Lymphoma 8 118400 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 118401 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 9 118402 -NCIT:C5008 Recurrent Burkitt Lymphoma 9 118403 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 10 118404 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 10 118405 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 9 118406 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 118407 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 10 118408 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 9 118409 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 10 118410 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 10 118411 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 9 118412 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 9 118413 -NCIT:C178554 Recurrent Aggressive T-Cell Non-Hodgkin Lymphoma 8 118414 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 118415 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 9 118416 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 118417 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 118418 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 9 118419 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 118420 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 118421 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 9 118422 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 9 118423 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 9 118424 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 9 118425 -NCIT:C8490 Recurrent Aggressive Adult Non-Hodgkin Lymphoma 8 118426 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 9 118427 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 9 118428 -NCIT:C8164 Recurrent Adult Lymphoblastic Lymphoma 9 118429 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 9 118430 -NCIT:C181796 Recurrent Indolent Non-Hodgkin Lymphoma 7 118431 -NCIT:C183512 Recurrent Indolent B-Cell Non-Hodgkin Lymphoma 8 118432 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 9 118433 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 10 118434 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 118435 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 10 118436 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 9 118437 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 9 118438 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 9 118439 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 10 118440 -NCIT:C183513 Recurrent Indolent T-Cell Non-Hodgkin Lymphoma 8 118441 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 118442 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 118443 -NCIT:C8686 Recurrent Mycosis Fungoides 9 118444 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 118445 -NCIT:C8488 Recurrent Indolent Adult Non-Hodgkin Lymphoma 8 118446 -NCIT:C8098 Recurrent Adult Non-Hodgkin Lymphoma 7 118447 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 8 118448 -NCIT:C8488 Recurrent Indolent Adult Non-Hodgkin Lymphoma 8 118449 -NCIT:C8490 Recurrent Aggressive Adult Non-Hodgkin Lymphoma 8 118450 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 9 118451 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 9 118452 -NCIT:C8164 Recurrent Adult Lymphoblastic Lymphoma 9 118453 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 9 118454 -NCIT:C8663 Recurrent T-Cell Non-Hodgkin Lymphoma 7 118455 -NCIT:C178554 Recurrent Aggressive T-Cell Non-Hodgkin Lymphoma 8 118456 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 118457 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 9 118458 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 118459 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 118460 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 9 118461 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 118462 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 118463 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 9 118464 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 9 118465 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 9 118466 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 9 118467 -NCIT:C183513 Recurrent Indolent T-Cell Non-Hodgkin Lymphoma 8 118468 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 118469 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 118470 -NCIT:C8686 Recurrent Mycosis Fungoides 9 118471 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 118472 -NCIT:C8688 Recurrent Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 8 118473 -NCIT:C115439 Recurrent Mycosis Fungoides and Sezary Syndrome 9 118474 -NCIT:C176999 Recurrent Sezary Syndrome 10 118475 -NCIT:C8686 Recurrent Mycosis Fungoides 10 118476 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 118477 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 118478 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 9 118479 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 118480 -NCIT:C157689 Recurrent NK-Cell Lymphoma, Unclassifiable 9 118481 -NCIT:C165789 Recurrent Transformed T-cell Non-Hodgkin Lymphoma 9 118482 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 118483 -NCIT:C168778 Recurrent Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 9 118484 -NCIT:C168780 Recurrent Follicular T-Cell Lymphoma 9 118485 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 9 118486 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 118487 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 118488 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 118489 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 118490 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 118491 -NCIT:C8686 Recurrent Mycosis Fungoides 10 118492 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 118493 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 9 118494 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 9 118495 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 9 118496 -NCIT:C9250 Recurrent Anaplastic Large Cell Lymphoma 9 118497 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 10 118498 -NCIT:C162688 Recurrent Systemic Anaplastic Large Cell Lymphoma 10 118499 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 11 118500 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 118501 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 118502 -NCIT:C8702 Recurrent Transformed Non-Hodgkin Lymphoma 7 118503 -NCIT:C158149 Recurrent Transformed B-Cell Non-Hodgkin Lymphoma 8 118504 -NCIT:C160232 Recurrent Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 9 118505 -NCIT:C186483 Recurrent Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 9 118506 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 10 118507 -NCIT:C165789 Recurrent Transformed T-cell Non-Hodgkin Lymphoma 8 118508 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 9 118509 -NCIT:C8841 Recurrent B-Cell Non-Hodgkin Lymphoma 7 118510 -NCIT:C165799 Recurrent Mature B-Cell Non-Hodgkin Lymphoma 8 118511 -NCIT:C158149 Recurrent Transformed B-Cell Non-Hodgkin Lymphoma 9 118512 -NCIT:C160232 Recurrent Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 10 118513 -NCIT:C186483 Recurrent Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 10 118514 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 11 118515 -NCIT:C5007 Recurrent Follicular Lymphoma 9 118516 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 10 118517 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 10 118518 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 10 118519 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 11 118520 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 11 118521 -NCIT:C5008 Recurrent Burkitt Lymphoma 9 118522 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 10 118523 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 10 118524 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 9 118525 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 10 118526 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 118527 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 10 118528 -NCIT:C8154 Recurrent Small Lymphocytic Lymphoma 9 118529 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 9 118530 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 9 118531 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 10 118532 -NCIT:C8852 Recurrent Diffuse Large B-Cell Lymphoma 9 118533 -NCIT:C138015 Recurrent Extranodal Diffuse Large B-cell Lymphoma 10 118534 -NCIT:C138025 Recurrent Intravascular Large B-Cell Lymphoma 10 118535 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 118536 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 118537 -NCIT:C156696 Recurrent T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 10 118538 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 10 118539 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 118540 -NCIT:C157679 Recurrent Primary Effusion Lymphoma 10 118541 -NCIT:C157683 Recurrent Plasmablastic Lymphoma 10 118542 -NCIT:C160229 Recurrent High Grade B-Cell Lymphoma 10 118543 -NCIT:C151980 Recurrent High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 11 118544 -NCIT:C162451 Recurrent High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 11 118545 -NCIT:C188788 Recurrent High Grade B-Cell Lymphoma, Not Otherwise Specified 11 118546 -NCIT:C165240 Recurrent Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 118547 -NCIT:C160230 Recurrent Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 11 118548 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 11 118549 -NCIT:C182035 Recurrent Immunoblastic Lymphoma 11 118550 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 12 118551 -NCIT:C8926 Recurrent Centroblastic Lymphoma 11 118552 -NCIT:C183140 Recurrent Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 10 118553 -NCIT:C188790 Recurrent ALK-Positive Large B-Cell Lymphoma 10 118554 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 10 118555 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 11 118556 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 11 118557 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 118558 -NCIT:C178553 Recurrent Aggressive B-Cell Non-Hodgkin Lymphoma 8 118559 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 118560 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 9 118561 -NCIT:C5008 Recurrent Burkitt Lymphoma 9 118562 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 10 118563 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 10 118564 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 9 118565 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 118566 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 10 118567 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 9 118568 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 10 118569 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 10 118570 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 9 118571 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 9 118572 -NCIT:C183512 Recurrent Indolent B-Cell Non-Hodgkin Lymphoma 8 118573 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 9 118574 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 10 118575 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 118576 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 10 118577 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 9 118578 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 9 118579 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 9 118580 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 10 118581 -NCIT:C142810 Recurrent Acute Lymphoblastic Leukemia 5 118582 -NCIT:C142811 Recurrent B Acute Lymphoblastic Leukemia 6 118583 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 7 118584 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 7 118585 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 7 118586 -NCIT:C150131 Recurrent T Acute Lymphoblastic Leukemia 6 118587 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 7 118588 -NCIT:C7784 Recurrent Childhood Acute Lymphoblastic Leukemia 6 118589 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 7 118590 -NCIT:C7883 Recurrent Adult Acute Lymphoblastic Leukemia 6 118591 -NCIT:C142882 Recurrent Hairy Cell Leukemia 5 118592 -NCIT:C151976 Recurrent Burkitt Leukemia 5 118593 -NCIT:C157474 Recurrent Monomorphic Post-Transplant Lymphoproliferative Disorder 5 118594 -NCIT:C158081 Recurrent B-Cell Prolymphocytic Leukemia 5 118595 -NCIT:C171065 Recurrent Hairy Cell Leukemia Variant 5 118596 -NCIT:C172289 Recurrent Plasma Cell Neoplasm 5 118597 -NCIT:C133732 Recurrent Primary Amyloidosis 6 118598 -NCIT:C174054 Recurrent AL Amyloidosis 7 118599 -NCIT:C7025 Recurrent Plasma Cell Myeloma 6 118600 -NCIT:C173409 Recurrent Mature T-Cell and NK-Cell Neoplasm 5 118601 -NCIT:C150133 Recurrent T-Cell Prolymphocytic Leukemia 6 118602 -NCIT:C157692 Recurrent Aggressive NK-Cell Leukemia 6 118603 -NCIT:C180985 Recurrent T-Cell Large Granular Lymphocyte Leukemia 6 118604 -NCIT:C8688 Recurrent Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 6 118605 -NCIT:C115439 Recurrent Mycosis Fungoides and Sezary Syndrome 7 118606 -NCIT:C176999 Recurrent Sezary Syndrome 8 118607 -NCIT:C8686 Recurrent Mycosis Fungoides 8 118608 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 9 118609 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 7 118610 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 7 118611 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 7 118612 -NCIT:C157689 Recurrent NK-Cell Lymphoma, Unclassifiable 7 118613 -NCIT:C165789 Recurrent Transformed T-cell Non-Hodgkin Lymphoma 7 118614 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 8 118615 -NCIT:C168778 Recurrent Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 7 118616 -NCIT:C168780 Recurrent Follicular T-Cell Lymphoma 7 118617 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 7 118618 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 7 118619 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 8 118620 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 8 118621 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 8 118622 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 8 118623 -NCIT:C8686 Recurrent Mycosis Fungoides 8 118624 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 9 118625 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 7 118626 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 7 118627 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 7 118628 -NCIT:C9250 Recurrent Anaplastic Large Cell Lymphoma 7 118629 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 8 118630 -NCIT:C162688 Recurrent Systemic Anaplastic Large Cell Lymphoma 8 118631 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 9 118632 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 8 118633 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 8 118634 -NCIT:C8695 Recurrent T Lymphoblastic Leukemia/Lymphoma 5 118635 -NCIT:C150131 Recurrent T Acute Lymphoblastic Leukemia 6 118636 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 7 118637 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 6 118638 -NCIT:C172280 Refractory Malignant Lymphoid Neoplasm 4 118639 -NCIT:C134154 Refractory Lymphoma 5 118640 -NCIT:C138014 Refractory B-Cell Lymphoma, Unclassifiable, with Features Intermediate between Diffuse Large B-Cell Lymphoma and Classic Hodgkin Lymphoma 6 118641 -NCIT:C138020 Refractory Central Nervous System Lymphoma 6 118642 -NCIT:C146989 Refractory Central Nervous System Non-Hodgkin Lymphoma 7 118643 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 8 118644 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 118645 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 118646 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 118647 -NCIT:C138022 Refractory Testicular Lymphoma 6 118648 -NCIT:C138024 Refractory Breast Lymphoma 6 118649 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 7 118650 -NCIT:C142877 Refractory Primary Cutaneous Lymphoma 6 118651 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 7 118652 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 7 118653 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 8 118654 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 8 118655 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 8 118656 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 8 118657 -NCIT:C8687 Refractory Mycosis Fungoides 8 118658 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 9 118659 -NCIT:C153177 Refractory Mediastinal Lymphoma 6 118660 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 7 118661 -NCIT:C157682 Refractory Primary Bone Lymphoma 6 118662 -NCIT:C160149 Refractory EBV-Related Lymphoma 6 118663 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 7 118664 -NCIT:C187197 Refractory Childhood Lymphoma 6 118665 -NCIT:C115458 Refractory Childhood Hodgkin Lymphoma 7 118666 -NCIT:C8701 Refractory Non-Hodgkin Lymphoma 6 118667 -NCIT:C140091 Refractory Transformed Non-Hodgkin Lymphoma 7 118668 -NCIT:C158150 Refractory Transformed B-Cell Non-Hodgkin Lymphoma 8 118669 -NCIT:C160240 Refractory Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 9 118670 -NCIT:C186484 Refractory Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 9 118671 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 10 118672 -NCIT:C165791 Refractory Transformed T-cell Non-Hodgkin Lymphoma 8 118673 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 9 118674 -NCIT:C146989 Refractory Central Nervous System Non-Hodgkin Lymphoma 7 118675 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 8 118676 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 118677 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 118678 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 118679 -NCIT:C151978 Refractory Lymphoblastic Lymphoma 7 118680 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 8 118681 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 8 118682 -NCIT:C156233 Refractory Aggressive Non-Hodgkin Lymphoma 7 118683 -NCIT:C178555 Refractory Aggressive B-Cell Non-Hodgkin Lymphoma 8 118684 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 118685 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 9 118686 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 9 118687 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 10 118688 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 10 118689 -NCIT:C8847 Refractory Burkitt Lymphoma 9 118690 -NCIT:C8862 Refractory Mantle Cell Lymphoma 9 118691 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 9 118692 -NCIT:C178556 Refractory Aggressive T-Cell Non-Hodgkin Lymphoma 8 118693 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 9 118694 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 118695 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 118696 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 118697 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 118698 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 9 118699 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 9 118700 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 9 118701 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 9 118702 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 9 118703 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 118704 -NCIT:C173046 Refractory Indolent Non-Hodgkin Lymphoma 7 118705 -NCIT:C148175 Refractory Indolent Adult Non-Hodgkin Lymphoma 8 118706 -NCIT:C183514 Refractory Indolent B-Cell Non-Hodgkin Lymphoma 8 118707 -NCIT:C143085 Refractory Marginal Zone Lymphoma 9 118708 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 10 118709 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 118710 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 10 118711 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 9 118712 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 9 118713 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 9 118714 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 10 118715 -NCIT:C183515 Refractory Indolent T-Cell Non-Hodgkin Lymphoma 8 118716 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 118717 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 118718 -NCIT:C8687 Refractory Mycosis Fungoides 9 118719 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 118720 -NCIT:C8664 Refractory T-Cell Non-Hodgkin Lymphoma 7 118721 -NCIT:C178556 Refractory Aggressive T-Cell Non-Hodgkin Lymphoma 8 118722 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 9 118723 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 118724 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 118725 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 118726 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 118727 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 9 118728 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 9 118729 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 9 118730 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 9 118731 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 9 118732 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 118733 -NCIT:C183515 Refractory Indolent T-Cell Non-Hodgkin Lymphoma 8 118734 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 118735 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 118736 -NCIT:C8687 Refractory Mycosis Fungoides 9 118737 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 118738 -NCIT:C8689 Refractory Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 8 118739 -NCIT:C148129 Refractory Mycosis Fungoides and Sezary Syndrome 9 118740 -NCIT:C177000 Refractory Sezary Syndrome 10 118741 -NCIT:C8687 Refractory Mycosis Fungoides 10 118742 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 118743 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 9 118744 -NCIT:C157690 Refractory NK-Cell Lymphoma, Unclassifiable 9 118745 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 118746 -NCIT:C165791 Refractory Transformed T-cell Non-Hodgkin Lymphoma 9 118747 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 118748 -NCIT:C168779 Refractory Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 9 118749 -NCIT:C168781 Refractory Follicular T-Cell Lymphoma 9 118750 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 9 118751 -NCIT:C8658 Refractory Anaplastic Large Cell Lymphoma 9 118752 -NCIT:C162689 Refractory Systemic Anaplastic Large Cell Lymphoma 10 118753 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 11 118754 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 118755 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 118756 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 9 118757 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 9 118758 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 9 118759 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 118760 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 118761 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 118762 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 118763 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 118764 -NCIT:C8687 Refractory Mycosis Fungoides 10 118765 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 118766 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 118767 -NCIT:C8842 Refractory B-Cell Non-Hodgkin Lymphoma 7 118768 -NCIT:C178555 Refractory Aggressive B-Cell Non-Hodgkin Lymphoma 8 118769 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 118770 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 9 118771 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 9 118772 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 10 118773 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 10 118774 -NCIT:C8847 Refractory Burkitt Lymphoma 9 118775 -NCIT:C8862 Refractory Mantle Cell Lymphoma 9 118776 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 9 118777 -NCIT:C183514 Refractory Indolent B-Cell Non-Hodgkin Lymphoma 8 118778 -NCIT:C143085 Refractory Marginal Zone Lymphoma 9 118779 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 10 118780 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 118781 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 10 118782 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 9 118783 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 9 118784 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 9 118785 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 10 118786 -NCIT:C7228 Refractory Mature B-Cell Non-Hodgkin Lymphoma 8 118787 -NCIT:C143085 Refractory Marginal Zone Lymphoma 9 118788 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 10 118789 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 118790 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 10 118791 -NCIT:C158150 Refractory Transformed B-Cell Non-Hodgkin Lymphoma 9 118792 -NCIT:C160240 Refractory Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 10 118793 -NCIT:C186484 Refractory Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 10 118794 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 11 118795 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 9 118796 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 10 118797 -NCIT:C8846 Refractory Small Lymphocytic Lymphoma 9 118798 -NCIT:C8847 Refractory Burkitt Lymphoma 9 118799 -NCIT:C8853 Refractory Diffuse Large B-Cell Lymphoma 9 118800 -NCIT:C138018 Refractory Extranodal Diffuse Large B-cell Lymphoma 10 118801 -NCIT:C138026 Refractory Intravascular Large B-Cell Lymphoma 10 118802 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 118803 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 118804 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 10 118805 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 118806 -NCIT:C157678 Refractory T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 10 118807 -NCIT:C157680 Refractory Primary Effusion Lymphoma 10 118808 -NCIT:C157684 Refractory Plasmablastic Lymphoma 10 118809 -NCIT:C160233 Refractory High Grade B-Cell Lymphoma 10 118810 -NCIT:C151979 Refractory High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 11 118811 -NCIT:C162453 Refractory High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 11 118812 -NCIT:C188789 Refractory High Grade B-Cell Lymphoma, Not Otherwise Specified 11 118813 -NCIT:C165241 Refractory Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 118814 -NCIT:C160238 Refractory Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 11 118815 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 11 118816 -NCIT:C182034 Refractory Immunoblastic Lymphoma 11 118817 -NCIT:C8927 Refractory Centroblastic Lymphoma 11 118818 -NCIT:C183142 Refractory Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 10 118819 -NCIT:C188791 Refractory ALK-Positive Large B-Cell Lymphoma 10 118820 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 118821 -NCIT:C8858 Refractory Follicular Lymphoma 9 118822 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 10 118823 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 10 118824 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 10 118825 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 11 118826 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 11 118827 -NCIT:C8862 Refractory Mantle Cell Lymphoma 9 118828 -NCIT:C8836 Refractory Hodgkin Lymphoma 6 118829 -NCIT:C115458 Refractory Childhood Hodgkin Lymphoma 7 118830 -NCIT:C133736 Refractory Classic Hodgkin Lymphoma 7 118831 -NCIT:C142982 Refractory Lymphocyte-Rich Classic Hodgkin Lymphoma 8 118832 -NCIT:C8650 Refractory Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 118833 -NCIT:C8833 Refractory Mixed Cellularity Classic Hodgkin Lymphoma 8 118834 -NCIT:C8838 Refractory Nodular Sclerosis Classic Hodgkin Lymphoma 8 118835 -NCIT:C7260 Refractory Nodular Lymphocyte Predominant Hodgkin Lymphoma 7 118836 -NCIT:C136488 Refractory Acute Lymphoblastic Leukemia 5 118837 -NCIT:C122624 Refractory Childhood Acute Lymphoblastic Leukemia 6 118838 -NCIT:C126309 Refractory Adult Acute Lymphoblastic Leukemia 6 118839 -NCIT:C142812 Refractory B Acute Lymphoblastic Leukemia 6 118840 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 7 118841 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 7 118842 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 7 118843 -NCIT:C150510 Refractory T Acute Lymphoblastic Leukemia 6 118844 -NCIT:C151977 Refractory Burkitt Leukemia 5 118845 -NCIT:C157475 Refractory Monomorphic Post-Transplant Lymphoproliferative Disorder 5 118846 -NCIT:C157697 Refractory B-Cell Prolymphocytic Leukemia 5 118847 -NCIT:C171064 Refractory Hairy Cell Leukemia Variant 5 118848 -NCIT:C172282 Refractory Chronic Lymphocytic Leukemia/Small Lymphocytic Lymphoma 5 118849 -NCIT:C7886 Refractory Chronic Lymphocytic Leukemia 6 118850 -NCIT:C158152 Refractory Transformed Chronic Lymphocytic Leukemia 7 118851 -NCIT:C8846 Refractory Small Lymphocytic Lymphoma 6 118852 -NCIT:C173411 Refractory Mature T-Cell and NK-Cell Neoplasm 5 118853 -NCIT:C157691 Refractory T-Cell Prolymphocytic Leukemia 6 118854 -NCIT:C157693 Refractory Aggressive NK-Cell Leukemia 6 118855 -NCIT:C180986 Refractory T-Cell Large Granular Lymphocyte Leukemia 6 118856 -NCIT:C8689 Refractory Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 6 118857 -NCIT:C148129 Refractory Mycosis Fungoides and Sezary Syndrome 7 118858 -NCIT:C177000 Refractory Sezary Syndrome 8 118859 -NCIT:C8687 Refractory Mycosis Fungoides 8 118860 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 9 118861 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 7 118862 -NCIT:C157690 Refractory NK-Cell Lymphoma, Unclassifiable 7 118863 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 7 118864 -NCIT:C165791 Refractory Transformed T-cell Non-Hodgkin Lymphoma 7 118865 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 8 118866 -NCIT:C168779 Refractory Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 7 118867 -NCIT:C168781 Refractory Follicular T-Cell Lymphoma 7 118868 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 7 118869 -NCIT:C8658 Refractory Anaplastic Large Cell Lymphoma 7 118870 -NCIT:C162689 Refractory Systemic Anaplastic Large Cell Lymphoma 8 118871 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 9 118872 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 8 118873 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 8 118874 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 7 118875 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 7 118876 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 7 118877 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 7 118878 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 8 118879 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 8 118880 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 8 118881 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 8 118882 -NCIT:C8687 Refractory Mycosis Fungoides 8 118883 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 9 118884 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 7 118885 -NCIT:C7813 Refractory Plasma Cell Neoplasm 5 118886 -NCIT:C133731 Refractory Primary Amyloidosis 6 118887 -NCIT:C174055 Refractory AL Amyloidosis 7 118888 -NCIT:C7024 Refractory Plasma Cell Myeloma 6 118889 -NCIT:C178375 Triple-Class Refractory Plasma Cell Myeloma 7 118890 -NCIT:C8030 Refractory Hairy Cell Leukemia 5 118891 -NCIT:C8696 Refractory T Lymphoblastic Leukemia/Lymphoma 5 118892 -NCIT:C150510 Refractory T Acute Lymphoblastic Leukemia 6 118893 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 6 118894 -NCIT:C27907 B-Cell Neoplasm 4 118895 -NCIT:C188021 B-Cell Malignant Neoplasm 5 118896 -NCIT:C148065 Advanced B-Cell Malignant Neoplasm 6 118897 -NCIT:C171264 Advanced Diffuse Large B-Cell Lymphoma 7 118898 -NCIT:C172359 Advanced Follicular Lymphoma 7 118899 -NCIT:C172360 Advanced Marginal Zone Lymphoma 7 118900 -NCIT:C27911 Chronic Lymphocytic Leukemia/Small Lymphocytic Lymphoma 6 118901 -NCIT:C131873 Recurrent Chronic Lymphocytic Leukemia/Small Lymphocytic Lymphoma 7 118902 -NCIT:C8154 Recurrent Small Lymphocytic Lymphoma 8 118903 -NCIT:C8645 Recurrent Chronic Lymphocytic Leukemia 8 118904 -NCIT:C158151 Recurrent Transformed Chronic Lymphocytic Leukemia 9 118905 -NCIT:C172282 Refractory Chronic Lymphocytic Leukemia/Small Lymphocytic Lymphoma 7 118906 -NCIT:C7886 Refractory Chronic Lymphocytic Leukemia 8 118907 -NCIT:C158152 Refractory Transformed Chronic Lymphocytic Leukemia 9 118908 -NCIT:C8846 Refractory Small Lymphocytic Lymphoma 8 118909 -NCIT:C3163 Chronic Lymphocytic Leukemia 7 118910 -NCIT:C141206 Chronic Lymphocytic Leukemia- Modified Rai Staging System 8 118911 -NCIT:C7847 Stage 0 Chronic Lymphocytic Leukemia 9 118912 -NCIT:C7874 Stage I Chronic Lymphocytic Leukemia 9 118913 -NCIT:C7875 Stage II Chronic Lymphocytic Leukemia 9 118914 -NCIT:C7876 Stage III Chronic Lymphocytic Leukemia 9 118915 -NCIT:C8646 Stage IV Chronic Lymphocytic Leukemia 9 118916 -NCIT:C141208 Chronic Lymphocytic Leukemia- Binet Staging System 8 118917 -NCIT:C141209 Stage A Chronic Lymphocytic Leukemia 9 118918 -NCIT:C141210 Stage B Chronic Lymphocytic Leukemia 9 118919 -NCIT:C141211 Stage C Chronic Lymphocytic Leukemia 9 118920 -NCIT:C157624 Transformed Chronic Lymphocytic Leukemia to Diffuse Large B-Cell Lymphoma 8 118921 -NCIT:C158151 Recurrent Transformed Chronic Lymphocytic Leukemia 9 118922 -NCIT:C158152 Refractory Transformed Chronic Lymphocytic Leukemia 9 118923 -NCIT:C36272 Chronic Lymphocytic Leukemia with Plasmacytoid Differentiation 8 118924 -NCIT:C37202 Chronic Lymphocytic Leukemia with Immunoglobulin Heavy Chain Variable-Region Gene Somatic Hypermutation 8 118925 -NCIT:C37205 Chronic Lymphocytic Leukemia with Unmutated Immunoglobulin Heavy Chain Variable-Region Gene 8 118926 -NCIT:C45264 Cutaneous Chronic Lymphocytic Leukemia 8 118927 -NCIT:C7176 Aleukemic Chronic Lymphocytic Leukemia 8 118928 -NCIT:C7300 Splenic Manifestation of Chronic Lymphocytic Leukemia 8 118929 -NCIT:C7886 Refractory Chronic Lymphocytic Leukemia 8 118930 -NCIT:C158152 Refractory Transformed Chronic Lymphocytic Leukemia 9 118931 -NCIT:C8645 Recurrent Chronic Lymphocytic Leukemia 8 118932 -NCIT:C158151 Recurrent Transformed Chronic Lymphocytic Leukemia 9 118933 -NCIT:C37201 Chronic Lymphocytic Leukemia/Small Lymphocytic Lymphoma with Immunoglobulin Heavy Chain Variable-Region Gene Somatic Hypermutation 7 118934 -NCIT:C37202 Chronic Lymphocytic Leukemia with Immunoglobulin Heavy Chain Variable-Region Gene Somatic Hypermutation 8 118935 -NCIT:C37203 Small Lymphocytic Lymphoma with Immunoglobulin Heavy Chain Variable-Region Gene Somatic Hypermutation 8 118936 -NCIT:C37204 Chronic Lymphocytic Leukemia/Small Lymphocytic Lymphoma with Unmutated Immunoglobulin Heavy Chain Variable-Region Gene 7 118937 -NCIT:C37205 Chronic Lymphocytic Leukemia with Unmutated Immunoglobulin Heavy Chain Variable-Region Gene 8 118938 -NCIT:C37206 Small Lymphocytic Lymphoma with Unmutated Immunoglobulin Heavy Chain Variable-Region Gene 8 118939 -NCIT:C7540 Small Lymphocytic Lymphoma 7 118940 -NCIT:C141259 Small Lymphocytic Lymphoma by Ann Arbor Stage 8 118941 -NCIT:C8070 Ann Arbor Stage I Small Lymphocytic Lymphoma 9 118942 -NCIT:C8115 Ann Arbor Stage II Small Lymphocytic Lymphoma 9 118943 -NCIT:C8128 Ann Arbor Stage III Small Lymphocytic Lymphoma 9 118944 -NCIT:C8141 Ann Arbor Stage IV Small Lymphocytic Lymphoma 9 118945 -NCIT:C161605 Prostate Small Lymphocytic Lymphoma 8 118946 -NCIT:C36273 Small Lymphocytic Lymphoma with Plasmacytoid Differentiation 8 118947 -NCIT:C37203 Small Lymphocytic Lymphoma with Immunoglobulin Heavy Chain Variable-Region Gene Somatic Hypermutation 8 118948 -NCIT:C37206 Small Lymphocytic Lymphoma with Unmutated Immunoglobulin Heavy Chain Variable-Region Gene 8 118949 -NCIT:C7304 Splenic Small Lymphocytic Lymphoma 8 118950 -NCIT:C8154 Recurrent Small Lymphocytic Lymphoma 8 118951 -NCIT:C8846 Refractory Small Lymphocytic Lymphoma 8 118952 -NCIT:C3180 Plasma Cell Leukemia 6 118953 -NCIT:C191432 Secondary Plasma Cell Leukemia 7 118954 -NCIT:C3242 Plasma Cell Myeloma 6 118955 -NCIT:C139008 Plasma Cell Myeloma by DS Stage 7 118956 -NCIT:C7850 DS Stage I Plasma Cell Myeloma 8 118957 -NCIT:C181859 DS Stage IA Plasma Cell Myeloma 9 118958 -NCIT:C181860 DS Stage IB Plasma Cell Myeloma 9 118959 -NCIT:C7851 DS Stage II Plasma Cell Myeloma 8 118960 -NCIT:C181862 DS Stage IIA Plasma Cell Myeloma 9 118961 -NCIT:C181864 DS Stage IIB Plasma Cell Myeloma 9 118962 -NCIT:C7852 DS Stage III Plasma Cell Myeloma 8 118963 -NCIT:C181865 DS Stage IIIA Plasma Cell Myeloma 9 118964 -NCIT:C181866 DS Stage IIIB Plasma Cell Myeloma 9 118965 -NCIT:C139009 Plasma Cell Myeloma by ISS Stage 7 118966 -NCIT:C70658 ISS Stage I Plasma Cell Myeloma 8 118967 -NCIT:C70659 ISS Stage II Plasma Cell Myeloma 8 118968 -NCIT:C70660 ISS Stage III Plasma Cell Myeloma 8 118969 -NCIT:C141393 Plasma Cell Myeloma by RISS Stage 7 118970 -NCIT:C141394 RISS Stage I Plasma Cell Myeloma 8 118971 -NCIT:C141395 RISS Stage II Plasma Cell Myeloma 8 118972 -NCIT:C141396 RISS Stage III Plasma Cell Myeloma 8 118973 -NCIT:C185149 Extramedullary Disease in Plasma Cell Myeloma 7 118974 -NCIT:C185037 Extramedullary Disease in Plasma Cell Myeloma Involving the Central Nervous System 8 118975 -NCIT:C185039 Extramedullary Disease in Plasma Cell Myeloma Involving the Leptomeninges 9 118976 -NCIT:C185151 Extramedullary Disease in Plasma Cell Myeloma Involving the Spleen 8 118977 -NCIT:C185152 Extramedullary Disease in Plasma Cell Myeloma Involving the Liver 8 118978 -NCIT:C185153 Extramedullary Disease in Plasma Cell Myeloma Involving the Kidney 8 118979 -NCIT:C185155 Extramedullary Disease in Plasma Cell Myeloma Involving the Skin 8 118980 -NCIT:C185321 Extramedullary Disease in Plasma Cell Myeloma Involving the Lung 8 118981 -NCIT:C188074 Extramedullary Disease in Plasma Cell Myeloma Involving the Uterine Corpus 8 118982 -NCIT:C4734 Non-Secretory Plasma Cell Myeloma 7 118983 -NCIT:C7024 Refractory Plasma Cell Myeloma 7 118984 -NCIT:C178375 Triple-Class Refractory Plasma Cell Myeloma 8 118985 -NCIT:C7025 Recurrent Plasma Cell Myeloma 7 118986 -NCIT:C7149 Smoldering Plasma Cell Myeloma 7 118987 -NCIT:C7150 Indolent Plasma Cell Myeloma 7 118988 -NCIT:C7242 Plasma Cell Myeloma Post-Transplant Lymphoproliferative Disorder 7 118989 -NCIT:C7765 Osteosclerotic Plasma Cell Myeloma 7 118990 -NCIT:C3457 B-Cell Non-Hodgkin Lymphoma 6 118991 -NCIT:C141243 B-Cell Non-Hodgkin Lymphoma by Ann Arbor Stage 7 118992 -NCIT:C141250 B Lymphoblastic Lymphoma by Ann Arbor Stage 8 118993 -NCIT:C8871 Ann Arbor Stage I B Lymphoblastic Lymphoma 9 118994 -NCIT:C8872 Ann Arbor Stage III B Lymphoblastic Lymphoma 9 118995 -NCIT:C8873 Ann Arbor Stage IV B Lymphoblastic Lymphoma 9 118996 -NCIT:C8937 Ann Arbor Stage II B Lymphoblastic Lymphoma 9 118997 -NCIT:C141253 Burkitt Lymphoma by Ann Arbor Stage 8 118998 -NCIT:C5084 Ann Arbor Stage IV Burkitt Lymphoma 9 118999 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 10 119000 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 10 119001 -NCIT:C8848 Ann Arbor Stage I Burkitt Lymphoma 9 119002 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 10 119003 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 10 119004 -NCIT:C8849 Ann Arbor Stage II Burkitt Lymphoma 9 119005 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 10 119006 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 11 119007 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 11 119008 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 10 119009 -NCIT:C8850 Ann Arbor Stage III Burkitt Lymphoma 9 119010 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 10 119011 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 10 119012 -NCIT:C141254 Diffuse Large B-Cell Lymphoma by Ann Arbor Stage 8 119013 -NCIT:C141262 Primary Mediastinal (Thymic) Large B-Cell Lymphoma by Ann Arbor Stage 9 119014 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 119015 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 119016 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 119017 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 119018 -NCIT:C141263 Centroblastic Lymphoma by Ann Arbor Stage 9 119019 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 10 119020 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 10 119021 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 10 119022 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 10 119023 -NCIT:C8854 Ann Arbor Stage I Diffuse Large B-Cell Lymphoma 9 119024 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 10 119025 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 119026 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 10 119027 -NCIT:C8855 Ann Arbor Stage II Diffuse Large B-Cell Lymphoma 9 119028 -NCIT:C171158 Ann Arbor Stage IIX (Bulky) Diffuse Large B-Cell Lymphoma 10 119029 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 10 119030 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 11 119031 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 11 119032 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 119033 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 10 119034 -NCIT:C8856 Ann Arbor Stage III Diffuse Large B-Cell Lymphoma 9 119035 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 10 119036 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 119037 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 10 119038 -NCIT:C8857 Ann Arbor Stage IV Diffuse Large B-Cell Lymphoma 9 119039 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 10 119040 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 119041 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 10 119042 -NCIT:C141255 Follicular Lymphoma by Ann Arbor Stage 8 119043 -NCIT:C5006 Ann Arbor Stage IV Follicular Lymphoma 9 119044 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 10 119045 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 10 119046 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 10 119047 -NCIT:C8859 Ann Arbor Stage I Follicular Lymphoma 9 119048 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 10 119049 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 10 119050 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 10 119051 -NCIT:C8860 Ann Arbor Stage II Follicular Lymphoma 9 119052 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 10 119053 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 11 119054 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 11 119055 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 10 119056 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 11 119057 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 11 119058 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 10 119059 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 11 119060 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 11 119061 -NCIT:C8861 Ann Arbor Stage III Follicular Lymphoma 9 119062 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 10 119063 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 10 119064 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 10 119065 -NCIT:C141256 Lymphoplasmacytic Lymphoma by Ann Arbor Stage 8 119066 -NCIT:C8653 Ann Arbor Stage I Lymphoplasmacytic Lymphoma 9 119067 -NCIT:C8654 Ann Arbor Stage II Lymphoplasmacytic Lymphoma 9 119068 -NCIT:C8655 Ann Arbor Stage III Lymphoplasmacytic Lymphoma 9 119069 -NCIT:C8656 Ann Arbor Stage IV Lymphoplasmacytic Lymphoma 9 119070 -NCIT:C141257 Mantle Cell Lymphoma by Ann Arbor Stage 8 119071 -NCIT:C8465 Ann Arbor Stage I Mantle Cell Lymphoma 9 119072 -NCIT:C8483 Ann Arbor Stage III Mantle Cell Lymphoma 9 119073 -NCIT:C8486 Ann Arbor Stage IV Mantle Cell Lymphoma 9 119074 -NCIT:C9202 Ann Arbor Stage II Mantle Cell Lymphoma 9 119075 -NCIT:C8473 Ann Arbor Stage II Contiguous Mantle Cell Lymphoma 10 119076 -NCIT:C9198 Ann Arbor Stage II Non-Contiguous Mantle Cell Lymphoma 10 119077 -NCIT:C141258 Marginal Zone Lymphoma by Ann Arbor Stage 8 119078 -NCIT:C141260 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue by Ann Arbor Stage 9 119079 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 119080 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 119081 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 119082 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 119083 -NCIT:C141261 Nodal Marginal Zone Lymphoma by Ann Arbor Stage 9 119084 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 10 119085 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 10 119086 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 10 119087 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 10 119088 -NCIT:C68678 Ann Arbor Stage I Marginal Zone Lymphoma 9 119089 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 119090 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 10 119091 -NCIT:C68679 Ann Arbor Stage II Marginal Zone Lymphoma 9 119092 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 119093 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 10 119094 -NCIT:C68682 Ann Arbor Stage III Marginal Zone Lymphoma 9 119095 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 119096 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 10 119097 -NCIT:C68683 Ann Arbor Stage IV Marginal Zone Lymphoma 9 119098 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 119099 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 10 119100 -NCIT:C141259 Small Lymphocytic Lymphoma by Ann Arbor Stage 8 119101 -NCIT:C8070 Ann Arbor Stage I Small Lymphocytic Lymphoma 9 119102 -NCIT:C8115 Ann Arbor Stage II Small Lymphocytic Lymphoma 9 119103 -NCIT:C8128 Ann Arbor Stage III Small Lymphocytic Lymphoma 9 119104 -NCIT:C8141 Ann Arbor Stage IV Small Lymphocytic Lymphoma 9 119105 -NCIT:C27308 Ann Arbor Stage I B-Cell Non-Hodgkin Lymphoma 8 119106 -NCIT:C68678 Ann Arbor Stage I Marginal Zone Lymphoma 9 119107 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 119108 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 10 119109 -NCIT:C8070 Ann Arbor Stage I Small Lymphocytic Lymphoma 9 119110 -NCIT:C8465 Ann Arbor Stage I Mantle Cell Lymphoma 9 119111 -NCIT:C8653 Ann Arbor Stage I Lymphoplasmacytic Lymphoma 9 119112 -NCIT:C8848 Ann Arbor Stage I Burkitt Lymphoma 9 119113 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 10 119114 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 10 119115 -NCIT:C8854 Ann Arbor Stage I Diffuse Large B-Cell Lymphoma 9 119116 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 10 119117 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 119118 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 10 119119 -NCIT:C8859 Ann Arbor Stage I Follicular Lymphoma 9 119120 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 10 119121 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 10 119122 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 10 119123 -NCIT:C8871 Ann Arbor Stage I B Lymphoblastic Lymphoma 9 119124 -NCIT:C8843 Ann Arbor Stage II B-Cell Non-Hodgkin Lymphoma 8 119125 -NCIT:C68679 Ann Arbor Stage II Marginal Zone Lymphoma 9 119126 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 119127 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 10 119128 -NCIT:C8115 Ann Arbor Stage II Small Lymphocytic Lymphoma 9 119129 -NCIT:C8654 Ann Arbor Stage II Lymphoplasmacytic Lymphoma 9 119130 -NCIT:C8849 Ann Arbor Stage II Burkitt Lymphoma 9 119131 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 10 119132 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 11 119133 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 11 119134 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 10 119135 -NCIT:C8855 Ann Arbor Stage II Diffuse Large B-Cell Lymphoma 9 119136 -NCIT:C171158 Ann Arbor Stage IIX (Bulky) Diffuse Large B-Cell Lymphoma 10 119137 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 10 119138 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 11 119139 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 11 119140 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 119141 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 10 119142 -NCIT:C8860 Ann Arbor Stage II Follicular Lymphoma 9 119143 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 10 119144 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 11 119145 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 11 119146 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 10 119147 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 11 119148 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 11 119149 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 10 119150 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 11 119151 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 11 119152 -NCIT:C8937 Ann Arbor Stage II B Lymphoblastic Lymphoma 9 119153 -NCIT:C9202 Ann Arbor Stage II Mantle Cell Lymphoma 9 119154 -NCIT:C8473 Ann Arbor Stage II Contiguous Mantle Cell Lymphoma 10 119155 -NCIT:C9198 Ann Arbor Stage II Non-Contiguous Mantle Cell Lymphoma 10 119156 -NCIT:C8844 Ann Arbor Stage III B-Cell Non-Hodgkin Lymphoma 8 119157 -NCIT:C68682 Ann Arbor Stage III Marginal Zone Lymphoma 9 119158 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 119159 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 10 119160 -NCIT:C8128 Ann Arbor Stage III Small Lymphocytic Lymphoma 9 119161 -NCIT:C8483 Ann Arbor Stage III Mantle Cell Lymphoma 9 119162 -NCIT:C8655 Ann Arbor Stage III Lymphoplasmacytic Lymphoma 9 119163 -NCIT:C8850 Ann Arbor Stage III Burkitt Lymphoma 9 119164 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 10 119165 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 10 119166 -NCIT:C8856 Ann Arbor Stage III Diffuse Large B-Cell Lymphoma 9 119167 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 10 119168 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 119169 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 10 119170 -NCIT:C8861 Ann Arbor Stage III Follicular Lymphoma 9 119171 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 10 119172 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 10 119173 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 10 119174 -NCIT:C8872 Ann Arbor Stage III B Lymphoblastic Lymphoma 9 119175 -NCIT:C8845 Ann Arbor Stage IV B-Cell Non-Hodgkin Lymphoma 8 119176 -NCIT:C5006 Ann Arbor Stage IV Follicular Lymphoma 9 119177 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 10 119178 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 10 119179 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 10 119180 -NCIT:C5084 Ann Arbor Stage IV Burkitt Lymphoma 9 119181 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 10 119182 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 10 119183 -NCIT:C68683 Ann Arbor Stage IV Marginal Zone Lymphoma 9 119184 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 119185 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 10 119186 -NCIT:C8141 Ann Arbor Stage IV Small Lymphocytic Lymphoma 9 119187 -NCIT:C8486 Ann Arbor Stage IV Mantle Cell Lymphoma 9 119188 -NCIT:C8656 Ann Arbor Stage IV Lymphoplasmacytic Lymphoma 9 119189 -NCIT:C8857 Ann Arbor Stage IV Diffuse Large B-Cell Lymphoma 9 119190 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 10 119191 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 119192 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 10 119193 -NCIT:C8873 Ann Arbor Stage IV B Lymphoblastic Lymphoma 9 119194 -NCIT:C147948 Central Nervous System B-Cell Non-Hodgkin Lymphoma 7 119195 -NCIT:C71720 Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 119196 -NCIT:C129602 Central Nervous System Intravascular Large B-Cell Lymphoma 9 119197 -NCIT:C155797 Pituitary Gland Diffuse Large B-Cell Lymphoma 9 119198 -NCIT:C157067 Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 119199 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 119200 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 119201 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 119202 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 119203 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 119204 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 119205 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 119206 -NCIT:C95991 Dural Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 119207 -NCIT:C178541 Aggressive B-Cell Non-Hodgkin Lymphoma 7 119208 -NCIT:C131911 Burkitt-Like Lymphoma with 11q Aberration 8 119209 -NCIT:C178553 Recurrent Aggressive B-Cell Non-Hodgkin Lymphoma 8 119210 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 119211 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 9 119212 -NCIT:C5008 Recurrent Burkitt Lymphoma 9 119213 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 10 119214 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 10 119215 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 9 119216 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 119217 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 10 119218 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 9 119219 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 10 119220 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 10 119221 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 9 119222 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 9 119223 -NCIT:C178555 Refractory Aggressive B-Cell Non-Hodgkin Lymphoma 8 119224 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 119225 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 9 119226 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 9 119227 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 10 119228 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 10 119229 -NCIT:C8847 Refractory Burkitt Lymphoma 9 119230 -NCIT:C8862 Refractory Mantle Cell Lymphoma 9 119231 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 9 119232 -NCIT:C2912 Burkitt Lymphoma 8 119233 -NCIT:C141253 Burkitt Lymphoma by Ann Arbor Stage 9 119234 -NCIT:C5084 Ann Arbor Stage IV Burkitt Lymphoma 10 119235 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 11 119236 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 11 119237 -NCIT:C8848 Ann Arbor Stage I Burkitt Lymphoma 10 119238 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 11 119239 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 11 119240 -NCIT:C8849 Ann Arbor Stage II Burkitt Lymphoma 10 119241 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 11 119242 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 12 119243 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 12 119244 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 11 119245 -NCIT:C8850 Ann Arbor Stage III Burkitt Lymphoma 10 119246 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 11 119247 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 11 119248 -NCIT:C168651 Cutaneous Burkitt Lymphoma 9 119249 -NCIT:C188075 Kidney Burkitt Lymphoma 9 119250 -NCIT:C27409 Small Intestinal Burkitt Lymphoma 9 119251 -NCIT:C27410 Small Intestinal Atypical Burkitt/Burkitt-Like Lymphoma 10 119252 -NCIT:C27694 EBV-Related Burkitt Lymphoma 9 119253 -NCIT:C27122 Endemic Burkitt Lymphoma 10 119254 -NCIT:C27914 Sporadic Burkitt Lymphoma 9 119255 -NCIT:C27915 Immunodeficiency-Related Burkitt Lymphoma 9 119256 -NCIT:C7244 Burkitt Lymphoma Post-Transplant Lymphoproliferative Disorder 10 119257 -NCIT:C7245 Burkitt-Like Lymphoma Post-Transplant Lymphoproliferative Disorder 11 119258 -NCIT:C7255 Methotrexate-Related Burkitt Lymphoma 10 119259 -NCIT:C8286 AIDS-Related Burkitt Lymphoma 10 119260 -NCIT:C27857 AIDS-Related Burkitt Lymphoma with Plasmacytoid Differentiation 11 119261 -NCIT:C40376 Breast Burkitt Lymphoma 9 119262 -NCIT:C5008 Recurrent Burkitt Lymphoma 9 119263 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 10 119264 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 10 119265 -NCIT:C5251 Gastric Burkitt Lymphoma 9 119266 -NCIT:C6917 Atypical Burkitt/Burkitt-Like Lymphoma 9 119267 -NCIT:C27410 Small Intestinal Atypical Burkitt/Burkitt-Like Lymphoma 10 119268 -NCIT:C7245 Burkitt-Like Lymphoma Post-Transplant Lymphoproliferative Disorder 10 119269 -NCIT:C7188 Classical Burkitt Lymphoma 9 119270 -NCIT:C7189 Burkitt Lymphoma with Plasmacytoid Differentiation 9 119271 -NCIT:C27857 AIDS-Related Burkitt Lymphoma with Plasmacytoid Differentiation 10 119272 -NCIT:C7309 Splenic Burkitt Lymphoma 9 119273 -NCIT:C8847 Refractory Burkitt Lymphoma 9 119274 -NCIT:C9062 Adult Burkitt Lymphoma 9 119275 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 10 119276 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 10 119277 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 11 119278 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 11 119279 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 10 119280 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 10 119281 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 10 119282 -NCIT:C9095 Childhood Burkitt Lymphoma 9 119283 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 10 119284 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 10 119285 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 10 119286 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 10 119287 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 10 119288 -NCIT:C96502 Colorectal Burkitt Lymphoma 9 119289 -NCIT:C27465 Colon Burkitt Lymphoma 10 119290 -NCIT:C3460 Grade 3 Follicular Lymphoma 8 119291 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 9 119292 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 10 119293 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 10 119294 -NCIT:C6859 Grade 3 Cutaneous Follicular Lymphoma 9 119295 -NCIT:C7191 Grade 3a Follicular Lymphoma 9 119296 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 10 119297 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 10 119298 -NCIT:C7192 Grade 3b Follicular Lymphoma 9 119299 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 10 119300 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 10 119301 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 9 119302 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 9 119303 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 10 119304 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 10 119305 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 9 119306 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 9 119307 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 9 119308 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 10 119309 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 10 119310 -NCIT:C36081 Diffuse Large B-Cell Lymphoma Activated B-Cell Type 8 119311 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 9 119312 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 9 119313 -NCIT:C4337 Mantle Cell Lymphoma 8 119314 -NCIT:C141257 Mantle Cell Lymphoma by Ann Arbor Stage 9 119315 -NCIT:C8465 Ann Arbor Stage I Mantle Cell Lymphoma 10 119316 -NCIT:C8483 Ann Arbor Stage III Mantle Cell Lymphoma 10 119317 -NCIT:C8486 Ann Arbor Stage IV Mantle Cell Lymphoma 10 119318 -NCIT:C9202 Ann Arbor Stage II Mantle Cell Lymphoma 10 119319 -NCIT:C8473 Ann Arbor Stage II Contiguous Mantle Cell Lymphoma 11 119320 -NCIT:C9198 Ann Arbor Stage II Non-Contiguous Mantle Cell Lymphoma 11 119321 -NCIT:C161604 Prostate Mantle Cell Lymphoma 9 119322 -NCIT:C181210 Parotid Gland Mantle Cell Lymphoma 9 119323 -NCIT:C188080 Tonsillar Mantle Cell Lymphoma 9 119324 -NCIT:C27440 Gastric Mantle Cell Lymphoma 9 119325 -NCIT:C27441 Small Intestinal Mantle Cell Lymphoma 9 119326 -NCIT:C39747 Pleomorphic Variant Mantle Cell Lymphoma 9 119327 -NCIT:C45266 Cutaneous Mantle Cell Lymphoma 9 119328 -NCIT:C7229 Blastoid Variant Mantle Cell Lymphoma 9 119329 -NCIT:C7306 Splenic Mantle Cell Lymphoma 9 119330 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 9 119331 -NCIT:C8862 Refractory Mantle Cell Lymphoma 9 119332 -NCIT:C96505 Colorectal Mantle Cell Lymphoma 9 119333 -NCIT:C27411 Colon Mantle Cell Lymphoma 10 119334 -NCIT:C45194 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 8 119335 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 119336 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 119337 -NCIT:C45231 Diffuse Large B-Cell Lymphoma Unclassifiable 8 119338 -NCIT:C7212 AIDS-Related Diffuse Large B-cell Lymphoma 8 119339 -NCIT:C27858 AIDS-Related Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 9 119340 -NCIT:C27859 AIDS-Related Plasmablastic Lymphoma 9 119341 -NCIT:C38160 AIDS-Related Plasmablastic Lymphoma of Mucosa Site 10 119342 -NCIT:C9016 AIDS-Related Plasmablastic Lymphoma of the Oral Mucosa 11 119343 -NCIT:C8285 AIDS-Related Immunoblastic Lymphoma 9 119344 -NCIT:C9017 AIDS-Related Primary Effusion Lymphoma 9 119345 -NCIT:C7246 Diffuse Large B-Cell Lymphoma Post-Transplant Lymphoproliferative Disorder 8 119346 -NCIT:C7247 Anaplastic Lymphoma Post-Transplant Lymphoproliferative Disorder 9 119347 -NCIT:C7248 Centroblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 9 119348 -NCIT:C7249 Immunoblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 9 119349 -NCIT:C7933 Grade III Lymphomatoid Granulomatosis 8 119350 -NCIT:C115150 Adult Grade III Lymphomatoid Granulomatosis 9 119351 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 119352 -NCIT:C115204 Childhood Grade III Lymphomatoid Granulomatosis 9 119353 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 10 119354 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 9 119355 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 119356 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 10 119357 -NCIT:C8868 B Lymphoblastic Lymphoma 8 119358 -NCIT:C141250 B Lymphoblastic Lymphoma by Ann Arbor Stage 9 119359 -NCIT:C8871 Ann Arbor Stage I B Lymphoblastic Lymphoma 10 119360 -NCIT:C8872 Ann Arbor Stage III B Lymphoblastic Lymphoma 10 119361 -NCIT:C8873 Ann Arbor Stage IV B Lymphoblastic Lymphoma 10 119362 -NCIT:C8937 Ann Arbor Stage II B Lymphoblastic Lymphoma 10 119363 -NCIT:C7209 Childhood B Lymphoblastic Lymphoma 9 119364 -NCIT:C7310 Splenic B Lymphoblastic Lymphoma 9 119365 -NCIT:C7338 Adult B Lymphoblastic Lymphoma 9 119366 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 9 119367 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 9 119368 -NCIT:C7056 Mature B-Cell Non-Hodgkin Lymphoma 7 119369 -NCIT:C131911 Burkitt-Like Lymphoma with 11q Aberration 8 119370 -NCIT:C133494 Large B-Cell Lymphoma with IRF4 Rearrangement 8 119371 -NCIT:C188458 Childhood Large B-Cell Lymphoma with IRF4 Rearrangement 9 119372 -NCIT:C139681 Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 8 119373 -NCIT:C160232 Recurrent Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 9 119374 -NCIT:C160240 Refractory Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 9 119375 -NCIT:C165799 Recurrent Mature B-Cell Non-Hodgkin Lymphoma 8 119376 -NCIT:C158149 Recurrent Transformed B-Cell Non-Hodgkin Lymphoma 9 119377 -NCIT:C160232 Recurrent Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 10 119378 -NCIT:C186483 Recurrent Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 10 119379 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 11 119380 -NCIT:C5007 Recurrent Follicular Lymphoma 9 119381 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 10 119382 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 10 119383 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 10 119384 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 11 119385 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 11 119386 -NCIT:C5008 Recurrent Burkitt Lymphoma 9 119387 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 10 119388 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 10 119389 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 9 119390 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 10 119391 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 119392 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 10 119393 -NCIT:C8154 Recurrent Small Lymphocytic Lymphoma 9 119394 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 9 119395 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 9 119396 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 10 119397 -NCIT:C8852 Recurrent Diffuse Large B-Cell Lymphoma 9 119398 -NCIT:C138015 Recurrent Extranodal Diffuse Large B-cell Lymphoma 10 119399 -NCIT:C138025 Recurrent Intravascular Large B-Cell Lymphoma 10 119400 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 119401 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 119402 -NCIT:C156696 Recurrent T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 10 119403 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 10 119404 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 119405 -NCIT:C157679 Recurrent Primary Effusion Lymphoma 10 119406 -NCIT:C157683 Recurrent Plasmablastic Lymphoma 10 119407 -NCIT:C160229 Recurrent High Grade B-Cell Lymphoma 10 119408 -NCIT:C151980 Recurrent High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 11 119409 -NCIT:C162451 Recurrent High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 11 119410 -NCIT:C188788 Recurrent High Grade B-Cell Lymphoma, Not Otherwise Specified 11 119411 -NCIT:C165240 Recurrent Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 119412 -NCIT:C160230 Recurrent Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 11 119413 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 11 119414 -NCIT:C182035 Recurrent Immunoblastic Lymphoma 11 119415 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 12 119416 -NCIT:C8926 Recurrent Centroblastic Lymphoma 11 119417 -NCIT:C183140 Recurrent Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 10 119418 -NCIT:C188790 Recurrent ALK-Positive Large B-Cell Lymphoma 10 119419 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 10 119420 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 11 119421 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 11 119422 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 119423 -NCIT:C171299 Indolent B-Cell Non-Hodgkin Lymphoma 8 119424 -NCIT:C175451 Primary Uveal Non-Hodgkin Lymphoma 9 119425 -NCIT:C175464 Primary Choroidal Non-Hodgkin Lymphoma 10 119426 -NCIT:C175466 Primary Ciliary Body Non-Hodgkin Lymphoma 10 119427 -NCIT:C175467 Primary Iris Non-Hodgkin Lymphoma 10 119428 -NCIT:C3212 Lymphoplasmacytic Lymphoma 9 119429 -NCIT:C141256 Lymphoplasmacytic Lymphoma by Ann Arbor Stage 10 119430 -NCIT:C8653 Ann Arbor Stage I Lymphoplasmacytic Lymphoma 11 119431 -NCIT:C8654 Ann Arbor Stage II Lymphoplasmacytic Lymphoma 11 119432 -NCIT:C8655 Ann Arbor Stage III Lymphoplasmacytic Lymphoma 11 119433 -NCIT:C8656 Ann Arbor Stage IV Lymphoplasmacytic Lymphoma 11 119434 -NCIT:C7305 Splenic Lymphoplasmacytic Lymphoma 10 119435 -NCIT:C80307 Waldenstrom Macroglobulinemia 10 119436 -NCIT:C115212 Familial Waldenstrom Macroglobulinemia 11 119437 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 11 119438 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 11 119439 -NCIT:C155910 Smoldering Waldenstrom Macroglobulinemia 11 119440 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 10 119441 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 11 119442 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 10 119443 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 11 119444 -NCIT:C3465 Grade 1 Follicular Lymphoma 9 119445 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 10 119446 -NCIT:C7220 Grade 1 Cutaneous Follicular Lymphoma 10 119447 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 10 119448 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 10 119449 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 11 119450 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 11 119451 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 10 119452 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 10 119453 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 10 119454 -NCIT:C37203 Small Lymphocytic Lymphoma with Immunoglobulin Heavy Chain Variable-Region Gene Somatic Hypermutation 9 119455 -NCIT:C4341 Marginal Zone Lymphoma 9 119456 -NCIT:C141258 Marginal Zone Lymphoma by Ann Arbor Stage 10 119457 -NCIT:C141260 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue by Ann Arbor Stage 11 119458 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 119459 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 119460 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 119461 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 119462 -NCIT:C141261 Nodal Marginal Zone Lymphoma by Ann Arbor Stage 11 119463 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 12 119464 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 12 119465 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 12 119466 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 12 119467 -NCIT:C68678 Ann Arbor Stage I Marginal Zone Lymphoma 11 119468 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 119469 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 12 119470 -NCIT:C68679 Ann Arbor Stage II Marginal Zone Lymphoma 11 119471 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 119472 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 12 119473 -NCIT:C68682 Ann Arbor Stage III Marginal Zone Lymphoma 11 119474 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 119475 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 12 119476 -NCIT:C68683 Ann Arbor Stage IV Marginal Zone Lymphoma 11 119477 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 119478 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 12 119479 -NCIT:C143085 Refractory Marginal Zone Lymphoma 10 119480 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 11 119481 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 119482 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 11 119483 -NCIT:C172360 Advanced Marginal Zone Lymphoma 10 119484 -NCIT:C3898 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 119485 -NCIT:C123394 Childhood Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 119486 -NCIT:C141260 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue by Ann Arbor Stage 11 119487 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 119488 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 119489 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 119490 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 119491 -NCIT:C172844 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue Involving the Digestive System 11 119492 -NCIT:C5266 Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 12 119493 -NCIT:C27763 Helicobacter Pylori-Associated Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 13 119494 -NCIT:C5635 Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 12 119495 -NCIT:C45166 Campylobacter Jejuni-Associated Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 13 119496 -NCIT:C5768 Liver Mucosa-Associated Lymphoid Tissue Lymphoma 12 119497 -NCIT:C95626 Esophageal Mucosa-Associated Lymphoid Tissue Lymphoma 12 119498 -NCIT:C96506 Colorectal Mucosa-Associated Lymphoid Tissue Lymphoma 12 119499 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 13 119500 -NCIT:C173693 Salivary Gland Mucosa-Associated Lymphoid Tissue Lymphoma 11 119501 -NCIT:C35687 Parotid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 12 119502 -NCIT:C181910 Endometrial Mucosa-Associated Lymphoid Tissue Lymphoma 11 119503 -NCIT:C35688 Breast Mucosa-Associated Lymphoid Tissue Lymphoma 11 119504 -NCIT:C35689 Ocular Adnexal Mucosa-Associated Lymphoid Tissue Lymphoma 11 119505 -NCIT:C175431 Conjunctival Mucosa-Associated Lymphoid Tissue Lymphoma 12 119506 -NCIT:C175482 Lacrimal System Mucosa-Associated Lymphoid Tissue Lymphoma 12 119507 -NCIT:C175483 Lacrimal Gland Mucosa-Associated Lymphoid Tissue Lymphoma 13 119508 -NCIT:C175484 Lacrimal Drainage System Mucosa-Associated Lymphoid Tissue Lymphoma 13 119509 -NCIT:C182357 Diffusion Restriction 12 119510 -NCIT:C44960 Chlamydia Psittaci-Associated Ocular Adnexal Mucosa-Associated Lymphoid Tissue Lymphoma 12 119511 -NCIT:C39878 Bladder Mucosa-Associated Lymphoid Tissue Lymphoma 11 119512 -NCIT:C45380 Thymic Mucosa-Associated Lymphoid Tissue Lymphoma 11 119513 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 119514 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 119515 -NCIT:C5264 Lung Mucosa-Associated Lymphoid Tissue Lymphoma 11 119516 -NCIT:C7230 Primary Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 119517 -NCIT:C45163 Borrelia Burgdoferi-Associated Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 119518 -NCIT:C7601 Thyroid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 11 119519 -NCIT:C95991 Dural Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 119520 -NCIT:C4663 Splenic Marginal Zone Lymphoma 10 119521 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 11 119522 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 11 119523 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 10 119524 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 11 119525 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 119526 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 11 119527 -NCIT:C8863 Nodal Marginal Zone Lymphoma 10 119528 -NCIT:C141261 Nodal Marginal Zone Lymphoma by Ann Arbor Stage 11 119529 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 12 119530 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 12 119531 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 12 119532 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 12 119533 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 11 119534 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 11 119535 -NCIT:C80299 Pediatric Nodal Marginal Zone Lymphoma 11 119536 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 9 119537 -NCIT:C7264 Diffuse Follicular Lymphoma 9 119538 -NCIT:C7194 Grade 2 Diffuse Follicular Lymphoma 10 119539 -NCIT:C9464 Grade 1 Diffuse Follicular Lymphoma 10 119540 -NCIT:C8968 Grade 2 Follicular Lymphoma 9 119541 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 10 119542 -NCIT:C7219 Grade 2 Cutaneous Follicular Lymphoma 10 119543 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 10 119544 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 10 119545 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 11 119546 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 11 119547 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 10 119548 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 10 119549 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 10 119550 -NCIT:C179717 Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 8 119551 -NCIT:C156699 Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 9 119552 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 10 119553 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 10 119554 -NCIT:C157625 Transformed Small Lymphocytic Lymphoma to Diffuse Large B-Cell Lymphoma 9 119555 -NCIT:C185134 Transformed Lymphoplasmacytic Lymphoma to Diffuse Large B-Cell Lymphoma 9 119556 -NCIT:C185135 Transformed Waldenstrom Macroglobulinemia to Diffuse Large B-Cell Lymphoma 10 119557 -NCIT:C186483 Recurrent Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 9 119558 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 10 119559 -NCIT:C186484 Refractory Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 9 119560 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 10 119561 -NCIT:C2912 Burkitt Lymphoma 8 119562 -NCIT:C141253 Burkitt Lymphoma by Ann Arbor Stage 9 119563 -NCIT:C5084 Ann Arbor Stage IV Burkitt Lymphoma 10 119564 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 11 119565 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 11 119566 -NCIT:C8848 Ann Arbor Stage I Burkitt Lymphoma 10 119567 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 11 119568 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 11 119569 -NCIT:C8849 Ann Arbor Stage II Burkitt Lymphoma 10 119570 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 11 119571 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 12 119572 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 12 119573 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 11 119574 -NCIT:C8850 Ann Arbor Stage III Burkitt Lymphoma 10 119575 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 11 119576 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 11 119577 -NCIT:C168651 Cutaneous Burkitt Lymphoma 9 119578 -NCIT:C188075 Kidney Burkitt Lymphoma 9 119579 -NCIT:C27409 Small Intestinal Burkitt Lymphoma 9 119580 -NCIT:C27410 Small Intestinal Atypical Burkitt/Burkitt-Like Lymphoma 10 119581 -NCIT:C27694 EBV-Related Burkitt Lymphoma 9 119582 -NCIT:C27122 Endemic Burkitt Lymphoma 10 119583 -NCIT:C27914 Sporadic Burkitt Lymphoma 9 119584 -NCIT:C27915 Immunodeficiency-Related Burkitt Lymphoma 9 119585 -NCIT:C7244 Burkitt Lymphoma Post-Transplant Lymphoproliferative Disorder 10 119586 -NCIT:C7245 Burkitt-Like Lymphoma Post-Transplant Lymphoproliferative Disorder 11 119587 -NCIT:C7255 Methotrexate-Related Burkitt Lymphoma 10 119588 -NCIT:C8286 AIDS-Related Burkitt Lymphoma 10 119589 -NCIT:C27857 AIDS-Related Burkitt Lymphoma with Plasmacytoid Differentiation 11 119590 -NCIT:C40376 Breast Burkitt Lymphoma 9 119591 -NCIT:C5008 Recurrent Burkitt Lymphoma 9 119592 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 10 119593 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 10 119594 -NCIT:C5251 Gastric Burkitt Lymphoma 9 119595 -NCIT:C6917 Atypical Burkitt/Burkitt-Like Lymphoma 9 119596 -NCIT:C27410 Small Intestinal Atypical Burkitt/Burkitt-Like Lymphoma 10 119597 -NCIT:C7245 Burkitt-Like Lymphoma Post-Transplant Lymphoproliferative Disorder 10 119598 -NCIT:C7188 Classical Burkitt Lymphoma 9 119599 -NCIT:C7189 Burkitt Lymphoma with Plasmacytoid Differentiation 9 119600 -NCIT:C27857 AIDS-Related Burkitt Lymphoma with Plasmacytoid Differentiation 10 119601 -NCIT:C7309 Splenic Burkitt Lymphoma 9 119602 -NCIT:C8847 Refractory Burkitt Lymphoma 9 119603 -NCIT:C9062 Adult Burkitt Lymphoma 9 119604 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 10 119605 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 10 119606 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 11 119607 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 11 119608 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 10 119609 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 10 119610 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 10 119611 -NCIT:C9095 Childhood Burkitt Lymphoma 9 119612 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 10 119613 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 10 119614 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 10 119615 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 10 119616 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 10 119617 -NCIT:C96502 Colorectal Burkitt Lymphoma 9 119618 -NCIT:C27465 Colon Burkitt Lymphoma 10 119619 -NCIT:C3082 Heavy Chain Disease 8 119620 -NCIT:C3083 Gamma Heavy Chain Disease 9 119621 -NCIT:C3132 Alpha Heavy Chain Disease 9 119622 -NCIT:C3892 Mu Heavy Chain Disease 9 119623 -NCIT:C3209 Follicular Lymphoma 8 119624 -NCIT:C138185 Duodenal-Type Follicular Lymphoma 9 119625 -NCIT:C138186 Predominantly Diffuse Follicular Lymphoma with 1p36 Deletion 9 119626 -NCIT:C141255 Follicular Lymphoma by Ann Arbor Stage 9 119627 -NCIT:C5006 Ann Arbor Stage IV Follicular Lymphoma 10 119628 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 11 119629 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 11 119630 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 11 119631 -NCIT:C8859 Ann Arbor Stage I Follicular Lymphoma 10 119632 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 11 119633 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 11 119634 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 11 119635 -NCIT:C8860 Ann Arbor Stage II Follicular Lymphoma 10 119636 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 11 119637 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 12 119638 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 12 119639 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 11 119640 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 12 119641 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 12 119642 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 11 119643 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 12 119644 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 12 119645 -NCIT:C8861 Ann Arbor Stage III Follicular Lymphoma 10 119646 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 11 119647 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 11 119648 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 11 119649 -NCIT:C150589 Testicular Follicular Lymphoma 9 119650 -NCIT:C156410 Thyroid Gland Follicular Lymphoma 9 119651 -NCIT:C161603 Prostate Follicular Lymphoma 9 119652 -NCIT:C172359 Advanced Follicular Lymphoma 9 119653 -NCIT:C173715 Salivary Gland Follicular Lymphoma 9 119654 -NCIT:C173716 Parotid Gland Follicular Lymphoma 10 119655 -NCIT:C175430 Conjunctival Follicular Lymphoma 9 119656 -NCIT:C175488 Lacrimal Gland Follicular Lymphoma 9 119657 -NCIT:C181211 Lung Follicular Lymphoma 9 119658 -NCIT:C3460 Grade 3 Follicular Lymphoma 9 119659 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 10 119660 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 11 119661 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 11 119662 -NCIT:C6859 Grade 3 Cutaneous Follicular Lymphoma 10 119663 -NCIT:C7191 Grade 3a Follicular Lymphoma 10 119664 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 11 119665 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 11 119666 -NCIT:C7192 Grade 3b Follicular Lymphoma 10 119667 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 11 119668 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 11 119669 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 10 119670 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 10 119671 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 11 119672 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 11 119673 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 10 119674 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 10 119675 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 10 119676 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 11 119677 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 11 119678 -NCIT:C3465 Grade 1 Follicular Lymphoma 9 119679 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 10 119680 -NCIT:C7220 Grade 1 Cutaneous Follicular Lymphoma 10 119681 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 10 119682 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 10 119683 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 11 119684 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 11 119685 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 10 119686 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 10 119687 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 10 119688 -NCIT:C37209 Diffuse Blastoid B-Cell Lymphoma 9 119689 -NCIT:C40377 Breast Follicular Lymphoma 9 119690 -NCIT:C5007 Recurrent Follicular Lymphoma 9 119691 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 10 119692 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 10 119693 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 10 119694 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 11 119695 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 11 119696 -NCIT:C7218 Cutaneous Follicular Lymphoma 9 119697 -NCIT:C6859 Grade 3 Cutaneous Follicular Lymphoma 10 119698 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 10 119699 -NCIT:C7219 Grade 2 Cutaneous Follicular Lymphoma 10 119700 -NCIT:C7220 Grade 1 Cutaneous Follicular Lymphoma 10 119701 -NCIT:C7254 Methotrexate-Associated Follicular Lymphoma 9 119702 -NCIT:C7264 Diffuse Follicular Lymphoma 9 119703 -NCIT:C7194 Grade 2 Diffuse Follicular Lymphoma 10 119704 -NCIT:C9464 Grade 1 Diffuse Follicular Lymphoma 10 119705 -NCIT:C7307 Splenic Follicular Lymphoma 9 119706 -NCIT:C80297 Pediatric-Type Follicular Lymphoma 9 119707 -NCIT:C80298 Intestinal Follicular Lymphoma 9 119708 -NCIT:C96056 Small Intestinal Follicular Lymphoma 10 119709 -NCIT:C8858 Refractory Follicular Lymphoma 9 119710 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 10 119711 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 10 119712 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 10 119713 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 11 119714 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 11 119715 -NCIT:C8968 Grade 2 Follicular Lymphoma 9 119716 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 10 119717 -NCIT:C7219 Grade 2 Cutaneous Follicular Lymphoma 10 119718 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 10 119719 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 10 119720 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 11 119721 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 11 119722 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 10 119723 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 10 119724 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 10 119725 -NCIT:C4337 Mantle Cell Lymphoma 8 119726 -NCIT:C141257 Mantle Cell Lymphoma by Ann Arbor Stage 9 119727 -NCIT:C8465 Ann Arbor Stage I Mantle Cell Lymphoma 10 119728 -NCIT:C8483 Ann Arbor Stage III Mantle Cell Lymphoma 10 119729 -NCIT:C8486 Ann Arbor Stage IV Mantle Cell Lymphoma 10 119730 -NCIT:C9202 Ann Arbor Stage II Mantle Cell Lymphoma 10 119731 -NCIT:C8473 Ann Arbor Stage II Contiguous Mantle Cell Lymphoma 11 119732 -NCIT:C9198 Ann Arbor Stage II Non-Contiguous Mantle Cell Lymphoma 11 119733 -NCIT:C161604 Prostate Mantle Cell Lymphoma 9 119734 -NCIT:C181210 Parotid Gland Mantle Cell Lymphoma 9 119735 -NCIT:C188080 Tonsillar Mantle Cell Lymphoma 9 119736 -NCIT:C27440 Gastric Mantle Cell Lymphoma 9 119737 -NCIT:C27441 Small Intestinal Mantle Cell Lymphoma 9 119738 -NCIT:C39747 Pleomorphic Variant Mantle Cell Lymphoma 9 119739 -NCIT:C45266 Cutaneous Mantle Cell Lymphoma 9 119740 -NCIT:C7229 Blastoid Variant Mantle Cell Lymphoma 9 119741 -NCIT:C7306 Splenic Mantle Cell Lymphoma 9 119742 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 9 119743 -NCIT:C8862 Refractory Mantle Cell Lymphoma 9 119744 -NCIT:C96505 Colorectal Mantle Cell Lymphoma 9 119745 -NCIT:C27411 Colon Mantle Cell Lymphoma 10 119746 -NCIT:C6858 Primary Cutaneous B-Cell Non-Hodgkin Lymphoma 8 119747 -NCIT:C45193 Primary Cutaneous Diffuse Large B-Cell Lymphoma 9 119748 -NCIT:C45194 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 119749 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 119750 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 119751 -NCIT:C45213 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Other 10 119752 -NCIT:C45214 Primary Cutaneous Intravascular Large B-Cell Lymphoma 11 119753 -NCIT:C45215 Primary Cutaneous T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 11 119754 -NCIT:C45216 Primary Cutaneous Plasmablastic Lymphoma 11 119755 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 9 119756 -NCIT:C7230 Primary Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 119757 -NCIT:C45163 Borrelia Burgdoferi-Associated Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 119758 -NCIT:C7228 Refractory Mature B-Cell Non-Hodgkin Lymphoma 8 119759 -NCIT:C143085 Refractory Marginal Zone Lymphoma 9 119760 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 10 119761 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 119762 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 10 119763 -NCIT:C158150 Refractory Transformed B-Cell Non-Hodgkin Lymphoma 9 119764 -NCIT:C160240 Refractory Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 10 119765 -NCIT:C186484 Refractory Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 10 119766 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 11 119767 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 9 119768 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 10 119769 -NCIT:C8846 Refractory Small Lymphocytic Lymphoma 9 119770 -NCIT:C8847 Refractory Burkitt Lymphoma 9 119771 -NCIT:C8853 Refractory Diffuse Large B-Cell Lymphoma 9 119772 -NCIT:C138018 Refractory Extranodal Diffuse Large B-cell Lymphoma 10 119773 -NCIT:C138026 Refractory Intravascular Large B-Cell Lymphoma 10 119774 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 119775 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 119776 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 10 119777 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 119778 -NCIT:C157678 Refractory T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 10 119779 -NCIT:C157680 Refractory Primary Effusion Lymphoma 10 119780 -NCIT:C157684 Refractory Plasmablastic Lymphoma 10 119781 -NCIT:C160233 Refractory High Grade B-Cell Lymphoma 10 119782 -NCIT:C151979 Refractory High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 11 119783 -NCIT:C162453 Refractory High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 11 119784 -NCIT:C188789 Refractory High Grade B-Cell Lymphoma, Not Otherwise Specified 11 119785 -NCIT:C165241 Refractory Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 119786 -NCIT:C160238 Refractory Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 11 119787 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 11 119788 -NCIT:C182034 Refractory Immunoblastic Lymphoma 11 119789 -NCIT:C8927 Refractory Centroblastic Lymphoma 11 119790 -NCIT:C183142 Refractory Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 10 119791 -NCIT:C188791 Refractory ALK-Positive Large B-Cell Lymphoma 10 119792 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 119793 -NCIT:C8858 Refractory Follicular Lymphoma 9 119794 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 10 119795 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 10 119796 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 10 119797 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 11 119798 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 11 119799 -NCIT:C8862 Refractory Mantle Cell Lymphoma 9 119800 -NCIT:C7540 Small Lymphocytic Lymphoma 8 119801 -NCIT:C141259 Small Lymphocytic Lymphoma by Ann Arbor Stage 9 119802 -NCIT:C8070 Ann Arbor Stage I Small Lymphocytic Lymphoma 10 119803 -NCIT:C8115 Ann Arbor Stage II Small Lymphocytic Lymphoma 10 119804 -NCIT:C8128 Ann Arbor Stage III Small Lymphocytic Lymphoma 10 119805 -NCIT:C8141 Ann Arbor Stage IV Small Lymphocytic Lymphoma 10 119806 -NCIT:C161605 Prostate Small Lymphocytic Lymphoma 9 119807 -NCIT:C36273 Small Lymphocytic Lymphoma with Plasmacytoid Differentiation 9 119808 -NCIT:C37203 Small Lymphocytic Lymphoma with Immunoglobulin Heavy Chain Variable-Region Gene Somatic Hypermutation 9 119809 -NCIT:C37206 Small Lymphocytic Lymphoma with Unmutated Immunoglobulin Heavy Chain Variable-Region Gene 9 119810 -NCIT:C7304 Splenic Small Lymphocytic Lymphoma 9 119811 -NCIT:C8154 Recurrent Small Lymphocytic Lymphoma 9 119812 -NCIT:C8846 Refractory Small Lymphocytic Lymphoma 9 119813 -NCIT:C80309 Splenic Diffuse Red Pulp Small B-Cell Lymphoma 8 119814 -NCIT:C8851 Diffuse Large B-Cell Lymphoma 8 119815 -NCIT:C138211 High Grade B-Cell Lymphoma 9 119816 -NCIT:C138195 High Grade B-Cell Lymphoma with MYC and BCL2 and/or BCL6 Rearrangements 10 119817 -NCIT:C125904 High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 11 119818 -NCIT:C151979 Refractory High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 12 119819 -NCIT:C151980 Recurrent High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 12 119820 -NCIT:C131913 High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 11 119821 -NCIT:C162451 Recurrent High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 12 119822 -NCIT:C162453 Refractory High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 12 119823 -NCIT:C160229 Recurrent High Grade B-Cell Lymphoma 10 119824 -NCIT:C151980 Recurrent High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 11 119825 -NCIT:C162451 Recurrent High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 11 119826 -NCIT:C188788 Recurrent High Grade B-Cell Lymphoma, Not Otherwise Specified 11 119827 -NCIT:C160233 Refractory High Grade B-Cell Lymphoma 10 119828 -NCIT:C151979 Refractory High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 11 119829 -NCIT:C162453 Refractory High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 11 119830 -NCIT:C188789 Refractory High Grade B-Cell Lymphoma, Not Otherwise Specified 11 119831 -NCIT:C80291 High Grade B-Cell Lymphoma, Not Otherwise Specified 10 119832 -NCIT:C188788 Recurrent High Grade B-Cell Lymphoma, Not Otherwise Specified 11 119833 -NCIT:C188789 Refractory High Grade B-Cell Lymphoma, Not Otherwise Specified 11 119834 -NCIT:C96057 Small Intestinal High Grade B-Cell Lymphoma, Not Otherwise Specified 11 119835 -NCIT:C96501 Colorectal High Grade B-Cell Lymphoma, Not Otherwise Specified 11 119836 -NCIT:C138320 HHV8-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 119837 -NCIT:C138899 Double-Expressor Lymphoma 9 119838 -NCIT:C141254 Diffuse Large B-Cell Lymphoma by Ann Arbor Stage 9 119839 -NCIT:C141262 Primary Mediastinal (Thymic) Large B-Cell Lymphoma by Ann Arbor Stage 10 119840 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 119841 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 119842 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 119843 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 119844 -NCIT:C141263 Centroblastic Lymphoma by Ann Arbor Stage 10 119845 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 11 119846 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 11 119847 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 11 119848 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 11 119849 -NCIT:C8854 Ann Arbor Stage I Diffuse Large B-Cell Lymphoma 10 119850 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 11 119851 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 119852 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 11 119853 -NCIT:C8855 Ann Arbor Stage II Diffuse Large B-Cell Lymphoma 10 119854 -NCIT:C171158 Ann Arbor Stage IIX (Bulky) Diffuse Large B-Cell Lymphoma 11 119855 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 11 119856 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 12 119857 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 12 119858 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 119859 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 11 119860 -NCIT:C8856 Ann Arbor Stage III Diffuse Large B-Cell Lymphoma 10 119861 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 11 119862 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 119863 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 11 119864 -NCIT:C8857 Ann Arbor Stage IV Diffuse Large B-Cell Lymphoma 10 119865 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 11 119866 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 119867 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 11 119868 -NCIT:C150396 Fibrin-Associated Diffuse Large B-Cell Lymphoma 9 119869 -NCIT:C183141 Cardiac Fibrin-Associated Diffuse Large B-Cell Lymphoma 10 119870 -NCIT:C161602 Prostate Diffuse Large B-Cell Lymphoma 9 119871 -NCIT:C162467 Testicular Diffuse Large B-Cell Lymphoma 9 119872 -NCIT:C171264 Advanced Diffuse Large B-Cell Lymphoma 9 119873 -NCIT:C172850 Digestive System Diffuse Large B-Cell Lymphoma 9 119874 -NCIT:C5253 Gastric Diffuse Large B-Cell Lymphoma 10 119875 -NCIT:C95625 Esophageal Diffuse Large B-Cell Lymphoma 10 119876 -NCIT:C96055 Small Intestinal Diffuse Large B-Cell Lymphoma 10 119877 -NCIT:C96057 Small Intestinal High Grade B-Cell Lymphoma, Not Otherwise Specified 11 119878 -NCIT:C96503 Colorectal Diffuse Large B-Cell Lymphoma 10 119879 -NCIT:C96501 Colorectal High Grade B-Cell Lymphoma, Not Otherwise Specified 11 119880 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 11 119881 -NCIT:C96843 Liver Diffuse Large B-Cell Lymphoma 10 119882 -NCIT:C173717 Salivary Gland Diffuse Large B-Cell Lymphoma 9 119883 -NCIT:C173719 Parotid Gland Diffuse Large B-Cell Lymphoma 10 119884 -NCIT:C173811 Primary Bone Diffuse Large B-Cell Lymphoma 9 119885 -NCIT:C175433 Conjunctival Diffuse Large B-Cell Lymphoma 9 119886 -NCIT:C175485 Lacrimal System Diffuse Large B-Cell Lymphoma 9 119887 -NCIT:C175486 Lacrimal Gland Diffuse Large B-Cell Lymphoma 10 119888 -NCIT:C175487 Lacrimal Drainage System Diffuse Large B-Cell Lymphoma 10 119889 -NCIT:C183146 Cardiac Diffuse Large B-Cell Lymphoma 9 119890 -NCIT:C183141 Cardiac Fibrin-Associated Diffuse Large B-Cell Lymphoma 10 119891 -NCIT:C188072 Tonsillar Diffuse Large B-Cell Lymphoma 9 119892 -NCIT:C188081 Nasal Cavity Diffuse Large B-Cell Lymphoma 9 119893 -NCIT:C27856 Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 9 119894 -NCIT:C27858 AIDS-Related Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 10 119895 -NCIT:C40375 Breast Diffuse Large B-Cell Lymphoma 9 119896 -NCIT:C4342 Intravascular Large B-Cell Lymphoma 9 119897 -NCIT:C129602 Central Nervous System Intravascular Large B-Cell Lymphoma 10 119898 -NCIT:C138025 Recurrent Intravascular Large B-Cell Lymphoma 10 119899 -NCIT:C138026 Refractory Intravascular Large B-Cell Lymphoma 10 119900 -NCIT:C183121 Lung Intravascular Large B-Cell Lymphoma 10 119901 -NCIT:C45214 Primary Cutaneous Intravascular Large B-Cell Lymphoma 10 119902 -NCIT:C45193 Primary Cutaneous Diffuse Large B-Cell Lymphoma 9 119903 -NCIT:C45194 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 119904 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 119905 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 119906 -NCIT:C45213 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Other 10 119907 -NCIT:C45214 Primary Cutaneous Intravascular Large B-Cell Lymphoma 11 119908 -NCIT:C45215 Primary Cutaneous T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 11 119909 -NCIT:C45216 Primary Cutaneous Plasmablastic Lymphoma 11 119910 -NCIT:C45605 Lung Diffuse Large B-Cell Lymphoma 9 119911 -NCIT:C183121 Lung Intravascular Large B-Cell Lymphoma 10 119912 -NCIT:C6046 Thyroid Gland Diffuse Large B-Cell Lymphoma 9 119913 -NCIT:C7263 Thyroid Gland Immunoblastic Lymphoma 10 119914 -NCIT:C6073 Paranasal Sinus Diffuse Large B-Cell Lymphoma 9 119915 -NCIT:C63533 Kidney Diffuse Large B-Cell Lymphoma 9 119916 -NCIT:C6915 Primary Effusion Lymphoma 9 119917 -NCIT:C150406 Extracavitary Primary Effusion Lymphoma 10 119918 -NCIT:C150407 Body Cavity Primary Effusion Lymphoma 10 119919 -NCIT:C183135 Pleural Primary Effusion Lymphoma 11 119920 -NCIT:C183136 Pericardial Primary Effusion Lymphoma 11 119921 -NCIT:C183137 Peritoneal Primary Effusion Lymphoma 11 119922 -NCIT:C157679 Recurrent Primary Effusion Lymphoma 10 119923 -NCIT:C157680 Refractory Primary Effusion Lymphoma 10 119924 -NCIT:C9017 AIDS-Related Primary Effusion Lymphoma 10 119925 -NCIT:C71720 Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 119926 -NCIT:C129602 Central Nervous System Intravascular Large B-Cell Lymphoma 10 119927 -NCIT:C155797 Pituitary Gland Diffuse Large B-Cell Lymphoma 10 119928 -NCIT:C157067 Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 119929 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 119930 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 119931 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 10 119932 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 119933 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 10 119934 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 119935 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 10 119936 -NCIT:C7212 AIDS-Related Diffuse Large B-cell Lymphoma 9 119937 -NCIT:C27858 AIDS-Related Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 10 119938 -NCIT:C27859 AIDS-Related Plasmablastic Lymphoma 10 119939 -NCIT:C38160 AIDS-Related Plasmablastic Lymphoma of Mucosa Site 11 119940 -NCIT:C9016 AIDS-Related Plasmablastic Lymphoma of the Oral Mucosa 12 119941 -NCIT:C8285 AIDS-Related Immunoblastic Lymphoma 10 119942 -NCIT:C9017 AIDS-Related Primary Effusion Lymphoma 10 119943 -NCIT:C7224 Plasmablastic Lymphoma 9 119944 -NCIT:C157683 Recurrent Plasmablastic Lymphoma 10 119945 -NCIT:C157684 Refractory Plasmablastic Lymphoma 10 119946 -NCIT:C27859 AIDS-Related Plasmablastic Lymphoma 10 119947 -NCIT:C38160 AIDS-Related Plasmablastic Lymphoma of Mucosa Site 11 119948 -NCIT:C9016 AIDS-Related Plasmablastic Lymphoma of the Oral Mucosa 12 119949 -NCIT:C38159 Plasmablastic Lymphoma of Mucosa Site 10 119950 -NCIT:C38160 AIDS-Related Plasmablastic Lymphoma of Mucosa Site 11 119951 -NCIT:C9016 AIDS-Related Plasmablastic Lymphoma of the Oral Mucosa 12 119952 -NCIT:C80290 Plasmablastic Lymphoma of the Oral Mucosa 11 119953 -NCIT:C9016 AIDS-Related Plasmablastic Lymphoma of the Oral Mucosa 12 119954 -NCIT:C45216 Primary Cutaneous Plasmablastic Lymphoma 10 119955 -NCIT:C7225 ALK-Positive Large B-Cell Lymphoma 9 119956 -NCIT:C188790 Recurrent ALK-Positive Large B-Cell Lymphoma 10 119957 -NCIT:C188791 Refractory ALK-Positive Large B-Cell Lymphoma 10 119958 -NCIT:C7246 Diffuse Large B-Cell Lymphoma Post-Transplant Lymphoproliferative Disorder 9 119959 -NCIT:C7247 Anaplastic Lymphoma Post-Transplant Lymphoproliferative Disorder 10 119960 -NCIT:C7248 Centroblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 10 119961 -NCIT:C7249 Immunoblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 10 119962 -NCIT:C7253 Methotrexate-Associated Diffuse Large B-Cell Lymphoma 9 119963 -NCIT:C7308 Splenic Diffuse Large B-Cell Lymphoma 9 119964 -NCIT:C7615 Adult Diffuse Large B-Cell Lymphoma 9 119965 -NCIT:C115150 Adult Grade III Lymphomatoid Granulomatosis 10 119966 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 11 119967 -NCIT:C188457 Adult EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 119968 -NCIT:C7873 Adult Immunoblastic Lymphoma 10 119969 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 11 119970 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 11 119971 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 12 119972 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 12 119973 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 11 119974 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 11 119975 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 11 119976 -NCIT:C7616 Childhood Diffuse Large B-Cell Lymphoma 9 119977 -NCIT:C115204 Childhood Grade III Lymphomatoid Granulomatosis 10 119978 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 11 119979 -NCIT:C188455 Childhood Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 119980 -NCIT:C188456 Childhood EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 119981 -NCIT:C9079 Childhood Immunoblastic Lymphoma 10 119982 -NCIT:C7933 Grade III Lymphomatoid Granulomatosis 9 119983 -NCIT:C115150 Adult Grade III Lymphomatoid Granulomatosis 10 119984 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 11 119985 -NCIT:C115204 Childhood Grade III Lymphomatoid Granulomatosis 10 119986 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 11 119987 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 10 119988 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 11 119989 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 11 119990 -NCIT:C80280 Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 119991 -NCIT:C148392 Diffuse Large B-Cell Lymphoma, Not Otherwise Specified Molecular Subtypes 10 119992 -NCIT:C148394 MCD Diffuse Large B-Cell Lymphoma 11 119993 -NCIT:C148395 BN2 Diffuse Large B-Cell Lymphoma 11 119994 -NCIT:C148396 N1 Diffuse Large B-Cell Lymphoma 11 119995 -NCIT:C148398 EZB Diffuse Large B-Cell Lymphoma 11 119996 -NCIT:C187445 ST2 Diffuse Large B-Cell Lymphoma 11 119997 -NCIT:C187447 A53 Diffuse Large B-Cell Lymphoma 11 119998 -NCIT:C165240 Recurrent Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 119999 -NCIT:C160230 Recurrent Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 11 120000 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 11 120001 -NCIT:C182035 Recurrent Immunoblastic Lymphoma 11 120002 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 12 120003 -NCIT:C8926 Recurrent Centroblastic Lymphoma 11 120004 -NCIT:C165241 Refractory Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 120005 -NCIT:C160238 Refractory Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 11 120006 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 11 120007 -NCIT:C182034 Refractory Immunoblastic Lymphoma 11 120008 -NCIT:C8927 Refractory Centroblastic Lymphoma 11 120009 -NCIT:C3461 Immunoblastic Lymphoma 10 120010 -NCIT:C182034 Refractory Immunoblastic Lymphoma 11 120011 -NCIT:C182035 Recurrent Immunoblastic Lymphoma 11 120012 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 12 120013 -NCIT:C7249 Immunoblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 11 120014 -NCIT:C7263 Thyroid Gland Immunoblastic Lymphoma 11 120015 -NCIT:C7873 Adult Immunoblastic Lymphoma 11 120016 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 12 120017 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 12 120018 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 13 120019 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 13 120020 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 12 120021 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 12 120022 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 12 120023 -NCIT:C8285 AIDS-Related Immunoblastic Lymphoma 11 120024 -NCIT:C9079 Childhood Immunoblastic Lymphoma 11 120025 -NCIT:C4074 Centroblastic Lymphoma 10 120026 -NCIT:C141263 Centroblastic Lymphoma by Ann Arbor Stage 11 120027 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 12 120028 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 12 120029 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 12 120030 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 12 120031 -NCIT:C7248 Centroblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 11 120032 -NCIT:C8926 Recurrent Centroblastic Lymphoma 11 120033 -NCIT:C8927 Refractory Centroblastic Lymphoma 11 120034 -NCIT:C45219 Diffuse Large B-Cell Lymphoma, Not Otherwise Specified by Gene Expression Profile 10 120035 -NCIT:C36080 Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 11 120036 -NCIT:C160230 Recurrent Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 12 120037 -NCIT:C160238 Refractory Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 12 120038 -NCIT:C36081 Diffuse Large B-Cell Lymphoma Activated B-Cell Type 11 120039 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 12 120040 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 12 120041 -NCIT:C45231 Diffuse Large B-Cell Lymphoma Unclassifiable 11 120042 -NCIT:C6916 Anaplastic Lymphoma 10 120043 -NCIT:C7247 Anaplastic Lymphoma Post-Transplant Lymphoproliferative Disorder 11 120044 -NCIT:C80281 EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 120045 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 120046 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 120047 -NCIT:C188456 Childhood EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 120048 -NCIT:C188457 Adult EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 120049 -NCIT:C80289 Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 9 120050 -NCIT:C183140 Recurrent Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 10 120051 -NCIT:C183142 Refractory Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 10 120052 -NCIT:C45691 Pyothorax-Associated Lymphoma 10 120053 -NCIT:C8852 Recurrent Diffuse Large B-Cell Lymphoma 9 120054 -NCIT:C138015 Recurrent Extranodal Diffuse Large B-cell Lymphoma 10 120055 -NCIT:C138025 Recurrent Intravascular Large B-Cell Lymphoma 10 120056 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 120057 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 120058 -NCIT:C156696 Recurrent T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 10 120059 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 10 120060 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 120061 -NCIT:C157679 Recurrent Primary Effusion Lymphoma 10 120062 -NCIT:C157683 Recurrent Plasmablastic Lymphoma 10 120063 -NCIT:C160229 Recurrent High Grade B-Cell Lymphoma 10 120064 -NCIT:C151980 Recurrent High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 11 120065 -NCIT:C162451 Recurrent High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 11 120066 -NCIT:C188788 Recurrent High Grade B-Cell Lymphoma, Not Otherwise Specified 11 120067 -NCIT:C165240 Recurrent Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 120068 -NCIT:C160230 Recurrent Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 11 120069 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 11 120070 -NCIT:C182035 Recurrent Immunoblastic Lymphoma 11 120071 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 12 120072 -NCIT:C8926 Recurrent Centroblastic Lymphoma 11 120073 -NCIT:C183140 Recurrent Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 10 120074 -NCIT:C188790 Recurrent ALK-Positive Large B-Cell Lymphoma 10 120075 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 10 120076 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 11 120077 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 11 120078 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 120079 -NCIT:C8853 Refractory Diffuse Large B-Cell Lymphoma 9 120080 -NCIT:C138018 Refractory Extranodal Diffuse Large B-cell Lymphoma 10 120081 -NCIT:C138026 Refractory Intravascular Large B-Cell Lymphoma 10 120082 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 120083 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 120084 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 10 120085 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 120086 -NCIT:C157678 Refractory T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 10 120087 -NCIT:C157680 Refractory Primary Effusion Lymphoma 10 120088 -NCIT:C157684 Refractory Plasmablastic Lymphoma 10 120089 -NCIT:C160233 Refractory High Grade B-Cell Lymphoma 10 120090 -NCIT:C151979 Refractory High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 11 120091 -NCIT:C162453 Refractory High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 11 120092 -NCIT:C188789 Refractory High Grade B-Cell Lymphoma, Not Otherwise Specified 11 120093 -NCIT:C165241 Refractory Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 120094 -NCIT:C160238 Refractory Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 11 120095 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 11 120096 -NCIT:C182034 Refractory Immunoblastic Lymphoma 11 120097 -NCIT:C8927 Refractory Centroblastic Lymphoma 11 120098 -NCIT:C183142 Refractory Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 10 120099 -NCIT:C188791 Refractory ALK-Positive Large B-Cell Lymphoma 10 120100 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 120101 -NCIT:C9280 Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 120102 -NCIT:C141262 Primary Mediastinal (Thymic) Large B-Cell Lymphoma by Ann Arbor Stage 10 120103 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 120104 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 120105 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 120106 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 120107 -NCIT:C188455 Childhood Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 120108 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 120109 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 120110 -NCIT:C9496 T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 9 120111 -NCIT:C156696 Recurrent T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 10 120112 -NCIT:C157678 Refractory T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 10 120113 -NCIT:C45215 Primary Cutaneous T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 10 120114 -NCIT:C8841 Recurrent B-Cell Non-Hodgkin Lymphoma 7 120115 -NCIT:C165799 Recurrent Mature B-Cell Non-Hodgkin Lymphoma 8 120116 -NCIT:C158149 Recurrent Transformed B-Cell Non-Hodgkin Lymphoma 9 120117 -NCIT:C160232 Recurrent Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 10 120118 -NCIT:C186483 Recurrent Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 10 120119 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 11 120120 -NCIT:C5007 Recurrent Follicular Lymphoma 9 120121 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 10 120122 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 10 120123 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 10 120124 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 11 120125 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 11 120126 -NCIT:C5008 Recurrent Burkitt Lymphoma 9 120127 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 10 120128 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 10 120129 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 9 120130 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 10 120131 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 120132 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 10 120133 -NCIT:C8154 Recurrent Small Lymphocytic Lymphoma 9 120134 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 9 120135 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 9 120136 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 10 120137 -NCIT:C8852 Recurrent Diffuse Large B-Cell Lymphoma 9 120138 -NCIT:C138015 Recurrent Extranodal Diffuse Large B-cell Lymphoma 10 120139 -NCIT:C138025 Recurrent Intravascular Large B-Cell Lymphoma 10 120140 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 120141 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 120142 -NCIT:C156696 Recurrent T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 10 120143 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 10 120144 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 120145 -NCIT:C157679 Recurrent Primary Effusion Lymphoma 10 120146 -NCIT:C157683 Recurrent Plasmablastic Lymphoma 10 120147 -NCIT:C160229 Recurrent High Grade B-Cell Lymphoma 10 120148 -NCIT:C151980 Recurrent High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 11 120149 -NCIT:C162451 Recurrent High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 11 120150 -NCIT:C188788 Recurrent High Grade B-Cell Lymphoma, Not Otherwise Specified 11 120151 -NCIT:C165240 Recurrent Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 120152 -NCIT:C160230 Recurrent Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 11 120153 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 11 120154 -NCIT:C182035 Recurrent Immunoblastic Lymphoma 11 120155 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 12 120156 -NCIT:C8926 Recurrent Centroblastic Lymphoma 11 120157 -NCIT:C183140 Recurrent Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 10 120158 -NCIT:C188790 Recurrent ALK-Positive Large B-Cell Lymphoma 10 120159 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 10 120160 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 11 120161 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 11 120162 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 120163 -NCIT:C178553 Recurrent Aggressive B-Cell Non-Hodgkin Lymphoma 8 120164 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 120165 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 9 120166 -NCIT:C5008 Recurrent Burkitt Lymphoma 9 120167 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 10 120168 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 10 120169 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 9 120170 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 120171 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 10 120172 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 9 120173 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 10 120174 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 10 120175 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 9 120176 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 9 120177 -NCIT:C183512 Recurrent Indolent B-Cell Non-Hodgkin Lymphoma 8 120178 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 9 120179 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 10 120180 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 120181 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 10 120182 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 9 120183 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 9 120184 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 9 120185 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 10 120186 -NCIT:C8842 Refractory B-Cell Non-Hodgkin Lymphoma 7 120187 -NCIT:C178555 Refractory Aggressive B-Cell Non-Hodgkin Lymphoma 8 120188 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 120189 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 9 120190 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 9 120191 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 10 120192 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 10 120193 -NCIT:C8847 Refractory Burkitt Lymphoma 9 120194 -NCIT:C8862 Refractory Mantle Cell Lymphoma 9 120195 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 9 120196 -NCIT:C183514 Refractory Indolent B-Cell Non-Hodgkin Lymphoma 8 120197 -NCIT:C143085 Refractory Marginal Zone Lymphoma 9 120198 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 10 120199 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 120200 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 10 120201 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 9 120202 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 9 120203 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 9 120204 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 10 120205 -NCIT:C7228 Refractory Mature B-Cell Non-Hodgkin Lymphoma 8 120206 -NCIT:C143085 Refractory Marginal Zone Lymphoma 9 120207 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 10 120208 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 120209 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 10 120210 -NCIT:C158150 Refractory Transformed B-Cell Non-Hodgkin Lymphoma 9 120211 -NCIT:C160240 Refractory Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 10 120212 -NCIT:C186484 Refractory Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 10 120213 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 11 120214 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 9 120215 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 10 120216 -NCIT:C8846 Refractory Small Lymphocytic Lymphoma 9 120217 -NCIT:C8847 Refractory Burkitt Lymphoma 9 120218 -NCIT:C8853 Refractory Diffuse Large B-Cell Lymphoma 9 120219 -NCIT:C138018 Refractory Extranodal Diffuse Large B-cell Lymphoma 10 120220 -NCIT:C138026 Refractory Intravascular Large B-Cell Lymphoma 10 120221 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 120222 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 120223 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 10 120224 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 120225 -NCIT:C157678 Refractory T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 10 120226 -NCIT:C157680 Refractory Primary Effusion Lymphoma 10 120227 -NCIT:C157684 Refractory Plasmablastic Lymphoma 10 120228 -NCIT:C160233 Refractory High Grade B-Cell Lymphoma 10 120229 -NCIT:C151979 Refractory High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 11 120230 -NCIT:C162453 Refractory High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 11 120231 -NCIT:C188789 Refractory High Grade B-Cell Lymphoma, Not Otherwise Specified 11 120232 -NCIT:C165241 Refractory Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 120233 -NCIT:C160238 Refractory Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 11 120234 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 11 120235 -NCIT:C182034 Refractory Immunoblastic Lymphoma 11 120236 -NCIT:C8927 Refractory Centroblastic Lymphoma 11 120237 -NCIT:C183142 Refractory Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 10 120238 -NCIT:C188791 Refractory ALK-Positive Large B-Cell Lymphoma 10 120239 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 120240 -NCIT:C8858 Refractory Follicular Lymphoma 9 120241 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 10 120242 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 10 120243 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 10 120244 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 11 120245 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 11 120246 -NCIT:C8862 Refractory Mantle Cell Lymphoma 9 120247 -NCIT:C96053 Small Intestinal B-Cell Non-Hodgkin Lymphoma 7 120248 -NCIT:C27409 Small Intestinal Burkitt Lymphoma 8 120249 -NCIT:C27410 Small Intestinal Atypical Burkitt/Burkitt-Like Lymphoma 9 120250 -NCIT:C27441 Small Intestinal Mantle Cell Lymphoma 8 120251 -NCIT:C3132 Alpha Heavy Chain Disease 8 120252 -NCIT:C5635 Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 8 120253 -NCIT:C45166 Campylobacter Jejuni-Associated Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 9 120254 -NCIT:C96055 Small Intestinal Diffuse Large B-Cell Lymphoma 8 120255 -NCIT:C96057 Small Intestinal High Grade B-Cell Lymphoma, Not Otherwise Specified 9 120256 -NCIT:C96056 Small Intestinal Follicular Lymphoma 8 120257 -NCIT:C4753 B-Cell Prolymphocytic Leukemia 6 120258 -NCIT:C157697 Refractory B-Cell Prolymphocytic Leukemia 7 120259 -NCIT:C158081 Recurrent B-Cell Prolymphocytic Leukemia 7 120260 -NCIT:C7299 Splenic Manifestation of B-Cell Prolymphocytic Leukemia 7 120261 -NCIT:C7237 Monomorphic B-Cell Post-Transplant Lymphoproliferative Disorder 6 120262 -NCIT:C7240 Plasma Cell Post-Transplant Lymphoproliferative Disorder 7 120263 -NCIT:C7241 Plasmacytoma-Like Post-Transplant Lymphoproliferative Disorder 8 120264 -NCIT:C7242 Plasma Cell Myeloma Post-Transplant Lymphoproliferative Disorder 8 120265 -NCIT:C7244 Burkitt Lymphoma Post-Transplant Lymphoproliferative Disorder 7 120266 -NCIT:C7245 Burkitt-Like Lymphoma Post-Transplant Lymphoproliferative Disorder 8 120267 -NCIT:C7246 Diffuse Large B-Cell Lymphoma Post-Transplant Lymphoproliferative Disorder 7 120268 -NCIT:C7247 Anaplastic Lymphoma Post-Transplant Lymphoproliferative Disorder 8 120269 -NCIT:C7248 Centroblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 8 120270 -NCIT:C7249 Immunoblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 8 120271 -NCIT:C7400 Burkitt Leukemia 6 120272 -NCIT:C151976 Recurrent Burkitt Leukemia 7 120273 -NCIT:C151977 Refractory Burkitt Leukemia 7 120274 -NCIT:C7952 Childhood Burkitt Leukemia 7 120275 -NCIT:C7954 Adult Burkitt Leukemia 7 120276 -NCIT:C7402 Hairy Cell Leukemia 6 120277 -NCIT:C142882 Recurrent Hairy Cell Leukemia 7 120278 -NCIT:C7301 Splenic Manifestation of Hairy Cell Leukemia 7 120279 -NCIT:C8029 Progressive Hairy Cell Leukemia Initial Treatment 7 120280 -NCIT:C8030 Refractory Hairy Cell Leukemia 7 120281 -NCIT:C80308 Splenic B-Cell Lymphoma/Leukemia, Unclassifiable 6 120282 -NCIT:C7401 Hairy Cell Leukemia Variant 7 120283 -NCIT:C171064 Refractory Hairy Cell Leukemia Variant 8 120284 -NCIT:C171065 Recurrent Hairy Cell Leukemia Variant 8 120285 -NCIT:C80309 Splenic Diffuse Red Pulp Small B-Cell Lymphoma 7 120286 -NCIT:C8936 B Lymphoblastic Leukemia/Lymphoma 6 120287 -NCIT:C188453 Childhood B Lymphoblastic Leukemia/Lymphoma 7 120288 -NCIT:C7209 Childhood B Lymphoblastic Lymphoma 8 120289 -NCIT:C9140 Childhood B Acute Lymphoblastic Leukemia 8 120290 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 120291 -NCIT:C45241 Cutaneous B Lymphoblastic Leukemia/Lymphoma 7 120292 -NCIT:C80326 B Lymphoblastic Leukemia/Lymphoma, Not Otherwise Specified 7 120293 -NCIT:C80328 B Lymphoblastic Leukemia/Lymphoma with Recurrent Genetic Abnormalities 7 120294 -NCIT:C129787 B Lymphoblastic Leukemia/Lymphoma with BCR-ABL1-Like Features 8 120295 -NCIT:C121974 B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 9 120296 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 10 120297 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 10 120298 -NCIT:C130039 B-Lymphoblastic Leukemia/Lymphoma with Intrachromosomal Amplification of Chromosome 21 8 120299 -NCIT:C130040 B Acute Lymphoblastic Leukemia with Intrachromosomal Amplification of Chromosome 21 9 120300 -NCIT:C190956 B Lymphoblastic Leukemia/Lymphoma with ETV6-RUNX1-Like Features 8 120301 -NCIT:C190957 B Acute Lymphoblastic Leukemia with ETV6-RUNX1-Like Features 9 120302 -NCIT:C80331 B Lymphoblastic Leukemia/Lymphoma with t(9;22)(q34.1;q11.2); BCR-ABL1 8 120303 -NCIT:C36312 B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 120304 -NCIT:C114819 Adult B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 10 120305 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 10 120306 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 10 120307 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 10 120308 -NCIT:C80332 B Lymphoblastic Leukemia/Lymphoma with t(v;11q23.3); MLL Rearranged 8 120309 -NCIT:C80342 B Acute Lymphoblastic Leukemia with t(v;11q23.3); MLL Rearranged 9 120310 -NCIT:C80334 B Lymphoblastic Leukemia/Lymphoma with t(12;21)(p13.2;q22.1); ETV6-RUNX1 8 120311 -NCIT:C80343 B Acute Lymphoblastic Leukemia with t(12;21)(p13.2;q22.1); ETV6-RUNX1 9 120312 -NCIT:C80335 B Lymphoblastic Leukemia/Lymphoma with Hyperdiploidy 8 120313 -NCIT:C80344 Hyperdiploid B Acute Lymphoblastic Leukemia 9 120314 -NCIT:C80338 B Lymphoblastic Leukemia/Lymphoma with Hypodiploidy 8 120315 -NCIT:C80345 Hypodiploid B Acute Lymphoblastic Leukemia 9 120316 -NCIT:C80340 B Lymphoblastic Leukemia/Lymphoma with t(5;14)(q31.1;q32.3); IL3-IGH 8 120317 -NCIT:C80346 B Acute Lymphoblastic Leukemia with t(5;14)(q31.1;q32.3); IL3-IGH 9 120318 -NCIT:C80341 B Lymphoblastic Leukemia/Lymphoma with t(1;19)(q23;p13.3); E2A-PBX1 (TCF3-PBX1) 8 120319 -NCIT:C80347 B Acute Lymphoblastic Leukemia with t(1;19)(q23;p13.3); E2A-PBX1 (TCF3-PBX1) 9 120320 -NCIT:C8644 B Acute Lymphoblastic Leukemia 7 120321 -NCIT:C121974 B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 120322 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 9 120323 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 9 120324 -NCIT:C128629 B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 120325 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 9 120326 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 9 120327 -NCIT:C130040 B Acute Lymphoblastic Leukemia with Intrachromosomal Amplification of Chromosome 21 8 120328 -NCIT:C142811 Recurrent B Acute Lymphoblastic Leukemia 8 120329 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 9 120330 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 120331 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 9 120332 -NCIT:C142812 Refractory B Acute Lymphoblastic Leukemia 8 120333 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 9 120334 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 120335 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 9 120336 -NCIT:C162776 B Acute Lymphoblastic Leukemia with t(4;11)(q21;23) 8 120337 -NCIT:C190847 B Acute Lymphoblastic Leukemia Associated with Down Syndrome 8 120338 -NCIT:C190957 B Acute Lymphoblastic Leukemia with ETV6-RUNX1-Like Features 8 120339 -NCIT:C36312 B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 120340 -NCIT:C114819 Adult B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 120341 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 120342 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 120343 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 120344 -NCIT:C80342 B Acute Lymphoblastic Leukemia with t(v;11q23.3); MLL Rearranged 8 120345 -NCIT:C80343 B Acute Lymphoblastic Leukemia with t(12;21)(p13.2;q22.1); ETV6-RUNX1 8 120346 -NCIT:C80344 Hyperdiploid B Acute Lymphoblastic Leukemia 8 120347 -NCIT:C80345 Hypodiploid B Acute Lymphoblastic Leukemia 8 120348 -NCIT:C80346 B Acute Lymphoblastic Leukemia with t(5;14)(q31.1;q32.3); IL3-IGH 8 120349 -NCIT:C80347 B Acute Lymphoblastic Leukemia with t(1;19)(q23;p13.3); E2A-PBX1 (TCF3-PBX1) 8 120350 -NCIT:C9140 Childhood B Acute Lymphoblastic Leukemia 8 120351 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 120352 -NCIT:C9143 Adult B Acute Lymphoblastic Leukemia 8 120353 -NCIT:C114819 Adult B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 120354 -NCIT:C8868 B Lymphoblastic Lymphoma 7 120355 -NCIT:C141250 B Lymphoblastic Lymphoma by Ann Arbor Stage 8 120356 -NCIT:C8871 Ann Arbor Stage I B Lymphoblastic Lymphoma 9 120357 -NCIT:C8872 Ann Arbor Stage III B Lymphoblastic Lymphoma 9 120358 -NCIT:C8873 Ann Arbor Stage IV B Lymphoblastic Lymphoma 9 120359 -NCIT:C8937 Ann Arbor Stage II B Lymphoblastic Lymphoma 9 120360 -NCIT:C7209 Childhood B Lymphoblastic Lymphoma 8 120361 -NCIT:C7310 Splenic B Lymphoblastic Lymphoma 8 120362 -NCIT:C7338 Adult B Lymphoblastic Lymphoma 8 120363 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 8 120364 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 8 120365 -NCIT:C9349 Plasmacytoma 6 120366 -NCIT:C118421 Anaplastic Plasmacytoma 7 120367 -NCIT:C4002 Extraosseous Plasmacytoma 7 120368 -NCIT:C162470 Testicular Plasmacytoma 8 120369 -NCIT:C173169 Sinonasal Plasmacytoma 8 120370 -NCIT:C185041 Splenic Plasmacytoma 8 120371 -NCIT:C185042 Liver Plasmacytoma 8 120372 -NCIT:C185043 Lung Plasmacytoma 8 120373 -NCIT:C185044 Cutaneous Plasmacytoma 8 120374 -NCIT:C6932 Solitary Plasmacytoma 7 120375 -NCIT:C6711 Chest Wall Solitary Plasmacytoma 8 120376 -NCIT:C7812 Solitary Plasmacytoma of Bone 8 120377 -NCIT:C185035 Multiple Solitary Plasmacytoma of Bone 9 120378 -NCIT:C27910 Mature B-Cell Neoplasm 5 120379 -NCIT:C27911 Chronic Lymphocytic Leukemia/Small Lymphocytic Lymphoma 6 120380 -NCIT:C131873 Recurrent Chronic Lymphocytic Leukemia/Small Lymphocytic Lymphoma 7 120381 -NCIT:C8154 Recurrent Small Lymphocytic Lymphoma 8 120382 -NCIT:C8645 Recurrent Chronic Lymphocytic Leukemia 8 120383 -NCIT:C158151 Recurrent Transformed Chronic Lymphocytic Leukemia 9 120384 -NCIT:C172282 Refractory Chronic Lymphocytic Leukemia/Small Lymphocytic Lymphoma 7 120385 -NCIT:C7886 Refractory Chronic Lymphocytic Leukemia 8 120386 -NCIT:C158152 Refractory Transformed Chronic Lymphocytic Leukemia 9 120387 -NCIT:C8846 Refractory Small Lymphocytic Lymphoma 8 120388 -NCIT:C3163 Chronic Lymphocytic Leukemia 7 120389 -NCIT:C141206 Chronic Lymphocytic Leukemia- Modified Rai Staging System 8 120390 -NCIT:C7847 Stage 0 Chronic Lymphocytic Leukemia 9 120391 -NCIT:C7874 Stage I Chronic Lymphocytic Leukemia 9 120392 -NCIT:C7875 Stage II Chronic Lymphocytic Leukemia 9 120393 -NCIT:C7876 Stage III Chronic Lymphocytic Leukemia 9 120394 -NCIT:C8646 Stage IV Chronic Lymphocytic Leukemia 9 120395 -NCIT:C141208 Chronic Lymphocytic Leukemia- Binet Staging System 8 120396 -NCIT:C141209 Stage A Chronic Lymphocytic Leukemia 9 120397 -NCIT:C141210 Stage B Chronic Lymphocytic Leukemia 9 120398 -NCIT:C141211 Stage C Chronic Lymphocytic Leukemia 9 120399 -NCIT:C157624 Transformed Chronic Lymphocytic Leukemia to Diffuse Large B-Cell Lymphoma 8 120400 -NCIT:C158151 Recurrent Transformed Chronic Lymphocytic Leukemia 9 120401 -NCIT:C158152 Refractory Transformed Chronic Lymphocytic Leukemia 9 120402 -NCIT:C36272 Chronic Lymphocytic Leukemia with Plasmacytoid Differentiation 8 120403 -NCIT:C37202 Chronic Lymphocytic Leukemia with Immunoglobulin Heavy Chain Variable-Region Gene Somatic Hypermutation 8 120404 -NCIT:C37205 Chronic Lymphocytic Leukemia with Unmutated Immunoglobulin Heavy Chain Variable-Region Gene 8 120405 -NCIT:C45264 Cutaneous Chronic Lymphocytic Leukemia 8 120406 -NCIT:C7176 Aleukemic Chronic Lymphocytic Leukemia 8 120407 -NCIT:C7300 Splenic Manifestation of Chronic Lymphocytic Leukemia 8 120408 -NCIT:C7886 Refractory Chronic Lymphocytic Leukemia 8 120409 -NCIT:C158152 Refractory Transformed Chronic Lymphocytic Leukemia 9 120410 -NCIT:C8645 Recurrent Chronic Lymphocytic Leukemia 8 120411 -NCIT:C158151 Recurrent Transformed Chronic Lymphocytic Leukemia 9 120412 -NCIT:C37201 Chronic Lymphocytic Leukemia/Small Lymphocytic Lymphoma with Immunoglobulin Heavy Chain Variable-Region Gene Somatic Hypermutation 7 120413 -NCIT:C37202 Chronic Lymphocytic Leukemia with Immunoglobulin Heavy Chain Variable-Region Gene Somatic Hypermutation 8 120414 -NCIT:C37203 Small Lymphocytic Lymphoma with Immunoglobulin Heavy Chain Variable-Region Gene Somatic Hypermutation 8 120415 -NCIT:C37204 Chronic Lymphocytic Leukemia/Small Lymphocytic Lymphoma with Unmutated Immunoglobulin Heavy Chain Variable-Region Gene 7 120416 -NCIT:C37205 Chronic Lymphocytic Leukemia with Unmutated Immunoglobulin Heavy Chain Variable-Region Gene 8 120417 -NCIT:C37206 Small Lymphocytic Lymphoma with Unmutated Immunoglobulin Heavy Chain Variable-Region Gene 8 120418 -NCIT:C7540 Small Lymphocytic Lymphoma 7 120419 -NCIT:C141259 Small Lymphocytic Lymphoma by Ann Arbor Stage 8 120420 -NCIT:C8070 Ann Arbor Stage I Small Lymphocytic Lymphoma 9 120421 -NCIT:C8115 Ann Arbor Stage II Small Lymphocytic Lymphoma 9 120422 -NCIT:C8128 Ann Arbor Stage III Small Lymphocytic Lymphoma 9 120423 -NCIT:C8141 Ann Arbor Stage IV Small Lymphocytic Lymphoma 9 120424 -NCIT:C161605 Prostate Small Lymphocytic Lymphoma 8 120425 -NCIT:C36273 Small Lymphocytic Lymphoma with Plasmacytoid Differentiation 8 120426 -NCIT:C37203 Small Lymphocytic Lymphoma with Immunoglobulin Heavy Chain Variable-Region Gene Somatic Hypermutation 8 120427 -NCIT:C37206 Small Lymphocytic Lymphoma with Unmutated Immunoglobulin Heavy Chain Variable-Region Gene 8 120428 -NCIT:C7304 Splenic Small Lymphocytic Lymphoma 8 120429 -NCIT:C8154 Recurrent Small Lymphocytic Lymphoma 8 120430 -NCIT:C8846 Refractory Small Lymphocytic Lymphoma 8 120431 -NCIT:C45249 Cutaneous Mature B-Cell Neoplasm 6 120432 -NCIT:C168651 Cutaneous Burkitt Lymphoma 7 120433 -NCIT:C185044 Cutaneous Plasmacytoma 7 120434 -NCIT:C185155 Extramedullary Disease in Plasma Cell Myeloma Involving the Skin 7 120435 -NCIT:C45264 Cutaneous Chronic Lymphocytic Leukemia 7 120436 -NCIT:C45266 Cutaneous Mantle Cell Lymphoma 7 120437 -NCIT:C45267 Cutaneous Lymphomatoid Granulomatosis 7 120438 -NCIT:C6858 Primary Cutaneous B-Cell Non-Hodgkin Lymphoma 7 120439 -NCIT:C45193 Primary Cutaneous Diffuse Large B-Cell Lymphoma 8 120440 -NCIT:C45194 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 120441 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 120442 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 120443 -NCIT:C45213 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Other 9 120444 -NCIT:C45214 Primary Cutaneous Intravascular Large B-Cell Lymphoma 10 120445 -NCIT:C45215 Primary Cutaneous T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 10 120446 -NCIT:C45216 Primary Cutaneous Plasmablastic Lymphoma 10 120447 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 8 120448 -NCIT:C7230 Primary Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 120449 -NCIT:C45163 Borrelia Burgdoferi-Associated Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 120450 -NCIT:C7218 Cutaneous Follicular Lymphoma 7 120451 -NCIT:C6859 Grade 3 Cutaneous Follicular Lymphoma 8 120452 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 8 120453 -NCIT:C7219 Grade 2 Cutaneous Follicular Lymphoma 8 120454 -NCIT:C7220 Grade 1 Cutaneous Follicular Lymphoma 8 120455 -NCIT:C4665 Plasma Cell Neoplasm 6 120456 -NCIT:C150588 Non-IgM Monoclonal Gammopathy of Undetermined Significance 7 120457 -NCIT:C172289 Recurrent Plasma Cell Neoplasm 7 120458 -NCIT:C133732 Recurrent Primary Amyloidosis 8 120459 -NCIT:C174054 Recurrent AL Amyloidosis 9 120460 -NCIT:C7025 Recurrent Plasma Cell Myeloma 8 120461 -NCIT:C3180 Plasma Cell Leukemia 7 120462 -NCIT:C191432 Secondary Plasma Cell Leukemia 8 120463 -NCIT:C3242 Plasma Cell Myeloma 7 120464 -NCIT:C139008 Plasma Cell Myeloma by DS Stage 8 120465 -NCIT:C7850 DS Stage I Plasma Cell Myeloma 9 120466 -NCIT:C181859 DS Stage IA Plasma Cell Myeloma 10 120467 -NCIT:C181860 DS Stage IB Plasma Cell Myeloma 10 120468 -NCIT:C7851 DS Stage II Plasma Cell Myeloma 9 120469 -NCIT:C181862 DS Stage IIA Plasma Cell Myeloma 10 120470 -NCIT:C181864 DS Stage IIB Plasma Cell Myeloma 10 120471 -NCIT:C7852 DS Stage III Plasma Cell Myeloma 9 120472 -NCIT:C181865 DS Stage IIIA Plasma Cell Myeloma 10 120473 -NCIT:C181866 DS Stage IIIB Plasma Cell Myeloma 10 120474 -NCIT:C139009 Plasma Cell Myeloma by ISS Stage 8 120475 -NCIT:C70658 ISS Stage I Plasma Cell Myeloma 9 120476 -NCIT:C70659 ISS Stage II Plasma Cell Myeloma 9 120477 -NCIT:C70660 ISS Stage III Plasma Cell Myeloma 9 120478 -NCIT:C141393 Plasma Cell Myeloma by RISS Stage 8 120479 -NCIT:C141394 RISS Stage I Plasma Cell Myeloma 9 120480 -NCIT:C141395 RISS Stage II Plasma Cell Myeloma 9 120481 -NCIT:C141396 RISS Stage III Plasma Cell Myeloma 9 120482 -NCIT:C185149 Extramedullary Disease in Plasma Cell Myeloma 8 120483 -NCIT:C185037 Extramedullary Disease in Plasma Cell Myeloma Involving the Central Nervous System 9 120484 -NCIT:C185039 Extramedullary Disease in Plasma Cell Myeloma Involving the Leptomeninges 10 120485 -NCIT:C185151 Extramedullary Disease in Plasma Cell Myeloma Involving the Spleen 9 120486 -NCIT:C185152 Extramedullary Disease in Plasma Cell Myeloma Involving the Liver 9 120487 -NCIT:C185153 Extramedullary Disease in Plasma Cell Myeloma Involving the Kidney 9 120488 -NCIT:C185155 Extramedullary Disease in Plasma Cell Myeloma Involving the Skin 9 120489 -NCIT:C185321 Extramedullary Disease in Plasma Cell Myeloma Involving the Lung 9 120490 -NCIT:C188074 Extramedullary Disease in Plasma Cell Myeloma Involving the Uterine Corpus 9 120491 -NCIT:C4734 Non-Secretory Plasma Cell Myeloma 8 120492 -NCIT:C7024 Refractory Plasma Cell Myeloma 8 120493 -NCIT:C178375 Triple-Class Refractory Plasma Cell Myeloma 9 120494 -NCIT:C7025 Recurrent Plasma Cell Myeloma 8 120495 -NCIT:C7149 Smoldering Plasma Cell Myeloma 8 120496 -NCIT:C7150 Indolent Plasma Cell Myeloma 8 120497 -NCIT:C7242 Plasma Cell Myeloma Post-Transplant Lymphoproliferative Disorder 8 120498 -NCIT:C7765 Osteosclerotic Plasma Cell Myeloma 8 120499 -NCIT:C7151 Monoclonal Immunoglobulin Deposition Disease 7 120500 -NCIT:C158965 Light and Heavy Chain Deposition Disease 8 120501 -NCIT:C3819 Primary Amyloidosis 8 120502 -NCIT:C133731 Refractory Primary Amyloidosis 9 120503 -NCIT:C174055 Refractory AL Amyloidosis 10 120504 -NCIT:C133732 Recurrent Primary Amyloidosis 9 120505 -NCIT:C174054 Recurrent AL Amyloidosis 10 120506 -NCIT:C189282 Familial Primary Localized Cutaneous Amyloidosis-1 9 120507 -NCIT:C8299 Primary Systemic Amyloidosis 9 120508 -NCIT:C158962 AH Amyloidosis 10 120509 -NCIT:C158963 AL Amyloidosis 10 120510 -NCIT:C174054 Recurrent AL Amyloidosis 11 120511 -NCIT:C174055 Refractory AL Amyloidosis 11 120512 -NCIT:C158964 AHL Amyloidosis 10 120513 -NCIT:C7339 Heavy Chain Deposition Disease 8 120514 -NCIT:C7727 Light Chain Deposition Disease 8 120515 -NCIT:C7240 Plasma Cell Post-Transplant Lymphoproliferative Disorder 7 120516 -NCIT:C7241 Plasmacytoma-Like Post-Transplant Lymphoproliferative Disorder 8 120517 -NCIT:C7242 Plasma Cell Myeloma Post-Transplant Lymphoproliferative Disorder 8 120518 -NCIT:C7813 Refractory Plasma Cell Neoplasm 7 120519 -NCIT:C133731 Refractory Primary Amyloidosis 8 120520 -NCIT:C174055 Refractory AL Amyloidosis 9 120521 -NCIT:C7024 Refractory Plasma Cell Myeloma 8 120522 -NCIT:C178375 Triple-Class Refractory Plasma Cell Myeloma 9 120523 -NCIT:C9349 Plasmacytoma 7 120524 -NCIT:C118421 Anaplastic Plasmacytoma 8 120525 -NCIT:C4002 Extraosseous Plasmacytoma 8 120526 -NCIT:C162470 Testicular Plasmacytoma 9 120527 -NCIT:C173169 Sinonasal Plasmacytoma 9 120528 -NCIT:C185041 Splenic Plasmacytoma 9 120529 -NCIT:C185042 Liver Plasmacytoma 9 120530 -NCIT:C185043 Lung Plasmacytoma 9 120531 -NCIT:C185044 Cutaneous Plasmacytoma 9 120532 -NCIT:C6932 Solitary Plasmacytoma 8 120533 -NCIT:C6711 Chest Wall Solitary Plasmacytoma 9 120534 -NCIT:C7812 Solitary Plasmacytoma of Bone 9 120535 -NCIT:C185035 Multiple Solitary Plasmacytoma of Bone 10 120536 -NCIT:C4753 B-Cell Prolymphocytic Leukemia 6 120537 -NCIT:C157697 Refractory B-Cell Prolymphocytic Leukemia 7 120538 -NCIT:C158081 Recurrent B-Cell Prolymphocytic Leukemia 7 120539 -NCIT:C7299 Splenic Manifestation of B-Cell Prolymphocytic Leukemia 7 120540 -NCIT:C60310 Lung Mature B-Cell Neoplasm 6 120541 -NCIT:C181211 Lung Follicular Lymphoma 7 120542 -NCIT:C185043 Lung Plasmacytoma 7 120543 -NCIT:C45605 Lung Diffuse Large B-Cell Lymphoma 7 120544 -NCIT:C183121 Lung Intravascular Large B-Cell Lymphoma 8 120545 -NCIT:C45607 Pulmonary Lymphomatoid Granulomatosis 7 120546 -NCIT:C5264 Lung Mucosa-Associated Lymphoid Tissue Lymphoma 7 120547 -NCIT:C7056 Mature B-Cell Non-Hodgkin Lymphoma 6 120548 -NCIT:C131911 Burkitt-Like Lymphoma with 11q Aberration 7 120549 -NCIT:C133494 Large B-Cell Lymphoma with IRF4 Rearrangement 7 120550 -NCIT:C188458 Childhood Large B-Cell Lymphoma with IRF4 Rearrangement 8 120551 -NCIT:C139681 Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 7 120552 -NCIT:C160232 Recurrent Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 8 120553 -NCIT:C160240 Refractory Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 8 120554 -NCIT:C165799 Recurrent Mature B-Cell Non-Hodgkin Lymphoma 7 120555 -NCIT:C158149 Recurrent Transformed B-Cell Non-Hodgkin Lymphoma 8 120556 -NCIT:C160232 Recurrent Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 9 120557 -NCIT:C186483 Recurrent Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 9 120558 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 10 120559 -NCIT:C5007 Recurrent Follicular Lymphoma 8 120560 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 9 120561 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 9 120562 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 9 120563 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 10 120564 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 10 120565 -NCIT:C5008 Recurrent Burkitt Lymphoma 8 120566 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 9 120567 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 9 120568 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 8 120569 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 9 120570 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 120571 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 9 120572 -NCIT:C8154 Recurrent Small Lymphocytic Lymphoma 8 120573 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 8 120574 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 8 120575 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 9 120576 -NCIT:C8852 Recurrent Diffuse Large B-Cell Lymphoma 8 120577 -NCIT:C138015 Recurrent Extranodal Diffuse Large B-cell Lymphoma 9 120578 -NCIT:C138025 Recurrent Intravascular Large B-Cell Lymphoma 9 120579 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 120580 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 120581 -NCIT:C156696 Recurrent T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 9 120582 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 120583 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 120584 -NCIT:C157679 Recurrent Primary Effusion Lymphoma 9 120585 -NCIT:C157683 Recurrent Plasmablastic Lymphoma 9 120586 -NCIT:C160229 Recurrent High Grade B-Cell Lymphoma 9 120587 -NCIT:C151980 Recurrent High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 10 120588 -NCIT:C162451 Recurrent High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 10 120589 -NCIT:C188788 Recurrent High Grade B-Cell Lymphoma, Not Otherwise Specified 10 120590 -NCIT:C165240 Recurrent Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 120591 -NCIT:C160230 Recurrent Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 10 120592 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 120593 -NCIT:C182035 Recurrent Immunoblastic Lymphoma 10 120594 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 11 120595 -NCIT:C8926 Recurrent Centroblastic Lymphoma 10 120596 -NCIT:C183140 Recurrent Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 9 120597 -NCIT:C188790 Recurrent ALK-Positive Large B-Cell Lymphoma 9 120598 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 9 120599 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 120600 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 10 120601 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 120602 -NCIT:C171299 Indolent B-Cell Non-Hodgkin Lymphoma 7 120603 -NCIT:C175451 Primary Uveal Non-Hodgkin Lymphoma 8 120604 -NCIT:C175464 Primary Choroidal Non-Hodgkin Lymphoma 9 120605 -NCIT:C175466 Primary Ciliary Body Non-Hodgkin Lymphoma 9 120606 -NCIT:C175467 Primary Iris Non-Hodgkin Lymphoma 9 120607 -NCIT:C3212 Lymphoplasmacytic Lymphoma 8 120608 -NCIT:C141256 Lymphoplasmacytic Lymphoma by Ann Arbor Stage 9 120609 -NCIT:C8653 Ann Arbor Stage I Lymphoplasmacytic Lymphoma 10 120610 -NCIT:C8654 Ann Arbor Stage II Lymphoplasmacytic Lymphoma 10 120611 -NCIT:C8655 Ann Arbor Stage III Lymphoplasmacytic Lymphoma 10 120612 -NCIT:C8656 Ann Arbor Stage IV Lymphoplasmacytic Lymphoma 10 120613 -NCIT:C7305 Splenic Lymphoplasmacytic Lymphoma 9 120614 -NCIT:C80307 Waldenstrom Macroglobulinemia 9 120615 -NCIT:C115212 Familial Waldenstrom Macroglobulinemia 10 120616 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 10 120617 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 10 120618 -NCIT:C155910 Smoldering Waldenstrom Macroglobulinemia 10 120619 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 9 120620 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 10 120621 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 9 120622 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 10 120623 -NCIT:C3465 Grade 1 Follicular Lymphoma 8 120624 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 9 120625 -NCIT:C7220 Grade 1 Cutaneous Follicular Lymphoma 9 120626 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 9 120627 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 9 120628 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 10 120629 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 10 120630 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 9 120631 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 9 120632 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 9 120633 -NCIT:C37203 Small Lymphocytic Lymphoma with Immunoglobulin Heavy Chain Variable-Region Gene Somatic Hypermutation 8 120634 -NCIT:C4341 Marginal Zone Lymphoma 8 120635 -NCIT:C141258 Marginal Zone Lymphoma by Ann Arbor Stage 9 120636 -NCIT:C141260 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue by Ann Arbor Stage 10 120637 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 120638 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 120639 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 120640 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 120641 -NCIT:C141261 Nodal Marginal Zone Lymphoma by Ann Arbor Stage 10 120642 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 11 120643 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 11 120644 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 11 120645 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 11 120646 -NCIT:C68678 Ann Arbor Stage I Marginal Zone Lymphoma 10 120647 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 120648 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 11 120649 -NCIT:C68679 Ann Arbor Stage II Marginal Zone Lymphoma 10 120650 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 120651 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 11 120652 -NCIT:C68682 Ann Arbor Stage III Marginal Zone Lymphoma 10 120653 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 120654 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 11 120655 -NCIT:C68683 Ann Arbor Stage IV Marginal Zone Lymphoma 10 120656 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 120657 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 11 120658 -NCIT:C143085 Refractory Marginal Zone Lymphoma 9 120659 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 10 120660 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 120661 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 10 120662 -NCIT:C172360 Advanced Marginal Zone Lymphoma 9 120663 -NCIT:C3898 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 120664 -NCIT:C123394 Childhood Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 120665 -NCIT:C141260 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue by Ann Arbor Stage 10 120666 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 120667 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 120668 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 120669 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 120670 -NCIT:C172844 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue Involving the Digestive System 10 120671 -NCIT:C5266 Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 11 120672 -NCIT:C27763 Helicobacter Pylori-Associated Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 12 120673 -NCIT:C5635 Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 11 120674 -NCIT:C45166 Campylobacter Jejuni-Associated Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 12 120675 -NCIT:C5768 Liver Mucosa-Associated Lymphoid Tissue Lymphoma 11 120676 -NCIT:C95626 Esophageal Mucosa-Associated Lymphoid Tissue Lymphoma 11 120677 -NCIT:C96506 Colorectal Mucosa-Associated Lymphoid Tissue Lymphoma 11 120678 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 12 120679 -NCIT:C173693 Salivary Gland Mucosa-Associated Lymphoid Tissue Lymphoma 10 120680 -NCIT:C35687 Parotid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 11 120681 -NCIT:C181910 Endometrial Mucosa-Associated Lymphoid Tissue Lymphoma 10 120682 -NCIT:C35688 Breast Mucosa-Associated Lymphoid Tissue Lymphoma 10 120683 -NCIT:C35689 Ocular Adnexal Mucosa-Associated Lymphoid Tissue Lymphoma 10 120684 -NCIT:C175431 Conjunctival Mucosa-Associated Lymphoid Tissue Lymphoma 11 120685 -NCIT:C175482 Lacrimal System Mucosa-Associated Lymphoid Tissue Lymphoma 11 120686 -NCIT:C175483 Lacrimal Gland Mucosa-Associated Lymphoid Tissue Lymphoma 12 120687 -NCIT:C175484 Lacrimal Drainage System Mucosa-Associated Lymphoid Tissue Lymphoma 12 120688 -NCIT:C182357 Diffusion Restriction 11 120689 -NCIT:C44960 Chlamydia Psittaci-Associated Ocular Adnexal Mucosa-Associated Lymphoid Tissue Lymphoma 11 120690 -NCIT:C39878 Bladder Mucosa-Associated Lymphoid Tissue Lymphoma 10 120691 -NCIT:C45380 Thymic Mucosa-Associated Lymphoid Tissue Lymphoma 10 120692 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 120693 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 120694 -NCIT:C5264 Lung Mucosa-Associated Lymphoid Tissue Lymphoma 10 120695 -NCIT:C7230 Primary Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 120696 -NCIT:C45163 Borrelia Burgdoferi-Associated Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 120697 -NCIT:C7601 Thyroid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 10 120698 -NCIT:C95991 Dural Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 120699 -NCIT:C4663 Splenic Marginal Zone Lymphoma 9 120700 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 10 120701 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 10 120702 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 9 120703 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 10 120704 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 120705 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 10 120706 -NCIT:C8863 Nodal Marginal Zone Lymphoma 9 120707 -NCIT:C141261 Nodal Marginal Zone Lymphoma by Ann Arbor Stage 10 120708 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 11 120709 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 11 120710 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 11 120711 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 11 120712 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 10 120713 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 10 120714 -NCIT:C80299 Pediatric Nodal Marginal Zone Lymphoma 10 120715 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 8 120716 -NCIT:C7264 Diffuse Follicular Lymphoma 8 120717 -NCIT:C7194 Grade 2 Diffuse Follicular Lymphoma 9 120718 -NCIT:C9464 Grade 1 Diffuse Follicular Lymphoma 9 120719 -NCIT:C8968 Grade 2 Follicular Lymphoma 8 120720 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 9 120721 -NCIT:C7219 Grade 2 Cutaneous Follicular Lymphoma 9 120722 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 9 120723 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 9 120724 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 10 120725 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 10 120726 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 9 120727 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 9 120728 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 9 120729 -NCIT:C179717 Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 7 120730 -NCIT:C156699 Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 8 120731 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 9 120732 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 9 120733 -NCIT:C157625 Transformed Small Lymphocytic Lymphoma to Diffuse Large B-Cell Lymphoma 8 120734 -NCIT:C185134 Transformed Lymphoplasmacytic Lymphoma to Diffuse Large B-Cell Lymphoma 8 120735 -NCIT:C185135 Transformed Waldenstrom Macroglobulinemia to Diffuse Large B-Cell Lymphoma 9 120736 -NCIT:C186483 Recurrent Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 8 120737 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 9 120738 -NCIT:C186484 Refractory Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 8 120739 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 9 120740 -NCIT:C2912 Burkitt Lymphoma 7 120741 -NCIT:C141253 Burkitt Lymphoma by Ann Arbor Stage 8 120742 -NCIT:C5084 Ann Arbor Stage IV Burkitt Lymphoma 9 120743 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 10 120744 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 10 120745 -NCIT:C8848 Ann Arbor Stage I Burkitt Lymphoma 9 120746 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 10 120747 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 10 120748 -NCIT:C8849 Ann Arbor Stage II Burkitt Lymphoma 9 120749 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 10 120750 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 11 120751 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 11 120752 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 10 120753 -NCIT:C8850 Ann Arbor Stage III Burkitt Lymphoma 9 120754 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 10 120755 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 10 120756 -NCIT:C168651 Cutaneous Burkitt Lymphoma 8 120757 -NCIT:C188075 Kidney Burkitt Lymphoma 8 120758 -NCIT:C27409 Small Intestinal Burkitt Lymphoma 8 120759 -NCIT:C27410 Small Intestinal Atypical Burkitt/Burkitt-Like Lymphoma 9 120760 -NCIT:C27694 EBV-Related Burkitt Lymphoma 8 120761 -NCIT:C27122 Endemic Burkitt Lymphoma 9 120762 -NCIT:C27914 Sporadic Burkitt Lymphoma 8 120763 -NCIT:C27915 Immunodeficiency-Related Burkitt Lymphoma 8 120764 -NCIT:C7244 Burkitt Lymphoma Post-Transplant Lymphoproliferative Disorder 9 120765 -NCIT:C7245 Burkitt-Like Lymphoma Post-Transplant Lymphoproliferative Disorder 10 120766 -NCIT:C7255 Methotrexate-Related Burkitt Lymphoma 9 120767 -NCIT:C8286 AIDS-Related Burkitt Lymphoma 9 120768 -NCIT:C27857 AIDS-Related Burkitt Lymphoma with Plasmacytoid Differentiation 10 120769 -NCIT:C40376 Breast Burkitt Lymphoma 8 120770 -NCIT:C5008 Recurrent Burkitt Lymphoma 8 120771 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 9 120772 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 9 120773 -NCIT:C5251 Gastric Burkitt Lymphoma 8 120774 -NCIT:C6917 Atypical Burkitt/Burkitt-Like Lymphoma 8 120775 -NCIT:C27410 Small Intestinal Atypical Burkitt/Burkitt-Like Lymphoma 9 120776 -NCIT:C7245 Burkitt-Like Lymphoma Post-Transplant Lymphoproliferative Disorder 9 120777 -NCIT:C7188 Classical Burkitt Lymphoma 8 120778 -NCIT:C7189 Burkitt Lymphoma with Plasmacytoid Differentiation 8 120779 -NCIT:C27857 AIDS-Related Burkitt Lymphoma with Plasmacytoid Differentiation 9 120780 -NCIT:C7309 Splenic Burkitt Lymphoma 8 120781 -NCIT:C8847 Refractory Burkitt Lymphoma 8 120782 -NCIT:C9062 Adult Burkitt Lymphoma 8 120783 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 9 120784 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 9 120785 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 10 120786 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 10 120787 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 9 120788 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 9 120789 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 9 120790 -NCIT:C9095 Childhood Burkitt Lymphoma 8 120791 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 9 120792 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 9 120793 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 9 120794 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 9 120795 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 9 120796 -NCIT:C96502 Colorectal Burkitt Lymphoma 8 120797 -NCIT:C27465 Colon Burkitt Lymphoma 9 120798 -NCIT:C3082 Heavy Chain Disease 7 120799 -NCIT:C3083 Gamma Heavy Chain Disease 8 120800 -NCIT:C3132 Alpha Heavy Chain Disease 8 120801 -NCIT:C3892 Mu Heavy Chain Disease 8 120802 -NCIT:C3209 Follicular Lymphoma 7 120803 -NCIT:C138185 Duodenal-Type Follicular Lymphoma 8 120804 -NCIT:C138186 Predominantly Diffuse Follicular Lymphoma with 1p36 Deletion 8 120805 -NCIT:C141255 Follicular Lymphoma by Ann Arbor Stage 8 120806 -NCIT:C5006 Ann Arbor Stage IV Follicular Lymphoma 9 120807 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 10 120808 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 10 120809 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 10 120810 -NCIT:C8859 Ann Arbor Stage I Follicular Lymphoma 9 120811 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 10 120812 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 10 120813 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 10 120814 -NCIT:C8860 Ann Arbor Stage II Follicular Lymphoma 9 120815 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 10 120816 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 11 120817 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 11 120818 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 10 120819 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 11 120820 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 11 120821 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 10 120822 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 11 120823 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 11 120824 -NCIT:C8861 Ann Arbor Stage III Follicular Lymphoma 9 120825 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 10 120826 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 10 120827 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 10 120828 -NCIT:C150589 Testicular Follicular Lymphoma 8 120829 -NCIT:C156410 Thyroid Gland Follicular Lymphoma 8 120830 -NCIT:C161603 Prostate Follicular Lymphoma 8 120831 -NCIT:C172359 Advanced Follicular Lymphoma 8 120832 -NCIT:C173715 Salivary Gland Follicular Lymphoma 8 120833 -NCIT:C173716 Parotid Gland Follicular Lymphoma 9 120834 -NCIT:C175430 Conjunctival Follicular Lymphoma 8 120835 -NCIT:C175488 Lacrimal Gland Follicular Lymphoma 8 120836 -NCIT:C181211 Lung Follicular Lymphoma 8 120837 -NCIT:C3460 Grade 3 Follicular Lymphoma 8 120838 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 9 120839 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 10 120840 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 10 120841 -NCIT:C6859 Grade 3 Cutaneous Follicular Lymphoma 9 120842 -NCIT:C7191 Grade 3a Follicular Lymphoma 9 120843 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 10 120844 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 10 120845 -NCIT:C7192 Grade 3b Follicular Lymphoma 9 120846 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 10 120847 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 10 120848 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 9 120849 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 9 120850 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 10 120851 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 10 120852 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 9 120853 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 9 120854 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 9 120855 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 10 120856 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 10 120857 -NCIT:C3465 Grade 1 Follicular Lymphoma 8 120858 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 9 120859 -NCIT:C7220 Grade 1 Cutaneous Follicular Lymphoma 9 120860 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 9 120861 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 9 120862 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 10 120863 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 10 120864 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 9 120865 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 9 120866 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 9 120867 -NCIT:C37209 Diffuse Blastoid B-Cell Lymphoma 8 120868 -NCIT:C40377 Breast Follicular Lymphoma 8 120869 -NCIT:C5007 Recurrent Follicular Lymphoma 8 120870 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 9 120871 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 9 120872 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 9 120873 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 10 120874 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 10 120875 -NCIT:C7218 Cutaneous Follicular Lymphoma 8 120876 -NCIT:C6859 Grade 3 Cutaneous Follicular Lymphoma 9 120877 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 9 120878 -NCIT:C7219 Grade 2 Cutaneous Follicular Lymphoma 9 120879 -NCIT:C7220 Grade 1 Cutaneous Follicular Lymphoma 9 120880 -NCIT:C7254 Methotrexate-Associated Follicular Lymphoma 8 120881 -NCIT:C7264 Diffuse Follicular Lymphoma 8 120882 -NCIT:C7194 Grade 2 Diffuse Follicular Lymphoma 9 120883 -NCIT:C9464 Grade 1 Diffuse Follicular Lymphoma 9 120884 -NCIT:C7307 Splenic Follicular Lymphoma 8 120885 -NCIT:C80297 Pediatric-Type Follicular Lymphoma 8 120886 -NCIT:C80298 Intestinal Follicular Lymphoma 8 120887 -NCIT:C96056 Small Intestinal Follicular Lymphoma 9 120888 -NCIT:C8858 Refractory Follicular Lymphoma 8 120889 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 9 120890 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 9 120891 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 9 120892 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 10 120893 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 10 120894 -NCIT:C8968 Grade 2 Follicular Lymphoma 8 120895 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 9 120896 -NCIT:C7219 Grade 2 Cutaneous Follicular Lymphoma 9 120897 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 9 120898 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 9 120899 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 10 120900 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 10 120901 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 9 120902 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 9 120903 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 9 120904 -NCIT:C4337 Mantle Cell Lymphoma 7 120905 -NCIT:C141257 Mantle Cell Lymphoma by Ann Arbor Stage 8 120906 -NCIT:C8465 Ann Arbor Stage I Mantle Cell Lymphoma 9 120907 -NCIT:C8483 Ann Arbor Stage III Mantle Cell Lymphoma 9 120908 -NCIT:C8486 Ann Arbor Stage IV Mantle Cell Lymphoma 9 120909 -NCIT:C9202 Ann Arbor Stage II Mantle Cell Lymphoma 9 120910 -NCIT:C8473 Ann Arbor Stage II Contiguous Mantle Cell Lymphoma 10 120911 -NCIT:C9198 Ann Arbor Stage II Non-Contiguous Mantle Cell Lymphoma 10 120912 -NCIT:C161604 Prostate Mantle Cell Lymphoma 8 120913 -NCIT:C181210 Parotid Gland Mantle Cell Lymphoma 8 120914 -NCIT:C188080 Tonsillar Mantle Cell Lymphoma 8 120915 -NCIT:C27440 Gastric Mantle Cell Lymphoma 8 120916 -NCIT:C27441 Small Intestinal Mantle Cell Lymphoma 8 120917 -NCIT:C39747 Pleomorphic Variant Mantle Cell Lymphoma 8 120918 -NCIT:C45266 Cutaneous Mantle Cell Lymphoma 8 120919 -NCIT:C7229 Blastoid Variant Mantle Cell Lymphoma 8 120920 -NCIT:C7306 Splenic Mantle Cell Lymphoma 8 120921 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 8 120922 -NCIT:C8862 Refractory Mantle Cell Lymphoma 8 120923 -NCIT:C96505 Colorectal Mantle Cell Lymphoma 8 120924 -NCIT:C27411 Colon Mantle Cell Lymphoma 9 120925 -NCIT:C6858 Primary Cutaneous B-Cell Non-Hodgkin Lymphoma 7 120926 -NCIT:C45193 Primary Cutaneous Diffuse Large B-Cell Lymphoma 8 120927 -NCIT:C45194 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 120928 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 120929 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 120930 -NCIT:C45213 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Other 9 120931 -NCIT:C45214 Primary Cutaneous Intravascular Large B-Cell Lymphoma 10 120932 -NCIT:C45215 Primary Cutaneous T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 10 120933 -NCIT:C45216 Primary Cutaneous Plasmablastic Lymphoma 10 120934 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 8 120935 -NCIT:C7230 Primary Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 120936 -NCIT:C45163 Borrelia Burgdoferi-Associated Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 120937 -NCIT:C7228 Refractory Mature B-Cell Non-Hodgkin Lymphoma 7 120938 -NCIT:C143085 Refractory Marginal Zone Lymphoma 8 120939 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 9 120940 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 120941 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 9 120942 -NCIT:C158150 Refractory Transformed B-Cell Non-Hodgkin Lymphoma 8 120943 -NCIT:C160240 Refractory Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 9 120944 -NCIT:C186484 Refractory Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 9 120945 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 10 120946 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 8 120947 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 9 120948 -NCIT:C8846 Refractory Small Lymphocytic Lymphoma 8 120949 -NCIT:C8847 Refractory Burkitt Lymphoma 8 120950 -NCIT:C8853 Refractory Diffuse Large B-Cell Lymphoma 8 120951 -NCIT:C138018 Refractory Extranodal Diffuse Large B-cell Lymphoma 9 120952 -NCIT:C138026 Refractory Intravascular Large B-Cell Lymphoma 9 120953 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 120954 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 120955 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 120956 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 120957 -NCIT:C157678 Refractory T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 9 120958 -NCIT:C157680 Refractory Primary Effusion Lymphoma 9 120959 -NCIT:C157684 Refractory Plasmablastic Lymphoma 9 120960 -NCIT:C160233 Refractory High Grade B-Cell Lymphoma 9 120961 -NCIT:C151979 Refractory High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 10 120962 -NCIT:C162453 Refractory High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 10 120963 -NCIT:C188789 Refractory High Grade B-Cell Lymphoma, Not Otherwise Specified 10 120964 -NCIT:C165241 Refractory Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 120965 -NCIT:C160238 Refractory Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 10 120966 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 120967 -NCIT:C182034 Refractory Immunoblastic Lymphoma 10 120968 -NCIT:C8927 Refractory Centroblastic Lymphoma 10 120969 -NCIT:C183142 Refractory Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 9 120970 -NCIT:C188791 Refractory ALK-Positive Large B-Cell Lymphoma 9 120971 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 120972 -NCIT:C8858 Refractory Follicular Lymphoma 8 120973 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 9 120974 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 9 120975 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 9 120976 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 10 120977 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 10 120978 -NCIT:C8862 Refractory Mantle Cell Lymphoma 8 120979 -NCIT:C7540 Small Lymphocytic Lymphoma 7 120980 -NCIT:C141259 Small Lymphocytic Lymphoma by Ann Arbor Stage 8 120981 -NCIT:C8070 Ann Arbor Stage I Small Lymphocytic Lymphoma 9 120982 -NCIT:C8115 Ann Arbor Stage II Small Lymphocytic Lymphoma 9 120983 -NCIT:C8128 Ann Arbor Stage III Small Lymphocytic Lymphoma 9 120984 -NCIT:C8141 Ann Arbor Stage IV Small Lymphocytic Lymphoma 9 120985 -NCIT:C161605 Prostate Small Lymphocytic Lymphoma 8 120986 -NCIT:C36273 Small Lymphocytic Lymphoma with Plasmacytoid Differentiation 8 120987 -NCIT:C37203 Small Lymphocytic Lymphoma with Immunoglobulin Heavy Chain Variable-Region Gene Somatic Hypermutation 8 120988 -NCIT:C37206 Small Lymphocytic Lymphoma with Unmutated Immunoglobulin Heavy Chain Variable-Region Gene 8 120989 -NCIT:C7304 Splenic Small Lymphocytic Lymphoma 8 120990 -NCIT:C8154 Recurrent Small Lymphocytic Lymphoma 8 120991 -NCIT:C8846 Refractory Small Lymphocytic Lymphoma 8 120992 -NCIT:C80309 Splenic Diffuse Red Pulp Small B-Cell Lymphoma 7 120993 -NCIT:C8851 Diffuse Large B-Cell Lymphoma 7 120994 -NCIT:C138211 High Grade B-Cell Lymphoma 8 120995 -NCIT:C138195 High Grade B-Cell Lymphoma with MYC and BCL2 and/or BCL6 Rearrangements 9 120996 -NCIT:C125904 High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 10 120997 -NCIT:C151979 Refractory High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 11 120998 -NCIT:C151980 Recurrent High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 11 120999 -NCIT:C131913 High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 10 121000 -NCIT:C162451 Recurrent High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 11 121001 -NCIT:C162453 Refractory High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 11 121002 -NCIT:C160229 Recurrent High Grade B-Cell Lymphoma 9 121003 -NCIT:C151980 Recurrent High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 10 121004 -NCIT:C162451 Recurrent High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 10 121005 -NCIT:C188788 Recurrent High Grade B-Cell Lymphoma, Not Otherwise Specified 10 121006 -NCIT:C160233 Refractory High Grade B-Cell Lymphoma 9 121007 -NCIT:C151979 Refractory High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 10 121008 -NCIT:C162453 Refractory High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 10 121009 -NCIT:C188789 Refractory High Grade B-Cell Lymphoma, Not Otherwise Specified 10 121010 -NCIT:C80291 High Grade B-Cell Lymphoma, Not Otherwise Specified 9 121011 -NCIT:C188788 Recurrent High Grade B-Cell Lymphoma, Not Otherwise Specified 10 121012 -NCIT:C188789 Refractory High Grade B-Cell Lymphoma, Not Otherwise Specified 10 121013 -NCIT:C96057 Small Intestinal High Grade B-Cell Lymphoma, Not Otherwise Specified 10 121014 -NCIT:C96501 Colorectal High Grade B-Cell Lymphoma, Not Otherwise Specified 10 121015 -NCIT:C138320 HHV8-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 121016 -NCIT:C138899 Double-Expressor Lymphoma 8 121017 -NCIT:C141254 Diffuse Large B-Cell Lymphoma by Ann Arbor Stage 8 121018 -NCIT:C141262 Primary Mediastinal (Thymic) Large B-Cell Lymphoma by Ann Arbor Stage 9 121019 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 121020 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 121021 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 121022 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 121023 -NCIT:C141263 Centroblastic Lymphoma by Ann Arbor Stage 9 121024 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 10 121025 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 10 121026 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 10 121027 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 10 121028 -NCIT:C8854 Ann Arbor Stage I Diffuse Large B-Cell Lymphoma 9 121029 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 10 121030 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 121031 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 10 121032 -NCIT:C8855 Ann Arbor Stage II Diffuse Large B-Cell Lymphoma 9 121033 -NCIT:C171158 Ann Arbor Stage IIX (Bulky) Diffuse Large B-Cell Lymphoma 10 121034 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 10 121035 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 11 121036 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 11 121037 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 121038 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 10 121039 -NCIT:C8856 Ann Arbor Stage III Diffuse Large B-Cell Lymphoma 9 121040 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 10 121041 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 121042 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 10 121043 -NCIT:C8857 Ann Arbor Stage IV Diffuse Large B-Cell Lymphoma 9 121044 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 10 121045 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 121046 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 10 121047 -NCIT:C150396 Fibrin-Associated Diffuse Large B-Cell Lymphoma 8 121048 -NCIT:C183141 Cardiac Fibrin-Associated Diffuse Large B-Cell Lymphoma 9 121049 -NCIT:C161602 Prostate Diffuse Large B-Cell Lymphoma 8 121050 -NCIT:C162467 Testicular Diffuse Large B-Cell Lymphoma 8 121051 -NCIT:C171264 Advanced Diffuse Large B-Cell Lymphoma 8 121052 -NCIT:C172850 Digestive System Diffuse Large B-Cell Lymphoma 8 121053 -NCIT:C5253 Gastric Diffuse Large B-Cell Lymphoma 9 121054 -NCIT:C95625 Esophageal Diffuse Large B-Cell Lymphoma 9 121055 -NCIT:C96055 Small Intestinal Diffuse Large B-Cell Lymphoma 9 121056 -NCIT:C96057 Small Intestinal High Grade B-Cell Lymphoma, Not Otherwise Specified 10 121057 -NCIT:C96503 Colorectal Diffuse Large B-Cell Lymphoma 9 121058 -NCIT:C96501 Colorectal High Grade B-Cell Lymphoma, Not Otherwise Specified 10 121059 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 10 121060 -NCIT:C96843 Liver Diffuse Large B-Cell Lymphoma 9 121061 -NCIT:C173717 Salivary Gland Diffuse Large B-Cell Lymphoma 8 121062 -NCIT:C173719 Parotid Gland Diffuse Large B-Cell Lymphoma 9 121063 -NCIT:C173811 Primary Bone Diffuse Large B-Cell Lymphoma 8 121064 -NCIT:C175433 Conjunctival Diffuse Large B-Cell Lymphoma 8 121065 -NCIT:C175485 Lacrimal System Diffuse Large B-Cell Lymphoma 8 121066 -NCIT:C175486 Lacrimal Gland Diffuse Large B-Cell Lymphoma 9 121067 -NCIT:C175487 Lacrimal Drainage System Diffuse Large B-Cell Lymphoma 9 121068 -NCIT:C183146 Cardiac Diffuse Large B-Cell Lymphoma 8 121069 -NCIT:C183141 Cardiac Fibrin-Associated Diffuse Large B-Cell Lymphoma 9 121070 -NCIT:C188072 Tonsillar Diffuse Large B-Cell Lymphoma 8 121071 -NCIT:C188081 Nasal Cavity Diffuse Large B-Cell Lymphoma 8 121072 -NCIT:C27856 Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 8 121073 -NCIT:C27858 AIDS-Related Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 9 121074 -NCIT:C40375 Breast Diffuse Large B-Cell Lymphoma 8 121075 -NCIT:C4342 Intravascular Large B-Cell Lymphoma 8 121076 -NCIT:C129602 Central Nervous System Intravascular Large B-Cell Lymphoma 9 121077 -NCIT:C138025 Recurrent Intravascular Large B-Cell Lymphoma 9 121078 -NCIT:C138026 Refractory Intravascular Large B-Cell Lymphoma 9 121079 -NCIT:C183121 Lung Intravascular Large B-Cell Lymphoma 9 121080 -NCIT:C45214 Primary Cutaneous Intravascular Large B-Cell Lymphoma 9 121081 -NCIT:C45193 Primary Cutaneous Diffuse Large B-Cell Lymphoma 8 121082 -NCIT:C45194 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 121083 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 121084 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 121085 -NCIT:C45213 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Other 9 121086 -NCIT:C45214 Primary Cutaneous Intravascular Large B-Cell Lymphoma 10 121087 -NCIT:C45215 Primary Cutaneous T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 10 121088 -NCIT:C45216 Primary Cutaneous Plasmablastic Lymphoma 10 121089 -NCIT:C45605 Lung Diffuse Large B-Cell Lymphoma 8 121090 -NCIT:C183121 Lung Intravascular Large B-Cell Lymphoma 9 121091 -NCIT:C6046 Thyroid Gland Diffuse Large B-Cell Lymphoma 8 121092 -NCIT:C7263 Thyroid Gland Immunoblastic Lymphoma 9 121093 -NCIT:C6073 Paranasal Sinus Diffuse Large B-Cell Lymphoma 8 121094 -NCIT:C63533 Kidney Diffuse Large B-Cell Lymphoma 8 121095 -NCIT:C6915 Primary Effusion Lymphoma 8 121096 -NCIT:C150406 Extracavitary Primary Effusion Lymphoma 9 121097 -NCIT:C150407 Body Cavity Primary Effusion Lymphoma 9 121098 -NCIT:C183135 Pleural Primary Effusion Lymphoma 10 121099 -NCIT:C183136 Pericardial Primary Effusion Lymphoma 10 121100 -NCIT:C183137 Peritoneal Primary Effusion Lymphoma 10 121101 -NCIT:C157679 Recurrent Primary Effusion Lymphoma 9 121102 -NCIT:C157680 Refractory Primary Effusion Lymphoma 9 121103 -NCIT:C9017 AIDS-Related Primary Effusion Lymphoma 9 121104 -NCIT:C71720 Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 121105 -NCIT:C129602 Central Nervous System Intravascular Large B-Cell Lymphoma 9 121106 -NCIT:C155797 Pituitary Gland Diffuse Large B-Cell Lymphoma 9 121107 -NCIT:C157067 Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 121108 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 121109 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 121110 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 121111 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 121112 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 121113 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 121114 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 121115 -NCIT:C7212 AIDS-Related Diffuse Large B-cell Lymphoma 8 121116 -NCIT:C27858 AIDS-Related Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 9 121117 -NCIT:C27859 AIDS-Related Plasmablastic Lymphoma 9 121118 -NCIT:C38160 AIDS-Related Plasmablastic Lymphoma of Mucosa Site 10 121119 -NCIT:C9016 AIDS-Related Plasmablastic Lymphoma of the Oral Mucosa 11 121120 -NCIT:C8285 AIDS-Related Immunoblastic Lymphoma 9 121121 -NCIT:C9017 AIDS-Related Primary Effusion Lymphoma 9 121122 -NCIT:C7224 Plasmablastic Lymphoma 8 121123 -NCIT:C157683 Recurrent Plasmablastic Lymphoma 9 121124 -NCIT:C157684 Refractory Plasmablastic Lymphoma 9 121125 -NCIT:C27859 AIDS-Related Plasmablastic Lymphoma 9 121126 -NCIT:C38160 AIDS-Related Plasmablastic Lymphoma of Mucosa Site 10 121127 -NCIT:C9016 AIDS-Related Plasmablastic Lymphoma of the Oral Mucosa 11 121128 -NCIT:C38159 Plasmablastic Lymphoma of Mucosa Site 9 121129 -NCIT:C38160 AIDS-Related Plasmablastic Lymphoma of Mucosa Site 10 121130 -NCIT:C9016 AIDS-Related Plasmablastic Lymphoma of the Oral Mucosa 11 121131 -NCIT:C80290 Plasmablastic Lymphoma of the Oral Mucosa 10 121132 -NCIT:C9016 AIDS-Related Plasmablastic Lymphoma of the Oral Mucosa 11 121133 -NCIT:C45216 Primary Cutaneous Plasmablastic Lymphoma 9 121134 -NCIT:C7225 ALK-Positive Large B-Cell Lymphoma 8 121135 -NCIT:C188790 Recurrent ALK-Positive Large B-Cell Lymphoma 9 121136 -NCIT:C188791 Refractory ALK-Positive Large B-Cell Lymphoma 9 121137 -NCIT:C7246 Diffuse Large B-Cell Lymphoma Post-Transplant Lymphoproliferative Disorder 8 121138 -NCIT:C7247 Anaplastic Lymphoma Post-Transplant Lymphoproliferative Disorder 9 121139 -NCIT:C7248 Centroblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 9 121140 -NCIT:C7249 Immunoblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 9 121141 -NCIT:C7253 Methotrexate-Associated Diffuse Large B-Cell Lymphoma 8 121142 -NCIT:C7308 Splenic Diffuse Large B-Cell Lymphoma 8 121143 -NCIT:C7615 Adult Diffuse Large B-Cell Lymphoma 8 121144 -NCIT:C115150 Adult Grade III Lymphomatoid Granulomatosis 9 121145 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 121146 -NCIT:C188457 Adult EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 121147 -NCIT:C7873 Adult Immunoblastic Lymphoma 9 121148 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 10 121149 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 10 121150 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 11 121151 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 11 121152 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 10 121153 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 10 121154 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 10 121155 -NCIT:C7616 Childhood Diffuse Large B-Cell Lymphoma 8 121156 -NCIT:C115204 Childhood Grade III Lymphomatoid Granulomatosis 9 121157 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 10 121158 -NCIT:C188455 Childhood Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 121159 -NCIT:C188456 Childhood EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 121160 -NCIT:C9079 Childhood Immunoblastic Lymphoma 9 121161 -NCIT:C7933 Grade III Lymphomatoid Granulomatosis 8 121162 -NCIT:C115150 Adult Grade III Lymphomatoid Granulomatosis 9 121163 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 121164 -NCIT:C115204 Childhood Grade III Lymphomatoid Granulomatosis 9 121165 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 10 121166 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 9 121167 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 121168 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 10 121169 -NCIT:C80280 Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 121170 -NCIT:C148392 Diffuse Large B-Cell Lymphoma, Not Otherwise Specified Molecular Subtypes 9 121171 -NCIT:C148394 MCD Diffuse Large B-Cell Lymphoma 10 121172 -NCIT:C148395 BN2 Diffuse Large B-Cell Lymphoma 10 121173 -NCIT:C148396 N1 Diffuse Large B-Cell Lymphoma 10 121174 -NCIT:C148398 EZB Diffuse Large B-Cell Lymphoma 10 121175 -NCIT:C187445 ST2 Diffuse Large B-Cell Lymphoma 10 121176 -NCIT:C187447 A53 Diffuse Large B-Cell Lymphoma 10 121177 -NCIT:C165240 Recurrent Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 121178 -NCIT:C160230 Recurrent Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 10 121179 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 121180 -NCIT:C182035 Recurrent Immunoblastic Lymphoma 10 121181 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 11 121182 -NCIT:C8926 Recurrent Centroblastic Lymphoma 10 121183 -NCIT:C165241 Refractory Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 121184 -NCIT:C160238 Refractory Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 10 121185 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 121186 -NCIT:C182034 Refractory Immunoblastic Lymphoma 10 121187 -NCIT:C8927 Refractory Centroblastic Lymphoma 10 121188 -NCIT:C3461 Immunoblastic Lymphoma 9 121189 -NCIT:C182034 Refractory Immunoblastic Lymphoma 10 121190 -NCIT:C182035 Recurrent Immunoblastic Lymphoma 10 121191 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 11 121192 -NCIT:C7249 Immunoblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 10 121193 -NCIT:C7263 Thyroid Gland Immunoblastic Lymphoma 10 121194 -NCIT:C7873 Adult Immunoblastic Lymphoma 10 121195 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 11 121196 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 11 121197 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 12 121198 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 12 121199 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 11 121200 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 11 121201 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 11 121202 -NCIT:C8285 AIDS-Related Immunoblastic Lymphoma 10 121203 -NCIT:C9079 Childhood Immunoblastic Lymphoma 10 121204 -NCIT:C4074 Centroblastic Lymphoma 9 121205 -NCIT:C141263 Centroblastic Lymphoma by Ann Arbor Stage 10 121206 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 11 121207 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 11 121208 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 11 121209 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 11 121210 -NCIT:C7248 Centroblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 10 121211 -NCIT:C8926 Recurrent Centroblastic Lymphoma 10 121212 -NCIT:C8927 Refractory Centroblastic Lymphoma 10 121213 -NCIT:C45219 Diffuse Large B-Cell Lymphoma, Not Otherwise Specified by Gene Expression Profile 9 121214 -NCIT:C36080 Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 10 121215 -NCIT:C160230 Recurrent Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 11 121216 -NCIT:C160238 Refractory Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 11 121217 -NCIT:C36081 Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 121218 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 11 121219 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 11 121220 -NCIT:C45231 Diffuse Large B-Cell Lymphoma Unclassifiable 10 121221 -NCIT:C6916 Anaplastic Lymphoma 9 121222 -NCIT:C7247 Anaplastic Lymphoma Post-Transplant Lymphoproliferative Disorder 10 121223 -NCIT:C80281 EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 121224 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 121225 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 121226 -NCIT:C188456 Childhood EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 121227 -NCIT:C188457 Adult EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 121228 -NCIT:C80289 Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 8 121229 -NCIT:C183140 Recurrent Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 9 121230 -NCIT:C183142 Refractory Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 9 121231 -NCIT:C45691 Pyothorax-Associated Lymphoma 9 121232 -NCIT:C8852 Recurrent Diffuse Large B-Cell Lymphoma 8 121233 -NCIT:C138015 Recurrent Extranodal Diffuse Large B-cell Lymphoma 9 121234 -NCIT:C138025 Recurrent Intravascular Large B-Cell Lymphoma 9 121235 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 121236 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 121237 -NCIT:C156696 Recurrent T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 9 121238 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 121239 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 121240 -NCIT:C157679 Recurrent Primary Effusion Lymphoma 9 121241 -NCIT:C157683 Recurrent Plasmablastic Lymphoma 9 121242 -NCIT:C160229 Recurrent High Grade B-Cell Lymphoma 9 121243 -NCIT:C151980 Recurrent High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 10 121244 -NCIT:C162451 Recurrent High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 10 121245 -NCIT:C188788 Recurrent High Grade B-Cell Lymphoma, Not Otherwise Specified 10 121246 -NCIT:C165240 Recurrent Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 121247 -NCIT:C160230 Recurrent Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 10 121248 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 121249 -NCIT:C182035 Recurrent Immunoblastic Lymphoma 10 121250 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 11 121251 -NCIT:C8926 Recurrent Centroblastic Lymphoma 10 121252 -NCIT:C183140 Recurrent Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 9 121253 -NCIT:C188790 Recurrent ALK-Positive Large B-Cell Lymphoma 9 121254 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 9 121255 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 121256 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 10 121257 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 121258 -NCIT:C8853 Refractory Diffuse Large B-Cell Lymphoma 8 121259 -NCIT:C138018 Refractory Extranodal Diffuse Large B-cell Lymphoma 9 121260 -NCIT:C138026 Refractory Intravascular Large B-Cell Lymphoma 9 121261 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 121262 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 121263 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 121264 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 121265 -NCIT:C157678 Refractory T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 9 121266 -NCIT:C157680 Refractory Primary Effusion Lymphoma 9 121267 -NCIT:C157684 Refractory Plasmablastic Lymphoma 9 121268 -NCIT:C160233 Refractory High Grade B-Cell Lymphoma 9 121269 -NCIT:C151979 Refractory High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 10 121270 -NCIT:C162453 Refractory High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 10 121271 -NCIT:C188789 Refractory High Grade B-Cell Lymphoma, Not Otherwise Specified 10 121272 -NCIT:C165241 Refractory Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 121273 -NCIT:C160238 Refractory Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 10 121274 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 121275 -NCIT:C182034 Refractory Immunoblastic Lymphoma 10 121276 -NCIT:C8927 Refractory Centroblastic Lymphoma 10 121277 -NCIT:C183142 Refractory Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 9 121278 -NCIT:C188791 Refractory ALK-Positive Large B-Cell Lymphoma 9 121279 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 121280 -NCIT:C9280 Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 121281 -NCIT:C141262 Primary Mediastinal (Thymic) Large B-Cell Lymphoma by Ann Arbor Stage 9 121282 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 121283 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 121284 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 121285 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 121286 -NCIT:C188455 Childhood Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 121287 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 121288 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 121289 -NCIT:C9496 T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 8 121290 -NCIT:C156696 Recurrent T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 9 121291 -NCIT:C157678 Refractory T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 9 121292 -NCIT:C45215 Primary Cutaneous T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 9 121293 -NCIT:C7182 B-Cell Proliferation of Uncertain Malignant Potential 6 121294 -NCIT:C138181 In Situ Follicular Neoplasia 7 121295 -NCIT:C138191 In Situ Mantle Cell Neoplasia 7 121296 -NCIT:C157343 Monoclonal Gammopathy of Renal Significance 7 121297 -NCIT:C3996 Monoclonal Gammopathy of Undetermined Significance 7 121298 -NCIT:C150566 IgM Monoclonal Gammopathy of Undetermined Significance 8 121299 -NCIT:C150588 Non-IgM Monoclonal Gammopathy of Undetermined Significance 8 121300 -NCIT:C7183 Polymorphic Post-Transplant Lymphoproliferative Disorder 7 121301 -NCIT:C157476 Recurrent Polymorphic Post-Transplant Lymphoproliferative Disorder 8 121302 -NCIT:C157477 Refractory Polymorphic Post-Transplant Lymphoproliferative Disorder 8 121303 -NCIT:C7930 Lymphomatoid Granulomatosis 7 121304 -NCIT:C123392 Childhood Lymphomatoid Granulomatosis 8 121305 -NCIT:C115204 Childhood Grade III Lymphomatoid Granulomatosis 9 121306 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 10 121307 -NCIT:C123393 Recurrent Childhood Lymphomatoid Granulomatosis 9 121308 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 10 121309 -NCIT:C186662 Central Nervous System Lymphomatoid Granulomatosis 8 121310 -NCIT:C45267 Cutaneous Lymphomatoid Granulomatosis 8 121311 -NCIT:C45607 Pulmonary Lymphomatoid Granulomatosis 8 121312 -NCIT:C7931 Grade I Lymphomatoid Granulomatosis 8 121313 -NCIT:C115430 Recurrent Grade I Lymphomatoid Granulomatosis 9 121314 -NCIT:C7932 Grade II Lymphomatoid Granulomatosis 8 121315 -NCIT:C115431 Recurrent Grade II Lymphomatoid Granulomatosis 9 121316 -NCIT:C7933 Grade III Lymphomatoid Granulomatosis 8 121317 -NCIT:C115150 Adult Grade III Lymphomatoid Granulomatosis 9 121318 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 121319 -NCIT:C115204 Childhood Grade III Lymphomatoid Granulomatosis 9 121320 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 10 121321 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 9 121322 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 121323 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 10 121324 -NCIT:C7934 Recurrent Lymphomatoid Granulomatosis 8 121325 -NCIT:C115430 Recurrent Grade I Lymphomatoid Granulomatosis 9 121326 -NCIT:C115431 Recurrent Grade II Lymphomatoid Granulomatosis 9 121327 -NCIT:C123393 Recurrent Childhood Lymphomatoid Granulomatosis 9 121328 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 10 121329 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 9 121330 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 121331 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 10 121332 -NCIT:C7237 Monomorphic B-Cell Post-Transplant Lymphoproliferative Disorder 6 121333 -NCIT:C7240 Plasma Cell Post-Transplant Lymphoproliferative Disorder 7 121334 -NCIT:C7241 Plasmacytoma-Like Post-Transplant Lymphoproliferative Disorder 8 121335 -NCIT:C7242 Plasma Cell Myeloma Post-Transplant Lymphoproliferative Disorder 8 121336 -NCIT:C7244 Burkitt Lymphoma Post-Transplant Lymphoproliferative Disorder 7 121337 -NCIT:C7245 Burkitt-Like Lymphoma Post-Transplant Lymphoproliferative Disorder 8 121338 -NCIT:C7246 Diffuse Large B-Cell Lymphoma Post-Transplant Lymphoproliferative Disorder 7 121339 -NCIT:C7247 Anaplastic Lymphoma Post-Transplant Lymphoproliferative Disorder 8 121340 -NCIT:C7248 Centroblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 8 121341 -NCIT:C7249 Immunoblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 8 121342 -NCIT:C7400 Burkitt Leukemia 6 121343 -NCIT:C151976 Recurrent Burkitt Leukemia 7 121344 -NCIT:C151977 Refractory Burkitt Leukemia 7 121345 -NCIT:C7952 Childhood Burkitt Leukemia 7 121346 -NCIT:C7954 Adult Burkitt Leukemia 7 121347 -NCIT:C7402 Hairy Cell Leukemia 6 121348 -NCIT:C142882 Recurrent Hairy Cell Leukemia 7 121349 -NCIT:C7301 Splenic Manifestation of Hairy Cell Leukemia 7 121350 -NCIT:C8029 Progressive Hairy Cell Leukemia Initial Treatment 7 121351 -NCIT:C8030 Refractory Hairy Cell Leukemia 7 121352 -NCIT:C80308 Splenic B-Cell Lymphoma/Leukemia, Unclassifiable 6 121353 -NCIT:C7401 Hairy Cell Leukemia Variant 7 121354 -NCIT:C171064 Refractory Hairy Cell Leukemia Variant 8 121355 -NCIT:C171065 Recurrent Hairy Cell Leukemia Variant 8 121356 -NCIT:C80309 Splenic Diffuse Red Pulp Small B-Cell Lymphoma 7 121357 -NCIT:C80310 Monoclonal B-Cell Lymphocytosis 6 121358 -NCIT:C27908 T-Cell and NK-Cell Neoplasm 4 121359 -NCIT:C190400 Recurrent T-Cell and NK-Cell Neoplasm 5 121360 -NCIT:C173409 Recurrent Mature T-Cell and NK-Cell Neoplasm 6 121361 -NCIT:C150133 Recurrent T-Cell Prolymphocytic Leukemia 7 121362 -NCIT:C157692 Recurrent Aggressive NK-Cell Leukemia 7 121363 -NCIT:C180985 Recurrent T-Cell Large Granular Lymphocyte Leukemia 7 121364 -NCIT:C8688 Recurrent Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 7 121365 -NCIT:C115439 Recurrent Mycosis Fungoides and Sezary Syndrome 8 121366 -NCIT:C176999 Recurrent Sezary Syndrome 9 121367 -NCIT:C8686 Recurrent Mycosis Fungoides 9 121368 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 121369 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 8 121370 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 8 121371 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 121372 -NCIT:C157689 Recurrent NK-Cell Lymphoma, Unclassifiable 8 121373 -NCIT:C165789 Recurrent Transformed T-cell Non-Hodgkin Lymphoma 8 121374 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 9 121375 -NCIT:C168778 Recurrent Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 8 121376 -NCIT:C168780 Recurrent Follicular T-Cell Lymphoma 8 121377 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 8 121378 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 121379 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 121380 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 121381 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 121382 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 121383 -NCIT:C8686 Recurrent Mycosis Fungoides 9 121384 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 121385 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 8 121386 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 8 121387 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 8 121388 -NCIT:C9250 Recurrent Anaplastic Large Cell Lymphoma 8 121389 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 9 121390 -NCIT:C162688 Recurrent Systemic Anaplastic Large Cell Lymphoma 9 121391 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 121392 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 121393 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 121394 -NCIT:C8663 Recurrent T-Cell Non-Hodgkin Lymphoma 6 121395 -NCIT:C178554 Recurrent Aggressive T-Cell Non-Hodgkin Lymphoma 7 121396 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 8 121397 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 8 121398 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 121399 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 8 121400 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 8 121401 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 8 121402 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 8 121403 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 8 121404 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 8 121405 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 8 121406 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 8 121407 -NCIT:C183513 Recurrent Indolent T-Cell Non-Hodgkin Lymphoma 7 121408 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 8 121409 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 8 121410 -NCIT:C8686 Recurrent Mycosis Fungoides 8 121411 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 9 121412 -NCIT:C8688 Recurrent Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 7 121413 -NCIT:C115439 Recurrent Mycosis Fungoides and Sezary Syndrome 8 121414 -NCIT:C176999 Recurrent Sezary Syndrome 9 121415 -NCIT:C8686 Recurrent Mycosis Fungoides 9 121416 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 121417 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 8 121418 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 8 121419 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 121420 -NCIT:C157689 Recurrent NK-Cell Lymphoma, Unclassifiable 8 121421 -NCIT:C165789 Recurrent Transformed T-cell Non-Hodgkin Lymphoma 8 121422 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 9 121423 -NCIT:C168778 Recurrent Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 8 121424 -NCIT:C168780 Recurrent Follicular T-Cell Lymphoma 8 121425 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 8 121426 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 121427 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 121428 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 121429 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 121430 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 121431 -NCIT:C8686 Recurrent Mycosis Fungoides 9 121432 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 121433 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 8 121434 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 8 121435 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 8 121436 -NCIT:C9250 Recurrent Anaplastic Large Cell Lymphoma 8 121437 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 9 121438 -NCIT:C162688 Recurrent Systemic Anaplastic Large Cell Lymphoma 9 121439 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 121440 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 121441 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 121442 -NCIT:C8695 Recurrent T Lymphoblastic Leukemia/Lymphoma 6 121443 -NCIT:C150131 Recurrent T Acute Lymphoblastic Leukemia 7 121444 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 121445 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 7 121446 -NCIT:C190401 Refractory T-Cell and NK-Cell Neoplasm 5 121447 -NCIT:C173411 Refractory Mature T-Cell and NK-Cell Neoplasm 6 121448 -NCIT:C157691 Refractory T-Cell Prolymphocytic Leukemia 7 121449 -NCIT:C157693 Refractory Aggressive NK-Cell Leukemia 7 121450 -NCIT:C180986 Refractory T-Cell Large Granular Lymphocyte Leukemia 7 121451 -NCIT:C8689 Refractory Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 7 121452 -NCIT:C148129 Refractory Mycosis Fungoides and Sezary Syndrome 8 121453 -NCIT:C177000 Refractory Sezary Syndrome 9 121454 -NCIT:C8687 Refractory Mycosis Fungoides 9 121455 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 121456 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 8 121457 -NCIT:C157690 Refractory NK-Cell Lymphoma, Unclassifiable 8 121458 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 8 121459 -NCIT:C165791 Refractory Transformed T-cell Non-Hodgkin Lymphoma 8 121460 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 9 121461 -NCIT:C168779 Refractory Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 8 121462 -NCIT:C168781 Refractory Follicular T-Cell Lymphoma 8 121463 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 8 121464 -NCIT:C8658 Refractory Anaplastic Large Cell Lymphoma 8 121465 -NCIT:C162689 Refractory Systemic Anaplastic Large Cell Lymphoma 9 121466 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 121467 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 121468 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 121469 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 8 121470 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 8 121471 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 8 121472 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 121473 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 121474 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 121475 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 121476 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 121477 -NCIT:C8687 Refractory Mycosis Fungoides 9 121478 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 121479 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 121480 -NCIT:C8664 Refractory T-Cell Non-Hodgkin Lymphoma 6 121481 -NCIT:C178556 Refractory Aggressive T-Cell Non-Hodgkin Lymphoma 7 121482 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 8 121483 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 8 121484 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 8 121485 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 8 121486 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 8 121487 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 8 121488 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 8 121489 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 8 121490 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 8 121491 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 8 121492 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 121493 -NCIT:C183515 Refractory Indolent T-Cell Non-Hodgkin Lymphoma 7 121494 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 8 121495 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 8 121496 -NCIT:C8687 Refractory Mycosis Fungoides 8 121497 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 9 121498 -NCIT:C8689 Refractory Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 7 121499 -NCIT:C148129 Refractory Mycosis Fungoides and Sezary Syndrome 8 121500 -NCIT:C177000 Refractory Sezary Syndrome 9 121501 -NCIT:C8687 Refractory Mycosis Fungoides 9 121502 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 121503 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 8 121504 -NCIT:C157690 Refractory NK-Cell Lymphoma, Unclassifiable 8 121505 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 8 121506 -NCIT:C165791 Refractory Transformed T-cell Non-Hodgkin Lymphoma 8 121507 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 9 121508 -NCIT:C168779 Refractory Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 8 121509 -NCIT:C168781 Refractory Follicular T-Cell Lymphoma 8 121510 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 8 121511 -NCIT:C8658 Refractory Anaplastic Large Cell Lymphoma 8 121512 -NCIT:C162689 Refractory Systemic Anaplastic Large Cell Lymphoma 9 121513 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 121514 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 121515 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 121516 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 8 121517 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 8 121518 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 8 121519 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 121520 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 121521 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 121522 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 121523 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 121524 -NCIT:C8687 Refractory Mycosis Fungoides 9 121525 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 121526 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 121527 -NCIT:C8696 Refractory T Lymphoblastic Leukemia/Lymphoma 6 121528 -NCIT:C150510 Refractory T Acute Lymphoblastic Leukemia 7 121529 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 7 121530 -NCIT:C27909 Mature T-Cell and NK-Cell Neoplasm 5 121531 -NCIT:C173409 Recurrent Mature T-Cell and NK-Cell Neoplasm 6 121532 -NCIT:C150133 Recurrent T-Cell Prolymphocytic Leukemia 7 121533 -NCIT:C157692 Recurrent Aggressive NK-Cell Leukemia 7 121534 -NCIT:C180985 Recurrent T-Cell Large Granular Lymphocyte Leukemia 7 121535 -NCIT:C8688 Recurrent Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 7 121536 -NCIT:C115439 Recurrent Mycosis Fungoides and Sezary Syndrome 8 121537 -NCIT:C176999 Recurrent Sezary Syndrome 9 121538 -NCIT:C8686 Recurrent Mycosis Fungoides 9 121539 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 121540 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 8 121541 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 8 121542 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 121543 -NCIT:C157689 Recurrent NK-Cell Lymphoma, Unclassifiable 8 121544 -NCIT:C165789 Recurrent Transformed T-cell Non-Hodgkin Lymphoma 8 121545 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 9 121546 -NCIT:C168778 Recurrent Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 8 121547 -NCIT:C168780 Recurrent Follicular T-Cell Lymphoma 8 121548 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 8 121549 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 121550 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 121551 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 121552 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 121553 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 121554 -NCIT:C8686 Recurrent Mycosis Fungoides 9 121555 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 121556 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 8 121557 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 8 121558 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 8 121559 -NCIT:C9250 Recurrent Anaplastic Large Cell Lymphoma 8 121560 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 9 121561 -NCIT:C162688 Recurrent Systemic Anaplastic Large Cell Lymphoma 9 121562 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 121563 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 121564 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 121565 -NCIT:C173411 Refractory Mature T-Cell and NK-Cell Neoplasm 6 121566 -NCIT:C157691 Refractory T-Cell Prolymphocytic Leukemia 7 121567 -NCIT:C157693 Refractory Aggressive NK-Cell Leukemia 7 121568 -NCIT:C180986 Refractory T-Cell Large Granular Lymphocyte Leukemia 7 121569 -NCIT:C8689 Refractory Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 7 121570 -NCIT:C148129 Refractory Mycosis Fungoides and Sezary Syndrome 8 121571 -NCIT:C177000 Refractory Sezary Syndrome 9 121572 -NCIT:C8687 Refractory Mycosis Fungoides 9 121573 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 121574 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 8 121575 -NCIT:C157690 Refractory NK-Cell Lymphoma, Unclassifiable 8 121576 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 8 121577 -NCIT:C165791 Refractory Transformed T-cell Non-Hodgkin Lymphoma 8 121578 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 9 121579 -NCIT:C168779 Refractory Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 8 121580 -NCIT:C168781 Refractory Follicular T-Cell Lymphoma 8 121581 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 8 121582 -NCIT:C8658 Refractory Anaplastic Large Cell Lymphoma 8 121583 -NCIT:C162689 Refractory Systemic Anaplastic Large Cell Lymphoma 9 121584 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 121585 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 121586 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 121587 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 8 121588 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 8 121589 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 8 121590 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 121591 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 121592 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 121593 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 121594 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 121595 -NCIT:C8687 Refractory Mycosis Fungoides 9 121596 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 121597 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 121598 -NCIT:C27897 T-Cell Proliferation of Uncertain Malignant Potential 6 121599 -NCIT:C139021 Indolent T-Cell Lymphoproliferative Disorder of the Gastrointestinal Tract 7 121600 -NCIT:C3721 Lymphomatoid Papulosis 7 121601 -NCIT:C139014 Type D Lymphomatoid Papulosis 8 121602 -NCIT:C139015 Type E Lymphomatoid Papulosis 8 121603 -NCIT:C139017 Lymphomatoid Papulosis with DUSP22-IRF4 Gene Rearrangement 8 121604 -NCIT:C7197 Type A Lymphomatoid Papulosis 8 121605 -NCIT:C7198 Type B Lymphomatoid Papulosis 8 121606 -NCIT:C7199 Type C Lymphomatoid Papulosis 8 121607 -NCIT:C7196 Borderline Primary Cutaneous CD30-Positive T-Cell Lymphoproliferative Disorder 7 121608 -NCIT:C7199 Type C Lymphomatoid Papulosis 8 121609 -NCIT:C7200 Anaplastic Large Cell Lymphoma, Lymphomatoid Papulosis-Like Histology 8 121610 -NCIT:C3468 Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 6 121611 -NCIT:C128696 Peripheral T-Cell Lymphoma, Unclassifiable 7 121612 -NCIT:C128697 NK-Cell Lymphoma, Unclassifiable 7 121613 -NCIT:C157689 Recurrent NK-Cell Lymphoma, Unclassifiable 8 121614 -NCIT:C157690 Refractory NK-Cell Lymphoma, Unclassifiable 8 121615 -NCIT:C129600 Central Nervous System Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 7 121616 -NCIT:C5322 Central Nervous System Anaplastic Large Cell Lymphoma 8 121617 -NCIT:C129598 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Positive 9 121618 -NCIT:C129599 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Negative 9 121619 -NCIT:C139005 Nodal Peripheral T-Cell Lymphoma of T Follicular Helper Cell Origin 7 121620 -NCIT:C139011 Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 8 121621 -NCIT:C168778 Recurrent Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 9 121622 -NCIT:C168779 Refractory Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 9 121623 -NCIT:C7528 Angioimmunoblastic T-Cell Lymphoma 8 121624 -NCIT:C141294 Angioimmunoblastic T-Cell Lymphoma by Ann Arbor Stage 9 121625 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 10 121626 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 10 121627 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 10 121628 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 10 121629 -NCIT:C45271 Cutaneous Angioimmunoblastic T-Cell Lymphoma 9 121630 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 9 121631 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 9 121632 -NCIT:C80375 Follicular T-Cell Lymphoma 8 121633 -NCIT:C168780 Recurrent Follicular T-Cell Lymphoma 9 121634 -NCIT:C168781 Refractory Follicular T-Cell Lymphoma 9 121635 -NCIT:C141272 Mature T- and NK-Cell Lymphoma by Ann Arbor Stage 7 121636 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 8 121637 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 9 121638 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 9 121639 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 9 121640 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 9 121641 -NCIT:C141284 Noncutaneous Anaplastic Large Cell Lymphoma by Ann Arbor Stage 8 121642 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 9 121643 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 121644 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 121645 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 121646 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 121647 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 9 121648 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 121649 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 9 121650 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 121651 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 9 121652 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 121653 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 9 121654 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 121655 -NCIT:C141294 Angioimmunoblastic T-Cell Lymphoma by Ann Arbor Stage 8 121656 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 9 121657 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 9 121658 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 9 121659 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 9 121660 -NCIT:C141295 Enteropathy-Associated T-Cell Lymphoma by Ann Arbor Stage 8 121661 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 9 121662 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 9 121663 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 9 121664 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 9 121665 -NCIT:C141296 Nasal Type NK/T-Cell Lymphoma by Ann Arbor Stage 8 121666 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 9 121667 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 9 121668 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 9 121669 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 9 121670 -NCIT:C8690 Ann Arbor Stage I Mature T- and NK-Cell Lymphoma 8 121671 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 9 121672 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 9 121673 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 121674 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 9 121675 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 9 121676 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 9 121677 -NCIT:C8691 Ann Arbor Stage II Mature T- and NK-Cell Lymphoma 8 121678 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 9 121679 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 9 121680 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 121681 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 9 121682 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 9 121683 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 9 121684 -NCIT:C8692 Ann Arbor Stage III Mature T- and NK-Cell Lymphoma 8 121685 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 9 121686 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 9 121687 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 121688 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 9 121689 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 9 121690 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 9 121691 -NCIT:C8693 Ann Arbor Stage IV Mature T- and NK-Cell Lymphoma 8 121692 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 9 121693 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 9 121694 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 121695 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 9 121696 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 9 121697 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 9 121698 -NCIT:C150495 Intestinal T-Cell Lymphoma 7 121699 -NCIT:C150505 Intestinal T-Cell Lymphoma, Not Otherwise Specified 8 121700 -NCIT:C4737 Enteropathy-Associated T-Cell Lymphoma 8 121701 -NCIT:C141295 Enteropathy-Associated T-Cell Lymphoma by Ann Arbor Stage 9 121702 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 10 121703 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 10 121704 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 10 121705 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 10 121706 -NCIT:C39610 Small Intestinal Enteropathy-Associated T-Cell Lymphoma 9 121707 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 9 121708 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 9 121709 -NCIT:C96058 Monomorphic Epitheliotropic Intestinal T-Cell Lymphoma 8 121710 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 121711 -NCIT:C150504 Small Intestinal Monomorphic Epitheliotropic T-Cell Lymphoma 9 121712 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 121713 -NCIT:C171300 Indolent T-Cell Non-Hodgkin Lymphoma 7 121714 -NCIT:C3246 Mycosis Fungoides 8 121715 -NCIT:C141143 Mycosis Fungoides by AJCC v7 Stage 9 121716 -NCIT:C7796 Stage I Mycosis Fungoides AJCC v7 10 121717 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 11 121718 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 11 121719 -NCIT:C7798 Stage II Mycosis Fungoides AJCC v7 10 121720 -NCIT:C7800 Stage III Mycosis Fungoides AJCC v7 10 121721 -NCIT:C7802 Stage IV Mycosis Fungoides AJCC v7 10 121722 -NCIT:C165783 Transformed Mycosis Fungoides 9 121723 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 121724 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 121725 -NCIT:C8686 Recurrent Mycosis Fungoides 9 121726 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 121727 -NCIT:C8687 Refractory Mycosis Fungoides 9 121728 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 121729 -NCIT:C39644 Mycosis Fungoides Variant 8 121730 -NCIT:C35464 Granulomatous Slack Skin Disease 9 121731 -NCIT:C35685 Folliculotropic Mycosis Fungoides 9 121732 -NCIT:C35794 Pagetoid Reticulosis 9 121733 -NCIT:C6860 Primary Cutaneous Anaplastic Large Cell Lymphoma 8 121734 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 121735 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 121736 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 9 121737 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 9 121738 -NCIT:C6918 Subcutaneous Panniculitis-Like T-Cell Lymphoma 8 121739 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 121740 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 121741 -NCIT:C3184 Adult T-Cell Leukemia/Lymphoma 7 121742 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 8 121743 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 9 121744 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 9 121745 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 9 121746 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 9 121747 -NCIT:C36265 Acute Adult T-Cell Leukemia/Lymphoma 8 121748 -NCIT:C36266 Lymphomatous Adult T-Cell Leukemia/Lymphoma 8 121749 -NCIT:C36268 Hodgkin-Like Adult T-Cell Leukemia/Lymphoma 8 121750 -NCIT:C45272 Cutaneous Adult T-Cell Leukemia/Lymphoma 8 121751 -NCIT:C7178 Smoldering Adult T-Cell Leukemia/Lymphoma 8 121752 -NCIT:C7179 Chronic Adult T-Cell Leukemia/Lymphoma 8 121753 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 8 121754 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 8 121755 -NCIT:C3467 Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 7 121756 -NCIT:C172442 Advanced Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 121757 -NCIT:C180374 Early Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 121758 -NCIT:C3246 Mycosis Fungoides 8 121759 -NCIT:C141143 Mycosis Fungoides by AJCC v7 Stage 9 121760 -NCIT:C7796 Stage I Mycosis Fungoides AJCC v7 10 121761 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 11 121762 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 11 121763 -NCIT:C7798 Stage II Mycosis Fungoides AJCC v7 10 121764 -NCIT:C7800 Stage III Mycosis Fungoides AJCC v7 10 121765 -NCIT:C7802 Stage IV Mycosis Fungoides AJCC v7 10 121766 -NCIT:C165783 Transformed Mycosis Fungoides 9 121767 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 121768 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 121769 -NCIT:C8686 Recurrent Mycosis Fungoides 9 121770 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 121771 -NCIT:C8687 Refractory Mycosis Fungoides 9 121772 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 121773 -NCIT:C39644 Mycosis Fungoides Variant 8 121774 -NCIT:C35464 Granulomatous Slack Skin Disease 9 121775 -NCIT:C35685 Folliculotropic Mycosis Fungoides 9 121776 -NCIT:C35794 Pagetoid Reticulosis 9 121777 -NCIT:C45332 Primary Cutaneous Peripheral T-Cell Lymphoma, Rare Subtype 8 121778 -NCIT:C139023 Primary Cutaneous Acral CD8-Positive T-Cell Lymphoma 9 121779 -NCIT:C45339 Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 121780 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 121781 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 121782 -NCIT:C45340 Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 121783 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 121784 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 121785 -NCIT:C6860 Primary Cutaneous Anaplastic Large Cell Lymphoma 8 121786 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 121787 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 121788 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 9 121789 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 9 121790 -NCIT:C6918 Subcutaneous Panniculitis-Like T-Cell Lymphoma 8 121791 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 121792 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 121793 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 121794 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 121795 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 121796 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 121797 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 121798 -NCIT:C8686 Recurrent Mycosis Fungoides 9 121799 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 121800 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 121801 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 121802 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 121803 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 121804 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 121805 -NCIT:C8687 Refractory Mycosis Fungoides 9 121806 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 121807 -NCIT:C3720 Anaplastic Large Cell Lymphoma 7 121808 -NCIT:C141284 Noncutaneous Anaplastic Large Cell Lymphoma by Ann Arbor Stage 8 121809 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 9 121810 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 121811 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 121812 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 121813 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 121814 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 9 121815 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 121816 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 9 121817 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 121818 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 9 121819 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 121820 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 9 121821 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 121822 -NCIT:C166179 Localized Anaplastic Large Cell Lymphoma 8 121823 -NCIT:C166180 Advanced Anaplastic Large Cell Lymphoma 8 121824 -NCIT:C188082 Lung Anaplastic Large Cell Lymphoma 8 121825 -NCIT:C27367 Adult Anaplastic Large Cell Lymphoma 8 121826 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 9 121827 -NCIT:C27366 Adult Systemic Anaplastic Large Cell Lymphoma 9 121828 -NCIT:C37193 Anaplastic Large Cell Lymphoma, ALK-Positive 8 121829 -NCIT:C129598 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Positive 9 121830 -NCIT:C188460 Childhood Anaplastic Large Cell Lymphoma, ALK-Positive 9 121831 -NCIT:C37195 Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 9 121832 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 121833 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 121834 -NCIT:C37194 Anaplastic Large Cell Lymphoma, ALK-Negative 8 121835 -NCIT:C129599 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Negative 9 121836 -NCIT:C139012 Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 121837 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 121838 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 121839 -NCIT:C37196 Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Negative 9 121840 -NCIT:C39674 Anaplastic Large Cell Lymphoma, Giant Cell Rich Subtype 8 121841 -NCIT:C39675 Anaplastic Large Cell Lymphoma, Sarcomatoid Subtype 8 121842 -NCIT:C39676 Anaplastic Large Cell Lymphoma, Signet Ring-Like Subtype 8 121843 -NCIT:C5322 Central Nervous System Anaplastic Large Cell Lymphoma 8 121844 -NCIT:C129598 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Positive 9 121845 -NCIT:C129599 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Negative 9 121846 -NCIT:C5636 Childhood Anaplastic Large Cell Lymphoma 8 121847 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 9 121848 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 9 121849 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 121850 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 121851 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 121852 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 121853 -NCIT:C188460 Childhood Anaplastic Large Cell Lymphoma, ALK-Positive 9 121854 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 9 121855 -NCIT:C9471 Childhood Systemic Anaplastic Large Cell Lymphoma 9 121856 -NCIT:C6860 Primary Cutaneous Anaplastic Large Cell Lymphoma 8 121857 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 121858 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 121859 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 9 121860 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 9 121861 -NCIT:C7206 Common Variant Anaplastic Large Cell Lymphoma 8 121862 -NCIT:C7207 Lymphohistiocytic Variant Anaplastic Large Cell Lymphoma 8 121863 -NCIT:C7208 Small Cell Variant Anaplastic Large Cell Lymphoma 8 121864 -NCIT:C8658 Refractory Anaplastic Large Cell Lymphoma 8 121865 -NCIT:C162689 Refractory Systemic Anaplastic Large Cell Lymphoma 9 121866 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 121867 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 121868 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 121869 -NCIT:C9250 Recurrent Anaplastic Large Cell Lymphoma 8 121870 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 9 121871 -NCIT:C162688 Recurrent Systemic Anaplastic Large Cell Lymphoma 9 121872 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 121873 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 121874 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 121875 -NCIT:C9470 Systemic Anaplastic Large Cell Lymphoma 8 121876 -NCIT:C162688 Recurrent Systemic Anaplastic Large Cell Lymphoma 9 121877 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 121878 -NCIT:C162689 Refractory Systemic Anaplastic Large Cell Lymphoma 9 121879 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 121880 -NCIT:C27366 Adult Systemic Anaplastic Large Cell Lymphoma 9 121881 -NCIT:C37195 Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 9 121882 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 121883 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 121884 -NCIT:C37196 Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Negative 9 121885 -NCIT:C9471 Childhood Systemic Anaplastic Large Cell Lymphoma 9 121886 -NCIT:C4340 Peripheral T-Cell Lymphoma, Not Otherwise Specified 7 121887 -NCIT:C139288 Primary EBV-Positive Nodal T-Cell or NK-Cell Lymphoma 8 121888 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 121889 -NCIT:C188459 Childhood Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 121890 -NCIT:C7205 Lymphoepithelioid Variant Peripheral T-Cell Lymphoma 8 121891 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 121892 -NCIT:C4684 Nasal Type Extranodal NK/T-Cell Lymphoma 7 121893 -NCIT:C115154 Adult Nasal Type Extranodal NK/T-Cell Lymphoma 8 121894 -NCIT:C141296 Nasal Type NK/T-Cell Lymphoma by Ann Arbor Stage 8 121895 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 9 121896 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 9 121897 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 9 121898 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 9 121899 -NCIT:C162468 Testicular Nasal Type Extranodal NK/T-Cell Lymphoma 8 121900 -NCIT:C173172 Sinonasal Extranodal NK/T-Cell Lymphoma 8 121901 -NCIT:C173173 Nasal Cavity Extranodal NK/T-Cell Lymphoma 9 121902 -NCIT:C45268 Cutaneous Nasal Type Extranodal NK/T-Cell Lymphoma 8 121903 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 8 121904 -NCIT:C68692 Childhood Nasal Type Extranodal NK/T-Cell Lymphoma 8 121905 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 8 121906 -NCIT:C5637 Childhood Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 7 121907 -NCIT:C188459 Childhood Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 121908 -NCIT:C5636 Childhood Anaplastic Large Cell Lymphoma 8 121909 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 9 121910 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 9 121911 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 121912 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 121913 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 121914 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 121915 -NCIT:C188460 Childhood Anaplastic Large Cell Lymphoma, ALK-Positive 9 121916 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 9 121917 -NCIT:C9471 Childhood Systemic Anaplastic Large Cell Lymphoma 9 121918 -NCIT:C68692 Childhood Nasal Type Extranodal NK/T-Cell Lymphoma 8 121919 -NCIT:C80374 Systemic EBV-Positive T-Cell Lymphoma of Childhood 8 121920 -NCIT:C7252 Methotrexate-Associated Peripheral T-Cell Lymphoma 7 121921 -NCIT:C8459 Hepatosplenic T-Cell Lymphoma 7 121922 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 8 121923 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 8 121924 -NCIT:C8688 Recurrent Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 7 121925 -NCIT:C115439 Recurrent Mycosis Fungoides and Sezary Syndrome 8 121926 -NCIT:C176999 Recurrent Sezary Syndrome 9 121927 -NCIT:C8686 Recurrent Mycosis Fungoides 9 121928 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 121929 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 8 121930 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 8 121931 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 121932 -NCIT:C157689 Recurrent NK-Cell Lymphoma, Unclassifiable 8 121933 -NCIT:C165789 Recurrent Transformed T-cell Non-Hodgkin Lymphoma 8 121934 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 9 121935 -NCIT:C168778 Recurrent Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 8 121936 -NCIT:C168780 Recurrent Follicular T-Cell Lymphoma 8 121937 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 8 121938 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 121939 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 121940 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 121941 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 121942 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 121943 -NCIT:C8686 Recurrent Mycosis Fungoides 9 121944 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 121945 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 8 121946 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 8 121947 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 8 121948 -NCIT:C9250 Recurrent Anaplastic Large Cell Lymphoma 8 121949 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 9 121950 -NCIT:C162688 Recurrent Systemic Anaplastic Large Cell Lymphoma 9 121951 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 121952 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 121953 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 121954 -NCIT:C8689 Refractory Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 7 121955 -NCIT:C148129 Refractory Mycosis Fungoides and Sezary Syndrome 8 121956 -NCIT:C177000 Refractory Sezary Syndrome 9 121957 -NCIT:C8687 Refractory Mycosis Fungoides 9 121958 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 121959 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 8 121960 -NCIT:C157690 Refractory NK-Cell Lymphoma, Unclassifiable 8 121961 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 8 121962 -NCIT:C165791 Refractory Transformed T-cell Non-Hodgkin Lymphoma 8 121963 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 9 121964 -NCIT:C168779 Refractory Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 8 121965 -NCIT:C168781 Refractory Follicular T-Cell Lymphoma 8 121966 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 8 121967 -NCIT:C8658 Refractory Anaplastic Large Cell Lymphoma 8 121968 -NCIT:C162689 Refractory Systemic Anaplastic Large Cell Lymphoma 9 121969 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 121970 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 121971 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 121972 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 8 121973 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 8 121974 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 8 121975 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 121976 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 121977 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 121978 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 121979 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 121980 -NCIT:C8687 Refractory Mycosis Fungoides 9 121981 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 121982 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 121983 -NCIT:C9265 Mycosis Fungoides and Sezary Syndrome 7 121984 -NCIT:C115439 Recurrent Mycosis Fungoides and Sezary Syndrome 8 121985 -NCIT:C176999 Recurrent Sezary Syndrome 9 121986 -NCIT:C8686 Recurrent Mycosis Fungoides 9 121987 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 121988 -NCIT:C141142 Mycosis Fungoides and Sezary Syndrome by AJCC v7 Stage 8 121989 -NCIT:C141143 Mycosis Fungoides by AJCC v7 Stage 9 121990 -NCIT:C7796 Stage I Mycosis Fungoides AJCC v7 10 121991 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 11 121992 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 11 121993 -NCIT:C7798 Stage II Mycosis Fungoides AJCC v7 10 121994 -NCIT:C7800 Stage III Mycosis Fungoides AJCC v7 10 121995 -NCIT:C7802 Stage IV Mycosis Fungoides AJCC v7 10 121996 -NCIT:C88150 Stage I Mycosis Fungoides and Sezary Syndrome AJCC v7 9 121997 -NCIT:C7796 Stage I Mycosis Fungoides AJCC v7 10 121998 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 11 121999 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 11 122000 -NCIT:C88151 Stage IA Mycosis Fungoides and Sezary Syndrome AJCC v7 10 122001 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 11 122002 -NCIT:C88152 Stage IB Mycosis Fungoides and Sezary Syndrome AJCC v7 10 122003 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 11 122004 -NCIT:C88153 Stage II Mycosis Fungoides and Sezary Syndrome AJCC v7 9 122005 -NCIT:C7798 Stage II Mycosis Fungoides AJCC v7 10 122006 -NCIT:C88154 Stage IIA Mycosis Fungoides and Sezary Syndrome AJCC v7 10 122007 -NCIT:C88155 Stage IIB Mycosis Fungoides and Sezary Syndrome AJCC v7 10 122008 -NCIT:C88157 Stage III Mycosis Fungoides and Sezary Syndrome AJCC v7 9 122009 -NCIT:C7800 Stage III Mycosis Fungoides AJCC v7 10 122010 -NCIT:C88158 Stage IIIA Mycosis Fungoides and Sezary Syndrome AJCC v7 10 122011 -NCIT:C88159 Stage IIIB Mycosis Fungoides and Sezary Syndrome AJCC v7 10 122012 -NCIT:C88160 Stage IV Mycosis Fungoides and Sezary Syndrome AJCC v7 9 122013 -NCIT:C7802 Stage IV Mycosis Fungoides AJCC v7 10 122014 -NCIT:C88161 Stage IVA Mycosis Fungoides and Sezary Syndrome AJCC v7 10 122015 -NCIT:C88162 Stage IVB Mycosis Fungoides and Sezary Syndrome AJCC v7 10 122016 -NCIT:C141346 Mycosis Fungoides and Sezary Syndrome by AJCC v8 Stage 8 122017 -NCIT:C141347 Stage I Mycosis Fungoides and Sezary Syndrome AJCC v8 9 122018 -NCIT:C141348 Stage IA Mycosis Fungoides and Sezary Syndrome AJCC v8 10 122019 -NCIT:C141349 Stage IB Mycosis Fungoides and Sezary Syndrome AJCC v8 10 122020 -NCIT:C141350 Stage II Mycosis Fungoides and Sezary Syndrome AJCC v8 9 122021 -NCIT:C141351 Stage IIA Mycosis Fungoides and Sezary Syndrome AJCC v8 10 122022 -NCIT:C141352 Stage IIB Mycosis Fungoides and Sezary Syndrome AJCC v8 10 122023 -NCIT:C141353 Stage III Mycosis Fungoides and Sezary Syndrome AJCC v8 9 122024 -NCIT:C141354 Stage IIIA Mycosis Fungoides and Sezary Syndrome AJCC v8 10 122025 -NCIT:C141355 Stage IIIB Mycosis Fungoides and Sezary Syndrome AJCC v8 10 122026 -NCIT:C141356 Stage IV Mycosis Fungoides and Sezary Syndrome AJCC v8 9 122027 -NCIT:C141357 Stage IVA1 Mycosis Fungoides and Sezary Syndrome AJCC v8 10 122028 -NCIT:C141358 Stage IVA2 Mycosis Fungoides and Sezary Syndrome AJCC v8 10 122029 -NCIT:C141359 Stage IVB Mycosis Fungoides and Sezary Syndrome AJCC v8 10 122030 -NCIT:C148129 Refractory Mycosis Fungoides and Sezary Syndrome 8 122031 -NCIT:C177000 Refractory Sezary Syndrome 9 122032 -NCIT:C8687 Refractory Mycosis Fungoides 9 122033 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 122034 -NCIT:C3246 Mycosis Fungoides 8 122035 -NCIT:C141143 Mycosis Fungoides by AJCC v7 Stage 9 122036 -NCIT:C7796 Stage I Mycosis Fungoides AJCC v7 10 122037 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 11 122038 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 11 122039 -NCIT:C7798 Stage II Mycosis Fungoides AJCC v7 10 122040 -NCIT:C7800 Stage III Mycosis Fungoides AJCC v7 10 122041 -NCIT:C7802 Stage IV Mycosis Fungoides AJCC v7 10 122042 -NCIT:C165783 Transformed Mycosis Fungoides 9 122043 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 122044 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 122045 -NCIT:C8686 Recurrent Mycosis Fungoides 9 122046 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 122047 -NCIT:C8687 Refractory Mycosis Fungoides 9 122048 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 122049 -NCIT:C3366 Sezary Syndrome 8 122050 -NCIT:C176999 Recurrent Sezary Syndrome 9 122051 -NCIT:C177000 Refractory Sezary Syndrome 9 122052 -NCIT:C39644 Mycosis Fungoides Variant 8 122053 -NCIT:C35464 Granulomatous Slack Skin Disease 9 122054 -NCIT:C35685 Folliculotropic Mycosis Fungoides 9 122055 -NCIT:C35794 Pagetoid Reticulosis 9 122056 -NCIT:C39591 Chronic Lymphoproliferative Disorder of NK-Cells 6 122057 -NCIT:C45250 Cutaneous Mature T-Cell and NK-Cell Neoplasm 6 122058 -NCIT:C3467 Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 7 122059 -NCIT:C172442 Advanced Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 122060 -NCIT:C180374 Early Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 122061 -NCIT:C3246 Mycosis Fungoides 8 122062 -NCIT:C141143 Mycosis Fungoides by AJCC v7 Stage 9 122063 -NCIT:C7796 Stage I Mycosis Fungoides AJCC v7 10 122064 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 11 122065 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 11 122066 -NCIT:C7798 Stage II Mycosis Fungoides AJCC v7 10 122067 -NCIT:C7800 Stage III Mycosis Fungoides AJCC v7 10 122068 -NCIT:C7802 Stage IV Mycosis Fungoides AJCC v7 10 122069 -NCIT:C165783 Transformed Mycosis Fungoides 9 122070 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 122071 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 122072 -NCIT:C8686 Recurrent Mycosis Fungoides 9 122073 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 122074 -NCIT:C8687 Refractory Mycosis Fungoides 9 122075 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 122076 -NCIT:C39644 Mycosis Fungoides Variant 8 122077 -NCIT:C35464 Granulomatous Slack Skin Disease 9 122078 -NCIT:C35685 Folliculotropic Mycosis Fungoides 9 122079 -NCIT:C35794 Pagetoid Reticulosis 9 122080 -NCIT:C45332 Primary Cutaneous Peripheral T-Cell Lymphoma, Rare Subtype 8 122081 -NCIT:C139023 Primary Cutaneous Acral CD8-Positive T-Cell Lymphoma 9 122082 -NCIT:C45339 Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 122083 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 122084 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 122085 -NCIT:C45340 Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 122086 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 122087 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 122088 -NCIT:C6860 Primary Cutaneous Anaplastic Large Cell Lymphoma 8 122089 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 122090 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 122091 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 9 122092 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 9 122093 -NCIT:C6918 Subcutaneous Panniculitis-Like T-Cell Lymphoma 8 122094 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 122095 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 122096 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 122097 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 122098 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 122099 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 122100 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 122101 -NCIT:C8686 Recurrent Mycosis Fungoides 9 122102 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 122103 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 122104 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 122105 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 122106 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 122107 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 122108 -NCIT:C8687 Refractory Mycosis Fungoides 9 122109 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 122110 -NCIT:C3721 Lymphomatoid Papulosis 7 122111 -NCIT:C139014 Type D Lymphomatoid Papulosis 8 122112 -NCIT:C139015 Type E Lymphomatoid Papulosis 8 122113 -NCIT:C139017 Lymphomatoid Papulosis with DUSP22-IRF4 Gene Rearrangement 8 122114 -NCIT:C7197 Type A Lymphomatoid Papulosis 8 122115 -NCIT:C7198 Type B Lymphomatoid Papulosis 8 122116 -NCIT:C7199 Type C Lymphomatoid Papulosis 8 122117 -NCIT:C45268 Cutaneous Nasal Type Extranodal NK/T-Cell Lymphoma 7 122118 -NCIT:C45271 Cutaneous Angioimmunoblastic T-Cell Lymphoma 7 122119 -NCIT:C45272 Cutaneous Adult T-Cell Leukemia/Lymphoma 7 122120 -NCIT:C45366 Primary Cutaneous CD4-Positive Small/Medium T-Cell Lymphoproliferative Disorder 7 122121 -NCIT:C7195 Primary Cutaneous CD30-Positive T-Cell Lymphoproliferative Disorder 7 122122 -NCIT:C6860 Primary Cutaneous Anaplastic Large Cell Lymphoma 8 122123 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 122124 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 122125 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 9 122126 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 9 122127 -NCIT:C7196 Borderline Primary Cutaneous CD30-Positive T-Cell Lymphoproliferative Disorder 8 122128 -NCIT:C7199 Type C Lymphomatoid Papulosis 9 122129 -NCIT:C7200 Anaplastic Large Cell Lymphoma, Lymphomatoid Papulosis-Like Histology 9 122130 -NCIT:C7197 Type A Lymphomatoid Papulosis 8 122131 -NCIT:C4664 T-Cell Large Granular Lymphocyte Leukemia 6 122132 -NCIT:C180985 Recurrent T-Cell Large Granular Lymphocyte Leukemia 7 122133 -NCIT:C180986 Refractory T-Cell Large Granular Lymphocyte Leukemia 7 122134 -NCIT:C39584 T-Cell Large Granular Lymphocyte Leukemia, Common Variant 7 122135 -NCIT:C39586 T-Cell Large Granular Lymphocyte Leukemia Expressing the T-Cell Receptor Gamma-Delta 7 122136 -NCIT:C7302 Splenic Manifestation of T-Cell Large Granular Lymphocyte Leukemia 7 122137 -NCIT:C4752 T-Cell Prolymphocytic Leukemia 6 122138 -NCIT:C150133 Recurrent T-Cell Prolymphocytic Leukemia 7 122139 -NCIT:C157691 Refractory T-Cell Prolymphocytic Leukemia 7 122140 -NCIT:C36270 T-Cell Prolymphocytic Leukemia, Small Cell Variant 7 122141 -NCIT:C36271 T-Cell Prolymphocytic Leukemia, Cerebriform Cell Variant 7 122142 -NCIT:C7298 Splenic Manifestation of T-Cell Prolymphocytic Leukemia 7 122143 -NCIT:C80373 EBV-Positive T-Cell Lymphoproliferative Disorder of Childhood 6 122144 -NCIT:C45327 Hydroa Vacciniforme-Like Lymphoproliferative Disorder 7 122145 -NCIT:C80374 Systemic EBV-Positive T-Cell Lymphoma of Childhood 7 122146 -NCIT:C8647 Aggressive NK-Cell Leukemia 6 122147 -NCIT:C157692 Recurrent Aggressive NK-Cell Leukemia 7 122148 -NCIT:C157693 Refractory Aggressive NK-Cell Leukemia 7 122149 -NCIT:C3466 T-Cell Non-Hodgkin Lymphoma 5 122150 -NCIT:C141247 T-Cell Non-Hodgkin Lymphoma by Ann Arbor Stage 6 122151 -NCIT:C141272 Mature T- and NK-Cell Lymphoma by Ann Arbor Stage 7 122152 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 8 122153 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 9 122154 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 9 122155 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 9 122156 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 9 122157 -NCIT:C141284 Noncutaneous Anaplastic Large Cell Lymphoma by Ann Arbor Stage 8 122158 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 9 122159 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 122160 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 122161 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 122162 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 122163 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 9 122164 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 122165 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 9 122166 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 122167 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 9 122168 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 122169 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 9 122170 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 122171 -NCIT:C141294 Angioimmunoblastic T-Cell Lymphoma by Ann Arbor Stage 8 122172 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 9 122173 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 9 122174 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 9 122175 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 9 122176 -NCIT:C141295 Enteropathy-Associated T-Cell Lymphoma by Ann Arbor Stage 8 122177 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 9 122178 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 9 122179 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 9 122180 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 9 122181 -NCIT:C141296 Nasal Type NK/T-Cell Lymphoma by Ann Arbor Stage 8 122182 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 9 122183 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 9 122184 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 9 122185 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 9 122186 -NCIT:C8690 Ann Arbor Stage I Mature T- and NK-Cell Lymphoma 8 122187 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 9 122188 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 9 122189 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 122190 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 9 122191 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 9 122192 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 9 122193 -NCIT:C8691 Ann Arbor Stage II Mature T- and NK-Cell Lymphoma 8 122194 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 9 122195 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 9 122196 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 122197 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 9 122198 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 9 122199 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 9 122200 -NCIT:C8692 Ann Arbor Stage III Mature T- and NK-Cell Lymphoma 8 122201 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 9 122202 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 9 122203 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 122204 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 9 122205 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 9 122206 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 9 122207 -NCIT:C8693 Ann Arbor Stage IV Mature T- and NK-Cell Lymphoma 8 122208 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 9 122209 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 9 122210 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 122211 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 9 122212 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 9 122213 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 9 122214 -NCIT:C8665 Ann Arbor Stage I T-Cell Non-Hodgkin Lymphoma 7 122215 -NCIT:C8690 Ann Arbor Stage I Mature T- and NK-Cell Lymphoma 8 122216 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 9 122217 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 9 122218 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 122219 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 9 122220 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 9 122221 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 9 122222 -NCIT:C8666 Ann Arbor Stage II T-Cell Non-Hodgkin Lymphoma 7 122223 -NCIT:C8691 Ann Arbor Stage II Mature T- and NK-Cell Lymphoma 8 122224 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 9 122225 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 9 122226 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 122227 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 9 122228 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 9 122229 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 9 122230 -NCIT:C8667 Ann Arbor Stage III T-Cell Non-Hodgkin Lymphoma 7 122231 -NCIT:C8692 Ann Arbor Stage III Mature T- and NK-Cell Lymphoma 8 122232 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 9 122233 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 9 122234 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 122235 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 9 122236 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 9 122237 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 9 122238 -NCIT:C8668 Ann Arbor Stage IV T-Cell Non-Hodgkin Lymphoma 7 122239 -NCIT:C8693 Ann Arbor Stage IV Mature T- and NK-Cell Lymphoma 8 122240 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 9 122241 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 9 122242 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 122243 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 9 122244 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 9 122245 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 9 122246 -NCIT:C178547 Aggressive T-Cell Non-Hodgkin Lymphoma 6 122247 -NCIT:C150495 Intestinal T-Cell Lymphoma 7 122248 -NCIT:C150505 Intestinal T-Cell Lymphoma, Not Otherwise Specified 8 122249 -NCIT:C4737 Enteropathy-Associated T-Cell Lymphoma 8 122250 -NCIT:C141295 Enteropathy-Associated T-Cell Lymphoma by Ann Arbor Stage 9 122251 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 10 122252 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 10 122253 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 10 122254 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 10 122255 -NCIT:C39610 Small Intestinal Enteropathy-Associated T-Cell Lymphoma 9 122256 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 9 122257 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 9 122258 -NCIT:C96058 Monomorphic Epitheliotropic Intestinal T-Cell Lymphoma 8 122259 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 122260 -NCIT:C150504 Small Intestinal Monomorphic Epitheliotropic T-Cell Lymphoma 9 122261 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 122262 -NCIT:C178554 Recurrent Aggressive T-Cell Non-Hodgkin Lymphoma 7 122263 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 8 122264 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 8 122265 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 122266 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 8 122267 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 8 122268 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 8 122269 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 8 122270 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 8 122271 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 8 122272 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 8 122273 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 8 122274 -NCIT:C178556 Refractory Aggressive T-Cell Non-Hodgkin Lymphoma 7 122275 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 8 122276 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 8 122277 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 8 122278 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 8 122279 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 8 122280 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 8 122281 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 8 122282 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 8 122283 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 8 122284 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 8 122285 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 122286 -NCIT:C3184 Adult T-Cell Leukemia/Lymphoma 7 122287 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 8 122288 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 9 122289 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 9 122290 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 9 122291 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 9 122292 -NCIT:C36265 Acute Adult T-Cell Leukemia/Lymphoma 8 122293 -NCIT:C36266 Lymphomatous Adult T-Cell Leukemia/Lymphoma 8 122294 -NCIT:C36268 Hodgkin-Like Adult T-Cell Leukemia/Lymphoma 8 122295 -NCIT:C45272 Cutaneous Adult T-Cell Leukemia/Lymphoma 8 122296 -NCIT:C7178 Smoldering Adult T-Cell Leukemia/Lymphoma 8 122297 -NCIT:C7179 Chronic Adult T-Cell Leukemia/Lymphoma 8 122298 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 8 122299 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 8 122300 -NCIT:C37194 Anaplastic Large Cell Lymphoma, ALK-Negative 7 122301 -NCIT:C129599 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Negative 8 122302 -NCIT:C139012 Breast Implant-Associated Anaplastic Large Cell Lymphoma 8 122303 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 122304 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 122305 -NCIT:C37196 Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Negative 8 122306 -NCIT:C4340 Peripheral T-Cell Lymphoma, Not Otherwise Specified 7 122307 -NCIT:C139288 Primary EBV-Positive Nodal T-Cell or NK-Cell Lymphoma 8 122308 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 122309 -NCIT:C188459 Childhood Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 122310 -NCIT:C7205 Lymphoepithelioid Variant Peripheral T-Cell Lymphoma 8 122311 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 122312 -NCIT:C45339 Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 7 122313 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 8 122314 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 8 122315 -NCIT:C45340 Primary Cutaneous Gamma-Delta T-Cell Lymphoma 7 122316 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 8 122317 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 8 122318 -NCIT:C4684 Nasal Type Extranodal NK/T-Cell Lymphoma 7 122319 -NCIT:C115154 Adult Nasal Type Extranodal NK/T-Cell Lymphoma 8 122320 -NCIT:C141296 Nasal Type NK/T-Cell Lymphoma by Ann Arbor Stage 8 122321 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 9 122322 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 9 122323 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 9 122324 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 9 122325 -NCIT:C162468 Testicular Nasal Type Extranodal NK/T-Cell Lymphoma 8 122326 -NCIT:C173172 Sinonasal Extranodal NK/T-Cell Lymphoma 8 122327 -NCIT:C173173 Nasal Cavity Extranodal NK/T-Cell Lymphoma 9 122328 -NCIT:C45268 Cutaneous Nasal Type Extranodal NK/T-Cell Lymphoma 8 122329 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 8 122330 -NCIT:C68692 Childhood Nasal Type Extranodal NK/T-Cell Lymphoma 8 122331 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 8 122332 -NCIT:C6919 T Lymphoblastic Lymphoma 7 122333 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 8 122334 -NCIT:C45740 Mediastinal T Lymphoblastic Lymphoma 8 122335 -NCIT:C7210 Childhood T Lymphoblastic Lymphoma 8 122336 -NCIT:C7226 Adult T Lymphoblastic Lymphoma 8 122337 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 8 122338 -NCIT:C7311 Splenic T Lymphoblastic Lymphoma 8 122339 -NCIT:C7528 Angioimmunoblastic T-Cell Lymphoma 7 122340 -NCIT:C141294 Angioimmunoblastic T-Cell Lymphoma by Ann Arbor Stage 8 122341 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 9 122342 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 9 122343 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 9 122344 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 9 122345 -NCIT:C45271 Cutaneous Angioimmunoblastic T-Cell Lymphoma 8 122346 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 8 122347 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 8 122348 -NCIT:C8459 Hepatosplenic T-Cell Lymphoma 7 122349 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 8 122350 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 8 122351 -NCIT:C3468 Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 6 122352 -NCIT:C128696 Peripheral T-Cell Lymphoma, Unclassifiable 7 122353 -NCIT:C128697 NK-Cell Lymphoma, Unclassifiable 7 122354 -NCIT:C157689 Recurrent NK-Cell Lymphoma, Unclassifiable 8 122355 -NCIT:C157690 Refractory NK-Cell Lymphoma, Unclassifiable 8 122356 -NCIT:C129600 Central Nervous System Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 7 122357 -NCIT:C5322 Central Nervous System Anaplastic Large Cell Lymphoma 8 122358 -NCIT:C129598 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Positive 9 122359 -NCIT:C129599 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Negative 9 122360 -NCIT:C139005 Nodal Peripheral T-Cell Lymphoma of T Follicular Helper Cell Origin 7 122361 -NCIT:C139011 Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 8 122362 -NCIT:C168778 Recurrent Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 9 122363 -NCIT:C168779 Refractory Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 9 122364 -NCIT:C7528 Angioimmunoblastic T-Cell Lymphoma 8 122365 -NCIT:C141294 Angioimmunoblastic T-Cell Lymphoma by Ann Arbor Stage 9 122366 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 10 122367 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 10 122368 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 10 122369 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 10 122370 -NCIT:C45271 Cutaneous Angioimmunoblastic T-Cell Lymphoma 9 122371 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 9 122372 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 9 122373 -NCIT:C80375 Follicular T-Cell Lymphoma 8 122374 -NCIT:C168780 Recurrent Follicular T-Cell Lymphoma 9 122375 -NCIT:C168781 Refractory Follicular T-Cell Lymphoma 9 122376 -NCIT:C141272 Mature T- and NK-Cell Lymphoma by Ann Arbor Stage 7 122377 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 8 122378 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 9 122379 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 9 122380 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 9 122381 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 9 122382 -NCIT:C141284 Noncutaneous Anaplastic Large Cell Lymphoma by Ann Arbor Stage 8 122383 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 9 122384 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 122385 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 122386 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 122387 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 122388 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 9 122389 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 122390 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 9 122391 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 122392 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 9 122393 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 122394 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 9 122395 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 122396 -NCIT:C141294 Angioimmunoblastic T-Cell Lymphoma by Ann Arbor Stage 8 122397 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 9 122398 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 9 122399 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 9 122400 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 9 122401 -NCIT:C141295 Enteropathy-Associated T-Cell Lymphoma by Ann Arbor Stage 8 122402 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 9 122403 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 9 122404 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 9 122405 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 9 122406 -NCIT:C141296 Nasal Type NK/T-Cell Lymphoma by Ann Arbor Stage 8 122407 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 9 122408 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 9 122409 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 9 122410 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 9 122411 -NCIT:C8690 Ann Arbor Stage I Mature T- and NK-Cell Lymphoma 8 122412 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 9 122413 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 9 122414 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 122415 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 9 122416 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 9 122417 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 9 122418 -NCIT:C8691 Ann Arbor Stage II Mature T- and NK-Cell Lymphoma 8 122419 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 9 122420 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 9 122421 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 122422 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 9 122423 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 9 122424 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 9 122425 -NCIT:C8692 Ann Arbor Stage III Mature T- and NK-Cell Lymphoma 8 122426 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 9 122427 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 9 122428 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 122429 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 9 122430 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 9 122431 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 9 122432 -NCIT:C8693 Ann Arbor Stage IV Mature T- and NK-Cell Lymphoma 8 122433 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 9 122434 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 9 122435 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 122436 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 9 122437 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 9 122438 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 9 122439 -NCIT:C150495 Intestinal T-Cell Lymphoma 7 122440 -NCIT:C150505 Intestinal T-Cell Lymphoma, Not Otherwise Specified 8 122441 -NCIT:C4737 Enteropathy-Associated T-Cell Lymphoma 8 122442 -NCIT:C141295 Enteropathy-Associated T-Cell Lymphoma by Ann Arbor Stage 9 122443 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 10 122444 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 10 122445 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 10 122446 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 10 122447 -NCIT:C39610 Small Intestinal Enteropathy-Associated T-Cell Lymphoma 9 122448 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 9 122449 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 9 122450 -NCIT:C96058 Monomorphic Epitheliotropic Intestinal T-Cell Lymphoma 8 122451 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 122452 -NCIT:C150504 Small Intestinal Monomorphic Epitheliotropic T-Cell Lymphoma 9 122453 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 122454 -NCIT:C171300 Indolent T-Cell Non-Hodgkin Lymphoma 7 122455 -NCIT:C3246 Mycosis Fungoides 8 122456 -NCIT:C141143 Mycosis Fungoides by AJCC v7 Stage 9 122457 -NCIT:C7796 Stage I Mycosis Fungoides AJCC v7 10 122458 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 11 122459 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 11 122460 -NCIT:C7798 Stage II Mycosis Fungoides AJCC v7 10 122461 -NCIT:C7800 Stage III Mycosis Fungoides AJCC v7 10 122462 -NCIT:C7802 Stage IV Mycosis Fungoides AJCC v7 10 122463 -NCIT:C165783 Transformed Mycosis Fungoides 9 122464 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 122465 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 122466 -NCIT:C8686 Recurrent Mycosis Fungoides 9 122467 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 122468 -NCIT:C8687 Refractory Mycosis Fungoides 9 122469 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 122470 -NCIT:C39644 Mycosis Fungoides Variant 8 122471 -NCIT:C35464 Granulomatous Slack Skin Disease 9 122472 -NCIT:C35685 Folliculotropic Mycosis Fungoides 9 122473 -NCIT:C35794 Pagetoid Reticulosis 9 122474 -NCIT:C6860 Primary Cutaneous Anaplastic Large Cell Lymphoma 8 122475 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 122476 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 122477 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 9 122478 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 9 122479 -NCIT:C6918 Subcutaneous Panniculitis-Like T-Cell Lymphoma 8 122480 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 122481 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 122482 -NCIT:C3184 Adult T-Cell Leukemia/Lymphoma 7 122483 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 8 122484 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 9 122485 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 9 122486 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 9 122487 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 9 122488 -NCIT:C36265 Acute Adult T-Cell Leukemia/Lymphoma 8 122489 -NCIT:C36266 Lymphomatous Adult T-Cell Leukemia/Lymphoma 8 122490 -NCIT:C36268 Hodgkin-Like Adult T-Cell Leukemia/Lymphoma 8 122491 -NCIT:C45272 Cutaneous Adult T-Cell Leukemia/Lymphoma 8 122492 -NCIT:C7178 Smoldering Adult T-Cell Leukemia/Lymphoma 8 122493 -NCIT:C7179 Chronic Adult T-Cell Leukemia/Lymphoma 8 122494 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 8 122495 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 8 122496 -NCIT:C3467 Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 7 122497 -NCIT:C172442 Advanced Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 122498 -NCIT:C180374 Early Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 122499 -NCIT:C3246 Mycosis Fungoides 8 122500 -NCIT:C141143 Mycosis Fungoides by AJCC v7 Stage 9 122501 -NCIT:C7796 Stage I Mycosis Fungoides AJCC v7 10 122502 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 11 122503 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 11 122504 -NCIT:C7798 Stage II Mycosis Fungoides AJCC v7 10 122505 -NCIT:C7800 Stage III Mycosis Fungoides AJCC v7 10 122506 -NCIT:C7802 Stage IV Mycosis Fungoides AJCC v7 10 122507 -NCIT:C165783 Transformed Mycosis Fungoides 9 122508 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 122509 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 122510 -NCIT:C8686 Recurrent Mycosis Fungoides 9 122511 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 122512 -NCIT:C8687 Refractory Mycosis Fungoides 9 122513 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 122514 -NCIT:C39644 Mycosis Fungoides Variant 8 122515 -NCIT:C35464 Granulomatous Slack Skin Disease 9 122516 -NCIT:C35685 Folliculotropic Mycosis Fungoides 9 122517 -NCIT:C35794 Pagetoid Reticulosis 9 122518 -NCIT:C45332 Primary Cutaneous Peripheral T-Cell Lymphoma, Rare Subtype 8 122519 -NCIT:C139023 Primary Cutaneous Acral CD8-Positive T-Cell Lymphoma 9 122520 -NCIT:C45339 Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 122521 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 122522 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 122523 -NCIT:C45340 Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 122524 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 122525 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 122526 -NCIT:C6860 Primary Cutaneous Anaplastic Large Cell Lymphoma 8 122527 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 122528 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 122529 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 9 122530 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 9 122531 -NCIT:C6918 Subcutaneous Panniculitis-Like T-Cell Lymphoma 8 122532 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 122533 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 122534 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 122535 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 122536 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 122537 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 122538 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 122539 -NCIT:C8686 Recurrent Mycosis Fungoides 9 122540 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 122541 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 122542 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 122543 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 122544 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 122545 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 122546 -NCIT:C8687 Refractory Mycosis Fungoides 9 122547 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 122548 -NCIT:C3720 Anaplastic Large Cell Lymphoma 7 122549 -NCIT:C141284 Noncutaneous Anaplastic Large Cell Lymphoma by Ann Arbor Stage 8 122550 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 9 122551 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 122552 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 122553 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 122554 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 122555 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 9 122556 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 122557 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 9 122558 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 122559 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 9 122560 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 122561 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 9 122562 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 122563 -NCIT:C166179 Localized Anaplastic Large Cell Lymphoma 8 122564 -NCIT:C166180 Advanced Anaplastic Large Cell Lymphoma 8 122565 -NCIT:C188082 Lung Anaplastic Large Cell Lymphoma 8 122566 -NCIT:C27367 Adult Anaplastic Large Cell Lymphoma 8 122567 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 9 122568 -NCIT:C27366 Adult Systemic Anaplastic Large Cell Lymphoma 9 122569 -NCIT:C37193 Anaplastic Large Cell Lymphoma, ALK-Positive 8 122570 -NCIT:C129598 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Positive 9 122571 -NCIT:C188460 Childhood Anaplastic Large Cell Lymphoma, ALK-Positive 9 122572 -NCIT:C37195 Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 9 122573 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 122574 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 122575 -NCIT:C37194 Anaplastic Large Cell Lymphoma, ALK-Negative 8 122576 -NCIT:C129599 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Negative 9 122577 -NCIT:C139012 Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 122578 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 122579 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 122580 -NCIT:C37196 Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Negative 9 122581 -NCIT:C39674 Anaplastic Large Cell Lymphoma, Giant Cell Rich Subtype 8 122582 -NCIT:C39675 Anaplastic Large Cell Lymphoma, Sarcomatoid Subtype 8 122583 -NCIT:C39676 Anaplastic Large Cell Lymphoma, Signet Ring-Like Subtype 8 122584 -NCIT:C5322 Central Nervous System Anaplastic Large Cell Lymphoma 8 122585 -NCIT:C129598 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Positive 9 122586 -NCIT:C129599 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Negative 9 122587 -NCIT:C5636 Childhood Anaplastic Large Cell Lymphoma 8 122588 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 9 122589 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 9 122590 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 122591 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 122592 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 122593 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 122594 -NCIT:C188460 Childhood Anaplastic Large Cell Lymphoma, ALK-Positive 9 122595 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 9 122596 -NCIT:C9471 Childhood Systemic Anaplastic Large Cell Lymphoma 9 122597 -NCIT:C6860 Primary Cutaneous Anaplastic Large Cell Lymphoma 8 122598 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 122599 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 122600 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 9 122601 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 9 122602 -NCIT:C7206 Common Variant Anaplastic Large Cell Lymphoma 8 122603 -NCIT:C7207 Lymphohistiocytic Variant Anaplastic Large Cell Lymphoma 8 122604 -NCIT:C7208 Small Cell Variant Anaplastic Large Cell Lymphoma 8 122605 -NCIT:C8658 Refractory Anaplastic Large Cell Lymphoma 8 122606 -NCIT:C162689 Refractory Systemic Anaplastic Large Cell Lymphoma 9 122607 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 122608 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 122609 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 122610 -NCIT:C9250 Recurrent Anaplastic Large Cell Lymphoma 8 122611 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 9 122612 -NCIT:C162688 Recurrent Systemic Anaplastic Large Cell Lymphoma 9 122613 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 122614 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 122615 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 122616 -NCIT:C9470 Systemic Anaplastic Large Cell Lymphoma 8 122617 -NCIT:C162688 Recurrent Systemic Anaplastic Large Cell Lymphoma 9 122618 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 122619 -NCIT:C162689 Refractory Systemic Anaplastic Large Cell Lymphoma 9 122620 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 122621 -NCIT:C27366 Adult Systemic Anaplastic Large Cell Lymphoma 9 122622 -NCIT:C37195 Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 9 122623 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 122624 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 122625 -NCIT:C37196 Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Negative 9 122626 -NCIT:C9471 Childhood Systemic Anaplastic Large Cell Lymphoma 9 122627 -NCIT:C4340 Peripheral T-Cell Lymphoma, Not Otherwise Specified 7 122628 -NCIT:C139288 Primary EBV-Positive Nodal T-Cell or NK-Cell Lymphoma 8 122629 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 122630 -NCIT:C188459 Childhood Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 122631 -NCIT:C7205 Lymphoepithelioid Variant Peripheral T-Cell Lymphoma 8 122632 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 122633 -NCIT:C4684 Nasal Type Extranodal NK/T-Cell Lymphoma 7 122634 -NCIT:C115154 Adult Nasal Type Extranodal NK/T-Cell Lymphoma 8 122635 -NCIT:C141296 Nasal Type NK/T-Cell Lymphoma by Ann Arbor Stage 8 122636 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 9 122637 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 9 122638 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 9 122639 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 9 122640 -NCIT:C162468 Testicular Nasal Type Extranodal NK/T-Cell Lymphoma 8 122641 -NCIT:C173172 Sinonasal Extranodal NK/T-Cell Lymphoma 8 122642 -NCIT:C173173 Nasal Cavity Extranodal NK/T-Cell Lymphoma 9 122643 -NCIT:C45268 Cutaneous Nasal Type Extranodal NK/T-Cell Lymphoma 8 122644 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 8 122645 -NCIT:C68692 Childhood Nasal Type Extranodal NK/T-Cell Lymphoma 8 122646 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 8 122647 -NCIT:C5637 Childhood Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 7 122648 -NCIT:C188459 Childhood Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 122649 -NCIT:C5636 Childhood Anaplastic Large Cell Lymphoma 8 122650 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 9 122651 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 9 122652 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 122653 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 122654 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 122655 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 122656 -NCIT:C188460 Childhood Anaplastic Large Cell Lymphoma, ALK-Positive 9 122657 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 9 122658 -NCIT:C9471 Childhood Systemic Anaplastic Large Cell Lymphoma 9 122659 -NCIT:C68692 Childhood Nasal Type Extranodal NK/T-Cell Lymphoma 8 122660 -NCIT:C80374 Systemic EBV-Positive T-Cell Lymphoma of Childhood 8 122661 -NCIT:C7252 Methotrexate-Associated Peripheral T-Cell Lymphoma 7 122662 -NCIT:C8459 Hepatosplenic T-Cell Lymphoma 7 122663 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 8 122664 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 8 122665 -NCIT:C8688 Recurrent Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 7 122666 -NCIT:C115439 Recurrent Mycosis Fungoides and Sezary Syndrome 8 122667 -NCIT:C176999 Recurrent Sezary Syndrome 9 122668 -NCIT:C8686 Recurrent Mycosis Fungoides 9 122669 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 122670 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 8 122671 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 8 122672 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 122673 -NCIT:C157689 Recurrent NK-Cell Lymphoma, Unclassifiable 8 122674 -NCIT:C165789 Recurrent Transformed T-cell Non-Hodgkin Lymphoma 8 122675 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 9 122676 -NCIT:C168778 Recurrent Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 8 122677 -NCIT:C168780 Recurrent Follicular T-Cell Lymphoma 8 122678 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 8 122679 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 122680 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 122681 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 122682 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 122683 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 122684 -NCIT:C8686 Recurrent Mycosis Fungoides 9 122685 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 122686 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 8 122687 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 8 122688 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 8 122689 -NCIT:C9250 Recurrent Anaplastic Large Cell Lymphoma 8 122690 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 9 122691 -NCIT:C162688 Recurrent Systemic Anaplastic Large Cell Lymphoma 9 122692 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 122693 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 122694 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 122695 -NCIT:C8689 Refractory Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 7 122696 -NCIT:C148129 Refractory Mycosis Fungoides and Sezary Syndrome 8 122697 -NCIT:C177000 Refractory Sezary Syndrome 9 122698 -NCIT:C8687 Refractory Mycosis Fungoides 9 122699 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 122700 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 8 122701 -NCIT:C157690 Refractory NK-Cell Lymphoma, Unclassifiable 8 122702 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 8 122703 -NCIT:C165791 Refractory Transformed T-cell Non-Hodgkin Lymphoma 8 122704 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 9 122705 -NCIT:C168779 Refractory Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 8 122706 -NCIT:C168781 Refractory Follicular T-Cell Lymphoma 8 122707 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 8 122708 -NCIT:C8658 Refractory Anaplastic Large Cell Lymphoma 8 122709 -NCIT:C162689 Refractory Systemic Anaplastic Large Cell Lymphoma 9 122710 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 122711 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 122712 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 122713 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 8 122714 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 8 122715 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 8 122716 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 122717 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 122718 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 122719 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 122720 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 122721 -NCIT:C8687 Refractory Mycosis Fungoides 9 122722 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 122723 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 122724 -NCIT:C9265 Mycosis Fungoides and Sezary Syndrome 7 122725 -NCIT:C115439 Recurrent Mycosis Fungoides and Sezary Syndrome 8 122726 -NCIT:C176999 Recurrent Sezary Syndrome 9 122727 -NCIT:C8686 Recurrent Mycosis Fungoides 9 122728 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 122729 -NCIT:C141142 Mycosis Fungoides and Sezary Syndrome by AJCC v7 Stage 8 122730 -NCIT:C141143 Mycosis Fungoides by AJCC v7 Stage 9 122731 -NCIT:C7796 Stage I Mycosis Fungoides AJCC v7 10 122732 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 11 122733 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 11 122734 -NCIT:C7798 Stage II Mycosis Fungoides AJCC v7 10 122735 -NCIT:C7800 Stage III Mycosis Fungoides AJCC v7 10 122736 -NCIT:C7802 Stage IV Mycosis Fungoides AJCC v7 10 122737 -NCIT:C88150 Stage I Mycosis Fungoides and Sezary Syndrome AJCC v7 9 122738 -NCIT:C7796 Stage I Mycosis Fungoides AJCC v7 10 122739 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 11 122740 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 11 122741 -NCIT:C88151 Stage IA Mycosis Fungoides and Sezary Syndrome AJCC v7 10 122742 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 11 122743 -NCIT:C88152 Stage IB Mycosis Fungoides and Sezary Syndrome AJCC v7 10 122744 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 11 122745 -NCIT:C88153 Stage II Mycosis Fungoides and Sezary Syndrome AJCC v7 9 122746 -NCIT:C7798 Stage II Mycosis Fungoides AJCC v7 10 122747 -NCIT:C88154 Stage IIA Mycosis Fungoides and Sezary Syndrome AJCC v7 10 122748 -NCIT:C88155 Stage IIB Mycosis Fungoides and Sezary Syndrome AJCC v7 10 122749 -NCIT:C88157 Stage III Mycosis Fungoides and Sezary Syndrome AJCC v7 9 122750 -NCIT:C7800 Stage III Mycosis Fungoides AJCC v7 10 122751 -NCIT:C88158 Stage IIIA Mycosis Fungoides and Sezary Syndrome AJCC v7 10 122752 -NCIT:C88159 Stage IIIB Mycosis Fungoides and Sezary Syndrome AJCC v7 10 122753 -NCIT:C88160 Stage IV Mycosis Fungoides and Sezary Syndrome AJCC v7 9 122754 -NCIT:C7802 Stage IV Mycosis Fungoides AJCC v7 10 122755 -NCIT:C88161 Stage IVA Mycosis Fungoides and Sezary Syndrome AJCC v7 10 122756 -NCIT:C88162 Stage IVB Mycosis Fungoides and Sezary Syndrome AJCC v7 10 122757 -NCIT:C141346 Mycosis Fungoides and Sezary Syndrome by AJCC v8 Stage 8 122758 -NCIT:C141347 Stage I Mycosis Fungoides and Sezary Syndrome AJCC v8 9 122759 -NCIT:C141348 Stage IA Mycosis Fungoides and Sezary Syndrome AJCC v8 10 122760 -NCIT:C141349 Stage IB Mycosis Fungoides and Sezary Syndrome AJCC v8 10 122761 -NCIT:C141350 Stage II Mycosis Fungoides and Sezary Syndrome AJCC v8 9 122762 -NCIT:C141351 Stage IIA Mycosis Fungoides and Sezary Syndrome AJCC v8 10 122763 -NCIT:C141352 Stage IIB Mycosis Fungoides and Sezary Syndrome AJCC v8 10 122764 -NCIT:C141353 Stage III Mycosis Fungoides and Sezary Syndrome AJCC v8 9 122765 -NCIT:C141354 Stage IIIA Mycosis Fungoides and Sezary Syndrome AJCC v8 10 122766 -NCIT:C141355 Stage IIIB Mycosis Fungoides and Sezary Syndrome AJCC v8 10 122767 -NCIT:C141356 Stage IV Mycosis Fungoides and Sezary Syndrome AJCC v8 9 122768 -NCIT:C141357 Stage IVA1 Mycosis Fungoides and Sezary Syndrome AJCC v8 10 122769 -NCIT:C141358 Stage IVA2 Mycosis Fungoides and Sezary Syndrome AJCC v8 10 122770 -NCIT:C141359 Stage IVB Mycosis Fungoides and Sezary Syndrome AJCC v8 10 122771 -NCIT:C148129 Refractory Mycosis Fungoides and Sezary Syndrome 8 122772 -NCIT:C177000 Refractory Sezary Syndrome 9 122773 -NCIT:C8687 Refractory Mycosis Fungoides 9 122774 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 122775 -NCIT:C3246 Mycosis Fungoides 8 122776 -NCIT:C141143 Mycosis Fungoides by AJCC v7 Stage 9 122777 -NCIT:C7796 Stage I Mycosis Fungoides AJCC v7 10 122778 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 11 122779 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 11 122780 -NCIT:C7798 Stage II Mycosis Fungoides AJCC v7 10 122781 -NCIT:C7800 Stage III Mycosis Fungoides AJCC v7 10 122782 -NCIT:C7802 Stage IV Mycosis Fungoides AJCC v7 10 122783 -NCIT:C165783 Transformed Mycosis Fungoides 9 122784 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 122785 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 122786 -NCIT:C8686 Recurrent Mycosis Fungoides 9 122787 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 122788 -NCIT:C8687 Refractory Mycosis Fungoides 9 122789 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 122790 -NCIT:C3366 Sezary Syndrome 8 122791 -NCIT:C176999 Recurrent Sezary Syndrome 9 122792 -NCIT:C177000 Refractory Sezary Syndrome 9 122793 -NCIT:C39644 Mycosis Fungoides Variant 8 122794 -NCIT:C35464 Granulomatous Slack Skin Disease 9 122795 -NCIT:C35685 Folliculotropic Mycosis Fungoides 9 122796 -NCIT:C35794 Pagetoid Reticulosis 9 122797 -NCIT:C5182 Breast T-Cell Non-Hodgkin Lymphoma 6 122798 -NCIT:C139012 Breast Implant-Associated Anaplastic Large Cell Lymphoma 7 122799 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 8 122800 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 8 122801 -NCIT:C5254 Gastric T-Cell Non-Hodgkin Lymphoma 6 122802 -NCIT:C5409 Central Nervous System T-Cell Non-Hodgkin Lymphoma 6 122803 -NCIT:C129600 Central Nervous System Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 7 122804 -NCIT:C5322 Central Nervous System Anaplastic Large Cell Lymphoma 8 122805 -NCIT:C129598 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Positive 9 122806 -NCIT:C129599 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Negative 9 122807 -NCIT:C8663 Recurrent T-Cell Non-Hodgkin Lymphoma 6 122808 -NCIT:C178554 Recurrent Aggressive T-Cell Non-Hodgkin Lymphoma 7 122809 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 8 122810 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 8 122811 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 122812 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 8 122813 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 8 122814 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 8 122815 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 8 122816 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 8 122817 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 8 122818 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 8 122819 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 8 122820 -NCIT:C183513 Recurrent Indolent T-Cell Non-Hodgkin Lymphoma 7 122821 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 8 122822 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 8 122823 -NCIT:C8686 Recurrent Mycosis Fungoides 8 122824 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 9 122825 -NCIT:C8688 Recurrent Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 7 122826 -NCIT:C115439 Recurrent Mycosis Fungoides and Sezary Syndrome 8 122827 -NCIT:C176999 Recurrent Sezary Syndrome 9 122828 -NCIT:C8686 Recurrent Mycosis Fungoides 9 122829 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 122830 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 8 122831 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 8 122832 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 122833 -NCIT:C157689 Recurrent NK-Cell Lymphoma, Unclassifiable 8 122834 -NCIT:C165789 Recurrent Transformed T-cell Non-Hodgkin Lymphoma 8 122835 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 9 122836 -NCIT:C168778 Recurrent Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 8 122837 -NCIT:C168780 Recurrent Follicular T-Cell Lymphoma 8 122838 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 8 122839 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 122840 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 122841 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 122842 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 122843 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 122844 -NCIT:C8686 Recurrent Mycosis Fungoides 9 122845 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 122846 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 8 122847 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 8 122848 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 8 122849 -NCIT:C9250 Recurrent Anaplastic Large Cell Lymphoma 8 122850 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 9 122851 -NCIT:C162688 Recurrent Systemic Anaplastic Large Cell Lymphoma 9 122852 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 122853 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 122854 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 122855 -NCIT:C8664 Refractory T-Cell Non-Hodgkin Lymphoma 6 122856 -NCIT:C178556 Refractory Aggressive T-Cell Non-Hodgkin Lymphoma 7 122857 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 8 122858 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 8 122859 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 8 122860 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 8 122861 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 8 122862 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 8 122863 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 8 122864 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 8 122865 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 8 122866 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 8 122867 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 122868 -NCIT:C183515 Refractory Indolent T-Cell Non-Hodgkin Lymphoma 7 122869 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 8 122870 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 8 122871 -NCIT:C8687 Refractory Mycosis Fungoides 8 122872 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 9 122873 -NCIT:C8689 Refractory Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 7 122874 -NCIT:C148129 Refractory Mycosis Fungoides and Sezary Syndrome 8 122875 -NCIT:C177000 Refractory Sezary Syndrome 9 122876 -NCIT:C8687 Refractory Mycosis Fungoides 9 122877 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 122878 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 8 122879 -NCIT:C157690 Refractory NK-Cell Lymphoma, Unclassifiable 8 122880 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 8 122881 -NCIT:C165791 Refractory Transformed T-cell Non-Hodgkin Lymphoma 8 122882 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 9 122883 -NCIT:C168779 Refractory Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 8 122884 -NCIT:C168781 Refractory Follicular T-Cell Lymphoma 8 122885 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 8 122886 -NCIT:C8658 Refractory Anaplastic Large Cell Lymphoma 8 122887 -NCIT:C162689 Refractory Systemic Anaplastic Large Cell Lymphoma 9 122888 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 122889 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 122890 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 122891 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 8 122892 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 8 122893 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 8 122894 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 122895 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 122896 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 122897 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 122898 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 122899 -NCIT:C8687 Refractory Mycosis Fungoides 9 122900 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 122901 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 122902 -NCIT:C96054 Small Intestinal T-Cell Non-Hodgkin Lymphoma 6 122903 -NCIT:C150504 Small Intestinal Monomorphic Epitheliotropic T-Cell Lymphoma 7 122904 -NCIT:C39610 Small Intestinal Enteropathy-Associated T-Cell Lymphoma 7 122905 -NCIT:C8694 T Lymphoblastic Leukemia/Lymphoma 5 122906 -NCIT:C3183 T Acute Lymphoblastic Leukemia 6 122907 -NCIT:C130043 Early T Acute Lymphoblastic Leukemia 7 122908 -NCIT:C150131 Recurrent T Acute Lymphoblastic Leukemia 7 122909 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 122910 -NCIT:C150510 Refractory T Acute Lymphoblastic Leukemia 7 122911 -NCIT:C45739 Mediastinal T Acute Lymphoblastic Leukemia 7 122912 -NCIT:C7953 Childhood T Acute Lymphoblastic Leukemia 7 122913 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 8 122914 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 122915 -NCIT:C9142 Adult T Acute Lymphoblastic Leukemia 7 122916 -NCIT:C45242 Cutaneous T Lymphoblastic Leukemia/Lymphoma 6 122917 -NCIT:C45738 Mediastinal T Lymphoblastic Leukemia/Lymphoma 6 122918 -NCIT:C45739 Mediastinal T Acute Lymphoblastic Leukemia 7 122919 -NCIT:C45740 Mediastinal T Lymphoblastic Lymphoma 7 122920 -NCIT:C5640 Childhood T Lymphoblastic Leukemia/Lymphoma 6 122921 -NCIT:C7210 Childhood T Lymphoblastic Lymphoma 7 122922 -NCIT:C7953 Childhood T Acute Lymphoblastic Leukemia 7 122923 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 8 122924 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 122925 -NCIT:C6919 T Lymphoblastic Lymphoma 6 122926 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 7 122927 -NCIT:C45740 Mediastinal T Lymphoblastic Lymphoma 7 122928 -NCIT:C7210 Childhood T Lymphoblastic Lymphoma 7 122929 -NCIT:C7226 Adult T Lymphoblastic Lymphoma 7 122930 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 7 122931 -NCIT:C7311 Splenic T Lymphoblastic Lymphoma 7 122932 -NCIT:C8695 Recurrent T Lymphoblastic Leukemia/Lymphoma 6 122933 -NCIT:C150131 Recurrent T Acute Lymphoblastic Leukemia 7 122934 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 122935 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 7 122936 -NCIT:C8696 Refractory T Lymphoblastic Leukemia/Lymphoma 6 122937 -NCIT:C150510 Refractory T Acute Lymphoblastic Leukemia 7 122938 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 7 122939 -NCIT:C8697 Stage I T Lymphoblastic Leukemia/Lymphoma 6 122940 -NCIT:C8698 Stage II T Lymphoblastic Leukemia/Lymphoma 6 122941 -NCIT:C8699 Stage III T Lymphoblastic Leukemia/Lymphoma 6 122942 -NCIT:C8700 Stage IV T Lymphoblastic Leukemia/Lymphoma 6 122943 -NCIT:C3208 Lymphoma 4 122944 -NCIT:C134154 Refractory Lymphoma 5 122945 -NCIT:C138014 Refractory B-Cell Lymphoma, Unclassifiable, with Features Intermediate between Diffuse Large B-Cell Lymphoma and Classic Hodgkin Lymphoma 6 122946 -NCIT:C138020 Refractory Central Nervous System Lymphoma 6 122947 -NCIT:C146989 Refractory Central Nervous System Non-Hodgkin Lymphoma 7 122948 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 8 122949 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 122950 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 122951 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 122952 -NCIT:C138022 Refractory Testicular Lymphoma 6 122953 -NCIT:C138024 Refractory Breast Lymphoma 6 122954 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 7 122955 -NCIT:C142877 Refractory Primary Cutaneous Lymphoma 6 122956 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 7 122957 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 7 122958 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 8 122959 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 8 122960 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 8 122961 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 8 122962 -NCIT:C8687 Refractory Mycosis Fungoides 8 122963 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 9 122964 -NCIT:C153177 Refractory Mediastinal Lymphoma 6 122965 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 7 122966 -NCIT:C157682 Refractory Primary Bone Lymphoma 6 122967 -NCIT:C160149 Refractory EBV-Related Lymphoma 6 122968 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 7 122969 -NCIT:C187197 Refractory Childhood Lymphoma 6 122970 -NCIT:C115458 Refractory Childhood Hodgkin Lymphoma 7 122971 -NCIT:C8701 Refractory Non-Hodgkin Lymphoma 6 122972 -NCIT:C140091 Refractory Transformed Non-Hodgkin Lymphoma 7 122973 -NCIT:C158150 Refractory Transformed B-Cell Non-Hodgkin Lymphoma 8 122974 -NCIT:C160240 Refractory Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 9 122975 -NCIT:C186484 Refractory Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 9 122976 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 10 122977 -NCIT:C165791 Refractory Transformed T-cell Non-Hodgkin Lymphoma 8 122978 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 9 122979 -NCIT:C146989 Refractory Central Nervous System Non-Hodgkin Lymphoma 7 122980 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 8 122981 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 122982 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 122983 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 122984 -NCIT:C151978 Refractory Lymphoblastic Lymphoma 7 122985 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 8 122986 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 8 122987 -NCIT:C156233 Refractory Aggressive Non-Hodgkin Lymphoma 7 122988 -NCIT:C178555 Refractory Aggressive B-Cell Non-Hodgkin Lymphoma 8 122989 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 122990 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 9 122991 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 9 122992 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 10 122993 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 10 122994 -NCIT:C8847 Refractory Burkitt Lymphoma 9 122995 -NCIT:C8862 Refractory Mantle Cell Lymphoma 9 122996 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 9 122997 -NCIT:C178556 Refractory Aggressive T-Cell Non-Hodgkin Lymphoma 8 122998 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 9 122999 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 123000 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 123001 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 123002 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 123003 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 9 123004 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 9 123005 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 9 123006 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 9 123007 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 9 123008 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 123009 -NCIT:C173046 Refractory Indolent Non-Hodgkin Lymphoma 7 123010 -NCIT:C148175 Refractory Indolent Adult Non-Hodgkin Lymphoma 8 123011 -NCIT:C183514 Refractory Indolent B-Cell Non-Hodgkin Lymphoma 8 123012 -NCIT:C143085 Refractory Marginal Zone Lymphoma 9 123013 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 10 123014 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 123015 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 10 123016 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 9 123017 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 9 123018 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 9 123019 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 10 123020 -NCIT:C183515 Refractory Indolent T-Cell Non-Hodgkin Lymphoma 8 123021 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 123022 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 123023 -NCIT:C8687 Refractory Mycosis Fungoides 9 123024 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 123025 -NCIT:C8664 Refractory T-Cell Non-Hodgkin Lymphoma 7 123026 -NCIT:C178556 Refractory Aggressive T-Cell Non-Hodgkin Lymphoma 8 123027 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 9 123028 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 123029 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 123030 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 123031 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 123032 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 9 123033 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 9 123034 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 9 123035 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 9 123036 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 9 123037 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 123038 -NCIT:C183515 Refractory Indolent T-Cell Non-Hodgkin Lymphoma 8 123039 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 123040 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 123041 -NCIT:C8687 Refractory Mycosis Fungoides 9 123042 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 123043 -NCIT:C8689 Refractory Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 8 123044 -NCIT:C148129 Refractory Mycosis Fungoides and Sezary Syndrome 9 123045 -NCIT:C177000 Refractory Sezary Syndrome 10 123046 -NCIT:C8687 Refractory Mycosis Fungoides 10 123047 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 123048 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 9 123049 -NCIT:C157690 Refractory NK-Cell Lymphoma, Unclassifiable 9 123050 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 123051 -NCIT:C165791 Refractory Transformed T-cell Non-Hodgkin Lymphoma 9 123052 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 123053 -NCIT:C168779 Refractory Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 9 123054 -NCIT:C168781 Refractory Follicular T-Cell Lymphoma 9 123055 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 9 123056 -NCIT:C8658 Refractory Anaplastic Large Cell Lymphoma 9 123057 -NCIT:C162689 Refractory Systemic Anaplastic Large Cell Lymphoma 10 123058 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 11 123059 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 123060 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 123061 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 9 123062 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 9 123063 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 9 123064 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 123065 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 123066 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 123067 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 123068 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 123069 -NCIT:C8687 Refractory Mycosis Fungoides 10 123070 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 123071 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 123072 -NCIT:C8842 Refractory B-Cell Non-Hodgkin Lymphoma 7 123073 -NCIT:C178555 Refractory Aggressive B-Cell Non-Hodgkin Lymphoma 8 123074 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 123075 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 9 123076 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 9 123077 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 10 123078 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 10 123079 -NCIT:C8847 Refractory Burkitt Lymphoma 9 123080 -NCIT:C8862 Refractory Mantle Cell Lymphoma 9 123081 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 9 123082 -NCIT:C183514 Refractory Indolent B-Cell Non-Hodgkin Lymphoma 8 123083 -NCIT:C143085 Refractory Marginal Zone Lymphoma 9 123084 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 10 123085 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 123086 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 10 123087 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 9 123088 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 9 123089 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 9 123090 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 10 123091 -NCIT:C7228 Refractory Mature B-Cell Non-Hodgkin Lymphoma 8 123092 -NCIT:C143085 Refractory Marginal Zone Lymphoma 9 123093 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 10 123094 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 123095 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 10 123096 -NCIT:C158150 Refractory Transformed B-Cell Non-Hodgkin Lymphoma 9 123097 -NCIT:C160240 Refractory Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 10 123098 -NCIT:C186484 Refractory Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 10 123099 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 11 123100 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 9 123101 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 10 123102 -NCIT:C8846 Refractory Small Lymphocytic Lymphoma 9 123103 -NCIT:C8847 Refractory Burkitt Lymphoma 9 123104 -NCIT:C8853 Refractory Diffuse Large B-Cell Lymphoma 9 123105 -NCIT:C138018 Refractory Extranodal Diffuse Large B-cell Lymphoma 10 123106 -NCIT:C138026 Refractory Intravascular Large B-Cell Lymphoma 10 123107 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 123108 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 123109 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 10 123110 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 123111 -NCIT:C157678 Refractory T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 10 123112 -NCIT:C157680 Refractory Primary Effusion Lymphoma 10 123113 -NCIT:C157684 Refractory Plasmablastic Lymphoma 10 123114 -NCIT:C160233 Refractory High Grade B-Cell Lymphoma 10 123115 -NCIT:C151979 Refractory High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 11 123116 -NCIT:C162453 Refractory High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 11 123117 -NCIT:C188789 Refractory High Grade B-Cell Lymphoma, Not Otherwise Specified 11 123118 -NCIT:C165241 Refractory Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 123119 -NCIT:C160238 Refractory Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 11 123120 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 11 123121 -NCIT:C182034 Refractory Immunoblastic Lymphoma 11 123122 -NCIT:C8927 Refractory Centroblastic Lymphoma 11 123123 -NCIT:C183142 Refractory Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 10 123124 -NCIT:C188791 Refractory ALK-Positive Large B-Cell Lymphoma 10 123125 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 123126 -NCIT:C8858 Refractory Follicular Lymphoma 9 123127 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 10 123128 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 10 123129 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 10 123130 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 11 123131 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 11 123132 -NCIT:C8862 Refractory Mantle Cell Lymphoma 9 123133 -NCIT:C8836 Refractory Hodgkin Lymphoma 6 123134 -NCIT:C115458 Refractory Childhood Hodgkin Lymphoma 7 123135 -NCIT:C133736 Refractory Classic Hodgkin Lymphoma 7 123136 -NCIT:C142982 Refractory Lymphocyte-Rich Classic Hodgkin Lymphoma 8 123137 -NCIT:C8650 Refractory Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 123138 -NCIT:C8833 Refractory Mixed Cellularity Classic Hodgkin Lymphoma 8 123139 -NCIT:C8838 Refractory Nodular Sclerosis Classic Hodgkin Lymphoma 8 123140 -NCIT:C7260 Refractory Nodular Lymphocyte Predominant Hodgkin Lymphoma 7 123141 -NCIT:C134157 Recurrent Lymphoma 5 123142 -NCIT:C138013 Recurrent B-Cell Lymphoma, Unclassifiable, with Features Intermediate between Diffuse Large B-Cell Lymphoma and Classic Hodgkin Lymphoma 6 123143 -NCIT:C138019 Recurrent Central Nervous System Lymphoma 6 123144 -NCIT:C146990 Recurrent Central Nervous System Non-Hodgkin Lymphoma 7 123145 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 8 123146 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 123147 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 123148 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 123149 -NCIT:C138021 Recurrent Testicular Lymphoma 6 123150 -NCIT:C138023 Recurrent Breast Lymphoma 6 123151 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 7 123152 -NCIT:C142876 Recurrent Primary Cutaneous Lymphoma 6 123153 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 7 123154 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 7 123155 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 8 123156 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 8 123157 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 8 123158 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 8 123159 -NCIT:C8686 Recurrent Mycosis Fungoides 8 123160 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 9 123161 -NCIT:C147863 Recurrent EBV-Related Lymphoma 6 123162 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 7 123163 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 7 123164 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 8 123165 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 8 123166 -NCIT:C153175 Recurrent Mediastinal Lymphoma 6 123167 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 7 123168 -NCIT:C157681 Recurrent Primary Bone Lymphoma 6 123169 -NCIT:C187196 Recurrent Childhood Lymphoma 6 123170 -NCIT:C115369 Recurrent Childhood Non-Hodgkin Lymphoma 7 123171 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 8 123172 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 8 123173 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 8 123174 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 8 123175 -NCIT:C8059 Recurrent Childhood Hodgkin Lymphoma 7 123176 -NCIT:C4937 Recurrent Hodgkin Lymphoma 6 123177 -NCIT:C133592 Recurrent Classic Hodgkin Lymphoma 7 123178 -NCIT:C136971 Recurrent Lymphocyte-Rich Classic Hodgkin Lymphoma 8 123179 -NCIT:C8649 Recurrent Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 123180 -NCIT:C8832 Recurrent Mixed Cellularity Classic Hodgkin Lymphoma 8 123181 -NCIT:C8837 Recurrent Nodular Sclerosis Classic Hodgkin Lymphoma 8 123182 -NCIT:C7259 Recurrent Nodular Lymphocyte Predominant Hodgkin Lymphoma 7 123183 -NCIT:C7789 Recurrent Adult Hodgkin Lymphoma 7 123184 -NCIT:C8059 Recurrent Childhood Hodgkin Lymphoma 7 123185 -NCIT:C9251 Recurrent Non-Hodgkin Lymphoma 6 123186 -NCIT:C115369 Recurrent Childhood Non-Hodgkin Lymphoma 7 123187 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 8 123188 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 8 123189 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 8 123190 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 8 123191 -NCIT:C146990 Recurrent Central Nervous System Non-Hodgkin Lymphoma 7 123192 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 8 123193 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 123194 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 123195 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 123196 -NCIT:C156232 Recurrent Aggressive Non-Hodgkin Lymphoma 7 123197 -NCIT:C178553 Recurrent Aggressive B-Cell Non-Hodgkin Lymphoma 8 123198 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 123199 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 9 123200 -NCIT:C5008 Recurrent Burkitt Lymphoma 9 123201 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 10 123202 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 10 123203 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 9 123204 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 123205 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 10 123206 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 9 123207 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 10 123208 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 10 123209 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 9 123210 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 9 123211 -NCIT:C178554 Recurrent Aggressive T-Cell Non-Hodgkin Lymphoma 8 123212 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 123213 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 9 123214 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 123215 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 123216 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 9 123217 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 123218 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 123219 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 9 123220 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 9 123221 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 9 123222 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 9 123223 -NCIT:C8490 Recurrent Aggressive Adult Non-Hodgkin Lymphoma 8 123224 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 9 123225 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 9 123226 -NCIT:C8164 Recurrent Adult Lymphoblastic Lymphoma 9 123227 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 9 123228 -NCIT:C181796 Recurrent Indolent Non-Hodgkin Lymphoma 7 123229 -NCIT:C183512 Recurrent Indolent B-Cell Non-Hodgkin Lymphoma 8 123230 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 9 123231 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 10 123232 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 123233 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 10 123234 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 9 123235 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 9 123236 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 9 123237 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 10 123238 -NCIT:C183513 Recurrent Indolent T-Cell Non-Hodgkin Lymphoma 8 123239 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 123240 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 123241 -NCIT:C8686 Recurrent Mycosis Fungoides 9 123242 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 123243 -NCIT:C8488 Recurrent Indolent Adult Non-Hodgkin Lymphoma 8 123244 -NCIT:C8098 Recurrent Adult Non-Hodgkin Lymphoma 7 123245 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 8 123246 -NCIT:C8488 Recurrent Indolent Adult Non-Hodgkin Lymphoma 8 123247 -NCIT:C8490 Recurrent Aggressive Adult Non-Hodgkin Lymphoma 8 123248 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 9 123249 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 9 123250 -NCIT:C8164 Recurrent Adult Lymphoblastic Lymphoma 9 123251 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 9 123252 -NCIT:C8663 Recurrent T-Cell Non-Hodgkin Lymphoma 7 123253 -NCIT:C178554 Recurrent Aggressive T-Cell Non-Hodgkin Lymphoma 8 123254 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 123255 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 9 123256 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 123257 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 123258 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 9 123259 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 123260 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 123261 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 9 123262 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 9 123263 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 9 123264 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 9 123265 -NCIT:C183513 Recurrent Indolent T-Cell Non-Hodgkin Lymphoma 8 123266 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 123267 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 123268 -NCIT:C8686 Recurrent Mycosis Fungoides 9 123269 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 123270 -NCIT:C8688 Recurrent Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 8 123271 -NCIT:C115439 Recurrent Mycosis Fungoides and Sezary Syndrome 9 123272 -NCIT:C176999 Recurrent Sezary Syndrome 10 123273 -NCIT:C8686 Recurrent Mycosis Fungoides 10 123274 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 123275 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 123276 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 9 123277 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 123278 -NCIT:C157689 Recurrent NK-Cell Lymphoma, Unclassifiable 9 123279 -NCIT:C165789 Recurrent Transformed T-cell Non-Hodgkin Lymphoma 9 123280 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 123281 -NCIT:C168778 Recurrent Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 9 123282 -NCIT:C168780 Recurrent Follicular T-Cell Lymphoma 9 123283 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 9 123284 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 123285 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 123286 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 123287 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 123288 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 123289 -NCIT:C8686 Recurrent Mycosis Fungoides 10 123290 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 123291 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 9 123292 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 9 123293 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 9 123294 -NCIT:C9250 Recurrent Anaplastic Large Cell Lymphoma 9 123295 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 10 123296 -NCIT:C162688 Recurrent Systemic Anaplastic Large Cell Lymphoma 10 123297 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 11 123298 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 123299 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 123300 -NCIT:C8702 Recurrent Transformed Non-Hodgkin Lymphoma 7 123301 -NCIT:C158149 Recurrent Transformed B-Cell Non-Hodgkin Lymphoma 8 123302 -NCIT:C160232 Recurrent Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 9 123303 -NCIT:C186483 Recurrent Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 9 123304 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 10 123305 -NCIT:C165789 Recurrent Transformed T-cell Non-Hodgkin Lymphoma 8 123306 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 9 123307 -NCIT:C8841 Recurrent B-Cell Non-Hodgkin Lymphoma 7 123308 -NCIT:C165799 Recurrent Mature B-Cell Non-Hodgkin Lymphoma 8 123309 -NCIT:C158149 Recurrent Transformed B-Cell Non-Hodgkin Lymphoma 9 123310 -NCIT:C160232 Recurrent Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 10 123311 -NCIT:C186483 Recurrent Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 10 123312 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 11 123313 -NCIT:C5007 Recurrent Follicular Lymphoma 9 123314 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 10 123315 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 10 123316 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 10 123317 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 11 123318 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 11 123319 -NCIT:C5008 Recurrent Burkitt Lymphoma 9 123320 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 10 123321 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 10 123322 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 9 123323 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 10 123324 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 123325 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 10 123326 -NCIT:C8154 Recurrent Small Lymphocytic Lymphoma 9 123327 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 9 123328 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 9 123329 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 10 123330 -NCIT:C8852 Recurrent Diffuse Large B-Cell Lymphoma 9 123331 -NCIT:C138015 Recurrent Extranodal Diffuse Large B-cell Lymphoma 10 123332 -NCIT:C138025 Recurrent Intravascular Large B-Cell Lymphoma 10 123333 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 123334 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 123335 -NCIT:C156696 Recurrent T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 10 123336 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 10 123337 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 123338 -NCIT:C157679 Recurrent Primary Effusion Lymphoma 10 123339 -NCIT:C157683 Recurrent Plasmablastic Lymphoma 10 123340 -NCIT:C160229 Recurrent High Grade B-Cell Lymphoma 10 123341 -NCIT:C151980 Recurrent High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 11 123342 -NCIT:C162451 Recurrent High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 11 123343 -NCIT:C188788 Recurrent High Grade B-Cell Lymphoma, Not Otherwise Specified 11 123344 -NCIT:C165240 Recurrent Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 123345 -NCIT:C160230 Recurrent Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 11 123346 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 11 123347 -NCIT:C182035 Recurrent Immunoblastic Lymphoma 11 123348 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 12 123349 -NCIT:C8926 Recurrent Centroblastic Lymphoma 11 123350 -NCIT:C183140 Recurrent Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 10 123351 -NCIT:C188790 Recurrent ALK-Positive Large B-Cell Lymphoma 10 123352 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 10 123353 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 11 123354 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 11 123355 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 123356 -NCIT:C178553 Recurrent Aggressive B-Cell Non-Hodgkin Lymphoma 8 123357 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 123358 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 9 123359 -NCIT:C5008 Recurrent Burkitt Lymphoma 9 123360 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 10 123361 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 10 123362 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 9 123363 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 123364 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 10 123365 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 9 123366 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 10 123367 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 10 123368 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 9 123369 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 9 123370 -NCIT:C183512 Recurrent Indolent B-Cell Non-Hodgkin Lymphoma 8 123371 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 9 123372 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 10 123373 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 123374 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 10 123375 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 9 123376 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 9 123377 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 9 123378 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 10 123379 -NCIT:C150678 Methotrexate-Associated Lymphoma 5 123380 -NCIT:C7252 Methotrexate-Associated Peripheral T-Cell Lymphoma 6 123381 -NCIT:C7253 Methotrexate-Associated Diffuse Large B-Cell Lymphoma 6 123382 -NCIT:C7254 Methotrexate-Associated Follicular Lymphoma 6 123383 -NCIT:C7255 Methotrexate-Related Burkitt Lymphoma 6 123384 -NCIT:C7256 Methotrexate-Associated Hodgkin Lymphoma 6 123385 -NCIT:C153172 Advanced Lymphoma 5 123386 -NCIT:C172371 Advanced Non-Hodgkin Lymphoma 6 123387 -NCIT:C166180 Advanced Anaplastic Large Cell Lymphoma 7 123388 -NCIT:C171264 Advanced Diffuse Large B-Cell Lymphoma 7 123389 -NCIT:C172359 Advanced Follicular Lymphoma 7 123390 -NCIT:C172360 Advanced Marginal Zone Lymphoma 7 123391 -NCIT:C172361 Advanced Transformed Non-Hodgkin Lymphoma 7 123392 -NCIT:C172442 Advanced Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 7 123393 -NCIT:C53283 Advanced Favorable Non-Hodgkin Lymphoma 7 123394 -NCIT:C53284 Advanced Unfavorable Non-Hodgkin Lymphoma 7 123395 -NCIT:C172373 Advanced Hodgkin Lymphoma 6 123396 -NCIT:C68662 Advanced Favorable Hodgkin Lymphoma 7 123397 -NCIT:C68665 Advanced Unfavorable Hodgkin Lymphoma 7 123398 -NCIT:C157657 Unresectable Lymphoma 5 123399 -NCIT:C176994 Locally Advanced Lymphoma 5 123400 -NCIT:C180374 Early Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 6 123401 -NCIT:C27268 Lymphoma by Stage 5 123402 -NCIT:C141139 Lymphoma by Ann Arbor Stage 6 123403 -NCIT:C141140 Non-Hodgkin Lymphoma by Ann Arbor Stage 7 123404 -NCIT:C141235 Adult Non-Hodgkin Lymphoma by Ann Arbor Stage 8 123405 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 9 123406 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 10 123407 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 10 123408 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 10 123409 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 10 123410 -NCIT:C8102 Ann Arbor Stage I Adult Non-Hodgkin Lymphoma 9 123411 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 10 123412 -NCIT:C8464 Ann Arbor Stage I Indolent Adult Non-Hodgkin Lymphoma 10 123413 -NCIT:C9252 Ann Arbor Stage I Aggressive Adult Non-Hodgkin Lymphoma 10 123414 -NCIT:C8079 Ann Arbor Stage I Adult Lymphoblastic Lymphoma 11 123415 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 11 123416 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 11 123417 -NCIT:C8103 Ann Arbor Stage II Adult Non-Hodgkin Lymphoma 9 123418 -NCIT:C68686 Ann Arbor Stage II Aggressive Adult Non-Hodgkin Lymphoma 10 123419 -NCIT:C8125 Ann Arbor Stage II Adult Lymphoblastic Lymphoma 11 123420 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 12 123421 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 12 123422 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 11 123423 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 12 123424 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 12 123425 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 11 123426 -NCIT:C8472 Ann Arbor Stage II Contiguous Adult Aggressive Non-Hodgkin Lymphoma 11 123427 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 12 123428 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 12 123429 -NCIT:C8479 Ann Arbor Stage II Non-Contiguous Aggressive Adult Non-Hodgkin Lymphoma 11 123430 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 12 123431 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 12 123432 -NCIT:C68688 Ann Arbor Stage II Indolent Adult Non-Hodgkin Lymphoma 10 123433 -NCIT:C8467 Ann Arbor Stage II Contiguous Adult Indolent Non-Hodgkin Lymphoma 11 123434 -NCIT:C8478 Ann Arbor Stage II Non-Contiguous Adult Indolent Non-Hodgkin Lymphoma 11 123435 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 10 123436 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 11 123437 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 11 123438 -NCIT:C8466 Ann Arbor Stage II Contiguous Adult Non-Hodgkin Lymphoma 10 123439 -NCIT:C8467 Ann Arbor Stage II Contiguous Adult Indolent Non-Hodgkin Lymphoma 11 123440 -NCIT:C8472 Ann Arbor Stage II Contiguous Adult Aggressive Non-Hodgkin Lymphoma 11 123441 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 12 123442 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 12 123443 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 11 123444 -NCIT:C8477 Ann Arbor Stage II Non-Contiguous Adult Non-Hodgkin Lymphoma 10 123445 -NCIT:C8478 Ann Arbor Stage II Non-Contiguous Adult Indolent Non-Hodgkin Lymphoma 11 123446 -NCIT:C8479 Ann Arbor Stage II Non-Contiguous Aggressive Adult Non-Hodgkin Lymphoma 11 123447 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 12 123448 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 12 123449 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 11 123450 -NCIT:C8104 Ann Arbor Stage III Adult Non-Hodgkin Lymphoma 9 123451 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 10 123452 -NCIT:C8482 Ann Arbor Stage III Indolent Adult Non-Hodgkin Lymphoma 10 123453 -NCIT:C8484 Ann Arbor Stage III Aggressive Adult Non-Hodgkin Lymphoma 10 123454 -NCIT:C8138 Ann Arbor Stage III Adult Lymphoblastic Lymphoma 11 123455 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 11 123456 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 11 123457 -NCIT:C8105 Ann Arbor Stage IV Adult Non-Hodgkin Lymphoma 9 123458 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 10 123459 -NCIT:C8485 Ann Arbor Stage IV Indolent Adult Non-Hodgkin Lymphoma 10 123460 -NCIT:C8487 Ann Arbor Stage IV Aggressive Adult Non-Hodgkin Lymphoma 10 123461 -NCIT:C8151 Ann Arbor Stage IV Adult Lymphoblastic Lymphoma 11 123462 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 11 123463 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 11 123464 -NCIT:C141236 Childhood Non-Hodgkin Lymphoma by Ann Arbor Stage 8 123465 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 9 123466 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 123467 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 123468 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 123469 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 123470 -NCIT:C94791 Ann Arbor Stage I Childhood Non-Hodgkin Lymphoma 9 123471 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 123472 -NCIT:C9056 Ann Arbor Stage I Childhood Lymphoblastic Lymphoma 10 123473 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 10 123474 -NCIT:C94792 Ann Arbor Stage II Childhood Non-Hodgkin Lymphoma 9 123475 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 123476 -NCIT:C9057 Ann Arbor Stage II Childhood Lymphoblastic Lymphoma 10 123477 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 10 123478 -NCIT:C94793 Ann Arbor Stage III Childhood Non-Hodgkin Lymphoma 9 123479 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 123480 -NCIT:C9058 Ann Arbor Stage III Childhood Lymphoblastic Lymphoma 10 123481 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 10 123482 -NCIT:C94794 Ann Arbor Stage IV Childhood Non-Hodgkin Lymphoma 9 123483 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 123484 -NCIT:C9059 Ann Arbor Stage IV Childhood Lymphoblastic Lymphoma 10 123485 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 10 123486 -NCIT:C141243 B-Cell Non-Hodgkin Lymphoma by Ann Arbor Stage 8 123487 -NCIT:C141250 B Lymphoblastic Lymphoma by Ann Arbor Stage 9 123488 -NCIT:C8871 Ann Arbor Stage I B Lymphoblastic Lymphoma 10 123489 -NCIT:C8872 Ann Arbor Stage III B Lymphoblastic Lymphoma 10 123490 -NCIT:C8873 Ann Arbor Stage IV B Lymphoblastic Lymphoma 10 123491 -NCIT:C8937 Ann Arbor Stage II B Lymphoblastic Lymphoma 10 123492 -NCIT:C141253 Burkitt Lymphoma by Ann Arbor Stage 9 123493 -NCIT:C5084 Ann Arbor Stage IV Burkitt Lymphoma 10 123494 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 11 123495 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 11 123496 -NCIT:C8848 Ann Arbor Stage I Burkitt Lymphoma 10 123497 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 11 123498 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 11 123499 -NCIT:C8849 Ann Arbor Stage II Burkitt Lymphoma 10 123500 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 11 123501 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 12 123502 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 12 123503 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 11 123504 -NCIT:C8850 Ann Arbor Stage III Burkitt Lymphoma 10 123505 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 11 123506 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 11 123507 -NCIT:C141254 Diffuse Large B-Cell Lymphoma by Ann Arbor Stage 9 123508 -NCIT:C141262 Primary Mediastinal (Thymic) Large B-Cell Lymphoma by Ann Arbor Stage 10 123509 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 123510 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 123511 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 123512 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 123513 -NCIT:C141263 Centroblastic Lymphoma by Ann Arbor Stage 10 123514 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 11 123515 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 11 123516 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 11 123517 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 11 123518 -NCIT:C8854 Ann Arbor Stage I Diffuse Large B-Cell Lymphoma 10 123519 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 11 123520 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 123521 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 11 123522 -NCIT:C8855 Ann Arbor Stage II Diffuse Large B-Cell Lymphoma 10 123523 -NCIT:C171158 Ann Arbor Stage IIX (Bulky) Diffuse Large B-Cell Lymphoma 11 123524 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 11 123525 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 12 123526 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 12 123527 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 123528 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 11 123529 -NCIT:C8856 Ann Arbor Stage III Diffuse Large B-Cell Lymphoma 10 123530 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 11 123531 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 123532 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 11 123533 -NCIT:C8857 Ann Arbor Stage IV Diffuse Large B-Cell Lymphoma 10 123534 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 11 123535 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 123536 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 11 123537 -NCIT:C141255 Follicular Lymphoma by Ann Arbor Stage 9 123538 -NCIT:C5006 Ann Arbor Stage IV Follicular Lymphoma 10 123539 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 11 123540 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 11 123541 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 11 123542 -NCIT:C8859 Ann Arbor Stage I Follicular Lymphoma 10 123543 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 11 123544 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 11 123545 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 11 123546 -NCIT:C8860 Ann Arbor Stage II Follicular Lymphoma 10 123547 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 11 123548 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 12 123549 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 12 123550 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 11 123551 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 12 123552 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 12 123553 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 11 123554 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 12 123555 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 12 123556 -NCIT:C8861 Ann Arbor Stage III Follicular Lymphoma 10 123557 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 11 123558 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 11 123559 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 11 123560 -NCIT:C141256 Lymphoplasmacytic Lymphoma by Ann Arbor Stage 9 123561 -NCIT:C8653 Ann Arbor Stage I Lymphoplasmacytic Lymphoma 10 123562 -NCIT:C8654 Ann Arbor Stage II Lymphoplasmacytic Lymphoma 10 123563 -NCIT:C8655 Ann Arbor Stage III Lymphoplasmacytic Lymphoma 10 123564 -NCIT:C8656 Ann Arbor Stage IV Lymphoplasmacytic Lymphoma 10 123565 -NCIT:C141257 Mantle Cell Lymphoma by Ann Arbor Stage 9 123566 -NCIT:C8465 Ann Arbor Stage I Mantle Cell Lymphoma 10 123567 -NCIT:C8483 Ann Arbor Stage III Mantle Cell Lymphoma 10 123568 -NCIT:C8486 Ann Arbor Stage IV Mantle Cell Lymphoma 10 123569 -NCIT:C9202 Ann Arbor Stage II Mantle Cell Lymphoma 10 123570 -NCIT:C8473 Ann Arbor Stage II Contiguous Mantle Cell Lymphoma 11 123571 -NCIT:C9198 Ann Arbor Stage II Non-Contiguous Mantle Cell Lymphoma 11 123572 -NCIT:C141258 Marginal Zone Lymphoma by Ann Arbor Stage 9 123573 -NCIT:C141260 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue by Ann Arbor Stage 10 123574 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 123575 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 123576 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 123577 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 123578 -NCIT:C141261 Nodal Marginal Zone Lymphoma by Ann Arbor Stage 10 123579 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 11 123580 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 11 123581 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 11 123582 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 11 123583 -NCIT:C68678 Ann Arbor Stage I Marginal Zone Lymphoma 10 123584 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 123585 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 11 123586 -NCIT:C68679 Ann Arbor Stage II Marginal Zone Lymphoma 10 123587 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 123588 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 11 123589 -NCIT:C68682 Ann Arbor Stage III Marginal Zone Lymphoma 10 123590 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 123591 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 11 123592 -NCIT:C68683 Ann Arbor Stage IV Marginal Zone Lymphoma 10 123593 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 123594 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 11 123595 -NCIT:C141259 Small Lymphocytic Lymphoma by Ann Arbor Stage 9 123596 -NCIT:C8070 Ann Arbor Stage I Small Lymphocytic Lymphoma 10 123597 -NCIT:C8115 Ann Arbor Stage II Small Lymphocytic Lymphoma 10 123598 -NCIT:C8128 Ann Arbor Stage III Small Lymphocytic Lymphoma 10 123599 -NCIT:C8141 Ann Arbor Stage IV Small Lymphocytic Lymphoma 10 123600 -NCIT:C27308 Ann Arbor Stage I B-Cell Non-Hodgkin Lymphoma 9 123601 -NCIT:C68678 Ann Arbor Stage I Marginal Zone Lymphoma 10 123602 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 123603 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 11 123604 -NCIT:C8070 Ann Arbor Stage I Small Lymphocytic Lymphoma 10 123605 -NCIT:C8465 Ann Arbor Stage I Mantle Cell Lymphoma 10 123606 -NCIT:C8653 Ann Arbor Stage I Lymphoplasmacytic Lymphoma 10 123607 -NCIT:C8848 Ann Arbor Stage I Burkitt Lymphoma 10 123608 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 11 123609 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 11 123610 -NCIT:C8854 Ann Arbor Stage I Diffuse Large B-Cell Lymphoma 10 123611 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 11 123612 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 123613 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 11 123614 -NCIT:C8859 Ann Arbor Stage I Follicular Lymphoma 10 123615 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 11 123616 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 11 123617 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 11 123618 -NCIT:C8871 Ann Arbor Stage I B Lymphoblastic Lymphoma 10 123619 -NCIT:C8843 Ann Arbor Stage II B-Cell Non-Hodgkin Lymphoma 9 123620 -NCIT:C68679 Ann Arbor Stage II Marginal Zone Lymphoma 10 123621 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 123622 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 11 123623 -NCIT:C8115 Ann Arbor Stage II Small Lymphocytic Lymphoma 10 123624 -NCIT:C8654 Ann Arbor Stage II Lymphoplasmacytic Lymphoma 10 123625 -NCIT:C8849 Ann Arbor Stage II Burkitt Lymphoma 10 123626 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 11 123627 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 12 123628 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 12 123629 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 11 123630 -NCIT:C8855 Ann Arbor Stage II Diffuse Large B-Cell Lymphoma 10 123631 -NCIT:C171158 Ann Arbor Stage IIX (Bulky) Diffuse Large B-Cell Lymphoma 11 123632 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 11 123633 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 12 123634 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 12 123635 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 123636 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 11 123637 -NCIT:C8860 Ann Arbor Stage II Follicular Lymphoma 10 123638 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 11 123639 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 12 123640 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 12 123641 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 11 123642 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 12 123643 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 12 123644 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 11 123645 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 12 123646 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 12 123647 -NCIT:C8937 Ann Arbor Stage II B Lymphoblastic Lymphoma 10 123648 -NCIT:C9202 Ann Arbor Stage II Mantle Cell Lymphoma 10 123649 -NCIT:C8473 Ann Arbor Stage II Contiguous Mantle Cell Lymphoma 11 123650 -NCIT:C9198 Ann Arbor Stage II Non-Contiguous Mantle Cell Lymphoma 11 123651 -NCIT:C8844 Ann Arbor Stage III B-Cell Non-Hodgkin Lymphoma 9 123652 -NCIT:C68682 Ann Arbor Stage III Marginal Zone Lymphoma 10 123653 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 123654 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 11 123655 -NCIT:C8128 Ann Arbor Stage III Small Lymphocytic Lymphoma 10 123656 -NCIT:C8483 Ann Arbor Stage III Mantle Cell Lymphoma 10 123657 -NCIT:C8655 Ann Arbor Stage III Lymphoplasmacytic Lymphoma 10 123658 -NCIT:C8850 Ann Arbor Stage III Burkitt Lymphoma 10 123659 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 11 123660 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 11 123661 -NCIT:C8856 Ann Arbor Stage III Diffuse Large B-Cell Lymphoma 10 123662 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 11 123663 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 123664 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 11 123665 -NCIT:C8861 Ann Arbor Stage III Follicular Lymphoma 10 123666 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 11 123667 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 11 123668 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 11 123669 -NCIT:C8872 Ann Arbor Stage III B Lymphoblastic Lymphoma 10 123670 -NCIT:C8845 Ann Arbor Stage IV B-Cell Non-Hodgkin Lymphoma 9 123671 -NCIT:C5006 Ann Arbor Stage IV Follicular Lymphoma 10 123672 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 11 123673 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 11 123674 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 11 123675 -NCIT:C5084 Ann Arbor Stage IV Burkitt Lymphoma 10 123676 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 11 123677 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 11 123678 -NCIT:C68683 Ann Arbor Stage IV Marginal Zone Lymphoma 10 123679 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 123680 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 11 123681 -NCIT:C8141 Ann Arbor Stage IV Small Lymphocytic Lymphoma 10 123682 -NCIT:C8486 Ann Arbor Stage IV Mantle Cell Lymphoma 10 123683 -NCIT:C8656 Ann Arbor Stage IV Lymphoplasmacytic Lymphoma 10 123684 -NCIT:C8857 Ann Arbor Stage IV Diffuse Large B-Cell Lymphoma 10 123685 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 11 123686 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 123687 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 11 123688 -NCIT:C8873 Ann Arbor Stage IV B Lymphoblastic Lymphoma 10 123689 -NCIT:C141247 T-Cell Non-Hodgkin Lymphoma by Ann Arbor Stage 8 123690 -NCIT:C141272 Mature T- and NK-Cell Lymphoma by Ann Arbor Stage 9 123691 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 10 123692 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 11 123693 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 11 123694 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 11 123695 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 11 123696 -NCIT:C141284 Noncutaneous Anaplastic Large Cell Lymphoma by Ann Arbor Stage 10 123697 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 11 123698 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 123699 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 123700 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 123701 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 123702 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 11 123703 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 123704 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 11 123705 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 123706 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 11 123707 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 123708 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 11 123709 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 123710 -NCIT:C141294 Angioimmunoblastic T-Cell Lymphoma by Ann Arbor Stage 10 123711 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 11 123712 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 11 123713 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 11 123714 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 11 123715 -NCIT:C141295 Enteropathy-Associated T-Cell Lymphoma by Ann Arbor Stage 10 123716 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 11 123717 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 11 123718 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 11 123719 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 11 123720 -NCIT:C141296 Nasal Type NK/T-Cell Lymphoma by Ann Arbor Stage 10 123721 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 11 123722 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 11 123723 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 11 123724 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 11 123725 -NCIT:C8690 Ann Arbor Stage I Mature T- and NK-Cell Lymphoma 10 123726 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 11 123727 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 11 123728 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 123729 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 11 123730 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 11 123731 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 11 123732 -NCIT:C8691 Ann Arbor Stage II Mature T- and NK-Cell Lymphoma 10 123733 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 11 123734 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 11 123735 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 123736 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 11 123737 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 11 123738 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 11 123739 -NCIT:C8692 Ann Arbor Stage III Mature T- and NK-Cell Lymphoma 10 123740 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 11 123741 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 11 123742 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 123743 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 11 123744 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 11 123745 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 11 123746 -NCIT:C8693 Ann Arbor Stage IV Mature T- and NK-Cell Lymphoma 10 123747 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 11 123748 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 11 123749 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 123750 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 11 123751 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 11 123752 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 11 123753 -NCIT:C8665 Ann Arbor Stage I T-Cell Non-Hodgkin Lymphoma 9 123754 -NCIT:C8690 Ann Arbor Stage I Mature T- and NK-Cell Lymphoma 10 123755 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 11 123756 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 11 123757 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 123758 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 11 123759 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 11 123760 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 11 123761 -NCIT:C8666 Ann Arbor Stage II T-Cell Non-Hodgkin Lymphoma 9 123762 -NCIT:C8691 Ann Arbor Stage II Mature T- and NK-Cell Lymphoma 10 123763 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 11 123764 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 11 123765 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 123766 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 11 123767 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 11 123768 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 11 123769 -NCIT:C8667 Ann Arbor Stage III T-Cell Non-Hodgkin Lymphoma 9 123770 -NCIT:C8692 Ann Arbor Stage III Mature T- and NK-Cell Lymphoma 10 123771 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 11 123772 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 11 123773 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 123774 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 11 123775 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 11 123776 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 11 123777 -NCIT:C8668 Ann Arbor Stage IV T-Cell Non-Hodgkin Lymphoma 9 123778 -NCIT:C8693 Ann Arbor Stage IV Mature T- and NK-Cell Lymphoma 10 123779 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 11 123780 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 11 123781 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 123782 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 11 123783 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 11 123784 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 11 123785 -NCIT:C8520 Ann Arbor Stage I Non-Hodgkin Lymphoma 8 123786 -NCIT:C27308 Ann Arbor Stage I B-Cell Non-Hodgkin Lymphoma 9 123787 -NCIT:C68678 Ann Arbor Stage I Marginal Zone Lymphoma 10 123788 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 123789 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 11 123790 -NCIT:C8070 Ann Arbor Stage I Small Lymphocytic Lymphoma 10 123791 -NCIT:C8465 Ann Arbor Stage I Mantle Cell Lymphoma 10 123792 -NCIT:C8653 Ann Arbor Stage I Lymphoplasmacytic Lymphoma 10 123793 -NCIT:C8848 Ann Arbor Stage I Burkitt Lymphoma 10 123794 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 11 123795 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 11 123796 -NCIT:C8854 Ann Arbor Stage I Diffuse Large B-Cell Lymphoma 10 123797 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 11 123798 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 123799 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 11 123800 -NCIT:C8859 Ann Arbor Stage I Follicular Lymphoma 10 123801 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 11 123802 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 11 123803 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 11 123804 -NCIT:C8871 Ann Arbor Stage I B Lymphoblastic Lymphoma 10 123805 -NCIT:C8102 Ann Arbor Stage I Adult Non-Hodgkin Lymphoma 9 123806 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 10 123807 -NCIT:C8464 Ann Arbor Stage I Indolent Adult Non-Hodgkin Lymphoma 10 123808 -NCIT:C9252 Ann Arbor Stage I Aggressive Adult Non-Hodgkin Lymphoma 10 123809 -NCIT:C8079 Ann Arbor Stage I Adult Lymphoblastic Lymphoma 11 123810 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 11 123811 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 11 123812 -NCIT:C8665 Ann Arbor Stage I T-Cell Non-Hodgkin Lymphoma 9 123813 -NCIT:C8690 Ann Arbor Stage I Mature T- and NK-Cell Lymphoma 10 123814 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 11 123815 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 11 123816 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 123817 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 11 123818 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 11 123819 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 11 123820 -NCIT:C94791 Ann Arbor Stage I Childhood Non-Hodgkin Lymphoma 9 123821 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 123822 -NCIT:C9056 Ann Arbor Stage I Childhood Lymphoblastic Lymphoma 10 123823 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 10 123824 -NCIT:C8521 Ann Arbor Stage II Non-Hodgkin Lymphoma 8 123825 -NCIT:C171159 Ann Arbor Stage IIX (Bulky) Non-Hodgkin Lymphoma 9 123826 -NCIT:C171158 Ann Arbor Stage IIX (Bulky) Diffuse Large B-Cell Lymphoma 10 123827 -NCIT:C8103 Ann Arbor Stage II Adult Non-Hodgkin Lymphoma 9 123828 -NCIT:C68686 Ann Arbor Stage II Aggressive Adult Non-Hodgkin Lymphoma 10 123829 -NCIT:C8125 Ann Arbor Stage II Adult Lymphoblastic Lymphoma 11 123830 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 12 123831 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 12 123832 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 11 123833 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 12 123834 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 12 123835 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 11 123836 -NCIT:C8472 Ann Arbor Stage II Contiguous Adult Aggressive Non-Hodgkin Lymphoma 11 123837 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 12 123838 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 12 123839 -NCIT:C8479 Ann Arbor Stage II Non-Contiguous Aggressive Adult Non-Hodgkin Lymphoma 11 123840 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 12 123841 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 12 123842 -NCIT:C68688 Ann Arbor Stage II Indolent Adult Non-Hodgkin Lymphoma 10 123843 -NCIT:C8467 Ann Arbor Stage II Contiguous Adult Indolent Non-Hodgkin Lymphoma 11 123844 -NCIT:C8478 Ann Arbor Stage II Non-Contiguous Adult Indolent Non-Hodgkin Lymphoma 11 123845 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 10 123846 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 11 123847 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 11 123848 -NCIT:C8466 Ann Arbor Stage II Contiguous Adult Non-Hodgkin Lymphoma 10 123849 -NCIT:C8467 Ann Arbor Stage II Contiguous Adult Indolent Non-Hodgkin Lymphoma 11 123850 -NCIT:C8472 Ann Arbor Stage II Contiguous Adult Aggressive Non-Hodgkin Lymphoma 11 123851 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 12 123852 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 12 123853 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 11 123854 -NCIT:C8477 Ann Arbor Stage II Non-Contiguous Adult Non-Hodgkin Lymphoma 10 123855 -NCIT:C8478 Ann Arbor Stage II Non-Contiguous Adult Indolent Non-Hodgkin Lymphoma 11 123856 -NCIT:C8479 Ann Arbor Stage II Non-Contiguous Aggressive Adult Non-Hodgkin Lymphoma 11 123857 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 12 123858 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 12 123859 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 11 123860 -NCIT:C8666 Ann Arbor Stage II T-Cell Non-Hodgkin Lymphoma 9 123861 -NCIT:C8691 Ann Arbor Stage II Mature T- and NK-Cell Lymphoma 10 123862 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 11 123863 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 11 123864 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 123865 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 11 123866 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 11 123867 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 11 123868 -NCIT:C8843 Ann Arbor Stage II B-Cell Non-Hodgkin Lymphoma 9 123869 -NCIT:C68679 Ann Arbor Stage II Marginal Zone Lymphoma 10 123870 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 123871 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 11 123872 -NCIT:C8115 Ann Arbor Stage II Small Lymphocytic Lymphoma 10 123873 -NCIT:C8654 Ann Arbor Stage II Lymphoplasmacytic Lymphoma 10 123874 -NCIT:C8849 Ann Arbor Stage II Burkitt Lymphoma 10 123875 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 11 123876 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 12 123877 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 12 123878 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 11 123879 -NCIT:C8855 Ann Arbor Stage II Diffuse Large B-Cell Lymphoma 10 123880 -NCIT:C171158 Ann Arbor Stage IIX (Bulky) Diffuse Large B-Cell Lymphoma 11 123881 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 11 123882 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 12 123883 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 12 123884 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 123885 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 11 123886 -NCIT:C8860 Ann Arbor Stage II Follicular Lymphoma 10 123887 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 11 123888 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 12 123889 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 12 123890 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 11 123891 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 12 123892 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 12 123893 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 11 123894 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 12 123895 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 12 123896 -NCIT:C8937 Ann Arbor Stage II B Lymphoblastic Lymphoma 10 123897 -NCIT:C9202 Ann Arbor Stage II Mantle Cell Lymphoma 10 123898 -NCIT:C8473 Ann Arbor Stage II Contiguous Mantle Cell Lymphoma 11 123899 -NCIT:C9198 Ann Arbor Stage II Non-Contiguous Mantle Cell Lymphoma 11 123900 -NCIT:C94792 Ann Arbor Stage II Childhood Non-Hodgkin Lymphoma 9 123901 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 123902 -NCIT:C9057 Ann Arbor Stage II Childhood Lymphoblastic Lymphoma 10 123903 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 10 123904 -NCIT:C8522 Ann Arbor Stage III Non-Hodgkin Lymphoma 8 123905 -NCIT:C8104 Ann Arbor Stage III Adult Non-Hodgkin Lymphoma 9 123906 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 10 123907 -NCIT:C8482 Ann Arbor Stage III Indolent Adult Non-Hodgkin Lymphoma 10 123908 -NCIT:C8484 Ann Arbor Stage III Aggressive Adult Non-Hodgkin Lymphoma 10 123909 -NCIT:C8138 Ann Arbor Stage III Adult Lymphoblastic Lymphoma 11 123910 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 11 123911 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 11 123912 -NCIT:C8667 Ann Arbor Stage III T-Cell Non-Hodgkin Lymphoma 9 123913 -NCIT:C8692 Ann Arbor Stage III Mature T- and NK-Cell Lymphoma 10 123914 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 11 123915 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 11 123916 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 123917 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 11 123918 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 11 123919 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 11 123920 -NCIT:C8844 Ann Arbor Stage III B-Cell Non-Hodgkin Lymphoma 9 123921 -NCIT:C68682 Ann Arbor Stage III Marginal Zone Lymphoma 10 123922 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 123923 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 11 123924 -NCIT:C8128 Ann Arbor Stage III Small Lymphocytic Lymphoma 10 123925 -NCIT:C8483 Ann Arbor Stage III Mantle Cell Lymphoma 10 123926 -NCIT:C8655 Ann Arbor Stage III Lymphoplasmacytic Lymphoma 10 123927 -NCIT:C8850 Ann Arbor Stage III Burkitt Lymphoma 10 123928 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 11 123929 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 11 123930 -NCIT:C8856 Ann Arbor Stage III Diffuse Large B-Cell Lymphoma 10 123931 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 11 123932 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 123933 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 11 123934 -NCIT:C8861 Ann Arbor Stage III Follicular Lymphoma 10 123935 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 11 123936 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 11 123937 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 11 123938 -NCIT:C8872 Ann Arbor Stage III B Lymphoblastic Lymphoma 10 123939 -NCIT:C94793 Ann Arbor Stage III Childhood Non-Hodgkin Lymphoma 9 123940 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 123941 -NCIT:C9058 Ann Arbor Stage III Childhood Lymphoblastic Lymphoma 10 123942 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 10 123943 -NCIT:C8523 Ann Arbor Stage IV Non-Hodgkin Lymphoma 8 123944 -NCIT:C8105 Ann Arbor Stage IV Adult Non-Hodgkin Lymphoma 9 123945 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 10 123946 -NCIT:C8485 Ann Arbor Stage IV Indolent Adult Non-Hodgkin Lymphoma 10 123947 -NCIT:C8487 Ann Arbor Stage IV Aggressive Adult Non-Hodgkin Lymphoma 10 123948 -NCIT:C8151 Ann Arbor Stage IV Adult Lymphoblastic Lymphoma 11 123949 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 11 123950 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 11 123951 -NCIT:C8668 Ann Arbor Stage IV T-Cell Non-Hodgkin Lymphoma 9 123952 -NCIT:C8693 Ann Arbor Stage IV Mature T- and NK-Cell Lymphoma 10 123953 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 11 123954 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 11 123955 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 123956 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 11 123957 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 11 123958 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 11 123959 -NCIT:C8845 Ann Arbor Stage IV B-Cell Non-Hodgkin Lymphoma 9 123960 -NCIT:C5006 Ann Arbor Stage IV Follicular Lymphoma 10 123961 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 11 123962 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 11 123963 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 11 123964 -NCIT:C5084 Ann Arbor Stage IV Burkitt Lymphoma 10 123965 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 11 123966 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 11 123967 -NCIT:C68683 Ann Arbor Stage IV Marginal Zone Lymphoma 10 123968 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 123969 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 11 123970 -NCIT:C8141 Ann Arbor Stage IV Small Lymphocytic Lymphoma 10 123971 -NCIT:C8486 Ann Arbor Stage IV Mantle Cell Lymphoma 10 123972 -NCIT:C8656 Ann Arbor Stage IV Lymphoplasmacytic Lymphoma 10 123973 -NCIT:C8857 Ann Arbor Stage IV Diffuse Large B-Cell Lymphoma 10 123974 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 11 123975 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 123976 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 11 123977 -NCIT:C8873 Ann Arbor Stage IV B Lymphoblastic Lymphoma 10 123978 -NCIT:C94794 Ann Arbor Stage IV Childhood Non-Hodgkin Lymphoma 9 123979 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 123980 -NCIT:C9059 Ann Arbor Stage IV Childhood Lymphoblastic Lymphoma 10 123981 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 10 123982 -NCIT:C141141 Hodgkin Lymphoma by Ann Arbor Stage 7 123983 -NCIT:C141222 Lymphocyte-Depleted Classic Hodgkin Lymphoma by Ann Arbor Stage 8 123984 -NCIT:C3583 Ann Arbor Stage III Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 123985 -NCIT:C5064 Ann Arbor Stage I Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 123986 -NCIT:C5065 Ann Arbor Stage I Subdiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 10 123987 -NCIT:C5066 Ann Arbor Stage I Supradiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 10 123988 -NCIT:C5067 Ann Arbor Stage II Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 123989 -NCIT:C5068 Ann Arbor Stage II Subdiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 10 123990 -NCIT:C5069 Ann Arbor Stage II Supradiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 10 123991 -NCIT:C8651 Ann Arbor Stage IV Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 123992 -NCIT:C141223 Nodular Sclerosis Classic Hodgkin Lymphoma by Ann Arbor Stage 8 123993 -NCIT:C3581 Ann Arbor Stage III Nodular Sclerosis Classic Hodgkin Lymphoma 9 123994 -NCIT:C5081 Ann Arbor Stage II Nodular Sclerosis Classic Hodgkin Lymphoma 9 123995 -NCIT:C5082 Ann Arbor Stage II Subdiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 10 123996 -NCIT:C5083 Ann Arbor Stage II Supradiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 10 123997 -NCIT:C8839 Ann Arbor Stage I Nodular Sclerosis Classic Hodgkin Lymphoma 9 123998 -NCIT:C5079 Ann Arbor Stage I Subdiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 10 123999 -NCIT:C5080 Ann Arbor Stage I Supradiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 10 124000 -NCIT:C8840 Ann Arbor Stage IV Nodular Sclerosis Classic Hodgkin Lymphoma 9 124001 -NCIT:C141224 Mixed Cellularity Classic Hodgkin Lymphoma by Ann Arbor Stage 8 124002 -NCIT:C3582 Ann Arbor Stage III Mixed Cellularity Classic Hodgkin Lymphoma 9 124003 -NCIT:C5077 Ann Arbor Stage II Mixed Cellularity Classic Hodgkin Lymphoma 9 124004 -NCIT:C5078 Ann Arbor Stage II Subdiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 10 124005 -NCIT:C5104 Ann Arbor Stage II Supradiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 10 124006 -NCIT:C8834 Ann Arbor Stage I Mixed Cellularity Classic Hodgkin Lymphoma 9 124007 -NCIT:C5075 Ann Arbor Stage I Subdiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 10 124008 -NCIT:C5076 Ann Arbor Stage I Supradiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 10 124009 -NCIT:C8835 Ann Arbor Stage IV Mixed Cellularity Classic Hodgkin Lymphoma 9 124010 -NCIT:C141225 Nodular Lymphocyte Predominant Hodgkin Lymphoma by Ann Arbor Stage 8 124011 -NCIT:C5070 Ann Arbor Stage II Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 124012 -NCIT:C5071 Ann Arbor Stage II Subdiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 10 124013 -NCIT:C5072 Ann Arbor Stage II Supradiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 10 124014 -NCIT:C5634 Ann Arbor Stage I Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 124015 -NCIT:C5073 Ann Arbor Stage I Subdiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 10 124016 -NCIT:C5074 Ann Arbor Stage I Supradiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 10 124017 -NCIT:C7261 Ann Arbor Stage IV Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 124018 -NCIT:C7262 Ann Arbor Stage III Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 124019 -NCIT:C141226 Adult Hodgkin Lymphoma by Ann Arbor Stage 8 124020 -NCIT:C9032 Ann Arbor Stage I Adult Hodgkin Lymphoma 9 124021 -NCIT:C9033 Ann Arbor Stage II Adult Hodgkin Lymphoma 9 124022 -NCIT:C9034 Ann Arbor Stage III Adult Hodgkin Lymphoma 9 124023 -NCIT:C9035 Ann Arbor Stage IV Adult Hodgkin Lymphoma 9 124024 -NCIT:C141227 Childhood Hodgkin Lymphoma by Ann Arbor Stage 8 124025 -NCIT:C8055 Ann Arbor Stage II Childhood Hodgkin Lymphoma 9 124026 -NCIT:C8056 Ann Arbor Stage I Childhood Hodgkin Lymphoma 9 124027 -NCIT:C8057 Ann Arbor Stage III Childhood Hodgkin Lymphoma 9 124028 -NCIT:C8058 Ann Arbor Stage IV Childhood Hodgkin Lymphoma 9 124029 -NCIT:C3584 Ann Arbor Stage III Hodgkin Lymphoma 8 124030 -NCIT:C3581 Ann Arbor Stage III Nodular Sclerosis Classic Hodgkin Lymphoma 9 124031 -NCIT:C3582 Ann Arbor Stage III Mixed Cellularity Classic Hodgkin Lymphoma 9 124032 -NCIT:C3583 Ann Arbor Stage III Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 124033 -NCIT:C3914 Ann Arbor Stage IIIA Hodgkin Lymphoma 9 124034 -NCIT:C4058 Ann Arbor Stage IIIB Hodgkin Lymphoma 9 124035 -NCIT:C7262 Ann Arbor Stage III Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 124036 -NCIT:C8057 Ann Arbor Stage III Childhood Hodgkin Lymphoma 9 124037 -NCIT:C9034 Ann Arbor Stage III Adult Hodgkin Lymphoma 9 124038 -NCIT:C8517 Ann Arbor Stage I Hodgkin Lymphoma 8 124039 -NCIT:C3911 Ann Arbor Stage IA Hodgkin Lymphoma 9 124040 -NCIT:C5011 Ann Arbor Stage I Supradiaphragmatic Hodgkin Lymphoma 9 124041 -NCIT:C5066 Ann Arbor Stage I Supradiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 10 124042 -NCIT:C5074 Ann Arbor Stage I Supradiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 10 124043 -NCIT:C5076 Ann Arbor Stage I Supradiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 10 124044 -NCIT:C5080 Ann Arbor Stage I Supradiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 10 124045 -NCIT:C5012 Ann Arbor Stage I Subdiaphragmatic Hodgkin Lymphoma 9 124046 -NCIT:C5065 Ann Arbor Stage I Subdiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 10 124047 -NCIT:C5073 Ann Arbor Stage I Subdiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 10 124048 -NCIT:C5075 Ann Arbor Stage I Subdiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 10 124049 -NCIT:C5079 Ann Arbor Stage I Subdiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 10 124050 -NCIT:C5064 Ann Arbor Stage I Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 124051 -NCIT:C5065 Ann Arbor Stage I Subdiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 10 124052 -NCIT:C5066 Ann Arbor Stage I Supradiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 10 124053 -NCIT:C5632 Ann Arbor Stage IB Hodgkin Lymphoma 9 124054 -NCIT:C5634 Ann Arbor Stage I Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 124055 -NCIT:C5073 Ann Arbor Stage I Subdiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 10 124056 -NCIT:C5074 Ann Arbor Stage I Supradiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 10 124057 -NCIT:C8056 Ann Arbor Stage I Childhood Hodgkin Lymphoma 9 124058 -NCIT:C8834 Ann Arbor Stage I Mixed Cellularity Classic Hodgkin Lymphoma 9 124059 -NCIT:C5075 Ann Arbor Stage I Subdiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 10 124060 -NCIT:C5076 Ann Arbor Stage I Supradiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 10 124061 -NCIT:C8839 Ann Arbor Stage I Nodular Sclerosis Classic Hodgkin Lymphoma 9 124062 -NCIT:C5079 Ann Arbor Stage I Subdiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 10 124063 -NCIT:C5080 Ann Arbor Stage I Supradiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 10 124064 -NCIT:C9032 Ann Arbor Stage I Adult Hodgkin Lymphoma 9 124065 -NCIT:C8518 Ann Arbor Stage II Hodgkin Lymphoma 8 124066 -NCIT:C3912 Ann Arbor Stage IIA Hodgkin Lymphoma 9 124067 -NCIT:C3913 Ann Arbor Stage IIB Hodgkin Lymphoma 9 124068 -NCIT:C5009 Ann Arbor Stage II Supradiaphragmatic Hodgkin Lymphoma 9 124069 -NCIT:C5069 Ann Arbor Stage II Supradiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 10 124070 -NCIT:C5072 Ann Arbor Stage II Supradiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 10 124071 -NCIT:C5083 Ann Arbor Stage II Supradiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 10 124072 -NCIT:C5104 Ann Arbor Stage II Supradiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 10 124073 -NCIT:C5010 Ann Arbor Stage II Subdiaphragmatic Hodgkin Lymphoma 9 124074 -NCIT:C5068 Ann Arbor Stage II Subdiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 10 124075 -NCIT:C5071 Ann Arbor Stage II Subdiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 10 124076 -NCIT:C5078 Ann Arbor Stage II Subdiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 10 124077 -NCIT:C5082 Ann Arbor Stage II Subdiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 10 124078 -NCIT:C5067 Ann Arbor Stage II Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 124079 -NCIT:C5068 Ann Arbor Stage II Subdiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 10 124080 -NCIT:C5069 Ann Arbor Stage II Supradiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 10 124081 -NCIT:C5070 Ann Arbor Stage II Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 124082 -NCIT:C5071 Ann Arbor Stage II Subdiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 10 124083 -NCIT:C5072 Ann Arbor Stage II Supradiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 10 124084 -NCIT:C5077 Ann Arbor Stage II Mixed Cellularity Classic Hodgkin Lymphoma 9 124085 -NCIT:C5078 Ann Arbor Stage II Subdiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 10 124086 -NCIT:C5104 Ann Arbor Stage II Supradiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 10 124087 -NCIT:C5081 Ann Arbor Stage II Nodular Sclerosis Classic Hodgkin Lymphoma 9 124088 -NCIT:C5082 Ann Arbor Stage II Subdiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 10 124089 -NCIT:C5083 Ann Arbor Stage II Supradiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 10 124090 -NCIT:C8055 Ann Arbor Stage II Childhood Hodgkin Lymphoma 9 124091 -NCIT:C9033 Ann Arbor Stage II Adult Hodgkin Lymphoma 9 124092 -NCIT:C8519 Ann Arbor Stage IV Hodgkin Lymphoma 8 124093 -NCIT:C4059 Ann Arbor Stage IVA Hodgkin Lymphoma 9 124094 -NCIT:C5633 Ann Arbor Stage IVB Hodgkin Lymphoma 9 124095 -NCIT:C7261 Ann Arbor Stage IV Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 124096 -NCIT:C8058 Ann Arbor Stage IV Childhood Hodgkin Lymphoma 9 124097 -NCIT:C8651 Ann Arbor Stage IV Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 124098 -NCIT:C8835 Ann Arbor Stage IV Mixed Cellularity Classic Hodgkin Lymphoma 9 124099 -NCIT:C8840 Ann Arbor Stage IV Nodular Sclerosis Classic Hodgkin Lymphoma 9 124100 -NCIT:C9035 Ann Arbor Stage IV Adult Hodgkin Lymphoma 9 124101 -NCIT:C8318 Ann Arbor Stage I Lymphoma 7 124102 -NCIT:C8517 Ann Arbor Stage I Hodgkin Lymphoma 8 124103 -NCIT:C3911 Ann Arbor Stage IA Hodgkin Lymphoma 9 124104 -NCIT:C5011 Ann Arbor Stage I Supradiaphragmatic Hodgkin Lymphoma 9 124105 -NCIT:C5066 Ann Arbor Stage I Supradiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 10 124106 -NCIT:C5074 Ann Arbor Stage I Supradiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 10 124107 -NCIT:C5076 Ann Arbor Stage I Supradiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 10 124108 -NCIT:C5080 Ann Arbor Stage I Supradiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 10 124109 -NCIT:C5012 Ann Arbor Stage I Subdiaphragmatic Hodgkin Lymphoma 9 124110 -NCIT:C5065 Ann Arbor Stage I Subdiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 10 124111 -NCIT:C5073 Ann Arbor Stage I Subdiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 10 124112 -NCIT:C5075 Ann Arbor Stage I Subdiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 10 124113 -NCIT:C5079 Ann Arbor Stage I Subdiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 10 124114 -NCIT:C5064 Ann Arbor Stage I Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 124115 -NCIT:C5065 Ann Arbor Stage I Subdiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 10 124116 -NCIT:C5066 Ann Arbor Stage I Supradiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 10 124117 -NCIT:C5632 Ann Arbor Stage IB Hodgkin Lymphoma 9 124118 -NCIT:C5634 Ann Arbor Stage I Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 124119 -NCIT:C5073 Ann Arbor Stage I Subdiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 10 124120 -NCIT:C5074 Ann Arbor Stage I Supradiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 10 124121 -NCIT:C8056 Ann Arbor Stage I Childhood Hodgkin Lymphoma 9 124122 -NCIT:C8834 Ann Arbor Stage I Mixed Cellularity Classic Hodgkin Lymphoma 9 124123 -NCIT:C5075 Ann Arbor Stage I Subdiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 10 124124 -NCIT:C5076 Ann Arbor Stage I Supradiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 10 124125 -NCIT:C8839 Ann Arbor Stage I Nodular Sclerosis Classic Hodgkin Lymphoma 9 124126 -NCIT:C5079 Ann Arbor Stage I Subdiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 10 124127 -NCIT:C5080 Ann Arbor Stage I Supradiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 10 124128 -NCIT:C9032 Ann Arbor Stage I Adult Hodgkin Lymphoma 9 124129 -NCIT:C8520 Ann Arbor Stage I Non-Hodgkin Lymphoma 8 124130 -NCIT:C27308 Ann Arbor Stage I B-Cell Non-Hodgkin Lymphoma 9 124131 -NCIT:C68678 Ann Arbor Stage I Marginal Zone Lymphoma 10 124132 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 124133 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 11 124134 -NCIT:C8070 Ann Arbor Stage I Small Lymphocytic Lymphoma 10 124135 -NCIT:C8465 Ann Arbor Stage I Mantle Cell Lymphoma 10 124136 -NCIT:C8653 Ann Arbor Stage I Lymphoplasmacytic Lymphoma 10 124137 -NCIT:C8848 Ann Arbor Stage I Burkitt Lymphoma 10 124138 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 11 124139 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 11 124140 -NCIT:C8854 Ann Arbor Stage I Diffuse Large B-Cell Lymphoma 10 124141 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 11 124142 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 124143 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 11 124144 -NCIT:C8859 Ann Arbor Stage I Follicular Lymphoma 10 124145 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 11 124146 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 11 124147 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 11 124148 -NCIT:C8871 Ann Arbor Stage I B Lymphoblastic Lymphoma 10 124149 -NCIT:C8102 Ann Arbor Stage I Adult Non-Hodgkin Lymphoma 9 124150 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 10 124151 -NCIT:C8464 Ann Arbor Stage I Indolent Adult Non-Hodgkin Lymphoma 10 124152 -NCIT:C9252 Ann Arbor Stage I Aggressive Adult Non-Hodgkin Lymphoma 10 124153 -NCIT:C8079 Ann Arbor Stage I Adult Lymphoblastic Lymphoma 11 124154 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 11 124155 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 11 124156 -NCIT:C8665 Ann Arbor Stage I T-Cell Non-Hodgkin Lymphoma 9 124157 -NCIT:C8690 Ann Arbor Stage I Mature T- and NK-Cell Lymphoma 10 124158 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 11 124159 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 11 124160 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 124161 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 11 124162 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 11 124163 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 11 124164 -NCIT:C94791 Ann Arbor Stage I Childhood Non-Hodgkin Lymphoma 9 124165 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 124166 -NCIT:C9056 Ann Arbor Stage I Childhood Lymphoblastic Lymphoma 10 124167 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 10 124168 -NCIT:C94797 Ann Arbor Stage I AIDS-Related Lymphoma 8 124169 -NCIT:C8319 Ann Arbor Stage II Lymphoma 7 124170 -NCIT:C8518 Ann Arbor Stage II Hodgkin Lymphoma 8 124171 -NCIT:C3912 Ann Arbor Stage IIA Hodgkin Lymphoma 9 124172 -NCIT:C3913 Ann Arbor Stage IIB Hodgkin Lymphoma 9 124173 -NCIT:C5009 Ann Arbor Stage II Supradiaphragmatic Hodgkin Lymphoma 9 124174 -NCIT:C5069 Ann Arbor Stage II Supradiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 10 124175 -NCIT:C5072 Ann Arbor Stage II Supradiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 10 124176 -NCIT:C5083 Ann Arbor Stage II Supradiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 10 124177 -NCIT:C5104 Ann Arbor Stage II Supradiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 10 124178 -NCIT:C5010 Ann Arbor Stage II Subdiaphragmatic Hodgkin Lymphoma 9 124179 -NCIT:C5068 Ann Arbor Stage II Subdiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 10 124180 -NCIT:C5071 Ann Arbor Stage II Subdiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 10 124181 -NCIT:C5078 Ann Arbor Stage II Subdiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 10 124182 -NCIT:C5082 Ann Arbor Stage II Subdiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 10 124183 -NCIT:C5067 Ann Arbor Stage II Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 124184 -NCIT:C5068 Ann Arbor Stage II Subdiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 10 124185 -NCIT:C5069 Ann Arbor Stage II Supradiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 10 124186 -NCIT:C5070 Ann Arbor Stage II Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 124187 -NCIT:C5071 Ann Arbor Stage II Subdiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 10 124188 -NCIT:C5072 Ann Arbor Stage II Supradiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 10 124189 -NCIT:C5077 Ann Arbor Stage II Mixed Cellularity Classic Hodgkin Lymphoma 9 124190 -NCIT:C5078 Ann Arbor Stage II Subdiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 10 124191 -NCIT:C5104 Ann Arbor Stage II Supradiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 10 124192 -NCIT:C5081 Ann Arbor Stage II Nodular Sclerosis Classic Hodgkin Lymphoma 9 124193 -NCIT:C5082 Ann Arbor Stage II Subdiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 10 124194 -NCIT:C5083 Ann Arbor Stage II Supradiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 10 124195 -NCIT:C8055 Ann Arbor Stage II Childhood Hodgkin Lymphoma 9 124196 -NCIT:C9033 Ann Arbor Stage II Adult Hodgkin Lymphoma 9 124197 -NCIT:C8521 Ann Arbor Stage II Non-Hodgkin Lymphoma 8 124198 -NCIT:C171159 Ann Arbor Stage IIX (Bulky) Non-Hodgkin Lymphoma 9 124199 -NCIT:C171158 Ann Arbor Stage IIX (Bulky) Diffuse Large B-Cell Lymphoma 10 124200 -NCIT:C8103 Ann Arbor Stage II Adult Non-Hodgkin Lymphoma 9 124201 -NCIT:C68686 Ann Arbor Stage II Aggressive Adult Non-Hodgkin Lymphoma 10 124202 -NCIT:C8125 Ann Arbor Stage II Adult Lymphoblastic Lymphoma 11 124203 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 12 124204 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 12 124205 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 11 124206 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 12 124207 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 12 124208 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 11 124209 -NCIT:C8472 Ann Arbor Stage II Contiguous Adult Aggressive Non-Hodgkin Lymphoma 11 124210 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 12 124211 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 12 124212 -NCIT:C8479 Ann Arbor Stage II Non-Contiguous Aggressive Adult Non-Hodgkin Lymphoma 11 124213 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 12 124214 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 12 124215 -NCIT:C68688 Ann Arbor Stage II Indolent Adult Non-Hodgkin Lymphoma 10 124216 -NCIT:C8467 Ann Arbor Stage II Contiguous Adult Indolent Non-Hodgkin Lymphoma 11 124217 -NCIT:C8478 Ann Arbor Stage II Non-Contiguous Adult Indolent Non-Hodgkin Lymphoma 11 124218 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 10 124219 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 11 124220 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 11 124221 -NCIT:C8466 Ann Arbor Stage II Contiguous Adult Non-Hodgkin Lymphoma 10 124222 -NCIT:C8467 Ann Arbor Stage II Contiguous Adult Indolent Non-Hodgkin Lymphoma 11 124223 -NCIT:C8472 Ann Arbor Stage II Contiguous Adult Aggressive Non-Hodgkin Lymphoma 11 124224 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 12 124225 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 12 124226 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 11 124227 -NCIT:C8477 Ann Arbor Stage II Non-Contiguous Adult Non-Hodgkin Lymphoma 10 124228 -NCIT:C8478 Ann Arbor Stage II Non-Contiguous Adult Indolent Non-Hodgkin Lymphoma 11 124229 -NCIT:C8479 Ann Arbor Stage II Non-Contiguous Aggressive Adult Non-Hodgkin Lymphoma 11 124230 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 12 124231 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 12 124232 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 11 124233 -NCIT:C8666 Ann Arbor Stage II T-Cell Non-Hodgkin Lymphoma 9 124234 -NCIT:C8691 Ann Arbor Stage II Mature T- and NK-Cell Lymphoma 10 124235 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 11 124236 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 11 124237 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 124238 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 11 124239 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 11 124240 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 11 124241 -NCIT:C8843 Ann Arbor Stage II B-Cell Non-Hodgkin Lymphoma 9 124242 -NCIT:C68679 Ann Arbor Stage II Marginal Zone Lymphoma 10 124243 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 124244 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 11 124245 -NCIT:C8115 Ann Arbor Stage II Small Lymphocytic Lymphoma 10 124246 -NCIT:C8654 Ann Arbor Stage II Lymphoplasmacytic Lymphoma 10 124247 -NCIT:C8849 Ann Arbor Stage II Burkitt Lymphoma 10 124248 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 11 124249 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 12 124250 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 12 124251 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 11 124252 -NCIT:C8855 Ann Arbor Stage II Diffuse Large B-Cell Lymphoma 10 124253 -NCIT:C171158 Ann Arbor Stage IIX (Bulky) Diffuse Large B-Cell Lymphoma 11 124254 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 11 124255 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 12 124256 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 12 124257 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 124258 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 11 124259 -NCIT:C8860 Ann Arbor Stage II Follicular Lymphoma 10 124260 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 11 124261 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 12 124262 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 12 124263 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 11 124264 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 12 124265 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 12 124266 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 11 124267 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 12 124268 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 12 124269 -NCIT:C8937 Ann Arbor Stage II B Lymphoblastic Lymphoma 10 124270 -NCIT:C9202 Ann Arbor Stage II Mantle Cell Lymphoma 10 124271 -NCIT:C8473 Ann Arbor Stage II Contiguous Mantle Cell Lymphoma 11 124272 -NCIT:C9198 Ann Arbor Stage II Non-Contiguous Mantle Cell Lymphoma 11 124273 -NCIT:C94792 Ann Arbor Stage II Childhood Non-Hodgkin Lymphoma 9 124274 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 124275 -NCIT:C9057 Ann Arbor Stage II Childhood Lymphoblastic Lymphoma 10 124276 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 10 124277 -NCIT:C94798 Ann Arbor Stage II AIDS-Related Lymphoma 8 124278 -NCIT:C8320 Ann Arbor Stage III Lymphoma 7 124279 -NCIT:C3584 Ann Arbor Stage III Hodgkin Lymphoma 8 124280 -NCIT:C3581 Ann Arbor Stage III Nodular Sclerosis Classic Hodgkin Lymphoma 9 124281 -NCIT:C3582 Ann Arbor Stage III Mixed Cellularity Classic Hodgkin Lymphoma 9 124282 -NCIT:C3583 Ann Arbor Stage III Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 124283 -NCIT:C3914 Ann Arbor Stage IIIA Hodgkin Lymphoma 9 124284 -NCIT:C4058 Ann Arbor Stage IIIB Hodgkin Lymphoma 9 124285 -NCIT:C7262 Ann Arbor Stage III Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 124286 -NCIT:C8057 Ann Arbor Stage III Childhood Hodgkin Lymphoma 9 124287 -NCIT:C9034 Ann Arbor Stage III Adult Hodgkin Lymphoma 9 124288 -NCIT:C8522 Ann Arbor Stage III Non-Hodgkin Lymphoma 8 124289 -NCIT:C8104 Ann Arbor Stage III Adult Non-Hodgkin Lymphoma 9 124290 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 10 124291 -NCIT:C8482 Ann Arbor Stage III Indolent Adult Non-Hodgkin Lymphoma 10 124292 -NCIT:C8484 Ann Arbor Stage III Aggressive Adult Non-Hodgkin Lymphoma 10 124293 -NCIT:C8138 Ann Arbor Stage III Adult Lymphoblastic Lymphoma 11 124294 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 11 124295 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 11 124296 -NCIT:C8667 Ann Arbor Stage III T-Cell Non-Hodgkin Lymphoma 9 124297 -NCIT:C8692 Ann Arbor Stage III Mature T- and NK-Cell Lymphoma 10 124298 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 11 124299 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 11 124300 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 124301 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 11 124302 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 11 124303 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 11 124304 -NCIT:C8844 Ann Arbor Stage III B-Cell Non-Hodgkin Lymphoma 9 124305 -NCIT:C68682 Ann Arbor Stage III Marginal Zone Lymphoma 10 124306 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 124307 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 11 124308 -NCIT:C8128 Ann Arbor Stage III Small Lymphocytic Lymphoma 10 124309 -NCIT:C8483 Ann Arbor Stage III Mantle Cell Lymphoma 10 124310 -NCIT:C8655 Ann Arbor Stage III Lymphoplasmacytic Lymphoma 10 124311 -NCIT:C8850 Ann Arbor Stage III Burkitt Lymphoma 10 124312 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 11 124313 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 11 124314 -NCIT:C8856 Ann Arbor Stage III Diffuse Large B-Cell Lymphoma 10 124315 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 11 124316 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 124317 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 11 124318 -NCIT:C8861 Ann Arbor Stage III Follicular Lymphoma 10 124319 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 11 124320 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 11 124321 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 11 124322 -NCIT:C8872 Ann Arbor Stage III B Lymphoblastic Lymphoma 10 124323 -NCIT:C94793 Ann Arbor Stage III Childhood Non-Hodgkin Lymphoma 9 124324 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 124325 -NCIT:C9058 Ann Arbor Stage III Childhood Lymphoblastic Lymphoma 10 124326 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 10 124327 -NCIT:C94799 Ann Arbor Stage III AIDS-Related Lymphoma 8 124328 -NCIT:C8321 Ann Arbor Stage IV Lymphoma 7 124329 -NCIT:C8519 Ann Arbor Stage IV Hodgkin Lymphoma 8 124330 -NCIT:C4059 Ann Arbor Stage IVA Hodgkin Lymphoma 9 124331 -NCIT:C5633 Ann Arbor Stage IVB Hodgkin Lymphoma 9 124332 -NCIT:C7261 Ann Arbor Stage IV Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 124333 -NCIT:C8058 Ann Arbor Stage IV Childhood Hodgkin Lymphoma 9 124334 -NCIT:C8651 Ann Arbor Stage IV Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 124335 -NCIT:C8835 Ann Arbor Stage IV Mixed Cellularity Classic Hodgkin Lymphoma 9 124336 -NCIT:C8840 Ann Arbor Stage IV Nodular Sclerosis Classic Hodgkin Lymphoma 9 124337 -NCIT:C9035 Ann Arbor Stage IV Adult Hodgkin Lymphoma 9 124338 -NCIT:C8523 Ann Arbor Stage IV Non-Hodgkin Lymphoma 8 124339 -NCIT:C8105 Ann Arbor Stage IV Adult Non-Hodgkin Lymphoma 9 124340 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 10 124341 -NCIT:C8485 Ann Arbor Stage IV Indolent Adult Non-Hodgkin Lymphoma 10 124342 -NCIT:C8487 Ann Arbor Stage IV Aggressive Adult Non-Hodgkin Lymphoma 10 124343 -NCIT:C8151 Ann Arbor Stage IV Adult Lymphoblastic Lymphoma 11 124344 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 11 124345 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 11 124346 -NCIT:C8668 Ann Arbor Stage IV T-Cell Non-Hodgkin Lymphoma 9 124347 -NCIT:C8693 Ann Arbor Stage IV Mature T- and NK-Cell Lymphoma 10 124348 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 11 124349 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 11 124350 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 12 124351 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 11 124352 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 11 124353 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 11 124354 -NCIT:C8845 Ann Arbor Stage IV B-Cell Non-Hodgkin Lymphoma 9 124355 -NCIT:C5006 Ann Arbor Stage IV Follicular Lymphoma 10 124356 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 11 124357 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 11 124358 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 11 124359 -NCIT:C5084 Ann Arbor Stage IV Burkitt Lymphoma 10 124360 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 11 124361 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 11 124362 -NCIT:C68683 Ann Arbor Stage IV Marginal Zone Lymphoma 10 124363 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 124364 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 11 124365 -NCIT:C8141 Ann Arbor Stage IV Small Lymphocytic Lymphoma 10 124366 -NCIT:C8486 Ann Arbor Stage IV Mantle Cell Lymphoma 10 124367 -NCIT:C8656 Ann Arbor Stage IV Lymphoplasmacytic Lymphoma 10 124368 -NCIT:C8857 Ann Arbor Stage IV Diffuse Large B-Cell Lymphoma 10 124369 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 11 124370 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 124371 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 11 124372 -NCIT:C8873 Ann Arbor Stage IV B Lymphoblastic Lymphoma 10 124373 -NCIT:C94794 Ann Arbor Stage IV Childhood Non-Hodgkin Lymphoma 9 124374 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 124375 -NCIT:C9059 Ann Arbor Stage IV Childhood Lymphoblastic Lymphoma 10 124376 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 10 124377 -NCIT:C94800 Ann Arbor Stage IV AIDS-Related Lymphoma 8 124378 -NCIT:C141205 Lymphoma by AJCC v8 Stage 6 124379 -NCIT:C141148 Lugano Classification Adult Lymphoma by AJCC v8 Stage 7 124380 -NCIT:C141149 Lugano Classification Limited Stage Adult Lymphoma AJCC v8 8 124381 -NCIT:C141150 Lugano Classification Stage I Adult Lymphoma AJCC v8 9 124382 -NCIT:C141160 Lugano Classification Stage I Adult Non-Hodgkin Lymphoma AJCC v8 10 124383 -NCIT:C141191 Lugano Classification Stage I Adult Hodgkin Lymphoma AJCC v8 10 124384 -NCIT:C141151 Lugano Classification Stage IE Adult Lymphoma AJCC v8 9 124385 -NCIT:C141161 Lugano Classification Stage IE Adult Non-Hodgkin Lymphoma AJCC v8 10 124386 -NCIT:C141192 Lugano Classification Stage IE Adult Hodgkin Lymphoma AJCC v8 10 124387 -NCIT:C141152 Lugano Classification Stage II Adult Lymphoma AJCC v8 9 124388 -NCIT:C141154 Lugano Classification Stage II Bulky Adult Lymphoma AJCC v8 10 124389 -NCIT:C141164 Lugano Classification Stage II Bulky Adult Non-Hodgkin Lymphoma AJCC v8 11 124390 -NCIT:C141195 Lugano Classification Stage II Bulky Adult Hodgkin Lymphoma AJCC v8 11 124391 -NCIT:C141162 Lugano Classification Stage II Adult Non-Hodgkin Lymphoma AJCC v8 10 124392 -NCIT:C141164 Lugano Classification Stage II Bulky Adult Non-Hodgkin Lymphoma AJCC v8 11 124393 -NCIT:C141193 Lugano Classification Stage II Adult Hodgkin Lymphoma AJCC v8 10 124394 -NCIT:C141195 Lugano Classification Stage II Bulky Adult Hodgkin Lymphoma AJCC v8 11 124395 -NCIT:C141153 Lugano Classification Stage IIE Adult Lymphoma AJCC v8 9 124396 -NCIT:C141163 Lugano Classification Stage IIE Adult Non-Hodgkin Lymphoma AJCC v8 10 124397 -NCIT:C141194 Lugano Classification Stage IIE Adult Hodgkin Lymphoma AJCC v8 10 124398 -NCIT:C141159 Lugano Classification Limited Stage Adult Non-Hodgkin Lymphoma AJCC v8 9 124399 -NCIT:C141160 Lugano Classification Stage I Adult Non-Hodgkin Lymphoma AJCC v8 10 124400 -NCIT:C141161 Lugano Classification Stage IE Adult Non-Hodgkin Lymphoma AJCC v8 10 124401 -NCIT:C141162 Lugano Classification Stage II Adult Non-Hodgkin Lymphoma AJCC v8 10 124402 -NCIT:C141164 Lugano Classification Stage II Bulky Adult Non-Hodgkin Lymphoma AJCC v8 11 124403 -NCIT:C141163 Lugano Classification Stage IIE Adult Non-Hodgkin Lymphoma AJCC v8 10 124404 -NCIT:C141190 Lugano Classification Limited Stage Adult Hodgkin Lymphoma AJCC v8 9 124405 -NCIT:C141191 Lugano Classification Stage I Adult Hodgkin Lymphoma AJCC v8 10 124406 -NCIT:C141192 Lugano Classification Stage IE Adult Hodgkin Lymphoma AJCC v8 10 124407 -NCIT:C141193 Lugano Classification Stage II Adult Hodgkin Lymphoma AJCC v8 10 124408 -NCIT:C141195 Lugano Classification Stage II Bulky Adult Hodgkin Lymphoma AJCC v8 11 124409 -NCIT:C141194 Lugano Classification Stage IIE Adult Hodgkin Lymphoma AJCC v8 10 124410 -NCIT:C141155 Lugano Classification Advanced Stage Adult Lymphoma AJCC v8 8 124411 -NCIT:C141156 Lugano Classification Stage III Adult Lymphoma AJCC v8 9 124412 -NCIT:C141166 Lugano Classification Stage III Adult Non-Hodgkin Lymphoma AJCC v8 10 124413 -NCIT:C141197 Lugano Classification Stage III Adult Hodgkin Lymphoma AJCC v8 10 124414 -NCIT:C141157 Lugano Classification Stage IV Adult Lymphoma AJCC v8 9 124415 -NCIT:C141167 Lugano Classification Stage IV Adult Non-Hodgkin Lymphoma AJCC v8 10 124416 -NCIT:C141198 Lugano Classification Stage IV Adult Hodgkin Lymphoma AJCC v8 10 124417 -NCIT:C141165 Lugano Classification Advanced Stage Adult Non-Hodgkin Lymphoma AJCC v8 9 124418 -NCIT:C141166 Lugano Classification Stage III Adult Non-Hodgkin Lymphoma AJCC v8 10 124419 -NCIT:C141167 Lugano Classification Stage IV Adult Non-Hodgkin Lymphoma AJCC v8 10 124420 -NCIT:C141196 Lugano Classification Advanced Stage Adult Hodgkin Lymphoma AJCC v8 9 124421 -NCIT:C141197 Lugano Classification Stage III Adult Hodgkin Lymphoma AJCC v8 10 124422 -NCIT:C141198 Lugano Classification Stage IV Adult Hodgkin Lymphoma AJCC v8 10 124423 -NCIT:C141158 Lugano Classification Adult Non-Hodgkin Lymphoma by AJCC v8 Stage 8 124424 -NCIT:C141159 Lugano Classification Limited Stage Adult Non-Hodgkin Lymphoma AJCC v8 9 124425 -NCIT:C141160 Lugano Classification Stage I Adult Non-Hodgkin Lymphoma AJCC v8 10 124426 -NCIT:C141161 Lugano Classification Stage IE Adult Non-Hodgkin Lymphoma AJCC v8 10 124427 -NCIT:C141162 Lugano Classification Stage II Adult Non-Hodgkin Lymphoma AJCC v8 10 124428 -NCIT:C141164 Lugano Classification Stage II Bulky Adult Non-Hodgkin Lymphoma AJCC v8 11 124429 -NCIT:C141163 Lugano Classification Stage IIE Adult Non-Hodgkin Lymphoma AJCC v8 10 124430 -NCIT:C141165 Lugano Classification Advanced Stage Adult Non-Hodgkin Lymphoma AJCC v8 9 124431 -NCIT:C141166 Lugano Classification Stage III Adult Non-Hodgkin Lymphoma AJCC v8 10 124432 -NCIT:C141167 Lugano Classification Stage IV Adult Non-Hodgkin Lymphoma AJCC v8 10 124433 -NCIT:C141189 Lugano Classification Adult Hodgkin Lymphoma by AJCC v8 Stage 8 124434 -NCIT:C141190 Lugano Classification Limited Stage Adult Hodgkin Lymphoma AJCC v8 9 124435 -NCIT:C141191 Lugano Classification Stage I Adult Hodgkin Lymphoma AJCC v8 10 124436 -NCIT:C141192 Lugano Classification Stage IE Adult Hodgkin Lymphoma AJCC v8 10 124437 -NCIT:C141193 Lugano Classification Stage II Adult Hodgkin Lymphoma AJCC v8 10 124438 -NCIT:C141195 Lugano Classification Stage II Bulky Adult Hodgkin Lymphoma AJCC v8 11 124439 -NCIT:C141194 Lugano Classification Stage IIE Adult Hodgkin Lymphoma AJCC v8 10 124440 -NCIT:C141196 Lugano Classification Advanced Stage Adult Hodgkin Lymphoma AJCC v8 9 124441 -NCIT:C141197 Lugano Classification Stage III Adult Hodgkin Lymphoma AJCC v8 10 124442 -NCIT:C141198 Lugano Classification Stage IV Adult Hodgkin Lymphoma AJCC v8 10 124443 -NCIT:C141168 Lugano Classification Hodgkin Lymphoma by AJCC v8 Stage 7 124444 -NCIT:C141169 Lugano Classification Limited Stage Hodgkin Lymphoma AJCC v8 8 124445 -NCIT:C141170 Lugano Classification Stage I Hodgkin Lymphoma AJCC v8 9 124446 -NCIT:C141180 Lugano Classification Stage I Childhood Hodgkin Lymphoma AJCC v8 10 124447 -NCIT:C141191 Lugano Classification Stage I Adult Hodgkin Lymphoma AJCC v8 10 124448 -NCIT:C141171 Lugano Classification Stage IE Hodgkin Lymphoma AJCC v8 9 124449 -NCIT:C141181 Lugano Classification Stage IE Childhood Hodgkin Lymphoma AJCC v8 10 124450 -NCIT:C141192 Lugano Classification Stage IE Adult Hodgkin Lymphoma AJCC v8 10 124451 -NCIT:C141172 Lugano Classification Stage II Hodgkin Lymphoma AJCC v8 9 124452 -NCIT:C141174 Lugano Classification Stage II Bulky Hodgkin Lymphoma AJCC v8 10 124453 -NCIT:C141184 Lugano Classification Stage II Bulky Childhood Hodgkin Lymphoma AJCC v8 11 124454 -NCIT:C141195 Lugano Classification Stage II Bulky Adult Hodgkin Lymphoma AJCC v8 11 124455 -NCIT:C141182 Lugano Classification Stage II Childhood Hodgkin Lymphoma AJCC v8 10 124456 -NCIT:C141184 Lugano Classification Stage II Bulky Childhood Hodgkin Lymphoma AJCC v8 11 124457 -NCIT:C141193 Lugano Classification Stage II Adult Hodgkin Lymphoma AJCC v8 10 124458 -NCIT:C141195 Lugano Classification Stage II Bulky Adult Hodgkin Lymphoma AJCC v8 11 124459 -NCIT:C141173 Lugano Classification Stage IIE Hodgkin Lymphoma AJCC v8 9 124460 -NCIT:C141183 Lugano Classification Stage IIE Childhood Hodgkin Lymphoma AJCC v8 10 124461 -NCIT:C141194 Lugano Classification Stage IIE Adult Hodgkin Lymphoma AJCC v8 10 124462 -NCIT:C141179 Lugano Classification Limited Stage Childhood Hodgkin Lymphoma AJCC v8 9 124463 -NCIT:C141180 Lugano Classification Stage I Childhood Hodgkin Lymphoma AJCC v8 10 124464 -NCIT:C141181 Lugano Classification Stage IE Childhood Hodgkin Lymphoma AJCC v8 10 124465 -NCIT:C141182 Lugano Classification Stage II Childhood Hodgkin Lymphoma AJCC v8 10 124466 -NCIT:C141184 Lugano Classification Stage II Bulky Childhood Hodgkin Lymphoma AJCC v8 11 124467 -NCIT:C141183 Lugano Classification Stage IIE Childhood Hodgkin Lymphoma AJCC v8 10 124468 -NCIT:C141190 Lugano Classification Limited Stage Adult Hodgkin Lymphoma AJCC v8 9 124469 -NCIT:C141191 Lugano Classification Stage I Adult Hodgkin Lymphoma AJCC v8 10 124470 -NCIT:C141192 Lugano Classification Stage IE Adult Hodgkin Lymphoma AJCC v8 10 124471 -NCIT:C141193 Lugano Classification Stage II Adult Hodgkin Lymphoma AJCC v8 10 124472 -NCIT:C141195 Lugano Classification Stage II Bulky Adult Hodgkin Lymphoma AJCC v8 11 124473 -NCIT:C141194 Lugano Classification Stage IIE Adult Hodgkin Lymphoma AJCC v8 10 124474 -NCIT:C141175 Lugano Classification Advanced Stage Hodgkin Lymphoma AJCC v8 8 124475 -NCIT:C141176 Lugano Classification Stage III Hodgkin Lymphoma AJCC v8 9 124476 -NCIT:C141186 Lugano Classification Stage III Childhood Hodgkin Lymphoma AJCC v8 10 124477 -NCIT:C141197 Lugano Classification Stage III Adult Hodgkin Lymphoma AJCC v8 10 124478 -NCIT:C141177 Lugano Classification Stage IV Hodgkin Lymphoma AJCC v8 9 124479 -NCIT:C141187 Lugano Classification Stage IV Childhood Hodgkin Lymphoma AJCC v8 10 124480 -NCIT:C141198 Lugano Classification Stage IV Adult Hodgkin Lymphoma AJCC v8 10 124481 -NCIT:C141185 Lugano Classification Advanced Stage Childhood Hodgkin Lymphoma AJCC v8 9 124482 -NCIT:C141186 Lugano Classification Stage III Childhood Hodgkin Lymphoma AJCC v8 10 124483 -NCIT:C141187 Lugano Classification Stage IV Childhood Hodgkin Lymphoma AJCC v8 10 124484 -NCIT:C141196 Lugano Classification Advanced Stage Adult Hodgkin Lymphoma AJCC v8 9 124485 -NCIT:C141197 Lugano Classification Stage III Adult Hodgkin Lymphoma AJCC v8 10 124486 -NCIT:C141198 Lugano Classification Stage IV Adult Hodgkin Lymphoma AJCC v8 10 124487 -NCIT:C141178 Lugano Classification Childhood Hodgkin Lymphoma by AJCC v8 Stage 8 124488 -NCIT:C141179 Lugano Classification Limited Stage Childhood Hodgkin Lymphoma AJCC v8 9 124489 -NCIT:C141180 Lugano Classification Stage I Childhood Hodgkin Lymphoma AJCC v8 10 124490 -NCIT:C141181 Lugano Classification Stage IE Childhood Hodgkin Lymphoma AJCC v8 10 124491 -NCIT:C141182 Lugano Classification Stage II Childhood Hodgkin Lymphoma AJCC v8 10 124492 -NCIT:C141184 Lugano Classification Stage II Bulky Childhood Hodgkin Lymphoma AJCC v8 11 124493 -NCIT:C141183 Lugano Classification Stage IIE Childhood Hodgkin Lymphoma AJCC v8 10 124494 -NCIT:C141185 Lugano Classification Advanced Stage Childhood Hodgkin Lymphoma AJCC v8 9 124495 -NCIT:C141186 Lugano Classification Stage III Childhood Hodgkin Lymphoma AJCC v8 10 124496 -NCIT:C141187 Lugano Classification Stage IV Childhood Hodgkin Lymphoma AJCC v8 10 124497 -NCIT:C141189 Lugano Classification Adult Hodgkin Lymphoma by AJCC v8 Stage 8 124498 -NCIT:C141190 Lugano Classification Limited Stage Adult Hodgkin Lymphoma AJCC v8 9 124499 -NCIT:C141191 Lugano Classification Stage I Adult Hodgkin Lymphoma AJCC v8 10 124500 -NCIT:C141192 Lugano Classification Stage IE Adult Hodgkin Lymphoma AJCC v8 10 124501 -NCIT:C141193 Lugano Classification Stage II Adult Hodgkin Lymphoma AJCC v8 10 124502 -NCIT:C141195 Lugano Classification Stage II Bulky Adult Hodgkin Lymphoma AJCC v8 11 124503 -NCIT:C141194 Lugano Classification Stage IIE Adult Hodgkin Lymphoma AJCC v8 10 124504 -NCIT:C141196 Lugano Classification Advanced Stage Adult Hodgkin Lymphoma AJCC v8 9 124505 -NCIT:C141197 Lugano Classification Stage III Adult Hodgkin Lymphoma AJCC v8 10 124506 -NCIT:C141198 Lugano Classification Stage IV Adult Hodgkin Lymphoma AJCC v8 10 124507 -NCIT:C141202 Childhood Lymphoma by AJCC v8 Stage 7 124508 -NCIT:C141178 Lugano Classification Childhood Hodgkin Lymphoma by AJCC v8 Stage 8 124509 -NCIT:C141179 Lugano Classification Limited Stage Childhood Hodgkin Lymphoma AJCC v8 9 124510 -NCIT:C141180 Lugano Classification Stage I Childhood Hodgkin Lymphoma AJCC v8 10 124511 -NCIT:C141181 Lugano Classification Stage IE Childhood Hodgkin Lymphoma AJCC v8 10 124512 -NCIT:C141182 Lugano Classification Stage II Childhood Hodgkin Lymphoma AJCC v8 10 124513 -NCIT:C141184 Lugano Classification Stage II Bulky Childhood Hodgkin Lymphoma AJCC v8 11 124514 -NCIT:C141183 Lugano Classification Stage IIE Childhood Hodgkin Lymphoma AJCC v8 10 124515 -NCIT:C141185 Lugano Classification Advanced Stage Childhood Hodgkin Lymphoma AJCC v8 9 124516 -NCIT:C141186 Lugano Classification Stage III Childhood Hodgkin Lymphoma AJCC v8 10 124517 -NCIT:C141187 Lugano Classification Stage IV Childhood Hodgkin Lymphoma AJCC v8 10 124518 -NCIT:C141217 St. Jude Childhood Non-Hodgkin Lymphoma by AJCC v8 Stage 8 124519 -NCIT:C141218 St. Jude Stage I Childhood Non-Hodgkin Lymphoma AJCC v8 9 124520 -NCIT:C141219 St. Jude Stage II Childhood Non-Hodgkin Lymphoma AJCC v8 9 124521 -NCIT:C141220 St. Jude Stage III Childhood Non-Hodgkin Lymphoma AJCC v8 9 124522 -NCIT:C141221 St. Jude Stage IV Childhood Non-Hodgkin Lymphoma AJCC v8 9 124523 -NCIT:C141346 Mycosis Fungoides and Sezary Syndrome by AJCC v8 Stage 7 124524 -NCIT:C141347 Stage I Mycosis Fungoides and Sezary Syndrome AJCC v8 8 124525 -NCIT:C141348 Stage IA Mycosis Fungoides and Sezary Syndrome AJCC v8 9 124526 -NCIT:C141349 Stage IB Mycosis Fungoides and Sezary Syndrome AJCC v8 9 124527 -NCIT:C141350 Stage II Mycosis Fungoides and Sezary Syndrome AJCC v8 8 124528 -NCIT:C141351 Stage IIA Mycosis Fungoides and Sezary Syndrome AJCC v8 9 124529 -NCIT:C141352 Stage IIB Mycosis Fungoides and Sezary Syndrome AJCC v8 9 124530 -NCIT:C141353 Stage III Mycosis Fungoides and Sezary Syndrome AJCC v8 8 124531 -NCIT:C141354 Stage IIIA Mycosis Fungoides and Sezary Syndrome AJCC v8 9 124532 -NCIT:C141355 Stage IIIB Mycosis Fungoides and Sezary Syndrome AJCC v8 9 124533 -NCIT:C141356 Stage IV Mycosis Fungoides and Sezary Syndrome AJCC v8 8 124534 -NCIT:C141357 Stage IVA1 Mycosis Fungoides and Sezary Syndrome AJCC v8 9 124535 -NCIT:C141358 Stage IVA2 Mycosis Fungoides and Sezary Syndrome AJCC v8 9 124536 -NCIT:C141359 Stage IVB Mycosis Fungoides and Sezary Syndrome AJCC v8 9 124537 -NCIT:C27699 Virus-Related Lymphoma 5 124538 -NCIT:C138320 HHV8-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 6 124539 -NCIT:C27691 EBV-Related Lymphoma 6 124540 -NCIT:C147863 Recurrent EBV-Related Lymphoma 7 124541 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 124542 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 8 124543 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 9 124544 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 9 124545 -NCIT:C160149 Refractory EBV-Related Lymphoma 7 124546 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 124547 -NCIT:C27692 EBV-Related Hodgkin Lymphoma 7 124548 -NCIT:C7243 Classic Hodgkin Lymphoma Type Post-Transplant Lymphoproliferative Disorder 8 124549 -NCIT:C27693 EBV-Related Non-Hodgkin Lymphoma 7 124550 -NCIT:C139288 Primary EBV-Positive Nodal T-Cell or NK-Cell Lymphoma 8 124551 -NCIT:C27694 EBV-Related Burkitt Lymphoma 8 124552 -NCIT:C27122 Endemic Burkitt Lymphoma 9 124553 -NCIT:C7933 Grade III Lymphomatoid Granulomatosis 8 124554 -NCIT:C115150 Adult Grade III Lymphomatoid Granulomatosis 9 124555 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 124556 -NCIT:C115204 Childhood Grade III Lymphomatoid Granulomatosis 9 124557 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 10 124558 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 9 124559 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 124560 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 10 124561 -NCIT:C80281 EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 124562 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 124563 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 124564 -NCIT:C188456 Childhood EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 124565 -NCIT:C188457 Adult EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 124566 -NCIT:C80374 Systemic EBV-Positive T-Cell Lymphoma of Childhood 8 124567 -NCIT:C27695 EBV-Related Clonal Post-Transplant Lymphoproliferative Disorder 7 124568 -NCIT:C7239 Hodgkin-Like Post-Transplant Lymphoproliferative Disorder 8 124569 -NCIT:C7243 Classic Hodgkin Lymphoma Type Post-Transplant Lymphoproliferative Disorder 8 124570 -NCIT:C27856 Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 6 124571 -NCIT:C27858 AIDS-Related Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 7 124572 -NCIT:C3184 Adult T-Cell Leukemia/Lymphoma 6 124573 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 7 124574 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 8 124575 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 8 124576 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 8 124577 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 8 124578 -NCIT:C36265 Acute Adult T-Cell Leukemia/Lymphoma 7 124579 -NCIT:C36266 Lymphomatous Adult T-Cell Leukemia/Lymphoma 7 124580 -NCIT:C36268 Hodgkin-Like Adult T-Cell Leukemia/Lymphoma 7 124581 -NCIT:C45272 Cutaneous Adult T-Cell Leukemia/Lymphoma 7 124582 -NCIT:C7178 Smoldering Adult T-Cell Leukemia/Lymphoma 7 124583 -NCIT:C7179 Chronic Adult T-Cell Leukemia/Lymphoma 7 124584 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 7 124585 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 7 124586 -NCIT:C3471 AIDS-Related Lymphoma 6 124587 -NCIT:C5051 AIDS-Related Non-Hodgkin Lymphoma 7 124588 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 124589 -NCIT:C7212 AIDS-Related Diffuse Large B-cell Lymphoma 8 124590 -NCIT:C27858 AIDS-Related Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 9 124591 -NCIT:C27859 AIDS-Related Plasmablastic Lymphoma 9 124592 -NCIT:C38160 AIDS-Related Plasmablastic Lymphoma of Mucosa Site 10 124593 -NCIT:C9016 AIDS-Related Plasmablastic Lymphoma of the Oral Mucosa 11 124594 -NCIT:C8285 AIDS-Related Immunoblastic Lymphoma 9 124595 -NCIT:C9017 AIDS-Related Primary Effusion Lymphoma 9 124596 -NCIT:C7434 AIDS-Related Non-Hodgkin Lymphoma of the Cervix 8 124597 -NCIT:C7465 AIDS-Related Anal Non-Hodgkin Lymphoma 8 124598 -NCIT:C8286 AIDS-Related Burkitt Lymphoma 8 124599 -NCIT:C27857 AIDS-Related Burkitt Lymphoma with Plasmacytoid Differentiation 9 124600 -NCIT:C8298 AIDS-Related Lymphoblastic Lymphoma 8 124601 -NCIT:C8284 AIDS-Related Primary Central Nervous System Lymphoma 7 124602 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 124603 -NCIT:C9279 AIDS-Related Hodgkin Lymphoma 7 124604 -NCIT:C94797 Ann Arbor Stage I AIDS-Related Lymphoma 7 124605 -NCIT:C94798 Ann Arbor Stage II AIDS-Related Lymphoma 7 124606 -NCIT:C94799 Ann Arbor Stage III AIDS-Related Lymphoma 7 124607 -NCIT:C94800 Ann Arbor Stage IV AIDS-Related Lymphoma 7 124608 -NCIT:C6915 Primary Effusion Lymphoma 6 124609 -NCIT:C150406 Extracavitary Primary Effusion Lymphoma 7 124610 -NCIT:C150407 Body Cavity Primary Effusion Lymphoma 7 124611 -NCIT:C183135 Pleural Primary Effusion Lymphoma 8 124612 -NCIT:C183136 Pericardial Primary Effusion Lymphoma 8 124613 -NCIT:C183137 Peritoneal Primary Effusion Lymphoma 8 124614 -NCIT:C157679 Recurrent Primary Effusion Lymphoma 7 124615 -NCIT:C157680 Refractory Primary Effusion Lymphoma 7 124616 -NCIT:C9017 AIDS-Related Primary Effusion Lymphoma 7 124617 -NCIT:C3211 Non-Hodgkin Lymphoma 5 124618 -NCIT:C114779 Central Nervous System Non-Hodgkin Lymphoma 6 124619 -NCIT:C146989 Refractory Central Nervous System Non-Hodgkin Lymphoma 7 124620 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 8 124621 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 124622 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 124623 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 124624 -NCIT:C146990 Recurrent Central Nervous System Non-Hodgkin Lymphoma 7 124625 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 8 124626 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 124627 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 124628 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 124629 -NCIT:C147948 Central Nervous System B-Cell Non-Hodgkin Lymphoma 7 124630 -NCIT:C71720 Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 124631 -NCIT:C129602 Central Nervous System Intravascular Large B-Cell Lymphoma 9 124632 -NCIT:C155797 Pituitary Gland Diffuse Large B-Cell Lymphoma 9 124633 -NCIT:C157067 Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 124634 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 124635 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 124636 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 124637 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 124638 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 124639 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 124640 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 124641 -NCIT:C95991 Dural Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 124642 -NCIT:C155796 Pituitary Gland Non-Hodgkin Lymphoma 7 124643 -NCIT:C155797 Pituitary Gland Diffuse Large B-Cell Lymphoma 8 124644 -NCIT:C157065 Primary Vitreoretinal Non-Hodgkin Lymphoma 7 124645 -NCIT:C157067 Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 124646 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 124647 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 124648 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 8 124649 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 124650 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 8 124651 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 124652 -NCIT:C4365 Primary Retinal Non-Hodgkin Lymphoma 8 124653 -NCIT:C5409 Central Nervous System T-Cell Non-Hodgkin Lymphoma 7 124654 -NCIT:C129600 Central Nervous System Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 8 124655 -NCIT:C5322 Central Nervous System Anaplastic Large Cell Lymphoma 9 124656 -NCIT:C129598 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Positive 10 124657 -NCIT:C129599 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Negative 10 124658 -NCIT:C7609 Cerebral Non-Hodgkin Lymphoma 7 124659 -NCIT:C114950 Secondary Central Nervous System Non-Hodgkin Lymphoma 6 124660 -NCIT:C121930 Primary Bone Non-Hodgkin Lymphoma 6 124661 -NCIT:C173811 Primary Bone Diffuse Large B-Cell Lymphoma 7 124662 -NCIT:C141140 Non-Hodgkin Lymphoma by Ann Arbor Stage 6 124663 -NCIT:C141235 Adult Non-Hodgkin Lymphoma by Ann Arbor Stage 7 124664 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 8 124665 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 9 124666 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 9 124667 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 9 124668 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 9 124669 -NCIT:C8102 Ann Arbor Stage I Adult Non-Hodgkin Lymphoma 8 124670 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 9 124671 -NCIT:C8464 Ann Arbor Stage I Indolent Adult Non-Hodgkin Lymphoma 9 124672 -NCIT:C9252 Ann Arbor Stage I Aggressive Adult Non-Hodgkin Lymphoma 9 124673 -NCIT:C8079 Ann Arbor Stage I Adult Lymphoblastic Lymphoma 10 124674 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 10 124675 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 10 124676 -NCIT:C8103 Ann Arbor Stage II Adult Non-Hodgkin Lymphoma 8 124677 -NCIT:C68686 Ann Arbor Stage II Aggressive Adult Non-Hodgkin Lymphoma 9 124678 -NCIT:C8125 Ann Arbor Stage II Adult Lymphoblastic Lymphoma 10 124679 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 11 124680 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 11 124681 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 10 124682 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 11 124683 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 11 124684 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 10 124685 -NCIT:C8472 Ann Arbor Stage II Contiguous Adult Aggressive Non-Hodgkin Lymphoma 10 124686 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 11 124687 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 11 124688 -NCIT:C8479 Ann Arbor Stage II Non-Contiguous Aggressive Adult Non-Hodgkin Lymphoma 10 124689 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 11 124690 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 11 124691 -NCIT:C68688 Ann Arbor Stage II Indolent Adult Non-Hodgkin Lymphoma 9 124692 -NCIT:C8467 Ann Arbor Stage II Contiguous Adult Indolent Non-Hodgkin Lymphoma 10 124693 -NCIT:C8478 Ann Arbor Stage II Non-Contiguous Adult Indolent Non-Hodgkin Lymphoma 10 124694 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 9 124695 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 10 124696 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 10 124697 -NCIT:C8466 Ann Arbor Stage II Contiguous Adult Non-Hodgkin Lymphoma 9 124698 -NCIT:C8467 Ann Arbor Stage II Contiguous Adult Indolent Non-Hodgkin Lymphoma 10 124699 -NCIT:C8472 Ann Arbor Stage II Contiguous Adult Aggressive Non-Hodgkin Lymphoma 10 124700 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 11 124701 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 11 124702 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 10 124703 -NCIT:C8477 Ann Arbor Stage II Non-Contiguous Adult Non-Hodgkin Lymphoma 9 124704 -NCIT:C8478 Ann Arbor Stage II Non-Contiguous Adult Indolent Non-Hodgkin Lymphoma 10 124705 -NCIT:C8479 Ann Arbor Stage II Non-Contiguous Aggressive Adult Non-Hodgkin Lymphoma 10 124706 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 11 124707 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 11 124708 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 10 124709 -NCIT:C8104 Ann Arbor Stage III Adult Non-Hodgkin Lymphoma 8 124710 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 9 124711 -NCIT:C8482 Ann Arbor Stage III Indolent Adult Non-Hodgkin Lymphoma 9 124712 -NCIT:C8484 Ann Arbor Stage III Aggressive Adult Non-Hodgkin Lymphoma 9 124713 -NCIT:C8138 Ann Arbor Stage III Adult Lymphoblastic Lymphoma 10 124714 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 10 124715 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 10 124716 -NCIT:C8105 Ann Arbor Stage IV Adult Non-Hodgkin Lymphoma 8 124717 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 9 124718 -NCIT:C8485 Ann Arbor Stage IV Indolent Adult Non-Hodgkin Lymphoma 9 124719 -NCIT:C8487 Ann Arbor Stage IV Aggressive Adult Non-Hodgkin Lymphoma 9 124720 -NCIT:C8151 Ann Arbor Stage IV Adult Lymphoblastic Lymphoma 10 124721 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 10 124722 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 10 124723 -NCIT:C141236 Childhood Non-Hodgkin Lymphoma by Ann Arbor Stage 7 124724 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 8 124725 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 124726 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 124727 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 124728 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 124729 -NCIT:C94791 Ann Arbor Stage I Childhood Non-Hodgkin Lymphoma 8 124730 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 124731 -NCIT:C9056 Ann Arbor Stage I Childhood Lymphoblastic Lymphoma 9 124732 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 9 124733 -NCIT:C94792 Ann Arbor Stage II Childhood Non-Hodgkin Lymphoma 8 124734 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 124735 -NCIT:C9057 Ann Arbor Stage II Childhood Lymphoblastic Lymphoma 9 124736 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 9 124737 -NCIT:C94793 Ann Arbor Stage III Childhood Non-Hodgkin Lymphoma 8 124738 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 124739 -NCIT:C9058 Ann Arbor Stage III Childhood Lymphoblastic Lymphoma 9 124740 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 9 124741 -NCIT:C94794 Ann Arbor Stage IV Childhood Non-Hodgkin Lymphoma 8 124742 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 124743 -NCIT:C9059 Ann Arbor Stage IV Childhood Lymphoblastic Lymphoma 9 124744 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 9 124745 -NCIT:C141243 B-Cell Non-Hodgkin Lymphoma by Ann Arbor Stage 7 124746 -NCIT:C141250 B Lymphoblastic Lymphoma by Ann Arbor Stage 8 124747 -NCIT:C8871 Ann Arbor Stage I B Lymphoblastic Lymphoma 9 124748 -NCIT:C8872 Ann Arbor Stage III B Lymphoblastic Lymphoma 9 124749 -NCIT:C8873 Ann Arbor Stage IV B Lymphoblastic Lymphoma 9 124750 -NCIT:C8937 Ann Arbor Stage II B Lymphoblastic Lymphoma 9 124751 -NCIT:C141253 Burkitt Lymphoma by Ann Arbor Stage 8 124752 -NCIT:C5084 Ann Arbor Stage IV Burkitt Lymphoma 9 124753 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 10 124754 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 10 124755 -NCIT:C8848 Ann Arbor Stage I Burkitt Lymphoma 9 124756 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 10 124757 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 10 124758 -NCIT:C8849 Ann Arbor Stage II Burkitt Lymphoma 9 124759 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 10 124760 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 11 124761 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 11 124762 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 10 124763 -NCIT:C8850 Ann Arbor Stage III Burkitt Lymphoma 9 124764 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 10 124765 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 10 124766 -NCIT:C141254 Diffuse Large B-Cell Lymphoma by Ann Arbor Stage 8 124767 -NCIT:C141262 Primary Mediastinal (Thymic) Large B-Cell Lymphoma by Ann Arbor Stage 9 124768 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 124769 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 124770 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 124771 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 124772 -NCIT:C141263 Centroblastic Lymphoma by Ann Arbor Stage 9 124773 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 10 124774 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 10 124775 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 10 124776 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 10 124777 -NCIT:C8854 Ann Arbor Stage I Diffuse Large B-Cell Lymphoma 9 124778 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 10 124779 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 124780 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 10 124781 -NCIT:C8855 Ann Arbor Stage II Diffuse Large B-Cell Lymphoma 9 124782 -NCIT:C171158 Ann Arbor Stage IIX (Bulky) Diffuse Large B-Cell Lymphoma 10 124783 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 10 124784 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 11 124785 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 11 124786 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 124787 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 10 124788 -NCIT:C8856 Ann Arbor Stage III Diffuse Large B-Cell Lymphoma 9 124789 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 10 124790 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 124791 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 10 124792 -NCIT:C8857 Ann Arbor Stage IV Diffuse Large B-Cell Lymphoma 9 124793 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 10 124794 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 124795 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 10 124796 -NCIT:C141255 Follicular Lymphoma by Ann Arbor Stage 8 124797 -NCIT:C5006 Ann Arbor Stage IV Follicular Lymphoma 9 124798 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 10 124799 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 10 124800 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 10 124801 -NCIT:C8859 Ann Arbor Stage I Follicular Lymphoma 9 124802 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 10 124803 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 10 124804 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 10 124805 -NCIT:C8860 Ann Arbor Stage II Follicular Lymphoma 9 124806 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 10 124807 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 11 124808 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 11 124809 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 10 124810 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 11 124811 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 11 124812 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 10 124813 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 11 124814 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 11 124815 -NCIT:C8861 Ann Arbor Stage III Follicular Lymphoma 9 124816 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 10 124817 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 10 124818 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 10 124819 -NCIT:C141256 Lymphoplasmacytic Lymphoma by Ann Arbor Stage 8 124820 -NCIT:C8653 Ann Arbor Stage I Lymphoplasmacytic Lymphoma 9 124821 -NCIT:C8654 Ann Arbor Stage II Lymphoplasmacytic Lymphoma 9 124822 -NCIT:C8655 Ann Arbor Stage III Lymphoplasmacytic Lymphoma 9 124823 -NCIT:C8656 Ann Arbor Stage IV Lymphoplasmacytic Lymphoma 9 124824 -NCIT:C141257 Mantle Cell Lymphoma by Ann Arbor Stage 8 124825 -NCIT:C8465 Ann Arbor Stage I Mantle Cell Lymphoma 9 124826 -NCIT:C8483 Ann Arbor Stage III Mantle Cell Lymphoma 9 124827 -NCIT:C8486 Ann Arbor Stage IV Mantle Cell Lymphoma 9 124828 -NCIT:C9202 Ann Arbor Stage II Mantle Cell Lymphoma 9 124829 -NCIT:C8473 Ann Arbor Stage II Contiguous Mantle Cell Lymphoma 10 124830 -NCIT:C9198 Ann Arbor Stage II Non-Contiguous Mantle Cell Lymphoma 10 124831 -NCIT:C141258 Marginal Zone Lymphoma by Ann Arbor Stage 8 124832 -NCIT:C141260 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue by Ann Arbor Stage 9 124833 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 124834 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 124835 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 124836 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 124837 -NCIT:C141261 Nodal Marginal Zone Lymphoma by Ann Arbor Stage 9 124838 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 10 124839 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 10 124840 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 10 124841 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 10 124842 -NCIT:C68678 Ann Arbor Stage I Marginal Zone Lymphoma 9 124843 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 124844 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 10 124845 -NCIT:C68679 Ann Arbor Stage II Marginal Zone Lymphoma 9 124846 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 124847 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 10 124848 -NCIT:C68682 Ann Arbor Stage III Marginal Zone Lymphoma 9 124849 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 124850 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 10 124851 -NCIT:C68683 Ann Arbor Stage IV Marginal Zone Lymphoma 9 124852 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 124853 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 10 124854 -NCIT:C141259 Small Lymphocytic Lymphoma by Ann Arbor Stage 8 124855 -NCIT:C8070 Ann Arbor Stage I Small Lymphocytic Lymphoma 9 124856 -NCIT:C8115 Ann Arbor Stage II Small Lymphocytic Lymphoma 9 124857 -NCIT:C8128 Ann Arbor Stage III Small Lymphocytic Lymphoma 9 124858 -NCIT:C8141 Ann Arbor Stage IV Small Lymphocytic Lymphoma 9 124859 -NCIT:C27308 Ann Arbor Stage I B-Cell Non-Hodgkin Lymphoma 8 124860 -NCIT:C68678 Ann Arbor Stage I Marginal Zone Lymphoma 9 124861 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 124862 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 10 124863 -NCIT:C8070 Ann Arbor Stage I Small Lymphocytic Lymphoma 9 124864 -NCIT:C8465 Ann Arbor Stage I Mantle Cell Lymphoma 9 124865 -NCIT:C8653 Ann Arbor Stage I Lymphoplasmacytic Lymphoma 9 124866 -NCIT:C8848 Ann Arbor Stage I Burkitt Lymphoma 9 124867 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 10 124868 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 10 124869 -NCIT:C8854 Ann Arbor Stage I Diffuse Large B-Cell Lymphoma 9 124870 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 10 124871 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 124872 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 10 124873 -NCIT:C8859 Ann Arbor Stage I Follicular Lymphoma 9 124874 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 10 124875 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 10 124876 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 10 124877 -NCIT:C8871 Ann Arbor Stage I B Lymphoblastic Lymphoma 9 124878 -NCIT:C8843 Ann Arbor Stage II B-Cell Non-Hodgkin Lymphoma 8 124879 -NCIT:C68679 Ann Arbor Stage II Marginal Zone Lymphoma 9 124880 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 124881 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 10 124882 -NCIT:C8115 Ann Arbor Stage II Small Lymphocytic Lymphoma 9 124883 -NCIT:C8654 Ann Arbor Stage II Lymphoplasmacytic Lymphoma 9 124884 -NCIT:C8849 Ann Arbor Stage II Burkitt Lymphoma 9 124885 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 10 124886 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 11 124887 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 11 124888 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 10 124889 -NCIT:C8855 Ann Arbor Stage II Diffuse Large B-Cell Lymphoma 9 124890 -NCIT:C171158 Ann Arbor Stage IIX (Bulky) Diffuse Large B-Cell Lymphoma 10 124891 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 10 124892 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 11 124893 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 11 124894 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 124895 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 10 124896 -NCIT:C8860 Ann Arbor Stage II Follicular Lymphoma 9 124897 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 10 124898 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 11 124899 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 11 124900 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 10 124901 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 11 124902 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 11 124903 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 10 124904 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 11 124905 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 11 124906 -NCIT:C8937 Ann Arbor Stage II B Lymphoblastic Lymphoma 9 124907 -NCIT:C9202 Ann Arbor Stage II Mantle Cell Lymphoma 9 124908 -NCIT:C8473 Ann Arbor Stage II Contiguous Mantle Cell Lymphoma 10 124909 -NCIT:C9198 Ann Arbor Stage II Non-Contiguous Mantle Cell Lymphoma 10 124910 -NCIT:C8844 Ann Arbor Stage III B-Cell Non-Hodgkin Lymphoma 8 124911 -NCIT:C68682 Ann Arbor Stage III Marginal Zone Lymphoma 9 124912 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 124913 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 10 124914 -NCIT:C8128 Ann Arbor Stage III Small Lymphocytic Lymphoma 9 124915 -NCIT:C8483 Ann Arbor Stage III Mantle Cell Lymphoma 9 124916 -NCIT:C8655 Ann Arbor Stage III Lymphoplasmacytic Lymphoma 9 124917 -NCIT:C8850 Ann Arbor Stage III Burkitt Lymphoma 9 124918 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 10 124919 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 10 124920 -NCIT:C8856 Ann Arbor Stage III Diffuse Large B-Cell Lymphoma 9 124921 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 10 124922 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 124923 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 10 124924 -NCIT:C8861 Ann Arbor Stage III Follicular Lymphoma 9 124925 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 10 124926 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 10 124927 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 10 124928 -NCIT:C8872 Ann Arbor Stage III B Lymphoblastic Lymphoma 9 124929 -NCIT:C8845 Ann Arbor Stage IV B-Cell Non-Hodgkin Lymphoma 8 124930 -NCIT:C5006 Ann Arbor Stage IV Follicular Lymphoma 9 124931 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 10 124932 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 10 124933 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 10 124934 -NCIT:C5084 Ann Arbor Stage IV Burkitt Lymphoma 9 124935 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 10 124936 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 10 124937 -NCIT:C68683 Ann Arbor Stage IV Marginal Zone Lymphoma 9 124938 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 124939 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 10 124940 -NCIT:C8141 Ann Arbor Stage IV Small Lymphocytic Lymphoma 9 124941 -NCIT:C8486 Ann Arbor Stage IV Mantle Cell Lymphoma 9 124942 -NCIT:C8656 Ann Arbor Stage IV Lymphoplasmacytic Lymphoma 9 124943 -NCIT:C8857 Ann Arbor Stage IV Diffuse Large B-Cell Lymphoma 9 124944 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 10 124945 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 124946 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 10 124947 -NCIT:C8873 Ann Arbor Stage IV B Lymphoblastic Lymphoma 9 124948 -NCIT:C141247 T-Cell Non-Hodgkin Lymphoma by Ann Arbor Stage 7 124949 -NCIT:C141272 Mature T- and NK-Cell Lymphoma by Ann Arbor Stage 8 124950 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 9 124951 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 10 124952 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 10 124953 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 10 124954 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 10 124955 -NCIT:C141284 Noncutaneous Anaplastic Large Cell Lymphoma by Ann Arbor Stage 9 124956 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 10 124957 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 124958 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 124959 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 124960 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 124961 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 10 124962 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 124963 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 10 124964 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 124965 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 10 124966 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 124967 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 10 124968 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 124969 -NCIT:C141294 Angioimmunoblastic T-Cell Lymphoma by Ann Arbor Stage 9 124970 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 10 124971 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 10 124972 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 10 124973 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 10 124974 -NCIT:C141295 Enteropathy-Associated T-Cell Lymphoma by Ann Arbor Stage 9 124975 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 10 124976 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 10 124977 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 10 124978 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 10 124979 -NCIT:C141296 Nasal Type NK/T-Cell Lymphoma by Ann Arbor Stage 9 124980 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 10 124981 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 10 124982 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 10 124983 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 10 124984 -NCIT:C8690 Ann Arbor Stage I Mature T- and NK-Cell Lymphoma 9 124985 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 10 124986 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 10 124987 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 124988 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 10 124989 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 10 124990 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 10 124991 -NCIT:C8691 Ann Arbor Stage II Mature T- and NK-Cell Lymphoma 9 124992 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 10 124993 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 10 124994 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 124995 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 10 124996 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 10 124997 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 10 124998 -NCIT:C8692 Ann Arbor Stage III Mature T- and NK-Cell Lymphoma 9 124999 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 10 125000 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 10 125001 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 125002 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 10 125003 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 10 125004 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 10 125005 -NCIT:C8693 Ann Arbor Stage IV Mature T- and NK-Cell Lymphoma 9 125006 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 10 125007 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 10 125008 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 125009 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 10 125010 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 10 125011 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 10 125012 -NCIT:C8665 Ann Arbor Stage I T-Cell Non-Hodgkin Lymphoma 8 125013 -NCIT:C8690 Ann Arbor Stage I Mature T- and NK-Cell Lymphoma 9 125014 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 10 125015 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 10 125016 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 125017 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 10 125018 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 10 125019 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 10 125020 -NCIT:C8666 Ann Arbor Stage II T-Cell Non-Hodgkin Lymphoma 8 125021 -NCIT:C8691 Ann Arbor Stage II Mature T- and NK-Cell Lymphoma 9 125022 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 10 125023 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 10 125024 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 125025 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 10 125026 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 10 125027 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 10 125028 -NCIT:C8667 Ann Arbor Stage III T-Cell Non-Hodgkin Lymphoma 8 125029 -NCIT:C8692 Ann Arbor Stage III Mature T- and NK-Cell Lymphoma 9 125030 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 10 125031 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 10 125032 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 125033 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 10 125034 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 10 125035 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 10 125036 -NCIT:C8668 Ann Arbor Stage IV T-Cell Non-Hodgkin Lymphoma 8 125037 -NCIT:C8693 Ann Arbor Stage IV Mature T- and NK-Cell Lymphoma 9 125038 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 10 125039 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 10 125040 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 125041 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 10 125042 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 10 125043 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 10 125044 -NCIT:C8520 Ann Arbor Stage I Non-Hodgkin Lymphoma 7 125045 -NCIT:C27308 Ann Arbor Stage I B-Cell Non-Hodgkin Lymphoma 8 125046 -NCIT:C68678 Ann Arbor Stage I Marginal Zone Lymphoma 9 125047 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 125048 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 10 125049 -NCIT:C8070 Ann Arbor Stage I Small Lymphocytic Lymphoma 9 125050 -NCIT:C8465 Ann Arbor Stage I Mantle Cell Lymphoma 9 125051 -NCIT:C8653 Ann Arbor Stage I Lymphoplasmacytic Lymphoma 9 125052 -NCIT:C8848 Ann Arbor Stage I Burkitt Lymphoma 9 125053 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 10 125054 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 10 125055 -NCIT:C8854 Ann Arbor Stage I Diffuse Large B-Cell Lymphoma 9 125056 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 10 125057 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 125058 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 10 125059 -NCIT:C8859 Ann Arbor Stage I Follicular Lymphoma 9 125060 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 10 125061 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 10 125062 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 10 125063 -NCIT:C8871 Ann Arbor Stage I B Lymphoblastic Lymphoma 9 125064 -NCIT:C8102 Ann Arbor Stage I Adult Non-Hodgkin Lymphoma 8 125065 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 9 125066 -NCIT:C8464 Ann Arbor Stage I Indolent Adult Non-Hodgkin Lymphoma 9 125067 -NCIT:C9252 Ann Arbor Stage I Aggressive Adult Non-Hodgkin Lymphoma 9 125068 -NCIT:C8079 Ann Arbor Stage I Adult Lymphoblastic Lymphoma 10 125069 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 10 125070 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 10 125071 -NCIT:C8665 Ann Arbor Stage I T-Cell Non-Hodgkin Lymphoma 8 125072 -NCIT:C8690 Ann Arbor Stage I Mature T- and NK-Cell Lymphoma 9 125073 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 10 125074 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 10 125075 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 125076 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 10 125077 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 10 125078 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 10 125079 -NCIT:C94791 Ann Arbor Stage I Childhood Non-Hodgkin Lymphoma 8 125080 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 125081 -NCIT:C9056 Ann Arbor Stage I Childhood Lymphoblastic Lymphoma 9 125082 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 9 125083 -NCIT:C8521 Ann Arbor Stage II Non-Hodgkin Lymphoma 7 125084 -NCIT:C171159 Ann Arbor Stage IIX (Bulky) Non-Hodgkin Lymphoma 8 125085 -NCIT:C171158 Ann Arbor Stage IIX (Bulky) Diffuse Large B-Cell Lymphoma 9 125086 -NCIT:C8103 Ann Arbor Stage II Adult Non-Hodgkin Lymphoma 8 125087 -NCIT:C68686 Ann Arbor Stage II Aggressive Adult Non-Hodgkin Lymphoma 9 125088 -NCIT:C8125 Ann Arbor Stage II Adult Lymphoblastic Lymphoma 10 125089 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 11 125090 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 11 125091 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 10 125092 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 11 125093 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 11 125094 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 10 125095 -NCIT:C8472 Ann Arbor Stage II Contiguous Adult Aggressive Non-Hodgkin Lymphoma 10 125096 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 11 125097 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 11 125098 -NCIT:C8479 Ann Arbor Stage II Non-Contiguous Aggressive Adult Non-Hodgkin Lymphoma 10 125099 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 11 125100 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 11 125101 -NCIT:C68688 Ann Arbor Stage II Indolent Adult Non-Hodgkin Lymphoma 9 125102 -NCIT:C8467 Ann Arbor Stage II Contiguous Adult Indolent Non-Hodgkin Lymphoma 10 125103 -NCIT:C8478 Ann Arbor Stage II Non-Contiguous Adult Indolent Non-Hodgkin Lymphoma 10 125104 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 9 125105 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 10 125106 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 10 125107 -NCIT:C8466 Ann Arbor Stage II Contiguous Adult Non-Hodgkin Lymphoma 9 125108 -NCIT:C8467 Ann Arbor Stage II Contiguous Adult Indolent Non-Hodgkin Lymphoma 10 125109 -NCIT:C8472 Ann Arbor Stage II Contiguous Adult Aggressive Non-Hodgkin Lymphoma 10 125110 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 11 125111 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 11 125112 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 10 125113 -NCIT:C8477 Ann Arbor Stage II Non-Contiguous Adult Non-Hodgkin Lymphoma 9 125114 -NCIT:C8478 Ann Arbor Stage II Non-Contiguous Adult Indolent Non-Hodgkin Lymphoma 10 125115 -NCIT:C8479 Ann Arbor Stage II Non-Contiguous Aggressive Adult Non-Hodgkin Lymphoma 10 125116 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 11 125117 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 11 125118 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 10 125119 -NCIT:C8666 Ann Arbor Stage II T-Cell Non-Hodgkin Lymphoma 8 125120 -NCIT:C8691 Ann Arbor Stage II Mature T- and NK-Cell Lymphoma 9 125121 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 10 125122 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 10 125123 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 125124 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 10 125125 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 10 125126 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 10 125127 -NCIT:C8843 Ann Arbor Stage II B-Cell Non-Hodgkin Lymphoma 8 125128 -NCIT:C68679 Ann Arbor Stage II Marginal Zone Lymphoma 9 125129 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 125130 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 10 125131 -NCIT:C8115 Ann Arbor Stage II Small Lymphocytic Lymphoma 9 125132 -NCIT:C8654 Ann Arbor Stage II Lymphoplasmacytic Lymphoma 9 125133 -NCIT:C8849 Ann Arbor Stage II Burkitt Lymphoma 9 125134 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 10 125135 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 11 125136 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 11 125137 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 10 125138 -NCIT:C8855 Ann Arbor Stage II Diffuse Large B-Cell Lymphoma 9 125139 -NCIT:C171158 Ann Arbor Stage IIX (Bulky) Diffuse Large B-Cell Lymphoma 10 125140 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 10 125141 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 11 125142 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 11 125143 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 125144 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 10 125145 -NCIT:C8860 Ann Arbor Stage II Follicular Lymphoma 9 125146 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 10 125147 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 11 125148 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 11 125149 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 10 125150 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 11 125151 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 11 125152 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 10 125153 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 11 125154 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 11 125155 -NCIT:C8937 Ann Arbor Stage II B Lymphoblastic Lymphoma 9 125156 -NCIT:C9202 Ann Arbor Stage II Mantle Cell Lymphoma 9 125157 -NCIT:C8473 Ann Arbor Stage II Contiguous Mantle Cell Lymphoma 10 125158 -NCIT:C9198 Ann Arbor Stage II Non-Contiguous Mantle Cell Lymphoma 10 125159 -NCIT:C94792 Ann Arbor Stage II Childhood Non-Hodgkin Lymphoma 8 125160 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 125161 -NCIT:C9057 Ann Arbor Stage II Childhood Lymphoblastic Lymphoma 9 125162 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 9 125163 -NCIT:C8522 Ann Arbor Stage III Non-Hodgkin Lymphoma 7 125164 -NCIT:C8104 Ann Arbor Stage III Adult Non-Hodgkin Lymphoma 8 125165 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 9 125166 -NCIT:C8482 Ann Arbor Stage III Indolent Adult Non-Hodgkin Lymphoma 9 125167 -NCIT:C8484 Ann Arbor Stage III Aggressive Adult Non-Hodgkin Lymphoma 9 125168 -NCIT:C8138 Ann Arbor Stage III Adult Lymphoblastic Lymphoma 10 125169 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 10 125170 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 10 125171 -NCIT:C8667 Ann Arbor Stage III T-Cell Non-Hodgkin Lymphoma 8 125172 -NCIT:C8692 Ann Arbor Stage III Mature T- and NK-Cell Lymphoma 9 125173 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 10 125174 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 10 125175 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 125176 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 10 125177 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 10 125178 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 10 125179 -NCIT:C8844 Ann Arbor Stage III B-Cell Non-Hodgkin Lymphoma 8 125180 -NCIT:C68682 Ann Arbor Stage III Marginal Zone Lymphoma 9 125181 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 125182 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 10 125183 -NCIT:C8128 Ann Arbor Stage III Small Lymphocytic Lymphoma 9 125184 -NCIT:C8483 Ann Arbor Stage III Mantle Cell Lymphoma 9 125185 -NCIT:C8655 Ann Arbor Stage III Lymphoplasmacytic Lymphoma 9 125186 -NCIT:C8850 Ann Arbor Stage III Burkitt Lymphoma 9 125187 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 10 125188 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 10 125189 -NCIT:C8856 Ann Arbor Stage III Diffuse Large B-Cell Lymphoma 9 125190 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 10 125191 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 125192 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 10 125193 -NCIT:C8861 Ann Arbor Stage III Follicular Lymphoma 9 125194 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 10 125195 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 10 125196 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 10 125197 -NCIT:C8872 Ann Arbor Stage III B Lymphoblastic Lymphoma 9 125198 -NCIT:C94793 Ann Arbor Stage III Childhood Non-Hodgkin Lymphoma 8 125199 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 125200 -NCIT:C9058 Ann Arbor Stage III Childhood Lymphoblastic Lymphoma 9 125201 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 9 125202 -NCIT:C8523 Ann Arbor Stage IV Non-Hodgkin Lymphoma 7 125203 -NCIT:C8105 Ann Arbor Stage IV Adult Non-Hodgkin Lymphoma 8 125204 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 9 125205 -NCIT:C8485 Ann Arbor Stage IV Indolent Adult Non-Hodgkin Lymphoma 9 125206 -NCIT:C8487 Ann Arbor Stage IV Aggressive Adult Non-Hodgkin Lymphoma 9 125207 -NCIT:C8151 Ann Arbor Stage IV Adult Lymphoblastic Lymphoma 10 125208 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 10 125209 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 10 125210 -NCIT:C8668 Ann Arbor Stage IV T-Cell Non-Hodgkin Lymphoma 8 125211 -NCIT:C8693 Ann Arbor Stage IV Mature T- and NK-Cell Lymphoma 9 125212 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 10 125213 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 10 125214 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 125215 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 10 125216 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 10 125217 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 10 125218 -NCIT:C8845 Ann Arbor Stage IV B-Cell Non-Hodgkin Lymphoma 8 125219 -NCIT:C5006 Ann Arbor Stage IV Follicular Lymphoma 9 125220 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 10 125221 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 10 125222 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 10 125223 -NCIT:C5084 Ann Arbor Stage IV Burkitt Lymphoma 9 125224 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 10 125225 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 10 125226 -NCIT:C68683 Ann Arbor Stage IV Marginal Zone Lymphoma 9 125227 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 125228 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 10 125229 -NCIT:C8141 Ann Arbor Stage IV Small Lymphocytic Lymphoma 9 125230 -NCIT:C8486 Ann Arbor Stage IV Mantle Cell Lymphoma 9 125231 -NCIT:C8656 Ann Arbor Stage IV Lymphoplasmacytic Lymphoma 9 125232 -NCIT:C8857 Ann Arbor Stage IV Diffuse Large B-Cell Lymphoma 9 125233 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 10 125234 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 125235 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 10 125236 -NCIT:C8873 Ann Arbor Stage IV B Lymphoblastic Lymphoma 9 125237 -NCIT:C94794 Ann Arbor Stage IV Childhood Non-Hodgkin Lymphoma 8 125238 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 125239 -NCIT:C9059 Ann Arbor Stage IV Childhood Lymphoblastic Lymphoma 9 125240 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 9 125241 -NCIT:C151957 Transformed Non-Hodgkin Lymphoma 6 125242 -NCIT:C139681 Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 7 125243 -NCIT:C160232 Recurrent Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 8 125244 -NCIT:C160240 Refractory Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 8 125245 -NCIT:C140091 Refractory Transformed Non-Hodgkin Lymphoma 7 125246 -NCIT:C158150 Refractory Transformed B-Cell Non-Hodgkin Lymphoma 8 125247 -NCIT:C160240 Refractory Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 9 125248 -NCIT:C186484 Refractory Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 9 125249 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 10 125250 -NCIT:C165791 Refractory Transformed T-cell Non-Hodgkin Lymphoma 8 125251 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 9 125252 -NCIT:C165783 Transformed Mycosis Fungoides 7 125253 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 8 125254 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 8 125255 -NCIT:C172361 Advanced Transformed Non-Hodgkin Lymphoma 7 125256 -NCIT:C179717 Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 7 125257 -NCIT:C156699 Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 8 125258 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 9 125259 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 9 125260 -NCIT:C157625 Transformed Small Lymphocytic Lymphoma to Diffuse Large B-Cell Lymphoma 8 125261 -NCIT:C185134 Transformed Lymphoplasmacytic Lymphoma to Diffuse Large B-Cell Lymphoma 8 125262 -NCIT:C185135 Transformed Waldenstrom Macroglobulinemia to Diffuse Large B-Cell Lymphoma 9 125263 -NCIT:C186483 Recurrent Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 8 125264 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 9 125265 -NCIT:C186484 Refractory Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 8 125266 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 9 125267 -NCIT:C179721 Transformed B-Cell Lymphoma, Unclassifiable, with Features Intermediate between Diffuse Large B-Cell Lymphoma and Classic Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 7 125268 -NCIT:C8702 Recurrent Transformed Non-Hodgkin Lymphoma 7 125269 -NCIT:C158149 Recurrent Transformed B-Cell Non-Hodgkin Lymphoma 8 125270 -NCIT:C160232 Recurrent Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 9 125271 -NCIT:C186483 Recurrent Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 9 125272 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 10 125273 -NCIT:C165789 Recurrent Transformed T-cell Non-Hodgkin Lymphoma 8 125274 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 9 125275 -NCIT:C171037 Mediastinal Non-Hodgkin Lymphoma 6 125276 -NCIT:C45380 Thymic Mucosa-Associated Lymphoid Tissue Lymphoma 7 125277 -NCIT:C45740 Mediastinal T Lymphoblastic Lymphoma 7 125278 -NCIT:C9280 Primary Mediastinal (Thymic) Large B-Cell Lymphoma 7 125279 -NCIT:C141262 Primary Mediastinal (Thymic) Large B-Cell Lymphoma by Ann Arbor Stage 8 125280 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 125281 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 125282 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 125283 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 125284 -NCIT:C188455 Childhood Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 125285 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 125286 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 125287 -NCIT:C172371 Advanced Non-Hodgkin Lymphoma 6 125288 -NCIT:C166180 Advanced Anaplastic Large Cell Lymphoma 7 125289 -NCIT:C171264 Advanced Diffuse Large B-Cell Lymphoma 7 125290 -NCIT:C172359 Advanced Follicular Lymphoma 7 125291 -NCIT:C172360 Advanced Marginal Zone Lymphoma 7 125292 -NCIT:C172361 Advanced Transformed Non-Hodgkin Lymphoma 7 125293 -NCIT:C172442 Advanced Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 7 125294 -NCIT:C53283 Advanced Favorable Non-Hodgkin Lymphoma 7 125295 -NCIT:C53284 Advanced Unfavorable Non-Hodgkin Lymphoma 7 125296 -NCIT:C173171 Sinonasal Non-Hodgkin Lymphoma 6 125297 -NCIT:C173172 Sinonasal Extranodal NK/T-Cell Lymphoma 7 125298 -NCIT:C173173 Nasal Cavity Extranodal NK/T-Cell Lymphoma 8 125299 -NCIT:C6069 Paranasal Sinus Non-Hodgkin Lymphoma 7 125300 -NCIT:C6073 Paranasal Sinus Diffuse Large B-Cell Lymphoma 8 125301 -NCIT:C6075 Nasal Cavity Non-Hodgkin Lymphoma 7 125302 -NCIT:C173173 Nasal Cavity Extranodal NK/T-Cell Lymphoma 8 125303 -NCIT:C188081 Nasal Cavity Diffuse Large B-Cell Lymphoma 8 125304 -NCIT:C173355 Pharyngeal Non-Hodgkin Lymphoma 6 125305 -NCIT:C173359 Nasopharyngeal Non-Hodgkin Lymphoma 7 125306 -NCIT:C173579 Oropharyngeal Non-Hodgkin Lymphoma 7 125307 -NCIT:C188072 Tonsillar Diffuse Large B-Cell Lymphoma 8 125308 -NCIT:C188080 Tonsillar Mantle Cell Lymphoma 8 125309 -NCIT:C173691 Salivary Gland Non-Hodgkin Lymphoma 6 125310 -NCIT:C173693 Salivary Gland Mucosa-Associated Lymphoid Tissue Lymphoma 7 125311 -NCIT:C35687 Parotid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 8 125312 -NCIT:C173715 Salivary Gland Follicular Lymphoma 7 125313 -NCIT:C173716 Parotid Gland Follicular Lymphoma 8 125314 -NCIT:C173717 Salivary Gland Diffuse Large B-Cell Lymphoma 7 125315 -NCIT:C173719 Parotid Gland Diffuse Large B-Cell Lymphoma 8 125316 -NCIT:C5981 Major Salivary Gland Non-Hodgkin Lymphoma 7 125317 -NCIT:C5951 Parotid Gland Non-Hodgkin Lymphoma 8 125318 -NCIT:C173716 Parotid Gland Follicular Lymphoma 9 125319 -NCIT:C173719 Parotid Gland Diffuse Large B-Cell Lymphoma 9 125320 -NCIT:C181210 Parotid Gland Mantle Cell Lymphoma 9 125321 -NCIT:C35687 Parotid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 9 125322 -NCIT:C175470 Secondary Choroidal Non-Hodgkin Lymphoma 6 125323 -NCIT:C185753 Extranodal Non-Hodgkin Lymphoma 6 125324 -NCIT:C188114 Primary Cutaneous Non-Hodgkin Lymphoma 7 125325 -NCIT:C3467 Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 125326 -NCIT:C172442 Advanced Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 125327 -NCIT:C180374 Early Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 125328 -NCIT:C3246 Mycosis Fungoides 9 125329 -NCIT:C141143 Mycosis Fungoides by AJCC v7 Stage 10 125330 -NCIT:C7796 Stage I Mycosis Fungoides AJCC v7 11 125331 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 12 125332 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 12 125333 -NCIT:C7798 Stage II Mycosis Fungoides AJCC v7 11 125334 -NCIT:C7800 Stage III Mycosis Fungoides AJCC v7 11 125335 -NCIT:C7802 Stage IV Mycosis Fungoides AJCC v7 11 125336 -NCIT:C165783 Transformed Mycosis Fungoides 10 125337 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 125338 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 125339 -NCIT:C8686 Recurrent Mycosis Fungoides 10 125340 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 125341 -NCIT:C8687 Refractory Mycosis Fungoides 10 125342 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 125343 -NCIT:C39644 Mycosis Fungoides Variant 9 125344 -NCIT:C35464 Granulomatous Slack Skin Disease 10 125345 -NCIT:C35685 Folliculotropic Mycosis Fungoides 10 125346 -NCIT:C35794 Pagetoid Reticulosis 10 125347 -NCIT:C45332 Primary Cutaneous Peripheral T-Cell Lymphoma, Rare Subtype 9 125348 -NCIT:C139023 Primary Cutaneous Acral CD8-Positive T-Cell Lymphoma 10 125349 -NCIT:C45339 Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 125350 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 11 125351 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 11 125352 -NCIT:C45340 Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 125353 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 11 125354 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 11 125355 -NCIT:C6860 Primary Cutaneous Anaplastic Large Cell Lymphoma 9 125356 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 125357 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 125358 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 10 125359 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 10 125360 -NCIT:C6918 Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 125361 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 125362 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 125363 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 125364 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 125365 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 125366 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 125367 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 125368 -NCIT:C8686 Recurrent Mycosis Fungoides 10 125369 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 125370 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 125371 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 125372 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 125373 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 125374 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 125375 -NCIT:C8687 Refractory Mycosis Fungoides 10 125376 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 125377 -NCIT:C6858 Primary Cutaneous B-Cell Non-Hodgkin Lymphoma 8 125378 -NCIT:C45193 Primary Cutaneous Diffuse Large B-Cell Lymphoma 9 125379 -NCIT:C45194 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 125380 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 125381 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 125382 -NCIT:C45213 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Other 10 125383 -NCIT:C45214 Primary Cutaneous Intravascular Large B-Cell Lymphoma 11 125384 -NCIT:C45215 Primary Cutaneous T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 11 125385 -NCIT:C45216 Primary Cutaneous Plasmablastic Lymphoma 11 125386 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 9 125387 -NCIT:C7230 Primary Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 125388 -NCIT:C45163 Borrelia Burgdoferi-Associated Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 125389 -NCIT:C3898 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 7 125390 -NCIT:C123394 Childhood Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 125391 -NCIT:C141260 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue by Ann Arbor Stage 8 125392 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 125393 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 125394 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 125395 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 125396 -NCIT:C172844 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue Involving the Digestive System 8 125397 -NCIT:C5266 Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 9 125398 -NCIT:C27763 Helicobacter Pylori-Associated Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 10 125399 -NCIT:C5635 Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 9 125400 -NCIT:C45166 Campylobacter Jejuni-Associated Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 10 125401 -NCIT:C5768 Liver Mucosa-Associated Lymphoid Tissue Lymphoma 9 125402 -NCIT:C95626 Esophageal Mucosa-Associated Lymphoid Tissue Lymphoma 9 125403 -NCIT:C96506 Colorectal Mucosa-Associated Lymphoid Tissue Lymphoma 9 125404 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 10 125405 -NCIT:C173693 Salivary Gland Mucosa-Associated Lymphoid Tissue Lymphoma 8 125406 -NCIT:C35687 Parotid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 9 125407 -NCIT:C181910 Endometrial Mucosa-Associated Lymphoid Tissue Lymphoma 8 125408 -NCIT:C35688 Breast Mucosa-Associated Lymphoid Tissue Lymphoma 8 125409 -NCIT:C35689 Ocular Adnexal Mucosa-Associated Lymphoid Tissue Lymphoma 8 125410 -NCIT:C175431 Conjunctival Mucosa-Associated Lymphoid Tissue Lymphoma 9 125411 -NCIT:C175482 Lacrimal System Mucosa-Associated Lymphoid Tissue Lymphoma 9 125412 -NCIT:C175483 Lacrimal Gland Mucosa-Associated Lymphoid Tissue Lymphoma 10 125413 -NCIT:C175484 Lacrimal Drainage System Mucosa-Associated Lymphoid Tissue Lymphoma 10 125414 -NCIT:C182357 Diffusion Restriction 9 125415 -NCIT:C44960 Chlamydia Psittaci-Associated Ocular Adnexal Mucosa-Associated Lymphoid Tissue Lymphoma 9 125416 -NCIT:C39878 Bladder Mucosa-Associated Lymphoid Tissue Lymphoma 8 125417 -NCIT:C45380 Thymic Mucosa-Associated Lymphoid Tissue Lymphoma 8 125418 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 125419 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 125420 -NCIT:C5264 Lung Mucosa-Associated Lymphoid Tissue Lymphoma 8 125421 -NCIT:C7230 Primary Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 125422 -NCIT:C45163 Borrelia Burgdoferi-Associated Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 125423 -NCIT:C7601 Thyroid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 8 125424 -NCIT:C95991 Dural Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 125425 -NCIT:C4684 Nasal Type Extranodal NK/T-Cell Lymphoma 7 125426 -NCIT:C115154 Adult Nasal Type Extranodal NK/T-Cell Lymphoma 8 125427 -NCIT:C141296 Nasal Type NK/T-Cell Lymphoma by Ann Arbor Stage 8 125428 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 9 125429 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 9 125430 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 9 125431 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 9 125432 -NCIT:C162468 Testicular Nasal Type Extranodal NK/T-Cell Lymphoma 8 125433 -NCIT:C173172 Sinonasal Extranodal NK/T-Cell Lymphoma 8 125434 -NCIT:C173173 Nasal Cavity Extranodal NK/T-Cell Lymphoma 9 125435 -NCIT:C45268 Cutaneous Nasal Type Extranodal NK/T-Cell Lymphoma 8 125436 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 8 125437 -NCIT:C68692 Childhood Nasal Type Extranodal NK/T-Cell Lymphoma 8 125438 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 8 125439 -NCIT:C27693 EBV-Related Non-Hodgkin Lymphoma 6 125440 -NCIT:C139288 Primary EBV-Positive Nodal T-Cell or NK-Cell Lymphoma 7 125441 -NCIT:C27694 EBV-Related Burkitt Lymphoma 7 125442 -NCIT:C27122 Endemic Burkitt Lymphoma 8 125443 -NCIT:C7933 Grade III Lymphomatoid Granulomatosis 7 125444 -NCIT:C115150 Adult Grade III Lymphomatoid Granulomatosis 8 125445 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 9 125446 -NCIT:C115204 Childhood Grade III Lymphomatoid Granulomatosis 8 125447 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 9 125448 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 8 125449 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 9 125450 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 9 125451 -NCIT:C80281 EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 7 125452 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 125453 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 125454 -NCIT:C188456 Childhood EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 125455 -NCIT:C188457 Adult EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 125456 -NCIT:C80374 Systemic EBV-Positive T-Cell Lymphoma of Childhood 7 125457 -NCIT:C27762 Helicobacter Pylori-Related Non-Hodgkin Lymphoma 6 125458 -NCIT:C27763 Helicobacter Pylori-Associated Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 7 125459 -NCIT:C3457 B-Cell Non-Hodgkin Lymphoma 6 125460 -NCIT:C141243 B-Cell Non-Hodgkin Lymphoma by Ann Arbor Stage 7 125461 -NCIT:C141250 B Lymphoblastic Lymphoma by Ann Arbor Stage 8 125462 -NCIT:C8871 Ann Arbor Stage I B Lymphoblastic Lymphoma 9 125463 -NCIT:C8872 Ann Arbor Stage III B Lymphoblastic Lymphoma 9 125464 -NCIT:C8873 Ann Arbor Stage IV B Lymphoblastic Lymphoma 9 125465 -NCIT:C8937 Ann Arbor Stage II B Lymphoblastic Lymphoma 9 125466 -NCIT:C141253 Burkitt Lymphoma by Ann Arbor Stage 8 125467 -NCIT:C5084 Ann Arbor Stage IV Burkitt Lymphoma 9 125468 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 10 125469 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 10 125470 -NCIT:C8848 Ann Arbor Stage I Burkitt Lymphoma 9 125471 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 10 125472 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 10 125473 -NCIT:C8849 Ann Arbor Stage II Burkitt Lymphoma 9 125474 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 10 125475 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 11 125476 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 11 125477 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 10 125478 -NCIT:C8850 Ann Arbor Stage III Burkitt Lymphoma 9 125479 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 10 125480 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 10 125481 -NCIT:C141254 Diffuse Large B-Cell Lymphoma by Ann Arbor Stage 8 125482 -NCIT:C141262 Primary Mediastinal (Thymic) Large B-Cell Lymphoma by Ann Arbor Stage 9 125483 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 125484 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 125485 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 125486 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 125487 -NCIT:C141263 Centroblastic Lymphoma by Ann Arbor Stage 9 125488 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 10 125489 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 10 125490 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 10 125491 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 10 125492 -NCIT:C8854 Ann Arbor Stage I Diffuse Large B-Cell Lymphoma 9 125493 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 10 125494 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 125495 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 10 125496 -NCIT:C8855 Ann Arbor Stage II Diffuse Large B-Cell Lymphoma 9 125497 -NCIT:C171158 Ann Arbor Stage IIX (Bulky) Diffuse Large B-Cell Lymphoma 10 125498 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 10 125499 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 11 125500 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 11 125501 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 125502 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 10 125503 -NCIT:C8856 Ann Arbor Stage III Diffuse Large B-Cell Lymphoma 9 125504 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 10 125505 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 125506 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 10 125507 -NCIT:C8857 Ann Arbor Stage IV Diffuse Large B-Cell Lymphoma 9 125508 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 10 125509 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 125510 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 10 125511 -NCIT:C141255 Follicular Lymphoma by Ann Arbor Stage 8 125512 -NCIT:C5006 Ann Arbor Stage IV Follicular Lymphoma 9 125513 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 10 125514 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 10 125515 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 10 125516 -NCIT:C8859 Ann Arbor Stage I Follicular Lymphoma 9 125517 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 10 125518 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 10 125519 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 10 125520 -NCIT:C8860 Ann Arbor Stage II Follicular Lymphoma 9 125521 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 10 125522 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 11 125523 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 11 125524 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 10 125525 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 11 125526 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 11 125527 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 10 125528 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 11 125529 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 11 125530 -NCIT:C8861 Ann Arbor Stage III Follicular Lymphoma 9 125531 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 10 125532 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 10 125533 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 10 125534 -NCIT:C141256 Lymphoplasmacytic Lymphoma by Ann Arbor Stage 8 125535 -NCIT:C8653 Ann Arbor Stage I Lymphoplasmacytic Lymphoma 9 125536 -NCIT:C8654 Ann Arbor Stage II Lymphoplasmacytic Lymphoma 9 125537 -NCIT:C8655 Ann Arbor Stage III Lymphoplasmacytic Lymphoma 9 125538 -NCIT:C8656 Ann Arbor Stage IV Lymphoplasmacytic Lymphoma 9 125539 -NCIT:C141257 Mantle Cell Lymphoma by Ann Arbor Stage 8 125540 -NCIT:C8465 Ann Arbor Stage I Mantle Cell Lymphoma 9 125541 -NCIT:C8483 Ann Arbor Stage III Mantle Cell Lymphoma 9 125542 -NCIT:C8486 Ann Arbor Stage IV Mantle Cell Lymphoma 9 125543 -NCIT:C9202 Ann Arbor Stage II Mantle Cell Lymphoma 9 125544 -NCIT:C8473 Ann Arbor Stage II Contiguous Mantle Cell Lymphoma 10 125545 -NCIT:C9198 Ann Arbor Stage II Non-Contiguous Mantle Cell Lymphoma 10 125546 -NCIT:C141258 Marginal Zone Lymphoma by Ann Arbor Stage 8 125547 -NCIT:C141260 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue by Ann Arbor Stage 9 125548 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 125549 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 125550 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 125551 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 125552 -NCIT:C141261 Nodal Marginal Zone Lymphoma by Ann Arbor Stage 9 125553 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 10 125554 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 10 125555 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 10 125556 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 10 125557 -NCIT:C68678 Ann Arbor Stage I Marginal Zone Lymphoma 9 125558 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 125559 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 10 125560 -NCIT:C68679 Ann Arbor Stage II Marginal Zone Lymphoma 9 125561 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 125562 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 10 125563 -NCIT:C68682 Ann Arbor Stage III Marginal Zone Lymphoma 9 125564 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 125565 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 10 125566 -NCIT:C68683 Ann Arbor Stage IV Marginal Zone Lymphoma 9 125567 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 125568 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 10 125569 -NCIT:C141259 Small Lymphocytic Lymphoma by Ann Arbor Stage 8 125570 -NCIT:C8070 Ann Arbor Stage I Small Lymphocytic Lymphoma 9 125571 -NCIT:C8115 Ann Arbor Stage II Small Lymphocytic Lymphoma 9 125572 -NCIT:C8128 Ann Arbor Stage III Small Lymphocytic Lymphoma 9 125573 -NCIT:C8141 Ann Arbor Stage IV Small Lymphocytic Lymphoma 9 125574 -NCIT:C27308 Ann Arbor Stage I B-Cell Non-Hodgkin Lymphoma 8 125575 -NCIT:C68678 Ann Arbor Stage I Marginal Zone Lymphoma 9 125576 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 125577 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 10 125578 -NCIT:C8070 Ann Arbor Stage I Small Lymphocytic Lymphoma 9 125579 -NCIT:C8465 Ann Arbor Stage I Mantle Cell Lymphoma 9 125580 -NCIT:C8653 Ann Arbor Stage I Lymphoplasmacytic Lymphoma 9 125581 -NCIT:C8848 Ann Arbor Stage I Burkitt Lymphoma 9 125582 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 10 125583 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 10 125584 -NCIT:C8854 Ann Arbor Stage I Diffuse Large B-Cell Lymphoma 9 125585 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 10 125586 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 125587 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 10 125588 -NCIT:C8859 Ann Arbor Stage I Follicular Lymphoma 9 125589 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 10 125590 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 10 125591 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 10 125592 -NCIT:C8871 Ann Arbor Stage I B Lymphoblastic Lymphoma 9 125593 -NCIT:C8843 Ann Arbor Stage II B-Cell Non-Hodgkin Lymphoma 8 125594 -NCIT:C68679 Ann Arbor Stage II Marginal Zone Lymphoma 9 125595 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 125596 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 10 125597 -NCIT:C8115 Ann Arbor Stage II Small Lymphocytic Lymphoma 9 125598 -NCIT:C8654 Ann Arbor Stage II Lymphoplasmacytic Lymphoma 9 125599 -NCIT:C8849 Ann Arbor Stage II Burkitt Lymphoma 9 125600 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 10 125601 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 11 125602 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 11 125603 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 10 125604 -NCIT:C8855 Ann Arbor Stage II Diffuse Large B-Cell Lymphoma 9 125605 -NCIT:C171158 Ann Arbor Stage IIX (Bulky) Diffuse Large B-Cell Lymphoma 10 125606 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 10 125607 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 11 125608 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 11 125609 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 125610 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 10 125611 -NCIT:C8860 Ann Arbor Stage II Follicular Lymphoma 9 125612 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 10 125613 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 11 125614 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 11 125615 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 10 125616 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 11 125617 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 11 125618 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 10 125619 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 11 125620 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 11 125621 -NCIT:C8937 Ann Arbor Stage II B Lymphoblastic Lymphoma 9 125622 -NCIT:C9202 Ann Arbor Stage II Mantle Cell Lymphoma 9 125623 -NCIT:C8473 Ann Arbor Stage II Contiguous Mantle Cell Lymphoma 10 125624 -NCIT:C9198 Ann Arbor Stage II Non-Contiguous Mantle Cell Lymphoma 10 125625 -NCIT:C8844 Ann Arbor Stage III B-Cell Non-Hodgkin Lymphoma 8 125626 -NCIT:C68682 Ann Arbor Stage III Marginal Zone Lymphoma 9 125627 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 125628 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 10 125629 -NCIT:C8128 Ann Arbor Stage III Small Lymphocytic Lymphoma 9 125630 -NCIT:C8483 Ann Arbor Stage III Mantle Cell Lymphoma 9 125631 -NCIT:C8655 Ann Arbor Stage III Lymphoplasmacytic Lymphoma 9 125632 -NCIT:C8850 Ann Arbor Stage III Burkitt Lymphoma 9 125633 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 10 125634 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 10 125635 -NCIT:C8856 Ann Arbor Stage III Diffuse Large B-Cell Lymphoma 9 125636 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 10 125637 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 125638 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 10 125639 -NCIT:C8861 Ann Arbor Stage III Follicular Lymphoma 9 125640 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 10 125641 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 10 125642 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 10 125643 -NCIT:C8872 Ann Arbor Stage III B Lymphoblastic Lymphoma 9 125644 -NCIT:C8845 Ann Arbor Stage IV B-Cell Non-Hodgkin Lymphoma 8 125645 -NCIT:C5006 Ann Arbor Stage IV Follicular Lymphoma 9 125646 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 10 125647 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 10 125648 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 10 125649 -NCIT:C5084 Ann Arbor Stage IV Burkitt Lymphoma 9 125650 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 10 125651 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 10 125652 -NCIT:C68683 Ann Arbor Stage IV Marginal Zone Lymphoma 9 125653 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 125654 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 10 125655 -NCIT:C8141 Ann Arbor Stage IV Small Lymphocytic Lymphoma 9 125656 -NCIT:C8486 Ann Arbor Stage IV Mantle Cell Lymphoma 9 125657 -NCIT:C8656 Ann Arbor Stage IV Lymphoplasmacytic Lymphoma 9 125658 -NCIT:C8857 Ann Arbor Stage IV Diffuse Large B-Cell Lymphoma 9 125659 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 10 125660 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 125661 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 10 125662 -NCIT:C8873 Ann Arbor Stage IV B Lymphoblastic Lymphoma 9 125663 -NCIT:C147948 Central Nervous System B-Cell Non-Hodgkin Lymphoma 7 125664 -NCIT:C71720 Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 125665 -NCIT:C129602 Central Nervous System Intravascular Large B-Cell Lymphoma 9 125666 -NCIT:C155797 Pituitary Gland Diffuse Large B-Cell Lymphoma 9 125667 -NCIT:C157067 Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 125668 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 125669 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 125670 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 125671 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 125672 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 125673 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 125674 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 125675 -NCIT:C95991 Dural Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 125676 -NCIT:C178541 Aggressive B-Cell Non-Hodgkin Lymphoma 7 125677 -NCIT:C131911 Burkitt-Like Lymphoma with 11q Aberration 8 125678 -NCIT:C178553 Recurrent Aggressive B-Cell Non-Hodgkin Lymphoma 8 125679 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 125680 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 9 125681 -NCIT:C5008 Recurrent Burkitt Lymphoma 9 125682 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 10 125683 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 10 125684 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 9 125685 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 125686 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 10 125687 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 9 125688 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 10 125689 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 10 125690 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 9 125691 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 9 125692 -NCIT:C178555 Refractory Aggressive B-Cell Non-Hodgkin Lymphoma 8 125693 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 125694 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 9 125695 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 9 125696 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 10 125697 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 10 125698 -NCIT:C8847 Refractory Burkitt Lymphoma 9 125699 -NCIT:C8862 Refractory Mantle Cell Lymphoma 9 125700 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 9 125701 -NCIT:C2912 Burkitt Lymphoma 8 125702 -NCIT:C141253 Burkitt Lymphoma by Ann Arbor Stage 9 125703 -NCIT:C5084 Ann Arbor Stage IV Burkitt Lymphoma 10 125704 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 11 125705 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 11 125706 -NCIT:C8848 Ann Arbor Stage I Burkitt Lymphoma 10 125707 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 11 125708 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 11 125709 -NCIT:C8849 Ann Arbor Stage II Burkitt Lymphoma 10 125710 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 11 125711 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 12 125712 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 12 125713 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 11 125714 -NCIT:C8850 Ann Arbor Stage III Burkitt Lymphoma 10 125715 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 11 125716 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 11 125717 -NCIT:C168651 Cutaneous Burkitt Lymphoma 9 125718 -NCIT:C188075 Kidney Burkitt Lymphoma 9 125719 -NCIT:C27409 Small Intestinal Burkitt Lymphoma 9 125720 -NCIT:C27410 Small Intestinal Atypical Burkitt/Burkitt-Like Lymphoma 10 125721 -NCIT:C27694 EBV-Related Burkitt Lymphoma 9 125722 -NCIT:C27122 Endemic Burkitt Lymphoma 10 125723 -NCIT:C27914 Sporadic Burkitt Lymphoma 9 125724 -NCIT:C27915 Immunodeficiency-Related Burkitt Lymphoma 9 125725 -NCIT:C7244 Burkitt Lymphoma Post-Transplant Lymphoproliferative Disorder 10 125726 -NCIT:C7245 Burkitt-Like Lymphoma Post-Transplant Lymphoproliferative Disorder 11 125727 -NCIT:C7255 Methotrexate-Related Burkitt Lymphoma 10 125728 -NCIT:C8286 AIDS-Related Burkitt Lymphoma 10 125729 -NCIT:C27857 AIDS-Related Burkitt Lymphoma with Plasmacytoid Differentiation 11 125730 -NCIT:C40376 Breast Burkitt Lymphoma 9 125731 -NCIT:C5008 Recurrent Burkitt Lymphoma 9 125732 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 10 125733 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 10 125734 -NCIT:C5251 Gastric Burkitt Lymphoma 9 125735 -NCIT:C6917 Atypical Burkitt/Burkitt-Like Lymphoma 9 125736 -NCIT:C27410 Small Intestinal Atypical Burkitt/Burkitt-Like Lymphoma 10 125737 -NCIT:C7245 Burkitt-Like Lymphoma Post-Transplant Lymphoproliferative Disorder 10 125738 -NCIT:C7188 Classical Burkitt Lymphoma 9 125739 -NCIT:C7189 Burkitt Lymphoma with Plasmacytoid Differentiation 9 125740 -NCIT:C27857 AIDS-Related Burkitt Lymphoma with Plasmacytoid Differentiation 10 125741 -NCIT:C7309 Splenic Burkitt Lymphoma 9 125742 -NCIT:C8847 Refractory Burkitt Lymphoma 9 125743 -NCIT:C9062 Adult Burkitt Lymphoma 9 125744 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 10 125745 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 10 125746 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 11 125747 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 11 125748 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 10 125749 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 10 125750 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 10 125751 -NCIT:C9095 Childhood Burkitt Lymphoma 9 125752 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 10 125753 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 10 125754 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 10 125755 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 10 125756 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 10 125757 -NCIT:C96502 Colorectal Burkitt Lymphoma 9 125758 -NCIT:C27465 Colon Burkitt Lymphoma 10 125759 -NCIT:C3460 Grade 3 Follicular Lymphoma 8 125760 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 9 125761 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 10 125762 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 10 125763 -NCIT:C6859 Grade 3 Cutaneous Follicular Lymphoma 9 125764 -NCIT:C7191 Grade 3a Follicular Lymphoma 9 125765 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 10 125766 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 10 125767 -NCIT:C7192 Grade 3b Follicular Lymphoma 9 125768 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 10 125769 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 10 125770 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 9 125771 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 9 125772 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 10 125773 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 10 125774 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 9 125775 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 9 125776 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 9 125777 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 10 125778 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 10 125779 -NCIT:C36081 Diffuse Large B-Cell Lymphoma Activated B-Cell Type 8 125780 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 9 125781 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 9 125782 -NCIT:C4337 Mantle Cell Lymphoma 8 125783 -NCIT:C141257 Mantle Cell Lymphoma by Ann Arbor Stage 9 125784 -NCIT:C8465 Ann Arbor Stage I Mantle Cell Lymphoma 10 125785 -NCIT:C8483 Ann Arbor Stage III Mantle Cell Lymphoma 10 125786 -NCIT:C8486 Ann Arbor Stage IV Mantle Cell Lymphoma 10 125787 -NCIT:C9202 Ann Arbor Stage II Mantle Cell Lymphoma 10 125788 -NCIT:C8473 Ann Arbor Stage II Contiguous Mantle Cell Lymphoma 11 125789 -NCIT:C9198 Ann Arbor Stage II Non-Contiguous Mantle Cell Lymphoma 11 125790 -NCIT:C161604 Prostate Mantle Cell Lymphoma 9 125791 -NCIT:C181210 Parotid Gland Mantle Cell Lymphoma 9 125792 -NCIT:C188080 Tonsillar Mantle Cell Lymphoma 9 125793 -NCIT:C27440 Gastric Mantle Cell Lymphoma 9 125794 -NCIT:C27441 Small Intestinal Mantle Cell Lymphoma 9 125795 -NCIT:C39747 Pleomorphic Variant Mantle Cell Lymphoma 9 125796 -NCIT:C45266 Cutaneous Mantle Cell Lymphoma 9 125797 -NCIT:C7229 Blastoid Variant Mantle Cell Lymphoma 9 125798 -NCIT:C7306 Splenic Mantle Cell Lymphoma 9 125799 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 9 125800 -NCIT:C8862 Refractory Mantle Cell Lymphoma 9 125801 -NCIT:C96505 Colorectal Mantle Cell Lymphoma 9 125802 -NCIT:C27411 Colon Mantle Cell Lymphoma 10 125803 -NCIT:C45194 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 8 125804 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 125805 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 125806 -NCIT:C45231 Diffuse Large B-Cell Lymphoma Unclassifiable 8 125807 -NCIT:C7212 AIDS-Related Diffuse Large B-cell Lymphoma 8 125808 -NCIT:C27858 AIDS-Related Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 9 125809 -NCIT:C27859 AIDS-Related Plasmablastic Lymphoma 9 125810 -NCIT:C38160 AIDS-Related Plasmablastic Lymphoma of Mucosa Site 10 125811 -NCIT:C9016 AIDS-Related Plasmablastic Lymphoma of the Oral Mucosa 11 125812 -NCIT:C8285 AIDS-Related Immunoblastic Lymphoma 9 125813 -NCIT:C9017 AIDS-Related Primary Effusion Lymphoma 9 125814 -NCIT:C7246 Diffuse Large B-Cell Lymphoma Post-Transplant Lymphoproliferative Disorder 8 125815 -NCIT:C7247 Anaplastic Lymphoma Post-Transplant Lymphoproliferative Disorder 9 125816 -NCIT:C7248 Centroblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 9 125817 -NCIT:C7249 Immunoblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 9 125818 -NCIT:C7933 Grade III Lymphomatoid Granulomatosis 8 125819 -NCIT:C115150 Adult Grade III Lymphomatoid Granulomatosis 9 125820 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 125821 -NCIT:C115204 Childhood Grade III Lymphomatoid Granulomatosis 9 125822 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 10 125823 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 9 125824 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 125825 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 10 125826 -NCIT:C8868 B Lymphoblastic Lymphoma 8 125827 -NCIT:C141250 B Lymphoblastic Lymphoma by Ann Arbor Stage 9 125828 -NCIT:C8871 Ann Arbor Stage I B Lymphoblastic Lymphoma 10 125829 -NCIT:C8872 Ann Arbor Stage III B Lymphoblastic Lymphoma 10 125830 -NCIT:C8873 Ann Arbor Stage IV B Lymphoblastic Lymphoma 10 125831 -NCIT:C8937 Ann Arbor Stage II B Lymphoblastic Lymphoma 10 125832 -NCIT:C7209 Childhood B Lymphoblastic Lymphoma 9 125833 -NCIT:C7310 Splenic B Lymphoblastic Lymphoma 9 125834 -NCIT:C7338 Adult B Lymphoblastic Lymphoma 9 125835 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 9 125836 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 9 125837 -NCIT:C7056 Mature B-Cell Non-Hodgkin Lymphoma 7 125838 -NCIT:C131911 Burkitt-Like Lymphoma with 11q Aberration 8 125839 -NCIT:C133494 Large B-Cell Lymphoma with IRF4 Rearrangement 8 125840 -NCIT:C188458 Childhood Large B-Cell Lymphoma with IRF4 Rearrangement 9 125841 -NCIT:C139681 Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 8 125842 -NCIT:C160232 Recurrent Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 9 125843 -NCIT:C160240 Refractory Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 9 125844 -NCIT:C165799 Recurrent Mature B-Cell Non-Hodgkin Lymphoma 8 125845 -NCIT:C158149 Recurrent Transformed B-Cell Non-Hodgkin Lymphoma 9 125846 -NCIT:C160232 Recurrent Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 10 125847 -NCIT:C186483 Recurrent Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 10 125848 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 11 125849 -NCIT:C5007 Recurrent Follicular Lymphoma 9 125850 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 10 125851 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 10 125852 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 10 125853 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 11 125854 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 11 125855 -NCIT:C5008 Recurrent Burkitt Lymphoma 9 125856 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 10 125857 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 10 125858 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 9 125859 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 10 125860 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 125861 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 10 125862 -NCIT:C8154 Recurrent Small Lymphocytic Lymphoma 9 125863 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 9 125864 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 9 125865 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 10 125866 -NCIT:C8852 Recurrent Diffuse Large B-Cell Lymphoma 9 125867 -NCIT:C138015 Recurrent Extranodal Diffuse Large B-cell Lymphoma 10 125868 -NCIT:C138025 Recurrent Intravascular Large B-Cell Lymphoma 10 125869 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 125870 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 125871 -NCIT:C156696 Recurrent T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 10 125872 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 10 125873 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 125874 -NCIT:C157679 Recurrent Primary Effusion Lymphoma 10 125875 -NCIT:C157683 Recurrent Plasmablastic Lymphoma 10 125876 -NCIT:C160229 Recurrent High Grade B-Cell Lymphoma 10 125877 -NCIT:C151980 Recurrent High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 11 125878 -NCIT:C162451 Recurrent High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 11 125879 -NCIT:C188788 Recurrent High Grade B-Cell Lymphoma, Not Otherwise Specified 11 125880 -NCIT:C165240 Recurrent Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 125881 -NCIT:C160230 Recurrent Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 11 125882 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 11 125883 -NCIT:C182035 Recurrent Immunoblastic Lymphoma 11 125884 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 12 125885 -NCIT:C8926 Recurrent Centroblastic Lymphoma 11 125886 -NCIT:C183140 Recurrent Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 10 125887 -NCIT:C188790 Recurrent ALK-Positive Large B-Cell Lymphoma 10 125888 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 10 125889 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 11 125890 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 11 125891 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 125892 -NCIT:C171299 Indolent B-Cell Non-Hodgkin Lymphoma 8 125893 -NCIT:C175451 Primary Uveal Non-Hodgkin Lymphoma 9 125894 -NCIT:C175464 Primary Choroidal Non-Hodgkin Lymphoma 10 125895 -NCIT:C175466 Primary Ciliary Body Non-Hodgkin Lymphoma 10 125896 -NCIT:C175467 Primary Iris Non-Hodgkin Lymphoma 10 125897 -NCIT:C3212 Lymphoplasmacytic Lymphoma 9 125898 -NCIT:C141256 Lymphoplasmacytic Lymphoma by Ann Arbor Stage 10 125899 -NCIT:C8653 Ann Arbor Stage I Lymphoplasmacytic Lymphoma 11 125900 -NCIT:C8654 Ann Arbor Stage II Lymphoplasmacytic Lymphoma 11 125901 -NCIT:C8655 Ann Arbor Stage III Lymphoplasmacytic Lymphoma 11 125902 -NCIT:C8656 Ann Arbor Stage IV Lymphoplasmacytic Lymphoma 11 125903 -NCIT:C7305 Splenic Lymphoplasmacytic Lymphoma 10 125904 -NCIT:C80307 Waldenstrom Macroglobulinemia 10 125905 -NCIT:C115212 Familial Waldenstrom Macroglobulinemia 11 125906 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 11 125907 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 11 125908 -NCIT:C155910 Smoldering Waldenstrom Macroglobulinemia 11 125909 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 10 125910 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 11 125911 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 10 125912 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 11 125913 -NCIT:C3465 Grade 1 Follicular Lymphoma 9 125914 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 10 125915 -NCIT:C7220 Grade 1 Cutaneous Follicular Lymphoma 10 125916 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 10 125917 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 10 125918 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 11 125919 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 11 125920 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 10 125921 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 10 125922 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 10 125923 -NCIT:C37203 Small Lymphocytic Lymphoma with Immunoglobulin Heavy Chain Variable-Region Gene Somatic Hypermutation 9 125924 -NCIT:C4341 Marginal Zone Lymphoma 9 125925 -NCIT:C141258 Marginal Zone Lymphoma by Ann Arbor Stage 10 125926 -NCIT:C141260 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue by Ann Arbor Stage 11 125927 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 125928 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 125929 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 125930 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 125931 -NCIT:C141261 Nodal Marginal Zone Lymphoma by Ann Arbor Stage 11 125932 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 12 125933 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 12 125934 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 12 125935 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 12 125936 -NCIT:C68678 Ann Arbor Stage I Marginal Zone Lymphoma 11 125937 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 125938 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 12 125939 -NCIT:C68679 Ann Arbor Stage II Marginal Zone Lymphoma 11 125940 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 125941 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 12 125942 -NCIT:C68682 Ann Arbor Stage III Marginal Zone Lymphoma 11 125943 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 125944 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 12 125945 -NCIT:C68683 Ann Arbor Stage IV Marginal Zone Lymphoma 11 125946 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 125947 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 12 125948 -NCIT:C143085 Refractory Marginal Zone Lymphoma 10 125949 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 11 125950 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 125951 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 11 125952 -NCIT:C172360 Advanced Marginal Zone Lymphoma 10 125953 -NCIT:C3898 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 125954 -NCIT:C123394 Childhood Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 125955 -NCIT:C141260 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue by Ann Arbor Stage 11 125956 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 125957 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 125958 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 125959 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 125960 -NCIT:C172844 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue Involving the Digestive System 11 125961 -NCIT:C5266 Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 12 125962 -NCIT:C27763 Helicobacter Pylori-Associated Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 13 125963 -NCIT:C5635 Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 12 125964 -NCIT:C45166 Campylobacter Jejuni-Associated Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 13 125965 -NCIT:C5768 Liver Mucosa-Associated Lymphoid Tissue Lymphoma 12 125966 -NCIT:C95626 Esophageal Mucosa-Associated Lymphoid Tissue Lymphoma 12 125967 -NCIT:C96506 Colorectal Mucosa-Associated Lymphoid Tissue Lymphoma 12 125968 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 13 125969 -NCIT:C173693 Salivary Gland Mucosa-Associated Lymphoid Tissue Lymphoma 11 125970 -NCIT:C35687 Parotid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 12 125971 -NCIT:C181910 Endometrial Mucosa-Associated Lymphoid Tissue Lymphoma 11 125972 -NCIT:C35688 Breast Mucosa-Associated Lymphoid Tissue Lymphoma 11 125973 -NCIT:C35689 Ocular Adnexal Mucosa-Associated Lymphoid Tissue Lymphoma 11 125974 -NCIT:C175431 Conjunctival Mucosa-Associated Lymphoid Tissue Lymphoma 12 125975 -NCIT:C175482 Lacrimal System Mucosa-Associated Lymphoid Tissue Lymphoma 12 125976 -NCIT:C175483 Lacrimal Gland Mucosa-Associated Lymphoid Tissue Lymphoma 13 125977 -NCIT:C175484 Lacrimal Drainage System Mucosa-Associated Lymphoid Tissue Lymphoma 13 125978 -NCIT:C182357 Diffusion Restriction 12 125979 -NCIT:C44960 Chlamydia Psittaci-Associated Ocular Adnexal Mucosa-Associated Lymphoid Tissue Lymphoma 12 125980 -NCIT:C39878 Bladder Mucosa-Associated Lymphoid Tissue Lymphoma 11 125981 -NCIT:C45380 Thymic Mucosa-Associated Lymphoid Tissue Lymphoma 11 125982 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 125983 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 125984 -NCIT:C5264 Lung Mucosa-Associated Lymphoid Tissue Lymphoma 11 125985 -NCIT:C7230 Primary Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 125986 -NCIT:C45163 Borrelia Burgdoferi-Associated Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 125987 -NCIT:C7601 Thyroid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 11 125988 -NCIT:C95991 Dural Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 125989 -NCIT:C4663 Splenic Marginal Zone Lymphoma 10 125990 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 11 125991 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 11 125992 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 10 125993 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 11 125994 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 125995 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 11 125996 -NCIT:C8863 Nodal Marginal Zone Lymphoma 10 125997 -NCIT:C141261 Nodal Marginal Zone Lymphoma by Ann Arbor Stage 11 125998 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 12 125999 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 12 126000 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 12 126001 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 12 126002 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 11 126003 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 11 126004 -NCIT:C80299 Pediatric Nodal Marginal Zone Lymphoma 11 126005 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 9 126006 -NCIT:C7264 Diffuse Follicular Lymphoma 9 126007 -NCIT:C7194 Grade 2 Diffuse Follicular Lymphoma 10 126008 -NCIT:C9464 Grade 1 Diffuse Follicular Lymphoma 10 126009 -NCIT:C8968 Grade 2 Follicular Lymphoma 9 126010 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 10 126011 -NCIT:C7219 Grade 2 Cutaneous Follicular Lymphoma 10 126012 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 10 126013 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 10 126014 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 11 126015 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 11 126016 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 10 126017 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 10 126018 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 10 126019 -NCIT:C179717 Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 8 126020 -NCIT:C156699 Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 9 126021 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 10 126022 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 10 126023 -NCIT:C157625 Transformed Small Lymphocytic Lymphoma to Diffuse Large B-Cell Lymphoma 9 126024 -NCIT:C185134 Transformed Lymphoplasmacytic Lymphoma to Diffuse Large B-Cell Lymphoma 9 126025 -NCIT:C185135 Transformed Waldenstrom Macroglobulinemia to Diffuse Large B-Cell Lymphoma 10 126026 -NCIT:C186483 Recurrent Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 9 126027 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 10 126028 -NCIT:C186484 Refractory Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 9 126029 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 10 126030 -NCIT:C2912 Burkitt Lymphoma 8 126031 -NCIT:C141253 Burkitt Lymphoma by Ann Arbor Stage 9 126032 -NCIT:C5084 Ann Arbor Stage IV Burkitt Lymphoma 10 126033 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 11 126034 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 11 126035 -NCIT:C8848 Ann Arbor Stage I Burkitt Lymphoma 10 126036 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 11 126037 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 11 126038 -NCIT:C8849 Ann Arbor Stage II Burkitt Lymphoma 10 126039 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 11 126040 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 12 126041 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 12 126042 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 11 126043 -NCIT:C8850 Ann Arbor Stage III Burkitt Lymphoma 10 126044 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 11 126045 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 11 126046 -NCIT:C168651 Cutaneous Burkitt Lymphoma 9 126047 -NCIT:C188075 Kidney Burkitt Lymphoma 9 126048 -NCIT:C27409 Small Intestinal Burkitt Lymphoma 9 126049 -NCIT:C27410 Small Intestinal Atypical Burkitt/Burkitt-Like Lymphoma 10 126050 -NCIT:C27694 EBV-Related Burkitt Lymphoma 9 126051 -NCIT:C27122 Endemic Burkitt Lymphoma 10 126052 -NCIT:C27914 Sporadic Burkitt Lymphoma 9 126053 -NCIT:C27915 Immunodeficiency-Related Burkitt Lymphoma 9 126054 -NCIT:C7244 Burkitt Lymphoma Post-Transplant Lymphoproliferative Disorder 10 126055 -NCIT:C7245 Burkitt-Like Lymphoma Post-Transplant Lymphoproliferative Disorder 11 126056 -NCIT:C7255 Methotrexate-Related Burkitt Lymphoma 10 126057 -NCIT:C8286 AIDS-Related Burkitt Lymphoma 10 126058 -NCIT:C27857 AIDS-Related Burkitt Lymphoma with Plasmacytoid Differentiation 11 126059 -NCIT:C40376 Breast Burkitt Lymphoma 9 126060 -NCIT:C5008 Recurrent Burkitt Lymphoma 9 126061 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 10 126062 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 10 126063 -NCIT:C5251 Gastric Burkitt Lymphoma 9 126064 -NCIT:C6917 Atypical Burkitt/Burkitt-Like Lymphoma 9 126065 -NCIT:C27410 Small Intestinal Atypical Burkitt/Burkitt-Like Lymphoma 10 126066 -NCIT:C7245 Burkitt-Like Lymphoma Post-Transplant Lymphoproliferative Disorder 10 126067 -NCIT:C7188 Classical Burkitt Lymphoma 9 126068 -NCIT:C7189 Burkitt Lymphoma with Plasmacytoid Differentiation 9 126069 -NCIT:C27857 AIDS-Related Burkitt Lymphoma with Plasmacytoid Differentiation 10 126070 -NCIT:C7309 Splenic Burkitt Lymphoma 9 126071 -NCIT:C8847 Refractory Burkitt Lymphoma 9 126072 -NCIT:C9062 Adult Burkitt Lymphoma 9 126073 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 10 126074 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 10 126075 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 11 126076 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 11 126077 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 10 126078 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 10 126079 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 10 126080 -NCIT:C9095 Childhood Burkitt Lymphoma 9 126081 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 10 126082 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 10 126083 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 10 126084 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 10 126085 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 10 126086 -NCIT:C96502 Colorectal Burkitt Lymphoma 9 126087 -NCIT:C27465 Colon Burkitt Lymphoma 10 126088 -NCIT:C3082 Heavy Chain Disease 8 126089 -NCIT:C3083 Gamma Heavy Chain Disease 9 126090 -NCIT:C3132 Alpha Heavy Chain Disease 9 126091 -NCIT:C3892 Mu Heavy Chain Disease 9 126092 -NCIT:C3209 Follicular Lymphoma 8 126093 -NCIT:C138185 Duodenal-Type Follicular Lymphoma 9 126094 -NCIT:C138186 Predominantly Diffuse Follicular Lymphoma with 1p36 Deletion 9 126095 -NCIT:C141255 Follicular Lymphoma by Ann Arbor Stage 9 126096 -NCIT:C5006 Ann Arbor Stage IV Follicular Lymphoma 10 126097 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 11 126098 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 11 126099 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 11 126100 -NCIT:C8859 Ann Arbor Stage I Follicular Lymphoma 10 126101 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 11 126102 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 11 126103 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 11 126104 -NCIT:C8860 Ann Arbor Stage II Follicular Lymphoma 10 126105 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 11 126106 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 12 126107 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 12 126108 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 11 126109 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 12 126110 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 12 126111 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 11 126112 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 12 126113 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 12 126114 -NCIT:C8861 Ann Arbor Stage III Follicular Lymphoma 10 126115 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 11 126116 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 11 126117 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 11 126118 -NCIT:C150589 Testicular Follicular Lymphoma 9 126119 -NCIT:C156410 Thyroid Gland Follicular Lymphoma 9 126120 -NCIT:C161603 Prostate Follicular Lymphoma 9 126121 -NCIT:C172359 Advanced Follicular Lymphoma 9 126122 -NCIT:C173715 Salivary Gland Follicular Lymphoma 9 126123 -NCIT:C173716 Parotid Gland Follicular Lymphoma 10 126124 -NCIT:C175430 Conjunctival Follicular Lymphoma 9 126125 -NCIT:C175488 Lacrimal Gland Follicular Lymphoma 9 126126 -NCIT:C181211 Lung Follicular Lymphoma 9 126127 -NCIT:C3460 Grade 3 Follicular Lymphoma 9 126128 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 10 126129 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 11 126130 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 11 126131 -NCIT:C6859 Grade 3 Cutaneous Follicular Lymphoma 10 126132 -NCIT:C7191 Grade 3a Follicular Lymphoma 10 126133 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 11 126134 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 11 126135 -NCIT:C7192 Grade 3b Follicular Lymphoma 10 126136 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 11 126137 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 11 126138 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 10 126139 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 10 126140 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 11 126141 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 11 126142 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 10 126143 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 10 126144 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 10 126145 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 11 126146 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 11 126147 -NCIT:C3465 Grade 1 Follicular Lymphoma 9 126148 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 10 126149 -NCIT:C7220 Grade 1 Cutaneous Follicular Lymphoma 10 126150 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 10 126151 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 10 126152 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 11 126153 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 11 126154 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 10 126155 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 10 126156 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 10 126157 -NCIT:C37209 Diffuse Blastoid B-Cell Lymphoma 9 126158 -NCIT:C40377 Breast Follicular Lymphoma 9 126159 -NCIT:C5007 Recurrent Follicular Lymphoma 9 126160 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 10 126161 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 10 126162 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 10 126163 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 11 126164 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 11 126165 -NCIT:C7218 Cutaneous Follicular Lymphoma 9 126166 -NCIT:C6859 Grade 3 Cutaneous Follicular Lymphoma 10 126167 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 10 126168 -NCIT:C7219 Grade 2 Cutaneous Follicular Lymphoma 10 126169 -NCIT:C7220 Grade 1 Cutaneous Follicular Lymphoma 10 126170 -NCIT:C7254 Methotrexate-Associated Follicular Lymphoma 9 126171 -NCIT:C7264 Diffuse Follicular Lymphoma 9 126172 -NCIT:C7194 Grade 2 Diffuse Follicular Lymphoma 10 126173 -NCIT:C9464 Grade 1 Diffuse Follicular Lymphoma 10 126174 -NCIT:C7307 Splenic Follicular Lymphoma 9 126175 -NCIT:C80297 Pediatric-Type Follicular Lymphoma 9 126176 -NCIT:C80298 Intestinal Follicular Lymphoma 9 126177 -NCIT:C96056 Small Intestinal Follicular Lymphoma 10 126178 -NCIT:C8858 Refractory Follicular Lymphoma 9 126179 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 10 126180 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 10 126181 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 10 126182 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 11 126183 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 11 126184 -NCIT:C8968 Grade 2 Follicular Lymphoma 9 126185 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 10 126186 -NCIT:C7219 Grade 2 Cutaneous Follicular Lymphoma 10 126187 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 10 126188 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 10 126189 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 11 126190 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 11 126191 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 10 126192 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 10 126193 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 10 126194 -NCIT:C4337 Mantle Cell Lymphoma 8 126195 -NCIT:C141257 Mantle Cell Lymphoma by Ann Arbor Stage 9 126196 -NCIT:C8465 Ann Arbor Stage I Mantle Cell Lymphoma 10 126197 -NCIT:C8483 Ann Arbor Stage III Mantle Cell Lymphoma 10 126198 -NCIT:C8486 Ann Arbor Stage IV Mantle Cell Lymphoma 10 126199 -NCIT:C9202 Ann Arbor Stage II Mantle Cell Lymphoma 10 126200 -NCIT:C8473 Ann Arbor Stage II Contiguous Mantle Cell Lymphoma 11 126201 -NCIT:C9198 Ann Arbor Stage II Non-Contiguous Mantle Cell Lymphoma 11 126202 -NCIT:C161604 Prostate Mantle Cell Lymphoma 9 126203 -NCIT:C181210 Parotid Gland Mantle Cell Lymphoma 9 126204 -NCIT:C188080 Tonsillar Mantle Cell Lymphoma 9 126205 -NCIT:C27440 Gastric Mantle Cell Lymphoma 9 126206 -NCIT:C27441 Small Intestinal Mantle Cell Lymphoma 9 126207 -NCIT:C39747 Pleomorphic Variant Mantle Cell Lymphoma 9 126208 -NCIT:C45266 Cutaneous Mantle Cell Lymphoma 9 126209 -NCIT:C7229 Blastoid Variant Mantle Cell Lymphoma 9 126210 -NCIT:C7306 Splenic Mantle Cell Lymphoma 9 126211 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 9 126212 -NCIT:C8862 Refractory Mantle Cell Lymphoma 9 126213 -NCIT:C96505 Colorectal Mantle Cell Lymphoma 9 126214 -NCIT:C27411 Colon Mantle Cell Lymphoma 10 126215 -NCIT:C6858 Primary Cutaneous B-Cell Non-Hodgkin Lymphoma 8 126216 -NCIT:C45193 Primary Cutaneous Diffuse Large B-Cell Lymphoma 9 126217 -NCIT:C45194 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 126218 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 126219 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 126220 -NCIT:C45213 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Other 10 126221 -NCIT:C45214 Primary Cutaneous Intravascular Large B-Cell Lymphoma 11 126222 -NCIT:C45215 Primary Cutaneous T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 11 126223 -NCIT:C45216 Primary Cutaneous Plasmablastic Lymphoma 11 126224 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 9 126225 -NCIT:C7230 Primary Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 126226 -NCIT:C45163 Borrelia Burgdoferi-Associated Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 126227 -NCIT:C7228 Refractory Mature B-Cell Non-Hodgkin Lymphoma 8 126228 -NCIT:C143085 Refractory Marginal Zone Lymphoma 9 126229 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 10 126230 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 126231 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 10 126232 -NCIT:C158150 Refractory Transformed B-Cell Non-Hodgkin Lymphoma 9 126233 -NCIT:C160240 Refractory Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 10 126234 -NCIT:C186484 Refractory Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 10 126235 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 11 126236 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 9 126237 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 10 126238 -NCIT:C8846 Refractory Small Lymphocytic Lymphoma 9 126239 -NCIT:C8847 Refractory Burkitt Lymphoma 9 126240 -NCIT:C8853 Refractory Diffuse Large B-Cell Lymphoma 9 126241 -NCIT:C138018 Refractory Extranodal Diffuse Large B-cell Lymphoma 10 126242 -NCIT:C138026 Refractory Intravascular Large B-Cell Lymphoma 10 126243 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 126244 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 126245 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 10 126246 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 126247 -NCIT:C157678 Refractory T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 10 126248 -NCIT:C157680 Refractory Primary Effusion Lymphoma 10 126249 -NCIT:C157684 Refractory Plasmablastic Lymphoma 10 126250 -NCIT:C160233 Refractory High Grade B-Cell Lymphoma 10 126251 -NCIT:C151979 Refractory High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 11 126252 -NCIT:C162453 Refractory High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 11 126253 -NCIT:C188789 Refractory High Grade B-Cell Lymphoma, Not Otherwise Specified 11 126254 -NCIT:C165241 Refractory Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 126255 -NCIT:C160238 Refractory Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 11 126256 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 11 126257 -NCIT:C182034 Refractory Immunoblastic Lymphoma 11 126258 -NCIT:C8927 Refractory Centroblastic Lymphoma 11 126259 -NCIT:C183142 Refractory Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 10 126260 -NCIT:C188791 Refractory ALK-Positive Large B-Cell Lymphoma 10 126261 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 126262 -NCIT:C8858 Refractory Follicular Lymphoma 9 126263 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 10 126264 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 10 126265 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 10 126266 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 11 126267 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 11 126268 -NCIT:C8862 Refractory Mantle Cell Lymphoma 9 126269 -NCIT:C7540 Small Lymphocytic Lymphoma 8 126270 -NCIT:C141259 Small Lymphocytic Lymphoma by Ann Arbor Stage 9 126271 -NCIT:C8070 Ann Arbor Stage I Small Lymphocytic Lymphoma 10 126272 -NCIT:C8115 Ann Arbor Stage II Small Lymphocytic Lymphoma 10 126273 -NCIT:C8128 Ann Arbor Stage III Small Lymphocytic Lymphoma 10 126274 -NCIT:C8141 Ann Arbor Stage IV Small Lymphocytic Lymphoma 10 126275 -NCIT:C161605 Prostate Small Lymphocytic Lymphoma 9 126276 -NCIT:C36273 Small Lymphocytic Lymphoma with Plasmacytoid Differentiation 9 126277 -NCIT:C37203 Small Lymphocytic Lymphoma with Immunoglobulin Heavy Chain Variable-Region Gene Somatic Hypermutation 9 126278 -NCIT:C37206 Small Lymphocytic Lymphoma with Unmutated Immunoglobulin Heavy Chain Variable-Region Gene 9 126279 -NCIT:C7304 Splenic Small Lymphocytic Lymphoma 9 126280 -NCIT:C8154 Recurrent Small Lymphocytic Lymphoma 9 126281 -NCIT:C8846 Refractory Small Lymphocytic Lymphoma 9 126282 -NCIT:C80309 Splenic Diffuse Red Pulp Small B-Cell Lymphoma 8 126283 -NCIT:C8851 Diffuse Large B-Cell Lymphoma 8 126284 -NCIT:C138211 High Grade B-Cell Lymphoma 9 126285 -NCIT:C138195 High Grade B-Cell Lymphoma with MYC and BCL2 and/or BCL6 Rearrangements 10 126286 -NCIT:C125904 High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 11 126287 -NCIT:C151979 Refractory High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 12 126288 -NCIT:C151980 Recurrent High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 12 126289 -NCIT:C131913 High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 11 126290 -NCIT:C162451 Recurrent High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 12 126291 -NCIT:C162453 Refractory High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 12 126292 -NCIT:C160229 Recurrent High Grade B-Cell Lymphoma 10 126293 -NCIT:C151980 Recurrent High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 11 126294 -NCIT:C162451 Recurrent High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 11 126295 -NCIT:C188788 Recurrent High Grade B-Cell Lymphoma, Not Otherwise Specified 11 126296 -NCIT:C160233 Refractory High Grade B-Cell Lymphoma 10 126297 -NCIT:C151979 Refractory High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 11 126298 -NCIT:C162453 Refractory High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 11 126299 -NCIT:C188789 Refractory High Grade B-Cell Lymphoma, Not Otherwise Specified 11 126300 -NCIT:C80291 High Grade B-Cell Lymphoma, Not Otherwise Specified 10 126301 -NCIT:C188788 Recurrent High Grade B-Cell Lymphoma, Not Otherwise Specified 11 126302 -NCIT:C188789 Refractory High Grade B-Cell Lymphoma, Not Otherwise Specified 11 126303 -NCIT:C96057 Small Intestinal High Grade B-Cell Lymphoma, Not Otherwise Specified 11 126304 -NCIT:C96501 Colorectal High Grade B-Cell Lymphoma, Not Otherwise Specified 11 126305 -NCIT:C138320 HHV8-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 126306 -NCIT:C138899 Double-Expressor Lymphoma 9 126307 -NCIT:C141254 Diffuse Large B-Cell Lymphoma by Ann Arbor Stage 9 126308 -NCIT:C141262 Primary Mediastinal (Thymic) Large B-Cell Lymphoma by Ann Arbor Stage 10 126309 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 126310 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 126311 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 126312 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 126313 -NCIT:C141263 Centroblastic Lymphoma by Ann Arbor Stage 10 126314 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 11 126315 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 11 126316 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 11 126317 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 11 126318 -NCIT:C8854 Ann Arbor Stage I Diffuse Large B-Cell Lymphoma 10 126319 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 11 126320 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 126321 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 11 126322 -NCIT:C8855 Ann Arbor Stage II Diffuse Large B-Cell Lymphoma 10 126323 -NCIT:C171158 Ann Arbor Stage IIX (Bulky) Diffuse Large B-Cell Lymphoma 11 126324 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 11 126325 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 12 126326 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 12 126327 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 126328 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 11 126329 -NCIT:C8856 Ann Arbor Stage III Diffuse Large B-Cell Lymphoma 10 126330 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 11 126331 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 126332 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 11 126333 -NCIT:C8857 Ann Arbor Stage IV Diffuse Large B-Cell Lymphoma 10 126334 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 11 126335 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 126336 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 11 126337 -NCIT:C150396 Fibrin-Associated Diffuse Large B-Cell Lymphoma 9 126338 -NCIT:C183141 Cardiac Fibrin-Associated Diffuse Large B-Cell Lymphoma 10 126339 -NCIT:C161602 Prostate Diffuse Large B-Cell Lymphoma 9 126340 -NCIT:C162467 Testicular Diffuse Large B-Cell Lymphoma 9 126341 -NCIT:C171264 Advanced Diffuse Large B-Cell Lymphoma 9 126342 -NCIT:C172850 Digestive System Diffuse Large B-Cell Lymphoma 9 126343 -NCIT:C5253 Gastric Diffuse Large B-Cell Lymphoma 10 126344 -NCIT:C95625 Esophageal Diffuse Large B-Cell Lymphoma 10 126345 -NCIT:C96055 Small Intestinal Diffuse Large B-Cell Lymphoma 10 126346 -NCIT:C96057 Small Intestinal High Grade B-Cell Lymphoma, Not Otherwise Specified 11 126347 -NCIT:C96503 Colorectal Diffuse Large B-Cell Lymphoma 10 126348 -NCIT:C96501 Colorectal High Grade B-Cell Lymphoma, Not Otherwise Specified 11 126349 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 11 126350 -NCIT:C96843 Liver Diffuse Large B-Cell Lymphoma 10 126351 -NCIT:C173717 Salivary Gland Diffuse Large B-Cell Lymphoma 9 126352 -NCIT:C173719 Parotid Gland Diffuse Large B-Cell Lymphoma 10 126353 -NCIT:C173811 Primary Bone Diffuse Large B-Cell Lymphoma 9 126354 -NCIT:C175433 Conjunctival Diffuse Large B-Cell Lymphoma 9 126355 -NCIT:C175485 Lacrimal System Diffuse Large B-Cell Lymphoma 9 126356 -NCIT:C175486 Lacrimal Gland Diffuse Large B-Cell Lymphoma 10 126357 -NCIT:C175487 Lacrimal Drainage System Diffuse Large B-Cell Lymphoma 10 126358 -NCIT:C183146 Cardiac Diffuse Large B-Cell Lymphoma 9 126359 -NCIT:C183141 Cardiac Fibrin-Associated Diffuse Large B-Cell Lymphoma 10 126360 -NCIT:C188072 Tonsillar Diffuse Large B-Cell Lymphoma 9 126361 -NCIT:C188081 Nasal Cavity Diffuse Large B-Cell Lymphoma 9 126362 -NCIT:C27856 Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 9 126363 -NCIT:C27858 AIDS-Related Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 10 126364 -NCIT:C40375 Breast Diffuse Large B-Cell Lymphoma 9 126365 -NCIT:C4342 Intravascular Large B-Cell Lymphoma 9 126366 -NCIT:C129602 Central Nervous System Intravascular Large B-Cell Lymphoma 10 126367 -NCIT:C138025 Recurrent Intravascular Large B-Cell Lymphoma 10 126368 -NCIT:C138026 Refractory Intravascular Large B-Cell Lymphoma 10 126369 -NCIT:C183121 Lung Intravascular Large B-Cell Lymphoma 10 126370 -NCIT:C45214 Primary Cutaneous Intravascular Large B-Cell Lymphoma 10 126371 -NCIT:C45193 Primary Cutaneous Diffuse Large B-Cell Lymphoma 9 126372 -NCIT:C45194 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 126373 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 126374 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 126375 -NCIT:C45213 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Other 10 126376 -NCIT:C45214 Primary Cutaneous Intravascular Large B-Cell Lymphoma 11 126377 -NCIT:C45215 Primary Cutaneous T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 11 126378 -NCIT:C45216 Primary Cutaneous Plasmablastic Lymphoma 11 126379 -NCIT:C45605 Lung Diffuse Large B-Cell Lymphoma 9 126380 -NCIT:C183121 Lung Intravascular Large B-Cell Lymphoma 10 126381 -NCIT:C6046 Thyroid Gland Diffuse Large B-Cell Lymphoma 9 126382 -NCIT:C7263 Thyroid Gland Immunoblastic Lymphoma 10 126383 -NCIT:C6073 Paranasal Sinus Diffuse Large B-Cell Lymphoma 9 126384 -NCIT:C63533 Kidney Diffuse Large B-Cell Lymphoma 9 126385 -NCIT:C6915 Primary Effusion Lymphoma 9 126386 -NCIT:C150406 Extracavitary Primary Effusion Lymphoma 10 126387 -NCIT:C150407 Body Cavity Primary Effusion Lymphoma 10 126388 -NCIT:C183135 Pleural Primary Effusion Lymphoma 11 126389 -NCIT:C183136 Pericardial Primary Effusion Lymphoma 11 126390 -NCIT:C183137 Peritoneal Primary Effusion Lymphoma 11 126391 -NCIT:C157679 Recurrent Primary Effusion Lymphoma 10 126392 -NCIT:C157680 Refractory Primary Effusion Lymphoma 10 126393 -NCIT:C9017 AIDS-Related Primary Effusion Lymphoma 10 126394 -NCIT:C71720 Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 126395 -NCIT:C129602 Central Nervous System Intravascular Large B-Cell Lymphoma 10 126396 -NCIT:C155797 Pituitary Gland Diffuse Large B-Cell Lymphoma 10 126397 -NCIT:C157067 Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 126398 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 126399 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 126400 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 10 126401 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 126402 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 10 126403 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 126404 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 10 126405 -NCIT:C7212 AIDS-Related Diffuse Large B-cell Lymphoma 9 126406 -NCIT:C27858 AIDS-Related Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 10 126407 -NCIT:C27859 AIDS-Related Plasmablastic Lymphoma 10 126408 -NCIT:C38160 AIDS-Related Plasmablastic Lymphoma of Mucosa Site 11 126409 -NCIT:C9016 AIDS-Related Plasmablastic Lymphoma of the Oral Mucosa 12 126410 -NCIT:C8285 AIDS-Related Immunoblastic Lymphoma 10 126411 -NCIT:C9017 AIDS-Related Primary Effusion Lymphoma 10 126412 -NCIT:C7224 Plasmablastic Lymphoma 9 126413 -NCIT:C157683 Recurrent Plasmablastic Lymphoma 10 126414 -NCIT:C157684 Refractory Plasmablastic Lymphoma 10 126415 -NCIT:C27859 AIDS-Related Plasmablastic Lymphoma 10 126416 -NCIT:C38160 AIDS-Related Plasmablastic Lymphoma of Mucosa Site 11 126417 -NCIT:C9016 AIDS-Related Plasmablastic Lymphoma of the Oral Mucosa 12 126418 -NCIT:C38159 Plasmablastic Lymphoma of Mucosa Site 10 126419 -NCIT:C38160 AIDS-Related Plasmablastic Lymphoma of Mucosa Site 11 126420 -NCIT:C9016 AIDS-Related Plasmablastic Lymphoma of the Oral Mucosa 12 126421 -NCIT:C80290 Plasmablastic Lymphoma of the Oral Mucosa 11 126422 -NCIT:C9016 AIDS-Related Plasmablastic Lymphoma of the Oral Mucosa 12 126423 -NCIT:C45216 Primary Cutaneous Plasmablastic Lymphoma 10 126424 -NCIT:C7225 ALK-Positive Large B-Cell Lymphoma 9 126425 -NCIT:C188790 Recurrent ALK-Positive Large B-Cell Lymphoma 10 126426 -NCIT:C188791 Refractory ALK-Positive Large B-Cell Lymphoma 10 126427 -NCIT:C7246 Diffuse Large B-Cell Lymphoma Post-Transplant Lymphoproliferative Disorder 9 126428 -NCIT:C7247 Anaplastic Lymphoma Post-Transplant Lymphoproliferative Disorder 10 126429 -NCIT:C7248 Centroblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 10 126430 -NCIT:C7249 Immunoblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 10 126431 -NCIT:C7253 Methotrexate-Associated Diffuse Large B-Cell Lymphoma 9 126432 -NCIT:C7308 Splenic Diffuse Large B-Cell Lymphoma 9 126433 -NCIT:C7615 Adult Diffuse Large B-Cell Lymphoma 9 126434 -NCIT:C115150 Adult Grade III Lymphomatoid Granulomatosis 10 126435 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 11 126436 -NCIT:C188457 Adult EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 126437 -NCIT:C7873 Adult Immunoblastic Lymphoma 10 126438 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 11 126439 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 11 126440 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 12 126441 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 12 126442 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 11 126443 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 11 126444 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 11 126445 -NCIT:C7616 Childhood Diffuse Large B-Cell Lymphoma 9 126446 -NCIT:C115204 Childhood Grade III Lymphomatoid Granulomatosis 10 126447 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 11 126448 -NCIT:C188455 Childhood Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 126449 -NCIT:C188456 Childhood EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 126450 -NCIT:C9079 Childhood Immunoblastic Lymphoma 10 126451 -NCIT:C7933 Grade III Lymphomatoid Granulomatosis 9 126452 -NCIT:C115150 Adult Grade III Lymphomatoid Granulomatosis 10 126453 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 11 126454 -NCIT:C115204 Childhood Grade III Lymphomatoid Granulomatosis 10 126455 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 11 126456 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 10 126457 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 11 126458 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 11 126459 -NCIT:C80280 Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 126460 -NCIT:C148392 Diffuse Large B-Cell Lymphoma, Not Otherwise Specified Molecular Subtypes 10 126461 -NCIT:C148394 MCD Diffuse Large B-Cell Lymphoma 11 126462 -NCIT:C148395 BN2 Diffuse Large B-Cell Lymphoma 11 126463 -NCIT:C148396 N1 Diffuse Large B-Cell Lymphoma 11 126464 -NCIT:C148398 EZB Diffuse Large B-Cell Lymphoma 11 126465 -NCIT:C187445 ST2 Diffuse Large B-Cell Lymphoma 11 126466 -NCIT:C187447 A53 Diffuse Large B-Cell Lymphoma 11 126467 -NCIT:C165240 Recurrent Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 126468 -NCIT:C160230 Recurrent Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 11 126469 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 11 126470 -NCIT:C182035 Recurrent Immunoblastic Lymphoma 11 126471 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 12 126472 -NCIT:C8926 Recurrent Centroblastic Lymphoma 11 126473 -NCIT:C165241 Refractory Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 126474 -NCIT:C160238 Refractory Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 11 126475 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 11 126476 -NCIT:C182034 Refractory Immunoblastic Lymphoma 11 126477 -NCIT:C8927 Refractory Centroblastic Lymphoma 11 126478 -NCIT:C3461 Immunoblastic Lymphoma 10 126479 -NCIT:C182034 Refractory Immunoblastic Lymphoma 11 126480 -NCIT:C182035 Recurrent Immunoblastic Lymphoma 11 126481 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 12 126482 -NCIT:C7249 Immunoblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 11 126483 -NCIT:C7263 Thyroid Gland Immunoblastic Lymphoma 11 126484 -NCIT:C7873 Adult Immunoblastic Lymphoma 11 126485 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 12 126486 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 12 126487 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 13 126488 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 13 126489 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 12 126490 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 12 126491 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 12 126492 -NCIT:C8285 AIDS-Related Immunoblastic Lymphoma 11 126493 -NCIT:C9079 Childhood Immunoblastic Lymphoma 11 126494 -NCIT:C4074 Centroblastic Lymphoma 10 126495 -NCIT:C141263 Centroblastic Lymphoma by Ann Arbor Stage 11 126496 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 12 126497 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 12 126498 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 12 126499 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 12 126500 -NCIT:C7248 Centroblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 11 126501 -NCIT:C8926 Recurrent Centroblastic Lymphoma 11 126502 -NCIT:C8927 Refractory Centroblastic Lymphoma 11 126503 -NCIT:C45219 Diffuse Large B-Cell Lymphoma, Not Otherwise Specified by Gene Expression Profile 10 126504 -NCIT:C36080 Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 11 126505 -NCIT:C160230 Recurrent Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 12 126506 -NCIT:C160238 Refractory Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 12 126507 -NCIT:C36081 Diffuse Large B-Cell Lymphoma Activated B-Cell Type 11 126508 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 12 126509 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 12 126510 -NCIT:C45231 Diffuse Large B-Cell Lymphoma Unclassifiable 11 126511 -NCIT:C6916 Anaplastic Lymphoma 10 126512 -NCIT:C7247 Anaplastic Lymphoma Post-Transplant Lymphoproliferative Disorder 11 126513 -NCIT:C80281 EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 126514 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 126515 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 126516 -NCIT:C188456 Childhood EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 126517 -NCIT:C188457 Adult EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 126518 -NCIT:C80289 Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 9 126519 -NCIT:C183140 Recurrent Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 10 126520 -NCIT:C183142 Refractory Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 10 126521 -NCIT:C45691 Pyothorax-Associated Lymphoma 10 126522 -NCIT:C8852 Recurrent Diffuse Large B-Cell Lymphoma 9 126523 -NCIT:C138015 Recurrent Extranodal Diffuse Large B-cell Lymphoma 10 126524 -NCIT:C138025 Recurrent Intravascular Large B-Cell Lymphoma 10 126525 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 126526 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 126527 -NCIT:C156696 Recurrent T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 10 126528 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 10 126529 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 126530 -NCIT:C157679 Recurrent Primary Effusion Lymphoma 10 126531 -NCIT:C157683 Recurrent Plasmablastic Lymphoma 10 126532 -NCIT:C160229 Recurrent High Grade B-Cell Lymphoma 10 126533 -NCIT:C151980 Recurrent High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 11 126534 -NCIT:C162451 Recurrent High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 11 126535 -NCIT:C188788 Recurrent High Grade B-Cell Lymphoma, Not Otherwise Specified 11 126536 -NCIT:C165240 Recurrent Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 126537 -NCIT:C160230 Recurrent Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 11 126538 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 11 126539 -NCIT:C182035 Recurrent Immunoblastic Lymphoma 11 126540 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 12 126541 -NCIT:C8926 Recurrent Centroblastic Lymphoma 11 126542 -NCIT:C183140 Recurrent Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 10 126543 -NCIT:C188790 Recurrent ALK-Positive Large B-Cell Lymphoma 10 126544 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 10 126545 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 11 126546 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 11 126547 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 126548 -NCIT:C8853 Refractory Diffuse Large B-Cell Lymphoma 9 126549 -NCIT:C138018 Refractory Extranodal Diffuse Large B-cell Lymphoma 10 126550 -NCIT:C138026 Refractory Intravascular Large B-Cell Lymphoma 10 126551 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 126552 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 126553 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 10 126554 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 126555 -NCIT:C157678 Refractory T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 10 126556 -NCIT:C157680 Refractory Primary Effusion Lymphoma 10 126557 -NCIT:C157684 Refractory Plasmablastic Lymphoma 10 126558 -NCIT:C160233 Refractory High Grade B-Cell Lymphoma 10 126559 -NCIT:C151979 Refractory High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 11 126560 -NCIT:C162453 Refractory High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 11 126561 -NCIT:C188789 Refractory High Grade B-Cell Lymphoma, Not Otherwise Specified 11 126562 -NCIT:C165241 Refractory Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 126563 -NCIT:C160238 Refractory Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 11 126564 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 11 126565 -NCIT:C182034 Refractory Immunoblastic Lymphoma 11 126566 -NCIT:C8927 Refractory Centroblastic Lymphoma 11 126567 -NCIT:C183142 Refractory Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 10 126568 -NCIT:C188791 Refractory ALK-Positive Large B-Cell Lymphoma 10 126569 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 126570 -NCIT:C9280 Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 126571 -NCIT:C141262 Primary Mediastinal (Thymic) Large B-Cell Lymphoma by Ann Arbor Stage 10 126572 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 126573 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 126574 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 126575 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 126576 -NCIT:C188455 Childhood Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 126577 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 126578 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 126579 -NCIT:C9496 T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 9 126580 -NCIT:C156696 Recurrent T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 10 126581 -NCIT:C157678 Refractory T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 10 126582 -NCIT:C45215 Primary Cutaneous T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 10 126583 -NCIT:C8841 Recurrent B-Cell Non-Hodgkin Lymphoma 7 126584 -NCIT:C165799 Recurrent Mature B-Cell Non-Hodgkin Lymphoma 8 126585 -NCIT:C158149 Recurrent Transformed B-Cell Non-Hodgkin Lymphoma 9 126586 -NCIT:C160232 Recurrent Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 10 126587 -NCIT:C186483 Recurrent Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 10 126588 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 11 126589 -NCIT:C5007 Recurrent Follicular Lymphoma 9 126590 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 10 126591 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 10 126592 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 10 126593 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 11 126594 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 11 126595 -NCIT:C5008 Recurrent Burkitt Lymphoma 9 126596 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 10 126597 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 10 126598 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 9 126599 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 10 126600 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 126601 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 10 126602 -NCIT:C8154 Recurrent Small Lymphocytic Lymphoma 9 126603 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 9 126604 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 9 126605 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 10 126606 -NCIT:C8852 Recurrent Diffuse Large B-Cell Lymphoma 9 126607 -NCIT:C138015 Recurrent Extranodal Diffuse Large B-cell Lymphoma 10 126608 -NCIT:C138025 Recurrent Intravascular Large B-Cell Lymphoma 10 126609 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 126610 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 126611 -NCIT:C156696 Recurrent T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 10 126612 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 10 126613 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 126614 -NCIT:C157679 Recurrent Primary Effusion Lymphoma 10 126615 -NCIT:C157683 Recurrent Plasmablastic Lymphoma 10 126616 -NCIT:C160229 Recurrent High Grade B-Cell Lymphoma 10 126617 -NCIT:C151980 Recurrent High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 11 126618 -NCIT:C162451 Recurrent High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 11 126619 -NCIT:C188788 Recurrent High Grade B-Cell Lymphoma, Not Otherwise Specified 11 126620 -NCIT:C165240 Recurrent Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 126621 -NCIT:C160230 Recurrent Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 11 126622 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 11 126623 -NCIT:C182035 Recurrent Immunoblastic Lymphoma 11 126624 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 12 126625 -NCIT:C8926 Recurrent Centroblastic Lymphoma 11 126626 -NCIT:C183140 Recurrent Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 10 126627 -NCIT:C188790 Recurrent ALK-Positive Large B-Cell Lymphoma 10 126628 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 10 126629 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 11 126630 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 11 126631 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 126632 -NCIT:C178553 Recurrent Aggressive B-Cell Non-Hodgkin Lymphoma 8 126633 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 126634 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 9 126635 -NCIT:C5008 Recurrent Burkitt Lymphoma 9 126636 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 10 126637 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 10 126638 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 9 126639 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 126640 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 10 126641 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 9 126642 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 10 126643 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 10 126644 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 9 126645 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 9 126646 -NCIT:C183512 Recurrent Indolent B-Cell Non-Hodgkin Lymphoma 8 126647 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 9 126648 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 10 126649 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 126650 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 10 126651 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 9 126652 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 9 126653 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 9 126654 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 10 126655 -NCIT:C8842 Refractory B-Cell Non-Hodgkin Lymphoma 7 126656 -NCIT:C178555 Refractory Aggressive B-Cell Non-Hodgkin Lymphoma 8 126657 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 126658 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 9 126659 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 9 126660 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 10 126661 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 10 126662 -NCIT:C8847 Refractory Burkitt Lymphoma 9 126663 -NCIT:C8862 Refractory Mantle Cell Lymphoma 9 126664 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 9 126665 -NCIT:C183514 Refractory Indolent B-Cell Non-Hodgkin Lymphoma 8 126666 -NCIT:C143085 Refractory Marginal Zone Lymphoma 9 126667 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 10 126668 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 126669 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 10 126670 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 9 126671 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 9 126672 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 9 126673 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 10 126674 -NCIT:C7228 Refractory Mature B-Cell Non-Hodgkin Lymphoma 8 126675 -NCIT:C143085 Refractory Marginal Zone Lymphoma 9 126676 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 10 126677 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 126678 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 10 126679 -NCIT:C158150 Refractory Transformed B-Cell Non-Hodgkin Lymphoma 9 126680 -NCIT:C160240 Refractory Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 10 126681 -NCIT:C186484 Refractory Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 10 126682 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 11 126683 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 9 126684 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 10 126685 -NCIT:C8846 Refractory Small Lymphocytic Lymphoma 9 126686 -NCIT:C8847 Refractory Burkitt Lymphoma 9 126687 -NCIT:C8853 Refractory Diffuse Large B-Cell Lymphoma 9 126688 -NCIT:C138018 Refractory Extranodal Diffuse Large B-cell Lymphoma 10 126689 -NCIT:C138026 Refractory Intravascular Large B-Cell Lymphoma 10 126690 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 126691 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 126692 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 10 126693 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 126694 -NCIT:C157678 Refractory T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 10 126695 -NCIT:C157680 Refractory Primary Effusion Lymphoma 10 126696 -NCIT:C157684 Refractory Plasmablastic Lymphoma 10 126697 -NCIT:C160233 Refractory High Grade B-Cell Lymphoma 10 126698 -NCIT:C151979 Refractory High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 11 126699 -NCIT:C162453 Refractory High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 11 126700 -NCIT:C188789 Refractory High Grade B-Cell Lymphoma, Not Otherwise Specified 11 126701 -NCIT:C165241 Refractory Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 126702 -NCIT:C160238 Refractory Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 11 126703 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 11 126704 -NCIT:C182034 Refractory Immunoblastic Lymphoma 11 126705 -NCIT:C8927 Refractory Centroblastic Lymphoma 11 126706 -NCIT:C183142 Refractory Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 10 126707 -NCIT:C188791 Refractory ALK-Positive Large B-Cell Lymphoma 10 126708 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 126709 -NCIT:C8858 Refractory Follicular Lymphoma 9 126710 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 10 126711 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 10 126712 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 10 126713 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 11 126714 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 11 126715 -NCIT:C8862 Refractory Mantle Cell Lymphoma 9 126716 -NCIT:C96053 Small Intestinal B-Cell Non-Hodgkin Lymphoma 7 126717 -NCIT:C27409 Small Intestinal Burkitt Lymphoma 8 126718 -NCIT:C27410 Small Intestinal Atypical Burkitt/Burkitt-Like Lymphoma 9 126719 -NCIT:C27441 Small Intestinal Mantle Cell Lymphoma 8 126720 -NCIT:C3132 Alpha Heavy Chain Disease 8 126721 -NCIT:C5635 Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 8 126722 -NCIT:C45166 Campylobacter Jejuni-Associated Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 9 126723 -NCIT:C96055 Small Intestinal Diffuse Large B-Cell Lymphoma 8 126724 -NCIT:C96057 Small Intestinal High Grade B-Cell Lymphoma, Not Otherwise Specified 9 126725 -NCIT:C96056 Small Intestinal Follicular Lymphoma 8 126726 -NCIT:C3466 T-Cell Non-Hodgkin Lymphoma 6 126727 -NCIT:C141247 T-Cell Non-Hodgkin Lymphoma by Ann Arbor Stage 7 126728 -NCIT:C141272 Mature T- and NK-Cell Lymphoma by Ann Arbor Stage 8 126729 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 9 126730 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 10 126731 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 10 126732 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 10 126733 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 10 126734 -NCIT:C141284 Noncutaneous Anaplastic Large Cell Lymphoma by Ann Arbor Stage 9 126735 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 10 126736 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 126737 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 126738 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 126739 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 126740 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 10 126741 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 126742 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 10 126743 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 126744 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 10 126745 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 126746 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 10 126747 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 126748 -NCIT:C141294 Angioimmunoblastic T-Cell Lymphoma by Ann Arbor Stage 9 126749 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 10 126750 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 10 126751 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 10 126752 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 10 126753 -NCIT:C141295 Enteropathy-Associated T-Cell Lymphoma by Ann Arbor Stage 9 126754 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 10 126755 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 10 126756 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 10 126757 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 10 126758 -NCIT:C141296 Nasal Type NK/T-Cell Lymphoma by Ann Arbor Stage 9 126759 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 10 126760 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 10 126761 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 10 126762 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 10 126763 -NCIT:C8690 Ann Arbor Stage I Mature T- and NK-Cell Lymphoma 9 126764 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 10 126765 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 10 126766 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 126767 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 10 126768 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 10 126769 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 10 126770 -NCIT:C8691 Ann Arbor Stage II Mature T- and NK-Cell Lymphoma 9 126771 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 10 126772 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 10 126773 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 126774 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 10 126775 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 10 126776 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 10 126777 -NCIT:C8692 Ann Arbor Stage III Mature T- and NK-Cell Lymphoma 9 126778 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 10 126779 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 10 126780 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 126781 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 10 126782 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 10 126783 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 10 126784 -NCIT:C8693 Ann Arbor Stage IV Mature T- and NK-Cell Lymphoma 9 126785 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 10 126786 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 10 126787 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 126788 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 10 126789 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 10 126790 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 10 126791 -NCIT:C8665 Ann Arbor Stage I T-Cell Non-Hodgkin Lymphoma 8 126792 -NCIT:C8690 Ann Arbor Stage I Mature T- and NK-Cell Lymphoma 9 126793 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 10 126794 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 10 126795 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 126796 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 10 126797 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 10 126798 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 10 126799 -NCIT:C8666 Ann Arbor Stage II T-Cell Non-Hodgkin Lymphoma 8 126800 -NCIT:C8691 Ann Arbor Stage II Mature T- and NK-Cell Lymphoma 9 126801 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 10 126802 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 10 126803 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 126804 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 10 126805 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 10 126806 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 10 126807 -NCIT:C8667 Ann Arbor Stage III T-Cell Non-Hodgkin Lymphoma 8 126808 -NCIT:C8692 Ann Arbor Stage III Mature T- and NK-Cell Lymphoma 9 126809 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 10 126810 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 10 126811 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 126812 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 10 126813 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 10 126814 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 10 126815 -NCIT:C8668 Ann Arbor Stage IV T-Cell Non-Hodgkin Lymphoma 8 126816 -NCIT:C8693 Ann Arbor Stage IV Mature T- and NK-Cell Lymphoma 9 126817 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 10 126818 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 10 126819 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 126820 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 10 126821 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 10 126822 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 10 126823 -NCIT:C178547 Aggressive T-Cell Non-Hodgkin Lymphoma 7 126824 -NCIT:C150495 Intestinal T-Cell Lymphoma 8 126825 -NCIT:C150505 Intestinal T-Cell Lymphoma, Not Otherwise Specified 9 126826 -NCIT:C4737 Enteropathy-Associated T-Cell Lymphoma 9 126827 -NCIT:C141295 Enteropathy-Associated T-Cell Lymphoma by Ann Arbor Stage 10 126828 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 11 126829 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 11 126830 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 11 126831 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 11 126832 -NCIT:C39610 Small Intestinal Enteropathy-Associated T-Cell Lymphoma 10 126833 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 10 126834 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 10 126835 -NCIT:C96058 Monomorphic Epitheliotropic Intestinal T-Cell Lymphoma 9 126836 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 126837 -NCIT:C150504 Small Intestinal Monomorphic Epitheliotropic T-Cell Lymphoma 10 126838 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 126839 -NCIT:C178554 Recurrent Aggressive T-Cell Non-Hodgkin Lymphoma 8 126840 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 126841 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 9 126842 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 126843 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 126844 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 9 126845 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 126846 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 126847 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 9 126848 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 9 126849 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 9 126850 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 9 126851 -NCIT:C178556 Refractory Aggressive T-Cell Non-Hodgkin Lymphoma 8 126852 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 9 126853 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 126854 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 126855 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 126856 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 126857 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 9 126858 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 9 126859 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 9 126860 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 9 126861 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 9 126862 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 126863 -NCIT:C3184 Adult T-Cell Leukemia/Lymphoma 8 126864 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 9 126865 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 10 126866 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 10 126867 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 10 126868 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 10 126869 -NCIT:C36265 Acute Adult T-Cell Leukemia/Lymphoma 9 126870 -NCIT:C36266 Lymphomatous Adult T-Cell Leukemia/Lymphoma 9 126871 -NCIT:C36268 Hodgkin-Like Adult T-Cell Leukemia/Lymphoma 9 126872 -NCIT:C45272 Cutaneous Adult T-Cell Leukemia/Lymphoma 9 126873 -NCIT:C7178 Smoldering Adult T-Cell Leukemia/Lymphoma 9 126874 -NCIT:C7179 Chronic Adult T-Cell Leukemia/Lymphoma 9 126875 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 9 126876 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 9 126877 -NCIT:C37194 Anaplastic Large Cell Lymphoma, ALK-Negative 8 126878 -NCIT:C129599 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Negative 9 126879 -NCIT:C139012 Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 126880 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 126881 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 126882 -NCIT:C37196 Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Negative 9 126883 -NCIT:C4340 Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 126884 -NCIT:C139288 Primary EBV-Positive Nodal T-Cell or NK-Cell Lymphoma 9 126885 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 126886 -NCIT:C188459 Childhood Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 126887 -NCIT:C7205 Lymphoepithelioid Variant Peripheral T-Cell Lymphoma 9 126888 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 126889 -NCIT:C45339 Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 8 126890 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 126891 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 126892 -NCIT:C45340 Primary Cutaneous Gamma-Delta T-Cell Lymphoma 8 126893 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 126894 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 126895 -NCIT:C4684 Nasal Type Extranodal NK/T-Cell Lymphoma 8 126896 -NCIT:C115154 Adult Nasal Type Extranodal NK/T-Cell Lymphoma 9 126897 -NCIT:C141296 Nasal Type NK/T-Cell Lymphoma by Ann Arbor Stage 9 126898 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 10 126899 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 10 126900 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 10 126901 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 10 126902 -NCIT:C162468 Testicular Nasal Type Extranodal NK/T-Cell Lymphoma 9 126903 -NCIT:C173172 Sinonasal Extranodal NK/T-Cell Lymphoma 9 126904 -NCIT:C173173 Nasal Cavity Extranodal NK/T-Cell Lymphoma 10 126905 -NCIT:C45268 Cutaneous Nasal Type Extranodal NK/T-Cell Lymphoma 9 126906 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 9 126907 -NCIT:C68692 Childhood Nasal Type Extranodal NK/T-Cell Lymphoma 9 126908 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 9 126909 -NCIT:C6919 T Lymphoblastic Lymphoma 8 126910 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 9 126911 -NCIT:C45740 Mediastinal T Lymphoblastic Lymphoma 9 126912 -NCIT:C7210 Childhood T Lymphoblastic Lymphoma 9 126913 -NCIT:C7226 Adult T Lymphoblastic Lymphoma 9 126914 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 9 126915 -NCIT:C7311 Splenic T Lymphoblastic Lymphoma 9 126916 -NCIT:C7528 Angioimmunoblastic T-Cell Lymphoma 8 126917 -NCIT:C141294 Angioimmunoblastic T-Cell Lymphoma by Ann Arbor Stage 9 126918 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 10 126919 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 10 126920 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 10 126921 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 10 126922 -NCIT:C45271 Cutaneous Angioimmunoblastic T-Cell Lymphoma 9 126923 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 9 126924 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 9 126925 -NCIT:C8459 Hepatosplenic T-Cell Lymphoma 8 126926 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 9 126927 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 9 126928 -NCIT:C3468 Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 7 126929 -NCIT:C128696 Peripheral T-Cell Lymphoma, Unclassifiable 8 126930 -NCIT:C128697 NK-Cell Lymphoma, Unclassifiable 8 126931 -NCIT:C157689 Recurrent NK-Cell Lymphoma, Unclassifiable 9 126932 -NCIT:C157690 Refractory NK-Cell Lymphoma, Unclassifiable 9 126933 -NCIT:C129600 Central Nervous System Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 8 126934 -NCIT:C5322 Central Nervous System Anaplastic Large Cell Lymphoma 9 126935 -NCIT:C129598 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Positive 10 126936 -NCIT:C129599 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Negative 10 126937 -NCIT:C139005 Nodal Peripheral T-Cell Lymphoma of T Follicular Helper Cell Origin 8 126938 -NCIT:C139011 Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 9 126939 -NCIT:C168778 Recurrent Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 10 126940 -NCIT:C168779 Refractory Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 10 126941 -NCIT:C7528 Angioimmunoblastic T-Cell Lymphoma 9 126942 -NCIT:C141294 Angioimmunoblastic T-Cell Lymphoma by Ann Arbor Stage 10 126943 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 11 126944 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 11 126945 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 11 126946 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 11 126947 -NCIT:C45271 Cutaneous Angioimmunoblastic T-Cell Lymphoma 10 126948 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 10 126949 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 10 126950 -NCIT:C80375 Follicular T-Cell Lymphoma 9 126951 -NCIT:C168780 Recurrent Follicular T-Cell Lymphoma 10 126952 -NCIT:C168781 Refractory Follicular T-Cell Lymphoma 10 126953 -NCIT:C141272 Mature T- and NK-Cell Lymphoma by Ann Arbor Stage 8 126954 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 9 126955 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 10 126956 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 10 126957 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 10 126958 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 10 126959 -NCIT:C141284 Noncutaneous Anaplastic Large Cell Lymphoma by Ann Arbor Stage 9 126960 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 10 126961 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 126962 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 126963 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 126964 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 126965 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 10 126966 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 126967 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 10 126968 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 126969 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 10 126970 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 126971 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 10 126972 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 126973 -NCIT:C141294 Angioimmunoblastic T-Cell Lymphoma by Ann Arbor Stage 9 126974 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 10 126975 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 10 126976 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 10 126977 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 10 126978 -NCIT:C141295 Enteropathy-Associated T-Cell Lymphoma by Ann Arbor Stage 9 126979 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 10 126980 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 10 126981 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 10 126982 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 10 126983 -NCIT:C141296 Nasal Type NK/T-Cell Lymphoma by Ann Arbor Stage 9 126984 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 10 126985 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 10 126986 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 10 126987 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 10 126988 -NCIT:C8690 Ann Arbor Stage I Mature T- and NK-Cell Lymphoma 9 126989 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 10 126990 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 10 126991 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 126992 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 10 126993 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 10 126994 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 10 126995 -NCIT:C8691 Ann Arbor Stage II Mature T- and NK-Cell Lymphoma 9 126996 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 10 126997 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 10 126998 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 126999 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 10 127000 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 10 127001 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 10 127002 -NCIT:C8692 Ann Arbor Stage III Mature T- and NK-Cell Lymphoma 9 127003 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 10 127004 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 10 127005 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 127006 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 10 127007 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 10 127008 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 10 127009 -NCIT:C8693 Ann Arbor Stage IV Mature T- and NK-Cell Lymphoma 9 127010 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 10 127011 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 10 127012 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 127013 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 10 127014 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 10 127015 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 10 127016 -NCIT:C150495 Intestinal T-Cell Lymphoma 8 127017 -NCIT:C150505 Intestinal T-Cell Lymphoma, Not Otherwise Specified 9 127018 -NCIT:C4737 Enteropathy-Associated T-Cell Lymphoma 9 127019 -NCIT:C141295 Enteropathy-Associated T-Cell Lymphoma by Ann Arbor Stage 10 127020 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 11 127021 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 11 127022 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 11 127023 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 11 127024 -NCIT:C39610 Small Intestinal Enteropathy-Associated T-Cell Lymphoma 10 127025 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 10 127026 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 10 127027 -NCIT:C96058 Monomorphic Epitheliotropic Intestinal T-Cell Lymphoma 9 127028 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 127029 -NCIT:C150504 Small Intestinal Monomorphic Epitheliotropic T-Cell Lymphoma 10 127030 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 127031 -NCIT:C171300 Indolent T-Cell Non-Hodgkin Lymphoma 8 127032 -NCIT:C3246 Mycosis Fungoides 9 127033 -NCIT:C141143 Mycosis Fungoides by AJCC v7 Stage 10 127034 -NCIT:C7796 Stage I Mycosis Fungoides AJCC v7 11 127035 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 12 127036 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 12 127037 -NCIT:C7798 Stage II Mycosis Fungoides AJCC v7 11 127038 -NCIT:C7800 Stage III Mycosis Fungoides AJCC v7 11 127039 -NCIT:C7802 Stage IV Mycosis Fungoides AJCC v7 11 127040 -NCIT:C165783 Transformed Mycosis Fungoides 10 127041 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 127042 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 127043 -NCIT:C8686 Recurrent Mycosis Fungoides 10 127044 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 127045 -NCIT:C8687 Refractory Mycosis Fungoides 10 127046 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 127047 -NCIT:C39644 Mycosis Fungoides Variant 9 127048 -NCIT:C35464 Granulomatous Slack Skin Disease 10 127049 -NCIT:C35685 Folliculotropic Mycosis Fungoides 10 127050 -NCIT:C35794 Pagetoid Reticulosis 10 127051 -NCIT:C6860 Primary Cutaneous Anaplastic Large Cell Lymphoma 9 127052 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 127053 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 127054 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 10 127055 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 10 127056 -NCIT:C6918 Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 127057 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 127058 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 127059 -NCIT:C3184 Adult T-Cell Leukemia/Lymphoma 8 127060 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 9 127061 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 10 127062 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 10 127063 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 10 127064 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 10 127065 -NCIT:C36265 Acute Adult T-Cell Leukemia/Lymphoma 9 127066 -NCIT:C36266 Lymphomatous Adult T-Cell Leukemia/Lymphoma 9 127067 -NCIT:C36268 Hodgkin-Like Adult T-Cell Leukemia/Lymphoma 9 127068 -NCIT:C45272 Cutaneous Adult T-Cell Leukemia/Lymphoma 9 127069 -NCIT:C7178 Smoldering Adult T-Cell Leukemia/Lymphoma 9 127070 -NCIT:C7179 Chronic Adult T-Cell Leukemia/Lymphoma 9 127071 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 9 127072 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 9 127073 -NCIT:C3467 Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 127074 -NCIT:C172442 Advanced Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 127075 -NCIT:C180374 Early Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 127076 -NCIT:C3246 Mycosis Fungoides 9 127077 -NCIT:C141143 Mycosis Fungoides by AJCC v7 Stage 10 127078 -NCIT:C7796 Stage I Mycosis Fungoides AJCC v7 11 127079 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 12 127080 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 12 127081 -NCIT:C7798 Stage II Mycosis Fungoides AJCC v7 11 127082 -NCIT:C7800 Stage III Mycosis Fungoides AJCC v7 11 127083 -NCIT:C7802 Stage IV Mycosis Fungoides AJCC v7 11 127084 -NCIT:C165783 Transformed Mycosis Fungoides 10 127085 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 127086 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 127087 -NCIT:C8686 Recurrent Mycosis Fungoides 10 127088 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 127089 -NCIT:C8687 Refractory Mycosis Fungoides 10 127090 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 127091 -NCIT:C39644 Mycosis Fungoides Variant 9 127092 -NCIT:C35464 Granulomatous Slack Skin Disease 10 127093 -NCIT:C35685 Folliculotropic Mycosis Fungoides 10 127094 -NCIT:C35794 Pagetoid Reticulosis 10 127095 -NCIT:C45332 Primary Cutaneous Peripheral T-Cell Lymphoma, Rare Subtype 9 127096 -NCIT:C139023 Primary Cutaneous Acral CD8-Positive T-Cell Lymphoma 10 127097 -NCIT:C45339 Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 127098 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 11 127099 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 11 127100 -NCIT:C45340 Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 127101 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 11 127102 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 11 127103 -NCIT:C6860 Primary Cutaneous Anaplastic Large Cell Lymphoma 9 127104 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 127105 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 127106 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 10 127107 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 10 127108 -NCIT:C6918 Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 127109 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 127110 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 127111 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 127112 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 127113 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 127114 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 127115 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 127116 -NCIT:C8686 Recurrent Mycosis Fungoides 10 127117 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 127118 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 127119 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 127120 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 127121 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 127122 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 127123 -NCIT:C8687 Refractory Mycosis Fungoides 10 127124 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 127125 -NCIT:C3720 Anaplastic Large Cell Lymphoma 8 127126 -NCIT:C141284 Noncutaneous Anaplastic Large Cell Lymphoma by Ann Arbor Stage 9 127127 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 10 127128 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 127129 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 127130 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 127131 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 127132 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 10 127133 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 127134 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 10 127135 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 127136 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 10 127137 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 127138 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 10 127139 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 127140 -NCIT:C166179 Localized Anaplastic Large Cell Lymphoma 9 127141 -NCIT:C166180 Advanced Anaplastic Large Cell Lymphoma 9 127142 -NCIT:C188082 Lung Anaplastic Large Cell Lymphoma 9 127143 -NCIT:C27367 Adult Anaplastic Large Cell Lymphoma 9 127144 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 10 127145 -NCIT:C27366 Adult Systemic Anaplastic Large Cell Lymphoma 10 127146 -NCIT:C37193 Anaplastic Large Cell Lymphoma, ALK-Positive 9 127147 -NCIT:C129598 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Positive 10 127148 -NCIT:C188460 Childhood Anaplastic Large Cell Lymphoma, ALK-Positive 10 127149 -NCIT:C37195 Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 127150 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 11 127151 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 11 127152 -NCIT:C37194 Anaplastic Large Cell Lymphoma, ALK-Negative 9 127153 -NCIT:C129599 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Negative 10 127154 -NCIT:C139012 Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 127155 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 11 127156 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 11 127157 -NCIT:C37196 Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Negative 10 127158 -NCIT:C39674 Anaplastic Large Cell Lymphoma, Giant Cell Rich Subtype 9 127159 -NCIT:C39675 Anaplastic Large Cell Lymphoma, Sarcomatoid Subtype 9 127160 -NCIT:C39676 Anaplastic Large Cell Lymphoma, Signet Ring-Like Subtype 9 127161 -NCIT:C5322 Central Nervous System Anaplastic Large Cell Lymphoma 9 127162 -NCIT:C129598 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Positive 10 127163 -NCIT:C129599 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Negative 10 127164 -NCIT:C5636 Childhood Anaplastic Large Cell Lymphoma 9 127165 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 10 127166 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 10 127167 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 127168 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 127169 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 127170 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 127171 -NCIT:C188460 Childhood Anaplastic Large Cell Lymphoma, ALK-Positive 10 127172 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 10 127173 -NCIT:C9471 Childhood Systemic Anaplastic Large Cell Lymphoma 10 127174 -NCIT:C6860 Primary Cutaneous Anaplastic Large Cell Lymphoma 9 127175 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 127176 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 127177 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 10 127178 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 10 127179 -NCIT:C7206 Common Variant Anaplastic Large Cell Lymphoma 9 127180 -NCIT:C7207 Lymphohistiocytic Variant Anaplastic Large Cell Lymphoma 9 127181 -NCIT:C7208 Small Cell Variant Anaplastic Large Cell Lymphoma 9 127182 -NCIT:C8658 Refractory Anaplastic Large Cell Lymphoma 9 127183 -NCIT:C162689 Refractory Systemic Anaplastic Large Cell Lymphoma 10 127184 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 11 127185 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 127186 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 127187 -NCIT:C9250 Recurrent Anaplastic Large Cell Lymphoma 9 127188 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 10 127189 -NCIT:C162688 Recurrent Systemic Anaplastic Large Cell Lymphoma 10 127190 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 11 127191 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 127192 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 127193 -NCIT:C9470 Systemic Anaplastic Large Cell Lymphoma 9 127194 -NCIT:C162688 Recurrent Systemic Anaplastic Large Cell Lymphoma 10 127195 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 11 127196 -NCIT:C162689 Refractory Systemic Anaplastic Large Cell Lymphoma 10 127197 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 11 127198 -NCIT:C27366 Adult Systemic Anaplastic Large Cell Lymphoma 10 127199 -NCIT:C37195 Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 127200 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 11 127201 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 11 127202 -NCIT:C37196 Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Negative 10 127203 -NCIT:C9471 Childhood Systemic Anaplastic Large Cell Lymphoma 10 127204 -NCIT:C4340 Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 127205 -NCIT:C139288 Primary EBV-Positive Nodal T-Cell or NK-Cell Lymphoma 9 127206 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 127207 -NCIT:C188459 Childhood Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 127208 -NCIT:C7205 Lymphoepithelioid Variant Peripheral T-Cell Lymphoma 9 127209 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 127210 -NCIT:C4684 Nasal Type Extranodal NK/T-Cell Lymphoma 8 127211 -NCIT:C115154 Adult Nasal Type Extranodal NK/T-Cell Lymphoma 9 127212 -NCIT:C141296 Nasal Type NK/T-Cell Lymphoma by Ann Arbor Stage 9 127213 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 10 127214 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 10 127215 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 10 127216 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 10 127217 -NCIT:C162468 Testicular Nasal Type Extranodal NK/T-Cell Lymphoma 9 127218 -NCIT:C173172 Sinonasal Extranodal NK/T-Cell Lymphoma 9 127219 -NCIT:C173173 Nasal Cavity Extranodal NK/T-Cell Lymphoma 10 127220 -NCIT:C45268 Cutaneous Nasal Type Extranodal NK/T-Cell Lymphoma 9 127221 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 9 127222 -NCIT:C68692 Childhood Nasal Type Extranodal NK/T-Cell Lymphoma 9 127223 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 9 127224 -NCIT:C5637 Childhood Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 8 127225 -NCIT:C188459 Childhood Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 127226 -NCIT:C5636 Childhood Anaplastic Large Cell Lymphoma 9 127227 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 10 127228 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 10 127229 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 127230 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 127231 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 127232 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 127233 -NCIT:C188460 Childhood Anaplastic Large Cell Lymphoma, ALK-Positive 10 127234 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 10 127235 -NCIT:C9471 Childhood Systemic Anaplastic Large Cell Lymphoma 10 127236 -NCIT:C68692 Childhood Nasal Type Extranodal NK/T-Cell Lymphoma 9 127237 -NCIT:C80374 Systemic EBV-Positive T-Cell Lymphoma of Childhood 9 127238 -NCIT:C7252 Methotrexate-Associated Peripheral T-Cell Lymphoma 8 127239 -NCIT:C8459 Hepatosplenic T-Cell Lymphoma 8 127240 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 9 127241 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 9 127242 -NCIT:C8688 Recurrent Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 8 127243 -NCIT:C115439 Recurrent Mycosis Fungoides and Sezary Syndrome 9 127244 -NCIT:C176999 Recurrent Sezary Syndrome 10 127245 -NCIT:C8686 Recurrent Mycosis Fungoides 10 127246 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 127247 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 127248 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 9 127249 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 127250 -NCIT:C157689 Recurrent NK-Cell Lymphoma, Unclassifiable 9 127251 -NCIT:C165789 Recurrent Transformed T-cell Non-Hodgkin Lymphoma 9 127252 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 127253 -NCIT:C168778 Recurrent Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 9 127254 -NCIT:C168780 Recurrent Follicular T-Cell Lymphoma 9 127255 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 9 127256 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 127257 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 127258 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 127259 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 127260 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 127261 -NCIT:C8686 Recurrent Mycosis Fungoides 10 127262 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 127263 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 9 127264 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 9 127265 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 9 127266 -NCIT:C9250 Recurrent Anaplastic Large Cell Lymphoma 9 127267 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 10 127268 -NCIT:C162688 Recurrent Systemic Anaplastic Large Cell Lymphoma 10 127269 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 11 127270 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 127271 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 127272 -NCIT:C8689 Refractory Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 8 127273 -NCIT:C148129 Refractory Mycosis Fungoides and Sezary Syndrome 9 127274 -NCIT:C177000 Refractory Sezary Syndrome 10 127275 -NCIT:C8687 Refractory Mycosis Fungoides 10 127276 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 127277 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 9 127278 -NCIT:C157690 Refractory NK-Cell Lymphoma, Unclassifiable 9 127279 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 127280 -NCIT:C165791 Refractory Transformed T-cell Non-Hodgkin Lymphoma 9 127281 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 127282 -NCIT:C168779 Refractory Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 9 127283 -NCIT:C168781 Refractory Follicular T-Cell Lymphoma 9 127284 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 9 127285 -NCIT:C8658 Refractory Anaplastic Large Cell Lymphoma 9 127286 -NCIT:C162689 Refractory Systemic Anaplastic Large Cell Lymphoma 10 127287 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 11 127288 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 127289 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 127290 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 9 127291 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 9 127292 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 9 127293 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 127294 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 127295 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 127296 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 127297 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 127298 -NCIT:C8687 Refractory Mycosis Fungoides 10 127299 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 127300 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 127301 -NCIT:C9265 Mycosis Fungoides and Sezary Syndrome 8 127302 -NCIT:C115439 Recurrent Mycosis Fungoides and Sezary Syndrome 9 127303 -NCIT:C176999 Recurrent Sezary Syndrome 10 127304 -NCIT:C8686 Recurrent Mycosis Fungoides 10 127305 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 127306 -NCIT:C141142 Mycosis Fungoides and Sezary Syndrome by AJCC v7 Stage 9 127307 -NCIT:C141143 Mycosis Fungoides by AJCC v7 Stage 10 127308 -NCIT:C7796 Stage I Mycosis Fungoides AJCC v7 11 127309 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 12 127310 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 12 127311 -NCIT:C7798 Stage II Mycosis Fungoides AJCC v7 11 127312 -NCIT:C7800 Stage III Mycosis Fungoides AJCC v7 11 127313 -NCIT:C7802 Stage IV Mycosis Fungoides AJCC v7 11 127314 -NCIT:C88150 Stage I Mycosis Fungoides and Sezary Syndrome AJCC v7 10 127315 -NCIT:C7796 Stage I Mycosis Fungoides AJCC v7 11 127316 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 12 127317 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 12 127318 -NCIT:C88151 Stage IA Mycosis Fungoides and Sezary Syndrome AJCC v7 11 127319 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 12 127320 -NCIT:C88152 Stage IB Mycosis Fungoides and Sezary Syndrome AJCC v7 11 127321 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 12 127322 -NCIT:C88153 Stage II Mycosis Fungoides and Sezary Syndrome AJCC v7 10 127323 -NCIT:C7798 Stage II Mycosis Fungoides AJCC v7 11 127324 -NCIT:C88154 Stage IIA Mycosis Fungoides and Sezary Syndrome AJCC v7 11 127325 -NCIT:C88155 Stage IIB Mycosis Fungoides and Sezary Syndrome AJCC v7 11 127326 -NCIT:C88157 Stage III Mycosis Fungoides and Sezary Syndrome AJCC v7 10 127327 -NCIT:C7800 Stage III Mycosis Fungoides AJCC v7 11 127328 -NCIT:C88158 Stage IIIA Mycosis Fungoides and Sezary Syndrome AJCC v7 11 127329 -NCIT:C88159 Stage IIIB Mycosis Fungoides and Sezary Syndrome AJCC v7 11 127330 -NCIT:C88160 Stage IV Mycosis Fungoides and Sezary Syndrome AJCC v7 10 127331 -NCIT:C7802 Stage IV Mycosis Fungoides AJCC v7 11 127332 -NCIT:C88161 Stage IVA Mycosis Fungoides and Sezary Syndrome AJCC v7 11 127333 -NCIT:C88162 Stage IVB Mycosis Fungoides and Sezary Syndrome AJCC v7 11 127334 -NCIT:C141346 Mycosis Fungoides and Sezary Syndrome by AJCC v8 Stage 9 127335 -NCIT:C141347 Stage I Mycosis Fungoides and Sezary Syndrome AJCC v8 10 127336 -NCIT:C141348 Stage IA Mycosis Fungoides and Sezary Syndrome AJCC v8 11 127337 -NCIT:C141349 Stage IB Mycosis Fungoides and Sezary Syndrome AJCC v8 11 127338 -NCIT:C141350 Stage II Mycosis Fungoides and Sezary Syndrome AJCC v8 10 127339 -NCIT:C141351 Stage IIA Mycosis Fungoides and Sezary Syndrome AJCC v8 11 127340 -NCIT:C141352 Stage IIB Mycosis Fungoides and Sezary Syndrome AJCC v8 11 127341 -NCIT:C141353 Stage III Mycosis Fungoides and Sezary Syndrome AJCC v8 10 127342 -NCIT:C141354 Stage IIIA Mycosis Fungoides and Sezary Syndrome AJCC v8 11 127343 -NCIT:C141355 Stage IIIB Mycosis Fungoides and Sezary Syndrome AJCC v8 11 127344 -NCIT:C141356 Stage IV Mycosis Fungoides and Sezary Syndrome AJCC v8 10 127345 -NCIT:C141357 Stage IVA1 Mycosis Fungoides and Sezary Syndrome AJCC v8 11 127346 -NCIT:C141358 Stage IVA2 Mycosis Fungoides and Sezary Syndrome AJCC v8 11 127347 -NCIT:C141359 Stage IVB Mycosis Fungoides and Sezary Syndrome AJCC v8 11 127348 -NCIT:C148129 Refractory Mycosis Fungoides and Sezary Syndrome 9 127349 -NCIT:C177000 Refractory Sezary Syndrome 10 127350 -NCIT:C8687 Refractory Mycosis Fungoides 10 127351 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 127352 -NCIT:C3246 Mycosis Fungoides 9 127353 -NCIT:C141143 Mycosis Fungoides by AJCC v7 Stage 10 127354 -NCIT:C7796 Stage I Mycosis Fungoides AJCC v7 11 127355 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 12 127356 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 12 127357 -NCIT:C7798 Stage II Mycosis Fungoides AJCC v7 11 127358 -NCIT:C7800 Stage III Mycosis Fungoides AJCC v7 11 127359 -NCIT:C7802 Stage IV Mycosis Fungoides AJCC v7 11 127360 -NCIT:C165783 Transformed Mycosis Fungoides 10 127361 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 127362 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 127363 -NCIT:C8686 Recurrent Mycosis Fungoides 10 127364 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 127365 -NCIT:C8687 Refractory Mycosis Fungoides 10 127366 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 127367 -NCIT:C3366 Sezary Syndrome 9 127368 -NCIT:C176999 Recurrent Sezary Syndrome 10 127369 -NCIT:C177000 Refractory Sezary Syndrome 10 127370 -NCIT:C39644 Mycosis Fungoides Variant 9 127371 -NCIT:C35464 Granulomatous Slack Skin Disease 10 127372 -NCIT:C35685 Folliculotropic Mycosis Fungoides 10 127373 -NCIT:C35794 Pagetoid Reticulosis 10 127374 -NCIT:C5182 Breast T-Cell Non-Hodgkin Lymphoma 7 127375 -NCIT:C139012 Breast Implant-Associated Anaplastic Large Cell Lymphoma 8 127376 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 127377 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 127378 -NCIT:C5254 Gastric T-Cell Non-Hodgkin Lymphoma 7 127379 -NCIT:C5409 Central Nervous System T-Cell Non-Hodgkin Lymphoma 7 127380 -NCIT:C129600 Central Nervous System Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 8 127381 -NCIT:C5322 Central Nervous System Anaplastic Large Cell Lymphoma 9 127382 -NCIT:C129598 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Positive 10 127383 -NCIT:C129599 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Negative 10 127384 -NCIT:C8663 Recurrent T-Cell Non-Hodgkin Lymphoma 7 127385 -NCIT:C178554 Recurrent Aggressive T-Cell Non-Hodgkin Lymphoma 8 127386 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 127387 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 9 127388 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 127389 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 127390 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 9 127391 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 127392 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 127393 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 9 127394 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 9 127395 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 9 127396 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 9 127397 -NCIT:C183513 Recurrent Indolent T-Cell Non-Hodgkin Lymphoma 8 127398 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 127399 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 127400 -NCIT:C8686 Recurrent Mycosis Fungoides 9 127401 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 127402 -NCIT:C8688 Recurrent Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 8 127403 -NCIT:C115439 Recurrent Mycosis Fungoides and Sezary Syndrome 9 127404 -NCIT:C176999 Recurrent Sezary Syndrome 10 127405 -NCIT:C8686 Recurrent Mycosis Fungoides 10 127406 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 127407 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 127408 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 9 127409 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 127410 -NCIT:C157689 Recurrent NK-Cell Lymphoma, Unclassifiable 9 127411 -NCIT:C165789 Recurrent Transformed T-cell Non-Hodgkin Lymphoma 9 127412 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 127413 -NCIT:C168778 Recurrent Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 9 127414 -NCIT:C168780 Recurrent Follicular T-Cell Lymphoma 9 127415 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 9 127416 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 127417 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 127418 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 127419 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 127420 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 127421 -NCIT:C8686 Recurrent Mycosis Fungoides 10 127422 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 127423 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 9 127424 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 9 127425 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 9 127426 -NCIT:C9250 Recurrent Anaplastic Large Cell Lymphoma 9 127427 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 10 127428 -NCIT:C162688 Recurrent Systemic Anaplastic Large Cell Lymphoma 10 127429 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 11 127430 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 127431 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 127432 -NCIT:C8664 Refractory T-Cell Non-Hodgkin Lymphoma 7 127433 -NCIT:C178556 Refractory Aggressive T-Cell Non-Hodgkin Lymphoma 8 127434 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 9 127435 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 127436 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 127437 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 127438 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 127439 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 9 127440 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 9 127441 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 9 127442 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 9 127443 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 9 127444 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 127445 -NCIT:C183515 Refractory Indolent T-Cell Non-Hodgkin Lymphoma 8 127446 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 127447 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 127448 -NCIT:C8687 Refractory Mycosis Fungoides 9 127449 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 127450 -NCIT:C8689 Refractory Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 8 127451 -NCIT:C148129 Refractory Mycosis Fungoides and Sezary Syndrome 9 127452 -NCIT:C177000 Refractory Sezary Syndrome 10 127453 -NCIT:C8687 Refractory Mycosis Fungoides 10 127454 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 127455 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 9 127456 -NCIT:C157690 Refractory NK-Cell Lymphoma, Unclassifiable 9 127457 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 127458 -NCIT:C165791 Refractory Transformed T-cell Non-Hodgkin Lymphoma 9 127459 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 127460 -NCIT:C168779 Refractory Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 9 127461 -NCIT:C168781 Refractory Follicular T-Cell Lymphoma 9 127462 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 9 127463 -NCIT:C8658 Refractory Anaplastic Large Cell Lymphoma 9 127464 -NCIT:C162689 Refractory Systemic Anaplastic Large Cell Lymphoma 10 127465 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 11 127466 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 127467 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 127468 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 9 127469 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 9 127470 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 9 127471 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 127472 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 127473 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 127474 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 127475 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 127476 -NCIT:C8687 Refractory Mycosis Fungoides 10 127477 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 127478 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 127479 -NCIT:C96054 Small Intestinal T-Cell Non-Hodgkin Lymphoma 7 127480 -NCIT:C150504 Small Intestinal Monomorphic Epitheliotropic T-Cell Lymphoma 8 127481 -NCIT:C39610 Small Intestinal Enteropathy-Associated T-Cell Lymphoma 8 127482 -NCIT:C38161 Digestive System Non-Hodgkin Lymphoma 6 127483 -NCIT:C150495 Intestinal T-Cell Lymphoma 7 127484 -NCIT:C150505 Intestinal T-Cell Lymphoma, Not Otherwise Specified 8 127485 -NCIT:C4737 Enteropathy-Associated T-Cell Lymphoma 8 127486 -NCIT:C141295 Enteropathy-Associated T-Cell Lymphoma by Ann Arbor Stage 9 127487 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 10 127488 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 10 127489 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 10 127490 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 10 127491 -NCIT:C39610 Small Intestinal Enteropathy-Associated T-Cell Lymphoma 9 127492 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 9 127493 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 9 127494 -NCIT:C96058 Monomorphic Epitheliotropic Intestinal T-Cell Lymphoma 8 127495 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 127496 -NCIT:C150504 Small Intestinal Monomorphic Epitheliotropic T-Cell Lymphoma 9 127497 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 127498 -NCIT:C172844 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue Involving the Digestive System 7 127499 -NCIT:C5266 Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 8 127500 -NCIT:C27763 Helicobacter Pylori-Associated Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 9 127501 -NCIT:C5635 Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 8 127502 -NCIT:C45166 Campylobacter Jejuni-Associated Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 9 127503 -NCIT:C5768 Liver Mucosa-Associated Lymphoid Tissue Lymphoma 8 127504 -NCIT:C95626 Esophageal Mucosa-Associated Lymphoid Tissue Lymphoma 8 127505 -NCIT:C96506 Colorectal Mucosa-Associated Lymphoid Tissue Lymphoma 8 127506 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 9 127507 -NCIT:C172850 Digestive System Diffuse Large B-Cell Lymphoma 7 127508 -NCIT:C5253 Gastric Diffuse Large B-Cell Lymphoma 8 127509 -NCIT:C95625 Esophageal Diffuse Large B-Cell Lymphoma 8 127510 -NCIT:C96055 Small Intestinal Diffuse Large B-Cell Lymphoma 8 127511 -NCIT:C96057 Small Intestinal High Grade B-Cell Lymphoma, Not Otherwise Specified 9 127512 -NCIT:C96503 Colorectal Diffuse Large B-Cell Lymphoma 8 127513 -NCIT:C96501 Colorectal High Grade B-Cell Lymphoma, Not Otherwise Specified 9 127514 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 9 127515 -NCIT:C96843 Liver Diffuse Large B-Cell Lymphoma 8 127516 -NCIT:C27235 Gastric Non-Hodgkin Lymphoma 7 127517 -NCIT:C5251 Gastric Burkitt Lymphoma 8 127518 -NCIT:C5253 Gastric Diffuse Large B-Cell Lymphoma 8 127519 -NCIT:C5254 Gastric T-Cell Non-Hodgkin Lymphoma 8 127520 -NCIT:C5266 Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 8 127521 -NCIT:C27763 Helicobacter Pylori-Associated Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 9 127522 -NCIT:C4339 Multifocal Lymphomatous Polyposis 7 127523 -NCIT:C5688 Esophageal Non-Hodgkin Lymphoma 7 127524 -NCIT:C95625 Esophageal Diffuse Large B-Cell Lymphoma 8 127525 -NCIT:C95626 Esophageal Mucosa-Associated Lymphoid Tissue Lymphoma 8 127526 -NCIT:C5766 Liver Non-Hodgkin Lymphoma 7 127527 -NCIT:C5768 Liver Mucosa-Associated Lymphoid Tissue Lymphoma 8 127528 -NCIT:C8459 Hepatosplenic T-Cell Lymphoma 8 127529 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 9 127530 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 9 127531 -NCIT:C96843 Liver Diffuse Large B-Cell Lymphoma 8 127532 -NCIT:C5789 Pancreatic Non-Hodgkin Lymphoma 7 127533 -NCIT:C7231 Small Intestinal Non-Hodgkin Lymphoma 7 127534 -NCIT:C96053 Small Intestinal B-Cell Non-Hodgkin Lymphoma 8 127535 -NCIT:C27409 Small Intestinal Burkitt Lymphoma 9 127536 -NCIT:C27410 Small Intestinal Atypical Burkitt/Burkitt-Like Lymphoma 10 127537 -NCIT:C27441 Small Intestinal Mantle Cell Lymphoma 9 127538 -NCIT:C3132 Alpha Heavy Chain Disease 9 127539 -NCIT:C5635 Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 9 127540 -NCIT:C45166 Campylobacter Jejuni-Associated Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 10 127541 -NCIT:C96055 Small Intestinal Diffuse Large B-Cell Lymphoma 9 127542 -NCIT:C96057 Small Intestinal High Grade B-Cell Lymphoma, Not Otherwise Specified 10 127543 -NCIT:C96056 Small Intestinal Follicular Lymphoma 9 127544 -NCIT:C96054 Small Intestinal T-Cell Non-Hodgkin Lymphoma 8 127545 -NCIT:C150504 Small Intestinal Monomorphic Epitheliotropic T-Cell Lymphoma 9 127546 -NCIT:C39610 Small Intestinal Enteropathy-Associated T-Cell Lymphoma 9 127547 -NCIT:C7465 AIDS-Related Anal Non-Hodgkin Lymphoma 7 127548 -NCIT:C80298 Intestinal Follicular Lymphoma 7 127549 -NCIT:C96056 Small Intestinal Follicular Lymphoma 8 127550 -NCIT:C96499 Colorectal Non-Hodgkin Lymphoma 7 127551 -NCIT:C4950 Colon Non-Hodgkin Lymphoma 8 127552 -NCIT:C27411 Colon Mantle Cell Lymphoma 9 127553 -NCIT:C27465 Colon Burkitt Lymphoma 9 127554 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 9 127555 -NCIT:C5521 Cecum Non-Hodgkin Lymphoma 9 127556 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 9 127557 -NCIT:C96502 Colorectal Burkitt Lymphoma 8 127558 -NCIT:C27465 Colon Burkitt Lymphoma 9 127559 -NCIT:C96503 Colorectal Diffuse Large B-Cell Lymphoma 8 127560 -NCIT:C96501 Colorectal High Grade B-Cell Lymphoma, Not Otherwise Specified 9 127561 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 9 127562 -NCIT:C96505 Colorectal Mantle Cell Lymphoma 8 127563 -NCIT:C27411 Colon Mantle Cell Lymphoma 9 127564 -NCIT:C96506 Colorectal Mucosa-Associated Lymphoid Tissue Lymphoma 8 127565 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 9 127566 -NCIT:C5051 AIDS-Related Non-Hodgkin Lymphoma 6 127567 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 7 127568 -NCIT:C7212 AIDS-Related Diffuse Large B-cell Lymphoma 7 127569 -NCIT:C27858 AIDS-Related Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 8 127570 -NCIT:C27859 AIDS-Related Plasmablastic Lymphoma 8 127571 -NCIT:C38160 AIDS-Related Plasmablastic Lymphoma of Mucosa Site 9 127572 -NCIT:C9016 AIDS-Related Plasmablastic Lymphoma of the Oral Mucosa 10 127573 -NCIT:C8285 AIDS-Related Immunoblastic Lymphoma 8 127574 -NCIT:C9017 AIDS-Related Primary Effusion Lymphoma 8 127575 -NCIT:C7434 AIDS-Related Non-Hodgkin Lymphoma of the Cervix 7 127576 -NCIT:C7465 AIDS-Related Anal Non-Hodgkin Lymphoma 7 127577 -NCIT:C8286 AIDS-Related Burkitt Lymphoma 7 127578 -NCIT:C27857 AIDS-Related Burkitt Lymphoma with Plasmacytoid Differentiation 8 127579 -NCIT:C8298 AIDS-Related Lymphoblastic Lymphoma 7 127580 -NCIT:C5181 Breast Non-Hodgkin Lymphoma 6 127581 -NCIT:C35688 Breast Mucosa-Associated Lymphoid Tissue Lymphoma 7 127582 -NCIT:C40375 Breast Diffuse Large B-Cell Lymphoma 7 127583 -NCIT:C40376 Breast Burkitt Lymphoma 7 127584 -NCIT:C40377 Breast Follicular Lymphoma 7 127585 -NCIT:C5182 Breast T-Cell Non-Hodgkin Lymphoma 7 127586 -NCIT:C139012 Breast Implant-Associated Anaplastic Large Cell Lymphoma 8 127587 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 127588 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 127589 -NCIT:C5534 Prostate Non-Hodgkin Lymphoma 6 127590 -NCIT:C161602 Prostate Diffuse Large B-Cell Lymphoma 7 127591 -NCIT:C161603 Prostate Follicular Lymphoma 7 127592 -NCIT:C161604 Prostate Mantle Cell Lymphoma 7 127593 -NCIT:C161605 Prostate Small Lymphocytic Lymphoma 7 127594 -NCIT:C5684 Lung Non-Hodgkin Lymphoma 6 127595 -NCIT:C181211 Lung Follicular Lymphoma 7 127596 -NCIT:C188082 Lung Anaplastic Large Cell Lymphoma 7 127597 -NCIT:C45605 Lung Diffuse Large B-Cell Lymphoma 7 127598 -NCIT:C183121 Lung Intravascular Large B-Cell Lymphoma 8 127599 -NCIT:C5264 Lung Mucosa-Associated Lymphoid Tissue Lymphoma 7 127600 -NCIT:C6044 Thyroid Gland Non-Hodgkin Lymphoma 6 127601 -NCIT:C156410 Thyroid Gland Follicular Lymphoma 7 127602 -NCIT:C6046 Thyroid Gland Diffuse Large B-Cell Lymphoma 7 127603 -NCIT:C7263 Thyroid Gland Immunoblastic Lymphoma 8 127604 -NCIT:C7601 Thyroid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 7 127605 -NCIT:C7215 Non-Hodgkin Lymphoma by Clinical Course 6 127606 -NCIT:C68837 Favorable Non-Hodgkin Lymphoma 7 127607 -NCIT:C53280 Early Favorable Non-Hodgkin Lymphoma 8 127608 -NCIT:C53283 Advanced Favorable Non-Hodgkin Lymphoma 8 127609 -NCIT:C68838 Unfavorable Non-Hodgkin Lymphoma 7 127610 -NCIT:C53282 Early Unfavorable Non-Hodgkin Lymphoma 8 127611 -NCIT:C53284 Advanced Unfavorable Non-Hodgkin Lymphoma 8 127612 -NCIT:C7216 Non-Hodgkin Lymphoma with Variable Clinical Course 7 127613 -NCIT:C9280 Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 127614 -NCIT:C141262 Primary Mediastinal (Thymic) Large B-Cell Lymphoma by Ann Arbor Stage 9 127615 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 127616 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 127617 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 127618 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 127619 -NCIT:C188455 Childhood Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 127620 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 127621 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 127622 -NCIT:C8504 Indolent Non-Hodgkin Lymphoma 7 127623 -NCIT:C171299 Indolent B-Cell Non-Hodgkin Lymphoma 8 127624 -NCIT:C175451 Primary Uveal Non-Hodgkin Lymphoma 9 127625 -NCIT:C175464 Primary Choroidal Non-Hodgkin Lymphoma 10 127626 -NCIT:C175466 Primary Ciliary Body Non-Hodgkin Lymphoma 10 127627 -NCIT:C175467 Primary Iris Non-Hodgkin Lymphoma 10 127628 -NCIT:C3212 Lymphoplasmacytic Lymphoma 9 127629 -NCIT:C141256 Lymphoplasmacytic Lymphoma by Ann Arbor Stage 10 127630 -NCIT:C8653 Ann Arbor Stage I Lymphoplasmacytic Lymphoma 11 127631 -NCIT:C8654 Ann Arbor Stage II Lymphoplasmacytic Lymphoma 11 127632 -NCIT:C8655 Ann Arbor Stage III Lymphoplasmacytic Lymphoma 11 127633 -NCIT:C8656 Ann Arbor Stage IV Lymphoplasmacytic Lymphoma 11 127634 -NCIT:C7305 Splenic Lymphoplasmacytic Lymphoma 10 127635 -NCIT:C80307 Waldenstrom Macroglobulinemia 10 127636 -NCIT:C115212 Familial Waldenstrom Macroglobulinemia 11 127637 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 11 127638 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 11 127639 -NCIT:C155910 Smoldering Waldenstrom Macroglobulinemia 11 127640 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 10 127641 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 11 127642 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 10 127643 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 11 127644 -NCIT:C3465 Grade 1 Follicular Lymphoma 9 127645 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 10 127646 -NCIT:C7220 Grade 1 Cutaneous Follicular Lymphoma 10 127647 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 10 127648 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 10 127649 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 11 127650 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 11 127651 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 10 127652 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 10 127653 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 10 127654 -NCIT:C37203 Small Lymphocytic Lymphoma with Immunoglobulin Heavy Chain Variable-Region Gene Somatic Hypermutation 9 127655 -NCIT:C4341 Marginal Zone Lymphoma 9 127656 -NCIT:C141258 Marginal Zone Lymphoma by Ann Arbor Stage 10 127657 -NCIT:C141260 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue by Ann Arbor Stage 11 127658 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 127659 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 127660 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 127661 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 127662 -NCIT:C141261 Nodal Marginal Zone Lymphoma by Ann Arbor Stage 11 127663 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 12 127664 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 12 127665 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 12 127666 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 12 127667 -NCIT:C68678 Ann Arbor Stage I Marginal Zone Lymphoma 11 127668 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 127669 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 12 127670 -NCIT:C68679 Ann Arbor Stage II Marginal Zone Lymphoma 11 127671 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 127672 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 12 127673 -NCIT:C68682 Ann Arbor Stage III Marginal Zone Lymphoma 11 127674 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 127675 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 12 127676 -NCIT:C68683 Ann Arbor Stage IV Marginal Zone Lymphoma 11 127677 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 127678 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 12 127679 -NCIT:C143085 Refractory Marginal Zone Lymphoma 10 127680 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 11 127681 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 127682 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 11 127683 -NCIT:C172360 Advanced Marginal Zone Lymphoma 10 127684 -NCIT:C3898 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 127685 -NCIT:C123394 Childhood Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 127686 -NCIT:C141260 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue by Ann Arbor Stage 11 127687 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 127688 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 127689 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 127690 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 127691 -NCIT:C172844 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue Involving the Digestive System 11 127692 -NCIT:C5266 Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 12 127693 -NCIT:C27763 Helicobacter Pylori-Associated Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 13 127694 -NCIT:C5635 Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 12 127695 -NCIT:C45166 Campylobacter Jejuni-Associated Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 13 127696 -NCIT:C5768 Liver Mucosa-Associated Lymphoid Tissue Lymphoma 12 127697 -NCIT:C95626 Esophageal Mucosa-Associated Lymphoid Tissue Lymphoma 12 127698 -NCIT:C96506 Colorectal Mucosa-Associated Lymphoid Tissue Lymphoma 12 127699 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 13 127700 -NCIT:C173693 Salivary Gland Mucosa-Associated Lymphoid Tissue Lymphoma 11 127701 -NCIT:C35687 Parotid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 12 127702 -NCIT:C181910 Endometrial Mucosa-Associated Lymphoid Tissue Lymphoma 11 127703 -NCIT:C35688 Breast Mucosa-Associated Lymphoid Tissue Lymphoma 11 127704 -NCIT:C35689 Ocular Adnexal Mucosa-Associated Lymphoid Tissue Lymphoma 11 127705 -NCIT:C175431 Conjunctival Mucosa-Associated Lymphoid Tissue Lymphoma 12 127706 -NCIT:C175482 Lacrimal System Mucosa-Associated Lymphoid Tissue Lymphoma 12 127707 -NCIT:C175483 Lacrimal Gland Mucosa-Associated Lymphoid Tissue Lymphoma 13 127708 -NCIT:C175484 Lacrimal Drainage System Mucosa-Associated Lymphoid Tissue Lymphoma 13 127709 -NCIT:C182357 Diffusion Restriction 12 127710 -NCIT:C44960 Chlamydia Psittaci-Associated Ocular Adnexal Mucosa-Associated Lymphoid Tissue Lymphoma 12 127711 -NCIT:C39878 Bladder Mucosa-Associated Lymphoid Tissue Lymphoma 11 127712 -NCIT:C45380 Thymic Mucosa-Associated Lymphoid Tissue Lymphoma 11 127713 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 127714 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 127715 -NCIT:C5264 Lung Mucosa-Associated Lymphoid Tissue Lymphoma 11 127716 -NCIT:C7230 Primary Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 127717 -NCIT:C45163 Borrelia Burgdoferi-Associated Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 12 127718 -NCIT:C7601 Thyroid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 11 127719 -NCIT:C95991 Dural Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 127720 -NCIT:C4663 Splenic Marginal Zone Lymphoma 10 127721 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 11 127722 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 11 127723 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 10 127724 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 11 127725 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 127726 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 11 127727 -NCIT:C8863 Nodal Marginal Zone Lymphoma 10 127728 -NCIT:C141261 Nodal Marginal Zone Lymphoma by Ann Arbor Stage 11 127729 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 12 127730 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 12 127731 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 12 127732 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 12 127733 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 11 127734 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 11 127735 -NCIT:C80299 Pediatric Nodal Marginal Zone Lymphoma 11 127736 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 9 127737 -NCIT:C7264 Diffuse Follicular Lymphoma 9 127738 -NCIT:C7194 Grade 2 Diffuse Follicular Lymphoma 10 127739 -NCIT:C9464 Grade 1 Diffuse Follicular Lymphoma 10 127740 -NCIT:C8968 Grade 2 Follicular Lymphoma 9 127741 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 10 127742 -NCIT:C7219 Grade 2 Cutaneous Follicular Lymphoma 10 127743 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 10 127744 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 10 127745 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 11 127746 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 11 127747 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 10 127748 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 10 127749 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 10 127750 -NCIT:C171300 Indolent T-Cell Non-Hodgkin Lymphoma 8 127751 -NCIT:C3246 Mycosis Fungoides 9 127752 -NCIT:C141143 Mycosis Fungoides by AJCC v7 Stage 10 127753 -NCIT:C7796 Stage I Mycosis Fungoides AJCC v7 11 127754 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 12 127755 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 12 127756 -NCIT:C7798 Stage II Mycosis Fungoides AJCC v7 11 127757 -NCIT:C7800 Stage III Mycosis Fungoides AJCC v7 11 127758 -NCIT:C7802 Stage IV Mycosis Fungoides AJCC v7 11 127759 -NCIT:C165783 Transformed Mycosis Fungoides 10 127760 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 127761 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 127762 -NCIT:C8686 Recurrent Mycosis Fungoides 10 127763 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 127764 -NCIT:C8687 Refractory Mycosis Fungoides 10 127765 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 127766 -NCIT:C39644 Mycosis Fungoides Variant 9 127767 -NCIT:C35464 Granulomatous Slack Skin Disease 10 127768 -NCIT:C35685 Folliculotropic Mycosis Fungoides 10 127769 -NCIT:C35794 Pagetoid Reticulosis 10 127770 -NCIT:C6860 Primary Cutaneous Anaplastic Large Cell Lymphoma 9 127771 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 127772 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 127773 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 10 127774 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 10 127775 -NCIT:C6918 Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 127776 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 127777 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 127778 -NCIT:C173046 Refractory Indolent Non-Hodgkin Lymphoma 8 127779 -NCIT:C148175 Refractory Indolent Adult Non-Hodgkin Lymphoma 9 127780 -NCIT:C183514 Refractory Indolent B-Cell Non-Hodgkin Lymphoma 9 127781 -NCIT:C143085 Refractory Marginal Zone Lymphoma 10 127782 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 11 127783 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 127784 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 11 127785 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 10 127786 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 10 127787 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 10 127788 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 11 127789 -NCIT:C183515 Refractory Indolent T-Cell Non-Hodgkin Lymphoma 9 127790 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 127791 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 127792 -NCIT:C8687 Refractory Mycosis Fungoides 10 127793 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 127794 -NCIT:C181796 Recurrent Indolent Non-Hodgkin Lymphoma 8 127795 -NCIT:C183512 Recurrent Indolent B-Cell Non-Hodgkin Lymphoma 9 127796 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 10 127797 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 11 127798 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 127799 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 11 127800 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 10 127801 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 10 127802 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 10 127803 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 11 127804 -NCIT:C183513 Recurrent Indolent T-Cell Non-Hodgkin Lymphoma 9 127805 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 127806 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 127807 -NCIT:C8686 Recurrent Mycosis Fungoides 10 127808 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 127809 -NCIT:C8488 Recurrent Indolent Adult Non-Hodgkin Lymphoma 9 127810 -NCIT:C8491 Indolent Adult Non-Hodgkin Lymphoma 8 127811 -NCIT:C148175 Refractory Indolent Adult Non-Hodgkin Lymphoma 9 127812 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 9 127813 -NCIT:C68688 Ann Arbor Stage II Indolent Adult Non-Hodgkin Lymphoma 9 127814 -NCIT:C8467 Ann Arbor Stage II Contiguous Adult Indolent Non-Hodgkin Lymphoma 10 127815 -NCIT:C8478 Ann Arbor Stage II Non-Contiguous Adult Indolent Non-Hodgkin Lymphoma 10 127816 -NCIT:C8464 Ann Arbor Stage I Indolent Adult Non-Hodgkin Lymphoma 9 127817 -NCIT:C8482 Ann Arbor Stage III Indolent Adult Non-Hodgkin Lymphoma 9 127818 -NCIT:C8485 Ann Arbor Stage IV Indolent Adult Non-Hodgkin Lymphoma 9 127819 -NCIT:C8488 Recurrent Indolent Adult Non-Hodgkin Lymphoma 9 127820 -NCIT:C9244 Aggressive Non-Hodgkin Lymphoma 7 127821 -NCIT:C156232 Recurrent Aggressive Non-Hodgkin Lymphoma 8 127822 -NCIT:C178553 Recurrent Aggressive B-Cell Non-Hodgkin Lymphoma 9 127823 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 127824 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 127825 -NCIT:C5008 Recurrent Burkitt Lymphoma 10 127826 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 11 127827 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 11 127828 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 10 127829 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 11 127830 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 11 127831 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 10 127832 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 11 127833 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 11 127834 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 10 127835 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 10 127836 -NCIT:C178554 Recurrent Aggressive T-Cell Non-Hodgkin Lymphoma 9 127837 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 127838 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 10 127839 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 127840 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 127841 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 10 127842 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 127843 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 127844 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 10 127845 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 10 127846 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 10 127847 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 10 127848 -NCIT:C8490 Recurrent Aggressive Adult Non-Hodgkin Lymphoma 9 127849 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 127850 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 10 127851 -NCIT:C8164 Recurrent Adult Lymphoblastic Lymphoma 10 127852 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 10 127853 -NCIT:C156233 Refractory Aggressive Non-Hodgkin Lymphoma 8 127854 -NCIT:C178555 Refractory Aggressive B-Cell Non-Hodgkin Lymphoma 9 127855 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 127856 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 127857 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 10 127858 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 11 127859 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 11 127860 -NCIT:C8847 Refractory Burkitt Lymphoma 10 127861 -NCIT:C8862 Refractory Mantle Cell Lymphoma 10 127862 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 10 127863 -NCIT:C178556 Refractory Aggressive T-Cell Non-Hodgkin Lymphoma 9 127864 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 10 127865 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 127866 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 127867 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 127868 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 127869 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 10 127870 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 10 127871 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 10 127872 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 10 127873 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 10 127874 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 127875 -NCIT:C178541 Aggressive B-Cell Non-Hodgkin Lymphoma 8 127876 -NCIT:C131911 Burkitt-Like Lymphoma with 11q Aberration 9 127877 -NCIT:C178553 Recurrent Aggressive B-Cell Non-Hodgkin Lymphoma 9 127878 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 127879 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 127880 -NCIT:C5008 Recurrent Burkitt Lymphoma 10 127881 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 11 127882 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 11 127883 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 10 127884 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 11 127885 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 11 127886 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 10 127887 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 11 127888 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 11 127889 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 10 127890 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 10 127891 -NCIT:C178555 Refractory Aggressive B-Cell Non-Hodgkin Lymphoma 9 127892 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 127893 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 127894 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 10 127895 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 11 127896 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 11 127897 -NCIT:C8847 Refractory Burkitt Lymphoma 10 127898 -NCIT:C8862 Refractory Mantle Cell Lymphoma 10 127899 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 10 127900 -NCIT:C2912 Burkitt Lymphoma 9 127901 -NCIT:C141253 Burkitt Lymphoma by Ann Arbor Stage 10 127902 -NCIT:C5084 Ann Arbor Stage IV Burkitt Lymphoma 11 127903 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 12 127904 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 12 127905 -NCIT:C8848 Ann Arbor Stage I Burkitt Lymphoma 11 127906 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 12 127907 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 12 127908 -NCIT:C8849 Ann Arbor Stage II Burkitt Lymphoma 11 127909 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 12 127910 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 13 127911 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 13 127912 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 12 127913 -NCIT:C8850 Ann Arbor Stage III Burkitt Lymphoma 11 127914 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 12 127915 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 12 127916 -NCIT:C168651 Cutaneous Burkitt Lymphoma 10 127917 -NCIT:C188075 Kidney Burkitt Lymphoma 10 127918 -NCIT:C27409 Small Intestinal Burkitt Lymphoma 10 127919 -NCIT:C27410 Small Intestinal Atypical Burkitt/Burkitt-Like Lymphoma 11 127920 -NCIT:C27694 EBV-Related Burkitt Lymphoma 10 127921 -NCIT:C27122 Endemic Burkitt Lymphoma 11 127922 -NCIT:C27914 Sporadic Burkitt Lymphoma 10 127923 -NCIT:C27915 Immunodeficiency-Related Burkitt Lymphoma 10 127924 -NCIT:C7244 Burkitt Lymphoma Post-Transplant Lymphoproliferative Disorder 11 127925 -NCIT:C7245 Burkitt-Like Lymphoma Post-Transplant Lymphoproliferative Disorder 12 127926 -NCIT:C7255 Methotrexate-Related Burkitt Lymphoma 11 127927 -NCIT:C8286 AIDS-Related Burkitt Lymphoma 11 127928 -NCIT:C27857 AIDS-Related Burkitt Lymphoma with Plasmacytoid Differentiation 12 127929 -NCIT:C40376 Breast Burkitt Lymphoma 10 127930 -NCIT:C5008 Recurrent Burkitt Lymphoma 10 127931 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 11 127932 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 11 127933 -NCIT:C5251 Gastric Burkitt Lymphoma 10 127934 -NCIT:C6917 Atypical Burkitt/Burkitt-Like Lymphoma 10 127935 -NCIT:C27410 Small Intestinal Atypical Burkitt/Burkitt-Like Lymphoma 11 127936 -NCIT:C7245 Burkitt-Like Lymphoma Post-Transplant Lymphoproliferative Disorder 11 127937 -NCIT:C7188 Classical Burkitt Lymphoma 10 127938 -NCIT:C7189 Burkitt Lymphoma with Plasmacytoid Differentiation 10 127939 -NCIT:C27857 AIDS-Related Burkitt Lymphoma with Plasmacytoid Differentiation 11 127940 -NCIT:C7309 Splenic Burkitt Lymphoma 10 127941 -NCIT:C8847 Refractory Burkitt Lymphoma 10 127942 -NCIT:C9062 Adult Burkitt Lymphoma 10 127943 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 11 127944 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 11 127945 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 12 127946 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 12 127947 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 11 127948 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 11 127949 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 11 127950 -NCIT:C9095 Childhood Burkitt Lymphoma 10 127951 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 11 127952 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 11 127953 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 11 127954 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 11 127955 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 11 127956 -NCIT:C96502 Colorectal Burkitt Lymphoma 10 127957 -NCIT:C27465 Colon Burkitt Lymphoma 11 127958 -NCIT:C3460 Grade 3 Follicular Lymphoma 9 127959 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 10 127960 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 11 127961 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 11 127962 -NCIT:C6859 Grade 3 Cutaneous Follicular Lymphoma 10 127963 -NCIT:C7191 Grade 3a Follicular Lymphoma 10 127964 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 11 127965 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 11 127966 -NCIT:C7192 Grade 3b Follicular Lymphoma 10 127967 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 11 127968 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 11 127969 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 10 127970 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 10 127971 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 11 127972 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 11 127973 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 10 127974 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 10 127975 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 10 127976 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 11 127977 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 11 127978 -NCIT:C36081 Diffuse Large B-Cell Lymphoma Activated B-Cell Type 9 127979 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 127980 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 127981 -NCIT:C4337 Mantle Cell Lymphoma 9 127982 -NCIT:C141257 Mantle Cell Lymphoma by Ann Arbor Stage 10 127983 -NCIT:C8465 Ann Arbor Stage I Mantle Cell Lymphoma 11 127984 -NCIT:C8483 Ann Arbor Stage III Mantle Cell Lymphoma 11 127985 -NCIT:C8486 Ann Arbor Stage IV Mantle Cell Lymphoma 11 127986 -NCIT:C9202 Ann Arbor Stage II Mantle Cell Lymphoma 11 127987 -NCIT:C8473 Ann Arbor Stage II Contiguous Mantle Cell Lymphoma 12 127988 -NCIT:C9198 Ann Arbor Stage II Non-Contiguous Mantle Cell Lymphoma 12 127989 -NCIT:C161604 Prostate Mantle Cell Lymphoma 10 127990 -NCIT:C181210 Parotid Gland Mantle Cell Lymphoma 10 127991 -NCIT:C188080 Tonsillar Mantle Cell Lymphoma 10 127992 -NCIT:C27440 Gastric Mantle Cell Lymphoma 10 127993 -NCIT:C27441 Small Intestinal Mantle Cell Lymphoma 10 127994 -NCIT:C39747 Pleomorphic Variant Mantle Cell Lymphoma 10 127995 -NCIT:C45266 Cutaneous Mantle Cell Lymphoma 10 127996 -NCIT:C7229 Blastoid Variant Mantle Cell Lymphoma 10 127997 -NCIT:C7306 Splenic Mantle Cell Lymphoma 10 127998 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 10 127999 -NCIT:C8862 Refractory Mantle Cell Lymphoma 10 128000 -NCIT:C96505 Colorectal Mantle Cell Lymphoma 10 128001 -NCIT:C27411 Colon Mantle Cell Lymphoma 11 128002 -NCIT:C45194 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 128003 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 128004 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 128005 -NCIT:C45231 Diffuse Large B-Cell Lymphoma Unclassifiable 9 128006 -NCIT:C7212 AIDS-Related Diffuse Large B-cell Lymphoma 9 128007 -NCIT:C27858 AIDS-Related Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 10 128008 -NCIT:C27859 AIDS-Related Plasmablastic Lymphoma 10 128009 -NCIT:C38160 AIDS-Related Plasmablastic Lymphoma of Mucosa Site 11 128010 -NCIT:C9016 AIDS-Related Plasmablastic Lymphoma of the Oral Mucosa 12 128011 -NCIT:C8285 AIDS-Related Immunoblastic Lymphoma 10 128012 -NCIT:C9017 AIDS-Related Primary Effusion Lymphoma 10 128013 -NCIT:C7246 Diffuse Large B-Cell Lymphoma Post-Transplant Lymphoproliferative Disorder 9 128014 -NCIT:C7247 Anaplastic Lymphoma Post-Transplant Lymphoproliferative Disorder 10 128015 -NCIT:C7248 Centroblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 10 128016 -NCIT:C7249 Immunoblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 10 128017 -NCIT:C7933 Grade III Lymphomatoid Granulomatosis 9 128018 -NCIT:C115150 Adult Grade III Lymphomatoid Granulomatosis 10 128019 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 11 128020 -NCIT:C115204 Childhood Grade III Lymphomatoid Granulomatosis 10 128021 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 11 128022 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 10 128023 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 11 128024 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 11 128025 -NCIT:C8868 B Lymphoblastic Lymphoma 9 128026 -NCIT:C141250 B Lymphoblastic Lymphoma by Ann Arbor Stage 10 128027 -NCIT:C8871 Ann Arbor Stage I B Lymphoblastic Lymphoma 11 128028 -NCIT:C8872 Ann Arbor Stage III B Lymphoblastic Lymphoma 11 128029 -NCIT:C8873 Ann Arbor Stage IV B Lymphoblastic Lymphoma 11 128030 -NCIT:C8937 Ann Arbor Stage II B Lymphoblastic Lymphoma 11 128031 -NCIT:C7209 Childhood B Lymphoblastic Lymphoma 10 128032 -NCIT:C7310 Splenic B Lymphoblastic Lymphoma 10 128033 -NCIT:C7338 Adult B Lymphoblastic Lymphoma 10 128034 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 10 128035 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 10 128036 -NCIT:C178547 Aggressive T-Cell Non-Hodgkin Lymphoma 8 128037 -NCIT:C150495 Intestinal T-Cell Lymphoma 9 128038 -NCIT:C150505 Intestinal T-Cell Lymphoma, Not Otherwise Specified 10 128039 -NCIT:C4737 Enteropathy-Associated T-Cell Lymphoma 10 128040 -NCIT:C141295 Enteropathy-Associated T-Cell Lymphoma by Ann Arbor Stage 11 128041 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 12 128042 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 12 128043 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 12 128044 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 12 128045 -NCIT:C39610 Small Intestinal Enteropathy-Associated T-Cell Lymphoma 11 128046 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 11 128047 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 11 128048 -NCIT:C96058 Monomorphic Epitheliotropic Intestinal T-Cell Lymphoma 10 128049 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 11 128050 -NCIT:C150504 Small Intestinal Monomorphic Epitheliotropic T-Cell Lymphoma 11 128051 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 11 128052 -NCIT:C178554 Recurrent Aggressive T-Cell Non-Hodgkin Lymphoma 9 128053 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 128054 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 10 128055 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 128056 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 128057 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 10 128058 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 128059 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 128060 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 10 128061 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 10 128062 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 10 128063 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 10 128064 -NCIT:C178556 Refractory Aggressive T-Cell Non-Hodgkin Lymphoma 9 128065 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 10 128066 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 128067 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 128068 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 128069 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 128070 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 10 128071 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 10 128072 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 10 128073 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 10 128074 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 10 128075 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 128076 -NCIT:C3184 Adult T-Cell Leukemia/Lymphoma 9 128077 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 10 128078 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 11 128079 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 11 128080 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 11 128081 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 11 128082 -NCIT:C36265 Acute Adult T-Cell Leukemia/Lymphoma 10 128083 -NCIT:C36266 Lymphomatous Adult T-Cell Leukemia/Lymphoma 10 128084 -NCIT:C36268 Hodgkin-Like Adult T-Cell Leukemia/Lymphoma 10 128085 -NCIT:C45272 Cutaneous Adult T-Cell Leukemia/Lymphoma 10 128086 -NCIT:C7178 Smoldering Adult T-Cell Leukemia/Lymphoma 10 128087 -NCIT:C7179 Chronic Adult T-Cell Leukemia/Lymphoma 10 128088 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 10 128089 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 10 128090 -NCIT:C37194 Anaplastic Large Cell Lymphoma, ALK-Negative 9 128091 -NCIT:C129599 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Negative 10 128092 -NCIT:C139012 Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 128093 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 11 128094 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 11 128095 -NCIT:C37196 Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Negative 10 128096 -NCIT:C4340 Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 128097 -NCIT:C139288 Primary EBV-Positive Nodal T-Cell or NK-Cell Lymphoma 10 128098 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 128099 -NCIT:C188459 Childhood Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 128100 -NCIT:C7205 Lymphoepithelioid Variant Peripheral T-Cell Lymphoma 10 128101 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 128102 -NCIT:C45339 Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 128103 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 128104 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 128105 -NCIT:C45340 Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 128106 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 128107 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 128108 -NCIT:C4684 Nasal Type Extranodal NK/T-Cell Lymphoma 9 128109 -NCIT:C115154 Adult Nasal Type Extranodal NK/T-Cell Lymphoma 10 128110 -NCIT:C141296 Nasal Type NK/T-Cell Lymphoma by Ann Arbor Stage 10 128111 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 11 128112 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 11 128113 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 11 128114 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 11 128115 -NCIT:C162468 Testicular Nasal Type Extranodal NK/T-Cell Lymphoma 10 128116 -NCIT:C173172 Sinonasal Extranodal NK/T-Cell Lymphoma 10 128117 -NCIT:C173173 Nasal Cavity Extranodal NK/T-Cell Lymphoma 11 128118 -NCIT:C45268 Cutaneous Nasal Type Extranodal NK/T-Cell Lymphoma 10 128119 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 10 128120 -NCIT:C68692 Childhood Nasal Type Extranodal NK/T-Cell Lymphoma 10 128121 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 10 128122 -NCIT:C6919 T Lymphoblastic Lymphoma 9 128123 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 10 128124 -NCIT:C45740 Mediastinal T Lymphoblastic Lymphoma 10 128125 -NCIT:C7210 Childhood T Lymphoblastic Lymphoma 10 128126 -NCIT:C7226 Adult T Lymphoblastic Lymphoma 10 128127 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 10 128128 -NCIT:C7311 Splenic T Lymphoblastic Lymphoma 10 128129 -NCIT:C7528 Angioimmunoblastic T-Cell Lymphoma 9 128130 -NCIT:C141294 Angioimmunoblastic T-Cell Lymphoma by Ann Arbor Stage 10 128131 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 11 128132 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 11 128133 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 11 128134 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 11 128135 -NCIT:C45271 Cutaneous Angioimmunoblastic T-Cell Lymphoma 10 128136 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 10 128137 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 10 128138 -NCIT:C8459 Hepatosplenic T-Cell Lymphoma 9 128139 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 10 128140 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 10 128141 -NCIT:C8492 Aggressive Adult Non-Hodgkin Lymphoma 8 128142 -NCIT:C115150 Adult Grade III Lymphomatoid Granulomatosis 9 128143 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 128144 -NCIT:C115154 Adult Nasal Type Extranodal NK/T-Cell Lymphoma 9 128145 -NCIT:C3184 Adult T-Cell Leukemia/Lymphoma 9 128146 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 10 128147 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 11 128148 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 11 128149 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 11 128150 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 11 128151 -NCIT:C36265 Acute Adult T-Cell Leukemia/Lymphoma 10 128152 -NCIT:C36266 Lymphomatous Adult T-Cell Leukemia/Lymphoma 10 128153 -NCIT:C36268 Hodgkin-Like Adult T-Cell Leukemia/Lymphoma 10 128154 -NCIT:C45272 Cutaneous Adult T-Cell Leukemia/Lymphoma 10 128155 -NCIT:C7178 Smoldering Adult T-Cell Leukemia/Lymphoma 10 128156 -NCIT:C7179 Chronic Adult T-Cell Leukemia/Lymphoma 10 128157 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 10 128158 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 10 128159 -NCIT:C68686 Ann Arbor Stage II Aggressive Adult Non-Hodgkin Lymphoma 9 128160 -NCIT:C8125 Ann Arbor Stage II Adult Lymphoblastic Lymphoma 10 128161 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 11 128162 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 11 128163 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 10 128164 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 11 128165 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 11 128166 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 10 128167 -NCIT:C8472 Ann Arbor Stage II Contiguous Adult Aggressive Non-Hodgkin Lymphoma 10 128168 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 11 128169 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 11 128170 -NCIT:C8479 Ann Arbor Stage II Non-Contiguous Aggressive Adult Non-Hodgkin Lymphoma 10 128171 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 11 128172 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 11 128173 -NCIT:C8484 Ann Arbor Stage III Aggressive Adult Non-Hodgkin Lymphoma 9 128174 -NCIT:C8138 Ann Arbor Stage III Adult Lymphoblastic Lymphoma 10 128175 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 10 128176 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 10 128177 -NCIT:C8487 Ann Arbor Stage IV Aggressive Adult Non-Hodgkin Lymphoma 9 128178 -NCIT:C8151 Ann Arbor Stage IV Adult Lymphoblastic Lymphoma 10 128179 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 10 128180 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 10 128181 -NCIT:C8490 Recurrent Aggressive Adult Non-Hodgkin Lymphoma 9 128182 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 128183 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 10 128184 -NCIT:C8164 Recurrent Adult Lymphoblastic Lymphoma 10 128185 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 10 128186 -NCIT:C9062 Adult Burkitt Lymphoma 9 128187 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 10 128188 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 10 128189 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 11 128190 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 11 128191 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 10 128192 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 10 128193 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 10 128194 -NCIT:C9252 Ann Arbor Stage I Aggressive Adult Non-Hodgkin Lymphoma 9 128195 -NCIT:C8079 Ann Arbor Stage I Adult Lymphoblastic Lymphoma 10 128196 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 10 128197 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 10 128198 -NCIT:C9361 Adult Lymphoblastic Lymphoma 9 128199 -NCIT:C7226 Adult T Lymphoblastic Lymphoma 10 128200 -NCIT:C7338 Adult B Lymphoblastic Lymphoma 10 128201 -NCIT:C8079 Ann Arbor Stage I Adult Lymphoblastic Lymphoma 10 128202 -NCIT:C8125 Ann Arbor Stage II Adult Lymphoblastic Lymphoma 10 128203 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 11 128204 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 11 128205 -NCIT:C8138 Ann Arbor Stage III Adult Lymphoblastic Lymphoma 10 128206 -NCIT:C8151 Ann Arbor Stage IV Adult Lymphoblastic Lymphoma 10 128207 -NCIT:C8164 Recurrent Adult Lymphoblastic Lymphoma 10 128208 -NCIT:C7294 Splenic Non-Hodgkin Lymphoma 6 128209 -NCIT:C4663 Splenic Marginal Zone Lymphoma 7 128210 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 8 128211 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 8 128212 -NCIT:C7307 Splenic Follicular Lymphoma 7 128213 -NCIT:C7308 Splenic Diffuse Large B-Cell Lymphoma 7 128214 -NCIT:C7309 Splenic Burkitt Lymphoma 7 128215 -NCIT:C80309 Splenic Diffuse Red Pulp Small B-Cell Lymphoma 7 128216 -NCIT:C8459 Hepatosplenic T-Cell Lymphoma 7 128217 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 8 128218 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 8 128219 -NCIT:C7704 Adult Non-Hodgkin Lymphoma 6 128220 -NCIT:C114784 Non-Hodgkin Lymphoma During Pregnancy 7 128221 -NCIT:C141158 Lugano Classification Adult Non-Hodgkin Lymphoma by AJCC v8 Stage 7 128222 -NCIT:C141159 Lugano Classification Limited Stage Adult Non-Hodgkin Lymphoma AJCC v8 8 128223 -NCIT:C141160 Lugano Classification Stage I Adult Non-Hodgkin Lymphoma AJCC v8 9 128224 -NCIT:C141161 Lugano Classification Stage IE Adult Non-Hodgkin Lymphoma AJCC v8 9 128225 -NCIT:C141162 Lugano Classification Stage II Adult Non-Hodgkin Lymphoma AJCC v8 9 128226 -NCIT:C141164 Lugano Classification Stage II Bulky Adult Non-Hodgkin Lymphoma AJCC v8 10 128227 -NCIT:C141163 Lugano Classification Stage IIE Adult Non-Hodgkin Lymphoma AJCC v8 9 128228 -NCIT:C141165 Lugano Classification Advanced Stage Adult Non-Hodgkin Lymphoma AJCC v8 8 128229 -NCIT:C141166 Lugano Classification Stage III Adult Non-Hodgkin Lymphoma AJCC v8 9 128230 -NCIT:C141167 Lugano Classification Stage IV Adult Non-Hodgkin Lymphoma AJCC v8 9 128231 -NCIT:C141235 Adult Non-Hodgkin Lymphoma by Ann Arbor Stage 7 128232 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 8 128233 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 9 128234 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 9 128235 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 9 128236 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 9 128237 -NCIT:C8102 Ann Arbor Stage I Adult Non-Hodgkin Lymphoma 8 128238 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 9 128239 -NCIT:C8464 Ann Arbor Stage I Indolent Adult Non-Hodgkin Lymphoma 9 128240 -NCIT:C9252 Ann Arbor Stage I Aggressive Adult Non-Hodgkin Lymphoma 9 128241 -NCIT:C8079 Ann Arbor Stage I Adult Lymphoblastic Lymphoma 10 128242 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 10 128243 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 10 128244 -NCIT:C8103 Ann Arbor Stage II Adult Non-Hodgkin Lymphoma 8 128245 -NCIT:C68686 Ann Arbor Stage II Aggressive Adult Non-Hodgkin Lymphoma 9 128246 -NCIT:C8125 Ann Arbor Stage II Adult Lymphoblastic Lymphoma 10 128247 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 11 128248 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 11 128249 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 10 128250 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 11 128251 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 11 128252 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 10 128253 -NCIT:C8472 Ann Arbor Stage II Contiguous Adult Aggressive Non-Hodgkin Lymphoma 10 128254 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 11 128255 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 11 128256 -NCIT:C8479 Ann Arbor Stage II Non-Contiguous Aggressive Adult Non-Hodgkin Lymphoma 10 128257 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 11 128258 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 11 128259 -NCIT:C68688 Ann Arbor Stage II Indolent Adult Non-Hodgkin Lymphoma 9 128260 -NCIT:C8467 Ann Arbor Stage II Contiguous Adult Indolent Non-Hodgkin Lymphoma 10 128261 -NCIT:C8478 Ann Arbor Stage II Non-Contiguous Adult Indolent Non-Hodgkin Lymphoma 10 128262 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 9 128263 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 10 128264 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 10 128265 -NCIT:C8466 Ann Arbor Stage II Contiguous Adult Non-Hodgkin Lymphoma 9 128266 -NCIT:C8467 Ann Arbor Stage II Contiguous Adult Indolent Non-Hodgkin Lymphoma 10 128267 -NCIT:C8472 Ann Arbor Stage II Contiguous Adult Aggressive Non-Hodgkin Lymphoma 10 128268 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 11 128269 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 11 128270 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 10 128271 -NCIT:C8477 Ann Arbor Stage II Non-Contiguous Adult Non-Hodgkin Lymphoma 9 128272 -NCIT:C8478 Ann Arbor Stage II Non-Contiguous Adult Indolent Non-Hodgkin Lymphoma 10 128273 -NCIT:C8479 Ann Arbor Stage II Non-Contiguous Aggressive Adult Non-Hodgkin Lymphoma 10 128274 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 11 128275 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 11 128276 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 10 128277 -NCIT:C8104 Ann Arbor Stage III Adult Non-Hodgkin Lymphoma 8 128278 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 9 128279 -NCIT:C8482 Ann Arbor Stage III Indolent Adult Non-Hodgkin Lymphoma 9 128280 -NCIT:C8484 Ann Arbor Stage III Aggressive Adult Non-Hodgkin Lymphoma 9 128281 -NCIT:C8138 Ann Arbor Stage III Adult Lymphoblastic Lymphoma 10 128282 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 10 128283 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 10 128284 -NCIT:C8105 Ann Arbor Stage IV Adult Non-Hodgkin Lymphoma 8 128285 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 9 128286 -NCIT:C8485 Ann Arbor Stage IV Indolent Adult Non-Hodgkin Lymphoma 9 128287 -NCIT:C8487 Ann Arbor Stage IV Aggressive Adult Non-Hodgkin Lymphoma 9 128288 -NCIT:C8151 Ann Arbor Stage IV Adult Lymphoblastic Lymphoma 10 128289 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 10 128290 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 10 128291 -NCIT:C27367 Adult Anaplastic Large Cell Lymphoma 7 128292 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 8 128293 -NCIT:C27366 Adult Systemic Anaplastic Large Cell Lymphoma 8 128294 -NCIT:C7615 Adult Diffuse Large B-Cell Lymphoma 7 128295 -NCIT:C115150 Adult Grade III Lymphomatoid Granulomatosis 8 128296 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 9 128297 -NCIT:C188457 Adult EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 128298 -NCIT:C7873 Adult Immunoblastic Lymphoma 8 128299 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 9 128300 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 9 128301 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 10 128302 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 10 128303 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 9 128304 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 9 128305 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 9 128306 -NCIT:C8098 Recurrent Adult Non-Hodgkin Lymphoma 7 128307 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 8 128308 -NCIT:C8488 Recurrent Indolent Adult Non-Hodgkin Lymphoma 8 128309 -NCIT:C8490 Recurrent Aggressive Adult Non-Hodgkin Lymphoma 8 128310 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 9 128311 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 9 128312 -NCIT:C8164 Recurrent Adult Lymphoblastic Lymphoma 9 128313 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 9 128314 -NCIT:C8491 Indolent Adult Non-Hodgkin Lymphoma 7 128315 -NCIT:C148175 Refractory Indolent Adult Non-Hodgkin Lymphoma 8 128316 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 8 128317 -NCIT:C68688 Ann Arbor Stage II Indolent Adult Non-Hodgkin Lymphoma 8 128318 -NCIT:C8467 Ann Arbor Stage II Contiguous Adult Indolent Non-Hodgkin Lymphoma 9 128319 -NCIT:C8478 Ann Arbor Stage II Non-Contiguous Adult Indolent Non-Hodgkin Lymphoma 9 128320 -NCIT:C8464 Ann Arbor Stage I Indolent Adult Non-Hodgkin Lymphoma 8 128321 -NCIT:C8482 Ann Arbor Stage III Indolent Adult Non-Hodgkin Lymphoma 8 128322 -NCIT:C8485 Ann Arbor Stage IV Indolent Adult Non-Hodgkin Lymphoma 8 128323 -NCIT:C8488 Recurrent Indolent Adult Non-Hodgkin Lymphoma 8 128324 -NCIT:C8492 Aggressive Adult Non-Hodgkin Lymphoma 7 128325 -NCIT:C115150 Adult Grade III Lymphomatoid Granulomatosis 8 128326 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 9 128327 -NCIT:C115154 Adult Nasal Type Extranodal NK/T-Cell Lymphoma 8 128328 -NCIT:C3184 Adult T-Cell Leukemia/Lymphoma 8 128329 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 9 128330 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 10 128331 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 10 128332 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 10 128333 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 10 128334 -NCIT:C36265 Acute Adult T-Cell Leukemia/Lymphoma 9 128335 -NCIT:C36266 Lymphomatous Adult T-Cell Leukemia/Lymphoma 9 128336 -NCIT:C36268 Hodgkin-Like Adult T-Cell Leukemia/Lymphoma 9 128337 -NCIT:C45272 Cutaneous Adult T-Cell Leukemia/Lymphoma 9 128338 -NCIT:C7178 Smoldering Adult T-Cell Leukemia/Lymphoma 9 128339 -NCIT:C7179 Chronic Adult T-Cell Leukemia/Lymphoma 9 128340 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 9 128341 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 9 128342 -NCIT:C68686 Ann Arbor Stage II Aggressive Adult Non-Hodgkin Lymphoma 8 128343 -NCIT:C8125 Ann Arbor Stage II Adult Lymphoblastic Lymphoma 9 128344 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 10 128345 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 10 128346 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 9 128347 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 10 128348 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 10 128349 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 9 128350 -NCIT:C8472 Ann Arbor Stage II Contiguous Adult Aggressive Non-Hodgkin Lymphoma 9 128351 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 10 128352 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 10 128353 -NCIT:C8479 Ann Arbor Stage II Non-Contiguous Aggressive Adult Non-Hodgkin Lymphoma 9 128354 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 10 128355 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 10 128356 -NCIT:C8484 Ann Arbor Stage III Aggressive Adult Non-Hodgkin Lymphoma 8 128357 -NCIT:C8138 Ann Arbor Stage III Adult Lymphoblastic Lymphoma 9 128358 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 9 128359 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 9 128360 -NCIT:C8487 Ann Arbor Stage IV Aggressive Adult Non-Hodgkin Lymphoma 8 128361 -NCIT:C8151 Ann Arbor Stage IV Adult Lymphoblastic Lymphoma 9 128362 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 9 128363 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 9 128364 -NCIT:C8490 Recurrent Aggressive Adult Non-Hodgkin Lymphoma 8 128365 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 9 128366 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 9 128367 -NCIT:C8164 Recurrent Adult Lymphoblastic Lymphoma 9 128368 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 9 128369 -NCIT:C9062 Adult Burkitt Lymphoma 8 128370 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 9 128371 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 9 128372 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 10 128373 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 10 128374 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 9 128375 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 9 128376 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 9 128377 -NCIT:C9252 Ann Arbor Stage I Aggressive Adult Non-Hodgkin Lymphoma 8 128378 -NCIT:C8079 Ann Arbor Stage I Adult Lymphoblastic Lymphoma 9 128379 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 9 128380 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 9 128381 -NCIT:C9361 Adult Lymphoblastic Lymphoma 8 128382 -NCIT:C7226 Adult T Lymphoblastic Lymphoma 9 128383 -NCIT:C7338 Adult B Lymphoblastic Lymphoma 9 128384 -NCIT:C8079 Ann Arbor Stage I Adult Lymphoblastic Lymphoma 9 128385 -NCIT:C8125 Ann Arbor Stage II Adult Lymphoblastic Lymphoma 9 128386 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 10 128387 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 10 128388 -NCIT:C8138 Ann Arbor Stage III Adult Lymphoblastic Lymphoma 9 128389 -NCIT:C8151 Ann Arbor Stage IV Adult Lymphoblastic Lymphoma 9 128390 -NCIT:C8164 Recurrent Adult Lymphoblastic Lymphoma 9 128391 -NCIT:C7706 Childhood Non-Hodgkin Lymphoma 6 128392 -NCIT:C115369 Recurrent Childhood Non-Hodgkin Lymphoma 7 128393 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 8 128394 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 8 128395 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 8 128396 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 8 128397 -NCIT:C123394 Childhood Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 7 128398 -NCIT:C141217 St. Jude Childhood Non-Hodgkin Lymphoma by AJCC v8 Stage 7 128399 -NCIT:C141218 St. Jude Stage I Childhood Non-Hodgkin Lymphoma AJCC v8 8 128400 -NCIT:C141219 St. Jude Stage II Childhood Non-Hodgkin Lymphoma AJCC v8 8 128401 -NCIT:C141220 St. Jude Stage III Childhood Non-Hodgkin Lymphoma AJCC v8 8 128402 -NCIT:C141221 St. Jude Stage IV Childhood Non-Hodgkin Lymphoma AJCC v8 8 128403 -NCIT:C141236 Childhood Non-Hodgkin Lymphoma by Ann Arbor Stage 7 128404 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 8 128405 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 128406 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 128407 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 128408 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 128409 -NCIT:C94791 Ann Arbor Stage I Childhood Non-Hodgkin Lymphoma 8 128410 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 128411 -NCIT:C9056 Ann Arbor Stage I Childhood Lymphoblastic Lymphoma 9 128412 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 9 128413 -NCIT:C94792 Ann Arbor Stage II Childhood Non-Hodgkin Lymphoma 8 128414 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 128415 -NCIT:C9057 Ann Arbor Stage II Childhood Lymphoblastic Lymphoma 9 128416 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 9 128417 -NCIT:C94793 Ann Arbor Stage III Childhood Non-Hodgkin Lymphoma 8 128418 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 128419 -NCIT:C9058 Ann Arbor Stage III Childhood Lymphoblastic Lymphoma 9 128420 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 9 128421 -NCIT:C94794 Ann Arbor Stage IV Childhood Non-Hodgkin Lymphoma 8 128422 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 128423 -NCIT:C9059 Ann Arbor Stage IV Childhood Lymphoblastic Lymphoma 9 128424 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 9 128425 -NCIT:C188458 Childhood Large B-Cell Lymphoma with IRF4 Rearrangement 7 128426 -NCIT:C5637 Childhood Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 7 128427 -NCIT:C188459 Childhood Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 128428 -NCIT:C5636 Childhood Anaplastic Large Cell Lymphoma 8 128429 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 9 128430 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 9 128431 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 128432 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 128433 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 128434 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 128435 -NCIT:C188460 Childhood Anaplastic Large Cell Lymphoma, ALK-Positive 9 128436 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 9 128437 -NCIT:C9471 Childhood Systemic Anaplastic Large Cell Lymphoma 9 128438 -NCIT:C68692 Childhood Nasal Type Extranodal NK/T-Cell Lymphoma 8 128439 -NCIT:C80374 Systemic EBV-Positive T-Cell Lymphoma of Childhood 8 128440 -NCIT:C7616 Childhood Diffuse Large B-Cell Lymphoma 7 128441 -NCIT:C115204 Childhood Grade III Lymphomatoid Granulomatosis 8 128442 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 9 128443 -NCIT:C188455 Childhood Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 128444 -NCIT:C188456 Childhood EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 128445 -NCIT:C9079 Childhood Immunoblastic Lymphoma 8 128446 -NCIT:C80299 Pediatric Nodal Marginal Zone Lymphoma 7 128447 -NCIT:C9095 Childhood Burkitt Lymphoma 7 128448 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 8 128449 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 8 128450 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 8 128451 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 8 128452 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 8 128453 -NCIT:C9124 Childhood Lymphoblastic Lymphoma 7 128454 -NCIT:C7209 Childhood B Lymphoblastic Lymphoma 8 128455 -NCIT:C7210 Childhood T Lymphoblastic Lymphoma 8 128456 -NCIT:C9056 Ann Arbor Stage I Childhood Lymphoblastic Lymphoma 8 128457 -NCIT:C9057 Ann Arbor Stage II Childhood Lymphoblastic Lymphoma 8 128458 -NCIT:C9058 Ann Arbor Stage III Childhood Lymphoblastic Lymphoma 8 128459 -NCIT:C9059 Ann Arbor Stage IV Childhood Lymphoblastic Lymphoma 8 128460 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 8 128461 -NCIT:C8594 Leukemic Phase of Lymphoma 6 128462 -NCIT:C138192 Leukemic Nonnodal Mantle Cell Lymphoma 7 128463 -NCIT:C3366 Sezary Syndrome 7 128464 -NCIT:C176999 Recurrent Sezary Syndrome 8 128465 -NCIT:C177000 Refractory Sezary Syndrome 8 128466 -NCIT:C36265 Acute Adult T-Cell Leukemia/Lymphoma 7 128467 -NCIT:C7178 Smoldering Adult T-Cell Leukemia/Lymphoma 7 128468 -NCIT:C7179 Chronic Adult T-Cell Leukemia/Lymphoma 7 128469 -NCIT:C8701 Refractory Non-Hodgkin Lymphoma 6 128470 -NCIT:C140091 Refractory Transformed Non-Hodgkin Lymphoma 7 128471 -NCIT:C158150 Refractory Transformed B-Cell Non-Hodgkin Lymphoma 8 128472 -NCIT:C160240 Refractory Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 9 128473 -NCIT:C186484 Refractory Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 9 128474 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 10 128475 -NCIT:C165791 Refractory Transformed T-cell Non-Hodgkin Lymphoma 8 128476 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 9 128477 -NCIT:C146989 Refractory Central Nervous System Non-Hodgkin Lymphoma 7 128478 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 8 128479 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 128480 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 128481 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 128482 -NCIT:C151978 Refractory Lymphoblastic Lymphoma 7 128483 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 8 128484 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 8 128485 -NCIT:C156233 Refractory Aggressive Non-Hodgkin Lymphoma 7 128486 -NCIT:C178555 Refractory Aggressive B-Cell Non-Hodgkin Lymphoma 8 128487 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 128488 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 9 128489 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 9 128490 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 10 128491 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 10 128492 -NCIT:C8847 Refractory Burkitt Lymphoma 9 128493 -NCIT:C8862 Refractory Mantle Cell Lymphoma 9 128494 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 9 128495 -NCIT:C178556 Refractory Aggressive T-Cell Non-Hodgkin Lymphoma 8 128496 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 9 128497 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 128498 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 128499 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 128500 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 128501 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 9 128502 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 9 128503 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 9 128504 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 9 128505 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 9 128506 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 128507 -NCIT:C173046 Refractory Indolent Non-Hodgkin Lymphoma 7 128508 -NCIT:C148175 Refractory Indolent Adult Non-Hodgkin Lymphoma 8 128509 -NCIT:C183514 Refractory Indolent B-Cell Non-Hodgkin Lymphoma 8 128510 -NCIT:C143085 Refractory Marginal Zone Lymphoma 9 128511 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 10 128512 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 128513 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 10 128514 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 9 128515 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 9 128516 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 9 128517 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 10 128518 -NCIT:C183515 Refractory Indolent T-Cell Non-Hodgkin Lymphoma 8 128519 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 128520 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 128521 -NCIT:C8687 Refractory Mycosis Fungoides 9 128522 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 128523 -NCIT:C8664 Refractory T-Cell Non-Hodgkin Lymphoma 7 128524 -NCIT:C178556 Refractory Aggressive T-Cell Non-Hodgkin Lymphoma 8 128525 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 9 128526 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 128527 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 128528 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 128529 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 128530 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 9 128531 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 9 128532 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 9 128533 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 9 128534 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 9 128535 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 128536 -NCIT:C183515 Refractory Indolent T-Cell Non-Hodgkin Lymphoma 8 128537 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 128538 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 128539 -NCIT:C8687 Refractory Mycosis Fungoides 9 128540 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 128541 -NCIT:C8689 Refractory Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 8 128542 -NCIT:C148129 Refractory Mycosis Fungoides and Sezary Syndrome 9 128543 -NCIT:C177000 Refractory Sezary Syndrome 10 128544 -NCIT:C8687 Refractory Mycosis Fungoides 10 128545 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 128546 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 9 128547 -NCIT:C157690 Refractory NK-Cell Lymphoma, Unclassifiable 9 128548 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 128549 -NCIT:C165791 Refractory Transformed T-cell Non-Hodgkin Lymphoma 9 128550 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 128551 -NCIT:C168779 Refractory Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 9 128552 -NCIT:C168781 Refractory Follicular T-Cell Lymphoma 9 128553 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 9 128554 -NCIT:C8658 Refractory Anaplastic Large Cell Lymphoma 9 128555 -NCIT:C162689 Refractory Systemic Anaplastic Large Cell Lymphoma 10 128556 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 11 128557 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 128558 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 128559 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 9 128560 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 9 128561 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 9 128562 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 128563 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 128564 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 128565 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 128566 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 128567 -NCIT:C8687 Refractory Mycosis Fungoides 10 128568 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 128569 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 128570 -NCIT:C8842 Refractory B-Cell Non-Hodgkin Lymphoma 7 128571 -NCIT:C178555 Refractory Aggressive B-Cell Non-Hodgkin Lymphoma 8 128572 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 128573 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 9 128574 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 9 128575 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 10 128576 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 10 128577 -NCIT:C8847 Refractory Burkitt Lymphoma 9 128578 -NCIT:C8862 Refractory Mantle Cell Lymphoma 9 128579 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 9 128580 -NCIT:C183514 Refractory Indolent B-Cell Non-Hodgkin Lymphoma 8 128581 -NCIT:C143085 Refractory Marginal Zone Lymphoma 9 128582 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 10 128583 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 128584 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 10 128585 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 9 128586 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 9 128587 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 9 128588 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 10 128589 -NCIT:C7228 Refractory Mature B-Cell Non-Hodgkin Lymphoma 8 128590 -NCIT:C143085 Refractory Marginal Zone Lymphoma 9 128591 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 10 128592 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 128593 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 10 128594 -NCIT:C158150 Refractory Transformed B-Cell Non-Hodgkin Lymphoma 9 128595 -NCIT:C160240 Refractory Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 10 128596 -NCIT:C186484 Refractory Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 10 128597 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 11 128598 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 9 128599 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 10 128600 -NCIT:C8846 Refractory Small Lymphocytic Lymphoma 9 128601 -NCIT:C8847 Refractory Burkitt Lymphoma 9 128602 -NCIT:C8853 Refractory Diffuse Large B-Cell Lymphoma 9 128603 -NCIT:C138018 Refractory Extranodal Diffuse Large B-cell Lymphoma 10 128604 -NCIT:C138026 Refractory Intravascular Large B-Cell Lymphoma 10 128605 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 128606 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 128607 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 10 128608 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 128609 -NCIT:C157678 Refractory T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 10 128610 -NCIT:C157680 Refractory Primary Effusion Lymphoma 10 128611 -NCIT:C157684 Refractory Plasmablastic Lymphoma 10 128612 -NCIT:C160233 Refractory High Grade B-Cell Lymphoma 10 128613 -NCIT:C151979 Refractory High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 11 128614 -NCIT:C162453 Refractory High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 11 128615 -NCIT:C188789 Refractory High Grade B-Cell Lymphoma, Not Otherwise Specified 11 128616 -NCIT:C165241 Refractory Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 128617 -NCIT:C160238 Refractory Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 11 128618 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 11 128619 -NCIT:C182034 Refractory Immunoblastic Lymphoma 11 128620 -NCIT:C8927 Refractory Centroblastic Lymphoma 11 128621 -NCIT:C183142 Refractory Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 10 128622 -NCIT:C188791 Refractory ALK-Positive Large B-Cell Lymphoma 10 128623 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 128624 -NCIT:C8858 Refractory Follicular Lymphoma 9 128625 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 10 128626 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 10 128627 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 10 128628 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 11 128629 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 11 128630 -NCIT:C8862 Refractory Mantle Cell Lymphoma 9 128631 -NCIT:C88145 Ocular Adnexal Non-Hodgkin Lymphoma 6 128632 -NCIT:C175432 Conjunctival Non-Hodgkin Lymphoma 7 128633 -NCIT:C175430 Conjunctival Follicular Lymphoma 8 128634 -NCIT:C175431 Conjunctival Mucosa-Associated Lymphoid Tissue Lymphoma 8 128635 -NCIT:C175433 Conjunctival Diffuse Large B-Cell Lymphoma 8 128636 -NCIT:C175479 Lacrimal System Non-Hodgkin Lymphoma 7 128637 -NCIT:C175480 Lacrimal Gland Non-Hodgkin Lymphoma 8 128638 -NCIT:C175483 Lacrimal Gland Mucosa-Associated Lymphoid Tissue Lymphoma 9 128639 -NCIT:C175486 Lacrimal Gland Diffuse Large B-Cell Lymphoma 9 128640 -NCIT:C175488 Lacrimal Gland Follicular Lymphoma 9 128641 -NCIT:C175481 Lacrimal Drainage System Non-Hodgkin Lymphoma 8 128642 -NCIT:C175484 Lacrimal Drainage System Mucosa-Associated Lymphoid Tissue Lymphoma 9 128643 -NCIT:C175487 Lacrimal Drainage System Diffuse Large B-Cell Lymphoma 9 128644 -NCIT:C175482 Lacrimal System Mucosa-Associated Lymphoid Tissue Lymphoma 8 128645 -NCIT:C175483 Lacrimal Gland Mucosa-Associated Lymphoid Tissue Lymphoma 9 128646 -NCIT:C175484 Lacrimal Drainage System Mucosa-Associated Lymphoid Tissue Lymphoma 9 128647 -NCIT:C175485 Lacrimal System Diffuse Large B-Cell Lymphoma 8 128648 -NCIT:C175486 Lacrimal Gland Diffuse Large B-Cell Lymphoma 9 128649 -NCIT:C175487 Lacrimal Drainage System Diffuse Large B-Cell Lymphoma 9 128650 -NCIT:C35689 Ocular Adnexal Mucosa-Associated Lymphoid Tissue Lymphoma 7 128651 -NCIT:C175431 Conjunctival Mucosa-Associated Lymphoid Tissue Lymphoma 8 128652 -NCIT:C175482 Lacrimal System Mucosa-Associated Lymphoid Tissue Lymphoma 8 128653 -NCIT:C175483 Lacrimal Gland Mucosa-Associated Lymphoid Tissue Lymphoma 9 128654 -NCIT:C175484 Lacrimal Drainage System Mucosa-Associated Lymphoid Tissue Lymphoma 9 128655 -NCIT:C182357 Diffusion Restriction 8 128656 -NCIT:C44960 Chlamydia Psittaci-Associated Ocular Adnexal Mucosa-Associated Lymphoid Tissue Lymphoma 8 128657 -NCIT:C9184 Primary Intraocular Non-Hodgkin Lymphoma 6 128658 -NCIT:C157065 Primary Vitreoretinal Non-Hodgkin Lymphoma 7 128659 -NCIT:C157067 Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 128660 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 128661 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 128662 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 8 128663 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 128664 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 8 128665 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 128666 -NCIT:C4365 Primary Retinal Non-Hodgkin Lymphoma 8 128667 -NCIT:C175451 Primary Uveal Non-Hodgkin Lymphoma 7 128668 -NCIT:C175464 Primary Choroidal Non-Hodgkin Lymphoma 8 128669 -NCIT:C175466 Primary Ciliary Body Non-Hodgkin Lymphoma 8 128670 -NCIT:C175467 Primary Iris Non-Hodgkin Lymphoma 8 128671 -NCIT:C9251 Recurrent Non-Hodgkin Lymphoma 6 128672 -NCIT:C115369 Recurrent Childhood Non-Hodgkin Lymphoma 7 128673 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 8 128674 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 8 128675 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 8 128676 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 8 128677 -NCIT:C146990 Recurrent Central Nervous System Non-Hodgkin Lymphoma 7 128678 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 8 128679 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 128680 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 128681 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 128682 -NCIT:C156232 Recurrent Aggressive Non-Hodgkin Lymphoma 7 128683 -NCIT:C178553 Recurrent Aggressive B-Cell Non-Hodgkin Lymphoma 8 128684 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 128685 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 9 128686 -NCIT:C5008 Recurrent Burkitt Lymphoma 9 128687 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 10 128688 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 10 128689 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 9 128690 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 128691 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 10 128692 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 9 128693 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 10 128694 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 10 128695 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 9 128696 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 9 128697 -NCIT:C178554 Recurrent Aggressive T-Cell Non-Hodgkin Lymphoma 8 128698 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 128699 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 9 128700 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 128701 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 128702 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 9 128703 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 128704 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 128705 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 9 128706 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 9 128707 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 9 128708 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 9 128709 -NCIT:C8490 Recurrent Aggressive Adult Non-Hodgkin Lymphoma 8 128710 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 9 128711 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 9 128712 -NCIT:C8164 Recurrent Adult Lymphoblastic Lymphoma 9 128713 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 9 128714 -NCIT:C181796 Recurrent Indolent Non-Hodgkin Lymphoma 7 128715 -NCIT:C183512 Recurrent Indolent B-Cell Non-Hodgkin Lymphoma 8 128716 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 9 128717 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 10 128718 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 128719 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 10 128720 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 9 128721 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 9 128722 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 9 128723 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 10 128724 -NCIT:C183513 Recurrent Indolent T-Cell Non-Hodgkin Lymphoma 8 128725 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 128726 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 128727 -NCIT:C8686 Recurrent Mycosis Fungoides 9 128728 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 128729 -NCIT:C8488 Recurrent Indolent Adult Non-Hodgkin Lymphoma 8 128730 -NCIT:C8098 Recurrent Adult Non-Hodgkin Lymphoma 7 128731 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 8 128732 -NCIT:C8488 Recurrent Indolent Adult Non-Hodgkin Lymphoma 8 128733 -NCIT:C8490 Recurrent Aggressive Adult Non-Hodgkin Lymphoma 8 128734 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 9 128735 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 9 128736 -NCIT:C8164 Recurrent Adult Lymphoblastic Lymphoma 9 128737 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 9 128738 -NCIT:C8663 Recurrent T-Cell Non-Hodgkin Lymphoma 7 128739 -NCIT:C178554 Recurrent Aggressive T-Cell Non-Hodgkin Lymphoma 8 128740 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 128741 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 9 128742 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 128743 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 128744 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 9 128745 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 128746 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 128747 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 9 128748 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 9 128749 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 9 128750 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 9 128751 -NCIT:C183513 Recurrent Indolent T-Cell Non-Hodgkin Lymphoma 8 128752 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 128753 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 128754 -NCIT:C8686 Recurrent Mycosis Fungoides 9 128755 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 128756 -NCIT:C8688 Recurrent Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 8 128757 -NCIT:C115439 Recurrent Mycosis Fungoides and Sezary Syndrome 9 128758 -NCIT:C176999 Recurrent Sezary Syndrome 10 128759 -NCIT:C8686 Recurrent Mycosis Fungoides 10 128760 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 128761 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 128762 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 9 128763 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 128764 -NCIT:C157689 Recurrent NK-Cell Lymphoma, Unclassifiable 9 128765 -NCIT:C165789 Recurrent Transformed T-cell Non-Hodgkin Lymphoma 9 128766 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 128767 -NCIT:C168778 Recurrent Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 9 128768 -NCIT:C168780 Recurrent Follicular T-Cell Lymphoma 9 128769 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 9 128770 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 128771 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 128772 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 128773 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 128774 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 128775 -NCIT:C8686 Recurrent Mycosis Fungoides 10 128776 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 128777 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 9 128778 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 9 128779 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 9 128780 -NCIT:C9250 Recurrent Anaplastic Large Cell Lymphoma 9 128781 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 10 128782 -NCIT:C162688 Recurrent Systemic Anaplastic Large Cell Lymphoma 10 128783 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 11 128784 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 128785 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 128786 -NCIT:C8702 Recurrent Transformed Non-Hodgkin Lymphoma 7 128787 -NCIT:C158149 Recurrent Transformed B-Cell Non-Hodgkin Lymphoma 8 128788 -NCIT:C160232 Recurrent Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 9 128789 -NCIT:C186483 Recurrent Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 9 128790 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 10 128791 -NCIT:C165789 Recurrent Transformed T-cell Non-Hodgkin Lymphoma 8 128792 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 9 128793 -NCIT:C8841 Recurrent B-Cell Non-Hodgkin Lymphoma 7 128794 -NCIT:C165799 Recurrent Mature B-Cell Non-Hodgkin Lymphoma 8 128795 -NCIT:C158149 Recurrent Transformed B-Cell Non-Hodgkin Lymphoma 9 128796 -NCIT:C160232 Recurrent Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 10 128797 -NCIT:C186483 Recurrent Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 10 128798 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 11 128799 -NCIT:C5007 Recurrent Follicular Lymphoma 9 128800 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 10 128801 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 10 128802 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 10 128803 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 11 128804 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 11 128805 -NCIT:C5008 Recurrent Burkitt Lymphoma 9 128806 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 10 128807 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 10 128808 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 9 128809 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 10 128810 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 128811 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 10 128812 -NCIT:C8154 Recurrent Small Lymphocytic Lymphoma 9 128813 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 9 128814 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 9 128815 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 10 128816 -NCIT:C8852 Recurrent Diffuse Large B-Cell Lymphoma 9 128817 -NCIT:C138015 Recurrent Extranodal Diffuse Large B-cell Lymphoma 10 128818 -NCIT:C138025 Recurrent Intravascular Large B-Cell Lymphoma 10 128819 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 128820 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 128821 -NCIT:C156696 Recurrent T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 10 128822 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 10 128823 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 128824 -NCIT:C157679 Recurrent Primary Effusion Lymphoma 10 128825 -NCIT:C157683 Recurrent Plasmablastic Lymphoma 10 128826 -NCIT:C160229 Recurrent High Grade B-Cell Lymphoma 10 128827 -NCIT:C151980 Recurrent High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 11 128828 -NCIT:C162451 Recurrent High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 11 128829 -NCIT:C188788 Recurrent High Grade B-Cell Lymphoma, Not Otherwise Specified 11 128830 -NCIT:C165240 Recurrent Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 128831 -NCIT:C160230 Recurrent Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 11 128832 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 11 128833 -NCIT:C182035 Recurrent Immunoblastic Lymphoma 11 128834 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 12 128835 -NCIT:C8926 Recurrent Centroblastic Lymphoma 11 128836 -NCIT:C183140 Recurrent Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 10 128837 -NCIT:C188790 Recurrent ALK-Positive Large B-Cell Lymphoma 10 128838 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 10 128839 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 11 128840 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 11 128841 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 128842 -NCIT:C178553 Recurrent Aggressive B-Cell Non-Hodgkin Lymphoma 8 128843 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 128844 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 9 128845 -NCIT:C5008 Recurrent Burkitt Lymphoma 9 128846 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 10 128847 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 10 128848 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 9 128849 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 128850 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 10 128851 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 9 128852 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 10 128853 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 10 128854 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 9 128855 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 9 128856 -NCIT:C183512 Recurrent Indolent B-Cell Non-Hodgkin Lymphoma 8 128857 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 9 128858 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 10 128859 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 128860 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 10 128861 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 9 128862 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 9 128863 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 9 128864 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 10 128865 -NCIT:C9360 Lymphoblastic Lymphoma 6 128866 -NCIT:C151978 Refractory Lymphoblastic Lymphoma 7 128867 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 8 128868 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 8 128869 -NCIT:C6919 T Lymphoblastic Lymphoma 7 128870 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 8 128871 -NCIT:C45740 Mediastinal T Lymphoblastic Lymphoma 8 128872 -NCIT:C7210 Childhood T Lymphoblastic Lymphoma 8 128873 -NCIT:C7226 Adult T Lymphoblastic Lymphoma 8 128874 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 8 128875 -NCIT:C7311 Splenic T Lymphoblastic Lymphoma 8 128876 -NCIT:C7312 Splenic Lymphoblastic Lymphoma 7 128877 -NCIT:C7310 Splenic B Lymphoblastic Lymphoma 8 128878 -NCIT:C7311 Splenic T Lymphoblastic Lymphoma 8 128879 -NCIT:C8298 AIDS-Related Lymphoblastic Lymphoma 7 128880 -NCIT:C8868 B Lymphoblastic Lymphoma 7 128881 -NCIT:C141250 B Lymphoblastic Lymphoma by Ann Arbor Stage 8 128882 -NCIT:C8871 Ann Arbor Stage I B Lymphoblastic Lymphoma 9 128883 -NCIT:C8872 Ann Arbor Stage III B Lymphoblastic Lymphoma 9 128884 -NCIT:C8873 Ann Arbor Stage IV B Lymphoblastic Lymphoma 9 128885 -NCIT:C8937 Ann Arbor Stage II B Lymphoblastic Lymphoma 9 128886 -NCIT:C7209 Childhood B Lymphoblastic Lymphoma 8 128887 -NCIT:C7310 Splenic B Lymphoblastic Lymphoma 8 128888 -NCIT:C7338 Adult B Lymphoblastic Lymphoma 8 128889 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 8 128890 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 8 128891 -NCIT:C9124 Childhood Lymphoblastic Lymphoma 7 128892 -NCIT:C7209 Childhood B Lymphoblastic Lymphoma 8 128893 -NCIT:C7210 Childhood T Lymphoblastic Lymphoma 8 128894 -NCIT:C9056 Ann Arbor Stage I Childhood Lymphoblastic Lymphoma 8 128895 -NCIT:C9057 Ann Arbor Stage II Childhood Lymphoblastic Lymphoma 8 128896 -NCIT:C9058 Ann Arbor Stage III Childhood Lymphoblastic Lymphoma 8 128897 -NCIT:C9059 Ann Arbor Stage IV Childhood Lymphoblastic Lymphoma 8 128898 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 8 128899 -NCIT:C9361 Adult Lymphoblastic Lymphoma 7 128900 -NCIT:C7226 Adult T Lymphoblastic Lymphoma 8 128901 -NCIT:C7338 Adult B Lymphoblastic Lymphoma 8 128902 -NCIT:C8079 Ann Arbor Stage I Adult Lymphoblastic Lymphoma 8 128903 -NCIT:C8125 Ann Arbor Stage II Adult Lymphoblastic Lymphoma 8 128904 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 9 128905 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 9 128906 -NCIT:C8138 Ann Arbor Stage III Adult Lymphoblastic Lymphoma 8 128907 -NCIT:C8151 Ann Arbor Stage IV Adult Lymphoblastic Lymphoma 8 128908 -NCIT:C8164 Recurrent Adult Lymphoblastic Lymphoma 8 128909 -NCIT:C37869 B-Cell Lymphoma, Unclassifiable, with Features Intermediate between Diffuse Large B-Cell Lymphoma and Classic Hodgkin Lymphoma 5 128910 -NCIT:C138013 Recurrent B-Cell Lymphoma, Unclassifiable, with Features Intermediate between Diffuse Large B-Cell Lymphoma and Classic Hodgkin Lymphoma 6 128911 -NCIT:C138014 Refractory B-Cell Lymphoma, Unclassifiable, with Features Intermediate between Diffuse Large B-Cell Lymphoma and Classic Hodgkin Lymphoma 6 128912 -NCIT:C37870 Mediastinal B-Cell Lymphoma, Unclassifiable, with Features Intermediate between Diffuse Large B-Cell Lymphoma and Classic Hodgkin Lymphoma 6 128913 -NCIT:C38661 Composite Lymphoma 5 128914 -NCIT:C39578 Autoimmune Lymphoproliferative Syndrome-Related Lymphoma 5 128915 -NCIT:C4938 Localized Lymphoma 5 128916 -NCIT:C166179 Localized Anaplastic Large Cell Lymphoma 6 128917 -NCIT:C5165 Childhood Lymphoma 5 128918 -NCIT:C141202 Childhood Lymphoma by AJCC v8 Stage 6 128919 -NCIT:C141178 Lugano Classification Childhood Hodgkin Lymphoma by AJCC v8 Stage 7 128920 -NCIT:C141179 Lugano Classification Limited Stage Childhood Hodgkin Lymphoma AJCC v8 8 128921 -NCIT:C141180 Lugano Classification Stage I Childhood Hodgkin Lymphoma AJCC v8 9 128922 -NCIT:C141181 Lugano Classification Stage IE Childhood Hodgkin Lymphoma AJCC v8 9 128923 -NCIT:C141182 Lugano Classification Stage II Childhood Hodgkin Lymphoma AJCC v8 9 128924 -NCIT:C141184 Lugano Classification Stage II Bulky Childhood Hodgkin Lymphoma AJCC v8 10 128925 -NCIT:C141183 Lugano Classification Stage IIE Childhood Hodgkin Lymphoma AJCC v8 9 128926 -NCIT:C141185 Lugano Classification Advanced Stage Childhood Hodgkin Lymphoma AJCC v8 8 128927 -NCIT:C141186 Lugano Classification Stage III Childhood Hodgkin Lymphoma AJCC v8 9 128928 -NCIT:C141187 Lugano Classification Stage IV Childhood Hodgkin Lymphoma AJCC v8 9 128929 -NCIT:C141217 St. Jude Childhood Non-Hodgkin Lymphoma by AJCC v8 Stage 7 128930 -NCIT:C141218 St. Jude Stage I Childhood Non-Hodgkin Lymphoma AJCC v8 8 128931 -NCIT:C141219 St. Jude Stage II Childhood Non-Hodgkin Lymphoma AJCC v8 8 128932 -NCIT:C141220 St. Jude Stage III Childhood Non-Hodgkin Lymphoma AJCC v8 8 128933 -NCIT:C141221 St. Jude Stage IV Childhood Non-Hodgkin Lymphoma AJCC v8 8 128934 -NCIT:C187196 Recurrent Childhood Lymphoma 6 128935 -NCIT:C115369 Recurrent Childhood Non-Hodgkin Lymphoma 7 128936 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 8 128937 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 8 128938 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 8 128939 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 8 128940 -NCIT:C8059 Recurrent Childhood Hodgkin Lymphoma 7 128941 -NCIT:C187197 Refractory Childhood Lymphoma 6 128942 -NCIT:C115458 Refractory Childhood Hodgkin Lymphoma 7 128943 -NCIT:C7706 Childhood Non-Hodgkin Lymphoma 6 128944 -NCIT:C115369 Recurrent Childhood Non-Hodgkin Lymphoma 7 128945 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 8 128946 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 8 128947 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 8 128948 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 8 128949 -NCIT:C123394 Childhood Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 7 128950 -NCIT:C141217 St. Jude Childhood Non-Hodgkin Lymphoma by AJCC v8 Stage 7 128951 -NCIT:C141218 St. Jude Stage I Childhood Non-Hodgkin Lymphoma AJCC v8 8 128952 -NCIT:C141219 St. Jude Stage II Childhood Non-Hodgkin Lymphoma AJCC v8 8 128953 -NCIT:C141220 St. Jude Stage III Childhood Non-Hodgkin Lymphoma AJCC v8 8 128954 -NCIT:C141221 St. Jude Stage IV Childhood Non-Hodgkin Lymphoma AJCC v8 8 128955 -NCIT:C141236 Childhood Non-Hodgkin Lymphoma by Ann Arbor Stage 7 128956 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 8 128957 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 128958 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 128959 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 128960 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 128961 -NCIT:C94791 Ann Arbor Stage I Childhood Non-Hodgkin Lymphoma 8 128962 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 128963 -NCIT:C9056 Ann Arbor Stage I Childhood Lymphoblastic Lymphoma 9 128964 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 9 128965 -NCIT:C94792 Ann Arbor Stage II Childhood Non-Hodgkin Lymphoma 8 128966 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 128967 -NCIT:C9057 Ann Arbor Stage II Childhood Lymphoblastic Lymphoma 9 128968 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 9 128969 -NCIT:C94793 Ann Arbor Stage III Childhood Non-Hodgkin Lymphoma 8 128970 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 128971 -NCIT:C9058 Ann Arbor Stage III Childhood Lymphoblastic Lymphoma 9 128972 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 9 128973 -NCIT:C94794 Ann Arbor Stage IV Childhood Non-Hodgkin Lymphoma 8 128974 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 128975 -NCIT:C9059 Ann Arbor Stage IV Childhood Lymphoblastic Lymphoma 9 128976 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 9 128977 -NCIT:C188458 Childhood Large B-Cell Lymphoma with IRF4 Rearrangement 7 128978 -NCIT:C5637 Childhood Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 7 128979 -NCIT:C188459 Childhood Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 128980 -NCIT:C5636 Childhood Anaplastic Large Cell Lymphoma 8 128981 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 9 128982 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 9 128983 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 128984 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 128985 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 128986 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 128987 -NCIT:C188460 Childhood Anaplastic Large Cell Lymphoma, ALK-Positive 9 128988 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 9 128989 -NCIT:C9471 Childhood Systemic Anaplastic Large Cell Lymphoma 9 128990 -NCIT:C68692 Childhood Nasal Type Extranodal NK/T-Cell Lymphoma 8 128991 -NCIT:C80374 Systemic EBV-Positive T-Cell Lymphoma of Childhood 8 128992 -NCIT:C7616 Childhood Diffuse Large B-Cell Lymphoma 7 128993 -NCIT:C115204 Childhood Grade III Lymphomatoid Granulomatosis 8 128994 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 9 128995 -NCIT:C188455 Childhood Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 128996 -NCIT:C188456 Childhood EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 128997 -NCIT:C9079 Childhood Immunoblastic Lymphoma 8 128998 -NCIT:C80299 Pediatric Nodal Marginal Zone Lymphoma 7 128999 -NCIT:C9095 Childhood Burkitt Lymphoma 7 129000 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 8 129001 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 8 129002 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 8 129003 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 8 129004 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 8 129005 -NCIT:C9124 Childhood Lymphoblastic Lymphoma 7 129006 -NCIT:C7209 Childhood B Lymphoblastic Lymphoma 8 129007 -NCIT:C7210 Childhood T Lymphoblastic Lymphoma 8 129008 -NCIT:C9056 Ann Arbor Stage I Childhood Lymphoblastic Lymphoma 8 129009 -NCIT:C9057 Ann Arbor Stage II Childhood Lymphoblastic Lymphoma 8 129010 -NCIT:C9058 Ann Arbor Stage III Childhood Lymphoblastic Lymphoma 8 129011 -NCIT:C9059 Ann Arbor Stage IV Childhood Lymphoblastic Lymphoma 8 129012 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 8 129013 -NCIT:C7714 Childhood Hodgkin Lymphoma 6 129014 -NCIT:C114806 Childhood Favorable Prognosis Hodgkin Lymphoma 7 129015 -NCIT:C114808 Childhood Unfavorable Prognosis Hodgkin Lymphoma 7 129016 -NCIT:C115458 Refractory Childhood Hodgkin Lymphoma 7 129017 -NCIT:C141178 Lugano Classification Childhood Hodgkin Lymphoma by AJCC v8 Stage 7 129018 -NCIT:C141179 Lugano Classification Limited Stage Childhood Hodgkin Lymphoma AJCC v8 8 129019 -NCIT:C141180 Lugano Classification Stage I Childhood Hodgkin Lymphoma AJCC v8 9 129020 -NCIT:C141181 Lugano Classification Stage IE Childhood Hodgkin Lymphoma AJCC v8 9 129021 -NCIT:C141182 Lugano Classification Stage II Childhood Hodgkin Lymphoma AJCC v8 9 129022 -NCIT:C141184 Lugano Classification Stage II Bulky Childhood Hodgkin Lymphoma AJCC v8 10 129023 -NCIT:C141183 Lugano Classification Stage IIE Childhood Hodgkin Lymphoma AJCC v8 9 129024 -NCIT:C141185 Lugano Classification Advanced Stage Childhood Hodgkin Lymphoma AJCC v8 8 129025 -NCIT:C141186 Lugano Classification Stage III Childhood Hodgkin Lymphoma AJCC v8 9 129026 -NCIT:C141187 Lugano Classification Stage IV Childhood Hodgkin Lymphoma AJCC v8 9 129027 -NCIT:C141227 Childhood Hodgkin Lymphoma by Ann Arbor Stage 7 129028 -NCIT:C8055 Ann Arbor Stage II Childhood Hodgkin Lymphoma 8 129029 -NCIT:C8056 Ann Arbor Stage I Childhood Hodgkin Lymphoma 8 129030 -NCIT:C8057 Ann Arbor Stage III Childhood Hodgkin Lymphoma 8 129031 -NCIT:C8058 Ann Arbor Stage IV Childhood Hodgkin Lymphoma 8 129032 -NCIT:C69142 Childhood Classic Hodgkin Lymphoma 7 129033 -NCIT:C7054 Childhood Lymphocyte-Rich Classic Hodgkin Lymphoma 8 129034 -NCIT:C8061 Childhood Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 129035 -NCIT:C8062 Childhood Nodular Sclerosis Classic Hodgkin Lymphoma 8 129036 -NCIT:C8063 Childhood Mixed Cellularity Classic Hodgkin Lymphoma 8 129037 -NCIT:C8059 Recurrent Childhood Hodgkin Lymphoma 7 129038 -NCIT:C8060 Childhood Nodular Lymphocyte Predominant Hodgkin Lymphoma 7 129039 -NCIT:C7185 Lymphoma by Site 5 129040 -NCIT:C126464 Fallopian Tube Lymphoma 6 129041 -NCIT:C162548 Penile Lymphoma 6 129042 -NCIT:C171101 Cutaneous Lymphoma 6 129043 -NCIT:C168651 Cutaneous Burkitt Lymphoma 7 129044 -NCIT:C45266 Cutaneous Mantle Cell Lymphoma 7 129045 -NCIT:C45268 Cutaneous Nasal Type Extranodal NK/T-Cell Lymphoma 7 129046 -NCIT:C45271 Cutaneous Angioimmunoblastic T-Cell Lymphoma 7 129047 -NCIT:C45272 Cutaneous Adult T-Cell Leukemia/Lymphoma 7 129048 -NCIT:C7162 Primary Cutaneous Lymphoma 7 129049 -NCIT:C142876 Recurrent Primary Cutaneous Lymphoma 8 129050 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 129051 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 129052 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 129053 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 129054 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 129055 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 129056 -NCIT:C8686 Recurrent Mycosis Fungoides 10 129057 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 129058 -NCIT:C142877 Refractory Primary Cutaneous Lymphoma 8 129059 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 129060 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 129061 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 129062 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 129063 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 129064 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 129065 -NCIT:C8687 Refractory Mycosis Fungoides 10 129066 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 129067 -NCIT:C188114 Primary Cutaneous Non-Hodgkin Lymphoma 8 129068 -NCIT:C3467 Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 129069 -NCIT:C172442 Advanced Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 10 129070 -NCIT:C180374 Early Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 10 129071 -NCIT:C3246 Mycosis Fungoides 10 129072 -NCIT:C141143 Mycosis Fungoides by AJCC v7 Stage 11 129073 -NCIT:C7796 Stage I Mycosis Fungoides AJCC v7 12 129074 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 13 129075 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 13 129076 -NCIT:C7798 Stage II Mycosis Fungoides AJCC v7 12 129077 -NCIT:C7800 Stage III Mycosis Fungoides AJCC v7 12 129078 -NCIT:C7802 Stage IV Mycosis Fungoides AJCC v7 12 129079 -NCIT:C165783 Transformed Mycosis Fungoides 11 129080 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 12 129081 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 12 129082 -NCIT:C8686 Recurrent Mycosis Fungoides 11 129083 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 12 129084 -NCIT:C8687 Refractory Mycosis Fungoides 11 129085 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 12 129086 -NCIT:C39644 Mycosis Fungoides Variant 10 129087 -NCIT:C35464 Granulomatous Slack Skin Disease 11 129088 -NCIT:C35685 Folliculotropic Mycosis Fungoides 11 129089 -NCIT:C35794 Pagetoid Reticulosis 11 129090 -NCIT:C45332 Primary Cutaneous Peripheral T-Cell Lymphoma, Rare Subtype 10 129091 -NCIT:C139023 Primary Cutaneous Acral CD8-Positive T-Cell Lymphoma 11 129092 -NCIT:C45339 Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 11 129093 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 12 129094 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 12 129095 -NCIT:C45340 Primary Cutaneous Gamma-Delta T-Cell Lymphoma 11 129096 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 12 129097 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 12 129098 -NCIT:C6860 Primary Cutaneous Anaplastic Large Cell Lymphoma 10 129099 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 11 129100 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 11 129101 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 11 129102 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 11 129103 -NCIT:C6918 Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 129104 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 11 129105 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 11 129106 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 10 129107 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 11 129108 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 11 129109 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 11 129110 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 11 129111 -NCIT:C8686 Recurrent Mycosis Fungoides 11 129112 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 12 129113 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 10 129114 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 11 129115 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 11 129116 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 11 129117 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 11 129118 -NCIT:C8687 Refractory Mycosis Fungoides 11 129119 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 12 129120 -NCIT:C6858 Primary Cutaneous B-Cell Non-Hodgkin Lymphoma 9 129121 -NCIT:C45193 Primary Cutaneous Diffuse Large B-Cell Lymphoma 10 129122 -NCIT:C45194 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 129123 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 12 129124 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 12 129125 -NCIT:C45213 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Other 11 129126 -NCIT:C45214 Primary Cutaneous Intravascular Large B-Cell Lymphoma 12 129127 -NCIT:C45215 Primary Cutaneous T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 12 129128 -NCIT:C45216 Primary Cutaneous Plasmablastic Lymphoma 12 129129 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 10 129130 -NCIT:C7230 Primary Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 129131 -NCIT:C45163 Borrelia Burgdoferi-Associated Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 129132 -NCIT:C7221 Primary Cutaneous Hodgkin Lymphoma 8 129133 -NCIT:C7218 Cutaneous Follicular Lymphoma 7 129134 -NCIT:C6859 Grade 3 Cutaneous Follicular Lymphoma 8 129135 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 8 129136 -NCIT:C7219 Grade 2 Cutaneous Follicular Lymphoma 8 129137 -NCIT:C7220 Grade 1 Cutaneous Follicular Lymphoma 8 129138 -NCIT:C173170 Sinonasal Lymphoma 6 129139 -NCIT:C173171 Sinonasal Non-Hodgkin Lymphoma 7 129140 -NCIT:C173172 Sinonasal Extranodal NK/T-Cell Lymphoma 8 129141 -NCIT:C173173 Nasal Cavity Extranodal NK/T-Cell Lymphoma 9 129142 -NCIT:C6069 Paranasal Sinus Non-Hodgkin Lymphoma 8 129143 -NCIT:C6073 Paranasal Sinus Diffuse Large B-Cell Lymphoma 9 129144 -NCIT:C6075 Nasal Cavity Non-Hodgkin Lymphoma 8 129145 -NCIT:C173173 Nasal Cavity Extranodal NK/T-Cell Lymphoma 9 129146 -NCIT:C188081 Nasal Cavity Diffuse Large B-Cell Lymphoma 9 129147 -NCIT:C6068 Paranasal Sinus Lymphoma 7 129148 -NCIT:C6069 Paranasal Sinus Non-Hodgkin Lymphoma 8 129149 -NCIT:C6073 Paranasal Sinus Diffuse Large B-Cell Lymphoma 9 129150 -NCIT:C6074 Nasal Cavity Lymphoma 7 129151 -NCIT:C6075 Nasal Cavity Non-Hodgkin Lymphoma 8 129152 -NCIT:C173173 Nasal Cavity Extranodal NK/T-Cell Lymphoma 9 129153 -NCIT:C188081 Nasal Cavity Diffuse Large B-Cell Lymphoma 9 129154 -NCIT:C173354 Pharyngeal Lymphoma 6 129155 -NCIT:C173355 Pharyngeal Non-Hodgkin Lymphoma 7 129156 -NCIT:C173359 Nasopharyngeal Non-Hodgkin Lymphoma 8 129157 -NCIT:C173579 Oropharyngeal Non-Hodgkin Lymphoma 8 129158 -NCIT:C188072 Tonsillar Diffuse Large B-Cell Lymphoma 9 129159 -NCIT:C188080 Tonsillar Mantle Cell Lymphoma 9 129160 -NCIT:C173356 Pharyngeal Hodgkin Lymphoma 7 129161 -NCIT:C173361 Nasopharyngeal Hodgkin Lymphoma 8 129162 -NCIT:C173578 Oropharyngeal Hodgkin Lymphoma 8 129163 -NCIT:C173357 Nasopharyngeal Lymphoma 7 129164 -NCIT:C173359 Nasopharyngeal Non-Hodgkin Lymphoma 8 129165 -NCIT:C173361 Nasopharyngeal Hodgkin Lymphoma 8 129166 -NCIT:C173577 Oropharyngeal Lymphoma 7 129167 -NCIT:C173578 Oropharyngeal Hodgkin Lymphoma 8 129168 -NCIT:C173579 Oropharyngeal Non-Hodgkin Lymphoma 8 129169 -NCIT:C188072 Tonsillar Diffuse Large B-Cell Lymphoma 9 129170 -NCIT:C188080 Tonsillar Mantle Cell Lymphoma 9 129171 -NCIT:C5918 Tonsillar Lymphoma 8 129172 -NCIT:C188072 Tonsillar Diffuse Large B-Cell Lymphoma 9 129173 -NCIT:C188080 Tonsillar Mantle Cell Lymphoma 9 129174 -NCIT:C173690 Salivary Gland Lymphoma 6 129175 -NCIT:C173691 Salivary Gland Non-Hodgkin Lymphoma 7 129176 -NCIT:C173693 Salivary Gland Mucosa-Associated Lymphoid Tissue Lymphoma 8 129177 -NCIT:C35687 Parotid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 9 129178 -NCIT:C173715 Salivary Gland Follicular Lymphoma 8 129179 -NCIT:C173716 Parotid Gland Follicular Lymphoma 9 129180 -NCIT:C173717 Salivary Gland Diffuse Large B-Cell Lymphoma 8 129181 -NCIT:C173719 Parotid Gland Diffuse Large B-Cell Lymphoma 9 129182 -NCIT:C5981 Major Salivary Gland Non-Hodgkin Lymphoma 8 129183 -NCIT:C5951 Parotid Gland Non-Hodgkin Lymphoma 9 129184 -NCIT:C173716 Parotid Gland Follicular Lymphoma 10 129185 -NCIT:C173719 Parotid Gland Diffuse Large B-Cell Lymphoma 10 129186 -NCIT:C181210 Parotid Gland Mantle Cell Lymphoma 10 129187 -NCIT:C35687 Parotid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 10 129188 -NCIT:C173692 Salivary Gland Hodgkin Lymphoma 7 129189 -NCIT:C185752 Extranodal Lymphoma 6 129190 -NCIT:C185753 Extranodal Non-Hodgkin Lymphoma 7 129191 -NCIT:C188114 Primary Cutaneous Non-Hodgkin Lymphoma 8 129192 -NCIT:C3467 Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 129193 -NCIT:C172442 Advanced Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 10 129194 -NCIT:C180374 Early Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 10 129195 -NCIT:C3246 Mycosis Fungoides 10 129196 -NCIT:C141143 Mycosis Fungoides by AJCC v7 Stage 11 129197 -NCIT:C7796 Stage I Mycosis Fungoides AJCC v7 12 129198 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 13 129199 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 13 129200 -NCIT:C7798 Stage II Mycosis Fungoides AJCC v7 12 129201 -NCIT:C7800 Stage III Mycosis Fungoides AJCC v7 12 129202 -NCIT:C7802 Stage IV Mycosis Fungoides AJCC v7 12 129203 -NCIT:C165783 Transformed Mycosis Fungoides 11 129204 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 12 129205 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 12 129206 -NCIT:C8686 Recurrent Mycosis Fungoides 11 129207 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 12 129208 -NCIT:C8687 Refractory Mycosis Fungoides 11 129209 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 12 129210 -NCIT:C39644 Mycosis Fungoides Variant 10 129211 -NCIT:C35464 Granulomatous Slack Skin Disease 11 129212 -NCIT:C35685 Folliculotropic Mycosis Fungoides 11 129213 -NCIT:C35794 Pagetoid Reticulosis 11 129214 -NCIT:C45332 Primary Cutaneous Peripheral T-Cell Lymphoma, Rare Subtype 10 129215 -NCIT:C139023 Primary Cutaneous Acral CD8-Positive T-Cell Lymphoma 11 129216 -NCIT:C45339 Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 11 129217 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 12 129218 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 12 129219 -NCIT:C45340 Primary Cutaneous Gamma-Delta T-Cell Lymphoma 11 129220 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 12 129221 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 12 129222 -NCIT:C6860 Primary Cutaneous Anaplastic Large Cell Lymphoma 10 129223 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 11 129224 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 11 129225 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 11 129226 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 11 129227 -NCIT:C6918 Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 129228 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 11 129229 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 11 129230 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 10 129231 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 11 129232 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 11 129233 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 11 129234 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 11 129235 -NCIT:C8686 Recurrent Mycosis Fungoides 11 129236 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 12 129237 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 10 129238 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 11 129239 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 11 129240 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 11 129241 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 11 129242 -NCIT:C8687 Refractory Mycosis Fungoides 11 129243 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 12 129244 -NCIT:C6858 Primary Cutaneous B-Cell Non-Hodgkin Lymphoma 9 129245 -NCIT:C45193 Primary Cutaneous Diffuse Large B-Cell Lymphoma 10 129246 -NCIT:C45194 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 129247 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 12 129248 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 12 129249 -NCIT:C45213 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Other 11 129250 -NCIT:C45214 Primary Cutaneous Intravascular Large B-Cell Lymphoma 12 129251 -NCIT:C45215 Primary Cutaneous T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 12 129252 -NCIT:C45216 Primary Cutaneous Plasmablastic Lymphoma 12 129253 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 10 129254 -NCIT:C7230 Primary Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 129255 -NCIT:C45163 Borrelia Burgdoferi-Associated Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 129256 -NCIT:C3898 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 129257 -NCIT:C123394 Childhood Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 129258 -NCIT:C141260 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue by Ann Arbor Stage 9 129259 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 129260 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 129261 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 129262 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 129263 -NCIT:C172844 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue Involving the Digestive System 9 129264 -NCIT:C5266 Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 10 129265 -NCIT:C27763 Helicobacter Pylori-Associated Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 11 129266 -NCIT:C5635 Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 10 129267 -NCIT:C45166 Campylobacter Jejuni-Associated Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 11 129268 -NCIT:C5768 Liver Mucosa-Associated Lymphoid Tissue Lymphoma 10 129269 -NCIT:C95626 Esophageal Mucosa-Associated Lymphoid Tissue Lymphoma 10 129270 -NCIT:C96506 Colorectal Mucosa-Associated Lymphoid Tissue Lymphoma 10 129271 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 11 129272 -NCIT:C173693 Salivary Gland Mucosa-Associated Lymphoid Tissue Lymphoma 9 129273 -NCIT:C35687 Parotid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 10 129274 -NCIT:C181910 Endometrial Mucosa-Associated Lymphoid Tissue Lymphoma 9 129275 -NCIT:C35688 Breast Mucosa-Associated Lymphoid Tissue Lymphoma 9 129276 -NCIT:C35689 Ocular Adnexal Mucosa-Associated Lymphoid Tissue Lymphoma 9 129277 -NCIT:C175431 Conjunctival Mucosa-Associated Lymphoid Tissue Lymphoma 10 129278 -NCIT:C175482 Lacrimal System Mucosa-Associated Lymphoid Tissue Lymphoma 10 129279 -NCIT:C175483 Lacrimal Gland Mucosa-Associated Lymphoid Tissue Lymphoma 11 129280 -NCIT:C175484 Lacrimal Drainage System Mucosa-Associated Lymphoid Tissue Lymphoma 11 129281 -NCIT:C182357 Diffusion Restriction 10 129282 -NCIT:C44960 Chlamydia Psittaci-Associated Ocular Adnexal Mucosa-Associated Lymphoid Tissue Lymphoma 10 129283 -NCIT:C39878 Bladder Mucosa-Associated Lymphoid Tissue Lymphoma 9 129284 -NCIT:C45380 Thymic Mucosa-Associated Lymphoid Tissue Lymphoma 9 129285 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 129286 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 129287 -NCIT:C5264 Lung Mucosa-Associated Lymphoid Tissue Lymphoma 9 129288 -NCIT:C7230 Primary Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 129289 -NCIT:C45163 Borrelia Burgdoferi-Associated Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 129290 -NCIT:C7601 Thyroid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 9 129291 -NCIT:C95991 Dural Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 129292 -NCIT:C4684 Nasal Type Extranodal NK/T-Cell Lymphoma 8 129293 -NCIT:C115154 Adult Nasal Type Extranodal NK/T-Cell Lymphoma 9 129294 -NCIT:C141296 Nasal Type NK/T-Cell Lymphoma by Ann Arbor Stage 9 129295 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 10 129296 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 10 129297 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 10 129298 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 10 129299 -NCIT:C162468 Testicular Nasal Type Extranodal NK/T-Cell Lymphoma 9 129300 -NCIT:C173172 Sinonasal Extranodal NK/T-Cell Lymphoma 9 129301 -NCIT:C173173 Nasal Cavity Extranodal NK/T-Cell Lymphoma 10 129302 -NCIT:C45268 Cutaneous Nasal Type Extranodal NK/T-Cell Lymphoma 9 129303 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 9 129304 -NCIT:C68692 Childhood Nasal Type Extranodal NK/T-Cell Lymphoma 9 129305 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 9 129306 -NCIT:C35690 Eye Lymphoma 6 129307 -NCIT:C88145 Ocular Adnexal Non-Hodgkin Lymphoma 7 129308 -NCIT:C175432 Conjunctival Non-Hodgkin Lymphoma 8 129309 -NCIT:C175430 Conjunctival Follicular Lymphoma 9 129310 -NCIT:C175431 Conjunctival Mucosa-Associated Lymphoid Tissue Lymphoma 9 129311 -NCIT:C175433 Conjunctival Diffuse Large B-Cell Lymphoma 9 129312 -NCIT:C175479 Lacrimal System Non-Hodgkin Lymphoma 8 129313 -NCIT:C175480 Lacrimal Gland Non-Hodgkin Lymphoma 9 129314 -NCIT:C175483 Lacrimal Gland Mucosa-Associated Lymphoid Tissue Lymphoma 10 129315 -NCIT:C175486 Lacrimal Gland Diffuse Large B-Cell Lymphoma 10 129316 -NCIT:C175488 Lacrimal Gland Follicular Lymphoma 10 129317 -NCIT:C175481 Lacrimal Drainage System Non-Hodgkin Lymphoma 9 129318 -NCIT:C175484 Lacrimal Drainage System Mucosa-Associated Lymphoid Tissue Lymphoma 10 129319 -NCIT:C175487 Lacrimal Drainage System Diffuse Large B-Cell Lymphoma 10 129320 -NCIT:C175482 Lacrimal System Mucosa-Associated Lymphoid Tissue Lymphoma 9 129321 -NCIT:C175483 Lacrimal Gland Mucosa-Associated Lymphoid Tissue Lymphoma 10 129322 -NCIT:C175484 Lacrimal Drainage System Mucosa-Associated Lymphoid Tissue Lymphoma 10 129323 -NCIT:C175485 Lacrimal System Diffuse Large B-Cell Lymphoma 9 129324 -NCIT:C175486 Lacrimal Gland Diffuse Large B-Cell Lymphoma 10 129325 -NCIT:C175487 Lacrimal Drainage System Diffuse Large B-Cell Lymphoma 10 129326 -NCIT:C35689 Ocular Adnexal Mucosa-Associated Lymphoid Tissue Lymphoma 8 129327 -NCIT:C175431 Conjunctival Mucosa-Associated Lymphoid Tissue Lymphoma 9 129328 -NCIT:C175482 Lacrimal System Mucosa-Associated Lymphoid Tissue Lymphoma 9 129329 -NCIT:C175483 Lacrimal Gland Mucosa-Associated Lymphoid Tissue Lymphoma 10 129330 -NCIT:C175484 Lacrimal Drainage System Mucosa-Associated Lymphoid Tissue Lymphoma 10 129331 -NCIT:C182357 Diffusion Restriction 9 129332 -NCIT:C44960 Chlamydia Psittaci-Associated Ocular Adnexal Mucosa-Associated Lymphoid Tissue Lymphoma 9 129333 -NCIT:C9184 Primary Intraocular Non-Hodgkin Lymphoma 7 129334 -NCIT:C157065 Primary Vitreoretinal Non-Hodgkin Lymphoma 8 129335 -NCIT:C157067 Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 129336 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 129337 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 129338 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 9 129339 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 129340 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 9 129341 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 129342 -NCIT:C4365 Primary Retinal Non-Hodgkin Lymphoma 9 129343 -NCIT:C175451 Primary Uveal Non-Hodgkin Lymphoma 8 129344 -NCIT:C175464 Primary Choroidal Non-Hodgkin Lymphoma 9 129345 -NCIT:C175466 Primary Ciliary Body Non-Hodgkin Lymphoma 9 129346 -NCIT:C175467 Primary Iris Non-Hodgkin Lymphoma 9 129347 -NCIT:C38162 Digestive System Lymphoma 6 129348 -NCIT:C38161 Digestive System Non-Hodgkin Lymphoma 7 129349 -NCIT:C150495 Intestinal T-Cell Lymphoma 8 129350 -NCIT:C150505 Intestinal T-Cell Lymphoma, Not Otherwise Specified 9 129351 -NCIT:C4737 Enteropathy-Associated T-Cell Lymphoma 9 129352 -NCIT:C141295 Enteropathy-Associated T-Cell Lymphoma by Ann Arbor Stage 10 129353 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 11 129354 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 11 129355 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 11 129356 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 11 129357 -NCIT:C39610 Small Intestinal Enteropathy-Associated T-Cell Lymphoma 10 129358 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 10 129359 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 10 129360 -NCIT:C96058 Monomorphic Epitheliotropic Intestinal T-Cell Lymphoma 9 129361 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 129362 -NCIT:C150504 Small Intestinal Monomorphic Epitheliotropic T-Cell Lymphoma 10 129363 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 129364 -NCIT:C172844 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue Involving the Digestive System 8 129365 -NCIT:C5266 Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 9 129366 -NCIT:C27763 Helicobacter Pylori-Associated Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 10 129367 -NCIT:C5635 Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 9 129368 -NCIT:C45166 Campylobacter Jejuni-Associated Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 10 129369 -NCIT:C5768 Liver Mucosa-Associated Lymphoid Tissue Lymphoma 9 129370 -NCIT:C95626 Esophageal Mucosa-Associated Lymphoid Tissue Lymphoma 9 129371 -NCIT:C96506 Colorectal Mucosa-Associated Lymphoid Tissue Lymphoma 9 129372 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 10 129373 -NCIT:C172850 Digestive System Diffuse Large B-Cell Lymphoma 8 129374 -NCIT:C5253 Gastric Diffuse Large B-Cell Lymphoma 9 129375 -NCIT:C95625 Esophageal Diffuse Large B-Cell Lymphoma 9 129376 -NCIT:C96055 Small Intestinal Diffuse Large B-Cell Lymphoma 9 129377 -NCIT:C96057 Small Intestinal High Grade B-Cell Lymphoma, Not Otherwise Specified 10 129378 -NCIT:C96503 Colorectal Diffuse Large B-Cell Lymphoma 9 129379 -NCIT:C96501 Colorectal High Grade B-Cell Lymphoma, Not Otherwise Specified 10 129380 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 10 129381 -NCIT:C96843 Liver Diffuse Large B-Cell Lymphoma 9 129382 -NCIT:C27235 Gastric Non-Hodgkin Lymphoma 8 129383 -NCIT:C5251 Gastric Burkitt Lymphoma 9 129384 -NCIT:C5253 Gastric Diffuse Large B-Cell Lymphoma 9 129385 -NCIT:C5254 Gastric T-Cell Non-Hodgkin Lymphoma 9 129386 -NCIT:C5266 Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 9 129387 -NCIT:C27763 Helicobacter Pylori-Associated Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 10 129388 -NCIT:C4339 Multifocal Lymphomatous Polyposis 8 129389 -NCIT:C5688 Esophageal Non-Hodgkin Lymphoma 8 129390 -NCIT:C95625 Esophageal Diffuse Large B-Cell Lymphoma 9 129391 -NCIT:C95626 Esophageal Mucosa-Associated Lymphoid Tissue Lymphoma 9 129392 -NCIT:C5766 Liver Non-Hodgkin Lymphoma 8 129393 -NCIT:C5768 Liver Mucosa-Associated Lymphoid Tissue Lymphoma 9 129394 -NCIT:C8459 Hepatosplenic T-Cell Lymphoma 9 129395 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 10 129396 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 10 129397 -NCIT:C96843 Liver Diffuse Large B-Cell Lymphoma 9 129398 -NCIT:C5789 Pancreatic Non-Hodgkin Lymphoma 8 129399 -NCIT:C7231 Small Intestinal Non-Hodgkin Lymphoma 8 129400 -NCIT:C96053 Small Intestinal B-Cell Non-Hodgkin Lymphoma 9 129401 -NCIT:C27409 Small Intestinal Burkitt Lymphoma 10 129402 -NCIT:C27410 Small Intestinal Atypical Burkitt/Burkitt-Like Lymphoma 11 129403 -NCIT:C27441 Small Intestinal Mantle Cell Lymphoma 10 129404 -NCIT:C3132 Alpha Heavy Chain Disease 10 129405 -NCIT:C5635 Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 10 129406 -NCIT:C45166 Campylobacter Jejuni-Associated Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 11 129407 -NCIT:C96055 Small Intestinal Diffuse Large B-Cell Lymphoma 10 129408 -NCIT:C96057 Small Intestinal High Grade B-Cell Lymphoma, Not Otherwise Specified 11 129409 -NCIT:C96056 Small Intestinal Follicular Lymphoma 10 129410 -NCIT:C96054 Small Intestinal T-Cell Non-Hodgkin Lymphoma 9 129411 -NCIT:C150504 Small Intestinal Monomorphic Epitheliotropic T-Cell Lymphoma 10 129412 -NCIT:C39610 Small Intestinal Enteropathy-Associated T-Cell Lymphoma 10 129413 -NCIT:C7465 AIDS-Related Anal Non-Hodgkin Lymphoma 8 129414 -NCIT:C80298 Intestinal Follicular Lymphoma 8 129415 -NCIT:C96056 Small Intestinal Follicular Lymphoma 9 129416 -NCIT:C96499 Colorectal Non-Hodgkin Lymphoma 8 129417 -NCIT:C4950 Colon Non-Hodgkin Lymphoma 9 129418 -NCIT:C27411 Colon Mantle Cell Lymphoma 10 129419 -NCIT:C27465 Colon Burkitt Lymphoma 10 129420 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 10 129421 -NCIT:C5521 Cecum Non-Hodgkin Lymphoma 10 129422 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 10 129423 -NCIT:C96502 Colorectal Burkitt Lymphoma 9 129424 -NCIT:C27465 Colon Burkitt Lymphoma 10 129425 -NCIT:C96503 Colorectal Diffuse Large B-Cell Lymphoma 9 129426 -NCIT:C96501 Colorectal High Grade B-Cell Lymphoma, Not Otherwise Specified 10 129427 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 10 129428 -NCIT:C96505 Colorectal Mantle Cell Lymphoma 9 129429 -NCIT:C27411 Colon Mantle Cell Lymphoma 10 129430 -NCIT:C96506 Colorectal Mucosa-Associated Lymphoid Tissue Lymphoma 9 129431 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 10 129432 -NCIT:C38163 Digestive System Hodgkin Lymphoma 7 129433 -NCIT:C5337 Small Intestinal Hodgkin Lymphoma 8 129434 -NCIT:C5638 Gastric Hodgkin Lymphoma 8 129435 -NCIT:C5689 Esophageal Hodgkin Lymphoma 8 129436 -NCIT:C96500 Colorectal Hodgkin Lymphoma 8 129437 -NCIT:C5499 Colon Hodgkin Lymphoma 9 129438 -NCIT:C4007 Small Intestinal Lymphoma 7 129439 -NCIT:C5337 Small Intestinal Hodgkin Lymphoma 8 129440 -NCIT:C7231 Small Intestinal Non-Hodgkin Lymphoma 8 129441 -NCIT:C96053 Small Intestinal B-Cell Non-Hodgkin Lymphoma 9 129442 -NCIT:C27409 Small Intestinal Burkitt Lymphoma 10 129443 -NCIT:C27410 Small Intestinal Atypical Burkitt/Burkitt-Like Lymphoma 11 129444 -NCIT:C27441 Small Intestinal Mantle Cell Lymphoma 10 129445 -NCIT:C3132 Alpha Heavy Chain Disease 10 129446 -NCIT:C5635 Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 10 129447 -NCIT:C45166 Campylobacter Jejuni-Associated Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 11 129448 -NCIT:C96055 Small Intestinal Diffuse Large B-Cell Lymphoma 10 129449 -NCIT:C96057 Small Intestinal High Grade B-Cell Lymphoma, Not Otherwise Specified 11 129450 -NCIT:C96056 Small Intestinal Follicular Lymphoma 10 129451 -NCIT:C96054 Small Intestinal T-Cell Non-Hodgkin Lymphoma 9 129452 -NCIT:C150504 Small Intestinal Monomorphic Epitheliotropic T-Cell Lymphoma 10 129453 -NCIT:C39610 Small Intestinal Enteropathy-Associated T-Cell Lymphoma 10 129454 -NCIT:C4636 Gastric Lymphoma 7 129455 -NCIT:C27235 Gastric Non-Hodgkin Lymphoma 8 129456 -NCIT:C5251 Gastric Burkitt Lymphoma 9 129457 -NCIT:C5253 Gastric Diffuse Large B-Cell Lymphoma 9 129458 -NCIT:C5254 Gastric T-Cell Non-Hodgkin Lymphoma 9 129459 -NCIT:C5266 Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 9 129460 -NCIT:C27763 Helicobacter Pylori-Associated Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 10 129461 -NCIT:C5638 Gastric Hodgkin Lymphoma 8 129462 -NCIT:C4949 Liver Lymphoma 7 129463 -NCIT:C5766 Liver Non-Hodgkin Lymphoma 8 129464 -NCIT:C5768 Liver Mucosa-Associated Lymphoid Tissue Lymphoma 9 129465 -NCIT:C8459 Hepatosplenic T-Cell Lymphoma 9 129466 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 10 129467 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 10 129468 -NCIT:C96843 Liver Diffuse Large B-Cell Lymphoma 9 129469 -NCIT:C5513 Appendix Lymphoma 7 129470 -NCIT:C5601 Anal Lymphoma 7 129471 -NCIT:C7465 AIDS-Related Anal Non-Hodgkin Lymphoma 8 129472 -NCIT:C5687 Esophageal Lymphoma 7 129473 -NCIT:C5688 Esophageal Non-Hodgkin Lymphoma 8 129474 -NCIT:C95625 Esophageal Diffuse Large B-Cell Lymphoma 9 129475 -NCIT:C95626 Esophageal Mucosa-Associated Lymphoid Tissue Lymphoma 9 129476 -NCIT:C5689 Esophageal Hodgkin Lymphoma 8 129477 -NCIT:C5714 Pancreatic Lymphoma 7 129478 -NCIT:C5789 Pancreatic Non-Hodgkin Lymphoma 8 129479 -NCIT:C5734 Gallbladder Lymphoma 7 129480 -NCIT:C96498 Colorectal Lymphoma 7 129481 -NCIT:C4793 Colon Lymphoma 8 129482 -NCIT:C4950 Colon Non-Hodgkin Lymphoma 9 129483 -NCIT:C27411 Colon Mantle Cell Lymphoma 10 129484 -NCIT:C27465 Colon Burkitt Lymphoma 10 129485 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 10 129486 -NCIT:C5521 Cecum Non-Hodgkin Lymphoma 10 129487 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 10 129488 -NCIT:C5499 Colon Hodgkin Lymphoma 9 129489 -NCIT:C5515 Cecum Lymphoma 9 129490 -NCIT:C5521 Cecum Non-Hodgkin Lymphoma 10 129491 -NCIT:C5553 Rectal Lymphoma 8 129492 -NCIT:C96499 Colorectal Non-Hodgkin Lymphoma 8 129493 -NCIT:C4950 Colon Non-Hodgkin Lymphoma 9 129494 -NCIT:C27411 Colon Mantle Cell Lymphoma 10 129495 -NCIT:C27465 Colon Burkitt Lymphoma 10 129496 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 10 129497 -NCIT:C5521 Cecum Non-Hodgkin Lymphoma 10 129498 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 10 129499 -NCIT:C96502 Colorectal Burkitt Lymphoma 9 129500 -NCIT:C27465 Colon Burkitt Lymphoma 10 129501 -NCIT:C96503 Colorectal Diffuse Large B-Cell Lymphoma 9 129502 -NCIT:C96501 Colorectal High Grade B-Cell Lymphoma, Not Otherwise Specified 10 129503 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 10 129504 -NCIT:C96505 Colorectal Mantle Cell Lymphoma 9 129505 -NCIT:C27411 Colon Mantle Cell Lymphoma 10 129506 -NCIT:C96506 Colorectal Mucosa-Associated Lymphoid Tissue Lymphoma 9 129507 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 10 129508 -NCIT:C96500 Colorectal Hodgkin Lymphoma 8 129509 -NCIT:C5499 Colon Hodgkin Lymphoma 9 129510 -NCIT:C96952 Extrahepatic Bile Duct Lymphoma 7 129511 -NCIT:C40021 Ovarian Lymphoma 6 129512 -NCIT:C45687 Pleural Lymphoma 6 129513 -NCIT:C183135 Pleural Primary Effusion Lymphoma 7 129514 -NCIT:C45691 Pyothorax-Associated Lymphoma 7 129515 -NCIT:C4671 Breast Lymphoma 6 129516 -NCIT:C138023 Recurrent Breast Lymphoma 7 129517 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 8 129518 -NCIT:C138024 Refractory Breast Lymphoma 7 129519 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 8 129520 -NCIT:C5181 Breast Non-Hodgkin Lymphoma 7 129521 -NCIT:C35688 Breast Mucosa-Associated Lymphoid Tissue Lymphoma 8 129522 -NCIT:C40375 Breast Diffuse Large B-Cell Lymphoma 8 129523 -NCIT:C40376 Breast Burkitt Lymphoma 8 129524 -NCIT:C40377 Breast Follicular Lymphoma 8 129525 -NCIT:C5182 Breast T-Cell Non-Hodgkin Lymphoma 8 129526 -NCIT:C139012 Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 129527 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 129528 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 129529 -NCIT:C4794 Lung Lymphoma 6 129530 -NCIT:C181205 Lung Hodgkin Lymphoma 7 129531 -NCIT:C5684 Lung Non-Hodgkin Lymphoma 7 129532 -NCIT:C181211 Lung Follicular Lymphoma 8 129533 -NCIT:C188082 Lung Anaplastic Large Cell Lymphoma 8 129534 -NCIT:C45605 Lung Diffuse Large B-Cell Lymphoma 8 129535 -NCIT:C183121 Lung Intravascular Large B-Cell Lymphoma 9 129536 -NCIT:C5264 Lung Mucosa-Associated Lymphoid Tissue Lymphoma 8 129537 -NCIT:C48873 Splenic Lymphoma 6 129538 -NCIT:C7294 Splenic Non-Hodgkin Lymphoma 7 129539 -NCIT:C4663 Splenic Marginal Zone Lymphoma 8 129540 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 9 129541 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 9 129542 -NCIT:C7307 Splenic Follicular Lymphoma 8 129543 -NCIT:C7308 Splenic Diffuse Large B-Cell Lymphoma 8 129544 -NCIT:C7309 Splenic Burkitt Lymphoma 8 129545 -NCIT:C80309 Splenic Diffuse Red Pulp Small B-Cell Lymphoma 8 129546 -NCIT:C8459 Hepatosplenic T-Cell Lymphoma 8 129547 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 9 129548 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 9 129549 -NCIT:C7295 Splenic Hodgkin Lymphoma 7 129550 -NCIT:C5265 Thyroid Gland Lymphoma 6 129551 -NCIT:C181209 Thyroid Gland Hodgkin Lymphoma 7 129552 -NCIT:C6044 Thyroid Gland Non-Hodgkin Lymphoma 7 129553 -NCIT:C156410 Thyroid Gland Follicular Lymphoma 8 129554 -NCIT:C6046 Thyroid Gland Diffuse Large B-Cell Lymphoma 8 129555 -NCIT:C7263 Thyroid Gland Immunoblastic Lymphoma 9 129556 -NCIT:C7601 Thyroid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 8 129557 -NCIT:C5368 Cardiac Lymphoma 6 129558 -NCIT:C183146 Cardiac Diffuse Large B-Cell Lymphoma 7 129559 -NCIT:C183141 Cardiac Fibrin-Associated Diffuse Large B-Cell Lymphoma 8 129560 -NCIT:C5369 Secondary Heart Lymphoma 6 129561 -NCIT:C5533 Prostate Lymphoma 6 129562 -NCIT:C5534 Prostate Non-Hodgkin Lymphoma 7 129563 -NCIT:C161602 Prostate Diffuse Large B-Cell Lymphoma 8 129564 -NCIT:C161603 Prostate Follicular Lymphoma 8 129565 -NCIT:C161604 Prostate Mantle Cell Lymphoma 8 129566 -NCIT:C161605 Prostate Small Lymphocytic Lymphoma 8 129567 -NCIT:C6164 Bladder Lymphoma 6 129568 -NCIT:C39878 Bladder Mucosa-Associated Lymphoid Tissue Lymphoma 7 129569 -NCIT:C6175 Ureter Lymphoma 6 129570 -NCIT:C6244 Orbit Lymphoma 6 129571 -NCIT:C6248 Tracheal Lymphoma 6 129572 -NCIT:C63532 Kidney Lymphoma 6 129573 -NCIT:C188075 Kidney Burkitt Lymphoma 7 129574 -NCIT:C63533 Kidney Diffuse Large B-Cell Lymphoma 7 129575 -NCIT:C6620 Primary Bone Lymphoma 6 129576 -NCIT:C121930 Primary Bone Non-Hodgkin Lymphoma 7 129577 -NCIT:C173811 Primary Bone Diffuse Large B-Cell Lymphoma 8 129578 -NCIT:C157681 Recurrent Primary Bone Lymphoma 7 129579 -NCIT:C157682 Refractory Primary Bone Lymphoma 7 129580 -NCIT:C181207 Primary Bone Hodgkin Lymphoma 7 129581 -NCIT:C6633 Mediastinal Lymphoma 6 129582 -NCIT:C153175 Recurrent Mediastinal Lymphoma 7 129583 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 129584 -NCIT:C153177 Refractory Mediastinal Lymphoma 7 129585 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 129586 -NCIT:C171037 Mediastinal Non-Hodgkin Lymphoma 7 129587 -NCIT:C45380 Thymic Mucosa-Associated Lymphoid Tissue Lymphoma 8 129588 -NCIT:C45740 Mediastinal T Lymphoblastic Lymphoma 8 129589 -NCIT:C9280 Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 129590 -NCIT:C141262 Primary Mediastinal (Thymic) Large B-Cell Lymphoma by Ann Arbor Stage 9 129591 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 129592 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 129593 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 129594 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 129595 -NCIT:C188455 Childhood Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 129596 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 129597 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 129598 -NCIT:C37870 Mediastinal B-Cell Lymphoma, Unclassifiable, with Features Intermediate between Diffuse Large B-Cell Lymphoma and Classic Hodgkin Lymphoma 7 129599 -NCIT:C6451 Thymic Lymphoma 7 129600 -NCIT:C45380 Thymic Mucosa-Associated Lymphoid Tissue Lymphoma 8 129601 -NCIT:C9280 Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 129602 -NCIT:C141262 Primary Mediastinal (Thymic) Large B-Cell Lymphoma by Ann Arbor Stage 9 129603 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 129604 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 129605 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 129606 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 129607 -NCIT:C188455 Childhood Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 129608 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 129609 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 129610 -NCIT:C95057 Thymic Hodgkin Lymphoma 8 129611 -NCIT:C6634 Mediastinal Hodgkin Lymphoma 7 129612 -NCIT:C95057 Thymic Hodgkin Lymphoma 8 129613 -NCIT:C6712 Chest Wall Lymphoma 6 129614 -NCIT:C6716 Sternal Lymphoma 7 129615 -NCIT:C6723 Chest Wall Hodgkin Lymphoma 7 129616 -NCIT:C6810 Testicular Lymphoma 6 129617 -NCIT:C138021 Recurrent Testicular Lymphoma 7 129618 -NCIT:C138022 Refractory Testicular Lymphoma 7 129619 -NCIT:C150589 Testicular Follicular Lymphoma 7 129620 -NCIT:C162467 Testicular Diffuse Large B-Cell Lymphoma 7 129621 -NCIT:C162468 Testicular Nasal Type Extranodal NK/T-Cell Lymphoma 7 129622 -NCIT:C7353 Retroperitoneal Lymphoma 6 129623 -NCIT:C156945 Adrenal Gland Lymphoma 7 129624 -NCIT:C87797 Secondary Central Nervous System Lymphoma 6 129625 -NCIT:C114949 Secondary Central Nervous System Hodgkin Lymphoma 7 129626 -NCIT:C5057 Secondary Cerebral Hodgkin Lymphoma 8 129627 -NCIT:C114950 Secondary Central Nervous System Non-Hodgkin Lymphoma 7 129628 -NCIT:C9301 Central Nervous System Lymphoma 6 129629 -NCIT:C114779 Central Nervous System Non-Hodgkin Lymphoma 7 129630 -NCIT:C146989 Refractory Central Nervous System Non-Hodgkin Lymphoma 8 129631 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 9 129632 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 129633 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 129634 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 129635 -NCIT:C146990 Recurrent Central Nervous System Non-Hodgkin Lymphoma 8 129636 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 9 129637 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 129638 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 129639 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 129640 -NCIT:C147948 Central Nervous System B-Cell Non-Hodgkin Lymphoma 8 129641 -NCIT:C71720 Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 129642 -NCIT:C129602 Central Nervous System Intravascular Large B-Cell Lymphoma 10 129643 -NCIT:C155797 Pituitary Gland Diffuse Large B-Cell Lymphoma 10 129644 -NCIT:C157067 Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 129645 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 129646 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 129647 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 10 129648 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 129649 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 10 129650 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 11 129651 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 10 129652 -NCIT:C95991 Dural Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 129653 -NCIT:C155796 Pituitary Gland Non-Hodgkin Lymphoma 8 129654 -NCIT:C155797 Pituitary Gland Diffuse Large B-Cell Lymphoma 9 129655 -NCIT:C157065 Primary Vitreoretinal Non-Hodgkin Lymphoma 8 129656 -NCIT:C157067 Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 129657 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 129658 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 129659 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 9 129660 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 129661 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 9 129662 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 129663 -NCIT:C4365 Primary Retinal Non-Hodgkin Lymphoma 9 129664 -NCIT:C5409 Central Nervous System T-Cell Non-Hodgkin Lymphoma 8 129665 -NCIT:C129600 Central Nervous System Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 9 129666 -NCIT:C5322 Central Nervous System Anaplastic Large Cell Lymphoma 10 129667 -NCIT:C129598 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Positive 11 129668 -NCIT:C129599 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Negative 11 129669 -NCIT:C7609 Cerebral Non-Hodgkin Lymphoma 8 129670 -NCIT:C114951 Central Nervous System Hodgkin Lymphoma 7 129671 -NCIT:C5055 Cerebral Hodgkin Lymphoma 8 129672 -NCIT:C138019 Recurrent Central Nervous System Lymphoma 7 129673 -NCIT:C146990 Recurrent Central Nervous System Non-Hodgkin Lymphoma 8 129674 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 9 129675 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 129676 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 129677 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 129678 -NCIT:C138020 Refractory Central Nervous System Lymphoma 7 129679 -NCIT:C146989 Refractory Central Nervous System Non-Hodgkin Lymphoma 8 129680 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 9 129681 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 129682 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 129683 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 129684 -NCIT:C186658 Immunodeficiency-Related Central Nervous System Lymphoma 7 129685 -NCIT:C8284 AIDS-Related Primary Central Nervous System Lymphoma 8 129686 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 129687 -NCIT:C5157 Spinal Cord Lymphoma 7 129688 -NCIT:C7611 Cerebral Lymphoma 7 129689 -NCIT:C5054 Cerebral Lymphoma in Immunocompetent Host 8 129690 -NCIT:C5055 Cerebral Hodgkin Lymphoma 8 129691 -NCIT:C7609 Cerebral Non-Hodgkin Lymphoma 8 129692 -NCIT:C94756 Meningeal Lymphoma 7 129693 -NCIT:C95991 Dural Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 129694 -NCIT:C7587 Adult Lymphoma 5 129695 -NCIT:C141148 Lugano Classification Adult Lymphoma by AJCC v8 Stage 6 129696 -NCIT:C141149 Lugano Classification Limited Stage Adult Lymphoma AJCC v8 7 129697 -NCIT:C141150 Lugano Classification Stage I Adult Lymphoma AJCC v8 8 129698 -NCIT:C141160 Lugano Classification Stage I Adult Non-Hodgkin Lymphoma AJCC v8 9 129699 -NCIT:C141191 Lugano Classification Stage I Adult Hodgkin Lymphoma AJCC v8 9 129700 -NCIT:C141151 Lugano Classification Stage IE Adult Lymphoma AJCC v8 8 129701 -NCIT:C141161 Lugano Classification Stage IE Adult Non-Hodgkin Lymphoma AJCC v8 9 129702 -NCIT:C141192 Lugano Classification Stage IE Adult Hodgkin Lymphoma AJCC v8 9 129703 -NCIT:C141152 Lugano Classification Stage II Adult Lymphoma AJCC v8 8 129704 -NCIT:C141154 Lugano Classification Stage II Bulky Adult Lymphoma AJCC v8 9 129705 -NCIT:C141164 Lugano Classification Stage II Bulky Adult Non-Hodgkin Lymphoma AJCC v8 10 129706 -NCIT:C141195 Lugano Classification Stage II Bulky Adult Hodgkin Lymphoma AJCC v8 10 129707 -NCIT:C141162 Lugano Classification Stage II Adult Non-Hodgkin Lymphoma AJCC v8 9 129708 -NCIT:C141164 Lugano Classification Stage II Bulky Adult Non-Hodgkin Lymphoma AJCC v8 10 129709 -NCIT:C141193 Lugano Classification Stage II Adult Hodgkin Lymphoma AJCC v8 9 129710 -NCIT:C141195 Lugano Classification Stage II Bulky Adult Hodgkin Lymphoma AJCC v8 10 129711 -NCIT:C141153 Lugano Classification Stage IIE Adult Lymphoma AJCC v8 8 129712 -NCIT:C141163 Lugano Classification Stage IIE Adult Non-Hodgkin Lymphoma AJCC v8 9 129713 -NCIT:C141194 Lugano Classification Stage IIE Adult Hodgkin Lymphoma AJCC v8 9 129714 -NCIT:C141159 Lugano Classification Limited Stage Adult Non-Hodgkin Lymphoma AJCC v8 8 129715 -NCIT:C141160 Lugano Classification Stage I Adult Non-Hodgkin Lymphoma AJCC v8 9 129716 -NCIT:C141161 Lugano Classification Stage IE Adult Non-Hodgkin Lymphoma AJCC v8 9 129717 -NCIT:C141162 Lugano Classification Stage II Adult Non-Hodgkin Lymphoma AJCC v8 9 129718 -NCIT:C141164 Lugano Classification Stage II Bulky Adult Non-Hodgkin Lymphoma AJCC v8 10 129719 -NCIT:C141163 Lugano Classification Stage IIE Adult Non-Hodgkin Lymphoma AJCC v8 9 129720 -NCIT:C141190 Lugano Classification Limited Stage Adult Hodgkin Lymphoma AJCC v8 8 129721 -NCIT:C141191 Lugano Classification Stage I Adult Hodgkin Lymphoma AJCC v8 9 129722 -NCIT:C141192 Lugano Classification Stage IE Adult Hodgkin Lymphoma AJCC v8 9 129723 -NCIT:C141193 Lugano Classification Stage II Adult Hodgkin Lymphoma AJCC v8 9 129724 -NCIT:C141195 Lugano Classification Stage II Bulky Adult Hodgkin Lymphoma AJCC v8 10 129725 -NCIT:C141194 Lugano Classification Stage IIE Adult Hodgkin Lymphoma AJCC v8 9 129726 -NCIT:C141155 Lugano Classification Advanced Stage Adult Lymphoma AJCC v8 7 129727 -NCIT:C141156 Lugano Classification Stage III Adult Lymphoma AJCC v8 8 129728 -NCIT:C141166 Lugano Classification Stage III Adult Non-Hodgkin Lymphoma AJCC v8 9 129729 -NCIT:C141197 Lugano Classification Stage III Adult Hodgkin Lymphoma AJCC v8 9 129730 -NCIT:C141157 Lugano Classification Stage IV Adult Lymphoma AJCC v8 8 129731 -NCIT:C141167 Lugano Classification Stage IV Adult Non-Hodgkin Lymphoma AJCC v8 9 129732 -NCIT:C141198 Lugano Classification Stage IV Adult Hodgkin Lymphoma AJCC v8 9 129733 -NCIT:C141165 Lugano Classification Advanced Stage Adult Non-Hodgkin Lymphoma AJCC v8 8 129734 -NCIT:C141166 Lugano Classification Stage III Adult Non-Hodgkin Lymphoma AJCC v8 9 129735 -NCIT:C141167 Lugano Classification Stage IV Adult Non-Hodgkin Lymphoma AJCC v8 9 129736 -NCIT:C141196 Lugano Classification Advanced Stage Adult Hodgkin Lymphoma AJCC v8 8 129737 -NCIT:C141197 Lugano Classification Stage III Adult Hodgkin Lymphoma AJCC v8 9 129738 -NCIT:C141198 Lugano Classification Stage IV Adult Hodgkin Lymphoma AJCC v8 9 129739 -NCIT:C141158 Lugano Classification Adult Non-Hodgkin Lymphoma by AJCC v8 Stage 7 129740 -NCIT:C141159 Lugano Classification Limited Stage Adult Non-Hodgkin Lymphoma AJCC v8 8 129741 -NCIT:C141160 Lugano Classification Stage I Adult Non-Hodgkin Lymphoma AJCC v8 9 129742 -NCIT:C141161 Lugano Classification Stage IE Adult Non-Hodgkin Lymphoma AJCC v8 9 129743 -NCIT:C141162 Lugano Classification Stage II Adult Non-Hodgkin Lymphoma AJCC v8 9 129744 -NCIT:C141164 Lugano Classification Stage II Bulky Adult Non-Hodgkin Lymphoma AJCC v8 10 129745 -NCIT:C141163 Lugano Classification Stage IIE Adult Non-Hodgkin Lymphoma AJCC v8 9 129746 -NCIT:C141165 Lugano Classification Advanced Stage Adult Non-Hodgkin Lymphoma AJCC v8 8 129747 -NCIT:C141166 Lugano Classification Stage III Adult Non-Hodgkin Lymphoma AJCC v8 9 129748 -NCIT:C141167 Lugano Classification Stage IV Adult Non-Hodgkin Lymphoma AJCC v8 9 129749 -NCIT:C141189 Lugano Classification Adult Hodgkin Lymphoma by AJCC v8 Stage 7 129750 -NCIT:C141190 Lugano Classification Limited Stage Adult Hodgkin Lymphoma AJCC v8 8 129751 -NCIT:C141191 Lugano Classification Stage I Adult Hodgkin Lymphoma AJCC v8 9 129752 -NCIT:C141192 Lugano Classification Stage IE Adult Hodgkin Lymphoma AJCC v8 9 129753 -NCIT:C141193 Lugano Classification Stage II Adult Hodgkin Lymphoma AJCC v8 9 129754 -NCIT:C141195 Lugano Classification Stage II Bulky Adult Hodgkin Lymphoma AJCC v8 10 129755 -NCIT:C141194 Lugano Classification Stage IIE Adult Hodgkin Lymphoma AJCC v8 9 129756 -NCIT:C141196 Lugano Classification Advanced Stage Adult Hodgkin Lymphoma AJCC v8 8 129757 -NCIT:C141197 Lugano Classification Stage III Adult Hodgkin Lymphoma AJCC v8 9 129758 -NCIT:C141198 Lugano Classification Stage IV Adult Hodgkin Lymphoma AJCC v8 9 129759 -NCIT:C7702 Adult Hodgkin Lymphoma 6 129760 -NCIT:C114783 Hodgkin Lymphoma During Pregnancy 7 129761 -NCIT:C114807 Adult Favorable Prognosis Hodgkin Lymphoma 7 129762 -NCIT:C114809 Adult Unfavorable Prognosis Hodgkin Lymphoma 7 129763 -NCIT:C141189 Lugano Classification Adult Hodgkin Lymphoma by AJCC v8 Stage 7 129764 -NCIT:C141190 Lugano Classification Limited Stage Adult Hodgkin Lymphoma AJCC v8 8 129765 -NCIT:C141191 Lugano Classification Stage I Adult Hodgkin Lymphoma AJCC v8 9 129766 -NCIT:C141192 Lugano Classification Stage IE Adult Hodgkin Lymphoma AJCC v8 9 129767 -NCIT:C141193 Lugano Classification Stage II Adult Hodgkin Lymphoma AJCC v8 9 129768 -NCIT:C141195 Lugano Classification Stage II Bulky Adult Hodgkin Lymphoma AJCC v8 10 129769 -NCIT:C141194 Lugano Classification Stage IIE Adult Hodgkin Lymphoma AJCC v8 9 129770 -NCIT:C141196 Lugano Classification Advanced Stage Adult Hodgkin Lymphoma AJCC v8 8 129771 -NCIT:C141197 Lugano Classification Stage III Adult Hodgkin Lymphoma AJCC v8 9 129772 -NCIT:C141198 Lugano Classification Stage IV Adult Hodgkin Lymphoma AJCC v8 9 129773 -NCIT:C141226 Adult Hodgkin Lymphoma by Ann Arbor Stage 7 129774 -NCIT:C9032 Ann Arbor Stage I Adult Hodgkin Lymphoma 8 129775 -NCIT:C9033 Ann Arbor Stage II Adult Hodgkin Lymphoma 8 129776 -NCIT:C9034 Ann Arbor Stage III Adult Hodgkin Lymphoma 8 129777 -NCIT:C9035 Ann Arbor Stage IV Adult Hodgkin Lymphoma 8 129778 -NCIT:C69138 Adult Classic Hodgkin Lymphoma 7 129779 -NCIT:C7223 Adult Lymphocyte-Rich Classic Hodgkin Lymphoma 8 129780 -NCIT:C9125 Adult Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 129781 -NCIT:C9126 Adult Nodular Sclerosis Classic Hodgkin Lymphoma 8 129782 -NCIT:C9127 Adult Mixed Cellularity Classic Hodgkin Lymphoma 8 129783 -NCIT:C7789 Recurrent Adult Hodgkin Lymphoma 7 129784 -NCIT:C7942 Adult Nodular Lymphocyte Predominant Hodgkin Lymphoma 7 129785 -NCIT:C7704 Adult Non-Hodgkin Lymphoma 6 129786 -NCIT:C114784 Non-Hodgkin Lymphoma During Pregnancy 7 129787 -NCIT:C141158 Lugano Classification Adult Non-Hodgkin Lymphoma by AJCC v8 Stage 7 129788 -NCIT:C141159 Lugano Classification Limited Stage Adult Non-Hodgkin Lymphoma AJCC v8 8 129789 -NCIT:C141160 Lugano Classification Stage I Adult Non-Hodgkin Lymphoma AJCC v8 9 129790 -NCIT:C141161 Lugano Classification Stage IE Adult Non-Hodgkin Lymphoma AJCC v8 9 129791 -NCIT:C141162 Lugano Classification Stage II Adult Non-Hodgkin Lymphoma AJCC v8 9 129792 -NCIT:C141164 Lugano Classification Stage II Bulky Adult Non-Hodgkin Lymphoma AJCC v8 10 129793 -NCIT:C141163 Lugano Classification Stage IIE Adult Non-Hodgkin Lymphoma AJCC v8 9 129794 -NCIT:C141165 Lugano Classification Advanced Stage Adult Non-Hodgkin Lymphoma AJCC v8 8 129795 -NCIT:C141166 Lugano Classification Stage III Adult Non-Hodgkin Lymphoma AJCC v8 9 129796 -NCIT:C141167 Lugano Classification Stage IV Adult Non-Hodgkin Lymphoma AJCC v8 9 129797 -NCIT:C141235 Adult Non-Hodgkin Lymphoma by Ann Arbor Stage 7 129798 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 8 129799 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 9 129800 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 9 129801 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 9 129802 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 9 129803 -NCIT:C8102 Ann Arbor Stage I Adult Non-Hodgkin Lymphoma 8 129804 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 9 129805 -NCIT:C8464 Ann Arbor Stage I Indolent Adult Non-Hodgkin Lymphoma 9 129806 -NCIT:C9252 Ann Arbor Stage I Aggressive Adult Non-Hodgkin Lymphoma 9 129807 -NCIT:C8079 Ann Arbor Stage I Adult Lymphoblastic Lymphoma 10 129808 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 10 129809 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 10 129810 -NCIT:C8103 Ann Arbor Stage II Adult Non-Hodgkin Lymphoma 8 129811 -NCIT:C68686 Ann Arbor Stage II Aggressive Adult Non-Hodgkin Lymphoma 9 129812 -NCIT:C8125 Ann Arbor Stage II Adult Lymphoblastic Lymphoma 10 129813 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 11 129814 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 11 129815 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 10 129816 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 11 129817 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 11 129818 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 10 129819 -NCIT:C8472 Ann Arbor Stage II Contiguous Adult Aggressive Non-Hodgkin Lymphoma 10 129820 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 11 129821 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 11 129822 -NCIT:C8479 Ann Arbor Stage II Non-Contiguous Aggressive Adult Non-Hodgkin Lymphoma 10 129823 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 11 129824 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 11 129825 -NCIT:C68688 Ann Arbor Stage II Indolent Adult Non-Hodgkin Lymphoma 9 129826 -NCIT:C8467 Ann Arbor Stage II Contiguous Adult Indolent Non-Hodgkin Lymphoma 10 129827 -NCIT:C8478 Ann Arbor Stage II Non-Contiguous Adult Indolent Non-Hodgkin Lymphoma 10 129828 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 9 129829 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 10 129830 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 10 129831 -NCIT:C8466 Ann Arbor Stage II Contiguous Adult Non-Hodgkin Lymphoma 9 129832 -NCIT:C8467 Ann Arbor Stage II Contiguous Adult Indolent Non-Hodgkin Lymphoma 10 129833 -NCIT:C8472 Ann Arbor Stage II Contiguous Adult Aggressive Non-Hodgkin Lymphoma 10 129834 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 11 129835 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 11 129836 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 10 129837 -NCIT:C8477 Ann Arbor Stage II Non-Contiguous Adult Non-Hodgkin Lymphoma 9 129838 -NCIT:C8478 Ann Arbor Stage II Non-Contiguous Adult Indolent Non-Hodgkin Lymphoma 10 129839 -NCIT:C8479 Ann Arbor Stage II Non-Contiguous Aggressive Adult Non-Hodgkin Lymphoma 10 129840 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 11 129841 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 11 129842 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 10 129843 -NCIT:C8104 Ann Arbor Stage III Adult Non-Hodgkin Lymphoma 8 129844 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 9 129845 -NCIT:C8482 Ann Arbor Stage III Indolent Adult Non-Hodgkin Lymphoma 9 129846 -NCIT:C8484 Ann Arbor Stage III Aggressive Adult Non-Hodgkin Lymphoma 9 129847 -NCIT:C8138 Ann Arbor Stage III Adult Lymphoblastic Lymphoma 10 129848 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 10 129849 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 10 129850 -NCIT:C8105 Ann Arbor Stage IV Adult Non-Hodgkin Lymphoma 8 129851 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 9 129852 -NCIT:C8485 Ann Arbor Stage IV Indolent Adult Non-Hodgkin Lymphoma 9 129853 -NCIT:C8487 Ann Arbor Stage IV Aggressive Adult Non-Hodgkin Lymphoma 9 129854 -NCIT:C8151 Ann Arbor Stage IV Adult Lymphoblastic Lymphoma 10 129855 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 10 129856 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 10 129857 -NCIT:C27367 Adult Anaplastic Large Cell Lymphoma 7 129858 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 8 129859 -NCIT:C27366 Adult Systemic Anaplastic Large Cell Lymphoma 8 129860 -NCIT:C7615 Adult Diffuse Large B-Cell Lymphoma 7 129861 -NCIT:C115150 Adult Grade III Lymphomatoid Granulomatosis 8 129862 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 9 129863 -NCIT:C188457 Adult EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 129864 -NCIT:C7873 Adult Immunoblastic Lymphoma 8 129865 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 9 129866 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 9 129867 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 10 129868 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 10 129869 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 9 129870 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 9 129871 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 9 129872 -NCIT:C8098 Recurrent Adult Non-Hodgkin Lymphoma 7 129873 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 8 129874 -NCIT:C8488 Recurrent Indolent Adult Non-Hodgkin Lymphoma 8 129875 -NCIT:C8490 Recurrent Aggressive Adult Non-Hodgkin Lymphoma 8 129876 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 9 129877 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 9 129878 -NCIT:C8164 Recurrent Adult Lymphoblastic Lymphoma 9 129879 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 9 129880 -NCIT:C8491 Indolent Adult Non-Hodgkin Lymphoma 7 129881 -NCIT:C148175 Refractory Indolent Adult Non-Hodgkin Lymphoma 8 129882 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 8 129883 -NCIT:C68688 Ann Arbor Stage II Indolent Adult Non-Hodgkin Lymphoma 8 129884 -NCIT:C8467 Ann Arbor Stage II Contiguous Adult Indolent Non-Hodgkin Lymphoma 9 129885 -NCIT:C8478 Ann Arbor Stage II Non-Contiguous Adult Indolent Non-Hodgkin Lymphoma 9 129886 -NCIT:C8464 Ann Arbor Stage I Indolent Adult Non-Hodgkin Lymphoma 8 129887 -NCIT:C8482 Ann Arbor Stage III Indolent Adult Non-Hodgkin Lymphoma 8 129888 -NCIT:C8485 Ann Arbor Stage IV Indolent Adult Non-Hodgkin Lymphoma 8 129889 -NCIT:C8488 Recurrent Indolent Adult Non-Hodgkin Lymphoma 8 129890 -NCIT:C8492 Aggressive Adult Non-Hodgkin Lymphoma 7 129891 -NCIT:C115150 Adult Grade III Lymphomatoid Granulomatosis 8 129892 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 9 129893 -NCIT:C115154 Adult Nasal Type Extranodal NK/T-Cell Lymphoma 8 129894 -NCIT:C3184 Adult T-Cell Leukemia/Lymphoma 8 129895 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 9 129896 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 10 129897 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 10 129898 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 10 129899 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 10 129900 -NCIT:C36265 Acute Adult T-Cell Leukemia/Lymphoma 9 129901 -NCIT:C36266 Lymphomatous Adult T-Cell Leukemia/Lymphoma 9 129902 -NCIT:C36268 Hodgkin-Like Adult T-Cell Leukemia/Lymphoma 9 129903 -NCIT:C45272 Cutaneous Adult T-Cell Leukemia/Lymphoma 9 129904 -NCIT:C7178 Smoldering Adult T-Cell Leukemia/Lymphoma 9 129905 -NCIT:C7179 Chronic Adult T-Cell Leukemia/Lymphoma 9 129906 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 9 129907 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 9 129908 -NCIT:C68686 Ann Arbor Stage II Aggressive Adult Non-Hodgkin Lymphoma 8 129909 -NCIT:C8125 Ann Arbor Stage II Adult Lymphoblastic Lymphoma 9 129910 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 10 129911 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 10 129912 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 9 129913 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 10 129914 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 10 129915 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 9 129916 -NCIT:C8472 Ann Arbor Stage II Contiguous Adult Aggressive Non-Hodgkin Lymphoma 9 129917 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 10 129918 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 10 129919 -NCIT:C8479 Ann Arbor Stage II Non-Contiguous Aggressive Adult Non-Hodgkin Lymphoma 9 129920 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 10 129921 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 10 129922 -NCIT:C8484 Ann Arbor Stage III Aggressive Adult Non-Hodgkin Lymphoma 8 129923 -NCIT:C8138 Ann Arbor Stage III Adult Lymphoblastic Lymphoma 9 129924 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 9 129925 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 9 129926 -NCIT:C8487 Ann Arbor Stage IV Aggressive Adult Non-Hodgkin Lymphoma 8 129927 -NCIT:C8151 Ann Arbor Stage IV Adult Lymphoblastic Lymphoma 9 129928 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 9 129929 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 9 129930 -NCIT:C8490 Recurrent Aggressive Adult Non-Hodgkin Lymphoma 8 129931 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 9 129932 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 9 129933 -NCIT:C8164 Recurrent Adult Lymphoblastic Lymphoma 9 129934 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 9 129935 -NCIT:C9062 Adult Burkitt Lymphoma 8 129936 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 9 129937 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 9 129938 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 10 129939 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 10 129940 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 9 129941 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 9 129942 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 9 129943 -NCIT:C9252 Ann Arbor Stage I Aggressive Adult Non-Hodgkin Lymphoma 8 129944 -NCIT:C8079 Ann Arbor Stage I Adult Lymphoblastic Lymphoma 9 129945 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 9 129946 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 9 129947 -NCIT:C9361 Adult Lymphoblastic Lymphoma 8 129948 -NCIT:C7226 Adult T Lymphoblastic Lymphoma 9 129949 -NCIT:C7338 Adult B Lymphoblastic Lymphoma 9 129950 -NCIT:C8079 Ann Arbor Stage I Adult Lymphoblastic Lymphoma 9 129951 -NCIT:C8125 Ann Arbor Stage II Adult Lymphoblastic Lymphoma 9 129952 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 10 129953 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 10 129954 -NCIT:C8138 Ann Arbor Stage III Adult Lymphoblastic Lymphoma 9 129955 -NCIT:C8151 Ann Arbor Stage IV Adult Lymphoblastic Lymphoma 9 129956 -NCIT:C8164 Recurrent Adult Lymphoblastic Lymphoma 9 129957 -NCIT:C9357 Hodgkin Lymphoma 5 129958 -NCIT:C114949 Secondary Central Nervous System Hodgkin Lymphoma 6 129959 -NCIT:C5057 Secondary Cerebral Hodgkin Lymphoma 7 129960 -NCIT:C114951 Central Nervous System Hodgkin Lymphoma 6 129961 -NCIT:C5055 Cerebral Hodgkin Lymphoma 7 129962 -NCIT:C141141 Hodgkin Lymphoma by Ann Arbor Stage 6 129963 -NCIT:C141222 Lymphocyte-Depleted Classic Hodgkin Lymphoma by Ann Arbor Stage 7 129964 -NCIT:C3583 Ann Arbor Stage III Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 129965 -NCIT:C5064 Ann Arbor Stage I Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 129966 -NCIT:C5065 Ann Arbor Stage I Subdiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 129967 -NCIT:C5066 Ann Arbor Stage I Supradiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 129968 -NCIT:C5067 Ann Arbor Stage II Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 129969 -NCIT:C5068 Ann Arbor Stage II Subdiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 129970 -NCIT:C5069 Ann Arbor Stage II Supradiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 129971 -NCIT:C8651 Ann Arbor Stage IV Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 129972 -NCIT:C141223 Nodular Sclerosis Classic Hodgkin Lymphoma by Ann Arbor Stage 7 129973 -NCIT:C3581 Ann Arbor Stage III Nodular Sclerosis Classic Hodgkin Lymphoma 8 129974 -NCIT:C5081 Ann Arbor Stage II Nodular Sclerosis Classic Hodgkin Lymphoma 8 129975 -NCIT:C5082 Ann Arbor Stage II Subdiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 9 129976 -NCIT:C5083 Ann Arbor Stage II Supradiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 9 129977 -NCIT:C8839 Ann Arbor Stage I Nodular Sclerosis Classic Hodgkin Lymphoma 8 129978 -NCIT:C5079 Ann Arbor Stage I Subdiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 9 129979 -NCIT:C5080 Ann Arbor Stage I Supradiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 9 129980 -NCIT:C8840 Ann Arbor Stage IV Nodular Sclerosis Classic Hodgkin Lymphoma 8 129981 -NCIT:C141224 Mixed Cellularity Classic Hodgkin Lymphoma by Ann Arbor Stage 7 129982 -NCIT:C3582 Ann Arbor Stage III Mixed Cellularity Classic Hodgkin Lymphoma 8 129983 -NCIT:C5077 Ann Arbor Stage II Mixed Cellularity Classic Hodgkin Lymphoma 8 129984 -NCIT:C5078 Ann Arbor Stage II Subdiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 9 129985 -NCIT:C5104 Ann Arbor Stage II Supradiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 9 129986 -NCIT:C8834 Ann Arbor Stage I Mixed Cellularity Classic Hodgkin Lymphoma 8 129987 -NCIT:C5075 Ann Arbor Stage I Subdiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 9 129988 -NCIT:C5076 Ann Arbor Stage I Supradiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 9 129989 -NCIT:C8835 Ann Arbor Stage IV Mixed Cellularity Classic Hodgkin Lymphoma 8 129990 -NCIT:C141225 Nodular Lymphocyte Predominant Hodgkin Lymphoma by Ann Arbor Stage 7 129991 -NCIT:C5070 Ann Arbor Stage II Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 129992 -NCIT:C5071 Ann Arbor Stage II Subdiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 129993 -NCIT:C5072 Ann Arbor Stage II Supradiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 129994 -NCIT:C5634 Ann Arbor Stage I Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 129995 -NCIT:C5073 Ann Arbor Stage I Subdiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 129996 -NCIT:C5074 Ann Arbor Stage I Supradiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 129997 -NCIT:C7261 Ann Arbor Stage IV Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 129998 -NCIT:C7262 Ann Arbor Stage III Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 129999 -NCIT:C141226 Adult Hodgkin Lymphoma by Ann Arbor Stage 7 130000 -NCIT:C9032 Ann Arbor Stage I Adult Hodgkin Lymphoma 8 130001 -NCIT:C9033 Ann Arbor Stage II Adult Hodgkin Lymphoma 8 130002 -NCIT:C9034 Ann Arbor Stage III Adult Hodgkin Lymphoma 8 130003 -NCIT:C9035 Ann Arbor Stage IV Adult Hodgkin Lymphoma 8 130004 -NCIT:C141227 Childhood Hodgkin Lymphoma by Ann Arbor Stage 7 130005 -NCIT:C8055 Ann Arbor Stage II Childhood Hodgkin Lymphoma 8 130006 -NCIT:C8056 Ann Arbor Stage I Childhood Hodgkin Lymphoma 8 130007 -NCIT:C8057 Ann Arbor Stage III Childhood Hodgkin Lymphoma 8 130008 -NCIT:C8058 Ann Arbor Stage IV Childhood Hodgkin Lymphoma 8 130009 -NCIT:C3584 Ann Arbor Stage III Hodgkin Lymphoma 7 130010 -NCIT:C3581 Ann Arbor Stage III Nodular Sclerosis Classic Hodgkin Lymphoma 8 130011 -NCIT:C3582 Ann Arbor Stage III Mixed Cellularity Classic Hodgkin Lymphoma 8 130012 -NCIT:C3583 Ann Arbor Stage III Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 130013 -NCIT:C3914 Ann Arbor Stage IIIA Hodgkin Lymphoma 8 130014 -NCIT:C4058 Ann Arbor Stage IIIB Hodgkin Lymphoma 8 130015 -NCIT:C7262 Ann Arbor Stage III Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 130016 -NCIT:C8057 Ann Arbor Stage III Childhood Hodgkin Lymphoma 8 130017 -NCIT:C9034 Ann Arbor Stage III Adult Hodgkin Lymphoma 8 130018 -NCIT:C8517 Ann Arbor Stage I Hodgkin Lymphoma 7 130019 -NCIT:C3911 Ann Arbor Stage IA Hodgkin Lymphoma 8 130020 -NCIT:C5011 Ann Arbor Stage I Supradiaphragmatic Hodgkin Lymphoma 8 130021 -NCIT:C5066 Ann Arbor Stage I Supradiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 130022 -NCIT:C5074 Ann Arbor Stage I Supradiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 130023 -NCIT:C5076 Ann Arbor Stage I Supradiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 9 130024 -NCIT:C5080 Ann Arbor Stage I Supradiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 9 130025 -NCIT:C5012 Ann Arbor Stage I Subdiaphragmatic Hodgkin Lymphoma 8 130026 -NCIT:C5065 Ann Arbor Stage I Subdiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 130027 -NCIT:C5073 Ann Arbor Stage I Subdiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 130028 -NCIT:C5075 Ann Arbor Stage I Subdiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 9 130029 -NCIT:C5079 Ann Arbor Stage I Subdiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 9 130030 -NCIT:C5064 Ann Arbor Stage I Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 130031 -NCIT:C5065 Ann Arbor Stage I Subdiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 130032 -NCIT:C5066 Ann Arbor Stage I Supradiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 130033 -NCIT:C5632 Ann Arbor Stage IB Hodgkin Lymphoma 8 130034 -NCIT:C5634 Ann Arbor Stage I Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 130035 -NCIT:C5073 Ann Arbor Stage I Subdiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 130036 -NCIT:C5074 Ann Arbor Stage I Supradiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 130037 -NCIT:C8056 Ann Arbor Stage I Childhood Hodgkin Lymphoma 8 130038 -NCIT:C8834 Ann Arbor Stage I Mixed Cellularity Classic Hodgkin Lymphoma 8 130039 -NCIT:C5075 Ann Arbor Stage I Subdiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 9 130040 -NCIT:C5076 Ann Arbor Stage I Supradiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 9 130041 -NCIT:C8839 Ann Arbor Stage I Nodular Sclerosis Classic Hodgkin Lymphoma 8 130042 -NCIT:C5079 Ann Arbor Stage I Subdiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 9 130043 -NCIT:C5080 Ann Arbor Stage I Supradiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 9 130044 -NCIT:C9032 Ann Arbor Stage I Adult Hodgkin Lymphoma 8 130045 -NCIT:C8518 Ann Arbor Stage II Hodgkin Lymphoma 7 130046 -NCIT:C3912 Ann Arbor Stage IIA Hodgkin Lymphoma 8 130047 -NCIT:C3913 Ann Arbor Stage IIB Hodgkin Lymphoma 8 130048 -NCIT:C5009 Ann Arbor Stage II Supradiaphragmatic Hodgkin Lymphoma 8 130049 -NCIT:C5069 Ann Arbor Stage II Supradiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 130050 -NCIT:C5072 Ann Arbor Stage II Supradiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 130051 -NCIT:C5083 Ann Arbor Stage II Supradiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 9 130052 -NCIT:C5104 Ann Arbor Stage II Supradiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 9 130053 -NCIT:C5010 Ann Arbor Stage II Subdiaphragmatic Hodgkin Lymphoma 8 130054 -NCIT:C5068 Ann Arbor Stage II Subdiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 130055 -NCIT:C5071 Ann Arbor Stage II Subdiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 130056 -NCIT:C5078 Ann Arbor Stage II Subdiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 9 130057 -NCIT:C5082 Ann Arbor Stage II Subdiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 9 130058 -NCIT:C5067 Ann Arbor Stage II Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 130059 -NCIT:C5068 Ann Arbor Stage II Subdiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 130060 -NCIT:C5069 Ann Arbor Stage II Supradiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 130061 -NCIT:C5070 Ann Arbor Stage II Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 130062 -NCIT:C5071 Ann Arbor Stage II Subdiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 130063 -NCIT:C5072 Ann Arbor Stage II Supradiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 130064 -NCIT:C5077 Ann Arbor Stage II Mixed Cellularity Classic Hodgkin Lymphoma 8 130065 -NCIT:C5078 Ann Arbor Stage II Subdiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 9 130066 -NCIT:C5104 Ann Arbor Stage II Supradiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 9 130067 -NCIT:C5081 Ann Arbor Stage II Nodular Sclerosis Classic Hodgkin Lymphoma 8 130068 -NCIT:C5082 Ann Arbor Stage II Subdiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 9 130069 -NCIT:C5083 Ann Arbor Stage II Supradiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 9 130070 -NCIT:C8055 Ann Arbor Stage II Childhood Hodgkin Lymphoma 8 130071 -NCIT:C9033 Ann Arbor Stage II Adult Hodgkin Lymphoma 8 130072 -NCIT:C8519 Ann Arbor Stage IV Hodgkin Lymphoma 7 130073 -NCIT:C4059 Ann Arbor Stage IVA Hodgkin Lymphoma 8 130074 -NCIT:C5633 Ann Arbor Stage IVB Hodgkin Lymphoma 8 130075 -NCIT:C7261 Ann Arbor Stage IV Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 130076 -NCIT:C8058 Ann Arbor Stage IV Childhood Hodgkin Lymphoma 8 130077 -NCIT:C8651 Ann Arbor Stage IV Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 130078 -NCIT:C8835 Ann Arbor Stage IV Mixed Cellularity Classic Hodgkin Lymphoma 8 130079 -NCIT:C8840 Ann Arbor Stage IV Nodular Sclerosis Classic Hodgkin Lymphoma 8 130080 -NCIT:C9035 Ann Arbor Stage IV Adult Hodgkin Lymphoma 8 130081 -NCIT:C141168 Lugano Classification Hodgkin Lymphoma by AJCC v8 Stage 6 130082 -NCIT:C141169 Lugano Classification Limited Stage Hodgkin Lymphoma AJCC v8 7 130083 -NCIT:C141170 Lugano Classification Stage I Hodgkin Lymphoma AJCC v8 8 130084 -NCIT:C141180 Lugano Classification Stage I Childhood Hodgkin Lymphoma AJCC v8 9 130085 -NCIT:C141191 Lugano Classification Stage I Adult Hodgkin Lymphoma AJCC v8 9 130086 -NCIT:C141171 Lugano Classification Stage IE Hodgkin Lymphoma AJCC v8 8 130087 -NCIT:C141181 Lugano Classification Stage IE Childhood Hodgkin Lymphoma AJCC v8 9 130088 -NCIT:C141192 Lugano Classification Stage IE Adult Hodgkin Lymphoma AJCC v8 9 130089 -NCIT:C141172 Lugano Classification Stage II Hodgkin Lymphoma AJCC v8 8 130090 -NCIT:C141174 Lugano Classification Stage II Bulky Hodgkin Lymphoma AJCC v8 9 130091 -NCIT:C141184 Lugano Classification Stage II Bulky Childhood Hodgkin Lymphoma AJCC v8 10 130092 -NCIT:C141195 Lugano Classification Stage II Bulky Adult Hodgkin Lymphoma AJCC v8 10 130093 -NCIT:C141182 Lugano Classification Stage II Childhood Hodgkin Lymphoma AJCC v8 9 130094 -NCIT:C141184 Lugano Classification Stage II Bulky Childhood Hodgkin Lymphoma AJCC v8 10 130095 -NCIT:C141193 Lugano Classification Stage II Adult Hodgkin Lymphoma AJCC v8 9 130096 -NCIT:C141195 Lugano Classification Stage II Bulky Adult Hodgkin Lymphoma AJCC v8 10 130097 -NCIT:C141173 Lugano Classification Stage IIE Hodgkin Lymphoma AJCC v8 8 130098 -NCIT:C141183 Lugano Classification Stage IIE Childhood Hodgkin Lymphoma AJCC v8 9 130099 -NCIT:C141194 Lugano Classification Stage IIE Adult Hodgkin Lymphoma AJCC v8 9 130100 -NCIT:C141179 Lugano Classification Limited Stage Childhood Hodgkin Lymphoma AJCC v8 8 130101 -NCIT:C141180 Lugano Classification Stage I Childhood Hodgkin Lymphoma AJCC v8 9 130102 -NCIT:C141181 Lugano Classification Stage IE Childhood Hodgkin Lymphoma AJCC v8 9 130103 -NCIT:C141182 Lugano Classification Stage II Childhood Hodgkin Lymphoma AJCC v8 9 130104 -NCIT:C141184 Lugano Classification Stage II Bulky Childhood Hodgkin Lymphoma AJCC v8 10 130105 -NCIT:C141183 Lugano Classification Stage IIE Childhood Hodgkin Lymphoma AJCC v8 9 130106 -NCIT:C141190 Lugano Classification Limited Stage Adult Hodgkin Lymphoma AJCC v8 8 130107 -NCIT:C141191 Lugano Classification Stage I Adult Hodgkin Lymphoma AJCC v8 9 130108 -NCIT:C141192 Lugano Classification Stage IE Adult Hodgkin Lymphoma AJCC v8 9 130109 -NCIT:C141193 Lugano Classification Stage II Adult Hodgkin Lymphoma AJCC v8 9 130110 -NCIT:C141195 Lugano Classification Stage II Bulky Adult Hodgkin Lymphoma AJCC v8 10 130111 -NCIT:C141194 Lugano Classification Stage IIE Adult Hodgkin Lymphoma AJCC v8 9 130112 -NCIT:C141175 Lugano Classification Advanced Stage Hodgkin Lymphoma AJCC v8 7 130113 -NCIT:C141176 Lugano Classification Stage III Hodgkin Lymphoma AJCC v8 8 130114 -NCIT:C141186 Lugano Classification Stage III Childhood Hodgkin Lymphoma AJCC v8 9 130115 -NCIT:C141197 Lugano Classification Stage III Adult Hodgkin Lymphoma AJCC v8 9 130116 -NCIT:C141177 Lugano Classification Stage IV Hodgkin Lymphoma AJCC v8 8 130117 -NCIT:C141187 Lugano Classification Stage IV Childhood Hodgkin Lymphoma AJCC v8 9 130118 -NCIT:C141198 Lugano Classification Stage IV Adult Hodgkin Lymphoma AJCC v8 9 130119 -NCIT:C141185 Lugano Classification Advanced Stage Childhood Hodgkin Lymphoma AJCC v8 8 130120 -NCIT:C141186 Lugano Classification Stage III Childhood Hodgkin Lymphoma AJCC v8 9 130121 -NCIT:C141187 Lugano Classification Stage IV Childhood Hodgkin Lymphoma AJCC v8 9 130122 -NCIT:C141196 Lugano Classification Advanced Stage Adult Hodgkin Lymphoma AJCC v8 8 130123 -NCIT:C141197 Lugano Classification Stage III Adult Hodgkin Lymphoma AJCC v8 9 130124 -NCIT:C141198 Lugano Classification Stage IV Adult Hodgkin Lymphoma AJCC v8 9 130125 -NCIT:C141178 Lugano Classification Childhood Hodgkin Lymphoma by AJCC v8 Stage 7 130126 -NCIT:C141179 Lugano Classification Limited Stage Childhood Hodgkin Lymphoma AJCC v8 8 130127 -NCIT:C141180 Lugano Classification Stage I Childhood Hodgkin Lymphoma AJCC v8 9 130128 -NCIT:C141181 Lugano Classification Stage IE Childhood Hodgkin Lymphoma AJCC v8 9 130129 -NCIT:C141182 Lugano Classification Stage II Childhood Hodgkin Lymphoma AJCC v8 9 130130 -NCIT:C141184 Lugano Classification Stage II Bulky Childhood Hodgkin Lymphoma AJCC v8 10 130131 -NCIT:C141183 Lugano Classification Stage IIE Childhood Hodgkin Lymphoma AJCC v8 9 130132 -NCIT:C141185 Lugano Classification Advanced Stage Childhood Hodgkin Lymphoma AJCC v8 8 130133 -NCIT:C141186 Lugano Classification Stage III Childhood Hodgkin Lymphoma AJCC v8 9 130134 -NCIT:C141187 Lugano Classification Stage IV Childhood Hodgkin Lymphoma AJCC v8 9 130135 -NCIT:C141189 Lugano Classification Adult Hodgkin Lymphoma by AJCC v8 Stage 7 130136 -NCIT:C141190 Lugano Classification Limited Stage Adult Hodgkin Lymphoma AJCC v8 8 130137 -NCIT:C141191 Lugano Classification Stage I Adult Hodgkin Lymphoma AJCC v8 9 130138 -NCIT:C141192 Lugano Classification Stage IE Adult Hodgkin Lymphoma AJCC v8 9 130139 -NCIT:C141193 Lugano Classification Stage II Adult Hodgkin Lymphoma AJCC v8 9 130140 -NCIT:C141195 Lugano Classification Stage II Bulky Adult Hodgkin Lymphoma AJCC v8 10 130141 -NCIT:C141194 Lugano Classification Stage IIE Adult Hodgkin Lymphoma AJCC v8 9 130142 -NCIT:C141196 Lugano Classification Advanced Stage Adult Hodgkin Lymphoma AJCC v8 8 130143 -NCIT:C141197 Lugano Classification Stage III Adult Hodgkin Lymphoma AJCC v8 9 130144 -NCIT:C141198 Lugano Classification Stage IV Adult Hodgkin Lymphoma AJCC v8 9 130145 -NCIT:C172373 Advanced Hodgkin Lymphoma 6 130146 -NCIT:C68662 Advanced Favorable Hodgkin Lymphoma 7 130147 -NCIT:C68665 Advanced Unfavorable Hodgkin Lymphoma 7 130148 -NCIT:C173356 Pharyngeal Hodgkin Lymphoma 6 130149 -NCIT:C173361 Nasopharyngeal Hodgkin Lymphoma 7 130150 -NCIT:C173578 Oropharyngeal Hodgkin Lymphoma 7 130151 -NCIT:C173692 Salivary Gland Hodgkin Lymphoma 6 130152 -NCIT:C181205 Lung Hodgkin Lymphoma 6 130153 -NCIT:C181207 Primary Bone Hodgkin Lymphoma 6 130154 -NCIT:C181209 Thyroid Gland Hodgkin Lymphoma 6 130155 -NCIT:C27692 EBV-Related Hodgkin Lymphoma 6 130156 -NCIT:C7243 Classic Hodgkin Lymphoma Type Post-Transplant Lymphoproliferative Disorder 7 130157 -NCIT:C38163 Digestive System Hodgkin Lymphoma 6 130158 -NCIT:C5337 Small Intestinal Hodgkin Lymphoma 7 130159 -NCIT:C5638 Gastric Hodgkin Lymphoma 7 130160 -NCIT:C5689 Esophageal Hodgkin Lymphoma 7 130161 -NCIT:C96500 Colorectal Hodgkin Lymphoma 7 130162 -NCIT:C5499 Colon Hodgkin Lymphoma 8 130163 -NCIT:C4937 Recurrent Hodgkin Lymphoma 6 130164 -NCIT:C133592 Recurrent Classic Hodgkin Lymphoma 7 130165 -NCIT:C136971 Recurrent Lymphocyte-Rich Classic Hodgkin Lymphoma 8 130166 -NCIT:C8649 Recurrent Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 130167 -NCIT:C8832 Recurrent Mixed Cellularity Classic Hodgkin Lymphoma 8 130168 -NCIT:C8837 Recurrent Nodular Sclerosis Classic Hodgkin Lymphoma 8 130169 -NCIT:C7259 Recurrent Nodular Lymphocyte Predominant Hodgkin Lymphoma 7 130170 -NCIT:C7789 Recurrent Adult Hodgkin Lymphoma 7 130171 -NCIT:C8059 Recurrent Childhood Hodgkin Lymphoma 7 130172 -NCIT:C6634 Mediastinal Hodgkin Lymphoma 6 130173 -NCIT:C95057 Thymic Hodgkin Lymphoma 7 130174 -NCIT:C6723 Chest Wall Hodgkin Lymphoma 6 130175 -NCIT:C68666 Hodgkin Lymphoma by Clinical Course 6 130176 -NCIT:C68660 Favorable Hodgkin Lymphoma 7 130177 -NCIT:C114806 Childhood Favorable Prognosis Hodgkin Lymphoma 8 130178 -NCIT:C114807 Adult Favorable Prognosis Hodgkin Lymphoma 8 130179 -NCIT:C68661 Early Favorable Hodgkin Lymphoma 8 130180 -NCIT:C68662 Advanced Favorable Hodgkin Lymphoma 8 130181 -NCIT:C68663 Unfavorable Hodgkin Lymphoma 7 130182 -NCIT:C114808 Childhood Unfavorable Prognosis Hodgkin Lymphoma 8 130183 -NCIT:C114809 Adult Unfavorable Prognosis Hodgkin Lymphoma 8 130184 -NCIT:C68664 Early Unfavorable Hodgkin Lymphoma 8 130185 -NCIT:C68665 Advanced Unfavorable Hodgkin Lymphoma 8 130186 -NCIT:C7164 Classic Hodgkin Lymphoma 6 130187 -NCIT:C133592 Recurrent Classic Hodgkin Lymphoma 7 130188 -NCIT:C136971 Recurrent Lymphocyte-Rich Classic Hodgkin Lymphoma 8 130189 -NCIT:C8649 Recurrent Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 130190 -NCIT:C8832 Recurrent Mixed Cellularity Classic Hodgkin Lymphoma 8 130191 -NCIT:C8837 Recurrent Nodular Sclerosis Classic Hodgkin Lymphoma 8 130192 -NCIT:C133736 Refractory Classic Hodgkin Lymphoma 7 130193 -NCIT:C142982 Refractory Lymphocyte-Rich Classic Hodgkin Lymphoma 8 130194 -NCIT:C8650 Refractory Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 130195 -NCIT:C8833 Refractory Mixed Cellularity Classic Hodgkin Lymphoma 8 130196 -NCIT:C8838 Refractory Nodular Sclerosis Classic Hodgkin Lymphoma 8 130197 -NCIT:C3517 Mixed Cellularity Classic Hodgkin Lymphoma 7 130198 -NCIT:C141224 Mixed Cellularity Classic Hodgkin Lymphoma by Ann Arbor Stage 8 130199 -NCIT:C3582 Ann Arbor Stage III Mixed Cellularity Classic Hodgkin Lymphoma 9 130200 -NCIT:C5077 Ann Arbor Stage II Mixed Cellularity Classic Hodgkin Lymphoma 9 130201 -NCIT:C5078 Ann Arbor Stage II Subdiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 10 130202 -NCIT:C5104 Ann Arbor Stage II Supradiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 10 130203 -NCIT:C8834 Ann Arbor Stage I Mixed Cellularity Classic Hodgkin Lymphoma 9 130204 -NCIT:C5075 Ann Arbor Stage I Subdiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 10 130205 -NCIT:C5076 Ann Arbor Stage I Supradiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 10 130206 -NCIT:C8835 Ann Arbor Stage IV Mixed Cellularity Classic Hodgkin Lymphoma 9 130207 -NCIT:C8063 Childhood Mixed Cellularity Classic Hodgkin Lymphoma 8 130208 -NCIT:C8832 Recurrent Mixed Cellularity Classic Hodgkin Lymphoma 8 130209 -NCIT:C8833 Refractory Mixed Cellularity Classic Hodgkin Lymphoma 8 130210 -NCIT:C9127 Adult Mixed Cellularity Classic Hodgkin Lymphoma 8 130211 -NCIT:C3518 Nodular Sclerosis Classic Hodgkin Lymphoma 7 130212 -NCIT:C141223 Nodular Sclerosis Classic Hodgkin Lymphoma by Ann Arbor Stage 8 130213 -NCIT:C3581 Ann Arbor Stage III Nodular Sclerosis Classic Hodgkin Lymphoma 9 130214 -NCIT:C5081 Ann Arbor Stage II Nodular Sclerosis Classic Hodgkin Lymphoma 9 130215 -NCIT:C5082 Ann Arbor Stage II Subdiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 10 130216 -NCIT:C5083 Ann Arbor Stage II Supradiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 10 130217 -NCIT:C8839 Ann Arbor Stage I Nodular Sclerosis Classic Hodgkin Lymphoma 9 130218 -NCIT:C5079 Ann Arbor Stage I Subdiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 10 130219 -NCIT:C5080 Ann Arbor Stage I Supradiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 10 130220 -NCIT:C8840 Ann Arbor Stage IV Nodular Sclerosis Classic Hodgkin Lymphoma 9 130221 -NCIT:C27807 Nodular Sclerosis Classic Hodgkin Lymphoma, Syncytial Variant 8 130222 -NCIT:C67171 Nodular Sclerosis Classic Hodgkin Lymphoma, Cellular Phase 8 130223 -NCIT:C7165 Grade 1 Nodular Sclerosis Classic Hodgkin Lymphoma 8 130224 -NCIT:C7166 Grade 2 Nodular Sclerosis Classic Hodgkin Lymphoma 8 130225 -NCIT:C8062 Childhood Nodular Sclerosis Classic Hodgkin Lymphoma 8 130226 -NCIT:C8837 Recurrent Nodular Sclerosis Classic Hodgkin Lymphoma 8 130227 -NCIT:C8838 Refractory Nodular Sclerosis Classic Hodgkin Lymphoma 8 130228 -NCIT:C9126 Adult Nodular Sclerosis Classic Hodgkin Lymphoma 8 130229 -NCIT:C6913 Lymphocyte-Rich Classic Hodgkin Lymphoma 7 130230 -NCIT:C136971 Recurrent Lymphocyte-Rich Classic Hodgkin Lymphoma 8 130231 -NCIT:C142982 Refractory Lymphocyte-Rich Classic Hodgkin Lymphoma 8 130232 -NCIT:C7054 Childhood Lymphocyte-Rich Classic Hodgkin Lymphoma 8 130233 -NCIT:C7223 Adult Lymphocyte-Rich Classic Hodgkin Lymphoma 8 130234 -NCIT:C69138 Adult Classic Hodgkin Lymphoma 7 130235 -NCIT:C7223 Adult Lymphocyte-Rich Classic Hodgkin Lymphoma 8 130236 -NCIT:C9125 Adult Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 130237 -NCIT:C9126 Adult Nodular Sclerosis Classic Hodgkin Lymphoma 8 130238 -NCIT:C9127 Adult Mixed Cellularity Classic Hodgkin Lymphoma 8 130239 -NCIT:C69142 Childhood Classic Hodgkin Lymphoma 7 130240 -NCIT:C7054 Childhood Lymphocyte-Rich Classic Hodgkin Lymphoma 8 130241 -NCIT:C8061 Childhood Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 130242 -NCIT:C8062 Childhood Nodular Sclerosis Classic Hodgkin Lymphoma 8 130243 -NCIT:C8063 Childhood Mixed Cellularity Classic Hodgkin Lymphoma 8 130244 -NCIT:C9283 Lymphocyte-Depleted Classic Hodgkin Lymphoma 7 130245 -NCIT:C141222 Lymphocyte-Depleted Classic Hodgkin Lymphoma by Ann Arbor Stage 8 130246 -NCIT:C3583 Ann Arbor Stage III Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 130247 -NCIT:C5064 Ann Arbor Stage I Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 130248 -NCIT:C5065 Ann Arbor Stage I Subdiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 10 130249 -NCIT:C5066 Ann Arbor Stage I Supradiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 10 130250 -NCIT:C5067 Ann Arbor Stage II Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 130251 -NCIT:C5068 Ann Arbor Stage II Subdiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 10 130252 -NCIT:C5069 Ann Arbor Stage II Supradiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 10 130253 -NCIT:C8651 Ann Arbor Stage IV Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 130254 -NCIT:C8061 Childhood Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 130255 -NCIT:C8649 Recurrent Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 130256 -NCIT:C8650 Refractory Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 130257 -NCIT:C9125 Adult Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 130258 -NCIT:C7221 Primary Cutaneous Hodgkin Lymphoma 6 130259 -NCIT:C7256 Methotrexate-Associated Hodgkin Lymphoma 6 130260 -NCIT:C7258 Nodular Lymphocyte Predominant Hodgkin Lymphoma 6 130261 -NCIT:C141225 Nodular Lymphocyte Predominant Hodgkin Lymphoma by Ann Arbor Stage 7 130262 -NCIT:C5070 Ann Arbor Stage II Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 130263 -NCIT:C5071 Ann Arbor Stage II Subdiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 130264 -NCIT:C5072 Ann Arbor Stage II Supradiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 130265 -NCIT:C5634 Ann Arbor Stage I Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 130266 -NCIT:C5073 Ann Arbor Stage I Subdiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 130267 -NCIT:C5074 Ann Arbor Stage I Supradiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 130268 -NCIT:C7261 Ann Arbor Stage IV Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 130269 -NCIT:C7262 Ann Arbor Stage III Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 130270 -NCIT:C7259 Recurrent Nodular Lymphocyte Predominant Hodgkin Lymphoma 7 130271 -NCIT:C7260 Refractory Nodular Lymphocyte Predominant Hodgkin Lymphoma 7 130272 -NCIT:C7942 Adult Nodular Lymphocyte Predominant Hodgkin Lymphoma 7 130273 -NCIT:C8060 Childhood Nodular Lymphocyte Predominant Hodgkin Lymphoma 7 130274 -NCIT:C7295 Splenic Hodgkin Lymphoma 6 130275 -NCIT:C7702 Adult Hodgkin Lymphoma 6 130276 -NCIT:C114783 Hodgkin Lymphoma During Pregnancy 7 130277 -NCIT:C114807 Adult Favorable Prognosis Hodgkin Lymphoma 7 130278 -NCIT:C114809 Adult Unfavorable Prognosis Hodgkin Lymphoma 7 130279 -NCIT:C141189 Lugano Classification Adult Hodgkin Lymphoma by AJCC v8 Stage 7 130280 -NCIT:C141190 Lugano Classification Limited Stage Adult Hodgkin Lymphoma AJCC v8 8 130281 -NCIT:C141191 Lugano Classification Stage I Adult Hodgkin Lymphoma AJCC v8 9 130282 -NCIT:C141192 Lugano Classification Stage IE Adult Hodgkin Lymphoma AJCC v8 9 130283 -NCIT:C141193 Lugano Classification Stage II Adult Hodgkin Lymphoma AJCC v8 9 130284 -NCIT:C141195 Lugano Classification Stage II Bulky Adult Hodgkin Lymphoma AJCC v8 10 130285 -NCIT:C141194 Lugano Classification Stage IIE Adult Hodgkin Lymphoma AJCC v8 9 130286 -NCIT:C141196 Lugano Classification Advanced Stage Adult Hodgkin Lymphoma AJCC v8 8 130287 -NCIT:C141197 Lugano Classification Stage III Adult Hodgkin Lymphoma AJCC v8 9 130288 -NCIT:C141198 Lugano Classification Stage IV Adult Hodgkin Lymphoma AJCC v8 9 130289 -NCIT:C141226 Adult Hodgkin Lymphoma by Ann Arbor Stage 7 130290 -NCIT:C9032 Ann Arbor Stage I Adult Hodgkin Lymphoma 8 130291 -NCIT:C9033 Ann Arbor Stage II Adult Hodgkin Lymphoma 8 130292 -NCIT:C9034 Ann Arbor Stage III Adult Hodgkin Lymphoma 8 130293 -NCIT:C9035 Ann Arbor Stage IV Adult Hodgkin Lymphoma 8 130294 -NCIT:C69138 Adult Classic Hodgkin Lymphoma 7 130295 -NCIT:C7223 Adult Lymphocyte-Rich Classic Hodgkin Lymphoma 8 130296 -NCIT:C9125 Adult Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 130297 -NCIT:C9126 Adult Nodular Sclerosis Classic Hodgkin Lymphoma 8 130298 -NCIT:C9127 Adult Mixed Cellularity Classic Hodgkin Lymphoma 8 130299 -NCIT:C7789 Recurrent Adult Hodgkin Lymphoma 7 130300 -NCIT:C7942 Adult Nodular Lymphocyte Predominant Hodgkin Lymphoma 7 130301 -NCIT:C7714 Childhood Hodgkin Lymphoma 6 130302 -NCIT:C114806 Childhood Favorable Prognosis Hodgkin Lymphoma 7 130303 -NCIT:C114808 Childhood Unfavorable Prognosis Hodgkin Lymphoma 7 130304 -NCIT:C115458 Refractory Childhood Hodgkin Lymphoma 7 130305 -NCIT:C141178 Lugano Classification Childhood Hodgkin Lymphoma by AJCC v8 Stage 7 130306 -NCIT:C141179 Lugano Classification Limited Stage Childhood Hodgkin Lymphoma AJCC v8 8 130307 -NCIT:C141180 Lugano Classification Stage I Childhood Hodgkin Lymphoma AJCC v8 9 130308 -NCIT:C141181 Lugano Classification Stage IE Childhood Hodgkin Lymphoma AJCC v8 9 130309 -NCIT:C141182 Lugano Classification Stage II Childhood Hodgkin Lymphoma AJCC v8 9 130310 -NCIT:C141184 Lugano Classification Stage II Bulky Childhood Hodgkin Lymphoma AJCC v8 10 130311 -NCIT:C141183 Lugano Classification Stage IIE Childhood Hodgkin Lymphoma AJCC v8 9 130312 -NCIT:C141185 Lugano Classification Advanced Stage Childhood Hodgkin Lymphoma AJCC v8 8 130313 -NCIT:C141186 Lugano Classification Stage III Childhood Hodgkin Lymphoma AJCC v8 9 130314 -NCIT:C141187 Lugano Classification Stage IV Childhood Hodgkin Lymphoma AJCC v8 9 130315 -NCIT:C141227 Childhood Hodgkin Lymphoma by Ann Arbor Stage 7 130316 -NCIT:C8055 Ann Arbor Stage II Childhood Hodgkin Lymphoma 8 130317 -NCIT:C8056 Ann Arbor Stage I Childhood Hodgkin Lymphoma 8 130318 -NCIT:C8057 Ann Arbor Stage III Childhood Hodgkin Lymphoma 8 130319 -NCIT:C8058 Ann Arbor Stage IV Childhood Hodgkin Lymphoma 8 130320 -NCIT:C69142 Childhood Classic Hodgkin Lymphoma 7 130321 -NCIT:C7054 Childhood Lymphocyte-Rich Classic Hodgkin Lymphoma 8 130322 -NCIT:C8061 Childhood Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 130323 -NCIT:C8062 Childhood Nodular Sclerosis Classic Hodgkin Lymphoma 8 130324 -NCIT:C8063 Childhood Mixed Cellularity Classic Hodgkin Lymphoma 8 130325 -NCIT:C8059 Recurrent Childhood Hodgkin Lymphoma 7 130326 -NCIT:C8060 Childhood Nodular Lymphocyte Predominant Hodgkin Lymphoma 7 130327 -NCIT:C8836 Refractory Hodgkin Lymphoma 6 130328 -NCIT:C115458 Refractory Childhood Hodgkin Lymphoma 7 130329 -NCIT:C133736 Refractory Classic Hodgkin Lymphoma 7 130330 -NCIT:C142982 Refractory Lymphocyte-Rich Classic Hodgkin Lymphoma 8 130331 -NCIT:C8650 Refractory Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 130332 -NCIT:C8833 Refractory Mixed Cellularity Classic Hodgkin Lymphoma 8 130333 -NCIT:C8838 Refractory Nodular Sclerosis Classic Hodgkin Lymphoma 8 130334 -NCIT:C7260 Refractory Nodular Lymphocyte Predominant Hodgkin Lymphoma 7 130335 -NCIT:C9279 AIDS-Related Hodgkin Lymphoma 6 130336 -NCIT:C40970 Angiocentric Immunoproliferative Lesion 4 130337 -NCIT:C7930 Lymphomatoid Granulomatosis 5 130338 -NCIT:C123392 Childhood Lymphomatoid Granulomatosis 6 130339 -NCIT:C115204 Childhood Grade III Lymphomatoid Granulomatosis 7 130340 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 8 130341 -NCIT:C123393 Recurrent Childhood Lymphomatoid Granulomatosis 7 130342 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 8 130343 -NCIT:C186662 Central Nervous System Lymphomatoid Granulomatosis 6 130344 -NCIT:C45267 Cutaneous Lymphomatoid Granulomatosis 6 130345 -NCIT:C45607 Pulmonary Lymphomatoid Granulomatosis 6 130346 -NCIT:C7931 Grade I Lymphomatoid Granulomatosis 6 130347 -NCIT:C115430 Recurrent Grade I Lymphomatoid Granulomatosis 7 130348 -NCIT:C7932 Grade II Lymphomatoid Granulomatosis 6 130349 -NCIT:C115431 Recurrent Grade II Lymphomatoid Granulomatosis 7 130350 -NCIT:C7933 Grade III Lymphomatoid Granulomatosis 6 130351 -NCIT:C115150 Adult Grade III Lymphomatoid Granulomatosis 7 130352 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 8 130353 -NCIT:C115204 Childhood Grade III Lymphomatoid Granulomatosis 7 130354 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 8 130355 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 7 130356 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 8 130357 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 8 130358 -NCIT:C7934 Recurrent Lymphomatoid Granulomatosis 6 130359 -NCIT:C115430 Recurrent Grade I Lymphomatoid Granulomatosis 7 130360 -NCIT:C115431 Recurrent Grade II Lymphomatoid Granulomatosis 7 130361 -NCIT:C123393 Recurrent Childhood Lymphomatoid Granulomatosis 7 130362 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 8 130363 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 7 130364 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 8 130365 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 8 130366 -NCIT:C7055 Precursor Lymphoid Neoplasm 4 130367 -NCIT:C3167 Acute Lymphoblastic Leukemia 5 130368 -NCIT:C121973 Acute Lymphoblastic Leukemia by Gene Expression Profile 6 130369 -NCIT:C121975 DDIT4L Acute Lymphoblastic Leukemia 7 130370 -NCIT:C121978 Acute Lymphoblastic Leukemia by ROSE Cluster 7 130371 -NCIT:C121980 ROSE Cluster 1 8 130372 -NCIT:C121981 ROSE Cluster 2 8 130373 -NCIT:C121982 ROSE Cluster 3 8 130374 -NCIT:C121983 ROSE Cluster 4 8 130375 -NCIT:C121984 ROSE Cluster 5 8 130376 -NCIT:C121985 ROSE Cluster 6 8 130377 -NCIT:C121986 ROSE Cluster 7 8 130378 -NCIT:C121988 ROSE Cluster 8 8 130379 -NCIT:C136488 Refractory Acute Lymphoblastic Leukemia 6 130380 -NCIT:C122624 Refractory Childhood Acute Lymphoblastic Leukemia 7 130381 -NCIT:C126309 Refractory Adult Acute Lymphoblastic Leukemia 7 130382 -NCIT:C142812 Refractory B Acute Lymphoblastic Leukemia 7 130383 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 130384 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 130385 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 130386 -NCIT:C150510 Refractory T Acute Lymphoblastic Leukemia 7 130387 -NCIT:C142810 Recurrent Acute Lymphoblastic Leukemia 6 130388 -NCIT:C142811 Recurrent B Acute Lymphoblastic Leukemia 7 130389 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 130390 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 130391 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 130392 -NCIT:C150131 Recurrent T Acute Lymphoblastic Leukemia 7 130393 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 130394 -NCIT:C7784 Recurrent Childhood Acute Lymphoblastic Leukemia 7 130395 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 130396 -NCIT:C7883 Recurrent Adult Acute Lymphoblastic Leukemia 7 130397 -NCIT:C3168 Childhood Acute Lymphoblastic Leukemia 6 130398 -NCIT:C122614 Infant Acute Lymphoblastic Leukemia 7 130399 -NCIT:C122617 Infant Acute Lymphoblastic Leukemia with MLL Rearrangement 8 130400 -NCIT:C122621 Infant Acute Lymphoblastic Leukemia without MLL Gene Rearrangement 8 130401 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 8 130402 -NCIT:C122624 Refractory Childhood Acute Lymphoblastic Leukemia 7 130403 -NCIT:C7784 Recurrent Childhood Acute Lymphoblastic Leukemia 7 130404 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 130405 -NCIT:C7953 Childhood T Acute Lymphoblastic Leukemia 7 130406 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 8 130407 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 130408 -NCIT:C9140 Childhood B Acute Lymphoblastic Leukemia 7 130409 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 130410 -NCIT:C3183 T Acute Lymphoblastic Leukemia 6 130411 -NCIT:C130043 Early T Acute Lymphoblastic Leukemia 7 130412 -NCIT:C150131 Recurrent T Acute Lymphoblastic Leukemia 7 130413 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 130414 -NCIT:C150510 Refractory T Acute Lymphoblastic Leukemia 7 130415 -NCIT:C45739 Mediastinal T Acute Lymphoblastic Leukemia 7 130416 -NCIT:C7953 Childhood T Acute Lymphoblastic Leukemia 7 130417 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 8 130418 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 130419 -NCIT:C9142 Adult T Acute Lymphoblastic Leukemia 7 130420 -NCIT:C4967 Adult Acute Lymphoblastic Leukemia 6 130421 -NCIT:C126309 Refractory Adult Acute Lymphoblastic Leukemia 7 130422 -NCIT:C7883 Recurrent Adult Acute Lymphoblastic Leukemia 7 130423 -NCIT:C9142 Adult T Acute Lymphoblastic Leukemia 7 130424 -NCIT:C9143 Adult B Acute Lymphoblastic Leukemia 7 130425 -NCIT:C114819 Adult B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 130426 -NCIT:C7177 Aleukemic Acute Lymphoblastic Leukemia 6 130427 -NCIT:C5631 Aleukemic Acute Lymphoblastic Leukemia Cutis 7 130428 -NCIT:C8644 B Acute Lymphoblastic Leukemia 6 130429 -NCIT:C121974 B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 7 130430 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 130431 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 130432 -NCIT:C128629 B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 7 130433 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 130434 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 130435 -NCIT:C130040 B Acute Lymphoblastic Leukemia with Intrachromosomal Amplification of Chromosome 21 7 130436 -NCIT:C142811 Recurrent B Acute Lymphoblastic Leukemia 7 130437 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 130438 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 130439 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 130440 -NCIT:C142812 Refractory B Acute Lymphoblastic Leukemia 7 130441 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 130442 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 130443 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 130444 -NCIT:C162776 B Acute Lymphoblastic Leukemia with t(4;11)(q21;23) 7 130445 -NCIT:C190847 B Acute Lymphoblastic Leukemia Associated with Down Syndrome 7 130446 -NCIT:C190957 B Acute Lymphoblastic Leukemia with ETV6-RUNX1-Like Features 7 130447 -NCIT:C36312 B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 7 130448 -NCIT:C114819 Adult B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 130449 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 130450 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 130451 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 130452 -NCIT:C80342 B Acute Lymphoblastic Leukemia with t(v;11q23.3); MLL Rearranged 7 130453 -NCIT:C80343 B Acute Lymphoblastic Leukemia with t(12;21)(p13.2;q22.1); ETV6-RUNX1 7 130454 -NCIT:C80344 Hyperdiploid B Acute Lymphoblastic Leukemia 7 130455 -NCIT:C80345 Hypodiploid B Acute Lymphoblastic Leukemia 7 130456 -NCIT:C80346 B Acute Lymphoblastic Leukemia with t(5;14)(q31.1;q32.3); IL3-IGH 7 130457 -NCIT:C80347 B Acute Lymphoblastic Leukemia with t(1;19)(q23;p13.3); E2A-PBX1 (TCF3-PBX1) 7 130458 -NCIT:C9140 Childhood B Acute Lymphoblastic Leukemia 7 130459 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 130460 -NCIT:C9143 Adult B Acute Lymphoblastic Leukemia 7 130461 -NCIT:C114819 Adult B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 130462 -NCIT:C45238 Cutaneous Precursor Lymphoid Neoplasm 5 130463 -NCIT:C45241 Cutaneous B Lymphoblastic Leukemia/Lymphoma 6 130464 -NCIT:C45242 Cutaneous T Lymphoblastic Leukemia/Lymphoma 6 130465 -NCIT:C5631 Aleukemic Acute Lymphoblastic Leukemia Cutis 6 130466 -NCIT:C82217 Natural Killer Cell Lymphoblastic Leukemia/Lymphoma 5 130467 -NCIT:C8694 T Lymphoblastic Leukemia/Lymphoma 5 130468 -NCIT:C3183 T Acute Lymphoblastic Leukemia 6 130469 -NCIT:C130043 Early T Acute Lymphoblastic Leukemia 7 130470 -NCIT:C150131 Recurrent T Acute Lymphoblastic Leukemia 7 130471 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 130472 -NCIT:C150510 Refractory T Acute Lymphoblastic Leukemia 7 130473 -NCIT:C45739 Mediastinal T Acute Lymphoblastic Leukemia 7 130474 -NCIT:C7953 Childhood T Acute Lymphoblastic Leukemia 7 130475 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 8 130476 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 130477 -NCIT:C9142 Adult T Acute Lymphoblastic Leukemia 7 130478 -NCIT:C45242 Cutaneous T Lymphoblastic Leukemia/Lymphoma 6 130479 -NCIT:C45738 Mediastinal T Lymphoblastic Leukemia/Lymphoma 6 130480 -NCIT:C45739 Mediastinal T Acute Lymphoblastic Leukemia 7 130481 -NCIT:C45740 Mediastinal T Lymphoblastic Lymphoma 7 130482 -NCIT:C5640 Childhood T Lymphoblastic Leukemia/Lymphoma 6 130483 -NCIT:C7210 Childhood T Lymphoblastic Lymphoma 7 130484 -NCIT:C7953 Childhood T Acute Lymphoblastic Leukemia 7 130485 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 8 130486 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 130487 -NCIT:C6919 T Lymphoblastic Lymphoma 6 130488 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 7 130489 -NCIT:C45740 Mediastinal T Lymphoblastic Lymphoma 7 130490 -NCIT:C7210 Childhood T Lymphoblastic Lymphoma 7 130491 -NCIT:C7226 Adult T Lymphoblastic Lymphoma 7 130492 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 7 130493 -NCIT:C7311 Splenic T Lymphoblastic Lymphoma 7 130494 -NCIT:C8695 Recurrent T Lymphoblastic Leukemia/Lymphoma 6 130495 -NCIT:C150131 Recurrent T Acute Lymphoblastic Leukemia 7 130496 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 130497 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 7 130498 -NCIT:C8696 Refractory T Lymphoblastic Leukemia/Lymphoma 6 130499 -NCIT:C150510 Refractory T Acute Lymphoblastic Leukemia 7 130500 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 7 130501 -NCIT:C8697 Stage I T Lymphoblastic Leukemia/Lymphoma 6 130502 -NCIT:C8698 Stage II T Lymphoblastic Leukemia/Lymphoma 6 130503 -NCIT:C8699 Stage III T Lymphoblastic Leukemia/Lymphoma 6 130504 -NCIT:C8700 Stage IV T Lymphoblastic Leukemia/Lymphoma 6 130505 -NCIT:C8936 B Lymphoblastic Leukemia/Lymphoma 5 130506 -NCIT:C188453 Childhood B Lymphoblastic Leukemia/Lymphoma 6 130507 -NCIT:C7209 Childhood B Lymphoblastic Lymphoma 7 130508 -NCIT:C9140 Childhood B Acute Lymphoblastic Leukemia 7 130509 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 130510 -NCIT:C45241 Cutaneous B Lymphoblastic Leukemia/Lymphoma 6 130511 -NCIT:C80326 B Lymphoblastic Leukemia/Lymphoma, Not Otherwise Specified 6 130512 -NCIT:C80328 B Lymphoblastic Leukemia/Lymphoma with Recurrent Genetic Abnormalities 6 130513 -NCIT:C129787 B Lymphoblastic Leukemia/Lymphoma with BCR-ABL1-Like Features 7 130514 -NCIT:C121974 B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 130515 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 9 130516 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 9 130517 -NCIT:C130039 B-Lymphoblastic Leukemia/Lymphoma with Intrachromosomal Amplification of Chromosome 21 7 130518 -NCIT:C130040 B Acute Lymphoblastic Leukemia with Intrachromosomal Amplification of Chromosome 21 8 130519 -NCIT:C190956 B Lymphoblastic Leukemia/Lymphoma with ETV6-RUNX1-Like Features 7 130520 -NCIT:C190957 B Acute Lymphoblastic Leukemia with ETV6-RUNX1-Like Features 8 130521 -NCIT:C80331 B Lymphoblastic Leukemia/Lymphoma with t(9;22)(q34.1;q11.2); BCR-ABL1 7 130522 -NCIT:C36312 B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 130523 -NCIT:C114819 Adult B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 130524 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 130525 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 130526 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 130527 -NCIT:C80332 B Lymphoblastic Leukemia/Lymphoma with t(v;11q23.3); MLL Rearranged 7 130528 -NCIT:C80342 B Acute Lymphoblastic Leukemia with t(v;11q23.3); MLL Rearranged 8 130529 -NCIT:C80334 B Lymphoblastic Leukemia/Lymphoma with t(12;21)(p13.2;q22.1); ETV6-RUNX1 7 130530 -NCIT:C80343 B Acute Lymphoblastic Leukemia with t(12;21)(p13.2;q22.1); ETV6-RUNX1 8 130531 -NCIT:C80335 B Lymphoblastic Leukemia/Lymphoma with Hyperdiploidy 7 130532 -NCIT:C80344 Hyperdiploid B Acute Lymphoblastic Leukemia 8 130533 -NCIT:C80338 B Lymphoblastic Leukemia/Lymphoma with Hypodiploidy 7 130534 -NCIT:C80345 Hypodiploid B Acute Lymphoblastic Leukemia 8 130535 -NCIT:C80340 B Lymphoblastic Leukemia/Lymphoma with t(5;14)(q31.1;q32.3); IL3-IGH 7 130536 -NCIT:C80346 B Acute Lymphoblastic Leukemia with t(5;14)(q31.1;q32.3); IL3-IGH 8 130537 -NCIT:C80341 B Lymphoblastic Leukemia/Lymphoma with t(1;19)(q23;p13.3); E2A-PBX1 (TCF3-PBX1) 7 130538 -NCIT:C80347 B Acute Lymphoblastic Leukemia with t(1;19)(q23;p13.3); E2A-PBX1 (TCF3-PBX1) 8 130539 -NCIT:C8644 B Acute Lymphoblastic Leukemia 6 130540 -NCIT:C121974 B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 7 130541 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 130542 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 130543 -NCIT:C128629 B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 7 130544 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 130545 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 130546 -NCIT:C130040 B Acute Lymphoblastic Leukemia with Intrachromosomal Amplification of Chromosome 21 7 130547 -NCIT:C142811 Recurrent B Acute Lymphoblastic Leukemia 7 130548 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 130549 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 130550 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 130551 -NCIT:C142812 Refractory B Acute Lymphoblastic Leukemia 7 130552 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 130553 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 130554 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 130555 -NCIT:C162776 B Acute Lymphoblastic Leukemia with t(4;11)(q21;23) 7 130556 -NCIT:C190847 B Acute Lymphoblastic Leukemia Associated with Down Syndrome 7 130557 -NCIT:C190957 B Acute Lymphoblastic Leukemia with ETV6-RUNX1-Like Features 7 130558 -NCIT:C36312 B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 7 130559 -NCIT:C114819 Adult B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 130560 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 130561 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 130562 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 130563 -NCIT:C80342 B Acute Lymphoblastic Leukemia with t(v;11q23.3); MLL Rearranged 7 130564 -NCIT:C80343 B Acute Lymphoblastic Leukemia with t(12;21)(p13.2;q22.1); ETV6-RUNX1 7 130565 -NCIT:C80344 Hyperdiploid B Acute Lymphoblastic Leukemia 7 130566 -NCIT:C80345 Hypodiploid B Acute Lymphoblastic Leukemia 7 130567 -NCIT:C80346 B Acute Lymphoblastic Leukemia with t(5;14)(q31.1;q32.3); IL3-IGH 7 130568 -NCIT:C80347 B Acute Lymphoblastic Leukemia with t(1;19)(q23;p13.3); E2A-PBX1 (TCF3-PBX1) 7 130569 -NCIT:C9140 Childhood B Acute Lymphoblastic Leukemia 7 130570 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 130571 -NCIT:C9143 Adult B Acute Lymphoblastic Leukemia 7 130572 -NCIT:C114819 Adult B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 130573 -NCIT:C8868 B Lymphoblastic Lymphoma 6 130574 -NCIT:C141250 B Lymphoblastic Lymphoma by Ann Arbor Stage 7 130575 -NCIT:C8871 Ann Arbor Stage I B Lymphoblastic Lymphoma 8 130576 -NCIT:C8872 Ann Arbor Stage III B Lymphoblastic Lymphoma 8 130577 -NCIT:C8873 Ann Arbor Stage IV B Lymphoblastic Lymphoma 8 130578 -NCIT:C8937 Ann Arbor Stage II B Lymphoblastic Lymphoma 8 130579 -NCIT:C7209 Childhood B Lymphoblastic Lymphoma 7 130580 -NCIT:C7310 Splenic B Lymphoblastic Lymphoma 7 130581 -NCIT:C7338 Adult B Lymphoblastic Lymphoma 7 130582 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 7 130583 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 7 130584 -NCIT:C9360 Lymphoblastic Lymphoma 5 130585 -NCIT:C151978 Refractory Lymphoblastic Lymphoma 6 130586 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 7 130587 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 7 130588 -NCIT:C6919 T Lymphoblastic Lymphoma 6 130589 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 7 130590 -NCIT:C45740 Mediastinal T Lymphoblastic Lymphoma 7 130591 -NCIT:C7210 Childhood T Lymphoblastic Lymphoma 7 130592 -NCIT:C7226 Adult T Lymphoblastic Lymphoma 7 130593 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 7 130594 -NCIT:C7311 Splenic T Lymphoblastic Lymphoma 7 130595 -NCIT:C7312 Splenic Lymphoblastic Lymphoma 6 130596 -NCIT:C7310 Splenic B Lymphoblastic Lymphoma 7 130597 -NCIT:C7311 Splenic T Lymphoblastic Lymphoma 7 130598 -NCIT:C8298 AIDS-Related Lymphoblastic Lymphoma 6 130599 -NCIT:C8868 B Lymphoblastic Lymphoma 6 130600 -NCIT:C141250 B Lymphoblastic Lymphoma by Ann Arbor Stage 7 130601 -NCIT:C8871 Ann Arbor Stage I B Lymphoblastic Lymphoma 8 130602 -NCIT:C8872 Ann Arbor Stage III B Lymphoblastic Lymphoma 8 130603 -NCIT:C8873 Ann Arbor Stage IV B Lymphoblastic Lymphoma 8 130604 -NCIT:C8937 Ann Arbor Stage II B Lymphoblastic Lymphoma 8 130605 -NCIT:C7209 Childhood B Lymphoblastic Lymphoma 7 130606 -NCIT:C7310 Splenic B Lymphoblastic Lymphoma 7 130607 -NCIT:C7338 Adult B Lymphoblastic Lymphoma 7 130608 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 7 130609 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 7 130610 -NCIT:C9124 Childhood Lymphoblastic Lymphoma 6 130611 -NCIT:C7209 Childhood B Lymphoblastic Lymphoma 7 130612 -NCIT:C7210 Childhood T Lymphoblastic Lymphoma 7 130613 -NCIT:C9056 Ann Arbor Stage I Childhood Lymphoblastic Lymphoma 7 130614 -NCIT:C9057 Ann Arbor Stage II Childhood Lymphoblastic Lymphoma 7 130615 -NCIT:C9058 Ann Arbor Stage III Childhood Lymphoblastic Lymphoma 7 130616 -NCIT:C9059 Ann Arbor Stage IV Childhood Lymphoblastic Lymphoma 7 130617 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 7 130618 -NCIT:C9361 Adult Lymphoblastic Lymphoma 6 130619 -NCIT:C7226 Adult T Lymphoblastic Lymphoma 7 130620 -NCIT:C7338 Adult B Lymphoblastic Lymphoma 7 130621 -NCIT:C8079 Ann Arbor Stage I Adult Lymphoblastic Lymphoma 7 130622 -NCIT:C8125 Ann Arbor Stage II Adult Lymphoblastic Lymphoma 7 130623 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 8 130624 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 8 130625 -NCIT:C8138 Ann Arbor Stage III Adult Lymphoblastic Lymphoma 7 130626 -NCIT:C8151 Ann Arbor Stage IV Adult Lymphoblastic Lymphoma 7 130627 -NCIT:C8164 Recurrent Adult Lymphoblastic Lymphoma 7 130628 -NCIT:C7232 Neoplastic Post-Transplant Lymphoproliferative Disorder 4 130629 -NCIT:C188179 Refractory Neoplastic Post-Transplant Lymphoproliferative Disorder 5 130630 -NCIT:C157475 Refractory Monomorphic Post-Transplant Lymphoproliferative Disorder 6 130631 -NCIT:C157477 Refractory Polymorphic Post-Transplant Lymphoproliferative Disorder 6 130632 -NCIT:C188180 Recurrent Neoplastic Post-Transplant Lymphoproliferative Disorder 5 130633 -NCIT:C157474 Recurrent Monomorphic Post-Transplant Lymphoproliferative Disorder 6 130634 -NCIT:C157476 Recurrent Polymorphic Post-Transplant Lymphoproliferative Disorder 6 130635 -NCIT:C27695 EBV-Related Clonal Post-Transplant Lymphoproliferative Disorder 5 130636 -NCIT:C7239 Hodgkin-Like Post-Transplant Lymphoproliferative Disorder 6 130637 -NCIT:C7243 Classic Hodgkin Lymphoma Type Post-Transplant Lymphoproliferative Disorder 6 130638 -NCIT:C7183 Polymorphic Post-Transplant Lymphoproliferative Disorder 5 130639 -NCIT:C157476 Recurrent Polymorphic Post-Transplant Lymphoproliferative Disorder 6 130640 -NCIT:C157477 Refractory Polymorphic Post-Transplant Lymphoproliferative Disorder 6 130641 -NCIT:C7233 Monomorphic Post-Transplant Lymphoproliferative Disorder 5 130642 -NCIT:C157474 Recurrent Monomorphic Post-Transplant Lymphoproliferative Disorder 6 130643 -NCIT:C157475 Refractory Monomorphic Post-Transplant Lymphoproliferative Disorder 6 130644 -NCIT:C7237 Monomorphic B-Cell Post-Transplant Lymphoproliferative Disorder 6 130645 -NCIT:C7240 Plasma Cell Post-Transplant Lymphoproliferative Disorder 7 130646 -NCIT:C7241 Plasmacytoma-Like Post-Transplant Lymphoproliferative Disorder 8 130647 -NCIT:C7242 Plasma Cell Myeloma Post-Transplant Lymphoproliferative Disorder 8 130648 -NCIT:C7244 Burkitt Lymphoma Post-Transplant Lymphoproliferative Disorder 7 130649 -NCIT:C7245 Burkitt-Like Lymphoma Post-Transplant Lymphoproliferative Disorder 8 130650 -NCIT:C7246 Diffuse Large B-Cell Lymphoma Post-Transplant Lymphoproliferative Disorder 7 130651 -NCIT:C7247 Anaplastic Lymphoma Post-Transplant Lymphoproliferative Disorder 8 130652 -NCIT:C7248 Centroblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 8 130653 -NCIT:C7249 Immunoblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 8 130654 -NCIT:C7238 Monomorphic T/NK-Cell Post-Transplant Lymphoproliferative Disorder 6 130655 -NCIT:C7539 Lymphoid Leukemia 4 130656 -NCIT:C3163 Chronic Lymphocytic Leukemia 5 130657 -NCIT:C141206 Chronic Lymphocytic Leukemia- Modified Rai Staging System 6 130658 -NCIT:C7847 Stage 0 Chronic Lymphocytic Leukemia 7 130659 -NCIT:C7874 Stage I Chronic Lymphocytic Leukemia 7 130660 -NCIT:C7875 Stage II Chronic Lymphocytic Leukemia 7 130661 -NCIT:C7876 Stage III Chronic Lymphocytic Leukemia 7 130662 -NCIT:C8646 Stage IV Chronic Lymphocytic Leukemia 7 130663 -NCIT:C141208 Chronic Lymphocytic Leukemia- Binet Staging System 6 130664 -NCIT:C141209 Stage A Chronic Lymphocytic Leukemia 7 130665 -NCIT:C141210 Stage B Chronic Lymphocytic Leukemia 7 130666 -NCIT:C141211 Stage C Chronic Lymphocytic Leukemia 7 130667 -NCIT:C157624 Transformed Chronic Lymphocytic Leukemia to Diffuse Large B-Cell Lymphoma 6 130668 -NCIT:C158151 Recurrent Transformed Chronic Lymphocytic Leukemia 7 130669 -NCIT:C158152 Refractory Transformed Chronic Lymphocytic Leukemia 7 130670 -NCIT:C36272 Chronic Lymphocytic Leukemia with Plasmacytoid Differentiation 6 130671 -NCIT:C37202 Chronic Lymphocytic Leukemia with Immunoglobulin Heavy Chain Variable-Region Gene Somatic Hypermutation 6 130672 -NCIT:C37205 Chronic Lymphocytic Leukemia with Unmutated Immunoglobulin Heavy Chain Variable-Region Gene 6 130673 -NCIT:C45264 Cutaneous Chronic Lymphocytic Leukemia 6 130674 -NCIT:C7176 Aleukemic Chronic Lymphocytic Leukemia 6 130675 -NCIT:C7300 Splenic Manifestation of Chronic Lymphocytic Leukemia 6 130676 -NCIT:C7886 Refractory Chronic Lymphocytic Leukemia 6 130677 -NCIT:C158152 Refractory Transformed Chronic Lymphocytic Leukemia 7 130678 -NCIT:C8645 Recurrent Chronic Lymphocytic Leukemia 6 130679 -NCIT:C158151 Recurrent Transformed Chronic Lymphocytic Leukemia 7 130680 -NCIT:C3167 Acute Lymphoblastic Leukemia 5 130681 -NCIT:C121973 Acute Lymphoblastic Leukemia by Gene Expression Profile 6 130682 -NCIT:C121975 DDIT4L Acute Lymphoblastic Leukemia 7 130683 -NCIT:C121978 Acute Lymphoblastic Leukemia by ROSE Cluster 7 130684 -NCIT:C121980 ROSE Cluster 1 8 130685 -NCIT:C121981 ROSE Cluster 2 8 130686 -NCIT:C121982 ROSE Cluster 3 8 130687 -NCIT:C121983 ROSE Cluster 4 8 130688 -NCIT:C121984 ROSE Cluster 5 8 130689 -NCIT:C121985 ROSE Cluster 6 8 130690 -NCIT:C121986 ROSE Cluster 7 8 130691 -NCIT:C121988 ROSE Cluster 8 8 130692 -NCIT:C136488 Refractory Acute Lymphoblastic Leukemia 6 130693 -NCIT:C122624 Refractory Childhood Acute Lymphoblastic Leukemia 7 130694 -NCIT:C126309 Refractory Adult Acute Lymphoblastic Leukemia 7 130695 -NCIT:C142812 Refractory B Acute Lymphoblastic Leukemia 7 130696 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 130697 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 130698 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 130699 -NCIT:C150510 Refractory T Acute Lymphoblastic Leukemia 7 130700 -NCIT:C142810 Recurrent Acute Lymphoblastic Leukemia 6 130701 -NCIT:C142811 Recurrent B Acute Lymphoblastic Leukemia 7 130702 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 130703 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 130704 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 130705 -NCIT:C150131 Recurrent T Acute Lymphoblastic Leukemia 7 130706 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 130707 -NCIT:C7784 Recurrent Childhood Acute Lymphoblastic Leukemia 7 130708 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 130709 -NCIT:C7883 Recurrent Adult Acute Lymphoblastic Leukemia 7 130710 -NCIT:C3168 Childhood Acute Lymphoblastic Leukemia 6 130711 -NCIT:C122614 Infant Acute Lymphoblastic Leukemia 7 130712 -NCIT:C122617 Infant Acute Lymphoblastic Leukemia with MLL Rearrangement 8 130713 -NCIT:C122621 Infant Acute Lymphoblastic Leukemia without MLL Gene Rearrangement 8 130714 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 8 130715 -NCIT:C122624 Refractory Childhood Acute Lymphoblastic Leukemia 7 130716 -NCIT:C7784 Recurrent Childhood Acute Lymphoblastic Leukemia 7 130717 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 130718 -NCIT:C7953 Childhood T Acute Lymphoblastic Leukemia 7 130719 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 8 130720 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 130721 -NCIT:C9140 Childhood B Acute Lymphoblastic Leukemia 7 130722 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 130723 -NCIT:C3183 T Acute Lymphoblastic Leukemia 6 130724 -NCIT:C130043 Early T Acute Lymphoblastic Leukemia 7 130725 -NCIT:C150131 Recurrent T Acute Lymphoblastic Leukemia 7 130726 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 130727 -NCIT:C150510 Refractory T Acute Lymphoblastic Leukemia 7 130728 -NCIT:C45739 Mediastinal T Acute Lymphoblastic Leukemia 7 130729 -NCIT:C7953 Childhood T Acute Lymphoblastic Leukemia 7 130730 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 8 130731 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 130732 -NCIT:C9142 Adult T Acute Lymphoblastic Leukemia 7 130733 -NCIT:C4967 Adult Acute Lymphoblastic Leukemia 6 130734 -NCIT:C126309 Refractory Adult Acute Lymphoblastic Leukemia 7 130735 -NCIT:C7883 Recurrent Adult Acute Lymphoblastic Leukemia 7 130736 -NCIT:C9142 Adult T Acute Lymphoblastic Leukemia 7 130737 -NCIT:C9143 Adult B Acute Lymphoblastic Leukemia 7 130738 -NCIT:C114819 Adult B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 130739 -NCIT:C7177 Aleukemic Acute Lymphoblastic Leukemia 6 130740 -NCIT:C5631 Aleukemic Acute Lymphoblastic Leukemia Cutis 7 130741 -NCIT:C8644 B Acute Lymphoblastic Leukemia 6 130742 -NCIT:C121974 B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 7 130743 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 130744 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 130745 -NCIT:C128629 B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 7 130746 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 130747 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 130748 -NCIT:C130040 B Acute Lymphoblastic Leukemia with Intrachromosomal Amplification of Chromosome 21 7 130749 -NCIT:C142811 Recurrent B Acute Lymphoblastic Leukemia 7 130750 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 130751 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 130752 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 130753 -NCIT:C142812 Refractory B Acute Lymphoblastic Leukemia 7 130754 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 130755 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 130756 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 130757 -NCIT:C162776 B Acute Lymphoblastic Leukemia with t(4;11)(q21;23) 7 130758 -NCIT:C190847 B Acute Lymphoblastic Leukemia Associated with Down Syndrome 7 130759 -NCIT:C190957 B Acute Lymphoblastic Leukemia with ETV6-RUNX1-Like Features 7 130760 -NCIT:C36312 B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 7 130761 -NCIT:C114819 Adult B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 130762 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 130763 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 130764 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 130765 -NCIT:C80342 B Acute Lymphoblastic Leukemia with t(v;11q23.3); MLL Rearranged 7 130766 -NCIT:C80343 B Acute Lymphoblastic Leukemia with t(12;21)(p13.2;q22.1); ETV6-RUNX1 7 130767 -NCIT:C80344 Hyperdiploid B Acute Lymphoblastic Leukemia 7 130768 -NCIT:C80345 Hypodiploid B Acute Lymphoblastic Leukemia 7 130769 -NCIT:C80346 B Acute Lymphoblastic Leukemia with t(5;14)(q31.1;q32.3); IL3-IGH 7 130770 -NCIT:C80347 B Acute Lymphoblastic Leukemia with t(1;19)(q23;p13.3); E2A-PBX1 (TCF3-PBX1) 7 130771 -NCIT:C9140 Childhood B Acute Lymphoblastic Leukemia 7 130772 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 130773 -NCIT:C9143 Adult B Acute Lymphoblastic Leukemia 7 130774 -NCIT:C114819 Adult B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 130775 -NCIT:C3180 Plasma Cell Leukemia 5 130776 -NCIT:C191432 Secondary Plasma Cell Leukemia 6 130777 -NCIT:C3181 Prolymphocytic Leukemia 5 130778 -NCIT:C4752 T-Cell Prolymphocytic Leukemia 6 130779 -NCIT:C150133 Recurrent T-Cell Prolymphocytic Leukemia 7 130780 -NCIT:C157691 Refractory T-Cell Prolymphocytic Leukemia 7 130781 -NCIT:C36270 T-Cell Prolymphocytic Leukemia, Small Cell Variant 7 130782 -NCIT:C36271 T-Cell Prolymphocytic Leukemia, Cerebriform Cell Variant 7 130783 -NCIT:C7298 Splenic Manifestation of T-Cell Prolymphocytic Leukemia 7 130784 -NCIT:C4753 B-Cell Prolymphocytic Leukemia 6 130785 -NCIT:C157697 Refractory B-Cell Prolymphocytic Leukemia 7 130786 -NCIT:C158081 Recurrent B-Cell Prolymphocytic Leukemia 7 130787 -NCIT:C7299 Splenic Manifestation of B-Cell Prolymphocytic Leukemia 7 130788 -NCIT:C7297 Splenic Manifestation of Prolymphocytic Leukemia 6 130789 -NCIT:C7298 Splenic Manifestation of T-Cell Prolymphocytic Leukemia 7 130790 -NCIT:C7299 Splenic Manifestation of B-Cell Prolymphocytic Leukemia 7 130791 -NCIT:C4343 Aleukemic Lymphoid Leukemia 5 130792 -NCIT:C7176 Aleukemic Chronic Lymphocytic Leukemia 6 130793 -NCIT:C7177 Aleukemic Acute Lymphoblastic Leukemia 6 130794 -NCIT:C5631 Aleukemic Acute Lymphoblastic Leukemia Cutis 7 130795 -NCIT:C4664 T-Cell Large Granular Lymphocyte Leukemia 5 130796 -NCIT:C180985 Recurrent T-Cell Large Granular Lymphocyte Leukemia 6 130797 -NCIT:C180986 Refractory T-Cell Large Granular Lymphocyte Leukemia 6 130798 -NCIT:C39584 T-Cell Large Granular Lymphocyte Leukemia, Common Variant 6 130799 -NCIT:C39586 T-Cell Large Granular Lymphocyte Leukemia Expressing the T-Cell Receptor Gamma-Delta 6 130800 -NCIT:C7302 Splenic Manifestation of T-Cell Large Granular Lymphocyte Leukemia 6 130801 -NCIT:C7400 Burkitt Leukemia 5 130802 -NCIT:C151976 Recurrent Burkitt Leukemia 6 130803 -NCIT:C151977 Refractory Burkitt Leukemia 6 130804 -NCIT:C7952 Childhood Burkitt Leukemia 6 130805 -NCIT:C7954 Adult Burkitt Leukemia 6 130806 -NCIT:C7401 Hairy Cell Leukemia Variant 5 130807 -NCIT:C171064 Refractory Hairy Cell Leukemia Variant 6 130808 -NCIT:C171065 Recurrent Hairy Cell Leukemia Variant 6 130809 -NCIT:C7402 Hairy Cell Leukemia 5 130810 -NCIT:C142882 Recurrent Hairy Cell Leukemia 6 130811 -NCIT:C7301 Splenic Manifestation of Hairy Cell Leukemia 6 130812 -NCIT:C8029 Progressive Hairy Cell Leukemia Initial Treatment 6 130813 -NCIT:C8030 Refractory Hairy Cell Leukemia 6 130814 -NCIT:C8594 Leukemic Phase of Lymphoma 5 130815 -NCIT:C138192 Leukemic Nonnodal Mantle Cell Lymphoma 6 130816 -NCIT:C3366 Sezary Syndrome 6 130817 -NCIT:C176999 Recurrent Sezary Syndrome 7 130818 -NCIT:C177000 Refractory Sezary Syndrome 7 130819 -NCIT:C36265 Acute Adult T-Cell Leukemia/Lymphoma 6 130820 -NCIT:C7178 Smoldering Adult T-Cell Leukemia/Lymphoma 6 130821 -NCIT:C7179 Chronic Adult T-Cell Leukemia/Lymphoma 6 130822 -NCIT:C8647 Aggressive NK-Cell Leukemia 5 130823 -NCIT:C157692 Recurrent Aggressive NK-Cell Leukemia 6 130824 -NCIT:C157693 Refractory Aggressive NK-Cell Leukemia 6 130825 -NCIT:C84270 Myeloid/Lymphoid Neoplasms with Eosinophilia and Rearrangement of PDGFRA, PDGFRB, or FGFR1, or with PCM1-JAK2 3 130826 -NCIT:C129853 Myeloid/Lymphoid Neoplasms with PCM1-JAK2 4 130827 -NCIT:C84275 Myeloid/Lymphoid Neoplasms with PDGFRA Rearrangement 4 130828 -NCIT:C126351 Chronic Eosinophilic Leukemia with FIP1L1-PDGFRA 5 130829 -NCIT:C84276 Myeloid/Lymphoid Neoplasms with PDGFRB Rearrangement 4 130830 -NCIT:C129852 Chronic Myelomonocytic Leukemia with Eosinophilia Associated with t(5;12)(q31;p12) 5 130831 -NCIT:C84277 Myeloid/Lymphoid Neoplasms with FGFR1 Rearrangement 4 130832 -NCIT:C9290 Myeloid Neoplasm 3 130833 -NCIT:C130038 Myeloid Neoplasms with Germline Predisposition 4 130834 -NCIT:C151897 Myeloid Neoplasms with Germline Predisposition without a Preexisting Disorder or Organ Dysfunction 5 130835 -NCIT:C151898 Acute Myeloid Leukemia with Germline CEBPA Mutation 6 130836 -NCIT:C151901 Myeloid Neoplasms with Germline DDX41 Mutation 6 130837 -NCIT:C151902 Myeloid Neoplasms with Germline Predisposition and Preexisting Platelet Disorders 5 130838 -NCIT:C151903 Myeloid Neoplasms with Germline RUNX1 Mutation 6 130839 -NCIT:C151908 Myeloid Neoplasms with Germline ANKRD26 Mutation 6 130840 -NCIT:C151911 Myeloid Neoplasms with Germline ETV6 Mutation 6 130841 -NCIT:C151910 Myeloid Neoplasms with Germline Predisposition Associated with Other Organ Dysfunction 5 130842 -NCIT:C151912 Myeloid Neoplasms with Germline GATA2 Mutation 6 130843 -NCIT:C151921 Myeloid Neoplasms with Germline Predisposition Associated with Telomerase Biology Disorders 6 130844 -NCIT:C151922 Myeloid Neoplasms with Germline Predisposition Associated with Inherited Bone Marrow Failure Syndromes 6 130845 -NCIT:C185293 Myeloid Neoplasms with Germline SAMD9 Mutation 6 130846 -NCIT:C168746 SAMD9-Associated Hereditary Myelodysplastic Syndrome 7 130847 -NCIT:C185294 Myeloid Neoplasms with Germline SAMD9L Mutation 6 130848 -NCIT:C168747 SAMD9L-Associated Hereditary Myelodysplastic Syndrome 7 130849 -NCIT:C172132 Recurrent Myeloid Neoplasm 4 130850 -NCIT:C148363 Recurrent Myelodysplastic Syndrome 5 130851 -NCIT:C148427 Recurrent Acute Myeloid Leukemia 5 130852 -NCIT:C125715 Recurrent Acute Myeloid Leukemia with Myelodysplasia-Related Changes 6 130853 -NCIT:C156720 Recurrent Acute Myeloid Leukemia with Multilineage Dysplasia 7 130854 -NCIT:C156716 Recurrent Acute Myeloid Leukemia Not Otherwise Specified 6 130855 -NCIT:C156717 Recurrent Acute Myelomonocytic Leukemia 7 130856 -NCIT:C156722 Recurrent Acute Monoblastic and Monocytic Leukemia 7 130857 -NCIT:C156723 Recurrent Acute Erythroid Leukemia 7 130858 -NCIT:C156731 Recurrent Acute Megakaryoblastic Leukemia 7 130859 -NCIT:C156718 Recurrent Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 6 130860 -NCIT:C156719 Recurrent Acute Myeloid Leukemia with t (9;11) (p21.3; q23.3); MLLT3-MLL 7 130861 -NCIT:C169107 Recurrent Acute Promyelocytic Leukemia with PML-RARA 7 130862 -NCIT:C7882 Recurrent Adult Acute Myeloid Leukemia 6 130863 -NCIT:C9068 Recurrent Childhood Acute Myeloid Leukemia 6 130864 -NCIT:C156103 Recurrent Blastic Plasmacytoid Dendritic Cell Neoplasm 5 130865 -NCIT:C166142 Recurrent Myeloproliferative Neoplasm 5 130866 -NCIT:C179203 Recurrent Primary Myelofibrosis 6 130867 -NCIT:C190786 Recurrent Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 130868 -NCIT:C9070 Recurrent Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 130869 -NCIT:C166143 Recurrent Myelodysplastic/Myeloproliferative Neoplasm 5 130870 -NCIT:C150048 Recurrent Chronic Myelomonocytic Leukemia 6 130871 -NCIT:C170817 Recurrent Malignant Mastocytosis 5 130872 -NCIT:C172281 Refractory Myeloid Neoplasm 4 130873 -NCIT:C134319 Refractory Acute Myeloid Leukemia 5 130874 -NCIT:C174486 Refractory Acute Myeloid Leukemia Not Otherwise Specified 6 130875 -NCIT:C174511 Refractory Acute Monoblastic and Monocytic Leukemia 7 130876 -NCIT:C174512 Refractory Acute Myelomonocytic Leukemia 7 130877 -NCIT:C180897 Refractory Acute Myeloid Leukemia with Myelodysplasia-Related Changes 6 130878 -NCIT:C187449 Refractory Childhood Acute Myeloid Leukemia 6 130879 -NCIT:C148362 Refractory Myelodysplastic Syndrome 5 130880 -NCIT:C156104 Refractory Blastic Plasmacytoid Dendritic Cell Neoplasm 5 130881 -NCIT:C170816 Refractory Malignant Mastocytosis 5 130882 -NCIT:C170911 Refractory Myeloproliferative Neoplasm 5 130883 -NCIT:C171340 Refractory Primary Myelofibrosis 6 130884 -NCIT:C190787 Refractory Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 130885 -NCIT:C7885 Refractory Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 130886 -NCIT:C171339 Refractory Myelodysplastic/Myeloproliferative Neoplasm 5 130887 -NCIT:C150049 Refractory Chronic Myelomonocytic Leukemia 6 130888 -NCIT:C27262 Myelodysplastic/Myeloproliferative Neoplasm 4 130889 -NCIT:C166143 Recurrent Myelodysplastic/Myeloproliferative Neoplasm 5 130890 -NCIT:C150048 Recurrent Chronic Myelomonocytic Leukemia 6 130891 -NCIT:C171339 Refractory Myelodysplastic/Myeloproliferative Neoplasm 5 130892 -NCIT:C150049 Refractory Chronic Myelomonocytic Leukemia 6 130893 -NCIT:C27780 Myelodysplastic/Myeloproliferative Neoplasm, Unclassifiable 5 130894 -NCIT:C3178 Chronic Myelomonocytic Leukemia 5 130895 -NCIT:C130035 Chronic Myelomonocytic Leukemia-0 6 130896 -NCIT:C150048 Recurrent Chronic Myelomonocytic Leukemia 6 130897 -NCIT:C150049 Refractory Chronic Myelomonocytic Leukemia 6 130898 -NCIT:C36060 Chronic Myelomonocytic Leukemia with Eosinophilia 6 130899 -NCIT:C36061 Chronic Myelomonocytic Leukemia-1 6 130900 -NCIT:C36062 Chronic Myelomonocytic Leukemia-2 6 130901 -NCIT:C3519 Atypical Chronic Myeloid Leukemia, BCR-ABL1 Negative 5 130902 -NCIT:C82397 Therapy-Related Myelodysplastic/Myeloproliferative Neoplasm 5 130903 -NCIT:C82616 Myelodysplastic/Myeloproliferative Neoplasm with Ring Sideroblasts and Thrombocytosis 5 130904 -NCIT:C9233 Juvenile Myelomonocytic Leukemia 5 130905 -NCIT:C27912 Therapy-Related Myeloid Neoplasm 4 130906 -NCIT:C27722 Therapy-Related Myelodysplastic Syndrome 5 130907 -NCIT:C7642 Epipodophyllotoxin-Related Myelodysplastic Syndrome 6 130908 -NCIT:C7643 Alkylating Agent-Related Myelodysplastic Syndrome 6 130909 -NCIT:C27913 Alkylating Agent-Related Acute Myeloid Leukemia and Myelodysplastic Syndrome 5 130910 -NCIT:C27754 Alkylating Agent-Related Acute Myeloid Leukemia 6 130911 -NCIT:C7643 Alkylating Agent-Related Myelodysplastic Syndrome 6 130912 -NCIT:C82397 Therapy-Related Myelodysplastic/Myeloproliferative Neoplasm 5 130913 -NCIT:C8252 Therapy-Related Acute Myeloid Leukemia 5 130914 -NCIT:C186730 Therapy-Related Cytogenetically Normal Acute Myeloid Leukemia 6 130915 -NCIT:C27754 Alkylating Agent-Related Acute Myeloid Leukemia 6 130916 -NCIT:C27755 Topoisomerase II Inhibitor-Related Acute Myeloid Leukemia 6 130917 -NCIT:C3172 Myeloid Leukemia 4 130918 -NCIT:C3171 Acute Myeloid Leukemia 5 130919 -NCIT:C122687 Cytogenetically Normal Acute Myeloid Leukemia 6 130920 -NCIT:C186730 Therapy-Related Cytogenetically Normal Acute Myeloid Leukemia 7 130921 -NCIT:C134319 Refractory Acute Myeloid Leukemia 6 130922 -NCIT:C174486 Refractory Acute Myeloid Leukemia Not Otherwise Specified 7 130923 -NCIT:C174511 Refractory Acute Monoblastic and Monocytic Leukemia 8 130924 -NCIT:C174512 Refractory Acute Myelomonocytic Leukemia 8 130925 -NCIT:C180897 Refractory Acute Myeloid Leukemia with Myelodysplasia-Related Changes 7 130926 -NCIT:C187449 Refractory Childhood Acute Myeloid Leukemia 7 130927 -NCIT:C148427 Recurrent Acute Myeloid Leukemia 6 130928 -NCIT:C125715 Recurrent Acute Myeloid Leukemia with Myelodysplasia-Related Changes 7 130929 -NCIT:C156720 Recurrent Acute Myeloid Leukemia with Multilineage Dysplasia 8 130930 -NCIT:C156716 Recurrent Acute Myeloid Leukemia Not Otherwise Specified 7 130931 -NCIT:C156717 Recurrent Acute Myelomonocytic Leukemia 8 130932 -NCIT:C156722 Recurrent Acute Monoblastic and Monocytic Leukemia 8 130933 -NCIT:C156723 Recurrent Acute Erythroid Leukemia 8 130934 -NCIT:C156731 Recurrent Acute Megakaryoblastic Leukemia 8 130935 -NCIT:C156718 Recurrent Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 7 130936 -NCIT:C156719 Recurrent Acute Myeloid Leukemia with t (9;11) (p21.3; q23.3); MLLT3-MLL 8 130937 -NCIT:C169107 Recurrent Acute Promyelocytic Leukemia with PML-RARA 8 130938 -NCIT:C7882 Recurrent Adult Acute Myeloid Leukemia 7 130939 -NCIT:C9068 Recurrent Childhood Acute Myeloid Leukemia 7 130940 -NCIT:C25765 Secondary Acute Myeloid Leukemia 6 130941 -NCIT:C172129 Acute Myeloid Leukemia Arising from Previous Myeloproliferative Neoplasm 7 130942 -NCIT:C172130 Acute Myeloid Leukemia Arising from Previous Myelodysplastic/Myeloproliferative Neoplasm 7 130943 -NCIT:C27931 Benzene-Related Acute Myeloid Leukemia 7 130944 -NCIT:C4037 Acute Myeloid Leukemia Arising from Previous Myelodysplastic Syndrome 7 130945 -NCIT:C8252 Therapy-Related Acute Myeloid Leukemia 7 130946 -NCIT:C186730 Therapy-Related Cytogenetically Normal Acute Myeloid Leukemia 8 130947 -NCIT:C27754 Alkylating Agent-Related Acute Myeloid Leukemia 8 130948 -NCIT:C27755 Topoisomerase II Inhibitor-Related Acute Myeloid Leukemia 8 130949 -NCIT:C27753 Acute Myeloid Leukemia Not Otherwise Specified 6 130950 -NCIT:C122625 Childhood Acute Myeloid Leukemia Not Otherwise Specified 7 130951 -NCIT:C7940 Childhood Acute Monoblastic and Monocytic Leukemia 8 130952 -NCIT:C9162 Childhood Acute Monoblastic Leukemia 9 130953 -NCIT:C9163 Childhood Acute Monocytic Leukemia 9 130954 -NCIT:C7970 Childhood Acute Myelomonocytic Leukemia 8 130955 -NCIT:C7971 Childhood Acute Basophilic Leukemia 8 130956 -NCIT:C7972 Childhood Acute Megakaryoblastic Leukemia 8 130957 -NCIT:C8304 Childhood Acute Myeloid Leukemia with Minimal Differentiation 8 130958 -NCIT:C9158 Childhood Acute Myeloid Leukemia without Maturation 8 130959 -NCIT:C9164 Childhood Acute Erythroid Leukemia 8 130960 -NCIT:C9381 Childhood Acute Myeloid Leukemia with Maturation 8 130961 -NCIT:C156716 Recurrent Acute Myeloid Leukemia Not Otherwise Specified 7 130962 -NCIT:C156717 Recurrent Acute Myelomonocytic Leukemia 8 130963 -NCIT:C156722 Recurrent Acute Monoblastic and Monocytic Leukemia 8 130964 -NCIT:C156723 Recurrent Acute Erythroid Leukemia 8 130965 -NCIT:C156731 Recurrent Acute Megakaryoblastic Leukemia 8 130966 -NCIT:C174486 Refractory Acute Myeloid Leukemia Not Otherwise Specified 7 130967 -NCIT:C174511 Refractory Acute Monoblastic and Monocytic Leukemia 8 130968 -NCIT:C174512 Refractory Acute Myelomonocytic Leukemia 8 130969 -NCIT:C3164 Acute Basophilic Leukemia 7 130970 -NCIT:C7964 Adult Acute Basophilic Leukemia 8 130971 -NCIT:C7971 Childhood Acute Basophilic Leukemia 8 130972 -NCIT:C3170 Acute Megakaryoblastic Leukemia 7 130973 -NCIT:C156731 Recurrent Acute Megakaryoblastic Leukemia 8 130974 -NCIT:C7965 Adult Acute Megakaryoblastic Leukemia 8 130975 -NCIT:C7972 Childhood Acute Megakaryoblastic Leukemia 8 130976 -NCIT:C3249 Acute Myeloid Leukemia without Maturation 7 130977 -NCIT:C9158 Childhood Acute Myeloid Leukemia without Maturation 8 130978 -NCIT:C9380 Adult Acute Myeloid Leukemia without Maturation 8 130979 -NCIT:C3250 Acute Myeloid Leukemia with Maturation 7 130980 -NCIT:C7961 Adult Acute Myeloid Leukemia with Maturation 8 130981 -NCIT:C9381 Childhood Acute Myeloid Leukemia with Maturation 8 130982 -NCIT:C4344 Acute Panmyelosis with Myelofibrosis 7 130983 -NCIT:C7318 Acute Monoblastic and Monocytic Leukemia 7 130984 -NCIT:C156722 Recurrent Acute Monoblastic and Monocytic Leukemia 8 130985 -NCIT:C174511 Refractory Acute Monoblastic and Monocytic Leukemia 8 130986 -NCIT:C4861 Acute Monocytic Leukemia 8 130987 -NCIT:C5630 Aleukemic Monocytic Leukemia Cutis 9 130988 -NCIT:C8263 Adult Acute Monocytic Leukemia 9 130989 -NCIT:C9163 Childhood Acute Monocytic Leukemia 9 130990 -NCIT:C7171 Acute Monoblastic Leukemia 8 130991 -NCIT:C9156 Adult Acute Monoblastic Leukemia 9 130992 -NCIT:C9162 Childhood Acute Monoblastic Leukemia 9 130993 -NCIT:C7319 Adult Acute Monoblastic and Monocytic Leukemia 8 130994 -NCIT:C8263 Adult Acute Monocytic Leukemia 9 130995 -NCIT:C9156 Adult Acute Monoblastic Leukemia 9 130996 -NCIT:C7940 Childhood Acute Monoblastic and Monocytic Leukemia 8 130997 -NCIT:C9162 Childhood Acute Monoblastic Leukemia 9 130998 -NCIT:C9163 Childhood Acute Monocytic Leukemia 9 130999 -NCIT:C7463 Acute Myelomonocytic Leukemia 7 131000 -NCIT:C156717 Recurrent Acute Myelomonocytic Leukemia 8 131001 -NCIT:C174512 Refractory Acute Myelomonocytic Leukemia 8 131002 -NCIT:C42779 Acute Myelomonocytic Leukemia without Abnormal Eosinophils 8 131003 -NCIT:C7962 Adult Acute Myelomonocytic Leukemia 8 131004 -NCIT:C7970 Childhood Acute Myelomonocytic Leukemia 8 131005 -NCIT:C9020 Acute Myelomonocytic Leukemia with Abnormal Eosinophils 8 131006 -NCIT:C8460 Acute Myeloid Leukemia with Minimal Differentiation 7 131007 -NCIT:C8303 Adult Acute Myeloid Leukemia with Minimal Differentiation 8 131008 -NCIT:C8304 Childhood Acute Myeloid Leukemia with Minimal Differentiation 8 131009 -NCIT:C8923 Acute Erythroid Leukemia 7 131010 -NCIT:C156723 Recurrent Acute Erythroid Leukemia 8 131011 -NCIT:C7152 Erythroleukemia 8 131012 -NCIT:C68694 Adult Erythroleukemia 9 131013 -NCIT:C7467 Pure Erythroid Leukemia 8 131014 -NCIT:C68693 Adult Pure Erythroid Leukemia 9 131015 -NCIT:C9153 Adult Acute Erythroid Leukemia 8 131016 -NCIT:C68693 Adult Pure Erythroid Leukemia 9 131017 -NCIT:C68694 Adult Erythroleukemia 9 131018 -NCIT:C9164 Childhood Acute Erythroid Leukemia 8 131019 -NCIT:C7175 Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 6 131020 -NCIT:C122688 Core Binding Factor Acute Myeloid Leukemia 7 131021 -NCIT:C129785 Acute Myeloid Leukemia with BCR-ABL1 7 131022 -NCIT:C156718 Recurrent Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 7 131023 -NCIT:C156719 Recurrent Acute Myeloid Leukemia with t (9;11) (p21.3; q23.3); MLLT3-MLL 8 131024 -NCIT:C169107 Recurrent Acute Promyelocytic Leukemia with PML-RARA 8 131025 -NCIT:C162775 Acute Myeloid Leukemia with Trisomy 8 7 131026 -NCIT:C174129 Acute Myeloid Leukemia with MLL Rearrangement 7 131027 -NCIT:C132101 Acute Myeloid Leukemia with t(10;11)(p12;q23); MLLT10-MLL 8 131028 -NCIT:C132105 Acute Myeloid Leukemia with t(6;11)(q27;q23); MLLT4-MLL 8 131029 -NCIT:C6924 Acute Myeloid Leukemia with Variant MLL Translocations 8 131030 -NCIT:C82403 Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 8 131031 -NCIT:C156719 Recurrent Acute Myeloid Leukemia with t (9;11) (p21.3; q23.3); MLLT3-MLL 9 131032 -NCIT:C188451 Childhood Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 9 131033 -NCIT:C68696 Adult Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 9 131034 -NCIT:C3182 Acute Promyelocytic Leukemia with PML-RARA 7 131035 -NCIT:C169107 Recurrent Acute Promyelocytic Leukemia with PML-RARA 8 131036 -NCIT:C27756 Typical Acute Promyelocytic Leukemia 8 131037 -NCIT:C27757 Microgranular Acute Promyelocytic Leukemia 8 131038 -NCIT:C7968 Childhood Acute Promyelocytic Leukemia with PML-RARA 8 131039 -NCIT:C9155 Adult Acute Promyelocytic Leukemia with PML-RARA 8 131040 -NCIT:C36055 Acute Myeloid Leukemia with a Variant RARA Translocation 7 131041 -NCIT:C36056 Acute Myeloid Leukemia with t(11;17)(q23;q21) 8 131042 -NCIT:C36057 Acute Myeloid Leukemia with t(5;17)(q35;q21) 8 131043 -NCIT:C36058 Acute Myeloid Leukemia with t(11;17)(q13;q21) 8 131044 -NCIT:C38377 Acute Myeloid Leukemia with t(17;17)(q21;q21) 8 131045 -NCIT:C68700 Adult Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 7 131046 -NCIT:C68696 Adult Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 8 131047 -NCIT:C68697 Adult Acute Myeloid Leukemia with inv(16)(p13.1q22); CBFB-MYH11 8 131048 -NCIT:C68698 Adult Acute Myeloid Leukemia with t(16;16)(p13.1;q22); CBFB-MYH11 8 131049 -NCIT:C68699 Adult Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 8 131050 -NCIT:C9155 Adult Acute Promyelocytic Leukemia with PML-RARA 8 131051 -NCIT:C82423 Acute Myeloid Leukemia with t(6;9) (p23;q34.1); DEK-NUP214 7 131052 -NCIT:C82426 Acute Myeloid Leukemia with inv(3) (q21.3;q26.2) or t(3;3) (q21.3;q26.2); GATA2, MECOM 7 131053 -NCIT:C122716 Acute Myeloid Leukemia with inv(3) (q21.3;q26.2); GATA2, MECOM 8 131054 -NCIT:C122717 Acute Myeloid Leukemia with t(3;3) (q21.3;q26.2); GATA2, MECOM 8 131055 -NCIT:C82427 Acute Myeloid Leukemia (Megakaryoblastic) with t(1;22)(p13.3;q13.1); RBM15-MKL1 7 131056 -NCIT:C9287 Acute Myeloid Leukemia with inv(16)(p13.1q22) or t(16;16)(p13.1;q22); CBFB-MYH11 7 131057 -NCIT:C9018 Acute Myeloid Leukemia with inv(16)(p13.1q22); CBFB-MYH11 8 131058 -NCIT:C68697 Adult Acute Myeloid Leukemia with inv(16)(p13.1q22); CBFB-MYH11 9 131059 -NCIT:C9019 Acute Myeloid Leukemia with t(16;16)(p13.1;q22); CBFB-MYH11 8 131060 -NCIT:C68698 Adult Acute Myeloid Leukemia with t(16;16)(p13.1;q22); CBFB-MYH11 9 131061 -NCIT:C9288 Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 7 131062 -NCIT:C188450 Childhood Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 8 131063 -NCIT:C68699 Adult Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 8 131064 -NCIT:C7600 Acute Myeloid Leukemia with Myelodysplasia-Related Changes 6 131065 -NCIT:C125715 Recurrent Acute Myeloid Leukemia with Myelodysplasia-Related Changes 7 131066 -NCIT:C156720 Recurrent Acute Myeloid Leukemia with Multilineage Dysplasia 8 131067 -NCIT:C180897 Refractory Acute Myeloid Leukemia with Myelodysplasia-Related Changes 7 131068 -NCIT:C4037 Acute Myeloid Leukemia Arising from Previous Myelodysplastic Syndrome 7 131069 -NCIT:C9289 Acute Myeloid Leukemia with Multilineage Dysplasia 7 131070 -NCIT:C156720 Recurrent Acute Myeloid Leukemia with Multilineage Dysplasia 8 131071 -NCIT:C82430 Acute Myeloid Leukemia with Gene Mutations 6 131072 -NCIT:C126748 Acute Myeloid Leukemia with FLT3/ITD Mutation 7 131073 -NCIT:C129786 Acute Myeloid Leukemia with RUNX1 Mutation 7 131074 -NCIT:C151898 Acute Myeloid Leukemia with Germline CEBPA Mutation 7 131075 -NCIT:C82431 Acute Myeloid Leukemia with NPM1 Mutation 7 131076 -NCIT:C82433 Acute Myeloid Leukemia with CEBPA Mutation 7 131077 -NCIT:C129782 Acute Myeloid Leukemia with Biallelic Mutations of CEBPA 8 131078 -NCIT:C129783 Acute Myeloid Leukemia with Monoallelic Mutations of CEBPA 8 131079 -NCIT:C9154 Adult Acute Myeloid Leukemia 6 131080 -NCIT:C68700 Adult Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 7 131081 -NCIT:C68696 Adult Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 8 131082 -NCIT:C68697 Adult Acute Myeloid Leukemia with inv(16)(p13.1q22); CBFB-MYH11 8 131083 -NCIT:C68698 Adult Acute Myeloid Leukemia with t(16;16)(p13.1;q22); CBFB-MYH11 8 131084 -NCIT:C68699 Adult Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 8 131085 -NCIT:C9155 Adult Acute Promyelocytic Leukemia with PML-RARA 8 131086 -NCIT:C7319 Adult Acute Monoblastic and Monocytic Leukemia 7 131087 -NCIT:C8263 Adult Acute Monocytic Leukemia 8 131088 -NCIT:C9156 Adult Acute Monoblastic Leukemia 8 131089 -NCIT:C7882 Recurrent Adult Acute Myeloid Leukemia 7 131090 -NCIT:C7961 Adult Acute Myeloid Leukemia with Maturation 7 131091 -NCIT:C7962 Adult Acute Myelomonocytic Leukemia 7 131092 -NCIT:C7964 Adult Acute Basophilic Leukemia 7 131093 -NCIT:C7965 Adult Acute Megakaryoblastic Leukemia 7 131094 -NCIT:C8303 Adult Acute Myeloid Leukemia with Minimal Differentiation 7 131095 -NCIT:C9153 Adult Acute Erythroid Leukemia 7 131096 -NCIT:C68693 Adult Pure Erythroid Leukemia 8 131097 -NCIT:C68694 Adult Erythroleukemia 8 131098 -NCIT:C9380 Adult Acute Myeloid Leukemia without Maturation 7 131099 -NCIT:C9160 Childhood Acute Myeloid Leukemia 6 131100 -NCIT:C122625 Childhood Acute Myeloid Leukemia Not Otherwise Specified 7 131101 -NCIT:C7940 Childhood Acute Monoblastic and Monocytic Leukemia 8 131102 -NCIT:C9162 Childhood Acute Monoblastic Leukemia 9 131103 -NCIT:C9163 Childhood Acute Monocytic Leukemia 9 131104 -NCIT:C7970 Childhood Acute Myelomonocytic Leukemia 8 131105 -NCIT:C7971 Childhood Acute Basophilic Leukemia 8 131106 -NCIT:C7972 Childhood Acute Megakaryoblastic Leukemia 8 131107 -NCIT:C8304 Childhood Acute Myeloid Leukemia with Minimal Differentiation 8 131108 -NCIT:C9158 Childhood Acute Myeloid Leukemia without Maturation 8 131109 -NCIT:C9164 Childhood Acute Erythroid Leukemia 8 131110 -NCIT:C9381 Childhood Acute Myeloid Leukemia with Maturation 8 131111 -NCIT:C122690 Acute Myeloid Leukemia with t(7;12)(q36;p13); HLXB9-ETV6 7 131112 -NCIT:C122691 Childhood Acute Myeloid Leukemia with NUP98 Rearrangement 7 131113 -NCIT:C131502 Acute Myeloid Leukemia with t(5;11)(q35;p15); NUP98-NSD1 8 131114 -NCIT:C131504 Acute Myeloid Leukemia with t(11;15)(p15;q35); NUP98-JARID1A 8 131115 -NCIT:C132111 Acute Megakaryoblastic Leukemia with NUP98-KDM5A 8 131116 -NCIT:C122725 Childhood Acute Myeloid Leukemia with Abnormalities of Chromosome 5q 7 131117 -NCIT:C122726 Childhood Acute Myeloid Leukemia with Abnormalities of Chromosome 7 7 131118 -NCIT:C132101 Acute Myeloid Leukemia with t(10;11)(p12;q23); MLLT10-MLL 7 131119 -NCIT:C132105 Acute Myeloid Leukemia with t(6;11)(q27;q23); MLLT4-MLL 7 131120 -NCIT:C132109 Acute Megakaryoblastic Leukemia with CBFA2T3-GLIS2 7 131121 -NCIT:C167089 Acute Myeloid Leukemia with RAM Immunophenotype 7 131122 -NCIT:C187449 Refractory Childhood Acute Myeloid Leukemia 7 131123 -NCIT:C188450 Childhood Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 7 131124 -NCIT:C188451 Childhood Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 7 131125 -NCIT:C7968 Childhood Acute Promyelocytic Leukemia with PML-RARA 7 131126 -NCIT:C82431 Acute Myeloid Leukemia with NPM1 Mutation 7 131127 -NCIT:C82433 Acute Myeloid Leukemia with CEBPA Mutation 7 131128 -NCIT:C129782 Acute Myeloid Leukemia with Biallelic Mutations of CEBPA 8 131129 -NCIT:C129783 Acute Myeloid Leukemia with Monoallelic Mutations of CEBPA 8 131130 -NCIT:C9068 Recurrent Childhood Acute Myeloid Leukemia 7 131131 -NCIT:C3174 Chronic Myelogenous Leukemia, BCR-ABL1 Positive 5 131132 -NCIT:C3173 Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 131133 -NCIT:C190786 Recurrent Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 131134 -NCIT:C190787 Refractory Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 131135 -NCIT:C3175 Chronic Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 131136 -NCIT:C7303 Splenic Manifestation of Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 131137 -NCIT:C7320 Childhood Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 131138 -NCIT:C7885 Refractory Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 131139 -NCIT:C9070 Recurrent Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 131140 -NCIT:C9110 Blast Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 131141 -NCIT:C9111 Meningeal Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 131142 -NCIT:C9128 Philadelphia Chromosome Positive, BCR-ABL1 Positive Chronic Myelogenous Leukemia 6 131143 -NCIT:C9129 Philadelphia Chromosome Negative, BCR-ABL1 Positive Chronic Myelogenous Leukemia 6 131144 -NCIT:C3176 Philadelphia-Negative Myelogenous Leukemia 5 131145 -NCIT:C9129 Philadelphia Chromosome Negative, BCR-ABL1 Positive Chronic Myelogenous Leukemia 6 131146 -NCIT:C3177 Philadelphia-Positive Myelogenous Leukemia 5 131147 -NCIT:C9128 Philadelphia Chromosome Positive, BCR-ABL1 Positive Chronic Myelogenous Leukemia 6 131148 -NCIT:C3247 Myelodysplastic Syndrome 4 131149 -NCIT:C115153 Adult Myelodysplastic Syndrome 5 131150 -NCIT:C122686 Hypocellular Myelodysplastic Syndrome 5 131151 -NCIT:C148362 Refractory Myelodysplastic Syndrome 5 131152 -NCIT:C148363 Recurrent Myelodysplastic Syndrome 5 131153 -NCIT:C168742 Hereditary Myelodysplastic Syndrome 5 131154 -NCIT:C168746 SAMD9-Associated Hereditary Myelodysplastic Syndrome 6 131155 -NCIT:C168747 SAMD9L-Associated Hereditary Myelodysplastic Syndrome 6 131156 -NCIT:C27280 Secondary Myelodysplastic Syndrome 5 131157 -NCIT:C27722 Therapy-Related Myelodysplastic Syndrome 6 131158 -NCIT:C7642 Epipodophyllotoxin-Related Myelodysplastic Syndrome 7 131159 -NCIT:C7643 Alkylating Agent-Related Myelodysplastic Syndrome 7 131160 -NCIT:C4036 Myelodysplastic Syndrome with Ring Sideroblasts 5 131161 -NCIT:C130037 Myelodysplastic Syndrome with Ring Sideroblasts and Single Lineage Dysplasia 6 131162 -NCIT:C27726 Myelodysplastic Syndrome with Ring Sideroblasts and Multilineage Dysplasia 6 131163 -NCIT:C6867 Myelodysplastic Syndrome with Isolated del(5q) 5 131164 -NCIT:C68744 Childhood Myelodysplastic Syndrome 5 131165 -NCIT:C188449 Childhood Myelodysplastic Syndrome with Excess Blasts 6 131166 -NCIT:C82596 Refractory Cytopenia of Childhood 6 131167 -NCIT:C7506 Myelodysplastic Syndrome with Excess Blasts 5 131168 -NCIT:C188449 Childhood Myelodysplastic Syndrome with Excess Blasts 6 131169 -NCIT:C7167 Myelodysplastic Syndrome with Excess Blasts-1 6 131170 -NCIT:C7168 Myelodysplastic Syndrome with Excess Blasts-2 6 131171 -NCIT:C82595 Myelodysplastic Syndrome with Excess Blasts and Fibrosis 6 131172 -NCIT:C8253 de novo Myelodysplastic Syndrome 5 131173 -NCIT:C82591 Myelodysplastic Syndrome with Single Lineage Dysplasia 5 131174 -NCIT:C2872 Refractory Anemia 6 131175 -NCIT:C82593 Refractory Neutropenia 6 131176 -NCIT:C82594 Refractory Thrombocytopenia 6 131177 -NCIT:C8574 Myelodysplastic Syndrome with Multilineage Dysplasia 5 131178 -NCIT:C8648 Myelodysplastic Syndrome, Unclassifiable 5 131179 -NCIT:C168677 Myelodysplastic Syndrome, Unclassifiable, With 1 Percent Blasts 6 131180 -NCIT:C168678 Myelodysplastic Syndrome, Unclassifiable, Based on Defining Cytogenetic Abnormality 6 131181 -NCIT:C168681 Myelodysplastic Syndrome, Unclassifiable, with Single Lineage Dysplasia 6 131182 -NCIT:C97310 Myelodysplastic Syndrome with Somatic Mutations 5 131183 -NCIT:C3520 Myeloid Sarcoma 4 131184 -NCIT:C132260 Small Intestinal Myeloid Sarcoma 5 131185 -NCIT:C162469 Testicular Myeloid Sarcoma 5 131186 -NCIT:C173489 Oral Cavity Myeloid Sarcoma 5 131187 -NCIT:C35815 Granulocytic Sarcoma 5 131188 -NCIT:C146883 Mediastinal Granulocytic Sarcoma 6 131189 -NCIT:C35817 Blastic Granulocytic Sarcoma 6 131190 -NCIT:C35818 Immature Granulocytic Sarcoma 6 131191 -NCIT:C35819 Differentiated Granulocytic Sarcoma 6 131192 -NCIT:C35816 Monoblastic Sarcoma 5 131193 -NCIT:C45741 Mediastinal Myeloid Sarcoma 5 131194 -NCIT:C146883 Mediastinal Granulocytic Sarcoma 6 131195 -NCIT:C5370 Cardiac Myeloid Sarcoma 5 131196 -NCIT:C5527 Prostate Myeloid Sarcoma 5 131197 -NCIT:C7008 Intracranial Myeloid Sarcoma 5 131198 -NCIT:C4345 Myeloproliferative Neoplasm 4 131199 -NCIT:C166142 Recurrent Myeloproliferative Neoplasm 5 131200 -NCIT:C179203 Recurrent Primary Myelofibrosis 6 131201 -NCIT:C190786 Recurrent Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 131202 -NCIT:C9070 Recurrent Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 131203 -NCIT:C170911 Refractory Myeloproliferative Neoplasm 5 131204 -NCIT:C171340 Refractory Primary Myelofibrosis 6 131205 -NCIT:C190787 Refractory Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 131206 -NCIT:C7885 Refractory Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 131207 -NCIT:C188315 Accelerated Phase Myeloproliferative Neoplasm 5 131208 -NCIT:C188317 Accelerated Phase Primary Myelofibrosis 6 131209 -NCIT:C3173 Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 131210 -NCIT:C190786 Recurrent Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 131211 -NCIT:C190787 Refractory Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 131212 -NCIT:C188316 Blast Phase Myeloproliferative Neoplasm 5 131213 -NCIT:C188318 Blast Phase Primary Myelofibrosis 6 131214 -NCIT:C9110 Blast Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 131215 -NCIT:C27350 Myeloproliferative Neoplasm, Unclassifiable 5 131216 -NCIT:C2862 Primary Myelofibrosis 5 131217 -NCIT:C171340 Refractory Primary Myelofibrosis 6 131218 -NCIT:C179203 Recurrent Primary Myelofibrosis 6 131219 -NCIT:C188314 Chronic Phase Primary Myelofibrosis 6 131220 -NCIT:C188317 Accelerated Phase Primary Myelofibrosis 6 131221 -NCIT:C188318 Blast Phase Primary Myelofibrosis 6 131222 -NCIT:C41237 Prefibrotic/Early Primary Myelofibrosis 6 131223 -NCIT:C41238 Overt Primary Myelofibrosis 6 131224 -NCIT:C3174 Chronic Myelogenous Leukemia, BCR-ABL1 Positive 5 131225 -NCIT:C3173 Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 131226 -NCIT:C190786 Recurrent Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 131227 -NCIT:C190787 Refractory Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 131228 -NCIT:C3175 Chronic Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 131229 -NCIT:C7303 Splenic Manifestation of Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 131230 -NCIT:C7320 Childhood Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 131231 -NCIT:C7885 Refractory Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 131232 -NCIT:C9070 Recurrent Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 131233 -NCIT:C9110 Blast Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 131234 -NCIT:C9111 Meningeal Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 131235 -NCIT:C9128 Philadelphia Chromosome Positive, BCR-ABL1 Positive Chronic Myelogenous Leukemia 6 131236 -NCIT:C9129 Philadelphia Chromosome Negative, BCR-ABL1 Positive Chronic Myelogenous Leukemia 6 131237 -NCIT:C3179 Chronic Neutrophilic Leukemia 5 131238 -NCIT:C3336 Polycythemia Vera 5 131239 -NCIT:C41232 Polycythemia Vera, Polycythemic Phase 6 131240 -NCIT:C41233 Polycythemia Vera, Post-Polycythemic Myelofibrosis Phase 6 131241 -NCIT:C3407 Essential Thrombocythemia 5 131242 -NCIT:C4563 Chronic Eosinophilic Leukemia, Not Otherwise Specified 5 131243 -NCIT:C7064 Erythroid Neoplasm 4 131244 -NCIT:C3336 Polycythemia Vera 5 131245 -NCIT:C41232 Polycythemia Vera, Polycythemic Phase 6 131246 -NCIT:C41233 Polycythemia Vera, Post-Polycythemic Myelofibrosis Phase 6 131247 -NCIT:C8923 Acute Erythroid Leukemia 5 131248 -NCIT:C156723 Recurrent Acute Erythroid Leukemia 6 131249 -NCIT:C7152 Erythroleukemia 6 131250 -NCIT:C68694 Adult Erythroleukemia 7 131251 -NCIT:C7467 Pure Erythroid Leukemia 6 131252 -NCIT:C68693 Adult Pure Erythroid Leukemia 7 131253 -NCIT:C9153 Adult Acute Erythroid Leukemia 6 131254 -NCIT:C68693 Adult Pure Erythroid Leukemia 7 131255 -NCIT:C68694 Adult Erythroleukemia 7 131256 -NCIT:C9164 Childhood Acute Erythroid Leukemia 6 131257 -NCIT:C7066 Megakaryocytic Neoplasm 4 131258 -NCIT:C3170 Acute Megakaryoblastic Leukemia 5 131259 -NCIT:C156731 Recurrent Acute Megakaryoblastic Leukemia 6 131260 -NCIT:C7965 Adult Acute Megakaryoblastic Leukemia 6 131261 -NCIT:C7972 Childhood Acute Megakaryoblastic Leukemia 6 131262 -NCIT:C3407 Essential Thrombocythemia 5 131263 -NCIT:C7203 Blastic Plasmacytoid Dendritic Cell Neoplasm 4 131264 -NCIT:C156103 Recurrent Blastic Plasmacytoid Dendritic Cell Neoplasm 5 131265 -NCIT:C156104 Refractory Blastic Plasmacytoid Dendritic Cell Neoplasm 5 131266 -NCIT:C82338 Myeloid Proliferations Associated with Down Syndrome 4 131267 -NCIT:C43223 Myeloid Leukemia Associated with Down Syndrome 5 131268 -NCIT:C82339 Transient Abnormal Myelopoiesis Associated with Down Syndrome 5 131269 -NCIT:C9295 Mast Cell Neoplasm 4 131270 -NCIT:C84269 Mastocytosis 5 131271 -NCIT:C7137 Cutaneous Mastocytosis 6 131272 -NCIT:C43277 Pure Cutaneous Mastocytosis 7 131273 -NCIT:C3218 Diffuse Cutaneous Mastocytosis 8 131274 -NCIT:C3433 Urticaria Pigmentosa/Maculopapular Cutaneous Mastocytosis 8 131275 -NCIT:C7138 Solitary Mastocytoma of the Skin 8 131276 -NCIT:C9235 Systemic Mastocytosis 6 131277 -NCIT:C43284 Primary Systemic Mastocytosis 7 131278 -NCIT:C115460 Smoldering Systemic Mastocytosis 8 131279 -NCIT:C188041 Smoldering Systemic Mastocytosis with an Associated Hematological Neoplasm 9 131280 -NCIT:C3169 Mast Cell Leukemia 8 131281 -NCIT:C188031 Mast Cell Leukemia Associated with Another Hematological Neoplasm 9 131282 -NCIT:C9284 Systemic Mastocytosis with an Associated Hematological Neoplasm 8 131283 -NCIT:C188031 Mast Cell Leukemia Associated with Another Hematological Neoplasm 9 131284 -NCIT:C188041 Smoldering Systemic Mastocytosis with an Associated Hematological Neoplasm 9 131285 -NCIT:C9285 Aggressive Systemic Mastocytosis 8 131286 -NCIT:C186732 Aggressive Systemic Mastocytosis Associated with Germ Cell Tumor 9 131287 -NCIT:C9286 Indolent Systemic Mastocytosis 8 131288 -NCIT:C8991 Malignant Mastocytosis 7 131289 -NCIT:C170816 Refractory Malignant Mastocytosis 8 131290 -NCIT:C170817 Recurrent Malignant Mastocytosis 8 131291 -NCIT:C186735 Systemic Mastocytosis Associated with Germ Cell Tumor 8 131292 -NCIT:C186732 Aggressive Systemic Mastocytosis Associated with Germ Cell Tumor 9 131293 -NCIT:C3169 Mast Cell Leukemia 8 131294 -NCIT:C188031 Mast Cell Leukemia Associated with Another Hematological Neoplasm 9 131295 -NCIT:C9284 Systemic Mastocytosis with an Associated Hematological Neoplasm 8 131296 -NCIT:C188031 Mast Cell Leukemia Associated with Another Hematological Neoplasm 9 131297 -NCIT:C188041 Smoldering Systemic Mastocytosis with an Associated Hematological Neoplasm 9 131298 -NCIT:C9285 Aggressive Systemic Mastocytosis 8 131299 -NCIT:C186732 Aggressive Systemic Mastocytosis Associated with Germ Cell Tumor 9 131300 -NCIT:C9348 Mast Cell Sarcoma 8 131301 -NCIT:C9303 Mastocytoma 5 131302 -NCIT:C3217 Benign Mastocytoma 6 131303 -NCIT:C7136 Extracutaneous Mastocytoma 6 131304 -NCIT:C9294 Histiocytic and Dendritic Cell Neoplasm 3 131305 -NCIT:C134168 Refractory Histiocytic and Dendritic Cell Neoplasm 4 131306 -NCIT:C134177 Refractory Langerhans Cell Histiocytosis 5 131307 -NCIT:C136489 Refractory Erdheim-Chester Disease 5 131308 -NCIT:C134172 Recurrent Histiocytic and Dendritic Cell Neoplasm 4 131309 -NCIT:C134175 Recurrent Langerhans Cell Histiocytosis 5 131310 -NCIT:C150692 Tumors Derived from Langerhans Cells 4 131311 -NCIT:C3107 Langerhans Cell Histiocytosis 5 131312 -NCIT:C114483 Childhood Langerhans Cell Histiocytosis 6 131313 -NCIT:C123395 Childhood Langerhans Cell Histiocytosis with Risk Organ Involvement 7 131314 -NCIT:C123396 Childhood Langerhans Cell Histiocytosis without Risk Organ Involvement 7 131315 -NCIT:C114929 Adult Langerhans Cell Histiocytosis 6 131316 -NCIT:C129806 Central Nervous System Langerhans Cell Histiocytosis 6 131317 -NCIT:C134175 Recurrent Langerhans Cell Histiocytosis 6 131318 -NCIT:C134177 Refractory Langerhans Cell Histiocytosis 6 131319 -NCIT:C150701 Langerhans Cell Histiocytosis, Monostotic 6 131320 -NCIT:C142833 Pulmonary Langerhans Cell Histiocytosis 7 131321 -NCIT:C3016 Eosinophilic Granuloma 7 131322 -NCIT:C150702 Langerhans Cell Histiocytosis, Polyostotic 6 131323 -NCIT:C6920 Hand-Schuller-Christian Disease 7 131324 -NCIT:C150703 Langerhans Cell Histiocytosis, Disseminated 6 131325 -NCIT:C3160 Letterer-Siwe Disease 7 131326 -NCIT:C168983 Cutaneous Langerhans Cell Histiocytosis 6 131327 -NCIT:C173486 Head and Neck Langerhans Cell Histiocytosis 6 131328 -NCIT:C156407 Thyroid Gland Langerhans Cell Histiocytosis 7 131329 -NCIT:C173487 Oral Mucosa Langerhans Cell Histiocytosis 7 131330 -NCIT:C178607 Bone Langerhans Cell Histiocytosis 6 131331 -NCIT:C6921 Langerhans Cell Sarcoma 5 131332 -NCIT:C168980 Cutaneous Histiocytic and Dendritic Cell Neoplasm 4 131333 -NCIT:C168983 Cutaneous Langerhans Cell Histiocytosis 5 131334 -NCIT:C168984 Cutaneous Indeterminate Dendritic Cell Tumor 5 131335 -NCIT:C168991 Cutaneous Erdheim-Chester Disease 5 131336 -NCIT:C27514 Adult Xanthogranuloma 5 131337 -NCIT:C3451 Juvenile Xanthogranuloma 5 131338 -NCIT:C173485 Head and Neck Histiocytic and Dendritic Cell Neoplasm 4 131339 -NCIT:C156406 Thyroid Gland Histiocytic and Dendritic Cell Neoplasm 5 131340 -NCIT:C156407 Thyroid Gland Langerhans Cell Histiocytosis 6 131341 -NCIT:C156408 Thyroid Gland Follicular Dendritic Cell Sarcoma 6 131342 -NCIT:C173486 Head and Neck Langerhans Cell Histiocytosis 5 131343 -NCIT:C156407 Thyroid Gland Langerhans Cell Histiocytosis 6 131344 -NCIT:C173487 Oral Mucosa Langerhans Cell Histiocytosis 6 131345 -NCIT:C173580 Head and Neck Follicular Dendritic Cell Sarcoma 5 131346 -NCIT:C156408 Thyroid Gland Follicular Dendritic Cell Sarcoma 6 131347 -NCIT:C27349 Histiocytic Sarcoma 4 131348 -NCIT:C129807 Central Nervous System Histiocytic Sarcoma 5 131349 -NCIT:C53972 Erdheim-Chester Disease 4 131350 -NCIT:C129808 Central Nervous System Erdheim-Chester Disease 5 131351 -NCIT:C136489 Refractory Erdheim-Chester Disease 5 131352 -NCIT:C168991 Cutaneous Erdheim-Chester Disease 5 131353 -NCIT:C178609 Bone Erdheim-Chester Disease 5 131354 -NCIT:C81758 Fibroblastic Reticular Cell Tumor 4 131355 -NCIT:C81767 Indeterminate Dendritic Cell Tumor 4 131356 -NCIT:C168984 Cutaneous Indeterminate Dendritic Cell Tumor 5 131357 -NCIT:C81772 Disseminated Juvenile Xanthogranuloma 4 131358 -NCIT:C9281 Follicular Dendritic Cell Sarcoma 4 131359 -NCIT:C172846 Conventional Follicular Dendritic Cell Sarcoma 5 131360 -NCIT:C172847 EBV-Positive Inflammatory Follicular Dendritic Cell Sarcoma 5 131361 -NCIT:C150704 EBV-Positive Inflammatory Follicular Dendritic Cell Sarcoma of the Digestive System 6 131362 -NCIT:C173580 Head and Neck Follicular Dendritic Cell Sarcoma 5 131363 -NCIT:C156408 Thyroid Gland Follicular Dendritic Cell Sarcoma 6 131364 -NCIT:C183374 Mediastinal Follicular Dendritic Cell Sarcoma 5 131365 -NCIT:C9282 Interdigitating Dendritic Cell Sarcoma 4 131366 -NCIT:C92944 Central Nervous System Histiocytic and Dendritic Cell Neoplasm 4 131367 -NCIT:C129806 Central Nervous System Langerhans Cell Histiocytosis 5 131368 -NCIT:C129807 Central Nervous System Histiocytic Sarcoma 5 131369 -NCIT:C129808 Central Nervous System Erdheim-Chester Disease 5 131370 -NCIT:C9431 Childhood Hematopoietic and Lymphoid Cell Neoplasm 3 131371 -NCIT:C114483 Childhood Langerhans Cell Histiocytosis 4 131372 -NCIT:C123395 Childhood Langerhans Cell Histiocytosis with Risk Organ Involvement 5 131373 -NCIT:C123396 Childhood Langerhans Cell Histiocytosis without Risk Organ Involvement 5 131374 -NCIT:C188453 Childhood B Lymphoblastic Leukemia/Lymphoma 4 131375 -NCIT:C7209 Childhood B Lymphoblastic Lymphoma 5 131376 -NCIT:C9140 Childhood B Acute Lymphoblastic Leukemia 5 131377 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 6 131378 -NCIT:C43223 Myeloid Leukemia Associated with Down Syndrome 4 131379 -NCIT:C4989 Childhood Leukemia 4 131380 -NCIT:C122603 Infant Leukemia 5 131381 -NCIT:C122614 Infant Acute Lymphoblastic Leukemia 6 131382 -NCIT:C122617 Infant Acute Lymphoblastic Leukemia with MLL Rearrangement 7 131383 -NCIT:C122621 Infant Acute Lymphoblastic Leukemia without MLL Gene Rearrangement 7 131384 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 7 131385 -NCIT:C122690 Acute Myeloid Leukemia with t(7;12)(q36;p13); HLXB9-ETV6 6 131386 -NCIT:C126110 Infant Acute Undifferentiated Leukemia 6 131387 -NCIT:C126111 Infant Acute Biphenotypic Leukemia 6 131388 -NCIT:C3845 Neonatal Leukemia 6 131389 -NCIT:C187056 Childhood Acute Leukemia 5 131390 -NCIT:C126110 Infant Acute Undifferentiated Leukemia 6 131391 -NCIT:C126111 Infant Acute Biphenotypic Leukemia 6 131392 -NCIT:C3168 Childhood Acute Lymphoblastic Leukemia 6 131393 -NCIT:C122614 Infant Acute Lymphoblastic Leukemia 7 131394 -NCIT:C122617 Infant Acute Lymphoblastic Leukemia with MLL Rearrangement 8 131395 -NCIT:C122621 Infant Acute Lymphoblastic Leukemia without MLL Gene Rearrangement 8 131396 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 8 131397 -NCIT:C122624 Refractory Childhood Acute Lymphoblastic Leukemia 7 131398 -NCIT:C7784 Recurrent Childhood Acute Lymphoblastic Leukemia 7 131399 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 131400 -NCIT:C7953 Childhood T Acute Lymphoblastic Leukemia 7 131401 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 8 131402 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 131403 -NCIT:C9140 Childhood B Acute Lymphoblastic Leukemia 7 131404 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 131405 -NCIT:C7952 Childhood Burkitt Leukemia 6 131406 -NCIT:C9160 Childhood Acute Myeloid Leukemia 6 131407 -NCIT:C122625 Childhood Acute Myeloid Leukemia Not Otherwise Specified 7 131408 -NCIT:C7940 Childhood Acute Monoblastic and Monocytic Leukemia 8 131409 -NCIT:C9162 Childhood Acute Monoblastic Leukemia 9 131410 -NCIT:C9163 Childhood Acute Monocytic Leukemia 9 131411 -NCIT:C7970 Childhood Acute Myelomonocytic Leukemia 8 131412 -NCIT:C7971 Childhood Acute Basophilic Leukemia 8 131413 -NCIT:C7972 Childhood Acute Megakaryoblastic Leukemia 8 131414 -NCIT:C8304 Childhood Acute Myeloid Leukemia with Minimal Differentiation 8 131415 -NCIT:C9158 Childhood Acute Myeloid Leukemia without Maturation 8 131416 -NCIT:C9164 Childhood Acute Erythroid Leukemia 8 131417 -NCIT:C9381 Childhood Acute Myeloid Leukemia with Maturation 8 131418 -NCIT:C122690 Acute Myeloid Leukemia with t(7;12)(q36;p13); HLXB9-ETV6 7 131419 -NCIT:C122691 Childhood Acute Myeloid Leukemia with NUP98 Rearrangement 7 131420 -NCIT:C131502 Acute Myeloid Leukemia with t(5;11)(q35;p15); NUP98-NSD1 8 131421 -NCIT:C131504 Acute Myeloid Leukemia with t(11;15)(p15;q35); NUP98-JARID1A 8 131422 -NCIT:C132111 Acute Megakaryoblastic Leukemia with NUP98-KDM5A 8 131423 -NCIT:C122725 Childhood Acute Myeloid Leukemia with Abnormalities of Chromosome 5q 7 131424 -NCIT:C122726 Childhood Acute Myeloid Leukemia with Abnormalities of Chromosome 7 7 131425 -NCIT:C132101 Acute Myeloid Leukemia with t(10;11)(p12;q23); MLLT10-MLL 7 131426 -NCIT:C132105 Acute Myeloid Leukemia with t(6;11)(q27;q23); MLLT4-MLL 7 131427 -NCIT:C132109 Acute Megakaryoblastic Leukemia with CBFA2T3-GLIS2 7 131428 -NCIT:C167089 Acute Myeloid Leukemia with RAM Immunophenotype 7 131429 -NCIT:C187449 Refractory Childhood Acute Myeloid Leukemia 7 131430 -NCIT:C188450 Childhood Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 7 131431 -NCIT:C188451 Childhood Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 7 131432 -NCIT:C7968 Childhood Acute Promyelocytic Leukemia with PML-RARA 7 131433 -NCIT:C82431 Acute Myeloid Leukemia with NPM1 Mutation 7 131434 -NCIT:C82433 Acute Myeloid Leukemia with CEBPA Mutation 7 131435 -NCIT:C129782 Acute Myeloid Leukemia with Biallelic Mutations of CEBPA 8 131436 -NCIT:C129783 Acute Myeloid Leukemia with Monoallelic Mutations of CEBPA 8 131437 -NCIT:C9068 Recurrent Childhood Acute Myeloid Leukemia 7 131438 -NCIT:C7320 Childhood Chronic Myelogenous Leukemia, BCR-ABL1 Positive 5 131439 -NCIT:C5165 Childhood Lymphoma 4 131440 -NCIT:C141202 Childhood Lymphoma by AJCC v8 Stage 5 131441 -NCIT:C141178 Lugano Classification Childhood Hodgkin Lymphoma by AJCC v8 Stage 6 131442 -NCIT:C141179 Lugano Classification Limited Stage Childhood Hodgkin Lymphoma AJCC v8 7 131443 -NCIT:C141180 Lugano Classification Stage I Childhood Hodgkin Lymphoma AJCC v8 8 131444 -NCIT:C141181 Lugano Classification Stage IE Childhood Hodgkin Lymphoma AJCC v8 8 131445 -NCIT:C141182 Lugano Classification Stage II Childhood Hodgkin Lymphoma AJCC v8 8 131446 -NCIT:C141184 Lugano Classification Stage II Bulky Childhood Hodgkin Lymphoma AJCC v8 9 131447 -NCIT:C141183 Lugano Classification Stage IIE Childhood Hodgkin Lymphoma AJCC v8 8 131448 -NCIT:C141185 Lugano Classification Advanced Stage Childhood Hodgkin Lymphoma AJCC v8 7 131449 -NCIT:C141186 Lugano Classification Stage III Childhood Hodgkin Lymphoma AJCC v8 8 131450 -NCIT:C141187 Lugano Classification Stage IV Childhood Hodgkin Lymphoma AJCC v8 8 131451 -NCIT:C141217 St. Jude Childhood Non-Hodgkin Lymphoma by AJCC v8 Stage 6 131452 -NCIT:C141218 St. Jude Stage I Childhood Non-Hodgkin Lymphoma AJCC v8 7 131453 -NCIT:C141219 St. Jude Stage II Childhood Non-Hodgkin Lymphoma AJCC v8 7 131454 -NCIT:C141220 St. Jude Stage III Childhood Non-Hodgkin Lymphoma AJCC v8 7 131455 -NCIT:C141221 St. Jude Stage IV Childhood Non-Hodgkin Lymphoma AJCC v8 7 131456 -NCIT:C187196 Recurrent Childhood Lymphoma 5 131457 -NCIT:C115369 Recurrent Childhood Non-Hodgkin Lymphoma 6 131458 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 7 131459 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 7 131460 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 7 131461 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 7 131462 -NCIT:C8059 Recurrent Childhood Hodgkin Lymphoma 6 131463 -NCIT:C187197 Refractory Childhood Lymphoma 5 131464 -NCIT:C115458 Refractory Childhood Hodgkin Lymphoma 6 131465 -NCIT:C7706 Childhood Non-Hodgkin Lymphoma 5 131466 -NCIT:C115369 Recurrent Childhood Non-Hodgkin Lymphoma 6 131467 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 7 131468 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 7 131469 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 7 131470 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 7 131471 -NCIT:C123394 Childhood Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 6 131472 -NCIT:C141217 St. Jude Childhood Non-Hodgkin Lymphoma by AJCC v8 Stage 6 131473 -NCIT:C141218 St. Jude Stage I Childhood Non-Hodgkin Lymphoma AJCC v8 7 131474 -NCIT:C141219 St. Jude Stage II Childhood Non-Hodgkin Lymphoma AJCC v8 7 131475 -NCIT:C141220 St. Jude Stage III Childhood Non-Hodgkin Lymphoma AJCC v8 7 131476 -NCIT:C141221 St. Jude Stage IV Childhood Non-Hodgkin Lymphoma AJCC v8 7 131477 -NCIT:C141236 Childhood Non-Hodgkin Lymphoma by Ann Arbor Stage 6 131478 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 7 131479 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 131480 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 131481 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 131482 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 131483 -NCIT:C94791 Ann Arbor Stage I Childhood Non-Hodgkin Lymphoma 7 131484 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 131485 -NCIT:C9056 Ann Arbor Stage I Childhood Lymphoblastic Lymphoma 8 131486 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 8 131487 -NCIT:C94792 Ann Arbor Stage II Childhood Non-Hodgkin Lymphoma 7 131488 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 131489 -NCIT:C9057 Ann Arbor Stage II Childhood Lymphoblastic Lymphoma 8 131490 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 8 131491 -NCIT:C94793 Ann Arbor Stage III Childhood Non-Hodgkin Lymphoma 7 131492 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 131493 -NCIT:C9058 Ann Arbor Stage III Childhood Lymphoblastic Lymphoma 8 131494 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 8 131495 -NCIT:C94794 Ann Arbor Stage IV Childhood Non-Hodgkin Lymphoma 7 131496 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 131497 -NCIT:C9059 Ann Arbor Stage IV Childhood Lymphoblastic Lymphoma 8 131498 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 8 131499 -NCIT:C188458 Childhood Large B-Cell Lymphoma with IRF4 Rearrangement 6 131500 -NCIT:C5637 Childhood Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 6 131501 -NCIT:C188459 Childhood Peripheral T-Cell Lymphoma, Not Otherwise Specified 7 131502 -NCIT:C5636 Childhood Anaplastic Large Cell Lymphoma 7 131503 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 8 131504 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 8 131505 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 131506 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 131507 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 131508 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 131509 -NCIT:C188460 Childhood Anaplastic Large Cell Lymphoma, ALK-Positive 8 131510 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 8 131511 -NCIT:C9471 Childhood Systemic Anaplastic Large Cell Lymphoma 8 131512 -NCIT:C68692 Childhood Nasal Type Extranodal NK/T-Cell Lymphoma 7 131513 -NCIT:C80374 Systemic EBV-Positive T-Cell Lymphoma of Childhood 7 131514 -NCIT:C7616 Childhood Diffuse Large B-Cell Lymphoma 6 131515 -NCIT:C115204 Childhood Grade III Lymphomatoid Granulomatosis 7 131516 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 8 131517 -NCIT:C188455 Childhood Primary Mediastinal (Thymic) Large B-Cell Lymphoma 7 131518 -NCIT:C188456 Childhood EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 7 131519 -NCIT:C9079 Childhood Immunoblastic Lymphoma 7 131520 -NCIT:C80299 Pediatric Nodal Marginal Zone Lymphoma 6 131521 -NCIT:C9095 Childhood Burkitt Lymphoma 6 131522 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 7 131523 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 7 131524 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 7 131525 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 7 131526 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 7 131527 -NCIT:C9124 Childhood Lymphoblastic Lymphoma 6 131528 -NCIT:C7209 Childhood B Lymphoblastic Lymphoma 7 131529 -NCIT:C7210 Childhood T Lymphoblastic Lymphoma 7 131530 -NCIT:C9056 Ann Arbor Stage I Childhood Lymphoblastic Lymphoma 7 131531 -NCIT:C9057 Ann Arbor Stage II Childhood Lymphoblastic Lymphoma 7 131532 -NCIT:C9058 Ann Arbor Stage III Childhood Lymphoblastic Lymphoma 7 131533 -NCIT:C9059 Ann Arbor Stage IV Childhood Lymphoblastic Lymphoma 7 131534 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 7 131535 -NCIT:C7714 Childhood Hodgkin Lymphoma 5 131536 -NCIT:C114806 Childhood Favorable Prognosis Hodgkin Lymphoma 6 131537 -NCIT:C114808 Childhood Unfavorable Prognosis Hodgkin Lymphoma 6 131538 -NCIT:C115458 Refractory Childhood Hodgkin Lymphoma 6 131539 -NCIT:C141178 Lugano Classification Childhood Hodgkin Lymphoma by AJCC v8 Stage 6 131540 -NCIT:C141179 Lugano Classification Limited Stage Childhood Hodgkin Lymphoma AJCC v8 7 131541 -NCIT:C141180 Lugano Classification Stage I Childhood Hodgkin Lymphoma AJCC v8 8 131542 -NCIT:C141181 Lugano Classification Stage IE Childhood Hodgkin Lymphoma AJCC v8 8 131543 -NCIT:C141182 Lugano Classification Stage II Childhood Hodgkin Lymphoma AJCC v8 8 131544 -NCIT:C141184 Lugano Classification Stage II Bulky Childhood Hodgkin Lymphoma AJCC v8 9 131545 -NCIT:C141183 Lugano Classification Stage IIE Childhood Hodgkin Lymphoma AJCC v8 8 131546 -NCIT:C141185 Lugano Classification Advanced Stage Childhood Hodgkin Lymphoma AJCC v8 7 131547 -NCIT:C141186 Lugano Classification Stage III Childhood Hodgkin Lymphoma AJCC v8 8 131548 -NCIT:C141187 Lugano Classification Stage IV Childhood Hodgkin Lymphoma AJCC v8 8 131549 -NCIT:C141227 Childhood Hodgkin Lymphoma by Ann Arbor Stage 6 131550 -NCIT:C8055 Ann Arbor Stage II Childhood Hodgkin Lymphoma 7 131551 -NCIT:C8056 Ann Arbor Stage I Childhood Hodgkin Lymphoma 7 131552 -NCIT:C8057 Ann Arbor Stage III Childhood Hodgkin Lymphoma 7 131553 -NCIT:C8058 Ann Arbor Stage IV Childhood Hodgkin Lymphoma 7 131554 -NCIT:C69142 Childhood Classic Hodgkin Lymphoma 6 131555 -NCIT:C7054 Childhood Lymphocyte-Rich Classic Hodgkin Lymphoma 7 131556 -NCIT:C8061 Childhood Lymphocyte-Depleted Classic Hodgkin Lymphoma 7 131557 -NCIT:C8062 Childhood Nodular Sclerosis Classic Hodgkin Lymphoma 7 131558 -NCIT:C8063 Childhood Mixed Cellularity Classic Hodgkin Lymphoma 7 131559 -NCIT:C8059 Recurrent Childhood Hodgkin Lymphoma 6 131560 -NCIT:C8060 Childhood Nodular Lymphocyte Predominant Hodgkin Lymphoma 6 131561 -NCIT:C5640 Childhood T Lymphoblastic Leukemia/Lymphoma 4 131562 -NCIT:C7210 Childhood T Lymphoblastic Lymphoma 5 131563 -NCIT:C7953 Childhood T Acute Lymphoblastic Leukemia 5 131564 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 6 131565 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 6 131566 -NCIT:C68744 Childhood Myelodysplastic Syndrome 4 131567 -NCIT:C188449 Childhood Myelodysplastic Syndrome with Excess Blasts 5 131568 -NCIT:C82596 Refractory Cytopenia of Childhood 5 131569 -NCIT:C80373 EBV-Positive T-Cell Lymphoproliferative Disorder of Childhood 4 131570 -NCIT:C45327 Hydroa Vacciniforme-Like Lymphoproliferative Disorder 5 131571 -NCIT:C80374 Systemic EBV-Positive T-Cell Lymphoma of Childhood 5 131572 -NCIT:C82339 Transient Abnormal Myelopoiesis Associated with Down Syndrome 4 131573 -NCIT:C3422 Trophoblastic Tumor 2 131574 -NCIT:C2948 Choriocarcinoma 3 131575 -NCIT:C123844 Childhood Choriocarcinoma 4 131576 -NCIT:C6206 Childhood Central Nervous System Choriocarcinoma 5 131577 -NCIT:C6544 Childhood Testicular Choriocarcinoma 5 131578 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 5 131579 -NCIT:C4515 Ovarian Choriocarcinoma 4 131580 -NCIT:C39991 Non-Gestational Ovarian Choriocarcinoma 5 131581 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 6 131582 -NCIT:C40442 Ovarian Gestational Choriocarcinoma 5 131583 -NCIT:C8730 Stage I Ovarian Choriocarcinoma 5 131584 -NCIT:C8731 Stage II Ovarian Choriocarcinoma 5 131585 -NCIT:C8732 Stage III Ovarian Choriocarcinoma 5 131586 -NCIT:C8733 Stage IV Ovarian Choriocarcinoma 5 131587 -NCIT:C4646 Gestational Choriocarcinoma 4 131588 -NCIT:C27246 Uterine Corpus Choriocarcinoma 5 131589 -NCIT:C40442 Ovarian Gestational Choriocarcinoma 5 131590 -NCIT:C6278 Fallopian Tube Gestational Choriocarcinoma 5 131591 -NCIT:C8893 Placental Choriocarcinoma 5 131592 -NCIT:C5381 Pulmonary Artery Choriocarcinoma 4 131593 -NCIT:C6440 Mediastinal Choriocarcinoma 4 131594 -NCIT:C7012 Central Nervous System Choriocarcinoma 4 131595 -NCIT:C155806 Sellar Choriocarcinoma 5 131596 -NCIT:C5793 Adult Central Nervous System Choriocarcinoma 5 131597 -NCIT:C6206 Childhood Central Nervous System Choriocarcinoma 5 131598 -NCIT:C6759 Pineal Region Choriocarcinoma 5 131599 -NCIT:C7733 Testicular Choriocarcinoma 4 131600 -NCIT:C39935 Testicular Monophasic Choriocarcinoma 5 131601 -NCIT:C6544 Childhood Testicular Choriocarcinoma 5 131602 -NCIT:C8606 Stage II Testicular Choriocarcinoma AJCC v6 and v7 5 131603 -NCIT:C8900 Stage III Testicular Choriocarcinoma AJCC v6 and v7 5 131604 -NCIT:C8907 Stage I Testicular Choriocarcinoma AJCC v6 and v7 5 131605 -NCIT:C95749 Gastric Choriocarcinoma 4 131606 -NCIT:C39934 Testicular Trophoblastic Tumor 3 131607 -NCIT:C7733 Testicular Choriocarcinoma 4 131608 -NCIT:C39935 Testicular Monophasic Choriocarcinoma 5 131609 -NCIT:C6544 Childhood Testicular Choriocarcinoma 5 131610 -NCIT:C8606 Stage II Testicular Choriocarcinoma AJCC v6 and v7 5 131611 -NCIT:C8900 Stage III Testicular Choriocarcinoma AJCC v6 and v7 5 131612 -NCIT:C8907 Stage I Testicular Choriocarcinoma AJCC v6 and v7 5 131613 -NCIT:C4699 Gestational Trophoblastic Tumor 3 131614 -NCIT:C140032 Gestational Trophoblastic Tumor by AJCC v7 Stage 4 131615 -NCIT:C87150 Stage I Gestational Trophoblastic Tumor AJCC v7 5 131616 -NCIT:C87151 Stage IA Gestational Trophoblastic Tumor AJCC v7 6 131617 -NCIT:C87152 Stage IB Gestational Trophoblastic Tumor AJCC v7 6 131618 -NCIT:C87153 Stage II Gestational Trophoblastic Tumor AJCC v7 5 131619 -NCIT:C87154 Stage IIA Gestational Trophoblastic Tumor AJCC v7 6 131620 -NCIT:C87155 Stage IIB Gestational Trophoblastic Tumor AJCC v7 6 131621 -NCIT:C87156 Stage III Gestational Trophoblastic Tumor AJCC v7 5 131622 -NCIT:C87157 Stage IIIA Gestational Trophoblastic Tumor AJCC v7 6 131623 -NCIT:C87158 Stage IIIB Gestational Trophoblastic Tumor AJCC v7 6 131624 -NCIT:C87159 Stage IV Gestational Trophoblastic Tumor AJCC v7 5 131625 -NCIT:C87160 Stage IVA Gestational Trophoblastic Tumor AJCC v7 6 131626 -NCIT:C87161 Stage IVB Gestational Trophoblastic Tumor AJCC v7 6 131627 -NCIT:C180634 Mixed Trophoblastic Tumor 4 131628 -NCIT:C3757 Placental Site Trophoblastic Tumor 4 131629 -NCIT:C4646 Gestational Choriocarcinoma 4 131630 -NCIT:C27246 Uterine Corpus Choriocarcinoma 5 131631 -NCIT:C40442 Ovarian Gestational Choriocarcinoma 5 131632 -NCIT:C6278 Fallopian Tube Gestational Choriocarcinoma 5 131633 -NCIT:C8893 Placental Choriocarcinoma 5 131634 -NCIT:C6900 Epithelioid Trophoblastic Tumor 4 131635 -NCIT:C7887 Recurrent Gestational Trophoblastic Tumor 4 131636 -NCIT:C9176 Non-Metastatic Gestational Trophoblastic Tumor 4 131637 -NCIT:C9177 Good Prognosis Metastatic Gestational Trophoblastic Tumor 4 131638 -NCIT:C9178 Poor Prognosis Metastatic Gestational Trophoblastic Tumor 4 131639 -NCIT:C35562 Neuroepithelial, Perineurial, and Schwann Cell Neoplasm 2 131640 -NCIT:C3787 Neuroepithelial Neoplasm 3 131641 -NCIT:C3059 Glioma 4 131642 -NCIT:C129325 Diffuse Glioma 5 131643 -NCIT:C167335 Astrocytoma, IDH-Mutant, Grade 4 6 131644 -NCIT:C182018 Recurrent Astrocytoma, IDH-Mutant, Grade 4 7 131645 -NCIT:C182151 Diffuse Midline Glioma 6 131646 -NCIT:C182436 Diffuse Non-Pontine Midline Glioma 7 131647 -NCIT:C185368 Diffuse Midline Glioma, H3 K27-Altered 7 131648 -NCIT:C129309 Diffuse Midline Glioma, H3 K27M-Mutant 8 131649 -NCIT:C179222 Recurrent Diffuse Midline Glioma, H3 K27M-Mutant 9 131650 -NCIT:C185369 Diffuse Midline Glioma, EGFR-Mutant 8 131651 -NCIT:C185370 Diffuse Midline Glioma with EZHIP Overexpression 8 131652 -NCIT:C188922 Childhood Diffuse Midline Glioma, H3 K27-Altered 8 131653 -NCIT:C188923 Adult Diffuse Midline Glioma, H3 K27-Altered 8 131654 -NCIT:C94764 Diffuse Intrinsic Pontine Glioma 7 131655 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 8 131656 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 8 131657 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 8 131658 -NCIT:C188925 Adult Diffuse Intrinsic Pontine Glioma 8 131659 -NCIT:C185218 Diffuse Low Grade Glioma, MAPK Pathway-Altered 6 131660 -NCIT:C185219 Diffuse Low Grade Glioma, FGFR1 Tyrosine Kinase Domain-Duplicated 7 131661 -NCIT:C185220 Diffuse Low Grade Glioma, FGFR1-Mutant 7 131662 -NCIT:C185221 Diffuse Low Grade Glioma, BRAF p.V600E-Mutant 7 131663 -NCIT:C185371 Diffuse Hemispheric Glioma, H3 G34-Mutant 6 131664 -NCIT:C188926 Childhood Diffuse Hemispheric Glioma, H3 G34-Mutant 7 131665 -NCIT:C188927 Adult Diffuse Hemispheric Glioma, H3 G34-Mutant 7 131666 -NCIT:C185467 Diffuse Pediatric-Type High Grade Glioma, H3-Wildtype and IDH-Wildtype 6 131667 -NCIT:C185468 Diffuse Pediatric-Type High Grade Glioma RTK2 7 131668 -NCIT:C185469 Diffuse Pediatric-Type High Grade Glioma RTK1 7 131669 -NCIT:C185470 Diffuse Pediatric-Type High Grade Glioma MYCN 7 131670 -NCIT:C3058 Glioblastoma 6 131671 -NCIT:C111691 Glioblastoma by Gene Expression Profile 7 131672 -NCIT:C111692 Proneural Glioblastoma 8 131673 -NCIT:C111693 Neural Glioblastoma 8 131674 -NCIT:C111694 Classical Glioblastoma 8 131675 -NCIT:C111695 Mesenchymal Glioblastoma 8 131676 -NCIT:C126306 Recurrent Glioblastoma 7 131677 -NCIT:C115364 Recurrent Childhood Glioblastoma 8 131678 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 9 131679 -NCIT:C115365 Recurrent Childhood Gliosarcoma 9 131680 -NCIT:C182019 Recurrent Glioblastoma, IDH-Wildtype 8 131681 -NCIT:C131209 Recurrent Gliosarcoma 9 131682 -NCIT:C115365 Recurrent Childhood Gliosarcoma 10 131683 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 9 131684 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 10 131685 -NCIT:C163961 Recurrent Small Cell Glioblastoma 9 131686 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 9 131687 -NCIT:C191198 Recurrent Brain Glioblastoma 8 131688 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 9 131689 -NCIT:C129295 Glioblastoma, Not Otherwise Specified 7 131690 -NCIT:C146734 Refractory Glioblastoma 7 131691 -NCIT:C163960 Refractory Small Cell Glioblastoma 8 131692 -NCIT:C163962 Refractory Gliosarcoma 8 131693 -NCIT:C176998 Refractory Giant Cell Glioblastoma 8 131694 -NCIT:C166156 Resectable Glioblastoma 7 131695 -NCIT:C170979 Metastatic Glioblastoma 7 131696 -NCIT:C170978 Advanced Glioblastoma 8 131697 -NCIT:C170980 Locally Advanced Glioblastoma 8 131698 -NCIT:C176890 Unresectable Glioblastoma 7 131699 -NCIT:C39750 Glioblastoma, IDH-Wildtype 7 131700 -NCIT:C125890 Small Cell Glioblastoma 8 131701 -NCIT:C163960 Refractory Small Cell Glioblastoma 9 131702 -NCIT:C163961 Recurrent Small Cell Glioblastoma 9 131703 -NCIT:C129293 Epithelioid Glioblastoma 8 131704 -NCIT:C129296 Glioblastoma with Primitive Neuronal Component 8 131705 -NCIT:C132902 MGMT-Unmethylated Glioblastoma 8 131706 -NCIT:C154335 MGMT-Methylated Glioblastoma 8 131707 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 9 131708 -NCIT:C182019 Recurrent Glioblastoma, IDH-Wildtype 8 131709 -NCIT:C131209 Recurrent Gliosarcoma 9 131710 -NCIT:C115365 Recurrent Childhood Gliosarcoma 10 131711 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 9 131712 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 10 131713 -NCIT:C163961 Recurrent Small Cell Glioblastoma 9 131714 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 9 131715 -NCIT:C185178 Granular Cell Glioblastoma 8 131716 -NCIT:C185180 Lipidized Glioblastoma 8 131717 -NCIT:C3796 Gliosarcoma 8 131718 -NCIT:C114968 Childhood Gliosarcoma 9 131719 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 131720 -NCIT:C115365 Recurrent Childhood Gliosarcoma 10 131721 -NCIT:C131209 Recurrent Gliosarcoma 9 131722 -NCIT:C115365 Recurrent Childhood Gliosarcoma 10 131723 -NCIT:C163962 Refractory Gliosarcoma 9 131724 -NCIT:C171013 Supratentorial Gliosarcoma 9 131725 -NCIT:C68701 Adult Gliosarcoma 9 131726 -NCIT:C9370 Adult Brain Stem Gliosarcoma 10 131727 -NCIT:C4325 Giant Cell Glioblastoma 8 131728 -NCIT:C114966 Childhood Giant Cell Glioblastoma 9 131729 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 10 131730 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 9 131731 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 10 131732 -NCIT:C176998 Refractory Giant Cell Glioblastoma 9 131733 -NCIT:C68702 Adult Giant Cell Glioblastoma 9 131734 -NCIT:C39751 Secondary Glioblastoma 7 131735 -NCIT:C4642 Brain Glioblastoma 7 131736 -NCIT:C147901 Childhood Brain Glioblastoma 8 131737 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 9 131738 -NCIT:C191198 Recurrent Brain Glioblastoma 8 131739 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 9 131740 -NCIT:C5148 Infratentorial Glioblastoma 8 131741 -NCIT:C5097 Brain Stem Glioblastoma 9 131742 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 131743 -NCIT:C9370 Adult Brain Stem Gliosarcoma 10 131744 -NCIT:C5150 Cerebellar Glioblastoma 9 131745 -NCIT:C5149 Supratentorial Glioblastoma 8 131746 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 9 131747 -NCIT:C5129 Diencephalic Glioblastoma 9 131748 -NCIT:C5151 Cerebral Glioblastoma 9 131749 -NCIT:C171013 Supratentorial Gliosarcoma 10 131750 -NCIT:C9375 Adult Brain Glioblastoma 8 131751 -NCIT:C9370 Adult Brain Stem Gliosarcoma 9 131752 -NCIT:C5136 Childhood Glioblastoma 7 131753 -NCIT:C114966 Childhood Giant Cell Glioblastoma 8 131754 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 9 131755 -NCIT:C114968 Childhood Gliosarcoma 8 131756 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 9 131757 -NCIT:C115365 Recurrent Childhood Gliosarcoma 9 131758 -NCIT:C115364 Recurrent Childhood Glioblastoma 8 131759 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 9 131760 -NCIT:C115365 Recurrent Childhood Gliosarcoma 9 131761 -NCIT:C147901 Childhood Brain Glioblastoma 8 131762 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 9 131763 -NCIT:C9094 Adult Glioblastoma 7 131764 -NCIT:C27183 Adult Spinal Cord Glioblastoma 8 131765 -NCIT:C68701 Adult Gliosarcoma 8 131766 -NCIT:C9370 Adult Brain Stem Gliosarcoma 9 131767 -NCIT:C68702 Adult Giant Cell Glioblastoma 8 131768 -NCIT:C9375 Adult Brain Glioblastoma 8 131769 -NCIT:C9370 Adult Brain Stem Gliosarcoma 9 131770 -NCIT:C92549 Multifocal Glioblastomas 7 131771 -NCIT:C3288 Oligodendroglioma 6 131772 -NCIT:C129318 Oligodendroglioma, IDH-Mutant and 1p/19q-Codeleted 7 131773 -NCIT:C188126 Recurrent Oligodendroglioma, IDH-Mutant and 1p/19q-Codeleted 8 131774 -NCIT:C129319 Oligodendroglioma, Not Otherwise Specified 7 131775 -NCIT:C160737 Recurrent Oligodendroglioma 7 131776 -NCIT:C115371 Recurrent Childhood Oligodendroglioma 8 131777 -NCIT:C188126 Recurrent Oligodendroglioma, IDH-Mutant and 1p/19q-Codeleted 8 131778 -NCIT:C188470 Resectable Oligodendroglioma 7 131779 -NCIT:C4014 Adult Oligodendroglioma 7 131780 -NCIT:C9376 Adult Brain Oligodendroglioma 8 131781 -NCIT:C4045 Childhood Oligodendroglioma 7 131782 -NCIT:C114773 Childhood Brain Oligodendroglioma 8 131783 -NCIT:C115371 Recurrent Childhood Oligodendroglioma 8 131784 -NCIT:C4535 Spinal Cord Oligodendroglioma 7 131785 -NCIT:C9377 Brain Oligodendroglioma 7 131786 -NCIT:C114773 Childhood Brain Oligodendroglioma 8 131787 -NCIT:C9376 Adult Brain Oligodendroglioma 8 131788 -NCIT:C3903 Mixed Glioma 6 131789 -NCIT:C115195 Childhood Mixed Glioma 7 131790 -NCIT:C114760 Childhood Brain Stem Mixed Glioma 8 131791 -NCIT:C114973 Childhood Anaplastic Oligoastrocytoma 8 131792 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 9 131793 -NCIT:C114974 Childhood Oligoastrocytoma 8 131794 -NCIT:C115370 Recurrent Childhood Oligoastrocytoma 9 131795 -NCIT:C115250 Adult Mixed Glioma 7 131796 -NCIT:C9371 Adult Brain Stem Mixed Glioma 8 131797 -NCIT:C4050 Oligoastrocytoma 7 131798 -NCIT:C114974 Childhood Oligoastrocytoma 8 131799 -NCIT:C115370 Recurrent Childhood Oligoastrocytoma 9 131800 -NCIT:C129323 Oligoastrocytoma, Not Otherwise Specified 8 131801 -NCIT:C167082 Recurrent Oligoastrocytoma 8 131802 -NCIT:C115370 Recurrent Childhood Oligoastrocytoma 9 131803 -NCIT:C6959 Anaplastic Oligoastrocytoma 7 131804 -NCIT:C114973 Childhood Anaplastic Oligoastrocytoma 8 131805 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 9 131806 -NCIT:C129324 Anaplastic Oligoastrocytoma, Not Otherwise Specified 8 131807 -NCIT:C142861 Recurrent Anaplastic Oligoastrocytoma 8 131808 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 9 131809 -NCIT:C8271 Mixed Astrocytoma-Ependymoma 7 131810 -NCIT:C8272 Mixed Astrocytoma-Ependymoma-Oligodendroglioma 7 131811 -NCIT:C4326 Anaplastic Oligodendroglioma 6 131812 -NCIT:C129321 Anaplastic Oligodendroglioma, IDH-Mutant and 1p/19q-Codeleted 7 131813 -NCIT:C129322 Anaplastic Oligodendroglioma, Not Otherwise Specified 7 131814 -NCIT:C142862 Recurrent Anaplastic Oligodendroglioma 7 131815 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 8 131816 -NCIT:C156120 Frontal Lobe Anaplastic Oligodendroglioma 7 131817 -NCIT:C169074 Refractory Anaplastic Oligodendroglioma 7 131818 -NCIT:C5447 Childhood Anaplastic Oligodendroglioma 7 131819 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 8 131820 -NCIT:C8270 Adult Anaplastic Oligodendroglioma 7 131821 -NCIT:C7173 Diffuse Astrocytoma 6 131822 -NCIT:C114967 Childhood Diffuse Astrocytoma 7 131823 -NCIT:C114963 Childhood Fibrillary Astrocytoma 8 131824 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 9 131825 -NCIT:C114964 Childhood Gemistocytic Astrocytoma 8 131826 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 9 131827 -NCIT:C114972 Childhood Protoplasmic Astrocytoma 8 131828 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 9 131829 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 8 131830 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 9 131831 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 9 131832 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 9 131833 -NCIT:C188920 Childhood Diffuse Astrocytoma, MYBL1-Altered 8 131834 -NCIT:C188921 Childhood Diffuse Astrocytoma, MYB-Altered 8 131835 -NCIT:C8387 Childhood Cerebral Diffuse Astrocytoma 8 131836 -NCIT:C129271 Astrocytoma, IDH-Mutant, Grade 2 7 131837 -NCIT:C129272 Gemistocytic Astrocytoma, IDH-Mutant 8 131838 -NCIT:C129274 Diffuse Astrocytoma, IDH-Wildtype 7 131839 -NCIT:C185195 Diffuse Astrocytoma, MYB-Altered 8 131840 -NCIT:C188921 Childhood Diffuse Astrocytoma, MYB-Altered 9 131841 -NCIT:C185196 Diffuse Astrocytoma, MYBL1-Altered 8 131842 -NCIT:C188920 Childhood Diffuse Astrocytoma, MYBL1-Altered 9 131843 -NCIT:C129277 Diffuse Astrocytoma, Not Otherwise Specified 7 131844 -NCIT:C167081 Recurrent Diffuse Astrocytoma 7 131845 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 8 131846 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 9 131847 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 9 131848 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 9 131849 -NCIT:C4320 Protoplasmic Astrocytoma 7 131850 -NCIT:C114972 Childhood Protoplasmic Astrocytoma 8 131851 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 9 131852 -NCIT:C4321 Gemistocytic Astrocytoma 7 131853 -NCIT:C114964 Childhood Gemistocytic Astrocytoma 8 131854 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 9 131855 -NCIT:C129272 Gemistocytic Astrocytoma, IDH-Mutant 8 131856 -NCIT:C4322 Fibrillary Astrocytoma 7 131857 -NCIT:C114963 Childhood Fibrillary Astrocytoma 8 131858 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 9 131859 -NCIT:C7174 Adult Diffuse Astrocytoma 7 131860 -NCIT:C9477 Anaplastic Astrocytoma 6 131861 -NCIT:C129290 Astrocytoma, IDH-Mutant, Grade 3 7 131862 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 8 131863 -NCIT:C129291 Anaplastic Astrocytoma, IDH-Wildtype 7 131864 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 8 131865 -NCIT:C129292 Anaplastic Astrocytoma, Not Otherwise Specified 7 131866 -NCIT:C136517 Recurrent Anaplastic Astrocytoma 7 131867 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 8 131868 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 8 131869 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 8 131870 -NCIT:C169075 Refractory Anaplastic Astrocytoma 7 131871 -NCIT:C185879 High Grade Astrocytoma with Piloid Features 7 131872 -NCIT:C5123 Hemispheric Anaplastic Astrocytoma 7 131873 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 8 131874 -NCIT:C156035 Frontal Lobe Anaplastic Astrocytoma 8 131875 -NCIT:C156036 Temporal Lobe Anaplastic Astrocytoma 8 131876 -NCIT:C171036 Parietal Lobe Anaplastic Astrocytoma 8 131877 -NCIT:C5124 Anaplastic Diencephalic Astrocytoma 7 131878 -NCIT:C5416 Secondary Supratentorial Anaplastic Astrocytoma 7 131879 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 7 131880 -NCIT:C6215 Childhood Anaplastic Astrocytoma 7 131881 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 8 131882 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 8 131883 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 9 131884 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 9 131885 -NCIT:C8257 Adult Anaplastic Astrocytoma 7 131886 -NCIT:C132067 Low Grade Glioma 5 131887 -NCIT:C116342 Low Grade Astrocytoma 6 131888 -NCIT:C176464 Recurrent Low Grade Astrocytoma 7 131889 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 8 131890 -NCIT:C167081 Recurrent Diffuse Astrocytoma 8 131891 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 9 131892 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 10 131893 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 10 131894 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 10 131895 -NCIT:C179220 Recurrent Pilocytic Astrocytoma 8 131896 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 9 131897 -NCIT:C177795 Refractory Low Grade Astrocytoma 7 131898 -NCIT:C178559 Metastatic Low Grade Astrocytoma 7 131899 -NCIT:C3696 Subependymal Giant Cell Astrocytoma 7 131900 -NCIT:C114785 Childhood Subependymal Giant Cell Astrocytoma 8 131901 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 9 131902 -NCIT:C71017 Adult Subependymal Giant Cell Astrocytoma 8 131903 -NCIT:C4047 Pilocytic Astrocytoma 7 131904 -NCIT:C156037 Third Ventricle Pilocytic Astrocytoma 8 131905 -NCIT:C179220 Recurrent Pilocytic Astrocytoma 8 131906 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 9 131907 -NCIT:C4048 Childhood Pilocytic Astrocytoma 8 131908 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 9 131909 -NCIT:C27081 Juvenile Pilocytic Astrocytoma 9 131910 -NCIT:C6809 Cerebellar Pilocytic Astrocytoma 8 131911 -NCIT:C71016 Adult Pilocytic Astrocytoma 8 131912 -NCIT:C7173 Diffuse Astrocytoma 7 131913 -NCIT:C114967 Childhood Diffuse Astrocytoma 8 131914 -NCIT:C114963 Childhood Fibrillary Astrocytoma 9 131915 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 10 131916 -NCIT:C114964 Childhood Gemistocytic Astrocytoma 9 131917 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 10 131918 -NCIT:C114972 Childhood Protoplasmic Astrocytoma 9 131919 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 10 131920 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 9 131921 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 10 131922 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 10 131923 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 10 131924 -NCIT:C188920 Childhood Diffuse Astrocytoma, MYBL1-Altered 9 131925 -NCIT:C188921 Childhood Diffuse Astrocytoma, MYB-Altered 9 131926 -NCIT:C8387 Childhood Cerebral Diffuse Astrocytoma 9 131927 -NCIT:C129271 Astrocytoma, IDH-Mutant, Grade 2 8 131928 -NCIT:C129272 Gemistocytic Astrocytoma, IDH-Mutant 9 131929 -NCIT:C129274 Diffuse Astrocytoma, IDH-Wildtype 8 131930 -NCIT:C185195 Diffuse Astrocytoma, MYB-Altered 9 131931 -NCIT:C188921 Childhood Diffuse Astrocytoma, MYB-Altered 10 131932 -NCIT:C185196 Diffuse Astrocytoma, MYBL1-Altered 9 131933 -NCIT:C188920 Childhood Diffuse Astrocytoma, MYBL1-Altered 10 131934 -NCIT:C129277 Diffuse Astrocytoma, Not Otherwise Specified 8 131935 -NCIT:C167081 Recurrent Diffuse Astrocytoma 8 131936 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 9 131937 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 10 131938 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 10 131939 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 10 131940 -NCIT:C4320 Protoplasmic Astrocytoma 8 131941 -NCIT:C114972 Childhood Protoplasmic Astrocytoma 9 131942 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 10 131943 -NCIT:C4321 Gemistocytic Astrocytoma 8 131944 -NCIT:C114964 Childhood Gemistocytic Astrocytoma 9 131945 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 10 131946 -NCIT:C129272 Gemistocytic Astrocytoma, IDH-Mutant 9 131947 -NCIT:C4322 Fibrillary Astrocytoma 8 131948 -NCIT:C114963 Childhood Fibrillary Astrocytoma 9 131949 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 10 131950 -NCIT:C7174 Adult Diffuse Astrocytoma 8 131951 -NCIT:C132505 WHO Grade 2 Glioma 6 131952 -NCIT:C148037 Recurrent WHO Grade 2 Glioma 7 131953 -NCIT:C157601 Recurrent Ependymoma 8 131954 -NCIT:C8579 Recurrent Childhood Ependymoma 9 131955 -NCIT:C160737 Recurrent Oligodendroglioma 8 131956 -NCIT:C115371 Recurrent Childhood Oligodendroglioma 9 131957 -NCIT:C188126 Recurrent Oligodendroglioma, IDH-Mutant and 1p/19q-Codeleted 9 131958 -NCIT:C167081 Recurrent Diffuse Astrocytoma 8 131959 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 9 131960 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 10 131961 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 10 131962 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 10 131963 -NCIT:C167082 Recurrent Oligoastrocytoma 8 131964 -NCIT:C115370 Recurrent Childhood Oligoastrocytoma 9 131965 -NCIT:C158104 Refractory WHO Grade 2 Glioma 7 131966 -NCIT:C147108 Refractory Ependymoma 8 131967 -NCIT:C3017 Ependymoma 7 131968 -NCIT:C147108 Refractory Ependymoma 8 131969 -NCIT:C156462 Brain Ependymoma 8 131970 -NCIT:C186343 Supratentorial Ependymoma 9 131971 -NCIT:C186348 Supratentorial Ependymoma, Not Elsewhere Classified 10 131972 -NCIT:C186349 Supratentorial Ependymoma, Not Otherwise Specified 10 131973 -NCIT:C9043 Childhood Supratentorial Ependymoma, Not Otherwise Specified 11 131974 -NCIT:C6268 Childhood Cerebral Ependymoma, Not Otherwise Specified 12 131975 -NCIT:C186350 Supratentorial Ependymoma ZFTA Fusion-Positive 9 131976 -NCIT:C129351 Supratentorial Ependymoma, ZFTA-RELA Fusion-Positive 10 131977 -NCIT:C188935 Childhood Supratentorial Ependymoma ZFTA Fusion-Positive 10 131978 -NCIT:C188938 Adult Supratentorial Ependymoma ZFTA Fusion-Positive 10 131979 -NCIT:C186351 Supratentorial Ependymoma YAP1 Fusion-Positive 9 131980 -NCIT:C186355 Supratentorial Ependymoma, YAP1-MAMLD1 Fusion-Positive 10 131981 -NCIT:C186443 Posterior Fossa Ependymoma 9 131982 -NCIT:C186448 Posterior Fossa Ependymoma, Not Elsewhere Classified 10 131983 -NCIT:C186449 Posterior Fossa Ependymoma, Not Otherwise Specified 10 131984 -NCIT:C188943 Childhood Posterior Fossa Ependymoma 10 131985 -NCIT:C188945 Adult Posterior Fossa Ependymoma 10 131986 -NCIT:C186450 Posterior Fossa Ependymoma, Group A (PFA) 9 131987 -NCIT:C186451 Posterior Fossa Ependymoma, Group B (PFB) 9 131988 -NCIT:C5098 Brain Stem Ependymoma 9 131989 -NCIT:C9041 Childhood Infratentorial Ependymoma 9 131990 -NCIT:C9372 Adult Brain Ependymoma 9 131991 -NCIT:C188938 Adult Supratentorial Ependymoma ZFTA Fusion-Positive 10 131992 -NCIT:C188945 Adult Posterior Fossa Ependymoma 10 131993 -NCIT:C157601 Recurrent Ependymoma 8 131994 -NCIT:C8579 Recurrent Childhood Ependymoma 9 131995 -NCIT:C186494 Spinal Cord Ependymoma, MYCN Amplified 8 131996 -NCIT:C3875 Spinal Cord Ependymoma 8 131997 -NCIT:C186495 Childhood Spinal Cord Ependymoma 9 131998 -NCIT:C27399 Adult Spinal Cord Ependymoma 9 131999 -NCIT:C4319 Papillary Ependymoma 8 132000 -NCIT:C4713 Cellular Ependymoma 8 132001 -NCIT:C4714 Clear Cell Ependymoma 8 132002 -NCIT:C6903 Tanycytic Ependymoma 8 132003 -NCIT:C8578 Childhood Ependymoma 8 132004 -NCIT:C186351 Supratentorial Ependymoma YAP1 Fusion-Positive 9 132005 -NCIT:C186355 Supratentorial Ependymoma, YAP1-MAMLD1 Fusion-Positive 10 132006 -NCIT:C186495 Childhood Spinal Cord Ependymoma 9 132007 -NCIT:C188935 Childhood Supratentorial Ependymoma ZFTA Fusion-Positive 9 132008 -NCIT:C188943 Childhood Posterior Fossa Ependymoma 9 132009 -NCIT:C8579 Recurrent Childhood Ependymoma 9 132010 -NCIT:C9041 Childhood Infratentorial Ependymoma 9 132011 -NCIT:C9043 Childhood Supratentorial Ependymoma, Not Otherwise Specified 9 132012 -NCIT:C6268 Childhood Cerebral Ependymoma, Not Otherwise Specified 10 132013 -NCIT:C9092 Adult Ependymoma 8 132014 -NCIT:C27399 Adult Spinal Cord Ependymoma 9 132015 -NCIT:C9372 Adult Brain Ependymoma 9 132016 -NCIT:C188938 Adult Supratentorial Ependymoma ZFTA Fusion-Positive 10 132017 -NCIT:C188945 Adult Posterior Fossa Ependymoma 10 132018 -NCIT:C3288 Oligodendroglioma 7 132019 -NCIT:C129318 Oligodendroglioma, IDH-Mutant and 1p/19q-Codeleted 8 132020 -NCIT:C188126 Recurrent Oligodendroglioma, IDH-Mutant and 1p/19q-Codeleted 9 132021 -NCIT:C129319 Oligodendroglioma, Not Otherwise Specified 8 132022 -NCIT:C160737 Recurrent Oligodendroglioma 8 132023 -NCIT:C115371 Recurrent Childhood Oligodendroglioma 9 132024 -NCIT:C188126 Recurrent Oligodendroglioma, IDH-Mutant and 1p/19q-Codeleted 9 132025 -NCIT:C188470 Resectable Oligodendroglioma 8 132026 -NCIT:C4014 Adult Oligodendroglioma 8 132027 -NCIT:C9376 Adult Brain Oligodendroglioma 9 132028 -NCIT:C4045 Childhood Oligodendroglioma 8 132029 -NCIT:C114773 Childhood Brain Oligodendroglioma 9 132030 -NCIT:C115371 Recurrent Childhood Oligodendroglioma 9 132031 -NCIT:C4535 Spinal Cord Oligodendroglioma 8 132032 -NCIT:C9377 Brain Oligodendroglioma 8 132033 -NCIT:C114773 Childhood Brain Oligodendroglioma 9 132034 -NCIT:C9376 Adult Brain Oligodendroglioma 9 132035 -NCIT:C4050 Oligoastrocytoma 7 132036 -NCIT:C114974 Childhood Oligoastrocytoma 8 132037 -NCIT:C115370 Recurrent Childhood Oligoastrocytoma 9 132038 -NCIT:C129323 Oligoastrocytoma, Not Otherwise Specified 8 132039 -NCIT:C167082 Recurrent Oligoastrocytoma 8 132040 -NCIT:C115370 Recurrent Childhood Oligoastrocytoma 9 132041 -NCIT:C7173 Diffuse Astrocytoma 7 132042 -NCIT:C114967 Childhood Diffuse Astrocytoma 8 132043 -NCIT:C114963 Childhood Fibrillary Astrocytoma 9 132044 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 10 132045 -NCIT:C114964 Childhood Gemistocytic Astrocytoma 9 132046 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 10 132047 -NCIT:C114972 Childhood Protoplasmic Astrocytoma 9 132048 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 10 132049 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 9 132050 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 10 132051 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 10 132052 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 10 132053 -NCIT:C188920 Childhood Diffuse Astrocytoma, MYBL1-Altered 9 132054 -NCIT:C188921 Childhood Diffuse Astrocytoma, MYB-Altered 9 132055 -NCIT:C8387 Childhood Cerebral Diffuse Astrocytoma 9 132056 -NCIT:C129271 Astrocytoma, IDH-Mutant, Grade 2 8 132057 -NCIT:C129272 Gemistocytic Astrocytoma, IDH-Mutant 9 132058 -NCIT:C129274 Diffuse Astrocytoma, IDH-Wildtype 8 132059 -NCIT:C185195 Diffuse Astrocytoma, MYB-Altered 9 132060 -NCIT:C188921 Childhood Diffuse Astrocytoma, MYB-Altered 10 132061 -NCIT:C185196 Diffuse Astrocytoma, MYBL1-Altered 9 132062 -NCIT:C188920 Childhood Diffuse Astrocytoma, MYBL1-Altered 10 132063 -NCIT:C129277 Diffuse Astrocytoma, Not Otherwise Specified 8 132064 -NCIT:C167081 Recurrent Diffuse Astrocytoma 8 132065 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 9 132066 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 10 132067 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 10 132068 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 10 132069 -NCIT:C4320 Protoplasmic Astrocytoma 8 132070 -NCIT:C114972 Childhood Protoplasmic Astrocytoma 9 132071 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 10 132072 -NCIT:C4321 Gemistocytic Astrocytoma 8 132073 -NCIT:C114964 Childhood Gemistocytic Astrocytoma 9 132074 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 10 132075 -NCIT:C129272 Gemistocytic Astrocytoma, IDH-Mutant 9 132076 -NCIT:C4322 Fibrillary Astrocytoma 8 132077 -NCIT:C114963 Childhood Fibrillary Astrocytoma 9 132078 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 10 132079 -NCIT:C7174 Adult Diffuse Astrocytoma 8 132080 -NCIT:C155829 Unresectable Low Grade Glioma 6 132081 -NCIT:C177793 Refractory Low Grade Glioma 6 132082 -NCIT:C158104 Refractory WHO Grade 2 Glioma 7 132083 -NCIT:C147108 Refractory Ependymoma 8 132084 -NCIT:C177795 Refractory Low Grade Astrocytoma 7 132085 -NCIT:C177798 Refractory WHO Grade 1 Glioma 7 132086 -NCIT:C177794 Recurrent Low Grade Glioma 6 132087 -NCIT:C148037 Recurrent WHO Grade 2 Glioma 7 132088 -NCIT:C157601 Recurrent Ependymoma 8 132089 -NCIT:C8579 Recurrent Childhood Ependymoma 9 132090 -NCIT:C160737 Recurrent Oligodendroglioma 8 132091 -NCIT:C115371 Recurrent Childhood Oligodendroglioma 9 132092 -NCIT:C188126 Recurrent Oligodendroglioma, IDH-Mutant and 1p/19q-Codeleted 9 132093 -NCIT:C167081 Recurrent Diffuse Astrocytoma 8 132094 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 9 132095 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 10 132096 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 10 132097 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 10 132098 -NCIT:C167082 Recurrent Oligoastrocytoma 8 132099 -NCIT:C115370 Recurrent Childhood Oligoastrocytoma 9 132100 -NCIT:C176464 Recurrent Low Grade Astrocytoma 7 132101 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 8 132102 -NCIT:C167081 Recurrent Diffuse Astrocytoma 8 132103 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 9 132104 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 10 132105 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 10 132106 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 10 132107 -NCIT:C179220 Recurrent Pilocytic Astrocytoma 8 132108 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 9 132109 -NCIT:C177796 Recurrent WHO Grade 1 Glioma 7 132110 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 8 132111 -NCIT:C179220 Recurrent Pilocytic Astrocytoma 8 132112 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 9 132113 -NCIT:C177797 WHO Grade 1 Glioma 6 132114 -NCIT:C177796 Recurrent WHO Grade 1 Glioma 7 132115 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 8 132116 -NCIT:C179220 Recurrent Pilocytic Astrocytoma 8 132117 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 9 132118 -NCIT:C177798 Refractory WHO Grade 1 Glioma 7 132119 -NCIT:C3696 Subependymal Giant Cell Astrocytoma 7 132120 -NCIT:C114785 Childhood Subependymal Giant Cell Astrocytoma 8 132121 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 9 132122 -NCIT:C71017 Adult Subependymal Giant Cell Astrocytoma 8 132123 -NCIT:C3795 Subependymoma 7 132124 -NCIT:C115623 Adult Subependymoma 8 132125 -NCIT:C4047 Pilocytic Astrocytoma 7 132126 -NCIT:C156037 Third Ventricle Pilocytic Astrocytoma 8 132127 -NCIT:C179220 Recurrent Pilocytic Astrocytoma 8 132128 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 9 132129 -NCIT:C4048 Childhood Pilocytic Astrocytoma 8 132130 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 9 132131 -NCIT:C27081 Juvenile Pilocytic Astrocytoma 9 132132 -NCIT:C6809 Cerebellar Pilocytic Astrocytoma 8 132133 -NCIT:C71016 Adult Pilocytic Astrocytoma 8 132134 -NCIT:C92552 Angiocentric Glioma 7 132135 -NCIT:C178558 Metastatic Low Grade Glioma 6 132136 -NCIT:C178559 Metastatic Low Grade Astrocytoma 7 132137 -NCIT:C185218 Diffuse Low Grade Glioma, MAPK Pathway-Altered 6 132138 -NCIT:C185219 Diffuse Low Grade Glioma, FGFR1 Tyrosine Kinase Domain-Duplicated 7 132139 -NCIT:C185220 Diffuse Low Grade Glioma, FGFR1-Mutant 7 132140 -NCIT:C185221 Diffuse Low Grade Glioma, BRAF p.V600E-Mutant 7 132141 -NCIT:C132506 Recurrent Glioma 5 132142 -NCIT:C114956 Recurrent Childhood Astrocytic Tumor 6 132143 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 7 132144 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 7 132145 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 8 132146 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 8 132147 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 8 132148 -NCIT:C115364 Recurrent Childhood Glioblastoma 7 132149 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 8 132150 -NCIT:C115365 Recurrent Childhood Gliosarcoma 8 132151 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 7 132152 -NCIT:C115373 Recurrent Childhood Pilomyxoid Astrocytoma 7 132153 -NCIT:C115375 Recurrent Childhood Pleomorphic Xanthoastrocytoma 7 132154 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 7 132155 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 7 132156 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 7 132157 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 8 132158 -NCIT:C8389 Recurrent Childhood Cerebellar Astrocytoma 7 132159 -NCIT:C9191 Recurrent Childhood Cerebral Astrocytoma 7 132160 -NCIT:C131617 Recurrent Ependymal Tumor 6 132161 -NCIT:C157601 Recurrent Ependymoma 7 132162 -NCIT:C8579 Recurrent Childhood Ependymoma 8 132163 -NCIT:C160912 Recurrent Anaplastic Ependymoma 7 132164 -NCIT:C142848 Recurrent Malignant Glioma 6 132165 -NCIT:C126306 Recurrent Glioblastoma 7 132166 -NCIT:C115364 Recurrent Childhood Glioblastoma 8 132167 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 9 132168 -NCIT:C115365 Recurrent Childhood Gliosarcoma 9 132169 -NCIT:C182019 Recurrent Glioblastoma, IDH-Wildtype 8 132170 -NCIT:C131209 Recurrent Gliosarcoma 9 132171 -NCIT:C115365 Recurrent Childhood Gliosarcoma 10 132172 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 9 132173 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 10 132174 -NCIT:C163961 Recurrent Small Cell Glioblastoma 9 132175 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 9 132176 -NCIT:C191198 Recurrent Brain Glioblastoma 8 132177 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 9 132178 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 7 132179 -NCIT:C148038 Recurrent WHO Grade 3 Glioma 7 132180 -NCIT:C136517 Recurrent Anaplastic Astrocytoma 8 132181 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 9 132182 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 9 132183 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 9 132184 -NCIT:C142861 Recurrent Anaplastic Oligoastrocytoma 8 132185 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 9 132186 -NCIT:C142862 Recurrent Anaplastic Oligodendroglioma 8 132187 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 9 132188 -NCIT:C160904 Recurrent Anaplastic Pleomorphic Xanthoastrocytoma 8 132189 -NCIT:C160912 Recurrent Anaplastic Ependymoma 8 132190 -NCIT:C179222 Recurrent Diffuse Midline Glioma, H3 K27M-Mutant 7 132191 -NCIT:C182018 Recurrent Astrocytoma, IDH-Mutant, Grade 4 7 132192 -NCIT:C155983 Recurrent Visual Pathway Glioma 6 132193 -NCIT:C7529 Recurrent Childhood Visual Pathway Glioma 7 132194 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 8 132195 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 9 132196 -NCIT:C7531 Recurrent Childhood Optic Nerve Glioma 8 132197 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 9 132198 -NCIT:C177794 Recurrent Low Grade Glioma 6 132199 -NCIT:C148037 Recurrent WHO Grade 2 Glioma 7 132200 -NCIT:C157601 Recurrent Ependymoma 8 132201 -NCIT:C8579 Recurrent Childhood Ependymoma 9 132202 -NCIT:C160737 Recurrent Oligodendroglioma 8 132203 -NCIT:C115371 Recurrent Childhood Oligodendroglioma 9 132204 -NCIT:C188126 Recurrent Oligodendroglioma, IDH-Mutant and 1p/19q-Codeleted 9 132205 -NCIT:C167081 Recurrent Diffuse Astrocytoma 8 132206 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 9 132207 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 10 132208 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 10 132209 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 10 132210 -NCIT:C167082 Recurrent Oligoastrocytoma 8 132211 -NCIT:C115370 Recurrent Childhood Oligoastrocytoma 9 132212 -NCIT:C176464 Recurrent Low Grade Astrocytoma 7 132213 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 8 132214 -NCIT:C167081 Recurrent Diffuse Astrocytoma 8 132215 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 9 132216 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 10 132217 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 10 132218 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 10 132219 -NCIT:C179220 Recurrent Pilocytic Astrocytoma 8 132220 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 9 132221 -NCIT:C177796 Recurrent WHO Grade 1 Glioma 7 132222 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 8 132223 -NCIT:C179220 Recurrent Pilocytic Astrocytoma 8 132224 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 9 132225 -NCIT:C180408 Recurrent Tectal Glioma 6 132226 -NCIT:C188127 Recurrent Astrocytoma, IDH-Mutant 6 132227 -NCIT:C182018 Recurrent Astrocytoma, IDH-Mutant, Grade 4 7 132228 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 7 132229 -NCIT:C9190 Recurrent Childhood Brain Stem Glioma 6 132230 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 7 132231 -NCIT:C147107 Refractory Glioma 5 132232 -NCIT:C142855 Refractory Malignant Glioma 6 132233 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 7 132234 -NCIT:C146734 Refractory Glioblastoma 7 132235 -NCIT:C163960 Refractory Small Cell Glioblastoma 8 132236 -NCIT:C163962 Refractory Gliosarcoma 8 132237 -NCIT:C176998 Refractory Giant Cell Glioblastoma 8 132238 -NCIT:C153865 Refractory WHO Grade 3 Glioma 7 132239 -NCIT:C160905 Refractory Anaplastic Pleomorphic Xanthoastrocytoma 8 132240 -NCIT:C160913 Refractory Anaplastic Ependymoma 8 132241 -NCIT:C169074 Refractory Anaplastic Oligodendroglioma 8 132242 -NCIT:C169075 Refractory Anaplastic Astrocytoma 8 132243 -NCIT:C155984 Refractory Visual Pathway Glioma 6 132244 -NCIT:C177793 Refractory Low Grade Glioma 6 132245 -NCIT:C158104 Refractory WHO Grade 2 Glioma 7 132246 -NCIT:C147108 Refractory Ependymoma 8 132247 -NCIT:C177795 Refractory Low Grade Astrocytoma 7 132248 -NCIT:C177798 Refractory WHO Grade 1 Glioma 7 132249 -NCIT:C168573 Resectable Glioma 5 132250 -NCIT:C166156 Resectable Glioblastoma 6 132251 -NCIT:C188469 Resectable Astrocytoma 6 132252 -NCIT:C188470 Resectable Oligodendroglioma 6 132253 -NCIT:C173846 Bilateral Thalamic Glioma 5 132254 -NCIT:C176889 Unresectable Glioma 5 132255 -NCIT:C155829 Unresectable Low Grade Glioma 6 132256 -NCIT:C176890 Unresectable Glioblastoma 6 132257 -NCIT:C180407 Tectal Glioma 5 132258 -NCIT:C180408 Recurrent Tectal Glioma 6 132259 -NCIT:C4324 Astroblastoma, MN1-Altered 5 132260 -NCIT:C188929 Childhood Astroblastoma, MN1-Altered 6 132261 -NCIT:C188930 Adult Astroblastoma, MN1-Altered 6 132262 -NCIT:C84347 Anaplastic Astroblastoma, MN1-Altered 6 132263 -NCIT:C4534 Spinal Cord Glioma 5 132264 -NCIT:C186494 Spinal Cord Ependymoma, MYCN Amplified 6 132265 -NCIT:C3875 Spinal Cord Ependymoma 6 132266 -NCIT:C186495 Childhood Spinal Cord Ependymoma 7 132267 -NCIT:C27399 Adult Spinal Cord Ependymoma 7 132268 -NCIT:C4535 Spinal Cord Oligodendroglioma 6 132269 -NCIT:C4641 Spinal Cord Astrocytoma 6 132270 -NCIT:C4822 Malignant Glioma 5 132271 -NCIT:C102897 High Grade Astrocytic Tumor 6 132272 -NCIT:C167335 Astrocytoma, IDH-Mutant, Grade 4 7 132273 -NCIT:C182018 Recurrent Astrocytoma, IDH-Mutant, Grade 4 8 132274 -NCIT:C3058 Glioblastoma 7 132275 -NCIT:C111691 Glioblastoma by Gene Expression Profile 8 132276 -NCIT:C111692 Proneural Glioblastoma 9 132277 -NCIT:C111693 Neural Glioblastoma 9 132278 -NCIT:C111694 Classical Glioblastoma 9 132279 -NCIT:C111695 Mesenchymal Glioblastoma 9 132280 -NCIT:C126306 Recurrent Glioblastoma 8 132281 -NCIT:C115364 Recurrent Childhood Glioblastoma 9 132282 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 10 132283 -NCIT:C115365 Recurrent Childhood Gliosarcoma 10 132284 -NCIT:C182019 Recurrent Glioblastoma, IDH-Wildtype 9 132285 -NCIT:C131209 Recurrent Gliosarcoma 10 132286 -NCIT:C115365 Recurrent Childhood Gliosarcoma 11 132287 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 10 132288 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 11 132289 -NCIT:C163961 Recurrent Small Cell Glioblastoma 10 132290 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 10 132291 -NCIT:C191198 Recurrent Brain Glioblastoma 9 132292 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 10 132293 -NCIT:C129295 Glioblastoma, Not Otherwise Specified 8 132294 -NCIT:C146734 Refractory Glioblastoma 8 132295 -NCIT:C163960 Refractory Small Cell Glioblastoma 9 132296 -NCIT:C163962 Refractory Gliosarcoma 9 132297 -NCIT:C176998 Refractory Giant Cell Glioblastoma 9 132298 -NCIT:C166156 Resectable Glioblastoma 8 132299 -NCIT:C170979 Metastatic Glioblastoma 8 132300 -NCIT:C170978 Advanced Glioblastoma 9 132301 -NCIT:C170980 Locally Advanced Glioblastoma 9 132302 -NCIT:C176890 Unresectable Glioblastoma 8 132303 -NCIT:C39750 Glioblastoma, IDH-Wildtype 8 132304 -NCIT:C125890 Small Cell Glioblastoma 9 132305 -NCIT:C163960 Refractory Small Cell Glioblastoma 10 132306 -NCIT:C163961 Recurrent Small Cell Glioblastoma 10 132307 -NCIT:C129293 Epithelioid Glioblastoma 9 132308 -NCIT:C129296 Glioblastoma with Primitive Neuronal Component 9 132309 -NCIT:C132902 MGMT-Unmethylated Glioblastoma 9 132310 -NCIT:C154335 MGMT-Methylated Glioblastoma 9 132311 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 10 132312 -NCIT:C182019 Recurrent Glioblastoma, IDH-Wildtype 9 132313 -NCIT:C131209 Recurrent Gliosarcoma 10 132314 -NCIT:C115365 Recurrent Childhood Gliosarcoma 11 132315 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 10 132316 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 11 132317 -NCIT:C163961 Recurrent Small Cell Glioblastoma 10 132318 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 10 132319 -NCIT:C185178 Granular Cell Glioblastoma 9 132320 -NCIT:C185180 Lipidized Glioblastoma 9 132321 -NCIT:C3796 Gliosarcoma 9 132322 -NCIT:C114968 Childhood Gliosarcoma 10 132323 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 11 132324 -NCIT:C115365 Recurrent Childhood Gliosarcoma 11 132325 -NCIT:C131209 Recurrent Gliosarcoma 10 132326 -NCIT:C115365 Recurrent Childhood Gliosarcoma 11 132327 -NCIT:C163962 Refractory Gliosarcoma 10 132328 -NCIT:C171013 Supratentorial Gliosarcoma 10 132329 -NCIT:C68701 Adult Gliosarcoma 10 132330 -NCIT:C9370 Adult Brain Stem Gliosarcoma 11 132331 -NCIT:C4325 Giant Cell Glioblastoma 9 132332 -NCIT:C114966 Childhood Giant Cell Glioblastoma 10 132333 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 11 132334 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 10 132335 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 11 132336 -NCIT:C176998 Refractory Giant Cell Glioblastoma 10 132337 -NCIT:C68702 Adult Giant Cell Glioblastoma 10 132338 -NCIT:C39751 Secondary Glioblastoma 8 132339 -NCIT:C4642 Brain Glioblastoma 8 132340 -NCIT:C147901 Childhood Brain Glioblastoma 9 132341 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 132342 -NCIT:C191198 Recurrent Brain Glioblastoma 9 132343 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 10 132344 -NCIT:C5148 Infratentorial Glioblastoma 9 132345 -NCIT:C5097 Brain Stem Glioblastoma 10 132346 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 11 132347 -NCIT:C9370 Adult Brain Stem Gliosarcoma 11 132348 -NCIT:C5150 Cerebellar Glioblastoma 10 132349 -NCIT:C5149 Supratentorial Glioblastoma 9 132350 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 10 132351 -NCIT:C5129 Diencephalic Glioblastoma 10 132352 -NCIT:C5151 Cerebral Glioblastoma 10 132353 -NCIT:C171013 Supratentorial Gliosarcoma 11 132354 -NCIT:C9375 Adult Brain Glioblastoma 9 132355 -NCIT:C9370 Adult Brain Stem Gliosarcoma 10 132356 -NCIT:C5136 Childhood Glioblastoma 8 132357 -NCIT:C114966 Childhood Giant Cell Glioblastoma 9 132358 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 10 132359 -NCIT:C114968 Childhood Gliosarcoma 9 132360 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 132361 -NCIT:C115365 Recurrent Childhood Gliosarcoma 10 132362 -NCIT:C115364 Recurrent Childhood Glioblastoma 9 132363 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 10 132364 -NCIT:C115365 Recurrent Childhood Gliosarcoma 10 132365 -NCIT:C147901 Childhood Brain Glioblastoma 9 132366 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 132367 -NCIT:C9094 Adult Glioblastoma 8 132368 -NCIT:C27183 Adult Spinal Cord Glioblastoma 9 132369 -NCIT:C68701 Adult Gliosarcoma 9 132370 -NCIT:C9370 Adult Brain Stem Gliosarcoma 10 132371 -NCIT:C68702 Adult Giant Cell Glioblastoma 9 132372 -NCIT:C9375 Adult Brain Glioblastoma 9 132373 -NCIT:C9370 Adult Brain Stem Gliosarcoma 10 132374 -NCIT:C92549 Multifocal Glioblastomas 8 132375 -NCIT:C9477 Anaplastic Astrocytoma 7 132376 -NCIT:C129290 Astrocytoma, IDH-Mutant, Grade 3 8 132377 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 9 132378 -NCIT:C129291 Anaplastic Astrocytoma, IDH-Wildtype 8 132379 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 9 132380 -NCIT:C129292 Anaplastic Astrocytoma, Not Otherwise Specified 8 132381 -NCIT:C136517 Recurrent Anaplastic Astrocytoma 8 132382 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 9 132383 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 9 132384 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 9 132385 -NCIT:C169075 Refractory Anaplastic Astrocytoma 8 132386 -NCIT:C185879 High Grade Astrocytoma with Piloid Features 8 132387 -NCIT:C5123 Hemispheric Anaplastic Astrocytoma 8 132388 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 9 132389 -NCIT:C156035 Frontal Lobe Anaplastic Astrocytoma 9 132390 -NCIT:C156036 Temporal Lobe Anaplastic Astrocytoma 9 132391 -NCIT:C171036 Parietal Lobe Anaplastic Astrocytoma 9 132392 -NCIT:C5124 Anaplastic Diencephalic Astrocytoma 8 132393 -NCIT:C5416 Secondary Supratentorial Anaplastic Astrocytoma 8 132394 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 8 132395 -NCIT:C6215 Childhood Anaplastic Astrocytoma 8 132396 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 9 132397 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 9 132398 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 10 132399 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 10 132400 -NCIT:C8257 Adult Anaplastic Astrocytoma 8 132401 -NCIT:C127816 WHO Grade 3 Glioma 6 132402 -NCIT:C129327 Anaplastic Pleomorphic Xanthoastrocytoma 7 132403 -NCIT:C160904 Recurrent Anaplastic Pleomorphic Xanthoastrocytoma 8 132404 -NCIT:C160905 Refractory Anaplastic Pleomorphic Xanthoastrocytoma 8 132405 -NCIT:C148038 Recurrent WHO Grade 3 Glioma 7 132406 -NCIT:C136517 Recurrent Anaplastic Astrocytoma 8 132407 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 9 132408 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 9 132409 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 9 132410 -NCIT:C142861 Recurrent Anaplastic Oligoastrocytoma 8 132411 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 9 132412 -NCIT:C142862 Recurrent Anaplastic Oligodendroglioma 8 132413 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 9 132414 -NCIT:C160904 Recurrent Anaplastic Pleomorphic Xanthoastrocytoma 8 132415 -NCIT:C160912 Recurrent Anaplastic Ependymoma 8 132416 -NCIT:C153865 Refractory WHO Grade 3 Glioma 7 132417 -NCIT:C160905 Refractory Anaplastic Pleomorphic Xanthoastrocytoma 8 132418 -NCIT:C160913 Refractory Anaplastic Ependymoma 8 132419 -NCIT:C169074 Refractory Anaplastic Oligodendroglioma 8 132420 -NCIT:C169075 Refractory Anaplastic Astrocytoma 8 132421 -NCIT:C4049 Anaplastic Ependymoma 7 132422 -NCIT:C124293 Childhood Anaplastic Ependymoma 8 132423 -NCIT:C160912 Recurrent Anaplastic Ependymoma 8 132424 -NCIT:C160913 Refractory Anaplastic Ependymoma 8 132425 -NCIT:C8269 Adult Anaplastic Ependymoma 8 132426 -NCIT:C4326 Anaplastic Oligodendroglioma 7 132427 -NCIT:C129321 Anaplastic Oligodendroglioma, IDH-Mutant and 1p/19q-Codeleted 8 132428 -NCIT:C129322 Anaplastic Oligodendroglioma, Not Otherwise Specified 8 132429 -NCIT:C142862 Recurrent Anaplastic Oligodendroglioma 8 132430 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 9 132431 -NCIT:C156120 Frontal Lobe Anaplastic Oligodendroglioma 8 132432 -NCIT:C169074 Refractory Anaplastic Oligodendroglioma 8 132433 -NCIT:C5447 Childhood Anaplastic Oligodendroglioma 8 132434 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 9 132435 -NCIT:C8270 Adult Anaplastic Oligodendroglioma 8 132436 -NCIT:C6959 Anaplastic Oligoastrocytoma 7 132437 -NCIT:C114973 Childhood Anaplastic Oligoastrocytoma 8 132438 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 9 132439 -NCIT:C129324 Anaplastic Oligoastrocytoma, Not Otherwise Specified 8 132440 -NCIT:C142861 Recurrent Anaplastic Oligoastrocytoma 8 132441 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 9 132442 -NCIT:C7446 Anaplastic Brain Stem Glioma 7 132443 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 8 132444 -NCIT:C9477 Anaplastic Astrocytoma 7 132445 -NCIT:C129290 Astrocytoma, IDH-Mutant, Grade 3 8 132446 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 9 132447 -NCIT:C129291 Anaplastic Astrocytoma, IDH-Wildtype 8 132448 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 9 132449 -NCIT:C129292 Anaplastic Astrocytoma, Not Otherwise Specified 8 132450 -NCIT:C136517 Recurrent Anaplastic Astrocytoma 8 132451 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 9 132452 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 9 132453 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 9 132454 -NCIT:C169075 Refractory Anaplastic Astrocytoma 8 132455 -NCIT:C185879 High Grade Astrocytoma with Piloid Features 8 132456 -NCIT:C5123 Hemispheric Anaplastic Astrocytoma 8 132457 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 9 132458 -NCIT:C156035 Frontal Lobe Anaplastic Astrocytoma 9 132459 -NCIT:C156036 Temporal Lobe Anaplastic Astrocytoma 9 132460 -NCIT:C171036 Parietal Lobe Anaplastic Astrocytoma 9 132461 -NCIT:C5124 Anaplastic Diencephalic Astrocytoma 8 132462 -NCIT:C5416 Secondary Supratentorial Anaplastic Astrocytoma 8 132463 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 8 132464 -NCIT:C6215 Childhood Anaplastic Astrocytoma 8 132465 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 9 132466 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 9 132467 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 10 132468 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 10 132469 -NCIT:C8257 Adult Anaplastic Astrocytoma 8 132470 -NCIT:C142848 Recurrent Malignant Glioma 6 132471 -NCIT:C126306 Recurrent Glioblastoma 7 132472 -NCIT:C115364 Recurrent Childhood Glioblastoma 8 132473 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 9 132474 -NCIT:C115365 Recurrent Childhood Gliosarcoma 9 132475 -NCIT:C182019 Recurrent Glioblastoma, IDH-Wildtype 8 132476 -NCIT:C131209 Recurrent Gliosarcoma 9 132477 -NCIT:C115365 Recurrent Childhood Gliosarcoma 10 132478 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 9 132479 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 10 132480 -NCIT:C163961 Recurrent Small Cell Glioblastoma 9 132481 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 9 132482 -NCIT:C191198 Recurrent Brain Glioblastoma 8 132483 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 9 132484 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 7 132485 -NCIT:C148038 Recurrent WHO Grade 3 Glioma 7 132486 -NCIT:C136517 Recurrent Anaplastic Astrocytoma 8 132487 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 9 132488 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 9 132489 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 9 132490 -NCIT:C142861 Recurrent Anaplastic Oligoastrocytoma 8 132491 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 9 132492 -NCIT:C142862 Recurrent Anaplastic Oligodendroglioma 8 132493 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 9 132494 -NCIT:C160904 Recurrent Anaplastic Pleomorphic Xanthoastrocytoma 8 132495 -NCIT:C160912 Recurrent Anaplastic Ependymoma 8 132496 -NCIT:C179222 Recurrent Diffuse Midline Glioma, H3 K27M-Mutant 7 132497 -NCIT:C182018 Recurrent Astrocytoma, IDH-Mutant, Grade 4 7 132498 -NCIT:C142855 Refractory Malignant Glioma 6 132499 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 7 132500 -NCIT:C146734 Refractory Glioblastoma 7 132501 -NCIT:C163960 Refractory Small Cell Glioblastoma 8 132502 -NCIT:C163962 Refractory Gliosarcoma 8 132503 -NCIT:C176998 Refractory Giant Cell Glioblastoma 8 132504 -NCIT:C153865 Refractory WHO Grade 3 Glioma 7 132505 -NCIT:C160905 Refractory Anaplastic Pleomorphic Xanthoastrocytoma 8 132506 -NCIT:C160913 Refractory Anaplastic Ependymoma 8 132507 -NCIT:C169074 Refractory Anaplastic Oligodendroglioma 8 132508 -NCIT:C169075 Refractory Anaplastic Astrocytoma 8 132509 -NCIT:C162993 Malignant Brain Glioma 6 132510 -NCIT:C156120 Frontal Lobe Anaplastic Oligodendroglioma 7 132511 -NCIT:C185371 Diffuse Hemispheric Glioma, H3 G34-Mutant 7 132512 -NCIT:C188926 Childhood Diffuse Hemispheric Glioma, H3 G34-Mutant 8 132513 -NCIT:C188927 Adult Diffuse Hemispheric Glioma, H3 G34-Mutant 8 132514 -NCIT:C185467 Diffuse Pediatric-Type High Grade Glioma, H3-Wildtype and IDH-Wildtype 7 132515 -NCIT:C185468 Diffuse Pediatric-Type High Grade Glioma RTK2 8 132516 -NCIT:C185469 Diffuse Pediatric-Type High Grade Glioma RTK1 8 132517 -NCIT:C185470 Diffuse Pediatric-Type High Grade Glioma MYCN 8 132518 -NCIT:C185471 Infant-Type Hemispheric Glioma 7 132519 -NCIT:C185472 Infant-Type Hemispheric Glioma, NTRK-Altered 8 132520 -NCIT:C185473 Infant-Type Hemispheric Glioma, ROS1-Altered 8 132521 -NCIT:C185474 Infant-Type Hemispheric Glioma, ALK-Altered 8 132522 -NCIT:C185475 Infant-Type Hemispheric Glioma, MET-Altered 8 132523 -NCIT:C4642 Brain Glioblastoma 7 132524 -NCIT:C147901 Childhood Brain Glioblastoma 8 132525 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 9 132526 -NCIT:C191198 Recurrent Brain Glioblastoma 8 132527 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 9 132528 -NCIT:C5148 Infratentorial Glioblastoma 8 132529 -NCIT:C5097 Brain Stem Glioblastoma 9 132530 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 132531 -NCIT:C9370 Adult Brain Stem Gliosarcoma 10 132532 -NCIT:C5150 Cerebellar Glioblastoma 9 132533 -NCIT:C5149 Supratentorial Glioblastoma 8 132534 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 9 132535 -NCIT:C5129 Diencephalic Glioblastoma 9 132536 -NCIT:C5151 Cerebral Glioblastoma 9 132537 -NCIT:C171013 Supratentorial Gliosarcoma 10 132538 -NCIT:C9375 Adult Brain Glioblastoma 8 132539 -NCIT:C9370 Adult Brain Stem Gliosarcoma 9 132540 -NCIT:C5123 Hemispheric Anaplastic Astrocytoma 7 132541 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 8 132542 -NCIT:C156035 Frontal Lobe Anaplastic Astrocytoma 8 132543 -NCIT:C156036 Temporal Lobe Anaplastic Astrocytoma 8 132544 -NCIT:C171036 Parietal Lobe Anaplastic Astrocytoma 8 132545 -NCIT:C5124 Anaplastic Diencephalic Astrocytoma 7 132546 -NCIT:C5416 Secondary Supratentorial Anaplastic Astrocytoma 7 132547 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 7 132548 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 8 132549 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 8 132550 -NCIT:C7446 Anaplastic Brain Stem Glioma 7 132551 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 8 132552 -NCIT:C94764 Diffuse Intrinsic Pontine Glioma 7 132553 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 8 132554 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 8 132555 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 8 132556 -NCIT:C188925 Adult Diffuse Intrinsic Pontine Glioma 8 132557 -NCIT:C180877 Metastatic Glioma 6 132558 -NCIT:C170979 Metastatic Glioblastoma 7 132559 -NCIT:C170978 Advanced Glioblastoma 8 132560 -NCIT:C170980 Locally Advanced Glioblastoma 8 132561 -NCIT:C178558 Metastatic Low Grade Glioma 7 132562 -NCIT:C178559 Metastatic Low Grade Astrocytoma 8 132563 -NCIT:C180876 Locally Advanced Glioma 7 132564 -NCIT:C170980 Locally Advanced Glioblastoma 8 132565 -NCIT:C182151 Diffuse Midline Glioma 6 132566 -NCIT:C182436 Diffuse Non-Pontine Midline Glioma 7 132567 -NCIT:C185368 Diffuse Midline Glioma, H3 K27-Altered 7 132568 -NCIT:C129309 Diffuse Midline Glioma, H3 K27M-Mutant 8 132569 -NCIT:C179222 Recurrent Diffuse Midline Glioma, H3 K27M-Mutant 9 132570 -NCIT:C185369 Diffuse Midline Glioma, EGFR-Mutant 8 132571 -NCIT:C185370 Diffuse Midline Glioma with EZHIP Overexpression 8 132572 -NCIT:C188922 Childhood Diffuse Midline Glioma, H3 K27-Altered 8 132573 -NCIT:C188923 Adult Diffuse Midline Glioma, H3 K27-Altered 8 132574 -NCIT:C94764 Diffuse Intrinsic Pontine Glioma 7 132575 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 8 132576 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 8 132577 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 8 132578 -NCIT:C188925 Adult Diffuse Intrinsic Pontine Glioma 8 132579 -NCIT:C5446 Meningeal Gliomatosis 6 132580 -NCIT:C5592 Chordoid Glioma 5 132581 -NCIT:C6770 Ependymal Tumor 5 132582 -NCIT:C115192 Childhood Ependymal Tumor 6 132583 -NCIT:C124269 Childhood Myxopapillary Ependymoma 7 132584 -NCIT:C124293 Childhood Anaplastic Ependymoma 7 132585 -NCIT:C8578 Childhood Ependymoma 7 132586 -NCIT:C186351 Supratentorial Ependymoma YAP1 Fusion-Positive 8 132587 -NCIT:C186355 Supratentorial Ependymoma, YAP1-MAMLD1 Fusion-Positive 9 132588 -NCIT:C186495 Childhood Spinal Cord Ependymoma 8 132589 -NCIT:C188935 Childhood Supratentorial Ependymoma ZFTA Fusion-Positive 8 132590 -NCIT:C188943 Childhood Posterior Fossa Ependymoma 8 132591 -NCIT:C8579 Recurrent Childhood Ependymoma 8 132592 -NCIT:C9041 Childhood Infratentorial Ependymoma 8 132593 -NCIT:C9043 Childhood Supratentorial Ependymoma, Not Otherwise Specified 8 132594 -NCIT:C6268 Childhood Cerebral Ependymoma, Not Otherwise Specified 9 132595 -NCIT:C131617 Recurrent Ependymal Tumor 6 132596 -NCIT:C157601 Recurrent Ependymoma 7 132597 -NCIT:C8579 Recurrent Childhood Ependymoma 8 132598 -NCIT:C160912 Recurrent Anaplastic Ependymoma 7 132599 -NCIT:C3017 Ependymoma 6 132600 -NCIT:C147108 Refractory Ependymoma 7 132601 -NCIT:C156462 Brain Ependymoma 7 132602 -NCIT:C186343 Supratentorial Ependymoma 8 132603 -NCIT:C186348 Supratentorial Ependymoma, Not Elsewhere Classified 9 132604 -NCIT:C186349 Supratentorial Ependymoma, Not Otherwise Specified 9 132605 -NCIT:C9043 Childhood Supratentorial Ependymoma, Not Otherwise Specified 10 132606 -NCIT:C6268 Childhood Cerebral Ependymoma, Not Otherwise Specified 11 132607 -NCIT:C186350 Supratentorial Ependymoma ZFTA Fusion-Positive 8 132608 -NCIT:C129351 Supratentorial Ependymoma, ZFTA-RELA Fusion-Positive 9 132609 -NCIT:C188935 Childhood Supratentorial Ependymoma ZFTA Fusion-Positive 9 132610 -NCIT:C188938 Adult Supratentorial Ependymoma ZFTA Fusion-Positive 9 132611 -NCIT:C186351 Supratentorial Ependymoma YAP1 Fusion-Positive 8 132612 -NCIT:C186355 Supratentorial Ependymoma, YAP1-MAMLD1 Fusion-Positive 9 132613 -NCIT:C186443 Posterior Fossa Ependymoma 8 132614 -NCIT:C186448 Posterior Fossa Ependymoma, Not Elsewhere Classified 9 132615 -NCIT:C186449 Posterior Fossa Ependymoma, Not Otherwise Specified 9 132616 -NCIT:C188943 Childhood Posterior Fossa Ependymoma 9 132617 -NCIT:C188945 Adult Posterior Fossa Ependymoma 9 132618 -NCIT:C186450 Posterior Fossa Ependymoma, Group A (PFA) 8 132619 -NCIT:C186451 Posterior Fossa Ependymoma, Group B (PFB) 8 132620 -NCIT:C5098 Brain Stem Ependymoma 8 132621 -NCIT:C9041 Childhood Infratentorial Ependymoma 8 132622 -NCIT:C9372 Adult Brain Ependymoma 8 132623 -NCIT:C188938 Adult Supratentorial Ependymoma ZFTA Fusion-Positive 9 132624 -NCIT:C188945 Adult Posterior Fossa Ependymoma 9 132625 -NCIT:C157601 Recurrent Ependymoma 7 132626 -NCIT:C8579 Recurrent Childhood Ependymoma 8 132627 -NCIT:C186494 Spinal Cord Ependymoma, MYCN Amplified 7 132628 -NCIT:C3875 Spinal Cord Ependymoma 7 132629 -NCIT:C186495 Childhood Spinal Cord Ependymoma 8 132630 -NCIT:C27399 Adult Spinal Cord Ependymoma 8 132631 -NCIT:C4319 Papillary Ependymoma 7 132632 -NCIT:C4713 Cellular Ependymoma 7 132633 -NCIT:C4714 Clear Cell Ependymoma 7 132634 -NCIT:C6903 Tanycytic Ependymoma 7 132635 -NCIT:C8578 Childhood Ependymoma 7 132636 -NCIT:C186351 Supratentorial Ependymoma YAP1 Fusion-Positive 8 132637 -NCIT:C186355 Supratentorial Ependymoma, YAP1-MAMLD1 Fusion-Positive 9 132638 -NCIT:C186495 Childhood Spinal Cord Ependymoma 8 132639 -NCIT:C188935 Childhood Supratentorial Ependymoma ZFTA Fusion-Positive 8 132640 -NCIT:C188943 Childhood Posterior Fossa Ependymoma 8 132641 -NCIT:C8579 Recurrent Childhood Ependymoma 8 132642 -NCIT:C9041 Childhood Infratentorial Ependymoma 8 132643 -NCIT:C9043 Childhood Supratentorial Ependymoma, Not Otherwise Specified 8 132644 -NCIT:C6268 Childhood Cerebral Ependymoma, Not Otherwise Specified 9 132645 -NCIT:C9092 Adult Ependymoma 7 132646 -NCIT:C27399 Adult Spinal Cord Ependymoma 8 132647 -NCIT:C9372 Adult Brain Ependymoma 8 132648 -NCIT:C188938 Adult Supratentorial Ependymoma ZFTA Fusion-Positive 9 132649 -NCIT:C188945 Adult Posterior Fossa Ependymoma 9 132650 -NCIT:C3697 Myxopapillary Ependymoma 6 132651 -NCIT:C115263 Adult Myxopapillary Ependymoma 7 132652 -NCIT:C124269 Childhood Myxopapillary Ependymoma 7 132653 -NCIT:C3795 Subependymoma 6 132654 -NCIT:C115623 Adult Subependymoma 7 132655 -NCIT:C4049 Anaplastic Ependymoma 6 132656 -NCIT:C124293 Childhood Anaplastic Ependymoma 7 132657 -NCIT:C160912 Recurrent Anaplastic Ependymoma 7 132658 -NCIT:C160913 Refractory Anaplastic Ependymoma 7 132659 -NCIT:C8269 Adult Anaplastic Ependymoma 7 132660 -NCIT:C68690 Adult Ependymal Tumor 6 132661 -NCIT:C115263 Adult Myxopapillary Ependymoma 7 132662 -NCIT:C115623 Adult Subependymoma 7 132663 -NCIT:C8269 Adult Anaplastic Ependymoma 7 132664 -NCIT:C9092 Adult Ependymoma 7 132665 -NCIT:C27399 Adult Spinal Cord Ependymoma 8 132666 -NCIT:C9372 Adult Brain Ependymoma 8 132667 -NCIT:C188938 Adult Supratentorial Ependymoma ZFTA Fusion-Positive 9 132668 -NCIT:C188945 Adult Posterior Fossa Ependymoma 9 132669 -NCIT:C6958 Astrocytic Tumor 5 132670 -NCIT:C102897 High Grade Astrocytic Tumor 6 132671 -NCIT:C167335 Astrocytoma, IDH-Mutant, Grade 4 7 132672 -NCIT:C182018 Recurrent Astrocytoma, IDH-Mutant, Grade 4 8 132673 -NCIT:C3058 Glioblastoma 7 132674 -NCIT:C111691 Glioblastoma by Gene Expression Profile 8 132675 -NCIT:C111692 Proneural Glioblastoma 9 132676 -NCIT:C111693 Neural Glioblastoma 9 132677 -NCIT:C111694 Classical Glioblastoma 9 132678 -NCIT:C111695 Mesenchymal Glioblastoma 9 132679 -NCIT:C126306 Recurrent Glioblastoma 8 132680 -NCIT:C115364 Recurrent Childhood Glioblastoma 9 132681 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 10 132682 -NCIT:C115365 Recurrent Childhood Gliosarcoma 10 132683 -NCIT:C182019 Recurrent Glioblastoma, IDH-Wildtype 9 132684 -NCIT:C131209 Recurrent Gliosarcoma 10 132685 -NCIT:C115365 Recurrent Childhood Gliosarcoma 11 132686 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 10 132687 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 11 132688 -NCIT:C163961 Recurrent Small Cell Glioblastoma 10 132689 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 10 132690 -NCIT:C191198 Recurrent Brain Glioblastoma 9 132691 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 10 132692 -NCIT:C129295 Glioblastoma, Not Otherwise Specified 8 132693 -NCIT:C146734 Refractory Glioblastoma 8 132694 -NCIT:C163960 Refractory Small Cell Glioblastoma 9 132695 -NCIT:C163962 Refractory Gliosarcoma 9 132696 -NCIT:C176998 Refractory Giant Cell Glioblastoma 9 132697 -NCIT:C166156 Resectable Glioblastoma 8 132698 -NCIT:C170979 Metastatic Glioblastoma 8 132699 -NCIT:C170978 Advanced Glioblastoma 9 132700 -NCIT:C170980 Locally Advanced Glioblastoma 9 132701 -NCIT:C176890 Unresectable Glioblastoma 8 132702 -NCIT:C39750 Glioblastoma, IDH-Wildtype 8 132703 -NCIT:C125890 Small Cell Glioblastoma 9 132704 -NCIT:C163960 Refractory Small Cell Glioblastoma 10 132705 -NCIT:C163961 Recurrent Small Cell Glioblastoma 10 132706 -NCIT:C129293 Epithelioid Glioblastoma 9 132707 -NCIT:C129296 Glioblastoma with Primitive Neuronal Component 9 132708 -NCIT:C132902 MGMT-Unmethylated Glioblastoma 9 132709 -NCIT:C154335 MGMT-Methylated Glioblastoma 9 132710 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 10 132711 -NCIT:C182019 Recurrent Glioblastoma, IDH-Wildtype 9 132712 -NCIT:C131209 Recurrent Gliosarcoma 10 132713 -NCIT:C115365 Recurrent Childhood Gliosarcoma 11 132714 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 10 132715 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 11 132716 -NCIT:C163961 Recurrent Small Cell Glioblastoma 10 132717 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 10 132718 -NCIT:C185178 Granular Cell Glioblastoma 9 132719 -NCIT:C185180 Lipidized Glioblastoma 9 132720 -NCIT:C3796 Gliosarcoma 9 132721 -NCIT:C114968 Childhood Gliosarcoma 10 132722 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 11 132723 -NCIT:C115365 Recurrent Childhood Gliosarcoma 11 132724 -NCIT:C131209 Recurrent Gliosarcoma 10 132725 -NCIT:C115365 Recurrent Childhood Gliosarcoma 11 132726 -NCIT:C163962 Refractory Gliosarcoma 10 132727 -NCIT:C171013 Supratentorial Gliosarcoma 10 132728 -NCIT:C68701 Adult Gliosarcoma 10 132729 -NCIT:C9370 Adult Brain Stem Gliosarcoma 11 132730 -NCIT:C4325 Giant Cell Glioblastoma 9 132731 -NCIT:C114966 Childhood Giant Cell Glioblastoma 10 132732 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 11 132733 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 10 132734 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 11 132735 -NCIT:C176998 Refractory Giant Cell Glioblastoma 10 132736 -NCIT:C68702 Adult Giant Cell Glioblastoma 10 132737 -NCIT:C39751 Secondary Glioblastoma 8 132738 -NCIT:C4642 Brain Glioblastoma 8 132739 -NCIT:C147901 Childhood Brain Glioblastoma 9 132740 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 132741 -NCIT:C191198 Recurrent Brain Glioblastoma 9 132742 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 10 132743 -NCIT:C5148 Infratentorial Glioblastoma 9 132744 -NCIT:C5097 Brain Stem Glioblastoma 10 132745 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 11 132746 -NCIT:C9370 Adult Brain Stem Gliosarcoma 11 132747 -NCIT:C5150 Cerebellar Glioblastoma 10 132748 -NCIT:C5149 Supratentorial Glioblastoma 9 132749 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 10 132750 -NCIT:C5129 Diencephalic Glioblastoma 10 132751 -NCIT:C5151 Cerebral Glioblastoma 10 132752 -NCIT:C171013 Supratentorial Gliosarcoma 11 132753 -NCIT:C9375 Adult Brain Glioblastoma 9 132754 -NCIT:C9370 Adult Brain Stem Gliosarcoma 10 132755 -NCIT:C5136 Childhood Glioblastoma 8 132756 -NCIT:C114966 Childhood Giant Cell Glioblastoma 9 132757 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 10 132758 -NCIT:C114968 Childhood Gliosarcoma 9 132759 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 132760 -NCIT:C115365 Recurrent Childhood Gliosarcoma 10 132761 -NCIT:C115364 Recurrent Childhood Glioblastoma 9 132762 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 10 132763 -NCIT:C115365 Recurrent Childhood Gliosarcoma 10 132764 -NCIT:C147901 Childhood Brain Glioblastoma 9 132765 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 132766 -NCIT:C9094 Adult Glioblastoma 8 132767 -NCIT:C27183 Adult Spinal Cord Glioblastoma 9 132768 -NCIT:C68701 Adult Gliosarcoma 9 132769 -NCIT:C9370 Adult Brain Stem Gliosarcoma 10 132770 -NCIT:C68702 Adult Giant Cell Glioblastoma 9 132771 -NCIT:C9375 Adult Brain Glioblastoma 9 132772 -NCIT:C9370 Adult Brain Stem Gliosarcoma 10 132773 -NCIT:C92549 Multifocal Glioblastomas 8 132774 -NCIT:C9477 Anaplastic Astrocytoma 7 132775 -NCIT:C129290 Astrocytoma, IDH-Mutant, Grade 3 8 132776 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 9 132777 -NCIT:C129291 Anaplastic Astrocytoma, IDH-Wildtype 8 132778 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 9 132779 -NCIT:C129292 Anaplastic Astrocytoma, Not Otherwise Specified 8 132780 -NCIT:C136517 Recurrent Anaplastic Astrocytoma 8 132781 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 9 132782 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 9 132783 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 9 132784 -NCIT:C169075 Refractory Anaplastic Astrocytoma 8 132785 -NCIT:C185879 High Grade Astrocytoma with Piloid Features 8 132786 -NCIT:C5123 Hemispheric Anaplastic Astrocytoma 8 132787 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 9 132788 -NCIT:C156035 Frontal Lobe Anaplastic Astrocytoma 9 132789 -NCIT:C156036 Temporal Lobe Anaplastic Astrocytoma 9 132790 -NCIT:C171036 Parietal Lobe Anaplastic Astrocytoma 9 132791 -NCIT:C5124 Anaplastic Diencephalic Astrocytoma 8 132792 -NCIT:C5416 Secondary Supratentorial Anaplastic Astrocytoma 8 132793 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 8 132794 -NCIT:C6215 Childhood Anaplastic Astrocytoma 8 132795 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 9 132796 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 9 132797 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 10 132798 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 10 132799 -NCIT:C8257 Adult Anaplastic Astrocytoma 8 132800 -NCIT:C5419 Gliofibroma 6 132801 -NCIT:C60781 Astrocytoma 6 132802 -NCIT:C116342 Low Grade Astrocytoma 7 132803 -NCIT:C176464 Recurrent Low Grade Astrocytoma 8 132804 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 9 132805 -NCIT:C167081 Recurrent Diffuse Astrocytoma 9 132806 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 10 132807 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 11 132808 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 11 132809 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 11 132810 -NCIT:C179220 Recurrent Pilocytic Astrocytoma 9 132811 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 10 132812 -NCIT:C177795 Refractory Low Grade Astrocytoma 8 132813 -NCIT:C178559 Metastatic Low Grade Astrocytoma 8 132814 -NCIT:C3696 Subependymal Giant Cell Astrocytoma 8 132815 -NCIT:C114785 Childhood Subependymal Giant Cell Astrocytoma 9 132816 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 10 132817 -NCIT:C71017 Adult Subependymal Giant Cell Astrocytoma 9 132818 -NCIT:C4047 Pilocytic Astrocytoma 8 132819 -NCIT:C156037 Third Ventricle Pilocytic Astrocytoma 9 132820 -NCIT:C179220 Recurrent Pilocytic Astrocytoma 9 132821 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 10 132822 -NCIT:C4048 Childhood Pilocytic Astrocytoma 9 132823 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 10 132824 -NCIT:C27081 Juvenile Pilocytic Astrocytoma 10 132825 -NCIT:C6809 Cerebellar Pilocytic Astrocytoma 9 132826 -NCIT:C71016 Adult Pilocytic Astrocytoma 9 132827 -NCIT:C7173 Diffuse Astrocytoma 8 132828 -NCIT:C114967 Childhood Diffuse Astrocytoma 9 132829 -NCIT:C114963 Childhood Fibrillary Astrocytoma 10 132830 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 11 132831 -NCIT:C114964 Childhood Gemistocytic Astrocytoma 10 132832 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 11 132833 -NCIT:C114972 Childhood Protoplasmic Astrocytoma 10 132834 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 11 132835 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 10 132836 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 11 132837 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 11 132838 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 11 132839 -NCIT:C188920 Childhood Diffuse Astrocytoma, MYBL1-Altered 10 132840 -NCIT:C188921 Childhood Diffuse Astrocytoma, MYB-Altered 10 132841 -NCIT:C8387 Childhood Cerebral Diffuse Astrocytoma 10 132842 -NCIT:C129271 Astrocytoma, IDH-Mutant, Grade 2 9 132843 -NCIT:C129272 Gemistocytic Astrocytoma, IDH-Mutant 10 132844 -NCIT:C129274 Diffuse Astrocytoma, IDH-Wildtype 9 132845 -NCIT:C185195 Diffuse Astrocytoma, MYB-Altered 10 132846 -NCIT:C188921 Childhood Diffuse Astrocytoma, MYB-Altered 11 132847 -NCIT:C185196 Diffuse Astrocytoma, MYBL1-Altered 10 132848 -NCIT:C188920 Childhood Diffuse Astrocytoma, MYBL1-Altered 11 132849 -NCIT:C129277 Diffuse Astrocytoma, Not Otherwise Specified 9 132850 -NCIT:C167081 Recurrent Diffuse Astrocytoma 9 132851 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 10 132852 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 11 132853 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 11 132854 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 11 132855 -NCIT:C4320 Protoplasmic Astrocytoma 9 132856 -NCIT:C114972 Childhood Protoplasmic Astrocytoma 10 132857 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 11 132858 -NCIT:C4321 Gemistocytic Astrocytoma 9 132859 -NCIT:C114964 Childhood Gemistocytic Astrocytoma 10 132860 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 11 132861 -NCIT:C129272 Gemistocytic Astrocytoma, IDH-Mutant 10 132862 -NCIT:C4322 Fibrillary Astrocytoma 9 132863 -NCIT:C114963 Childhood Fibrillary Astrocytoma 10 132864 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 11 132865 -NCIT:C7174 Adult Diffuse Astrocytoma 9 132866 -NCIT:C124275 Childhood Astrocytoma 7 132867 -NCIT:C114785 Childhood Subependymal Giant Cell Astrocytoma 8 132868 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 9 132869 -NCIT:C114967 Childhood Diffuse Astrocytoma 8 132870 -NCIT:C114963 Childhood Fibrillary Astrocytoma 9 132871 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 10 132872 -NCIT:C114964 Childhood Gemistocytic Astrocytoma 9 132873 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 10 132874 -NCIT:C114972 Childhood Protoplasmic Astrocytoma 9 132875 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 10 132876 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 9 132877 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 10 132878 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 10 132879 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 10 132880 -NCIT:C188920 Childhood Diffuse Astrocytoma, MYBL1-Altered 9 132881 -NCIT:C188921 Childhood Diffuse Astrocytoma, MYB-Altered 9 132882 -NCIT:C8387 Childhood Cerebral Diffuse Astrocytoma 9 132883 -NCIT:C114970 Childhood Pilomyxoid Astrocytoma 8 132884 -NCIT:C115373 Recurrent Childhood Pilomyxoid Astrocytoma 9 132885 -NCIT:C114971 Childhood Pleomorphic Xanthoastrocytoma 8 132886 -NCIT:C115375 Recurrent Childhood Pleomorphic Xanthoastrocytoma 9 132887 -NCIT:C4048 Childhood Pilocytic Astrocytoma 8 132888 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 9 132889 -NCIT:C27081 Juvenile Pilocytic Astrocytoma 9 132890 -NCIT:C4347 Childhood Cerebral Astrocytoma 8 132891 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 9 132892 -NCIT:C8387 Childhood Cerebral Diffuse Astrocytoma 9 132893 -NCIT:C9191 Recurrent Childhood Cerebral Astrocytoma 9 132894 -NCIT:C6215 Childhood Anaplastic Astrocytoma 8 132895 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 9 132896 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 9 132897 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 10 132898 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 10 132899 -NCIT:C6216 Childhood Brain Stem Astrocytoma 8 132900 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 9 132901 -NCIT:C6286 Childhood Cerebellar Astrocytoma 8 132902 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 9 132903 -NCIT:C8389 Recurrent Childhood Cerebellar Astrocytoma 9 132904 -NCIT:C7534 Childhood Visual Pathway Astrocytoma 8 132905 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 9 132906 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 132907 -NCIT:C129327 Anaplastic Pleomorphic Xanthoastrocytoma 7 132908 -NCIT:C160904 Recurrent Anaplastic Pleomorphic Xanthoastrocytoma 8 132909 -NCIT:C160905 Refractory Anaplastic Pleomorphic Xanthoastrocytoma 8 132910 -NCIT:C185167 Astrocytoma, IDH-Mutant 7 132911 -NCIT:C129271 Astrocytoma, IDH-Mutant, Grade 2 8 132912 -NCIT:C129272 Gemistocytic Astrocytoma, IDH-Mutant 9 132913 -NCIT:C129290 Astrocytoma, IDH-Mutant, Grade 3 8 132914 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 9 132915 -NCIT:C167335 Astrocytoma, IDH-Mutant, Grade 4 8 132916 -NCIT:C182018 Recurrent Astrocytoma, IDH-Mutant, Grade 4 9 132917 -NCIT:C188127 Recurrent Astrocytoma, IDH-Mutant 8 132918 -NCIT:C182018 Recurrent Astrocytoma, IDH-Mutant, Grade 4 9 132919 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 9 132920 -NCIT:C185184 Astrocytoma, IDH-Wildtype 7 132921 -NCIT:C129274 Diffuse Astrocytoma, IDH-Wildtype 8 132922 -NCIT:C185195 Diffuse Astrocytoma, MYB-Altered 9 132923 -NCIT:C188921 Childhood Diffuse Astrocytoma, MYB-Altered 10 132924 -NCIT:C185196 Diffuse Astrocytoma, MYBL1-Altered 9 132925 -NCIT:C188920 Childhood Diffuse Astrocytoma, MYBL1-Altered 10 132926 -NCIT:C129291 Anaplastic Astrocytoma, IDH-Wildtype 8 132927 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 9 132928 -NCIT:C185179 Granular Cell Astrocytoma 8 132929 -NCIT:C185185 Astrocytoma, Not Otherwise Specified 7 132930 -NCIT:C129277 Diffuse Astrocytoma, Not Otherwise Specified 8 132931 -NCIT:C129292 Anaplastic Astrocytoma, Not Otherwise Specified 8 132932 -NCIT:C188469 Resectable Astrocytoma 7 132933 -NCIT:C40315 Pilomyxoid Astrocytoma 7 132934 -NCIT:C114970 Childhood Pilomyxoid Astrocytoma 8 132935 -NCIT:C115373 Recurrent Childhood Pilomyxoid Astrocytoma 9 132936 -NCIT:C156038 Hypothalamic-Chiasmatic Pilomyxoid Astrocytoma 8 132937 -NCIT:C4323 Pleomorphic Xanthoastrocytoma 7 132938 -NCIT:C114971 Childhood Pleomorphic Xanthoastrocytoma 8 132939 -NCIT:C115375 Recurrent Childhood Pleomorphic Xanthoastrocytoma 9 132940 -NCIT:C156041 Supratentorial Pleomorphic Xanthoastrocytoma 8 132941 -NCIT:C156042 Temporal Lobe Pleomorphic Xanthoastrocytoma 8 132942 -NCIT:C4641 Spinal Cord Astrocytoma 7 132943 -NCIT:C5408 Intradural Extramedullary Cauda Equina Astrocytoma 7 132944 -NCIT:C60780 Brain Astrocytoma 7 132945 -NCIT:C156037 Third Ventricle Pilocytic Astrocytoma 8 132946 -NCIT:C156041 Supratentorial Pleomorphic Xanthoastrocytoma 8 132947 -NCIT:C4951 Cerebral Astrocytoma 8 132948 -NCIT:C4347 Childhood Cerebral Astrocytoma 9 132949 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 10 132950 -NCIT:C8387 Childhood Cerebral Diffuse Astrocytoma 10 132951 -NCIT:C9191 Recurrent Childhood Cerebral Astrocytoma 10 132952 -NCIT:C5123 Hemispheric Anaplastic Astrocytoma 9 132953 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 10 132954 -NCIT:C156035 Frontal Lobe Anaplastic Astrocytoma 10 132955 -NCIT:C156036 Temporal Lobe Anaplastic Astrocytoma 10 132956 -NCIT:C171036 Parietal Lobe Anaplastic Astrocytoma 10 132957 -NCIT:C5128 Diencephalic Astrocytoma 8 132958 -NCIT:C5124 Anaplastic Diencephalic Astrocytoma 9 132959 -NCIT:C5416 Secondary Supratentorial Anaplastic Astrocytoma 8 132960 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 8 132961 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 9 132962 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 9 132963 -NCIT:C7445 Brain Stem Astrocytoma 8 132964 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 9 132965 -NCIT:C6216 Childhood Brain Stem Astrocytoma 9 132966 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 10 132967 -NCIT:C6954 Adult Brain Stem Astrocytoma 9 132968 -NCIT:C7534 Childhood Visual Pathway Astrocytoma 8 132969 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 9 132970 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 132971 -NCIT:C8274 Pineal Gland Astrocytoma 8 132972 -NCIT:C115327 Adult Pineal Gland Astrocytoma 9 132973 -NCIT:C9475 Cerebellar Astrocytoma 8 132974 -NCIT:C6286 Childhood Cerebellar Astrocytoma 9 132975 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 10 132976 -NCIT:C8389 Recurrent Childhood Cerebellar Astrocytoma 10 132977 -NCIT:C6809 Cerebellar Pilocytic Astrocytoma 9 132978 -NCIT:C7533 Visual Pathway Astrocytoma 7 132979 -NCIT:C174539 Retinal Astrocytoma 8 132980 -NCIT:C6769 Optic Nerve Astrocytoma 8 132981 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 9 132982 -NCIT:C7534 Childhood Visual Pathway Astrocytoma 8 132983 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 9 132984 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 132985 -NCIT:C92550 Glioneuronal Tumor with Neuropil-Like Islands 7 132986 -NCIT:C9477 Anaplastic Astrocytoma 7 132987 -NCIT:C129290 Astrocytoma, IDH-Mutant, Grade 3 8 132988 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 9 132989 -NCIT:C129291 Anaplastic Astrocytoma, IDH-Wildtype 8 132990 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 9 132991 -NCIT:C129292 Anaplastic Astrocytoma, Not Otherwise Specified 8 132992 -NCIT:C136517 Recurrent Anaplastic Astrocytoma 8 132993 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 9 132994 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 9 132995 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 9 132996 -NCIT:C169075 Refractory Anaplastic Astrocytoma 8 132997 -NCIT:C185879 High Grade Astrocytoma with Piloid Features 8 132998 -NCIT:C5123 Hemispheric Anaplastic Astrocytoma 8 132999 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 9 133000 -NCIT:C156035 Frontal Lobe Anaplastic Astrocytoma 9 133001 -NCIT:C156036 Temporal Lobe Anaplastic Astrocytoma 9 133002 -NCIT:C171036 Parietal Lobe Anaplastic Astrocytoma 9 133003 -NCIT:C5124 Anaplastic Diencephalic Astrocytoma 8 133004 -NCIT:C5416 Secondary Supratentorial Anaplastic Astrocytoma 8 133005 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 8 133006 -NCIT:C6215 Childhood Anaplastic Astrocytoma 8 133007 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 9 133008 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 9 133009 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 10 133010 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 10 133011 -NCIT:C8257 Adult Anaplastic Astrocytoma 8 133012 -NCIT:C7049 Adult Astrocytic Tumor 6 133013 -NCIT:C115327 Adult Pineal Gland Astrocytoma 7 133014 -NCIT:C6954 Adult Brain Stem Astrocytoma 7 133015 -NCIT:C71016 Adult Pilocytic Astrocytoma 7 133016 -NCIT:C71017 Adult Subependymal Giant Cell Astrocytoma 7 133017 -NCIT:C8289 Adult Infiltrating Astrocytic Tumor 7 133018 -NCIT:C7174 Adult Diffuse Astrocytoma 8 133019 -NCIT:C8257 Adult Anaplastic Astrocytoma 8 133020 -NCIT:C9094 Adult Glioblastoma 8 133021 -NCIT:C27183 Adult Spinal Cord Glioblastoma 9 133022 -NCIT:C68701 Adult Gliosarcoma 9 133023 -NCIT:C9370 Adult Brain Stem Gliosarcoma 10 133024 -NCIT:C68702 Adult Giant Cell Glioblastoma 9 133025 -NCIT:C9375 Adult Brain Glioblastoma 9 133026 -NCIT:C9370 Adult Brain Stem Gliosarcoma 10 133027 -NCIT:C9022 Childhood Astrocytic Tumor 6 133028 -NCIT:C114956 Recurrent Childhood Astrocytic Tumor 7 133029 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 8 133030 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 8 133031 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 9 133032 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 9 133033 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 9 133034 -NCIT:C115364 Recurrent Childhood Glioblastoma 8 133035 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 9 133036 -NCIT:C115365 Recurrent Childhood Gliosarcoma 9 133037 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 8 133038 -NCIT:C115373 Recurrent Childhood Pilomyxoid Astrocytoma 8 133039 -NCIT:C115375 Recurrent Childhood Pleomorphic Xanthoastrocytoma 8 133040 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 8 133041 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 8 133042 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 8 133043 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 9 133044 -NCIT:C8389 Recurrent Childhood Cerebellar Astrocytoma 8 133045 -NCIT:C9191 Recurrent Childhood Cerebral Astrocytoma 8 133046 -NCIT:C124275 Childhood Astrocytoma 7 133047 -NCIT:C114785 Childhood Subependymal Giant Cell Astrocytoma 8 133048 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 9 133049 -NCIT:C114967 Childhood Diffuse Astrocytoma 8 133050 -NCIT:C114963 Childhood Fibrillary Astrocytoma 9 133051 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 10 133052 -NCIT:C114964 Childhood Gemistocytic Astrocytoma 9 133053 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 10 133054 -NCIT:C114972 Childhood Protoplasmic Astrocytoma 9 133055 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 10 133056 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 9 133057 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 10 133058 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 10 133059 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 10 133060 -NCIT:C188920 Childhood Diffuse Astrocytoma, MYBL1-Altered 9 133061 -NCIT:C188921 Childhood Diffuse Astrocytoma, MYB-Altered 9 133062 -NCIT:C8387 Childhood Cerebral Diffuse Astrocytoma 9 133063 -NCIT:C114970 Childhood Pilomyxoid Astrocytoma 8 133064 -NCIT:C115373 Recurrent Childhood Pilomyxoid Astrocytoma 9 133065 -NCIT:C114971 Childhood Pleomorphic Xanthoastrocytoma 8 133066 -NCIT:C115375 Recurrent Childhood Pleomorphic Xanthoastrocytoma 9 133067 -NCIT:C4048 Childhood Pilocytic Astrocytoma 8 133068 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 9 133069 -NCIT:C27081 Juvenile Pilocytic Astrocytoma 9 133070 -NCIT:C4347 Childhood Cerebral Astrocytoma 8 133071 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 9 133072 -NCIT:C8387 Childhood Cerebral Diffuse Astrocytoma 9 133073 -NCIT:C9191 Recurrent Childhood Cerebral Astrocytoma 9 133074 -NCIT:C6215 Childhood Anaplastic Astrocytoma 8 133075 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 9 133076 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 9 133077 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 10 133078 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 10 133079 -NCIT:C6216 Childhood Brain Stem Astrocytoma 8 133080 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 9 133081 -NCIT:C6286 Childhood Cerebellar Astrocytoma 8 133082 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 9 133083 -NCIT:C8389 Recurrent Childhood Cerebellar Astrocytoma 9 133084 -NCIT:C7534 Childhood Visual Pathway Astrocytoma 8 133085 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 9 133086 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 133087 -NCIT:C5136 Childhood Glioblastoma 7 133088 -NCIT:C114966 Childhood Giant Cell Glioblastoma 8 133089 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 9 133090 -NCIT:C114968 Childhood Gliosarcoma 8 133091 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 9 133092 -NCIT:C115365 Recurrent Childhood Gliosarcoma 9 133093 -NCIT:C115364 Recurrent Childhood Glioblastoma 8 133094 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 9 133095 -NCIT:C115365 Recurrent Childhood Gliosarcoma 9 133096 -NCIT:C147901 Childhood Brain Glioblastoma 8 133097 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 9 133098 -NCIT:C6960 Oligodendroglial Tumor 5 133099 -NCIT:C3288 Oligodendroglioma 6 133100 -NCIT:C129318 Oligodendroglioma, IDH-Mutant and 1p/19q-Codeleted 7 133101 -NCIT:C188126 Recurrent Oligodendroglioma, IDH-Mutant and 1p/19q-Codeleted 8 133102 -NCIT:C129319 Oligodendroglioma, Not Otherwise Specified 7 133103 -NCIT:C160737 Recurrent Oligodendroglioma 7 133104 -NCIT:C115371 Recurrent Childhood Oligodendroglioma 8 133105 -NCIT:C188126 Recurrent Oligodendroglioma, IDH-Mutant and 1p/19q-Codeleted 8 133106 -NCIT:C188470 Resectable Oligodendroglioma 7 133107 -NCIT:C4014 Adult Oligodendroglioma 7 133108 -NCIT:C9376 Adult Brain Oligodendroglioma 8 133109 -NCIT:C4045 Childhood Oligodendroglioma 7 133110 -NCIT:C114773 Childhood Brain Oligodendroglioma 8 133111 -NCIT:C115371 Recurrent Childhood Oligodendroglioma 8 133112 -NCIT:C4535 Spinal Cord Oligodendroglioma 7 133113 -NCIT:C9377 Brain Oligodendroglioma 7 133114 -NCIT:C114773 Childhood Brain Oligodendroglioma 8 133115 -NCIT:C9376 Adult Brain Oligodendroglioma 8 133116 -NCIT:C4326 Anaplastic Oligodendroglioma 6 133117 -NCIT:C129321 Anaplastic Oligodendroglioma, IDH-Mutant and 1p/19q-Codeleted 7 133118 -NCIT:C129322 Anaplastic Oligodendroglioma, Not Otherwise Specified 7 133119 -NCIT:C142862 Recurrent Anaplastic Oligodendroglioma 7 133120 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 8 133121 -NCIT:C156120 Frontal Lobe Anaplastic Oligodendroglioma 7 133122 -NCIT:C169074 Refractory Anaplastic Oligodendroglioma 7 133123 -NCIT:C5447 Childhood Anaplastic Oligodendroglioma 7 133124 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 8 133125 -NCIT:C8270 Adult Anaplastic Oligodendroglioma 7 133126 -NCIT:C68691 Adult Oligodendroglial Tumor 6 133127 -NCIT:C4014 Adult Oligodendroglioma 7 133128 -NCIT:C9376 Adult Brain Oligodendroglioma 8 133129 -NCIT:C8270 Adult Anaplastic Oligodendroglioma 7 133130 -NCIT:C8501 Brain Stem Glioma 5 133131 -NCIT:C5097 Brain Stem Glioblastoma 6 133132 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 7 133133 -NCIT:C9370 Adult Brain Stem Gliosarcoma 7 133134 -NCIT:C5098 Brain Stem Ependymoma 6 133135 -NCIT:C7445 Brain Stem Astrocytoma 6 133136 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 7 133137 -NCIT:C6216 Childhood Brain Stem Astrocytoma 7 133138 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 8 133139 -NCIT:C6954 Adult Brain Stem Astrocytoma 7 133140 -NCIT:C7446 Anaplastic Brain Stem Glioma 6 133141 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 7 133142 -NCIT:C9042 Childhood Brain Stem Glioma 6 133143 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 7 133144 -NCIT:C114760 Childhood Brain Stem Mixed Glioma 7 133145 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 7 133146 -NCIT:C6216 Childhood Brain Stem Astrocytoma 7 133147 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 8 133148 -NCIT:C9190 Recurrent Childhood Brain Stem Glioma 7 133149 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 8 133150 -NCIT:C9091 Adult Brain Stem Glioma 6 133151 -NCIT:C188925 Adult Diffuse Intrinsic Pontine Glioma 7 133152 -NCIT:C6954 Adult Brain Stem Astrocytoma 7 133153 -NCIT:C9370 Adult Brain Stem Gliosarcoma 7 133154 -NCIT:C9371 Adult Brain Stem Mixed Glioma 7 133155 -NCIT:C94764 Diffuse Intrinsic Pontine Glioma 6 133156 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 7 133157 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 7 133158 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 7 133159 -NCIT:C188925 Adult Diffuse Intrinsic Pontine Glioma 7 133160 -NCIT:C8567 Visual Pathway Glioma 5 133161 -NCIT:C155983 Recurrent Visual Pathway Glioma 6 133162 -NCIT:C7529 Recurrent Childhood Visual Pathway Glioma 7 133163 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 8 133164 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 9 133165 -NCIT:C7531 Recurrent Childhood Optic Nerve Glioma 8 133166 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 9 133167 -NCIT:C155984 Refractory Visual Pathway Glioma 6 133168 -NCIT:C4537 Optic Nerve Glioma 6 133169 -NCIT:C6769 Optic Nerve Astrocytoma 7 133170 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 8 133171 -NCIT:C7531 Recurrent Childhood Optic Nerve Glioma 7 133172 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 8 133173 -NCIT:C7533 Visual Pathway Astrocytoma 6 133174 -NCIT:C174539 Retinal Astrocytoma 7 133175 -NCIT:C6769 Optic Nerve Astrocytoma 7 133176 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 8 133177 -NCIT:C7534 Childhood Visual Pathway Astrocytoma 7 133178 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 8 133179 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 9 133180 -NCIT:C7535 Childhood Visual Pathway Glioma 6 133181 -NCIT:C7529 Recurrent Childhood Visual Pathway Glioma 7 133182 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 8 133183 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 9 133184 -NCIT:C7531 Recurrent Childhood Optic Nerve Glioma 8 133185 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 9 133186 -NCIT:C7534 Childhood Visual Pathway Astrocytoma 7 133187 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 8 133188 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 9 133189 -NCIT:C3716 Primitive Neuroectodermal Tumor 4 133190 -NCIT:C173565 Refractory Primitive Neuroectodermal Tumor 5 133191 -NCIT:C134153 Refractory Neuroblastoma 6 133192 -NCIT:C142850 Refractory Peripheral Primitive Neuroectodermal Tumor 6 133193 -NCIT:C173530 Refractory Ganglioneuroblastoma 6 133194 -NCIT:C27294 Localized Primitive Neuroectodermal Tumor 5 133195 -NCIT:C27903 Localized Peripheral Primitive Neuroectodermal Tumor 6 133196 -NCIT:C27353 Localized Peripheral Primitive Neuroectodermal Tumor of Bone 7 133197 -NCIT:C27902 Localized Askin Tumor 7 133198 -NCIT:C7835 Localized Resectable Neuroblastoma 6 133199 -NCIT:C8277 Localized Unresectable Neuroblastoma 6 133200 -NCIT:C27295 Recurrent Primitive Neuroectodermal Tumor 5 133201 -NCIT:C173531 Recurrent Ganglioneuroblastoma 6 133202 -NCIT:C27899 Recurrent Peripheral Primitive Neuroectodermal Tumor 6 133203 -NCIT:C27354 Recurrent Peripheral Primitive Neuroectodermal Tumor of Bone 7 133204 -NCIT:C27900 Recurrent Askin Tumor 7 133205 -NCIT:C7837 Recurrent Neuroblastoma 6 133206 -NCIT:C115384 Recurrent Olfactory Neuroblastoma 7 133207 -NCIT:C6963 Neuroblastic Tumor 5 133208 -NCIT:C3270 Neuroblastoma 6 133209 -NCIT:C115225 Hereditary Neuroblastoma 7 133210 -NCIT:C124270 Childhood Neuroblastoma 7 133211 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 8 133212 -NCIT:C134153 Refractory Neuroblastoma 7 133213 -NCIT:C150281 High Risk Neuroblastoma 7 133214 -NCIT:C150620 Resectable Neuroblastoma 7 133215 -NCIT:C7835 Localized Resectable Neuroblastoma 8 133216 -NCIT:C150622 Unresectable Neuroblastoma 7 133217 -NCIT:C8277 Localized Unresectable Neuroblastoma 8 133218 -NCIT:C155772 Sellar Neuroblastoma 7 133219 -NCIT:C156101 Metastatic Neuroblastoma 7 133220 -NCIT:C42046 Undifferentiated Neuroblastoma 7 133221 -NCIT:C42047 Poorly Differentiated Neuroblastoma 7 133222 -NCIT:C42048 Differentiating Neuroblastoma 7 133223 -NCIT:C4826 Central Nervous System Neuroblastoma 7 133224 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 8 133225 -NCIT:C186547 Central Nervous System Neuroblastoma, FOXR2-Activated 8 133226 -NCIT:C5437 Extracranial Neuroblastoma 7 133227 -NCIT:C3789 Olfactory Neuroblastoma 8 133228 -NCIT:C115384 Recurrent Olfactory Neuroblastoma 9 133229 -NCIT:C173174 Sinonasal Olfactory Neuroblastoma 9 133230 -NCIT:C6016 Paranasal Sinus Olfactory Neuroblastoma 10 133231 -NCIT:C5435 Kadish Stage C Olfactory Neuroblastoma 9 133232 -NCIT:C6853 Kadish Stage A Olfactory Neuroblastoma 9 133233 -NCIT:C6854 Kadish Stage B Olfactory Neuroblastoma 9 133234 -NCIT:C7604 Nasal Cavity Olfactory Neuroblastoma 9 133235 -NCIT:C5155 Spinal Cord Neuroblastoma 8 133236 -NCIT:C6591 Peripheral Neuroblastoma 8 133237 -NCIT:C6628 Mediastinal Neuroblastoma 9 133238 -NCIT:C6964 Neuroblastoma of the Adrenal Gland and Sympathetic Nervous System 9 133239 -NCIT:C4827 Adrenal Gland Neuroblastoma 10 133240 -NCIT:C6638 Stage 1 Neuroblastoma 7 133241 -NCIT:C6639 Stage 2 Neuroblastoma 7 133242 -NCIT:C102845 Stage 2A Neuroblastoma 8 133243 -NCIT:C102846 Stage 2B Neuroblastoma 8 133244 -NCIT:C6640 Stage 3 Neuroblastoma 7 133245 -NCIT:C6641 Stage 4 Neuroblastoma 7 133246 -NCIT:C9504 Stage 4S Neuroblastoma 8 133247 -NCIT:C6956 Retinal Neuroblastoma 7 133248 -NCIT:C7836 Regional Neuroblastoma 7 133249 -NCIT:C7837 Recurrent Neuroblastoma 7 133250 -NCIT:C115384 Recurrent Olfactory Neuroblastoma 8 133251 -NCIT:C3790 Ganglioneuroblastoma 6 133252 -NCIT:C124271 Childhood Ganglioneuroblastoma 7 133253 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 8 133254 -NCIT:C124273 Childhood Ganglioneuroblastoma, Intermixed 8 133255 -NCIT:C124274 Childhood Ganglioneuroblastoma, Nodular 8 133256 -NCIT:C173530 Refractory Ganglioneuroblastoma 7 133257 -NCIT:C173531 Recurrent Ganglioneuroblastoma 7 133258 -NCIT:C42057 Ganglioneuroblastoma, Intermixed 7 133259 -NCIT:C124273 Childhood Ganglioneuroblastoma, Intermixed 8 133260 -NCIT:C157243 Adrenal Gland Ganglioneuroblastoma, Intermixed 8 133261 -NCIT:C42058 Ganglioneuroblastoma, Nodular 7 133262 -NCIT:C124274 Childhood Ganglioneuroblastoma, Nodular 8 133263 -NCIT:C157244 Adrenal Gland Ganglioneuroblastoma, Nodular 8 133264 -NCIT:C42059 Composite Ganglioneuroblastoma, Schwannian Stroma-Rich and Stroma-Poor 8 133265 -NCIT:C42060 Composite Ganglioneuroblastoma, Stroma-Dominant and Stroma-Poor 8 133266 -NCIT:C6594 Peripheral Ganglioneuroblastoma 7 133267 -NCIT:C6627 Mediastinal Ganglioneuroblastoma 8 133268 -NCIT:C7646 Adrenal Gland Ganglioneuroblastoma 8 133269 -NCIT:C157243 Adrenal Gland Ganglioneuroblastoma, Intermixed 9 133270 -NCIT:C157244 Adrenal Gland Ganglioneuroblastoma, Nodular 9 133271 -NCIT:C92629 Central Nervous System Ganglioneuroblastoma 7 133272 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 8 133273 -NCIT:C9341 Peripheral Primitive Neuroectodermal Tumor 5 133274 -NCIT:C142850 Refractory Peripheral Primitive Neuroectodermal Tumor 6 133275 -NCIT:C27471 Peripheral Primitive Neuroectodermal Tumor of Soft Tissues 6 133276 -NCIT:C27899 Recurrent Peripheral Primitive Neuroectodermal Tumor 6 133277 -NCIT:C27354 Recurrent Peripheral Primitive Neuroectodermal Tumor of Bone 7 133278 -NCIT:C27900 Recurrent Askin Tumor 7 133279 -NCIT:C27903 Localized Peripheral Primitive Neuroectodermal Tumor 6 133280 -NCIT:C27353 Localized Peripheral Primitive Neuroectodermal Tumor of Bone 7 133281 -NCIT:C27902 Localized Askin Tumor 7 133282 -NCIT:C67214 Peripheral Primitive Neuroectodermal Tumor of the Kidney 6 133283 -NCIT:C7542 Askin Tumor 6 133284 -NCIT:C27900 Recurrent Askin Tumor 7 133285 -NCIT:C27902 Localized Askin Tumor 7 133286 -NCIT:C8776 Peripheral Primitive Neuroectodermal Tumor of Bone 6 133287 -NCIT:C27353 Localized Peripheral Primitive Neuroectodermal Tumor of Bone 7 133288 -NCIT:C27354 Recurrent Peripheral Primitive Neuroectodermal Tumor of Bone 7 133289 -NCIT:C36074 Metastatic Peripheral Primitive Neuroectodermal Tumor of Bone 7 133290 -NCIT:C4747 Glioneuronal and Neuronal Tumors 4 133291 -NCIT:C129424 Diffuse Leptomeningeal Glioneuronal Tumor 5 133292 -NCIT:C129427 Multinodular and Vacuolated Neuronal Tumor 5 133293 -NCIT:C180398 Recurrent Multinodular and Vacuolated Neuronal Tumor 6 133294 -NCIT:C188933 Childhood Multinodular and Vacuolated Neuronal Tumor 6 133295 -NCIT:C188934 Adult Multinodular and Vacuolated Neuronal Tumor 6 133296 -NCIT:C129431 Rosette-Forming Glioneuronal Tumor 5 133297 -NCIT:C67559 Rosette-Forming Glioneuronal Tumor of the Fourth Ventricle 6 133298 -NCIT:C179229 Myxoid Glioneuronal Tumor 5 133299 -NCIT:C179230 Myxoid Glioneuronal Tumor of the Septum Pellucidum 6 133300 -NCIT:C180397 Recurrent Myxoid Glioneuronal Tumor 6 133301 -NCIT:C180378 Polymorphous Low Grade Neuroepithelial Tumor of the Young 5 133302 -NCIT:C180400 Recurrent Polymorphous Low Grade Neuroepithelial Tumor of the Young 6 133303 -NCIT:C180532 Dysembryoplastic Neuroepithelial-Like Tumor of the Septum Pellucidum 5 133304 -NCIT:C185935 Diffuse Glioneuronal Tumor with Oligodendroglioma-Like Features and Nuclear Clusters 5 133305 -NCIT:C3788 Ganglioglioma 5 133306 -NCIT:C27362 Childhood Ganglioglioma 6 133307 -NCIT:C27363 Adult Ganglioglioma 6 133308 -NCIT:C3791 Central Neurocytoma 5 133309 -NCIT:C4717 Anaplastic Ganglioglioma 5 133310 -NCIT:C160914 Recurrent Anaplastic Ganglioglioma 6 133311 -NCIT:C160915 Refractory Anaplastic Ganglioglioma 6 133312 -NCIT:C4738 Desmoplastic Infantile Ganglioglioma 5 133313 -NCIT:C6934 Gangliocytoma 5 133314 -NCIT:C180338 Recurrent Gangliocytoma 6 133315 -NCIT:C45917 Sellar Gangliocytoma 6 133316 -NCIT:C45918 Hypothalamic Gangliocytoma 6 133317 -NCIT:C7372 Cerebellar Glioneuronal and Neuronal Tumors 5 133318 -NCIT:C6905 Cerebellar Liponeurocytoma 6 133319 -NCIT:C8419 Dysplastic Cerebellar Gangliocytoma 6 133320 -NCIT:C92554 Papillary Glioneuronal Tumor 5 133321 -NCIT:C92555 Extraventricular Neurocytoma 5 133322 -NCIT:C9476 Desmoplastic Infantile Astrocytoma 5 133323 -NCIT:C9505 Dysembryoplastic Neuroepithelial Tumor 5 133324 -NCIT:C188931 Childhood Dysembryoplastic Neuroepithelial Tumor 6 133325 -NCIT:C188932 Adult Dysembryoplastic Neuroepithelial Tumor 6 133326 -NCIT:C6965 Pineal Parenchymal Cell Neoplasm 4 133327 -NCIT:C115196 Childhood Pineal Parenchymal Cell Neoplasm 5 133328 -NCIT:C114812 Childhood Pineoblastoma 6 133329 -NCIT:C115374 Recurrent Childhood Pineoblastoma 7 133330 -NCIT:C124137 Childhood Pineal Parenchymal Tumor of Intermediate Differentiation 6 133331 -NCIT:C179227 Recurrent Pineal Parenchymal Cell Neoplasm 5 133332 -NCIT:C115374 Recurrent Childhood Pineoblastoma 6 133333 -NCIT:C6966 Pineocytoma 5 133334 -NCIT:C8291 Adult Pineocytoma 6 133335 -NCIT:C6967 Pineal Parenchymal Tumor of Intermediate Differentiation 5 133336 -NCIT:C124137 Childhood Pineal Parenchymal Tumor of Intermediate Differentiation 6 133337 -NCIT:C8273 Adult Pineal Parenchymal Cell Neoplasm 5 133338 -NCIT:C8291 Adult Pineocytoma 6 133339 -NCIT:C8292 Adult Pineoblastoma 6 133340 -NCIT:C9344 Pineoblastoma 5 133341 -NCIT:C114812 Childhood Pineoblastoma 6 133342 -NCIT:C115374 Recurrent Childhood Pineoblastoma 7 133343 -NCIT:C8292 Adult Pineoblastoma 6 133344 -NCIT:C7061 Retinal Cell Neoplasm 4 133345 -NCIT:C66812 Retinocytoma 5 133346 -NCIT:C7541 Retinoblastoma 5 133347 -NCIT:C140750 Retinoblastoma by AJCC v8 Stage 6 133348 -NCIT:C140751 Retinoblastoma by AJCC v8 Clinical Stage 7 133349 -NCIT:C140752 Clinical Stage I Retinoblastoma AJCC v8 8 133350 -NCIT:C140753 Clinical Stage II Retinoblastoma AJCC v8 8 133351 -NCIT:C140754 Clinical Stage III Retinoblastoma AJCC v8 8 133352 -NCIT:C140755 Clinical Stage IV Retinoblastoma AJCC v8 8 133353 -NCIT:C140756 Retinoblastoma by AJCC v8 Pathologic Stage 7 133354 -NCIT:C140757 Pathologic Stage I Retinoblastoma AJCC v8 8 133355 -NCIT:C140758 Pathologic Stage II Retinoblastoma AJCC v8 8 133356 -NCIT:C140759 Pathologic Stage III Retinoblastoma AJCC v8 8 133357 -NCIT:C140760 Pathologic Stage IV Retinoblastoma AJCC v8 8 133358 -NCIT:C42596 Sporadic Retinoblastoma 6 133359 -NCIT:C66813 Differentiated Retinoblastoma 6 133360 -NCIT:C66814 Undifferentiated Retinoblastoma 6 133361 -NCIT:C66815 Diffuse Retinoblastoma 6 133362 -NCIT:C7019 Trilateral Retinoblastoma 6 133363 -NCIT:C7846 Intraocular Retinoblastoma 6 133364 -NCIT:C9047 Childhood Intraocular Retinoblastoma 7 133365 -NCIT:C7848 Extraocular Retinoblastoma 6 133366 -NCIT:C9048 Childhood Extraocular Retinoblastoma 7 133367 -NCIT:C7849 Recurrent Retinoblastoma 6 133368 -NCIT:C8495 Hereditary Retinoblastoma 6 133369 -NCIT:C8713 Bilateral Retinoblastoma 6 133370 -NCIT:C8714 Unilateral Retinoblastoma 6 133371 -NCIT:C92624 Papillary Tumor of the Pineal Region 4 133372 -NCIT:C4972 Nerve Sheath Neoplasm 3 133373 -NCIT:C121681 Solitary Circumscribed Neuroma 4 133374 -NCIT:C121686 Hybrid Nerve Sheath Tumor 4 133375 -NCIT:C178255 Atypical Neurofibromatous Neoplasm of Uncertain Biologic Potential 4 133376 -NCIT:C3269 Schwannoma 4 133377 -NCIT:C121677 Conventional Schwannoma 5 133378 -NCIT:C155780 Sellar Schwannoma 5 133379 -NCIT:C173143 Sinonasal Schwannoma 5 133380 -NCIT:C178245 Epithelioid Schwannoma 5 133381 -NCIT:C182029 Recurrent Schwannoma 5 133382 -NCIT:C188213 Schwannoma of the Seventh Cranial Nerve 5 133383 -NCIT:C188992 Childhood Schwannoma 5 133384 -NCIT:C3276 Vestibular Schwannoma 5 133385 -NCIT:C41430 Peripheral Nerve Schwannoma 5 133386 -NCIT:C156340 Thyroid Gland Schwannoma 6 133387 -NCIT:C156944 Adrenal Gland Schwannoma 6 133388 -NCIT:C159221 Kidney Schwannoma 6 133389 -NCIT:C162502 Paratesticular Schwannoma 6 133390 -NCIT:C161639 Seminal Vesicle Schwannoma 7 133391 -NCIT:C162586 Penile Schwannoma 6 133392 -NCIT:C176414 Breast Schwannoma 6 133393 -NCIT:C27476 Bone Schwannoma 6 133394 -NCIT:C5323 Jugular Foramen Schwannoma 6 133395 -NCIT:C5358 Cardiac Schwannoma 6 133396 -NCIT:C5418 Pleural Schwannoma 6 133397 -NCIT:C5421 Sympathetic Schwannoma 6 133398 -NCIT:C5569 Cutaneous Schwannoma 6 133399 -NCIT:C5703 Esophageal Schwannoma 6 133400 -NCIT:C6162 Ureter Schwannoma 6 133401 -NCIT:C6643 Mediastinal Schwannoma 6 133402 -NCIT:C6636 Mediastinal Psammomatous Schwannoma 7 133403 -NCIT:C6718 Sternal Intraosseous Schwannoma 6 133404 -NCIT:C92182 Intraocular Schwannoma 6 133405 -NCIT:C95901 Gastric Schwannoma 6 133406 -NCIT:C96512 Colorectal Schwannoma 6 133407 -NCIT:C4655 Trigeminal Schwannoma 5 133408 -NCIT:C4724 Cellular Schwannoma 5 133409 -NCIT:C5321 Microcystic/Reticular Schwannoma 5 133410 -NCIT:C5413 Cerebellopontine Angle Schwannoma 5 133411 -NCIT:C5434 Schwannoma of the Twelfth Cranial Nerve 5 133412 -NCIT:C6556 Ancient Schwannoma 5 133413 -NCIT:C6557 Schwannomatosis 5 133414 -NCIT:C186703 SMARCB1 Schwannomatosis 1 6 133415 -NCIT:C186704 LZTR1 Schwannomatosis 2 6 133416 -NCIT:C6969 Plexiform Schwannoma 5 133417 -NCIT:C3272 Neurofibroma 4 133418 -NCIT:C128451 Cutaneous Neurofibroma 5 133419 -NCIT:C159682 Bladder Neurofibroma 5 133420 -NCIT:C162587 Penile Neurofibroma 5 133421 -NCIT:C173144 Sinonasal Neurofibroma 5 133422 -NCIT:C176415 Breast Neurofibroma 5 133423 -NCIT:C188995 Childhood Neurofibroma 5 133424 -NCIT:C3797 Plexiform Neurofibroma 5 133425 -NCIT:C179423 Unresectable Plexiform Neurofibroma 6 133426 -NCIT:C41426 Neurofibroma with Atypia 5 133427 -NCIT:C41427 Cellular Neurofibroma 5 133428 -NCIT:C4328 Pacinian Neurofibroma 5 133429 -NCIT:C5145 Spinal Cord Neurofibroma 5 133430 -NCIT:C5359 Cardiac Neurofibroma 5 133431 -NCIT:C5704 Esophageal Neurofibroma 5 133432 -NCIT:C5746 Gallbladder Neurofibroma 5 133433 -NCIT:C6558 Epithelioid Neurofibroma 5 133434 -NCIT:C6631 Mediastinal Neurofibroma 5 133435 -NCIT:C66841 Melanotic Neurofibroma 5 133436 -NCIT:C8426 Diffuse Neurofibroma 5 133437 -NCIT:C3474 Granular Cell Tumor 4 133438 -NCIT:C159681 Bladder Granular Cell Tumor 5 133439 -NCIT:C161582 Prostate Granular Cell Tumor 5 133440 -NCIT:C173405 Laryngeal Granular Cell Tumor 5 133441 -NCIT:C188998 Childhood Granular Cell Tumor 5 133442 -NCIT:C3252 Benign Granular Cell Tumor 5 133443 -NCIT:C5483 Benign Gastric Granular Cell Tumor 6 133444 -NCIT:C5502 Benign Peripheral Nerve Granular Cell Tumor 6 133445 -NCIT:C5607 Benign Anal Granular Cell Tumor 6 133446 -NCIT:C5852 Extrahepatic Bile Duct Benign Granular Cell Tumor 6 133447 -NCIT:C7131 Gallbladder Benign Granular Cell Tumor 6 133448 -NCIT:C7605 Oral Cavity Benign Granular Cell Tumor 6 133449 -NCIT:C6210 Soft Palate Benign Granular Cell Tumor 7 133450 -NCIT:C96516 Colorectal Benign Granular Cell Tumor 6 133451 -NCIT:C40328 Vulvar Granular Cell Tumor 5 133452 -NCIT:C40400 Breast Granular Cell Tumor 5 133453 -NCIT:C4336 Malignant Granular Cell Tumor 5 133454 -NCIT:C5484 Malignant Gastric Granular Cell Tumor 6 133455 -NCIT:C5614 Malignant Cutaneous Granular Cell Tumor 6 133456 -NCIT:C5360 Cardiac Granular Cell Tumor 5 133457 -NCIT:C54094 Gastric Granular Cell Tumor 5 133458 -NCIT:C5483 Benign Gastric Granular Cell Tumor 6 133459 -NCIT:C5484 Malignant Gastric Granular Cell Tumor 6 133460 -NCIT:C5617 Cutaneous Granular Cell Tumor 5 133461 -NCIT:C5614 Malignant Cutaneous Granular Cell Tumor 6 133462 -NCIT:C5700 Esophageal Granular Cell Tumor 5 133463 -NCIT:C5912 Oral Cavity Granular Cell Tumor 5 133464 -NCIT:C7605 Oral Cavity Benign Granular Cell Tumor 6 133465 -NCIT:C6210 Soft Palate Benign Granular Cell Tumor 7 133466 -NCIT:C6601 Mediastinal Granular Cell Tumor 5 133467 -NCIT:C7017 Granular Cell Tumor of the Sellar Region 5 133468 -NCIT:C3798 Malignant Peripheral Nerve Sheath Tumor 4 133469 -NCIT:C128050 Cervical Malignant Peripheral Nerve Sheath Tumor 5 133470 -NCIT:C155987 Refractory Malignant Peripheral Nerve Sheath Tumor 5 133471 -NCIT:C162725 Refractory Epithelioid Malignant Peripheral Nerve Sheath Tumor 6 133472 -NCIT:C156341 Thyroid Gland Malignant Peripheral Nerve Sheath Tumor 5 133473 -NCIT:C162584 Penile Malignant Peripheral Nerve Sheath Tumor 5 133474 -NCIT:C164312 Unresectable Malignant Peripheral Nerve Sheath Tumor 5 133475 -NCIT:C164313 NF1-Associated Malignant Peripheral Nerve Sheath Tumor 5 133476 -NCIT:C164314 Sporadic Malignant Peripheral Nerve Sheath Tumor 5 133477 -NCIT:C164316 Radiation-Induced Malignant Peripheral Nerve Sheath Tumor 5 133478 -NCIT:C172624 Malignant Peripheral Nerve Sheath Tumor of the Skin 5 133479 -NCIT:C172625 Epithelioid Malignant Peripheral Nerve Sheath Tumor of the Skin 6 133480 -NCIT:C173127 Sinonasal Malignant Peripheral Nerve Sheath Tumor 5 133481 -NCIT:C188064 Bone Malignant Peripheral Nerve Sheath Tumor 5 133482 -NCIT:C188073 Retroperitoneal Malignant Peripheral Nerve Sheath Tumor 5 133483 -NCIT:C4748 Malignant Melanotic Peripheral Nerve Sheath Tumor 5 133484 -NCIT:C6630 Malignant Melanotic Peripheral Nerve Sheath Tumor of the Mediastinum 6 133485 -NCIT:C6910 Malignant Melanotic Psammomatous Peripheral Nerve Sheath Tumor 6 133486 -NCIT:C5367 Cardiac Malignant Peripheral Nerve Sheath Tumor 5 133487 -NCIT:C6560 Glandular Malignant Peripheral Nerve Sheath Tumor 5 133488 -NCIT:C6561 Epithelioid Malignant Peripheral Nerve Sheath Tumor 5 133489 -NCIT:C162724 Recurrent Epithelioid Malignant Peripheral Nerve Sheath Tumor 6 133490 -NCIT:C162725 Refractory Epithelioid Malignant Peripheral Nerve Sheath Tumor 6 133491 -NCIT:C172625 Epithelioid Malignant Peripheral Nerve Sheath Tumor of the Skin 6 133492 -NCIT:C6626 Mediastinal Malignant Peripheral Nerve Sheath Tumor 5 133493 -NCIT:C6630 Malignant Melanotic Peripheral Nerve Sheath Tumor of the Mediastinum 6 133494 -NCIT:C66845 Malignant Peripheral Nerve Sheath Tumor with Perineurial Differentiation 5 133495 -NCIT:C7814 Adult Malignant Peripheral Nerve Sheath Tumor 5 133496 -NCIT:C8094 Childhood Malignant Peripheral Nerve Sheath Tumor 5 133497 -NCIT:C8822 Metastatic Malignant Peripheral Nerve Sheath Tumor 5 133498 -NCIT:C164074 Locally Advanced Malignant Peripheral Nerve Sheath Tumor 6 133499 -NCIT:C168714 Advanced Malignant Peripheral Nerve Sheath Tumor 6 133500 -NCIT:C8823 Recurrent Malignant Peripheral Nerve Sheath Tumor 5 133501 -NCIT:C162724 Recurrent Epithelioid Malignant Peripheral Nerve Sheath Tumor 6 133502 -NCIT:C9026 Low Grade Malignant Peripheral Nerve Sheath Tumor 5 133503 -NCIT:C9030 High Grade Malignant Peripheral Nerve Sheath Tumor 5 133504 -NCIT:C92185 Esophageal Malignant Peripheral Nerve Sheath Tumor 5 133505 -NCIT:C92186 Intraocular Malignant Peripheral Nerve Sheath Tumor 5 133506 -NCIT:C92647 Malignant Peripheral Nerve Sheath Tumor with Mesenchymal Differentiation 5 133507 -NCIT:C4335 Malignant Triton Tumor 6 133508 -NCIT:C4973 Perineurioma 4 133509 -NCIT:C172621 Cutaneous Perineurioma 5 133510 -NCIT:C188997 Childhood Perineurioma 5 133511 -NCIT:C6911 Intraneural Perineurioma 5 133512 -NCIT:C6912 Soft Tissue Perineurioma 5 133513 -NCIT:C96513 Colorectal Perineurioma 6 133514 -NCIT:C6970 Melanotic Schwannoma 4 133515 -NCIT:C6635 Mediastinal Melanotic Schwannoma 5 133516 -NCIT:C7018 Nerve Sheath Myxoma 4 133517 -NCIT:C121680 Dermal Nerve Sheath Myxoma 5 133518 -NCIT:C156278 Cellular Nerve Sheath Myxoma 5 133519 -NCIT:C3708 Germ Cell Tumor 2 133520 -NCIT:C114777 Adult Germ Cell Tumor 3 133521 -NCIT:C27241 Adult Yolk Sac Tumor 4 133522 -NCIT:C6285 Adult Central Nervous System Germ Cell Tumor 4 133523 -NCIT:C114778 Adult Intracranial Germ Cell Tumor 5 133524 -NCIT:C27402 Adult Central Nervous System Mixed Germ Cell Tumor 5 133525 -NCIT:C5790 Adult Central Nervous System Embryonal Carcinoma 5 133526 -NCIT:C5792 Adult Central Nervous System Germinoma 5 133527 -NCIT:C5793 Adult Central Nervous System Choriocarcinoma 5 133528 -NCIT:C5794 Adult Central Nervous System Teratoma 5 133529 -NCIT:C27400 Adult Central Nervous System Mature Teratoma 6 133530 -NCIT:C27401 Adult Central Nervous System Immature Teratoma 6 133531 -NCIT:C9013 Adult Teratoma 4 133532 -NCIT:C5794 Adult Central Nervous System Teratoma 5 133533 -NCIT:C27400 Adult Central Nervous System Mature Teratoma 6 133534 -NCIT:C27401 Adult Central Nervous System Immature Teratoma 6 133535 -NCIT:C9012 Adult Cystic Teratoma 5 133536 -NCIT:C121618 Germinomatous Germ Cell Tumor 3 133537 -NCIT:C123838 Childhood Germinomatous Germ Cell Tumor 4 133538 -NCIT:C123840 Childhood Seminoma 5 133539 -NCIT:C27406 Childhood Central Nervous System Germinoma 5 133540 -NCIT:C6207 Childhood Brain Germinoma 6 133541 -NCIT:C6550 Childhood Ovarian Dysgerminoma 5 133542 -NCIT:C7009 Central Nervous System Germinoma 4 133543 -NCIT:C27406 Childhood Central Nervous System Germinoma 5 133544 -NCIT:C6207 Childhood Brain Germinoma 6 133545 -NCIT:C5430 Intracranial Germinoma 5 133546 -NCIT:C155802 Sellar Germinoma 6 133547 -NCIT:C155803 Suprasellar Germinoma 7 133548 -NCIT:C6284 Brain Germinoma 6 133549 -NCIT:C156040 Third Ventricle Germinoma 7 133550 -NCIT:C6207 Childhood Brain Germinoma 7 133551 -NCIT:C8712 Pineal Region Germinoma 7 133552 -NCIT:C5792 Adult Central Nervous System Germinoma 5 133553 -NCIT:C8106 Ovarian Dysgerminoma 4 133554 -NCIT:C6550 Childhood Ovarian Dysgerminoma 5 133555 -NCIT:C8723 Stage I Ovarian Dysgerminoma AJCC v6 and v7 5 133556 -NCIT:C8724 Stage II Ovarian Dysgerminoma AJCC v6 and v7 5 133557 -NCIT:C8726 Stage III Ovarian Dysgerminoma AJCC v6 and v7 5 133558 -NCIT:C8727 Stage IV Ovarian Dysgerminoma AJCC v6 and v7 5 133559 -NCIT:C9309 Seminoma 4 133560 -NCIT:C123840 Childhood Seminoma 5 133561 -NCIT:C7327 Extragonadal Seminoma 5 133562 -NCIT:C115428 Recurrent Extragonadal Seminoma 6 133563 -NCIT:C6812 Mediastinal Seminoma 6 133564 -NCIT:C7328 Testicular Seminoma 5 133565 -NCIT:C39919 Testicular Seminoma with Syncytiotrophoblastic Cells 6 133566 -NCIT:C39920 Testicular Seminoma with High Mitotic Index 6 133567 -NCIT:C40957 Testicular Seminoma, Cribriform Variant 6 133568 -NCIT:C40958 Testicular Seminoma, Pseudoglandular Variant 6 133569 -NCIT:C40959 Testicular Seminoma, Tubular Variant 6 133570 -NCIT:C61383 Testicular Typical Seminoma 6 133571 -NCIT:C7329 Intratubular Seminoma 6 133572 -NCIT:C8917 Stage I Testicular Seminoma AJCC v6 and v7 6 133573 -NCIT:C8918 Stage II Testicular Seminoma AJCC v6 and v7 6 133574 -NCIT:C8919 Stage III Testicular Seminoma AJCC v6 and v7 6 133575 -NCIT:C121619 Nongerminomatous Germ Cell Tumor 3 133576 -NCIT:C100093 Central Nervous System Nongerminomatous Germ Cell Tumor 4 133577 -NCIT:C5441 Central Nervous System Teratoma 5 133578 -NCIT:C155807 Sellar Teratoma 6 133579 -NCIT:C155808 Sellar Mature Teratoma 7 133580 -NCIT:C155809 Sellar Immature Teratoma 7 133581 -NCIT:C155810 Sellar Teratoma with Malignant Transformation 7 133582 -NCIT:C5428 Intramedullary Spinal Cord Teratoma 6 133583 -NCIT:C5794 Adult Central Nervous System Teratoma 6 133584 -NCIT:C27400 Adult Central Nervous System Mature Teratoma 7 133585 -NCIT:C27401 Adult Central Nervous System Immature Teratoma 7 133586 -NCIT:C6204 Childhood Central Nervous System Teratoma 6 133587 -NCIT:C27404 Childhood Central Nervous System Mature Teratoma 7 133588 -NCIT:C27405 Childhood Central Nervous System Immature Teratoma 7 133589 -NCIT:C6753 Pineal Region Teratoma 6 133590 -NCIT:C6754 Pineal Region Mature Teratoma 7 133591 -NCIT:C6755 Pineal Region Immature Teratoma 7 133592 -NCIT:C7013 Central Nervous System Mature Teratoma 6 133593 -NCIT:C155808 Sellar Mature Teratoma 7 133594 -NCIT:C27400 Adult Central Nervous System Mature Teratoma 7 133595 -NCIT:C27404 Childhood Central Nervous System Mature Teratoma 7 133596 -NCIT:C5508 Central Nervous System Dermoid Cyst 7 133597 -NCIT:C6808 Dermoid Cyst of the Spinal Cord 8 133598 -NCIT:C6754 Pineal Region Mature Teratoma 7 133599 -NCIT:C7014 Central Nervous System Immature Teratoma 6 133600 -NCIT:C155809 Sellar Immature Teratoma 7 133601 -NCIT:C27401 Adult Central Nervous System Immature Teratoma 7 133602 -NCIT:C27405 Childhood Central Nervous System Immature Teratoma 7 133603 -NCIT:C6755 Pineal Region Immature Teratoma 7 133604 -NCIT:C7015 Central Nervous System Teratoma with Malignant Transformation 6 133605 -NCIT:C155810 Sellar Teratoma with Malignant Transformation 7 133606 -NCIT:C7010 Central Nervous System Embryonal Carcinoma 5 133607 -NCIT:C155805 Sellar Embryonal Carcinoma 6 133608 -NCIT:C5790 Adult Central Nervous System Embryonal Carcinoma 6 133609 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 6 133610 -NCIT:C7011 Central Nervous System Yolk Sac Tumor 5 133611 -NCIT:C155804 Sellar Yolk Sac Tumor 6 133612 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 6 133613 -NCIT:C6752 Pineal Region Yolk Sac Tumor 6 133614 -NCIT:C7012 Central Nervous System Choriocarcinoma 5 133615 -NCIT:C155806 Sellar Choriocarcinoma 6 133616 -NCIT:C5793 Adult Central Nervous System Choriocarcinoma 6 133617 -NCIT:C6206 Childhood Central Nervous System Choriocarcinoma 6 133618 -NCIT:C6759 Pineal Region Choriocarcinoma 6 133619 -NCIT:C102870 Ovarian Non-Dysgerminomatous Germ Cell Tumor 4 133620 -NCIT:C39990 Ovarian Polyembryoma 5 133621 -NCIT:C8739 Stage I Ovarian Polyembryoma AJCC v6 and v7 6 133622 -NCIT:C8740 Stage II Ovarian Polyembryoma AJCC v6 and v7 6 133623 -NCIT:C8741 Stage III Ovarian Polyembryoma AJCC v6 and v7 6 133624 -NCIT:C8742 Stage IV Ovarian Polyembryoma AJCC v6 and v7 6 133625 -NCIT:C39991 Non-Gestational Ovarian Choriocarcinoma 5 133626 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 6 133627 -NCIT:C8107 Ovarian Yolk Sac Tumor 5 133628 -NCIT:C39987 Ovarian Yolk Sac Tumor, Polyvesicular Vitelline Pattern 6 133629 -NCIT:C39988 Ovarian Yolk Sac Tumor, Glandular Pattern 6 133630 -NCIT:C39989 Ovarian Yolk Sac Tumor, Hepatoid Pattern 6 133631 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 6 133632 -NCIT:C8735 Stage I Ovarian Yolk Sac Tumor AJCC v6 and v7 6 133633 -NCIT:C8736 Stage II Ovarian Yolk Sac Tumor AJCC v6 and v7 6 133634 -NCIT:C8737 Stage III Ovarian Yolk Sac Tumor AJCC v6 and v7 6 133635 -NCIT:C8738 Stage IV Ovarian Yolk Sac Tumor AJCC v6 and v7 6 133636 -NCIT:C8108 Ovarian Embryonal Carcinoma 5 133637 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 6 133638 -NCIT:C8725 Stage II Ovarian Embryonal Carcinoma AJCC v6 and v7 6 133639 -NCIT:C8728 Stage III Ovarian Embryonal Carcinoma AJCC v6 and v7 6 133640 -NCIT:C8729 Stage IV Ovarian Embryonal Carcinoma AJCC v6 and v7 6 133641 -NCIT:C8734 Stage I Ovarian Embryonal Carcinoma AJCC v6 and v7 6 133642 -NCIT:C123841 Childhood Nongerminomatous Germ Cell Tumor 4 133643 -NCIT:C123842 Childhood Ovarian Nongerminomatous Germ Cell Tumor 5 133644 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 6 133645 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 6 133646 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 6 133647 -NCIT:C6554 Childhood Ovarian Teratoma 6 133648 -NCIT:C6547 Childhood Ovarian Immature Teratoma 7 133649 -NCIT:C6548 Childhood Ovarian Mature Teratoma 7 133650 -NCIT:C123843 Childhood Testicular Non-Seminomatous Germ Cell Tumor 5 133651 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 6 133652 -NCIT:C6540 Childhood Testicular Teratoma 6 133653 -NCIT:C123835 Childhood Testicular Immature Teratoma 7 133654 -NCIT:C123837 Childhood Testicular Mature Teratoma 7 133655 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 6 133656 -NCIT:C6544 Childhood Testicular Choriocarcinoma 6 133657 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 6 133658 -NCIT:C123844 Childhood Choriocarcinoma 5 133659 -NCIT:C6206 Childhood Central Nervous System Choriocarcinoma 6 133660 -NCIT:C6544 Childhood Testicular Choriocarcinoma 6 133661 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 6 133662 -NCIT:C123847 Childhood Embryonal Carcinoma 5 133663 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 6 133664 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 6 133665 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 6 133666 -NCIT:C27364 Childhood Yolk Sac Tumor 5 133667 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 6 133668 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 6 133669 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 6 133670 -NCIT:C68626 Childhood Teratoma 5 133671 -NCIT:C123834 Childhood Immature Teratoma 6 133672 -NCIT:C123835 Childhood Testicular Immature Teratoma 7 133673 -NCIT:C27405 Childhood Central Nervous System Immature Teratoma 7 133674 -NCIT:C6547 Childhood Ovarian Immature Teratoma 7 133675 -NCIT:C123836 Childhood Mature Teratoma 6 133676 -NCIT:C123837 Childhood Testicular Mature Teratoma 7 133677 -NCIT:C27404 Childhood Central Nervous System Mature Teratoma 7 133678 -NCIT:C6548 Childhood Ovarian Mature Teratoma 7 133679 -NCIT:C189046 Childhood Extragonadal Teratoma 6 133680 -NCIT:C6204 Childhood Central Nervous System Teratoma 7 133681 -NCIT:C27404 Childhood Central Nervous System Mature Teratoma 8 133682 -NCIT:C27405 Childhood Central Nervous System Immature Teratoma 8 133683 -NCIT:C6540 Childhood Testicular Teratoma 6 133684 -NCIT:C123835 Childhood Testicular Immature Teratoma 7 133685 -NCIT:C123837 Childhood Testicular Mature Teratoma 7 133686 -NCIT:C6554 Childhood Ovarian Teratoma 6 133687 -NCIT:C6547 Childhood Ovarian Immature Teratoma 7 133688 -NCIT:C6548 Childhood Ovarian Mature Teratoma 7 133689 -NCIT:C177770 Metastatic Malignant Nongerminomatous Germ Cell Tumor 4 133690 -NCIT:C177771 Recurrent Malignant Nongerminomatous Germ Cell Tumor 4 133691 -NCIT:C115427 Recurrent Malignant Extragonadal Nongerminomatous Germ Cell Tumor 5 133692 -NCIT:C191408 Refractory Malignant Nongerminomatous Germ Cell Tumor 4 133693 -NCIT:C3011 Yolk Sac Tumor 4 133694 -NCIT:C128055 Cervical Yolk Sac Tumor 5 133695 -NCIT:C128295 Vulvar Yolk Sac Tumor 5 133696 -NCIT:C147006 Cardiac Yolk Sac Tumor 5 133697 -NCIT:C147105 Pericardial Yolk Sac Tumor 5 133698 -NCIT:C178523 Yolk Sac Tumor with Somatic-Type Malignancy 5 133699 -NCIT:C27241 Adult Yolk Sac Tumor 5 133700 -NCIT:C27364 Childhood Yolk Sac Tumor 5 133701 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 6 133702 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 6 133703 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 6 133704 -NCIT:C6379 Vaginal Yolk Sac Tumor 5 133705 -NCIT:C6443 Mediastinal Yolk Sac Tumor 5 133706 -NCIT:C7011 Central Nervous System Yolk Sac Tumor 5 133707 -NCIT:C155804 Sellar Yolk Sac Tumor 6 133708 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 6 133709 -NCIT:C6752 Pineal Region Yolk Sac Tumor 6 133710 -NCIT:C8000 Testicular Yolk Sac Tumor 5 133711 -NCIT:C39923 Testicular Yolk Sac Tumor, Microcystic Pattern 6 133712 -NCIT:C39924 Testicular Yolk Sac Tumor, Macrocystic Pattern 6 133713 -NCIT:C39925 Testicular Yolk Sac Tumor, Solid Pattern 6 133714 -NCIT:C39926 Testicular Yolk Sac Tumor, Glandular-Alveolar Pattern 6 133715 -NCIT:C39927 Testicular Yolk Sac Tumor, Endodermal Sinus/Perivascular Pattern 6 133716 -NCIT:C39928 Testicular Yolk Sac Tumor, Papillary Pattern 6 133717 -NCIT:C39929 Testicular Yolk Sac Tumor, Myxomatous Pattern 6 133718 -NCIT:C39930 Testicular Yolk Sac Tumor, Polyvesicular Vitelline Pattern 6 133719 -NCIT:C39931 Testicular Yolk Sac Tumor, Hepatoid Pattern 6 133720 -NCIT:C39932 Testicular Yolk Sac Tumor, Enteric Pattern 6 133721 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 6 133722 -NCIT:C8920 Stage I Testicular Yolk Sac Tumor AJCC v6 and v7 6 133723 -NCIT:C8921 Stage II Testicular Yolk Sac Tumor AJCC v6 and v7 6 133724 -NCIT:C8922 Stage III Testicular Yolk Sac Tumor AJCC v6 and v7 6 133725 -NCIT:C8107 Ovarian Yolk Sac Tumor 5 133726 -NCIT:C39987 Ovarian Yolk Sac Tumor, Polyvesicular Vitelline Pattern 6 133727 -NCIT:C39988 Ovarian Yolk Sac Tumor, Glandular Pattern 6 133728 -NCIT:C39989 Ovarian Yolk Sac Tumor, Hepatoid Pattern 6 133729 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 6 133730 -NCIT:C8735 Stage I Ovarian Yolk Sac Tumor AJCC v6 and v7 6 133731 -NCIT:C8736 Stage II Ovarian Yolk Sac Tumor AJCC v6 and v7 6 133732 -NCIT:C8737 Stage III Ovarian Yolk Sac Tumor AJCC v6 and v7 6 133733 -NCIT:C8738 Stage IV Ovarian Yolk Sac Tumor AJCC v6 and v7 6 133734 -NCIT:C96851 Liver Yolk Sac Tumor 5 133735 -NCIT:C3403 Teratoma 4 133736 -NCIT:C188013 Teratoma with Endocrine Differentiation 5 133737 -NCIT:C188015 Ovarian Teratoma with Carcinoid Tumor 6 133738 -NCIT:C4292 Strumal Carcinoid 7 133739 -NCIT:C4291 Thyroid Carcinoma Arising in Struma Ovarii 6 133740 -NCIT:C7468 Struma Ovarii 6 133741 -NCIT:C189045 Extragonadal Teratoma 5 133742 -NCIT:C147007 Cardiac Teratoma 6 133743 -NCIT:C147103 Pericardial Teratoma 6 133744 -NCIT:C6744 Pericardial Mature Teratoma 7 133745 -NCIT:C189046 Childhood Extragonadal Teratoma 6 133746 -NCIT:C6204 Childhood Central Nervous System Teratoma 7 133747 -NCIT:C27404 Childhood Central Nervous System Mature Teratoma 8 133748 -NCIT:C27405 Childhood Central Nervous System Immature Teratoma 8 133749 -NCIT:C40131 Fallopian Tube Teratoma 6 133750 -NCIT:C45637 Lung Teratoma 6 133751 -NCIT:C46124 Thyroid Gland Teratoma 6 133752 -NCIT:C5259 Gastric Teratoma 6 133753 -NCIT:C5256 Gastric Immature Teratoma 7 133754 -NCIT:C5260 Mature Gastric Teratoma 7 133755 -NCIT:C5441 Central Nervous System Teratoma 6 133756 -NCIT:C155807 Sellar Teratoma 7 133757 -NCIT:C155808 Sellar Mature Teratoma 8 133758 -NCIT:C155809 Sellar Immature Teratoma 8 133759 -NCIT:C155810 Sellar Teratoma with Malignant Transformation 8 133760 -NCIT:C5428 Intramedullary Spinal Cord Teratoma 7 133761 -NCIT:C5794 Adult Central Nervous System Teratoma 7 133762 -NCIT:C27400 Adult Central Nervous System Mature Teratoma 8 133763 -NCIT:C27401 Adult Central Nervous System Immature Teratoma 8 133764 -NCIT:C6204 Childhood Central Nervous System Teratoma 7 133765 -NCIT:C27404 Childhood Central Nervous System Mature Teratoma 8 133766 -NCIT:C27405 Childhood Central Nervous System Immature Teratoma 8 133767 -NCIT:C6753 Pineal Region Teratoma 7 133768 -NCIT:C6754 Pineal Region Mature Teratoma 8 133769 -NCIT:C6755 Pineal Region Immature Teratoma 8 133770 -NCIT:C7013 Central Nervous System Mature Teratoma 7 133771 -NCIT:C155808 Sellar Mature Teratoma 8 133772 -NCIT:C27400 Adult Central Nervous System Mature Teratoma 8 133773 -NCIT:C27404 Childhood Central Nervous System Mature Teratoma 8 133774 -NCIT:C5508 Central Nervous System Dermoid Cyst 8 133775 -NCIT:C6808 Dermoid Cyst of the Spinal Cord 9 133776 -NCIT:C6754 Pineal Region Mature Teratoma 8 133777 -NCIT:C7014 Central Nervous System Immature Teratoma 7 133778 -NCIT:C155809 Sellar Immature Teratoma 8 133779 -NCIT:C27401 Adult Central Nervous System Immature Teratoma 8 133780 -NCIT:C27405 Childhood Central Nervous System Immature Teratoma 8 133781 -NCIT:C6755 Pineal Region Immature Teratoma 8 133782 -NCIT:C7015 Central Nervous System Teratoma with Malignant Transformation 7 133783 -NCIT:C155810 Sellar Teratoma with Malignant Transformation 8 133784 -NCIT:C6438 Mediastinal Teratoma 6 133785 -NCIT:C4668 Mediastinal Immature Teratoma 7 133786 -NCIT:C7104 Mediastinal Mature Teratoma 7 133787 -NCIT:C8884 Immature Extragonadal Teratoma 6 133788 -NCIT:C4668 Mediastinal Immature Teratoma 7 133789 -NCIT:C5256 Gastric Immature Teratoma 7 133790 -NCIT:C7014 Central Nervous System Immature Teratoma 7 133791 -NCIT:C155809 Sellar Immature Teratoma 8 133792 -NCIT:C27401 Adult Central Nervous System Immature Teratoma 8 133793 -NCIT:C27405 Childhood Central Nervous System Immature Teratoma 8 133794 -NCIT:C6755 Pineal Region Immature Teratoma 8 133795 -NCIT:C95558 Pancreatic Teratoma 6 133796 -NCIT:C95559 Pancreatic Mature Teratoma 7 133797 -NCIT:C96850 Liver Teratoma 6 133798 -NCIT:C99055 Sacrococcygeal Teratoma 6 133799 -NCIT:C4286 Immature Teratoma 5 133800 -NCIT:C123834 Childhood Immature Teratoma 6 133801 -NCIT:C123835 Childhood Testicular Immature Teratoma 7 133802 -NCIT:C27405 Childhood Central Nervous System Immature Teratoma 7 133803 -NCIT:C6547 Childhood Ovarian Immature Teratoma 7 133804 -NCIT:C6353 Immature Testicular Teratoma 6 133805 -NCIT:C123835 Childhood Testicular Immature Teratoma 7 133806 -NCIT:C8914 Stage I Immature Testicular Teratoma AJCC v6 and v7 7 133807 -NCIT:C8915 Stage II Immature Testicular Teratoma AJCC v6 and v7 7 133808 -NCIT:C8916 Stage III Immature Testicular Teratoma AJCC v6 and v7 7 133809 -NCIT:C8111 Immature Ovarian Teratoma 6 133810 -NCIT:C6547 Childhood Ovarian Immature Teratoma 7 133811 -NCIT:C8884 Immature Extragonadal Teratoma 6 133812 -NCIT:C4668 Mediastinal Immature Teratoma 7 133813 -NCIT:C5256 Gastric Immature Teratoma 7 133814 -NCIT:C7014 Central Nervous System Immature Teratoma 7 133815 -NCIT:C155809 Sellar Immature Teratoma 8 133816 -NCIT:C27401 Adult Central Nervous System Immature Teratoma 8 133817 -NCIT:C27405 Childhood Central Nervous System Immature Teratoma 8 133818 -NCIT:C6755 Pineal Region Immature Teratoma 8 133819 -NCIT:C4287 Malignant Teratoma 5 133820 -NCIT:C189055 Postpubertal-Type Teratoma 6 133821 -NCIT:C189057 Postpubertal-Type Testicular Teratoma 7 133822 -NCIT:C39995 Malignant Ovarian Teratoma 6 133823 -NCIT:C4289 Teratoma with Somatic-Type Malignancy 5 133824 -NCIT:C177774 Ovarian Dermoid Cyst with Somatic-Type Malignancy 6 133825 -NCIT:C39997 Ovarian Dermoid Cyst with Secondary Carcinoma 7 133826 -NCIT:C39998 Ovarian Dermoid Cyst with Squamous Cell Carcinoma 8 133827 -NCIT:C39999 Ovarian Dermoid Cyst with Adenocarcinoma 8 133828 -NCIT:C40004 Ovarian Dermoid Cyst with Sebaceous Carcinoma 9 133829 -NCIT:C40001 Ovarian Dermoid Cyst with Melanoma 7 133830 -NCIT:C40009 Ovarian Dermoid Cyst with Secondary Sarcoma 7 133831 -NCIT:C40010 Ovarian Dermoid Cyst with Leiomyosarcoma 8 133832 -NCIT:C40011 Ovarian Dermoid Cyst with Angiosarcoma 8 133833 -NCIT:C35711 Testicular Teratoma with Somatic-Type Malignancy 6 133834 -NCIT:C4291 Thyroid Carcinoma Arising in Struma Ovarii 6 133835 -NCIT:C7015 Central Nervous System Teratoma with Malignant Transformation 6 133836 -NCIT:C155810 Sellar Teratoma with Malignant Transformation 7 133837 -NCIT:C67107 Benign Teratoma 5 133838 -NCIT:C156411 Grade 1 Teratoma 6 133839 -NCIT:C39993 Grade 1 Ovarian Teratoma 7 133840 -NCIT:C9015 Mature Teratoma 6 133841 -NCIT:C123836 Childhood Mature Teratoma 7 133842 -NCIT:C123837 Childhood Testicular Mature Teratoma 8 133843 -NCIT:C27404 Childhood Central Nervous System Mature Teratoma 8 133844 -NCIT:C6548 Childhood Ovarian Mature Teratoma 8 133845 -NCIT:C5260 Mature Gastric Teratoma 7 133846 -NCIT:C6355 Mature Testicular Teratoma 7 133847 -NCIT:C123837 Childhood Testicular Mature Teratoma 8 133848 -NCIT:C36092 Testicular Dermoid Cyst 8 133849 -NCIT:C6744 Pericardial Mature Teratoma 7 133850 -NCIT:C7013 Central Nervous System Mature Teratoma 7 133851 -NCIT:C155808 Sellar Mature Teratoma 8 133852 -NCIT:C27400 Adult Central Nervous System Mature Teratoma 8 133853 -NCIT:C27404 Childhood Central Nervous System Mature Teratoma 8 133854 -NCIT:C5508 Central Nervous System Dermoid Cyst 8 133855 -NCIT:C6808 Dermoid Cyst of the Spinal Cord 9 133856 -NCIT:C6754 Pineal Region Mature Teratoma 8 133857 -NCIT:C7104 Mediastinal Mature Teratoma 7 133858 -NCIT:C8112 Mature Ovarian Teratoma 7 133859 -NCIT:C3856 Ovarian Dermoid Cyst 8 133860 -NCIT:C39996 Ovarian Fetiform Teratoma 8 133861 -NCIT:C6548 Childhood Ovarian Mature Teratoma 8 133862 -NCIT:C7285 Ovarian Solid Teratoma 8 133863 -NCIT:C9011 Dermoid Cyst 7 133864 -NCIT:C128113 Vaginal Dermoid Cyst 8 133865 -NCIT:C36092 Testicular Dermoid Cyst 8 133866 -NCIT:C3856 Ovarian Dermoid Cyst 8 133867 -NCIT:C4548 Orbit Dermoid Cyst 8 133868 -NCIT:C4632 Dermoid Cyst of the Skin 8 133869 -NCIT:C5508 Central Nervous System Dermoid Cyst 8 133870 -NCIT:C6808 Dermoid Cyst of the Spinal Cord 9 133871 -NCIT:C95559 Pancreatic Mature Teratoma 7 133872 -NCIT:C68626 Childhood Teratoma 5 133873 -NCIT:C123834 Childhood Immature Teratoma 6 133874 -NCIT:C123835 Childhood Testicular Immature Teratoma 7 133875 -NCIT:C27405 Childhood Central Nervous System Immature Teratoma 7 133876 -NCIT:C6547 Childhood Ovarian Immature Teratoma 7 133877 -NCIT:C123836 Childhood Mature Teratoma 6 133878 -NCIT:C123837 Childhood Testicular Mature Teratoma 7 133879 -NCIT:C27404 Childhood Central Nervous System Mature Teratoma 7 133880 -NCIT:C6548 Childhood Ovarian Mature Teratoma 7 133881 -NCIT:C189046 Childhood Extragonadal Teratoma 6 133882 -NCIT:C6204 Childhood Central Nervous System Teratoma 7 133883 -NCIT:C27404 Childhood Central Nervous System Mature Teratoma 8 133884 -NCIT:C27405 Childhood Central Nervous System Immature Teratoma 8 133885 -NCIT:C6540 Childhood Testicular Teratoma 6 133886 -NCIT:C123835 Childhood Testicular Immature Teratoma 7 133887 -NCIT:C123837 Childhood Testicular Mature Teratoma 7 133888 -NCIT:C6554 Childhood Ovarian Teratoma 6 133889 -NCIT:C6547 Childhood Ovarian Immature Teratoma 7 133890 -NCIT:C6548 Childhood Ovarian Mature Teratoma 7 133891 -NCIT:C9013 Adult Teratoma 5 133892 -NCIT:C5794 Adult Central Nervous System Teratoma 6 133893 -NCIT:C27400 Adult Central Nervous System Mature Teratoma 7 133894 -NCIT:C27401 Adult Central Nervous System Immature Teratoma 7 133895 -NCIT:C9012 Adult Cystic Teratoma 6 133896 -NCIT:C9014 Cystic Teratoma 5 133897 -NCIT:C7283 Ovarian Cystic Teratoma 6 133898 -NCIT:C3856 Ovarian Dermoid Cyst 7 133899 -NCIT:C9011 Dermoid Cyst 6 133900 -NCIT:C128113 Vaginal Dermoid Cyst 7 133901 -NCIT:C36092 Testicular Dermoid Cyst 7 133902 -NCIT:C3856 Ovarian Dermoid Cyst 7 133903 -NCIT:C4548 Orbit Dermoid Cyst 7 133904 -NCIT:C4632 Dermoid Cyst of the Skin 7 133905 -NCIT:C5508 Central Nervous System Dermoid Cyst 7 133906 -NCIT:C6808 Dermoid Cyst of the Spinal Cord 8 133907 -NCIT:C9012 Adult Cystic Teratoma 6 133908 -NCIT:C98291 Gonadal Teratoma 5 133909 -NCIT:C3877 Testicular Teratoma 6 133910 -NCIT:C189054 Prepubertal-Type Testicular Teratoma 7 133911 -NCIT:C189057 Postpubertal-Type Testicular Teratoma 7 133912 -NCIT:C35711 Testicular Teratoma with Somatic-Type Malignancy 7 133913 -NCIT:C39936 Monodermal Testicular Teratoma 7 133914 -NCIT:C6353 Immature Testicular Teratoma 7 133915 -NCIT:C123835 Childhood Testicular Immature Teratoma 8 133916 -NCIT:C8914 Stage I Immature Testicular Teratoma AJCC v6 and v7 8 133917 -NCIT:C8915 Stage II Immature Testicular Teratoma AJCC v6 and v7 8 133918 -NCIT:C8916 Stage III Immature Testicular Teratoma AJCC v6 and v7 8 133919 -NCIT:C6355 Mature Testicular Teratoma 7 133920 -NCIT:C123837 Childhood Testicular Mature Teratoma 8 133921 -NCIT:C36092 Testicular Dermoid Cyst 8 133922 -NCIT:C6540 Childhood Testicular Teratoma 7 133923 -NCIT:C123835 Childhood Testicular Immature Teratoma 8 133924 -NCIT:C123837 Childhood Testicular Mature Teratoma 8 133925 -NCIT:C8110 Ovarian Teratoma 6 133926 -NCIT:C188015 Ovarian Teratoma with Carcinoid Tumor 7 133927 -NCIT:C4292 Strumal Carcinoid 8 133928 -NCIT:C39992 Ovarian Biphasic or Triphasic Teratoma 7 133929 -NCIT:C39993 Grade 1 Ovarian Teratoma 8 133930 -NCIT:C39995 Malignant Ovarian Teratoma 8 133931 -NCIT:C7283 Ovarian Cystic Teratoma 8 133932 -NCIT:C3856 Ovarian Dermoid Cyst 9 133933 -NCIT:C8111 Immature Ovarian Teratoma 8 133934 -NCIT:C6547 Childhood Ovarian Immature Teratoma 9 133935 -NCIT:C8112 Mature Ovarian Teratoma 8 133936 -NCIT:C3856 Ovarian Dermoid Cyst 9 133937 -NCIT:C39996 Ovarian Fetiform Teratoma 9 133938 -NCIT:C6548 Childhood Ovarian Mature Teratoma 9 133939 -NCIT:C7285 Ovarian Solid Teratoma 9 133940 -NCIT:C6554 Childhood Ovarian Teratoma 7 133941 -NCIT:C6547 Childhood Ovarian Immature Teratoma 8 133942 -NCIT:C6548 Childhood Ovarian Mature Teratoma 8 133943 -NCIT:C7286 Ovarian Monodermal Teratoma 7 133944 -NCIT:C7284 Ovarian Dermoid Cyst with Secondary Tumor 8 133945 -NCIT:C177774 Ovarian Dermoid Cyst with Somatic-Type Malignancy 9 133946 -NCIT:C39997 Ovarian Dermoid Cyst with Secondary Carcinoma 10 133947 -NCIT:C39998 Ovarian Dermoid Cyst with Squamous Cell Carcinoma 11 133948 -NCIT:C39999 Ovarian Dermoid Cyst with Adenocarcinoma 11 133949 -NCIT:C40004 Ovarian Dermoid Cyst with Sebaceous Carcinoma 12 133950 -NCIT:C40001 Ovarian Dermoid Cyst with Melanoma 10 133951 -NCIT:C40009 Ovarian Dermoid Cyst with Secondary Sarcoma 10 133952 -NCIT:C40010 Ovarian Dermoid Cyst with Leiomyosarcoma 11 133953 -NCIT:C40011 Ovarian Dermoid Cyst with Angiosarcoma 11 133954 -NCIT:C40000 Ovarian Dermoid Cyst with Secondary Melanocytic Lesion 9 133955 -NCIT:C40001 Ovarian Dermoid Cyst with Melanoma 10 133956 -NCIT:C40002 Ovarian Dermoid Cyst with Melanocytic Nevus 10 133957 -NCIT:C40003 Ovarian Dermoid Cyst with Secondary Sebaceous Tumor 9 133958 -NCIT:C40004 Ovarian Dermoid Cyst with Sebaceous Carcinoma 10 133959 -NCIT:C40005 Ovarian Dermoid Cyst with Sebaceous Adenoma 10 133960 -NCIT:C40006 Ovarian Dermoid Cyst with Secondary Pituitary-Type Tumor 9 133961 -NCIT:C40007 Ovarian Dermoid Cyst with Corticotropin Secreting Adenoma 10 133962 -NCIT:C40008 Ovarian Dermoid Cyst with Prolactin Secreting Adenoma 10 133963 -NCIT:C8113 Ovarian Monodermal and Highly Specialized Teratoma 8 133964 -NCIT:C4291 Thyroid Carcinoma Arising in Struma Ovarii 9 133965 -NCIT:C7468 Struma Ovarii 9 133966 -NCIT:C8743 Stage I Ovarian Teratoma AJCC v6 and v7 7 133967 -NCIT:C8744 Stage II Ovarian Teratoma AJCC v6 and v7 7 133968 -NCIT:C8745 Stage III Ovarian Teratoma AJCC v6 and v7 7 133969 -NCIT:C8746 Stage IV Ovarian Teratoma AJCC v6 and v7 7 133970 -NCIT:C3752 Embryonal Carcinoma 4 133971 -NCIT:C123847 Childhood Embryonal Carcinoma 5 133972 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 6 133973 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 6 133974 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 6 133975 -NCIT:C6341 Testicular Embryonal Carcinoma 5 133976 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 6 133977 -NCIT:C7325 Intratubular Non-Seminoma 6 133978 -NCIT:C8908 Stage I Testicular Embryonal Carcinoma AJCC v6 and v7 6 133979 -NCIT:C8909 Stage II Testicular Embryonal Carcinoma AJCC v6 and v7 6 133980 -NCIT:C8910 Stage III Testicular Embryonal Carcinoma AJCC v6 and v7 6 133981 -NCIT:C8108 Ovarian Embryonal Carcinoma 5 133982 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 6 133983 -NCIT:C8725 Stage II Ovarian Embryonal Carcinoma AJCC v6 and v7 6 133984 -NCIT:C8728 Stage III Ovarian Embryonal Carcinoma AJCC v6 and v7 6 133985 -NCIT:C8729 Stage IV Ovarian Embryonal Carcinoma AJCC v6 and v7 6 133986 -NCIT:C8734 Stage I Ovarian Embryonal Carcinoma AJCC v6 and v7 6 133987 -NCIT:C8880 Extragonadal Embryonal Carcinoma 5 133988 -NCIT:C6441 Mediastinal Embryonal Carcinoma 6 133989 -NCIT:C7010 Central Nervous System Embryonal Carcinoma 6 133990 -NCIT:C155805 Sellar Embryonal Carcinoma 7 133991 -NCIT:C5790 Adult Central Nervous System Embryonal Carcinoma 7 133992 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 7 133993 -NCIT:C3756 Mixed Embryonal Carcinoma and Teratoma 4 133994 -NCIT:C6351 Testicular Mixed Embryonal Carcinoma and Teratoma 5 133995 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 6 133996 -NCIT:C6442 Mediastinal Mixed Embryonal Carcinoma and Teratoma 5 133997 -NCIT:C8885 Malignant Extragonadal Nongerminomatous Germ Cell Tumor 4 133998 -NCIT:C115427 Recurrent Malignant Extragonadal Nongerminomatous Germ Cell Tumor 5 133999 -NCIT:C6439 Malignant Mediastinal Nongerminomatous Germ Cell Tumor 5 134000 -NCIT:C45733 Malignant Mediastinal Germ Cell Tumor with Associated Hematologic Malignancy 6 134001 -NCIT:C6440 Mediastinal Choriocarcinoma 6 134002 -NCIT:C6441 Mediastinal Embryonal Carcinoma 6 134003 -NCIT:C6443 Mediastinal Yolk Sac Tumor 6 134004 -NCIT:C6444 Mediastinal Mixed Nongerminomatous Germ Cell Tumor 6 134005 -NCIT:C6442 Mediastinal Mixed Embryonal Carcinoma and Teratoma 7 134006 -NCIT:C7011 Central Nervous System Yolk Sac Tumor 5 134007 -NCIT:C155804 Sellar Yolk Sac Tumor 6 134008 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 6 134009 -NCIT:C6752 Pineal Region Yolk Sac Tumor 6 134010 -NCIT:C7012 Central Nervous System Choriocarcinoma 5 134011 -NCIT:C155806 Sellar Choriocarcinoma 6 134012 -NCIT:C5793 Adult Central Nervous System Choriocarcinoma 6 134013 -NCIT:C6206 Childhood Central Nervous System Choriocarcinoma 6 134014 -NCIT:C6759 Pineal Region Choriocarcinoma 6 134015 -NCIT:C7015 Central Nervous System Teratoma with Malignant Transformation 5 134016 -NCIT:C155810 Sellar Teratoma with Malignant Transformation 6 134017 -NCIT:C8880 Extragonadal Embryonal Carcinoma 5 134018 -NCIT:C6441 Mediastinal Embryonal Carcinoma 6 134019 -NCIT:C7010 Central Nervous System Embryonal Carcinoma 6 134020 -NCIT:C155805 Sellar Embryonal Carcinoma 7 134021 -NCIT:C5790 Adult Central Nervous System Embryonal Carcinoma 7 134022 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 7 134023 -NCIT:C95749 Gastric Choriocarcinoma 5 134024 -NCIT:C9313 Testicular Non-Seminomatous Germ Cell Tumor 4 134025 -NCIT:C123843 Childhood Testicular Non-Seminomatous Germ Cell Tumor 5 134026 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 6 134027 -NCIT:C6540 Childhood Testicular Teratoma 6 134028 -NCIT:C123835 Childhood Testicular Immature Teratoma 7 134029 -NCIT:C123837 Childhood Testicular Mature Teratoma 7 134030 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 6 134031 -NCIT:C6544 Childhood Testicular Choriocarcinoma 6 134032 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 6 134033 -NCIT:C3877 Testicular Teratoma 5 134034 -NCIT:C189054 Prepubertal-Type Testicular Teratoma 6 134035 -NCIT:C189057 Postpubertal-Type Testicular Teratoma 6 134036 -NCIT:C35711 Testicular Teratoma with Somatic-Type Malignancy 6 134037 -NCIT:C39936 Monodermal Testicular Teratoma 6 134038 -NCIT:C6353 Immature Testicular Teratoma 6 134039 -NCIT:C123835 Childhood Testicular Immature Teratoma 7 134040 -NCIT:C8914 Stage I Immature Testicular Teratoma AJCC v6 and v7 7 134041 -NCIT:C8915 Stage II Immature Testicular Teratoma AJCC v6 and v7 7 134042 -NCIT:C8916 Stage III Immature Testicular Teratoma AJCC v6 and v7 7 134043 -NCIT:C6355 Mature Testicular Teratoma 6 134044 -NCIT:C123837 Childhood Testicular Mature Teratoma 7 134045 -NCIT:C36092 Testicular Dermoid Cyst 7 134046 -NCIT:C6540 Childhood Testicular Teratoma 6 134047 -NCIT:C123835 Childhood Testicular Immature Teratoma 7 134048 -NCIT:C123837 Childhood Testicular Mature Teratoma 7 134049 -NCIT:C39934 Testicular Trophoblastic Tumor 5 134050 -NCIT:C7733 Testicular Choriocarcinoma 6 134051 -NCIT:C39935 Testicular Monophasic Choriocarcinoma 7 134052 -NCIT:C6544 Childhood Testicular Choriocarcinoma 7 134053 -NCIT:C8606 Stage II Testicular Choriocarcinoma AJCC v6 and v7 7 134054 -NCIT:C8900 Stage III Testicular Choriocarcinoma AJCC v6 and v7 7 134055 -NCIT:C8907 Stage I Testicular Choriocarcinoma AJCC v6 and v7 7 134056 -NCIT:C5027 Malignant Testicular Non-Seminomatous Germ Cell Tumor 5 134057 -NCIT:C27785 Stage I Testicular Non-Seminomatous Germ Cell Tumor AJCC v6 and v7 6 134058 -NCIT:C8907 Stage I Testicular Choriocarcinoma AJCC v6 and v7 7 134059 -NCIT:C8908 Stage I Testicular Embryonal Carcinoma AJCC v6 and v7 7 134060 -NCIT:C8914 Stage I Immature Testicular Teratoma AJCC v6 and v7 7 134061 -NCIT:C8920 Stage I Testicular Yolk Sac Tumor AJCC v6 and v7 7 134062 -NCIT:C27786 Stage II Testicular Non-Seminomatous Germ Cell Tumor AJCC v6 and v7 6 134063 -NCIT:C8606 Stage II Testicular Choriocarcinoma AJCC v6 and v7 7 134064 -NCIT:C8909 Stage II Testicular Embryonal Carcinoma AJCC v6 and v7 7 134065 -NCIT:C8915 Stage II Immature Testicular Teratoma AJCC v6 and v7 7 134066 -NCIT:C8921 Stage II Testicular Yolk Sac Tumor AJCC v6 and v7 7 134067 -NCIT:C27787 Stage III Testicular Non-Seminomatous Germ Cell Tumor AJCC v6 and v7 6 134068 -NCIT:C8900 Stage III Testicular Choriocarcinoma AJCC v6 and v7 7 134069 -NCIT:C8910 Stage III Testicular Embryonal Carcinoma AJCC v6 and v7 7 134070 -NCIT:C8916 Stage III Immature Testicular Teratoma AJCC v6 and v7 7 134071 -NCIT:C8922 Stage III Testicular Yolk Sac Tumor AJCC v6 and v7 7 134072 -NCIT:C35711 Testicular Teratoma with Somatic-Type Malignancy 6 134073 -NCIT:C6341 Testicular Embryonal Carcinoma 6 134074 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 7 134075 -NCIT:C7325 Intratubular Non-Seminoma 7 134076 -NCIT:C8908 Stage I Testicular Embryonal Carcinoma AJCC v6 and v7 7 134077 -NCIT:C8909 Stage II Testicular Embryonal Carcinoma AJCC v6 and v7 7 134078 -NCIT:C8910 Stage III Testicular Embryonal Carcinoma AJCC v6 and v7 7 134079 -NCIT:C6351 Testicular Mixed Embryonal Carcinoma and Teratoma 6 134080 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 7 134081 -NCIT:C7733 Testicular Choriocarcinoma 6 134082 -NCIT:C39935 Testicular Monophasic Choriocarcinoma 7 134083 -NCIT:C6544 Childhood Testicular Choriocarcinoma 7 134084 -NCIT:C8606 Stage II Testicular Choriocarcinoma AJCC v6 and v7 7 134085 -NCIT:C8900 Stage III Testicular Choriocarcinoma AJCC v6 and v7 7 134086 -NCIT:C8907 Stage I Testicular Choriocarcinoma AJCC v6 and v7 7 134087 -NCIT:C8000 Testicular Yolk Sac Tumor 6 134088 -NCIT:C39923 Testicular Yolk Sac Tumor, Microcystic Pattern 7 134089 -NCIT:C39924 Testicular Yolk Sac Tumor, Macrocystic Pattern 7 134090 -NCIT:C39925 Testicular Yolk Sac Tumor, Solid Pattern 7 134091 -NCIT:C39926 Testicular Yolk Sac Tumor, Glandular-Alveolar Pattern 7 134092 -NCIT:C39927 Testicular Yolk Sac Tumor, Endodermal Sinus/Perivascular Pattern 7 134093 -NCIT:C39928 Testicular Yolk Sac Tumor, Papillary Pattern 7 134094 -NCIT:C39929 Testicular Yolk Sac Tumor, Myxomatous Pattern 7 134095 -NCIT:C39930 Testicular Yolk Sac Tumor, Polyvesicular Vitelline Pattern 7 134096 -NCIT:C39931 Testicular Yolk Sac Tumor, Hepatoid Pattern 7 134097 -NCIT:C39932 Testicular Yolk Sac Tumor, Enteric Pattern 7 134098 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 7 134099 -NCIT:C8920 Stage I Testicular Yolk Sac Tumor AJCC v6 and v7 7 134100 -NCIT:C8921 Stage II Testicular Yolk Sac Tumor AJCC v6 and v7 7 134101 -NCIT:C8922 Stage III Testicular Yolk Sac Tumor AJCC v6 and v7 7 134102 -NCIT:C8001 Testicular Mixed Embryonal Carcinoma and Yolk Sac Tumor 6 134103 -NCIT:C8002 Testicular Mixed Yolk Sac Tumor and Teratoma 6 134104 -NCIT:C128112 Vaginal Germ Cell Tumor 3 134105 -NCIT:C128113 Vaginal Dermoid Cyst 4 134106 -NCIT:C6379 Vaginal Yolk Sac Tumor 4 134107 -NCIT:C128294 Vulvar Germ Cell Tumor 3 134108 -NCIT:C128295 Vulvar Yolk Sac Tumor 4 134109 -NCIT:C180879 Cervical Germ Cell Tumor 3 134110 -NCIT:C128055 Cervical Yolk Sac Tumor 4 134111 -NCIT:C3873 Ovarian Germ Cell Tumor 3 134112 -NCIT:C4514 Malignant Ovarian Germ Cell Tumor 4 134113 -NCIT:C39986 Ovarian Primitive Germ Cell Tumor 5 134114 -NCIT:C102870 Ovarian Non-Dysgerminomatous Germ Cell Tumor 6 134115 -NCIT:C39990 Ovarian Polyembryoma 7 134116 -NCIT:C8739 Stage I Ovarian Polyembryoma AJCC v6 and v7 8 134117 -NCIT:C8740 Stage II Ovarian Polyembryoma AJCC v6 and v7 8 134118 -NCIT:C8741 Stage III Ovarian Polyembryoma AJCC v6 and v7 8 134119 -NCIT:C8742 Stage IV Ovarian Polyembryoma AJCC v6 and v7 8 134120 -NCIT:C39991 Non-Gestational Ovarian Choriocarcinoma 7 134121 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 8 134122 -NCIT:C8107 Ovarian Yolk Sac Tumor 7 134123 -NCIT:C39987 Ovarian Yolk Sac Tumor, Polyvesicular Vitelline Pattern 8 134124 -NCIT:C39988 Ovarian Yolk Sac Tumor, Glandular Pattern 8 134125 -NCIT:C39989 Ovarian Yolk Sac Tumor, Hepatoid Pattern 8 134126 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 8 134127 -NCIT:C8735 Stage I Ovarian Yolk Sac Tumor AJCC v6 and v7 8 134128 -NCIT:C8736 Stage II Ovarian Yolk Sac Tumor AJCC v6 and v7 8 134129 -NCIT:C8737 Stage III Ovarian Yolk Sac Tumor AJCC v6 and v7 8 134130 -NCIT:C8738 Stage IV Ovarian Yolk Sac Tumor AJCC v6 and v7 8 134131 -NCIT:C8108 Ovarian Embryonal Carcinoma 7 134132 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 8 134133 -NCIT:C8725 Stage II Ovarian Embryonal Carcinoma AJCC v6 and v7 8 134134 -NCIT:C8728 Stage III Ovarian Embryonal Carcinoma AJCC v6 and v7 8 134135 -NCIT:C8729 Stage IV Ovarian Embryonal Carcinoma AJCC v6 and v7 8 134136 -NCIT:C8734 Stage I Ovarian Embryonal Carcinoma AJCC v6 and v7 8 134137 -NCIT:C8106 Ovarian Dysgerminoma 6 134138 -NCIT:C6550 Childhood Ovarian Dysgerminoma 7 134139 -NCIT:C8723 Stage I Ovarian Dysgerminoma AJCC v6 and v7 7 134140 -NCIT:C8724 Stage II Ovarian Dysgerminoma AJCC v6 and v7 7 134141 -NCIT:C8726 Stage III Ovarian Dysgerminoma AJCC v6 and v7 7 134142 -NCIT:C8727 Stage IV Ovarian Dysgerminoma AJCC v6 and v7 7 134143 -NCIT:C8114 Ovarian Mixed Germ Cell Tumor 6 134144 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 7 134145 -NCIT:C39995 Malignant Ovarian Teratoma 5 134146 -NCIT:C4291 Thyroid Carcinoma Arising in Struma Ovarii 5 134147 -NCIT:C68629 Childhood Malignant Ovarian Germ Cell Tumor 5 134148 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 6 134149 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 6 134150 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 6 134151 -NCIT:C6550 Childhood Ovarian Dysgerminoma 6 134152 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 6 134153 -NCIT:C8083 Stage I Ovarian Germ Cell Tumor AJCC v6 and v7 5 134154 -NCIT:C6291 Stage IA Ovarian Germ Cell Tumor AJCC v6 and v7 6 134155 -NCIT:C6292 Stage IB Ovarian Germ Cell Tumor AJCC v6 and v7 6 134156 -NCIT:C6293 Stage IC Ovarian Germ Cell Tumor AJCC v6 and v7 6 134157 -NCIT:C8723 Stage I Ovarian Dysgerminoma AJCC v6 and v7 6 134158 -NCIT:C8734 Stage I Ovarian Embryonal Carcinoma AJCC v6 and v7 6 134159 -NCIT:C8735 Stage I Ovarian Yolk Sac Tumor AJCC v6 and v7 6 134160 -NCIT:C8739 Stage I Ovarian Polyembryoma AJCC v6 and v7 6 134161 -NCIT:C8743 Stage I Ovarian Teratoma AJCC v6 and v7 6 134162 -NCIT:C8084 Stage II Ovarian Germ Cell Tumor AJCC v6 and v7 5 134163 -NCIT:C6294 Stage IIC Ovarian Germ Cell Tumor AJCC v6 and v7 6 134164 -NCIT:C6295 Stage IIB Ovarian Germ Cell Tumor AJCC v6 and v7 6 134165 -NCIT:C6296 Stage IIA Ovarian Germ Cell Tumor AJCC v6 and v7 6 134166 -NCIT:C8724 Stage II Ovarian Dysgerminoma AJCC v6 and v7 6 134167 -NCIT:C8725 Stage II Ovarian Embryonal Carcinoma AJCC v6 and v7 6 134168 -NCIT:C8736 Stage II Ovarian Yolk Sac Tumor AJCC v6 and v7 6 134169 -NCIT:C8740 Stage II Ovarian Polyembryoma AJCC v6 and v7 6 134170 -NCIT:C8744 Stage II Ovarian Teratoma AJCC v6 and v7 6 134171 -NCIT:C8085 Stage III Ovarian Germ Cell Tumor AJCC v6 and v7 5 134172 -NCIT:C6297 Stage IIIA Ovarian Germ Cell Tumor AJCC v6 and v7 6 134173 -NCIT:C6298 Stage IIIB Ovarian Germ Cell Tumor AJCC v6 and v7 6 134174 -NCIT:C6299 Stage IIIC Ovarian Germ Cell Tumor AJCC v6 and v7 6 134175 -NCIT:C8726 Stage III Ovarian Dysgerminoma AJCC v6 and v7 6 134176 -NCIT:C8728 Stage III Ovarian Embryonal Carcinoma AJCC v6 and v7 6 134177 -NCIT:C8737 Stage III Ovarian Yolk Sac Tumor AJCC v6 and v7 6 134178 -NCIT:C8741 Stage III Ovarian Polyembryoma AJCC v6 and v7 6 134179 -NCIT:C8745 Stage III Ovarian Teratoma AJCC v6 and v7 6 134180 -NCIT:C8086 Stage IV Ovarian Germ Cell Tumor AJCC v6 and v7 5 134181 -NCIT:C8727 Stage IV Ovarian Dysgerminoma AJCC v6 and v7 6 134182 -NCIT:C8729 Stage IV Ovarian Embryonal Carcinoma AJCC v6 and v7 6 134183 -NCIT:C8738 Stage IV Ovarian Yolk Sac Tumor AJCC v6 and v7 6 134184 -NCIT:C8742 Stage IV Ovarian Polyembryoma AJCC v6 and v7 6 134185 -NCIT:C8746 Stage IV Ovarian Teratoma AJCC v6 and v7 6 134186 -NCIT:C8087 Recurrent Ovarian Germ Cell Tumor 5 134187 -NCIT:C4516 Benign Ovarian Germ Cell Tumor 4 134188 -NCIT:C8112 Mature Ovarian Teratoma 5 134189 -NCIT:C3856 Ovarian Dermoid Cyst 6 134190 -NCIT:C39996 Ovarian Fetiform Teratoma 6 134191 -NCIT:C6548 Childhood Ovarian Mature Teratoma 6 134192 -NCIT:C7285 Ovarian Solid Teratoma 6 134193 -NCIT:C8110 Ovarian Teratoma 4 134194 -NCIT:C188015 Ovarian Teratoma with Carcinoid Tumor 5 134195 -NCIT:C4292 Strumal Carcinoid 6 134196 -NCIT:C39992 Ovarian Biphasic or Triphasic Teratoma 5 134197 -NCIT:C39993 Grade 1 Ovarian Teratoma 6 134198 -NCIT:C39995 Malignant Ovarian Teratoma 6 134199 -NCIT:C7283 Ovarian Cystic Teratoma 6 134200 -NCIT:C3856 Ovarian Dermoid Cyst 7 134201 -NCIT:C8111 Immature Ovarian Teratoma 6 134202 -NCIT:C6547 Childhood Ovarian Immature Teratoma 7 134203 -NCIT:C8112 Mature Ovarian Teratoma 6 134204 -NCIT:C3856 Ovarian Dermoid Cyst 7 134205 -NCIT:C39996 Ovarian Fetiform Teratoma 7 134206 -NCIT:C6548 Childhood Ovarian Mature Teratoma 7 134207 -NCIT:C7285 Ovarian Solid Teratoma 7 134208 -NCIT:C6554 Childhood Ovarian Teratoma 5 134209 -NCIT:C6547 Childhood Ovarian Immature Teratoma 6 134210 -NCIT:C6548 Childhood Ovarian Mature Teratoma 6 134211 -NCIT:C7286 Ovarian Monodermal Teratoma 5 134212 -NCIT:C7284 Ovarian Dermoid Cyst with Secondary Tumor 6 134213 -NCIT:C177774 Ovarian Dermoid Cyst with Somatic-Type Malignancy 7 134214 -NCIT:C39997 Ovarian Dermoid Cyst with Secondary Carcinoma 8 134215 -NCIT:C39998 Ovarian Dermoid Cyst with Squamous Cell Carcinoma 9 134216 -NCIT:C39999 Ovarian Dermoid Cyst with Adenocarcinoma 9 134217 -NCIT:C40004 Ovarian Dermoid Cyst with Sebaceous Carcinoma 10 134218 -NCIT:C40001 Ovarian Dermoid Cyst with Melanoma 8 134219 -NCIT:C40009 Ovarian Dermoid Cyst with Secondary Sarcoma 8 134220 -NCIT:C40010 Ovarian Dermoid Cyst with Leiomyosarcoma 9 134221 -NCIT:C40011 Ovarian Dermoid Cyst with Angiosarcoma 9 134222 -NCIT:C40000 Ovarian Dermoid Cyst with Secondary Melanocytic Lesion 7 134223 -NCIT:C40001 Ovarian Dermoid Cyst with Melanoma 8 134224 -NCIT:C40002 Ovarian Dermoid Cyst with Melanocytic Nevus 8 134225 -NCIT:C40003 Ovarian Dermoid Cyst with Secondary Sebaceous Tumor 7 134226 -NCIT:C40004 Ovarian Dermoid Cyst with Sebaceous Carcinoma 8 134227 -NCIT:C40005 Ovarian Dermoid Cyst with Sebaceous Adenoma 8 134228 -NCIT:C40006 Ovarian Dermoid Cyst with Secondary Pituitary-Type Tumor 7 134229 -NCIT:C40007 Ovarian Dermoid Cyst with Corticotropin Secreting Adenoma 8 134230 -NCIT:C40008 Ovarian Dermoid Cyst with Prolactin Secreting Adenoma 8 134231 -NCIT:C8113 Ovarian Monodermal and Highly Specialized Teratoma 6 134232 -NCIT:C4291 Thyroid Carcinoma Arising in Struma Ovarii 7 134233 -NCIT:C7468 Struma Ovarii 7 134234 -NCIT:C8743 Stage I Ovarian Teratoma AJCC v6 and v7 5 134235 -NCIT:C8744 Stage II Ovarian Teratoma AJCC v6 and v7 5 134236 -NCIT:C8745 Stage III Ovarian Teratoma AJCC v6 and v7 5 134237 -NCIT:C8746 Stage IV Ovarian Teratoma AJCC v6 and v7 5 134238 -NCIT:C8588 Childhood Ovarian Germ Cell Tumor 4 134239 -NCIT:C123842 Childhood Ovarian Nongerminomatous Germ Cell Tumor 5 134240 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 6 134241 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 6 134242 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 6 134243 -NCIT:C6554 Childhood Ovarian Teratoma 6 134244 -NCIT:C6547 Childhood Ovarian Immature Teratoma 7 134245 -NCIT:C6548 Childhood Ovarian Mature Teratoma 7 134246 -NCIT:C68629 Childhood Malignant Ovarian Germ Cell Tumor 5 134247 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 6 134248 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 6 134249 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 6 134250 -NCIT:C6550 Childhood Ovarian Dysgerminoma 6 134251 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 6 134252 -NCIT:C3918 Extragonadal Germ Cell Tumor 3 134253 -NCIT:C127077 Uterine Corpus Germ Cell Tumor 4 134254 -NCIT:C147005 Cardiac Germ Cell Tumor 4 134255 -NCIT:C147007 Cardiac Teratoma 5 134256 -NCIT:C5357 Benign Cardiac Germ Cell Tumor 5 134257 -NCIT:C5371 Malignant Cardiac Germ Cell Tumor 5 134258 -NCIT:C147006 Cardiac Yolk Sac Tumor 6 134259 -NCIT:C159227 Kidney Germ Cell Tumor 4 134260 -NCIT:C189045 Extragonadal Teratoma 4 134261 -NCIT:C147007 Cardiac Teratoma 5 134262 -NCIT:C147103 Pericardial Teratoma 5 134263 -NCIT:C6744 Pericardial Mature Teratoma 6 134264 -NCIT:C189046 Childhood Extragonadal Teratoma 5 134265 -NCIT:C6204 Childhood Central Nervous System Teratoma 6 134266 -NCIT:C27404 Childhood Central Nervous System Mature Teratoma 7 134267 -NCIT:C27405 Childhood Central Nervous System Immature Teratoma 7 134268 -NCIT:C40131 Fallopian Tube Teratoma 5 134269 -NCIT:C45637 Lung Teratoma 5 134270 -NCIT:C46124 Thyroid Gland Teratoma 5 134271 -NCIT:C5259 Gastric Teratoma 5 134272 -NCIT:C5256 Gastric Immature Teratoma 6 134273 -NCIT:C5260 Mature Gastric Teratoma 6 134274 -NCIT:C5441 Central Nervous System Teratoma 5 134275 -NCIT:C155807 Sellar Teratoma 6 134276 -NCIT:C155808 Sellar Mature Teratoma 7 134277 -NCIT:C155809 Sellar Immature Teratoma 7 134278 -NCIT:C155810 Sellar Teratoma with Malignant Transformation 7 134279 -NCIT:C5428 Intramedullary Spinal Cord Teratoma 6 134280 -NCIT:C5794 Adult Central Nervous System Teratoma 6 134281 -NCIT:C27400 Adult Central Nervous System Mature Teratoma 7 134282 -NCIT:C27401 Adult Central Nervous System Immature Teratoma 7 134283 -NCIT:C6204 Childhood Central Nervous System Teratoma 6 134284 -NCIT:C27404 Childhood Central Nervous System Mature Teratoma 7 134285 -NCIT:C27405 Childhood Central Nervous System Immature Teratoma 7 134286 -NCIT:C6753 Pineal Region Teratoma 6 134287 -NCIT:C6754 Pineal Region Mature Teratoma 7 134288 -NCIT:C6755 Pineal Region Immature Teratoma 7 134289 -NCIT:C7013 Central Nervous System Mature Teratoma 6 134290 -NCIT:C155808 Sellar Mature Teratoma 7 134291 -NCIT:C27400 Adult Central Nervous System Mature Teratoma 7 134292 -NCIT:C27404 Childhood Central Nervous System Mature Teratoma 7 134293 -NCIT:C5508 Central Nervous System Dermoid Cyst 7 134294 -NCIT:C6808 Dermoid Cyst of the Spinal Cord 8 134295 -NCIT:C6754 Pineal Region Mature Teratoma 7 134296 -NCIT:C7014 Central Nervous System Immature Teratoma 6 134297 -NCIT:C155809 Sellar Immature Teratoma 7 134298 -NCIT:C27401 Adult Central Nervous System Immature Teratoma 7 134299 -NCIT:C27405 Childhood Central Nervous System Immature Teratoma 7 134300 -NCIT:C6755 Pineal Region Immature Teratoma 7 134301 -NCIT:C7015 Central Nervous System Teratoma with Malignant Transformation 6 134302 -NCIT:C155810 Sellar Teratoma with Malignant Transformation 7 134303 -NCIT:C6438 Mediastinal Teratoma 5 134304 -NCIT:C4668 Mediastinal Immature Teratoma 6 134305 -NCIT:C7104 Mediastinal Mature Teratoma 6 134306 -NCIT:C8884 Immature Extragonadal Teratoma 5 134307 -NCIT:C4668 Mediastinal Immature Teratoma 6 134308 -NCIT:C5256 Gastric Immature Teratoma 6 134309 -NCIT:C7014 Central Nervous System Immature Teratoma 6 134310 -NCIT:C155809 Sellar Immature Teratoma 7 134311 -NCIT:C27401 Adult Central Nervous System Immature Teratoma 7 134312 -NCIT:C27405 Childhood Central Nervous System Immature Teratoma 7 134313 -NCIT:C6755 Pineal Region Immature Teratoma 7 134314 -NCIT:C95558 Pancreatic Teratoma 5 134315 -NCIT:C95559 Pancreatic Mature Teratoma 6 134316 -NCIT:C96850 Liver Teratoma 5 134317 -NCIT:C99055 Sacrococcygeal Teratoma 5 134318 -NCIT:C45636 Lung Germ Cell Tumor 4 134319 -NCIT:C45637 Lung Teratoma 5 134320 -NCIT:C45761 Pericardial Germ Cell Tumor 4 134321 -NCIT:C147103 Pericardial Teratoma 5 134322 -NCIT:C6744 Pericardial Mature Teratoma 6 134323 -NCIT:C147104 Malignant Pericardial Germ Cell Tumor 5 134324 -NCIT:C147105 Pericardial Yolk Sac Tumor 6 134325 -NCIT:C147106 Benign Pericardial Germ Cell Tumor 5 134326 -NCIT:C6744 Pericardial Mature Teratoma 6 134327 -NCIT:C5461 Central Nervous System Germ Cell Tumor 4 134328 -NCIT:C100093 Central Nervous System Nongerminomatous Germ Cell Tumor 5 134329 -NCIT:C5441 Central Nervous System Teratoma 6 134330 -NCIT:C155807 Sellar Teratoma 7 134331 -NCIT:C155808 Sellar Mature Teratoma 8 134332 -NCIT:C155809 Sellar Immature Teratoma 8 134333 -NCIT:C155810 Sellar Teratoma with Malignant Transformation 8 134334 -NCIT:C5428 Intramedullary Spinal Cord Teratoma 7 134335 -NCIT:C5794 Adult Central Nervous System Teratoma 7 134336 -NCIT:C27400 Adult Central Nervous System Mature Teratoma 8 134337 -NCIT:C27401 Adult Central Nervous System Immature Teratoma 8 134338 -NCIT:C6204 Childhood Central Nervous System Teratoma 7 134339 -NCIT:C27404 Childhood Central Nervous System Mature Teratoma 8 134340 -NCIT:C27405 Childhood Central Nervous System Immature Teratoma 8 134341 -NCIT:C6753 Pineal Region Teratoma 7 134342 -NCIT:C6754 Pineal Region Mature Teratoma 8 134343 -NCIT:C6755 Pineal Region Immature Teratoma 8 134344 -NCIT:C7013 Central Nervous System Mature Teratoma 7 134345 -NCIT:C155808 Sellar Mature Teratoma 8 134346 -NCIT:C27400 Adult Central Nervous System Mature Teratoma 8 134347 -NCIT:C27404 Childhood Central Nervous System Mature Teratoma 8 134348 -NCIT:C5508 Central Nervous System Dermoid Cyst 8 134349 -NCIT:C6808 Dermoid Cyst of the Spinal Cord 9 134350 -NCIT:C6754 Pineal Region Mature Teratoma 8 134351 -NCIT:C7014 Central Nervous System Immature Teratoma 7 134352 -NCIT:C155809 Sellar Immature Teratoma 8 134353 -NCIT:C27401 Adult Central Nervous System Immature Teratoma 8 134354 -NCIT:C27405 Childhood Central Nervous System Immature Teratoma 8 134355 -NCIT:C6755 Pineal Region Immature Teratoma 8 134356 -NCIT:C7015 Central Nervous System Teratoma with Malignant Transformation 7 134357 -NCIT:C155810 Sellar Teratoma with Malignant Transformation 8 134358 -NCIT:C7010 Central Nervous System Embryonal Carcinoma 6 134359 -NCIT:C155805 Sellar Embryonal Carcinoma 7 134360 -NCIT:C5790 Adult Central Nervous System Embryonal Carcinoma 7 134361 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 7 134362 -NCIT:C7011 Central Nervous System Yolk Sac Tumor 6 134363 -NCIT:C155804 Sellar Yolk Sac Tumor 7 134364 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 7 134365 -NCIT:C6752 Pineal Region Yolk Sac Tumor 7 134366 -NCIT:C7012 Central Nervous System Choriocarcinoma 6 134367 -NCIT:C155806 Sellar Choriocarcinoma 7 134368 -NCIT:C5793 Adult Central Nervous System Choriocarcinoma 7 134369 -NCIT:C6206 Childhood Central Nervous System Choriocarcinoma 7 134370 -NCIT:C6759 Pineal Region Choriocarcinoma 7 134371 -NCIT:C155801 Sellar Germ Cell Tumor 5 134372 -NCIT:C155802 Sellar Germinoma 6 134373 -NCIT:C155803 Suprasellar Germinoma 7 134374 -NCIT:C155804 Sellar Yolk Sac Tumor 6 134375 -NCIT:C155805 Sellar Embryonal Carcinoma 6 134376 -NCIT:C155806 Sellar Choriocarcinoma 6 134377 -NCIT:C155807 Sellar Teratoma 6 134378 -NCIT:C155808 Sellar Mature Teratoma 7 134379 -NCIT:C155809 Sellar Immature Teratoma 7 134380 -NCIT:C155810 Sellar Teratoma with Malignant Transformation 7 134381 -NCIT:C155811 Sellar Mixed Germ Cell Tumor 6 134382 -NCIT:C177769 Suprasellar Germ Cell Tumor 6 134383 -NCIT:C155803 Suprasellar Germinoma 7 134384 -NCIT:C4659 Pineal Region Germ Cell Tumor 5 134385 -NCIT:C6753 Pineal Region Teratoma 6 134386 -NCIT:C6754 Pineal Region Mature Teratoma 7 134387 -NCIT:C6755 Pineal Region Immature Teratoma 7 134388 -NCIT:C6767 Malignant Pineal Region Germ Cell Tumor 6 134389 -NCIT:C6752 Pineal Region Yolk Sac Tumor 7 134390 -NCIT:C6759 Pineal Region Choriocarcinoma 7 134391 -NCIT:C8712 Pineal Region Germinoma 7 134392 -NCIT:C54099 Malignant Central Nervous System Germ Cell Tumor 5 134393 -NCIT:C5403 Malignant Intracranial Germ Cell Tumor 6 134394 -NCIT:C155804 Sellar Yolk Sac Tumor 7 134395 -NCIT:C155805 Sellar Embryonal Carcinoma 7 134396 -NCIT:C155806 Sellar Choriocarcinoma 7 134397 -NCIT:C155810 Sellar Teratoma with Malignant Transformation 7 134398 -NCIT:C155811 Sellar Mixed Germ Cell Tumor 7 134399 -NCIT:C5430 Intracranial Germinoma 7 134400 -NCIT:C155802 Sellar Germinoma 8 134401 -NCIT:C155803 Suprasellar Germinoma 9 134402 -NCIT:C6284 Brain Germinoma 8 134403 -NCIT:C156040 Third Ventricle Germinoma 9 134404 -NCIT:C6207 Childhood Brain Germinoma 9 134405 -NCIT:C8712 Pineal Region Germinoma 9 134406 -NCIT:C6767 Malignant Pineal Region Germ Cell Tumor 7 134407 -NCIT:C6752 Pineal Region Yolk Sac Tumor 8 134408 -NCIT:C6759 Pineal Region Choriocarcinoma 8 134409 -NCIT:C8712 Pineal Region Germinoma 8 134410 -NCIT:C7009 Central Nervous System Germinoma 6 134411 -NCIT:C27406 Childhood Central Nervous System Germinoma 7 134412 -NCIT:C6207 Childhood Brain Germinoma 8 134413 -NCIT:C5430 Intracranial Germinoma 7 134414 -NCIT:C155802 Sellar Germinoma 8 134415 -NCIT:C155803 Suprasellar Germinoma 9 134416 -NCIT:C6284 Brain Germinoma 8 134417 -NCIT:C156040 Third Ventricle Germinoma 9 134418 -NCIT:C6207 Childhood Brain Germinoma 9 134419 -NCIT:C8712 Pineal Region Germinoma 9 134420 -NCIT:C5792 Adult Central Nervous System Germinoma 7 134421 -NCIT:C7010 Central Nervous System Embryonal Carcinoma 6 134422 -NCIT:C155805 Sellar Embryonal Carcinoma 7 134423 -NCIT:C5790 Adult Central Nervous System Embryonal Carcinoma 7 134424 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 7 134425 -NCIT:C7011 Central Nervous System Yolk Sac Tumor 6 134426 -NCIT:C155804 Sellar Yolk Sac Tumor 7 134427 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 7 134428 -NCIT:C6752 Pineal Region Yolk Sac Tumor 7 134429 -NCIT:C7012 Central Nervous System Choriocarcinoma 6 134430 -NCIT:C155806 Sellar Choriocarcinoma 7 134431 -NCIT:C5793 Adult Central Nervous System Choriocarcinoma 7 134432 -NCIT:C6206 Childhood Central Nervous System Choriocarcinoma 7 134433 -NCIT:C6759 Pineal Region Choriocarcinoma 7 134434 -NCIT:C7015 Central Nervous System Teratoma with Malignant Transformation 6 134435 -NCIT:C155810 Sellar Teratoma with Malignant Transformation 7 134436 -NCIT:C7016 Central Nervous System Mixed Germ Cell Tumor 6 134437 -NCIT:C155811 Sellar Mixed Germ Cell Tumor 7 134438 -NCIT:C27402 Adult Central Nervous System Mixed Germ Cell Tumor 7 134439 -NCIT:C27403 Childhood Central Nervous System Mixed Germ Cell Tumor 7 134440 -NCIT:C6205 Childhood Central Nervous System Germ Cell Tumor 5 134441 -NCIT:C27403 Childhood Central Nervous System Mixed Germ Cell Tumor 6 134442 -NCIT:C27406 Childhood Central Nervous System Germinoma 6 134443 -NCIT:C6207 Childhood Brain Germinoma 7 134444 -NCIT:C5795 Childhood Brain Germ Cell Tumor 6 134445 -NCIT:C6207 Childhood Brain Germinoma 7 134446 -NCIT:C6204 Childhood Central Nervous System Teratoma 6 134447 -NCIT:C27404 Childhood Central Nervous System Mature Teratoma 7 134448 -NCIT:C27405 Childhood Central Nervous System Immature Teratoma 7 134449 -NCIT:C6206 Childhood Central Nervous System Choriocarcinoma 6 134450 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 6 134451 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 6 134452 -NCIT:C6285 Adult Central Nervous System Germ Cell Tumor 5 134453 -NCIT:C114778 Adult Intracranial Germ Cell Tumor 6 134454 -NCIT:C27402 Adult Central Nervous System Mixed Germ Cell Tumor 6 134455 -NCIT:C5790 Adult Central Nervous System Embryonal Carcinoma 6 134456 -NCIT:C5792 Adult Central Nervous System Germinoma 6 134457 -NCIT:C5793 Adult Central Nervous System Choriocarcinoma 6 134458 -NCIT:C5794 Adult Central Nervous System Teratoma 6 134459 -NCIT:C27400 Adult Central Nervous System Mature Teratoma 7 134460 -NCIT:C27401 Adult Central Nervous System Immature Teratoma 7 134461 -NCIT:C6437 Mediastinal Germ Cell Tumor 4 134462 -NCIT:C6438 Mediastinal Teratoma 5 134463 -NCIT:C4668 Mediastinal Immature Teratoma 6 134464 -NCIT:C7104 Mediastinal Mature Teratoma 6 134465 -NCIT:C6445 Benign Mediastinal Germ Cell Tumor 5 134466 -NCIT:C7104 Mediastinal Mature Teratoma 6 134467 -NCIT:C6446 Malignant Mediastinal Germ Cell Tumor 5 134468 -NCIT:C146848 Malignant Mediastinal Germ Cell Tumor Stage Grouping of the Pediatric Study Group 6 134469 -NCIT:C146849 Stage I Malignant Mediastinal Germ Cell Tumor 7 134470 -NCIT:C146850 Stage II Malignant Mediastinal Germ Cell Tumor 7 134471 -NCIT:C146851 Stage III Malignant Mediastinal Germ Cell Tumor 7 134472 -NCIT:C146852 Stage IV Malignant Mediastinal Germ Cell Tumor 7 134473 -NCIT:C146861 Mediastinal Mixed Germ Cell Tumor 6 134474 -NCIT:C6444 Mediastinal Mixed Nongerminomatous Germ Cell Tumor 7 134475 -NCIT:C6442 Mediastinal Mixed Embryonal Carcinoma and Teratoma 8 134476 -NCIT:C45732 Mediastinal Germ Cell Tumor with Somatic-Type Malignancy 6 134477 -NCIT:C6439 Malignant Mediastinal Nongerminomatous Germ Cell Tumor 6 134478 -NCIT:C45733 Malignant Mediastinal Germ Cell Tumor with Associated Hematologic Malignancy 7 134479 -NCIT:C6440 Mediastinal Choriocarcinoma 7 134480 -NCIT:C6441 Mediastinal Embryonal Carcinoma 7 134481 -NCIT:C6443 Mediastinal Yolk Sac Tumor 7 134482 -NCIT:C6444 Mediastinal Mixed Nongerminomatous Germ Cell Tumor 7 134483 -NCIT:C6442 Mediastinal Mixed Embryonal Carcinoma and Teratoma 8 134484 -NCIT:C6812 Mediastinal Seminoma 6 134485 -NCIT:C6447 Retroperitoneal Germ Cell Tumor 4 134486 -NCIT:C6448 Gastric Germ Cell Tumor 4 134487 -NCIT:C5259 Gastric Teratoma 5 134488 -NCIT:C5256 Gastric Immature Teratoma 6 134489 -NCIT:C5260 Mature Gastric Teratoma 6 134490 -NCIT:C5486 Malignant Gastric Germ Cell Tumor 5 134491 -NCIT:C95749 Gastric Choriocarcinoma 6 134492 -NCIT:C6751 Benign Extragonadal Germ Cell Tumor 4 134493 -NCIT:C147106 Benign Pericardial Germ Cell Tumor 5 134494 -NCIT:C6744 Pericardial Mature Teratoma 6 134495 -NCIT:C5260 Mature Gastric Teratoma 5 134496 -NCIT:C5357 Benign Cardiac Germ Cell Tumor 5 134497 -NCIT:C6445 Benign Mediastinal Germ Cell Tumor 5 134498 -NCIT:C7104 Mediastinal Mature Teratoma 6 134499 -NCIT:C7013 Central Nervous System Mature Teratoma 5 134500 -NCIT:C155808 Sellar Mature Teratoma 6 134501 -NCIT:C27400 Adult Central Nervous System Mature Teratoma 6 134502 -NCIT:C27404 Childhood Central Nervous System Mature Teratoma 6 134503 -NCIT:C5508 Central Nervous System Dermoid Cyst 6 134504 -NCIT:C6808 Dermoid Cyst of the Spinal Cord 7 134505 -NCIT:C6754 Pineal Region Mature Teratoma 6 134506 -NCIT:C95559 Pancreatic Mature Teratoma 5 134507 -NCIT:C8881 Malignant Extragonadal Germ Cell Tumor 4 134508 -NCIT:C115385 Recurrent Malignant Extragonadal Germ Cell Tumor 5 134509 -NCIT:C115427 Recurrent Malignant Extragonadal Nongerminomatous Germ Cell Tumor 6 134510 -NCIT:C115428 Recurrent Extragonadal Seminoma 6 134511 -NCIT:C136410 Malignant Peritoneal Germ Cell Tumor 5 134512 -NCIT:C147104 Malignant Pericardial Germ Cell Tumor 5 134513 -NCIT:C147105 Pericardial Yolk Sac Tumor 6 134514 -NCIT:C5371 Malignant Cardiac Germ Cell Tumor 5 134515 -NCIT:C147006 Cardiac Yolk Sac Tumor 6 134516 -NCIT:C54099 Malignant Central Nervous System Germ Cell Tumor 5 134517 -NCIT:C5403 Malignant Intracranial Germ Cell Tumor 6 134518 -NCIT:C155804 Sellar Yolk Sac Tumor 7 134519 -NCIT:C155805 Sellar Embryonal Carcinoma 7 134520 -NCIT:C155806 Sellar Choriocarcinoma 7 134521 -NCIT:C155810 Sellar Teratoma with Malignant Transformation 7 134522 -NCIT:C155811 Sellar Mixed Germ Cell Tumor 7 134523 -NCIT:C5430 Intracranial Germinoma 7 134524 -NCIT:C155802 Sellar Germinoma 8 134525 -NCIT:C155803 Suprasellar Germinoma 9 134526 -NCIT:C6284 Brain Germinoma 8 134527 -NCIT:C156040 Third Ventricle Germinoma 9 134528 -NCIT:C6207 Childhood Brain Germinoma 9 134529 -NCIT:C8712 Pineal Region Germinoma 9 134530 -NCIT:C6767 Malignant Pineal Region Germ Cell Tumor 7 134531 -NCIT:C6752 Pineal Region Yolk Sac Tumor 8 134532 -NCIT:C6759 Pineal Region Choriocarcinoma 8 134533 -NCIT:C8712 Pineal Region Germinoma 8 134534 -NCIT:C7009 Central Nervous System Germinoma 6 134535 -NCIT:C27406 Childhood Central Nervous System Germinoma 7 134536 -NCIT:C6207 Childhood Brain Germinoma 8 134537 -NCIT:C5430 Intracranial Germinoma 7 134538 -NCIT:C155802 Sellar Germinoma 8 134539 -NCIT:C155803 Suprasellar Germinoma 9 134540 -NCIT:C6284 Brain Germinoma 8 134541 -NCIT:C156040 Third Ventricle Germinoma 9 134542 -NCIT:C6207 Childhood Brain Germinoma 9 134543 -NCIT:C8712 Pineal Region Germinoma 9 134544 -NCIT:C5792 Adult Central Nervous System Germinoma 7 134545 -NCIT:C7010 Central Nervous System Embryonal Carcinoma 6 134546 -NCIT:C155805 Sellar Embryonal Carcinoma 7 134547 -NCIT:C5790 Adult Central Nervous System Embryonal Carcinoma 7 134548 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 7 134549 -NCIT:C7011 Central Nervous System Yolk Sac Tumor 6 134550 -NCIT:C155804 Sellar Yolk Sac Tumor 7 134551 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 7 134552 -NCIT:C6752 Pineal Region Yolk Sac Tumor 7 134553 -NCIT:C7012 Central Nervous System Choriocarcinoma 6 134554 -NCIT:C155806 Sellar Choriocarcinoma 7 134555 -NCIT:C5793 Adult Central Nervous System Choriocarcinoma 7 134556 -NCIT:C6206 Childhood Central Nervous System Choriocarcinoma 7 134557 -NCIT:C6759 Pineal Region Choriocarcinoma 7 134558 -NCIT:C7015 Central Nervous System Teratoma with Malignant Transformation 6 134559 -NCIT:C155810 Sellar Teratoma with Malignant Transformation 7 134560 -NCIT:C7016 Central Nervous System Mixed Germ Cell Tumor 6 134561 -NCIT:C155811 Sellar Mixed Germ Cell Tumor 7 134562 -NCIT:C27402 Adult Central Nervous System Mixed Germ Cell Tumor 7 134563 -NCIT:C27403 Childhood Central Nervous System Mixed Germ Cell Tumor 7 134564 -NCIT:C5486 Malignant Gastric Germ Cell Tumor 5 134565 -NCIT:C95749 Gastric Choriocarcinoma 6 134566 -NCIT:C6446 Malignant Mediastinal Germ Cell Tumor 5 134567 -NCIT:C146848 Malignant Mediastinal Germ Cell Tumor Stage Grouping of the Pediatric Study Group 6 134568 -NCIT:C146849 Stage I Malignant Mediastinal Germ Cell Tumor 7 134569 -NCIT:C146850 Stage II Malignant Mediastinal Germ Cell Tumor 7 134570 -NCIT:C146851 Stage III Malignant Mediastinal Germ Cell Tumor 7 134571 -NCIT:C146852 Stage IV Malignant Mediastinal Germ Cell Tumor 7 134572 -NCIT:C146861 Mediastinal Mixed Germ Cell Tumor 6 134573 -NCIT:C6444 Mediastinal Mixed Nongerminomatous Germ Cell Tumor 7 134574 -NCIT:C6442 Mediastinal Mixed Embryonal Carcinoma and Teratoma 8 134575 -NCIT:C45732 Mediastinal Germ Cell Tumor with Somatic-Type Malignancy 6 134576 -NCIT:C6439 Malignant Mediastinal Nongerminomatous Germ Cell Tumor 6 134577 -NCIT:C45733 Malignant Mediastinal Germ Cell Tumor with Associated Hematologic Malignancy 7 134578 -NCIT:C6440 Mediastinal Choriocarcinoma 7 134579 -NCIT:C6441 Mediastinal Embryonal Carcinoma 7 134580 -NCIT:C6443 Mediastinal Yolk Sac Tumor 7 134581 -NCIT:C6444 Mediastinal Mixed Nongerminomatous Germ Cell Tumor 7 134582 -NCIT:C6442 Mediastinal Mixed Embryonal Carcinoma and Teratoma 8 134583 -NCIT:C6812 Mediastinal Seminoma 6 134584 -NCIT:C68632 Childhood Extragonadal Malignant Germ Cell Tumor 5 134585 -NCIT:C27403 Childhood Central Nervous System Mixed Germ Cell Tumor 6 134586 -NCIT:C27406 Childhood Central Nervous System Germinoma 6 134587 -NCIT:C6207 Childhood Brain Germinoma 7 134588 -NCIT:C6206 Childhood Central Nervous System Choriocarcinoma 6 134589 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 6 134590 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 6 134591 -NCIT:C7327 Extragonadal Seminoma 5 134592 -NCIT:C115428 Recurrent Extragonadal Seminoma 6 134593 -NCIT:C6812 Mediastinal Seminoma 6 134594 -NCIT:C8885 Malignant Extragonadal Nongerminomatous Germ Cell Tumor 5 134595 -NCIT:C115427 Recurrent Malignant Extragonadal Nongerminomatous Germ Cell Tumor 6 134596 -NCIT:C6439 Malignant Mediastinal Nongerminomatous Germ Cell Tumor 6 134597 -NCIT:C45733 Malignant Mediastinal Germ Cell Tumor with Associated Hematologic Malignancy 7 134598 -NCIT:C6440 Mediastinal Choriocarcinoma 7 134599 -NCIT:C6441 Mediastinal Embryonal Carcinoma 7 134600 -NCIT:C6443 Mediastinal Yolk Sac Tumor 7 134601 -NCIT:C6444 Mediastinal Mixed Nongerminomatous Germ Cell Tumor 7 134602 -NCIT:C6442 Mediastinal Mixed Embryonal Carcinoma and Teratoma 8 134603 -NCIT:C7011 Central Nervous System Yolk Sac Tumor 6 134604 -NCIT:C155804 Sellar Yolk Sac Tumor 7 134605 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 7 134606 -NCIT:C6752 Pineal Region Yolk Sac Tumor 7 134607 -NCIT:C7012 Central Nervous System Choriocarcinoma 6 134608 -NCIT:C155806 Sellar Choriocarcinoma 7 134609 -NCIT:C5793 Adult Central Nervous System Choriocarcinoma 7 134610 -NCIT:C6206 Childhood Central Nervous System Choriocarcinoma 7 134611 -NCIT:C6759 Pineal Region Choriocarcinoma 7 134612 -NCIT:C7015 Central Nervous System Teratoma with Malignant Transformation 6 134613 -NCIT:C155810 Sellar Teratoma with Malignant Transformation 7 134614 -NCIT:C8880 Extragonadal Embryonal Carcinoma 6 134615 -NCIT:C6441 Mediastinal Embryonal Carcinoma 7 134616 -NCIT:C7010 Central Nervous System Embryonal Carcinoma 7 134617 -NCIT:C155805 Sellar Embryonal Carcinoma 8 134618 -NCIT:C5790 Adult Central Nervous System Embryonal Carcinoma 8 134619 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 8 134620 -NCIT:C95749 Gastric Choriocarcinoma 6 134621 -NCIT:C96851 Liver Yolk Sac Tumor 5 134622 -NCIT:C96849 Liver Germ Cell Tumor 4 134623 -NCIT:C96850 Liver Teratoma 5 134624 -NCIT:C96851 Liver Yolk Sac Tumor 5 134625 -NCIT:C40130 Fallopian Tube Germ Cell Tumor 3 134626 -NCIT:C40131 Fallopian Tube Teratoma 4 134627 -NCIT:C4925 Malignant Germ Cell Tumor 3 134628 -NCIT:C123739 Refractory Malignant Germ Cell Tumor 4 134629 -NCIT:C123737 Refractory Childhood Malignant Germ Cell Tumor 5 134630 -NCIT:C170955 Platinum-Resistant Malignant Germ Cell Tumor 5 134631 -NCIT:C170956 Resectable Platinum-Resistant Malignant Germ Cell Tumor 6 134632 -NCIT:C170957 Metastatic Platinum-Resistant Malignant Germ Cell Tumor 6 134633 -NCIT:C170958 Advanced Platinum-Resistant Malignant Germ Cell Tumor 7 134634 -NCIT:C191408 Refractory Malignant Nongerminomatous Germ Cell Tumor 5 134635 -NCIT:C9077 Refractory Malignant Testicular Germ Cell Tumor 5 134636 -NCIT:C132853 Recurrent Malignant Germ Cell Tumor 4 134637 -NCIT:C115385 Recurrent Malignant Extragonadal Germ Cell Tumor 5 134638 -NCIT:C115427 Recurrent Malignant Extragonadal Nongerminomatous Germ Cell Tumor 6 134639 -NCIT:C115428 Recurrent Extragonadal Seminoma 6 134640 -NCIT:C177771 Recurrent Malignant Nongerminomatous Germ Cell Tumor 5 134641 -NCIT:C115427 Recurrent Malignant Extragonadal Nongerminomatous Germ Cell Tumor 6 134642 -NCIT:C8087 Recurrent Ovarian Germ Cell Tumor 5 134643 -NCIT:C9221 Recurrent Childhood Malignant Germ Cell Tumor 5 134644 -NCIT:C9369 Recurrent Malignant Testicular Germ Cell Tumor 5 134645 -NCIT:C132854 Metastatic Malignant Germ Cell Tumor 4 134646 -NCIT:C170957 Metastatic Platinum-Resistant Malignant Germ Cell Tumor 5 134647 -NCIT:C170958 Advanced Platinum-Resistant Malignant Germ Cell Tumor 6 134648 -NCIT:C170967 Advanced Malignant Germ Cell Tumor 5 134649 -NCIT:C170958 Advanced Platinum-Resistant Malignant Germ Cell Tumor 6 134650 -NCIT:C187316 Advanced Malignant Testicular Germ Cell Tumor 6 134651 -NCIT:C177770 Metastatic Malignant Nongerminomatous Germ Cell Tumor 5 134652 -NCIT:C25771 Metastatic Malignant Testicular Germ Cell Tumor 5 134653 -NCIT:C187316 Advanced Malignant Testicular Germ Cell Tumor 6 134654 -NCIT:C3011 Yolk Sac Tumor 4 134655 -NCIT:C128055 Cervical Yolk Sac Tumor 5 134656 -NCIT:C128295 Vulvar Yolk Sac Tumor 5 134657 -NCIT:C147006 Cardiac Yolk Sac Tumor 5 134658 -NCIT:C147105 Pericardial Yolk Sac Tumor 5 134659 -NCIT:C178523 Yolk Sac Tumor with Somatic-Type Malignancy 5 134660 -NCIT:C27241 Adult Yolk Sac Tumor 5 134661 -NCIT:C27364 Childhood Yolk Sac Tumor 5 134662 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 6 134663 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 6 134664 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 6 134665 -NCIT:C6379 Vaginal Yolk Sac Tumor 5 134666 -NCIT:C6443 Mediastinal Yolk Sac Tumor 5 134667 -NCIT:C7011 Central Nervous System Yolk Sac Tumor 5 134668 -NCIT:C155804 Sellar Yolk Sac Tumor 6 134669 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 6 134670 -NCIT:C6752 Pineal Region Yolk Sac Tumor 6 134671 -NCIT:C8000 Testicular Yolk Sac Tumor 5 134672 -NCIT:C39923 Testicular Yolk Sac Tumor, Microcystic Pattern 6 134673 -NCIT:C39924 Testicular Yolk Sac Tumor, Macrocystic Pattern 6 134674 -NCIT:C39925 Testicular Yolk Sac Tumor, Solid Pattern 6 134675 -NCIT:C39926 Testicular Yolk Sac Tumor, Glandular-Alveolar Pattern 6 134676 -NCIT:C39927 Testicular Yolk Sac Tumor, Endodermal Sinus/Perivascular Pattern 6 134677 -NCIT:C39928 Testicular Yolk Sac Tumor, Papillary Pattern 6 134678 -NCIT:C39929 Testicular Yolk Sac Tumor, Myxomatous Pattern 6 134679 -NCIT:C39930 Testicular Yolk Sac Tumor, Polyvesicular Vitelline Pattern 6 134680 -NCIT:C39931 Testicular Yolk Sac Tumor, Hepatoid Pattern 6 134681 -NCIT:C39932 Testicular Yolk Sac Tumor, Enteric Pattern 6 134682 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 6 134683 -NCIT:C8920 Stage I Testicular Yolk Sac Tumor AJCC v6 and v7 6 134684 -NCIT:C8921 Stage II Testicular Yolk Sac Tumor AJCC v6 and v7 6 134685 -NCIT:C8922 Stage III Testicular Yolk Sac Tumor AJCC v6 and v7 6 134686 -NCIT:C8107 Ovarian Yolk Sac Tumor 5 134687 -NCIT:C39987 Ovarian Yolk Sac Tumor, Polyvesicular Vitelline Pattern 6 134688 -NCIT:C39988 Ovarian Yolk Sac Tumor, Glandular Pattern 6 134689 -NCIT:C39989 Ovarian Yolk Sac Tumor, Hepatoid Pattern 6 134690 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 6 134691 -NCIT:C8735 Stage I Ovarian Yolk Sac Tumor AJCC v6 and v7 6 134692 -NCIT:C8736 Stage II Ovarian Yolk Sac Tumor AJCC v6 and v7 6 134693 -NCIT:C8737 Stage III Ovarian Yolk Sac Tumor AJCC v6 and v7 6 134694 -NCIT:C8738 Stage IV Ovarian Yolk Sac Tumor AJCC v6 and v7 6 134695 -NCIT:C96851 Liver Yolk Sac Tumor 5 134696 -NCIT:C3752 Embryonal Carcinoma 4 134697 -NCIT:C123847 Childhood Embryonal Carcinoma 5 134698 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 6 134699 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 6 134700 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 6 134701 -NCIT:C6341 Testicular Embryonal Carcinoma 5 134702 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 6 134703 -NCIT:C7325 Intratubular Non-Seminoma 6 134704 -NCIT:C8908 Stage I Testicular Embryonal Carcinoma AJCC v6 and v7 6 134705 -NCIT:C8909 Stage II Testicular Embryonal Carcinoma AJCC v6 and v7 6 134706 -NCIT:C8910 Stage III Testicular Embryonal Carcinoma AJCC v6 and v7 6 134707 -NCIT:C8108 Ovarian Embryonal Carcinoma 5 134708 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 6 134709 -NCIT:C8725 Stage II Ovarian Embryonal Carcinoma AJCC v6 and v7 6 134710 -NCIT:C8728 Stage III Ovarian Embryonal Carcinoma AJCC v6 and v7 6 134711 -NCIT:C8729 Stage IV Ovarian Embryonal Carcinoma AJCC v6 and v7 6 134712 -NCIT:C8734 Stage I Ovarian Embryonal Carcinoma AJCC v6 and v7 6 134713 -NCIT:C8880 Extragonadal Embryonal Carcinoma 5 134714 -NCIT:C6441 Mediastinal Embryonal Carcinoma 6 134715 -NCIT:C7010 Central Nervous System Embryonal Carcinoma 6 134716 -NCIT:C155805 Sellar Embryonal Carcinoma 7 134717 -NCIT:C5790 Adult Central Nervous System Embryonal Carcinoma 7 134718 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 7 134719 -NCIT:C4287 Malignant Teratoma 4 134720 -NCIT:C189055 Postpubertal-Type Teratoma 5 134721 -NCIT:C189057 Postpubertal-Type Testicular Teratoma 6 134722 -NCIT:C39995 Malignant Ovarian Teratoma 5 134723 -NCIT:C4290 Mixed Germ Cell Tumor 4 134724 -NCIT:C123848 Childhood Mixed Germ Cell Tumor 5 134725 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 6 134726 -NCIT:C27403 Childhood Central Nervous System Mixed Germ Cell Tumor 6 134727 -NCIT:C6542 Childhood Testicular Mixed Germ Cell Tumor 6 134728 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 7 134729 -NCIT:C146861 Mediastinal Mixed Germ Cell Tumor 5 134730 -NCIT:C6444 Mediastinal Mixed Nongerminomatous Germ Cell Tumor 6 134731 -NCIT:C6442 Mediastinal Mixed Embryonal Carcinoma and Teratoma 7 134732 -NCIT:C3756 Mixed Embryonal Carcinoma and Teratoma 5 134733 -NCIT:C6351 Testicular Mixed Embryonal Carcinoma and Teratoma 6 134734 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 7 134735 -NCIT:C6442 Mediastinal Mixed Embryonal Carcinoma and Teratoma 6 134736 -NCIT:C6347 Testicular Mixed Germ Cell Tumor 5 134737 -NCIT:C6348 Testicular Mixed Choriocarcinoma and Embryonal Carcinoma 6 134738 -NCIT:C6349 Testicular Mixed Choriocarcinoma and Teratoma 6 134739 -NCIT:C6350 Testicular Mixed Embryonal Carcinoma and Seminoma 6 134740 -NCIT:C6351 Testicular Mixed Embryonal Carcinoma and Teratoma 6 134741 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 7 134742 -NCIT:C6352 Testicular Mixed Embryonal Carcinoma and Teratoma with Seminoma 6 134743 -NCIT:C6542 Childhood Testicular Mixed Germ Cell Tumor 6 134744 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 7 134745 -NCIT:C67548 Testicular Mixed Choriocarcinoma and Yolk Sac Tumor 6 134746 -NCIT:C8001 Testicular Mixed Embryonal Carcinoma and Yolk Sac Tumor 6 134747 -NCIT:C8002 Testicular Mixed Yolk Sac Tumor and Teratoma 6 134748 -NCIT:C8003 Testicular Mixed Yolk Sac Tumor and Teratoma with Seminoma 6 134749 -NCIT:C8911 Stage II Testicular Mixed Germ Cell Tumor AJCC v6 and v7 6 134750 -NCIT:C8912 Stage I Testicular Mixed Germ Cell Tumor AJCC v6 and v7 6 134751 -NCIT:C8913 Stage III Testicular Mixed Germ Cell Tumor AJCC v6 and v7 6 134752 -NCIT:C9172 Testicular Mixed Embryonal Carcinoma and Yolk Sac Tumor with Seminoma 6 134753 -NCIT:C9173 Testicular Mixed Choriocarcinoma and Seminoma 6 134754 -NCIT:C66777 Choriocarcinoma Combined with Other Germ Cell Elements 5 134755 -NCIT:C6348 Testicular Mixed Choriocarcinoma and Embryonal Carcinoma 6 134756 -NCIT:C6349 Testicular Mixed Choriocarcinoma and Teratoma 6 134757 -NCIT:C67548 Testicular Mixed Choriocarcinoma and Yolk Sac Tumor 6 134758 -NCIT:C9173 Testicular Mixed Choriocarcinoma and Seminoma 6 134759 -NCIT:C7016 Central Nervous System Mixed Germ Cell Tumor 5 134760 -NCIT:C155811 Sellar Mixed Germ Cell Tumor 6 134761 -NCIT:C27402 Adult Central Nervous System Mixed Germ Cell Tumor 6 134762 -NCIT:C27403 Childhood Central Nervous System Mixed Germ Cell Tumor 6 134763 -NCIT:C8114 Ovarian Mixed Germ Cell Tumor 5 134764 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 6 134765 -NCIT:C9010 Mixed Teratoma and Seminoma 5 134766 -NCIT:C4514 Malignant Ovarian Germ Cell Tumor 4 134767 -NCIT:C39986 Ovarian Primitive Germ Cell Tumor 5 134768 -NCIT:C102870 Ovarian Non-Dysgerminomatous Germ Cell Tumor 6 134769 -NCIT:C39990 Ovarian Polyembryoma 7 134770 -NCIT:C8739 Stage I Ovarian Polyembryoma AJCC v6 and v7 8 134771 -NCIT:C8740 Stage II Ovarian Polyembryoma AJCC v6 and v7 8 134772 -NCIT:C8741 Stage III Ovarian Polyembryoma AJCC v6 and v7 8 134773 -NCIT:C8742 Stage IV Ovarian Polyembryoma AJCC v6 and v7 8 134774 -NCIT:C39991 Non-Gestational Ovarian Choriocarcinoma 7 134775 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 8 134776 -NCIT:C8107 Ovarian Yolk Sac Tumor 7 134777 -NCIT:C39987 Ovarian Yolk Sac Tumor, Polyvesicular Vitelline Pattern 8 134778 -NCIT:C39988 Ovarian Yolk Sac Tumor, Glandular Pattern 8 134779 -NCIT:C39989 Ovarian Yolk Sac Tumor, Hepatoid Pattern 8 134780 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 8 134781 -NCIT:C8735 Stage I Ovarian Yolk Sac Tumor AJCC v6 and v7 8 134782 -NCIT:C8736 Stage II Ovarian Yolk Sac Tumor AJCC v6 and v7 8 134783 -NCIT:C8737 Stage III Ovarian Yolk Sac Tumor AJCC v6 and v7 8 134784 -NCIT:C8738 Stage IV Ovarian Yolk Sac Tumor AJCC v6 and v7 8 134785 -NCIT:C8108 Ovarian Embryonal Carcinoma 7 134786 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 8 134787 -NCIT:C8725 Stage II Ovarian Embryonal Carcinoma AJCC v6 and v7 8 134788 -NCIT:C8728 Stage III Ovarian Embryonal Carcinoma AJCC v6 and v7 8 134789 -NCIT:C8729 Stage IV Ovarian Embryonal Carcinoma AJCC v6 and v7 8 134790 -NCIT:C8734 Stage I Ovarian Embryonal Carcinoma AJCC v6 and v7 8 134791 -NCIT:C8106 Ovarian Dysgerminoma 6 134792 -NCIT:C6550 Childhood Ovarian Dysgerminoma 7 134793 -NCIT:C8723 Stage I Ovarian Dysgerminoma AJCC v6 and v7 7 134794 -NCIT:C8724 Stage II Ovarian Dysgerminoma AJCC v6 and v7 7 134795 -NCIT:C8726 Stage III Ovarian Dysgerminoma AJCC v6 and v7 7 134796 -NCIT:C8727 Stage IV Ovarian Dysgerminoma AJCC v6 and v7 7 134797 -NCIT:C8114 Ovarian Mixed Germ Cell Tumor 6 134798 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 7 134799 -NCIT:C39995 Malignant Ovarian Teratoma 5 134800 -NCIT:C4291 Thyroid Carcinoma Arising in Struma Ovarii 5 134801 -NCIT:C68629 Childhood Malignant Ovarian Germ Cell Tumor 5 134802 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 6 134803 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 6 134804 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 6 134805 -NCIT:C6550 Childhood Ovarian Dysgerminoma 6 134806 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 6 134807 -NCIT:C8083 Stage I Ovarian Germ Cell Tumor AJCC v6 and v7 5 134808 -NCIT:C6291 Stage IA Ovarian Germ Cell Tumor AJCC v6 and v7 6 134809 -NCIT:C6292 Stage IB Ovarian Germ Cell Tumor AJCC v6 and v7 6 134810 -NCIT:C6293 Stage IC Ovarian Germ Cell Tumor AJCC v6 and v7 6 134811 -NCIT:C8723 Stage I Ovarian Dysgerminoma AJCC v6 and v7 6 134812 -NCIT:C8734 Stage I Ovarian Embryonal Carcinoma AJCC v6 and v7 6 134813 -NCIT:C8735 Stage I Ovarian Yolk Sac Tumor AJCC v6 and v7 6 134814 -NCIT:C8739 Stage I Ovarian Polyembryoma AJCC v6 and v7 6 134815 -NCIT:C8743 Stage I Ovarian Teratoma AJCC v6 and v7 6 134816 -NCIT:C8084 Stage II Ovarian Germ Cell Tumor AJCC v6 and v7 5 134817 -NCIT:C6294 Stage IIC Ovarian Germ Cell Tumor AJCC v6 and v7 6 134818 -NCIT:C6295 Stage IIB Ovarian Germ Cell Tumor AJCC v6 and v7 6 134819 -NCIT:C6296 Stage IIA Ovarian Germ Cell Tumor AJCC v6 and v7 6 134820 -NCIT:C8724 Stage II Ovarian Dysgerminoma AJCC v6 and v7 6 134821 -NCIT:C8725 Stage II Ovarian Embryonal Carcinoma AJCC v6 and v7 6 134822 -NCIT:C8736 Stage II Ovarian Yolk Sac Tumor AJCC v6 and v7 6 134823 -NCIT:C8740 Stage II Ovarian Polyembryoma AJCC v6 and v7 6 134824 -NCIT:C8744 Stage II Ovarian Teratoma AJCC v6 and v7 6 134825 -NCIT:C8085 Stage III Ovarian Germ Cell Tumor AJCC v6 and v7 5 134826 -NCIT:C6297 Stage IIIA Ovarian Germ Cell Tumor AJCC v6 and v7 6 134827 -NCIT:C6298 Stage IIIB Ovarian Germ Cell Tumor AJCC v6 and v7 6 134828 -NCIT:C6299 Stage IIIC Ovarian Germ Cell Tumor AJCC v6 and v7 6 134829 -NCIT:C8726 Stage III Ovarian Dysgerminoma AJCC v6 and v7 6 134830 -NCIT:C8728 Stage III Ovarian Embryonal Carcinoma AJCC v6 and v7 6 134831 -NCIT:C8737 Stage III Ovarian Yolk Sac Tumor AJCC v6 and v7 6 134832 -NCIT:C8741 Stage III Ovarian Polyembryoma AJCC v6 and v7 6 134833 -NCIT:C8745 Stage III Ovarian Teratoma AJCC v6 and v7 6 134834 -NCIT:C8086 Stage IV Ovarian Germ Cell Tumor AJCC v6 and v7 5 134835 -NCIT:C8727 Stage IV Ovarian Dysgerminoma AJCC v6 and v7 6 134836 -NCIT:C8729 Stage IV Ovarian Embryonal Carcinoma AJCC v6 and v7 6 134837 -NCIT:C8738 Stage IV Ovarian Yolk Sac Tumor AJCC v6 and v7 6 134838 -NCIT:C8742 Stage IV Ovarian Polyembryoma AJCC v6 and v7 6 134839 -NCIT:C8746 Stage IV Ovarian Teratoma AJCC v6 and v7 6 134840 -NCIT:C8087 Recurrent Ovarian Germ Cell Tumor 5 134841 -NCIT:C5381 Pulmonary Artery Choriocarcinoma 4 134842 -NCIT:C6541 Childhood Malignant Germ Cell Tumor 4 134843 -NCIT:C123737 Refractory Childhood Malignant Germ Cell Tumor 5 134844 -NCIT:C123840 Childhood Seminoma 5 134845 -NCIT:C123844 Childhood Choriocarcinoma 5 134846 -NCIT:C6206 Childhood Central Nervous System Choriocarcinoma 6 134847 -NCIT:C6544 Childhood Testicular Choriocarcinoma 6 134848 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 6 134849 -NCIT:C123847 Childhood Embryonal Carcinoma 5 134850 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 6 134851 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 6 134852 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 6 134853 -NCIT:C123848 Childhood Mixed Germ Cell Tumor 5 134854 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 6 134855 -NCIT:C27403 Childhood Central Nervous System Mixed Germ Cell Tumor 6 134856 -NCIT:C6542 Childhood Testicular Mixed Germ Cell Tumor 6 134857 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 7 134858 -NCIT:C27364 Childhood Yolk Sac Tumor 5 134859 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 6 134860 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 6 134861 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 6 134862 -NCIT:C68628 Childhood Malignant Testicular Germ Cell Tumor 5 134863 -NCIT:C6542 Childhood Testicular Mixed Germ Cell Tumor 6 134864 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 7 134865 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 6 134866 -NCIT:C6544 Childhood Testicular Choriocarcinoma 6 134867 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 6 134868 -NCIT:C68629 Childhood Malignant Ovarian Germ Cell Tumor 5 134869 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 6 134870 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 6 134871 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 6 134872 -NCIT:C6550 Childhood Ovarian Dysgerminoma 6 134873 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 6 134874 -NCIT:C68632 Childhood Extragonadal Malignant Germ Cell Tumor 5 134875 -NCIT:C27403 Childhood Central Nervous System Mixed Germ Cell Tumor 6 134876 -NCIT:C27406 Childhood Central Nervous System Germinoma 6 134877 -NCIT:C6207 Childhood Brain Germinoma 7 134878 -NCIT:C6206 Childhood Central Nervous System Choriocarcinoma 6 134879 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 6 134880 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 6 134881 -NCIT:C9221 Recurrent Childhood Malignant Germ Cell Tumor 5 134882 -NCIT:C66776 Gonadal Polyembryoma 4 134883 -NCIT:C39990 Ovarian Polyembryoma 5 134884 -NCIT:C8739 Stage I Ovarian Polyembryoma AJCC v6 and v7 6 134885 -NCIT:C8740 Stage II Ovarian Polyembryoma AJCC v6 and v7 6 134886 -NCIT:C8741 Stage III Ovarian Polyembryoma AJCC v6 and v7 6 134887 -NCIT:C8742 Stage IV Ovarian Polyembryoma AJCC v6 and v7 6 134888 -NCIT:C40962 Testicular Polyembryoma 5 134889 -NCIT:C8881 Malignant Extragonadal Germ Cell Tumor 4 134890 -NCIT:C115385 Recurrent Malignant Extragonadal Germ Cell Tumor 5 134891 -NCIT:C115427 Recurrent Malignant Extragonadal Nongerminomatous Germ Cell Tumor 6 134892 -NCIT:C115428 Recurrent Extragonadal Seminoma 6 134893 -NCIT:C136410 Malignant Peritoneal Germ Cell Tumor 5 134894 -NCIT:C147104 Malignant Pericardial Germ Cell Tumor 5 134895 -NCIT:C147105 Pericardial Yolk Sac Tumor 6 134896 -NCIT:C5371 Malignant Cardiac Germ Cell Tumor 5 134897 -NCIT:C147006 Cardiac Yolk Sac Tumor 6 134898 -NCIT:C54099 Malignant Central Nervous System Germ Cell Tumor 5 134899 -NCIT:C5403 Malignant Intracranial Germ Cell Tumor 6 134900 -NCIT:C155804 Sellar Yolk Sac Tumor 7 134901 -NCIT:C155805 Sellar Embryonal Carcinoma 7 134902 -NCIT:C155806 Sellar Choriocarcinoma 7 134903 -NCIT:C155810 Sellar Teratoma with Malignant Transformation 7 134904 -NCIT:C155811 Sellar Mixed Germ Cell Tumor 7 134905 -NCIT:C5430 Intracranial Germinoma 7 134906 -NCIT:C155802 Sellar Germinoma 8 134907 -NCIT:C155803 Suprasellar Germinoma 9 134908 -NCIT:C6284 Brain Germinoma 8 134909 -NCIT:C156040 Third Ventricle Germinoma 9 134910 -NCIT:C6207 Childhood Brain Germinoma 9 134911 -NCIT:C8712 Pineal Region Germinoma 9 134912 -NCIT:C6767 Malignant Pineal Region Germ Cell Tumor 7 134913 -NCIT:C6752 Pineal Region Yolk Sac Tumor 8 134914 -NCIT:C6759 Pineal Region Choriocarcinoma 8 134915 -NCIT:C8712 Pineal Region Germinoma 8 134916 -NCIT:C7009 Central Nervous System Germinoma 6 134917 -NCIT:C27406 Childhood Central Nervous System Germinoma 7 134918 -NCIT:C6207 Childhood Brain Germinoma 8 134919 -NCIT:C5430 Intracranial Germinoma 7 134920 -NCIT:C155802 Sellar Germinoma 8 134921 -NCIT:C155803 Suprasellar Germinoma 9 134922 -NCIT:C6284 Brain Germinoma 8 134923 -NCIT:C156040 Third Ventricle Germinoma 9 134924 -NCIT:C6207 Childhood Brain Germinoma 9 134925 -NCIT:C8712 Pineal Region Germinoma 9 134926 -NCIT:C5792 Adult Central Nervous System Germinoma 7 134927 -NCIT:C7010 Central Nervous System Embryonal Carcinoma 6 134928 -NCIT:C155805 Sellar Embryonal Carcinoma 7 134929 -NCIT:C5790 Adult Central Nervous System Embryonal Carcinoma 7 134930 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 7 134931 -NCIT:C7011 Central Nervous System Yolk Sac Tumor 6 134932 -NCIT:C155804 Sellar Yolk Sac Tumor 7 134933 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 7 134934 -NCIT:C6752 Pineal Region Yolk Sac Tumor 7 134935 -NCIT:C7012 Central Nervous System Choriocarcinoma 6 134936 -NCIT:C155806 Sellar Choriocarcinoma 7 134937 -NCIT:C5793 Adult Central Nervous System Choriocarcinoma 7 134938 -NCIT:C6206 Childhood Central Nervous System Choriocarcinoma 7 134939 -NCIT:C6759 Pineal Region Choriocarcinoma 7 134940 -NCIT:C7015 Central Nervous System Teratoma with Malignant Transformation 6 134941 -NCIT:C155810 Sellar Teratoma with Malignant Transformation 7 134942 -NCIT:C7016 Central Nervous System Mixed Germ Cell Tumor 6 134943 -NCIT:C155811 Sellar Mixed Germ Cell Tumor 7 134944 -NCIT:C27402 Adult Central Nervous System Mixed Germ Cell Tumor 7 134945 -NCIT:C27403 Childhood Central Nervous System Mixed Germ Cell Tumor 7 134946 -NCIT:C5486 Malignant Gastric Germ Cell Tumor 5 134947 -NCIT:C95749 Gastric Choriocarcinoma 6 134948 -NCIT:C6446 Malignant Mediastinal Germ Cell Tumor 5 134949 -NCIT:C146848 Malignant Mediastinal Germ Cell Tumor Stage Grouping of the Pediatric Study Group 6 134950 -NCIT:C146849 Stage I Malignant Mediastinal Germ Cell Tumor 7 134951 -NCIT:C146850 Stage II Malignant Mediastinal Germ Cell Tumor 7 134952 -NCIT:C146851 Stage III Malignant Mediastinal Germ Cell Tumor 7 134953 -NCIT:C146852 Stage IV Malignant Mediastinal Germ Cell Tumor 7 134954 -NCIT:C146861 Mediastinal Mixed Germ Cell Tumor 6 134955 -NCIT:C6444 Mediastinal Mixed Nongerminomatous Germ Cell Tumor 7 134956 -NCIT:C6442 Mediastinal Mixed Embryonal Carcinoma and Teratoma 8 134957 -NCIT:C45732 Mediastinal Germ Cell Tumor with Somatic-Type Malignancy 6 134958 -NCIT:C6439 Malignant Mediastinal Nongerminomatous Germ Cell Tumor 6 134959 -NCIT:C45733 Malignant Mediastinal Germ Cell Tumor with Associated Hematologic Malignancy 7 134960 -NCIT:C6440 Mediastinal Choriocarcinoma 7 134961 -NCIT:C6441 Mediastinal Embryonal Carcinoma 7 134962 -NCIT:C6443 Mediastinal Yolk Sac Tumor 7 134963 -NCIT:C6444 Mediastinal Mixed Nongerminomatous Germ Cell Tumor 7 134964 -NCIT:C6442 Mediastinal Mixed Embryonal Carcinoma and Teratoma 8 134965 -NCIT:C6812 Mediastinal Seminoma 6 134966 -NCIT:C68632 Childhood Extragonadal Malignant Germ Cell Tumor 5 134967 -NCIT:C27403 Childhood Central Nervous System Mixed Germ Cell Tumor 6 134968 -NCIT:C27406 Childhood Central Nervous System Germinoma 6 134969 -NCIT:C6207 Childhood Brain Germinoma 7 134970 -NCIT:C6206 Childhood Central Nervous System Choriocarcinoma 6 134971 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 6 134972 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 6 134973 -NCIT:C7327 Extragonadal Seminoma 5 134974 -NCIT:C115428 Recurrent Extragonadal Seminoma 6 134975 -NCIT:C6812 Mediastinal Seminoma 6 134976 -NCIT:C8885 Malignant Extragonadal Nongerminomatous Germ Cell Tumor 5 134977 -NCIT:C115427 Recurrent Malignant Extragonadal Nongerminomatous Germ Cell Tumor 6 134978 -NCIT:C6439 Malignant Mediastinal Nongerminomatous Germ Cell Tumor 6 134979 -NCIT:C45733 Malignant Mediastinal Germ Cell Tumor with Associated Hematologic Malignancy 7 134980 -NCIT:C6440 Mediastinal Choriocarcinoma 7 134981 -NCIT:C6441 Mediastinal Embryonal Carcinoma 7 134982 -NCIT:C6443 Mediastinal Yolk Sac Tumor 7 134983 -NCIT:C6444 Mediastinal Mixed Nongerminomatous Germ Cell Tumor 7 134984 -NCIT:C6442 Mediastinal Mixed Embryonal Carcinoma and Teratoma 8 134985 -NCIT:C7011 Central Nervous System Yolk Sac Tumor 6 134986 -NCIT:C155804 Sellar Yolk Sac Tumor 7 134987 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 7 134988 -NCIT:C6752 Pineal Region Yolk Sac Tumor 7 134989 -NCIT:C7012 Central Nervous System Choriocarcinoma 6 134990 -NCIT:C155806 Sellar Choriocarcinoma 7 134991 -NCIT:C5793 Adult Central Nervous System Choriocarcinoma 7 134992 -NCIT:C6206 Childhood Central Nervous System Choriocarcinoma 7 134993 -NCIT:C6759 Pineal Region Choriocarcinoma 7 134994 -NCIT:C7015 Central Nervous System Teratoma with Malignant Transformation 6 134995 -NCIT:C155810 Sellar Teratoma with Malignant Transformation 7 134996 -NCIT:C8880 Extragonadal Embryonal Carcinoma 6 134997 -NCIT:C6441 Mediastinal Embryonal Carcinoma 7 134998 -NCIT:C7010 Central Nervous System Embryonal Carcinoma 7 134999 -NCIT:C155805 Sellar Embryonal Carcinoma 8 135000 -NCIT:C5790 Adult Central Nervous System Embryonal Carcinoma 8 135001 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 8 135002 -NCIT:C95749 Gastric Choriocarcinoma 6 135003 -NCIT:C96851 Liver Yolk Sac Tumor 5 135004 -NCIT:C9063 Malignant Testicular Germ Cell Tumor 4 135005 -NCIT:C189057 Postpubertal-Type Testicular Teratoma 5 135006 -NCIT:C25771 Metastatic Malignant Testicular Germ Cell Tumor 5 135007 -NCIT:C187316 Advanced Malignant Testicular Germ Cell Tumor 6 135008 -NCIT:C39921 Testicular Spermatocytic Tumor 5 135009 -NCIT:C39922 Testicular Spermatocytic Tumor with Sarcoma 6 135010 -NCIT:C40962 Testicular Polyembryoma 5 135011 -NCIT:C5027 Malignant Testicular Non-Seminomatous Germ Cell Tumor 5 135012 -NCIT:C27785 Stage I Testicular Non-Seminomatous Germ Cell Tumor AJCC v6 and v7 6 135013 -NCIT:C8907 Stage I Testicular Choriocarcinoma AJCC v6 and v7 7 135014 -NCIT:C8908 Stage I Testicular Embryonal Carcinoma AJCC v6 and v7 7 135015 -NCIT:C8914 Stage I Immature Testicular Teratoma AJCC v6 and v7 7 135016 -NCIT:C8920 Stage I Testicular Yolk Sac Tumor AJCC v6 and v7 7 135017 -NCIT:C27786 Stage II Testicular Non-Seminomatous Germ Cell Tumor AJCC v6 and v7 6 135018 -NCIT:C8606 Stage II Testicular Choriocarcinoma AJCC v6 and v7 7 135019 -NCIT:C8909 Stage II Testicular Embryonal Carcinoma AJCC v6 and v7 7 135020 -NCIT:C8915 Stage II Immature Testicular Teratoma AJCC v6 and v7 7 135021 -NCIT:C8921 Stage II Testicular Yolk Sac Tumor AJCC v6 and v7 7 135022 -NCIT:C27787 Stage III Testicular Non-Seminomatous Germ Cell Tumor AJCC v6 and v7 6 135023 -NCIT:C8900 Stage III Testicular Choriocarcinoma AJCC v6 and v7 7 135024 -NCIT:C8910 Stage III Testicular Embryonal Carcinoma AJCC v6 and v7 7 135025 -NCIT:C8916 Stage III Immature Testicular Teratoma AJCC v6 and v7 7 135026 -NCIT:C8922 Stage III Testicular Yolk Sac Tumor AJCC v6 and v7 7 135027 -NCIT:C35711 Testicular Teratoma with Somatic-Type Malignancy 6 135028 -NCIT:C6341 Testicular Embryonal Carcinoma 6 135029 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 7 135030 -NCIT:C7325 Intratubular Non-Seminoma 7 135031 -NCIT:C8908 Stage I Testicular Embryonal Carcinoma AJCC v6 and v7 7 135032 -NCIT:C8909 Stage II Testicular Embryonal Carcinoma AJCC v6 and v7 7 135033 -NCIT:C8910 Stage III Testicular Embryonal Carcinoma AJCC v6 and v7 7 135034 -NCIT:C6351 Testicular Mixed Embryonal Carcinoma and Teratoma 6 135035 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 7 135036 -NCIT:C7733 Testicular Choriocarcinoma 6 135037 -NCIT:C39935 Testicular Monophasic Choriocarcinoma 7 135038 -NCIT:C6544 Childhood Testicular Choriocarcinoma 7 135039 -NCIT:C8606 Stage II Testicular Choriocarcinoma AJCC v6 and v7 7 135040 -NCIT:C8900 Stage III Testicular Choriocarcinoma AJCC v6 and v7 7 135041 -NCIT:C8907 Stage I Testicular Choriocarcinoma AJCC v6 and v7 7 135042 -NCIT:C8000 Testicular Yolk Sac Tumor 6 135043 -NCIT:C39923 Testicular Yolk Sac Tumor, Microcystic Pattern 7 135044 -NCIT:C39924 Testicular Yolk Sac Tumor, Macrocystic Pattern 7 135045 -NCIT:C39925 Testicular Yolk Sac Tumor, Solid Pattern 7 135046 -NCIT:C39926 Testicular Yolk Sac Tumor, Glandular-Alveolar Pattern 7 135047 -NCIT:C39927 Testicular Yolk Sac Tumor, Endodermal Sinus/Perivascular Pattern 7 135048 -NCIT:C39928 Testicular Yolk Sac Tumor, Papillary Pattern 7 135049 -NCIT:C39929 Testicular Yolk Sac Tumor, Myxomatous Pattern 7 135050 -NCIT:C39930 Testicular Yolk Sac Tumor, Polyvesicular Vitelline Pattern 7 135051 -NCIT:C39931 Testicular Yolk Sac Tumor, Hepatoid Pattern 7 135052 -NCIT:C39932 Testicular Yolk Sac Tumor, Enteric Pattern 7 135053 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 7 135054 -NCIT:C8920 Stage I Testicular Yolk Sac Tumor AJCC v6 and v7 7 135055 -NCIT:C8921 Stage II Testicular Yolk Sac Tumor AJCC v6 and v7 7 135056 -NCIT:C8922 Stage III Testicular Yolk Sac Tumor AJCC v6 and v7 7 135057 -NCIT:C8001 Testicular Mixed Embryonal Carcinoma and Yolk Sac Tumor 6 135058 -NCIT:C8002 Testicular Mixed Yolk Sac Tumor and Teratoma 6 135059 -NCIT:C6347 Testicular Mixed Germ Cell Tumor 5 135060 -NCIT:C6348 Testicular Mixed Choriocarcinoma and Embryonal Carcinoma 6 135061 -NCIT:C6349 Testicular Mixed Choriocarcinoma and Teratoma 6 135062 -NCIT:C6350 Testicular Mixed Embryonal Carcinoma and Seminoma 6 135063 -NCIT:C6351 Testicular Mixed Embryonal Carcinoma and Teratoma 6 135064 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 7 135065 -NCIT:C6352 Testicular Mixed Embryonal Carcinoma and Teratoma with Seminoma 6 135066 -NCIT:C6542 Childhood Testicular Mixed Germ Cell Tumor 6 135067 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 7 135068 -NCIT:C67548 Testicular Mixed Choriocarcinoma and Yolk Sac Tumor 6 135069 -NCIT:C8001 Testicular Mixed Embryonal Carcinoma and Yolk Sac Tumor 6 135070 -NCIT:C8002 Testicular Mixed Yolk Sac Tumor and Teratoma 6 135071 -NCIT:C8003 Testicular Mixed Yolk Sac Tumor and Teratoma with Seminoma 6 135072 -NCIT:C8911 Stage II Testicular Mixed Germ Cell Tumor AJCC v6 and v7 6 135073 -NCIT:C8912 Stage I Testicular Mixed Germ Cell Tumor AJCC v6 and v7 6 135074 -NCIT:C8913 Stage III Testicular Mixed Germ Cell Tumor AJCC v6 and v7 6 135075 -NCIT:C9172 Testicular Mixed Embryonal Carcinoma and Yolk Sac Tumor with Seminoma 6 135076 -NCIT:C9173 Testicular Mixed Choriocarcinoma and Seminoma 6 135077 -NCIT:C68628 Childhood Malignant Testicular Germ Cell Tumor 5 135078 -NCIT:C6542 Childhood Testicular Mixed Germ Cell Tumor 6 135079 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 7 135080 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 6 135081 -NCIT:C6544 Childhood Testicular Choriocarcinoma 6 135082 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 6 135083 -NCIT:C7326 Testicular Germ Cell Neoplasia In Situ with Extratubular Extension 5 135084 -NCIT:C7328 Testicular Seminoma 5 135085 -NCIT:C39919 Testicular Seminoma with Syncytiotrophoblastic Cells 6 135086 -NCIT:C39920 Testicular Seminoma with High Mitotic Index 6 135087 -NCIT:C40957 Testicular Seminoma, Cribriform Variant 6 135088 -NCIT:C40958 Testicular Seminoma, Pseudoglandular Variant 6 135089 -NCIT:C40959 Testicular Seminoma, Tubular Variant 6 135090 -NCIT:C61383 Testicular Typical Seminoma 6 135091 -NCIT:C7329 Intratubular Seminoma 6 135092 -NCIT:C8917 Stage I Testicular Seminoma AJCC v6 and v7 6 135093 -NCIT:C8918 Stage II Testicular Seminoma AJCC v6 and v7 6 135094 -NCIT:C8919 Stage III Testicular Seminoma AJCC v6 and v7 6 135095 -NCIT:C9077 Refractory Malignant Testicular Germ Cell Tumor 5 135096 -NCIT:C9369 Recurrent Malignant Testicular Germ Cell Tumor 5 135097 -NCIT:C9309 Seminoma 4 135098 -NCIT:C123840 Childhood Seminoma 5 135099 -NCIT:C7327 Extragonadal Seminoma 5 135100 -NCIT:C115428 Recurrent Extragonadal Seminoma 6 135101 -NCIT:C6812 Mediastinal Seminoma 6 135102 -NCIT:C7328 Testicular Seminoma 5 135103 -NCIT:C39919 Testicular Seminoma with Syncytiotrophoblastic Cells 6 135104 -NCIT:C39920 Testicular Seminoma with High Mitotic Index 6 135105 -NCIT:C40957 Testicular Seminoma, Cribriform Variant 6 135106 -NCIT:C40958 Testicular Seminoma, Pseudoglandular Variant 6 135107 -NCIT:C40959 Testicular Seminoma, Tubular Variant 6 135108 -NCIT:C61383 Testicular Typical Seminoma 6 135109 -NCIT:C7329 Intratubular Seminoma 6 135110 -NCIT:C8917 Stage I Testicular Seminoma AJCC v6 and v7 6 135111 -NCIT:C8918 Stage II Testicular Seminoma AJCC v6 and v7 6 135112 -NCIT:C8919 Stage III Testicular Seminoma AJCC v6 and v7 6 135113 -NCIT:C6449 Benign Germ Cell Tumor 3 135114 -NCIT:C4516 Benign Ovarian Germ Cell Tumor 4 135115 -NCIT:C8112 Mature Ovarian Teratoma 5 135116 -NCIT:C3856 Ovarian Dermoid Cyst 6 135117 -NCIT:C39996 Ovarian Fetiform Teratoma 6 135118 -NCIT:C6548 Childhood Ovarian Mature Teratoma 6 135119 -NCIT:C7285 Ovarian Solid Teratoma 6 135120 -NCIT:C6553 Childhood Benign Germ Cell Tumor 4 135121 -NCIT:C123836 Childhood Mature Teratoma 5 135122 -NCIT:C123837 Childhood Testicular Mature Teratoma 6 135123 -NCIT:C27404 Childhood Central Nervous System Mature Teratoma 6 135124 -NCIT:C6548 Childhood Ovarian Mature Teratoma 6 135125 -NCIT:C67107 Benign Teratoma 4 135126 -NCIT:C156411 Grade 1 Teratoma 5 135127 -NCIT:C39993 Grade 1 Ovarian Teratoma 6 135128 -NCIT:C9015 Mature Teratoma 5 135129 -NCIT:C123836 Childhood Mature Teratoma 6 135130 -NCIT:C123837 Childhood Testicular Mature Teratoma 7 135131 -NCIT:C27404 Childhood Central Nervous System Mature Teratoma 7 135132 -NCIT:C6548 Childhood Ovarian Mature Teratoma 7 135133 -NCIT:C5260 Mature Gastric Teratoma 6 135134 -NCIT:C6355 Mature Testicular Teratoma 6 135135 -NCIT:C123837 Childhood Testicular Mature Teratoma 7 135136 -NCIT:C36092 Testicular Dermoid Cyst 7 135137 -NCIT:C6744 Pericardial Mature Teratoma 6 135138 -NCIT:C7013 Central Nervous System Mature Teratoma 6 135139 -NCIT:C155808 Sellar Mature Teratoma 7 135140 -NCIT:C27400 Adult Central Nervous System Mature Teratoma 7 135141 -NCIT:C27404 Childhood Central Nervous System Mature Teratoma 7 135142 -NCIT:C5508 Central Nervous System Dermoid Cyst 7 135143 -NCIT:C6808 Dermoid Cyst of the Spinal Cord 8 135144 -NCIT:C6754 Pineal Region Mature Teratoma 7 135145 -NCIT:C7104 Mediastinal Mature Teratoma 6 135146 -NCIT:C8112 Mature Ovarian Teratoma 6 135147 -NCIT:C3856 Ovarian Dermoid Cyst 7 135148 -NCIT:C39996 Ovarian Fetiform Teratoma 7 135149 -NCIT:C6548 Childhood Ovarian Mature Teratoma 7 135150 -NCIT:C7285 Ovarian Solid Teratoma 7 135151 -NCIT:C9011 Dermoid Cyst 6 135152 -NCIT:C128113 Vaginal Dermoid Cyst 7 135153 -NCIT:C36092 Testicular Dermoid Cyst 7 135154 -NCIT:C3856 Ovarian Dermoid Cyst 7 135155 -NCIT:C4548 Orbit Dermoid Cyst 7 135156 -NCIT:C4632 Dermoid Cyst of the Skin 7 135157 -NCIT:C5508 Central Nervous System Dermoid Cyst 7 135158 -NCIT:C6808 Dermoid Cyst of the Spinal Cord 8 135159 -NCIT:C95559 Pancreatic Mature Teratoma 6 135160 -NCIT:C6751 Benign Extragonadal Germ Cell Tumor 4 135161 -NCIT:C147106 Benign Pericardial Germ Cell Tumor 5 135162 -NCIT:C6744 Pericardial Mature Teratoma 6 135163 -NCIT:C5260 Mature Gastric Teratoma 5 135164 -NCIT:C5357 Benign Cardiac Germ Cell Tumor 5 135165 -NCIT:C6445 Benign Mediastinal Germ Cell Tumor 5 135166 -NCIT:C7104 Mediastinal Mature Teratoma 6 135167 -NCIT:C7013 Central Nervous System Mature Teratoma 5 135168 -NCIT:C155808 Sellar Mature Teratoma 6 135169 -NCIT:C27400 Adult Central Nervous System Mature Teratoma 6 135170 -NCIT:C27404 Childhood Central Nervous System Mature Teratoma 6 135171 -NCIT:C5508 Central Nervous System Dermoid Cyst 6 135172 -NCIT:C6808 Dermoid Cyst of the Spinal Cord 7 135173 -NCIT:C6754 Pineal Region Mature Teratoma 6 135174 -NCIT:C95559 Pancreatic Mature Teratoma 5 135175 -NCIT:C7928 Childhood Germ Cell Tumor 3 135176 -NCIT:C123838 Childhood Germinomatous Germ Cell Tumor 4 135177 -NCIT:C123840 Childhood Seminoma 5 135178 -NCIT:C27406 Childhood Central Nervous System Germinoma 5 135179 -NCIT:C6207 Childhood Brain Germinoma 6 135180 -NCIT:C6550 Childhood Ovarian Dysgerminoma 5 135181 -NCIT:C123841 Childhood Nongerminomatous Germ Cell Tumor 4 135182 -NCIT:C123842 Childhood Ovarian Nongerminomatous Germ Cell Tumor 5 135183 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 6 135184 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 6 135185 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 6 135186 -NCIT:C6554 Childhood Ovarian Teratoma 6 135187 -NCIT:C6547 Childhood Ovarian Immature Teratoma 7 135188 -NCIT:C6548 Childhood Ovarian Mature Teratoma 7 135189 -NCIT:C123843 Childhood Testicular Non-Seminomatous Germ Cell Tumor 5 135190 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 6 135191 -NCIT:C6540 Childhood Testicular Teratoma 6 135192 -NCIT:C123835 Childhood Testicular Immature Teratoma 7 135193 -NCIT:C123837 Childhood Testicular Mature Teratoma 7 135194 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 6 135195 -NCIT:C6544 Childhood Testicular Choriocarcinoma 6 135196 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 6 135197 -NCIT:C123844 Childhood Choriocarcinoma 5 135198 -NCIT:C6206 Childhood Central Nervous System Choriocarcinoma 6 135199 -NCIT:C6544 Childhood Testicular Choriocarcinoma 6 135200 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 6 135201 -NCIT:C123847 Childhood Embryonal Carcinoma 5 135202 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 6 135203 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 6 135204 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 6 135205 -NCIT:C27364 Childhood Yolk Sac Tumor 5 135206 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 6 135207 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 6 135208 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 6 135209 -NCIT:C68626 Childhood Teratoma 5 135210 -NCIT:C123834 Childhood Immature Teratoma 6 135211 -NCIT:C123835 Childhood Testicular Immature Teratoma 7 135212 -NCIT:C27405 Childhood Central Nervous System Immature Teratoma 7 135213 -NCIT:C6547 Childhood Ovarian Immature Teratoma 7 135214 -NCIT:C123836 Childhood Mature Teratoma 6 135215 -NCIT:C123837 Childhood Testicular Mature Teratoma 7 135216 -NCIT:C27404 Childhood Central Nervous System Mature Teratoma 7 135217 -NCIT:C6548 Childhood Ovarian Mature Teratoma 7 135218 -NCIT:C189046 Childhood Extragonadal Teratoma 6 135219 -NCIT:C6204 Childhood Central Nervous System Teratoma 7 135220 -NCIT:C27404 Childhood Central Nervous System Mature Teratoma 8 135221 -NCIT:C27405 Childhood Central Nervous System Immature Teratoma 8 135222 -NCIT:C6540 Childhood Testicular Teratoma 6 135223 -NCIT:C123835 Childhood Testicular Immature Teratoma 7 135224 -NCIT:C123837 Childhood Testicular Mature Teratoma 7 135225 -NCIT:C6554 Childhood Ovarian Teratoma 6 135226 -NCIT:C6547 Childhood Ovarian Immature Teratoma 7 135227 -NCIT:C6548 Childhood Ovarian Mature Teratoma 7 135228 -NCIT:C6205 Childhood Central Nervous System Germ Cell Tumor 4 135229 -NCIT:C27403 Childhood Central Nervous System Mixed Germ Cell Tumor 5 135230 -NCIT:C27406 Childhood Central Nervous System Germinoma 5 135231 -NCIT:C6207 Childhood Brain Germinoma 6 135232 -NCIT:C5795 Childhood Brain Germ Cell Tumor 5 135233 -NCIT:C6207 Childhood Brain Germinoma 6 135234 -NCIT:C6204 Childhood Central Nervous System Teratoma 5 135235 -NCIT:C27404 Childhood Central Nervous System Mature Teratoma 6 135236 -NCIT:C27405 Childhood Central Nervous System Immature Teratoma 6 135237 -NCIT:C6206 Childhood Central Nervous System Choriocarcinoma 5 135238 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 5 135239 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 5 135240 -NCIT:C6541 Childhood Malignant Germ Cell Tumor 4 135241 -NCIT:C123737 Refractory Childhood Malignant Germ Cell Tumor 5 135242 -NCIT:C123840 Childhood Seminoma 5 135243 -NCIT:C123844 Childhood Choriocarcinoma 5 135244 -NCIT:C6206 Childhood Central Nervous System Choriocarcinoma 6 135245 -NCIT:C6544 Childhood Testicular Choriocarcinoma 6 135246 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 6 135247 -NCIT:C123847 Childhood Embryonal Carcinoma 5 135248 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 6 135249 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 6 135250 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 6 135251 -NCIT:C123848 Childhood Mixed Germ Cell Tumor 5 135252 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 6 135253 -NCIT:C27403 Childhood Central Nervous System Mixed Germ Cell Tumor 6 135254 -NCIT:C6542 Childhood Testicular Mixed Germ Cell Tumor 6 135255 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 7 135256 -NCIT:C27364 Childhood Yolk Sac Tumor 5 135257 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 6 135258 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 6 135259 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 6 135260 -NCIT:C68628 Childhood Malignant Testicular Germ Cell Tumor 5 135261 -NCIT:C6542 Childhood Testicular Mixed Germ Cell Tumor 6 135262 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 7 135263 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 6 135264 -NCIT:C6544 Childhood Testicular Choriocarcinoma 6 135265 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 6 135266 -NCIT:C68629 Childhood Malignant Ovarian Germ Cell Tumor 5 135267 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 6 135268 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 6 135269 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 6 135270 -NCIT:C6550 Childhood Ovarian Dysgerminoma 6 135271 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 6 135272 -NCIT:C68632 Childhood Extragonadal Malignant Germ Cell Tumor 5 135273 -NCIT:C27403 Childhood Central Nervous System Mixed Germ Cell Tumor 6 135274 -NCIT:C27406 Childhood Central Nervous System Germinoma 6 135275 -NCIT:C6207 Childhood Brain Germinoma 7 135276 -NCIT:C6206 Childhood Central Nervous System Choriocarcinoma 6 135277 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 6 135278 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 6 135279 -NCIT:C9221 Recurrent Childhood Malignant Germ Cell Tumor 5 135280 -NCIT:C6553 Childhood Benign Germ Cell Tumor 4 135281 -NCIT:C123836 Childhood Mature Teratoma 5 135282 -NCIT:C123837 Childhood Testicular Mature Teratoma 6 135283 -NCIT:C27404 Childhood Central Nervous System Mature Teratoma 6 135284 -NCIT:C6548 Childhood Ovarian Mature Teratoma 6 135285 -NCIT:C68627 Childhood Extracranial Germ Cell Tumor 4 135286 -NCIT:C114801 Childhood Gonadal Germ Cell Tumor 5 135287 -NCIT:C6552 Childhood Testicular Germ Cell Tumor 6 135288 -NCIT:C123843 Childhood Testicular Non-Seminomatous Germ Cell Tumor 7 135289 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 8 135290 -NCIT:C6540 Childhood Testicular Teratoma 8 135291 -NCIT:C123835 Childhood Testicular Immature Teratoma 9 135292 -NCIT:C123837 Childhood Testicular Mature Teratoma 9 135293 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 8 135294 -NCIT:C6544 Childhood Testicular Choriocarcinoma 8 135295 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 8 135296 -NCIT:C68628 Childhood Malignant Testicular Germ Cell Tumor 7 135297 -NCIT:C6542 Childhood Testicular Mixed Germ Cell Tumor 8 135298 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 9 135299 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 8 135300 -NCIT:C6544 Childhood Testicular Choriocarcinoma 8 135301 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 8 135302 -NCIT:C8588 Childhood Ovarian Germ Cell Tumor 6 135303 -NCIT:C123842 Childhood Ovarian Nongerminomatous Germ Cell Tumor 7 135304 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 8 135305 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 8 135306 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 8 135307 -NCIT:C6554 Childhood Ovarian Teratoma 8 135308 -NCIT:C6547 Childhood Ovarian Immature Teratoma 9 135309 -NCIT:C6548 Childhood Ovarian Mature Teratoma 9 135310 -NCIT:C68629 Childhood Malignant Ovarian Germ Cell Tumor 7 135311 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 8 135312 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 8 135313 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 8 135314 -NCIT:C6550 Childhood Ovarian Dysgerminoma 8 135315 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 8 135316 -NCIT:C8591 Testicular Germ Cell Tumor 3 135317 -NCIT:C115211 Familial Testicular Germ Cell Tumor 4 135318 -NCIT:C162139 Regressed Testicular Germ Cell Tumor 4 135319 -NCIT:C39915 Testicular Pure Germ Cell Tumor 4 135320 -NCIT:C3877 Testicular Teratoma 5 135321 -NCIT:C189054 Prepubertal-Type Testicular Teratoma 6 135322 -NCIT:C189057 Postpubertal-Type Testicular Teratoma 6 135323 -NCIT:C35711 Testicular Teratoma with Somatic-Type Malignancy 6 135324 -NCIT:C39936 Monodermal Testicular Teratoma 6 135325 -NCIT:C6353 Immature Testicular Teratoma 6 135326 -NCIT:C123835 Childhood Testicular Immature Teratoma 7 135327 -NCIT:C8914 Stage I Immature Testicular Teratoma AJCC v6 and v7 7 135328 -NCIT:C8915 Stage II Immature Testicular Teratoma AJCC v6 and v7 7 135329 -NCIT:C8916 Stage III Immature Testicular Teratoma AJCC v6 and v7 7 135330 -NCIT:C6355 Mature Testicular Teratoma 6 135331 -NCIT:C123837 Childhood Testicular Mature Teratoma 7 135332 -NCIT:C36092 Testicular Dermoid Cyst 7 135333 -NCIT:C6540 Childhood Testicular Teratoma 6 135334 -NCIT:C123835 Childhood Testicular Immature Teratoma 7 135335 -NCIT:C123837 Childhood Testicular Mature Teratoma 7 135336 -NCIT:C39934 Testicular Trophoblastic Tumor 5 135337 -NCIT:C7733 Testicular Choriocarcinoma 6 135338 -NCIT:C39935 Testicular Monophasic Choriocarcinoma 7 135339 -NCIT:C6544 Childhood Testicular Choriocarcinoma 7 135340 -NCIT:C8606 Stage II Testicular Choriocarcinoma AJCC v6 and v7 7 135341 -NCIT:C8900 Stage III Testicular Choriocarcinoma AJCC v6 and v7 7 135342 -NCIT:C8907 Stage I Testicular Choriocarcinoma AJCC v6 and v7 7 135343 -NCIT:C6341 Testicular Embryonal Carcinoma 5 135344 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 6 135345 -NCIT:C7325 Intratubular Non-Seminoma 6 135346 -NCIT:C8908 Stage I Testicular Embryonal Carcinoma AJCC v6 and v7 6 135347 -NCIT:C8909 Stage II Testicular Embryonal Carcinoma AJCC v6 and v7 6 135348 -NCIT:C8910 Stage III Testicular Embryonal Carcinoma AJCC v6 and v7 6 135349 -NCIT:C7328 Testicular Seminoma 5 135350 -NCIT:C39919 Testicular Seminoma with Syncytiotrophoblastic Cells 6 135351 -NCIT:C39920 Testicular Seminoma with High Mitotic Index 6 135352 -NCIT:C40957 Testicular Seminoma, Cribriform Variant 6 135353 -NCIT:C40958 Testicular Seminoma, Pseudoglandular Variant 6 135354 -NCIT:C40959 Testicular Seminoma, Tubular Variant 6 135355 -NCIT:C61383 Testicular Typical Seminoma 6 135356 -NCIT:C7329 Intratubular Seminoma 6 135357 -NCIT:C8917 Stage I Testicular Seminoma AJCC v6 and v7 6 135358 -NCIT:C8918 Stage II Testicular Seminoma AJCC v6 and v7 6 135359 -NCIT:C8919 Stage III Testicular Seminoma AJCC v6 and v7 6 135360 -NCIT:C8000 Testicular Yolk Sac Tumor 5 135361 -NCIT:C39923 Testicular Yolk Sac Tumor, Microcystic Pattern 6 135362 -NCIT:C39924 Testicular Yolk Sac Tumor, Macrocystic Pattern 6 135363 -NCIT:C39925 Testicular Yolk Sac Tumor, Solid Pattern 6 135364 -NCIT:C39926 Testicular Yolk Sac Tumor, Glandular-Alveolar Pattern 6 135365 -NCIT:C39927 Testicular Yolk Sac Tumor, Endodermal Sinus/Perivascular Pattern 6 135366 -NCIT:C39928 Testicular Yolk Sac Tumor, Papillary Pattern 6 135367 -NCIT:C39929 Testicular Yolk Sac Tumor, Myxomatous Pattern 6 135368 -NCIT:C39930 Testicular Yolk Sac Tumor, Polyvesicular Vitelline Pattern 6 135369 -NCIT:C39931 Testicular Yolk Sac Tumor, Hepatoid Pattern 6 135370 -NCIT:C39932 Testicular Yolk Sac Tumor, Enteric Pattern 6 135371 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 6 135372 -NCIT:C8920 Stage I Testicular Yolk Sac Tumor AJCC v6 and v7 6 135373 -NCIT:C8921 Stage II Testicular Yolk Sac Tumor AJCC v6 and v7 6 135374 -NCIT:C8922 Stage III Testicular Yolk Sac Tumor AJCC v6 and v7 6 135375 -NCIT:C6552 Childhood Testicular Germ Cell Tumor 4 135376 -NCIT:C123843 Childhood Testicular Non-Seminomatous Germ Cell Tumor 5 135377 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 6 135378 -NCIT:C6540 Childhood Testicular Teratoma 6 135379 -NCIT:C123835 Childhood Testicular Immature Teratoma 7 135380 -NCIT:C123837 Childhood Testicular Mature Teratoma 7 135381 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 6 135382 -NCIT:C6544 Childhood Testicular Choriocarcinoma 6 135383 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 6 135384 -NCIT:C68628 Childhood Malignant Testicular Germ Cell Tumor 5 135385 -NCIT:C6542 Childhood Testicular Mixed Germ Cell Tumor 6 135386 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 7 135387 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 6 135388 -NCIT:C6544 Childhood Testicular Choriocarcinoma 6 135389 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 6 135390 -NCIT:C9063 Malignant Testicular Germ Cell Tumor 4 135391 -NCIT:C189057 Postpubertal-Type Testicular Teratoma 5 135392 -NCIT:C25771 Metastatic Malignant Testicular Germ Cell Tumor 5 135393 -NCIT:C187316 Advanced Malignant Testicular Germ Cell Tumor 6 135394 -NCIT:C39921 Testicular Spermatocytic Tumor 5 135395 -NCIT:C39922 Testicular Spermatocytic Tumor with Sarcoma 6 135396 -NCIT:C40962 Testicular Polyembryoma 5 135397 -NCIT:C5027 Malignant Testicular Non-Seminomatous Germ Cell Tumor 5 135398 -NCIT:C27785 Stage I Testicular Non-Seminomatous Germ Cell Tumor AJCC v6 and v7 6 135399 -NCIT:C8907 Stage I Testicular Choriocarcinoma AJCC v6 and v7 7 135400 -NCIT:C8908 Stage I Testicular Embryonal Carcinoma AJCC v6 and v7 7 135401 -NCIT:C8914 Stage I Immature Testicular Teratoma AJCC v6 and v7 7 135402 -NCIT:C8920 Stage I Testicular Yolk Sac Tumor AJCC v6 and v7 7 135403 -NCIT:C27786 Stage II Testicular Non-Seminomatous Germ Cell Tumor AJCC v6 and v7 6 135404 -NCIT:C8606 Stage II Testicular Choriocarcinoma AJCC v6 and v7 7 135405 -NCIT:C8909 Stage II Testicular Embryonal Carcinoma AJCC v6 and v7 7 135406 -NCIT:C8915 Stage II Immature Testicular Teratoma AJCC v6 and v7 7 135407 -NCIT:C8921 Stage II Testicular Yolk Sac Tumor AJCC v6 and v7 7 135408 -NCIT:C27787 Stage III Testicular Non-Seminomatous Germ Cell Tumor AJCC v6 and v7 6 135409 -NCIT:C8900 Stage III Testicular Choriocarcinoma AJCC v6 and v7 7 135410 -NCIT:C8910 Stage III Testicular Embryonal Carcinoma AJCC v6 and v7 7 135411 -NCIT:C8916 Stage III Immature Testicular Teratoma AJCC v6 and v7 7 135412 -NCIT:C8922 Stage III Testicular Yolk Sac Tumor AJCC v6 and v7 7 135413 -NCIT:C35711 Testicular Teratoma with Somatic-Type Malignancy 6 135414 -NCIT:C6341 Testicular Embryonal Carcinoma 6 135415 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 7 135416 -NCIT:C7325 Intratubular Non-Seminoma 7 135417 -NCIT:C8908 Stage I Testicular Embryonal Carcinoma AJCC v6 and v7 7 135418 -NCIT:C8909 Stage II Testicular Embryonal Carcinoma AJCC v6 and v7 7 135419 -NCIT:C8910 Stage III Testicular Embryonal Carcinoma AJCC v6 and v7 7 135420 -NCIT:C6351 Testicular Mixed Embryonal Carcinoma and Teratoma 6 135421 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 7 135422 -NCIT:C7733 Testicular Choriocarcinoma 6 135423 -NCIT:C39935 Testicular Monophasic Choriocarcinoma 7 135424 -NCIT:C6544 Childhood Testicular Choriocarcinoma 7 135425 -NCIT:C8606 Stage II Testicular Choriocarcinoma AJCC v6 and v7 7 135426 -NCIT:C8900 Stage III Testicular Choriocarcinoma AJCC v6 and v7 7 135427 -NCIT:C8907 Stage I Testicular Choriocarcinoma AJCC v6 and v7 7 135428 -NCIT:C8000 Testicular Yolk Sac Tumor 6 135429 -NCIT:C39923 Testicular Yolk Sac Tumor, Microcystic Pattern 7 135430 -NCIT:C39924 Testicular Yolk Sac Tumor, Macrocystic Pattern 7 135431 -NCIT:C39925 Testicular Yolk Sac Tumor, Solid Pattern 7 135432 -NCIT:C39926 Testicular Yolk Sac Tumor, Glandular-Alveolar Pattern 7 135433 -NCIT:C39927 Testicular Yolk Sac Tumor, Endodermal Sinus/Perivascular Pattern 7 135434 -NCIT:C39928 Testicular Yolk Sac Tumor, Papillary Pattern 7 135435 -NCIT:C39929 Testicular Yolk Sac Tumor, Myxomatous Pattern 7 135436 -NCIT:C39930 Testicular Yolk Sac Tumor, Polyvesicular Vitelline Pattern 7 135437 -NCIT:C39931 Testicular Yolk Sac Tumor, Hepatoid Pattern 7 135438 -NCIT:C39932 Testicular Yolk Sac Tumor, Enteric Pattern 7 135439 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 7 135440 -NCIT:C8920 Stage I Testicular Yolk Sac Tumor AJCC v6 and v7 7 135441 -NCIT:C8921 Stage II Testicular Yolk Sac Tumor AJCC v6 and v7 7 135442 -NCIT:C8922 Stage III Testicular Yolk Sac Tumor AJCC v6 and v7 7 135443 -NCIT:C8001 Testicular Mixed Embryonal Carcinoma and Yolk Sac Tumor 6 135444 -NCIT:C8002 Testicular Mixed Yolk Sac Tumor and Teratoma 6 135445 -NCIT:C6347 Testicular Mixed Germ Cell Tumor 5 135446 -NCIT:C6348 Testicular Mixed Choriocarcinoma and Embryonal Carcinoma 6 135447 -NCIT:C6349 Testicular Mixed Choriocarcinoma and Teratoma 6 135448 -NCIT:C6350 Testicular Mixed Embryonal Carcinoma and Seminoma 6 135449 -NCIT:C6351 Testicular Mixed Embryonal Carcinoma and Teratoma 6 135450 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 7 135451 -NCIT:C6352 Testicular Mixed Embryonal Carcinoma and Teratoma with Seminoma 6 135452 -NCIT:C6542 Childhood Testicular Mixed Germ Cell Tumor 6 135453 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 7 135454 -NCIT:C67548 Testicular Mixed Choriocarcinoma and Yolk Sac Tumor 6 135455 -NCIT:C8001 Testicular Mixed Embryonal Carcinoma and Yolk Sac Tumor 6 135456 -NCIT:C8002 Testicular Mixed Yolk Sac Tumor and Teratoma 6 135457 -NCIT:C8003 Testicular Mixed Yolk Sac Tumor and Teratoma with Seminoma 6 135458 -NCIT:C8911 Stage II Testicular Mixed Germ Cell Tumor AJCC v6 and v7 6 135459 -NCIT:C8912 Stage I Testicular Mixed Germ Cell Tumor AJCC v6 and v7 6 135460 -NCIT:C8913 Stage III Testicular Mixed Germ Cell Tumor AJCC v6 and v7 6 135461 -NCIT:C9172 Testicular Mixed Embryonal Carcinoma and Yolk Sac Tumor with Seminoma 6 135462 -NCIT:C9173 Testicular Mixed Choriocarcinoma and Seminoma 6 135463 -NCIT:C68628 Childhood Malignant Testicular Germ Cell Tumor 5 135464 -NCIT:C6542 Childhood Testicular Mixed Germ Cell Tumor 6 135465 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 7 135466 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 6 135467 -NCIT:C6544 Childhood Testicular Choriocarcinoma 6 135468 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 6 135469 -NCIT:C7326 Testicular Germ Cell Neoplasia In Situ with Extratubular Extension 5 135470 -NCIT:C7328 Testicular Seminoma 5 135471 -NCIT:C39919 Testicular Seminoma with Syncytiotrophoblastic Cells 6 135472 -NCIT:C39920 Testicular Seminoma with High Mitotic Index 6 135473 -NCIT:C40957 Testicular Seminoma, Cribriform Variant 6 135474 -NCIT:C40958 Testicular Seminoma, Pseudoglandular Variant 6 135475 -NCIT:C40959 Testicular Seminoma, Tubular Variant 6 135476 -NCIT:C61383 Testicular Typical Seminoma 6 135477 -NCIT:C7329 Intratubular Seminoma 6 135478 -NCIT:C8917 Stage I Testicular Seminoma AJCC v6 and v7 6 135479 -NCIT:C8918 Stage II Testicular Seminoma AJCC v6 and v7 6 135480 -NCIT:C8919 Stage III Testicular Seminoma AJCC v6 and v7 6 135481 -NCIT:C9077 Refractory Malignant Testicular Germ Cell Tumor 5 135482 -NCIT:C9369 Recurrent Malignant Testicular Germ Cell Tumor 5 135483 -NCIT:C9313 Testicular Non-Seminomatous Germ Cell Tumor 4 135484 -NCIT:C123843 Childhood Testicular Non-Seminomatous Germ Cell Tumor 5 135485 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 6 135486 -NCIT:C6540 Childhood Testicular Teratoma 6 135487 -NCIT:C123835 Childhood Testicular Immature Teratoma 7 135488 -NCIT:C123837 Childhood Testicular Mature Teratoma 7 135489 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 6 135490 -NCIT:C6544 Childhood Testicular Choriocarcinoma 6 135491 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 6 135492 -NCIT:C3877 Testicular Teratoma 5 135493 -NCIT:C189054 Prepubertal-Type Testicular Teratoma 6 135494 -NCIT:C189057 Postpubertal-Type Testicular Teratoma 6 135495 -NCIT:C35711 Testicular Teratoma with Somatic-Type Malignancy 6 135496 -NCIT:C39936 Monodermal Testicular Teratoma 6 135497 -NCIT:C6353 Immature Testicular Teratoma 6 135498 -NCIT:C123835 Childhood Testicular Immature Teratoma 7 135499 -NCIT:C8914 Stage I Immature Testicular Teratoma AJCC v6 and v7 7 135500 -NCIT:C8915 Stage II Immature Testicular Teratoma AJCC v6 and v7 7 135501 -NCIT:C8916 Stage III Immature Testicular Teratoma AJCC v6 and v7 7 135502 -NCIT:C6355 Mature Testicular Teratoma 6 135503 -NCIT:C123837 Childhood Testicular Mature Teratoma 7 135504 -NCIT:C36092 Testicular Dermoid Cyst 7 135505 -NCIT:C6540 Childhood Testicular Teratoma 6 135506 -NCIT:C123835 Childhood Testicular Immature Teratoma 7 135507 -NCIT:C123837 Childhood Testicular Mature Teratoma 7 135508 -NCIT:C39934 Testicular Trophoblastic Tumor 5 135509 -NCIT:C7733 Testicular Choriocarcinoma 6 135510 -NCIT:C39935 Testicular Monophasic Choriocarcinoma 7 135511 -NCIT:C6544 Childhood Testicular Choriocarcinoma 7 135512 -NCIT:C8606 Stage II Testicular Choriocarcinoma AJCC v6 and v7 7 135513 -NCIT:C8900 Stage III Testicular Choriocarcinoma AJCC v6 and v7 7 135514 -NCIT:C8907 Stage I Testicular Choriocarcinoma AJCC v6 and v7 7 135515 -NCIT:C5027 Malignant Testicular Non-Seminomatous Germ Cell Tumor 5 135516 -NCIT:C27785 Stage I Testicular Non-Seminomatous Germ Cell Tumor AJCC v6 and v7 6 135517 -NCIT:C8907 Stage I Testicular Choriocarcinoma AJCC v6 and v7 7 135518 -NCIT:C8908 Stage I Testicular Embryonal Carcinoma AJCC v6 and v7 7 135519 -NCIT:C8914 Stage I Immature Testicular Teratoma AJCC v6 and v7 7 135520 -NCIT:C8920 Stage I Testicular Yolk Sac Tumor AJCC v6 and v7 7 135521 -NCIT:C27786 Stage II Testicular Non-Seminomatous Germ Cell Tumor AJCC v6 and v7 6 135522 -NCIT:C8606 Stage II Testicular Choriocarcinoma AJCC v6 and v7 7 135523 -NCIT:C8909 Stage II Testicular Embryonal Carcinoma AJCC v6 and v7 7 135524 -NCIT:C8915 Stage II Immature Testicular Teratoma AJCC v6 and v7 7 135525 -NCIT:C8921 Stage II Testicular Yolk Sac Tumor AJCC v6 and v7 7 135526 -NCIT:C27787 Stage III Testicular Non-Seminomatous Germ Cell Tumor AJCC v6 and v7 6 135527 -NCIT:C8900 Stage III Testicular Choriocarcinoma AJCC v6 and v7 7 135528 -NCIT:C8910 Stage III Testicular Embryonal Carcinoma AJCC v6 and v7 7 135529 -NCIT:C8916 Stage III Immature Testicular Teratoma AJCC v6 and v7 7 135530 -NCIT:C8922 Stage III Testicular Yolk Sac Tumor AJCC v6 and v7 7 135531 -NCIT:C35711 Testicular Teratoma with Somatic-Type Malignancy 6 135532 -NCIT:C6341 Testicular Embryonal Carcinoma 6 135533 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 7 135534 -NCIT:C7325 Intratubular Non-Seminoma 7 135535 -NCIT:C8908 Stage I Testicular Embryonal Carcinoma AJCC v6 and v7 7 135536 -NCIT:C8909 Stage II Testicular Embryonal Carcinoma AJCC v6 and v7 7 135537 -NCIT:C8910 Stage III Testicular Embryonal Carcinoma AJCC v6 and v7 7 135538 -NCIT:C6351 Testicular Mixed Embryonal Carcinoma and Teratoma 6 135539 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 7 135540 -NCIT:C7733 Testicular Choriocarcinoma 6 135541 -NCIT:C39935 Testicular Monophasic Choriocarcinoma 7 135542 -NCIT:C6544 Childhood Testicular Choriocarcinoma 7 135543 -NCIT:C8606 Stage II Testicular Choriocarcinoma AJCC v6 and v7 7 135544 -NCIT:C8900 Stage III Testicular Choriocarcinoma AJCC v6 and v7 7 135545 -NCIT:C8907 Stage I Testicular Choriocarcinoma AJCC v6 and v7 7 135546 -NCIT:C8000 Testicular Yolk Sac Tumor 6 135547 -NCIT:C39923 Testicular Yolk Sac Tumor, Microcystic Pattern 7 135548 -NCIT:C39924 Testicular Yolk Sac Tumor, Macrocystic Pattern 7 135549 -NCIT:C39925 Testicular Yolk Sac Tumor, Solid Pattern 7 135550 -NCIT:C39926 Testicular Yolk Sac Tumor, Glandular-Alveolar Pattern 7 135551 -NCIT:C39927 Testicular Yolk Sac Tumor, Endodermal Sinus/Perivascular Pattern 7 135552 -NCIT:C39928 Testicular Yolk Sac Tumor, Papillary Pattern 7 135553 -NCIT:C39929 Testicular Yolk Sac Tumor, Myxomatous Pattern 7 135554 -NCIT:C39930 Testicular Yolk Sac Tumor, Polyvesicular Vitelline Pattern 7 135555 -NCIT:C39931 Testicular Yolk Sac Tumor, Hepatoid Pattern 7 135556 -NCIT:C39932 Testicular Yolk Sac Tumor, Enteric Pattern 7 135557 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 7 135558 -NCIT:C8920 Stage I Testicular Yolk Sac Tumor AJCC v6 and v7 7 135559 -NCIT:C8921 Stage II Testicular Yolk Sac Tumor AJCC v6 and v7 7 135560 -NCIT:C8922 Stage III Testicular Yolk Sac Tumor AJCC v6 and v7 7 135561 -NCIT:C8001 Testicular Mixed Embryonal Carcinoma and Yolk Sac Tumor 6 135562 -NCIT:C8002 Testicular Mixed Yolk Sac Tumor and Teratoma 6 135563 -NCIT:C3709 Epithelial Neoplasm 2 135564 -NCIT:C164255 Mixed Neuroendocrine Non-Neuroendocrine Neoplasm 3 135565 -NCIT:C188217 Pancreatic Mixed Ductal-Neuroendocrine Neoplasm 4 135566 -NCIT:C6879 Pancreatic Mixed Ductal-Neuroendocrine Carcinoma 5 135567 -NCIT:C95406 Digestive System Mixed Adenoneuroendocrine Carcinoma 4 135568 -NCIT:C163967 Metastatic Digestive System Mixed Adenoneuroendocrine Carcinoma 5 135569 -NCIT:C172718 Liver Mixed Adenoneuroendocrine Carcinoma 5 135570 -NCIT:C172808 Unresectable Digestive System Mixed Adenoneuroendocrine Carcinoma 5 135571 -NCIT:C43564 Appendix Mixed Adenoneuroendocrine Carcinoma 5 135572 -NCIT:C3689 Appendix Goblet Cell Adenocarcinoma 6 135573 -NCIT:C45843 Pancreatic Mixed Adenoneuroendocrine Carcinoma 5 135574 -NCIT:C6878 Pancreatic Mixed Acinar-Neuroendocrine Carcinoma 6 135575 -NCIT:C6879 Pancreatic Mixed Ductal-Neuroendocrine Carcinoma 6 135576 -NCIT:C95460 Pancreatic Mixed Acinar-Ductal Neuroendocrine Carcinoma 6 135577 -NCIT:C95621 Esophageal Mixed Adenoneuroendocrine Carcinoma 5 135578 -NCIT:C95886 Gastric Mixed Adenoneuroendocrine Carcinoma 5 135579 -NCIT:C95986 Ampulla of Vater Mixed Adenoneuroendocrine Carcinoma 5 135580 -NCIT:C96066 Small Intestinal Mixed Adenoneuroendocrine Carcinoma 5 135581 -NCIT:C96158 Colorectal Mixed Adenoneuroendocrine Carcinoma 5 135582 -NCIT:C96553 Anal Canal Mixed Adenoneuroendocrine Carcinoma 5 135583 -NCIT:C96927 Gallbladder Mixed Adenoneuroendocrine Carcinoma 5 135584 -NCIT:C96928 Gallbladder Goblet Cell Carcinoid 6 135585 -NCIT:C96959 Extrahepatic Bile Duct Mixed Adenoneuroendocrine Carcinoma 5 135586 -NCIT:C2855 Adenoma 3 135587 -NCIT:C156757 Parathyroid Gland Adenoma 4 135588 -NCIT:C190066 Childhood Parathyroid Gland Adenoma 5 135589 -NCIT:C27393 Parathyroid Gland Oncocytic Adenoma 5 135590 -NCIT:C4154 Parathyroid Gland Chief Cell Adenoma 5 135591 -NCIT:C48283 Parathyroid Gland Lipoadenoma 5 135592 -NCIT:C7993 Parathyroid Gland Clear Cell Adenoma 5 135593 -NCIT:C4155 Parathyroid Gland Water-Clear Cell Adenoma 6 135594 -NCIT:C7994 Parathyroid Gland Mixed Cell Type Adenoma 5 135595 -NCIT:C174550 Adenoma of the Retinal Pigment Epithelium 4 135596 -NCIT:C174560 Ciliary Body Adenoma 4 135597 -NCIT:C184295 Salivary Gland Adenoma 4 135598 -NCIT:C3686 Salivary Gland Monomorphic Adenoma 5 135599 -NCIT:C35738 Salivary Gland Sebaceous Adenoma 6 135600 -NCIT:C5932 Salivary Gland Oncocytoma 6 135601 -NCIT:C5950 Basal Cell Adenoma 6 135602 -NCIT:C5979 Salivary Gland Canalicular Adenoma 6 135603 -NCIT:C6845 Oral Cavity Monomorphic Adenoma 6 135604 -NCIT:C6844 Hard Palate Monomorphic Adenoma 7 135605 -NCIT:C6847 Parotid Gland Monomorphic Adenoma 6 135606 -NCIT:C40409 Salivary Gland Pleomorphic Adenoma 5 135607 -NCIT:C173114 Sinonasal Pleomorphic Adenoma 6 135608 -NCIT:C173412 Laryngeal Pleomorphic Adenoma 6 135609 -NCIT:C173575 Oropharyngeal Pleomorphic Adenoma 6 135610 -NCIT:C190161 Childhood Salivary Gland Pleomorphic Adenoma 6 135611 -NCIT:C35759 Metastasizing Pleomorphic Adenoma of the Salivary Gland 6 135612 -NCIT:C4650 Parotid Gland Pleomorphic Adenoma 6 135613 -NCIT:C6242 Oral Cavity Pleomorphic Adenoma 6 135614 -NCIT:C6211 Soft Palate Pleomorphic Adenoma 7 135615 -NCIT:C6212 Hard Palate Pleomorphic Adenoma 7 135616 -NCIT:C66865 Parotid Gland Warthin Tumor 5 135617 -NCIT:C191750 Villous Adenoma of the Urinary Tract 4 135618 -NCIT:C7414 Bladder Villous Adenoma 5 135619 -NCIT:C2854 Warthin Tumor 4 135620 -NCIT:C175291 Lacrimal Gland Warthin Tumor 5 135621 -NCIT:C66865 Parotid Gland Warthin Tumor 5 135622 -NCIT:C3329 Pituitary Neuroendocrine Tumor 4 135623 -NCIT:C132296 Atypical Pituitary Neuroendocrine Tumor 5 135624 -NCIT:C154520 Multiple Synchronous Pituitary Neuroendocrine Tumors of Distinct Lineages 5 135625 -NCIT:C154519 Double Pituitary Neuroendocrine Tumors of Distinct Lineages 6 135626 -NCIT:C155767 Mixed Gangliocytoma-Pituitary Neuroendocrine Tumor 5 135627 -NCIT:C173345 Ectopic Pituitary Neuroendocrine Tumor 5 135628 -NCIT:C173352 Nasopharyngeal Pituitary Neuroendocrine Tumor 6 135629 -NCIT:C187086 Pituitary Neuroendocrine Tumor of PIT1-Lineage 5 135630 -NCIT:C127194 Somatotroph-Lactotroph Pituitary Neuroendocrine Tumor 6 135631 -NCIT:C45927 Mixed Somatotroph and Lactotroph Pituitary Neuroendocrine Tumor 7 135632 -NCIT:C45928 Mammosomatotroph Pituitary Neuroendocrine Tumor 7 135633 -NCIT:C187098 Mature Plurihormonal PIT1 Lineage Pituitary Neuroendocrine Tumor 6 135634 -NCIT:C187099 Immature PIT1 Lineage Pituitary Neuroendocrine Tumor 6 135635 -NCIT:C3342 Lactotroph Pituitary Neuroendocrine Tumor 6 135636 -NCIT:C45931 Densely Granulated Lactotroph Pituitary Neuroendocrine Tumor 7 135637 -NCIT:C45932 Sparsely Granulated Lactotroph Pituitary Neuroendocrine Tumor 7 135638 -NCIT:C5962 Metastatic Lactotroph Pituitary Neuroendocrine Tumor 7 135639 -NCIT:C45929 Acidophil Stem Cell Pituitary Neuroendocrine Tumor 6 135640 -NCIT:C7461 Somatotroph Pituitary Neuroendocrine Tumor 6 135641 -NCIT:C45925 Densely Granulated Somatotroph Pituitary Neuroendocrine Tumor 7 135642 -NCIT:C45926 Sparsely Granulated Somatotroph Pituitary Neuroendocrine Tumor 7 135643 -NCIT:C5963 Metastatic Somatotroph Pituitary Neuroendocrine Tumor 7 135644 -NCIT:C7915 Thyrotroph Pituitary Neuroendocrine Tumor 6 135645 -NCIT:C5965 Metastatic Thyrotroph Pituitary Neuroendocrine Tumor 7 135646 -NCIT:C187087 Pituitary Neuroendocrine Tumor of TPIT-Lineage 5 135647 -NCIT:C7462 Corticotroph Pituitary Neuroendocrine Tumor 6 135648 -NCIT:C154339 Densely Granulated Corticotroph Pituitary Neuroendocrine Tumor 7 135649 -NCIT:C154431 Non-Functioning Densely Granulated Corticotroph Pituitary Neuroendocrine Tumor 8 135650 -NCIT:C154340 Sparsely Granulated Corticotroph Pituitary Neuroendocrine Tumor 7 135651 -NCIT:C154432 Non-Functioning Sparsely Granulated Corticotroph Pituitary Neuroendocrine Tumor 8 135652 -NCIT:C154342 Crooke Cell Tumor 7 135653 -NCIT:C154429 Non-Functioning Corticotroph Pituitary Neuroendocrine Tumor 7 135654 -NCIT:C154431 Non-Functioning Densely Granulated Corticotroph Pituitary Neuroendocrine Tumor 8 135655 -NCIT:C154432 Non-Functioning Sparsely Granulated Corticotroph Pituitary Neuroendocrine Tumor 8 135656 -NCIT:C5964 Metastatic Corticotroph Pituitary Neuroendocrine Tumor 7 135657 -NCIT:C187088 Pituitary Neuroendocrine Tumor of SF1-Lineage 5 135658 -NCIT:C45915 Gonadotroph Pituitary Neuroendocrine Tumor 6 135659 -NCIT:C121152 FSH-Producing Pituitary Neuroendocrine Tumor 7 135660 -NCIT:C121153 LH-Producing Pituitary Neuroendocrine Tumor 7 135661 -NCIT:C187096 Pituitary Neuroendocrine Tumor without Distinct Lineage Differentiation 5 135662 -NCIT:C45916 Plurihormonal Pituitary Neuroendocrine Tumor 6 135663 -NCIT:C154504 Monomorphous Plurihormonal Pituitary Neuroendocrine Tumor 7 135664 -NCIT:C154505 Plurimorphous Plurihormonal Pituitary Neuroendocrine Tumor 7 135665 -NCIT:C45924 Null Cell Pituitary Neuroendocrine Tumor 6 135666 -NCIT:C187135 Pituitary Neuroendocrine Tumor, Not Otherwise Specified 5 135667 -NCIT:C4348 Non-Functioning Pituitary Neuroendocrine Tumor 5 135668 -NCIT:C121678 Non-Functioning Pituitary Neuroendocrine Tumor/Microadenoma 6 135669 -NCIT:C121721 Non-Functioning Pituitary Neuroendocrine Tumor/Macroadenoma 6 135670 -NCIT:C154429 Non-Functioning Corticotroph Pituitary Neuroendocrine Tumor 6 135671 -NCIT:C154431 Non-Functioning Densely Granulated Corticotroph Pituitary Neuroendocrine Tumor 7 135672 -NCIT:C154432 Non-Functioning Sparsely Granulated Corticotroph Pituitary Neuroendocrine Tumor 7 135673 -NCIT:C45924 Null Cell Pituitary Neuroendocrine Tumor 6 135674 -NCIT:C43541 Pituitary Neuroendocrine Tumor/Microadenoma 5 135675 -NCIT:C121678 Non-Functioning Pituitary Neuroendocrine Tumor/Microadenoma 6 135676 -NCIT:C121679 Functioning Pituitary Neuroendocrine Tumor/Microadenoma 6 135677 -NCIT:C43542 Pituitary Neuroendocrine Tumor/Macroadenoma 5 135678 -NCIT:C121720 Functioning Pituitary Neuroendocrine Tumor/Macroadenoma 6 135679 -NCIT:C121721 Non-Functioning Pituitary Neuroendocrine Tumor/Macroadenoma 6 135680 -NCIT:C4536 Metastatic Pituitary Neuroendocrine Tumor 5 135681 -NCIT:C163956 Locally Advanced Pituitary Neuroendocrine Tumor 6 135682 -NCIT:C163959 Metastatic Unresectable Pituitary Neuroendocrine Tumor 6 135683 -NCIT:C5962 Metastatic Lactotroph Pituitary Neuroendocrine Tumor 6 135684 -NCIT:C5963 Metastatic Somatotroph Pituitary Neuroendocrine Tumor 6 135685 -NCIT:C5964 Metastatic Corticotroph Pituitary Neuroendocrine Tumor 6 135686 -NCIT:C5965 Metastatic Thyrotroph Pituitary Neuroendocrine Tumor 6 135687 -NCIT:C8388 Functioning Pituitary Neuroendocrine Tumor 5 135688 -NCIT:C121679 Functioning Pituitary Neuroendocrine Tumor/Microadenoma 6 135689 -NCIT:C121720 Functioning Pituitary Neuroendocrine Tumor/Macroadenoma 6 135690 -NCIT:C3502 Thyroid Gland Follicular Adenoma 4 135691 -NCIT:C155957 Thyroid Gland Spindle Cell Follicular Adenoma 5 135692 -NCIT:C155958 Thyroid Gland Black Follicular Adenoma 5 135693 -NCIT:C187261 Thyroid Gland Follicular Adenoma with Papillary Architecture 5 135694 -NCIT:C190060 Childhood Thyroid Gland Follicular Adenoma 5 135695 -NCIT:C4160 Thyroid Gland Microfollicular Adenoma 5 135696 -NCIT:C4161 Thyroid Gland Macrofollicular Adenoma 5 135697 -NCIT:C46111 Thyroid Gland Follicular Adenoma with Papillary Hyperplasia 5 135698 -NCIT:C46115 Thyroid Gland Signet Ring Cell Follicular Adenoma 5 135699 -NCIT:C46116 Thyroid Gland Mucinous Follicular Adenoma 5 135700 -NCIT:C46118 Thyroid Gland Lipoadenoma 5 135701 -NCIT:C46119 Thyroid Gland Clear Cell Follicular Adenoma 5 135702 -NCIT:C46122 Thyroid Gland Hyperfunctioning Adenoma 5 135703 -NCIT:C46123 Thyroid Gland Follicular Adenoma with Bizarre Nuclei 5 135704 -NCIT:C6042 Thyroid Gland Oncocytic Adenoma 5 135705 -NCIT:C36207 Digestive System Adenoma 4 135706 -NCIT:C2942 Bile Duct Adenoma 5 135707 -NCIT:C5857 Extrahepatic Bile Duct Adenoma 6 135708 -NCIT:C5849 Extrahepatic Bile Duct Papillary Adenoma 7 135709 -NCIT:C5850 Extrahepatic Bile Duct Tubular Adenoma 7 135710 -NCIT:C96811 Extrahepatic Bile Duct Tubulopapillary Adenoma 7 135711 -NCIT:C7126 Intrahepatic Bile Duct Adenoma 6 135712 -NCIT:C7127 Intrahepatic Bile Duct Microcystic Adenoma 7 135713 -NCIT:C3758 Hepatocellular Adenoma 5 135714 -NCIT:C96758 HNF1alpha-Inactivated Hepatocellular Adenoma 6 135715 -NCIT:C96759 Beta-Catenin-Activated Hepatocellular Adenoma 6 135716 -NCIT:C96760 Inflammatory Hepatocellular Adenoma 6 135717 -NCIT:C172707 Beta-Catenin-Activated Inflammatory Hepatocellular Adenoma 7 135718 -NCIT:C96761 Unclassified Hepatocellular Adenoma 6 135719 -NCIT:C3764 Adenomatous Polyp 5 135720 -NCIT:C164253 Gastrointestinal Tract Adenoma, Intestinal-Type 6 135721 -NCIT:C172735 Gallbladder Adenoma, Intestinal-Type 7 135722 -NCIT:C6657 Ampulla of Vater Adenoma, Intestinal-Type 7 135723 -NCIT:C27412 Ampulla of Vater Tubulovillous Adenoma 8 135724 -NCIT:C6658 Ampulla of Vater Villous Adenoma 8 135725 -NCIT:C6659 Ampulla of Vater Tubular Adenoma 8 135726 -NCIT:C95773 Gastric Adenoma, Intestinal-Type 7 135727 -NCIT:C7036 Gastric Tubular Adenoma 8 135728 -NCIT:C7037 Gastric Tubulovillous Adenoma 8 135729 -NCIT:C7038 Gastric Villous Adenoma 8 135730 -NCIT:C4135 Multiple Adenomatous Polyps 6 135731 -NCIT:C7720 Gallbladder Adenoma 6 135732 -NCIT:C172731 Gallbladder Pyloric Gland Adenoma 7 135733 -NCIT:C172735 Gallbladder Adenoma, Intestinal-Type 7 135734 -NCIT:C96478 Colorectal Adenomatous Polyp 6 135735 -NCIT:C96479 Colon Adenomatous Polyp 7 135736 -NCIT:C96480 Rectal Adenomatous Polyp 7 135737 -NCIT:C38458 Traditional Serrated Adenoma 5 135738 -NCIT:C43549 Appendix Traditional Serrated Adenoma 6 135739 -NCIT:C5674 Colorectal Traditional Serrated Adenoma 6 135740 -NCIT:C43577 Colon Traditional Serrated Adenoma 7 135741 -NCIT:C96463 Rectal Traditional Serrated Adenoma 7 135742 -NCIT:C96468 Colorectal Filiform Serrated Adenoma 7 135743 -NCIT:C96466 Digestive System Filiform Serrated Adenoma 6 135744 -NCIT:C96468 Colorectal Filiform Serrated Adenoma 7 135745 -NCIT:C4133 Tubular Adenoma 5 135746 -NCIT:C27456 Colorectal Tubular Adenoma 6 135747 -NCIT:C7041 Colon Tubular Adenoma 7 135748 -NCIT:C96477 Rectal Tubular Adenoma 7 135749 -NCIT:C43546 Appendix Tubular Adenoma 6 135750 -NCIT:C43552 Small Intestinal Tubular Adenoma 6 135751 -NCIT:C5850 Extrahepatic Bile Duct Tubular Adenoma 6 135752 -NCIT:C6659 Ampulla of Vater Tubular Adenoma 6 135753 -NCIT:C7036 Gastric Tubular Adenoma 6 135754 -NCIT:C4143 Tubulovillous Adenoma 5 135755 -NCIT:C27412 Ampulla of Vater Tubulovillous Adenoma 6 135756 -NCIT:C43547 Appendix Tubulovillous Adenoma 6 135757 -NCIT:C43553 Small Intestinal Tubulovillous Adenoma 6 135758 -NCIT:C5675 Colorectal Tubulovillous Adenoma 6 135759 -NCIT:C5496 Colon Tubulovillous Adenoma 7 135760 -NCIT:C5620 Rectal Tubulovillous Adenoma 7 135761 -NCIT:C7037 Gastric Tubulovillous Adenoma 6 135762 -NCIT:C96811 Extrahepatic Bile Duct Tubulopapillary Adenoma 6 135763 -NCIT:C43550 Appendix Adenoma 5 135764 -NCIT:C43546 Appendix Tubular Adenoma 6 135765 -NCIT:C43547 Appendix Tubulovillous Adenoma 6 135766 -NCIT:C43549 Appendix Traditional Serrated Adenoma 6 135767 -NCIT:C5510 Appendix Mucinous Cystadenoma 6 135768 -NCIT:C5512 Appendix Villous Adenoma 6 135769 -NCIT:C96415 Appendix Serrated Lesions and Polyps 6 135770 -NCIT:C5340 Small Intestinal Adenoma 5 135771 -NCIT:C43551 Small Intestinal Villous Adenoma 6 135772 -NCIT:C5338 Duodenal Villous Adenoma 7 135773 -NCIT:C43552 Small Intestinal Tubular Adenoma 6 135774 -NCIT:C43553 Small Intestinal Tubulovillous Adenoma 6 135775 -NCIT:C4932 Duodenal Adenoma 6 135776 -NCIT:C5338 Duodenal Villous Adenoma 7 135777 -NCIT:C5673 Colorectal Adenoma 5 135778 -NCIT:C172680 Colorectal Conventional Adenoma 6 135779 -NCIT:C172682 Colon Conventional Adenoma 7 135780 -NCIT:C3495 Colon Villous Adenoma 8 135781 -NCIT:C5520 Cecum Villous Adenoma 9 135782 -NCIT:C5496 Colon Tubulovillous Adenoma 8 135783 -NCIT:C7041 Colon Tubular Adenoma 8 135784 -NCIT:C172683 Rectal Conventional Adenoma 7 135785 -NCIT:C4919 Rectal Villous Adenoma 8 135786 -NCIT:C5620 Rectal Tubulovillous Adenoma 8 135787 -NCIT:C96477 Rectal Tubular Adenoma 8 135788 -NCIT:C27456 Colorectal Tubular Adenoma 7 135789 -NCIT:C7041 Colon Tubular Adenoma 8 135790 -NCIT:C96477 Rectal Tubular Adenoma 8 135791 -NCIT:C5675 Colorectal Tubulovillous Adenoma 7 135792 -NCIT:C5496 Colon Tubulovillous Adenoma 8 135793 -NCIT:C5620 Rectal Tubulovillous Adenoma 8 135794 -NCIT:C5676 Colorectal Villous Adenoma 7 135795 -NCIT:C3495 Colon Villous Adenoma 8 135796 -NCIT:C5520 Cecum Villous Adenoma 9 135797 -NCIT:C4919 Rectal Villous Adenoma 8 135798 -NCIT:C27457 Colorectal Adenoma with Moderate Dysplasia 6 135799 -NCIT:C27458 Colorectal Adenoma with Mild Dysplasia 6 135800 -NCIT:C3864 Colon Adenoma 6 135801 -NCIT:C128171 Colon Adenoma with Severe Dysplasia 7 135802 -NCIT:C172682 Colon Conventional Adenoma 7 135803 -NCIT:C3495 Colon Villous Adenoma 8 135804 -NCIT:C5520 Cecum Villous Adenoma 9 135805 -NCIT:C5496 Colon Tubulovillous Adenoma 8 135806 -NCIT:C7041 Colon Tubular Adenoma 8 135807 -NCIT:C43577 Colon Traditional Serrated Adenoma 7 135808 -NCIT:C96464 Colon Serrated Lesions and Polyps 7 135809 -NCIT:C96479 Colon Adenomatous Polyp 7 135810 -NCIT:C5546 Rectal Adenoma 6 135811 -NCIT:C172683 Rectal Conventional Adenoma 7 135812 -NCIT:C4919 Rectal Villous Adenoma 8 135813 -NCIT:C5620 Rectal Tubulovillous Adenoma 8 135814 -NCIT:C96477 Rectal Tubular Adenoma 8 135815 -NCIT:C5621 Rectal Adenoma with Severe Dysplasia 7 135816 -NCIT:C96463 Rectal Traditional Serrated Adenoma 7 135817 -NCIT:C96465 Rectal Serrated Lesions and Polyps 7 135818 -NCIT:C96480 Rectal Adenomatous Polyp 7 135819 -NCIT:C5674 Colorectal Traditional Serrated Adenoma 6 135820 -NCIT:C43577 Colon Traditional Serrated Adenoma 7 135821 -NCIT:C96463 Rectal Traditional Serrated Adenoma 7 135822 -NCIT:C96468 Colorectal Filiform Serrated Adenoma 7 135823 -NCIT:C5685 Colorectal Adenoma with Severe Dysplasia 6 135824 -NCIT:C128171 Colon Adenoma with Severe Dysplasia 7 135825 -NCIT:C5621 Rectal Adenoma with Severe Dysplasia 7 135826 -NCIT:C83176 Colorectal Serrated Lesions and Polyps 6 135827 -NCIT:C96464 Colon Serrated Lesions and Polyps 7 135828 -NCIT:C96465 Rectal Serrated Lesions and Polyps 7 135829 -NCIT:C96478 Colorectal Adenomatous Polyp 6 135830 -NCIT:C96479 Colon Adenomatous Polyp 7 135831 -NCIT:C96480 Rectal Adenomatous Polyp 7 135832 -NCIT:C65193 Flat Adenoma 5 135833 -NCIT:C7399 Villous Adenoma 5 135834 -NCIT:C43551 Small Intestinal Villous Adenoma 6 135835 -NCIT:C5338 Duodenal Villous Adenoma 7 135836 -NCIT:C5512 Appendix Villous Adenoma 6 135837 -NCIT:C5676 Colorectal Villous Adenoma 6 135838 -NCIT:C3495 Colon Villous Adenoma 7 135839 -NCIT:C5520 Cecum Villous Adenoma 8 135840 -NCIT:C4919 Rectal Villous Adenoma 7 135841 -NCIT:C6658 Ampulla of Vater Villous Adenoma 6 135842 -NCIT:C7038 Gastric Villous Adenoma 6 135843 -NCIT:C7699 Gastric Adenoma 5 135844 -NCIT:C172655 Oxyntic Gland Adenoma 6 135845 -NCIT:C8961 Fundic Gland Polyp 6 135846 -NCIT:C95773 Gastric Adenoma, Intestinal-Type 6 135847 -NCIT:C7036 Gastric Tubular Adenoma 7 135848 -NCIT:C7037 Gastric Tubulovillous Adenoma 7 135849 -NCIT:C7038 Gastric Villous Adenoma 7 135850 -NCIT:C95775 Gastric Adenoma, Gastric-Type 6 135851 -NCIT:C43526 Gastric Pyloric Gland Adenoma 7 135852 -NCIT:C95779 Foveolar-Type Adenoma 7 135853 -NCIT:C96414 Serrated Lesions and Polyps 5 135854 -NCIT:C83176 Colorectal Serrated Lesions and Polyps 6 135855 -NCIT:C96464 Colon Serrated Lesions and Polyps 7 135856 -NCIT:C96465 Rectal Serrated Lesions and Polyps 7 135857 -NCIT:C96415 Appendix Serrated Lesions and Polyps 6 135858 -NCIT:C3685 Microcystic Adenoma 4 135859 -NCIT:C7127 Intrahepatic Bile Duct Microcystic Adenoma 5 135860 -NCIT:C3688 Trabecular Adenoma 4 135861 -NCIT:C4160 Thyroid Gland Microfollicular Adenoma 5 135862 -NCIT:C3759 Oncocytic Adenoma 4 135863 -NCIT:C27393 Parathyroid Gland Oncocytic Adenoma 5 135864 -NCIT:C48447 Adrenal Cortical Oncocytic Adenoma 5 135865 -NCIT:C5932 Salivary Gland Oncocytoma 5 135866 -NCIT:C6042 Thyroid Gland Oncocytic Adenoma 5 135867 -NCIT:C39872 Urethral Villous Adenoma 4 135868 -NCIT:C40018 Rete Ovarii Adenoma 4 135869 -NCIT:C40256 Vaginal Adenoma 4 135870 -NCIT:C40258 Vaginal Tubulovillous Adenoma 5 135871 -NCIT:C40259 Vaginal Villous Adenoma 5 135872 -NCIT:C40299 Bartholin Gland Adenoma 4 135873 -NCIT:C40301 Adenoma of Minor Vestibular Glands 4 135874 -NCIT:C40382 Breast Adenoma 4 135875 -NCIT:C40383 Breast Apocrine Adenoma 5 135876 -NCIT:C40384 Breast Ductal Adenoma 5 135877 -NCIT:C40408 Breast Pleomorphic Adenoma 5 135878 -NCIT:C62210 Breast Tubular Adenoma 5 135879 -NCIT:C9473 Lactating Adenoma 6 135880 -NCIT:C4151 Clear Cell Adenoma 4 135881 -NCIT:C4165 Adrenal Cortical Clear Cell Adenoma 5 135882 -NCIT:C46119 Thyroid Gland Clear Cell Follicular Adenoma 5 135883 -NCIT:C7567 Clear Cell Hidradenoma 5 135884 -NCIT:C7993 Parathyroid Gland Clear Cell Adenoma 5 135885 -NCIT:C4155 Parathyroid Gland Water-Clear Cell Adenoma 6 135886 -NCIT:C4157 Mixed Cell Adenoma 4 135887 -NCIT:C4167 Adrenal Cortical Mixed Cell Adenoma 5 135888 -NCIT:C7994 Parathyroid Gland Mixed Cell Type Adenoma 5 135889 -NCIT:C4159 Lipoadenoma 4 135890 -NCIT:C46118 Thyroid Gland Lipoadenoma 5 135891 -NCIT:C48283 Parathyroid Gland Lipoadenoma 5 135892 -NCIT:C4192 Nipple Adenoma 4 135893 -NCIT:C4196 Acinar Cell Adenoma 4 135894 -NCIT:C4455 Lung Adenoma 4 135895 -NCIT:C183045 Bronchiolar Adenoma/Ciliated Muconodular Papillary Tumor 5 135896 -NCIT:C3494 Lung Papillary Adenoma 5 135897 -NCIT:C4140 Alveolar Adenoma 5 135898 -NCIT:C45603 Lung Pleomorphic Adenoma 5 135899 -NCIT:C45604 Lung Mucinous Cystadenoma 5 135900 -NCIT:C5656 Sclerosing Pneumocytoma 5 135901 -NCIT:C5664 Lung Mucous Gland Adenoma 5 135902 -NCIT:C4795 Prostate Adenoma 4 135903 -NCIT:C5913 Oral Cavity Adenoma 4 135904 -NCIT:C6242 Oral Cavity Pleomorphic Adenoma 5 135905 -NCIT:C6211 Soft Palate Pleomorphic Adenoma 6 135906 -NCIT:C6212 Hard Palate Pleomorphic Adenoma 6 135907 -NCIT:C6845 Oral Cavity Monomorphic Adenoma 5 135908 -NCIT:C6844 Hard Palate Monomorphic Adenoma 6 135909 -NCIT:C6834 Middle Ear Adenoma 4 135910 -NCIT:C7559 Atypical Adenoma 4 135911 -NCIT:C187099 Immature PIT1 Lineage Pituitary Neuroendocrine Tumor 5 135912 -NCIT:C46123 Thyroid Gland Follicular Adenoma with Bizarre Nuclei 5 135913 -NCIT:C7580 Skin Appendage Adenoma 4 135914 -NCIT:C4174 Sebaceous Adenoma 5 135915 -NCIT:C7560 Sweat Gland Adenoma 5 135916 -NCIT:C4168 Apocrine Adenoma 6 135917 -NCIT:C27527 Tubular Apocrine Adenoma 7 135918 -NCIT:C43342 Apocrine Hidrocystoma 7 135919 -NCIT:C6088 Ceruminous Adenoma 7 135920 -NCIT:C4172 Syringocystadenoma Papilliferum 6 135921 -NCIT:C43356 Syringofibroadenoma 6 135922 -NCIT:C7563 Hidradenoma 6 135923 -NCIT:C7567 Clear Cell Hidradenoma 7 135924 -NCIT:C7568 Nodular Hidradenoma 7 135925 -NCIT:C40312 Vulvar Nodular Hidradenoma 8 135926 -NCIT:C79951 Papillary Adenoma 4 135927 -NCIT:C3494 Lung Papillary Adenoma 5 135928 -NCIT:C3687 Renal Papillary Adenoma 5 135929 -NCIT:C46111 Thyroid Gland Follicular Adenoma with Papillary Hyperplasia 5 135930 -NCIT:C5849 Extrahepatic Bile Duct Papillary Adenoma 5 135931 -NCIT:C8383 Kidney Adenoma 4 135932 -NCIT:C27253 Metanephric Adenoma 5 135933 -NCIT:C3687 Renal Papillary Adenoma 5 135934 -NCIT:C9003 Adrenal Cortical Adenoma 4 135935 -NCIT:C190068 Childhood Adrenal Cortical Adenoma 5 135936 -NCIT:C4163 Adrenal Cortical Compact Cell Adenoma 5 135937 -NCIT:C4164 Pigmented Adrenal Cortical Adenoma 5 135938 -NCIT:C4165 Adrenal Cortical Clear Cell Adenoma 5 135939 -NCIT:C4166 Adrenal Cortical Glomerulosa Cell Adenoma 5 135940 -NCIT:C4167 Adrenal Cortical Mixed Cell Adenoma 5 135941 -NCIT:C48447 Adrenal Cortical Oncocytic Adenoma 5 135942 -NCIT:C48449 Cortisol-Producing Adrenal Cortical Adenoma 5 135943 -NCIT:C48451 Aldosterone-Producing Adrenal Cortical Adenoma 5 135944 -NCIT:C48452 Sex Hormone-Producing Adrenal Cortical Adenoma 5 135945 -NCIT:C48454 Androgen-Producing Adrenal Cortical Adenoma 6 135946 -NCIT:C48456 Estrogen-Producing Adrenal Cortical Adenoma 6 135947 -NCIT:C48458 Non-Functioning Adrenal Cortical Adenoma 5 135948 -NCIT:C2916 Carcinoma 3 135949 -NCIT:C148124 Unresectable Carcinoma 4 135950 -NCIT:C129827 Unresectable Transitional Cell Carcinoma 5 135951 -NCIT:C150521 Unresectable Urothelial Carcinoma 6 135952 -NCIT:C158585 Unresectable Urethral Urothelial Carcinoma 7 135953 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 7 135954 -NCIT:C164160 Unresectable Renal Pelvis and Ureter Urothelial Carcinoma 7 135955 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 8 135956 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 8 135957 -NCIT:C148125 Unresectable Thymic Carcinoma 5 135958 -NCIT:C150580 Unresectable Adrenal Cortical Carcinoma 5 135959 -NCIT:C153315 Metastatic Unresectable Carcinoma 5 135960 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 6 135961 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 7 135962 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 7 135963 -NCIT:C155698 Locally Advanced Unresectable Carcinoma 6 135964 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 7 135965 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 7 135966 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 7 135967 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 7 135968 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 8 135969 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 7 135970 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 8 135971 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 7 135972 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 7 135973 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 7 135974 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 7 135975 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 8 135976 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 8 135977 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 8 135978 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 8 135979 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 7 135980 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 8 135981 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 8 135982 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 7 135983 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 7 135984 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 7 135985 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 7 135986 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 7 135987 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 7 135988 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 7 135989 -NCIT:C156788 Metastatic Unresectable Basal Cell Carcinoma 6 135990 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 7 135991 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 6 135992 -NCIT:C155902 Unresectable Lung Carcinoma 5 135993 -NCIT:C155901 Unresectable Lung Non-Small Cell Carcinoma 6 135994 -NCIT:C162642 Unresectable Lung Non-Squamous Non-Small Cell Carcinoma 7 135995 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 8 135996 -NCIT:C171612 Unresectable Lung Non-Small Cell Squamous Carcinoma 7 135997 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 8 135998 -NCIT:C174510 Unresectable Lung Adenocarcinoma 7 135999 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 6 136000 -NCIT:C155903 Unresectable Digestive System Carcinoma 5 136001 -NCIT:C128563 Unresectable Esophageal Carcinoma 6 136002 -NCIT:C171608 Unresectable Esophageal Squamous Cell Carcinoma 7 136003 -NCIT:C173162 Unresectable Esophageal Adenocarcinoma 7 136004 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 136005 -NCIT:C172248 Unresectable Distal Esophagus Adenocarcinoma 8 136006 -NCIT:C129654 Unresectable Digestive System Adenocarcinoma 6 136007 -NCIT:C150578 Unresectable Gastroesophageal Junction Adenocarcinoma 7 136008 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 136009 -NCIT:C154221 Unresectable Gastric Adenocarcinoma 7 136010 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 136011 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 136012 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 136013 -NCIT:C162016 Unresectable Pancreatic Adenocarcinoma 7 136014 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 8 136015 -NCIT:C172245 Unresectable Pancreatic Ductal Adenocarcinoma 8 136016 -NCIT:C165171 Unresectable Liver and Intrahepatic Bile Duct Carcinoma 7 136017 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 8 136018 -NCIT:C27345 Unresectable Hepatocellular Carcinoma 8 136019 -NCIT:C162602 Unresectable Fibrolamellar Carcinoma 9 136020 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 9 136021 -NCIT:C7878 Localized Unresectable Adult Liver Carcinoma 8 136022 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 9 136023 -NCIT:C171585 Unresectable Colorectal Adenocarcinoma 7 136024 -NCIT:C162116 Unresectable Colon Adenocarcinoma 8 136025 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 136026 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 8 136027 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 136028 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 136029 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 136030 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 136031 -NCIT:C173162 Unresectable Esophageal Adenocarcinoma 7 136032 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 136033 -NCIT:C172248 Unresectable Distal Esophagus Adenocarcinoma 8 136034 -NCIT:C175516 Unresectable Small Intestinal Adenocarcinoma 7 136035 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 8 136036 -NCIT:C189064 Unresectable Gallbladder Adenocarcinoma 7 136037 -NCIT:C189065 Unresectable Ampulla of Vater Adenocarcinoma 7 136038 -NCIT:C27324 Unresectable Cholangiocarcinoma 7 136039 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 8 136040 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 8 136041 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 8 136042 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 8 136043 -NCIT:C155935 Unresectable Digestive System Neuroendocrine Carcinoma 6 136044 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 7 136045 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 7 136046 -NCIT:C159775 Unresectable Gastric Carcinoma 6 136047 -NCIT:C154221 Unresectable Gastric Adenocarcinoma 7 136048 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 136049 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 136050 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 136051 -NCIT:C162600 Unresectable Colorectal Carcinoma 6 136052 -NCIT:C171585 Unresectable Colorectal Adenocarcinoma 7 136053 -NCIT:C162116 Unresectable Colon Adenocarcinoma 8 136054 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 136055 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 8 136056 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 136057 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 136058 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 136059 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 136060 -NCIT:C180406 Unresectable Colon Carcinoma 7 136061 -NCIT:C162116 Unresectable Colon Adenocarcinoma 8 136062 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 136063 -NCIT:C165172 Unresectable Ampulla of Vater Carcinoma 6 136064 -NCIT:C189065 Unresectable Ampulla of Vater Adenocarcinoma 7 136065 -NCIT:C172808 Unresectable Digestive System Mixed Adenoneuroendocrine Carcinoma 6 136066 -NCIT:C173156 Unresectable Anal Squamous Cell Carcinoma 6 136067 -NCIT:C175384 Unresectable Anal Canal Squamous Cell Carcinoma 7 136068 -NCIT:C176042 Unresectable Biliary Tract Carcinoma 6 136069 -NCIT:C171322 Unresectable Bile Duct Carcinoma 7 136070 -NCIT:C27324 Unresectable Cholangiocarcinoma 8 136071 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 9 136072 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 9 136073 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 9 136074 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 9 136075 -NCIT:C7892 Unresectable Extrahepatic Bile Duct Carcinoma 8 136076 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 9 136077 -NCIT:C7890 Unresectable Gallbladder Carcinoma 7 136078 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 8 136079 -NCIT:C189064 Unresectable Gallbladder Adenocarcinoma 8 136080 -NCIT:C5018 Unresectable Pancreatic Carcinoma 6 136081 -NCIT:C162016 Unresectable Pancreatic Adenocarcinoma 7 136082 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 8 136083 -NCIT:C172245 Unresectable Pancreatic Ductal Adenocarcinoma 8 136084 -NCIT:C8638 Unresectable Small Intestinal Carcinoma 6 136085 -NCIT:C175516 Unresectable Small Intestinal Adenocarcinoma 7 136086 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 8 136087 -NCIT:C157324 Unresectable Skin Carcinoma 5 136088 -NCIT:C157320 Unresectable Skin Squamous Cell Carcinoma 6 136089 -NCIT:C157331 Unresectable Skin Basal Cell Carcinoma 6 136090 -NCIT:C162786 Unresectable Merkel Cell Carcinoma 6 136091 -NCIT:C157330 Unresectable Basal Cell Carcinoma 5 136092 -NCIT:C156788 Metastatic Unresectable Basal Cell Carcinoma 6 136093 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 7 136094 -NCIT:C157331 Unresectable Skin Basal Cell Carcinoma 6 136095 -NCIT:C158752 Unresectable Breast Carcinoma 5 136096 -NCIT:C158751 Unresectable Breast Inflammatory Carcinoma 6 136097 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 6 136098 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 7 136099 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 7 136100 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 7 136101 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 7 136102 -NCIT:C186284 Unresectable HER2-Positive Breast Carcinoma 6 136103 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 7 136104 -NCIT:C187160 Unresectable Hormone Receptor-Positive Breast Carcinoma 6 136105 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 7 136106 -NCIT:C187161 Unresectable HER2-Negative Breast Carcinoma 6 136107 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 7 136108 -NCIT:C190676 Unresectable Hormone Receptor-Negative Breast Carcinoma 6 136109 -NCIT:C165491 Unresectable Triple-Negative Breast Carcinoma 7 136110 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 8 136111 -NCIT:C160301 Unresectable NUT Carcinoma 5 136112 -NCIT:C164013 Unresectable Adenoid Cystic Carcinoma 5 136113 -NCIT:C165174 Unresectable Head and Neck Carcinoma 5 136114 -NCIT:C129784 Unresectable Thyroid Gland Carcinoma 6 136115 -NCIT:C163974 Unresectable Thyroid Gland Medullary Carcinoma 7 136116 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 8 136117 -NCIT:C168572 Unresectable Differentiated Thyroid Gland Carcinoma 7 136118 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 8 136119 -NCIT:C174571 Unresectable Thyroid Gland Follicular Carcinoma 8 136120 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 9 136121 -NCIT:C170833 Unresectable Thyroid Gland Anaplastic Carcinoma 7 136122 -NCIT:C174569 Unresectable Poorly Differentiated Thyroid Gland Carcinoma 7 136123 -NCIT:C136427 Unresectable Head and Neck Squamous Cell Carcinoma 6 136124 -NCIT:C162833 Unresectable Oropharyngeal Squamous Cell Carcinoma 7 136125 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 8 136126 -NCIT:C172644 Unresectable Oral Cavity Squamous Cell Carcinoma 7 136127 -NCIT:C172645 Unresectable Laryngeal Squamous Cell Carcinoma 7 136128 -NCIT:C172646 Unresectable Hypopharyngeal Squamous Cell Carcinoma 7 136129 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 7 136130 -NCIT:C172651 Unresectable Salivary Gland Squamous Cell Carcinoma 7 136131 -NCIT:C176513 Unresectable Sinonasal Squamous Cell Carcinoma 7 136132 -NCIT:C172648 Unresectable Paranasal Sinus Squamous Cell Carcinoma 8 136133 -NCIT:C176514 Unresectable Nasal Cavity Squamous Cell Carcinoma 8 136134 -NCIT:C165176 Unresectable Nasopharyngeal Carcinoma 6 136135 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 7 136136 -NCIT:C174034 Unresectable Salivary Gland Carcinoma 6 136137 -NCIT:C172651 Unresectable Salivary Gland Squamous Cell Carcinoma 7 136138 -NCIT:C170973 Unresectable Primary Peritoneal Carcinoma 5 136139 -NCIT:C170974 Unresectable Primary Peritoneal Adenocarcinoma 6 136140 -NCIT:C171020 Unresectable Primary Peritoneal Serous Adenocarcinoma 7 136141 -NCIT:C186275 Unresectable Primary Peritoneal High Grade Serous Adenocarcinoma 8 136142 -NCIT:C186276 Unresectable Primary Peritoneal Endometrioid Adenocarcinoma 7 136143 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 6 136144 -NCIT:C172806 Unresectable Neuroendocrine Carcinoma 5 136145 -NCIT:C155935 Unresectable Digestive System Neuroendocrine Carcinoma 6 136146 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 7 136147 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 7 136148 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 6 136149 -NCIT:C162786 Unresectable Merkel Cell Carcinoma 6 136150 -NCIT:C163974 Unresectable Thyroid Gland Medullary Carcinoma 6 136151 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 7 136152 -NCIT:C172810 Unresectable Large Cell Neuroendocrine Carcinoma 6 136153 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 7 136154 -NCIT:C191855 Unresectable Extrapulmonary Small Cell Neuroendocrine Carcinoma 6 136155 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 7 136156 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 7 136157 -NCIT:C190783 Unresectable Genitourinary System Carcinoma 5 136158 -NCIT:C150521 Unresectable Urothelial Carcinoma 6 136159 -NCIT:C158585 Unresectable Urethral Urothelial Carcinoma 7 136160 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 7 136161 -NCIT:C164160 Unresectable Renal Pelvis and Ureter Urothelial Carcinoma 7 136162 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 8 136163 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 8 136164 -NCIT:C167073 Unresectable Ovarian Carcinoma 6 136165 -NCIT:C160781 Unresectable Ovarian Serous Adenocarcinoma 7 136166 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 8 136167 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 136168 -NCIT:C172235 Unresectable Ovarian Undifferentiated Carcinoma 7 136169 -NCIT:C179459 Unresectable Platinum-Resistant Ovarian Carcinoma 7 136170 -NCIT:C183245 Unresectable Ovarian Mucinous Adenocarcinoma 7 136171 -NCIT:C186273 Unresectable Ovarian Endometrioid Adenocarcinoma 7 136172 -NCIT:C167075 Unresectable Bladder Carcinoma 6 136173 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 7 136174 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 7 136175 -NCIT:C170969 Unresectable Fallopian Tube Carcinoma 6 136176 -NCIT:C170970 Unresectable Fallopian Tube Adenocarcinoma 7 136177 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 8 136178 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 8 136179 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 7 136180 -NCIT:C171610 Unresectable Endometrial Carcinoma 6 136181 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 7 136182 -NCIT:C171611 Unresectable Prostate Carcinoma 6 136183 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 7 136184 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 8 136185 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 7 136186 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 7 136187 -NCIT:C174024 Unresectable Cervical Carcinoma 6 136188 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 7 136189 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 8 136190 -NCIT:C174025 Unresectable Cervical Squamous Cell Carcinoma 7 136191 -NCIT:C174027 Unresectable Cervical Adenosquamous Carcinoma 7 136192 -NCIT:C174029 Unresectable Cervical Adenocarcinoma 7 136193 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 8 136194 -NCIT:C174198 Unresectable Vulvar Carcinoma 6 136195 -NCIT:C174199 Unresectable Vulvar Squamous Cell Carcinoma 7 136196 -NCIT:C174565 Unresectable Kidney Carcinoma 6 136197 -NCIT:C154545 Unresectable Renal Cell Carcinoma 7 136198 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 8 136199 -NCIT:C165449 Unresectable Clear Cell Renal Cell Carcinoma 8 136200 -NCIT:C183251 Unresectable Sarcomatoid Renal Cell Carcinoma 8 136201 -NCIT:C190505 Unresectable Papillary Renal Cell Carcinoma 8 136202 -NCIT:C190508 Unresectable Unclassified Renal Cell Carcinoma 8 136203 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 7 136204 -NCIT:C174567 Unresectable Kidney Medullary Carcinoma 7 136205 -NCIT:C175434 Unresectable Vaginal Carcinoma 6 136206 -NCIT:C150604 Resectable Carcinoma 4 136207 -NCIT:C132012 Resectable Head and Neck Squamous Cell Carcinoma 5 136208 -NCIT:C162787 Resectable Oropharyngeal Squamous Cell Carcinoma 6 136209 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 7 136210 -NCIT:C162943 Resectable Cutaneous Squamous Cell Carcinoma of the Head and Neck 6 136211 -NCIT:C154547 Resectable Renal Cell Carcinoma 5 136212 -NCIT:C156909 Resectable Digestive System Carcinoma 5 136213 -NCIT:C156910 Resectable Bile Duct Adenocarcinoma 6 136214 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 7 136215 -NCIT:C27326 Resectable Cholangiocarcinoma 7 136216 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 8 136217 -NCIT:C162257 Resectable Colorectal Carcinoma 6 136218 -NCIT:C167237 Resectable Colon Carcinoma 7 136219 -NCIT:C165293 Resectable Liver and Intrahepatic Bile Duct Carcinoma 6 136220 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 7 136221 -NCIT:C7691 Resectable Hepatocellular Carcinoma 7 136222 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 8 136223 -NCIT:C7877 Localized Resectable Adult Liver Carcinoma 7 136224 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 8 136225 -NCIT:C5099 Resectable Pancreatic Carcinoma 6 136226 -NCIT:C156906 Resectable Pancreatic Adenocarcinoma 7 136227 -NCIT:C151995 Resectable Pancreatic Ductal Adenocarcinoma 8 136228 -NCIT:C156907 Resectable Pancreatic Acinar Cell Carcinoma 8 136229 -NCIT:C157350 Borderline Resectable Pancreatic Adenocarcinoma 8 136230 -NCIT:C157348 Borderline Resectable Pancreatic Carcinoma 7 136231 -NCIT:C157350 Borderline Resectable Pancreatic Adenocarcinoma 8 136232 -NCIT:C174566 Resectable Pancreatic Adenosquamous Carcinoma 7 136233 -NCIT:C8639 Resectable Small Intestinal Carcinoma 6 136234 -NCIT:C27323 Resectable Duodenal Carcinoma 7 136235 -NCIT:C169108 Resectable Periampullary Adenocarcinoma 8 136236 -NCIT:C8640 Resectable Extrahepatic Bile Duct Carcinoma 6 136237 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 7 136238 -NCIT:C157349 Borderline Resectable Carcinoma 5 136239 -NCIT:C157348 Borderline Resectable Pancreatic Carcinoma 6 136240 -NCIT:C157350 Borderline Resectable Pancreatic Adenocarcinoma 7 136241 -NCIT:C170465 Resectable Skin Carcinoma 5 136242 -NCIT:C170464 Resectable Skin Squamous Cell Carcinoma 6 136243 -NCIT:C162943 Resectable Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 136244 -NCIT:C170961 Resectable Carcinoma of Unknown Primary 5 136245 -NCIT:C170962 Resectable Adenocarcinoma of Unknown Primary 6 136246 -NCIT:C188032 Resectable Bladder Urothelial Carcinoma 5 136247 -NCIT:C188035 Resectable Breast Carcinoma 5 136248 -NCIT:C190952 Resectable Lung Carcinoma 5 136249 -NCIT:C165767 Resectable Lung Non-Small Cell Carcinoma 6 136250 -NCIT:C190954 Resectable Lung Adenocarcinoma 7 136251 -NCIT:C190953 Resectable Lung Squamous Cell Carcinoma 6 136252 -NCIT:C156767 Basal Cell Carcinoma 4 136253 -NCIT:C156769 Metastatic Basal Cell Carcinoma 5 136254 -NCIT:C156770 Locally Advanced Basal Cell Carcinoma 6 136255 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 7 136256 -NCIT:C156788 Metastatic Unresectable Basal Cell Carcinoma 6 136257 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 7 136258 -NCIT:C172362 Advanced Basal Cell Carcinoma 6 136259 -NCIT:C157330 Unresectable Basal Cell Carcinoma 5 136260 -NCIT:C156788 Metastatic Unresectable Basal Cell Carcinoma 6 136261 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 7 136262 -NCIT:C157331 Unresectable Skin Basal Cell Carcinoma 6 136263 -NCIT:C190776 Recurrent Basal Cell Carcinoma 5 136264 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 6 136265 -NCIT:C2921 Skin Basal Cell Carcinoma 5 136266 -NCIT:C157331 Unresectable Skin Basal Cell Carcinoma 6 136267 -NCIT:C181159 Eyelid Basal Cell Carcinoma 6 136268 -NCIT:C27182 Skin Sclerosing/Morphoeic Basal Cell Carcinoma 6 136269 -NCIT:C27535 Skin Adenoid Basal Cell Carcinoma 6 136270 -NCIT:C27536 Skin Clear Cell Basal Cell Carcinoma 6 136271 -NCIT:C27537 Skin Cystic Basal Cell Carcinoma 6 136272 -NCIT:C27539 Skin Infiltrating Basal Cell Carcinoma 6 136273 -NCIT:C27540 Skin Infundibulocystic Basal Cell Carcinoma 6 136274 -NCIT:C27541 Skin Micronodular Basal Cell Carcinoma 6 136275 -NCIT:C2922 Skin Basosquamous Cell Carcinoma 6 136276 -NCIT:C38109 Skin Basal Cell Carcinoma with Adnexal Differentiation 6 136277 -NCIT:C27538 Skin Follicular Basal Cell Carcinoma 7 136278 -NCIT:C4346 Skin Basal Cell Carcinoma with Sebaceous Differentiation 7 136279 -NCIT:C38110 Skin Signet Ring Cell Basal Cell Carcinoma 6 136280 -NCIT:C38111 Skin Basal Cell Carcinoma with Sarcomatoid Differentiation 6 136281 -NCIT:C39961 Penile Basal Cell Carcinoma 6 136282 -NCIT:C4109 Skin Fibroepithelial Basal Cell Carcinoma 6 136283 -NCIT:C54665 Skin Keratotic Basal Cell Carcinoma 6 136284 -NCIT:C6082 External Ear Basal Cell Carcinoma 6 136285 -NCIT:C62282 Skin Nodular Basal Cell Carcinoma 6 136286 -NCIT:C5568 Skin Nodulo-Ulcerative Basal Cell Carcinoma 7 136287 -NCIT:C5616 Skin Nodular Solid Basal Cell Carcinoma 7 136288 -NCIT:C62284 Superficial Basal Cell Carcinoma 6 136289 -NCIT:C4108 Superficial Multifocal Basal Cell Carcinoma 7 136290 -NCIT:C6381 Vulvar Basal Cell Carcinoma 6 136291 -NCIT:C6386 Scrotal Basal Cell Carcinoma 6 136292 -NCIT:C66903 Skin Metatypical Carcinoma 6 136293 -NCIT:C7473 Anal Margin Basal Cell Carcinoma 6 136294 -NCIT:C7585 Skin Adamantinoid Basal Cell Carcinoma 6 136295 -NCIT:C8014 Lip Basal Cell Carcinoma 6 136296 -NCIT:C5893 Stage 0 Lip Basal Cell Carcinoma AJCC v6 and v7 7 136297 -NCIT:C8197 Stage I Lip Basal Cell Carcinoma 7 136298 -NCIT:C8201 Stage II Lip Basal Cell Carcinoma 7 136299 -NCIT:C8205 Stage III Lip Basal Cell Carcinoma 7 136300 -NCIT:C8209 Stage IV Lip Basal Cell Carcinoma 7 136301 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 8 136302 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 8 136303 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 8 136304 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 7 136305 -NCIT:C9359 Skin Pigmented Basal Cell Carcinoma 6 136306 -NCIT:C3678 Salivary Gland Basal Cell Adenocarcinoma 5 136307 -NCIT:C39902 Prostate Basal Cell Carcinoma 5 136308 -NCIT:C164141 Genitourinary System Carcinoma 4 136309 -NCIT:C146893 Metastatic Genitourinary System Carcinoma 5 136310 -NCIT:C126109 Metastatic Urothelial Carcinoma 6 136311 -NCIT:C148493 Advanced Urothelial Carcinoma 7 136312 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 136313 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 136314 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 136315 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 136316 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 136317 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 7 136318 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 136319 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 136320 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 7 136321 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 136322 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 136323 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 136324 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 136325 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 136326 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 136327 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 136328 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 136329 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 136330 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 8 136331 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 7 136332 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 136333 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 136334 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 136335 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 136336 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 136337 -NCIT:C191692 Metastatic Clear Cell (Glycogen-Rich) Urothelial Carcinoma 7 136338 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 136339 -NCIT:C191693 Metastatic Giant Cell Urothelial Carcinoma 7 136340 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 136341 -NCIT:C191694 Metastatic Lipid-Rich Urothelial Carcinoma 7 136342 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 136343 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 7 136344 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 136345 -NCIT:C191696 Metastatic Nested Urothelial Carcinoma 7 136346 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 136347 -NCIT:C191697 Metastatic Plasmacytoid Urothelial Carcinoma 7 136348 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 136349 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 7 136350 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 136351 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 7 136352 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 8 136353 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 136354 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 136355 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 8 136356 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 136357 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 136358 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 136359 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 136360 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 136361 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 136362 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 136363 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 136364 -NCIT:C153387 Metastatic Cervical Carcinoma 6 136365 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 7 136366 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 136367 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 8 136368 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 7 136369 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 8 136370 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 136371 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 136372 -NCIT:C153390 Metastatic Cervical Adenosquamous Carcinoma 7 136373 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 8 136374 -NCIT:C156294 Advanced Cervical Carcinoma 7 136375 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 136376 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 136377 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 8 136378 -NCIT:C156295 Locally Advanced Cervical Carcinoma 7 136379 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 8 136380 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 136381 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 8 136382 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 136383 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 8 136384 -NCIT:C156062 Metastatic Bladder Carcinoma 6 136385 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 7 136386 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 136387 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 136388 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 136389 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 136390 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 136391 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 136392 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 136393 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 136394 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 136395 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 8 136396 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 7 136397 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 7 136398 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 7 136399 -NCIT:C167071 Locally Advanced Bladder Carcinoma 7 136400 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 136401 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 8 136402 -NCIT:C167338 Advanced Bladder Carcinoma 7 136403 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 136404 -NCIT:C190772 Metastatic Non-Muscle Invasive Bladder Carcinoma 7 136405 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 8 136406 -NCIT:C156063 Metastatic Fallopian Tube Carcinoma 6 136407 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 7 136408 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 8 136409 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 7 136410 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 7 136411 -NCIT:C156064 Metastatic Ovarian Carcinoma 6 136412 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 7 136413 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 136414 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 136415 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 136416 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 8 136417 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 136418 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 136419 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 8 136420 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 136421 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 136422 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 136423 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 136424 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 136425 -NCIT:C165458 Advanced Ovarian Carcinoma 7 136426 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 136427 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 136428 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 136429 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 136430 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 136431 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 8 136432 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 8 136433 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 7 136434 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 136435 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 136436 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 136437 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 8 136438 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 7 136439 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 136440 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 7 136441 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 136442 -NCIT:C172234 Metastatic Ovarian Undifferentiated Carcinoma 7 136443 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 7 136444 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 8 136445 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 8 136446 -NCIT:C180333 Metastatic Microsatellite Stable Ovarian Carcinoma 7 136447 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 8 136448 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 7 136449 -NCIT:C27391 Metastatic Ovarian Small Cell Carcinoma, Hypercalcemic Type 7 136450 -NCIT:C156065 Metastatic Vaginal Carcinoma 6 136451 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 7 136452 -NCIT:C170788 Advanced Vaginal Carcinoma 7 136453 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 136454 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 8 136455 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 136456 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 136457 -NCIT:C181028 Metastatic Vaginal Adenosquamous Carcinoma 7 136458 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 8 136459 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 7 136460 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 136461 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 136462 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 7 136463 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 136464 -NCIT:C156066 Metastatic Vulvar Carcinoma 6 136465 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 7 136466 -NCIT:C170786 Advanced Vulvar Carcinoma 7 136467 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 7 136468 -NCIT:C156068 Metastatic Endometrial Carcinoma 6 136469 -NCIT:C159676 Advanced Endometrial Carcinoma 7 136470 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 8 136471 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 136472 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 136473 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 8 136474 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 7 136475 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 8 136476 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 136477 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 8 136478 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 7 136479 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 7 136480 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 8 136481 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 7 136482 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 8 136483 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 136484 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 8 136485 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 136486 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 136487 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 8 136488 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 136489 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 136490 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 8 136491 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 136492 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 8 136493 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 8 136494 -NCIT:C164143 Advanced Genitourinary System Carcinoma 6 136495 -NCIT:C148493 Advanced Urothelial Carcinoma 7 136496 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 136497 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 136498 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 136499 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 136500 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 136501 -NCIT:C156284 Advanced Prostate Carcinoma 7 136502 -NCIT:C156286 Advanced Prostate Adenocarcinoma 8 136503 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 136504 -NCIT:C156294 Advanced Cervical Carcinoma 7 136505 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 136506 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 136507 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 8 136508 -NCIT:C159676 Advanced Endometrial Carcinoma 7 136509 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 8 136510 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 136511 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 136512 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 8 136513 -NCIT:C165458 Advanced Ovarian Carcinoma 7 136514 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 136515 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 136516 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 136517 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 136518 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 136519 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 8 136520 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 8 136521 -NCIT:C167338 Advanced Bladder Carcinoma 7 136522 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 136523 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 7 136524 -NCIT:C170786 Advanced Vulvar Carcinoma 7 136525 -NCIT:C170788 Advanced Vaginal Carcinoma 7 136526 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 136527 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 8 136528 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 136529 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 136530 -NCIT:C170790 Advanced Penile Carcinoma 7 136531 -NCIT:C172617 Advanced Kidney Carcinoma 7 136532 -NCIT:C153170 Advanced Renal Cell Carcinoma 8 136533 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 136534 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 136535 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 136536 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 136537 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 136538 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 8 136539 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 136540 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 8 136541 -NCIT:C167069 Locally Advanced Genitourinary System Carcinoma 6 136542 -NCIT:C156285 Locally Advanced Prostate Carcinoma 7 136543 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 8 136544 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 136545 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 8 136546 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 136547 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 136548 -NCIT:C156295 Locally Advanced Cervical Carcinoma 7 136549 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 8 136550 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 136551 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 8 136552 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 136553 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 8 136554 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 7 136555 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 136556 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 136557 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 136558 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 136559 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 136560 -NCIT:C167071 Locally Advanced Bladder Carcinoma 7 136561 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 136562 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 8 136563 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 7 136564 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 136565 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 136566 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 136567 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 8 136568 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 7 136569 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 8 136570 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 7 136571 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 8 136572 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 136573 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 8 136574 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 7 136575 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 7 136576 -NCIT:C170789 Locally Advanced Penile Carcinoma 7 136577 -NCIT:C172618 Locally Advanced Kidney Carcinoma 7 136578 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 8 136579 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 136580 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 136581 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 136582 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 136583 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 136584 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 136585 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 8 136586 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 136587 -NCIT:C185381 Metastatic Mesonephric Adenocarcinoma 6 136588 -NCIT:C27784 Metastatic Penile Carcinoma 6 136589 -NCIT:C170789 Locally Advanced Penile Carcinoma 7 136590 -NCIT:C170790 Advanced Penile Carcinoma 7 136591 -NCIT:C182111 Metastatic Squamous Cell Carcinoma of the Penis 7 136592 -NCIT:C27806 Metastatic Kidney Carcinoma 6 136593 -NCIT:C150595 Metastatic Renal Cell Carcinoma 7 136594 -NCIT:C153170 Advanced Renal Cell Carcinoma 8 136595 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 136596 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 136597 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 136598 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 136599 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 136600 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 8 136601 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 136602 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 136603 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 8 136604 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 136605 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 136606 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 8 136607 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 136608 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 136609 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 8 136610 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 136611 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 136612 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 136613 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 136614 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 136615 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 136616 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 8 136617 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 136618 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 136619 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 8 136620 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 136621 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 136622 -NCIT:C157755 Metastatic Kidney Medullary Carcinoma 7 136623 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 8 136624 -NCIT:C163965 Metastatic Renal Pelvis Carcinoma 7 136625 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 8 136626 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 136627 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 136628 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 8 136629 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 136630 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 8 136631 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 136632 -NCIT:C172617 Advanced Kidney Carcinoma 7 136633 -NCIT:C153170 Advanced Renal Cell Carcinoma 8 136634 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 136635 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 136636 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 136637 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 136638 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 136639 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 8 136640 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 136641 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 8 136642 -NCIT:C172618 Locally Advanced Kidney Carcinoma 7 136643 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 8 136644 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 136645 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 136646 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 136647 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 136648 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 136649 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 136650 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 8 136651 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 136652 -NCIT:C27818 Metastatic Ureter Carcinoma 6 136653 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 7 136654 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 8 136655 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 8 136656 -NCIT:C27819 Metastatic Urethral Carcinoma 6 136657 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 7 136658 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 136659 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 136660 -NCIT:C8946 Metastatic Prostate Carcinoma 6 136661 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 7 136662 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 8 136663 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 8 136664 -NCIT:C161609 Double-Negative Prostate Carcinoma 8 136665 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 8 136666 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 8 136667 -NCIT:C132881 Prostate Carcinoma Metastatic in the Soft Tissue 7 136668 -NCIT:C148536 Castration-Naive Prostate Carcinoma 7 136669 -NCIT:C153336 Castration-Sensitive Prostate Carcinoma 7 136670 -NCIT:C156284 Advanced Prostate Carcinoma 7 136671 -NCIT:C156286 Advanced Prostate Adenocarcinoma 8 136672 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 136673 -NCIT:C156285 Locally Advanced Prostate Carcinoma 7 136674 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 8 136675 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 136676 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 8 136677 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 136678 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 136679 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 7 136680 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 136681 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 136682 -NCIT:C161584 Prostate Carcinoma Metastatic in the Pelvic Cavity 7 136683 -NCIT:C161587 Prostate Carcinoma Metastatic in the Lymph Nodes 7 136684 -NCIT:C171265 Oligometastatic Prostate Carcinoma 7 136685 -NCIT:C36307 Prostate Carcinoma Metastatic in the Lung 7 136686 -NCIT:C36308 Prostate Carcinoma Metastatic in the Bone 7 136687 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 7 136688 -NCIT:C156286 Advanced Prostate Adenocarcinoma 8 136689 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 136690 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 8 136691 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 136692 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 8 136693 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 136694 -NCIT:C181162 Female Reproductive System Carcinoma 5 136695 -NCIT:C3867 Fallopian Tube Carcinoma 6 136696 -NCIT:C115429 Recurrent Fallopian Tube Carcinoma 7 136697 -NCIT:C170750 Recurrent Platinum-Resistant Fallopian Tube Carcinoma 8 136698 -NCIT:C170755 Recurrent Fallopian Tube Undifferentiated Carcinoma 8 136699 -NCIT:C170757 Recurrent Fallopian Tube Transitional Cell Carcinoma 8 136700 -NCIT:C170766 Recurrent Fallopian Tube Adenocarcinoma 8 136701 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 9 136702 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 9 136703 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 9 136704 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 9 136705 -NCIT:C191395 Recurrent Platinum-Sensitive Fallopian Tube Carcinoma 8 136706 -NCIT:C139983 Fallopian Tube Cancer by AJCC v8 Stage 7 136707 -NCIT:C139984 Stage I Fallopian Tube Cancer AJCC v8 8 136708 -NCIT:C139985 Stage IA Fallopian Tube Cancer AJCC v8 9 136709 -NCIT:C139986 Stage IB Fallopian Tube Cancer AJCC v8 9 136710 -NCIT:C139987 Stage IC Fallopian Tube Cancer AJCC v8 9 136711 -NCIT:C139988 Stage II Fallopian Tube Cancer AJCC v8 8 136712 -NCIT:C139989 Stage IIA Fallopian Tube Cancer AJCC v8 9 136713 -NCIT:C139990 Stage IIB Fallopian Tube Cancer AJCC v8 9 136714 -NCIT:C139991 Stage III Fallopian Tube Cancer AJCC v8 8 136715 -NCIT:C139992 Stage IIIA Fallopian Tube Cancer AJCC v8 9 136716 -NCIT:C139993 Stage IIIA1 Fallopian Tube Cancer AJCC v8 10 136717 -NCIT:C139994 Stage IIIA2 Fallopian Tube Cancer AJCC v8 10 136718 -NCIT:C139995 Stage IIIB Fallopian Tube Cancer AJCC v8 9 136719 -NCIT:C139996 Stage IIIC Fallopian Tube Cancer AJCC v8 9 136720 -NCIT:C139997 Stage IV Fallopian Tube Cancer AJCC v8 8 136721 -NCIT:C139998 Stage IVA Fallopian Tube Cancer AJCC v8 9 136722 -NCIT:C139999 Stage IVB Fallopian Tube Cancer AJCC v8 9 136723 -NCIT:C152047 Refractory Fallopian Tube Carcinoma 7 136724 -NCIT:C157621 Platinum-Resistant Fallopian Tube Carcinoma 8 136725 -NCIT:C170750 Recurrent Platinum-Resistant Fallopian Tube Carcinoma 9 136726 -NCIT:C170971 Refractory Fallopian Tube Adenocarcinoma 8 136727 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 9 136728 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 9 136729 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 9 136730 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 9 136731 -NCIT:C178674 Refractory Fallopian Tube Transitional Cell Carcinoma 8 136732 -NCIT:C178675 Refractory Fallopian Tube Undifferentiated Carcinoma 8 136733 -NCIT:C178698 Platinum-Refractory Fallopian Tube Carcinoma 8 136734 -NCIT:C156063 Metastatic Fallopian Tube Carcinoma 7 136735 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 8 136736 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 9 136737 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 8 136738 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 8 136739 -NCIT:C160873 Platinum-Sensitive Fallopian Tube Carcinoma 7 136740 -NCIT:C191395 Recurrent Platinum-Sensitive Fallopian Tube Carcinoma 8 136741 -NCIT:C170969 Unresectable Fallopian Tube Carcinoma 7 136742 -NCIT:C170970 Unresectable Fallopian Tube Adenocarcinoma 8 136743 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 9 136744 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 9 136745 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 8 136746 -NCIT:C40104 Fallopian Tube Transitional Cell Carcinoma 7 136747 -NCIT:C170757 Recurrent Fallopian Tube Transitional Cell Carcinoma 8 136748 -NCIT:C178674 Refractory Fallopian Tube Transitional Cell Carcinoma 8 136749 -NCIT:C40455 Hereditary Fallopian Tube Carcinoma 7 136750 -NCIT:C6265 Fallopian Tube Adenocarcinoma 7 136751 -NCIT:C170766 Recurrent Fallopian Tube Adenocarcinoma 8 136752 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 9 136753 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 9 136754 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 9 136755 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 9 136756 -NCIT:C170970 Unresectable Fallopian Tube Adenocarcinoma 8 136757 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 9 136758 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 9 136759 -NCIT:C170971 Refractory Fallopian Tube Adenocarcinoma 8 136760 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 9 136761 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 9 136762 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 9 136763 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 9 136764 -NCIT:C40099 Fallopian Tube Serous Adenocarcinoma 8 136765 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 9 136766 -NCIT:C126456 Fallopian Tube High Grade Serous Adenocarcinoma 9 136767 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 10 136768 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 10 136769 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 10 136770 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 10 136771 -NCIT:C40103 Fallopian Tube Mucinous Adenocarcinoma 8 136772 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 9 136773 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 9 136774 -NCIT:C40105 Stage 0 Fallopian Tube Cancer AJCC v7 8 136775 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 9 136776 -NCIT:C6279 Fallopian Tube Endometrioid Adenocarcinoma 8 136777 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 9 136778 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 9 136779 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 9 136780 -NCIT:C6280 Fallopian Tube Clear Cell Adenocarcinoma 8 136781 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 9 136782 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 9 136783 -NCIT:C6278 Fallopian Tube Gestational Choriocarcinoma 7 136784 -NCIT:C6281 Fallopian Tube Undifferentiated Carcinoma 7 136785 -NCIT:C170755 Recurrent Fallopian Tube Undifferentiated Carcinoma 8 136786 -NCIT:C178675 Refractory Fallopian Tube Undifferentiated Carcinoma 8 136787 -NCIT:C6282 Fallopian Tube Squamous Cell Carcinoma 7 136788 -NCIT:C90499 Fallopian Tube Cancer by AJCC v6 Stage 7 136789 -NCIT:C8720 Stage I Fallopian Tube Cancer AJCC v6 and v7 8 136790 -NCIT:C6269 Stage IA Fallopian Tube Cancer AJCC v6 and v7 9 136791 -NCIT:C6270 Stage IB Fallopian Tube Cancer AJCC v6 and v7 9 136792 -NCIT:C6271 Stage IC Fallopian Tube Cancer AJCC v6 and v7 9 136793 -NCIT:C8721 Stage II Fallopian Tube Cancer AJCC v6 and v7 8 136794 -NCIT:C6272 Stage IIA Fallopian Tube Cancer AJCC v6 and v7 9 136795 -NCIT:C6276 Stage IIC Fallopian Tube Cancer AJCC v6 and v7 9 136796 -NCIT:C6277 Stage IIB Fallopian Tube Cancer AJCC v6 and v7 9 136797 -NCIT:C8722 Stage III Fallopian Tube Cancer AJCC v6 8 136798 -NCIT:C8963 Stage IV Fallopian Tube Cancer AJCC v6 and v7 8 136799 -NCIT:C91219 Fallopian Tube Cancer by AJCC v7 Stage 7 136800 -NCIT:C40105 Stage 0 Fallopian Tube Cancer AJCC v7 8 136801 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 9 136802 -NCIT:C8720 Stage I Fallopian Tube Cancer AJCC v6 and v7 8 136803 -NCIT:C6269 Stage IA Fallopian Tube Cancer AJCC v6 and v7 9 136804 -NCIT:C6270 Stage IB Fallopian Tube Cancer AJCC v6 and v7 9 136805 -NCIT:C6271 Stage IC Fallopian Tube Cancer AJCC v6 and v7 9 136806 -NCIT:C8721 Stage II Fallopian Tube Cancer AJCC v6 and v7 8 136807 -NCIT:C6272 Stage IIA Fallopian Tube Cancer AJCC v6 and v7 9 136808 -NCIT:C6276 Stage IIC Fallopian Tube Cancer AJCC v6 and v7 9 136809 -NCIT:C6277 Stage IIB Fallopian Tube Cancer AJCC v6 and v7 9 136810 -NCIT:C8963 Stage IV Fallopian Tube Cancer AJCC v6 and v7 8 136811 -NCIT:C89692 Stage III Fallopian Tube Cancer AJCC v7 8 136812 -NCIT:C6273 Stage IIIA Fallopian Tube Cancer AJCC v7 9 136813 -NCIT:C6274 Stage IIIB Fallopian Tube Cancer AJCC v7 9 136814 -NCIT:C6275 Stage IIIC Fallopian Tube Cancer AJCC v7 9 136815 -NCIT:C3917 Vaginal Carcinoma 6 136816 -NCIT:C128073 Vaginal Neuroendocrine Carcinoma 7 136817 -NCIT:C128075 Vaginal Large Cell Neuroendocrine Carcinoma 8 136818 -NCIT:C40263 Vaginal Small Cell Neuroendocrine Carcinoma 8 136819 -NCIT:C139657 Vaginal Cancer by AJCC v8 Stage 7 136820 -NCIT:C139658 Stage I Vaginal Cancer AJCC v8 8 136821 -NCIT:C139659 Stage IA Vaginal Cancer AJCC v8 9 136822 -NCIT:C139660 Stage IB Vaginal Cancer AJCC v8 9 136823 -NCIT:C139661 Stage II Vaginal Cancer AJCC v8 8 136824 -NCIT:C139662 Stage IIA Vaginal Cancer AJCC v8 9 136825 -NCIT:C139664 Stage IIB Vaginal Cancer AJCC v8 9 136826 -NCIT:C139665 Stage III Vaginal Cancer AJCC v8 8 136827 -NCIT:C139667 Stage IV Vaginal Cancer AJCC v8 8 136828 -NCIT:C139669 Stage IVA Vaginal Cancer AJCC v8 9 136829 -NCIT:C139670 Stage IVB Vaginal Cancer AJCC v8 9 136830 -NCIT:C156065 Metastatic Vaginal Carcinoma 7 136831 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 8 136832 -NCIT:C170788 Advanced Vaginal Carcinoma 8 136833 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 136834 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 136835 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 136836 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 136837 -NCIT:C181028 Metastatic Vaginal Adenosquamous Carcinoma 8 136838 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 136839 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 8 136840 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 136841 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 136842 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 8 136843 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 136844 -NCIT:C174509 Refractory Vaginal Carcinoma 7 136845 -NCIT:C185303 Refractory Vaginal Squamous Cell Carcinoma 8 136846 -NCIT:C175434 Unresectable Vaginal Carcinoma 7 136847 -NCIT:C180915 Vaginal Squamous Cell Carcinoma 7 136848 -NCIT:C128060 Vaginal Papillary Carcinoma 8 136849 -NCIT:C180917 Human Papillomavirus-Related Vaginal Squamous Cell Carcinoma 8 136850 -NCIT:C40248 Vaginal Warty Carcinoma 9 136851 -NCIT:C180919 Human Papillomavirus-Independent Vaginal Squamous Cell Carcinoma 8 136852 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 8 136853 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 136854 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 136855 -NCIT:C185302 Recurrent Vaginal Squamous Cell Carcinoma 8 136856 -NCIT:C185303 Refractory Vaginal Squamous Cell Carcinoma 8 136857 -NCIT:C40243 Vaginal Keratinizing Squamous Cell Carcinoma 8 136858 -NCIT:C40244 Vaginal Non-Keratinizing Squamous Cell Carcinoma 8 136859 -NCIT:C40245 Vaginal Basaloid Carcinoma 8 136860 -NCIT:C6325 Vaginal Verrucous Carcinoma 8 136861 -NCIT:C7736 Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 8 136862 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 136863 -NCIT:C40260 Vaginal Adenosquamous Carcinoma 7 136864 -NCIT:C181028 Metastatic Vaginal Adenosquamous Carcinoma 8 136865 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 136866 -NCIT:C40261 Vaginal Adenoid Cystic Carcinoma 7 136867 -NCIT:C40262 Vaginal Adenoid Basal Carcinoma 7 136868 -NCIT:C40264 Vaginal Undifferentiated Carcinoma 7 136869 -NCIT:C7860 Recurrent Vaginal Carcinoma 7 136870 -NCIT:C185302 Recurrent Vaginal Squamous Cell Carcinoma 8 136871 -NCIT:C7981 Vaginal Adenocarcinoma 7 136872 -NCIT:C180943 Human Papillomavirus-Related Vaginal Adenocarcinoma 8 136873 -NCIT:C180947 Vaginal Adenocarcinoma of Skene Gland Origin 8 136874 -NCIT:C40251 Vaginal Endometrioid Adenocarcinoma 8 136875 -NCIT:C40252 Vaginal Mucinous Adenocarcinoma 8 136876 -NCIT:C180945 Vaginal Mucinous Adenocarcinoma, Gastric-Type 9 136877 -NCIT:C180946 Vaginal Mucinous Adenocarcinoma, Intestinal-Type 9 136878 -NCIT:C40253 Vaginal Mesonephric Adenocarcinoma 8 136879 -NCIT:C7735 Vaginal Clear Cell Adenocarcinoma 8 136880 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 8 136881 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 136882 -NCIT:C90347 Vaginal Cancer by AJCC v6 Stage 7 136883 -NCIT:C7597 Stage IV Vaginal Cancer AJCC v6 and v7 8 136884 -NCIT:C7859 Stage IVA Vaginal Cancer AJCC v6 and v7 9 136885 -NCIT:C9355 Stage IVB Vaginal Cancer AJCC v6 and v7 9 136886 -NCIT:C7855 Stage 0 Vaginal Cancer AJCC v6 8 136887 -NCIT:C7856 Stage I Vaginal Cancer AJCC v6 and v7 8 136888 -NCIT:C7857 Stage II Vaginal Cancer AJCC v6 and v7 8 136889 -NCIT:C7858 Stage III Vaginal Cancer AJCC v6 and v7 8 136890 -NCIT:C91204 Vaginal Cancer by AJCC v7 Stage 7 136891 -NCIT:C7597 Stage IV Vaginal Cancer AJCC v6 and v7 8 136892 -NCIT:C7859 Stage IVA Vaginal Cancer AJCC v6 and v7 9 136893 -NCIT:C9355 Stage IVB Vaginal Cancer AJCC v6 and v7 9 136894 -NCIT:C7856 Stage I Vaginal Cancer AJCC v6 and v7 8 136895 -NCIT:C7857 Stage II Vaginal Cancer AJCC v6 and v7 8 136896 -NCIT:C7858 Stage III Vaginal Cancer AJCC v6 and v7 8 136897 -NCIT:C89476 Stage 0 Vaginal Cancer AJCC v7 8 136898 -NCIT:C4072 Mesonephric Adenocarcinoma 6 136899 -NCIT:C185381 Metastatic Mesonephric Adenocarcinoma 7 136900 -NCIT:C40253 Vaginal Mesonephric Adenocarcinoma 7 136901 -NCIT:C40254 Cervical Mesonephric Adenocarcinoma 7 136902 -NCIT:C4866 Vulvar Carcinoma 6 136903 -NCIT:C128243 Vulvar Neuroendocrine Carcinoma 7 136904 -NCIT:C128244 Vulvar Small Cell Neuroendocrine Carcinoma 8 136905 -NCIT:C40298 Bartholin Gland Small Cell Neuroendocrine Carcinoma 9 136906 -NCIT:C128245 Vulvar Large Cell Neuroendocrine Carcinoma 8 136907 -NCIT:C128247 Vulvar Merkel Cell Carcinoma 8 136908 -NCIT:C139618 Vulvar Cancer by AJCC v8 Stage 7 136909 -NCIT:C139619 Stage I Vulvar Cancer AJCC v8 8 136910 -NCIT:C139620 Stage IA Vulvar Cancer AJCC v8 9 136911 -NCIT:C139621 Stage IB Vulvar Cancer AJCC v8 9 136912 -NCIT:C139622 Stage II Vulvar Cancer AJCC v8 8 136913 -NCIT:C139623 Stage III Vulvar Cancer AJCC v8 8 136914 -NCIT:C139624 Stage IIIA Vulvar Cancer AJCC v8 9 136915 -NCIT:C139625 Stage IIIB Vulvar Cancer AJCC v8 9 136916 -NCIT:C139626 Stage IIIC Vulvar Cancer AJCC v8 9 136917 -NCIT:C139627 Stage IV Vulvar Cancer AJCC v8 8 136918 -NCIT:C139628 Stage IVA Vulvar Cancer AJCC v8 9 136919 -NCIT:C139630 Stage IVB Vulvar Cancer AJCC v8 9 136920 -NCIT:C156066 Metastatic Vulvar Carcinoma 7 136921 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 8 136922 -NCIT:C170786 Advanced Vulvar Carcinoma 8 136923 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 8 136924 -NCIT:C174198 Unresectable Vulvar Carcinoma 7 136925 -NCIT:C174199 Unresectable Vulvar Squamous Cell Carcinoma 8 136926 -NCIT:C174508 Refractory Vulvar Carcinoma 7 136927 -NCIT:C185304 Refractory Vulvar Squamous Cell Carcinoma 8 136928 -NCIT:C4052 Vulvar Squamous Cell Carcinoma 7 136929 -NCIT:C128167 Vulvar Keratoacanthoma 8 136930 -NCIT:C174199 Unresectable Vulvar Squamous Cell Carcinoma 8 136931 -NCIT:C174200 Recurrent Vulvar Squamous Cell Carcinoma 8 136932 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 8 136933 -NCIT:C181902 Vulvar Squamous Cell Carcinoma, Not Otherwise Specified 8 136934 -NCIT:C181903 Human Papillomavirus-Independent Vulvar Squamous Cell Carcinoma 8 136935 -NCIT:C185304 Refractory Vulvar Squamous Cell Carcinoma 8 136936 -NCIT:C27679 Human Papillomavirus-Related Vulvar Squamous Cell Carcinoma 8 136937 -NCIT:C40287 Vulvar Warty Carcinoma 9 136938 -NCIT:C40284 Vulvar Keratinizing Squamous Cell Carcinoma 8 136939 -NCIT:C40285 Vulvar Non-Keratinizing Squamous Cell Carcinoma 8 136940 -NCIT:C40286 Vulvar Basaloid Carcinoma 8 136941 -NCIT:C40289 Vulvar Squamous Cell Carcinoma with Tumor Giant Cells 8 136942 -NCIT:C40293 Bartholin Gland Squamous Cell Carcinoma 8 136943 -NCIT:C6383 Vulvar Verrucous Carcinoma 8 136944 -NCIT:C6380 Vulvar Adenocarcinoma 7 136945 -NCIT:C128162 Vulvar Adenocarcinoma of Mammary Gland Type 8 136946 -NCIT:C128164 Vulvar Adenocarcinoma of Sweat Gland Origin 8 136947 -NCIT:C4027 Vulvar Paget Disease 9 136948 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 9 136949 -NCIT:C40306 Vulvar Porocarcinoma 10 136950 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 9 136951 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 9 136952 -NCIT:C128166 Vulvar Adenocarcinoma, Intestinal-Type 8 136953 -NCIT:C40309 Vulvar Sebaceous Carcinoma 8 136954 -NCIT:C7719 Bartholin Gland Adenocarcinoma 8 136955 -NCIT:C6381 Vulvar Basal Cell Carcinoma 7 136956 -NCIT:C90345 Vulvar Cancer by AJCC v6 Stage 7 136957 -NCIT:C4522 Stage 0 Vulvar Cancer AJCC v6 8 136958 -NCIT:C7854 Stage I Vulvar Cancer AJCC v6 8 136959 -NCIT:C6328 Stage IA Vulvar Carcinoma AJCC v6 9 136960 -NCIT:C6329 Stage IB Vulvar Carcinoma AJCC v6 9 136961 -NCIT:C9051 Stage II Vulvar Cancer AJCC v6 8 136962 -NCIT:C9052 Stage III Vulvar Cancer AJCC v6 8 136963 -NCIT:C9053 Stage IV Vulvar Cancer AJCC v6 8 136964 -NCIT:C27247 Stage IVB Vulvar Cancer AJCC v6 and v7 9 136965 -NCIT:C6330 Stage IVA Vulvar Cancer AJCC v6 9 136966 -NCIT:C9054 Recurrent Vulvar Carcinoma 7 136967 -NCIT:C174200 Recurrent Vulvar Squamous Cell Carcinoma 8 136968 -NCIT:C9055 Bartholin Gland Carcinoma 7 136969 -NCIT:C40293 Bartholin Gland Squamous Cell Carcinoma 8 136970 -NCIT:C40295 Bartholin Gland Adenoid Cystic Carcinoma 8 136971 -NCIT:C40296 Bartholin Gland Adenosquamous Carcinoma 8 136972 -NCIT:C40297 Bartholin Gland Transitional Cell Carcinoma 8 136973 -NCIT:C40298 Bartholin Gland Small Cell Neuroendocrine Carcinoma 8 136974 -NCIT:C7719 Bartholin Gland Adenocarcinoma 8 136975 -NCIT:C91203 Vulvar Cancer by AJCC v7 Stage 7 136976 -NCIT:C89445 Stage 0 Vulvar Cancer AJCC v7 8 136977 -NCIT:C89447 Stage I Vulvar Cancer AJCC v7 8 136978 -NCIT:C89448 Stage IA Vulvar Cancer AJCC v7 9 136979 -NCIT:C89449 Stage IB Vulvar Cancer AJCC v7 9 136980 -NCIT:C89451 Stage II Vulvar Cancer AJCC v7 8 136981 -NCIT:C89452 Stage III Vulvar Cancer AJCC v7 8 136982 -NCIT:C87003 Stage IIIA Vulvar Cancer AJCC v7 9 136983 -NCIT:C87004 Stage IIIB Vulvar Cancer AJCC v7 9 136984 -NCIT:C87005 Stage IIIC Vulvar Cancer AJCC v7 9 136985 -NCIT:C89453 Stage IV Vulvar Cancer AJCC v7 8 136986 -NCIT:C27247 Stage IVB Vulvar Cancer AJCC v6 and v7 9 136987 -NCIT:C89454 Stage IVA Vulvar Cancer AJCC v7 9 136988 -NCIT:C9362 Clitoral Carcinoma 7 136989 -NCIT:C9363 Labia Majora Carcinoma 7 136990 -NCIT:C9364 Labia Minora Carcinoma 7 136991 -NCIT:C4908 Ovarian Carcinoma 6 136992 -NCIT:C128081 Ovarian Cancer by FIGO Stage 7 136993 -NCIT:C128082 FIGO Stage IC1 Ovarian Cancer 8 136994 -NCIT:C128083 FIGO Stage IC2 Ovarian Cancer 8 136995 -NCIT:C128084 FIGO Stage IC3 Ovarian Cancer 8 136996 -NCIT:C128085 FIGO Stage II Ovarian Cancer 8 136997 -NCIT:C5223 Stage IIA Ovarian Cancer AJCC V6 and v7 9 136998 -NCIT:C5224 Stage IIB Ovarian Cancer AJCC v6 and v7 9 136999 -NCIT:C128086 FIGO Stage III Ovarian Cancer 8 137000 -NCIT:C128087 FIGO Stage IIIA Ovarian Cancer 9 137001 -NCIT:C128088 FIGO Stage IIIA1 Ovarian Cancer 10 137002 -NCIT:C128089 FIGO Stage IIIA1(i) Ovarian Cancer 11 137003 -NCIT:C128090 FIGO Stage IIIA1(ii) Ovarian Cancer 11 137004 -NCIT:C128091 FIGO Stage IIIA2 Ovarian Cancer 10 137005 -NCIT:C128092 FIGO Stage IIIB Ovarian Cancer 9 137006 -NCIT:C128093 FIGO Stage IIIC Ovarian Cancer 9 137007 -NCIT:C128094 FIGO Stage IVA Ovarian Cancer 8 137008 -NCIT:C128095 FIGO Stage IVB Ovarian Cancer 8 137009 -NCIT:C7829 Stage I Ovarian Cancer AJCC v6 and v7 8 137010 -NCIT:C5220 Stage IA Ovarian Cancer AJCC v6 and v7 9 137011 -NCIT:C5221 Stage IB Ovarian Cancer AJCC v6 and v7 9 137012 -NCIT:C5222 Stage IC Ovarian Cancer AJCC v6 and v7 9 137013 -NCIT:C7832 Stage IV Ovarian Cancer AJCC v6 and v7 8 137014 -NCIT:C128106 Ovarian Cancer by AJCC v6 and v7 Stage 7 137015 -NCIT:C7829 Stage I Ovarian Cancer AJCC v6 and v7 8 137016 -NCIT:C5220 Stage IA Ovarian Cancer AJCC v6 and v7 9 137017 -NCIT:C5221 Stage IB Ovarian Cancer AJCC v6 and v7 9 137018 -NCIT:C5222 Stage IC Ovarian Cancer AJCC v6 and v7 9 137019 -NCIT:C7830 Stage II Ovarian Cancer AJCC v6 and v7 8 137020 -NCIT:C5223 Stage IIA Ovarian Cancer AJCC V6 and v7 9 137021 -NCIT:C5224 Stage IIB Ovarian Cancer AJCC v6 and v7 9 137022 -NCIT:C5225 Stage IIC Ovarian Cancer AJCC v6 and v7 9 137023 -NCIT:C7831 Stage III Ovarian Cancer AJCC v6 and v7 8 137024 -NCIT:C6258 Stage IIIA Ovarian Cancer AJCC v6 and v7 9 137025 -NCIT:C6259 Stage IIIB Ovarian Cancer AJCC v6 and v7 9 137026 -NCIT:C6260 Stage IIIC Ovarian Cancer AJCC v6 and v7 9 137027 -NCIT:C7832 Stage IV Ovarian Cancer AJCC v6 and v7 8 137028 -NCIT:C139963 Ovarian Cancer by AJCC v8 Stage 7 137029 -NCIT:C139964 Stage I Ovarian Cancer AJCC v8 8 137030 -NCIT:C139965 Stage IA Ovarian Cancer AJCC v8 9 137031 -NCIT:C139966 Stage IB Ovarian Cancer AJCC v8 9 137032 -NCIT:C139967 Stage IC Ovarian Cancer AJCC v8 9 137033 -NCIT:C139968 Stage II Ovarian Cancer AJCC v8 8 137034 -NCIT:C139969 Stage IIA Ovarian Cancer AJCC v8 9 137035 -NCIT:C139970 Stage IIB Ovarian Cancer AJCC v8 9 137036 -NCIT:C139971 Stage III Ovarian Cancer AJCC v8 8 137037 -NCIT:C139972 Stage IIIA Ovarian Cancer AJCC v8 9 137038 -NCIT:C139973 Stage IIIA1 Ovarian Cancer AJCC v8 10 137039 -NCIT:C139974 Stage IIIA2 Ovarian Cancer AJCC v8 10 137040 -NCIT:C139975 Stage IIIB Ovarian Cancer AJCC v8 9 137041 -NCIT:C139976 Stage IIIC Ovarian Cancer AJCC v8 9 137042 -NCIT:C139977 Stage IV Ovarian Cancer AJCC v8 8 137043 -NCIT:C139978 Stage IVA Ovarian Cancer AJCC v8 9 137044 -NCIT:C139979 Stage IVB Ovarian Cancer AJCC v8 9 137045 -NCIT:C150091 Refractory Ovarian Carcinoma 7 137046 -NCIT:C147561 Platinum-Resistant Ovarian Carcinoma 8 137047 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 9 137048 -NCIT:C179459 Unresectable Platinum-Resistant Ovarian Carcinoma 9 137049 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 9 137050 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 10 137051 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 10 137052 -NCIT:C170968 Refractory Ovarian Adenocarcinoma 8 137053 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 9 137054 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 9 137055 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 10 137056 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 10 137057 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 9 137058 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 9 137059 -NCIT:C178671 Refractory Ovarian Seromucinous Carcinoma 8 137060 -NCIT:C178682 Refractory Ovarian Transitional Cell Carcinoma 8 137061 -NCIT:C178683 Refractory Ovarian Undifferentiated Carcinoma 8 137062 -NCIT:C178700 Platinum-Refractory Ovarian Carcinoma 8 137063 -NCIT:C179207 Refractory Ovarian Squamous Cell Carcinoma 8 137064 -NCIT:C183126 Refractory Malignant Ovarian Brenner Tumor 8 137065 -NCIT:C156064 Metastatic Ovarian Carcinoma 7 137066 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 8 137067 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 137068 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 137069 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 137070 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 9 137071 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 137072 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 137073 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 9 137074 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 137075 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 137076 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 137077 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 137078 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 137079 -NCIT:C165458 Advanced Ovarian Carcinoma 8 137080 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 137081 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 137082 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 137083 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 137084 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 137085 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 137086 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 137087 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 8 137088 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 137089 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 137090 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 137091 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 137092 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 8 137093 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 137094 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 8 137095 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 137096 -NCIT:C172234 Metastatic Ovarian Undifferentiated Carcinoma 8 137097 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 8 137098 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 137099 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 137100 -NCIT:C180333 Metastatic Microsatellite Stable Ovarian Carcinoma 8 137101 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 137102 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 8 137103 -NCIT:C27391 Metastatic Ovarian Small Cell Carcinoma, Hypercalcemic Type 8 137104 -NCIT:C159902 Platinum-Sensitive Ovarian Carcinoma 7 137105 -NCIT:C188391 Recurrent Platinum-Sensitive Ovarian Carcinoma 8 137106 -NCIT:C167073 Unresectable Ovarian Carcinoma 7 137107 -NCIT:C160781 Unresectable Ovarian Serous Adenocarcinoma 8 137108 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 9 137109 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 137110 -NCIT:C172235 Unresectable Ovarian Undifferentiated Carcinoma 8 137111 -NCIT:C179459 Unresectable Platinum-Resistant Ovarian Carcinoma 8 137112 -NCIT:C183245 Unresectable Ovarian Mucinous Adenocarcinoma 8 137113 -NCIT:C186273 Unresectable Ovarian Endometrioid Adenocarcinoma 8 137114 -NCIT:C171032 Ovarian Neuroendocrine Carcinoma 7 137115 -NCIT:C40440 Ovarian Small Cell Carcinoma, Pulmonary-Type 8 137116 -NCIT:C5238 Ovarian Large Cell Neuroendocrine Carcinoma 8 137117 -NCIT:C179334 Ovarian Dedifferentiated Carcinoma 7 137118 -NCIT:C180332 Microsatellite Stable Ovarian Carcinoma 7 137119 -NCIT:C180333 Metastatic Microsatellite Stable Ovarian Carcinoma 8 137120 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 137121 -NCIT:C27390 Ovarian Small Cell Carcinoma 7 137122 -NCIT:C40439 Ovarian Small Cell Carcinoma, Hypercalcemic Type 8 137123 -NCIT:C189334 Childhood Ovarian Small Cell Carcinoma, Hypercalcemic Type 9 137124 -NCIT:C27391 Metastatic Ovarian Small Cell Carcinoma, Hypercalcemic Type 9 137125 -NCIT:C40440 Ovarian Small Cell Carcinoma, Pulmonary-Type 8 137126 -NCIT:C36102 Hereditary Ovarian Carcinoma 7 137127 -NCIT:C148024 BRCA-Associated Ovarian Carcinoma 8 137128 -NCIT:C148025 Recurrent BRCA- Associated Ovarian Carcinoma 9 137129 -NCIT:C40090 Ovarian Seromucinous Carcinoma 7 137130 -NCIT:C178669 Recurrent Ovarian Seromucinous Carcinoma 8 137131 -NCIT:C178671 Refractory Ovarian Seromucinous Carcinoma 8 137132 -NCIT:C40093 Ovarian Squamous Cell Carcinoma 7 137133 -NCIT:C179207 Refractory Ovarian Squamous Cell Carcinoma 8 137134 -NCIT:C4270 Malignant Ovarian Brenner Tumor 7 137135 -NCIT:C153818 Recurrent Malignant Ovarian Brenner Tumor 8 137136 -NCIT:C183126 Refractory Malignant Ovarian Brenner Tumor 8 137137 -NCIT:C4509 Ovarian Undifferentiated Carcinoma 7 137138 -NCIT:C170754 Recurrent Ovarian Undifferentiated Carcinoma 8 137139 -NCIT:C172234 Metastatic Ovarian Undifferentiated Carcinoma 8 137140 -NCIT:C172235 Unresectable Ovarian Undifferentiated Carcinoma 8 137141 -NCIT:C178683 Refractory Ovarian Undifferentiated Carcinoma 8 137142 -NCIT:C5240 Ovarian Transitional Cell Carcinoma 7 137143 -NCIT:C153819 Recurrent Ovarian Transitional Cell Carcinoma 8 137144 -NCIT:C178682 Refractory Ovarian Transitional Cell Carcinoma 8 137145 -NCIT:C7700 Ovarian Adenocarcinoma 7 137146 -NCIT:C153614 Recurrent Ovarian Adenocarcinoma 8 137147 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 9 137148 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 9 137149 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 10 137150 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 10 137151 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 10 137152 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 9 137153 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 9 137154 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 10 137155 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 9 137156 -NCIT:C170968 Refractory Ovarian Adenocarcinoma 8 137157 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 9 137158 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 9 137159 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 10 137160 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 10 137161 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 9 137162 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 9 137163 -NCIT:C179208 Ovarian Signet Ring Cell Carcinoma 8 137164 -NCIT:C179321 Ovarian Mesonephric-Like Adenocarcinoma 8 137165 -NCIT:C179339 Ovarian Mixed Cell Adenocarcinoma 8 137166 -NCIT:C40078 Ovarian Clear Cell Adenocarcinoma 8 137167 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 9 137168 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 9 137169 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 10 137170 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 9 137171 -NCIT:C7980 Ovarian Clear Cell Cystadenocarcinoma 9 137172 -NCIT:C5228 Ovarian Cystadenocarcinoma 8 137173 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 9 137174 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 10 137175 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 9 137176 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 9 137177 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 10 137178 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 11 137179 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 11 137180 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 10 137181 -NCIT:C7980 Ovarian Clear Cell Cystadenocarcinoma 9 137182 -NCIT:C5243 Ovarian Mucinous Adenocarcinoma 8 137183 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 9 137184 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 9 137185 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 9 137186 -NCIT:C183245 Unresectable Ovarian Mucinous Adenocarcinoma 9 137187 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 9 137188 -NCIT:C7550 Ovarian Serous Adenocarcinoma 8 137189 -NCIT:C105555 Ovarian High Grade Serous Adenocarcinoma 9 137190 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 10 137191 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 10 137192 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 10 137193 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 11 137194 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 10 137195 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 11 137196 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 11 137197 -NCIT:C105556 Ovarian Low Grade Serous Adenocarcinoma 9 137198 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 10 137199 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 10 137200 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 9 137201 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 10 137202 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 10 137203 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 10 137204 -NCIT:C160781 Unresectable Ovarian Serous Adenocarcinoma 9 137205 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 10 137206 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 11 137207 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 9 137208 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 10 137209 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 11 137210 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 11 137211 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 10 137212 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 11 137213 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 11 137214 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 10 137215 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 11 137216 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 11 137217 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 10 137218 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 11 137219 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 11 137220 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 9 137221 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 10 137222 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 10 137223 -NCIT:C6256 Ovarian Serous Surface Papillary Adenocarcinoma 9 137224 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 9 137225 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 10 137226 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 11 137227 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 11 137228 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 10 137229 -NCIT:C7979 Ovarian Endometrioid Adenocarcinoma 8 137230 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 9 137231 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 9 137232 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 9 137233 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 10 137234 -NCIT:C186273 Unresectable Ovarian Endometrioid Adenocarcinoma 9 137235 -NCIT:C40061 Ovarian Endometrioid Adenocarcinoma with Squamous Differentiation 9 137236 -NCIT:C7833 Recurrent Ovarian Carcinoma 7 137237 -NCIT:C148025 Recurrent BRCA- Associated Ovarian Carcinoma 8 137238 -NCIT:C153614 Recurrent Ovarian Adenocarcinoma 8 137239 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 9 137240 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 9 137241 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 10 137242 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 10 137243 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 10 137244 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 9 137245 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 9 137246 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 10 137247 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 9 137248 -NCIT:C153818 Recurrent Malignant Ovarian Brenner Tumor 8 137249 -NCIT:C153819 Recurrent Ovarian Transitional Cell Carcinoma 8 137250 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 8 137251 -NCIT:C170754 Recurrent Ovarian Undifferentiated Carcinoma 8 137252 -NCIT:C178669 Recurrent Ovarian Seromucinous Carcinoma 8 137253 -NCIT:C188391 Recurrent Platinum-Sensitive Ovarian Carcinoma 8 137254 -NCIT:C190201 Locally Recurrent Ovarian Carcinoma 8 137255 -NCIT:C7558 Endometrial Carcinoma 6 137256 -NCIT:C114656 Endometrial Adenosquamous Carcinoma 7 137257 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 8 137258 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 8 137259 -NCIT:C126769 Endometrial Dedifferentiated Carcinoma 7 137260 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 8 137261 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 8 137262 -NCIT:C150093 Refractory Endometrial Carcinoma 7 137263 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 8 137264 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 8 137265 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 8 137266 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 8 137267 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 9 137268 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 9 137269 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 9 137270 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 9 137271 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 9 137272 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 8 137273 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 8 137274 -NCIT:C150094 Recurrent Endometrial Carcinoma 7 137275 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 8 137276 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 8 137277 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 9 137278 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 9 137279 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 9 137280 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 9 137281 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 9 137282 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 8 137283 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 8 137284 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 8 137285 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 8 137286 -NCIT:C190200 Locally Recurrent Endometrial Carcinoma 8 137287 -NCIT:C156068 Metastatic Endometrial Carcinoma 7 137288 -NCIT:C159676 Advanced Endometrial Carcinoma 8 137289 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 137290 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 137291 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 137292 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 137293 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 8 137294 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 137295 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 137296 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 9 137297 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 8 137298 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 8 137299 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 137300 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 8 137301 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 9 137302 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 137303 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 137304 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 137305 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 137306 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 9 137307 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 137308 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 137309 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 137310 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 137311 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 9 137312 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 9 137313 -NCIT:C171033 Endometrial Neuroendocrine Carcinoma 7 137314 -NCIT:C126772 Endometrial Large Cell Neuroendocrine Carcinoma 8 137315 -NCIT:C40155 Endometrial Small Cell Neuroendocrine Carcinoma 8 137316 -NCIT:C171610 Unresectable Endometrial Carcinoma 7 137317 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 8 137318 -NCIT:C180335 Microsatellite Stable Endometrial Carcinoma 7 137319 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 8 137320 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 137321 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 8 137322 -NCIT:C190680 High Grade Endometrial Carcinoma 7 137323 -NCIT:C27838 Endometrial Serous Adenocarcinoma 8 137324 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 9 137325 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 9 137326 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 9 137327 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 137328 -NCIT:C187374 Platinum-Sensitive Endometrial Serous Adenocarcinoma 9 137329 -NCIT:C40148 High Grade Endometrial Endometrioid Adenocarcinoma 8 137330 -NCIT:C40156 Endometrial Undifferentiated Carcinoma 8 137331 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 9 137332 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 9 137333 -NCIT:C8028 Endometrial Clear Cell Adenocarcinoma 8 137334 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 9 137335 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 9 137336 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 9 137337 -NCIT:C40154 Endometrial Transitional Cell Carcinoma 7 137338 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 8 137339 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 8 137340 -NCIT:C7359 Endometrial Adenocarcinoma 7 137341 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 8 137342 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 9 137343 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 9 137344 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 9 137345 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 9 137346 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 9 137347 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 8 137348 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 9 137349 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 9 137350 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 9 137351 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 9 137352 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 9 137353 -NCIT:C179322 Endometrial Mesonephric-Like Adenocarcinoma 8 137354 -NCIT:C180536 Endometrial Mucinous Adenocarcinoma, Intestinal-Type 8 137355 -NCIT:C180537 Endometrial Mucinous Adenocarcinoma, Gastric-Type 8 137356 -NCIT:C39749 Type II Endometrial Adenocarcinoma 8 137357 -NCIT:C27838 Endometrial Serous Adenocarcinoma 9 137358 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 10 137359 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 10 137360 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 10 137361 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 11 137362 -NCIT:C187374 Platinum-Sensitive Endometrial Serous Adenocarcinoma 10 137363 -NCIT:C40152 Serous Endometrial Intraepithelial Carcinoma 9 137364 -NCIT:C8028 Endometrial Clear Cell Adenocarcinoma 9 137365 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 10 137366 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 10 137367 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 10 137368 -NCIT:C40145 Type I Endometrial Adenocarcinoma 8 137369 -NCIT:C40144 Endometrial Mucinous Adenocarcinoma 9 137370 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 10 137371 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 10 137372 -NCIT:C40149 FIGO Grade 1 Endometrial Mucinous Adenocarcinoma 10 137373 -NCIT:C40150 FIGO Grade 2 Endometrial Mucinous Adenocarcinoma 10 137374 -NCIT:C40151 FIGO Grade 3 Endometrial Mucinous Adenocarcinoma 10 137375 -NCIT:C6287 Endometrial Endometrioid Adenocarcinoma 9 137376 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 10 137377 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 10 137378 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 10 137379 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 11 137380 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 11 137381 -NCIT:C180510 Low Grade Endometrial Endometrioid Adenocarcinoma 10 137382 -NCIT:C40146 FIGO Grade 1 Endometrial Endometrioid Adenocarcinoma 11 137383 -NCIT:C40147 FIGO Grade 2 Endometrial Endometrioid Adenocarcinoma 11 137384 -NCIT:C180512 POLE-Ultramutated Endometrial Endometrioid Adenocarcinoma 10 137385 -NCIT:C180514 Mismatch Repair-Deficient Endometrial Endometrioid Adenocarcinoma 10 137386 -NCIT:C180515 p53-Mutant Endometrial Endometrioid Adenocarcinoma 10 137387 -NCIT:C180516 No Specific Molecular Profile Endometrial Endometrioid Adenocarcinoma 10 137388 -NCIT:C27839 Endometrial Endometrioid Adenocarcinoma, Secretory Variant 10 137389 -NCIT:C27843 Endometrial Endometrioid Adenocarcinoma with Clear Cell Change 10 137390 -NCIT:C27844 Endometrial Endometrioid Adenocarcinoma with a Poorly Differentiated Carcinomatous Component 10 137391 -NCIT:C27845 Endometrial Endometrioid Adenocarcinoma with an Undifferentiated Carcinomatous Component 10 137392 -NCIT:C27846 Villoglandular Endometrial Endometrioid Adenocarcinoma 10 137393 -NCIT:C27848 Endometrial Endometrioid Adenocarcinoma, Ciliated Variant 10 137394 -NCIT:C27849 Oxyphilic Endometrial Endometrioid Adenocarcinoma 10 137395 -NCIT:C27850 Endometrial Endometrioid Adenocarcinoma with Spindled Epithelial Cells 10 137396 -NCIT:C40148 High Grade Endometrial Endometrioid Adenocarcinoma 10 137397 -NCIT:C6290 Endometrial Endometrioid Adenocarcinoma, Variant with Squamous Differentiation 10 137398 -NCIT:C40153 Endometrial Mixed Cell Adenocarcinoma 8 137399 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 9 137400 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 9 137401 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 9 137402 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 8 137403 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 9 137404 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 137405 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 137406 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 137407 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 137408 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 9 137409 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 137410 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 137411 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 137412 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 137413 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 9 137414 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 9 137415 -NCIT:C8719 Endometrial Squamous Cell Carcinoma 7 137416 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 8 137417 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 8 137418 -NCIT:C9039 Cervical Carcinoma 6 137419 -NCIT:C128045 Cervical Neuroendocrine Carcinoma 7 137420 -NCIT:C40214 Cervical Large Cell Neuroendocrine Carcinoma 8 137421 -NCIT:C7982 Cervical Small Cell Neuroendocrine Carcinoma 8 137422 -NCIT:C139733 Cervical Cancer by AJCC v8 Stage 7 137423 -NCIT:C139734 Stage I Cervical Cancer AJCC v8 8 137424 -NCIT:C139735 Stage IA Cervical Cancer AJCC v8 9 137425 -NCIT:C139736 Stage IA1 Cervical Cancer AJCC v8 10 137426 -NCIT:C139737 Stage IA2 Cervical Cancer AJCC v8 10 137427 -NCIT:C139738 Stage IB Cervical Cancer AJCC v8 9 137428 -NCIT:C139739 Stage IB1 Cervical Cancer AJCC v8 10 137429 -NCIT:C139740 Stage IB2 Cervical Cancer AJCC v8 10 137430 -NCIT:C139743 Stage II Cervical Cancer AJCC v8 8 137431 -NCIT:C139744 Stage IIA Cervical Cancer AJCC v8 9 137432 -NCIT:C139745 Stage IIA1 Cervical Cancer AJCC v8 10 137433 -NCIT:C139746 Stage IIA2 Cervical Cancer AJCC v8 10 137434 -NCIT:C139748 Stage IIB Cervical Cancer AJCC v8 9 137435 -NCIT:C139749 Stage III Cervical Cancer AJCC v8 8 137436 -NCIT:C139750 Stage IIIA Cervical Cancer AJCC v8 9 137437 -NCIT:C139752 Stage IIIB Cervical Cancer AJCC v8 9 137438 -NCIT:C139753 Stage IV Cervical Cancer AJCC v8 8 137439 -NCIT:C139754 Stage IVA Cervical Cancer AJCC v8 9 137440 -NCIT:C139755 Stage IVB Cervical Cancer AJCC v8 9 137441 -NCIT:C153387 Metastatic Cervical Carcinoma 7 137442 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 8 137443 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 137444 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 137445 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 8 137446 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 137447 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 137448 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 137449 -NCIT:C153390 Metastatic Cervical Adenosquamous Carcinoma 8 137450 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 137451 -NCIT:C156294 Advanced Cervical Carcinoma 8 137452 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 137453 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 137454 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 137455 -NCIT:C156295 Locally Advanced Cervical Carcinoma 8 137456 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 137457 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 137458 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 9 137459 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 137460 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 137461 -NCIT:C162225 Cervical Cancer by FIGO Stage 2018 7 137462 -NCIT:C162226 Stage I Cervical Cancer FIGO 2018 8 137463 -NCIT:C162227 Stage IA Cervical Cancer FIGO 2018 9 137464 -NCIT:C162228 Stage IA1 Cervical Cancer FIGO 2018 10 137465 -NCIT:C162229 Stage IA2 Cervical Cancer FIGO 2018 10 137466 -NCIT:C162230 Stage IB Cervical Cancer FIGO 2018 9 137467 -NCIT:C162231 Stage IB1 Cervical Cancer FIGO 2018 10 137468 -NCIT:C162232 Stage IB2 Cervical Cancer FIGO 2018 10 137469 -NCIT:C162233 Stage IB3 Cervical Cancer FIGO 2018 10 137470 -NCIT:C162234 Stage II Cervical Cancer FIGO 2018 8 137471 -NCIT:C162235 Stage IIA Cervical Cancer FIGO 2018 9 137472 -NCIT:C162236 Stage IIA1 Cervical Cancer FIGO 2018 10 137473 -NCIT:C162237 Stage IIA2 Cervical Cancer FIGO 2018 10 137474 -NCIT:C162238 Stage IIB Cervical Cancer FIGO 2018 9 137475 -NCIT:C162239 Stage III Cervical Cancer FIGO 2018 8 137476 -NCIT:C162240 Stage IIIA Cervical Cancer FIGO 2018 9 137477 -NCIT:C162241 Stage IIIB Cervical Cancer FIGO 2018 9 137478 -NCIT:C162242 Stage IIIC Cervical Cancer FIGO 2018 9 137479 -NCIT:C162243 Stage IIIC1 Cervical Cancer FIGO 2018 10 137480 -NCIT:C162244 Stage IIIC2 Cervical Cancer FIGO 2018 10 137481 -NCIT:C162245 Stage IV Cervical Cancer FIGO 2018 8 137482 -NCIT:C162246 Stage IVA Cervical Cancer FIGO 2018 9 137483 -NCIT:C162247 Stage IVB Cervical Cancer FIGO 2018 9 137484 -NCIT:C170513 Refractory Cervical Carcinoma 7 137485 -NCIT:C181034 Refractory Cervical Squamous Cell Carcinoma 8 137486 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 9 137487 -NCIT:C181036 Refractory Cervical Adenocarcinoma 8 137488 -NCIT:C174024 Unresectable Cervical Carcinoma 7 137489 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 8 137490 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 137491 -NCIT:C174025 Unresectable Cervical Squamous Cell Carcinoma 8 137492 -NCIT:C174027 Unresectable Cervical Adenosquamous Carcinoma 8 137493 -NCIT:C174029 Unresectable Cervical Adenocarcinoma 8 137494 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 137495 -NCIT:C180878 Cervical Mucoepidermoid Carcinoma 7 137496 -NCIT:C181562 Cervical Cancer by AJCC v9 Stage 7 137497 -NCIT:C181564 Stage I Cervical Cancer AJCC v9 8 137498 -NCIT:C181565 Stage IA Cervical Cancer AJCC v9 9 137499 -NCIT:C181567 Stage IA1 Cervical Cancer AJCC v9 10 137500 -NCIT:C181568 Stage IA2 Cervical Cancer AJCC v9 10 137501 -NCIT:C181570 Stage IB Cervical Cancer AJCC v9 9 137502 -NCIT:C181571 Stage IB1 Cervical Cancer AJCC v9 10 137503 -NCIT:C181576 Stage IB2 Cervical Cancer AJCC v9 10 137504 -NCIT:C181579 Stage IB3 Cervical Cancer AJCC v9 10 137505 -NCIT:C181583 Stage II Cervical Cancer AJCC v9 8 137506 -NCIT:C181584 Stage IIA Cervical Cancer AJCC v9 9 137507 -NCIT:C181586 Stage IIA1 Cervical Cancer AJCC v9 10 137508 -NCIT:C181588 Stage IIA2 Cervical Cancer AJCC v9 10 137509 -NCIT:C181591 Stage IIB Cervical Cancer AJCC v9 9 137510 -NCIT:C181592 Stage III Cervical Cancer AJCC v9 8 137511 -NCIT:C181594 Stage IIIA Cervical Cancer AJCC v9 9 137512 -NCIT:C181595 Stage IIIB Cervical Cancer AJCC v9 9 137513 -NCIT:C181596 Stage IIIC Cervical Cancer AJCC v9 9 137514 -NCIT:C181597 Stage IIIC1 Cervical Cancer AJCC v9 10 137515 -NCIT:C181598 Stage IIIC2 Cervical Cancer AJCC v9 10 137516 -NCIT:C181599 Stage IV Cervical Cancer AJCC v9 8 137517 -NCIT:C181601 Stage IVA Cervical Cancer AJCC v9 9 137518 -NCIT:C181603 Stage IVB Cervical Cancer AJCC v9 9 137519 -NCIT:C186619 Cervical Cancer by FIGO Stage 2009 7 137520 -NCIT:C186620 Stage I Cervical Cancer FIGO 2009 8 137521 -NCIT:C186621 Stage IA Cervical Cancer FIGO 2009 9 137522 -NCIT:C186622 Stage IA1 Cervical Cancer FIGO 2009 10 137523 -NCIT:C186623 Stage IA2 Cervical Cancer FIGO 2009 10 137524 -NCIT:C186624 Stage IB Cervical Cancer FIGO 2009 9 137525 -NCIT:C186625 Stage IB1 Cervical Cancer FIGO 2009 10 137526 -NCIT:C186626 Stage IB2 Cervical Cancer FIGO 2009 10 137527 -NCIT:C186627 Stage II Cervical Cancer FIGO 2009 8 137528 -NCIT:C186628 Stage IIA Cervical Cancer FIGO 2009 9 137529 -NCIT:C186629 Stage IIA1 Cervical Cancer FIGO 2009 10 137530 -NCIT:C186630 Stage IIA2 Cervical Cancer FIGO 2009 10 137531 -NCIT:C186631 Stage IIB Cervical Cancer FIGO 2009 9 137532 -NCIT:C186632 Stage III Cervical Cancer FIGO 2009 8 137533 -NCIT:C186633 Stage IIIA Cervical Cancer FIGO 2009 9 137534 -NCIT:C186634 Stage IIIB Cervical Cancer FIGO 2009 9 137535 -NCIT:C186635 Stage IV Cervical Cancer FIGO 2009 8 137536 -NCIT:C186636 Stage IVA Cervical Cancer FIGO 2009 9 137537 -NCIT:C186637 Stage IVB Cervical Cancer FIGO 2009 9 137538 -NCIT:C27675 Human Papillomavirus-Related Cervical Carcinoma 7 137539 -NCIT:C27676 Human Papillomavirus-Related Cervical Squamous Cell Carcinoma 8 137540 -NCIT:C40192 Cervical Papillary Squamous Cell Carcinoma 9 137541 -NCIT:C40191 Cervical Warty Carcinoma 10 137542 -NCIT:C40194 Cervical Squamotransitional Carcinoma 10 137543 -NCIT:C27677 Human Papillomavirus-Related Cervical Adenocarcinoma 8 137544 -NCIT:C127907 Endocervical Adenocarcinoma, Usual-Type 9 137545 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 10 137546 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 10 137547 -NCIT:C40208 Cervical Villoglandular Adenocarcinoma 10 137548 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 9 137549 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 9 137550 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 9 137551 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 9 137552 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 9 137553 -NCIT:C40213 Cervical Adenoid Basal Carcinoma 7 137554 -NCIT:C4028 Cervical Squamous Cell Carcinoma 7 137555 -NCIT:C136649 Recurrent Cervical Squamous Cell Carcinoma 8 137556 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 8 137557 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 137558 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 137559 -NCIT:C174025 Unresectable Cervical Squamous Cell Carcinoma 8 137560 -NCIT:C180839 Cervical Squamous Cell Carcinoma, Not Otherwise Specified 8 137561 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 9 137562 -NCIT:C180841 Human Papillomavirus-Independent Cervical Squamous Cell Carcinoma 8 137563 -NCIT:C181034 Refractory Cervical Squamous Cell Carcinoma 8 137564 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 9 137565 -NCIT:C27676 Human Papillomavirus-Related Cervical Squamous Cell Carcinoma 8 137566 -NCIT:C40192 Cervical Papillary Squamous Cell Carcinoma 9 137567 -NCIT:C40191 Cervical Warty Carcinoma 10 137568 -NCIT:C40194 Cervical Squamotransitional Carcinoma 10 137569 -NCIT:C36094 Early Invasive Cervical Squamous Cell Carcinoma 8 137570 -NCIT:C40187 Cervical Keratinizing Squamous Cell Carcinoma 8 137571 -NCIT:C40188 Cervical Non-Keratinizing Squamous Cell Carcinoma 8 137572 -NCIT:C40189 Cervical Basaloid Carcinoma 8 137573 -NCIT:C40190 Cervical Verrucous Carcinoma 8 137574 -NCIT:C40193 Cervical Lymphoepithelioma-Like Carcinoma 8 137575 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 8 137576 -NCIT:C4029 Cervical Adenocarcinoma 7 137577 -NCIT:C127915 Cervical Adenocarcinoma Admixed with Neuroendocrine Carcinoma 8 137578 -NCIT:C136651 Recurrent Cervical Adenocarcinoma 8 137579 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 9 137580 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 8 137581 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 137582 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 137583 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 137584 -NCIT:C174029 Unresectable Cervical Adenocarcinoma 8 137585 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 137586 -NCIT:C180848 Human Papillomavirus-Independent Cervical Adenocarcinoma 8 137587 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 9 137588 -NCIT:C40201 Cervical Serous Adenocarcinoma 9 137589 -NCIT:C40206 Human Papillomavirus-Independent Cervical Adenocarcinoma, Gastric-Type 9 137590 -NCIT:C40254 Cervical Mesonephric Adenocarcinoma 9 137591 -NCIT:C6343 Cervical Endometrioid Adenocarcinoma 9 137592 -NCIT:C6344 Human Papillomavirus-Independent Cervical Adenocarcinoma, Clear Cell-Type 9 137593 -NCIT:C180870 Cervical Adenocarcinoma, Not Otherwise Specified 8 137594 -NCIT:C181036 Refractory Cervical Adenocarcinoma 8 137595 -NCIT:C27677 Human Papillomavirus-Related Cervical Adenocarcinoma 8 137596 -NCIT:C127907 Endocervical Adenocarcinoma, Usual-Type 9 137597 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 10 137598 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 10 137599 -NCIT:C40208 Cervical Villoglandular Adenocarcinoma 10 137600 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 9 137601 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 9 137602 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 9 137603 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 9 137604 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 9 137605 -NCIT:C36095 Cervical Mucinous Adenocarcinoma 8 137606 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 9 137607 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 9 137608 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 9 137609 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 9 137610 -NCIT:C40206 Human Papillomavirus-Independent Cervical Adenocarcinoma, Gastric-Type 9 137611 -NCIT:C36096 Early Invasive Cervical Adenocarcinoma 8 137612 -NCIT:C4520 Cervical Adenocarcinoma In Situ 8 137613 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 9 137614 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 9 137615 -NCIT:C4519 Cervical Adenosquamous Carcinoma 7 137616 -NCIT:C136650 Recurrent Cervical Adenosquamous Carcinoma 8 137617 -NCIT:C153390 Metastatic Cervical Adenosquamous Carcinoma 8 137618 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 137619 -NCIT:C174027 Unresectable Cervical Adenosquamous Carcinoma 8 137620 -NCIT:C40212 Cervical Poorly Differentiated Adenosquamous Carcinoma 8 137621 -NCIT:C6345 Cervical Undifferentiated Carcinoma 7 137622 -NCIT:C6346 Cervical Adenoid Cystic Carcinoma 7 137623 -NCIT:C7432 AIDS-Related Cervical Carcinoma 7 137624 -NCIT:C7453 Exocervical Carcinoma 7 137625 -NCIT:C7804 Recurrent Cervical Carcinoma 7 137626 -NCIT:C136649 Recurrent Cervical Squamous Cell Carcinoma 8 137627 -NCIT:C136650 Recurrent Cervical Adenosquamous Carcinoma 8 137628 -NCIT:C136651 Recurrent Cervical Adenocarcinoma 8 137629 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 9 137630 -NCIT:C8577 Invasive Cervical Carcinoma 7 137631 -NCIT:C90493 Cervical Cancer by AJCC v6 Stage 7 137632 -NCIT:C4000 Stage 0 Cervical Cancer AJCC v6 8 137633 -NCIT:C7803 Stage II Cervical Cancer AJCC v6 8 137634 -NCIT:C6319 Stage IIA Cervical Cancer AJCC v6 9 137635 -NCIT:C6320 Stage IIB Cervical Cancer AJCC v6 and v7 9 137636 -NCIT:C9204 Stage I Cervical Cancer AJCC v6 and v7 8 137637 -NCIT:C6313 Stage IA Cervical Cancer AJCC v6 and v7 9 137638 -NCIT:C6314 Stage IA1 Cervical Cancer AJCC v6 and v7 10 137639 -NCIT:C6315 Stage IA2 Cervical Cancer AJCC v6 and v7 10 137640 -NCIT:C6316 Stage IB Cervical Cancer AJCC v6 and v7 9 137641 -NCIT:C6317 Stage IB1 Cervical Cancer AJCC v6 and v7 10 137642 -NCIT:C6318 Stage IB2 Cervical Cancer AJCC v6 and v7 10 137643 -NCIT:C9205 Stage III Cervical Cancer AJCC v6 and v7 8 137644 -NCIT:C6321 Stage IIIB Cervical Cancer AJCC v6 and v7 9 137645 -NCIT:C6322 Stage IIIA Cervical Cancer AJCC v6 and v7 9 137646 -NCIT:C9206 Stage IV Cervical Cancer AJCC v6 and v7 8 137647 -NCIT:C6323 Stage IVA Cervical Cancer AJCC v6 and v7 9 137648 -NCIT:C6324 Stage IVB Cervical Cancer AJCC v6 and v7 9 137649 -NCIT:C91208 Cervical Cancer by AJCC v7 Stage 7 137650 -NCIT:C89550 Stage 0 Cervical Cancer AJCC v7 8 137651 -NCIT:C4520 Cervical Adenocarcinoma In Situ 9 137652 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 10 137653 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 10 137654 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 9 137655 -NCIT:C89551 Stage II Cervical Cancer AJCC v7 8 137656 -NCIT:C6320 Stage IIB Cervical Cancer AJCC v6 and v7 9 137657 -NCIT:C89552 Stage IIA Cervical Cancer AJCC v7 9 137658 -NCIT:C95172 Stage IIA1 Cervical Cancer AJCC v7 10 137659 -NCIT:C95173 Stage IIA2 Cervical Cancer AJCC v7 10 137660 -NCIT:C9204 Stage I Cervical Cancer AJCC v6 and v7 8 137661 -NCIT:C6313 Stage IA Cervical Cancer AJCC v6 and v7 9 137662 -NCIT:C6314 Stage IA1 Cervical Cancer AJCC v6 and v7 10 137663 -NCIT:C6315 Stage IA2 Cervical Cancer AJCC v6 and v7 10 137664 -NCIT:C6316 Stage IB Cervical Cancer AJCC v6 and v7 9 137665 -NCIT:C6317 Stage IB1 Cervical Cancer AJCC v6 and v7 10 137666 -NCIT:C6318 Stage IB2 Cervical Cancer AJCC v6 and v7 10 137667 -NCIT:C9205 Stage III Cervical Cancer AJCC v6 and v7 8 137668 -NCIT:C6321 Stage IIIB Cervical Cancer AJCC v6 and v7 9 137669 -NCIT:C6322 Stage IIIA Cervical Cancer AJCC v6 and v7 9 137670 -NCIT:C9206 Stage IV Cervical Cancer AJCC v6 and v7 8 137671 -NCIT:C6323 Stage IVA Cervical Cancer AJCC v6 and v7 9 137672 -NCIT:C6324 Stage IVB Cervical Cancer AJCC v6 and v7 9 137673 -NCIT:C181196 Male Reproductive System Carcinoma 5 137674 -NCIT:C177149 Refractory Male Reproductive System Carcinoma 6 137675 -NCIT:C167255 Refractory Prostate Carcinoma 7 137676 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 8 137677 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 9 137678 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 9 137679 -NCIT:C161609 Double-Negative Prostate Carcinoma 9 137680 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 9 137681 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 9 137682 -NCIT:C167256 Refractory Prostate Adenocarcinoma 8 137683 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 8 137684 -NCIT:C177150 Refractory Penile Carcinoma 7 137685 -NCIT:C39906 Seminal Vesicle Adenocarcinoma 6 137686 -NCIT:C39957 Epididymal Adenocarcinoma 6 137687 -NCIT:C4863 Prostate Carcinoma 6 137688 -NCIT:C103817 Hereditary Prostate Carcinoma 7 137689 -NCIT:C114933 Hormone-Resistant Prostate Carcinoma 7 137690 -NCIT:C138167 Prostate Carcinoma by Gene Expression Profile 7 137691 -NCIT:C138168 Luminal A Prostate Carcinoma 8 137692 -NCIT:C138169 Luminal B Prostate Carcinoma 8 137693 -NCIT:C138170 Basal-Like Prostate Carcinoma 8 137694 -NCIT:C140163 Prostate Cancer by AJCC v8 Stage 7 137695 -NCIT:C140164 Stage I Prostate Cancer AJCC v8 8 137696 -NCIT:C140165 Stage II Prostate Cancer AJCC v8 8 137697 -NCIT:C140166 Stage IIA Prostate Cancer AJCC v8 9 137698 -NCIT:C140167 Stage IIB Prostate Cancer AJCC v8 9 137699 -NCIT:C140168 Stage IIC Prostate Cancer AJCC v8 9 137700 -NCIT:C140169 Stage III Prostate Cancer AJCC v8 8 137701 -NCIT:C140170 Stage IIIA Prostate Cancer AJCC v8 9 137702 -NCIT:C140171 Stage IIIB Prostate Cancer AJCC v8 9 137703 -NCIT:C140172 Stage IIIC Prostate Cancer AJCC v8 9 137704 -NCIT:C140173 Stage IV Prostate Cancer AJCC v8 8 137705 -NCIT:C140174 Stage IVA Prostate Cancer AJCC v8 9 137706 -NCIT:C140175 Stage IVB Prostate Cancer AJCC v8 9 137707 -NCIT:C161022 Intraductal Prostate Carcinoma 7 137708 -NCIT:C167255 Refractory Prostate Carcinoma 7 137709 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 8 137710 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 9 137711 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 9 137712 -NCIT:C161609 Double-Negative Prostate Carcinoma 9 137713 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 9 137714 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 9 137715 -NCIT:C167256 Refractory Prostate Adenocarcinoma 8 137716 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 8 137717 -NCIT:C171611 Unresectable Prostate Carcinoma 7 137718 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 8 137719 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 137720 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 8 137721 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 8 137722 -NCIT:C176517 Localized Prostate Carcinoma 7 137723 -NCIT:C39898 Primary Prostate Urothelial Carcinoma 7 137724 -NCIT:C39900 Prostatic Urethra Urothelial Carcinoma 8 137725 -NCIT:C39901 Prostatic Duct Urothelial Carcinoma 8 137726 -NCIT:C48596 Invasive Prostate Carcinoma 7 137727 -NCIT:C158912 Prostate Neuroendocrine Carcinoma 8 137728 -NCIT:C158650 Prostate Large Cell Neuroendocrine Carcinoma 9 137729 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 9 137730 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 10 137731 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 10 137732 -NCIT:C6766 Prostate Small Cell Neuroendocrine Carcinoma 9 137733 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 10 137734 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 10 137735 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 10 137736 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 10 137737 -NCIT:C2919 Prostate Adenocarcinoma 8 137738 -NCIT:C150557 Prostate Adenocarcinoma without Neuroendocrine Differentiation 9 137739 -NCIT:C164185 Aggressive Prostate Adenocarcinoma 9 137740 -NCIT:C164186 Prostate Adenocarcinoma by AJCC v7 Stage 9 137741 -NCIT:C8947 Stage I Prostate Adenocarcinoma AJCC v7 10 137742 -NCIT:C8948 Stage II Prostate Adenocarcinoma AJCC v7 10 137743 -NCIT:C8949 Stage III Prostate Adenocarcinoma AJCC v7 10 137744 -NCIT:C8950 Stage IV Prostate Adenocarcinoma AJCC v7 10 137745 -NCIT:C167256 Refractory Prostate Adenocarcinoma 9 137746 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 9 137747 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 10 137748 -NCIT:C27905 Well Differentiated Prostate Adenocarcinoma 9 137749 -NCIT:C39896 Prostate Ductal Adenocarcinoma, Papillary Pattern 10 137750 -NCIT:C27906 Moderately Differentiated Prostate Adenocarcinoma 9 137751 -NCIT:C27916 Poorly Differentiated Prostate Adenocarcinoma 9 137752 -NCIT:C5530 Prostate Acinar Adenocarcinoma, Sarcomatoid Variant 10 137753 -NCIT:C39903 Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 137754 -NCIT:C158656 Usual Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 137755 -NCIT:C158664 Prostate Adenocarcinoma with Paneth Cell-Like Neuroendocrine Differentiation 10 137756 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 137757 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 137758 -NCIT:C5596 Prostate Acinar Adenocarcinoma 9 137759 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 10 137760 -NCIT:C158656 Usual Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 137761 -NCIT:C160817 Prostate Acinar Adenocarcinoma, Microcystic Variant 10 137762 -NCIT:C160818 Prostate Acinar Adenocarcinoma, Pleomorphic Giant Cell Variant 10 137763 -NCIT:C39880 Prostate Acinar Adenocarcinoma, Atrophic Variant 10 137764 -NCIT:C39881 Prostate Acinar Adenocarcinoma, Pseudohyperplastic Variant 10 137765 -NCIT:C39882 Prostate Acinar Adenocarcinoma, Foamy Gland Variant 10 137766 -NCIT:C39884 Prostate Acinar Adenocarcinoma, Oncocytic Variant 10 137767 -NCIT:C39885 Prostate Acinar Adenocarcinoma, Lymphoepithelioma-Like Variant 10 137768 -NCIT:C5530 Prostate Acinar Adenocarcinoma, Sarcomatoid Variant 10 137769 -NCIT:C5535 Prostate Acinar Adenocarcinoma, Signet Ring-Like Cell Variant 10 137770 -NCIT:C5537 Prostate Acinar Mucinous Adenocarcinoma 10 137771 -NCIT:C6813 Prostate Ductal Adenocarcinoma 9 137772 -NCIT:C39895 Prostate Ductal Adenocarcinoma, Cribriform Pattern 10 137773 -NCIT:C39896 Prostate Ductal Adenocarcinoma, Papillary Pattern 10 137774 -NCIT:C39897 Prostate Ductal Adenocarcinoma, Solid Pattern 10 137775 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 9 137776 -NCIT:C156286 Advanced Prostate Adenocarcinoma 10 137777 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 137778 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 10 137779 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 11 137780 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 137781 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 137782 -NCIT:C39902 Prostate Basal Cell Carcinoma 8 137783 -NCIT:C5536 Prostate Squamous Cell Carcinoma 8 137784 -NCIT:C5538 Prostate Adenosquamous Carcinoma 8 137785 -NCIT:C5539 Prostate Adenoid Cystic Carcinoma 8 137786 -NCIT:C5597 Prostate Undifferentiated Carcinoma 8 137787 -NCIT:C7079 Prostate Cancer by Whitmore-Jewett Stage 7 137788 -NCIT:C7099 Stage D Prostate Cancer 8 137789 -NCIT:C7552 Stage C Prostate Cancer 8 137790 -NCIT:C7554 Stage B Prostate Cancer 8 137791 -NCIT:C7556 Stage A Prostate Cancer 8 137792 -NCIT:C7902 Recurrent Prostate Carcinoma 7 137793 -NCIT:C156771 Biochemically Recurrent Prostate Carcinoma 8 137794 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 8 137795 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 9 137796 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 8 137797 -NCIT:C8946 Metastatic Prostate Carcinoma 7 137798 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 8 137799 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 9 137800 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 9 137801 -NCIT:C161609 Double-Negative Prostate Carcinoma 9 137802 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 9 137803 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 9 137804 -NCIT:C132881 Prostate Carcinoma Metastatic in the Soft Tissue 8 137805 -NCIT:C148536 Castration-Naive Prostate Carcinoma 8 137806 -NCIT:C153336 Castration-Sensitive Prostate Carcinoma 8 137807 -NCIT:C156284 Advanced Prostate Carcinoma 8 137808 -NCIT:C156286 Advanced Prostate Adenocarcinoma 9 137809 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 137810 -NCIT:C156285 Locally Advanced Prostate Carcinoma 8 137811 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 9 137812 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 137813 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 9 137814 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 137815 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 9 137816 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 8 137817 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 9 137818 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 9 137819 -NCIT:C161584 Prostate Carcinoma Metastatic in the Pelvic Cavity 8 137820 -NCIT:C161587 Prostate Carcinoma Metastatic in the Lymph Nodes 8 137821 -NCIT:C171265 Oligometastatic Prostate Carcinoma 8 137822 -NCIT:C36307 Prostate Carcinoma Metastatic in the Lung 8 137823 -NCIT:C36308 Prostate Carcinoma Metastatic in the Bone 8 137824 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 8 137825 -NCIT:C156286 Advanced Prostate Adenocarcinoma 9 137826 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 137827 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 9 137828 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 137829 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 137830 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 137831 -NCIT:C90521 Prostate Cancer by AJCC v6 Stage 7 137832 -NCIT:C7551 Stage III Prostate Cancer AJCC v6 8 137833 -NCIT:C7553 Stage II Prostate Cancer AJCC v6 8 137834 -NCIT:C7555 Stage I Prostate Cancer AJCC v6 8 137835 -NCIT:C9075 Stage IV Prostate Cancer AJCC v6 8 137836 -NCIT:C91233 Prostate Cancer by AJCC v7 Stage 7 137837 -NCIT:C164186 Prostate Adenocarcinoma by AJCC v7 Stage 8 137838 -NCIT:C8947 Stage I Prostate Adenocarcinoma AJCC v7 9 137839 -NCIT:C8948 Stage II Prostate Adenocarcinoma AJCC v7 9 137840 -NCIT:C8949 Stage III Prostate Adenocarcinoma AJCC v7 9 137841 -NCIT:C8950 Stage IV Prostate Adenocarcinoma AJCC v7 9 137842 -NCIT:C89232 Stage I Prostate Cancer AJCC v7 8 137843 -NCIT:C8947 Stage I Prostate Adenocarcinoma AJCC v7 9 137844 -NCIT:C89233 Stage II Prostate Cancer AJCC v7 8 137845 -NCIT:C88106 Stage IIA Prostate Cancer AJCC v7 9 137846 -NCIT:C88107 Stage IIB Prostate Cancer AJCC v7 9 137847 -NCIT:C8948 Stage II Prostate Adenocarcinoma AJCC v7 9 137848 -NCIT:C89234 Stage III Prostate Cancer AJCC v7 8 137849 -NCIT:C8949 Stage III Prostate Adenocarcinoma AJCC v7 9 137850 -NCIT:C89235 Stage IV Prostate Cancer AJCC v7 8 137851 -NCIT:C8950 Stage IV Prostate Adenocarcinoma AJCC v7 9 137852 -NCIT:C7621 Recurrent Male Reproductive System Carcinoma 6 137853 -NCIT:C7870 Recurrent Penile Carcinoma 7 137854 -NCIT:C7902 Recurrent Prostate Carcinoma 7 137855 -NCIT:C156771 Biochemically Recurrent Prostate Carcinoma 8 137856 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 8 137857 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 9 137858 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 8 137859 -NCIT:C8955 Rete Testis Adenocarcinoma 6 137860 -NCIT:C9061 Penile Carcinoma 6 137861 -NCIT:C118820 Adult Penile Carcinoma 7 137862 -NCIT:C140075 Penile Cancer by AJCC v8 Stage 7 137863 -NCIT:C140076 Stage 0 Penile Cancer AJCC v8 8 137864 -NCIT:C140077 Stage 0is Penile Cancer AJCC v8 9 137865 -NCIT:C140078 Stage 0a Penile Cancer AJCC v8 9 137866 -NCIT:C140079 Stage I Penile Cancer AJCC v8 8 137867 -NCIT:C140080 Stage II Penile Cancer AJCC v8 8 137868 -NCIT:C140081 Stage IIA Penile Cancer AJCC v8 9 137869 -NCIT:C140083 Stage IIB Penile Cancer AJCC v8 9 137870 -NCIT:C140084 Stage III Penile Cancer AJCC v8 8 137871 -NCIT:C140085 Stage IIIA Penile Cancer AJCC v8 9 137872 -NCIT:C140086 Stage IIIB Penile Cancer AJCC v8 9 137873 -NCIT:C140087 Stage IV Penile Cancer AJCC v8 8 137874 -NCIT:C177150 Refractory Penile Carcinoma 7 137875 -NCIT:C27784 Metastatic Penile Carcinoma 7 137876 -NCIT:C170789 Locally Advanced Penile Carcinoma 8 137877 -NCIT:C170790 Advanced Penile Carcinoma 8 137878 -NCIT:C182111 Metastatic Squamous Cell Carcinoma of the Penis 8 137879 -NCIT:C27817 Penile Paget Disease 7 137880 -NCIT:C39961 Penile Basal Cell Carcinoma 7 137881 -NCIT:C7729 Squamous Cell Carcinoma of the Penis 7 137882 -NCIT:C159244 Non-Human Papillomavirus-Related Squamous Cell Carcinoma of the Penis 8 137883 -NCIT:C103340 Papillary Carcinoma of the Penis, Not Otherwise Specified 9 137884 -NCIT:C159245 Pseudohyperplastic Carcinoma of the Penis 9 137885 -NCIT:C159246 Pseudoglandular Carcinoma of the Penis 9 137886 -NCIT:C159248 Adenosquamous Carcinoma of the Penis 9 137887 -NCIT:C39959 Mixed Squamous Cell Carcinoma of the Penis 9 137888 -NCIT:C6979 Squamous Cell Carcinoma of the Penis, Usual Type 9 137889 -NCIT:C6982 Verrucous Carcinoma of the Penis 9 137890 -NCIT:C159247 Carcinoma Cuniculatum of the Penis 10 137891 -NCIT:C6984 Sarcomatoid Carcinoma of the Penis 9 137892 -NCIT:C182111 Metastatic Squamous Cell Carcinoma of the Penis 8 137893 -NCIT:C27682 Human Papillomavirus-Related Squamous Cell Carcinoma of the Penis 8 137894 -NCIT:C159250 Warty-Basaloid Carcinoma of the Penis 9 137895 -NCIT:C159251 Clear Cell Squamous Cell Carcinoma of the Penis 9 137896 -NCIT:C159252 Lymphoepithelioma-Like Carcinoma of the Penis 9 137897 -NCIT:C6980 Basaloid Squamous Cell Carcinoma of the Penis 9 137898 -NCIT:C159249 Papillary-Basaloid Carcinoma of the Penis 10 137899 -NCIT:C6981 Warty Carcinoma of the Penis 9 137900 -NCIT:C27790 Penile Carcinoma In Situ 8 137901 -NCIT:C6983 Papillary Carcinoma of the Penis 8 137902 -NCIT:C103340 Papillary Carcinoma of the Penis, Not Otherwise Specified 9 137903 -NCIT:C159249 Papillary-Basaloid Carcinoma of the Penis 9 137904 -NCIT:C6981 Warty Carcinoma of the Penis 9 137905 -NCIT:C6982 Verrucous Carcinoma of the Penis 9 137906 -NCIT:C159247 Carcinoma Cuniculatum of the Penis 10 137907 -NCIT:C7870 Recurrent Penile Carcinoma 7 137908 -NCIT:C90520 Penile Cancer by AJCC v6 Stage 7 137909 -NCIT:C3643 Stage 0 Penile Cancer AJCC v6 8 137910 -NCIT:C7867 Stage I Penile Cancer AJCC v6 8 137911 -NCIT:C7868 Stage II Penile Cancer AJCC v6 8 137912 -NCIT:C7869 Stage III Penile Cancer AJCC v6 8 137913 -NCIT:C8959 Stage IV Penile Cancer AJCC v6 8 137914 -NCIT:C91234 Penile Cancer by AJCC v7 Stage 7 137915 -NCIT:C89194 Stage 0 Penile Cancer AJCC v7 8 137916 -NCIT:C27790 Penile Carcinoma In Situ 9 137917 -NCIT:C89195 Stage I Penile Cancer AJCC v7 8 137918 -NCIT:C89196 Stage II Penile Cancer AJCC v7 8 137919 -NCIT:C89197 Stage III Penile Cancer AJCC v7 8 137920 -NCIT:C88104 Stage IIIa Penile Cancer AJCC v7 9 137921 -NCIT:C88105 Stage IIIb Penile Cancer AJCC v7 9 137922 -NCIT:C89198 Stage IV Penile Cancer AJCC v7 8 137923 -NCIT:C181197 Urinary System Carcinoma 5 137924 -NCIT:C162719 Refractory Urinary System Carcinoma 6 137925 -NCIT:C150316 Refractory Bladder Carcinoma 7 137926 -NCIT:C148286 Refractory Stage 0 Bladder Cancer AJCC v6 and v7 8 137927 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 8 137928 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 137929 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 8 137930 -NCIT:C150364 Refractory Urothelial Carcinoma 7 137931 -NCIT:C150365 Platinum-Resistant Urothelial Carcinoma 8 137932 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 8 137933 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 137934 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 8 137935 -NCIT:C176996 Refractory Urethral Urothelial Carcinoma 8 137936 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 8 137937 -NCIT:C172623 Refractory Kidney Carcinoma 7 137938 -NCIT:C162727 Refractory Kidney Medullary Carcinoma 8 137939 -NCIT:C165745 Refractory Renal Cell Carcinoma 8 137940 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 9 137941 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 8 137942 -NCIT:C191749 Squamous Cell Carcinoma of the Urinary Tract 6 137943 -NCIT:C4031 Bladder Squamous Cell Carcinoma 7 137944 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 8 137945 -NCIT:C27768 Schistosoma Hematobium-Related Bladder Squamous Cell Carcinoma 8 137946 -NCIT:C39833 Schistosoma Hematobium-Related Bladder Verrucous Carcinoma 9 137947 -NCIT:C39832 Bladder Verrucous Carcinoma 8 137948 -NCIT:C39833 Schistosoma Hematobium-Related Bladder Verrucous Carcinoma 9 137949 -NCIT:C39845 Urachal Squamous Cell Carcinoma 8 137950 -NCIT:C4994 Stage II Bladder Squamous Cell Carcinoma AJCC v6 and v7 8 137951 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 8 137952 -NCIT:C8903 Stage 0 Bladder Squamous Cell Carcinoma AJCC v6 and v7 8 137953 -NCIT:C8904 Stage I Squamous Cell Carcinoma of the Bladder AJCC v6 and v7 8 137954 -NCIT:C8905 Stage III Bladder Squamous Cell Carcinoma AJCC v6 and v7 8 137955 -NCIT:C8906 Stage IV Bladder Squamous Cell Carcinoma AJCC v7 8 137956 -NCIT:C191751 Adenocarcinoma of the Urinary Tract 6 137957 -NCIT:C4032 Bladder Adenocarcinoma 7 137958 -NCIT:C39835 Bladder Enteric Type Adenocarcinoma 8 137959 -NCIT:C39836 Bladder Adenocarcinoma, Not Otherwise Specified 8 137960 -NCIT:C39837 Bladder Mucinous Adenocarcinoma 8 137961 -NCIT:C39838 Bladder Hepatoid Adenocarcinoma 8 137962 -NCIT:C39839 Bladder Mixed Adenocarcinoma 8 137963 -NCIT:C39843 Urachal Adenocarcinoma 8 137964 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 8 137965 -NCIT:C6163 Bladder Signet Ring Cell Adenocarcinoma 8 137966 -NCIT:C8894 Stage 0 Bladder Adenocarcinoma AJCC v6 and v7 8 137967 -NCIT:C8895 Stage I Bladder Adenocarcinoma AJCC v6 and v7 8 137968 -NCIT:C8896 Stage II Bladder Adenocarcinoma AJCC v6 and v7 8 137969 -NCIT:C8897 Stage III Bladder Adenocarcinoma AJCC v6 and v7 8 137970 -NCIT:C8898 Stage IV Bladder Adenocarcinoma AJCC v7 8 137971 -NCIT:C191753 Diverticular Carcinoma of the Urinary Tract 6 137972 -NCIT:C191768 Clear Cell Adenocarcinoma of the Urinary Tract 6 137973 -NCIT:C6172 Urethral Clear Cell Adenocarcinoma 7 137974 -NCIT:C6179 Bladder Clear Cell Adenocarcinoma 7 137975 -NCIT:C39847 Bladder Tubulo-Cystic Clear Cell Adenocarcinoma 8 137976 -NCIT:C39848 Bladder Papillary Clear Cell Adenocarcinoma 8 137977 -NCIT:C39849 Bladder Diffuse Clear Cell Adenocarcinoma 8 137978 -NCIT:C191769 Endometrioid Adenocarcinoma of the Urinary Tract 6 137979 -NCIT:C159542 Bladder Endometrioid Adenocarcinoma 7 137980 -NCIT:C4030 Urothelial Carcinoma 6 137981 -NCIT:C126109 Metastatic Urothelial Carcinoma 7 137982 -NCIT:C148493 Advanced Urothelial Carcinoma 8 137983 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 137984 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 137985 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 137986 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 137987 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 137988 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 137989 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 137990 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 137991 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 137992 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 137993 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 137994 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 137995 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 137996 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 137997 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 137998 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 137999 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 138000 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 138001 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 138002 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 8 138003 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 138004 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 138005 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 138006 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 138007 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 138008 -NCIT:C191692 Metastatic Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 138009 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 138010 -NCIT:C191693 Metastatic Giant Cell Urothelial Carcinoma 8 138011 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 138012 -NCIT:C191694 Metastatic Lipid-Rich Urothelial Carcinoma 8 138013 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 138014 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 8 138015 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 138016 -NCIT:C191696 Metastatic Nested Urothelial Carcinoma 8 138017 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 138018 -NCIT:C191697 Metastatic Plasmacytoid Urothelial Carcinoma 8 138019 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 138020 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 8 138021 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 138022 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 8 138023 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 138024 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 138025 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 138026 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 9 138027 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 138028 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 138029 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 138030 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 138031 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 138032 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 138033 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 138034 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 138035 -NCIT:C150364 Refractory Urothelial Carcinoma 7 138036 -NCIT:C150365 Platinum-Resistant Urothelial Carcinoma 8 138037 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 8 138038 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 138039 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 8 138040 -NCIT:C176996 Refractory Urethral Urothelial Carcinoma 8 138041 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 8 138042 -NCIT:C150521 Unresectable Urothelial Carcinoma 7 138043 -NCIT:C158585 Unresectable Urethral Urothelial Carcinoma 8 138044 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 8 138045 -NCIT:C164160 Unresectable Renal Pelvis and Ureter Urothelial Carcinoma 8 138046 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 9 138047 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 9 138048 -NCIT:C157631 Recurrent Urothelial Carcinoma 7 138049 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 138050 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 138051 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 138052 -NCIT:C8254 Recurrent Renal Pelvis and Ureter Urothelial Carcinoma 8 138053 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 9 138054 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 138055 -NCIT:C180606 Urothelial Carcinoma, High Grade 7 138056 -NCIT:C180607 Renal Pelvis Urothelial Carcinoma, High Grade 8 138057 -NCIT:C180608 Ureter Urothelial Carcinoma, High Grade 8 138058 -NCIT:C180609 Bladder Urothelial Carcinoma, High Grade 8 138059 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 9 138060 -NCIT:C191675 Non-Invasive Papillary Urothelial Carcinoma, High Grade 8 138061 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 9 138062 -NCIT:C191673 Non-Invasive Papillary Urothelial Carcinoma, Low Grade 7 138063 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 8 138064 -NCIT:C39851 Bladder Urothelial Carcinoma 7 138065 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 138066 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 138067 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 138068 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 138069 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 138070 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 138071 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 138072 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 138073 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 138074 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 138075 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 138076 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 138077 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 138078 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 8 138079 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 8 138080 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 138081 -NCIT:C177531 Bladder Flat Urothelial Carcinoma 8 138082 -NCIT:C37266 Bladder Urothelial Carcinoma In Situ 9 138083 -NCIT:C140418 Stage 0is Bladder Cancer AJCC v8 10 138084 -NCIT:C3644 Stage 0is Bladder Urothelial Carcinoma AJCC v6 and v7 10 138085 -NCIT:C180609 Bladder Urothelial Carcinoma, High Grade 8 138086 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 9 138087 -NCIT:C188032 Resectable Bladder Urothelial Carcinoma 8 138088 -NCIT:C27634 Transplant-Related Bladder Urothelial Carcinoma 8 138089 -NCIT:C27885 Invasive Bladder Urothelial Carcinoma 8 138090 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 9 138091 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 138092 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 10 138093 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 9 138094 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 10 138095 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 9 138096 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 9 138097 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 9 138098 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 9 138099 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 138100 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 138101 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 9 138102 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 9 138103 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 9 138104 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 9 138105 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 10 138106 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 9 138107 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 9 138108 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 9 138109 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 10 138110 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 9 138111 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 10 138112 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 10 138113 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 10 138114 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 138115 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 10 138116 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 9 138117 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 10 138118 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 9 138119 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 10 138120 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 138121 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 138122 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 138123 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 9 138124 -NCIT:C39844 Urachal Urothelial Carcinoma 8 138125 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 138126 -NCIT:C7383 Bladder Papillary Urothelial Carcinoma 8 138127 -NCIT:C158382 Bladder Non-Invasive Papillary Urothelial Carcinoma 9 138128 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 10 138129 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 10 138130 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 10 138131 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 10 138132 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 138133 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 138134 -NCIT:C39853 Invasive Urothelial Carcinoma 7 138135 -NCIT:C115966 Invasive Bladder Urothelial Carcinoma Associated with Urethral Carcinoma 8 138136 -NCIT:C164252 Invasive Sarcomatoid Urothelial Carcinoma 8 138137 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 9 138138 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 10 138139 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 9 138140 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 10 138141 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 10 138142 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 10 138143 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 9 138144 -NCIT:C191678 Invasive Lymphoepithelioma-Like Urothelial Carcinoma 8 138145 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 9 138146 -NCIT:C191679 Invasive Giant Cell Urothelial Carcinoma 8 138147 -NCIT:C191693 Metastatic Giant Cell Urothelial Carcinoma 9 138148 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 10 138149 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 9 138150 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 10 138151 -NCIT:C191680 Invasive Urothelial Carcinoma with Glandular Differentiation 8 138152 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 9 138153 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 9 138154 -NCIT:C191681 Invasive Urothelial Carcinoma with Squamous Differentiation 8 138155 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 9 138156 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 9 138157 -NCIT:C191682 Invasive Urothelial Carcinoma with Trophoblastic Differentiation 8 138158 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 9 138159 -NCIT:C191683 Invasive Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 138160 -NCIT:C191692 Metastatic Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 138161 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 10 138162 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 138163 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 10 138164 -NCIT:C191684 Invasive Lipid-Rich Urothelial Carcinoma 8 138165 -NCIT:C191694 Metastatic Lipid-Rich Urothelial Carcinoma 9 138166 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 10 138167 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 9 138168 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 10 138169 -NCIT:C191685 Invasive Microcystic Urothelial Carcinoma 8 138170 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 9 138171 -NCIT:C191686 Invasive Micropapillary Urothelial Carcinoma 8 138172 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 9 138173 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 138174 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 138175 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 138176 -NCIT:C191687 Invasive Nested Urothelial Carcinoma 8 138177 -NCIT:C191696 Metastatic Nested Urothelial Carcinoma 9 138178 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 10 138179 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 9 138180 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 10 138181 -NCIT:C191688 Invasive Plasmacytoid Urothelial Carcinoma 8 138182 -NCIT:C191697 Metastatic Plasmacytoid Urothelial Carcinoma 9 138183 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 10 138184 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 9 138185 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 10 138186 -NCIT:C191725 Invasive Large Nested Urothelial Carcinoma 8 138187 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 9 138188 -NCIT:C191728 Invasive Tubular Urothelial Carcinoma 8 138189 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 9 138190 -NCIT:C191730 Invasive Poorly Differentiated Urothelial Carcinoma 8 138191 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 9 138192 -NCIT:C191734 Invasive Conventional Urothelial Carcinoma 8 138193 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 9 138194 -NCIT:C27885 Invasive Bladder Urothelial Carcinoma 8 138195 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 9 138196 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 138197 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 10 138198 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 9 138199 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 10 138200 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 9 138201 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 9 138202 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 9 138203 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 9 138204 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 138205 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 138206 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 9 138207 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 9 138208 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 9 138209 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 9 138210 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 10 138211 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 9 138212 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 9 138213 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 9 138214 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 10 138215 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 9 138216 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 10 138217 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 10 138218 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 10 138219 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 138220 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 10 138221 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 9 138222 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 10 138223 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 9 138224 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 10 138225 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 138226 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 138227 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 138228 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 9 138229 -NCIT:C39879 Invasive Renal Pelvis and Ureter Urothelial Carcinoma 8 138230 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 9 138231 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 9 138232 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 9 138233 -NCIT:C39898 Primary Prostate Urothelial Carcinoma 7 138234 -NCIT:C39900 Prostatic Urethra Urothelial Carcinoma 8 138235 -NCIT:C39901 Prostatic Duct Urothelial Carcinoma 8 138236 -NCIT:C6166 Urethral Urothelial Carcinoma 7 138237 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 138238 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 138239 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 138240 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 138241 -NCIT:C158585 Unresectable Urethral Urothelial Carcinoma 8 138242 -NCIT:C176996 Refractory Urethral Urothelial Carcinoma 8 138243 -NCIT:C39900 Prostatic Urethra Urothelial Carcinoma 8 138244 -NCIT:C7716 Renal Pelvis and Ureter Urothelial Carcinoma 7 138245 -NCIT:C140355 Renal Pelvis and Ureter Cancer by AJCC v8 Stage 8 138246 -NCIT:C140356 Renal Pelvis Cancer by AJCC v8 Stage 9 138247 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 138248 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 10 138249 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 10 138250 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 10 138251 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 10 138252 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 10 138253 -NCIT:C140357 Ureter Cancer by AJCC v8 Stage 9 138254 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 10 138255 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 10 138256 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 10 138257 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 10 138258 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 10 138259 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 10 138260 -NCIT:C140358 Stage 0a Renal Pelvis and Ureter Cancer AJCC v8 9 138261 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 138262 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 10 138263 -NCIT:C140361 Stage 0is Renal Pelvis and Ureter Cancer AJCC v8 9 138264 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 10 138265 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 10 138266 -NCIT:C140364 Stage I Renal Pelvis and Ureter Cancer AJCC v8 9 138267 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 10 138268 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 10 138269 -NCIT:C140367 Stage II Renal Pelvis and Ureter Cancer AJCC v8 9 138270 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 10 138271 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 10 138272 -NCIT:C140370 Stage III Renal Pelvis and Ureter Cancer AJCC v8 9 138273 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 10 138274 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 10 138275 -NCIT:C140373 Stage IV Renal Pelvis and Ureter Cancer AJCC v8 9 138276 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 10 138277 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 10 138278 -NCIT:C140376 Renal Pelvis and Ureter Cancer by AJCC v7 Stage 8 138279 -NCIT:C140377 Renal Pelvis Cancer by AJCC v7 Stage 9 138280 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 10 138281 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 10 138282 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 10 138283 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 10 138284 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 10 138285 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 138286 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 138287 -NCIT:C140378 Ureter Cancer by AJCC v7 Stage 9 138288 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 10 138289 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 11 138290 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 11 138291 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 10 138292 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 10 138293 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 10 138294 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 10 138295 -NCIT:C39850 Stage 0 Renal Pelvis and Ureter Cancer AJCC v7 9 138296 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 10 138297 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 11 138298 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 11 138299 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 10 138300 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 138301 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 138302 -NCIT:C7517 Stage 0a Renal Pelvis and Ureter Cancer AJCC v7 10 138303 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 138304 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 11 138305 -NCIT:C7518 Stage 0is Renal Pelvis and Ureter Cancer AJCC v7 10 138306 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 11 138307 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 138308 -NCIT:C7519 Stage I Renal Pelvis and Ureter Cancer AJCC v7 9 138309 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 10 138310 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 10 138311 -NCIT:C7520 Stage II Renal Pelvis and Ureter Cancer AJCC v7 9 138312 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 10 138313 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 10 138314 -NCIT:C7521 Stage III Renal Pelvis and Ureter Cancer AJCC v7 9 138315 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 10 138316 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 10 138317 -NCIT:C7522 Stage IV Renal Pelvis and Ureter Cancer AJCC v7 9 138318 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 10 138319 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 10 138320 -NCIT:C164160 Unresectable Renal Pelvis and Ureter Urothelial Carcinoma 8 138321 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 9 138322 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 9 138323 -NCIT:C39879 Invasive Renal Pelvis and Ureter Urothelial Carcinoma 8 138324 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 9 138325 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 9 138326 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 9 138327 -NCIT:C4830 Ureter Urothelial Carcinoma 8 138328 -NCIT:C140357 Ureter Cancer by AJCC v8 Stage 9 138329 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 10 138330 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 10 138331 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 10 138332 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 10 138333 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 10 138334 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 10 138335 -NCIT:C140378 Ureter Cancer by AJCC v7 Stage 9 138336 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 10 138337 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 11 138338 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 11 138339 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 10 138340 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 10 138341 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 10 138342 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 10 138343 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 9 138344 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 138345 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 138346 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 9 138347 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 9 138348 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 9 138349 -NCIT:C180608 Ureter Urothelial Carcinoma, High Grade 9 138350 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 9 138351 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 9 138352 -NCIT:C7355 Renal Pelvis Urothelial Carcinoma 8 138353 -NCIT:C140356 Renal Pelvis Cancer by AJCC v8 Stage 9 138354 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 138355 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 10 138356 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 10 138357 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 10 138358 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 10 138359 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 10 138360 -NCIT:C140377 Renal Pelvis Cancer by AJCC v7 Stage 9 138361 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 10 138362 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 10 138363 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 10 138364 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 10 138365 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 10 138366 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 138367 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 138368 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 138369 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 138370 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 138371 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 138372 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 9 138373 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 9 138374 -NCIT:C180607 Renal Pelvis Urothelial Carcinoma, High Grade 9 138375 -NCIT:C6148 Renal Pelvis Papillary Urothelial Carcinoma 9 138376 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 138377 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 10 138378 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 9 138379 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 8 138380 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 138381 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 138382 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 138383 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 9 138384 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 138385 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 138386 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 138387 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 138388 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 138389 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 138390 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 138391 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 138392 -NCIT:C8167 Localized Renal Pelvis and Ureter Urothelial Carcinoma 8 138393 -NCIT:C8168 Regional Renal Pelvis and Ureter Urothelial Carcinoma 8 138394 -NCIT:C8254 Recurrent Renal Pelvis and Ureter Urothelial Carcinoma 8 138395 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 9 138396 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 138397 -NCIT:C4912 Bladder Carcinoma 6 138398 -NCIT:C118816 Childhood Bladder Carcinoma 7 138399 -NCIT:C140416 Bladder Cancer by AJCC v8 Stage 7 138400 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 8 138401 -NCIT:C140418 Stage 0is Bladder Cancer AJCC v8 8 138402 -NCIT:C140419 Stage I Bladder Cancer AJCC v8 8 138403 -NCIT:C140420 Stage II Bladder Cancer AJCC v8 8 138404 -NCIT:C140421 Stage III Bladder Cancer AJCC v8 8 138405 -NCIT:C140422 Stage IIIA Bladder Cancer AJCC v8 9 138406 -NCIT:C140423 Stage IIIB Bladder Cancer AJCC v8 9 138407 -NCIT:C140424 Stage IV Bladder Cancer AJCC v8 8 138408 -NCIT:C140425 Stage IVA Bladder Cancer AJCC v8 9 138409 -NCIT:C140426 Stage IVB Bladder Cancer AJCC v8 9 138410 -NCIT:C150316 Refractory Bladder Carcinoma 7 138411 -NCIT:C148286 Refractory Stage 0 Bladder Cancer AJCC v6 and v7 8 138412 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 8 138413 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 138414 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 8 138415 -NCIT:C150570 Invasive Bladder Carcinoma 7 138416 -NCIT:C150572 Muscle Invasive Bladder Carcinoma 8 138417 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 9 138418 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 10 138419 -NCIT:C165716 Invasive Bladder Mixed Carcinoma 8 138420 -NCIT:C27474 Non-Muscle Invasive Bladder Carcinoma 8 138421 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 9 138422 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 138423 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 10 138424 -NCIT:C190772 Metastatic Non-Muscle Invasive Bladder Carcinoma 9 138425 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 10 138426 -NCIT:C190774 Recurrent Non-Muscle Invasive Bladder Carcinoma 9 138427 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 138428 -NCIT:C27885 Invasive Bladder Urothelial Carcinoma 8 138429 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 9 138430 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 138431 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 10 138432 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 9 138433 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 10 138434 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 9 138435 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 9 138436 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 9 138437 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 9 138438 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 138439 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 138440 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 9 138441 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 9 138442 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 9 138443 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 9 138444 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 10 138445 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 9 138446 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 9 138447 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 9 138448 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 10 138449 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 9 138450 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 10 138451 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 10 138452 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 10 138453 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 138454 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 10 138455 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 9 138456 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 10 138457 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 9 138458 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 10 138459 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 138460 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 138461 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 138462 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 9 138463 -NCIT:C156062 Metastatic Bladder Carcinoma 7 138464 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 138465 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 138466 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 138467 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 138468 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 138469 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 138470 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 138471 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 138472 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 138473 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 138474 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 138475 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 8 138476 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 8 138477 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 8 138478 -NCIT:C167071 Locally Advanced Bladder Carcinoma 8 138479 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 138480 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 9 138481 -NCIT:C167338 Advanced Bladder Carcinoma 8 138482 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 138483 -NCIT:C190772 Metastatic Non-Muscle Invasive Bladder Carcinoma 8 138484 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 9 138485 -NCIT:C157759 Bladder Neuroendocrine Carcinoma 7 138486 -NCIT:C157760 Bladder Large Cell Neuroendocrine Carcinoma 8 138487 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 9 138488 -NCIT:C9461 Bladder Small Cell Neuroendocrine Carcinoma 8 138489 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 9 138490 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 9 138491 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 9 138492 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 9 138493 -NCIT:C159542 Bladder Endometrioid Adenocarcinoma 7 138494 -NCIT:C160158 Carcinoma Arising in Bladder Diverticulum 7 138495 -NCIT:C167075 Unresectable Bladder Carcinoma 7 138496 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 8 138497 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 8 138498 -NCIT:C39842 Urachal Carcinoma 7 138499 -NCIT:C39843 Urachal Adenocarcinoma 8 138500 -NCIT:C39844 Urachal Urothelial Carcinoma 8 138501 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 138502 -NCIT:C39845 Urachal Squamous Cell Carcinoma 8 138503 -NCIT:C39851 Bladder Urothelial Carcinoma 7 138504 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 138505 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 138506 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 138507 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 138508 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 138509 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 138510 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 138511 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 138512 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 138513 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 138514 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 138515 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 138516 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 138517 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 8 138518 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 8 138519 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 138520 -NCIT:C177531 Bladder Flat Urothelial Carcinoma 8 138521 -NCIT:C37266 Bladder Urothelial Carcinoma In Situ 9 138522 -NCIT:C140418 Stage 0is Bladder Cancer AJCC v8 10 138523 -NCIT:C3644 Stage 0is Bladder Urothelial Carcinoma AJCC v6 and v7 10 138524 -NCIT:C180609 Bladder Urothelial Carcinoma, High Grade 8 138525 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 9 138526 -NCIT:C188032 Resectable Bladder Urothelial Carcinoma 8 138527 -NCIT:C27634 Transplant-Related Bladder Urothelial Carcinoma 8 138528 -NCIT:C27885 Invasive Bladder Urothelial Carcinoma 8 138529 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 9 138530 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 138531 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 10 138532 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 9 138533 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 10 138534 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 9 138535 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 9 138536 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 9 138537 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 9 138538 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 138539 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 138540 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 9 138541 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 9 138542 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 9 138543 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 9 138544 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 10 138545 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 9 138546 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 9 138547 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 9 138548 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 10 138549 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 9 138550 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 10 138551 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 10 138552 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 10 138553 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 138554 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 10 138555 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 9 138556 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 10 138557 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 9 138558 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 10 138559 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 138560 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 138561 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 138562 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 9 138563 -NCIT:C39844 Urachal Urothelial Carcinoma 8 138564 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 138565 -NCIT:C7383 Bladder Papillary Urothelial Carcinoma 8 138566 -NCIT:C158382 Bladder Non-Invasive Papillary Urothelial Carcinoma 9 138567 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 10 138568 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 10 138569 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 10 138570 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 10 138571 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 138572 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 138573 -NCIT:C4031 Bladder Squamous Cell Carcinoma 7 138574 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 8 138575 -NCIT:C27768 Schistosoma Hematobium-Related Bladder Squamous Cell Carcinoma 8 138576 -NCIT:C39833 Schistosoma Hematobium-Related Bladder Verrucous Carcinoma 9 138577 -NCIT:C39832 Bladder Verrucous Carcinoma 8 138578 -NCIT:C39833 Schistosoma Hematobium-Related Bladder Verrucous Carcinoma 9 138579 -NCIT:C39845 Urachal Squamous Cell Carcinoma 8 138580 -NCIT:C4994 Stage II Bladder Squamous Cell Carcinoma AJCC v6 and v7 8 138581 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 8 138582 -NCIT:C8903 Stage 0 Bladder Squamous Cell Carcinoma AJCC v6 and v7 8 138583 -NCIT:C8904 Stage I Squamous Cell Carcinoma of the Bladder AJCC v6 and v7 8 138584 -NCIT:C8905 Stage III Bladder Squamous Cell Carcinoma AJCC v6 and v7 8 138585 -NCIT:C8906 Stage IV Bladder Squamous Cell Carcinoma AJCC v7 8 138586 -NCIT:C4032 Bladder Adenocarcinoma 7 138587 -NCIT:C39835 Bladder Enteric Type Adenocarcinoma 8 138588 -NCIT:C39836 Bladder Adenocarcinoma, Not Otherwise Specified 8 138589 -NCIT:C39837 Bladder Mucinous Adenocarcinoma 8 138590 -NCIT:C39838 Bladder Hepatoid Adenocarcinoma 8 138591 -NCIT:C39839 Bladder Mixed Adenocarcinoma 8 138592 -NCIT:C39843 Urachal Adenocarcinoma 8 138593 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 8 138594 -NCIT:C6163 Bladder Signet Ring Cell Adenocarcinoma 8 138595 -NCIT:C8894 Stage 0 Bladder Adenocarcinoma AJCC v6 and v7 8 138596 -NCIT:C8895 Stage I Bladder Adenocarcinoma AJCC v6 and v7 8 138597 -NCIT:C8896 Stage II Bladder Adenocarcinoma AJCC v6 and v7 8 138598 -NCIT:C8897 Stage III Bladder Adenocarcinoma AJCC v6 and v7 8 138599 -NCIT:C8898 Stage IV Bladder Adenocarcinoma AJCC v7 8 138600 -NCIT:C6179 Bladder Clear Cell Adenocarcinoma 7 138601 -NCIT:C39847 Bladder Tubulo-Cystic Clear Cell Adenocarcinoma 8 138602 -NCIT:C39848 Bladder Papillary Clear Cell Adenocarcinoma 8 138603 -NCIT:C39849 Bladder Diffuse Clear Cell Adenocarcinoma 8 138604 -NCIT:C7899 Recurrent Bladder Carcinoma 7 138605 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 138606 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 138607 -NCIT:C190774 Recurrent Non-Muscle Invasive Bladder Carcinoma 8 138608 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 138609 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 138610 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 8 138611 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 8 138612 -NCIT:C90344 Bladder Cancer by AJCC v6 Stage 7 138613 -NCIT:C7895 Stage 0 Bladder Cancer AJCC v6 and v7 8 138614 -NCIT:C148286 Refractory Stage 0 Bladder Cancer AJCC v6 and v7 9 138615 -NCIT:C6188 Stage 0 Bladder Urothelial Carcinoma AJCC v6 and v7 9 138616 -NCIT:C3644 Stage 0is Bladder Urothelial Carcinoma AJCC v6 and v7 10 138617 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 10 138618 -NCIT:C8894 Stage 0 Bladder Adenocarcinoma AJCC v6 and v7 9 138619 -NCIT:C8903 Stage 0 Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 138620 -NCIT:C7896 Stage I Bladder Cancer AJCC v6 and v7 8 138621 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 138622 -NCIT:C8895 Stage I Bladder Adenocarcinoma AJCC v6 and v7 9 138623 -NCIT:C8899 Stage I Bladder Cancer with Carcinoma In Situ 9 138624 -NCIT:C8901 Stage I Bladder Cancer without Carcinoma In Situ 9 138625 -NCIT:C8904 Stage I Squamous Cell Carcinoma of the Bladder AJCC v6 and v7 9 138626 -NCIT:C7897 Stage II Bladder Cancer AJCC v6 and v7 8 138627 -NCIT:C4994 Stage II Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 138628 -NCIT:C8896 Stage II Bladder Adenocarcinoma AJCC v6 and v7 9 138629 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 138630 -NCIT:C7898 Stage III Bladder Cancer AJCC v6 and v7 8 138631 -NCIT:C8897 Stage III Bladder Adenocarcinoma AJCC v6 and v7 9 138632 -NCIT:C8905 Stage III Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 138633 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 138634 -NCIT:C7900 Stage IV Bladder Cancer AJCC v6 8 138635 -NCIT:C91202 Bladder Cancer by AJCC v7 Stage 7 138636 -NCIT:C7895 Stage 0 Bladder Cancer AJCC v6 and v7 8 138637 -NCIT:C148286 Refractory Stage 0 Bladder Cancer AJCC v6 and v7 9 138638 -NCIT:C6188 Stage 0 Bladder Urothelial Carcinoma AJCC v6 and v7 9 138639 -NCIT:C3644 Stage 0is Bladder Urothelial Carcinoma AJCC v6 and v7 10 138640 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 10 138641 -NCIT:C8894 Stage 0 Bladder Adenocarcinoma AJCC v6 and v7 9 138642 -NCIT:C8903 Stage 0 Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 138643 -NCIT:C7896 Stage I Bladder Cancer AJCC v6 and v7 8 138644 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 138645 -NCIT:C8895 Stage I Bladder Adenocarcinoma AJCC v6 and v7 9 138646 -NCIT:C8899 Stage I Bladder Cancer with Carcinoma In Situ 9 138647 -NCIT:C8901 Stage I Bladder Cancer without Carcinoma In Situ 9 138648 -NCIT:C8904 Stage I Squamous Cell Carcinoma of the Bladder AJCC v6 and v7 9 138649 -NCIT:C7897 Stage II Bladder Cancer AJCC v6 and v7 8 138650 -NCIT:C4994 Stage II Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 138651 -NCIT:C8896 Stage II Bladder Adenocarcinoma AJCC v6 and v7 9 138652 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 138653 -NCIT:C7898 Stage III Bladder Cancer AJCC v6 and v7 8 138654 -NCIT:C8897 Stage III Bladder Adenocarcinoma AJCC v6 and v7 9 138655 -NCIT:C8905 Stage III Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 138656 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 138657 -NCIT:C89366 Stage IV Bladder Cancer AJCC v7 8 138658 -NCIT:C8898 Stage IV Bladder Adenocarcinoma AJCC v7 9 138659 -NCIT:C8906 Stage IV Bladder Squamous Cell Carcinoma AJCC v7 9 138660 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 9 138661 -NCIT:C7515 Renal Pelvis and Ureter Carcinoma 6 138662 -NCIT:C7716 Renal Pelvis and Ureter Urothelial Carcinoma 7 138663 -NCIT:C140355 Renal Pelvis and Ureter Cancer by AJCC v8 Stage 8 138664 -NCIT:C140356 Renal Pelvis Cancer by AJCC v8 Stage 9 138665 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 138666 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 10 138667 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 10 138668 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 10 138669 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 10 138670 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 10 138671 -NCIT:C140357 Ureter Cancer by AJCC v8 Stage 9 138672 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 10 138673 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 10 138674 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 10 138675 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 10 138676 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 10 138677 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 10 138678 -NCIT:C140358 Stage 0a Renal Pelvis and Ureter Cancer AJCC v8 9 138679 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 138680 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 10 138681 -NCIT:C140361 Stage 0is Renal Pelvis and Ureter Cancer AJCC v8 9 138682 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 10 138683 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 10 138684 -NCIT:C140364 Stage I Renal Pelvis and Ureter Cancer AJCC v8 9 138685 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 10 138686 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 10 138687 -NCIT:C140367 Stage II Renal Pelvis and Ureter Cancer AJCC v8 9 138688 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 10 138689 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 10 138690 -NCIT:C140370 Stage III Renal Pelvis and Ureter Cancer AJCC v8 9 138691 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 10 138692 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 10 138693 -NCIT:C140373 Stage IV Renal Pelvis and Ureter Cancer AJCC v8 9 138694 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 10 138695 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 10 138696 -NCIT:C140376 Renal Pelvis and Ureter Cancer by AJCC v7 Stage 8 138697 -NCIT:C140377 Renal Pelvis Cancer by AJCC v7 Stage 9 138698 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 10 138699 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 10 138700 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 10 138701 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 10 138702 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 10 138703 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 138704 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 138705 -NCIT:C140378 Ureter Cancer by AJCC v7 Stage 9 138706 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 10 138707 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 11 138708 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 11 138709 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 10 138710 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 10 138711 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 10 138712 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 10 138713 -NCIT:C39850 Stage 0 Renal Pelvis and Ureter Cancer AJCC v7 9 138714 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 10 138715 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 11 138716 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 11 138717 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 10 138718 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 138719 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 138720 -NCIT:C7517 Stage 0a Renal Pelvis and Ureter Cancer AJCC v7 10 138721 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 138722 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 11 138723 -NCIT:C7518 Stage 0is Renal Pelvis and Ureter Cancer AJCC v7 10 138724 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 11 138725 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 138726 -NCIT:C7519 Stage I Renal Pelvis and Ureter Cancer AJCC v7 9 138727 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 10 138728 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 10 138729 -NCIT:C7520 Stage II Renal Pelvis and Ureter Cancer AJCC v7 9 138730 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 10 138731 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 10 138732 -NCIT:C7521 Stage III Renal Pelvis and Ureter Cancer AJCC v7 9 138733 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 10 138734 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 10 138735 -NCIT:C7522 Stage IV Renal Pelvis and Ureter Cancer AJCC v7 9 138736 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 10 138737 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 10 138738 -NCIT:C164160 Unresectable Renal Pelvis and Ureter Urothelial Carcinoma 8 138739 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 9 138740 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 9 138741 -NCIT:C39879 Invasive Renal Pelvis and Ureter Urothelial Carcinoma 8 138742 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 9 138743 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 9 138744 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 9 138745 -NCIT:C4830 Ureter Urothelial Carcinoma 8 138746 -NCIT:C140357 Ureter Cancer by AJCC v8 Stage 9 138747 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 10 138748 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 10 138749 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 10 138750 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 10 138751 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 10 138752 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 10 138753 -NCIT:C140378 Ureter Cancer by AJCC v7 Stage 9 138754 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 10 138755 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 11 138756 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 11 138757 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 10 138758 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 10 138759 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 10 138760 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 10 138761 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 9 138762 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 138763 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 138764 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 9 138765 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 9 138766 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 9 138767 -NCIT:C180608 Ureter Urothelial Carcinoma, High Grade 9 138768 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 9 138769 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 9 138770 -NCIT:C7355 Renal Pelvis Urothelial Carcinoma 8 138771 -NCIT:C140356 Renal Pelvis Cancer by AJCC v8 Stage 9 138772 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 138773 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 10 138774 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 10 138775 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 10 138776 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 10 138777 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 10 138778 -NCIT:C140377 Renal Pelvis Cancer by AJCC v7 Stage 9 138779 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 10 138780 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 10 138781 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 10 138782 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 10 138783 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 10 138784 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 138785 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 138786 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 138787 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 138788 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 138789 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 138790 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 9 138791 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 9 138792 -NCIT:C180607 Renal Pelvis Urothelial Carcinoma, High Grade 9 138793 -NCIT:C6148 Renal Pelvis Papillary Urothelial Carcinoma 9 138794 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 138795 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 10 138796 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 9 138797 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 8 138798 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 138799 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 138800 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 138801 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 9 138802 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 138803 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 138804 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 138805 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 138806 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 138807 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 138808 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 138809 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 138810 -NCIT:C8167 Localized Renal Pelvis and Ureter Urothelial Carcinoma 8 138811 -NCIT:C8168 Regional Renal Pelvis and Ureter Urothelial Carcinoma 8 138812 -NCIT:C8254 Recurrent Renal Pelvis and Ureter Urothelial Carcinoma 8 138813 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 9 138814 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 138815 -NCIT:C7623 Recurrent Urinary System Carcinoma 6 138816 -NCIT:C157631 Recurrent Urothelial Carcinoma 7 138817 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 138818 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 138819 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 138820 -NCIT:C8254 Recurrent Renal Pelvis and Ureter Urothelial Carcinoma 8 138821 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 9 138822 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 138823 -NCIT:C172622 Recurrent Kidney Carcinoma 7 138824 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 8 138825 -NCIT:C162726 Recurrent Kidney Medullary Carcinoma 8 138826 -NCIT:C7825 Recurrent Renal Cell Carcinoma 8 138827 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 9 138828 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 10 138829 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 9 138830 -NCIT:C7508 Recurrent Urethral Carcinoma 7 138831 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 138832 -NCIT:C7899 Recurrent Bladder Carcinoma 7 138833 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 138834 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 138835 -NCIT:C190774 Recurrent Non-Muscle Invasive Bladder Carcinoma 8 138836 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 138837 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 138838 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 8 138839 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 8 138840 -NCIT:C9255 Recurrent Ureter Carcinoma 7 138841 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 8 138842 -NCIT:C8993 Ureter Carcinoma 6 138843 -NCIT:C27818 Metastatic Ureter Carcinoma 7 138844 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 8 138845 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 138846 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 138847 -NCIT:C4830 Ureter Urothelial Carcinoma 7 138848 -NCIT:C140357 Ureter Cancer by AJCC v8 Stage 8 138849 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 9 138850 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 9 138851 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 9 138852 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 9 138853 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 9 138854 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 9 138855 -NCIT:C140378 Ureter Cancer by AJCC v7 Stage 8 138856 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 9 138857 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 10 138858 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 10 138859 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 9 138860 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 9 138861 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 9 138862 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 9 138863 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 8 138864 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 138865 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 138866 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 8 138867 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 8 138868 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 8 138869 -NCIT:C180608 Ureter Urothelial Carcinoma, High Grade 8 138870 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 8 138871 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 8 138872 -NCIT:C6154 Ureter Squamous Cell Carcinoma 7 138873 -NCIT:C6155 Ureter Adenocarcinoma 7 138874 -NCIT:C6159 Ureter Undifferentiated Carcinoma 7 138875 -NCIT:C6176 Ureter Small Cell Neuroendocrine Carcinoma 7 138876 -NCIT:C9255 Recurrent Ureter Carcinoma 7 138877 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 8 138878 -NCIT:C9356 Regional Ureter Carcinoma 7 138879 -NCIT:C9106 Urethral Carcinoma 6 138880 -NCIT:C115210 Distal Urethral Carcinoma 7 138881 -NCIT:C115334 Proximal Urethral Carcinoma 7 138882 -NCIT:C140457 Urethral Cancer by AJCC v8 Stage 7 138883 -NCIT:C140458 Stage 0a Urethral Cancer AJCC v8 8 138884 -NCIT:C140459 Stage 0is Urethral Cancer AJCC v8 8 138885 -NCIT:C140460 Stage I Urethral Cancer AJCC v8 8 138886 -NCIT:C140461 Stage II Urethral Cancer AJCC v8 8 138887 -NCIT:C140462 Stage III Urethral Cancer AJCC v8 8 138888 -NCIT:C140463 Stage IV Urethral Cancer AJCC v8 8 138889 -NCIT:C140464 Urethral Cancer by AJCC v7 Stage 7 138890 -NCIT:C6195 Stage 0 Urethral Cancer AJCC v7 8 138891 -NCIT:C4531 Stage 0is Urethral Cancer AJCC v7 9 138892 -NCIT:C6196 Stage 0a Urethral Cancer AJCC v7 9 138893 -NCIT:C6197 Stage I Urethral Cancer AJCC v7 8 138894 -NCIT:C6198 Stage II Urethral Cancer AJCC v7 8 138895 -NCIT:C6199 Stage III Urethral Cancer AJCC v7 8 138896 -NCIT:C6200 Stage IV Urethral Cancer AJCC v7 8 138897 -NCIT:C27819 Metastatic Urethral Carcinoma 7 138898 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 138899 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 138900 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 138901 -NCIT:C6165 Urethral Squamous Cell Carcinoma 7 138902 -NCIT:C39862 Human Papillomavirus-Related Urethral Squamous Cell Carcinoma 8 138903 -NCIT:C39874 Urethral Verrucous Carcinoma 8 138904 -NCIT:C6166 Urethral Urothelial Carcinoma 7 138905 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 138906 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 138907 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 138908 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 138909 -NCIT:C158585 Unresectable Urethral Urothelial Carcinoma 8 138910 -NCIT:C176996 Refractory Urethral Urothelial Carcinoma 8 138911 -NCIT:C39900 Prostatic Urethra Urothelial Carcinoma 8 138912 -NCIT:C6167 Urethral Adenocarcinoma 7 138913 -NCIT:C6172 Urethral Clear Cell Adenocarcinoma 8 138914 -NCIT:C7371 Accessory Urethral Gland Adenocarcinoma 8 138915 -NCIT:C180948 Skene Gland Adenocarcinoma of the Urethra 9 138916 -NCIT:C39864 Cowper Gland Adenocarcinoma of the Urethra 9 138917 -NCIT:C39865 Littre Gland Adenocarcinoma of the Urethra 9 138918 -NCIT:C6168 Urethral Undifferentiated Carcinoma 7 138919 -NCIT:C7508 Recurrent Urethral Carcinoma 7 138920 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 138921 -NCIT:C9384 Kidney Carcinoma 6 138922 -NCIT:C159224 Kidney Neuroendocrine Carcinoma 7 138923 -NCIT:C116317 Kidney Small Cell Neuroendocrine Carcinoma 8 138924 -NCIT:C159225 Kidney Large Cell Neuroendocrine Carcinoma 8 138925 -NCIT:C172622 Recurrent Kidney Carcinoma 7 138926 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 8 138927 -NCIT:C162726 Recurrent Kidney Medullary Carcinoma 8 138928 -NCIT:C7825 Recurrent Renal Cell Carcinoma 8 138929 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 9 138930 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 10 138931 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 9 138932 -NCIT:C172623 Refractory Kidney Carcinoma 7 138933 -NCIT:C162727 Refractory Kidney Medullary Carcinoma 8 138934 -NCIT:C165745 Refractory Renal Cell Carcinoma 8 138935 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 9 138936 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 8 138937 -NCIT:C174565 Unresectable Kidney Carcinoma 7 138938 -NCIT:C154545 Unresectable Renal Cell Carcinoma 8 138939 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 138940 -NCIT:C165449 Unresectable Clear Cell Renal Cell Carcinoma 9 138941 -NCIT:C183251 Unresectable Sarcomatoid Renal Cell Carcinoma 9 138942 -NCIT:C190505 Unresectable Papillary Renal Cell Carcinoma 9 138943 -NCIT:C190508 Unresectable Unclassified Renal Cell Carcinoma 9 138944 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 8 138945 -NCIT:C174567 Unresectable Kidney Medullary Carcinoma 8 138946 -NCIT:C189241 Kidney Carcinoma Molecular Subtypes 7 138947 -NCIT:C154494 Renal Cell Carcinoma with MiT Translocations 8 138948 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 9 138949 -NCIT:C27891 TFE3-Rearranged Renal Cell Carcinoma 9 138950 -NCIT:C37872 Renal Cell Carcinoma Associated with t(X;1)(p11.2;q21) 10 138951 -NCIT:C37874 Renal Cell Carcinoma Associated with t(X;1)(p11.2;p34) 10 138952 -NCIT:C37876 Renal Cell Carcinoma Associated with t(X;17)(p11.2;q25) 10 138953 -NCIT:C39802 Renal Cell Carcinoma Associated with inv(X)(p11;q12) 10 138954 -NCIT:C37210 TFEB-Rearranged Renal Cell Carcinoma 9 138955 -NCIT:C156464 Succinate Dehydrogenase-Deficient Renal Cell Carcinoma 8 138956 -NCIT:C164156 Fumarate Hydratase-Deficient Renal Cell Carcinoma 8 138957 -NCIT:C189247 SMARCB1-Deficient Kidney Medullary Carcinoma 8 138958 -NCIT:C189248 Childhood SMARCB1-Deficient Kidney Medullary Carcinoma 9 138959 -NCIT:C189249 ALK-Rearranged Renal Cell Carcinoma 8 138960 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 9 138961 -NCIT:C191375 ELOC-Mutated Renal Cell Carcinoma 8 138962 -NCIT:C189244 Childhood Kidney Carcinoma 7 138963 -NCIT:C189248 Childhood SMARCB1-Deficient Kidney Medullary Carcinoma 8 138964 -NCIT:C6568 Childhood Renal Cell Carcinoma 8 138965 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 9 138966 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 9 138967 -NCIT:C189255 Childhood Eosinophilic Solid and Cystic Renal Cell Carcinoma 9 138968 -NCIT:C27806 Metastatic Kidney Carcinoma 7 138969 -NCIT:C150595 Metastatic Renal Cell Carcinoma 8 138970 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 138971 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 138972 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 138973 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 138974 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 138975 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 138976 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 9 138977 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 138978 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 138979 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 9 138980 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 138981 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 138982 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 9 138983 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 138984 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 138985 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 138986 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 138987 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 138988 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 138989 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 138990 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 138991 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 138992 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 9 138993 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 138994 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 138995 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 9 138996 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 138997 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 138998 -NCIT:C157755 Metastatic Kidney Medullary Carcinoma 8 138999 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 139000 -NCIT:C163965 Metastatic Renal Pelvis Carcinoma 8 139001 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 139002 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 139003 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 139004 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 139005 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 139006 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 139007 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 139008 -NCIT:C172617 Advanced Kidney Carcinoma 8 139009 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 139010 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 139011 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 139012 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 139013 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 139014 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 139015 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 139016 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 139017 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 139018 -NCIT:C172618 Locally Advanced Kidney Carcinoma 8 139019 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 139020 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 139021 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 139022 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 139023 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 139024 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 139025 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 139026 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 139027 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 139028 -NCIT:C39807 Mucinous Tubular and Spindle Cell Carcinoma of the Kidney 7 139029 -NCIT:C6142 Renal Pelvis Carcinoma 7 139030 -NCIT:C163965 Metastatic Renal Pelvis Carcinoma 8 139031 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 139032 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 139033 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 139034 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 139035 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 139036 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 139037 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 139038 -NCIT:C6143 Renal Pelvis Adenocarcinoma 8 139039 -NCIT:C7355 Renal Pelvis Urothelial Carcinoma 8 139040 -NCIT:C140356 Renal Pelvis Cancer by AJCC v8 Stage 9 139041 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 139042 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 10 139043 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 10 139044 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 10 139045 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 10 139046 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 10 139047 -NCIT:C140377 Renal Pelvis Cancer by AJCC v7 Stage 9 139048 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 10 139049 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 10 139050 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 10 139051 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 10 139052 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 10 139053 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 139054 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 139055 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 139056 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 139057 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 139058 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 139059 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 9 139060 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 9 139061 -NCIT:C180607 Renal Pelvis Urothelial Carcinoma, High Grade 9 139062 -NCIT:C6148 Renal Pelvis Papillary Urothelial Carcinoma 9 139063 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 139064 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 10 139065 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 9 139066 -NCIT:C7732 Renal Pelvis Squamous Cell Carcinoma 8 139067 -NCIT:C6194 Collecting Duct Carcinoma 7 139068 -NCIT:C7572 Kidney Medullary Carcinoma 7 139069 -NCIT:C157755 Metastatic Kidney Medullary Carcinoma 8 139070 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 139071 -NCIT:C162726 Recurrent Kidney Medullary Carcinoma 8 139072 -NCIT:C162727 Refractory Kidney Medullary Carcinoma 8 139073 -NCIT:C174567 Unresectable Kidney Medullary Carcinoma 8 139074 -NCIT:C189247 SMARCB1-Deficient Kidney Medullary Carcinoma 8 139075 -NCIT:C189248 Childhood SMARCB1-Deficient Kidney Medullary Carcinoma 9 139076 -NCIT:C9385 Renal Cell Carcinoma 7 139077 -NCIT:C100051 Renal Cell Carcinoma Associated with Neuroblastoma 8 139078 -NCIT:C126303 Tubulocystic Renal Cell Carcinoma 8 139079 -NCIT:C140322 Renal Cell Cancer by AJCC v8 Stage 8 139080 -NCIT:C140323 Stage I Renal Cell Cancer AJCC v8 9 139081 -NCIT:C140324 Stage II Renal Cell Cancer AJCC v8 9 139082 -NCIT:C140325 Stage III Renal Cell Cancer AJCC v8 9 139083 -NCIT:C140326 Stage IV Renal Cell Cancer AJCC v8 9 139084 -NCIT:C150359 Bilateral Synchronous Sporadic Renal Cell Carcinoma 8 139085 -NCIT:C150595 Metastatic Renal Cell Carcinoma 8 139086 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 139087 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 139088 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 139089 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 139090 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 139091 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 139092 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 9 139093 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 139094 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 139095 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 9 139096 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 139097 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 139098 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 9 139099 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 139100 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 139101 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 139102 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 139103 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 139104 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 139105 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 139106 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 139107 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 139108 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 9 139109 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 139110 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 139111 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 9 139112 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 139113 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 139114 -NCIT:C154494 Renal Cell Carcinoma with MiT Translocations 8 139115 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 9 139116 -NCIT:C27891 TFE3-Rearranged Renal Cell Carcinoma 9 139117 -NCIT:C37872 Renal Cell Carcinoma Associated with t(X;1)(p11.2;q21) 10 139118 -NCIT:C37874 Renal Cell Carcinoma Associated with t(X;1)(p11.2;p34) 10 139119 -NCIT:C37876 Renal Cell Carcinoma Associated with t(X;17)(p11.2;q25) 10 139120 -NCIT:C39802 Renal Cell Carcinoma Associated with inv(X)(p11;q12) 10 139121 -NCIT:C37210 TFEB-Rearranged Renal Cell Carcinoma 9 139122 -NCIT:C154545 Unresectable Renal Cell Carcinoma 8 139123 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 139124 -NCIT:C165449 Unresectable Clear Cell Renal Cell Carcinoma 9 139125 -NCIT:C183251 Unresectable Sarcomatoid Renal Cell Carcinoma 9 139126 -NCIT:C190505 Unresectable Papillary Renal Cell Carcinoma 9 139127 -NCIT:C190508 Unresectable Unclassified Renal Cell Carcinoma 9 139128 -NCIT:C154547 Resectable Renal Cell Carcinoma 8 139129 -NCIT:C156464 Succinate Dehydrogenase-Deficient Renal Cell Carcinoma 8 139130 -NCIT:C157718 Acquired Cystic Disease-Associated Renal Cell Carcinoma 8 139131 -NCIT:C164156 Fumarate Hydratase-Deficient Renal Cell Carcinoma 8 139132 -NCIT:C165745 Refractory Renal Cell Carcinoma 8 139133 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 9 139134 -NCIT:C189249 ALK-Rearranged Renal Cell Carcinoma 8 139135 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 9 139136 -NCIT:C189254 Eosinophilic Solid and Cystic Renal Cell Carcinoma 8 139137 -NCIT:C189255 Childhood Eosinophilic Solid and Cystic Renal Cell Carcinoma 9 139138 -NCIT:C191370 Renal Cell Carcinoma, Not Otherwise Specified 8 139139 -NCIT:C191375 ELOC-Mutated Renal Cell Carcinoma 8 139140 -NCIT:C27638 Transplant-Related Renal Cell Carcinoma 8 139141 -NCIT:C27892 Unclassified Renal Cell Carcinoma 8 139142 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 9 139143 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 139144 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 139145 -NCIT:C190508 Unresectable Unclassified Renal Cell Carcinoma 9 139146 -NCIT:C27893 Sarcomatoid Renal Cell Carcinoma 8 139147 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 9 139148 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 139149 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 139150 -NCIT:C183251 Unresectable Sarcomatoid Renal Cell Carcinoma 9 139151 -NCIT:C39789 Hereditary Renal Cell Carcinoma 8 139152 -NCIT:C36260 Hereditary Clear Cell Renal Cell Carcinoma 9 139153 -NCIT:C39790 Renal Cell Carcinoma with Constitutional Chromosome 3 Translocations 9 139154 -NCIT:C51302 Hereditary Leiomyomatosis and Renal Cell Carcinoma 9 139155 -NCIT:C9222 Hereditary Papillary Renal Cell Carcinoma 9 139156 -NCIT:C4033 Clear Cell Renal Cell Carcinoma 8 139157 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 9 139158 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 10 139159 -NCIT:C157614 BAP1-Mutant Clear Cell Renal Cell Carcinoma 9 139160 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 9 139161 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 139162 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 139163 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 9 139164 -NCIT:C165449 Unresectable Clear Cell Renal Cell Carcinoma 9 139165 -NCIT:C35851 Grade 1 Clear Cell Renal Cell Carcinoma 9 139166 -NCIT:C35852 Grade 2 Clear Cell Renal Cell Carcinoma 9 139167 -NCIT:C35853 Grade 3 Clear Cell Renal Cell Carcinoma 9 139168 -NCIT:C35854 Grade 4 Clear Cell Renal Cell Carcinoma 9 139169 -NCIT:C36260 Hereditary Clear Cell Renal Cell Carcinoma 9 139170 -NCIT:C36261 Non-Hereditary Clear Cell Renal Cell Carcinoma 9 139171 -NCIT:C4146 Chromophobe Renal Cell Carcinoma 8 139172 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 9 139173 -NCIT:C155951 Chromophobe Renal Cell Carcinoma Associated with Birt-Hogg-Dube Syndrome 9 139174 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 9 139175 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 139176 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 139177 -NCIT:C27888 Classic Variant of Chromophobe Renal Cell Carcinoma 9 139178 -NCIT:C27889 Eosinophilic Variant of Chromophobe Renal Cell Carcinoma 9 139179 -NCIT:C6568 Childhood Renal Cell Carcinoma 8 139180 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 9 139181 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 9 139182 -NCIT:C189255 Childhood Eosinophilic Solid and Cystic Renal Cell Carcinoma 9 139183 -NCIT:C6975 Papillary Renal Cell Carcinoma 8 139184 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 9 139185 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 139186 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 139187 -NCIT:C190505 Unresectable Papillary Renal Cell Carcinoma 9 139188 -NCIT:C27886 Type 1 Papillary Renal Cell Carcinoma 9 139189 -NCIT:C27887 Type 2 Papillary Renal Cell Carcinoma 9 139190 -NCIT:C27890 Sporadic Papillary Renal Cell Carcinoma 9 139191 -NCIT:C9222 Hereditary Papillary Renal Cell Carcinoma 9 139192 -NCIT:C7825 Recurrent Renal Cell Carcinoma 8 139193 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 9 139194 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 10 139195 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 9 139196 -NCIT:C90343 Renal Cell Cancer by AJCC v6 Stage 8 139197 -NCIT:C4003 Stage IV Renal Cell Cancer AJCC v6 9 139198 -NCIT:C7823 Stage I Renal Cell Cancer AJCC v6 and v7 9 139199 -NCIT:C7824 Stage II Renal Cell Cancer AJCC v6 9 139200 -NCIT:C9220 Stage III Renal Cell Cancer AJCC v6 9 139201 -NCIT:C91201 Renal Cell Cancer by AJCC v7 Stage 8 139202 -NCIT:C7823 Stage I Renal Cell Cancer AJCC v6 and v7 9 139203 -NCIT:C89301 Stage II Renal Cell Cancer AJCC v7 9 139204 -NCIT:C89302 Stage III Renal Cell Cancer AJCC v7 9 139205 -NCIT:C89303 Stage IV Renal Cell Cancer AJCC v7 9 139206 -NCIT:C190783 Unresectable Genitourinary System Carcinoma 5 139207 -NCIT:C150521 Unresectable Urothelial Carcinoma 6 139208 -NCIT:C158585 Unresectable Urethral Urothelial Carcinoma 7 139209 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 7 139210 -NCIT:C164160 Unresectable Renal Pelvis and Ureter Urothelial Carcinoma 7 139211 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 8 139212 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 8 139213 -NCIT:C167073 Unresectable Ovarian Carcinoma 6 139214 -NCIT:C160781 Unresectable Ovarian Serous Adenocarcinoma 7 139215 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 8 139216 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 139217 -NCIT:C172235 Unresectable Ovarian Undifferentiated Carcinoma 7 139218 -NCIT:C179459 Unresectable Platinum-Resistant Ovarian Carcinoma 7 139219 -NCIT:C183245 Unresectable Ovarian Mucinous Adenocarcinoma 7 139220 -NCIT:C186273 Unresectable Ovarian Endometrioid Adenocarcinoma 7 139221 -NCIT:C167075 Unresectable Bladder Carcinoma 6 139222 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 7 139223 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 7 139224 -NCIT:C170969 Unresectable Fallopian Tube Carcinoma 6 139225 -NCIT:C170970 Unresectable Fallopian Tube Adenocarcinoma 7 139226 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 8 139227 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 8 139228 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 7 139229 -NCIT:C171610 Unresectable Endometrial Carcinoma 6 139230 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 7 139231 -NCIT:C171611 Unresectable Prostate Carcinoma 6 139232 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 7 139233 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 8 139234 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 7 139235 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 7 139236 -NCIT:C174024 Unresectable Cervical Carcinoma 6 139237 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 7 139238 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 8 139239 -NCIT:C174025 Unresectable Cervical Squamous Cell Carcinoma 7 139240 -NCIT:C174027 Unresectable Cervical Adenosquamous Carcinoma 7 139241 -NCIT:C174029 Unresectable Cervical Adenocarcinoma 7 139242 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 8 139243 -NCIT:C174198 Unresectable Vulvar Carcinoma 6 139244 -NCIT:C174199 Unresectable Vulvar Squamous Cell Carcinoma 7 139245 -NCIT:C174565 Unresectable Kidney Carcinoma 6 139246 -NCIT:C154545 Unresectable Renal Cell Carcinoma 7 139247 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 8 139248 -NCIT:C165449 Unresectable Clear Cell Renal Cell Carcinoma 8 139249 -NCIT:C183251 Unresectable Sarcomatoid Renal Cell Carcinoma 8 139250 -NCIT:C190505 Unresectable Papillary Renal Cell Carcinoma 8 139251 -NCIT:C190508 Unresectable Unclassified Renal Cell Carcinoma 8 139252 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 7 139253 -NCIT:C174567 Unresectable Kidney Medullary Carcinoma 7 139254 -NCIT:C175434 Unresectable Vaginal Carcinoma 6 139255 -NCIT:C165723 Mixed Carcinoma 4 139256 -NCIT:C165716 Invasive Bladder Mixed Carcinoma 5 139257 -NCIT:C181079 Hybrid Salivary Gland Carcinoma 5 139258 -NCIT:C3727 Adenosquamous Carcinoma 5 139259 -NCIT:C114656 Endometrial Adenosquamous Carcinoma 6 139260 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 7 139261 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 7 139262 -NCIT:C118630 Liver Adenosquamous Carcinoma 6 139263 -NCIT:C159248 Adenosquamous Carcinoma of the Penis 6 139264 -NCIT:C173807 Tongue Adenosquamous Carcinoma 6 139265 -NCIT:C174402 Conjunctival Adenosquamous Carcinoma 6 139266 -NCIT:C27418 Ampulla of Vater Adenosquamous Carcinoma 6 139267 -NCIT:C27421 Esophageal Adenosquamous Carcinoma 6 139268 -NCIT:C35737 Salivary Gland Adenosquamous Carcinoma 6 139269 -NCIT:C40260 Vaginal Adenosquamous Carcinoma 6 139270 -NCIT:C181028 Metastatic Vaginal Adenosquamous Carcinoma 7 139271 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 8 139272 -NCIT:C40296 Bartholin Gland Adenosquamous Carcinoma 6 139273 -NCIT:C40361 Breast Adenosquamous Carcinoma 6 139274 -NCIT:C40362 Low Grade Breast Adenosquamous Carcinoma 7 139275 -NCIT:C43535 Small Intestinal Adenosquamous Carcinoma 6 139276 -NCIT:C43589 Colorectal Adenosquamous Carcinoma 6 139277 -NCIT:C43594 Rectal Adenosquamous Carcinoma 7 139278 -NCIT:C5491 Colon Adenosquamous Carcinoma 7 139279 -NCIT:C4519 Cervical Adenosquamous Carcinoma 6 139280 -NCIT:C136650 Recurrent Cervical Adenosquamous Carcinoma 7 139281 -NCIT:C153390 Metastatic Cervical Adenosquamous Carcinoma 7 139282 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 8 139283 -NCIT:C174027 Unresectable Cervical Adenosquamous Carcinoma 7 139284 -NCIT:C40212 Cervical Poorly Differentiated Adenosquamous Carcinoma 7 139285 -NCIT:C54250 Skin Adenosquamous Carcinoma 6 139286 -NCIT:C54338 Laryngeal Adenosquamous Carcinoma 6 139287 -NCIT:C5474 Gastric Adenosquamous Carcinoma 6 139288 -NCIT:C5538 Prostate Adenosquamous Carcinoma 6 139289 -NCIT:C5721 Pancreatic Adenosquamous Carcinoma 6 139290 -NCIT:C174566 Resectable Pancreatic Adenosquamous Carcinoma 7 139291 -NCIT:C190770 Metastatic Pancreatic Adenosquamous Carcinoma 7 139292 -NCIT:C5778 Extrahepatic Bile Duct Adenosquamous Carcinoma 6 139293 -NCIT:C6458 Thymic Adenosquamous Carcinoma 6 139294 -NCIT:C7356 Gallbladder Adenosquamous Carcinoma 6 139295 -NCIT:C9133 Lung Adenosquamous Carcinoma 6 139296 -NCIT:C136492 Lung Adenosquamous Carcinoma by AJCC v7 Stage 7 139297 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 8 139298 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 8 139299 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 9 139300 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 9 139301 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 8 139302 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 9 139303 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 9 139304 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 8 139305 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 9 139306 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 9 139307 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 8 139308 -NCIT:C156093 Metastatic Lung Adenosquamous Carcinoma 7 139309 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 8 139310 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 8 139311 -NCIT:C6684 Occult Lung Adenosquamous Carcinoma 7 139312 -NCIT:C8747 Recurrent Lung Adenosquamous Carcinoma 7 139313 -NCIT:C97046 Human Papillomavirus-Related Adenosquamous Carcinoma 6 139314 -NCIT:C40090 Ovarian Seromucinous Carcinoma 5 139315 -NCIT:C178669 Recurrent Ovarian Seromucinous Carcinoma 6 139316 -NCIT:C178671 Refractory Ovarian Seromucinous Carcinoma 6 139317 -NCIT:C40347 Breast Mixed Carcinoma 5 139318 -NCIT:C40361 Breast Adenosquamous Carcinoma 6 139319 -NCIT:C40362 Low Grade Breast Adenosquamous Carcinoma 7 139320 -NCIT:C6393 Invasive Breast Ductal Carcinoma and Invasive Lobular Carcinoma 6 139321 -NCIT:C7591 Combined Lung Carcinoma 5 139322 -NCIT:C7267 Combined Lung Large Cell Neuroendocrine Carcinoma 6 139323 -NCIT:C9137 Combined Lung Small Cell Carcinoma 6 139324 -NCIT:C9379 Combined Lung Small Cell Carcinoma and Lung Adenocarcinoma 7 139325 -NCIT:C9423 Combined Lung Small Cell and Squamous Cell Carcinoma 7 139326 -NCIT:C95406 Digestive System Mixed Adenoneuroendocrine Carcinoma 5 139327 -NCIT:C163967 Metastatic Digestive System Mixed Adenoneuroendocrine Carcinoma 6 139328 -NCIT:C172718 Liver Mixed Adenoneuroendocrine Carcinoma 6 139329 -NCIT:C172808 Unresectable Digestive System Mixed Adenoneuroendocrine Carcinoma 6 139330 -NCIT:C43564 Appendix Mixed Adenoneuroendocrine Carcinoma 6 139331 -NCIT:C3689 Appendix Goblet Cell Adenocarcinoma 7 139332 -NCIT:C45843 Pancreatic Mixed Adenoneuroendocrine Carcinoma 6 139333 -NCIT:C6878 Pancreatic Mixed Acinar-Neuroendocrine Carcinoma 7 139334 -NCIT:C6879 Pancreatic Mixed Ductal-Neuroendocrine Carcinoma 7 139335 -NCIT:C95460 Pancreatic Mixed Acinar-Ductal Neuroendocrine Carcinoma 7 139336 -NCIT:C95621 Esophageal Mixed Adenoneuroendocrine Carcinoma 6 139337 -NCIT:C95886 Gastric Mixed Adenoneuroendocrine Carcinoma 6 139338 -NCIT:C95986 Ampulla of Vater Mixed Adenoneuroendocrine Carcinoma 6 139339 -NCIT:C96066 Small Intestinal Mixed Adenoneuroendocrine Carcinoma 6 139340 -NCIT:C96158 Colorectal Mixed Adenoneuroendocrine Carcinoma 6 139341 -NCIT:C96553 Anal Canal Mixed Adenoneuroendocrine Carcinoma 6 139342 -NCIT:C96927 Gallbladder Mixed Adenoneuroendocrine Carcinoma 6 139343 -NCIT:C96928 Gallbladder Goblet Cell Carcinoid 7 139344 -NCIT:C96959 Extrahepatic Bile Duct Mixed Adenoneuroendocrine Carcinoma 6 139345 -NCIT:C190275 Childhood Carcinoma 4 139346 -NCIT:C118808 Childhood Colorectal Carcinoma 5 139347 -NCIT:C118823 Childhood Rectal Carcinoma 6 139348 -NCIT:C118809 Childhood Breast Carcinoma 5 139349 -NCIT:C118811 Childhood Laryngeal Carcinoma 5 139350 -NCIT:C118812 Childhood Esophageal Carcinoma 5 139351 -NCIT:C118813 Childhood Gastric Carcinoma 5 139352 -NCIT:C118814 Childhood Lung Non-Small Cell Carcinoma 5 139353 -NCIT:C118815 Childhood Lung Small Cell Carcinoma 5 139354 -NCIT:C118816 Childhood Bladder Carcinoma 5 139355 -NCIT:C118817 Childhood Nasal Cavity Carcinoma 5 139356 -NCIT:C118818 Childhood Paranasal Sinus Carcinoma 5 139357 -NCIT:C118819 Childhood Parathyroid Gland Carcinoma 5 139358 -NCIT:C118824 Childhood Salivary Gland Carcinoma 5 139359 -NCIT:C190273 Childhood Salivary Gland Mucoepidermoid Carcinoma 6 139360 -NCIT:C190274 Childhood Salivary Gland Acinic Cell Carcinoma 6 139361 -NCIT:C118827 Childhood Thyroid Gland Carcinoma 5 139362 -NCIT:C123903 Childhood Thyroid Gland Papillary Carcinoma 6 139363 -NCIT:C123904 Childhood Thyroid Gland Follicular Carcinoma 6 139364 -NCIT:C123905 Childhood Thyroid Gland Medullary Carcinoma 6 139365 -NCIT:C190064 Childhood Thyroid Gland Spindle Epithelial Tumor with Thymus-Like Elements 6 139366 -NCIT:C123933 Childhood Small Intestinal Carcinoma 5 139367 -NCIT:C124292 Childhood Choroid Plexus Carcinoma 5 139368 -NCIT:C189244 Childhood Kidney Carcinoma 5 139369 -NCIT:C189248 Childhood SMARCB1-Deficient Kidney Medullary Carcinoma 6 139370 -NCIT:C6568 Childhood Renal Cell Carcinoma 6 139371 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 7 139372 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 7 139373 -NCIT:C189255 Childhood Eosinophilic Solid and Cystic Renal Cell Carcinoma 7 139374 -NCIT:C189334 Childhood Ovarian Small Cell Carcinoma, Hypercalcemic Type 5 139375 -NCIT:C190024 Childhood Pancreatic Acinar Cell Carcinoma 5 139376 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 6 139377 -NCIT:C190069 Childhood Adrenal Cortical Carcinoma 5 139378 -NCIT:C190272 Childhood Mucoepidermoid Carcinoma 5 139379 -NCIT:C190273 Childhood Salivary Gland Mucoepidermoid Carcinoma 6 139380 -NCIT:C190276 Childhood Nasopharyngeal Carcinoma 5 139381 -NCIT:C190277 Childhood NUT Carcinoma 5 139382 -NCIT:C190278 Childhood Head and Neck NUT Carcinoma 6 139383 -NCIT:C7955 Childhood Hepatocellular Carcinoma 5 139384 -NCIT:C189932 Childhood Fibrolamellar Carcinoma 6 139385 -NCIT:C5708 Stage III Childhood Hepatocellular Carcinoma AJCC v7 6 139386 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 6 139387 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 6 139388 -NCIT:C7838 Stage IV Childhood Hepatocellular Carcinoma AJCC v7 6 139389 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 6 139390 -NCIT:C27004 Sarcomatoid Carcinoma 4 139391 -NCIT:C27084 Spindle Cell Squamous Cell Carcinoma 5 139392 -NCIT:C129289 Gingival Spindle Cell Carcinoma 6 139393 -NCIT:C173079 Sinonasal Spindle Cell Squamous Cell Carcinoma 6 139394 -NCIT:C174398 Conjunctival Spindle Cell Carcinoma 6 139395 -NCIT:C40358 Breast Squamous Cell Carcinoma, Spindle Cell Variant 6 139396 -NCIT:C4666 Skin Spindle Cell Squamous Cell Carcinoma 6 139397 -NCIT:C54336 Laryngeal Squamous Cell Carcinoma, Spindle Cell Variant 6 139398 -NCIT:C6984 Sarcomatoid Carcinoma of the Penis 6 139399 -NCIT:C95608 Esophageal Spindle Cell Carcinoma 6 139400 -NCIT:C27893 Sarcomatoid Renal Cell Carcinoma 5 139401 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 6 139402 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 7 139403 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 7 139404 -NCIT:C183251 Unresectable Sarcomatoid Renal Cell Carcinoma 6 139405 -NCIT:C38111 Skin Basal Cell Carcinoma with Sarcomatoid Differentiation 5 139406 -NCIT:C4094 Pleomorphic Carcinoma 5 139407 -NCIT:C45542 Lung Pleomorphic Carcinoma 6 139408 -NCIT:C4120 Sarcomatoid Transitional Cell Carcinoma 5 139409 -NCIT:C164252 Invasive Sarcomatoid Urothelial Carcinoma 6 139410 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 7 139411 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 139412 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 7 139413 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 139414 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 8 139415 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 8 139416 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 7 139417 -NCIT:C45540 Lung Sarcomatoid Carcinoma 5 139418 -NCIT:C3732 Pulmonary Blastoma 6 139419 -NCIT:C4452 Lung Giant Cell Carcinoma 6 139420 -NCIT:C45541 Lung Spindle Cell Carcinoma 6 139421 -NCIT:C45542 Lung Pleomorphic Carcinoma 6 139422 -NCIT:C45543 Lung Carcinosarcoma 6 139423 -NCIT:C5530 Prostate Acinar Adenocarcinoma, Sarcomatoid Variant 5 139424 -NCIT:C6463 Thymic Sarcomatoid Carcinoma 5 139425 -NCIT:C68644 Adrenal Cortical Sarcomatoid Carcinoma 5 139426 -NCIT:C96494 Colorectal Sarcomatoid Carcinoma 5 139427 -NCIT:C5556 Rectal Sarcomatoid Carcinoma 6 139428 -NCIT:C27236 Tobacco-Related Carcinoma 4 139429 -NCIT:C27772 Cigarette Smoking-Related Carcinoma 5 139430 -NCIT:C27773 Tobacco Chewing-Related Carcinoma 5 139431 -NCIT:C27633 Transplant-Related Carcinoma 4 139432 -NCIT:C154700 Transplant-Related Squamous Cell Carcinoma 5 139433 -NCIT:C27636 Transplant-Related Skin Squamous Cell Carcinoma 6 139434 -NCIT:C27634 Transplant-Related Bladder Urothelial Carcinoma 5 139435 -NCIT:C27635 Transplant-Related Hepatocellular Carcinoma 5 139436 -NCIT:C27637 Transplant-Related Lung Carcinoma 5 139437 -NCIT:C27638 Transplant-Related Renal Cell Carcinoma 5 139438 -NCIT:C27698 Virus-Related Carcinoma 4 139439 -NCIT:C27674 Human Papillomavirus-Related Carcinoma 5 139440 -NCIT:C27675 Human Papillomavirus-Related Cervical Carcinoma 6 139441 -NCIT:C27676 Human Papillomavirus-Related Cervical Squamous Cell Carcinoma 7 139442 -NCIT:C40192 Cervical Papillary Squamous Cell Carcinoma 8 139443 -NCIT:C40191 Cervical Warty Carcinoma 9 139444 -NCIT:C40194 Cervical Squamotransitional Carcinoma 9 139445 -NCIT:C27677 Human Papillomavirus-Related Cervical Adenocarcinoma 7 139446 -NCIT:C127907 Endocervical Adenocarcinoma, Usual-Type 8 139447 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 9 139448 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 9 139449 -NCIT:C40208 Cervical Villoglandular Adenocarcinoma 9 139450 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 8 139451 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 8 139452 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 8 139453 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 8 139454 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 8 139455 -NCIT:C27683 Human Papillomavirus-Related Squamous Cell Carcinoma 6 139456 -NCIT:C171023 Human Papillomavirus-Related Mucosal Head and Neck Squamous Cell Carcinoma 7 139457 -NCIT:C173078 Sinonasal Human Papillomavirus-Related Carcinoma with Adenoid Cystic-Like Features 8 139458 -NCIT:C87055 Oropharyngeal Human Papillomavirus-Positive Squamous Cell Carcinoma 8 139459 -NCIT:C180917 Human Papillomavirus-Related Vaginal Squamous Cell Carcinoma 7 139460 -NCIT:C40248 Vaginal Warty Carcinoma 8 139461 -NCIT:C187051 Human Papillomavirus-Related Head and Neck Squamous Cell Carcinoma of Unknown Primary 7 139462 -NCIT:C27676 Human Papillomavirus-Related Cervical Squamous Cell Carcinoma 7 139463 -NCIT:C40192 Cervical Papillary Squamous Cell Carcinoma 8 139464 -NCIT:C40191 Cervical Warty Carcinoma 9 139465 -NCIT:C40194 Cervical Squamotransitional Carcinoma 9 139466 -NCIT:C27678 Human Papillomavirus-Related Verrucous Carcinoma 7 139467 -NCIT:C27679 Human Papillomavirus-Related Vulvar Squamous Cell Carcinoma 7 139468 -NCIT:C40287 Vulvar Warty Carcinoma 8 139469 -NCIT:C27680 Human Papillomavirus-Related Esophageal Squamous Cell Carcinoma 7 139470 -NCIT:C27681 Human Papillomavirus-Related Anal Squamous Cell Carcinoma 7 139471 -NCIT:C27682 Human Papillomavirus-Related Squamous Cell Carcinoma of the Penis 7 139472 -NCIT:C159250 Warty-Basaloid Carcinoma of the Penis 8 139473 -NCIT:C159251 Clear Cell Squamous Cell Carcinoma of the Penis 8 139474 -NCIT:C159252 Lymphoepithelioma-Like Carcinoma of the Penis 8 139475 -NCIT:C6980 Basaloid Squamous Cell Carcinoma of the Penis 8 139476 -NCIT:C159249 Papillary-Basaloid Carcinoma of the Penis 9 139477 -NCIT:C6981 Warty Carcinoma of the Penis 8 139478 -NCIT:C39862 Human Papillomavirus-Related Urethral Squamous Cell Carcinoma 7 139479 -NCIT:C27684 Human Papillomavirus-Related Adenocarcinoma 6 139480 -NCIT:C180943 Human Papillomavirus-Related Vaginal Adenocarcinoma 7 139481 -NCIT:C27677 Human Papillomavirus-Related Cervical Adenocarcinoma 7 139482 -NCIT:C127907 Endocervical Adenocarcinoma, Usual-Type 8 139483 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 9 139484 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 9 139485 -NCIT:C40208 Cervical Villoglandular Adenocarcinoma 9 139486 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 8 139487 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 8 139488 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 8 139489 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 8 139490 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 8 139491 -NCIT:C97046 Human Papillomavirus-Related Adenosquamous Carcinoma 6 139492 -NCIT:C27686 Hepatitis Virus-Related Hepatocellular Carcinoma 5 139493 -NCIT:C27687 Hepatitis B Virus-Related Hepatocellular Carcinoma 6 139494 -NCIT:C27688 Hepatitis C Virus-Related Hepatocellular Carcinoma 6 139495 -NCIT:C27690 EBV-Related Carcinoma 5 139496 -NCIT:C162304 EBV-Related Gastric Carcinoma 6 139497 -NCIT:C7373 Nasopharyngeal Nonkeratinizing Carcinoma 6 139498 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 7 139499 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 8 139500 -NCIT:C54389 Nasopharyngeal Differentiated Carcinoma 7 139501 -NCIT:C8023 Nasopharyngeal Undifferentiated Carcinoma 7 139502 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 8 139503 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 8 139504 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 8 139505 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 8 139506 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 8 139507 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 8 139508 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 8 139509 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 6 139510 -NCIT:C27700 AIDS-Related Carcinoma 5 139511 -NCIT:C7432 AIDS-Related Cervical Carcinoma 6 139512 -NCIT:C9278 AIDS-Related Anal Carcinoma 6 139513 -NCIT:C133095 AIDS-Related Anal Canal Carcinoma 7 139514 -NCIT:C27282 Stage 0 AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 139515 -NCIT:C27283 Stage I AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 139516 -NCIT:C27284 Stage II AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 139517 -NCIT:C27285 Stage III AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 139518 -NCIT:C27286 Stage IV AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 139519 -NCIT:C9249 Recurrent AIDS-Related Anal Canal Carcinoma 8 139520 -NCIT:C27764 Helicobacter Pylori-Related Carcinoma 4 139521 -NCIT:C27765 Helicobacter Pylori-Related Gastric Adenocarcinoma 5 139522 -NCIT:C27767 Parasite-Related Carcinoma 4 139523 -NCIT:C27768 Schistosoma Hematobium-Related Bladder Squamous Cell Carcinoma 5 139524 -NCIT:C39833 Schistosoma Hematobium-Related Bladder Verrucous Carcinoma 6 139525 -NCIT:C27769 Opisthorchis Viverrini-Related Cholangiocarcinoma 5 139526 -NCIT:C27825 Mucin-Producing Carcinoma 4 139527 -NCIT:C27379 Mucin-Producing Adenocarcinoma 5 139528 -NCIT:C167364 Endocrine Mucin-Producing Sweat Gland Carcinoma 6 139529 -NCIT:C3772 Mucoepidermoid Carcinoma 5 139530 -NCIT:C175339 Lacrimal Drainage System Mucoepidermoid Carcinoma 6 139531 -NCIT:C180878 Cervical Mucoepidermoid Carcinoma 6 139532 -NCIT:C190272 Childhood Mucoepidermoid Carcinoma 6 139533 -NCIT:C190273 Childhood Salivary Gland Mucoepidermoid Carcinoma 7 139534 -NCIT:C38762 Thyroid Gland Mucoepidermoid Carcinoma 6 139535 -NCIT:C38763 Thyroid Gland Sclerosing Mucoepidermoid Carcinoma with Eosinophilia 7 139536 -NCIT:C4472 Mucoepidermoid Skin Carcinoma 6 139537 -NCIT:C45544 Lung Mucoepidermoid Carcinoma 6 139538 -NCIT:C5166 Breast Mucoepidermoid Carcinoma 6 139539 -NCIT:C5167 High Grade Breast Mucoepidermoid Carcinoma 7 139540 -NCIT:C5168 Low Grade Breast Mucoepidermoid Carcinoma 7 139541 -NCIT:C5343 Esophageal Mucoepidermoid Carcinoma 6 139542 -NCIT:C5862 Extrahepatic Bile Duct Mucoepidermoid Carcinoma 6 139543 -NCIT:C5908 Salivary Gland Mucoepidermoid Carcinoma 6 139544 -NCIT:C190273 Childhood Salivary Gland Mucoepidermoid Carcinoma 7 139545 -NCIT:C5906 Major Salivary Gland Mucoepidermoid Carcinoma 7 139546 -NCIT:C5938 Parotid Gland Mucoepidermoid Carcinoma 8 139547 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 9 139548 -NCIT:C5939 Submandibular Gland Mucoepidermoid Carcinoma 8 139549 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 9 139550 -NCIT:C5953 Minor Salivary Gland Mucoepidermoid Carcinoma 7 139551 -NCIT:C8015 Low Grade Salivary Gland Mucoepidermoid Carcinoma 7 139552 -NCIT:C8017 Intermediate Grade Salivary Gland Mucoepidermoid Carcinoma 7 139553 -NCIT:C8019 High Grade Salivary Gland Mucoepidermoid Carcinoma 7 139554 -NCIT:C6018 Paranasal Sinus Mucoepidermoid Carcinoma 6 139555 -NCIT:C6091 Lacrimal Gland Mucoepidermoid Carcinoma 6 139556 -NCIT:C6457 Thymic Mucoepidermoid Carcinoma 6 139557 -NCIT:C8177 Oral Cavity Mucoepidermoid Carcinoma 6 139558 -NCIT:C156090 Metastatic Oral Cavity Mucoepidermoid Carcinoma 7 139559 -NCIT:C181160 Tongue Mucoepidermoid Carcinoma 7 139560 -NCIT:C5990 Posterior Tongue Mucoepidermoid Carcinoma 8 139561 -NCIT:C6250 Anterior Tongue Mucoepidermoid Carcinoma 8 139562 -NCIT:C6214 Hard Palate Mucoepidermoid Carcinoma 7 139563 -NCIT:C8178 Floor of Mouth Mucoepidermoid Carcinoma 7 139564 -NCIT:C8199 Stage I Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 7 139565 -NCIT:C8203 Stage II Oral Cavity Mucoepidermoid Carcinoma 7 139566 -NCIT:C8207 Stage III Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 7 139567 -NCIT:C8211 Stage IV Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 7 139568 -NCIT:C5866 Stage IVC Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 139569 -NCIT:C5867 Stage IVB Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 139570 -NCIT:C5868 Stage IVA Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 139571 -NCIT:C8215 Recurrent Oral Cavity Mucoepidermoid Carcinoma 7 139572 -NCIT:C9463 Laryngeal Mucoepidermoid Carcinoma 6 139573 -NCIT:C27927 Alcohol-Related Carcinoma 4 139574 -NCIT:C27924 Alcohol-Related Hepatocellular Carcinoma 5 139575 -NCIT:C27928 Alcohol-Related Esophageal Squamous Cell Carcinoma 5 139576 -NCIT:C27929 Alcohol-Related Laryngeal Carcinoma 5 139577 -NCIT:C27949 Metaplastic Carcinoma 4 139578 -NCIT:C191749 Squamous Cell Carcinoma of the Urinary Tract 5 139579 -NCIT:C4031 Bladder Squamous Cell Carcinoma 6 139580 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 7 139581 -NCIT:C27768 Schistosoma Hematobium-Related Bladder Squamous Cell Carcinoma 7 139582 -NCIT:C39833 Schistosoma Hematobium-Related Bladder Verrucous Carcinoma 8 139583 -NCIT:C39832 Bladder Verrucous Carcinoma 7 139584 -NCIT:C39833 Schistosoma Hematobium-Related Bladder Verrucous Carcinoma 8 139585 -NCIT:C39845 Urachal Squamous Cell Carcinoma 7 139586 -NCIT:C4994 Stage II Bladder Squamous Cell Carcinoma AJCC v6 and v7 7 139587 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 7 139588 -NCIT:C8903 Stage 0 Bladder Squamous Cell Carcinoma AJCC v6 and v7 7 139589 -NCIT:C8904 Stage I Squamous Cell Carcinoma of the Bladder AJCC v6 and v7 7 139590 -NCIT:C8905 Stage III Bladder Squamous Cell Carcinoma AJCC v6 and v7 7 139591 -NCIT:C8906 Stage IV Bladder Squamous Cell Carcinoma AJCC v7 7 139592 -NCIT:C4126 Intestinal-Type Adenocarcinoma 5 139593 -NCIT:C116316 Sinonasal Adenocarcinoma, Intestinal-Type 6 139594 -NCIT:C160984 Sinonasal Adenocarcinoma, Intestinal-Type with Papillary Pattern 7 139595 -NCIT:C160986 Sinonasal Adenocarcinoma, Intestinal-Type with Colonic Pattern 7 139596 -NCIT:C160987 Sinonasal Adenocarcinoma, Intestinal-Type with Solid Pattern 7 139597 -NCIT:C160995 Sinonasal Adenocarcinoma, Intestinal-Type with Mucinous Pattern 7 139598 -NCIT:C161000 Sinonasal Adenocarcinoma, Intestinal-Type with Mixed Pattern 7 139599 -NCIT:C128166 Vulvar Adenocarcinoma, Intestinal-Type 6 139600 -NCIT:C136710 Lung Enteric Adenocarcinoma 6 139601 -NCIT:C180536 Endometrial Mucinous Adenocarcinoma, Intestinal-Type 6 139602 -NCIT:C180946 Vaginal Mucinous Adenocarcinoma, Intestinal-Type 6 139603 -NCIT:C183314 Thymic Enteric-Type Adenocarcinoma 6 139604 -NCIT:C27415 Ampulla of Vater Intestinal-Type Adenocarcinoma 6 139605 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 6 139606 -NCIT:C43604 Gallbladder Adenocarcinoma, Intestinal-Type 6 139607 -NCIT:C9157 Gastric Intestinal-Type Adenocarcinoma 6 139608 -NCIT:C7027 Barrett Adenocarcinoma 5 139609 -NCIT:C2852 Adenocarcinoma 4 139610 -NCIT:C129449 Small Cell Adenocarcinoma 5 139611 -NCIT:C129654 Unresectable Digestive System Adenocarcinoma 5 139612 -NCIT:C150578 Unresectable Gastroesophageal Junction Adenocarcinoma 6 139613 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 7 139614 -NCIT:C154221 Unresectable Gastric Adenocarcinoma 6 139615 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 7 139616 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 8 139617 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 8 139618 -NCIT:C162016 Unresectable Pancreatic Adenocarcinoma 6 139619 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 7 139620 -NCIT:C172245 Unresectable Pancreatic Ductal Adenocarcinoma 7 139621 -NCIT:C165171 Unresectable Liver and Intrahepatic Bile Duct Carcinoma 6 139622 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 7 139623 -NCIT:C27345 Unresectable Hepatocellular Carcinoma 7 139624 -NCIT:C162602 Unresectable Fibrolamellar Carcinoma 8 139625 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 8 139626 -NCIT:C7878 Localized Unresectable Adult Liver Carcinoma 7 139627 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 8 139628 -NCIT:C171585 Unresectable Colorectal Adenocarcinoma 6 139629 -NCIT:C162116 Unresectable Colon Adenocarcinoma 7 139630 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 8 139631 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 7 139632 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 8 139633 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 7 139634 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 8 139635 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 8 139636 -NCIT:C173162 Unresectable Esophageal Adenocarcinoma 6 139637 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 7 139638 -NCIT:C172248 Unresectable Distal Esophagus Adenocarcinoma 7 139639 -NCIT:C175516 Unresectable Small Intestinal Adenocarcinoma 6 139640 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 7 139641 -NCIT:C189064 Unresectable Gallbladder Adenocarcinoma 6 139642 -NCIT:C189065 Unresectable Ampulla of Vater Adenocarcinoma 6 139643 -NCIT:C27324 Unresectable Cholangiocarcinoma 6 139644 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 7 139645 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 7 139646 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 7 139647 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 7 139648 -NCIT:C159563 Refractory Adenocarcinoma 5 139649 -NCIT:C158101 Refractory Cholangiocarcinoma 6 139650 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 7 139651 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 7 139652 -NCIT:C162015 Refractory Pancreatic Adenocarcinoma 6 139653 -NCIT:C165450 Refractory Pancreatic Ductal Adenocarcinoma 7 139654 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 7 139655 -NCIT:C162154 Refractory Colorectal Adenocarcinoma 6 139656 -NCIT:C162155 Refractory Colon Adenocarcinoma 7 139657 -NCIT:C162157 Refractory Rectal Adenocarcinoma 7 139658 -NCIT:C162450 Refractory Hepatocellular Carcinoma 6 139659 -NCIT:C188887 Refractory Fibrolamellar Carcinoma 7 139660 -NCIT:C162538 Refractory Gastroesophageal Junction Adenocarcinoma 6 139661 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 6 139662 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 7 139663 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 7 139664 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 7 139665 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 7 139666 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 7 139667 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 6 139668 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 7 139669 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 7 139670 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 8 139671 -NCIT:C165703 Refractory Breast Adenocarcinoma 6 139672 -NCIT:C157057 Refractory Hormone Receptor-Positive Breast Carcinoma 7 139673 -NCIT:C167076 Refractory Triple-Negative Breast Carcinoma 7 139674 -NCIT:C168784 Refractory HER2-Negative Breast Carcinoma 7 139675 -NCIT:C182110 Refractory HER2-Positive Breast Carcinoma 7 139676 -NCIT:C165745 Refractory Renal Cell Carcinoma 6 139677 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 7 139678 -NCIT:C167074 Refractory Gastric Adenocarcinoma 6 139679 -NCIT:C167256 Refractory Prostate Adenocarcinoma 6 139680 -NCIT:C170968 Refractory Ovarian Adenocarcinoma 6 139681 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 7 139682 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 7 139683 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 8 139684 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 8 139685 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 7 139686 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 7 139687 -NCIT:C170971 Refractory Fallopian Tube Adenocarcinoma 6 139688 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 7 139689 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 7 139690 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 7 139691 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 7 139692 -NCIT:C170975 Refractory Primary Peritoneal Adenocarcinoma 6 139693 -NCIT:C171021 Refractory Primary Peritoneal Serous Adenocarcinoma 7 139694 -NCIT:C178686 Refractory Primary Peritoneal High Grade Serous Adenocarcinoma 8 139695 -NCIT:C178687 Refractory Primary Peritoneal Low Grade Serous Adenocarcinoma 8 139696 -NCIT:C178684 Refractory Primary Peritoneal Clear Cell Adenocarcinoma 7 139697 -NCIT:C178685 Refractory Primary Peritoneal Endometrioid Adenocarcinoma 7 139698 -NCIT:C176892 Refractory Esophageal Adenocarcinoma 6 139699 -NCIT:C179178 Refractory Appendix Adenocarcinoma 6 139700 -NCIT:C179180 Refractory Pseudomyxoma Peritonei 6 139701 -NCIT:C179209 Refractory Lung Adenocarcinoma 6 139702 -NCIT:C181036 Refractory Cervical Adenocarcinoma 6 139703 -NCIT:C188036 Refractory Adrenal Cortical Carcinoma 6 139704 -NCIT:C159565 Recurrent Adenocarcinoma 5 139705 -NCIT:C136651 Recurrent Cervical Adenocarcinoma 6 139706 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 7 139707 -NCIT:C153359 Recurrent Gastroesophageal Junction Adenocarcinoma 6 139708 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 6 139709 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 6 139710 -NCIT:C153574 Recurrent Ampulla of Vater Adenocarcinoma 6 139711 -NCIT:C153575 Recurrent Anal Adenocarcinoma 6 139712 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 7 139713 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 7 139714 -NCIT:C153611 Recurrent Salivary Duct Carcinoma 6 139715 -NCIT:C153612 Recurrent Minor Salivary Gland Adenocarcinoma 6 139716 -NCIT:C153614 Recurrent Ovarian Adenocarcinoma 6 139717 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 7 139718 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 7 139719 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 8 139720 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 8 139721 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 8 139722 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 7 139723 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 7 139724 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 8 139725 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 7 139726 -NCIT:C154622 Recurrent Gastric Adenocarcinoma 6 139727 -NCIT:C155742 Recurrent Pancreatic Adenocarcinoma 6 139728 -NCIT:C153569 Recurrent Pancreatic Acinar Cell Carcinoma 7 139729 -NCIT:C153619 Recurrent Pancreatic Ductal Adenocarcinoma 7 139730 -NCIT:C153620 Recurrent Pancreatic Cystadenocarcinoma 7 139731 -NCIT:C158421 Recurrent Endometrioid Adenocarcinoma 6 139732 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 7 139733 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 7 139734 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 7 139735 -NCIT:C165269 Recurrent Primary Peritoneal Endometrioid Adenocarcinoma 7 139736 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 6 139737 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 7 139738 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 7 139739 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 7 139740 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 7 139741 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 7 139742 -NCIT:C162441 Recurrent Colorectal Adenocarcinoma 6 139743 -NCIT:C162442 Recurrent Colon Adenocarcinoma 7 139744 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 7 139745 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 6 139746 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 7 139747 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 7 139748 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 8 139749 -NCIT:C170766 Recurrent Fallopian Tube Adenocarcinoma 6 139750 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 7 139751 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 7 139752 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 7 139753 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 7 139754 -NCIT:C170767 Recurrent Primary Peritoneal Adenocarcinoma 6 139755 -NCIT:C156453 Recurrent Primary Peritoneal Serous Adenocarcinoma 7 139756 -NCIT:C156454 Recurrent Primary Peritoneal Low Grade Serous Adenocarcinoma 8 139757 -NCIT:C165268 Recurrent Primary Peritoneal High Grade Serous Adenocarcinoma 8 139758 -NCIT:C165269 Recurrent Primary Peritoneal Endometrioid Adenocarcinoma 7 139759 -NCIT:C170761 Recurrent Primary Peritoneal Clear Cell Adenocarcinoma 7 139760 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 6 139761 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 7 139762 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 6 139763 -NCIT:C175588 Recurrent Breast Adenocarcinoma 6 139764 -NCIT:C153568 Recurrent Breast Acinic Cell Carcinoma 7 139765 -NCIT:C153584 Recurrent Lobular Breast Carcinoma 7 139766 -NCIT:C153587 Recurrent Invasive Breast Carcinoma of No Special Type 7 139767 -NCIT:C153588 Recurrent Breast Paget Disease 7 139768 -NCIT:C168783 Recurrent HER2-Negative Breast Carcinoma 7 139769 -NCIT:C171014 Recurrent Triple-Negative Breast Carcinoma 7 139770 -NCIT:C182108 Recurrent HER2-Positive Breast Carcinoma 7 139771 -NCIT:C185157 Recurrent Hormone Receptor-Positive Breast Carcinoma 7 139772 -NCIT:C8607 Recurrent Breast Inflammatory Carcinoma 7 139773 -NCIT:C179174 Recurrent Appendix Adenocarcinoma 6 139774 -NCIT:C153579 Recurrent Appendix Mucinous Adenocarcinoma 7 139775 -NCIT:C179179 Recurrent Pseudomyxoma Peritonei 6 139776 -NCIT:C27325 Recurrent Cholangiocarcinoma 6 139777 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 7 139778 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 7 139779 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 6 139780 -NCIT:C6417 Recurrent Adrenal Cortical Carcinoma 6 139781 -NCIT:C7825 Recurrent Renal Cell Carcinoma 6 139782 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 7 139783 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 8 139784 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 7 139785 -NCIT:C7828 Recurrent Parathyroid Gland Carcinoma 6 139786 -NCIT:C8627 Recurrent Esophageal Adenocarcinoma 6 139787 -NCIT:C8757 Recurrent Lung Adenocarcinoma 6 139788 -NCIT:C9264 Recurrent Hepatocellular Carcinoma 6 139789 -NCIT:C154082 Recurrent Fibrolamellar Carcinoma 7 139790 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 7 139791 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 7 139792 -NCIT:C160976 Sinonasal Adenocarcinoma 5 139793 -NCIT:C161007 Sinonasal Adenocarcinoma, Salivary-Type 6 139794 -NCIT:C161008 Sinonasal Adenocarcinoma, Non-Salivary-Type 6 139795 -NCIT:C116316 Sinonasal Adenocarcinoma, Intestinal-Type 7 139796 -NCIT:C160984 Sinonasal Adenocarcinoma, Intestinal-Type with Papillary Pattern 8 139797 -NCIT:C160986 Sinonasal Adenocarcinoma, Intestinal-Type with Colonic Pattern 8 139798 -NCIT:C160987 Sinonasal Adenocarcinoma, Intestinal-Type with Solid Pattern 8 139799 -NCIT:C160995 Sinonasal Adenocarcinoma, Intestinal-Type with Mucinous Pattern 8 139800 -NCIT:C161000 Sinonasal Adenocarcinoma, Intestinal-Type with Mixed Pattern 8 139801 -NCIT:C160977 Sinonasal Adenocarcinoma, Non-Intestinal-Type 7 139802 -NCIT:C6015 Nasal Cavity Adenocarcinoma 6 139803 -NCIT:C6017 Paranasal Sinus Adenocarcinoma 6 139804 -NCIT:C6237 Ethmoid Sinus Adenocarcinoma 7 139805 -NCIT:C6240 Maxillary Sinus Adenocarcinoma 7 139806 -NCIT:C167341 Adnexal Adenocarcinoma, Not Otherwise Specified 5 139807 -NCIT:C167368 Adnexal Secretory Carcinoma 5 139808 -NCIT:C167369 Signet Ring Cell/Histiocytoid Carcinoma 5 139809 -NCIT:C170733 Primary Peritoneal Adenocarcinoma 5 139810 -NCIT:C162566 Primary Peritoneal Clear Cell Adenocarcinoma 6 139811 -NCIT:C170761 Recurrent Primary Peritoneal Clear Cell Adenocarcinoma 7 139812 -NCIT:C178684 Refractory Primary Peritoneal Clear Cell Adenocarcinoma 7 139813 -NCIT:C165260 Primary Peritoneal Endometrioid Adenocarcinoma 6 139814 -NCIT:C165269 Recurrent Primary Peritoneal Endometrioid Adenocarcinoma 7 139815 -NCIT:C178685 Refractory Primary Peritoneal Endometrioid Adenocarcinoma 7 139816 -NCIT:C186276 Unresectable Primary Peritoneal Endometrioid Adenocarcinoma 7 139817 -NCIT:C170767 Recurrent Primary Peritoneal Adenocarcinoma 6 139818 -NCIT:C156453 Recurrent Primary Peritoneal Serous Adenocarcinoma 7 139819 -NCIT:C156454 Recurrent Primary Peritoneal Low Grade Serous Adenocarcinoma 8 139820 -NCIT:C165268 Recurrent Primary Peritoneal High Grade Serous Adenocarcinoma 8 139821 -NCIT:C165269 Recurrent Primary Peritoneal Endometrioid Adenocarcinoma 7 139822 -NCIT:C170761 Recurrent Primary Peritoneal Clear Cell Adenocarcinoma 7 139823 -NCIT:C170972 Metastatic Primary Peritoneal Adenocarcinoma 6 139824 -NCIT:C171019 Metastatic Primary Peritoneal Serous Adenocarcinoma 7 139825 -NCIT:C186453 Metastatic Primary Peritoneal High Grade Serous Adenocarcinoma 8 139826 -NCIT:C170974 Unresectable Primary Peritoneal Adenocarcinoma 6 139827 -NCIT:C171020 Unresectable Primary Peritoneal Serous Adenocarcinoma 7 139828 -NCIT:C186275 Unresectable Primary Peritoneal High Grade Serous Adenocarcinoma 8 139829 -NCIT:C186276 Unresectable Primary Peritoneal Endometrioid Adenocarcinoma 7 139830 -NCIT:C170975 Refractory Primary Peritoneal Adenocarcinoma 6 139831 -NCIT:C171021 Refractory Primary Peritoneal Serous Adenocarcinoma 7 139832 -NCIT:C178686 Refractory Primary Peritoneal High Grade Serous Adenocarcinoma 8 139833 -NCIT:C178687 Refractory Primary Peritoneal Low Grade Serous Adenocarcinoma 8 139834 -NCIT:C178684 Refractory Primary Peritoneal Clear Cell Adenocarcinoma 7 139835 -NCIT:C178685 Refractory Primary Peritoneal Endometrioid Adenocarcinoma 7 139836 -NCIT:C40023 Primary Peritoneal Serous Adenocarcinoma 6 139837 -NCIT:C126353 Primary Peritoneal High Grade Serous Adenocarcinoma 7 139838 -NCIT:C165268 Recurrent Primary Peritoneal High Grade Serous Adenocarcinoma 8 139839 -NCIT:C178686 Refractory Primary Peritoneal High Grade Serous Adenocarcinoma 8 139840 -NCIT:C186275 Unresectable Primary Peritoneal High Grade Serous Adenocarcinoma 8 139841 -NCIT:C186453 Metastatic Primary Peritoneal High Grade Serous Adenocarcinoma 8 139842 -NCIT:C126354 Primary Peritoneal Low Grade Serous Adenocarcinoma 7 139843 -NCIT:C156454 Recurrent Primary Peritoneal Low Grade Serous Adenocarcinoma 8 139844 -NCIT:C178687 Refractory Primary Peritoneal Low Grade Serous Adenocarcinoma 8 139845 -NCIT:C156453 Recurrent Primary Peritoneal Serous Adenocarcinoma 7 139846 -NCIT:C156454 Recurrent Primary Peritoneal Low Grade Serous Adenocarcinoma 8 139847 -NCIT:C165268 Recurrent Primary Peritoneal High Grade Serous Adenocarcinoma 8 139848 -NCIT:C171019 Metastatic Primary Peritoneal Serous Adenocarcinoma 7 139849 -NCIT:C186453 Metastatic Primary Peritoneal High Grade Serous Adenocarcinoma 8 139850 -NCIT:C171020 Unresectable Primary Peritoneal Serous Adenocarcinoma 7 139851 -NCIT:C186275 Unresectable Primary Peritoneal High Grade Serous Adenocarcinoma 8 139852 -NCIT:C171021 Refractory Primary Peritoneal Serous Adenocarcinoma 7 139853 -NCIT:C178686 Refractory Primary Peritoneal High Grade Serous Adenocarcinoma 8 139854 -NCIT:C178687 Refractory Primary Peritoneal Low Grade Serous Adenocarcinoma 8 139855 -NCIT:C7695 Primary Peritoneal Serous Papillary Adenocarcinoma 7 139856 -NCIT:C174551 Retinal Pigment Epithelium Adenocarcinoma 5 139857 -NCIT:C174561 Ciliary Body Adenocarcinoma 5 139858 -NCIT:C175336 Lacrimal Drainage System Adenocarcinoma 5 139859 -NCIT:C176887 Psammocarcinoma 5 139860 -NCIT:C179320 Mesonephric-Like Adenocarcinoma 5 139861 -NCIT:C179321 Ovarian Mesonephric-Like Adenocarcinoma 6 139862 -NCIT:C179322 Endometrial Mesonephric-Like Adenocarcinoma 6 139863 -NCIT:C191751 Adenocarcinoma of the Urinary Tract 5 139864 -NCIT:C4032 Bladder Adenocarcinoma 6 139865 -NCIT:C39835 Bladder Enteric Type Adenocarcinoma 7 139866 -NCIT:C39836 Bladder Adenocarcinoma, Not Otherwise Specified 7 139867 -NCIT:C39837 Bladder Mucinous Adenocarcinoma 7 139868 -NCIT:C39838 Bladder Hepatoid Adenocarcinoma 7 139869 -NCIT:C39839 Bladder Mixed Adenocarcinoma 7 139870 -NCIT:C39843 Urachal Adenocarcinoma 7 139871 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 7 139872 -NCIT:C6163 Bladder Signet Ring Cell Adenocarcinoma 7 139873 -NCIT:C8894 Stage 0 Bladder Adenocarcinoma AJCC v6 and v7 7 139874 -NCIT:C8895 Stage I Bladder Adenocarcinoma AJCC v6 and v7 7 139875 -NCIT:C8896 Stage II Bladder Adenocarcinoma AJCC v6 and v7 7 139876 -NCIT:C8897 Stage III Bladder Adenocarcinoma AJCC v6 and v7 7 139877 -NCIT:C8898 Stage IV Bladder Adenocarcinoma AJCC v7 7 139878 -NCIT:C26712 Mucinous Adenocarcinoma 5 139879 -NCIT:C128166 Vulvar Adenocarcinoma, Intestinal-Type 6 139880 -NCIT:C136709 Invasive Lung Mucinous Adenocarcinoma 6 139881 -NCIT:C160995 Sinonasal Adenocarcinoma, Intestinal-Type with Mucinous Pattern 6 139882 -NCIT:C27416 Ampulla of Vater Mucinous Adenocarcinoma 6 139883 -NCIT:C27533 Primary Cutaneous Mucinous Carcinoma 6 139884 -NCIT:C3345 Pseudomyxoma Peritonei 6 139885 -NCIT:C179179 Recurrent Pseudomyxoma Peritonei 7 139886 -NCIT:C179180 Refractory Pseudomyxoma Peritonei 7 139887 -NCIT:C36095 Cervical Mucinous Adenocarcinoma 6 139888 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 7 139889 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 7 139890 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 7 139891 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 7 139892 -NCIT:C40206 Human Papillomavirus-Independent Cervical Adenocarcinoma, Gastric-Type 7 139893 -NCIT:C37214 Pancreatic Colloid Carcinoma 6 139894 -NCIT:C3776 Mucinous Cystadenocarcinoma 6 139895 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 7 139896 -NCIT:C40354 Breast Mucinous Cystadenocarcinoma 7 139897 -NCIT:C41246 Pancreatic Mucinous-Cystic Neoplasm with an Associated Invasive Carcinoma 7 139898 -NCIT:C5511 Appendix Mucinous Cystadenocarcinoma 7 139899 -NCIT:C65204 Papillary Mucinous Cystadenocarcinoma 7 139900 -NCIT:C39837 Bladder Mucinous Adenocarcinoma 6 139901 -NCIT:C40103 Fallopian Tube Mucinous Adenocarcinoma 6 139902 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 7 139903 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 7 139904 -NCIT:C40137 Broad Ligament Mucinous Adenocarcinoma 6 139905 -NCIT:C40144 Endometrial Mucinous Adenocarcinoma 6 139906 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 7 139907 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 7 139908 -NCIT:C40149 FIGO Grade 1 Endometrial Mucinous Adenocarcinoma 7 139909 -NCIT:C40150 FIGO Grade 2 Endometrial Mucinous Adenocarcinoma 7 139910 -NCIT:C40151 FIGO Grade 3 Endometrial Mucinous Adenocarcinoma 7 139911 -NCIT:C40252 Vaginal Mucinous Adenocarcinoma 6 139912 -NCIT:C180945 Vaginal Mucinous Adenocarcinoma, Gastric-Type 7 139913 -NCIT:C180946 Vaginal Mucinous Adenocarcinoma, Intestinal-Type 7 139914 -NCIT:C41618 Mucin-Producing Intrahepatic Cholangiocarcinoma 6 139915 -NCIT:C43536 Small Intestinal Mucinous Adenocarcinoma 6 139916 -NCIT:C43558 Appendix Mucinous Adenocarcinoma 6 139917 -NCIT:C153579 Recurrent Appendix Mucinous Adenocarcinoma 7 139918 -NCIT:C162274 Metastatic Appendix Mucinous Adenocarcinoma 7 139919 -NCIT:C5511 Appendix Mucinous Cystadenocarcinoma 7 139920 -NCIT:C43585 Colorectal Mucinous Adenocarcinoma 6 139921 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 7 139922 -NCIT:C43592 Rectosigmoid Mucinous Adenocarcinoma 7 139923 -NCIT:C7966 Colon Mucinous Adenocarcinoma 7 139924 -NCIT:C7973 Rectal Mucinous Adenocarcinoma 7 139925 -NCIT:C45512 Lung Colloid Adenocarcinoma 6 139926 -NCIT:C5243 Ovarian Mucinous Adenocarcinoma 6 139927 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 7 139928 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 7 139929 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 7 139930 -NCIT:C183245 Unresectable Ovarian Mucinous Adenocarcinoma 7 139931 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 7 139932 -NCIT:C5248 Gastric Mucinous Adenocarcinoma 6 139933 -NCIT:C5537 Prostate Acinar Mucinous Adenocarcinoma 6 139934 -NCIT:C5606 Anal Mucinous Adenocarcinoma 6 139935 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 7 139936 -NCIT:C5744 Gallbladder Mucinous Adenocarcinoma 6 139937 -NCIT:C5846 Extrahepatic Bile Duct Mucinous Adenocarcinoma 6 139938 -NCIT:C62193 Salivary Gland Mucinous Adenocarcinoma 6 139939 -NCIT:C9131 Breast Mucinous Carcinoma 6 139940 -NCIT:C40355 Breast Columnar Cell Mucinous Carcinoma 7 139941 -NCIT:C27379 Mucin-Producing Adenocarcinoma 5 139942 -NCIT:C167364 Endocrine Mucin-Producing Sweat Gland Carcinoma 6 139943 -NCIT:C27380 Thyroid Gland Adenocarcinoma 5 139944 -NCIT:C187645 Follicular-Derived Thyroid Gland Carcinoma, High Grade 6 139945 -NCIT:C187648 Differentiated High Grade Thyroid Gland Carcinoma 7 139946 -NCIT:C6040 Poorly Differentiated Thyroid Gland Carcinoma 7 139947 -NCIT:C174046 Metastatic Poorly Differentiated Thyroid Gland Carcinoma 8 139948 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 8 139949 -NCIT:C174569 Unresectable Poorly Differentiated Thyroid Gland Carcinoma 8 139950 -NCIT:C187994 Thyroid Gland Secretory Carcinoma 6 139951 -NCIT:C7153 Differentiated Thyroid Gland Carcinoma 6 139952 -NCIT:C118829 Hereditary Nonmedullary Thyroid Gland Carcinoma 7 139953 -NCIT:C140959 Differentiated Thyroid Gland Carcinoma by AJCC v7 Stage 7 139954 -NCIT:C140958 Thyroid Gland Follicular Carcinoma by AJCC v7 Stage 8 139955 -NCIT:C9084 Stage I Thyroid Gland Follicular Carcinoma AJCC v7 9 139956 -NCIT:C9085 Stage II Thyroid Gland Follicular Carcinoma AJCC v7 9 139957 -NCIT:C9086 Stage IV Thyroid Gland Follicular Carcinoma AJCC v7 9 139958 -NCIT:C115035 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v7 10 139959 -NCIT:C115036 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v7 10 139960 -NCIT:C115037 Stage IVC Thyroid Gland Follicular Carcinoma AJCC v7 10 139961 -NCIT:C9121 Stage III Thyroid Gland Follicular Carcinoma AJCC v7 9 139962 -NCIT:C140960 Thyroid Gland Papillary Carcinoma by AJCC v7 Stage 8 139963 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 9 139964 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 9 139965 -NCIT:C9083 Stage IV Thyroid Gland Papillary Carcinoma AJCC v7 9 139966 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 10 139967 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 10 139968 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 10 139969 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 9 139970 -NCIT:C87543 Stage I Differentiated Thyroid Gland Carcinoma AJCC v7 8 139971 -NCIT:C101539 Stage I Differentiated Thyroid Gland Carcinoma Under 45 Years AJCC v7 9 139972 -NCIT:C101540 Stage I Differentiated Thyroid Gland Carcinoma 45 Years and Older AJCC v7 9 139973 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 9 139974 -NCIT:C9084 Stage I Thyroid Gland Follicular Carcinoma AJCC v7 9 139975 -NCIT:C87544 Stage II Differentiated Thyroid Gland Carcinoma AJCC v7 8 139976 -NCIT:C101541 Stage II Differentiated Thyroid Gland Carcinoma Under 45 Years AJCC v7 9 139977 -NCIT:C101542 Stage II Differentiated Thyroid Gland Carcinoma 45 Years and Older AJCC v7 9 139978 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 9 139979 -NCIT:C9085 Stage II Thyroid Gland Follicular Carcinoma AJCC v7 9 139980 -NCIT:C87545 Stage III Differentiated Thyroid Gland Carcinoma AJCC v7 8 139981 -NCIT:C9121 Stage III Thyroid Gland Follicular Carcinoma AJCC v7 9 139982 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 9 139983 -NCIT:C87546 Stage IVA Differentiated Thyroid Gland Carcinoma AJCC v7 8 139984 -NCIT:C115035 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v7 9 139985 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 9 139986 -NCIT:C87547 Stage IVB Differentiated Thyroid Gland Carcinoma AJCC v7 8 139987 -NCIT:C115036 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v7 9 139988 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 9 139989 -NCIT:C87548 Stage IVC Differentiated Thyroid Gland Carcinoma AJCC v7 8 139990 -NCIT:C115037 Stage IVC Thyroid Gland Follicular Carcinoma AJCC v7 9 139991 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 9 139992 -NCIT:C140965 Differentiated Thyroid Gland Carcinoma by AJCC v8 Stage 7 139993 -NCIT:C140966 Stage I Differentiated Thyroid Gland Carcinoma AJCC v8 8 139994 -NCIT:C140967 Stage I Differentiated Thyroid Gland Carcinoma Under 55 Years AJCC v8 9 139995 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 10 139996 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 10 139997 -NCIT:C140968 Stage I Differentiated Thyroid Gland Carcinoma 55 Years and Older AJCC v8 9 139998 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 10 139999 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 10 140000 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 9 140001 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 10 140002 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 10 140003 -NCIT:C140988 Stage I Thyroid Gland Follicular Carcinoma AJCC v8 9 140004 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 10 140005 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 10 140006 -NCIT:C140969 Stage II Differentiated Thyroid Gland Carcinoma AJCC v8 8 140007 -NCIT:C140970 Stage II Differentiated Thyroid Gland Carcinoma Under 55 Years AJCC v8 9 140008 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 10 140009 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 10 140010 -NCIT:C140971 Stage II Differentiated Thyroid Gland Carcinoma 55 Years and Older AJCC v8 9 140011 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 10 140012 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 10 140013 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 9 140014 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 10 140015 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 10 140016 -NCIT:C140991 Stage II Thyroid Gland Follicular Carcinoma AJCC v8 9 140017 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 10 140018 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 10 140019 -NCIT:C140972 Stage III Differentiated Thyroid Gland Carcinoma AJCC v8 8 140020 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 9 140021 -NCIT:C140995 Stage III Thyroid Gland Follicular Carcinoma AJCC v8 9 140022 -NCIT:C140973 Stage IV Differentiated Thyroid Gland Carcinoma AJCC v8 8 140023 -NCIT:C140974 Stage IVA Differentiated Thyroid Gland Carcinoma AJCC v8 9 140024 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 10 140025 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 10 140026 -NCIT:C140975 Stage IVB Differentiated Thyroid Gland Carcinoma AJCC v8 9 140027 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 10 140028 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 10 140029 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 9 140030 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 10 140031 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 10 140032 -NCIT:C140996 Stage IV Thyroid Gland Follicular Carcinoma AJCC v8 9 140033 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 10 140034 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 10 140035 -NCIT:C140976 Thyroid Gland Papillary Carcinoma by AJCC v8 Stage 8 140036 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 9 140037 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 10 140038 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 10 140039 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 9 140040 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 10 140041 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 10 140042 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 9 140043 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 9 140044 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 10 140045 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 10 140046 -NCIT:C140987 Thyroid Gland Follicular Carcinoma by AJCC v8 Stage 8 140047 -NCIT:C140988 Stage I Thyroid Gland Follicular Carcinoma AJCC v8 9 140048 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 10 140049 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 10 140050 -NCIT:C140991 Stage II Thyroid Gland Follicular Carcinoma AJCC v8 9 140051 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 10 140052 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 10 140053 -NCIT:C140995 Stage III Thyroid Gland Follicular Carcinoma AJCC v8 9 140054 -NCIT:C140996 Stage IV Thyroid Gland Follicular Carcinoma AJCC v8 9 140055 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 10 140056 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 10 140057 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 7 140058 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 8 140059 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 8 140060 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 9 140061 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 7 140062 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 8 140063 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 8 140064 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 9 140065 -NCIT:C168572 Unresectable Differentiated Thyroid Gland Carcinoma 7 140066 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 8 140067 -NCIT:C174571 Unresectable Thyroid Gland Follicular Carcinoma 8 140068 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 9 140069 -NCIT:C173979 Metastatic Differentiated Thyroid Gland Carcinoma 7 140070 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 8 140071 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 9 140072 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 10 140073 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 8 140074 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 8 140075 -NCIT:C4035 Thyroid Gland Papillary Carcinoma 7 140076 -NCIT:C123903 Childhood Thyroid Gland Papillary Carcinoma 8 140077 -NCIT:C126409 Warthin-Like Variant Thyroid Gland Papillary Carcinoma 8 140078 -NCIT:C126410 Thyroid Gland Papillary Carcinoma with Fibromatosis/Fasciitis-Like/Desmoid-Type Stroma 8 140079 -NCIT:C126594 Follicular Variant Thyroid Gland Papillary Carcinoma 8 140080 -NCIT:C66850 Invasive Encapsulated Follicular Variant Thyroid Gland Papillary Carcinoma 9 140081 -NCIT:C7381 Invasive Follicular Variant Thyroid Gland Papillary Carcinoma 9 140082 -NCIT:C140960 Thyroid Gland Papillary Carcinoma by AJCC v7 Stage 8 140083 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 9 140084 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 9 140085 -NCIT:C9083 Stage IV Thyroid Gland Papillary Carcinoma AJCC v7 9 140086 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 10 140087 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 10 140088 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 10 140089 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 9 140090 -NCIT:C140976 Thyroid Gland Papillary Carcinoma by AJCC v8 Stage 8 140091 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 9 140092 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 10 140093 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 10 140094 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 9 140095 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 10 140096 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 10 140097 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 9 140098 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 9 140099 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 10 140100 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 10 140101 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 8 140102 -NCIT:C156034 Encapsulated Variant Thyroid Gland Papillary Carcinoma 8 140103 -NCIT:C156045 Spindle Cell Variant Thyroid Gland Papillary Carcinoma 8 140104 -NCIT:C156050 Hobnail Variant Thyroid Gland Papillary Carcinoma 8 140105 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 8 140106 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 8 140107 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 8 140108 -NCIT:C187644 Classic Thyroid Gland Papillary Carcinoma 8 140109 -NCIT:C35558 Tall Cell Variant Thyroid Gland Papillary Carcinoma 8 140110 -NCIT:C35830 Columnar Cell Variant Thyroid Gland Papillary Carcinoma 8 140111 -NCIT:C37304 Multicentric Thyroid Gland Papillary Carcinoma 8 140112 -NCIT:C46004 Thyroid Gland Papillary Microcarcinoma 8 140113 -NCIT:C46092 Macrofollicular Variant Thyroid Gland Papillary Carcinoma 8 140114 -NCIT:C46093 Oncocytic Variant Thyroid Gland Papillary Carcinoma 8 140115 -NCIT:C46094 Clear Cell Variant Thyroid Gland Papillary Carcinoma 8 140116 -NCIT:C46095 Solid/Trabecular Variant Thyroid Gland Papillary Carcinoma 8 140117 -NCIT:C7427 Diffuse Sclerosing Variant Thyroid Gland Papillary Carcinoma 8 140118 -NCIT:C8054 Thyroid Gland Follicular Carcinoma 7 140119 -NCIT:C123904 Childhood Thyroid Gland Follicular Carcinoma 8 140120 -NCIT:C140958 Thyroid Gland Follicular Carcinoma by AJCC v7 Stage 8 140121 -NCIT:C9084 Stage I Thyroid Gland Follicular Carcinoma AJCC v7 9 140122 -NCIT:C9085 Stage II Thyroid Gland Follicular Carcinoma AJCC v7 9 140123 -NCIT:C9086 Stage IV Thyroid Gland Follicular Carcinoma AJCC v7 9 140124 -NCIT:C115035 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v7 10 140125 -NCIT:C115036 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v7 10 140126 -NCIT:C115037 Stage IVC Thyroid Gland Follicular Carcinoma AJCC v7 10 140127 -NCIT:C9121 Stage III Thyroid Gland Follicular Carcinoma AJCC v7 9 140128 -NCIT:C140987 Thyroid Gland Follicular Carcinoma by AJCC v8 Stage 8 140129 -NCIT:C140988 Stage I Thyroid Gland Follicular Carcinoma AJCC v8 9 140130 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 10 140131 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 10 140132 -NCIT:C140991 Stage II Thyroid Gland Follicular Carcinoma AJCC v8 9 140133 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 10 140134 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 10 140135 -NCIT:C140995 Stage III Thyroid Gland Follicular Carcinoma AJCC v8 9 140136 -NCIT:C140996 Stage IV Thyroid Gland Follicular Carcinoma AJCC v8 9 140137 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 10 140138 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 10 140139 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 8 140140 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 9 140141 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 8 140142 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 9 140143 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 10 140144 -NCIT:C156122 Thyroid Gland Follicular Carcinoma, Encapsulated Angioinvasive 8 140145 -NCIT:C156123 Thyroid Gland Follicular Carcinoma, Widely Invasive 8 140146 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 8 140147 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 9 140148 -NCIT:C174571 Unresectable Thyroid Gland Follicular Carcinoma 8 140149 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 9 140150 -NCIT:C187643 Thyroid Gland Follicular Carcinoma, Signet Ring Cell Variant 8 140151 -NCIT:C46096 Thyroid Gland Follicular Carcinoma, Clear Cell Variant 8 140152 -NCIT:C4946 Thyroid Gland Oncocytic Carcinoma 8 140153 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 9 140154 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 9 140155 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 9 140156 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 9 140157 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 10 140158 -NCIT:C65200 Thyroid Gland Follicular Carcinoma, Minimally Invasive 8 140159 -NCIT:C27684 Human Papillomavirus-Related Adenocarcinoma 5 140160 -NCIT:C180943 Human Papillomavirus-Related Vaginal Adenocarcinoma 6 140161 -NCIT:C27677 Human Papillomavirus-Related Cervical Adenocarcinoma 6 140162 -NCIT:C127907 Endocervical Adenocarcinoma, Usual-Type 7 140163 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 8 140164 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 8 140165 -NCIT:C40208 Cervical Villoglandular Adenocarcinoma 8 140166 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 7 140167 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 7 140168 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 7 140169 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 7 140170 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 7 140171 -NCIT:C27745 Non-Small Cell Adenocarcinoma 5 140172 -NCIT:C3512 Lung Adenocarcinoma 6 140173 -NCIT:C136486 Lung Adenocarcinoma In Situ 7 140174 -NCIT:C136716 Lung Non-Mucinous Adenocarcinoma In Situ 8 140175 -NCIT:C136717 Lung Mucinous Adenocarcinoma In Situ 8 140176 -NCIT:C136490 Lung Adenocarcinoma by AJCC v7 Stage 7 140177 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 8 140178 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 8 140179 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 9 140180 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 9 140181 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 8 140182 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 9 140183 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 9 140184 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 8 140185 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 9 140186 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 9 140187 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 8 140188 -NCIT:C136709 Invasive Lung Mucinous Adenocarcinoma 7 140189 -NCIT:C136710 Lung Enteric Adenocarcinoma 7 140190 -NCIT:C155908 Metastatic Lung Adenocarcinoma 7 140191 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 8 140192 -NCIT:C176727 Advanced Lung Adenocarcinoma 8 140193 -NCIT:C174510 Unresectable Lung Adenocarcinoma 7 140194 -NCIT:C179209 Refractory Lung Adenocarcinoma 7 140195 -NCIT:C183109 Invasive Lung Non-Mucinous Adenocarcinoma 7 140196 -NCIT:C123160 Lepidic Adenocarcinoma 8 140197 -NCIT:C5649 Lung Acinar Adenocarcinoma 8 140198 -NCIT:C5650 Lung Papillary Adenocarcinoma 8 140199 -NCIT:C128847 Lung Micropapillary Adenocarcinoma 9 140200 -NCIT:C5651 Solid Lung Adenocarcinoma 8 140201 -NCIT:C190954 Resectable Lung Adenocarcinoma 7 140202 -NCIT:C2923 Minimally Invasive Lung Adenocarcinoma 7 140203 -NCIT:C7268 Minimally Invasive Lung Mucinous Adenocarcinoma 8 140204 -NCIT:C7269 Minimally Invasive Lung Non-Mucinous Adenocarcinoma 8 140205 -NCIT:C7270 Minimally Invasive Lung Mixed Non-Mucinous and Mucinous Adenocarcinoma 8 140206 -NCIT:C45509 Lung Fetal Adenocarcinoma 7 140207 -NCIT:C45512 Lung Colloid Adenocarcinoma 7 140208 -NCIT:C6699 Occult Lung Adenocarcinoma 7 140209 -NCIT:C8757 Recurrent Lung Adenocarcinoma 7 140210 -NCIT:C27813 Bile Duct Adenocarcinoma 5 140211 -NCIT:C156910 Resectable Bile Duct Adenocarcinoma 6 140212 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 7 140213 -NCIT:C27326 Resectable Cholangiocarcinoma 7 140214 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 8 140215 -NCIT:C4130 Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 6 140216 -NCIT:C96946 Extrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 7 140217 -NCIT:C96947 Intrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 7 140218 -NCIT:C4436 Cholangiocarcinoma 6 140219 -NCIT:C157623 Metastatic Cholangiocarcinoma 7 140220 -NCIT:C162752 Advanced Cholangiocarcinoma 8 140221 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 9 140222 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 9 140223 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 9 140224 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 8 140225 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 140226 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 9 140227 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 8 140228 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 9 140229 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 8 140230 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 140231 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 9 140232 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 8 140233 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 9 140234 -NCIT:C158101 Refractory Cholangiocarcinoma 7 140235 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 8 140236 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 8 140237 -NCIT:C27324 Unresectable Cholangiocarcinoma 7 140238 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 8 140239 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 8 140240 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 8 140241 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 8 140242 -NCIT:C27325 Recurrent Cholangiocarcinoma 7 140243 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 8 140244 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 8 140245 -NCIT:C27326 Resectable Cholangiocarcinoma 7 140246 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 8 140247 -NCIT:C27769 Opisthorchis Viverrini-Related Cholangiocarcinoma 7 140248 -NCIT:C35417 Intrahepatic Cholangiocarcinoma 7 140249 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 8 140250 -NCIT:C134514 Intrahepatic Cholangiocarcinoma by AJCC v7 Stage 8 140251 -NCIT:C88049 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v7 9 140252 -NCIT:C88050 Stage I Intrahepatic Cholangiocarcinoma AJCC v7 9 140253 -NCIT:C88051 Stage II Intrahepatic Cholangiocarcinoma AJCC v7 9 140254 -NCIT:C88052 Stage III Intrahepatic Cholangiocarcinoma AJCC v7 9 140255 -NCIT:C88053 Stage IVA Intrahepatic Cholangiocarcinoma AJCC v7 9 140256 -NCIT:C88054 Stage IVB Intrahepatic Cholangiocarcinoma AJCC v7 9 140257 -NCIT:C134755 Intrahepatic Cholangiocarcinoma by AJCC v8 Stage 8 140258 -NCIT:C134756 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v8 9 140259 -NCIT:C134757 Stage I Intrahepatic Cholangiocarcinoma AJCC v8 9 140260 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 10 140261 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 10 140262 -NCIT:C134760 Stage II Intrahepatic Cholangiocarcinoma AJCC v8 9 140263 -NCIT:C134761 Stage III Intrahepatic Cholangiocarcinoma AJCC v8 9 140264 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 10 140265 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 10 140266 -NCIT:C134764 Stage IV Intrahepatic Cholangiocarcinoma AJCC v8 9 140267 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 8 140268 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 8 140269 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 8 140270 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 140271 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 9 140272 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 8 140273 -NCIT:C41617 Cholangiolocellular Carcinoma 8 140274 -NCIT:C41618 Mucin-Producing Intrahepatic Cholangiocarcinoma 8 140275 -NCIT:C41619 Signet Ring Cell Intrahepatic Cholangiocarcinoma 8 140276 -NCIT:C41620 Sarcomatoid Intrahepatic Cholangiocarcinoma 8 140277 -NCIT:C43848 Clear Cell Intrahepatic Cholangiocarcinoma 8 140278 -NCIT:C96804 Large Duct Intrahepatic Cholangiocarcinoma 8 140279 -NCIT:C96805 Small Duct Intrahepatic Cholangiocarcinoma 8 140280 -NCIT:C96949 Intrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 8 140281 -NCIT:C36077 Hilar Cholangiocarcinoma 7 140282 -NCIT:C134742 Hilar Cholangiocarcinoma by AJCC v7 Stage 8 140283 -NCIT:C88058 Stage 0 Hilar Cholangiocarcinoma AJCC v7 9 140284 -NCIT:C88059 Stage I Hilar Cholangiocarcinoma AJCC v7 9 140285 -NCIT:C88060 Stage II Hilar Cholangiocarcinoma AJCC v7 9 140286 -NCIT:C88061 Stage IIIA Hilar Cholangiocarcinoma AJCC v7 9 140287 -NCIT:C88062 Stage IIIB Hilar Cholangiocarcinoma AJCC v7 9 140288 -NCIT:C88063 Stage IVA Hilar Cholangiocarcinoma AJCC v7 9 140289 -NCIT:C88064 Stage IVB Hilar Cholangiocarcinoma AJCC v7 9 140290 -NCIT:C134743 Hilar Cholangiocarcinoma by AJCC v8 Stage 8 140291 -NCIT:C134744 Stage 0 Hilar Cholangiocarcinoma AJCC v8 9 140292 -NCIT:C134745 Stage I Hilar Cholangiocarcinoma AJCC v8 9 140293 -NCIT:C134746 Stage II Hilar Cholangiocarcinoma AJCC v8 9 140294 -NCIT:C134747 Stage III Hilar Cholangiocarcinoma AJCC v8 9 140295 -NCIT:C134748 Stage IIIA Hilar Cholangiocarcinoma AJCC v8 10 140296 -NCIT:C134749 Stage IIIB Hilar Cholangiocarcinoma AJCC v8 10 140297 -NCIT:C134750 Stage IIIC Hilar Cholangiocarcinoma AJCC v8 10 140298 -NCIT:C134751 Stage IV Hilar Cholangiocarcinoma AJCC v8 9 140299 -NCIT:C134752 Stage IVA Hilar Cholangiocarcinoma AJCC v8 10 140300 -NCIT:C134753 Stage IVB Hilar Cholangiocarcinoma AJCC v8 10 140301 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 8 140302 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 8 140303 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 9 140304 -NCIT:C7976 Distal Bile Duct Adenocarcinoma 7 140305 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 8 140306 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 8 140307 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 9 140308 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 8 140309 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 8 140310 -NCIT:C8265 Adult Cholangiocarcinoma 7 140311 -NCIT:C7975 Extrahepatic Bile Duct Adenocarcinoma 6 140312 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 7 140313 -NCIT:C5775 Extrahepatic Bile Duct Clear Cell Adenocarcinoma 7 140314 -NCIT:C5776 Extrahepatic Bile Duct Signet Ring Cell Carcinoma 7 140315 -NCIT:C5846 Extrahepatic Bile Duct Mucinous Adenocarcinoma 7 140316 -NCIT:C7976 Distal Bile Duct Adenocarcinoma 7 140317 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 8 140318 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 8 140319 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 9 140320 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 8 140321 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 8 140322 -NCIT:C96936 Extrahepatic Bile Duct Adenocarcinoma, Biliary Type 7 140323 -NCIT:C96937 Extrahepatic Bile Duct Adenocarcinoma, Gastric Foveolar Type 7 140324 -NCIT:C96938 Extrahepatic Bile Duct Adenocarcinoma, Intestinal Type 7 140325 -NCIT:C96946 Extrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 7 140326 -NCIT:C96948 Extrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 7 140327 -NCIT:C96810 Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 6 140328 -NCIT:C96948 Extrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 7 140329 -NCIT:C96949 Intrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 7 140330 -NCIT:C2853 Papillary Adenocarcinoma 5 140331 -NCIT:C172813 Invasive Pancreatic Micropapillary Adenocarcinoma 6 140332 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 6 140333 -NCIT:C27254 Papillary Eccrine Carcinoma 6 140334 -NCIT:C27534 Digital Papillary Adenocarcinoma 7 140335 -NCIT:C27937 Thymic Low Grade Papillary Adenocarcinoma 6 140336 -NCIT:C3777 Papillary Cystadenocarcinoma 6 140337 -NCIT:C65204 Papillary Mucinous Cystadenocarcinoma 7 140338 -NCIT:C8377 Papillary Serous Cystadenocarcinoma 7 140339 -NCIT:C4035 Thyroid Gland Papillary Carcinoma 6 140340 -NCIT:C123903 Childhood Thyroid Gland Papillary Carcinoma 7 140341 -NCIT:C126409 Warthin-Like Variant Thyroid Gland Papillary Carcinoma 7 140342 -NCIT:C126410 Thyroid Gland Papillary Carcinoma with Fibromatosis/Fasciitis-Like/Desmoid-Type Stroma 7 140343 -NCIT:C126594 Follicular Variant Thyroid Gland Papillary Carcinoma 7 140344 -NCIT:C66850 Invasive Encapsulated Follicular Variant Thyroid Gland Papillary Carcinoma 8 140345 -NCIT:C7381 Invasive Follicular Variant Thyroid Gland Papillary Carcinoma 8 140346 -NCIT:C140960 Thyroid Gland Papillary Carcinoma by AJCC v7 Stage 7 140347 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 8 140348 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 8 140349 -NCIT:C9083 Stage IV Thyroid Gland Papillary Carcinoma AJCC v7 8 140350 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 9 140351 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 9 140352 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 9 140353 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 8 140354 -NCIT:C140976 Thyroid Gland Papillary Carcinoma by AJCC v8 Stage 7 140355 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 8 140356 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 9 140357 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 9 140358 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 8 140359 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 9 140360 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 9 140361 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 8 140362 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 8 140363 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 9 140364 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 9 140365 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 7 140366 -NCIT:C156034 Encapsulated Variant Thyroid Gland Papillary Carcinoma 7 140367 -NCIT:C156045 Spindle Cell Variant Thyroid Gland Papillary Carcinoma 7 140368 -NCIT:C156050 Hobnail Variant Thyroid Gland Papillary Carcinoma 7 140369 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 7 140370 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 7 140371 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 7 140372 -NCIT:C187644 Classic Thyroid Gland Papillary Carcinoma 7 140373 -NCIT:C35558 Tall Cell Variant Thyroid Gland Papillary Carcinoma 7 140374 -NCIT:C35830 Columnar Cell Variant Thyroid Gland Papillary Carcinoma 7 140375 -NCIT:C37304 Multicentric Thyroid Gland Papillary Carcinoma 7 140376 -NCIT:C46004 Thyroid Gland Papillary Microcarcinoma 7 140377 -NCIT:C46092 Macrofollicular Variant Thyroid Gland Papillary Carcinoma 7 140378 -NCIT:C46093 Oncocytic Variant Thyroid Gland Papillary Carcinoma 7 140379 -NCIT:C46094 Clear Cell Variant Thyroid Gland Papillary Carcinoma 7 140380 -NCIT:C46095 Solid/Trabecular Variant Thyroid Gland Papillary Carcinoma 7 140381 -NCIT:C7427 Diffuse Sclerosing Variant Thyroid Gland Papillary Carcinoma 7 140382 -NCIT:C4182 Serous Surface Papillary Carcinoma 6 140383 -NCIT:C6256 Ovarian Serous Surface Papillary Adenocarcinoma 7 140384 -NCIT:C6882 Micropapillary Serous Carcinoma 7 140385 -NCIT:C7695 Primary Peritoneal Serous Papillary Adenocarcinoma 7 140386 -NCIT:C8377 Papillary Serous Cystadenocarcinoma 7 140387 -NCIT:C54400 Nasopharyngeal Papillary Adenocarcinoma 6 140388 -NCIT:C5472 Gastric Papillary Adenocarcinoma 6 140389 -NCIT:C67560 Endolymphatic Sac Tumor 6 140390 -NCIT:C6975 Papillary Renal Cell Carcinoma 6 140391 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 7 140392 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 8 140393 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 8 140394 -NCIT:C190505 Unresectable Papillary Renal Cell Carcinoma 7 140395 -NCIT:C27886 Type 1 Papillary Renal Cell Carcinoma 7 140396 -NCIT:C27887 Type 2 Papillary Renal Cell Carcinoma 7 140397 -NCIT:C27890 Sporadic Papillary Renal Cell Carcinoma 7 140398 -NCIT:C9222 Hereditary Papillary Renal Cell Carcinoma 7 140399 -NCIT:C7438 Invasive Papillary Adenocarcinoma 6 140400 -NCIT:C36085 Invasive Breast Papillary Carcinoma 7 140401 -NCIT:C176010 Encapsulated Breast Papillary Carcinoma with Invasion 8 140402 -NCIT:C176012 Invasive Breast Solid Papillary Carcinoma 8 140403 -NCIT:C36084 Invasive Breast Micropapillary Carcinoma 8 140404 -NCIT:C7439 Breast Papillary Ductal Carcinoma In Situ with Invasion 8 140405 -NCIT:C39896 Prostate Ductal Adenocarcinoma, Papillary Pattern 7 140406 -NCIT:C5650 Lung Papillary Adenocarcinoma 7 140407 -NCIT:C128847 Lung Micropapillary Adenocarcinoma 8 140408 -NCIT:C7381 Invasive Follicular Variant Thyroid Gland Papillary Carcinoma 7 140409 -NCIT:C95967 Ampulla of Vater Invasive Papillary Adenocarcinoma 7 140410 -NCIT:C9134 Breast Papillary Carcinoma 6 140411 -NCIT:C176009 Encapsulated Breast Papillary Carcinoma 7 140412 -NCIT:C176010 Encapsulated Breast Papillary Carcinoma with Invasion 8 140413 -NCIT:C36085 Invasive Breast Papillary Carcinoma 7 140414 -NCIT:C176010 Encapsulated Breast Papillary Carcinoma with Invasion 8 140415 -NCIT:C176012 Invasive Breast Solid Papillary Carcinoma 8 140416 -NCIT:C36084 Invasive Breast Micropapillary Carcinoma 8 140417 -NCIT:C7439 Breast Papillary Ductal Carcinoma In Situ with Invasion 8 140418 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 7 140419 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 8 140420 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 8 140421 -NCIT:C6870 Breast Solid Papillary Carcinoma 7 140422 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 8 140423 -NCIT:C176012 Invasive Breast Solid Papillary Carcinoma 8 140424 -NCIT:C96491 Colorectal Micropapillary Adenocarcinoma 6 140425 -NCIT:C96492 Colon Micropapillary Adenocarcinoma 7 140426 -NCIT:C96493 Rectal Micropapillary Adenocarcinoma 7 140427 -NCIT:C2919 Prostate Adenocarcinoma 5 140428 -NCIT:C150557 Prostate Adenocarcinoma without Neuroendocrine Differentiation 6 140429 -NCIT:C164185 Aggressive Prostate Adenocarcinoma 6 140430 -NCIT:C164186 Prostate Adenocarcinoma by AJCC v7 Stage 6 140431 -NCIT:C8947 Stage I Prostate Adenocarcinoma AJCC v7 7 140432 -NCIT:C8948 Stage II Prostate Adenocarcinoma AJCC v7 7 140433 -NCIT:C8949 Stage III Prostate Adenocarcinoma AJCC v7 7 140434 -NCIT:C8950 Stage IV Prostate Adenocarcinoma AJCC v7 7 140435 -NCIT:C167256 Refractory Prostate Adenocarcinoma 6 140436 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 6 140437 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 7 140438 -NCIT:C27905 Well Differentiated Prostate Adenocarcinoma 6 140439 -NCIT:C39896 Prostate Ductal Adenocarcinoma, Papillary Pattern 7 140440 -NCIT:C27906 Moderately Differentiated Prostate Adenocarcinoma 6 140441 -NCIT:C27916 Poorly Differentiated Prostate Adenocarcinoma 6 140442 -NCIT:C5530 Prostate Acinar Adenocarcinoma, Sarcomatoid Variant 7 140443 -NCIT:C39903 Prostate Adenocarcinoma with Neuroendocrine Differentiation 6 140444 -NCIT:C158656 Usual Prostate Adenocarcinoma with Neuroendocrine Differentiation 7 140445 -NCIT:C158664 Prostate Adenocarcinoma with Paneth Cell-Like Neuroendocrine Differentiation 7 140446 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 7 140447 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 8 140448 -NCIT:C5596 Prostate Acinar Adenocarcinoma 6 140449 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 7 140450 -NCIT:C158656 Usual Prostate Adenocarcinoma with Neuroendocrine Differentiation 7 140451 -NCIT:C160817 Prostate Acinar Adenocarcinoma, Microcystic Variant 7 140452 -NCIT:C160818 Prostate Acinar Adenocarcinoma, Pleomorphic Giant Cell Variant 7 140453 -NCIT:C39880 Prostate Acinar Adenocarcinoma, Atrophic Variant 7 140454 -NCIT:C39881 Prostate Acinar Adenocarcinoma, Pseudohyperplastic Variant 7 140455 -NCIT:C39882 Prostate Acinar Adenocarcinoma, Foamy Gland Variant 7 140456 -NCIT:C39884 Prostate Acinar Adenocarcinoma, Oncocytic Variant 7 140457 -NCIT:C39885 Prostate Acinar Adenocarcinoma, Lymphoepithelioma-Like Variant 7 140458 -NCIT:C5530 Prostate Acinar Adenocarcinoma, Sarcomatoid Variant 7 140459 -NCIT:C5535 Prostate Acinar Adenocarcinoma, Signet Ring-Like Cell Variant 7 140460 -NCIT:C5537 Prostate Acinar Mucinous Adenocarcinoma 7 140461 -NCIT:C6813 Prostate Ductal Adenocarcinoma 6 140462 -NCIT:C39895 Prostate Ductal Adenocarcinoma, Cribriform Pattern 7 140463 -NCIT:C39896 Prostate Ductal Adenocarcinoma, Papillary Pattern 7 140464 -NCIT:C39897 Prostate Ductal Adenocarcinoma, Solid Pattern 7 140465 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 6 140466 -NCIT:C156286 Advanced Prostate Adenocarcinoma 7 140467 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 8 140468 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 7 140469 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 8 140470 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 7 140471 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 8 140472 -NCIT:C2928 Scirrhous Adenocarcinoma 5 140473 -NCIT:C2971 Cystadenocarcinoma 5 140474 -NCIT:C3776 Mucinous Cystadenocarcinoma 6 140475 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 7 140476 -NCIT:C40354 Breast Mucinous Cystadenocarcinoma 7 140477 -NCIT:C41246 Pancreatic Mucinous-Cystic Neoplasm with an Associated Invasive Carcinoma 7 140478 -NCIT:C5511 Appendix Mucinous Cystadenocarcinoma 7 140479 -NCIT:C65204 Papillary Mucinous Cystadenocarcinoma 7 140480 -NCIT:C3777 Papillary Cystadenocarcinoma 6 140481 -NCIT:C65204 Papillary Mucinous Cystadenocarcinoma 7 140482 -NCIT:C8377 Papillary Serous Cystadenocarcinoma 7 140483 -NCIT:C3778 Serous Cystadenocarcinoma 6 140484 -NCIT:C5724 Pancreatic Serous Cystadenocarcinoma 7 140485 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 7 140486 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 8 140487 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 140488 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 140489 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 8 140490 -NCIT:C8377 Papillary Serous Cystadenocarcinoma 7 140491 -NCIT:C3874 Pancreatic Cystadenocarcinoma 6 140492 -NCIT:C153620 Recurrent Pancreatic Cystadenocarcinoma 7 140493 -NCIT:C5724 Pancreatic Serous Cystadenocarcinoma 7 140494 -NCIT:C5727 Pancreatic Acinar Cell Cystadenocarcinoma 7 140495 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 8 140496 -NCIT:C5228 Ovarian Cystadenocarcinoma 6 140497 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 7 140498 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 8 140499 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 7 140500 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 7 140501 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 8 140502 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 140503 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 140504 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 8 140505 -NCIT:C7980 Ovarian Clear Cell Cystadenocarcinoma 7 140506 -NCIT:C5980 Salivary Gland Cystadenocarcinoma 6 140507 -NCIT:C3099 Hepatocellular Carcinoma 5 140508 -NCIT:C115132 Hepatocellular Carcinoma by BCLC Stage 6 140509 -NCIT:C115133 BCLC Stage 0 Hepatocellular Carcinoma 7 140510 -NCIT:C115139 BCLC Stage 0 Adult Hepatocellular Carcinoma 8 140511 -NCIT:C115135 BCLC Stage A Hepatocellular Carcinoma 7 140512 -NCIT:C115140 BCLC Stage A Adult Hepatocellular Carcinoma 8 140513 -NCIT:C115136 BCLC Stage B Hepatocellular Carcinoma 7 140514 -NCIT:C115141 BCLC Stage B Adult Hepatocellular Carcinoma 8 140515 -NCIT:C115137 BCLC Stage C Hepatocellular Carcinoma 7 140516 -NCIT:C115143 BCLC Stage C Adult Hepatocellular Carcinoma 8 140517 -NCIT:C115138 BCLC Stage D Hepatocellular Carcinoma 7 140518 -NCIT:C115144 BCLC Stage D Adult Hepatocellular Carcinoma 8 140519 -NCIT:C134515 Hepatocellular Carcinoma by AJCC v8 Stage 6 140520 -NCIT:C134516 Stage I Hepatocellular Carcinoma AJCC v8 7 140521 -NCIT:C134517 Stage IA Hepatocellular Carcinoma AJCC v8 8 140522 -NCIT:C134518 Stage IB Hepatocellular Carcinoma AJCC v8 8 140523 -NCIT:C134519 Stage II Hepatocellular Carcinoma AJCC v8 7 140524 -NCIT:C134520 Stage III Hepatocellular Carcinoma AJCC v8 7 140525 -NCIT:C134521 Stage IIIA Hepatocellular Carcinoma AJCC v8 8 140526 -NCIT:C134522 Stage IIIB Hepatocellular Carcinoma AJCC v8 8 140527 -NCIT:C134523 Stage IV Hepatocellular Carcinoma AJCC v8 7 140528 -NCIT:C134524 Stage IVA Hepatocellular Carcinoma AJCC v8 8 140529 -NCIT:C134525 Stage IVB Hepatocellular Carcinoma AJCC v8 8 140530 -NCIT:C154091 Metastatic Hepatocellular Carcinoma 6 140531 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 7 140532 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 8 140533 -NCIT:C167336 Advanced Hepatocellular Carcinoma 7 140534 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 8 140535 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 8 140536 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 7 140537 -NCIT:C162450 Refractory Hepatocellular Carcinoma 6 140538 -NCIT:C188887 Refractory Fibrolamellar Carcinoma 7 140539 -NCIT:C172709 Steatohepatitic Hepatocellular Carcinoma 6 140540 -NCIT:C27924 Alcohol-Related Hepatocellular Carcinoma 7 140541 -NCIT:C172710 Macrotrabecular Massive Hepatocellular Carcinoma 6 140542 -NCIT:C172712 Chromophobe Hepatocellular Carcinoma 6 140543 -NCIT:C172713 Neutrophil-Rich Hepatocellular Carcinoma 6 140544 -NCIT:C172714 Small Hepatocellular Carcinoma 6 140545 -NCIT:C172716 Small Progressed Hepatocellular Carcinoma 7 140546 -NCIT:C96772 Early Hepatocellular Carcinoma 7 140547 -NCIT:C27345 Unresectable Hepatocellular Carcinoma 6 140548 -NCIT:C162602 Unresectable Fibrolamellar Carcinoma 7 140549 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 7 140550 -NCIT:C27388 Scirrhous Hepatocellular Carcinoma 6 140551 -NCIT:C27635 Transplant-Related Hepatocellular Carcinoma 6 140552 -NCIT:C27686 Hepatitis Virus-Related Hepatocellular Carcinoma 6 140553 -NCIT:C27687 Hepatitis B Virus-Related Hepatocellular Carcinoma 7 140554 -NCIT:C27688 Hepatitis C Virus-Related Hepatocellular Carcinoma 7 140555 -NCIT:C27922 Aflatoxins-Related Hepatocellular Carcinoma 6 140556 -NCIT:C4131 Fibrolamellar Carcinoma 6 140557 -NCIT:C114992 Adult Fibrolamellar Carcinoma 7 140558 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 7 140559 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 8 140560 -NCIT:C154082 Recurrent Fibrolamellar Carcinoma 7 140561 -NCIT:C162602 Unresectable Fibrolamellar Carcinoma 7 140562 -NCIT:C188887 Refractory Fibrolamellar Carcinoma 7 140563 -NCIT:C189932 Childhood Fibrolamellar Carcinoma 7 140564 -NCIT:C43625 Pleomorphic Hepatocellular Carcinoma 6 140565 -NCIT:C114993 Adult Pleomorphic Hepatocellular Carcinoma 7 140566 -NCIT:C43627 Sarcomatoid Hepatocellular Carcinoma 6 140567 -NCIT:C5754 Clear Cell Hepatocellular Carcinoma 6 140568 -NCIT:C7691 Resectable Hepatocellular Carcinoma 6 140569 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 7 140570 -NCIT:C7955 Childhood Hepatocellular Carcinoma 6 140571 -NCIT:C189932 Childhood Fibrolamellar Carcinoma 7 140572 -NCIT:C5708 Stage III Childhood Hepatocellular Carcinoma AJCC v7 7 140573 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 7 140574 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 7 140575 -NCIT:C7838 Stage IV Childhood Hepatocellular Carcinoma AJCC v7 7 140576 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 7 140577 -NCIT:C7956 Adult Hepatocellular Carcinoma 6 140578 -NCIT:C114992 Adult Fibrolamellar Carcinoma 7 140579 -NCIT:C114993 Adult Pleomorphic Hepatocellular Carcinoma 7 140580 -NCIT:C115139 BCLC Stage 0 Adult Hepatocellular Carcinoma 7 140581 -NCIT:C115140 BCLC Stage A Adult Hepatocellular Carcinoma 7 140582 -NCIT:C115141 BCLC Stage B Adult Hepatocellular Carcinoma 7 140583 -NCIT:C115143 BCLC Stage C Adult Hepatocellular Carcinoma 7 140584 -NCIT:C115144 BCLC Stage D Adult Hepatocellular Carcinoma 7 140585 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 7 140586 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 7 140587 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 7 140588 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 7 140589 -NCIT:C90510 Hepatocellular Carcinoma by AJCC v6 Stage 6 140590 -NCIT:C5758 Stage I Hepatocellular Carcinoma AJCC v6 and v7 7 140591 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 8 140592 -NCIT:C5759 Stage II Hepatocellular Carcinoma AJCC v6 and v7 7 140593 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 8 140594 -NCIT:C5760 Stage III Hepatocellular Carcinoma AJCC v6 7 140595 -NCIT:C5763 Stage IV Hepatocellular Carcinoma AJCC v6 7 140596 -NCIT:C91228 Hepatocellular Carcinoma by AJCC v7 Stage 6 140597 -NCIT:C5758 Stage I Hepatocellular Carcinoma AJCC v6 and v7 7 140598 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 8 140599 -NCIT:C5759 Stage II Hepatocellular Carcinoma AJCC v6 and v7 7 140600 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 8 140601 -NCIT:C90180 Stage III Hepatocellular Carcinoma AJCC v7 7 140602 -NCIT:C5708 Stage III Childhood Hepatocellular Carcinoma AJCC v7 8 140603 -NCIT:C5761 Stage IIIA Hepatocellular Carcinoma AJCC v7 8 140604 -NCIT:C5762 Stage IIIB Hepatocellular Carcinoma AJCC v7 8 140605 -NCIT:C88044 Stage IIIC Hepatocellular Carcinoma AJCC v7 8 140606 -NCIT:C90181 Stage IV Hepatocellular Carcinoma AJCC v7 7 140607 -NCIT:C5764 Stage IVA Hepatocellular Carcinoma AJCC v7 8 140608 -NCIT:C5765 Stage IVB Hepatocellular Carcinoma AJCC v7 8 140609 -NCIT:C7838 Stage IV Childhood Hepatocellular Carcinoma AJCC v7 8 140610 -NCIT:C9264 Recurrent Hepatocellular Carcinoma 6 140611 -NCIT:C154082 Recurrent Fibrolamellar Carcinoma 7 140612 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 7 140613 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 7 140614 -NCIT:C96788 Lymphocyte-Rich Hepatocellular Carcinoma 6 140615 -NCIT:C96789 Well Differentiated Hepatocellular Carcinoma 6 140616 -NCIT:C96790 Moderately Differentiated Hepatocellular Carcinoma 6 140617 -NCIT:C96791 Poorly Differentiated Hepatocellular Carcinoma 6 140618 -NCIT:C3679 Oncocytic Adenocarcinoma 5 140619 -NCIT:C126409 Warthin-Like Variant Thyroid Gland Papillary Carcinoma 6 140620 -NCIT:C175267 Lacrimal Gland Oncocytic Adenocarcinoma 6 140621 -NCIT:C188181 Adrenal Cortical Oncocytic Carcinoma 6 140622 -NCIT:C27849 Oxyphilic Endometrial Endometrioid Adenocarcinoma 6 140623 -NCIT:C39884 Prostate Acinar Adenocarcinoma, Oncocytic Variant 6 140624 -NCIT:C40366 Breast Oncocytic Carcinoma 6 140625 -NCIT:C46093 Oncocytic Variant Thyroid Gland Papillary Carcinoma 6 140626 -NCIT:C4946 Thyroid Gland Oncocytic Carcinoma 6 140627 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 7 140628 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 7 140629 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 7 140630 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 7 140631 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 8 140632 -NCIT:C62194 Salivary Gland Oncocytic Carcinoma 6 140633 -NCIT:C3681 Granular Cell Carcinoma 5 140634 -NCIT:C3766 Clear Cell Adenocarcinoma 5 140635 -NCIT:C162566 Primary Peritoneal Clear Cell Adenocarcinoma 6 140636 -NCIT:C170761 Recurrent Primary Peritoneal Clear Cell Adenocarcinoma 7 140637 -NCIT:C178684 Refractory Primary Peritoneal Clear Cell Adenocarcinoma 7 140638 -NCIT:C191768 Clear Cell Adenocarcinoma of the Urinary Tract 6 140639 -NCIT:C6172 Urethral Clear Cell Adenocarcinoma 7 140640 -NCIT:C6179 Bladder Clear Cell Adenocarcinoma 7 140641 -NCIT:C39847 Bladder Tubulo-Cystic Clear Cell Adenocarcinoma 8 140642 -NCIT:C39848 Bladder Papillary Clear Cell Adenocarcinoma 8 140643 -NCIT:C39849 Bladder Diffuse Clear Cell Adenocarcinoma 8 140644 -NCIT:C27414 Ampulla of Vater Clear Cell Adenocarcinoma 6 140645 -NCIT:C27843 Endometrial Endometrioid Adenocarcinoma with Clear Cell Change 6 140646 -NCIT:C40078 Ovarian Clear Cell Adenocarcinoma 6 140647 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 7 140648 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 7 140649 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 140650 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 7 140651 -NCIT:C7980 Ovarian Clear Cell Cystadenocarcinoma 7 140652 -NCIT:C40139 Broad Ligament Clear Cell Adenocarcinoma 6 140653 -NCIT:C4033 Clear Cell Renal Cell Carcinoma 6 140654 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 7 140655 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 8 140656 -NCIT:C157614 BAP1-Mutant Clear Cell Renal Cell Carcinoma 7 140657 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 7 140658 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 8 140659 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 8 140660 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 7 140661 -NCIT:C165449 Unresectable Clear Cell Renal Cell Carcinoma 7 140662 -NCIT:C35851 Grade 1 Clear Cell Renal Cell Carcinoma 7 140663 -NCIT:C35852 Grade 2 Clear Cell Renal Cell Carcinoma 7 140664 -NCIT:C35853 Grade 3 Clear Cell Renal Cell Carcinoma 7 140665 -NCIT:C35854 Grade 4 Clear Cell Renal Cell Carcinoma 7 140666 -NCIT:C36260 Hereditary Clear Cell Renal Cell Carcinoma 7 140667 -NCIT:C36261 Non-Hereditary Clear Cell Renal Cell Carcinoma 7 140668 -NCIT:C40365 Breast Lipid-Rich Carcinoma 6 140669 -NCIT:C40368 Glycogen-Rich, Clear Cell Breast Carcinoma 6 140670 -NCIT:C43605 Gallbladder Clear Cell Adenocarcinoma 6 140671 -NCIT:C43848 Clear Cell Intrahepatic Cholangiocarcinoma 6 140672 -NCIT:C46094 Clear Cell Variant Thyroid Gland Papillary Carcinoma 6 140673 -NCIT:C46096 Thyroid Gland Follicular Carcinoma, Clear Cell Variant 6 140674 -NCIT:C54664 Hidradenocarcinoma 6 140675 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 7 140676 -NCIT:C5754 Clear Cell Hepatocellular Carcinoma 6 140677 -NCIT:C5775 Extrahepatic Bile Duct Clear Cell Adenocarcinoma 6 140678 -NCIT:C6280 Fallopian Tube Clear Cell Adenocarcinoma 6 140679 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 7 140680 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 7 140681 -NCIT:C6344 Human Papillomavirus-Independent Cervical Adenocarcinoma, Clear Cell-Type 6 140682 -NCIT:C7735 Vaginal Clear Cell Adenocarcinoma 6 140683 -NCIT:C8028 Endometrial Clear Cell Adenocarcinoma 6 140684 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 7 140685 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 7 140686 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 7 140687 -NCIT:C3768 Acinar Cell Carcinoma 5 140688 -NCIT:C175290 Lacrimal Gland Acinic Cell Carcinoma 6 140689 -NCIT:C40367 Breast Acinic Cell Carcinoma 6 140690 -NCIT:C153568 Recurrent Breast Acinic Cell Carcinoma 7 140691 -NCIT:C5596 Prostate Acinar Adenocarcinoma 6 140692 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 7 140693 -NCIT:C158656 Usual Prostate Adenocarcinoma with Neuroendocrine Differentiation 7 140694 -NCIT:C160817 Prostate Acinar Adenocarcinoma, Microcystic Variant 7 140695 -NCIT:C160818 Prostate Acinar Adenocarcinoma, Pleomorphic Giant Cell Variant 7 140696 -NCIT:C39880 Prostate Acinar Adenocarcinoma, Atrophic Variant 7 140697 -NCIT:C39881 Prostate Acinar Adenocarcinoma, Pseudohyperplastic Variant 7 140698 -NCIT:C39882 Prostate Acinar Adenocarcinoma, Foamy Gland Variant 7 140699 -NCIT:C39884 Prostate Acinar Adenocarcinoma, Oncocytic Variant 7 140700 -NCIT:C39885 Prostate Acinar Adenocarcinoma, Lymphoepithelioma-Like Variant 7 140701 -NCIT:C5530 Prostate Acinar Adenocarcinoma, Sarcomatoid Variant 7 140702 -NCIT:C5535 Prostate Acinar Adenocarcinoma, Signet Ring-Like Cell Variant 7 140703 -NCIT:C5537 Prostate Acinar Mucinous Adenocarcinoma 7 140704 -NCIT:C7977 Pancreatic Acinar Cell Carcinoma 6 140705 -NCIT:C153569 Recurrent Pancreatic Acinar Cell Carcinoma 7 140706 -NCIT:C156907 Resectable Pancreatic Acinar Cell Carcinoma 7 140707 -NCIT:C190024 Childhood Pancreatic Acinar Cell Carcinoma 7 140708 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 8 140709 -NCIT:C5727 Pancreatic Acinar Cell Cystadenocarcinoma 7 140710 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 8 140711 -NCIT:C8013 Salivary Gland Acinic Cell Carcinoma 6 140712 -NCIT:C190274 Childhood Salivary Gland Acinic Cell Carcinoma 7 140713 -NCIT:C5901 Major Salivary Gland Acinic Cell Carcinoma 7 140714 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 8 140715 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 9 140716 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 8 140717 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 9 140718 -NCIT:C6243 Minor Salivary Gland Acinic Cell Carcinoma 7 140719 -NCIT:C3769 Endometrioid Adenocarcinoma 5 140720 -NCIT:C158421 Recurrent Endometrioid Adenocarcinoma 6 140721 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 7 140722 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 7 140723 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 7 140724 -NCIT:C165269 Recurrent Primary Peritoneal Endometrioid Adenocarcinoma 7 140725 -NCIT:C158610 Endometrioid Adenocarcinoma, Variant with Squamous Differentiation 6 140726 -NCIT:C40061 Ovarian Endometrioid Adenocarcinoma with Squamous Differentiation 7 140727 -NCIT:C6290 Endometrial Endometrioid Adenocarcinoma, Variant with Squamous Differentiation 7 140728 -NCIT:C165260 Primary Peritoneal Endometrioid Adenocarcinoma 6 140729 -NCIT:C165269 Recurrent Primary Peritoneal Endometrioid Adenocarcinoma 7 140730 -NCIT:C178685 Refractory Primary Peritoneal Endometrioid Adenocarcinoma 7 140731 -NCIT:C186276 Unresectable Primary Peritoneal Endometrioid Adenocarcinoma 7 140732 -NCIT:C191769 Endometrioid Adenocarcinoma of the Urinary Tract 6 140733 -NCIT:C159542 Bladder Endometrioid Adenocarcinoma 7 140734 -NCIT:C40138 Broad Ligament Endometrioid Adenocarcinoma 6 140735 -NCIT:C40251 Vaginal Endometrioid Adenocarcinoma 6 140736 -NCIT:C6279 Fallopian Tube Endometrioid Adenocarcinoma 6 140737 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 7 140738 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 7 140739 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 7 140740 -NCIT:C6287 Endometrial Endometrioid Adenocarcinoma 6 140741 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 7 140742 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 7 140743 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 7 140744 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 8 140745 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 8 140746 -NCIT:C180510 Low Grade Endometrial Endometrioid Adenocarcinoma 7 140747 -NCIT:C40146 FIGO Grade 1 Endometrial Endometrioid Adenocarcinoma 8 140748 -NCIT:C40147 FIGO Grade 2 Endometrial Endometrioid Adenocarcinoma 8 140749 -NCIT:C180512 POLE-Ultramutated Endometrial Endometrioid Adenocarcinoma 7 140750 -NCIT:C180514 Mismatch Repair-Deficient Endometrial Endometrioid Adenocarcinoma 7 140751 -NCIT:C180515 p53-Mutant Endometrial Endometrioid Adenocarcinoma 7 140752 -NCIT:C180516 No Specific Molecular Profile Endometrial Endometrioid Adenocarcinoma 7 140753 -NCIT:C27839 Endometrial Endometrioid Adenocarcinoma, Secretory Variant 7 140754 -NCIT:C27843 Endometrial Endometrioid Adenocarcinoma with Clear Cell Change 7 140755 -NCIT:C27844 Endometrial Endometrioid Adenocarcinoma with a Poorly Differentiated Carcinomatous Component 7 140756 -NCIT:C27845 Endometrial Endometrioid Adenocarcinoma with an Undifferentiated Carcinomatous Component 7 140757 -NCIT:C27846 Villoglandular Endometrial Endometrioid Adenocarcinoma 7 140758 -NCIT:C27848 Endometrial Endometrioid Adenocarcinoma, Ciliated Variant 7 140759 -NCIT:C27849 Oxyphilic Endometrial Endometrioid Adenocarcinoma 7 140760 -NCIT:C27850 Endometrial Endometrioid Adenocarcinoma with Spindled Epithelial Cells 7 140761 -NCIT:C40148 High Grade Endometrial Endometrioid Adenocarcinoma 7 140762 -NCIT:C6290 Endometrial Endometrioid Adenocarcinoma, Variant with Squamous Differentiation 7 140763 -NCIT:C6343 Cervical Endometrioid Adenocarcinoma 6 140764 -NCIT:C7979 Ovarian Endometrioid Adenocarcinoma 6 140765 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 7 140766 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 7 140767 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 7 140768 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 140769 -NCIT:C186273 Unresectable Ovarian Endometrioid Adenocarcinoma 7 140770 -NCIT:C40061 Ovarian Endometrioid Adenocarcinoma with Squamous Differentiation 7 140771 -NCIT:C8943 Metastatic Endometrioid Adenocarcinoma 6 140772 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 7 140773 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 8 140774 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 8 140775 -NCIT:C170807 Advanced Endometrioid Adenocarcinoma 7 140776 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 8 140777 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 140778 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 7 140779 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 140780 -NCIT:C174045 Locally Advanced Endometrioid Adenocarcinoma 7 140781 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 8 140782 -NCIT:C3774 Signet Ring Cell Carcinoma 5 140783 -NCIT:C179208 Ovarian Signet Ring Cell Carcinoma 6 140784 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 6 140785 -NCIT:C41619 Signet Ring Cell Intrahepatic Cholangiocarcinoma 6 140786 -NCIT:C43543 Small Intestinal Signet Ring Cell Carcinoma 6 140787 -NCIT:C43554 Appendix Signet Ring Cell Carcinoma 6 140788 -NCIT:C43586 Colorectal Signet Ring Cell Carcinoma 6 140789 -NCIT:C43593 Rectosigmoid Signet Ring Cell Carcinoma 7 140790 -NCIT:C7967 Colon Signet Ring Cell Adenocarcinoma 7 140791 -NCIT:C9168 Rectal Signet Ring Cell Adenocarcinoma 7 140792 -NCIT:C5175 Breast Signet Ring Cell Carcinoma 6 140793 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 7 140794 -NCIT:C54691 Invasive Breast Lobular Carcinoma, Signet Ring Variant 7 140795 -NCIT:C5250 Gastric Signet Ring Cell Adenocarcinoma 6 140796 -NCIT:C5535 Prostate Acinar Adenocarcinoma, Signet Ring-Like Cell Variant 6 140797 -NCIT:C5720 Pancreatic Signet Ring Cell Carcinoma 6 140798 -NCIT:C5745 Gallbladder Signet Ring Cell Carcinoma 6 140799 -NCIT:C5776 Extrahepatic Bile Duct Signet Ring Cell Carcinoma 6 140800 -NCIT:C6163 Bladder Signet Ring Cell Adenocarcinoma 6 140801 -NCIT:C6656 Ampulla of Vater Signet Ring Cell Carcinoma 6 140802 -NCIT:C66717 Metastatic Signet Ring Cell Carcinoma 6 140803 -NCIT:C3153 Krukenberg Tumor 7 140804 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 7 140805 -NCIT:C3828 Combined Hepatocellular Carcinoma and Cholangiocarcinoma 5 140806 -NCIT:C114987 Adult Combined Hepatocellular Carcinoma and Cholangiocarcinoma 6 140807 -NCIT:C39863 Adenocarcinoma of Skene Gland Origin 5 140808 -NCIT:C180947 Vaginal Adenocarcinoma of Skene Gland Origin 6 140809 -NCIT:C180948 Skene Gland Adenocarcinoma of the Urethra 6 140810 -NCIT:C39906 Seminal Vesicle Adenocarcinoma 5 140811 -NCIT:C39957 Epididymal Adenocarcinoma 5 140812 -NCIT:C40017 Rete Ovarii Adenocarcinoma 5 140813 -NCIT:C4004 Gastric Adenocarcinoma 5 140814 -NCIT:C153319 Metastatic Gastric Adenocarcinoma 6 140815 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 7 140816 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 8 140817 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 8 140818 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 7 140819 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 8 140820 -NCIT:C165630 Metastatic Proximal Gastric Adenocarcinoma 7 140821 -NCIT:C166121 Oligometastatic Gastric Adenocarcinoma 7 140822 -NCIT:C166255 Advanced Gastric Adenocarcinoma 7 140823 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 8 140824 -NCIT:C154221 Unresectable Gastric Adenocarcinoma 6 140825 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 7 140826 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 8 140827 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 8 140828 -NCIT:C154622 Recurrent Gastric Adenocarcinoma 6 140829 -NCIT:C165628 Proximal Gastric Adenocarcinoma 6 140830 -NCIT:C165630 Metastatic Proximal Gastric Adenocarcinoma 7 140831 -NCIT:C167074 Refractory Gastric Adenocarcinoma 6 140832 -NCIT:C43527 Sporadic Gastric Adenocarcinoma 6 140833 -NCIT:C27131 Early Gastric Cancer 7 140834 -NCIT:C95763 Gastric Intramucosal Adenocarcinoma 8 140835 -NCIT:C27765 Helicobacter Pylori-Related Gastric Adenocarcinoma 7 140836 -NCIT:C43529 Sporadic Gastric Diffuse Adenocarcinoma 7 140837 -NCIT:C5247 Gastric Cardia Adenocarcinoma 7 140838 -NCIT:C5248 Gastric Mucinous Adenocarcinoma 7 140839 -NCIT:C5472 Gastric Papillary Adenocarcinoma 7 140840 -NCIT:C5473 Gastric Tubular Adenocarcinoma 7 140841 -NCIT:C65194 Gastric Parietal Cell Adenocarcinoma 7 140842 -NCIT:C67526 Gastric Mixed Adenocarcinoma 7 140843 -NCIT:C9157 Gastric Intestinal-Type Adenocarcinoma 7 140844 -NCIT:C95743 Gastric Poorly Cohesive Adenocarcinoma 7 140845 -NCIT:C5250 Gastric Signet Ring Cell Adenocarcinoma 8 140846 -NCIT:C95747 Gastric Hepatoid Adenocarcinoma 7 140847 -NCIT:C95748 Gastric Carcinoma with Lymphoid Stroma 7 140848 -NCIT:C9159 Gastric Diffuse Adenocarcinoma 6 140849 -NCIT:C43295 Hereditary Gastric Diffuse Adenocarcinoma 7 140850 -NCIT:C43529 Sporadic Gastric Diffuse Adenocarcinoma 7 140851 -NCIT:C40101 Serous Adenocarcinoma 5 140852 -NCIT:C126479 Broad Ligament Serous Adenocarcinoma 6 140853 -NCIT:C27838 Endometrial Serous Adenocarcinoma 6 140854 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 7 140855 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 7 140856 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 7 140857 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 8 140858 -NCIT:C187374 Platinum-Sensitive Endometrial Serous Adenocarcinoma 7 140859 -NCIT:C3778 Serous Cystadenocarcinoma 6 140860 -NCIT:C5724 Pancreatic Serous Cystadenocarcinoma 7 140861 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 7 140862 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 8 140863 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 140864 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 140865 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 8 140866 -NCIT:C8377 Papillary Serous Cystadenocarcinoma 7 140867 -NCIT:C40023 Primary Peritoneal Serous Adenocarcinoma 6 140868 -NCIT:C126353 Primary Peritoneal High Grade Serous Adenocarcinoma 7 140869 -NCIT:C165268 Recurrent Primary Peritoneal High Grade Serous Adenocarcinoma 8 140870 -NCIT:C178686 Refractory Primary Peritoneal High Grade Serous Adenocarcinoma 8 140871 -NCIT:C186275 Unresectable Primary Peritoneal High Grade Serous Adenocarcinoma 8 140872 -NCIT:C186453 Metastatic Primary Peritoneal High Grade Serous Adenocarcinoma 8 140873 -NCIT:C126354 Primary Peritoneal Low Grade Serous Adenocarcinoma 7 140874 -NCIT:C156454 Recurrent Primary Peritoneal Low Grade Serous Adenocarcinoma 8 140875 -NCIT:C178687 Refractory Primary Peritoneal Low Grade Serous Adenocarcinoma 8 140876 -NCIT:C156453 Recurrent Primary Peritoneal Serous Adenocarcinoma 7 140877 -NCIT:C156454 Recurrent Primary Peritoneal Low Grade Serous Adenocarcinoma 8 140878 -NCIT:C165268 Recurrent Primary Peritoneal High Grade Serous Adenocarcinoma 8 140879 -NCIT:C171019 Metastatic Primary Peritoneal Serous Adenocarcinoma 7 140880 -NCIT:C186453 Metastatic Primary Peritoneal High Grade Serous Adenocarcinoma 8 140881 -NCIT:C171020 Unresectable Primary Peritoneal Serous Adenocarcinoma 7 140882 -NCIT:C186275 Unresectable Primary Peritoneal High Grade Serous Adenocarcinoma 8 140883 -NCIT:C171021 Refractory Primary Peritoneal Serous Adenocarcinoma 7 140884 -NCIT:C178686 Refractory Primary Peritoneal High Grade Serous Adenocarcinoma 8 140885 -NCIT:C178687 Refractory Primary Peritoneal Low Grade Serous Adenocarcinoma 8 140886 -NCIT:C7695 Primary Peritoneal Serous Papillary Adenocarcinoma 7 140887 -NCIT:C40099 Fallopian Tube Serous Adenocarcinoma 6 140888 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 7 140889 -NCIT:C126456 Fallopian Tube High Grade Serous Adenocarcinoma 7 140890 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 8 140891 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 8 140892 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 8 140893 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 8 140894 -NCIT:C40152 Serous Endometrial Intraepithelial Carcinoma 6 140895 -NCIT:C40201 Cervical Serous Adenocarcinoma 6 140896 -NCIT:C4182 Serous Surface Papillary Carcinoma 6 140897 -NCIT:C6256 Ovarian Serous Surface Papillary Adenocarcinoma 7 140898 -NCIT:C6882 Micropapillary Serous Carcinoma 7 140899 -NCIT:C7695 Primary Peritoneal Serous Papillary Adenocarcinoma 7 140900 -NCIT:C8377 Papillary Serous Cystadenocarcinoma 7 140901 -NCIT:C7550 Ovarian Serous Adenocarcinoma 6 140902 -NCIT:C105555 Ovarian High Grade Serous Adenocarcinoma 7 140903 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 8 140904 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 8 140905 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 8 140906 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 140907 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 8 140908 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 140909 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 140910 -NCIT:C105556 Ovarian Low Grade Serous Adenocarcinoma 7 140911 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 8 140912 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 8 140913 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 7 140914 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 8 140915 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 8 140916 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 8 140917 -NCIT:C160781 Unresectable Ovarian Serous Adenocarcinoma 7 140918 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 8 140919 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 140920 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 7 140921 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 140922 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 140923 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 140924 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 8 140925 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 140926 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 140927 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 8 140928 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 140929 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 140930 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 140931 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 140932 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 140933 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 7 140934 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 8 140935 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 8 140936 -NCIT:C6256 Ovarian Serous Surface Papillary Adenocarcinoma 7 140937 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 7 140938 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 8 140939 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 140940 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 140941 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 8 140942 -NCIT:C40135 Broad Ligament Adenocarcinoma 5 140943 -NCIT:C126479 Broad Ligament Serous Adenocarcinoma 6 140944 -NCIT:C40137 Broad Ligament Mucinous Adenocarcinoma 6 140945 -NCIT:C40138 Broad Ligament Endometrioid Adenocarcinoma 6 140946 -NCIT:C40139 Broad Ligament Clear Cell Adenocarcinoma 6 140947 -NCIT:C4025 Esophageal Adenocarcinoma 5 140948 -NCIT:C133400 Esophageal Adenocarcinoma by AJCC v8 Stage 6 140949 -NCIT:C133401 Esophageal Adenocarcinoma by AJCC v8 Clinical Stage 7 140950 -NCIT:C133402 Clinical Stage 0 Esophageal Adenocarcinoma AJCC v8 8 140951 -NCIT:C133403 Clinical Stage I Esophageal Adenocarcinoma AJCC v8 8 140952 -NCIT:C133404 Clinical Stage II Esophageal Adenocarcinoma AJCC v8 8 140953 -NCIT:C133405 Clinical Stage IIA Esophageal Adenocarcinoma AJCC v8 9 140954 -NCIT:C133406 Clinical Stage IIB Esophageal Adenocarcinoma AJCC v8 9 140955 -NCIT:C133407 Clinical Stage III Esophageal Adenocarcinoma AJCC v8 8 140956 -NCIT:C133408 Clinical Stage IV Esophageal Adenocarcinoma AJCC v8 8 140957 -NCIT:C133409 Clinical Stage IVA Esophageal Adenocarcinoma AJCC v8 9 140958 -NCIT:C133410 Clinical Stage IVB Esophageal Adenocarcinoma AJCC v8 9 140959 -NCIT:C133412 Esophageal Adenocarcinoma by AJCC v8 Pathologic Stage 7 140960 -NCIT:C133413 Pathologic Stage 0 Esophageal Adenocarcinoma AJCC v8 8 140961 -NCIT:C133414 Pathologic Stage I Esophageal Adenocarcinoma AJCC v8 8 140962 -NCIT:C133415 Pathologic Stage IA Esophageal Adenocarcinoma AJCC v8 9 140963 -NCIT:C133416 Pathologic Stage IB Esophageal Adenocarcinoma AJCC v8 9 140964 -NCIT:C133417 Pathologic Stage IC Esophageal Adenocarcinoma AJCC v8 9 140965 -NCIT:C133418 Pathologic Stage II Esophageal Adenocarcinoma AJCC v8 8 140966 -NCIT:C133419 Pathologic Stage IIA Esophageal Adenocarcinoma AJCC v8 9 140967 -NCIT:C133420 Pathologic Stage IIB Esophageal Adenocarcinoma AJCC v8 9 140968 -NCIT:C133421 Pathologic Stage III Esophageal Adenocarcinoma AJCC v8 8 140969 -NCIT:C133422 Pathologic Stage IIIA Esophageal Adenocarcinoma AJCC v8 9 140970 -NCIT:C133423 Pathologic Stage IIIB Esophageal Adenocarcinoma AJCC v8 9 140971 -NCIT:C133424 Pathologic Stage IV Esophageal Adenocarcinoma AJCC v8 8 140972 -NCIT:C133425 Pathologic Stage IVA Esophageal Adenocarcinoma AJCC v8 9 140973 -NCIT:C133426 Pathologic Stage IVB Esophageal Adenocarcinoma AJCC v8 9 140974 -NCIT:C133432 Esophageal Adenocarcinoma by AJCC v8 Postneoadjuvant Therapy Stage 7 140975 -NCIT:C133433 Postneoadjuvant Therapy Stage I Esophageal Adenocarcinoma AJCC v8 8 140976 -NCIT:C133434 Postneoadjuvant Therapy Stage II Esophageal Adenocarcinoma AJCC v8 8 140977 -NCIT:C133435 Postneoadjuvant Therapy Stage III Esophageal Adenocarcinoma AJCC v8 8 140978 -NCIT:C133436 Postneoadjuvant Therapy Stage IIIA Esophageal Adenocarcinoma AJCC v8 9 140979 -NCIT:C133437 Postneoadjuvant Therapy Stage IIIB Esophageal Adenocarcinoma AJCC v8 9 140980 -NCIT:C133438 Postneoadjuvant Therapy Stage IV Esophageal Adenocarcinoma AJCC v8 8 140981 -NCIT:C133439 Postneoadjuvant Therapy Stage IVA Esophageal Adenocarcinoma AJCC v8 9 140982 -NCIT:C133440 Postneoadjuvant Therapy Stage IVB Esophageal Adenocarcinoma AJCC v8 9 140983 -NCIT:C133411 Esophageal Adenocarcinoma by AJCC v7 Stage 6 140984 -NCIT:C8628 Stage II Esophageal Adenocarcinoma AJCC v7 7 140985 -NCIT:C6731 Stage IIA Esophageal Adenocarcinoma AJCC v7 8 140986 -NCIT:C6732 Stage IIB Esophageal Adenocarcinoma AJCC v7 8 140987 -NCIT:C8629 Stage 0 Esophageal Adenocarcinoma AJCC v7 7 140988 -NCIT:C8630 Stage I Esophageal Adenocarcinoma AJCC v7 7 140989 -NCIT:C87782 Stage IA Esophageal Adenocarcinoma AJCC v7 8 140990 -NCIT:C87783 Stage IB Esophageal Adenocarcinoma AJCC v7 8 140991 -NCIT:C8631 Stage III Esophageal Adenocarcinoma AJCC v7 7 140992 -NCIT:C87784 Stage IIIA Esophageal Adenocarcinoma AJCC v7 8 140993 -NCIT:C87785 Stage IIIB Esophageal Adenocarcinoma AJCC v7 8 140994 -NCIT:C87786 Stage IIIC Esophageal Adenocarcinoma AJCC v7 8 140995 -NCIT:C8632 Stage IV Esophageal Adenocarcinoma AJCC v7 7 140996 -NCIT:C150027 Thoracic Esophagus Adenocarcinoma 6 140997 -NCIT:C150031 Cervical Esophagus Adenocarcinoma 6 140998 -NCIT:C152036 Distal Esophagus Adenocarcinoma 6 140999 -NCIT:C172248 Unresectable Distal Esophagus Adenocarcinoma 7 141000 -NCIT:C172249 Metastatic Distal Esophagus Adenocarcinoma 7 141001 -NCIT:C7027 Barrett Adenocarcinoma 7 141002 -NCIT:C156074 Metastatic Esophageal Adenocarcinoma 6 141003 -NCIT:C166120 Oligometastatic Esophageal Adenocarcinoma 7 141004 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 7 141005 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 7 141006 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 141007 -NCIT:C172249 Metastatic Distal Esophagus Adenocarcinoma 7 141008 -NCIT:C161906 Esophageal Intramucosal Adenocarcinoma 6 141009 -NCIT:C173162 Unresectable Esophageal Adenocarcinoma 6 141010 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 7 141011 -NCIT:C172248 Unresectable Distal Esophagus Adenocarcinoma 7 141012 -NCIT:C176892 Refractory Esophageal Adenocarcinoma 6 141013 -NCIT:C8627 Recurrent Esophageal Adenocarcinoma 6 141014 -NCIT:C4029 Cervical Adenocarcinoma 5 141015 -NCIT:C127915 Cervical Adenocarcinoma Admixed with Neuroendocrine Carcinoma 6 141016 -NCIT:C136651 Recurrent Cervical Adenocarcinoma 6 141017 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 7 141018 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 6 141019 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 7 141020 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 8 141021 -NCIT:C156304 Advanced Cervical Adenocarcinoma 7 141022 -NCIT:C174029 Unresectable Cervical Adenocarcinoma 6 141023 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 7 141024 -NCIT:C180848 Human Papillomavirus-Independent Cervical Adenocarcinoma 6 141025 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 7 141026 -NCIT:C40201 Cervical Serous Adenocarcinoma 7 141027 -NCIT:C40206 Human Papillomavirus-Independent Cervical Adenocarcinoma, Gastric-Type 7 141028 -NCIT:C40254 Cervical Mesonephric Adenocarcinoma 7 141029 -NCIT:C6343 Cervical Endometrioid Adenocarcinoma 7 141030 -NCIT:C6344 Human Papillomavirus-Independent Cervical Adenocarcinoma, Clear Cell-Type 7 141031 -NCIT:C180870 Cervical Adenocarcinoma, Not Otherwise Specified 6 141032 -NCIT:C181036 Refractory Cervical Adenocarcinoma 6 141033 -NCIT:C27677 Human Papillomavirus-Related Cervical Adenocarcinoma 6 141034 -NCIT:C127907 Endocervical Adenocarcinoma, Usual-Type 7 141035 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 8 141036 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 8 141037 -NCIT:C40208 Cervical Villoglandular Adenocarcinoma 8 141038 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 7 141039 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 7 141040 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 7 141041 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 7 141042 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 7 141043 -NCIT:C36095 Cervical Mucinous Adenocarcinoma 6 141044 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 7 141045 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 7 141046 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 7 141047 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 7 141048 -NCIT:C40206 Human Papillomavirus-Independent Cervical Adenocarcinoma, Gastric-Type 7 141049 -NCIT:C36096 Early Invasive Cervical Adenocarcinoma 6 141050 -NCIT:C4520 Cervical Adenocarcinoma In Situ 6 141051 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 7 141052 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 7 141053 -NCIT:C40310 Sebaceous Carcinoma 5 141054 -NCIT:C160978 Head and Neck Sebaceous Carcinoma 6 141055 -NCIT:C173648 Salivary Gland Sebaceous Carcinoma 7 141056 -NCIT:C40369 Breast Sebaceous Carcinoma 6 141057 -NCIT:C43340 Eye Sebaceous Carcinoma 6 141058 -NCIT:C134831 Eyelid Sebaceous Gland Carcinoma 7 141059 -NCIT:C174404 Conjunctival Sebaceous Carcinoma 7 141060 -NCIT:C43341 Extraocular Cutaneous Sebaceous Carcinoma 6 141061 -NCIT:C40309 Vulvar Sebaceous Carcinoma 7 141062 -NCIT:C4068 Trabecular Adenocarcinoma 5 141063 -NCIT:C4072 Mesonephric Adenocarcinoma 5 141064 -NCIT:C185381 Metastatic Mesonephric Adenocarcinoma 6 141065 -NCIT:C40253 Vaginal Mesonephric Adenocarcinoma 6 141066 -NCIT:C40254 Cervical Mesonephric Adenocarcinoma 6 141067 -NCIT:C4123 Adenocarcinoma In Situ 5 141068 -NCIT:C133894 Stage 0 Small Intestinal Adenocarcinoma AJCC v8 6 141069 -NCIT:C134914 Stage 0 Pancreatic Cancer AJCC v8 6 141070 -NCIT:C136486 Lung Adenocarcinoma In Situ 6 141071 -NCIT:C136716 Lung Non-Mucinous Adenocarcinoma In Situ 7 141072 -NCIT:C136717 Lung Mucinous Adenocarcinoma In Situ 7 141073 -NCIT:C5729 Stage 0 Pancreatic Cancer AJCC v6 and v7 6 141074 -NCIT:C6877 Grade III Glandular Intraepithelial Neoplasia 6 141075 -NCIT:C133402 Clinical Stage 0 Esophageal Adenocarcinoma AJCC v8 7 141076 -NCIT:C133413 Pathologic Stage 0 Esophageal Adenocarcinoma AJCC v8 7 141077 -NCIT:C133550 Clinical Stage 0 Gastroesophageal Junction Adenocarcinoma AJCC v8 7 141078 -NCIT:C133564 Pathologic Stage 0 Gastroesophageal Junction Adenocarcinoma AJCC v8 7 141079 -NCIT:C2924 Breast Ductal Carcinoma In Situ 7 141080 -NCIT:C176005 Breast Ductal Carcinoma In Situ, Comedo Type 8 141081 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 8 141082 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 9 141083 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 9 141084 -NCIT:C5137 Breast Ductal Carcinoma In Situ, Non-Comedo Type 8 141085 -NCIT:C5138 Breast Ductal Carcinoma In Situ, Cribriform Pattern 8 141086 -NCIT:C66933 Breast Ductal Carcinoma In Situ, Solid Type 8 141087 -NCIT:C7949 Breast Ductal Carcinoma In Situ, High Grade 8 141088 -NCIT:C9456 Breast Ductal Carcinoma In Situ, Intermediate Grade 8 141089 -NCIT:C9457 Breast Ductal Carcinoma In Situ, Low Grade 8 141090 -NCIT:C3642 Grade III Prostatic Intraepithelial Neoplasia 7 141091 -NCIT:C40105 Stage 0 Fallopian Tube Cancer AJCC v7 7 141092 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 8 141093 -NCIT:C4018 Breast Lobular Carcinoma In Situ 7 141094 -NCIT:C137839 Breast Pleomorphic Lobular Carcinoma In Situ 8 141095 -NCIT:C175949 Breast Classic Lobular Carcinoma In Situ 8 141096 -NCIT:C83170 Breast Classic Lobular Carcinoma In Situ Type A 9 141097 -NCIT:C83171 Breast Classic Lobular Carcinoma In Situ Type B 9 141098 -NCIT:C175950 Breast Florid Lobular Carcinoma In Situ 8 141099 -NCIT:C4195 Breast Ductal Carcinoma In Situ and Lobular Carcinoma In Situ 7 141100 -NCIT:C4520 Cervical Adenocarcinoma In Situ 7 141101 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 8 141102 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 8 141103 -NCIT:C8629 Stage 0 Esophageal Adenocarcinoma AJCC v7 7 141104 -NCIT:C7680 Adenocarcinoma In Situ in a Polyp 6 141105 -NCIT:C7678 Adenocarcinoma In Situ in Adenomatous Polyp 7 141106 -NCIT:C4144 Adenocarcinoma In Situ in Tubulovillous Adenoma 8 141107 -NCIT:C7679 Adenocarcinoma In Situ in Tubular Adenoma 8 141108 -NCIT:C8376 Adenocarcinoma In Situ in Villous Adenoma 8 141109 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 6 141110 -NCIT:C8894 Stage 0 Bladder Adenocarcinoma AJCC v6 and v7 6 141111 -NCIT:C4124 Metastatic Adenocarcinoma 5 141112 -NCIT:C150577 Metastatic Gastroesophageal Junction Adenocarcinoma 6 141113 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 7 141114 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 7 141115 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 141116 -NCIT:C150595 Metastatic Renal Cell Carcinoma 6 141117 -NCIT:C153170 Advanced Renal Cell Carcinoma 7 141118 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 8 141119 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 8 141120 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 8 141121 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 8 141122 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 8 141123 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 7 141124 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 8 141125 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 8 141126 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 7 141127 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 8 141128 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 8 141129 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 7 141130 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 8 141131 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 8 141132 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 7 141133 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 8 141134 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 8 141135 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 8 141136 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 8 141137 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 8 141138 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 8 141139 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 7 141140 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 8 141141 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 8 141142 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 7 141143 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 8 141144 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 8 141145 -NCIT:C153319 Metastatic Gastric Adenocarcinoma 6 141146 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 7 141147 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 8 141148 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 8 141149 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 7 141150 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 8 141151 -NCIT:C165630 Metastatic Proximal Gastric Adenocarcinoma 7 141152 -NCIT:C166121 Oligometastatic Gastric Adenocarcinoma 7 141153 -NCIT:C166255 Advanced Gastric Adenocarcinoma 7 141154 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 8 141155 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 6 141156 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 7 141157 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 8 141158 -NCIT:C156304 Advanced Cervical Adenocarcinoma 7 141159 -NCIT:C154091 Metastatic Hepatocellular Carcinoma 6 141160 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 7 141161 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 8 141162 -NCIT:C167336 Advanced Hepatocellular Carcinoma 7 141163 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 8 141164 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 8 141165 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 7 141166 -NCIT:C155908 Metastatic Lung Adenocarcinoma 6 141167 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 7 141168 -NCIT:C176727 Advanced Lung Adenocarcinoma 7 141169 -NCIT:C156070 Metastatic Adrenal Cortical Carcinoma 6 141170 -NCIT:C174443 Locally Advanced Adrenal Cortical Carcinoma 7 141171 -NCIT:C191863 Advanced Adrenal Cortical Carcinoma 7 141172 -NCIT:C156074 Metastatic Esophageal Adenocarcinoma 6 141173 -NCIT:C166120 Oligometastatic Esophageal Adenocarcinoma 7 141174 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 7 141175 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 7 141176 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 141177 -NCIT:C172249 Metastatic Distal Esophagus Adenocarcinoma 7 141178 -NCIT:C157623 Metastatic Cholangiocarcinoma 6 141179 -NCIT:C162752 Advanced Cholangiocarcinoma 7 141180 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 8 141181 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 8 141182 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 8 141183 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 7 141184 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 8 141185 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 8 141186 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 7 141187 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 8 141188 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 7 141189 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 8 141190 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 8 141191 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 7 141192 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 8 141193 -NCIT:C159556 Advanced Adenocarcinoma 6 141194 -NCIT:C153170 Advanced Renal Cell Carcinoma 7 141195 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 8 141196 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 8 141197 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 8 141198 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 8 141199 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 8 141200 -NCIT:C156286 Advanced Prostate Adenocarcinoma 7 141201 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 8 141202 -NCIT:C156304 Advanced Cervical Adenocarcinoma 7 141203 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 7 141204 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 7 141205 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 8 141206 -NCIT:C162752 Advanced Cholangiocarcinoma 7 141207 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 8 141208 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 8 141209 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 8 141210 -NCIT:C165700 Advanced Breast Adenocarcinoma 7 141211 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 141212 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 141213 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 8 141214 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 141215 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 141216 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 141217 -NCIT:C166255 Advanced Gastric Adenocarcinoma 7 141218 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 8 141219 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 7 141220 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 7 141221 -NCIT:C162152 Advanced Colon Adenocarcinoma 8 141222 -NCIT:C175363 Advanced Rectal Adenocarcinoma 8 141223 -NCIT:C167336 Advanced Hepatocellular Carcinoma 7 141224 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 8 141225 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 8 141226 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 7 141227 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 8 141228 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 8 141229 -NCIT:C170807 Advanced Endometrioid Adenocarcinoma 7 141230 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 8 141231 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 141232 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 7 141233 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 8 141234 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 8 141235 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 7 141236 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 7 141237 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 7 141238 -NCIT:C176727 Advanced Lung Adenocarcinoma 7 141239 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 7 141240 -NCIT:C182105 Advanced Appendix Adenocarcinoma 7 141241 -NCIT:C191863 Advanced Adrenal Cortical Carcinoma 7 141242 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 6 141243 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 7 141244 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 8 141245 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 8 141246 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 7 141247 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 8 141248 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 8 141249 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 7 141250 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 8 141251 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 8 141252 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 7 141253 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 8 141254 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 8 141255 -NCIT:C161048 Metastatic Colorectal Adenocarcinoma 6 141256 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 7 141257 -NCIT:C160819 Metastatic Colon Adenocarcinoma 7 141258 -NCIT:C162152 Advanced Colon Adenocarcinoma 8 141259 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 8 141260 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 141261 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 7 141262 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 8 141263 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 141264 -NCIT:C175363 Advanced Rectal Adenocarcinoma 8 141265 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 7 141266 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 7 141267 -NCIT:C162152 Advanced Colon Adenocarcinoma 8 141268 -NCIT:C175363 Advanced Rectal Adenocarcinoma 8 141269 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 7 141270 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 141271 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 141272 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 141273 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 8 141274 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 141275 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 8 141276 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 141277 -NCIT:C165698 Metastatic Breast Adenocarcinoma 6 141278 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 7 141279 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 8 141280 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 141281 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 141282 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 141283 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 8 141284 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 141285 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 141286 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 141287 -NCIT:C165700 Advanced Breast Adenocarcinoma 7 141288 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 141289 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 141290 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 8 141291 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 141292 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 141293 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 141294 -NCIT:C168777 Metastatic HER2-Negative Breast Carcinoma 7 141295 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 141296 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 141297 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 141298 -NCIT:C179554 Metastatic HER2-Low Breast Carcinoma 7 141299 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 141300 -NCIT:C180924 Metastatic HER2-Positive Breast Carcinoma 7 141301 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 8 141302 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 8 141303 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 141304 -NCIT:C181787 Metastatic Breast Inflammatory Carcinoma 7 141305 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 8 141306 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 8 141307 -NCIT:C9246 Stage IIIB Breast Inflammatory Carcinoma 8 141308 -NCIT:C185880 Metastatic Hormone Receptor-Positive Breast Carcinoma 7 141309 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 141310 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 141311 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 141312 -NCIT:C190852 Metastatic Androgen Receptor-Positive Breast Carcinoma 8 141313 -NCIT:C190856 Metastatic Estrogen Receptor-Positive Breast Carcinoma 8 141314 -NCIT:C190677 Metastatic Hormone Receptor-Negative Breast Carcinoma 7 141315 -NCIT:C153348 Metastatic Triple-Negative Breast Carcinoma 8 141316 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 141317 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 141318 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 141319 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 9 141320 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 141321 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 141322 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 7 141323 -NCIT:C76326 Metastatic Breast Ductal Carcinoma 7 141324 -NCIT:C76328 Metastatic Breast Lobular Carcinoma 7 141325 -NCIT:C168978 Locally Advanced Adenocarcinoma 6 141326 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 7 141327 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 8 141328 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 8 141329 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 7 141330 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 8 141331 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 7 141332 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 8 141333 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 7 141334 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 141335 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 7 141336 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 8 141337 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 7 141338 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 7 141339 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 8 141340 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 141341 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 141342 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 141343 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 8 141344 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 141345 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 141346 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 141347 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 7 141348 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 7 141349 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 8 141350 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 8 141351 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 7 141352 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 8 141353 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 8 141354 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 8 141355 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 8 141356 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 8 141357 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 8 141358 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 7 141359 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 141360 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 7 141361 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 8 141362 -NCIT:C174045 Locally Advanced Endometrioid Adenocarcinoma 7 141363 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 8 141364 -NCIT:C174443 Locally Advanced Adrenal Cortical Carcinoma 7 141365 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 7 141366 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 7 141367 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 7 141368 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 7 141369 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 8 141370 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 8 141371 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 7 141372 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 141373 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 141374 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 141375 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 8 141376 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 141377 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 8 141378 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 141379 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 6 141380 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 7 141381 -NCIT:C170972 Metastatic Primary Peritoneal Adenocarcinoma 6 141382 -NCIT:C171019 Metastatic Primary Peritoneal Serous Adenocarcinoma 7 141383 -NCIT:C186453 Metastatic Primary Peritoneal High Grade Serous Adenocarcinoma 8 141384 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 6 141385 -NCIT:C173979 Metastatic Differentiated Thyroid Gland Carcinoma 6 141386 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 7 141387 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 8 141388 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 9 141389 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 7 141390 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 7 141391 -NCIT:C174046 Metastatic Poorly Differentiated Thyroid Gland Carcinoma 6 141392 -NCIT:C182104 Metastatic Appendix Adenocarcinoma 6 141393 -NCIT:C162274 Metastatic Appendix Mucinous Adenocarcinoma 7 141394 -NCIT:C182105 Advanced Appendix Adenocarcinoma 7 141395 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 6 141396 -NCIT:C185381 Metastatic Mesonephric Adenocarcinoma 6 141397 -NCIT:C27185 Disseminated Adenocarcinoma 6 141398 -NCIT:C3345 Pseudomyxoma Peritonei 6 141399 -NCIT:C179179 Recurrent Pseudomyxoma Peritonei 7 141400 -NCIT:C179180 Refractory Pseudomyxoma Peritonei 7 141401 -NCIT:C4039 Adenocarcinoma of Unknown Primary 6 141402 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 7 141403 -NCIT:C170962 Resectable Adenocarcinoma of Unknown Primary 7 141404 -NCIT:C66717 Metastatic Signet Ring Cell Carcinoma 6 141405 -NCIT:C3153 Krukenberg Tumor 7 141406 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 7 141407 -NCIT:C8933 Metastatic Pancreatic Adenocarcinoma 6 141408 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 7 141409 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 8 141410 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 8 141411 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 7 141412 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 8 141413 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 8 141414 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 8 141415 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 7 141416 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 8 141417 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 7 141418 -NCIT:C8934 Metastatic Small Intestinal Adenocarcinoma 6 141419 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 7 141420 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 6 141421 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 7 141422 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 8 141423 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 7 141424 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 8 141425 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 8 141426 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 7 141427 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 8 141428 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 8 141429 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 7 141430 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 8 141431 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 7 141432 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 7 141433 -NCIT:C8943 Metastatic Endometrioid Adenocarcinoma 6 141434 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 7 141435 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 8 141436 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 8 141437 -NCIT:C170807 Advanced Endometrioid Adenocarcinoma 7 141438 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 8 141439 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 141440 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 7 141441 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 141442 -NCIT:C174045 Locally Advanced Endometrioid Adenocarcinoma 7 141443 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 8 141444 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 6 141445 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 7 141446 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 6 141447 -NCIT:C156286 Advanced Prostate Adenocarcinoma 7 141448 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 8 141449 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 7 141450 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 8 141451 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 7 141452 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 8 141453 -NCIT:C9044 Metastatic Parathyroid Gland Carcinoma 6 141454 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 7 141455 -NCIT:C4126 Intestinal-Type Adenocarcinoma 5 141456 -NCIT:C116316 Sinonasal Adenocarcinoma, Intestinal-Type 6 141457 -NCIT:C160984 Sinonasal Adenocarcinoma, Intestinal-Type with Papillary Pattern 7 141458 -NCIT:C160986 Sinonasal Adenocarcinoma, Intestinal-Type with Colonic Pattern 7 141459 -NCIT:C160987 Sinonasal Adenocarcinoma, Intestinal-Type with Solid Pattern 7 141460 -NCIT:C160995 Sinonasal Adenocarcinoma, Intestinal-Type with Mucinous Pattern 7 141461 -NCIT:C161000 Sinonasal Adenocarcinoma, Intestinal-Type with Mixed Pattern 7 141462 -NCIT:C128166 Vulvar Adenocarcinoma, Intestinal-Type 6 141463 -NCIT:C136710 Lung Enteric Adenocarcinoma 6 141464 -NCIT:C180536 Endometrial Mucinous Adenocarcinoma, Intestinal-Type 6 141465 -NCIT:C180946 Vaginal Mucinous Adenocarcinoma, Intestinal-Type 6 141466 -NCIT:C183314 Thymic Enteric-Type Adenocarcinoma 6 141467 -NCIT:C27415 Ampulla of Vater Intestinal-Type Adenocarcinoma 6 141468 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 6 141469 -NCIT:C43604 Gallbladder Adenocarcinoma, Intestinal-Type 6 141470 -NCIT:C9157 Gastric Intestinal-Type Adenocarcinoma 6 141471 -NCIT:C4127 Diffuse Type Adenocarcinoma 5 141472 -NCIT:C9159 Gastric Diffuse Adenocarcinoma 6 141473 -NCIT:C43295 Hereditary Gastric Diffuse Adenocarcinoma 7 141474 -NCIT:C43529 Sporadic Gastric Diffuse Adenocarcinoma 7 141475 -NCIT:C4142 Villous Adenocarcinoma 5 141476 -NCIT:C172699 Colorectal Adenoma-Like Adenocarcinoma 6 141477 -NCIT:C27846 Villoglandular Endometrial Endometrioid Adenocarcinoma 6 141478 -NCIT:C40208 Cervical Villoglandular Adenocarcinoma 6 141479 -NCIT:C4150 Basophilic Adenocarcinoma 5 141480 -NCIT:C4541 Lacrimal Gland Adenocarcinoma 5 141481 -NCIT:C175267 Lacrimal Gland Oncocytic Adenocarcinoma 6 141482 -NCIT:C175290 Lacrimal Gland Acinic Cell Carcinoma 6 141483 -NCIT:C4712 Adenocarcinoma with Metaplasia 5 141484 -NCIT:C4200 Adenocarcinoma with Squamous Metaplasia 6 141485 -NCIT:C5163 Breast Adenocarcinoma with Squamous Metaplasia 7 141486 -NCIT:C6987 Breast Ductal Carcinoma with Squamous Metaplasia 8 141487 -NCIT:C9169 Gallbladder Adenocarcinoma with Squamous Metaplasia 7 141488 -NCIT:C4201 Adenocarcinoma with Spindle Cell Metaplasia 6 141489 -NCIT:C40360 Breast Adenocarcinoma with Spindle Cell Metaplasia 7 141490 -NCIT:C4202 Adenocarcinoma with Apocrine Metaplasia 6 141491 -NCIT:C7683 Adenocarcinoma with Cartilaginous and Osseous Metaplasia 6 141492 -NCIT:C7684 Adenocarcinoma with Osseous Metaplasia 7 141493 -NCIT:C7685 Adenocarcinoma with Cartilaginous Metaplasia 7 141494 -NCIT:C4906 Parathyroid Gland Carcinoma 5 141495 -NCIT:C118819 Childhood Parathyroid Gland Carcinoma 6 141496 -NCIT:C7826 Localized Parathyroid Gland Carcinoma 6 141497 -NCIT:C7828 Recurrent Parathyroid Gland Carcinoma 6 141498 -NCIT:C9044 Metastatic Parathyroid Gland Carcinoma 6 141499 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 7 141500 -NCIT:C5105 Colorectal Adenocarcinoma 5 141501 -NCIT:C161048 Metastatic Colorectal Adenocarcinoma 6 141502 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 7 141503 -NCIT:C160819 Metastatic Colon Adenocarcinoma 7 141504 -NCIT:C162152 Advanced Colon Adenocarcinoma 8 141505 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 8 141506 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 141507 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 7 141508 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 8 141509 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 141510 -NCIT:C175363 Advanced Rectal Adenocarcinoma 8 141511 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 7 141512 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 7 141513 -NCIT:C162152 Advanced Colon Adenocarcinoma 8 141514 -NCIT:C175363 Advanced Rectal Adenocarcinoma 8 141515 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 7 141516 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 141517 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 141518 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 141519 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 8 141520 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 141521 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 8 141522 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 141523 -NCIT:C162154 Refractory Colorectal Adenocarcinoma 6 141524 -NCIT:C162155 Refractory Colon Adenocarcinoma 7 141525 -NCIT:C162157 Refractory Rectal Adenocarcinoma 7 141526 -NCIT:C162441 Recurrent Colorectal Adenocarcinoma 6 141527 -NCIT:C162442 Recurrent Colon Adenocarcinoma 7 141528 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 7 141529 -NCIT:C171585 Unresectable Colorectal Adenocarcinoma 6 141530 -NCIT:C162116 Unresectable Colon Adenocarcinoma 7 141531 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 8 141532 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 7 141533 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 8 141534 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 7 141535 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 8 141536 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 8 141537 -NCIT:C172694 Colorectal Poorly Cohesive Adenocarcinoma 6 141538 -NCIT:C43586 Colorectal Signet Ring Cell Carcinoma 7 141539 -NCIT:C43593 Rectosigmoid Signet Ring Cell Carcinoma 8 141540 -NCIT:C7967 Colon Signet Ring Cell Adenocarcinoma 8 141541 -NCIT:C9168 Rectal Signet Ring Cell Adenocarcinoma 8 141542 -NCIT:C172699 Colorectal Adenoma-Like Adenocarcinoma 6 141543 -NCIT:C172700 Inflammatory Bowel Disease-Associated Colorectal Adenocarcinoma 6 141544 -NCIT:C96496 Ulcerative Colitis-Associated Colorectal Adenocarcinoma 7 141545 -NCIT:C96497 Crohn Disease-Associated Colorectal Adenocarcinoma 7 141546 -NCIT:C4349 Colon Adenocarcinoma 6 141547 -NCIT:C160819 Metastatic Colon Adenocarcinoma 7 141548 -NCIT:C162152 Advanced Colon Adenocarcinoma 8 141549 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 8 141550 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 141551 -NCIT:C162116 Unresectable Colon Adenocarcinoma 7 141552 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 8 141553 -NCIT:C162155 Refractory Colon Adenocarcinoma 7 141554 -NCIT:C162442 Recurrent Colon Adenocarcinoma 7 141555 -NCIT:C38760 Submucosal Invasive Colon Adenocarcinoma 7 141556 -NCIT:C45429 Colon Intramucosal Adenocarcinoma 7 141557 -NCIT:C27413 Adenoma of the Colon with Intramucosal Adenocarcinoma 8 141558 -NCIT:C5543 Cecum Adenocarcinoma 7 141559 -NCIT:C60641 Colon Medullary Carcinoma 7 141560 -NCIT:C7966 Colon Mucinous Adenocarcinoma 7 141561 -NCIT:C7967 Colon Signet Ring Cell Adenocarcinoma 7 141562 -NCIT:C9452 Grade 1 Colon Adenocarcinoma 7 141563 -NCIT:C9453 Grade 2 Colon Adenocarcinoma 7 141564 -NCIT:C9454 Grade 3 Colon Adenocarcinoma 7 141565 -NCIT:C96486 Colon Serrated Adenocarcinoma 7 141566 -NCIT:C96489 Colon Cribriform Comedo-Type Adenocarcinoma 7 141567 -NCIT:C96492 Colon Micropapillary Adenocarcinoma 7 141568 -NCIT:C43584 Rectosigmoid Adenocarcinoma 6 141569 -NCIT:C43592 Rectosigmoid Mucinous Adenocarcinoma 7 141570 -NCIT:C43593 Rectosigmoid Signet Ring Cell Carcinoma 7 141571 -NCIT:C43585 Colorectal Mucinous Adenocarcinoma 6 141572 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 7 141573 -NCIT:C43592 Rectosigmoid Mucinous Adenocarcinoma 7 141574 -NCIT:C7966 Colon Mucinous Adenocarcinoma 7 141575 -NCIT:C7973 Rectal Mucinous Adenocarcinoma 7 141576 -NCIT:C43590 Colorectal Medullary Carcinoma 6 141577 -NCIT:C60640 Rectal Medullary Carcinoma 7 141578 -NCIT:C60641 Colon Medullary Carcinoma 7 141579 -NCIT:C9383 Rectal Adenocarcinoma 6 141580 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 7 141581 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 8 141582 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 141583 -NCIT:C175363 Advanced Rectal Adenocarcinoma 8 141584 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 7 141585 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 8 141586 -NCIT:C162157 Refractory Rectal Adenocarcinoma 7 141587 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 7 141588 -NCIT:C60640 Rectal Medullary Carcinoma 7 141589 -NCIT:C7973 Rectal Mucinous Adenocarcinoma 7 141590 -NCIT:C9168 Rectal Signet Ring Cell Adenocarcinoma 7 141591 -NCIT:C9449 Grade 3 Rectal Adenocarcinoma 7 141592 -NCIT:C9450 Grade 2 Rectal Adenocarcinoma 7 141593 -NCIT:C9451 Grade 1 Rectal Adenocarcinoma 7 141594 -NCIT:C96487 Rectal Serrated Adenocarcinoma 7 141595 -NCIT:C96490 Rectal Cribriform Comedo-Type Adenocarcinoma 7 141596 -NCIT:C96493 Rectal Micropapillary Adenocarcinoma 7 141597 -NCIT:C9446 Grade 1 Colorectal Adenocarcinoma 6 141598 -NCIT:C9451 Grade 1 Rectal Adenocarcinoma 7 141599 -NCIT:C9452 Grade 1 Colon Adenocarcinoma 7 141600 -NCIT:C9447 Grade 2 Colorectal Adenocarcinoma 6 141601 -NCIT:C9450 Grade 2 Rectal Adenocarcinoma 7 141602 -NCIT:C9453 Grade 2 Colon Adenocarcinoma 7 141603 -NCIT:C9448 Grade 3 Colorectal Adenocarcinoma 6 141604 -NCIT:C9449 Grade 3 Rectal Adenocarcinoma 7 141605 -NCIT:C9454 Grade 3 Colon Adenocarcinoma 7 141606 -NCIT:C96485 Colorectal Serrated Adenocarcinoma 6 141607 -NCIT:C96486 Colon Serrated Adenocarcinoma 7 141608 -NCIT:C96487 Rectal Serrated Adenocarcinoma 7 141609 -NCIT:C96488 Colorectal Cribriform Comedo-Type Adenocarcinoma 6 141610 -NCIT:C96489 Colon Cribriform Comedo-Type Adenocarcinoma 7 141611 -NCIT:C96490 Rectal Cribriform Comedo-Type Adenocarcinoma 7 141612 -NCIT:C96491 Colorectal Micropapillary Adenocarcinoma 6 141613 -NCIT:C96492 Colon Micropapillary Adenocarcinoma 7 141614 -NCIT:C96493 Rectal Micropapillary Adenocarcinoma 7 141615 -NCIT:C5214 Breast Adenocarcinoma 5 141616 -NCIT:C114932 Hormone-Resistant Breast Carcinoma 6 141617 -NCIT:C157056 Hormone Receptor-Positive Breast Carcinoma 6 141618 -NCIT:C157057 Refractory Hormone Receptor-Positive Breast Carcinoma 7 141619 -NCIT:C185157 Recurrent Hormone Receptor-Positive Breast Carcinoma 7 141620 -NCIT:C185880 Metastatic Hormone Receptor-Positive Breast Carcinoma 7 141621 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 141622 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 141623 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 141624 -NCIT:C190852 Metastatic Androgen Receptor-Positive Breast Carcinoma 8 141625 -NCIT:C190856 Metastatic Estrogen Receptor-Positive Breast Carcinoma 8 141626 -NCIT:C187160 Unresectable Hormone Receptor-Positive Breast Carcinoma 7 141627 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 8 141628 -NCIT:C188366 Estrogen Receptor-Positive Breast Carcinoma 7 141629 -NCIT:C190856 Metastatic Estrogen Receptor-Positive Breast Carcinoma 8 141630 -NCIT:C190851 Androgen Receptor-Positive Breast Carcinoma 7 141631 -NCIT:C190852 Metastatic Androgen Receptor-Positive Breast Carcinoma 8 141632 -NCIT:C165698 Metastatic Breast Adenocarcinoma 6 141633 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 7 141634 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 8 141635 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 141636 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 141637 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 141638 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 8 141639 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 141640 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 141641 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 141642 -NCIT:C165700 Advanced Breast Adenocarcinoma 7 141643 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 141644 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 141645 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 8 141646 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 141647 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 141648 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 141649 -NCIT:C168777 Metastatic HER2-Negative Breast Carcinoma 7 141650 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 141651 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 141652 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 141653 -NCIT:C179554 Metastatic HER2-Low Breast Carcinoma 7 141654 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 141655 -NCIT:C180924 Metastatic HER2-Positive Breast Carcinoma 7 141656 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 8 141657 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 8 141658 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 141659 -NCIT:C181787 Metastatic Breast Inflammatory Carcinoma 7 141660 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 8 141661 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 8 141662 -NCIT:C9246 Stage IIIB Breast Inflammatory Carcinoma 8 141663 -NCIT:C185880 Metastatic Hormone Receptor-Positive Breast Carcinoma 7 141664 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 141665 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 141666 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 141667 -NCIT:C190852 Metastatic Androgen Receptor-Positive Breast Carcinoma 8 141668 -NCIT:C190856 Metastatic Estrogen Receptor-Positive Breast Carcinoma 8 141669 -NCIT:C190677 Metastatic Hormone Receptor-Negative Breast Carcinoma 7 141670 -NCIT:C153348 Metastatic Triple-Negative Breast Carcinoma 8 141671 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 141672 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 141673 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 141674 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 9 141675 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 141676 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 141677 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 7 141678 -NCIT:C76326 Metastatic Breast Ductal Carcinoma 7 141679 -NCIT:C76328 Metastatic Breast Lobular Carcinoma 7 141680 -NCIT:C165703 Refractory Breast Adenocarcinoma 6 141681 -NCIT:C157057 Refractory Hormone Receptor-Positive Breast Carcinoma 7 141682 -NCIT:C167076 Refractory Triple-Negative Breast Carcinoma 7 141683 -NCIT:C168784 Refractory HER2-Negative Breast Carcinoma 7 141684 -NCIT:C182110 Refractory HER2-Positive Breast Carcinoma 7 141685 -NCIT:C165743 Hormone Receptor-Negative Breast Carcinoma 6 141686 -NCIT:C190676 Unresectable Hormone Receptor-Negative Breast Carcinoma 7 141687 -NCIT:C165491 Unresectable Triple-Negative Breast Carcinoma 8 141688 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 141689 -NCIT:C190677 Metastatic Hormone Receptor-Negative Breast Carcinoma 7 141690 -NCIT:C153348 Metastatic Triple-Negative Breast Carcinoma 8 141691 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 141692 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 141693 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 141694 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 9 141695 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 141696 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 141697 -NCIT:C71732 Triple-Negative Breast Carcinoma 7 141698 -NCIT:C153348 Metastatic Triple-Negative Breast Carcinoma 8 141699 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 141700 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 141701 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 141702 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 9 141703 -NCIT:C165491 Unresectable Triple-Negative Breast Carcinoma 8 141704 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 141705 -NCIT:C167076 Refractory Triple-Negative Breast Carcinoma 8 141706 -NCIT:C171014 Recurrent Triple-Negative Breast Carcinoma 8 141707 -NCIT:C181081 Early Stage Triple-Negative Breast Carcinoma 8 141708 -NCIT:C168519 HER2-Negative Breast Carcinoma 6 141709 -NCIT:C168777 Metastatic HER2-Negative Breast Carcinoma 7 141710 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 141711 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 141712 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 141713 -NCIT:C168783 Recurrent HER2-Negative Breast Carcinoma 7 141714 -NCIT:C168784 Refractory HER2-Negative Breast Carcinoma 7 141715 -NCIT:C187161 Unresectable HER2-Negative Breast Carcinoma 7 141716 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 8 141717 -NCIT:C190215 Early Stage HER2-Negative Breast Carcinoma 7 141718 -NCIT:C175588 Recurrent Breast Adenocarcinoma 6 141719 -NCIT:C153568 Recurrent Breast Acinic Cell Carcinoma 7 141720 -NCIT:C153584 Recurrent Lobular Breast Carcinoma 7 141721 -NCIT:C153587 Recurrent Invasive Breast Carcinoma of No Special Type 7 141722 -NCIT:C153588 Recurrent Breast Paget Disease 7 141723 -NCIT:C168783 Recurrent HER2-Negative Breast Carcinoma 7 141724 -NCIT:C171014 Recurrent Triple-Negative Breast Carcinoma 7 141725 -NCIT:C182108 Recurrent HER2-Positive Breast Carcinoma 7 141726 -NCIT:C185157 Recurrent Hormone Receptor-Positive Breast Carcinoma 7 141727 -NCIT:C8607 Recurrent Breast Inflammatory Carcinoma 7 141728 -NCIT:C179553 HER2-Low Breast Carcinoma 6 141729 -NCIT:C179554 Metastatic HER2-Low Breast Carcinoma 7 141730 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 141731 -NCIT:C3771 Breast Lobular Carcinoma 6 141732 -NCIT:C153584 Recurrent Lobular Breast Carcinoma 7 141733 -NCIT:C4018 Breast Lobular Carcinoma In Situ 7 141734 -NCIT:C137839 Breast Pleomorphic Lobular Carcinoma In Situ 8 141735 -NCIT:C175949 Breast Classic Lobular Carcinoma In Situ 8 141736 -NCIT:C83170 Breast Classic Lobular Carcinoma In Situ Type A 9 141737 -NCIT:C83171 Breast Classic Lobular Carcinoma In Situ Type B 9 141738 -NCIT:C175950 Breast Florid Lobular Carcinoma In Situ 8 141739 -NCIT:C76328 Metastatic Breast Lobular Carcinoma 7 141740 -NCIT:C7950 Invasive Breast Lobular Carcinoma 7 141741 -NCIT:C157235 Breast Histiocytoid Carcinoma 8 141742 -NCIT:C187405 Invasive Breast Lobular Carcinoma with Extracellular Mucin 8 141743 -NCIT:C54691 Invasive Breast Lobular Carcinoma, Signet Ring Variant 8 141744 -NCIT:C9136 Invasive Breast Lobular Carcinoma with Predominant In Situ Component 8 141745 -NCIT:C97049 Invasive Breast Lobular Carcinoma, Alveolar Variant 8 141746 -NCIT:C97051 Invasive Breast Lobular Carcinoma, Pleomorphic Variant 8 141747 -NCIT:C97052 Invasive Breast Lobular Carcinoma, Solid Variant 8 141748 -NCIT:C97053 Invasive Breast Lobular Carcinoma, Tubulolobular Variant 8 141749 -NCIT:C4001 Breast Inflammatory Carcinoma 6 141750 -NCIT:C158751 Unresectable Breast Inflammatory Carcinoma 7 141751 -NCIT:C181787 Metastatic Breast Inflammatory Carcinoma 7 141752 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 8 141753 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 8 141754 -NCIT:C9246 Stage IIIB Breast Inflammatory Carcinoma 8 141755 -NCIT:C8607 Recurrent Breast Inflammatory Carcinoma 7 141756 -NCIT:C4017 Breast Ductal Carcinoma 6 141757 -NCIT:C2924 Breast Ductal Carcinoma In Situ 7 141758 -NCIT:C176005 Breast Ductal Carcinoma In Situ, Comedo Type 8 141759 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 8 141760 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 9 141761 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 9 141762 -NCIT:C5137 Breast Ductal Carcinoma In Situ, Non-Comedo Type 8 141763 -NCIT:C5138 Breast Ductal Carcinoma In Situ, Cribriform Pattern 8 141764 -NCIT:C66933 Breast Ductal Carcinoma In Situ, Solid Type 8 141765 -NCIT:C7949 Breast Ductal Carcinoma In Situ, High Grade 8 141766 -NCIT:C9456 Breast Ductal Carcinoma In Situ, Intermediate Grade 8 141767 -NCIT:C9457 Breast Ductal Carcinoma In Situ, Low Grade 8 141768 -NCIT:C4194 Invasive Breast Carcinoma of No Special Type 7 141769 -NCIT:C153587 Recurrent Invasive Breast Carcinoma of No Special Type 8 141770 -NCIT:C175585 Breast Carcinoma with Neuroendocrine Differentiation 8 141771 -NCIT:C40349 Breast Carcinoma with Osteoclast-Like Stromal Giant Cells 8 141772 -NCIT:C40350 Breast Carcinoma with Choriocarcinomatous Features 8 141773 -NCIT:C40351 Breast Carcinoma with Melanotic Features 8 141774 -NCIT:C40365 Breast Lipid-Rich Carcinoma 8 141775 -NCIT:C40366 Breast Oncocytic Carcinoma 8 141776 -NCIT:C40368 Glycogen-Rich, Clear Cell Breast Carcinoma 8 141777 -NCIT:C40369 Breast Sebaceous Carcinoma 8 141778 -NCIT:C5161 Breast Pleomorphic Carcinoma 8 141779 -NCIT:C66719 Breast Atypical Medullary Carcinoma 8 141780 -NCIT:C6987 Breast Ductal Carcinoma with Squamous Metaplasia 8 141781 -NCIT:C7362 Breast Scirrhous Carcinoma 8 141782 -NCIT:C9119 Breast Medullary Carcinoma 8 141783 -NCIT:C9132 Invasive Breast Carcinoma of No Special Type with Predominant Intraductal Component 8 141784 -NCIT:C76326 Metastatic Breast Ductal Carcinoma 7 141785 -NCIT:C40354 Breast Mucinous Cystadenocarcinoma 6 141786 -NCIT:C40360 Breast Adenocarcinoma with Spindle Cell Metaplasia 6 141787 -NCIT:C40367 Breast Acinic Cell Carcinoma 6 141788 -NCIT:C153568 Recurrent Breast Acinic Cell Carcinoma 7 141789 -NCIT:C47857 Breast Paget Disease 6 141790 -NCIT:C153588 Recurrent Breast Paget Disease 7 141791 -NCIT:C3301 Nipple Paget Disease 7 141792 -NCIT:C47858 Breast Paget Disease without Invasive Carcinoma 7 141793 -NCIT:C4019 Breast Paget Disease and Intraductal Carcinoma 8 141794 -NCIT:C7951 Breast Paget Disease with Invasive Ductal Carcinoma 7 141795 -NCIT:C5141 Breast Apocrine Carcinoma 6 141796 -NCIT:C5140 Breast Apocrine Carcinoma In Situ 7 141797 -NCIT:C5457 Invasive Breast Apocrine Carcinoma 7 141798 -NCIT:C5142 Invasive Breast Cribriform Carcinoma 6 141799 -NCIT:C5160 Breast Mixed Ductal and Lobular Carcinoma 6 141800 -NCIT:C7688 Invasive Breast Ductal Carcinoma and Lobular Carcinoma 7 141801 -NCIT:C6393 Invasive Breast Ductal Carcinoma and Invasive Lobular Carcinoma 8 141802 -NCIT:C7689 Invasive Breast Ductal Carcinoma and Lobular Carcinoma In Situ 8 141803 -NCIT:C7690 Breast Ductal Carcinoma In Situ and Lobular Carcinoma 7 141804 -NCIT:C4195 Breast Ductal Carcinoma In Situ and Lobular Carcinoma In Situ 8 141805 -NCIT:C6939 Breast Ductal Carcinoma In Situ and Invasive Lobular Carcinoma 8 141806 -NCIT:C5163 Breast Adenocarcinoma with Squamous Metaplasia 6 141807 -NCIT:C6987 Breast Ductal Carcinoma with Squamous Metaplasia 7 141808 -NCIT:C5175 Breast Signet Ring Cell Carcinoma 6 141809 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 7 141810 -NCIT:C54691 Invasive Breast Lobular Carcinoma, Signet Ring Variant 7 141811 -NCIT:C53553 Breast Carcinoma by Gene Expression Profile 6 141812 -NCIT:C53554 Luminal A Breast Carcinoma 7 141813 -NCIT:C53555 Luminal B Breast Carcinoma 7 141814 -NCIT:C53556 HER2-Positive Breast Carcinoma 7 141815 -NCIT:C180924 Metastatic HER2-Positive Breast Carcinoma 8 141816 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 141817 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 141818 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 141819 -NCIT:C182108 Recurrent HER2-Positive Breast Carcinoma 8 141820 -NCIT:C182110 Refractory HER2-Positive Breast Carcinoma 8 141821 -NCIT:C186284 Unresectable HER2-Positive Breast Carcinoma 8 141822 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 141823 -NCIT:C53557 Normal Breast-Like Subtype of Breast Carcinoma 7 141824 -NCIT:C53558 Basal-Like Breast Carcinoma 7 141825 -NCIT:C71732 Triple-Negative Breast Carcinoma 7 141826 -NCIT:C153348 Metastatic Triple-Negative Breast Carcinoma 8 141827 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 141828 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 141829 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 141830 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 9 141831 -NCIT:C165491 Unresectable Triple-Negative Breast Carcinoma 8 141832 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 141833 -NCIT:C167076 Refractory Triple-Negative Breast Carcinoma 8 141834 -NCIT:C171014 Recurrent Triple-Negative Breast Carcinoma 8 141835 -NCIT:C181081 Early Stage Triple-Negative Breast Carcinoma 8 141836 -NCIT:C9131 Breast Mucinous Carcinoma 6 141837 -NCIT:C40355 Breast Columnar Cell Mucinous Carcinoma 7 141838 -NCIT:C9134 Breast Papillary Carcinoma 6 141839 -NCIT:C176009 Encapsulated Breast Papillary Carcinoma 7 141840 -NCIT:C176010 Encapsulated Breast Papillary Carcinoma with Invasion 8 141841 -NCIT:C36085 Invasive Breast Papillary Carcinoma 7 141842 -NCIT:C176010 Encapsulated Breast Papillary Carcinoma with Invasion 8 141843 -NCIT:C176012 Invasive Breast Solid Papillary Carcinoma 8 141844 -NCIT:C36084 Invasive Breast Micropapillary Carcinoma 8 141845 -NCIT:C7439 Breast Papillary Ductal Carcinoma In Situ with Invasion 8 141846 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 7 141847 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 8 141848 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 8 141849 -NCIT:C6870 Breast Solid Papillary Carcinoma 7 141850 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 8 141851 -NCIT:C176012 Invasive Breast Solid Papillary Carcinoma 8 141852 -NCIT:C9135 Breast Tubular Carcinoma 6 141853 -NCIT:C5600 Anal Adenocarcinoma 5 141854 -NCIT:C153575 Recurrent Anal Adenocarcinoma 6 141855 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 7 141856 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 7 141857 -NCIT:C5598 Anal Paget Disease 6 141858 -NCIT:C7476 Anal Margin Paget Disease 7 141859 -NCIT:C7477 Anal Canal Paget Disease 7 141860 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 8 141861 -NCIT:C7471 Anal Canal Adenocarcinoma 6 141862 -NCIT:C5606 Anal Mucinous Adenocarcinoma 7 141863 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 8 141864 -NCIT:C7477 Anal Canal Paget Disease 7 141865 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 8 141866 -NCIT:C7474 Anal Extramucosal (Perianal) Adenocarcinoma 6 141867 -NCIT:C5609 Anal Glands Adenocarcinoma 7 141868 -NCIT:C7475 Anal Adenocarcinoma within Anorectal Fistula 7 141869 -NCIT:C5914 Oral Cavity Adenocarcinoma 5 141870 -NCIT:C6143 Renal Pelvis Adenocarcinoma 5 141871 -NCIT:C6155 Ureter Adenocarcinoma 5 141872 -NCIT:C6167 Urethral Adenocarcinoma 5 141873 -NCIT:C6172 Urethral Clear Cell Adenocarcinoma 6 141874 -NCIT:C7371 Accessory Urethral Gland Adenocarcinoma 6 141875 -NCIT:C180948 Skene Gland Adenocarcinoma of the Urethra 7 141876 -NCIT:C39864 Cowper Gland Adenocarcinoma of the Urethra 7 141877 -NCIT:C39865 Littre Gland Adenocarcinoma of the Urethra 7 141878 -NCIT:C6265 Fallopian Tube Adenocarcinoma 5 141879 -NCIT:C170766 Recurrent Fallopian Tube Adenocarcinoma 6 141880 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 7 141881 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 7 141882 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 7 141883 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 7 141884 -NCIT:C170970 Unresectable Fallopian Tube Adenocarcinoma 6 141885 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 7 141886 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 7 141887 -NCIT:C170971 Refractory Fallopian Tube Adenocarcinoma 6 141888 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 7 141889 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 7 141890 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 7 141891 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 7 141892 -NCIT:C40099 Fallopian Tube Serous Adenocarcinoma 6 141893 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 7 141894 -NCIT:C126456 Fallopian Tube High Grade Serous Adenocarcinoma 7 141895 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 8 141896 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 8 141897 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 8 141898 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 8 141899 -NCIT:C40103 Fallopian Tube Mucinous Adenocarcinoma 6 141900 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 7 141901 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 7 141902 -NCIT:C40105 Stage 0 Fallopian Tube Cancer AJCC v7 6 141903 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 7 141904 -NCIT:C6279 Fallopian Tube Endometrioid Adenocarcinoma 6 141905 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 7 141906 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 7 141907 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 7 141908 -NCIT:C6280 Fallopian Tube Clear Cell Adenocarcinoma 6 141909 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 7 141910 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 7 141911 -NCIT:C6380 Vulvar Adenocarcinoma 5 141912 -NCIT:C128162 Vulvar Adenocarcinoma of Mammary Gland Type 6 141913 -NCIT:C128164 Vulvar Adenocarcinoma of Sweat Gland Origin 6 141914 -NCIT:C4027 Vulvar Paget Disease 7 141915 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 7 141916 -NCIT:C40306 Vulvar Porocarcinoma 8 141917 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 7 141918 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 7 141919 -NCIT:C128166 Vulvar Adenocarcinoma, Intestinal-Type 6 141920 -NCIT:C40309 Vulvar Sebaceous Carcinoma 6 141921 -NCIT:C7719 Bartholin Gland Adenocarcinoma 6 141922 -NCIT:C6459 Thymic Adenocarcinoma 5 141923 -NCIT:C146717 Thymic Hepatoid Adenocarcinoma 6 141924 -NCIT:C183314 Thymic Enteric-Type Adenocarcinoma 6 141925 -NCIT:C183315 Thymic Adenocarcinoma, Not Otherwise Specified 6 141926 -NCIT:C27937 Thymic Low Grade Papillary Adenocarcinoma 6 141927 -NCIT:C65192 Tubular Adenocarcinoma 5 141928 -NCIT:C3682 Sweat Gland Tubular Carcinoma 6 141929 -NCIT:C45509 Lung Fetal Adenocarcinoma 6 141930 -NCIT:C5473 Gastric Tubular Adenocarcinoma 6 141931 -NCIT:C9135 Breast Tubular Carcinoma 6 141932 -NCIT:C96915 Gallbladder Adenocarcinoma, Biliary Type 6 141933 -NCIT:C96936 Extrahepatic Bile Duct Adenocarcinoma, Biliary Type 6 141934 -NCIT:C6650 Ampulla of Vater Adenocarcinoma 5 141935 -NCIT:C153574 Recurrent Ampulla of Vater Adenocarcinoma 6 141936 -NCIT:C189065 Unresectable Ampulla of Vater Adenocarcinoma 6 141937 -NCIT:C27414 Ampulla of Vater Clear Cell Adenocarcinoma 6 141938 -NCIT:C27415 Ampulla of Vater Intestinal-Type Adenocarcinoma 6 141939 -NCIT:C27416 Ampulla of Vater Mucinous Adenocarcinoma 6 141940 -NCIT:C6656 Ampulla of Vater Signet Ring Cell Carcinoma 6 141941 -NCIT:C95963 Ampulla of Vater Pancreatobiliary Type Adenocarcinoma 6 141942 -NCIT:C95966 Ampulla of Vater Hepatoid Adenocarcinoma 6 141943 -NCIT:C95967 Ampulla of Vater Invasive Papillary Adenocarcinoma 6 141944 -NCIT:C66745 Adenocarcinoma with Neuroendocrine Differentiation 5 141945 -NCIT:C127915 Cervical Adenocarcinoma Admixed with Neuroendocrine Carcinoma 6 141946 -NCIT:C167364 Endocrine Mucin-Producing Sweat Gland Carcinoma 6 141947 -NCIT:C175585 Breast Carcinoma with Neuroendocrine Differentiation 6 141948 -NCIT:C39903 Prostate Adenocarcinoma with Neuroendocrine Differentiation 6 141949 -NCIT:C158656 Usual Prostate Adenocarcinoma with Neuroendocrine Differentiation 7 141950 -NCIT:C158664 Prostate Adenocarcinoma with Paneth Cell-Like Neuroendocrine Differentiation 7 141951 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 7 141952 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 8 141953 -NCIT:C66950 Hepatoid Adenocarcinoma 5 141954 -NCIT:C146717 Thymic Hepatoid Adenocarcinoma 6 141955 -NCIT:C39838 Bladder Hepatoid Adenocarcinoma 6 141956 -NCIT:C95465 Pancreatic Hepatoid Adenocarcinoma 6 141957 -NCIT:C95747 Gastric Hepatoid Adenocarcinoma 6 141958 -NCIT:C95966 Ampulla of Vater Hepatoid Adenocarcinoma 6 141959 -NCIT:C96890 Gallbladder Hepatoid Adenocarcinoma 6 141960 -NCIT:C6848 Middle Ear Adenocarcinoma 5 141961 -NCIT:C6938 Sweat Gland Carcinoma 5 141962 -NCIT:C128164 Vulvar Adenocarcinoma of Sweat Gland Origin 6 141963 -NCIT:C4027 Vulvar Paget Disease 7 141964 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 7 141965 -NCIT:C40306 Vulvar Porocarcinoma 8 141966 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 7 141967 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 7 141968 -NCIT:C167344 Spiradenocylindrocarcinoma 6 141969 -NCIT:C167364 Endocrine Mucin-Producing Sweat Gland Carcinoma 6 141970 -NCIT:C167365 Syringocystadenocarcinoma Papilliferum 6 141971 -NCIT:C27255 Eccrine Carcinoma 6 141972 -NCIT:C27254 Papillary Eccrine Carcinoma 7 141973 -NCIT:C27534 Digital Papillary Adenocarcinoma 8 141974 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 7 141975 -NCIT:C40306 Vulvar Porocarcinoma 8 141976 -NCIT:C43345 Ductal Eccrine Adenocarcinoma 7 141977 -NCIT:C43346 Ductal Eccrine Carcinoma with Spindle Cell Elements 8 141978 -NCIT:C43347 Squamoid Eccrine Ductal Carcinoma 8 141979 -NCIT:C43349 Ductal Eccrine Carcinoma with Abundant Fibromyxoid Stroma 8 141980 -NCIT:C5560 Porocarcinoma 7 141981 -NCIT:C40306 Vulvar Porocarcinoma 8 141982 -NCIT:C43354 Porocarcinoma In Situ 8 141983 -NCIT:C27533 Primary Cutaneous Mucinous Carcinoma 6 141984 -NCIT:C3682 Sweat Gland Tubular Carcinoma 6 141985 -NCIT:C4169 Apocrine Carcinoma 6 141986 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 7 141987 -NCIT:C4176 Ceruminous Adenocarcinoma 7 141988 -NCIT:C5141 Breast Apocrine Carcinoma 7 141989 -NCIT:C5140 Breast Apocrine Carcinoma In Situ 8 141990 -NCIT:C5457 Invasive Breast Apocrine Carcinoma 8 141991 -NCIT:C43344 Cylindrocarcinoma 6 141992 -NCIT:C4471 Adenoid Cystic Skin Carcinoma 6 141993 -NCIT:C4472 Mucoepidermoid Skin Carcinoma 6 141994 -NCIT:C5117 Spiradenocarcinoma 6 141995 -NCIT:C5180 Malignant Breast Spiradenoma 7 141996 -NCIT:C54664 Hidradenocarcinoma 6 141997 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 7 141998 -NCIT:C7581 Microcystic Adnexal Carcinoma 6 141999 -NCIT:C7073 Paget Disease 5 142000 -NCIT:C3302 Extramammary Paget Disease 6 142001 -NCIT:C27817 Penile Paget Disease 7 142002 -NCIT:C4027 Vulvar Paget Disease 7 142003 -NCIT:C5598 Anal Paget Disease 7 142004 -NCIT:C7476 Anal Margin Paget Disease 8 142005 -NCIT:C7477 Anal Canal Paget Disease 8 142006 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 9 142007 -NCIT:C7728 Scrotal Paget Disease 7 142008 -NCIT:C47857 Breast Paget Disease 6 142009 -NCIT:C153588 Recurrent Breast Paget Disease 7 142010 -NCIT:C3301 Nipple Paget Disease 7 142011 -NCIT:C47858 Breast Paget Disease without Invasive Carcinoma 7 142012 -NCIT:C4019 Breast Paget Disease and Intraductal Carcinoma 8 142013 -NCIT:C7951 Breast Paget Disease with Invasive Ductal Carcinoma 7 142014 -NCIT:C7359 Endometrial Adenocarcinoma 5 142015 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 6 142016 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 7 142017 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 7 142018 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 7 142019 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 7 142020 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 7 142021 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 6 142022 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 7 142023 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 7 142024 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 7 142025 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 7 142026 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 7 142027 -NCIT:C179322 Endometrial Mesonephric-Like Adenocarcinoma 6 142028 -NCIT:C180536 Endometrial Mucinous Adenocarcinoma, Intestinal-Type 6 142029 -NCIT:C180537 Endometrial Mucinous Adenocarcinoma, Gastric-Type 6 142030 -NCIT:C39749 Type II Endometrial Adenocarcinoma 6 142031 -NCIT:C27838 Endometrial Serous Adenocarcinoma 7 142032 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 8 142033 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 8 142034 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 8 142035 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 142036 -NCIT:C187374 Platinum-Sensitive Endometrial Serous Adenocarcinoma 8 142037 -NCIT:C40152 Serous Endometrial Intraepithelial Carcinoma 7 142038 -NCIT:C8028 Endometrial Clear Cell Adenocarcinoma 7 142039 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 8 142040 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 8 142041 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 8 142042 -NCIT:C40145 Type I Endometrial Adenocarcinoma 6 142043 -NCIT:C40144 Endometrial Mucinous Adenocarcinoma 7 142044 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 8 142045 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 8 142046 -NCIT:C40149 FIGO Grade 1 Endometrial Mucinous Adenocarcinoma 8 142047 -NCIT:C40150 FIGO Grade 2 Endometrial Mucinous Adenocarcinoma 8 142048 -NCIT:C40151 FIGO Grade 3 Endometrial Mucinous Adenocarcinoma 8 142049 -NCIT:C6287 Endometrial Endometrioid Adenocarcinoma 7 142050 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 8 142051 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 8 142052 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 8 142053 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 142054 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 142055 -NCIT:C180510 Low Grade Endometrial Endometrioid Adenocarcinoma 8 142056 -NCIT:C40146 FIGO Grade 1 Endometrial Endometrioid Adenocarcinoma 9 142057 -NCIT:C40147 FIGO Grade 2 Endometrial Endometrioid Adenocarcinoma 9 142058 -NCIT:C180512 POLE-Ultramutated Endometrial Endometrioid Adenocarcinoma 8 142059 -NCIT:C180514 Mismatch Repair-Deficient Endometrial Endometrioid Adenocarcinoma 8 142060 -NCIT:C180515 p53-Mutant Endometrial Endometrioid Adenocarcinoma 8 142061 -NCIT:C180516 No Specific Molecular Profile Endometrial Endometrioid Adenocarcinoma 8 142062 -NCIT:C27839 Endometrial Endometrioid Adenocarcinoma, Secretory Variant 8 142063 -NCIT:C27843 Endometrial Endometrioid Adenocarcinoma with Clear Cell Change 8 142064 -NCIT:C27844 Endometrial Endometrioid Adenocarcinoma with a Poorly Differentiated Carcinomatous Component 8 142065 -NCIT:C27845 Endometrial Endometrioid Adenocarcinoma with an Undifferentiated Carcinomatous Component 8 142066 -NCIT:C27846 Villoglandular Endometrial Endometrioid Adenocarcinoma 8 142067 -NCIT:C27848 Endometrial Endometrioid Adenocarcinoma, Ciliated Variant 8 142068 -NCIT:C27849 Oxyphilic Endometrial Endometrioid Adenocarcinoma 8 142069 -NCIT:C27850 Endometrial Endometrioid Adenocarcinoma with Spindled Epithelial Cells 8 142070 -NCIT:C40148 High Grade Endometrial Endometrioid Adenocarcinoma 8 142071 -NCIT:C6290 Endometrial Endometrioid Adenocarcinoma, Variant with Squamous Differentiation 8 142072 -NCIT:C40153 Endometrial Mixed Cell Adenocarcinoma 6 142073 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 7 142074 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 7 142075 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 7 142076 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 6 142077 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 7 142078 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 8 142079 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 7 142080 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 8 142081 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 8 142082 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 7 142083 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 8 142084 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 8 142085 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 7 142086 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 8 142087 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 7 142088 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 7 142089 -NCIT:C7676 Adenocarcinoma in Adenomatous Polyp 5 142090 -NCIT:C162531 Invasive Adenocarcinoma in Adenomatous Polyp 6 142091 -NCIT:C4136 Adenocarcinoma in Multiple Adenomatous Polyps 6 142092 -NCIT:C4134 Adenocarcinoma in Adenomatous Polyposis Coli 7 142093 -NCIT:C4141 Adenocarcinoma in Villous Adenoma 6 142094 -NCIT:C8376 Adenocarcinoma In Situ in Villous Adenoma 7 142095 -NCIT:C4145 Adenocarcinoma in Tubulovillous Adenoma 6 142096 -NCIT:C4144 Adenocarcinoma In Situ in Tubulovillous Adenoma 7 142097 -NCIT:C7677 Adenocarcinoma in Tubular Adenoma 6 142098 -NCIT:C7679 Adenocarcinoma In Situ in Tubular Adenoma 7 142099 -NCIT:C7678 Adenocarcinoma In Situ in Adenomatous Polyp 6 142100 -NCIT:C4144 Adenocarcinoma In Situ in Tubulovillous Adenoma 7 142101 -NCIT:C7679 Adenocarcinoma In Situ in Tubular Adenoma 7 142102 -NCIT:C8376 Adenocarcinoma In Situ in Villous Adenoma 7 142103 -NCIT:C7700 Ovarian Adenocarcinoma 5 142104 -NCIT:C153614 Recurrent Ovarian Adenocarcinoma 6 142105 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 7 142106 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 7 142107 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 8 142108 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 8 142109 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 8 142110 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 7 142111 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 7 142112 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 8 142113 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 7 142114 -NCIT:C170968 Refractory Ovarian Adenocarcinoma 6 142115 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 7 142116 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 7 142117 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 8 142118 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 8 142119 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 7 142120 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 7 142121 -NCIT:C179208 Ovarian Signet Ring Cell Carcinoma 6 142122 -NCIT:C179321 Ovarian Mesonephric-Like Adenocarcinoma 6 142123 -NCIT:C179339 Ovarian Mixed Cell Adenocarcinoma 6 142124 -NCIT:C40078 Ovarian Clear Cell Adenocarcinoma 6 142125 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 7 142126 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 7 142127 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 142128 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 7 142129 -NCIT:C7980 Ovarian Clear Cell Cystadenocarcinoma 7 142130 -NCIT:C5228 Ovarian Cystadenocarcinoma 6 142131 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 7 142132 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 8 142133 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 7 142134 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 7 142135 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 8 142136 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 142137 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 142138 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 8 142139 -NCIT:C7980 Ovarian Clear Cell Cystadenocarcinoma 7 142140 -NCIT:C5243 Ovarian Mucinous Adenocarcinoma 6 142141 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 7 142142 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 7 142143 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 7 142144 -NCIT:C183245 Unresectable Ovarian Mucinous Adenocarcinoma 7 142145 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 7 142146 -NCIT:C7550 Ovarian Serous Adenocarcinoma 6 142147 -NCIT:C105555 Ovarian High Grade Serous Adenocarcinoma 7 142148 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 8 142149 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 8 142150 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 8 142151 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 142152 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 8 142153 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 142154 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 142155 -NCIT:C105556 Ovarian Low Grade Serous Adenocarcinoma 7 142156 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 8 142157 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 8 142158 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 7 142159 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 8 142160 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 8 142161 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 8 142162 -NCIT:C160781 Unresectable Ovarian Serous Adenocarcinoma 7 142163 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 8 142164 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 142165 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 7 142166 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 142167 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 142168 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 142169 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 8 142170 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 142171 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 142172 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 8 142173 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 142174 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 142175 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 142176 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 142177 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 142178 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 7 142179 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 8 142180 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 8 142181 -NCIT:C6256 Ovarian Serous Surface Papillary Adenocarcinoma 7 142182 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 7 142183 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 8 142184 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 142185 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 142186 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 8 142187 -NCIT:C7979 Ovarian Endometrioid Adenocarcinoma 6 142188 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 7 142189 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 7 142190 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 7 142191 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 142192 -NCIT:C186273 Unresectable Ovarian Endometrioid Adenocarcinoma 7 142193 -NCIT:C40061 Ovarian Endometrioid Adenocarcinoma with Squamous Differentiation 7 142194 -NCIT:C7718 Appendix Adenocarcinoma 5 142195 -NCIT:C179174 Recurrent Appendix Adenocarcinoma 6 142196 -NCIT:C153579 Recurrent Appendix Mucinous Adenocarcinoma 7 142197 -NCIT:C179178 Refractory Appendix Adenocarcinoma 6 142198 -NCIT:C182104 Metastatic Appendix Adenocarcinoma 6 142199 -NCIT:C162274 Metastatic Appendix Mucinous Adenocarcinoma 7 142200 -NCIT:C182105 Advanced Appendix Adenocarcinoma 7 142201 -NCIT:C43554 Appendix Signet Ring Cell Carcinoma 6 142202 -NCIT:C43558 Appendix Mucinous Adenocarcinoma 6 142203 -NCIT:C153579 Recurrent Appendix Mucinous Adenocarcinoma 7 142204 -NCIT:C162274 Metastatic Appendix Mucinous Adenocarcinoma 7 142205 -NCIT:C5511 Appendix Mucinous Cystadenocarcinoma 7 142206 -NCIT:C7888 Small Intestinal Adenocarcinoma 5 142207 -NCIT:C133893 Small Intestinal Adenocarcinoma by AJCC v8 Stage 6 142208 -NCIT:C133894 Stage 0 Small Intestinal Adenocarcinoma AJCC v8 7 142209 -NCIT:C133895 Stage I Small Intestinal Adenocarcinoma AJCC v8 7 142210 -NCIT:C133896 Stage II Small Intestinal Adenocarcinoma AJCC v8 7 142211 -NCIT:C133897 Stage IIA Small Intestinal Adenocarcinoma AJCC v8 8 142212 -NCIT:C133898 Stage IIB Small Intestinal Adenocarcinoma AJCC v8 8 142213 -NCIT:C133899 Stage III Small Intestinal Adenocarcinoma AJCC v8 7 142214 -NCIT:C133900 Stage IIIA Small Intestinal Adenocarcinoma AJCC v8 8 142215 -NCIT:C133901 Stage IIIB Small Intestinal Adenocarcinoma AJCC v8 8 142216 -NCIT:C133902 Stage IV Small Intestinal Adenocarcinoma AJCC v8 7 142217 -NCIT:C175516 Unresectable Small Intestinal Adenocarcinoma 6 142218 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 7 142219 -NCIT:C181158 Jejunal Adenocarcinoma 6 142220 -NCIT:C43536 Small Intestinal Mucinous Adenocarcinoma 6 142221 -NCIT:C43543 Small Intestinal Signet Ring Cell Carcinoma 6 142222 -NCIT:C7889 Duodenal Adenocarcinoma 6 142223 -NCIT:C27322 Periampullary Adenocarcinoma 7 142224 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 8 142225 -NCIT:C169108 Resectable Periampullary Adenocarcinoma 8 142226 -NCIT:C8934 Metastatic Small Intestinal Adenocarcinoma 6 142227 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 7 142228 -NCIT:C7981 Vaginal Adenocarcinoma 5 142229 -NCIT:C180943 Human Papillomavirus-Related Vaginal Adenocarcinoma 6 142230 -NCIT:C180947 Vaginal Adenocarcinoma of Skene Gland Origin 6 142231 -NCIT:C40251 Vaginal Endometrioid Adenocarcinoma 6 142232 -NCIT:C40252 Vaginal Mucinous Adenocarcinoma 6 142233 -NCIT:C180945 Vaginal Mucinous Adenocarcinoma, Gastric-Type 7 142234 -NCIT:C180946 Vaginal Mucinous Adenocarcinoma, Intestinal-Type 7 142235 -NCIT:C40253 Vaginal Mesonephric Adenocarcinoma 6 142236 -NCIT:C7735 Vaginal Clear Cell Adenocarcinoma 6 142237 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 6 142238 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 7 142239 -NCIT:C8021 Salivary Gland Adenocarcinoma 5 142240 -NCIT:C123384 Salivary Gland Secretory Carcinoma 6 142241 -NCIT:C173648 Salivary Gland Sebaceous Carcinoma 6 142242 -NCIT:C35702 Salivary Gland Polymorphous Adenocarcinoma 6 142243 -NCIT:C173576 Oropharyngeal Polymorphous Adenocarcinoma 7 142244 -NCIT:C3678 Salivary Gland Basal Cell Adenocarcinoma 6 142245 -NCIT:C5903 Major Salivary Gland Adenocarcinoma 6 142246 -NCIT:C5901 Major Salivary Gland Acinic Cell Carcinoma 7 142247 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 8 142248 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 9 142249 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 8 142250 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 9 142251 -NCIT:C5940 Submandibular Gland Adenocarcinoma 7 142252 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 8 142253 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 9 142254 -NCIT:C5941 Parotid Gland Adenocarcinoma 7 142255 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 8 142256 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 9 142257 -NCIT:C5958 Sublingual Gland Adenocarcinoma 7 142258 -NCIT:C5904 Salivary Duct Carcinoma 6 142259 -NCIT:C153611 Recurrent Salivary Duct Carcinoma 7 142260 -NCIT:C5948 Minor Salivary Gland Adenocarcinoma 6 142261 -NCIT:C153612 Recurrent Minor Salivary Gland Adenocarcinoma 7 142262 -NCIT:C160974 Cribriform Adenocarcinoma of Minor Salivary Gland 7 142263 -NCIT:C6243 Minor Salivary Gland Acinic Cell Carcinoma 7 142264 -NCIT:C5980 Salivary Gland Cystadenocarcinoma 6 142265 -NCIT:C62192 Salivary Gland Intraductal Carcinoma 6 142266 -NCIT:C62193 Salivary Gland Mucinous Adenocarcinoma 6 142267 -NCIT:C62194 Salivary Gland Oncocytic Carcinoma 6 142268 -NCIT:C62196 Salivary Gland Adenocarcinoma, Not Otherwise Specified 6 142269 -NCIT:C8013 Salivary Gland Acinic Cell Carcinoma 6 142270 -NCIT:C190274 Childhood Salivary Gland Acinic Cell Carcinoma 7 142271 -NCIT:C5901 Major Salivary Gland Acinic Cell Carcinoma 7 142272 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 8 142273 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 9 142274 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 8 142275 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 9 142276 -NCIT:C6243 Minor Salivary Gland Acinic Cell Carcinoma 7 142277 -NCIT:C8294 Pancreatic Adenocarcinoma 5 142278 -NCIT:C155742 Recurrent Pancreatic Adenocarcinoma 6 142279 -NCIT:C153569 Recurrent Pancreatic Acinar Cell Carcinoma 7 142280 -NCIT:C153619 Recurrent Pancreatic Ductal Adenocarcinoma 7 142281 -NCIT:C153620 Recurrent Pancreatic Cystadenocarcinoma 7 142282 -NCIT:C156906 Resectable Pancreatic Adenocarcinoma 6 142283 -NCIT:C151995 Resectable Pancreatic Ductal Adenocarcinoma 7 142284 -NCIT:C156907 Resectable Pancreatic Acinar Cell Carcinoma 7 142285 -NCIT:C157350 Borderline Resectable Pancreatic Adenocarcinoma 7 142286 -NCIT:C162015 Refractory Pancreatic Adenocarcinoma 6 142287 -NCIT:C165450 Refractory Pancreatic Ductal Adenocarcinoma 7 142288 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 7 142289 -NCIT:C162016 Unresectable Pancreatic Adenocarcinoma 6 142290 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 7 142291 -NCIT:C172245 Unresectable Pancreatic Ductal Adenocarcinoma 7 142292 -NCIT:C169041 Localized Pancreatic Adenocarcinoma 6 142293 -NCIT:C189009 Localized Pancreatic Ductal Adenocarcinoma 7 142294 -NCIT:C172813 Invasive Pancreatic Micropapillary Adenocarcinoma 6 142295 -NCIT:C3874 Pancreatic Cystadenocarcinoma 6 142296 -NCIT:C153620 Recurrent Pancreatic Cystadenocarcinoma 7 142297 -NCIT:C5724 Pancreatic Serous Cystadenocarcinoma 7 142298 -NCIT:C5727 Pancreatic Acinar Cell Cystadenocarcinoma 7 142299 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 8 142300 -NCIT:C5726 Pancreatic Intraductal Papillary-Mucinous Neoplasm with an Associated Invasive Carcinoma 6 142301 -NCIT:C7977 Pancreatic Acinar Cell Carcinoma 6 142302 -NCIT:C153569 Recurrent Pancreatic Acinar Cell Carcinoma 7 142303 -NCIT:C156907 Resectable Pancreatic Acinar Cell Carcinoma 7 142304 -NCIT:C190024 Childhood Pancreatic Acinar Cell Carcinoma 7 142305 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 8 142306 -NCIT:C5727 Pancreatic Acinar Cell Cystadenocarcinoma 7 142307 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 8 142308 -NCIT:C8933 Metastatic Pancreatic Adenocarcinoma 6 142309 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 7 142310 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 8 142311 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 8 142312 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 7 142313 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 8 142314 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 8 142315 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 8 142316 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 7 142317 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 8 142318 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 7 142319 -NCIT:C9120 Pancreatic Ductal Adenocarcinoma 6 142320 -NCIT:C151995 Resectable Pancreatic Ductal Adenocarcinoma 7 142321 -NCIT:C153619 Recurrent Pancreatic Ductal Adenocarcinoma 7 142322 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 7 142323 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 8 142324 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 8 142325 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 8 142326 -NCIT:C158961 Early Stage Pancreatic Ductal Adenocarcinoma 7 142327 -NCIT:C165450 Refractory Pancreatic Ductal Adenocarcinoma 7 142328 -NCIT:C172245 Unresectable Pancreatic Ductal Adenocarcinoma 7 142329 -NCIT:C172811 Pancreatic Poorly Cohesive Adenocarcinoma 7 142330 -NCIT:C5720 Pancreatic Signet Ring Cell Carcinoma 8 142331 -NCIT:C189009 Localized Pancreatic Ductal Adenocarcinoma 7 142332 -NCIT:C37214 Pancreatic Colloid Carcinoma 7 142333 -NCIT:C37256 Pancreatic Foamy Gland Adenocarcinoma 7 142334 -NCIT:C5722 Pancreatic Undifferentiated Carcinoma 7 142335 -NCIT:C172812 Pancreatic Undifferentiated Carcinoma with Rhabdoid Cells 8 142336 -NCIT:C5723 Pancreatic Undifferentiated Carcinoma with Osteoclast-Like Giant Cells 8 142337 -NCIT:C95426 Pancreatic Well Differentiated Ductal Adenocarcinoma 7 142338 -NCIT:C95427 Pancreatic Moderately Differentiated Ductal Adenocarcinoma 7 142339 -NCIT:C95428 Pancreatic Poorly Differentiated Ductal Adenocarcinoma 7 142340 -NCIT:C95465 Pancreatic Hepatoid Adenocarcinoma 7 142341 -NCIT:C95466 Pancreatic Medullary Carcinoma 7 142342 -NCIT:C95458 Pancreatic Mixed Acinar-Ductal Carcinoma 6 142343 -NCIT:C95507 Pancreatic Intraductal Tubulopapillary Neoplasm with an Associated Invasive Carcinoma 6 142344 -NCIT:C8955 Rete Testis Adenocarcinoma 5 142345 -NCIT:C9166 Gallbladder Adenocarcinoma 5 142346 -NCIT:C189064 Unresectable Gallbladder Adenocarcinoma 6 142347 -NCIT:C43604 Gallbladder Adenocarcinoma, Intestinal-Type 6 142348 -NCIT:C43605 Gallbladder Clear Cell Adenocarcinoma 6 142349 -NCIT:C5743 Gallbladder Intracholecystic Papillary Neoplasm with an Associated Invasive Carcinoma 6 142350 -NCIT:C5744 Gallbladder Mucinous Adenocarcinoma 6 142351 -NCIT:C5745 Gallbladder Signet Ring Cell Carcinoma 6 142352 -NCIT:C9169 Gallbladder Adenocarcinoma with Squamous Metaplasia 6 142353 -NCIT:C96887 Gallbladder Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 6 142354 -NCIT:C96890 Gallbladder Hepatoid Adenocarcinoma 6 142355 -NCIT:C96891 Gallbladder Cribriform Carcinoma 6 142356 -NCIT:C96915 Gallbladder Adenocarcinoma, Biliary Type 6 142357 -NCIT:C96916 Gallbladder Adenocarcinoma, Gastric Foveolar Type 6 142358 -NCIT:C9296 Gastroesophageal Junction Adenocarcinoma 5 142359 -NCIT:C133548 Gastroesophageal Junction Adenocarcinoma by AJCC v8 Stage 6 142360 -NCIT:C133549 Gastroesophageal Junction Adenocarcinoma by AJCC v8 Clinical Stage 7 142361 -NCIT:C133550 Clinical Stage 0 Gastroesophageal Junction Adenocarcinoma AJCC v8 8 142362 -NCIT:C133552 Clinical Stage I Gastroesophageal Junction Adenocarcinoma AJCC v8 8 142363 -NCIT:C133553 Clinical Stage II Gastroesophageal Junction Adenocarcinoma AJCC v8 8 142364 -NCIT:C133554 Clinical Stage IIA Gastroesophageal Junction Adenocarcinoma AJCC v8 9 142365 -NCIT:C133555 Clinical Stage IIB Gastroesophageal Junction Adenocarcinoma AJCC v8 9 142366 -NCIT:C133556 Clinical Stage III Gastroesophageal Junction Adenocarcinoma AJCC v8 8 142367 -NCIT:C133557 Clinical Stage IV Gastroesophageal Junction Adenocarcinoma AJCC v8 8 142368 -NCIT:C133558 Clinical Stage IVA Gastroesophageal Junction Adenocarcinoma AJCC v8 9 142369 -NCIT:C133560 Clinical Stage IVB Gastroesophageal Junction Adenocarcinoma AJCC v8 9 142370 -NCIT:C133563 Gastroesophageal Junction Adenocarcinoma by AJCC v8 Pathologic Stage 7 142371 -NCIT:C133564 Pathologic Stage 0 Gastroesophageal Junction Adenocarcinoma AJCC v8 8 142372 -NCIT:C133565 Pathologic Stage I Gastroesophageal Junction Adenocarcinoma AJCC v8 8 142373 -NCIT:C133566 Pathologic Stage IA Gastroesophageal Junction Adenocarcinoma AJCC v8 9 142374 -NCIT:C133567 Pathologic Stage IB Gastroesophageal Junction Adenocarcinoma AJCC v8 9 142375 -NCIT:C133568 Pathologic Stage IC Gastroesophageal Junction Adenocarcinoma AJCC v8 9 142376 -NCIT:C133570 Pathologic Stage II Gastroesophageal Junction Adenocarcinoma AJCC v8 8 142377 -NCIT:C133572 Pathologic Stage IIA Gastroesophageal Junction Adenocarcinoma AJCC v8 9 142378 -NCIT:C133573 Pathologic Stage IIB Gastroesophageal Junction Adenocarcinoma AJCC v8 9 142379 -NCIT:C133575 Pathologic Stage III Gastroesophageal Junction Adenocarcinoma AJCC v8 8 142380 -NCIT:C133577 Pathologic Stage IIIA Gastroesophageal Junction Adenocarcinoma AJCC v8 9 142381 -NCIT:C133579 Pathologic Stage IIIB Gastroesophageal Junction Adenocarcinoma AJCC v8 9 142382 -NCIT:C133580 Pathologic Stage IV Gastroesophageal Junction Adenocarcinoma AJCC v8 8 142383 -NCIT:C133581 Pathologic Stage IVA Gastroesophageal Junction Adenocarcinoma AJCC v8 9 142384 -NCIT:C133582 Pathologic Stage IVB Gastroesophageal Junction Adenocarcinoma AJCC v8 9 142385 -NCIT:C133583 Gastroesophageal Junction Adenocarcinoma by AJCC v8 Postneoadjuvant Therapy Stage 7 142386 -NCIT:C133584 Postneoadjuvant Therapy Stage I Gastroesophageal Junction Adenocarcinoma AJCC v8 8 142387 -NCIT:C133585 Postneoadjuvant Therapy Stage II Gastroesophageal Junction Adenocarcinoma AJCC v8 8 142388 -NCIT:C133586 Postneoadjuvant Therapy Stage III Gastroesophageal Junction Adenocarcinoma AJCC v8 8 142389 -NCIT:C133587 Postneoadjuvant Therapy Stage IIIA Gastroesophageal Junction Adenocarcinoma AJCC v8 9 142390 -NCIT:C133588 Postneoadjuvant Therapy Stage IIIB Gastroesophageal Junction Adenocarcinoma AJCC v8 9 142391 -NCIT:C133589 Postneoadjuvant Therapy Stage IV Gastroesophageal Junction Adenocarcinoma AJCC v8 8 142392 -NCIT:C133590 Postneoadjuvant Therapy Stage IVA Gastroesophageal Junction Adenocarcinoma AJCC v8 9 142393 -NCIT:C133591 Postneoadjuvant Therapy Stage IVB Gastroesophageal Junction Adenocarcinoma AJCC v8 9 142394 -NCIT:C150577 Metastatic Gastroesophageal Junction Adenocarcinoma 6 142395 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 7 142396 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 7 142397 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 142398 -NCIT:C150578 Unresectable Gastroesophageal Junction Adenocarcinoma 6 142399 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 7 142400 -NCIT:C153359 Recurrent Gastroesophageal Junction Adenocarcinoma 6 142401 -NCIT:C156166 Localized Gastroesophageal Junction Adenocarcinoma 6 142402 -NCIT:C162538 Refractory Gastroesophageal Junction Adenocarcinoma 6 142403 -NCIT:C9325 Adrenal Cortical Carcinoma 5 142404 -NCIT:C104030 Adrenal Cortical Carcinoma by ENSAT Stage 6 142405 -NCIT:C104031 ENSAT Stage I Adrenal Cortical Carcinoma 7 142406 -NCIT:C104032 ENSAT Stage II Adrenal Cortical Carcinoma 7 142407 -NCIT:C104033 ENSAT Stage III Adrenal Cortical Carcinoma 7 142408 -NCIT:C104034 ENSAT Stage IV Adrenal Cortical Carcinoma 7 142409 -NCIT:C141098 Adrenal Cortical Carcinoma by AJCC v7 Stage 6 142410 -NCIT:C9214 Stage I Adrenal Cortical Carcinoma AJCC v7 7 142411 -NCIT:C9215 Stage II Adrenal Cortical Carcinoma AJCC v7 7 142412 -NCIT:C9216 Stage III Adrenal Cortical Carcinoma AJCC v7 7 142413 -NCIT:C9217 Stage IV Adrenal Cortical Carcinoma AJCC v7 7 142414 -NCIT:C141100 Adrenal Cortical Carcinoma by AJCC v8 Stage 6 142415 -NCIT:C141101 Stage I Adrenal Cortical Carcinoma AJCC v8 7 142416 -NCIT:C141102 Stage II Adrenal Cortical Carcinoma AJCC v8 7 142417 -NCIT:C141103 Stage III Adrenal Cortical Carcinoma AJCC v8 7 142418 -NCIT:C141104 Stage IV Adrenal Cortical Carcinoma AJCC v8 7 142419 -NCIT:C150580 Unresectable Adrenal Cortical Carcinoma 6 142420 -NCIT:C156070 Metastatic Adrenal Cortical Carcinoma 6 142421 -NCIT:C174443 Locally Advanced Adrenal Cortical Carcinoma 7 142422 -NCIT:C191863 Advanced Adrenal Cortical Carcinoma 7 142423 -NCIT:C188036 Refractory Adrenal Cortical Carcinoma 6 142424 -NCIT:C188181 Adrenal Cortical Oncocytic Carcinoma 6 142425 -NCIT:C188182 Adrenal Cortical Myxoid Carcinoma 6 142426 -NCIT:C188183 Adrenal Cortical High Grade Carcinoma 6 142427 -NCIT:C190069 Childhood Adrenal Cortical Carcinoma 6 142428 -NCIT:C6417 Recurrent Adrenal Cortical Carcinoma 6 142429 -NCIT:C68635 Adrenal Cortical Low Grade Carcinoma 6 142430 -NCIT:C68644 Adrenal Cortical Sarcomatoid Carcinoma 6 142431 -NCIT:C9385 Renal Cell Carcinoma 5 142432 -NCIT:C100051 Renal Cell Carcinoma Associated with Neuroblastoma 6 142433 -NCIT:C126303 Tubulocystic Renal Cell Carcinoma 6 142434 -NCIT:C140322 Renal Cell Cancer by AJCC v8 Stage 6 142435 -NCIT:C140323 Stage I Renal Cell Cancer AJCC v8 7 142436 -NCIT:C140324 Stage II Renal Cell Cancer AJCC v8 7 142437 -NCIT:C140325 Stage III Renal Cell Cancer AJCC v8 7 142438 -NCIT:C140326 Stage IV Renal Cell Cancer AJCC v8 7 142439 -NCIT:C150359 Bilateral Synchronous Sporadic Renal Cell Carcinoma 6 142440 -NCIT:C150595 Metastatic Renal Cell Carcinoma 6 142441 -NCIT:C153170 Advanced Renal Cell Carcinoma 7 142442 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 8 142443 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 8 142444 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 8 142445 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 8 142446 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 8 142447 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 7 142448 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 8 142449 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 8 142450 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 7 142451 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 8 142452 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 8 142453 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 7 142454 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 8 142455 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 8 142456 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 7 142457 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 8 142458 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 8 142459 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 8 142460 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 8 142461 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 8 142462 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 8 142463 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 7 142464 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 8 142465 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 8 142466 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 7 142467 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 8 142468 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 8 142469 -NCIT:C154494 Renal Cell Carcinoma with MiT Translocations 6 142470 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 7 142471 -NCIT:C27891 TFE3-Rearranged Renal Cell Carcinoma 7 142472 -NCIT:C37872 Renal Cell Carcinoma Associated with t(X;1)(p11.2;q21) 8 142473 -NCIT:C37874 Renal Cell Carcinoma Associated with t(X;1)(p11.2;p34) 8 142474 -NCIT:C37876 Renal Cell Carcinoma Associated with t(X;17)(p11.2;q25) 8 142475 -NCIT:C39802 Renal Cell Carcinoma Associated with inv(X)(p11;q12) 8 142476 -NCIT:C37210 TFEB-Rearranged Renal Cell Carcinoma 7 142477 -NCIT:C154545 Unresectable Renal Cell Carcinoma 6 142478 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 7 142479 -NCIT:C165449 Unresectable Clear Cell Renal Cell Carcinoma 7 142480 -NCIT:C183251 Unresectable Sarcomatoid Renal Cell Carcinoma 7 142481 -NCIT:C190505 Unresectable Papillary Renal Cell Carcinoma 7 142482 -NCIT:C190508 Unresectable Unclassified Renal Cell Carcinoma 7 142483 -NCIT:C154547 Resectable Renal Cell Carcinoma 6 142484 -NCIT:C156464 Succinate Dehydrogenase-Deficient Renal Cell Carcinoma 6 142485 -NCIT:C157718 Acquired Cystic Disease-Associated Renal Cell Carcinoma 6 142486 -NCIT:C164156 Fumarate Hydratase-Deficient Renal Cell Carcinoma 6 142487 -NCIT:C165745 Refractory Renal Cell Carcinoma 6 142488 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 7 142489 -NCIT:C189249 ALK-Rearranged Renal Cell Carcinoma 6 142490 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 7 142491 -NCIT:C189254 Eosinophilic Solid and Cystic Renal Cell Carcinoma 6 142492 -NCIT:C189255 Childhood Eosinophilic Solid and Cystic Renal Cell Carcinoma 7 142493 -NCIT:C191370 Renal Cell Carcinoma, Not Otherwise Specified 6 142494 -NCIT:C191375 ELOC-Mutated Renal Cell Carcinoma 6 142495 -NCIT:C27638 Transplant-Related Renal Cell Carcinoma 6 142496 -NCIT:C27892 Unclassified Renal Cell Carcinoma 6 142497 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 7 142498 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 8 142499 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 8 142500 -NCIT:C190508 Unresectable Unclassified Renal Cell Carcinoma 7 142501 -NCIT:C27893 Sarcomatoid Renal Cell Carcinoma 6 142502 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 7 142503 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 8 142504 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 8 142505 -NCIT:C183251 Unresectable Sarcomatoid Renal Cell Carcinoma 7 142506 -NCIT:C39789 Hereditary Renal Cell Carcinoma 6 142507 -NCIT:C36260 Hereditary Clear Cell Renal Cell Carcinoma 7 142508 -NCIT:C39790 Renal Cell Carcinoma with Constitutional Chromosome 3 Translocations 7 142509 -NCIT:C51302 Hereditary Leiomyomatosis and Renal Cell Carcinoma 7 142510 -NCIT:C9222 Hereditary Papillary Renal Cell Carcinoma 7 142511 -NCIT:C4033 Clear Cell Renal Cell Carcinoma 6 142512 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 7 142513 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 8 142514 -NCIT:C157614 BAP1-Mutant Clear Cell Renal Cell Carcinoma 7 142515 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 7 142516 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 8 142517 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 8 142518 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 7 142519 -NCIT:C165449 Unresectable Clear Cell Renal Cell Carcinoma 7 142520 -NCIT:C35851 Grade 1 Clear Cell Renal Cell Carcinoma 7 142521 -NCIT:C35852 Grade 2 Clear Cell Renal Cell Carcinoma 7 142522 -NCIT:C35853 Grade 3 Clear Cell Renal Cell Carcinoma 7 142523 -NCIT:C35854 Grade 4 Clear Cell Renal Cell Carcinoma 7 142524 -NCIT:C36260 Hereditary Clear Cell Renal Cell Carcinoma 7 142525 -NCIT:C36261 Non-Hereditary Clear Cell Renal Cell Carcinoma 7 142526 -NCIT:C4146 Chromophobe Renal Cell Carcinoma 6 142527 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 7 142528 -NCIT:C155951 Chromophobe Renal Cell Carcinoma Associated with Birt-Hogg-Dube Syndrome 7 142529 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 7 142530 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 8 142531 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 8 142532 -NCIT:C27888 Classic Variant of Chromophobe Renal Cell Carcinoma 7 142533 -NCIT:C27889 Eosinophilic Variant of Chromophobe Renal Cell Carcinoma 7 142534 -NCIT:C6568 Childhood Renal Cell Carcinoma 6 142535 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 7 142536 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 7 142537 -NCIT:C189255 Childhood Eosinophilic Solid and Cystic Renal Cell Carcinoma 7 142538 -NCIT:C6975 Papillary Renal Cell Carcinoma 6 142539 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 7 142540 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 8 142541 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 8 142542 -NCIT:C190505 Unresectable Papillary Renal Cell Carcinoma 7 142543 -NCIT:C27886 Type 1 Papillary Renal Cell Carcinoma 7 142544 -NCIT:C27887 Type 2 Papillary Renal Cell Carcinoma 7 142545 -NCIT:C27890 Sporadic Papillary Renal Cell Carcinoma 7 142546 -NCIT:C9222 Hereditary Papillary Renal Cell Carcinoma 7 142547 -NCIT:C7825 Recurrent Renal Cell Carcinoma 6 142548 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 7 142549 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 8 142550 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 7 142551 -NCIT:C90343 Renal Cell Cancer by AJCC v6 Stage 6 142552 -NCIT:C4003 Stage IV Renal Cell Cancer AJCC v6 7 142553 -NCIT:C7823 Stage I Renal Cell Cancer AJCC v6 and v7 7 142554 -NCIT:C7824 Stage II Renal Cell Cancer AJCC v6 7 142555 -NCIT:C9220 Stage III Renal Cell Cancer AJCC v6 7 142556 -NCIT:C91201 Renal Cell Cancer by AJCC v7 Stage 6 142557 -NCIT:C7823 Stage I Renal Cell Cancer AJCC v6 and v7 7 142558 -NCIT:C89301 Stage II Renal Cell Cancer AJCC v7 7 142559 -NCIT:C89302 Stage III Renal Cell Cancer AJCC v7 7 142560 -NCIT:C89303 Stage IV Renal Cell Cancer AJCC v7 7 142561 -NCIT:C95397 Intramucosal Adenocarcinoma 5 142562 -NCIT:C161906 Esophageal Intramucosal Adenocarcinoma 6 142563 -NCIT:C45429 Colon Intramucosal Adenocarcinoma 6 142564 -NCIT:C27413 Adenoma of the Colon with Intramucosal Adenocarcinoma 7 142565 -NCIT:C95763 Gastric Intramucosal Adenocarcinoma 6 142566 -NCIT:C2917 Carcinoma In Situ 4 142567 -NCIT:C132783 Stage 0 Major Salivary Gland Cancer AJCC v8 5 142568 -NCIT:C139534 Anatomic Stage 0 Breast Cancer AJCC v8 5 142569 -NCIT:C2924 Breast Ductal Carcinoma In Situ 6 142570 -NCIT:C176005 Breast Ductal Carcinoma In Situ, Comedo Type 7 142571 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 7 142572 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 8 142573 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 8 142574 -NCIT:C5137 Breast Ductal Carcinoma In Situ, Non-Comedo Type 7 142575 -NCIT:C5138 Breast Ductal Carcinoma In Situ, Cribriform Pattern 7 142576 -NCIT:C66933 Breast Ductal Carcinoma In Situ, Solid Type 7 142577 -NCIT:C7949 Breast Ductal Carcinoma In Situ, High Grade 7 142578 -NCIT:C9456 Breast Ductal Carcinoma In Situ, Intermediate Grade 7 142579 -NCIT:C9457 Breast Ductal Carcinoma In Situ, Low Grade 7 142580 -NCIT:C139555 Prognostic Stage 0 Breast Cancer AJCC v8 5 142581 -NCIT:C140361 Stage 0is Renal Pelvis and Ureter Cancer AJCC v8 5 142582 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 6 142583 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 6 142584 -NCIT:C140459 Stage 0is Urethral Cancer AJCC v8 5 142585 -NCIT:C27093 Stage 0 Squamous Cell Carcinoma 5 142586 -NCIT:C133255 Stage 0 Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 6 142587 -NCIT:C133447 Clinical Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 6 142588 -NCIT:C133519 Pathologic Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 6 142589 -NCIT:C136719 Lung Squamous Cell Carcinoma In Situ 6 142590 -NCIT:C8763 Stage 0 Lung Squamous Cell Carcinoma AJCC v6 and v7 7 142591 -NCIT:C157575 Anal Intraepithelial Neoplasia 3 6 142592 -NCIT:C27790 Penile Carcinoma In Situ 6 142593 -NCIT:C28292 Squamous Cell Carcinoma In Situ of the Nipple 6 142594 -NCIT:C2906 Skin Squamous Cell Carcinoma In Situ 6 142595 -NCIT:C62571 Bowen Disease of the Skin 7 142596 -NCIT:C3639 Tracheal Carcinoma In Situ 6 142597 -NCIT:C5023 Stage 0 Esophageal Squamous Cell Carcinoma AJCC v7 6 142598 -NCIT:C6052 Stage 0 Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 6 142599 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 6 142600 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 7 142601 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 7 142602 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 6 142603 -NCIT:C8903 Stage 0 Bladder Squamous Cell Carcinoma AJCC v6 and v7 6 142604 -NCIT:C27467 Stage 0 Lung Cancer AJCC v6 and v7 5 142605 -NCIT:C9104 Stage 0 Lung Non-Small Cell Cancer AJCC v6 and v7 6 142606 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 7 142607 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 7 142608 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 7 142609 -NCIT:C35180 Digestive System Carcinoma In Situ 5 142610 -NCIT:C133402 Clinical Stage 0 Esophageal Adenocarcinoma AJCC v8 6 142611 -NCIT:C133413 Pathologic Stage 0 Esophageal Adenocarcinoma AJCC v8 6 142612 -NCIT:C133447 Clinical Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 6 142613 -NCIT:C133519 Pathologic Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 6 142614 -NCIT:C133550 Clinical Stage 0 Gastroesophageal Junction Adenocarcinoma AJCC v8 6 142615 -NCIT:C133564 Pathologic Stage 0 Gastroesophageal Junction Adenocarcinoma AJCC v8 6 142616 -NCIT:C133647 Clinical Stage 0 Gastric Cancer AJCC v8 6 142617 -NCIT:C133654 Pathologic Stage 0 Gastric Cancer AJCC v8 6 142618 -NCIT:C133795 Stage 0 Anal Cancer AJCC v8 6 142619 -NCIT:C157575 Anal Intraepithelial Neoplasia 3 7 142620 -NCIT:C133894 Stage 0 Small Intestinal Adenocarcinoma AJCC v8 6 142621 -NCIT:C134118 Stage 0 Appendix Carcinoma AJCC v8 6 142622 -NCIT:C134182 Stage 0 Colorectal Cancer AJCC v8 6 142623 -NCIT:C134271 Stage 0 Colon Cancer AJCC v8 7 142624 -NCIT:C134291 Stage 0 Rectal Cancer AJCC v8 7 142625 -NCIT:C134663 Stage 0 Gallbladder Cancer AJCC v8 6 142626 -NCIT:C134865 Stage 0 Ampulla of Vater Cancer AJCC v8 6 142627 -NCIT:C134914 Stage 0 Pancreatic Cancer AJCC v8 6 142628 -NCIT:C3637 Stage 0 Esophageal Cancer AJCC v6 6 142629 -NCIT:C4439 Stage 0 Gallbladder Cancer AJCC v6 and v7 6 142630 -NCIT:C4444 Stage 0 Ampulla of Vater Cancer AJCC v7 6 142631 -NCIT:C4593 Stage 0 Appendix Carcinoma AJCC v7 6 142632 -NCIT:C4892 Stage 0 Small Intestinal Cancer AJCC v7 6 142633 -NCIT:C5729 Stage 0 Pancreatic Cancer AJCC v6 and v7 6 142634 -NCIT:C67493 High-Grade Biliary Intraepithelial Neoplasia 6 142635 -NCIT:C7788 Stage 0 Gastric Cancer AJCC v6 and v7 6 142636 -NCIT:C4428 Gastric Cardia Carcinoma In Situ AJCC v6 and v7 7 142637 -NCIT:C4429 Gastric Fundus Carcinoma In Situ AJCC v6 and v7 7 142638 -NCIT:C4430 Gastric Body Carcinoma In Situ AJCC v6 and v7 7 142639 -NCIT:C4431 Gastric Pylorus Carcinoma In Situ AJCC v6 and v7 7 142640 -NCIT:C8400 Gastric Antrum Carcinoma In Situ AJCC v6 and v7 8 142641 -NCIT:C7794 Stage 0 Anal Canal Cancer AJCC v6 and v7 6 142642 -NCIT:C27282 Stage 0 AIDS-Related Anal Canal Cancer AJCC v6 and v7 7 142643 -NCIT:C8932 Stage 0 Colorectal Cancer AJCC v6 and v7 6 142644 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 7 142645 -NCIT:C4594 Cecum Carcinoma In Situ 8 142646 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 7 142647 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 7 142648 -NCIT:C89771 Stage 0 Esophageal Cancer AJCC v7 6 142649 -NCIT:C5023 Stage 0 Esophageal Squamous Cell Carcinoma AJCC v7 7 142650 -NCIT:C8629 Stage 0 Esophageal Adenocarcinoma AJCC v7 7 142651 -NCIT:C3640 Stage 0 Skin Cancer 5 142652 -NCIT:C2906 Skin Squamous Cell Carcinoma In Situ 6 142653 -NCIT:C62571 Bowen Disease of the Skin 7 142654 -NCIT:C5893 Stage 0 Lip Basal Cell Carcinoma AJCC v6 and v7 6 142655 -NCIT:C3641 Stage 0 Breast Cancer AJCC v6 and v7 5 142656 -NCIT:C176503 Male Breast Carcinoma In Situ 6 142657 -NCIT:C176580 Female Breast Carcinoma In Situ 6 142658 -NCIT:C2924 Breast Ductal Carcinoma In Situ 6 142659 -NCIT:C176005 Breast Ductal Carcinoma In Situ, Comedo Type 7 142660 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 7 142661 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 8 142662 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 8 142663 -NCIT:C5137 Breast Ductal Carcinoma In Situ, Non-Comedo Type 7 142664 -NCIT:C5138 Breast Ductal Carcinoma In Situ, Cribriform Pattern 7 142665 -NCIT:C66933 Breast Ductal Carcinoma In Situ, Solid Type 7 142666 -NCIT:C7949 Breast Ductal Carcinoma In Situ, High Grade 7 142667 -NCIT:C9456 Breast Ductal Carcinoma In Situ, Intermediate Grade 7 142668 -NCIT:C9457 Breast Ductal Carcinoma In Situ, Low Grade 7 142669 -NCIT:C4018 Breast Lobular Carcinoma In Situ 6 142670 -NCIT:C137839 Breast Pleomorphic Lobular Carcinoma In Situ 7 142671 -NCIT:C175949 Breast Classic Lobular Carcinoma In Situ 7 142672 -NCIT:C83170 Breast Classic Lobular Carcinoma In Situ Type A 8 142673 -NCIT:C83171 Breast Classic Lobular Carcinoma In Situ Type B 8 142674 -NCIT:C175950 Breast Florid Lobular Carcinoma In Situ 7 142675 -NCIT:C4195 Breast Ductal Carcinoma In Situ and Lobular Carcinoma In Situ 6 142676 -NCIT:C37266 Bladder Urothelial Carcinoma In Situ 5 142677 -NCIT:C140418 Stage 0is Bladder Cancer AJCC v8 6 142678 -NCIT:C3644 Stage 0is Bladder Urothelial Carcinoma AJCC v6 and v7 6 142679 -NCIT:C4000 Stage 0 Cervical Cancer AJCC v6 5 142680 -NCIT:C4123 Adenocarcinoma In Situ 5 142681 -NCIT:C133894 Stage 0 Small Intestinal Adenocarcinoma AJCC v8 6 142682 -NCIT:C134914 Stage 0 Pancreatic Cancer AJCC v8 6 142683 -NCIT:C136486 Lung Adenocarcinoma In Situ 6 142684 -NCIT:C136716 Lung Non-Mucinous Adenocarcinoma In Situ 7 142685 -NCIT:C136717 Lung Mucinous Adenocarcinoma In Situ 7 142686 -NCIT:C5729 Stage 0 Pancreatic Cancer AJCC v6 and v7 6 142687 -NCIT:C6877 Grade III Glandular Intraepithelial Neoplasia 6 142688 -NCIT:C133402 Clinical Stage 0 Esophageal Adenocarcinoma AJCC v8 7 142689 -NCIT:C133413 Pathologic Stage 0 Esophageal Adenocarcinoma AJCC v8 7 142690 -NCIT:C133550 Clinical Stage 0 Gastroesophageal Junction Adenocarcinoma AJCC v8 7 142691 -NCIT:C133564 Pathologic Stage 0 Gastroesophageal Junction Adenocarcinoma AJCC v8 7 142692 -NCIT:C2924 Breast Ductal Carcinoma In Situ 7 142693 -NCIT:C176005 Breast Ductal Carcinoma In Situ, Comedo Type 8 142694 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 8 142695 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 9 142696 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 9 142697 -NCIT:C5137 Breast Ductal Carcinoma In Situ, Non-Comedo Type 8 142698 -NCIT:C5138 Breast Ductal Carcinoma In Situ, Cribriform Pattern 8 142699 -NCIT:C66933 Breast Ductal Carcinoma In Situ, Solid Type 8 142700 -NCIT:C7949 Breast Ductal Carcinoma In Situ, High Grade 8 142701 -NCIT:C9456 Breast Ductal Carcinoma In Situ, Intermediate Grade 8 142702 -NCIT:C9457 Breast Ductal Carcinoma In Situ, Low Grade 8 142703 -NCIT:C3642 Grade III Prostatic Intraepithelial Neoplasia 7 142704 -NCIT:C40105 Stage 0 Fallopian Tube Cancer AJCC v7 7 142705 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 8 142706 -NCIT:C4018 Breast Lobular Carcinoma In Situ 7 142707 -NCIT:C137839 Breast Pleomorphic Lobular Carcinoma In Situ 8 142708 -NCIT:C175949 Breast Classic Lobular Carcinoma In Situ 8 142709 -NCIT:C83170 Breast Classic Lobular Carcinoma In Situ Type A 9 142710 -NCIT:C83171 Breast Classic Lobular Carcinoma In Situ Type B 9 142711 -NCIT:C175950 Breast Florid Lobular Carcinoma In Situ 8 142712 -NCIT:C4195 Breast Ductal Carcinoma In Situ and Lobular Carcinoma In Situ 7 142713 -NCIT:C4520 Cervical Adenocarcinoma In Situ 7 142714 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 8 142715 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 8 142716 -NCIT:C8629 Stage 0 Esophageal Adenocarcinoma AJCC v7 7 142717 -NCIT:C7680 Adenocarcinoma In Situ in a Polyp 6 142718 -NCIT:C7678 Adenocarcinoma In Situ in Adenomatous Polyp 7 142719 -NCIT:C4144 Adenocarcinoma In Situ in Tubulovillous Adenoma 8 142720 -NCIT:C7679 Adenocarcinoma In Situ in Tubular Adenoma 8 142721 -NCIT:C8376 Adenocarcinoma In Situ in Villous Adenoma 8 142722 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 6 142723 -NCIT:C8894 Stage 0 Bladder Adenocarcinoma AJCC v6 and v7 6 142724 -NCIT:C4522 Stage 0 Vulvar Cancer AJCC v6 5 142725 -NCIT:C4531 Stage 0is Urethral Cancer AJCC v7 5 142726 -NCIT:C4942 Stage 0 Pharyngeal Cancer 5 142727 -NCIT:C132995 Stage 0 Oropharyngeal (p16-Negative) Carcinoma AJCC v8 6 142728 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 6 142729 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 7 142730 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 6 142731 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 7 142732 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 7 142733 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 6 142734 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 7 142735 -NCIT:C65163 Papillary Carcinoma In Situ 5 142736 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 6 142737 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 7 142738 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 7 142739 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 6 142740 -NCIT:C7518 Stage 0is Renal Pelvis and Ureter Cancer AJCC v7 5 142741 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 6 142742 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 6 142743 -NCIT:C7681 Carcinoma In Situ in a Polyp 5 142744 -NCIT:C7680 Adenocarcinoma In Situ in a Polyp 6 142745 -NCIT:C7678 Adenocarcinoma In Situ in Adenomatous Polyp 7 142746 -NCIT:C4144 Adenocarcinoma In Situ in Tubulovillous Adenoma 8 142747 -NCIT:C7679 Adenocarcinoma In Situ in Tubular Adenoma 8 142748 -NCIT:C8376 Adenocarcinoma In Situ in Villous Adenoma 8 142749 -NCIT:C7855 Stage 0 Vaginal Cancer AJCC v6 5 142750 -NCIT:C7939 Stage 0 Lip and Oral Cavity Cancer AJCC v6 and v7 5 142751 -NCIT:C4587 Stage 0 Oral Cavity Cancer AJCC v6 and v7 6 142752 -NCIT:C6052 Stage 0 Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 142753 -NCIT:C4588 Stage 0 Lip Cancer AJCC v6 and v7 6 142754 -NCIT:C5893 Stage 0 Lip Basal Cell Carcinoma AJCC v6 and v7 7 142755 -NCIT:C89445 Stage 0 Vulvar Cancer AJCC v7 5 142756 -NCIT:C89476 Stage 0 Vaginal Cancer AJCC v7 5 142757 -NCIT:C89550 Stage 0 Cervical Cancer AJCC v7 5 142758 -NCIT:C4520 Cervical Adenocarcinoma In Situ 6 142759 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 7 142760 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 7 142761 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 6 142762 -NCIT:C9100 Stage 0 Laryngeal Cancer AJCC v6, v7, and V8 5 142763 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 6 142764 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 7 142765 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 7 142766 -NCIT:C91741 Middle Ear Carcinoma In Situ 5 142767 -NCIT:C2927 Papillary Carcinoma 4 142768 -NCIT:C164144 Micropapillary Carcinoma 5 142769 -NCIT:C128847 Lung Micropapillary Adenocarcinoma 6 142770 -NCIT:C172813 Invasive Pancreatic Micropapillary Adenocarcinoma 6 142771 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 6 142772 -NCIT:C27534 Digital Papillary Adenocarcinoma 6 142773 -NCIT:C36084 Invasive Breast Micropapillary Carcinoma 6 142774 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 6 142775 -NCIT:C65182 Micropapillary Transitional Cell Carcinoma 6 142776 -NCIT:C191686 Invasive Micropapillary Urothelial Carcinoma 7 142777 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 8 142778 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 142779 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 8 142780 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 142781 -NCIT:C6882 Micropapillary Serous Carcinoma 6 142782 -NCIT:C96491 Colorectal Micropapillary Adenocarcinoma 6 142783 -NCIT:C96492 Colon Micropapillary Adenocarcinoma 7 142784 -NCIT:C96493 Rectal Micropapillary Adenocarcinoma 7 142785 -NCIT:C2853 Papillary Adenocarcinoma 5 142786 -NCIT:C172813 Invasive Pancreatic Micropapillary Adenocarcinoma 6 142787 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 6 142788 -NCIT:C27254 Papillary Eccrine Carcinoma 6 142789 -NCIT:C27534 Digital Papillary Adenocarcinoma 7 142790 -NCIT:C27937 Thymic Low Grade Papillary Adenocarcinoma 6 142791 -NCIT:C3777 Papillary Cystadenocarcinoma 6 142792 -NCIT:C65204 Papillary Mucinous Cystadenocarcinoma 7 142793 -NCIT:C8377 Papillary Serous Cystadenocarcinoma 7 142794 -NCIT:C4035 Thyroid Gland Papillary Carcinoma 6 142795 -NCIT:C123903 Childhood Thyroid Gland Papillary Carcinoma 7 142796 -NCIT:C126409 Warthin-Like Variant Thyroid Gland Papillary Carcinoma 7 142797 -NCIT:C126410 Thyroid Gland Papillary Carcinoma with Fibromatosis/Fasciitis-Like/Desmoid-Type Stroma 7 142798 -NCIT:C126594 Follicular Variant Thyroid Gland Papillary Carcinoma 7 142799 -NCIT:C66850 Invasive Encapsulated Follicular Variant Thyroid Gland Papillary Carcinoma 8 142800 -NCIT:C7381 Invasive Follicular Variant Thyroid Gland Papillary Carcinoma 8 142801 -NCIT:C140960 Thyroid Gland Papillary Carcinoma by AJCC v7 Stage 7 142802 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 8 142803 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 8 142804 -NCIT:C9083 Stage IV Thyroid Gland Papillary Carcinoma AJCC v7 8 142805 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 9 142806 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 9 142807 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 9 142808 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 8 142809 -NCIT:C140976 Thyroid Gland Papillary Carcinoma by AJCC v8 Stage 7 142810 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 8 142811 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 9 142812 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 9 142813 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 8 142814 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 9 142815 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 9 142816 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 8 142817 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 8 142818 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 9 142819 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 9 142820 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 7 142821 -NCIT:C156034 Encapsulated Variant Thyroid Gland Papillary Carcinoma 7 142822 -NCIT:C156045 Spindle Cell Variant Thyroid Gland Papillary Carcinoma 7 142823 -NCIT:C156050 Hobnail Variant Thyroid Gland Papillary Carcinoma 7 142824 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 7 142825 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 7 142826 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 7 142827 -NCIT:C187644 Classic Thyroid Gland Papillary Carcinoma 7 142828 -NCIT:C35558 Tall Cell Variant Thyroid Gland Papillary Carcinoma 7 142829 -NCIT:C35830 Columnar Cell Variant Thyroid Gland Papillary Carcinoma 7 142830 -NCIT:C37304 Multicentric Thyroid Gland Papillary Carcinoma 7 142831 -NCIT:C46004 Thyroid Gland Papillary Microcarcinoma 7 142832 -NCIT:C46092 Macrofollicular Variant Thyroid Gland Papillary Carcinoma 7 142833 -NCIT:C46093 Oncocytic Variant Thyroid Gland Papillary Carcinoma 7 142834 -NCIT:C46094 Clear Cell Variant Thyroid Gland Papillary Carcinoma 7 142835 -NCIT:C46095 Solid/Trabecular Variant Thyroid Gland Papillary Carcinoma 7 142836 -NCIT:C7427 Diffuse Sclerosing Variant Thyroid Gland Papillary Carcinoma 7 142837 -NCIT:C4182 Serous Surface Papillary Carcinoma 6 142838 -NCIT:C6256 Ovarian Serous Surface Papillary Adenocarcinoma 7 142839 -NCIT:C6882 Micropapillary Serous Carcinoma 7 142840 -NCIT:C7695 Primary Peritoneal Serous Papillary Adenocarcinoma 7 142841 -NCIT:C8377 Papillary Serous Cystadenocarcinoma 7 142842 -NCIT:C54400 Nasopharyngeal Papillary Adenocarcinoma 6 142843 -NCIT:C5472 Gastric Papillary Adenocarcinoma 6 142844 -NCIT:C67560 Endolymphatic Sac Tumor 6 142845 -NCIT:C6975 Papillary Renal Cell Carcinoma 6 142846 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 7 142847 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 8 142848 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 8 142849 -NCIT:C190505 Unresectable Papillary Renal Cell Carcinoma 7 142850 -NCIT:C27886 Type 1 Papillary Renal Cell Carcinoma 7 142851 -NCIT:C27887 Type 2 Papillary Renal Cell Carcinoma 7 142852 -NCIT:C27890 Sporadic Papillary Renal Cell Carcinoma 7 142853 -NCIT:C9222 Hereditary Papillary Renal Cell Carcinoma 7 142854 -NCIT:C7438 Invasive Papillary Adenocarcinoma 6 142855 -NCIT:C36085 Invasive Breast Papillary Carcinoma 7 142856 -NCIT:C176010 Encapsulated Breast Papillary Carcinoma with Invasion 8 142857 -NCIT:C176012 Invasive Breast Solid Papillary Carcinoma 8 142858 -NCIT:C36084 Invasive Breast Micropapillary Carcinoma 8 142859 -NCIT:C7439 Breast Papillary Ductal Carcinoma In Situ with Invasion 8 142860 -NCIT:C39896 Prostate Ductal Adenocarcinoma, Papillary Pattern 7 142861 -NCIT:C5650 Lung Papillary Adenocarcinoma 7 142862 -NCIT:C128847 Lung Micropapillary Adenocarcinoma 8 142863 -NCIT:C7381 Invasive Follicular Variant Thyroid Gland Papillary Carcinoma 7 142864 -NCIT:C95967 Ampulla of Vater Invasive Papillary Adenocarcinoma 7 142865 -NCIT:C9134 Breast Papillary Carcinoma 6 142866 -NCIT:C176009 Encapsulated Breast Papillary Carcinoma 7 142867 -NCIT:C176010 Encapsulated Breast Papillary Carcinoma with Invasion 8 142868 -NCIT:C36085 Invasive Breast Papillary Carcinoma 7 142869 -NCIT:C176010 Encapsulated Breast Papillary Carcinoma with Invasion 8 142870 -NCIT:C176012 Invasive Breast Solid Papillary Carcinoma 8 142871 -NCIT:C36084 Invasive Breast Micropapillary Carcinoma 8 142872 -NCIT:C7439 Breast Papillary Ductal Carcinoma In Situ with Invasion 8 142873 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 7 142874 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 8 142875 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 8 142876 -NCIT:C6870 Breast Solid Papillary Carcinoma 7 142877 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 8 142878 -NCIT:C176012 Invasive Breast Solid Papillary Carcinoma 8 142879 -NCIT:C96491 Colorectal Micropapillary Adenocarcinoma 6 142880 -NCIT:C96492 Colon Micropapillary Adenocarcinoma 7 142881 -NCIT:C96493 Rectal Micropapillary Adenocarcinoma 7 142882 -NCIT:C4102 Papillary Squamous Cell Carcinoma 5 142883 -NCIT:C128060 Vaginal Papillary Carcinoma 6 142884 -NCIT:C164248 Warty Carcinoma 6 142885 -NCIT:C40191 Cervical Warty Carcinoma 7 142886 -NCIT:C40248 Vaginal Warty Carcinoma 7 142887 -NCIT:C40287 Vulvar Warty Carcinoma 7 142888 -NCIT:C6981 Warty Carcinoma of the Penis 7 142889 -NCIT:C3781 Verrucous Carcinoma 6 142890 -NCIT:C165465 Skin Verrucous Carcinoma 7 142891 -NCIT:C6811 Plantar Verrucous Carcinoma 8 142892 -NCIT:C27420 Esophageal Verrucous Carcinoma 7 142893 -NCIT:C27678 Human Papillomavirus-Related Verrucous Carcinoma 7 142894 -NCIT:C39832 Bladder Verrucous Carcinoma 7 142895 -NCIT:C39833 Schistosoma Hematobium-Related Bladder Verrucous Carcinoma 8 142896 -NCIT:C39874 Urethral Verrucous Carcinoma 7 142897 -NCIT:C40190 Cervical Verrucous Carcinoma 7 142898 -NCIT:C6325 Vaginal Verrucous Carcinoma 7 142899 -NCIT:C6383 Vulvar Verrucous Carcinoma 7 142900 -NCIT:C6982 Verrucous Carcinoma of the Penis 7 142901 -NCIT:C159247 Carcinoma Cuniculatum of the Penis 8 142902 -NCIT:C7470 Anal Verrucous Carcinoma 7 142903 -NCIT:C8174 Oral Cavity Verrucous Carcinoma 7 142904 -NCIT:C179894 Oral Cavity Carcinoma Cuniculatum 8 142905 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 8 142906 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 8 142907 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 8 142908 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 8 142909 -NCIT:C8188 Laryngeal Verrucous Carcinoma 7 142910 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 8 142911 -NCIT:C8189 Glottis Verrucous Carcinoma 8 142912 -NCIT:C8190 Subglottic Verrucous Carcinoma 8 142913 -NCIT:C8191 Supraglottic Verrucous Carcinoma 8 142914 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 142915 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 142916 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 142917 -NCIT:C8244 Stage IV Laryngeal Verrucous Carcinoma AJCC v7 8 142918 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 9 142919 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 9 142920 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 9 142921 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 142922 -NCIT:C40192 Cervical Papillary Squamous Cell Carcinoma 6 142923 -NCIT:C40191 Cervical Warty Carcinoma 7 142924 -NCIT:C40194 Cervical Squamotransitional Carcinoma 7 142925 -NCIT:C45502 Lung Squamous Cell Carcinoma, Papillary Variant 6 142926 -NCIT:C54335 Laryngeal Papillary Squamous Cell Carcinoma 6 142927 -NCIT:C65164 Non-Invasive Papillary Squamous Cell Carcinoma 6 142928 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 7 142929 -NCIT:C6983 Papillary Carcinoma of the Penis 6 142930 -NCIT:C103340 Papillary Carcinoma of the Penis, Not Otherwise Specified 7 142931 -NCIT:C159249 Papillary-Basaloid Carcinoma of the Penis 7 142932 -NCIT:C6981 Warty Carcinoma of the Penis 7 142933 -NCIT:C6982 Verrucous Carcinoma of the Penis 7 142934 -NCIT:C159247 Carcinoma Cuniculatum of the Penis 8 142935 -NCIT:C4122 Papillary Transitional Cell Carcinoma 5 142936 -NCIT:C6148 Renal Pelvis Papillary Urothelial Carcinoma 6 142937 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 7 142938 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 7 142939 -NCIT:C65181 Non-Invasive Papillary Transitional Cell Carcinoma 6 142940 -NCIT:C140358 Stage 0a Renal Pelvis and Ureter Cancer AJCC v8 7 142941 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 8 142942 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 8 142943 -NCIT:C158382 Bladder Non-Invasive Papillary Urothelial Carcinoma 7 142944 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 8 142945 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 8 142946 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 8 142947 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 8 142948 -NCIT:C191673 Non-Invasive Papillary Urothelial Carcinoma, Low Grade 7 142949 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 8 142950 -NCIT:C191675 Non-Invasive Papillary Urothelial Carcinoma, High Grade 7 142951 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 8 142952 -NCIT:C7517 Stage 0a Renal Pelvis and Ureter Cancer AJCC v7 7 142953 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 8 142954 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 8 142955 -NCIT:C65182 Micropapillary Transitional Cell Carcinoma 6 142956 -NCIT:C191686 Invasive Micropapillary Urothelial Carcinoma 7 142957 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 8 142958 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 142959 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 8 142960 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 142961 -NCIT:C7383 Bladder Papillary Urothelial Carcinoma 6 142962 -NCIT:C158382 Bladder Non-Invasive Papillary Urothelial Carcinoma 7 142963 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 8 142964 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 8 142965 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 8 142966 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 8 142967 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 7 142968 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 142969 -NCIT:C65163 Papillary Carcinoma In Situ 5 142970 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 6 142971 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 7 142972 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 7 142973 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 6 142974 -NCIT:C2929 Squamous Cell Carcinoma 4 142975 -NCIT:C154700 Transplant-Related Squamous Cell Carcinoma 5 142976 -NCIT:C27636 Transplant-Related Skin Squamous Cell Carcinoma 6 142977 -NCIT:C162486 Paratesticular Squamous Cell Carcinoma 5 142978 -NCIT:C161634 Seminal Vesicle Squamous Cell Carcinoma 6 142979 -NCIT:C162652 Recurrent Squamous Cell Carcinoma 5 142980 -NCIT:C133709 Recurrent Head and Neck Squamous Cell Carcinoma 6 142981 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 142982 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 142983 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 142984 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 142985 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 142986 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 142987 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 142988 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 142989 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 142990 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 7 142991 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 142992 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 142993 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 142994 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 142995 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 142996 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 142997 -NCIT:C176682 Locally Recurrent Head and Neck Squamous Cell Carcinoma 7 142998 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 7 142999 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 143000 -NCIT:C136649 Recurrent Cervical Squamous Cell Carcinoma 6 143001 -NCIT:C143012 Recurrent Skin Squamous Cell Carcinoma 6 143002 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 143003 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 7 143004 -NCIT:C165737 Locally Recurrent Skin Squamous Cell Carcinoma 7 143005 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 6 143006 -NCIT:C169102 Recurrent Anal Squamous Cell Carcinoma 6 143007 -NCIT:C175360 Recurrent Anal Canal Squamous Cell Carcinoma 7 143008 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 8 143009 -NCIT:C174200 Recurrent Vulvar Squamous Cell Carcinoma 6 143010 -NCIT:C185302 Recurrent Vaginal Squamous Cell Carcinoma 6 143011 -NCIT:C5014 Recurrent Lung Squamous Cell Carcinoma 6 143012 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 7 143013 -NCIT:C8633 Recurrent Esophageal Squamous Cell Carcinoma 6 143014 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 6 143015 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 6 143016 -NCIT:C164250 Human Papillomavirus-Negative Squamous Cell Carcinoma 5 143017 -NCIT:C173414 Oropharyngeal Human Papillomavirus-Negative Squamous Cell Carcinoma 6 143018 -NCIT:C180841 Human Papillomavirus-Independent Cervical Squamous Cell Carcinoma 6 143019 -NCIT:C180919 Human Papillomavirus-Independent Vaginal Squamous Cell Carcinoma 6 143020 -NCIT:C181903 Human Papillomavirus-Independent Vulvar Squamous Cell Carcinoma 6 143021 -NCIT:C171605 Refractory Squamous Cell Carcinoma 5 143022 -NCIT:C148152 Refractory Head and Neck Squamous Cell Carcinoma 6 143023 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 7 143024 -NCIT:C148383 Refractory Laryngeal Squamous Cell Carcinoma 7 143025 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 7 143026 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 7 143027 -NCIT:C148401 Refractory Sinonasal Squamous Cell Carcinoma 7 143028 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 143029 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 143030 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 6 143031 -NCIT:C165735 Refractory Skin Squamous Cell Carcinoma 6 143032 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 143033 -NCIT:C171606 Refractory Esophageal Squamous Cell Carcinoma 6 143034 -NCIT:C173331 Refractory Lung Squamous Cell Carcinoma 6 143035 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 7 143036 -NCIT:C173334 Refractory Anal Canal Squamous Cell Carcinoma 6 143037 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 6 143038 -NCIT:C179207 Refractory Ovarian Squamous Cell Carcinoma 6 143039 -NCIT:C181034 Refractory Cervical Squamous Cell Carcinoma 6 143040 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 7 143041 -NCIT:C185303 Refractory Vaginal Squamous Cell Carcinoma 6 143042 -NCIT:C185304 Refractory Vulvar Squamous Cell Carcinoma 6 143043 -NCIT:C173813 Pancreatic Squamous Cell Carcinoma 5 143044 -NCIT:C190771 Metastatic Pancreatic Squamous Cell Carcinoma 6 143045 -NCIT:C180915 Vaginal Squamous Cell Carcinoma 5 143046 -NCIT:C128060 Vaginal Papillary Carcinoma 6 143047 -NCIT:C180917 Human Papillomavirus-Related Vaginal Squamous Cell Carcinoma 6 143048 -NCIT:C40248 Vaginal Warty Carcinoma 7 143049 -NCIT:C180919 Human Papillomavirus-Independent Vaginal Squamous Cell Carcinoma 6 143050 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 6 143051 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 7 143052 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 8 143053 -NCIT:C185302 Recurrent Vaginal Squamous Cell Carcinoma 6 143054 -NCIT:C185303 Refractory Vaginal Squamous Cell Carcinoma 6 143055 -NCIT:C40243 Vaginal Keratinizing Squamous Cell Carcinoma 6 143056 -NCIT:C40244 Vaginal Non-Keratinizing Squamous Cell Carcinoma 6 143057 -NCIT:C40245 Vaginal Basaloid Carcinoma 6 143058 -NCIT:C6325 Vaginal Verrucous Carcinoma 6 143059 -NCIT:C7736 Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 6 143060 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 7 143061 -NCIT:C191749 Squamous Cell Carcinoma of the Urinary Tract 5 143062 -NCIT:C4031 Bladder Squamous Cell Carcinoma 6 143063 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 7 143064 -NCIT:C27768 Schistosoma Hematobium-Related Bladder Squamous Cell Carcinoma 7 143065 -NCIT:C39833 Schistosoma Hematobium-Related Bladder Verrucous Carcinoma 8 143066 -NCIT:C39832 Bladder Verrucous Carcinoma 7 143067 -NCIT:C39833 Schistosoma Hematobium-Related Bladder Verrucous Carcinoma 8 143068 -NCIT:C39845 Urachal Squamous Cell Carcinoma 7 143069 -NCIT:C4994 Stage II Bladder Squamous Cell Carcinoma AJCC v6 and v7 7 143070 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 7 143071 -NCIT:C8903 Stage 0 Bladder Squamous Cell Carcinoma AJCC v6 and v7 7 143072 -NCIT:C8904 Stage I Squamous Cell Carcinoma of the Bladder AJCC v6 and v7 7 143073 -NCIT:C8905 Stage III Bladder Squamous Cell Carcinoma AJCC v6 and v7 7 143074 -NCIT:C8906 Stage IV Bladder Squamous Cell Carcinoma AJCC v7 7 143075 -NCIT:C27084 Spindle Cell Squamous Cell Carcinoma 5 143076 -NCIT:C129289 Gingival Spindle Cell Carcinoma 6 143077 -NCIT:C173079 Sinonasal Spindle Cell Squamous Cell Carcinoma 6 143078 -NCIT:C174398 Conjunctival Spindle Cell Carcinoma 6 143079 -NCIT:C40358 Breast Squamous Cell Carcinoma, Spindle Cell Variant 6 143080 -NCIT:C4666 Skin Spindle Cell Squamous Cell Carcinoma 6 143081 -NCIT:C54336 Laryngeal Squamous Cell Carcinoma, Spindle Cell Variant 6 143082 -NCIT:C6984 Sarcomatoid Carcinoma of the Penis 6 143083 -NCIT:C95608 Esophageal Spindle Cell Carcinoma 6 143084 -NCIT:C27093 Stage 0 Squamous Cell Carcinoma 5 143085 -NCIT:C133255 Stage 0 Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 6 143086 -NCIT:C133447 Clinical Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 6 143087 -NCIT:C133519 Pathologic Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 6 143088 -NCIT:C136719 Lung Squamous Cell Carcinoma In Situ 6 143089 -NCIT:C8763 Stage 0 Lung Squamous Cell Carcinoma AJCC v6 and v7 7 143090 -NCIT:C157575 Anal Intraepithelial Neoplasia 3 6 143091 -NCIT:C27790 Penile Carcinoma In Situ 6 143092 -NCIT:C28292 Squamous Cell Carcinoma In Situ of the Nipple 6 143093 -NCIT:C2906 Skin Squamous Cell Carcinoma In Situ 6 143094 -NCIT:C62571 Bowen Disease of the Skin 7 143095 -NCIT:C3639 Tracheal Carcinoma In Situ 6 143096 -NCIT:C5023 Stage 0 Esophageal Squamous Cell Carcinoma AJCC v7 6 143097 -NCIT:C6052 Stage 0 Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 6 143098 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 6 143099 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 7 143100 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 7 143101 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 6 143102 -NCIT:C8903 Stage 0 Bladder Squamous Cell Carcinoma AJCC v6 and v7 6 143103 -NCIT:C27417 Ampulla of Vater Squamous Cell Carcinoma 5 143104 -NCIT:C27683 Human Papillomavirus-Related Squamous Cell Carcinoma 5 143105 -NCIT:C171023 Human Papillomavirus-Related Mucosal Head and Neck Squamous Cell Carcinoma 6 143106 -NCIT:C173078 Sinonasal Human Papillomavirus-Related Carcinoma with Adenoid Cystic-Like Features 7 143107 -NCIT:C87055 Oropharyngeal Human Papillomavirus-Positive Squamous Cell Carcinoma 7 143108 -NCIT:C180917 Human Papillomavirus-Related Vaginal Squamous Cell Carcinoma 6 143109 -NCIT:C40248 Vaginal Warty Carcinoma 7 143110 -NCIT:C187051 Human Papillomavirus-Related Head and Neck Squamous Cell Carcinoma of Unknown Primary 6 143111 -NCIT:C27676 Human Papillomavirus-Related Cervical Squamous Cell Carcinoma 6 143112 -NCIT:C40192 Cervical Papillary Squamous Cell Carcinoma 7 143113 -NCIT:C40191 Cervical Warty Carcinoma 8 143114 -NCIT:C40194 Cervical Squamotransitional Carcinoma 8 143115 -NCIT:C27678 Human Papillomavirus-Related Verrucous Carcinoma 6 143116 -NCIT:C27679 Human Papillomavirus-Related Vulvar Squamous Cell Carcinoma 6 143117 -NCIT:C40287 Vulvar Warty Carcinoma 7 143118 -NCIT:C27680 Human Papillomavirus-Related Esophageal Squamous Cell Carcinoma 6 143119 -NCIT:C27681 Human Papillomavirus-Related Anal Squamous Cell Carcinoma 6 143120 -NCIT:C27682 Human Papillomavirus-Related Squamous Cell Carcinoma of the Penis 6 143121 -NCIT:C159250 Warty-Basaloid Carcinoma of the Penis 7 143122 -NCIT:C159251 Clear Cell Squamous Cell Carcinoma of the Penis 7 143123 -NCIT:C159252 Lymphoepithelioma-Like Carcinoma of the Penis 7 143124 -NCIT:C6980 Basaloid Squamous Cell Carcinoma of the Penis 7 143125 -NCIT:C159249 Papillary-Basaloid Carcinoma of the Penis 8 143126 -NCIT:C6981 Warty Carcinoma of the Penis 7 143127 -NCIT:C39862 Human Papillomavirus-Related Urethral Squamous Cell Carcinoma 6 143128 -NCIT:C34447 Head and Neck Squamous Cell Carcinoma 5 143129 -NCIT:C102872 Pharyngeal Squamous Cell Carcinoma 6 143130 -NCIT:C167265 Nasopharyngeal Squamous Cell Carcinoma 7 143131 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 8 143132 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 143133 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 143134 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 143135 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 143136 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 143137 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 143138 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 143139 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 143140 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 8 143141 -NCIT:C54360 Nasopharyngeal Basaloid Carcinoma 8 143142 -NCIT:C7373 Nasopharyngeal Nonkeratinizing Carcinoma 8 143143 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 143144 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 143145 -NCIT:C54389 Nasopharyngeal Differentiated Carcinoma 9 143146 -NCIT:C8023 Nasopharyngeal Undifferentiated Carcinoma 9 143147 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 143148 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 10 143149 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 143150 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 143151 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 143152 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 143153 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 143154 -NCIT:C7992 Nasopharyngeal Keratinizing Squamous Cell Carcinoma 8 143155 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 143156 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 9 143157 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 143158 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 143159 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 143160 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 143161 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 143162 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 143163 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 143164 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 143165 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 7 143166 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 8 143167 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 143168 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 143169 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 143170 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 8 143171 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 143172 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 143173 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 143174 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 143175 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 143176 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 8 143177 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 143178 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 143179 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 143180 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 143181 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 143182 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 143183 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 7 143184 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 143185 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 143186 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 143187 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 143188 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 143189 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 143190 -NCIT:C35693 Posterior Pharyngeal Wall Squamous Cell Carcinoma 7 143191 -NCIT:C4043 Hypopharyngeal Squamous Cell Carcinoma 7 143192 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 8 143193 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 8 143194 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 143195 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 143196 -NCIT:C172646 Unresectable Hypopharyngeal Squamous Cell Carcinoma 8 143197 -NCIT:C4943 Pyriform Fossa Squamous Cell Carcinoma 8 143198 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 8 143199 -NCIT:C8185 Postcricoid Squamous Cell Carcinoma 8 143200 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 8 143201 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 8 143202 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 8 143203 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 8 143204 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 143205 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 143206 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 143207 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 143208 -NCIT:C8181 Oropharyngeal Squamous Cell Carcinoma 7 143209 -NCIT:C126750 Oropharyngeal Poorly Differentiated Carcinoma 8 143210 -NCIT:C126751 Oropharyngeal Basaloid Carcinoma 8 143211 -NCIT:C147906 Oropharyngeal p16INK4a-Negative Squamous Cell Carcinoma 8 143212 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 8 143213 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 8 143214 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 143215 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 143216 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 143217 -NCIT:C162787 Resectable Oropharyngeal Squamous Cell Carcinoma 8 143218 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 9 143219 -NCIT:C162833 Unresectable Oropharyngeal Squamous Cell Carcinoma 8 143220 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 9 143221 -NCIT:C173414 Oropharyngeal Human Papillomavirus-Negative Squamous Cell Carcinoma 8 143222 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 8 143223 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 8 143224 -NCIT:C68610 Oropharyngeal Undifferentiated Carcinoma 8 143225 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 9 143226 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 9 143227 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 9 143228 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 9 143229 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 143230 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 143231 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 143232 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 143233 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 9 143234 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 9 143235 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 9 143236 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 9 143237 -NCIT:C8183 Tonsillar Squamous Cell Carcinoma 8 143238 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 9 143239 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 8 143240 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 9 143241 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 8 143242 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 9 143243 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 8 143244 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 9 143245 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 8 143246 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 9 143247 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 143248 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 143249 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 143250 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 9 143251 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 143252 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 9 143253 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 143254 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 9 143255 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 143256 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 143257 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 143258 -NCIT:C87055 Oropharyngeal Human Papillomavirus-Positive Squamous Cell Carcinoma 8 143259 -NCIT:C132012 Resectable Head and Neck Squamous Cell Carcinoma 6 143260 -NCIT:C162787 Resectable Oropharyngeal Squamous Cell Carcinoma 7 143261 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 8 143262 -NCIT:C162943 Resectable Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 143263 -NCIT:C133252 Cutaneous Squamous Cell Carcinoma of the Head and Neck 6 143264 -NCIT:C133253 Cutaneous Squamous Cell Carcinoma of the Head and Neck by AJCC v8 Stage 7 143265 -NCIT:C133255 Stage 0 Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 143266 -NCIT:C133256 Stage I Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 143267 -NCIT:C133257 Stage II Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 143268 -NCIT:C133258 Stage III Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 143269 -NCIT:C133259 Stage IV Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 143270 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 143271 -NCIT:C162943 Resectable Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 143272 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 143273 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 143274 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 143275 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 143276 -NCIT:C6083 External Ear Squamous Cell Carcinoma 7 143277 -NCIT:C133709 Recurrent Head and Neck Squamous Cell Carcinoma 6 143278 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 143279 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 143280 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 143281 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 143282 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 143283 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 143284 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 143285 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 143286 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 143287 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 7 143288 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 143289 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 143290 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 143291 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 143292 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 143293 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 143294 -NCIT:C176682 Locally Recurrent Head and Neck Squamous Cell Carcinoma 7 143295 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 7 143296 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 143297 -NCIT:C136427 Unresectable Head and Neck Squamous Cell Carcinoma 6 143298 -NCIT:C162833 Unresectable Oropharyngeal Squamous Cell Carcinoma 7 143299 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 8 143300 -NCIT:C172644 Unresectable Oral Cavity Squamous Cell Carcinoma 7 143301 -NCIT:C172645 Unresectable Laryngeal Squamous Cell Carcinoma 7 143302 -NCIT:C172646 Unresectable Hypopharyngeal Squamous Cell Carcinoma 7 143303 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 7 143304 -NCIT:C172651 Unresectable Salivary Gland Squamous Cell Carcinoma 7 143305 -NCIT:C176513 Unresectable Sinonasal Squamous Cell Carcinoma 7 143306 -NCIT:C172648 Unresectable Paranasal Sinus Squamous Cell Carcinoma 8 143307 -NCIT:C176514 Unresectable Nasal Cavity Squamous Cell Carcinoma 8 143308 -NCIT:C148152 Refractory Head and Neck Squamous Cell Carcinoma 6 143309 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 7 143310 -NCIT:C148383 Refractory Laryngeal Squamous Cell Carcinoma 7 143311 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 7 143312 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 7 143313 -NCIT:C148401 Refractory Sinonasal Squamous Cell Carcinoma 7 143314 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 143315 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 143316 -NCIT:C148153 Metastatic Head and Neck Squamous Cell Carcinoma 6 143317 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 7 143318 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 143319 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 143320 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 143321 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 143322 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 143323 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 143324 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 143325 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 7 143326 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 143327 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 143328 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 7 143329 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 143330 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 143331 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 7 143332 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 7 143333 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 143334 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 143335 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 143336 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 8 143337 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 9 143338 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 143339 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 143340 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 8 143341 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 143342 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 143343 -NCIT:C162882 Metastatic Sinonasal Squamous Cell Carcinoma 7 143344 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 143345 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 143346 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 143347 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 143348 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 143349 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 143350 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 143351 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 143352 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 143353 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 143354 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 7 143355 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 7 143356 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 8 143357 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 143358 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 143359 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 143360 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 8 143361 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 143362 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 143363 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 143364 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 143365 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 143366 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 8 143367 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 143368 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 143369 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 143370 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 143371 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 143372 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 143373 -NCIT:C162770 ASPH-Positive Head and Neck Squamous Cell Carcinoma 6 143374 -NCIT:C171023 Human Papillomavirus-Related Mucosal Head and Neck Squamous Cell Carcinoma 6 143375 -NCIT:C173078 Sinonasal Human Papillomavirus-Related Carcinoma with Adenoid Cystic-Like Features 7 143376 -NCIT:C87055 Oropharyngeal Human Papillomavirus-Positive Squamous Cell Carcinoma 7 143377 -NCIT:C37290 Head and Neck Basaloid Carcinoma 6 143378 -NCIT:C126751 Oropharyngeal Basaloid Carcinoma 7 143379 -NCIT:C129873 Floor of Mouth Basaloid Squamous Cell Carcinoma 7 143380 -NCIT:C54334 Laryngeal Basaloid Carcinoma 7 143381 -NCIT:C54360 Nasopharyngeal Basaloid Carcinoma 7 143382 -NCIT:C4044 Laryngeal Squamous Cell Carcinoma 6 143383 -NCIT:C148383 Refractory Laryngeal Squamous Cell Carcinoma 7 143384 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 7 143385 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 143386 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 143387 -NCIT:C172645 Unresectable Laryngeal Squamous Cell Carcinoma 7 143388 -NCIT:C4945 Supraglottic Squamous Cell Carcinoma 7 143389 -NCIT:C181714 Epiglottic Squamous Cell Carcinoma 8 143390 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 9 143391 -NCIT:C8191 Supraglottic Verrucous Carcinoma 8 143392 -NCIT:C54334 Laryngeal Basaloid Carcinoma 7 143393 -NCIT:C54335 Laryngeal Papillary Squamous Cell Carcinoma 7 143394 -NCIT:C54336 Laryngeal Squamous Cell Carcinoma, Spindle Cell Variant 7 143395 -NCIT:C54337 Laryngeal Acantholytic Squamous Cell Carcinoma 7 143396 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 7 143397 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 8 143398 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 8 143399 -NCIT:C8186 Glottic Squamous Cell Carcinoma 7 143400 -NCIT:C8189 Glottis Verrucous Carcinoma 8 143401 -NCIT:C8187 Subglottic Squamous Cell Carcinoma 7 143402 -NCIT:C8190 Subglottic Verrucous Carcinoma 8 143403 -NCIT:C8188 Laryngeal Verrucous Carcinoma 7 143404 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 8 143405 -NCIT:C8189 Glottis Verrucous Carcinoma 8 143406 -NCIT:C8190 Subglottic Verrucous Carcinoma 8 143407 -NCIT:C8191 Supraglottic Verrucous Carcinoma 8 143408 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 143409 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 143410 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 143411 -NCIT:C8244 Stage IV Laryngeal Verrucous Carcinoma AJCC v7 8 143412 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 9 143413 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 9 143414 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 9 143415 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 143416 -NCIT:C8237 Stage I Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 7 143417 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 143418 -NCIT:C8239 Stage II Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 7 143419 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 143420 -NCIT:C8241 Stage III Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 7 143421 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 143422 -NCIT:C8243 Stage IV Laryngeal Squamous Cell Carcinoma AJCC v7 7 143423 -NCIT:C6122 Stage IVA Laryngeal Squamous Cell Carcinoma AJCC v7 8 143424 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 9 143425 -NCIT:C6123 Stage IVB Laryngeal Squamous Cell Carcinoma AJCC v7 8 143426 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 9 143427 -NCIT:C6124 Stage IVC Laryngeal Squamous Cell Carcinoma AJCC v7 8 143428 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 9 143429 -NCIT:C8244 Stage IV Laryngeal Verrucous Carcinoma AJCC v7 8 143430 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 9 143431 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 9 143432 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 9 143433 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 7 143434 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 143435 -NCIT:C42690 Lip and Oral Cavity Squamous Cell Carcinoma 6 143436 -NCIT:C115057 Stage I Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 143437 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 143438 -NCIT:C115058 Stage II Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 143439 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 143440 -NCIT:C115059 Stage III Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 143441 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 143442 -NCIT:C115060 Stage IV Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 143443 -NCIT:C115061 Stage IVA Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 143444 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 143445 -NCIT:C115062 Stage IVB Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 143446 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 143447 -NCIT:C115063 Stage IVC Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 143448 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 143449 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 143450 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 143451 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 143452 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 143453 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 143454 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 143455 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 143456 -NCIT:C4042 Lip Squamous Cell Carcinoma 7 143457 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 143458 -NCIT:C4833 Oral Cavity Squamous Cell Carcinoma 7 143459 -NCIT:C129857 Gingival Squamous Cell Carcinoma 8 143460 -NCIT:C129289 Gingival Spindle Cell Carcinoma 9 143461 -NCIT:C8171 Lower Gingival Squamous Cell Carcinoma 9 143462 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 10 143463 -NCIT:C8172 Retromolar Trigone Squamous Cell Carcinoma 9 143464 -NCIT:C8173 Upper Gingival Squamous Cell Carcinoma 9 143465 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 10 143466 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 8 143467 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 143468 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 143469 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 143470 -NCIT:C170774 Alveolar Ridge Squamous Cell Carcinoma 8 143471 -NCIT:C170775 Upper Alveolar Ridge Squamous Cell Carcinoma 9 143472 -NCIT:C170776 Lower Alveolar Ridge Squamous Cell Carcinoma 9 143473 -NCIT:C172644 Unresectable Oral Cavity Squamous Cell Carcinoma 8 143474 -NCIT:C4040 Buccal Mucosa Squamous Cell Carcinoma 8 143475 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 9 143476 -NCIT:C4041 Floor of Mouth Squamous Cell Carcinoma 8 143477 -NCIT:C129873 Floor of Mouth Basaloid Squamous Cell Carcinoma 9 143478 -NCIT:C4648 Tongue Squamous Cell Carcinoma 8 143479 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 143480 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 143481 -NCIT:C4649 Palate Squamous Cell Carcinoma 8 143482 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 143483 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 143484 -NCIT:C54295 Primary Intraosseous Squamous Cell Carcinoma 8 143485 -NCIT:C54303 Primary Intraosseous Squamous Cell Carcinoma Derived From Keratocystic Odontogenic Tumor 9 143486 -NCIT:C7491 Primary Intraosseous Squamous Cell Carcinoma-Solid Type 9 143487 -NCIT:C7498 Keratinizing Primary Intraosseous Squamous Cell Carcinoma-Solid Type 10 143488 -NCIT:C7499 Non-Keratinizing Primary Intraosseous Squamous Cell Carcinoma -Solid Type 10 143489 -NCIT:C7500 Primary Intraosseous Squamous Cell Carcinoma Derived From Odontogenic Cyst 9 143490 -NCIT:C6052 Stage 0 Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 143491 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 143492 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 143493 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 143494 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 143495 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 143496 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 143497 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 143498 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 143499 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 143500 -NCIT:C8174 Oral Cavity Verrucous Carcinoma 8 143501 -NCIT:C179894 Oral Cavity Carcinoma Cuniculatum 9 143502 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 9 143503 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 9 143504 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 9 143505 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 143506 -NCIT:C54283 Head and Neck Keratinizing Squamous Cell Carcinoma 6 143507 -NCIT:C173077 Sinonasal Keratinizing Squamous Cell Carcinoma 7 143508 -NCIT:C54284 Paranasal Sinus Keratinizing Squamous Cell Carcinoma 8 143509 -NCIT:C54285 Nasal Cavity Keratinizing Squamous Cell Carcinoma 8 143510 -NCIT:C6083 External Ear Squamous Cell Carcinoma 7 143511 -NCIT:C6086 Middle Ear Squamous Cell Carcinoma 7 143512 -NCIT:C7498 Keratinizing Primary Intraosseous Squamous Cell Carcinoma-Solid Type 7 143513 -NCIT:C7992 Nasopharyngeal Keratinizing Squamous Cell Carcinoma 7 143514 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 8 143515 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 8 143516 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 8 143517 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 8 143518 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 8 143519 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 8 143520 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 143521 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 143522 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 143523 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 8 143524 -NCIT:C68611 Sinonasal Squamous Cell Carcinoma 6 143525 -NCIT:C115070 Stage I Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 7 143526 -NCIT:C115071 Stage II Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 7 143527 -NCIT:C115072 Stage III Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 7 143528 -NCIT:C115073 Stage IV Sinonasal Squamous Cell Carcinoma AJCC v7 7 143529 -NCIT:C115074 Stage IVA Sinonasal Squamous Cell Carcinoma AJCC v7 8 143530 -NCIT:C115075 Stage IVB Sinonasal Squamous Cell Carcinoma AJCC v7 8 143531 -NCIT:C115076 Stage IVC Sinonasal Squamous Cell Carcinoma AJCC v7 8 143532 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 143533 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 143534 -NCIT:C148401 Refractory Sinonasal Squamous Cell Carcinoma 7 143535 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 143536 -NCIT:C162882 Metastatic Sinonasal Squamous Cell Carcinoma 7 143537 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 143538 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 143539 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 143540 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 143541 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 143542 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 143543 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 143544 -NCIT:C173077 Sinonasal Keratinizing Squamous Cell Carcinoma 7 143545 -NCIT:C54284 Paranasal Sinus Keratinizing Squamous Cell Carcinoma 8 143546 -NCIT:C54285 Nasal Cavity Keratinizing Squamous Cell Carcinoma 8 143547 -NCIT:C173079 Sinonasal Spindle Cell Squamous Cell Carcinoma 7 143548 -NCIT:C176513 Unresectable Sinonasal Squamous Cell Carcinoma 7 143549 -NCIT:C172648 Unresectable Paranasal Sinus Squamous Cell Carcinoma 8 143550 -NCIT:C176514 Unresectable Nasal Cavity Squamous Cell Carcinoma 8 143551 -NCIT:C54287 Sinonasal Non-Keratinizing Squamous Cell Carcinoma 7 143552 -NCIT:C173078 Sinonasal Human Papillomavirus-Related Carcinoma with Adenoid Cystic-Like Features 8 143553 -NCIT:C173080 Sinonasal Lymphoepithelial Carcinoma 8 143554 -NCIT:C8192 Nasal Cavity Squamous Cell Carcinoma 7 143555 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 143556 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 143557 -NCIT:C176514 Unresectable Nasal Cavity Squamous Cell Carcinoma 8 143558 -NCIT:C54285 Nasal Cavity Keratinizing Squamous Cell Carcinoma 8 143559 -NCIT:C8193 Paranasal Sinus Squamous Cell Carcinoma 7 143560 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 143561 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 143562 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 143563 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 143564 -NCIT:C172648 Unresectable Paranasal Sinus Squamous Cell Carcinoma 8 143565 -NCIT:C54284 Paranasal Sinus Keratinizing Squamous Cell Carcinoma 8 143566 -NCIT:C6064 Maxillary Sinus Squamous Cell Carcinoma 8 143567 -NCIT:C6065 Ethmoid Sinus Squamous Cell Carcinoma 8 143568 -NCIT:C6066 Sphenoid Sinus Squamous Cell Carcinoma 8 143569 -NCIT:C6067 Frontal Sinus Squamous Cell Carcinoma 8 143570 -NCIT:C7991 Salivary Gland Squamous Cell Carcinoma 6 143571 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 7 143572 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 143573 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 143574 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 143575 -NCIT:C172651 Unresectable Salivary Gland Squamous Cell Carcinoma 7 143576 -NCIT:C181161 Major Salivary Gland Squamous Cell Carcinoma 7 143577 -NCIT:C5942 Parotid Gland Squamous Cell Carcinoma 8 143578 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 9 143579 -NCIT:C5943 Submandibular Gland Squamous Cell Carcinoma 8 143580 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 9 143581 -NCIT:C5959 Minor Salivary Gland Squamous Cell Carcinoma 7 143582 -NCIT:C8022 Salivary Gland Poorly Differentiated Squamous Cell Carcinoma 7 143583 -NCIT:C3493 Lung Squamous Cell Carcinoma 5 143584 -NCIT:C133254 Lung Non-Small Cell Squamous Carcinoma 6 143585 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 7 143586 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 143587 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 143588 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 143589 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 7 143590 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 7 143591 -NCIT:C171612 Unresectable Lung Non-Small Cell Squamous Carcinoma 7 143592 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 8 143593 -NCIT:C45502 Lung Squamous Cell Carcinoma, Papillary Variant 7 143594 -NCIT:C45503 Lung Squamous Cell Carcinoma, Clear Cell Variant 7 143595 -NCIT:C136494 Lung Squamous Cell Carcinoma by AJCC v7 Stage 6 143596 -NCIT:C8763 Stage 0 Lung Squamous Cell Carcinoma AJCC v6 and v7 7 143597 -NCIT:C8764 Stage I Lung Squamous Cell Carcinoma AJCC v7 7 143598 -NCIT:C6687 Stage IA Lung Squamous Cell Carcinoma AJCC v7 8 143599 -NCIT:C6692 Stage IB Lung Squamous Cell Carcinoma AJCC v7 8 143600 -NCIT:C8765 Stage II Lung Squamous Cell Carcinoma AJCC v7 7 143601 -NCIT:C6688 Stage IIA Lung Squamous Cell Carcinoma AJCC v7 8 143602 -NCIT:C6691 Stage IIB Lung Squamous Cell Carcinoma AJCC v7 8 143603 -NCIT:C8766 Stage III Lung Squamous Cell Carcinoma AJCC v7 7 143604 -NCIT:C6689 Stage IIIA Lung Squamous Cell Carcinoma AJCC v7 8 143605 -NCIT:C6690 Stage IIIB Lung Squamous Cell Carcinoma AJCC v7 8 143606 -NCIT:C8767 Stage IV Lung Squamous Cell Carcinoma AJCC v7 7 143607 -NCIT:C136713 Lung Keratinizing Squamous Cell Carcinoma 6 143608 -NCIT:C136714 Lung Non-Keratinizing Squamous Cell Carcinoma 6 143609 -NCIT:C136719 Lung Squamous Cell Carcinoma In Situ 6 143610 -NCIT:C8763 Stage 0 Lung Squamous Cell Carcinoma AJCC v6 and v7 7 143611 -NCIT:C156092 Metastatic Lung Squamous Cell Carcinoma 6 143612 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 7 143613 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 143614 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 143615 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 143616 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 7 143617 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 143618 -NCIT:C173331 Refractory Lung Squamous Cell Carcinoma 6 143619 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 7 143620 -NCIT:C190953 Resectable Lung Squamous Cell Carcinoma 6 143621 -NCIT:C45504 Lung Squamous Cell Carcinoma, Small Cell Variant 6 143622 -NCIT:C45507 Lung Basaloid Squamous Cell Carcinoma 6 143623 -NCIT:C5014 Recurrent Lung Squamous Cell Carcinoma 6 143624 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 7 143625 -NCIT:C6686 Occult Lung Squamous Cell Carcinoma 6 143626 -NCIT:C40093 Ovarian Squamous Cell Carcinoma 5 143627 -NCIT:C179207 Refractory Ovarian Squamous Cell Carcinoma 6 143628 -NCIT:C4024 Esophageal Squamous Cell Carcinoma 5 143629 -NCIT:C133442 Esophageal Squamous Cell Carcinoma by AJCC v7 Stage 6 143630 -NCIT:C5019 Stage IV Esophageal Squamous Cell Carcinoma AJCC v7 7 143631 -NCIT:C5020 Stage III Esophageal Squamous Cell Carcinoma AJCC v7 7 143632 -NCIT:C87787 Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v7 8 143633 -NCIT:C87788 Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v7 8 143634 -NCIT:C87789 Stage IIIC Esophageal Squamous Cell Carcinoma AJCC v7 8 143635 -NCIT:C5021 Stage II Esophageal Squamous Cell Carcinoma AJCC v7 7 143636 -NCIT:C6737 Stage IIB Esophageal Squamous Cell Carcinoma AJCC v7 8 143637 -NCIT:C6738 Stage IIA Esophageal Squamous Cell Carcinoma AJCC v7 8 143638 -NCIT:C5022 Stage I Esophageal Squamous Cell Carcinoma AJCC v7 7 143639 -NCIT:C87780 Stage IA Esophageal Squamous Cell Carcinoma AJCC v7 8 143640 -NCIT:C87781 Stage IB Esophageal Squamous Cell Carcinoma AJCC v7 8 143641 -NCIT:C5023 Stage 0 Esophageal Squamous Cell Carcinoma AJCC v7 7 143642 -NCIT:C133443 Esophageal Squamous Cell Carcinoma by AJCC v8 Stage 6 143643 -NCIT:C133444 Esophageal Squamous Cell Carcinoma by AJCC v8 Clinical Stage 7 143644 -NCIT:C133447 Clinical Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 8 143645 -NCIT:C133448 Clinical Stage I Esophageal Squamous Cell Carcinoma AJCC v8 8 143646 -NCIT:C133449 Clinical Stage II Esophageal Squamous Cell Carcinoma AJCC v8 8 143647 -NCIT:C133450 Clinical Stage III Esophageal Squamous Cell Carcinoma AJCC v8 8 143648 -NCIT:C133451 Clinical Stage IV Esophageal Squamous Cell Carcinoma AJCC v8 8 143649 -NCIT:C133452 Clinical Stage IVA Esophageal Squamous Cell Carcinoma AJCC v8 9 143650 -NCIT:C133453 Clinical Stage IVB Esophageal Squamous Cell Carcinoma AJCC v8 9 143651 -NCIT:C133445 Esophageal Squamous Cell Carcinoma by AJCC v8 Pathologic Stage 7 143652 -NCIT:C133519 Pathologic Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 8 143653 -NCIT:C133521 Pathologic Stage I Esophageal Squamous Cell Carcinoma AJCC v8 8 143654 -NCIT:C133525 Pathologic Stage IA Esophageal Squamous Cell Carcinoma AJCC v8 9 143655 -NCIT:C133530 Pathologic Stage IB Esophageal Squamous Cell Carcinoma AJCC v8 9 143656 -NCIT:C133532 Pathologic Stage II Esophageal Squamous Cell Carcinoma AJCC v8 8 143657 -NCIT:C133534 Pathologic Stage IIA Esophageal Squamous Cell Carcinoma AJCC v8 9 143658 -NCIT:C133535 Pathologic Stage IIB Esophageal Squamous Cell Carcinoma AJCC v8 9 143659 -NCIT:C133536 Pathologic Stage III Esophageal Squamous Cell Carcinoma AJCC v8 8 143660 -NCIT:C133537 Pathologic Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v8 9 143661 -NCIT:C133538 Pathologic Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v8 9 143662 -NCIT:C133539 Pathologic Stage IV Esophageal Squamous Cell Carcinoma AJCC v8 8 143663 -NCIT:C133541 Pathologic Stage IVA Esophageal Squamous Cell Carcinoma AJCC v8 9 143664 -NCIT:C133542 Pathologic Stage IVB Esophageal Squamous Cell Carcinoma AJCC v8 9 143665 -NCIT:C133446 Esophageal Squamous Cell Carcinoma by AJCC v8 Postneoadjuvant Therapy Stage 7 143666 -NCIT:C133454 Postneoadjuvant Therapy Stage I Esophageal Squamous Cell Carcinoma AJCC v8 8 143667 -NCIT:C133455 Postneoadjuvant Therapy Stage II Esophageal Squamous Cell Carcinoma AJCC v8 8 143668 -NCIT:C133456 Postneoadjuvant Therapy Stage III Esophageal Squamous Cell Carcinoma AJCC v8 8 143669 -NCIT:C133457 Postneoadjuvant Therapy Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v8 9 143670 -NCIT:C133458 Postneoadjuvant Therapy Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v8 9 143671 -NCIT:C133459 Postneoadjuvant Therapy Stage IV Esophageal Squamous Cell Carcinoma AJCC v8 8 143672 -NCIT:C133460 Postneoadjuvant Therapy Stage IVA Esophageal Squamous Cell Carcinoma AJCC v8 9 143673 -NCIT:C133461 Postneoadjuvant Therapy Stage IVB Esophageal Squamous Cell Carcinoma AJCC v8 9 143674 -NCIT:C150029 Thoracic Esophagus Squamous Cell Carcinoma 6 143675 -NCIT:C150032 Cervical Esophagus Squamous Cell Carcinoma 6 143676 -NCIT:C150037 Distal Esophagus Squamous Cell Carcinoma 6 143677 -NCIT:C156075 Metastatic Esophageal Squamous Cell Carcinoma 6 143678 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 7 143679 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 7 143680 -NCIT:C171606 Refractory Esophageal Squamous Cell Carcinoma 6 143681 -NCIT:C171608 Unresectable Esophageal Squamous Cell Carcinoma 6 143682 -NCIT:C27420 Esophageal Verrucous Carcinoma 6 143683 -NCIT:C27680 Human Papillomavirus-Related Esophageal Squamous Cell Carcinoma 6 143684 -NCIT:C27928 Alcohol-Related Esophageal Squamous Cell Carcinoma 6 143685 -NCIT:C7032 Esophageal Basaloid Carcinoma 6 143686 -NCIT:C8633 Recurrent Esophageal Squamous Cell Carcinoma 6 143687 -NCIT:C95608 Esophageal Spindle Cell Carcinoma 6 143688 -NCIT:C95610 Esophageal Well Differentiated Squamous Cell Carcinoma 6 143689 -NCIT:C179888 Esophageal Carcinoma Cuniculatum 7 143690 -NCIT:C95611 Esophageal Moderately Differentiated Squamous Cell Carcinoma 6 143691 -NCIT:C95612 Esophageal Poorly Differentiated Squamous Cell Carcinoma 6 143692 -NCIT:C4028 Cervical Squamous Cell Carcinoma 5 143693 -NCIT:C136649 Recurrent Cervical Squamous Cell Carcinoma 6 143694 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 6 143695 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 7 143696 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 7 143697 -NCIT:C174025 Unresectable Cervical Squamous Cell Carcinoma 6 143698 -NCIT:C180839 Cervical Squamous Cell Carcinoma, Not Otherwise Specified 6 143699 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 7 143700 -NCIT:C180841 Human Papillomavirus-Independent Cervical Squamous Cell Carcinoma 6 143701 -NCIT:C181034 Refractory Cervical Squamous Cell Carcinoma 6 143702 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 7 143703 -NCIT:C27676 Human Papillomavirus-Related Cervical Squamous Cell Carcinoma 6 143704 -NCIT:C40192 Cervical Papillary Squamous Cell Carcinoma 7 143705 -NCIT:C40191 Cervical Warty Carcinoma 8 143706 -NCIT:C40194 Cervical Squamotransitional Carcinoma 8 143707 -NCIT:C36094 Early Invasive Cervical Squamous Cell Carcinoma 6 143708 -NCIT:C40187 Cervical Keratinizing Squamous Cell Carcinoma 6 143709 -NCIT:C40188 Cervical Non-Keratinizing Squamous Cell Carcinoma 6 143710 -NCIT:C40189 Cervical Basaloid Carcinoma 6 143711 -NCIT:C40190 Cervical Verrucous Carcinoma 6 143712 -NCIT:C40193 Cervical Lymphoepithelioma-Like Carcinoma 6 143713 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 6 143714 -NCIT:C4052 Vulvar Squamous Cell Carcinoma 5 143715 -NCIT:C128167 Vulvar Keratoacanthoma 6 143716 -NCIT:C174199 Unresectable Vulvar Squamous Cell Carcinoma 6 143717 -NCIT:C174200 Recurrent Vulvar Squamous Cell Carcinoma 6 143718 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 6 143719 -NCIT:C181902 Vulvar Squamous Cell Carcinoma, Not Otherwise Specified 6 143720 -NCIT:C181903 Human Papillomavirus-Independent Vulvar Squamous Cell Carcinoma 6 143721 -NCIT:C185304 Refractory Vulvar Squamous Cell Carcinoma 6 143722 -NCIT:C27679 Human Papillomavirus-Related Vulvar Squamous Cell Carcinoma 6 143723 -NCIT:C40287 Vulvar Warty Carcinoma 7 143724 -NCIT:C40284 Vulvar Keratinizing Squamous Cell Carcinoma 6 143725 -NCIT:C40285 Vulvar Non-Keratinizing Squamous Cell Carcinoma 6 143726 -NCIT:C40286 Vulvar Basaloid Carcinoma 6 143727 -NCIT:C40289 Vulvar Squamous Cell Carcinoma with Tumor Giant Cells 6 143728 -NCIT:C40293 Bartholin Gland Squamous Cell Carcinoma 6 143729 -NCIT:C6383 Vulvar Verrucous Carcinoma 6 143730 -NCIT:C4102 Papillary Squamous Cell Carcinoma 5 143731 -NCIT:C128060 Vaginal Papillary Carcinoma 6 143732 -NCIT:C164248 Warty Carcinoma 6 143733 -NCIT:C40191 Cervical Warty Carcinoma 7 143734 -NCIT:C40248 Vaginal Warty Carcinoma 7 143735 -NCIT:C40287 Vulvar Warty Carcinoma 7 143736 -NCIT:C6981 Warty Carcinoma of the Penis 7 143737 -NCIT:C3781 Verrucous Carcinoma 6 143738 -NCIT:C165465 Skin Verrucous Carcinoma 7 143739 -NCIT:C6811 Plantar Verrucous Carcinoma 8 143740 -NCIT:C27420 Esophageal Verrucous Carcinoma 7 143741 -NCIT:C27678 Human Papillomavirus-Related Verrucous Carcinoma 7 143742 -NCIT:C39832 Bladder Verrucous Carcinoma 7 143743 -NCIT:C39833 Schistosoma Hematobium-Related Bladder Verrucous Carcinoma 8 143744 -NCIT:C39874 Urethral Verrucous Carcinoma 7 143745 -NCIT:C40190 Cervical Verrucous Carcinoma 7 143746 -NCIT:C6325 Vaginal Verrucous Carcinoma 7 143747 -NCIT:C6383 Vulvar Verrucous Carcinoma 7 143748 -NCIT:C6982 Verrucous Carcinoma of the Penis 7 143749 -NCIT:C159247 Carcinoma Cuniculatum of the Penis 8 143750 -NCIT:C7470 Anal Verrucous Carcinoma 7 143751 -NCIT:C8174 Oral Cavity Verrucous Carcinoma 7 143752 -NCIT:C179894 Oral Cavity Carcinoma Cuniculatum 8 143753 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 8 143754 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 8 143755 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 8 143756 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 8 143757 -NCIT:C8188 Laryngeal Verrucous Carcinoma 7 143758 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 8 143759 -NCIT:C8189 Glottis Verrucous Carcinoma 8 143760 -NCIT:C8190 Subglottic Verrucous Carcinoma 8 143761 -NCIT:C8191 Supraglottic Verrucous Carcinoma 8 143762 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 143763 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 143764 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 143765 -NCIT:C8244 Stage IV Laryngeal Verrucous Carcinoma AJCC v7 8 143766 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 9 143767 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 9 143768 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 9 143769 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 143770 -NCIT:C40192 Cervical Papillary Squamous Cell Carcinoma 6 143771 -NCIT:C40191 Cervical Warty Carcinoma 7 143772 -NCIT:C40194 Cervical Squamotransitional Carcinoma 7 143773 -NCIT:C45502 Lung Squamous Cell Carcinoma, Papillary Variant 6 143774 -NCIT:C54335 Laryngeal Papillary Squamous Cell Carcinoma 6 143775 -NCIT:C65164 Non-Invasive Papillary Squamous Cell Carcinoma 6 143776 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 7 143777 -NCIT:C6983 Papillary Carcinoma of the Penis 6 143778 -NCIT:C103340 Papillary Carcinoma of the Penis, Not Otherwise Specified 7 143779 -NCIT:C159249 Papillary-Basaloid Carcinoma of the Penis 7 143780 -NCIT:C6981 Warty Carcinoma of the Penis 7 143781 -NCIT:C6982 Verrucous Carcinoma of the Penis 7 143782 -NCIT:C159247 Carcinoma Cuniculatum of the Penis 8 143783 -NCIT:C4104 Metastatic Squamous Cell Carcinoma 5 143784 -NCIT:C143013 Metastatic Skin Squamous Cell Carcinoma 6 143785 -NCIT:C153182 Locally Advanced Skin Squamous Cell Carcinoma 7 143786 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 143787 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 7 143788 -NCIT:C168542 Advanced Skin Squamous Cell Carcinoma 7 143789 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 143790 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 143791 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 143792 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 143793 -NCIT:C148153 Metastatic Head and Neck Squamous Cell Carcinoma 6 143794 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 7 143795 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 143796 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 143797 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 143798 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 143799 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 143800 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 143801 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 143802 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 7 143803 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 143804 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 143805 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 7 143806 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 143807 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 143808 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 7 143809 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 7 143810 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 143811 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 143812 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 143813 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 8 143814 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 9 143815 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 143816 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 143817 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 8 143818 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 143819 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 143820 -NCIT:C162882 Metastatic Sinonasal Squamous Cell Carcinoma 7 143821 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 143822 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 143823 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 143824 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 143825 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 143826 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 143827 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 143828 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 143829 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 143830 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 143831 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 7 143832 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 7 143833 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 8 143834 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 143835 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 143836 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 143837 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 8 143838 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 143839 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 143840 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 143841 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 143842 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 143843 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 8 143844 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 143845 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 143846 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 143847 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 143848 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 143849 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 143850 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 6 143851 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 7 143852 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 7 143853 -NCIT:C154321 Locally Advanced Squamous Cell Carcinoma 6 143854 -NCIT:C153182 Locally Advanced Skin Squamous Cell Carcinoma 7 143855 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 143856 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 7 143857 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 8 143858 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 7 143859 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 143860 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 143861 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 143862 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 8 143863 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 9 143864 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 143865 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 143866 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 8 143867 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 143868 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 143869 -NCIT:C165474 Locally Advanced Squamous Cell Carcinoma of Unknown Primary 7 143870 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 7 143871 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 7 143872 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 7 143873 -NCIT:C156075 Metastatic Esophageal Squamous Cell Carcinoma 6 143874 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 7 143875 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 7 143876 -NCIT:C156092 Metastatic Lung Squamous Cell Carcinoma 6 143877 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 7 143878 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 143879 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 143880 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 143881 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 7 143882 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 143883 -NCIT:C157452 Metastatic Squamous Cell Carcinoma in the Cervical Lymph Nodes 6 143884 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 6 143885 -NCIT:C162653 Advanced Squamous Cell Carcinoma 6 143886 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 7 143887 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 143888 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 143889 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 143890 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 143891 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 143892 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 143893 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 143894 -NCIT:C168542 Advanced Skin Squamous Cell Carcinoma 7 143895 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 143896 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 7 143897 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 7 143898 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 7 143899 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 143900 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 7 143901 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 7 143902 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 7 143903 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 8 143904 -NCIT:C169103 Metastatic Anal Squamous Cell Carcinoma 6 143905 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 7 143906 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 8 143907 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 6 143908 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 7 143909 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 7 143910 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 6 143911 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 6 143912 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 7 143913 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 8 143914 -NCIT:C182111 Metastatic Squamous Cell Carcinoma of the Penis 6 143915 -NCIT:C188112 Metastatic Squamous Cell Carcinoma in the Breast 6 143916 -NCIT:C188113 Metastatic Squamous Cell Carcinoma in the Skin 6 143917 -NCIT:C190771 Metastatic Pancreatic Squamous Cell Carcinoma 6 143918 -NCIT:C4829 Disseminated Squamous Cell Carcinoma 6 143919 -NCIT:C5178 Metastatic Breast Squamous Cell Carcinoma 6 143920 -NCIT:C8099 Squamous Cell Carcinoma of Unknown Primary 6 143921 -NCIT:C165474 Locally Advanced Squamous Cell Carcinoma of Unknown Primary 7 143922 -NCIT:C187051 Human Papillomavirus-Related Head and Neck Squamous Cell Carcinoma of Unknown Primary 7 143923 -NCIT:C190149 Human Papillomavirus-Negative Head and Neck Squamous Cell Carcinoma of Unknown Primary 7 143924 -NCIT:C7713 Neck Squamous Cell Carcinoma of Unknown Primary 7 143925 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 8 143926 -NCIT:C4105 Keratinizing Squamous Cell Carcinoma 5 143927 -NCIT:C27542 Skin Pseudovascular Squamous Cell Carcinoma 6 143928 -NCIT:C27543 Skin Basaloid Carcinoma 6 143929 -NCIT:C40187 Cervical Keratinizing Squamous Cell Carcinoma 6 143930 -NCIT:C40243 Vaginal Keratinizing Squamous Cell Carcinoma 6 143931 -NCIT:C40284 Vulvar Keratinizing Squamous Cell Carcinoma 6 143932 -NCIT:C40357 Breast Squamous Cell Carcinoma, Large Cell Keratinizing Variant 6 143933 -NCIT:C4459 Skin Clear Cell Squamous Cell Carcinoma 6 143934 -NCIT:C4460 Skin Acantholytic Squamous Cell Carcinoma 6 143935 -NCIT:C45502 Lung Squamous Cell Carcinoma, Papillary Variant 6 143936 -NCIT:C45503 Lung Squamous Cell Carcinoma, Clear Cell Variant 6 143937 -NCIT:C45504 Lung Squamous Cell Carcinoma, Small Cell Variant 6 143938 -NCIT:C45507 Lung Basaloid Squamous Cell Carcinoma 6 143939 -NCIT:C54283 Head and Neck Keratinizing Squamous Cell Carcinoma 6 143940 -NCIT:C173077 Sinonasal Keratinizing Squamous Cell Carcinoma 7 143941 -NCIT:C54284 Paranasal Sinus Keratinizing Squamous Cell Carcinoma 8 143942 -NCIT:C54285 Nasal Cavity Keratinizing Squamous Cell Carcinoma 8 143943 -NCIT:C6083 External Ear Squamous Cell Carcinoma 7 143944 -NCIT:C6086 Middle Ear Squamous Cell Carcinoma 7 143945 -NCIT:C7498 Keratinizing Primary Intraosseous Squamous Cell Carcinoma-Solid Type 7 143946 -NCIT:C7992 Nasopharyngeal Keratinizing Squamous Cell Carcinoma 7 143947 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 8 143948 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 8 143949 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 8 143950 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 8 143951 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 8 143952 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 8 143953 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 143954 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 143955 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 143956 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 8 143957 -NCIT:C65179 Squamous Cell Carcinoma with Horn Formation 6 143958 -NCIT:C4106 Pseudoglandular Squamous Cell Carcinoma 5 143959 -NCIT:C159246 Pseudoglandular Carcinoma of the Penis 6 143960 -NCIT:C54337 Laryngeal Acantholytic Squamous Cell Carcinoma 6 143961 -NCIT:C43534 Small Intestinal Squamous Cell Carcinoma 5 143962 -NCIT:C43588 Colorectal Squamous Cell Carcinoma 5 143963 -NCIT:C5490 Colon Squamous Cell Carcinoma 6 143964 -NCIT:C5554 Rectal Squamous Cell Carcinoma 6 143965 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 7 143966 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 8 143967 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 8 143968 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 7 143969 -NCIT:C5555 Rectal Cloacogenic Carcinoma 7 143970 -NCIT:C4448 Tracheal Squamous Cell Carcinoma 5 143971 -NCIT:C3639 Tracheal Carcinoma In Situ 6 143972 -NCIT:C4549 Conjunctival Squamous Cell Carcinoma 5 143973 -NCIT:C174390 Conjunctival Keratoacanthoma 6 143974 -NCIT:C174398 Conjunctival Spindle Cell Carcinoma 6 143975 -NCIT:C4552 Corneal Squamous Cell Carcinoma 5 143976 -NCIT:C4819 Skin Squamous Cell Carcinoma 5 143977 -NCIT:C133252 Cutaneous Squamous Cell Carcinoma of the Head and Neck 6 143978 -NCIT:C133253 Cutaneous Squamous Cell Carcinoma of the Head and Neck by AJCC v8 Stage 7 143979 -NCIT:C133255 Stage 0 Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 143980 -NCIT:C133256 Stage I Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 143981 -NCIT:C133257 Stage II Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 143982 -NCIT:C133258 Stage III Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 143983 -NCIT:C133259 Stage IV Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 143984 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 143985 -NCIT:C162943 Resectable Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 143986 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 143987 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 143988 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 143989 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 143990 -NCIT:C6083 External Ear Squamous Cell Carcinoma 7 143991 -NCIT:C143012 Recurrent Skin Squamous Cell Carcinoma 6 143992 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 143993 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 7 143994 -NCIT:C165737 Locally Recurrent Skin Squamous Cell Carcinoma 7 143995 -NCIT:C143013 Metastatic Skin Squamous Cell Carcinoma 6 143996 -NCIT:C153182 Locally Advanced Skin Squamous Cell Carcinoma 7 143997 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 143998 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 7 143999 -NCIT:C168542 Advanced Skin Squamous Cell Carcinoma 7 144000 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 144001 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 144002 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 144003 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 144004 -NCIT:C157320 Unresectable Skin Squamous Cell Carcinoma 6 144005 -NCIT:C160666 Hematologic Malignancy-Associated Skin Squamous Cell Carcinoma 6 144006 -NCIT:C165465 Skin Verrucous Carcinoma 6 144007 -NCIT:C6811 Plantar Verrucous Carcinoma 7 144008 -NCIT:C165466 Skin Squamous Cell Carcinoma with Osteoclast-Like Giant Cells 6 144009 -NCIT:C165467 Skin Lymphoepithelioma-Like Carcinoma 6 144010 -NCIT:C165468 Skin Squamous Cell Carcinoma with Sarcomatoid Differentiation 6 144011 -NCIT:C165735 Refractory Skin Squamous Cell Carcinoma 6 144012 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 144013 -NCIT:C170464 Resectable Skin Squamous Cell Carcinoma 6 144014 -NCIT:C162943 Resectable Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 144015 -NCIT:C27542 Skin Pseudovascular Squamous Cell Carcinoma 6 144016 -NCIT:C27543 Skin Basaloid Carcinoma 6 144017 -NCIT:C27636 Transplant-Related Skin Squamous Cell Carcinoma 6 144018 -NCIT:C27918 Old Burn Scar-Related Skin Squamous Cell Carcinoma 6 144019 -NCIT:C27921 Solar Radiation-Related Skin Squamous Cell Carcinoma 6 144020 -NCIT:C2906 Skin Squamous Cell Carcinoma In Situ 6 144021 -NCIT:C62571 Bowen Disease of the Skin 7 144022 -NCIT:C3146 Keratoacanthoma 6 144023 -NCIT:C128167 Vulvar Keratoacanthoma 7 144024 -NCIT:C174390 Conjunctival Keratoacanthoma 7 144025 -NCIT:C4459 Skin Clear Cell Squamous Cell Carcinoma 6 144026 -NCIT:C4460 Skin Acantholytic Squamous Cell Carcinoma 6 144027 -NCIT:C4643 Scrotal Squamous Cell Carcinoma 6 144028 -NCIT:C4666 Skin Spindle Cell Squamous Cell Carcinoma 6 144029 -NCIT:C6925 Anal Margin Squamous Cell Carcinoma 6 144030 -NCIT:C5177 Breast Squamous Cell Carcinoma 5 144031 -NCIT:C40357 Breast Squamous Cell Carcinoma, Large Cell Keratinizing Variant 6 144032 -NCIT:C40358 Breast Squamous Cell Carcinoma, Spindle Cell Variant 6 144033 -NCIT:C40359 Breast Squamous Cell Carcinoma, Acantholytic Variant 6 144034 -NCIT:C5178 Metastatic Breast Squamous Cell Carcinoma 6 144035 -NCIT:C54244 Basaloid Squamous Cell Carcinoma 5 144036 -NCIT:C27543 Skin Basaloid Carcinoma 6 144037 -NCIT:C37290 Head and Neck Basaloid Carcinoma 6 144038 -NCIT:C126751 Oropharyngeal Basaloid Carcinoma 7 144039 -NCIT:C129873 Floor of Mouth Basaloid Squamous Cell Carcinoma 7 144040 -NCIT:C54334 Laryngeal Basaloid Carcinoma 7 144041 -NCIT:C54360 Nasopharyngeal Basaloid Carcinoma 7 144042 -NCIT:C40189 Cervical Basaloid Carcinoma 6 144043 -NCIT:C40245 Vaginal Basaloid Carcinoma 6 144044 -NCIT:C40286 Vulvar Basaloid Carcinoma 6 144045 -NCIT:C45507 Lung Basaloid Squamous Cell Carcinoma 6 144046 -NCIT:C6456 Thymic Basaloid Carcinoma 6 144047 -NCIT:C6980 Basaloid Squamous Cell Carcinoma of the Penis 6 144048 -NCIT:C159249 Papillary-Basaloid Carcinoma of the Penis 7 144049 -NCIT:C7032 Esophageal Basaloid Carcinoma 6 144050 -NCIT:C8256 Anal Basaloid Carcinoma 6 144051 -NCIT:C5475 Gastric Squamous Cell Carcinoma 5 144052 -NCIT:C150034 Gastric Cardia Squamous Cell Carcinoma 6 144053 -NCIT:C5536 Prostate Squamous Cell Carcinoma 5 144054 -NCIT:C5777 Extrahepatic Bile Duct Squamous Cell Carcinoma 5 144055 -NCIT:C6092 Lacrimal Drainage System Squamous Cell Carcinoma 5 144056 -NCIT:C175335 Lacrimal Drainage System Non-Keratinizing Squamous Cell Carcinoma 6 144057 -NCIT:C6154 Ureter Squamous Cell Carcinoma 5 144058 -NCIT:C6165 Urethral Squamous Cell Carcinoma 5 144059 -NCIT:C39862 Human Papillomavirus-Related Urethral Squamous Cell Carcinoma 6 144060 -NCIT:C39874 Urethral Verrucous Carcinoma 6 144061 -NCIT:C6282 Fallopian Tube Squamous Cell Carcinoma 5 144062 -NCIT:C6455 Thymic Squamous Cell Carcinoma 5 144063 -NCIT:C6456 Thymic Basaloid Carcinoma 6 144064 -NCIT:C65173 Non-Keratinizing Large Cell Squamous Cell Carcinoma 5 144065 -NCIT:C65175 Non-Keratinizing Small Cell Squamous Cell Carcinoma 5 144066 -NCIT:C65176 Squamous Cell Carcinoma In Situ with Questionable Stromal Invasion 5 144067 -NCIT:C65178 Microinvasive Squamous Cell Carcinoma 5 144068 -NCIT:C65180 Squamous Cell Carcinoma, Clear Cell Type 5 144069 -NCIT:C159251 Clear Cell Squamous Cell Carcinoma of the Penis 6 144070 -NCIT:C7729 Squamous Cell Carcinoma of the Penis 5 144071 -NCIT:C159244 Non-Human Papillomavirus-Related Squamous Cell Carcinoma of the Penis 6 144072 -NCIT:C103340 Papillary Carcinoma of the Penis, Not Otherwise Specified 7 144073 -NCIT:C159245 Pseudohyperplastic Carcinoma of the Penis 7 144074 -NCIT:C159246 Pseudoglandular Carcinoma of the Penis 7 144075 -NCIT:C159248 Adenosquamous Carcinoma of the Penis 7 144076 -NCIT:C39959 Mixed Squamous Cell Carcinoma of the Penis 7 144077 -NCIT:C6979 Squamous Cell Carcinoma of the Penis, Usual Type 7 144078 -NCIT:C6982 Verrucous Carcinoma of the Penis 7 144079 -NCIT:C159247 Carcinoma Cuniculatum of the Penis 8 144080 -NCIT:C6984 Sarcomatoid Carcinoma of the Penis 7 144081 -NCIT:C182111 Metastatic Squamous Cell Carcinoma of the Penis 6 144082 -NCIT:C27682 Human Papillomavirus-Related Squamous Cell Carcinoma of the Penis 6 144083 -NCIT:C159250 Warty-Basaloid Carcinoma of the Penis 7 144084 -NCIT:C159251 Clear Cell Squamous Cell Carcinoma of the Penis 7 144085 -NCIT:C159252 Lymphoepithelioma-Like Carcinoma of the Penis 7 144086 -NCIT:C6980 Basaloid Squamous Cell Carcinoma of the Penis 7 144087 -NCIT:C159249 Papillary-Basaloid Carcinoma of the Penis 8 144088 -NCIT:C6981 Warty Carcinoma of the Penis 7 144089 -NCIT:C27790 Penile Carcinoma In Situ 6 144090 -NCIT:C6983 Papillary Carcinoma of the Penis 6 144091 -NCIT:C103340 Papillary Carcinoma of the Penis, Not Otherwise Specified 7 144092 -NCIT:C159249 Papillary-Basaloid Carcinoma of the Penis 7 144093 -NCIT:C6981 Warty Carcinoma of the Penis 7 144094 -NCIT:C6982 Verrucous Carcinoma of the Penis 7 144095 -NCIT:C159247 Carcinoma Cuniculatum of the Penis 8 144096 -NCIT:C7732 Renal Pelvis Squamous Cell Carcinoma 5 144097 -NCIT:C8719 Endometrial Squamous Cell Carcinoma 5 144098 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 6 144099 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 6 144100 -NCIT:C9161 Anal Squamous Cell Carcinoma 5 144101 -NCIT:C157575 Anal Intraepithelial Neoplasia 3 6 144102 -NCIT:C169102 Recurrent Anal Squamous Cell Carcinoma 6 144103 -NCIT:C175360 Recurrent Anal Canal Squamous Cell Carcinoma 7 144104 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 8 144105 -NCIT:C169103 Metastatic Anal Squamous Cell Carcinoma 6 144106 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 7 144107 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 8 144108 -NCIT:C173156 Unresectable Anal Squamous Cell Carcinoma 6 144109 -NCIT:C175384 Unresectable Anal Canal Squamous Cell Carcinoma 7 144110 -NCIT:C27681 Human Papillomavirus-Related Anal Squamous Cell Carcinoma 6 144111 -NCIT:C6925 Anal Margin Squamous Cell Carcinoma 6 144112 -NCIT:C7469 Anal Canal Squamous Cell Carcinoma 6 144113 -NCIT:C173334 Refractory Anal Canal Squamous Cell Carcinoma 7 144114 -NCIT:C175360 Recurrent Anal Canal Squamous Cell Carcinoma 7 144115 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 8 144116 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 7 144117 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 8 144118 -NCIT:C175384 Unresectable Anal Canal Squamous Cell Carcinoma 7 144119 -NCIT:C7470 Anal Verrucous Carcinoma 6 144120 -NCIT:C8256 Anal Basaloid Carcinoma 6 144121 -NCIT:C9170 Gallbladder Squamous Cell Carcinoma 5 144122 -NCIT:C2930 Transitional Cell Carcinoma 4 144123 -NCIT:C129827 Unresectable Transitional Cell Carcinoma 5 144124 -NCIT:C150521 Unresectable Urothelial Carcinoma 6 144125 -NCIT:C158585 Unresectable Urethral Urothelial Carcinoma 7 144126 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 7 144127 -NCIT:C164160 Unresectable Renal Pelvis and Ureter Urothelial Carcinoma 7 144128 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 8 144129 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 8 144130 -NCIT:C129828 Metastatic Transitional Cell Carcinoma 5 144131 -NCIT:C126109 Metastatic Urothelial Carcinoma 6 144132 -NCIT:C148493 Advanced Urothelial Carcinoma 7 144133 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 144134 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 144135 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 144136 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 144137 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 144138 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 7 144139 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 144140 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 144141 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 7 144142 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 144143 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 144144 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 144145 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 144146 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 144147 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 144148 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 144149 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 144150 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 144151 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 8 144152 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 7 144153 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 144154 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 144155 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 144156 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 144157 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 144158 -NCIT:C191692 Metastatic Clear Cell (Glycogen-Rich) Urothelial Carcinoma 7 144159 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 144160 -NCIT:C191693 Metastatic Giant Cell Urothelial Carcinoma 7 144161 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 144162 -NCIT:C191694 Metastatic Lipid-Rich Urothelial Carcinoma 7 144163 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 144164 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 7 144165 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 144166 -NCIT:C191696 Metastatic Nested Urothelial Carcinoma 7 144167 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 144168 -NCIT:C191697 Metastatic Plasmacytoid Urothelial Carcinoma 7 144169 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 144170 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 7 144171 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 144172 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 7 144173 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 8 144174 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 144175 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 144176 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 8 144177 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 144178 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 144179 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 144180 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 144181 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 144182 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 144183 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 144184 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 144185 -NCIT:C172091 Advanced Transitional Cell Carcinoma 6 144186 -NCIT:C148493 Advanced Urothelial Carcinoma 7 144187 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 144188 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 144189 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 144190 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 144191 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 144192 -NCIT:C175493 Locally Advanced Transitional Cell Carcinoma 6 144193 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 7 144194 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 144195 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 144196 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 144197 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 144198 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 144199 -NCIT:C162564 Primary Peritoneal Transitional Cell Carcinoma 5 144200 -NCIT:C170759 Recurrent Primary Peritoneal Transitional Cell Carcinoma 6 144201 -NCIT:C178688 Refractory Primary Peritoneal Transitional Cell Carcinoma 6 144202 -NCIT:C40104 Fallopian Tube Transitional Cell Carcinoma 5 144203 -NCIT:C170757 Recurrent Fallopian Tube Transitional Cell Carcinoma 6 144204 -NCIT:C178674 Refractory Fallopian Tube Transitional Cell Carcinoma 6 144205 -NCIT:C40154 Endometrial Transitional Cell Carcinoma 5 144206 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 6 144207 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 6 144208 -NCIT:C40297 Bartholin Gland Transitional Cell Carcinoma 5 144209 -NCIT:C4030 Urothelial Carcinoma 5 144210 -NCIT:C126109 Metastatic Urothelial Carcinoma 6 144211 -NCIT:C148493 Advanced Urothelial Carcinoma 7 144212 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 144213 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 144214 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 144215 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 144216 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 144217 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 7 144218 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 144219 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 144220 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 7 144221 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 144222 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 144223 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 144224 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 144225 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 144226 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 144227 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 144228 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 144229 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 144230 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 8 144231 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 7 144232 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 144233 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 144234 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 144235 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 144236 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 144237 -NCIT:C191692 Metastatic Clear Cell (Glycogen-Rich) Urothelial Carcinoma 7 144238 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 144239 -NCIT:C191693 Metastatic Giant Cell Urothelial Carcinoma 7 144240 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 144241 -NCIT:C191694 Metastatic Lipid-Rich Urothelial Carcinoma 7 144242 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 144243 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 7 144244 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 144245 -NCIT:C191696 Metastatic Nested Urothelial Carcinoma 7 144246 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 144247 -NCIT:C191697 Metastatic Plasmacytoid Urothelial Carcinoma 7 144248 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 144249 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 7 144250 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 144251 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 7 144252 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 8 144253 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 144254 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 144255 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 8 144256 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 144257 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 144258 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 144259 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 144260 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 144261 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 144262 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 144263 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 144264 -NCIT:C150364 Refractory Urothelial Carcinoma 6 144265 -NCIT:C150365 Platinum-Resistant Urothelial Carcinoma 7 144266 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 7 144267 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 8 144268 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 7 144269 -NCIT:C176996 Refractory Urethral Urothelial Carcinoma 7 144270 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 7 144271 -NCIT:C150521 Unresectable Urothelial Carcinoma 6 144272 -NCIT:C158585 Unresectable Urethral Urothelial Carcinoma 7 144273 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 7 144274 -NCIT:C164160 Unresectable Renal Pelvis and Ureter Urothelial Carcinoma 7 144275 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 8 144276 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 8 144277 -NCIT:C157631 Recurrent Urothelial Carcinoma 6 144278 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 7 144279 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 8 144280 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 7 144281 -NCIT:C8254 Recurrent Renal Pelvis and Ureter Urothelial Carcinoma 7 144282 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 8 144283 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 8 144284 -NCIT:C180606 Urothelial Carcinoma, High Grade 6 144285 -NCIT:C180607 Renal Pelvis Urothelial Carcinoma, High Grade 7 144286 -NCIT:C180608 Ureter Urothelial Carcinoma, High Grade 7 144287 -NCIT:C180609 Bladder Urothelial Carcinoma, High Grade 7 144288 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 8 144289 -NCIT:C191675 Non-Invasive Papillary Urothelial Carcinoma, High Grade 7 144290 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 8 144291 -NCIT:C191673 Non-Invasive Papillary Urothelial Carcinoma, Low Grade 6 144292 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 7 144293 -NCIT:C39851 Bladder Urothelial Carcinoma 6 144294 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 7 144295 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 8 144296 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 7 144297 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 144298 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 144299 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 144300 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 144301 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 144302 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 144303 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 144304 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 144305 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 144306 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 8 144307 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 7 144308 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 7 144309 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 8 144310 -NCIT:C177531 Bladder Flat Urothelial Carcinoma 7 144311 -NCIT:C37266 Bladder Urothelial Carcinoma In Situ 8 144312 -NCIT:C140418 Stage 0is Bladder Cancer AJCC v8 9 144313 -NCIT:C3644 Stage 0is Bladder Urothelial Carcinoma AJCC v6 and v7 9 144314 -NCIT:C180609 Bladder Urothelial Carcinoma, High Grade 7 144315 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 8 144316 -NCIT:C188032 Resectable Bladder Urothelial Carcinoma 7 144317 -NCIT:C27634 Transplant-Related Bladder Urothelial Carcinoma 7 144318 -NCIT:C27885 Invasive Bladder Urothelial Carcinoma 7 144319 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 8 144320 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 144321 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 144322 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 8 144323 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 9 144324 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 8 144325 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 8 144326 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 8 144327 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 8 144328 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 8 144329 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 144330 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 8 144331 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 8 144332 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 8 144333 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 8 144334 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 144335 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 8 144336 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 8 144337 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 8 144338 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 144339 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 8 144340 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 144341 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 9 144342 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 9 144343 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 144344 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 144345 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 8 144346 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 144347 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 8 144348 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 144349 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 8 144350 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 8 144351 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 8 144352 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 8 144353 -NCIT:C39844 Urachal Urothelial Carcinoma 7 144354 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 8 144355 -NCIT:C7383 Bladder Papillary Urothelial Carcinoma 7 144356 -NCIT:C158382 Bladder Non-Invasive Papillary Urothelial Carcinoma 8 144357 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 9 144358 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 9 144359 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 9 144360 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 9 144361 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 8 144362 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 144363 -NCIT:C39853 Invasive Urothelial Carcinoma 6 144364 -NCIT:C115966 Invasive Bladder Urothelial Carcinoma Associated with Urethral Carcinoma 7 144365 -NCIT:C164252 Invasive Sarcomatoid Urothelial Carcinoma 7 144366 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 8 144367 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 144368 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 8 144369 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 144370 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 9 144371 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 9 144372 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 8 144373 -NCIT:C191678 Invasive Lymphoepithelioma-Like Urothelial Carcinoma 7 144374 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 8 144375 -NCIT:C191679 Invasive Giant Cell Urothelial Carcinoma 7 144376 -NCIT:C191693 Metastatic Giant Cell Urothelial Carcinoma 8 144377 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 144378 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 8 144379 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 144380 -NCIT:C191680 Invasive Urothelial Carcinoma with Glandular Differentiation 7 144381 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 8 144382 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 8 144383 -NCIT:C191681 Invasive Urothelial Carcinoma with Squamous Differentiation 7 144384 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 8 144385 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 8 144386 -NCIT:C191682 Invasive Urothelial Carcinoma with Trophoblastic Differentiation 7 144387 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 8 144388 -NCIT:C191683 Invasive Clear Cell (Glycogen-Rich) Urothelial Carcinoma 7 144389 -NCIT:C191692 Metastatic Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 144390 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 144391 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 144392 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 144393 -NCIT:C191684 Invasive Lipid-Rich Urothelial Carcinoma 7 144394 -NCIT:C191694 Metastatic Lipid-Rich Urothelial Carcinoma 8 144395 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 144396 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 8 144397 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 144398 -NCIT:C191685 Invasive Microcystic Urothelial Carcinoma 7 144399 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 8 144400 -NCIT:C191686 Invasive Micropapillary Urothelial Carcinoma 7 144401 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 8 144402 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 144403 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 8 144404 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 144405 -NCIT:C191687 Invasive Nested Urothelial Carcinoma 7 144406 -NCIT:C191696 Metastatic Nested Urothelial Carcinoma 8 144407 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 144408 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 8 144409 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 144410 -NCIT:C191688 Invasive Plasmacytoid Urothelial Carcinoma 7 144411 -NCIT:C191697 Metastatic Plasmacytoid Urothelial Carcinoma 8 144412 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 144413 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 8 144414 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 144415 -NCIT:C191725 Invasive Large Nested Urothelial Carcinoma 7 144416 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 8 144417 -NCIT:C191728 Invasive Tubular Urothelial Carcinoma 7 144418 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 8 144419 -NCIT:C191730 Invasive Poorly Differentiated Urothelial Carcinoma 7 144420 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 8 144421 -NCIT:C191734 Invasive Conventional Urothelial Carcinoma 7 144422 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 8 144423 -NCIT:C27885 Invasive Bladder Urothelial Carcinoma 7 144424 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 8 144425 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 144426 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 144427 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 8 144428 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 9 144429 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 8 144430 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 8 144431 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 8 144432 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 8 144433 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 8 144434 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 144435 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 8 144436 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 8 144437 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 8 144438 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 8 144439 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 144440 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 8 144441 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 8 144442 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 8 144443 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 144444 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 8 144445 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 144446 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 9 144447 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 9 144448 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 144449 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 144450 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 8 144451 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 144452 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 8 144453 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 144454 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 8 144455 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 8 144456 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 8 144457 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 8 144458 -NCIT:C39879 Invasive Renal Pelvis and Ureter Urothelial Carcinoma 7 144459 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 8 144460 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 8 144461 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 8 144462 -NCIT:C39898 Primary Prostate Urothelial Carcinoma 6 144463 -NCIT:C39900 Prostatic Urethra Urothelial Carcinoma 7 144464 -NCIT:C39901 Prostatic Duct Urothelial Carcinoma 7 144465 -NCIT:C6166 Urethral Urothelial Carcinoma 6 144466 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 7 144467 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 7 144468 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 144469 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 144470 -NCIT:C158585 Unresectable Urethral Urothelial Carcinoma 7 144471 -NCIT:C176996 Refractory Urethral Urothelial Carcinoma 7 144472 -NCIT:C39900 Prostatic Urethra Urothelial Carcinoma 7 144473 -NCIT:C7716 Renal Pelvis and Ureter Urothelial Carcinoma 6 144474 -NCIT:C140355 Renal Pelvis and Ureter Cancer by AJCC v8 Stage 7 144475 -NCIT:C140356 Renal Pelvis Cancer by AJCC v8 Stage 8 144476 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 9 144477 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 9 144478 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 9 144479 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 9 144480 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 9 144481 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 9 144482 -NCIT:C140357 Ureter Cancer by AJCC v8 Stage 8 144483 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 9 144484 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 9 144485 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 9 144486 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 9 144487 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 9 144488 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 9 144489 -NCIT:C140358 Stage 0a Renal Pelvis and Ureter Cancer AJCC v8 8 144490 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 9 144491 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 9 144492 -NCIT:C140361 Stage 0is Renal Pelvis and Ureter Cancer AJCC v8 8 144493 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 9 144494 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 9 144495 -NCIT:C140364 Stage I Renal Pelvis and Ureter Cancer AJCC v8 8 144496 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 9 144497 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 9 144498 -NCIT:C140367 Stage II Renal Pelvis and Ureter Cancer AJCC v8 8 144499 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 9 144500 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 9 144501 -NCIT:C140370 Stage III Renal Pelvis and Ureter Cancer AJCC v8 8 144502 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 9 144503 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 9 144504 -NCIT:C140373 Stage IV Renal Pelvis and Ureter Cancer AJCC v8 8 144505 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 9 144506 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 9 144507 -NCIT:C140376 Renal Pelvis and Ureter Cancer by AJCC v7 Stage 7 144508 -NCIT:C140377 Renal Pelvis Cancer by AJCC v7 Stage 8 144509 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 9 144510 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 9 144511 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 9 144512 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 9 144513 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 9 144514 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 10 144515 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 10 144516 -NCIT:C140378 Ureter Cancer by AJCC v7 Stage 8 144517 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 9 144518 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 10 144519 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 10 144520 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 9 144521 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 9 144522 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 9 144523 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 9 144524 -NCIT:C39850 Stage 0 Renal Pelvis and Ureter Cancer AJCC v7 8 144525 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 9 144526 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 10 144527 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 10 144528 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 9 144529 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 10 144530 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 10 144531 -NCIT:C7517 Stage 0a Renal Pelvis and Ureter Cancer AJCC v7 9 144532 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 10 144533 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 10 144534 -NCIT:C7518 Stage 0is Renal Pelvis and Ureter Cancer AJCC v7 9 144535 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 10 144536 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 10 144537 -NCIT:C7519 Stage I Renal Pelvis and Ureter Cancer AJCC v7 8 144538 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 9 144539 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 9 144540 -NCIT:C7520 Stage II Renal Pelvis and Ureter Cancer AJCC v7 8 144541 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 9 144542 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 9 144543 -NCIT:C7521 Stage III Renal Pelvis and Ureter Cancer AJCC v7 8 144544 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 9 144545 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 9 144546 -NCIT:C7522 Stage IV Renal Pelvis and Ureter Cancer AJCC v7 8 144547 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 9 144548 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 9 144549 -NCIT:C164160 Unresectable Renal Pelvis and Ureter Urothelial Carcinoma 7 144550 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 8 144551 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 8 144552 -NCIT:C39879 Invasive Renal Pelvis and Ureter Urothelial Carcinoma 7 144553 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 8 144554 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 8 144555 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 8 144556 -NCIT:C4830 Ureter Urothelial Carcinoma 7 144557 -NCIT:C140357 Ureter Cancer by AJCC v8 Stage 8 144558 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 9 144559 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 9 144560 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 9 144561 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 9 144562 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 9 144563 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 9 144564 -NCIT:C140378 Ureter Cancer by AJCC v7 Stage 8 144565 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 9 144566 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 10 144567 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 10 144568 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 9 144569 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 9 144570 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 9 144571 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 9 144572 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 8 144573 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 144574 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 144575 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 8 144576 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 8 144577 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 8 144578 -NCIT:C180608 Ureter Urothelial Carcinoma, High Grade 8 144579 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 8 144580 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 8 144581 -NCIT:C7355 Renal Pelvis Urothelial Carcinoma 7 144582 -NCIT:C140356 Renal Pelvis Cancer by AJCC v8 Stage 8 144583 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 9 144584 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 9 144585 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 9 144586 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 9 144587 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 9 144588 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 9 144589 -NCIT:C140377 Renal Pelvis Cancer by AJCC v7 Stage 8 144590 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 9 144591 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 9 144592 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 9 144593 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 9 144594 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 9 144595 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 10 144596 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 10 144597 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 8 144598 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 144599 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 144600 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 8 144601 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 8 144602 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 8 144603 -NCIT:C180607 Renal Pelvis Urothelial Carcinoma, High Grade 8 144604 -NCIT:C6148 Renal Pelvis Papillary Urothelial Carcinoma 8 144605 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 9 144606 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 9 144607 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 8 144608 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 7 144609 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 8 144610 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 144611 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 144612 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 8 144613 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 144614 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 144615 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 144616 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 144617 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 144618 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 144619 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 144620 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 144621 -NCIT:C8167 Localized Renal Pelvis and Ureter Urothelial Carcinoma 7 144622 -NCIT:C8168 Regional Renal Pelvis and Ureter Urothelial Carcinoma 7 144623 -NCIT:C8254 Recurrent Renal Pelvis and Ureter Urothelial Carcinoma 7 144624 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 8 144625 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 8 144626 -NCIT:C4116 Stage 0 Transitional Cell Carcinoma 5 144627 -NCIT:C140358 Stage 0a Renal Pelvis and Ureter Cancer AJCC v8 6 144628 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 7 144629 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 7 144630 -NCIT:C140361 Stage 0is Renal Pelvis and Ureter Cancer AJCC v8 6 144631 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 7 144632 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 7 144633 -NCIT:C39850 Stage 0 Renal Pelvis and Ureter Cancer AJCC v7 6 144634 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 7 144635 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 8 144636 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 8 144637 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 7 144638 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 8 144639 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 8 144640 -NCIT:C7517 Stage 0a Renal Pelvis and Ureter Cancer AJCC v7 7 144641 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 8 144642 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 8 144643 -NCIT:C7518 Stage 0is Renal Pelvis and Ureter Cancer AJCC v7 7 144644 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 8 144645 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 8 144646 -NCIT:C6188 Stage 0 Bladder Urothelial Carcinoma AJCC v6 and v7 6 144647 -NCIT:C3644 Stage 0is Bladder Urothelial Carcinoma AJCC v6 and v7 7 144648 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 7 144649 -NCIT:C4120 Sarcomatoid Transitional Cell Carcinoma 5 144650 -NCIT:C164252 Invasive Sarcomatoid Urothelial Carcinoma 6 144651 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 7 144652 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 144653 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 7 144654 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 144655 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 8 144656 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 8 144657 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 7 144658 -NCIT:C4122 Papillary Transitional Cell Carcinoma 5 144659 -NCIT:C6148 Renal Pelvis Papillary Urothelial Carcinoma 6 144660 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 7 144661 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 7 144662 -NCIT:C65181 Non-Invasive Papillary Transitional Cell Carcinoma 6 144663 -NCIT:C140358 Stage 0a Renal Pelvis and Ureter Cancer AJCC v8 7 144664 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 8 144665 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 8 144666 -NCIT:C158382 Bladder Non-Invasive Papillary Urothelial Carcinoma 7 144667 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 8 144668 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 8 144669 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 8 144670 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 8 144671 -NCIT:C191673 Non-Invasive Papillary Urothelial Carcinoma, Low Grade 7 144672 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 8 144673 -NCIT:C191675 Non-Invasive Papillary Urothelial Carcinoma, High Grade 7 144674 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 8 144675 -NCIT:C7517 Stage 0a Renal Pelvis and Ureter Cancer AJCC v7 7 144676 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 8 144677 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 8 144678 -NCIT:C65182 Micropapillary Transitional Cell Carcinoma 6 144679 -NCIT:C191686 Invasive Micropapillary Urothelial Carcinoma 7 144680 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 8 144681 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 144682 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 8 144683 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 144684 -NCIT:C7383 Bladder Papillary Urothelial Carcinoma 6 144685 -NCIT:C158382 Bladder Non-Invasive Papillary Urothelial Carcinoma 7 144686 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 8 144687 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 8 144688 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 8 144689 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 8 144690 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 7 144691 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 144692 -NCIT:C5240 Ovarian Transitional Cell Carcinoma 5 144693 -NCIT:C153819 Recurrent Ovarian Transitional Cell Carcinoma 6 144694 -NCIT:C178682 Refractory Ovarian Transitional Cell Carcinoma 6 144695 -NCIT:C2970 Adenoid Cystic Carcinoma 4 144696 -NCIT:C157638 Metastatic Adenoid Cystic Carcinoma 5 144697 -NCIT:C156089 Metastatic Oral Cavity Adenoid Cystic Carcinoma 6 144698 -NCIT:C164012 Advanced Adenoid Cystic Carcinoma 6 144699 -NCIT:C175669 Locally Advanced Adenoid Cystic Carcinoma 6 144700 -NCIT:C157639 Recurrent Adenoid Cystic Carcinoma 5 144701 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 6 144702 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 6 144703 -NCIT:C8216 Recurrent Oral Cavity Adenoid Cystic Carcinoma 6 144704 -NCIT:C164013 Unresectable Adenoid Cystic Carcinoma 5 144705 -NCIT:C175340 Lacrimal Drainage System Adenoid Cystic Carcinoma 5 144706 -NCIT:C175668 Refractory Adenoid Cystic Carcinoma 5 144707 -NCIT:C40261 Vaginal Adenoid Cystic Carcinoma 5 144708 -NCIT:C40295 Bartholin Gland Adenoid Cystic Carcinoma 5 144709 -NCIT:C4471 Adenoid Cystic Skin Carcinoma 5 144710 -NCIT:C4540 Lacrimal Gland Adenoid Cystic Carcinoma 5 144711 -NCIT:C5130 Breast Adenoid Cystic Carcinoma 5 144712 -NCIT:C5342 Esophageal Adenoid Cystic Carcinoma 5 144713 -NCIT:C5539 Prostate Adenoid Cystic Carcinoma 5 144714 -NCIT:C5666 Lung Adenoid Cystic Carcinoma 5 144715 -NCIT:C5818 Pharyngeal Adenoid Cystic Carcinoma 5 144716 -NCIT:C173340 Nasopharyngeal Adenoid Cystic Carcinoma 6 144717 -NCIT:C6241 Oropharyngeal Adenoid Cystic Carcinoma 6 144718 -NCIT:C6019 Paranasal Sinus Adenoid Cystic Carcinoma 5 144719 -NCIT:C6238 Ethmoid Sinus Adenoid Cystic Carcinoma 6 144720 -NCIT:C6239 Maxillary Sinus Adenoid Cystic Carcinoma 6 144721 -NCIT:C6051 Tracheal Adenoid Cystic Carcinoma 5 144722 -NCIT:C6346 Cervical Adenoid Cystic Carcinoma 5 144723 -NCIT:C8026 Salivary Gland Adenoid Cystic Carcinoma 5 144724 -NCIT:C5905 Major Salivary Gland Adenoid Cystic Carcinoma 6 144725 -NCIT:C5935 Submandibular Gland Adenoid Cystic Carcinoma 7 144726 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 8 144727 -NCIT:C5937 Parotid Gland Adenoid Cystic Carcinoma 7 144728 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 8 144729 -NCIT:C5936 Minor Salivary Gland Adenoid Cystic Carcinoma 6 144730 -NCIT:C8179 Oral Cavity Adenoid Cystic Carcinoma 5 144731 -NCIT:C156089 Metastatic Oral Cavity Adenoid Cystic Carcinoma 6 144732 -NCIT:C171028 Tongue Adenoid Cystic Carcinoma 6 144733 -NCIT:C5991 Posterior Tongue Adenoid Cystic Carcinoma 7 144734 -NCIT:C6251 Anterior Tongue Adenoid Cystic Carcinoma 7 144735 -NCIT:C6213 Hard Palate Adenoid Cystic Carcinoma 6 144736 -NCIT:C8180 Floor of Mouth Adenoid Cystic Carcinoma 6 144737 -NCIT:C8200 Stage I Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 6 144738 -NCIT:C8204 Stage II Oral Cavity Adenoid Cystic Carcinoma 6 144739 -NCIT:C8208 Stage III Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 6 144740 -NCIT:C8212 Stage IV Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 6 144741 -NCIT:C5863 Stage IVA Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 7 144742 -NCIT:C5864 Stage IVB Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 7 144743 -NCIT:C5865 Stage IVC Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 7 144744 -NCIT:C8216 Recurrent Oral Cavity Adenoid Cystic Carcinoma 6 144745 -NCIT:C9462 Laryngeal Adenoid Cystic Carcinoma 5 144746 -NCIT:C35850 Head and Neck Carcinoma 4 144747 -NCIT:C126465 Metastatic Head and Neck Carcinoma 5 144748 -NCIT:C129861 Advanced Head and Neck Carcinoma 6 144749 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 7 144750 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 144751 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 144752 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 144753 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 144754 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 144755 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 144756 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 144757 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 7 144758 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 144759 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 8 144760 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 8 144761 -NCIT:C170784 Advanced Pharyngeal Carcinoma 7 144762 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 8 144763 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 144764 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 144765 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 144766 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 144767 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 144768 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 8 144769 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 144770 -NCIT:C177723 Advanced Salivary Gland Carcinoma 7 144771 -NCIT:C133193 Metastatic Thyroid Gland Carcinoma 6 144772 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 7 144773 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 144774 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 144775 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 7 144776 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 144777 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 8 144778 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 8 144779 -NCIT:C170831 Metastatic Thyroid Gland Anaplastic Carcinoma 7 144780 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 8 144781 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 8 144782 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 7 144783 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 144784 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 8 144785 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 8 144786 -NCIT:C173979 Metastatic Differentiated Thyroid Gland Carcinoma 7 144787 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 8 144788 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 9 144789 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 10 144790 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 8 144791 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 8 144792 -NCIT:C174046 Metastatic Poorly Differentiated Thyroid Gland Carcinoma 7 144793 -NCIT:C148153 Metastatic Head and Neck Squamous Cell Carcinoma 6 144794 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 7 144795 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 144796 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 144797 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 144798 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 144799 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 144800 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 144801 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 144802 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 7 144803 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 144804 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 144805 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 7 144806 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 144807 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 144808 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 7 144809 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 7 144810 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 144811 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 144812 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 144813 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 8 144814 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 9 144815 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 144816 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 144817 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 8 144818 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 144819 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 144820 -NCIT:C162882 Metastatic Sinonasal Squamous Cell Carcinoma 7 144821 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 144822 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 144823 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 144824 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 144825 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 144826 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 144827 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 144828 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 144829 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 144830 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 144831 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 7 144832 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 7 144833 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 8 144834 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 144835 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 144836 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 144837 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 8 144838 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 144839 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 144840 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 144841 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 144842 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 144843 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 8 144844 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 144845 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 144846 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 144847 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 144848 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 144849 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 144850 -NCIT:C153213 Locally Advanced Head and Neck Carcinoma 6 144851 -NCIT:C158464 Locally Advanced Salivary Gland Carcinoma 7 144852 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 7 144853 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 144854 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 144855 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 144856 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 8 144857 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 9 144858 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 144859 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 144860 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 8 144861 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 144862 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 144863 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 7 144864 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 7 144865 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 144866 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 7 144867 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 144868 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 8 144869 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 144870 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 144871 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 8 144872 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 144873 -NCIT:C165562 Locally Advanced Lip and Oral Cavity Carcinoma 7 144874 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 8 144875 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 144876 -NCIT:C165563 Locally Advanced Paranasal Sinus Carcinoma 7 144877 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 8 144878 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 7 144879 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 144880 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 8 144881 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 8 144882 -NCIT:C156080 Metastatic Pharyngeal Carcinoma 6 144883 -NCIT:C156079 Metastatic Nasopharyngeal Carcinoma 7 144884 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 8 144885 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 144886 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 144887 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 144888 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 144889 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 144890 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 8 144891 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 144892 -NCIT:C156081 Metastatic Hypopharyngeal Carcinoma 7 144893 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 8 144894 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 144895 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 144896 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 8 144897 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 144898 -NCIT:C156082 Metastatic Oropharyngeal Carcinoma 7 144899 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 8 144900 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 144901 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 144902 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 144903 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 8 144904 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 144905 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 144906 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 8 144907 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 144908 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 7 144909 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 144910 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 8 144911 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 144912 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 144913 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 8 144914 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 144915 -NCIT:C170784 Advanced Pharyngeal Carcinoma 7 144916 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 8 144917 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 144918 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 144919 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 144920 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 144921 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 144922 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 8 144923 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 144924 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 7 144925 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 8 144926 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 144927 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 144928 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 144929 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 8 144930 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 144931 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 144932 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 144933 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 144934 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 144935 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 8 144936 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 144937 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 144938 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 144939 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 144940 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 144941 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 144942 -NCIT:C156085 Metastatic Laryngeal Carcinoma 6 144943 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 7 144944 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 144945 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 144946 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 7 144947 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 144948 -NCIT:C156086 Metastatic Lip and Oral Cavity Carcinoma 6 144949 -NCIT:C156087 Metastatic Oral Cavity Carcinoma 7 144950 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 144951 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 144952 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 144953 -NCIT:C156089 Metastatic Oral Cavity Adenoid Cystic Carcinoma 8 144954 -NCIT:C156090 Metastatic Oral Cavity Mucoepidermoid Carcinoma 8 144955 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 8 144956 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 144957 -NCIT:C156088 Metastatic Lip Carcinoma 7 144958 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 144959 -NCIT:C165562 Locally Advanced Lip and Oral Cavity Carcinoma 7 144960 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 8 144961 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 144962 -NCIT:C158463 Metastatic Salivary Gland Carcinoma 6 144963 -NCIT:C158464 Locally Advanced Salivary Gland Carcinoma 7 144964 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 7 144965 -NCIT:C177723 Advanced Salivary Gland Carcinoma 7 144966 -NCIT:C5899 Stage IV Major Salivary Gland Carcinoma with Metastasis 7 144967 -NCIT:C9044 Metastatic Parathyroid Gland Carcinoma 6 144968 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 7 144969 -NCIT:C151907 Refractory Head and Neck Carcinoma 5 144970 -NCIT:C142983 Refractory Thyroid Gland Carcinoma 6 144971 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 7 144972 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 8 144973 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 8 144974 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 9 144975 -NCIT:C170832 Refractory Thyroid Gland Anaplastic Carcinoma 7 144976 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 7 144977 -NCIT:C148152 Refractory Head and Neck Squamous Cell Carcinoma 6 144978 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 7 144979 -NCIT:C148383 Refractory Laryngeal Squamous Cell Carcinoma 7 144980 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 7 144981 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 7 144982 -NCIT:C148401 Refractory Sinonasal Squamous Cell Carcinoma 7 144983 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 144984 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 144985 -NCIT:C148434 Refractory Nasopharyngeal Carcinoma 6 144986 -NCIT:C177722 Refractory Salivary Gland Carcinoma 6 144987 -NCIT:C179151 Platinum-Resistant Head and Neck Carcinoma 6 144988 -NCIT:C160978 Head and Neck Sebaceous Carcinoma 5 144989 -NCIT:C173648 Salivary Gland Sebaceous Carcinoma 6 144990 -NCIT:C160980 Head and Neck Neuroendocrine Carcinoma 5 144991 -NCIT:C160981 Head and Neck Small Cell Neuroendocrine Carcinoma 6 144992 -NCIT:C116318 Sinonasal Small Cell Neuroendocrine Carcinoma 7 144993 -NCIT:C35703 Salivary Gland Small Cell Neuroendocrine Carcinoma 7 144994 -NCIT:C5956 Minor Salivary Gland Small Cell Neuroendocrine Carcinoma 8 144995 -NCIT:C6025 Laryngeal Small Cell Neuroendocrine Carcinoma 7 144996 -NCIT:C160982 Head and Neck Large Cell Neuroendocrine Carcinoma 6 144997 -NCIT:C173091 Sinonasal Large Cell Neuroendocrine Carcinoma 7 144998 -NCIT:C173395 Laryngeal Large Cell Neuroendocrine Carcinoma 7 144999 -NCIT:C173650 Salivary Gland Large Cell Neuroendocrine Carcinoma 7 145000 -NCIT:C173089 Sinonasal Neuroendocrine Carcinoma 6 145001 -NCIT:C116318 Sinonasal Small Cell Neuroendocrine Carcinoma 7 145002 -NCIT:C173091 Sinonasal Large Cell Neuroendocrine Carcinoma 7 145003 -NCIT:C173390 Laryngeal Neuroendocrine Carcinoma 6 145004 -NCIT:C173395 Laryngeal Large Cell Neuroendocrine Carcinoma 7 145005 -NCIT:C6025 Laryngeal Small Cell Neuroendocrine Carcinoma 7 145006 -NCIT:C173587 Head and Neck Merkel Cell Carcinoma 6 145007 -NCIT:C173653 Salivary Gland Neuroendocrine Carcinoma 6 145008 -NCIT:C173650 Salivary Gland Large Cell Neuroendocrine Carcinoma 7 145009 -NCIT:C35703 Salivary Gland Small Cell Neuroendocrine Carcinoma 7 145010 -NCIT:C5956 Minor Salivary Gland Small Cell Neuroendocrine Carcinoma 8 145011 -NCIT:C3879 Thyroid Gland Medullary Carcinoma 6 145012 -NCIT:C123905 Childhood Thyroid Gland Medullary Carcinoma 7 145013 -NCIT:C141041 Thyroid Gland Medullary Carcinoma by AJCC v7 Stage 7 145014 -NCIT:C6133 Stage I Thyroid Gland Medullary Carcinoma AJCC v7 8 145015 -NCIT:C6134 Stage II Thyroid Gland Medullary Carcinoma AJCC v7 8 145016 -NCIT:C6135 Stage III Thyroid Gland Medullary Carcinoma AJCC v7 8 145017 -NCIT:C6136 Stage IV Thyroid Gland Medullary Carcinoma AJCC v7 8 145018 -NCIT:C87549 Stage IVA Thyroid Gland Medullary Carcinoma AJCC v7 9 145019 -NCIT:C87550 Stage IVB Thyroid Gland Medullary Carcinoma AJCC v7 9 145020 -NCIT:C87551 Stage IVC Thyroid Gland Medullary Carcinoma AJCC v7 9 145021 -NCIT:C141042 Thyroid Gland Medullary Carcinoma by AJCC v8 Stage 7 145022 -NCIT:C141043 Stage I Thyroid Gland Medullary Carcinoma AJCC v8 8 145023 -NCIT:C141044 Stage II Thyroid Gland Medullary Carcinoma AJCC v8 8 145024 -NCIT:C141045 Stage III Thyroid Gland Medullary Carcinoma AJCC v8 8 145025 -NCIT:C141046 Stage IV Thyroid Gland Medullary Carcinoma AJCC v8 8 145026 -NCIT:C141047 Stage IVA Thyroid Gland Medullary Carcinoma AJCC v8 9 145027 -NCIT:C141048 Stage IVB Thyroid Gland Medullary Carcinoma AJCC v8 9 145028 -NCIT:C141049 Stage IVC Thyroid Gland Medullary Carcinoma AJCC v8 9 145029 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 7 145030 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 8 145031 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 7 145032 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 145033 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 145034 -NCIT:C163974 Unresectable Thyroid Gland Medullary Carcinoma 7 145035 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 8 145036 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 7 145037 -NCIT:C4193 Thyroid Gland Medullary Carcinoma with Amyloid Stroma 7 145038 -NCIT:C46098 Sporadic Thyroid Gland Medullary Carcinoma 7 145039 -NCIT:C46103 Sporadic Thyroid Gland Micromedullary Carcinoma 8 145040 -NCIT:C46099 Hereditary Thyroid Gland Medullary Carcinoma 7 145041 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 8 145042 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 8 145043 -NCIT:C162569 Localized Head and Neck Carcinoma 5 145044 -NCIT:C7826 Localized Parathyroid Gland Carcinoma 6 145045 -NCIT:C165174 Unresectable Head and Neck Carcinoma 5 145046 -NCIT:C129784 Unresectable Thyroid Gland Carcinoma 6 145047 -NCIT:C163974 Unresectable Thyroid Gland Medullary Carcinoma 7 145048 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 8 145049 -NCIT:C168572 Unresectable Differentiated Thyroid Gland Carcinoma 7 145050 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 8 145051 -NCIT:C174571 Unresectable Thyroid Gland Follicular Carcinoma 8 145052 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 9 145053 -NCIT:C170833 Unresectable Thyroid Gland Anaplastic Carcinoma 7 145054 -NCIT:C174569 Unresectable Poorly Differentiated Thyroid Gland Carcinoma 7 145055 -NCIT:C136427 Unresectable Head and Neck Squamous Cell Carcinoma 6 145056 -NCIT:C162833 Unresectable Oropharyngeal Squamous Cell Carcinoma 7 145057 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 8 145058 -NCIT:C172644 Unresectable Oral Cavity Squamous Cell Carcinoma 7 145059 -NCIT:C172645 Unresectable Laryngeal Squamous Cell Carcinoma 7 145060 -NCIT:C172646 Unresectable Hypopharyngeal Squamous Cell Carcinoma 7 145061 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 7 145062 -NCIT:C172651 Unresectable Salivary Gland Squamous Cell Carcinoma 7 145063 -NCIT:C176513 Unresectable Sinonasal Squamous Cell Carcinoma 7 145064 -NCIT:C172648 Unresectable Paranasal Sinus Squamous Cell Carcinoma 8 145065 -NCIT:C176514 Unresectable Nasal Cavity Squamous Cell Carcinoma 8 145066 -NCIT:C165176 Unresectable Nasopharyngeal Carcinoma 6 145067 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 7 145068 -NCIT:C174034 Unresectable Salivary Gland Carcinoma 6 145069 -NCIT:C172651 Unresectable Salivary Gland Squamous Cell Carcinoma 7 145070 -NCIT:C173087 Head and Neck NUT Carcinoma 5 145071 -NCIT:C173088 Sinonasal NUT Carcinoma 6 145072 -NCIT:C190278 Childhood Head and Neck NUT Carcinoma 6 145073 -NCIT:C173588 Head and Neck Heterotopia-Associated Carcinoma 5 145074 -NCIT:C34447 Head and Neck Squamous Cell Carcinoma 5 145075 -NCIT:C102872 Pharyngeal Squamous Cell Carcinoma 6 145076 -NCIT:C167265 Nasopharyngeal Squamous Cell Carcinoma 7 145077 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 8 145078 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 145079 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 145080 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 145081 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 145082 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 145083 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 145084 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 145085 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 145086 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 8 145087 -NCIT:C54360 Nasopharyngeal Basaloid Carcinoma 8 145088 -NCIT:C7373 Nasopharyngeal Nonkeratinizing Carcinoma 8 145089 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 145090 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 145091 -NCIT:C54389 Nasopharyngeal Differentiated Carcinoma 9 145092 -NCIT:C8023 Nasopharyngeal Undifferentiated Carcinoma 9 145093 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 145094 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 10 145095 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 145096 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 145097 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 145098 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 145099 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 145100 -NCIT:C7992 Nasopharyngeal Keratinizing Squamous Cell Carcinoma 8 145101 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 145102 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 9 145103 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 145104 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 145105 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 145106 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 145107 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 145108 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 145109 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 145110 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 145111 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 7 145112 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 8 145113 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 145114 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 145115 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 145116 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 8 145117 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 145118 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 145119 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 145120 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 145121 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 145122 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 8 145123 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 145124 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 145125 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 145126 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 145127 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 145128 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 145129 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 7 145130 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 145131 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 145132 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 145133 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 145134 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 145135 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 145136 -NCIT:C35693 Posterior Pharyngeal Wall Squamous Cell Carcinoma 7 145137 -NCIT:C4043 Hypopharyngeal Squamous Cell Carcinoma 7 145138 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 8 145139 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 8 145140 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 145141 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 145142 -NCIT:C172646 Unresectable Hypopharyngeal Squamous Cell Carcinoma 8 145143 -NCIT:C4943 Pyriform Fossa Squamous Cell Carcinoma 8 145144 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 8 145145 -NCIT:C8185 Postcricoid Squamous Cell Carcinoma 8 145146 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 8 145147 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 8 145148 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 8 145149 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 8 145150 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 145151 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 145152 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 145153 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 145154 -NCIT:C8181 Oropharyngeal Squamous Cell Carcinoma 7 145155 -NCIT:C126750 Oropharyngeal Poorly Differentiated Carcinoma 8 145156 -NCIT:C126751 Oropharyngeal Basaloid Carcinoma 8 145157 -NCIT:C147906 Oropharyngeal p16INK4a-Negative Squamous Cell Carcinoma 8 145158 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 8 145159 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 8 145160 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 145161 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 145162 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 145163 -NCIT:C162787 Resectable Oropharyngeal Squamous Cell Carcinoma 8 145164 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 9 145165 -NCIT:C162833 Unresectable Oropharyngeal Squamous Cell Carcinoma 8 145166 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 9 145167 -NCIT:C173414 Oropharyngeal Human Papillomavirus-Negative Squamous Cell Carcinoma 8 145168 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 8 145169 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 8 145170 -NCIT:C68610 Oropharyngeal Undifferentiated Carcinoma 8 145171 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 9 145172 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 9 145173 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 9 145174 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 9 145175 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 145176 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 145177 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 145178 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 145179 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 9 145180 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 9 145181 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 9 145182 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 9 145183 -NCIT:C8183 Tonsillar Squamous Cell Carcinoma 8 145184 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 9 145185 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 8 145186 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 9 145187 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 8 145188 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 9 145189 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 8 145190 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 9 145191 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 8 145192 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 9 145193 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 145194 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 145195 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 145196 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 9 145197 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 145198 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 9 145199 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 145200 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 9 145201 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 145202 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 145203 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 145204 -NCIT:C87055 Oropharyngeal Human Papillomavirus-Positive Squamous Cell Carcinoma 8 145205 -NCIT:C132012 Resectable Head and Neck Squamous Cell Carcinoma 6 145206 -NCIT:C162787 Resectable Oropharyngeal Squamous Cell Carcinoma 7 145207 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 8 145208 -NCIT:C162943 Resectable Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 145209 -NCIT:C133252 Cutaneous Squamous Cell Carcinoma of the Head and Neck 6 145210 -NCIT:C133253 Cutaneous Squamous Cell Carcinoma of the Head and Neck by AJCC v8 Stage 7 145211 -NCIT:C133255 Stage 0 Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 145212 -NCIT:C133256 Stage I Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 145213 -NCIT:C133257 Stage II Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 145214 -NCIT:C133258 Stage III Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 145215 -NCIT:C133259 Stage IV Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 145216 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 145217 -NCIT:C162943 Resectable Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 145218 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 145219 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 145220 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 145221 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 145222 -NCIT:C6083 External Ear Squamous Cell Carcinoma 7 145223 -NCIT:C133709 Recurrent Head and Neck Squamous Cell Carcinoma 6 145224 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 145225 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 145226 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 145227 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 145228 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 145229 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 145230 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 145231 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 145232 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 145233 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 7 145234 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 145235 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 145236 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 145237 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 145238 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 145239 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 145240 -NCIT:C176682 Locally Recurrent Head and Neck Squamous Cell Carcinoma 7 145241 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 7 145242 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 145243 -NCIT:C136427 Unresectable Head and Neck Squamous Cell Carcinoma 6 145244 -NCIT:C162833 Unresectable Oropharyngeal Squamous Cell Carcinoma 7 145245 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 8 145246 -NCIT:C172644 Unresectable Oral Cavity Squamous Cell Carcinoma 7 145247 -NCIT:C172645 Unresectable Laryngeal Squamous Cell Carcinoma 7 145248 -NCIT:C172646 Unresectable Hypopharyngeal Squamous Cell Carcinoma 7 145249 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 7 145250 -NCIT:C172651 Unresectable Salivary Gland Squamous Cell Carcinoma 7 145251 -NCIT:C176513 Unresectable Sinonasal Squamous Cell Carcinoma 7 145252 -NCIT:C172648 Unresectable Paranasal Sinus Squamous Cell Carcinoma 8 145253 -NCIT:C176514 Unresectable Nasal Cavity Squamous Cell Carcinoma 8 145254 -NCIT:C148152 Refractory Head and Neck Squamous Cell Carcinoma 6 145255 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 7 145256 -NCIT:C148383 Refractory Laryngeal Squamous Cell Carcinoma 7 145257 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 7 145258 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 7 145259 -NCIT:C148401 Refractory Sinonasal Squamous Cell Carcinoma 7 145260 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 145261 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 145262 -NCIT:C148153 Metastatic Head and Neck Squamous Cell Carcinoma 6 145263 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 7 145264 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 145265 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 145266 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 145267 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 145268 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 145269 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 145270 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 145271 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 7 145272 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 145273 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 145274 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 7 145275 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 145276 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 145277 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 7 145278 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 7 145279 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 145280 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 145281 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 145282 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 8 145283 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 9 145284 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 145285 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 145286 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 8 145287 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 145288 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 145289 -NCIT:C162882 Metastatic Sinonasal Squamous Cell Carcinoma 7 145290 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 145291 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 145292 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 145293 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 145294 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 145295 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 145296 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 145297 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 145298 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 145299 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 145300 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 7 145301 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 7 145302 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 8 145303 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 145304 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 145305 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 145306 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 8 145307 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 145308 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 145309 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 145310 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 145311 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 145312 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 8 145313 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 145314 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 145315 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 145316 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 145317 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 145318 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 145319 -NCIT:C162770 ASPH-Positive Head and Neck Squamous Cell Carcinoma 6 145320 -NCIT:C171023 Human Papillomavirus-Related Mucosal Head and Neck Squamous Cell Carcinoma 6 145321 -NCIT:C173078 Sinonasal Human Papillomavirus-Related Carcinoma with Adenoid Cystic-Like Features 7 145322 -NCIT:C87055 Oropharyngeal Human Papillomavirus-Positive Squamous Cell Carcinoma 7 145323 -NCIT:C37290 Head and Neck Basaloid Carcinoma 6 145324 -NCIT:C126751 Oropharyngeal Basaloid Carcinoma 7 145325 -NCIT:C129873 Floor of Mouth Basaloid Squamous Cell Carcinoma 7 145326 -NCIT:C54334 Laryngeal Basaloid Carcinoma 7 145327 -NCIT:C54360 Nasopharyngeal Basaloid Carcinoma 7 145328 -NCIT:C4044 Laryngeal Squamous Cell Carcinoma 6 145329 -NCIT:C148383 Refractory Laryngeal Squamous Cell Carcinoma 7 145330 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 7 145331 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 145332 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 145333 -NCIT:C172645 Unresectable Laryngeal Squamous Cell Carcinoma 7 145334 -NCIT:C4945 Supraglottic Squamous Cell Carcinoma 7 145335 -NCIT:C181714 Epiglottic Squamous Cell Carcinoma 8 145336 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 9 145337 -NCIT:C8191 Supraglottic Verrucous Carcinoma 8 145338 -NCIT:C54334 Laryngeal Basaloid Carcinoma 7 145339 -NCIT:C54335 Laryngeal Papillary Squamous Cell Carcinoma 7 145340 -NCIT:C54336 Laryngeal Squamous Cell Carcinoma, Spindle Cell Variant 7 145341 -NCIT:C54337 Laryngeal Acantholytic Squamous Cell Carcinoma 7 145342 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 7 145343 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 8 145344 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 8 145345 -NCIT:C8186 Glottic Squamous Cell Carcinoma 7 145346 -NCIT:C8189 Glottis Verrucous Carcinoma 8 145347 -NCIT:C8187 Subglottic Squamous Cell Carcinoma 7 145348 -NCIT:C8190 Subglottic Verrucous Carcinoma 8 145349 -NCIT:C8188 Laryngeal Verrucous Carcinoma 7 145350 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 8 145351 -NCIT:C8189 Glottis Verrucous Carcinoma 8 145352 -NCIT:C8190 Subglottic Verrucous Carcinoma 8 145353 -NCIT:C8191 Supraglottic Verrucous Carcinoma 8 145354 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 145355 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 145356 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 145357 -NCIT:C8244 Stage IV Laryngeal Verrucous Carcinoma AJCC v7 8 145358 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 9 145359 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 9 145360 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 9 145361 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 145362 -NCIT:C8237 Stage I Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 7 145363 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 145364 -NCIT:C8239 Stage II Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 7 145365 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 145366 -NCIT:C8241 Stage III Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 7 145367 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 145368 -NCIT:C8243 Stage IV Laryngeal Squamous Cell Carcinoma AJCC v7 7 145369 -NCIT:C6122 Stage IVA Laryngeal Squamous Cell Carcinoma AJCC v7 8 145370 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 9 145371 -NCIT:C6123 Stage IVB Laryngeal Squamous Cell Carcinoma AJCC v7 8 145372 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 9 145373 -NCIT:C6124 Stage IVC Laryngeal Squamous Cell Carcinoma AJCC v7 8 145374 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 9 145375 -NCIT:C8244 Stage IV Laryngeal Verrucous Carcinoma AJCC v7 8 145376 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 9 145377 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 9 145378 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 9 145379 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 7 145380 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 145381 -NCIT:C42690 Lip and Oral Cavity Squamous Cell Carcinoma 6 145382 -NCIT:C115057 Stage I Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 145383 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 145384 -NCIT:C115058 Stage II Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 145385 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 145386 -NCIT:C115059 Stage III Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 145387 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 145388 -NCIT:C115060 Stage IV Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 145389 -NCIT:C115061 Stage IVA Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 145390 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 145391 -NCIT:C115062 Stage IVB Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 145392 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 145393 -NCIT:C115063 Stage IVC Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 145394 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 145395 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 145396 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 145397 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 145398 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 145399 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 145400 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 145401 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 145402 -NCIT:C4042 Lip Squamous Cell Carcinoma 7 145403 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 145404 -NCIT:C4833 Oral Cavity Squamous Cell Carcinoma 7 145405 -NCIT:C129857 Gingival Squamous Cell Carcinoma 8 145406 -NCIT:C129289 Gingival Spindle Cell Carcinoma 9 145407 -NCIT:C8171 Lower Gingival Squamous Cell Carcinoma 9 145408 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 10 145409 -NCIT:C8172 Retromolar Trigone Squamous Cell Carcinoma 9 145410 -NCIT:C8173 Upper Gingival Squamous Cell Carcinoma 9 145411 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 10 145412 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 8 145413 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 145414 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 145415 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 145416 -NCIT:C170774 Alveolar Ridge Squamous Cell Carcinoma 8 145417 -NCIT:C170775 Upper Alveolar Ridge Squamous Cell Carcinoma 9 145418 -NCIT:C170776 Lower Alveolar Ridge Squamous Cell Carcinoma 9 145419 -NCIT:C172644 Unresectable Oral Cavity Squamous Cell Carcinoma 8 145420 -NCIT:C4040 Buccal Mucosa Squamous Cell Carcinoma 8 145421 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 9 145422 -NCIT:C4041 Floor of Mouth Squamous Cell Carcinoma 8 145423 -NCIT:C129873 Floor of Mouth Basaloid Squamous Cell Carcinoma 9 145424 -NCIT:C4648 Tongue Squamous Cell Carcinoma 8 145425 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 145426 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 145427 -NCIT:C4649 Palate Squamous Cell Carcinoma 8 145428 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 145429 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 145430 -NCIT:C54295 Primary Intraosseous Squamous Cell Carcinoma 8 145431 -NCIT:C54303 Primary Intraosseous Squamous Cell Carcinoma Derived From Keratocystic Odontogenic Tumor 9 145432 -NCIT:C7491 Primary Intraosseous Squamous Cell Carcinoma-Solid Type 9 145433 -NCIT:C7498 Keratinizing Primary Intraosseous Squamous Cell Carcinoma-Solid Type 10 145434 -NCIT:C7499 Non-Keratinizing Primary Intraosseous Squamous Cell Carcinoma -Solid Type 10 145435 -NCIT:C7500 Primary Intraosseous Squamous Cell Carcinoma Derived From Odontogenic Cyst 9 145436 -NCIT:C6052 Stage 0 Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 145437 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 145438 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 145439 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 145440 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 145441 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 145442 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 145443 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 145444 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 145445 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 145446 -NCIT:C8174 Oral Cavity Verrucous Carcinoma 8 145447 -NCIT:C179894 Oral Cavity Carcinoma Cuniculatum 9 145448 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 9 145449 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 9 145450 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 9 145451 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 145452 -NCIT:C54283 Head and Neck Keratinizing Squamous Cell Carcinoma 6 145453 -NCIT:C173077 Sinonasal Keratinizing Squamous Cell Carcinoma 7 145454 -NCIT:C54284 Paranasal Sinus Keratinizing Squamous Cell Carcinoma 8 145455 -NCIT:C54285 Nasal Cavity Keratinizing Squamous Cell Carcinoma 8 145456 -NCIT:C6083 External Ear Squamous Cell Carcinoma 7 145457 -NCIT:C6086 Middle Ear Squamous Cell Carcinoma 7 145458 -NCIT:C7498 Keratinizing Primary Intraosseous Squamous Cell Carcinoma-Solid Type 7 145459 -NCIT:C7992 Nasopharyngeal Keratinizing Squamous Cell Carcinoma 7 145460 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 8 145461 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 8 145462 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 8 145463 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 8 145464 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 8 145465 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 8 145466 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 145467 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 145468 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 145469 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 8 145470 -NCIT:C68611 Sinonasal Squamous Cell Carcinoma 6 145471 -NCIT:C115070 Stage I Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 7 145472 -NCIT:C115071 Stage II Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 7 145473 -NCIT:C115072 Stage III Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 7 145474 -NCIT:C115073 Stage IV Sinonasal Squamous Cell Carcinoma AJCC v7 7 145475 -NCIT:C115074 Stage IVA Sinonasal Squamous Cell Carcinoma AJCC v7 8 145476 -NCIT:C115075 Stage IVB Sinonasal Squamous Cell Carcinoma AJCC v7 8 145477 -NCIT:C115076 Stage IVC Sinonasal Squamous Cell Carcinoma AJCC v7 8 145478 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 145479 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 145480 -NCIT:C148401 Refractory Sinonasal Squamous Cell Carcinoma 7 145481 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 145482 -NCIT:C162882 Metastatic Sinonasal Squamous Cell Carcinoma 7 145483 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 145484 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 145485 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 145486 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 145487 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 145488 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 145489 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 145490 -NCIT:C173077 Sinonasal Keratinizing Squamous Cell Carcinoma 7 145491 -NCIT:C54284 Paranasal Sinus Keratinizing Squamous Cell Carcinoma 8 145492 -NCIT:C54285 Nasal Cavity Keratinizing Squamous Cell Carcinoma 8 145493 -NCIT:C173079 Sinonasal Spindle Cell Squamous Cell Carcinoma 7 145494 -NCIT:C176513 Unresectable Sinonasal Squamous Cell Carcinoma 7 145495 -NCIT:C172648 Unresectable Paranasal Sinus Squamous Cell Carcinoma 8 145496 -NCIT:C176514 Unresectable Nasal Cavity Squamous Cell Carcinoma 8 145497 -NCIT:C54287 Sinonasal Non-Keratinizing Squamous Cell Carcinoma 7 145498 -NCIT:C173078 Sinonasal Human Papillomavirus-Related Carcinoma with Adenoid Cystic-Like Features 8 145499 -NCIT:C173080 Sinonasal Lymphoepithelial Carcinoma 8 145500 -NCIT:C8192 Nasal Cavity Squamous Cell Carcinoma 7 145501 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 145502 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 145503 -NCIT:C176514 Unresectable Nasal Cavity Squamous Cell Carcinoma 8 145504 -NCIT:C54285 Nasal Cavity Keratinizing Squamous Cell Carcinoma 8 145505 -NCIT:C8193 Paranasal Sinus Squamous Cell Carcinoma 7 145506 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 145507 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 145508 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 145509 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 145510 -NCIT:C172648 Unresectable Paranasal Sinus Squamous Cell Carcinoma 8 145511 -NCIT:C54284 Paranasal Sinus Keratinizing Squamous Cell Carcinoma 8 145512 -NCIT:C6064 Maxillary Sinus Squamous Cell Carcinoma 8 145513 -NCIT:C6065 Ethmoid Sinus Squamous Cell Carcinoma 8 145514 -NCIT:C6066 Sphenoid Sinus Squamous Cell Carcinoma 8 145515 -NCIT:C6067 Frontal Sinus Squamous Cell Carcinoma 8 145516 -NCIT:C7991 Salivary Gland Squamous Cell Carcinoma 6 145517 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 7 145518 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 145519 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 145520 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 145521 -NCIT:C172651 Unresectable Salivary Gland Squamous Cell Carcinoma 7 145522 -NCIT:C181161 Major Salivary Gland Squamous Cell Carcinoma 7 145523 -NCIT:C5942 Parotid Gland Squamous Cell Carcinoma 8 145524 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 9 145525 -NCIT:C5943 Submandibular Gland Squamous Cell Carcinoma 8 145526 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 9 145527 -NCIT:C5959 Minor Salivary Gland Squamous Cell Carcinoma 7 145528 -NCIT:C8022 Salivary Gland Poorly Differentiated Squamous Cell Carcinoma 7 145529 -NCIT:C54262 Ear Carcinoma 5 145530 -NCIT:C6081 External Ear Carcinoma 6 145531 -NCIT:C4176 Ceruminous Adenocarcinoma 7 145532 -NCIT:C6082 External Ear Basal Cell Carcinoma 7 145533 -NCIT:C6083 External Ear Squamous Cell Carcinoma 7 145534 -NCIT:C6089 Middle Ear Carcinoma 6 145535 -NCIT:C6086 Middle Ear Squamous Cell Carcinoma 7 145536 -NCIT:C6848 Middle Ear Adenocarcinoma 7 145537 -NCIT:C91741 Middle Ear Carcinoma In Situ 7 145538 -NCIT:C54293 Sinonasal Carcinoma 5 145539 -NCIT:C133074 Sinonasal Cancer by AJCC v8 Stage 6 145540 -NCIT:C133076 Stage I Sinonasal Cancer AJCC v8 7 145541 -NCIT:C133077 Stage II Sinonasal Cancer AJCC v8 7 145542 -NCIT:C133078 Stage III Sinonasal Cancer AJCC v8 7 145543 -NCIT:C133079 Stage IV Sinonasal Cancer AJCC v8 7 145544 -NCIT:C133080 Stage IVA Sinonasal Cancer AJCC v8 8 145545 -NCIT:C133081 Stage IVB Sinonasal Cancer AJCC v8 8 145546 -NCIT:C133082 Stage IVC Sinonasal Cancer AJCC v8 8 145547 -NCIT:C87498 Stage 0 Sinonasal Cancer AJCC v6, v7, and v8 7 145548 -NCIT:C4589 Stage 0 Nasal Cavity Cancer AJCC v6, v7, and v8 8 145549 -NCIT:C94768 Stage 0 Paranasal Sinus Cancer AJCC v6, v7, and v8 8 145550 -NCIT:C154324 Sinonasal Poorly Differentiated Carcinoma 6 145551 -NCIT:C173088 Sinonasal NUT Carcinoma 7 145552 -NCIT:C160976 Sinonasal Adenocarcinoma 6 145553 -NCIT:C161007 Sinonasal Adenocarcinoma, Salivary-Type 7 145554 -NCIT:C161008 Sinonasal Adenocarcinoma, Non-Salivary-Type 7 145555 -NCIT:C116316 Sinonasal Adenocarcinoma, Intestinal-Type 8 145556 -NCIT:C160984 Sinonasal Adenocarcinoma, Intestinal-Type with Papillary Pattern 9 145557 -NCIT:C160986 Sinonasal Adenocarcinoma, Intestinal-Type with Colonic Pattern 9 145558 -NCIT:C160987 Sinonasal Adenocarcinoma, Intestinal-Type with Solid Pattern 9 145559 -NCIT:C160995 Sinonasal Adenocarcinoma, Intestinal-Type with Mucinous Pattern 9 145560 -NCIT:C161000 Sinonasal Adenocarcinoma, Intestinal-Type with Mixed Pattern 9 145561 -NCIT:C160977 Sinonasal Adenocarcinoma, Non-Intestinal-Type 8 145562 -NCIT:C6015 Nasal Cavity Adenocarcinoma 7 145563 -NCIT:C6017 Paranasal Sinus Adenocarcinoma 7 145564 -NCIT:C6237 Ethmoid Sinus Adenocarcinoma 8 145565 -NCIT:C6240 Maxillary Sinus Adenocarcinoma 8 145566 -NCIT:C173089 Sinonasal Neuroendocrine Carcinoma 6 145567 -NCIT:C116318 Sinonasal Small Cell Neuroendocrine Carcinoma 7 145568 -NCIT:C173091 Sinonasal Large Cell Neuroendocrine Carcinoma 7 145569 -NCIT:C180670 Low Grade Papillary Schneiderian Carcinoma 6 145570 -NCIT:C54294 Sinonasal Undifferentiated Carcinoma 6 145571 -NCIT:C6014 Paranasal Sinus Carcinoma 6 145572 -NCIT:C118818 Childhood Paranasal Sinus Carcinoma 7 145573 -NCIT:C165563 Locally Advanced Paranasal Sinus Carcinoma 7 145574 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 8 145575 -NCIT:C6006 Stage I Paranasal Sinus Cancer 7 145576 -NCIT:C6007 Stage II Paranasal Sinus Cancer AJCC v6 and v7 7 145577 -NCIT:C6008 Stage III Paranasal Sinus Cancer AJCC v6 and v7 7 145578 -NCIT:C6009 Stage IV Paranasal Sinus Cancer AJCC v7 7 145579 -NCIT:C6070 Stage IVA Paranasal Sinus Cancer AJCC v7 8 145580 -NCIT:C6071 Stage IVB Paranasal Sinus Cancer AJCC v7 8 145581 -NCIT:C6072 Stage IVC Paranasal Sinus Cancer AJCC v7 8 145582 -NCIT:C6017 Paranasal Sinus Adenocarcinoma 7 145583 -NCIT:C6237 Ethmoid Sinus Adenocarcinoma 8 145584 -NCIT:C6240 Maxillary Sinus Adenocarcinoma 8 145585 -NCIT:C6018 Paranasal Sinus Mucoepidermoid Carcinoma 7 145586 -NCIT:C6019 Paranasal Sinus Adenoid Cystic Carcinoma 7 145587 -NCIT:C6238 Ethmoid Sinus Adenoid Cystic Carcinoma 8 145588 -NCIT:C6239 Maxillary Sinus Adenoid Cystic Carcinoma 8 145589 -NCIT:C8193 Paranasal Sinus Squamous Cell Carcinoma 7 145590 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 145591 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 145592 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 145593 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 145594 -NCIT:C172648 Unresectable Paranasal Sinus Squamous Cell Carcinoma 8 145595 -NCIT:C54284 Paranasal Sinus Keratinizing Squamous Cell Carcinoma 8 145596 -NCIT:C6064 Maxillary Sinus Squamous Cell Carcinoma 8 145597 -NCIT:C6065 Ethmoid Sinus Squamous Cell Carcinoma 8 145598 -NCIT:C6066 Sphenoid Sinus Squamous Cell Carcinoma 8 145599 -NCIT:C6067 Frontal Sinus Squamous Cell Carcinoma 8 145600 -NCIT:C9332 Maxillary Sinus Carcinoma 7 145601 -NCIT:C6064 Maxillary Sinus Squamous Cell Carcinoma 8 145602 -NCIT:C6239 Maxillary Sinus Adenoid Cystic Carcinoma 8 145603 -NCIT:C6240 Maxillary Sinus Adenocarcinoma 8 145604 -NCIT:C94768 Stage 0 Paranasal Sinus Cancer AJCC v6, v7, and v8 7 145605 -NCIT:C67558 Recurrent Sinonasal Carcinoma 6 145606 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 145607 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 145608 -NCIT:C68611 Sinonasal Squamous Cell Carcinoma 6 145609 -NCIT:C115070 Stage I Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 7 145610 -NCIT:C115071 Stage II Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 7 145611 -NCIT:C115072 Stage III Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 7 145612 -NCIT:C115073 Stage IV Sinonasal Squamous Cell Carcinoma AJCC v7 7 145613 -NCIT:C115074 Stage IVA Sinonasal Squamous Cell Carcinoma AJCC v7 8 145614 -NCIT:C115075 Stage IVB Sinonasal Squamous Cell Carcinoma AJCC v7 8 145615 -NCIT:C115076 Stage IVC Sinonasal Squamous Cell Carcinoma AJCC v7 8 145616 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 145617 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 145618 -NCIT:C148401 Refractory Sinonasal Squamous Cell Carcinoma 7 145619 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 145620 -NCIT:C162882 Metastatic Sinonasal Squamous Cell Carcinoma 7 145621 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 145622 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 145623 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 145624 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 145625 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 145626 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 145627 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 145628 -NCIT:C173077 Sinonasal Keratinizing Squamous Cell Carcinoma 7 145629 -NCIT:C54284 Paranasal Sinus Keratinizing Squamous Cell Carcinoma 8 145630 -NCIT:C54285 Nasal Cavity Keratinizing Squamous Cell Carcinoma 8 145631 -NCIT:C173079 Sinonasal Spindle Cell Squamous Cell Carcinoma 7 145632 -NCIT:C176513 Unresectable Sinonasal Squamous Cell Carcinoma 7 145633 -NCIT:C172648 Unresectable Paranasal Sinus Squamous Cell Carcinoma 8 145634 -NCIT:C176514 Unresectable Nasal Cavity Squamous Cell Carcinoma 8 145635 -NCIT:C54287 Sinonasal Non-Keratinizing Squamous Cell Carcinoma 7 145636 -NCIT:C173078 Sinonasal Human Papillomavirus-Related Carcinoma with Adenoid Cystic-Like Features 8 145637 -NCIT:C173080 Sinonasal Lymphoepithelial Carcinoma 8 145638 -NCIT:C8192 Nasal Cavity Squamous Cell Carcinoma 7 145639 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 145640 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 145641 -NCIT:C176514 Unresectable Nasal Cavity Squamous Cell Carcinoma 8 145642 -NCIT:C54285 Nasal Cavity Keratinizing Squamous Cell Carcinoma 8 145643 -NCIT:C8193 Paranasal Sinus Squamous Cell Carcinoma 7 145644 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 145645 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 145646 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 145647 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 145648 -NCIT:C172648 Unresectable Paranasal Sinus Squamous Cell Carcinoma 8 145649 -NCIT:C54284 Paranasal Sinus Keratinizing Squamous Cell Carcinoma 8 145650 -NCIT:C6064 Maxillary Sinus Squamous Cell Carcinoma 8 145651 -NCIT:C6065 Ethmoid Sinus Squamous Cell Carcinoma 8 145652 -NCIT:C6066 Sphenoid Sinus Squamous Cell Carcinoma 8 145653 -NCIT:C6067 Frontal Sinus Squamous Cell Carcinoma 8 145654 -NCIT:C90528 Sinonasal Cancer by AJCC v6 Stage 6 145655 -NCIT:C67554 Stage I Sinonasal Cancer AJCC v6 and v7 7 145656 -NCIT:C115070 Stage I Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 8 145657 -NCIT:C6006 Stage I Paranasal Sinus Cancer 8 145658 -NCIT:C6013 Stage I Nasal Cavity Cancer AJCC v6 and v7 8 145659 -NCIT:C67555 Stage II Sinonasal Cancer AJCC v6 and v7 7 145660 -NCIT:C115071 Stage II Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 8 145661 -NCIT:C6007 Stage II Paranasal Sinus Cancer AJCC v6 and v7 8 145662 -NCIT:C6012 Stage II Nasal Cavity Cancer AJCC v6 and v7 8 145663 -NCIT:C67556 Stage III Sinonasal Cancer AJCC v6 and v7 7 145664 -NCIT:C115072 Stage III Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 8 145665 -NCIT:C6008 Stage III Paranasal Sinus Cancer AJCC v6 and v7 8 145666 -NCIT:C6011 Stage III Nasal Cavity Cancer AJCC v6 and v7 8 145667 -NCIT:C67557 Stage IV Sinonasal Cancer AJCC v6 7 145668 -NCIT:C87498 Stage 0 Sinonasal Cancer AJCC v6, v7, and v8 7 145669 -NCIT:C4589 Stage 0 Nasal Cavity Cancer AJCC v6, v7, and v8 8 145670 -NCIT:C94768 Stage 0 Paranasal Sinus Cancer AJCC v6, v7, and v8 8 145671 -NCIT:C91255 Sinonasal Cancer by AJCC v7 Stage 6 145672 -NCIT:C67554 Stage I Sinonasal Cancer AJCC v6 and v7 7 145673 -NCIT:C115070 Stage I Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 8 145674 -NCIT:C6006 Stage I Paranasal Sinus Cancer 8 145675 -NCIT:C6013 Stage I Nasal Cavity Cancer AJCC v6 and v7 8 145676 -NCIT:C67555 Stage II Sinonasal Cancer AJCC v6 and v7 7 145677 -NCIT:C115071 Stage II Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 8 145678 -NCIT:C6007 Stage II Paranasal Sinus Cancer AJCC v6 and v7 8 145679 -NCIT:C6012 Stage II Nasal Cavity Cancer AJCC v6 and v7 8 145680 -NCIT:C67556 Stage III Sinonasal Cancer AJCC v6 and v7 7 145681 -NCIT:C115072 Stage III Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 8 145682 -NCIT:C6008 Stage III Paranasal Sinus Cancer AJCC v6 and v7 8 145683 -NCIT:C6011 Stage III Nasal Cavity Cancer AJCC v6 and v7 8 145684 -NCIT:C87498 Stage 0 Sinonasal Cancer AJCC v6, v7, and v8 7 145685 -NCIT:C4589 Stage 0 Nasal Cavity Cancer AJCC v6, v7, and v8 8 145686 -NCIT:C94768 Stage 0 Paranasal Sinus Cancer AJCC v6, v7, and v8 8 145687 -NCIT:C89117 Stage IV Sinonasal Cancer AJCC v7 7 145688 -NCIT:C115073 Stage IV Sinonasal Squamous Cell Carcinoma AJCC v7 8 145689 -NCIT:C115074 Stage IVA Sinonasal Squamous Cell Carcinoma AJCC v7 9 145690 -NCIT:C115075 Stage IVB Sinonasal Squamous Cell Carcinoma AJCC v7 9 145691 -NCIT:C115076 Stage IVC Sinonasal Squamous Cell Carcinoma AJCC v7 9 145692 -NCIT:C6009 Stage IV Paranasal Sinus Cancer AJCC v7 8 145693 -NCIT:C6070 Stage IVA Paranasal Sinus Cancer AJCC v7 9 145694 -NCIT:C6071 Stage IVB Paranasal Sinus Cancer AJCC v7 9 145695 -NCIT:C6072 Stage IVC Paranasal Sinus Cancer AJCC v7 9 145696 -NCIT:C6010 Stage IV Nasal Cavity Cancer 8 145697 -NCIT:C87501 Stage IVA Sinonasal Cancer AJCC v7 8 145698 -NCIT:C115074 Stage IVA Sinonasal Squamous Cell Carcinoma AJCC v7 9 145699 -NCIT:C6070 Stage IVA Paranasal Sinus Cancer AJCC v7 9 145700 -NCIT:C87502 Stage IVB Sinonasal Cancer AJCC v7 8 145701 -NCIT:C115075 Stage IVB Sinonasal Squamous Cell Carcinoma AJCC v7 9 145702 -NCIT:C6071 Stage IVB Paranasal Sinus Cancer AJCC v7 9 145703 -NCIT:C87503 Stage IVC Sinonasal Cancer AJCC v7 8 145704 -NCIT:C115076 Stage IVC Sinonasal Squamous Cell Carcinoma AJCC v7 9 145705 -NCIT:C6072 Stage IVC Paranasal Sinus Cancer AJCC v7 9 145706 -NCIT:C9336 Nasal Cavity Carcinoma 6 145707 -NCIT:C118817 Childhood Nasal Cavity Carcinoma 7 145708 -NCIT:C27389 Carcinoma Arising in Nasal Papillomatosis 7 145709 -NCIT:C4589 Stage 0 Nasal Cavity Cancer AJCC v6, v7, and v8 7 145710 -NCIT:C6010 Stage IV Nasal Cavity Cancer 7 145711 -NCIT:C6011 Stage III Nasal Cavity Cancer AJCC v6 and v7 7 145712 -NCIT:C6012 Stage II Nasal Cavity Cancer AJCC v6 and v7 7 145713 -NCIT:C6013 Stage I Nasal Cavity Cancer AJCC v6 and v7 7 145714 -NCIT:C6015 Nasal Cavity Adenocarcinoma 7 145715 -NCIT:C8192 Nasal Cavity Squamous Cell Carcinoma 7 145716 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 145717 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 145718 -NCIT:C176514 Unresectable Nasal Cavity Squamous Cell Carcinoma 8 145719 -NCIT:C54285 Nasal Cavity Keratinizing Squamous Cell Carcinoma 8 145720 -NCIT:C6077 Neck Carcinoma 5 145721 -NCIT:C35506 Throat Carcinoma 6 145722 -NCIT:C4855 Laryngeal Carcinoma 7 145723 -NCIT:C118811 Childhood Laryngeal Carcinoma 8 145724 -NCIT:C133156 Laryngeal Cancer by AJCC v8 Stage 8 145725 -NCIT:C133158 Stage I Laryngeal Cancer AJCC v8 9 145726 -NCIT:C133159 Stage II Laryngeal Cancer AJCC v8 9 145727 -NCIT:C133160 Stage III Laryngeal Cancer AJCC v8 9 145728 -NCIT:C133161 Stage IV Laryngeal Cancer AJCC v8 9 145729 -NCIT:C133162 Stage IVA Laryngeal Cancer AJCC v8 10 145730 -NCIT:C133163 Stage IVB Laryngeal Cancer AJCC v8 10 145731 -NCIT:C133164 Stage IVC Laryngeal Cancer AJCC v8 10 145732 -NCIT:C9100 Stage 0 Laryngeal Cancer AJCC v6, v7, and V8 9 145733 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 145734 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 11 145735 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 11 145736 -NCIT:C156085 Metastatic Laryngeal Carcinoma 8 145737 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 9 145738 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 10 145739 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 10 145740 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 9 145741 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 10 145742 -NCIT:C173390 Laryngeal Neuroendocrine Carcinoma 8 145743 -NCIT:C173395 Laryngeal Large Cell Neuroendocrine Carcinoma 9 145744 -NCIT:C6025 Laryngeal Small Cell Neuroendocrine Carcinoma 9 145745 -NCIT:C27929 Alcohol-Related Laryngeal Carcinoma 8 145746 -NCIT:C4034 Recurrent Laryngeal Carcinoma 8 145747 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 9 145748 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 10 145749 -NCIT:C4044 Laryngeal Squamous Cell Carcinoma 8 145750 -NCIT:C148383 Refractory Laryngeal Squamous Cell Carcinoma 9 145751 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 9 145752 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 10 145753 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 10 145754 -NCIT:C172645 Unresectable Laryngeal Squamous Cell Carcinoma 9 145755 -NCIT:C4945 Supraglottic Squamous Cell Carcinoma 9 145756 -NCIT:C181714 Epiglottic Squamous Cell Carcinoma 10 145757 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 11 145758 -NCIT:C8191 Supraglottic Verrucous Carcinoma 10 145759 -NCIT:C54334 Laryngeal Basaloid Carcinoma 9 145760 -NCIT:C54335 Laryngeal Papillary Squamous Cell Carcinoma 9 145761 -NCIT:C54336 Laryngeal Squamous Cell Carcinoma, Spindle Cell Variant 9 145762 -NCIT:C54337 Laryngeal Acantholytic Squamous Cell Carcinoma 9 145763 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 9 145764 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 10 145765 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 10 145766 -NCIT:C8186 Glottic Squamous Cell Carcinoma 9 145767 -NCIT:C8189 Glottis Verrucous Carcinoma 10 145768 -NCIT:C8187 Subglottic Squamous Cell Carcinoma 9 145769 -NCIT:C8190 Subglottic Verrucous Carcinoma 10 145770 -NCIT:C8188 Laryngeal Verrucous Carcinoma 9 145771 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 10 145772 -NCIT:C8189 Glottis Verrucous Carcinoma 10 145773 -NCIT:C8190 Subglottic Verrucous Carcinoma 10 145774 -NCIT:C8191 Supraglottic Verrucous Carcinoma 10 145775 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 145776 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 145777 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 145778 -NCIT:C8244 Stage IV Laryngeal Verrucous Carcinoma AJCC v7 10 145779 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 11 145780 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 11 145781 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 11 145782 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 10 145783 -NCIT:C8237 Stage I Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 9 145784 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 145785 -NCIT:C8239 Stage II Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 9 145786 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 145787 -NCIT:C8241 Stage III Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 9 145788 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 145789 -NCIT:C8243 Stage IV Laryngeal Squamous Cell Carcinoma AJCC v7 9 145790 -NCIT:C6122 Stage IVA Laryngeal Squamous Cell Carcinoma AJCC v7 10 145791 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 11 145792 -NCIT:C6123 Stage IVB Laryngeal Squamous Cell Carcinoma AJCC v7 10 145793 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 11 145794 -NCIT:C6124 Stage IVC Laryngeal Squamous Cell Carcinoma AJCC v7 10 145795 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 11 145796 -NCIT:C8244 Stage IV Laryngeal Verrucous Carcinoma AJCC v7 10 145797 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 11 145798 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 11 145799 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 11 145800 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 9 145801 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 10 145802 -NCIT:C4923 Glottis Carcinoma 8 145803 -NCIT:C8186 Glottic Squamous Cell Carcinoma 9 145804 -NCIT:C8189 Glottis Verrucous Carcinoma 10 145805 -NCIT:C54338 Laryngeal Adenosquamous Carcinoma 8 145806 -NCIT:C54339 Laryngeal Undifferentiated Carcinoma 8 145807 -NCIT:C54341 Laryngeal Lymphoepithelial Carcinoma 9 145808 -NCIT:C54342 Laryngeal Giant Cell Carcinoma 9 145809 -NCIT:C5972 Subglottic Carcinoma 8 145810 -NCIT:C8187 Subglottic Squamous Cell Carcinoma 9 145811 -NCIT:C8190 Subglottic Verrucous Carcinoma 10 145812 -NCIT:C5973 Supraglottic Carcinoma 8 145813 -NCIT:C35697 Epiglottic Carcinoma 9 145814 -NCIT:C181714 Epiglottic Squamous Cell Carcinoma 10 145815 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 11 145816 -NCIT:C4945 Supraglottic Squamous Cell Carcinoma 9 145817 -NCIT:C181714 Epiglottic Squamous Cell Carcinoma 10 145818 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 11 145819 -NCIT:C8191 Supraglottic Verrucous Carcinoma 10 145820 -NCIT:C90527 Laryngeal Cancer by AJCC v6 Stage 8 145821 -NCIT:C6868 Stage IV Laryngeal Cancer AJCC v6 9 145822 -NCIT:C8041 Stage I Laryngeal Cancer AJCC v6 and v7 9 145823 -NCIT:C8237 Stage I Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 10 145824 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 11 145825 -NCIT:C8042 Stage II Laryngeal Cancer AJCC v6 and v7 9 145826 -NCIT:C8239 Stage II Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 10 145827 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 11 145828 -NCIT:C8043 Stage III Laryngeal Cancer AJCC v6 and v7 9 145829 -NCIT:C8241 Stage III Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 10 145830 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 11 145831 -NCIT:C9100 Stage 0 Laryngeal Cancer AJCC v6, v7, and V8 9 145832 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 145833 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 11 145834 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 11 145835 -NCIT:C91256 Laryngeal Cancer by AJCC v7 Stage 8 145836 -NCIT:C8041 Stage I Laryngeal Cancer AJCC v6 and v7 9 145837 -NCIT:C8237 Stage I Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 10 145838 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 11 145839 -NCIT:C8042 Stage II Laryngeal Cancer AJCC v6 and v7 9 145840 -NCIT:C8239 Stage II Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 10 145841 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 11 145842 -NCIT:C8043 Stage III Laryngeal Cancer AJCC v6 and v7 9 145843 -NCIT:C8241 Stage III Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 10 145844 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 11 145845 -NCIT:C89091 Stage IV Laryngeal Cancer AJCC v7 9 145846 -NCIT:C6003 Stage IVC Laryngeal Cancer AJCC v7 10 145847 -NCIT:C6124 Stage IVC Laryngeal Squamous Cell Carcinoma AJCC v7 11 145848 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 12 145849 -NCIT:C6004 Stage IVB Laryngeal Cancer AJCC v7 10 145850 -NCIT:C6123 Stage IVB Laryngeal Squamous Cell Carcinoma AJCC v7 11 145851 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 12 145852 -NCIT:C6005 Stage IVA Laryngeal Cancer AJCC v7 10 145853 -NCIT:C6122 Stage IVA Laryngeal Squamous Cell Carcinoma AJCC v7 11 145854 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 12 145855 -NCIT:C8243 Stage IV Laryngeal Squamous Cell Carcinoma AJCC v7 10 145856 -NCIT:C6122 Stage IVA Laryngeal Squamous Cell Carcinoma AJCC v7 11 145857 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 12 145858 -NCIT:C6123 Stage IVB Laryngeal Squamous Cell Carcinoma AJCC v7 11 145859 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 12 145860 -NCIT:C6124 Stage IVC Laryngeal Squamous Cell Carcinoma AJCC v7 11 145861 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 12 145862 -NCIT:C8244 Stage IV Laryngeal Verrucous Carcinoma AJCC v7 11 145863 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 12 145864 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 12 145865 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 12 145866 -NCIT:C9100 Stage 0 Laryngeal Cancer AJCC v6, v7, and V8 9 145867 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 145868 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 11 145869 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 11 145870 -NCIT:C9462 Laryngeal Adenoid Cystic Carcinoma 8 145871 -NCIT:C9463 Laryngeal Mucoepidermoid Carcinoma 8 145872 -NCIT:C9466 Pharyngeal Carcinoma 7 145873 -NCIT:C102872 Pharyngeal Squamous Cell Carcinoma 8 145874 -NCIT:C167265 Nasopharyngeal Squamous Cell Carcinoma 9 145875 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 10 145876 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 145877 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 145878 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 11 145879 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 11 145880 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 145881 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 10 145882 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 145883 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 11 145884 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 10 145885 -NCIT:C54360 Nasopharyngeal Basaloid Carcinoma 10 145886 -NCIT:C7373 Nasopharyngeal Nonkeratinizing Carcinoma 10 145887 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 11 145888 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 145889 -NCIT:C54389 Nasopharyngeal Differentiated Carcinoma 11 145890 -NCIT:C8023 Nasopharyngeal Undifferentiated Carcinoma 11 145891 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 145892 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 12 145893 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 12 145894 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 12 145895 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 12 145896 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 12 145897 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 12 145898 -NCIT:C7992 Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 145899 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 145900 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 11 145901 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 145902 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 145903 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 145904 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 145905 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 145906 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 145907 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 145908 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 145909 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 9 145910 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 10 145911 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 145912 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 145913 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 145914 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 10 145915 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 145916 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 145917 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 11 145918 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 11 145919 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 145920 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 10 145921 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 145922 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 145923 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 10 145924 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 145925 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 145926 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 145927 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 9 145928 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 10 145929 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 145930 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 11 145931 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 10 145932 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 11 145933 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 10 145934 -NCIT:C35693 Posterior Pharyngeal Wall Squamous Cell Carcinoma 9 145935 -NCIT:C4043 Hypopharyngeal Squamous Cell Carcinoma 9 145936 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 10 145937 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 10 145938 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 145939 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 145940 -NCIT:C172646 Unresectable Hypopharyngeal Squamous Cell Carcinoma 10 145941 -NCIT:C4943 Pyriform Fossa Squamous Cell Carcinoma 10 145942 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 145943 -NCIT:C8185 Postcricoid Squamous Cell Carcinoma 10 145944 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 145945 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 145946 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 145947 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 145948 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 145949 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 145950 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 145951 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 10 145952 -NCIT:C8181 Oropharyngeal Squamous Cell Carcinoma 9 145953 -NCIT:C126750 Oropharyngeal Poorly Differentiated Carcinoma 10 145954 -NCIT:C126751 Oropharyngeal Basaloid Carcinoma 10 145955 -NCIT:C147906 Oropharyngeal p16INK4a-Negative Squamous Cell Carcinoma 10 145956 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 10 145957 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 10 145958 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 145959 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 145960 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 145961 -NCIT:C162787 Resectable Oropharyngeal Squamous Cell Carcinoma 10 145962 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 11 145963 -NCIT:C162833 Unresectable Oropharyngeal Squamous Cell Carcinoma 10 145964 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 11 145965 -NCIT:C173414 Oropharyngeal Human Papillomavirus-Negative Squamous Cell Carcinoma 10 145966 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 10 145967 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 145968 -NCIT:C68610 Oropharyngeal Undifferentiated Carcinoma 10 145969 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 145970 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 145971 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 145972 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 145973 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 145974 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 145975 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 145976 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 11 145977 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 145978 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 11 145979 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 11 145980 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 11 145981 -NCIT:C8183 Tonsillar Squamous Cell Carcinoma 10 145982 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 11 145983 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 145984 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 145985 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 145986 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 145987 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 145988 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 145989 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 145990 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 145991 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 145992 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 145993 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 145994 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 145995 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 145996 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 145997 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 145998 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 145999 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 146000 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 10 146001 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 11 146002 -NCIT:C87055 Oropharyngeal Human Papillomavirus-Positive Squamous Cell Carcinoma 10 146003 -NCIT:C132814 Pharyngeal Carcinoma by AJCC v8 Stage 8 146004 -NCIT:C132816 Nasopharyngeal Carcinoma by AJCC v8 Stage 9 146005 -NCIT:C132817 Stage I Nasopharyngeal Carcinoma AJCC v8 10 146006 -NCIT:C132818 Stage II Nasopharyngeal Carcinoma AJCC v8 10 146007 -NCIT:C132819 Stage III Nasopharyngeal Carcinoma AJCC v8 10 146008 -NCIT:C132820 Stage IV Nasopharyngeal Carcinoma AJCC v8 10 146009 -NCIT:C132821 Stage IVA Nasopharyngeal Carcinoma AJCC v8 11 146010 -NCIT:C132822 Stage IVB Nasopharyngeal Carcinoma AJCC v8 11 146011 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 10 146012 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 11 146013 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 11 146014 -NCIT:C132882 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Stage 9 146015 -NCIT:C132883 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Clinical Stage 10 146016 -NCIT:C132885 Clinical Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 146017 -NCIT:C132886 Clinical Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 146018 -NCIT:C132891 Clinical Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 146019 -NCIT:C132893 Clinical Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 146020 -NCIT:C132884 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Pathologic Stage 10 146021 -NCIT:C132898 Pathologic Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 146022 -NCIT:C132899 Pathologic Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 146023 -NCIT:C132900 Pathologic Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 146024 -NCIT:C132901 Pathologic Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 146025 -NCIT:C132994 Oropharyngeal (p16-Negative) Carcinoma by AJCC v8 Stage 9 146026 -NCIT:C132995 Stage 0 Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 146027 -NCIT:C132996 Stage I Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 146028 -NCIT:C132997 Stage II Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 146029 -NCIT:C132998 Stage III Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 146030 -NCIT:C132999 Stage IV Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 146031 -NCIT:C133000 Stage IVA Oropharyngeal (p16-Negative) Carcinoma AJCC v8 11 146032 -NCIT:C133001 Stage IVB Oropharyngeal (p16-Negative) Carcinoma AJCC v8 11 146033 -NCIT:C133002 Stage IVC Oropharyngeal (p16-Negative) Carcinoma AJCC v8 11 146034 -NCIT:C133003 Hypopharyngeal Carcinoma by AJCC v8 Stage 9 146035 -NCIT:C133005 Stage I Hypopharyngeal Carcinoma AJCC v8 10 146036 -NCIT:C133006 Stage II Hypopharyngeal Carcinoma AJCC v8 10 146037 -NCIT:C133007 Stage III Hypopharyngeal Carcinoma AJCC v8 10 146038 -NCIT:C133008 Stage IV Hypopharyngeal Carcinoma AJCC v8 10 146039 -NCIT:C133009 Stage IVA Hypopharyngeal Carcinoma AJCC v8 11 146040 -NCIT:C133010 Stage IVB Hypopharyngeal Carcinoma AJCC v8 11 146041 -NCIT:C133011 Stage IVC Hypopharyngeal Carcinoma AJCC v8 11 146042 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 10 146043 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 11 146044 -NCIT:C156080 Metastatic Pharyngeal Carcinoma 8 146045 -NCIT:C156079 Metastatic Nasopharyngeal Carcinoma 9 146046 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 10 146047 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 146048 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 146049 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 11 146050 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 11 146051 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 146052 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 10 146053 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 146054 -NCIT:C156081 Metastatic Hypopharyngeal Carcinoma 9 146055 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 10 146056 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 146057 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 146058 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 10 146059 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 146060 -NCIT:C156082 Metastatic Oropharyngeal Carcinoma 9 146061 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 10 146062 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 146063 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 146064 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 146065 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 10 146066 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 146067 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 146068 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 10 146069 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 146070 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 9 146071 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 146072 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 10 146073 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 146074 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 146075 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 10 146076 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 146077 -NCIT:C170784 Advanced Pharyngeal Carcinoma 9 146078 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 10 146079 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 146080 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 10 146081 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 146082 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 146083 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 146084 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 10 146085 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 146086 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 9 146087 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 10 146088 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 146089 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 146090 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 146091 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 10 146092 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 146093 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 146094 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 11 146095 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 11 146096 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 146097 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 10 146098 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 146099 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 146100 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 10 146101 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 146102 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 146103 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 146104 -NCIT:C35692 Posterior Pharyngeal Wall Carcinoma 8 146105 -NCIT:C35693 Posterior Pharyngeal Wall Squamous Cell Carcinoma 9 146106 -NCIT:C3871 Nasopharyngeal Carcinoma 8 146107 -NCIT:C132816 Nasopharyngeal Carcinoma by AJCC v8 Stage 9 146108 -NCIT:C132817 Stage I Nasopharyngeal Carcinoma AJCC v8 10 146109 -NCIT:C132818 Stage II Nasopharyngeal Carcinoma AJCC v8 10 146110 -NCIT:C132819 Stage III Nasopharyngeal Carcinoma AJCC v8 10 146111 -NCIT:C132820 Stage IV Nasopharyngeal Carcinoma AJCC v8 10 146112 -NCIT:C132821 Stage IVA Nasopharyngeal Carcinoma AJCC v8 11 146113 -NCIT:C132822 Stage IVB Nasopharyngeal Carcinoma AJCC v8 11 146114 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 10 146115 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 11 146116 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 11 146117 -NCIT:C148434 Refractory Nasopharyngeal Carcinoma 9 146118 -NCIT:C156079 Metastatic Nasopharyngeal Carcinoma 9 146119 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 10 146120 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 146121 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 146122 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 11 146123 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 11 146124 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 146125 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 10 146126 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 146127 -NCIT:C165176 Unresectable Nasopharyngeal Carcinoma 9 146128 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 10 146129 -NCIT:C167265 Nasopharyngeal Squamous Cell Carcinoma 9 146130 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 10 146131 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 146132 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 146133 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 11 146134 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 11 146135 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 146136 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 10 146137 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 146138 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 11 146139 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 10 146140 -NCIT:C54360 Nasopharyngeal Basaloid Carcinoma 10 146141 -NCIT:C7373 Nasopharyngeal Nonkeratinizing Carcinoma 10 146142 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 11 146143 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 146144 -NCIT:C54389 Nasopharyngeal Differentiated Carcinoma 11 146145 -NCIT:C8023 Nasopharyngeal Undifferentiated Carcinoma 11 146146 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 146147 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 12 146148 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 12 146149 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 12 146150 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 12 146151 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 12 146152 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 12 146153 -NCIT:C7992 Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 146154 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 146155 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 11 146156 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 146157 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 146158 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 146159 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 146160 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 146161 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 146162 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 146163 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 146164 -NCIT:C173340 Nasopharyngeal Adenoid Cystic Carcinoma 9 146165 -NCIT:C190276 Childhood Nasopharyngeal Carcinoma 9 146166 -NCIT:C54400 Nasopharyngeal Papillary Adenocarcinoma 9 146167 -NCIT:C90522 Nasopharyngeal Carcinoma by AJCC v6 Stage 9 146168 -NCIT:C7395 Stage I Nasopharyngeal Carcinoma AJCC v6 10 146169 -NCIT:C7396 Stage III Nasopharyngeal Carcinoma AJCC v6 10 146170 -NCIT:C7397 Stage IV Nasopharyngeal Carcinoma AJCC v6 10 146171 -NCIT:C7920 Stage II Nasopharyngeal Carcinoma AJCC v6 10 146172 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 10 146173 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 11 146174 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 11 146175 -NCIT:C91244 Nasopharyngeal Carcinoma by AJCC v7 Stage 9 146176 -NCIT:C88981 Stage I Nasopharyngeal Carcinoma AJCC v7 10 146177 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 146178 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 146179 -NCIT:C88982 Stage II Nasopharyngeal Carcinoma AJCC v7 10 146180 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 146181 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 146182 -NCIT:C88983 Stage III Nasopharyngeal Carcinoma AJCC v7 10 146183 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 146184 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 146185 -NCIT:C88984 Stage IV Nasopharyngeal Carcinoma AJCC v7 10 146186 -NCIT:C5995 Stage IVC Nasopharyngeal Carcinoma AJCC v7 11 146187 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 146188 -NCIT:C5996 Stage IVB Nasopharyngeal Carcinoma AJCC v7 11 146189 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 146190 -NCIT:C5997 Stage IVA Nasopharyngeal Carcinoma AJCC v7 11 146191 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 146192 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 146193 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 146194 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 146195 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 146196 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 146197 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 10 146198 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 11 146199 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 11 146200 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 9 146201 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 10 146202 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 146203 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 11 146204 -NCIT:C4942 Stage 0 Pharyngeal Cancer 8 146205 -NCIT:C132995 Stage 0 Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 146206 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 9 146207 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 146208 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 9 146209 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 10 146210 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 146211 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 9 146212 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 146213 -NCIT:C5103 Recurrent Pharyngeal Carcinoma 8 146214 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 9 146215 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 10 146216 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 146217 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 11 146218 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 10 146219 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 11 146220 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 10 146221 -NCIT:C8051 Recurrent Oropharyngeal Carcinoma 9 146222 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 10 146223 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 11 146224 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 9 146225 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 10 146226 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 146227 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 11 146228 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 9 146229 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 10 146230 -NCIT:C5818 Pharyngeal Adenoid Cystic Carcinoma 8 146231 -NCIT:C173340 Nasopharyngeal Adenoid Cystic Carcinoma 9 146232 -NCIT:C6241 Oropharyngeal Adenoid Cystic Carcinoma 9 146233 -NCIT:C8768 Stage I Pharyngeal Cancer 8 146234 -NCIT:C132817 Stage I Nasopharyngeal Carcinoma AJCC v8 9 146235 -NCIT:C132885 Clinical Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 9 146236 -NCIT:C132898 Pathologic Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 9 146237 -NCIT:C132996 Stage I Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 146238 -NCIT:C133005 Stage I Hypopharyngeal Carcinoma AJCC v8 9 146239 -NCIT:C7395 Stage I Nasopharyngeal Carcinoma AJCC v6 9 146240 -NCIT:C8038 Stage I Hypopharyngeal Carcinoma AJCC v6 9 146241 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 9 146242 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 146243 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 146244 -NCIT:C88981 Stage I Nasopharyngeal Carcinoma AJCC v7 9 146245 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 146246 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 146247 -NCIT:C89045 Stage I Hypopharyngeal Carcinoma AJCC v7 9 146248 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 146249 -NCIT:C8769 Stage II Pharyngeal Cancer 8 146250 -NCIT:C132818 Stage II Nasopharyngeal Carcinoma AJCC v8 9 146251 -NCIT:C132886 Clinical Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 9 146252 -NCIT:C132899 Pathologic Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 9 146253 -NCIT:C132997 Stage II Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 146254 -NCIT:C133006 Stage II Hypopharyngeal Carcinoma AJCC v8 9 146255 -NCIT:C7920 Stage II Nasopharyngeal Carcinoma AJCC v6 9 146256 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 9 146257 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 146258 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 9 146259 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 146260 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 146261 -NCIT:C88982 Stage II Nasopharyngeal Carcinoma AJCC v7 9 146262 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 146263 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 146264 -NCIT:C8770 Stage III Pharyngeal Cancer 8 146265 -NCIT:C132819 Stage III Nasopharyngeal Carcinoma AJCC v8 9 146266 -NCIT:C132891 Clinical Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 9 146267 -NCIT:C132900 Pathologic Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 9 146268 -NCIT:C132998 Stage III Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 146269 -NCIT:C133007 Stage III Hypopharyngeal Carcinoma AJCC v8 9 146270 -NCIT:C7396 Stage III Nasopharyngeal Carcinoma AJCC v6 9 146271 -NCIT:C8040 Stage III Hypopharyngeal Carcinoma AJCC v6 9 146272 -NCIT:C8050 Stage III Oropharyngeal Carcinoma AJCC v6 9 146273 -NCIT:C88983 Stage III Nasopharyngeal Carcinoma AJCC v7 9 146274 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 146275 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 146276 -NCIT:C89021 Stage III Oropharyngeal Carcinoma AJCC v7 9 146277 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 146278 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 146279 -NCIT:C89046 Stage III Hypopharyngeal Carcinoma AJCC v7 9 146280 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 146281 -NCIT:C8771 Stage IV Pharyngeal Cancer 8 146282 -NCIT:C132820 Stage IV Nasopharyngeal Carcinoma AJCC v8 9 146283 -NCIT:C132821 Stage IVA Nasopharyngeal Carcinoma AJCC v8 10 146284 -NCIT:C132822 Stage IVB Nasopharyngeal Carcinoma AJCC v8 10 146285 -NCIT:C132893 Clinical Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 9 146286 -NCIT:C132901 Pathologic Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 9 146287 -NCIT:C132999 Stage IV Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 146288 -NCIT:C133000 Stage IVA Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 146289 -NCIT:C133001 Stage IVB Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 146290 -NCIT:C133002 Stage IVC Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 146291 -NCIT:C133008 Stage IV Hypopharyngeal Carcinoma AJCC v8 9 146292 -NCIT:C133009 Stage IVA Hypopharyngeal Carcinoma AJCC v8 10 146293 -NCIT:C133010 Stage IVB Hypopharyngeal Carcinoma AJCC v8 10 146294 -NCIT:C133011 Stage IVC Hypopharyngeal Carcinoma AJCC v8 10 146295 -NCIT:C6000 Stage IVA Pharyngeal Cancer 9 146296 -NCIT:C132821 Stage IVA Nasopharyngeal Carcinoma AJCC v8 10 146297 -NCIT:C133000 Stage IVA Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 146298 -NCIT:C133009 Stage IVA Hypopharyngeal Carcinoma AJCC v8 10 146299 -NCIT:C5985 Stage IVA Oropharyngeal Carcinoma AJCC v7 10 146300 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 146301 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 146302 -NCIT:C5992 Stage IVA Hypopharyngeal Carcinoma AJCC v7 10 146303 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 146304 -NCIT:C5997 Stage IVA Nasopharyngeal Carcinoma AJCC v7 10 146305 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 146306 -NCIT:C6001 Stage IVB Pharyngeal Cancer 9 146307 -NCIT:C132822 Stage IVB Nasopharyngeal Carcinoma AJCC v8 10 146308 -NCIT:C133001 Stage IVB Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 146309 -NCIT:C133010 Stage IVB Hypopharyngeal Carcinoma AJCC v8 10 146310 -NCIT:C5986 Stage IVB Oropharyngeal Carcinoma AJCC v7 10 146311 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 146312 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 146313 -NCIT:C5993 Stage IVB Hypopharyngeal Carcinoma AJCC v7 10 146314 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 146315 -NCIT:C5996 Stage IVB Nasopharyngeal Carcinoma AJCC v7 10 146316 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 146317 -NCIT:C6002 Stage IVC Pharyngeal Cancer 9 146318 -NCIT:C133002 Stage IVC Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 146319 -NCIT:C133011 Stage IVC Hypopharyngeal Carcinoma AJCC v8 10 146320 -NCIT:C5987 Stage IVC Oropharyngeal Carcinoma AJCC v7 10 146321 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 146322 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 146323 -NCIT:C5994 Stage IVC Hypopharyngeal Carcinoma AJCC v7 10 146324 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 146325 -NCIT:C5995 Stage IVC Nasopharyngeal Carcinoma AJCC v7 10 146326 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 146327 -NCIT:C7397 Stage IV Nasopharyngeal Carcinoma AJCC v6 9 146328 -NCIT:C8533 Stage IV Hypopharyngeal Carcinoma AJCC v6 9 146329 -NCIT:C88984 Stage IV Nasopharyngeal Carcinoma AJCC v7 9 146330 -NCIT:C5995 Stage IVC Nasopharyngeal Carcinoma AJCC v7 10 146331 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 146332 -NCIT:C5996 Stage IVB Nasopharyngeal Carcinoma AJCC v7 10 146333 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 146334 -NCIT:C5997 Stage IVA Nasopharyngeal Carcinoma AJCC v7 10 146335 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 146336 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 146337 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 146338 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 146339 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 146340 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 146341 -NCIT:C89023 Stage IV Oropharyngeal Carcinoma AJCC v7 9 146342 -NCIT:C5985 Stage IVA Oropharyngeal Carcinoma AJCC v7 10 146343 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 146344 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 146345 -NCIT:C5986 Stage IVB Oropharyngeal Carcinoma AJCC v7 10 146346 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 146347 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 146348 -NCIT:C5987 Stage IVC Oropharyngeal Carcinoma AJCC v7 10 146349 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 146350 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 146351 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 146352 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 146353 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 146354 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 146355 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 146356 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 146357 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 146358 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 146359 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 146360 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 146361 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 146362 -NCIT:C89047 Stage IV Hypopharyngeal Carcinoma AJCC v7 9 146363 -NCIT:C5992 Stage IVA Hypopharyngeal Carcinoma AJCC v7 10 146364 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 146365 -NCIT:C5993 Stage IVB Hypopharyngeal Carcinoma AJCC v7 10 146366 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 146367 -NCIT:C5994 Stage IVC Hypopharyngeal Carcinoma AJCC v7 10 146368 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 146369 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 146370 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 146371 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 146372 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 146373 -NCIT:C9218 Stage IV Oropharyngeal Carcinoma AJCC v6 9 146374 -NCIT:C90525 Pharyngeal Carcinoma by AJCC v6 Stage 8 146375 -NCIT:C90522 Nasopharyngeal Carcinoma by AJCC v6 Stage 9 146376 -NCIT:C7395 Stage I Nasopharyngeal Carcinoma AJCC v6 10 146377 -NCIT:C7396 Stage III Nasopharyngeal Carcinoma AJCC v6 10 146378 -NCIT:C7397 Stage IV Nasopharyngeal Carcinoma AJCC v6 10 146379 -NCIT:C7920 Stage II Nasopharyngeal Carcinoma AJCC v6 10 146380 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 10 146381 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 11 146382 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 11 146383 -NCIT:C90523 Oropharyngeal Carcinoma by AJCC v6 Stage 9 146384 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 10 146385 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 146386 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 10 146387 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 146388 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 12 146389 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 10 146390 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 146391 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 12 146392 -NCIT:C8050 Stage III Oropharyngeal Carcinoma AJCC v6 10 146393 -NCIT:C9218 Stage IV Oropharyngeal Carcinoma AJCC v6 10 146394 -NCIT:C90524 Hypopharyngeal Carcinoma by AJCC v6 Stage 9 146395 -NCIT:C8038 Stage I Hypopharyngeal Carcinoma AJCC v6 10 146396 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 10 146397 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 146398 -NCIT:C8040 Stage III Hypopharyngeal Carcinoma AJCC v6 10 146399 -NCIT:C8533 Stage IV Hypopharyngeal Carcinoma AJCC v6 10 146400 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 10 146401 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 11 146402 -NCIT:C9105 Oropharyngeal Carcinoma 8 146403 -NCIT:C132882 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Stage 9 146404 -NCIT:C132883 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Clinical Stage 10 146405 -NCIT:C132885 Clinical Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 146406 -NCIT:C132886 Clinical Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 146407 -NCIT:C132891 Clinical Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 146408 -NCIT:C132893 Clinical Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 146409 -NCIT:C132884 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Pathologic Stage 10 146410 -NCIT:C132898 Pathologic Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 146411 -NCIT:C132899 Pathologic Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 146412 -NCIT:C132900 Pathologic Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 146413 -NCIT:C132901 Pathologic Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 146414 -NCIT:C132994 Oropharyngeal (p16-Negative) Carcinoma by AJCC v8 Stage 9 146415 -NCIT:C132995 Stage 0 Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 146416 -NCIT:C132996 Stage I Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 146417 -NCIT:C132997 Stage II Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 146418 -NCIT:C132998 Stage III Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 146419 -NCIT:C132999 Stage IV Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 146420 -NCIT:C133000 Stage IVA Oropharyngeal (p16-Negative) Carcinoma AJCC v8 11 146421 -NCIT:C133001 Stage IVB Oropharyngeal (p16-Negative) Carcinoma AJCC v8 11 146422 -NCIT:C133002 Stage IVC Oropharyngeal (p16-Negative) Carcinoma AJCC v8 11 146423 -NCIT:C156082 Metastatic Oropharyngeal Carcinoma 9 146424 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 10 146425 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 146426 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 146427 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 146428 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 10 146429 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 146430 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 146431 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 10 146432 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 146433 -NCIT:C173576 Oropharyngeal Polymorphous Adenocarcinoma 9 146434 -NCIT:C4825 Tonsillar Carcinoma 9 146435 -NCIT:C8183 Tonsillar Squamous Cell Carcinoma 10 146436 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 11 146437 -NCIT:C6241 Oropharyngeal Adenoid Cystic Carcinoma 9 146438 -NCIT:C8051 Recurrent Oropharyngeal Carcinoma 9 146439 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 10 146440 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 11 146441 -NCIT:C8181 Oropharyngeal Squamous Cell Carcinoma 9 146442 -NCIT:C126750 Oropharyngeal Poorly Differentiated Carcinoma 10 146443 -NCIT:C126751 Oropharyngeal Basaloid Carcinoma 10 146444 -NCIT:C147906 Oropharyngeal p16INK4a-Negative Squamous Cell Carcinoma 10 146445 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 10 146446 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 10 146447 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 146448 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 146449 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 146450 -NCIT:C162787 Resectable Oropharyngeal Squamous Cell Carcinoma 10 146451 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 11 146452 -NCIT:C162833 Unresectable Oropharyngeal Squamous Cell Carcinoma 10 146453 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 11 146454 -NCIT:C173414 Oropharyngeal Human Papillomavirus-Negative Squamous Cell Carcinoma 10 146455 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 10 146456 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 146457 -NCIT:C68610 Oropharyngeal Undifferentiated Carcinoma 10 146458 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 146459 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 146460 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 146461 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 146462 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 146463 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 146464 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 146465 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 11 146466 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 146467 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 11 146468 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 11 146469 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 11 146470 -NCIT:C8183 Tonsillar Squamous Cell Carcinoma 10 146471 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 11 146472 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 146473 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 146474 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 146475 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 146476 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 146477 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 146478 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 146479 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 146480 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 146481 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 146482 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 146483 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 146484 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 146485 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 146486 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 146487 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 146488 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 146489 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 10 146490 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 11 146491 -NCIT:C87055 Oropharyngeal Human Papillomavirus-Positive Squamous Cell Carcinoma 10 146492 -NCIT:C8395 Soft Palate Carcinoma 9 146493 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 10 146494 -NCIT:C90523 Oropharyngeal Carcinoma by AJCC v6 Stage 9 146495 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 10 146496 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 146497 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 10 146498 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 146499 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 12 146500 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 10 146501 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 146502 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 12 146503 -NCIT:C8050 Stage III Oropharyngeal Carcinoma AJCC v6 10 146504 -NCIT:C9218 Stage IV Oropharyngeal Carcinoma AJCC v6 10 146505 -NCIT:C91248 Oropharyngeal Carcinoma by AJCC v7 Stage 9 146506 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 10 146507 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 146508 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 10 146509 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 146510 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 12 146511 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 10 146512 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 146513 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 12 146514 -NCIT:C89021 Stage III Oropharyngeal Carcinoma AJCC v7 10 146515 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 146516 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 146517 -NCIT:C89023 Stage IV Oropharyngeal Carcinoma AJCC v7 10 146518 -NCIT:C5985 Stage IVA Oropharyngeal Carcinoma AJCC v7 11 146519 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 146520 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 146521 -NCIT:C5986 Stage IVB Oropharyngeal Carcinoma AJCC v7 11 146522 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 146523 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 146524 -NCIT:C5987 Stage IVC Oropharyngeal Carcinoma AJCC v7 11 146525 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 146526 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 146527 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 146528 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 146529 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 146530 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 146531 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 146532 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 146533 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 146534 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 146535 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 146536 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 146537 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 146538 -NCIT:C91252 Pharyngeal Carcinoma by AJCC v7 Stage 8 146539 -NCIT:C91244 Nasopharyngeal Carcinoma by AJCC v7 Stage 9 146540 -NCIT:C88981 Stage I Nasopharyngeal Carcinoma AJCC v7 10 146541 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 146542 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 146543 -NCIT:C88982 Stage II Nasopharyngeal Carcinoma AJCC v7 10 146544 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 146545 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 146546 -NCIT:C88983 Stage III Nasopharyngeal Carcinoma AJCC v7 10 146547 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 146548 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 146549 -NCIT:C88984 Stage IV Nasopharyngeal Carcinoma AJCC v7 10 146550 -NCIT:C5995 Stage IVC Nasopharyngeal Carcinoma AJCC v7 11 146551 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 146552 -NCIT:C5996 Stage IVB Nasopharyngeal Carcinoma AJCC v7 11 146553 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 146554 -NCIT:C5997 Stage IVA Nasopharyngeal Carcinoma AJCC v7 11 146555 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 146556 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 146557 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 146558 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 146559 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 146560 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 146561 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 10 146562 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 11 146563 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 11 146564 -NCIT:C91248 Oropharyngeal Carcinoma by AJCC v7 Stage 9 146565 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 10 146566 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 146567 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 10 146568 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 146569 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 12 146570 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 10 146571 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 146572 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 12 146573 -NCIT:C89021 Stage III Oropharyngeal Carcinoma AJCC v7 10 146574 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 146575 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 146576 -NCIT:C89023 Stage IV Oropharyngeal Carcinoma AJCC v7 10 146577 -NCIT:C5985 Stage IVA Oropharyngeal Carcinoma AJCC v7 11 146578 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 146579 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 146580 -NCIT:C5986 Stage IVB Oropharyngeal Carcinoma AJCC v7 11 146581 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 146582 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 146583 -NCIT:C5987 Stage IVC Oropharyngeal Carcinoma AJCC v7 11 146584 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 146585 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 146586 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 146587 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 146588 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 146589 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 146590 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 146591 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 146592 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 146593 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 146594 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 146595 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 146596 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 146597 -NCIT:C91251 Hypopharyngeal Carcinoma by AJCC v7 Stage 9 146598 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 10 146599 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 146600 -NCIT:C89045 Stage I Hypopharyngeal Carcinoma AJCC v7 10 146601 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 146602 -NCIT:C89046 Stage III Hypopharyngeal Carcinoma AJCC v7 10 146603 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 146604 -NCIT:C89047 Stage IV Hypopharyngeal Carcinoma AJCC v7 10 146605 -NCIT:C5992 Stage IVA Hypopharyngeal Carcinoma AJCC v7 11 146606 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 146607 -NCIT:C5993 Stage IVB Hypopharyngeal Carcinoma AJCC v7 11 146608 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 146609 -NCIT:C5994 Stage IVC Hypopharyngeal Carcinoma AJCC v7 11 146610 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 146611 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 146612 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 146613 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 146614 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 146615 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 10 146616 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 11 146617 -NCIT:C9465 Hypopharyngeal Carcinoma 8 146618 -NCIT:C133003 Hypopharyngeal Carcinoma by AJCC v8 Stage 9 146619 -NCIT:C133005 Stage I Hypopharyngeal Carcinoma AJCC v8 10 146620 -NCIT:C133006 Stage II Hypopharyngeal Carcinoma AJCC v8 10 146621 -NCIT:C133007 Stage III Hypopharyngeal Carcinoma AJCC v8 10 146622 -NCIT:C133008 Stage IV Hypopharyngeal Carcinoma AJCC v8 10 146623 -NCIT:C133009 Stage IVA Hypopharyngeal Carcinoma AJCC v8 11 146624 -NCIT:C133010 Stage IVB Hypopharyngeal Carcinoma AJCC v8 11 146625 -NCIT:C133011 Stage IVC Hypopharyngeal Carcinoma AJCC v8 11 146626 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 10 146627 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 11 146628 -NCIT:C156081 Metastatic Hypopharyngeal Carcinoma 9 146629 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 10 146630 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 146631 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 146632 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 10 146633 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 146634 -NCIT:C4043 Hypopharyngeal Squamous Cell Carcinoma 9 146635 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 10 146636 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 10 146637 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 146638 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 146639 -NCIT:C172646 Unresectable Hypopharyngeal Squamous Cell Carcinoma 10 146640 -NCIT:C4943 Pyriform Fossa Squamous Cell Carcinoma 10 146641 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 146642 -NCIT:C8185 Postcricoid Squamous Cell Carcinoma 10 146643 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 146644 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 146645 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 146646 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 146647 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 146648 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 146649 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 146650 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 10 146651 -NCIT:C6700 Pyriform Fossa Carcinoma 9 146652 -NCIT:C4943 Pyriform Fossa Squamous Cell Carcinoma 10 146653 -NCIT:C8595 Postcricoid Carcinoma 9 146654 -NCIT:C8185 Postcricoid Squamous Cell Carcinoma 10 146655 -NCIT:C90524 Hypopharyngeal Carcinoma by AJCC v6 Stage 9 146656 -NCIT:C8038 Stage I Hypopharyngeal Carcinoma AJCC v6 10 146657 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 10 146658 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 146659 -NCIT:C8040 Stage III Hypopharyngeal Carcinoma AJCC v6 10 146660 -NCIT:C8533 Stage IV Hypopharyngeal Carcinoma AJCC v6 10 146661 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 10 146662 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 11 146663 -NCIT:C91251 Hypopharyngeal Carcinoma by AJCC v7 Stage 9 146664 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 10 146665 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 146666 -NCIT:C89045 Stage I Hypopharyngeal Carcinoma AJCC v7 10 146667 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 146668 -NCIT:C89046 Stage III Hypopharyngeal Carcinoma AJCC v7 10 146669 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 146670 -NCIT:C89047 Stage IV Hypopharyngeal Carcinoma AJCC v7 10 146671 -NCIT:C5992 Stage IVA Hypopharyngeal Carcinoma AJCC v7 11 146672 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 146673 -NCIT:C5993 Stage IVB Hypopharyngeal Carcinoma AJCC v7 11 146674 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 146675 -NCIT:C5994 Stage IVC Hypopharyngeal Carcinoma AJCC v7 11 146676 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 146677 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 146678 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 146679 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 146680 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 146681 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 10 146682 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 11 146683 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 9 146684 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 10 146685 -NCIT:C4815 Thyroid Gland Carcinoma 6 146686 -NCIT:C118827 Childhood Thyroid Gland Carcinoma 7 146687 -NCIT:C123903 Childhood Thyroid Gland Papillary Carcinoma 8 146688 -NCIT:C123904 Childhood Thyroid Gland Follicular Carcinoma 8 146689 -NCIT:C123905 Childhood Thyroid Gland Medullary Carcinoma 8 146690 -NCIT:C190064 Childhood Thyroid Gland Spindle Epithelial Tumor with Thymus-Like Elements 8 146691 -NCIT:C126408 Thyroid Gland Cribriform Morular Carcinoma 7 146692 -NCIT:C129784 Unresectable Thyroid Gland Carcinoma 7 146693 -NCIT:C163974 Unresectable Thyroid Gland Medullary Carcinoma 8 146694 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 9 146695 -NCIT:C168572 Unresectable Differentiated Thyroid Gland Carcinoma 8 146696 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 9 146697 -NCIT:C174571 Unresectable Thyroid Gland Follicular Carcinoma 9 146698 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 10 146699 -NCIT:C170833 Unresectable Thyroid Gland Anaplastic Carcinoma 8 146700 -NCIT:C174569 Unresectable Poorly Differentiated Thyroid Gland Carcinoma 8 146701 -NCIT:C133193 Metastatic Thyroid Gland Carcinoma 7 146702 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 8 146703 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 146704 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 146705 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 8 146706 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 146707 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 146708 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 146709 -NCIT:C170831 Metastatic Thyroid Gland Anaplastic Carcinoma 8 146710 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 146711 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 146712 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 8 146713 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 146714 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 9 146715 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 146716 -NCIT:C173979 Metastatic Differentiated Thyroid Gland Carcinoma 8 146717 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 9 146718 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 10 146719 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 11 146720 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 9 146721 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 146722 -NCIT:C174046 Metastatic Poorly Differentiated Thyroid Gland Carcinoma 8 146723 -NCIT:C142983 Refractory Thyroid Gland Carcinoma 7 146724 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 8 146725 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 9 146726 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 9 146727 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 10 146728 -NCIT:C170832 Refractory Thyroid Gland Anaplastic Carcinoma 8 146729 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 8 146730 -NCIT:C156267 Thyroid Gland Mucinous Carcinoma 7 146731 -NCIT:C27380 Thyroid Gland Adenocarcinoma 7 146732 -NCIT:C187645 Follicular-Derived Thyroid Gland Carcinoma, High Grade 8 146733 -NCIT:C187648 Differentiated High Grade Thyroid Gland Carcinoma 9 146734 -NCIT:C6040 Poorly Differentiated Thyroid Gland Carcinoma 9 146735 -NCIT:C174046 Metastatic Poorly Differentiated Thyroid Gland Carcinoma 10 146736 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 10 146737 -NCIT:C174569 Unresectable Poorly Differentiated Thyroid Gland Carcinoma 10 146738 -NCIT:C187994 Thyroid Gland Secretory Carcinoma 8 146739 -NCIT:C7153 Differentiated Thyroid Gland Carcinoma 8 146740 -NCIT:C118829 Hereditary Nonmedullary Thyroid Gland Carcinoma 9 146741 -NCIT:C140959 Differentiated Thyroid Gland Carcinoma by AJCC v7 Stage 9 146742 -NCIT:C140958 Thyroid Gland Follicular Carcinoma by AJCC v7 Stage 10 146743 -NCIT:C9084 Stage I Thyroid Gland Follicular Carcinoma AJCC v7 11 146744 -NCIT:C9085 Stage II Thyroid Gland Follicular Carcinoma AJCC v7 11 146745 -NCIT:C9086 Stage IV Thyroid Gland Follicular Carcinoma AJCC v7 11 146746 -NCIT:C115035 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v7 12 146747 -NCIT:C115036 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v7 12 146748 -NCIT:C115037 Stage IVC Thyroid Gland Follicular Carcinoma AJCC v7 12 146749 -NCIT:C9121 Stage III Thyroid Gland Follicular Carcinoma AJCC v7 11 146750 -NCIT:C140960 Thyroid Gland Papillary Carcinoma by AJCC v7 Stage 10 146751 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 11 146752 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 11 146753 -NCIT:C9083 Stage IV Thyroid Gland Papillary Carcinoma AJCC v7 11 146754 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 12 146755 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 12 146756 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 12 146757 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 11 146758 -NCIT:C87543 Stage I Differentiated Thyroid Gland Carcinoma AJCC v7 10 146759 -NCIT:C101539 Stage I Differentiated Thyroid Gland Carcinoma Under 45 Years AJCC v7 11 146760 -NCIT:C101540 Stage I Differentiated Thyroid Gland Carcinoma 45 Years and Older AJCC v7 11 146761 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 11 146762 -NCIT:C9084 Stage I Thyroid Gland Follicular Carcinoma AJCC v7 11 146763 -NCIT:C87544 Stage II Differentiated Thyroid Gland Carcinoma AJCC v7 10 146764 -NCIT:C101541 Stage II Differentiated Thyroid Gland Carcinoma Under 45 Years AJCC v7 11 146765 -NCIT:C101542 Stage II Differentiated Thyroid Gland Carcinoma 45 Years and Older AJCC v7 11 146766 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 11 146767 -NCIT:C9085 Stage II Thyroid Gland Follicular Carcinoma AJCC v7 11 146768 -NCIT:C87545 Stage III Differentiated Thyroid Gland Carcinoma AJCC v7 10 146769 -NCIT:C9121 Stage III Thyroid Gland Follicular Carcinoma AJCC v7 11 146770 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 11 146771 -NCIT:C87546 Stage IVA Differentiated Thyroid Gland Carcinoma AJCC v7 10 146772 -NCIT:C115035 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v7 11 146773 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 11 146774 -NCIT:C87547 Stage IVB Differentiated Thyroid Gland Carcinoma AJCC v7 10 146775 -NCIT:C115036 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v7 11 146776 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 11 146777 -NCIT:C87548 Stage IVC Differentiated Thyroid Gland Carcinoma AJCC v7 10 146778 -NCIT:C115037 Stage IVC Thyroid Gland Follicular Carcinoma AJCC v7 11 146779 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 11 146780 -NCIT:C140965 Differentiated Thyroid Gland Carcinoma by AJCC v8 Stage 9 146781 -NCIT:C140966 Stage I Differentiated Thyroid Gland Carcinoma AJCC v8 10 146782 -NCIT:C140967 Stage I Differentiated Thyroid Gland Carcinoma Under 55 Years AJCC v8 11 146783 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 146784 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 146785 -NCIT:C140968 Stage I Differentiated Thyroid Gland Carcinoma 55 Years and Older AJCC v8 11 146786 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 146787 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 146788 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 11 146789 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 146790 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 146791 -NCIT:C140988 Stage I Thyroid Gland Follicular Carcinoma AJCC v8 11 146792 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 146793 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 146794 -NCIT:C140969 Stage II Differentiated Thyroid Gland Carcinoma AJCC v8 10 146795 -NCIT:C140970 Stage II Differentiated Thyroid Gland Carcinoma Under 55 Years AJCC v8 11 146796 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 146797 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 146798 -NCIT:C140971 Stage II Differentiated Thyroid Gland Carcinoma 55 Years and Older AJCC v8 11 146799 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 146800 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 146801 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 11 146802 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 146803 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 146804 -NCIT:C140991 Stage II Thyroid Gland Follicular Carcinoma AJCC v8 11 146805 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 146806 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 146807 -NCIT:C140972 Stage III Differentiated Thyroid Gland Carcinoma AJCC v8 10 146808 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 11 146809 -NCIT:C140995 Stage III Thyroid Gland Follicular Carcinoma AJCC v8 11 146810 -NCIT:C140973 Stage IV Differentiated Thyroid Gland Carcinoma AJCC v8 10 146811 -NCIT:C140974 Stage IVA Differentiated Thyroid Gland Carcinoma AJCC v8 11 146812 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 12 146813 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 12 146814 -NCIT:C140975 Stage IVB Differentiated Thyroid Gland Carcinoma AJCC v8 11 146815 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 12 146816 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 12 146817 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 11 146818 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 12 146819 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 12 146820 -NCIT:C140996 Stage IV Thyroid Gland Follicular Carcinoma AJCC v8 11 146821 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 12 146822 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 12 146823 -NCIT:C140976 Thyroid Gland Papillary Carcinoma by AJCC v8 Stage 10 146824 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 11 146825 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 146826 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 146827 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 11 146828 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 146829 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 146830 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 11 146831 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 11 146832 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 12 146833 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 12 146834 -NCIT:C140987 Thyroid Gland Follicular Carcinoma by AJCC v8 Stage 10 146835 -NCIT:C140988 Stage I Thyroid Gland Follicular Carcinoma AJCC v8 11 146836 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 146837 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 146838 -NCIT:C140991 Stage II Thyroid Gland Follicular Carcinoma AJCC v8 11 146839 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 146840 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 146841 -NCIT:C140995 Stage III Thyroid Gland Follicular Carcinoma AJCC v8 11 146842 -NCIT:C140996 Stage IV Thyroid Gland Follicular Carcinoma AJCC v8 11 146843 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 12 146844 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 12 146845 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 9 146846 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 10 146847 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 10 146848 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 11 146849 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 9 146850 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 10 146851 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 10 146852 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 11 146853 -NCIT:C168572 Unresectable Differentiated Thyroid Gland Carcinoma 9 146854 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 10 146855 -NCIT:C174571 Unresectable Thyroid Gland Follicular Carcinoma 10 146856 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 11 146857 -NCIT:C173979 Metastatic Differentiated Thyroid Gland Carcinoma 9 146858 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 10 146859 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 11 146860 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 12 146861 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 10 146862 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 10 146863 -NCIT:C4035 Thyroid Gland Papillary Carcinoma 9 146864 -NCIT:C123903 Childhood Thyroid Gland Papillary Carcinoma 10 146865 -NCIT:C126409 Warthin-Like Variant Thyroid Gland Papillary Carcinoma 10 146866 -NCIT:C126410 Thyroid Gland Papillary Carcinoma with Fibromatosis/Fasciitis-Like/Desmoid-Type Stroma 10 146867 -NCIT:C126594 Follicular Variant Thyroid Gland Papillary Carcinoma 10 146868 -NCIT:C66850 Invasive Encapsulated Follicular Variant Thyroid Gland Papillary Carcinoma 11 146869 -NCIT:C7381 Invasive Follicular Variant Thyroid Gland Papillary Carcinoma 11 146870 -NCIT:C140960 Thyroid Gland Papillary Carcinoma by AJCC v7 Stage 10 146871 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 11 146872 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 11 146873 -NCIT:C9083 Stage IV Thyroid Gland Papillary Carcinoma AJCC v7 11 146874 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 12 146875 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 12 146876 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 12 146877 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 11 146878 -NCIT:C140976 Thyroid Gland Papillary Carcinoma by AJCC v8 Stage 10 146879 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 11 146880 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 146881 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 146882 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 11 146883 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 146884 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 146885 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 11 146886 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 11 146887 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 12 146888 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 12 146889 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 10 146890 -NCIT:C156034 Encapsulated Variant Thyroid Gland Papillary Carcinoma 10 146891 -NCIT:C156045 Spindle Cell Variant Thyroid Gland Papillary Carcinoma 10 146892 -NCIT:C156050 Hobnail Variant Thyroid Gland Papillary Carcinoma 10 146893 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 10 146894 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 10 146895 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 10 146896 -NCIT:C187644 Classic Thyroid Gland Papillary Carcinoma 10 146897 -NCIT:C35558 Tall Cell Variant Thyroid Gland Papillary Carcinoma 10 146898 -NCIT:C35830 Columnar Cell Variant Thyroid Gland Papillary Carcinoma 10 146899 -NCIT:C37304 Multicentric Thyroid Gland Papillary Carcinoma 10 146900 -NCIT:C46004 Thyroid Gland Papillary Microcarcinoma 10 146901 -NCIT:C46092 Macrofollicular Variant Thyroid Gland Papillary Carcinoma 10 146902 -NCIT:C46093 Oncocytic Variant Thyroid Gland Papillary Carcinoma 10 146903 -NCIT:C46094 Clear Cell Variant Thyroid Gland Papillary Carcinoma 10 146904 -NCIT:C46095 Solid/Trabecular Variant Thyroid Gland Papillary Carcinoma 10 146905 -NCIT:C7427 Diffuse Sclerosing Variant Thyroid Gland Papillary Carcinoma 10 146906 -NCIT:C8054 Thyroid Gland Follicular Carcinoma 9 146907 -NCIT:C123904 Childhood Thyroid Gland Follicular Carcinoma 10 146908 -NCIT:C140958 Thyroid Gland Follicular Carcinoma by AJCC v7 Stage 10 146909 -NCIT:C9084 Stage I Thyroid Gland Follicular Carcinoma AJCC v7 11 146910 -NCIT:C9085 Stage II Thyroid Gland Follicular Carcinoma AJCC v7 11 146911 -NCIT:C9086 Stage IV Thyroid Gland Follicular Carcinoma AJCC v7 11 146912 -NCIT:C115035 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v7 12 146913 -NCIT:C115036 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v7 12 146914 -NCIT:C115037 Stage IVC Thyroid Gland Follicular Carcinoma AJCC v7 12 146915 -NCIT:C9121 Stage III Thyroid Gland Follicular Carcinoma AJCC v7 11 146916 -NCIT:C140987 Thyroid Gland Follicular Carcinoma by AJCC v8 Stage 10 146917 -NCIT:C140988 Stage I Thyroid Gland Follicular Carcinoma AJCC v8 11 146918 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 146919 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 146920 -NCIT:C140991 Stage II Thyroid Gland Follicular Carcinoma AJCC v8 11 146921 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 146922 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 146923 -NCIT:C140995 Stage III Thyroid Gland Follicular Carcinoma AJCC v8 11 146924 -NCIT:C140996 Stage IV Thyroid Gland Follicular Carcinoma AJCC v8 11 146925 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 12 146926 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 12 146927 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 10 146928 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 11 146929 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 10 146930 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 11 146931 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 12 146932 -NCIT:C156122 Thyroid Gland Follicular Carcinoma, Encapsulated Angioinvasive 10 146933 -NCIT:C156123 Thyroid Gland Follicular Carcinoma, Widely Invasive 10 146934 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 10 146935 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 11 146936 -NCIT:C174571 Unresectable Thyroid Gland Follicular Carcinoma 10 146937 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 11 146938 -NCIT:C187643 Thyroid Gland Follicular Carcinoma, Signet Ring Cell Variant 10 146939 -NCIT:C46096 Thyroid Gland Follicular Carcinoma, Clear Cell Variant 10 146940 -NCIT:C4946 Thyroid Gland Oncocytic Carcinoma 10 146941 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 11 146942 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 11 146943 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 11 146944 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 11 146945 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 12 146946 -NCIT:C65200 Thyroid Gland Follicular Carcinoma, Minimally Invasive 10 146947 -NCIT:C38762 Thyroid Gland Mucoepidermoid Carcinoma 7 146948 -NCIT:C38763 Thyroid Gland Sclerosing Mucoepidermoid Carcinoma with Eosinophilia 8 146949 -NCIT:C3878 Thyroid Gland Anaplastic Carcinoma 7 146950 -NCIT:C140999 Thyroid Gland Anaplastic Carcinoma by AJCC v7 Stage 8 146951 -NCIT:C87552 Stage IVA Thyroid Gland Anaplastic Carcinoma AJCC v7 9 146952 -NCIT:C87553 Stage IVB Thyroid Gland Anaplastic Carcinoma AJCC v7 9 146953 -NCIT:C87554 Stage IVC Thyroid Gland Anaplastic Carcinoma AJCC v7 9 146954 -NCIT:C141000 Thyroid Gland Anaplastic Carcinoma by AJCC v8 Stage 8 146955 -NCIT:C141001 Stage IVA Thyroid Gland Anaplastic Carcinoma AJCC v8 9 146956 -NCIT:C141003 Stage IVB Thyroid Gland Anaplastic Carcinoma AJCC v8 9 146957 -NCIT:C141004 Stage IVC Thyroid Gland Anaplastic Carcinoma AJCC v8 9 146958 -NCIT:C153624 Recurrent Thyroid Gland Anaplastic Carcinoma 8 146959 -NCIT:C170831 Metastatic Thyroid Gland Anaplastic Carcinoma 8 146960 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 146961 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 146962 -NCIT:C170832 Refractory Thyroid Gland Anaplastic Carcinoma 8 146963 -NCIT:C170833 Unresectable Thyroid Gland Anaplastic Carcinoma 8 146964 -NCIT:C46008 Thyroid Gland Anaplastic Carcinoma, Squamous Cell Carcinoma Pattern 8 146965 -NCIT:C7906 Thyroid Gland Anaplastic Carcinoma, Osteoclastic Variant 8 146966 -NCIT:C3879 Thyroid Gland Medullary Carcinoma 7 146967 -NCIT:C123905 Childhood Thyroid Gland Medullary Carcinoma 8 146968 -NCIT:C141041 Thyroid Gland Medullary Carcinoma by AJCC v7 Stage 8 146969 -NCIT:C6133 Stage I Thyroid Gland Medullary Carcinoma AJCC v7 9 146970 -NCIT:C6134 Stage II Thyroid Gland Medullary Carcinoma AJCC v7 9 146971 -NCIT:C6135 Stage III Thyroid Gland Medullary Carcinoma AJCC v7 9 146972 -NCIT:C6136 Stage IV Thyroid Gland Medullary Carcinoma AJCC v7 9 146973 -NCIT:C87549 Stage IVA Thyroid Gland Medullary Carcinoma AJCC v7 10 146974 -NCIT:C87550 Stage IVB Thyroid Gland Medullary Carcinoma AJCC v7 10 146975 -NCIT:C87551 Stage IVC Thyroid Gland Medullary Carcinoma AJCC v7 10 146976 -NCIT:C141042 Thyroid Gland Medullary Carcinoma by AJCC v8 Stage 8 146977 -NCIT:C141043 Stage I Thyroid Gland Medullary Carcinoma AJCC v8 9 146978 -NCIT:C141044 Stage II Thyroid Gland Medullary Carcinoma AJCC v8 9 146979 -NCIT:C141045 Stage III Thyroid Gland Medullary Carcinoma AJCC v8 9 146980 -NCIT:C141046 Stage IV Thyroid Gland Medullary Carcinoma AJCC v8 9 146981 -NCIT:C141047 Stage IVA Thyroid Gland Medullary Carcinoma AJCC v8 10 146982 -NCIT:C141048 Stage IVB Thyroid Gland Medullary Carcinoma AJCC v8 10 146983 -NCIT:C141049 Stage IVC Thyroid Gland Medullary Carcinoma AJCC v8 10 146984 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 8 146985 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 9 146986 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 8 146987 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 146988 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 146989 -NCIT:C163974 Unresectable Thyroid Gland Medullary Carcinoma 8 146990 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 9 146991 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 8 146992 -NCIT:C4193 Thyroid Gland Medullary Carcinoma with Amyloid Stroma 8 146993 -NCIT:C46098 Sporadic Thyroid Gland Medullary Carcinoma 8 146994 -NCIT:C46103 Sporadic Thyroid Gland Micromedullary Carcinoma 9 146995 -NCIT:C46099 Hereditary Thyroid Gland Medullary Carcinoma 8 146996 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 9 146997 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 9 146998 -NCIT:C46104 Thyroid Gland Mixed Medullary and Follicular Cell-Derived Carcinoma 7 146999 -NCIT:C187992 Thyroid Gland Mixed Medullary and Follicular Carcinoma 8 147000 -NCIT:C187993 Thyroid Gland Mixed Medullary and Papillary Carcinoma 8 147001 -NCIT:C46105 Thyroid Gland Spindle Epithelial Tumor with Thymus-Like Elements 7 147002 -NCIT:C190064 Childhood Thyroid Gland Spindle Epithelial Tumor with Thymus-Like Elements 8 147003 -NCIT:C46106 Intrathyroid Thymic Carcinoma 7 147004 -NCIT:C7908 Recurrent Thyroid Gland Carcinoma 7 147005 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 8 147006 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 9 147007 -NCIT:C153624 Recurrent Thyroid Gland Anaplastic Carcinoma 8 147008 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 8 147009 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 9 147010 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 9 147011 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 10 147012 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 8 147013 -NCIT:C4906 Parathyroid Gland Carcinoma 6 147014 -NCIT:C118819 Childhood Parathyroid Gland Carcinoma 7 147015 -NCIT:C7826 Localized Parathyroid Gland Carcinoma 7 147016 -NCIT:C7828 Recurrent Parathyroid Gland Carcinoma 7 147017 -NCIT:C9044 Metastatic Parathyroid Gland Carcinoma 7 147018 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 147019 -NCIT:C7624 Recurrent Head and Neck Carcinoma 5 147020 -NCIT:C133709 Recurrent Head and Neck Squamous Cell Carcinoma 6 147021 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 147022 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 147023 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 147024 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 147025 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 147026 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 147027 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 147028 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 147029 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 147030 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 7 147031 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 147032 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 147033 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 147034 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 147035 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 147036 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 147037 -NCIT:C176682 Locally Recurrent Head and Neck Squamous Cell Carcinoma 7 147038 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 7 147039 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 147040 -NCIT:C4034 Recurrent Laryngeal Carcinoma 6 147041 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 7 147042 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 147043 -NCIT:C5103 Recurrent Pharyngeal Carcinoma 6 147044 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 7 147045 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 147046 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 147047 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 147048 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 147049 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 147050 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 147051 -NCIT:C8051 Recurrent Oropharyngeal Carcinoma 7 147052 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 147053 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 147054 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 7 147055 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 147056 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 147057 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 147058 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 7 147059 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 147060 -NCIT:C67558 Recurrent Sinonasal Carcinoma 6 147061 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 147062 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 147063 -NCIT:C7828 Recurrent Parathyroid Gland Carcinoma 6 147064 -NCIT:C7908 Recurrent Thyroid Gland Carcinoma 6 147065 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 7 147066 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 8 147067 -NCIT:C153624 Recurrent Thyroid Gland Anaplastic Carcinoma 7 147068 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 7 147069 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 8 147070 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 8 147071 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 9 147072 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 7 147073 -NCIT:C7926 Recurrent Salivary Gland Carcinoma 6 147074 -NCIT:C153611 Recurrent Salivary Duct Carcinoma 7 147075 -NCIT:C153612 Recurrent Minor Salivary Gland Adenocarcinoma 7 147076 -NCIT:C153800 Recurrent Parotid Gland Carcinoma 7 147077 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 8 147078 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 8 147079 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 147080 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 8 147081 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 147082 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 8 147083 -NCIT:C153801 Recurrent Submandibular Gland Carcinoma 7 147084 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 8 147085 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 8 147086 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 147087 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 8 147088 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 147089 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 8 147090 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 147091 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 147092 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 147093 -NCIT:C8037 Recurrent Lip and Oral Cavity Carcinoma 6 147094 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 147095 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 147096 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 147097 -NCIT:C6076 Recurrent Oral Cavity Carcinoma 7 147098 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 147099 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 147100 -NCIT:C8215 Recurrent Oral Cavity Mucoepidermoid Carcinoma 8 147101 -NCIT:C8216 Recurrent Oral Cavity Adenoid Cystic Carcinoma 8 147102 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 7 147103 -NCIT:C9272 Salivary Gland Carcinoma 5 147104 -NCIT:C118824 Childhood Salivary Gland Carcinoma 6 147105 -NCIT:C190273 Childhood Salivary Gland Mucoepidermoid Carcinoma 7 147106 -NCIT:C190274 Childhood Salivary Gland Acinic Cell Carcinoma 7 147107 -NCIT:C118825 Adult Salivary Gland Carcinoma 6 147108 -NCIT:C158463 Metastatic Salivary Gland Carcinoma 6 147109 -NCIT:C158464 Locally Advanced Salivary Gland Carcinoma 7 147110 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 7 147111 -NCIT:C177723 Advanced Salivary Gland Carcinoma 7 147112 -NCIT:C5899 Stage IV Major Salivary Gland Carcinoma with Metastasis 7 147113 -NCIT:C173649 Salivary Gland Poorly Differentiated Carcinoma 6 147114 -NCIT:C173653 Salivary Gland Neuroendocrine Carcinoma 7 147115 -NCIT:C173650 Salivary Gland Large Cell Neuroendocrine Carcinoma 8 147116 -NCIT:C35703 Salivary Gland Small Cell Neuroendocrine Carcinoma 8 147117 -NCIT:C5956 Minor Salivary Gland Small Cell Neuroendocrine Carcinoma 9 147118 -NCIT:C35735 Salivary Gland Large Cell Carcinoma 7 147119 -NCIT:C173650 Salivary Gland Large Cell Neuroendocrine Carcinoma 8 147120 -NCIT:C174034 Unresectable Salivary Gland Carcinoma 6 147121 -NCIT:C172651 Unresectable Salivary Gland Squamous Cell Carcinoma 7 147122 -NCIT:C177722 Refractory Salivary Gland Carcinoma 6 147123 -NCIT:C181079 Hybrid Salivary Gland Carcinoma 6 147124 -NCIT:C35700 Salivary Gland Myoepithelial Carcinoma 6 147125 -NCIT:C35701 Salivary Gland Epithelial-Myoepithelial Carcinoma 6 147126 -NCIT:C35736 Salivary Gland Lymphoepithelial Carcinoma 6 147127 -NCIT:C35737 Salivary Gland Adenosquamous Carcinoma 6 147128 -NCIT:C40410 Salivary Gland Carcinoma ex Pleomorphic Adenoma 6 147129 -NCIT:C5975 Major Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 147130 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 147131 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 147132 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 147133 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 147134 -NCIT:C5976 Minor Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 147135 -NCIT:C5907 Major Salivary Gland Carcinoma 6 147136 -NCIT:C132778 Major Salivary Gland Cancer by AJCC v7 Stage 7 147137 -NCIT:C5895 Stage I Major Salivary Gland Cancer AJCC v7 8 147138 -NCIT:C5896 Stage II Major Salivary Gland Cancer AJCC v7 8 147139 -NCIT:C5897 Stage III Major Salivary Gland Cancer AJCC v7 8 147140 -NCIT:C5898 Stage IV Major Salivary Gland Cancer AJCC v7 8 147141 -NCIT:C35694 Stage IVA Major Salivary Gland Cancer AJCC v7 9 147142 -NCIT:C35695 Stage IVB Major Salivary Gland Cancer AJCC v7 9 147143 -NCIT:C35696 Stage IVC Major Salivary Gland Cancer AJCC v7 9 147144 -NCIT:C5899 Stage IV Major Salivary Gland Carcinoma with Metastasis 9 147145 -NCIT:C5900 Stage IV Major Salivary Gland Carcinoma without Metastasis 9 147146 -NCIT:C132779 Major Salivary Gland Cancer by AJCC v8 Stage 7 147147 -NCIT:C132781 Stage I Major Salivary Gland Cancer AJCC v8 8 147148 -NCIT:C132783 Stage 0 Major Salivary Gland Cancer AJCC v8 8 147149 -NCIT:C132785 Stage II Major Salivary Gland Cancer AJCC v8 8 147150 -NCIT:C132786 Stage III Major Salivary Gland Cancer AJCC v8 8 147151 -NCIT:C132787 Stage IV Major Salivary Gland Cancer AJCC v8 8 147152 -NCIT:C132788 Stage IVA Major Salivary Gland Cancer AJCC v8 9 147153 -NCIT:C132789 Stage IVB Major Salivary Gland Cancer AJCC v8 9 147154 -NCIT:C132790 Stage IVC Major Salivary Gland Cancer AJCC v8 9 147155 -NCIT:C181161 Major Salivary Gland Squamous Cell Carcinoma 7 147156 -NCIT:C5942 Parotid Gland Squamous Cell Carcinoma 8 147157 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 9 147158 -NCIT:C5943 Submandibular Gland Squamous Cell Carcinoma 8 147159 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 9 147160 -NCIT:C5903 Major Salivary Gland Adenocarcinoma 7 147161 -NCIT:C5901 Major Salivary Gland Acinic Cell Carcinoma 8 147162 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 147163 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 147164 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 147165 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 147166 -NCIT:C5940 Submandibular Gland Adenocarcinoma 8 147167 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 147168 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 147169 -NCIT:C5941 Parotid Gland Adenocarcinoma 8 147170 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 147171 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 147172 -NCIT:C5958 Sublingual Gland Adenocarcinoma 8 147173 -NCIT:C5905 Major Salivary Gland Adenoid Cystic Carcinoma 7 147174 -NCIT:C5935 Submandibular Gland Adenoid Cystic Carcinoma 8 147175 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 9 147176 -NCIT:C5937 Parotid Gland Adenoid Cystic Carcinoma 8 147177 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 9 147178 -NCIT:C5906 Major Salivary Gland Mucoepidermoid Carcinoma 7 147179 -NCIT:C5938 Parotid Gland Mucoepidermoid Carcinoma 8 147180 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 9 147181 -NCIT:C5939 Submandibular Gland Mucoepidermoid Carcinoma 8 147182 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 9 147183 -NCIT:C5975 Major Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 147184 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 147185 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 147186 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 147187 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 147188 -NCIT:C6791 Parotid Gland Carcinoma 7 147189 -NCIT:C153800 Recurrent Parotid Gland Carcinoma 8 147190 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 9 147191 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 9 147192 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 147193 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 9 147194 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 9 147195 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 9 147196 -NCIT:C5937 Parotid Gland Adenoid Cystic Carcinoma 8 147197 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 9 147198 -NCIT:C5938 Parotid Gland Mucoepidermoid Carcinoma 8 147199 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 9 147200 -NCIT:C5941 Parotid Gland Adenocarcinoma 8 147201 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 147202 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 147203 -NCIT:C5942 Parotid Gland Squamous Cell Carcinoma 8 147204 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 9 147205 -NCIT:C5946 Parotid Gland Undifferentiated Carcinoma 8 147206 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 9 147207 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 147208 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 147209 -NCIT:C8396 Submandibular Gland Carcinoma 7 147210 -NCIT:C153801 Recurrent Submandibular Gland Carcinoma 8 147211 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 9 147212 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 9 147213 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 147214 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 9 147215 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 9 147216 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 9 147217 -NCIT:C5935 Submandibular Gland Adenoid Cystic Carcinoma 8 147218 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 9 147219 -NCIT:C5939 Submandibular Gland Mucoepidermoid Carcinoma 8 147220 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 9 147221 -NCIT:C5940 Submandibular Gland Adenocarcinoma 8 147222 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 147223 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 147224 -NCIT:C5943 Submandibular Gland Squamous Cell Carcinoma 8 147225 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 9 147226 -NCIT:C5947 Submandibular Gland Undifferentiated Carcinoma 8 147227 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 9 147228 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 147229 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 147230 -NCIT:C8397 Sublingual Gland Carcinoma 7 147231 -NCIT:C5958 Sublingual Gland Adenocarcinoma 8 147232 -NCIT:C5908 Salivary Gland Mucoepidermoid Carcinoma 6 147233 -NCIT:C190273 Childhood Salivary Gland Mucoepidermoid Carcinoma 7 147234 -NCIT:C5906 Major Salivary Gland Mucoepidermoid Carcinoma 7 147235 -NCIT:C5938 Parotid Gland Mucoepidermoid Carcinoma 8 147236 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 9 147237 -NCIT:C5939 Submandibular Gland Mucoepidermoid Carcinoma 8 147238 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 9 147239 -NCIT:C5953 Minor Salivary Gland Mucoepidermoid Carcinoma 7 147240 -NCIT:C8015 Low Grade Salivary Gland Mucoepidermoid Carcinoma 7 147241 -NCIT:C8017 Intermediate Grade Salivary Gland Mucoepidermoid Carcinoma 7 147242 -NCIT:C8019 High Grade Salivary Gland Mucoepidermoid Carcinoma 7 147243 -NCIT:C5957 Minor Salivary Gland Carcinoma 6 147244 -NCIT:C5936 Minor Salivary Gland Adenoid Cystic Carcinoma 7 147245 -NCIT:C5948 Minor Salivary Gland Adenocarcinoma 7 147246 -NCIT:C153612 Recurrent Minor Salivary Gland Adenocarcinoma 8 147247 -NCIT:C160974 Cribriform Adenocarcinoma of Minor Salivary Gland 8 147248 -NCIT:C6243 Minor Salivary Gland Acinic Cell Carcinoma 8 147249 -NCIT:C5953 Minor Salivary Gland Mucoepidermoid Carcinoma 7 147250 -NCIT:C5954 Minor Salivary Gland Undifferentiated Carcinoma 7 147251 -NCIT:C5956 Minor Salivary Gland Small Cell Neuroendocrine Carcinoma 7 147252 -NCIT:C5959 Minor Salivary Gland Squamous Cell Carcinoma 7 147253 -NCIT:C5976 Minor Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 147254 -NCIT:C62191 Salivary Gland Clear Cell Carcinoma 6 147255 -NCIT:C7926 Recurrent Salivary Gland Carcinoma 6 147256 -NCIT:C153611 Recurrent Salivary Duct Carcinoma 7 147257 -NCIT:C153612 Recurrent Minor Salivary Gland Adenocarcinoma 7 147258 -NCIT:C153800 Recurrent Parotid Gland Carcinoma 7 147259 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 8 147260 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 8 147261 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 147262 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 8 147263 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 147264 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 8 147265 -NCIT:C153801 Recurrent Submandibular Gland Carcinoma 7 147266 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 8 147267 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 8 147268 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 147269 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 8 147270 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 147271 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 8 147272 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 147273 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 147274 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 147275 -NCIT:C7991 Salivary Gland Squamous Cell Carcinoma 6 147276 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 7 147277 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 147278 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 147279 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 147280 -NCIT:C172651 Unresectable Salivary Gland Squamous Cell Carcinoma 7 147281 -NCIT:C181161 Major Salivary Gland Squamous Cell Carcinoma 7 147282 -NCIT:C5942 Parotid Gland Squamous Cell Carcinoma 8 147283 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 9 147284 -NCIT:C5943 Submandibular Gland Squamous Cell Carcinoma 8 147285 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 9 147286 -NCIT:C5959 Minor Salivary Gland Squamous Cell Carcinoma 7 147287 -NCIT:C8022 Salivary Gland Poorly Differentiated Squamous Cell Carcinoma 7 147288 -NCIT:C8012 Low Grade Salivary Gland Carcinoma 6 147289 -NCIT:C123384 Salivary Gland Secretory Carcinoma 7 147290 -NCIT:C35702 Salivary Gland Polymorphous Adenocarcinoma 7 147291 -NCIT:C173576 Oropharyngeal Polymorphous Adenocarcinoma 8 147292 -NCIT:C62192 Salivary Gland Intraductal Carcinoma 7 147293 -NCIT:C8015 Low Grade Salivary Gland Mucoepidermoid Carcinoma 7 147294 -NCIT:C8018 High Grade Salivary Gland Carcinoma 6 147295 -NCIT:C5904 Salivary Duct Carcinoma 7 147296 -NCIT:C153611 Recurrent Salivary Duct Carcinoma 8 147297 -NCIT:C62194 Salivary Gland Oncocytic Carcinoma 7 147298 -NCIT:C8019 High Grade Salivary Gland Mucoepidermoid Carcinoma 7 147299 -NCIT:C8021 Salivary Gland Adenocarcinoma 6 147300 -NCIT:C123384 Salivary Gland Secretory Carcinoma 7 147301 -NCIT:C173648 Salivary Gland Sebaceous Carcinoma 7 147302 -NCIT:C35702 Salivary Gland Polymorphous Adenocarcinoma 7 147303 -NCIT:C173576 Oropharyngeal Polymorphous Adenocarcinoma 8 147304 -NCIT:C3678 Salivary Gland Basal Cell Adenocarcinoma 7 147305 -NCIT:C5903 Major Salivary Gland Adenocarcinoma 7 147306 -NCIT:C5901 Major Salivary Gland Acinic Cell Carcinoma 8 147307 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 147308 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 147309 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 147310 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 147311 -NCIT:C5940 Submandibular Gland Adenocarcinoma 8 147312 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 147313 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 147314 -NCIT:C5941 Parotid Gland Adenocarcinoma 8 147315 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 147316 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 147317 -NCIT:C5958 Sublingual Gland Adenocarcinoma 8 147318 -NCIT:C5904 Salivary Duct Carcinoma 7 147319 -NCIT:C153611 Recurrent Salivary Duct Carcinoma 8 147320 -NCIT:C5948 Minor Salivary Gland Adenocarcinoma 7 147321 -NCIT:C153612 Recurrent Minor Salivary Gland Adenocarcinoma 8 147322 -NCIT:C160974 Cribriform Adenocarcinoma of Minor Salivary Gland 8 147323 -NCIT:C6243 Minor Salivary Gland Acinic Cell Carcinoma 8 147324 -NCIT:C5980 Salivary Gland Cystadenocarcinoma 7 147325 -NCIT:C62192 Salivary Gland Intraductal Carcinoma 7 147326 -NCIT:C62193 Salivary Gland Mucinous Adenocarcinoma 7 147327 -NCIT:C62194 Salivary Gland Oncocytic Carcinoma 7 147328 -NCIT:C62196 Salivary Gland Adenocarcinoma, Not Otherwise Specified 7 147329 -NCIT:C8013 Salivary Gland Acinic Cell Carcinoma 7 147330 -NCIT:C190274 Childhood Salivary Gland Acinic Cell Carcinoma 8 147331 -NCIT:C5901 Major Salivary Gland Acinic Cell Carcinoma 8 147332 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 147333 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 147334 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 147335 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 147336 -NCIT:C6243 Minor Salivary Gland Acinic Cell Carcinoma 8 147337 -NCIT:C8024 Salivary Gland Undifferentiated Carcinoma 6 147338 -NCIT:C5946 Parotid Gland Undifferentiated Carcinoma 7 147339 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 8 147340 -NCIT:C5947 Submandibular Gland Undifferentiated Carcinoma 7 147341 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 8 147342 -NCIT:C5954 Minor Salivary Gland Undifferentiated Carcinoma 7 147343 -NCIT:C8026 Salivary Gland Adenoid Cystic Carcinoma 6 147344 -NCIT:C5905 Major Salivary Gland Adenoid Cystic Carcinoma 7 147345 -NCIT:C5935 Submandibular Gland Adenoid Cystic Carcinoma 8 147346 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 9 147347 -NCIT:C5937 Parotid Gland Adenoid Cystic Carcinoma 8 147348 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 9 147349 -NCIT:C5936 Minor Salivary Gland Adenoid Cystic Carcinoma 7 147350 -NCIT:C9315 Lip and Oral Cavity Carcinoma 5 147351 -NCIT:C132728 Lip and Oral Cavity Cancer by AJCC v8 Stage 6 147352 -NCIT:C132729 Stage I Lip and Oral Cavity Cancer AJCC v8 7 147353 -NCIT:C132730 Stage II Lip and Oral Cavity Cancer AJCC v8 7 147354 -NCIT:C132731 Stage III Lip and Oral Cavity Cancer AJCC v8 7 147355 -NCIT:C132732 Stage IV Lip and Oral Cavity Cancer AJCC v8 7 147356 -NCIT:C132733 Stage IVA Lip and Oral Cavity Cancer AJCC v8 8 147357 -NCIT:C132734 Stage IVB Lip and Oral Cavity Cancer AJCC v8 8 147358 -NCIT:C132735 Stage IVC Lip and Oral Cavity Cancer AJCC v8 8 147359 -NCIT:C132736 Lip and Oral Cavity Cancer by AJCC v6 and v7 Stage 6 147360 -NCIT:C7939 Stage 0 Lip and Oral Cavity Cancer AJCC v6 and v7 7 147361 -NCIT:C4587 Stage 0 Oral Cavity Cancer AJCC v6 and v7 8 147362 -NCIT:C6052 Stage 0 Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 147363 -NCIT:C4588 Stage 0 Lip Cancer AJCC v6 and v7 8 147364 -NCIT:C5893 Stage 0 Lip Basal Cell Carcinoma AJCC v6 and v7 9 147365 -NCIT:C8033 Stage I Lip and Oral Cavity Cancer AJCC v6 and v7 7 147366 -NCIT:C115057 Stage I Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 147367 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 147368 -NCIT:C5876 Stage I Lip Cancer AJCC v6 and v7 8 147369 -NCIT:C8197 Stage I Lip Basal Cell Carcinoma 9 147370 -NCIT:C5883 Stage I Oral Cavity Cancer AJCC v6 and v7 8 147371 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 147372 -NCIT:C8199 Stage I Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 147373 -NCIT:C8200 Stage I Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 147374 -NCIT:C8034 Stage II Lip and Oral Cavity Cancer AJCC v6 and v7 7 147375 -NCIT:C115058 Stage II Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 147376 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 147377 -NCIT:C5877 Stage II Lip Cancer AJCC v6 and v7 8 147378 -NCIT:C8201 Stage II Lip Basal Cell Carcinoma 9 147379 -NCIT:C5884 Stage II Oral Cavity Cancer AJCC v6 and v7 8 147380 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 147381 -NCIT:C8203 Stage II Oral Cavity Mucoepidermoid Carcinoma 9 147382 -NCIT:C8204 Stage II Oral Cavity Adenoid Cystic Carcinoma 9 147383 -NCIT:C8035 Stage III Lip and Oral Cavity Cancer AJCC v6 and v7 7 147384 -NCIT:C115059 Stage III Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 147385 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 147386 -NCIT:C5878 Stage III Lip Cancer AJCC v6 and v7 8 147387 -NCIT:C8205 Stage III Lip Basal Cell Carcinoma 9 147388 -NCIT:C5885 Stage III Oral Cavity Cancer AJCC v6 and v7 8 147389 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 147390 -NCIT:C8207 Stage III Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 147391 -NCIT:C8208 Stage III Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 147392 -NCIT:C8036 Stage IV Lip and Oral Cavity Cancer AJCC v6 and v7 7 147393 -NCIT:C115060 Stage IV Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 147394 -NCIT:C115061 Stage IVA Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 147395 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 147396 -NCIT:C115062 Stage IVB Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 147397 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 147398 -NCIT:C115063 Stage IVC Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 147399 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 147400 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 147401 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 147402 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 147403 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 147404 -NCIT:C5879 Stage IV Lip Cancer AJCC v6 and v7 8 147405 -NCIT:C5880 Stage IVA Lip Cancer AJCC v6 and v7 9 147406 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 10 147407 -NCIT:C5881 Stage IVB Lip Cancer AJCC v6 and v7 9 147408 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 10 147409 -NCIT:C5882 Stage IVC Lip Cancer AJCC v6 and v7 9 147410 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 10 147411 -NCIT:C8209 Stage IV Lip Basal Cell Carcinoma 9 147412 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 10 147413 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 10 147414 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 10 147415 -NCIT:C5886 Stage IV Oral Cavity Cancer AJCC v6 and v7 8 147416 -NCIT:C5887 Stage IVA Oral Cavity Cancer AJCC v6 and v7 9 147417 -NCIT:C5863 Stage IVA Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 147418 -NCIT:C5868 Stage IVA Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 147419 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 147420 -NCIT:C5888 Stage IVB Oral Cavity Cancer AJCC v6 and v7 9 147421 -NCIT:C5864 Stage IVB Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 147422 -NCIT:C5867 Stage IVB Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 147423 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 147424 -NCIT:C5889 Stage IVC Oral Cavity Cancer AJCC v6 and v7 9 147425 -NCIT:C5865 Stage IVC Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 147426 -NCIT:C5866 Stage IVC Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 147427 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 147428 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 147429 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 147430 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 147431 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 147432 -NCIT:C8211 Stage IV Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 147433 -NCIT:C5866 Stage IVC Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 147434 -NCIT:C5867 Stage IVB Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 147435 -NCIT:C5868 Stage IVA Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 147436 -NCIT:C8212 Stage IV Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 147437 -NCIT:C5863 Stage IVA Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 147438 -NCIT:C5864 Stage IVB Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 147439 -NCIT:C5865 Stage IVC Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 147440 -NCIT:C87301 Stage IVA Lip and Oral Cavity Cancer AJCC v6 and v7 8 147441 -NCIT:C115061 Stage IVA Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 147442 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 147443 -NCIT:C5880 Stage IVA Lip Cancer AJCC v6 and v7 9 147444 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 10 147445 -NCIT:C5887 Stage IVA Oral Cavity Cancer AJCC v6 and v7 9 147446 -NCIT:C5863 Stage IVA Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 147447 -NCIT:C5868 Stage IVA Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 147448 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 147449 -NCIT:C87302 Stage IVB Lip and Oral Cavity Cancer AJCC v6 and v7 8 147450 -NCIT:C115062 Stage IVB Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 147451 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 147452 -NCIT:C5881 Stage IVB Lip Cancer AJCC v6 and v7 9 147453 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 10 147454 -NCIT:C5888 Stage IVB Oral Cavity Cancer AJCC v6 and v7 9 147455 -NCIT:C5864 Stage IVB Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 147456 -NCIT:C5867 Stage IVB Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 147457 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 147458 -NCIT:C87303 Stage IVC Lip and Oral Cavity Cancer AJCC v6 and v7 8 147459 -NCIT:C115063 Stage IVC Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 147460 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 147461 -NCIT:C5882 Stage IVC Lip Cancer AJCC v6 and v7 9 147462 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 10 147463 -NCIT:C5889 Stage IVC Oral Cavity Cancer AJCC v6 and v7 9 147464 -NCIT:C5865 Stage IVC Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 147465 -NCIT:C5866 Stage IVC Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 147466 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 147467 -NCIT:C156086 Metastatic Lip and Oral Cavity Carcinoma 6 147468 -NCIT:C156087 Metastatic Oral Cavity Carcinoma 7 147469 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 147470 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 147471 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 147472 -NCIT:C156089 Metastatic Oral Cavity Adenoid Cystic Carcinoma 8 147473 -NCIT:C156090 Metastatic Oral Cavity Mucoepidermoid Carcinoma 8 147474 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 8 147475 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 147476 -NCIT:C156088 Metastatic Lip Carcinoma 7 147477 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 147478 -NCIT:C165562 Locally Advanced Lip and Oral Cavity Carcinoma 7 147479 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 8 147480 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 147481 -NCIT:C3490 Lip Carcinoma 6 147482 -NCIT:C156088 Metastatic Lip Carcinoma 7 147483 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 147484 -NCIT:C4042 Lip Squamous Cell Carcinoma 7 147485 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 147486 -NCIT:C4588 Stage 0 Lip Cancer AJCC v6 and v7 7 147487 -NCIT:C5893 Stage 0 Lip Basal Cell Carcinoma AJCC v6 and v7 8 147488 -NCIT:C5876 Stage I Lip Cancer AJCC v6 and v7 7 147489 -NCIT:C8197 Stage I Lip Basal Cell Carcinoma 8 147490 -NCIT:C5877 Stage II Lip Cancer AJCC v6 and v7 7 147491 -NCIT:C8201 Stage II Lip Basal Cell Carcinoma 8 147492 -NCIT:C5878 Stage III Lip Cancer AJCC v6 and v7 7 147493 -NCIT:C8205 Stage III Lip Basal Cell Carcinoma 8 147494 -NCIT:C5879 Stage IV Lip Cancer AJCC v6 and v7 7 147495 -NCIT:C5880 Stage IVA Lip Cancer AJCC v6 and v7 8 147496 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 9 147497 -NCIT:C5881 Stage IVB Lip Cancer AJCC v6 and v7 8 147498 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 9 147499 -NCIT:C5882 Stage IVC Lip Cancer AJCC v6 and v7 8 147500 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 9 147501 -NCIT:C8209 Stage IV Lip Basal Cell Carcinoma 8 147502 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 9 147503 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 9 147504 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 9 147505 -NCIT:C8014 Lip Basal Cell Carcinoma 7 147506 -NCIT:C5893 Stage 0 Lip Basal Cell Carcinoma AJCC v6 and v7 8 147507 -NCIT:C8197 Stage I Lip Basal Cell Carcinoma 8 147508 -NCIT:C8201 Stage II Lip Basal Cell Carcinoma 8 147509 -NCIT:C8205 Stage III Lip Basal Cell Carcinoma 8 147510 -NCIT:C8209 Stage IV Lip Basal Cell Carcinoma 8 147511 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 9 147512 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 9 147513 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 9 147514 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 8 147515 -NCIT:C42690 Lip and Oral Cavity Squamous Cell Carcinoma 6 147516 -NCIT:C115057 Stage I Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 147517 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 147518 -NCIT:C115058 Stage II Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 147519 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 147520 -NCIT:C115059 Stage III Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 147521 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 147522 -NCIT:C115060 Stage IV Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 147523 -NCIT:C115061 Stage IVA Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 147524 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 147525 -NCIT:C115062 Stage IVB Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 147526 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 147527 -NCIT:C115063 Stage IVC Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 147528 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 147529 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 147530 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 147531 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 147532 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 147533 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 147534 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 147535 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 147536 -NCIT:C4042 Lip Squamous Cell Carcinoma 7 147537 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 147538 -NCIT:C4833 Oral Cavity Squamous Cell Carcinoma 7 147539 -NCIT:C129857 Gingival Squamous Cell Carcinoma 8 147540 -NCIT:C129289 Gingival Spindle Cell Carcinoma 9 147541 -NCIT:C8171 Lower Gingival Squamous Cell Carcinoma 9 147542 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 10 147543 -NCIT:C8172 Retromolar Trigone Squamous Cell Carcinoma 9 147544 -NCIT:C8173 Upper Gingival Squamous Cell Carcinoma 9 147545 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 10 147546 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 8 147547 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 147548 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 147549 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 147550 -NCIT:C170774 Alveolar Ridge Squamous Cell Carcinoma 8 147551 -NCIT:C170775 Upper Alveolar Ridge Squamous Cell Carcinoma 9 147552 -NCIT:C170776 Lower Alveolar Ridge Squamous Cell Carcinoma 9 147553 -NCIT:C172644 Unresectable Oral Cavity Squamous Cell Carcinoma 8 147554 -NCIT:C4040 Buccal Mucosa Squamous Cell Carcinoma 8 147555 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 9 147556 -NCIT:C4041 Floor of Mouth Squamous Cell Carcinoma 8 147557 -NCIT:C129873 Floor of Mouth Basaloid Squamous Cell Carcinoma 9 147558 -NCIT:C4648 Tongue Squamous Cell Carcinoma 8 147559 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 147560 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 147561 -NCIT:C4649 Palate Squamous Cell Carcinoma 8 147562 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 147563 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 147564 -NCIT:C54295 Primary Intraosseous Squamous Cell Carcinoma 8 147565 -NCIT:C54303 Primary Intraosseous Squamous Cell Carcinoma Derived From Keratocystic Odontogenic Tumor 9 147566 -NCIT:C7491 Primary Intraosseous Squamous Cell Carcinoma-Solid Type 9 147567 -NCIT:C7498 Keratinizing Primary Intraosseous Squamous Cell Carcinoma-Solid Type 10 147568 -NCIT:C7499 Non-Keratinizing Primary Intraosseous Squamous Cell Carcinoma -Solid Type 10 147569 -NCIT:C7500 Primary Intraosseous Squamous Cell Carcinoma Derived From Odontogenic Cyst 9 147570 -NCIT:C6052 Stage 0 Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 147571 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 147572 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 147573 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 147574 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 147575 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 147576 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 147577 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 147578 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 147579 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 147580 -NCIT:C8174 Oral Cavity Verrucous Carcinoma 8 147581 -NCIT:C179894 Oral Cavity Carcinoma Cuniculatum 9 147582 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 9 147583 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 9 147584 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 9 147585 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 147586 -NCIT:C8037 Recurrent Lip and Oral Cavity Carcinoma 6 147587 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 147588 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 147589 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 147590 -NCIT:C6076 Recurrent Oral Cavity Carcinoma 7 147591 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 147592 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 147593 -NCIT:C8215 Recurrent Oral Cavity Mucoepidermoid Carcinoma 8 147594 -NCIT:C8216 Recurrent Oral Cavity Adenoid Cystic Carcinoma 8 147595 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 7 147596 -NCIT:C8990 Oral Cavity Carcinoma 6 147597 -NCIT:C156087 Metastatic Oral Cavity Carcinoma 7 147598 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 147599 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 147600 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 147601 -NCIT:C156089 Metastatic Oral Cavity Adenoid Cystic Carcinoma 8 147602 -NCIT:C156090 Metastatic Oral Cavity Mucoepidermoid Carcinoma 8 147603 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 8 147604 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 147605 -NCIT:C173720 Odontogenic Carcinoma 7 147606 -NCIT:C173733 Sclerosing Odontogenic Carcinoma 8 147607 -NCIT:C4311 Ghost Cell Odontogenic Carcinoma 8 147608 -NCIT:C54295 Primary Intraosseous Squamous Cell Carcinoma 8 147609 -NCIT:C54303 Primary Intraosseous Squamous Cell Carcinoma Derived From Keratocystic Odontogenic Tumor 9 147610 -NCIT:C7491 Primary Intraosseous Squamous Cell Carcinoma-Solid Type 9 147611 -NCIT:C7498 Keratinizing Primary Intraosseous Squamous Cell Carcinoma-Solid Type 10 147612 -NCIT:C7499 Non-Keratinizing Primary Intraosseous Squamous Cell Carcinoma -Solid Type 10 147613 -NCIT:C7500 Primary Intraosseous Squamous Cell Carcinoma Derived From Odontogenic Cyst 9 147614 -NCIT:C54300 Clear Cell Odontogenic Carcinoma 8 147615 -NCIT:C7492 Ameloblastic Carcinoma 8 147616 -NCIT:C7493 Ameloblastic Carcinoma-Primary Type 9 147617 -NCIT:C7496 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated) 9 147618 -NCIT:C54298 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated), Intraosseous 10 147619 -NCIT:C54299 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated), Peripheral 10 147620 -NCIT:C7497 Ameloblastic Carcinoma Derived From Odontogenic Cyst 9 147621 -NCIT:C4587 Stage 0 Oral Cavity Cancer AJCC v6 and v7 7 147622 -NCIT:C6052 Stage 0 Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 147623 -NCIT:C4824 Tongue Carcinoma 7 147624 -NCIT:C171028 Tongue Adenoid Cystic Carcinoma 8 147625 -NCIT:C5991 Posterior Tongue Adenoid Cystic Carcinoma 9 147626 -NCIT:C6251 Anterior Tongue Adenoid Cystic Carcinoma 9 147627 -NCIT:C173807 Tongue Adenosquamous Carcinoma 8 147628 -NCIT:C181160 Tongue Mucoepidermoid Carcinoma 8 147629 -NCIT:C5990 Posterior Tongue Mucoepidermoid Carcinoma 9 147630 -NCIT:C6250 Anterior Tongue Mucoepidermoid Carcinoma 9 147631 -NCIT:C4648 Tongue Squamous Cell Carcinoma 8 147632 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 147633 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 147634 -NCIT:C6249 Anterior Tongue Carcinoma 8 147635 -NCIT:C6250 Anterior Tongue Mucoepidermoid Carcinoma 9 147636 -NCIT:C6251 Anterior Tongue Adenoid Cystic Carcinoma 9 147637 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 147638 -NCIT:C8407 Posterior Tongue Carcinoma 8 147639 -NCIT:C5990 Posterior Tongue Mucoepidermoid Carcinoma 9 147640 -NCIT:C5991 Posterior Tongue Adenoid Cystic Carcinoma 9 147641 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 147642 -NCIT:C4833 Oral Cavity Squamous Cell Carcinoma 7 147643 -NCIT:C129857 Gingival Squamous Cell Carcinoma 8 147644 -NCIT:C129289 Gingival Spindle Cell Carcinoma 9 147645 -NCIT:C8171 Lower Gingival Squamous Cell Carcinoma 9 147646 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 10 147647 -NCIT:C8172 Retromolar Trigone Squamous Cell Carcinoma 9 147648 -NCIT:C8173 Upper Gingival Squamous Cell Carcinoma 9 147649 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 10 147650 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 8 147651 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 147652 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 147653 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 147654 -NCIT:C170774 Alveolar Ridge Squamous Cell Carcinoma 8 147655 -NCIT:C170775 Upper Alveolar Ridge Squamous Cell Carcinoma 9 147656 -NCIT:C170776 Lower Alveolar Ridge Squamous Cell Carcinoma 9 147657 -NCIT:C172644 Unresectable Oral Cavity Squamous Cell Carcinoma 8 147658 -NCIT:C4040 Buccal Mucosa Squamous Cell Carcinoma 8 147659 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 9 147660 -NCIT:C4041 Floor of Mouth Squamous Cell Carcinoma 8 147661 -NCIT:C129873 Floor of Mouth Basaloid Squamous Cell Carcinoma 9 147662 -NCIT:C4648 Tongue Squamous Cell Carcinoma 8 147663 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 147664 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 147665 -NCIT:C4649 Palate Squamous Cell Carcinoma 8 147666 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 147667 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 147668 -NCIT:C54295 Primary Intraosseous Squamous Cell Carcinoma 8 147669 -NCIT:C54303 Primary Intraosseous Squamous Cell Carcinoma Derived From Keratocystic Odontogenic Tumor 9 147670 -NCIT:C7491 Primary Intraosseous Squamous Cell Carcinoma-Solid Type 9 147671 -NCIT:C7498 Keratinizing Primary Intraosseous Squamous Cell Carcinoma-Solid Type 10 147672 -NCIT:C7499 Non-Keratinizing Primary Intraosseous Squamous Cell Carcinoma -Solid Type 10 147673 -NCIT:C7500 Primary Intraosseous Squamous Cell Carcinoma Derived From Odontogenic Cyst 9 147674 -NCIT:C6052 Stage 0 Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 147675 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 147676 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 147677 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 147678 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 147679 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 147680 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 147681 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 147682 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 147683 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 147684 -NCIT:C8174 Oral Cavity Verrucous Carcinoma 8 147685 -NCIT:C179894 Oral Cavity Carcinoma Cuniculatum 9 147686 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 9 147687 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 9 147688 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 9 147689 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 147690 -NCIT:C5883 Stage I Oral Cavity Cancer AJCC v6 and v7 7 147691 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 147692 -NCIT:C8199 Stage I Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 147693 -NCIT:C8200 Stage I Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 147694 -NCIT:C5884 Stage II Oral Cavity Cancer AJCC v6 and v7 7 147695 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 147696 -NCIT:C8203 Stage II Oral Cavity Mucoepidermoid Carcinoma 8 147697 -NCIT:C8204 Stage II Oral Cavity Adenoid Cystic Carcinoma 8 147698 -NCIT:C5885 Stage III Oral Cavity Cancer AJCC v6 and v7 7 147699 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 147700 -NCIT:C8207 Stage III Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 147701 -NCIT:C8208 Stage III Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 147702 -NCIT:C5886 Stage IV Oral Cavity Cancer AJCC v6 and v7 7 147703 -NCIT:C5887 Stage IVA Oral Cavity Cancer AJCC v6 and v7 8 147704 -NCIT:C5863 Stage IVA Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 147705 -NCIT:C5868 Stage IVA Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 147706 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 147707 -NCIT:C5888 Stage IVB Oral Cavity Cancer AJCC v6 and v7 8 147708 -NCIT:C5864 Stage IVB Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 147709 -NCIT:C5867 Stage IVB Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 147710 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 147711 -NCIT:C5889 Stage IVC Oral Cavity Cancer AJCC v6 and v7 8 147712 -NCIT:C5865 Stage IVC Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 147713 -NCIT:C5866 Stage IVC Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 147714 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 147715 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 147716 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 147717 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 147718 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 147719 -NCIT:C8211 Stage IV Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 147720 -NCIT:C5866 Stage IVC Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 147721 -NCIT:C5867 Stage IVB Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 147722 -NCIT:C5868 Stage IVA Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 147723 -NCIT:C8212 Stage IV Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 147724 -NCIT:C5863 Stage IVA Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 147725 -NCIT:C5864 Stage IVB Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 147726 -NCIT:C5865 Stage IVC Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 147727 -NCIT:C5914 Oral Cavity Adenocarcinoma 7 147728 -NCIT:C6076 Recurrent Oral Cavity Carcinoma 7 147729 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 147730 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 147731 -NCIT:C8215 Recurrent Oral Cavity Mucoepidermoid Carcinoma 8 147732 -NCIT:C8216 Recurrent Oral Cavity Adenoid Cystic Carcinoma 8 147733 -NCIT:C7721 Gingival Carcinoma 7 147734 -NCIT:C129857 Gingival Squamous Cell Carcinoma 8 147735 -NCIT:C129289 Gingival Spindle Cell Carcinoma 9 147736 -NCIT:C8171 Lower Gingival Squamous Cell Carcinoma 9 147737 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 10 147738 -NCIT:C8172 Retromolar Trigone Squamous Cell Carcinoma 9 147739 -NCIT:C8173 Upper Gingival Squamous Cell Carcinoma 9 147740 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 10 147741 -NCIT:C8392 Upper Gingival Carcinoma 8 147742 -NCIT:C8173 Upper Gingival Squamous Cell Carcinoma 9 147743 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 10 147744 -NCIT:C8393 Lower Gingival Carcinoma 8 147745 -NCIT:C8171 Lower Gingival Squamous Cell Carcinoma 9 147746 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 10 147747 -NCIT:C8177 Oral Cavity Mucoepidermoid Carcinoma 7 147748 -NCIT:C156090 Metastatic Oral Cavity Mucoepidermoid Carcinoma 8 147749 -NCIT:C181160 Tongue Mucoepidermoid Carcinoma 8 147750 -NCIT:C5990 Posterior Tongue Mucoepidermoid Carcinoma 9 147751 -NCIT:C6250 Anterior Tongue Mucoepidermoid Carcinoma 9 147752 -NCIT:C6214 Hard Palate Mucoepidermoid Carcinoma 8 147753 -NCIT:C8178 Floor of Mouth Mucoepidermoid Carcinoma 8 147754 -NCIT:C8199 Stage I Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 147755 -NCIT:C8203 Stage II Oral Cavity Mucoepidermoid Carcinoma 8 147756 -NCIT:C8207 Stage III Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 147757 -NCIT:C8211 Stage IV Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 147758 -NCIT:C5866 Stage IVC Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 147759 -NCIT:C5867 Stage IVB Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 147760 -NCIT:C5868 Stage IVA Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 147761 -NCIT:C8215 Recurrent Oral Cavity Mucoepidermoid Carcinoma 8 147762 -NCIT:C8179 Oral Cavity Adenoid Cystic Carcinoma 7 147763 -NCIT:C156089 Metastatic Oral Cavity Adenoid Cystic Carcinoma 8 147764 -NCIT:C171028 Tongue Adenoid Cystic Carcinoma 8 147765 -NCIT:C5991 Posterior Tongue Adenoid Cystic Carcinoma 9 147766 -NCIT:C6251 Anterior Tongue Adenoid Cystic Carcinoma 9 147767 -NCIT:C6213 Hard Palate Adenoid Cystic Carcinoma 8 147768 -NCIT:C8180 Floor of Mouth Adenoid Cystic Carcinoma 8 147769 -NCIT:C8200 Stage I Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 147770 -NCIT:C8204 Stage II Oral Cavity Adenoid Cystic Carcinoma 8 147771 -NCIT:C8208 Stage III Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 147772 -NCIT:C8212 Stage IV Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 147773 -NCIT:C5863 Stage IVA Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 147774 -NCIT:C5864 Stage IVB Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 147775 -NCIT:C5865 Stage IVC Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 147776 -NCIT:C8216 Recurrent Oral Cavity Adenoid Cystic Carcinoma 8 147777 -NCIT:C8463 Palate Carcinoma 7 147778 -NCIT:C4649 Palate Squamous Cell Carcinoma 8 147779 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 147780 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 147781 -NCIT:C8394 Hard Palate Carcinoma 8 147782 -NCIT:C6213 Hard Palate Adenoid Cystic Carcinoma 9 147783 -NCIT:C6214 Hard Palate Mucoepidermoid Carcinoma 9 147784 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 147785 -NCIT:C8395 Soft Palate Carcinoma 8 147786 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 147787 -NCIT:C9319 Floor of the Mouth Carcinoma 7 147788 -NCIT:C4041 Floor of Mouth Squamous Cell Carcinoma 8 147789 -NCIT:C129873 Floor of Mouth Basaloid Squamous Cell Carcinoma 9 147790 -NCIT:C8178 Floor of Mouth Mucoepidermoid Carcinoma 8 147791 -NCIT:C8180 Floor of Mouth Adenoid Cystic Carcinoma 8 147792 -NCIT:C36310 Secondary Carcinoma 4 147793 -NCIT:C167344 Spiradenocylindrocarcinoma 5 147794 -NCIT:C3482 Metastatic Carcinoma 5 147795 -NCIT:C126465 Metastatic Head and Neck Carcinoma 6 147796 -NCIT:C129861 Advanced Head and Neck Carcinoma 7 147797 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 8 147798 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 147799 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 147800 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 147801 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 147802 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 147803 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 147804 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 147805 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 8 147806 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 147807 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 147808 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 147809 -NCIT:C170784 Advanced Pharyngeal Carcinoma 8 147810 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 9 147811 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 147812 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 147813 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 147814 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 147815 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 147816 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 9 147817 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 147818 -NCIT:C177723 Advanced Salivary Gland Carcinoma 8 147819 -NCIT:C133193 Metastatic Thyroid Gland Carcinoma 7 147820 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 8 147821 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 147822 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 147823 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 8 147824 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 147825 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 147826 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 147827 -NCIT:C170831 Metastatic Thyroid Gland Anaplastic Carcinoma 8 147828 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 147829 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 147830 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 8 147831 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 147832 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 9 147833 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 147834 -NCIT:C173979 Metastatic Differentiated Thyroid Gland Carcinoma 8 147835 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 9 147836 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 10 147837 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 11 147838 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 9 147839 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 147840 -NCIT:C174046 Metastatic Poorly Differentiated Thyroid Gland Carcinoma 8 147841 -NCIT:C148153 Metastatic Head and Neck Squamous Cell Carcinoma 7 147842 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 8 147843 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 147844 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 147845 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 147846 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 147847 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 147848 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 147849 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 147850 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 147851 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 147852 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 147853 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 8 147854 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 147855 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 147856 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 147857 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 8 147858 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 147859 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 147860 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 147861 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 147862 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 147863 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 147864 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 147865 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 147866 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 147867 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 147868 -NCIT:C162882 Metastatic Sinonasal Squamous Cell Carcinoma 8 147869 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 147870 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 147871 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 147872 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 9 147873 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 147874 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 9 147875 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 147876 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 147877 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 147878 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 147879 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 8 147880 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 8 147881 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 147882 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 147883 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 147884 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 147885 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 147886 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 147887 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 147888 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 147889 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 147890 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 147891 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 147892 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 147893 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 147894 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 147895 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 147896 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 147897 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 147898 -NCIT:C153213 Locally Advanced Head and Neck Carcinoma 7 147899 -NCIT:C158464 Locally Advanced Salivary Gland Carcinoma 8 147900 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 8 147901 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 147902 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 147903 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 147904 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 147905 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 147906 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 147907 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 147908 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 147909 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 147910 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 147911 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 147912 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 8 147913 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 147914 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 8 147915 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 147916 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 9 147917 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 147918 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 147919 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 9 147920 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 147921 -NCIT:C165562 Locally Advanced Lip and Oral Cavity Carcinoma 8 147922 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 9 147923 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 10 147924 -NCIT:C165563 Locally Advanced Paranasal Sinus Carcinoma 8 147925 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 147926 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 8 147927 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 147928 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 9 147929 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 147930 -NCIT:C156080 Metastatic Pharyngeal Carcinoma 7 147931 -NCIT:C156079 Metastatic Nasopharyngeal Carcinoma 8 147932 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 147933 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 147934 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 147935 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 147936 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 147937 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 147938 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 9 147939 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 147940 -NCIT:C156081 Metastatic Hypopharyngeal Carcinoma 8 147941 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 147942 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 147943 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 147944 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 9 147945 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 147946 -NCIT:C156082 Metastatic Oropharyngeal Carcinoma 8 147947 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 147948 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 147949 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 147950 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 147951 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 9 147952 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 147953 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 147954 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 9 147955 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 147956 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 8 147957 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 147958 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 9 147959 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 147960 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 147961 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 9 147962 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 147963 -NCIT:C170784 Advanced Pharyngeal Carcinoma 8 147964 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 9 147965 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 147966 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 147967 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 147968 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 147969 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 147970 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 9 147971 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 147972 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 8 147973 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 147974 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 147975 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 147976 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 147977 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 147978 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 147979 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 147980 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 147981 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 147982 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 147983 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 147984 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 147985 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 147986 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 147987 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 147988 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 147989 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 147990 -NCIT:C156085 Metastatic Laryngeal Carcinoma 7 147991 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 8 147992 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 147993 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 147994 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 8 147995 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 147996 -NCIT:C156086 Metastatic Lip and Oral Cavity Carcinoma 7 147997 -NCIT:C156087 Metastatic Oral Cavity Carcinoma 8 147998 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 9 147999 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 10 148000 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 10 148001 -NCIT:C156089 Metastatic Oral Cavity Adenoid Cystic Carcinoma 9 148002 -NCIT:C156090 Metastatic Oral Cavity Mucoepidermoid Carcinoma 9 148003 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 9 148004 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 10 148005 -NCIT:C156088 Metastatic Lip Carcinoma 8 148006 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 9 148007 -NCIT:C165562 Locally Advanced Lip and Oral Cavity Carcinoma 8 148008 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 9 148009 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 10 148010 -NCIT:C158463 Metastatic Salivary Gland Carcinoma 7 148011 -NCIT:C158464 Locally Advanced Salivary Gland Carcinoma 8 148012 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 8 148013 -NCIT:C177723 Advanced Salivary Gland Carcinoma 8 148014 -NCIT:C5899 Stage IV Major Salivary Gland Carcinoma with Metastasis 8 148015 -NCIT:C9044 Metastatic Parathyroid Gland Carcinoma 7 148016 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 148017 -NCIT:C129828 Metastatic Transitional Cell Carcinoma 6 148018 -NCIT:C126109 Metastatic Urothelial Carcinoma 7 148019 -NCIT:C148493 Advanced Urothelial Carcinoma 8 148020 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 148021 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 148022 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 148023 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 148024 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 148025 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 148026 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 148027 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 148028 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 148029 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 148030 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 148031 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 148032 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 148033 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 148034 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 148035 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 148036 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 148037 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 148038 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 148039 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 8 148040 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 148041 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 148042 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 148043 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 148044 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 148045 -NCIT:C191692 Metastatic Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 148046 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 148047 -NCIT:C191693 Metastatic Giant Cell Urothelial Carcinoma 8 148048 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 148049 -NCIT:C191694 Metastatic Lipid-Rich Urothelial Carcinoma 8 148050 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 148051 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 8 148052 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 148053 -NCIT:C191696 Metastatic Nested Urothelial Carcinoma 8 148054 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 148055 -NCIT:C191697 Metastatic Plasmacytoid Urothelial Carcinoma 8 148056 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 148057 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 8 148058 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 148059 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 8 148060 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 148061 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 148062 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 148063 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 9 148064 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 148065 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 148066 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 148067 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 148068 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 148069 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 148070 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 148071 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 148072 -NCIT:C172091 Advanced Transitional Cell Carcinoma 7 148073 -NCIT:C148493 Advanced Urothelial Carcinoma 8 148074 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 148075 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 148076 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 148077 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 148078 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 148079 -NCIT:C175493 Locally Advanced Transitional Cell Carcinoma 7 148080 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 8 148081 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 148082 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 148083 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 148084 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 148085 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 148086 -NCIT:C133839 Metastatic Digestive System Carcinoma 6 148087 -NCIT:C150577 Metastatic Gastroesophageal Junction Adenocarcinoma 7 148088 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 8 148089 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 8 148090 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 9 148091 -NCIT:C151904 Refractory Metastatic Digestive System Carcinoma 7 148092 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 8 148093 -NCIT:C151905 Recurrent Metastatic Digestive System Carcinoma 7 148094 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 8 148095 -NCIT:C153320 Metastatic Gastric Carcinoma 7 148096 -NCIT:C153319 Metastatic Gastric Adenocarcinoma 8 148097 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 9 148098 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 10 148099 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 10 148100 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 9 148101 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 10 148102 -NCIT:C165630 Metastatic Proximal Gastric Adenocarcinoma 9 148103 -NCIT:C166121 Oligometastatic Gastric Adenocarcinoma 9 148104 -NCIT:C166255 Advanced Gastric Adenocarcinoma 9 148105 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 10 148106 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 8 148107 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 148108 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 148109 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 148110 -NCIT:C162772 Locally Advanced Gastric Carcinoma 8 148111 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 9 148112 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 10 148113 -NCIT:C165299 Advanced Gastric Carcinoma 8 148114 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 148115 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 148116 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 148117 -NCIT:C166255 Advanced Gastric Adenocarcinoma 9 148118 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 10 148119 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 8 148120 -NCIT:C153358 Locally Advanced Digestive System Carcinoma 7 148121 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 8 148122 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 148123 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 148124 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 148125 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 8 148126 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 9 148127 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 8 148128 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 148129 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 148130 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 148131 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 148132 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 148133 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 148134 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 148135 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 148136 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 148137 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 148138 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 148139 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 148140 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 148141 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 148142 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 148143 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 148144 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 148145 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 148146 -NCIT:C162772 Locally Advanced Gastric Carcinoma 8 148147 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 9 148148 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 10 148149 -NCIT:C168976 Locally Advanced Esophageal Carcinoma 8 148150 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 9 148151 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 10 148152 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 9 148153 -NCIT:C168977 Locally Advanced Anal Carcinoma 8 148154 -NCIT:C170459 Locally Advanced Pancreatobiliary Carcinoma 8 148155 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 9 148156 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 10 148157 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 11 148158 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 148159 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 12 148160 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 11 148161 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 148162 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 10 148163 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 11 148164 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 9 148165 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 10 148166 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 11 148167 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 11 148168 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 9 148169 -NCIT:C171298 Locally Advanced Liver Carcinoma 8 148170 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 9 148171 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 148172 -NCIT:C154088 Metastatic Liver Carcinoma 7 148173 -NCIT:C154091 Metastatic Hepatocellular Carcinoma 8 148174 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 9 148175 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 10 148176 -NCIT:C167336 Advanced Hepatocellular Carcinoma 9 148177 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 10 148178 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 10 148179 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 9 148180 -NCIT:C171298 Locally Advanced Liver Carcinoma 8 148181 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 9 148182 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 148183 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 8 148184 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 148185 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 9 148186 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 7 148187 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 8 148188 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 148189 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 148190 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 148191 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 8 148192 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 148193 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 148194 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 148195 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 148196 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 148197 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 148198 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 148199 -NCIT:C156073 Metastatic Esophageal Carcinoma 7 148200 -NCIT:C156074 Metastatic Esophageal Adenocarcinoma 8 148201 -NCIT:C166120 Oligometastatic Esophageal Adenocarcinoma 9 148202 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 9 148203 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 9 148204 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 10 148205 -NCIT:C172249 Metastatic Distal Esophagus Adenocarcinoma 9 148206 -NCIT:C156075 Metastatic Esophageal Squamous Cell Carcinoma 8 148207 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 9 148208 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 9 148209 -NCIT:C160599 Advanced Esophageal Carcinoma 8 148210 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 9 148211 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 9 148212 -NCIT:C168976 Locally Advanced Esophageal Carcinoma 8 148213 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 9 148214 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 10 148215 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 9 148216 -NCIT:C156096 Metastatic Colorectal Carcinoma 7 148217 -NCIT:C142867 Metastatic Microsatellite Stable Colorectal Carcinoma 8 148218 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 148219 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 148220 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 148221 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 148222 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 148223 -NCIT:C153224 Colorectal Carcinoma Metastatic in the Lung 8 148224 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 9 148225 -NCIT:C156097 Metastatic Colon Carcinoma 8 148226 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 148227 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 148228 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 148229 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 148230 -NCIT:C167238 Advanced Colon Carcinoma 9 148231 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 148232 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 148233 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 148234 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 148235 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 148236 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 148237 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 148238 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 9 148239 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 9 148240 -NCIT:C156098 Metastatic Rectal Carcinoma 8 148241 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 9 148242 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 148243 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 148244 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 148245 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 148246 -NCIT:C170777 Advanced Rectal Carcinoma 9 148247 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 148248 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 148249 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 148250 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 148251 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 148252 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 148253 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 9 148254 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 148255 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 148256 -NCIT:C157366 Colorectal Carcinoma Metastatic in the Liver 8 148257 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 9 148258 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 9 148259 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 9 148260 -NCIT:C161048 Metastatic Colorectal Adenocarcinoma 8 148261 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 9 148262 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 148263 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 148264 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 148265 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 148266 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 148267 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 148268 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 148269 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 148270 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 9 148271 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 148272 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 148273 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 148274 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 148275 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 148276 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 148277 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 148278 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 148279 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 148280 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 148281 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 148282 -NCIT:C162475 Advanced Colorectal Carcinoma 8 148283 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 148284 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 148285 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 148286 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 148287 -NCIT:C167238 Advanced Colon Carcinoma 9 148288 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 148289 -NCIT:C170777 Advanced Rectal Carcinoma 9 148290 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 148291 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 148292 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 8 148293 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 148294 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 148295 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 148296 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 148297 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 148298 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 148299 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 148300 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 148301 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 148302 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 148303 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 148304 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 148305 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 148306 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 148307 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 148308 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 148309 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 148310 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 148311 -NCIT:C185165 Oligometastatic Colorectal Carcinoma 8 148312 -NCIT:C156746 Advanced Digestive System Carcinoma 7 148313 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 148314 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 148315 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 148316 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 8 148317 -NCIT:C160599 Advanced Esophageal Carcinoma 8 148318 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 9 148319 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 9 148320 -NCIT:C162475 Advanced Colorectal Carcinoma 8 148321 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 148322 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 148323 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 148324 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 148325 -NCIT:C167238 Advanced Colon Carcinoma 9 148326 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 148327 -NCIT:C170777 Advanced Rectal Carcinoma 9 148328 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 148329 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 148330 -NCIT:C165299 Advanced Gastric Carcinoma 8 148331 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 148332 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 148333 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 148334 -NCIT:C166255 Advanced Gastric Adenocarcinoma 9 148335 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 10 148336 -NCIT:C167336 Advanced Hepatocellular Carcinoma 8 148337 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 148338 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 148339 -NCIT:C170515 Advanced Anal Carcinoma 8 148340 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 148341 -NCIT:C171330 Advanced Pancreatobiliary Carcinoma 8 148342 -NCIT:C165452 Advanced Pancreatic Carcinoma 9 148343 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 10 148344 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 11 148345 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 9 148346 -NCIT:C171331 Advanced Biliary Tract Carcinoma 9 148347 -NCIT:C142870 Advanced Bile Duct Carcinoma 10 148348 -NCIT:C162752 Advanced Cholangiocarcinoma 11 148349 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 148350 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 148351 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 148352 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 11 148353 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 148354 -NCIT:C162755 Advanced Gallbladder Carcinoma 10 148355 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 148356 -NCIT:C162275 Metastatic Appendix Carcinoma 7 148357 -NCIT:C182104 Metastatic Appendix Adenocarcinoma 8 148358 -NCIT:C162274 Metastatic Appendix Mucinous Adenocarcinoma 9 148359 -NCIT:C182105 Advanced Appendix Adenocarcinoma 9 148360 -NCIT:C163967 Metastatic Digestive System Mixed Adenoneuroendocrine Carcinoma 7 148361 -NCIT:C170458 Metastatic Pancreatobiliary Carcinoma 7 148362 -NCIT:C156069 Metastatic Pancreatic Carcinoma 8 148363 -NCIT:C165452 Advanced Pancreatic Carcinoma 9 148364 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 10 148365 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 11 148366 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 9 148367 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 10 148368 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 11 148369 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 11 148370 -NCIT:C190770 Metastatic Pancreatic Adenosquamous Carcinoma 9 148371 -NCIT:C190771 Metastatic Pancreatic Squamous Cell Carcinoma 9 148372 -NCIT:C8933 Metastatic Pancreatic Adenocarcinoma 9 148373 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 10 148374 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 11 148375 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 11 148376 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 10 148377 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 11 148378 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 11 148379 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 11 148380 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 10 148381 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 11 148382 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 10 148383 -NCIT:C162751 Metastatic Biliary Tract Carcinoma 8 148384 -NCIT:C142869 Metastatic Bile Duct Carcinoma 9 148385 -NCIT:C142870 Advanced Bile Duct Carcinoma 10 148386 -NCIT:C162752 Advanced Cholangiocarcinoma 11 148387 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 148388 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 148389 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 148390 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 11 148391 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 148392 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 10 148393 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 11 148394 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 148395 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 12 148396 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 11 148397 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 148398 -NCIT:C157623 Metastatic Cholangiocarcinoma 10 148399 -NCIT:C162752 Advanced Cholangiocarcinoma 11 148400 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 148401 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 148402 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 148403 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 11 148404 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 148405 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 12 148406 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 11 148407 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 148408 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 11 148409 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 148410 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 148411 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 11 148412 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 148413 -NCIT:C185071 Metastatic Extrahepatic Bile Duct Carcinoma 10 148414 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 11 148415 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 12 148416 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 13 148417 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 148418 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 11 148419 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 148420 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 11 148421 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 148422 -NCIT:C162754 Metastatic Gallbladder Carcinoma 9 148423 -NCIT:C162755 Advanced Gallbladder Carcinoma 10 148424 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 10 148425 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 11 148426 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 9 148427 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 10 148428 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 11 148429 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 148430 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 12 148431 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 11 148432 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 148433 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 10 148434 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 11 148435 -NCIT:C171331 Advanced Biliary Tract Carcinoma 9 148436 -NCIT:C142870 Advanced Bile Duct Carcinoma 10 148437 -NCIT:C162752 Advanced Cholangiocarcinoma 11 148438 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 148439 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 148440 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 148441 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 11 148442 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 148443 -NCIT:C162755 Advanced Gallbladder Carcinoma 10 148444 -NCIT:C170459 Locally Advanced Pancreatobiliary Carcinoma 8 148445 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 9 148446 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 10 148447 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 11 148448 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 148449 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 12 148450 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 11 148451 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 148452 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 10 148453 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 11 148454 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 9 148455 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 10 148456 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 11 148457 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 11 148458 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 9 148459 -NCIT:C171326 Metastatic Ampulla of Vater Carcinoma 8 148460 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 9 148461 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 9 148462 -NCIT:C171330 Advanced Pancreatobiliary Carcinoma 8 148463 -NCIT:C165452 Advanced Pancreatic Carcinoma 9 148464 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 10 148465 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 11 148466 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 9 148467 -NCIT:C171331 Advanced Biliary Tract Carcinoma 9 148468 -NCIT:C142870 Advanced Bile Duct Carcinoma 10 148469 -NCIT:C162752 Advanced Cholangiocarcinoma 11 148470 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 148471 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 148472 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 148473 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 11 148474 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 148475 -NCIT:C162755 Advanced Gallbladder Carcinoma 10 148476 -NCIT:C170514 Metastatic Anal Carcinoma 7 148477 -NCIT:C168977 Locally Advanced Anal Carcinoma 8 148478 -NCIT:C169103 Metastatic Anal Squamous Cell Carcinoma 8 148479 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 9 148480 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 10 148481 -NCIT:C170515 Advanced Anal Carcinoma 8 148482 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 148483 -NCIT:C5612 Metastatic Anal Canal Carcinoma 8 148484 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 9 148485 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 10 148486 -NCIT:C8637 Metastatic Small Intestinal Carcinoma 7 148487 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 8 148488 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 148489 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 148490 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 148491 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 148492 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 148493 -NCIT:C8934 Metastatic Small Intestinal Adenocarcinoma 8 148494 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 148495 -NCIT:C146893 Metastatic Genitourinary System Carcinoma 6 148496 -NCIT:C126109 Metastatic Urothelial Carcinoma 7 148497 -NCIT:C148493 Advanced Urothelial Carcinoma 8 148498 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 148499 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 148500 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 148501 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 148502 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 148503 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 148504 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 148505 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 148506 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 148507 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 148508 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 148509 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 148510 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 148511 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 148512 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 148513 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 148514 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 148515 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 148516 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 148517 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 8 148518 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 148519 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 148520 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 148521 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 148522 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 148523 -NCIT:C191692 Metastatic Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 148524 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 148525 -NCIT:C191693 Metastatic Giant Cell Urothelial Carcinoma 8 148526 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 148527 -NCIT:C191694 Metastatic Lipid-Rich Urothelial Carcinoma 8 148528 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 148529 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 8 148530 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 148531 -NCIT:C191696 Metastatic Nested Urothelial Carcinoma 8 148532 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 148533 -NCIT:C191697 Metastatic Plasmacytoid Urothelial Carcinoma 8 148534 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 148535 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 8 148536 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 148537 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 8 148538 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 148539 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 148540 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 148541 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 9 148542 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 148543 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 148544 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 148545 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 148546 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 148547 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 148548 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 148549 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 148550 -NCIT:C153387 Metastatic Cervical Carcinoma 7 148551 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 8 148552 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 148553 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 148554 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 8 148555 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 148556 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 148557 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 148558 -NCIT:C153390 Metastatic Cervical Adenosquamous Carcinoma 8 148559 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 148560 -NCIT:C156294 Advanced Cervical Carcinoma 8 148561 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 148562 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 148563 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 148564 -NCIT:C156295 Locally Advanced Cervical Carcinoma 8 148565 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 148566 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 148567 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 9 148568 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 148569 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 148570 -NCIT:C156062 Metastatic Bladder Carcinoma 7 148571 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 148572 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 148573 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 148574 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 148575 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 148576 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 148577 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 148578 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 148579 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 148580 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 148581 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 148582 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 8 148583 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 8 148584 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 8 148585 -NCIT:C167071 Locally Advanced Bladder Carcinoma 8 148586 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 148587 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 9 148588 -NCIT:C167338 Advanced Bladder Carcinoma 8 148589 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 148590 -NCIT:C190772 Metastatic Non-Muscle Invasive Bladder Carcinoma 8 148591 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 9 148592 -NCIT:C156063 Metastatic Fallopian Tube Carcinoma 7 148593 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 8 148594 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 9 148595 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 8 148596 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 8 148597 -NCIT:C156064 Metastatic Ovarian Carcinoma 7 148598 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 8 148599 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 148600 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 148601 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 148602 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 9 148603 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 148604 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 148605 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 9 148606 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 148607 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 148608 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 148609 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 148610 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 148611 -NCIT:C165458 Advanced Ovarian Carcinoma 8 148612 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 148613 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 148614 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 148615 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 148616 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 148617 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 148618 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 148619 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 8 148620 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 148621 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 148622 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 148623 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 148624 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 8 148625 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 148626 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 8 148627 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 148628 -NCIT:C172234 Metastatic Ovarian Undifferentiated Carcinoma 8 148629 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 8 148630 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 148631 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 148632 -NCIT:C180333 Metastatic Microsatellite Stable Ovarian Carcinoma 8 148633 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 148634 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 8 148635 -NCIT:C27391 Metastatic Ovarian Small Cell Carcinoma, Hypercalcemic Type 8 148636 -NCIT:C156065 Metastatic Vaginal Carcinoma 7 148637 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 8 148638 -NCIT:C170788 Advanced Vaginal Carcinoma 8 148639 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 148640 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 148641 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 148642 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 148643 -NCIT:C181028 Metastatic Vaginal Adenosquamous Carcinoma 8 148644 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 148645 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 8 148646 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 148647 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 148648 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 8 148649 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 148650 -NCIT:C156066 Metastatic Vulvar Carcinoma 7 148651 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 8 148652 -NCIT:C170786 Advanced Vulvar Carcinoma 8 148653 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 8 148654 -NCIT:C156068 Metastatic Endometrial Carcinoma 7 148655 -NCIT:C159676 Advanced Endometrial Carcinoma 8 148656 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 148657 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 148658 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 148659 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 148660 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 8 148661 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 148662 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 148663 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 9 148664 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 8 148665 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 8 148666 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 148667 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 8 148668 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 9 148669 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 148670 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 148671 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 148672 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 148673 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 9 148674 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 148675 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 148676 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 148677 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 148678 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 9 148679 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 9 148680 -NCIT:C164143 Advanced Genitourinary System Carcinoma 7 148681 -NCIT:C148493 Advanced Urothelial Carcinoma 8 148682 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 148683 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 148684 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 148685 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 148686 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 148687 -NCIT:C156284 Advanced Prostate Carcinoma 8 148688 -NCIT:C156286 Advanced Prostate Adenocarcinoma 9 148689 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 148690 -NCIT:C156294 Advanced Cervical Carcinoma 8 148691 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 148692 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 148693 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 148694 -NCIT:C159676 Advanced Endometrial Carcinoma 8 148695 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 148696 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 148697 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 148698 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 148699 -NCIT:C165458 Advanced Ovarian Carcinoma 8 148700 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 148701 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 148702 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 148703 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 148704 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 148705 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 148706 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 148707 -NCIT:C167338 Advanced Bladder Carcinoma 8 148708 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 148709 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 8 148710 -NCIT:C170786 Advanced Vulvar Carcinoma 8 148711 -NCIT:C170788 Advanced Vaginal Carcinoma 8 148712 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 148713 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 148714 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 148715 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 148716 -NCIT:C170790 Advanced Penile Carcinoma 8 148717 -NCIT:C172617 Advanced Kidney Carcinoma 8 148718 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 148719 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 148720 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 148721 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 148722 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 148723 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 148724 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 148725 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 148726 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 148727 -NCIT:C167069 Locally Advanced Genitourinary System Carcinoma 7 148728 -NCIT:C156285 Locally Advanced Prostate Carcinoma 8 148729 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 9 148730 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 148731 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 9 148732 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 148733 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 9 148734 -NCIT:C156295 Locally Advanced Cervical Carcinoma 8 148735 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 148736 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 148737 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 9 148738 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 148739 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 148740 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 8 148741 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 148742 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 148743 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 148744 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 148745 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 148746 -NCIT:C167071 Locally Advanced Bladder Carcinoma 8 148747 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 148748 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 9 148749 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 8 148750 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 148751 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 148752 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 148753 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 148754 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 8 148755 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 9 148756 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 8 148757 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 148758 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 148759 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 9 148760 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 8 148761 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 8 148762 -NCIT:C170789 Locally Advanced Penile Carcinoma 8 148763 -NCIT:C172618 Locally Advanced Kidney Carcinoma 8 148764 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 148765 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 148766 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 148767 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 148768 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 148769 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 148770 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 148771 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 148772 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 148773 -NCIT:C185381 Metastatic Mesonephric Adenocarcinoma 7 148774 -NCIT:C27784 Metastatic Penile Carcinoma 7 148775 -NCIT:C170789 Locally Advanced Penile Carcinoma 8 148776 -NCIT:C170790 Advanced Penile Carcinoma 8 148777 -NCIT:C182111 Metastatic Squamous Cell Carcinoma of the Penis 8 148778 -NCIT:C27806 Metastatic Kidney Carcinoma 7 148779 -NCIT:C150595 Metastatic Renal Cell Carcinoma 8 148780 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 148781 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 148782 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 148783 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 148784 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 148785 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 148786 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 9 148787 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 148788 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 148789 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 9 148790 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 148791 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 148792 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 9 148793 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 148794 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 148795 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 148796 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 148797 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 148798 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 148799 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 148800 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 148801 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 148802 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 9 148803 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 148804 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 148805 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 9 148806 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 148807 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 148808 -NCIT:C157755 Metastatic Kidney Medullary Carcinoma 8 148809 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 148810 -NCIT:C163965 Metastatic Renal Pelvis Carcinoma 8 148811 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 148812 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 148813 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 148814 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 148815 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 148816 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 148817 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 148818 -NCIT:C172617 Advanced Kidney Carcinoma 8 148819 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 148820 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 148821 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 148822 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 148823 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 148824 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 148825 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 148826 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 148827 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 148828 -NCIT:C172618 Locally Advanced Kidney Carcinoma 8 148829 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 148830 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 148831 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 148832 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 148833 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 148834 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 148835 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 148836 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 148837 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 148838 -NCIT:C27818 Metastatic Ureter Carcinoma 7 148839 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 8 148840 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 148841 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 148842 -NCIT:C27819 Metastatic Urethral Carcinoma 7 148843 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 148844 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 148845 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 148846 -NCIT:C8946 Metastatic Prostate Carcinoma 7 148847 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 8 148848 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 9 148849 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 9 148850 -NCIT:C161609 Double-Negative Prostate Carcinoma 9 148851 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 9 148852 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 9 148853 -NCIT:C132881 Prostate Carcinoma Metastatic in the Soft Tissue 8 148854 -NCIT:C148536 Castration-Naive Prostate Carcinoma 8 148855 -NCIT:C153336 Castration-Sensitive Prostate Carcinoma 8 148856 -NCIT:C156284 Advanced Prostate Carcinoma 8 148857 -NCIT:C156286 Advanced Prostate Adenocarcinoma 9 148858 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 148859 -NCIT:C156285 Locally Advanced Prostate Carcinoma 8 148860 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 9 148861 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 148862 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 9 148863 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 148864 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 9 148865 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 8 148866 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 9 148867 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 9 148868 -NCIT:C161584 Prostate Carcinoma Metastatic in the Pelvic Cavity 8 148869 -NCIT:C161587 Prostate Carcinoma Metastatic in the Lymph Nodes 8 148870 -NCIT:C171265 Oligometastatic Prostate Carcinoma 8 148871 -NCIT:C36307 Prostate Carcinoma Metastatic in the Lung 8 148872 -NCIT:C36308 Prostate Carcinoma Metastatic in the Bone 8 148873 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 8 148874 -NCIT:C156286 Advanced Prostate Adenocarcinoma 9 148875 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 148876 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 9 148877 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 148878 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 148879 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 148880 -NCIT:C148128 Metastatic Thymic Carcinoma 6 148881 -NCIT:C148126 Locally Advanced Thymic Carcinoma 7 148882 -NCIT:C159903 Advanced Thymic Carcinoma 7 148883 -NCIT:C148130 Locally Advanced Carcinoma 6 148884 -NCIT:C148126 Locally Advanced Thymic Carcinoma 7 148885 -NCIT:C153206 Locally Advanced Lung Carcinoma 7 148886 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 8 148887 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 148888 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 148889 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 148890 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 148891 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 148892 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 148893 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 148894 -NCIT:C153213 Locally Advanced Head and Neck Carcinoma 7 148895 -NCIT:C158464 Locally Advanced Salivary Gland Carcinoma 8 148896 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 8 148897 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 148898 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 148899 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 148900 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 148901 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 148902 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 148903 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 148904 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 148905 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 148906 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 148907 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 148908 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 8 148909 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 148910 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 8 148911 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 148912 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 9 148913 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 148914 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 148915 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 9 148916 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 148917 -NCIT:C165562 Locally Advanced Lip and Oral Cavity Carcinoma 8 148918 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 9 148919 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 10 148920 -NCIT:C165563 Locally Advanced Paranasal Sinus Carcinoma 8 148921 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 148922 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 8 148923 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 148924 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 9 148925 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 148926 -NCIT:C153358 Locally Advanced Digestive System Carcinoma 7 148927 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 8 148928 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 148929 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 148930 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 148931 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 8 148932 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 9 148933 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 8 148934 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 148935 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 148936 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 148937 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 148938 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 148939 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 148940 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 148941 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 148942 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 148943 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 148944 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 148945 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 148946 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 148947 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 148948 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 148949 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 148950 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 148951 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 148952 -NCIT:C162772 Locally Advanced Gastric Carcinoma 8 148953 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 9 148954 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 10 148955 -NCIT:C168976 Locally Advanced Esophageal Carcinoma 8 148956 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 9 148957 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 10 148958 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 9 148959 -NCIT:C168977 Locally Advanced Anal Carcinoma 8 148960 -NCIT:C170459 Locally Advanced Pancreatobiliary Carcinoma 8 148961 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 9 148962 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 10 148963 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 11 148964 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 148965 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 12 148966 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 11 148967 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 148968 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 10 148969 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 11 148970 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 9 148971 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 10 148972 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 11 148973 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 11 148974 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 9 148975 -NCIT:C171298 Locally Advanced Liver Carcinoma 8 148976 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 9 148977 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 148978 -NCIT:C154321 Locally Advanced Squamous Cell Carcinoma 7 148979 -NCIT:C153182 Locally Advanced Skin Squamous Cell Carcinoma 8 148980 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 148981 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 148982 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 148983 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 8 148984 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 148985 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 148986 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 148987 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 148988 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 148989 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 148990 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 148991 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 148992 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 148993 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 148994 -NCIT:C165474 Locally Advanced Squamous Cell Carcinoma of Unknown Primary 8 148995 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 8 148996 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 148997 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 8 148998 -NCIT:C155698 Locally Advanced Unresectable Carcinoma 7 148999 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 8 149000 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 8 149001 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 8 149002 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 8 149003 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 149004 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 8 149005 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 149006 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 8 149007 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 149008 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 149009 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 8 149010 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 149011 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 149012 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 149013 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 149014 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 149015 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 149016 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 149017 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 8 149018 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 8 149019 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 8 149020 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 8 149021 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 8 149022 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 8 149023 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 8 149024 -NCIT:C156770 Locally Advanced Basal Cell Carcinoma 7 149025 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 8 149026 -NCIT:C158909 Locally Advanced Neuroendocrine Carcinoma 7 149027 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 149028 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 149029 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 8 149030 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 149031 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 149032 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 8 149033 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 149034 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 8 149035 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 149036 -NCIT:C160920 Locally Advanced Breast Carcinoma 7 149037 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 8 149038 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 149039 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 149040 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 149041 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 149042 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 8 149043 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 149044 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 149045 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 149046 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 149047 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 149048 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 149049 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 149050 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 149051 -NCIT:C167069 Locally Advanced Genitourinary System Carcinoma 7 149052 -NCIT:C156285 Locally Advanced Prostate Carcinoma 8 149053 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 9 149054 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 149055 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 9 149056 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 149057 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 9 149058 -NCIT:C156295 Locally Advanced Cervical Carcinoma 8 149059 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 149060 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 149061 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 9 149062 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 149063 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 149064 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 8 149065 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 149066 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 149067 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 149068 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 149069 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 149070 -NCIT:C167071 Locally Advanced Bladder Carcinoma 8 149071 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 149072 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 9 149073 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 8 149074 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 149075 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 149076 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 149077 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 149078 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 8 149079 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 9 149080 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 8 149081 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 149082 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 149083 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 9 149084 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 8 149085 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 8 149086 -NCIT:C170789 Locally Advanced Penile Carcinoma 8 149087 -NCIT:C172618 Locally Advanced Kidney Carcinoma 8 149088 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 149089 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 149090 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 149091 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 149092 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 149093 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 149094 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 149095 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 149096 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 149097 -NCIT:C167204 Locally Advanced Primary Peritoneal Carcinoma 7 149098 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 8 149099 -NCIT:C168978 Locally Advanced Adenocarcinoma 7 149100 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 8 149101 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 9 149102 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 9 149103 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 8 149104 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 149105 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 8 149106 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 149107 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 8 149108 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 9 149109 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 149110 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 149111 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 149112 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 8 149113 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 149114 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 149115 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 149116 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 149117 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 149118 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 149119 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 149120 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 149121 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 149122 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 8 149123 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 149124 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 9 149125 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 8 149126 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 149127 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 149128 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 149129 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 149130 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 149131 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 149132 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 149133 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 149134 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 8 149135 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 149136 -NCIT:C174045 Locally Advanced Endometrioid Adenocarcinoma 8 149137 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 149138 -NCIT:C174443 Locally Advanced Adrenal Cortical Carcinoma 8 149139 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 8 149140 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 8 149141 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 149142 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 149143 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 149144 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 149145 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 149146 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 149147 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 149148 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 149149 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 149150 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 149151 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 149152 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 149153 -NCIT:C175493 Locally Advanced Transitional Cell Carcinoma 7 149154 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 8 149155 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 149156 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 149157 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 149158 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 149159 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 149160 -NCIT:C175669 Locally Advanced Adenoid Cystic Carcinoma 7 149161 -NCIT:C153171 Advanced Carcinoma 6 149162 -NCIT:C129861 Advanced Head and Neck Carcinoma 7 149163 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 8 149164 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 149165 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 149166 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 149167 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 149168 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 149169 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 149170 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 149171 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 8 149172 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 149173 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 149174 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 149175 -NCIT:C170784 Advanced Pharyngeal Carcinoma 8 149176 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 9 149177 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 149178 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 149179 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 149180 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 149181 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 149182 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 9 149183 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 149184 -NCIT:C177723 Advanced Salivary Gland Carcinoma 8 149185 -NCIT:C153203 Advanced Lung Carcinoma 7 149186 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 149187 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 8 149188 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 149189 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 149190 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 149191 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 149192 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 149193 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 149194 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 149195 -NCIT:C180922 Advanced Bronchogenic Carcinoma 8 149196 -NCIT:C155870 Advanced Neuroendocrine Carcinoma 7 149197 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 149198 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 149199 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 149200 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 149201 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 149202 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 149203 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 149204 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 149205 -NCIT:C165300 Advanced Merkel Cell Carcinoma 8 149206 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 8 149207 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 149208 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 149209 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 149210 -NCIT:C156746 Advanced Digestive System Carcinoma 7 149211 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 149212 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 149213 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 149214 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 8 149215 -NCIT:C160599 Advanced Esophageal Carcinoma 8 149216 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 9 149217 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 9 149218 -NCIT:C162475 Advanced Colorectal Carcinoma 8 149219 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 149220 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 149221 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 149222 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 149223 -NCIT:C167238 Advanced Colon Carcinoma 9 149224 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 149225 -NCIT:C170777 Advanced Rectal Carcinoma 9 149226 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 149227 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 149228 -NCIT:C165299 Advanced Gastric Carcinoma 8 149229 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 149230 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 149231 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 149232 -NCIT:C166255 Advanced Gastric Adenocarcinoma 9 149233 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 10 149234 -NCIT:C167336 Advanced Hepatocellular Carcinoma 8 149235 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 149236 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 149237 -NCIT:C170515 Advanced Anal Carcinoma 8 149238 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 149239 -NCIT:C171330 Advanced Pancreatobiliary Carcinoma 8 149240 -NCIT:C165452 Advanced Pancreatic Carcinoma 9 149241 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 10 149242 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 11 149243 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 9 149244 -NCIT:C171331 Advanced Biliary Tract Carcinoma 9 149245 -NCIT:C142870 Advanced Bile Duct Carcinoma 10 149246 -NCIT:C162752 Advanced Cholangiocarcinoma 11 149247 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 149248 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 149249 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 149250 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 11 149251 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 149252 -NCIT:C162755 Advanced Gallbladder Carcinoma 10 149253 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 149254 -NCIT:C159556 Advanced Adenocarcinoma 7 149255 -NCIT:C153170 Advanced Renal Cell Carcinoma 8 149256 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 149257 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 149258 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 149259 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 149260 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 149261 -NCIT:C156286 Advanced Prostate Adenocarcinoma 8 149262 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 149263 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 149264 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 8 149265 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 8 149266 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 9 149267 -NCIT:C162752 Advanced Cholangiocarcinoma 8 149268 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 9 149269 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 9 149270 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 9 149271 -NCIT:C165700 Advanced Breast Adenocarcinoma 8 149272 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 149273 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 149274 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 149275 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 149276 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 149277 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 149278 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 149279 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 149280 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 149281 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 149282 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 149283 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 149284 -NCIT:C167336 Advanced Hepatocellular Carcinoma 8 149285 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 149286 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 149287 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 8 149288 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 149289 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 149290 -NCIT:C170807 Advanced Endometrioid Adenocarcinoma 8 149291 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 149292 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 149293 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 149294 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 149295 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 149296 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 149297 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 8 149298 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 8 149299 -NCIT:C176727 Advanced Lung Adenocarcinoma 8 149300 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 149301 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 149302 -NCIT:C191863 Advanced Adrenal Cortical Carcinoma 8 149303 -NCIT:C159903 Advanced Thymic Carcinoma 7 149304 -NCIT:C160298 Advanced NUT Carcinoma 7 149305 -NCIT:C162648 Advanced Breast Carcinoma 7 149306 -NCIT:C165700 Advanced Breast Adenocarcinoma 8 149307 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 149308 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 149309 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 149310 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 149311 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 149312 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 149313 -NCIT:C162653 Advanced Squamous Cell Carcinoma 7 149314 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 8 149315 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 149316 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 149317 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 149318 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 149319 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 149320 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 149321 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 149322 -NCIT:C168542 Advanced Skin Squamous Cell Carcinoma 8 149323 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 149324 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 8 149325 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 149326 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 149327 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 149328 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 8 149329 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 149330 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 149331 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 149332 -NCIT:C164012 Advanced Adenoid Cystic Carcinoma 7 149333 -NCIT:C164143 Advanced Genitourinary System Carcinoma 7 149334 -NCIT:C148493 Advanced Urothelial Carcinoma 8 149335 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 149336 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 149337 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 149338 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 149339 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 149340 -NCIT:C156284 Advanced Prostate Carcinoma 8 149341 -NCIT:C156286 Advanced Prostate Adenocarcinoma 9 149342 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 149343 -NCIT:C156294 Advanced Cervical Carcinoma 8 149344 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 149345 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 149346 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 149347 -NCIT:C159676 Advanced Endometrial Carcinoma 8 149348 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 149349 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 149350 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 149351 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 149352 -NCIT:C165458 Advanced Ovarian Carcinoma 8 149353 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 149354 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 149355 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 149356 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 149357 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 149358 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 149359 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 149360 -NCIT:C167338 Advanced Bladder Carcinoma 8 149361 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 149362 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 8 149363 -NCIT:C170786 Advanced Vulvar Carcinoma 8 149364 -NCIT:C170788 Advanced Vaginal Carcinoma 8 149365 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 149366 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 149367 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 149368 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 149369 -NCIT:C170790 Advanced Penile Carcinoma 8 149370 -NCIT:C172617 Advanced Kidney Carcinoma 8 149371 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 149372 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 149373 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 149374 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 149375 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 149376 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 149377 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 149378 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 149379 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 149380 -NCIT:C167396 Advanced Primary Peritoneal Carcinoma 7 149381 -NCIT:C170960 Advanced Carcinoma Of Unknown Primary 7 149382 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 8 149383 -NCIT:C172091 Advanced Transitional Cell Carcinoma 7 149384 -NCIT:C148493 Advanced Urothelial Carcinoma 8 149385 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 149386 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 149387 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 149388 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 149389 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 149390 -NCIT:C172362 Advanced Basal Cell Carcinoma 7 149391 -NCIT:C153202 Metastatic Lung Carcinoma 6 149392 -NCIT:C133503 Lung Carcinoma Metastatic in the Central Nervous System 7 149393 -NCIT:C36304 Lung Carcinoma Metastatic in the Brain 8 149394 -NCIT:C153203 Advanced Lung Carcinoma 7 149395 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 149396 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 8 149397 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 149398 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 149399 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 149400 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 149401 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 149402 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 149403 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 149404 -NCIT:C180922 Advanced Bronchogenic Carcinoma 8 149405 -NCIT:C153206 Locally Advanced Lung Carcinoma 7 149406 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 8 149407 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 149408 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 149409 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 149410 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 149411 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 149412 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 149413 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 149414 -NCIT:C156092 Metastatic Lung Squamous Cell Carcinoma 7 149415 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 149416 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 149417 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 149418 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 149419 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 149420 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 149421 -NCIT:C156094 Metastatic Lung Non-Small Cell Carcinoma 7 149422 -NCIT:C128798 Metastatic Lung Non-Squamous Non-Small Cell Carcinoma 8 149423 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 149424 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 149425 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 149426 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 149427 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 149428 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 149429 -NCIT:C155908 Metastatic Lung Adenocarcinoma 9 149430 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 149431 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 149432 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 9 149433 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 149434 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 149435 -NCIT:C156093 Metastatic Lung Adenosquamous Carcinoma 8 149436 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 149437 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 149438 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 149439 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 149440 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 149441 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 149442 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 8 149443 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 149444 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 149445 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 149446 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 149447 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 149448 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 149449 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 8 149450 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 149451 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 149452 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 149453 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 149454 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 149455 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 7 149456 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 149457 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 149458 -NCIT:C187195 Oligometastatic Lung Carcinoma 7 149459 -NCIT:C36305 Lung Carcinoma Metastatic in the Bone 7 149460 -NCIT:C36306 Lung Carcinoma Metastatic in the Liver 7 149461 -NCIT:C153238 Metastatic Breast Carcinoma 6 149462 -NCIT:C133501 Breast Carcinoma Metastatic in the Central Nervous System 7 149463 -NCIT:C36301 Breast Carcinoma Metastatic in the Brain 8 149464 -NCIT:C153227 Breast Carcinoma Metastatic in the Lymph Nodes 7 149465 -NCIT:C160920 Locally Advanced Breast Carcinoma 7 149466 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 8 149467 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 149468 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 149469 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 149470 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 149471 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 8 149472 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 149473 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 149474 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 149475 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 149476 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 149477 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 149478 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 149479 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 149480 -NCIT:C161830 Metastatic BRCA-Associated Breast Carcinoma 7 149481 -NCIT:C162648 Advanced Breast Carcinoma 7 149482 -NCIT:C165700 Advanced Breast Adenocarcinoma 8 149483 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 149484 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 149485 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 149486 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 149487 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 149488 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 149489 -NCIT:C165698 Metastatic Breast Adenocarcinoma 7 149490 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 8 149491 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 149492 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 149493 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 149494 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 149495 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 149496 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 149497 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 149498 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 149499 -NCIT:C165700 Advanced Breast Adenocarcinoma 8 149500 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 149501 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 149502 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 149503 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 149504 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 149505 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 149506 -NCIT:C168777 Metastatic HER2-Negative Breast Carcinoma 8 149507 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 149508 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 149509 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 149510 -NCIT:C179554 Metastatic HER2-Low Breast Carcinoma 8 149511 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 149512 -NCIT:C180924 Metastatic HER2-Positive Breast Carcinoma 8 149513 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 149514 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 149515 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 149516 -NCIT:C181787 Metastatic Breast Inflammatory Carcinoma 8 149517 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 9 149518 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 9 149519 -NCIT:C9246 Stage IIIB Breast Inflammatory Carcinoma 9 149520 -NCIT:C185880 Metastatic Hormone Receptor-Positive Breast Carcinoma 8 149521 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 149522 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 149523 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 149524 -NCIT:C190852 Metastatic Androgen Receptor-Positive Breast Carcinoma 9 149525 -NCIT:C190856 Metastatic Estrogen Receptor-Positive Breast Carcinoma 9 149526 -NCIT:C190677 Metastatic Hormone Receptor-Negative Breast Carcinoma 8 149527 -NCIT:C153348 Metastatic Triple-Negative Breast Carcinoma 9 149528 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 149529 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 10 149530 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 11 149531 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 10 149532 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 149533 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 149534 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 8 149535 -NCIT:C76326 Metastatic Breast Ductal Carcinoma 8 149536 -NCIT:C76328 Metastatic Breast Lobular Carcinoma 8 149537 -NCIT:C179515 Oligometastatic Breast Carcinoma 7 149538 -NCIT:C28311 Metastatic Breast Carcinoma in the Skin 7 149539 -NCIT:C36300 Breast Carcinoma Metastatic in the Lung 7 149540 -NCIT:C36302 Breast Carcinoma Metastatic in the Liver 7 149541 -NCIT:C36303 Breast Carcinoma Metastatic in the Bone 7 149542 -NCIT:C153226 Breast Carcinoma Metastatic in the Spine 8 149543 -NCIT:C5178 Metastatic Breast Squamous Cell Carcinoma 7 149544 -NCIT:C153315 Metastatic Unresectable Carcinoma 6 149545 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 7 149546 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 8 149547 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 8 149548 -NCIT:C155698 Locally Advanced Unresectable Carcinoma 7 149549 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 8 149550 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 8 149551 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 8 149552 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 8 149553 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 149554 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 8 149555 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 149556 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 8 149557 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 149558 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 149559 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 8 149560 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 149561 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 149562 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 149563 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 149564 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 149565 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 149566 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 149567 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 8 149568 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 8 149569 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 8 149570 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 8 149571 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 8 149572 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 8 149573 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 8 149574 -NCIT:C156788 Metastatic Unresectable Basal Cell Carcinoma 7 149575 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 8 149576 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 7 149577 -NCIT:C155869 Metastatic Neuroendocrine Carcinoma 6 149578 -NCIT:C155870 Advanced Neuroendocrine Carcinoma 7 149579 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 149580 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 149581 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 149582 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 149583 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 149584 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 149585 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 149586 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 149587 -NCIT:C165300 Advanced Merkel Cell Carcinoma 8 149588 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 8 149589 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 149590 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 149591 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 149592 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 7 149593 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 8 149594 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 149595 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 149596 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 149597 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 8 149598 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 149599 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 149600 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 149601 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 149602 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 149603 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 149604 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 149605 -NCIT:C158908 Metastatic Large Cell Neuroendocrine Carcinoma 7 149606 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 8 149607 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 8 149608 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 149609 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 8 149610 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 149611 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 149612 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 8 149613 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 149614 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 149615 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 149616 -NCIT:C158909 Locally Advanced Neuroendocrine Carcinoma 7 149617 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 149618 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 149619 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 8 149620 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 149621 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 149622 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 8 149623 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 149624 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 8 149625 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 149626 -NCIT:C158911 Metastatic Small Cell Neuroendocrine Carcinoma 7 149627 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 8 149628 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 9 149629 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 149630 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 8 149631 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 149632 -NCIT:C191852 Metastatic Extrapulmonary Small Cell Neuroendocrine Carcinoma 8 149633 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 149634 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 149635 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 9 149636 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 9 149637 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 7 149638 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 149639 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 149640 -NCIT:C162572 Metastatic Merkel Cell Carcinoma 7 149641 -NCIT:C165300 Advanced Merkel Cell Carcinoma 8 149642 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 8 149643 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 8 149644 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 7 149645 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 149646 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 149647 -NCIT:C163975 Neuroendocrine Carcinoma of Unknown Primary 7 149648 -NCIT:C156769 Metastatic Basal Cell Carcinoma 6 149649 -NCIT:C156770 Locally Advanced Basal Cell Carcinoma 7 149650 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 8 149651 -NCIT:C156788 Metastatic Unresectable Basal Cell Carcinoma 7 149652 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 8 149653 -NCIT:C172362 Advanced Basal Cell Carcinoma 7 149654 -NCIT:C157638 Metastatic Adenoid Cystic Carcinoma 6 149655 -NCIT:C156089 Metastatic Oral Cavity Adenoid Cystic Carcinoma 7 149656 -NCIT:C164012 Advanced Adenoid Cystic Carcinoma 7 149657 -NCIT:C175669 Locally Advanced Adenoid Cystic Carcinoma 7 149658 -NCIT:C160297 Metastatic NUT Carcinoma 6 149659 -NCIT:C160298 Advanced NUT Carcinoma 7 149660 -NCIT:C165537 Metastatic Non-Small Cell Carcinoma 6 149661 -NCIT:C156094 Metastatic Lung Non-Small Cell Carcinoma 7 149662 -NCIT:C128798 Metastatic Lung Non-Squamous Non-Small Cell Carcinoma 8 149663 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 149664 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 149665 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 149666 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 149667 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 149668 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 149669 -NCIT:C155908 Metastatic Lung Adenocarcinoma 9 149670 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 149671 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 149672 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 9 149673 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 149674 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 149675 -NCIT:C156093 Metastatic Lung Adenosquamous Carcinoma 8 149676 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 149677 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 149678 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 149679 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 149680 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 149681 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 149682 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 8 149683 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 149684 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 149685 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 149686 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 149687 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 149688 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 149689 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 8 149690 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 149691 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 149692 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 149693 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 149694 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 149695 -NCIT:C167203 Metastatic Primary Peritoneal Carcinoma 6 149696 -NCIT:C167204 Locally Advanced Primary Peritoneal Carcinoma 7 149697 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 8 149698 -NCIT:C167396 Advanced Primary Peritoneal Carcinoma 7 149699 -NCIT:C170972 Metastatic Primary Peritoneal Adenocarcinoma 7 149700 -NCIT:C171019 Metastatic Primary Peritoneal Serous Adenocarcinoma 8 149701 -NCIT:C186453 Metastatic Primary Peritoneal High Grade Serous Adenocarcinoma 9 149702 -NCIT:C179654 Metastatic Carcinoma in the Peritoneum 6 149703 -NCIT:C27382 Peritoneal Carcinomatosis 7 149704 -NCIT:C3345 Pseudomyxoma Peritonei 8 149705 -NCIT:C179179 Recurrent Pseudomyxoma Peritonei 9 149706 -NCIT:C179180 Refractory Pseudomyxoma Peritonei 9 149707 -NCIT:C188076 Metastatic Carcinoma in the Rectum 6 149708 -NCIT:C188077 Metastatic Carcinoma in the Pancreas 6 149709 -NCIT:C27381 Metastatic Carcinoma in the Adrenal Cortex 6 149710 -NCIT:C27408 Metastatic Carcinoma in the Lung 6 149711 -NCIT:C153224 Colorectal Carcinoma Metastatic in the Lung 7 149712 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 8 149713 -NCIT:C36300 Breast Carcinoma Metastatic in the Lung 7 149714 -NCIT:C36307 Prostate Carcinoma Metastatic in the Lung 7 149715 -NCIT:C27469 Disseminated Carcinoma 6 149716 -NCIT:C27185 Disseminated Adenocarcinoma 7 149717 -NCIT:C4829 Disseminated Squamous Cell Carcinoma 7 149718 -NCIT:C36082 Metastatic Carcinoma in the Bone 6 149719 -NCIT:C36303 Breast Carcinoma Metastatic in the Bone 7 149720 -NCIT:C153226 Breast Carcinoma Metastatic in the Spine 8 149721 -NCIT:C36305 Lung Carcinoma Metastatic in the Bone 7 149722 -NCIT:C36308 Prostate Carcinoma Metastatic in the Bone 7 149723 -NCIT:C3693 Carcinomatosis 6 149724 -NCIT:C168666 Gastrointestinal Carcinomatosis 7 149725 -NCIT:C27382 Peritoneal Carcinomatosis 7 149726 -NCIT:C3345 Pseudomyxoma Peritonei 8 149727 -NCIT:C179179 Recurrent Pseudomyxoma Peritonei 9 149728 -NCIT:C179180 Refractory Pseudomyxoma Peritonei 9 149729 -NCIT:C27383 Meningeal Carcinomatosis 7 149730 -NCIT:C27384 Pleural Carcinomatosis 7 149731 -NCIT:C27385 Pericardial Carcinomatosis 7 149732 -NCIT:C3870 Lymphangitic Carcinomatosis 7 149733 -NCIT:C3812 Carcinoma of Unknown Primary 6 149734 -NCIT:C162595 Head and Neck Carcinoma of Unknown Primary 7 149735 -NCIT:C173585 Neck Carcinoma of Unknown Primary 8 149736 -NCIT:C7713 Neck Squamous Cell Carcinoma of Unknown Primary 9 149737 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 10 149738 -NCIT:C187051 Human Papillomavirus-Related Head and Neck Squamous Cell Carcinoma of Unknown Primary 8 149739 -NCIT:C190149 Human Papillomavirus-Negative Head and Neck Squamous Cell Carcinoma of Unknown Primary 8 149740 -NCIT:C163975 Neuroendocrine Carcinoma of Unknown Primary 7 149741 -NCIT:C170960 Advanced Carcinoma Of Unknown Primary 7 149742 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 8 149743 -NCIT:C170961 Resectable Carcinoma of Unknown Primary 7 149744 -NCIT:C170962 Resectable Adenocarcinoma of Unknown Primary 8 149745 -NCIT:C4039 Adenocarcinoma of Unknown Primary 7 149746 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 8 149747 -NCIT:C170962 Resectable Adenocarcinoma of Unknown Primary 8 149748 -NCIT:C8099 Squamous Cell Carcinoma of Unknown Primary 7 149749 -NCIT:C165474 Locally Advanced Squamous Cell Carcinoma of Unknown Primary 8 149750 -NCIT:C187051 Human Papillomavirus-Related Head and Neck Squamous Cell Carcinoma of Unknown Primary 8 149751 -NCIT:C190149 Human Papillomavirus-Negative Head and Neck Squamous Cell Carcinoma of Unknown Primary 8 149752 -NCIT:C7713 Neck Squamous Cell Carcinoma of Unknown Primary 8 149753 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 9 149754 -NCIT:C8100 Undifferentiated Carcinoma of Unknown Primary 7 149755 -NCIT:C9181 Recurrent Carcinoma of Unknown Primary 7 149756 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 8 149757 -NCIT:C4104 Metastatic Squamous Cell Carcinoma 6 149758 -NCIT:C143013 Metastatic Skin Squamous Cell Carcinoma 7 149759 -NCIT:C153182 Locally Advanced Skin Squamous Cell Carcinoma 8 149760 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 149761 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 8 149762 -NCIT:C168542 Advanced Skin Squamous Cell Carcinoma 8 149763 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 149764 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 149765 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 149766 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 149767 -NCIT:C148153 Metastatic Head and Neck Squamous Cell Carcinoma 7 149768 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 8 149769 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 149770 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 149771 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 149772 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 149773 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 149774 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 149775 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 149776 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 149777 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 149778 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 149779 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 8 149780 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 149781 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 149782 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 149783 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 8 149784 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 149785 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 149786 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 149787 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 149788 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 149789 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 149790 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 149791 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 149792 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 149793 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 149794 -NCIT:C162882 Metastatic Sinonasal Squamous Cell Carcinoma 8 149795 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 149796 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 149797 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 149798 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 9 149799 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 149800 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 9 149801 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 149802 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 149803 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 149804 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 149805 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 8 149806 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 8 149807 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 149808 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 149809 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 149810 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 149811 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 149812 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 149813 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 149814 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 149815 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 149816 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 149817 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 149818 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 149819 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 149820 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 149821 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 149822 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 149823 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 149824 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 7 149825 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 149826 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 8 149827 -NCIT:C154321 Locally Advanced Squamous Cell Carcinoma 7 149828 -NCIT:C153182 Locally Advanced Skin Squamous Cell Carcinoma 8 149829 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 149830 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 149831 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 149832 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 8 149833 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 149834 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 149835 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 149836 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 149837 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 149838 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 149839 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 149840 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 149841 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 149842 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 149843 -NCIT:C165474 Locally Advanced Squamous Cell Carcinoma of Unknown Primary 8 149844 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 8 149845 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 149846 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 8 149847 -NCIT:C156075 Metastatic Esophageal Squamous Cell Carcinoma 7 149848 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 149849 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 149850 -NCIT:C156092 Metastatic Lung Squamous Cell Carcinoma 7 149851 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 149852 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 149853 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 149854 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 149855 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 149856 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 149857 -NCIT:C157452 Metastatic Squamous Cell Carcinoma in the Cervical Lymph Nodes 7 149858 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 7 149859 -NCIT:C162653 Advanced Squamous Cell Carcinoma 7 149860 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 8 149861 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 149862 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 149863 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 149864 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 149865 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 149866 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 149867 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 149868 -NCIT:C168542 Advanced Skin Squamous Cell Carcinoma 8 149869 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 149870 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 8 149871 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 149872 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 149873 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 149874 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 8 149875 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 149876 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 149877 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 149878 -NCIT:C169103 Metastatic Anal Squamous Cell Carcinoma 7 149879 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 149880 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 149881 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 7 149882 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 8 149883 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 8 149884 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 7 149885 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 7 149886 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 149887 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 149888 -NCIT:C182111 Metastatic Squamous Cell Carcinoma of the Penis 7 149889 -NCIT:C188112 Metastatic Squamous Cell Carcinoma in the Breast 7 149890 -NCIT:C188113 Metastatic Squamous Cell Carcinoma in the Skin 7 149891 -NCIT:C190771 Metastatic Pancreatic Squamous Cell Carcinoma 7 149892 -NCIT:C4829 Disseminated Squamous Cell Carcinoma 7 149893 -NCIT:C5178 Metastatic Breast Squamous Cell Carcinoma 7 149894 -NCIT:C8099 Squamous Cell Carcinoma of Unknown Primary 7 149895 -NCIT:C165474 Locally Advanced Squamous Cell Carcinoma of Unknown Primary 8 149896 -NCIT:C187051 Human Papillomavirus-Related Head and Neck Squamous Cell Carcinoma of Unknown Primary 8 149897 -NCIT:C190149 Human Papillomavirus-Negative Head and Neck Squamous Cell Carcinoma of Unknown Primary 8 149898 -NCIT:C7713 Neck Squamous Cell Carcinoma of Unknown Primary 8 149899 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 9 149900 -NCIT:C4124 Metastatic Adenocarcinoma 6 149901 -NCIT:C150577 Metastatic Gastroesophageal Junction Adenocarcinoma 7 149902 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 8 149903 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 8 149904 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 9 149905 -NCIT:C150595 Metastatic Renal Cell Carcinoma 7 149906 -NCIT:C153170 Advanced Renal Cell Carcinoma 8 149907 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 149908 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 149909 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 149910 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 149911 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 149912 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 8 149913 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 149914 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 149915 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 8 149916 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 149917 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 149918 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 8 149919 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 149920 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 149921 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 8 149922 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 149923 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 149924 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 149925 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 149926 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 149927 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 149928 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 8 149929 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 149930 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 149931 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 8 149932 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 149933 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 149934 -NCIT:C153319 Metastatic Gastric Adenocarcinoma 7 149935 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 149936 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 149937 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 149938 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 149939 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 149940 -NCIT:C165630 Metastatic Proximal Gastric Adenocarcinoma 8 149941 -NCIT:C166121 Oligometastatic Gastric Adenocarcinoma 8 149942 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 149943 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 149944 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 7 149945 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 8 149946 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 149947 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 149948 -NCIT:C154091 Metastatic Hepatocellular Carcinoma 7 149949 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 8 149950 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 149951 -NCIT:C167336 Advanced Hepatocellular Carcinoma 8 149952 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 149953 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 149954 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 149955 -NCIT:C155908 Metastatic Lung Adenocarcinoma 7 149956 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 8 149957 -NCIT:C176727 Advanced Lung Adenocarcinoma 8 149958 -NCIT:C156070 Metastatic Adrenal Cortical Carcinoma 7 149959 -NCIT:C174443 Locally Advanced Adrenal Cortical Carcinoma 8 149960 -NCIT:C191863 Advanced Adrenal Cortical Carcinoma 8 149961 -NCIT:C156074 Metastatic Esophageal Adenocarcinoma 7 149962 -NCIT:C166120 Oligometastatic Esophageal Adenocarcinoma 8 149963 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 149964 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 149965 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 149966 -NCIT:C172249 Metastatic Distal Esophagus Adenocarcinoma 8 149967 -NCIT:C157623 Metastatic Cholangiocarcinoma 7 149968 -NCIT:C162752 Advanced Cholangiocarcinoma 8 149969 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 9 149970 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 9 149971 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 9 149972 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 8 149973 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 149974 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 9 149975 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 8 149976 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 9 149977 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 8 149978 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 149979 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 9 149980 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 8 149981 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 9 149982 -NCIT:C159556 Advanced Adenocarcinoma 7 149983 -NCIT:C153170 Advanced Renal Cell Carcinoma 8 149984 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 149985 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 149986 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 149987 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 149988 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 149989 -NCIT:C156286 Advanced Prostate Adenocarcinoma 8 149990 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 149991 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 149992 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 8 149993 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 8 149994 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 9 149995 -NCIT:C162752 Advanced Cholangiocarcinoma 8 149996 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 9 149997 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 9 149998 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 9 149999 -NCIT:C165700 Advanced Breast Adenocarcinoma 8 150000 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 150001 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 150002 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 150003 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 150004 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 150005 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 150006 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 150007 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 150008 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 150009 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 150010 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 150011 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 150012 -NCIT:C167336 Advanced Hepatocellular Carcinoma 8 150013 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 150014 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 150015 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 8 150016 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 150017 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 150018 -NCIT:C170807 Advanced Endometrioid Adenocarcinoma 8 150019 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 150020 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 150021 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 150022 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 150023 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 150024 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 150025 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 8 150026 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 8 150027 -NCIT:C176727 Advanced Lung Adenocarcinoma 8 150028 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 150029 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 150030 -NCIT:C191863 Advanced Adrenal Cortical Carcinoma 8 150031 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 7 150032 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 150033 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 150034 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 150035 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 8 150036 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 150037 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 150038 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 8 150039 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 150040 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 150041 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 150042 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 150043 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 150044 -NCIT:C161048 Metastatic Colorectal Adenocarcinoma 7 150045 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 8 150046 -NCIT:C160819 Metastatic Colon Adenocarcinoma 8 150047 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 150048 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 150049 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 150050 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 8 150051 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 150052 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 150053 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 150054 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 8 150055 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 150056 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 150057 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 150058 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 150059 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 150060 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 150061 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 150062 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 150063 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 150064 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 150065 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 150066 -NCIT:C165698 Metastatic Breast Adenocarcinoma 7 150067 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 8 150068 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 150069 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 150070 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 150071 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 150072 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 150073 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 150074 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 150075 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 150076 -NCIT:C165700 Advanced Breast Adenocarcinoma 8 150077 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 150078 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 150079 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 150080 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 150081 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 150082 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 150083 -NCIT:C168777 Metastatic HER2-Negative Breast Carcinoma 8 150084 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 150085 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 150086 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 150087 -NCIT:C179554 Metastatic HER2-Low Breast Carcinoma 8 150088 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 150089 -NCIT:C180924 Metastatic HER2-Positive Breast Carcinoma 8 150090 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 150091 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 150092 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 150093 -NCIT:C181787 Metastatic Breast Inflammatory Carcinoma 8 150094 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 9 150095 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 9 150096 -NCIT:C9246 Stage IIIB Breast Inflammatory Carcinoma 9 150097 -NCIT:C185880 Metastatic Hormone Receptor-Positive Breast Carcinoma 8 150098 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 150099 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 150100 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 150101 -NCIT:C190852 Metastatic Androgen Receptor-Positive Breast Carcinoma 9 150102 -NCIT:C190856 Metastatic Estrogen Receptor-Positive Breast Carcinoma 9 150103 -NCIT:C190677 Metastatic Hormone Receptor-Negative Breast Carcinoma 8 150104 -NCIT:C153348 Metastatic Triple-Negative Breast Carcinoma 9 150105 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 150106 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 10 150107 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 11 150108 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 10 150109 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 150110 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 150111 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 8 150112 -NCIT:C76326 Metastatic Breast Ductal Carcinoma 8 150113 -NCIT:C76328 Metastatic Breast Lobular Carcinoma 8 150114 -NCIT:C168978 Locally Advanced Adenocarcinoma 7 150115 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 8 150116 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 9 150117 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 9 150118 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 8 150119 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 150120 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 8 150121 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 150122 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 8 150123 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 9 150124 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 150125 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 150126 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 150127 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 8 150128 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 150129 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 150130 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 150131 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 150132 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 150133 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 150134 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 150135 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 150136 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 150137 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 8 150138 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 150139 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 9 150140 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 8 150141 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 150142 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 150143 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 150144 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 150145 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 150146 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 150147 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 150148 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 150149 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 8 150150 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 150151 -NCIT:C174045 Locally Advanced Endometrioid Adenocarcinoma 8 150152 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 150153 -NCIT:C174443 Locally Advanced Adrenal Cortical Carcinoma 8 150154 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 8 150155 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 8 150156 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 150157 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 150158 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 150159 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 150160 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 150161 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 150162 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 150163 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 150164 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 150165 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 150166 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 150167 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 150168 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 7 150169 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 150170 -NCIT:C170972 Metastatic Primary Peritoneal Adenocarcinoma 7 150171 -NCIT:C171019 Metastatic Primary Peritoneal Serous Adenocarcinoma 8 150172 -NCIT:C186453 Metastatic Primary Peritoneal High Grade Serous Adenocarcinoma 9 150173 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 7 150174 -NCIT:C173979 Metastatic Differentiated Thyroid Gland Carcinoma 7 150175 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 8 150176 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 9 150177 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 10 150178 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 8 150179 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 8 150180 -NCIT:C174046 Metastatic Poorly Differentiated Thyroid Gland Carcinoma 7 150181 -NCIT:C182104 Metastatic Appendix Adenocarcinoma 7 150182 -NCIT:C162274 Metastatic Appendix Mucinous Adenocarcinoma 8 150183 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 150184 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 7 150185 -NCIT:C185381 Metastatic Mesonephric Adenocarcinoma 7 150186 -NCIT:C27185 Disseminated Adenocarcinoma 7 150187 -NCIT:C3345 Pseudomyxoma Peritonei 7 150188 -NCIT:C179179 Recurrent Pseudomyxoma Peritonei 8 150189 -NCIT:C179180 Refractory Pseudomyxoma Peritonei 8 150190 -NCIT:C4039 Adenocarcinoma of Unknown Primary 7 150191 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 8 150192 -NCIT:C170962 Resectable Adenocarcinoma of Unknown Primary 8 150193 -NCIT:C66717 Metastatic Signet Ring Cell Carcinoma 7 150194 -NCIT:C3153 Krukenberg Tumor 8 150195 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 8 150196 -NCIT:C8933 Metastatic Pancreatic Adenocarcinoma 7 150197 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 8 150198 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 9 150199 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 9 150200 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 8 150201 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 9 150202 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 9 150203 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 9 150204 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 8 150205 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 9 150206 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 8 150207 -NCIT:C8934 Metastatic Small Intestinal Adenocarcinoma 7 150208 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 150209 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 7 150210 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 8 150211 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 150212 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 8 150213 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 150214 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 150215 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 8 150216 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 150217 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 150218 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 8 150219 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 150220 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 8 150221 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 8 150222 -NCIT:C8943 Metastatic Endometrioid Adenocarcinoma 7 150223 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 8 150224 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 150225 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 150226 -NCIT:C170807 Advanced Endometrioid Adenocarcinoma 8 150227 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 150228 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 150229 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 8 150230 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 150231 -NCIT:C174045 Locally Advanced Endometrioid Adenocarcinoma 8 150232 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 150233 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 7 150234 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 150235 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 7 150236 -NCIT:C156286 Advanced Prostate Adenocarcinoma 8 150237 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 150238 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 8 150239 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 150240 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 8 150241 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 150242 -NCIT:C9044 Metastatic Parathyroid Gland Carcinoma 7 150243 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 150244 -NCIT:C5628 Metastatic Carcinoma in the Skin 6 150245 -NCIT:C188113 Metastatic Squamous Cell Carcinoma in the Skin 7 150246 -NCIT:C28311 Metastatic Breast Carcinoma in the Skin 7 150247 -NCIT:C6334 Metastatic Carcinoma in the Uterine Cervix 6 150248 -NCIT:C9276 Metastatic Carcinoma in the Adrenal Medulla 6 150249 -NCIT:C96767 Metastatic Carcinoma in the Liver 6 150250 -NCIT:C157366 Colorectal Carcinoma Metastatic in the Liver 7 150251 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 8 150252 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 8 150253 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 8 150254 -NCIT:C36302 Breast Carcinoma Metastatic in the Liver 7 150255 -NCIT:C36306 Lung Carcinoma Metastatic in the Liver 7 150256 -NCIT:C43344 Cylindrocarcinoma 5 150257 -NCIT:C4397 Carcinoma ex Pleomorphic Adenoma 5 150258 -NCIT:C40410 Salivary Gland Carcinoma ex Pleomorphic Adenoma 6 150259 -NCIT:C5975 Major Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 150260 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 150261 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 150262 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 150263 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 150264 -NCIT:C5976 Minor Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 150265 -NCIT:C6804 Lacrimal Gland Carcinoma ex Pleomorphic Adenoma 6 150266 -NCIT:C5117 Spiradenocarcinoma 5 150267 -NCIT:C5180 Malignant Breast Spiradenoma 6 150268 -NCIT:C54303 Primary Intraosseous Squamous Cell Carcinoma Derived From Keratocystic Odontogenic Tumor 5 150269 -NCIT:C7496 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated) 5 150270 -NCIT:C54298 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated), Intraosseous 6 150271 -NCIT:C54299 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated), Peripheral 6 150272 -NCIT:C7497 Ameloblastic Carcinoma Derived From Odontogenic Cyst 5 150273 -NCIT:C7500 Primary Intraosseous Squamous Cell Carcinoma Derived From Odontogenic Cyst 5 150274 -NCIT:C79949 Carcinoma Arising from Craniopharyngioma 5 150275 -NCIT:C3680 Cribriform Carcinoma 4 150276 -NCIT:C160974 Cribriform Adenocarcinoma of Minor Salivary Gland 5 150277 -NCIT:C162973 Non-Invasive Cribriform Carcinoma 5 150278 -NCIT:C5138 Breast Ductal Carcinoma In Situ, Cribriform Pattern 6 150279 -NCIT:C62192 Salivary Gland Intraductal Carcinoma 6 150280 -NCIT:C167366 Adnexal Cribriform Carcinoma 5 150281 -NCIT:C39895 Prostate Ductal Adenocarcinoma, Cribriform Pattern 5 150282 -NCIT:C5142 Invasive Breast Cribriform Carcinoma 5 150283 -NCIT:C5904 Salivary Duct Carcinoma 5 150284 -NCIT:C153611 Recurrent Salivary Duct Carcinoma 6 150285 -NCIT:C96488 Colorectal Cribriform Comedo-Type Adenocarcinoma 5 150286 -NCIT:C96489 Colon Cribriform Comedo-Type Adenocarcinoma 6 150287 -NCIT:C96490 Rectal Cribriform Comedo-Type Adenocarcinoma 6 150288 -NCIT:C96891 Gallbladder Cribriform Carcinoma 5 150289 -NCIT:C3692 Undifferentiated Carcinoma 4 150290 -NCIT:C162562 Primary Peritoneal Undifferentiated Carcinoma 5 150291 -NCIT:C170756 Recurrent Primary Peritoneal Undifferentiated Carcinoma 6 150292 -NCIT:C178689 Refractory Primary Peritoneal Undifferentiated Carcinoma 6 150293 -NCIT:C27419 Ampulla of Vater Undifferentiated Carcinoma 5 150294 -NCIT:C95965 Ampulla of Vater Undifferentiated Carcinoma with Osteoclast-Like Giant Cells 6 150295 -NCIT:C27422 Esophageal Undifferentiated Carcinoma 5 150296 -NCIT:C35718 Thymic Undifferentiated Carcinoma 5 150297 -NCIT:C3779 Giant Cell Carcinoma 5 150298 -NCIT:C4452 Lung Giant Cell Carcinoma 6 150299 -NCIT:C54342 Laryngeal Giant Cell Carcinoma 6 150300 -NCIT:C5838 Gallbladder Undifferentiated Carcinoma, Spindle and Giant Cell Type 6 150301 -NCIT:C3878 Thyroid Gland Anaplastic Carcinoma 5 150302 -NCIT:C140999 Thyroid Gland Anaplastic Carcinoma by AJCC v7 Stage 6 150303 -NCIT:C87552 Stage IVA Thyroid Gland Anaplastic Carcinoma AJCC v7 7 150304 -NCIT:C87553 Stage IVB Thyroid Gland Anaplastic Carcinoma AJCC v7 7 150305 -NCIT:C87554 Stage IVC Thyroid Gland Anaplastic Carcinoma AJCC v7 7 150306 -NCIT:C141000 Thyroid Gland Anaplastic Carcinoma by AJCC v8 Stage 6 150307 -NCIT:C141001 Stage IVA Thyroid Gland Anaplastic Carcinoma AJCC v8 7 150308 -NCIT:C141003 Stage IVB Thyroid Gland Anaplastic Carcinoma AJCC v8 7 150309 -NCIT:C141004 Stage IVC Thyroid Gland Anaplastic Carcinoma AJCC v8 7 150310 -NCIT:C153624 Recurrent Thyroid Gland Anaplastic Carcinoma 6 150311 -NCIT:C170831 Metastatic Thyroid Gland Anaplastic Carcinoma 6 150312 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 7 150313 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 7 150314 -NCIT:C170832 Refractory Thyroid Gland Anaplastic Carcinoma 6 150315 -NCIT:C170833 Unresectable Thyroid Gland Anaplastic Carcinoma 6 150316 -NCIT:C46008 Thyroid Gland Anaplastic Carcinoma, Squamous Cell Carcinoma Pattern 6 150317 -NCIT:C7906 Thyroid Gland Anaplastic Carcinoma, Osteoclastic Variant 6 150318 -NCIT:C40156 Endometrial Undifferentiated Carcinoma 5 150319 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 6 150320 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 6 150321 -NCIT:C40264 Vaginal Undifferentiated Carcinoma 5 150322 -NCIT:C43538 Small Intestinal Undifferentiated Carcinoma 5 150323 -NCIT:C43556 Appendix Undifferentiated Carcinoma 5 150324 -NCIT:C43591 Colorectal Undifferentiated Carcinoma 5 150325 -NCIT:C7100 Colon Undifferentiated Carcinoma 6 150326 -NCIT:C7974 Rectal Undifferentiated Carcinoma 6 150327 -NCIT:C4509 Ovarian Undifferentiated Carcinoma 5 150328 -NCIT:C170754 Recurrent Ovarian Undifferentiated Carcinoma 6 150329 -NCIT:C172234 Metastatic Ovarian Undifferentiated Carcinoma 6 150330 -NCIT:C172235 Unresectable Ovarian Undifferentiated Carcinoma 6 150331 -NCIT:C178683 Refractory Ovarian Undifferentiated Carcinoma 6 150332 -NCIT:C54294 Sinonasal Undifferentiated Carcinoma 5 150333 -NCIT:C54339 Laryngeal Undifferentiated Carcinoma 5 150334 -NCIT:C54341 Laryngeal Lymphoepithelial Carcinoma 6 150335 -NCIT:C54342 Laryngeal Giant Cell Carcinoma 6 150336 -NCIT:C5476 Gastric Undifferentiated Carcinoma 5 150337 -NCIT:C5597 Prostate Undifferentiated Carcinoma 5 150338 -NCIT:C5780 Extrahepatic Bile Duct Undifferentiated Carcinoma 5 150339 -NCIT:C6159 Ureter Undifferentiated Carcinoma 5 150340 -NCIT:C6168 Urethral Undifferentiated Carcinoma 5 150341 -NCIT:C6281 Fallopian Tube Undifferentiated Carcinoma 5 150342 -NCIT:C170755 Recurrent Fallopian Tube Undifferentiated Carcinoma 6 150343 -NCIT:C178675 Refractory Fallopian Tube Undifferentiated Carcinoma 6 150344 -NCIT:C6345 Cervical Undifferentiated Carcinoma 5 150345 -NCIT:C63622 Undifferentiated Carcinoma with Osteoclast-Like Giant Cells 5 150346 -NCIT:C7906 Thyroid Gland Anaplastic Carcinoma, Osteoclastic Variant 6 150347 -NCIT:C95965 Ampulla of Vater Undifferentiated Carcinoma with Osteoclast-Like Giant Cells 6 150348 -NCIT:C8024 Salivary Gland Undifferentiated Carcinoma 5 150349 -NCIT:C5946 Parotid Gland Undifferentiated Carcinoma 6 150350 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 7 150351 -NCIT:C5947 Submandibular Gland Undifferentiated Carcinoma 6 150352 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 7 150353 -NCIT:C5954 Minor Salivary Gland Undifferentiated Carcinoma 6 150354 -NCIT:C8100 Undifferentiated Carcinoma of Unknown Primary 5 150355 -NCIT:C9167 Gallbladder Undifferentiated Carcinoma 5 150356 -NCIT:C5838 Gallbladder Undifferentiated Carcinoma, Spindle and Giant Cell Type 6 150357 -NCIT:C96529 Anal Canal Undifferentiated Carcinoma 5 150358 -NCIT:C96792 Liver Undifferentiated Carcinoma 5 150359 -NCIT:C3773 Neuroendocrine Carcinoma 4 150360 -NCIT:C155869 Metastatic Neuroendocrine Carcinoma 5 150361 -NCIT:C155870 Advanced Neuroendocrine Carcinoma 6 150362 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 7 150363 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 150364 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 150365 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 7 150366 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 150367 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 150368 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 150369 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 7 150370 -NCIT:C165300 Advanced Merkel Cell Carcinoma 7 150371 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 7 150372 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 150373 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 150374 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 150375 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 6 150376 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 7 150377 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 150378 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 150379 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 150380 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 7 150381 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 150382 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 150383 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 150384 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 7 150385 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 150386 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 150387 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 150388 -NCIT:C158908 Metastatic Large Cell Neuroendocrine Carcinoma 6 150389 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 7 150390 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 7 150391 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 150392 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 7 150393 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 150394 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 150395 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 7 150396 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 150397 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 150398 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 150399 -NCIT:C158909 Locally Advanced Neuroendocrine Carcinoma 6 150400 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 150401 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 150402 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 7 150403 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 150404 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 7 150405 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 7 150406 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 150407 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 7 150408 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 7 150409 -NCIT:C158911 Metastatic Small Cell Neuroendocrine Carcinoma 6 150410 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 7 150411 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 150412 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 150413 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 7 150414 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 150415 -NCIT:C191852 Metastatic Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 150416 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 150417 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 150418 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 8 150419 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 150420 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 6 150421 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 7 150422 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 7 150423 -NCIT:C162572 Metastatic Merkel Cell Carcinoma 6 150424 -NCIT:C165300 Advanced Merkel Cell Carcinoma 7 150425 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 7 150426 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 7 150427 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 6 150428 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 7 150429 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 7 150430 -NCIT:C163975 Neuroendocrine Carcinoma of Unknown Primary 6 150431 -NCIT:C160980 Head and Neck Neuroendocrine Carcinoma 5 150432 -NCIT:C160981 Head and Neck Small Cell Neuroendocrine Carcinoma 6 150433 -NCIT:C116318 Sinonasal Small Cell Neuroendocrine Carcinoma 7 150434 -NCIT:C35703 Salivary Gland Small Cell Neuroendocrine Carcinoma 7 150435 -NCIT:C5956 Minor Salivary Gland Small Cell Neuroendocrine Carcinoma 8 150436 -NCIT:C6025 Laryngeal Small Cell Neuroendocrine Carcinoma 7 150437 -NCIT:C160982 Head and Neck Large Cell Neuroendocrine Carcinoma 6 150438 -NCIT:C173091 Sinonasal Large Cell Neuroendocrine Carcinoma 7 150439 -NCIT:C173395 Laryngeal Large Cell Neuroendocrine Carcinoma 7 150440 -NCIT:C173650 Salivary Gland Large Cell Neuroendocrine Carcinoma 7 150441 -NCIT:C173089 Sinonasal Neuroendocrine Carcinoma 6 150442 -NCIT:C116318 Sinonasal Small Cell Neuroendocrine Carcinoma 7 150443 -NCIT:C173091 Sinonasal Large Cell Neuroendocrine Carcinoma 7 150444 -NCIT:C173390 Laryngeal Neuroendocrine Carcinoma 6 150445 -NCIT:C173395 Laryngeal Large Cell Neuroendocrine Carcinoma 7 150446 -NCIT:C6025 Laryngeal Small Cell Neuroendocrine Carcinoma 7 150447 -NCIT:C173587 Head and Neck Merkel Cell Carcinoma 6 150448 -NCIT:C173653 Salivary Gland Neuroendocrine Carcinoma 6 150449 -NCIT:C173650 Salivary Gland Large Cell Neuroendocrine Carcinoma 7 150450 -NCIT:C35703 Salivary Gland Small Cell Neuroendocrine Carcinoma 7 150451 -NCIT:C5956 Minor Salivary Gland Small Cell Neuroendocrine Carcinoma 8 150452 -NCIT:C3879 Thyroid Gland Medullary Carcinoma 6 150453 -NCIT:C123905 Childhood Thyroid Gland Medullary Carcinoma 7 150454 -NCIT:C141041 Thyroid Gland Medullary Carcinoma by AJCC v7 Stage 7 150455 -NCIT:C6133 Stage I Thyroid Gland Medullary Carcinoma AJCC v7 8 150456 -NCIT:C6134 Stage II Thyroid Gland Medullary Carcinoma AJCC v7 8 150457 -NCIT:C6135 Stage III Thyroid Gland Medullary Carcinoma AJCC v7 8 150458 -NCIT:C6136 Stage IV Thyroid Gland Medullary Carcinoma AJCC v7 8 150459 -NCIT:C87549 Stage IVA Thyroid Gland Medullary Carcinoma AJCC v7 9 150460 -NCIT:C87550 Stage IVB Thyroid Gland Medullary Carcinoma AJCC v7 9 150461 -NCIT:C87551 Stage IVC Thyroid Gland Medullary Carcinoma AJCC v7 9 150462 -NCIT:C141042 Thyroid Gland Medullary Carcinoma by AJCC v8 Stage 7 150463 -NCIT:C141043 Stage I Thyroid Gland Medullary Carcinoma AJCC v8 8 150464 -NCIT:C141044 Stage II Thyroid Gland Medullary Carcinoma AJCC v8 8 150465 -NCIT:C141045 Stage III Thyroid Gland Medullary Carcinoma AJCC v8 8 150466 -NCIT:C141046 Stage IV Thyroid Gland Medullary Carcinoma AJCC v8 8 150467 -NCIT:C141047 Stage IVA Thyroid Gland Medullary Carcinoma AJCC v8 9 150468 -NCIT:C141048 Stage IVB Thyroid Gland Medullary Carcinoma AJCC v8 9 150469 -NCIT:C141049 Stage IVC Thyroid Gland Medullary Carcinoma AJCC v8 9 150470 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 7 150471 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 8 150472 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 7 150473 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 150474 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 150475 -NCIT:C163974 Unresectable Thyroid Gland Medullary Carcinoma 7 150476 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 8 150477 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 7 150478 -NCIT:C4193 Thyroid Gland Medullary Carcinoma with Amyloid Stroma 7 150479 -NCIT:C46098 Sporadic Thyroid Gland Medullary Carcinoma 7 150480 -NCIT:C46103 Sporadic Thyroid Gland Micromedullary Carcinoma 8 150481 -NCIT:C46099 Hereditary Thyroid Gland Medullary Carcinoma 7 150482 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 8 150483 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 8 150484 -NCIT:C165253 Recurrent Neuroendocrine Carcinoma 5 150485 -NCIT:C115440 Recurrent Merkel Cell Carcinoma 6 150486 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 7 150487 -NCIT:C165740 Locally Recurrent Merkel Cell Carcinoma 7 150488 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 6 150489 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 7 150490 -NCIT:C155938 Recurrent Digestive System Neuroendocrine Carcinoma 6 150491 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 7 150492 -NCIT:C183127 Recurrent Small Cell Neuroendocrine Carcinoma 6 150493 -NCIT:C183128 Recurrent Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 150494 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 8 150495 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 150496 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 7 150497 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 8 150498 -NCIT:C165742 Refractory Neuroendocrine Carcinoma 5 150499 -NCIT:C155937 Refractory Digestive System Neuroendocrine Carcinoma 6 150500 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 7 150501 -NCIT:C165741 Refractory Merkel Cell Carcinoma 6 150502 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 6 150503 -NCIT:C191853 Refractory Small Cell Neuroendocrine Carcinoma 6 150504 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 7 150505 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 8 150506 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 8 150507 -NCIT:C191854 Refractory Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 150508 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 8 150509 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 8 150510 -NCIT:C172806 Unresectable Neuroendocrine Carcinoma 5 150511 -NCIT:C155935 Unresectable Digestive System Neuroendocrine Carcinoma 6 150512 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 7 150513 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 7 150514 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 6 150515 -NCIT:C162786 Unresectable Merkel Cell Carcinoma 6 150516 -NCIT:C163974 Unresectable Thyroid Gland Medullary Carcinoma 6 150517 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 7 150518 -NCIT:C172810 Unresectable Large Cell Neuroendocrine Carcinoma 6 150519 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 7 150520 -NCIT:C191855 Unresectable Extrapulmonary Small Cell Neuroendocrine Carcinoma 6 150521 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 7 150522 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 7 150523 -NCIT:C173385 Neuroendocrine Carcinoma, Excluding Head and Neck 5 150524 -NCIT:C128045 Cervical Neuroendocrine Carcinoma 6 150525 -NCIT:C40214 Cervical Large Cell Neuroendocrine Carcinoma 7 150526 -NCIT:C7982 Cervical Small Cell Neuroendocrine Carcinoma 7 150527 -NCIT:C128073 Vaginal Neuroendocrine Carcinoma 6 150528 -NCIT:C128075 Vaginal Large Cell Neuroendocrine Carcinoma 7 150529 -NCIT:C40263 Vaginal Small Cell Neuroendocrine Carcinoma 7 150530 -NCIT:C128243 Vulvar Neuroendocrine Carcinoma 6 150531 -NCIT:C128244 Vulvar Small Cell Neuroendocrine Carcinoma 7 150532 -NCIT:C40298 Bartholin Gland Small Cell Neuroendocrine Carcinoma 8 150533 -NCIT:C128245 Vulvar Large Cell Neuroendocrine Carcinoma 7 150534 -NCIT:C128247 Vulvar Merkel Cell Carcinoma 7 150535 -NCIT:C157759 Bladder Neuroendocrine Carcinoma 6 150536 -NCIT:C157760 Bladder Large Cell Neuroendocrine Carcinoma 7 150537 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 8 150538 -NCIT:C9461 Bladder Small Cell Neuroendocrine Carcinoma 7 150539 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 8 150540 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 8 150541 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 150542 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 8 150543 -NCIT:C158912 Prostate Neuroendocrine Carcinoma 6 150544 -NCIT:C158650 Prostate Large Cell Neuroendocrine Carcinoma 7 150545 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 7 150546 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 150547 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 150548 -NCIT:C6766 Prostate Small Cell Neuroendocrine Carcinoma 7 150549 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 150550 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 8 150551 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 8 150552 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 8 150553 -NCIT:C159224 Kidney Neuroendocrine Carcinoma 6 150554 -NCIT:C116317 Kidney Small Cell Neuroendocrine Carcinoma 7 150555 -NCIT:C159225 Kidney Large Cell Neuroendocrine Carcinoma 7 150556 -NCIT:C175581 Breast Neuroendocrine Carcinoma 6 150557 -NCIT:C40356 Breast Large Cell Neuroendocrine Carcinoma 7 150558 -NCIT:C6760 Breast Small Cell Neuroendocrine Carcinoma 7 150559 -NCIT:C45569 Lung Neuroendocrine Carcinoma 6 150560 -NCIT:C4917 Lung Small Cell Carcinoma 7 150561 -NCIT:C118815 Childhood Lung Small Cell Carcinoma 8 150562 -NCIT:C136496 Lung Small Cell Carcinoma by AJCC v7 Stage 8 150563 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 9 150564 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 10 150565 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 10 150566 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 9 150567 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 10 150568 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 10 150569 -NCIT:C6679 Stage III Lung Small Cell Carcinoma AJCC v7 9 150570 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 10 150571 -NCIT:C6681 Stage IIIB Lung Small Cell Carcinoma AJCC v7 10 150572 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 11 150573 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 11 150574 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 9 150575 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 8 150576 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 9 150577 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 9 150578 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 8 150579 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 9 150580 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 150581 -NCIT:C158495 Platinum-Sensitive Lung Small Cell Carcinoma 8 150582 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 8 150583 -NCIT:C188753 Lung Small Cell Carcinoma Neuroendocrine Subtype 8 150584 -NCIT:C188754 Lung Small Cell Carcinoma, Neuroendocrine-High Subtype 9 150585 -NCIT:C188755 Lung Small Cell Carcinoma, Neuroendocrine-Low Subtype 9 150586 -NCIT:C188756 Lung Small Cell Carcinoma Molecular Subtypes 8 150587 -NCIT:C188761 Lung Small Cell Carcinoma, A Subtype 9 150588 -NCIT:C188762 Lung Small Cell Carcinoma, N Subtype 9 150589 -NCIT:C188763 Lung Small Cell Carcinoma, P Subtype 9 150590 -NCIT:C188765 Lung Small Cell Carcinoma, I Subtype 9 150591 -NCIT:C188766 Lung Small Cell Carcinoma, Y Subtype 9 150592 -NCIT:C6683 Occult Lung Small Cell Carcinoma 8 150593 -NCIT:C7853 Limited Stage Lung Small Cell Carcinoma 8 150594 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 9 150595 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 9 150596 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 10 150597 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 10 150598 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 9 150599 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 10 150600 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 10 150601 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 9 150602 -NCIT:C9049 Extensive Stage Lung Small Cell Carcinoma 8 150603 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 9 150604 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 9 150605 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 9 150606 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 9 150607 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 8 150608 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 9 150609 -NCIT:C9137 Combined Lung Small Cell Carcinoma 8 150610 -NCIT:C9379 Combined Lung Small Cell Carcinoma and Lung Adenocarcinoma 9 150611 -NCIT:C9423 Combined Lung Small Cell and Squamous Cell Carcinoma 9 150612 -NCIT:C5672 Lung Large Cell Neuroendocrine Carcinoma 7 150613 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 8 150614 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 150615 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 150616 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 8 150617 -NCIT:C7267 Combined Lung Large Cell Neuroendocrine Carcinoma 8 150618 -NCIT:C7591 Combined Lung Carcinoma 7 150619 -NCIT:C7267 Combined Lung Large Cell Neuroendocrine Carcinoma 8 150620 -NCIT:C9137 Combined Lung Small Cell Carcinoma 8 150621 -NCIT:C9379 Combined Lung Small Cell Carcinoma and Lung Adenocarcinoma 9 150622 -NCIT:C9423 Combined Lung Small Cell and Squamous Cell Carcinoma 9 150623 -NCIT:C9231 Merkel Cell Carcinoma 6 150624 -NCIT:C115440 Recurrent Merkel Cell Carcinoma 7 150625 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 8 150626 -NCIT:C165740 Locally Recurrent Merkel Cell Carcinoma 8 150627 -NCIT:C128247 Vulvar Merkel Cell Carcinoma 7 150628 -NCIT:C136869 Merkel Cell Carcinoma by AJCC v7 Stage 7 150629 -NCIT:C85887 Stage 0 Merkel Cell Carcinoma AJCC v7 8 150630 -NCIT:C85889 Stage I Merkel Cell Carcinoma AJCC v7 8 150631 -NCIT:C85890 Stage IA Merkel Cell Carcinoma AJCC v7 9 150632 -NCIT:C85892 Stage IB Merkel Cell Carcinoma AJCC v7 9 150633 -NCIT:C85893 Stage II Merkel Cell Carcinoma AJCC v7 8 150634 -NCIT:C85894 Stage IIA Merkel Cell Carcinoma AJCC v7 9 150635 -NCIT:C85895 Stage IIB Merkel Cell Carcinoma AJCC v7 9 150636 -NCIT:C85896 Stage IIC Merkel Cell Carcinoma AJCC v7 9 150637 -NCIT:C85897 Stage III Merkel Cell Carcinoma AJCC v7 8 150638 -NCIT:C85898 Stage IIIA Merkel Cell Carcinoma AJCC v7 9 150639 -NCIT:C85899 Stage IIIB Merkel Cell Carcinoma AJCC v7 9 150640 -NCIT:C85900 Stage IV Merkel Cell Carcinoma AJCC v7 8 150641 -NCIT:C136870 Merkel Cell Carcinoma by AJCC v8 Stage 7 150642 -NCIT:C136871 Merkel Cell Carcinoma by AJCC v8 Clinical Stage 8 150643 -NCIT:C136872 Clinical Stage 0 Merkel Cell Carcinoma AJCC v8 9 150644 -NCIT:C136873 Clinical Stage I Merkel Cell Carcinoma AJCC v8 9 150645 -NCIT:C136874 Clinical Stage II Merkel Cell Carcinoma AJCC v8 9 150646 -NCIT:C136875 Clinical Stage IIA Merkel Cell Carcinoma AJCC v8 10 150647 -NCIT:C136876 Clinical Stage IIB Merkel Cell Carcinoma AJCC v8 10 150648 -NCIT:C136877 Clinical Stage III Merkel Cell Carcinoma AJCC v8 9 150649 -NCIT:C136878 Clinical Stage IV Merkel Cell Carcinoma AJCC v8 9 150650 -NCIT:C136880 Merkel Cell Carcinoma by AJCC v8 Pathologic Stage 8 150651 -NCIT:C136881 Pathologic Stage 0 Merkel Cell Carcinoma AJCC v8 9 150652 -NCIT:C136882 Pathologic Stage I Merkel Cell Carcinoma AJCC v8 9 150653 -NCIT:C136883 Pathologic Stage II Merkel Cell Carcinoma AJCC v8 9 150654 -NCIT:C136884 Pathologic Stage IIA Merkel Cell Carcinoma AJCC v8 10 150655 -NCIT:C136885 Pathologic Stage IIB Merkel Cell Carcinoma AJCC v8 10 150656 -NCIT:C136886 Pathologic Stage III Merkel Cell Carcinoma AJCC v8 9 150657 -NCIT:C136887 Pathologic Stage IIIA Merkel Cell Carcinoma AJCC v8 10 150658 -NCIT:C136888 Pathologic Stage IIIB Merkel Cell Carcinoma AJCC v8 10 150659 -NCIT:C136889 Pathologic Stage IV Merkel Cell Carcinoma AJCC v8 9 150660 -NCIT:C162572 Metastatic Merkel Cell Carcinoma 7 150661 -NCIT:C165300 Advanced Merkel Cell Carcinoma 8 150662 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 8 150663 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 8 150664 -NCIT:C162786 Unresectable Merkel Cell Carcinoma 7 150665 -NCIT:C165741 Refractory Merkel Cell Carcinoma 7 150666 -NCIT:C95405 Digestive System Neuroendocrine Carcinoma 6 150667 -NCIT:C126324 Gastroesophageal Junction Neuroendocrine Carcinoma 7 150668 -NCIT:C126323 Gastroesophageal Junction Large Cell Neuroendocrine Carcinoma 8 150669 -NCIT:C126325 Gastroesophageal Junction Small Cell Neuroendocrine Carcinoma 8 150670 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 8 150671 -NCIT:C154617 Digestive System Large Cell Neuroendocrine Carcinoma 7 150672 -NCIT:C126323 Gastroesophageal Junction Large Cell Neuroendocrine Carcinoma 8 150673 -NCIT:C172722 Liver Large Cell Neuroendocrine Carcinoma 8 150674 -NCIT:C95582 Pancreatic Large Cell Neuroendocrine Carcinoma 8 150675 -NCIT:C95620 Esophageal Large Cell Neuroendocrine Carcinoma 8 150676 -NCIT:C95885 Gastric Large Cell Neuroendocrine Carcinoma 8 150677 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 150678 -NCIT:C95985 Ampulla of Vater Large Cell Neuroendocrine Carcinoma 8 150679 -NCIT:C96065 Small Intestinal Large Cell Neuroendocrine Carcinoma 8 150680 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 150681 -NCIT:C96157 Colorectal Large Cell Neuroendocrine Carcinoma 8 150682 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 9 150683 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 9 150684 -NCIT:C96426 Appendix Large Cell Neuroendocrine Carcinoma 8 150685 -NCIT:C96550 Anal Canal Large Cell Neuroendocrine Carcinoma 8 150686 -NCIT:C96921 Gallbladder Large Cell Neuroendocrine Carcinoma 8 150687 -NCIT:C96958 Extrahepatic Bile Duct Large Cell Neuroendocrine Carcinoma 8 150688 -NCIT:C154641 Digestive System Small Cell Neuroendocrine Carcinoma 7 150689 -NCIT:C126325 Gastroesophageal Junction Small Cell Neuroendocrine Carcinoma 8 150690 -NCIT:C172725 Liver Small Cell Neuroendocrine Carcinoma 8 150691 -NCIT:C27449 Small Intestinal Small Cell Neuroendocrine Carcinoma 8 150692 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 150693 -NCIT:C43555 Appendix Small Cell Neuroendocrine Carcinoma 8 150694 -NCIT:C43587 Colorectal Small Cell Neuroendocrine Carcinoma 8 150695 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 9 150696 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 9 150697 -NCIT:C5845 Extrahepatic Bile Duct Small Cell Neuroendocrine Carcinoma 8 150698 -NCIT:C6655 Ampulla of Vater Small Cell Neuroendocrine Carcinoma 8 150699 -NCIT:C6762 Esophageal Small Cell Neuroendocrine Carcinoma 8 150700 -NCIT:C6763 Gallbladder Small Cell Neuroendocrine Carcinoma 8 150701 -NCIT:C6764 Gastric Small Cell Neuroendocrine Carcinoma 8 150702 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 150703 -NCIT:C95583 Pancreatic Small Cell Neuroendocrine Carcinoma 8 150704 -NCIT:C96551 Anal Canal Small Cell Neuroendocrine Carcinoma 8 150705 -NCIT:C155935 Unresectable Digestive System Neuroendocrine Carcinoma 7 150706 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 8 150707 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 8 150708 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 7 150709 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 8 150710 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 150711 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 150712 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 150713 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 8 150714 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 150715 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 150716 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 150717 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 150718 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 150719 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 150720 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 150721 -NCIT:C155937 Refractory Digestive System Neuroendocrine Carcinoma 7 150722 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 8 150723 -NCIT:C155938 Recurrent Digestive System Neuroendocrine Carcinoma 7 150724 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 8 150725 -NCIT:C3770 Pancreatic Neuroendocrine Carcinoma 7 150726 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 8 150727 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 8 150728 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 8 150729 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 150730 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 8 150731 -NCIT:C95582 Pancreatic Large Cell Neuroendocrine Carcinoma 8 150732 -NCIT:C95583 Pancreatic Small Cell Neuroendocrine Carcinoma 8 150733 -NCIT:C95619 Esophageal Neuroendocrine Carcinoma 7 150734 -NCIT:C6762 Esophageal Small Cell Neuroendocrine Carcinoma 8 150735 -NCIT:C95620 Esophageal Large Cell Neuroendocrine Carcinoma 8 150736 -NCIT:C95884 Gastric Neuroendocrine Carcinoma 7 150737 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 8 150738 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 150739 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 150740 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 150741 -NCIT:C6764 Gastric Small Cell Neuroendocrine Carcinoma 8 150742 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 150743 -NCIT:C95885 Gastric Large Cell Neuroendocrine Carcinoma 8 150744 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 150745 -NCIT:C95984 Ampulla of Vater Neuroendocrine Carcinoma 7 150746 -NCIT:C6655 Ampulla of Vater Small Cell Neuroendocrine Carcinoma 8 150747 -NCIT:C95985 Ampulla of Vater Large Cell Neuroendocrine Carcinoma 8 150748 -NCIT:C96063 Intestinal Neuroendocrine Carcinoma 7 150749 -NCIT:C96064 Small Intestinal Neuroendocrine Carcinoma 8 150750 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 9 150751 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 10 150752 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 11 150753 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 11 150754 -NCIT:C27449 Small Intestinal Small Cell Neuroendocrine Carcinoma 9 150755 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 150756 -NCIT:C96065 Small Intestinal Large Cell Neuroendocrine Carcinoma 9 150757 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 150758 -NCIT:C96156 Colorectal Neuroendocrine Carcinoma 8 150759 -NCIT:C43587 Colorectal Small Cell Neuroendocrine Carcinoma 9 150760 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 10 150761 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 10 150762 -NCIT:C96157 Colorectal Large Cell Neuroendocrine Carcinoma 9 150763 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 10 150764 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 10 150765 -NCIT:C96425 Appendix Neuroendocrine Carcinoma 7 150766 -NCIT:C43555 Appendix Small Cell Neuroendocrine Carcinoma 8 150767 -NCIT:C96426 Appendix Large Cell Neuroendocrine Carcinoma 8 150768 -NCIT:C96549 Anal Canal Neuroendocrine Carcinoma 7 150769 -NCIT:C96550 Anal Canal Large Cell Neuroendocrine Carcinoma 8 150770 -NCIT:C96551 Anal Canal Small Cell Neuroendocrine Carcinoma 8 150771 -NCIT:C96787 Liver Neuroendocrine Carcinoma 7 150772 -NCIT:C172722 Liver Large Cell Neuroendocrine Carcinoma 8 150773 -NCIT:C172725 Liver Small Cell Neuroendocrine Carcinoma 8 150774 -NCIT:C96919 Gallbladder Neuroendocrine Carcinoma 7 150775 -NCIT:C6763 Gallbladder Small Cell Neuroendocrine Carcinoma 8 150776 -NCIT:C96921 Gallbladder Large Cell Neuroendocrine Carcinoma 8 150777 -NCIT:C96956 Extrahepatic Bile Duct Neuroendocrine Carcinoma 7 150778 -NCIT:C5845 Extrahepatic Bile Duct Small Cell Neuroendocrine Carcinoma 8 150779 -NCIT:C96958 Extrahepatic Bile Duct Large Cell Neuroendocrine Carcinoma 8 150780 -NCIT:C173586 Extracutaneous Merkel Cell Carcinoma 5 150781 -NCIT:C173587 Head and Neck Merkel Cell Carcinoma 6 150782 -NCIT:C3915 Small Cell Neuroendocrine Carcinoma 5 150783 -NCIT:C156457 Extrapulmonary Small Cell Neuroendocrine Carcinoma 6 150784 -NCIT:C116317 Kidney Small Cell Neuroendocrine Carcinoma 7 150785 -NCIT:C128244 Vulvar Small Cell Neuroendocrine Carcinoma 7 150786 -NCIT:C40298 Bartholin Gland Small Cell Neuroendocrine Carcinoma 8 150787 -NCIT:C154641 Digestive System Small Cell Neuroendocrine Carcinoma 7 150788 -NCIT:C126325 Gastroesophageal Junction Small Cell Neuroendocrine Carcinoma 8 150789 -NCIT:C172725 Liver Small Cell Neuroendocrine Carcinoma 8 150790 -NCIT:C27449 Small Intestinal Small Cell Neuroendocrine Carcinoma 8 150791 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 150792 -NCIT:C43555 Appendix Small Cell Neuroendocrine Carcinoma 8 150793 -NCIT:C43587 Colorectal Small Cell Neuroendocrine Carcinoma 8 150794 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 9 150795 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 9 150796 -NCIT:C5845 Extrahepatic Bile Duct Small Cell Neuroendocrine Carcinoma 8 150797 -NCIT:C6655 Ampulla of Vater Small Cell Neuroendocrine Carcinoma 8 150798 -NCIT:C6762 Esophageal Small Cell Neuroendocrine Carcinoma 8 150799 -NCIT:C6763 Gallbladder Small Cell Neuroendocrine Carcinoma 8 150800 -NCIT:C6764 Gastric Small Cell Neuroendocrine Carcinoma 8 150801 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 150802 -NCIT:C95583 Pancreatic Small Cell Neuroendocrine Carcinoma 8 150803 -NCIT:C96551 Anal Canal Small Cell Neuroendocrine Carcinoma 8 150804 -NCIT:C160981 Head and Neck Small Cell Neuroendocrine Carcinoma 7 150805 -NCIT:C116318 Sinonasal Small Cell Neuroendocrine Carcinoma 8 150806 -NCIT:C35703 Salivary Gland Small Cell Neuroendocrine Carcinoma 8 150807 -NCIT:C5956 Minor Salivary Gland Small Cell Neuroendocrine Carcinoma 9 150808 -NCIT:C6025 Laryngeal Small Cell Neuroendocrine Carcinoma 8 150809 -NCIT:C183128 Recurrent Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 150810 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 8 150811 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 150812 -NCIT:C191852 Metastatic Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 150813 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 150814 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 150815 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 8 150816 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 150817 -NCIT:C191854 Refractory Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 150818 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 8 150819 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 8 150820 -NCIT:C191855 Unresectable Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 150821 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 8 150822 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 8 150823 -NCIT:C40155 Endometrial Small Cell Neuroendocrine Carcinoma 7 150824 -NCIT:C40263 Vaginal Small Cell Neuroendocrine Carcinoma 7 150825 -NCIT:C40440 Ovarian Small Cell Carcinoma, Pulmonary-Type 7 150826 -NCIT:C6176 Ureter Small Cell Neuroendocrine Carcinoma 7 150827 -NCIT:C6460 Thymic Small Cell Neuroendocrine Carcinoma 7 150828 -NCIT:C6760 Breast Small Cell Neuroendocrine Carcinoma 7 150829 -NCIT:C6766 Prostate Small Cell Neuroendocrine Carcinoma 7 150830 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 150831 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 8 150832 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 8 150833 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 8 150834 -NCIT:C7982 Cervical Small Cell Neuroendocrine Carcinoma 7 150835 -NCIT:C9461 Bladder Small Cell Neuroendocrine Carcinoma 7 150836 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 8 150837 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 8 150838 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 150839 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 8 150840 -NCIT:C158911 Metastatic Small Cell Neuroendocrine Carcinoma 6 150841 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 7 150842 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 150843 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 150844 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 7 150845 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 150846 -NCIT:C191852 Metastatic Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 150847 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 150848 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 150849 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 8 150850 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 150851 -NCIT:C183127 Recurrent Small Cell Neuroendocrine Carcinoma 6 150852 -NCIT:C183128 Recurrent Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 150853 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 8 150854 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 150855 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 7 150856 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 8 150857 -NCIT:C191853 Refractory Small Cell Neuroendocrine Carcinoma 6 150858 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 7 150859 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 8 150860 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 8 150861 -NCIT:C191854 Refractory Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 150862 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 8 150863 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 8 150864 -NCIT:C4917 Lung Small Cell Carcinoma 6 150865 -NCIT:C118815 Childhood Lung Small Cell Carcinoma 7 150866 -NCIT:C136496 Lung Small Cell Carcinoma by AJCC v7 Stage 7 150867 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 8 150868 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 9 150869 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 9 150870 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 8 150871 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 9 150872 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 9 150873 -NCIT:C6679 Stage III Lung Small Cell Carcinoma AJCC v7 8 150874 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 9 150875 -NCIT:C6681 Stage IIIB Lung Small Cell Carcinoma AJCC v7 9 150876 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 10 150877 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 10 150878 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 8 150879 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 7 150880 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 8 150881 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 8 150882 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 7 150883 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 150884 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 150885 -NCIT:C158495 Platinum-Sensitive Lung Small Cell Carcinoma 7 150886 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 7 150887 -NCIT:C188753 Lung Small Cell Carcinoma Neuroendocrine Subtype 7 150888 -NCIT:C188754 Lung Small Cell Carcinoma, Neuroendocrine-High Subtype 8 150889 -NCIT:C188755 Lung Small Cell Carcinoma, Neuroendocrine-Low Subtype 8 150890 -NCIT:C188756 Lung Small Cell Carcinoma Molecular Subtypes 7 150891 -NCIT:C188761 Lung Small Cell Carcinoma, A Subtype 8 150892 -NCIT:C188762 Lung Small Cell Carcinoma, N Subtype 8 150893 -NCIT:C188763 Lung Small Cell Carcinoma, P Subtype 8 150894 -NCIT:C188765 Lung Small Cell Carcinoma, I Subtype 8 150895 -NCIT:C188766 Lung Small Cell Carcinoma, Y Subtype 8 150896 -NCIT:C6683 Occult Lung Small Cell Carcinoma 7 150897 -NCIT:C7853 Limited Stage Lung Small Cell Carcinoma 7 150898 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 8 150899 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 8 150900 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 9 150901 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 9 150902 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 8 150903 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 9 150904 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 9 150905 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 8 150906 -NCIT:C9049 Extensive Stage Lung Small Cell Carcinoma 7 150907 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 8 150908 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 8 150909 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 8 150910 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 8 150911 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 7 150912 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 8 150913 -NCIT:C9137 Combined Lung Small Cell Carcinoma 7 150914 -NCIT:C9379 Combined Lung Small Cell Carcinoma and Lung Adenocarcinoma 8 150915 -NCIT:C9423 Combined Lung Small Cell and Squamous Cell Carcinoma 8 150916 -NCIT:C6875 Large Cell Neuroendocrine Carcinoma 5 150917 -NCIT:C126772 Endometrial Large Cell Neuroendocrine Carcinoma 6 150918 -NCIT:C128075 Vaginal Large Cell Neuroendocrine Carcinoma 6 150919 -NCIT:C128245 Vulvar Large Cell Neuroendocrine Carcinoma 6 150920 -NCIT:C154617 Digestive System Large Cell Neuroendocrine Carcinoma 6 150921 -NCIT:C126323 Gastroesophageal Junction Large Cell Neuroendocrine Carcinoma 7 150922 -NCIT:C172722 Liver Large Cell Neuroendocrine Carcinoma 7 150923 -NCIT:C95582 Pancreatic Large Cell Neuroendocrine Carcinoma 7 150924 -NCIT:C95620 Esophageal Large Cell Neuroendocrine Carcinoma 7 150925 -NCIT:C95885 Gastric Large Cell Neuroendocrine Carcinoma 7 150926 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 150927 -NCIT:C95985 Ampulla of Vater Large Cell Neuroendocrine Carcinoma 7 150928 -NCIT:C96065 Small Intestinal Large Cell Neuroendocrine Carcinoma 7 150929 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 150930 -NCIT:C96157 Colorectal Large Cell Neuroendocrine Carcinoma 7 150931 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 8 150932 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 8 150933 -NCIT:C96426 Appendix Large Cell Neuroendocrine Carcinoma 7 150934 -NCIT:C96550 Anal Canal Large Cell Neuroendocrine Carcinoma 7 150935 -NCIT:C96921 Gallbladder Large Cell Neuroendocrine Carcinoma 7 150936 -NCIT:C96958 Extrahepatic Bile Duct Large Cell Neuroendocrine Carcinoma 7 150937 -NCIT:C157760 Bladder Large Cell Neuroendocrine Carcinoma 6 150938 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 7 150939 -NCIT:C158650 Prostate Large Cell Neuroendocrine Carcinoma 6 150940 -NCIT:C158908 Metastatic Large Cell Neuroendocrine Carcinoma 6 150941 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 7 150942 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 7 150943 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 150944 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 7 150945 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 150946 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 150947 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 7 150948 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 150949 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 150950 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 150951 -NCIT:C159225 Kidney Large Cell Neuroendocrine Carcinoma 6 150952 -NCIT:C160982 Head and Neck Large Cell Neuroendocrine Carcinoma 6 150953 -NCIT:C173091 Sinonasal Large Cell Neuroendocrine Carcinoma 7 150954 -NCIT:C173395 Laryngeal Large Cell Neuroendocrine Carcinoma 7 150955 -NCIT:C173650 Salivary Gland Large Cell Neuroendocrine Carcinoma 7 150956 -NCIT:C172810 Unresectable Large Cell Neuroendocrine Carcinoma 6 150957 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 7 150958 -NCIT:C40214 Cervical Large Cell Neuroendocrine Carcinoma 6 150959 -NCIT:C40356 Breast Large Cell Neuroendocrine Carcinoma 6 150960 -NCIT:C5238 Ovarian Large Cell Neuroendocrine Carcinoma 6 150961 -NCIT:C5672 Lung Large Cell Neuroendocrine Carcinoma 6 150962 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 7 150963 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 150964 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 150965 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 7 150966 -NCIT:C7267 Combined Lung Large Cell Neuroendocrine Carcinoma 7 150967 -NCIT:C6461 Thymic Large Cell Neuroendocrine Carcinoma 6 150968 -NCIT:C3780 Large Cell Carcinoma 4 150969 -NCIT:C35735 Salivary Gland Large Cell Carcinoma 5 150970 -NCIT:C173650 Salivary Gland Large Cell Neuroendocrine Carcinoma 6 150971 -NCIT:C3779 Giant Cell Carcinoma 5 150972 -NCIT:C4452 Lung Giant Cell Carcinoma 6 150973 -NCIT:C54342 Laryngeal Giant Cell Carcinoma 6 150974 -NCIT:C5838 Gallbladder Undifferentiated Carcinoma, Spindle and Giant Cell Type 6 150975 -NCIT:C3878 Thyroid Gland Anaplastic Carcinoma 5 150976 -NCIT:C140999 Thyroid Gland Anaplastic Carcinoma by AJCC v7 Stage 6 150977 -NCIT:C87552 Stage IVA Thyroid Gland Anaplastic Carcinoma AJCC v7 7 150978 -NCIT:C87553 Stage IVB Thyroid Gland Anaplastic Carcinoma AJCC v7 7 150979 -NCIT:C87554 Stage IVC Thyroid Gland Anaplastic Carcinoma AJCC v7 7 150980 -NCIT:C141000 Thyroid Gland Anaplastic Carcinoma by AJCC v8 Stage 6 150981 -NCIT:C141001 Stage IVA Thyroid Gland Anaplastic Carcinoma AJCC v8 7 150982 -NCIT:C141003 Stage IVB Thyroid Gland Anaplastic Carcinoma AJCC v8 7 150983 -NCIT:C141004 Stage IVC Thyroid Gland Anaplastic Carcinoma AJCC v8 7 150984 -NCIT:C153624 Recurrent Thyroid Gland Anaplastic Carcinoma 6 150985 -NCIT:C170831 Metastatic Thyroid Gland Anaplastic Carcinoma 6 150986 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 7 150987 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 7 150988 -NCIT:C170832 Refractory Thyroid Gland Anaplastic Carcinoma 6 150989 -NCIT:C170833 Unresectable Thyroid Gland Anaplastic Carcinoma 6 150990 -NCIT:C46008 Thyroid Gland Anaplastic Carcinoma, Squamous Cell Carcinoma Pattern 6 150991 -NCIT:C7906 Thyroid Gland Anaplastic Carcinoma, Osteoclastic Variant 6 150992 -NCIT:C4107 Nasopharyngeal-Type Undifferentiated Carcinoma 5 150993 -NCIT:C159252 Lymphoepithelioma-Like Carcinoma of the Penis 6 150994 -NCIT:C165467 Skin Lymphoepithelioma-Like Carcinoma 6 150995 -NCIT:C173080 Sinonasal Lymphoepithelial Carcinoma 6 150996 -NCIT:C175344 Lacrimal Drainage System Lymphoepithelial Carcinoma 6 150997 -NCIT:C191678 Invasive Lymphoepithelioma-Like Urothelial Carcinoma 6 150998 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 7 150999 -NCIT:C35736 Salivary Gland Lymphoepithelial Carcinoma 6 151000 -NCIT:C39885 Prostate Acinar Adenocarcinoma, Lymphoepithelioma-Like Variant 6 151001 -NCIT:C40193 Cervical Lymphoepithelioma-Like Carcinoma 6 151002 -NCIT:C45519 Lung Lymphoepithelial Carcinoma 6 151003 -NCIT:C54341 Laryngeal Lymphoepithelial Carcinoma 6 151004 -NCIT:C68610 Oropharyngeal Undifferentiated Carcinoma 6 151005 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 7 151006 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 7 151007 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 7 151008 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 7 151009 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 8 151010 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 8 151011 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 8 151012 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 7 151013 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 7 151014 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 7 151015 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 7 151016 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 7 151017 -NCIT:C7998 Thymic Lymphoepithelial Carcinoma 6 151018 -NCIT:C8023 Nasopharyngeal Undifferentiated Carcinoma 6 151019 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 7 151020 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 7 151021 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 7 151022 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 7 151023 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 7 151024 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 7 151025 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 7 151026 -NCIT:C4450 Lung Large Cell Carcinoma 5 151027 -NCIT:C136493 Lung Large Cell Carcinoma by AJCC v7 Stage 6 151028 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 7 151029 -NCIT:C6660 Stage II Lung Large Cell Carcinoma AJCC v7 7 151030 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 8 151031 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 8 151032 -NCIT:C8755 Stage I Lung Large Cell Carcinoma AJCC v7 7 151033 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 8 151034 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 8 151035 -NCIT:C8756 Stage IV Lung Large Cell Carcinoma AJCC v7 7 151036 -NCIT:C9257 Stage III Lung Large Cell Carcinoma AJCC v7 7 151037 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 8 151038 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 8 151039 -NCIT:C4451 Lung Large Cell Carcinoma, Clear Cell Variant 6 151040 -NCIT:C6685 Occult Lung Large Cell Carcinoma 6 151041 -NCIT:C6876 Lung Large Cell Carcinoma with Rhabdoid Phenotype 6 151042 -NCIT:C7266 Lung Basaloid Large Cell Carcinoma 6 151043 -NCIT:C8753 Recurrent Lung Large Cell Carcinoma 6 151044 -NCIT:C6875 Large Cell Neuroendocrine Carcinoma 5 151045 -NCIT:C126772 Endometrial Large Cell Neuroendocrine Carcinoma 6 151046 -NCIT:C128075 Vaginal Large Cell Neuroendocrine Carcinoma 6 151047 -NCIT:C128245 Vulvar Large Cell Neuroendocrine Carcinoma 6 151048 -NCIT:C154617 Digestive System Large Cell Neuroendocrine Carcinoma 6 151049 -NCIT:C126323 Gastroesophageal Junction Large Cell Neuroendocrine Carcinoma 7 151050 -NCIT:C172722 Liver Large Cell Neuroendocrine Carcinoma 7 151051 -NCIT:C95582 Pancreatic Large Cell Neuroendocrine Carcinoma 7 151052 -NCIT:C95620 Esophageal Large Cell Neuroendocrine Carcinoma 7 151053 -NCIT:C95885 Gastric Large Cell Neuroendocrine Carcinoma 7 151054 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 151055 -NCIT:C95985 Ampulla of Vater Large Cell Neuroendocrine Carcinoma 7 151056 -NCIT:C96065 Small Intestinal Large Cell Neuroendocrine Carcinoma 7 151057 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 151058 -NCIT:C96157 Colorectal Large Cell Neuroendocrine Carcinoma 7 151059 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 8 151060 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 8 151061 -NCIT:C96426 Appendix Large Cell Neuroendocrine Carcinoma 7 151062 -NCIT:C96550 Anal Canal Large Cell Neuroendocrine Carcinoma 7 151063 -NCIT:C96921 Gallbladder Large Cell Neuroendocrine Carcinoma 7 151064 -NCIT:C96958 Extrahepatic Bile Duct Large Cell Neuroendocrine Carcinoma 7 151065 -NCIT:C157760 Bladder Large Cell Neuroendocrine Carcinoma 6 151066 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 7 151067 -NCIT:C158650 Prostate Large Cell Neuroendocrine Carcinoma 6 151068 -NCIT:C158908 Metastatic Large Cell Neuroendocrine Carcinoma 6 151069 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 7 151070 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 7 151071 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 151072 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 7 151073 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 151074 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 151075 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 7 151076 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 151077 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 151078 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 151079 -NCIT:C159225 Kidney Large Cell Neuroendocrine Carcinoma 6 151080 -NCIT:C160982 Head and Neck Large Cell Neuroendocrine Carcinoma 6 151081 -NCIT:C173091 Sinonasal Large Cell Neuroendocrine Carcinoma 7 151082 -NCIT:C173395 Laryngeal Large Cell Neuroendocrine Carcinoma 7 151083 -NCIT:C173650 Salivary Gland Large Cell Neuroendocrine Carcinoma 7 151084 -NCIT:C172810 Unresectable Large Cell Neuroendocrine Carcinoma 6 151085 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 7 151086 -NCIT:C40214 Cervical Large Cell Neuroendocrine Carcinoma 6 151087 -NCIT:C40356 Breast Large Cell Neuroendocrine Carcinoma 6 151088 -NCIT:C5238 Ovarian Large Cell Neuroendocrine Carcinoma 6 151089 -NCIT:C5672 Lung Large Cell Neuroendocrine Carcinoma 6 151090 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 7 151091 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 151092 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 151093 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 7 151094 -NCIT:C7267 Combined Lung Large Cell Neuroendocrine Carcinoma 7 151095 -NCIT:C6461 Thymic Large Cell Neuroendocrine Carcinoma 6 151096 -NCIT:C40022 Primary Peritoneal Carcinoma 4 151097 -NCIT:C115441 Recurrent Primary Peritoneal Carcinoma 5 151098 -NCIT:C170751 Recurrent Platinum-Resistant Primary Peritoneal Carcinoma 6 151099 -NCIT:C170756 Recurrent Primary Peritoneal Undifferentiated Carcinoma 6 151100 -NCIT:C170759 Recurrent Primary Peritoneal Transitional Cell Carcinoma 6 151101 -NCIT:C170767 Recurrent Primary Peritoneal Adenocarcinoma 6 151102 -NCIT:C156453 Recurrent Primary Peritoneal Serous Adenocarcinoma 7 151103 -NCIT:C156454 Recurrent Primary Peritoneal Low Grade Serous Adenocarcinoma 8 151104 -NCIT:C165268 Recurrent Primary Peritoneal High Grade Serous Adenocarcinoma 8 151105 -NCIT:C165269 Recurrent Primary Peritoneal Endometrioid Adenocarcinoma 7 151106 -NCIT:C170761 Recurrent Primary Peritoneal Clear Cell Adenocarcinoma 7 151107 -NCIT:C191407 Recurrent Platinum-Sensitive Primary Peritoneal Carcinoma 6 151108 -NCIT:C140003 Primary Peritoneal Cancer by AJCC v7 Stage 5 151109 -NCIT:C115094 Stage III Primary Peritoneal Cancer AJCC v7 6 151110 -NCIT:C115095 Stage IIIA Primary Peritoneal Cancer AJCC v7 7 151111 -NCIT:C115096 Stage IIIB Primary Peritoneal Cancer AJCC v7 7 151112 -NCIT:C115097 Stage IIIC Primary Peritoneal Cancer AJCC v7 7 151113 -NCIT:C115098 Stage IV Primary Peritoneal Cancer AJCC v7 6 151114 -NCIT:C140004 Primary Peritoneal Cancer by AJCC v8 Stage 5 151115 -NCIT:C140005 Stage II Primary Peritoneal Cancer AJCC v8 6 151116 -NCIT:C140006 Stage IIA Primary Peritoneal Cancer AJCC v8 7 151117 -NCIT:C140007 Stage IIB Primary Peritoneal Cancer AJCC v8 7 151118 -NCIT:C140008 Stage III Primary Peritoneal Cancer AJCC v8 6 151119 -NCIT:C140009 Stage IIIA Primary Peritoneal Cancer AJCC v8 7 151120 -NCIT:C140010 Stage IIIB Primary Peritoneal Cancer AJCC v8 7 151121 -NCIT:C140011 Stage IIIC Primary Peritoneal Cancer AJCC v8 7 151122 -NCIT:C140012 Stage IV Primary Peritoneal Cancer AJCC v8 6 151123 -NCIT:C140013 Stage IVA Primary Peritoneal Cancer AJCC v8 7 151124 -NCIT:C140014 Stage IVB Primary Peritoneal Cancer AJCC v8 7 151125 -NCIT:C152046 Refractory Primary Peritoneal Carcinoma 5 151126 -NCIT:C157622 Platinum-Resistant Primary Peritoneal Carcinoma 6 151127 -NCIT:C170751 Recurrent Platinum-Resistant Primary Peritoneal Carcinoma 7 151128 -NCIT:C170975 Refractory Primary Peritoneal Adenocarcinoma 6 151129 -NCIT:C171021 Refractory Primary Peritoneal Serous Adenocarcinoma 7 151130 -NCIT:C178686 Refractory Primary Peritoneal High Grade Serous Adenocarcinoma 8 151131 -NCIT:C178687 Refractory Primary Peritoneal Low Grade Serous Adenocarcinoma 8 151132 -NCIT:C178684 Refractory Primary Peritoneal Clear Cell Adenocarcinoma 7 151133 -NCIT:C178685 Refractory Primary Peritoneal Endometrioid Adenocarcinoma 7 151134 -NCIT:C178688 Refractory Primary Peritoneal Transitional Cell Carcinoma 6 151135 -NCIT:C178689 Refractory Primary Peritoneal Undifferentiated Carcinoma 6 151136 -NCIT:C178702 Platinum-Refractory Primary Peritoneal Carcinoma 6 151137 -NCIT:C160872 Platinum-Sensitive Primary Peritoneal Carcinoma 5 151138 -NCIT:C191407 Recurrent Platinum-Sensitive Primary Peritoneal Carcinoma 6 151139 -NCIT:C162562 Primary Peritoneal Undifferentiated Carcinoma 5 151140 -NCIT:C170756 Recurrent Primary Peritoneal Undifferentiated Carcinoma 6 151141 -NCIT:C178689 Refractory Primary Peritoneal Undifferentiated Carcinoma 6 151142 -NCIT:C162564 Primary Peritoneal Transitional Cell Carcinoma 5 151143 -NCIT:C170759 Recurrent Primary Peritoneal Transitional Cell Carcinoma 6 151144 -NCIT:C178688 Refractory Primary Peritoneal Transitional Cell Carcinoma 6 151145 -NCIT:C167203 Metastatic Primary Peritoneal Carcinoma 5 151146 -NCIT:C167204 Locally Advanced Primary Peritoneal Carcinoma 6 151147 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 7 151148 -NCIT:C167396 Advanced Primary Peritoneal Carcinoma 6 151149 -NCIT:C170972 Metastatic Primary Peritoneal Adenocarcinoma 6 151150 -NCIT:C171019 Metastatic Primary Peritoneal Serous Adenocarcinoma 7 151151 -NCIT:C186453 Metastatic Primary Peritoneal High Grade Serous Adenocarcinoma 8 151152 -NCIT:C170733 Primary Peritoneal Adenocarcinoma 5 151153 -NCIT:C162566 Primary Peritoneal Clear Cell Adenocarcinoma 6 151154 -NCIT:C170761 Recurrent Primary Peritoneal Clear Cell Adenocarcinoma 7 151155 -NCIT:C178684 Refractory Primary Peritoneal Clear Cell Adenocarcinoma 7 151156 -NCIT:C165260 Primary Peritoneal Endometrioid Adenocarcinoma 6 151157 -NCIT:C165269 Recurrent Primary Peritoneal Endometrioid Adenocarcinoma 7 151158 -NCIT:C178685 Refractory Primary Peritoneal Endometrioid Adenocarcinoma 7 151159 -NCIT:C186276 Unresectable Primary Peritoneal Endometrioid Adenocarcinoma 7 151160 -NCIT:C170767 Recurrent Primary Peritoneal Adenocarcinoma 6 151161 -NCIT:C156453 Recurrent Primary Peritoneal Serous Adenocarcinoma 7 151162 -NCIT:C156454 Recurrent Primary Peritoneal Low Grade Serous Adenocarcinoma 8 151163 -NCIT:C165268 Recurrent Primary Peritoneal High Grade Serous Adenocarcinoma 8 151164 -NCIT:C165269 Recurrent Primary Peritoneal Endometrioid Adenocarcinoma 7 151165 -NCIT:C170761 Recurrent Primary Peritoneal Clear Cell Adenocarcinoma 7 151166 -NCIT:C170972 Metastatic Primary Peritoneal Adenocarcinoma 6 151167 -NCIT:C171019 Metastatic Primary Peritoneal Serous Adenocarcinoma 7 151168 -NCIT:C186453 Metastatic Primary Peritoneal High Grade Serous Adenocarcinoma 8 151169 -NCIT:C170974 Unresectable Primary Peritoneal Adenocarcinoma 6 151170 -NCIT:C171020 Unresectable Primary Peritoneal Serous Adenocarcinoma 7 151171 -NCIT:C186275 Unresectable Primary Peritoneal High Grade Serous Adenocarcinoma 8 151172 -NCIT:C186276 Unresectable Primary Peritoneal Endometrioid Adenocarcinoma 7 151173 -NCIT:C170975 Refractory Primary Peritoneal Adenocarcinoma 6 151174 -NCIT:C171021 Refractory Primary Peritoneal Serous Adenocarcinoma 7 151175 -NCIT:C178686 Refractory Primary Peritoneal High Grade Serous Adenocarcinoma 8 151176 -NCIT:C178687 Refractory Primary Peritoneal Low Grade Serous Adenocarcinoma 8 151177 -NCIT:C178684 Refractory Primary Peritoneal Clear Cell Adenocarcinoma 7 151178 -NCIT:C178685 Refractory Primary Peritoneal Endometrioid Adenocarcinoma 7 151179 -NCIT:C40023 Primary Peritoneal Serous Adenocarcinoma 6 151180 -NCIT:C126353 Primary Peritoneal High Grade Serous Adenocarcinoma 7 151181 -NCIT:C165268 Recurrent Primary Peritoneal High Grade Serous Adenocarcinoma 8 151182 -NCIT:C178686 Refractory Primary Peritoneal High Grade Serous Adenocarcinoma 8 151183 -NCIT:C186275 Unresectable Primary Peritoneal High Grade Serous Adenocarcinoma 8 151184 -NCIT:C186453 Metastatic Primary Peritoneal High Grade Serous Adenocarcinoma 8 151185 -NCIT:C126354 Primary Peritoneal Low Grade Serous Adenocarcinoma 7 151186 -NCIT:C156454 Recurrent Primary Peritoneal Low Grade Serous Adenocarcinoma 8 151187 -NCIT:C178687 Refractory Primary Peritoneal Low Grade Serous Adenocarcinoma 8 151188 -NCIT:C156453 Recurrent Primary Peritoneal Serous Adenocarcinoma 7 151189 -NCIT:C156454 Recurrent Primary Peritoneal Low Grade Serous Adenocarcinoma 8 151190 -NCIT:C165268 Recurrent Primary Peritoneal High Grade Serous Adenocarcinoma 8 151191 -NCIT:C171019 Metastatic Primary Peritoneal Serous Adenocarcinoma 7 151192 -NCIT:C186453 Metastatic Primary Peritoneal High Grade Serous Adenocarcinoma 8 151193 -NCIT:C171020 Unresectable Primary Peritoneal Serous Adenocarcinoma 7 151194 -NCIT:C186275 Unresectable Primary Peritoneal High Grade Serous Adenocarcinoma 8 151195 -NCIT:C171021 Refractory Primary Peritoneal Serous Adenocarcinoma 7 151196 -NCIT:C178686 Refractory Primary Peritoneal High Grade Serous Adenocarcinoma 8 151197 -NCIT:C178687 Refractory Primary Peritoneal Low Grade Serous Adenocarcinoma 8 151198 -NCIT:C7695 Primary Peritoneal Serous Papillary Adenocarcinoma 7 151199 -NCIT:C170973 Unresectable Primary Peritoneal Carcinoma 5 151200 -NCIT:C170974 Unresectable Primary Peritoneal Adenocarcinoma 6 151201 -NCIT:C171020 Unresectable Primary Peritoneal Serous Adenocarcinoma 7 151202 -NCIT:C186275 Unresectable Primary Peritoneal High Grade Serous Adenocarcinoma 8 151203 -NCIT:C186276 Unresectable Primary Peritoneal Endometrioid Adenocarcinoma 7 151204 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 6 151205 -NCIT:C4121 Basaloid Carcinoma 4 151206 -NCIT:C54244 Basaloid Squamous Cell Carcinoma 5 151207 -NCIT:C27543 Skin Basaloid Carcinoma 6 151208 -NCIT:C37290 Head and Neck Basaloid Carcinoma 6 151209 -NCIT:C126751 Oropharyngeal Basaloid Carcinoma 7 151210 -NCIT:C129873 Floor of Mouth Basaloid Squamous Cell Carcinoma 7 151211 -NCIT:C54334 Laryngeal Basaloid Carcinoma 7 151212 -NCIT:C54360 Nasopharyngeal Basaloid Carcinoma 7 151213 -NCIT:C40189 Cervical Basaloid Carcinoma 6 151214 -NCIT:C40245 Vaginal Basaloid Carcinoma 6 151215 -NCIT:C40286 Vulvar Basaloid Carcinoma 6 151216 -NCIT:C45507 Lung Basaloid Squamous Cell Carcinoma 6 151217 -NCIT:C6456 Thymic Basaloid Carcinoma 6 151218 -NCIT:C6980 Basaloid Squamous Cell Carcinoma of the Penis 6 151219 -NCIT:C159249 Papillary-Basaloid Carcinoma of the Penis 7 151220 -NCIT:C7032 Esophageal Basaloid Carcinoma 6 151221 -NCIT:C8256 Anal Basaloid Carcinoma 6 151222 -NCIT:C7266 Lung Basaloid Large Cell Carcinoma 5 151223 -NCIT:C4137 Solid Carcinoma 4 151224 -NCIT:C39897 Prostate Ductal Adenocarcinoma, Solid Pattern 5 151225 -NCIT:C46095 Solid/Trabecular Variant Thyroid Gland Papillary Carcinoma 5 151226 -NCIT:C5616 Skin Nodular Solid Basal Cell Carcinoma 5 151227 -NCIT:C5651 Solid Lung Adenocarcinoma 5 151228 -NCIT:C66933 Breast Ductal Carcinoma In Situ, Solid Type 5 151229 -NCIT:C6870 Breast Solid Papillary Carcinoma 5 151230 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 6 151231 -NCIT:C176012 Invasive Breast Solid Papillary Carcinoma 6 151232 -NCIT:C4139 Combined Carcinoid and Adenocarcinoma 4 151233 -NCIT:C3689 Appendix Goblet Cell Adenocarcinoma 5 151234 -NCIT:C96928 Gallbladder Goblet Cell Carcinoid 5 151235 -NCIT:C4152 Lipid-Rich Carcinoma 4 151236 -NCIT:C40365 Breast Lipid-Rich Carcinoma 5 151237 -NCIT:C4153 Glycogen-Rich Carcinoma 4 151238 -NCIT:C40368 Glycogen-Rich, Clear Cell Breast Carcinoma 5 151239 -NCIT:C4188 Comedocarcinoma 4 151240 -NCIT:C176005 Breast Ductal Carcinoma In Situ, Comedo Type 5 151241 -NCIT:C96488 Colorectal Cribriform Comedo-Type Adenocarcinoma 5 151242 -NCIT:C96489 Colon Cribriform Comedo-Type Adenocarcinoma 6 151243 -NCIT:C96490 Rectal Cribriform Comedo-Type Adenocarcinoma 6 151244 -NCIT:C4199 Epithelial-Myoepithelial Carcinoma 4 151245 -NCIT:C175288 Lacrimal Gland Epithelial-Myoepithelial Carcinoma 5 151246 -NCIT:C35701 Salivary Gland Epithelial-Myoepithelial Carcinoma 5 151247 -NCIT:C45545 Lung Epithelial-Myoepithelial Carcinoma 5 151248 -NCIT:C45716 NUT Carcinoma 4 151249 -NCIT:C142781 Thoracic NUT Carcinoma 5 151250 -NCIT:C146706 Mediastinal/Thymic NUT Carcinoma 6 151251 -NCIT:C160297 Metastatic NUT Carcinoma 5 151252 -NCIT:C160298 Advanced NUT Carcinoma 6 151253 -NCIT:C160301 Unresectable NUT Carcinoma 5 151254 -NCIT:C173087 Head and Neck NUT Carcinoma 5 151255 -NCIT:C173088 Sinonasal NUT Carcinoma 6 151256 -NCIT:C190278 Childhood Head and Neck NUT Carcinoma 6 151257 -NCIT:C190277 Childhood NUT Carcinoma 5 151258 -NCIT:C190278 Childhood Head and Neck NUT Carcinoma 6 151259 -NCIT:C4872 Breast Carcinoma 4 151260 -NCIT:C118809 Childhood Breast Carcinoma 5 151261 -NCIT:C137674 Occult Breast Carcinoma 5 151262 -NCIT:C139532 Breast Cancer by AJCC v8 Stage 5 151263 -NCIT:C139533 Breast Cancer by AJCC v8 Anatomic Stage 6 151264 -NCIT:C139534 Anatomic Stage 0 Breast Cancer AJCC v8 7 151265 -NCIT:C2924 Breast Ductal Carcinoma In Situ 8 151266 -NCIT:C176005 Breast Ductal Carcinoma In Situ, Comedo Type 9 151267 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 9 151268 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 10 151269 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 10 151270 -NCIT:C5137 Breast Ductal Carcinoma In Situ, Non-Comedo Type 9 151271 -NCIT:C5138 Breast Ductal Carcinoma In Situ, Cribriform Pattern 9 151272 -NCIT:C66933 Breast Ductal Carcinoma In Situ, Solid Type 9 151273 -NCIT:C7949 Breast Ductal Carcinoma In Situ, High Grade 9 151274 -NCIT:C9456 Breast Ductal Carcinoma In Situ, Intermediate Grade 9 151275 -NCIT:C9457 Breast Ductal Carcinoma In Situ, Low Grade 9 151276 -NCIT:C139535 Anatomic Stage I Breast Cancer AJCC v8 7 151277 -NCIT:C139536 Anatomic Stage IA Breast Cancer AJCC v8 8 151278 -NCIT:C139537 Anatomic Stage IB Breast Cancer AJCC v8 8 151279 -NCIT:C139538 Anatomic Stage II Breast Cancer AJCC v8 7 151280 -NCIT:C139539 Anatomic Stage IIA Breast Cancer AJCC v8 8 151281 -NCIT:C139540 Anatomic Stage IIB Breast Cancer AJCC v8 8 151282 -NCIT:C139541 Anatomic Stage III Breast Cancer AJCC v8 7 151283 -NCIT:C139542 Anatomic Stage IIIA Breast Cancer AJCC v8 8 151284 -NCIT:C139543 Anatomic Stage IIIB Breast Cancer AJCC v8 8 151285 -NCIT:C9246 Stage IIIB Breast Inflammatory Carcinoma 9 151286 -NCIT:C139544 Anatomic Stage IIIC Breast Cancer AJCC v8 8 151287 -NCIT:C139545 Anatomic Stage IV Breast Cancer AJCC v8 7 151288 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 8 151289 -NCIT:C139554 Breast Cancer by AJCC v8 Prognostic Stage 6 151290 -NCIT:C139555 Prognostic Stage 0 Breast Cancer AJCC v8 7 151291 -NCIT:C139556 Prognostic Stage I Breast Cancer AJCC v8 7 151292 -NCIT:C139557 Prognostic Stage IA Breast Cancer AJCC v8 8 151293 -NCIT:C139558 Prognostic Stage IB Breast Cancer AJCC v8 8 151294 -NCIT:C139569 Prognostic Stage II Breast Cancer AJCC v8 7 151295 -NCIT:C139571 Prognostic Stage IIA Breast Cancer AJCC v8 8 151296 -NCIT:C139572 Prognostic Stage IIB Breast Cancer AJCC v8 8 151297 -NCIT:C139582 Prognostic Stage III Breast Cancer AJCC v8 7 151298 -NCIT:C139583 Prognostic Stage IIIA Breast Cancer AJCC v8 8 151299 -NCIT:C139584 Prognostic Stage IIIB Breast Cancer AJCC v8 8 151300 -NCIT:C139585 Prognostic Stage IIIC Breast Cancer AJCC v8 8 151301 -NCIT:C139587 Prognostic Stage IV Breast Cancer AJCC v8 7 151302 -NCIT:C147965 Refractory Breast Carcinoma 5 151303 -NCIT:C165703 Refractory Breast Adenocarcinoma 6 151304 -NCIT:C157057 Refractory Hormone Receptor-Positive Breast Carcinoma 7 151305 -NCIT:C167076 Refractory Triple-Negative Breast Carcinoma 7 151306 -NCIT:C168784 Refractory HER2-Negative Breast Carcinoma 7 151307 -NCIT:C182110 Refractory HER2-Positive Breast Carcinoma 7 151308 -NCIT:C153238 Metastatic Breast Carcinoma 5 151309 -NCIT:C133501 Breast Carcinoma Metastatic in the Central Nervous System 6 151310 -NCIT:C36301 Breast Carcinoma Metastatic in the Brain 7 151311 -NCIT:C153227 Breast Carcinoma Metastatic in the Lymph Nodes 6 151312 -NCIT:C160920 Locally Advanced Breast Carcinoma 6 151313 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 7 151314 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 8 151315 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 8 151316 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 8 151317 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 8 151318 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 7 151319 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 8 151320 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 151321 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 151322 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 151323 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 8 151324 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 151325 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 151326 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 151327 -NCIT:C161830 Metastatic BRCA-Associated Breast Carcinoma 6 151328 -NCIT:C162648 Advanced Breast Carcinoma 6 151329 -NCIT:C165700 Advanced Breast Adenocarcinoma 7 151330 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 151331 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 151332 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 8 151333 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 151334 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 151335 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 151336 -NCIT:C165698 Metastatic Breast Adenocarcinoma 6 151337 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 7 151338 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 8 151339 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 151340 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 151341 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 151342 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 8 151343 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 151344 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 151345 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 151346 -NCIT:C165700 Advanced Breast Adenocarcinoma 7 151347 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 151348 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 151349 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 8 151350 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 151351 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 151352 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 151353 -NCIT:C168777 Metastatic HER2-Negative Breast Carcinoma 7 151354 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 151355 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 151356 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 151357 -NCIT:C179554 Metastatic HER2-Low Breast Carcinoma 7 151358 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 151359 -NCIT:C180924 Metastatic HER2-Positive Breast Carcinoma 7 151360 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 8 151361 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 8 151362 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 151363 -NCIT:C181787 Metastatic Breast Inflammatory Carcinoma 7 151364 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 8 151365 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 8 151366 -NCIT:C9246 Stage IIIB Breast Inflammatory Carcinoma 8 151367 -NCIT:C185880 Metastatic Hormone Receptor-Positive Breast Carcinoma 7 151368 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 151369 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 151370 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 151371 -NCIT:C190852 Metastatic Androgen Receptor-Positive Breast Carcinoma 8 151372 -NCIT:C190856 Metastatic Estrogen Receptor-Positive Breast Carcinoma 8 151373 -NCIT:C190677 Metastatic Hormone Receptor-Negative Breast Carcinoma 7 151374 -NCIT:C153348 Metastatic Triple-Negative Breast Carcinoma 8 151375 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 151376 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 151377 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 151378 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 9 151379 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 151380 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 151381 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 7 151382 -NCIT:C76326 Metastatic Breast Ductal Carcinoma 7 151383 -NCIT:C76328 Metastatic Breast Lobular Carcinoma 7 151384 -NCIT:C179515 Oligometastatic Breast Carcinoma 6 151385 -NCIT:C28311 Metastatic Breast Carcinoma in the Skin 6 151386 -NCIT:C36300 Breast Carcinoma Metastatic in the Lung 6 151387 -NCIT:C36302 Breast Carcinoma Metastatic in the Liver 6 151388 -NCIT:C36303 Breast Carcinoma Metastatic in the Bone 6 151389 -NCIT:C153226 Breast Carcinoma Metastatic in the Spine 7 151390 -NCIT:C5178 Metastatic Breast Squamous Cell Carcinoma 6 151391 -NCIT:C158752 Unresectable Breast Carcinoma 5 151392 -NCIT:C158751 Unresectable Breast Inflammatory Carcinoma 6 151393 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 6 151394 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 7 151395 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 7 151396 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 7 151397 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 7 151398 -NCIT:C186284 Unresectable HER2-Positive Breast Carcinoma 6 151399 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 7 151400 -NCIT:C187160 Unresectable Hormone Receptor-Positive Breast Carcinoma 6 151401 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 7 151402 -NCIT:C187161 Unresectable HER2-Negative Breast Carcinoma 6 151403 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 7 151404 -NCIT:C190676 Unresectable Hormone Receptor-Negative Breast Carcinoma 6 151405 -NCIT:C165491 Unresectable Triple-Negative Breast Carcinoma 7 151406 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 8 151407 -NCIT:C162782 Localized Breast Carcinoma 5 151408 -NCIT:C188035 Resectable Breast Carcinoma 5 151409 -NCIT:C28432 Nipple Carcinoma 5 151410 -NCIT:C28292 Squamous Cell Carcinoma In Situ of the Nipple 6 151411 -NCIT:C3301 Nipple Paget Disease 6 151412 -NCIT:C2918 Female Breast Carcinoma 5 151413 -NCIT:C176579 Invasive Female Breast Carcinoma 6 151414 -NCIT:C176580 Female Breast Carcinoma In Situ 6 151415 -NCIT:C36107 Hereditary Female Breast Carcinoma 6 151416 -NCIT:C3862 Male Breast Carcinoma 5 151417 -NCIT:C176503 Male Breast Carcinoma In Situ 6 151418 -NCIT:C176504 Invasive Male Breast Carcinoma 6 151419 -NCIT:C36106 Hereditary Male Breast Carcinoma 6 151420 -NCIT:C4503 Hereditary Breast Carcinoma 5 151421 -NCIT:C167189 BRCA-Associated Breast Carcinoma 6 151422 -NCIT:C161830 Metastatic BRCA-Associated Breast Carcinoma 7 151423 -NCIT:C167193 PALB2-Associated Breast Carcinoma 6 151424 -NCIT:C36106 Hereditary Male Breast Carcinoma 6 151425 -NCIT:C36107 Hereditary Female Breast Carcinoma 6 151426 -NCIT:C46073 Unilateral Breast Carcinoma 5 151427 -NCIT:C5214 Breast Adenocarcinoma 5 151428 -NCIT:C114932 Hormone-Resistant Breast Carcinoma 6 151429 -NCIT:C157056 Hormone Receptor-Positive Breast Carcinoma 6 151430 -NCIT:C157057 Refractory Hormone Receptor-Positive Breast Carcinoma 7 151431 -NCIT:C185157 Recurrent Hormone Receptor-Positive Breast Carcinoma 7 151432 -NCIT:C185880 Metastatic Hormone Receptor-Positive Breast Carcinoma 7 151433 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 151434 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 151435 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 151436 -NCIT:C190852 Metastatic Androgen Receptor-Positive Breast Carcinoma 8 151437 -NCIT:C190856 Metastatic Estrogen Receptor-Positive Breast Carcinoma 8 151438 -NCIT:C187160 Unresectable Hormone Receptor-Positive Breast Carcinoma 7 151439 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 8 151440 -NCIT:C188366 Estrogen Receptor-Positive Breast Carcinoma 7 151441 -NCIT:C190856 Metastatic Estrogen Receptor-Positive Breast Carcinoma 8 151442 -NCIT:C190851 Androgen Receptor-Positive Breast Carcinoma 7 151443 -NCIT:C190852 Metastatic Androgen Receptor-Positive Breast Carcinoma 8 151444 -NCIT:C165698 Metastatic Breast Adenocarcinoma 6 151445 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 7 151446 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 8 151447 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 151448 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 151449 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 151450 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 8 151451 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 151452 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 151453 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 151454 -NCIT:C165700 Advanced Breast Adenocarcinoma 7 151455 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 151456 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 151457 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 8 151458 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 151459 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 151460 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 151461 -NCIT:C168777 Metastatic HER2-Negative Breast Carcinoma 7 151462 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 151463 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 151464 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 151465 -NCIT:C179554 Metastatic HER2-Low Breast Carcinoma 7 151466 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 151467 -NCIT:C180924 Metastatic HER2-Positive Breast Carcinoma 7 151468 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 8 151469 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 8 151470 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 151471 -NCIT:C181787 Metastatic Breast Inflammatory Carcinoma 7 151472 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 8 151473 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 8 151474 -NCIT:C9246 Stage IIIB Breast Inflammatory Carcinoma 8 151475 -NCIT:C185880 Metastatic Hormone Receptor-Positive Breast Carcinoma 7 151476 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 151477 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 151478 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 151479 -NCIT:C190852 Metastatic Androgen Receptor-Positive Breast Carcinoma 8 151480 -NCIT:C190856 Metastatic Estrogen Receptor-Positive Breast Carcinoma 8 151481 -NCIT:C190677 Metastatic Hormone Receptor-Negative Breast Carcinoma 7 151482 -NCIT:C153348 Metastatic Triple-Negative Breast Carcinoma 8 151483 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 151484 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 151485 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 151486 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 9 151487 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 151488 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 151489 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 7 151490 -NCIT:C76326 Metastatic Breast Ductal Carcinoma 7 151491 -NCIT:C76328 Metastatic Breast Lobular Carcinoma 7 151492 -NCIT:C165703 Refractory Breast Adenocarcinoma 6 151493 -NCIT:C157057 Refractory Hormone Receptor-Positive Breast Carcinoma 7 151494 -NCIT:C167076 Refractory Triple-Negative Breast Carcinoma 7 151495 -NCIT:C168784 Refractory HER2-Negative Breast Carcinoma 7 151496 -NCIT:C182110 Refractory HER2-Positive Breast Carcinoma 7 151497 -NCIT:C165743 Hormone Receptor-Negative Breast Carcinoma 6 151498 -NCIT:C190676 Unresectable Hormone Receptor-Negative Breast Carcinoma 7 151499 -NCIT:C165491 Unresectable Triple-Negative Breast Carcinoma 8 151500 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 151501 -NCIT:C190677 Metastatic Hormone Receptor-Negative Breast Carcinoma 7 151502 -NCIT:C153348 Metastatic Triple-Negative Breast Carcinoma 8 151503 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 151504 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 151505 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 151506 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 9 151507 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 151508 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 151509 -NCIT:C71732 Triple-Negative Breast Carcinoma 7 151510 -NCIT:C153348 Metastatic Triple-Negative Breast Carcinoma 8 151511 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 151512 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 151513 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 151514 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 9 151515 -NCIT:C165491 Unresectable Triple-Negative Breast Carcinoma 8 151516 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 151517 -NCIT:C167076 Refractory Triple-Negative Breast Carcinoma 8 151518 -NCIT:C171014 Recurrent Triple-Negative Breast Carcinoma 8 151519 -NCIT:C181081 Early Stage Triple-Negative Breast Carcinoma 8 151520 -NCIT:C168519 HER2-Negative Breast Carcinoma 6 151521 -NCIT:C168777 Metastatic HER2-Negative Breast Carcinoma 7 151522 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 151523 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 151524 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 151525 -NCIT:C168783 Recurrent HER2-Negative Breast Carcinoma 7 151526 -NCIT:C168784 Refractory HER2-Negative Breast Carcinoma 7 151527 -NCIT:C187161 Unresectable HER2-Negative Breast Carcinoma 7 151528 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 8 151529 -NCIT:C190215 Early Stage HER2-Negative Breast Carcinoma 7 151530 -NCIT:C175588 Recurrent Breast Adenocarcinoma 6 151531 -NCIT:C153568 Recurrent Breast Acinic Cell Carcinoma 7 151532 -NCIT:C153584 Recurrent Lobular Breast Carcinoma 7 151533 -NCIT:C153587 Recurrent Invasive Breast Carcinoma of No Special Type 7 151534 -NCIT:C153588 Recurrent Breast Paget Disease 7 151535 -NCIT:C168783 Recurrent HER2-Negative Breast Carcinoma 7 151536 -NCIT:C171014 Recurrent Triple-Negative Breast Carcinoma 7 151537 -NCIT:C182108 Recurrent HER2-Positive Breast Carcinoma 7 151538 -NCIT:C185157 Recurrent Hormone Receptor-Positive Breast Carcinoma 7 151539 -NCIT:C8607 Recurrent Breast Inflammatory Carcinoma 7 151540 -NCIT:C179553 HER2-Low Breast Carcinoma 6 151541 -NCIT:C179554 Metastatic HER2-Low Breast Carcinoma 7 151542 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 151543 -NCIT:C3771 Breast Lobular Carcinoma 6 151544 -NCIT:C153584 Recurrent Lobular Breast Carcinoma 7 151545 -NCIT:C4018 Breast Lobular Carcinoma In Situ 7 151546 -NCIT:C137839 Breast Pleomorphic Lobular Carcinoma In Situ 8 151547 -NCIT:C175949 Breast Classic Lobular Carcinoma In Situ 8 151548 -NCIT:C83170 Breast Classic Lobular Carcinoma In Situ Type A 9 151549 -NCIT:C83171 Breast Classic Lobular Carcinoma In Situ Type B 9 151550 -NCIT:C175950 Breast Florid Lobular Carcinoma In Situ 8 151551 -NCIT:C76328 Metastatic Breast Lobular Carcinoma 7 151552 -NCIT:C7950 Invasive Breast Lobular Carcinoma 7 151553 -NCIT:C157235 Breast Histiocytoid Carcinoma 8 151554 -NCIT:C187405 Invasive Breast Lobular Carcinoma with Extracellular Mucin 8 151555 -NCIT:C54691 Invasive Breast Lobular Carcinoma, Signet Ring Variant 8 151556 -NCIT:C9136 Invasive Breast Lobular Carcinoma with Predominant In Situ Component 8 151557 -NCIT:C97049 Invasive Breast Lobular Carcinoma, Alveolar Variant 8 151558 -NCIT:C97051 Invasive Breast Lobular Carcinoma, Pleomorphic Variant 8 151559 -NCIT:C97052 Invasive Breast Lobular Carcinoma, Solid Variant 8 151560 -NCIT:C97053 Invasive Breast Lobular Carcinoma, Tubulolobular Variant 8 151561 -NCIT:C4001 Breast Inflammatory Carcinoma 6 151562 -NCIT:C158751 Unresectable Breast Inflammatory Carcinoma 7 151563 -NCIT:C181787 Metastatic Breast Inflammatory Carcinoma 7 151564 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 8 151565 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 8 151566 -NCIT:C9246 Stage IIIB Breast Inflammatory Carcinoma 8 151567 -NCIT:C8607 Recurrent Breast Inflammatory Carcinoma 7 151568 -NCIT:C4017 Breast Ductal Carcinoma 6 151569 -NCIT:C2924 Breast Ductal Carcinoma In Situ 7 151570 -NCIT:C176005 Breast Ductal Carcinoma In Situ, Comedo Type 8 151571 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 8 151572 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 9 151573 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 9 151574 -NCIT:C5137 Breast Ductal Carcinoma In Situ, Non-Comedo Type 8 151575 -NCIT:C5138 Breast Ductal Carcinoma In Situ, Cribriform Pattern 8 151576 -NCIT:C66933 Breast Ductal Carcinoma In Situ, Solid Type 8 151577 -NCIT:C7949 Breast Ductal Carcinoma In Situ, High Grade 8 151578 -NCIT:C9456 Breast Ductal Carcinoma In Situ, Intermediate Grade 8 151579 -NCIT:C9457 Breast Ductal Carcinoma In Situ, Low Grade 8 151580 -NCIT:C4194 Invasive Breast Carcinoma of No Special Type 7 151581 -NCIT:C153587 Recurrent Invasive Breast Carcinoma of No Special Type 8 151582 -NCIT:C175585 Breast Carcinoma with Neuroendocrine Differentiation 8 151583 -NCIT:C40349 Breast Carcinoma with Osteoclast-Like Stromal Giant Cells 8 151584 -NCIT:C40350 Breast Carcinoma with Choriocarcinomatous Features 8 151585 -NCIT:C40351 Breast Carcinoma with Melanotic Features 8 151586 -NCIT:C40365 Breast Lipid-Rich Carcinoma 8 151587 -NCIT:C40366 Breast Oncocytic Carcinoma 8 151588 -NCIT:C40368 Glycogen-Rich, Clear Cell Breast Carcinoma 8 151589 -NCIT:C40369 Breast Sebaceous Carcinoma 8 151590 -NCIT:C5161 Breast Pleomorphic Carcinoma 8 151591 -NCIT:C66719 Breast Atypical Medullary Carcinoma 8 151592 -NCIT:C6987 Breast Ductal Carcinoma with Squamous Metaplasia 8 151593 -NCIT:C7362 Breast Scirrhous Carcinoma 8 151594 -NCIT:C9119 Breast Medullary Carcinoma 8 151595 -NCIT:C9132 Invasive Breast Carcinoma of No Special Type with Predominant Intraductal Component 8 151596 -NCIT:C76326 Metastatic Breast Ductal Carcinoma 7 151597 -NCIT:C40354 Breast Mucinous Cystadenocarcinoma 6 151598 -NCIT:C40360 Breast Adenocarcinoma with Spindle Cell Metaplasia 6 151599 -NCIT:C40367 Breast Acinic Cell Carcinoma 6 151600 -NCIT:C153568 Recurrent Breast Acinic Cell Carcinoma 7 151601 -NCIT:C47857 Breast Paget Disease 6 151602 -NCIT:C153588 Recurrent Breast Paget Disease 7 151603 -NCIT:C3301 Nipple Paget Disease 7 151604 -NCIT:C47858 Breast Paget Disease without Invasive Carcinoma 7 151605 -NCIT:C4019 Breast Paget Disease and Intraductal Carcinoma 8 151606 -NCIT:C7951 Breast Paget Disease with Invasive Ductal Carcinoma 7 151607 -NCIT:C5141 Breast Apocrine Carcinoma 6 151608 -NCIT:C5140 Breast Apocrine Carcinoma In Situ 7 151609 -NCIT:C5457 Invasive Breast Apocrine Carcinoma 7 151610 -NCIT:C5142 Invasive Breast Cribriform Carcinoma 6 151611 -NCIT:C5160 Breast Mixed Ductal and Lobular Carcinoma 6 151612 -NCIT:C7688 Invasive Breast Ductal Carcinoma and Lobular Carcinoma 7 151613 -NCIT:C6393 Invasive Breast Ductal Carcinoma and Invasive Lobular Carcinoma 8 151614 -NCIT:C7689 Invasive Breast Ductal Carcinoma and Lobular Carcinoma In Situ 8 151615 -NCIT:C7690 Breast Ductal Carcinoma In Situ and Lobular Carcinoma 7 151616 -NCIT:C4195 Breast Ductal Carcinoma In Situ and Lobular Carcinoma In Situ 8 151617 -NCIT:C6939 Breast Ductal Carcinoma In Situ and Invasive Lobular Carcinoma 8 151618 -NCIT:C5163 Breast Adenocarcinoma with Squamous Metaplasia 6 151619 -NCIT:C6987 Breast Ductal Carcinoma with Squamous Metaplasia 7 151620 -NCIT:C5175 Breast Signet Ring Cell Carcinoma 6 151621 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 7 151622 -NCIT:C54691 Invasive Breast Lobular Carcinoma, Signet Ring Variant 7 151623 -NCIT:C53553 Breast Carcinoma by Gene Expression Profile 6 151624 -NCIT:C53554 Luminal A Breast Carcinoma 7 151625 -NCIT:C53555 Luminal B Breast Carcinoma 7 151626 -NCIT:C53556 HER2-Positive Breast Carcinoma 7 151627 -NCIT:C180924 Metastatic HER2-Positive Breast Carcinoma 8 151628 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 151629 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 151630 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 151631 -NCIT:C182108 Recurrent HER2-Positive Breast Carcinoma 8 151632 -NCIT:C182110 Refractory HER2-Positive Breast Carcinoma 8 151633 -NCIT:C186284 Unresectable HER2-Positive Breast Carcinoma 8 151634 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 151635 -NCIT:C53557 Normal Breast-Like Subtype of Breast Carcinoma 7 151636 -NCIT:C53558 Basal-Like Breast Carcinoma 7 151637 -NCIT:C71732 Triple-Negative Breast Carcinoma 7 151638 -NCIT:C153348 Metastatic Triple-Negative Breast Carcinoma 8 151639 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 151640 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 151641 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 151642 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 9 151643 -NCIT:C165491 Unresectable Triple-Negative Breast Carcinoma 8 151644 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 151645 -NCIT:C167076 Refractory Triple-Negative Breast Carcinoma 8 151646 -NCIT:C171014 Recurrent Triple-Negative Breast Carcinoma 8 151647 -NCIT:C181081 Early Stage Triple-Negative Breast Carcinoma 8 151648 -NCIT:C9131 Breast Mucinous Carcinoma 6 151649 -NCIT:C40355 Breast Columnar Cell Mucinous Carcinoma 7 151650 -NCIT:C9134 Breast Papillary Carcinoma 6 151651 -NCIT:C176009 Encapsulated Breast Papillary Carcinoma 7 151652 -NCIT:C176010 Encapsulated Breast Papillary Carcinoma with Invasion 8 151653 -NCIT:C36085 Invasive Breast Papillary Carcinoma 7 151654 -NCIT:C176010 Encapsulated Breast Papillary Carcinoma with Invasion 8 151655 -NCIT:C176012 Invasive Breast Solid Papillary Carcinoma 8 151656 -NCIT:C36084 Invasive Breast Micropapillary Carcinoma 8 151657 -NCIT:C7439 Breast Papillary Ductal Carcinoma In Situ with Invasion 8 151658 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 7 151659 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 8 151660 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 8 151661 -NCIT:C6870 Breast Solid Papillary Carcinoma 7 151662 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 8 151663 -NCIT:C176012 Invasive Breast Solid Papillary Carcinoma 8 151664 -NCIT:C9135 Breast Tubular Carcinoma 6 151665 -NCIT:C7566 Sporadic Breast Carcinoma 5 151666 -NCIT:C7771 Recurrent Breast Carcinoma 5 151667 -NCIT:C175588 Recurrent Breast Adenocarcinoma 6 151668 -NCIT:C153568 Recurrent Breast Acinic Cell Carcinoma 7 151669 -NCIT:C153584 Recurrent Lobular Breast Carcinoma 7 151670 -NCIT:C153587 Recurrent Invasive Breast Carcinoma of No Special Type 7 151671 -NCIT:C153588 Recurrent Breast Paget Disease 7 151672 -NCIT:C168783 Recurrent HER2-Negative Breast Carcinoma 7 151673 -NCIT:C171014 Recurrent Triple-Negative Breast Carcinoma 7 151674 -NCIT:C182108 Recurrent HER2-Positive Breast Carcinoma 7 151675 -NCIT:C185157 Recurrent Hormone Receptor-Positive Breast Carcinoma 7 151676 -NCIT:C8607 Recurrent Breast Inflammatory Carcinoma 7 151677 -NCIT:C190196 Locally Recurrent Breast Carcinoma 6 151678 -NCIT:C8287 Bilateral Breast Carcinoma 5 151679 -NCIT:C40370 Synchronous Bilateral Breast Carcinoma 6 151680 -NCIT:C99390 Contralateral Breast Carcinoma 6 151681 -NCIT:C90513 Breast Cancer by AJCC v6 Stage 5 151682 -NCIT:C3641 Stage 0 Breast Cancer AJCC v6 and v7 6 151683 -NCIT:C176503 Male Breast Carcinoma In Situ 7 151684 -NCIT:C176580 Female Breast Carcinoma In Situ 7 151685 -NCIT:C2924 Breast Ductal Carcinoma In Situ 7 151686 -NCIT:C176005 Breast Ductal Carcinoma In Situ, Comedo Type 8 151687 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 8 151688 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 9 151689 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 9 151690 -NCIT:C5137 Breast Ductal Carcinoma In Situ, Non-Comedo Type 8 151691 -NCIT:C5138 Breast Ductal Carcinoma In Situ, Cribriform Pattern 8 151692 -NCIT:C66933 Breast Ductal Carcinoma In Situ, Solid Type 8 151693 -NCIT:C7949 Breast Ductal Carcinoma In Situ, High Grade 8 151694 -NCIT:C9456 Breast Ductal Carcinoma In Situ, Intermediate Grade 8 151695 -NCIT:C9457 Breast Ductal Carcinoma In Situ, Low Grade 8 151696 -NCIT:C4018 Breast Lobular Carcinoma In Situ 7 151697 -NCIT:C137839 Breast Pleomorphic Lobular Carcinoma In Situ 8 151698 -NCIT:C175949 Breast Classic Lobular Carcinoma In Situ 8 151699 -NCIT:C83170 Breast Classic Lobular Carcinoma In Situ Type A 9 151700 -NCIT:C83171 Breast Classic Lobular Carcinoma In Situ Type B 9 151701 -NCIT:C175950 Breast Florid Lobular Carcinoma In Situ 8 151702 -NCIT:C4195 Breast Ductal Carcinoma In Situ and Lobular Carcinoma In Situ 7 151703 -NCIT:C3995 Stage IV Breast Cancer AJCC v6 and v7 6 151704 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 7 151705 -NCIT:C7767 Stage I Breast Cancer AJCC v6 6 151706 -NCIT:C7768 Stage II Breast Cancer AJCC v6 and v7 6 151707 -NCIT:C5454 Stage IIA Breast Cancer AJCC v6 and v7 7 151708 -NCIT:C5455 Stage IIB Breast Cancer AJCC v6 and v7 7 151709 -NCIT:C7769 Stage III Breast Cancer AJCC v6 6 151710 -NCIT:C27828 Stage IIIC Breast Cancer AJCC v6 7 151711 -NCIT:C91230 Breast Cancer by AJCC v7 Stage 5 151712 -NCIT:C3641 Stage 0 Breast Cancer AJCC v6 and v7 6 151713 -NCIT:C176503 Male Breast Carcinoma In Situ 7 151714 -NCIT:C176580 Female Breast Carcinoma In Situ 7 151715 -NCIT:C2924 Breast Ductal Carcinoma In Situ 7 151716 -NCIT:C176005 Breast Ductal Carcinoma In Situ, Comedo Type 8 151717 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 8 151718 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 9 151719 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 9 151720 -NCIT:C5137 Breast Ductal Carcinoma In Situ, Non-Comedo Type 8 151721 -NCIT:C5138 Breast Ductal Carcinoma In Situ, Cribriform Pattern 8 151722 -NCIT:C66933 Breast Ductal Carcinoma In Situ, Solid Type 8 151723 -NCIT:C7949 Breast Ductal Carcinoma In Situ, High Grade 8 151724 -NCIT:C9456 Breast Ductal Carcinoma In Situ, Intermediate Grade 8 151725 -NCIT:C9457 Breast Ductal Carcinoma In Situ, Low Grade 8 151726 -NCIT:C4018 Breast Lobular Carcinoma In Situ 7 151727 -NCIT:C137839 Breast Pleomorphic Lobular Carcinoma In Situ 8 151728 -NCIT:C175949 Breast Classic Lobular Carcinoma In Situ 8 151729 -NCIT:C83170 Breast Classic Lobular Carcinoma In Situ Type A 9 151730 -NCIT:C83171 Breast Classic Lobular Carcinoma In Situ Type B 9 151731 -NCIT:C175950 Breast Florid Lobular Carcinoma In Situ 8 151732 -NCIT:C4195 Breast Ductal Carcinoma In Situ and Lobular Carcinoma In Situ 7 151733 -NCIT:C3995 Stage IV Breast Cancer AJCC v6 and v7 6 151734 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 7 151735 -NCIT:C7768 Stage II Breast Cancer AJCC v6 and v7 6 151736 -NCIT:C5454 Stage IIA Breast Cancer AJCC v6 and v7 7 151737 -NCIT:C5455 Stage IIB Breast Cancer AJCC v6 and v7 7 151738 -NCIT:C88375 Stage I Breast Cancer AJCC v7 6 151739 -NCIT:C85835 Stage IA Breast Cancer AJCC v7 7 151740 -NCIT:C85836 Stage IB Breast Cancer AJCC v7 7 151741 -NCIT:C88376 Stage III Breast Cancer AJCC v7 6 151742 -NCIT:C7770 Stage IIIA Breast Cancer AJCC v7 7 151743 -NCIT:C7782 Stage IIIB Breast Cancer AJCC v7 7 151744 -NCIT:C9246 Stage IIIB Breast Inflammatory Carcinoma 8 151745 -NCIT:C88377 Stage IIIC Breast Cancer AJCC v7 7 151746 -NCIT:C9245 Invasive Breast Carcinoma 5 151747 -NCIT:C175581 Breast Neuroendocrine Carcinoma 6 151748 -NCIT:C40356 Breast Large Cell Neuroendocrine Carcinoma 7 151749 -NCIT:C6760 Breast Small Cell Neuroendocrine Carcinoma 7 151750 -NCIT:C175604 Breast Polymorphous Adenocarcinoma 6 151751 -NCIT:C175607 Breast Tall Cell Carcinoma with Reversed Polarity 6 151752 -NCIT:C176504 Invasive Male Breast Carcinoma 6 151753 -NCIT:C176579 Invasive Female Breast Carcinoma 6 151754 -NCIT:C27829 Invasive Breast Carcinoma by Histologic Grade 6 151755 -NCIT:C27830 Grade 1 Invasive Breast Carcinoma 7 151756 -NCIT:C27831 Grade 2 Invasive Breast Carcinoma 7 151757 -NCIT:C27832 Grade 3 Invasive Breast Carcinoma 7 151758 -NCIT:C5161 Breast Pleomorphic Carcinoma 8 151759 -NCIT:C36085 Invasive Breast Papillary Carcinoma 6 151760 -NCIT:C176010 Encapsulated Breast Papillary Carcinoma with Invasion 7 151761 -NCIT:C176012 Invasive Breast Solid Papillary Carcinoma 7 151762 -NCIT:C36084 Invasive Breast Micropapillary Carcinoma 7 151763 -NCIT:C7439 Breast Papillary Ductal Carcinoma In Situ with Invasion 7 151764 -NCIT:C4001 Breast Inflammatory Carcinoma 6 151765 -NCIT:C158751 Unresectable Breast Inflammatory Carcinoma 7 151766 -NCIT:C181787 Metastatic Breast Inflammatory Carcinoma 7 151767 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 8 151768 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 8 151769 -NCIT:C9246 Stage IIIB Breast Inflammatory Carcinoma 8 151770 -NCIT:C8607 Recurrent Breast Inflammatory Carcinoma 7 151771 -NCIT:C40347 Breast Mixed Carcinoma 6 151772 -NCIT:C40361 Breast Adenosquamous Carcinoma 7 151773 -NCIT:C40362 Low Grade Breast Adenosquamous Carcinoma 8 151774 -NCIT:C6393 Invasive Breast Ductal Carcinoma and Invasive Lobular Carcinoma 7 151775 -NCIT:C40354 Breast Mucinous Cystadenocarcinoma 6 151776 -NCIT:C40367 Breast Acinic Cell Carcinoma 6 151777 -NCIT:C153568 Recurrent Breast Acinic Cell Carcinoma 7 151778 -NCIT:C40374 Microinvasive Breast Carcinoma 6 151779 -NCIT:C40395 Breast Malignant Myoepithelioma 6 151780 -NCIT:C4189 Breast Secretory Carcinoma 6 151781 -NCIT:C4194 Invasive Breast Carcinoma of No Special Type 6 151782 -NCIT:C153587 Recurrent Invasive Breast Carcinoma of No Special Type 7 151783 -NCIT:C175585 Breast Carcinoma with Neuroendocrine Differentiation 7 151784 -NCIT:C40349 Breast Carcinoma with Osteoclast-Like Stromal Giant Cells 7 151785 -NCIT:C40350 Breast Carcinoma with Choriocarcinomatous Features 7 151786 -NCIT:C40351 Breast Carcinoma with Melanotic Features 7 151787 -NCIT:C40365 Breast Lipid-Rich Carcinoma 7 151788 -NCIT:C40366 Breast Oncocytic Carcinoma 7 151789 -NCIT:C40368 Glycogen-Rich, Clear Cell Breast Carcinoma 7 151790 -NCIT:C40369 Breast Sebaceous Carcinoma 7 151791 -NCIT:C5161 Breast Pleomorphic Carcinoma 7 151792 -NCIT:C66719 Breast Atypical Medullary Carcinoma 7 151793 -NCIT:C6987 Breast Ductal Carcinoma with Squamous Metaplasia 7 151794 -NCIT:C7362 Breast Scirrhous Carcinoma 7 151795 -NCIT:C9119 Breast Medullary Carcinoma 7 151796 -NCIT:C9132 Invasive Breast Carcinoma of No Special Type with Predominant Intraductal Component 7 151797 -NCIT:C5130 Breast Adenoid Cystic Carcinoma 6 151798 -NCIT:C5142 Invasive Breast Cribriform Carcinoma 6 151799 -NCIT:C5164 Breast Metaplastic Carcinoma 6 151800 -NCIT:C40360 Breast Adenocarcinoma with Spindle Cell Metaplasia 7 151801 -NCIT:C40364 Breast Mixed Epithelial/Mesenchymal Metaplastic Carcinoma 7 151802 -NCIT:C47847 Breast Carcinoma with Chondroid Metaplasia 8 151803 -NCIT:C47848 Breast Carcinoma with Osseous Metaplasia 8 151804 -NCIT:C5163 Breast Adenocarcinoma with Squamous Metaplasia 7 151805 -NCIT:C6987 Breast Ductal Carcinoma with Squamous Metaplasia 8 151806 -NCIT:C5166 Breast Mucoepidermoid Carcinoma 6 151807 -NCIT:C5167 High Grade Breast Mucoepidermoid Carcinoma 7 151808 -NCIT:C5168 Low Grade Breast Mucoepidermoid Carcinoma 7 151809 -NCIT:C5175 Breast Signet Ring Cell Carcinoma 6 151810 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 7 151811 -NCIT:C54691 Invasive Breast Lobular Carcinoma, Signet Ring Variant 7 151812 -NCIT:C5177 Breast Squamous Cell Carcinoma 6 151813 -NCIT:C40357 Breast Squamous Cell Carcinoma, Large Cell Keratinizing Variant 7 151814 -NCIT:C40358 Breast Squamous Cell Carcinoma, Spindle Cell Variant 7 151815 -NCIT:C40359 Breast Squamous Cell Carcinoma, Acantholytic Variant 7 151816 -NCIT:C5178 Metastatic Breast Squamous Cell Carcinoma 7 151817 -NCIT:C5457 Invasive Breast Apocrine Carcinoma 6 151818 -NCIT:C7950 Invasive Breast Lobular Carcinoma 6 151819 -NCIT:C157235 Breast Histiocytoid Carcinoma 7 151820 -NCIT:C187405 Invasive Breast Lobular Carcinoma with Extracellular Mucin 7 151821 -NCIT:C54691 Invasive Breast Lobular Carcinoma, Signet Ring Variant 7 151822 -NCIT:C9136 Invasive Breast Lobular Carcinoma with Predominant In Situ Component 7 151823 -NCIT:C97049 Invasive Breast Lobular Carcinoma, Alveolar Variant 7 151824 -NCIT:C97051 Invasive Breast Lobular Carcinoma, Pleomorphic Variant 7 151825 -NCIT:C97052 Invasive Breast Lobular Carcinoma, Solid Variant 7 151826 -NCIT:C97053 Invasive Breast Lobular Carcinoma, Tubulolobular Variant 7 151827 -NCIT:C7951 Breast Paget Disease with Invasive Ductal Carcinoma 6 151828 -NCIT:C9131 Breast Mucinous Carcinoma 6 151829 -NCIT:C40355 Breast Columnar Cell Mucinous Carcinoma 7 151830 -NCIT:C9135 Breast Tubular Carcinoma 6 151831 -NCIT:C94770 Multifocal Breast Carcinoma 5 151832 -NCIT:C94772 Multicentric Breast Carcinoma 5 151833 -NCIT:C94774 Early Stage Breast Carcinoma 5 151834 -NCIT:C181081 Early Stage Triple-Negative Breast Carcinoma 6 151835 -NCIT:C190215 Early Stage HER2-Negative Breast Carcinoma 6 151836 -NCIT:C4878 Lung Carcinoma 4 151837 -NCIT:C136467 Lung Cancer by AJCC v8 Stage 5 151838 -NCIT:C136468 Occult Lung Cancer AJCC v8 6 151839 -NCIT:C136469 Stage 0 Lung Cancer AJCC v8 6 151840 -NCIT:C136470 Stage I Lung Cancer AJCC v8 6 151841 -NCIT:C136471 Stage IA1 Lung Cancer AJCC v8 7 151842 -NCIT:C136472 Stage IA2 Lung Cancer AJCC v8 7 151843 -NCIT:C136473 Stage IA3 Lung Cancer AJCC v8 7 151844 -NCIT:C136474 Stage IB Lung Cancer AJCC v8 7 151845 -NCIT:C136475 Stage II Lung Cancer AJCC v8 6 151846 -NCIT:C136476 Stage IIA Lung Cancer AJCC v8 7 151847 -NCIT:C136477 Stage IIB Lung Cancer AJCC v8 7 151848 -NCIT:C136478 Stage III Lung Cancer AJCC v8 6 151849 -NCIT:C136479 Stage IIIA Lung Cancer AJCC v8 7 151850 -NCIT:C136480 Stage IIIB Lung Cancer AJCC v8 7 151851 -NCIT:C136481 Stage IIIC Lung Cancer AJCC v8 7 151852 -NCIT:C136482 Stage IV Lung Cancer AJCC v8 6 151853 -NCIT:C136483 Stage IVA Lung Cancer AJCC v8 7 151854 -NCIT:C136484 Stage IVB Lung Cancer AJCC v8 7 151855 -NCIT:C141076 Refractory Lung Carcinoma 5 151856 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 6 151857 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 7 151858 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 7 151859 -NCIT:C153081 Refractory Lung Non-Small Cell Carcinoma 6 151860 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 7 151861 -NCIT:C176858 Refractory Lung Non-Squamous Non-Small Cell Carcinoma 7 151862 -NCIT:C179209 Refractory Lung Adenocarcinoma 7 151863 -NCIT:C173331 Refractory Lung Squamous Cell Carcinoma 6 151864 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 7 151865 -NCIT:C142830 Lung Myoepithelial Carcinoma 5 151866 -NCIT:C153202 Metastatic Lung Carcinoma 5 151867 -NCIT:C133503 Lung Carcinoma Metastatic in the Central Nervous System 6 151868 -NCIT:C36304 Lung Carcinoma Metastatic in the Brain 7 151869 -NCIT:C153203 Advanced Lung Carcinoma 6 151870 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 151871 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 7 151872 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 151873 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 151874 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 151875 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 151876 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 8 151877 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 7 151878 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 151879 -NCIT:C180922 Advanced Bronchogenic Carcinoma 7 151880 -NCIT:C153206 Locally Advanced Lung Carcinoma 6 151881 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 7 151882 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 151883 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 151884 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 151885 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 151886 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 151887 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 8 151888 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 7 151889 -NCIT:C156092 Metastatic Lung Squamous Cell Carcinoma 6 151890 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 7 151891 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 151892 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 151893 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 151894 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 7 151895 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 151896 -NCIT:C156094 Metastatic Lung Non-Small Cell Carcinoma 6 151897 -NCIT:C128798 Metastatic Lung Non-Squamous Non-Small Cell Carcinoma 7 151898 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 151899 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 151900 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 151901 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 151902 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 151903 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 151904 -NCIT:C155908 Metastatic Lung Adenocarcinoma 8 151905 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 151906 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 151907 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 8 151908 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 151909 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 151910 -NCIT:C156093 Metastatic Lung Adenosquamous Carcinoma 7 151911 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 8 151912 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 8 151913 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 7 151914 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 151915 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 151916 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 151917 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 7 151918 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 151919 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 151920 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 151921 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 151922 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 151923 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 8 151924 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 7 151925 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 151926 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 151927 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 151928 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 151929 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 8 151930 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 6 151931 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 151932 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 7 151933 -NCIT:C187195 Oligometastatic Lung Carcinoma 6 151934 -NCIT:C36305 Lung Carcinoma Metastatic in the Bone 6 151935 -NCIT:C36306 Lung Carcinoma Metastatic in the Liver 6 151936 -NCIT:C155902 Unresectable Lung Carcinoma 5 151937 -NCIT:C155901 Unresectable Lung Non-Small Cell Carcinoma 6 151938 -NCIT:C162642 Unresectable Lung Non-Squamous Non-Small Cell Carcinoma 7 151939 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 8 151940 -NCIT:C171612 Unresectable Lung Non-Small Cell Squamous Carcinoma 7 151941 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 8 151942 -NCIT:C174510 Unresectable Lung Adenocarcinoma 7 151943 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 6 151944 -NCIT:C162570 Localized Lung Carcinoma 5 151945 -NCIT:C183116 Lung Hyalinizing Clear Cell Carcinoma 5 151946 -NCIT:C188068 Lung Secretory Carcinoma 5 151947 -NCIT:C190952 Resectable Lung Carcinoma 5 151948 -NCIT:C165767 Resectable Lung Non-Small Cell Carcinoma 6 151949 -NCIT:C190954 Resectable Lung Adenocarcinoma 7 151950 -NCIT:C190953 Resectable Lung Squamous Cell Carcinoma 6 151951 -NCIT:C27637 Transplant-Related Lung Carcinoma 5 151952 -NCIT:C27925 Asbestos-Related Lung Carcinoma 5 151953 -NCIT:C2926 Lung Non-Small Cell Carcinoma 5 151954 -NCIT:C118814 Childhood Lung Non-Small Cell Carcinoma 6 151955 -NCIT:C133254 Lung Non-Small Cell Squamous Carcinoma 6 151956 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 7 151957 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 151958 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 151959 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 151960 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 7 151961 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 7 151962 -NCIT:C171612 Unresectable Lung Non-Small Cell Squamous Carcinoma 7 151963 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 8 151964 -NCIT:C45502 Lung Squamous Cell Carcinoma, Papillary Variant 7 151965 -NCIT:C45503 Lung Squamous Cell Carcinoma, Clear Cell Variant 7 151966 -NCIT:C135017 Lung Non-Squamous Non-Small Cell Carcinoma 6 151967 -NCIT:C128797 Recurrent Lung Non-Squamous Non-Small Cell Carcinoma 7 151968 -NCIT:C128798 Metastatic Lung Non-Squamous Non-Small Cell Carcinoma 7 151969 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 151970 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 151971 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 151972 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 151973 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 151974 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 151975 -NCIT:C155908 Metastatic Lung Adenocarcinoma 8 151976 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 151977 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 151978 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 8 151979 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 151980 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 151981 -NCIT:C162642 Unresectable Lung Non-Squamous Non-Small Cell Carcinoma 7 151982 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 8 151983 -NCIT:C176858 Refractory Lung Non-Squamous Non-Small Cell Carcinoma 7 151984 -NCIT:C136491 Lung Non-Small Cell Cancer by AJCC v7 Stage 6 151985 -NCIT:C136490 Lung Adenocarcinoma by AJCC v7 Stage 7 151986 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 8 151987 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 8 151988 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 9 151989 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 9 151990 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 8 151991 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 9 151992 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 9 151993 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 8 151994 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 9 151995 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 9 151996 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 8 151997 -NCIT:C136492 Lung Adenosquamous Carcinoma by AJCC v7 Stage 7 151998 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 8 151999 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 8 152000 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 9 152001 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 9 152002 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 8 152003 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 9 152004 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 9 152005 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 8 152006 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 9 152007 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 9 152008 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 8 152009 -NCIT:C136493 Lung Large Cell Carcinoma by AJCC v7 Stage 7 152010 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 8 152011 -NCIT:C6660 Stage II Lung Large Cell Carcinoma AJCC v7 8 152012 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 9 152013 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 9 152014 -NCIT:C8755 Stage I Lung Large Cell Carcinoma AJCC v7 8 152015 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 9 152016 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 9 152017 -NCIT:C8756 Stage IV Lung Large Cell Carcinoma AJCC v7 8 152018 -NCIT:C9257 Stage III Lung Large Cell Carcinoma AJCC v7 8 152019 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 9 152020 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 9 152021 -NCIT:C4012 Stage IV Lung Non-Small Cell Cancer AJCC v7 7 152022 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 8 152023 -NCIT:C8756 Stage IV Lung Large Cell Carcinoma AJCC v7 8 152024 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 8 152025 -NCIT:C6671 Stage I Lung Non-Small Cell Cancer AJCC v7 7 152026 -NCIT:C5652 Stage IA Lung Non-Small Cell Carcinoma AJCC v7 8 152027 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 9 152028 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 9 152029 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 9 152030 -NCIT:C5653 Stage IB Lung Non-Small Cell Carcinoma AJCC v7 8 152031 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 9 152032 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 9 152033 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 9 152034 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 8 152035 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 9 152036 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 9 152037 -NCIT:C8755 Stage I Lung Large Cell Carcinoma AJCC v7 8 152038 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 9 152039 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 9 152040 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 8 152041 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 9 152042 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 9 152043 -NCIT:C7777 Stage II Lung Non-Small Cell Cancer AJCC v7 7 152044 -NCIT:C5654 Stage IIB Lung Non-Small Cell Carcinoma AJCC v7 8 152045 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 9 152046 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 9 152047 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 9 152048 -NCIT:C5655 Stage IIA Lung Non-Small Cell Carcinoma AJCC v7 8 152049 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 9 152050 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 9 152051 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 9 152052 -NCIT:C6660 Stage II Lung Large Cell Carcinoma AJCC v7 8 152053 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 9 152054 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 9 152055 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 8 152056 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 9 152057 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 9 152058 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 8 152059 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 9 152060 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 9 152061 -NCIT:C7778 Stage III Lung Non-Small Cell Cancer AJCC v7 7 152062 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 8 152063 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 9 152064 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 9 152065 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 8 152066 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 9 152067 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 9 152068 -NCIT:C9102 Stage IIIA Lung Non-Small Cell Cancer AJCC v7 8 152069 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 9 152070 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 9 152071 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 9 152072 -NCIT:C9103 Stage IIIB Lung Non-Small Cell Cancer AJCC v7 8 152073 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 9 152074 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 9 152075 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 9 152076 -NCIT:C9257 Stage III Lung Large Cell Carcinoma AJCC v7 8 152077 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 9 152078 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 9 152079 -NCIT:C9104 Stage 0 Lung Non-Small Cell Cancer AJCC v6 and v7 7 152080 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 8 152081 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 8 152082 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 8 152083 -NCIT:C153081 Refractory Lung Non-Small Cell Carcinoma 6 152084 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 7 152085 -NCIT:C176858 Refractory Lung Non-Squamous Non-Small Cell Carcinoma 7 152086 -NCIT:C179209 Refractory Lung Adenocarcinoma 7 152087 -NCIT:C155901 Unresectable Lung Non-Small Cell Carcinoma 6 152088 -NCIT:C162642 Unresectable Lung Non-Squamous Non-Small Cell Carcinoma 7 152089 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 8 152090 -NCIT:C171612 Unresectable Lung Non-Small Cell Squamous Carcinoma 7 152091 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 8 152092 -NCIT:C174510 Unresectable Lung Adenocarcinoma 7 152093 -NCIT:C156094 Metastatic Lung Non-Small Cell Carcinoma 6 152094 -NCIT:C128798 Metastatic Lung Non-Squamous Non-Small Cell Carcinoma 7 152095 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 152096 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 152097 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 152098 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 152099 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 152100 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 152101 -NCIT:C155908 Metastatic Lung Adenocarcinoma 8 152102 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 152103 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 152104 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 8 152105 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 152106 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 152107 -NCIT:C156093 Metastatic Lung Adenosquamous Carcinoma 7 152108 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 8 152109 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 8 152110 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 7 152111 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 152112 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 152113 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 152114 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 7 152115 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 152116 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 152117 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 152118 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 152119 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 152120 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 8 152121 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 7 152122 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 152123 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 152124 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 152125 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 152126 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 8 152127 -NCIT:C165767 Resectable Lung Non-Small Cell Carcinoma 6 152128 -NCIT:C190954 Resectable Lung Adenocarcinoma 7 152129 -NCIT:C3512 Lung Adenocarcinoma 6 152130 -NCIT:C136486 Lung Adenocarcinoma In Situ 7 152131 -NCIT:C136716 Lung Non-Mucinous Adenocarcinoma In Situ 8 152132 -NCIT:C136717 Lung Mucinous Adenocarcinoma In Situ 8 152133 -NCIT:C136490 Lung Adenocarcinoma by AJCC v7 Stage 7 152134 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 8 152135 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 8 152136 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 9 152137 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 9 152138 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 8 152139 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 9 152140 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 9 152141 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 8 152142 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 9 152143 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 9 152144 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 8 152145 -NCIT:C136709 Invasive Lung Mucinous Adenocarcinoma 7 152146 -NCIT:C136710 Lung Enteric Adenocarcinoma 7 152147 -NCIT:C155908 Metastatic Lung Adenocarcinoma 7 152148 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 8 152149 -NCIT:C176727 Advanced Lung Adenocarcinoma 8 152150 -NCIT:C174510 Unresectable Lung Adenocarcinoma 7 152151 -NCIT:C179209 Refractory Lung Adenocarcinoma 7 152152 -NCIT:C183109 Invasive Lung Non-Mucinous Adenocarcinoma 7 152153 -NCIT:C123160 Lepidic Adenocarcinoma 8 152154 -NCIT:C5649 Lung Acinar Adenocarcinoma 8 152155 -NCIT:C5650 Lung Papillary Adenocarcinoma 8 152156 -NCIT:C128847 Lung Micropapillary Adenocarcinoma 9 152157 -NCIT:C5651 Solid Lung Adenocarcinoma 8 152158 -NCIT:C190954 Resectable Lung Adenocarcinoma 7 152159 -NCIT:C2923 Minimally Invasive Lung Adenocarcinoma 7 152160 -NCIT:C7268 Minimally Invasive Lung Mucinous Adenocarcinoma 8 152161 -NCIT:C7269 Minimally Invasive Lung Non-Mucinous Adenocarcinoma 8 152162 -NCIT:C7270 Minimally Invasive Lung Mixed Non-Mucinous and Mucinous Adenocarcinoma 8 152163 -NCIT:C45509 Lung Fetal Adenocarcinoma 7 152164 -NCIT:C45512 Lung Colloid Adenocarcinoma 7 152165 -NCIT:C6699 Occult Lung Adenocarcinoma 7 152166 -NCIT:C8757 Recurrent Lung Adenocarcinoma 7 152167 -NCIT:C4450 Lung Large Cell Carcinoma 6 152168 -NCIT:C136493 Lung Large Cell Carcinoma by AJCC v7 Stage 7 152169 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 8 152170 -NCIT:C6660 Stage II Lung Large Cell Carcinoma AJCC v7 8 152171 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 9 152172 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 9 152173 -NCIT:C8755 Stage I Lung Large Cell Carcinoma AJCC v7 8 152174 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 9 152175 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 9 152176 -NCIT:C8756 Stage IV Lung Large Cell Carcinoma AJCC v7 8 152177 -NCIT:C9257 Stage III Lung Large Cell Carcinoma AJCC v7 8 152178 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 9 152179 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 9 152180 -NCIT:C4451 Lung Large Cell Carcinoma, Clear Cell Variant 7 152181 -NCIT:C6685 Occult Lung Large Cell Carcinoma 7 152182 -NCIT:C6876 Lung Large Cell Carcinoma with Rhabdoid Phenotype 7 152183 -NCIT:C7266 Lung Basaloid Large Cell Carcinoma 7 152184 -NCIT:C8753 Recurrent Lung Large Cell Carcinoma 7 152185 -NCIT:C45519 Lung Lymphoepithelial Carcinoma 6 152186 -NCIT:C45540 Lung Sarcomatoid Carcinoma 6 152187 -NCIT:C3732 Pulmonary Blastoma 7 152188 -NCIT:C4452 Lung Giant Cell Carcinoma 7 152189 -NCIT:C45541 Lung Spindle Cell Carcinoma 7 152190 -NCIT:C45542 Lung Pleomorphic Carcinoma 7 152191 -NCIT:C45543 Lung Carcinosarcoma 7 152192 -NCIT:C7783 Recurrent Lung Non-Small Cell Carcinoma 6 152193 -NCIT:C128797 Recurrent Lung Non-Squamous Non-Small Cell Carcinoma 7 152194 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 7 152195 -NCIT:C190195 Locally Recurrent Lung Non-Small Cell Carcinoma 7 152196 -NCIT:C8747 Recurrent Lung Adenosquamous Carcinoma 7 152197 -NCIT:C8753 Recurrent Lung Large Cell Carcinoma 7 152198 -NCIT:C8757 Recurrent Lung Adenocarcinoma 7 152199 -NCIT:C9038 Occult Lung Non-Small Cell Carcinoma 6 152200 -NCIT:C6684 Occult Lung Adenosquamous Carcinoma 7 152201 -NCIT:C6685 Occult Lung Large Cell Carcinoma 7 152202 -NCIT:C6699 Occult Lung Adenocarcinoma 7 152203 -NCIT:C9133 Lung Adenosquamous Carcinoma 6 152204 -NCIT:C136492 Lung Adenosquamous Carcinoma by AJCC v7 Stage 7 152205 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 8 152206 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 8 152207 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 9 152208 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 9 152209 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 8 152210 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 9 152211 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 9 152212 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 8 152213 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 9 152214 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 9 152215 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 8 152216 -NCIT:C156093 Metastatic Lung Adenosquamous Carcinoma 7 152217 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 8 152218 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 8 152219 -NCIT:C6684 Occult Lung Adenosquamous Carcinoma 7 152220 -NCIT:C8747 Recurrent Lung Adenosquamous Carcinoma 7 152221 -NCIT:C3493 Lung Squamous Cell Carcinoma 5 152222 -NCIT:C133254 Lung Non-Small Cell Squamous Carcinoma 6 152223 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 7 152224 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 152225 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 152226 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 152227 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 7 152228 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 7 152229 -NCIT:C171612 Unresectable Lung Non-Small Cell Squamous Carcinoma 7 152230 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 8 152231 -NCIT:C45502 Lung Squamous Cell Carcinoma, Papillary Variant 7 152232 -NCIT:C45503 Lung Squamous Cell Carcinoma, Clear Cell Variant 7 152233 -NCIT:C136494 Lung Squamous Cell Carcinoma by AJCC v7 Stage 6 152234 -NCIT:C8763 Stage 0 Lung Squamous Cell Carcinoma AJCC v6 and v7 7 152235 -NCIT:C8764 Stage I Lung Squamous Cell Carcinoma AJCC v7 7 152236 -NCIT:C6687 Stage IA Lung Squamous Cell Carcinoma AJCC v7 8 152237 -NCIT:C6692 Stage IB Lung Squamous Cell Carcinoma AJCC v7 8 152238 -NCIT:C8765 Stage II Lung Squamous Cell Carcinoma AJCC v7 7 152239 -NCIT:C6688 Stage IIA Lung Squamous Cell Carcinoma AJCC v7 8 152240 -NCIT:C6691 Stage IIB Lung Squamous Cell Carcinoma AJCC v7 8 152241 -NCIT:C8766 Stage III Lung Squamous Cell Carcinoma AJCC v7 7 152242 -NCIT:C6689 Stage IIIA Lung Squamous Cell Carcinoma AJCC v7 8 152243 -NCIT:C6690 Stage IIIB Lung Squamous Cell Carcinoma AJCC v7 8 152244 -NCIT:C8767 Stage IV Lung Squamous Cell Carcinoma AJCC v7 7 152245 -NCIT:C136713 Lung Keratinizing Squamous Cell Carcinoma 6 152246 -NCIT:C136714 Lung Non-Keratinizing Squamous Cell Carcinoma 6 152247 -NCIT:C136719 Lung Squamous Cell Carcinoma In Situ 6 152248 -NCIT:C8763 Stage 0 Lung Squamous Cell Carcinoma AJCC v6 and v7 7 152249 -NCIT:C156092 Metastatic Lung Squamous Cell Carcinoma 6 152250 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 7 152251 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 152252 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 152253 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 152254 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 7 152255 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 152256 -NCIT:C173331 Refractory Lung Squamous Cell Carcinoma 6 152257 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 7 152258 -NCIT:C190953 Resectable Lung Squamous Cell Carcinoma 6 152259 -NCIT:C45504 Lung Squamous Cell Carcinoma, Small Cell Variant 6 152260 -NCIT:C45507 Lung Basaloid Squamous Cell Carcinoma 6 152261 -NCIT:C5014 Recurrent Lung Squamous Cell Carcinoma 6 152262 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 7 152263 -NCIT:C6686 Occult Lung Squamous Cell Carcinoma 6 152264 -NCIT:C35875 Bronchogenic Carcinoma 5 152265 -NCIT:C180922 Advanced Bronchogenic Carcinoma 6 152266 -NCIT:C180923 Recurrent Bronchogenic Carcinoma 6 152267 -NCIT:C7779 Superior Sulcus Lung Carcinoma 6 152268 -NCIT:C45544 Lung Mucoepidermoid Carcinoma 5 152269 -NCIT:C45545 Lung Epithelial-Myoepithelial Carcinoma 5 152270 -NCIT:C45569 Lung Neuroendocrine Carcinoma 5 152271 -NCIT:C4917 Lung Small Cell Carcinoma 6 152272 -NCIT:C118815 Childhood Lung Small Cell Carcinoma 7 152273 -NCIT:C136496 Lung Small Cell Carcinoma by AJCC v7 Stage 7 152274 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 8 152275 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 9 152276 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 9 152277 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 8 152278 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 9 152279 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 9 152280 -NCIT:C6679 Stage III Lung Small Cell Carcinoma AJCC v7 8 152281 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 9 152282 -NCIT:C6681 Stage IIIB Lung Small Cell Carcinoma AJCC v7 9 152283 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 10 152284 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 10 152285 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 8 152286 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 7 152287 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 8 152288 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 8 152289 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 7 152290 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 152291 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 152292 -NCIT:C158495 Platinum-Sensitive Lung Small Cell Carcinoma 7 152293 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 7 152294 -NCIT:C188753 Lung Small Cell Carcinoma Neuroendocrine Subtype 7 152295 -NCIT:C188754 Lung Small Cell Carcinoma, Neuroendocrine-High Subtype 8 152296 -NCIT:C188755 Lung Small Cell Carcinoma, Neuroendocrine-Low Subtype 8 152297 -NCIT:C188756 Lung Small Cell Carcinoma Molecular Subtypes 7 152298 -NCIT:C188761 Lung Small Cell Carcinoma, A Subtype 8 152299 -NCIT:C188762 Lung Small Cell Carcinoma, N Subtype 8 152300 -NCIT:C188763 Lung Small Cell Carcinoma, P Subtype 8 152301 -NCIT:C188765 Lung Small Cell Carcinoma, I Subtype 8 152302 -NCIT:C188766 Lung Small Cell Carcinoma, Y Subtype 8 152303 -NCIT:C6683 Occult Lung Small Cell Carcinoma 7 152304 -NCIT:C7853 Limited Stage Lung Small Cell Carcinoma 7 152305 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 8 152306 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 8 152307 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 9 152308 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 9 152309 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 8 152310 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 9 152311 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 9 152312 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 8 152313 -NCIT:C9049 Extensive Stage Lung Small Cell Carcinoma 7 152314 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 8 152315 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 8 152316 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 8 152317 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 8 152318 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 7 152319 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 8 152320 -NCIT:C9137 Combined Lung Small Cell Carcinoma 7 152321 -NCIT:C9379 Combined Lung Small Cell Carcinoma and Lung Adenocarcinoma 8 152322 -NCIT:C9423 Combined Lung Small Cell and Squamous Cell Carcinoma 8 152323 -NCIT:C5672 Lung Large Cell Neuroendocrine Carcinoma 6 152324 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 7 152325 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 152326 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 152327 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 7 152328 -NCIT:C7267 Combined Lung Large Cell Neuroendocrine Carcinoma 7 152329 -NCIT:C7591 Combined Lung Carcinoma 6 152330 -NCIT:C7267 Combined Lung Large Cell Neuroendocrine Carcinoma 7 152331 -NCIT:C9137 Combined Lung Small Cell Carcinoma 7 152332 -NCIT:C9379 Combined Lung Small Cell Carcinoma and Lung Adenocarcinoma 8 152333 -NCIT:C9423 Combined Lung Small Cell and Squamous Cell Carcinoma 8 152334 -NCIT:C5641 Occult Lung Carcinoma 5 152335 -NCIT:C136468 Occult Lung Cancer AJCC v8 6 152336 -NCIT:C6683 Occult Lung Small Cell Carcinoma 6 152337 -NCIT:C6686 Occult Lung Squamous Cell Carcinoma 6 152338 -NCIT:C9038 Occult Lung Non-Small Cell Carcinoma 6 152339 -NCIT:C6684 Occult Lung Adenosquamous Carcinoma 7 152340 -NCIT:C6685 Occult Lung Large Cell Carcinoma 7 152341 -NCIT:C6699 Occult Lung Adenocarcinoma 7 152342 -NCIT:C5666 Lung Adenoid Cystic Carcinoma 5 152343 -NCIT:C7454 Lung Hilum Carcinoma 5 152344 -NCIT:C8953 Recurrent Lung Carcinoma 5 152345 -NCIT:C180923 Recurrent Bronchogenic Carcinoma 6 152346 -NCIT:C5014 Recurrent Lung Squamous Cell Carcinoma 6 152347 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 7 152348 -NCIT:C7783 Recurrent Lung Non-Small Cell Carcinoma 6 152349 -NCIT:C128797 Recurrent Lung Non-Squamous Non-Small Cell Carcinoma 7 152350 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 7 152351 -NCIT:C190195 Locally Recurrent Lung Non-Small Cell Carcinoma 7 152352 -NCIT:C8747 Recurrent Lung Adenosquamous Carcinoma 7 152353 -NCIT:C8753 Recurrent Lung Large Cell Carcinoma 7 152354 -NCIT:C8757 Recurrent Lung Adenocarcinoma 7 152355 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 6 152356 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 7 152357 -NCIT:C90519 Lung Cancer by AJCC v6 Stage 5 152358 -NCIT:C27467 Stage 0 Lung Cancer AJCC v6 and v7 6 152359 -NCIT:C9104 Stage 0 Lung Non-Small Cell Cancer AJCC v6 and v7 7 152360 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 8 152361 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 8 152362 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 8 152363 -NCIT:C8772 Stage I Lung Cancer AJCC v6 6 152364 -NCIT:C8773 Stage III Lung Cancer AJCC v6 6 152365 -NCIT:C8774 Stage IV Lung Cancer AJCC v6 6 152366 -NCIT:C8954 Stage II Lung Cancer AJCC v6 6 152367 -NCIT:C91232 Lung Cancer by AJCC v7 Stage 5 152368 -NCIT:C136491 Lung Non-Small Cell Cancer by AJCC v7 Stage 6 152369 -NCIT:C136490 Lung Adenocarcinoma by AJCC v7 Stage 7 152370 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 8 152371 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 8 152372 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 9 152373 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 9 152374 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 8 152375 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 9 152376 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 9 152377 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 8 152378 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 9 152379 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 9 152380 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 8 152381 -NCIT:C136492 Lung Adenosquamous Carcinoma by AJCC v7 Stage 7 152382 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 8 152383 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 8 152384 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 9 152385 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 9 152386 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 8 152387 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 9 152388 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 9 152389 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 8 152390 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 9 152391 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 9 152392 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 8 152393 -NCIT:C136493 Lung Large Cell Carcinoma by AJCC v7 Stage 7 152394 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 8 152395 -NCIT:C6660 Stage II Lung Large Cell Carcinoma AJCC v7 8 152396 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 9 152397 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 9 152398 -NCIT:C8755 Stage I Lung Large Cell Carcinoma AJCC v7 8 152399 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 9 152400 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 9 152401 -NCIT:C8756 Stage IV Lung Large Cell Carcinoma AJCC v7 8 152402 -NCIT:C9257 Stage III Lung Large Cell Carcinoma AJCC v7 8 152403 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 9 152404 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 9 152405 -NCIT:C4012 Stage IV Lung Non-Small Cell Cancer AJCC v7 7 152406 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 8 152407 -NCIT:C8756 Stage IV Lung Large Cell Carcinoma AJCC v7 8 152408 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 8 152409 -NCIT:C6671 Stage I Lung Non-Small Cell Cancer AJCC v7 7 152410 -NCIT:C5652 Stage IA Lung Non-Small Cell Carcinoma AJCC v7 8 152411 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 9 152412 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 9 152413 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 9 152414 -NCIT:C5653 Stage IB Lung Non-Small Cell Carcinoma AJCC v7 8 152415 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 9 152416 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 9 152417 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 9 152418 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 8 152419 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 9 152420 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 9 152421 -NCIT:C8755 Stage I Lung Large Cell Carcinoma AJCC v7 8 152422 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 9 152423 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 9 152424 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 8 152425 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 9 152426 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 9 152427 -NCIT:C7777 Stage II Lung Non-Small Cell Cancer AJCC v7 7 152428 -NCIT:C5654 Stage IIB Lung Non-Small Cell Carcinoma AJCC v7 8 152429 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 9 152430 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 9 152431 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 9 152432 -NCIT:C5655 Stage IIA Lung Non-Small Cell Carcinoma AJCC v7 8 152433 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 9 152434 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 9 152435 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 9 152436 -NCIT:C6660 Stage II Lung Large Cell Carcinoma AJCC v7 8 152437 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 9 152438 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 9 152439 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 8 152440 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 9 152441 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 9 152442 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 8 152443 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 9 152444 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 9 152445 -NCIT:C7778 Stage III Lung Non-Small Cell Cancer AJCC v7 7 152446 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 8 152447 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 9 152448 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 9 152449 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 8 152450 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 9 152451 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 9 152452 -NCIT:C9102 Stage IIIA Lung Non-Small Cell Cancer AJCC v7 8 152453 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 9 152454 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 9 152455 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 9 152456 -NCIT:C9103 Stage IIIB Lung Non-Small Cell Cancer AJCC v7 8 152457 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 9 152458 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 9 152459 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 9 152460 -NCIT:C9257 Stage III Lung Large Cell Carcinoma AJCC v7 8 152461 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 9 152462 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 9 152463 -NCIT:C9104 Stage 0 Lung Non-Small Cell Cancer AJCC v6 and v7 7 152464 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 8 152465 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 8 152466 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 8 152467 -NCIT:C136494 Lung Squamous Cell Carcinoma by AJCC v7 Stage 6 152468 -NCIT:C8763 Stage 0 Lung Squamous Cell Carcinoma AJCC v6 and v7 7 152469 -NCIT:C8764 Stage I Lung Squamous Cell Carcinoma AJCC v7 7 152470 -NCIT:C6687 Stage IA Lung Squamous Cell Carcinoma AJCC v7 8 152471 -NCIT:C6692 Stage IB Lung Squamous Cell Carcinoma AJCC v7 8 152472 -NCIT:C8765 Stage II Lung Squamous Cell Carcinoma AJCC v7 7 152473 -NCIT:C6688 Stage IIA Lung Squamous Cell Carcinoma AJCC v7 8 152474 -NCIT:C6691 Stage IIB Lung Squamous Cell Carcinoma AJCC v7 8 152475 -NCIT:C8766 Stage III Lung Squamous Cell Carcinoma AJCC v7 7 152476 -NCIT:C6689 Stage IIIA Lung Squamous Cell Carcinoma AJCC v7 8 152477 -NCIT:C6690 Stage IIIB Lung Squamous Cell Carcinoma AJCC v7 8 152478 -NCIT:C8767 Stage IV Lung Squamous Cell Carcinoma AJCC v7 7 152479 -NCIT:C136496 Lung Small Cell Carcinoma by AJCC v7 Stage 6 152480 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 7 152481 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 8 152482 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 8 152483 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 7 152484 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 8 152485 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 8 152486 -NCIT:C6679 Stage III Lung Small Cell Carcinoma AJCC v7 7 152487 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 8 152488 -NCIT:C6681 Stage IIIB Lung Small Cell Carcinoma AJCC v7 8 152489 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 9 152490 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 9 152491 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 7 152492 -NCIT:C27467 Stage 0 Lung Cancer AJCC v6 and v7 6 152493 -NCIT:C9104 Stage 0 Lung Non-Small Cell Cancer AJCC v6 and v7 7 152494 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 8 152495 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 8 152496 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 8 152497 -NCIT:C88888 Stage I Lung Cancer AJCC v7 6 152498 -NCIT:C5642 Stage IA Lung Cancer AJCC v7 7 152499 -NCIT:C5652 Stage IA Lung Non-Small Cell Carcinoma AJCC v7 8 152500 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 9 152501 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 9 152502 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 9 152503 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 8 152504 -NCIT:C6687 Stage IA Lung Squamous Cell Carcinoma AJCC v7 8 152505 -NCIT:C5643 Stage IB Lung Cancer AJCC v7 7 152506 -NCIT:C5653 Stage IB Lung Non-Small Cell Carcinoma AJCC v7 8 152507 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 9 152508 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 9 152509 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 9 152510 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 8 152511 -NCIT:C6692 Stage IB Lung Squamous Cell Carcinoma AJCC v7 8 152512 -NCIT:C6671 Stage I Lung Non-Small Cell Cancer AJCC v7 7 152513 -NCIT:C5652 Stage IA Lung Non-Small Cell Carcinoma AJCC v7 8 152514 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 9 152515 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 9 152516 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 9 152517 -NCIT:C5653 Stage IB Lung Non-Small Cell Carcinoma AJCC v7 8 152518 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 9 152519 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 9 152520 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 9 152521 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 8 152522 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 9 152523 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 9 152524 -NCIT:C8755 Stage I Lung Large Cell Carcinoma AJCC v7 8 152525 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 9 152526 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 9 152527 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 8 152528 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 9 152529 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 9 152530 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 7 152531 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 8 152532 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 8 152533 -NCIT:C8764 Stage I Lung Squamous Cell Carcinoma AJCC v7 7 152534 -NCIT:C6687 Stage IA Lung Squamous Cell Carcinoma AJCC v7 8 152535 -NCIT:C6692 Stage IB Lung Squamous Cell Carcinoma AJCC v7 8 152536 -NCIT:C88889 Stage II Lung Cancer AJCC v7 6 152537 -NCIT:C5644 Stage IIA Lung Cancer AJCC v7 7 152538 -NCIT:C5655 Stage IIA Lung Non-Small Cell Carcinoma AJCC v7 8 152539 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 9 152540 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 9 152541 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 9 152542 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 8 152543 -NCIT:C6688 Stage IIA Lung Squamous Cell Carcinoma AJCC v7 8 152544 -NCIT:C5645 Stage IIB Lung Cancer AJCC v7 7 152545 -NCIT:C5654 Stage IIB Lung Non-Small Cell Carcinoma AJCC v7 8 152546 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 9 152547 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 9 152548 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 9 152549 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 8 152550 -NCIT:C6691 Stage IIB Lung Squamous Cell Carcinoma AJCC v7 8 152551 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 7 152552 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 8 152553 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 8 152554 -NCIT:C7777 Stage II Lung Non-Small Cell Cancer AJCC v7 7 152555 -NCIT:C5654 Stage IIB Lung Non-Small Cell Carcinoma AJCC v7 8 152556 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 9 152557 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 9 152558 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 9 152559 -NCIT:C5655 Stage IIA Lung Non-Small Cell Carcinoma AJCC v7 8 152560 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 9 152561 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 9 152562 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 9 152563 -NCIT:C6660 Stage II Lung Large Cell Carcinoma AJCC v7 8 152564 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 9 152565 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 9 152566 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 8 152567 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 9 152568 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 9 152569 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 8 152570 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 9 152571 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 9 152572 -NCIT:C8765 Stage II Lung Squamous Cell Carcinoma AJCC v7 7 152573 -NCIT:C6688 Stage IIA Lung Squamous Cell Carcinoma AJCC v7 8 152574 -NCIT:C6691 Stage IIB Lung Squamous Cell Carcinoma AJCC v7 8 152575 -NCIT:C88890 Stage III Lung Cancer AJCC v7 6 152576 -NCIT:C5646 Stage IIIA Lung Cancer AJCC v7 7 152577 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 8 152578 -NCIT:C6689 Stage IIIA Lung Squamous Cell Carcinoma AJCC v7 8 152579 -NCIT:C9102 Stage IIIA Lung Non-Small Cell Cancer AJCC v7 8 152580 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 9 152581 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 9 152582 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 9 152583 -NCIT:C5647 Stage IIIB Lung Cancer AJCC v7 7 152584 -NCIT:C6681 Stage IIIB Lung Small Cell Carcinoma AJCC v7 8 152585 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 9 152586 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 9 152587 -NCIT:C6690 Stage IIIB Lung Squamous Cell Carcinoma AJCC v7 8 152588 -NCIT:C9103 Stage IIIB Lung Non-Small Cell Cancer AJCC v7 8 152589 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 9 152590 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 9 152591 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 9 152592 -NCIT:C6679 Stage III Lung Small Cell Carcinoma AJCC v7 7 152593 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 8 152594 -NCIT:C6681 Stage IIIB Lung Small Cell Carcinoma AJCC v7 8 152595 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 9 152596 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 9 152597 -NCIT:C7778 Stage III Lung Non-Small Cell Cancer AJCC v7 7 152598 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 8 152599 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 9 152600 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 9 152601 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 8 152602 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 9 152603 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 9 152604 -NCIT:C9102 Stage IIIA Lung Non-Small Cell Cancer AJCC v7 8 152605 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 9 152606 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 9 152607 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 9 152608 -NCIT:C9103 Stage IIIB Lung Non-Small Cell Cancer AJCC v7 8 152609 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 9 152610 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 9 152611 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 9 152612 -NCIT:C9257 Stage III Lung Large Cell Carcinoma AJCC v7 8 152613 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 9 152614 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 9 152615 -NCIT:C8766 Stage III Lung Squamous Cell Carcinoma AJCC v7 7 152616 -NCIT:C6689 Stage IIIA Lung Squamous Cell Carcinoma AJCC v7 8 152617 -NCIT:C6690 Stage IIIB Lung Squamous Cell Carcinoma AJCC v7 8 152618 -NCIT:C88891 Stage IV Lung Cancer AJCC v7 6 152619 -NCIT:C4012 Stage IV Lung Non-Small Cell Cancer AJCC v7 7 152620 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 8 152621 -NCIT:C8756 Stage IV Lung Large Cell Carcinoma AJCC v7 8 152622 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 8 152623 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 7 152624 -NCIT:C8767 Stage IV Lung Squamous Cell Carcinoma AJCC v7 7 152625 -NCIT:C4914 Skin Carcinoma 4 152626 -NCIT:C157324 Unresectable Skin Carcinoma 5 152627 -NCIT:C157320 Unresectable Skin Squamous Cell Carcinoma 6 152628 -NCIT:C157331 Unresectable Skin Basal Cell Carcinoma 6 152629 -NCIT:C162786 Unresectable Merkel Cell Carcinoma 6 152630 -NCIT:C170465 Resectable Skin Carcinoma 5 152631 -NCIT:C170464 Resectable Skin Squamous Cell Carcinoma 6 152632 -NCIT:C162943 Resectable Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 152633 -NCIT:C2921 Skin Basal Cell Carcinoma 5 152634 -NCIT:C157331 Unresectable Skin Basal Cell Carcinoma 6 152635 -NCIT:C181159 Eyelid Basal Cell Carcinoma 6 152636 -NCIT:C27182 Skin Sclerosing/Morphoeic Basal Cell Carcinoma 6 152637 -NCIT:C27535 Skin Adenoid Basal Cell Carcinoma 6 152638 -NCIT:C27536 Skin Clear Cell Basal Cell Carcinoma 6 152639 -NCIT:C27537 Skin Cystic Basal Cell Carcinoma 6 152640 -NCIT:C27539 Skin Infiltrating Basal Cell Carcinoma 6 152641 -NCIT:C27540 Skin Infundibulocystic Basal Cell Carcinoma 6 152642 -NCIT:C27541 Skin Micronodular Basal Cell Carcinoma 6 152643 -NCIT:C2922 Skin Basosquamous Cell Carcinoma 6 152644 -NCIT:C38109 Skin Basal Cell Carcinoma with Adnexal Differentiation 6 152645 -NCIT:C27538 Skin Follicular Basal Cell Carcinoma 7 152646 -NCIT:C4346 Skin Basal Cell Carcinoma with Sebaceous Differentiation 7 152647 -NCIT:C38110 Skin Signet Ring Cell Basal Cell Carcinoma 6 152648 -NCIT:C38111 Skin Basal Cell Carcinoma with Sarcomatoid Differentiation 6 152649 -NCIT:C39961 Penile Basal Cell Carcinoma 6 152650 -NCIT:C4109 Skin Fibroepithelial Basal Cell Carcinoma 6 152651 -NCIT:C54665 Skin Keratotic Basal Cell Carcinoma 6 152652 -NCIT:C6082 External Ear Basal Cell Carcinoma 6 152653 -NCIT:C62282 Skin Nodular Basal Cell Carcinoma 6 152654 -NCIT:C5568 Skin Nodulo-Ulcerative Basal Cell Carcinoma 7 152655 -NCIT:C5616 Skin Nodular Solid Basal Cell Carcinoma 7 152656 -NCIT:C62284 Superficial Basal Cell Carcinoma 6 152657 -NCIT:C4108 Superficial Multifocal Basal Cell Carcinoma 7 152658 -NCIT:C6381 Vulvar Basal Cell Carcinoma 6 152659 -NCIT:C6386 Scrotal Basal Cell Carcinoma 6 152660 -NCIT:C66903 Skin Metatypical Carcinoma 6 152661 -NCIT:C7473 Anal Margin Basal Cell Carcinoma 6 152662 -NCIT:C7585 Skin Adamantinoid Basal Cell Carcinoma 6 152663 -NCIT:C8014 Lip Basal Cell Carcinoma 6 152664 -NCIT:C5893 Stage 0 Lip Basal Cell Carcinoma AJCC v6 and v7 7 152665 -NCIT:C8197 Stage I Lip Basal Cell Carcinoma 7 152666 -NCIT:C8201 Stage II Lip Basal Cell Carcinoma 7 152667 -NCIT:C8205 Stage III Lip Basal Cell Carcinoma 7 152668 -NCIT:C8209 Stage IV Lip Basal Cell Carcinoma 7 152669 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 8 152670 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 8 152671 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 8 152672 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 7 152673 -NCIT:C9359 Skin Pigmented Basal Cell Carcinoma 6 152674 -NCIT:C3640 Stage 0 Skin Cancer 5 152675 -NCIT:C2906 Skin Squamous Cell Carcinoma In Situ 6 152676 -NCIT:C62571 Bowen Disease of the Skin 7 152677 -NCIT:C5893 Stage 0 Lip Basal Cell Carcinoma AJCC v6 and v7 6 152678 -NCIT:C3775 Adnexal Carcinoma 5 152679 -NCIT:C167341 Adnexal Adenocarcinoma, Not Otherwise Specified 6 152680 -NCIT:C167366 Adnexal Cribriform Carcinoma 6 152681 -NCIT:C167368 Adnexal Secretory Carcinoma 6 152682 -NCIT:C167369 Signet Ring Cell/Histiocytoid Carcinoma 6 152683 -NCIT:C167381 Trichoblastic Carcinoma 6 152684 -NCIT:C40310 Sebaceous Carcinoma 6 152685 -NCIT:C160978 Head and Neck Sebaceous Carcinoma 7 152686 -NCIT:C173648 Salivary Gland Sebaceous Carcinoma 8 152687 -NCIT:C40369 Breast Sebaceous Carcinoma 7 152688 -NCIT:C43340 Eye Sebaceous Carcinoma 7 152689 -NCIT:C134831 Eyelid Sebaceous Gland Carcinoma 8 152690 -NCIT:C174404 Conjunctival Sebaceous Carcinoma 8 152691 -NCIT:C43341 Extraocular Cutaneous Sebaceous Carcinoma 7 152692 -NCIT:C40309 Vulvar Sebaceous Carcinoma 8 152693 -NCIT:C4114 Pilomatrical Carcinoma 6 152694 -NCIT:C43326 Trichilemmal Carcinoma 6 152695 -NCIT:C6938 Sweat Gland Carcinoma 6 152696 -NCIT:C128164 Vulvar Adenocarcinoma of Sweat Gland Origin 7 152697 -NCIT:C4027 Vulvar Paget Disease 8 152698 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 8 152699 -NCIT:C40306 Vulvar Porocarcinoma 9 152700 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 8 152701 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 8 152702 -NCIT:C167344 Spiradenocylindrocarcinoma 7 152703 -NCIT:C167364 Endocrine Mucin-Producing Sweat Gland Carcinoma 7 152704 -NCIT:C167365 Syringocystadenocarcinoma Papilliferum 7 152705 -NCIT:C27255 Eccrine Carcinoma 7 152706 -NCIT:C27254 Papillary Eccrine Carcinoma 8 152707 -NCIT:C27534 Digital Papillary Adenocarcinoma 9 152708 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 8 152709 -NCIT:C40306 Vulvar Porocarcinoma 9 152710 -NCIT:C43345 Ductal Eccrine Adenocarcinoma 8 152711 -NCIT:C43346 Ductal Eccrine Carcinoma with Spindle Cell Elements 9 152712 -NCIT:C43347 Squamoid Eccrine Ductal Carcinoma 9 152713 -NCIT:C43349 Ductal Eccrine Carcinoma with Abundant Fibromyxoid Stroma 9 152714 -NCIT:C5560 Porocarcinoma 8 152715 -NCIT:C40306 Vulvar Porocarcinoma 9 152716 -NCIT:C43354 Porocarcinoma In Situ 9 152717 -NCIT:C27533 Primary Cutaneous Mucinous Carcinoma 7 152718 -NCIT:C3682 Sweat Gland Tubular Carcinoma 7 152719 -NCIT:C4169 Apocrine Carcinoma 7 152720 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 8 152721 -NCIT:C4176 Ceruminous Adenocarcinoma 8 152722 -NCIT:C5141 Breast Apocrine Carcinoma 8 152723 -NCIT:C5140 Breast Apocrine Carcinoma In Situ 9 152724 -NCIT:C5457 Invasive Breast Apocrine Carcinoma 9 152725 -NCIT:C43344 Cylindrocarcinoma 7 152726 -NCIT:C4471 Adenoid Cystic Skin Carcinoma 7 152727 -NCIT:C4472 Mucoepidermoid Skin Carcinoma 7 152728 -NCIT:C5117 Spiradenocarcinoma 7 152729 -NCIT:C5180 Malignant Breast Spiradenoma 8 152730 -NCIT:C54664 Hidradenocarcinoma 7 152731 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 8 152732 -NCIT:C7581 Microcystic Adnexal Carcinoma 7 152733 -NCIT:C4819 Skin Squamous Cell Carcinoma 5 152734 -NCIT:C133252 Cutaneous Squamous Cell Carcinoma of the Head and Neck 6 152735 -NCIT:C133253 Cutaneous Squamous Cell Carcinoma of the Head and Neck by AJCC v8 Stage 7 152736 -NCIT:C133255 Stage 0 Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 152737 -NCIT:C133256 Stage I Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 152738 -NCIT:C133257 Stage II Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 152739 -NCIT:C133258 Stage III Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 152740 -NCIT:C133259 Stage IV Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 152741 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 152742 -NCIT:C162943 Resectable Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 152743 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 152744 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 152745 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 152746 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 152747 -NCIT:C6083 External Ear Squamous Cell Carcinoma 7 152748 -NCIT:C143012 Recurrent Skin Squamous Cell Carcinoma 6 152749 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 152750 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 7 152751 -NCIT:C165737 Locally Recurrent Skin Squamous Cell Carcinoma 7 152752 -NCIT:C143013 Metastatic Skin Squamous Cell Carcinoma 6 152753 -NCIT:C153182 Locally Advanced Skin Squamous Cell Carcinoma 7 152754 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 152755 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 7 152756 -NCIT:C168542 Advanced Skin Squamous Cell Carcinoma 7 152757 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 152758 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 152759 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 152760 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 152761 -NCIT:C157320 Unresectable Skin Squamous Cell Carcinoma 6 152762 -NCIT:C160666 Hematologic Malignancy-Associated Skin Squamous Cell Carcinoma 6 152763 -NCIT:C165465 Skin Verrucous Carcinoma 6 152764 -NCIT:C6811 Plantar Verrucous Carcinoma 7 152765 -NCIT:C165466 Skin Squamous Cell Carcinoma with Osteoclast-Like Giant Cells 6 152766 -NCIT:C165467 Skin Lymphoepithelioma-Like Carcinoma 6 152767 -NCIT:C165468 Skin Squamous Cell Carcinoma with Sarcomatoid Differentiation 6 152768 -NCIT:C165735 Refractory Skin Squamous Cell Carcinoma 6 152769 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 152770 -NCIT:C170464 Resectable Skin Squamous Cell Carcinoma 6 152771 -NCIT:C162943 Resectable Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 152772 -NCIT:C27542 Skin Pseudovascular Squamous Cell Carcinoma 6 152773 -NCIT:C27543 Skin Basaloid Carcinoma 6 152774 -NCIT:C27636 Transplant-Related Skin Squamous Cell Carcinoma 6 152775 -NCIT:C27918 Old Burn Scar-Related Skin Squamous Cell Carcinoma 6 152776 -NCIT:C27921 Solar Radiation-Related Skin Squamous Cell Carcinoma 6 152777 -NCIT:C2906 Skin Squamous Cell Carcinoma In Situ 6 152778 -NCIT:C62571 Bowen Disease of the Skin 7 152779 -NCIT:C3146 Keratoacanthoma 6 152780 -NCIT:C128167 Vulvar Keratoacanthoma 7 152781 -NCIT:C174390 Conjunctival Keratoacanthoma 7 152782 -NCIT:C4459 Skin Clear Cell Squamous Cell Carcinoma 6 152783 -NCIT:C4460 Skin Acantholytic Squamous Cell Carcinoma 6 152784 -NCIT:C4643 Scrotal Squamous Cell Carcinoma 6 152785 -NCIT:C4666 Skin Spindle Cell Squamous Cell Carcinoma 6 152786 -NCIT:C6925 Anal Margin Squamous Cell Carcinoma 6 152787 -NCIT:C54250 Skin Adenosquamous Carcinoma 5 152788 -NCIT:C5581 Stage I Skin Cancer 5 152789 -NCIT:C8197 Stage I Lip Basal Cell Carcinoma 6 152790 -NCIT:C5582 Stage II Skin Cancer 5 152791 -NCIT:C8201 Stage II Lip Basal Cell Carcinoma 6 152792 -NCIT:C5583 Stage III Skin Cancer 5 152793 -NCIT:C8205 Stage III Lip Basal Cell Carcinoma 6 152794 -NCIT:C5584 Stage IV Skin Cancer 5 152795 -NCIT:C8209 Stage IV Lip Basal Cell Carcinoma 6 152796 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 7 152797 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 7 152798 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 7 152799 -NCIT:C6389 Scrotal Carcinoma 5 152800 -NCIT:C4643 Scrotal Squamous Cell Carcinoma 6 152801 -NCIT:C6386 Scrotal Basal Cell Carcinoma 6 152802 -NCIT:C7728 Scrotal Paget Disease 6 152803 -NCIT:C7472 Anal Margin Carcinoma 5 152804 -NCIT:C6925 Anal Margin Squamous Cell Carcinoma 6 152805 -NCIT:C7473 Anal Margin Basal Cell Carcinoma 6 152806 -NCIT:C7476 Anal Margin Paget Disease 6 152807 -NCIT:C7903 Recurrent Skin Carcinoma 5 152808 -NCIT:C115440 Recurrent Merkel Cell Carcinoma 6 152809 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 7 152810 -NCIT:C165740 Locally Recurrent Merkel Cell Carcinoma 7 152811 -NCIT:C143012 Recurrent Skin Squamous Cell Carcinoma 6 152812 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 152813 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 7 152814 -NCIT:C165737 Locally Recurrent Skin Squamous Cell Carcinoma 7 152815 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 6 152816 -NCIT:C9231 Merkel Cell Carcinoma 5 152817 -NCIT:C115440 Recurrent Merkel Cell Carcinoma 6 152818 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 7 152819 -NCIT:C165740 Locally Recurrent Merkel Cell Carcinoma 7 152820 -NCIT:C128247 Vulvar Merkel Cell Carcinoma 6 152821 -NCIT:C136869 Merkel Cell Carcinoma by AJCC v7 Stage 6 152822 -NCIT:C85887 Stage 0 Merkel Cell Carcinoma AJCC v7 7 152823 -NCIT:C85889 Stage I Merkel Cell Carcinoma AJCC v7 7 152824 -NCIT:C85890 Stage IA Merkel Cell Carcinoma AJCC v7 8 152825 -NCIT:C85892 Stage IB Merkel Cell Carcinoma AJCC v7 8 152826 -NCIT:C85893 Stage II Merkel Cell Carcinoma AJCC v7 7 152827 -NCIT:C85894 Stage IIA Merkel Cell Carcinoma AJCC v7 8 152828 -NCIT:C85895 Stage IIB Merkel Cell Carcinoma AJCC v7 8 152829 -NCIT:C85896 Stage IIC Merkel Cell Carcinoma AJCC v7 8 152830 -NCIT:C85897 Stage III Merkel Cell Carcinoma AJCC v7 7 152831 -NCIT:C85898 Stage IIIA Merkel Cell Carcinoma AJCC v7 8 152832 -NCIT:C85899 Stage IIIB Merkel Cell Carcinoma AJCC v7 8 152833 -NCIT:C85900 Stage IV Merkel Cell Carcinoma AJCC v7 7 152834 -NCIT:C136870 Merkel Cell Carcinoma by AJCC v8 Stage 6 152835 -NCIT:C136871 Merkel Cell Carcinoma by AJCC v8 Clinical Stage 7 152836 -NCIT:C136872 Clinical Stage 0 Merkel Cell Carcinoma AJCC v8 8 152837 -NCIT:C136873 Clinical Stage I Merkel Cell Carcinoma AJCC v8 8 152838 -NCIT:C136874 Clinical Stage II Merkel Cell Carcinoma AJCC v8 8 152839 -NCIT:C136875 Clinical Stage IIA Merkel Cell Carcinoma AJCC v8 9 152840 -NCIT:C136876 Clinical Stage IIB Merkel Cell Carcinoma AJCC v8 9 152841 -NCIT:C136877 Clinical Stage III Merkel Cell Carcinoma AJCC v8 8 152842 -NCIT:C136878 Clinical Stage IV Merkel Cell Carcinoma AJCC v8 8 152843 -NCIT:C136880 Merkel Cell Carcinoma by AJCC v8 Pathologic Stage 7 152844 -NCIT:C136881 Pathologic Stage 0 Merkel Cell Carcinoma AJCC v8 8 152845 -NCIT:C136882 Pathologic Stage I Merkel Cell Carcinoma AJCC v8 8 152846 -NCIT:C136883 Pathologic Stage II Merkel Cell Carcinoma AJCC v8 8 152847 -NCIT:C136884 Pathologic Stage IIA Merkel Cell Carcinoma AJCC v8 9 152848 -NCIT:C136885 Pathologic Stage IIB Merkel Cell Carcinoma AJCC v8 9 152849 -NCIT:C136886 Pathologic Stage III Merkel Cell Carcinoma AJCC v8 8 152850 -NCIT:C136887 Pathologic Stage IIIA Merkel Cell Carcinoma AJCC v8 9 152851 -NCIT:C136888 Pathologic Stage IIIB Merkel Cell Carcinoma AJCC v8 9 152852 -NCIT:C136889 Pathologic Stage IV Merkel Cell Carcinoma AJCC v8 8 152853 -NCIT:C162572 Metastatic Merkel Cell Carcinoma 6 152854 -NCIT:C165300 Advanced Merkel Cell Carcinoma 7 152855 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 7 152856 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 7 152857 -NCIT:C162786 Unresectable Merkel Cell Carcinoma 6 152858 -NCIT:C165741 Refractory Merkel Cell Carcinoma 6 152859 -NCIT:C4979 Carcinoma Unspecified Site 4 152860 -NCIT:C6079 Eye Carcinoma 4 152861 -NCIT:C174403 Conjunctival Carcinoma 5 152862 -NCIT:C174402 Conjunctival Adenosquamous Carcinoma 6 152863 -NCIT:C174404 Conjunctival Sebaceous Carcinoma 6 152864 -NCIT:C4549 Conjunctival Squamous Cell Carcinoma 6 152865 -NCIT:C174390 Conjunctival Keratoacanthoma 7 152866 -NCIT:C174398 Conjunctival Spindle Cell Carcinoma 7 152867 -NCIT:C174551 Retinal Pigment Epithelium Adenocarcinoma 5 152868 -NCIT:C174561 Ciliary Body Adenocarcinoma 5 152869 -NCIT:C175348 Lacrimal System Carcinoma 5 152870 -NCIT:C175337 Lacrimal Drainage System Carcinoma 6 152871 -NCIT:C175336 Lacrimal Drainage System Adenocarcinoma 7 152872 -NCIT:C175339 Lacrimal Drainage System Mucoepidermoid Carcinoma 7 152873 -NCIT:C175340 Lacrimal Drainage System Adenoid Cystic Carcinoma 7 152874 -NCIT:C175344 Lacrimal Drainage System Lymphoepithelial Carcinoma 7 152875 -NCIT:C6092 Lacrimal Drainage System Squamous Cell Carcinoma 7 152876 -NCIT:C175335 Lacrimal Drainage System Non-Keratinizing Squamous Cell Carcinoma 8 152877 -NCIT:C6129 Lacrimal Gland Carcinoma 6 152878 -NCIT:C175274 Lacrimal Gland Myoepithelial Carcinoma 7 152879 -NCIT:C175288 Lacrimal Gland Epithelial-Myoepithelial Carcinoma 7 152880 -NCIT:C4540 Lacrimal Gland Adenoid Cystic Carcinoma 7 152881 -NCIT:C4541 Lacrimal Gland Adenocarcinoma 7 152882 -NCIT:C175267 Lacrimal Gland Oncocytic Adenocarcinoma 8 152883 -NCIT:C175290 Lacrimal Gland Acinic Cell Carcinoma 8 152884 -NCIT:C6091 Lacrimal Gland Mucoepidermoid Carcinoma 7 152885 -NCIT:C6804 Lacrimal Gland Carcinoma ex Pleomorphic Adenoma 7 152886 -NCIT:C43340 Eye Sebaceous Carcinoma 5 152887 -NCIT:C134831 Eyelid Sebaceous Gland Carcinoma 6 152888 -NCIT:C174404 Conjunctival Sebaceous Carcinoma 6 152889 -NCIT:C4552 Corneal Squamous Cell Carcinoma 5 152890 -NCIT:C6078 Eyelid Carcinoma 5 152891 -NCIT:C134831 Eyelid Sebaceous Gland Carcinoma 6 152892 -NCIT:C140511 Eyelid Carcinoma by AJCC v7 Stage 6 152893 -NCIT:C88120 Stage 0 Eyelid Carcinoma AJCC v7 7 152894 -NCIT:C88121 Stage IA Eyelid Carcinoma AJCC v7 7 152895 -NCIT:C88122 Stage IB Eyelid Carcinoma AJCC v7 7 152896 -NCIT:C88125 Stage IC Eyelid Carcinoma AJCC v7 7 152897 -NCIT:C88127 Stage II Eyelid Carcinoma AJCC v7 7 152898 -NCIT:C88129 Stage IIIA Eyelid Carcinoma AJCC v7 7 152899 -NCIT:C88131 Stage IIIB Eyelid Carcinoma AJCC v7 7 152900 -NCIT:C88132 Stage IIIC Eyelid Carcinoma AJCC v7 7 152901 -NCIT:C88133 Stage IV Eyelid Carcinoma AJCC v7 7 152902 -NCIT:C140513 Eyelid Carcinoma by AJCC v8 Stage 6 152903 -NCIT:C140515 Stage 0 Eyelid Carcinoma AJCC v8 7 152904 -NCIT:C140516 Stage I Eyelid Carcinoma AJCC v8 7 152905 -NCIT:C140517 Stage IA Eyelid Carcinoma AJCC v8 8 152906 -NCIT:C140518 Stage IB Eyelid Carcinoma AJCC v8 8 152907 -NCIT:C140519 Stage II Eyelid Carcinoma AJCC v8 7 152908 -NCIT:C140520 Stage IIA Eyelid Carcinoma AJCC v8 8 152909 -NCIT:C140521 Stage IIB Eyelid Carcinoma AJCC v8 8 152910 -NCIT:C140522 Stage III Eyelid Carcinoma AJCC v8 7 152911 -NCIT:C140523 Stage IIIA Eyelid Carcinoma AJCC v8 8 152912 -NCIT:C140524 Stage IIIB Eyelid Carcinoma AJCC v8 8 152913 -NCIT:C140525 Stage IV Eyelid Carcinoma AJCC v8 7 152914 -NCIT:C181159 Eyelid Basal Cell Carcinoma 6 152915 -NCIT:C62332 Central Nervous System Carcinoma 4 152916 -NCIT:C4715 Choroid Plexus Carcinoma 5 152917 -NCIT:C124292 Childhood Choroid Plexus Carcinoma 6 152918 -NCIT:C65151 Non-Small Cell Carcinoma 4 152919 -NCIT:C165537 Metastatic Non-Small Cell Carcinoma 5 152920 -NCIT:C156094 Metastatic Lung Non-Small Cell Carcinoma 6 152921 -NCIT:C128798 Metastatic Lung Non-Squamous Non-Small Cell Carcinoma 7 152922 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 152923 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 152924 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 152925 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 152926 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 152927 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 152928 -NCIT:C155908 Metastatic Lung Adenocarcinoma 8 152929 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 152930 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 152931 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 8 152932 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 152933 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 152934 -NCIT:C156093 Metastatic Lung Adenosquamous Carcinoma 7 152935 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 8 152936 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 8 152937 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 7 152938 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 152939 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 152940 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 152941 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 7 152942 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 152943 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 152944 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 152945 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 152946 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 152947 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 8 152948 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 7 152949 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 152950 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 152951 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 152952 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 152953 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 8 152954 -NCIT:C27745 Non-Small Cell Adenocarcinoma 5 152955 -NCIT:C3512 Lung Adenocarcinoma 6 152956 -NCIT:C136486 Lung Adenocarcinoma In Situ 7 152957 -NCIT:C136716 Lung Non-Mucinous Adenocarcinoma In Situ 8 152958 -NCIT:C136717 Lung Mucinous Adenocarcinoma In Situ 8 152959 -NCIT:C136490 Lung Adenocarcinoma by AJCC v7 Stage 7 152960 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 8 152961 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 8 152962 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 9 152963 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 9 152964 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 8 152965 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 9 152966 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 9 152967 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 8 152968 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 9 152969 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 9 152970 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 8 152971 -NCIT:C136709 Invasive Lung Mucinous Adenocarcinoma 7 152972 -NCIT:C136710 Lung Enteric Adenocarcinoma 7 152973 -NCIT:C155908 Metastatic Lung Adenocarcinoma 7 152974 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 8 152975 -NCIT:C176727 Advanced Lung Adenocarcinoma 8 152976 -NCIT:C174510 Unresectable Lung Adenocarcinoma 7 152977 -NCIT:C179209 Refractory Lung Adenocarcinoma 7 152978 -NCIT:C183109 Invasive Lung Non-Mucinous Adenocarcinoma 7 152979 -NCIT:C123160 Lepidic Adenocarcinoma 8 152980 -NCIT:C5649 Lung Acinar Adenocarcinoma 8 152981 -NCIT:C5650 Lung Papillary Adenocarcinoma 8 152982 -NCIT:C128847 Lung Micropapillary Adenocarcinoma 9 152983 -NCIT:C5651 Solid Lung Adenocarcinoma 8 152984 -NCIT:C190954 Resectable Lung Adenocarcinoma 7 152985 -NCIT:C2923 Minimally Invasive Lung Adenocarcinoma 7 152986 -NCIT:C7268 Minimally Invasive Lung Mucinous Adenocarcinoma 8 152987 -NCIT:C7269 Minimally Invasive Lung Non-Mucinous Adenocarcinoma 8 152988 -NCIT:C7270 Minimally Invasive Lung Mixed Non-Mucinous and Mucinous Adenocarcinoma 8 152989 -NCIT:C45509 Lung Fetal Adenocarcinoma 7 152990 -NCIT:C45512 Lung Colloid Adenocarcinoma 7 152991 -NCIT:C6699 Occult Lung Adenocarcinoma 7 152992 -NCIT:C8757 Recurrent Lung Adenocarcinoma 7 152993 -NCIT:C2926 Lung Non-Small Cell Carcinoma 5 152994 -NCIT:C118814 Childhood Lung Non-Small Cell Carcinoma 6 152995 -NCIT:C133254 Lung Non-Small Cell Squamous Carcinoma 6 152996 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 7 152997 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 152998 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 152999 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 153000 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 7 153001 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 7 153002 -NCIT:C171612 Unresectable Lung Non-Small Cell Squamous Carcinoma 7 153003 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 8 153004 -NCIT:C45502 Lung Squamous Cell Carcinoma, Papillary Variant 7 153005 -NCIT:C45503 Lung Squamous Cell Carcinoma, Clear Cell Variant 7 153006 -NCIT:C135017 Lung Non-Squamous Non-Small Cell Carcinoma 6 153007 -NCIT:C128797 Recurrent Lung Non-Squamous Non-Small Cell Carcinoma 7 153008 -NCIT:C128798 Metastatic Lung Non-Squamous Non-Small Cell Carcinoma 7 153009 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 153010 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 153011 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 153012 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 153013 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 153014 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 153015 -NCIT:C155908 Metastatic Lung Adenocarcinoma 8 153016 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 153017 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 153018 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 8 153019 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 153020 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 153021 -NCIT:C162642 Unresectable Lung Non-Squamous Non-Small Cell Carcinoma 7 153022 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 8 153023 -NCIT:C176858 Refractory Lung Non-Squamous Non-Small Cell Carcinoma 7 153024 -NCIT:C136491 Lung Non-Small Cell Cancer by AJCC v7 Stage 6 153025 -NCIT:C136490 Lung Adenocarcinoma by AJCC v7 Stage 7 153026 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 8 153027 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 8 153028 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 9 153029 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 9 153030 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 8 153031 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 9 153032 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 9 153033 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 8 153034 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 9 153035 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 9 153036 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 8 153037 -NCIT:C136492 Lung Adenosquamous Carcinoma by AJCC v7 Stage 7 153038 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 8 153039 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 8 153040 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 9 153041 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 9 153042 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 8 153043 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 9 153044 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 9 153045 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 8 153046 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 9 153047 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 9 153048 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 8 153049 -NCIT:C136493 Lung Large Cell Carcinoma by AJCC v7 Stage 7 153050 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 8 153051 -NCIT:C6660 Stage II Lung Large Cell Carcinoma AJCC v7 8 153052 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 9 153053 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 9 153054 -NCIT:C8755 Stage I Lung Large Cell Carcinoma AJCC v7 8 153055 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 9 153056 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 9 153057 -NCIT:C8756 Stage IV Lung Large Cell Carcinoma AJCC v7 8 153058 -NCIT:C9257 Stage III Lung Large Cell Carcinoma AJCC v7 8 153059 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 9 153060 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 9 153061 -NCIT:C4012 Stage IV Lung Non-Small Cell Cancer AJCC v7 7 153062 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 8 153063 -NCIT:C8756 Stage IV Lung Large Cell Carcinoma AJCC v7 8 153064 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 8 153065 -NCIT:C6671 Stage I Lung Non-Small Cell Cancer AJCC v7 7 153066 -NCIT:C5652 Stage IA Lung Non-Small Cell Carcinoma AJCC v7 8 153067 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 9 153068 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 9 153069 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 9 153070 -NCIT:C5653 Stage IB Lung Non-Small Cell Carcinoma AJCC v7 8 153071 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 9 153072 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 9 153073 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 9 153074 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 8 153075 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 9 153076 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 9 153077 -NCIT:C8755 Stage I Lung Large Cell Carcinoma AJCC v7 8 153078 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 9 153079 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 9 153080 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 8 153081 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 9 153082 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 9 153083 -NCIT:C7777 Stage II Lung Non-Small Cell Cancer AJCC v7 7 153084 -NCIT:C5654 Stage IIB Lung Non-Small Cell Carcinoma AJCC v7 8 153085 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 9 153086 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 9 153087 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 9 153088 -NCIT:C5655 Stage IIA Lung Non-Small Cell Carcinoma AJCC v7 8 153089 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 9 153090 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 9 153091 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 9 153092 -NCIT:C6660 Stage II Lung Large Cell Carcinoma AJCC v7 8 153093 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 9 153094 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 9 153095 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 8 153096 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 9 153097 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 9 153098 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 8 153099 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 9 153100 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 9 153101 -NCIT:C7778 Stage III Lung Non-Small Cell Cancer AJCC v7 7 153102 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 8 153103 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 9 153104 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 9 153105 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 8 153106 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 9 153107 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 9 153108 -NCIT:C9102 Stage IIIA Lung Non-Small Cell Cancer AJCC v7 8 153109 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 9 153110 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 9 153111 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 9 153112 -NCIT:C9103 Stage IIIB Lung Non-Small Cell Cancer AJCC v7 8 153113 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 9 153114 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 9 153115 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 9 153116 -NCIT:C9257 Stage III Lung Large Cell Carcinoma AJCC v7 8 153117 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 9 153118 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 9 153119 -NCIT:C9104 Stage 0 Lung Non-Small Cell Cancer AJCC v6 and v7 7 153120 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 8 153121 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 8 153122 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 8 153123 -NCIT:C153081 Refractory Lung Non-Small Cell Carcinoma 6 153124 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 7 153125 -NCIT:C176858 Refractory Lung Non-Squamous Non-Small Cell Carcinoma 7 153126 -NCIT:C179209 Refractory Lung Adenocarcinoma 7 153127 -NCIT:C155901 Unresectable Lung Non-Small Cell Carcinoma 6 153128 -NCIT:C162642 Unresectable Lung Non-Squamous Non-Small Cell Carcinoma 7 153129 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 8 153130 -NCIT:C171612 Unresectable Lung Non-Small Cell Squamous Carcinoma 7 153131 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 8 153132 -NCIT:C174510 Unresectable Lung Adenocarcinoma 7 153133 -NCIT:C156094 Metastatic Lung Non-Small Cell Carcinoma 6 153134 -NCIT:C128798 Metastatic Lung Non-Squamous Non-Small Cell Carcinoma 7 153135 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 153136 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 153137 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 153138 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 153139 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 153140 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 153141 -NCIT:C155908 Metastatic Lung Adenocarcinoma 8 153142 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 153143 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 153144 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 8 153145 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 153146 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 153147 -NCIT:C156093 Metastatic Lung Adenosquamous Carcinoma 7 153148 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 8 153149 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 8 153150 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 7 153151 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 153152 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 153153 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 153154 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 7 153155 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 153156 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 153157 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 153158 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 153159 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 153160 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 8 153161 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 7 153162 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 153163 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 153164 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 153165 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 153166 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 8 153167 -NCIT:C165767 Resectable Lung Non-Small Cell Carcinoma 6 153168 -NCIT:C190954 Resectable Lung Adenocarcinoma 7 153169 -NCIT:C3512 Lung Adenocarcinoma 6 153170 -NCIT:C136486 Lung Adenocarcinoma In Situ 7 153171 -NCIT:C136716 Lung Non-Mucinous Adenocarcinoma In Situ 8 153172 -NCIT:C136717 Lung Mucinous Adenocarcinoma In Situ 8 153173 -NCIT:C136490 Lung Adenocarcinoma by AJCC v7 Stage 7 153174 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 8 153175 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 8 153176 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 9 153177 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 9 153178 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 8 153179 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 9 153180 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 9 153181 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 8 153182 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 9 153183 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 9 153184 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 8 153185 -NCIT:C136709 Invasive Lung Mucinous Adenocarcinoma 7 153186 -NCIT:C136710 Lung Enteric Adenocarcinoma 7 153187 -NCIT:C155908 Metastatic Lung Adenocarcinoma 7 153188 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 8 153189 -NCIT:C176727 Advanced Lung Adenocarcinoma 8 153190 -NCIT:C174510 Unresectable Lung Adenocarcinoma 7 153191 -NCIT:C179209 Refractory Lung Adenocarcinoma 7 153192 -NCIT:C183109 Invasive Lung Non-Mucinous Adenocarcinoma 7 153193 -NCIT:C123160 Lepidic Adenocarcinoma 8 153194 -NCIT:C5649 Lung Acinar Adenocarcinoma 8 153195 -NCIT:C5650 Lung Papillary Adenocarcinoma 8 153196 -NCIT:C128847 Lung Micropapillary Adenocarcinoma 9 153197 -NCIT:C5651 Solid Lung Adenocarcinoma 8 153198 -NCIT:C190954 Resectable Lung Adenocarcinoma 7 153199 -NCIT:C2923 Minimally Invasive Lung Adenocarcinoma 7 153200 -NCIT:C7268 Minimally Invasive Lung Mucinous Adenocarcinoma 8 153201 -NCIT:C7269 Minimally Invasive Lung Non-Mucinous Adenocarcinoma 8 153202 -NCIT:C7270 Minimally Invasive Lung Mixed Non-Mucinous and Mucinous Adenocarcinoma 8 153203 -NCIT:C45509 Lung Fetal Adenocarcinoma 7 153204 -NCIT:C45512 Lung Colloid Adenocarcinoma 7 153205 -NCIT:C6699 Occult Lung Adenocarcinoma 7 153206 -NCIT:C8757 Recurrent Lung Adenocarcinoma 7 153207 -NCIT:C4450 Lung Large Cell Carcinoma 6 153208 -NCIT:C136493 Lung Large Cell Carcinoma by AJCC v7 Stage 7 153209 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 8 153210 -NCIT:C6660 Stage II Lung Large Cell Carcinoma AJCC v7 8 153211 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 9 153212 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 9 153213 -NCIT:C8755 Stage I Lung Large Cell Carcinoma AJCC v7 8 153214 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 9 153215 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 9 153216 -NCIT:C8756 Stage IV Lung Large Cell Carcinoma AJCC v7 8 153217 -NCIT:C9257 Stage III Lung Large Cell Carcinoma AJCC v7 8 153218 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 9 153219 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 9 153220 -NCIT:C4451 Lung Large Cell Carcinoma, Clear Cell Variant 7 153221 -NCIT:C6685 Occult Lung Large Cell Carcinoma 7 153222 -NCIT:C6876 Lung Large Cell Carcinoma with Rhabdoid Phenotype 7 153223 -NCIT:C7266 Lung Basaloid Large Cell Carcinoma 7 153224 -NCIT:C8753 Recurrent Lung Large Cell Carcinoma 7 153225 -NCIT:C45519 Lung Lymphoepithelial Carcinoma 6 153226 -NCIT:C45540 Lung Sarcomatoid Carcinoma 6 153227 -NCIT:C3732 Pulmonary Blastoma 7 153228 -NCIT:C4452 Lung Giant Cell Carcinoma 7 153229 -NCIT:C45541 Lung Spindle Cell Carcinoma 7 153230 -NCIT:C45542 Lung Pleomorphic Carcinoma 7 153231 -NCIT:C45543 Lung Carcinosarcoma 7 153232 -NCIT:C7783 Recurrent Lung Non-Small Cell Carcinoma 6 153233 -NCIT:C128797 Recurrent Lung Non-Squamous Non-Small Cell Carcinoma 7 153234 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 7 153235 -NCIT:C190195 Locally Recurrent Lung Non-Small Cell Carcinoma 7 153236 -NCIT:C8747 Recurrent Lung Adenosquamous Carcinoma 7 153237 -NCIT:C8753 Recurrent Lung Large Cell Carcinoma 7 153238 -NCIT:C8757 Recurrent Lung Adenocarcinoma 7 153239 -NCIT:C9038 Occult Lung Non-Small Cell Carcinoma 6 153240 -NCIT:C6684 Occult Lung Adenosquamous Carcinoma 7 153241 -NCIT:C6685 Occult Lung Large Cell Carcinoma 7 153242 -NCIT:C6699 Occult Lung Adenocarcinoma 7 153243 -NCIT:C9133 Lung Adenosquamous Carcinoma 6 153244 -NCIT:C136492 Lung Adenosquamous Carcinoma by AJCC v7 Stage 7 153245 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 8 153246 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 8 153247 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 9 153248 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 9 153249 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 8 153250 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 9 153251 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 9 153252 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 8 153253 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 9 153254 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 9 153255 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 8 153256 -NCIT:C156093 Metastatic Lung Adenosquamous Carcinoma 7 153257 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 8 153258 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 8 153259 -NCIT:C6684 Occult Lung Adenosquamous Carcinoma 7 153260 -NCIT:C8747 Recurrent Lung Adenosquamous Carcinoma 7 153261 -NCIT:C7352 Retroperitoneal Carcinoma 4 153262 -NCIT:C9325 Adrenal Cortical Carcinoma 5 153263 -NCIT:C104030 Adrenal Cortical Carcinoma by ENSAT Stage 6 153264 -NCIT:C104031 ENSAT Stage I Adrenal Cortical Carcinoma 7 153265 -NCIT:C104032 ENSAT Stage II Adrenal Cortical Carcinoma 7 153266 -NCIT:C104033 ENSAT Stage III Adrenal Cortical Carcinoma 7 153267 -NCIT:C104034 ENSAT Stage IV Adrenal Cortical Carcinoma 7 153268 -NCIT:C141098 Adrenal Cortical Carcinoma by AJCC v7 Stage 6 153269 -NCIT:C9214 Stage I Adrenal Cortical Carcinoma AJCC v7 7 153270 -NCIT:C9215 Stage II Adrenal Cortical Carcinoma AJCC v7 7 153271 -NCIT:C9216 Stage III Adrenal Cortical Carcinoma AJCC v7 7 153272 -NCIT:C9217 Stage IV Adrenal Cortical Carcinoma AJCC v7 7 153273 -NCIT:C141100 Adrenal Cortical Carcinoma by AJCC v8 Stage 6 153274 -NCIT:C141101 Stage I Adrenal Cortical Carcinoma AJCC v8 7 153275 -NCIT:C141102 Stage II Adrenal Cortical Carcinoma AJCC v8 7 153276 -NCIT:C141103 Stage III Adrenal Cortical Carcinoma AJCC v8 7 153277 -NCIT:C141104 Stage IV Adrenal Cortical Carcinoma AJCC v8 7 153278 -NCIT:C150580 Unresectable Adrenal Cortical Carcinoma 6 153279 -NCIT:C156070 Metastatic Adrenal Cortical Carcinoma 6 153280 -NCIT:C174443 Locally Advanced Adrenal Cortical Carcinoma 7 153281 -NCIT:C191863 Advanced Adrenal Cortical Carcinoma 7 153282 -NCIT:C188036 Refractory Adrenal Cortical Carcinoma 6 153283 -NCIT:C188181 Adrenal Cortical Oncocytic Carcinoma 6 153284 -NCIT:C188182 Adrenal Cortical Myxoid Carcinoma 6 153285 -NCIT:C188183 Adrenal Cortical High Grade Carcinoma 6 153286 -NCIT:C190069 Childhood Adrenal Cortical Carcinoma 6 153287 -NCIT:C6417 Recurrent Adrenal Cortical Carcinoma 6 153288 -NCIT:C68635 Adrenal Cortical Low Grade Carcinoma 6 153289 -NCIT:C68644 Adrenal Cortical Sarcomatoid Carcinoma 6 153290 -NCIT:C7569 Thymic Carcinoma 4 153291 -NCIT:C146706 Mediastinal/Thymic NUT Carcinoma 5 153292 -NCIT:C148125 Unresectable Thymic Carcinoma 5 153293 -NCIT:C148127 Recurrent Thymic Carcinoma 5 153294 -NCIT:C148128 Metastatic Thymic Carcinoma 5 153295 -NCIT:C148126 Locally Advanced Thymic Carcinoma 6 153296 -NCIT:C159903 Advanced Thymic Carcinoma 6 153297 -NCIT:C148173 Refractory Thymic Carcinoma 5 153298 -NCIT:C171031 Thymic Neuroendocrine Carcinoma 5 153299 -NCIT:C6460 Thymic Small Cell Neuroendocrine Carcinoma 6 153300 -NCIT:C6461 Thymic Large Cell Neuroendocrine Carcinoma 6 153301 -NCIT:C183313 Thymic Carcinoma with Adenoid Cystic Carcinoma-Like Features 5 153302 -NCIT:C183316 Thymic Carcinoma, Not Otherwise Specified 5 153303 -NCIT:C35718 Thymic Undifferentiated Carcinoma 5 153304 -NCIT:C6455 Thymic Squamous Cell Carcinoma 5 153305 -NCIT:C6456 Thymic Basaloid Carcinoma 6 153306 -NCIT:C6457 Thymic Mucoepidermoid Carcinoma 5 153307 -NCIT:C6458 Thymic Adenosquamous Carcinoma 5 153308 -NCIT:C6459 Thymic Adenocarcinoma 5 153309 -NCIT:C146717 Thymic Hepatoid Adenocarcinoma 6 153310 -NCIT:C183314 Thymic Enteric-Type Adenocarcinoma 6 153311 -NCIT:C183315 Thymic Adenocarcinoma, Not Otherwise Specified 6 153312 -NCIT:C27937 Thymic Low Grade Papillary Adenocarcinoma 6 153313 -NCIT:C6462 Thymic Clear Cell Carcinoma 5 153314 -NCIT:C6463 Thymic Sarcomatoid Carcinoma 5 153315 -NCIT:C7998 Thymic Lymphoepithelial Carcinoma 5 153316 -NCIT:C7596 Malignant Myoepithelioma 4 153317 -NCIT:C121787 Malignant Mixed Tumor, Not Otherwise Specified 5 153318 -NCIT:C142830 Lung Myoepithelial Carcinoma 5 153319 -NCIT:C162732 Recurrent Malignant Myoepithelioma 5 153320 -NCIT:C162733 Refractory Malignant Myoepithelioma 5 153321 -NCIT:C175274 Lacrimal Gland Myoepithelial Carcinoma 5 153322 -NCIT:C35700 Salivary Gland Myoepithelial Carcinoma 5 153323 -NCIT:C40395 Breast Malignant Myoepithelioma 5 153324 -NCIT:C7619 Recurrent Carcinoma 4 153325 -NCIT:C115441 Recurrent Primary Peritoneal Carcinoma 5 153326 -NCIT:C170751 Recurrent Platinum-Resistant Primary Peritoneal Carcinoma 6 153327 -NCIT:C170756 Recurrent Primary Peritoneal Undifferentiated Carcinoma 6 153328 -NCIT:C170759 Recurrent Primary Peritoneal Transitional Cell Carcinoma 6 153329 -NCIT:C170767 Recurrent Primary Peritoneal Adenocarcinoma 6 153330 -NCIT:C156453 Recurrent Primary Peritoneal Serous Adenocarcinoma 7 153331 -NCIT:C156454 Recurrent Primary Peritoneal Low Grade Serous Adenocarcinoma 8 153332 -NCIT:C165268 Recurrent Primary Peritoneal High Grade Serous Adenocarcinoma 8 153333 -NCIT:C165269 Recurrent Primary Peritoneal Endometrioid Adenocarcinoma 7 153334 -NCIT:C170761 Recurrent Primary Peritoneal Clear Cell Adenocarcinoma 7 153335 -NCIT:C191407 Recurrent Platinum-Sensitive Primary Peritoneal Carcinoma 6 153336 -NCIT:C148127 Recurrent Thymic Carcinoma 5 153337 -NCIT:C157639 Recurrent Adenoid Cystic Carcinoma 5 153338 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 6 153339 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 6 153340 -NCIT:C8216 Recurrent Oral Cavity Adenoid Cystic Carcinoma 6 153341 -NCIT:C159565 Recurrent Adenocarcinoma 5 153342 -NCIT:C136651 Recurrent Cervical Adenocarcinoma 6 153343 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 7 153344 -NCIT:C153359 Recurrent Gastroesophageal Junction Adenocarcinoma 6 153345 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 6 153346 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 6 153347 -NCIT:C153574 Recurrent Ampulla of Vater Adenocarcinoma 6 153348 -NCIT:C153575 Recurrent Anal Adenocarcinoma 6 153349 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 7 153350 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 7 153351 -NCIT:C153611 Recurrent Salivary Duct Carcinoma 6 153352 -NCIT:C153612 Recurrent Minor Salivary Gland Adenocarcinoma 6 153353 -NCIT:C153614 Recurrent Ovarian Adenocarcinoma 6 153354 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 7 153355 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 7 153356 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 8 153357 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 8 153358 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 8 153359 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 7 153360 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 7 153361 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 8 153362 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 7 153363 -NCIT:C154622 Recurrent Gastric Adenocarcinoma 6 153364 -NCIT:C155742 Recurrent Pancreatic Adenocarcinoma 6 153365 -NCIT:C153569 Recurrent Pancreatic Acinar Cell Carcinoma 7 153366 -NCIT:C153619 Recurrent Pancreatic Ductal Adenocarcinoma 7 153367 -NCIT:C153620 Recurrent Pancreatic Cystadenocarcinoma 7 153368 -NCIT:C158421 Recurrent Endometrioid Adenocarcinoma 6 153369 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 7 153370 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 7 153371 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 7 153372 -NCIT:C165269 Recurrent Primary Peritoneal Endometrioid Adenocarcinoma 7 153373 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 6 153374 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 7 153375 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 7 153376 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 7 153377 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 7 153378 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 7 153379 -NCIT:C162441 Recurrent Colorectal Adenocarcinoma 6 153380 -NCIT:C162442 Recurrent Colon Adenocarcinoma 7 153381 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 7 153382 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 6 153383 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 7 153384 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 7 153385 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 8 153386 -NCIT:C170766 Recurrent Fallopian Tube Adenocarcinoma 6 153387 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 7 153388 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 7 153389 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 7 153390 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 7 153391 -NCIT:C170767 Recurrent Primary Peritoneal Adenocarcinoma 6 153392 -NCIT:C156453 Recurrent Primary Peritoneal Serous Adenocarcinoma 7 153393 -NCIT:C156454 Recurrent Primary Peritoneal Low Grade Serous Adenocarcinoma 8 153394 -NCIT:C165268 Recurrent Primary Peritoneal High Grade Serous Adenocarcinoma 8 153395 -NCIT:C165269 Recurrent Primary Peritoneal Endometrioid Adenocarcinoma 7 153396 -NCIT:C170761 Recurrent Primary Peritoneal Clear Cell Adenocarcinoma 7 153397 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 6 153398 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 7 153399 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 6 153400 -NCIT:C175588 Recurrent Breast Adenocarcinoma 6 153401 -NCIT:C153568 Recurrent Breast Acinic Cell Carcinoma 7 153402 -NCIT:C153584 Recurrent Lobular Breast Carcinoma 7 153403 -NCIT:C153587 Recurrent Invasive Breast Carcinoma of No Special Type 7 153404 -NCIT:C153588 Recurrent Breast Paget Disease 7 153405 -NCIT:C168783 Recurrent HER2-Negative Breast Carcinoma 7 153406 -NCIT:C171014 Recurrent Triple-Negative Breast Carcinoma 7 153407 -NCIT:C182108 Recurrent HER2-Positive Breast Carcinoma 7 153408 -NCIT:C185157 Recurrent Hormone Receptor-Positive Breast Carcinoma 7 153409 -NCIT:C8607 Recurrent Breast Inflammatory Carcinoma 7 153410 -NCIT:C179174 Recurrent Appendix Adenocarcinoma 6 153411 -NCIT:C153579 Recurrent Appendix Mucinous Adenocarcinoma 7 153412 -NCIT:C179179 Recurrent Pseudomyxoma Peritonei 6 153413 -NCIT:C27325 Recurrent Cholangiocarcinoma 6 153414 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 7 153415 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 7 153416 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 6 153417 -NCIT:C6417 Recurrent Adrenal Cortical Carcinoma 6 153418 -NCIT:C7825 Recurrent Renal Cell Carcinoma 6 153419 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 7 153420 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 8 153421 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 7 153422 -NCIT:C7828 Recurrent Parathyroid Gland Carcinoma 6 153423 -NCIT:C8627 Recurrent Esophageal Adenocarcinoma 6 153424 -NCIT:C8757 Recurrent Lung Adenocarcinoma 6 153425 -NCIT:C9264 Recurrent Hepatocellular Carcinoma 6 153426 -NCIT:C154082 Recurrent Fibrolamellar Carcinoma 7 153427 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 7 153428 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 7 153429 -NCIT:C162652 Recurrent Squamous Cell Carcinoma 5 153430 -NCIT:C133709 Recurrent Head and Neck Squamous Cell Carcinoma 6 153431 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 153432 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 153433 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 153434 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 153435 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 153436 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 153437 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 153438 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 153439 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 153440 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 7 153441 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 153442 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 153443 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 153444 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 153445 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 153446 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 153447 -NCIT:C176682 Locally Recurrent Head and Neck Squamous Cell Carcinoma 7 153448 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 7 153449 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 153450 -NCIT:C136649 Recurrent Cervical Squamous Cell Carcinoma 6 153451 -NCIT:C143012 Recurrent Skin Squamous Cell Carcinoma 6 153452 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 153453 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 7 153454 -NCIT:C165737 Locally Recurrent Skin Squamous Cell Carcinoma 7 153455 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 6 153456 -NCIT:C169102 Recurrent Anal Squamous Cell Carcinoma 6 153457 -NCIT:C175360 Recurrent Anal Canal Squamous Cell Carcinoma 7 153458 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 8 153459 -NCIT:C174200 Recurrent Vulvar Squamous Cell Carcinoma 6 153460 -NCIT:C185302 Recurrent Vaginal Squamous Cell Carcinoma 6 153461 -NCIT:C5014 Recurrent Lung Squamous Cell Carcinoma 6 153462 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 7 153463 -NCIT:C8633 Recurrent Esophageal Squamous Cell Carcinoma 6 153464 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 6 153465 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 6 153466 -NCIT:C162732 Recurrent Malignant Myoepithelioma 5 153467 -NCIT:C165253 Recurrent Neuroendocrine Carcinoma 5 153468 -NCIT:C115440 Recurrent Merkel Cell Carcinoma 6 153469 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 7 153470 -NCIT:C165740 Locally Recurrent Merkel Cell Carcinoma 7 153471 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 6 153472 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 7 153473 -NCIT:C155938 Recurrent Digestive System Neuroendocrine Carcinoma 6 153474 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 7 153475 -NCIT:C183127 Recurrent Small Cell Neuroendocrine Carcinoma 6 153476 -NCIT:C183128 Recurrent Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 153477 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 8 153478 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 153479 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 7 153480 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 8 153481 -NCIT:C190194 Locally Recurrent Carcinoma 5 153482 -NCIT:C165737 Locally Recurrent Skin Squamous Cell Carcinoma 6 153483 -NCIT:C165740 Locally Recurrent Merkel Cell Carcinoma 6 153484 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 6 153485 -NCIT:C176682 Locally Recurrent Head and Neck Squamous Cell Carcinoma 6 153486 -NCIT:C190195 Locally Recurrent Lung Non-Small Cell Carcinoma 6 153487 -NCIT:C190196 Locally Recurrent Breast Carcinoma 6 153488 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 6 153489 -NCIT:C190198 Locally Recurrent Gastric Carcinoma 6 153490 -NCIT:C190199 Locally Recurrent Colorectal Carcinoma 6 153491 -NCIT:C190200 Locally Recurrent Endometrial Carcinoma 6 153492 -NCIT:C190201 Locally Recurrent Ovarian Carcinoma 6 153493 -NCIT:C190776 Recurrent Basal Cell Carcinoma 5 153494 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 6 153495 -NCIT:C7620 Recurrent Female Reproductive System Carcinoma 5 153496 -NCIT:C115429 Recurrent Fallopian Tube Carcinoma 6 153497 -NCIT:C170750 Recurrent Platinum-Resistant Fallopian Tube Carcinoma 7 153498 -NCIT:C170755 Recurrent Fallopian Tube Undifferentiated Carcinoma 7 153499 -NCIT:C170757 Recurrent Fallopian Tube Transitional Cell Carcinoma 7 153500 -NCIT:C170766 Recurrent Fallopian Tube Adenocarcinoma 7 153501 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 8 153502 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 8 153503 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 8 153504 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 8 153505 -NCIT:C191395 Recurrent Platinum-Sensitive Fallopian Tube Carcinoma 7 153506 -NCIT:C150094 Recurrent Endometrial Carcinoma 6 153507 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 7 153508 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 7 153509 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 8 153510 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 8 153511 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 8 153512 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 8 153513 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 8 153514 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 7 153515 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 7 153516 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 7 153517 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 7 153518 -NCIT:C190200 Locally Recurrent Endometrial Carcinoma 7 153519 -NCIT:C7804 Recurrent Cervical Carcinoma 6 153520 -NCIT:C136649 Recurrent Cervical Squamous Cell Carcinoma 7 153521 -NCIT:C136650 Recurrent Cervical Adenosquamous Carcinoma 7 153522 -NCIT:C136651 Recurrent Cervical Adenocarcinoma 7 153523 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 8 153524 -NCIT:C7833 Recurrent Ovarian Carcinoma 6 153525 -NCIT:C148025 Recurrent BRCA- Associated Ovarian Carcinoma 7 153526 -NCIT:C153614 Recurrent Ovarian Adenocarcinoma 7 153527 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 8 153528 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 8 153529 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 9 153530 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 9 153531 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 9 153532 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 8 153533 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 8 153534 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 9 153535 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 8 153536 -NCIT:C153818 Recurrent Malignant Ovarian Brenner Tumor 7 153537 -NCIT:C153819 Recurrent Ovarian Transitional Cell Carcinoma 7 153538 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 7 153539 -NCIT:C170754 Recurrent Ovarian Undifferentiated Carcinoma 7 153540 -NCIT:C178669 Recurrent Ovarian Seromucinous Carcinoma 7 153541 -NCIT:C188391 Recurrent Platinum-Sensitive Ovarian Carcinoma 7 153542 -NCIT:C190201 Locally Recurrent Ovarian Carcinoma 7 153543 -NCIT:C7860 Recurrent Vaginal Carcinoma 6 153544 -NCIT:C185302 Recurrent Vaginal Squamous Cell Carcinoma 7 153545 -NCIT:C9054 Recurrent Vulvar Carcinoma 6 153546 -NCIT:C174200 Recurrent Vulvar Squamous Cell Carcinoma 7 153547 -NCIT:C7621 Recurrent Male Reproductive System Carcinoma 5 153548 -NCIT:C7870 Recurrent Penile Carcinoma 6 153549 -NCIT:C7902 Recurrent Prostate Carcinoma 6 153550 -NCIT:C156771 Biochemically Recurrent Prostate Carcinoma 7 153551 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 7 153552 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 8 153553 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 7 153554 -NCIT:C7622 Recurrent Digestive System Carcinoma 5 153555 -NCIT:C151905 Recurrent Metastatic Digestive System Carcinoma 6 153556 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 7 153557 -NCIT:C153359 Recurrent Gastroesophageal Junction Adenocarcinoma 6 153558 -NCIT:C153574 Recurrent Ampulla of Vater Adenocarcinoma 6 153559 -NCIT:C153575 Recurrent Anal Adenocarcinoma 6 153560 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 7 153561 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 7 153562 -NCIT:C153802 Recurrent Appendix Carcinoma 6 153563 -NCIT:C179174 Recurrent Appendix Adenocarcinoma 7 153564 -NCIT:C153579 Recurrent Appendix Mucinous Adenocarcinoma 8 153565 -NCIT:C155938 Recurrent Digestive System Neuroendocrine Carcinoma 6 153566 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 7 153567 -NCIT:C156782 Recurrent Biliary Tract Carcinoma 6 153568 -NCIT:C153360 Recurrent Bile Duct Carcinoma 7 153569 -NCIT:C27325 Recurrent Cholangiocarcinoma 8 153570 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 9 153571 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 9 153572 -NCIT:C7893 Recurrent Extrahepatic Bile Duct Carcinoma 8 153573 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 9 153574 -NCIT:C4008 Recurrent Gallbladder Carcinoma 7 153575 -NCIT:C169102 Recurrent Anal Squamous Cell Carcinoma 6 153576 -NCIT:C175360 Recurrent Anal Canal Squamous Cell Carcinoma 7 153577 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 8 153578 -NCIT:C3999 Recurrent Esophageal Carcinoma 6 153579 -NCIT:C8627 Recurrent Esophageal Adenocarcinoma 7 153580 -NCIT:C8633 Recurrent Esophageal Squamous Cell Carcinoma 7 153581 -NCIT:C7110 Recurrent Liver Carcinoma 6 153582 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 7 153583 -NCIT:C7880 Recurrent Adult Liver Carcinoma 7 153584 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 8 153585 -NCIT:C9264 Recurrent Hepatocellular Carcinoma 7 153586 -NCIT:C154082 Recurrent Fibrolamellar Carcinoma 8 153587 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 8 153588 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 8 153589 -NCIT:C7626 Recurrent Pancreatic Carcinoma 6 153590 -NCIT:C155742 Recurrent Pancreatic Adenocarcinoma 7 153591 -NCIT:C153569 Recurrent Pancreatic Acinar Cell Carcinoma 8 153592 -NCIT:C153619 Recurrent Pancreatic Ductal Adenocarcinoma 8 153593 -NCIT:C153620 Recurrent Pancreatic Cystadenocarcinoma 8 153594 -NCIT:C7793 Recurrent Anal Canal Carcinoma 6 153595 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 7 153596 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 7 153597 -NCIT:C175360 Recurrent Anal Canal Squamous Cell Carcinoma 7 153598 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 8 153599 -NCIT:C9249 Recurrent AIDS-Related Anal Canal Carcinoma 7 153600 -NCIT:C7894 Recurrent Small Intestinal Carcinoma 6 153601 -NCIT:C9352 Recurrent Duodenal Carcinoma 7 153602 -NCIT:C8625 Recurrent Colorectal Carcinoma 6 153603 -NCIT:C162441 Recurrent Colorectal Adenocarcinoma 7 153604 -NCIT:C162442 Recurrent Colon Adenocarcinoma 8 153605 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 8 153606 -NCIT:C190199 Locally Recurrent Colorectal Carcinoma 7 153607 -NCIT:C190679 Recurrent Microsatellite Stable Colorectal Carcinoma 7 153608 -NCIT:C3998 Recurrent Colon Carcinoma 7 153609 -NCIT:C162442 Recurrent Colon Adenocarcinoma 8 153610 -NCIT:C8634 Recurrent Rectosigmoid Carcinoma 7 153611 -NCIT:C9238 Recurrent Rectal Carcinoma 7 153612 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 8 153613 -NCIT:C9237 Recurrent Gastric Carcinoma 6 153614 -NCIT:C154622 Recurrent Gastric Adenocarcinoma 7 153615 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 7 153616 -NCIT:C190198 Locally Recurrent Gastric Carcinoma 7 153617 -NCIT:C7623 Recurrent Urinary System Carcinoma 5 153618 -NCIT:C157631 Recurrent Urothelial Carcinoma 6 153619 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 7 153620 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 8 153621 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 7 153622 -NCIT:C8254 Recurrent Renal Pelvis and Ureter Urothelial Carcinoma 7 153623 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 8 153624 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 8 153625 -NCIT:C172622 Recurrent Kidney Carcinoma 6 153626 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 7 153627 -NCIT:C162726 Recurrent Kidney Medullary Carcinoma 7 153628 -NCIT:C7825 Recurrent Renal Cell Carcinoma 7 153629 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 8 153630 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 9 153631 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 8 153632 -NCIT:C7508 Recurrent Urethral Carcinoma 6 153633 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 7 153634 -NCIT:C7899 Recurrent Bladder Carcinoma 6 153635 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 7 153636 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 8 153637 -NCIT:C190774 Recurrent Non-Muscle Invasive Bladder Carcinoma 7 153638 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 8 153639 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 7 153640 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 7 153641 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 7 153642 -NCIT:C9255 Recurrent Ureter Carcinoma 6 153643 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 7 153644 -NCIT:C7624 Recurrent Head and Neck Carcinoma 5 153645 -NCIT:C133709 Recurrent Head and Neck Squamous Cell Carcinoma 6 153646 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 153647 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 153648 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 153649 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 153650 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 153651 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 153652 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 153653 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 153654 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 153655 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 7 153656 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 153657 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 153658 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 153659 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 153660 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 153661 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 153662 -NCIT:C176682 Locally Recurrent Head and Neck Squamous Cell Carcinoma 7 153663 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 7 153664 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 153665 -NCIT:C4034 Recurrent Laryngeal Carcinoma 6 153666 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 7 153667 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 153668 -NCIT:C5103 Recurrent Pharyngeal Carcinoma 6 153669 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 7 153670 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 153671 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 153672 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 153673 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 153674 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 153675 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 153676 -NCIT:C8051 Recurrent Oropharyngeal Carcinoma 7 153677 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 153678 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 153679 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 7 153680 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 153681 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 153682 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 153683 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 7 153684 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 153685 -NCIT:C67558 Recurrent Sinonasal Carcinoma 6 153686 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 153687 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 153688 -NCIT:C7828 Recurrent Parathyroid Gland Carcinoma 6 153689 -NCIT:C7908 Recurrent Thyroid Gland Carcinoma 6 153690 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 7 153691 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 8 153692 -NCIT:C153624 Recurrent Thyroid Gland Anaplastic Carcinoma 7 153693 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 7 153694 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 8 153695 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 8 153696 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 9 153697 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 7 153698 -NCIT:C7926 Recurrent Salivary Gland Carcinoma 6 153699 -NCIT:C153611 Recurrent Salivary Duct Carcinoma 7 153700 -NCIT:C153612 Recurrent Minor Salivary Gland Adenocarcinoma 7 153701 -NCIT:C153800 Recurrent Parotid Gland Carcinoma 7 153702 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 8 153703 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 8 153704 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 153705 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 8 153706 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 153707 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 8 153708 -NCIT:C153801 Recurrent Submandibular Gland Carcinoma 7 153709 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 8 153710 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 8 153711 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 153712 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 8 153713 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 153714 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 8 153715 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 153716 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 153717 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 153718 -NCIT:C8037 Recurrent Lip and Oral Cavity Carcinoma 6 153719 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 153720 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 153721 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 153722 -NCIT:C6076 Recurrent Oral Cavity Carcinoma 7 153723 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 153724 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 153725 -NCIT:C8215 Recurrent Oral Cavity Mucoepidermoid Carcinoma 8 153726 -NCIT:C8216 Recurrent Oral Cavity Adenoid Cystic Carcinoma 8 153727 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 7 153728 -NCIT:C7771 Recurrent Breast Carcinoma 5 153729 -NCIT:C175588 Recurrent Breast Adenocarcinoma 6 153730 -NCIT:C153568 Recurrent Breast Acinic Cell Carcinoma 7 153731 -NCIT:C153584 Recurrent Lobular Breast Carcinoma 7 153732 -NCIT:C153587 Recurrent Invasive Breast Carcinoma of No Special Type 7 153733 -NCIT:C153588 Recurrent Breast Paget Disease 7 153734 -NCIT:C168783 Recurrent HER2-Negative Breast Carcinoma 7 153735 -NCIT:C171014 Recurrent Triple-Negative Breast Carcinoma 7 153736 -NCIT:C182108 Recurrent HER2-Positive Breast Carcinoma 7 153737 -NCIT:C185157 Recurrent Hormone Receptor-Positive Breast Carcinoma 7 153738 -NCIT:C8607 Recurrent Breast Inflammatory Carcinoma 7 153739 -NCIT:C190196 Locally Recurrent Breast Carcinoma 6 153740 -NCIT:C7903 Recurrent Skin Carcinoma 5 153741 -NCIT:C115440 Recurrent Merkel Cell Carcinoma 6 153742 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 7 153743 -NCIT:C165740 Locally Recurrent Merkel Cell Carcinoma 7 153744 -NCIT:C143012 Recurrent Skin Squamous Cell Carcinoma 6 153745 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 153746 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 7 153747 -NCIT:C165737 Locally Recurrent Skin Squamous Cell Carcinoma 7 153748 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 6 153749 -NCIT:C8953 Recurrent Lung Carcinoma 5 153750 -NCIT:C180923 Recurrent Bronchogenic Carcinoma 6 153751 -NCIT:C5014 Recurrent Lung Squamous Cell Carcinoma 6 153752 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 7 153753 -NCIT:C7783 Recurrent Lung Non-Small Cell Carcinoma 6 153754 -NCIT:C128797 Recurrent Lung Non-Squamous Non-Small Cell Carcinoma 7 153755 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 7 153756 -NCIT:C190195 Locally Recurrent Lung Non-Small Cell Carcinoma 7 153757 -NCIT:C8747 Recurrent Lung Adenosquamous Carcinoma 7 153758 -NCIT:C8753 Recurrent Lung Large Cell Carcinoma 7 153759 -NCIT:C8757 Recurrent Lung Adenocarcinoma 7 153760 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 6 153761 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 7 153762 -NCIT:C9181 Recurrent Carcinoma of Unknown Primary 5 153763 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 6 153764 -NCIT:C7625 Localized Carcinoma 4 153765 -NCIT:C156166 Localized Gastroesophageal Junction Adenocarcinoma 5 153766 -NCIT:C156167 Localized Gastric Carcinoma 5 153767 -NCIT:C162569 Localized Head and Neck Carcinoma 5 153768 -NCIT:C7826 Localized Parathyroid Gland Carcinoma 6 153769 -NCIT:C162570 Localized Lung Carcinoma 5 153770 -NCIT:C162782 Localized Breast Carcinoma 5 153771 -NCIT:C166171 Localized Esophageal Carcinoma 5 153772 -NCIT:C169041 Localized Pancreatic Adenocarcinoma 5 153773 -NCIT:C189009 Localized Pancreatic Ductal Adenocarcinoma 6 153774 -NCIT:C176517 Localized Prostate Carcinoma 5 153775 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 5 153776 -NCIT:C7649 Localized Gallbladder Carcinoma 5 153777 -NCIT:C7877 Localized Resectable Adult Liver Carcinoma 5 153778 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 6 153779 -NCIT:C7878 Localized Unresectable Adult Liver Carcinoma 5 153780 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 6 153781 -NCIT:C7891 Localized Extrahepatic Bile Duct Carcinoma 5 153782 -NCIT:C8167 Localized Renal Pelvis and Ureter Urothelial Carcinoma 5 153783 -NCIT:C7682 Carcinoma in a Polyp 4 153784 -NCIT:C7676 Adenocarcinoma in Adenomatous Polyp 5 153785 -NCIT:C162531 Invasive Adenocarcinoma in Adenomatous Polyp 6 153786 -NCIT:C4136 Adenocarcinoma in Multiple Adenomatous Polyps 6 153787 -NCIT:C4134 Adenocarcinoma in Adenomatous Polyposis Coli 7 153788 -NCIT:C4141 Adenocarcinoma in Villous Adenoma 6 153789 -NCIT:C8376 Adenocarcinoma In Situ in Villous Adenoma 7 153790 -NCIT:C4145 Adenocarcinoma in Tubulovillous Adenoma 6 153791 -NCIT:C4144 Adenocarcinoma In Situ in Tubulovillous Adenoma 7 153792 -NCIT:C7677 Adenocarcinoma in Tubular Adenoma 6 153793 -NCIT:C7679 Adenocarcinoma In Situ in Tubular Adenoma 7 153794 -NCIT:C7678 Adenocarcinoma In Situ in Adenomatous Polyp 6 153795 -NCIT:C4144 Adenocarcinoma In Situ in Tubulovillous Adenoma 7 153796 -NCIT:C7679 Adenocarcinoma In Situ in Tubular Adenoma 7 153797 -NCIT:C8376 Adenocarcinoma In Situ in Villous Adenoma 7 153798 -NCIT:C7681 Carcinoma In Situ in a Polyp 5 153799 -NCIT:C7680 Adenocarcinoma In Situ in a Polyp 6 153800 -NCIT:C7678 Adenocarcinoma In Situ in Adenomatous Polyp 7 153801 -NCIT:C4144 Adenocarcinoma In Situ in Tubulovillous Adenoma 8 153802 -NCIT:C7679 Adenocarcinoma In Situ in Tubular Adenoma 8 153803 -NCIT:C8376 Adenocarcinoma In Situ in Villous Adenoma 8 153804 -NCIT:C8500 Bilateral Carcinoma 4 153805 -NCIT:C150359 Bilateral Synchronous Sporadic Renal Cell Carcinoma 5 153806 -NCIT:C8287 Bilateral Breast Carcinoma 5 153807 -NCIT:C40370 Synchronous Bilateral Breast Carcinoma 6 153808 -NCIT:C99390 Contralateral Breast Carcinoma 6 153809 -NCIT:C8511 Refractory Carcinoma 4 153810 -NCIT:C141076 Refractory Lung Carcinoma 5 153811 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 6 153812 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 7 153813 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 7 153814 -NCIT:C153081 Refractory Lung Non-Small Cell Carcinoma 6 153815 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 7 153816 -NCIT:C176858 Refractory Lung Non-Squamous Non-Small Cell Carcinoma 7 153817 -NCIT:C179209 Refractory Lung Adenocarcinoma 7 153818 -NCIT:C173331 Refractory Lung Squamous Cell Carcinoma 6 153819 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 7 153820 -NCIT:C147965 Refractory Breast Carcinoma 5 153821 -NCIT:C165703 Refractory Breast Adenocarcinoma 6 153822 -NCIT:C157057 Refractory Hormone Receptor-Positive Breast Carcinoma 7 153823 -NCIT:C167076 Refractory Triple-Negative Breast Carcinoma 7 153824 -NCIT:C168784 Refractory HER2-Negative Breast Carcinoma 7 153825 -NCIT:C182110 Refractory HER2-Positive Breast Carcinoma 7 153826 -NCIT:C148173 Refractory Thymic Carcinoma 5 153827 -NCIT:C151906 Refractory Digestive System Carcinoma 5 153828 -NCIT:C137857 Refractory Anal Carcinoma 6 153829 -NCIT:C173334 Refractory Anal Canal Squamous Cell Carcinoma 7 153830 -NCIT:C147982 Refractory Colorectal Carcinoma 6 153831 -NCIT:C153351 Refractory Colon Carcinoma 7 153832 -NCIT:C162155 Refractory Colon Adenocarcinoma 8 153833 -NCIT:C162154 Refractory Colorectal Adenocarcinoma 7 153834 -NCIT:C162155 Refractory Colon Adenocarcinoma 8 153835 -NCIT:C162157 Refractory Rectal Adenocarcinoma 8 153836 -NCIT:C162156 Refractory Rectal Carcinoma 7 153837 -NCIT:C162157 Refractory Rectal Adenocarcinoma 8 153838 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 8 153839 -NCIT:C173332 Refractory Microsatellite Stable Colorectal Carcinoma 7 153840 -NCIT:C147996 Refractory Gastric Carcinoma 6 153841 -NCIT:C167074 Refractory Gastric Adenocarcinoma 7 153842 -NCIT:C151904 Refractory Metastatic Digestive System Carcinoma 6 153843 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 7 153844 -NCIT:C153352 Refractory Liver Carcinoma 6 153845 -NCIT:C162450 Refractory Hepatocellular Carcinoma 7 153846 -NCIT:C188887 Refractory Fibrolamellar Carcinoma 8 153847 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 7 153848 -NCIT:C153356 Refractory Small Intestinal Carcinoma 6 153849 -NCIT:C155937 Refractory Digestive System Neuroendocrine Carcinoma 6 153850 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 7 153851 -NCIT:C162538 Refractory Gastroesophageal Junction Adenocarcinoma 6 153852 -NCIT:C171604 Refractory Esophageal Carcinoma 6 153853 -NCIT:C171606 Refractory Esophageal Squamous Cell Carcinoma 7 153854 -NCIT:C176892 Refractory Esophageal Adenocarcinoma 7 153855 -NCIT:C179177 Refractory Appendix Carcinoma 6 153856 -NCIT:C179178 Refractory Appendix Adenocarcinoma 7 153857 -NCIT:C185305 Refractory Pancreatobiliary Carcinoma 6 153858 -NCIT:C142808 Refractory Pancreatic Carcinoma 7 153859 -NCIT:C162015 Refractory Pancreatic Adenocarcinoma 8 153860 -NCIT:C165450 Refractory Pancreatic Ductal Adenocarcinoma 9 153861 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 9 153862 -NCIT:C162750 Refractory Biliary Tract Carcinoma 7 153863 -NCIT:C153355 Refractory Bile Duct Carcinoma 8 153864 -NCIT:C158101 Refractory Cholangiocarcinoma 9 153865 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 10 153866 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 153867 -NCIT:C175437 Refractory Extrahepatic Bile Duct Carcinoma 9 153868 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 153869 -NCIT:C162753 Refractory Gallbladder Carcinoma 8 153870 -NCIT:C175436 Refractory Ampulla of Vater Carcinoma 7 153871 -NCIT:C151907 Refractory Head and Neck Carcinoma 5 153872 -NCIT:C142983 Refractory Thyroid Gland Carcinoma 6 153873 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 7 153874 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 8 153875 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 8 153876 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 9 153877 -NCIT:C170832 Refractory Thyroid Gland Anaplastic Carcinoma 7 153878 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 7 153879 -NCIT:C148152 Refractory Head and Neck Squamous Cell Carcinoma 6 153880 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 7 153881 -NCIT:C148383 Refractory Laryngeal Squamous Cell Carcinoma 7 153882 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 7 153883 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 7 153884 -NCIT:C148401 Refractory Sinonasal Squamous Cell Carcinoma 7 153885 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 153886 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 153887 -NCIT:C148434 Refractory Nasopharyngeal Carcinoma 6 153888 -NCIT:C177722 Refractory Salivary Gland Carcinoma 6 153889 -NCIT:C179151 Platinum-Resistant Head and Neck Carcinoma 6 153890 -NCIT:C152046 Refractory Primary Peritoneal Carcinoma 5 153891 -NCIT:C157622 Platinum-Resistant Primary Peritoneal Carcinoma 6 153892 -NCIT:C170751 Recurrent Platinum-Resistant Primary Peritoneal Carcinoma 7 153893 -NCIT:C170975 Refractory Primary Peritoneal Adenocarcinoma 6 153894 -NCIT:C171021 Refractory Primary Peritoneal Serous Adenocarcinoma 7 153895 -NCIT:C178686 Refractory Primary Peritoneal High Grade Serous Adenocarcinoma 8 153896 -NCIT:C178687 Refractory Primary Peritoneal Low Grade Serous Adenocarcinoma 8 153897 -NCIT:C178684 Refractory Primary Peritoneal Clear Cell Adenocarcinoma 7 153898 -NCIT:C178685 Refractory Primary Peritoneal Endometrioid Adenocarcinoma 7 153899 -NCIT:C178688 Refractory Primary Peritoneal Transitional Cell Carcinoma 6 153900 -NCIT:C178689 Refractory Primary Peritoneal Undifferentiated Carcinoma 6 153901 -NCIT:C178702 Platinum-Refractory Primary Peritoneal Carcinoma 6 153902 -NCIT:C152048 Refractory Female Reproductive System Carcinoma 5 153903 -NCIT:C150091 Refractory Ovarian Carcinoma 6 153904 -NCIT:C147561 Platinum-Resistant Ovarian Carcinoma 7 153905 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 8 153906 -NCIT:C179459 Unresectable Platinum-Resistant Ovarian Carcinoma 8 153907 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 8 153908 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 153909 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 153910 -NCIT:C170968 Refractory Ovarian Adenocarcinoma 7 153911 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 8 153912 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 8 153913 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 9 153914 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 9 153915 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 8 153916 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 8 153917 -NCIT:C178671 Refractory Ovarian Seromucinous Carcinoma 7 153918 -NCIT:C178682 Refractory Ovarian Transitional Cell Carcinoma 7 153919 -NCIT:C178683 Refractory Ovarian Undifferentiated Carcinoma 7 153920 -NCIT:C178700 Platinum-Refractory Ovarian Carcinoma 7 153921 -NCIT:C179207 Refractory Ovarian Squamous Cell Carcinoma 7 153922 -NCIT:C183126 Refractory Malignant Ovarian Brenner Tumor 7 153923 -NCIT:C150093 Refractory Endometrial Carcinoma 6 153924 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 7 153925 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 7 153926 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 7 153927 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 7 153928 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 8 153929 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 8 153930 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 8 153931 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 8 153932 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 8 153933 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 7 153934 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 7 153935 -NCIT:C152047 Refractory Fallopian Tube Carcinoma 6 153936 -NCIT:C157621 Platinum-Resistant Fallopian Tube Carcinoma 7 153937 -NCIT:C170750 Recurrent Platinum-Resistant Fallopian Tube Carcinoma 8 153938 -NCIT:C170971 Refractory Fallopian Tube Adenocarcinoma 7 153939 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 8 153940 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 8 153941 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 8 153942 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 8 153943 -NCIT:C178674 Refractory Fallopian Tube Transitional Cell Carcinoma 7 153944 -NCIT:C178675 Refractory Fallopian Tube Undifferentiated Carcinoma 7 153945 -NCIT:C178698 Platinum-Refractory Fallopian Tube Carcinoma 7 153946 -NCIT:C170513 Refractory Cervical Carcinoma 6 153947 -NCIT:C181034 Refractory Cervical Squamous Cell Carcinoma 7 153948 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 8 153949 -NCIT:C181036 Refractory Cervical Adenocarcinoma 7 153950 -NCIT:C174508 Refractory Vulvar Carcinoma 6 153951 -NCIT:C185304 Refractory Vulvar Squamous Cell Carcinoma 7 153952 -NCIT:C174509 Refractory Vaginal Carcinoma 6 153953 -NCIT:C185303 Refractory Vaginal Squamous Cell Carcinoma 7 153954 -NCIT:C159563 Refractory Adenocarcinoma 5 153955 -NCIT:C158101 Refractory Cholangiocarcinoma 6 153956 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 7 153957 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 7 153958 -NCIT:C162015 Refractory Pancreatic Adenocarcinoma 6 153959 -NCIT:C165450 Refractory Pancreatic Ductal Adenocarcinoma 7 153960 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 7 153961 -NCIT:C162154 Refractory Colorectal Adenocarcinoma 6 153962 -NCIT:C162155 Refractory Colon Adenocarcinoma 7 153963 -NCIT:C162157 Refractory Rectal Adenocarcinoma 7 153964 -NCIT:C162450 Refractory Hepatocellular Carcinoma 6 153965 -NCIT:C188887 Refractory Fibrolamellar Carcinoma 7 153966 -NCIT:C162538 Refractory Gastroesophageal Junction Adenocarcinoma 6 153967 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 6 153968 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 7 153969 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 7 153970 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 7 153971 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 7 153972 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 7 153973 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 6 153974 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 7 153975 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 7 153976 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 8 153977 -NCIT:C165703 Refractory Breast Adenocarcinoma 6 153978 -NCIT:C157057 Refractory Hormone Receptor-Positive Breast Carcinoma 7 153979 -NCIT:C167076 Refractory Triple-Negative Breast Carcinoma 7 153980 -NCIT:C168784 Refractory HER2-Negative Breast Carcinoma 7 153981 -NCIT:C182110 Refractory HER2-Positive Breast Carcinoma 7 153982 -NCIT:C165745 Refractory Renal Cell Carcinoma 6 153983 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 7 153984 -NCIT:C167074 Refractory Gastric Adenocarcinoma 6 153985 -NCIT:C167256 Refractory Prostate Adenocarcinoma 6 153986 -NCIT:C170968 Refractory Ovarian Adenocarcinoma 6 153987 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 7 153988 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 7 153989 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 8 153990 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 8 153991 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 7 153992 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 7 153993 -NCIT:C170971 Refractory Fallopian Tube Adenocarcinoma 6 153994 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 7 153995 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 7 153996 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 7 153997 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 7 153998 -NCIT:C170975 Refractory Primary Peritoneal Adenocarcinoma 6 153999 -NCIT:C171021 Refractory Primary Peritoneal Serous Adenocarcinoma 7 154000 -NCIT:C178686 Refractory Primary Peritoneal High Grade Serous Adenocarcinoma 8 154001 -NCIT:C178687 Refractory Primary Peritoneal Low Grade Serous Adenocarcinoma 8 154002 -NCIT:C178684 Refractory Primary Peritoneal Clear Cell Adenocarcinoma 7 154003 -NCIT:C178685 Refractory Primary Peritoneal Endometrioid Adenocarcinoma 7 154004 -NCIT:C176892 Refractory Esophageal Adenocarcinoma 6 154005 -NCIT:C179178 Refractory Appendix Adenocarcinoma 6 154006 -NCIT:C179180 Refractory Pseudomyxoma Peritonei 6 154007 -NCIT:C179209 Refractory Lung Adenocarcinoma 6 154008 -NCIT:C181036 Refractory Cervical Adenocarcinoma 6 154009 -NCIT:C188036 Refractory Adrenal Cortical Carcinoma 6 154010 -NCIT:C162719 Refractory Urinary System Carcinoma 5 154011 -NCIT:C150316 Refractory Bladder Carcinoma 6 154012 -NCIT:C148286 Refractory Stage 0 Bladder Cancer AJCC v6 and v7 7 154013 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 7 154014 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 8 154015 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 7 154016 -NCIT:C150364 Refractory Urothelial Carcinoma 6 154017 -NCIT:C150365 Platinum-Resistant Urothelial Carcinoma 7 154018 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 7 154019 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 8 154020 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 7 154021 -NCIT:C176996 Refractory Urethral Urothelial Carcinoma 7 154022 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 7 154023 -NCIT:C172623 Refractory Kidney Carcinoma 6 154024 -NCIT:C162727 Refractory Kidney Medullary Carcinoma 7 154025 -NCIT:C165745 Refractory Renal Cell Carcinoma 7 154026 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 8 154027 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 7 154028 -NCIT:C162733 Refractory Malignant Myoepithelioma 5 154029 -NCIT:C165742 Refractory Neuroendocrine Carcinoma 5 154030 -NCIT:C155937 Refractory Digestive System Neuroendocrine Carcinoma 6 154031 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 7 154032 -NCIT:C165741 Refractory Merkel Cell Carcinoma 6 154033 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 6 154034 -NCIT:C191853 Refractory Small Cell Neuroendocrine Carcinoma 6 154035 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 7 154036 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 8 154037 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 8 154038 -NCIT:C191854 Refractory Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 154039 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 8 154040 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 8 154041 -NCIT:C171605 Refractory Squamous Cell Carcinoma 5 154042 -NCIT:C148152 Refractory Head and Neck Squamous Cell Carcinoma 6 154043 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 7 154044 -NCIT:C148383 Refractory Laryngeal Squamous Cell Carcinoma 7 154045 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 7 154046 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 7 154047 -NCIT:C148401 Refractory Sinonasal Squamous Cell Carcinoma 7 154048 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 154049 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 154050 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 6 154051 -NCIT:C165735 Refractory Skin Squamous Cell Carcinoma 6 154052 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 154053 -NCIT:C171606 Refractory Esophageal Squamous Cell Carcinoma 6 154054 -NCIT:C173331 Refractory Lung Squamous Cell Carcinoma 6 154055 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 7 154056 -NCIT:C173334 Refractory Anal Canal Squamous Cell Carcinoma 6 154057 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 6 154058 -NCIT:C179207 Refractory Ovarian Squamous Cell Carcinoma 6 154059 -NCIT:C181034 Refractory Cervical Squamous Cell Carcinoma 6 154060 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 7 154061 -NCIT:C185303 Refractory Vaginal Squamous Cell Carcinoma 6 154062 -NCIT:C185304 Refractory Vulvar Squamous Cell Carcinoma 6 154063 -NCIT:C175668 Refractory Adenoid Cystic Carcinoma 5 154064 -NCIT:C177149 Refractory Male Reproductive System Carcinoma 5 154065 -NCIT:C167255 Refractory Prostate Carcinoma 6 154066 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 7 154067 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 8 154068 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 8 154069 -NCIT:C161609 Double-Negative Prostate Carcinoma 8 154070 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 8 154071 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 8 154072 -NCIT:C167256 Refractory Prostate Adenocarcinoma 7 154073 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 7 154074 -NCIT:C177150 Refractory Penile Carcinoma 6 154075 -NCIT:C9347 Tracheal Carcinoma 4 154076 -NCIT:C4448 Tracheal Squamous Cell Carcinoma 5 154077 -NCIT:C3639 Tracheal Carcinoma In Situ 6 154078 -NCIT:C6051 Tracheal Adenoid Cystic Carcinoma 5 154079 -NCIT:C9480 Invasive Carcinoma 4 154080 -NCIT:C136709 Invasive Lung Mucinous Adenocarcinoma 5 154081 -NCIT:C150570 Invasive Bladder Carcinoma 5 154082 -NCIT:C150572 Muscle Invasive Bladder Carcinoma 6 154083 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 7 154084 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 8 154085 -NCIT:C165716 Invasive Bladder Mixed Carcinoma 6 154086 -NCIT:C27474 Non-Muscle Invasive Bladder Carcinoma 6 154087 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 7 154088 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 8 154089 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 8 154090 -NCIT:C190772 Metastatic Non-Muscle Invasive Bladder Carcinoma 7 154091 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 8 154092 -NCIT:C190774 Recurrent Non-Muscle Invasive Bladder Carcinoma 7 154093 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 8 154094 -NCIT:C27885 Invasive Bladder Urothelial Carcinoma 6 154095 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 7 154096 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 8 154097 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 8 154098 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 7 154099 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 8 154100 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 7 154101 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 7 154102 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 7 154103 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 7 154104 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 7 154105 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 154106 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 7 154107 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 7 154108 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 7 154109 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 7 154110 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 154111 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 7 154112 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 7 154113 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 7 154114 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 154115 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 7 154116 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 154117 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 8 154118 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 8 154119 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 7 154120 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 154121 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 7 154122 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 154123 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 7 154124 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 154125 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 7 154126 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 7 154127 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 7 154128 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 7 154129 -NCIT:C156123 Thyroid Gland Follicular Carcinoma, Widely Invasive 5 154130 -NCIT:C162531 Invasive Adenocarcinoma in Adenomatous Polyp 5 154131 -NCIT:C167354 Microinvasive Anal Carcinoma 5 154132 -NCIT:C183109 Invasive Lung Non-Mucinous Adenocarcinoma 5 154133 -NCIT:C123160 Lepidic Adenocarcinoma 6 154134 -NCIT:C5649 Lung Acinar Adenocarcinoma 6 154135 -NCIT:C5650 Lung Papillary Adenocarcinoma 6 154136 -NCIT:C128847 Lung Micropapillary Adenocarcinoma 7 154137 -NCIT:C5651 Solid Lung Adenocarcinoma 6 154138 -NCIT:C38760 Submucosal Invasive Colon Adenocarcinoma 5 154139 -NCIT:C39853 Invasive Urothelial Carcinoma 5 154140 -NCIT:C115966 Invasive Bladder Urothelial Carcinoma Associated with Urethral Carcinoma 6 154141 -NCIT:C164252 Invasive Sarcomatoid Urothelial Carcinoma 6 154142 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 7 154143 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 154144 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 7 154145 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 154146 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 8 154147 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 8 154148 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 7 154149 -NCIT:C191678 Invasive Lymphoepithelioma-Like Urothelial Carcinoma 6 154150 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 7 154151 -NCIT:C191679 Invasive Giant Cell Urothelial Carcinoma 6 154152 -NCIT:C191693 Metastatic Giant Cell Urothelial Carcinoma 7 154153 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 154154 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 7 154155 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 154156 -NCIT:C191680 Invasive Urothelial Carcinoma with Glandular Differentiation 6 154157 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 7 154158 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 7 154159 -NCIT:C191681 Invasive Urothelial Carcinoma with Squamous Differentiation 6 154160 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 7 154161 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 7 154162 -NCIT:C191682 Invasive Urothelial Carcinoma with Trophoblastic Differentiation 6 154163 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 7 154164 -NCIT:C191683 Invasive Clear Cell (Glycogen-Rich) Urothelial Carcinoma 6 154165 -NCIT:C191692 Metastatic Clear Cell (Glycogen-Rich) Urothelial Carcinoma 7 154166 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 154167 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 7 154168 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 154169 -NCIT:C191684 Invasive Lipid-Rich Urothelial Carcinoma 6 154170 -NCIT:C191694 Metastatic Lipid-Rich Urothelial Carcinoma 7 154171 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 154172 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 7 154173 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 154174 -NCIT:C191685 Invasive Microcystic Urothelial Carcinoma 6 154175 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 7 154176 -NCIT:C191686 Invasive Micropapillary Urothelial Carcinoma 6 154177 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 7 154178 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 154179 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 7 154180 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 154181 -NCIT:C191687 Invasive Nested Urothelial Carcinoma 6 154182 -NCIT:C191696 Metastatic Nested Urothelial Carcinoma 7 154183 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 154184 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 7 154185 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 154186 -NCIT:C191688 Invasive Plasmacytoid Urothelial Carcinoma 6 154187 -NCIT:C191697 Metastatic Plasmacytoid Urothelial Carcinoma 7 154188 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 154189 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 7 154190 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 154191 -NCIT:C191725 Invasive Large Nested Urothelial Carcinoma 6 154192 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 7 154193 -NCIT:C191728 Invasive Tubular Urothelial Carcinoma 6 154194 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 7 154195 -NCIT:C191730 Invasive Poorly Differentiated Urothelial Carcinoma 6 154196 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 7 154197 -NCIT:C191734 Invasive Conventional Urothelial Carcinoma 6 154198 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 7 154199 -NCIT:C27885 Invasive Bladder Urothelial Carcinoma 6 154200 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 7 154201 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 8 154202 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 8 154203 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 7 154204 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 8 154205 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 7 154206 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 7 154207 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 7 154208 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 7 154209 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 7 154210 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 154211 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 7 154212 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 7 154213 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 7 154214 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 7 154215 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 154216 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 7 154217 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 7 154218 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 7 154219 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 154220 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 7 154221 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 154222 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 8 154223 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 8 154224 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 7 154225 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 154226 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 7 154227 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 154228 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 7 154229 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 154230 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 7 154231 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 7 154232 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 7 154233 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 7 154234 -NCIT:C39879 Invasive Renal Pelvis and Ureter Urothelial Carcinoma 6 154235 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 7 154236 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 7 154237 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 7 154238 -NCIT:C41246 Pancreatic Mucinous-Cystic Neoplasm with an Associated Invasive Carcinoma 5 154239 -NCIT:C48596 Invasive Prostate Carcinoma 5 154240 -NCIT:C158912 Prostate Neuroendocrine Carcinoma 6 154241 -NCIT:C158650 Prostate Large Cell Neuroendocrine Carcinoma 7 154242 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 7 154243 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 154244 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 154245 -NCIT:C6766 Prostate Small Cell Neuroendocrine Carcinoma 7 154246 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 154247 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 8 154248 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 8 154249 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 8 154250 -NCIT:C2919 Prostate Adenocarcinoma 6 154251 -NCIT:C150557 Prostate Adenocarcinoma without Neuroendocrine Differentiation 7 154252 -NCIT:C164185 Aggressive Prostate Adenocarcinoma 7 154253 -NCIT:C164186 Prostate Adenocarcinoma by AJCC v7 Stage 7 154254 -NCIT:C8947 Stage I Prostate Adenocarcinoma AJCC v7 8 154255 -NCIT:C8948 Stage II Prostate Adenocarcinoma AJCC v7 8 154256 -NCIT:C8949 Stage III Prostate Adenocarcinoma AJCC v7 8 154257 -NCIT:C8950 Stage IV Prostate Adenocarcinoma AJCC v7 8 154258 -NCIT:C167256 Refractory Prostate Adenocarcinoma 7 154259 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 7 154260 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 8 154261 -NCIT:C27905 Well Differentiated Prostate Adenocarcinoma 7 154262 -NCIT:C39896 Prostate Ductal Adenocarcinoma, Papillary Pattern 8 154263 -NCIT:C27906 Moderately Differentiated Prostate Adenocarcinoma 7 154264 -NCIT:C27916 Poorly Differentiated Prostate Adenocarcinoma 7 154265 -NCIT:C5530 Prostate Acinar Adenocarcinoma, Sarcomatoid Variant 8 154266 -NCIT:C39903 Prostate Adenocarcinoma with Neuroendocrine Differentiation 7 154267 -NCIT:C158656 Usual Prostate Adenocarcinoma with Neuroendocrine Differentiation 8 154268 -NCIT:C158664 Prostate Adenocarcinoma with Paneth Cell-Like Neuroendocrine Differentiation 8 154269 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 8 154270 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 154271 -NCIT:C5596 Prostate Acinar Adenocarcinoma 7 154272 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 8 154273 -NCIT:C158656 Usual Prostate Adenocarcinoma with Neuroendocrine Differentiation 8 154274 -NCIT:C160817 Prostate Acinar Adenocarcinoma, Microcystic Variant 8 154275 -NCIT:C160818 Prostate Acinar Adenocarcinoma, Pleomorphic Giant Cell Variant 8 154276 -NCIT:C39880 Prostate Acinar Adenocarcinoma, Atrophic Variant 8 154277 -NCIT:C39881 Prostate Acinar Adenocarcinoma, Pseudohyperplastic Variant 8 154278 -NCIT:C39882 Prostate Acinar Adenocarcinoma, Foamy Gland Variant 8 154279 -NCIT:C39884 Prostate Acinar Adenocarcinoma, Oncocytic Variant 8 154280 -NCIT:C39885 Prostate Acinar Adenocarcinoma, Lymphoepithelioma-Like Variant 8 154281 -NCIT:C5530 Prostate Acinar Adenocarcinoma, Sarcomatoid Variant 8 154282 -NCIT:C5535 Prostate Acinar Adenocarcinoma, Signet Ring-Like Cell Variant 8 154283 -NCIT:C5537 Prostate Acinar Mucinous Adenocarcinoma 8 154284 -NCIT:C6813 Prostate Ductal Adenocarcinoma 7 154285 -NCIT:C39895 Prostate Ductal Adenocarcinoma, Cribriform Pattern 8 154286 -NCIT:C39896 Prostate Ductal Adenocarcinoma, Papillary Pattern 8 154287 -NCIT:C39897 Prostate Ductal Adenocarcinoma, Solid Pattern 8 154288 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 7 154289 -NCIT:C156286 Advanced Prostate Adenocarcinoma 8 154290 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 154291 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 8 154292 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 154293 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 8 154294 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 154295 -NCIT:C39902 Prostate Basal Cell Carcinoma 6 154296 -NCIT:C5536 Prostate Squamous Cell Carcinoma 6 154297 -NCIT:C5538 Prostate Adenosquamous Carcinoma 6 154298 -NCIT:C5539 Prostate Adenoid Cystic Carcinoma 6 154299 -NCIT:C5597 Prostate Undifferentiated Carcinoma 6 154300 -NCIT:C65178 Microinvasive Squamous Cell Carcinoma 5 154301 -NCIT:C65200 Thyroid Gland Follicular Carcinoma, Minimally Invasive 5 154302 -NCIT:C7438 Invasive Papillary Adenocarcinoma 5 154303 -NCIT:C36085 Invasive Breast Papillary Carcinoma 6 154304 -NCIT:C176010 Encapsulated Breast Papillary Carcinoma with Invasion 7 154305 -NCIT:C176012 Invasive Breast Solid Papillary Carcinoma 7 154306 -NCIT:C36084 Invasive Breast Micropapillary Carcinoma 7 154307 -NCIT:C7439 Breast Papillary Ductal Carcinoma In Situ with Invasion 7 154308 -NCIT:C39896 Prostate Ductal Adenocarcinoma, Papillary Pattern 6 154309 -NCIT:C5650 Lung Papillary Adenocarcinoma 6 154310 -NCIT:C128847 Lung Micropapillary Adenocarcinoma 7 154311 -NCIT:C7381 Invasive Follicular Variant Thyroid Gland Papillary Carcinoma 6 154312 -NCIT:C95967 Ampulla of Vater Invasive Papillary Adenocarcinoma 6 154313 -NCIT:C8577 Invasive Cervical Carcinoma 5 154314 -NCIT:C9245 Invasive Breast Carcinoma 5 154315 -NCIT:C175581 Breast Neuroendocrine Carcinoma 6 154316 -NCIT:C40356 Breast Large Cell Neuroendocrine Carcinoma 7 154317 -NCIT:C6760 Breast Small Cell Neuroendocrine Carcinoma 7 154318 -NCIT:C175604 Breast Polymorphous Adenocarcinoma 6 154319 -NCIT:C175607 Breast Tall Cell Carcinoma with Reversed Polarity 6 154320 -NCIT:C176504 Invasive Male Breast Carcinoma 6 154321 -NCIT:C176579 Invasive Female Breast Carcinoma 6 154322 -NCIT:C27829 Invasive Breast Carcinoma by Histologic Grade 6 154323 -NCIT:C27830 Grade 1 Invasive Breast Carcinoma 7 154324 -NCIT:C27831 Grade 2 Invasive Breast Carcinoma 7 154325 -NCIT:C27832 Grade 3 Invasive Breast Carcinoma 7 154326 -NCIT:C5161 Breast Pleomorphic Carcinoma 8 154327 -NCIT:C36085 Invasive Breast Papillary Carcinoma 6 154328 -NCIT:C176010 Encapsulated Breast Papillary Carcinoma with Invasion 7 154329 -NCIT:C176012 Invasive Breast Solid Papillary Carcinoma 7 154330 -NCIT:C36084 Invasive Breast Micropapillary Carcinoma 7 154331 -NCIT:C7439 Breast Papillary Ductal Carcinoma In Situ with Invasion 7 154332 -NCIT:C4001 Breast Inflammatory Carcinoma 6 154333 -NCIT:C158751 Unresectable Breast Inflammatory Carcinoma 7 154334 -NCIT:C181787 Metastatic Breast Inflammatory Carcinoma 7 154335 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 8 154336 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 8 154337 -NCIT:C9246 Stage IIIB Breast Inflammatory Carcinoma 8 154338 -NCIT:C8607 Recurrent Breast Inflammatory Carcinoma 7 154339 -NCIT:C40347 Breast Mixed Carcinoma 6 154340 -NCIT:C40361 Breast Adenosquamous Carcinoma 7 154341 -NCIT:C40362 Low Grade Breast Adenosquamous Carcinoma 8 154342 -NCIT:C6393 Invasive Breast Ductal Carcinoma and Invasive Lobular Carcinoma 7 154343 -NCIT:C40354 Breast Mucinous Cystadenocarcinoma 6 154344 -NCIT:C40367 Breast Acinic Cell Carcinoma 6 154345 -NCIT:C153568 Recurrent Breast Acinic Cell Carcinoma 7 154346 -NCIT:C40374 Microinvasive Breast Carcinoma 6 154347 -NCIT:C40395 Breast Malignant Myoepithelioma 6 154348 -NCIT:C4189 Breast Secretory Carcinoma 6 154349 -NCIT:C4194 Invasive Breast Carcinoma of No Special Type 6 154350 -NCIT:C153587 Recurrent Invasive Breast Carcinoma of No Special Type 7 154351 -NCIT:C175585 Breast Carcinoma with Neuroendocrine Differentiation 7 154352 -NCIT:C40349 Breast Carcinoma with Osteoclast-Like Stromal Giant Cells 7 154353 -NCIT:C40350 Breast Carcinoma with Choriocarcinomatous Features 7 154354 -NCIT:C40351 Breast Carcinoma with Melanotic Features 7 154355 -NCIT:C40365 Breast Lipid-Rich Carcinoma 7 154356 -NCIT:C40366 Breast Oncocytic Carcinoma 7 154357 -NCIT:C40368 Glycogen-Rich, Clear Cell Breast Carcinoma 7 154358 -NCIT:C40369 Breast Sebaceous Carcinoma 7 154359 -NCIT:C5161 Breast Pleomorphic Carcinoma 7 154360 -NCIT:C66719 Breast Atypical Medullary Carcinoma 7 154361 -NCIT:C6987 Breast Ductal Carcinoma with Squamous Metaplasia 7 154362 -NCIT:C7362 Breast Scirrhous Carcinoma 7 154363 -NCIT:C9119 Breast Medullary Carcinoma 7 154364 -NCIT:C9132 Invasive Breast Carcinoma of No Special Type with Predominant Intraductal Component 7 154365 -NCIT:C5130 Breast Adenoid Cystic Carcinoma 6 154366 -NCIT:C5142 Invasive Breast Cribriform Carcinoma 6 154367 -NCIT:C5164 Breast Metaplastic Carcinoma 6 154368 -NCIT:C40360 Breast Adenocarcinoma with Spindle Cell Metaplasia 7 154369 -NCIT:C40364 Breast Mixed Epithelial/Mesenchymal Metaplastic Carcinoma 7 154370 -NCIT:C47847 Breast Carcinoma with Chondroid Metaplasia 8 154371 -NCIT:C47848 Breast Carcinoma with Osseous Metaplasia 8 154372 -NCIT:C5163 Breast Adenocarcinoma with Squamous Metaplasia 7 154373 -NCIT:C6987 Breast Ductal Carcinoma with Squamous Metaplasia 8 154374 -NCIT:C5166 Breast Mucoepidermoid Carcinoma 6 154375 -NCIT:C5167 High Grade Breast Mucoepidermoid Carcinoma 7 154376 -NCIT:C5168 Low Grade Breast Mucoepidermoid Carcinoma 7 154377 -NCIT:C5175 Breast Signet Ring Cell Carcinoma 6 154378 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 7 154379 -NCIT:C54691 Invasive Breast Lobular Carcinoma, Signet Ring Variant 7 154380 -NCIT:C5177 Breast Squamous Cell Carcinoma 6 154381 -NCIT:C40357 Breast Squamous Cell Carcinoma, Large Cell Keratinizing Variant 7 154382 -NCIT:C40358 Breast Squamous Cell Carcinoma, Spindle Cell Variant 7 154383 -NCIT:C40359 Breast Squamous Cell Carcinoma, Acantholytic Variant 7 154384 -NCIT:C5178 Metastatic Breast Squamous Cell Carcinoma 7 154385 -NCIT:C5457 Invasive Breast Apocrine Carcinoma 6 154386 -NCIT:C7950 Invasive Breast Lobular Carcinoma 6 154387 -NCIT:C157235 Breast Histiocytoid Carcinoma 7 154388 -NCIT:C187405 Invasive Breast Lobular Carcinoma with Extracellular Mucin 7 154389 -NCIT:C54691 Invasive Breast Lobular Carcinoma, Signet Ring Variant 7 154390 -NCIT:C9136 Invasive Breast Lobular Carcinoma with Predominant In Situ Component 7 154391 -NCIT:C97049 Invasive Breast Lobular Carcinoma, Alveolar Variant 7 154392 -NCIT:C97051 Invasive Breast Lobular Carcinoma, Pleomorphic Variant 7 154393 -NCIT:C97052 Invasive Breast Lobular Carcinoma, Solid Variant 7 154394 -NCIT:C97053 Invasive Breast Lobular Carcinoma, Tubulolobular Variant 7 154395 -NCIT:C7951 Breast Paget Disease with Invasive Ductal Carcinoma 6 154396 -NCIT:C9131 Breast Mucinous Carcinoma 6 154397 -NCIT:C40355 Breast Columnar Cell Mucinous Carcinoma 7 154398 -NCIT:C9135 Breast Tubular Carcinoma 6 154399 -NCIT:C96963 Digestive System Carcinoma 4 154400 -NCIT:C133839 Metastatic Digestive System Carcinoma 5 154401 -NCIT:C150577 Metastatic Gastroesophageal Junction Adenocarcinoma 6 154402 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 7 154403 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 7 154404 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 154405 -NCIT:C151904 Refractory Metastatic Digestive System Carcinoma 6 154406 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 7 154407 -NCIT:C151905 Recurrent Metastatic Digestive System Carcinoma 6 154408 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 7 154409 -NCIT:C153320 Metastatic Gastric Carcinoma 6 154410 -NCIT:C153319 Metastatic Gastric Adenocarcinoma 7 154411 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 154412 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 154413 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 154414 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 154415 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 154416 -NCIT:C165630 Metastatic Proximal Gastric Adenocarcinoma 8 154417 -NCIT:C166121 Oligometastatic Gastric Adenocarcinoma 8 154418 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 154419 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 154420 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 7 154421 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 154422 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 154423 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 154424 -NCIT:C162772 Locally Advanced Gastric Carcinoma 7 154425 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 154426 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 154427 -NCIT:C165299 Advanced Gastric Carcinoma 7 154428 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 154429 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 154430 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 154431 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 154432 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 154433 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 7 154434 -NCIT:C153358 Locally Advanced Digestive System Carcinoma 6 154435 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 7 154436 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 154437 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 154438 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 154439 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 7 154440 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 154441 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 7 154442 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 8 154443 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 154444 -NCIT:C170778 Locally Advanced Rectal Carcinoma 8 154445 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 154446 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 154447 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 154448 -NCIT:C170910 Locally Advanced Colon Carcinoma 8 154449 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 154450 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 154451 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 154452 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 154453 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 154454 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 154455 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 154456 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 154457 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 154458 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 154459 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 154460 -NCIT:C162772 Locally Advanced Gastric Carcinoma 7 154461 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 154462 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 154463 -NCIT:C168976 Locally Advanced Esophageal Carcinoma 7 154464 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 154465 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 154466 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 154467 -NCIT:C168977 Locally Advanced Anal Carcinoma 7 154468 -NCIT:C170459 Locally Advanced Pancreatobiliary Carcinoma 7 154469 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 8 154470 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 154471 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 154472 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 154473 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 154474 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 154475 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 154476 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 154477 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 154478 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 8 154479 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 154480 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 154481 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 154482 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 8 154483 -NCIT:C171298 Locally Advanced Liver Carcinoma 7 154484 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 154485 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 8 154486 -NCIT:C154088 Metastatic Liver Carcinoma 6 154487 -NCIT:C154091 Metastatic Hepatocellular Carcinoma 7 154488 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 8 154489 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 154490 -NCIT:C167336 Advanced Hepatocellular Carcinoma 8 154491 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 154492 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 154493 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 154494 -NCIT:C171298 Locally Advanced Liver Carcinoma 7 154495 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 154496 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 8 154497 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 7 154498 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 8 154499 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 8 154500 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 6 154501 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 7 154502 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 154503 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 154504 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 154505 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 7 154506 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 154507 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 154508 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 154509 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 7 154510 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 154511 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 154512 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 154513 -NCIT:C156073 Metastatic Esophageal Carcinoma 6 154514 -NCIT:C156074 Metastatic Esophageal Adenocarcinoma 7 154515 -NCIT:C166120 Oligometastatic Esophageal Adenocarcinoma 8 154516 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 154517 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 154518 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 154519 -NCIT:C172249 Metastatic Distal Esophagus Adenocarcinoma 8 154520 -NCIT:C156075 Metastatic Esophageal Squamous Cell Carcinoma 7 154521 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 154522 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 154523 -NCIT:C160599 Advanced Esophageal Carcinoma 7 154524 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 154525 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 154526 -NCIT:C168976 Locally Advanced Esophageal Carcinoma 7 154527 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 154528 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 154529 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 154530 -NCIT:C156096 Metastatic Colorectal Carcinoma 6 154531 -NCIT:C142867 Metastatic Microsatellite Stable Colorectal Carcinoma 7 154532 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 8 154533 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 8 154534 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 154535 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 8 154536 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 154537 -NCIT:C153224 Colorectal Carcinoma Metastatic in the Lung 7 154538 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 8 154539 -NCIT:C156097 Metastatic Colon Carcinoma 7 154540 -NCIT:C160819 Metastatic Colon Adenocarcinoma 8 154541 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 154542 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 154543 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 154544 -NCIT:C167238 Advanced Colon Carcinoma 8 154545 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 154546 -NCIT:C170910 Locally Advanced Colon Carcinoma 8 154547 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 154548 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 154549 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 154550 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 8 154551 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 154552 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 8 154553 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 8 154554 -NCIT:C156098 Metastatic Rectal Carcinoma 7 154555 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 8 154556 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 8 154557 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 154558 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 154559 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 154560 -NCIT:C170777 Advanced Rectal Carcinoma 8 154561 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 154562 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 154563 -NCIT:C170778 Locally Advanced Rectal Carcinoma 8 154564 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 154565 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 154566 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 154567 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 8 154568 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 154569 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 154570 -NCIT:C157366 Colorectal Carcinoma Metastatic in the Liver 7 154571 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 8 154572 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 8 154573 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 8 154574 -NCIT:C161048 Metastatic Colorectal Adenocarcinoma 7 154575 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 8 154576 -NCIT:C160819 Metastatic Colon Adenocarcinoma 8 154577 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 154578 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 154579 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 154580 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 8 154581 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 154582 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 154583 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 154584 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 8 154585 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 154586 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 154587 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 154588 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 154589 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 154590 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 154591 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 154592 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 154593 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 154594 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 154595 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 154596 -NCIT:C162475 Advanced Colorectal Carcinoma 7 154597 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 8 154598 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 154599 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 154600 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 154601 -NCIT:C167238 Advanced Colon Carcinoma 8 154602 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 154603 -NCIT:C170777 Advanced Rectal Carcinoma 8 154604 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 154605 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 154606 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 7 154607 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 8 154608 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 154609 -NCIT:C170778 Locally Advanced Rectal Carcinoma 8 154610 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 154611 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 154612 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 154613 -NCIT:C170910 Locally Advanced Colon Carcinoma 8 154614 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 154615 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 154616 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 154617 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 154618 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 154619 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 154620 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 154621 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 154622 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 154623 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 154624 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 154625 -NCIT:C185165 Oligometastatic Colorectal Carcinoma 7 154626 -NCIT:C156746 Advanced Digestive System Carcinoma 6 154627 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 7 154628 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 154629 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 154630 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 7 154631 -NCIT:C160599 Advanced Esophageal Carcinoma 7 154632 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 154633 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 154634 -NCIT:C162475 Advanced Colorectal Carcinoma 7 154635 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 8 154636 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 154637 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 154638 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 154639 -NCIT:C167238 Advanced Colon Carcinoma 8 154640 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 154641 -NCIT:C170777 Advanced Rectal Carcinoma 8 154642 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 154643 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 154644 -NCIT:C165299 Advanced Gastric Carcinoma 7 154645 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 154646 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 154647 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 154648 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 154649 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 154650 -NCIT:C167336 Advanced Hepatocellular Carcinoma 7 154651 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 8 154652 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 8 154653 -NCIT:C170515 Advanced Anal Carcinoma 7 154654 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 8 154655 -NCIT:C171330 Advanced Pancreatobiliary Carcinoma 7 154656 -NCIT:C165452 Advanced Pancreatic Carcinoma 8 154657 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 154658 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 154659 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 8 154660 -NCIT:C171331 Advanced Biliary Tract Carcinoma 8 154661 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 154662 -NCIT:C162752 Advanced Cholangiocarcinoma 10 154663 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 154664 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 154665 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 154666 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 154667 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 154668 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 154669 -NCIT:C182105 Advanced Appendix Adenocarcinoma 7 154670 -NCIT:C162275 Metastatic Appendix Carcinoma 6 154671 -NCIT:C182104 Metastatic Appendix Adenocarcinoma 7 154672 -NCIT:C162274 Metastatic Appendix Mucinous Adenocarcinoma 8 154673 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 154674 -NCIT:C163967 Metastatic Digestive System Mixed Adenoneuroendocrine Carcinoma 6 154675 -NCIT:C170458 Metastatic Pancreatobiliary Carcinoma 6 154676 -NCIT:C156069 Metastatic Pancreatic Carcinoma 7 154677 -NCIT:C165452 Advanced Pancreatic Carcinoma 8 154678 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 154679 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 154680 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 8 154681 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 154682 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 154683 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 154684 -NCIT:C190770 Metastatic Pancreatic Adenosquamous Carcinoma 8 154685 -NCIT:C190771 Metastatic Pancreatic Squamous Cell Carcinoma 8 154686 -NCIT:C8933 Metastatic Pancreatic Adenocarcinoma 8 154687 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 154688 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 154689 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 154690 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 9 154691 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 154692 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 154693 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 10 154694 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 154695 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 154696 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 9 154697 -NCIT:C162751 Metastatic Biliary Tract Carcinoma 7 154698 -NCIT:C142869 Metastatic Bile Duct Carcinoma 8 154699 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 154700 -NCIT:C162752 Advanced Cholangiocarcinoma 10 154701 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 154702 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 154703 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 154704 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 154705 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 154706 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 154707 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 154708 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 154709 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 154710 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 154711 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 154712 -NCIT:C157623 Metastatic Cholangiocarcinoma 9 154713 -NCIT:C162752 Advanced Cholangiocarcinoma 10 154714 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 154715 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 154716 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 154717 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 154718 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 154719 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 154720 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 10 154721 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 154722 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 10 154723 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 154724 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 154725 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 10 154726 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 154727 -NCIT:C185071 Metastatic Extrahepatic Bile Duct Carcinoma 9 154728 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 10 154729 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 11 154730 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 154731 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 154732 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 154733 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 154734 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 154735 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 154736 -NCIT:C162754 Metastatic Gallbladder Carcinoma 8 154737 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 154738 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 154739 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 154740 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 8 154741 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 154742 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 154743 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 154744 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 154745 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 154746 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 154747 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 154748 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 154749 -NCIT:C171331 Advanced Biliary Tract Carcinoma 8 154750 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 154751 -NCIT:C162752 Advanced Cholangiocarcinoma 10 154752 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 154753 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 154754 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 154755 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 154756 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 154757 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 154758 -NCIT:C170459 Locally Advanced Pancreatobiliary Carcinoma 7 154759 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 8 154760 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 154761 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 154762 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 154763 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 154764 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 154765 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 154766 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 154767 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 154768 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 8 154769 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 154770 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 154771 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 154772 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 8 154773 -NCIT:C171326 Metastatic Ampulla of Vater Carcinoma 7 154774 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 8 154775 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 8 154776 -NCIT:C171330 Advanced Pancreatobiliary Carcinoma 7 154777 -NCIT:C165452 Advanced Pancreatic Carcinoma 8 154778 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 154779 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 154780 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 8 154781 -NCIT:C171331 Advanced Biliary Tract Carcinoma 8 154782 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 154783 -NCIT:C162752 Advanced Cholangiocarcinoma 10 154784 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 154785 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 154786 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 154787 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 154788 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 154789 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 154790 -NCIT:C170514 Metastatic Anal Carcinoma 6 154791 -NCIT:C168977 Locally Advanced Anal Carcinoma 7 154792 -NCIT:C169103 Metastatic Anal Squamous Cell Carcinoma 7 154793 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 154794 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 154795 -NCIT:C170515 Advanced Anal Carcinoma 7 154796 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 8 154797 -NCIT:C5612 Metastatic Anal Canal Carcinoma 7 154798 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 154799 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 154800 -NCIT:C8637 Metastatic Small Intestinal Carcinoma 6 154801 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 7 154802 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 154803 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 7 154804 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 154805 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 154806 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 154807 -NCIT:C8934 Metastatic Small Intestinal Adenocarcinoma 7 154808 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 154809 -NCIT:C151906 Refractory Digestive System Carcinoma 5 154810 -NCIT:C137857 Refractory Anal Carcinoma 6 154811 -NCIT:C173334 Refractory Anal Canal Squamous Cell Carcinoma 7 154812 -NCIT:C147982 Refractory Colorectal Carcinoma 6 154813 -NCIT:C153351 Refractory Colon Carcinoma 7 154814 -NCIT:C162155 Refractory Colon Adenocarcinoma 8 154815 -NCIT:C162154 Refractory Colorectal Adenocarcinoma 7 154816 -NCIT:C162155 Refractory Colon Adenocarcinoma 8 154817 -NCIT:C162157 Refractory Rectal Adenocarcinoma 8 154818 -NCIT:C162156 Refractory Rectal Carcinoma 7 154819 -NCIT:C162157 Refractory Rectal Adenocarcinoma 8 154820 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 8 154821 -NCIT:C173332 Refractory Microsatellite Stable Colorectal Carcinoma 7 154822 -NCIT:C147996 Refractory Gastric Carcinoma 6 154823 -NCIT:C167074 Refractory Gastric Adenocarcinoma 7 154824 -NCIT:C151904 Refractory Metastatic Digestive System Carcinoma 6 154825 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 7 154826 -NCIT:C153352 Refractory Liver Carcinoma 6 154827 -NCIT:C162450 Refractory Hepatocellular Carcinoma 7 154828 -NCIT:C188887 Refractory Fibrolamellar Carcinoma 8 154829 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 7 154830 -NCIT:C153356 Refractory Small Intestinal Carcinoma 6 154831 -NCIT:C155937 Refractory Digestive System Neuroendocrine Carcinoma 6 154832 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 7 154833 -NCIT:C162538 Refractory Gastroesophageal Junction Adenocarcinoma 6 154834 -NCIT:C171604 Refractory Esophageal Carcinoma 6 154835 -NCIT:C171606 Refractory Esophageal Squamous Cell Carcinoma 7 154836 -NCIT:C176892 Refractory Esophageal Adenocarcinoma 7 154837 -NCIT:C179177 Refractory Appendix Carcinoma 6 154838 -NCIT:C179178 Refractory Appendix Adenocarcinoma 7 154839 -NCIT:C185305 Refractory Pancreatobiliary Carcinoma 6 154840 -NCIT:C142808 Refractory Pancreatic Carcinoma 7 154841 -NCIT:C162015 Refractory Pancreatic Adenocarcinoma 8 154842 -NCIT:C165450 Refractory Pancreatic Ductal Adenocarcinoma 9 154843 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 9 154844 -NCIT:C162750 Refractory Biliary Tract Carcinoma 7 154845 -NCIT:C153355 Refractory Bile Duct Carcinoma 8 154846 -NCIT:C158101 Refractory Cholangiocarcinoma 9 154847 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 10 154848 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 154849 -NCIT:C175437 Refractory Extrahepatic Bile Duct Carcinoma 9 154850 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 154851 -NCIT:C162753 Refractory Gallbladder Carcinoma 8 154852 -NCIT:C175436 Refractory Ampulla of Vater Carcinoma 7 154853 -NCIT:C155903 Unresectable Digestive System Carcinoma 5 154854 -NCIT:C128563 Unresectable Esophageal Carcinoma 6 154855 -NCIT:C171608 Unresectable Esophageal Squamous Cell Carcinoma 7 154856 -NCIT:C173162 Unresectable Esophageal Adenocarcinoma 7 154857 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 154858 -NCIT:C172248 Unresectable Distal Esophagus Adenocarcinoma 8 154859 -NCIT:C129654 Unresectable Digestive System Adenocarcinoma 6 154860 -NCIT:C150578 Unresectable Gastroesophageal Junction Adenocarcinoma 7 154861 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 154862 -NCIT:C154221 Unresectable Gastric Adenocarcinoma 7 154863 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 154864 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 154865 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 154866 -NCIT:C162016 Unresectable Pancreatic Adenocarcinoma 7 154867 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 8 154868 -NCIT:C172245 Unresectable Pancreatic Ductal Adenocarcinoma 8 154869 -NCIT:C165171 Unresectable Liver and Intrahepatic Bile Duct Carcinoma 7 154870 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 8 154871 -NCIT:C27345 Unresectable Hepatocellular Carcinoma 8 154872 -NCIT:C162602 Unresectable Fibrolamellar Carcinoma 9 154873 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 9 154874 -NCIT:C7878 Localized Unresectable Adult Liver Carcinoma 8 154875 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 9 154876 -NCIT:C171585 Unresectable Colorectal Adenocarcinoma 7 154877 -NCIT:C162116 Unresectable Colon Adenocarcinoma 8 154878 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 154879 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 8 154880 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 154881 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 154882 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 154883 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 154884 -NCIT:C173162 Unresectable Esophageal Adenocarcinoma 7 154885 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 154886 -NCIT:C172248 Unresectable Distal Esophagus Adenocarcinoma 8 154887 -NCIT:C175516 Unresectable Small Intestinal Adenocarcinoma 7 154888 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 8 154889 -NCIT:C189064 Unresectable Gallbladder Adenocarcinoma 7 154890 -NCIT:C189065 Unresectable Ampulla of Vater Adenocarcinoma 7 154891 -NCIT:C27324 Unresectable Cholangiocarcinoma 7 154892 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 8 154893 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 8 154894 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 8 154895 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 8 154896 -NCIT:C155935 Unresectable Digestive System Neuroendocrine Carcinoma 6 154897 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 7 154898 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 7 154899 -NCIT:C159775 Unresectable Gastric Carcinoma 6 154900 -NCIT:C154221 Unresectable Gastric Adenocarcinoma 7 154901 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 154902 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 154903 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 154904 -NCIT:C162600 Unresectable Colorectal Carcinoma 6 154905 -NCIT:C171585 Unresectable Colorectal Adenocarcinoma 7 154906 -NCIT:C162116 Unresectable Colon Adenocarcinoma 8 154907 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 154908 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 8 154909 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 154910 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 154911 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 154912 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 154913 -NCIT:C180406 Unresectable Colon Carcinoma 7 154914 -NCIT:C162116 Unresectable Colon Adenocarcinoma 8 154915 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 154916 -NCIT:C165172 Unresectable Ampulla of Vater Carcinoma 6 154917 -NCIT:C189065 Unresectable Ampulla of Vater Adenocarcinoma 7 154918 -NCIT:C172808 Unresectable Digestive System Mixed Adenoneuroendocrine Carcinoma 6 154919 -NCIT:C173156 Unresectable Anal Squamous Cell Carcinoma 6 154920 -NCIT:C175384 Unresectable Anal Canal Squamous Cell Carcinoma 7 154921 -NCIT:C176042 Unresectable Biliary Tract Carcinoma 6 154922 -NCIT:C171322 Unresectable Bile Duct Carcinoma 7 154923 -NCIT:C27324 Unresectable Cholangiocarcinoma 8 154924 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 9 154925 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 9 154926 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 9 154927 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 9 154928 -NCIT:C7892 Unresectable Extrahepatic Bile Duct Carcinoma 8 154929 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 9 154930 -NCIT:C7890 Unresectable Gallbladder Carcinoma 7 154931 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 8 154932 -NCIT:C189064 Unresectable Gallbladder Adenocarcinoma 8 154933 -NCIT:C5018 Unresectable Pancreatic Carcinoma 6 154934 -NCIT:C162016 Unresectable Pancreatic Adenocarcinoma 7 154935 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 8 154936 -NCIT:C172245 Unresectable Pancreatic Ductal Adenocarcinoma 8 154937 -NCIT:C8638 Unresectable Small Intestinal Carcinoma 6 154938 -NCIT:C175516 Unresectable Small Intestinal Adenocarcinoma 7 154939 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 8 154940 -NCIT:C156909 Resectable Digestive System Carcinoma 5 154941 -NCIT:C156910 Resectable Bile Duct Adenocarcinoma 6 154942 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 7 154943 -NCIT:C27326 Resectable Cholangiocarcinoma 7 154944 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 8 154945 -NCIT:C162257 Resectable Colorectal Carcinoma 6 154946 -NCIT:C167237 Resectable Colon Carcinoma 7 154947 -NCIT:C165293 Resectable Liver and Intrahepatic Bile Duct Carcinoma 6 154948 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 7 154949 -NCIT:C7691 Resectable Hepatocellular Carcinoma 7 154950 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 8 154951 -NCIT:C7877 Localized Resectable Adult Liver Carcinoma 7 154952 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 8 154953 -NCIT:C5099 Resectable Pancreatic Carcinoma 6 154954 -NCIT:C156906 Resectable Pancreatic Adenocarcinoma 7 154955 -NCIT:C151995 Resectable Pancreatic Ductal Adenocarcinoma 8 154956 -NCIT:C156907 Resectable Pancreatic Acinar Cell Carcinoma 8 154957 -NCIT:C157350 Borderline Resectable Pancreatic Adenocarcinoma 8 154958 -NCIT:C157348 Borderline Resectable Pancreatic Carcinoma 7 154959 -NCIT:C157350 Borderline Resectable Pancreatic Adenocarcinoma 8 154960 -NCIT:C174566 Resectable Pancreatic Adenosquamous Carcinoma 7 154961 -NCIT:C8639 Resectable Small Intestinal Carcinoma 6 154962 -NCIT:C27323 Resectable Duodenal Carcinoma 7 154963 -NCIT:C169108 Resectable Periampullary Adenocarcinoma 8 154964 -NCIT:C8640 Resectable Extrahepatic Bile Duct Carcinoma 6 154965 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 7 154966 -NCIT:C166418 Pancreatobiliary Carcinoma 5 154967 -NCIT:C156781 Biliary Tract Carcinoma 6 154968 -NCIT:C156782 Recurrent Biliary Tract Carcinoma 7 154969 -NCIT:C153360 Recurrent Bile Duct Carcinoma 8 154970 -NCIT:C27325 Recurrent Cholangiocarcinoma 9 154971 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 10 154972 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 10 154973 -NCIT:C7893 Recurrent Extrahepatic Bile Duct Carcinoma 9 154974 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 10 154975 -NCIT:C4008 Recurrent Gallbladder Carcinoma 8 154976 -NCIT:C162750 Refractory Biliary Tract Carcinoma 7 154977 -NCIT:C153355 Refractory Bile Duct Carcinoma 8 154978 -NCIT:C158101 Refractory Cholangiocarcinoma 9 154979 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 10 154980 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 154981 -NCIT:C175437 Refractory Extrahepatic Bile Duct Carcinoma 9 154982 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 154983 -NCIT:C162753 Refractory Gallbladder Carcinoma 8 154984 -NCIT:C162751 Metastatic Biliary Tract Carcinoma 7 154985 -NCIT:C142869 Metastatic Bile Duct Carcinoma 8 154986 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 154987 -NCIT:C162752 Advanced Cholangiocarcinoma 10 154988 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 154989 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 154990 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 154991 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 154992 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 154993 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 154994 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 154995 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 154996 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 154997 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 154998 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 154999 -NCIT:C157623 Metastatic Cholangiocarcinoma 9 155000 -NCIT:C162752 Advanced Cholangiocarcinoma 10 155001 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 155002 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 155003 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 155004 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 155005 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 155006 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 155007 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 10 155008 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 155009 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 10 155010 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 155011 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 155012 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 10 155013 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 155014 -NCIT:C185071 Metastatic Extrahepatic Bile Duct Carcinoma 9 155015 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 10 155016 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 11 155017 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 155018 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 155019 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 155020 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 155021 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 155022 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 155023 -NCIT:C162754 Metastatic Gallbladder Carcinoma 8 155024 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 155025 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 155026 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 155027 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 8 155028 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 155029 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 155030 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 155031 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 155032 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 155033 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 155034 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 155035 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 155036 -NCIT:C171331 Advanced Biliary Tract Carcinoma 8 155037 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 155038 -NCIT:C162752 Advanced Cholangiocarcinoma 10 155039 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 155040 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 155041 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 155042 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 155043 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 155044 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 155045 -NCIT:C176042 Unresectable Biliary Tract Carcinoma 7 155046 -NCIT:C171322 Unresectable Bile Duct Carcinoma 8 155047 -NCIT:C27324 Unresectable Cholangiocarcinoma 9 155048 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 10 155049 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 10 155050 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 10 155051 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 10 155052 -NCIT:C7892 Unresectable Extrahepatic Bile Duct Carcinoma 9 155053 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 10 155054 -NCIT:C7890 Unresectable Gallbladder Carcinoma 8 155055 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 9 155056 -NCIT:C189064 Unresectable Gallbladder Adenocarcinoma 9 155057 -NCIT:C27814 Bile Duct Carcinoma 7 155058 -NCIT:C142869 Metastatic Bile Duct Carcinoma 8 155059 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 155060 -NCIT:C162752 Advanced Cholangiocarcinoma 10 155061 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 155062 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 155063 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 155064 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 155065 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 155066 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 155067 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 155068 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 155069 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 155070 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 155071 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 155072 -NCIT:C157623 Metastatic Cholangiocarcinoma 9 155073 -NCIT:C162752 Advanced Cholangiocarcinoma 10 155074 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 155075 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 155076 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 155077 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 155078 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 155079 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 155080 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 10 155081 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 155082 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 10 155083 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 155084 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 155085 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 10 155086 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 155087 -NCIT:C185071 Metastatic Extrahepatic Bile Duct Carcinoma 9 155088 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 10 155089 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 11 155090 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 155091 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 155092 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 155093 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 155094 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 155095 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 155096 -NCIT:C153355 Refractory Bile Duct Carcinoma 8 155097 -NCIT:C158101 Refractory Cholangiocarcinoma 9 155098 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 10 155099 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 155100 -NCIT:C175437 Refractory Extrahepatic Bile Duct Carcinoma 9 155101 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 155102 -NCIT:C153360 Recurrent Bile Duct Carcinoma 8 155103 -NCIT:C27325 Recurrent Cholangiocarcinoma 9 155104 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 10 155105 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 10 155106 -NCIT:C7893 Recurrent Extrahepatic Bile Duct Carcinoma 9 155107 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 10 155108 -NCIT:C171322 Unresectable Bile Duct Carcinoma 8 155109 -NCIT:C27324 Unresectable Cholangiocarcinoma 9 155110 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 10 155111 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 10 155112 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 10 155113 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 10 155114 -NCIT:C7892 Unresectable Extrahepatic Bile Duct Carcinoma 9 155115 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 10 155116 -NCIT:C27813 Bile Duct Adenocarcinoma 8 155117 -NCIT:C156910 Resectable Bile Duct Adenocarcinoma 9 155118 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 10 155119 -NCIT:C27326 Resectable Cholangiocarcinoma 10 155120 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 11 155121 -NCIT:C4130 Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 9 155122 -NCIT:C96946 Extrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 10 155123 -NCIT:C96947 Intrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 10 155124 -NCIT:C4436 Cholangiocarcinoma 9 155125 -NCIT:C157623 Metastatic Cholangiocarcinoma 10 155126 -NCIT:C162752 Advanced Cholangiocarcinoma 11 155127 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 155128 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 155129 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 155130 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 11 155131 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 155132 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 12 155133 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 11 155134 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 155135 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 11 155136 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 155137 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 155138 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 11 155139 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 155140 -NCIT:C158101 Refractory Cholangiocarcinoma 10 155141 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 11 155142 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 11 155143 -NCIT:C27324 Unresectable Cholangiocarcinoma 10 155144 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 11 155145 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 11 155146 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 11 155147 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 155148 -NCIT:C27325 Recurrent Cholangiocarcinoma 10 155149 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 11 155150 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 11 155151 -NCIT:C27326 Resectable Cholangiocarcinoma 10 155152 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 11 155153 -NCIT:C27769 Opisthorchis Viverrini-Related Cholangiocarcinoma 10 155154 -NCIT:C35417 Intrahepatic Cholangiocarcinoma 10 155155 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 11 155156 -NCIT:C134514 Intrahepatic Cholangiocarcinoma by AJCC v7 Stage 11 155157 -NCIT:C88049 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v7 12 155158 -NCIT:C88050 Stage I Intrahepatic Cholangiocarcinoma AJCC v7 12 155159 -NCIT:C88051 Stage II Intrahepatic Cholangiocarcinoma AJCC v7 12 155160 -NCIT:C88052 Stage III Intrahepatic Cholangiocarcinoma AJCC v7 12 155161 -NCIT:C88053 Stage IVA Intrahepatic Cholangiocarcinoma AJCC v7 12 155162 -NCIT:C88054 Stage IVB Intrahepatic Cholangiocarcinoma AJCC v7 12 155163 -NCIT:C134755 Intrahepatic Cholangiocarcinoma by AJCC v8 Stage 11 155164 -NCIT:C134756 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v8 12 155165 -NCIT:C134757 Stage I Intrahepatic Cholangiocarcinoma AJCC v8 12 155166 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 13 155167 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 13 155168 -NCIT:C134760 Stage II Intrahepatic Cholangiocarcinoma AJCC v8 12 155169 -NCIT:C134761 Stage III Intrahepatic Cholangiocarcinoma AJCC v8 12 155170 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 13 155171 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 13 155172 -NCIT:C134764 Stage IV Intrahepatic Cholangiocarcinoma AJCC v8 12 155173 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 11 155174 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 11 155175 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 11 155176 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 155177 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 155178 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 11 155179 -NCIT:C41617 Cholangiolocellular Carcinoma 11 155180 -NCIT:C41618 Mucin-Producing Intrahepatic Cholangiocarcinoma 11 155181 -NCIT:C41619 Signet Ring Cell Intrahepatic Cholangiocarcinoma 11 155182 -NCIT:C41620 Sarcomatoid Intrahepatic Cholangiocarcinoma 11 155183 -NCIT:C43848 Clear Cell Intrahepatic Cholangiocarcinoma 11 155184 -NCIT:C96804 Large Duct Intrahepatic Cholangiocarcinoma 11 155185 -NCIT:C96805 Small Duct Intrahepatic Cholangiocarcinoma 11 155186 -NCIT:C96949 Intrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 11 155187 -NCIT:C36077 Hilar Cholangiocarcinoma 10 155188 -NCIT:C134742 Hilar Cholangiocarcinoma by AJCC v7 Stage 11 155189 -NCIT:C88058 Stage 0 Hilar Cholangiocarcinoma AJCC v7 12 155190 -NCIT:C88059 Stage I Hilar Cholangiocarcinoma AJCC v7 12 155191 -NCIT:C88060 Stage II Hilar Cholangiocarcinoma AJCC v7 12 155192 -NCIT:C88061 Stage IIIA Hilar Cholangiocarcinoma AJCC v7 12 155193 -NCIT:C88062 Stage IIIB Hilar Cholangiocarcinoma AJCC v7 12 155194 -NCIT:C88063 Stage IVA Hilar Cholangiocarcinoma AJCC v7 12 155195 -NCIT:C88064 Stage IVB Hilar Cholangiocarcinoma AJCC v7 12 155196 -NCIT:C134743 Hilar Cholangiocarcinoma by AJCC v8 Stage 11 155197 -NCIT:C134744 Stage 0 Hilar Cholangiocarcinoma AJCC v8 12 155198 -NCIT:C134745 Stage I Hilar Cholangiocarcinoma AJCC v8 12 155199 -NCIT:C134746 Stage II Hilar Cholangiocarcinoma AJCC v8 12 155200 -NCIT:C134747 Stage III Hilar Cholangiocarcinoma AJCC v8 12 155201 -NCIT:C134748 Stage IIIA Hilar Cholangiocarcinoma AJCC v8 13 155202 -NCIT:C134749 Stage IIIB Hilar Cholangiocarcinoma AJCC v8 13 155203 -NCIT:C134750 Stage IIIC Hilar Cholangiocarcinoma AJCC v8 13 155204 -NCIT:C134751 Stage IV Hilar Cholangiocarcinoma AJCC v8 12 155205 -NCIT:C134752 Stage IVA Hilar Cholangiocarcinoma AJCC v8 13 155206 -NCIT:C134753 Stage IVB Hilar Cholangiocarcinoma AJCC v8 13 155207 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 11 155208 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 11 155209 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 155210 -NCIT:C7976 Distal Bile Duct Adenocarcinoma 10 155211 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 11 155212 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 11 155213 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 155214 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 11 155215 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 11 155216 -NCIT:C8265 Adult Cholangiocarcinoma 10 155217 -NCIT:C7975 Extrahepatic Bile Duct Adenocarcinoma 9 155218 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 10 155219 -NCIT:C5775 Extrahepatic Bile Duct Clear Cell Adenocarcinoma 10 155220 -NCIT:C5776 Extrahepatic Bile Duct Signet Ring Cell Carcinoma 10 155221 -NCIT:C5846 Extrahepatic Bile Duct Mucinous Adenocarcinoma 10 155222 -NCIT:C7976 Distal Bile Duct Adenocarcinoma 10 155223 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 11 155224 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 11 155225 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 155226 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 11 155227 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 11 155228 -NCIT:C96936 Extrahepatic Bile Duct Adenocarcinoma, Biliary Type 10 155229 -NCIT:C96937 Extrahepatic Bile Duct Adenocarcinoma, Gastric Foveolar Type 10 155230 -NCIT:C96938 Extrahepatic Bile Duct Adenocarcinoma, Intestinal Type 10 155231 -NCIT:C96946 Extrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 10 155232 -NCIT:C96948 Extrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 10 155233 -NCIT:C96810 Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 9 155234 -NCIT:C96948 Extrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 10 155235 -NCIT:C96949 Intrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 10 155236 -NCIT:C3860 Extrahepatic Bile Duct Carcinoma 8 155237 -NCIT:C175437 Refractory Extrahepatic Bile Duct Carcinoma 9 155238 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 155239 -NCIT:C185071 Metastatic Extrahepatic Bile Duct Carcinoma 9 155240 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 10 155241 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 11 155242 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 155243 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 155244 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 155245 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 155246 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 155247 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 155248 -NCIT:C5777 Extrahepatic Bile Duct Squamous Cell Carcinoma 9 155249 -NCIT:C5778 Extrahepatic Bile Duct Adenosquamous Carcinoma 9 155250 -NCIT:C5780 Extrahepatic Bile Duct Undifferentiated Carcinoma 9 155251 -NCIT:C5862 Extrahepatic Bile Duct Mucoepidermoid Carcinoma 9 155252 -NCIT:C7109 Distal Bile Duct Carcinoma 9 155253 -NCIT:C134810 Distal Bile Duct Cancer by AJCC v7 Stage 10 155254 -NCIT:C88089 Stage 0 Distal Bile Duct Cancer AJCC v7 11 155255 -NCIT:C88090 Stage IA Distal Bile Duct Cancer AJCC v7 11 155256 -NCIT:C88091 Stage IB Distal Bile Duct Cancer AJCC v7 11 155257 -NCIT:C88092 Stage IIA Distal Bile Duct Cancer AJCC v7 11 155258 -NCIT:C88093 Stage IIB Distal Bile Duct Cancer AJCC v7 11 155259 -NCIT:C88094 Stage III Distal Bile Duct Cancer AJCC v7 11 155260 -NCIT:C88095 Stage IV Distal Bile Duct Cancer AJCC v7 11 155261 -NCIT:C134811 Distal Bile Duct Cancer by AJCC v8 Stage 10 155262 -NCIT:C134812 Stage 0 Distal Bile Duct Cancer AJCC v8 11 155263 -NCIT:C134813 Stage I Distal Bile Duct Cancer AJCC v8 11 155264 -NCIT:C134814 Stage II Distal Bile Duct Cancer AJCC v8 11 155265 -NCIT:C134815 Stage IIA Distal Bile Duct Cancer AJCC v8 12 155266 -NCIT:C134816 Stage IIB Distal Bile Duct Cancer AJCC v8 12 155267 -NCIT:C134817 Stage III Distal Bile Duct Cancer AJCC v8 11 155268 -NCIT:C134818 Stage IIIA Distal Bile Duct Cancer AJCC v8 12 155269 -NCIT:C134819 Stage IIIB Distal Bile Duct Cancer AJCC v8 12 155270 -NCIT:C134820 Stage IV Distal Bile Duct Cancer AJCC v8 11 155271 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 10 155272 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 11 155273 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 155274 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 155275 -NCIT:C7976 Distal Bile Duct Adenocarcinoma 10 155276 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 11 155277 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 11 155278 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 155279 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 11 155280 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 11 155281 -NCIT:C7891 Localized Extrahepatic Bile Duct Carcinoma 9 155282 -NCIT:C7892 Unresectable Extrahepatic Bile Duct Carcinoma 9 155283 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 10 155284 -NCIT:C7893 Recurrent Extrahepatic Bile Duct Carcinoma 9 155285 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 10 155286 -NCIT:C7975 Extrahepatic Bile Duct Adenocarcinoma 9 155287 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 10 155288 -NCIT:C5775 Extrahepatic Bile Duct Clear Cell Adenocarcinoma 10 155289 -NCIT:C5776 Extrahepatic Bile Duct Signet Ring Cell Carcinoma 10 155290 -NCIT:C5846 Extrahepatic Bile Duct Mucinous Adenocarcinoma 10 155291 -NCIT:C7976 Distal Bile Duct Adenocarcinoma 10 155292 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 11 155293 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 11 155294 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 155295 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 11 155296 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 11 155297 -NCIT:C96936 Extrahepatic Bile Duct Adenocarcinoma, Biliary Type 10 155298 -NCIT:C96937 Extrahepatic Bile Duct Adenocarcinoma, Gastric Foveolar Type 10 155299 -NCIT:C96938 Extrahepatic Bile Duct Adenocarcinoma, Intestinal Type 10 155300 -NCIT:C96946 Extrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 10 155301 -NCIT:C96948 Extrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 10 155302 -NCIT:C8640 Resectable Extrahepatic Bile Duct Carcinoma 9 155303 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 10 155304 -NCIT:C96939 Extrahepatic Bile Duct Carcinosarcoma 9 155305 -NCIT:C96956 Extrahepatic Bile Duct Neuroendocrine Carcinoma 9 155306 -NCIT:C5845 Extrahepatic Bile Duct Small Cell Neuroendocrine Carcinoma 10 155307 -NCIT:C96958 Extrahepatic Bile Duct Large Cell Neuroendocrine Carcinoma 10 155308 -NCIT:C96959 Extrahepatic Bile Duct Mixed Adenoneuroendocrine Carcinoma 9 155309 -NCIT:C3844 Gallbladder Carcinoma 7 155310 -NCIT:C134660 Gallbladder Cancer by AJCC v8 Stage 8 155311 -NCIT:C134663 Stage 0 Gallbladder Cancer AJCC v8 9 155312 -NCIT:C134665 Stage I Gallbladder Cancer AJCC v8 9 155313 -NCIT:C134667 Stage II Gallbladder Cancer AJCC v8 9 155314 -NCIT:C134670 Stage IIA Gallbladder Cancer AJCC v8 10 155315 -NCIT:C134671 Stage IIB Gallbladder Cancer AJCC v8 10 155316 -NCIT:C134672 Stage III Gallbladder Cancer AJCC v8 9 155317 -NCIT:C134673 Stage IIIA Gallbladder Cancer AJCC v8 10 155318 -NCIT:C134674 Stage IIIB Gallbladder Cancer AJCC v8 10 155319 -NCIT:C134675 Stage IV Gallbladder Cancer AJCC v8 9 155320 -NCIT:C134676 Stage IVA Gallbladder Cancer AJCC v8 10 155321 -NCIT:C134678 Stage IVB Gallbladder Cancer AJCC v8 10 155322 -NCIT:C162753 Refractory Gallbladder Carcinoma 8 155323 -NCIT:C162754 Metastatic Gallbladder Carcinoma 8 155324 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 155325 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 155326 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 155327 -NCIT:C175214 Incidental Gallbladder Carcinoma 8 155328 -NCIT:C4008 Recurrent Gallbladder Carcinoma 8 155329 -NCIT:C7356 Gallbladder Adenosquamous Carcinoma 8 155330 -NCIT:C7649 Localized Gallbladder Carcinoma 8 155331 -NCIT:C7890 Unresectable Gallbladder Carcinoma 8 155332 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 9 155333 -NCIT:C189064 Unresectable Gallbladder Adenocarcinoma 9 155334 -NCIT:C90512 Gallbladder Cancer by AJCC v6 Stage 8 155335 -NCIT:C4439 Stage 0 Gallbladder Cancer AJCC v6 and v7 9 155336 -NCIT:C5737 Stage I Gallbladder Cancer AJCC v6 9 155337 -NCIT:C5738 Stage II Gallbladder Cancer AJCC v6 9 155338 -NCIT:C5739 Stage III Gallbladder Cancer AJCC v6 9 155339 -NCIT:C5740 Stage IV Gallbladder Cancer AJCC v6 9 155340 -NCIT:C91229 Gallbladder Cancer by AJCC v7 Stage 8 155341 -NCIT:C4439 Stage 0 Gallbladder Cancer AJCC v6 and v7 9 155342 -NCIT:C90216 Stage I Gallbladder Cancer AJCC v7 9 155343 -NCIT:C90217 Stage II Gallbladder Cancer AJCC v7 9 155344 -NCIT:C90218 Stage III Gallbladder Cancer AJCC v7 9 155345 -NCIT:C88056 Stage IIIA Gallbladder Cancer AJCC v7 10 155346 -NCIT:C88057 Stage IIIB Gallbladder Cancer AJCC v7 10 155347 -NCIT:C90219 Stage IV Gallbladder Cancer AJCC v7 9 155348 -NCIT:C5741 Stage IVA Gallbladder Cancer AJCC v7 10 155349 -NCIT:C5742 Stage IVB Gallbladder Cancer AJCC v7 10 155350 -NCIT:C9166 Gallbladder Adenocarcinoma 8 155351 -NCIT:C189064 Unresectable Gallbladder Adenocarcinoma 9 155352 -NCIT:C43604 Gallbladder Adenocarcinoma, Intestinal-Type 9 155353 -NCIT:C43605 Gallbladder Clear Cell Adenocarcinoma 9 155354 -NCIT:C5743 Gallbladder Intracholecystic Papillary Neoplasm with an Associated Invasive Carcinoma 9 155355 -NCIT:C5744 Gallbladder Mucinous Adenocarcinoma 9 155356 -NCIT:C5745 Gallbladder Signet Ring Cell Carcinoma 9 155357 -NCIT:C9169 Gallbladder Adenocarcinoma with Squamous Metaplasia 9 155358 -NCIT:C96887 Gallbladder Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 9 155359 -NCIT:C96890 Gallbladder Hepatoid Adenocarcinoma 9 155360 -NCIT:C96891 Gallbladder Cribriform Carcinoma 9 155361 -NCIT:C96915 Gallbladder Adenocarcinoma, Biliary Type 9 155362 -NCIT:C96916 Gallbladder Adenocarcinoma, Gastric Foveolar Type 9 155363 -NCIT:C9167 Gallbladder Undifferentiated Carcinoma 8 155364 -NCIT:C5838 Gallbladder Undifferentiated Carcinoma, Spindle and Giant Cell Type 9 155365 -NCIT:C9170 Gallbladder Squamous Cell Carcinoma 8 155366 -NCIT:C96888 Gallbladder Carcinosarcoma 8 155367 -NCIT:C96919 Gallbladder Neuroendocrine Carcinoma 8 155368 -NCIT:C6763 Gallbladder Small Cell Neuroendocrine Carcinoma 9 155369 -NCIT:C96921 Gallbladder Large Cell Neuroendocrine Carcinoma 9 155370 -NCIT:C96927 Gallbladder Mixed Adenoneuroendocrine Carcinoma 8 155371 -NCIT:C96928 Gallbladder Goblet Cell Carcinoid 9 155372 -NCIT:C67493 High-Grade Biliary Intraepithelial Neoplasia 7 155373 -NCIT:C170458 Metastatic Pancreatobiliary Carcinoma 6 155374 -NCIT:C156069 Metastatic Pancreatic Carcinoma 7 155375 -NCIT:C165452 Advanced Pancreatic Carcinoma 8 155376 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 155377 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 155378 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 8 155379 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 155380 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 155381 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 155382 -NCIT:C190770 Metastatic Pancreatic Adenosquamous Carcinoma 8 155383 -NCIT:C190771 Metastatic Pancreatic Squamous Cell Carcinoma 8 155384 -NCIT:C8933 Metastatic Pancreatic Adenocarcinoma 8 155385 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 155386 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 155387 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 155388 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 9 155389 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 155390 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 155391 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 10 155392 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 155393 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 155394 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 9 155395 -NCIT:C162751 Metastatic Biliary Tract Carcinoma 7 155396 -NCIT:C142869 Metastatic Bile Duct Carcinoma 8 155397 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 155398 -NCIT:C162752 Advanced Cholangiocarcinoma 10 155399 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 155400 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 155401 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 155402 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 155403 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 155404 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 155405 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 155406 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 155407 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 155408 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 155409 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 155410 -NCIT:C157623 Metastatic Cholangiocarcinoma 9 155411 -NCIT:C162752 Advanced Cholangiocarcinoma 10 155412 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 155413 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 155414 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 155415 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 155416 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 155417 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 155418 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 10 155419 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 155420 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 10 155421 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 155422 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 155423 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 10 155424 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 155425 -NCIT:C185071 Metastatic Extrahepatic Bile Duct Carcinoma 9 155426 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 10 155427 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 11 155428 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 155429 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 155430 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 155431 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 155432 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 155433 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 155434 -NCIT:C162754 Metastatic Gallbladder Carcinoma 8 155435 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 155436 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 155437 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 155438 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 8 155439 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 155440 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 155441 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 155442 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 155443 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 155444 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 155445 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 155446 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 155447 -NCIT:C171331 Advanced Biliary Tract Carcinoma 8 155448 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 155449 -NCIT:C162752 Advanced Cholangiocarcinoma 10 155450 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 155451 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 155452 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 155453 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 155454 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 155455 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 155456 -NCIT:C170459 Locally Advanced Pancreatobiliary Carcinoma 7 155457 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 8 155458 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 155459 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 155460 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 155461 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 155462 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 155463 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 155464 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 155465 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 155466 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 8 155467 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 155468 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 155469 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 155470 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 8 155471 -NCIT:C171326 Metastatic Ampulla of Vater Carcinoma 7 155472 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 8 155473 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 8 155474 -NCIT:C171330 Advanced Pancreatobiliary Carcinoma 7 155475 -NCIT:C165452 Advanced Pancreatic Carcinoma 8 155476 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 155477 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 155478 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 8 155479 -NCIT:C171331 Advanced Biliary Tract Carcinoma 8 155480 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 155481 -NCIT:C162752 Advanced Cholangiocarcinoma 10 155482 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 155483 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 155484 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 155485 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 155486 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 155487 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 155488 -NCIT:C185305 Refractory Pancreatobiliary Carcinoma 6 155489 -NCIT:C142808 Refractory Pancreatic Carcinoma 7 155490 -NCIT:C162015 Refractory Pancreatic Adenocarcinoma 8 155491 -NCIT:C165450 Refractory Pancreatic Ductal Adenocarcinoma 9 155492 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 9 155493 -NCIT:C162750 Refractory Biliary Tract Carcinoma 7 155494 -NCIT:C153355 Refractory Bile Duct Carcinoma 8 155495 -NCIT:C158101 Refractory Cholangiocarcinoma 9 155496 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 10 155497 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 155498 -NCIT:C175437 Refractory Extrahepatic Bile Duct Carcinoma 9 155499 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 155500 -NCIT:C162753 Refractory Gallbladder Carcinoma 8 155501 -NCIT:C175436 Refractory Ampulla of Vater Carcinoma 7 155502 -NCIT:C3850 Pancreatic Carcinoma 6 155503 -NCIT:C134902 Pancreatic Cancer by AJCC v6 and v7 Stage 7 155504 -NCIT:C5711 Stage IV Pancreatic Cancer AJCC v6 and v7 8 155505 -NCIT:C5729 Stage 0 Pancreatic Cancer AJCC v6 and v7 8 155506 -NCIT:C7785 Stage I Pancreatic Cancer AJCC v6 and v7 8 155507 -NCIT:C88100 Stage IA Pancreatic Cancer AJCC v6 and v7 9 155508 -NCIT:C88101 Stage IB Pancreatic Cancer AJCC v6 and v7 9 155509 -NCIT:C7786 Stage II Pancreatic Cancer AJCC v6 and v7 8 155510 -NCIT:C88102 Stage IIA Pancreatic Cancer AJCC v6 and v7 9 155511 -NCIT:C88103 Stage IIB Pancreatic Cancer AJCC v6 and v7 9 155512 -NCIT:C7787 Stage III Pancreatic Cancer AJCC v6 and v7 8 155513 -NCIT:C134909 Pancreatic Cancer by AJCC v8 Stage 7 155514 -NCIT:C134914 Stage 0 Pancreatic Cancer AJCC v8 8 155515 -NCIT:C134915 Stage I Pancreatic Cancer AJCC v8 8 155516 -NCIT:C134917 Stage IA Pancreatic Cancer AJCC v8 9 155517 -NCIT:C134920 Stage IB Pancreatic Cancer AJCC v8 9 155518 -NCIT:C134921 Stage II Pancreatic Cancer AJCC v8 8 155519 -NCIT:C134925 Stage IIA Pancreatic Cancer AJCC v8 9 155520 -NCIT:C134927 Stage IIB Pancreatic Cancer AJCC v8 9 155521 -NCIT:C134928 Stage III Pancreatic Cancer AJCC v8 8 155522 -NCIT:C134930 Stage IV Pancreatic Cancer AJCC v8 8 155523 -NCIT:C142808 Refractory Pancreatic Carcinoma 7 155524 -NCIT:C162015 Refractory Pancreatic Adenocarcinoma 8 155525 -NCIT:C165450 Refractory Pancreatic Ductal Adenocarcinoma 9 155526 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 9 155527 -NCIT:C156069 Metastatic Pancreatic Carcinoma 7 155528 -NCIT:C165452 Advanced Pancreatic Carcinoma 8 155529 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 155530 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 155531 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 8 155532 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 155533 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 155534 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 155535 -NCIT:C190770 Metastatic Pancreatic Adenosquamous Carcinoma 8 155536 -NCIT:C190771 Metastatic Pancreatic Squamous Cell Carcinoma 8 155537 -NCIT:C8933 Metastatic Pancreatic Adenocarcinoma 8 155538 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 155539 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 155540 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 155541 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 9 155542 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 155543 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 155544 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 10 155545 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 155546 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 155547 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 9 155548 -NCIT:C173813 Pancreatic Squamous Cell Carcinoma 7 155549 -NCIT:C190771 Metastatic Pancreatic Squamous Cell Carcinoma 8 155550 -NCIT:C43298 Hereditary Pancreatic Carcinoma 7 155551 -NCIT:C45843 Pancreatic Mixed Adenoneuroendocrine Carcinoma 7 155552 -NCIT:C6878 Pancreatic Mixed Acinar-Neuroendocrine Carcinoma 8 155553 -NCIT:C6879 Pancreatic Mixed Ductal-Neuroendocrine Carcinoma 8 155554 -NCIT:C95460 Pancreatic Mixed Acinar-Ductal Neuroendocrine Carcinoma 8 155555 -NCIT:C5018 Unresectable Pancreatic Carcinoma 7 155556 -NCIT:C162016 Unresectable Pancreatic Adenocarcinoma 8 155557 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 9 155558 -NCIT:C172245 Unresectable Pancreatic Ductal Adenocarcinoma 9 155559 -NCIT:C5099 Resectable Pancreatic Carcinoma 7 155560 -NCIT:C156906 Resectable Pancreatic Adenocarcinoma 8 155561 -NCIT:C151995 Resectable Pancreatic Ductal Adenocarcinoma 9 155562 -NCIT:C156907 Resectable Pancreatic Acinar Cell Carcinoma 9 155563 -NCIT:C157350 Borderline Resectable Pancreatic Adenocarcinoma 9 155564 -NCIT:C157348 Borderline Resectable Pancreatic Carcinoma 8 155565 -NCIT:C157350 Borderline Resectable Pancreatic Adenocarcinoma 9 155566 -NCIT:C174566 Resectable Pancreatic Adenosquamous Carcinoma 8 155567 -NCIT:C5721 Pancreatic Adenosquamous Carcinoma 7 155568 -NCIT:C174566 Resectable Pancreatic Adenosquamous Carcinoma 8 155569 -NCIT:C190770 Metastatic Pancreatic Adenosquamous Carcinoma 8 155570 -NCIT:C7626 Recurrent Pancreatic Carcinoma 7 155571 -NCIT:C155742 Recurrent Pancreatic Adenocarcinoma 8 155572 -NCIT:C153569 Recurrent Pancreatic Acinar Cell Carcinoma 9 155573 -NCIT:C153619 Recurrent Pancreatic Ductal Adenocarcinoma 9 155574 -NCIT:C153620 Recurrent Pancreatic Cystadenocarcinoma 9 155575 -NCIT:C8294 Pancreatic Adenocarcinoma 7 155576 -NCIT:C155742 Recurrent Pancreatic Adenocarcinoma 8 155577 -NCIT:C153569 Recurrent Pancreatic Acinar Cell Carcinoma 9 155578 -NCIT:C153619 Recurrent Pancreatic Ductal Adenocarcinoma 9 155579 -NCIT:C153620 Recurrent Pancreatic Cystadenocarcinoma 9 155580 -NCIT:C156906 Resectable Pancreatic Adenocarcinoma 8 155581 -NCIT:C151995 Resectable Pancreatic Ductal Adenocarcinoma 9 155582 -NCIT:C156907 Resectable Pancreatic Acinar Cell Carcinoma 9 155583 -NCIT:C157350 Borderline Resectable Pancreatic Adenocarcinoma 9 155584 -NCIT:C162015 Refractory Pancreatic Adenocarcinoma 8 155585 -NCIT:C165450 Refractory Pancreatic Ductal Adenocarcinoma 9 155586 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 9 155587 -NCIT:C162016 Unresectable Pancreatic Adenocarcinoma 8 155588 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 9 155589 -NCIT:C172245 Unresectable Pancreatic Ductal Adenocarcinoma 9 155590 -NCIT:C169041 Localized Pancreatic Adenocarcinoma 8 155591 -NCIT:C189009 Localized Pancreatic Ductal Adenocarcinoma 9 155592 -NCIT:C172813 Invasive Pancreatic Micropapillary Adenocarcinoma 8 155593 -NCIT:C3874 Pancreatic Cystadenocarcinoma 8 155594 -NCIT:C153620 Recurrent Pancreatic Cystadenocarcinoma 9 155595 -NCIT:C5724 Pancreatic Serous Cystadenocarcinoma 9 155596 -NCIT:C5727 Pancreatic Acinar Cell Cystadenocarcinoma 9 155597 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 10 155598 -NCIT:C5726 Pancreatic Intraductal Papillary-Mucinous Neoplasm with an Associated Invasive Carcinoma 8 155599 -NCIT:C7977 Pancreatic Acinar Cell Carcinoma 8 155600 -NCIT:C153569 Recurrent Pancreatic Acinar Cell Carcinoma 9 155601 -NCIT:C156907 Resectable Pancreatic Acinar Cell Carcinoma 9 155602 -NCIT:C190024 Childhood Pancreatic Acinar Cell Carcinoma 9 155603 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 10 155604 -NCIT:C5727 Pancreatic Acinar Cell Cystadenocarcinoma 9 155605 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 10 155606 -NCIT:C8933 Metastatic Pancreatic Adenocarcinoma 8 155607 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 155608 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 155609 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 155610 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 9 155611 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 155612 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 155613 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 10 155614 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 155615 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 155616 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 9 155617 -NCIT:C9120 Pancreatic Ductal Adenocarcinoma 8 155618 -NCIT:C151995 Resectable Pancreatic Ductal Adenocarcinoma 9 155619 -NCIT:C153619 Recurrent Pancreatic Ductal Adenocarcinoma 9 155620 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 9 155621 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 155622 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 155623 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 10 155624 -NCIT:C158961 Early Stage Pancreatic Ductal Adenocarcinoma 9 155625 -NCIT:C165450 Refractory Pancreatic Ductal Adenocarcinoma 9 155626 -NCIT:C172245 Unresectable Pancreatic Ductal Adenocarcinoma 9 155627 -NCIT:C172811 Pancreatic Poorly Cohesive Adenocarcinoma 9 155628 -NCIT:C5720 Pancreatic Signet Ring Cell Carcinoma 10 155629 -NCIT:C189009 Localized Pancreatic Ductal Adenocarcinoma 9 155630 -NCIT:C37214 Pancreatic Colloid Carcinoma 9 155631 -NCIT:C37256 Pancreatic Foamy Gland Adenocarcinoma 9 155632 -NCIT:C5722 Pancreatic Undifferentiated Carcinoma 9 155633 -NCIT:C172812 Pancreatic Undifferentiated Carcinoma with Rhabdoid Cells 10 155634 -NCIT:C5723 Pancreatic Undifferentiated Carcinoma with Osteoclast-Like Giant Cells 10 155635 -NCIT:C95426 Pancreatic Well Differentiated Ductal Adenocarcinoma 9 155636 -NCIT:C95427 Pancreatic Moderately Differentiated Ductal Adenocarcinoma 9 155637 -NCIT:C95428 Pancreatic Poorly Differentiated Ductal Adenocarcinoma 9 155638 -NCIT:C95465 Pancreatic Hepatoid Adenocarcinoma 9 155639 -NCIT:C95466 Pancreatic Medullary Carcinoma 9 155640 -NCIT:C95458 Pancreatic Mixed Acinar-Ductal Carcinoma 8 155641 -NCIT:C95507 Pancreatic Intraductal Tubulopapillary Neoplasm with an Associated Invasive Carcinoma 8 155642 -NCIT:C3908 Ampulla of Vater Carcinoma 6 155643 -NCIT:C134863 Ampulla of Vater Cancer by AJCC v7 Stage 7 155644 -NCIT:C4444 Stage 0 Ampulla of Vater Cancer AJCC v7 8 155645 -NCIT:C6651 Stage I Ampulla of Vater Cancer AJCC v7 8 155646 -NCIT:C88096 Stage IA Ampulla of Vater Cancer AJCC v7 9 155647 -NCIT:C88097 Stage IB Ampulla of Vater Cancer AJCC v7 9 155648 -NCIT:C6652 Stage II Ampulla of Vater Cancer AJCC v7 8 155649 -NCIT:C88098 Stage IIA Ampulla of Vater Cancer AJCC v7 9 155650 -NCIT:C88099 Stage IIB Ampulla of Vater Cancer AJCC v7 9 155651 -NCIT:C6653 Stage III Ampulla of Vater Cancer AJCC v7 8 155652 -NCIT:C6654 Stage IV Ampulla of Vater Cancer AJCC v7 8 155653 -NCIT:C134864 Ampulla of Vater Cancer by AJCC v8 Stage 7 155654 -NCIT:C134865 Stage 0 Ampulla of Vater Cancer AJCC v8 8 155655 -NCIT:C134866 Stage I Ampulla of Vater Cancer AJCC v8 8 155656 -NCIT:C134867 Stage IA Ampulla of Vater Cancer AJCC v8 9 155657 -NCIT:C134868 Stage IB Ampulla of Vater Cancer AJCC v8 9 155658 -NCIT:C134869 Stage II Ampulla of Vater Cancer AJCC v8 8 155659 -NCIT:C134870 Stage IIA Ampulla of Vater Cancer AJCC v8 9 155660 -NCIT:C134871 Stage IIB Ampulla of Vater Cancer AJCC v8 9 155661 -NCIT:C134872 Stage III Ampulla of Vater Cancer AJCC v8 8 155662 -NCIT:C134873 Stage IIIA Ampulla of Vater Cancer AJCC v8 9 155663 -NCIT:C134874 Stage IIIB Ampulla of Vater Cancer AJCC v8 9 155664 -NCIT:C134875 Stage IV Ampulla of Vater Cancer AJCC v8 8 155665 -NCIT:C165172 Unresectable Ampulla of Vater Carcinoma 7 155666 -NCIT:C189065 Unresectable Ampulla of Vater Adenocarcinoma 8 155667 -NCIT:C171326 Metastatic Ampulla of Vater Carcinoma 7 155668 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 8 155669 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 8 155670 -NCIT:C175436 Refractory Ampulla of Vater Carcinoma 7 155671 -NCIT:C27417 Ampulla of Vater Squamous Cell Carcinoma 7 155672 -NCIT:C27418 Ampulla of Vater Adenosquamous Carcinoma 7 155673 -NCIT:C27419 Ampulla of Vater Undifferentiated Carcinoma 7 155674 -NCIT:C95965 Ampulla of Vater Undifferentiated Carcinoma with Osteoclast-Like Giant Cells 8 155675 -NCIT:C6650 Ampulla of Vater Adenocarcinoma 7 155676 -NCIT:C153574 Recurrent Ampulla of Vater Adenocarcinoma 8 155677 -NCIT:C189065 Unresectable Ampulla of Vater Adenocarcinoma 8 155678 -NCIT:C27414 Ampulla of Vater Clear Cell Adenocarcinoma 8 155679 -NCIT:C27415 Ampulla of Vater Intestinal-Type Adenocarcinoma 8 155680 -NCIT:C27416 Ampulla of Vater Mucinous Adenocarcinoma 8 155681 -NCIT:C6656 Ampulla of Vater Signet Ring Cell Carcinoma 8 155682 -NCIT:C95963 Ampulla of Vater Pancreatobiliary Type Adenocarcinoma 8 155683 -NCIT:C95966 Ampulla of Vater Hepatoid Adenocarcinoma 8 155684 -NCIT:C95967 Ampulla of Vater Invasive Papillary Adenocarcinoma 8 155685 -NCIT:C95984 Ampulla of Vater Neuroendocrine Carcinoma 7 155686 -NCIT:C6655 Ampulla of Vater Small Cell Neuroendocrine Carcinoma 8 155687 -NCIT:C95985 Ampulla of Vater Large Cell Neuroendocrine Carcinoma 8 155688 -NCIT:C95986 Ampulla of Vater Mixed Adenoneuroendocrine Carcinoma 7 155689 -NCIT:C2955 Colorectal Carcinoma 5 155690 -NCIT:C118808 Childhood Colorectal Carcinoma 6 155691 -NCIT:C118823 Childhood Rectal Carcinoma 7 155692 -NCIT:C134180 Colorectal Cancer by AJCC v8 Stage 6 155693 -NCIT:C134182 Stage 0 Colorectal Cancer AJCC v8 7 155694 -NCIT:C134271 Stage 0 Colon Cancer AJCC v8 8 155695 -NCIT:C134291 Stage 0 Rectal Cancer AJCC v8 8 155696 -NCIT:C134185 Stage I Colorectal Cancer AJCC v8 7 155697 -NCIT:C134273 Stage I Colon Cancer AJCC v8 8 155698 -NCIT:C134292 Stage I Rectal Cancer AJCC v8 8 155699 -NCIT:C134186 Stage II Colorectal Cancer AJCC v8 7 155700 -NCIT:C134187 Stage IIA Colorectal Cancer AJCC v8 8 155701 -NCIT:C134280 Stage IIA Colon Cancer AJCC v8 9 155702 -NCIT:C134294 Stage IIA Rectal Cancer AJCC v8 9 155703 -NCIT:C134188 Stage IIB Colorectal Cancer AJCC v8 8 155704 -NCIT:C134281 Stage IIB Colon Cancer AJCC v8 9 155705 -NCIT:C134295 Stage IIB Rectal Cancer AJCC v8 9 155706 -NCIT:C134190 Stage IIC Colorectal Cancer AJCC v8 8 155707 -NCIT:C134282 Stage IIC Colon Cancer AJCC v8 9 155708 -NCIT:C134296 Stage IIC Rectal Cancer AJCC v8 9 155709 -NCIT:C134274 Stage II Colon Cancer AJCC v8 8 155710 -NCIT:C134280 Stage IIA Colon Cancer AJCC v8 9 155711 -NCIT:C134281 Stage IIB Colon Cancer AJCC v8 9 155712 -NCIT:C134282 Stage IIC Colon Cancer AJCC v8 9 155713 -NCIT:C134293 Stage II Rectal Cancer AJCC v8 8 155714 -NCIT:C134294 Stage IIA Rectal Cancer AJCC v8 9 155715 -NCIT:C134295 Stage IIB Rectal Cancer AJCC v8 9 155716 -NCIT:C134296 Stage IIC Rectal Cancer AJCC v8 9 155717 -NCIT:C134191 Stage III Colorectal Cancer AJCC v8 7 155718 -NCIT:C134192 Stage IIIA Colorectal Cancer AJCC v8 8 155719 -NCIT:C134284 Stage IIIA Colon Cancer AJCC v8 9 155720 -NCIT:C134298 Stage IIIA Rectal Cancer AJCC v8 9 155721 -NCIT:C134193 Stage IIIB Colorectal Cancer AJCC v8 8 155722 -NCIT:C134285 Stage IIIB Colon Cancer AJCC v8 9 155723 -NCIT:C134299 Stage IIIB Rectal Cancer AJCC v8 9 155724 -NCIT:C134194 Stage IIIC Colorectal Cancer AJCC v8 8 155725 -NCIT:C134286 Stage IIIC Colon Cancer AJCC v8 9 155726 -NCIT:C134300 Stage IIIC Rectal Cancer AJCC v8 9 155727 -NCIT:C134283 Stage III Colon Cancer AJCC v8 8 155728 -NCIT:C134284 Stage IIIA Colon Cancer AJCC v8 9 155729 -NCIT:C134285 Stage IIIB Colon Cancer AJCC v8 9 155730 -NCIT:C134286 Stage IIIC Colon Cancer AJCC v8 9 155731 -NCIT:C134297 Stage III Rectal Cancer AJCC v8 8 155732 -NCIT:C134298 Stage IIIA Rectal Cancer AJCC v8 9 155733 -NCIT:C134299 Stage IIIB Rectal Cancer AJCC v8 9 155734 -NCIT:C134300 Stage IIIC Rectal Cancer AJCC v8 9 155735 -NCIT:C134195 Stage IV Colorectal Cancer AJCC v8 7 155736 -NCIT:C134196 Stage IVA Colorectal Cancer AJCC v8 8 155737 -NCIT:C134288 Stage IVA Colon Cancer AJCC v8 9 155738 -NCIT:C134302 Stage IVA Rectal Cancer AJCC v8 9 155739 -NCIT:C134197 Stage IVB Colorectal Cancer AJCC v8 8 155740 -NCIT:C134289 Stage IVB Colon Cancer AJCC v8 9 155741 -NCIT:C134303 Stage IVB Rectal Cancer AJCC v8 9 155742 -NCIT:C134198 Stage IVC Colorectal Cancer AJCC v8 8 155743 -NCIT:C134290 Stage IVC Colon Cancer AJCC v8 9 155744 -NCIT:C134304 Stage IVC Rectal Cancer AJCC v8 9 155745 -NCIT:C134287 Stage IV Colon Cancer AJCC v8 8 155746 -NCIT:C134288 Stage IVA Colon Cancer AJCC v8 9 155747 -NCIT:C134289 Stage IVB Colon Cancer AJCC v8 9 155748 -NCIT:C134290 Stage IVC Colon Cancer AJCC v8 9 155749 -NCIT:C134301 Stage IV Rectal Cancer AJCC v8 8 155750 -NCIT:C134302 Stage IVA Rectal Cancer AJCC v8 9 155751 -NCIT:C134303 Stage IVB Rectal Cancer AJCC v8 9 155752 -NCIT:C134304 Stage IVC Rectal Cancer AJCC v8 9 155753 -NCIT:C134251 Colon Cancer by AJCC v8 Stage 7 155754 -NCIT:C134271 Stage 0 Colon Cancer AJCC v8 8 155755 -NCIT:C134273 Stage I Colon Cancer AJCC v8 8 155756 -NCIT:C134274 Stage II Colon Cancer AJCC v8 8 155757 -NCIT:C134280 Stage IIA Colon Cancer AJCC v8 9 155758 -NCIT:C134281 Stage IIB Colon Cancer AJCC v8 9 155759 -NCIT:C134282 Stage IIC Colon Cancer AJCC v8 9 155760 -NCIT:C134283 Stage III Colon Cancer AJCC v8 8 155761 -NCIT:C134284 Stage IIIA Colon Cancer AJCC v8 9 155762 -NCIT:C134285 Stage IIIB Colon Cancer AJCC v8 9 155763 -NCIT:C134286 Stage IIIC Colon Cancer AJCC v8 9 155764 -NCIT:C134287 Stage IV Colon Cancer AJCC v8 8 155765 -NCIT:C134288 Stage IVA Colon Cancer AJCC v8 9 155766 -NCIT:C134289 Stage IVB Colon Cancer AJCC v8 9 155767 -NCIT:C134290 Stage IVC Colon Cancer AJCC v8 9 155768 -NCIT:C134258 Rectal Cancer by AJCC v8 Stage 7 155769 -NCIT:C134291 Stage 0 Rectal Cancer AJCC v8 8 155770 -NCIT:C134292 Stage I Rectal Cancer AJCC v8 8 155771 -NCIT:C134293 Stage II Rectal Cancer AJCC v8 8 155772 -NCIT:C134294 Stage IIA Rectal Cancer AJCC v8 9 155773 -NCIT:C134295 Stage IIB Rectal Cancer AJCC v8 9 155774 -NCIT:C134296 Stage IIC Rectal Cancer AJCC v8 9 155775 -NCIT:C134297 Stage III Rectal Cancer AJCC v8 8 155776 -NCIT:C134298 Stage IIIA Rectal Cancer AJCC v8 9 155777 -NCIT:C134299 Stage IIIB Rectal Cancer AJCC v8 9 155778 -NCIT:C134300 Stage IIIC Rectal Cancer AJCC v8 9 155779 -NCIT:C134301 Stage IV Rectal Cancer AJCC v8 8 155780 -NCIT:C134302 Stage IVA Rectal Cancer AJCC v8 9 155781 -NCIT:C134303 Stage IVB Rectal Cancer AJCC v8 9 155782 -NCIT:C134304 Stage IVC Rectal Cancer AJCC v8 9 155783 -NCIT:C147982 Refractory Colorectal Carcinoma 6 155784 -NCIT:C153351 Refractory Colon Carcinoma 7 155785 -NCIT:C162155 Refractory Colon Adenocarcinoma 8 155786 -NCIT:C162154 Refractory Colorectal Adenocarcinoma 7 155787 -NCIT:C162155 Refractory Colon Adenocarcinoma 8 155788 -NCIT:C162157 Refractory Rectal Adenocarcinoma 8 155789 -NCIT:C162156 Refractory Rectal Carcinoma 7 155790 -NCIT:C162157 Refractory Rectal Adenocarcinoma 8 155791 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 8 155792 -NCIT:C173332 Refractory Microsatellite Stable Colorectal Carcinoma 7 155793 -NCIT:C156096 Metastatic Colorectal Carcinoma 6 155794 -NCIT:C142867 Metastatic Microsatellite Stable Colorectal Carcinoma 7 155795 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 8 155796 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 8 155797 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 155798 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 8 155799 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 155800 -NCIT:C153224 Colorectal Carcinoma Metastatic in the Lung 7 155801 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 8 155802 -NCIT:C156097 Metastatic Colon Carcinoma 7 155803 -NCIT:C160819 Metastatic Colon Adenocarcinoma 8 155804 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 155805 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 155806 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 155807 -NCIT:C167238 Advanced Colon Carcinoma 8 155808 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 155809 -NCIT:C170910 Locally Advanced Colon Carcinoma 8 155810 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 155811 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 155812 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 155813 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 8 155814 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 155815 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 8 155816 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 8 155817 -NCIT:C156098 Metastatic Rectal Carcinoma 7 155818 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 8 155819 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 8 155820 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 155821 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 155822 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 155823 -NCIT:C170777 Advanced Rectal Carcinoma 8 155824 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 155825 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 155826 -NCIT:C170778 Locally Advanced Rectal Carcinoma 8 155827 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 155828 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 155829 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 155830 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 8 155831 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 155832 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 155833 -NCIT:C157366 Colorectal Carcinoma Metastatic in the Liver 7 155834 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 8 155835 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 8 155836 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 8 155837 -NCIT:C161048 Metastatic Colorectal Adenocarcinoma 7 155838 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 8 155839 -NCIT:C160819 Metastatic Colon Adenocarcinoma 8 155840 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 155841 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 155842 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 155843 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 8 155844 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 155845 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 155846 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 155847 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 8 155848 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 155849 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 155850 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 155851 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 155852 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 155853 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 155854 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 155855 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 155856 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 155857 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 155858 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 155859 -NCIT:C162475 Advanced Colorectal Carcinoma 7 155860 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 8 155861 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 155862 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 155863 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 155864 -NCIT:C167238 Advanced Colon Carcinoma 8 155865 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 155866 -NCIT:C170777 Advanced Rectal Carcinoma 8 155867 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 155868 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 155869 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 7 155870 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 8 155871 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 155872 -NCIT:C170778 Locally Advanced Rectal Carcinoma 8 155873 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 155874 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 155875 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 155876 -NCIT:C170910 Locally Advanced Colon Carcinoma 8 155877 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 155878 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 155879 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 155880 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 155881 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 155882 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 155883 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 155884 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 155885 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 155886 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 155887 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 155888 -NCIT:C185165 Oligometastatic Colorectal Carcinoma 7 155889 -NCIT:C162256 Hypermutated Colorectal Carcinoma 6 155890 -NCIT:C162257 Resectable Colorectal Carcinoma 6 155891 -NCIT:C167237 Resectable Colon Carcinoma 7 155892 -NCIT:C162600 Unresectable Colorectal Carcinoma 6 155893 -NCIT:C171585 Unresectable Colorectal Adenocarcinoma 7 155894 -NCIT:C162116 Unresectable Colon Adenocarcinoma 8 155895 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 155896 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 8 155897 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 155898 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 155899 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 155900 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 155901 -NCIT:C180406 Unresectable Colon Carcinoma 7 155902 -NCIT:C162116 Unresectable Colon Adenocarcinoma 8 155903 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 155904 -NCIT:C173324 Microsatellite Stable Colorectal Carcinoma 6 155905 -NCIT:C142867 Metastatic Microsatellite Stable Colorectal Carcinoma 7 155906 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 8 155907 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 8 155908 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 155909 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 8 155910 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 155911 -NCIT:C173332 Refractory Microsatellite Stable Colorectal Carcinoma 7 155912 -NCIT:C177776 Microsatellite Stable Rectal Carcinoma 7 155913 -NCIT:C177777 Microsatellite Stable Colon Carcinoma 7 155914 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 8 155915 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 155916 -NCIT:C190679 Recurrent Microsatellite Stable Colorectal Carcinoma 7 155917 -NCIT:C43588 Colorectal Squamous Cell Carcinoma 6 155918 -NCIT:C5490 Colon Squamous Cell Carcinoma 7 155919 -NCIT:C5554 Rectal Squamous Cell Carcinoma 7 155920 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 8 155921 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 155922 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 155923 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 8 155924 -NCIT:C5555 Rectal Cloacogenic Carcinoma 8 155925 -NCIT:C43589 Colorectal Adenosquamous Carcinoma 6 155926 -NCIT:C43594 Rectal Adenosquamous Carcinoma 7 155927 -NCIT:C5491 Colon Adenosquamous Carcinoma 7 155928 -NCIT:C43591 Colorectal Undifferentiated Carcinoma 6 155929 -NCIT:C7100 Colon Undifferentiated Carcinoma 7 155930 -NCIT:C7974 Rectal Undifferentiated Carcinoma 7 155931 -NCIT:C4910 Colon Carcinoma 6 155932 -NCIT:C134251 Colon Cancer by AJCC v8 Stage 7 155933 -NCIT:C134271 Stage 0 Colon Cancer AJCC v8 8 155934 -NCIT:C134273 Stage I Colon Cancer AJCC v8 8 155935 -NCIT:C134274 Stage II Colon Cancer AJCC v8 8 155936 -NCIT:C134280 Stage IIA Colon Cancer AJCC v8 9 155937 -NCIT:C134281 Stage IIB Colon Cancer AJCC v8 9 155938 -NCIT:C134282 Stage IIC Colon Cancer AJCC v8 9 155939 -NCIT:C134283 Stage III Colon Cancer AJCC v8 8 155940 -NCIT:C134284 Stage IIIA Colon Cancer AJCC v8 9 155941 -NCIT:C134285 Stage IIIB Colon Cancer AJCC v8 9 155942 -NCIT:C134286 Stage IIIC Colon Cancer AJCC v8 9 155943 -NCIT:C134287 Stage IV Colon Cancer AJCC v8 8 155944 -NCIT:C134288 Stage IVA Colon Cancer AJCC v8 9 155945 -NCIT:C134289 Stage IVB Colon Cancer AJCC v8 9 155946 -NCIT:C134290 Stage IVC Colon Cancer AJCC v8 9 155947 -NCIT:C153351 Refractory Colon Carcinoma 7 155948 -NCIT:C162155 Refractory Colon Adenocarcinoma 8 155949 -NCIT:C156097 Metastatic Colon Carcinoma 7 155950 -NCIT:C160819 Metastatic Colon Adenocarcinoma 8 155951 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 155952 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 155953 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 155954 -NCIT:C167238 Advanced Colon Carcinoma 8 155955 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 155956 -NCIT:C170910 Locally Advanced Colon Carcinoma 8 155957 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 155958 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 155959 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 155960 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 8 155961 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 155962 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 8 155963 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 8 155964 -NCIT:C164228 Hereditary Colon Carcinoma 7 155965 -NCIT:C167237 Resectable Colon Carcinoma 7 155966 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 7 155967 -NCIT:C177680 Sigmoid Colon Carcinoma 7 155968 -NCIT:C177777 Microsatellite Stable Colon Carcinoma 7 155969 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 8 155970 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 155971 -NCIT:C180406 Unresectable Colon Carcinoma 7 155972 -NCIT:C162116 Unresectable Colon Adenocarcinoma 8 155973 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 155974 -NCIT:C3491 Cecum Carcinoma 7 155975 -NCIT:C4594 Cecum Carcinoma In Situ 8 155976 -NCIT:C5543 Cecum Adenocarcinoma 8 155977 -NCIT:C3998 Recurrent Colon Carcinoma 7 155978 -NCIT:C162442 Recurrent Colon Adenocarcinoma 8 155979 -NCIT:C4349 Colon Adenocarcinoma 7 155980 -NCIT:C160819 Metastatic Colon Adenocarcinoma 8 155981 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 155982 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 155983 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 155984 -NCIT:C162116 Unresectable Colon Adenocarcinoma 8 155985 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 155986 -NCIT:C162155 Refractory Colon Adenocarcinoma 8 155987 -NCIT:C162442 Recurrent Colon Adenocarcinoma 8 155988 -NCIT:C38760 Submucosal Invasive Colon Adenocarcinoma 8 155989 -NCIT:C45429 Colon Intramucosal Adenocarcinoma 8 155990 -NCIT:C27413 Adenoma of the Colon with Intramucosal Adenocarcinoma 9 155991 -NCIT:C5543 Cecum Adenocarcinoma 8 155992 -NCIT:C60641 Colon Medullary Carcinoma 8 155993 -NCIT:C7966 Colon Mucinous Adenocarcinoma 8 155994 -NCIT:C7967 Colon Signet Ring Cell Adenocarcinoma 8 155995 -NCIT:C9452 Grade 1 Colon Adenocarcinoma 8 155996 -NCIT:C9453 Grade 2 Colon Adenocarcinoma 8 155997 -NCIT:C9454 Grade 3 Colon Adenocarcinoma 8 155998 -NCIT:C96486 Colon Serrated Adenocarcinoma 8 155999 -NCIT:C96489 Colon Cribriform Comedo-Type Adenocarcinoma 8 156000 -NCIT:C96492 Colon Micropapillary Adenocarcinoma 8 156001 -NCIT:C5490 Colon Squamous Cell Carcinoma 7 156002 -NCIT:C5491 Colon Adenosquamous Carcinoma 7 156003 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 7 156004 -NCIT:C7100 Colon Undifferentiated Carcinoma 7 156005 -NCIT:C90507 Colon Cancer by AJCC v6 Stage 7 156006 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 8 156007 -NCIT:C4594 Cecum Carcinoma In Situ 9 156008 -NCIT:C3993 Stage II Colon Cancer AJCC v6 8 156009 -NCIT:C3994 Stage IV Colon Cancer AJCC v6 8 156010 -NCIT:C7766 Stage III Colon Cancer AJCC v6 8 156011 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 8 156012 -NCIT:C91224 Colon Cancer by AJCC v7 Stage 7 156013 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 8 156014 -NCIT:C4594 Cecum Carcinoma In Situ 9 156015 -NCIT:C89990 Stage II Colon Cancer AJCC v7 8 156016 -NCIT:C115041 Stage IIA Colon Cancer AJCC v7 9 156017 -NCIT:C115042 Stage IIB Colon Cancer AJCC v7 9 156018 -NCIT:C115043 Stage IIC Colon Cancer AJCC v7 9 156019 -NCIT:C89995 Stage III Colon Cancer AJCC v7 8 156020 -NCIT:C115047 Stage IIIA Colon Cancer AJCC v7 9 156021 -NCIT:C115048 Stage IIIB Colon Cancer AJCC v7 9 156022 -NCIT:C115049 Stage IIIC Colon Cancer AJCC v7 9 156023 -NCIT:C89999 Stage IV Colon Cancer AJCC v7 8 156024 -NCIT:C115053 Stage IVA Colon Cancer AJCC v7 9 156025 -NCIT:C115054 Stage IVB Colon Cancer AJCC v7 9 156026 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 8 156027 -NCIT:C5105 Colorectal Adenocarcinoma 6 156028 -NCIT:C161048 Metastatic Colorectal Adenocarcinoma 7 156029 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 8 156030 -NCIT:C160819 Metastatic Colon Adenocarcinoma 8 156031 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 156032 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 156033 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 156034 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 8 156035 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 156036 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 156037 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 156038 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 8 156039 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 156040 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 156041 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 156042 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 156043 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 156044 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 156045 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 156046 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 156047 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 156048 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 156049 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 156050 -NCIT:C162154 Refractory Colorectal Adenocarcinoma 7 156051 -NCIT:C162155 Refractory Colon Adenocarcinoma 8 156052 -NCIT:C162157 Refractory Rectal Adenocarcinoma 8 156053 -NCIT:C162441 Recurrent Colorectal Adenocarcinoma 7 156054 -NCIT:C162442 Recurrent Colon Adenocarcinoma 8 156055 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 8 156056 -NCIT:C171585 Unresectable Colorectal Adenocarcinoma 7 156057 -NCIT:C162116 Unresectable Colon Adenocarcinoma 8 156058 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 156059 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 8 156060 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 156061 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 156062 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 156063 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 156064 -NCIT:C172694 Colorectal Poorly Cohesive Adenocarcinoma 7 156065 -NCIT:C43586 Colorectal Signet Ring Cell Carcinoma 8 156066 -NCIT:C43593 Rectosigmoid Signet Ring Cell Carcinoma 9 156067 -NCIT:C7967 Colon Signet Ring Cell Adenocarcinoma 9 156068 -NCIT:C9168 Rectal Signet Ring Cell Adenocarcinoma 9 156069 -NCIT:C172699 Colorectal Adenoma-Like Adenocarcinoma 7 156070 -NCIT:C172700 Inflammatory Bowel Disease-Associated Colorectal Adenocarcinoma 7 156071 -NCIT:C96496 Ulcerative Colitis-Associated Colorectal Adenocarcinoma 8 156072 -NCIT:C96497 Crohn Disease-Associated Colorectal Adenocarcinoma 8 156073 -NCIT:C4349 Colon Adenocarcinoma 7 156074 -NCIT:C160819 Metastatic Colon Adenocarcinoma 8 156075 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 156076 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 156077 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 156078 -NCIT:C162116 Unresectable Colon Adenocarcinoma 8 156079 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 156080 -NCIT:C162155 Refractory Colon Adenocarcinoma 8 156081 -NCIT:C162442 Recurrent Colon Adenocarcinoma 8 156082 -NCIT:C38760 Submucosal Invasive Colon Adenocarcinoma 8 156083 -NCIT:C45429 Colon Intramucosal Adenocarcinoma 8 156084 -NCIT:C27413 Adenoma of the Colon with Intramucosal Adenocarcinoma 9 156085 -NCIT:C5543 Cecum Adenocarcinoma 8 156086 -NCIT:C60641 Colon Medullary Carcinoma 8 156087 -NCIT:C7966 Colon Mucinous Adenocarcinoma 8 156088 -NCIT:C7967 Colon Signet Ring Cell Adenocarcinoma 8 156089 -NCIT:C9452 Grade 1 Colon Adenocarcinoma 8 156090 -NCIT:C9453 Grade 2 Colon Adenocarcinoma 8 156091 -NCIT:C9454 Grade 3 Colon Adenocarcinoma 8 156092 -NCIT:C96486 Colon Serrated Adenocarcinoma 8 156093 -NCIT:C96489 Colon Cribriform Comedo-Type Adenocarcinoma 8 156094 -NCIT:C96492 Colon Micropapillary Adenocarcinoma 8 156095 -NCIT:C43584 Rectosigmoid Adenocarcinoma 7 156096 -NCIT:C43592 Rectosigmoid Mucinous Adenocarcinoma 8 156097 -NCIT:C43593 Rectosigmoid Signet Ring Cell Carcinoma 8 156098 -NCIT:C43585 Colorectal Mucinous Adenocarcinoma 7 156099 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 8 156100 -NCIT:C43592 Rectosigmoid Mucinous Adenocarcinoma 8 156101 -NCIT:C7966 Colon Mucinous Adenocarcinoma 8 156102 -NCIT:C7973 Rectal Mucinous Adenocarcinoma 8 156103 -NCIT:C43590 Colorectal Medullary Carcinoma 7 156104 -NCIT:C60640 Rectal Medullary Carcinoma 8 156105 -NCIT:C60641 Colon Medullary Carcinoma 8 156106 -NCIT:C9383 Rectal Adenocarcinoma 7 156107 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 8 156108 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 156109 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 156110 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 156111 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 8 156112 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 156113 -NCIT:C162157 Refractory Rectal Adenocarcinoma 8 156114 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 8 156115 -NCIT:C60640 Rectal Medullary Carcinoma 8 156116 -NCIT:C7973 Rectal Mucinous Adenocarcinoma 8 156117 -NCIT:C9168 Rectal Signet Ring Cell Adenocarcinoma 8 156118 -NCIT:C9449 Grade 3 Rectal Adenocarcinoma 8 156119 -NCIT:C9450 Grade 2 Rectal Adenocarcinoma 8 156120 -NCIT:C9451 Grade 1 Rectal Adenocarcinoma 8 156121 -NCIT:C96487 Rectal Serrated Adenocarcinoma 8 156122 -NCIT:C96490 Rectal Cribriform Comedo-Type Adenocarcinoma 8 156123 -NCIT:C96493 Rectal Micropapillary Adenocarcinoma 8 156124 -NCIT:C9446 Grade 1 Colorectal Adenocarcinoma 7 156125 -NCIT:C9451 Grade 1 Rectal Adenocarcinoma 8 156126 -NCIT:C9452 Grade 1 Colon Adenocarcinoma 8 156127 -NCIT:C9447 Grade 2 Colorectal Adenocarcinoma 7 156128 -NCIT:C9450 Grade 2 Rectal Adenocarcinoma 8 156129 -NCIT:C9453 Grade 2 Colon Adenocarcinoma 8 156130 -NCIT:C9448 Grade 3 Colorectal Adenocarcinoma 7 156131 -NCIT:C9449 Grade 3 Rectal Adenocarcinoma 8 156132 -NCIT:C9454 Grade 3 Colon Adenocarcinoma 8 156133 -NCIT:C96485 Colorectal Serrated Adenocarcinoma 7 156134 -NCIT:C96486 Colon Serrated Adenocarcinoma 8 156135 -NCIT:C96487 Rectal Serrated Adenocarcinoma 8 156136 -NCIT:C96488 Colorectal Cribriform Comedo-Type Adenocarcinoma 7 156137 -NCIT:C96489 Colon Cribriform Comedo-Type Adenocarcinoma 8 156138 -NCIT:C96490 Rectal Cribriform Comedo-Type Adenocarcinoma 8 156139 -NCIT:C96491 Colorectal Micropapillary Adenocarcinoma 7 156140 -NCIT:C96492 Colon Micropapillary Adenocarcinoma 8 156141 -NCIT:C96493 Rectal Micropapillary Adenocarcinoma 8 156142 -NCIT:C7421 Rectosigmoid Carcinoma 6 156143 -NCIT:C43584 Rectosigmoid Adenocarcinoma 7 156144 -NCIT:C43592 Rectosigmoid Mucinous Adenocarcinoma 8 156145 -NCIT:C43593 Rectosigmoid Signet Ring Cell Carcinoma 8 156146 -NCIT:C8634 Recurrent Rectosigmoid Carcinoma 7 156147 -NCIT:C90509 Rectosigmoid Cancer by AJCC v6 Stage 7 156148 -NCIT:C5015 Stage II Rectosigmoid Cancer AJCC v6 8 156149 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 8 156150 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 8 156151 -NCIT:C8635 Stage III Rectosigmoid Cancer AJCC v6 8 156152 -NCIT:C8636 Stage IV Rectosigmoid Cancer AJCC v6 8 156153 -NCIT:C91226 Rectosigmoid Cancer by AJCC v7 Stage 7 156154 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 8 156155 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 8 156156 -NCIT:C89992 Stage II Rectosigmoid Cancer AJCC v7 8 156157 -NCIT:C89997 Stage III Rectosigmoid Cancer AJCC v7 8 156158 -NCIT:C90019 Stage IV Rectosigmoid Cancer AJCC v7 8 156159 -NCIT:C8625 Recurrent Colorectal Carcinoma 6 156160 -NCIT:C162441 Recurrent Colorectal Adenocarcinoma 7 156161 -NCIT:C162442 Recurrent Colon Adenocarcinoma 8 156162 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 8 156163 -NCIT:C190199 Locally Recurrent Colorectal Carcinoma 7 156164 -NCIT:C190679 Recurrent Microsatellite Stable Colorectal Carcinoma 7 156165 -NCIT:C3998 Recurrent Colon Carcinoma 7 156166 -NCIT:C162442 Recurrent Colon Adenocarcinoma 8 156167 -NCIT:C8634 Recurrent Rectosigmoid Carcinoma 7 156168 -NCIT:C9238 Recurrent Rectal Carcinoma 7 156169 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 8 156170 -NCIT:C90506 Colorectal Cancer by AJCC v6 Stage 6 156171 -NCIT:C8513 Stage I Colorectal Cancer AJCC v6 and v7 7 156172 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 8 156173 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 8 156174 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 8 156175 -NCIT:C8514 Stage II Colorectal Cancer AJCC v6 7 156176 -NCIT:C3993 Stage II Colon Cancer AJCC v6 8 156177 -NCIT:C5015 Stage II Rectosigmoid Cancer AJCC v6 8 156178 -NCIT:C7791 Stage II Rectal Cancer AJCC v6 8 156179 -NCIT:C8515 Stage III Colorectal Cancer AJCC v6 7 156180 -NCIT:C7766 Stage III Colon Cancer AJCC v6 8 156181 -NCIT:C7792 Stage III Rectal Cancer AJCC v6 8 156182 -NCIT:C8635 Stage III Rectosigmoid Cancer AJCC v6 8 156183 -NCIT:C8516 Stage IV Colorectal Cancer AJCC v6 7 156184 -NCIT:C3994 Stage IV Colon Cancer AJCC v6 8 156185 -NCIT:C8412 Stage IV Rectal Cancer AJCC v6 8 156186 -NCIT:C8636 Stage IV Rectosigmoid Cancer AJCC v6 8 156187 -NCIT:C8932 Stage 0 Colorectal Cancer AJCC v6 and v7 7 156188 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 8 156189 -NCIT:C4594 Cecum Carcinoma In Situ 9 156190 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 8 156191 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 8 156192 -NCIT:C90507 Colon Cancer by AJCC v6 Stage 7 156193 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 8 156194 -NCIT:C4594 Cecum Carcinoma In Situ 9 156195 -NCIT:C3993 Stage II Colon Cancer AJCC v6 8 156196 -NCIT:C3994 Stage IV Colon Cancer AJCC v6 8 156197 -NCIT:C7766 Stage III Colon Cancer AJCC v6 8 156198 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 8 156199 -NCIT:C90508 Rectal Cancer by AJCC v6 Stage 7 156200 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 8 156201 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 8 156202 -NCIT:C7791 Stage II Rectal Cancer AJCC v6 8 156203 -NCIT:C7792 Stage III Rectal Cancer AJCC v6 8 156204 -NCIT:C8412 Stage IV Rectal Cancer AJCC v6 8 156205 -NCIT:C90509 Rectosigmoid Cancer by AJCC v6 Stage 7 156206 -NCIT:C5015 Stage II Rectosigmoid Cancer AJCC v6 8 156207 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 8 156208 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 8 156209 -NCIT:C8635 Stage III Rectosigmoid Cancer AJCC v6 8 156210 -NCIT:C8636 Stage IV Rectosigmoid Cancer AJCC v6 8 156211 -NCIT:C91223 Colorectal Cancer by AJCC v7 Stage 6 156212 -NCIT:C8513 Stage I Colorectal Cancer AJCC v6 and v7 7 156213 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 8 156214 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 8 156215 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 8 156216 -NCIT:C8932 Stage 0 Colorectal Cancer AJCC v6 and v7 7 156217 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 8 156218 -NCIT:C4594 Cecum Carcinoma In Situ 9 156219 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 8 156220 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 8 156221 -NCIT:C89989 Stage II Colorectal Cancer AJCC v7 7 156222 -NCIT:C87813 Stage IIA Colorectal Cancer AJCC v7 8 156223 -NCIT:C115041 Stage IIA Colon Cancer AJCC v7 9 156224 -NCIT:C115044 Stage IIA Rectal Cancer AJCC v7 9 156225 -NCIT:C87814 Stage IIB Colorectal Cancer AJCC v7 8 156226 -NCIT:C115042 Stage IIB Colon Cancer AJCC v7 9 156227 -NCIT:C115045 Stage IIB Rectal Cancer AJCC v7 9 156228 -NCIT:C87815 Stage IIC Colorectal Cancer AJCC v7 8 156229 -NCIT:C115043 Stage IIC Colon Cancer AJCC v7 9 156230 -NCIT:C115046 Stage IIC Rectal Cancer AJCC v7 9 156231 -NCIT:C89990 Stage II Colon Cancer AJCC v7 8 156232 -NCIT:C115041 Stage IIA Colon Cancer AJCC v7 9 156233 -NCIT:C115042 Stage IIB Colon Cancer AJCC v7 9 156234 -NCIT:C115043 Stage IIC Colon Cancer AJCC v7 9 156235 -NCIT:C89991 Stage II Rectal Cancer AJCC v7 8 156236 -NCIT:C115044 Stage IIA Rectal Cancer AJCC v7 9 156237 -NCIT:C115045 Stage IIB Rectal Cancer AJCC v7 9 156238 -NCIT:C115046 Stage IIC Rectal Cancer AJCC v7 9 156239 -NCIT:C89992 Stage II Rectosigmoid Cancer AJCC v7 8 156240 -NCIT:C89994 Stage III Colorectal Cancer AJCC v7 7 156241 -NCIT:C87816 Stage IIIA Colorectal Cancer AJCC v7 8 156242 -NCIT:C115047 Stage IIIA Colon Cancer AJCC v7 9 156243 -NCIT:C115050 Stage IIIA Rectal Cancer AJCC v7 9 156244 -NCIT:C87817 Stage IIIB Colorectal Cancer AJCC v7 8 156245 -NCIT:C115048 Stage IIIB Colon Cancer AJCC v7 9 156246 -NCIT:C115051 Stage IIIB Rectal Cancer AJCC v7 9 156247 -NCIT:C87818 Stage IIIC Colorectal Cancer AJCC v7 8 156248 -NCIT:C115049 Stage IIIC Colon Cancer AJCC v7 9 156249 -NCIT:C115052 Stage IIIC Rectal Cancer AJCC v7 9 156250 -NCIT:C89995 Stage III Colon Cancer AJCC v7 8 156251 -NCIT:C115047 Stage IIIA Colon Cancer AJCC v7 9 156252 -NCIT:C115048 Stage IIIB Colon Cancer AJCC v7 9 156253 -NCIT:C115049 Stage IIIC Colon Cancer AJCC v7 9 156254 -NCIT:C89996 Stage III Rectal Cancer AJCC v7 8 156255 -NCIT:C115050 Stage IIIA Rectal Cancer AJCC v7 9 156256 -NCIT:C115051 Stage IIIB Rectal Cancer AJCC v7 9 156257 -NCIT:C115052 Stage IIIC Rectal Cancer AJCC v7 9 156258 -NCIT:C89997 Stage III Rectosigmoid Cancer AJCC v7 8 156259 -NCIT:C89998 Stage IV Colorectal Cancer AJCC v7 7 156260 -NCIT:C87819 Stage IVA Colorectal Cancer AJCC v7 8 156261 -NCIT:C115053 Stage IVA Colon Cancer AJCC v7 9 156262 -NCIT:C115055 Stage IVA Rectal Cancer AJCC v7 9 156263 -NCIT:C87820 Stage IVB Colorectal Cancer AJCC v7 8 156264 -NCIT:C115054 Stage IVB Colon Cancer AJCC v7 9 156265 -NCIT:C115056 Stage IVB Rectal Cancer AJCC v7 9 156266 -NCIT:C89999 Stage IV Colon Cancer AJCC v7 8 156267 -NCIT:C115053 Stage IVA Colon Cancer AJCC v7 9 156268 -NCIT:C115054 Stage IVB Colon Cancer AJCC v7 9 156269 -NCIT:C90016 Stage IV Rectal Cancer AJCC v7 8 156270 -NCIT:C115055 Stage IVA Rectal Cancer AJCC v7 9 156271 -NCIT:C115056 Stage IVB Rectal Cancer AJCC v7 9 156272 -NCIT:C90019 Stage IV Rectosigmoid Cancer AJCC v7 8 156273 -NCIT:C91224 Colon Cancer by AJCC v7 Stage 7 156274 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 8 156275 -NCIT:C4594 Cecum Carcinoma In Situ 9 156276 -NCIT:C89990 Stage II Colon Cancer AJCC v7 8 156277 -NCIT:C115041 Stage IIA Colon Cancer AJCC v7 9 156278 -NCIT:C115042 Stage IIB Colon Cancer AJCC v7 9 156279 -NCIT:C115043 Stage IIC Colon Cancer AJCC v7 9 156280 -NCIT:C89995 Stage III Colon Cancer AJCC v7 8 156281 -NCIT:C115047 Stage IIIA Colon Cancer AJCC v7 9 156282 -NCIT:C115048 Stage IIIB Colon Cancer AJCC v7 9 156283 -NCIT:C115049 Stage IIIC Colon Cancer AJCC v7 9 156284 -NCIT:C89999 Stage IV Colon Cancer AJCC v7 8 156285 -NCIT:C115053 Stage IVA Colon Cancer AJCC v7 9 156286 -NCIT:C115054 Stage IVB Colon Cancer AJCC v7 9 156287 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 8 156288 -NCIT:C91225 Rectal Cancer by AJCC v7 Stage 7 156289 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 8 156290 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 8 156291 -NCIT:C89991 Stage II Rectal Cancer AJCC v7 8 156292 -NCIT:C115044 Stage IIA Rectal Cancer AJCC v7 9 156293 -NCIT:C115045 Stage IIB Rectal Cancer AJCC v7 9 156294 -NCIT:C115046 Stage IIC Rectal Cancer AJCC v7 9 156295 -NCIT:C89996 Stage III Rectal Cancer AJCC v7 8 156296 -NCIT:C115050 Stage IIIA Rectal Cancer AJCC v7 9 156297 -NCIT:C115051 Stage IIIB Rectal Cancer AJCC v7 9 156298 -NCIT:C115052 Stage IIIC Rectal Cancer AJCC v7 9 156299 -NCIT:C90016 Stage IV Rectal Cancer AJCC v7 8 156300 -NCIT:C115055 Stage IVA Rectal Cancer AJCC v7 9 156301 -NCIT:C115056 Stage IVB Rectal Cancer AJCC v7 9 156302 -NCIT:C91226 Rectosigmoid Cancer by AJCC v7 Stage 7 156303 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 8 156304 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 8 156305 -NCIT:C89992 Stage II Rectosigmoid Cancer AJCC v7 8 156306 -NCIT:C89997 Stage III Rectosigmoid Cancer AJCC v7 8 156307 -NCIT:C90019 Stage IV Rectosigmoid Cancer AJCC v7 8 156308 -NCIT:C9382 Rectal Carcinoma 6 156309 -NCIT:C118823 Childhood Rectal Carcinoma 7 156310 -NCIT:C134258 Rectal Cancer by AJCC v8 Stage 7 156311 -NCIT:C134291 Stage 0 Rectal Cancer AJCC v8 8 156312 -NCIT:C134292 Stage I Rectal Cancer AJCC v8 8 156313 -NCIT:C134293 Stage II Rectal Cancer AJCC v8 8 156314 -NCIT:C134294 Stage IIA Rectal Cancer AJCC v8 9 156315 -NCIT:C134295 Stage IIB Rectal Cancer AJCC v8 9 156316 -NCIT:C134296 Stage IIC Rectal Cancer AJCC v8 9 156317 -NCIT:C134297 Stage III Rectal Cancer AJCC v8 8 156318 -NCIT:C134298 Stage IIIA Rectal Cancer AJCC v8 9 156319 -NCIT:C134299 Stage IIIB Rectal Cancer AJCC v8 9 156320 -NCIT:C134300 Stage IIIC Rectal Cancer AJCC v8 9 156321 -NCIT:C134301 Stage IV Rectal Cancer AJCC v8 8 156322 -NCIT:C134302 Stage IVA Rectal Cancer AJCC v8 9 156323 -NCIT:C134303 Stage IVB Rectal Cancer AJCC v8 9 156324 -NCIT:C134304 Stage IVC Rectal Cancer AJCC v8 9 156325 -NCIT:C156098 Metastatic Rectal Carcinoma 7 156326 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 8 156327 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 8 156328 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 156329 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 156330 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 156331 -NCIT:C170777 Advanced Rectal Carcinoma 8 156332 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 156333 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 156334 -NCIT:C170778 Locally Advanced Rectal Carcinoma 8 156335 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 156336 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 156337 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 156338 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 8 156339 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 156340 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 156341 -NCIT:C162156 Refractory Rectal Carcinoma 7 156342 -NCIT:C162157 Refractory Rectal Adenocarcinoma 8 156343 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 8 156344 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 7 156345 -NCIT:C177776 Microsatellite Stable Rectal Carcinoma 7 156346 -NCIT:C43594 Rectal Adenosquamous Carcinoma 7 156347 -NCIT:C5554 Rectal Squamous Cell Carcinoma 7 156348 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 8 156349 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 156350 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 156351 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 8 156352 -NCIT:C5555 Rectal Cloacogenic Carcinoma 8 156353 -NCIT:C5556 Rectal Sarcomatoid Carcinoma 7 156354 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 7 156355 -NCIT:C7974 Rectal Undifferentiated Carcinoma 7 156356 -NCIT:C90508 Rectal Cancer by AJCC v6 Stage 7 156357 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 8 156358 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 8 156359 -NCIT:C7791 Stage II Rectal Cancer AJCC v6 8 156360 -NCIT:C7792 Stage III Rectal Cancer AJCC v6 8 156361 -NCIT:C8412 Stage IV Rectal Cancer AJCC v6 8 156362 -NCIT:C91225 Rectal Cancer by AJCC v7 Stage 7 156363 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 8 156364 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 8 156365 -NCIT:C89991 Stage II Rectal Cancer AJCC v7 8 156366 -NCIT:C115044 Stage IIA Rectal Cancer AJCC v7 9 156367 -NCIT:C115045 Stage IIB Rectal Cancer AJCC v7 9 156368 -NCIT:C115046 Stage IIC Rectal Cancer AJCC v7 9 156369 -NCIT:C89996 Stage III Rectal Cancer AJCC v7 8 156370 -NCIT:C115050 Stage IIIA Rectal Cancer AJCC v7 9 156371 -NCIT:C115051 Stage IIIB Rectal Cancer AJCC v7 9 156372 -NCIT:C115052 Stage IIIC Rectal Cancer AJCC v7 9 156373 -NCIT:C90016 Stage IV Rectal Cancer AJCC v7 8 156374 -NCIT:C115055 Stage IVA Rectal Cancer AJCC v7 9 156375 -NCIT:C115056 Stage IVB Rectal Cancer AJCC v7 9 156376 -NCIT:C9238 Recurrent Rectal Carcinoma 7 156377 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 8 156378 -NCIT:C9383 Rectal Adenocarcinoma 7 156379 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 8 156380 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 156381 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 156382 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 156383 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 8 156384 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 156385 -NCIT:C162157 Refractory Rectal Adenocarcinoma 8 156386 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 8 156387 -NCIT:C60640 Rectal Medullary Carcinoma 8 156388 -NCIT:C7973 Rectal Mucinous Adenocarcinoma 8 156389 -NCIT:C9168 Rectal Signet Ring Cell Adenocarcinoma 8 156390 -NCIT:C9449 Grade 3 Rectal Adenocarcinoma 8 156391 -NCIT:C9450 Grade 2 Rectal Adenocarcinoma 8 156392 -NCIT:C9451 Grade 1 Rectal Adenocarcinoma 8 156393 -NCIT:C96487 Rectal Serrated Adenocarcinoma 8 156394 -NCIT:C96490 Rectal Cribriform Comedo-Type Adenocarcinoma 8 156395 -NCIT:C96493 Rectal Micropapillary Adenocarcinoma 8 156396 -NCIT:C96156 Colorectal Neuroendocrine Carcinoma 6 156397 -NCIT:C43587 Colorectal Small Cell Neuroendocrine Carcinoma 7 156398 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 8 156399 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 8 156400 -NCIT:C96157 Colorectal Large Cell Neuroendocrine Carcinoma 7 156401 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 8 156402 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 8 156403 -NCIT:C96158 Colorectal Mixed Adenoneuroendocrine Carcinoma 6 156404 -NCIT:C96494 Colorectal Sarcomatoid Carcinoma 6 156405 -NCIT:C5556 Rectal Sarcomatoid Carcinoma 7 156406 -NCIT:C3513 Esophageal Carcinoma 5 156407 -NCIT:C118812 Childhood Esophageal Carcinoma 6 156408 -NCIT:C128563 Unresectable Esophageal Carcinoma 6 156409 -NCIT:C171608 Unresectable Esophageal Squamous Cell Carcinoma 7 156410 -NCIT:C173162 Unresectable Esophageal Adenocarcinoma 7 156411 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 156412 -NCIT:C172248 Unresectable Distal Esophagus Adenocarcinoma 8 156413 -NCIT:C133399 Esophageal Cancer by AJCC v8 Stage 6 156414 -NCIT:C133400 Esophageal Adenocarcinoma by AJCC v8 Stage 7 156415 -NCIT:C133401 Esophageal Adenocarcinoma by AJCC v8 Clinical Stage 8 156416 -NCIT:C133402 Clinical Stage 0 Esophageal Adenocarcinoma AJCC v8 9 156417 -NCIT:C133403 Clinical Stage I Esophageal Adenocarcinoma AJCC v8 9 156418 -NCIT:C133404 Clinical Stage II Esophageal Adenocarcinoma AJCC v8 9 156419 -NCIT:C133405 Clinical Stage IIA Esophageal Adenocarcinoma AJCC v8 10 156420 -NCIT:C133406 Clinical Stage IIB Esophageal Adenocarcinoma AJCC v8 10 156421 -NCIT:C133407 Clinical Stage III Esophageal Adenocarcinoma AJCC v8 9 156422 -NCIT:C133408 Clinical Stage IV Esophageal Adenocarcinoma AJCC v8 9 156423 -NCIT:C133409 Clinical Stage IVA Esophageal Adenocarcinoma AJCC v8 10 156424 -NCIT:C133410 Clinical Stage IVB Esophageal Adenocarcinoma AJCC v8 10 156425 -NCIT:C133412 Esophageal Adenocarcinoma by AJCC v8 Pathologic Stage 8 156426 -NCIT:C133413 Pathologic Stage 0 Esophageal Adenocarcinoma AJCC v8 9 156427 -NCIT:C133414 Pathologic Stage I Esophageal Adenocarcinoma AJCC v8 9 156428 -NCIT:C133415 Pathologic Stage IA Esophageal Adenocarcinoma AJCC v8 10 156429 -NCIT:C133416 Pathologic Stage IB Esophageal Adenocarcinoma AJCC v8 10 156430 -NCIT:C133417 Pathologic Stage IC Esophageal Adenocarcinoma AJCC v8 10 156431 -NCIT:C133418 Pathologic Stage II Esophageal Adenocarcinoma AJCC v8 9 156432 -NCIT:C133419 Pathologic Stage IIA Esophageal Adenocarcinoma AJCC v8 10 156433 -NCIT:C133420 Pathologic Stage IIB Esophageal Adenocarcinoma AJCC v8 10 156434 -NCIT:C133421 Pathologic Stage III Esophageal Adenocarcinoma AJCC v8 9 156435 -NCIT:C133422 Pathologic Stage IIIA Esophageal Adenocarcinoma AJCC v8 10 156436 -NCIT:C133423 Pathologic Stage IIIB Esophageal Adenocarcinoma AJCC v8 10 156437 -NCIT:C133424 Pathologic Stage IV Esophageal Adenocarcinoma AJCC v8 9 156438 -NCIT:C133425 Pathologic Stage IVA Esophageal Adenocarcinoma AJCC v8 10 156439 -NCIT:C133426 Pathologic Stage IVB Esophageal Adenocarcinoma AJCC v8 10 156440 -NCIT:C133432 Esophageal Adenocarcinoma by AJCC v8 Postneoadjuvant Therapy Stage 8 156441 -NCIT:C133433 Postneoadjuvant Therapy Stage I Esophageal Adenocarcinoma AJCC v8 9 156442 -NCIT:C133434 Postneoadjuvant Therapy Stage II Esophageal Adenocarcinoma AJCC v8 9 156443 -NCIT:C133435 Postneoadjuvant Therapy Stage III Esophageal Adenocarcinoma AJCC v8 9 156444 -NCIT:C133436 Postneoadjuvant Therapy Stage IIIA Esophageal Adenocarcinoma AJCC v8 10 156445 -NCIT:C133437 Postneoadjuvant Therapy Stage IIIB Esophageal Adenocarcinoma AJCC v8 10 156446 -NCIT:C133438 Postneoadjuvant Therapy Stage IV Esophageal Adenocarcinoma AJCC v8 9 156447 -NCIT:C133439 Postneoadjuvant Therapy Stage IVA Esophageal Adenocarcinoma AJCC v8 10 156448 -NCIT:C133440 Postneoadjuvant Therapy Stage IVB Esophageal Adenocarcinoma AJCC v8 10 156449 -NCIT:C133443 Esophageal Squamous Cell Carcinoma by AJCC v8 Stage 7 156450 -NCIT:C133444 Esophageal Squamous Cell Carcinoma by AJCC v8 Clinical Stage 8 156451 -NCIT:C133447 Clinical Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 9 156452 -NCIT:C133448 Clinical Stage I Esophageal Squamous Cell Carcinoma AJCC v8 9 156453 -NCIT:C133449 Clinical Stage II Esophageal Squamous Cell Carcinoma AJCC v8 9 156454 -NCIT:C133450 Clinical Stage III Esophageal Squamous Cell Carcinoma AJCC v8 9 156455 -NCIT:C133451 Clinical Stage IV Esophageal Squamous Cell Carcinoma AJCC v8 9 156456 -NCIT:C133452 Clinical Stage IVA Esophageal Squamous Cell Carcinoma AJCC v8 10 156457 -NCIT:C133453 Clinical Stage IVB Esophageal Squamous Cell Carcinoma AJCC v8 10 156458 -NCIT:C133445 Esophageal Squamous Cell Carcinoma by AJCC v8 Pathologic Stage 8 156459 -NCIT:C133519 Pathologic Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 9 156460 -NCIT:C133521 Pathologic Stage I Esophageal Squamous Cell Carcinoma AJCC v8 9 156461 -NCIT:C133525 Pathologic Stage IA Esophageal Squamous Cell Carcinoma AJCC v8 10 156462 -NCIT:C133530 Pathologic Stage IB Esophageal Squamous Cell Carcinoma AJCC v8 10 156463 -NCIT:C133532 Pathologic Stage II Esophageal Squamous Cell Carcinoma AJCC v8 9 156464 -NCIT:C133534 Pathologic Stage IIA Esophageal Squamous Cell Carcinoma AJCC v8 10 156465 -NCIT:C133535 Pathologic Stage IIB Esophageal Squamous Cell Carcinoma AJCC v8 10 156466 -NCIT:C133536 Pathologic Stage III Esophageal Squamous Cell Carcinoma AJCC v8 9 156467 -NCIT:C133537 Pathologic Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v8 10 156468 -NCIT:C133538 Pathologic Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v8 10 156469 -NCIT:C133539 Pathologic Stage IV Esophageal Squamous Cell Carcinoma AJCC v8 9 156470 -NCIT:C133541 Pathologic Stage IVA Esophageal Squamous Cell Carcinoma AJCC v8 10 156471 -NCIT:C133542 Pathologic Stage IVB Esophageal Squamous Cell Carcinoma AJCC v8 10 156472 -NCIT:C133446 Esophageal Squamous Cell Carcinoma by AJCC v8 Postneoadjuvant Therapy Stage 8 156473 -NCIT:C133454 Postneoadjuvant Therapy Stage I Esophageal Squamous Cell Carcinoma AJCC v8 9 156474 -NCIT:C133455 Postneoadjuvant Therapy Stage II Esophageal Squamous Cell Carcinoma AJCC v8 9 156475 -NCIT:C133456 Postneoadjuvant Therapy Stage III Esophageal Squamous Cell Carcinoma AJCC v8 9 156476 -NCIT:C133457 Postneoadjuvant Therapy Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v8 10 156477 -NCIT:C133458 Postneoadjuvant Therapy Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v8 10 156478 -NCIT:C133459 Postneoadjuvant Therapy Stage IV Esophageal Squamous Cell Carcinoma AJCC v8 9 156479 -NCIT:C133460 Postneoadjuvant Therapy Stage IVA Esophageal Squamous Cell Carcinoma AJCC v8 10 156480 -NCIT:C133461 Postneoadjuvant Therapy Stage IVB Esophageal Squamous Cell Carcinoma AJCC v8 10 156481 -NCIT:C156073 Metastatic Esophageal Carcinoma 6 156482 -NCIT:C156074 Metastatic Esophageal Adenocarcinoma 7 156483 -NCIT:C166120 Oligometastatic Esophageal Adenocarcinoma 8 156484 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 156485 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 156486 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 156487 -NCIT:C172249 Metastatic Distal Esophagus Adenocarcinoma 8 156488 -NCIT:C156075 Metastatic Esophageal Squamous Cell Carcinoma 7 156489 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 156490 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 156491 -NCIT:C160599 Advanced Esophageal Carcinoma 7 156492 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 156493 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 156494 -NCIT:C168976 Locally Advanced Esophageal Carcinoma 7 156495 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 156496 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 156497 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 156498 -NCIT:C166171 Localized Esophageal Carcinoma 6 156499 -NCIT:C171604 Refractory Esophageal Carcinoma 6 156500 -NCIT:C171606 Refractory Esophageal Squamous Cell Carcinoma 7 156501 -NCIT:C176892 Refractory Esophageal Adenocarcinoma 7 156502 -NCIT:C27421 Esophageal Adenosquamous Carcinoma 6 156503 -NCIT:C27422 Esophageal Undifferentiated Carcinoma 6 156504 -NCIT:C3999 Recurrent Esophageal Carcinoma 6 156505 -NCIT:C8627 Recurrent Esophageal Adenocarcinoma 7 156506 -NCIT:C8633 Recurrent Esophageal Squamous Cell Carcinoma 7 156507 -NCIT:C4024 Esophageal Squamous Cell Carcinoma 6 156508 -NCIT:C133442 Esophageal Squamous Cell Carcinoma by AJCC v7 Stage 7 156509 -NCIT:C5019 Stage IV Esophageal Squamous Cell Carcinoma AJCC v7 8 156510 -NCIT:C5020 Stage III Esophageal Squamous Cell Carcinoma AJCC v7 8 156511 -NCIT:C87787 Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v7 9 156512 -NCIT:C87788 Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v7 9 156513 -NCIT:C87789 Stage IIIC Esophageal Squamous Cell Carcinoma AJCC v7 9 156514 -NCIT:C5021 Stage II Esophageal Squamous Cell Carcinoma AJCC v7 8 156515 -NCIT:C6737 Stage IIB Esophageal Squamous Cell Carcinoma AJCC v7 9 156516 -NCIT:C6738 Stage IIA Esophageal Squamous Cell Carcinoma AJCC v7 9 156517 -NCIT:C5022 Stage I Esophageal Squamous Cell Carcinoma AJCC v7 8 156518 -NCIT:C87780 Stage IA Esophageal Squamous Cell Carcinoma AJCC v7 9 156519 -NCIT:C87781 Stage IB Esophageal Squamous Cell Carcinoma AJCC v7 9 156520 -NCIT:C5023 Stage 0 Esophageal Squamous Cell Carcinoma AJCC v7 8 156521 -NCIT:C133443 Esophageal Squamous Cell Carcinoma by AJCC v8 Stage 7 156522 -NCIT:C133444 Esophageal Squamous Cell Carcinoma by AJCC v8 Clinical Stage 8 156523 -NCIT:C133447 Clinical Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 9 156524 -NCIT:C133448 Clinical Stage I Esophageal Squamous Cell Carcinoma AJCC v8 9 156525 -NCIT:C133449 Clinical Stage II Esophageal Squamous Cell Carcinoma AJCC v8 9 156526 -NCIT:C133450 Clinical Stage III Esophageal Squamous Cell Carcinoma AJCC v8 9 156527 -NCIT:C133451 Clinical Stage IV Esophageal Squamous Cell Carcinoma AJCC v8 9 156528 -NCIT:C133452 Clinical Stage IVA Esophageal Squamous Cell Carcinoma AJCC v8 10 156529 -NCIT:C133453 Clinical Stage IVB Esophageal Squamous Cell Carcinoma AJCC v8 10 156530 -NCIT:C133445 Esophageal Squamous Cell Carcinoma by AJCC v8 Pathologic Stage 8 156531 -NCIT:C133519 Pathologic Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 9 156532 -NCIT:C133521 Pathologic Stage I Esophageal Squamous Cell Carcinoma AJCC v8 9 156533 -NCIT:C133525 Pathologic Stage IA Esophageal Squamous Cell Carcinoma AJCC v8 10 156534 -NCIT:C133530 Pathologic Stage IB Esophageal Squamous Cell Carcinoma AJCC v8 10 156535 -NCIT:C133532 Pathologic Stage II Esophageal Squamous Cell Carcinoma AJCC v8 9 156536 -NCIT:C133534 Pathologic Stage IIA Esophageal Squamous Cell Carcinoma AJCC v8 10 156537 -NCIT:C133535 Pathologic Stage IIB Esophageal Squamous Cell Carcinoma AJCC v8 10 156538 -NCIT:C133536 Pathologic Stage III Esophageal Squamous Cell Carcinoma AJCC v8 9 156539 -NCIT:C133537 Pathologic Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v8 10 156540 -NCIT:C133538 Pathologic Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v8 10 156541 -NCIT:C133539 Pathologic Stage IV Esophageal Squamous Cell Carcinoma AJCC v8 9 156542 -NCIT:C133541 Pathologic Stage IVA Esophageal Squamous Cell Carcinoma AJCC v8 10 156543 -NCIT:C133542 Pathologic Stage IVB Esophageal Squamous Cell Carcinoma AJCC v8 10 156544 -NCIT:C133446 Esophageal Squamous Cell Carcinoma by AJCC v8 Postneoadjuvant Therapy Stage 8 156545 -NCIT:C133454 Postneoadjuvant Therapy Stage I Esophageal Squamous Cell Carcinoma AJCC v8 9 156546 -NCIT:C133455 Postneoadjuvant Therapy Stage II Esophageal Squamous Cell Carcinoma AJCC v8 9 156547 -NCIT:C133456 Postneoadjuvant Therapy Stage III Esophageal Squamous Cell Carcinoma AJCC v8 9 156548 -NCIT:C133457 Postneoadjuvant Therapy Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v8 10 156549 -NCIT:C133458 Postneoadjuvant Therapy Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v8 10 156550 -NCIT:C133459 Postneoadjuvant Therapy Stage IV Esophageal Squamous Cell Carcinoma AJCC v8 9 156551 -NCIT:C133460 Postneoadjuvant Therapy Stage IVA Esophageal Squamous Cell Carcinoma AJCC v8 10 156552 -NCIT:C133461 Postneoadjuvant Therapy Stage IVB Esophageal Squamous Cell Carcinoma AJCC v8 10 156553 -NCIT:C150029 Thoracic Esophagus Squamous Cell Carcinoma 7 156554 -NCIT:C150032 Cervical Esophagus Squamous Cell Carcinoma 7 156555 -NCIT:C150037 Distal Esophagus Squamous Cell Carcinoma 7 156556 -NCIT:C156075 Metastatic Esophageal Squamous Cell Carcinoma 7 156557 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 156558 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 156559 -NCIT:C171606 Refractory Esophageal Squamous Cell Carcinoma 7 156560 -NCIT:C171608 Unresectable Esophageal Squamous Cell Carcinoma 7 156561 -NCIT:C27420 Esophageal Verrucous Carcinoma 7 156562 -NCIT:C27680 Human Papillomavirus-Related Esophageal Squamous Cell Carcinoma 7 156563 -NCIT:C27928 Alcohol-Related Esophageal Squamous Cell Carcinoma 7 156564 -NCIT:C7032 Esophageal Basaloid Carcinoma 7 156565 -NCIT:C8633 Recurrent Esophageal Squamous Cell Carcinoma 7 156566 -NCIT:C95608 Esophageal Spindle Cell Carcinoma 7 156567 -NCIT:C95610 Esophageal Well Differentiated Squamous Cell Carcinoma 7 156568 -NCIT:C179888 Esophageal Carcinoma Cuniculatum 8 156569 -NCIT:C95611 Esophageal Moderately Differentiated Squamous Cell Carcinoma 7 156570 -NCIT:C95612 Esophageal Poorly Differentiated Squamous Cell Carcinoma 7 156571 -NCIT:C4025 Esophageal Adenocarcinoma 6 156572 -NCIT:C133400 Esophageal Adenocarcinoma by AJCC v8 Stage 7 156573 -NCIT:C133401 Esophageal Adenocarcinoma by AJCC v8 Clinical Stage 8 156574 -NCIT:C133402 Clinical Stage 0 Esophageal Adenocarcinoma AJCC v8 9 156575 -NCIT:C133403 Clinical Stage I Esophageal Adenocarcinoma AJCC v8 9 156576 -NCIT:C133404 Clinical Stage II Esophageal Adenocarcinoma AJCC v8 9 156577 -NCIT:C133405 Clinical Stage IIA Esophageal Adenocarcinoma AJCC v8 10 156578 -NCIT:C133406 Clinical Stage IIB Esophageal Adenocarcinoma AJCC v8 10 156579 -NCIT:C133407 Clinical Stage III Esophageal Adenocarcinoma AJCC v8 9 156580 -NCIT:C133408 Clinical Stage IV Esophageal Adenocarcinoma AJCC v8 9 156581 -NCIT:C133409 Clinical Stage IVA Esophageal Adenocarcinoma AJCC v8 10 156582 -NCIT:C133410 Clinical Stage IVB Esophageal Adenocarcinoma AJCC v8 10 156583 -NCIT:C133412 Esophageal Adenocarcinoma by AJCC v8 Pathologic Stage 8 156584 -NCIT:C133413 Pathologic Stage 0 Esophageal Adenocarcinoma AJCC v8 9 156585 -NCIT:C133414 Pathologic Stage I Esophageal Adenocarcinoma AJCC v8 9 156586 -NCIT:C133415 Pathologic Stage IA Esophageal Adenocarcinoma AJCC v8 10 156587 -NCIT:C133416 Pathologic Stage IB Esophageal Adenocarcinoma AJCC v8 10 156588 -NCIT:C133417 Pathologic Stage IC Esophageal Adenocarcinoma AJCC v8 10 156589 -NCIT:C133418 Pathologic Stage II Esophageal Adenocarcinoma AJCC v8 9 156590 -NCIT:C133419 Pathologic Stage IIA Esophageal Adenocarcinoma AJCC v8 10 156591 -NCIT:C133420 Pathologic Stage IIB Esophageal Adenocarcinoma AJCC v8 10 156592 -NCIT:C133421 Pathologic Stage III Esophageal Adenocarcinoma AJCC v8 9 156593 -NCIT:C133422 Pathologic Stage IIIA Esophageal Adenocarcinoma AJCC v8 10 156594 -NCIT:C133423 Pathologic Stage IIIB Esophageal Adenocarcinoma AJCC v8 10 156595 -NCIT:C133424 Pathologic Stage IV Esophageal Adenocarcinoma AJCC v8 9 156596 -NCIT:C133425 Pathologic Stage IVA Esophageal Adenocarcinoma AJCC v8 10 156597 -NCIT:C133426 Pathologic Stage IVB Esophageal Adenocarcinoma AJCC v8 10 156598 -NCIT:C133432 Esophageal Adenocarcinoma by AJCC v8 Postneoadjuvant Therapy Stage 8 156599 -NCIT:C133433 Postneoadjuvant Therapy Stage I Esophageal Adenocarcinoma AJCC v8 9 156600 -NCIT:C133434 Postneoadjuvant Therapy Stage II Esophageal Adenocarcinoma AJCC v8 9 156601 -NCIT:C133435 Postneoadjuvant Therapy Stage III Esophageal Adenocarcinoma AJCC v8 9 156602 -NCIT:C133436 Postneoadjuvant Therapy Stage IIIA Esophageal Adenocarcinoma AJCC v8 10 156603 -NCIT:C133437 Postneoadjuvant Therapy Stage IIIB Esophageal Adenocarcinoma AJCC v8 10 156604 -NCIT:C133438 Postneoadjuvant Therapy Stage IV Esophageal Adenocarcinoma AJCC v8 9 156605 -NCIT:C133439 Postneoadjuvant Therapy Stage IVA Esophageal Adenocarcinoma AJCC v8 10 156606 -NCIT:C133440 Postneoadjuvant Therapy Stage IVB Esophageal Adenocarcinoma AJCC v8 10 156607 -NCIT:C133411 Esophageal Adenocarcinoma by AJCC v7 Stage 7 156608 -NCIT:C8628 Stage II Esophageal Adenocarcinoma AJCC v7 8 156609 -NCIT:C6731 Stage IIA Esophageal Adenocarcinoma AJCC v7 9 156610 -NCIT:C6732 Stage IIB Esophageal Adenocarcinoma AJCC v7 9 156611 -NCIT:C8629 Stage 0 Esophageal Adenocarcinoma AJCC v7 8 156612 -NCIT:C8630 Stage I Esophageal Adenocarcinoma AJCC v7 8 156613 -NCIT:C87782 Stage IA Esophageal Adenocarcinoma AJCC v7 9 156614 -NCIT:C87783 Stage IB Esophageal Adenocarcinoma AJCC v7 9 156615 -NCIT:C8631 Stage III Esophageal Adenocarcinoma AJCC v7 8 156616 -NCIT:C87784 Stage IIIA Esophageal Adenocarcinoma AJCC v7 9 156617 -NCIT:C87785 Stage IIIB Esophageal Adenocarcinoma AJCC v7 9 156618 -NCIT:C87786 Stage IIIC Esophageal Adenocarcinoma AJCC v7 9 156619 -NCIT:C8632 Stage IV Esophageal Adenocarcinoma AJCC v7 8 156620 -NCIT:C150027 Thoracic Esophagus Adenocarcinoma 7 156621 -NCIT:C150031 Cervical Esophagus Adenocarcinoma 7 156622 -NCIT:C152036 Distal Esophagus Adenocarcinoma 7 156623 -NCIT:C172248 Unresectable Distal Esophagus Adenocarcinoma 8 156624 -NCIT:C172249 Metastatic Distal Esophagus Adenocarcinoma 8 156625 -NCIT:C7027 Barrett Adenocarcinoma 8 156626 -NCIT:C156074 Metastatic Esophageal Adenocarcinoma 7 156627 -NCIT:C166120 Oligometastatic Esophageal Adenocarcinoma 8 156628 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 156629 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 156630 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 156631 -NCIT:C172249 Metastatic Distal Esophagus Adenocarcinoma 8 156632 -NCIT:C161906 Esophageal Intramucosal Adenocarcinoma 7 156633 -NCIT:C173162 Unresectable Esophageal Adenocarcinoma 7 156634 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 156635 -NCIT:C172248 Unresectable Distal Esophagus Adenocarcinoma 8 156636 -NCIT:C176892 Refractory Esophageal Adenocarcinoma 7 156637 -NCIT:C8627 Recurrent Esophageal Adenocarcinoma 7 156638 -NCIT:C5342 Esophageal Adenoid Cystic Carcinoma 6 156639 -NCIT:C5343 Esophageal Mucoepidermoid Carcinoma 6 156640 -NCIT:C90500 Esophageal Cancer by AJCC v6 Stage 6 156641 -NCIT:C3637 Stage 0 Esophageal Cancer AJCC v6 7 156642 -NCIT:C9210 Stage I Esophageal Cancer AJCC v6 7 156643 -NCIT:C9211 Stage II Esophageal Cancer AJCC v6 7 156644 -NCIT:C9212 Stage III Esophageal Cancer AJCC v6 7 156645 -NCIT:C9213 Stage IV Esophageal Cancer AJCC v6 7 156646 -NCIT:C91221 Esophageal Cancer by AJCC v7 Stage 6 156647 -NCIT:C133411 Esophageal Adenocarcinoma by AJCC v7 Stage 7 156648 -NCIT:C8628 Stage II Esophageal Adenocarcinoma AJCC v7 8 156649 -NCIT:C6731 Stage IIA Esophageal Adenocarcinoma AJCC v7 9 156650 -NCIT:C6732 Stage IIB Esophageal Adenocarcinoma AJCC v7 9 156651 -NCIT:C8629 Stage 0 Esophageal Adenocarcinoma AJCC v7 8 156652 -NCIT:C8630 Stage I Esophageal Adenocarcinoma AJCC v7 8 156653 -NCIT:C87782 Stage IA Esophageal Adenocarcinoma AJCC v7 9 156654 -NCIT:C87783 Stage IB Esophageal Adenocarcinoma AJCC v7 9 156655 -NCIT:C8631 Stage III Esophageal Adenocarcinoma AJCC v7 8 156656 -NCIT:C87784 Stage IIIA Esophageal Adenocarcinoma AJCC v7 9 156657 -NCIT:C87785 Stage IIIB Esophageal Adenocarcinoma AJCC v7 9 156658 -NCIT:C87786 Stage IIIC Esophageal Adenocarcinoma AJCC v7 9 156659 -NCIT:C8632 Stage IV Esophageal Adenocarcinoma AJCC v7 8 156660 -NCIT:C133442 Esophageal Squamous Cell Carcinoma by AJCC v7 Stage 7 156661 -NCIT:C5019 Stage IV Esophageal Squamous Cell Carcinoma AJCC v7 8 156662 -NCIT:C5020 Stage III Esophageal Squamous Cell Carcinoma AJCC v7 8 156663 -NCIT:C87787 Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v7 9 156664 -NCIT:C87788 Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v7 9 156665 -NCIT:C87789 Stage IIIC Esophageal Squamous Cell Carcinoma AJCC v7 9 156666 -NCIT:C5021 Stage II Esophageal Squamous Cell Carcinoma AJCC v7 8 156667 -NCIT:C6737 Stage IIB Esophageal Squamous Cell Carcinoma AJCC v7 9 156668 -NCIT:C6738 Stage IIA Esophageal Squamous Cell Carcinoma AJCC v7 9 156669 -NCIT:C5022 Stage I Esophageal Squamous Cell Carcinoma AJCC v7 8 156670 -NCIT:C87780 Stage IA Esophageal Squamous Cell Carcinoma AJCC v7 9 156671 -NCIT:C87781 Stage IB Esophageal Squamous Cell Carcinoma AJCC v7 9 156672 -NCIT:C5023 Stage 0 Esophageal Squamous Cell Carcinoma AJCC v7 8 156673 -NCIT:C89771 Stage 0 Esophageal Cancer AJCC v7 7 156674 -NCIT:C5023 Stage 0 Esophageal Squamous Cell Carcinoma AJCC v7 8 156675 -NCIT:C8629 Stage 0 Esophageal Adenocarcinoma AJCC v7 8 156676 -NCIT:C89793 Stage I Esophageal Cancer AJCC v7 7 156677 -NCIT:C115117 Stage IA Esophageal Cancer AJCC v7 8 156678 -NCIT:C87780 Stage IA Esophageal Squamous Cell Carcinoma AJCC v7 9 156679 -NCIT:C87782 Stage IA Esophageal Adenocarcinoma AJCC v7 9 156680 -NCIT:C115118 Stage IB Esophageal Cancer AJCC v7 8 156681 -NCIT:C87781 Stage IB Esophageal Squamous Cell Carcinoma AJCC v7 9 156682 -NCIT:C87783 Stage IB Esophageal Adenocarcinoma AJCC v7 9 156683 -NCIT:C5022 Stage I Esophageal Squamous Cell Carcinoma AJCC v7 8 156684 -NCIT:C87780 Stage IA Esophageal Squamous Cell Carcinoma AJCC v7 9 156685 -NCIT:C87781 Stage IB Esophageal Squamous Cell Carcinoma AJCC v7 9 156686 -NCIT:C8630 Stage I Esophageal Adenocarcinoma AJCC v7 8 156687 -NCIT:C87782 Stage IA Esophageal Adenocarcinoma AJCC v7 9 156688 -NCIT:C87783 Stage IB Esophageal Adenocarcinoma AJCC v7 9 156689 -NCIT:C89794 Stage II Esophageal Cancer AJCC v7 7 156690 -NCIT:C5021 Stage II Esophageal Squamous Cell Carcinoma AJCC v7 8 156691 -NCIT:C6737 Stage IIB Esophageal Squamous Cell Carcinoma AJCC v7 9 156692 -NCIT:C6738 Stage IIA Esophageal Squamous Cell Carcinoma AJCC v7 9 156693 -NCIT:C5691 Stage IIA Esophageal Cancer AJCC v7 8 156694 -NCIT:C6731 Stage IIA Esophageal Adenocarcinoma AJCC v7 9 156695 -NCIT:C6738 Stage IIA Esophageal Squamous Cell Carcinoma AJCC v7 9 156696 -NCIT:C5692 Stage IIB Esophageal Cancer AJCC v7 8 156697 -NCIT:C6732 Stage IIB Esophageal Adenocarcinoma AJCC v7 9 156698 -NCIT:C6737 Stage IIB Esophageal Squamous Cell Carcinoma AJCC v7 9 156699 -NCIT:C8628 Stage II Esophageal Adenocarcinoma AJCC v7 8 156700 -NCIT:C6731 Stage IIA Esophageal Adenocarcinoma AJCC v7 9 156701 -NCIT:C6732 Stage IIB Esophageal Adenocarcinoma AJCC v7 9 156702 -NCIT:C89795 Stage III Esophageal Cancer AJCC v7 7 156703 -NCIT:C115119 Stage IIIA Esophageal Cancer AJCC v7 8 156704 -NCIT:C87784 Stage IIIA Esophageal Adenocarcinoma AJCC v7 9 156705 -NCIT:C87787 Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v7 9 156706 -NCIT:C115120 Stage IIIB Esophageal Cancer AJCC v7 8 156707 -NCIT:C87785 Stage IIIB Esophageal Adenocarcinoma AJCC v7 9 156708 -NCIT:C87788 Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v7 9 156709 -NCIT:C115121 Stage IIIC Esophageal Cancer AJCC v7 8 156710 -NCIT:C87786 Stage IIIC Esophageal Adenocarcinoma AJCC v7 9 156711 -NCIT:C87789 Stage IIIC Esophageal Squamous Cell Carcinoma AJCC v7 9 156712 -NCIT:C5020 Stage III Esophageal Squamous Cell Carcinoma AJCC v7 8 156713 -NCIT:C87787 Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v7 9 156714 -NCIT:C87788 Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v7 9 156715 -NCIT:C87789 Stage IIIC Esophageal Squamous Cell Carcinoma AJCC v7 9 156716 -NCIT:C8631 Stage III Esophageal Adenocarcinoma AJCC v7 8 156717 -NCIT:C87784 Stage IIIA Esophageal Adenocarcinoma AJCC v7 9 156718 -NCIT:C87785 Stage IIIB Esophageal Adenocarcinoma AJCC v7 9 156719 -NCIT:C87786 Stage IIIC Esophageal Adenocarcinoma AJCC v7 9 156720 -NCIT:C89804 Stage IV Esophageal Cancer AJCC v7 7 156721 -NCIT:C5019 Stage IV Esophageal Squamous Cell Carcinoma AJCC v7 8 156722 -NCIT:C8632 Stage IV Esophageal Adenocarcinoma AJCC v7 8 156723 -NCIT:C95619 Esophageal Neuroendocrine Carcinoma 6 156724 -NCIT:C6762 Esophageal Small Cell Neuroendocrine Carcinoma 7 156725 -NCIT:C95620 Esophageal Large Cell Neuroendocrine Carcinoma 7 156726 -NCIT:C95621 Esophageal Mixed Adenoneuroendocrine Carcinoma 6 156727 -NCIT:C35180 Digestive System Carcinoma In Situ 5 156728 -NCIT:C133402 Clinical Stage 0 Esophageal Adenocarcinoma AJCC v8 6 156729 -NCIT:C133413 Pathologic Stage 0 Esophageal Adenocarcinoma AJCC v8 6 156730 -NCIT:C133447 Clinical Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 6 156731 -NCIT:C133519 Pathologic Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 6 156732 -NCIT:C133550 Clinical Stage 0 Gastroesophageal Junction Adenocarcinoma AJCC v8 6 156733 -NCIT:C133564 Pathologic Stage 0 Gastroesophageal Junction Adenocarcinoma AJCC v8 6 156734 -NCIT:C133647 Clinical Stage 0 Gastric Cancer AJCC v8 6 156735 -NCIT:C133654 Pathologic Stage 0 Gastric Cancer AJCC v8 6 156736 -NCIT:C133795 Stage 0 Anal Cancer AJCC v8 6 156737 -NCIT:C157575 Anal Intraepithelial Neoplasia 3 7 156738 -NCIT:C133894 Stage 0 Small Intestinal Adenocarcinoma AJCC v8 6 156739 -NCIT:C134118 Stage 0 Appendix Carcinoma AJCC v8 6 156740 -NCIT:C134182 Stage 0 Colorectal Cancer AJCC v8 6 156741 -NCIT:C134271 Stage 0 Colon Cancer AJCC v8 7 156742 -NCIT:C134291 Stage 0 Rectal Cancer AJCC v8 7 156743 -NCIT:C134663 Stage 0 Gallbladder Cancer AJCC v8 6 156744 -NCIT:C134865 Stage 0 Ampulla of Vater Cancer AJCC v8 6 156745 -NCIT:C134914 Stage 0 Pancreatic Cancer AJCC v8 6 156746 -NCIT:C3637 Stage 0 Esophageal Cancer AJCC v6 6 156747 -NCIT:C4439 Stage 0 Gallbladder Cancer AJCC v6 and v7 6 156748 -NCIT:C4444 Stage 0 Ampulla of Vater Cancer AJCC v7 6 156749 -NCIT:C4593 Stage 0 Appendix Carcinoma AJCC v7 6 156750 -NCIT:C4892 Stage 0 Small Intestinal Cancer AJCC v7 6 156751 -NCIT:C5729 Stage 0 Pancreatic Cancer AJCC v6 and v7 6 156752 -NCIT:C67493 High-Grade Biliary Intraepithelial Neoplasia 6 156753 -NCIT:C7788 Stage 0 Gastric Cancer AJCC v6 and v7 6 156754 -NCIT:C4428 Gastric Cardia Carcinoma In Situ AJCC v6 and v7 7 156755 -NCIT:C4429 Gastric Fundus Carcinoma In Situ AJCC v6 and v7 7 156756 -NCIT:C4430 Gastric Body Carcinoma In Situ AJCC v6 and v7 7 156757 -NCIT:C4431 Gastric Pylorus Carcinoma In Situ AJCC v6 and v7 7 156758 -NCIT:C8400 Gastric Antrum Carcinoma In Situ AJCC v6 and v7 8 156759 -NCIT:C7794 Stage 0 Anal Canal Cancer AJCC v6 and v7 6 156760 -NCIT:C27282 Stage 0 AIDS-Related Anal Canal Cancer AJCC v6 and v7 7 156761 -NCIT:C8932 Stage 0 Colorectal Cancer AJCC v6 and v7 6 156762 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 7 156763 -NCIT:C4594 Cecum Carcinoma In Situ 8 156764 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 7 156765 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 7 156766 -NCIT:C89771 Stage 0 Esophageal Cancer AJCC v7 6 156767 -NCIT:C5023 Stage 0 Esophageal Squamous Cell Carcinoma AJCC v7 7 156768 -NCIT:C8629 Stage 0 Esophageal Adenocarcinoma AJCC v7 7 156769 -NCIT:C4911 Gastric Carcinoma 5 156770 -NCIT:C118813 Childhood Gastric Carcinoma 6 156771 -NCIT:C133638 Gastric Cancer by AJCC v8 Stage 6 156772 -NCIT:C133639 Gastric Cancer by AJCC v8 Clinical Stage 7 156773 -NCIT:C133647 Clinical Stage 0 Gastric Cancer AJCC v8 8 156774 -NCIT:C133648 Clinical Stage I Gastric Cancer AJCC v8 8 156775 -NCIT:C133649 Clinical Stage II Gastric Cancer AJCC v8 8 156776 -NCIT:C133681 Clinical Stage IIA Gastric Cancer AJCC v8 9 156777 -NCIT:C133682 Clinical Stage IIB Gastric Cancer AJCC v8 9 156778 -NCIT:C133650 Clinical Stage III Gastric Cancer AJCC v8 8 156779 -NCIT:C133651 Clinical Stage IV Gastric Cancer AJCC v8 8 156780 -NCIT:C133652 Clinical Stage IVA Gastric Cancer AJCC v8 9 156781 -NCIT:C133653 Clinical Stage IVB Gastric Cancer AJCC v8 9 156782 -NCIT:C133640 Gastric Cancer by AJCC v8 Pathologic Stage 7 156783 -NCIT:C133654 Pathologic Stage 0 Gastric Cancer AJCC v8 8 156784 -NCIT:C133655 Pathologic Stage I Gastric Cancer AJCC v8 8 156785 -NCIT:C133656 Pathologic Stage IA Gastric Cancer AJCC v8 9 156786 -NCIT:C133657 Pathologic Stage IB Gastric Cancer AJCC v8 9 156787 -NCIT:C133659 Pathologic Stage II Gastric Cancer AJCC v8 8 156788 -NCIT:C133660 Pathologic Stage IIA Gastric Cancer AJCC v8 9 156789 -NCIT:C133662 Pathologic Stage IIB Gastric Cancer AJCC v8 9 156790 -NCIT:C133663 Pathologic Stage III Gastric Cancer AJCC v8 8 156791 -NCIT:C133665 Pathologic Stage IIIA Gastric Cancer AJCC v8 9 156792 -NCIT:C133666 Pathologic Stage IIIB Gastric Cancer AJCC v8 9 156793 -NCIT:C133667 Pathologic Stage IIIC Gastric Cancer AJCC v8 9 156794 -NCIT:C133668 Pathologic Stage IV Gastric Cancer AJCC v8 8 156795 -NCIT:C133641 Gastric Cancer by AJCC v8 Postneoadjuvant Therapy Stage 7 156796 -NCIT:C133670 Postneoadjuvant Therapy Stage I Gastric Cancer AJCC v8 8 156797 -NCIT:C133671 Postneoadjuvant Therapy Stage II Gastric Cancer AJCC v8 8 156798 -NCIT:C133672 Postneoadjuvant Therapy Stage III Gastric Cancer AJCC v8 8 156799 -NCIT:C133673 Postneoadjuvant Therapy Stage IV Gastric Cancer AJCC v8 8 156800 -NCIT:C147996 Refractory Gastric Carcinoma 6 156801 -NCIT:C167074 Refractory Gastric Adenocarcinoma 7 156802 -NCIT:C153320 Metastatic Gastric Carcinoma 6 156803 -NCIT:C153319 Metastatic Gastric Adenocarcinoma 7 156804 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 156805 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 156806 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 156807 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 156808 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 156809 -NCIT:C165630 Metastatic Proximal Gastric Adenocarcinoma 8 156810 -NCIT:C166121 Oligometastatic Gastric Adenocarcinoma 8 156811 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 156812 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 156813 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 7 156814 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 156815 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 156816 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 156817 -NCIT:C162772 Locally Advanced Gastric Carcinoma 7 156818 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 156819 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 156820 -NCIT:C165299 Advanced Gastric Carcinoma 7 156821 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 156822 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 156823 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 156824 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 156825 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 156826 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 7 156827 -NCIT:C156167 Localized Gastric Carcinoma 6 156828 -NCIT:C159775 Unresectable Gastric Carcinoma 6 156829 -NCIT:C154221 Unresectable Gastric Adenocarcinoma 7 156830 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 156831 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 156832 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 156833 -NCIT:C162304 EBV-Related Gastric Carcinoma 6 156834 -NCIT:C4004 Gastric Adenocarcinoma 6 156835 -NCIT:C153319 Metastatic Gastric Adenocarcinoma 7 156836 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 156837 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 156838 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 156839 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 156840 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 156841 -NCIT:C165630 Metastatic Proximal Gastric Adenocarcinoma 8 156842 -NCIT:C166121 Oligometastatic Gastric Adenocarcinoma 8 156843 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 156844 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 156845 -NCIT:C154221 Unresectable Gastric Adenocarcinoma 7 156846 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 156847 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 156848 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 156849 -NCIT:C154622 Recurrent Gastric Adenocarcinoma 7 156850 -NCIT:C165628 Proximal Gastric Adenocarcinoma 7 156851 -NCIT:C165630 Metastatic Proximal Gastric Adenocarcinoma 8 156852 -NCIT:C167074 Refractory Gastric Adenocarcinoma 7 156853 -NCIT:C43527 Sporadic Gastric Adenocarcinoma 7 156854 -NCIT:C27131 Early Gastric Cancer 8 156855 -NCIT:C95763 Gastric Intramucosal Adenocarcinoma 9 156856 -NCIT:C27765 Helicobacter Pylori-Related Gastric Adenocarcinoma 8 156857 -NCIT:C43529 Sporadic Gastric Diffuse Adenocarcinoma 8 156858 -NCIT:C5247 Gastric Cardia Adenocarcinoma 8 156859 -NCIT:C5248 Gastric Mucinous Adenocarcinoma 8 156860 -NCIT:C5472 Gastric Papillary Adenocarcinoma 8 156861 -NCIT:C5473 Gastric Tubular Adenocarcinoma 8 156862 -NCIT:C65194 Gastric Parietal Cell Adenocarcinoma 8 156863 -NCIT:C67526 Gastric Mixed Adenocarcinoma 8 156864 -NCIT:C9157 Gastric Intestinal-Type Adenocarcinoma 8 156865 -NCIT:C95743 Gastric Poorly Cohesive Adenocarcinoma 8 156866 -NCIT:C5250 Gastric Signet Ring Cell Adenocarcinoma 9 156867 -NCIT:C95747 Gastric Hepatoid Adenocarcinoma 8 156868 -NCIT:C95748 Gastric Carcinoma with Lymphoid Stroma 8 156869 -NCIT:C9159 Gastric Diffuse Adenocarcinoma 7 156870 -NCIT:C43295 Hereditary Gastric Diffuse Adenocarcinoma 8 156871 -NCIT:C43529 Sporadic Gastric Diffuse Adenocarcinoma 8 156872 -NCIT:C5474 Gastric Adenosquamous Carcinoma 6 156873 -NCIT:C5475 Gastric Squamous Cell Carcinoma 6 156874 -NCIT:C150034 Gastric Cardia Squamous Cell Carcinoma 7 156875 -NCIT:C5476 Gastric Undifferentiated Carcinoma 6 156876 -NCIT:C6794 Gastric Cardia Carcinoma 6 156877 -NCIT:C150034 Gastric Cardia Squamous Cell Carcinoma 7 156878 -NCIT:C4428 Gastric Cardia Carcinoma In Situ AJCC v6 and v7 7 156879 -NCIT:C5247 Gastric Cardia Adenocarcinoma 7 156880 -NCIT:C6795 Gastric Pylorus Carcinoma 6 156881 -NCIT:C4431 Gastric Pylorus Carcinoma In Situ AJCC v6 and v7 7 156882 -NCIT:C8400 Gastric Antrum Carcinoma In Situ AJCC v6 and v7 8 156883 -NCIT:C8398 Gastric Fundus Carcinoma 6 156884 -NCIT:C4429 Gastric Fundus Carcinoma In Situ AJCC v6 and v7 7 156885 -NCIT:C8399 Gastric Body Carcinoma 6 156886 -NCIT:C4430 Gastric Body Carcinoma In Situ AJCC v6 and v7 7 156887 -NCIT:C90503 Gastric Cancer by AJCC v6 Stage 6 156888 -NCIT:C7772 Stage I Gastric Cancer AJCC v6 7 156889 -NCIT:C7773 Stage II Gastric Cancer AJCC v6 7 156890 -NCIT:C7774 Stage III Gastric Cancer AJCC v6 7 156891 -NCIT:C7788 Stage 0 Gastric Cancer AJCC v6 and v7 7 156892 -NCIT:C4428 Gastric Cardia Carcinoma In Situ AJCC v6 and v7 8 156893 -NCIT:C4429 Gastric Fundus Carcinoma In Situ AJCC v6 and v7 8 156894 -NCIT:C4430 Gastric Body Carcinoma In Situ AJCC v6 and v7 8 156895 -NCIT:C4431 Gastric Pylorus Carcinoma In Situ AJCC v6 and v7 8 156896 -NCIT:C8400 Gastric Antrum Carcinoma In Situ AJCC v6 and v7 9 156897 -NCIT:C9036 Stage IV Gastric Cancer AJCC v6 7 156898 -NCIT:C91222 Gastric Cancer by AJCC v7 Stage 6 156899 -NCIT:C7788 Stage 0 Gastric Cancer AJCC v6 and v7 7 156900 -NCIT:C4428 Gastric Cardia Carcinoma In Situ AJCC v6 and v7 8 156901 -NCIT:C4429 Gastric Fundus Carcinoma In Situ AJCC v6 and v7 8 156902 -NCIT:C4430 Gastric Body Carcinoma In Situ AJCC v6 and v7 8 156903 -NCIT:C4431 Gastric Pylorus Carcinoma In Situ AJCC v6 and v7 8 156904 -NCIT:C8400 Gastric Antrum Carcinoma In Situ AJCC v6 and v7 9 156905 -NCIT:C89856 Stage I Gastric Cancer AJCC v7 7 156906 -NCIT:C5468 Stage IA Gastric Cancer AJCC v7 8 156907 -NCIT:C5469 Stage IB Gastric Cancer AJCC v7 8 156908 -NCIT:C89859 Stage II Gastric Cancer AJCC v7 7 156909 -NCIT:C87775 Stage IIA Gastric Cancer AJCC v7 8 156910 -NCIT:C87776 Stage IIB Gastric Cancer AJCC v7 8 156911 -NCIT:C89860 Stage III Gastric Cancer AJCC v7 7 156912 -NCIT:C5470 Stage IIIB Gastric Cancer AJCC v7 8 156913 -NCIT:C5471 Stage IIIA Gastric Cancer AJCC v7 8 156914 -NCIT:C87777 Stage IIIC Gastric Cancer AJCC v7 8 156915 -NCIT:C89861 Stage IV Gastric Cancer AJCC v7 7 156916 -NCIT:C9237 Recurrent Gastric Carcinoma 6 156917 -NCIT:C154622 Recurrent Gastric Adenocarcinoma 7 156918 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 7 156919 -NCIT:C190198 Locally Recurrent Gastric Carcinoma 7 156920 -NCIT:C95884 Gastric Neuroendocrine Carcinoma 6 156921 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 7 156922 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 156923 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 156924 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 156925 -NCIT:C6764 Gastric Small Cell Neuroendocrine Carcinoma 7 156926 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 156927 -NCIT:C95885 Gastric Large Cell Neuroendocrine Carcinoma 7 156928 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 156929 -NCIT:C95886 Gastric Mixed Adenoneuroendocrine Carcinoma 6 156930 -NCIT:C7622 Recurrent Digestive System Carcinoma 5 156931 -NCIT:C151905 Recurrent Metastatic Digestive System Carcinoma 6 156932 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 7 156933 -NCIT:C153359 Recurrent Gastroesophageal Junction Adenocarcinoma 6 156934 -NCIT:C153574 Recurrent Ampulla of Vater Adenocarcinoma 6 156935 -NCIT:C153575 Recurrent Anal Adenocarcinoma 6 156936 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 7 156937 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 7 156938 -NCIT:C153802 Recurrent Appendix Carcinoma 6 156939 -NCIT:C179174 Recurrent Appendix Adenocarcinoma 7 156940 -NCIT:C153579 Recurrent Appendix Mucinous Adenocarcinoma 8 156941 -NCIT:C155938 Recurrent Digestive System Neuroendocrine Carcinoma 6 156942 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 7 156943 -NCIT:C156782 Recurrent Biliary Tract Carcinoma 6 156944 -NCIT:C153360 Recurrent Bile Duct Carcinoma 7 156945 -NCIT:C27325 Recurrent Cholangiocarcinoma 8 156946 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 9 156947 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 9 156948 -NCIT:C7893 Recurrent Extrahepatic Bile Duct Carcinoma 8 156949 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 9 156950 -NCIT:C4008 Recurrent Gallbladder Carcinoma 7 156951 -NCIT:C169102 Recurrent Anal Squamous Cell Carcinoma 6 156952 -NCIT:C175360 Recurrent Anal Canal Squamous Cell Carcinoma 7 156953 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 8 156954 -NCIT:C3999 Recurrent Esophageal Carcinoma 6 156955 -NCIT:C8627 Recurrent Esophageal Adenocarcinoma 7 156956 -NCIT:C8633 Recurrent Esophageal Squamous Cell Carcinoma 7 156957 -NCIT:C7110 Recurrent Liver Carcinoma 6 156958 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 7 156959 -NCIT:C7880 Recurrent Adult Liver Carcinoma 7 156960 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 8 156961 -NCIT:C9264 Recurrent Hepatocellular Carcinoma 7 156962 -NCIT:C154082 Recurrent Fibrolamellar Carcinoma 8 156963 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 8 156964 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 8 156965 -NCIT:C7626 Recurrent Pancreatic Carcinoma 6 156966 -NCIT:C155742 Recurrent Pancreatic Adenocarcinoma 7 156967 -NCIT:C153569 Recurrent Pancreatic Acinar Cell Carcinoma 8 156968 -NCIT:C153619 Recurrent Pancreatic Ductal Adenocarcinoma 8 156969 -NCIT:C153620 Recurrent Pancreatic Cystadenocarcinoma 8 156970 -NCIT:C7793 Recurrent Anal Canal Carcinoma 6 156971 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 7 156972 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 7 156973 -NCIT:C175360 Recurrent Anal Canal Squamous Cell Carcinoma 7 156974 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 8 156975 -NCIT:C9249 Recurrent AIDS-Related Anal Canal Carcinoma 7 156976 -NCIT:C7894 Recurrent Small Intestinal Carcinoma 6 156977 -NCIT:C9352 Recurrent Duodenal Carcinoma 7 156978 -NCIT:C8625 Recurrent Colorectal Carcinoma 6 156979 -NCIT:C162441 Recurrent Colorectal Adenocarcinoma 7 156980 -NCIT:C162442 Recurrent Colon Adenocarcinoma 8 156981 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 8 156982 -NCIT:C190199 Locally Recurrent Colorectal Carcinoma 7 156983 -NCIT:C190679 Recurrent Microsatellite Stable Colorectal Carcinoma 7 156984 -NCIT:C3998 Recurrent Colon Carcinoma 7 156985 -NCIT:C162442 Recurrent Colon Adenocarcinoma 8 156986 -NCIT:C8634 Recurrent Rectosigmoid Carcinoma 7 156987 -NCIT:C9238 Recurrent Rectal Carcinoma 7 156988 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 8 156989 -NCIT:C9237 Recurrent Gastric Carcinoma 6 156990 -NCIT:C154622 Recurrent Gastric Adenocarcinoma 7 156991 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 7 156992 -NCIT:C190198 Locally Recurrent Gastric Carcinoma 7 156993 -NCIT:C7724 Small Intestinal Carcinoma 5 156994 -NCIT:C123933 Childhood Small Intestinal Carcinoma 6 156995 -NCIT:C133716 Small Intestinal Cancer by AJCC v7 Stage 6 156996 -NCIT:C4892 Stage 0 Small Intestinal Cancer AJCC v7 7 156997 -NCIT:C5807 Stage I Small Intestinal Cancer AJCC v7 7 156998 -NCIT:C5808 Stage II Small Intestinal Cancer AJCC v7 7 156999 -NCIT:C87791 Stage IIA Small Intestinal Cancer AJCC v7 8 157000 -NCIT:C87792 Stage IIB Small Intestinal Cancer AJCC v7 8 157001 -NCIT:C5809 Stage III Small Intestinal Cancer AJCC v7 7 157002 -NCIT:C87793 Stage IIIA Small Intestinal Cancer AJCC v7 8 157003 -NCIT:C87795 Stage IIIB Small Intestinal Cancer AJCC v7 8 157004 -NCIT:C5810 Stage IV Small Intestinal Cancer AJCC v7 7 157005 -NCIT:C153356 Refractory Small Intestinal Carcinoma 6 157006 -NCIT:C181157 Jejunal Carcinoma 6 157007 -NCIT:C181158 Jejunal Adenocarcinoma 7 157008 -NCIT:C43534 Small Intestinal Squamous Cell Carcinoma 6 157009 -NCIT:C43535 Small Intestinal Adenosquamous Carcinoma 6 157010 -NCIT:C43537 Small Intestinal Medullary Carcinoma 6 157011 -NCIT:C43538 Small Intestinal Undifferentiated Carcinoma 6 157012 -NCIT:C4803 Duodenal Carcinoma 6 157013 -NCIT:C27323 Resectable Duodenal Carcinoma 7 157014 -NCIT:C169108 Resectable Periampullary Adenocarcinoma 8 157015 -NCIT:C7889 Duodenal Adenocarcinoma 7 157016 -NCIT:C27322 Periampullary Adenocarcinoma 8 157017 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 9 157018 -NCIT:C169108 Resectable Periampullary Adenocarcinoma 9 157019 -NCIT:C9352 Recurrent Duodenal Carcinoma 7 157020 -NCIT:C7888 Small Intestinal Adenocarcinoma 6 157021 -NCIT:C133893 Small Intestinal Adenocarcinoma by AJCC v8 Stage 7 157022 -NCIT:C133894 Stage 0 Small Intestinal Adenocarcinoma AJCC v8 8 157023 -NCIT:C133895 Stage I Small Intestinal Adenocarcinoma AJCC v8 8 157024 -NCIT:C133896 Stage II Small Intestinal Adenocarcinoma AJCC v8 8 157025 -NCIT:C133897 Stage IIA Small Intestinal Adenocarcinoma AJCC v8 9 157026 -NCIT:C133898 Stage IIB Small Intestinal Adenocarcinoma AJCC v8 9 157027 -NCIT:C133899 Stage III Small Intestinal Adenocarcinoma AJCC v8 8 157028 -NCIT:C133900 Stage IIIA Small Intestinal Adenocarcinoma AJCC v8 9 157029 -NCIT:C133901 Stage IIIB Small Intestinal Adenocarcinoma AJCC v8 9 157030 -NCIT:C133902 Stage IV Small Intestinal Adenocarcinoma AJCC v8 8 157031 -NCIT:C175516 Unresectable Small Intestinal Adenocarcinoma 7 157032 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 8 157033 -NCIT:C181158 Jejunal Adenocarcinoma 7 157034 -NCIT:C43536 Small Intestinal Mucinous Adenocarcinoma 7 157035 -NCIT:C43543 Small Intestinal Signet Ring Cell Carcinoma 7 157036 -NCIT:C7889 Duodenal Adenocarcinoma 7 157037 -NCIT:C27322 Periampullary Adenocarcinoma 8 157038 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 9 157039 -NCIT:C169108 Resectable Periampullary Adenocarcinoma 9 157040 -NCIT:C8934 Metastatic Small Intestinal Adenocarcinoma 7 157041 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 157042 -NCIT:C7894 Recurrent Small Intestinal Carcinoma 6 157043 -NCIT:C9352 Recurrent Duodenal Carcinoma 7 157044 -NCIT:C8637 Metastatic Small Intestinal Carcinoma 6 157045 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 7 157046 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 157047 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 7 157048 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 157049 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 157050 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 157051 -NCIT:C8934 Metastatic Small Intestinal Adenocarcinoma 7 157052 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 157053 -NCIT:C8638 Unresectable Small Intestinal Carcinoma 6 157054 -NCIT:C175516 Unresectable Small Intestinal Adenocarcinoma 7 157055 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 8 157056 -NCIT:C8639 Resectable Small Intestinal Carcinoma 6 157057 -NCIT:C27323 Resectable Duodenal Carcinoma 7 157058 -NCIT:C169108 Resectable Periampullary Adenocarcinoma 8 157059 -NCIT:C96064 Small Intestinal Neuroendocrine Carcinoma 6 157060 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 7 157061 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 157062 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 157063 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 157064 -NCIT:C27449 Small Intestinal Small Cell Neuroendocrine Carcinoma 7 157065 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 157066 -NCIT:C96065 Small Intestinal Large Cell Neuroendocrine Carcinoma 7 157067 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 157068 -NCIT:C96066 Small Intestinal Mixed Adenoneuroendocrine Carcinoma 6 157069 -NCIT:C7927 Liver and Intrahepatic Bile Duct Carcinoma 5 157070 -NCIT:C118630 Liver Adenosquamous Carcinoma 6 157071 -NCIT:C134604 Intrahepatic Bile Duct Cancer by AJCC v8 Stage 6 157072 -NCIT:C134609 Stage 0 Intrahepatic Bile Duct Cancer AJCC v8 7 157073 -NCIT:C134756 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v8 8 157074 -NCIT:C134610 Stage I Intrahepatic Bile Duct Cancer AJCC v8 7 157075 -NCIT:C134611 Stage IA Intrahepatic Bile Duct Cancer AJCC v8 8 157076 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 9 157077 -NCIT:C134612 Stage IB Intrahepatic Bile Duct Cancer AJCC v8 8 157078 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 9 157079 -NCIT:C134757 Stage I Intrahepatic Cholangiocarcinoma AJCC v8 8 157080 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 9 157081 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 9 157082 -NCIT:C134614 Stage II Intrahepatic Bile Duct Cancer AJCC v8 7 157083 -NCIT:C134760 Stage II Intrahepatic Cholangiocarcinoma AJCC v8 8 157084 -NCIT:C134615 Stage III Intrahepatic Bile Duct Cancer AJCC v8 7 157085 -NCIT:C134616 Stage IIIA Intrahepatic Bile Duct Cancer AJCC v8 8 157086 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 9 157087 -NCIT:C134618 Stage IIIB Intrahepatic Bile Duct Cancer AJCC v8 8 157088 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 9 157089 -NCIT:C134761 Stage III Intrahepatic Cholangiocarcinoma AJCC v8 8 157090 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 9 157091 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 9 157092 -NCIT:C134619 Stage IV Intrahepatic Bile Duct Cancer AJCC v8 7 157093 -NCIT:C134764 Stage IV Intrahepatic Cholangiocarcinoma AJCC v8 8 157094 -NCIT:C134755 Intrahepatic Cholangiocarcinoma by AJCC v8 Stage 7 157095 -NCIT:C134756 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v8 8 157096 -NCIT:C134757 Stage I Intrahepatic Cholangiocarcinoma AJCC v8 8 157097 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 9 157098 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 9 157099 -NCIT:C134760 Stage II Intrahepatic Cholangiocarcinoma AJCC v8 8 157100 -NCIT:C134761 Stage III Intrahepatic Cholangiocarcinoma AJCC v8 8 157101 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 9 157102 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 9 157103 -NCIT:C134764 Stage IV Intrahepatic Cholangiocarcinoma AJCC v8 8 157104 -NCIT:C153352 Refractory Liver Carcinoma 6 157105 -NCIT:C162450 Refractory Hepatocellular Carcinoma 7 157106 -NCIT:C188887 Refractory Fibrolamellar Carcinoma 8 157107 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 7 157108 -NCIT:C154088 Metastatic Liver Carcinoma 6 157109 -NCIT:C154091 Metastatic Hepatocellular Carcinoma 7 157110 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 8 157111 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 157112 -NCIT:C167336 Advanced Hepatocellular Carcinoma 8 157113 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 157114 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 157115 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 157116 -NCIT:C171298 Locally Advanced Liver Carcinoma 7 157117 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 157118 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 8 157119 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 7 157120 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 8 157121 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 8 157122 -NCIT:C165171 Unresectable Liver and Intrahepatic Bile Duct Carcinoma 6 157123 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 7 157124 -NCIT:C27345 Unresectable Hepatocellular Carcinoma 7 157125 -NCIT:C162602 Unresectable Fibrolamellar Carcinoma 8 157126 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 8 157127 -NCIT:C7878 Localized Unresectable Adult Liver Carcinoma 7 157128 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 8 157129 -NCIT:C165293 Resectable Liver and Intrahepatic Bile Duct Carcinoma 6 157130 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 7 157131 -NCIT:C7691 Resectable Hepatocellular Carcinoma 7 157132 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 8 157133 -NCIT:C7877 Localized Resectable Adult Liver Carcinoma 7 157134 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 8 157135 -NCIT:C172718 Liver Mixed Adenoneuroendocrine Carcinoma 6 157136 -NCIT:C3099 Hepatocellular Carcinoma 6 157137 -NCIT:C115132 Hepatocellular Carcinoma by BCLC Stage 7 157138 -NCIT:C115133 BCLC Stage 0 Hepatocellular Carcinoma 8 157139 -NCIT:C115139 BCLC Stage 0 Adult Hepatocellular Carcinoma 9 157140 -NCIT:C115135 BCLC Stage A Hepatocellular Carcinoma 8 157141 -NCIT:C115140 BCLC Stage A Adult Hepatocellular Carcinoma 9 157142 -NCIT:C115136 BCLC Stage B Hepatocellular Carcinoma 8 157143 -NCIT:C115141 BCLC Stage B Adult Hepatocellular Carcinoma 9 157144 -NCIT:C115137 BCLC Stage C Hepatocellular Carcinoma 8 157145 -NCIT:C115143 BCLC Stage C Adult Hepatocellular Carcinoma 9 157146 -NCIT:C115138 BCLC Stage D Hepatocellular Carcinoma 8 157147 -NCIT:C115144 BCLC Stage D Adult Hepatocellular Carcinoma 9 157148 -NCIT:C134515 Hepatocellular Carcinoma by AJCC v8 Stage 7 157149 -NCIT:C134516 Stage I Hepatocellular Carcinoma AJCC v8 8 157150 -NCIT:C134517 Stage IA Hepatocellular Carcinoma AJCC v8 9 157151 -NCIT:C134518 Stage IB Hepatocellular Carcinoma AJCC v8 9 157152 -NCIT:C134519 Stage II Hepatocellular Carcinoma AJCC v8 8 157153 -NCIT:C134520 Stage III Hepatocellular Carcinoma AJCC v8 8 157154 -NCIT:C134521 Stage IIIA Hepatocellular Carcinoma AJCC v8 9 157155 -NCIT:C134522 Stage IIIB Hepatocellular Carcinoma AJCC v8 9 157156 -NCIT:C134523 Stage IV Hepatocellular Carcinoma AJCC v8 8 157157 -NCIT:C134524 Stage IVA Hepatocellular Carcinoma AJCC v8 9 157158 -NCIT:C134525 Stage IVB Hepatocellular Carcinoma AJCC v8 9 157159 -NCIT:C154091 Metastatic Hepatocellular Carcinoma 7 157160 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 8 157161 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 157162 -NCIT:C167336 Advanced Hepatocellular Carcinoma 8 157163 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 157164 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 157165 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 157166 -NCIT:C162450 Refractory Hepatocellular Carcinoma 7 157167 -NCIT:C188887 Refractory Fibrolamellar Carcinoma 8 157168 -NCIT:C172709 Steatohepatitic Hepatocellular Carcinoma 7 157169 -NCIT:C27924 Alcohol-Related Hepatocellular Carcinoma 8 157170 -NCIT:C172710 Macrotrabecular Massive Hepatocellular Carcinoma 7 157171 -NCIT:C172712 Chromophobe Hepatocellular Carcinoma 7 157172 -NCIT:C172713 Neutrophil-Rich Hepatocellular Carcinoma 7 157173 -NCIT:C172714 Small Hepatocellular Carcinoma 7 157174 -NCIT:C172716 Small Progressed Hepatocellular Carcinoma 8 157175 -NCIT:C96772 Early Hepatocellular Carcinoma 8 157176 -NCIT:C27345 Unresectable Hepatocellular Carcinoma 7 157177 -NCIT:C162602 Unresectable Fibrolamellar Carcinoma 8 157178 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 8 157179 -NCIT:C27388 Scirrhous Hepatocellular Carcinoma 7 157180 -NCIT:C27635 Transplant-Related Hepatocellular Carcinoma 7 157181 -NCIT:C27686 Hepatitis Virus-Related Hepatocellular Carcinoma 7 157182 -NCIT:C27687 Hepatitis B Virus-Related Hepatocellular Carcinoma 8 157183 -NCIT:C27688 Hepatitis C Virus-Related Hepatocellular Carcinoma 8 157184 -NCIT:C27922 Aflatoxins-Related Hepatocellular Carcinoma 7 157185 -NCIT:C4131 Fibrolamellar Carcinoma 7 157186 -NCIT:C114992 Adult Fibrolamellar Carcinoma 8 157187 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 8 157188 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 157189 -NCIT:C154082 Recurrent Fibrolamellar Carcinoma 8 157190 -NCIT:C162602 Unresectable Fibrolamellar Carcinoma 8 157191 -NCIT:C188887 Refractory Fibrolamellar Carcinoma 8 157192 -NCIT:C189932 Childhood Fibrolamellar Carcinoma 8 157193 -NCIT:C43625 Pleomorphic Hepatocellular Carcinoma 7 157194 -NCIT:C114993 Adult Pleomorphic Hepatocellular Carcinoma 8 157195 -NCIT:C43627 Sarcomatoid Hepatocellular Carcinoma 7 157196 -NCIT:C5754 Clear Cell Hepatocellular Carcinoma 7 157197 -NCIT:C7691 Resectable Hepatocellular Carcinoma 7 157198 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 8 157199 -NCIT:C7955 Childhood Hepatocellular Carcinoma 7 157200 -NCIT:C189932 Childhood Fibrolamellar Carcinoma 8 157201 -NCIT:C5708 Stage III Childhood Hepatocellular Carcinoma AJCC v7 8 157202 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 8 157203 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 8 157204 -NCIT:C7838 Stage IV Childhood Hepatocellular Carcinoma AJCC v7 8 157205 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 8 157206 -NCIT:C7956 Adult Hepatocellular Carcinoma 7 157207 -NCIT:C114992 Adult Fibrolamellar Carcinoma 8 157208 -NCIT:C114993 Adult Pleomorphic Hepatocellular Carcinoma 8 157209 -NCIT:C115139 BCLC Stage 0 Adult Hepatocellular Carcinoma 8 157210 -NCIT:C115140 BCLC Stage A Adult Hepatocellular Carcinoma 8 157211 -NCIT:C115141 BCLC Stage B Adult Hepatocellular Carcinoma 8 157212 -NCIT:C115143 BCLC Stage C Adult Hepatocellular Carcinoma 8 157213 -NCIT:C115144 BCLC Stage D Adult Hepatocellular Carcinoma 8 157214 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 8 157215 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 8 157216 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 8 157217 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 8 157218 -NCIT:C90510 Hepatocellular Carcinoma by AJCC v6 Stage 7 157219 -NCIT:C5758 Stage I Hepatocellular Carcinoma AJCC v6 and v7 8 157220 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 9 157221 -NCIT:C5759 Stage II Hepatocellular Carcinoma AJCC v6 and v7 8 157222 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 9 157223 -NCIT:C5760 Stage III Hepatocellular Carcinoma AJCC v6 8 157224 -NCIT:C5763 Stage IV Hepatocellular Carcinoma AJCC v6 8 157225 -NCIT:C91228 Hepatocellular Carcinoma by AJCC v7 Stage 7 157226 -NCIT:C5758 Stage I Hepatocellular Carcinoma AJCC v6 and v7 8 157227 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 9 157228 -NCIT:C5759 Stage II Hepatocellular Carcinoma AJCC v6 and v7 8 157229 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 9 157230 -NCIT:C90180 Stage III Hepatocellular Carcinoma AJCC v7 8 157231 -NCIT:C5708 Stage III Childhood Hepatocellular Carcinoma AJCC v7 9 157232 -NCIT:C5761 Stage IIIA Hepatocellular Carcinoma AJCC v7 9 157233 -NCIT:C5762 Stage IIIB Hepatocellular Carcinoma AJCC v7 9 157234 -NCIT:C88044 Stage IIIC Hepatocellular Carcinoma AJCC v7 9 157235 -NCIT:C90181 Stage IV Hepatocellular Carcinoma AJCC v7 8 157236 -NCIT:C5764 Stage IVA Hepatocellular Carcinoma AJCC v7 9 157237 -NCIT:C5765 Stage IVB Hepatocellular Carcinoma AJCC v7 9 157238 -NCIT:C7838 Stage IV Childhood Hepatocellular Carcinoma AJCC v7 9 157239 -NCIT:C9264 Recurrent Hepatocellular Carcinoma 7 157240 -NCIT:C154082 Recurrent Fibrolamellar Carcinoma 8 157241 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 8 157242 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 8 157243 -NCIT:C96788 Lymphocyte-Rich Hepatocellular Carcinoma 7 157244 -NCIT:C96789 Well Differentiated Hepatocellular Carcinoma 7 157245 -NCIT:C96790 Moderately Differentiated Hepatocellular Carcinoma 7 157246 -NCIT:C96791 Poorly Differentiated Hepatocellular Carcinoma 7 157247 -NCIT:C35417 Intrahepatic Cholangiocarcinoma 6 157248 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 7 157249 -NCIT:C134514 Intrahepatic Cholangiocarcinoma by AJCC v7 Stage 7 157250 -NCIT:C88049 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v7 8 157251 -NCIT:C88050 Stage I Intrahepatic Cholangiocarcinoma AJCC v7 8 157252 -NCIT:C88051 Stage II Intrahepatic Cholangiocarcinoma AJCC v7 8 157253 -NCIT:C88052 Stage III Intrahepatic Cholangiocarcinoma AJCC v7 8 157254 -NCIT:C88053 Stage IVA Intrahepatic Cholangiocarcinoma AJCC v7 8 157255 -NCIT:C88054 Stage IVB Intrahepatic Cholangiocarcinoma AJCC v7 8 157256 -NCIT:C134755 Intrahepatic Cholangiocarcinoma by AJCC v8 Stage 7 157257 -NCIT:C134756 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v8 8 157258 -NCIT:C134757 Stage I Intrahepatic Cholangiocarcinoma AJCC v8 8 157259 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 9 157260 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 9 157261 -NCIT:C134760 Stage II Intrahepatic Cholangiocarcinoma AJCC v8 8 157262 -NCIT:C134761 Stage III Intrahepatic Cholangiocarcinoma AJCC v8 8 157263 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 9 157264 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 9 157265 -NCIT:C134764 Stage IV Intrahepatic Cholangiocarcinoma AJCC v8 8 157266 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 7 157267 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 7 157268 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 7 157269 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 8 157270 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 8 157271 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 7 157272 -NCIT:C41617 Cholangiolocellular Carcinoma 7 157273 -NCIT:C41618 Mucin-Producing Intrahepatic Cholangiocarcinoma 7 157274 -NCIT:C41619 Signet Ring Cell Intrahepatic Cholangiocarcinoma 7 157275 -NCIT:C41620 Sarcomatoid Intrahepatic Cholangiocarcinoma 7 157276 -NCIT:C43848 Clear Cell Intrahepatic Cholangiocarcinoma 7 157277 -NCIT:C96804 Large Duct Intrahepatic Cholangiocarcinoma 7 157278 -NCIT:C96805 Small Duct Intrahepatic Cholangiocarcinoma 7 157279 -NCIT:C96949 Intrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 7 157280 -NCIT:C3828 Combined Hepatocellular Carcinoma and Cholangiocarcinoma 6 157281 -NCIT:C114987 Adult Combined Hepatocellular Carcinoma and Cholangiocarcinoma 7 157282 -NCIT:C7110 Recurrent Liver Carcinoma 6 157283 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 7 157284 -NCIT:C7880 Recurrent Adult Liver Carcinoma 7 157285 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 8 157286 -NCIT:C9264 Recurrent Hepatocellular Carcinoma 7 157287 -NCIT:C154082 Recurrent Fibrolamellar Carcinoma 8 157288 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 8 157289 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 8 157290 -NCIT:C7116 Stage I Liver Cancer 6 157291 -NCIT:C134516 Stage I Hepatocellular Carcinoma AJCC v8 7 157292 -NCIT:C134517 Stage IA Hepatocellular Carcinoma AJCC v8 8 157293 -NCIT:C134518 Stage IB Hepatocellular Carcinoma AJCC v8 8 157294 -NCIT:C134610 Stage I Intrahepatic Bile Duct Cancer AJCC v8 7 157295 -NCIT:C134611 Stage IA Intrahepatic Bile Duct Cancer AJCC v8 8 157296 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 9 157297 -NCIT:C134612 Stage IB Intrahepatic Bile Duct Cancer AJCC v8 8 157298 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 9 157299 -NCIT:C134757 Stage I Intrahepatic Cholangiocarcinoma AJCC v8 8 157300 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 9 157301 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 9 157302 -NCIT:C5758 Stage I Hepatocellular Carcinoma AJCC v6 and v7 7 157303 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 8 157304 -NCIT:C88050 Stage I Intrahepatic Cholangiocarcinoma AJCC v7 7 157305 -NCIT:C94775 Stage I Adult Liver Cancer AJCC v7 7 157306 -NCIT:C7117 Stage II Liver Cancer 6 157307 -NCIT:C134519 Stage II Hepatocellular Carcinoma AJCC v8 7 157308 -NCIT:C134614 Stage II Intrahepatic Bile Duct Cancer AJCC v8 7 157309 -NCIT:C134760 Stage II Intrahepatic Cholangiocarcinoma AJCC v8 8 157310 -NCIT:C5759 Stage II Hepatocellular Carcinoma AJCC v6 and v7 7 157311 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 8 157312 -NCIT:C88051 Stage II Intrahepatic Cholangiocarcinoma AJCC v7 7 157313 -NCIT:C94776 Stage II Adult Liver Cancer AJCC v7 7 157314 -NCIT:C7118 Stage III Liver Cancer 6 157315 -NCIT:C134520 Stage III Hepatocellular Carcinoma AJCC v8 7 157316 -NCIT:C134521 Stage IIIA Hepatocellular Carcinoma AJCC v8 8 157317 -NCIT:C134522 Stage IIIB Hepatocellular Carcinoma AJCC v8 8 157318 -NCIT:C134615 Stage III Intrahepatic Bile Duct Cancer AJCC v8 7 157319 -NCIT:C134616 Stage IIIA Intrahepatic Bile Duct Cancer AJCC v8 8 157320 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 9 157321 -NCIT:C134618 Stage IIIB Intrahepatic Bile Duct Cancer AJCC v8 8 157322 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 9 157323 -NCIT:C134761 Stage III Intrahepatic Cholangiocarcinoma AJCC v8 8 157324 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 9 157325 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 9 157326 -NCIT:C5760 Stage III Hepatocellular Carcinoma AJCC v6 7 157327 -NCIT:C88052 Stage III Intrahepatic Cholangiocarcinoma AJCC v7 7 157328 -NCIT:C90180 Stage III Hepatocellular Carcinoma AJCC v7 7 157329 -NCIT:C5708 Stage III Childhood Hepatocellular Carcinoma AJCC v7 8 157330 -NCIT:C5761 Stage IIIA Hepatocellular Carcinoma AJCC v7 8 157331 -NCIT:C5762 Stage IIIB Hepatocellular Carcinoma AJCC v7 8 157332 -NCIT:C88044 Stage IIIC Hepatocellular Carcinoma AJCC v7 8 157333 -NCIT:C94777 Stage III Adult Liver Cancer AJCC v7 7 157334 -NCIT:C94779 Stage IIIA Adult Liver Cancer AJCC v7 8 157335 -NCIT:C94780 Stage IIIB Adult Liver Cancer AJCC v7 8 157336 -NCIT:C94781 Stage IIIC Adult Liver Cancer AJCC v7 8 157337 -NCIT:C7121 Stage IV Liver Cancer 6 157338 -NCIT:C134523 Stage IV Hepatocellular Carcinoma AJCC v8 7 157339 -NCIT:C134524 Stage IVA Hepatocellular Carcinoma AJCC v8 8 157340 -NCIT:C134525 Stage IVB Hepatocellular Carcinoma AJCC v8 8 157341 -NCIT:C134619 Stage IV Intrahepatic Bile Duct Cancer AJCC v8 7 157342 -NCIT:C134764 Stage IV Intrahepatic Cholangiocarcinoma AJCC v8 8 157343 -NCIT:C5763 Stage IV Hepatocellular Carcinoma AJCC v6 7 157344 -NCIT:C7122 Stage IVA Liver Cancer 7 157345 -NCIT:C134524 Stage IVA Hepatocellular Carcinoma AJCC v8 8 157346 -NCIT:C5764 Stage IVA Hepatocellular Carcinoma AJCC v7 8 157347 -NCIT:C88053 Stage IVA Intrahepatic Cholangiocarcinoma AJCC v7 8 157348 -NCIT:C7123 Stage IVB Liver Cancer 7 157349 -NCIT:C134525 Stage IVB Hepatocellular Carcinoma AJCC v8 8 157350 -NCIT:C5765 Stage IVB Hepatocellular Carcinoma AJCC v7 8 157351 -NCIT:C88054 Stage IVB Intrahepatic Cholangiocarcinoma AJCC v7 8 157352 -NCIT:C90181 Stage IV Hepatocellular Carcinoma AJCC v7 7 157353 -NCIT:C5764 Stage IVA Hepatocellular Carcinoma AJCC v7 8 157354 -NCIT:C5765 Stage IVB Hepatocellular Carcinoma AJCC v7 8 157355 -NCIT:C7838 Stage IV Childhood Hepatocellular Carcinoma AJCC v7 8 157356 -NCIT:C94782 Stage IV Adult Liver Cancer AJCC v7 7 157357 -NCIT:C7711 Adult Liver Carcinoma 6 157358 -NCIT:C114987 Adult Combined Hepatocellular Carcinoma and Cholangiocarcinoma 7 157359 -NCIT:C7877 Localized Resectable Adult Liver Carcinoma 7 157360 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 8 157361 -NCIT:C7878 Localized Unresectable Adult Liver Carcinoma 7 157362 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 8 157363 -NCIT:C7880 Recurrent Adult Liver Carcinoma 7 157364 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 8 157365 -NCIT:C7956 Adult Hepatocellular Carcinoma 7 157366 -NCIT:C114992 Adult Fibrolamellar Carcinoma 8 157367 -NCIT:C114993 Adult Pleomorphic Hepatocellular Carcinoma 8 157368 -NCIT:C115139 BCLC Stage 0 Adult Hepatocellular Carcinoma 8 157369 -NCIT:C115140 BCLC Stage A Adult Hepatocellular Carcinoma 8 157370 -NCIT:C115141 BCLC Stage B Adult Hepatocellular Carcinoma 8 157371 -NCIT:C115143 BCLC Stage C Adult Hepatocellular Carcinoma 8 157372 -NCIT:C115144 BCLC Stage D Adult Hepatocellular Carcinoma 8 157373 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 8 157374 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 8 157375 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 8 157376 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 8 157377 -NCIT:C94775 Stage I Adult Liver Cancer AJCC v7 7 157378 -NCIT:C94776 Stage II Adult Liver Cancer AJCC v7 7 157379 -NCIT:C94777 Stage III Adult Liver Cancer AJCC v7 7 157380 -NCIT:C94779 Stage IIIA Adult Liver Cancer AJCC v7 8 157381 -NCIT:C94780 Stage IIIB Adult Liver Cancer AJCC v7 8 157382 -NCIT:C94781 Stage IIIC Adult Liver Cancer AJCC v7 8 157383 -NCIT:C94782 Stage IV Adult Liver Cancer AJCC v7 7 157384 -NCIT:C96787 Liver Neuroendocrine Carcinoma 6 157385 -NCIT:C172722 Liver Large Cell Neuroendocrine Carcinoma 7 157386 -NCIT:C172725 Liver Small Cell Neuroendocrine Carcinoma 7 157387 -NCIT:C96792 Liver Undifferentiated Carcinoma 6 157388 -NCIT:C96848 Liver Carcinosarcoma 6 157389 -NCIT:C96947 Intrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 6 157390 -NCIT:C9291 Anal Carcinoma 5 157391 -NCIT:C133794 Anal Cancer by AJCC v8 Stage 6 157392 -NCIT:C133795 Stage 0 Anal Cancer AJCC v8 7 157393 -NCIT:C157575 Anal Intraepithelial Neoplasia 3 8 157394 -NCIT:C133796 Stage I Anal Cancer AJCC v8 7 157395 -NCIT:C133797 Stage II Anal Cancer AJCC v8 7 157396 -NCIT:C133798 Stage IIA Anal Cancer AJCC v8 8 157397 -NCIT:C133799 Stage IIB Anal Cancer AJCC v8 8 157398 -NCIT:C133800 Stage III Anal Cancer AJCC v8 7 157399 -NCIT:C133801 Stage IIIA Anal Cancer AJCC v8 8 157400 -NCIT:C133802 Stage IIIB Anal Cancer AJCC v8 8 157401 -NCIT:C133803 Stage IIIC Anal Cancer AJCC v8 8 157402 -NCIT:C133804 Stage IV Anal Cancer AJCC v8 7 157403 -NCIT:C137857 Refractory Anal Carcinoma 6 157404 -NCIT:C173334 Refractory Anal Canal Squamous Cell Carcinoma 7 157405 -NCIT:C167354 Microinvasive Anal Carcinoma 6 157406 -NCIT:C170514 Metastatic Anal Carcinoma 6 157407 -NCIT:C168977 Locally Advanced Anal Carcinoma 7 157408 -NCIT:C169103 Metastatic Anal Squamous Cell Carcinoma 7 157409 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 157410 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 157411 -NCIT:C170515 Advanced Anal Carcinoma 7 157412 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 8 157413 -NCIT:C5612 Metastatic Anal Canal Carcinoma 7 157414 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 157415 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 157416 -NCIT:C5600 Anal Adenocarcinoma 6 157417 -NCIT:C153575 Recurrent Anal Adenocarcinoma 7 157418 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 8 157419 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 8 157420 -NCIT:C5598 Anal Paget Disease 7 157421 -NCIT:C7476 Anal Margin Paget Disease 8 157422 -NCIT:C7477 Anal Canal Paget Disease 8 157423 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 9 157424 -NCIT:C7471 Anal Canal Adenocarcinoma 7 157425 -NCIT:C5606 Anal Mucinous Adenocarcinoma 8 157426 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 9 157427 -NCIT:C7477 Anal Canal Paget Disease 8 157428 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 9 157429 -NCIT:C7474 Anal Extramucosal (Perianal) Adenocarcinoma 7 157430 -NCIT:C5609 Anal Glands Adenocarcinoma 8 157431 -NCIT:C7475 Anal Adenocarcinoma within Anorectal Fistula 8 157432 -NCIT:C7472 Anal Margin Carcinoma 6 157433 -NCIT:C6925 Anal Margin Squamous Cell Carcinoma 7 157434 -NCIT:C7473 Anal Margin Basal Cell Carcinoma 7 157435 -NCIT:C7476 Anal Margin Paget Disease 7 157436 -NCIT:C7489 Anal Canal Carcinoma 6 157437 -NCIT:C133095 AIDS-Related Anal Canal Carcinoma 7 157438 -NCIT:C27282 Stage 0 AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 157439 -NCIT:C27283 Stage I AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 157440 -NCIT:C27284 Stage II AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 157441 -NCIT:C27285 Stage III AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 157442 -NCIT:C27286 Stage IV AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 157443 -NCIT:C9249 Recurrent AIDS-Related Anal Canal Carcinoma 8 157444 -NCIT:C133787 Anal Canal Cancer by AJCC v6 and v7 Stage 7 157445 -NCIT:C6873 Stage IV Anal Canal Cancer AJCC v6 and v7 8 157446 -NCIT:C27286 Stage IV AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 157447 -NCIT:C7775 Stage II Anal Canal Cancer AJCC v6 and v7 8 157448 -NCIT:C27284 Stage II AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 157449 -NCIT:C7776 Stage III Anal Canal Cancer AJCC v6 and v7 8 157450 -NCIT:C27285 Stage III AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 157451 -NCIT:C5925 Stage IIIA Anal Canal Cancer AJCC v6 and v7 9 157452 -NCIT:C5926 Stage IIIB Anal Canal Cancer AJCC v6 and v7 9 157453 -NCIT:C7794 Stage 0 Anal Canal Cancer AJCC v6 and v7 8 157454 -NCIT:C27282 Stage 0 AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 157455 -NCIT:C9037 Stage I Anal Canal Cancer AJCC v6 and v7 8 157456 -NCIT:C27283 Stage I AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 157457 -NCIT:C5612 Metastatic Anal Canal Carcinoma 7 157458 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 157459 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 157460 -NCIT:C7469 Anal Canal Squamous Cell Carcinoma 7 157461 -NCIT:C173334 Refractory Anal Canal Squamous Cell Carcinoma 8 157462 -NCIT:C175360 Recurrent Anal Canal Squamous Cell Carcinoma 8 157463 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 9 157464 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 157465 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 157466 -NCIT:C175384 Unresectable Anal Canal Squamous Cell Carcinoma 8 157467 -NCIT:C7471 Anal Canal Adenocarcinoma 7 157468 -NCIT:C5606 Anal Mucinous Adenocarcinoma 8 157469 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 9 157470 -NCIT:C7477 Anal Canal Paget Disease 8 157471 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 9 157472 -NCIT:C7793 Recurrent Anal Canal Carcinoma 7 157473 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 8 157474 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 8 157475 -NCIT:C175360 Recurrent Anal Canal Squamous Cell Carcinoma 8 157476 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 9 157477 -NCIT:C9249 Recurrent AIDS-Related Anal Canal Carcinoma 8 157478 -NCIT:C8255 Anal Canal Cloacogenic Carcinoma 7 157479 -NCIT:C96529 Anal Canal Undifferentiated Carcinoma 7 157480 -NCIT:C96549 Anal Canal Neuroendocrine Carcinoma 7 157481 -NCIT:C96550 Anal Canal Large Cell Neuroendocrine Carcinoma 8 157482 -NCIT:C96551 Anal Canal Small Cell Neuroendocrine Carcinoma 8 157483 -NCIT:C96553 Anal Canal Mixed Adenoneuroendocrine Carcinoma 7 157484 -NCIT:C9161 Anal Squamous Cell Carcinoma 6 157485 -NCIT:C157575 Anal Intraepithelial Neoplasia 3 7 157486 -NCIT:C169102 Recurrent Anal Squamous Cell Carcinoma 7 157487 -NCIT:C175360 Recurrent Anal Canal Squamous Cell Carcinoma 8 157488 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 9 157489 -NCIT:C169103 Metastatic Anal Squamous Cell Carcinoma 7 157490 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 157491 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 157492 -NCIT:C173156 Unresectable Anal Squamous Cell Carcinoma 7 157493 -NCIT:C175384 Unresectable Anal Canal Squamous Cell Carcinoma 8 157494 -NCIT:C27681 Human Papillomavirus-Related Anal Squamous Cell Carcinoma 7 157495 -NCIT:C6925 Anal Margin Squamous Cell Carcinoma 7 157496 -NCIT:C7469 Anal Canal Squamous Cell Carcinoma 7 157497 -NCIT:C173334 Refractory Anal Canal Squamous Cell Carcinoma 8 157498 -NCIT:C175360 Recurrent Anal Canal Squamous Cell Carcinoma 8 157499 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 9 157500 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 157501 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 157502 -NCIT:C175384 Unresectable Anal Canal Squamous Cell Carcinoma 8 157503 -NCIT:C7470 Anal Verrucous Carcinoma 7 157504 -NCIT:C8256 Anal Basaloid Carcinoma 7 157505 -NCIT:C9278 AIDS-Related Anal Carcinoma 6 157506 -NCIT:C133095 AIDS-Related Anal Canal Carcinoma 7 157507 -NCIT:C27282 Stage 0 AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 157508 -NCIT:C27283 Stage I AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 157509 -NCIT:C27284 Stage II AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 157510 -NCIT:C27285 Stage III AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 157511 -NCIT:C27286 Stage IV AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 157512 -NCIT:C9249 Recurrent AIDS-Related Anal Canal Carcinoma 8 157513 -NCIT:C9296 Gastroesophageal Junction Adenocarcinoma 5 157514 -NCIT:C133548 Gastroesophageal Junction Adenocarcinoma by AJCC v8 Stage 6 157515 -NCIT:C133549 Gastroesophageal Junction Adenocarcinoma by AJCC v8 Clinical Stage 7 157516 -NCIT:C133550 Clinical Stage 0 Gastroesophageal Junction Adenocarcinoma AJCC v8 8 157517 -NCIT:C133552 Clinical Stage I Gastroesophageal Junction Adenocarcinoma AJCC v8 8 157518 -NCIT:C133553 Clinical Stage II Gastroesophageal Junction Adenocarcinoma AJCC v8 8 157519 -NCIT:C133554 Clinical Stage IIA Gastroesophageal Junction Adenocarcinoma AJCC v8 9 157520 -NCIT:C133555 Clinical Stage IIB Gastroesophageal Junction Adenocarcinoma AJCC v8 9 157521 -NCIT:C133556 Clinical Stage III Gastroesophageal Junction Adenocarcinoma AJCC v8 8 157522 -NCIT:C133557 Clinical Stage IV Gastroesophageal Junction Adenocarcinoma AJCC v8 8 157523 -NCIT:C133558 Clinical Stage IVA Gastroesophageal Junction Adenocarcinoma AJCC v8 9 157524 -NCIT:C133560 Clinical Stage IVB Gastroesophageal Junction Adenocarcinoma AJCC v8 9 157525 -NCIT:C133563 Gastroesophageal Junction Adenocarcinoma by AJCC v8 Pathologic Stage 7 157526 -NCIT:C133564 Pathologic Stage 0 Gastroesophageal Junction Adenocarcinoma AJCC v8 8 157527 -NCIT:C133565 Pathologic Stage I Gastroesophageal Junction Adenocarcinoma AJCC v8 8 157528 -NCIT:C133566 Pathologic Stage IA Gastroesophageal Junction Adenocarcinoma AJCC v8 9 157529 -NCIT:C133567 Pathologic Stage IB Gastroesophageal Junction Adenocarcinoma AJCC v8 9 157530 -NCIT:C133568 Pathologic Stage IC Gastroesophageal Junction Adenocarcinoma AJCC v8 9 157531 -NCIT:C133570 Pathologic Stage II Gastroesophageal Junction Adenocarcinoma AJCC v8 8 157532 -NCIT:C133572 Pathologic Stage IIA Gastroesophageal Junction Adenocarcinoma AJCC v8 9 157533 -NCIT:C133573 Pathologic Stage IIB Gastroesophageal Junction Adenocarcinoma AJCC v8 9 157534 -NCIT:C133575 Pathologic Stage III Gastroesophageal Junction Adenocarcinoma AJCC v8 8 157535 -NCIT:C133577 Pathologic Stage IIIA Gastroesophageal Junction Adenocarcinoma AJCC v8 9 157536 -NCIT:C133579 Pathologic Stage IIIB Gastroesophageal Junction Adenocarcinoma AJCC v8 9 157537 -NCIT:C133580 Pathologic Stage IV Gastroesophageal Junction Adenocarcinoma AJCC v8 8 157538 -NCIT:C133581 Pathologic Stage IVA Gastroesophageal Junction Adenocarcinoma AJCC v8 9 157539 -NCIT:C133582 Pathologic Stage IVB Gastroesophageal Junction Adenocarcinoma AJCC v8 9 157540 -NCIT:C133583 Gastroesophageal Junction Adenocarcinoma by AJCC v8 Postneoadjuvant Therapy Stage 7 157541 -NCIT:C133584 Postneoadjuvant Therapy Stage I Gastroesophageal Junction Adenocarcinoma AJCC v8 8 157542 -NCIT:C133585 Postneoadjuvant Therapy Stage II Gastroesophageal Junction Adenocarcinoma AJCC v8 8 157543 -NCIT:C133586 Postneoadjuvant Therapy Stage III Gastroesophageal Junction Adenocarcinoma AJCC v8 8 157544 -NCIT:C133587 Postneoadjuvant Therapy Stage IIIA Gastroesophageal Junction Adenocarcinoma AJCC v8 9 157545 -NCIT:C133588 Postneoadjuvant Therapy Stage IIIB Gastroesophageal Junction Adenocarcinoma AJCC v8 9 157546 -NCIT:C133589 Postneoadjuvant Therapy Stage IV Gastroesophageal Junction Adenocarcinoma AJCC v8 8 157547 -NCIT:C133590 Postneoadjuvant Therapy Stage IVA Gastroesophageal Junction Adenocarcinoma AJCC v8 9 157548 -NCIT:C133591 Postneoadjuvant Therapy Stage IVB Gastroesophageal Junction Adenocarcinoma AJCC v8 9 157549 -NCIT:C150577 Metastatic Gastroesophageal Junction Adenocarcinoma 6 157550 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 7 157551 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 7 157552 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 157553 -NCIT:C150578 Unresectable Gastroesophageal Junction Adenocarcinoma 6 157554 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 7 157555 -NCIT:C153359 Recurrent Gastroesophageal Junction Adenocarcinoma 6 157556 -NCIT:C156166 Localized Gastroesophageal Junction Adenocarcinoma 6 157557 -NCIT:C162538 Refractory Gastroesophageal Junction Adenocarcinoma 6 157558 -NCIT:C9330 Appendix Carcinoma 5 157559 -NCIT:C133733 Appendix Carcinoma by AJCC v7 Stage 6 157560 -NCIT:C4593 Stage 0 Appendix Carcinoma AJCC v7 7 157561 -NCIT:C87798 Stage I Appendix Carcinoma AJCC v7 7 157562 -NCIT:C87799 Stage IIA Appendix Carcinoma AJCC v7 7 157563 -NCIT:C87800 Stage IIB Appendix Carcinoma AJCC v7 7 157564 -NCIT:C87801 Stage IIC Appendix Carcinoma AJCC v7 7 157565 -NCIT:C87803 Stage IIIA Appendix Carcinoma AJCC v7 7 157566 -NCIT:C87804 Stage IIIB Appendix Carcinoma AJCC v7 7 157567 -NCIT:C87805 Stage IIIC Appendix Carcinoma AJCC v7 7 157568 -NCIT:C87806 Stage IVA Appendix Carcinoma AJCC v7 7 157569 -NCIT:C87807 Stage IVB Appendix Carcinoma AJCC v7 7 157570 -NCIT:C87808 Stage IVC Appendix Carcinoma AJCC v7 7 157571 -NCIT:C134117 Appendix Carcinoma by AJCC v8 Stage 6 157572 -NCIT:C134118 Stage 0 Appendix Carcinoma AJCC v8 7 157573 -NCIT:C134119 Stage 0 Low Grade Appendix Mucinous Neoplasm (LAMN) AJCC v8 7 157574 -NCIT:C134120 Stage I Appendix Carcinoma AJCC v8 7 157575 -NCIT:C134121 Stage II Appendix Carcinoma AJCC v8 7 157576 -NCIT:C134122 Stage IIA Appendix Carcinoma AJCC v8 8 157577 -NCIT:C134123 Stage IIB Appendix Carcinoma AJCC v8 8 157578 -NCIT:C134124 Stage IIC Appendix Carcinoma AJCC v8 8 157579 -NCIT:C134125 Stage III Appendix Carcinoma AJCC v8 7 157580 -NCIT:C134126 Stage IIIA Appendix Carcinoma AJCC v8 8 157581 -NCIT:C134127 Stage IIIB Appendix Carcinoma AJCC v8 8 157582 -NCIT:C134128 Stage IIIC Appendix Carcinoma AJCC v8 8 157583 -NCIT:C134129 Stage IV Appendix Carcinoma AJCC v8 7 157584 -NCIT:C134130 Stage IVA Appendix Carcinoma AJCC v8 8 157585 -NCIT:C134131 Stage IVB Appendix Carcinoma AJCC v8 8 157586 -NCIT:C134132 Stage IVC Appendix Carcinoma AJCC v8 8 157587 -NCIT:C153802 Recurrent Appendix Carcinoma 6 157588 -NCIT:C179174 Recurrent Appendix Adenocarcinoma 7 157589 -NCIT:C153579 Recurrent Appendix Mucinous Adenocarcinoma 8 157590 -NCIT:C162275 Metastatic Appendix Carcinoma 6 157591 -NCIT:C182104 Metastatic Appendix Adenocarcinoma 7 157592 -NCIT:C162274 Metastatic Appendix Mucinous Adenocarcinoma 8 157593 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 157594 -NCIT:C179177 Refractory Appendix Carcinoma 6 157595 -NCIT:C179178 Refractory Appendix Adenocarcinoma 7 157596 -NCIT:C43556 Appendix Undifferentiated Carcinoma 6 157597 -NCIT:C43564 Appendix Mixed Adenoneuroendocrine Carcinoma 6 157598 -NCIT:C3689 Appendix Goblet Cell Adenocarcinoma 7 157599 -NCIT:C7718 Appendix Adenocarcinoma 6 157600 -NCIT:C179174 Recurrent Appendix Adenocarcinoma 7 157601 -NCIT:C153579 Recurrent Appendix Mucinous Adenocarcinoma 8 157602 -NCIT:C179178 Refractory Appendix Adenocarcinoma 7 157603 -NCIT:C182104 Metastatic Appendix Adenocarcinoma 7 157604 -NCIT:C162274 Metastatic Appendix Mucinous Adenocarcinoma 8 157605 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 157606 -NCIT:C43554 Appendix Signet Ring Cell Carcinoma 7 157607 -NCIT:C43558 Appendix Mucinous Adenocarcinoma 7 157608 -NCIT:C153579 Recurrent Appendix Mucinous Adenocarcinoma 8 157609 -NCIT:C162274 Metastatic Appendix Mucinous Adenocarcinoma 8 157610 -NCIT:C5511 Appendix Mucinous Cystadenocarcinoma 8 157611 -NCIT:C96425 Appendix Neuroendocrine Carcinoma 6 157612 -NCIT:C43555 Appendix Small Cell Neuroendocrine Carcinoma 7 157613 -NCIT:C96426 Appendix Large Cell Neuroendocrine Carcinoma 7 157614 -NCIT:C95405 Digestive System Neuroendocrine Carcinoma 5 157615 -NCIT:C126324 Gastroesophageal Junction Neuroendocrine Carcinoma 6 157616 -NCIT:C126323 Gastroesophageal Junction Large Cell Neuroendocrine Carcinoma 7 157617 -NCIT:C126325 Gastroesophageal Junction Small Cell Neuroendocrine Carcinoma 7 157618 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 7 157619 -NCIT:C154617 Digestive System Large Cell Neuroendocrine Carcinoma 6 157620 -NCIT:C126323 Gastroesophageal Junction Large Cell Neuroendocrine Carcinoma 7 157621 -NCIT:C172722 Liver Large Cell Neuroendocrine Carcinoma 7 157622 -NCIT:C95582 Pancreatic Large Cell Neuroendocrine Carcinoma 7 157623 -NCIT:C95620 Esophageal Large Cell Neuroendocrine Carcinoma 7 157624 -NCIT:C95885 Gastric Large Cell Neuroendocrine Carcinoma 7 157625 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 157626 -NCIT:C95985 Ampulla of Vater Large Cell Neuroendocrine Carcinoma 7 157627 -NCIT:C96065 Small Intestinal Large Cell Neuroendocrine Carcinoma 7 157628 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 157629 -NCIT:C96157 Colorectal Large Cell Neuroendocrine Carcinoma 7 157630 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 8 157631 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 8 157632 -NCIT:C96426 Appendix Large Cell Neuroendocrine Carcinoma 7 157633 -NCIT:C96550 Anal Canal Large Cell Neuroendocrine Carcinoma 7 157634 -NCIT:C96921 Gallbladder Large Cell Neuroendocrine Carcinoma 7 157635 -NCIT:C96958 Extrahepatic Bile Duct Large Cell Neuroendocrine Carcinoma 7 157636 -NCIT:C154641 Digestive System Small Cell Neuroendocrine Carcinoma 6 157637 -NCIT:C126325 Gastroesophageal Junction Small Cell Neuroendocrine Carcinoma 7 157638 -NCIT:C172725 Liver Small Cell Neuroendocrine Carcinoma 7 157639 -NCIT:C27449 Small Intestinal Small Cell Neuroendocrine Carcinoma 7 157640 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 157641 -NCIT:C43555 Appendix Small Cell Neuroendocrine Carcinoma 7 157642 -NCIT:C43587 Colorectal Small Cell Neuroendocrine Carcinoma 7 157643 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 8 157644 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 8 157645 -NCIT:C5845 Extrahepatic Bile Duct Small Cell Neuroendocrine Carcinoma 7 157646 -NCIT:C6655 Ampulla of Vater Small Cell Neuroendocrine Carcinoma 7 157647 -NCIT:C6762 Esophageal Small Cell Neuroendocrine Carcinoma 7 157648 -NCIT:C6763 Gallbladder Small Cell Neuroendocrine Carcinoma 7 157649 -NCIT:C6764 Gastric Small Cell Neuroendocrine Carcinoma 7 157650 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 157651 -NCIT:C95583 Pancreatic Small Cell Neuroendocrine Carcinoma 7 157652 -NCIT:C96551 Anal Canal Small Cell Neuroendocrine Carcinoma 7 157653 -NCIT:C155935 Unresectable Digestive System Neuroendocrine Carcinoma 6 157654 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 7 157655 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 7 157656 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 6 157657 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 7 157658 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 157659 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 157660 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 157661 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 7 157662 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 157663 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 157664 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 157665 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 7 157666 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 157667 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 157668 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 157669 -NCIT:C155937 Refractory Digestive System Neuroendocrine Carcinoma 6 157670 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 7 157671 -NCIT:C155938 Recurrent Digestive System Neuroendocrine Carcinoma 6 157672 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 7 157673 -NCIT:C3770 Pancreatic Neuroendocrine Carcinoma 6 157674 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 7 157675 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 7 157676 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 7 157677 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 157678 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 7 157679 -NCIT:C95582 Pancreatic Large Cell Neuroendocrine Carcinoma 7 157680 -NCIT:C95583 Pancreatic Small Cell Neuroendocrine Carcinoma 7 157681 -NCIT:C95619 Esophageal Neuroendocrine Carcinoma 6 157682 -NCIT:C6762 Esophageal Small Cell Neuroendocrine Carcinoma 7 157683 -NCIT:C95620 Esophageal Large Cell Neuroendocrine Carcinoma 7 157684 -NCIT:C95884 Gastric Neuroendocrine Carcinoma 6 157685 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 7 157686 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 157687 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 157688 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 157689 -NCIT:C6764 Gastric Small Cell Neuroendocrine Carcinoma 7 157690 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 157691 -NCIT:C95885 Gastric Large Cell Neuroendocrine Carcinoma 7 157692 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 157693 -NCIT:C95984 Ampulla of Vater Neuroendocrine Carcinoma 6 157694 -NCIT:C6655 Ampulla of Vater Small Cell Neuroendocrine Carcinoma 7 157695 -NCIT:C95985 Ampulla of Vater Large Cell Neuroendocrine Carcinoma 7 157696 -NCIT:C96063 Intestinal Neuroendocrine Carcinoma 6 157697 -NCIT:C96064 Small Intestinal Neuroendocrine Carcinoma 7 157698 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 157699 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 157700 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 157701 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 157702 -NCIT:C27449 Small Intestinal Small Cell Neuroendocrine Carcinoma 8 157703 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 157704 -NCIT:C96065 Small Intestinal Large Cell Neuroendocrine Carcinoma 8 157705 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 157706 -NCIT:C96156 Colorectal Neuroendocrine Carcinoma 7 157707 -NCIT:C43587 Colorectal Small Cell Neuroendocrine Carcinoma 8 157708 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 9 157709 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 9 157710 -NCIT:C96157 Colorectal Large Cell Neuroendocrine Carcinoma 8 157711 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 9 157712 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 9 157713 -NCIT:C96425 Appendix Neuroendocrine Carcinoma 6 157714 -NCIT:C43555 Appendix Small Cell Neuroendocrine Carcinoma 7 157715 -NCIT:C96426 Appendix Large Cell Neuroendocrine Carcinoma 7 157716 -NCIT:C96549 Anal Canal Neuroendocrine Carcinoma 6 157717 -NCIT:C96550 Anal Canal Large Cell Neuroendocrine Carcinoma 7 157718 -NCIT:C96551 Anal Canal Small Cell Neuroendocrine Carcinoma 7 157719 -NCIT:C96787 Liver Neuroendocrine Carcinoma 6 157720 -NCIT:C172722 Liver Large Cell Neuroendocrine Carcinoma 7 157721 -NCIT:C172725 Liver Small Cell Neuroendocrine Carcinoma 7 157722 -NCIT:C96919 Gallbladder Neuroendocrine Carcinoma 6 157723 -NCIT:C6763 Gallbladder Small Cell Neuroendocrine Carcinoma 7 157724 -NCIT:C96921 Gallbladder Large Cell Neuroendocrine Carcinoma 7 157725 -NCIT:C96956 Extrahepatic Bile Duct Neuroendocrine Carcinoma 6 157726 -NCIT:C5845 Extrahepatic Bile Duct Small Cell Neuroendocrine Carcinoma 7 157727 -NCIT:C96958 Extrahepatic Bile Duct Large Cell Neuroendocrine Carcinoma 7 157728 -NCIT:C95406 Digestive System Mixed Adenoneuroendocrine Carcinoma 5 157729 -NCIT:C163967 Metastatic Digestive System Mixed Adenoneuroendocrine Carcinoma 6 157730 -NCIT:C172718 Liver Mixed Adenoneuroendocrine Carcinoma 6 157731 -NCIT:C172808 Unresectable Digestive System Mixed Adenoneuroendocrine Carcinoma 6 157732 -NCIT:C43564 Appendix Mixed Adenoneuroendocrine Carcinoma 6 157733 -NCIT:C3689 Appendix Goblet Cell Adenocarcinoma 7 157734 -NCIT:C45843 Pancreatic Mixed Adenoneuroendocrine Carcinoma 6 157735 -NCIT:C6878 Pancreatic Mixed Acinar-Neuroendocrine Carcinoma 7 157736 -NCIT:C6879 Pancreatic Mixed Ductal-Neuroendocrine Carcinoma 7 157737 -NCIT:C95460 Pancreatic Mixed Acinar-Ductal Neuroendocrine Carcinoma 7 157738 -NCIT:C95621 Esophageal Mixed Adenoneuroendocrine Carcinoma 6 157739 -NCIT:C95886 Gastric Mixed Adenoneuroendocrine Carcinoma 6 157740 -NCIT:C95986 Ampulla of Vater Mixed Adenoneuroendocrine Carcinoma 6 157741 -NCIT:C96066 Small Intestinal Mixed Adenoneuroendocrine Carcinoma 6 157742 -NCIT:C96158 Colorectal Mixed Adenoneuroendocrine Carcinoma 6 157743 -NCIT:C96553 Anal Canal Mixed Adenoneuroendocrine Carcinoma 6 157744 -NCIT:C96927 Gallbladder Mixed Adenoneuroendocrine Carcinoma 6 157745 -NCIT:C96928 Gallbladder Goblet Cell Carcinoid 7 157746 -NCIT:C96959 Extrahepatic Bile Duct Mixed Adenoneuroendocrine Carcinoma 6 157747 -NCIT:C3010 Endocrine Neoplasm 3 157748 -NCIT:C190056 Childhood Endocrine Neoplasm 4 157749 -NCIT:C190070 Childhood Malignant Endocrine Neoplasm 5 157750 -NCIT:C118815 Childhood Lung Small Cell Carcinoma 6 157751 -NCIT:C118819 Childhood Parathyroid Gland Carcinoma 6 157752 -NCIT:C123903 Childhood Thyroid Gland Papillary Carcinoma 6 157753 -NCIT:C123904 Childhood Thyroid Gland Follicular Carcinoma 6 157754 -NCIT:C123905 Childhood Thyroid Gland Medullary Carcinoma 6 157755 -NCIT:C190069 Childhood Adrenal Cortical Carcinoma 6 157756 -NCIT:C190075 Childhood Neuroendocrine Neoplasm 5 157757 -NCIT:C118815 Childhood Lung Small Cell Carcinoma 6 157758 -NCIT:C123905 Childhood Thyroid Gland Medullary Carcinoma 6 157759 -NCIT:C190074 Childhood Paraganglioma 6 157760 -NCIT:C190071 Childhood Sympathetic Paraganglioma 7 157761 -NCIT:C118822 Childhood Adrenal Gland Pheochromocytoma 8 157762 -NCIT:C190072 Childhood Parasympathetic Paraganglioma 7 157763 -NCIT:C190073 Childhood Composite Paraganglioma 7 157764 -NCIT:C190077 Childhood Neuroendocrine Tumor 6 157765 -NCIT:C118810 Childhood Neuroendocrine Tumor G1 7 157766 -NCIT:C190076 Childhood Digestive System Neuroendocrine Tumor 7 157767 -NCIT:C190029 Childhood Appendix Neuroendocrine Tumor 8 157768 -NCIT:C190078 Childhood Neuroendocrine Tumor G2 7 157769 -NCIT:C190600 Childhood Benign Endocrine Neoplasm 5 157770 -NCIT:C190060 Childhood Thyroid Gland Follicular Adenoma 6 157771 -NCIT:C190066 Childhood Parathyroid Gland Adenoma 6 157772 -NCIT:C190068 Childhood Adrenal Cortical Adenoma 6 157773 -NCIT:C3575 Malignant Endocrine Neoplasm 4 157774 -NCIT:C150540 Recurrent Malignant Endocrine Neoplasm 5 157775 -NCIT:C165253 Recurrent Neuroendocrine Carcinoma 6 157776 -NCIT:C115440 Recurrent Merkel Cell Carcinoma 7 157777 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 8 157778 -NCIT:C165740 Locally Recurrent Merkel Cell Carcinoma 8 157779 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 7 157780 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 8 157781 -NCIT:C155938 Recurrent Digestive System Neuroendocrine Carcinoma 7 157782 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 8 157783 -NCIT:C183127 Recurrent Small Cell Neuroendocrine Carcinoma 7 157784 -NCIT:C183128 Recurrent Extrapulmonary Small Cell Neuroendocrine Carcinoma 8 157785 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 9 157786 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 9 157787 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 8 157788 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 9 157789 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 6 157790 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 7 157791 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 7 157792 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 8 157793 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 6 157794 -NCIT:C6417 Recurrent Adrenal Cortical Carcinoma 6 157795 -NCIT:C7828 Recurrent Parathyroid Gland Carcinoma 6 157796 -NCIT:C150541 Refractory Malignant Endocrine Neoplasm 5 157797 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 6 157798 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 7 157799 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 7 157800 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 8 157801 -NCIT:C165742 Refractory Neuroendocrine Carcinoma 6 157802 -NCIT:C155937 Refractory Digestive System Neuroendocrine Carcinoma 7 157803 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 8 157804 -NCIT:C165741 Refractory Merkel Cell Carcinoma 7 157805 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 7 157806 -NCIT:C191853 Refractory Small Cell Neuroendocrine Carcinoma 7 157807 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 8 157808 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 9 157809 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 9 157810 -NCIT:C191854 Refractory Extrapulmonary Small Cell Neuroendocrine Carcinoma 8 157811 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 9 157812 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 9 157813 -NCIT:C188036 Refractory Adrenal Cortical Carcinoma 6 157814 -NCIT:C27380 Thyroid Gland Adenocarcinoma 5 157815 -NCIT:C187645 Follicular-Derived Thyroid Gland Carcinoma, High Grade 6 157816 -NCIT:C187648 Differentiated High Grade Thyroid Gland Carcinoma 7 157817 -NCIT:C6040 Poorly Differentiated Thyroid Gland Carcinoma 7 157818 -NCIT:C174046 Metastatic Poorly Differentiated Thyroid Gland Carcinoma 8 157819 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 8 157820 -NCIT:C174569 Unresectable Poorly Differentiated Thyroid Gland Carcinoma 8 157821 -NCIT:C187994 Thyroid Gland Secretory Carcinoma 6 157822 -NCIT:C7153 Differentiated Thyroid Gland Carcinoma 6 157823 -NCIT:C118829 Hereditary Nonmedullary Thyroid Gland Carcinoma 7 157824 -NCIT:C140959 Differentiated Thyroid Gland Carcinoma by AJCC v7 Stage 7 157825 -NCIT:C140958 Thyroid Gland Follicular Carcinoma by AJCC v7 Stage 8 157826 -NCIT:C9084 Stage I Thyroid Gland Follicular Carcinoma AJCC v7 9 157827 -NCIT:C9085 Stage II Thyroid Gland Follicular Carcinoma AJCC v7 9 157828 -NCIT:C9086 Stage IV Thyroid Gland Follicular Carcinoma AJCC v7 9 157829 -NCIT:C115035 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v7 10 157830 -NCIT:C115036 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v7 10 157831 -NCIT:C115037 Stage IVC Thyroid Gland Follicular Carcinoma AJCC v7 10 157832 -NCIT:C9121 Stage III Thyroid Gland Follicular Carcinoma AJCC v7 9 157833 -NCIT:C140960 Thyroid Gland Papillary Carcinoma by AJCC v7 Stage 8 157834 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 9 157835 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 9 157836 -NCIT:C9083 Stage IV Thyroid Gland Papillary Carcinoma AJCC v7 9 157837 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 10 157838 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 10 157839 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 10 157840 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 9 157841 -NCIT:C87543 Stage I Differentiated Thyroid Gland Carcinoma AJCC v7 8 157842 -NCIT:C101539 Stage I Differentiated Thyroid Gland Carcinoma Under 45 Years AJCC v7 9 157843 -NCIT:C101540 Stage I Differentiated Thyroid Gland Carcinoma 45 Years and Older AJCC v7 9 157844 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 9 157845 -NCIT:C9084 Stage I Thyroid Gland Follicular Carcinoma AJCC v7 9 157846 -NCIT:C87544 Stage II Differentiated Thyroid Gland Carcinoma AJCC v7 8 157847 -NCIT:C101541 Stage II Differentiated Thyroid Gland Carcinoma Under 45 Years AJCC v7 9 157848 -NCIT:C101542 Stage II Differentiated Thyroid Gland Carcinoma 45 Years and Older AJCC v7 9 157849 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 9 157850 -NCIT:C9085 Stage II Thyroid Gland Follicular Carcinoma AJCC v7 9 157851 -NCIT:C87545 Stage III Differentiated Thyroid Gland Carcinoma AJCC v7 8 157852 -NCIT:C9121 Stage III Thyroid Gland Follicular Carcinoma AJCC v7 9 157853 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 9 157854 -NCIT:C87546 Stage IVA Differentiated Thyroid Gland Carcinoma AJCC v7 8 157855 -NCIT:C115035 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v7 9 157856 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 9 157857 -NCIT:C87547 Stage IVB Differentiated Thyroid Gland Carcinoma AJCC v7 8 157858 -NCIT:C115036 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v7 9 157859 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 9 157860 -NCIT:C87548 Stage IVC Differentiated Thyroid Gland Carcinoma AJCC v7 8 157861 -NCIT:C115037 Stage IVC Thyroid Gland Follicular Carcinoma AJCC v7 9 157862 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 9 157863 -NCIT:C140965 Differentiated Thyroid Gland Carcinoma by AJCC v8 Stage 7 157864 -NCIT:C140966 Stage I Differentiated Thyroid Gland Carcinoma AJCC v8 8 157865 -NCIT:C140967 Stage I Differentiated Thyroid Gland Carcinoma Under 55 Years AJCC v8 9 157866 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 10 157867 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 10 157868 -NCIT:C140968 Stage I Differentiated Thyroid Gland Carcinoma 55 Years and Older AJCC v8 9 157869 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 10 157870 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 10 157871 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 9 157872 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 10 157873 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 10 157874 -NCIT:C140988 Stage I Thyroid Gland Follicular Carcinoma AJCC v8 9 157875 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 10 157876 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 10 157877 -NCIT:C140969 Stage II Differentiated Thyroid Gland Carcinoma AJCC v8 8 157878 -NCIT:C140970 Stage II Differentiated Thyroid Gland Carcinoma Under 55 Years AJCC v8 9 157879 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 10 157880 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 10 157881 -NCIT:C140971 Stage II Differentiated Thyroid Gland Carcinoma 55 Years and Older AJCC v8 9 157882 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 10 157883 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 10 157884 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 9 157885 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 10 157886 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 10 157887 -NCIT:C140991 Stage II Thyroid Gland Follicular Carcinoma AJCC v8 9 157888 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 10 157889 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 10 157890 -NCIT:C140972 Stage III Differentiated Thyroid Gland Carcinoma AJCC v8 8 157891 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 9 157892 -NCIT:C140995 Stage III Thyroid Gland Follicular Carcinoma AJCC v8 9 157893 -NCIT:C140973 Stage IV Differentiated Thyroid Gland Carcinoma AJCC v8 8 157894 -NCIT:C140974 Stage IVA Differentiated Thyroid Gland Carcinoma AJCC v8 9 157895 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 10 157896 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 10 157897 -NCIT:C140975 Stage IVB Differentiated Thyroid Gland Carcinoma AJCC v8 9 157898 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 10 157899 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 10 157900 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 9 157901 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 10 157902 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 10 157903 -NCIT:C140996 Stage IV Thyroid Gland Follicular Carcinoma AJCC v8 9 157904 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 10 157905 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 10 157906 -NCIT:C140976 Thyroid Gland Papillary Carcinoma by AJCC v8 Stage 8 157907 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 9 157908 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 10 157909 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 10 157910 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 9 157911 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 10 157912 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 10 157913 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 9 157914 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 9 157915 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 10 157916 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 10 157917 -NCIT:C140987 Thyroid Gland Follicular Carcinoma by AJCC v8 Stage 8 157918 -NCIT:C140988 Stage I Thyroid Gland Follicular Carcinoma AJCC v8 9 157919 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 10 157920 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 10 157921 -NCIT:C140991 Stage II Thyroid Gland Follicular Carcinoma AJCC v8 9 157922 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 10 157923 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 10 157924 -NCIT:C140995 Stage III Thyroid Gland Follicular Carcinoma AJCC v8 9 157925 -NCIT:C140996 Stage IV Thyroid Gland Follicular Carcinoma AJCC v8 9 157926 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 10 157927 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 10 157928 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 7 157929 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 8 157930 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 8 157931 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 9 157932 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 7 157933 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 8 157934 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 8 157935 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 9 157936 -NCIT:C168572 Unresectable Differentiated Thyroid Gland Carcinoma 7 157937 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 8 157938 -NCIT:C174571 Unresectable Thyroid Gland Follicular Carcinoma 8 157939 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 9 157940 -NCIT:C173979 Metastatic Differentiated Thyroid Gland Carcinoma 7 157941 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 8 157942 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 9 157943 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 10 157944 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 8 157945 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 8 157946 -NCIT:C4035 Thyroid Gland Papillary Carcinoma 7 157947 -NCIT:C123903 Childhood Thyroid Gland Papillary Carcinoma 8 157948 -NCIT:C126409 Warthin-Like Variant Thyroid Gland Papillary Carcinoma 8 157949 -NCIT:C126410 Thyroid Gland Papillary Carcinoma with Fibromatosis/Fasciitis-Like/Desmoid-Type Stroma 8 157950 -NCIT:C126594 Follicular Variant Thyroid Gland Papillary Carcinoma 8 157951 -NCIT:C66850 Invasive Encapsulated Follicular Variant Thyroid Gland Papillary Carcinoma 9 157952 -NCIT:C7381 Invasive Follicular Variant Thyroid Gland Papillary Carcinoma 9 157953 -NCIT:C140960 Thyroid Gland Papillary Carcinoma by AJCC v7 Stage 8 157954 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 9 157955 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 9 157956 -NCIT:C9083 Stage IV Thyroid Gland Papillary Carcinoma AJCC v7 9 157957 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 10 157958 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 10 157959 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 10 157960 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 9 157961 -NCIT:C140976 Thyroid Gland Papillary Carcinoma by AJCC v8 Stage 8 157962 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 9 157963 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 10 157964 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 10 157965 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 9 157966 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 10 157967 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 10 157968 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 9 157969 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 9 157970 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 10 157971 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 10 157972 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 8 157973 -NCIT:C156034 Encapsulated Variant Thyroid Gland Papillary Carcinoma 8 157974 -NCIT:C156045 Spindle Cell Variant Thyroid Gland Papillary Carcinoma 8 157975 -NCIT:C156050 Hobnail Variant Thyroid Gland Papillary Carcinoma 8 157976 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 8 157977 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 8 157978 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 8 157979 -NCIT:C187644 Classic Thyroid Gland Papillary Carcinoma 8 157980 -NCIT:C35558 Tall Cell Variant Thyroid Gland Papillary Carcinoma 8 157981 -NCIT:C35830 Columnar Cell Variant Thyroid Gland Papillary Carcinoma 8 157982 -NCIT:C37304 Multicentric Thyroid Gland Papillary Carcinoma 8 157983 -NCIT:C46004 Thyroid Gland Papillary Microcarcinoma 8 157984 -NCIT:C46092 Macrofollicular Variant Thyroid Gland Papillary Carcinoma 8 157985 -NCIT:C46093 Oncocytic Variant Thyroid Gland Papillary Carcinoma 8 157986 -NCIT:C46094 Clear Cell Variant Thyroid Gland Papillary Carcinoma 8 157987 -NCIT:C46095 Solid/Trabecular Variant Thyroid Gland Papillary Carcinoma 8 157988 -NCIT:C7427 Diffuse Sclerosing Variant Thyroid Gland Papillary Carcinoma 8 157989 -NCIT:C8054 Thyroid Gland Follicular Carcinoma 7 157990 -NCIT:C123904 Childhood Thyroid Gland Follicular Carcinoma 8 157991 -NCIT:C140958 Thyroid Gland Follicular Carcinoma by AJCC v7 Stage 8 157992 -NCIT:C9084 Stage I Thyroid Gland Follicular Carcinoma AJCC v7 9 157993 -NCIT:C9085 Stage II Thyroid Gland Follicular Carcinoma AJCC v7 9 157994 -NCIT:C9086 Stage IV Thyroid Gland Follicular Carcinoma AJCC v7 9 157995 -NCIT:C115035 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v7 10 157996 -NCIT:C115036 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v7 10 157997 -NCIT:C115037 Stage IVC Thyroid Gland Follicular Carcinoma AJCC v7 10 157998 -NCIT:C9121 Stage III Thyroid Gland Follicular Carcinoma AJCC v7 9 157999 -NCIT:C140987 Thyroid Gland Follicular Carcinoma by AJCC v8 Stage 8 158000 -NCIT:C140988 Stage I Thyroid Gland Follicular Carcinoma AJCC v8 9 158001 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 10 158002 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 10 158003 -NCIT:C140991 Stage II Thyroid Gland Follicular Carcinoma AJCC v8 9 158004 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 10 158005 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 10 158006 -NCIT:C140995 Stage III Thyroid Gland Follicular Carcinoma AJCC v8 9 158007 -NCIT:C140996 Stage IV Thyroid Gland Follicular Carcinoma AJCC v8 9 158008 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 10 158009 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 10 158010 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 8 158011 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 9 158012 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 8 158013 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 9 158014 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 10 158015 -NCIT:C156122 Thyroid Gland Follicular Carcinoma, Encapsulated Angioinvasive 8 158016 -NCIT:C156123 Thyroid Gland Follicular Carcinoma, Widely Invasive 8 158017 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 8 158018 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 9 158019 -NCIT:C174571 Unresectable Thyroid Gland Follicular Carcinoma 8 158020 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 9 158021 -NCIT:C187643 Thyroid Gland Follicular Carcinoma, Signet Ring Cell Variant 8 158022 -NCIT:C46096 Thyroid Gland Follicular Carcinoma, Clear Cell Variant 8 158023 -NCIT:C4946 Thyroid Gland Oncocytic Carcinoma 8 158024 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 9 158025 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 9 158026 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 9 158027 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 9 158028 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 10 158029 -NCIT:C65200 Thyroid Gland Follicular Carcinoma, Minimally Invasive 8 158030 -NCIT:C3773 Neuroendocrine Carcinoma 5 158031 -NCIT:C155869 Metastatic Neuroendocrine Carcinoma 6 158032 -NCIT:C155870 Advanced Neuroendocrine Carcinoma 7 158033 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 158034 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 158035 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 158036 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 158037 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 158038 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 158039 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 158040 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 158041 -NCIT:C165300 Advanced Merkel Cell Carcinoma 8 158042 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 8 158043 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 158044 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 158045 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 158046 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 7 158047 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 8 158048 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 158049 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 158050 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 158051 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 8 158052 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 158053 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 158054 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 158055 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 158056 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 158057 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 158058 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 158059 -NCIT:C158908 Metastatic Large Cell Neuroendocrine Carcinoma 7 158060 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 8 158061 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 8 158062 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 158063 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 8 158064 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 158065 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 158066 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 8 158067 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 158068 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 158069 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 158070 -NCIT:C158909 Locally Advanced Neuroendocrine Carcinoma 7 158071 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 158072 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 158073 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 8 158074 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 158075 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 158076 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 8 158077 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 158078 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 8 158079 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 158080 -NCIT:C158911 Metastatic Small Cell Neuroendocrine Carcinoma 7 158081 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 8 158082 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 9 158083 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 158084 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 8 158085 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 158086 -NCIT:C191852 Metastatic Extrapulmonary Small Cell Neuroendocrine Carcinoma 8 158087 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 158088 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 158089 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 9 158090 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 9 158091 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 7 158092 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 158093 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 158094 -NCIT:C162572 Metastatic Merkel Cell Carcinoma 7 158095 -NCIT:C165300 Advanced Merkel Cell Carcinoma 8 158096 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 8 158097 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 8 158098 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 7 158099 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 158100 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 158101 -NCIT:C163975 Neuroendocrine Carcinoma of Unknown Primary 7 158102 -NCIT:C160980 Head and Neck Neuroendocrine Carcinoma 6 158103 -NCIT:C160981 Head and Neck Small Cell Neuroendocrine Carcinoma 7 158104 -NCIT:C116318 Sinonasal Small Cell Neuroendocrine Carcinoma 8 158105 -NCIT:C35703 Salivary Gland Small Cell Neuroendocrine Carcinoma 8 158106 -NCIT:C5956 Minor Salivary Gland Small Cell Neuroendocrine Carcinoma 9 158107 -NCIT:C6025 Laryngeal Small Cell Neuroendocrine Carcinoma 8 158108 -NCIT:C160982 Head and Neck Large Cell Neuroendocrine Carcinoma 7 158109 -NCIT:C173091 Sinonasal Large Cell Neuroendocrine Carcinoma 8 158110 -NCIT:C173395 Laryngeal Large Cell Neuroendocrine Carcinoma 8 158111 -NCIT:C173650 Salivary Gland Large Cell Neuroendocrine Carcinoma 8 158112 -NCIT:C173089 Sinonasal Neuroendocrine Carcinoma 7 158113 -NCIT:C116318 Sinonasal Small Cell Neuroendocrine Carcinoma 8 158114 -NCIT:C173091 Sinonasal Large Cell Neuroendocrine Carcinoma 8 158115 -NCIT:C173390 Laryngeal Neuroendocrine Carcinoma 7 158116 -NCIT:C173395 Laryngeal Large Cell Neuroendocrine Carcinoma 8 158117 -NCIT:C6025 Laryngeal Small Cell Neuroendocrine Carcinoma 8 158118 -NCIT:C173587 Head and Neck Merkel Cell Carcinoma 7 158119 -NCIT:C173653 Salivary Gland Neuroendocrine Carcinoma 7 158120 -NCIT:C173650 Salivary Gland Large Cell Neuroendocrine Carcinoma 8 158121 -NCIT:C35703 Salivary Gland Small Cell Neuroendocrine Carcinoma 8 158122 -NCIT:C5956 Minor Salivary Gland Small Cell Neuroendocrine Carcinoma 9 158123 -NCIT:C3879 Thyroid Gland Medullary Carcinoma 7 158124 -NCIT:C123905 Childhood Thyroid Gland Medullary Carcinoma 8 158125 -NCIT:C141041 Thyroid Gland Medullary Carcinoma by AJCC v7 Stage 8 158126 -NCIT:C6133 Stage I Thyroid Gland Medullary Carcinoma AJCC v7 9 158127 -NCIT:C6134 Stage II Thyroid Gland Medullary Carcinoma AJCC v7 9 158128 -NCIT:C6135 Stage III Thyroid Gland Medullary Carcinoma AJCC v7 9 158129 -NCIT:C6136 Stage IV Thyroid Gland Medullary Carcinoma AJCC v7 9 158130 -NCIT:C87549 Stage IVA Thyroid Gland Medullary Carcinoma AJCC v7 10 158131 -NCIT:C87550 Stage IVB Thyroid Gland Medullary Carcinoma AJCC v7 10 158132 -NCIT:C87551 Stage IVC Thyroid Gland Medullary Carcinoma AJCC v7 10 158133 -NCIT:C141042 Thyroid Gland Medullary Carcinoma by AJCC v8 Stage 8 158134 -NCIT:C141043 Stage I Thyroid Gland Medullary Carcinoma AJCC v8 9 158135 -NCIT:C141044 Stage II Thyroid Gland Medullary Carcinoma AJCC v8 9 158136 -NCIT:C141045 Stage III Thyroid Gland Medullary Carcinoma AJCC v8 9 158137 -NCIT:C141046 Stage IV Thyroid Gland Medullary Carcinoma AJCC v8 9 158138 -NCIT:C141047 Stage IVA Thyroid Gland Medullary Carcinoma AJCC v8 10 158139 -NCIT:C141048 Stage IVB Thyroid Gland Medullary Carcinoma AJCC v8 10 158140 -NCIT:C141049 Stage IVC Thyroid Gland Medullary Carcinoma AJCC v8 10 158141 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 8 158142 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 9 158143 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 8 158144 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 158145 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 158146 -NCIT:C163974 Unresectable Thyroid Gland Medullary Carcinoma 8 158147 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 9 158148 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 8 158149 -NCIT:C4193 Thyroid Gland Medullary Carcinoma with Amyloid Stroma 8 158150 -NCIT:C46098 Sporadic Thyroid Gland Medullary Carcinoma 8 158151 -NCIT:C46103 Sporadic Thyroid Gland Micromedullary Carcinoma 9 158152 -NCIT:C46099 Hereditary Thyroid Gland Medullary Carcinoma 8 158153 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 9 158154 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 9 158155 -NCIT:C165253 Recurrent Neuroendocrine Carcinoma 6 158156 -NCIT:C115440 Recurrent Merkel Cell Carcinoma 7 158157 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 8 158158 -NCIT:C165740 Locally Recurrent Merkel Cell Carcinoma 8 158159 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 7 158160 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 8 158161 -NCIT:C155938 Recurrent Digestive System Neuroendocrine Carcinoma 7 158162 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 8 158163 -NCIT:C183127 Recurrent Small Cell Neuroendocrine Carcinoma 7 158164 -NCIT:C183128 Recurrent Extrapulmonary Small Cell Neuroendocrine Carcinoma 8 158165 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 9 158166 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 9 158167 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 8 158168 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 9 158169 -NCIT:C165742 Refractory Neuroendocrine Carcinoma 6 158170 -NCIT:C155937 Refractory Digestive System Neuroendocrine Carcinoma 7 158171 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 8 158172 -NCIT:C165741 Refractory Merkel Cell Carcinoma 7 158173 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 7 158174 -NCIT:C191853 Refractory Small Cell Neuroendocrine Carcinoma 7 158175 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 8 158176 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 9 158177 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 9 158178 -NCIT:C191854 Refractory Extrapulmonary Small Cell Neuroendocrine Carcinoma 8 158179 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 9 158180 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 9 158181 -NCIT:C172806 Unresectable Neuroendocrine Carcinoma 6 158182 -NCIT:C155935 Unresectable Digestive System Neuroendocrine Carcinoma 7 158183 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 8 158184 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 8 158185 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 7 158186 -NCIT:C162786 Unresectable Merkel Cell Carcinoma 7 158187 -NCIT:C163974 Unresectable Thyroid Gland Medullary Carcinoma 7 158188 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 8 158189 -NCIT:C172810 Unresectable Large Cell Neuroendocrine Carcinoma 7 158190 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 8 158191 -NCIT:C191855 Unresectable Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 158192 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 8 158193 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 8 158194 -NCIT:C173385 Neuroendocrine Carcinoma, Excluding Head and Neck 6 158195 -NCIT:C128045 Cervical Neuroendocrine Carcinoma 7 158196 -NCIT:C40214 Cervical Large Cell Neuroendocrine Carcinoma 8 158197 -NCIT:C7982 Cervical Small Cell Neuroendocrine Carcinoma 8 158198 -NCIT:C128073 Vaginal Neuroendocrine Carcinoma 7 158199 -NCIT:C128075 Vaginal Large Cell Neuroendocrine Carcinoma 8 158200 -NCIT:C40263 Vaginal Small Cell Neuroendocrine Carcinoma 8 158201 -NCIT:C128243 Vulvar Neuroendocrine Carcinoma 7 158202 -NCIT:C128244 Vulvar Small Cell Neuroendocrine Carcinoma 8 158203 -NCIT:C40298 Bartholin Gland Small Cell Neuroendocrine Carcinoma 9 158204 -NCIT:C128245 Vulvar Large Cell Neuroendocrine Carcinoma 8 158205 -NCIT:C128247 Vulvar Merkel Cell Carcinoma 8 158206 -NCIT:C157759 Bladder Neuroendocrine Carcinoma 7 158207 -NCIT:C157760 Bladder Large Cell Neuroendocrine Carcinoma 8 158208 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 9 158209 -NCIT:C9461 Bladder Small Cell Neuroendocrine Carcinoma 8 158210 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 9 158211 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 9 158212 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 9 158213 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 9 158214 -NCIT:C158912 Prostate Neuroendocrine Carcinoma 7 158215 -NCIT:C158650 Prostate Large Cell Neuroendocrine Carcinoma 8 158216 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 8 158217 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 9 158218 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 9 158219 -NCIT:C6766 Prostate Small Cell Neuroendocrine Carcinoma 8 158220 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 9 158221 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 9 158222 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 9 158223 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 9 158224 -NCIT:C159224 Kidney Neuroendocrine Carcinoma 7 158225 -NCIT:C116317 Kidney Small Cell Neuroendocrine Carcinoma 8 158226 -NCIT:C159225 Kidney Large Cell Neuroendocrine Carcinoma 8 158227 -NCIT:C175581 Breast Neuroendocrine Carcinoma 7 158228 -NCIT:C40356 Breast Large Cell Neuroendocrine Carcinoma 8 158229 -NCIT:C6760 Breast Small Cell Neuroendocrine Carcinoma 8 158230 -NCIT:C45569 Lung Neuroendocrine Carcinoma 7 158231 -NCIT:C4917 Lung Small Cell Carcinoma 8 158232 -NCIT:C118815 Childhood Lung Small Cell Carcinoma 9 158233 -NCIT:C136496 Lung Small Cell Carcinoma by AJCC v7 Stage 9 158234 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 10 158235 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 11 158236 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 11 158237 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 10 158238 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 11 158239 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 11 158240 -NCIT:C6679 Stage III Lung Small Cell Carcinoma AJCC v7 10 158241 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 11 158242 -NCIT:C6681 Stage IIIB Lung Small Cell Carcinoma AJCC v7 11 158243 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 12 158244 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 12 158245 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 10 158246 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 9 158247 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 10 158248 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 10 158249 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 9 158250 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 10 158251 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 10 158252 -NCIT:C158495 Platinum-Sensitive Lung Small Cell Carcinoma 9 158253 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 9 158254 -NCIT:C188753 Lung Small Cell Carcinoma Neuroendocrine Subtype 9 158255 -NCIT:C188754 Lung Small Cell Carcinoma, Neuroendocrine-High Subtype 10 158256 -NCIT:C188755 Lung Small Cell Carcinoma, Neuroendocrine-Low Subtype 10 158257 -NCIT:C188756 Lung Small Cell Carcinoma Molecular Subtypes 9 158258 -NCIT:C188761 Lung Small Cell Carcinoma, A Subtype 10 158259 -NCIT:C188762 Lung Small Cell Carcinoma, N Subtype 10 158260 -NCIT:C188763 Lung Small Cell Carcinoma, P Subtype 10 158261 -NCIT:C188765 Lung Small Cell Carcinoma, I Subtype 10 158262 -NCIT:C188766 Lung Small Cell Carcinoma, Y Subtype 10 158263 -NCIT:C6683 Occult Lung Small Cell Carcinoma 9 158264 -NCIT:C7853 Limited Stage Lung Small Cell Carcinoma 9 158265 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 10 158266 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 10 158267 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 11 158268 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 11 158269 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 10 158270 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 11 158271 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 11 158272 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 10 158273 -NCIT:C9049 Extensive Stage Lung Small Cell Carcinoma 9 158274 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 10 158275 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 10 158276 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 10 158277 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 10 158278 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 9 158279 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 10 158280 -NCIT:C9137 Combined Lung Small Cell Carcinoma 9 158281 -NCIT:C9379 Combined Lung Small Cell Carcinoma and Lung Adenocarcinoma 10 158282 -NCIT:C9423 Combined Lung Small Cell and Squamous Cell Carcinoma 10 158283 -NCIT:C5672 Lung Large Cell Neuroendocrine Carcinoma 8 158284 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 9 158285 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 158286 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 158287 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 9 158288 -NCIT:C7267 Combined Lung Large Cell Neuroendocrine Carcinoma 9 158289 -NCIT:C7591 Combined Lung Carcinoma 8 158290 -NCIT:C7267 Combined Lung Large Cell Neuroendocrine Carcinoma 9 158291 -NCIT:C9137 Combined Lung Small Cell Carcinoma 9 158292 -NCIT:C9379 Combined Lung Small Cell Carcinoma and Lung Adenocarcinoma 10 158293 -NCIT:C9423 Combined Lung Small Cell and Squamous Cell Carcinoma 10 158294 -NCIT:C9231 Merkel Cell Carcinoma 7 158295 -NCIT:C115440 Recurrent Merkel Cell Carcinoma 8 158296 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 9 158297 -NCIT:C165740 Locally Recurrent Merkel Cell Carcinoma 9 158298 -NCIT:C128247 Vulvar Merkel Cell Carcinoma 8 158299 -NCIT:C136869 Merkel Cell Carcinoma by AJCC v7 Stage 8 158300 -NCIT:C85887 Stage 0 Merkel Cell Carcinoma AJCC v7 9 158301 -NCIT:C85889 Stage I Merkel Cell Carcinoma AJCC v7 9 158302 -NCIT:C85890 Stage IA Merkel Cell Carcinoma AJCC v7 10 158303 -NCIT:C85892 Stage IB Merkel Cell Carcinoma AJCC v7 10 158304 -NCIT:C85893 Stage II Merkel Cell Carcinoma AJCC v7 9 158305 -NCIT:C85894 Stage IIA Merkel Cell Carcinoma AJCC v7 10 158306 -NCIT:C85895 Stage IIB Merkel Cell Carcinoma AJCC v7 10 158307 -NCIT:C85896 Stage IIC Merkel Cell Carcinoma AJCC v7 10 158308 -NCIT:C85897 Stage III Merkel Cell Carcinoma AJCC v7 9 158309 -NCIT:C85898 Stage IIIA Merkel Cell Carcinoma AJCC v7 10 158310 -NCIT:C85899 Stage IIIB Merkel Cell Carcinoma AJCC v7 10 158311 -NCIT:C85900 Stage IV Merkel Cell Carcinoma AJCC v7 9 158312 -NCIT:C136870 Merkel Cell Carcinoma by AJCC v8 Stage 8 158313 -NCIT:C136871 Merkel Cell Carcinoma by AJCC v8 Clinical Stage 9 158314 -NCIT:C136872 Clinical Stage 0 Merkel Cell Carcinoma AJCC v8 10 158315 -NCIT:C136873 Clinical Stage I Merkel Cell Carcinoma AJCC v8 10 158316 -NCIT:C136874 Clinical Stage II Merkel Cell Carcinoma AJCC v8 10 158317 -NCIT:C136875 Clinical Stage IIA Merkel Cell Carcinoma AJCC v8 11 158318 -NCIT:C136876 Clinical Stage IIB Merkel Cell Carcinoma AJCC v8 11 158319 -NCIT:C136877 Clinical Stage III Merkel Cell Carcinoma AJCC v8 10 158320 -NCIT:C136878 Clinical Stage IV Merkel Cell Carcinoma AJCC v8 10 158321 -NCIT:C136880 Merkel Cell Carcinoma by AJCC v8 Pathologic Stage 9 158322 -NCIT:C136881 Pathologic Stage 0 Merkel Cell Carcinoma AJCC v8 10 158323 -NCIT:C136882 Pathologic Stage I Merkel Cell Carcinoma AJCC v8 10 158324 -NCIT:C136883 Pathologic Stage II Merkel Cell Carcinoma AJCC v8 10 158325 -NCIT:C136884 Pathologic Stage IIA Merkel Cell Carcinoma AJCC v8 11 158326 -NCIT:C136885 Pathologic Stage IIB Merkel Cell Carcinoma AJCC v8 11 158327 -NCIT:C136886 Pathologic Stage III Merkel Cell Carcinoma AJCC v8 10 158328 -NCIT:C136887 Pathologic Stage IIIA Merkel Cell Carcinoma AJCC v8 11 158329 -NCIT:C136888 Pathologic Stage IIIB Merkel Cell Carcinoma AJCC v8 11 158330 -NCIT:C136889 Pathologic Stage IV Merkel Cell Carcinoma AJCC v8 10 158331 -NCIT:C162572 Metastatic Merkel Cell Carcinoma 8 158332 -NCIT:C165300 Advanced Merkel Cell Carcinoma 9 158333 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 9 158334 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 9 158335 -NCIT:C162786 Unresectable Merkel Cell Carcinoma 8 158336 -NCIT:C165741 Refractory Merkel Cell Carcinoma 8 158337 -NCIT:C95405 Digestive System Neuroendocrine Carcinoma 7 158338 -NCIT:C126324 Gastroesophageal Junction Neuroendocrine Carcinoma 8 158339 -NCIT:C126323 Gastroesophageal Junction Large Cell Neuroendocrine Carcinoma 9 158340 -NCIT:C126325 Gastroesophageal Junction Small Cell Neuroendocrine Carcinoma 9 158341 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 9 158342 -NCIT:C154617 Digestive System Large Cell Neuroendocrine Carcinoma 8 158343 -NCIT:C126323 Gastroesophageal Junction Large Cell Neuroendocrine Carcinoma 9 158344 -NCIT:C172722 Liver Large Cell Neuroendocrine Carcinoma 9 158345 -NCIT:C95582 Pancreatic Large Cell Neuroendocrine Carcinoma 9 158346 -NCIT:C95620 Esophageal Large Cell Neuroendocrine Carcinoma 9 158347 -NCIT:C95885 Gastric Large Cell Neuroendocrine Carcinoma 9 158348 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 158349 -NCIT:C95985 Ampulla of Vater Large Cell Neuroendocrine Carcinoma 9 158350 -NCIT:C96065 Small Intestinal Large Cell Neuroendocrine Carcinoma 9 158351 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 158352 -NCIT:C96157 Colorectal Large Cell Neuroendocrine Carcinoma 9 158353 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 10 158354 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 10 158355 -NCIT:C96426 Appendix Large Cell Neuroendocrine Carcinoma 9 158356 -NCIT:C96550 Anal Canal Large Cell Neuroendocrine Carcinoma 9 158357 -NCIT:C96921 Gallbladder Large Cell Neuroendocrine Carcinoma 9 158358 -NCIT:C96958 Extrahepatic Bile Duct Large Cell Neuroendocrine Carcinoma 9 158359 -NCIT:C154641 Digestive System Small Cell Neuroendocrine Carcinoma 8 158360 -NCIT:C126325 Gastroesophageal Junction Small Cell Neuroendocrine Carcinoma 9 158361 -NCIT:C172725 Liver Small Cell Neuroendocrine Carcinoma 9 158362 -NCIT:C27449 Small Intestinal Small Cell Neuroendocrine Carcinoma 9 158363 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 158364 -NCIT:C43555 Appendix Small Cell Neuroendocrine Carcinoma 9 158365 -NCIT:C43587 Colorectal Small Cell Neuroendocrine Carcinoma 9 158366 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 10 158367 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 10 158368 -NCIT:C5845 Extrahepatic Bile Duct Small Cell Neuroendocrine Carcinoma 9 158369 -NCIT:C6655 Ampulla of Vater Small Cell Neuroendocrine Carcinoma 9 158370 -NCIT:C6762 Esophageal Small Cell Neuroendocrine Carcinoma 9 158371 -NCIT:C6763 Gallbladder Small Cell Neuroendocrine Carcinoma 9 158372 -NCIT:C6764 Gastric Small Cell Neuroendocrine Carcinoma 9 158373 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 158374 -NCIT:C95583 Pancreatic Small Cell Neuroendocrine Carcinoma 9 158375 -NCIT:C96551 Anal Canal Small Cell Neuroendocrine Carcinoma 9 158376 -NCIT:C155935 Unresectable Digestive System Neuroendocrine Carcinoma 8 158377 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 9 158378 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 9 158379 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 8 158380 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 9 158381 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 10 158382 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 9 158383 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 10 158384 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 9 158385 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 10 158386 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 11 158387 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 11 158388 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 9 158389 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 10 158390 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 11 158391 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 11 158392 -NCIT:C155937 Refractory Digestive System Neuroendocrine Carcinoma 8 158393 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 9 158394 -NCIT:C155938 Recurrent Digestive System Neuroendocrine Carcinoma 8 158395 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 9 158396 -NCIT:C3770 Pancreatic Neuroendocrine Carcinoma 8 158397 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 9 158398 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 9 158399 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 9 158400 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 10 158401 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 9 158402 -NCIT:C95582 Pancreatic Large Cell Neuroendocrine Carcinoma 9 158403 -NCIT:C95583 Pancreatic Small Cell Neuroendocrine Carcinoma 9 158404 -NCIT:C95619 Esophageal Neuroendocrine Carcinoma 8 158405 -NCIT:C6762 Esophageal Small Cell Neuroendocrine Carcinoma 9 158406 -NCIT:C95620 Esophageal Large Cell Neuroendocrine Carcinoma 9 158407 -NCIT:C95884 Gastric Neuroendocrine Carcinoma 8 158408 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 9 158409 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 10 158410 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 11 158411 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 11 158412 -NCIT:C6764 Gastric Small Cell Neuroendocrine Carcinoma 9 158413 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 158414 -NCIT:C95885 Gastric Large Cell Neuroendocrine Carcinoma 9 158415 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 158416 -NCIT:C95984 Ampulla of Vater Neuroendocrine Carcinoma 8 158417 -NCIT:C6655 Ampulla of Vater Small Cell Neuroendocrine Carcinoma 9 158418 -NCIT:C95985 Ampulla of Vater Large Cell Neuroendocrine Carcinoma 9 158419 -NCIT:C96063 Intestinal Neuroendocrine Carcinoma 8 158420 -NCIT:C96064 Small Intestinal Neuroendocrine Carcinoma 9 158421 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 10 158422 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 11 158423 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 12 158424 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 12 158425 -NCIT:C27449 Small Intestinal Small Cell Neuroendocrine Carcinoma 10 158426 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 11 158427 -NCIT:C96065 Small Intestinal Large Cell Neuroendocrine Carcinoma 10 158428 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 11 158429 -NCIT:C96156 Colorectal Neuroendocrine Carcinoma 9 158430 -NCIT:C43587 Colorectal Small Cell Neuroendocrine Carcinoma 10 158431 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 11 158432 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 11 158433 -NCIT:C96157 Colorectal Large Cell Neuroendocrine Carcinoma 10 158434 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 11 158435 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 11 158436 -NCIT:C96425 Appendix Neuroendocrine Carcinoma 8 158437 -NCIT:C43555 Appendix Small Cell Neuroendocrine Carcinoma 9 158438 -NCIT:C96426 Appendix Large Cell Neuroendocrine Carcinoma 9 158439 -NCIT:C96549 Anal Canal Neuroendocrine Carcinoma 8 158440 -NCIT:C96550 Anal Canal Large Cell Neuroendocrine Carcinoma 9 158441 -NCIT:C96551 Anal Canal Small Cell Neuroendocrine Carcinoma 9 158442 -NCIT:C96787 Liver Neuroendocrine Carcinoma 8 158443 -NCIT:C172722 Liver Large Cell Neuroendocrine Carcinoma 9 158444 -NCIT:C172725 Liver Small Cell Neuroendocrine Carcinoma 9 158445 -NCIT:C96919 Gallbladder Neuroendocrine Carcinoma 8 158446 -NCIT:C6763 Gallbladder Small Cell Neuroendocrine Carcinoma 9 158447 -NCIT:C96921 Gallbladder Large Cell Neuroendocrine Carcinoma 9 158448 -NCIT:C96956 Extrahepatic Bile Duct Neuroendocrine Carcinoma 8 158449 -NCIT:C5845 Extrahepatic Bile Duct Small Cell Neuroendocrine Carcinoma 9 158450 -NCIT:C96958 Extrahepatic Bile Duct Large Cell Neuroendocrine Carcinoma 9 158451 -NCIT:C173586 Extracutaneous Merkel Cell Carcinoma 6 158452 -NCIT:C173587 Head and Neck Merkel Cell Carcinoma 7 158453 -NCIT:C3915 Small Cell Neuroendocrine Carcinoma 6 158454 -NCIT:C156457 Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 158455 -NCIT:C116317 Kidney Small Cell Neuroendocrine Carcinoma 8 158456 -NCIT:C128244 Vulvar Small Cell Neuroendocrine Carcinoma 8 158457 -NCIT:C40298 Bartholin Gland Small Cell Neuroendocrine Carcinoma 9 158458 -NCIT:C154641 Digestive System Small Cell Neuroendocrine Carcinoma 8 158459 -NCIT:C126325 Gastroesophageal Junction Small Cell Neuroendocrine Carcinoma 9 158460 -NCIT:C172725 Liver Small Cell Neuroendocrine Carcinoma 9 158461 -NCIT:C27449 Small Intestinal Small Cell Neuroendocrine Carcinoma 9 158462 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 158463 -NCIT:C43555 Appendix Small Cell Neuroendocrine Carcinoma 9 158464 -NCIT:C43587 Colorectal Small Cell Neuroendocrine Carcinoma 9 158465 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 10 158466 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 10 158467 -NCIT:C5845 Extrahepatic Bile Duct Small Cell Neuroendocrine Carcinoma 9 158468 -NCIT:C6655 Ampulla of Vater Small Cell Neuroendocrine Carcinoma 9 158469 -NCIT:C6762 Esophageal Small Cell Neuroendocrine Carcinoma 9 158470 -NCIT:C6763 Gallbladder Small Cell Neuroendocrine Carcinoma 9 158471 -NCIT:C6764 Gastric Small Cell Neuroendocrine Carcinoma 9 158472 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 158473 -NCIT:C95583 Pancreatic Small Cell Neuroendocrine Carcinoma 9 158474 -NCIT:C96551 Anal Canal Small Cell Neuroendocrine Carcinoma 9 158475 -NCIT:C160981 Head and Neck Small Cell Neuroendocrine Carcinoma 8 158476 -NCIT:C116318 Sinonasal Small Cell Neuroendocrine Carcinoma 9 158477 -NCIT:C35703 Salivary Gland Small Cell Neuroendocrine Carcinoma 9 158478 -NCIT:C5956 Minor Salivary Gland Small Cell Neuroendocrine Carcinoma 10 158479 -NCIT:C6025 Laryngeal Small Cell Neuroendocrine Carcinoma 9 158480 -NCIT:C183128 Recurrent Extrapulmonary Small Cell Neuroendocrine Carcinoma 8 158481 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 9 158482 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 9 158483 -NCIT:C191852 Metastatic Extrapulmonary Small Cell Neuroendocrine Carcinoma 8 158484 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 158485 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 158486 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 9 158487 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 9 158488 -NCIT:C191854 Refractory Extrapulmonary Small Cell Neuroendocrine Carcinoma 8 158489 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 9 158490 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 9 158491 -NCIT:C191855 Unresectable Extrapulmonary Small Cell Neuroendocrine Carcinoma 8 158492 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 9 158493 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 9 158494 -NCIT:C40155 Endometrial Small Cell Neuroendocrine Carcinoma 8 158495 -NCIT:C40263 Vaginal Small Cell Neuroendocrine Carcinoma 8 158496 -NCIT:C40440 Ovarian Small Cell Carcinoma, Pulmonary-Type 8 158497 -NCIT:C6176 Ureter Small Cell Neuroendocrine Carcinoma 8 158498 -NCIT:C6460 Thymic Small Cell Neuroendocrine Carcinoma 8 158499 -NCIT:C6760 Breast Small Cell Neuroendocrine Carcinoma 8 158500 -NCIT:C6766 Prostate Small Cell Neuroendocrine Carcinoma 8 158501 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 9 158502 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 9 158503 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 9 158504 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 9 158505 -NCIT:C7982 Cervical Small Cell Neuroendocrine Carcinoma 8 158506 -NCIT:C9461 Bladder Small Cell Neuroendocrine Carcinoma 8 158507 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 9 158508 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 9 158509 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 9 158510 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 9 158511 -NCIT:C158911 Metastatic Small Cell Neuroendocrine Carcinoma 7 158512 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 8 158513 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 9 158514 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 158515 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 8 158516 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 158517 -NCIT:C191852 Metastatic Extrapulmonary Small Cell Neuroendocrine Carcinoma 8 158518 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 158519 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 158520 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 9 158521 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 9 158522 -NCIT:C183127 Recurrent Small Cell Neuroendocrine Carcinoma 7 158523 -NCIT:C183128 Recurrent Extrapulmonary Small Cell Neuroendocrine Carcinoma 8 158524 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 9 158525 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 9 158526 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 8 158527 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 9 158528 -NCIT:C191853 Refractory Small Cell Neuroendocrine Carcinoma 7 158529 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 8 158530 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 9 158531 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 9 158532 -NCIT:C191854 Refractory Extrapulmonary Small Cell Neuroendocrine Carcinoma 8 158533 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 9 158534 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 9 158535 -NCIT:C4917 Lung Small Cell Carcinoma 7 158536 -NCIT:C118815 Childhood Lung Small Cell Carcinoma 8 158537 -NCIT:C136496 Lung Small Cell Carcinoma by AJCC v7 Stage 8 158538 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 9 158539 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 10 158540 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 10 158541 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 9 158542 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 10 158543 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 10 158544 -NCIT:C6679 Stage III Lung Small Cell Carcinoma AJCC v7 9 158545 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 10 158546 -NCIT:C6681 Stage IIIB Lung Small Cell Carcinoma AJCC v7 10 158547 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 11 158548 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 11 158549 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 9 158550 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 8 158551 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 9 158552 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 9 158553 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 8 158554 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 9 158555 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 158556 -NCIT:C158495 Platinum-Sensitive Lung Small Cell Carcinoma 8 158557 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 8 158558 -NCIT:C188753 Lung Small Cell Carcinoma Neuroendocrine Subtype 8 158559 -NCIT:C188754 Lung Small Cell Carcinoma, Neuroendocrine-High Subtype 9 158560 -NCIT:C188755 Lung Small Cell Carcinoma, Neuroendocrine-Low Subtype 9 158561 -NCIT:C188756 Lung Small Cell Carcinoma Molecular Subtypes 8 158562 -NCIT:C188761 Lung Small Cell Carcinoma, A Subtype 9 158563 -NCIT:C188762 Lung Small Cell Carcinoma, N Subtype 9 158564 -NCIT:C188763 Lung Small Cell Carcinoma, P Subtype 9 158565 -NCIT:C188765 Lung Small Cell Carcinoma, I Subtype 9 158566 -NCIT:C188766 Lung Small Cell Carcinoma, Y Subtype 9 158567 -NCIT:C6683 Occult Lung Small Cell Carcinoma 8 158568 -NCIT:C7853 Limited Stage Lung Small Cell Carcinoma 8 158569 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 9 158570 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 9 158571 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 10 158572 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 10 158573 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 9 158574 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 10 158575 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 10 158576 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 9 158577 -NCIT:C9049 Extensive Stage Lung Small Cell Carcinoma 8 158578 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 9 158579 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 9 158580 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 9 158581 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 9 158582 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 8 158583 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 9 158584 -NCIT:C9137 Combined Lung Small Cell Carcinoma 8 158585 -NCIT:C9379 Combined Lung Small Cell Carcinoma and Lung Adenocarcinoma 9 158586 -NCIT:C9423 Combined Lung Small Cell and Squamous Cell Carcinoma 9 158587 -NCIT:C6875 Large Cell Neuroendocrine Carcinoma 6 158588 -NCIT:C126772 Endometrial Large Cell Neuroendocrine Carcinoma 7 158589 -NCIT:C128075 Vaginal Large Cell Neuroendocrine Carcinoma 7 158590 -NCIT:C128245 Vulvar Large Cell Neuroendocrine Carcinoma 7 158591 -NCIT:C154617 Digestive System Large Cell Neuroendocrine Carcinoma 7 158592 -NCIT:C126323 Gastroesophageal Junction Large Cell Neuroendocrine Carcinoma 8 158593 -NCIT:C172722 Liver Large Cell Neuroendocrine Carcinoma 8 158594 -NCIT:C95582 Pancreatic Large Cell Neuroendocrine Carcinoma 8 158595 -NCIT:C95620 Esophageal Large Cell Neuroendocrine Carcinoma 8 158596 -NCIT:C95885 Gastric Large Cell Neuroendocrine Carcinoma 8 158597 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 158598 -NCIT:C95985 Ampulla of Vater Large Cell Neuroendocrine Carcinoma 8 158599 -NCIT:C96065 Small Intestinal Large Cell Neuroendocrine Carcinoma 8 158600 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 158601 -NCIT:C96157 Colorectal Large Cell Neuroendocrine Carcinoma 8 158602 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 9 158603 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 9 158604 -NCIT:C96426 Appendix Large Cell Neuroendocrine Carcinoma 8 158605 -NCIT:C96550 Anal Canal Large Cell Neuroendocrine Carcinoma 8 158606 -NCIT:C96921 Gallbladder Large Cell Neuroendocrine Carcinoma 8 158607 -NCIT:C96958 Extrahepatic Bile Duct Large Cell Neuroendocrine Carcinoma 8 158608 -NCIT:C157760 Bladder Large Cell Neuroendocrine Carcinoma 7 158609 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 8 158610 -NCIT:C158650 Prostate Large Cell Neuroendocrine Carcinoma 7 158611 -NCIT:C158908 Metastatic Large Cell Neuroendocrine Carcinoma 7 158612 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 8 158613 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 8 158614 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 158615 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 8 158616 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 158617 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 158618 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 8 158619 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 158620 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 158621 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 158622 -NCIT:C159225 Kidney Large Cell Neuroendocrine Carcinoma 7 158623 -NCIT:C160982 Head and Neck Large Cell Neuroendocrine Carcinoma 7 158624 -NCIT:C173091 Sinonasal Large Cell Neuroendocrine Carcinoma 8 158625 -NCIT:C173395 Laryngeal Large Cell Neuroendocrine Carcinoma 8 158626 -NCIT:C173650 Salivary Gland Large Cell Neuroendocrine Carcinoma 8 158627 -NCIT:C172810 Unresectable Large Cell Neuroendocrine Carcinoma 7 158628 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 8 158629 -NCIT:C40214 Cervical Large Cell Neuroendocrine Carcinoma 7 158630 -NCIT:C40356 Breast Large Cell Neuroendocrine Carcinoma 7 158631 -NCIT:C5238 Ovarian Large Cell Neuroendocrine Carcinoma 7 158632 -NCIT:C5672 Lung Large Cell Neuroendocrine Carcinoma 7 158633 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 8 158634 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 158635 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 158636 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 8 158637 -NCIT:C7267 Combined Lung Large Cell Neuroendocrine Carcinoma 8 158638 -NCIT:C6461 Thymic Large Cell Neuroendocrine Carcinoma 7 158639 -NCIT:C4536 Metastatic Pituitary Neuroendocrine Tumor 5 158640 -NCIT:C163956 Locally Advanced Pituitary Neuroendocrine Tumor 6 158641 -NCIT:C163959 Metastatic Unresectable Pituitary Neuroendocrine Tumor 6 158642 -NCIT:C5962 Metastatic Lactotroph Pituitary Neuroendocrine Tumor 6 158643 -NCIT:C5963 Metastatic Somatotroph Pituitary Neuroendocrine Tumor 6 158644 -NCIT:C5964 Metastatic Corticotroph Pituitary Neuroendocrine Tumor 6 158645 -NCIT:C5965 Metastatic Thyrotroph Pituitary Neuroendocrine Tumor 6 158646 -NCIT:C46104 Thyroid Gland Mixed Medullary and Follicular Cell-Derived Carcinoma 5 158647 -NCIT:C187992 Thyroid Gland Mixed Medullary and Follicular Carcinoma 6 158648 -NCIT:C187993 Thyroid Gland Mixed Medullary and Papillary Carcinoma 6 158649 -NCIT:C4906 Parathyroid Gland Carcinoma 5 158650 -NCIT:C118819 Childhood Parathyroid Gland Carcinoma 6 158651 -NCIT:C7826 Localized Parathyroid Gland Carcinoma 6 158652 -NCIT:C7828 Recurrent Parathyroid Gland Carcinoma 6 158653 -NCIT:C9044 Metastatic Parathyroid Gland Carcinoma 6 158654 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 7 158655 -NCIT:C8559 Metastatic Paraganglioma 5 158656 -NCIT:C133713 Locally Advanced Paraganglioma 6 158657 -NCIT:C157129 Locally Advanced Adrenal Gland Pheochromocytoma 7 158658 -NCIT:C160852 Advanced Paraganglioma 6 158659 -NCIT:C160853 Advanced Adrenal Gland Pheochromocytoma 7 158660 -NCIT:C4219 Metastatic Extra-Adrenal Paraganglioma 6 158661 -NCIT:C3574 Metastatic Carotid Body Paraganglioma 7 158662 -NCIT:C4623 Metastatic Jugulotympanic Paraganglioma 7 158663 -NCIT:C5392 Metastatic Cardiac Paraganglioma 7 158664 -NCIT:C6413 Metastatic Intrathoracic Paravertebral Paraganglioma 7 158665 -NCIT:C6416 Metastatic Bladder Paraganglioma 7 158666 -NCIT:C4220 Metastatic Adrenal Gland Pheochromocytoma 6 158667 -NCIT:C157129 Locally Advanced Adrenal Gland Pheochromocytoma 7 158668 -NCIT:C160853 Advanced Adrenal Gland Pheochromocytoma 7 158669 -NCIT:C92184 Metastatic Adrenal Gland Composite Pheochromocytoma 7 158670 -NCIT:C9325 Adrenal Cortical Carcinoma 5 158671 -NCIT:C104030 Adrenal Cortical Carcinoma by ENSAT Stage 6 158672 -NCIT:C104031 ENSAT Stage I Adrenal Cortical Carcinoma 7 158673 -NCIT:C104032 ENSAT Stage II Adrenal Cortical Carcinoma 7 158674 -NCIT:C104033 ENSAT Stage III Adrenal Cortical Carcinoma 7 158675 -NCIT:C104034 ENSAT Stage IV Adrenal Cortical Carcinoma 7 158676 -NCIT:C141098 Adrenal Cortical Carcinoma by AJCC v7 Stage 6 158677 -NCIT:C9214 Stage I Adrenal Cortical Carcinoma AJCC v7 7 158678 -NCIT:C9215 Stage II Adrenal Cortical Carcinoma AJCC v7 7 158679 -NCIT:C9216 Stage III Adrenal Cortical Carcinoma AJCC v7 7 158680 -NCIT:C9217 Stage IV Adrenal Cortical Carcinoma AJCC v7 7 158681 -NCIT:C141100 Adrenal Cortical Carcinoma by AJCC v8 Stage 6 158682 -NCIT:C141101 Stage I Adrenal Cortical Carcinoma AJCC v8 7 158683 -NCIT:C141102 Stage II Adrenal Cortical Carcinoma AJCC v8 7 158684 -NCIT:C141103 Stage III Adrenal Cortical Carcinoma AJCC v8 7 158685 -NCIT:C141104 Stage IV Adrenal Cortical Carcinoma AJCC v8 7 158686 -NCIT:C150580 Unresectable Adrenal Cortical Carcinoma 6 158687 -NCIT:C156070 Metastatic Adrenal Cortical Carcinoma 6 158688 -NCIT:C174443 Locally Advanced Adrenal Cortical Carcinoma 7 158689 -NCIT:C191863 Advanced Adrenal Cortical Carcinoma 7 158690 -NCIT:C188036 Refractory Adrenal Cortical Carcinoma 6 158691 -NCIT:C188181 Adrenal Cortical Oncocytic Carcinoma 6 158692 -NCIT:C188182 Adrenal Cortical Myxoid Carcinoma 6 158693 -NCIT:C188183 Adrenal Cortical High Grade Carcinoma 6 158694 -NCIT:C190069 Childhood Adrenal Cortical Carcinoma 6 158695 -NCIT:C6417 Recurrent Adrenal Cortical Carcinoma 6 158696 -NCIT:C68635 Adrenal Cortical Low Grade Carcinoma 6 158697 -NCIT:C68644 Adrenal Cortical Sarcomatoid Carcinoma 6 158698 -NCIT:C3809 Neuroendocrine Neoplasm 4 158699 -NCIT:C126771 Uterine Corpus Neuroendocrine Neoplasm 5 158700 -NCIT:C126773 Uterine Corpus Neuroendocrine Tumor G1 6 158701 -NCIT:C171033 Endometrial Neuroendocrine Carcinoma 6 158702 -NCIT:C126772 Endometrial Large Cell Neuroendocrine Carcinoma 7 158703 -NCIT:C40155 Endometrial Small Cell Neuroendocrine Carcinoma 7 158704 -NCIT:C128041 Cervical Neuroendocrine Neoplasm 5 158705 -NCIT:C128045 Cervical Neuroendocrine Carcinoma 6 158706 -NCIT:C40214 Cervical Large Cell Neuroendocrine Carcinoma 7 158707 -NCIT:C7982 Cervical Small Cell Neuroendocrine Carcinoma 7 158708 -NCIT:C188221 Cervical Neuroendocrine Tumor 6 158709 -NCIT:C128043 Cervical Neuroendocrine Tumor G1 7 158710 -NCIT:C128044 Cervical Neuroendocrine Tumor G2 7 158711 -NCIT:C156485 Metastatic Neuroendocrine Neoplasm 5 158712 -NCIT:C147065 Metastatic Neuroendocrine Tumor 6 158713 -NCIT:C140329 Metastatic Non-Functioning Neuroendocrine Tumor 7 158714 -NCIT:C140328 Advanced Non-Functioning Neuroendocrine Tumor 8 158715 -NCIT:C154621 Advanced Neuroendocrine Tumor 7 158716 -NCIT:C140328 Advanced Non-Functioning Neuroendocrine Tumor 8 158717 -NCIT:C156487 Advanced Carcinoid Tumor 8 158718 -NCIT:C177245 Advanced Lung Carcinoid Tumor 9 158719 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 9 158720 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 158721 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 8 158722 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 158723 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 158724 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 8 158725 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 158726 -NCIT:C156488 Metastatic Pancreatic Neuroendocrine Tumor 7 158727 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 8 158728 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 158729 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 158730 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 8 158731 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 8 158732 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 158733 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 8 158734 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 158735 -NCIT:C167329 Metastatic Midgut Neuroendocrine Tumor 7 158736 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 8 158737 -NCIT:C167333 Locally Advanced Neuroendocrine Tumor 7 158738 -NCIT:C163956 Locally Advanced Pituitary Neuroendocrine Tumor 8 158739 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 8 158740 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 8 158741 -NCIT:C187328 Locally Advanced Carcinoid Tumor 8 158742 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 9 158743 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 8 158744 -NCIT:C179415 Metastatic Digestive System Neuroendocrine Tumor G2 7 158745 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 8 158746 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 8 158747 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 158748 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 8 158749 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 158750 -NCIT:C4536 Metastatic Pituitary Neuroendocrine Tumor 7 158751 -NCIT:C163956 Locally Advanced Pituitary Neuroendocrine Tumor 8 158752 -NCIT:C163959 Metastatic Unresectable Pituitary Neuroendocrine Tumor 8 158753 -NCIT:C5962 Metastatic Lactotroph Pituitary Neuroendocrine Tumor 8 158754 -NCIT:C5963 Metastatic Somatotroph Pituitary Neuroendocrine Tumor 8 158755 -NCIT:C5964 Metastatic Corticotroph Pituitary Neuroendocrine Tumor 8 158756 -NCIT:C5965 Metastatic Thyrotroph Pituitary Neuroendocrine Tumor 8 158757 -NCIT:C6431 Metastatic Carcinoid Tumor 7 158758 -NCIT:C115245 Metastatic Digestive System Neuroendocrine Tumor G1 8 158759 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 9 158760 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 158761 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 9 158762 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 9 158763 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 158764 -NCIT:C156487 Advanced Carcinoid Tumor 8 158765 -NCIT:C177245 Advanced Lung Carcinoid Tumor 9 158766 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 9 158767 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 158768 -NCIT:C177243 Metastatic Lung Carcinoid Tumor 8 158769 -NCIT:C177245 Advanced Lung Carcinoid Tumor 9 158770 -NCIT:C187328 Locally Advanced Carcinoid Tumor 8 158771 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 9 158772 -NCIT:C5171 Metastatic Breast Neuroendocrine Tumor G1 8 158773 -NCIT:C155869 Metastatic Neuroendocrine Carcinoma 6 158774 -NCIT:C155870 Advanced Neuroendocrine Carcinoma 7 158775 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 158776 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 158777 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 158778 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 158779 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 158780 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 158781 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 158782 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 158783 -NCIT:C165300 Advanced Merkel Cell Carcinoma 8 158784 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 8 158785 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 158786 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 158787 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 158788 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 7 158789 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 8 158790 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 158791 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 158792 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 158793 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 8 158794 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 158795 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 158796 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 158797 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 158798 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 158799 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 158800 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 158801 -NCIT:C158908 Metastatic Large Cell Neuroendocrine Carcinoma 7 158802 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 8 158803 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 8 158804 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 158805 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 8 158806 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 158807 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 158808 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 8 158809 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 158810 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 158811 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 158812 -NCIT:C158909 Locally Advanced Neuroendocrine Carcinoma 7 158813 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 158814 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 158815 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 8 158816 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 158817 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 158818 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 8 158819 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 158820 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 8 158821 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 158822 -NCIT:C158911 Metastatic Small Cell Neuroendocrine Carcinoma 7 158823 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 8 158824 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 9 158825 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 158826 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 8 158827 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 158828 -NCIT:C191852 Metastatic Extrapulmonary Small Cell Neuroendocrine Carcinoma 8 158829 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 158830 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 158831 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 9 158832 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 9 158833 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 7 158834 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 158835 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 158836 -NCIT:C162572 Metastatic Merkel Cell Carcinoma 7 158837 -NCIT:C165300 Advanced Merkel Cell Carcinoma 8 158838 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 8 158839 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 8 158840 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 7 158841 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 158842 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 158843 -NCIT:C163975 Neuroendocrine Carcinoma of Unknown Primary 7 158844 -NCIT:C156486 Advanced Neuroendocrine Neoplasm 6 158845 -NCIT:C154621 Advanced Neuroendocrine Tumor 7 158846 -NCIT:C140328 Advanced Non-Functioning Neuroendocrine Tumor 8 158847 -NCIT:C156487 Advanced Carcinoid Tumor 8 158848 -NCIT:C177245 Advanced Lung Carcinoid Tumor 9 158849 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 9 158850 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 158851 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 8 158852 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 158853 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 158854 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 8 158855 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 158856 -NCIT:C155870 Advanced Neuroendocrine Carcinoma 7 158857 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 158858 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 158859 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 158860 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 158861 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 158862 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 158863 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 158864 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 158865 -NCIT:C165300 Advanced Merkel Cell Carcinoma 8 158866 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 8 158867 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 158868 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 158869 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 158870 -NCIT:C158089 Advanced Digestive System Neuroendocrine Neoplasm 7 158871 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 158872 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 158873 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 158874 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 158875 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 158876 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 158877 -NCIT:C165448 Advanced Pancreatic Neuroendocrine Neoplasm 8 158878 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 9 158879 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 158880 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 10 158881 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 8 158882 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 158883 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 8 158884 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 158885 -NCIT:C160852 Advanced Paraganglioma 7 158886 -NCIT:C160853 Advanced Adrenal Gland Pheochromocytoma 8 158887 -NCIT:C165446 Advanced Lung Neuroendocrine Neoplasm 7 158888 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 158889 -NCIT:C177245 Advanced Lung Carcinoid Tumor 8 158890 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 158891 -NCIT:C180871 Advanced Thymic Neuroendocrine Neoplasm 7 158892 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 7 158893 -NCIT:C156492 Metastatic Digestive System Neuroendocrine Neoplasm 6 158894 -NCIT:C115245 Metastatic Digestive System Neuroendocrine Tumor G1 7 158895 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 8 158896 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 158897 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 8 158898 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 8 158899 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 158900 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 7 158901 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 8 158902 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 158903 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 158904 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 158905 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 8 158906 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 158907 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 158908 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 158909 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 158910 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 158911 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 158912 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 158913 -NCIT:C158089 Advanced Digestive System Neuroendocrine Neoplasm 7 158914 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 158915 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 158916 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 158917 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 158918 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 158919 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 158920 -NCIT:C165448 Advanced Pancreatic Neuroendocrine Neoplasm 8 158921 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 9 158922 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 158923 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 10 158924 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 8 158925 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 158926 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 8 158927 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 158928 -NCIT:C165447 Metastatic Pancreatic Neuroendocrine Neoplasm 7 158929 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 8 158930 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 158931 -NCIT:C156488 Metastatic Pancreatic Neuroendocrine Tumor 8 158932 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 9 158933 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 158934 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 10 158935 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 9 158936 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 9 158937 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 158938 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 9 158939 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 10 158940 -NCIT:C165448 Advanced Pancreatic Neuroendocrine Neoplasm 8 158941 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 9 158942 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 158943 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 10 158944 -NCIT:C167329 Metastatic Midgut Neuroendocrine Tumor 7 158945 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 8 158946 -NCIT:C178271 Locally Advanced Digestive System Neuroendocrine Neoplasm 7 158947 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 158948 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 158949 -NCIT:C158090 Locally Advanced Unresectable Digestive System Neuroendocrine Neoplasm 8 158950 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 8 158951 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 8 158952 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 8 158953 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 8 158954 -NCIT:C179415 Metastatic Digestive System Neuroendocrine Tumor G2 7 158955 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 8 158956 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 8 158957 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 158958 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 8 158959 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 158960 -NCIT:C156493 Metastatic Breast Neuroendocrine Neoplasm 6 158961 -NCIT:C5171 Metastatic Breast Neuroendocrine Tumor G1 7 158962 -NCIT:C157602 Metastatic Lung Neuroendocrine Neoplasm 6 158963 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 7 158964 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 158965 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 158966 -NCIT:C165446 Advanced Lung Neuroendocrine Neoplasm 7 158967 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 158968 -NCIT:C177245 Advanced Lung Carcinoid Tumor 8 158969 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 158970 -NCIT:C176715 Locally Advanced Lung Neuroendocrine Neoplasm 7 158971 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 158972 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 158973 -NCIT:C177243 Metastatic Lung Carcinoid Tumor 7 158974 -NCIT:C177245 Advanced Lung Carcinoid Tumor 8 158975 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 7 158976 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 158977 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 158978 -NCIT:C162461 Metastatic Thymic Neuroendocrine Neoplasm 6 158979 -NCIT:C180871 Advanced Thymic Neuroendocrine Neoplasm 7 158980 -NCIT:C167332 Locally Advanced Neuroendocrine Neoplasm 6 158981 -NCIT:C133713 Locally Advanced Paraganglioma 7 158982 -NCIT:C157129 Locally Advanced Adrenal Gland Pheochromocytoma 8 158983 -NCIT:C158909 Locally Advanced Neuroendocrine Carcinoma 7 158984 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 158985 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 158986 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 8 158987 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 158988 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 158989 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 8 158990 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 158991 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 8 158992 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 158993 -NCIT:C167333 Locally Advanced Neuroendocrine Tumor 7 158994 -NCIT:C163956 Locally Advanced Pituitary Neuroendocrine Tumor 8 158995 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 8 158996 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 8 158997 -NCIT:C187328 Locally Advanced Carcinoid Tumor 8 158998 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 9 158999 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 8 159000 -NCIT:C176715 Locally Advanced Lung Neuroendocrine Neoplasm 7 159001 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 159002 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 159003 -NCIT:C178271 Locally Advanced Digestive System Neuroendocrine Neoplasm 7 159004 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 159005 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 159006 -NCIT:C158090 Locally Advanced Unresectable Digestive System Neuroendocrine Neoplasm 8 159007 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 8 159008 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 8 159009 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 8 159010 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 8 159011 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 6 159012 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 7 159013 -NCIT:C8559 Metastatic Paraganglioma 6 159014 -NCIT:C133713 Locally Advanced Paraganglioma 7 159015 -NCIT:C157129 Locally Advanced Adrenal Gland Pheochromocytoma 8 159016 -NCIT:C160852 Advanced Paraganglioma 7 159017 -NCIT:C160853 Advanced Adrenal Gland Pheochromocytoma 8 159018 -NCIT:C4219 Metastatic Extra-Adrenal Paraganglioma 7 159019 -NCIT:C3574 Metastatic Carotid Body Paraganglioma 8 159020 -NCIT:C4623 Metastatic Jugulotympanic Paraganglioma 8 159021 -NCIT:C5392 Metastatic Cardiac Paraganglioma 8 159022 -NCIT:C6413 Metastatic Intrathoracic Paravertebral Paraganglioma 8 159023 -NCIT:C6416 Metastatic Bladder Paraganglioma 8 159024 -NCIT:C4220 Metastatic Adrenal Gland Pheochromocytoma 7 159025 -NCIT:C157129 Locally Advanced Adrenal Gland Pheochromocytoma 8 159026 -NCIT:C160853 Advanced Adrenal Gland Pheochromocytoma 8 159027 -NCIT:C92184 Metastatic Adrenal Gland Composite Pheochromocytoma 8 159028 -NCIT:C157130 Recurrent Neuroendocrine Neoplasm 5 159029 -NCIT:C138183 Recurrent Abdominal Neuroendocrine Neoplasm 6 159030 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 7 159031 -NCIT:C157125 Recurrent Paraganglioma 6 159032 -NCIT:C8047 Recurrent Adrenal Gland Pheochromocytoma 7 159033 -NCIT:C165253 Recurrent Neuroendocrine Carcinoma 6 159034 -NCIT:C115440 Recurrent Merkel Cell Carcinoma 7 159035 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 8 159036 -NCIT:C165740 Locally Recurrent Merkel Cell Carcinoma 8 159037 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 7 159038 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 8 159039 -NCIT:C155938 Recurrent Digestive System Neuroendocrine Carcinoma 7 159040 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 8 159041 -NCIT:C183127 Recurrent Small Cell Neuroendocrine Carcinoma 7 159042 -NCIT:C183128 Recurrent Extrapulmonary Small Cell Neuroendocrine Carcinoma 8 159043 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 9 159044 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 9 159045 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 8 159046 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 9 159047 -NCIT:C176711 Recurrent Lung Neuroendocrine Neoplasm 6 159048 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 7 159049 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 8 159050 -NCIT:C188228 Recurrent Digestive System Neuroendocrine Neoplasm 6 159051 -NCIT:C155938 Recurrent Digestive System Neuroendocrine Carcinoma 7 159052 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 8 159053 -NCIT:C157131 Refractory Neuroendocrine Neoplasm 5 159054 -NCIT:C138184 Refractory Abdominal Neuroendocrine Neoplasm 6 159055 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 7 159056 -NCIT:C158088 Refractory Digestive System Neuroendocrine Neoplasm 6 159057 -NCIT:C155937 Refractory Digestive System Neuroendocrine Carcinoma 7 159058 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 8 159059 -NCIT:C158401 Refractory Paraganglioma 6 159060 -NCIT:C158402 Refractory Adrenal Gland Pheochromocytoma 7 159061 -NCIT:C165742 Refractory Neuroendocrine Carcinoma 6 159062 -NCIT:C155937 Refractory Digestive System Neuroendocrine Carcinoma 7 159063 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 8 159064 -NCIT:C165741 Refractory Merkel Cell Carcinoma 7 159065 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 7 159066 -NCIT:C191853 Refractory Small Cell Neuroendocrine Carcinoma 7 159067 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 8 159068 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 9 159069 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 9 159070 -NCIT:C191854 Refractory Extrapulmonary Small Cell Neuroendocrine Carcinoma 8 159071 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 9 159072 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 9 159073 -NCIT:C157743 Kidney Neuroendocrine Neoplasm 5 159074 -NCIT:C159223 Kidney Neuroendocrine Tumor 6 159075 -NCIT:C159224 Kidney Neuroendocrine Carcinoma 6 159076 -NCIT:C116317 Kidney Small Cell Neuroendocrine Carcinoma 7 159077 -NCIT:C159225 Kidney Large Cell Neuroendocrine Carcinoma 7 159078 -NCIT:C159226 Kidney Paraganglioma 6 159079 -NCIT:C157758 Bladder Neuroendocrine Neoplasm 5 159080 -NCIT:C157759 Bladder Neuroendocrine Carcinoma 6 159081 -NCIT:C157760 Bladder Large Cell Neuroendocrine Carcinoma 7 159082 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 8 159083 -NCIT:C9461 Bladder Small Cell Neuroendocrine Carcinoma 7 159084 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 8 159085 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 8 159086 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 159087 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 8 159088 -NCIT:C159582 Bladder Neuroendocrine Tumor 6 159089 -NCIT:C6414 Bladder Paraganglioma 6 159090 -NCIT:C6416 Metastatic Bladder Paraganglioma 7 159091 -NCIT:C162460 Thymic Neuroendocrine Neoplasm 5 159092 -NCIT:C162461 Metastatic Thymic Neuroendocrine Neoplasm 6 159093 -NCIT:C180871 Advanced Thymic Neuroendocrine Neoplasm 7 159094 -NCIT:C171031 Thymic Neuroendocrine Carcinoma 6 159095 -NCIT:C6460 Thymic Small Cell Neuroendocrine Carcinoma 7 159096 -NCIT:C6461 Thymic Large Cell Neuroendocrine Carcinoma 7 159097 -NCIT:C180872 Unresectable Thymic Neuroendocrine Neoplasm 6 159098 -NCIT:C6430 Thymic Carcinoid Tumor 6 159099 -NCIT:C45719 Thymic Atypical Carcinoid Tumor 7 159100 -NCIT:C45720 Thymic Typical Carcinoid Tumor 7 159101 -NCIT:C168973 Unresectable Neuroendocrine Neoplasm 5 159102 -NCIT:C165453 Unresectable Neuroendocrine Tumor 6 159103 -NCIT:C153080 Unresectable Neuroendocrine Tumor G1 7 159104 -NCIT:C177246 Unresectable Lung Carcinoid Tumor 8 159105 -NCIT:C179419 Unresectable Digestive System Neuroendocrine Tumor G1 8 159106 -NCIT:C163959 Metastatic Unresectable Pituitary Neuroendocrine Tumor 7 159107 -NCIT:C167331 Unresectable Midgut Neuroendocrine Tumor 7 159108 -NCIT:C187345 Unresectable Digestive System Neuroendocrine Tumor G2 7 159109 -NCIT:C190782 Unresectable Pancreatic Neuroendocrine Tumor 7 159110 -NCIT:C165454 Unresectable Lung Neuroendocrine Neoplasm 6 159111 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 7 159112 -NCIT:C177246 Unresectable Lung Carcinoid Tumor 7 159113 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 7 159114 -NCIT:C165455 Unresectable Digestive System Neuroendocrine Neoplasm 6 159115 -NCIT:C155935 Unresectable Digestive System Neuroendocrine Carcinoma 7 159116 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 8 159117 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 8 159118 -NCIT:C158090 Locally Advanced Unresectable Digestive System Neuroendocrine Neoplasm 7 159119 -NCIT:C165456 Unresectable Pancreatic Neuroendocrine Neoplasm 7 159120 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 8 159121 -NCIT:C190782 Unresectable Pancreatic Neuroendocrine Tumor 8 159122 -NCIT:C167331 Unresectable Midgut Neuroendocrine Tumor 7 159123 -NCIT:C179419 Unresectable Digestive System Neuroendocrine Tumor G1 7 159124 -NCIT:C187345 Unresectable Digestive System Neuroendocrine Tumor G2 7 159125 -NCIT:C172806 Unresectable Neuroendocrine Carcinoma 6 159126 -NCIT:C155935 Unresectable Digestive System Neuroendocrine Carcinoma 7 159127 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 8 159128 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 8 159129 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 7 159130 -NCIT:C162786 Unresectable Merkel Cell Carcinoma 7 159131 -NCIT:C163974 Unresectable Thyroid Gland Medullary Carcinoma 7 159132 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 8 159133 -NCIT:C172810 Unresectable Large Cell Neuroendocrine Carcinoma 7 159134 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 8 159135 -NCIT:C191855 Unresectable Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 159136 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 8 159137 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 8 159138 -NCIT:C175939 Unresectable Abdominal Neuroendocrine Neoplasm 6 159139 -NCIT:C180872 Unresectable Thymic Neuroendocrine Neoplasm 6 159140 -NCIT:C188218 Neuroendocrine Tumor 5 159141 -NCIT:C147065 Metastatic Neuroendocrine Tumor 6 159142 -NCIT:C140329 Metastatic Non-Functioning Neuroendocrine Tumor 7 159143 -NCIT:C140328 Advanced Non-Functioning Neuroendocrine Tumor 8 159144 -NCIT:C154621 Advanced Neuroendocrine Tumor 7 159145 -NCIT:C140328 Advanced Non-Functioning Neuroendocrine Tumor 8 159146 -NCIT:C156487 Advanced Carcinoid Tumor 8 159147 -NCIT:C177245 Advanced Lung Carcinoid Tumor 9 159148 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 9 159149 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 159150 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 8 159151 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 159152 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 159153 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 8 159154 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 159155 -NCIT:C156488 Metastatic Pancreatic Neuroendocrine Tumor 7 159156 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 8 159157 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 159158 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 159159 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 8 159160 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 8 159161 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 159162 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 8 159163 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 159164 -NCIT:C167329 Metastatic Midgut Neuroendocrine Tumor 7 159165 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 8 159166 -NCIT:C167333 Locally Advanced Neuroendocrine Tumor 7 159167 -NCIT:C163956 Locally Advanced Pituitary Neuroendocrine Tumor 8 159168 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 8 159169 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 8 159170 -NCIT:C187328 Locally Advanced Carcinoid Tumor 8 159171 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 9 159172 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 8 159173 -NCIT:C179415 Metastatic Digestive System Neuroendocrine Tumor G2 7 159174 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 8 159175 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 8 159176 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 159177 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 8 159178 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 159179 -NCIT:C4536 Metastatic Pituitary Neuroendocrine Tumor 7 159180 -NCIT:C163956 Locally Advanced Pituitary Neuroendocrine Tumor 8 159181 -NCIT:C163959 Metastatic Unresectable Pituitary Neuroendocrine Tumor 8 159182 -NCIT:C5962 Metastatic Lactotroph Pituitary Neuroendocrine Tumor 8 159183 -NCIT:C5963 Metastatic Somatotroph Pituitary Neuroendocrine Tumor 8 159184 -NCIT:C5964 Metastatic Corticotroph Pituitary Neuroendocrine Tumor 8 159185 -NCIT:C5965 Metastatic Thyrotroph Pituitary Neuroendocrine Tumor 8 159186 -NCIT:C6431 Metastatic Carcinoid Tumor 7 159187 -NCIT:C115245 Metastatic Digestive System Neuroendocrine Tumor G1 8 159188 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 9 159189 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 159190 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 9 159191 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 9 159192 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 159193 -NCIT:C156487 Advanced Carcinoid Tumor 8 159194 -NCIT:C177245 Advanced Lung Carcinoid Tumor 9 159195 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 9 159196 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 159197 -NCIT:C177243 Metastatic Lung Carcinoid Tumor 8 159198 -NCIT:C177245 Advanced Lung Carcinoid Tumor 9 159199 -NCIT:C187328 Locally Advanced Carcinoid Tumor 8 159200 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 9 159201 -NCIT:C5171 Metastatic Breast Neuroendocrine Tumor G1 8 159202 -NCIT:C159223 Kidney Neuroendocrine Tumor 6 159203 -NCIT:C159582 Bladder Neuroendocrine Tumor 6 159204 -NCIT:C165453 Unresectable Neuroendocrine Tumor 6 159205 -NCIT:C153080 Unresectable Neuroendocrine Tumor G1 7 159206 -NCIT:C177246 Unresectable Lung Carcinoid Tumor 8 159207 -NCIT:C179419 Unresectable Digestive System Neuroendocrine Tumor G1 8 159208 -NCIT:C163959 Metastatic Unresectable Pituitary Neuroendocrine Tumor 7 159209 -NCIT:C167331 Unresectable Midgut Neuroendocrine Tumor 7 159210 -NCIT:C187345 Unresectable Digestive System Neuroendocrine Tumor G2 7 159211 -NCIT:C190782 Unresectable Pancreatic Neuroendocrine Tumor 7 159212 -NCIT:C173387 Head and Neck Neuroendocrine Tumor 6 159213 -NCIT:C173388 Head and Neck Neuroendocrine Tumor G2 7 159214 -NCIT:C173392 Laryngeal Neuroendocrine Tumor G2 8 159215 -NCIT:C173391 Laryngeal Neuroendocrine Tumor 7 159216 -NCIT:C173392 Laryngeal Neuroendocrine Tumor G2 8 159217 -NCIT:C188223 Laryngeal Neuroendocrine Tumor G1 8 159218 -NCIT:C188224 Head and Neck Neuroendocrine Tumor G1 7 159219 -NCIT:C188223 Laryngeal Neuroendocrine Tumor G1 8 159220 -NCIT:C175610 Breast Neuroendocrine Tumor 6 159221 -NCIT:C175611 Breast Neuroendocrine Tumor G2 7 159222 -NCIT:C5170 Breast Neuroendocrine Tumor G1 7 159223 -NCIT:C5171 Metastatic Breast Neuroendocrine Tumor G1 8 159224 -NCIT:C188221 Cervical Neuroendocrine Tumor 6 159225 -NCIT:C128043 Cervical Neuroendocrine Tumor G1 7 159226 -NCIT:C128044 Cervical Neuroendocrine Tumor G2 7 159227 -NCIT:C188229 Composite Gangliocytoma/Neuroma and Neuroendocrine Tumor 6 159228 -NCIT:C5325 Intestinal Composite Gangliocytoma/Neuroma and Neuroendocrine Tumor 7 159229 -NCIT:C96073 Small Intestinal Composite Gangliocytoma/Neuroma and Neuroendocrine Tumor 8 159230 -NCIT:C190077 Childhood Neuroendocrine Tumor 6 159231 -NCIT:C118810 Childhood Neuroendocrine Tumor G1 7 159232 -NCIT:C190076 Childhood Digestive System Neuroendocrine Tumor 7 159233 -NCIT:C190029 Childhood Appendix Neuroendocrine Tumor 8 159234 -NCIT:C190078 Childhood Neuroendocrine Tumor G2 7 159235 -NCIT:C2915 Carcinoid Tumor 6 159236 -NCIT:C118810 Childhood Neuroendocrine Tumor G1 7 159237 -NCIT:C126773 Uterine Corpus Neuroendocrine Tumor G1 7 159238 -NCIT:C128043 Cervical Neuroendocrine Tumor G1 7 159239 -NCIT:C153080 Unresectable Neuroendocrine Tumor G1 7 159240 -NCIT:C177246 Unresectable Lung Carcinoid Tumor 8 159241 -NCIT:C179419 Unresectable Digestive System Neuroendocrine Tumor G1 8 159242 -NCIT:C5170 Breast Neuroendocrine Tumor G1 7 159243 -NCIT:C5171 Metastatic Breast Neuroendocrine Tumor G1 8 159244 -NCIT:C6360 Testicular Neuroendocrine Tumor G1 7 159245 -NCIT:C6421 Foregut Neuroendocrine Tumor G1 7 159246 -NCIT:C4038 Lung Carcinoid Tumor 8 159247 -NCIT:C176705 Functioning Lung Carcinoid Tumor 9 159248 -NCIT:C176706 Non-Functioning Lung Carcinoid Tumor 9 159249 -NCIT:C177243 Metastatic Lung Carcinoid Tumor 9 159250 -NCIT:C177245 Advanced Lung Carcinoid Tumor 10 159251 -NCIT:C177246 Unresectable Lung Carcinoid Tumor 9 159252 -NCIT:C45550 Lung Typical Carcinoid Tumor 9 159253 -NCIT:C45551 Lung Atypical Carcinoid Tumor 9 159254 -NCIT:C4635 Gastric Neuroendocrine Tumor G1 8 159255 -NCIT:C5820 Esophageal Neuroendocrine Tumor G1 8 159256 -NCIT:C5861 Extrahepatic Bile Duct Neuroendocrine Tumor G1 8 159257 -NCIT:C6425 Duodenal Neuroendocrine Tumor G1 8 159258 -NCIT:C6430 Thymic Carcinoid Tumor 8 159259 -NCIT:C45719 Thymic Atypical Carcinoid Tumor 9 159260 -NCIT:C45720 Thymic Typical Carcinoid Tumor 9 159261 -NCIT:C6422 Midgut Neuroendocrine Tumor G1 7 159262 -NCIT:C4138 Appendix Neuroendocrine Tumor G1 8 159263 -NCIT:C4935 Ileal Neuroendocrine Tumor G1 8 159264 -NCIT:C5229 Ovarian Carcinoid Tumor 8 159265 -NCIT:C188015 Ovarian Teratoma with Carcinoid Tumor 9 159266 -NCIT:C4292 Strumal Carcinoid 10 159267 -NCIT:C40013 Ovarian Insular Carcinoid Tumor 9 159268 -NCIT:C40014 Ovarian Trabecular Carcinoid Tumor 9 159269 -NCIT:C40015 Ovarian Mucinous Carcinoid Tumor 9 159270 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 8 159271 -NCIT:C6424 Meckel Diverticulum Neuroendocrine Tumor G1 8 159272 -NCIT:C6427 Ascending Colon Neuroendocrine Tumor G1 8 159273 -NCIT:C6429 Jejunal Neuroendocrine Tumor G1 8 159274 -NCIT:C6423 Hindgut Neuroendocrine Tumor G1 7 159275 -NCIT:C188043 Sigmoid Colon Neuroendocrine Tumor G1 8 159276 -NCIT:C5547 Rectal Neuroendocrine Tumor G1 8 159277 -NCIT:C6426 Transverse Colon Neuroendocrine Tumor G1 8 159278 -NCIT:C6428 Descending Colon Neuroendocrine Tumor G1 8 159279 -NCIT:C6431 Metastatic Carcinoid Tumor 7 159280 -NCIT:C115245 Metastatic Digestive System Neuroendocrine Tumor G1 8 159281 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 9 159282 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 159283 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 9 159284 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 9 159285 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 159286 -NCIT:C156487 Advanced Carcinoid Tumor 8 159287 -NCIT:C177245 Advanced Lung Carcinoid Tumor 9 159288 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 9 159289 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 159290 -NCIT:C177243 Metastatic Lung Carcinoid Tumor 8 159291 -NCIT:C177245 Advanced Lung Carcinoid Tumor 9 159292 -NCIT:C187328 Locally Advanced Carcinoid Tumor 8 159293 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 9 159294 -NCIT:C5171 Metastatic Breast Neuroendocrine Tumor G1 8 159295 -NCIT:C72074 Atypical Carcinoid Tumor 7 159296 -NCIT:C45551 Lung Atypical Carcinoid Tumor 8 159297 -NCIT:C45719 Thymic Atypical Carcinoid Tumor 8 159298 -NCIT:C7709 Digestive System Neuroendocrine Tumor G1 7 159299 -NCIT:C115245 Metastatic Digestive System Neuroendocrine Tumor G1 8 159300 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 9 159301 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 159302 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 9 159303 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 9 159304 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 159305 -NCIT:C172719 Liver Neuroendocrine Tumor G1 8 159306 -NCIT:C179419 Unresectable Digestive System Neuroendocrine Tumor G1 8 159307 -NCIT:C27252 Enterochromaffin-Like Cell Neuroendocrine Tumor G1 8 159308 -NCIT:C4635 Gastric Neuroendocrine Tumor G1 9 159309 -NCIT:C4138 Appendix Neuroendocrine Tumor G1 8 159310 -NCIT:C4637 Intestinal Neuroendocrine Tumor G1 8 159311 -NCIT:C4638 Small Intestinal Neuroendocrine Tumor G1 9 159312 -NCIT:C4935 Ileal Neuroendocrine Tumor G1 10 159313 -NCIT:C6425 Duodenal Neuroendocrine Tumor G1 10 159314 -NCIT:C6429 Jejunal Neuroendocrine Tumor G1 10 159315 -NCIT:C6424 Meckel Diverticulum Neuroendocrine Tumor G1 9 159316 -NCIT:C96160 Colorectal Neuroendocrine Tumor G1 9 159317 -NCIT:C5497 Colon Neuroendocrine Tumor G1 10 159318 -NCIT:C188043 Sigmoid Colon Neuroendocrine Tumor G1 11 159319 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 11 159320 -NCIT:C6426 Transverse Colon Neuroendocrine Tumor G1 11 159321 -NCIT:C6427 Ascending Colon Neuroendocrine Tumor G1 11 159322 -NCIT:C6428 Descending Colon Neuroendocrine Tumor G1 11 159323 -NCIT:C5547 Rectal Neuroendocrine Tumor G1 10 159324 -NCIT:C5820 Esophageal Neuroendocrine Tumor G1 8 159325 -NCIT:C5861 Extrahepatic Bile Duct Neuroendocrine Tumor G1 8 159326 -NCIT:C7861 Localized Digestive System Neuroendocrine Tumor G1 8 159327 -NCIT:C7862 Regional Digestive System Neuroendocrine Tumor G1 8 159328 -NCIT:C7864 Recurrent Digestive System Neuroendocrine Tumor G1 8 159329 -NCIT:C95584 Pancreatic Neuroendocrine Tumor G1 8 159330 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 9 159331 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 159332 -NCIT:C95585 Non-Functioning Pancreatic Neuroendocrine Tumor G1 9 159333 -NCIT:C95982 Ampulla of Vater Neuroendocrine Tumor G1 8 159334 -NCIT:C96543 Anal Canal Neuroendocrine Tumor G1 8 159335 -NCIT:C96924 Gallbladder Neuroendocrine Tumor G1 8 159336 -NCIT:C3329 Pituitary Neuroendocrine Tumor 6 159337 -NCIT:C132296 Atypical Pituitary Neuroendocrine Tumor 7 159338 -NCIT:C154520 Multiple Synchronous Pituitary Neuroendocrine Tumors of Distinct Lineages 7 159339 -NCIT:C154519 Double Pituitary Neuroendocrine Tumors of Distinct Lineages 8 159340 -NCIT:C155767 Mixed Gangliocytoma-Pituitary Neuroendocrine Tumor 7 159341 -NCIT:C173345 Ectopic Pituitary Neuroendocrine Tumor 7 159342 -NCIT:C173352 Nasopharyngeal Pituitary Neuroendocrine Tumor 8 159343 -NCIT:C187086 Pituitary Neuroendocrine Tumor of PIT1-Lineage 7 159344 -NCIT:C127194 Somatotroph-Lactotroph Pituitary Neuroendocrine Tumor 8 159345 -NCIT:C45927 Mixed Somatotroph and Lactotroph Pituitary Neuroendocrine Tumor 9 159346 -NCIT:C45928 Mammosomatotroph Pituitary Neuroendocrine Tumor 9 159347 -NCIT:C187098 Mature Plurihormonal PIT1 Lineage Pituitary Neuroendocrine Tumor 8 159348 -NCIT:C187099 Immature PIT1 Lineage Pituitary Neuroendocrine Tumor 8 159349 -NCIT:C3342 Lactotroph Pituitary Neuroendocrine Tumor 8 159350 -NCIT:C45931 Densely Granulated Lactotroph Pituitary Neuroendocrine Tumor 9 159351 -NCIT:C45932 Sparsely Granulated Lactotroph Pituitary Neuroendocrine Tumor 9 159352 -NCIT:C5962 Metastatic Lactotroph Pituitary Neuroendocrine Tumor 9 159353 -NCIT:C45929 Acidophil Stem Cell Pituitary Neuroendocrine Tumor 8 159354 -NCIT:C7461 Somatotroph Pituitary Neuroendocrine Tumor 8 159355 -NCIT:C45925 Densely Granulated Somatotroph Pituitary Neuroendocrine Tumor 9 159356 -NCIT:C45926 Sparsely Granulated Somatotroph Pituitary Neuroendocrine Tumor 9 159357 -NCIT:C5963 Metastatic Somatotroph Pituitary Neuroendocrine Tumor 9 159358 -NCIT:C7915 Thyrotroph Pituitary Neuroendocrine Tumor 8 159359 -NCIT:C5965 Metastatic Thyrotroph Pituitary Neuroendocrine Tumor 9 159360 -NCIT:C187087 Pituitary Neuroendocrine Tumor of TPIT-Lineage 7 159361 -NCIT:C7462 Corticotroph Pituitary Neuroendocrine Tumor 8 159362 -NCIT:C154339 Densely Granulated Corticotroph Pituitary Neuroendocrine Tumor 9 159363 -NCIT:C154431 Non-Functioning Densely Granulated Corticotroph Pituitary Neuroendocrine Tumor 10 159364 -NCIT:C154340 Sparsely Granulated Corticotroph Pituitary Neuroendocrine Tumor 9 159365 -NCIT:C154432 Non-Functioning Sparsely Granulated Corticotroph Pituitary Neuroendocrine Tumor 10 159366 -NCIT:C154342 Crooke Cell Tumor 9 159367 -NCIT:C154429 Non-Functioning Corticotroph Pituitary Neuroendocrine Tumor 9 159368 -NCIT:C154431 Non-Functioning Densely Granulated Corticotroph Pituitary Neuroendocrine Tumor 10 159369 -NCIT:C154432 Non-Functioning Sparsely Granulated Corticotroph Pituitary Neuroendocrine Tumor 10 159370 -NCIT:C5964 Metastatic Corticotroph Pituitary Neuroendocrine Tumor 9 159371 -NCIT:C187088 Pituitary Neuroendocrine Tumor of SF1-Lineage 7 159372 -NCIT:C45915 Gonadotroph Pituitary Neuroendocrine Tumor 8 159373 -NCIT:C121152 FSH-Producing Pituitary Neuroendocrine Tumor 9 159374 -NCIT:C121153 LH-Producing Pituitary Neuroendocrine Tumor 9 159375 -NCIT:C187096 Pituitary Neuroendocrine Tumor without Distinct Lineage Differentiation 7 159376 -NCIT:C45916 Plurihormonal Pituitary Neuroendocrine Tumor 8 159377 -NCIT:C154504 Monomorphous Plurihormonal Pituitary Neuroendocrine Tumor 9 159378 -NCIT:C154505 Plurimorphous Plurihormonal Pituitary Neuroendocrine Tumor 9 159379 -NCIT:C45924 Null Cell Pituitary Neuroendocrine Tumor 8 159380 -NCIT:C187135 Pituitary Neuroendocrine Tumor, Not Otherwise Specified 7 159381 -NCIT:C4348 Non-Functioning Pituitary Neuroendocrine Tumor 7 159382 -NCIT:C121678 Non-Functioning Pituitary Neuroendocrine Tumor/Microadenoma 8 159383 -NCIT:C121721 Non-Functioning Pituitary Neuroendocrine Tumor/Macroadenoma 8 159384 -NCIT:C154429 Non-Functioning Corticotroph Pituitary Neuroendocrine Tumor 8 159385 -NCIT:C154431 Non-Functioning Densely Granulated Corticotroph Pituitary Neuroendocrine Tumor 9 159386 -NCIT:C154432 Non-Functioning Sparsely Granulated Corticotroph Pituitary Neuroendocrine Tumor 9 159387 -NCIT:C45924 Null Cell Pituitary Neuroendocrine Tumor 8 159388 -NCIT:C43541 Pituitary Neuroendocrine Tumor/Microadenoma 7 159389 -NCIT:C121678 Non-Functioning Pituitary Neuroendocrine Tumor/Microadenoma 8 159390 -NCIT:C121679 Functioning Pituitary Neuroendocrine Tumor/Microadenoma 8 159391 -NCIT:C43542 Pituitary Neuroendocrine Tumor/Macroadenoma 7 159392 -NCIT:C121720 Functioning Pituitary Neuroendocrine Tumor/Macroadenoma 8 159393 -NCIT:C121721 Non-Functioning Pituitary Neuroendocrine Tumor/Macroadenoma 8 159394 -NCIT:C4536 Metastatic Pituitary Neuroendocrine Tumor 7 159395 -NCIT:C163956 Locally Advanced Pituitary Neuroendocrine Tumor 8 159396 -NCIT:C163959 Metastatic Unresectable Pituitary Neuroendocrine Tumor 8 159397 -NCIT:C5962 Metastatic Lactotroph Pituitary Neuroendocrine Tumor 8 159398 -NCIT:C5963 Metastatic Somatotroph Pituitary Neuroendocrine Tumor 8 159399 -NCIT:C5964 Metastatic Corticotroph Pituitary Neuroendocrine Tumor 8 159400 -NCIT:C5965 Metastatic Thyrotroph Pituitary Neuroendocrine Tumor 8 159401 -NCIT:C8388 Functioning Pituitary Neuroendocrine Tumor 7 159402 -NCIT:C121679 Functioning Pituitary Neuroendocrine Tumor/Microadenoma 8 159403 -NCIT:C121720 Functioning Pituitary Neuroendocrine Tumor/Macroadenoma 8 159404 -NCIT:C5024 Prostate Neuroendocrine Tumor 6 159405 -NCIT:C5324 Cauda Equina Neuroendocrine Tumor 6 159406 -NCIT:C95404 Digestive System Neuroendocrine Tumor 6 159407 -NCIT:C135129 Digestive System Neuroendocrine Tumor by AJCC v7 Stage 7 159408 -NCIT:C135155 Appendix Neuroendocrine Tumor by AJCC v7 Stage 8 159409 -NCIT:C87809 Stage I Appendix Neuroendocrine Tumor AJCC v7 9 159410 -NCIT:C87810 Stage II Appendix Neuroendocrine Tumor AJCC v7 9 159411 -NCIT:C87811 Stage III Appendix Neuroendocrine Tumor AJCC v7 9 159412 -NCIT:C87812 Stage IV Appendix Neuroendocrine Tumor AJCC v7 9 159413 -NCIT:C88027 Stage 0 Digestive System Neuroendocrine Tumor AJCC v7 8 159414 -NCIT:C88028 Stage I Digestive System Neuroendocrine Tumor AJCC v7 8 159415 -NCIT:C88029 Stage IIA Digestive System Neuroendocrine Tumor AJCC v7 8 159416 -NCIT:C88030 Stage IIB Digestive System Neuroendocrine Tumor AJCC v7 8 159417 -NCIT:C88031 Stage IIIA Digestive System Neuroendocrine Tumor AJCC v7 8 159418 -NCIT:C88032 Stage IIIB Digestive System Neuroendocrine Tumor AJCC v7 8 159419 -NCIT:C88033 Stage IV Digestive System Neuroendocrine Tumor AJCC v7 8 159420 -NCIT:C167327 Midgut Neuroendocrine Tumor 7 159421 -NCIT:C135090 Jejunal Neuroendocrine Tumor 8 159422 -NCIT:C135119 Jejunal Neuroendocrine Tumor by AJCC v8 Stage 9 159423 -NCIT:C135120 Stage I Jejunal Neuroendocrine Tumor AJCC v8 10 159424 -NCIT:C135121 Stage II Jejunal Neuroendocrine Tumor AJCC v8 10 159425 -NCIT:C135122 Stage III Jejunal Neuroendocrine Tumor AJCC v8 10 159426 -NCIT:C135123 Stage IV Jejunal Neuroendocrine Tumor AJCC v8 10 159427 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 9 159428 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 9 159429 -NCIT:C5787 Jejunal Somatostatin-Producing Neuroendocrine Tumor 9 159430 -NCIT:C6429 Jejunal Neuroendocrine Tumor G1 9 159431 -NCIT:C135092 Ileal Neuroendocrine Tumor 8 159432 -NCIT:C135124 Ileal Neuroendocrine Tumor by AJCC v8 Stage 9 159433 -NCIT:C135125 Stage I Ileal Neuroendocrine Tumor AJCC v8 10 159434 -NCIT:C135126 Stage II Ileal Neuroendocrine Tumor AJCC v8 10 159435 -NCIT:C135127 Stage III Ileal Neuroendocrine Tumor AJCC v8 10 159436 -NCIT:C135128 Stage IV Ileal Neuroendocrine Tumor AJCC v8 10 159437 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 9 159438 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 9 159439 -NCIT:C4935 Ileal Neuroendocrine Tumor G1 9 159440 -NCIT:C167328 Midgut Neuroendocrine Tumor G2 8 159441 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 9 159442 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 9 159443 -NCIT:C96423 Appendix Neuroendocrine Tumor G2 9 159444 -NCIT:C167329 Metastatic Midgut Neuroendocrine Tumor 8 159445 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 9 159446 -NCIT:C167331 Unresectable Midgut Neuroendocrine Tumor 8 159447 -NCIT:C172669 Midgut Neuroendocrine Tumor G3 8 159448 -NCIT:C172666 Appendix Neuroendocrine Tumor G3 9 159449 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 9 159450 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 9 159451 -NCIT:C6422 Midgut Neuroendocrine Tumor G1 8 159452 -NCIT:C4138 Appendix Neuroendocrine Tumor G1 9 159453 -NCIT:C4935 Ileal Neuroendocrine Tumor G1 9 159454 -NCIT:C5229 Ovarian Carcinoid Tumor 9 159455 -NCIT:C188015 Ovarian Teratoma with Carcinoid Tumor 10 159456 -NCIT:C4292 Strumal Carcinoid 11 159457 -NCIT:C40013 Ovarian Insular Carcinoid Tumor 10 159458 -NCIT:C40014 Ovarian Trabecular Carcinoid Tumor 10 159459 -NCIT:C40015 Ovarian Mucinous Carcinoid Tumor 10 159460 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 9 159461 -NCIT:C6424 Meckel Diverticulum Neuroendocrine Tumor G1 9 159462 -NCIT:C6427 Ascending Colon Neuroendocrine Tumor G1 9 159463 -NCIT:C6429 Jejunal Neuroendocrine Tumor G1 9 159464 -NCIT:C96422 Appendix Neuroendocrine Tumor 8 159465 -NCIT:C135155 Appendix Neuroendocrine Tumor by AJCC v7 Stage 9 159466 -NCIT:C87809 Stage I Appendix Neuroendocrine Tumor AJCC v7 10 159467 -NCIT:C87810 Stage II Appendix Neuroendocrine Tumor AJCC v7 10 159468 -NCIT:C87811 Stage III Appendix Neuroendocrine Tumor AJCC v7 10 159469 -NCIT:C87812 Stage IV Appendix Neuroendocrine Tumor AJCC v7 10 159470 -NCIT:C135156 Appendix Neuroendocrine Tumor by AJCC v8 Stage 9 159471 -NCIT:C135157 Stage I Appendix Neuroendocrine Tumor AJCC v8 10 159472 -NCIT:C135158 Stage II Appendix Neuroendocrine Tumor AJCC v8 10 159473 -NCIT:C135159 Stage III Appendix Neuroendocrine Tumor AJCC v8 10 159474 -NCIT:C135160 Stage IV Appendix Neuroendocrine Tumor AJCC v8 10 159475 -NCIT:C172666 Appendix Neuroendocrine Tumor G3 9 159476 -NCIT:C190029 Childhood Appendix Neuroendocrine Tumor 9 159477 -NCIT:C27445 Appendix L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 9 159478 -NCIT:C4138 Appendix Neuroendocrine Tumor G1 9 159479 -NCIT:C43565 Appendix Tubular Carcinoid 9 159480 -NCIT:C96423 Appendix Neuroendocrine Tumor G2 9 159481 -NCIT:C96424 Appendix Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 9 159482 -NCIT:C172660 Digestive System Neuroendocrine Tumor G3 7 159483 -NCIT:C172661 Esophageal Neuroendocrine Tumor G3 8 159484 -NCIT:C172662 Gastric Neuroendocrine Tumor G3 8 159485 -NCIT:C172669 Midgut Neuroendocrine Tumor G3 8 159486 -NCIT:C172666 Appendix Neuroendocrine Tumor G3 9 159487 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 9 159488 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 9 159489 -NCIT:C172670 Intestinal Neuroendocrine Tumor G3 8 159490 -NCIT:C172664 Small Intestinal Neuroendocrine Tumor G3 9 159491 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 10 159492 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 10 159493 -NCIT:C172672 Duodenal Neuroendocrine Tumor G3 10 159494 -NCIT:C172701 Colorectal Neuroendocrine Tumor G3 9 159495 -NCIT:C172702 Colon Neuroendocrine Tumor G3 10 159496 -NCIT:C172703 Rectal Neuroendocrine Tumor G3 10 159497 -NCIT:C172673 Ampulla of Vater Neuroendocrine Tumor G3 8 159498 -NCIT:C172721 Liver Neuroendocrine Tumor G3 8 159499 -NCIT:C172742 Gallbladder Neuroendocrine Tumor G3 8 159500 -NCIT:C172743 Extrahepatic Bile Duct Neuroendocrine Tumor G3 8 159501 -NCIT:C172814 Pancreatic Neuroendocrine Tumor G3 8 159502 -NCIT:C190076 Childhood Digestive System Neuroendocrine Tumor 7 159503 -NCIT:C190029 Childhood Appendix Neuroendocrine Tumor 8 159504 -NCIT:C26749 VIP-Producing Neuroendocrine Tumor 7 159505 -NCIT:C27454 Pancreatic VIP-Producing Neuroendocrine Tumor 8 159506 -NCIT:C95599 Pancreatic Vipoma 9 159507 -NCIT:C67461 Malignant Pancreatic Vipoma 10 159508 -NCIT:C27455 Small Intestinal VIP-Producing Neuroendocrine Tumor 8 159509 -NCIT:C65189 Malignant Vipoma 8 159510 -NCIT:C67461 Malignant Pancreatic Vipoma 9 159511 -NCIT:C27448 L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 7 159512 -NCIT:C27445 Appendix L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 8 159513 -NCIT:C27452 Small Intestinal L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 8 159514 -NCIT:C96161 Colorectal L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 8 159515 -NCIT:C27447 Colon L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 9 159516 -NCIT:C27720 Pancreatic Neuroendocrine Tumor 7 159517 -NCIT:C135560 Pancreatic Neuroendocrine Tumor by AJCC v8 Stage 8 159518 -NCIT:C135561 Stage I Pancreatic Neuroendocrine Tumor AJCC v8 9 159519 -NCIT:C135562 Stage II Pancreatic Neuroendocrine Tumor AJCC v8 9 159520 -NCIT:C135563 Stage III Pancreatic Neuroendocrine Tumor AJCC v8 9 159521 -NCIT:C135564 Stage IV Pancreatic Neuroendocrine Tumor AJCC v8 9 159522 -NCIT:C156488 Metastatic Pancreatic Neuroendocrine Tumor 8 159523 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 9 159524 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 159525 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 10 159526 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 9 159527 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 9 159528 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 159529 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 9 159530 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 10 159531 -NCIT:C172814 Pancreatic Neuroendocrine Tumor G3 8 159532 -NCIT:C190782 Unresectable Pancreatic Neuroendocrine Tumor 8 159533 -NCIT:C27454 Pancreatic VIP-Producing Neuroendocrine Tumor 8 159534 -NCIT:C95599 Pancreatic Vipoma 9 159535 -NCIT:C67461 Malignant Pancreatic Vipoma 10 159536 -NCIT:C27466 Pancreatic ACTH-Producing Neuroendocrine Tumor 8 159537 -NCIT:C28396 Pancreatic Delta Cell Neuroendocrine Tumor 8 159538 -NCIT:C28333 Non-Functioning Pancreatic Delta Cell Neuroendocrine Tumor 9 159539 -NCIT:C8006 Pancreatic Somatostatin-Producing Neuroendocrine Tumor 9 159540 -NCIT:C95595 Pancreatic Somatostatinoma 10 159541 -NCIT:C67369 Malignant Pancreatic Somatostatinoma 11 159542 -NCIT:C3062 Pancreatic Glucagon-Producing Neuroendocrine Tumor 8 159543 -NCIT:C95597 Pancreatic Glucagonoma 9 159544 -NCIT:C65187 Malignant Pancreatic Glucagonoma 10 159545 -NCIT:C3140 Pancreatic Insulin-Producing Neuroendocrine Tumor 8 159546 -NCIT:C95598 Pancreatic Insulinoma 9 159547 -NCIT:C65186 Malignant Pancreatic Insulinoma 10 159548 -NCIT:C4446 Pancreatic Serotonin-Producing Neuroendocrine Tumor 8 159549 -NCIT:C45835 Pancreatic Neuroendocrine Tumor G2 8 159550 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 9 159551 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 10 159552 -NCIT:C45838 Non-Functioning Pancreatic Neuroendocrine Tumor G2 9 159553 -NCIT:C45841 Functioning Pancreatic Neuroendocrine Tumor G2 9 159554 -NCIT:C45837 Non-Functioning Pancreatic Neuroendocrine Tumor 8 159555 -NCIT:C28333 Non-Functioning Pancreatic Delta Cell Neuroendocrine Tumor 9 159556 -NCIT:C45834 Pancreatic Neuroendocrine Microtumor 9 159557 -NCIT:C45838 Non-Functioning Pancreatic Neuroendocrine Tumor G2 9 159558 -NCIT:C95585 Non-Functioning Pancreatic Neuroendocrine Tumor G1 9 159559 -NCIT:C45840 Functioning Pancreatic Neuroendocrine Tumor 8 159560 -NCIT:C45841 Functioning Pancreatic Neuroendocrine Tumor G2 9 159561 -NCIT:C95595 Pancreatic Somatostatinoma 9 159562 -NCIT:C67369 Malignant Pancreatic Somatostatinoma 10 159563 -NCIT:C95596 Pancreatic Gastrinoma 9 159564 -NCIT:C67458 Malignant Pancreatic Gastrinoma 10 159565 -NCIT:C95597 Pancreatic Glucagonoma 9 159566 -NCIT:C65187 Malignant Pancreatic Glucagonoma 10 159567 -NCIT:C95598 Pancreatic Insulinoma 9 159568 -NCIT:C65186 Malignant Pancreatic Insulinoma 10 159569 -NCIT:C95599 Pancreatic Vipoma 9 159570 -NCIT:C67461 Malignant Pancreatic Vipoma 10 159571 -NCIT:C9069 Pancreatic Gastrin-Producing Neuroendocrine Tumor 8 159572 -NCIT:C95596 Pancreatic Gastrinoma 9 159573 -NCIT:C67458 Malignant Pancreatic Gastrinoma 10 159574 -NCIT:C95584 Pancreatic Neuroendocrine Tumor G1 8 159575 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 9 159576 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 159577 -NCIT:C95585 Non-Functioning Pancreatic Neuroendocrine Tumor G1 9 159578 -NCIT:C3050 Gastrin-Producing Neuroendocrine Tumor 7 159579 -NCIT:C27444 Gastric Gastrin-Producing Neuroendocrine Tumor 8 159580 -NCIT:C27450 Small Intestinal Gastrin-Producing Neuroendocrine Tumor 8 159581 -NCIT:C5731 Duodenal Gastrin-Producing Neuroendocrine Tumor 9 159582 -NCIT:C65188 Malignant Gastrinoma 8 159583 -NCIT:C67458 Malignant Pancreatic Gastrinoma 9 159584 -NCIT:C9069 Pancreatic Gastrin-Producing Neuroendocrine Tumor 8 159585 -NCIT:C95596 Pancreatic Gastrinoma 9 159586 -NCIT:C67458 Malignant Pancreatic Gastrinoma 10 159587 -NCIT:C3379 Somatostatin-Producing Neuroendocrine Tumor 7 159588 -NCIT:C27453 Small Intestinal Somatostatin-Producing Neuroendocrine Tumor 8 159589 -NCIT:C27407 Duodenal Somatostatin-Producing Neuroendocrine Tumor 9 159590 -NCIT:C5787 Jejunal Somatostatin-Producing Neuroendocrine Tumor 9 159591 -NCIT:C65190 Malignant Somatostatinoma 8 159592 -NCIT:C67369 Malignant Pancreatic Somatostatinoma 9 159593 -NCIT:C8006 Pancreatic Somatostatin-Producing Neuroendocrine Tumor 8 159594 -NCIT:C95595 Pancreatic Somatostatinoma 9 159595 -NCIT:C67369 Malignant Pancreatic Somatostatinoma 10 159596 -NCIT:C95988 Ampulla of Vater Somatostatin-Producing Neuroendocrine Tumor 8 159597 -NCIT:C5783 Liver Neuroendocrine Tumor 7 159598 -NCIT:C172719 Liver Neuroendocrine Tumor G1 8 159599 -NCIT:C172720 Liver Neuroendocrine Tumor G2 8 159600 -NCIT:C172721 Liver Neuroendocrine Tumor G3 8 159601 -NCIT:C7709 Digestive System Neuroendocrine Tumor G1 7 159602 -NCIT:C115245 Metastatic Digestive System Neuroendocrine Tumor G1 8 159603 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 9 159604 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 159605 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 9 159606 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 9 159607 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 159608 -NCIT:C172719 Liver Neuroendocrine Tumor G1 8 159609 -NCIT:C179419 Unresectable Digestive System Neuroendocrine Tumor G1 8 159610 -NCIT:C27252 Enterochromaffin-Like Cell Neuroendocrine Tumor G1 8 159611 -NCIT:C4635 Gastric Neuroendocrine Tumor G1 9 159612 -NCIT:C4138 Appendix Neuroendocrine Tumor G1 8 159613 -NCIT:C4637 Intestinal Neuroendocrine Tumor G1 8 159614 -NCIT:C4638 Small Intestinal Neuroendocrine Tumor G1 9 159615 -NCIT:C4935 Ileal Neuroendocrine Tumor G1 10 159616 -NCIT:C6425 Duodenal Neuroendocrine Tumor G1 10 159617 -NCIT:C6429 Jejunal Neuroendocrine Tumor G1 10 159618 -NCIT:C6424 Meckel Diverticulum Neuroendocrine Tumor G1 9 159619 -NCIT:C96160 Colorectal Neuroendocrine Tumor G1 9 159620 -NCIT:C5497 Colon Neuroendocrine Tumor G1 10 159621 -NCIT:C188043 Sigmoid Colon Neuroendocrine Tumor G1 11 159622 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 11 159623 -NCIT:C6426 Transverse Colon Neuroendocrine Tumor G1 11 159624 -NCIT:C6427 Ascending Colon Neuroendocrine Tumor G1 11 159625 -NCIT:C6428 Descending Colon Neuroendocrine Tumor G1 11 159626 -NCIT:C5547 Rectal Neuroendocrine Tumor G1 10 159627 -NCIT:C5820 Esophageal Neuroendocrine Tumor G1 8 159628 -NCIT:C5861 Extrahepatic Bile Duct Neuroendocrine Tumor G1 8 159629 -NCIT:C7861 Localized Digestive System Neuroendocrine Tumor G1 8 159630 -NCIT:C7862 Regional Digestive System Neuroendocrine Tumor G1 8 159631 -NCIT:C7864 Recurrent Digestive System Neuroendocrine Tumor G1 8 159632 -NCIT:C95584 Pancreatic Neuroendocrine Tumor G1 8 159633 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 9 159634 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 159635 -NCIT:C95585 Non-Functioning Pancreatic Neuroendocrine Tumor G1 9 159636 -NCIT:C95982 Ampulla of Vater Neuroendocrine Tumor G1 8 159637 -NCIT:C96543 Anal Canal Neuroendocrine Tumor G1 8 159638 -NCIT:C96924 Gallbladder Neuroendocrine Tumor G1 8 159639 -NCIT:C95616 Esophageal Neuroendocrine Tumor 7 159640 -NCIT:C172661 Esophageal Neuroendocrine Tumor G3 8 159641 -NCIT:C5820 Esophageal Neuroendocrine Tumor G1 8 159642 -NCIT:C95617 Esophageal Neuroendocrine Tumor G2 8 159643 -NCIT:C95871 Gastric Neuroendocrine Tumor 7 159644 -NCIT:C135045 Gastric Neuroendocrine Tumor by AJCC v8 Stage 8 159645 -NCIT:C135046 Stage I Gastric Neuroendocrine Tumor AJCC v8 9 159646 -NCIT:C135047 Stage II Gastric Neuroendocrine Tumor AJCC v8 9 159647 -NCIT:C135048 Stage III Gastric Neuroendocrine Tumor AJCC v8 9 159648 -NCIT:C135049 Stage IV Gastric Neuroendocrine Tumor AJCC v8 9 159649 -NCIT:C172662 Gastric Neuroendocrine Tumor G3 8 159650 -NCIT:C27443 Gastric Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 8 159651 -NCIT:C27444 Gastric Gastrin-Producing Neuroendocrine Tumor 8 159652 -NCIT:C4635 Gastric Neuroendocrine Tumor G1 8 159653 -NCIT:C95880 Gastric Neuroendocrine Tumor G2 8 159654 -NCIT:C95981 Ampulla of Vater Neuroendocrine Tumor 7 159655 -NCIT:C135081 Ampulla of Vater Neuroendocrine Tumor by AJCC v8 Stage 8 159656 -NCIT:C135082 Stage I Ampulla of Vater Neuroendocrine Tumor AJCC v8 9 159657 -NCIT:C135083 Stage II Ampulla of Vater Neuroendocrine Tumor AJCC v8 9 159658 -NCIT:C135084 Stage III Ampulla of Vater Neuroendocrine Tumor AJCC v8 9 159659 -NCIT:C135085 Stage IV Ampulla of Vater Neuroendocrine Tumor AJCC v8 9 159660 -NCIT:C172673 Ampulla of Vater Neuroendocrine Tumor G3 8 159661 -NCIT:C95982 Ampulla of Vater Neuroendocrine Tumor G1 8 159662 -NCIT:C95983 Ampulla of Vater Neuroendocrine Tumor G2 8 159663 -NCIT:C95987 Ampulla of Vater Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 8 159664 -NCIT:C95988 Ampulla of Vater Somatostatin-Producing Neuroendocrine Tumor 8 159665 -NCIT:C95989 Ampulla of Vater Gangliocytic Paraganglioma 8 159666 -NCIT:C96062 Intestinal Neuroendocrine Tumor 7 159667 -NCIT:C172670 Intestinal Neuroendocrine Tumor G3 8 159668 -NCIT:C172664 Small Intestinal Neuroendocrine Tumor G3 9 159669 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 10 159670 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 10 159671 -NCIT:C172672 Duodenal Neuroendocrine Tumor G3 10 159672 -NCIT:C172701 Colorectal Neuroendocrine Tumor G3 9 159673 -NCIT:C172702 Colon Neuroendocrine Tumor G3 10 159674 -NCIT:C172703 Rectal Neuroendocrine Tumor G3 10 159675 -NCIT:C4637 Intestinal Neuroendocrine Tumor G1 8 159676 -NCIT:C4638 Small Intestinal Neuroendocrine Tumor G1 9 159677 -NCIT:C4935 Ileal Neuroendocrine Tumor G1 10 159678 -NCIT:C6425 Duodenal Neuroendocrine Tumor G1 10 159679 -NCIT:C6429 Jejunal Neuroendocrine Tumor G1 10 159680 -NCIT:C6424 Meckel Diverticulum Neuroendocrine Tumor G1 9 159681 -NCIT:C96160 Colorectal Neuroendocrine Tumor G1 9 159682 -NCIT:C5497 Colon Neuroendocrine Tumor G1 10 159683 -NCIT:C188043 Sigmoid Colon Neuroendocrine Tumor G1 11 159684 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 11 159685 -NCIT:C6426 Transverse Colon Neuroendocrine Tumor G1 11 159686 -NCIT:C6427 Ascending Colon Neuroendocrine Tumor G1 11 159687 -NCIT:C6428 Descending Colon Neuroendocrine Tumor G1 11 159688 -NCIT:C5547 Rectal Neuroendocrine Tumor G1 10 159689 -NCIT:C5325 Intestinal Composite Gangliocytoma/Neuroma and Neuroendocrine Tumor 8 159690 -NCIT:C96073 Small Intestinal Composite Gangliocytoma/Neuroma and Neuroendocrine Tumor 9 159691 -NCIT:C96061 Small Intestinal Neuroendocrine Tumor 8 159692 -NCIT:C135080 Duodenal Neuroendocrine Tumor 9 159693 -NCIT:C135075 Duodenal Neuroendocrine Tumor by AJCC v8 Stage 10 159694 -NCIT:C135076 Stage I Duodenal Neuroendocrine Tumor AJCC v8 11 159695 -NCIT:C135077 Stage II Duodenal Neuroendocrine Tumor AJCC v8 11 159696 -NCIT:C135078 Stage III Duodenal Neuroendocrine Tumor AJCC v8 11 159697 -NCIT:C135079 Stage IV Duodenal Neuroendocrine Tumor AJCC v8 11 159698 -NCIT:C160442 Duodenal Neuroendocrine Tumor G2 10 159699 -NCIT:C172672 Duodenal Neuroendocrine Tumor G3 10 159700 -NCIT:C27407 Duodenal Somatostatin-Producing Neuroendocrine Tumor 10 159701 -NCIT:C5731 Duodenal Gastrin-Producing Neuroendocrine Tumor 10 159702 -NCIT:C6425 Duodenal Neuroendocrine Tumor G1 10 159703 -NCIT:C135090 Jejunal Neuroendocrine Tumor 9 159704 -NCIT:C135119 Jejunal Neuroendocrine Tumor by AJCC v8 Stage 10 159705 -NCIT:C135120 Stage I Jejunal Neuroendocrine Tumor AJCC v8 11 159706 -NCIT:C135121 Stage II Jejunal Neuroendocrine Tumor AJCC v8 11 159707 -NCIT:C135122 Stage III Jejunal Neuroendocrine Tumor AJCC v8 11 159708 -NCIT:C135123 Stage IV Jejunal Neuroendocrine Tumor AJCC v8 11 159709 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 10 159710 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 10 159711 -NCIT:C5787 Jejunal Somatostatin-Producing Neuroendocrine Tumor 10 159712 -NCIT:C6429 Jejunal Neuroendocrine Tumor G1 10 159713 -NCIT:C135092 Ileal Neuroendocrine Tumor 9 159714 -NCIT:C135124 Ileal Neuroendocrine Tumor by AJCC v8 Stage 10 159715 -NCIT:C135125 Stage I Ileal Neuroendocrine Tumor AJCC v8 11 159716 -NCIT:C135126 Stage II Ileal Neuroendocrine Tumor AJCC v8 11 159717 -NCIT:C135127 Stage III Ileal Neuroendocrine Tumor AJCC v8 11 159718 -NCIT:C135128 Stage IV Ileal Neuroendocrine Tumor AJCC v8 11 159719 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 10 159720 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 10 159721 -NCIT:C4935 Ileal Neuroendocrine Tumor G1 10 159722 -NCIT:C172664 Small Intestinal Neuroendocrine Tumor G3 9 159723 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 10 159724 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 10 159725 -NCIT:C172672 Duodenal Neuroendocrine Tumor G3 10 159726 -NCIT:C27450 Small Intestinal Gastrin-Producing Neuroendocrine Tumor 9 159727 -NCIT:C5731 Duodenal Gastrin-Producing Neuroendocrine Tumor 10 159728 -NCIT:C27451 Small Intestinal Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 9 159729 -NCIT:C27452 Small Intestinal L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 9 159730 -NCIT:C27453 Small Intestinal Somatostatin-Producing Neuroendocrine Tumor 9 159731 -NCIT:C27407 Duodenal Somatostatin-Producing Neuroendocrine Tumor 10 159732 -NCIT:C5787 Jejunal Somatostatin-Producing Neuroendocrine Tumor 10 159733 -NCIT:C27455 Small Intestinal VIP-Producing Neuroendocrine Tumor 9 159734 -NCIT:C4638 Small Intestinal Neuroendocrine Tumor G1 9 159735 -NCIT:C4935 Ileal Neuroendocrine Tumor G1 10 159736 -NCIT:C6425 Duodenal Neuroendocrine Tumor G1 10 159737 -NCIT:C6429 Jejunal Neuroendocrine Tumor G1 10 159738 -NCIT:C96067 Small Intestinal Neuroendocrine Tumor G2 9 159739 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 10 159740 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 10 159741 -NCIT:C160442 Duodenal Neuroendocrine Tumor G2 10 159742 -NCIT:C96073 Small Intestinal Composite Gangliocytoma/Neuroma and Neuroendocrine Tumor 9 159743 -NCIT:C96159 Colorectal Neuroendocrine Tumor 8 159744 -NCIT:C135205 Colorectal Neuroendocrine Tumor by AJCC v8 Stage 9 159745 -NCIT:C135206 Stage I Colorectal Neuroendocrine Tumor AJCC v8 10 159746 -NCIT:C135368 Stage I Colon Neuroendocrine Tumor AJCC v8 11 159747 -NCIT:C135528 Stage I Rectal Neuroendocrine Tumor AJCC v8 11 159748 -NCIT:C135207 Stage IIA Colorectal Neuroendocrine Tumor AJCC v8 10 159749 -NCIT:C135369 Stage IIA Colon Neuroendocrine Tumor AJCC v8 11 159750 -NCIT:C135529 Stage IIA Rectal Neuroendocrine Tumor AJCC v8 11 159751 -NCIT:C135208 Stage IIB Colorectal Neuroendocrine Tumor AJCC v8 10 159752 -NCIT:C135370 Stage IIB Colon Neuroendocrine Tumor AJCC v8 11 159753 -NCIT:C135530 Stage IIB Rectal Neuroendocrine Tumor AJCC v8 11 159754 -NCIT:C135209 Stage IIIA Colorectal Neuroendocrine Tumor AJCC v8 10 159755 -NCIT:C135524 Stage IIIA Colon Neuroendocrine Tumor AJCC v8 11 159756 -NCIT:C135531 Stage IIIA Rectal Neuroendocrine Tumor AJCC v8 11 159757 -NCIT:C135210 Stage IIIB Colorectal Neuroendocrine Tumor AJCC v8 10 159758 -NCIT:C135525 Stage IIIB Colon Neuroendocrine Tumor AJCC v8 11 159759 -NCIT:C135532 Stage IIIB Rectal Neuroendocrine Tumor AJCC v8 11 159760 -NCIT:C135211 Stage IV Colorectal Neuroendocrine Tumor AJCC v8 10 159761 -NCIT:C135526 Stage IV Colon Neuroendocrine Tumor AJCC v8 11 159762 -NCIT:C135533 Stage IV Rectal Neuroendocrine Tumor AJCC v8 11 159763 -NCIT:C135214 Colon Neuroendocrine Tumor by AJCC v8 Stage 10 159764 -NCIT:C135368 Stage I Colon Neuroendocrine Tumor AJCC v8 11 159765 -NCIT:C135369 Stage IIA Colon Neuroendocrine Tumor AJCC v8 11 159766 -NCIT:C135370 Stage IIB Colon Neuroendocrine Tumor AJCC v8 11 159767 -NCIT:C135524 Stage IIIA Colon Neuroendocrine Tumor AJCC v8 11 159768 -NCIT:C135525 Stage IIIB Colon Neuroendocrine Tumor AJCC v8 11 159769 -NCIT:C135526 Stage IV Colon Neuroendocrine Tumor AJCC v8 11 159770 -NCIT:C135527 Rectal Neuroendocrine Tumor by AJCC v8 Stage 10 159771 -NCIT:C135528 Stage I Rectal Neuroendocrine Tumor AJCC v8 11 159772 -NCIT:C135529 Stage IIA Rectal Neuroendocrine Tumor AJCC v8 11 159773 -NCIT:C135530 Stage IIB Rectal Neuroendocrine Tumor AJCC v8 11 159774 -NCIT:C135531 Stage IIIA Rectal Neuroendocrine Tumor AJCC v8 11 159775 -NCIT:C135532 Stage IIIB Rectal Neuroendocrine Tumor AJCC v8 11 159776 -NCIT:C135533 Stage IV Rectal Neuroendocrine Tumor AJCC v8 11 159777 -NCIT:C135212 Colon Neuroendocrine Tumor 9 159778 -NCIT:C135214 Colon Neuroendocrine Tumor by AJCC v8 Stage 10 159779 -NCIT:C135368 Stage I Colon Neuroendocrine Tumor AJCC v8 11 159780 -NCIT:C135369 Stage IIA Colon Neuroendocrine Tumor AJCC v8 11 159781 -NCIT:C135370 Stage IIB Colon Neuroendocrine Tumor AJCC v8 11 159782 -NCIT:C135524 Stage IIIA Colon Neuroendocrine Tumor AJCC v8 11 159783 -NCIT:C135525 Stage IIIB Colon Neuroendocrine Tumor AJCC v8 11 159784 -NCIT:C135526 Stage IV Colon Neuroendocrine Tumor AJCC v8 11 159785 -NCIT:C160443 Colon Neuroendocrine Tumor G2 10 159786 -NCIT:C172702 Colon Neuroendocrine Tumor G3 10 159787 -NCIT:C27446 Colon Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 10 159788 -NCIT:C27447 Colon L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 10 159789 -NCIT:C5497 Colon Neuroendocrine Tumor G1 10 159790 -NCIT:C188043 Sigmoid Colon Neuroendocrine Tumor G1 11 159791 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 11 159792 -NCIT:C6426 Transverse Colon Neuroendocrine Tumor G1 11 159793 -NCIT:C6427 Ascending Colon Neuroendocrine Tumor G1 11 159794 -NCIT:C6428 Descending Colon Neuroendocrine Tumor G1 11 159795 -NCIT:C135213 Rectal Neuroendocrine Tumor 9 159796 -NCIT:C135527 Rectal Neuroendocrine Tumor by AJCC v8 Stage 10 159797 -NCIT:C135528 Stage I Rectal Neuroendocrine Tumor AJCC v8 11 159798 -NCIT:C135529 Stage IIA Rectal Neuroendocrine Tumor AJCC v8 11 159799 -NCIT:C135530 Stage IIB Rectal Neuroendocrine Tumor AJCC v8 11 159800 -NCIT:C135531 Stage IIIA Rectal Neuroendocrine Tumor AJCC v8 11 159801 -NCIT:C135532 Stage IIIB Rectal Neuroendocrine Tumor AJCC v8 11 159802 -NCIT:C135533 Stage IV Rectal Neuroendocrine Tumor AJCC v8 11 159803 -NCIT:C160451 Rectal Neuroendocrine Tumor G2 10 159804 -NCIT:C172703 Rectal Neuroendocrine Tumor G3 10 159805 -NCIT:C5547 Rectal Neuroendocrine Tumor G1 10 159806 -NCIT:C172701 Colorectal Neuroendocrine Tumor G3 9 159807 -NCIT:C172702 Colon Neuroendocrine Tumor G3 10 159808 -NCIT:C172703 Rectal Neuroendocrine Tumor G3 10 159809 -NCIT:C96160 Colorectal Neuroendocrine Tumor G1 9 159810 -NCIT:C5497 Colon Neuroendocrine Tumor G1 10 159811 -NCIT:C188043 Sigmoid Colon Neuroendocrine Tumor G1 11 159812 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 11 159813 -NCIT:C6426 Transverse Colon Neuroendocrine Tumor G1 11 159814 -NCIT:C6427 Ascending Colon Neuroendocrine Tumor G1 11 159815 -NCIT:C6428 Descending Colon Neuroendocrine Tumor G1 11 159816 -NCIT:C5547 Rectal Neuroendocrine Tumor G1 10 159817 -NCIT:C96161 Colorectal L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 9 159818 -NCIT:C27447 Colon L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 10 159819 -NCIT:C96162 Colorectal Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 9 159820 -NCIT:C27446 Colon Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 10 159821 -NCIT:C96163 Colorectal Neuroendocrine Tumor G2 9 159822 -NCIT:C160443 Colon Neuroendocrine Tumor G2 10 159823 -NCIT:C160451 Rectal Neuroendocrine Tumor G2 10 159824 -NCIT:C96165 Intestinal Neuroendocrine Tumor G2 8 159825 -NCIT:C96067 Small Intestinal Neuroendocrine Tumor G2 9 159826 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 10 159827 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 10 159828 -NCIT:C160442 Duodenal Neuroendocrine Tumor G2 10 159829 -NCIT:C96163 Colorectal Neuroendocrine Tumor G2 9 159830 -NCIT:C160443 Colon Neuroendocrine Tumor G2 10 159831 -NCIT:C160451 Rectal Neuroendocrine Tumor G2 10 159832 -NCIT:C96166 Digestive System Neuroendocrine Tumor G2 7 159833 -NCIT:C167328 Midgut Neuroendocrine Tumor G2 8 159834 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 9 159835 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 9 159836 -NCIT:C96423 Appendix Neuroendocrine Tumor G2 9 159837 -NCIT:C172720 Liver Neuroendocrine Tumor G2 8 159838 -NCIT:C179415 Metastatic Digestive System Neuroendocrine Tumor G2 8 159839 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 9 159840 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 9 159841 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 10 159842 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 9 159843 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 10 159844 -NCIT:C187345 Unresectable Digestive System Neuroendocrine Tumor G2 8 159845 -NCIT:C45835 Pancreatic Neuroendocrine Tumor G2 8 159846 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 9 159847 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 10 159848 -NCIT:C45838 Non-Functioning Pancreatic Neuroendocrine Tumor G2 9 159849 -NCIT:C45841 Functioning Pancreatic Neuroendocrine Tumor G2 9 159850 -NCIT:C95617 Esophageal Neuroendocrine Tumor G2 8 159851 -NCIT:C95880 Gastric Neuroendocrine Tumor G2 8 159852 -NCIT:C95983 Ampulla of Vater Neuroendocrine Tumor G2 8 159853 -NCIT:C96165 Intestinal Neuroendocrine Tumor G2 8 159854 -NCIT:C96067 Small Intestinal Neuroendocrine Tumor G2 9 159855 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 10 159856 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 10 159857 -NCIT:C160442 Duodenal Neuroendocrine Tumor G2 10 159858 -NCIT:C96163 Colorectal Neuroendocrine Tumor G2 9 159859 -NCIT:C160443 Colon Neuroendocrine Tumor G2 10 159860 -NCIT:C160451 Rectal Neuroendocrine Tumor G2 10 159861 -NCIT:C96546 Anal Canal Neuroendocrine Tumor G2 8 159862 -NCIT:C96925 Gallbladder Neuroendocrine Tumor G2 8 159863 -NCIT:C96957 Extrahepatic Bile Duct Neuroendocrine Tumor G2 8 159864 -NCIT:C96540 Anal Canal Neuroendocrine Tumor 7 159865 -NCIT:C96543 Anal Canal Neuroendocrine Tumor G1 8 159866 -NCIT:C96546 Anal Canal Neuroendocrine Tumor G2 8 159867 -NCIT:C96918 Gallbladder Neuroendocrine Tumor 7 159868 -NCIT:C172742 Gallbladder Neuroendocrine Tumor G3 8 159869 -NCIT:C96924 Gallbladder Neuroendocrine Tumor G1 8 159870 -NCIT:C96925 Gallbladder Neuroendocrine Tumor G2 8 159871 -NCIT:C96930 Gallbladder Tubular Carcinoid 8 159872 -NCIT:C96955 Extrahepatic Bile Duct Neuroendocrine Tumor 7 159873 -NCIT:C172743 Extrahepatic Bile Duct Neuroendocrine Tumor G3 8 159874 -NCIT:C5861 Extrahepatic Bile Duct Neuroendocrine Tumor G1 8 159875 -NCIT:C96957 Extrahepatic Bile Duct Neuroendocrine Tumor G2 8 159876 -NCIT:C188222 Head and Neck Neuroendocrine Neoplasm 5 159877 -NCIT:C160980 Head and Neck Neuroendocrine Carcinoma 6 159878 -NCIT:C160981 Head and Neck Small Cell Neuroendocrine Carcinoma 7 159879 -NCIT:C116318 Sinonasal Small Cell Neuroendocrine Carcinoma 8 159880 -NCIT:C35703 Salivary Gland Small Cell Neuroendocrine Carcinoma 8 159881 -NCIT:C5956 Minor Salivary Gland Small Cell Neuroendocrine Carcinoma 9 159882 -NCIT:C6025 Laryngeal Small Cell Neuroendocrine Carcinoma 8 159883 -NCIT:C160982 Head and Neck Large Cell Neuroendocrine Carcinoma 7 159884 -NCIT:C173091 Sinonasal Large Cell Neuroendocrine Carcinoma 8 159885 -NCIT:C173395 Laryngeal Large Cell Neuroendocrine Carcinoma 8 159886 -NCIT:C173650 Salivary Gland Large Cell Neuroendocrine Carcinoma 8 159887 -NCIT:C173089 Sinonasal Neuroendocrine Carcinoma 7 159888 -NCIT:C116318 Sinonasal Small Cell Neuroendocrine Carcinoma 8 159889 -NCIT:C173091 Sinonasal Large Cell Neuroendocrine Carcinoma 8 159890 -NCIT:C173390 Laryngeal Neuroendocrine Carcinoma 7 159891 -NCIT:C173395 Laryngeal Large Cell Neuroendocrine Carcinoma 8 159892 -NCIT:C6025 Laryngeal Small Cell Neuroendocrine Carcinoma 8 159893 -NCIT:C173587 Head and Neck Merkel Cell Carcinoma 7 159894 -NCIT:C173653 Salivary Gland Neuroendocrine Carcinoma 7 159895 -NCIT:C173650 Salivary Gland Large Cell Neuroendocrine Carcinoma 8 159896 -NCIT:C35703 Salivary Gland Small Cell Neuroendocrine Carcinoma 8 159897 -NCIT:C5956 Minor Salivary Gland Small Cell Neuroendocrine Carcinoma 9 159898 -NCIT:C3879 Thyroid Gland Medullary Carcinoma 7 159899 -NCIT:C123905 Childhood Thyroid Gland Medullary Carcinoma 8 159900 -NCIT:C141041 Thyroid Gland Medullary Carcinoma by AJCC v7 Stage 8 159901 -NCIT:C6133 Stage I Thyroid Gland Medullary Carcinoma AJCC v7 9 159902 -NCIT:C6134 Stage II Thyroid Gland Medullary Carcinoma AJCC v7 9 159903 -NCIT:C6135 Stage III Thyroid Gland Medullary Carcinoma AJCC v7 9 159904 -NCIT:C6136 Stage IV Thyroid Gland Medullary Carcinoma AJCC v7 9 159905 -NCIT:C87549 Stage IVA Thyroid Gland Medullary Carcinoma AJCC v7 10 159906 -NCIT:C87550 Stage IVB Thyroid Gland Medullary Carcinoma AJCC v7 10 159907 -NCIT:C87551 Stage IVC Thyroid Gland Medullary Carcinoma AJCC v7 10 159908 -NCIT:C141042 Thyroid Gland Medullary Carcinoma by AJCC v8 Stage 8 159909 -NCIT:C141043 Stage I Thyroid Gland Medullary Carcinoma AJCC v8 9 159910 -NCIT:C141044 Stage II Thyroid Gland Medullary Carcinoma AJCC v8 9 159911 -NCIT:C141045 Stage III Thyroid Gland Medullary Carcinoma AJCC v8 9 159912 -NCIT:C141046 Stage IV Thyroid Gland Medullary Carcinoma AJCC v8 9 159913 -NCIT:C141047 Stage IVA Thyroid Gland Medullary Carcinoma AJCC v8 10 159914 -NCIT:C141048 Stage IVB Thyroid Gland Medullary Carcinoma AJCC v8 10 159915 -NCIT:C141049 Stage IVC Thyroid Gland Medullary Carcinoma AJCC v8 10 159916 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 8 159917 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 9 159918 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 8 159919 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 159920 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 159921 -NCIT:C163974 Unresectable Thyroid Gland Medullary Carcinoma 8 159922 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 9 159923 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 8 159924 -NCIT:C4193 Thyroid Gland Medullary Carcinoma with Amyloid Stroma 8 159925 -NCIT:C46098 Sporadic Thyroid Gland Medullary Carcinoma 8 159926 -NCIT:C46103 Sporadic Thyroid Gland Micromedullary Carcinoma 9 159927 -NCIT:C46099 Hereditary Thyroid Gland Medullary Carcinoma 8 159928 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 9 159929 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 9 159930 -NCIT:C173387 Head and Neck Neuroendocrine Tumor 6 159931 -NCIT:C173388 Head and Neck Neuroendocrine Tumor G2 7 159932 -NCIT:C173392 Laryngeal Neuroendocrine Tumor G2 8 159933 -NCIT:C173391 Laryngeal Neuroendocrine Tumor 7 159934 -NCIT:C173392 Laryngeal Neuroendocrine Tumor G2 8 159935 -NCIT:C188223 Laryngeal Neuroendocrine Tumor G1 8 159936 -NCIT:C188224 Head and Neck Neuroendocrine Tumor G1 7 159937 -NCIT:C188223 Laryngeal Neuroendocrine Tumor G1 8 159938 -NCIT:C5327 Head and Neck Paraganglioma 6 159939 -NCIT:C2932 Carotid Body Paraganglioma 7 159940 -NCIT:C3574 Metastatic Carotid Body Paraganglioma 8 159941 -NCIT:C79950 Non-Metastatic Carotid Body Paraganglioma 8 159942 -NCIT:C3061 Jugulotympanic Paraganglioma 7 159943 -NCIT:C4623 Metastatic Jugulotympanic Paraganglioma 8 159944 -NCIT:C6085 Middle Ear Paraganglioma 8 159945 -NCIT:C8428 Tympanic Paraganglioma 9 159946 -NCIT:C46125 Thyroid Gland Paraganglioma 7 159947 -NCIT:C48316 Nasopharyngeal Paraganglioma 7 159948 -NCIT:C6408 Orbit Paraganglioma 7 159949 -NCIT:C6409 Laryngeal Paraganglioma 7 159950 -NCIT:C8427 Vagal Paraganglioma 7 159951 -NCIT:C6023 Laryngeal Neuroendocrine Neoplasm 6 159952 -NCIT:C173390 Laryngeal Neuroendocrine Carcinoma 7 159953 -NCIT:C173395 Laryngeal Large Cell Neuroendocrine Carcinoma 8 159954 -NCIT:C6025 Laryngeal Small Cell Neuroendocrine Carcinoma 8 159955 -NCIT:C173391 Laryngeal Neuroendocrine Tumor 7 159956 -NCIT:C173392 Laryngeal Neuroendocrine Tumor G2 8 159957 -NCIT:C188223 Laryngeal Neuroendocrine Tumor G1 8 159958 -NCIT:C6409 Laryngeal Paraganglioma 7 159959 -NCIT:C190075 Childhood Neuroendocrine Neoplasm 5 159960 -NCIT:C118815 Childhood Lung Small Cell Carcinoma 6 159961 -NCIT:C123905 Childhood Thyroid Gland Medullary Carcinoma 6 159962 -NCIT:C190074 Childhood Paraganglioma 6 159963 -NCIT:C190071 Childhood Sympathetic Paraganglioma 7 159964 -NCIT:C118822 Childhood Adrenal Gland Pheochromocytoma 8 159965 -NCIT:C190072 Childhood Parasympathetic Paraganglioma 7 159966 -NCIT:C190073 Childhood Composite Paraganglioma 7 159967 -NCIT:C190077 Childhood Neuroendocrine Tumor 6 159968 -NCIT:C118810 Childhood Neuroendocrine Tumor G1 7 159969 -NCIT:C190076 Childhood Digestive System Neuroendocrine Tumor 7 159970 -NCIT:C190029 Childhood Appendix Neuroendocrine Tumor 8 159971 -NCIT:C190078 Childhood Neuroendocrine Tumor G2 7 159972 -NCIT:C27721 Digestive System Neuroendocrine Neoplasm 5 159973 -NCIT:C156492 Metastatic Digestive System Neuroendocrine Neoplasm 6 159974 -NCIT:C115245 Metastatic Digestive System Neuroendocrine Tumor G1 7 159975 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 8 159976 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 159977 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 8 159978 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 8 159979 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 159980 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 7 159981 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 8 159982 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 159983 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 159984 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 159985 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 8 159986 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 159987 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 159988 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 159989 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 159990 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 159991 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 159992 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 159993 -NCIT:C158089 Advanced Digestive System Neuroendocrine Neoplasm 7 159994 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 159995 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 159996 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 159997 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 159998 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 159999 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 160000 -NCIT:C165448 Advanced Pancreatic Neuroendocrine Neoplasm 8 160001 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 9 160002 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 160003 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 10 160004 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 8 160005 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 160006 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 8 160007 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 160008 -NCIT:C165447 Metastatic Pancreatic Neuroendocrine Neoplasm 7 160009 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 8 160010 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 160011 -NCIT:C156488 Metastatic Pancreatic Neuroendocrine Tumor 8 160012 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 9 160013 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 160014 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 10 160015 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 9 160016 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 9 160017 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 160018 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 9 160019 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 10 160020 -NCIT:C165448 Advanced Pancreatic Neuroendocrine Neoplasm 8 160021 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 9 160022 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 160023 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 10 160024 -NCIT:C167329 Metastatic Midgut Neuroendocrine Tumor 7 160025 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 8 160026 -NCIT:C178271 Locally Advanced Digestive System Neuroendocrine Neoplasm 7 160027 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 160028 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 160029 -NCIT:C158090 Locally Advanced Unresectable Digestive System Neuroendocrine Neoplasm 8 160030 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 8 160031 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 8 160032 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 8 160033 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 8 160034 -NCIT:C179415 Metastatic Digestive System Neuroendocrine Tumor G2 7 160035 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 8 160036 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 8 160037 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 160038 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 8 160039 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 160040 -NCIT:C158088 Refractory Digestive System Neuroendocrine Neoplasm 6 160041 -NCIT:C155937 Refractory Digestive System Neuroendocrine Carcinoma 7 160042 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 8 160043 -NCIT:C165455 Unresectable Digestive System Neuroendocrine Neoplasm 6 160044 -NCIT:C155935 Unresectable Digestive System Neuroendocrine Carcinoma 7 160045 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 8 160046 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 8 160047 -NCIT:C158090 Locally Advanced Unresectable Digestive System Neuroendocrine Neoplasm 7 160048 -NCIT:C165456 Unresectable Pancreatic Neuroendocrine Neoplasm 7 160049 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 8 160050 -NCIT:C190782 Unresectable Pancreatic Neuroendocrine Tumor 8 160051 -NCIT:C167331 Unresectable Midgut Neuroendocrine Tumor 7 160052 -NCIT:C179419 Unresectable Digestive System Neuroendocrine Tumor G1 7 160053 -NCIT:C187345 Unresectable Digestive System Neuroendocrine Tumor G2 7 160054 -NCIT:C188228 Recurrent Digestive System Neuroendocrine Neoplasm 6 160055 -NCIT:C155938 Recurrent Digestive System Neuroendocrine Carcinoma 7 160056 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 8 160057 -NCIT:C27031 Pancreatic Neuroendocrine Neoplasm 6 160058 -NCIT:C165447 Metastatic Pancreatic Neuroendocrine Neoplasm 7 160059 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 8 160060 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 160061 -NCIT:C156488 Metastatic Pancreatic Neuroendocrine Tumor 8 160062 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 9 160063 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 160064 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 10 160065 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 9 160066 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 9 160067 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 160068 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 9 160069 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 10 160070 -NCIT:C165448 Advanced Pancreatic Neuroendocrine Neoplasm 8 160071 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 9 160072 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 160073 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 10 160074 -NCIT:C165456 Unresectable Pancreatic Neuroendocrine Neoplasm 7 160075 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 8 160076 -NCIT:C190782 Unresectable Pancreatic Neuroendocrine Tumor 8 160077 -NCIT:C27720 Pancreatic Neuroendocrine Tumor 7 160078 -NCIT:C135560 Pancreatic Neuroendocrine Tumor by AJCC v8 Stage 8 160079 -NCIT:C135561 Stage I Pancreatic Neuroendocrine Tumor AJCC v8 9 160080 -NCIT:C135562 Stage II Pancreatic Neuroendocrine Tumor AJCC v8 9 160081 -NCIT:C135563 Stage III Pancreatic Neuroendocrine Tumor AJCC v8 9 160082 -NCIT:C135564 Stage IV Pancreatic Neuroendocrine Tumor AJCC v8 9 160083 -NCIT:C156488 Metastatic Pancreatic Neuroendocrine Tumor 8 160084 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 9 160085 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 160086 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 10 160087 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 9 160088 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 9 160089 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 160090 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 9 160091 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 10 160092 -NCIT:C172814 Pancreatic Neuroendocrine Tumor G3 8 160093 -NCIT:C190782 Unresectable Pancreatic Neuroendocrine Tumor 8 160094 -NCIT:C27454 Pancreatic VIP-Producing Neuroendocrine Tumor 8 160095 -NCIT:C95599 Pancreatic Vipoma 9 160096 -NCIT:C67461 Malignant Pancreatic Vipoma 10 160097 -NCIT:C27466 Pancreatic ACTH-Producing Neuroendocrine Tumor 8 160098 -NCIT:C28396 Pancreatic Delta Cell Neuroendocrine Tumor 8 160099 -NCIT:C28333 Non-Functioning Pancreatic Delta Cell Neuroendocrine Tumor 9 160100 -NCIT:C8006 Pancreatic Somatostatin-Producing Neuroendocrine Tumor 9 160101 -NCIT:C95595 Pancreatic Somatostatinoma 10 160102 -NCIT:C67369 Malignant Pancreatic Somatostatinoma 11 160103 -NCIT:C3062 Pancreatic Glucagon-Producing Neuroendocrine Tumor 8 160104 -NCIT:C95597 Pancreatic Glucagonoma 9 160105 -NCIT:C65187 Malignant Pancreatic Glucagonoma 10 160106 -NCIT:C3140 Pancreatic Insulin-Producing Neuroendocrine Tumor 8 160107 -NCIT:C95598 Pancreatic Insulinoma 9 160108 -NCIT:C65186 Malignant Pancreatic Insulinoma 10 160109 -NCIT:C4446 Pancreatic Serotonin-Producing Neuroendocrine Tumor 8 160110 -NCIT:C45835 Pancreatic Neuroendocrine Tumor G2 8 160111 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 9 160112 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 10 160113 -NCIT:C45838 Non-Functioning Pancreatic Neuroendocrine Tumor G2 9 160114 -NCIT:C45841 Functioning Pancreatic Neuroendocrine Tumor G2 9 160115 -NCIT:C45837 Non-Functioning Pancreatic Neuroendocrine Tumor 8 160116 -NCIT:C28333 Non-Functioning Pancreatic Delta Cell Neuroendocrine Tumor 9 160117 -NCIT:C45834 Pancreatic Neuroendocrine Microtumor 9 160118 -NCIT:C45838 Non-Functioning Pancreatic Neuroendocrine Tumor G2 9 160119 -NCIT:C95585 Non-Functioning Pancreatic Neuroendocrine Tumor G1 9 160120 -NCIT:C45840 Functioning Pancreatic Neuroendocrine Tumor 8 160121 -NCIT:C45841 Functioning Pancreatic Neuroendocrine Tumor G2 9 160122 -NCIT:C95595 Pancreatic Somatostatinoma 9 160123 -NCIT:C67369 Malignant Pancreatic Somatostatinoma 10 160124 -NCIT:C95596 Pancreatic Gastrinoma 9 160125 -NCIT:C67458 Malignant Pancreatic Gastrinoma 10 160126 -NCIT:C95597 Pancreatic Glucagonoma 9 160127 -NCIT:C65187 Malignant Pancreatic Glucagonoma 10 160128 -NCIT:C95598 Pancreatic Insulinoma 9 160129 -NCIT:C65186 Malignant Pancreatic Insulinoma 10 160130 -NCIT:C95599 Pancreatic Vipoma 9 160131 -NCIT:C67461 Malignant Pancreatic Vipoma 10 160132 -NCIT:C9069 Pancreatic Gastrin-Producing Neuroendocrine Tumor 8 160133 -NCIT:C95596 Pancreatic Gastrinoma 9 160134 -NCIT:C67458 Malignant Pancreatic Gastrinoma 10 160135 -NCIT:C95584 Pancreatic Neuroendocrine Tumor G1 8 160136 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 9 160137 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 160138 -NCIT:C95585 Non-Functioning Pancreatic Neuroendocrine Tumor G1 9 160139 -NCIT:C3770 Pancreatic Neuroendocrine Carcinoma 7 160140 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 8 160141 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 8 160142 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 8 160143 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 160144 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 8 160145 -NCIT:C95582 Pancreatic Large Cell Neuroendocrine Carcinoma 8 160146 -NCIT:C95583 Pancreatic Small Cell Neuroendocrine Carcinoma 8 160147 -NCIT:C5603 Anal Canal Neuroendocrine Neoplasm 6 160148 -NCIT:C96540 Anal Canal Neuroendocrine Tumor 7 160149 -NCIT:C96543 Anal Canal Neuroendocrine Tumor G1 8 160150 -NCIT:C96546 Anal Canal Neuroendocrine Tumor G2 8 160151 -NCIT:C96549 Anal Canal Neuroendocrine Carcinoma 7 160152 -NCIT:C96550 Anal Canal Large Cell Neuroendocrine Carcinoma 8 160153 -NCIT:C96551 Anal Canal Small Cell Neuroendocrine Carcinoma 8 160154 -NCIT:C5695 Intestinal Neuroendocrine Neoplasm 6 160155 -NCIT:C5803 Small Intestinal Neuroendocrine Neoplasm 7 160156 -NCIT:C96061 Small Intestinal Neuroendocrine Tumor 8 160157 -NCIT:C135080 Duodenal Neuroendocrine Tumor 9 160158 -NCIT:C135075 Duodenal Neuroendocrine Tumor by AJCC v8 Stage 10 160159 -NCIT:C135076 Stage I Duodenal Neuroendocrine Tumor AJCC v8 11 160160 -NCIT:C135077 Stage II Duodenal Neuroendocrine Tumor AJCC v8 11 160161 -NCIT:C135078 Stage III Duodenal Neuroendocrine Tumor AJCC v8 11 160162 -NCIT:C135079 Stage IV Duodenal Neuroendocrine Tumor AJCC v8 11 160163 -NCIT:C160442 Duodenal Neuroendocrine Tumor G2 10 160164 -NCIT:C172672 Duodenal Neuroendocrine Tumor G3 10 160165 -NCIT:C27407 Duodenal Somatostatin-Producing Neuroendocrine Tumor 10 160166 -NCIT:C5731 Duodenal Gastrin-Producing Neuroendocrine Tumor 10 160167 -NCIT:C6425 Duodenal Neuroendocrine Tumor G1 10 160168 -NCIT:C135090 Jejunal Neuroendocrine Tumor 9 160169 -NCIT:C135119 Jejunal Neuroendocrine Tumor by AJCC v8 Stage 10 160170 -NCIT:C135120 Stage I Jejunal Neuroendocrine Tumor AJCC v8 11 160171 -NCIT:C135121 Stage II Jejunal Neuroendocrine Tumor AJCC v8 11 160172 -NCIT:C135122 Stage III Jejunal Neuroendocrine Tumor AJCC v8 11 160173 -NCIT:C135123 Stage IV Jejunal Neuroendocrine Tumor AJCC v8 11 160174 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 10 160175 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 10 160176 -NCIT:C5787 Jejunal Somatostatin-Producing Neuroendocrine Tumor 10 160177 -NCIT:C6429 Jejunal Neuroendocrine Tumor G1 10 160178 -NCIT:C135092 Ileal Neuroendocrine Tumor 9 160179 -NCIT:C135124 Ileal Neuroendocrine Tumor by AJCC v8 Stage 10 160180 -NCIT:C135125 Stage I Ileal Neuroendocrine Tumor AJCC v8 11 160181 -NCIT:C135126 Stage II Ileal Neuroendocrine Tumor AJCC v8 11 160182 -NCIT:C135127 Stage III Ileal Neuroendocrine Tumor AJCC v8 11 160183 -NCIT:C135128 Stage IV Ileal Neuroendocrine Tumor AJCC v8 11 160184 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 10 160185 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 10 160186 -NCIT:C4935 Ileal Neuroendocrine Tumor G1 10 160187 -NCIT:C172664 Small Intestinal Neuroendocrine Tumor G3 9 160188 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 10 160189 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 10 160190 -NCIT:C172672 Duodenal Neuroendocrine Tumor G3 10 160191 -NCIT:C27450 Small Intestinal Gastrin-Producing Neuroendocrine Tumor 9 160192 -NCIT:C5731 Duodenal Gastrin-Producing Neuroendocrine Tumor 10 160193 -NCIT:C27451 Small Intestinal Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 9 160194 -NCIT:C27452 Small Intestinal L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 9 160195 -NCIT:C27453 Small Intestinal Somatostatin-Producing Neuroendocrine Tumor 9 160196 -NCIT:C27407 Duodenal Somatostatin-Producing Neuroendocrine Tumor 10 160197 -NCIT:C5787 Jejunal Somatostatin-Producing Neuroendocrine Tumor 10 160198 -NCIT:C27455 Small Intestinal VIP-Producing Neuroendocrine Tumor 9 160199 -NCIT:C4638 Small Intestinal Neuroendocrine Tumor G1 9 160200 -NCIT:C4935 Ileal Neuroendocrine Tumor G1 10 160201 -NCIT:C6425 Duodenal Neuroendocrine Tumor G1 10 160202 -NCIT:C6429 Jejunal Neuroendocrine Tumor G1 10 160203 -NCIT:C96067 Small Intestinal Neuroendocrine Tumor G2 9 160204 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 10 160205 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 10 160206 -NCIT:C160442 Duodenal Neuroendocrine Tumor G2 10 160207 -NCIT:C96073 Small Intestinal Composite Gangliocytoma/Neuroma and Neuroendocrine Tumor 9 160208 -NCIT:C96064 Small Intestinal Neuroendocrine Carcinoma 8 160209 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 9 160210 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 10 160211 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 11 160212 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 11 160213 -NCIT:C27449 Small Intestinal Small Cell Neuroendocrine Carcinoma 9 160214 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 160215 -NCIT:C96065 Small Intestinal Large Cell Neuroendocrine Carcinoma 9 160216 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 160217 -NCIT:C96062 Intestinal Neuroendocrine Tumor 7 160218 -NCIT:C172670 Intestinal Neuroendocrine Tumor G3 8 160219 -NCIT:C172664 Small Intestinal Neuroendocrine Tumor G3 9 160220 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 10 160221 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 10 160222 -NCIT:C172672 Duodenal Neuroendocrine Tumor G3 10 160223 -NCIT:C172701 Colorectal Neuroendocrine Tumor G3 9 160224 -NCIT:C172702 Colon Neuroendocrine Tumor G3 10 160225 -NCIT:C172703 Rectal Neuroendocrine Tumor G3 10 160226 -NCIT:C4637 Intestinal Neuroendocrine Tumor G1 8 160227 -NCIT:C4638 Small Intestinal Neuroendocrine Tumor G1 9 160228 -NCIT:C4935 Ileal Neuroendocrine Tumor G1 10 160229 -NCIT:C6425 Duodenal Neuroendocrine Tumor G1 10 160230 -NCIT:C6429 Jejunal Neuroendocrine Tumor G1 10 160231 -NCIT:C6424 Meckel Diverticulum Neuroendocrine Tumor G1 9 160232 -NCIT:C96160 Colorectal Neuroendocrine Tumor G1 9 160233 -NCIT:C5497 Colon Neuroendocrine Tumor G1 10 160234 -NCIT:C188043 Sigmoid Colon Neuroendocrine Tumor G1 11 160235 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 11 160236 -NCIT:C6426 Transverse Colon Neuroendocrine Tumor G1 11 160237 -NCIT:C6427 Ascending Colon Neuroendocrine Tumor G1 11 160238 -NCIT:C6428 Descending Colon Neuroendocrine Tumor G1 11 160239 -NCIT:C5547 Rectal Neuroendocrine Tumor G1 10 160240 -NCIT:C5325 Intestinal Composite Gangliocytoma/Neuroma and Neuroendocrine Tumor 8 160241 -NCIT:C96073 Small Intestinal Composite Gangliocytoma/Neuroma and Neuroendocrine Tumor 9 160242 -NCIT:C96061 Small Intestinal Neuroendocrine Tumor 8 160243 -NCIT:C135080 Duodenal Neuroendocrine Tumor 9 160244 -NCIT:C135075 Duodenal Neuroendocrine Tumor by AJCC v8 Stage 10 160245 -NCIT:C135076 Stage I Duodenal Neuroendocrine Tumor AJCC v8 11 160246 -NCIT:C135077 Stage II Duodenal Neuroendocrine Tumor AJCC v8 11 160247 -NCIT:C135078 Stage III Duodenal Neuroendocrine Tumor AJCC v8 11 160248 -NCIT:C135079 Stage IV Duodenal Neuroendocrine Tumor AJCC v8 11 160249 -NCIT:C160442 Duodenal Neuroendocrine Tumor G2 10 160250 -NCIT:C172672 Duodenal Neuroendocrine Tumor G3 10 160251 -NCIT:C27407 Duodenal Somatostatin-Producing Neuroendocrine Tumor 10 160252 -NCIT:C5731 Duodenal Gastrin-Producing Neuroendocrine Tumor 10 160253 -NCIT:C6425 Duodenal Neuroendocrine Tumor G1 10 160254 -NCIT:C135090 Jejunal Neuroendocrine Tumor 9 160255 -NCIT:C135119 Jejunal Neuroendocrine Tumor by AJCC v8 Stage 10 160256 -NCIT:C135120 Stage I Jejunal Neuroendocrine Tumor AJCC v8 11 160257 -NCIT:C135121 Stage II Jejunal Neuroendocrine Tumor AJCC v8 11 160258 -NCIT:C135122 Stage III Jejunal Neuroendocrine Tumor AJCC v8 11 160259 -NCIT:C135123 Stage IV Jejunal Neuroendocrine Tumor AJCC v8 11 160260 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 10 160261 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 10 160262 -NCIT:C5787 Jejunal Somatostatin-Producing Neuroendocrine Tumor 10 160263 -NCIT:C6429 Jejunal Neuroendocrine Tumor G1 10 160264 -NCIT:C135092 Ileal Neuroendocrine Tumor 9 160265 -NCIT:C135124 Ileal Neuroendocrine Tumor by AJCC v8 Stage 10 160266 -NCIT:C135125 Stage I Ileal Neuroendocrine Tumor AJCC v8 11 160267 -NCIT:C135126 Stage II Ileal Neuroendocrine Tumor AJCC v8 11 160268 -NCIT:C135127 Stage III Ileal Neuroendocrine Tumor AJCC v8 11 160269 -NCIT:C135128 Stage IV Ileal Neuroendocrine Tumor AJCC v8 11 160270 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 10 160271 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 10 160272 -NCIT:C4935 Ileal Neuroendocrine Tumor G1 10 160273 -NCIT:C172664 Small Intestinal Neuroendocrine Tumor G3 9 160274 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 10 160275 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 10 160276 -NCIT:C172672 Duodenal Neuroendocrine Tumor G3 10 160277 -NCIT:C27450 Small Intestinal Gastrin-Producing Neuroendocrine Tumor 9 160278 -NCIT:C5731 Duodenal Gastrin-Producing Neuroendocrine Tumor 10 160279 -NCIT:C27451 Small Intestinal Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 9 160280 -NCIT:C27452 Small Intestinal L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 9 160281 -NCIT:C27453 Small Intestinal Somatostatin-Producing Neuroendocrine Tumor 9 160282 -NCIT:C27407 Duodenal Somatostatin-Producing Neuroendocrine Tumor 10 160283 -NCIT:C5787 Jejunal Somatostatin-Producing Neuroendocrine Tumor 10 160284 -NCIT:C27455 Small Intestinal VIP-Producing Neuroendocrine Tumor 9 160285 -NCIT:C4638 Small Intestinal Neuroendocrine Tumor G1 9 160286 -NCIT:C4935 Ileal Neuroendocrine Tumor G1 10 160287 -NCIT:C6425 Duodenal Neuroendocrine Tumor G1 10 160288 -NCIT:C6429 Jejunal Neuroendocrine Tumor G1 10 160289 -NCIT:C96067 Small Intestinal Neuroendocrine Tumor G2 9 160290 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 10 160291 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 10 160292 -NCIT:C160442 Duodenal Neuroendocrine Tumor G2 10 160293 -NCIT:C96073 Small Intestinal Composite Gangliocytoma/Neuroma and Neuroendocrine Tumor 9 160294 -NCIT:C96159 Colorectal Neuroendocrine Tumor 8 160295 -NCIT:C135205 Colorectal Neuroendocrine Tumor by AJCC v8 Stage 9 160296 -NCIT:C135206 Stage I Colorectal Neuroendocrine Tumor AJCC v8 10 160297 -NCIT:C135368 Stage I Colon Neuroendocrine Tumor AJCC v8 11 160298 -NCIT:C135528 Stage I Rectal Neuroendocrine Tumor AJCC v8 11 160299 -NCIT:C135207 Stage IIA Colorectal Neuroendocrine Tumor AJCC v8 10 160300 -NCIT:C135369 Stage IIA Colon Neuroendocrine Tumor AJCC v8 11 160301 -NCIT:C135529 Stage IIA Rectal Neuroendocrine Tumor AJCC v8 11 160302 -NCIT:C135208 Stage IIB Colorectal Neuroendocrine Tumor AJCC v8 10 160303 -NCIT:C135370 Stage IIB Colon Neuroendocrine Tumor AJCC v8 11 160304 -NCIT:C135530 Stage IIB Rectal Neuroendocrine Tumor AJCC v8 11 160305 -NCIT:C135209 Stage IIIA Colorectal Neuroendocrine Tumor AJCC v8 10 160306 -NCIT:C135524 Stage IIIA Colon Neuroendocrine Tumor AJCC v8 11 160307 -NCIT:C135531 Stage IIIA Rectal Neuroendocrine Tumor AJCC v8 11 160308 -NCIT:C135210 Stage IIIB Colorectal Neuroendocrine Tumor AJCC v8 10 160309 -NCIT:C135525 Stage IIIB Colon Neuroendocrine Tumor AJCC v8 11 160310 -NCIT:C135532 Stage IIIB Rectal Neuroendocrine Tumor AJCC v8 11 160311 -NCIT:C135211 Stage IV Colorectal Neuroendocrine Tumor AJCC v8 10 160312 -NCIT:C135526 Stage IV Colon Neuroendocrine Tumor AJCC v8 11 160313 -NCIT:C135533 Stage IV Rectal Neuroendocrine Tumor AJCC v8 11 160314 -NCIT:C135214 Colon Neuroendocrine Tumor by AJCC v8 Stage 10 160315 -NCIT:C135368 Stage I Colon Neuroendocrine Tumor AJCC v8 11 160316 -NCIT:C135369 Stage IIA Colon Neuroendocrine Tumor AJCC v8 11 160317 -NCIT:C135370 Stage IIB Colon Neuroendocrine Tumor AJCC v8 11 160318 -NCIT:C135524 Stage IIIA Colon Neuroendocrine Tumor AJCC v8 11 160319 -NCIT:C135525 Stage IIIB Colon Neuroendocrine Tumor AJCC v8 11 160320 -NCIT:C135526 Stage IV Colon Neuroendocrine Tumor AJCC v8 11 160321 -NCIT:C135527 Rectal Neuroendocrine Tumor by AJCC v8 Stage 10 160322 -NCIT:C135528 Stage I Rectal Neuroendocrine Tumor AJCC v8 11 160323 -NCIT:C135529 Stage IIA Rectal Neuroendocrine Tumor AJCC v8 11 160324 -NCIT:C135530 Stage IIB Rectal Neuroendocrine Tumor AJCC v8 11 160325 -NCIT:C135531 Stage IIIA Rectal Neuroendocrine Tumor AJCC v8 11 160326 -NCIT:C135532 Stage IIIB Rectal Neuroendocrine Tumor AJCC v8 11 160327 -NCIT:C135533 Stage IV Rectal Neuroendocrine Tumor AJCC v8 11 160328 -NCIT:C135212 Colon Neuroendocrine Tumor 9 160329 -NCIT:C135214 Colon Neuroendocrine Tumor by AJCC v8 Stage 10 160330 -NCIT:C135368 Stage I Colon Neuroendocrine Tumor AJCC v8 11 160331 -NCIT:C135369 Stage IIA Colon Neuroendocrine Tumor AJCC v8 11 160332 -NCIT:C135370 Stage IIB Colon Neuroendocrine Tumor AJCC v8 11 160333 -NCIT:C135524 Stage IIIA Colon Neuroendocrine Tumor AJCC v8 11 160334 -NCIT:C135525 Stage IIIB Colon Neuroendocrine Tumor AJCC v8 11 160335 -NCIT:C135526 Stage IV Colon Neuroendocrine Tumor AJCC v8 11 160336 -NCIT:C160443 Colon Neuroendocrine Tumor G2 10 160337 -NCIT:C172702 Colon Neuroendocrine Tumor G3 10 160338 -NCIT:C27446 Colon Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 10 160339 -NCIT:C27447 Colon L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 10 160340 -NCIT:C5497 Colon Neuroendocrine Tumor G1 10 160341 -NCIT:C188043 Sigmoid Colon Neuroendocrine Tumor G1 11 160342 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 11 160343 -NCIT:C6426 Transverse Colon Neuroendocrine Tumor G1 11 160344 -NCIT:C6427 Ascending Colon Neuroendocrine Tumor G1 11 160345 -NCIT:C6428 Descending Colon Neuroendocrine Tumor G1 11 160346 -NCIT:C135213 Rectal Neuroendocrine Tumor 9 160347 -NCIT:C135527 Rectal Neuroendocrine Tumor by AJCC v8 Stage 10 160348 -NCIT:C135528 Stage I Rectal Neuroendocrine Tumor AJCC v8 11 160349 -NCIT:C135529 Stage IIA Rectal Neuroendocrine Tumor AJCC v8 11 160350 -NCIT:C135530 Stage IIB Rectal Neuroendocrine Tumor AJCC v8 11 160351 -NCIT:C135531 Stage IIIA Rectal Neuroendocrine Tumor AJCC v8 11 160352 -NCIT:C135532 Stage IIIB Rectal Neuroendocrine Tumor AJCC v8 11 160353 -NCIT:C135533 Stage IV Rectal Neuroendocrine Tumor AJCC v8 11 160354 -NCIT:C160451 Rectal Neuroendocrine Tumor G2 10 160355 -NCIT:C172703 Rectal Neuroendocrine Tumor G3 10 160356 -NCIT:C5547 Rectal Neuroendocrine Tumor G1 10 160357 -NCIT:C172701 Colorectal Neuroendocrine Tumor G3 9 160358 -NCIT:C172702 Colon Neuroendocrine Tumor G3 10 160359 -NCIT:C172703 Rectal Neuroendocrine Tumor G3 10 160360 -NCIT:C96160 Colorectal Neuroendocrine Tumor G1 9 160361 -NCIT:C5497 Colon Neuroendocrine Tumor G1 10 160362 -NCIT:C188043 Sigmoid Colon Neuroendocrine Tumor G1 11 160363 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 11 160364 -NCIT:C6426 Transverse Colon Neuroendocrine Tumor G1 11 160365 -NCIT:C6427 Ascending Colon Neuroendocrine Tumor G1 11 160366 -NCIT:C6428 Descending Colon Neuroendocrine Tumor G1 11 160367 -NCIT:C5547 Rectal Neuroendocrine Tumor G1 10 160368 -NCIT:C96161 Colorectal L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 9 160369 -NCIT:C27447 Colon L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 10 160370 -NCIT:C96162 Colorectal Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 9 160371 -NCIT:C27446 Colon Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 10 160372 -NCIT:C96163 Colorectal Neuroendocrine Tumor G2 9 160373 -NCIT:C160443 Colon Neuroendocrine Tumor G2 10 160374 -NCIT:C160451 Rectal Neuroendocrine Tumor G2 10 160375 -NCIT:C96165 Intestinal Neuroendocrine Tumor G2 8 160376 -NCIT:C96067 Small Intestinal Neuroendocrine Tumor G2 9 160377 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 10 160378 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 10 160379 -NCIT:C160442 Duodenal Neuroendocrine Tumor G2 10 160380 -NCIT:C96163 Colorectal Neuroendocrine Tumor G2 9 160381 -NCIT:C160443 Colon Neuroendocrine Tumor G2 10 160382 -NCIT:C160451 Rectal Neuroendocrine Tumor G2 10 160383 -NCIT:C96063 Intestinal Neuroendocrine Carcinoma 7 160384 -NCIT:C96064 Small Intestinal Neuroendocrine Carcinoma 8 160385 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 9 160386 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 10 160387 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 11 160388 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 11 160389 -NCIT:C27449 Small Intestinal Small Cell Neuroendocrine Carcinoma 9 160390 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 160391 -NCIT:C96065 Small Intestinal Large Cell Neuroendocrine Carcinoma 9 160392 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 160393 -NCIT:C96156 Colorectal Neuroendocrine Carcinoma 8 160394 -NCIT:C43587 Colorectal Small Cell Neuroendocrine Carcinoma 9 160395 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 10 160396 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 10 160397 -NCIT:C96157 Colorectal Large Cell Neuroendocrine Carcinoma 9 160398 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 10 160399 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 10 160400 -NCIT:C96152 Colorectal Neuroendocrine Neoplasm 7 160401 -NCIT:C5697 Colon Neuroendocrine Neoplasm 8 160402 -NCIT:C135212 Colon Neuroendocrine Tumor 9 160403 -NCIT:C135214 Colon Neuroendocrine Tumor by AJCC v8 Stage 10 160404 -NCIT:C135368 Stage I Colon Neuroendocrine Tumor AJCC v8 11 160405 -NCIT:C135369 Stage IIA Colon Neuroendocrine Tumor AJCC v8 11 160406 -NCIT:C135370 Stage IIB Colon Neuroendocrine Tumor AJCC v8 11 160407 -NCIT:C135524 Stage IIIA Colon Neuroendocrine Tumor AJCC v8 11 160408 -NCIT:C135525 Stage IIIB Colon Neuroendocrine Tumor AJCC v8 11 160409 -NCIT:C135526 Stage IV Colon Neuroendocrine Tumor AJCC v8 11 160410 -NCIT:C160443 Colon Neuroendocrine Tumor G2 10 160411 -NCIT:C172702 Colon Neuroendocrine Tumor G3 10 160412 -NCIT:C27446 Colon Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 10 160413 -NCIT:C27447 Colon L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 10 160414 -NCIT:C5497 Colon Neuroendocrine Tumor G1 10 160415 -NCIT:C188043 Sigmoid Colon Neuroendocrine Tumor G1 11 160416 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 11 160417 -NCIT:C6426 Transverse Colon Neuroendocrine Tumor G1 11 160418 -NCIT:C6427 Ascending Colon Neuroendocrine Tumor G1 11 160419 -NCIT:C6428 Descending Colon Neuroendocrine Tumor G1 11 160420 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 9 160421 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 9 160422 -NCIT:C5698 Rectal Neuroendocrine Neoplasm 8 160423 -NCIT:C135213 Rectal Neuroendocrine Tumor 9 160424 -NCIT:C135527 Rectal Neuroendocrine Tumor by AJCC v8 Stage 10 160425 -NCIT:C135528 Stage I Rectal Neuroendocrine Tumor AJCC v8 11 160426 -NCIT:C135529 Stage IIA Rectal Neuroendocrine Tumor AJCC v8 11 160427 -NCIT:C135530 Stage IIB Rectal Neuroendocrine Tumor AJCC v8 11 160428 -NCIT:C135531 Stage IIIA Rectal Neuroendocrine Tumor AJCC v8 11 160429 -NCIT:C135532 Stage IIIB Rectal Neuroendocrine Tumor AJCC v8 11 160430 -NCIT:C135533 Stage IV Rectal Neuroendocrine Tumor AJCC v8 11 160431 -NCIT:C160451 Rectal Neuroendocrine Tumor G2 10 160432 -NCIT:C172703 Rectal Neuroendocrine Tumor G3 10 160433 -NCIT:C5547 Rectal Neuroendocrine Tumor G1 10 160434 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 9 160435 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 9 160436 -NCIT:C96156 Colorectal Neuroendocrine Carcinoma 8 160437 -NCIT:C43587 Colorectal Small Cell Neuroendocrine Carcinoma 9 160438 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 10 160439 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 10 160440 -NCIT:C96157 Colorectal Large Cell Neuroendocrine Carcinoma 9 160441 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 10 160442 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 10 160443 -NCIT:C96159 Colorectal Neuroendocrine Tumor 8 160444 -NCIT:C135205 Colorectal Neuroendocrine Tumor by AJCC v8 Stage 9 160445 -NCIT:C135206 Stage I Colorectal Neuroendocrine Tumor AJCC v8 10 160446 -NCIT:C135368 Stage I Colon Neuroendocrine Tumor AJCC v8 11 160447 -NCIT:C135528 Stage I Rectal Neuroendocrine Tumor AJCC v8 11 160448 -NCIT:C135207 Stage IIA Colorectal Neuroendocrine Tumor AJCC v8 10 160449 -NCIT:C135369 Stage IIA Colon Neuroendocrine Tumor AJCC v8 11 160450 -NCIT:C135529 Stage IIA Rectal Neuroendocrine Tumor AJCC v8 11 160451 -NCIT:C135208 Stage IIB Colorectal Neuroendocrine Tumor AJCC v8 10 160452 -NCIT:C135370 Stage IIB Colon Neuroendocrine Tumor AJCC v8 11 160453 -NCIT:C135530 Stage IIB Rectal Neuroendocrine Tumor AJCC v8 11 160454 -NCIT:C135209 Stage IIIA Colorectal Neuroendocrine Tumor AJCC v8 10 160455 -NCIT:C135524 Stage IIIA Colon Neuroendocrine Tumor AJCC v8 11 160456 -NCIT:C135531 Stage IIIA Rectal Neuroendocrine Tumor AJCC v8 11 160457 -NCIT:C135210 Stage IIIB Colorectal Neuroendocrine Tumor AJCC v8 10 160458 -NCIT:C135525 Stage IIIB Colon Neuroendocrine Tumor AJCC v8 11 160459 -NCIT:C135532 Stage IIIB Rectal Neuroendocrine Tumor AJCC v8 11 160460 -NCIT:C135211 Stage IV Colorectal Neuroendocrine Tumor AJCC v8 10 160461 -NCIT:C135526 Stage IV Colon Neuroendocrine Tumor AJCC v8 11 160462 -NCIT:C135533 Stage IV Rectal Neuroendocrine Tumor AJCC v8 11 160463 -NCIT:C135214 Colon Neuroendocrine Tumor by AJCC v8 Stage 10 160464 -NCIT:C135368 Stage I Colon Neuroendocrine Tumor AJCC v8 11 160465 -NCIT:C135369 Stage IIA Colon Neuroendocrine Tumor AJCC v8 11 160466 -NCIT:C135370 Stage IIB Colon Neuroendocrine Tumor AJCC v8 11 160467 -NCIT:C135524 Stage IIIA Colon Neuroendocrine Tumor AJCC v8 11 160468 -NCIT:C135525 Stage IIIB Colon Neuroendocrine Tumor AJCC v8 11 160469 -NCIT:C135526 Stage IV Colon Neuroendocrine Tumor AJCC v8 11 160470 -NCIT:C135527 Rectal Neuroendocrine Tumor by AJCC v8 Stage 10 160471 -NCIT:C135528 Stage I Rectal Neuroendocrine Tumor AJCC v8 11 160472 -NCIT:C135529 Stage IIA Rectal Neuroendocrine Tumor AJCC v8 11 160473 -NCIT:C135530 Stage IIB Rectal Neuroendocrine Tumor AJCC v8 11 160474 -NCIT:C135531 Stage IIIA Rectal Neuroendocrine Tumor AJCC v8 11 160475 -NCIT:C135532 Stage IIIB Rectal Neuroendocrine Tumor AJCC v8 11 160476 -NCIT:C135533 Stage IV Rectal Neuroendocrine Tumor AJCC v8 11 160477 -NCIT:C135212 Colon Neuroendocrine Tumor 9 160478 -NCIT:C135214 Colon Neuroendocrine Tumor by AJCC v8 Stage 10 160479 -NCIT:C135368 Stage I Colon Neuroendocrine Tumor AJCC v8 11 160480 -NCIT:C135369 Stage IIA Colon Neuroendocrine Tumor AJCC v8 11 160481 -NCIT:C135370 Stage IIB Colon Neuroendocrine Tumor AJCC v8 11 160482 -NCIT:C135524 Stage IIIA Colon Neuroendocrine Tumor AJCC v8 11 160483 -NCIT:C135525 Stage IIIB Colon Neuroendocrine Tumor AJCC v8 11 160484 -NCIT:C135526 Stage IV Colon Neuroendocrine Tumor AJCC v8 11 160485 -NCIT:C160443 Colon Neuroendocrine Tumor G2 10 160486 -NCIT:C172702 Colon Neuroendocrine Tumor G3 10 160487 -NCIT:C27446 Colon Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 10 160488 -NCIT:C27447 Colon L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 10 160489 -NCIT:C5497 Colon Neuroendocrine Tumor G1 10 160490 -NCIT:C188043 Sigmoid Colon Neuroendocrine Tumor G1 11 160491 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 11 160492 -NCIT:C6426 Transverse Colon Neuroendocrine Tumor G1 11 160493 -NCIT:C6427 Ascending Colon Neuroendocrine Tumor G1 11 160494 -NCIT:C6428 Descending Colon Neuroendocrine Tumor G1 11 160495 -NCIT:C135213 Rectal Neuroendocrine Tumor 9 160496 -NCIT:C135527 Rectal Neuroendocrine Tumor by AJCC v8 Stage 10 160497 -NCIT:C135528 Stage I Rectal Neuroendocrine Tumor AJCC v8 11 160498 -NCIT:C135529 Stage IIA Rectal Neuroendocrine Tumor AJCC v8 11 160499 -NCIT:C135530 Stage IIB Rectal Neuroendocrine Tumor AJCC v8 11 160500 -NCIT:C135531 Stage IIIA Rectal Neuroendocrine Tumor AJCC v8 11 160501 -NCIT:C135532 Stage IIIB Rectal Neuroendocrine Tumor AJCC v8 11 160502 -NCIT:C135533 Stage IV Rectal Neuroendocrine Tumor AJCC v8 11 160503 -NCIT:C160451 Rectal Neuroendocrine Tumor G2 10 160504 -NCIT:C172703 Rectal Neuroendocrine Tumor G3 10 160505 -NCIT:C5547 Rectal Neuroendocrine Tumor G1 10 160506 -NCIT:C172701 Colorectal Neuroendocrine Tumor G3 9 160507 -NCIT:C172702 Colon Neuroendocrine Tumor G3 10 160508 -NCIT:C172703 Rectal Neuroendocrine Tumor G3 10 160509 -NCIT:C96160 Colorectal Neuroendocrine Tumor G1 9 160510 -NCIT:C5497 Colon Neuroendocrine Tumor G1 10 160511 -NCIT:C188043 Sigmoid Colon Neuroendocrine Tumor G1 11 160512 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 11 160513 -NCIT:C6426 Transverse Colon Neuroendocrine Tumor G1 11 160514 -NCIT:C6427 Ascending Colon Neuroendocrine Tumor G1 11 160515 -NCIT:C6428 Descending Colon Neuroendocrine Tumor G1 11 160516 -NCIT:C5547 Rectal Neuroendocrine Tumor G1 10 160517 -NCIT:C96161 Colorectal L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 9 160518 -NCIT:C27447 Colon L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 10 160519 -NCIT:C96162 Colorectal Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 9 160520 -NCIT:C27446 Colon Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 10 160521 -NCIT:C96163 Colorectal Neuroendocrine Tumor G2 9 160522 -NCIT:C160443 Colon Neuroendocrine Tumor G2 10 160523 -NCIT:C160451 Rectal Neuroendocrine Tumor G2 10 160524 -NCIT:C5696 Gastric Neuroendocrine Neoplasm 6 160525 -NCIT:C95871 Gastric Neuroendocrine Tumor 7 160526 -NCIT:C135045 Gastric Neuroendocrine Tumor by AJCC v8 Stage 8 160527 -NCIT:C135046 Stage I Gastric Neuroendocrine Tumor AJCC v8 9 160528 -NCIT:C135047 Stage II Gastric Neuroendocrine Tumor AJCC v8 9 160529 -NCIT:C135048 Stage III Gastric Neuroendocrine Tumor AJCC v8 9 160530 -NCIT:C135049 Stage IV Gastric Neuroendocrine Tumor AJCC v8 9 160531 -NCIT:C172662 Gastric Neuroendocrine Tumor G3 8 160532 -NCIT:C27443 Gastric Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 8 160533 -NCIT:C27444 Gastric Gastrin-Producing Neuroendocrine Tumor 8 160534 -NCIT:C4635 Gastric Neuroendocrine Tumor G1 8 160535 -NCIT:C95880 Gastric Neuroendocrine Tumor G2 8 160536 -NCIT:C95884 Gastric Neuroendocrine Carcinoma 7 160537 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 8 160538 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 160539 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 160540 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 160541 -NCIT:C6764 Gastric Small Cell Neuroendocrine Carcinoma 8 160542 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 160543 -NCIT:C95885 Gastric Large Cell Neuroendocrine Carcinoma 8 160544 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 160545 -NCIT:C5821 Esophageal Neuroendocrine Neoplasm 6 160546 -NCIT:C95616 Esophageal Neuroendocrine Tumor 7 160547 -NCIT:C172661 Esophageal Neuroendocrine Tumor G3 8 160548 -NCIT:C5820 Esophageal Neuroendocrine Tumor G1 8 160549 -NCIT:C95617 Esophageal Neuroendocrine Tumor G2 8 160550 -NCIT:C95619 Esophageal Neuroendocrine Carcinoma 7 160551 -NCIT:C6762 Esophageal Small Cell Neuroendocrine Carcinoma 8 160552 -NCIT:C95620 Esophageal Large Cell Neuroendocrine Carcinoma 8 160553 -NCIT:C60709 Appendix Neuroendocrine Neoplasm 6 160554 -NCIT:C96422 Appendix Neuroendocrine Tumor 7 160555 -NCIT:C135155 Appendix Neuroendocrine Tumor by AJCC v7 Stage 8 160556 -NCIT:C87809 Stage I Appendix Neuroendocrine Tumor AJCC v7 9 160557 -NCIT:C87810 Stage II Appendix Neuroendocrine Tumor AJCC v7 9 160558 -NCIT:C87811 Stage III Appendix Neuroendocrine Tumor AJCC v7 9 160559 -NCIT:C87812 Stage IV Appendix Neuroendocrine Tumor AJCC v7 9 160560 -NCIT:C135156 Appendix Neuroendocrine Tumor by AJCC v8 Stage 8 160561 -NCIT:C135157 Stage I Appendix Neuroendocrine Tumor AJCC v8 9 160562 -NCIT:C135158 Stage II Appendix Neuroendocrine Tumor AJCC v8 9 160563 -NCIT:C135159 Stage III Appendix Neuroendocrine Tumor AJCC v8 9 160564 -NCIT:C135160 Stage IV Appendix Neuroendocrine Tumor AJCC v8 9 160565 -NCIT:C172666 Appendix Neuroendocrine Tumor G3 8 160566 -NCIT:C190029 Childhood Appendix Neuroendocrine Tumor 8 160567 -NCIT:C27445 Appendix L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 8 160568 -NCIT:C4138 Appendix Neuroendocrine Tumor G1 8 160569 -NCIT:C43565 Appendix Tubular Carcinoid 8 160570 -NCIT:C96423 Appendix Neuroendocrine Tumor G2 8 160571 -NCIT:C96424 Appendix Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 8 160572 -NCIT:C96425 Appendix Neuroendocrine Carcinoma 7 160573 -NCIT:C43555 Appendix Small Cell Neuroendocrine Carcinoma 8 160574 -NCIT:C96426 Appendix Large Cell Neuroendocrine Carcinoma 8 160575 -NCIT:C95404 Digestive System Neuroendocrine Tumor 6 160576 -NCIT:C135129 Digestive System Neuroendocrine Tumor by AJCC v7 Stage 7 160577 -NCIT:C135155 Appendix Neuroendocrine Tumor by AJCC v7 Stage 8 160578 -NCIT:C87809 Stage I Appendix Neuroendocrine Tumor AJCC v7 9 160579 -NCIT:C87810 Stage II Appendix Neuroendocrine Tumor AJCC v7 9 160580 -NCIT:C87811 Stage III Appendix Neuroendocrine Tumor AJCC v7 9 160581 -NCIT:C87812 Stage IV Appendix Neuroendocrine Tumor AJCC v7 9 160582 -NCIT:C88027 Stage 0 Digestive System Neuroendocrine Tumor AJCC v7 8 160583 -NCIT:C88028 Stage I Digestive System Neuroendocrine Tumor AJCC v7 8 160584 -NCIT:C88029 Stage IIA Digestive System Neuroendocrine Tumor AJCC v7 8 160585 -NCIT:C88030 Stage IIB Digestive System Neuroendocrine Tumor AJCC v7 8 160586 -NCIT:C88031 Stage IIIA Digestive System Neuroendocrine Tumor AJCC v7 8 160587 -NCIT:C88032 Stage IIIB Digestive System Neuroendocrine Tumor AJCC v7 8 160588 -NCIT:C88033 Stage IV Digestive System Neuroendocrine Tumor AJCC v7 8 160589 -NCIT:C167327 Midgut Neuroendocrine Tumor 7 160590 -NCIT:C135090 Jejunal Neuroendocrine Tumor 8 160591 -NCIT:C135119 Jejunal Neuroendocrine Tumor by AJCC v8 Stage 9 160592 -NCIT:C135120 Stage I Jejunal Neuroendocrine Tumor AJCC v8 10 160593 -NCIT:C135121 Stage II Jejunal Neuroendocrine Tumor AJCC v8 10 160594 -NCIT:C135122 Stage III Jejunal Neuroendocrine Tumor AJCC v8 10 160595 -NCIT:C135123 Stage IV Jejunal Neuroendocrine Tumor AJCC v8 10 160596 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 9 160597 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 9 160598 -NCIT:C5787 Jejunal Somatostatin-Producing Neuroendocrine Tumor 9 160599 -NCIT:C6429 Jejunal Neuroendocrine Tumor G1 9 160600 -NCIT:C135092 Ileal Neuroendocrine Tumor 8 160601 -NCIT:C135124 Ileal Neuroendocrine Tumor by AJCC v8 Stage 9 160602 -NCIT:C135125 Stage I Ileal Neuroendocrine Tumor AJCC v8 10 160603 -NCIT:C135126 Stage II Ileal Neuroendocrine Tumor AJCC v8 10 160604 -NCIT:C135127 Stage III Ileal Neuroendocrine Tumor AJCC v8 10 160605 -NCIT:C135128 Stage IV Ileal Neuroendocrine Tumor AJCC v8 10 160606 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 9 160607 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 9 160608 -NCIT:C4935 Ileal Neuroendocrine Tumor G1 9 160609 -NCIT:C167328 Midgut Neuroendocrine Tumor G2 8 160610 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 9 160611 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 9 160612 -NCIT:C96423 Appendix Neuroendocrine Tumor G2 9 160613 -NCIT:C167329 Metastatic Midgut Neuroendocrine Tumor 8 160614 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 9 160615 -NCIT:C167331 Unresectable Midgut Neuroendocrine Tumor 8 160616 -NCIT:C172669 Midgut Neuroendocrine Tumor G3 8 160617 -NCIT:C172666 Appendix Neuroendocrine Tumor G3 9 160618 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 9 160619 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 9 160620 -NCIT:C6422 Midgut Neuroendocrine Tumor G1 8 160621 -NCIT:C4138 Appendix Neuroendocrine Tumor G1 9 160622 -NCIT:C4935 Ileal Neuroendocrine Tumor G1 9 160623 -NCIT:C5229 Ovarian Carcinoid Tumor 9 160624 -NCIT:C188015 Ovarian Teratoma with Carcinoid Tumor 10 160625 -NCIT:C4292 Strumal Carcinoid 11 160626 -NCIT:C40013 Ovarian Insular Carcinoid Tumor 10 160627 -NCIT:C40014 Ovarian Trabecular Carcinoid Tumor 10 160628 -NCIT:C40015 Ovarian Mucinous Carcinoid Tumor 10 160629 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 9 160630 -NCIT:C6424 Meckel Diverticulum Neuroendocrine Tumor G1 9 160631 -NCIT:C6427 Ascending Colon Neuroendocrine Tumor G1 9 160632 -NCIT:C6429 Jejunal Neuroendocrine Tumor G1 9 160633 -NCIT:C96422 Appendix Neuroendocrine Tumor 8 160634 -NCIT:C135155 Appendix Neuroendocrine Tumor by AJCC v7 Stage 9 160635 -NCIT:C87809 Stage I Appendix Neuroendocrine Tumor AJCC v7 10 160636 -NCIT:C87810 Stage II Appendix Neuroendocrine Tumor AJCC v7 10 160637 -NCIT:C87811 Stage III Appendix Neuroendocrine Tumor AJCC v7 10 160638 -NCIT:C87812 Stage IV Appendix Neuroendocrine Tumor AJCC v7 10 160639 -NCIT:C135156 Appendix Neuroendocrine Tumor by AJCC v8 Stage 9 160640 -NCIT:C135157 Stage I Appendix Neuroendocrine Tumor AJCC v8 10 160641 -NCIT:C135158 Stage II Appendix Neuroendocrine Tumor AJCC v8 10 160642 -NCIT:C135159 Stage III Appendix Neuroendocrine Tumor AJCC v8 10 160643 -NCIT:C135160 Stage IV Appendix Neuroendocrine Tumor AJCC v8 10 160644 -NCIT:C172666 Appendix Neuroendocrine Tumor G3 9 160645 -NCIT:C190029 Childhood Appendix Neuroendocrine Tumor 9 160646 -NCIT:C27445 Appendix L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 9 160647 -NCIT:C4138 Appendix Neuroendocrine Tumor G1 9 160648 -NCIT:C43565 Appendix Tubular Carcinoid 9 160649 -NCIT:C96423 Appendix Neuroendocrine Tumor G2 9 160650 -NCIT:C96424 Appendix Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 9 160651 -NCIT:C172660 Digestive System Neuroendocrine Tumor G3 7 160652 -NCIT:C172661 Esophageal Neuroendocrine Tumor G3 8 160653 -NCIT:C172662 Gastric Neuroendocrine Tumor G3 8 160654 -NCIT:C172669 Midgut Neuroendocrine Tumor G3 8 160655 -NCIT:C172666 Appendix Neuroendocrine Tumor G3 9 160656 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 9 160657 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 9 160658 -NCIT:C172670 Intestinal Neuroendocrine Tumor G3 8 160659 -NCIT:C172664 Small Intestinal Neuroendocrine Tumor G3 9 160660 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 10 160661 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 10 160662 -NCIT:C172672 Duodenal Neuroendocrine Tumor G3 10 160663 -NCIT:C172701 Colorectal Neuroendocrine Tumor G3 9 160664 -NCIT:C172702 Colon Neuroendocrine Tumor G3 10 160665 -NCIT:C172703 Rectal Neuroendocrine Tumor G3 10 160666 -NCIT:C172673 Ampulla of Vater Neuroendocrine Tumor G3 8 160667 -NCIT:C172721 Liver Neuroendocrine Tumor G3 8 160668 -NCIT:C172742 Gallbladder Neuroendocrine Tumor G3 8 160669 -NCIT:C172743 Extrahepatic Bile Duct Neuroendocrine Tumor G3 8 160670 -NCIT:C172814 Pancreatic Neuroendocrine Tumor G3 8 160671 -NCIT:C190076 Childhood Digestive System Neuroendocrine Tumor 7 160672 -NCIT:C190029 Childhood Appendix Neuroendocrine Tumor 8 160673 -NCIT:C26749 VIP-Producing Neuroendocrine Tumor 7 160674 -NCIT:C27454 Pancreatic VIP-Producing Neuroendocrine Tumor 8 160675 -NCIT:C95599 Pancreatic Vipoma 9 160676 -NCIT:C67461 Malignant Pancreatic Vipoma 10 160677 -NCIT:C27455 Small Intestinal VIP-Producing Neuroendocrine Tumor 8 160678 -NCIT:C65189 Malignant Vipoma 8 160679 -NCIT:C67461 Malignant Pancreatic Vipoma 9 160680 -NCIT:C27448 L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 7 160681 -NCIT:C27445 Appendix L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 8 160682 -NCIT:C27452 Small Intestinal L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 8 160683 -NCIT:C96161 Colorectal L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 8 160684 -NCIT:C27447 Colon L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 9 160685 -NCIT:C27720 Pancreatic Neuroendocrine Tumor 7 160686 -NCIT:C135560 Pancreatic Neuroendocrine Tumor by AJCC v8 Stage 8 160687 -NCIT:C135561 Stage I Pancreatic Neuroendocrine Tumor AJCC v8 9 160688 -NCIT:C135562 Stage II Pancreatic Neuroendocrine Tumor AJCC v8 9 160689 -NCIT:C135563 Stage III Pancreatic Neuroendocrine Tumor AJCC v8 9 160690 -NCIT:C135564 Stage IV Pancreatic Neuroendocrine Tumor AJCC v8 9 160691 -NCIT:C156488 Metastatic Pancreatic Neuroendocrine Tumor 8 160692 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 9 160693 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 160694 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 10 160695 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 9 160696 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 9 160697 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 160698 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 9 160699 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 10 160700 -NCIT:C172814 Pancreatic Neuroendocrine Tumor G3 8 160701 -NCIT:C190782 Unresectable Pancreatic Neuroendocrine Tumor 8 160702 -NCIT:C27454 Pancreatic VIP-Producing Neuroendocrine Tumor 8 160703 -NCIT:C95599 Pancreatic Vipoma 9 160704 -NCIT:C67461 Malignant Pancreatic Vipoma 10 160705 -NCIT:C27466 Pancreatic ACTH-Producing Neuroendocrine Tumor 8 160706 -NCIT:C28396 Pancreatic Delta Cell Neuroendocrine Tumor 8 160707 -NCIT:C28333 Non-Functioning Pancreatic Delta Cell Neuroendocrine Tumor 9 160708 -NCIT:C8006 Pancreatic Somatostatin-Producing Neuroendocrine Tumor 9 160709 -NCIT:C95595 Pancreatic Somatostatinoma 10 160710 -NCIT:C67369 Malignant Pancreatic Somatostatinoma 11 160711 -NCIT:C3062 Pancreatic Glucagon-Producing Neuroendocrine Tumor 8 160712 -NCIT:C95597 Pancreatic Glucagonoma 9 160713 -NCIT:C65187 Malignant Pancreatic Glucagonoma 10 160714 -NCIT:C3140 Pancreatic Insulin-Producing Neuroendocrine Tumor 8 160715 -NCIT:C95598 Pancreatic Insulinoma 9 160716 -NCIT:C65186 Malignant Pancreatic Insulinoma 10 160717 -NCIT:C4446 Pancreatic Serotonin-Producing Neuroendocrine Tumor 8 160718 -NCIT:C45835 Pancreatic Neuroendocrine Tumor G2 8 160719 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 9 160720 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 10 160721 -NCIT:C45838 Non-Functioning Pancreatic Neuroendocrine Tumor G2 9 160722 -NCIT:C45841 Functioning Pancreatic Neuroendocrine Tumor G2 9 160723 -NCIT:C45837 Non-Functioning Pancreatic Neuroendocrine Tumor 8 160724 -NCIT:C28333 Non-Functioning Pancreatic Delta Cell Neuroendocrine Tumor 9 160725 -NCIT:C45834 Pancreatic Neuroendocrine Microtumor 9 160726 -NCIT:C45838 Non-Functioning Pancreatic Neuroendocrine Tumor G2 9 160727 -NCIT:C95585 Non-Functioning Pancreatic Neuroendocrine Tumor G1 9 160728 -NCIT:C45840 Functioning Pancreatic Neuroendocrine Tumor 8 160729 -NCIT:C45841 Functioning Pancreatic Neuroendocrine Tumor G2 9 160730 -NCIT:C95595 Pancreatic Somatostatinoma 9 160731 -NCIT:C67369 Malignant Pancreatic Somatostatinoma 10 160732 -NCIT:C95596 Pancreatic Gastrinoma 9 160733 -NCIT:C67458 Malignant Pancreatic Gastrinoma 10 160734 -NCIT:C95597 Pancreatic Glucagonoma 9 160735 -NCIT:C65187 Malignant Pancreatic Glucagonoma 10 160736 -NCIT:C95598 Pancreatic Insulinoma 9 160737 -NCIT:C65186 Malignant Pancreatic Insulinoma 10 160738 -NCIT:C95599 Pancreatic Vipoma 9 160739 -NCIT:C67461 Malignant Pancreatic Vipoma 10 160740 -NCIT:C9069 Pancreatic Gastrin-Producing Neuroendocrine Tumor 8 160741 -NCIT:C95596 Pancreatic Gastrinoma 9 160742 -NCIT:C67458 Malignant Pancreatic Gastrinoma 10 160743 -NCIT:C95584 Pancreatic Neuroendocrine Tumor G1 8 160744 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 9 160745 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 160746 -NCIT:C95585 Non-Functioning Pancreatic Neuroendocrine Tumor G1 9 160747 -NCIT:C3050 Gastrin-Producing Neuroendocrine Tumor 7 160748 -NCIT:C27444 Gastric Gastrin-Producing Neuroendocrine Tumor 8 160749 -NCIT:C27450 Small Intestinal Gastrin-Producing Neuroendocrine Tumor 8 160750 -NCIT:C5731 Duodenal Gastrin-Producing Neuroendocrine Tumor 9 160751 -NCIT:C65188 Malignant Gastrinoma 8 160752 -NCIT:C67458 Malignant Pancreatic Gastrinoma 9 160753 -NCIT:C9069 Pancreatic Gastrin-Producing Neuroendocrine Tumor 8 160754 -NCIT:C95596 Pancreatic Gastrinoma 9 160755 -NCIT:C67458 Malignant Pancreatic Gastrinoma 10 160756 -NCIT:C3379 Somatostatin-Producing Neuroendocrine Tumor 7 160757 -NCIT:C27453 Small Intestinal Somatostatin-Producing Neuroendocrine Tumor 8 160758 -NCIT:C27407 Duodenal Somatostatin-Producing Neuroendocrine Tumor 9 160759 -NCIT:C5787 Jejunal Somatostatin-Producing Neuroendocrine Tumor 9 160760 -NCIT:C65190 Malignant Somatostatinoma 8 160761 -NCIT:C67369 Malignant Pancreatic Somatostatinoma 9 160762 -NCIT:C8006 Pancreatic Somatostatin-Producing Neuroendocrine Tumor 8 160763 -NCIT:C95595 Pancreatic Somatostatinoma 9 160764 -NCIT:C67369 Malignant Pancreatic Somatostatinoma 10 160765 -NCIT:C95988 Ampulla of Vater Somatostatin-Producing Neuroendocrine Tumor 8 160766 -NCIT:C5783 Liver Neuroendocrine Tumor 7 160767 -NCIT:C172719 Liver Neuroendocrine Tumor G1 8 160768 -NCIT:C172720 Liver Neuroendocrine Tumor G2 8 160769 -NCIT:C172721 Liver Neuroendocrine Tumor G3 8 160770 -NCIT:C7709 Digestive System Neuroendocrine Tumor G1 7 160771 -NCIT:C115245 Metastatic Digestive System Neuroendocrine Tumor G1 8 160772 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 9 160773 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 160774 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 9 160775 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 9 160776 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 160777 -NCIT:C172719 Liver Neuroendocrine Tumor G1 8 160778 -NCIT:C179419 Unresectable Digestive System Neuroendocrine Tumor G1 8 160779 -NCIT:C27252 Enterochromaffin-Like Cell Neuroendocrine Tumor G1 8 160780 -NCIT:C4635 Gastric Neuroendocrine Tumor G1 9 160781 -NCIT:C4138 Appendix Neuroendocrine Tumor G1 8 160782 -NCIT:C4637 Intestinal Neuroendocrine Tumor G1 8 160783 -NCIT:C4638 Small Intestinal Neuroendocrine Tumor G1 9 160784 -NCIT:C4935 Ileal Neuroendocrine Tumor G1 10 160785 -NCIT:C6425 Duodenal Neuroendocrine Tumor G1 10 160786 -NCIT:C6429 Jejunal Neuroendocrine Tumor G1 10 160787 -NCIT:C6424 Meckel Diverticulum Neuroendocrine Tumor G1 9 160788 -NCIT:C96160 Colorectal Neuroendocrine Tumor G1 9 160789 -NCIT:C5497 Colon Neuroendocrine Tumor G1 10 160790 -NCIT:C188043 Sigmoid Colon Neuroendocrine Tumor G1 11 160791 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 11 160792 -NCIT:C6426 Transverse Colon Neuroendocrine Tumor G1 11 160793 -NCIT:C6427 Ascending Colon Neuroendocrine Tumor G1 11 160794 -NCIT:C6428 Descending Colon Neuroendocrine Tumor G1 11 160795 -NCIT:C5547 Rectal Neuroendocrine Tumor G1 10 160796 -NCIT:C5820 Esophageal Neuroendocrine Tumor G1 8 160797 -NCIT:C5861 Extrahepatic Bile Duct Neuroendocrine Tumor G1 8 160798 -NCIT:C7861 Localized Digestive System Neuroendocrine Tumor G1 8 160799 -NCIT:C7862 Regional Digestive System Neuroendocrine Tumor G1 8 160800 -NCIT:C7864 Recurrent Digestive System Neuroendocrine Tumor G1 8 160801 -NCIT:C95584 Pancreatic Neuroendocrine Tumor G1 8 160802 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 9 160803 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 160804 -NCIT:C95585 Non-Functioning Pancreatic Neuroendocrine Tumor G1 9 160805 -NCIT:C95982 Ampulla of Vater Neuroendocrine Tumor G1 8 160806 -NCIT:C96543 Anal Canal Neuroendocrine Tumor G1 8 160807 -NCIT:C96924 Gallbladder Neuroendocrine Tumor G1 8 160808 -NCIT:C95616 Esophageal Neuroendocrine Tumor 7 160809 -NCIT:C172661 Esophageal Neuroendocrine Tumor G3 8 160810 -NCIT:C5820 Esophageal Neuroendocrine Tumor G1 8 160811 -NCIT:C95617 Esophageal Neuroendocrine Tumor G2 8 160812 -NCIT:C95871 Gastric Neuroendocrine Tumor 7 160813 -NCIT:C135045 Gastric Neuroendocrine Tumor by AJCC v8 Stage 8 160814 -NCIT:C135046 Stage I Gastric Neuroendocrine Tumor AJCC v8 9 160815 -NCIT:C135047 Stage II Gastric Neuroendocrine Tumor AJCC v8 9 160816 -NCIT:C135048 Stage III Gastric Neuroendocrine Tumor AJCC v8 9 160817 -NCIT:C135049 Stage IV Gastric Neuroendocrine Tumor AJCC v8 9 160818 -NCIT:C172662 Gastric Neuroendocrine Tumor G3 8 160819 -NCIT:C27443 Gastric Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 8 160820 -NCIT:C27444 Gastric Gastrin-Producing Neuroendocrine Tumor 8 160821 -NCIT:C4635 Gastric Neuroendocrine Tumor G1 8 160822 -NCIT:C95880 Gastric Neuroendocrine Tumor G2 8 160823 -NCIT:C95981 Ampulla of Vater Neuroendocrine Tumor 7 160824 -NCIT:C135081 Ampulla of Vater Neuroendocrine Tumor by AJCC v8 Stage 8 160825 -NCIT:C135082 Stage I Ampulla of Vater Neuroendocrine Tumor AJCC v8 9 160826 -NCIT:C135083 Stage II Ampulla of Vater Neuroendocrine Tumor AJCC v8 9 160827 -NCIT:C135084 Stage III Ampulla of Vater Neuroendocrine Tumor AJCC v8 9 160828 -NCIT:C135085 Stage IV Ampulla of Vater Neuroendocrine Tumor AJCC v8 9 160829 -NCIT:C172673 Ampulla of Vater Neuroendocrine Tumor G3 8 160830 -NCIT:C95982 Ampulla of Vater Neuroendocrine Tumor G1 8 160831 -NCIT:C95983 Ampulla of Vater Neuroendocrine Tumor G2 8 160832 -NCIT:C95987 Ampulla of Vater Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 8 160833 -NCIT:C95988 Ampulla of Vater Somatostatin-Producing Neuroendocrine Tumor 8 160834 -NCIT:C95989 Ampulla of Vater Gangliocytic Paraganglioma 8 160835 -NCIT:C96062 Intestinal Neuroendocrine Tumor 7 160836 -NCIT:C172670 Intestinal Neuroendocrine Tumor G3 8 160837 -NCIT:C172664 Small Intestinal Neuroendocrine Tumor G3 9 160838 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 10 160839 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 10 160840 -NCIT:C172672 Duodenal Neuroendocrine Tumor G3 10 160841 -NCIT:C172701 Colorectal Neuroendocrine Tumor G3 9 160842 -NCIT:C172702 Colon Neuroendocrine Tumor G3 10 160843 -NCIT:C172703 Rectal Neuroendocrine Tumor G3 10 160844 -NCIT:C4637 Intestinal Neuroendocrine Tumor G1 8 160845 -NCIT:C4638 Small Intestinal Neuroendocrine Tumor G1 9 160846 -NCIT:C4935 Ileal Neuroendocrine Tumor G1 10 160847 -NCIT:C6425 Duodenal Neuroendocrine Tumor G1 10 160848 -NCIT:C6429 Jejunal Neuroendocrine Tumor G1 10 160849 -NCIT:C6424 Meckel Diverticulum Neuroendocrine Tumor G1 9 160850 -NCIT:C96160 Colorectal Neuroendocrine Tumor G1 9 160851 -NCIT:C5497 Colon Neuroendocrine Tumor G1 10 160852 -NCIT:C188043 Sigmoid Colon Neuroendocrine Tumor G1 11 160853 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 11 160854 -NCIT:C6426 Transverse Colon Neuroendocrine Tumor G1 11 160855 -NCIT:C6427 Ascending Colon Neuroendocrine Tumor G1 11 160856 -NCIT:C6428 Descending Colon Neuroendocrine Tumor G1 11 160857 -NCIT:C5547 Rectal Neuroendocrine Tumor G1 10 160858 -NCIT:C5325 Intestinal Composite Gangliocytoma/Neuroma and Neuroendocrine Tumor 8 160859 -NCIT:C96073 Small Intestinal Composite Gangliocytoma/Neuroma and Neuroendocrine Tumor 9 160860 -NCIT:C96061 Small Intestinal Neuroendocrine Tumor 8 160861 -NCIT:C135080 Duodenal Neuroendocrine Tumor 9 160862 -NCIT:C135075 Duodenal Neuroendocrine Tumor by AJCC v8 Stage 10 160863 -NCIT:C135076 Stage I Duodenal Neuroendocrine Tumor AJCC v8 11 160864 -NCIT:C135077 Stage II Duodenal Neuroendocrine Tumor AJCC v8 11 160865 -NCIT:C135078 Stage III Duodenal Neuroendocrine Tumor AJCC v8 11 160866 -NCIT:C135079 Stage IV Duodenal Neuroendocrine Tumor AJCC v8 11 160867 -NCIT:C160442 Duodenal Neuroendocrine Tumor G2 10 160868 -NCIT:C172672 Duodenal Neuroendocrine Tumor G3 10 160869 -NCIT:C27407 Duodenal Somatostatin-Producing Neuroendocrine Tumor 10 160870 -NCIT:C5731 Duodenal Gastrin-Producing Neuroendocrine Tumor 10 160871 -NCIT:C6425 Duodenal Neuroendocrine Tumor G1 10 160872 -NCIT:C135090 Jejunal Neuroendocrine Tumor 9 160873 -NCIT:C135119 Jejunal Neuroendocrine Tumor by AJCC v8 Stage 10 160874 -NCIT:C135120 Stage I Jejunal Neuroendocrine Tumor AJCC v8 11 160875 -NCIT:C135121 Stage II Jejunal Neuroendocrine Tumor AJCC v8 11 160876 -NCIT:C135122 Stage III Jejunal Neuroendocrine Tumor AJCC v8 11 160877 -NCIT:C135123 Stage IV Jejunal Neuroendocrine Tumor AJCC v8 11 160878 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 10 160879 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 10 160880 -NCIT:C5787 Jejunal Somatostatin-Producing Neuroendocrine Tumor 10 160881 -NCIT:C6429 Jejunal Neuroendocrine Tumor G1 10 160882 -NCIT:C135092 Ileal Neuroendocrine Tumor 9 160883 -NCIT:C135124 Ileal Neuroendocrine Tumor by AJCC v8 Stage 10 160884 -NCIT:C135125 Stage I Ileal Neuroendocrine Tumor AJCC v8 11 160885 -NCIT:C135126 Stage II Ileal Neuroendocrine Tumor AJCC v8 11 160886 -NCIT:C135127 Stage III Ileal Neuroendocrine Tumor AJCC v8 11 160887 -NCIT:C135128 Stage IV Ileal Neuroendocrine Tumor AJCC v8 11 160888 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 10 160889 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 10 160890 -NCIT:C4935 Ileal Neuroendocrine Tumor G1 10 160891 -NCIT:C172664 Small Intestinal Neuroendocrine Tumor G3 9 160892 -NCIT:C172667 Ileal Neuroendocrine Tumor G3 10 160893 -NCIT:C172668 Jejunal Neuroendocrine Tumor G3 10 160894 -NCIT:C172672 Duodenal Neuroendocrine Tumor G3 10 160895 -NCIT:C27450 Small Intestinal Gastrin-Producing Neuroendocrine Tumor 9 160896 -NCIT:C5731 Duodenal Gastrin-Producing Neuroendocrine Tumor 10 160897 -NCIT:C27451 Small Intestinal Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 9 160898 -NCIT:C27452 Small Intestinal L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 9 160899 -NCIT:C27453 Small Intestinal Somatostatin-Producing Neuroendocrine Tumor 9 160900 -NCIT:C27407 Duodenal Somatostatin-Producing Neuroendocrine Tumor 10 160901 -NCIT:C5787 Jejunal Somatostatin-Producing Neuroendocrine Tumor 10 160902 -NCIT:C27455 Small Intestinal VIP-Producing Neuroendocrine Tumor 9 160903 -NCIT:C4638 Small Intestinal Neuroendocrine Tumor G1 9 160904 -NCIT:C4935 Ileal Neuroendocrine Tumor G1 10 160905 -NCIT:C6425 Duodenal Neuroendocrine Tumor G1 10 160906 -NCIT:C6429 Jejunal Neuroendocrine Tumor G1 10 160907 -NCIT:C96067 Small Intestinal Neuroendocrine Tumor G2 9 160908 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 10 160909 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 10 160910 -NCIT:C160442 Duodenal Neuroendocrine Tumor G2 10 160911 -NCIT:C96073 Small Intestinal Composite Gangliocytoma/Neuroma and Neuroendocrine Tumor 9 160912 -NCIT:C96159 Colorectal Neuroendocrine Tumor 8 160913 -NCIT:C135205 Colorectal Neuroendocrine Tumor by AJCC v8 Stage 9 160914 -NCIT:C135206 Stage I Colorectal Neuroendocrine Tumor AJCC v8 10 160915 -NCIT:C135368 Stage I Colon Neuroendocrine Tumor AJCC v8 11 160916 -NCIT:C135528 Stage I Rectal Neuroendocrine Tumor AJCC v8 11 160917 -NCIT:C135207 Stage IIA Colorectal Neuroendocrine Tumor AJCC v8 10 160918 -NCIT:C135369 Stage IIA Colon Neuroendocrine Tumor AJCC v8 11 160919 -NCIT:C135529 Stage IIA Rectal Neuroendocrine Tumor AJCC v8 11 160920 -NCIT:C135208 Stage IIB Colorectal Neuroendocrine Tumor AJCC v8 10 160921 -NCIT:C135370 Stage IIB Colon Neuroendocrine Tumor AJCC v8 11 160922 -NCIT:C135530 Stage IIB Rectal Neuroendocrine Tumor AJCC v8 11 160923 -NCIT:C135209 Stage IIIA Colorectal Neuroendocrine Tumor AJCC v8 10 160924 -NCIT:C135524 Stage IIIA Colon Neuroendocrine Tumor AJCC v8 11 160925 -NCIT:C135531 Stage IIIA Rectal Neuroendocrine Tumor AJCC v8 11 160926 -NCIT:C135210 Stage IIIB Colorectal Neuroendocrine Tumor AJCC v8 10 160927 -NCIT:C135525 Stage IIIB Colon Neuroendocrine Tumor AJCC v8 11 160928 -NCIT:C135532 Stage IIIB Rectal Neuroendocrine Tumor AJCC v8 11 160929 -NCIT:C135211 Stage IV Colorectal Neuroendocrine Tumor AJCC v8 10 160930 -NCIT:C135526 Stage IV Colon Neuroendocrine Tumor AJCC v8 11 160931 -NCIT:C135533 Stage IV Rectal Neuroendocrine Tumor AJCC v8 11 160932 -NCIT:C135214 Colon Neuroendocrine Tumor by AJCC v8 Stage 10 160933 -NCIT:C135368 Stage I Colon Neuroendocrine Tumor AJCC v8 11 160934 -NCIT:C135369 Stage IIA Colon Neuroendocrine Tumor AJCC v8 11 160935 -NCIT:C135370 Stage IIB Colon Neuroendocrine Tumor AJCC v8 11 160936 -NCIT:C135524 Stage IIIA Colon Neuroendocrine Tumor AJCC v8 11 160937 -NCIT:C135525 Stage IIIB Colon Neuroendocrine Tumor AJCC v8 11 160938 -NCIT:C135526 Stage IV Colon Neuroendocrine Tumor AJCC v8 11 160939 -NCIT:C135527 Rectal Neuroendocrine Tumor by AJCC v8 Stage 10 160940 -NCIT:C135528 Stage I Rectal Neuroendocrine Tumor AJCC v8 11 160941 -NCIT:C135529 Stage IIA Rectal Neuroendocrine Tumor AJCC v8 11 160942 -NCIT:C135530 Stage IIB Rectal Neuroendocrine Tumor AJCC v8 11 160943 -NCIT:C135531 Stage IIIA Rectal Neuroendocrine Tumor AJCC v8 11 160944 -NCIT:C135532 Stage IIIB Rectal Neuroendocrine Tumor AJCC v8 11 160945 -NCIT:C135533 Stage IV Rectal Neuroendocrine Tumor AJCC v8 11 160946 -NCIT:C135212 Colon Neuroendocrine Tumor 9 160947 -NCIT:C135214 Colon Neuroendocrine Tumor by AJCC v8 Stage 10 160948 -NCIT:C135368 Stage I Colon Neuroendocrine Tumor AJCC v8 11 160949 -NCIT:C135369 Stage IIA Colon Neuroendocrine Tumor AJCC v8 11 160950 -NCIT:C135370 Stage IIB Colon Neuroendocrine Tumor AJCC v8 11 160951 -NCIT:C135524 Stage IIIA Colon Neuroendocrine Tumor AJCC v8 11 160952 -NCIT:C135525 Stage IIIB Colon Neuroendocrine Tumor AJCC v8 11 160953 -NCIT:C135526 Stage IV Colon Neuroendocrine Tumor AJCC v8 11 160954 -NCIT:C160443 Colon Neuroendocrine Tumor G2 10 160955 -NCIT:C172702 Colon Neuroendocrine Tumor G3 10 160956 -NCIT:C27446 Colon Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 10 160957 -NCIT:C27447 Colon L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 10 160958 -NCIT:C5497 Colon Neuroendocrine Tumor G1 10 160959 -NCIT:C188043 Sigmoid Colon Neuroendocrine Tumor G1 11 160960 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 11 160961 -NCIT:C6426 Transverse Colon Neuroendocrine Tumor G1 11 160962 -NCIT:C6427 Ascending Colon Neuroendocrine Tumor G1 11 160963 -NCIT:C6428 Descending Colon Neuroendocrine Tumor G1 11 160964 -NCIT:C135213 Rectal Neuroendocrine Tumor 9 160965 -NCIT:C135527 Rectal Neuroendocrine Tumor by AJCC v8 Stage 10 160966 -NCIT:C135528 Stage I Rectal Neuroendocrine Tumor AJCC v8 11 160967 -NCIT:C135529 Stage IIA Rectal Neuroendocrine Tumor AJCC v8 11 160968 -NCIT:C135530 Stage IIB Rectal Neuroendocrine Tumor AJCC v8 11 160969 -NCIT:C135531 Stage IIIA Rectal Neuroendocrine Tumor AJCC v8 11 160970 -NCIT:C135532 Stage IIIB Rectal Neuroendocrine Tumor AJCC v8 11 160971 -NCIT:C135533 Stage IV Rectal Neuroendocrine Tumor AJCC v8 11 160972 -NCIT:C160451 Rectal Neuroendocrine Tumor G2 10 160973 -NCIT:C172703 Rectal Neuroendocrine Tumor G3 10 160974 -NCIT:C5547 Rectal Neuroendocrine Tumor G1 10 160975 -NCIT:C172701 Colorectal Neuroendocrine Tumor G3 9 160976 -NCIT:C172702 Colon Neuroendocrine Tumor G3 10 160977 -NCIT:C172703 Rectal Neuroendocrine Tumor G3 10 160978 -NCIT:C96160 Colorectal Neuroendocrine Tumor G1 9 160979 -NCIT:C5497 Colon Neuroendocrine Tumor G1 10 160980 -NCIT:C188043 Sigmoid Colon Neuroendocrine Tumor G1 11 160981 -NCIT:C5501 Cecum Neuroendocrine Tumor G1 11 160982 -NCIT:C6426 Transverse Colon Neuroendocrine Tumor G1 11 160983 -NCIT:C6427 Ascending Colon Neuroendocrine Tumor G1 11 160984 -NCIT:C6428 Descending Colon Neuroendocrine Tumor G1 11 160985 -NCIT:C5547 Rectal Neuroendocrine Tumor G1 10 160986 -NCIT:C96161 Colorectal L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 9 160987 -NCIT:C27447 Colon L-Cell Glucagon-Like Peptide-Producing Neuroendocrine Tumor 10 160988 -NCIT:C96162 Colorectal Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 9 160989 -NCIT:C27446 Colon Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 10 160990 -NCIT:C96163 Colorectal Neuroendocrine Tumor G2 9 160991 -NCIT:C160443 Colon Neuroendocrine Tumor G2 10 160992 -NCIT:C160451 Rectal Neuroendocrine Tumor G2 10 160993 -NCIT:C96165 Intestinal Neuroendocrine Tumor G2 8 160994 -NCIT:C96067 Small Intestinal Neuroendocrine Tumor G2 9 160995 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 10 160996 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 10 160997 -NCIT:C160442 Duodenal Neuroendocrine Tumor G2 10 160998 -NCIT:C96163 Colorectal Neuroendocrine Tumor G2 9 160999 -NCIT:C160443 Colon Neuroendocrine Tumor G2 10 161000 -NCIT:C160451 Rectal Neuroendocrine Tumor G2 10 161001 -NCIT:C96166 Digestive System Neuroendocrine Tumor G2 7 161002 -NCIT:C167328 Midgut Neuroendocrine Tumor G2 8 161003 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 9 161004 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 9 161005 -NCIT:C96423 Appendix Neuroendocrine Tumor G2 9 161006 -NCIT:C172720 Liver Neuroendocrine Tumor G2 8 161007 -NCIT:C179415 Metastatic Digestive System Neuroendocrine Tumor G2 8 161008 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 9 161009 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 9 161010 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 10 161011 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 9 161012 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 10 161013 -NCIT:C187345 Unresectable Digestive System Neuroendocrine Tumor G2 8 161014 -NCIT:C45835 Pancreatic Neuroendocrine Tumor G2 8 161015 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 9 161016 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 10 161017 -NCIT:C45838 Non-Functioning Pancreatic Neuroendocrine Tumor G2 9 161018 -NCIT:C45841 Functioning Pancreatic Neuroendocrine Tumor G2 9 161019 -NCIT:C95617 Esophageal Neuroendocrine Tumor G2 8 161020 -NCIT:C95880 Gastric Neuroendocrine Tumor G2 8 161021 -NCIT:C95983 Ampulla of Vater Neuroendocrine Tumor G2 8 161022 -NCIT:C96165 Intestinal Neuroendocrine Tumor G2 8 161023 -NCIT:C96067 Small Intestinal Neuroendocrine Tumor G2 9 161024 -NCIT:C160437 Jejunal Neuroendocrine Tumor G2 10 161025 -NCIT:C160440 Ileal Neuroendocrine Tumor G2 10 161026 -NCIT:C160442 Duodenal Neuroendocrine Tumor G2 10 161027 -NCIT:C96163 Colorectal Neuroendocrine Tumor G2 9 161028 -NCIT:C160443 Colon Neuroendocrine Tumor G2 10 161029 -NCIT:C160451 Rectal Neuroendocrine Tumor G2 10 161030 -NCIT:C96546 Anal Canal Neuroendocrine Tumor G2 8 161031 -NCIT:C96925 Gallbladder Neuroendocrine Tumor G2 8 161032 -NCIT:C96957 Extrahepatic Bile Duct Neuroendocrine Tumor G2 8 161033 -NCIT:C96540 Anal Canal Neuroendocrine Tumor 7 161034 -NCIT:C96543 Anal Canal Neuroendocrine Tumor G1 8 161035 -NCIT:C96546 Anal Canal Neuroendocrine Tumor G2 8 161036 -NCIT:C96918 Gallbladder Neuroendocrine Tumor 7 161037 -NCIT:C172742 Gallbladder Neuroendocrine Tumor G3 8 161038 -NCIT:C96924 Gallbladder Neuroendocrine Tumor G1 8 161039 -NCIT:C96925 Gallbladder Neuroendocrine Tumor G2 8 161040 -NCIT:C96930 Gallbladder Tubular Carcinoid 8 161041 -NCIT:C96955 Extrahepatic Bile Duct Neuroendocrine Tumor 7 161042 -NCIT:C172743 Extrahepatic Bile Duct Neuroendocrine Tumor G3 8 161043 -NCIT:C5861 Extrahepatic Bile Duct Neuroendocrine Tumor G1 8 161044 -NCIT:C96957 Extrahepatic Bile Duct Neuroendocrine Tumor G2 8 161045 -NCIT:C95405 Digestive System Neuroendocrine Carcinoma 6 161046 -NCIT:C126324 Gastroesophageal Junction Neuroendocrine Carcinoma 7 161047 -NCIT:C126323 Gastroesophageal Junction Large Cell Neuroendocrine Carcinoma 8 161048 -NCIT:C126325 Gastroesophageal Junction Small Cell Neuroendocrine Carcinoma 8 161049 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 8 161050 -NCIT:C154617 Digestive System Large Cell Neuroendocrine Carcinoma 7 161051 -NCIT:C126323 Gastroesophageal Junction Large Cell Neuroendocrine Carcinoma 8 161052 -NCIT:C172722 Liver Large Cell Neuroendocrine Carcinoma 8 161053 -NCIT:C95582 Pancreatic Large Cell Neuroendocrine Carcinoma 8 161054 -NCIT:C95620 Esophageal Large Cell Neuroendocrine Carcinoma 8 161055 -NCIT:C95885 Gastric Large Cell Neuroendocrine Carcinoma 8 161056 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 161057 -NCIT:C95985 Ampulla of Vater Large Cell Neuroendocrine Carcinoma 8 161058 -NCIT:C96065 Small Intestinal Large Cell Neuroendocrine Carcinoma 8 161059 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 161060 -NCIT:C96157 Colorectal Large Cell Neuroendocrine Carcinoma 8 161061 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 9 161062 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 9 161063 -NCIT:C96426 Appendix Large Cell Neuroendocrine Carcinoma 8 161064 -NCIT:C96550 Anal Canal Large Cell Neuroendocrine Carcinoma 8 161065 -NCIT:C96921 Gallbladder Large Cell Neuroendocrine Carcinoma 8 161066 -NCIT:C96958 Extrahepatic Bile Duct Large Cell Neuroendocrine Carcinoma 8 161067 -NCIT:C154641 Digestive System Small Cell Neuroendocrine Carcinoma 7 161068 -NCIT:C126325 Gastroesophageal Junction Small Cell Neuroendocrine Carcinoma 8 161069 -NCIT:C172725 Liver Small Cell Neuroendocrine Carcinoma 8 161070 -NCIT:C27449 Small Intestinal Small Cell Neuroendocrine Carcinoma 8 161071 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 161072 -NCIT:C43555 Appendix Small Cell Neuroendocrine Carcinoma 8 161073 -NCIT:C43587 Colorectal Small Cell Neuroendocrine Carcinoma 8 161074 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 9 161075 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 9 161076 -NCIT:C5845 Extrahepatic Bile Duct Small Cell Neuroendocrine Carcinoma 8 161077 -NCIT:C6655 Ampulla of Vater Small Cell Neuroendocrine Carcinoma 8 161078 -NCIT:C6762 Esophageal Small Cell Neuroendocrine Carcinoma 8 161079 -NCIT:C6763 Gallbladder Small Cell Neuroendocrine Carcinoma 8 161080 -NCIT:C6764 Gastric Small Cell Neuroendocrine Carcinoma 8 161081 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 161082 -NCIT:C95583 Pancreatic Small Cell Neuroendocrine Carcinoma 8 161083 -NCIT:C96551 Anal Canal Small Cell Neuroendocrine Carcinoma 8 161084 -NCIT:C155935 Unresectable Digestive System Neuroendocrine Carcinoma 7 161085 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 8 161086 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 8 161087 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 7 161088 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 8 161089 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 161090 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 161091 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 161092 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 8 161093 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 161094 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 161095 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 161096 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 161097 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 161098 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 161099 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 161100 -NCIT:C155937 Refractory Digestive System Neuroendocrine Carcinoma 7 161101 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 8 161102 -NCIT:C155938 Recurrent Digestive System Neuroendocrine Carcinoma 7 161103 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 8 161104 -NCIT:C3770 Pancreatic Neuroendocrine Carcinoma 7 161105 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 8 161106 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 8 161107 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 8 161108 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 161109 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 8 161110 -NCIT:C95582 Pancreatic Large Cell Neuroendocrine Carcinoma 8 161111 -NCIT:C95583 Pancreatic Small Cell Neuroendocrine Carcinoma 8 161112 -NCIT:C95619 Esophageal Neuroendocrine Carcinoma 7 161113 -NCIT:C6762 Esophageal Small Cell Neuroendocrine Carcinoma 8 161114 -NCIT:C95620 Esophageal Large Cell Neuroendocrine Carcinoma 8 161115 -NCIT:C95884 Gastric Neuroendocrine Carcinoma 7 161116 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 8 161117 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 161118 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 161119 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 161120 -NCIT:C6764 Gastric Small Cell Neuroendocrine Carcinoma 8 161121 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 161122 -NCIT:C95885 Gastric Large Cell Neuroendocrine Carcinoma 8 161123 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 161124 -NCIT:C95984 Ampulla of Vater Neuroendocrine Carcinoma 7 161125 -NCIT:C6655 Ampulla of Vater Small Cell Neuroendocrine Carcinoma 8 161126 -NCIT:C95985 Ampulla of Vater Large Cell Neuroendocrine Carcinoma 8 161127 -NCIT:C96063 Intestinal Neuroendocrine Carcinoma 7 161128 -NCIT:C96064 Small Intestinal Neuroendocrine Carcinoma 8 161129 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 9 161130 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 10 161131 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 11 161132 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 11 161133 -NCIT:C27449 Small Intestinal Small Cell Neuroendocrine Carcinoma 9 161134 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 161135 -NCIT:C96065 Small Intestinal Large Cell Neuroendocrine Carcinoma 9 161136 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 161137 -NCIT:C96156 Colorectal Neuroendocrine Carcinoma 8 161138 -NCIT:C43587 Colorectal Small Cell Neuroendocrine Carcinoma 9 161139 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 10 161140 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 10 161141 -NCIT:C96157 Colorectal Large Cell Neuroendocrine Carcinoma 9 161142 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 10 161143 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 10 161144 -NCIT:C96425 Appendix Neuroendocrine Carcinoma 7 161145 -NCIT:C43555 Appendix Small Cell Neuroendocrine Carcinoma 8 161146 -NCIT:C96426 Appendix Large Cell Neuroendocrine Carcinoma 8 161147 -NCIT:C96549 Anal Canal Neuroendocrine Carcinoma 7 161148 -NCIT:C96550 Anal Canal Large Cell Neuroendocrine Carcinoma 8 161149 -NCIT:C96551 Anal Canal Small Cell Neuroendocrine Carcinoma 8 161150 -NCIT:C96787 Liver Neuroendocrine Carcinoma 7 161151 -NCIT:C172722 Liver Large Cell Neuroendocrine Carcinoma 8 161152 -NCIT:C172725 Liver Small Cell Neuroendocrine Carcinoma 8 161153 -NCIT:C96919 Gallbladder Neuroendocrine Carcinoma 7 161154 -NCIT:C6763 Gallbladder Small Cell Neuroendocrine Carcinoma 8 161155 -NCIT:C96921 Gallbladder Large Cell Neuroendocrine Carcinoma 8 161156 -NCIT:C96956 Extrahepatic Bile Duct Neuroendocrine Carcinoma 7 161157 -NCIT:C5845 Extrahepatic Bile Duct Small Cell Neuroendocrine Carcinoma 8 161158 -NCIT:C96958 Extrahepatic Bile Duct Large Cell Neuroendocrine Carcinoma 8 161159 -NCIT:C95980 Ampulla of Vater Neuroendocrine Neoplasm 6 161160 -NCIT:C95981 Ampulla of Vater Neuroendocrine Tumor 7 161161 -NCIT:C135081 Ampulla of Vater Neuroendocrine Tumor by AJCC v8 Stage 8 161162 -NCIT:C135082 Stage I Ampulla of Vater Neuroendocrine Tumor AJCC v8 9 161163 -NCIT:C135083 Stage II Ampulla of Vater Neuroendocrine Tumor AJCC v8 9 161164 -NCIT:C135084 Stage III Ampulla of Vater Neuroendocrine Tumor AJCC v8 9 161165 -NCIT:C135085 Stage IV Ampulla of Vater Neuroendocrine Tumor AJCC v8 9 161166 -NCIT:C172673 Ampulla of Vater Neuroendocrine Tumor G3 8 161167 -NCIT:C95982 Ampulla of Vater Neuroendocrine Tumor G1 8 161168 -NCIT:C95983 Ampulla of Vater Neuroendocrine Tumor G2 8 161169 -NCIT:C95987 Ampulla of Vater Enterochromaffin Cell Serotonin-Producing Neuroendocrine Tumor 8 161170 -NCIT:C95988 Ampulla of Vater Somatostatin-Producing Neuroendocrine Tumor 8 161171 -NCIT:C95989 Ampulla of Vater Gangliocytic Paraganglioma 8 161172 -NCIT:C95984 Ampulla of Vater Neuroendocrine Carcinoma 7 161173 -NCIT:C6655 Ampulla of Vater Small Cell Neuroendocrine Carcinoma 8 161174 -NCIT:C95985 Ampulla of Vater Large Cell Neuroendocrine Carcinoma 8 161175 -NCIT:C96786 Liver Neuroendocrine Neoplasm 6 161176 -NCIT:C5783 Liver Neuroendocrine Tumor 7 161177 -NCIT:C172719 Liver Neuroendocrine Tumor G1 8 161178 -NCIT:C172720 Liver Neuroendocrine Tumor G2 8 161179 -NCIT:C172721 Liver Neuroendocrine Tumor G3 8 161180 -NCIT:C96787 Liver Neuroendocrine Carcinoma 7 161181 -NCIT:C172722 Liver Large Cell Neuroendocrine Carcinoma 8 161182 -NCIT:C172725 Liver Small Cell Neuroendocrine Carcinoma 8 161183 -NCIT:C96917 Gallbladder Neuroendocrine Neoplasm 6 161184 -NCIT:C96918 Gallbladder Neuroendocrine Tumor 7 161185 -NCIT:C172742 Gallbladder Neuroendocrine Tumor G3 8 161186 -NCIT:C96924 Gallbladder Neuroendocrine Tumor G1 8 161187 -NCIT:C96925 Gallbladder Neuroendocrine Tumor G2 8 161188 -NCIT:C96930 Gallbladder Tubular Carcinoid 8 161189 -NCIT:C96919 Gallbladder Neuroendocrine Carcinoma 7 161190 -NCIT:C6763 Gallbladder Small Cell Neuroendocrine Carcinoma 8 161191 -NCIT:C96921 Gallbladder Large Cell Neuroendocrine Carcinoma 8 161192 -NCIT:C96954 Extrahepatic Bile Duct Neuroendocrine Neoplasm 6 161193 -NCIT:C96955 Extrahepatic Bile Duct Neuroendocrine Tumor 7 161194 -NCIT:C172743 Extrahepatic Bile Duct Neuroendocrine Tumor G3 8 161195 -NCIT:C5861 Extrahepatic Bile Duct Neuroendocrine Tumor G1 8 161196 -NCIT:C96957 Extrahepatic Bile Duct Neuroendocrine Tumor G2 8 161197 -NCIT:C96956 Extrahepatic Bile Duct Neuroendocrine Carcinoma 7 161198 -NCIT:C5845 Extrahepatic Bile Duct Small Cell Neuroendocrine Carcinoma 8 161199 -NCIT:C96958 Extrahepatic Bile Duct Large Cell Neuroendocrine Carcinoma 8 161200 -NCIT:C3308 Paraganglioma 5 161201 -NCIT:C157125 Recurrent Paraganglioma 6 161202 -NCIT:C8047 Recurrent Adrenal Gland Pheochromocytoma 7 161203 -NCIT:C157126 Unresectable Paraganglioma 6 161204 -NCIT:C157128 Unresectable Adrenal Gland Pheochromocytoma 7 161205 -NCIT:C157246 Composite Paraganglioma 6 161206 -NCIT:C190073 Childhood Composite Paraganglioma 7 161207 -NCIT:C48306 Adrenal Gland Composite Pheochromocytoma 7 161208 -NCIT:C92181 Non-Metastatic Adrenal Gland Composite Pheochromocytoma 8 161209 -NCIT:C92184 Metastatic Adrenal Gland Composite Pheochromocytoma 8 161210 -NCIT:C158401 Refractory Paraganglioma 6 161211 -NCIT:C158402 Refractory Adrenal Gland Pheochromocytoma 7 161212 -NCIT:C190074 Childhood Paraganglioma 6 161213 -NCIT:C190071 Childhood Sympathetic Paraganglioma 7 161214 -NCIT:C118822 Childhood Adrenal Gland Pheochromocytoma 8 161215 -NCIT:C190072 Childhood Parasympathetic Paraganglioma 7 161216 -NCIT:C190073 Childhood Composite Paraganglioma 7 161217 -NCIT:C3309 Extra-Adrenal Paraganglioma 6 161218 -NCIT:C161612 Prostate Paraganglioma 7 161219 -NCIT:C162490 Paratesticular Paraganglioma 7 161220 -NCIT:C4217 Parasympathetic Paraganglioma 7 161221 -NCIT:C190072 Childhood Parasympathetic Paraganglioma 8 161222 -NCIT:C2932 Carotid Body Paraganglioma 8 161223 -NCIT:C3574 Metastatic Carotid Body Paraganglioma 9 161224 -NCIT:C79950 Non-Metastatic Carotid Body Paraganglioma 9 161225 -NCIT:C3061 Jugulotympanic Paraganglioma 8 161226 -NCIT:C4623 Metastatic Jugulotympanic Paraganglioma 9 161227 -NCIT:C6085 Middle Ear Paraganglioma 9 161228 -NCIT:C8428 Tympanic Paraganglioma 10 161229 -NCIT:C4218 Aorticopulmonary Paraganglioma 8 161230 -NCIT:C45743 Mediastinal Paraganglioma 8 161231 -NCIT:C6409 Laryngeal Paraganglioma 8 161232 -NCIT:C4219 Metastatic Extra-Adrenal Paraganglioma 7 161233 -NCIT:C3574 Metastatic Carotid Body Paraganglioma 8 161234 -NCIT:C4623 Metastatic Jugulotympanic Paraganglioma 8 161235 -NCIT:C5392 Metastatic Cardiac Paraganglioma 8 161236 -NCIT:C6413 Metastatic Intrathoracic Paravertebral Paraganglioma 8 161237 -NCIT:C6416 Metastatic Bladder Paraganglioma 8 161238 -NCIT:C48576 Extra-Adrenal Sympathetic Paraganglioma 7 161239 -NCIT:C5328 Extra-Adrenal Retroperitoneal Paraganglioma 8 161240 -NCIT:C48317 Superior and Inferior Paraaortic Paraganglioma 9 161241 -NCIT:C6411 Intrathoracic Paravertebral Paraganglioma 8 161242 -NCIT:C6413 Metastatic Intrathoracic Paravertebral Paraganglioma 9 161243 -NCIT:C6414 Bladder Paraganglioma 8 161244 -NCIT:C6416 Metastatic Bladder Paraganglioma 9 161245 -NCIT:C5326 Intra-Abdominal Paraganglioma 7 161246 -NCIT:C95989 Ampulla of Vater Gangliocytic Paraganglioma 8 161247 -NCIT:C5327 Head and Neck Paraganglioma 7 161248 -NCIT:C2932 Carotid Body Paraganglioma 8 161249 -NCIT:C3574 Metastatic Carotid Body Paraganglioma 9 161250 -NCIT:C79950 Non-Metastatic Carotid Body Paraganglioma 9 161251 -NCIT:C3061 Jugulotympanic Paraganglioma 8 161252 -NCIT:C4623 Metastatic Jugulotympanic Paraganglioma 9 161253 -NCIT:C6085 Middle Ear Paraganglioma 9 161254 -NCIT:C8428 Tympanic Paraganglioma 10 161255 -NCIT:C46125 Thyroid Gland Paraganglioma 8 161256 -NCIT:C48316 Nasopharyngeal Paraganglioma 8 161257 -NCIT:C6408 Orbit Paraganglioma 8 161258 -NCIT:C6409 Laryngeal Paraganglioma 8 161259 -NCIT:C8427 Vagal Paraganglioma 8 161260 -NCIT:C5466 Central Nervous System Paraganglioma 7 161261 -NCIT:C155769 Sellar Paraganglioma 8 161262 -NCIT:C48318 Cerebellar Paraganglioma 8 161263 -NCIT:C6410 Cardiac Paraganglioma 7 161264 -NCIT:C5390 Atrial Paraganglioma 8 161265 -NCIT:C5392 Metastatic Cardiac Paraganglioma 8 161266 -NCIT:C7046 Urinary System Paraganglioma 7 161267 -NCIT:C159226 Kidney Paraganglioma 8 161268 -NCIT:C6414 Bladder Paraganglioma 8 161269 -NCIT:C6416 Metastatic Bladder Paraganglioma 9 161270 -NCIT:C4216 Sympathetic Paraganglioma 6 161271 -NCIT:C141128 Adrenal Gland Pheochromocytoma and Sympathetic Paraganglioma by AJCC v8 Stage 7 161272 -NCIT:C141129 Stage I Adrenal Gland Pheochromocytoma and Sympathetic Paraganglioma AJCC v8 8 161273 -NCIT:C141130 Stage II Adrenal Gland Pheochromocytoma and Sympathetic Paraganglioma AJCC v8 8 161274 -NCIT:C141131 Stage III Adrenal Gland Pheochromocytoma and Sympathetic Paraganglioma AJCC v8 8 161275 -NCIT:C141132 Stage IV Adrenal Gland Pheochromocytoma and Sympathetic Paraganglioma AJCC v8 8 161276 -NCIT:C190071 Childhood Sympathetic Paraganglioma 7 161277 -NCIT:C118822 Childhood Adrenal Gland Pheochromocytoma 8 161278 -NCIT:C3326 Adrenal Gland Pheochromocytoma 7 161279 -NCIT:C118822 Childhood Adrenal Gland Pheochromocytoma 8 161280 -NCIT:C157128 Unresectable Adrenal Gland Pheochromocytoma 8 161281 -NCIT:C157248 Hereditary Adrenal Gland Pheochromocytoma 8 161282 -NCIT:C158402 Refractory Adrenal Gland Pheochromocytoma 8 161283 -NCIT:C4220 Metastatic Adrenal Gland Pheochromocytoma 8 161284 -NCIT:C157129 Locally Advanced Adrenal Gland Pheochromocytoma 9 161285 -NCIT:C160853 Advanced Adrenal Gland Pheochromocytoma 9 161286 -NCIT:C92184 Metastatic Adrenal Gland Composite Pheochromocytoma 9 161287 -NCIT:C48305 Non-Metastatic Adrenal Gland Pheochromocytoma 8 161288 -NCIT:C92181 Non-Metastatic Adrenal Gland Composite Pheochromocytoma 9 161289 -NCIT:C48306 Adrenal Gland Composite Pheochromocytoma 8 161290 -NCIT:C92181 Non-Metastatic Adrenal Gland Composite Pheochromocytoma 9 161291 -NCIT:C92184 Metastatic Adrenal Gland Composite Pheochromocytoma 9 161292 -NCIT:C8045 Regional Adrenal Gland Pheochromocytoma 8 161293 -NCIT:C8047 Recurrent Adrenal Gland Pheochromocytoma 8 161294 -NCIT:C48576 Extra-Adrenal Sympathetic Paraganglioma 7 161295 -NCIT:C5328 Extra-Adrenal Retroperitoneal Paraganglioma 8 161296 -NCIT:C48317 Superior and Inferior Paraaortic Paraganglioma 9 161297 -NCIT:C6411 Intrathoracic Paravertebral Paraganglioma 8 161298 -NCIT:C6413 Metastatic Intrathoracic Paravertebral Paraganglioma 9 161299 -NCIT:C6414 Bladder Paraganglioma 8 161300 -NCIT:C6416 Metastatic Bladder Paraganglioma 9 161301 -NCIT:C48314 Non-Metastatic Paraganglioma 6 161302 -NCIT:C48305 Non-Metastatic Adrenal Gland Pheochromocytoma 7 161303 -NCIT:C92181 Non-Metastatic Adrenal Gland Composite Pheochromocytoma 8 161304 -NCIT:C79950 Non-Metastatic Carotid Body Paraganglioma 7 161305 -NCIT:C5329 Hereditary Paraganglioma 6 161306 -NCIT:C157248 Hereditary Adrenal Gland Pheochromocytoma 7 161307 -NCIT:C8559 Metastatic Paraganglioma 6 161308 -NCIT:C133713 Locally Advanced Paraganglioma 7 161309 -NCIT:C157129 Locally Advanced Adrenal Gland Pheochromocytoma 8 161310 -NCIT:C160852 Advanced Paraganglioma 7 161311 -NCIT:C160853 Advanced Adrenal Gland Pheochromocytoma 8 161312 -NCIT:C4219 Metastatic Extra-Adrenal Paraganglioma 7 161313 -NCIT:C3574 Metastatic Carotid Body Paraganglioma 8 161314 -NCIT:C4623 Metastatic Jugulotympanic Paraganglioma 8 161315 -NCIT:C5392 Metastatic Cardiac Paraganglioma 8 161316 -NCIT:C6413 Metastatic Intrathoracic Paravertebral Paraganglioma 8 161317 -NCIT:C6416 Metastatic Bladder Paraganglioma 8 161318 -NCIT:C4220 Metastatic Adrenal Gland Pheochromocytoma 7 161319 -NCIT:C157129 Locally Advanced Adrenal Gland Pheochromocytoma 8 161320 -NCIT:C160853 Advanced Adrenal Gland Pheochromocytoma 8 161321 -NCIT:C92184 Metastatic Adrenal Gland Composite Pheochromocytoma 8 161322 -NCIT:C3773 Neuroendocrine Carcinoma 5 161323 -NCIT:C155869 Metastatic Neuroendocrine Carcinoma 6 161324 -NCIT:C155870 Advanced Neuroendocrine Carcinoma 7 161325 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 161326 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 161327 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 161328 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 161329 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 161330 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 161331 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 161332 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 161333 -NCIT:C165300 Advanced Merkel Cell Carcinoma 8 161334 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 8 161335 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 161336 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 161337 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 161338 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 7 161339 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 8 161340 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 161341 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 161342 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 161343 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 8 161344 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 161345 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 161346 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 161347 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 161348 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 161349 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 161350 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 161351 -NCIT:C158908 Metastatic Large Cell Neuroendocrine Carcinoma 7 161352 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 8 161353 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 8 161354 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 161355 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 8 161356 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 161357 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 161358 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 8 161359 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 161360 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 161361 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 161362 -NCIT:C158909 Locally Advanced Neuroendocrine Carcinoma 7 161363 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 161364 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 161365 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 8 161366 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 161367 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 161368 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 8 161369 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 161370 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 8 161371 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 161372 -NCIT:C158911 Metastatic Small Cell Neuroendocrine Carcinoma 7 161373 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 8 161374 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 9 161375 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 161376 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 8 161377 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 161378 -NCIT:C191852 Metastatic Extrapulmonary Small Cell Neuroendocrine Carcinoma 8 161379 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 161380 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 161381 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 9 161382 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 9 161383 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 7 161384 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 161385 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 161386 -NCIT:C162572 Metastatic Merkel Cell Carcinoma 7 161387 -NCIT:C165300 Advanced Merkel Cell Carcinoma 8 161388 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 8 161389 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 8 161390 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 7 161391 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 161392 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 161393 -NCIT:C163975 Neuroendocrine Carcinoma of Unknown Primary 7 161394 -NCIT:C160980 Head and Neck Neuroendocrine Carcinoma 6 161395 -NCIT:C160981 Head and Neck Small Cell Neuroendocrine Carcinoma 7 161396 -NCIT:C116318 Sinonasal Small Cell Neuroendocrine Carcinoma 8 161397 -NCIT:C35703 Salivary Gland Small Cell Neuroendocrine Carcinoma 8 161398 -NCIT:C5956 Minor Salivary Gland Small Cell Neuroendocrine Carcinoma 9 161399 -NCIT:C6025 Laryngeal Small Cell Neuroendocrine Carcinoma 8 161400 -NCIT:C160982 Head and Neck Large Cell Neuroendocrine Carcinoma 7 161401 -NCIT:C173091 Sinonasal Large Cell Neuroendocrine Carcinoma 8 161402 -NCIT:C173395 Laryngeal Large Cell Neuroendocrine Carcinoma 8 161403 -NCIT:C173650 Salivary Gland Large Cell Neuroendocrine Carcinoma 8 161404 -NCIT:C173089 Sinonasal Neuroendocrine Carcinoma 7 161405 -NCIT:C116318 Sinonasal Small Cell Neuroendocrine Carcinoma 8 161406 -NCIT:C173091 Sinonasal Large Cell Neuroendocrine Carcinoma 8 161407 -NCIT:C173390 Laryngeal Neuroendocrine Carcinoma 7 161408 -NCIT:C173395 Laryngeal Large Cell Neuroendocrine Carcinoma 8 161409 -NCIT:C6025 Laryngeal Small Cell Neuroendocrine Carcinoma 8 161410 -NCIT:C173587 Head and Neck Merkel Cell Carcinoma 7 161411 -NCIT:C173653 Salivary Gland Neuroendocrine Carcinoma 7 161412 -NCIT:C173650 Salivary Gland Large Cell Neuroendocrine Carcinoma 8 161413 -NCIT:C35703 Salivary Gland Small Cell Neuroendocrine Carcinoma 8 161414 -NCIT:C5956 Minor Salivary Gland Small Cell Neuroendocrine Carcinoma 9 161415 -NCIT:C3879 Thyroid Gland Medullary Carcinoma 7 161416 -NCIT:C123905 Childhood Thyroid Gland Medullary Carcinoma 8 161417 -NCIT:C141041 Thyroid Gland Medullary Carcinoma by AJCC v7 Stage 8 161418 -NCIT:C6133 Stage I Thyroid Gland Medullary Carcinoma AJCC v7 9 161419 -NCIT:C6134 Stage II Thyroid Gland Medullary Carcinoma AJCC v7 9 161420 -NCIT:C6135 Stage III Thyroid Gland Medullary Carcinoma AJCC v7 9 161421 -NCIT:C6136 Stage IV Thyroid Gland Medullary Carcinoma AJCC v7 9 161422 -NCIT:C87549 Stage IVA Thyroid Gland Medullary Carcinoma AJCC v7 10 161423 -NCIT:C87550 Stage IVB Thyroid Gland Medullary Carcinoma AJCC v7 10 161424 -NCIT:C87551 Stage IVC Thyroid Gland Medullary Carcinoma AJCC v7 10 161425 -NCIT:C141042 Thyroid Gland Medullary Carcinoma by AJCC v8 Stage 8 161426 -NCIT:C141043 Stage I Thyroid Gland Medullary Carcinoma AJCC v8 9 161427 -NCIT:C141044 Stage II Thyroid Gland Medullary Carcinoma AJCC v8 9 161428 -NCIT:C141045 Stage III Thyroid Gland Medullary Carcinoma AJCC v8 9 161429 -NCIT:C141046 Stage IV Thyroid Gland Medullary Carcinoma AJCC v8 9 161430 -NCIT:C141047 Stage IVA Thyroid Gland Medullary Carcinoma AJCC v8 10 161431 -NCIT:C141048 Stage IVB Thyroid Gland Medullary Carcinoma AJCC v8 10 161432 -NCIT:C141049 Stage IVC Thyroid Gland Medullary Carcinoma AJCC v8 10 161433 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 8 161434 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 9 161435 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 8 161436 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 161437 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 161438 -NCIT:C163974 Unresectable Thyroid Gland Medullary Carcinoma 8 161439 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 9 161440 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 8 161441 -NCIT:C4193 Thyroid Gland Medullary Carcinoma with Amyloid Stroma 8 161442 -NCIT:C46098 Sporadic Thyroid Gland Medullary Carcinoma 8 161443 -NCIT:C46103 Sporadic Thyroid Gland Micromedullary Carcinoma 9 161444 -NCIT:C46099 Hereditary Thyroid Gland Medullary Carcinoma 8 161445 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 9 161446 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 9 161447 -NCIT:C165253 Recurrent Neuroendocrine Carcinoma 6 161448 -NCIT:C115440 Recurrent Merkel Cell Carcinoma 7 161449 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 8 161450 -NCIT:C165740 Locally Recurrent Merkel Cell Carcinoma 8 161451 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 7 161452 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 8 161453 -NCIT:C155938 Recurrent Digestive System Neuroendocrine Carcinoma 7 161454 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 8 161455 -NCIT:C183127 Recurrent Small Cell Neuroendocrine Carcinoma 7 161456 -NCIT:C183128 Recurrent Extrapulmonary Small Cell Neuroendocrine Carcinoma 8 161457 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 9 161458 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 9 161459 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 8 161460 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 9 161461 -NCIT:C165742 Refractory Neuroendocrine Carcinoma 6 161462 -NCIT:C155937 Refractory Digestive System Neuroendocrine Carcinoma 7 161463 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 8 161464 -NCIT:C165741 Refractory Merkel Cell Carcinoma 7 161465 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 7 161466 -NCIT:C191853 Refractory Small Cell Neuroendocrine Carcinoma 7 161467 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 8 161468 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 9 161469 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 9 161470 -NCIT:C191854 Refractory Extrapulmonary Small Cell Neuroendocrine Carcinoma 8 161471 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 9 161472 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 9 161473 -NCIT:C172806 Unresectable Neuroendocrine Carcinoma 6 161474 -NCIT:C155935 Unresectable Digestive System Neuroendocrine Carcinoma 7 161475 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 8 161476 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 8 161477 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 7 161478 -NCIT:C162786 Unresectable Merkel Cell Carcinoma 7 161479 -NCIT:C163974 Unresectable Thyroid Gland Medullary Carcinoma 7 161480 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 8 161481 -NCIT:C172810 Unresectable Large Cell Neuroendocrine Carcinoma 7 161482 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 8 161483 -NCIT:C191855 Unresectable Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 161484 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 8 161485 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 8 161486 -NCIT:C173385 Neuroendocrine Carcinoma, Excluding Head and Neck 6 161487 -NCIT:C128045 Cervical Neuroendocrine Carcinoma 7 161488 -NCIT:C40214 Cervical Large Cell Neuroendocrine Carcinoma 8 161489 -NCIT:C7982 Cervical Small Cell Neuroendocrine Carcinoma 8 161490 -NCIT:C128073 Vaginal Neuroendocrine Carcinoma 7 161491 -NCIT:C128075 Vaginal Large Cell Neuroendocrine Carcinoma 8 161492 -NCIT:C40263 Vaginal Small Cell Neuroendocrine Carcinoma 8 161493 -NCIT:C128243 Vulvar Neuroendocrine Carcinoma 7 161494 -NCIT:C128244 Vulvar Small Cell Neuroendocrine Carcinoma 8 161495 -NCIT:C40298 Bartholin Gland Small Cell Neuroendocrine Carcinoma 9 161496 -NCIT:C128245 Vulvar Large Cell Neuroendocrine Carcinoma 8 161497 -NCIT:C128247 Vulvar Merkel Cell Carcinoma 8 161498 -NCIT:C157759 Bladder Neuroendocrine Carcinoma 7 161499 -NCIT:C157760 Bladder Large Cell Neuroendocrine Carcinoma 8 161500 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 9 161501 -NCIT:C9461 Bladder Small Cell Neuroendocrine Carcinoma 8 161502 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 9 161503 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 9 161504 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 9 161505 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 9 161506 -NCIT:C158912 Prostate Neuroendocrine Carcinoma 7 161507 -NCIT:C158650 Prostate Large Cell Neuroendocrine Carcinoma 8 161508 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 8 161509 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 9 161510 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 9 161511 -NCIT:C6766 Prostate Small Cell Neuroendocrine Carcinoma 8 161512 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 9 161513 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 9 161514 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 9 161515 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 9 161516 -NCIT:C159224 Kidney Neuroendocrine Carcinoma 7 161517 -NCIT:C116317 Kidney Small Cell Neuroendocrine Carcinoma 8 161518 -NCIT:C159225 Kidney Large Cell Neuroendocrine Carcinoma 8 161519 -NCIT:C175581 Breast Neuroendocrine Carcinoma 7 161520 -NCIT:C40356 Breast Large Cell Neuroendocrine Carcinoma 8 161521 -NCIT:C6760 Breast Small Cell Neuroendocrine Carcinoma 8 161522 -NCIT:C45569 Lung Neuroendocrine Carcinoma 7 161523 -NCIT:C4917 Lung Small Cell Carcinoma 8 161524 -NCIT:C118815 Childhood Lung Small Cell Carcinoma 9 161525 -NCIT:C136496 Lung Small Cell Carcinoma by AJCC v7 Stage 9 161526 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 10 161527 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 11 161528 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 11 161529 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 10 161530 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 11 161531 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 11 161532 -NCIT:C6679 Stage III Lung Small Cell Carcinoma AJCC v7 10 161533 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 11 161534 -NCIT:C6681 Stage IIIB Lung Small Cell Carcinoma AJCC v7 11 161535 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 12 161536 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 12 161537 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 10 161538 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 9 161539 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 10 161540 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 10 161541 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 9 161542 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 10 161543 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 10 161544 -NCIT:C158495 Platinum-Sensitive Lung Small Cell Carcinoma 9 161545 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 9 161546 -NCIT:C188753 Lung Small Cell Carcinoma Neuroendocrine Subtype 9 161547 -NCIT:C188754 Lung Small Cell Carcinoma, Neuroendocrine-High Subtype 10 161548 -NCIT:C188755 Lung Small Cell Carcinoma, Neuroendocrine-Low Subtype 10 161549 -NCIT:C188756 Lung Small Cell Carcinoma Molecular Subtypes 9 161550 -NCIT:C188761 Lung Small Cell Carcinoma, A Subtype 10 161551 -NCIT:C188762 Lung Small Cell Carcinoma, N Subtype 10 161552 -NCIT:C188763 Lung Small Cell Carcinoma, P Subtype 10 161553 -NCIT:C188765 Lung Small Cell Carcinoma, I Subtype 10 161554 -NCIT:C188766 Lung Small Cell Carcinoma, Y Subtype 10 161555 -NCIT:C6683 Occult Lung Small Cell Carcinoma 9 161556 -NCIT:C7853 Limited Stage Lung Small Cell Carcinoma 9 161557 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 10 161558 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 10 161559 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 11 161560 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 11 161561 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 10 161562 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 11 161563 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 11 161564 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 10 161565 -NCIT:C9049 Extensive Stage Lung Small Cell Carcinoma 9 161566 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 10 161567 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 10 161568 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 10 161569 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 10 161570 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 9 161571 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 10 161572 -NCIT:C9137 Combined Lung Small Cell Carcinoma 9 161573 -NCIT:C9379 Combined Lung Small Cell Carcinoma and Lung Adenocarcinoma 10 161574 -NCIT:C9423 Combined Lung Small Cell and Squamous Cell Carcinoma 10 161575 -NCIT:C5672 Lung Large Cell Neuroendocrine Carcinoma 8 161576 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 9 161577 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 161578 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 161579 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 9 161580 -NCIT:C7267 Combined Lung Large Cell Neuroendocrine Carcinoma 9 161581 -NCIT:C7591 Combined Lung Carcinoma 8 161582 -NCIT:C7267 Combined Lung Large Cell Neuroendocrine Carcinoma 9 161583 -NCIT:C9137 Combined Lung Small Cell Carcinoma 9 161584 -NCIT:C9379 Combined Lung Small Cell Carcinoma and Lung Adenocarcinoma 10 161585 -NCIT:C9423 Combined Lung Small Cell and Squamous Cell Carcinoma 10 161586 -NCIT:C9231 Merkel Cell Carcinoma 7 161587 -NCIT:C115440 Recurrent Merkel Cell Carcinoma 8 161588 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 9 161589 -NCIT:C165740 Locally Recurrent Merkel Cell Carcinoma 9 161590 -NCIT:C128247 Vulvar Merkel Cell Carcinoma 8 161591 -NCIT:C136869 Merkel Cell Carcinoma by AJCC v7 Stage 8 161592 -NCIT:C85887 Stage 0 Merkel Cell Carcinoma AJCC v7 9 161593 -NCIT:C85889 Stage I Merkel Cell Carcinoma AJCC v7 9 161594 -NCIT:C85890 Stage IA Merkel Cell Carcinoma AJCC v7 10 161595 -NCIT:C85892 Stage IB Merkel Cell Carcinoma AJCC v7 10 161596 -NCIT:C85893 Stage II Merkel Cell Carcinoma AJCC v7 9 161597 -NCIT:C85894 Stage IIA Merkel Cell Carcinoma AJCC v7 10 161598 -NCIT:C85895 Stage IIB Merkel Cell Carcinoma AJCC v7 10 161599 -NCIT:C85896 Stage IIC Merkel Cell Carcinoma AJCC v7 10 161600 -NCIT:C85897 Stage III Merkel Cell Carcinoma AJCC v7 9 161601 -NCIT:C85898 Stage IIIA Merkel Cell Carcinoma AJCC v7 10 161602 -NCIT:C85899 Stage IIIB Merkel Cell Carcinoma AJCC v7 10 161603 -NCIT:C85900 Stage IV Merkel Cell Carcinoma AJCC v7 9 161604 -NCIT:C136870 Merkel Cell Carcinoma by AJCC v8 Stage 8 161605 -NCIT:C136871 Merkel Cell Carcinoma by AJCC v8 Clinical Stage 9 161606 -NCIT:C136872 Clinical Stage 0 Merkel Cell Carcinoma AJCC v8 10 161607 -NCIT:C136873 Clinical Stage I Merkel Cell Carcinoma AJCC v8 10 161608 -NCIT:C136874 Clinical Stage II Merkel Cell Carcinoma AJCC v8 10 161609 -NCIT:C136875 Clinical Stage IIA Merkel Cell Carcinoma AJCC v8 11 161610 -NCIT:C136876 Clinical Stage IIB Merkel Cell Carcinoma AJCC v8 11 161611 -NCIT:C136877 Clinical Stage III Merkel Cell Carcinoma AJCC v8 10 161612 -NCIT:C136878 Clinical Stage IV Merkel Cell Carcinoma AJCC v8 10 161613 -NCIT:C136880 Merkel Cell Carcinoma by AJCC v8 Pathologic Stage 9 161614 -NCIT:C136881 Pathologic Stage 0 Merkel Cell Carcinoma AJCC v8 10 161615 -NCIT:C136882 Pathologic Stage I Merkel Cell Carcinoma AJCC v8 10 161616 -NCIT:C136883 Pathologic Stage II Merkel Cell Carcinoma AJCC v8 10 161617 -NCIT:C136884 Pathologic Stage IIA Merkel Cell Carcinoma AJCC v8 11 161618 -NCIT:C136885 Pathologic Stage IIB Merkel Cell Carcinoma AJCC v8 11 161619 -NCIT:C136886 Pathologic Stage III Merkel Cell Carcinoma AJCC v8 10 161620 -NCIT:C136887 Pathologic Stage IIIA Merkel Cell Carcinoma AJCC v8 11 161621 -NCIT:C136888 Pathologic Stage IIIB Merkel Cell Carcinoma AJCC v8 11 161622 -NCIT:C136889 Pathologic Stage IV Merkel Cell Carcinoma AJCC v8 10 161623 -NCIT:C162572 Metastatic Merkel Cell Carcinoma 8 161624 -NCIT:C165300 Advanced Merkel Cell Carcinoma 9 161625 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 9 161626 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 9 161627 -NCIT:C162786 Unresectable Merkel Cell Carcinoma 8 161628 -NCIT:C165741 Refractory Merkel Cell Carcinoma 8 161629 -NCIT:C95405 Digestive System Neuroendocrine Carcinoma 7 161630 -NCIT:C126324 Gastroesophageal Junction Neuroendocrine Carcinoma 8 161631 -NCIT:C126323 Gastroesophageal Junction Large Cell Neuroendocrine Carcinoma 9 161632 -NCIT:C126325 Gastroesophageal Junction Small Cell Neuroendocrine Carcinoma 9 161633 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 9 161634 -NCIT:C154617 Digestive System Large Cell Neuroendocrine Carcinoma 8 161635 -NCIT:C126323 Gastroesophageal Junction Large Cell Neuroendocrine Carcinoma 9 161636 -NCIT:C172722 Liver Large Cell Neuroendocrine Carcinoma 9 161637 -NCIT:C95582 Pancreatic Large Cell Neuroendocrine Carcinoma 9 161638 -NCIT:C95620 Esophageal Large Cell Neuroendocrine Carcinoma 9 161639 -NCIT:C95885 Gastric Large Cell Neuroendocrine Carcinoma 9 161640 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 161641 -NCIT:C95985 Ampulla of Vater Large Cell Neuroendocrine Carcinoma 9 161642 -NCIT:C96065 Small Intestinal Large Cell Neuroendocrine Carcinoma 9 161643 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 161644 -NCIT:C96157 Colorectal Large Cell Neuroendocrine Carcinoma 9 161645 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 10 161646 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 10 161647 -NCIT:C96426 Appendix Large Cell Neuroendocrine Carcinoma 9 161648 -NCIT:C96550 Anal Canal Large Cell Neuroendocrine Carcinoma 9 161649 -NCIT:C96921 Gallbladder Large Cell Neuroendocrine Carcinoma 9 161650 -NCIT:C96958 Extrahepatic Bile Duct Large Cell Neuroendocrine Carcinoma 9 161651 -NCIT:C154641 Digestive System Small Cell Neuroendocrine Carcinoma 8 161652 -NCIT:C126325 Gastroesophageal Junction Small Cell Neuroendocrine Carcinoma 9 161653 -NCIT:C172725 Liver Small Cell Neuroendocrine Carcinoma 9 161654 -NCIT:C27449 Small Intestinal Small Cell Neuroendocrine Carcinoma 9 161655 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 161656 -NCIT:C43555 Appendix Small Cell Neuroendocrine Carcinoma 9 161657 -NCIT:C43587 Colorectal Small Cell Neuroendocrine Carcinoma 9 161658 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 10 161659 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 10 161660 -NCIT:C5845 Extrahepatic Bile Duct Small Cell Neuroendocrine Carcinoma 9 161661 -NCIT:C6655 Ampulla of Vater Small Cell Neuroendocrine Carcinoma 9 161662 -NCIT:C6762 Esophageal Small Cell Neuroendocrine Carcinoma 9 161663 -NCIT:C6763 Gallbladder Small Cell Neuroendocrine Carcinoma 9 161664 -NCIT:C6764 Gastric Small Cell Neuroendocrine Carcinoma 9 161665 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 161666 -NCIT:C95583 Pancreatic Small Cell Neuroendocrine Carcinoma 9 161667 -NCIT:C96551 Anal Canal Small Cell Neuroendocrine Carcinoma 9 161668 -NCIT:C155935 Unresectable Digestive System Neuroendocrine Carcinoma 8 161669 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 9 161670 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 9 161671 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 8 161672 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 9 161673 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 10 161674 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 9 161675 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 10 161676 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 9 161677 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 10 161678 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 11 161679 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 11 161680 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 9 161681 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 10 161682 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 11 161683 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 11 161684 -NCIT:C155937 Refractory Digestive System Neuroendocrine Carcinoma 8 161685 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 9 161686 -NCIT:C155938 Recurrent Digestive System Neuroendocrine Carcinoma 8 161687 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 9 161688 -NCIT:C3770 Pancreatic Neuroendocrine Carcinoma 8 161689 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 9 161690 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 9 161691 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 9 161692 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 10 161693 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 9 161694 -NCIT:C95582 Pancreatic Large Cell Neuroendocrine Carcinoma 9 161695 -NCIT:C95583 Pancreatic Small Cell Neuroendocrine Carcinoma 9 161696 -NCIT:C95619 Esophageal Neuroendocrine Carcinoma 8 161697 -NCIT:C6762 Esophageal Small Cell Neuroendocrine Carcinoma 9 161698 -NCIT:C95620 Esophageal Large Cell Neuroendocrine Carcinoma 9 161699 -NCIT:C95884 Gastric Neuroendocrine Carcinoma 8 161700 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 9 161701 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 10 161702 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 11 161703 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 11 161704 -NCIT:C6764 Gastric Small Cell Neuroendocrine Carcinoma 9 161705 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 161706 -NCIT:C95885 Gastric Large Cell Neuroendocrine Carcinoma 9 161707 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 161708 -NCIT:C95984 Ampulla of Vater Neuroendocrine Carcinoma 8 161709 -NCIT:C6655 Ampulla of Vater Small Cell Neuroendocrine Carcinoma 9 161710 -NCIT:C95985 Ampulla of Vater Large Cell Neuroendocrine Carcinoma 9 161711 -NCIT:C96063 Intestinal Neuroendocrine Carcinoma 8 161712 -NCIT:C96064 Small Intestinal Neuroendocrine Carcinoma 9 161713 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 10 161714 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 11 161715 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 12 161716 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 12 161717 -NCIT:C27449 Small Intestinal Small Cell Neuroendocrine Carcinoma 10 161718 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 11 161719 -NCIT:C96065 Small Intestinal Large Cell Neuroendocrine Carcinoma 10 161720 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 11 161721 -NCIT:C96156 Colorectal Neuroendocrine Carcinoma 9 161722 -NCIT:C43587 Colorectal Small Cell Neuroendocrine Carcinoma 10 161723 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 11 161724 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 11 161725 -NCIT:C96157 Colorectal Large Cell Neuroendocrine Carcinoma 10 161726 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 11 161727 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 11 161728 -NCIT:C96425 Appendix Neuroendocrine Carcinoma 8 161729 -NCIT:C43555 Appendix Small Cell Neuroendocrine Carcinoma 9 161730 -NCIT:C96426 Appendix Large Cell Neuroendocrine Carcinoma 9 161731 -NCIT:C96549 Anal Canal Neuroendocrine Carcinoma 8 161732 -NCIT:C96550 Anal Canal Large Cell Neuroendocrine Carcinoma 9 161733 -NCIT:C96551 Anal Canal Small Cell Neuroendocrine Carcinoma 9 161734 -NCIT:C96787 Liver Neuroendocrine Carcinoma 8 161735 -NCIT:C172722 Liver Large Cell Neuroendocrine Carcinoma 9 161736 -NCIT:C172725 Liver Small Cell Neuroendocrine Carcinoma 9 161737 -NCIT:C96919 Gallbladder Neuroendocrine Carcinoma 8 161738 -NCIT:C6763 Gallbladder Small Cell Neuroendocrine Carcinoma 9 161739 -NCIT:C96921 Gallbladder Large Cell Neuroendocrine Carcinoma 9 161740 -NCIT:C96956 Extrahepatic Bile Duct Neuroendocrine Carcinoma 8 161741 -NCIT:C5845 Extrahepatic Bile Duct Small Cell Neuroendocrine Carcinoma 9 161742 -NCIT:C96958 Extrahepatic Bile Duct Large Cell Neuroendocrine Carcinoma 9 161743 -NCIT:C173586 Extracutaneous Merkel Cell Carcinoma 6 161744 -NCIT:C173587 Head and Neck Merkel Cell Carcinoma 7 161745 -NCIT:C3915 Small Cell Neuroendocrine Carcinoma 6 161746 -NCIT:C156457 Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 161747 -NCIT:C116317 Kidney Small Cell Neuroendocrine Carcinoma 8 161748 -NCIT:C128244 Vulvar Small Cell Neuroendocrine Carcinoma 8 161749 -NCIT:C40298 Bartholin Gland Small Cell Neuroendocrine Carcinoma 9 161750 -NCIT:C154641 Digestive System Small Cell Neuroendocrine Carcinoma 8 161751 -NCIT:C126325 Gastroesophageal Junction Small Cell Neuroendocrine Carcinoma 9 161752 -NCIT:C172725 Liver Small Cell Neuroendocrine Carcinoma 9 161753 -NCIT:C27449 Small Intestinal Small Cell Neuroendocrine Carcinoma 9 161754 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 161755 -NCIT:C43555 Appendix Small Cell Neuroendocrine Carcinoma 9 161756 -NCIT:C43587 Colorectal Small Cell Neuroendocrine Carcinoma 9 161757 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 10 161758 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 10 161759 -NCIT:C5845 Extrahepatic Bile Duct Small Cell Neuroendocrine Carcinoma 9 161760 -NCIT:C6655 Ampulla of Vater Small Cell Neuroendocrine Carcinoma 9 161761 -NCIT:C6762 Esophageal Small Cell Neuroendocrine Carcinoma 9 161762 -NCIT:C6763 Gallbladder Small Cell Neuroendocrine Carcinoma 9 161763 -NCIT:C6764 Gastric Small Cell Neuroendocrine Carcinoma 9 161764 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 161765 -NCIT:C95583 Pancreatic Small Cell Neuroendocrine Carcinoma 9 161766 -NCIT:C96551 Anal Canal Small Cell Neuroendocrine Carcinoma 9 161767 -NCIT:C160981 Head and Neck Small Cell Neuroendocrine Carcinoma 8 161768 -NCIT:C116318 Sinonasal Small Cell Neuroendocrine Carcinoma 9 161769 -NCIT:C35703 Salivary Gland Small Cell Neuroendocrine Carcinoma 9 161770 -NCIT:C5956 Minor Salivary Gland Small Cell Neuroendocrine Carcinoma 10 161771 -NCIT:C6025 Laryngeal Small Cell Neuroendocrine Carcinoma 9 161772 -NCIT:C183128 Recurrent Extrapulmonary Small Cell Neuroendocrine Carcinoma 8 161773 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 9 161774 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 9 161775 -NCIT:C191852 Metastatic Extrapulmonary Small Cell Neuroendocrine Carcinoma 8 161776 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 161777 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 161778 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 9 161779 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 9 161780 -NCIT:C191854 Refractory Extrapulmonary Small Cell Neuroendocrine Carcinoma 8 161781 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 9 161782 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 9 161783 -NCIT:C191855 Unresectable Extrapulmonary Small Cell Neuroendocrine Carcinoma 8 161784 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 9 161785 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 9 161786 -NCIT:C40155 Endometrial Small Cell Neuroendocrine Carcinoma 8 161787 -NCIT:C40263 Vaginal Small Cell Neuroendocrine Carcinoma 8 161788 -NCIT:C40440 Ovarian Small Cell Carcinoma, Pulmonary-Type 8 161789 -NCIT:C6176 Ureter Small Cell Neuroendocrine Carcinoma 8 161790 -NCIT:C6460 Thymic Small Cell Neuroendocrine Carcinoma 8 161791 -NCIT:C6760 Breast Small Cell Neuroendocrine Carcinoma 8 161792 -NCIT:C6766 Prostate Small Cell Neuroendocrine Carcinoma 8 161793 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 9 161794 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 9 161795 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 9 161796 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 9 161797 -NCIT:C7982 Cervical Small Cell Neuroendocrine Carcinoma 8 161798 -NCIT:C9461 Bladder Small Cell Neuroendocrine Carcinoma 8 161799 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 9 161800 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 9 161801 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 9 161802 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 9 161803 -NCIT:C158911 Metastatic Small Cell Neuroendocrine Carcinoma 7 161804 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 8 161805 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 9 161806 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 161807 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 8 161808 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 161809 -NCIT:C191852 Metastatic Extrapulmonary Small Cell Neuroendocrine Carcinoma 8 161810 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 161811 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 161812 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 9 161813 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 9 161814 -NCIT:C183127 Recurrent Small Cell Neuroendocrine Carcinoma 7 161815 -NCIT:C183128 Recurrent Extrapulmonary Small Cell Neuroendocrine Carcinoma 8 161816 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 9 161817 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 9 161818 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 8 161819 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 9 161820 -NCIT:C191853 Refractory Small Cell Neuroendocrine Carcinoma 7 161821 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 8 161822 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 9 161823 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 9 161824 -NCIT:C191854 Refractory Extrapulmonary Small Cell Neuroendocrine Carcinoma 8 161825 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 9 161826 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 9 161827 -NCIT:C4917 Lung Small Cell Carcinoma 7 161828 -NCIT:C118815 Childhood Lung Small Cell Carcinoma 8 161829 -NCIT:C136496 Lung Small Cell Carcinoma by AJCC v7 Stage 8 161830 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 9 161831 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 10 161832 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 10 161833 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 9 161834 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 10 161835 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 10 161836 -NCIT:C6679 Stage III Lung Small Cell Carcinoma AJCC v7 9 161837 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 10 161838 -NCIT:C6681 Stage IIIB Lung Small Cell Carcinoma AJCC v7 10 161839 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 11 161840 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 11 161841 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 9 161842 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 8 161843 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 9 161844 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 9 161845 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 8 161846 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 9 161847 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 161848 -NCIT:C158495 Platinum-Sensitive Lung Small Cell Carcinoma 8 161849 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 8 161850 -NCIT:C188753 Lung Small Cell Carcinoma Neuroendocrine Subtype 8 161851 -NCIT:C188754 Lung Small Cell Carcinoma, Neuroendocrine-High Subtype 9 161852 -NCIT:C188755 Lung Small Cell Carcinoma, Neuroendocrine-Low Subtype 9 161853 -NCIT:C188756 Lung Small Cell Carcinoma Molecular Subtypes 8 161854 -NCIT:C188761 Lung Small Cell Carcinoma, A Subtype 9 161855 -NCIT:C188762 Lung Small Cell Carcinoma, N Subtype 9 161856 -NCIT:C188763 Lung Small Cell Carcinoma, P Subtype 9 161857 -NCIT:C188765 Lung Small Cell Carcinoma, I Subtype 9 161858 -NCIT:C188766 Lung Small Cell Carcinoma, Y Subtype 9 161859 -NCIT:C6683 Occult Lung Small Cell Carcinoma 8 161860 -NCIT:C7853 Limited Stage Lung Small Cell Carcinoma 8 161861 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 9 161862 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 9 161863 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 10 161864 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 10 161865 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 9 161866 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 10 161867 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 10 161868 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 9 161869 -NCIT:C9049 Extensive Stage Lung Small Cell Carcinoma 8 161870 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 9 161871 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 9 161872 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 9 161873 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 9 161874 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 8 161875 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 9 161876 -NCIT:C9137 Combined Lung Small Cell Carcinoma 8 161877 -NCIT:C9379 Combined Lung Small Cell Carcinoma and Lung Adenocarcinoma 9 161878 -NCIT:C9423 Combined Lung Small Cell and Squamous Cell Carcinoma 9 161879 -NCIT:C6875 Large Cell Neuroendocrine Carcinoma 6 161880 -NCIT:C126772 Endometrial Large Cell Neuroendocrine Carcinoma 7 161881 -NCIT:C128075 Vaginal Large Cell Neuroendocrine Carcinoma 7 161882 -NCIT:C128245 Vulvar Large Cell Neuroendocrine Carcinoma 7 161883 -NCIT:C154617 Digestive System Large Cell Neuroendocrine Carcinoma 7 161884 -NCIT:C126323 Gastroesophageal Junction Large Cell Neuroendocrine Carcinoma 8 161885 -NCIT:C172722 Liver Large Cell Neuroendocrine Carcinoma 8 161886 -NCIT:C95582 Pancreatic Large Cell Neuroendocrine Carcinoma 8 161887 -NCIT:C95620 Esophageal Large Cell Neuroendocrine Carcinoma 8 161888 -NCIT:C95885 Gastric Large Cell Neuroendocrine Carcinoma 8 161889 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 161890 -NCIT:C95985 Ampulla of Vater Large Cell Neuroendocrine Carcinoma 8 161891 -NCIT:C96065 Small Intestinal Large Cell Neuroendocrine Carcinoma 8 161892 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 161893 -NCIT:C96157 Colorectal Large Cell Neuroendocrine Carcinoma 8 161894 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 9 161895 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 9 161896 -NCIT:C96426 Appendix Large Cell Neuroendocrine Carcinoma 8 161897 -NCIT:C96550 Anal Canal Large Cell Neuroendocrine Carcinoma 8 161898 -NCIT:C96921 Gallbladder Large Cell Neuroendocrine Carcinoma 8 161899 -NCIT:C96958 Extrahepatic Bile Duct Large Cell Neuroendocrine Carcinoma 8 161900 -NCIT:C157760 Bladder Large Cell Neuroendocrine Carcinoma 7 161901 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 8 161902 -NCIT:C158650 Prostate Large Cell Neuroendocrine Carcinoma 7 161903 -NCIT:C158908 Metastatic Large Cell Neuroendocrine Carcinoma 7 161904 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 8 161905 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 8 161906 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 161907 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 8 161908 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 161909 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 161910 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 8 161911 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 161912 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 161913 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 161914 -NCIT:C159225 Kidney Large Cell Neuroendocrine Carcinoma 7 161915 -NCIT:C160982 Head and Neck Large Cell Neuroendocrine Carcinoma 7 161916 -NCIT:C173091 Sinonasal Large Cell Neuroendocrine Carcinoma 8 161917 -NCIT:C173395 Laryngeal Large Cell Neuroendocrine Carcinoma 8 161918 -NCIT:C173650 Salivary Gland Large Cell Neuroendocrine Carcinoma 8 161919 -NCIT:C172810 Unresectable Large Cell Neuroendocrine Carcinoma 7 161920 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 8 161921 -NCIT:C40214 Cervical Large Cell Neuroendocrine Carcinoma 7 161922 -NCIT:C40356 Breast Large Cell Neuroendocrine Carcinoma 7 161923 -NCIT:C5238 Ovarian Large Cell Neuroendocrine Carcinoma 7 161924 -NCIT:C5672 Lung Large Cell Neuroendocrine Carcinoma 7 161925 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 8 161926 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 161927 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 161928 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 8 161929 -NCIT:C7267 Combined Lung Large Cell Neuroendocrine Carcinoma 8 161930 -NCIT:C6461 Thymic Large Cell Neuroendocrine Carcinoma 7 161931 -NCIT:C5169 Breast Neuroendocrine Neoplasm 5 161932 -NCIT:C156493 Metastatic Breast Neuroendocrine Neoplasm 6 161933 -NCIT:C5171 Metastatic Breast Neuroendocrine Tumor G1 7 161934 -NCIT:C175581 Breast Neuroendocrine Carcinoma 6 161935 -NCIT:C40356 Breast Large Cell Neuroendocrine Carcinoma 7 161936 -NCIT:C6760 Breast Small Cell Neuroendocrine Carcinoma 7 161937 -NCIT:C175610 Breast Neuroendocrine Tumor 6 161938 -NCIT:C175611 Breast Neuroendocrine Tumor G2 7 161939 -NCIT:C5170 Breast Neuroendocrine Tumor G1 7 161940 -NCIT:C5171 Metastatic Breast Neuroendocrine Tumor G1 8 161941 -NCIT:C5237 Ovarian Neuroendocrine Neoplasm 5 161942 -NCIT:C171032 Ovarian Neuroendocrine Carcinoma 6 161943 -NCIT:C40440 Ovarian Small Cell Carcinoma, Pulmonary-Type 7 161944 -NCIT:C5238 Ovarian Large Cell Neuroendocrine Carcinoma 7 161945 -NCIT:C5229 Ovarian Carcinoid Tumor 6 161946 -NCIT:C188015 Ovarian Teratoma with Carcinoid Tumor 7 161947 -NCIT:C4292 Strumal Carcinoid 8 161948 -NCIT:C40013 Ovarian Insular Carcinoid Tumor 7 161949 -NCIT:C40014 Ovarian Trabecular Carcinoid Tumor 7 161950 -NCIT:C40015 Ovarian Mucinous Carcinoid Tumor 7 161951 -NCIT:C5545 Prostate Neuroendocrine Neoplasm 5 161952 -NCIT:C158912 Prostate Neuroendocrine Carcinoma 6 161953 -NCIT:C158650 Prostate Large Cell Neuroendocrine Carcinoma 7 161954 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 7 161955 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 161956 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 161957 -NCIT:C6766 Prostate Small Cell Neuroendocrine Carcinoma 7 161958 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 161959 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 8 161960 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 8 161961 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 8 161962 -NCIT:C161612 Prostate Paraganglioma 6 161963 -NCIT:C39903 Prostate Adenocarcinoma with Neuroendocrine Differentiation 6 161964 -NCIT:C158656 Usual Prostate Adenocarcinoma with Neuroendocrine Differentiation 7 161965 -NCIT:C158664 Prostate Adenocarcinoma with Paneth Cell-Like Neuroendocrine Differentiation 7 161966 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 7 161967 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 8 161968 -NCIT:C5024 Prostate Neuroendocrine Tumor 6 161969 -NCIT:C5670 Lung Neuroendocrine Neoplasm 5 161970 -NCIT:C157602 Metastatic Lung Neuroendocrine Neoplasm 6 161971 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 7 161972 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 161973 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 161974 -NCIT:C165446 Advanced Lung Neuroendocrine Neoplasm 7 161975 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 161976 -NCIT:C177245 Advanced Lung Carcinoid Tumor 8 161977 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 161978 -NCIT:C176715 Locally Advanced Lung Neuroendocrine Neoplasm 7 161979 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 161980 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 161981 -NCIT:C177243 Metastatic Lung Carcinoid Tumor 7 161982 -NCIT:C177245 Advanced Lung Carcinoid Tumor 8 161983 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 7 161984 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 161985 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 161986 -NCIT:C165454 Unresectable Lung Neuroendocrine Neoplasm 6 161987 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 7 161988 -NCIT:C177246 Unresectable Lung Carcinoid Tumor 7 161989 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 7 161990 -NCIT:C176711 Recurrent Lung Neuroendocrine Neoplasm 6 161991 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 7 161992 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 8 161993 -NCIT:C4038 Lung Carcinoid Tumor 6 161994 -NCIT:C176705 Functioning Lung Carcinoid Tumor 7 161995 -NCIT:C176706 Non-Functioning Lung Carcinoid Tumor 7 161996 -NCIT:C177243 Metastatic Lung Carcinoid Tumor 7 161997 -NCIT:C177245 Advanced Lung Carcinoid Tumor 8 161998 -NCIT:C177246 Unresectable Lung Carcinoid Tumor 7 161999 -NCIT:C45550 Lung Typical Carcinoid Tumor 7 162000 -NCIT:C45551 Lung Atypical Carcinoid Tumor 7 162001 -NCIT:C45569 Lung Neuroendocrine Carcinoma 6 162002 -NCIT:C4917 Lung Small Cell Carcinoma 7 162003 -NCIT:C118815 Childhood Lung Small Cell Carcinoma 8 162004 -NCIT:C136496 Lung Small Cell Carcinoma by AJCC v7 Stage 8 162005 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 9 162006 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 10 162007 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 10 162008 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 9 162009 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 10 162010 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 10 162011 -NCIT:C6679 Stage III Lung Small Cell Carcinoma AJCC v7 9 162012 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 10 162013 -NCIT:C6681 Stage IIIB Lung Small Cell Carcinoma AJCC v7 10 162014 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 11 162015 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 11 162016 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 9 162017 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 8 162018 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 9 162019 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 9 162020 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 8 162021 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 9 162022 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 162023 -NCIT:C158495 Platinum-Sensitive Lung Small Cell Carcinoma 8 162024 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 8 162025 -NCIT:C188753 Lung Small Cell Carcinoma Neuroendocrine Subtype 8 162026 -NCIT:C188754 Lung Small Cell Carcinoma, Neuroendocrine-High Subtype 9 162027 -NCIT:C188755 Lung Small Cell Carcinoma, Neuroendocrine-Low Subtype 9 162028 -NCIT:C188756 Lung Small Cell Carcinoma Molecular Subtypes 8 162029 -NCIT:C188761 Lung Small Cell Carcinoma, A Subtype 9 162030 -NCIT:C188762 Lung Small Cell Carcinoma, N Subtype 9 162031 -NCIT:C188763 Lung Small Cell Carcinoma, P Subtype 9 162032 -NCIT:C188765 Lung Small Cell Carcinoma, I Subtype 9 162033 -NCIT:C188766 Lung Small Cell Carcinoma, Y Subtype 9 162034 -NCIT:C6683 Occult Lung Small Cell Carcinoma 8 162035 -NCIT:C7853 Limited Stage Lung Small Cell Carcinoma 8 162036 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 9 162037 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 9 162038 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 10 162039 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 10 162040 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 9 162041 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 10 162042 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 10 162043 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 9 162044 -NCIT:C9049 Extensive Stage Lung Small Cell Carcinoma 8 162045 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 9 162046 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 9 162047 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 9 162048 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 9 162049 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 8 162050 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 9 162051 -NCIT:C9137 Combined Lung Small Cell Carcinoma 8 162052 -NCIT:C9379 Combined Lung Small Cell Carcinoma and Lung Adenocarcinoma 9 162053 -NCIT:C9423 Combined Lung Small Cell and Squamous Cell Carcinoma 9 162054 -NCIT:C5672 Lung Large Cell Neuroendocrine Carcinoma 7 162055 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 8 162056 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 162057 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 162058 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 8 162059 -NCIT:C7267 Combined Lung Large Cell Neuroendocrine Carcinoma 8 162060 -NCIT:C7591 Combined Lung Carcinoma 7 162061 -NCIT:C7267 Combined Lung Large Cell Neuroendocrine Carcinoma 8 162062 -NCIT:C9137 Combined Lung Small Cell Carcinoma 8 162063 -NCIT:C9379 Combined Lung Small Cell Carcinoma and Lung Adenocarcinoma 9 162064 -NCIT:C9423 Combined Lung Small Cell and Squamous Cell Carcinoma 9 162065 -NCIT:C4621 Benign Endocrine Neoplasm 4 162066 -NCIT:C156757 Parathyroid Gland Adenoma 5 162067 -NCIT:C190066 Childhood Parathyroid Gland Adenoma 6 162068 -NCIT:C27393 Parathyroid Gland Oncocytic Adenoma 6 162069 -NCIT:C4154 Parathyroid Gland Chief Cell Adenoma 6 162070 -NCIT:C48283 Parathyroid Gland Lipoadenoma 6 162071 -NCIT:C7993 Parathyroid Gland Clear Cell Adenoma 6 162072 -NCIT:C4155 Parathyroid Gland Water-Clear Cell Adenoma 7 162073 -NCIT:C7994 Parathyroid Gland Mixed Cell Type Adenoma 6 162074 -NCIT:C190600 Childhood Benign Endocrine Neoplasm 5 162075 -NCIT:C190060 Childhood Thyroid Gland Follicular Adenoma 6 162076 -NCIT:C190066 Childhood Parathyroid Gland Adenoma 6 162077 -NCIT:C190068 Childhood Adrenal Cortical Adenoma 6 162078 -NCIT:C3502 Thyroid Gland Follicular Adenoma 5 162079 -NCIT:C155957 Thyroid Gland Spindle Cell Follicular Adenoma 6 162080 -NCIT:C155958 Thyroid Gland Black Follicular Adenoma 6 162081 -NCIT:C187261 Thyroid Gland Follicular Adenoma with Papillary Architecture 6 162082 -NCIT:C190060 Childhood Thyroid Gland Follicular Adenoma 6 162083 -NCIT:C4160 Thyroid Gland Microfollicular Adenoma 6 162084 -NCIT:C4161 Thyroid Gland Macrofollicular Adenoma 6 162085 -NCIT:C46111 Thyroid Gland Follicular Adenoma with Papillary Hyperplasia 6 162086 -NCIT:C46115 Thyroid Gland Signet Ring Cell Follicular Adenoma 6 162087 -NCIT:C46116 Thyroid Gland Mucinous Follicular Adenoma 6 162088 -NCIT:C46118 Thyroid Gland Lipoadenoma 6 162089 -NCIT:C46119 Thyroid Gland Clear Cell Follicular Adenoma 6 162090 -NCIT:C46122 Thyroid Gland Hyperfunctioning Adenoma 6 162091 -NCIT:C46123 Thyroid Gland Follicular Adenoma with Bizarre Nuclei 6 162092 -NCIT:C6042 Thyroid Gland Oncocytic Adenoma 6 162093 -NCIT:C9003 Adrenal Cortical Adenoma 5 162094 -NCIT:C190068 Childhood Adrenal Cortical Adenoma 6 162095 -NCIT:C4163 Adrenal Cortical Compact Cell Adenoma 6 162096 -NCIT:C4164 Pigmented Adrenal Cortical Adenoma 6 162097 -NCIT:C4165 Adrenal Cortical Clear Cell Adenoma 6 162098 -NCIT:C4166 Adrenal Cortical Glomerulosa Cell Adenoma 6 162099 -NCIT:C4167 Adrenal Cortical Mixed Cell Adenoma 6 162100 -NCIT:C48447 Adrenal Cortical Oncocytic Adenoma 6 162101 -NCIT:C48449 Cortisol-Producing Adrenal Cortical Adenoma 6 162102 -NCIT:C48451 Aldosterone-Producing Adrenal Cortical Adenoma 6 162103 -NCIT:C48452 Sex Hormone-Producing Adrenal Cortical Adenoma 6 162104 -NCIT:C48454 Androgen-Producing Adrenal Cortical Adenoma 7 162105 -NCIT:C48456 Estrogen-Producing Adrenal Cortical Adenoma 7 162106 -NCIT:C48458 Non-Functioning Adrenal Cortical Adenoma 6 162107 -NCIT:C6432 Multiple Endocrine Neoplasia 4 162108 -NCIT:C123329 Multiple Endocrine Neoplasia Type 2 5 162109 -NCIT:C3226 Multiple Endocrine Neoplasia Type 2A 6 162110 -NCIT:C3227 Multiple Endocrine Neoplasia Type 2B 6 162111 -NCIT:C157449 Multiple Endocrine Neoplasia Type 4 5 162112 -NCIT:C188257 Multiple Endocrine Neoplasia Type 5 5 162113 -NCIT:C3225 Multiple Endocrine Neoplasia Type 1 5 162114 -NCIT:C7335 Reproductive Endocrine Neoplasm 4 162115 -NCIT:C94759 Functioning Endocrine Neoplasm 4 162116 -NCIT:C176705 Functioning Lung Carcinoid Tumor 5 162117 -NCIT:C45840 Functioning Pancreatic Neuroendocrine Tumor 5 162118 -NCIT:C45841 Functioning Pancreatic Neuroendocrine Tumor G2 6 162119 -NCIT:C95595 Pancreatic Somatostatinoma 6 162120 -NCIT:C67369 Malignant Pancreatic Somatostatinoma 7 162121 -NCIT:C95596 Pancreatic Gastrinoma 6 162122 -NCIT:C67458 Malignant Pancreatic Gastrinoma 7 162123 -NCIT:C95597 Pancreatic Glucagonoma 6 162124 -NCIT:C65187 Malignant Pancreatic Glucagonoma 7 162125 -NCIT:C95598 Pancreatic Insulinoma 6 162126 -NCIT:C65186 Malignant Pancreatic Insulinoma 7 162127 -NCIT:C95599 Pancreatic Vipoma 6 162128 -NCIT:C67461 Malignant Pancreatic Vipoma 7 162129 -NCIT:C8388 Functioning Pituitary Neuroendocrine Tumor 5 162130 -NCIT:C121679 Functioning Pituitary Neuroendocrine Tumor/Microadenoma 6 162131 -NCIT:C121720 Functioning Pituitary Neuroendocrine Tumor/Macroadenoma 6 162132 -NCIT:C94760 Non-Functioning Endocrine Neoplasm 4 162133 -NCIT:C140329 Metastatic Non-Functioning Neuroendocrine Tumor 5 162134 -NCIT:C140328 Advanced Non-Functioning Neuroendocrine Tumor 6 162135 -NCIT:C176706 Non-Functioning Lung Carcinoid Tumor 5 162136 -NCIT:C4348 Non-Functioning Pituitary Neuroendocrine Tumor 5 162137 -NCIT:C121678 Non-Functioning Pituitary Neuroendocrine Tumor/Microadenoma 6 162138 -NCIT:C121721 Non-Functioning Pituitary Neuroendocrine Tumor/Macroadenoma 6 162139 -NCIT:C154429 Non-Functioning Corticotroph Pituitary Neuroendocrine Tumor 6 162140 -NCIT:C154431 Non-Functioning Densely Granulated Corticotroph Pituitary Neuroendocrine Tumor 7 162141 -NCIT:C154432 Non-Functioning Sparsely Granulated Corticotroph Pituitary Neuroendocrine Tumor 7 162142 -NCIT:C45924 Null Cell Pituitary Neuroendocrine Tumor 6 162143 -NCIT:C45837 Non-Functioning Pancreatic Neuroendocrine Tumor 5 162144 -NCIT:C28333 Non-Functioning Pancreatic Delta Cell Neuroendocrine Tumor 6 162145 -NCIT:C45834 Pancreatic Neuroendocrine Microtumor 6 162146 -NCIT:C45838 Non-Functioning Pancreatic Neuroendocrine Tumor G2 6 162147 -NCIT:C95585 Non-Functioning Pancreatic Neuroendocrine Tumor G1 6 162148 -NCIT:C48458 Non-Functioning Adrenal Cortical Adenoma 5 162149 -NCIT:C3473 Choroid Plexus Neoplasm 3 162150 -NCIT:C42080 Childhood Choroid Plexus Neoplasm 4 162151 -NCIT:C124291 Childhood Atypical Choroid Plexus Papilloma 5 162152 -NCIT:C124292 Childhood Choroid Plexus Carcinoma 5 162153 -NCIT:C5800 Childhood Choroid Plexus Papilloma 5 162154 -NCIT:C4533 Malignant Choroid Plexus Neoplasm 4 162155 -NCIT:C179226 Recurrent Malignant Choroid Plexus Neoplasm 5 162156 -NCIT:C4715 Choroid Plexus Carcinoma 5 162157 -NCIT:C124292 Childhood Choroid Plexus Carcinoma 6 162158 -NCIT:C53686 Atypical Choroid Plexus Papilloma 4 162159 -NCIT:C124291 Childhood Atypical Choroid Plexus Papilloma 5 162160 -NCIT:C8405 Benign Choroid Plexus Neoplasm 4 162161 -NCIT:C3698 Choroid Plexus Papilloma 5 162162 -NCIT:C5800 Childhood Choroid Plexus Papilloma 6 162163 -NCIT:C8568 Adult Choroid Plexus Neoplasm 4 162164 -NCIT:C3784 Basal Cell Neoplasm 3 162165 -NCIT:C156767 Basal Cell Carcinoma 4 162166 -NCIT:C156769 Metastatic Basal Cell Carcinoma 5 162167 -NCIT:C156770 Locally Advanced Basal Cell Carcinoma 6 162168 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 7 162169 -NCIT:C156788 Metastatic Unresectable Basal Cell Carcinoma 6 162170 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 7 162171 -NCIT:C172362 Advanced Basal Cell Carcinoma 6 162172 -NCIT:C157330 Unresectable Basal Cell Carcinoma 5 162173 -NCIT:C156788 Metastatic Unresectable Basal Cell Carcinoma 6 162174 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 7 162175 -NCIT:C157331 Unresectable Skin Basal Cell Carcinoma 6 162176 -NCIT:C190776 Recurrent Basal Cell Carcinoma 5 162177 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 6 162178 -NCIT:C2921 Skin Basal Cell Carcinoma 5 162179 -NCIT:C157331 Unresectable Skin Basal Cell Carcinoma 6 162180 -NCIT:C181159 Eyelid Basal Cell Carcinoma 6 162181 -NCIT:C27182 Skin Sclerosing/Morphoeic Basal Cell Carcinoma 6 162182 -NCIT:C27535 Skin Adenoid Basal Cell Carcinoma 6 162183 -NCIT:C27536 Skin Clear Cell Basal Cell Carcinoma 6 162184 -NCIT:C27537 Skin Cystic Basal Cell Carcinoma 6 162185 -NCIT:C27539 Skin Infiltrating Basal Cell Carcinoma 6 162186 -NCIT:C27540 Skin Infundibulocystic Basal Cell Carcinoma 6 162187 -NCIT:C27541 Skin Micronodular Basal Cell Carcinoma 6 162188 -NCIT:C2922 Skin Basosquamous Cell Carcinoma 6 162189 -NCIT:C38109 Skin Basal Cell Carcinoma with Adnexal Differentiation 6 162190 -NCIT:C27538 Skin Follicular Basal Cell Carcinoma 7 162191 -NCIT:C4346 Skin Basal Cell Carcinoma with Sebaceous Differentiation 7 162192 -NCIT:C38110 Skin Signet Ring Cell Basal Cell Carcinoma 6 162193 -NCIT:C38111 Skin Basal Cell Carcinoma with Sarcomatoid Differentiation 6 162194 -NCIT:C39961 Penile Basal Cell Carcinoma 6 162195 -NCIT:C4109 Skin Fibroepithelial Basal Cell Carcinoma 6 162196 -NCIT:C54665 Skin Keratotic Basal Cell Carcinoma 6 162197 -NCIT:C6082 External Ear Basal Cell Carcinoma 6 162198 -NCIT:C62282 Skin Nodular Basal Cell Carcinoma 6 162199 -NCIT:C5568 Skin Nodulo-Ulcerative Basal Cell Carcinoma 7 162200 -NCIT:C5616 Skin Nodular Solid Basal Cell Carcinoma 7 162201 -NCIT:C62284 Superficial Basal Cell Carcinoma 6 162202 -NCIT:C4108 Superficial Multifocal Basal Cell Carcinoma 7 162203 -NCIT:C6381 Vulvar Basal Cell Carcinoma 6 162204 -NCIT:C6386 Scrotal Basal Cell Carcinoma 6 162205 -NCIT:C66903 Skin Metatypical Carcinoma 6 162206 -NCIT:C7473 Anal Margin Basal Cell Carcinoma 6 162207 -NCIT:C7585 Skin Adamantinoid Basal Cell Carcinoma 6 162208 -NCIT:C8014 Lip Basal Cell Carcinoma 6 162209 -NCIT:C5893 Stage 0 Lip Basal Cell Carcinoma AJCC v6 and v7 7 162210 -NCIT:C8197 Stage I Lip Basal Cell Carcinoma 7 162211 -NCIT:C8201 Stage II Lip Basal Cell Carcinoma 7 162212 -NCIT:C8205 Stage III Lip Basal Cell Carcinoma 7 162213 -NCIT:C8209 Stage IV Lip Basal Cell Carcinoma 7 162214 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 8 162215 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 8 162216 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 8 162217 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 7 162218 -NCIT:C9359 Skin Pigmented Basal Cell Carcinoma 6 162219 -NCIT:C3678 Salivary Gland Basal Cell Adenocarcinoma 5 162220 -NCIT:C39902 Prostate Basal Cell Carcinoma 5 162221 -NCIT:C5950 Basal Cell Adenoma 4 162222 -NCIT:C3792 Squamous Cell Neoplasm 3 162223 -NCIT:C2929 Squamous Cell Carcinoma 4 162224 -NCIT:C154700 Transplant-Related Squamous Cell Carcinoma 5 162225 -NCIT:C27636 Transplant-Related Skin Squamous Cell Carcinoma 6 162226 -NCIT:C162486 Paratesticular Squamous Cell Carcinoma 5 162227 -NCIT:C161634 Seminal Vesicle Squamous Cell Carcinoma 6 162228 -NCIT:C162652 Recurrent Squamous Cell Carcinoma 5 162229 -NCIT:C133709 Recurrent Head and Neck Squamous Cell Carcinoma 6 162230 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 162231 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 162232 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 162233 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 162234 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 162235 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 162236 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 162237 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 162238 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 162239 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 7 162240 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 162241 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 162242 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 162243 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 162244 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 162245 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 162246 -NCIT:C176682 Locally Recurrent Head and Neck Squamous Cell Carcinoma 7 162247 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 7 162248 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 162249 -NCIT:C136649 Recurrent Cervical Squamous Cell Carcinoma 6 162250 -NCIT:C143012 Recurrent Skin Squamous Cell Carcinoma 6 162251 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 162252 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 7 162253 -NCIT:C165737 Locally Recurrent Skin Squamous Cell Carcinoma 7 162254 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 6 162255 -NCIT:C169102 Recurrent Anal Squamous Cell Carcinoma 6 162256 -NCIT:C175360 Recurrent Anal Canal Squamous Cell Carcinoma 7 162257 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 8 162258 -NCIT:C174200 Recurrent Vulvar Squamous Cell Carcinoma 6 162259 -NCIT:C185302 Recurrent Vaginal Squamous Cell Carcinoma 6 162260 -NCIT:C5014 Recurrent Lung Squamous Cell Carcinoma 6 162261 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 7 162262 -NCIT:C8633 Recurrent Esophageal Squamous Cell Carcinoma 6 162263 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 6 162264 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 6 162265 -NCIT:C164250 Human Papillomavirus-Negative Squamous Cell Carcinoma 5 162266 -NCIT:C173414 Oropharyngeal Human Papillomavirus-Negative Squamous Cell Carcinoma 6 162267 -NCIT:C180841 Human Papillomavirus-Independent Cervical Squamous Cell Carcinoma 6 162268 -NCIT:C180919 Human Papillomavirus-Independent Vaginal Squamous Cell Carcinoma 6 162269 -NCIT:C181903 Human Papillomavirus-Independent Vulvar Squamous Cell Carcinoma 6 162270 -NCIT:C171605 Refractory Squamous Cell Carcinoma 5 162271 -NCIT:C148152 Refractory Head and Neck Squamous Cell Carcinoma 6 162272 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 7 162273 -NCIT:C148383 Refractory Laryngeal Squamous Cell Carcinoma 7 162274 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 7 162275 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 7 162276 -NCIT:C148401 Refractory Sinonasal Squamous Cell Carcinoma 7 162277 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 162278 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 162279 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 6 162280 -NCIT:C165735 Refractory Skin Squamous Cell Carcinoma 6 162281 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 162282 -NCIT:C171606 Refractory Esophageal Squamous Cell Carcinoma 6 162283 -NCIT:C173331 Refractory Lung Squamous Cell Carcinoma 6 162284 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 7 162285 -NCIT:C173334 Refractory Anal Canal Squamous Cell Carcinoma 6 162286 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 6 162287 -NCIT:C179207 Refractory Ovarian Squamous Cell Carcinoma 6 162288 -NCIT:C181034 Refractory Cervical Squamous Cell Carcinoma 6 162289 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 7 162290 -NCIT:C185303 Refractory Vaginal Squamous Cell Carcinoma 6 162291 -NCIT:C185304 Refractory Vulvar Squamous Cell Carcinoma 6 162292 -NCIT:C173813 Pancreatic Squamous Cell Carcinoma 5 162293 -NCIT:C190771 Metastatic Pancreatic Squamous Cell Carcinoma 6 162294 -NCIT:C180915 Vaginal Squamous Cell Carcinoma 5 162295 -NCIT:C128060 Vaginal Papillary Carcinoma 6 162296 -NCIT:C180917 Human Papillomavirus-Related Vaginal Squamous Cell Carcinoma 6 162297 -NCIT:C40248 Vaginal Warty Carcinoma 7 162298 -NCIT:C180919 Human Papillomavirus-Independent Vaginal Squamous Cell Carcinoma 6 162299 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 6 162300 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 7 162301 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 8 162302 -NCIT:C185302 Recurrent Vaginal Squamous Cell Carcinoma 6 162303 -NCIT:C185303 Refractory Vaginal Squamous Cell Carcinoma 6 162304 -NCIT:C40243 Vaginal Keratinizing Squamous Cell Carcinoma 6 162305 -NCIT:C40244 Vaginal Non-Keratinizing Squamous Cell Carcinoma 6 162306 -NCIT:C40245 Vaginal Basaloid Carcinoma 6 162307 -NCIT:C6325 Vaginal Verrucous Carcinoma 6 162308 -NCIT:C7736 Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 6 162309 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 7 162310 -NCIT:C191749 Squamous Cell Carcinoma of the Urinary Tract 5 162311 -NCIT:C4031 Bladder Squamous Cell Carcinoma 6 162312 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 7 162313 -NCIT:C27768 Schistosoma Hematobium-Related Bladder Squamous Cell Carcinoma 7 162314 -NCIT:C39833 Schistosoma Hematobium-Related Bladder Verrucous Carcinoma 8 162315 -NCIT:C39832 Bladder Verrucous Carcinoma 7 162316 -NCIT:C39833 Schistosoma Hematobium-Related Bladder Verrucous Carcinoma 8 162317 -NCIT:C39845 Urachal Squamous Cell Carcinoma 7 162318 -NCIT:C4994 Stage II Bladder Squamous Cell Carcinoma AJCC v6 and v7 7 162319 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 7 162320 -NCIT:C8903 Stage 0 Bladder Squamous Cell Carcinoma AJCC v6 and v7 7 162321 -NCIT:C8904 Stage I Squamous Cell Carcinoma of the Bladder AJCC v6 and v7 7 162322 -NCIT:C8905 Stage III Bladder Squamous Cell Carcinoma AJCC v6 and v7 7 162323 -NCIT:C8906 Stage IV Bladder Squamous Cell Carcinoma AJCC v7 7 162324 -NCIT:C27084 Spindle Cell Squamous Cell Carcinoma 5 162325 -NCIT:C129289 Gingival Spindle Cell Carcinoma 6 162326 -NCIT:C173079 Sinonasal Spindle Cell Squamous Cell Carcinoma 6 162327 -NCIT:C174398 Conjunctival Spindle Cell Carcinoma 6 162328 -NCIT:C40358 Breast Squamous Cell Carcinoma, Spindle Cell Variant 6 162329 -NCIT:C4666 Skin Spindle Cell Squamous Cell Carcinoma 6 162330 -NCIT:C54336 Laryngeal Squamous Cell Carcinoma, Spindle Cell Variant 6 162331 -NCIT:C6984 Sarcomatoid Carcinoma of the Penis 6 162332 -NCIT:C95608 Esophageal Spindle Cell Carcinoma 6 162333 -NCIT:C27093 Stage 0 Squamous Cell Carcinoma 5 162334 -NCIT:C133255 Stage 0 Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 6 162335 -NCIT:C133447 Clinical Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 6 162336 -NCIT:C133519 Pathologic Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 6 162337 -NCIT:C136719 Lung Squamous Cell Carcinoma In Situ 6 162338 -NCIT:C8763 Stage 0 Lung Squamous Cell Carcinoma AJCC v6 and v7 7 162339 -NCIT:C157575 Anal Intraepithelial Neoplasia 3 6 162340 -NCIT:C27790 Penile Carcinoma In Situ 6 162341 -NCIT:C28292 Squamous Cell Carcinoma In Situ of the Nipple 6 162342 -NCIT:C2906 Skin Squamous Cell Carcinoma In Situ 6 162343 -NCIT:C62571 Bowen Disease of the Skin 7 162344 -NCIT:C3639 Tracheal Carcinoma In Situ 6 162345 -NCIT:C5023 Stage 0 Esophageal Squamous Cell Carcinoma AJCC v7 6 162346 -NCIT:C6052 Stage 0 Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 6 162347 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 6 162348 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 7 162349 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 7 162350 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 6 162351 -NCIT:C8903 Stage 0 Bladder Squamous Cell Carcinoma AJCC v6 and v7 6 162352 -NCIT:C27417 Ampulla of Vater Squamous Cell Carcinoma 5 162353 -NCIT:C27683 Human Papillomavirus-Related Squamous Cell Carcinoma 5 162354 -NCIT:C171023 Human Papillomavirus-Related Mucosal Head and Neck Squamous Cell Carcinoma 6 162355 -NCIT:C173078 Sinonasal Human Papillomavirus-Related Carcinoma with Adenoid Cystic-Like Features 7 162356 -NCIT:C87055 Oropharyngeal Human Papillomavirus-Positive Squamous Cell Carcinoma 7 162357 -NCIT:C180917 Human Papillomavirus-Related Vaginal Squamous Cell Carcinoma 6 162358 -NCIT:C40248 Vaginal Warty Carcinoma 7 162359 -NCIT:C187051 Human Papillomavirus-Related Head and Neck Squamous Cell Carcinoma of Unknown Primary 6 162360 -NCIT:C27676 Human Papillomavirus-Related Cervical Squamous Cell Carcinoma 6 162361 -NCIT:C40192 Cervical Papillary Squamous Cell Carcinoma 7 162362 -NCIT:C40191 Cervical Warty Carcinoma 8 162363 -NCIT:C40194 Cervical Squamotransitional Carcinoma 8 162364 -NCIT:C27678 Human Papillomavirus-Related Verrucous Carcinoma 6 162365 -NCIT:C27679 Human Papillomavirus-Related Vulvar Squamous Cell Carcinoma 6 162366 -NCIT:C40287 Vulvar Warty Carcinoma 7 162367 -NCIT:C27680 Human Papillomavirus-Related Esophageal Squamous Cell Carcinoma 6 162368 -NCIT:C27681 Human Papillomavirus-Related Anal Squamous Cell Carcinoma 6 162369 -NCIT:C27682 Human Papillomavirus-Related Squamous Cell Carcinoma of the Penis 6 162370 -NCIT:C159250 Warty-Basaloid Carcinoma of the Penis 7 162371 -NCIT:C159251 Clear Cell Squamous Cell Carcinoma of the Penis 7 162372 -NCIT:C159252 Lymphoepithelioma-Like Carcinoma of the Penis 7 162373 -NCIT:C6980 Basaloid Squamous Cell Carcinoma of the Penis 7 162374 -NCIT:C159249 Papillary-Basaloid Carcinoma of the Penis 8 162375 -NCIT:C6981 Warty Carcinoma of the Penis 7 162376 -NCIT:C39862 Human Papillomavirus-Related Urethral Squamous Cell Carcinoma 6 162377 -NCIT:C34447 Head and Neck Squamous Cell Carcinoma 5 162378 -NCIT:C102872 Pharyngeal Squamous Cell Carcinoma 6 162379 -NCIT:C167265 Nasopharyngeal Squamous Cell Carcinoma 7 162380 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 8 162381 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 162382 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 162383 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 162384 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 162385 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 162386 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 162387 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 162388 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 162389 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 8 162390 -NCIT:C54360 Nasopharyngeal Basaloid Carcinoma 8 162391 -NCIT:C7373 Nasopharyngeal Nonkeratinizing Carcinoma 8 162392 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 162393 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 162394 -NCIT:C54389 Nasopharyngeal Differentiated Carcinoma 9 162395 -NCIT:C8023 Nasopharyngeal Undifferentiated Carcinoma 9 162396 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 162397 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 10 162398 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 162399 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 162400 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 162401 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 162402 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 162403 -NCIT:C7992 Nasopharyngeal Keratinizing Squamous Cell Carcinoma 8 162404 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 162405 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 9 162406 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 162407 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 162408 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 162409 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 162410 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 162411 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 162412 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 162413 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 162414 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 7 162415 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 8 162416 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 162417 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 162418 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 162419 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 8 162420 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 162421 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 162422 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 162423 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 162424 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 162425 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 8 162426 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 162427 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 162428 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 162429 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 162430 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 162431 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 162432 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 7 162433 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 162434 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 162435 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 162436 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 162437 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 162438 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 162439 -NCIT:C35693 Posterior Pharyngeal Wall Squamous Cell Carcinoma 7 162440 -NCIT:C4043 Hypopharyngeal Squamous Cell Carcinoma 7 162441 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 8 162442 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 8 162443 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 162444 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 162445 -NCIT:C172646 Unresectable Hypopharyngeal Squamous Cell Carcinoma 8 162446 -NCIT:C4943 Pyriform Fossa Squamous Cell Carcinoma 8 162447 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 8 162448 -NCIT:C8185 Postcricoid Squamous Cell Carcinoma 8 162449 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 8 162450 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 8 162451 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 8 162452 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 8 162453 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 162454 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 162455 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 162456 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 162457 -NCIT:C8181 Oropharyngeal Squamous Cell Carcinoma 7 162458 -NCIT:C126750 Oropharyngeal Poorly Differentiated Carcinoma 8 162459 -NCIT:C126751 Oropharyngeal Basaloid Carcinoma 8 162460 -NCIT:C147906 Oropharyngeal p16INK4a-Negative Squamous Cell Carcinoma 8 162461 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 8 162462 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 8 162463 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 162464 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 162465 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 162466 -NCIT:C162787 Resectable Oropharyngeal Squamous Cell Carcinoma 8 162467 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 9 162468 -NCIT:C162833 Unresectable Oropharyngeal Squamous Cell Carcinoma 8 162469 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 9 162470 -NCIT:C173414 Oropharyngeal Human Papillomavirus-Negative Squamous Cell Carcinoma 8 162471 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 8 162472 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 8 162473 -NCIT:C68610 Oropharyngeal Undifferentiated Carcinoma 8 162474 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 9 162475 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 9 162476 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 9 162477 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 9 162478 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 162479 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 162480 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 162481 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 162482 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 9 162483 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 9 162484 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 9 162485 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 9 162486 -NCIT:C8183 Tonsillar Squamous Cell Carcinoma 8 162487 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 9 162488 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 8 162489 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 9 162490 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 8 162491 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 9 162492 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 8 162493 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 9 162494 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 8 162495 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 9 162496 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 162497 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 162498 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 162499 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 9 162500 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 162501 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 9 162502 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 162503 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 9 162504 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 162505 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 162506 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 162507 -NCIT:C87055 Oropharyngeal Human Papillomavirus-Positive Squamous Cell Carcinoma 8 162508 -NCIT:C132012 Resectable Head and Neck Squamous Cell Carcinoma 6 162509 -NCIT:C162787 Resectable Oropharyngeal Squamous Cell Carcinoma 7 162510 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 8 162511 -NCIT:C162943 Resectable Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 162512 -NCIT:C133252 Cutaneous Squamous Cell Carcinoma of the Head and Neck 6 162513 -NCIT:C133253 Cutaneous Squamous Cell Carcinoma of the Head and Neck by AJCC v8 Stage 7 162514 -NCIT:C133255 Stage 0 Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 162515 -NCIT:C133256 Stage I Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 162516 -NCIT:C133257 Stage II Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 162517 -NCIT:C133258 Stage III Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 162518 -NCIT:C133259 Stage IV Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 162519 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 162520 -NCIT:C162943 Resectable Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 162521 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 162522 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 162523 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 162524 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 162525 -NCIT:C6083 External Ear Squamous Cell Carcinoma 7 162526 -NCIT:C133709 Recurrent Head and Neck Squamous Cell Carcinoma 6 162527 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 162528 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 162529 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 162530 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 162531 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 162532 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 162533 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 162534 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 162535 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 162536 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 7 162537 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 162538 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 162539 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 162540 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 162541 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 162542 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 162543 -NCIT:C176682 Locally Recurrent Head and Neck Squamous Cell Carcinoma 7 162544 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 7 162545 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 162546 -NCIT:C136427 Unresectable Head and Neck Squamous Cell Carcinoma 6 162547 -NCIT:C162833 Unresectable Oropharyngeal Squamous Cell Carcinoma 7 162548 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 8 162549 -NCIT:C172644 Unresectable Oral Cavity Squamous Cell Carcinoma 7 162550 -NCIT:C172645 Unresectable Laryngeal Squamous Cell Carcinoma 7 162551 -NCIT:C172646 Unresectable Hypopharyngeal Squamous Cell Carcinoma 7 162552 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 7 162553 -NCIT:C172651 Unresectable Salivary Gland Squamous Cell Carcinoma 7 162554 -NCIT:C176513 Unresectable Sinonasal Squamous Cell Carcinoma 7 162555 -NCIT:C172648 Unresectable Paranasal Sinus Squamous Cell Carcinoma 8 162556 -NCIT:C176514 Unresectable Nasal Cavity Squamous Cell Carcinoma 8 162557 -NCIT:C148152 Refractory Head and Neck Squamous Cell Carcinoma 6 162558 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 7 162559 -NCIT:C148383 Refractory Laryngeal Squamous Cell Carcinoma 7 162560 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 7 162561 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 7 162562 -NCIT:C148401 Refractory Sinonasal Squamous Cell Carcinoma 7 162563 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 162564 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 162565 -NCIT:C148153 Metastatic Head and Neck Squamous Cell Carcinoma 6 162566 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 7 162567 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 162568 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 162569 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 162570 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 162571 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 162572 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 162573 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 162574 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 7 162575 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 162576 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 162577 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 7 162578 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 162579 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 162580 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 7 162581 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 7 162582 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 162583 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 162584 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 162585 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 8 162586 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 9 162587 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 162588 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 162589 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 8 162590 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 162591 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 162592 -NCIT:C162882 Metastatic Sinonasal Squamous Cell Carcinoma 7 162593 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 162594 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 162595 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 162596 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 162597 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 162598 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 162599 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 162600 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 162601 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 162602 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 162603 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 7 162604 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 7 162605 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 8 162606 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 162607 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 162608 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 162609 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 8 162610 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 162611 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 162612 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 162613 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 162614 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 162615 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 8 162616 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 162617 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 162618 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 162619 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 162620 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 162621 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 162622 -NCIT:C162770 ASPH-Positive Head and Neck Squamous Cell Carcinoma 6 162623 -NCIT:C171023 Human Papillomavirus-Related Mucosal Head and Neck Squamous Cell Carcinoma 6 162624 -NCIT:C173078 Sinonasal Human Papillomavirus-Related Carcinoma with Adenoid Cystic-Like Features 7 162625 -NCIT:C87055 Oropharyngeal Human Papillomavirus-Positive Squamous Cell Carcinoma 7 162626 -NCIT:C37290 Head and Neck Basaloid Carcinoma 6 162627 -NCIT:C126751 Oropharyngeal Basaloid Carcinoma 7 162628 -NCIT:C129873 Floor of Mouth Basaloid Squamous Cell Carcinoma 7 162629 -NCIT:C54334 Laryngeal Basaloid Carcinoma 7 162630 -NCIT:C54360 Nasopharyngeal Basaloid Carcinoma 7 162631 -NCIT:C4044 Laryngeal Squamous Cell Carcinoma 6 162632 -NCIT:C148383 Refractory Laryngeal Squamous Cell Carcinoma 7 162633 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 7 162634 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 162635 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 162636 -NCIT:C172645 Unresectable Laryngeal Squamous Cell Carcinoma 7 162637 -NCIT:C4945 Supraglottic Squamous Cell Carcinoma 7 162638 -NCIT:C181714 Epiglottic Squamous Cell Carcinoma 8 162639 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 9 162640 -NCIT:C8191 Supraglottic Verrucous Carcinoma 8 162641 -NCIT:C54334 Laryngeal Basaloid Carcinoma 7 162642 -NCIT:C54335 Laryngeal Papillary Squamous Cell Carcinoma 7 162643 -NCIT:C54336 Laryngeal Squamous Cell Carcinoma, Spindle Cell Variant 7 162644 -NCIT:C54337 Laryngeal Acantholytic Squamous Cell Carcinoma 7 162645 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 7 162646 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 8 162647 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 8 162648 -NCIT:C8186 Glottic Squamous Cell Carcinoma 7 162649 -NCIT:C8189 Glottis Verrucous Carcinoma 8 162650 -NCIT:C8187 Subglottic Squamous Cell Carcinoma 7 162651 -NCIT:C8190 Subglottic Verrucous Carcinoma 8 162652 -NCIT:C8188 Laryngeal Verrucous Carcinoma 7 162653 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 8 162654 -NCIT:C8189 Glottis Verrucous Carcinoma 8 162655 -NCIT:C8190 Subglottic Verrucous Carcinoma 8 162656 -NCIT:C8191 Supraglottic Verrucous Carcinoma 8 162657 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 162658 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 162659 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 162660 -NCIT:C8244 Stage IV Laryngeal Verrucous Carcinoma AJCC v7 8 162661 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 9 162662 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 9 162663 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 9 162664 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 162665 -NCIT:C8237 Stage I Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 7 162666 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 162667 -NCIT:C8239 Stage II Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 7 162668 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 162669 -NCIT:C8241 Stage III Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 7 162670 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 162671 -NCIT:C8243 Stage IV Laryngeal Squamous Cell Carcinoma AJCC v7 7 162672 -NCIT:C6122 Stage IVA Laryngeal Squamous Cell Carcinoma AJCC v7 8 162673 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 9 162674 -NCIT:C6123 Stage IVB Laryngeal Squamous Cell Carcinoma AJCC v7 8 162675 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 9 162676 -NCIT:C6124 Stage IVC Laryngeal Squamous Cell Carcinoma AJCC v7 8 162677 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 9 162678 -NCIT:C8244 Stage IV Laryngeal Verrucous Carcinoma AJCC v7 8 162679 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 9 162680 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 9 162681 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 9 162682 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 7 162683 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 162684 -NCIT:C42690 Lip and Oral Cavity Squamous Cell Carcinoma 6 162685 -NCIT:C115057 Stage I Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 162686 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 162687 -NCIT:C115058 Stage II Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 162688 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 162689 -NCIT:C115059 Stage III Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 162690 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 162691 -NCIT:C115060 Stage IV Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 162692 -NCIT:C115061 Stage IVA Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 162693 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 162694 -NCIT:C115062 Stage IVB Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 162695 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 162696 -NCIT:C115063 Stage IVC Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 162697 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 162698 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 162699 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 162700 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 162701 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 162702 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 162703 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 162704 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 162705 -NCIT:C4042 Lip Squamous Cell Carcinoma 7 162706 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 162707 -NCIT:C4833 Oral Cavity Squamous Cell Carcinoma 7 162708 -NCIT:C129857 Gingival Squamous Cell Carcinoma 8 162709 -NCIT:C129289 Gingival Spindle Cell Carcinoma 9 162710 -NCIT:C8171 Lower Gingival Squamous Cell Carcinoma 9 162711 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 10 162712 -NCIT:C8172 Retromolar Trigone Squamous Cell Carcinoma 9 162713 -NCIT:C8173 Upper Gingival Squamous Cell Carcinoma 9 162714 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 10 162715 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 8 162716 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 162717 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 162718 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 162719 -NCIT:C170774 Alveolar Ridge Squamous Cell Carcinoma 8 162720 -NCIT:C170775 Upper Alveolar Ridge Squamous Cell Carcinoma 9 162721 -NCIT:C170776 Lower Alveolar Ridge Squamous Cell Carcinoma 9 162722 -NCIT:C172644 Unresectable Oral Cavity Squamous Cell Carcinoma 8 162723 -NCIT:C4040 Buccal Mucosa Squamous Cell Carcinoma 8 162724 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 9 162725 -NCIT:C4041 Floor of Mouth Squamous Cell Carcinoma 8 162726 -NCIT:C129873 Floor of Mouth Basaloid Squamous Cell Carcinoma 9 162727 -NCIT:C4648 Tongue Squamous Cell Carcinoma 8 162728 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 162729 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 162730 -NCIT:C4649 Palate Squamous Cell Carcinoma 8 162731 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 162732 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 162733 -NCIT:C54295 Primary Intraosseous Squamous Cell Carcinoma 8 162734 -NCIT:C54303 Primary Intraosseous Squamous Cell Carcinoma Derived From Keratocystic Odontogenic Tumor 9 162735 -NCIT:C7491 Primary Intraosseous Squamous Cell Carcinoma-Solid Type 9 162736 -NCIT:C7498 Keratinizing Primary Intraosseous Squamous Cell Carcinoma-Solid Type 10 162737 -NCIT:C7499 Non-Keratinizing Primary Intraosseous Squamous Cell Carcinoma -Solid Type 10 162738 -NCIT:C7500 Primary Intraosseous Squamous Cell Carcinoma Derived From Odontogenic Cyst 9 162739 -NCIT:C6052 Stage 0 Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 162740 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 162741 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 162742 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 162743 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 162744 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 162745 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 162746 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 162747 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 162748 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 162749 -NCIT:C8174 Oral Cavity Verrucous Carcinoma 8 162750 -NCIT:C179894 Oral Cavity Carcinoma Cuniculatum 9 162751 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 9 162752 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 9 162753 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 9 162754 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 162755 -NCIT:C54283 Head and Neck Keratinizing Squamous Cell Carcinoma 6 162756 -NCIT:C173077 Sinonasal Keratinizing Squamous Cell Carcinoma 7 162757 -NCIT:C54284 Paranasal Sinus Keratinizing Squamous Cell Carcinoma 8 162758 -NCIT:C54285 Nasal Cavity Keratinizing Squamous Cell Carcinoma 8 162759 -NCIT:C6083 External Ear Squamous Cell Carcinoma 7 162760 -NCIT:C6086 Middle Ear Squamous Cell Carcinoma 7 162761 -NCIT:C7498 Keratinizing Primary Intraosseous Squamous Cell Carcinoma-Solid Type 7 162762 -NCIT:C7992 Nasopharyngeal Keratinizing Squamous Cell Carcinoma 7 162763 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 8 162764 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 8 162765 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 8 162766 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 8 162767 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 8 162768 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 8 162769 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 162770 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 162771 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 162772 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 8 162773 -NCIT:C68611 Sinonasal Squamous Cell Carcinoma 6 162774 -NCIT:C115070 Stage I Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 7 162775 -NCIT:C115071 Stage II Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 7 162776 -NCIT:C115072 Stage III Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 7 162777 -NCIT:C115073 Stage IV Sinonasal Squamous Cell Carcinoma AJCC v7 7 162778 -NCIT:C115074 Stage IVA Sinonasal Squamous Cell Carcinoma AJCC v7 8 162779 -NCIT:C115075 Stage IVB Sinonasal Squamous Cell Carcinoma AJCC v7 8 162780 -NCIT:C115076 Stage IVC Sinonasal Squamous Cell Carcinoma AJCC v7 8 162781 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 162782 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 162783 -NCIT:C148401 Refractory Sinonasal Squamous Cell Carcinoma 7 162784 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 162785 -NCIT:C162882 Metastatic Sinonasal Squamous Cell Carcinoma 7 162786 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 162787 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 162788 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 162789 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 162790 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 162791 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 162792 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 162793 -NCIT:C173077 Sinonasal Keratinizing Squamous Cell Carcinoma 7 162794 -NCIT:C54284 Paranasal Sinus Keratinizing Squamous Cell Carcinoma 8 162795 -NCIT:C54285 Nasal Cavity Keratinizing Squamous Cell Carcinoma 8 162796 -NCIT:C173079 Sinonasal Spindle Cell Squamous Cell Carcinoma 7 162797 -NCIT:C176513 Unresectable Sinonasal Squamous Cell Carcinoma 7 162798 -NCIT:C172648 Unresectable Paranasal Sinus Squamous Cell Carcinoma 8 162799 -NCIT:C176514 Unresectable Nasal Cavity Squamous Cell Carcinoma 8 162800 -NCIT:C54287 Sinonasal Non-Keratinizing Squamous Cell Carcinoma 7 162801 -NCIT:C173078 Sinonasal Human Papillomavirus-Related Carcinoma with Adenoid Cystic-Like Features 8 162802 -NCIT:C173080 Sinonasal Lymphoepithelial Carcinoma 8 162803 -NCIT:C8192 Nasal Cavity Squamous Cell Carcinoma 7 162804 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 162805 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 162806 -NCIT:C176514 Unresectable Nasal Cavity Squamous Cell Carcinoma 8 162807 -NCIT:C54285 Nasal Cavity Keratinizing Squamous Cell Carcinoma 8 162808 -NCIT:C8193 Paranasal Sinus Squamous Cell Carcinoma 7 162809 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 162810 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 162811 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 162812 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 162813 -NCIT:C172648 Unresectable Paranasal Sinus Squamous Cell Carcinoma 8 162814 -NCIT:C54284 Paranasal Sinus Keratinizing Squamous Cell Carcinoma 8 162815 -NCIT:C6064 Maxillary Sinus Squamous Cell Carcinoma 8 162816 -NCIT:C6065 Ethmoid Sinus Squamous Cell Carcinoma 8 162817 -NCIT:C6066 Sphenoid Sinus Squamous Cell Carcinoma 8 162818 -NCIT:C6067 Frontal Sinus Squamous Cell Carcinoma 8 162819 -NCIT:C7991 Salivary Gland Squamous Cell Carcinoma 6 162820 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 7 162821 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 162822 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 162823 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 162824 -NCIT:C172651 Unresectable Salivary Gland Squamous Cell Carcinoma 7 162825 -NCIT:C181161 Major Salivary Gland Squamous Cell Carcinoma 7 162826 -NCIT:C5942 Parotid Gland Squamous Cell Carcinoma 8 162827 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 9 162828 -NCIT:C5943 Submandibular Gland Squamous Cell Carcinoma 8 162829 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 9 162830 -NCIT:C5959 Minor Salivary Gland Squamous Cell Carcinoma 7 162831 -NCIT:C8022 Salivary Gland Poorly Differentiated Squamous Cell Carcinoma 7 162832 -NCIT:C3493 Lung Squamous Cell Carcinoma 5 162833 -NCIT:C133254 Lung Non-Small Cell Squamous Carcinoma 6 162834 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 7 162835 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 162836 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 162837 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 162838 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 7 162839 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 7 162840 -NCIT:C171612 Unresectable Lung Non-Small Cell Squamous Carcinoma 7 162841 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 8 162842 -NCIT:C45502 Lung Squamous Cell Carcinoma, Papillary Variant 7 162843 -NCIT:C45503 Lung Squamous Cell Carcinoma, Clear Cell Variant 7 162844 -NCIT:C136494 Lung Squamous Cell Carcinoma by AJCC v7 Stage 6 162845 -NCIT:C8763 Stage 0 Lung Squamous Cell Carcinoma AJCC v6 and v7 7 162846 -NCIT:C8764 Stage I Lung Squamous Cell Carcinoma AJCC v7 7 162847 -NCIT:C6687 Stage IA Lung Squamous Cell Carcinoma AJCC v7 8 162848 -NCIT:C6692 Stage IB Lung Squamous Cell Carcinoma AJCC v7 8 162849 -NCIT:C8765 Stage II Lung Squamous Cell Carcinoma AJCC v7 7 162850 -NCIT:C6688 Stage IIA Lung Squamous Cell Carcinoma AJCC v7 8 162851 -NCIT:C6691 Stage IIB Lung Squamous Cell Carcinoma AJCC v7 8 162852 -NCIT:C8766 Stage III Lung Squamous Cell Carcinoma AJCC v7 7 162853 -NCIT:C6689 Stage IIIA Lung Squamous Cell Carcinoma AJCC v7 8 162854 -NCIT:C6690 Stage IIIB Lung Squamous Cell Carcinoma AJCC v7 8 162855 -NCIT:C8767 Stage IV Lung Squamous Cell Carcinoma AJCC v7 7 162856 -NCIT:C136713 Lung Keratinizing Squamous Cell Carcinoma 6 162857 -NCIT:C136714 Lung Non-Keratinizing Squamous Cell Carcinoma 6 162858 -NCIT:C136719 Lung Squamous Cell Carcinoma In Situ 6 162859 -NCIT:C8763 Stage 0 Lung Squamous Cell Carcinoma AJCC v6 and v7 7 162860 -NCIT:C156092 Metastatic Lung Squamous Cell Carcinoma 6 162861 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 7 162862 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 162863 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 162864 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 162865 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 7 162866 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 162867 -NCIT:C173331 Refractory Lung Squamous Cell Carcinoma 6 162868 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 7 162869 -NCIT:C190953 Resectable Lung Squamous Cell Carcinoma 6 162870 -NCIT:C45504 Lung Squamous Cell Carcinoma, Small Cell Variant 6 162871 -NCIT:C45507 Lung Basaloid Squamous Cell Carcinoma 6 162872 -NCIT:C5014 Recurrent Lung Squamous Cell Carcinoma 6 162873 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 7 162874 -NCIT:C6686 Occult Lung Squamous Cell Carcinoma 6 162875 -NCIT:C40093 Ovarian Squamous Cell Carcinoma 5 162876 -NCIT:C179207 Refractory Ovarian Squamous Cell Carcinoma 6 162877 -NCIT:C4024 Esophageal Squamous Cell Carcinoma 5 162878 -NCIT:C133442 Esophageal Squamous Cell Carcinoma by AJCC v7 Stage 6 162879 -NCIT:C5019 Stage IV Esophageal Squamous Cell Carcinoma AJCC v7 7 162880 -NCIT:C5020 Stage III Esophageal Squamous Cell Carcinoma AJCC v7 7 162881 -NCIT:C87787 Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v7 8 162882 -NCIT:C87788 Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v7 8 162883 -NCIT:C87789 Stage IIIC Esophageal Squamous Cell Carcinoma AJCC v7 8 162884 -NCIT:C5021 Stage II Esophageal Squamous Cell Carcinoma AJCC v7 7 162885 -NCIT:C6737 Stage IIB Esophageal Squamous Cell Carcinoma AJCC v7 8 162886 -NCIT:C6738 Stage IIA Esophageal Squamous Cell Carcinoma AJCC v7 8 162887 -NCIT:C5022 Stage I Esophageal Squamous Cell Carcinoma AJCC v7 7 162888 -NCIT:C87780 Stage IA Esophageal Squamous Cell Carcinoma AJCC v7 8 162889 -NCIT:C87781 Stage IB Esophageal Squamous Cell Carcinoma AJCC v7 8 162890 -NCIT:C5023 Stage 0 Esophageal Squamous Cell Carcinoma AJCC v7 7 162891 -NCIT:C133443 Esophageal Squamous Cell Carcinoma by AJCC v8 Stage 6 162892 -NCIT:C133444 Esophageal Squamous Cell Carcinoma by AJCC v8 Clinical Stage 7 162893 -NCIT:C133447 Clinical Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 8 162894 -NCIT:C133448 Clinical Stage I Esophageal Squamous Cell Carcinoma AJCC v8 8 162895 -NCIT:C133449 Clinical Stage II Esophageal Squamous Cell Carcinoma AJCC v8 8 162896 -NCIT:C133450 Clinical Stage III Esophageal Squamous Cell Carcinoma AJCC v8 8 162897 -NCIT:C133451 Clinical Stage IV Esophageal Squamous Cell Carcinoma AJCC v8 8 162898 -NCIT:C133452 Clinical Stage IVA Esophageal Squamous Cell Carcinoma AJCC v8 9 162899 -NCIT:C133453 Clinical Stage IVB Esophageal Squamous Cell Carcinoma AJCC v8 9 162900 -NCIT:C133445 Esophageal Squamous Cell Carcinoma by AJCC v8 Pathologic Stage 7 162901 -NCIT:C133519 Pathologic Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 8 162902 -NCIT:C133521 Pathologic Stage I Esophageal Squamous Cell Carcinoma AJCC v8 8 162903 -NCIT:C133525 Pathologic Stage IA Esophageal Squamous Cell Carcinoma AJCC v8 9 162904 -NCIT:C133530 Pathologic Stage IB Esophageal Squamous Cell Carcinoma AJCC v8 9 162905 -NCIT:C133532 Pathologic Stage II Esophageal Squamous Cell Carcinoma AJCC v8 8 162906 -NCIT:C133534 Pathologic Stage IIA Esophageal Squamous Cell Carcinoma AJCC v8 9 162907 -NCIT:C133535 Pathologic Stage IIB Esophageal Squamous Cell Carcinoma AJCC v8 9 162908 -NCIT:C133536 Pathologic Stage III Esophageal Squamous Cell Carcinoma AJCC v8 8 162909 -NCIT:C133537 Pathologic Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v8 9 162910 -NCIT:C133538 Pathologic Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v8 9 162911 -NCIT:C133539 Pathologic Stage IV Esophageal Squamous Cell Carcinoma AJCC v8 8 162912 -NCIT:C133541 Pathologic Stage IVA Esophageal Squamous Cell Carcinoma AJCC v8 9 162913 -NCIT:C133542 Pathologic Stage IVB Esophageal Squamous Cell Carcinoma AJCC v8 9 162914 -NCIT:C133446 Esophageal Squamous Cell Carcinoma by AJCC v8 Postneoadjuvant Therapy Stage 7 162915 -NCIT:C133454 Postneoadjuvant Therapy Stage I Esophageal Squamous Cell Carcinoma AJCC v8 8 162916 -NCIT:C133455 Postneoadjuvant Therapy Stage II Esophageal Squamous Cell Carcinoma AJCC v8 8 162917 -NCIT:C133456 Postneoadjuvant Therapy Stage III Esophageal Squamous Cell Carcinoma AJCC v8 8 162918 -NCIT:C133457 Postneoadjuvant Therapy Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v8 9 162919 -NCIT:C133458 Postneoadjuvant Therapy Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v8 9 162920 -NCIT:C133459 Postneoadjuvant Therapy Stage IV Esophageal Squamous Cell Carcinoma AJCC v8 8 162921 -NCIT:C133460 Postneoadjuvant Therapy Stage IVA Esophageal Squamous Cell Carcinoma AJCC v8 9 162922 -NCIT:C133461 Postneoadjuvant Therapy Stage IVB Esophageal Squamous Cell Carcinoma AJCC v8 9 162923 -NCIT:C150029 Thoracic Esophagus Squamous Cell Carcinoma 6 162924 -NCIT:C150032 Cervical Esophagus Squamous Cell Carcinoma 6 162925 -NCIT:C150037 Distal Esophagus Squamous Cell Carcinoma 6 162926 -NCIT:C156075 Metastatic Esophageal Squamous Cell Carcinoma 6 162927 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 7 162928 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 7 162929 -NCIT:C171606 Refractory Esophageal Squamous Cell Carcinoma 6 162930 -NCIT:C171608 Unresectable Esophageal Squamous Cell Carcinoma 6 162931 -NCIT:C27420 Esophageal Verrucous Carcinoma 6 162932 -NCIT:C27680 Human Papillomavirus-Related Esophageal Squamous Cell Carcinoma 6 162933 -NCIT:C27928 Alcohol-Related Esophageal Squamous Cell Carcinoma 6 162934 -NCIT:C7032 Esophageal Basaloid Carcinoma 6 162935 -NCIT:C8633 Recurrent Esophageal Squamous Cell Carcinoma 6 162936 -NCIT:C95608 Esophageal Spindle Cell Carcinoma 6 162937 -NCIT:C95610 Esophageal Well Differentiated Squamous Cell Carcinoma 6 162938 -NCIT:C179888 Esophageal Carcinoma Cuniculatum 7 162939 -NCIT:C95611 Esophageal Moderately Differentiated Squamous Cell Carcinoma 6 162940 -NCIT:C95612 Esophageal Poorly Differentiated Squamous Cell Carcinoma 6 162941 -NCIT:C4028 Cervical Squamous Cell Carcinoma 5 162942 -NCIT:C136649 Recurrent Cervical Squamous Cell Carcinoma 6 162943 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 6 162944 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 7 162945 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 7 162946 -NCIT:C174025 Unresectable Cervical Squamous Cell Carcinoma 6 162947 -NCIT:C180839 Cervical Squamous Cell Carcinoma, Not Otherwise Specified 6 162948 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 7 162949 -NCIT:C180841 Human Papillomavirus-Independent Cervical Squamous Cell Carcinoma 6 162950 -NCIT:C181034 Refractory Cervical Squamous Cell Carcinoma 6 162951 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 7 162952 -NCIT:C27676 Human Papillomavirus-Related Cervical Squamous Cell Carcinoma 6 162953 -NCIT:C40192 Cervical Papillary Squamous Cell Carcinoma 7 162954 -NCIT:C40191 Cervical Warty Carcinoma 8 162955 -NCIT:C40194 Cervical Squamotransitional Carcinoma 8 162956 -NCIT:C36094 Early Invasive Cervical Squamous Cell Carcinoma 6 162957 -NCIT:C40187 Cervical Keratinizing Squamous Cell Carcinoma 6 162958 -NCIT:C40188 Cervical Non-Keratinizing Squamous Cell Carcinoma 6 162959 -NCIT:C40189 Cervical Basaloid Carcinoma 6 162960 -NCIT:C40190 Cervical Verrucous Carcinoma 6 162961 -NCIT:C40193 Cervical Lymphoepithelioma-Like Carcinoma 6 162962 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 6 162963 -NCIT:C4052 Vulvar Squamous Cell Carcinoma 5 162964 -NCIT:C128167 Vulvar Keratoacanthoma 6 162965 -NCIT:C174199 Unresectable Vulvar Squamous Cell Carcinoma 6 162966 -NCIT:C174200 Recurrent Vulvar Squamous Cell Carcinoma 6 162967 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 6 162968 -NCIT:C181902 Vulvar Squamous Cell Carcinoma, Not Otherwise Specified 6 162969 -NCIT:C181903 Human Papillomavirus-Independent Vulvar Squamous Cell Carcinoma 6 162970 -NCIT:C185304 Refractory Vulvar Squamous Cell Carcinoma 6 162971 -NCIT:C27679 Human Papillomavirus-Related Vulvar Squamous Cell Carcinoma 6 162972 -NCIT:C40287 Vulvar Warty Carcinoma 7 162973 -NCIT:C40284 Vulvar Keratinizing Squamous Cell Carcinoma 6 162974 -NCIT:C40285 Vulvar Non-Keratinizing Squamous Cell Carcinoma 6 162975 -NCIT:C40286 Vulvar Basaloid Carcinoma 6 162976 -NCIT:C40289 Vulvar Squamous Cell Carcinoma with Tumor Giant Cells 6 162977 -NCIT:C40293 Bartholin Gland Squamous Cell Carcinoma 6 162978 -NCIT:C6383 Vulvar Verrucous Carcinoma 6 162979 -NCIT:C4102 Papillary Squamous Cell Carcinoma 5 162980 -NCIT:C128060 Vaginal Papillary Carcinoma 6 162981 -NCIT:C164248 Warty Carcinoma 6 162982 -NCIT:C40191 Cervical Warty Carcinoma 7 162983 -NCIT:C40248 Vaginal Warty Carcinoma 7 162984 -NCIT:C40287 Vulvar Warty Carcinoma 7 162985 -NCIT:C6981 Warty Carcinoma of the Penis 7 162986 -NCIT:C3781 Verrucous Carcinoma 6 162987 -NCIT:C165465 Skin Verrucous Carcinoma 7 162988 -NCIT:C6811 Plantar Verrucous Carcinoma 8 162989 -NCIT:C27420 Esophageal Verrucous Carcinoma 7 162990 -NCIT:C27678 Human Papillomavirus-Related Verrucous Carcinoma 7 162991 -NCIT:C39832 Bladder Verrucous Carcinoma 7 162992 -NCIT:C39833 Schistosoma Hematobium-Related Bladder Verrucous Carcinoma 8 162993 -NCIT:C39874 Urethral Verrucous Carcinoma 7 162994 -NCIT:C40190 Cervical Verrucous Carcinoma 7 162995 -NCIT:C6325 Vaginal Verrucous Carcinoma 7 162996 -NCIT:C6383 Vulvar Verrucous Carcinoma 7 162997 -NCIT:C6982 Verrucous Carcinoma of the Penis 7 162998 -NCIT:C159247 Carcinoma Cuniculatum of the Penis 8 162999 -NCIT:C7470 Anal Verrucous Carcinoma 7 163000 -NCIT:C8174 Oral Cavity Verrucous Carcinoma 7 163001 -NCIT:C179894 Oral Cavity Carcinoma Cuniculatum 8 163002 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 8 163003 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 8 163004 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 8 163005 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 8 163006 -NCIT:C8188 Laryngeal Verrucous Carcinoma 7 163007 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 8 163008 -NCIT:C8189 Glottis Verrucous Carcinoma 8 163009 -NCIT:C8190 Subglottic Verrucous Carcinoma 8 163010 -NCIT:C8191 Supraglottic Verrucous Carcinoma 8 163011 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 163012 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 163013 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 163014 -NCIT:C8244 Stage IV Laryngeal Verrucous Carcinoma AJCC v7 8 163015 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 9 163016 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 9 163017 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 9 163018 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 163019 -NCIT:C40192 Cervical Papillary Squamous Cell Carcinoma 6 163020 -NCIT:C40191 Cervical Warty Carcinoma 7 163021 -NCIT:C40194 Cervical Squamotransitional Carcinoma 7 163022 -NCIT:C45502 Lung Squamous Cell Carcinoma, Papillary Variant 6 163023 -NCIT:C54335 Laryngeal Papillary Squamous Cell Carcinoma 6 163024 -NCIT:C65164 Non-Invasive Papillary Squamous Cell Carcinoma 6 163025 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 7 163026 -NCIT:C6983 Papillary Carcinoma of the Penis 6 163027 -NCIT:C103340 Papillary Carcinoma of the Penis, Not Otherwise Specified 7 163028 -NCIT:C159249 Papillary-Basaloid Carcinoma of the Penis 7 163029 -NCIT:C6981 Warty Carcinoma of the Penis 7 163030 -NCIT:C6982 Verrucous Carcinoma of the Penis 7 163031 -NCIT:C159247 Carcinoma Cuniculatum of the Penis 8 163032 -NCIT:C4104 Metastatic Squamous Cell Carcinoma 5 163033 -NCIT:C143013 Metastatic Skin Squamous Cell Carcinoma 6 163034 -NCIT:C153182 Locally Advanced Skin Squamous Cell Carcinoma 7 163035 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 163036 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 7 163037 -NCIT:C168542 Advanced Skin Squamous Cell Carcinoma 7 163038 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 163039 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 163040 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 163041 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 163042 -NCIT:C148153 Metastatic Head and Neck Squamous Cell Carcinoma 6 163043 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 7 163044 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 163045 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 163046 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 163047 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 163048 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 163049 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 163050 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 163051 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 7 163052 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 163053 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 163054 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 7 163055 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 163056 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 163057 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 7 163058 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 7 163059 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 163060 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 163061 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 163062 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 8 163063 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 9 163064 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 163065 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 163066 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 8 163067 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 163068 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 163069 -NCIT:C162882 Metastatic Sinonasal Squamous Cell Carcinoma 7 163070 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 163071 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 163072 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 163073 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 163074 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 163075 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 163076 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 163077 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 163078 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 163079 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 163080 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 7 163081 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 7 163082 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 8 163083 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 163084 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 163085 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 163086 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 8 163087 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 163088 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 163089 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 163090 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 163091 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 163092 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 8 163093 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 163094 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 163095 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 163096 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 163097 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 163098 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 163099 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 6 163100 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 7 163101 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 7 163102 -NCIT:C154321 Locally Advanced Squamous Cell Carcinoma 6 163103 -NCIT:C153182 Locally Advanced Skin Squamous Cell Carcinoma 7 163104 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 163105 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 7 163106 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 8 163107 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 7 163108 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 163109 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 163110 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 163111 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 8 163112 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 9 163113 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 163114 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 163115 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 8 163116 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 163117 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 163118 -NCIT:C165474 Locally Advanced Squamous Cell Carcinoma of Unknown Primary 7 163119 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 7 163120 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 7 163121 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 7 163122 -NCIT:C156075 Metastatic Esophageal Squamous Cell Carcinoma 6 163123 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 7 163124 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 7 163125 -NCIT:C156092 Metastatic Lung Squamous Cell Carcinoma 6 163126 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 7 163127 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 163128 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 163129 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 163130 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 7 163131 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 163132 -NCIT:C157452 Metastatic Squamous Cell Carcinoma in the Cervical Lymph Nodes 6 163133 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 6 163134 -NCIT:C162653 Advanced Squamous Cell Carcinoma 6 163135 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 7 163136 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 163137 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 163138 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 163139 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 163140 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 163141 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 163142 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 163143 -NCIT:C168542 Advanced Skin Squamous Cell Carcinoma 7 163144 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 163145 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 7 163146 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 7 163147 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 7 163148 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 163149 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 7 163150 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 7 163151 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 7 163152 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 8 163153 -NCIT:C169103 Metastatic Anal Squamous Cell Carcinoma 6 163154 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 7 163155 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 8 163156 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 6 163157 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 7 163158 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 7 163159 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 6 163160 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 6 163161 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 7 163162 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 8 163163 -NCIT:C182111 Metastatic Squamous Cell Carcinoma of the Penis 6 163164 -NCIT:C188112 Metastatic Squamous Cell Carcinoma in the Breast 6 163165 -NCIT:C188113 Metastatic Squamous Cell Carcinoma in the Skin 6 163166 -NCIT:C190771 Metastatic Pancreatic Squamous Cell Carcinoma 6 163167 -NCIT:C4829 Disseminated Squamous Cell Carcinoma 6 163168 -NCIT:C5178 Metastatic Breast Squamous Cell Carcinoma 6 163169 -NCIT:C8099 Squamous Cell Carcinoma of Unknown Primary 6 163170 -NCIT:C165474 Locally Advanced Squamous Cell Carcinoma of Unknown Primary 7 163171 -NCIT:C187051 Human Papillomavirus-Related Head and Neck Squamous Cell Carcinoma of Unknown Primary 7 163172 -NCIT:C190149 Human Papillomavirus-Negative Head and Neck Squamous Cell Carcinoma of Unknown Primary 7 163173 -NCIT:C7713 Neck Squamous Cell Carcinoma of Unknown Primary 7 163174 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 8 163175 -NCIT:C4105 Keratinizing Squamous Cell Carcinoma 5 163176 -NCIT:C27542 Skin Pseudovascular Squamous Cell Carcinoma 6 163177 -NCIT:C27543 Skin Basaloid Carcinoma 6 163178 -NCIT:C40187 Cervical Keratinizing Squamous Cell Carcinoma 6 163179 -NCIT:C40243 Vaginal Keratinizing Squamous Cell Carcinoma 6 163180 -NCIT:C40284 Vulvar Keratinizing Squamous Cell Carcinoma 6 163181 -NCIT:C40357 Breast Squamous Cell Carcinoma, Large Cell Keratinizing Variant 6 163182 -NCIT:C4459 Skin Clear Cell Squamous Cell Carcinoma 6 163183 -NCIT:C4460 Skin Acantholytic Squamous Cell Carcinoma 6 163184 -NCIT:C45502 Lung Squamous Cell Carcinoma, Papillary Variant 6 163185 -NCIT:C45503 Lung Squamous Cell Carcinoma, Clear Cell Variant 6 163186 -NCIT:C45504 Lung Squamous Cell Carcinoma, Small Cell Variant 6 163187 -NCIT:C45507 Lung Basaloid Squamous Cell Carcinoma 6 163188 -NCIT:C54283 Head and Neck Keratinizing Squamous Cell Carcinoma 6 163189 -NCIT:C173077 Sinonasal Keratinizing Squamous Cell Carcinoma 7 163190 -NCIT:C54284 Paranasal Sinus Keratinizing Squamous Cell Carcinoma 8 163191 -NCIT:C54285 Nasal Cavity Keratinizing Squamous Cell Carcinoma 8 163192 -NCIT:C6083 External Ear Squamous Cell Carcinoma 7 163193 -NCIT:C6086 Middle Ear Squamous Cell Carcinoma 7 163194 -NCIT:C7498 Keratinizing Primary Intraosseous Squamous Cell Carcinoma-Solid Type 7 163195 -NCIT:C7992 Nasopharyngeal Keratinizing Squamous Cell Carcinoma 7 163196 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 8 163197 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 8 163198 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 8 163199 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 8 163200 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 8 163201 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 8 163202 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 163203 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 163204 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 163205 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 8 163206 -NCIT:C65179 Squamous Cell Carcinoma with Horn Formation 6 163207 -NCIT:C4106 Pseudoglandular Squamous Cell Carcinoma 5 163208 -NCIT:C159246 Pseudoglandular Carcinoma of the Penis 6 163209 -NCIT:C54337 Laryngeal Acantholytic Squamous Cell Carcinoma 6 163210 -NCIT:C43534 Small Intestinal Squamous Cell Carcinoma 5 163211 -NCIT:C43588 Colorectal Squamous Cell Carcinoma 5 163212 -NCIT:C5490 Colon Squamous Cell Carcinoma 6 163213 -NCIT:C5554 Rectal Squamous Cell Carcinoma 6 163214 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 7 163215 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 8 163216 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 8 163217 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 7 163218 -NCIT:C5555 Rectal Cloacogenic Carcinoma 7 163219 -NCIT:C4448 Tracheal Squamous Cell Carcinoma 5 163220 -NCIT:C3639 Tracheal Carcinoma In Situ 6 163221 -NCIT:C4549 Conjunctival Squamous Cell Carcinoma 5 163222 -NCIT:C174390 Conjunctival Keratoacanthoma 6 163223 -NCIT:C174398 Conjunctival Spindle Cell Carcinoma 6 163224 -NCIT:C4552 Corneal Squamous Cell Carcinoma 5 163225 -NCIT:C4819 Skin Squamous Cell Carcinoma 5 163226 -NCIT:C133252 Cutaneous Squamous Cell Carcinoma of the Head and Neck 6 163227 -NCIT:C133253 Cutaneous Squamous Cell Carcinoma of the Head and Neck by AJCC v8 Stage 7 163228 -NCIT:C133255 Stage 0 Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 163229 -NCIT:C133256 Stage I Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 163230 -NCIT:C133257 Stage II Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 163231 -NCIT:C133258 Stage III Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 163232 -NCIT:C133259 Stage IV Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 163233 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 163234 -NCIT:C162943 Resectable Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 163235 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 163236 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 163237 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 163238 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 163239 -NCIT:C6083 External Ear Squamous Cell Carcinoma 7 163240 -NCIT:C143012 Recurrent Skin Squamous Cell Carcinoma 6 163241 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 163242 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 7 163243 -NCIT:C165737 Locally Recurrent Skin Squamous Cell Carcinoma 7 163244 -NCIT:C143013 Metastatic Skin Squamous Cell Carcinoma 6 163245 -NCIT:C153182 Locally Advanced Skin Squamous Cell Carcinoma 7 163246 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 163247 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 7 163248 -NCIT:C168542 Advanced Skin Squamous Cell Carcinoma 7 163249 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 163250 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 163251 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 163252 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 163253 -NCIT:C157320 Unresectable Skin Squamous Cell Carcinoma 6 163254 -NCIT:C160666 Hematologic Malignancy-Associated Skin Squamous Cell Carcinoma 6 163255 -NCIT:C165465 Skin Verrucous Carcinoma 6 163256 -NCIT:C6811 Plantar Verrucous Carcinoma 7 163257 -NCIT:C165466 Skin Squamous Cell Carcinoma with Osteoclast-Like Giant Cells 6 163258 -NCIT:C165467 Skin Lymphoepithelioma-Like Carcinoma 6 163259 -NCIT:C165468 Skin Squamous Cell Carcinoma with Sarcomatoid Differentiation 6 163260 -NCIT:C165735 Refractory Skin Squamous Cell Carcinoma 6 163261 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 163262 -NCIT:C170464 Resectable Skin Squamous Cell Carcinoma 6 163263 -NCIT:C162943 Resectable Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 163264 -NCIT:C27542 Skin Pseudovascular Squamous Cell Carcinoma 6 163265 -NCIT:C27543 Skin Basaloid Carcinoma 6 163266 -NCIT:C27636 Transplant-Related Skin Squamous Cell Carcinoma 6 163267 -NCIT:C27918 Old Burn Scar-Related Skin Squamous Cell Carcinoma 6 163268 -NCIT:C27921 Solar Radiation-Related Skin Squamous Cell Carcinoma 6 163269 -NCIT:C2906 Skin Squamous Cell Carcinoma In Situ 6 163270 -NCIT:C62571 Bowen Disease of the Skin 7 163271 -NCIT:C3146 Keratoacanthoma 6 163272 -NCIT:C128167 Vulvar Keratoacanthoma 7 163273 -NCIT:C174390 Conjunctival Keratoacanthoma 7 163274 -NCIT:C4459 Skin Clear Cell Squamous Cell Carcinoma 6 163275 -NCIT:C4460 Skin Acantholytic Squamous Cell Carcinoma 6 163276 -NCIT:C4643 Scrotal Squamous Cell Carcinoma 6 163277 -NCIT:C4666 Skin Spindle Cell Squamous Cell Carcinoma 6 163278 -NCIT:C6925 Anal Margin Squamous Cell Carcinoma 6 163279 -NCIT:C5177 Breast Squamous Cell Carcinoma 5 163280 -NCIT:C40357 Breast Squamous Cell Carcinoma, Large Cell Keratinizing Variant 6 163281 -NCIT:C40358 Breast Squamous Cell Carcinoma, Spindle Cell Variant 6 163282 -NCIT:C40359 Breast Squamous Cell Carcinoma, Acantholytic Variant 6 163283 -NCIT:C5178 Metastatic Breast Squamous Cell Carcinoma 6 163284 -NCIT:C54244 Basaloid Squamous Cell Carcinoma 5 163285 -NCIT:C27543 Skin Basaloid Carcinoma 6 163286 -NCIT:C37290 Head and Neck Basaloid Carcinoma 6 163287 -NCIT:C126751 Oropharyngeal Basaloid Carcinoma 7 163288 -NCIT:C129873 Floor of Mouth Basaloid Squamous Cell Carcinoma 7 163289 -NCIT:C54334 Laryngeal Basaloid Carcinoma 7 163290 -NCIT:C54360 Nasopharyngeal Basaloid Carcinoma 7 163291 -NCIT:C40189 Cervical Basaloid Carcinoma 6 163292 -NCIT:C40245 Vaginal Basaloid Carcinoma 6 163293 -NCIT:C40286 Vulvar Basaloid Carcinoma 6 163294 -NCIT:C45507 Lung Basaloid Squamous Cell Carcinoma 6 163295 -NCIT:C6456 Thymic Basaloid Carcinoma 6 163296 -NCIT:C6980 Basaloid Squamous Cell Carcinoma of the Penis 6 163297 -NCIT:C159249 Papillary-Basaloid Carcinoma of the Penis 7 163298 -NCIT:C7032 Esophageal Basaloid Carcinoma 6 163299 -NCIT:C8256 Anal Basaloid Carcinoma 6 163300 -NCIT:C5475 Gastric Squamous Cell Carcinoma 5 163301 -NCIT:C150034 Gastric Cardia Squamous Cell Carcinoma 6 163302 -NCIT:C5536 Prostate Squamous Cell Carcinoma 5 163303 -NCIT:C5777 Extrahepatic Bile Duct Squamous Cell Carcinoma 5 163304 -NCIT:C6092 Lacrimal Drainage System Squamous Cell Carcinoma 5 163305 -NCIT:C175335 Lacrimal Drainage System Non-Keratinizing Squamous Cell Carcinoma 6 163306 -NCIT:C6154 Ureter Squamous Cell Carcinoma 5 163307 -NCIT:C6165 Urethral Squamous Cell Carcinoma 5 163308 -NCIT:C39862 Human Papillomavirus-Related Urethral Squamous Cell Carcinoma 6 163309 -NCIT:C39874 Urethral Verrucous Carcinoma 6 163310 -NCIT:C6282 Fallopian Tube Squamous Cell Carcinoma 5 163311 -NCIT:C6455 Thymic Squamous Cell Carcinoma 5 163312 -NCIT:C6456 Thymic Basaloid Carcinoma 6 163313 -NCIT:C65173 Non-Keratinizing Large Cell Squamous Cell Carcinoma 5 163314 -NCIT:C65175 Non-Keratinizing Small Cell Squamous Cell Carcinoma 5 163315 -NCIT:C65176 Squamous Cell Carcinoma In Situ with Questionable Stromal Invasion 5 163316 -NCIT:C65178 Microinvasive Squamous Cell Carcinoma 5 163317 -NCIT:C65180 Squamous Cell Carcinoma, Clear Cell Type 5 163318 -NCIT:C159251 Clear Cell Squamous Cell Carcinoma of the Penis 6 163319 -NCIT:C7729 Squamous Cell Carcinoma of the Penis 5 163320 -NCIT:C159244 Non-Human Papillomavirus-Related Squamous Cell Carcinoma of the Penis 6 163321 -NCIT:C103340 Papillary Carcinoma of the Penis, Not Otherwise Specified 7 163322 -NCIT:C159245 Pseudohyperplastic Carcinoma of the Penis 7 163323 -NCIT:C159246 Pseudoglandular Carcinoma of the Penis 7 163324 -NCIT:C159248 Adenosquamous Carcinoma of the Penis 7 163325 -NCIT:C39959 Mixed Squamous Cell Carcinoma of the Penis 7 163326 -NCIT:C6979 Squamous Cell Carcinoma of the Penis, Usual Type 7 163327 -NCIT:C6982 Verrucous Carcinoma of the Penis 7 163328 -NCIT:C159247 Carcinoma Cuniculatum of the Penis 8 163329 -NCIT:C6984 Sarcomatoid Carcinoma of the Penis 7 163330 -NCIT:C182111 Metastatic Squamous Cell Carcinoma of the Penis 6 163331 -NCIT:C27682 Human Papillomavirus-Related Squamous Cell Carcinoma of the Penis 6 163332 -NCIT:C159250 Warty-Basaloid Carcinoma of the Penis 7 163333 -NCIT:C159251 Clear Cell Squamous Cell Carcinoma of the Penis 7 163334 -NCIT:C159252 Lymphoepithelioma-Like Carcinoma of the Penis 7 163335 -NCIT:C6980 Basaloid Squamous Cell Carcinoma of the Penis 7 163336 -NCIT:C159249 Papillary-Basaloid Carcinoma of the Penis 8 163337 -NCIT:C6981 Warty Carcinoma of the Penis 7 163338 -NCIT:C27790 Penile Carcinoma In Situ 6 163339 -NCIT:C6983 Papillary Carcinoma of the Penis 6 163340 -NCIT:C103340 Papillary Carcinoma of the Penis, Not Otherwise Specified 7 163341 -NCIT:C159249 Papillary-Basaloid Carcinoma of the Penis 7 163342 -NCIT:C6981 Warty Carcinoma of the Penis 7 163343 -NCIT:C6982 Verrucous Carcinoma of the Penis 7 163344 -NCIT:C159247 Carcinoma Cuniculatum of the Penis 8 163345 -NCIT:C7732 Renal Pelvis Squamous Cell Carcinoma 5 163346 -NCIT:C8719 Endometrial Squamous Cell Carcinoma 5 163347 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 6 163348 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 6 163349 -NCIT:C9161 Anal Squamous Cell Carcinoma 5 163350 -NCIT:C157575 Anal Intraepithelial Neoplasia 3 6 163351 -NCIT:C169102 Recurrent Anal Squamous Cell Carcinoma 6 163352 -NCIT:C175360 Recurrent Anal Canal Squamous Cell Carcinoma 7 163353 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 8 163354 -NCIT:C169103 Metastatic Anal Squamous Cell Carcinoma 6 163355 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 7 163356 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 8 163357 -NCIT:C173156 Unresectable Anal Squamous Cell Carcinoma 6 163358 -NCIT:C175384 Unresectable Anal Canal Squamous Cell Carcinoma 7 163359 -NCIT:C27681 Human Papillomavirus-Related Anal Squamous Cell Carcinoma 6 163360 -NCIT:C6925 Anal Margin Squamous Cell Carcinoma 6 163361 -NCIT:C7469 Anal Canal Squamous Cell Carcinoma 6 163362 -NCIT:C173334 Refractory Anal Canal Squamous Cell Carcinoma 7 163363 -NCIT:C175360 Recurrent Anal Canal Squamous Cell Carcinoma 7 163364 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 8 163365 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 7 163366 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 8 163367 -NCIT:C175384 Unresectable Anal Canal Squamous Cell Carcinoma 7 163368 -NCIT:C7470 Anal Verrucous Carcinoma 6 163369 -NCIT:C8256 Anal Basaloid Carcinoma 6 163370 -NCIT:C9170 Gallbladder Squamous Cell Carcinoma 5 163371 -NCIT:C40195 Cervical Squamous Neoplasm 4 163372 -NCIT:C4028 Cervical Squamous Cell Carcinoma 5 163373 -NCIT:C136649 Recurrent Cervical Squamous Cell Carcinoma 6 163374 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 6 163375 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 7 163376 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 7 163377 -NCIT:C174025 Unresectable Cervical Squamous Cell Carcinoma 6 163378 -NCIT:C180839 Cervical Squamous Cell Carcinoma, Not Otherwise Specified 6 163379 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 7 163380 -NCIT:C180841 Human Papillomavirus-Independent Cervical Squamous Cell Carcinoma 6 163381 -NCIT:C181034 Refractory Cervical Squamous Cell Carcinoma 6 163382 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 7 163383 -NCIT:C27676 Human Papillomavirus-Related Cervical Squamous Cell Carcinoma 6 163384 -NCIT:C40192 Cervical Papillary Squamous Cell Carcinoma 7 163385 -NCIT:C40191 Cervical Warty Carcinoma 8 163386 -NCIT:C40194 Cervical Squamotransitional Carcinoma 8 163387 -NCIT:C36094 Early Invasive Cervical Squamous Cell Carcinoma 6 163388 -NCIT:C40187 Cervical Keratinizing Squamous Cell Carcinoma 6 163389 -NCIT:C40188 Cervical Non-Keratinizing Squamous Cell Carcinoma 6 163390 -NCIT:C40189 Cervical Basaloid Carcinoma 6 163391 -NCIT:C40190 Cervical Verrucous Carcinoma 6 163392 -NCIT:C40193 Cervical Lymphoepithelioma-Like Carcinoma 6 163393 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 6 163394 -NCIT:C6342 Cervical Squamous Papilloma 5 163395 -NCIT:C7346 Cervical Squamous Intraepithelial Neoplasia 5 163396 -NCIT:C40196 Low Grade Cervical Squamous Intraepithelial Neoplasia 6 163397 -NCIT:C40199 Cervical Squamous Intraepithelial Neoplasia 1 7 163398 -NCIT:C40197 High Grade Cervical Squamous Intraepithelial Neoplasia 6 163399 -NCIT:C40198 Cervical Squamous Intraepithelial Neoplasia 2 7 163400 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 7 163401 -NCIT:C8421 Cervical Condyloma Acuminatum 5 163402 -NCIT:C40242 Vaginal Squamous Neoplasm 4 163403 -NCIT:C180915 Vaginal Squamous Cell Carcinoma 5 163404 -NCIT:C128060 Vaginal Papillary Carcinoma 6 163405 -NCIT:C180917 Human Papillomavirus-Related Vaginal Squamous Cell Carcinoma 6 163406 -NCIT:C40248 Vaginal Warty Carcinoma 7 163407 -NCIT:C180919 Human Papillomavirus-Independent Vaginal Squamous Cell Carcinoma 6 163408 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 6 163409 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 7 163410 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 8 163411 -NCIT:C185302 Recurrent Vaginal Squamous Cell Carcinoma 6 163412 -NCIT:C185303 Refractory Vaginal Squamous Cell Carcinoma 6 163413 -NCIT:C40243 Vaginal Keratinizing Squamous Cell Carcinoma 6 163414 -NCIT:C40244 Vaginal Non-Keratinizing Squamous Cell Carcinoma 6 163415 -NCIT:C40245 Vaginal Basaloid Carcinoma 6 163416 -NCIT:C6325 Vaginal Verrucous Carcinoma 6 163417 -NCIT:C7736 Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 6 163418 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 7 163419 -NCIT:C4521 Vaginal Intraepithelial Neoplasia 5 163420 -NCIT:C4644 Low Grade Vaginal Intraepithelial Neoplasia 6 163421 -NCIT:C7663 High Grade Vaginal Intraepithelial Neoplasia 6 163422 -NCIT:C4645 Grade 2 Vaginal Intraepithelial Neoplasia 7 163423 -NCIT:C7855 Stage 0 Vaginal Cancer AJCC v6 7 163424 -NCIT:C89476 Stage 0 Vaginal Cancer AJCC v7 7 163425 -NCIT:C4947 Vaginal Condyloma Acuminatum 5 163426 -NCIT:C6374 Vaginal Squamous Papilloma 5 163427 -NCIT:C40283 Vulvar Squamous Neoplasm 4 163428 -NCIT:C4052 Vulvar Squamous Cell Carcinoma 5 163429 -NCIT:C128167 Vulvar Keratoacanthoma 6 163430 -NCIT:C174199 Unresectable Vulvar Squamous Cell Carcinoma 6 163431 -NCIT:C174200 Recurrent Vulvar Squamous Cell Carcinoma 6 163432 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 6 163433 -NCIT:C181902 Vulvar Squamous Cell Carcinoma, Not Otherwise Specified 6 163434 -NCIT:C181903 Human Papillomavirus-Independent Vulvar Squamous Cell Carcinoma 6 163435 -NCIT:C185304 Refractory Vulvar Squamous Cell Carcinoma 6 163436 -NCIT:C27679 Human Papillomavirus-Related Vulvar Squamous Cell Carcinoma 6 163437 -NCIT:C40287 Vulvar Warty Carcinoma 7 163438 -NCIT:C40284 Vulvar Keratinizing Squamous Cell Carcinoma 6 163439 -NCIT:C40285 Vulvar Non-Keratinizing Squamous Cell Carcinoma 6 163440 -NCIT:C40286 Vulvar Basaloid Carcinoma 6 163441 -NCIT:C40289 Vulvar Squamous Cell Carcinoma with Tumor Giant Cells 6 163442 -NCIT:C40293 Bartholin Gland Squamous Cell Carcinoma 6 163443 -NCIT:C6383 Vulvar Verrucous Carcinoma 6 163444 -NCIT:C4382 Vulvar Condyloma Acuminatum 5 163445 -NCIT:C4756 Vulvar Intraepithelial Neoplasia 5 163446 -NCIT:C128142 Vulvar Squamous Intraepithelial Lesion, HPV-Associated 6 163447 -NCIT:C4760 Low Grade Vulvar Squamous Intraepithelial Lesion 7 163448 -NCIT:C4761 High Grade Vulvar Squamous Intraepithelial Lesion 7 163449 -NCIT:C37272 Vulvar Intraepithelial Neoplasia, HPV-Independent 6 163450 -NCIT:C4522 Stage 0 Vulvar Cancer AJCC v6 6 163451 -NCIT:C89445 Stage 0 Vulvar Cancer AJCC v7 6 163452 -NCIT:C6375 Vulvar Seborrheic Keratosis 5 163453 -NCIT:C40291 Vulvar Inverted Follicular Keratosis 6 163454 -NCIT:C6376 Vulvar Squamous Papilloma 5 163455 -NCIT:C40290 Vulvar Squamous Papillomatosis 6 163456 -NCIT:C4742 Benign Squamous Cell Neoplasm 4 163457 -NCIT:C26913 Verruca Plantaris 5 163458 -NCIT:C27087 Verruca Vulgaris 5 163459 -NCIT:C173475 Oral Verruca Vulgaris 6 163460 -NCIT:C2964 Craniopharyngioma 5 163461 -NCIT:C148076 Unresectable Craniopharyngioma 6 163462 -NCIT:C148077 Recurrent Craniopharyngioma 6 163463 -NCIT:C162612 Recurrent Adamantinomatous Craniopharyngioma 7 163464 -NCIT:C4010 Adult Craniopharyngioma 6 163465 -NCIT:C188949 Adult Adamantinomatous Craniopharyngioma 7 163466 -NCIT:C4725 Papillary Craniopharyngioma 6 163467 -NCIT:C4726 Adamantinomatous Craniopharyngioma 6 163468 -NCIT:C162612 Recurrent Adamantinomatous Craniopharyngioma 7 163469 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 7 163470 -NCIT:C188949 Adult Adamantinomatous Craniopharyngioma 7 163471 -NCIT:C7816 Childhood Craniopharyngioma 6 163472 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 7 163473 -NCIT:C3712 Squamous Papilloma 5 163474 -NCIT:C173476 Oral Squamous Papilloma 6 163475 -NCIT:C5819 Buccal Squamous Papilloma 7 163476 -NCIT:C191740 Squamous Papilloma of the Urinary Tract 6 163477 -NCIT:C39834 Bladder Squamous Papilloma 7 163478 -NCIT:C4355 Eyelid Squamous Papilloma 6 163479 -NCIT:C4369 Nasal Vestibule Squamous Papilloma 6 163480 -NCIT:C45573 Lung Squamous Papilloma 6 163481 -NCIT:C5344 Esophageal Squamous Papilloma 6 163482 -NCIT:C6037 Nasopharyngeal Squamous Papilloma 6 163483 -NCIT:C6038 Oropharyngeal Squamous Papilloma 6 163484 -NCIT:C6224 Conjunctival Squamous Papilloma 6 163485 -NCIT:C6342 Cervical Squamous Papilloma 6 163486 -NCIT:C6374 Vaginal Squamous Papilloma 6 163487 -NCIT:C6376 Vulvar Squamous Papilloma 6 163488 -NCIT:C40290 Vulvar Squamous Papillomatosis 7 163489 -NCIT:C65165 Inverted Squamous Papilloma 6 163490 -NCIT:C7742 Laryngeal Squamous Papilloma 6 163491 -NCIT:C190150 Childhood Laryngeal Squamous Papilloma 7 163492 -NCIT:C96554 Anal Canal Squamous Papilloma 6 163493 -NCIT:C5028 Verrucous Lesion 4 163494 -NCIT:C26913 Verruca Plantaris 5 163495 -NCIT:C27087 Verruca Vulgaris 5 163496 -NCIT:C173475 Oral Verruca Vulgaris 6 163497 -NCIT:C2960 Condyloma Acuminatum 5 163498 -NCIT:C4054 Anal Condyloma Acuminatum 6 163499 -NCIT:C4382 Vulvar Condyloma Acuminatum 6 163500 -NCIT:C4947 Vaginal Condyloma Acuminatum 6 163501 -NCIT:C6169 Urethral Condyloma Acuminatum 6 163502 -NCIT:C6371 Giant Condyloma Acuminatum 6 163503 -NCIT:C8421 Cervical Condyloma Acuminatum 6 163504 -NCIT:C97057 Condyloma Acuminatum with Dysplasia 6 163505 -NCIT:C8334 Squamous Cell Intraepithelial Neoplasia 4 163506 -NCIT:C27423 Esophageal Squamous Intraepithelial Neoplasia 5 163507 -NCIT:C27426 High Grade Esophageal Squamous Intraepithelial Neoplasia 6 163508 -NCIT:C133447 Clinical Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 7 163509 -NCIT:C133519 Pathologic Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 7 163510 -NCIT:C5023 Stage 0 Esophageal Squamous Cell Carcinoma AJCC v7 7 163511 -NCIT:C27427 Low Grade Esophageal Squamous Intraepithelial Neoplasia 6 163512 -NCIT:C4394 Anogenital Papillomaviral Intraepithelial Neoplasia 5 163513 -NCIT:C4595 Anal Intraepithelial Neoplasia 5 163514 -NCIT:C157573 Low Grade Anal Intraepithelial Neoplasia 6 163515 -NCIT:C27238 Low Grade Anal Canal Intraepithelial Neoplasia 7 163516 -NCIT:C172706 High Grade Anal Intraepithelial Neoplasia 6 163517 -NCIT:C157574 Anal Intraepithelial Neoplasia 2 7 163518 -NCIT:C157575 Anal Intraepithelial Neoplasia 3 7 163519 -NCIT:C27275 High Grade Anal Canal Intraepithelial Neoplasia 7 163520 -NCIT:C43598 Perianal Intraepithelial Neoplasia 6 163521 -NCIT:C7490 Anal Canal Intraepithelial Neoplasia 6 163522 -NCIT:C27238 Low Grade Anal Canal Intraepithelial Neoplasia 7 163523 -NCIT:C27275 High Grade Anal Canal Intraepithelial Neoplasia 7 163524 -NCIT:C4596 Penile Intraepithelial Neoplasia 5 163525 -NCIT:C162536 Non-Human Papillomavirus-Related Penile Intraepithelial Neoplasia 6 163526 -NCIT:C162539 Differentiated (Simplex) Penile Intraepithelial Neoplasia 7 163527 -NCIT:C162541 Human Papillomavirus-Related Penile Intraepithelial Neoplasia 6 163528 -NCIT:C162542 Basaloid (Undifferentiated) Penile Intraepithelial Neoplasia 7 163529 -NCIT:C162543 Warty (Bowenoid) Penile Intraepithelial Neoplasia 7 163530 -NCIT:C162546 Warty-Basaloid Penile Intraepithelial Neoplasia 7 163531 -NCIT:C39963 Penile Bowenoid Papulosis 7 163532 -NCIT:C7666 Low Grade Penile Intraepithelial Neoplasia 6 163533 -NCIT:C7667 High Grade Penile Intraepithelial Neoplasia 6 163534 -NCIT:C27790 Penile Carcinoma In Situ 7 163535 -NCIT:C7665 Grade II Penile Intraepithelial Neoplasia 7 163536 -NCIT:C4756 Vulvar Intraepithelial Neoplasia 5 163537 -NCIT:C128142 Vulvar Squamous Intraepithelial Lesion, HPV-Associated 6 163538 -NCIT:C4760 Low Grade Vulvar Squamous Intraepithelial Lesion 7 163539 -NCIT:C4761 High Grade Vulvar Squamous Intraepithelial Lesion 7 163540 -NCIT:C37272 Vulvar Intraepithelial Neoplasia, HPV-Independent 6 163541 -NCIT:C4522 Stage 0 Vulvar Cancer AJCC v6 6 163542 -NCIT:C89445 Stage 0 Vulvar Cancer AJCC v7 6 163543 -NCIT:C6093 Corneal Squamous Intraepithelial Neoplasia 5 163544 -NCIT:C6094 Low Grade Corneal Squamous Intraepithelial Neoplasia 6 163545 -NCIT:C7669 High Grade Corneal Squamous Intraepithelial Neoplasia 6 163546 -NCIT:C6120 Conjunctival Squamous Intraepithelial Neoplasia 5 163547 -NCIT:C6097 Low Grade Conjunctival Squamous Intraepithelial Neoplasia 6 163548 -NCIT:C7668 High Grade Conjunctival Squamous Intraepithelial Neoplasia 6 163549 -NCIT:C7346 Cervical Squamous Intraepithelial Neoplasia 5 163550 -NCIT:C40196 Low Grade Cervical Squamous Intraepithelial Neoplasia 6 163551 -NCIT:C40199 Cervical Squamous Intraepithelial Neoplasia 1 7 163552 -NCIT:C40197 High Grade Cervical Squamous Intraepithelial Neoplasia 6 163553 -NCIT:C40198 Cervical Squamous Intraepithelial Neoplasia 2 7 163554 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 7 163555 -NCIT:C8335 Low Grade Squamous Intraepithelial Neoplasia 5 163556 -NCIT:C157573 Low Grade Anal Intraepithelial Neoplasia 6 163557 -NCIT:C27238 Low Grade Anal Canal Intraepithelial Neoplasia 7 163558 -NCIT:C27427 Low Grade Esophageal Squamous Intraepithelial Neoplasia 6 163559 -NCIT:C40196 Low Grade Cervical Squamous Intraepithelial Neoplasia 6 163560 -NCIT:C40199 Cervical Squamous Intraepithelial Neoplasia 1 7 163561 -NCIT:C4760 Low Grade Vulvar Squamous Intraepithelial Lesion 6 163562 -NCIT:C6094 Low Grade Corneal Squamous Intraepithelial Neoplasia 6 163563 -NCIT:C6097 Low Grade Conjunctival Squamous Intraepithelial Neoplasia 6 163564 -NCIT:C7666 Low Grade Penile Intraepithelial Neoplasia 6 163565 -NCIT:C8336 High Grade Squamous Intraepithelial Neoplasia 5 163566 -NCIT:C172706 High Grade Anal Intraepithelial Neoplasia 6 163567 -NCIT:C157574 Anal Intraepithelial Neoplasia 2 7 163568 -NCIT:C157575 Anal Intraepithelial Neoplasia 3 7 163569 -NCIT:C27275 High Grade Anal Canal Intraepithelial Neoplasia 7 163570 -NCIT:C27093 Stage 0 Squamous Cell Carcinoma 6 163571 -NCIT:C133255 Stage 0 Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 7 163572 -NCIT:C133447 Clinical Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 7 163573 -NCIT:C133519 Pathologic Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 7 163574 -NCIT:C136719 Lung Squamous Cell Carcinoma In Situ 7 163575 -NCIT:C8763 Stage 0 Lung Squamous Cell Carcinoma AJCC v6 and v7 8 163576 -NCIT:C157575 Anal Intraepithelial Neoplasia 3 7 163577 -NCIT:C27790 Penile Carcinoma In Situ 7 163578 -NCIT:C28292 Squamous Cell Carcinoma In Situ of the Nipple 7 163579 -NCIT:C2906 Skin Squamous Cell Carcinoma In Situ 7 163580 -NCIT:C62571 Bowen Disease of the Skin 8 163581 -NCIT:C3639 Tracheal Carcinoma In Situ 7 163582 -NCIT:C5023 Stage 0 Esophageal Squamous Cell Carcinoma AJCC v7 7 163583 -NCIT:C6052 Stage 0 Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 163584 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 7 163585 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 8 163586 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 8 163587 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 7 163588 -NCIT:C8903 Stage 0 Bladder Squamous Cell Carcinoma AJCC v6 and v7 7 163589 -NCIT:C27426 High Grade Esophageal Squamous Intraepithelial Neoplasia 6 163590 -NCIT:C133447 Clinical Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 7 163591 -NCIT:C133519 Pathologic Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 7 163592 -NCIT:C5023 Stage 0 Esophageal Squamous Cell Carcinoma AJCC v7 7 163593 -NCIT:C40197 High Grade Cervical Squamous Intraepithelial Neoplasia 6 163594 -NCIT:C40198 Cervical Squamous Intraepithelial Neoplasia 2 7 163595 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 7 163596 -NCIT:C4761 High Grade Vulvar Squamous Intraepithelial Lesion 6 163597 -NCIT:C7351 Grade II Squamous Intraepithelial Neoplasia 6 163598 -NCIT:C157574 Anal Intraepithelial Neoplasia 2 7 163599 -NCIT:C40198 Cervical Squamous Intraepithelial Neoplasia 2 7 163600 -NCIT:C7665 Grade II Penile Intraepithelial Neoplasia 7 163601 -NCIT:C7667 High Grade Penile Intraepithelial Neoplasia 6 163602 -NCIT:C27790 Penile Carcinoma In Situ 7 163603 -NCIT:C7665 Grade II Penile Intraepithelial Neoplasia 7 163604 -NCIT:C7668 High Grade Conjunctival Squamous Intraepithelial Neoplasia 6 163605 -NCIT:C7669 High Grade Corneal Squamous Intraepithelial Neoplasia 6 163606 -NCIT:C40141 Wolffian Tumor 3 163607 -NCIT:C179548 Ovarian Wolffian Tumor 4 163608 -NCIT:C179927 Uterine Ligament Wolffian Tumor 4 163609 -NCIT:C179547 Broad Ligament Wolffian Tumor 5 163610 -NCIT:C4092 Benign Epithelial Neoplasm 3 163611 -NCIT:C157748 Metanephric Tumor 4 163612 -NCIT:C157749 Metanephric Stromal Tumor 5 163613 -NCIT:C27253 Metanephric Adenoma 5 163614 -NCIT:C39812 Metanephric Adenofibroma 5 163615 -NCIT:C162483 Epididymal Cystadenoma 4 163616 -NCIT:C155953 Epididymal Papillary Cystadenoma 5 163617 -NCIT:C2854 Warthin Tumor 4 163618 -NCIT:C175291 Lacrimal Gland Warthin Tumor 5 163619 -NCIT:C66865 Parotid Gland Warthin Tumor 5 163620 -NCIT:C34584 Endocervical Polyp 4 163621 -NCIT:C6856 Cervical Microglandular Polyp 5 163622 -NCIT:C35833 Salivary Gland Cystadenoma 4 163623 -NCIT:C3686 Salivary Gland Monomorphic Adenoma 4 163624 -NCIT:C35738 Salivary Gland Sebaceous Adenoma 5 163625 -NCIT:C5932 Salivary Gland Oncocytoma 5 163626 -NCIT:C5950 Basal Cell Adenoma 5 163627 -NCIT:C5979 Salivary Gland Canalicular Adenoma 5 163628 -NCIT:C6845 Oral Cavity Monomorphic Adenoma 5 163629 -NCIT:C6844 Hard Palate Monomorphic Adenoma 6 163630 -NCIT:C6847 Parotid Gland Monomorphic Adenoma 5 163631 -NCIT:C40018 Rete Ovarii Adenoma 4 163632 -NCIT:C40116 Fallopian Tube Metaplastic Papillary Tumor 4 163633 -NCIT:C40299 Bartholin Gland Adenoma 4 163634 -NCIT:C40300 Bartholin Gland Adenomyoma 4 163635 -NCIT:C40301 Adenoma of Minor Vestibular Glands 4 163636 -NCIT:C40382 Breast Adenoma 4 163637 -NCIT:C40383 Breast Apocrine Adenoma 5 163638 -NCIT:C40384 Breast Ductal Adenoma 5 163639 -NCIT:C40408 Breast Pleomorphic Adenoma 5 163640 -NCIT:C62210 Breast Tubular Adenoma 5 163641 -NCIT:C9473 Lactating Adenoma 6 163642 -NCIT:C4192 Nipple Adenoma 4 163643 -NCIT:C4374 Pancreatic Cystadenoma 4 163644 -NCIT:C5712 Pancreatic Serous Cystadenoma 5 163645 -NCIT:C95471 Pancreatic Macrocystic Serous Cystadenoma 5 163646 -NCIT:C4455 Lung Adenoma 4 163647 -NCIT:C183045 Bronchiolar Adenoma/Ciliated Muconodular Papillary Tumor 5 163648 -NCIT:C3494 Lung Papillary Adenoma 5 163649 -NCIT:C4140 Alveolar Adenoma 5 163650 -NCIT:C45603 Lung Pleomorphic Adenoma 5 163651 -NCIT:C45604 Lung Mucinous Cystadenoma 5 163652 -NCIT:C5656 Sclerosing Pneumocytoma 5 163653 -NCIT:C5664 Lung Mucous Gland Adenoma 5 163654 -NCIT:C4510 Benign Ovarian Epithelial Tumor 4 163655 -NCIT:C40039 Benign Ovarian Mucinous Tumor 5 163656 -NCIT:C40040 Ovarian Mucinous Adenofibroma 6 163657 -NCIT:C40041 Ovarian Mucinous Cystadenofibroma 7 163658 -NCIT:C4512 Ovarian Mucinous Cystadenoma 6 163659 -NCIT:C40072 Benign Ovarian Endometrioid Tumor 5 163660 -NCIT:C27287 Ovarian Endometrioid Adenofibroma 6 163661 -NCIT:C27288 Ovarian Endometrioid Cystadenofibroma 7 163662 -NCIT:C40075 Ovarian Endometrioid Cystadenoma 6 163663 -NCIT:C40084 Benign Ovarian Clear Cell Tumor 5 163664 -NCIT:C40085 Ovarian Clear Cell Adenofibroma 6 163665 -NCIT:C40086 Ovarian Clear Cell Cystadenofibroma 7 163666 -NCIT:C4060 Ovarian Cystadenoma 5 163667 -NCIT:C126310 Ovarian Seromucinous Cystadenoma 6 163668 -NCIT:C40075 Ovarian Endometrioid Cystadenoma 6 163669 -NCIT:C4511 Ovarian Serous Cystadenoma 6 163670 -NCIT:C7278 Ovarian Papillary Cystadenoma 7 163671 -NCIT:C4512 Ovarian Mucinous Cystadenoma 6 163672 -NCIT:C4746 Benign Ovarian Brenner Tumor 5 163673 -NCIT:C7282 Benign Ovarian Seromucinous Tumor 5 163674 -NCIT:C126310 Ovarian Seromucinous Cystadenoma 6 163675 -NCIT:C126311 Ovarian Seromucinous Adenofibroma 6 163676 -NCIT:C7313 Benign Ovarian Serous Tumor 5 163677 -NCIT:C40031 Ovarian Serous Adenofibroma 6 163678 -NCIT:C40032 Ovarian Serous Cystadenofibroma 7 163679 -NCIT:C4511 Ovarian Serous Cystadenoma 6 163680 -NCIT:C7278 Ovarian Papillary Cystadenoma 7 163681 -NCIT:C7279 Ovarian Surface Papilloma 6 163682 -NCIT:C4526 Kidney Oncocytoma 4 163683 -NCIT:C8960 Hereditary Kidney Oncocytoma 5 163684 -NCIT:C4621 Benign Endocrine Neoplasm 4 163685 -NCIT:C156757 Parathyroid Gland Adenoma 5 163686 -NCIT:C190066 Childhood Parathyroid Gland Adenoma 6 163687 -NCIT:C27393 Parathyroid Gland Oncocytic Adenoma 6 163688 -NCIT:C4154 Parathyroid Gland Chief Cell Adenoma 6 163689 -NCIT:C48283 Parathyroid Gland Lipoadenoma 6 163690 -NCIT:C7993 Parathyroid Gland Clear Cell Adenoma 6 163691 -NCIT:C4155 Parathyroid Gland Water-Clear Cell Adenoma 7 163692 -NCIT:C7994 Parathyroid Gland Mixed Cell Type Adenoma 6 163693 -NCIT:C190600 Childhood Benign Endocrine Neoplasm 5 163694 -NCIT:C190060 Childhood Thyroid Gland Follicular Adenoma 6 163695 -NCIT:C190066 Childhood Parathyroid Gland Adenoma 6 163696 -NCIT:C190068 Childhood Adrenal Cortical Adenoma 6 163697 -NCIT:C3502 Thyroid Gland Follicular Adenoma 5 163698 -NCIT:C155957 Thyroid Gland Spindle Cell Follicular Adenoma 6 163699 -NCIT:C155958 Thyroid Gland Black Follicular Adenoma 6 163700 -NCIT:C187261 Thyroid Gland Follicular Adenoma with Papillary Architecture 6 163701 -NCIT:C190060 Childhood Thyroid Gland Follicular Adenoma 6 163702 -NCIT:C4160 Thyroid Gland Microfollicular Adenoma 6 163703 -NCIT:C4161 Thyroid Gland Macrofollicular Adenoma 6 163704 -NCIT:C46111 Thyroid Gland Follicular Adenoma with Papillary Hyperplasia 6 163705 -NCIT:C46115 Thyroid Gland Signet Ring Cell Follicular Adenoma 6 163706 -NCIT:C46116 Thyroid Gland Mucinous Follicular Adenoma 6 163707 -NCIT:C46118 Thyroid Gland Lipoadenoma 6 163708 -NCIT:C46119 Thyroid Gland Clear Cell Follicular Adenoma 6 163709 -NCIT:C46122 Thyroid Gland Hyperfunctioning Adenoma 6 163710 -NCIT:C46123 Thyroid Gland Follicular Adenoma with Bizarre Nuclei 6 163711 -NCIT:C6042 Thyroid Gland Oncocytic Adenoma 6 163712 -NCIT:C9003 Adrenal Cortical Adenoma 5 163713 -NCIT:C190068 Childhood Adrenal Cortical Adenoma 6 163714 -NCIT:C4163 Adrenal Cortical Compact Cell Adenoma 6 163715 -NCIT:C4164 Pigmented Adrenal Cortical Adenoma 6 163716 -NCIT:C4165 Adrenal Cortical Clear Cell Adenoma 6 163717 -NCIT:C4166 Adrenal Cortical Glomerulosa Cell Adenoma 6 163718 -NCIT:C4167 Adrenal Cortical Mixed Cell Adenoma 6 163719 -NCIT:C48447 Adrenal Cortical Oncocytic Adenoma 6 163720 -NCIT:C48449 Cortisol-Producing Adrenal Cortical Adenoma 6 163721 -NCIT:C48451 Aldosterone-Producing Adrenal Cortical Adenoma 6 163722 -NCIT:C48452 Sex Hormone-Producing Adrenal Cortical Adenoma 6 163723 -NCIT:C48454 Androgen-Producing Adrenal Cortical Adenoma 7 163724 -NCIT:C48456 Estrogen-Producing Adrenal Cortical Adenoma 7 163725 -NCIT:C48458 Non-Functioning Adrenal Cortical Adenoma 6 163726 -NCIT:C4742 Benign Squamous Cell Neoplasm 4 163727 -NCIT:C26913 Verruca Plantaris 5 163728 -NCIT:C27087 Verruca Vulgaris 5 163729 -NCIT:C173475 Oral Verruca Vulgaris 6 163730 -NCIT:C2964 Craniopharyngioma 5 163731 -NCIT:C148076 Unresectable Craniopharyngioma 6 163732 -NCIT:C148077 Recurrent Craniopharyngioma 6 163733 -NCIT:C162612 Recurrent Adamantinomatous Craniopharyngioma 7 163734 -NCIT:C4010 Adult Craniopharyngioma 6 163735 -NCIT:C188949 Adult Adamantinomatous Craniopharyngioma 7 163736 -NCIT:C4725 Papillary Craniopharyngioma 6 163737 -NCIT:C4726 Adamantinomatous Craniopharyngioma 6 163738 -NCIT:C162612 Recurrent Adamantinomatous Craniopharyngioma 7 163739 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 7 163740 -NCIT:C188949 Adult Adamantinomatous Craniopharyngioma 7 163741 -NCIT:C7816 Childhood Craniopharyngioma 6 163742 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 7 163743 -NCIT:C3712 Squamous Papilloma 5 163744 -NCIT:C173476 Oral Squamous Papilloma 6 163745 -NCIT:C5819 Buccal Squamous Papilloma 7 163746 -NCIT:C191740 Squamous Papilloma of the Urinary Tract 6 163747 -NCIT:C39834 Bladder Squamous Papilloma 7 163748 -NCIT:C4355 Eyelid Squamous Papilloma 6 163749 -NCIT:C4369 Nasal Vestibule Squamous Papilloma 6 163750 -NCIT:C45573 Lung Squamous Papilloma 6 163751 -NCIT:C5344 Esophageal Squamous Papilloma 6 163752 -NCIT:C6037 Nasopharyngeal Squamous Papilloma 6 163753 -NCIT:C6038 Oropharyngeal Squamous Papilloma 6 163754 -NCIT:C6224 Conjunctival Squamous Papilloma 6 163755 -NCIT:C6342 Cervical Squamous Papilloma 6 163756 -NCIT:C6374 Vaginal Squamous Papilloma 6 163757 -NCIT:C6376 Vulvar Squamous Papilloma 6 163758 -NCIT:C40290 Vulvar Squamous Papillomatosis 7 163759 -NCIT:C65165 Inverted Squamous Papilloma 6 163760 -NCIT:C7742 Laryngeal Squamous Papilloma 6 163761 -NCIT:C190150 Childhood Laryngeal Squamous Papilloma 7 163762 -NCIT:C96554 Anal Canal Squamous Papilloma 6 163763 -NCIT:C4795 Prostate Adenoma 4 163764 -NCIT:C5913 Oral Cavity Adenoma 4 163765 -NCIT:C6242 Oral Cavity Pleomorphic Adenoma 5 163766 -NCIT:C6211 Soft Palate Pleomorphic Adenoma 6 163767 -NCIT:C6212 Hard Palate Pleomorphic Adenoma 6 163768 -NCIT:C6845 Oral Cavity Monomorphic Adenoma 5 163769 -NCIT:C6844 Hard Palate Monomorphic Adenoma 6 163770 -NCIT:C5978 Salivary Gland Myoepithelioma 4 163771 -NCIT:C6834 Middle Ear Adenoma 4 163772 -NCIT:C7341 Benign Epithelial Skin Neoplasm 4 163773 -NCIT:C167370 Skin Myoepithelioma 5 163774 -NCIT:C26913 Verruca Plantaris 5 163775 -NCIT:C27087 Verruca Vulgaris 5 163776 -NCIT:C173475 Oral Verruca Vulgaris 6 163777 -NCIT:C43315 Benign Outer Hair Sheath and Infundibulum Neoplasm 5 163778 -NCIT:C4113 Trichilemmoma 6 163779 -NCIT:C27521 Classic Type Trichilemmoma 7 163780 -NCIT:C27522 Desmoplastic Trichilemmoma 7 163781 -NCIT:C43325 Trichoadenoma 6 163782 -NCIT:C4468 Pilar Sheath Acanthoma 6 163783 -NCIT:C4469 Tumor of the Follicular Infundibulum 6 163784 -NCIT:C43319 Benign Germinative Follicular Epithelium Neoplasm 5 163785 -NCIT:C168592 Melanocytic Matricoma 6 163786 -NCIT:C27132 Trichoblastoma 6 163787 -NCIT:C27524 Desmoplastic Trichoepithelioma 7 163788 -NCIT:C40314 Vulvar Trichoepithelioma 7 163789 -NCIT:C4112 Trichofolliculoma 6 163790 -NCIT:C7368 Pilomatricoma 6 163791 -NCIT:C190279 Childhood Pilomatricoma 7 163792 -NCIT:C4614 Skin Papilloma 5 163793 -NCIT:C4879 Benign Sweat Gland Neoplasm 5 163794 -NCIT:C167342 Spiradenocylindroma 6 163795 -NCIT:C27094 Cylindroma 6 163796 -NCIT:C43351 Sporadic Cylindroma 7 163797 -NCIT:C43352 Turban Tumor 7 163798 -NCIT:C27273 Poroma 6 163799 -NCIT:C43353 Classical Poroma 7 163800 -NCIT:C4473 Dermal Duct Tumor 7 163801 -NCIT:C3760 Hidrocystoma 6 163802 -NCIT:C43342 Apocrine Hidrocystoma 7 163803 -NCIT:C7565 Eccrine Hidrocystoma 7 163804 -NCIT:C4170 Spiradenoma 6 163805 -NCIT:C5193 Breast Spiradenoma 7 163806 -NCIT:C4171 Hidradenoma Papilliferum 6 163807 -NCIT:C128240 Vulvar Hidradenoma Papilliferum 7 163808 -NCIT:C96699 Anal Hidradenoma Papilliferum 7 163809 -NCIT:C4474 Chondroid Syringoma 6 163810 -NCIT:C6797 Benign Eccrine Neoplasm 6 163811 -NCIT:C162848 Digital Papillary Adenoma 7 163812 -NCIT:C3761 Syringoma 7 163813 -NCIT:C40311 Vulvar Syringoma 8 163814 -NCIT:C43356 Syringofibroadenoma 7 163815 -NCIT:C7565 Eccrine Hidrocystoma 7 163816 -NCIT:C6799 Benign Apocrine Neoplasm 6 163817 -NCIT:C4168 Apocrine Adenoma 7 163818 -NCIT:C27527 Tubular Apocrine Adenoma 8 163819 -NCIT:C43342 Apocrine Hidrocystoma 8 163820 -NCIT:C6088 Ceruminous Adenoma 8 163821 -NCIT:C7560 Sweat Gland Adenoma 6 163822 -NCIT:C4168 Apocrine Adenoma 7 163823 -NCIT:C27527 Tubular Apocrine Adenoma 8 163824 -NCIT:C43342 Apocrine Hidrocystoma 8 163825 -NCIT:C6088 Ceruminous Adenoma 8 163826 -NCIT:C4172 Syringocystadenoma Papilliferum 7 163827 -NCIT:C43356 Syringofibroadenoma 7 163828 -NCIT:C7563 Hidradenoma 7 163829 -NCIT:C7567 Clear Cell Hidradenoma 8 163830 -NCIT:C7568 Nodular Hidradenoma 8 163831 -NCIT:C40312 Vulvar Nodular Hidradenoma 9 163832 -NCIT:C7419 Acanthoma 5 163833 -NCIT:C165485 Lichen Planus-Like Keratosis 6 163834 -NCIT:C27516 Epidermolytic Acanthoma 6 163835 -NCIT:C27517 Acantholytic Acanthoma 6 163836 -NCIT:C27518 Large Cell Acanthoma 6 163837 -NCIT:C4087 Warty Dyskeratoma 6 163838 -NCIT:C4468 Pilar Sheath Acanthoma 6 163839 -NCIT:C4469 Tumor of the Follicular Infundibulum 6 163840 -NCIT:C9006 Seborrheic Keratosis 6 163841 -NCIT:C27548 Melanoacanthoma 7 163842 -NCIT:C4356 Eyelid Seborrheic Keratosis 7 163843 -NCIT:C6375 Vulvar Seborrheic Keratosis 7 163844 -NCIT:C40291 Vulvar Inverted Follicular Keratosis 8 163845 -NCIT:C9007 Inverted Follicular Keratosis 7 163846 -NCIT:C40291 Vulvar Inverted Follicular Keratosis 8 163847 -NCIT:C97041 Clear Cell Acanthoma 6 163848 -NCIT:C7580 Skin Appendage Adenoma 5 163849 -NCIT:C4174 Sebaceous Adenoma 6 163850 -NCIT:C7560 Sweat Gland Adenoma 6 163851 -NCIT:C4168 Apocrine Adenoma 7 163852 -NCIT:C27527 Tubular Apocrine Adenoma 8 163853 -NCIT:C43342 Apocrine Hidrocystoma 8 163854 -NCIT:C6088 Ceruminous Adenoma 8 163855 -NCIT:C4172 Syringocystadenoma Papilliferum 7 163856 -NCIT:C43356 Syringofibroadenoma 7 163857 -NCIT:C7563 Hidradenoma 7 163858 -NCIT:C7567 Clear Cell Hidradenoma 8 163859 -NCIT:C7568 Nodular Hidradenoma 8 163860 -NCIT:C40312 Vulvar Nodular Hidradenoma 9 163861 -NCIT:C8525 Benign Sebaceous Neoplasm 5 163862 -NCIT:C4174 Sebaceous Adenoma 6 163863 -NCIT:C43334 Superficial Epithelioma with Sebaceous Differentiation 6 163864 -NCIT:C43336 Sebaceoma 6 163865 -NCIT:C7440 Papilloma 4 163866 -NCIT:C35839 Salivary Gland Ductal Papilloma 5 163867 -NCIT:C35834 Salivary Gland Intraductal Papilloma 6 163868 -NCIT:C35835 Salivary Gland Inverted Ductal Papilloma 6 163869 -NCIT:C35836 Salivary Gland Sialadenoma Papilliferum 6 163870 -NCIT:C3698 Choroid Plexus Papilloma 5 163871 -NCIT:C5800 Childhood Choroid Plexus Papilloma 6 163872 -NCIT:C3712 Squamous Papilloma 5 163873 -NCIT:C173476 Oral Squamous Papilloma 6 163874 -NCIT:C5819 Buccal Squamous Papilloma 7 163875 -NCIT:C191740 Squamous Papilloma of the Urinary Tract 6 163876 -NCIT:C39834 Bladder Squamous Papilloma 7 163877 -NCIT:C4355 Eyelid Squamous Papilloma 6 163878 -NCIT:C4369 Nasal Vestibule Squamous Papilloma 6 163879 -NCIT:C45573 Lung Squamous Papilloma 6 163880 -NCIT:C5344 Esophageal Squamous Papilloma 6 163881 -NCIT:C6037 Nasopharyngeal Squamous Papilloma 6 163882 -NCIT:C6038 Oropharyngeal Squamous Papilloma 6 163883 -NCIT:C6224 Conjunctival Squamous Papilloma 6 163884 -NCIT:C6342 Cervical Squamous Papilloma 6 163885 -NCIT:C6374 Vaginal Squamous Papilloma 6 163886 -NCIT:C6376 Vulvar Squamous Papilloma 6 163887 -NCIT:C40290 Vulvar Squamous Papillomatosis 7 163888 -NCIT:C65165 Inverted Squamous Papilloma 6 163889 -NCIT:C7742 Laryngeal Squamous Papilloma 6 163890 -NCIT:C190150 Childhood Laryngeal Squamous Papilloma 7 163891 -NCIT:C96554 Anal Canal Squamous Papilloma 6 163892 -NCIT:C3785 Intraductal Papilloma 5 163893 -NCIT:C35834 Salivary Gland Intraductal Papilloma 6 163894 -NCIT:C3863 Breast Intraductal Papilloma 6 163895 -NCIT:C27944 Breast Sclerosing Papilloma 7 163896 -NCIT:C36087 Breast Central Papilloma 7 163897 -NCIT:C36088 Breast Peripheral Papilloma 7 163898 -NCIT:C36089 Breast Atypical Papilloma 7 163899 -NCIT:C5201 Breast Intraductal Papillomatosis 7 163900 -NCIT:C9503 Juvenile Breast Papillomatosis 8 163901 -NCIT:C3793 Inverted Papilloma 5 163902 -NCIT:C175334 Lacrimal Drainage System Inverted Papilloma 6 163903 -NCIT:C35835 Salivary Gland Inverted Ductal Papilloma 6 163904 -NCIT:C4118 Inverted Transitional Cell Papilloma 6 163905 -NCIT:C6192 Inverted Urothelial Papilloma 7 163906 -NCIT:C39859 Bladder Inverted Papilloma 8 163907 -NCIT:C6173 Urethral Inverted Papilloma 8 163908 -NCIT:C6174 Ureter Inverted Papilloma 8 163909 -NCIT:C6187 Renal Pelvis Inverted Papilloma 8 163910 -NCIT:C65165 Inverted Squamous Papilloma 6 163911 -NCIT:C6871 Sinonasal Inverted Papilloma 6 163912 -NCIT:C115432 Recurrent Sinonasal Inverted Papilloma 7 163913 -NCIT:C8194 Nasal Cavity Inverted Papilloma 7 163914 -NCIT:C8195 Paranasal Sinus Inverted Papilloma 7 163915 -NCIT:C6840 Maxillary Sinus Inverted Papilloma 8 163916 -NCIT:C6841 Sphenoid Sinus Inverted Papilloma 8 163917 -NCIT:C6842 Frontal Sinus Inverted Papilloma 8 163918 -NCIT:C6843 Ethmoid Sinus Inverted Papilloma 8 163919 -NCIT:C40112 Fallopian Tube Serous Papilloma 5 163920 -NCIT:C4061 Eyelid Papilloma 5 163921 -NCIT:C4355 Eyelid Squamous Papilloma 6 163922 -NCIT:C4115 Transitional Cell Papilloma 5 163923 -NCIT:C3842 Urothelial Papilloma 6 163924 -NCIT:C39858 Bladder Urothelial Papilloma 7 163925 -NCIT:C39859 Bladder Inverted Papilloma 8 163926 -NCIT:C4528 Renal Pelvis Urothelial Papilloma 7 163927 -NCIT:C6187 Renal Pelvis Inverted Papilloma 8 163928 -NCIT:C5061 Urethral Urothelial Papilloma 7 163929 -NCIT:C6173 Urethral Inverted Papilloma 8 163930 -NCIT:C6160 Ureter Urothelial Papilloma 7 163931 -NCIT:C6174 Ureter Inverted Papilloma 8 163932 -NCIT:C6192 Inverted Urothelial Papilloma 7 163933 -NCIT:C39859 Bladder Inverted Papilloma 8 163934 -NCIT:C6173 Urethral Inverted Papilloma 8 163935 -NCIT:C6174 Ureter Inverted Papilloma 8 163936 -NCIT:C6187 Renal Pelvis Inverted Papilloma 8 163937 -NCIT:C4118 Inverted Transitional Cell Papilloma 6 163938 -NCIT:C6192 Inverted Urothelial Papilloma 7 163939 -NCIT:C39859 Bladder Inverted Papilloma 8 163940 -NCIT:C6173 Urethral Inverted Papilloma 8 163941 -NCIT:C6174 Ureter Inverted Papilloma 8 163942 -NCIT:C6187 Renal Pelvis Inverted Papilloma 8 163943 -NCIT:C4181 Serous Surface Papilloma 5 163944 -NCIT:C7279 Ovarian Surface Papilloma 6 163945 -NCIT:C4614 Skin Papilloma 5 163946 -NCIT:C6880 Glandular Papilloma 5 163947 -NCIT:C175332 Lacrimal Drainage System Exophytic Papilloma 6 163948 -NCIT:C189336 Mullerian Papilloma 6 163949 -NCIT:C189337 Childhood Mullerian Papilloma 7 163950 -NCIT:C40215 Cervical Mullerian Papilloma 7 163951 -NCIT:C40255 Vaginal Mullerian Papilloma 7 163952 -NCIT:C4117 Sinonasal Papilloma 6 163953 -NCIT:C164251 Sinonasal Exophytic Papilloma 7 163954 -NCIT:C54347 Nasal Cavity Exophytic Papilloma 8 163955 -NCIT:C164256 Nasal Cavity Papilloma 7 163956 -NCIT:C54347 Nasal Cavity Exophytic Papilloma 8 163957 -NCIT:C8194 Nasal Cavity Inverted Papilloma 8 163958 -NCIT:C54345 Sinonasal Oncocytic Papilloma 7 163959 -NCIT:C6835 Paranasal Sinus Papilloma 7 163960 -NCIT:C6836 Ethmoid Sinus Papilloma 8 163961 -NCIT:C6843 Ethmoid Sinus Inverted Papilloma 9 163962 -NCIT:C6837 Frontal Sinus Papilloma 8 163963 -NCIT:C6842 Frontal Sinus Inverted Papilloma 9 163964 -NCIT:C6838 Sphenoid Sinus Papilloma 8 163965 -NCIT:C6841 Sphenoid Sinus Inverted Papilloma 9 163966 -NCIT:C6839 Maxillary Sinus Papilloma 8 163967 -NCIT:C6840 Maxillary Sinus Inverted Papilloma 9 163968 -NCIT:C8195 Paranasal Sinus Inverted Papilloma 8 163969 -NCIT:C6840 Maxillary Sinus Inverted Papilloma 9 163970 -NCIT:C6841 Sphenoid Sinus Inverted Papilloma 9 163971 -NCIT:C6842 Frontal Sinus Inverted Papilloma 9 163972 -NCIT:C6843 Ethmoid Sinus Inverted Papilloma 9 163973 -NCIT:C6871 Sinonasal Inverted Papilloma 7 163974 -NCIT:C115432 Recurrent Sinonasal Inverted Papilloma 8 163975 -NCIT:C8194 Nasal Cavity Inverted Papilloma 8 163976 -NCIT:C8195 Paranasal Sinus Inverted Papilloma 8 163977 -NCIT:C6840 Maxillary Sinus Inverted Papilloma 9 163978 -NCIT:C6841 Sphenoid Sinus Inverted Papilloma 9 163979 -NCIT:C6842 Frontal Sinus Inverted Papilloma 9 163980 -NCIT:C6843 Ethmoid Sinus Inverted Papilloma 9 163981 -NCIT:C45601 Bronchial Glandular Papilloma 6 163982 -NCIT:C8295 Bronchial Papilloma 5 163983 -NCIT:C45573 Lung Squamous Papilloma 6 163984 -NCIT:C45601 Bronchial Glandular Papilloma 6 163985 -NCIT:C45602 Bronchial Mixed Squamous Cell and Glandular Papilloma 6 163986 -NCIT:C8961 Fundic Gland Polyp 4 163987 -NCIT:C95470 Pancreatic Serous Adenoma 4 163988 -NCIT:C5712 Pancreatic Serous Cystadenoma 5 163989 -NCIT:C95471 Pancreatic Macrocystic Serous Cystadenoma 5 163990 -NCIT:C95475 Pancreatic Solid Serous Adenoma 5 163991 -NCIT:C95476 Von Hippel Lindau Syndrome-Associated Pancreatic Serous Adenoma 5 163992 -NCIT:C4381 Ovarian Epithelial Tumor 3 163993 -NCIT:C179548 Ovarian Wolffian Tumor 4 163994 -NCIT:C3872 Ovarian Brenner Tumor 4 163995 -NCIT:C4270 Malignant Ovarian Brenner Tumor 5 163996 -NCIT:C153818 Recurrent Malignant Ovarian Brenner Tumor 6 163997 -NCIT:C183126 Refractory Malignant Ovarian Brenner Tumor 6 163998 -NCIT:C4746 Benign Ovarian Brenner Tumor 5 163999 -NCIT:C9459 Borderline Ovarian Brenner Tumor 5 164000 -NCIT:C40026 Malignant Ovarian Epithelial Tumor 4 164001 -NCIT:C40025 Malignant Ovarian Serous Tumor 5 164002 -NCIT:C67092 Ovarian Serous Adenocarcinofibroma 6 164003 -NCIT:C7550 Ovarian Serous Adenocarcinoma 6 164004 -NCIT:C105555 Ovarian High Grade Serous Adenocarcinoma 7 164005 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 8 164006 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 8 164007 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 8 164008 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 164009 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 8 164010 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 164011 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 164012 -NCIT:C105556 Ovarian Low Grade Serous Adenocarcinoma 7 164013 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 8 164014 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 8 164015 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 7 164016 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 8 164017 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 8 164018 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 8 164019 -NCIT:C160781 Unresectable Ovarian Serous Adenocarcinoma 7 164020 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 8 164021 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 164022 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 7 164023 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 164024 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 164025 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 164026 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 8 164027 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 164028 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 164029 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 8 164030 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 164031 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 164032 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 164033 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 164034 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 164035 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 7 164036 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 8 164037 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 8 164038 -NCIT:C6256 Ovarian Serous Surface Papillary Adenocarcinoma 7 164039 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 7 164040 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 8 164041 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 164042 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 164043 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 8 164044 -NCIT:C40033 Malignant Ovarian Mucinous Tumor 5 164045 -NCIT:C40034 Ovarian Mucinous Adenocarcinofibroma 6 164046 -NCIT:C5243 Ovarian Mucinous Adenocarcinoma 6 164047 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 7 164048 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 7 164049 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 7 164050 -NCIT:C183245 Unresectable Ovarian Mucinous Adenocarcinoma 7 164051 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 7 164052 -NCIT:C40051 Malignant Ovarian Endometrioid Tumor 5 164053 -NCIT:C7979 Ovarian Endometrioid Adenocarcinoma 6 164054 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 7 164055 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 7 164056 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 7 164057 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 164058 -NCIT:C186273 Unresectable Ovarian Endometrioid Adenocarcinoma 7 164059 -NCIT:C40061 Ovarian Endometrioid Adenocarcinoma with Squamous Differentiation 7 164060 -NCIT:C9192 Ovarian Carcinosarcoma 6 164061 -NCIT:C153347 Recurrent Ovarian Carcinosarcoma 7 164062 -NCIT:C170933 Metastatic Ovarian Carcinosarcoma 7 164063 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 8 164064 -NCIT:C40077 Malignant Ovarian Clear Cell Tumor 5 164065 -NCIT:C40078 Ovarian Clear Cell Adenocarcinoma 6 164066 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 7 164067 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 7 164068 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 164069 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 7 164070 -NCIT:C7980 Ovarian Clear Cell Cystadenocarcinoma 7 164071 -NCIT:C40079 Ovarian Clear Cell Adenocarcinofibroma 6 164072 -NCIT:C4908 Ovarian Carcinoma 5 164073 -NCIT:C128081 Ovarian Cancer by FIGO Stage 6 164074 -NCIT:C128082 FIGO Stage IC1 Ovarian Cancer 7 164075 -NCIT:C128083 FIGO Stage IC2 Ovarian Cancer 7 164076 -NCIT:C128084 FIGO Stage IC3 Ovarian Cancer 7 164077 -NCIT:C128085 FIGO Stage II Ovarian Cancer 7 164078 -NCIT:C5223 Stage IIA Ovarian Cancer AJCC V6 and v7 8 164079 -NCIT:C5224 Stage IIB Ovarian Cancer AJCC v6 and v7 8 164080 -NCIT:C128086 FIGO Stage III Ovarian Cancer 7 164081 -NCIT:C128087 FIGO Stage IIIA Ovarian Cancer 8 164082 -NCIT:C128088 FIGO Stage IIIA1 Ovarian Cancer 9 164083 -NCIT:C128089 FIGO Stage IIIA1(i) Ovarian Cancer 10 164084 -NCIT:C128090 FIGO Stage IIIA1(ii) Ovarian Cancer 10 164085 -NCIT:C128091 FIGO Stage IIIA2 Ovarian Cancer 9 164086 -NCIT:C128092 FIGO Stage IIIB Ovarian Cancer 8 164087 -NCIT:C128093 FIGO Stage IIIC Ovarian Cancer 8 164088 -NCIT:C128094 FIGO Stage IVA Ovarian Cancer 7 164089 -NCIT:C128095 FIGO Stage IVB Ovarian Cancer 7 164090 -NCIT:C7829 Stage I Ovarian Cancer AJCC v6 and v7 7 164091 -NCIT:C5220 Stage IA Ovarian Cancer AJCC v6 and v7 8 164092 -NCIT:C5221 Stage IB Ovarian Cancer AJCC v6 and v7 8 164093 -NCIT:C5222 Stage IC Ovarian Cancer AJCC v6 and v7 8 164094 -NCIT:C7832 Stage IV Ovarian Cancer AJCC v6 and v7 7 164095 -NCIT:C128106 Ovarian Cancer by AJCC v6 and v7 Stage 6 164096 -NCIT:C7829 Stage I Ovarian Cancer AJCC v6 and v7 7 164097 -NCIT:C5220 Stage IA Ovarian Cancer AJCC v6 and v7 8 164098 -NCIT:C5221 Stage IB Ovarian Cancer AJCC v6 and v7 8 164099 -NCIT:C5222 Stage IC Ovarian Cancer AJCC v6 and v7 8 164100 -NCIT:C7830 Stage II Ovarian Cancer AJCC v6 and v7 7 164101 -NCIT:C5223 Stage IIA Ovarian Cancer AJCC V6 and v7 8 164102 -NCIT:C5224 Stage IIB Ovarian Cancer AJCC v6 and v7 8 164103 -NCIT:C5225 Stage IIC Ovarian Cancer AJCC v6 and v7 8 164104 -NCIT:C7831 Stage III Ovarian Cancer AJCC v6 and v7 7 164105 -NCIT:C6258 Stage IIIA Ovarian Cancer AJCC v6 and v7 8 164106 -NCIT:C6259 Stage IIIB Ovarian Cancer AJCC v6 and v7 8 164107 -NCIT:C6260 Stage IIIC Ovarian Cancer AJCC v6 and v7 8 164108 -NCIT:C7832 Stage IV Ovarian Cancer AJCC v6 and v7 7 164109 -NCIT:C139963 Ovarian Cancer by AJCC v8 Stage 6 164110 -NCIT:C139964 Stage I Ovarian Cancer AJCC v8 7 164111 -NCIT:C139965 Stage IA Ovarian Cancer AJCC v8 8 164112 -NCIT:C139966 Stage IB Ovarian Cancer AJCC v8 8 164113 -NCIT:C139967 Stage IC Ovarian Cancer AJCC v8 8 164114 -NCIT:C139968 Stage II Ovarian Cancer AJCC v8 7 164115 -NCIT:C139969 Stage IIA Ovarian Cancer AJCC v8 8 164116 -NCIT:C139970 Stage IIB Ovarian Cancer AJCC v8 8 164117 -NCIT:C139971 Stage III Ovarian Cancer AJCC v8 7 164118 -NCIT:C139972 Stage IIIA Ovarian Cancer AJCC v8 8 164119 -NCIT:C139973 Stage IIIA1 Ovarian Cancer AJCC v8 9 164120 -NCIT:C139974 Stage IIIA2 Ovarian Cancer AJCC v8 9 164121 -NCIT:C139975 Stage IIIB Ovarian Cancer AJCC v8 8 164122 -NCIT:C139976 Stage IIIC Ovarian Cancer AJCC v8 8 164123 -NCIT:C139977 Stage IV Ovarian Cancer AJCC v8 7 164124 -NCIT:C139978 Stage IVA Ovarian Cancer AJCC v8 8 164125 -NCIT:C139979 Stage IVB Ovarian Cancer AJCC v8 8 164126 -NCIT:C150091 Refractory Ovarian Carcinoma 6 164127 -NCIT:C147561 Platinum-Resistant Ovarian Carcinoma 7 164128 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 8 164129 -NCIT:C179459 Unresectable Platinum-Resistant Ovarian Carcinoma 8 164130 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 8 164131 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 164132 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 164133 -NCIT:C170968 Refractory Ovarian Adenocarcinoma 7 164134 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 8 164135 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 8 164136 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 9 164137 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 9 164138 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 8 164139 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 8 164140 -NCIT:C178671 Refractory Ovarian Seromucinous Carcinoma 7 164141 -NCIT:C178682 Refractory Ovarian Transitional Cell Carcinoma 7 164142 -NCIT:C178683 Refractory Ovarian Undifferentiated Carcinoma 7 164143 -NCIT:C178700 Platinum-Refractory Ovarian Carcinoma 7 164144 -NCIT:C179207 Refractory Ovarian Squamous Cell Carcinoma 7 164145 -NCIT:C183126 Refractory Malignant Ovarian Brenner Tumor 7 164146 -NCIT:C156064 Metastatic Ovarian Carcinoma 6 164147 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 7 164148 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 164149 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 164150 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 164151 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 8 164152 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 164153 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 164154 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 8 164155 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 164156 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 164157 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 164158 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 164159 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 164160 -NCIT:C165458 Advanced Ovarian Carcinoma 7 164161 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 164162 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 164163 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 164164 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 164165 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 164166 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 8 164167 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 8 164168 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 7 164169 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 164170 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 164171 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 164172 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 8 164173 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 7 164174 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 164175 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 7 164176 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 164177 -NCIT:C172234 Metastatic Ovarian Undifferentiated Carcinoma 7 164178 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 7 164179 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 8 164180 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 8 164181 -NCIT:C180333 Metastatic Microsatellite Stable Ovarian Carcinoma 7 164182 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 8 164183 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 7 164184 -NCIT:C27391 Metastatic Ovarian Small Cell Carcinoma, Hypercalcemic Type 7 164185 -NCIT:C159902 Platinum-Sensitive Ovarian Carcinoma 6 164186 -NCIT:C188391 Recurrent Platinum-Sensitive Ovarian Carcinoma 7 164187 -NCIT:C167073 Unresectable Ovarian Carcinoma 6 164188 -NCIT:C160781 Unresectable Ovarian Serous Adenocarcinoma 7 164189 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 8 164190 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 164191 -NCIT:C172235 Unresectable Ovarian Undifferentiated Carcinoma 7 164192 -NCIT:C179459 Unresectable Platinum-Resistant Ovarian Carcinoma 7 164193 -NCIT:C183245 Unresectable Ovarian Mucinous Adenocarcinoma 7 164194 -NCIT:C186273 Unresectable Ovarian Endometrioid Adenocarcinoma 7 164195 -NCIT:C171032 Ovarian Neuroendocrine Carcinoma 6 164196 -NCIT:C40440 Ovarian Small Cell Carcinoma, Pulmonary-Type 7 164197 -NCIT:C5238 Ovarian Large Cell Neuroendocrine Carcinoma 7 164198 -NCIT:C179334 Ovarian Dedifferentiated Carcinoma 6 164199 -NCIT:C180332 Microsatellite Stable Ovarian Carcinoma 6 164200 -NCIT:C180333 Metastatic Microsatellite Stable Ovarian Carcinoma 7 164201 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 8 164202 -NCIT:C27390 Ovarian Small Cell Carcinoma 6 164203 -NCIT:C40439 Ovarian Small Cell Carcinoma, Hypercalcemic Type 7 164204 -NCIT:C189334 Childhood Ovarian Small Cell Carcinoma, Hypercalcemic Type 8 164205 -NCIT:C27391 Metastatic Ovarian Small Cell Carcinoma, Hypercalcemic Type 8 164206 -NCIT:C40440 Ovarian Small Cell Carcinoma, Pulmonary-Type 7 164207 -NCIT:C36102 Hereditary Ovarian Carcinoma 6 164208 -NCIT:C148024 BRCA-Associated Ovarian Carcinoma 7 164209 -NCIT:C148025 Recurrent BRCA- Associated Ovarian Carcinoma 8 164210 -NCIT:C40090 Ovarian Seromucinous Carcinoma 6 164211 -NCIT:C178669 Recurrent Ovarian Seromucinous Carcinoma 7 164212 -NCIT:C178671 Refractory Ovarian Seromucinous Carcinoma 7 164213 -NCIT:C40093 Ovarian Squamous Cell Carcinoma 6 164214 -NCIT:C179207 Refractory Ovarian Squamous Cell Carcinoma 7 164215 -NCIT:C4270 Malignant Ovarian Brenner Tumor 6 164216 -NCIT:C153818 Recurrent Malignant Ovarian Brenner Tumor 7 164217 -NCIT:C183126 Refractory Malignant Ovarian Brenner Tumor 7 164218 -NCIT:C4509 Ovarian Undifferentiated Carcinoma 6 164219 -NCIT:C170754 Recurrent Ovarian Undifferentiated Carcinoma 7 164220 -NCIT:C172234 Metastatic Ovarian Undifferentiated Carcinoma 7 164221 -NCIT:C172235 Unresectable Ovarian Undifferentiated Carcinoma 7 164222 -NCIT:C178683 Refractory Ovarian Undifferentiated Carcinoma 7 164223 -NCIT:C5240 Ovarian Transitional Cell Carcinoma 6 164224 -NCIT:C153819 Recurrent Ovarian Transitional Cell Carcinoma 7 164225 -NCIT:C178682 Refractory Ovarian Transitional Cell Carcinoma 7 164226 -NCIT:C7700 Ovarian Adenocarcinoma 6 164227 -NCIT:C153614 Recurrent Ovarian Adenocarcinoma 7 164228 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 8 164229 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 8 164230 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 9 164231 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 9 164232 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 9 164233 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 8 164234 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 8 164235 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 9 164236 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 8 164237 -NCIT:C170968 Refractory Ovarian Adenocarcinoma 7 164238 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 8 164239 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 8 164240 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 9 164241 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 9 164242 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 8 164243 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 8 164244 -NCIT:C179208 Ovarian Signet Ring Cell Carcinoma 7 164245 -NCIT:C179321 Ovarian Mesonephric-Like Adenocarcinoma 7 164246 -NCIT:C179339 Ovarian Mixed Cell Adenocarcinoma 7 164247 -NCIT:C40078 Ovarian Clear Cell Adenocarcinoma 7 164248 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 8 164249 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 8 164250 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 164251 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 8 164252 -NCIT:C7980 Ovarian Clear Cell Cystadenocarcinoma 8 164253 -NCIT:C5228 Ovarian Cystadenocarcinoma 7 164254 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 8 164255 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 9 164256 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 8 164257 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 8 164258 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 9 164259 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 164260 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 164261 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 9 164262 -NCIT:C7980 Ovarian Clear Cell Cystadenocarcinoma 8 164263 -NCIT:C5243 Ovarian Mucinous Adenocarcinoma 7 164264 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 8 164265 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 8 164266 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 8 164267 -NCIT:C183245 Unresectable Ovarian Mucinous Adenocarcinoma 8 164268 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 8 164269 -NCIT:C7550 Ovarian Serous Adenocarcinoma 7 164270 -NCIT:C105555 Ovarian High Grade Serous Adenocarcinoma 8 164271 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 9 164272 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 9 164273 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 9 164274 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 164275 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 9 164276 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 164277 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 164278 -NCIT:C105556 Ovarian Low Grade Serous Adenocarcinoma 8 164279 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 9 164280 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 9 164281 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 8 164282 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 9 164283 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 9 164284 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 9 164285 -NCIT:C160781 Unresectable Ovarian Serous Adenocarcinoma 8 164286 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 9 164287 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 164288 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 8 164289 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 164290 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 164291 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 164292 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 9 164293 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 164294 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 164295 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 9 164296 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 164297 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 164298 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 164299 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 164300 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 164301 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 8 164302 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 9 164303 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 9 164304 -NCIT:C6256 Ovarian Serous Surface Papillary Adenocarcinoma 8 164305 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 8 164306 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 9 164307 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 164308 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 164309 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 9 164310 -NCIT:C7979 Ovarian Endometrioid Adenocarcinoma 7 164311 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 8 164312 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 8 164313 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 8 164314 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 164315 -NCIT:C186273 Unresectable Ovarian Endometrioid Adenocarcinoma 8 164316 -NCIT:C40061 Ovarian Endometrioid Adenocarcinoma with Squamous Differentiation 8 164317 -NCIT:C7833 Recurrent Ovarian Carcinoma 6 164318 -NCIT:C148025 Recurrent BRCA- Associated Ovarian Carcinoma 7 164319 -NCIT:C153614 Recurrent Ovarian Adenocarcinoma 7 164320 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 8 164321 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 8 164322 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 9 164323 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 9 164324 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 9 164325 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 8 164326 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 8 164327 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 9 164328 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 8 164329 -NCIT:C153818 Recurrent Malignant Ovarian Brenner Tumor 7 164330 -NCIT:C153819 Recurrent Ovarian Transitional Cell Carcinoma 7 164331 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 7 164332 -NCIT:C170754 Recurrent Ovarian Undifferentiated Carcinoma 7 164333 -NCIT:C178669 Recurrent Ovarian Seromucinous Carcinoma 7 164334 -NCIT:C188391 Recurrent Platinum-Sensitive Ovarian Carcinoma 7 164335 -NCIT:C190201 Locally Recurrent Ovarian Carcinoma 7 164336 -NCIT:C40076 Ovarian Clear Cell Tumor 4 164337 -NCIT:C40077 Malignant Ovarian Clear Cell Tumor 5 164338 -NCIT:C40078 Ovarian Clear Cell Adenocarcinoma 6 164339 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 7 164340 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 7 164341 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 164342 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 7 164343 -NCIT:C7980 Ovarian Clear Cell Cystadenocarcinoma 7 164344 -NCIT:C40079 Ovarian Clear Cell Adenocarcinofibroma 6 164345 -NCIT:C40080 Borderline Ovarian Clear Cell Tumor 5 164346 -NCIT:C40081 Borderline Ovarian Clear Cell Adenofibroma 6 164347 -NCIT:C126308 Borderline Ovarian Clear Cell Tumor/Atypical Proliferative Ovarian Clear Cell Tumor 7 164348 -NCIT:C40082 Borderline Ovarian Clear Cell Tumor/Atypical Proliferative Ovarian Clear Cell Tumor with Intraepithelial Carcinoma 8 164349 -NCIT:C40083 Borderline Ovarian Clear Cell Cystadenofibroma 7 164350 -NCIT:C40084 Benign Ovarian Clear Cell Tumor 5 164351 -NCIT:C40085 Ovarian Clear Cell Adenofibroma 6 164352 -NCIT:C40086 Ovarian Clear Cell Cystadenofibroma 7 164353 -NCIT:C4508 Ovarian Seromucinous Tumor 4 164354 -NCIT:C179259 Borderline Ovarian Seromucinous Tumor 5 164355 -NCIT:C159313 Borderline Ovarian Seromucinous Tumor/Atypical Proliferative Ovarian Seromucinous Tumor with Microinvasion 6 164356 -NCIT:C7281 Borderline Ovarian Seromucinous Tumor/Atypical Proliferative Ovarian Seromucinous Tumor 6 164357 -NCIT:C40090 Ovarian Seromucinous Carcinoma 5 164358 -NCIT:C178669 Recurrent Ovarian Seromucinous Carcinoma 6 164359 -NCIT:C178671 Refractory Ovarian Seromucinous Carcinoma 6 164360 -NCIT:C7282 Benign Ovarian Seromucinous Tumor 5 164361 -NCIT:C126310 Ovarian Seromucinous Cystadenoma 6 164362 -NCIT:C126311 Ovarian Seromucinous Adenofibroma 6 164363 -NCIT:C4510 Benign Ovarian Epithelial Tumor 4 164364 -NCIT:C40039 Benign Ovarian Mucinous Tumor 5 164365 -NCIT:C40040 Ovarian Mucinous Adenofibroma 6 164366 -NCIT:C40041 Ovarian Mucinous Cystadenofibroma 7 164367 -NCIT:C4512 Ovarian Mucinous Cystadenoma 6 164368 -NCIT:C40072 Benign Ovarian Endometrioid Tumor 5 164369 -NCIT:C27287 Ovarian Endometrioid Adenofibroma 6 164370 -NCIT:C27288 Ovarian Endometrioid Cystadenofibroma 7 164371 -NCIT:C40075 Ovarian Endometrioid Cystadenoma 6 164372 -NCIT:C40084 Benign Ovarian Clear Cell Tumor 5 164373 -NCIT:C40085 Ovarian Clear Cell Adenofibroma 6 164374 -NCIT:C40086 Ovarian Clear Cell Cystadenofibroma 7 164375 -NCIT:C4060 Ovarian Cystadenoma 5 164376 -NCIT:C126310 Ovarian Seromucinous Cystadenoma 6 164377 -NCIT:C40075 Ovarian Endometrioid Cystadenoma 6 164378 -NCIT:C4511 Ovarian Serous Cystadenoma 6 164379 -NCIT:C7278 Ovarian Papillary Cystadenoma 7 164380 -NCIT:C4512 Ovarian Mucinous Cystadenoma 6 164381 -NCIT:C4746 Benign Ovarian Brenner Tumor 5 164382 -NCIT:C7282 Benign Ovarian Seromucinous Tumor 5 164383 -NCIT:C126310 Ovarian Seromucinous Cystadenoma 6 164384 -NCIT:C126311 Ovarian Seromucinous Adenofibroma 6 164385 -NCIT:C7313 Benign Ovarian Serous Tumor 5 164386 -NCIT:C40031 Ovarian Serous Adenofibroma 6 164387 -NCIT:C40032 Ovarian Serous Cystadenofibroma 7 164388 -NCIT:C4511 Ovarian Serous Cystadenoma 6 164389 -NCIT:C7278 Ovarian Papillary Cystadenoma 7 164390 -NCIT:C7279 Ovarian Surface Papilloma 6 164391 -NCIT:C4783 Borderline Ovarian Epithelial Tumor 4 164392 -NCIT:C115352 Recurrent Borderline Ovarian Surface Epithelial-Stromal Tumor 5 164393 -NCIT:C158616 Borderline Ovarian Mixed Epithelial Tumor/Atypical Proliferative Ovarian Mixed Epithelial Tumor 5 164394 -NCIT:C7281 Borderline Ovarian Seromucinous Tumor/Atypical Proliferative Ovarian Seromucinous Tumor 6 164395 -NCIT:C179251 Borderline Ovarian Endometrioid Tumor 5 164396 -NCIT:C159486 Borderline Ovarian Endometrioid Tumor/Atypical Proliferative Ovarian Endometrioid Tumor with Microinvasion 6 164397 -NCIT:C7983 Borderline Ovarian Endometrioid Tumor/Atypical Proliferative Ovarian Endometrioid Tumor 6 164398 -NCIT:C40069 Borderline Ovarian Endometrioid Adenofibroma 7 164399 -NCIT:C27289 Borderline Ovarian Endometrioid Cystadenofibroma 8 164400 -NCIT:C179259 Borderline Ovarian Seromucinous Tumor 5 164401 -NCIT:C159313 Borderline Ovarian Seromucinous Tumor/Atypical Proliferative Ovarian Seromucinous Tumor with Microinvasion 6 164402 -NCIT:C7281 Borderline Ovarian Seromucinous Tumor/Atypical Proliferative Ovarian Seromucinous Tumor 6 164403 -NCIT:C40036 Borderline Ovarian Mucinous Tumor 5 164404 -NCIT:C122586 Borderline Ovarian Mucinous Tumor/Atypical Proliferative Ovarian Mucinous Tumor 6 164405 -NCIT:C159312 Borderline Ovarian Mucinous Tumor/Atypical Proliferative Ovarian Mucinous Tumor with Intraepithelial Carcinoma 7 164406 -NCIT:C40037 Borderline Ovarian Mucinous Tumor, Intestinal Type 6 164407 -NCIT:C40038 Borderline Ovarian Mucinous Tumor, Endocervical-Like 6 164408 -NCIT:C66775 Borderline Ovarian Mucinous Adenofibroma 6 164409 -NCIT:C40080 Borderline Ovarian Clear Cell Tumor 5 164410 -NCIT:C40081 Borderline Ovarian Clear Cell Adenofibroma 6 164411 -NCIT:C126308 Borderline Ovarian Clear Cell Tumor/Atypical Proliferative Ovarian Clear Cell Tumor 7 164412 -NCIT:C40082 Borderline Ovarian Clear Cell Tumor/Atypical Proliferative Ovarian Clear Cell Tumor with Intraepithelial Carcinoma 8 164413 -NCIT:C40083 Borderline Ovarian Clear Cell Cystadenofibroma 7 164414 -NCIT:C5226 Borderline Ovarian Serous Tumor 5 164415 -NCIT:C122584 Borderline Ovarian Serous Tumor/Atypical Proliferative Ovarian Serous Tumor 6 164416 -NCIT:C122585 Borderline Ovarian Serous Tumor-Micropapillary Variant/Non-Invasive Low Grade Ovarian Serous Carcinoma 6 164417 -NCIT:C40028 Borderline Ovarian Serous Adenofibroma 6 164418 -NCIT:C40029 Borderline Ovarian Serous Cystadenofibroma 7 164419 -NCIT:C9459 Borderline Ovarian Brenner Tumor 5 164420 -NCIT:C94821 Stage I Borderline Ovarian Surface Epithelial-Stromal Tumor 5 164421 -NCIT:C94822 Stage II Borderline Ovarian Surface Epithelial-Stromal Tumor 5 164422 -NCIT:C94824 Stage III Borderline Ovarian Surface Epithelial-Stromal Tumor 5 164423 -NCIT:C94825 Stage IV Borderline Ovarian Surface Epithelial-Stromal Tumor 5 164424 -NCIT:C5242 Ovarian Mucinous Tumor 4 164425 -NCIT:C159311 Borderline Ovarian Mucinous Tumor/Atypical Proliferative Ovarian Mucinous Tumor with Microinvasion 5 164426 -NCIT:C40033 Malignant Ovarian Mucinous Tumor 5 164427 -NCIT:C40034 Ovarian Mucinous Adenocarcinofibroma 6 164428 -NCIT:C5243 Ovarian Mucinous Adenocarcinoma 6 164429 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 7 164430 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 7 164431 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 7 164432 -NCIT:C183245 Unresectable Ovarian Mucinous Adenocarcinoma 7 164433 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 7 164434 -NCIT:C40036 Borderline Ovarian Mucinous Tumor 5 164435 -NCIT:C122586 Borderline Ovarian Mucinous Tumor/Atypical Proliferative Ovarian Mucinous Tumor 6 164436 -NCIT:C159312 Borderline Ovarian Mucinous Tumor/Atypical Proliferative Ovarian Mucinous Tumor with Intraepithelial Carcinoma 7 164437 -NCIT:C40037 Borderline Ovarian Mucinous Tumor, Intestinal Type 6 164438 -NCIT:C40038 Borderline Ovarian Mucinous Tumor, Endocervical-Like 6 164439 -NCIT:C66775 Borderline Ovarian Mucinous Adenofibroma 6 164440 -NCIT:C40039 Benign Ovarian Mucinous Tumor 5 164441 -NCIT:C40040 Ovarian Mucinous Adenofibroma 6 164442 -NCIT:C40041 Ovarian Mucinous Cystadenofibroma 7 164443 -NCIT:C4512 Ovarian Mucinous Cystadenoma 6 164444 -NCIT:C40042 Ovarian Mucinous Cystic Tumor with Mural Nodules 5 164445 -NCIT:C40043 Ovarian Mucinous Cystic Tumor Associated with Pseudomyxoma Peritonei 5 164446 -NCIT:C6257 Ovarian Endometrioid Tumor 4 164447 -NCIT:C179251 Borderline Ovarian Endometrioid Tumor 5 164448 -NCIT:C159486 Borderline Ovarian Endometrioid Tumor/Atypical Proliferative Ovarian Endometrioid Tumor with Microinvasion 6 164449 -NCIT:C7983 Borderline Ovarian Endometrioid Tumor/Atypical Proliferative Ovarian Endometrioid Tumor 6 164450 -NCIT:C40069 Borderline Ovarian Endometrioid Adenofibroma 7 164451 -NCIT:C27289 Borderline Ovarian Endometrioid Cystadenofibroma 8 164452 -NCIT:C40051 Malignant Ovarian Endometrioid Tumor 5 164453 -NCIT:C7979 Ovarian Endometrioid Adenocarcinoma 6 164454 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 7 164455 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 7 164456 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 7 164457 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 164458 -NCIT:C186273 Unresectable Ovarian Endometrioid Adenocarcinoma 7 164459 -NCIT:C40061 Ovarian Endometrioid Adenocarcinoma with Squamous Differentiation 7 164460 -NCIT:C9192 Ovarian Carcinosarcoma 6 164461 -NCIT:C153347 Recurrent Ovarian Carcinosarcoma 7 164462 -NCIT:C170933 Metastatic Ovarian Carcinosarcoma 7 164463 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 8 164464 -NCIT:C40072 Benign Ovarian Endometrioid Tumor 5 164465 -NCIT:C27287 Ovarian Endometrioid Adenofibroma 6 164466 -NCIT:C27288 Ovarian Endometrioid Cystadenofibroma 7 164467 -NCIT:C40075 Ovarian Endometrioid Cystadenoma 6 164468 -NCIT:C8430 Ovarian Papillary Tumor 4 164469 -NCIT:C6256 Ovarian Serous Surface Papillary Adenocarcinoma 5 164470 -NCIT:C7278 Ovarian Papillary Cystadenoma 5 164471 -NCIT:C7279 Ovarian Surface Papilloma 5 164472 -NCIT:C8431 Ovarian Serous Tumor 4 164473 -NCIT:C40025 Malignant Ovarian Serous Tumor 5 164474 -NCIT:C67092 Ovarian Serous Adenocarcinofibroma 6 164475 -NCIT:C7550 Ovarian Serous Adenocarcinoma 6 164476 -NCIT:C105555 Ovarian High Grade Serous Adenocarcinoma 7 164477 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 8 164478 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 8 164479 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 8 164480 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 164481 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 8 164482 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 164483 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 164484 -NCIT:C105556 Ovarian Low Grade Serous Adenocarcinoma 7 164485 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 8 164486 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 8 164487 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 7 164488 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 8 164489 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 8 164490 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 8 164491 -NCIT:C160781 Unresectable Ovarian Serous Adenocarcinoma 7 164492 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 8 164493 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 164494 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 7 164495 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 164496 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 164497 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 164498 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 8 164499 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 164500 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 164501 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 8 164502 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 164503 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 164504 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 164505 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 164506 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 164507 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 7 164508 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 8 164509 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 8 164510 -NCIT:C6256 Ovarian Serous Surface Papillary Adenocarcinoma 7 164511 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 7 164512 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 8 164513 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 164514 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 164515 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 8 164516 -NCIT:C40027 Borderline Ovarian Serous Tumor/Atypical Proliferative Ovarian Serous Tumor with Microinvasion 5 164517 -NCIT:C5226 Borderline Ovarian Serous Tumor 5 164518 -NCIT:C122584 Borderline Ovarian Serous Tumor/Atypical Proliferative Ovarian Serous Tumor 6 164519 -NCIT:C122585 Borderline Ovarian Serous Tumor-Micropapillary Variant/Non-Invasive Low Grade Ovarian Serous Carcinoma 6 164520 -NCIT:C40028 Borderline Ovarian Serous Adenofibroma 6 164521 -NCIT:C40029 Borderline Ovarian Serous Cystadenofibroma 7 164522 -NCIT:C7313 Benign Ovarian Serous Tumor 5 164523 -NCIT:C40031 Ovarian Serous Adenofibroma 6 164524 -NCIT:C40032 Ovarian Serous Cystadenofibroma 7 164525 -NCIT:C4511 Ovarian Serous Cystadenoma 6 164526 -NCIT:C7278 Ovarian Papillary Cystadenoma 7 164527 -NCIT:C7279 Ovarian Surface Papilloma 6 164528 -NCIT:C6450 Thymic Epithelial Neoplasm 3 164529 -NCIT:C136320 Thymic Epithelial Neoplasm by AJCC v8 Stage 4 164530 -NCIT:C136322 Stage I Thymic Epithelial Neoplasm AJCC v8 5 164531 -NCIT:C136348 Stage I Thymoma AJCC v8 6 164532 -NCIT:C136323 Stage II Thymic Epithelial Neoplasm AJCC v8 5 164533 -NCIT:C136349 Stage II Thymoma AJCC v8 6 164534 -NCIT:C136325 Stage III Thymic Epithelial Neoplasm AJCC v8 5 164535 -NCIT:C136327 Stage IIIA Thymic Epithelial Neoplasm AJCC v8 6 164536 -NCIT:C136351 Stage IIIA Thymoma AJCC v8 7 164537 -NCIT:C136328 Stage IIIB Thymic Epithelial Neoplasm AJCC v8 6 164538 -NCIT:C136352 Stage IIIB Thymoma AJCC v8 7 164539 -NCIT:C136350 Stage III Thymoma AJCC v8 6 164540 -NCIT:C136351 Stage IIIA Thymoma AJCC v8 7 164541 -NCIT:C136352 Stage IIIB Thymoma AJCC v8 7 164542 -NCIT:C136329 Stage IV Thymic Epithelial Neoplasm AJCC v8 5 164543 -NCIT:C136330 Stage IVA Thymic Epithelial Neoplasm AJCC v8 6 164544 -NCIT:C136354 Stage IVA Thymoma AJCC v8 7 164545 -NCIT:C136331 Stage IVB Thymic Epithelial Neoplasm AJCC v8 6 164546 -NCIT:C136356 Stage IVB Thymoma AJCC v8 7 164547 -NCIT:C136353 Stage IV Thymoma AJCC v8 6 164548 -NCIT:C136354 Stage IVA Thymoma AJCC v8 7 164549 -NCIT:C136356 Stage IVB Thymoma AJCC v8 7 164550 -NCIT:C136345 Thymoma by AJCC v8 Stage 5 164551 -NCIT:C136348 Stage I Thymoma AJCC v8 6 164552 -NCIT:C136349 Stage II Thymoma AJCC v8 6 164553 -NCIT:C136350 Stage III Thymoma AJCC v8 6 164554 -NCIT:C136351 Stage IIIA Thymoma AJCC v8 7 164555 -NCIT:C136352 Stage IIIB Thymoma AJCC v8 7 164556 -NCIT:C136353 Stage IV Thymoma AJCC v8 6 164557 -NCIT:C136354 Stage IVA Thymoma AJCC v8 7 164558 -NCIT:C136356 Stage IVB Thymoma AJCC v8 7 164559 -NCIT:C162460 Thymic Neuroendocrine Neoplasm 4 164560 -NCIT:C162461 Metastatic Thymic Neuroendocrine Neoplasm 5 164561 -NCIT:C180871 Advanced Thymic Neuroendocrine Neoplasm 6 164562 -NCIT:C171031 Thymic Neuroendocrine Carcinoma 5 164563 -NCIT:C6460 Thymic Small Cell Neuroendocrine Carcinoma 6 164564 -NCIT:C6461 Thymic Large Cell Neuroendocrine Carcinoma 6 164565 -NCIT:C180872 Unresectable Thymic Neuroendocrine Neoplasm 5 164566 -NCIT:C6430 Thymic Carcinoid Tumor 5 164567 -NCIT:C45719 Thymic Atypical Carcinoid Tumor 6 164568 -NCIT:C45720 Thymic Typical Carcinoid Tumor 6 164569 -NCIT:C3411 Thymoma 4 164570 -NCIT:C112006 Thymoma by Masaoka-Koga Stage 5 164571 -NCIT:C112007 Masaoka-Koga Stage I 6 164572 -NCIT:C112010 Masaoka-Koga Stage III 6 164573 -NCIT:C115033 Masaoka-Koga Stage II 6 164574 -NCIT:C112008 Masaoka-Koga Stage IIa 7 164575 -NCIT:C112009 Masaoka-Koga Stage IIb 7 164576 -NCIT:C115034 Masaoka-Koga Stage IV 6 164577 -NCIT:C112011 Masaoka-Koga Stage IVa 7 164578 -NCIT:C112012 Masaoka-Koga Stage IVb 7 164579 -NCIT:C136345 Thymoma by AJCC v8 Stage 5 164580 -NCIT:C136348 Stage I Thymoma AJCC v8 6 164581 -NCIT:C136349 Stage II Thymoma AJCC v8 6 164582 -NCIT:C136350 Stage III Thymoma AJCC v8 6 164583 -NCIT:C136351 Stage IIIA Thymoma AJCC v8 7 164584 -NCIT:C136352 Stage IIIB Thymoma AJCC v8 7 164585 -NCIT:C136353 Stage IV Thymoma AJCC v8 6 164586 -NCIT:C136354 Stage IVA Thymoma AJCC v8 7 164587 -NCIT:C136356 Stage IVB Thymoma AJCC v8 7 164588 -NCIT:C156268 Intrathyroidal Thymoma 5 164589 -NCIT:C45638 Intrapulmonary Thymoma 5 164590 -NCIT:C45639 Mediastinal Thymoma 5 164591 -NCIT:C45706 Micronodular Thymoma with Lymphoid Stroma 5 164592 -NCIT:C45707 Metaplastic Thymoma 5 164593 -NCIT:C45708 Microscopic Thymoma 5 164594 -NCIT:C45709 Sclerosing Thymoma 5 164595 -NCIT:C6453 Invasive Thymoma 5 164596 -NCIT:C45699 Minimally Invasive Thymoma 6 164597 -NCIT:C45700 Widely Invasive Thymoma 6 164598 -NCIT:C7904 Invasive Malignant Thymoma 6 164599 -NCIT:C159904 Advanced Malignant Thymoma 7 164600 -NCIT:C6454 Thymoma Type A 5 164601 -NCIT:C146640 Atypical Type A Thymoma 6 164602 -NCIT:C7999 Malignant Type A Thymoma 6 164603 -NCIT:C6885 Thymoma Type AB 5 164604 -NCIT:C6886 Malignant Type AB Thymoma 6 164605 -NCIT:C7114 Thymoma Type B 5 164606 -NCIT:C6887 Thymoma Type B1 6 164607 -NCIT:C7996 Malignant Type B1 Thymoma 7 164608 -NCIT:C6888 Thymoma Type B2 6 164609 -NCIT:C6889 Malignant Type B2 Thymoma 7 164610 -NCIT:C7997 Thymoma Type B3 6 164611 -NCIT:C7386 Encapsulated Thymoma 5 164612 -NCIT:C7612 Malignant Thymoma 5 164613 -NCIT:C148099 Refractory Malignant Thymoma 6 164614 -NCIT:C6886 Malignant Type AB Thymoma 6 164615 -NCIT:C6889 Malignant Type B2 Thymoma 6 164616 -NCIT:C7904 Invasive Malignant Thymoma 6 164617 -NCIT:C159904 Advanced Malignant Thymoma 7 164618 -NCIT:C7905 Recurrent Malignant Thymoma 6 164619 -NCIT:C7996 Malignant Type B1 Thymoma 6 164620 -NCIT:C7997 Thymoma Type B3 6 164621 -NCIT:C7999 Malignant Type A Thymoma 6 164622 -NCIT:C9080 Noninvasive Malignant Thymoma 6 164623 -NCIT:C95048 Ectopic Cervical Thymoma 5 164624 -NCIT:C45722 Combined Thymic Epithelial Neoplasm 4 164625 -NCIT:C115444 Recurrent Combined Thymic Epithelial Neoplasm 5 164626 -NCIT:C7569 Thymic Carcinoma 4 164627 -NCIT:C146706 Mediastinal/Thymic NUT Carcinoma 5 164628 -NCIT:C148125 Unresectable Thymic Carcinoma 5 164629 -NCIT:C148127 Recurrent Thymic Carcinoma 5 164630 -NCIT:C148128 Metastatic Thymic Carcinoma 5 164631 -NCIT:C148126 Locally Advanced Thymic Carcinoma 6 164632 -NCIT:C159903 Advanced Thymic Carcinoma 6 164633 -NCIT:C148173 Refractory Thymic Carcinoma 5 164634 -NCIT:C171031 Thymic Neuroendocrine Carcinoma 5 164635 -NCIT:C6460 Thymic Small Cell Neuroendocrine Carcinoma 6 164636 -NCIT:C6461 Thymic Large Cell Neuroendocrine Carcinoma 6 164637 -NCIT:C183313 Thymic Carcinoma with Adenoid Cystic Carcinoma-Like Features 5 164638 -NCIT:C183316 Thymic Carcinoma, Not Otherwise Specified 5 164639 -NCIT:C35718 Thymic Undifferentiated Carcinoma 5 164640 -NCIT:C6455 Thymic Squamous Cell Carcinoma 5 164641 -NCIT:C6456 Thymic Basaloid Carcinoma 6 164642 -NCIT:C6457 Thymic Mucoepidermoid Carcinoma 5 164643 -NCIT:C6458 Thymic Adenosquamous Carcinoma 5 164644 -NCIT:C6459 Thymic Adenocarcinoma 5 164645 -NCIT:C146717 Thymic Hepatoid Adenocarcinoma 6 164646 -NCIT:C183314 Thymic Enteric-Type Adenocarcinoma 6 164647 -NCIT:C183315 Thymic Adenocarcinoma, Not Otherwise Specified 6 164648 -NCIT:C27937 Thymic Low Grade Papillary Adenocarcinoma 6 164649 -NCIT:C6462 Thymic Clear Cell Carcinoma 5 164650 -NCIT:C6463 Thymic Sarcomatoid Carcinoma 5 164651 -NCIT:C7998 Thymic Lymphoepithelial Carcinoma 5 164652 -NCIT:C6783 Transitional Cell Neoplasm 3 164653 -NCIT:C27881 Transitional Cell Intraepithelial Neoplasia 4 164654 -NCIT:C4116 Stage 0 Transitional Cell Carcinoma 5 164655 -NCIT:C140358 Stage 0a Renal Pelvis and Ureter Cancer AJCC v8 6 164656 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 7 164657 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 7 164658 -NCIT:C140361 Stage 0is Renal Pelvis and Ureter Cancer AJCC v8 6 164659 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 7 164660 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 7 164661 -NCIT:C39850 Stage 0 Renal Pelvis and Ureter Cancer AJCC v7 6 164662 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 7 164663 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 8 164664 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 8 164665 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 7 164666 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 8 164667 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 8 164668 -NCIT:C7517 Stage 0a Renal Pelvis and Ureter Cancer AJCC v7 7 164669 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 8 164670 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 8 164671 -NCIT:C7518 Stage 0is Renal Pelvis and Ureter Cancer AJCC v7 7 164672 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 8 164673 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 8 164674 -NCIT:C6188 Stage 0 Bladder Urothelial Carcinoma AJCC v6 and v7 6 164675 -NCIT:C3644 Stage 0is Bladder Urothelial Carcinoma AJCC v6 and v7 7 164676 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 7 164677 -NCIT:C2930 Transitional Cell Carcinoma 4 164678 -NCIT:C129827 Unresectable Transitional Cell Carcinoma 5 164679 -NCIT:C150521 Unresectable Urothelial Carcinoma 6 164680 -NCIT:C158585 Unresectable Urethral Urothelial Carcinoma 7 164681 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 7 164682 -NCIT:C164160 Unresectable Renal Pelvis and Ureter Urothelial Carcinoma 7 164683 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 8 164684 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 8 164685 -NCIT:C129828 Metastatic Transitional Cell Carcinoma 5 164686 -NCIT:C126109 Metastatic Urothelial Carcinoma 6 164687 -NCIT:C148493 Advanced Urothelial Carcinoma 7 164688 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 164689 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 164690 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 164691 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 164692 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 164693 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 7 164694 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 164695 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 164696 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 7 164697 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 164698 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 164699 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 164700 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 164701 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 164702 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 164703 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 164704 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 164705 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 164706 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 8 164707 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 7 164708 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 164709 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 164710 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 164711 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 164712 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 164713 -NCIT:C191692 Metastatic Clear Cell (Glycogen-Rich) Urothelial Carcinoma 7 164714 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 164715 -NCIT:C191693 Metastatic Giant Cell Urothelial Carcinoma 7 164716 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 164717 -NCIT:C191694 Metastatic Lipid-Rich Urothelial Carcinoma 7 164718 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 164719 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 7 164720 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 164721 -NCIT:C191696 Metastatic Nested Urothelial Carcinoma 7 164722 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 164723 -NCIT:C191697 Metastatic Plasmacytoid Urothelial Carcinoma 7 164724 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 164725 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 7 164726 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 164727 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 7 164728 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 8 164729 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 164730 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 164731 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 8 164732 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 164733 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 164734 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 164735 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 164736 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 164737 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 164738 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 164739 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 164740 -NCIT:C172091 Advanced Transitional Cell Carcinoma 6 164741 -NCIT:C148493 Advanced Urothelial Carcinoma 7 164742 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 164743 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 164744 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 164745 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 164746 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 164747 -NCIT:C175493 Locally Advanced Transitional Cell Carcinoma 6 164748 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 7 164749 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 164750 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 164751 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 164752 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 164753 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 164754 -NCIT:C162564 Primary Peritoneal Transitional Cell Carcinoma 5 164755 -NCIT:C170759 Recurrent Primary Peritoneal Transitional Cell Carcinoma 6 164756 -NCIT:C178688 Refractory Primary Peritoneal Transitional Cell Carcinoma 6 164757 -NCIT:C40104 Fallopian Tube Transitional Cell Carcinoma 5 164758 -NCIT:C170757 Recurrent Fallopian Tube Transitional Cell Carcinoma 6 164759 -NCIT:C178674 Refractory Fallopian Tube Transitional Cell Carcinoma 6 164760 -NCIT:C40154 Endometrial Transitional Cell Carcinoma 5 164761 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 6 164762 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 6 164763 -NCIT:C40297 Bartholin Gland Transitional Cell Carcinoma 5 164764 -NCIT:C4030 Urothelial Carcinoma 5 164765 -NCIT:C126109 Metastatic Urothelial Carcinoma 6 164766 -NCIT:C148493 Advanced Urothelial Carcinoma 7 164767 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 164768 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 164769 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 164770 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 164771 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 164772 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 7 164773 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 164774 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 164775 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 7 164776 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 164777 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 164778 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 164779 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 164780 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 164781 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 164782 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 164783 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 164784 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 164785 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 8 164786 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 7 164787 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 164788 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 164789 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 164790 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 164791 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 164792 -NCIT:C191692 Metastatic Clear Cell (Glycogen-Rich) Urothelial Carcinoma 7 164793 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 164794 -NCIT:C191693 Metastatic Giant Cell Urothelial Carcinoma 7 164795 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 164796 -NCIT:C191694 Metastatic Lipid-Rich Urothelial Carcinoma 7 164797 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 164798 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 7 164799 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 164800 -NCIT:C191696 Metastatic Nested Urothelial Carcinoma 7 164801 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 164802 -NCIT:C191697 Metastatic Plasmacytoid Urothelial Carcinoma 7 164803 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 164804 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 7 164805 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 164806 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 7 164807 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 8 164808 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 164809 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 164810 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 8 164811 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 164812 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 164813 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 164814 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 164815 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 164816 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 164817 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 164818 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 164819 -NCIT:C150364 Refractory Urothelial Carcinoma 6 164820 -NCIT:C150365 Platinum-Resistant Urothelial Carcinoma 7 164821 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 7 164822 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 8 164823 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 7 164824 -NCIT:C176996 Refractory Urethral Urothelial Carcinoma 7 164825 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 7 164826 -NCIT:C150521 Unresectable Urothelial Carcinoma 6 164827 -NCIT:C158585 Unresectable Urethral Urothelial Carcinoma 7 164828 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 7 164829 -NCIT:C164160 Unresectable Renal Pelvis and Ureter Urothelial Carcinoma 7 164830 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 8 164831 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 8 164832 -NCIT:C157631 Recurrent Urothelial Carcinoma 6 164833 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 7 164834 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 8 164835 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 7 164836 -NCIT:C8254 Recurrent Renal Pelvis and Ureter Urothelial Carcinoma 7 164837 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 8 164838 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 8 164839 -NCIT:C180606 Urothelial Carcinoma, High Grade 6 164840 -NCIT:C180607 Renal Pelvis Urothelial Carcinoma, High Grade 7 164841 -NCIT:C180608 Ureter Urothelial Carcinoma, High Grade 7 164842 -NCIT:C180609 Bladder Urothelial Carcinoma, High Grade 7 164843 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 8 164844 -NCIT:C191675 Non-Invasive Papillary Urothelial Carcinoma, High Grade 7 164845 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 8 164846 -NCIT:C191673 Non-Invasive Papillary Urothelial Carcinoma, Low Grade 6 164847 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 7 164848 -NCIT:C39851 Bladder Urothelial Carcinoma 6 164849 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 7 164850 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 8 164851 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 7 164852 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 164853 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 164854 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 164855 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 164856 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 164857 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 164858 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 164859 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 164860 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 164861 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 8 164862 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 7 164863 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 7 164864 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 8 164865 -NCIT:C177531 Bladder Flat Urothelial Carcinoma 7 164866 -NCIT:C37266 Bladder Urothelial Carcinoma In Situ 8 164867 -NCIT:C140418 Stage 0is Bladder Cancer AJCC v8 9 164868 -NCIT:C3644 Stage 0is Bladder Urothelial Carcinoma AJCC v6 and v7 9 164869 -NCIT:C180609 Bladder Urothelial Carcinoma, High Grade 7 164870 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 8 164871 -NCIT:C188032 Resectable Bladder Urothelial Carcinoma 7 164872 -NCIT:C27634 Transplant-Related Bladder Urothelial Carcinoma 7 164873 -NCIT:C27885 Invasive Bladder Urothelial Carcinoma 7 164874 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 8 164875 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 164876 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 164877 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 8 164878 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 9 164879 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 8 164880 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 8 164881 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 8 164882 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 8 164883 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 8 164884 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 164885 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 8 164886 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 8 164887 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 8 164888 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 8 164889 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 164890 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 8 164891 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 8 164892 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 8 164893 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 164894 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 8 164895 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 164896 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 9 164897 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 9 164898 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 164899 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 164900 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 8 164901 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 164902 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 8 164903 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 164904 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 8 164905 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 8 164906 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 8 164907 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 8 164908 -NCIT:C39844 Urachal Urothelial Carcinoma 7 164909 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 8 164910 -NCIT:C7383 Bladder Papillary Urothelial Carcinoma 7 164911 -NCIT:C158382 Bladder Non-Invasive Papillary Urothelial Carcinoma 8 164912 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 9 164913 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 9 164914 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 9 164915 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 9 164916 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 8 164917 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 164918 -NCIT:C39853 Invasive Urothelial Carcinoma 6 164919 -NCIT:C115966 Invasive Bladder Urothelial Carcinoma Associated with Urethral Carcinoma 7 164920 -NCIT:C164252 Invasive Sarcomatoid Urothelial Carcinoma 7 164921 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 8 164922 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 164923 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 8 164924 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 164925 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 9 164926 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 9 164927 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 8 164928 -NCIT:C191678 Invasive Lymphoepithelioma-Like Urothelial Carcinoma 7 164929 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 8 164930 -NCIT:C191679 Invasive Giant Cell Urothelial Carcinoma 7 164931 -NCIT:C191693 Metastatic Giant Cell Urothelial Carcinoma 8 164932 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 164933 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 8 164934 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 164935 -NCIT:C191680 Invasive Urothelial Carcinoma with Glandular Differentiation 7 164936 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 8 164937 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 8 164938 -NCIT:C191681 Invasive Urothelial Carcinoma with Squamous Differentiation 7 164939 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 8 164940 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 8 164941 -NCIT:C191682 Invasive Urothelial Carcinoma with Trophoblastic Differentiation 7 164942 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 8 164943 -NCIT:C191683 Invasive Clear Cell (Glycogen-Rich) Urothelial Carcinoma 7 164944 -NCIT:C191692 Metastatic Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 164945 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 164946 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 164947 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 164948 -NCIT:C191684 Invasive Lipid-Rich Urothelial Carcinoma 7 164949 -NCIT:C191694 Metastatic Lipid-Rich Urothelial Carcinoma 8 164950 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 164951 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 8 164952 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 164953 -NCIT:C191685 Invasive Microcystic Urothelial Carcinoma 7 164954 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 8 164955 -NCIT:C191686 Invasive Micropapillary Urothelial Carcinoma 7 164956 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 8 164957 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 164958 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 8 164959 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 164960 -NCIT:C191687 Invasive Nested Urothelial Carcinoma 7 164961 -NCIT:C191696 Metastatic Nested Urothelial Carcinoma 8 164962 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 164963 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 8 164964 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 164965 -NCIT:C191688 Invasive Plasmacytoid Urothelial Carcinoma 7 164966 -NCIT:C191697 Metastatic Plasmacytoid Urothelial Carcinoma 8 164967 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 164968 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 8 164969 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 164970 -NCIT:C191725 Invasive Large Nested Urothelial Carcinoma 7 164971 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 8 164972 -NCIT:C191728 Invasive Tubular Urothelial Carcinoma 7 164973 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 8 164974 -NCIT:C191730 Invasive Poorly Differentiated Urothelial Carcinoma 7 164975 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 8 164976 -NCIT:C191734 Invasive Conventional Urothelial Carcinoma 7 164977 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 8 164978 -NCIT:C27885 Invasive Bladder Urothelial Carcinoma 7 164979 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 8 164980 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 164981 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 164982 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 8 164983 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 9 164984 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 8 164985 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 8 164986 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 8 164987 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 8 164988 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 8 164989 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 164990 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 8 164991 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 8 164992 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 8 164993 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 8 164994 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 164995 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 8 164996 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 8 164997 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 8 164998 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 164999 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 8 165000 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 165001 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 9 165002 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 9 165003 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 165004 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 165005 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 8 165006 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 165007 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 8 165008 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 165009 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 8 165010 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 8 165011 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 8 165012 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 8 165013 -NCIT:C39879 Invasive Renal Pelvis and Ureter Urothelial Carcinoma 7 165014 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 8 165015 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 8 165016 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 8 165017 -NCIT:C39898 Primary Prostate Urothelial Carcinoma 6 165018 -NCIT:C39900 Prostatic Urethra Urothelial Carcinoma 7 165019 -NCIT:C39901 Prostatic Duct Urothelial Carcinoma 7 165020 -NCIT:C6166 Urethral Urothelial Carcinoma 6 165021 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 7 165022 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 7 165023 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 165024 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 165025 -NCIT:C158585 Unresectable Urethral Urothelial Carcinoma 7 165026 -NCIT:C176996 Refractory Urethral Urothelial Carcinoma 7 165027 -NCIT:C39900 Prostatic Urethra Urothelial Carcinoma 7 165028 -NCIT:C7716 Renal Pelvis and Ureter Urothelial Carcinoma 6 165029 -NCIT:C140355 Renal Pelvis and Ureter Cancer by AJCC v8 Stage 7 165030 -NCIT:C140356 Renal Pelvis Cancer by AJCC v8 Stage 8 165031 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 9 165032 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 9 165033 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 9 165034 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 9 165035 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 9 165036 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 9 165037 -NCIT:C140357 Ureter Cancer by AJCC v8 Stage 8 165038 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 9 165039 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 9 165040 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 9 165041 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 9 165042 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 9 165043 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 9 165044 -NCIT:C140358 Stage 0a Renal Pelvis and Ureter Cancer AJCC v8 8 165045 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 9 165046 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 9 165047 -NCIT:C140361 Stage 0is Renal Pelvis and Ureter Cancer AJCC v8 8 165048 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 9 165049 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 9 165050 -NCIT:C140364 Stage I Renal Pelvis and Ureter Cancer AJCC v8 8 165051 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 9 165052 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 9 165053 -NCIT:C140367 Stage II Renal Pelvis and Ureter Cancer AJCC v8 8 165054 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 9 165055 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 9 165056 -NCIT:C140370 Stage III Renal Pelvis and Ureter Cancer AJCC v8 8 165057 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 9 165058 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 9 165059 -NCIT:C140373 Stage IV Renal Pelvis and Ureter Cancer AJCC v8 8 165060 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 9 165061 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 9 165062 -NCIT:C140376 Renal Pelvis and Ureter Cancer by AJCC v7 Stage 7 165063 -NCIT:C140377 Renal Pelvis Cancer by AJCC v7 Stage 8 165064 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 9 165065 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 9 165066 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 9 165067 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 9 165068 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 9 165069 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 10 165070 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 10 165071 -NCIT:C140378 Ureter Cancer by AJCC v7 Stage 8 165072 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 9 165073 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 10 165074 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 10 165075 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 9 165076 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 9 165077 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 9 165078 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 9 165079 -NCIT:C39850 Stage 0 Renal Pelvis and Ureter Cancer AJCC v7 8 165080 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 9 165081 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 10 165082 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 10 165083 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 9 165084 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 10 165085 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 10 165086 -NCIT:C7517 Stage 0a Renal Pelvis and Ureter Cancer AJCC v7 9 165087 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 10 165088 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 10 165089 -NCIT:C7518 Stage 0is Renal Pelvis and Ureter Cancer AJCC v7 9 165090 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 10 165091 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 10 165092 -NCIT:C7519 Stage I Renal Pelvis and Ureter Cancer AJCC v7 8 165093 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 9 165094 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 9 165095 -NCIT:C7520 Stage II Renal Pelvis and Ureter Cancer AJCC v7 8 165096 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 9 165097 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 9 165098 -NCIT:C7521 Stage III Renal Pelvis and Ureter Cancer AJCC v7 8 165099 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 9 165100 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 9 165101 -NCIT:C7522 Stage IV Renal Pelvis and Ureter Cancer AJCC v7 8 165102 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 9 165103 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 9 165104 -NCIT:C164160 Unresectable Renal Pelvis and Ureter Urothelial Carcinoma 7 165105 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 8 165106 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 8 165107 -NCIT:C39879 Invasive Renal Pelvis and Ureter Urothelial Carcinoma 7 165108 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 8 165109 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 8 165110 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 8 165111 -NCIT:C4830 Ureter Urothelial Carcinoma 7 165112 -NCIT:C140357 Ureter Cancer by AJCC v8 Stage 8 165113 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 9 165114 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 9 165115 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 9 165116 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 9 165117 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 9 165118 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 9 165119 -NCIT:C140378 Ureter Cancer by AJCC v7 Stage 8 165120 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 9 165121 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 10 165122 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 10 165123 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 9 165124 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 9 165125 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 9 165126 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 9 165127 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 8 165128 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 165129 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 165130 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 8 165131 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 8 165132 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 8 165133 -NCIT:C180608 Ureter Urothelial Carcinoma, High Grade 8 165134 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 8 165135 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 8 165136 -NCIT:C7355 Renal Pelvis Urothelial Carcinoma 7 165137 -NCIT:C140356 Renal Pelvis Cancer by AJCC v8 Stage 8 165138 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 9 165139 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 9 165140 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 9 165141 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 9 165142 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 9 165143 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 9 165144 -NCIT:C140377 Renal Pelvis Cancer by AJCC v7 Stage 8 165145 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 9 165146 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 9 165147 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 9 165148 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 9 165149 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 9 165150 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 10 165151 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 10 165152 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 8 165153 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 165154 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 165155 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 8 165156 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 8 165157 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 8 165158 -NCIT:C180607 Renal Pelvis Urothelial Carcinoma, High Grade 8 165159 -NCIT:C6148 Renal Pelvis Papillary Urothelial Carcinoma 8 165160 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 9 165161 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 9 165162 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 8 165163 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 7 165164 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 8 165165 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 165166 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 165167 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 8 165168 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 165169 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 165170 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 165171 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 165172 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 165173 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 165174 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 165175 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 165176 -NCIT:C8167 Localized Renal Pelvis and Ureter Urothelial Carcinoma 7 165177 -NCIT:C8168 Regional Renal Pelvis and Ureter Urothelial Carcinoma 7 165178 -NCIT:C8254 Recurrent Renal Pelvis and Ureter Urothelial Carcinoma 7 165179 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 8 165180 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 8 165181 -NCIT:C4116 Stage 0 Transitional Cell Carcinoma 5 165182 -NCIT:C140358 Stage 0a Renal Pelvis and Ureter Cancer AJCC v8 6 165183 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 7 165184 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 7 165185 -NCIT:C140361 Stage 0is Renal Pelvis and Ureter Cancer AJCC v8 6 165186 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 7 165187 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 7 165188 -NCIT:C39850 Stage 0 Renal Pelvis and Ureter Cancer AJCC v7 6 165189 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 7 165190 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 8 165191 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 8 165192 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 7 165193 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 8 165194 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 8 165195 -NCIT:C7517 Stage 0a Renal Pelvis and Ureter Cancer AJCC v7 7 165196 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 8 165197 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 8 165198 -NCIT:C7518 Stage 0is Renal Pelvis and Ureter Cancer AJCC v7 7 165199 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 8 165200 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 8 165201 -NCIT:C6188 Stage 0 Bladder Urothelial Carcinoma AJCC v6 and v7 6 165202 -NCIT:C3644 Stage 0is Bladder Urothelial Carcinoma AJCC v6 and v7 7 165203 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 7 165204 -NCIT:C4120 Sarcomatoid Transitional Cell Carcinoma 5 165205 -NCIT:C164252 Invasive Sarcomatoid Urothelial Carcinoma 6 165206 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 7 165207 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 165208 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 7 165209 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 165210 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 8 165211 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 8 165212 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 7 165213 -NCIT:C4122 Papillary Transitional Cell Carcinoma 5 165214 -NCIT:C6148 Renal Pelvis Papillary Urothelial Carcinoma 6 165215 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 7 165216 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 7 165217 -NCIT:C65181 Non-Invasive Papillary Transitional Cell Carcinoma 6 165218 -NCIT:C140358 Stage 0a Renal Pelvis and Ureter Cancer AJCC v8 7 165219 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 8 165220 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 8 165221 -NCIT:C158382 Bladder Non-Invasive Papillary Urothelial Carcinoma 7 165222 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 8 165223 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 8 165224 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 8 165225 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 8 165226 -NCIT:C191673 Non-Invasive Papillary Urothelial Carcinoma, Low Grade 7 165227 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 8 165228 -NCIT:C191675 Non-Invasive Papillary Urothelial Carcinoma, High Grade 7 165229 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 8 165230 -NCIT:C7517 Stage 0a Renal Pelvis and Ureter Cancer AJCC v7 7 165231 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 8 165232 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 8 165233 -NCIT:C65182 Micropapillary Transitional Cell Carcinoma 6 165234 -NCIT:C191686 Invasive Micropapillary Urothelial Carcinoma 7 165235 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 8 165236 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 165237 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 8 165238 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 165239 -NCIT:C7383 Bladder Papillary Urothelial Carcinoma 6 165240 -NCIT:C158382 Bladder Non-Invasive Papillary Urothelial Carcinoma 7 165241 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 8 165242 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 8 165243 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 8 165244 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 8 165245 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 7 165246 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 165247 -NCIT:C5240 Ovarian Transitional Cell Carcinoma 5 165248 -NCIT:C153819 Recurrent Ovarian Transitional Cell Carcinoma 6 165249 -NCIT:C178682 Refractory Ovarian Transitional Cell Carcinoma 6 165250 -NCIT:C39852 Urothelial Neoplasm 4 165251 -NCIT:C27883 Papillary Urothelial Neoplasm 5 165252 -NCIT:C140358 Stage 0a Renal Pelvis and Ureter Cancer AJCC v8 6 165253 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 7 165254 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 7 165255 -NCIT:C191672 Papillary Urothelial Neoplasm of Low Malignant Potential 6 165256 -NCIT:C27884 Bladder Papillary Urothelial Neoplasm of Low Malignant Potential 7 165257 -NCIT:C191673 Non-Invasive Papillary Urothelial Carcinoma, Low Grade 6 165258 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 7 165259 -NCIT:C191675 Non-Invasive Papillary Urothelial Carcinoma, High Grade 6 165260 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 7 165261 -NCIT:C191686 Invasive Micropapillary Urothelial Carcinoma 6 165262 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 7 165263 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 165264 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 7 165265 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 165266 -NCIT:C3842 Urothelial Papilloma 6 165267 -NCIT:C39858 Bladder Urothelial Papilloma 7 165268 -NCIT:C39859 Bladder Inverted Papilloma 8 165269 -NCIT:C4528 Renal Pelvis Urothelial Papilloma 7 165270 -NCIT:C6187 Renal Pelvis Inverted Papilloma 8 165271 -NCIT:C5061 Urethral Urothelial Papilloma 7 165272 -NCIT:C6173 Urethral Inverted Papilloma 8 165273 -NCIT:C6160 Ureter Urothelial Papilloma 7 165274 -NCIT:C6174 Ureter Inverted Papilloma 8 165275 -NCIT:C6192 Inverted Urothelial Papilloma 7 165276 -NCIT:C39859 Bladder Inverted Papilloma 8 165277 -NCIT:C6173 Urethral Inverted Papilloma 8 165278 -NCIT:C6174 Ureter Inverted Papilloma 8 165279 -NCIT:C6187 Renal Pelvis Inverted Papilloma 8 165280 -NCIT:C39857 Bladder Papillary Urothelial Neoplasm 6 165281 -NCIT:C39831 Bladder Non-Invasive Papillary Urothelial Neoplasm 7 165282 -NCIT:C158382 Bladder Non-Invasive Papillary Urothelial Carcinoma 8 165283 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 9 165284 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 9 165285 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 9 165286 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 9 165287 -NCIT:C27884 Bladder Papillary Urothelial Neoplasm of Low Malignant Potential 8 165288 -NCIT:C39858 Bladder Urothelial Papilloma 8 165289 -NCIT:C39859 Bladder Inverted Papilloma 9 165290 -NCIT:C7383 Bladder Papillary Urothelial Carcinoma 7 165291 -NCIT:C158382 Bladder Non-Invasive Papillary Urothelial Carcinoma 8 165292 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 9 165293 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 9 165294 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 9 165295 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 9 165296 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 8 165297 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 165298 -NCIT:C7517 Stage 0a Renal Pelvis and Ureter Cancer AJCC v7 6 165299 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 7 165300 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 7 165301 -NCIT:C8603 Renal Pelvis Papillary Urothelial Neoplasm 6 165302 -NCIT:C4528 Renal Pelvis Urothelial Papilloma 7 165303 -NCIT:C6187 Renal Pelvis Inverted Papilloma 8 165304 -NCIT:C6148 Renal Pelvis Papillary Urothelial Carcinoma 7 165305 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 8 165306 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 8 165307 -NCIT:C39854 Non-Invasive Urothelial Neoplasm 5 165308 -NCIT:C140358 Stage 0a Renal Pelvis and Ureter Cancer AJCC v8 6 165309 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 7 165310 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 7 165311 -NCIT:C140361 Stage 0is Renal Pelvis and Ureter Cancer AJCC v8 6 165312 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 7 165313 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 7 165314 -NCIT:C158374 Bladder Non-Invasive Urothelial Neoplasm 6 165315 -NCIT:C27880 Bladder Urothelial Proliferation of Uncertain Malignant Potential 7 165316 -NCIT:C27882 Bladder Urothelial Dysplasia 7 165317 -NCIT:C37266 Bladder Urothelial Carcinoma In Situ 7 165318 -NCIT:C140418 Stage 0is Bladder Cancer AJCC v8 8 165319 -NCIT:C3644 Stage 0is Bladder Urothelial Carcinoma AJCC v6 and v7 8 165320 -NCIT:C39831 Bladder Non-Invasive Papillary Urothelial Neoplasm 7 165321 -NCIT:C158382 Bladder Non-Invasive Papillary Urothelial Carcinoma 8 165322 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 9 165323 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 9 165324 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 9 165325 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 9 165326 -NCIT:C27884 Bladder Papillary Urothelial Neoplasm of Low Malignant Potential 8 165327 -NCIT:C39858 Bladder Urothelial Papilloma 8 165328 -NCIT:C39859 Bladder Inverted Papilloma 9 165329 -NCIT:C191672 Papillary Urothelial Neoplasm of Low Malignant Potential 6 165330 -NCIT:C27884 Bladder Papillary Urothelial Neoplasm of Low Malignant Potential 7 165331 -NCIT:C191673 Non-Invasive Papillary Urothelial Carcinoma, Low Grade 6 165332 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 7 165333 -NCIT:C191675 Non-Invasive Papillary Urothelial Carcinoma, High Grade 6 165334 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 7 165335 -NCIT:C3842 Urothelial Papilloma 6 165336 -NCIT:C39858 Bladder Urothelial Papilloma 7 165337 -NCIT:C39859 Bladder Inverted Papilloma 8 165338 -NCIT:C4528 Renal Pelvis Urothelial Papilloma 7 165339 -NCIT:C6187 Renal Pelvis Inverted Papilloma 8 165340 -NCIT:C5061 Urethral Urothelial Papilloma 7 165341 -NCIT:C6173 Urethral Inverted Papilloma 8 165342 -NCIT:C6160 Ureter Urothelial Papilloma 7 165343 -NCIT:C6174 Ureter Inverted Papilloma 8 165344 -NCIT:C6192 Inverted Urothelial Papilloma 7 165345 -NCIT:C39859 Bladder Inverted Papilloma 8 165346 -NCIT:C6173 Urethral Inverted Papilloma 8 165347 -NCIT:C6174 Ureter Inverted Papilloma 8 165348 -NCIT:C6187 Renal Pelvis Inverted Papilloma 8 165349 -NCIT:C39850 Stage 0 Renal Pelvis and Ureter Cancer AJCC v7 6 165350 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 7 165351 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 8 165352 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 8 165353 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 7 165354 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 8 165355 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 8 165356 -NCIT:C7517 Stage 0a Renal Pelvis and Ureter Cancer AJCC v7 7 165357 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 8 165358 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 8 165359 -NCIT:C7518 Stage 0is Renal Pelvis and Ureter Cancer AJCC v7 7 165360 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 8 165361 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 8 165362 -NCIT:C4030 Urothelial Carcinoma 5 165363 -NCIT:C126109 Metastatic Urothelial Carcinoma 6 165364 -NCIT:C148493 Advanced Urothelial Carcinoma 7 165365 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 165366 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 165367 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 165368 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 165369 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 165370 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 7 165371 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 165372 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 165373 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 7 165374 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 165375 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 165376 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 165377 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 165378 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 165379 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 165380 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 165381 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 165382 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 165383 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 8 165384 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 7 165385 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 165386 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 165387 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 165388 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 165389 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 165390 -NCIT:C191692 Metastatic Clear Cell (Glycogen-Rich) Urothelial Carcinoma 7 165391 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 165392 -NCIT:C191693 Metastatic Giant Cell Urothelial Carcinoma 7 165393 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 165394 -NCIT:C191694 Metastatic Lipid-Rich Urothelial Carcinoma 7 165395 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 165396 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 7 165397 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 165398 -NCIT:C191696 Metastatic Nested Urothelial Carcinoma 7 165399 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 165400 -NCIT:C191697 Metastatic Plasmacytoid Urothelial Carcinoma 7 165401 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 165402 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 7 165403 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 165404 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 7 165405 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 8 165406 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 165407 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 165408 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 8 165409 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 165410 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 165411 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 165412 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 165413 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 165414 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 165415 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 165416 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 165417 -NCIT:C150364 Refractory Urothelial Carcinoma 6 165418 -NCIT:C150365 Platinum-Resistant Urothelial Carcinoma 7 165419 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 7 165420 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 8 165421 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 7 165422 -NCIT:C176996 Refractory Urethral Urothelial Carcinoma 7 165423 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 7 165424 -NCIT:C150521 Unresectable Urothelial Carcinoma 6 165425 -NCIT:C158585 Unresectable Urethral Urothelial Carcinoma 7 165426 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 7 165427 -NCIT:C164160 Unresectable Renal Pelvis and Ureter Urothelial Carcinoma 7 165428 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 8 165429 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 8 165430 -NCIT:C157631 Recurrent Urothelial Carcinoma 6 165431 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 7 165432 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 8 165433 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 7 165434 -NCIT:C8254 Recurrent Renal Pelvis and Ureter Urothelial Carcinoma 7 165435 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 8 165436 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 8 165437 -NCIT:C180606 Urothelial Carcinoma, High Grade 6 165438 -NCIT:C180607 Renal Pelvis Urothelial Carcinoma, High Grade 7 165439 -NCIT:C180608 Ureter Urothelial Carcinoma, High Grade 7 165440 -NCIT:C180609 Bladder Urothelial Carcinoma, High Grade 7 165441 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 8 165442 -NCIT:C191675 Non-Invasive Papillary Urothelial Carcinoma, High Grade 7 165443 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 8 165444 -NCIT:C191673 Non-Invasive Papillary Urothelial Carcinoma, Low Grade 6 165445 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 7 165446 -NCIT:C39851 Bladder Urothelial Carcinoma 6 165447 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 7 165448 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 8 165449 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 7 165450 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 165451 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 165452 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 165453 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 165454 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 165455 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 165456 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 165457 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 165458 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 165459 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 8 165460 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 7 165461 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 7 165462 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 8 165463 -NCIT:C177531 Bladder Flat Urothelial Carcinoma 7 165464 -NCIT:C37266 Bladder Urothelial Carcinoma In Situ 8 165465 -NCIT:C140418 Stage 0is Bladder Cancer AJCC v8 9 165466 -NCIT:C3644 Stage 0is Bladder Urothelial Carcinoma AJCC v6 and v7 9 165467 -NCIT:C180609 Bladder Urothelial Carcinoma, High Grade 7 165468 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 8 165469 -NCIT:C188032 Resectable Bladder Urothelial Carcinoma 7 165470 -NCIT:C27634 Transplant-Related Bladder Urothelial Carcinoma 7 165471 -NCIT:C27885 Invasive Bladder Urothelial Carcinoma 7 165472 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 8 165473 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 165474 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 165475 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 8 165476 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 9 165477 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 8 165478 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 8 165479 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 8 165480 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 8 165481 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 8 165482 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 165483 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 8 165484 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 8 165485 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 8 165486 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 8 165487 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 165488 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 8 165489 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 8 165490 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 8 165491 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 165492 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 8 165493 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 165494 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 9 165495 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 9 165496 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 165497 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 165498 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 8 165499 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 165500 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 8 165501 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 165502 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 8 165503 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 8 165504 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 8 165505 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 8 165506 -NCIT:C39844 Urachal Urothelial Carcinoma 7 165507 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 8 165508 -NCIT:C7383 Bladder Papillary Urothelial Carcinoma 7 165509 -NCIT:C158382 Bladder Non-Invasive Papillary Urothelial Carcinoma 8 165510 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 9 165511 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 9 165512 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 9 165513 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 9 165514 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 8 165515 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 165516 -NCIT:C39853 Invasive Urothelial Carcinoma 6 165517 -NCIT:C115966 Invasive Bladder Urothelial Carcinoma Associated with Urethral Carcinoma 7 165518 -NCIT:C164252 Invasive Sarcomatoid Urothelial Carcinoma 7 165519 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 8 165520 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 165521 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 8 165522 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 165523 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 9 165524 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 9 165525 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 8 165526 -NCIT:C191678 Invasive Lymphoepithelioma-Like Urothelial Carcinoma 7 165527 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 8 165528 -NCIT:C191679 Invasive Giant Cell Urothelial Carcinoma 7 165529 -NCIT:C191693 Metastatic Giant Cell Urothelial Carcinoma 8 165530 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 165531 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 8 165532 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 165533 -NCIT:C191680 Invasive Urothelial Carcinoma with Glandular Differentiation 7 165534 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 8 165535 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 8 165536 -NCIT:C191681 Invasive Urothelial Carcinoma with Squamous Differentiation 7 165537 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 8 165538 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 8 165539 -NCIT:C191682 Invasive Urothelial Carcinoma with Trophoblastic Differentiation 7 165540 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 8 165541 -NCIT:C191683 Invasive Clear Cell (Glycogen-Rich) Urothelial Carcinoma 7 165542 -NCIT:C191692 Metastatic Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 165543 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 165544 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 165545 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 165546 -NCIT:C191684 Invasive Lipid-Rich Urothelial Carcinoma 7 165547 -NCIT:C191694 Metastatic Lipid-Rich Urothelial Carcinoma 8 165548 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 165549 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 8 165550 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 165551 -NCIT:C191685 Invasive Microcystic Urothelial Carcinoma 7 165552 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 8 165553 -NCIT:C191686 Invasive Micropapillary Urothelial Carcinoma 7 165554 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 8 165555 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 165556 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 8 165557 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 165558 -NCIT:C191687 Invasive Nested Urothelial Carcinoma 7 165559 -NCIT:C191696 Metastatic Nested Urothelial Carcinoma 8 165560 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 165561 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 8 165562 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 165563 -NCIT:C191688 Invasive Plasmacytoid Urothelial Carcinoma 7 165564 -NCIT:C191697 Metastatic Plasmacytoid Urothelial Carcinoma 8 165565 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 165566 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 8 165567 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 165568 -NCIT:C191725 Invasive Large Nested Urothelial Carcinoma 7 165569 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 8 165570 -NCIT:C191728 Invasive Tubular Urothelial Carcinoma 7 165571 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 8 165572 -NCIT:C191730 Invasive Poorly Differentiated Urothelial Carcinoma 7 165573 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 8 165574 -NCIT:C191734 Invasive Conventional Urothelial Carcinoma 7 165575 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 8 165576 -NCIT:C27885 Invasive Bladder Urothelial Carcinoma 7 165577 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 8 165578 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 165579 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 165580 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 8 165581 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 9 165582 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 8 165583 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 8 165584 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 8 165585 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 8 165586 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 8 165587 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 165588 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 8 165589 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 8 165590 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 8 165591 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 8 165592 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 165593 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 8 165594 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 8 165595 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 8 165596 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 165597 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 8 165598 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 165599 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 9 165600 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 9 165601 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 165602 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 165603 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 8 165604 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 165605 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 8 165606 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 165607 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 8 165608 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 8 165609 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 8 165610 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 8 165611 -NCIT:C39879 Invasive Renal Pelvis and Ureter Urothelial Carcinoma 7 165612 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 8 165613 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 8 165614 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 8 165615 -NCIT:C39898 Primary Prostate Urothelial Carcinoma 6 165616 -NCIT:C39900 Prostatic Urethra Urothelial Carcinoma 7 165617 -NCIT:C39901 Prostatic Duct Urothelial Carcinoma 7 165618 -NCIT:C6166 Urethral Urothelial Carcinoma 6 165619 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 7 165620 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 7 165621 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 165622 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 165623 -NCIT:C158585 Unresectable Urethral Urothelial Carcinoma 7 165624 -NCIT:C176996 Refractory Urethral Urothelial Carcinoma 7 165625 -NCIT:C39900 Prostatic Urethra Urothelial Carcinoma 7 165626 -NCIT:C7716 Renal Pelvis and Ureter Urothelial Carcinoma 6 165627 -NCIT:C140355 Renal Pelvis and Ureter Cancer by AJCC v8 Stage 7 165628 -NCIT:C140356 Renal Pelvis Cancer by AJCC v8 Stage 8 165629 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 9 165630 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 9 165631 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 9 165632 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 9 165633 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 9 165634 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 9 165635 -NCIT:C140357 Ureter Cancer by AJCC v8 Stage 8 165636 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 9 165637 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 9 165638 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 9 165639 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 9 165640 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 9 165641 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 9 165642 -NCIT:C140358 Stage 0a Renal Pelvis and Ureter Cancer AJCC v8 8 165643 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 9 165644 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 9 165645 -NCIT:C140361 Stage 0is Renal Pelvis and Ureter Cancer AJCC v8 8 165646 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 9 165647 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 9 165648 -NCIT:C140364 Stage I Renal Pelvis and Ureter Cancer AJCC v8 8 165649 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 9 165650 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 9 165651 -NCIT:C140367 Stage II Renal Pelvis and Ureter Cancer AJCC v8 8 165652 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 9 165653 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 9 165654 -NCIT:C140370 Stage III Renal Pelvis and Ureter Cancer AJCC v8 8 165655 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 9 165656 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 9 165657 -NCIT:C140373 Stage IV Renal Pelvis and Ureter Cancer AJCC v8 8 165658 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 9 165659 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 9 165660 -NCIT:C140376 Renal Pelvis and Ureter Cancer by AJCC v7 Stage 7 165661 -NCIT:C140377 Renal Pelvis Cancer by AJCC v7 Stage 8 165662 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 9 165663 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 9 165664 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 9 165665 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 9 165666 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 9 165667 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 10 165668 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 10 165669 -NCIT:C140378 Ureter Cancer by AJCC v7 Stage 8 165670 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 9 165671 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 10 165672 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 10 165673 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 9 165674 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 9 165675 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 9 165676 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 9 165677 -NCIT:C39850 Stage 0 Renal Pelvis and Ureter Cancer AJCC v7 8 165678 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 9 165679 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 10 165680 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 10 165681 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 9 165682 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 10 165683 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 10 165684 -NCIT:C7517 Stage 0a Renal Pelvis and Ureter Cancer AJCC v7 9 165685 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 10 165686 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 10 165687 -NCIT:C7518 Stage 0is Renal Pelvis and Ureter Cancer AJCC v7 9 165688 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 10 165689 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 10 165690 -NCIT:C7519 Stage I Renal Pelvis and Ureter Cancer AJCC v7 8 165691 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 9 165692 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 9 165693 -NCIT:C7520 Stage II Renal Pelvis and Ureter Cancer AJCC v7 8 165694 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 9 165695 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 9 165696 -NCIT:C7521 Stage III Renal Pelvis and Ureter Cancer AJCC v7 8 165697 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 9 165698 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 9 165699 -NCIT:C7522 Stage IV Renal Pelvis and Ureter Cancer AJCC v7 8 165700 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 9 165701 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 9 165702 -NCIT:C164160 Unresectable Renal Pelvis and Ureter Urothelial Carcinoma 7 165703 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 8 165704 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 8 165705 -NCIT:C39879 Invasive Renal Pelvis and Ureter Urothelial Carcinoma 7 165706 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 8 165707 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 8 165708 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 8 165709 -NCIT:C4830 Ureter Urothelial Carcinoma 7 165710 -NCIT:C140357 Ureter Cancer by AJCC v8 Stage 8 165711 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 9 165712 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 9 165713 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 9 165714 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 9 165715 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 9 165716 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 9 165717 -NCIT:C140378 Ureter Cancer by AJCC v7 Stage 8 165718 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 9 165719 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 10 165720 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 10 165721 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 9 165722 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 9 165723 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 9 165724 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 9 165725 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 8 165726 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 165727 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 165728 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 8 165729 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 8 165730 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 8 165731 -NCIT:C180608 Ureter Urothelial Carcinoma, High Grade 8 165732 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 8 165733 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 8 165734 -NCIT:C7355 Renal Pelvis Urothelial Carcinoma 7 165735 -NCIT:C140356 Renal Pelvis Cancer by AJCC v8 Stage 8 165736 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 9 165737 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 9 165738 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 9 165739 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 9 165740 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 9 165741 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 9 165742 -NCIT:C140377 Renal Pelvis Cancer by AJCC v7 Stage 8 165743 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 9 165744 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 9 165745 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 9 165746 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 9 165747 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 9 165748 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 10 165749 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 10 165750 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 8 165751 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 165752 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 165753 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 8 165754 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 8 165755 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 8 165756 -NCIT:C180607 Renal Pelvis Urothelial Carcinoma, High Grade 8 165757 -NCIT:C6148 Renal Pelvis Papillary Urothelial Carcinoma 8 165758 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 9 165759 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 9 165760 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 8 165761 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 7 165762 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 8 165763 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 165764 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 165765 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 8 165766 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 165767 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 165768 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 165769 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 165770 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 165771 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 165772 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 165773 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 165774 -NCIT:C8167 Localized Renal Pelvis and Ureter Urothelial Carcinoma 7 165775 -NCIT:C8168 Regional Renal Pelvis and Ureter Urothelial Carcinoma 7 165776 -NCIT:C8254 Recurrent Renal Pelvis and Ureter Urothelial Carcinoma 7 165777 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 8 165778 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 8 165779 -NCIT:C39954 Brenner Tumor 4 165780 -NCIT:C3872 Ovarian Brenner Tumor 5 165781 -NCIT:C4270 Malignant Ovarian Brenner Tumor 6 165782 -NCIT:C153818 Recurrent Malignant Ovarian Brenner Tumor 7 165783 -NCIT:C183126 Refractory Malignant Ovarian Brenner Tumor 7 165784 -NCIT:C4746 Benign Ovarian Brenner Tumor 6 165785 -NCIT:C9459 Borderline Ovarian Brenner Tumor 6 165786 -NCIT:C39953 Testicular Brenner Tumor 5 165787 -NCIT:C4115 Transitional Cell Papilloma 4 165788 -NCIT:C3842 Urothelial Papilloma 5 165789 -NCIT:C39858 Bladder Urothelial Papilloma 6 165790 -NCIT:C39859 Bladder Inverted Papilloma 7 165791 -NCIT:C4528 Renal Pelvis Urothelial Papilloma 6 165792 -NCIT:C6187 Renal Pelvis Inverted Papilloma 7 165793 -NCIT:C5061 Urethral Urothelial Papilloma 6 165794 -NCIT:C6173 Urethral Inverted Papilloma 7 165795 -NCIT:C6160 Ureter Urothelial Papilloma 6 165796 -NCIT:C6174 Ureter Inverted Papilloma 7 165797 -NCIT:C6192 Inverted Urothelial Papilloma 6 165798 -NCIT:C39859 Bladder Inverted Papilloma 7 165799 -NCIT:C6173 Urethral Inverted Papilloma 7 165800 -NCIT:C6174 Ureter Inverted Papilloma 7 165801 -NCIT:C6187 Renal Pelvis Inverted Papilloma 7 165802 -NCIT:C4118 Inverted Transitional Cell Papilloma 5 165803 -NCIT:C6192 Inverted Urothelial Papilloma 6 165804 -NCIT:C39859 Bladder Inverted Papilloma 7 165805 -NCIT:C6173 Urethral Inverted Papilloma 7 165806 -NCIT:C6174 Ureter Inverted Papilloma 7 165807 -NCIT:C6187 Renal Pelvis Inverted Papilloma 7 165808 -NCIT:C7113 Endometrioid Tumor 3 165809 -NCIT:C158620 Endometrioid Tumor, Variant with Squamous Differentiation 4 165810 -NCIT:C158610 Endometrioid Adenocarcinoma, Variant with Squamous Differentiation 5 165811 -NCIT:C40061 Ovarian Endometrioid Adenocarcinoma with Squamous Differentiation 6 165812 -NCIT:C6290 Endometrial Endometrioid Adenocarcinoma, Variant with Squamous Differentiation 6 165813 -NCIT:C3769 Endometrioid Adenocarcinoma 4 165814 -NCIT:C158421 Recurrent Endometrioid Adenocarcinoma 5 165815 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 6 165816 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 6 165817 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 6 165818 -NCIT:C165269 Recurrent Primary Peritoneal Endometrioid Adenocarcinoma 6 165819 -NCIT:C158610 Endometrioid Adenocarcinoma, Variant with Squamous Differentiation 5 165820 -NCIT:C40061 Ovarian Endometrioid Adenocarcinoma with Squamous Differentiation 6 165821 -NCIT:C6290 Endometrial Endometrioid Adenocarcinoma, Variant with Squamous Differentiation 6 165822 -NCIT:C165260 Primary Peritoneal Endometrioid Adenocarcinoma 5 165823 -NCIT:C165269 Recurrent Primary Peritoneal Endometrioid Adenocarcinoma 6 165824 -NCIT:C178685 Refractory Primary Peritoneal Endometrioid Adenocarcinoma 6 165825 -NCIT:C186276 Unresectable Primary Peritoneal Endometrioid Adenocarcinoma 6 165826 -NCIT:C191769 Endometrioid Adenocarcinoma of the Urinary Tract 5 165827 -NCIT:C159542 Bladder Endometrioid Adenocarcinoma 6 165828 -NCIT:C40138 Broad Ligament Endometrioid Adenocarcinoma 5 165829 -NCIT:C40251 Vaginal Endometrioid Adenocarcinoma 5 165830 -NCIT:C6279 Fallopian Tube Endometrioid Adenocarcinoma 5 165831 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 6 165832 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 6 165833 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 6 165834 -NCIT:C6287 Endometrial Endometrioid Adenocarcinoma 5 165835 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 6 165836 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 6 165837 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 6 165838 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 7 165839 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 7 165840 -NCIT:C180510 Low Grade Endometrial Endometrioid Adenocarcinoma 6 165841 -NCIT:C40146 FIGO Grade 1 Endometrial Endometrioid Adenocarcinoma 7 165842 -NCIT:C40147 FIGO Grade 2 Endometrial Endometrioid Adenocarcinoma 7 165843 -NCIT:C180512 POLE-Ultramutated Endometrial Endometrioid Adenocarcinoma 6 165844 -NCIT:C180514 Mismatch Repair-Deficient Endometrial Endometrioid Adenocarcinoma 6 165845 -NCIT:C180515 p53-Mutant Endometrial Endometrioid Adenocarcinoma 6 165846 -NCIT:C180516 No Specific Molecular Profile Endometrial Endometrioid Adenocarcinoma 6 165847 -NCIT:C27839 Endometrial Endometrioid Adenocarcinoma, Secretory Variant 6 165848 -NCIT:C27843 Endometrial Endometrioid Adenocarcinoma with Clear Cell Change 6 165849 -NCIT:C27844 Endometrial Endometrioid Adenocarcinoma with a Poorly Differentiated Carcinomatous Component 6 165850 -NCIT:C27845 Endometrial Endometrioid Adenocarcinoma with an Undifferentiated Carcinomatous Component 6 165851 -NCIT:C27846 Villoglandular Endometrial Endometrioid Adenocarcinoma 6 165852 -NCIT:C27848 Endometrial Endometrioid Adenocarcinoma, Ciliated Variant 6 165853 -NCIT:C27849 Oxyphilic Endometrial Endometrioid Adenocarcinoma 6 165854 -NCIT:C27850 Endometrial Endometrioid Adenocarcinoma with Spindled Epithelial Cells 6 165855 -NCIT:C40148 High Grade Endometrial Endometrioid Adenocarcinoma 6 165856 -NCIT:C6290 Endometrial Endometrioid Adenocarcinoma, Variant with Squamous Differentiation 6 165857 -NCIT:C6343 Cervical Endometrioid Adenocarcinoma 5 165858 -NCIT:C7979 Ovarian Endometrioid Adenocarcinoma 5 165859 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 6 165860 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 6 165861 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 6 165862 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 7 165863 -NCIT:C186273 Unresectable Ovarian Endometrioid Adenocarcinoma 6 165864 -NCIT:C40061 Ovarian Endometrioid Adenocarcinoma with Squamous Differentiation 6 165865 -NCIT:C8943 Metastatic Endometrioid Adenocarcinoma 5 165866 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 6 165867 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 7 165868 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 7 165869 -NCIT:C170807 Advanced Endometrioid Adenocarcinoma 6 165870 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 7 165871 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 7 165872 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 6 165873 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 7 165874 -NCIT:C174045 Locally Advanced Endometrioid Adenocarcinoma 6 165875 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 7 165876 -NCIT:C40111 Fallopian Tube Endometrioid Tumor 4 165877 -NCIT:C40110 Borderline Fallopian Tube Endometrioid Tumor 5 165878 -NCIT:C40115 Fallopian Tube Endometrioid Polyp 5 165879 -NCIT:C40124 Fallopian Tube Carcinosarcoma 5 165880 -NCIT:C6279 Fallopian Tube Endometrioid Adenocarcinoma 5 165881 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 6 165882 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 6 165883 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 6 165884 -NCIT:C6257 Ovarian Endometrioid Tumor 4 165885 -NCIT:C179251 Borderline Ovarian Endometrioid Tumor 5 165886 -NCIT:C159486 Borderline Ovarian Endometrioid Tumor/Atypical Proliferative Ovarian Endometrioid Tumor with Microinvasion 6 165887 -NCIT:C7983 Borderline Ovarian Endometrioid Tumor/Atypical Proliferative Ovarian Endometrioid Tumor 6 165888 -NCIT:C40069 Borderline Ovarian Endometrioid Adenofibroma 7 165889 -NCIT:C27289 Borderline Ovarian Endometrioid Cystadenofibroma 8 165890 -NCIT:C40051 Malignant Ovarian Endometrioid Tumor 5 165891 -NCIT:C7979 Ovarian Endometrioid Adenocarcinoma 6 165892 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 7 165893 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 7 165894 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 7 165895 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 165896 -NCIT:C186273 Unresectable Ovarian Endometrioid Adenocarcinoma 7 165897 -NCIT:C40061 Ovarian Endometrioid Adenocarcinoma with Squamous Differentiation 7 165898 -NCIT:C9192 Ovarian Carcinosarcoma 6 165899 -NCIT:C153347 Recurrent Ovarian Carcinosarcoma 7 165900 -NCIT:C170933 Metastatic Ovarian Carcinosarcoma 7 165901 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 8 165902 -NCIT:C40072 Benign Ovarian Endometrioid Tumor 5 165903 -NCIT:C27287 Ovarian Endometrioid Adenofibroma 6 165904 -NCIT:C27288 Ovarian Endometrioid Cystadenofibroma 7 165905 -NCIT:C40075 Ovarian Endometrioid Cystadenoma 6 165906 -NCIT:C8975 Malignant Mixed Mesodermal (Mullerian) Tumor 4 165907 -NCIT:C159507 Primary Peritoneal Carcinosarcoma 5 165908 -NCIT:C170929 Metastatic Malignant Mixed Mesodermal (Mullerian) Tumor 5 165909 -NCIT:C170930 Advanced Malignant Mixed Mesodermal (Mullerian) Tumor 6 165910 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 7 165911 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 7 165912 -NCIT:C170931 Metastatic Uterine Corpus Carcinosarcoma 6 165913 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 7 165914 -NCIT:C170933 Metastatic Ovarian Carcinosarcoma 6 165915 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 7 165916 -NCIT:C40124 Fallopian Tube Carcinosarcoma 5 165917 -NCIT:C40278 Vaginal Carcinosarcoma 5 165918 -NCIT:C42700 Uterine Carcinosarcoma 5 165919 -NCIT:C113238 Uterine Carcinosarcoma, Homologous Type 6 165920 -NCIT:C113239 Uterine Carcinosarcoma, Heterologous Type 6 165921 -NCIT:C36097 Cervical Carcinosarcoma 6 165922 -NCIT:C9180 Uterine Corpus Carcinosarcoma 6 165923 -NCIT:C155818 Recurrent Uterine Corpus Carcinosarcoma 7 165924 -NCIT:C158381 Refractory Uterine Corpus Carcinosarcoma 7 165925 -NCIT:C170931 Metastatic Uterine Corpus Carcinosarcoma 7 165926 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 8 165927 -NCIT:C9192 Ovarian Carcinosarcoma 5 165928 -NCIT:C153347 Recurrent Ovarian Carcinosarcoma 6 165929 -NCIT:C170933 Metastatic Ovarian Carcinosarcoma 6 165930 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 7 165931 -NCIT:C7132 Glandular Cell Neoplasm 3 165932 -NCIT:C27269 Glandular Cell Intraepithelial Neoplasia 4 165933 -NCIT:C27424 Esophageal Glandular Intraepithelial Neoplasia 5 165934 -NCIT:C27428 Low Grade Esophageal Glandular Intraepithelial Neoplasia 6 165935 -NCIT:C27429 High Grade Esophageal Glandular Intraepithelial Neoplasia 6 165936 -NCIT:C133402 Clinical Stage 0 Esophageal Adenocarcinoma AJCC v8 7 165937 -NCIT:C133413 Pathologic Stage 0 Esophageal Adenocarcinoma AJCC v8 7 165938 -NCIT:C8629 Stage 0 Esophageal Adenocarcinoma AJCC v7 7 165939 -NCIT:C95613 Intraepithelial Neoplasia in Barrett Esophagus 6 165940 -NCIT:C27789 Endometrial Atypical Hyperplasia/Endometrioid Intraepithelial Neoplasia 5 165941 -NCIT:C36086 Breast Flat Ductal Epithelial Atypia 5 165942 -NCIT:C3955 Gastric Intraepithelial Neoplasia 5 165943 -NCIT:C27436 Low Grade Gastric Intraepithelial Neoplasia 6 165944 -NCIT:C27437 High Grade Gastric Intraepithelial Neoplasia 6 165945 -NCIT:C4064 Prostatic Intraepithelial Neoplasia 5 165946 -NCIT:C5541 High Grade Prostatic Intraepithelial Neoplasia 6 165947 -NCIT:C3642 Grade III Prostatic Intraepithelial Neoplasia 7 165948 -NCIT:C39887 High Grade Prostatic Intraepithelial Neoplasia, Signet Ring Variant 7 165949 -NCIT:C39888 High Grade Prostatic Intraepithelial Neoplasia, Mucinous Variant 7 165950 -NCIT:C39889 High Grade Prostatic Intraepithelial Neoplasia, Foamy Variant 7 165951 -NCIT:C39890 High Grade Prostatic Intraepithelial Neoplasia, Inverted Variant 7 165952 -NCIT:C39891 High Grade Prostatic Intraepithelial Neoplasia, Small Cell Neuroendocrine Variant 7 165953 -NCIT:C7360 Grade II Prostatic Intraepithelial Neoplasia 7 165954 -NCIT:C5542 Low Grade Prostatic Intraepithelial Neoplasia 6 165955 -NCIT:C4843 Biliary Intraepithelial Neoplasia 5 165956 -NCIT:C172804 Low Grade Biliary Intraepithelial Neoplasia 6 165957 -NCIT:C67491 Biliary Intraepithelial Neoplasia-1 7 165958 -NCIT:C67492 Biliary Intraepithelial Neoplasia-2 7 165959 -NCIT:C43606 Gallbladder Biliary Intraepithelial Neoplasia 6 165960 -NCIT:C43607 Gallbladder Flat Biliary Intraepithelial Neoplasia 7 165961 -NCIT:C43609 Gallbladder Papillary Biliary Intraepithelial Neoplasia 7 165962 -NCIT:C67493 High-Grade Biliary Intraepithelial Neoplasia 6 165963 -NCIT:C96945 Bile Duct Biliary Intraepithelial Neoplasia 6 165964 -NCIT:C96942 Extrahepatic Bile Duct Biliary Intraepithelial Neoplasia 7 165965 -NCIT:C96943 Intrahepatic Bile Duct Biliary Intraepithelial Neoplasia 7 165966 -NCIT:C4845 Pancreatic Intraepithelial Neoplasia 5 165967 -NCIT:C172803 Low Grade Pancreatic Intraepithelial Neoplasia 6 165968 -NCIT:C4846 Pancreatic Intraepithelial Neoplasia-2 7 165969 -NCIT:C6820 Pancreatic Intraepithelial Neoplasia-1 7 165970 -NCIT:C95429 Pancreatic Intraepithelial Neoplasia-1A 8 165971 -NCIT:C95430 Pancreatic Intraepithelial Neoplasia-1B 8 165972 -NCIT:C95432 High Grade Pancreatic Intraepithelial Neoplasia 6 165973 -NCIT:C7658 Intestinal Intraepithelial Neoplasia 5 165974 -NCIT:C27459 Colorectal Intraepithelial Neoplasia 6 165975 -NCIT:C27460 Colorectal Low Grade Intraepithelial Neoplasia 7 165976 -NCIT:C27461 Colorectal High Grade Intraepithelial Neoplasia 7 165977 -NCIT:C27462 Small Intestinal Intraepithelial Neoplasia 6 165978 -NCIT:C27463 Small Intestinal Low Grade Intraepithelial Neoplasia 7 165979 -NCIT:C27464 Small Intestinal High Grade Intraepithelial Neoplasia 7 165980 -NCIT:C7661 Low Grade Glandular Intraepithelial Neoplasia 5 165981 -NCIT:C172803 Low Grade Pancreatic Intraepithelial Neoplasia 6 165982 -NCIT:C4846 Pancreatic Intraepithelial Neoplasia-2 7 165983 -NCIT:C6820 Pancreatic Intraepithelial Neoplasia-1 7 165984 -NCIT:C95429 Pancreatic Intraepithelial Neoplasia-1A 8 165985 -NCIT:C95430 Pancreatic Intraepithelial Neoplasia-1B 8 165986 -NCIT:C172804 Low Grade Biliary Intraepithelial Neoplasia 6 165987 -NCIT:C67491 Biliary Intraepithelial Neoplasia-1 7 165988 -NCIT:C67492 Biliary Intraepithelial Neoplasia-2 7 165989 -NCIT:C27428 Low Grade Esophageal Glandular Intraepithelial Neoplasia 6 165990 -NCIT:C27436 Low Grade Gastric Intraepithelial Neoplasia 6 165991 -NCIT:C27460 Colorectal Low Grade Intraepithelial Neoplasia 6 165992 -NCIT:C27463 Small Intestinal Low Grade Intraepithelial Neoplasia 6 165993 -NCIT:C5542 Low Grade Prostatic Intraepithelial Neoplasia 6 165994 -NCIT:C7674 Low Grade Cervical Glandular Intraepithelial Neoplasia 6 165995 -NCIT:C96419 Appendix Low Grade Intraepithelial Neoplasia 6 165996 -NCIT:C7662 High Grade Glandular Intraepithelial Neoplasia 5 165997 -NCIT:C27429 High Grade Esophageal Glandular Intraepithelial Neoplasia 6 165998 -NCIT:C133402 Clinical Stage 0 Esophageal Adenocarcinoma AJCC v8 7 165999 -NCIT:C133413 Pathologic Stage 0 Esophageal Adenocarcinoma AJCC v8 7 166000 -NCIT:C8629 Stage 0 Esophageal Adenocarcinoma AJCC v7 7 166001 -NCIT:C27437 High Grade Gastric Intraepithelial Neoplasia 6 166002 -NCIT:C27461 Colorectal High Grade Intraepithelial Neoplasia 6 166003 -NCIT:C27464 Small Intestinal High Grade Intraepithelial Neoplasia 6 166004 -NCIT:C5541 High Grade Prostatic Intraepithelial Neoplasia 6 166005 -NCIT:C3642 Grade III Prostatic Intraepithelial Neoplasia 7 166006 -NCIT:C39887 High Grade Prostatic Intraepithelial Neoplasia, Signet Ring Variant 7 166007 -NCIT:C39888 High Grade Prostatic Intraepithelial Neoplasia, Mucinous Variant 7 166008 -NCIT:C39889 High Grade Prostatic Intraepithelial Neoplasia, Foamy Variant 7 166009 -NCIT:C39890 High Grade Prostatic Intraepithelial Neoplasia, Inverted Variant 7 166010 -NCIT:C39891 High Grade Prostatic Intraepithelial Neoplasia, Small Cell Neuroendocrine Variant 7 166011 -NCIT:C7360 Grade II Prostatic Intraepithelial Neoplasia 7 166012 -NCIT:C67493 High-Grade Biliary Intraepithelial Neoplasia 6 166013 -NCIT:C6877 Grade III Glandular Intraepithelial Neoplasia 6 166014 -NCIT:C133402 Clinical Stage 0 Esophageal Adenocarcinoma AJCC v8 7 166015 -NCIT:C133413 Pathologic Stage 0 Esophageal Adenocarcinoma AJCC v8 7 166016 -NCIT:C133550 Clinical Stage 0 Gastroesophageal Junction Adenocarcinoma AJCC v8 7 166017 -NCIT:C133564 Pathologic Stage 0 Gastroesophageal Junction Adenocarcinoma AJCC v8 7 166018 -NCIT:C2924 Breast Ductal Carcinoma In Situ 7 166019 -NCIT:C176005 Breast Ductal Carcinoma In Situ, Comedo Type 8 166020 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 8 166021 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 9 166022 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 9 166023 -NCIT:C5137 Breast Ductal Carcinoma In Situ, Non-Comedo Type 8 166024 -NCIT:C5138 Breast Ductal Carcinoma In Situ, Cribriform Pattern 8 166025 -NCIT:C66933 Breast Ductal Carcinoma In Situ, Solid Type 8 166026 -NCIT:C7949 Breast Ductal Carcinoma In Situ, High Grade 8 166027 -NCIT:C9456 Breast Ductal Carcinoma In Situ, Intermediate Grade 8 166028 -NCIT:C9457 Breast Ductal Carcinoma In Situ, Low Grade 8 166029 -NCIT:C3642 Grade III Prostatic Intraepithelial Neoplasia 7 166030 -NCIT:C40105 Stage 0 Fallopian Tube Cancer AJCC v7 7 166031 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 8 166032 -NCIT:C4018 Breast Lobular Carcinoma In Situ 7 166033 -NCIT:C137839 Breast Pleomorphic Lobular Carcinoma In Situ 8 166034 -NCIT:C175949 Breast Classic Lobular Carcinoma In Situ 8 166035 -NCIT:C83170 Breast Classic Lobular Carcinoma In Situ Type A 9 166036 -NCIT:C83171 Breast Classic Lobular Carcinoma In Situ Type B 9 166037 -NCIT:C175950 Breast Florid Lobular Carcinoma In Situ 8 166038 -NCIT:C4195 Breast Ductal Carcinoma In Situ and Lobular Carcinoma In Situ 7 166039 -NCIT:C4520 Cervical Adenocarcinoma In Situ 7 166040 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 8 166041 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 8 166042 -NCIT:C8629 Stage 0 Esophageal Adenocarcinoma AJCC v7 7 166043 -NCIT:C7660 Grade II Glandular Intraepithelial Neoplasia 6 166044 -NCIT:C7360 Grade II Prostatic Intraepithelial Neoplasia 7 166045 -NCIT:C7675 High Grade Cervical Glandular Intraepithelial Neoplasia 6 166046 -NCIT:C4520 Cervical Adenocarcinoma In Situ 7 166047 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 8 166048 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 8 166049 -NCIT:C95432 High Grade Pancreatic Intraepithelial Neoplasia 6 166050 -NCIT:C95918 Ampullary Flat Intraepithelial Neoplasia, High Grade 6 166051 -NCIT:C96420 Appendix High Grade Intraepithelial Neoplasia 6 166052 -NCIT:C7673 Cervical Glandular Intraepithelial Neoplasia 5 166053 -NCIT:C7674 Low Grade Cervical Glandular Intraepithelial Neoplasia 6 166054 -NCIT:C7675 High Grade Cervical Glandular Intraepithelial Neoplasia 6 166055 -NCIT:C4520 Cervical Adenocarcinoma In Situ 7 166056 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 8 166057 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 8 166058 -NCIT:C8436 Breast Atypical Ductal Hyperplasia 5 166059 -NCIT:C2852 Adenocarcinoma 4 166060 -NCIT:C129449 Small Cell Adenocarcinoma 5 166061 -NCIT:C129654 Unresectable Digestive System Adenocarcinoma 5 166062 -NCIT:C150578 Unresectable Gastroesophageal Junction Adenocarcinoma 6 166063 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 7 166064 -NCIT:C154221 Unresectable Gastric Adenocarcinoma 6 166065 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 7 166066 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 8 166067 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 8 166068 -NCIT:C162016 Unresectable Pancreatic Adenocarcinoma 6 166069 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 7 166070 -NCIT:C172245 Unresectable Pancreatic Ductal Adenocarcinoma 7 166071 -NCIT:C165171 Unresectable Liver and Intrahepatic Bile Duct Carcinoma 6 166072 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 7 166073 -NCIT:C27345 Unresectable Hepatocellular Carcinoma 7 166074 -NCIT:C162602 Unresectable Fibrolamellar Carcinoma 8 166075 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 8 166076 -NCIT:C7878 Localized Unresectable Adult Liver Carcinoma 7 166077 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 8 166078 -NCIT:C171585 Unresectable Colorectal Adenocarcinoma 6 166079 -NCIT:C162116 Unresectable Colon Adenocarcinoma 7 166080 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 8 166081 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 7 166082 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 8 166083 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 7 166084 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 8 166085 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 8 166086 -NCIT:C173162 Unresectable Esophageal Adenocarcinoma 6 166087 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 7 166088 -NCIT:C172248 Unresectable Distal Esophagus Adenocarcinoma 7 166089 -NCIT:C175516 Unresectable Small Intestinal Adenocarcinoma 6 166090 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 7 166091 -NCIT:C189064 Unresectable Gallbladder Adenocarcinoma 6 166092 -NCIT:C189065 Unresectable Ampulla of Vater Adenocarcinoma 6 166093 -NCIT:C27324 Unresectable Cholangiocarcinoma 6 166094 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 7 166095 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 7 166096 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 7 166097 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 7 166098 -NCIT:C159563 Refractory Adenocarcinoma 5 166099 -NCIT:C158101 Refractory Cholangiocarcinoma 6 166100 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 7 166101 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 7 166102 -NCIT:C162015 Refractory Pancreatic Adenocarcinoma 6 166103 -NCIT:C165450 Refractory Pancreatic Ductal Adenocarcinoma 7 166104 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 7 166105 -NCIT:C162154 Refractory Colorectal Adenocarcinoma 6 166106 -NCIT:C162155 Refractory Colon Adenocarcinoma 7 166107 -NCIT:C162157 Refractory Rectal Adenocarcinoma 7 166108 -NCIT:C162450 Refractory Hepatocellular Carcinoma 6 166109 -NCIT:C188887 Refractory Fibrolamellar Carcinoma 7 166110 -NCIT:C162538 Refractory Gastroesophageal Junction Adenocarcinoma 6 166111 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 6 166112 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 7 166113 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 7 166114 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 7 166115 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 7 166116 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 7 166117 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 6 166118 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 7 166119 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 7 166120 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 8 166121 -NCIT:C165703 Refractory Breast Adenocarcinoma 6 166122 -NCIT:C157057 Refractory Hormone Receptor-Positive Breast Carcinoma 7 166123 -NCIT:C167076 Refractory Triple-Negative Breast Carcinoma 7 166124 -NCIT:C168784 Refractory HER2-Negative Breast Carcinoma 7 166125 -NCIT:C182110 Refractory HER2-Positive Breast Carcinoma 7 166126 -NCIT:C165745 Refractory Renal Cell Carcinoma 6 166127 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 7 166128 -NCIT:C167074 Refractory Gastric Adenocarcinoma 6 166129 -NCIT:C167256 Refractory Prostate Adenocarcinoma 6 166130 -NCIT:C170968 Refractory Ovarian Adenocarcinoma 6 166131 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 7 166132 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 7 166133 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 8 166134 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 8 166135 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 7 166136 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 7 166137 -NCIT:C170971 Refractory Fallopian Tube Adenocarcinoma 6 166138 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 7 166139 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 7 166140 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 7 166141 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 7 166142 -NCIT:C170975 Refractory Primary Peritoneal Adenocarcinoma 6 166143 -NCIT:C171021 Refractory Primary Peritoneal Serous Adenocarcinoma 7 166144 -NCIT:C178686 Refractory Primary Peritoneal High Grade Serous Adenocarcinoma 8 166145 -NCIT:C178687 Refractory Primary Peritoneal Low Grade Serous Adenocarcinoma 8 166146 -NCIT:C178684 Refractory Primary Peritoneal Clear Cell Adenocarcinoma 7 166147 -NCIT:C178685 Refractory Primary Peritoneal Endometrioid Adenocarcinoma 7 166148 -NCIT:C176892 Refractory Esophageal Adenocarcinoma 6 166149 -NCIT:C179178 Refractory Appendix Adenocarcinoma 6 166150 -NCIT:C179180 Refractory Pseudomyxoma Peritonei 6 166151 -NCIT:C179209 Refractory Lung Adenocarcinoma 6 166152 -NCIT:C181036 Refractory Cervical Adenocarcinoma 6 166153 -NCIT:C188036 Refractory Adrenal Cortical Carcinoma 6 166154 -NCIT:C159565 Recurrent Adenocarcinoma 5 166155 -NCIT:C136651 Recurrent Cervical Adenocarcinoma 6 166156 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 7 166157 -NCIT:C153359 Recurrent Gastroesophageal Junction Adenocarcinoma 6 166158 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 6 166159 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 6 166160 -NCIT:C153574 Recurrent Ampulla of Vater Adenocarcinoma 6 166161 -NCIT:C153575 Recurrent Anal Adenocarcinoma 6 166162 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 7 166163 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 7 166164 -NCIT:C153611 Recurrent Salivary Duct Carcinoma 6 166165 -NCIT:C153612 Recurrent Minor Salivary Gland Adenocarcinoma 6 166166 -NCIT:C153614 Recurrent Ovarian Adenocarcinoma 6 166167 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 7 166168 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 7 166169 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 8 166170 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 8 166171 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 8 166172 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 7 166173 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 7 166174 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 8 166175 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 7 166176 -NCIT:C154622 Recurrent Gastric Adenocarcinoma 6 166177 -NCIT:C155742 Recurrent Pancreatic Adenocarcinoma 6 166178 -NCIT:C153569 Recurrent Pancreatic Acinar Cell Carcinoma 7 166179 -NCIT:C153619 Recurrent Pancreatic Ductal Adenocarcinoma 7 166180 -NCIT:C153620 Recurrent Pancreatic Cystadenocarcinoma 7 166181 -NCIT:C158421 Recurrent Endometrioid Adenocarcinoma 6 166182 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 7 166183 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 7 166184 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 7 166185 -NCIT:C165269 Recurrent Primary Peritoneal Endometrioid Adenocarcinoma 7 166186 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 6 166187 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 7 166188 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 7 166189 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 7 166190 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 7 166191 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 7 166192 -NCIT:C162441 Recurrent Colorectal Adenocarcinoma 6 166193 -NCIT:C162442 Recurrent Colon Adenocarcinoma 7 166194 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 7 166195 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 6 166196 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 7 166197 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 7 166198 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 8 166199 -NCIT:C170766 Recurrent Fallopian Tube Adenocarcinoma 6 166200 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 7 166201 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 7 166202 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 7 166203 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 7 166204 -NCIT:C170767 Recurrent Primary Peritoneal Adenocarcinoma 6 166205 -NCIT:C156453 Recurrent Primary Peritoneal Serous Adenocarcinoma 7 166206 -NCIT:C156454 Recurrent Primary Peritoneal Low Grade Serous Adenocarcinoma 8 166207 -NCIT:C165268 Recurrent Primary Peritoneal High Grade Serous Adenocarcinoma 8 166208 -NCIT:C165269 Recurrent Primary Peritoneal Endometrioid Adenocarcinoma 7 166209 -NCIT:C170761 Recurrent Primary Peritoneal Clear Cell Adenocarcinoma 7 166210 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 6 166211 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 7 166212 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 6 166213 -NCIT:C175588 Recurrent Breast Adenocarcinoma 6 166214 -NCIT:C153568 Recurrent Breast Acinic Cell Carcinoma 7 166215 -NCIT:C153584 Recurrent Lobular Breast Carcinoma 7 166216 -NCIT:C153587 Recurrent Invasive Breast Carcinoma of No Special Type 7 166217 -NCIT:C153588 Recurrent Breast Paget Disease 7 166218 -NCIT:C168783 Recurrent HER2-Negative Breast Carcinoma 7 166219 -NCIT:C171014 Recurrent Triple-Negative Breast Carcinoma 7 166220 -NCIT:C182108 Recurrent HER2-Positive Breast Carcinoma 7 166221 -NCIT:C185157 Recurrent Hormone Receptor-Positive Breast Carcinoma 7 166222 -NCIT:C8607 Recurrent Breast Inflammatory Carcinoma 7 166223 -NCIT:C179174 Recurrent Appendix Adenocarcinoma 6 166224 -NCIT:C153579 Recurrent Appendix Mucinous Adenocarcinoma 7 166225 -NCIT:C179179 Recurrent Pseudomyxoma Peritonei 6 166226 -NCIT:C27325 Recurrent Cholangiocarcinoma 6 166227 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 7 166228 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 7 166229 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 6 166230 -NCIT:C6417 Recurrent Adrenal Cortical Carcinoma 6 166231 -NCIT:C7825 Recurrent Renal Cell Carcinoma 6 166232 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 7 166233 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 8 166234 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 7 166235 -NCIT:C7828 Recurrent Parathyroid Gland Carcinoma 6 166236 -NCIT:C8627 Recurrent Esophageal Adenocarcinoma 6 166237 -NCIT:C8757 Recurrent Lung Adenocarcinoma 6 166238 -NCIT:C9264 Recurrent Hepatocellular Carcinoma 6 166239 -NCIT:C154082 Recurrent Fibrolamellar Carcinoma 7 166240 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 7 166241 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 7 166242 -NCIT:C160976 Sinonasal Adenocarcinoma 5 166243 -NCIT:C161007 Sinonasal Adenocarcinoma, Salivary-Type 6 166244 -NCIT:C161008 Sinonasal Adenocarcinoma, Non-Salivary-Type 6 166245 -NCIT:C116316 Sinonasal Adenocarcinoma, Intestinal-Type 7 166246 -NCIT:C160984 Sinonasal Adenocarcinoma, Intestinal-Type with Papillary Pattern 8 166247 -NCIT:C160986 Sinonasal Adenocarcinoma, Intestinal-Type with Colonic Pattern 8 166248 -NCIT:C160987 Sinonasal Adenocarcinoma, Intestinal-Type with Solid Pattern 8 166249 -NCIT:C160995 Sinonasal Adenocarcinoma, Intestinal-Type with Mucinous Pattern 8 166250 -NCIT:C161000 Sinonasal Adenocarcinoma, Intestinal-Type with Mixed Pattern 8 166251 -NCIT:C160977 Sinonasal Adenocarcinoma, Non-Intestinal-Type 7 166252 -NCIT:C6015 Nasal Cavity Adenocarcinoma 6 166253 -NCIT:C6017 Paranasal Sinus Adenocarcinoma 6 166254 -NCIT:C6237 Ethmoid Sinus Adenocarcinoma 7 166255 -NCIT:C6240 Maxillary Sinus Adenocarcinoma 7 166256 -NCIT:C167341 Adnexal Adenocarcinoma, Not Otherwise Specified 5 166257 -NCIT:C167368 Adnexal Secretory Carcinoma 5 166258 -NCIT:C167369 Signet Ring Cell/Histiocytoid Carcinoma 5 166259 -NCIT:C170733 Primary Peritoneal Adenocarcinoma 5 166260 -NCIT:C162566 Primary Peritoneal Clear Cell Adenocarcinoma 6 166261 -NCIT:C170761 Recurrent Primary Peritoneal Clear Cell Adenocarcinoma 7 166262 -NCIT:C178684 Refractory Primary Peritoneal Clear Cell Adenocarcinoma 7 166263 -NCIT:C165260 Primary Peritoneal Endometrioid Adenocarcinoma 6 166264 -NCIT:C165269 Recurrent Primary Peritoneal Endometrioid Adenocarcinoma 7 166265 -NCIT:C178685 Refractory Primary Peritoneal Endometrioid Adenocarcinoma 7 166266 -NCIT:C186276 Unresectable Primary Peritoneal Endometrioid Adenocarcinoma 7 166267 -NCIT:C170767 Recurrent Primary Peritoneal Adenocarcinoma 6 166268 -NCIT:C156453 Recurrent Primary Peritoneal Serous Adenocarcinoma 7 166269 -NCIT:C156454 Recurrent Primary Peritoneal Low Grade Serous Adenocarcinoma 8 166270 -NCIT:C165268 Recurrent Primary Peritoneal High Grade Serous Adenocarcinoma 8 166271 -NCIT:C165269 Recurrent Primary Peritoneal Endometrioid Adenocarcinoma 7 166272 -NCIT:C170761 Recurrent Primary Peritoneal Clear Cell Adenocarcinoma 7 166273 -NCIT:C170972 Metastatic Primary Peritoneal Adenocarcinoma 6 166274 -NCIT:C171019 Metastatic Primary Peritoneal Serous Adenocarcinoma 7 166275 -NCIT:C186453 Metastatic Primary Peritoneal High Grade Serous Adenocarcinoma 8 166276 -NCIT:C170974 Unresectable Primary Peritoneal Adenocarcinoma 6 166277 -NCIT:C171020 Unresectable Primary Peritoneal Serous Adenocarcinoma 7 166278 -NCIT:C186275 Unresectable Primary Peritoneal High Grade Serous Adenocarcinoma 8 166279 -NCIT:C186276 Unresectable Primary Peritoneal Endometrioid Adenocarcinoma 7 166280 -NCIT:C170975 Refractory Primary Peritoneal Adenocarcinoma 6 166281 -NCIT:C171021 Refractory Primary Peritoneal Serous Adenocarcinoma 7 166282 -NCIT:C178686 Refractory Primary Peritoneal High Grade Serous Adenocarcinoma 8 166283 -NCIT:C178687 Refractory Primary Peritoneal Low Grade Serous Adenocarcinoma 8 166284 -NCIT:C178684 Refractory Primary Peritoneal Clear Cell Adenocarcinoma 7 166285 -NCIT:C178685 Refractory Primary Peritoneal Endometrioid Adenocarcinoma 7 166286 -NCIT:C40023 Primary Peritoneal Serous Adenocarcinoma 6 166287 -NCIT:C126353 Primary Peritoneal High Grade Serous Adenocarcinoma 7 166288 -NCIT:C165268 Recurrent Primary Peritoneal High Grade Serous Adenocarcinoma 8 166289 -NCIT:C178686 Refractory Primary Peritoneal High Grade Serous Adenocarcinoma 8 166290 -NCIT:C186275 Unresectable Primary Peritoneal High Grade Serous Adenocarcinoma 8 166291 -NCIT:C186453 Metastatic Primary Peritoneal High Grade Serous Adenocarcinoma 8 166292 -NCIT:C126354 Primary Peritoneal Low Grade Serous Adenocarcinoma 7 166293 -NCIT:C156454 Recurrent Primary Peritoneal Low Grade Serous Adenocarcinoma 8 166294 -NCIT:C178687 Refractory Primary Peritoneal Low Grade Serous Adenocarcinoma 8 166295 -NCIT:C156453 Recurrent Primary Peritoneal Serous Adenocarcinoma 7 166296 -NCIT:C156454 Recurrent Primary Peritoneal Low Grade Serous Adenocarcinoma 8 166297 -NCIT:C165268 Recurrent Primary Peritoneal High Grade Serous Adenocarcinoma 8 166298 -NCIT:C171019 Metastatic Primary Peritoneal Serous Adenocarcinoma 7 166299 -NCIT:C186453 Metastatic Primary Peritoneal High Grade Serous Adenocarcinoma 8 166300 -NCIT:C171020 Unresectable Primary Peritoneal Serous Adenocarcinoma 7 166301 -NCIT:C186275 Unresectable Primary Peritoneal High Grade Serous Adenocarcinoma 8 166302 -NCIT:C171021 Refractory Primary Peritoneal Serous Adenocarcinoma 7 166303 -NCIT:C178686 Refractory Primary Peritoneal High Grade Serous Adenocarcinoma 8 166304 -NCIT:C178687 Refractory Primary Peritoneal Low Grade Serous Adenocarcinoma 8 166305 -NCIT:C7695 Primary Peritoneal Serous Papillary Adenocarcinoma 7 166306 -NCIT:C174551 Retinal Pigment Epithelium Adenocarcinoma 5 166307 -NCIT:C174561 Ciliary Body Adenocarcinoma 5 166308 -NCIT:C175336 Lacrimal Drainage System Adenocarcinoma 5 166309 -NCIT:C176887 Psammocarcinoma 5 166310 -NCIT:C179320 Mesonephric-Like Adenocarcinoma 5 166311 -NCIT:C179321 Ovarian Mesonephric-Like Adenocarcinoma 6 166312 -NCIT:C179322 Endometrial Mesonephric-Like Adenocarcinoma 6 166313 -NCIT:C191751 Adenocarcinoma of the Urinary Tract 5 166314 -NCIT:C4032 Bladder Adenocarcinoma 6 166315 -NCIT:C39835 Bladder Enteric Type Adenocarcinoma 7 166316 -NCIT:C39836 Bladder Adenocarcinoma, Not Otherwise Specified 7 166317 -NCIT:C39837 Bladder Mucinous Adenocarcinoma 7 166318 -NCIT:C39838 Bladder Hepatoid Adenocarcinoma 7 166319 -NCIT:C39839 Bladder Mixed Adenocarcinoma 7 166320 -NCIT:C39843 Urachal Adenocarcinoma 7 166321 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 7 166322 -NCIT:C6163 Bladder Signet Ring Cell Adenocarcinoma 7 166323 -NCIT:C8894 Stage 0 Bladder Adenocarcinoma AJCC v6 and v7 7 166324 -NCIT:C8895 Stage I Bladder Adenocarcinoma AJCC v6 and v7 7 166325 -NCIT:C8896 Stage II Bladder Adenocarcinoma AJCC v6 and v7 7 166326 -NCIT:C8897 Stage III Bladder Adenocarcinoma AJCC v6 and v7 7 166327 -NCIT:C8898 Stage IV Bladder Adenocarcinoma AJCC v7 7 166328 -NCIT:C26712 Mucinous Adenocarcinoma 5 166329 -NCIT:C128166 Vulvar Adenocarcinoma, Intestinal-Type 6 166330 -NCIT:C136709 Invasive Lung Mucinous Adenocarcinoma 6 166331 -NCIT:C160995 Sinonasal Adenocarcinoma, Intestinal-Type with Mucinous Pattern 6 166332 -NCIT:C27416 Ampulla of Vater Mucinous Adenocarcinoma 6 166333 -NCIT:C27533 Primary Cutaneous Mucinous Carcinoma 6 166334 -NCIT:C3345 Pseudomyxoma Peritonei 6 166335 -NCIT:C179179 Recurrent Pseudomyxoma Peritonei 7 166336 -NCIT:C179180 Refractory Pseudomyxoma Peritonei 7 166337 -NCIT:C36095 Cervical Mucinous Adenocarcinoma 6 166338 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 7 166339 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 7 166340 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 7 166341 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 7 166342 -NCIT:C40206 Human Papillomavirus-Independent Cervical Adenocarcinoma, Gastric-Type 7 166343 -NCIT:C37214 Pancreatic Colloid Carcinoma 6 166344 -NCIT:C3776 Mucinous Cystadenocarcinoma 6 166345 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 7 166346 -NCIT:C40354 Breast Mucinous Cystadenocarcinoma 7 166347 -NCIT:C41246 Pancreatic Mucinous-Cystic Neoplasm with an Associated Invasive Carcinoma 7 166348 -NCIT:C5511 Appendix Mucinous Cystadenocarcinoma 7 166349 -NCIT:C65204 Papillary Mucinous Cystadenocarcinoma 7 166350 -NCIT:C39837 Bladder Mucinous Adenocarcinoma 6 166351 -NCIT:C40103 Fallopian Tube Mucinous Adenocarcinoma 6 166352 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 7 166353 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 7 166354 -NCIT:C40137 Broad Ligament Mucinous Adenocarcinoma 6 166355 -NCIT:C40144 Endometrial Mucinous Adenocarcinoma 6 166356 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 7 166357 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 7 166358 -NCIT:C40149 FIGO Grade 1 Endometrial Mucinous Adenocarcinoma 7 166359 -NCIT:C40150 FIGO Grade 2 Endometrial Mucinous Adenocarcinoma 7 166360 -NCIT:C40151 FIGO Grade 3 Endometrial Mucinous Adenocarcinoma 7 166361 -NCIT:C40252 Vaginal Mucinous Adenocarcinoma 6 166362 -NCIT:C180945 Vaginal Mucinous Adenocarcinoma, Gastric-Type 7 166363 -NCIT:C180946 Vaginal Mucinous Adenocarcinoma, Intestinal-Type 7 166364 -NCIT:C41618 Mucin-Producing Intrahepatic Cholangiocarcinoma 6 166365 -NCIT:C43536 Small Intestinal Mucinous Adenocarcinoma 6 166366 -NCIT:C43558 Appendix Mucinous Adenocarcinoma 6 166367 -NCIT:C153579 Recurrent Appendix Mucinous Adenocarcinoma 7 166368 -NCIT:C162274 Metastatic Appendix Mucinous Adenocarcinoma 7 166369 -NCIT:C5511 Appendix Mucinous Cystadenocarcinoma 7 166370 -NCIT:C43585 Colorectal Mucinous Adenocarcinoma 6 166371 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 7 166372 -NCIT:C43592 Rectosigmoid Mucinous Adenocarcinoma 7 166373 -NCIT:C7966 Colon Mucinous Adenocarcinoma 7 166374 -NCIT:C7973 Rectal Mucinous Adenocarcinoma 7 166375 -NCIT:C45512 Lung Colloid Adenocarcinoma 6 166376 -NCIT:C5243 Ovarian Mucinous Adenocarcinoma 6 166377 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 7 166378 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 7 166379 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 7 166380 -NCIT:C183245 Unresectable Ovarian Mucinous Adenocarcinoma 7 166381 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 7 166382 -NCIT:C5248 Gastric Mucinous Adenocarcinoma 6 166383 -NCIT:C5537 Prostate Acinar Mucinous Adenocarcinoma 6 166384 -NCIT:C5606 Anal Mucinous Adenocarcinoma 6 166385 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 7 166386 -NCIT:C5744 Gallbladder Mucinous Adenocarcinoma 6 166387 -NCIT:C5846 Extrahepatic Bile Duct Mucinous Adenocarcinoma 6 166388 -NCIT:C62193 Salivary Gland Mucinous Adenocarcinoma 6 166389 -NCIT:C9131 Breast Mucinous Carcinoma 6 166390 -NCIT:C40355 Breast Columnar Cell Mucinous Carcinoma 7 166391 -NCIT:C27379 Mucin-Producing Adenocarcinoma 5 166392 -NCIT:C167364 Endocrine Mucin-Producing Sweat Gland Carcinoma 6 166393 -NCIT:C27380 Thyroid Gland Adenocarcinoma 5 166394 -NCIT:C187645 Follicular-Derived Thyroid Gland Carcinoma, High Grade 6 166395 -NCIT:C187648 Differentiated High Grade Thyroid Gland Carcinoma 7 166396 -NCIT:C6040 Poorly Differentiated Thyroid Gland Carcinoma 7 166397 -NCIT:C174046 Metastatic Poorly Differentiated Thyroid Gland Carcinoma 8 166398 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 8 166399 -NCIT:C174569 Unresectable Poorly Differentiated Thyroid Gland Carcinoma 8 166400 -NCIT:C187994 Thyroid Gland Secretory Carcinoma 6 166401 -NCIT:C7153 Differentiated Thyroid Gland Carcinoma 6 166402 -NCIT:C118829 Hereditary Nonmedullary Thyroid Gland Carcinoma 7 166403 -NCIT:C140959 Differentiated Thyroid Gland Carcinoma by AJCC v7 Stage 7 166404 -NCIT:C140958 Thyroid Gland Follicular Carcinoma by AJCC v7 Stage 8 166405 -NCIT:C9084 Stage I Thyroid Gland Follicular Carcinoma AJCC v7 9 166406 -NCIT:C9085 Stage II Thyroid Gland Follicular Carcinoma AJCC v7 9 166407 -NCIT:C9086 Stage IV Thyroid Gland Follicular Carcinoma AJCC v7 9 166408 -NCIT:C115035 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v7 10 166409 -NCIT:C115036 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v7 10 166410 -NCIT:C115037 Stage IVC Thyroid Gland Follicular Carcinoma AJCC v7 10 166411 -NCIT:C9121 Stage III Thyroid Gland Follicular Carcinoma AJCC v7 9 166412 -NCIT:C140960 Thyroid Gland Papillary Carcinoma by AJCC v7 Stage 8 166413 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 9 166414 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 9 166415 -NCIT:C9083 Stage IV Thyroid Gland Papillary Carcinoma AJCC v7 9 166416 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 10 166417 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 10 166418 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 10 166419 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 9 166420 -NCIT:C87543 Stage I Differentiated Thyroid Gland Carcinoma AJCC v7 8 166421 -NCIT:C101539 Stage I Differentiated Thyroid Gland Carcinoma Under 45 Years AJCC v7 9 166422 -NCIT:C101540 Stage I Differentiated Thyroid Gland Carcinoma 45 Years and Older AJCC v7 9 166423 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 9 166424 -NCIT:C9084 Stage I Thyroid Gland Follicular Carcinoma AJCC v7 9 166425 -NCIT:C87544 Stage II Differentiated Thyroid Gland Carcinoma AJCC v7 8 166426 -NCIT:C101541 Stage II Differentiated Thyroid Gland Carcinoma Under 45 Years AJCC v7 9 166427 -NCIT:C101542 Stage II Differentiated Thyroid Gland Carcinoma 45 Years and Older AJCC v7 9 166428 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 9 166429 -NCIT:C9085 Stage II Thyroid Gland Follicular Carcinoma AJCC v7 9 166430 -NCIT:C87545 Stage III Differentiated Thyroid Gland Carcinoma AJCC v7 8 166431 -NCIT:C9121 Stage III Thyroid Gland Follicular Carcinoma AJCC v7 9 166432 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 9 166433 -NCIT:C87546 Stage IVA Differentiated Thyroid Gland Carcinoma AJCC v7 8 166434 -NCIT:C115035 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v7 9 166435 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 9 166436 -NCIT:C87547 Stage IVB Differentiated Thyroid Gland Carcinoma AJCC v7 8 166437 -NCIT:C115036 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v7 9 166438 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 9 166439 -NCIT:C87548 Stage IVC Differentiated Thyroid Gland Carcinoma AJCC v7 8 166440 -NCIT:C115037 Stage IVC Thyroid Gland Follicular Carcinoma AJCC v7 9 166441 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 9 166442 -NCIT:C140965 Differentiated Thyroid Gland Carcinoma by AJCC v8 Stage 7 166443 -NCIT:C140966 Stage I Differentiated Thyroid Gland Carcinoma AJCC v8 8 166444 -NCIT:C140967 Stage I Differentiated Thyroid Gland Carcinoma Under 55 Years AJCC v8 9 166445 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 10 166446 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 10 166447 -NCIT:C140968 Stage I Differentiated Thyroid Gland Carcinoma 55 Years and Older AJCC v8 9 166448 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 10 166449 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 10 166450 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 9 166451 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 10 166452 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 10 166453 -NCIT:C140988 Stage I Thyroid Gland Follicular Carcinoma AJCC v8 9 166454 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 10 166455 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 10 166456 -NCIT:C140969 Stage II Differentiated Thyroid Gland Carcinoma AJCC v8 8 166457 -NCIT:C140970 Stage II Differentiated Thyroid Gland Carcinoma Under 55 Years AJCC v8 9 166458 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 10 166459 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 10 166460 -NCIT:C140971 Stage II Differentiated Thyroid Gland Carcinoma 55 Years and Older AJCC v8 9 166461 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 10 166462 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 10 166463 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 9 166464 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 10 166465 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 10 166466 -NCIT:C140991 Stage II Thyroid Gland Follicular Carcinoma AJCC v8 9 166467 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 10 166468 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 10 166469 -NCIT:C140972 Stage III Differentiated Thyroid Gland Carcinoma AJCC v8 8 166470 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 9 166471 -NCIT:C140995 Stage III Thyroid Gland Follicular Carcinoma AJCC v8 9 166472 -NCIT:C140973 Stage IV Differentiated Thyroid Gland Carcinoma AJCC v8 8 166473 -NCIT:C140974 Stage IVA Differentiated Thyroid Gland Carcinoma AJCC v8 9 166474 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 10 166475 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 10 166476 -NCIT:C140975 Stage IVB Differentiated Thyroid Gland Carcinoma AJCC v8 9 166477 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 10 166478 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 10 166479 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 9 166480 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 10 166481 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 10 166482 -NCIT:C140996 Stage IV Thyroid Gland Follicular Carcinoma AJCC v8 9 166483 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 10 166484 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 10 166485 -NCIT:C140976 Thyroid Gland Papillary Carcinoma by AJCC v8 Stage 8 166486 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 9 166487 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 10 166488 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 10 166489 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 9 166490 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 10 166491 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 10 166492 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 9 166493 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 9 166494 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 10 166495 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 10 166496 -NCIT:C140987 Thyroid Gland Follicular Carcinoma by AJCC v8 Stage 8 166497 -NCIT:C140988 Stage I Thyroid Gland Follicular Carcinoma AJCC v8 9 166498 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 10 166499 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 10 166500 -NCIT:C140991 Stage II Thyroid Gland Follicular Carcinoma AJCC v8 9 166501 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 10 166502 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 10 166503 -NCIT:C140995 Stage III Thyroid Gland Follicular Carcinoma AJCC v8 9 166504 -NCIT:C140996 Stage IV Thyroid Gland Follicular Carcinoma AJCC v8 9 166505 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 10 166506 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 10 166507 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 7 166508 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 8 166509 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 8 166510 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 9 166511 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 7 166512 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 8 166513 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 8 166514 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 9 166515 -NCIT:C168572 Unresectable Differentiated Thyroid Gland Carcinoma 7 166516 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 8 166517 -NCIT:C174571 Unresectable Thyroid Gland Follicular Carcinoma 8 166518 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 9 166519 -NCIT:C173979 Metastatic Differentiated Thyroid Gland Carcinoma 7 166520 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 8 166521 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 9 166522 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 10 166523 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 8 166524 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 8 166525 -NCIT:C4035 Thyroid Gland Papillary Carcinoma 7 166526 -NCIT:C123903 Childhood Thyroid Gland Papillary Carcinoma 8 166527 -NCIT:C126409 Warthin-Like Variant Thyroid Gland Papillary Carcinoma 8 166528 -NCIT:C126410 Thyroid Gland Papillary Carcinoma with Fibromatosis/Fasciitis-Like/Desmoid-Type Stroma 8 166529 -NCIT:C126594 Follicular Variant Thyroid Gland Papillary Carcinoma 8 166530 -NCIT:C66850 Invasive Encapsulated Follicular Variant Thyroid Gland Papillary Carcinoma 9 166531 -NCIT:C7381 Invasive Follicular Variant Thyroid Gland Papillary Carcinoma 9 166532 -NCIT:C140960 Thyroid Gland Papillary Carcinoma by AJCC v7 Stage 8 166533 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 9 166534 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 9 166535 -NCIT:C9083 Stage IV Thyroid Gland Papillary Carcinoma AJCC v7 9 166536 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 10 166537 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 10 166538 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 10 166539 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 9 166540 -NCIT:C140976 Thyroid Gland Papillary Carcinoma by AJCC v8 Stage 8 166541 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 9 166542 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 10 166543 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 10 166544 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 9 166545 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 10 166546 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 10 166547 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 9 166548 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 9 166549 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 10 166550 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 10 166551 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 8 166552 -NCIT:C156034 Encapsulated Variant Thyroid Gland Papillary Carcinoma 8 166553 -NCIT:C156045 Spindle Cell Variant Thyroid Gland Papillary Carcinoma 8 166554 -NCIT:C156050 Hobnail Variant Thyroid Gland Papillary Carcinoma 8 166555 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 8 166556 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 8 166557 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 8 166558 -NCIT:C187644 Classic Thyroid Gland Papillary Carcinoma 8 166559 -NCIT:C35558 Tall Cell Variant Thyroid Gland Papillary Carcinoma 8 166560 -NCIT:C35830 Columnar Cell Variant Thyroid Gland Papillary Carcinoma 8 166561 -NCIT:C37304 Multicentric Thyroid Gland Papillary Carcinoma 8 166562 -NCIT:C46004 Thyroid Gland Papillary Microcarcinoma 8 166563 -NCIT:C46092 Macrofollicular Variant Thyroid Gland Papillary Carcinoma 8 166564 -NCIT:C46093 Oncocytic Variant Thyroid Gland Papillary Carcinoma 8 166565 -NCIT:C46094 Clear Cell Variant Thyroid Gland Papillary Carcinoma 8 166566 -NCIT:C46095 Solid/Trabecular Variant Thyroid Gland Papillary Carcinoma 8 166567 -NCIT:C7427 Diffuse Sclerosing Variant Thyroid Gland Papillary Carcinoma 8 166568 -NCIT:C8054 Thyroid Gland Follicular Carcinoma 7 166569 -NCIT:C123904 Childhood Thyroid Gland Follicular Carcinoma 8 166570 -NCIT:C140958 Thyroid Gland Follicular Carcinoma by AJCC v7 Stage 8 166571 -NCIT:C9084 Stage I Thyroid Gland Follicular Carcinoma AJCC v7 9 166572 -NCIT:C9085 Stage II Thyroid Gland Follicular Carcinoma AJCC v7 9 166573 -NCIT:C9086 Stage IV Thyroid Gland Follicular Carcinoma AJCC v7 9 166574 -NCIT:C115035 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v7 10 166575 -NCIT:C115036 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v7 10 166576 -NCIT:C115037 Stage IVC Thyroid Gland Follicular Carcinoma AJCC v7 10 166577 -NCIT:C9121 Stage III Thyroid Gland Follicular Carcinoma AJCC v7 9 166578 -NCIT:C140987 Thyroid Gland Follicular Carcinoma by AJCC v8 Stage 8 166579 -NCIT:C140988 Stage I Thyroid Gland Follicular Carcinoma AJCC v8 9 166580 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 10 166581 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 10 166582 -NCIT:C140991 Stage II Thyroid Gland Follicular Carcinoma AJCC v8 9 166583 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 10 166584 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 10 166585 -NCIT:C140995 Stage III Thyroid Gland Follicular Carcinoma AJCC v8 9 166586 -NCIT:C140996 Stage IV Thyroid Gland Follicular Carcinoma AJCC v8 9 166587 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 10 166588 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 10 166589 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 8 166590 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 9 166591 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 8 166592 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 9 166593 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 10 166594 -NCIT:C156122 Thyroid Gland Follicular Carcinoma, Encapsulated Angioinvasive 8 166595 -NCIT:C156123 Thyroid Gland Follicular Carcinoma, Widely Invasive 8 166596 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 8 166597 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 9 166598 -NCIT:C174571 Unresectable Thyroid Gland Follicular Carcinoma 8 166599 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 9 166600 -NCIT:C187643 Thyroid Gland Follicular Carcinoma, Signet Ring Cell Variant 8 166601 -NCIT:C46096 Thyroid Gland Follicular Carcinoma, Clear Cell Variant 8 166602 -NCIT:C4946 Thyroid Gland Oncocytic Carcinoma 8 166603 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 9 166604 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 9 166605 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 9 166606 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 9 166607 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 10 166608 -NCIT:C65200 Thyroid Gland Follicular Carcinoma, Minimally Invasive 8 166609 -NCIT:C27684 Human Papillomavirus-Related Adenocarcinoma 5 166610 -NCIT:C180943 Human Papillomavirus-Related Vaginal Adenocarcinoma 6 166611 -NCIT:C27677 Human Papillomavirus-Related Cervical Adenocarcinoma 6 166612 -NCIT:C127907 Endocervical Adenocarcinoma, Usual-Type 7 166613 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 8 166614 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 8 166615 -NCIT:C40208 Cervical Villoglandular Adenocarcinoma 8 166616 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 7 166617 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 7 166618 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 7 166619 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 7 166620 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 7 166621 -NCIT:C27745 Non-Small Cell Adenocarcinoma 5 166622 -NCIT:C3512 Lung Adenocarcinoma 6 166623 -NCIT:C136486 Lung Adenocarcinoma In Situ 7 166624 -NCIT:C136716 Lung Non-Mucinous Adenocarcinoma In Situ 8 166625 -NCIT:C136717 Lung Mucinous Adenocarcinoma In Situ 8 166626 -NCIT:C136490 Lung Adenocarcinoma by AJCC v7 Stage 7 166627 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 8 166628 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 8 166629 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 9 166630 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 9 166631 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 8 166632 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 9 166633 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 9 166634 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 8 166635 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 9 166636 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 9 166637 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 8 166638 -NCIT:C136709 Invasive Lung Mucinous Adenocarcinoma 7 166639 -NCIT:C136710 Lung Enteric Adenocarcinoma 7 166640 -NCIT:C155908 Metastatic Lung Adenocarcinoma 7 166641 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 8 166642 -NCIT:C176727 Advanced Lung Adenocarcinoma 8 166643 -NCIT:C174510 Unresectable Lung Adenocarcinoma 7 166644 -NCIT:C179209 Refractory Lung Adenocarcinoma 7 166645 -NCIT:C183109 Invasive Lung Non-Mucinous Adenocarcinoma 7 166646 -NCIT:C123160 Lepidic Adenocarcinoma 8 166647 -NCIT:C5649 Lung Acinar Adenocarcinoma 8 166648 -NCIT:C5650 Lung Papillary Adenocarcinoma 8 166649 -NCIT:C128847 Lung Micropapillary Adenocarcinoma 9 166650 -NCIT:C5651 Solid Lung Adenocarcinoma 8 166651 -NCIT:C190954 Resectable Lung Adenocarcinoma 7 166652 -NCIT:C2923 Minimally Invasive Lung Adenocarcinoma 7 166653 -NCIT:C7268 Minimally Invasive Lung Mucinous Adenocarcinoma 8 166654 -NCIT:C7269 Minimally Invasive Lung Non-Mucinous Adenocarcinoma 8 166655 -NCIT:C7270 Minimally Invasive Lung Mixed Non-Mucinous and Mucinous Adenocarcinoma 8 166656 -NCIT:C45509 Lung Fetal Adenocarcinoma 7 166657 -NCIT:C45512 Lung Colloid Adenocarcinoma 7 166658 -NCIT:C6699 Occult Lung Adenocarcinoma 7 166659 -NCIT:C8757 Recurrent Lung Adenocarcinoma 7 166660 -NCIT:C27813 Bile Duct Adenocarcinoma 5 166661 -NCIT:C156910 Resectable Bile Duct Adenocarcinoma 6 166662 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 7 166663 -NCIT:C27326 Resectable Cholangiocarcinoma 7 166664 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 8 166665 -NCIT:C4130 Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 6 166666 -NCIT:C96946 Extrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 7 166667 -NCIT:C96947 Intrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 7 166668 -NCIT:C4436 Cholangiocarcinoma 6 166669 -NCIT:C157623 Metastatic Cholangiocarcinoma 7 166670 -NCIT:C162752 Advanced Cholangiocarcinoma 8 166671 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 9 166672 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 9 166673 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 9 166674 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 8 166675 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 166676 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 9 166677 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 8 166678 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 9 166679 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 8 166680 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 166681 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 9 166682 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 8 166683 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 9 166684 -NCIT:C158101 Refractory Cholangiocarcinoma 7 166685 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 8 166686 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 8 166687 -NCIT:C27324 Unresectable Cholangiocarcinoma 7 166688 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 8 166689 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 8 166690 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 8 166691 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 8 166692 -NCIT:C27325 Recurrent Cholangiocarcinoma 7 166693 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 8 166694 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 8 166695 -NCIT:C27326 Resectable Cholangiocarcinoma 7 166696 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 8 166697 -NCIT:C27769 Opisthorchis Viverrini-Related Cholangiocarcinoma 7 166698 -NCIT:C35417 Intrahepatic Cholangiocarcinoma 7 166699 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 8 166700 -NCIT:C134514 Intrahepatic Cholangiocarcinoma by AJCC v7 Stage 8 166701 -NCIT:C88049 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v7 9 166702 -NCIT:C88050 Stage I Intrahepatic Cholangiocarcinoma AJCC v7 9 166703 -NCIT:C88051 Stage II Intrahepatic Cholangiocarcinoma AJCC v7 9 166704 -NCIT:C88052 Stage III Intrahepatic Cholangiocarcinoma AJCC v7 9 166705 -NCIT:C88053 Stage IVA Intrahepatic Cholangiocarcinoma AJCC v7 9 166706 -NCIT:C88054 Stage IVB Intrahepatic Cholangiocarcinoma AJCC v7 9 166707 -NCIT:C134755 Intrahepatic Cholangiocarcinoma by AJCC v8 Stage 8 166708 -NCIT:C134756 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v8 9 166709 -NCIT:C134757 Stage I Intrahepatic Cholangiocarcinoma AJCC v8 9 166710 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 10 166711 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 10 166712 -NCIT:C134760 Stage II Intrahepatic Cholangiocarcinoma AJCC v8 9 166713 -NCIT:C134761 Stage III Intrahepatic Cholangiocarcinoma AJCC v8 9 166714 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 10 166715 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 10 166716 -NCIT:C134764 Stage IV Intrahepatic Cholangiocarcinoma AJCC v8 9 166717 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 8 166718 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 8 166719 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 8 166720 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 166721 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 9 166722 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 8 166723 -NCIT:C41617 Cholangiolocellular Carcinoma 8 166724 -NCIT:C41618 Mucin-Producing Intrahepatic Cholangiocarcinoma 8 166725 -NCIT:C41619 Signet Ring Cell Intrahepatic Cholangiocarcinoma 8 166726 -NCIT:C41620 Sarcomatoid Intrahepatic Cholangiocarcinoma 8 166727 -NCIT:C43848 Clear Cell Intrahepatic Cholangiocarcinoma 8 166728 -NCIT:C96804 Large Duct Intrahepatic Cholangiocarcinoma 8 166729 -NCIT:C96805 Small Duct Intrahepatic Cholangiocarcinoma 8 166730 -NCIT:C96949 Intrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 8 166731 -NCIT:C36077 Hilar Cholangiocarcinoma 7 166732 -NCIT:C134742 Hilar Cholangiocarcinoma by AJCC v7 Stage 8 166733 -NCIT:C88058 Stage 0 Hilar Cholangiocarcinoma AJCC v7 9 166734 -NCIT:C88059 Stage I Hilar Cholangiocarcinoma AJCC v7 9 166735 -NCIT:C88060 Stage II Hilar Cholangiocarcinoma AJCC v7 9 166736 -NCIT:C88061 Stage IIIA Hilar Cholangiocarcinoma AJCC v7 9 166737 -NCIT:C88062 Stage IIIB Hilar Cholangiocarcinoma AJCC v7 9 166738 -NCIT:C88063 Stage IVA Hilar Cholangiocarcinoma AJCC v7 9 166739 -NCIT:C88064 Stage IVB Hilar Cholangiocarcinoma AJCC v7 9 166740 -NCIT:C134743 Hilar Cholangiocarcinoma by AJCC v8 Stage 8 166741 -NCIT:C134744 Stage 0 Hilar Cholangiocarcinoma AJCC v8 9 166742 -NCIT:C134745 Stage I Hilar Cholangiocarcinoma AJCC v8 9 166743 -NCIT:C134746 Stage II Hilar Cholangiocarcinoma AJCC v8 9 166744 -NCIT:C134747 Stage III Hilar Cholangiocarcinoma AJCC v8 9 166745 -NCIT:C134748 Stage IIIA Hilar Cholangiocarcinoma AJCC v8 10 166746 -NCIT:C134749 Stage IIIB Hilar Cholangiocarcinoma AJCC v8 10 166747 -NCIT:C134750 Stage IIIC Hilar Cholangiocarcinoma AJCC v8 10 166748 -NCIT:C134751 Stage IV Hilar Cholangiocarcinoma AJCC v8 9 166749 -NCIT:C134752 Stage IVA Hilar Cholangiocarcinoma AJCC v8 10 166750 -NCIT:C134753 Stage IVB Hilar Cholangiocarcinoma AJCC v8 10 166751 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 8 166752 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 8 166753 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 9 166754 -NCIT:C7976 Distal Bile Duct Adenocarcinoma 7 166755 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 8 166756 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 8 166757 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 9 166758 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 8 166759 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 8 166760 -NCIT:C8265 Adult Cholangiocarcinoma 7 166761 -NCIT:C7975 Extrahepatic Bile Duct Adenocarcinoma 6 166762 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 7 166763 -NCIT:C5775 Extrahepatic Bile Duct Clear Cell Adenocarcinoma 7 166764 -NCIT:C5776 Extrahepatic Bile Duct Signet Ring Cell Carcinoma 7 166765 -NCIT:C5846 Extrahepatic Bile Duct Mucinous Adenocarcinoma 7 166766 -NCIT:C7976 Distal Bile Duct Adenocarcinoma 7 166767 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 8 166768 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 8 166769 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 9 166770 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 8 166771 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 8 166772 -NCIT:C96936 Extrahepatic Bile Duct Adenocarcinoma, Biliary Type 7 166773 -NCIT:C96937 Extrahepatic Bile Duct Adenocarcinoma, Gastric Foveolar Type 7 166774 -NCIT:C96938 Extrahepatic Bile Duct Adenocarcinoma, Intestinal Type 7 166775 -NCIT:C96946 Extrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 7 166776 -NCIT:C96948 Extrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 7 166777 -NCIT:C96810 Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 6 166778 -NCIT:C96948 Extrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 7 166779 -NCIT:C96949 Intrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 7 166780 -NCIT:C2853 Papillary Adenocarcinoma 5 166781 -NCIT:C172813 Invasive Pancreatic Micropapillary Adenocarcinoma 6 166782 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 6 166783 -NCIT:C27254 Papillary Eccrine Carcinoma 6 166784 -NCIT:C27534 Digital Papillary Adenocarcinoma 7 166785 -NCIT:C27937 Thymic Low Grade Papillary Adenocarcinoma 6 166786 -NCIT:C3777 Papillary Cystadenocarcinoma 6 166787 -NCIT:C65204 Papillary Mucinous Cystadenocarcinoma 7 166788 -NCIT:C8377 Papillary Serous Cystadenocarcinoma 7 166789 -NCIT:C4035 Thyroid Gland Papillary Carcinoma 6 166790 -NCIT:C123903 Childhood Thyroid Gland Papillary Carcinoma 7 166791 -NCIT:C126409 Warthin-Like Variant Thyroid Gland Papillary Carcinoma 7 166792 -NCIT:C126410 Thyroid Gland Papillary Carcinoma with Fibromatosis/Fasciitis-Like/Desmoid-Type Stroma 7 166793 -NCIT:C126594 Follicular Variant Thyroid Gland Papillary Carcinoma 7 166794 -NCIT:C66850 Invasive Encapsulated Follicular Variant Thyroid Gland Papillary Carcinoma 8 166795 -NCIT:C7381 Invasive Follicular Variant Thyroid Gland Papillary Carcinoma 8 166796 -NCIT:C140960 Thyroid Gland Papillary Carcinoma by AJCC v7 Stage 7 166797 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 8 166798 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 8 166799 -NCIT:C9083 Stage IV Thyroid Gland Papillary Carcinoma AJCC v7 8 166800 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 9 166801 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 9 166802 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 9 166803 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 8 166804 -NCIT:C140976 Thyroid Gland Papillary Carcinoma by AJCC v8 Stage 7 166805 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 8 166806 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 9 166807 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 9 166808 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 8 166809 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 9 166810 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 9 166811 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 8 166812 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 8 166813 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 9 166814 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 9 166815 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 7 166816 -NCIT:C156034 Encapsulated Variant Thyroid Gland Papillary Carcinoma 7 166817 -NCIT:C156045 Spindle Cell Variant Thyroid Gland Papillary Carcinoma 7 166818 -NCIT:C156050 Hobnail Variant Thyroid Gland Papillary Carcinoma 7 166819 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 7 166820 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 7 166821 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 7 166822 -NCIT:C187644 Classic Thyroid Gland Papillary Carcinoma 7 166823 -NCIT:C35558 Tall Cell Variant Thyroid Gland Papillary Carcinoma 7 166824 -NCIT:C35830 Columnar Cell Variant Thyroid Gland Papillary Carcinoma 7 166825 -NCIT:C37304 Multicentric Thyroid Gland Papillary Carcinoma 7 166826 -NCIT:C46004 Thyroid Gland Papillary Microcarcinoma 7 166827 -NCIT:C46092 Macrofollicular Variant Thyroid Gland Papillary Carcinoma 7 166828 -NCIT:C46093 Oncocytic Variant Thyroid Gland Papillary Carcinoma 7 166829 -NCIT:C46094 Clear Cell Variant Thyroid Gland Papillary Carcinoma 7 166830 -NCIT:C46095 Solid/Trabecular Variant Thyroid Gland Papillary Carcinoma 7 166831 -NCIT:C7427 Diffuse Sclerosing Variant Thyroid Gland Papillary Carcinoma 7 166832 -NCIT:C4182 Serous Surface Papillary Carcinoma 6 166833 -NCIT:C6256 Ovarian Serous Surface Papillary Adenocarcinoma 7 166834 -NCIT:C6882 Micropapillary Serous Carcinoma 7 166835 -NCIT:C7695 Primary Peritoneal Serous Papillary Adenocarcinoma 7 166836 -NCIT:C8377 Papillary Serous Cystadenocarcinoma 7 166837 -NCIT:C54400 Nasopharyngeal Papillary Adenocarcinoma 6 166838 -NCIT:C5472 Gastric Papillary Adenocarcinoma 6 166839 -NCIT:C67560 Endolymphatic Sac Tumor 6 166840 -NCIT:C6975 Papillary Renal Cell Carcinoma 6 166841 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 7 166842 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 8 166843 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 8 166844 -NCIT:C190505 Unresectable Papillary Renal Cell Carcinoma 7 166845 -NCIT:C27886 Type 1 Papillary Renal Cell Carcinoma 7 166846 -NCIT:C27887 Type 2 Papillary Renal Cell Carcinoma 7 166847 -NCIT:C27890 Sporadic Papillary Renal Cell Carcinoma 7 166848 -NCIT:C9222 Hereditary Papillary Renal Cell Carcinoma 7 166849 -NCIT:C7438 Invasive Papillary Adenocarcinoma 6 166850 -NCIT:C36085 Invasive Breast Papillary Carcinoma 7 166851 -NCIT:C176010 Encapsulated Breast Papillary Carcinoma with Invasion 8 166852 -NCIT:C176012 Invasive Breast Solid Papillary Carcinoma 8 166853 -NCIT:C36084 Invasive Breast Micropapillary Carcinoma 8 166854 -NCIT:C7439 Breast Papillary Ductal Carcinoma In Situ with Invasion 8 166855 -NCIT:C39896 Prostate Ductal Adenocarcinoma, Papillary Pattern 7 166856 -NCIT:C5650 Lung Papillary Adenocarcinoma 7 166857 -NCIT:C128847 Lung Micropapillary Adenocarcinoma 8 166858 -NCIT:C7381 Invasive Follicular Variant Thyroid Gland Papillary Carcinoma 7 166859 -NCIT:C95967 Ampulla of Vater Invasive Papillary Adenocarcinoma 7 166860 -NCIT:C9134 Breast Papillary Carcinoma 6 166861 -NCIT:C176009 Encapsulated Breast Papillary Carcinoma 7 166862 -NCIT:C176010 Encapsulated Breast Papillary Carcinoma with Invasion 8 166863 -NCIT:C36085 Invasive Breast Papillary Carcinoma 7 166864 -NCIT:C176010 Encapsulated Breast Papillary Carcinoma with Invasion 8 166865 -NCIT:C176012 Invasive Breast Solid Papillary Carcinoma 8 166866 -NCIT:C36084 Invasive Breast Micropapillary Carcinoma 8 166867 -NCIT:C7439 Breast Papillary Ductal Carcinoma In Situ with Invasion 8 166868 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 7 166869 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 8 166870 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 8 166871 -NCIT:C6870 Breast Solid Papillary Carcinoma 7 166872 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 8 166873 -NCIT:C176012 Invasive Breast Solid Papillary Carcinoma 8 166874 -NCIT:C96491 Colorectal Micropapillary Adenocarcinoma 6 166875 -NCIT:C96492 Colon Micropapillary Adenocarcinoma 7 166876 -NCIT:C96493 Rectal Micropapillary Adenocarcinoma 7 166877 -NCIT:C2919 Prostate Adenocarcinoma 5 166878 -NCIT:C150557 Prostate Adenocarcinoma without Neuroendocrine Differentiation 6 166879 -NCIT:C164185 Aggressive Prostate Adenocarcinoma 6 166880 -NCIT:C164186 Prostate Adenocarcinoma by AJCC v7 Stage 6 166881 -NCIT:C8947 Stage I Prostate Adenocarcinoma AJCC v7 7 166882 -NCIT:C8948 Stage II Prostate Adenocarcinoma AJCC v7 7 166883 -NCIT:C8949 Stage III Prostate Adenocarcinoma AJCC v7 7 166884 -NCIT:C8950 Stage IV Prostate Adenocarcinoma AJCC v7 7 166885 -NCIT:C167256 Refractory Prostate Adenocarcinoma 6 166886 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 6 166887 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 7 166888 -NCIT:C27905 Well Differentiated Prostate Adenocarcinoma 6 166889 -NCIT:C39896 Prostate Ductal Adenocarcinoma, Papillary Pattern 7 166890 -NCIT:C27906 Moderately Differentiated Prostate Adenocarcinoma 6 166891 -NCIT:C27916 Poorly Differentiated Prostate Adenocarcinoma 6 166892 -NCIT:C5530 Prostate Acinar Adenocarcinoma, Sarcomatoid Variant 7 166893 -NCIT:C39903 Prostate Adenocarcinoma with Neuroendocrine Differentiation 6 166894 -NCIT:C158656 Usual Prostate Adenocarcinoma with Neuroendocrine Differentiation 7 166895 -NCIT:C158664 Prostate Adenocarcinoma with Paneth Cell-Like Neuroendocrine Differentiation 7 166896 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 7 166897 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 8 166898 -NCIT:C5596 Prostate Acinar Adenocarcinoma 6 166899 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 7 166900 -NCIT:C158656 Usual Prostate Adenocarcinoma with Neuroendocrine Differentiation 7 166901 -NCIT:C160817 Prostate Acinar Adenocarcinoma, Microcystic Variant 7 166902 -NCIT:C160818 Prostate Acinar Adenocarcinoma, Pleomorphic Giant Cell Variant 7 166903 -NCIT:C39880 Prostate Acinar Adenocarcinoma, Atrophic Variant 7 166904 -NCIT:C39881 Prostate Acinar Adenocarcinoma, Pseudohyperplastic Variant 7 166905 -NCIT:C39882 Prostate Acinar Adenocarcinoma, Foamy Gland Variant 7 166906 -NCIT:C39884 Prostate Acinar Adenocarcinoma, Oncocytic Variant 7 166907 -NCIT:C39885 Prostate Acinar Adenocarcinoma, Lymphoepithelioma-Like Variant 7 166908 -NCIT:C5530 Prostate Acinar Adenocarcinoma, Sarcomatoid Variant 7 166909 -NCIT:C5535 Prostate Acinar Adenocarcinoma, Signet Ring-Like Cell Variant 7 166910 -NCIT:C5537 Prostate Acinar Mucinous Adenocarcinoma 7 166911 -NCIT:C6813 Prostate Ductal Adenocarcinoma 6 166912 -NCIT:C39895 Prostate Ductal Adenocarcinoma, Cribriform Pattern 7 166913 -NCIT:C39896 Prostate Ductal Adenocarcinoma, Papillary Pattern 7 166914 -NCIT:C39897 Prostate Ductal Adenocarcinoma, Solid Pattern 7 166915 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 6 166916 -NCIT:C156286 Advanced Prostate Adenocarcinoma 7 166917 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 8 166918 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 7 166919 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 8 166920 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 7 166921 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 8 166922 -NCIT:C2928 Scirrhous Adenocarcinoma 5 166923 -NCIT:C2971 Cystadenocarcinoma 5 166924 -NCIT:C3776 Mucinous Cystadenocarcinoma 6 166925 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 7 166926 -NCIT:C40354 Breast Mucinous Cystadenocarcinoma 7 166927 -NCIT:C41246 Pancreatic Mucinous-Cystic Neoplasm with an Associated Invasive Carcinoma 7 166928 -NCIT:C5511 Appendix Mucinous Cystadenocarcinoma 7 166929 -NCIT:C65204 Papillary Mucinous Cystadenocarcinoma 7 166930 -NCIT:C3777 Papillary Cystadenocarcinoma 6 166931 -NCIT:C65204 Papillary Mucinous Cystadenocarcinoma 7 166932 -NCIT:C8377 Papillary Serous Cystadenocarcinoma 7 166933 -NCIT:C3778 Serous Cystadenocarcinoma 6 166934 -NCIT:C5724 Pancreatic Serous Cystadenocarcinoma 7 166935 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 7 166936 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 8 166937 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 166938 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 166939 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 8 166940 -NCIT:C8377 Papillary Serous Cystadenocarcinoma 7 166941 -NCIT:C3874 Pancreatic Cystadenocarcinoma 6 166942 -NCIT:C153620 Recurrent Pancreatic Cystadenocarcinoma 7 166943 -NCIT:C5724 Pancreatic Serous Cystadenocarcinoma 7 166944 -NCIT:C5727 Pancreatic Acinar Cell Cystadenocarcinoma 7 166945 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 8 166946 -NCIT:C5228 Ovarian Cystadenocarcinoma 6 166947 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 7 166948 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 8 166949 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 7 166950 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 7 166951 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 8 166952 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 166953 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 166954 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 8 166955 -NCIT:C7980 Ovarian Clear Cell Cystadenocarcinoma 7 166956 -NCIT:C5980 Salivary Gland Cystadenocarcinoma 6 166957 -NCIT:C3099 Hepatocellular Carcinoma 5 166958 -NCIT:C115132 Hepatocellular Carcinoma by BCLC Stage 6 166959 -NCIT:C115133 BCLC Stage 0 Hepatocellular Carcinoma 7 166960 -NCIT:C115139 BCLC Stage 0 Adult Hepatocellular Carcinoma 8 166961 -NCIT:C115135 BCLC Stage A Hepatocellular Carcinoma 7 166962 -NCIT:C115140 BCLC Stage A Adult Hepatocellular Carcinoma 8 166963 -NCIT:C115136 BCLC Stage B Hepatocellular Carcinoma 7 166964 -NCIT:C115141 BCLC Stage B Adult Hepatocellular Carcinoma 8 166965 -NCIT:C115137 BCLC Stage C Hepatocellular Carcinoma 7 166966 -NCIT:C115143 BCLC Stage C Adult Hepatocellular Carcinoma 8 166967 -NCIT:C115138 BCLC Stage D Hepatocellular Carcinoma 7 166968 -NCIT:C115144 BCLC Stage D Adult Hepatocellular Carcinoma 8 166969 -NCIT:C134515 Hepatocellular Carcinoma by AJCC v8 Stage 6 166970 -NCIT:C134516 Stage I Hepatocellular Carcinoma AJCC v8 7 166971 -NCIT:C134517 Stage IA Hepatocellular Carcinoma AJCC v8 8 166972 -NCIT:C134518 Stage IB Hepatocellular Carcinoma AJCC v8 8 166973 -NCIT:C134519 Stage II Hepatocellular Carcinoma AJCC v8 7 166974 -NCIT:C134520 Stage III Hepatocellular Carcinoma AJCC v8 7 166975 -NCIT:C134521 Stage IIIA Hepatocellular Carcinoma AJCC v8 8 166976 -NCIT:C134522 Stage IIIB Hepatocellular Carcinoma AJCC v8 8 166977 -NCIT:C134523 Stage IV Hepatocellular Carcinoma AJCC v8 7 166978 -NCIT:C134524 Stage IVA Hepatocellular Carcinoma AJCC v8 8 166979 -NCIT:C134525 Stage IVB Hepatocellular Carcinoma AJCC v8 8 166980 -NCIT:C154091 Metastatic Hepatocellular Carcinoma 6 166981 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 7 166982 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 8 166983 -NCIT:C167336 Advanced Hepatocellular Carcinoma 7 166984 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 8 166985 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 8 166986 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 7 166987 -NCIT:C162450 Refractory Hepatocellular Carcinoma 6 166988 -NCIT:C188887 Refractory Fibrolamellar Carcinoma 7 166989 -NCIT:C172709 Steatohepatitic Hepatocellular Carcinoma 6 166990 -NCIT:C27924 Alcohol-Related Hepatocellular Carcinoma 7 166991 -NCIT:C172710 Macrotrabecular Massive Hepatocellular Carcinoma 6 166992 -NCIT:C172712 Chromophobe Hepatocellular Carcinoma 6 166993 -NCIT:C172713 Neutrophil-Rich Hepatocellular Carcinoma 6 166994 -NCIT:C172714 Small Hepatocellular Carcinoma 6 166995 -NCIT:C172716 Small Progressed Hepatocellular Carcinoma 7 166996 -NCIT:C96772 Early Hepatocellular Carcinoma 7 166997 -NCIT:C27345 Unresectable Hepatocellular Carcinoma 6 166998 -NCIT:C162602 Unresectable Fibrolamellar Carcinoma 7 166999 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 7 167000 -NCIT:C27388 Scirrhous Hepatocellular Carcinoma 6 167001 -NCIT:C27635 Transplant-Related Hepatocellular Carcinoma 6 167002 -NCIT:C27686 Hepatitis Virus-Related Hepatocellular Carcinoma 6 167003 -NCIT:C27687 Hepatitis B Virus-Related Hepatocellular Carcinoma 7 167004 -NCIT:C27688 Hepatitis C Virus-Related Hepatocellular Carcinoma 7 167005 -NCIT:C27922 Aflatoxins-Related Hepatocellular Carcinoma 6 167006 -NCIT:C4131 Fibrolamellar Carcinoma 6 167007 -NCIT:C114992 Adult Fibrolamellar Carcinoma 7 167008 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 7 167009 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 8 167010 -NCIT:C154082 Recurrent Fibrolamellar Carcinoma 7 167011 -NCIT:C162602 Unresectable Fibrolamellar Carcinoma 7 167012 -NCIT:C188887 Refractory Fibrolamellar Carcinoma 7 167013 -NCIT:C189932 Childhood Fibrolamellar Carcinoma 7 167014 -NCIT:C43625 Pleomorphic Hepatocellular Carcinoma 6 167015 -NCIT:C114993 Adult Pleomorphic Hepatocellular Carcinoma 7 167016 -NCIT:C43627 Sarcomatoid Hepatocellular Carcinoma 6 167017 -NCIT:C5754 Clear Cell Hepatocellular Carcinoma 6 167018 -NCIT:C7691 Resectable Hepatocellular Carcinoma 6 167019 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 7 167020 -NCIT:C7955 Childhood Hepatocellular Carcinoma 6 167021 -NCIT:C189932 Childhood Fibrolamellar Carcinoma 7 167022 -NCIT:C5708 Stage III Childhood Hepatocellular Carcinoma AJCC v7 7 167023 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 7 167024 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 7 167025 -NCIT:C7838 Stage IV Childhood Hepatocellular Carcinoma AJCC v7 7 167026 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 7 167027 -NCIT:C7956 Adult Hepatocellular Carcinoma 6 167028 -NCIT:C114992 Adult Fibrolamellar Carcinoma 7 167029 -NCIT:C114993 Adult Pleomorphic Hepatocellular Carcinoma 7 167030 -NCIT:C115139 BCLC Stage 0 Adult Hepatocellular Carcinoma 7 167031 -NCIT:C115140 BCLC Stage A Adult Hepatocellular Carcinoma 7 167032 -NCIT:C115141 BCLC Stage B Adult Hepatocellular Carcinoma 7 167033 -NCIT:C115143 BCLC Stage C Adult Hepatocellular Carcinoma 7 167034 -NCIT:C115144 BCLC Stage D Adult Hepatocellular Carcinoma 7 167035 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 7 167036 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 7 167037 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 7 167038 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 7 167039 -NCIT:C90510 Hepatocellular Carcinoma by AJCC v6 Stage 6 167040 -NCIT:C5758 Stage I Hepatocellular Carcinoma AJCC v6 and v7 7 167041 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 8 167042 -NCIT:C5759 Stage II Hepatocellular Carcinoma AJCC v6 and v7 7 167043 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 8 167044 -NCIT:C5760 Stage III Hepatocellular Carcinoma AJCC v6 7 167045 -NCIT:C5763 Stage IV Hepatocellular Carcinoma AJCC v6 7 167046 -NCIT:C91228 Hepatocellular Carcinoma by AJCC v7 Stage 6 167047 -NCIT:C5758 Stage I Hepatocellular Carcinoma AJCC v6 and v7 7 167048 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 8 167049 -NCIT:C5759 Stage II Hepatocellular Carcinoma AJCC v6 and v7 7 167050 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 8 167051 -NCIT:C90180 Stage III Hepatocellular Carcinoma AJCC v7 7 167052 -NCIT:C5708 Stage III Childhood Hepatocellular Carcinoma AJCC v7 8 167053 -NCIT:C5761 Stage IIIA Hepatocellular Carcinoma AJCC v7 8 167054 -NCIT:C5762 Stage IIIB Hepatocellular Carcinoma AJCC v7 8 167055 -NCIT:C88044 Stage IIIC Hepatocellular Carcinoma AJCC v7 8 167056 -NCIT:C90181 Stage IV Hepatocellular Carcinoma AJCC v7 7 167057 -NCIT:C5764 Stage IVA Hepatocellular Carcinoma AJCC v7 8 167058 -NCIT:C5765 Stage IVB Hepatocellular Carcinoma AJCC v7 8 167059 -NCIT:C7838 Stage IV Childhood Hepatocellular Carcinoma AJCC v7 8 167060 -NCIT:C9264 Recurrent Hepatocellular Carcinoma 6 167061 -NCIT:C154082 Recurrent Fibrolamellar Carcinoma 7 167062 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 7 167063 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 7 167064 -NCIT:C96788 Lymphocyte-Rich Hepatocellular Carcinoma 6 167065 -NCIT:C96789 Well Differentiated Hepatocellular Carcinoma 6 167066 -NCIT:C96790 Moderately Differentiated Hepatocellular Carcinoma 6 167067 -NCIT:C96791 Poorly Differentiated Hepatocellular Carcinoma 6 167068 -NCIT:C3679 Oncocytic Adenocarcinoma 5 167069 -NCIT:C126409 Warthin-Like Variant Thyroid Gland Papillary Carcinoma 6 167070 -NCIT:C175267 Lacrimal Gland Oncocytic Adenocarcinoma 6 167071 -NCIT:C188181 Adrenal Cortical Oncocytic Carcinoma 6 167072 -NCIT:C27849 Oxyphilic Endometrial Endometrioid Adenocarcinoma 6 167073 -NCIT:C39884 Prostate Acinar Adenocarcinoma, Oncocytic Variant 6 167074 -NCIT:C40366 Breast Oncocytic Carcinoma 6 167075 -NCIT:C46093 Oncocytic Variant Thyroid Gland Papillary Carcinoma 6 167076 -NCIT:C4946 Thyroid Gland Oncocytic Carcinoma 6 167077 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 7 167078 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 7 167079 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 7 167080 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 7 167081 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 8 167082 -NCIT:C62194 Salivary Gland Oncocytic Carcinoma 6 167083 -NCIT:C3681 Granular Cell Carcinoma 5 167084 -NCIT:C3766 Clear Cell Adenocarcinoma 5 167085 -NCIT:C162566 Primary Peritoneal Clear Cell Adenocarcinoma 6 167086 -NCIT:C170761 Recurrent Primary Peritoneal Clear Cell Adenocarcinoma 7 167087 -NCIT:C178684 Refractory Primary Peritoneal Clear Cell Adenocarcinoma 7 167088 -NCIT:C191768 Clear Cell Adenocarcinoma of the Urinary Tract 6 167089 -NCIT:C6172 Urethral Clear Cell Adenocarcinoma 7 167090 -NCIT:C6179 Bladder Clear Cell Adenocarcinoma 7 167091 -NCIT:C39847 Bladder Tubulo-Cystic Clear Cell Adenocarcinoma 8 167092 -NCIT:C39848 Bladder Papillary Clear Cell Adenocarcinoma 8 167093 -NCIT:C39849 Bladder Diffuse Clear Cell Adenocarcinoma 8 167094 -NCIT:C27414 Ampulla of Vater Clear Cell Adenocarcinoma 6 167095 -NCIT:C27843 Endometrial Endometrioid Adenocarcinoma with Clear Cell Change 6 167096 -NCIT:C40078 Ovarian Clear Cell Adenocarcinoma 6 167097 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 7 167098 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 7 167099 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 167100 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 7 167101 -NCIT:C7980 Ovarian Clear Cell Cystadenocarcinoma 7 167102 -NCIT:C40139 Broad Ligament Clear Cell Adenocarcinoma 6 167103 -NCIT:C4033 Clear Cell Renal Cell Carcinoma 6 167104 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 7 167105 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 8 167106 -NCIT:C157614 BAP1-Mutant Clear Cell Renal Cell Carcinoma 7 167107 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 7 167108 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 8 167109 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 8 167110 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 7 167111 -NCIT:C165449 Unresectable Clear Cell Renal Cell Carcinoma 7 167112 -NCIT:C35851 Grade 1 Clear Cell Renal Cell Carcinoma 7 167113 -NCIT:C35852 Grade 2 Clear Cell Renal Cell Carcinoma 7 167114 -NCIT:C35853 Grade 3 Clear Cell Renal Cell Carcinoma 7 167115 -NCIT:C35854 Grade 4 Clear Cell Renal Cell Carcinoma 7 167116 -NCIT:C36260 Hereditary Clear Cell Renal Cell Carcinoma 7 167117 -NCIT:C36261 Non-Hereditary Clear Cell Renal Cell Carcinoma 7 167118 -NCIT:C40365 Breast Lipid-Rich Carcinoma 6 167119 -NCIT:C40368 Glycogen-Rich, Clear Cell Breast Carcinoma 6 167120 -NCIT:C43605 Gallbladder Clear Cell Adenocarcinoma 6 167121 -NCIT:C43848 Clear Cell Intrahepatic Cholangiocarcinoma 6 167122 -NCIT:C46094 Clear Cell Variant Thyroid Gland Papillary Carcinoma 6 167123 -NCIT:C46096 Thyroid Gland Follicular Carcinoma, Clear Cell Variant 6 167124 -NCIT:C54664 Hidradenocarcinoma 6 167125 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 7 167126 -NCIT:C5754 Clear Cell Hepatocellular Carcinoma 6 167127 -NCIT:C5775 Extrahepatic Bile Duct Clear Cell Adenocarcinoma 6 167128 -NCIT:C6280 Fallopian Tube Clear Cell Adenocarcinoma 6 167129 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 7 167130 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 7 167131 -NCIT:C6344 Human Papillomavirus-Independent Cervical Adenocarcinoma, Clear Cell-Type 6 167132 -NCIT:C7735 Vaginal Clear Cell Adenocarcinoma 6 167133 -NCIT:C8028 Endometrial Clear Cell Adenocarcinoma 6 167134 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 7 167135 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 7 167136 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 7 167137 -NCIT:C3768 Acinar Cell Carcinoma 5 167138 -NCIT:C175290 Lacrimal Gland Acinic Cell Carcinoma 6 167139 -NCIT:C40367 Breast Acinic Cell Carcinoma 6 167140 -NCIT:C153568 Recurrent Breast Acinic Cell Carcinoma 7 167141 -NCIT:C5596 Prostate Acinar Adenocarcinoma 6 167142 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 7 167143 -NCIT:C158656 Usual Prostate Adenocarcinoma with Neuroendocrine Differentiation 7 167144 -NCIT:C160817 Prostate Acinar Adenocarcinoma, Microcystic Variant 7 167145 -NCIT:C160818 Prostate Acinar Adenocarcinoma, Pleomorphic Giant Cell Variant 7 167146 -NCIT:C39880 Prostate Acinar Adenocarcinoma, Atrophic Variant 7 167147 -NCIT:C39881 Prostate Acinar Adenocarcinoma, Pseudohyperplastic Variant 7 167148 -NCIT:C39882 Prostate Acinar Adenocarcinoma, Foamy Gland Variant 7 167149 -NCIT:C39884 Prostate Acinar Adenocarcinoma, Oncocytic Variant 7 167150 -NCIT:C39885 Prostate Acinar Adenocarcinoma, Lymphoepithelioma-Like Variant 7 167151 -NCIT:C5530 Prostate Acinar Adenocarcinoma, Sarcomatoid Variant 7 167152 -NCIT:C5535 Prostate Acinar Adenocarcinoma, Signet Ring-Like Cell Variant 7 167153 -NCIT:C5537 Prostate Acinar Mucinous Adenocarcinoma 7 167154 -NCIT:C7977 Pancreatic Acinar Cell Carcinoma 6 167155 -NCIT:C153569 Recurrent Pancreatic Acinar Cell Carcinoma 7 167156 -NCIT:C156907 Resectable Pancreatic Acinar Cell Carcinoma 7 167157 -NCIT:C190024 Childhood Pancreatic Acinar Cell Carcinoma 7 167158 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 8 167159 -NCIT:C5727 Pancreatic Acinar Cell Cystadenocarcinoma 7 167160 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 8 167161 -NCIT:C8013 Salivary Gland Acinic Cell Carcinoma 6 167162 -NCIT:C190274 Childhood Salivary Gland Acinic Cell Carcinoma 7 167163 -NCIT:C5901 Major Salivary Gland Acinic Cell Carcinoma 7 167164 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 8 167165 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 9 167166 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 8 167167 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 9 167168 -NCIT:C6243 Minor Salivary Gland Acinic Cell Carcinoma 7 167169 -NCIT:C3769 Endometrioid Adenocarcinoma 5 167170 -NCIT:C158421 Recurrent Endometrioid Adenocarcinoma 6 167171 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 7 167172 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 7 167173 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 7 167174 -NCIT:C165269 Recurrent Primary Peritoneal Endometrioid Adenocarcinoma 7 167175 -NCIT:C158610 Endometrioid Adenocarcinoma, Variant with Squamous Differentiation 6 167176 -NCIT:C40061 Ovarian Endometrioid Adenocarcinoma with Squamous Differentiation 7 167177 -NCIT:C6290 Endometrial Endometrioid Adenocarcinoma, Variant with Squamous Differentiation 7 167178 -NCIT:C165260 Primary Peritoneal Endometrioid Adenocarcinoma 6 167179 -NCIT:C165269 Recurrent Primary Peritoneal Endometrioid Adenocarcinoma 7 167180 -NCIT:C178685 Refractory Primary Peritoneal Endometrioid Adenocarcinoma 7 167181 -NCIT:C186276 Unresectable Primary Peritoneal Endometrioid Adenocarcinoma 7 167182 -NCIT:C191769 Endometrioid Adenocarcinoma of the Urinary Tract 6 167183 -NCIT:C159542 Bladder Endometrioid Adenocarcinoma 7 167184 -NCIT:C40138 Broad Ligament Endometrioid Adenocarcinoma 6 167185 -NCIT:C40251 Vaginal Endometrioid Adenocarcinoma 6 167186 -NCIT:C6279 Fallopian Tube Endometrioid Adenocarcinoma 6 167187 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 7 167188 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 7 167189 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 7 167190 -NCIT:C6287 Endometrial Endometrioid Adenocarcinoma 6 167191 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 7 167192 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 7 167193 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 7 167194 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 8 167195 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 8 167196 -NCIT:C180510 Low Grade Endometrial Endometrioid Adenocarcinoma 7 167197 -NCIT:C40146 FIGO Grade 1 Endometrial Endometrioid Adenocarcinoma 8 167198 -NCIT:C40147 FIGO Grade 2 Endometrial Endometrioid Adenocarcinoma 8 167199 -NCIT:C180512 POLE-Ultramutated Endometrial Endometrioid Adenocarcinoma 7 167200 -NCIT:C180514 Mismatch Repair-Deficient Endometrial Endometrioid Adenocarcinoma 7 167201 -NCIT:C180515 p53-Mutant Endometrial Endometrioid Adenocarcinoma 7 167202 -NCIT:C180516 No Specific Molecular Profile Endometrial Endometrioid Adenocarcinoma 7 167203 -NCIT:C27839 Endometrial Endometrioid Adenocarcinoma, Secretory Variant 7 167204 -NCIT:C27843 Endometrial Endometrioid Adenocarcinoma with Clear Cell Change 7 167205 -NCIT:C27844 Endometrial Endometrioid Adenocarcinoma with a Poorly Differentiated Carcinomatous Component 7 167206 -NCIT:C27845 Endometrial Endometrioid Adenocarcinoma with an Undifferentiated Carcinomatous Component 7 167207 -NCIT:C27846 Villoglandular Endometrial Endometrioid Adenocarcinoma 7 167208 -NCIT:C27848 Endometrial Endometrioid Adenocarcinoma, Ciliated Variant 7 167209 -NCIT:C27849 Oxyphilic Endometrial Endometrioid Adenocarcinoma 7 167210 -NCIT:C27850 Endometrial Endometrioid Adenocarcinoma with Spindled Epithelial Cells 7 167211 -NCIT:C40148 High Grade Endometrial Endometrioid Adenocarcinoma 7 167212 -NCIT:C6290 Endometrial Endometrioid Adenocarcinoma, Variant with Squamous Differentiation 7 167213 -NCIT:C6343 Cervical Endometrioid Adenocarcinoma 6 167214 -NCIT:C7979 Ovarian Endometrioid Adenocarcinoma 6 167215 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 7 167216 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 7 167217 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 7 167218 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 167219 -NCIT:C186273 Unresectable Ovarian Endometrioid Adenocarcinoma 7 167220 -NCIT:C40061 Ovarian Endometrioid Adenocarcinoma with Squamous Differentiation 7 167221 -NCIT:C8943 Metastatic Endometrioid Adenocarcinoma 6 167222 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 7 167223 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 8 167224 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 8 167225 -NCIT:C170807 Advanced Endometrioid Adenocarcinoma 7 167226 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 8 167227 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 167228 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 7 167229 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 167230 -NCIT:C174045 Locally Advanced Endometrioid Adenocarcinoma 7 167231 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 8 167232 -NCIT:C3774 Signet Ring Cell Carcinoma 5 167233 -NCIT:C179208 Ovarian Signet Ring Cell Carcinoma 6 167234 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 6 167235 -NCIT:C41619 Signet Ring Cell Intrahepatic Cholangiocarcinoma 6 167236 -NCIT:C43543 Small Intestinal Signet Ring Cell Carcinoma 6 167237 -NCIT:C43554 Appendix Signet Ring Cell Carcinoma 6 167238 -NCIT:C43586 Colorectal Signet Ring Cell Carcinoma 6 167239 -NCIT:C43593 Rectosigmoid Signet Ring Cell Carcinoma 7 167240 -NCIT:C7967 Colon Signet Ring Cell Adenocarcinoma 7 167241 -NCIT:C9168 Rectal Signet Ring Cell Adenocarcinoma 7 167242 -NCIT:C5175 Breast Signet Ring Cell Carcinoma 6 167243 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 7 167244 -NCIT:C54691 Invasive Breast Lobular Carcinoma, Signet Ring Variant 7 167245 -NCIT:C5250 Gastric Signet Ring Cell Adenocarcinoma 6 167246 -NCIT:C5535 Prostate Acinar Adenocarcinoma, Signet Ring-Like Cell Variant 6 167247 -NCIT:C5720 Pancreatic Signet Ring Cell Carcinoma 6 167248 -NCIT:C5745 Gallbladder Signet Ring Cell Carcinoma 6 167249 -NCIT:C5776 Extrahepatic Bile Duct Signet Ring Cell Carcinoma 6 167250 -NCIT:C6163 Bladder Signet Ring Cell Adenocarcinoma 6 167251 -NCIT:C6656 Ampulla of Vater Signet Ring Cell Carcinoma 6 167252 -NCIT:C66717 Metastatic Signet Ring Cell Carcinoma 6 167253 -NCIT:C3153 Krukenberg Tumor 7 167254 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 7 167255 -NCIT:C3828 Combined Hepatocellular Carcinoma and Cholangiocarcinoma 5 167256 -NCIT:C114987 Adult Combined Hepatocellular Carcinoma and Cholangiocarcinoma 6 167257 -NCIT:C39863 Adenocarcinoma of Skene Gland Origin 5 167258 -NCIT:C180947 Vaginal Adenocarcinoma of Skene Gland Origin 6 167259 -NCIT:C180948 Skene Gland Adenocarcinoma of the Urethra 6 167260 -NCIT:C39906 Seminal Vesicle Adenocarcinoma 5 167261 -NCIT:C39957 Epididymal Adenocarcinoma 5 167262 -NCIT:C40017 Rete Ovarii Adenocarcinoma 5 167263 -NCIT:C4004 Gastric Adenocarcinoma 5 167264 -NCIT:C153319 Metastatic Gastric Adenocarcinoma 6 167265 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 7 167266 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 8 167267 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 8 167268 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 7 167269 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 8 167270 -NCIT:C165630 Metastatic Proximal Gastric Adenocarcinoma 7 167271 -NCIT:C166121 Oligometastatic Gastric Adenocarcinoma 7 167272 -NCIT:C166255 Advanced Gastric Adenocarcinoma 7 167273 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 8 167274 -NCIT:C154221 Unresectable Gastric Adenocarcinoma 6 167275 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 7 167276 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 8 167277 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 8 167278 -NCIT:C154622 Recurrent Gastric Adenocarcinoma 6 167279 -NCIT:C165628 Proximal Gastric Adenocarcinoma 6 167280 -NCIT:C165630 Metastatic Proximal Gastric Adenocarcinoma 7 167281 -NCIT:C167074 Refractory Gastric Adenocarcinoma 6 167282 -NCIT:C43527 Sporadic Gastric Adenocarcinoma 6 167283 -NCIT:C27131 Early Gastric Cancer 7 167284 -NCIT:C95763 Gastric Intramucosal Adenocarcinoma 8 167285 -NCIT:C27765 Helicobacter Pylori-Related Gastric Adenocarcinoma 7 167286 -NCIT:C43529 Sporadic Gastric Diffuse Adenocarcinoma 7 167287 -NCIT:C5247 Gastric Cardia Adenocarcinoma 7 167288 -NCIT:C5248 Gastric Mucinous Adenocarcinoma 7 167289 -NCIT:C5472 Gastric Papillary Adenocarcinoma 7 167290 -NCIT:C5473 Gastric Tubular Adenocarcinoma 7 167291 -NCIT:C65194 Gastric Parietal Cell Adenocarcinoma 7 167292 -NCIT:C67526 Gastric Mixed Adenocarcinoma 7 167293 -NCIT:C9157 Gastric Intestinal-Type Adenocarcinoma 7 167294 -NCIT:C95743 Gastric Poorly Cohesive Adenocarcinoma 7 167295 -NCIT:C5250 Gastric Signet Ring Cell Adenocarcinoma 8 167296 -NCIT:C95747 Gastric Hepatoid Adenocarcinoma 7 167297 -NCIT:C95748 Gastric Carcinoma with Lymphoid Stroma 7 167298 -NCIT:C9159 Gastric Diffuse Adenocarcinoma 6 167299 -NCIT:C43295 Hereditary Gastric Diffuse Adenocarcinoma 7 167300 -NCIT:C43529 Sporadic Gastric Diffuse Adenocarcinoma 7 167301 -NCIT:C40101 Serous Adenocarcinoma 5 167302 -NCIT:C126479 Broad Ligament Serous Adenocarcinoma 6 167303 -NCIT:C27838 Endometrial Serous Adenocarcinoma 6 167304 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 7 167305 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 7 167306 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 7 167307 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 8 167308 -NCIT:C187374 Platinum-Sensitive Endometrial Serous Adenocarcinoma 7 167309 -NCIT:C3778 Serous Cystadenocarcinoma 6 167310 -NCIT:C5724 Pancreatic Serous Cystadenocarcinoma 7 167311 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 7 167312 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 8 167313 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 167314 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 167315 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 8 167316 -NCIT:C8377 Papillary Serous Cystadenocarcinoma 7 167317 -NCIT:C40023 Primary Peritoneal Serous Adenocarcinoma 6 167318 -NCIT:C126353 Primary Peritoneal High Grade Serous Adenocarcinoma 7 167319 -NCIT:C165268 Recurrent Primary Peritoneal High Grade Serous Adenocarcinoma 8 167320 -NCIT:C178686 Refractory Primary Peritoneal High Grade Serous Adenocarcinoma 8 167321 -NCIT:C186275 Unresectable Primary Peritoneal High Grade Serous Adenocarcinoma 8 167322 -NCIT:C186453 Metastatic Primary Peritoneal High Grade Serous Adenocarcinoma 8 167323 -NCIT:C126354 Primary Peritoneal Low Grade Serous Adenocarcinoma 7 167324 -NCIT:C156454 Recurrent Primary Peritoneal Low Grade Serous Adenocarcinoma 8 167325 -NCIT:C178687 Refractory Primary Peritoneal Low Grade Serous Adenocarcinoma 8 167326 -NCIT:C156453 Recurrent Primary Peritoneal Serous Adenocarcinoma 7 167327 -NCIT:C156454 Recurrent Primary Peritoneal Low Grade Serous Adenocarcinoma 8 167328 -NCIT:C165268 Recurrent Primary Peritoneal High Grade Serous Adenocarcinoma 8 167329 -NCIT:C171019 Metastatic Primary Peritoneal Serous Adenocarcinoma 7 167330 -NCIT:C186453 Metastatic Primary Peritoneal High Grade Serous Adenocarcinoma 8 167331 -NCIT:C171020 Unresectable Primary Peritoneal Serous Adenocarcinoma 7 167332 -NCIT:C186275 Unresectable Primary Peritoneal High Grade Serous Adenocarcinoma 8 167333 -NCIT:C171021 Refractory Primary Peritoneal Serous Adenocarcinoma 7 167334 -NCIT:C178686 Refractory Primary Peritoneal High Grade Serous Adenocarcinoma 8 167335 -NCIT:C178687 Refractory Primary Peritoneal Low Grade Serous Adenocarcinoma 8 167336 -NCIT:C7695 Primary Peritoneal Serous Papillary Adenocarcinoma 7 167337 -NCIT:C40099 Fallopian Tube Serous Adenocarcinoma 6 167338 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 7 167339 -NCIT:C126456 Fallopian Tube High Grade Serous Adenocarcinoma 7 167340 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 8 167341 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 8 167342 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 8 167343 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 8 167344 -NCIT:C40152 Serous Endometrial Intraepithelial Carcinoma 6 167345 -NCIT:C40201 Cervical Serous Adenocarcinoma 6 167346 -NCIT:C4182 Serous Surface Papillary Carcinoma 6 167347 -NCIT:C6256 Ovarian Serous Surface Papillary Adenocarcinoma 7 167348 -NCIT:C6882 Micropapillary Serous Carcinoma 7 167349 -NCIT:C7695 Primary Peritoneal Serous Papillary Adenocarcinoma 7 167350 -NCIT:C8377 Papillary Serous Cystadenocarcinoma 7 167351 -NCIT:C7550 Ovarian Serous Adenocarcinoma 6 167352 -NCIT:C105555 Ovarian High Grade Serous Adenocarcinoma 7 167353 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 8 167354 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 8 167355 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 8 167356 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 167357 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 8 167358 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 167359 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 167360 -NCIT:C105556 Ovarian Low Grade Serous Adenocarcinoma 7 167361 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 8 167362 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 8 167363 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 7 167364 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 8 167365 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 8 167366 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 8 167367 -NCIT:C160781 Unresectable Ovarian Serous Adenocarcinoma 7 167368 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 8 167369 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 167370 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 7 167371 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 167372 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 167373 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 167374 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 8 167375 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 167376 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 167377 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 8 167378 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 167379 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 167380 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 167381 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 167382 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 167383 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 7 167384 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 8 167385 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 8 167386 -NCIT:C6256 Ovarian Serous Surface Papillary Adenocarcinoma 7 167387 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 7 167388 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 8 167389 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 167390 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 167391 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 8 167392 -NCIT:C40135 Broad Ligament Adenocarcinoma 5 167393 -NCIT:C126479 Broad Ligament Serous Adenocarcinoma 6 167394 -NCIT:C40137 Broad Ligament Mucinous Adenocarcinoma 6 167395 -NCIT:C40138 Broad Ligament Endometrioid Adenocarcinoma 6 167396 -NCIT:C40139 Broad Ligament Clear Cell Adenocarcinoma 6 167397 -NCIT:C4025 Esophageal Adenocarcinoma 5 167398 -NCIT:C133400 Esophageal Adenocarcinoma by AJCC v8 Stage 6 167399 -NCIT:C133401 Esophageal Adenocarcinoma by AJCC v8 Clinical Stage 7 167400 -NCIT:C133402 Clinical Stage 0 Esophageal Adenocarcinoma AJCC v8 8 167401 -NCIT:C133403 Clinical Stage I Esophageal Adenocarcinoma AJCC v8 8 167402 -NCIT:C133404 Clinical Stage II Esophageal Adenocarcinoma AJCC v8 8 167403 -NCIT:C133405 Clinical Stage IIA Esophageal Adenocarcinoma AJCC v8 9 167404 -NCIT:C133406 Clinical Stage IIB Esophageal Adenocarcinoma AJCC v8 9 167405 -NCIT:C133407 Clinical Stage III Esophageal Adenocarcinoma AJCC v8 8 167406 -NCIT:C133408 Clinical Stage IV Esophageal Adenocarcinoma AJCC v8 8 167407 -NCIT:C133409 Clinical Stage IVA Esophageal Adenocarcinoma AJCC v8 9 167408 -NCIT:C133410 Clinical Stage IVB Esophageal Adenocarcinoma AJCC v8 9 167409 -NCIT:C133412 Esophageal Adenocarcinoma by AJCC v8 Pathologic Stage 7 167410 -NCIT:C133413 Pathologic Stage 0 Esophageal Adenocarcinoma AJCC v8 8 167411 -NCIT:C133414 Pathologic Stage I Esophageal Adenocarcinoma AJCC v8 8 167412 -NCIT:C133415 Pathologic Stage IA Esophageal Adenocarcinoma AJCC v8 9 167413 -NCIT:C133416 Pathologic Stage IB Esophageal Adenocarcinoma AJCC v8 9 167414 -NCIT:C133417 Pathologic Stage IC Esophageal Adenocarcinoma AJCC v8 9 167415 -NCIT:C133418 Pathologic Stage II Esophageal Adenocarcinoma AJCC v8 8 167416 -NCIT:C133419 Pathologic Stage IIA Esophageal Adenocarcinoma AJCC v8 9 167417 -NCIT:C133420 Pathologic Stage IIB Esophageal Adenocarcinoma AJCC v8 9 167418 -NCIT:C133421 Pathologic Stage III Esophageal Adenocarcinoma AJCC v8 8 167419 -NCIT:C133422 Pathologic Stage IIIA Esophageal Adenocarcinoma AJCC v8 9 167420 -NCIT:C133423 Pathologic Stage IIIB Esophageal Adenocarcinoma AJCC v8 9 167421 -NCIT:C133424 Pathologic Stage IV Esophageal Adenocarcinoma AJCC v8 8 167422 -NCIT:C133425 Pathologic Stage IVA Esophageal Adenocarcinoma AJCC v8 9 167423 -NCIT:C133426 Pathologic Stage IVB Esophageal Adenocarcinoma AJCC v8 9 167424 -NCIT:C133432 Esophageal Adenocarcinoma by AJCC v8 Postneoadjuvant Therapy Stage 7 167425 -NCIT:C133433 Postneoadjuvant Therapy Stage I Esophageal Adenocarcinoma AJCC v8 8 167426 -NCIT:C133434 Postneoadjuvant Therapy Stage II Esophageal Adenocarcinoma AJCC v8 8 167427 -NCIT:C133435 Postneoadjuvant Therapy Stage III Esophageal Adenocarcinoma AJCC v8 8 167428 -NCIT:C133436 Postneoadjuvant Therapy Stage IIIA Esophageal Adenocarcinoma AJCC v8 9 167429 -NCIT:C133437 Postneoadjuvant Therapy Stage IIIB Esophageal Adenocarcinoma AJCC v8 9 167430 -NCIT:C133438 Postneoadjuvant Therapy Stage IV Esophageal Adenocarcinoma AJCC v8 8 167431 -NCIT:C133439 Postneoadjuvant Therapy Stage IVA Esophageal Adenocarcinoma AJCC v8 9 167432 -NCIT:C133440 Postneoadjuvant Therapy Stage IVB Esophageal Adenocarcinoma AJCC v8 9 167433 -NCIT:C133411 Esophageal Adenocarcinoma by AJCC v7 Stage 6 167434 -NCIT:C8628 Stage II Esophageal Adenocarcinoma AJCC v7 7 167435 -NCIT:C6731 Stage IIA Esophageal Adenocarcinoma AJCC v7 8 167436 -NCIT:C6732 Stage IIB Esophageal Adenocarcinoma AJCC v7 8 167437 -NCIT:C8629 Stage 0 Esophageal Adenocarcinoma AJCC v7 7 167438 -NCIT:C8630 Stage I Esophageal Adenocarcinoma AJCC v7 7 167439 -NCIT:C87782 Stage IA Esophageal Adenocarcinoma AJCC v7 8 167440 -NCIT:C87783 Stage IB Esophageal Adenocarcinoma AJCC v7 8 167441 -NCIT:C8631 Stage III Esophageal Adenocarcinoma AJCC v7 7 167442 -NCIT:C87784 Stage IIIA Esophageal Adenocarcinoma AJCC v7 8 167443 -NCIT:C87785 Stage IIIB Esophageal Adenocarcinoma AJCC v7 8 167444 -NCIT:C87786 Stage IIIC Esophageal Adenocarcinoma AJCC v7 8 167445 -NCIT:C8632 Stage IV Esophageal Adenocarcinoma AJCC v7 7 167446 -NCIT:C150027 Thoracic Esophagus Adenocarcinoma 6 167447 -NCIT:C150031 Cervical Esophagus Adenocarcinoma 6 167448 -NCIT:C152036 Distal Esophagus Adenocarcinoma 6 167449 -NCIT:C172248 Unresectable Distal Esophagus Adenocarcinoma 7 167450 -NCIT:C172249 Metastatic Distal Esophagus Adenocarcinoma 7 167451 -NCIT:C7027 Barrett Adenocarcinoma 7 167452 -NCIT:C156074 Metastatic Esophageal Adenocarcinoma 6 167453 -NCIT:C166120 Oligometastatic Esophageal Adenocarcinoma 7 167454 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 7 167455 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 7 167456 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 167457 -NCIT:C172249 Metastatic Distal Esophagus Adenocarcinoma 7 167458 -NCIT:C161906 Esophageal Intramucosal Adenocarcinoma 6 167459 -NCIT:C173162 Unresectable Esophageal Adenocarcinoma 6 167460 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 7 167461 -NCIT:C172248 Unresectable Distal Esophagus Adenocarcinoma 7 167462 -NCIT:C176892 Refractory Esophageal Adenocarcinoma 6 167463 -NCIT:C8627 Recurrent Esophageal Adenocarcinoma 6 167464 -NCIT:C4029 Cervical Adenocarcinoma 5 167465 -NCIT:C127915 Cervical Adenocarcinoma Admixed with Neuroendocrine Carcinoma 6 167466 -NCIT:C136651 Recurrent Cervical Adenocarcinoma 6 167467 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 7 167468 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 6 167469 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 7 167470 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 8 167471 -NCIT:C156304 Advanced Cervical Adenocarcinoma 7 167472 -NCIT:C174029 Unresectable Cervical Adenocarcinoma 6 167473 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 7 167474 -NCIT:C180848 Human Papillomavirus-Independent Cervical Adenocarcinoma 6 167475 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 7 167476 -NCIT:C40201 Cervical Serous Adenocarcinoma 7 167477 -NCIT:C40206 Human Papillomavirus-Independent Cervical Adenocarcinoma, Gastric-Type 7 167478 -NCIT:C40254 Cervical Mesonephric Adenocarcinoma 7 167479 -NCIT:C6343 Cervical Endometrioid Adenocarcinoma 7 167480 -NCIT:C6344 Human Papillomavirus-Independent Cervical Adenocarcinoma, Clear Cell-Type 7 167481 -NCIT:C180870 Cervical Adenocarcinoma, Not Otherwise Specified 6 167482 -NCIT:C181036 Refractory Cervical Adenocarcinoma 6 167483 -NCIT:C27677 Human Papillomavirus-Related Cervical Adenocarcinoma 6 167484 -NCIT:C127907 Endocervical Adenocarcinoma, Usual-Type 7 167485 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 8 167486 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 8 167487 -NCIT:C40208 Cervical Villoglandular Adenocarcinoma 8 167488 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 7 167489 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 7 167490 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 7 167491 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 7 167492 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 7 167493 -NCIT:C36095 Cervical Mucinous Adenocarcinoma 6 167494 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 7 167495 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 7 167496 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 7 167497 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 7 167498 -NCIT:C40206 Human Papillomavirus-Independent Cervical Adenocarcinoma, Gastric-Type 7 167499 -NCIT:C36096 Early Invasive Cervical Adenocarcinoma 6 167500 -NCIT:C4520 Cervical Adenocarcinoma In Situ 6 167501 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 7 167502 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 7 167503 -NCIT:C40310 Sebaceous Carcinoma 5 167504 -NCIT:C160978 Head and Neck Sebaceous Carcinoma 6 167505 -NCIT:C173648 Salivary Gland Sebaceous Carcinoma 7 167506 -NCIT:C40369 Breast Sebaceous Carcinoma 6 167507 -NCIT:C43340 Eye Sebaceous Carcinoma 6 167508 -NCIT:C134831 Eyelid Sebaceous Gland Carcinoma 7 167509 -NCIT:C174404 Conjunctival Sebaceous Carcinoma 7 167510 -NCIT:C43341 Extraocular Cutaneous Sebaceous Carcinoma 6 167511 -NCIT:C40309 Vulvar Sebaceous Carcinoma 7 167512 -NCIT:C4068 Trabecular Adenocarcinoma 5 167513 -NCIT:C4072 Mesonephric Adenocarcinoma 5 167514 -NCIT:C185381 Metastatic Mesonephric Adenocarcinoma 6 167515 -NCIT:C40253 Vaginal Mesonephric Adenocarcinoma 6 167516 -NCIT:C40254 Cervical Mesonephric Adenocarcinoma 6 167517 -NCIT:C4123 Adenocarcinoma In Situ 5 167518 -NCIT:C133894 Stage 0 Small Intestinal Adenocarcinoma AJCC v8 6 167519 -NCIT:C134914 Stage 0 Pancreatic Cancer AJCC v8 6 167520 -NCIT:C136486 Lung Adenocarcinoma In Situ 6 167521 -NCIT:C136716 Lung Non-Mucinous Adenocarcinoma In Situ 7 167522 -NCIT:C136717 Lung Mucinous Adenocarcinoma In Situ 7 167523 -NCIT:C5729 Stage 0 Pancreatic Cancer AJCC v6 and v7 6 167524 -NCIT:C6877 Grade III Glandular Intraepithelial Neoplasia 6 167525 -NCIT:C133402 Clinical Stage 0 Esophageal Adenocarcinoma AJCC v8 7 167526 -NCIT:C133413 Pathologic Stage 0 Esophageal Adenocarcinoma AJCC v8 7 167527 -NCIT:C133550 Clinical Stage 0 Gastroesophageal Junction Adenocarcinoma AJCC v8 7 167528 -NCIT:C133564 Pathologic Stage 0 Gastroesophageal Junction Adenocarcinoma AJCC v8 7 167529 -NCIT:C2924 Breast Ductal Carcinoma In Situ 7 167530 -NCIT:C176005 Breast Ductal Carcinoma In Situ, Comedo Type 8 167531 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 8 167532 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 9 167533 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 9 167534 -NCIT:C5137 Breast Ductal Carcinoma In Situ, Non-Comedo Type 8 167535 -NCIT:C5138 Breast Ductal Carcinoma In Situ, Cribriform Pattern 8 167536 -NCIT:C66933 Breast Ductal Carcinoma In Situ, Solid Type 8 167537 -NCIT:C7949 Breast Ductal Carcinoma In Situ, High Grade 8 167538 -NCIT:C9456 Breast Ductal Carcinoma In Situ, Intermediate Grade 8 167539 -NCIT:C9457 Breast Ductal Carcinoma In Situ, Low Grade 8 167540 -NCIT:C3642 Grade III Prostatic Intraepithelial Neoplasia 7 167541 -NCIT:C40105 Stage 0 Fallopian Tube Cancer AJCC v7 7 167542 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 8 167543 -NCIT:C4018 Breast Lobular Carcinoma In Situ 7 167544 -NCIT:C137839 Breast Pleomorphic Lobular Carcinoma In Situ 8 167545 -NCIT:C175949 Breast Classic Lobular Carcinoma In Situ 8 167546 -NCIT:C83170 Breast Classic Lobular Carcinoma In Situ Type A 9 167547 -NCIT:C83171 Breast Classic Lobular Carcinoma In Situ Type B 9 167548 -NCIT:C175950 Breast Florid Lobular Carcinoma In Situ 8 167549 -NCIT:C4195 Breast Ductal Carcinoma In Situ and Lobular Carcinoma In Situ 7 167550 -NCIT:C4520 Cervical Adenocarcinoma In Situ 7 167551 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 8 167552 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 8 167553 -NCIT:C8629 Stage 0 Esophageal Adenocarcinoma AJCC v7 7 167554 -NCIT:C7680 Adenocarcinoma In Situ in a Polyp 6 167555 -NCIT:C7678 Adenocarcinoma In Situ in Adenomatous Polyp 7 167556 -NCIT:C4144 Adenocarcinoma In Situ in Tubulovillous Adenoma 8 167557 -NCIT:C7679 Adenocarcinoma In Situ in Tubular Adenoma 8 167558 -NCIT:C8376 Adenocarcinoma In Situ in Villous Adenoma 8 167559 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 6 167560 -NCIT:C8894 Stage 0 Bladder Adenocarcinoma AJCC v6 and v7 6 167561 -NCIT:C4124 Metastatic Adenocarcinoma 5 167562 -NCIT:C150577 Metastatic Gastroesophageal Junction Adenocarcinoma 6 167563 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 7 167564 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 7 167565 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 167566 -NCIT:C150595 Metastatic Renal Cell Carcinoma 6 167567 -NCIT:C153170 Advanced Renal Cell Carcinoma 7 167568 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 8 167569 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 8 167570 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 8 167571 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 8 167572 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 8 167573 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 7 167574 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 8 167575 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 8 167576 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 7 167577 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 8 167578 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 8 167579 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 7 167580 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 8 167581 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 8 167582 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 7 167583 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 8 167584 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 8 167585 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 8 167586 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 8 167587 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 8 167588 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 8 167589 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 7 167590 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 8 167591 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 8 167592 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 7 167593 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 8 167594 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 8 167595 -NCIT:C153319 Metastatic Gastric Adenocarcinoma 6 167596 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 7 167597 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 8 167598 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 8 167599 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 7 167600 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 8 167601 -NCIT:C165630 Metastatic Proximal Gastric Adenocarcinoma 7 167602 -NCIT:C166121 Oligometastatic Gastric Adenocarcinoma 7 167603 -NCIT:C166255 Advanced Gastric Adenocarcinoma 7 167604 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 8 167605 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 6 167606 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 7 167607 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 8 167608 -NCIT:C156304 Advanced Cervical Adenocarcinoma 7 167609 -NCIT:C154091 Metastatic Hepatocellular Carcinoma 6 167610 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 7 167611 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 8 167612 -NCIT:C167336 Advanced Hepatocellular Carcinoma 7 167613 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 8 167614 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 8 167615 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 7 167616 -NCIT:C155908 Metastatic Lung Adenocarcinoma 6 167617 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 7 167618 -NCIT:C176727 Advanced Lung Adenocarcinoma 7 167619 -NCIT:C156070 Metastatic Adrenal Cortical Carcinoma 6 167620 -NCIT:C174443 Locally Advanced Adrenal Cortical Carcinoma 7 167621 -NCIT:C191863 Advanced Adrenal Cortical Carcinoma 7 167622 -NCIT:C156074 Metastatic Esophageal Adenocarcinoma 6 167623 -NCIT:C166120 Oligometastatic Esophageal Adenocarcinoma 7 167624 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 7 167625 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 7 167626 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 167627 -NCIT:C172249 Metastatic Distal Esophagus Adenocarcinoma 7 167628 -NCIT:C157623 Metastatic Cholangiocarcinoma 6 167629 -NCIT:C162752 Advanced Cholangiocarcinoma 7 167630 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 8 167631 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 8 167632 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 8 167633 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 7 167634 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 8 167635 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 8 167636 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 7 167637 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 8 167638 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 7 167639 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 8 167640 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 8 167641 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 7 167642 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 8 167643 -NCIT:C159556 Advanced Adenocarcinoma 6 167644 -NCIT:C153170 Advanced Renal Cell Carcinoma 7 167645 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 8 167646 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 8 167647 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 8 167648 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 8 167649 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 8 167650 -NCIT:C156286 Advanced Prostate Adenocarcinoma 7 167651 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 8 167652 -NCIT:C156304 Advanced Cervical Adenocarcinoma 7 167653 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 7 167654 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 7 167655 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 8 167656 -NCIT:C162752 Advanced Cholangiocarcinoma 7 167657 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 8 167658 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 8 167659 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 8 167660 -NCIT:C165700 Advanced Breast Adenocarcinoma 7 167661 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 167662 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 167663 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 8 167664 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 167665 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 167666 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 167667 -NCIT:C166255 Advanced Gastric Adenocarcinoma 7 167668 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 8 167669 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 7 167670 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 7 167671 -NCIT:C162152 Advanced Colon Adenocarcinoma 8 167672 -NCIT:C175363 Advanced Rectal Adenocarcinoma 8 167673 -NCIT:C167336 Advanced Hepatocellular Carcinoma 7 167674 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 8 167675 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 8 167676 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 7 167677 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 8 167678 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 8 167679 -NCIT:C170807 Advanced Endometrioid Adenocarcinoma 7 167680 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 8 167681 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 167682 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 7 167683 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 8 167684 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 8 167685 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 7 167686 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 7 167687 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 7 167688 -NCIT:C176727 Advanced Lung Adenocarcinoma 7 167689 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 7 167690 -NCIT:C182105 Advanced Appendix Adenocarcinoma 7 167691 -NCIT:C191863 Advanced Adrenal Cortical Carcinoma 7 167692 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 6 167693 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 7 167694 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 8 167695 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 8 167696 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 7 167697 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 8 167698 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 8 167699 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 7 167700 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 8 167701 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 8 167702 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 7 167703 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 8 167704 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 8 167705 -NCIT:C161048 Metastatic Colorectal Adenocarcinoma 6 167706 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 7 167707 -NCIT:C160819 Metastatic Colon Adenocarcinoma 7 167708 -NCIT:C162152 Advanced Colon Adenocarcinoma 8 167709 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 8 167710 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 167711 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 7 167712 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 8 167713 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 167714 -NCIT:C175363 Advanced Rectal Adenocarcinoma 8 167715 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 7 167716 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 7 167717 -NCIT:C162152 Advanced Colon Adenocarcinoma 8 167718 -NCIT:C175363 Advanced Rectal Adenocarcinoma 8 167719 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 7 167720 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 167721 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 167722 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 167723 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 8 167724 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 167725 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 8 167726 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 167727 -NCIT:C165698 Metastatic Breast Adenocarcinoma 6 167728 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 7 167729 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 8 167730 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 167731 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 167732 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 167733 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 8 167734 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 167735 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 167736 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 167737 -NCIT:C165700 Advanced Breast Adenocarcinoma 7 167738 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 167739 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 167740 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 8 167741 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 167742 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 167743 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 167744 -NCIT:C168777 Metastatic HER2-Negative Breast Carcinoma 7 167745 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 167746 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 167747 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 167748 -NCIT:C179554 Metastatic HER2-Low Breast Carcinoma 7 167749 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 167750 -NCIT:C180924 Metastatic HER2-Positive Breast Carcinoma 7 167751 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 8 167752 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 8 167753 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 167754 -NCIT:C181787 Metastatic Breast Inflammatory Carcinoma 7 167755 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 8 167756 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 8 167757 -NCIT:C9246 Stage IIIB Breast Inflammatory Carcinoma 8 167758 -NCIT:C185880 Metastatic Hormone Receptor-Positive Breast Carcinoma 7 167759 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 167760 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 167761 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 167762 -NCIT:C190852 Metastatic Androgen Receptor-Positive Breast Carcinoma 8 167763 -NCIT:C190856 Metastatic Estrogen Receptor-Positive Breast Carcinoma 8 167764 -NCIT:C190677 Metastatic Hormone Receptor-Negative Breast Carcinoma 7 167765 -NCIT:C153348 Metastatic Triple-Negative Breast Carcinoma 8 167766 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 167767 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 167768 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 167769 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 9 167770 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 167771 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 167772 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 7 167773 -NCIT:C76326 Metastatic Breast Ductal Carcinoma 7 167774 -NCIT:C76328 Metastatic Breast Lobular Carcinoma 7 167775 -NCIT:C168978 Locally Advanced Adenocarcinoma 6 167776 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 7 167777 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 8 167778 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 8 167779 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 7 167780 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 8 167781 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 7 167782 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 8 167783 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 7 167784 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 167785 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 7 167786 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 8 167787 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 7 167788 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 7 167789 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 8 167790 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 167791 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 167792 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 167793 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 8 167794 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 167795 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 167796 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 167797 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 7 167798 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 7 167799 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 8 167800 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 8 167801 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 7 167802 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 8 167803 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 8 167804 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 8 167805 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 8 167806 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 8 167807 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 8 167808 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 7 167809 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 167810 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 7 167811 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 8 167812 -NCIT:C174045 Locally Advanced Endometrioid Adenocarcinoma 7 167813 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 8 167814 -NCIT:C174443 Locally Advanced Adrenal Cortical Carcinoma 7 167815 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 7 167816 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 7 167817 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 7 167818 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 7 167819 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 8 167820 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 8 167821 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 7 167822 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 167823 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 167824 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 167825 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 8 167826 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 167827 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 8 167828 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 167829 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 6 167830 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 7 167831 -NCIT:C170972 Metastatic Primary Peritoneal Adenocarcinoma 6 167832 -NCIT:C171019 Metastatic Primary Peritoneal Serous Adenocarcinoma 7 167833 -NCIT:C186453 Metastatic Primary Peritoneal High Grade Serous Adenocarcinoma 8 167834 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 6 167835 -NCIT:C173979 Metastatic Differentiated Thyroid Gland Carcinoma 6 167836 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 7 167837 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 8 167838 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 9 167839 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 7 167840 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 7 167841 -NCIT:C174046 Metastatic Poorly Differentiated Thyroid Gland Carcinoma 6 167842 -NCIT:C182104 Metastatic Appendix Adenocarcinoma 6 167843 -NCIT:C162274 Metastatic Appendix Mucinous Adenocarcinoma 7 167844 -NCIT:C182105 Advanced Appendix Adenocarcinoma 7 167845 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 6 167846 -NCIT:C185381 Metastatic Mesonephric Adenocarcinoma 6 167847 -NCIT:C27185 Disseminated Adenocarcinoma 6 167848 -NCIT:C3345 Pseudomyxoma Peritonei 6 167849 -NCIT:C179179 Recurrent Pseudomyxoma Peritonei 7 167850 -NCIT:C179180 Refractory Pseudomyxoma Peritonei 7 167851 -NCIT:C4039 Adenocarcinoma of Unknown Primary 6 167852 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 7 167853 -NCIT:C170962 Resectable Adenocarcinoma of Unknown Primary 7 167854 -NCIT:C66717 Metastatic Signet Ring Cell Carcinoma 6 167855 -NCIT:C3153 Krukenberg Tumor 7 167856 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 7 167857 -NCIT:C8933 Metastatic Pancreatic Adenocarcinoma 6 167858 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 7 167859 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 8 167860 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 8 167861 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 7 167862 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 8 167863 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 8 167864 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 8 167865 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 7 167866 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 8 167867 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 7 167868 -NCIT:C8934 Metastatic Small Intestinal Adenocarcinoma 6 167869 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 7 167870 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 6 167871 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 7 167872 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 8 167873 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 7 167874 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 8 167875 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 8 167876 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 7 167877 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 8 167878 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 8 167879 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 7 167880 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 8 167881 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 7 167882 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 7 167883 -NCIT:C8943 Metastatic Endometrioid Adenocarcinoma 6 167884 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 7 167885 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 8 167886 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 8 167887 -NCIT:C170807 Advanced Endometrioid Adenocarcinoma 7 167888 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 8 167889 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 167890 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 7 167891 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 167892 -NCIT:C174045 Locally Advanced Endometrioid Adenocarcinoma 7 167893 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 8 167894 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 6 167895 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 7 167896 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 6 167897 -NCIT:C156286 Advanced Prostate Adenocarcinoma 7 167898 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 8 167899 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 7 167900 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 8 167901 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 7 167902 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 8 167903 -NCIT:C9044 Metastatic Parathyroid Gland Carcinoma 6 167904 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 7 167905 -NCIT:C4126 Intestinal-Type Adenocarcinoma 5 167906 -NCIT:C116316 Sinonasal Adenocarcinoma, Intestinal-Type 6 167907 -NCIT:C160984 Sinonasal Adenocarcinoma, Intestinal-Type with Papillary Pattern 7 167908 -NCIT:C160986 Sinonasal Adenocarcinoma, Intestinal-Type with Colonic Pattern 7 167909 -NCIT:C160987 Sinonasal Adenocarcinoma, Intestinal-Type with Solid Pattern 7 167910 -NCIT:C160995 Sinonasal Adenocarcinoma, Intestinal-Type with Mucinous Pattern 7 167911 -NCIT:C161000 Sinonasal Adenocarcinoma, Intestinal-Type with Mixed Pattern 7 167912 -NCIT:C128166 Vulvar Adenocarcinoma, Intestinal-Type 6 167913 -NCIT:C136710 Lung Enteric Adenocarcinoma 6 167914 -NCIT:C180536 Endometrial Mucinous Adenocarcinoma, Intestinal-Type 6 167915 -NCIT:C180946 Vaginal Mucinous Adenocarcinoma, Intestinal-Type 6 167916 -NCIT:C183314 Thymic Enteric-Type Adenocarcinoma 6 167917 -NCIT:C27415 Ampulla of Vater Intestinal-Type Adenocarcinoma 6 167918 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 6 167919 -NCIT:C43604 Gallbladder Adenocarcinoma, Intestinal-Type 6 167920 -NCIT:C9157 Gastric Intestinal-Type Adenocarcinoma 6 167921 -NCIT:C4127 Diffuse Type Adenocarcinoma 5 167922 -NCIT:C9159 Gastric Diffuse Adenocarcinoma 6 167923 -NCIT:C43295 Hereditary Gastric Diffuse Adenocarcinoma 7 167924 -NCIT:C43529 Sporadic Gastric Diffuse Adenocarcinoma 7 167925 -NCIT:C4142 Villous Adenocarcinoma 5 167926 -NCIT:C172699 Colorectal Adenoma-Like Adenocarcinoma 6 167927 -NCIT:C27846 Villoglandular Endometrial Endometrioid Adenocarcinoma 6 167928 -NCIT:C40208 Cervical Villoglandular Adenocarcinoma 6 167929 -NCIT:C4150 Basophilic Adenocarcinoma 5 167930 -NCIT:C4541 Lacrimal Gland Adenocarcinoma 5 167931 -NCIT:C175267 Lacrimal Gland Oncocytic Adenocarcinoma 6 167932 -NCIT:C175290 Lacrimal Gland Acinic Cell Carcinoma 6 167933 -NCIT:C4712 Adenocarcinoma with Metaplasia 5 167934 -NCIT:C4200 Adenocarcinoma with Squamous Metaplasia 6 167935 -NCIT:C5163 Breast Adenocarcinoma with Squamous Metaplasia 7 167936 -NCIT:C6987 Breast Ductal Carcinoma with Squamous Metaplasia 8 167937 -NCIT:C9169 Gallbladder Adenocarcinoma with Squamous Metaplasia 7 167938 -NCIT:C4201 Adenocarcinoma with Spindle Cell Metaplasia 6 167939 -NCIT:C40360 Breast Adenocarcinoma with Spindle Cell Metaplasia 7 167940 -NCIT:C4202 Adenocarcinoma with Apocrine Metaplasia 6 167941 -NCIT:C7683 Adenocarcinoma with Cartilaginous and Osseous Metaplasia 6 167942 -NCIT:C7684 Adenocarcinoma with Osseous Metaplasia 7 167943 -NCIT:C7685 Adenocarcinoma with Cartilaginous Metaplasia 7 167944 -NCIT:C4906 Parathyroid Gland Carcinoma 5 167945 -NCIT:C118819 Childhood Parathyroid Gland Carcinoma 6 167946 -NCIT:C7826 Localized Parathyroid Gland Carcinoma 6 167947 -NCIT:C7828 Recurrent Parathyroid Gland Carcinoma 6 167948 -NCIT:C9044 Metastatic Parathyroid Gland Carcinoma 6 167949 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 7 167950 -NCIT:C5105 Colorectal Adenocarcinoma 5 167951 -NCIT:C161048 Metastatic Colorectal Adenocarcinoma 6 167952 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 7 167953 -NCIT:C160819 Metastatic Colon Adenocarcinoma 7 167954 -NCIT:C162152 Advanced Colon Adenocarcinoma 8 167955 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 8 167956 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 167957 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 7 167958 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 8 167959 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 167960 -NCIT:C175363 Advanced Rectal Adenocarcinoma 8 167961 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 7 167962 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 7 167963 -NCIT:C162152 Advanced Colon Adenocarcinoma 8 167964 -NCIT:C175363 Advanced Rectal Adenocarcinoma 8 167965 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 7 167966 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 167967 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 167968 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 167969 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 8 167970 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 167971 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 8 167972 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 167973 -NCIT:C162154 Refractory Colorectal Adenocarcinoma 6 167974 -NCIT:C162155 Refractory Colon Adenocarcinoma 7 167975 -NCIT:C162157 Refractory Rectal Adenocarcinoma 7 167976 -NCIT:C162441 Recurrent Colorectal Adenocarcinoma 6 167977 -NCIT:C162442 Recurrent Colon Adenocarcinoma 7 167978 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 7 167979 -NCIT:C171585 Unresectable Colorectal Adenocarcinoma 6 167980 -NCIT:C162116 Unresectable Colon Adenocarcinoma 7 167981 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 8 167982 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 7 167983 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 8 167984 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 7 167985 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 8 167986 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 8 167987 -NCIT:C172694 Colorectal Poorly Cohesive Adenocarcinoma 6 167988 -NCIT:C43586 Colorectal Signet Ring Cell Carcinoma 7 167989 -NCIT:C43593 Rectosigmoid Signet Ring Cell Carcinoma 8 167990 -NCIT:C7967 Colon Signet Ring Cell Adenocarcinoma 8 167991 -NCIT:C9168 Rectal Signet Ring Cell Adenocarcinoma 8 167992 -NCIT:C172699 Colorectal Adenoma-Like Adenocarcinoma 6 167993 -NCIT:C172700 Inflammatory Bowel Disease-Associated Colorectal Adenocarcinoma 6 167994 -NCIT:C96496 Ulcerative Colitis-Associated Colorectal Adenocarcinoma 7 167995 -NCIT:C96497 Crohn Disease-Associated Colorectal Adenocarcinoma 7 167996 -NCIT:C4349 Colon Adenocarcinoma 6 167997 -NCIT:C160819 Metastatic Colon Adenocarcinoma 7 167998 -NCIT:C162152 Advanced Colon Adenocarcinoma 8 167999 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 8 168000 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 168001 -NCIT:C162116 Unresectable Colon Adenocarcinoma 7 168002 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 8 168003 -NCIT:C162155 Refractory Colon Adenocarcinoma 7 168004 -NCIT:C162442 Recurrent Colon Adenocarcinoma 7 168005 -NCIT:C38760 Submucosal Invasive Colon Adenocarcinoma 7 168006 -NCIT:C45429 Colon Intramucosal Adenocarcinoma 7 168007 -NCIT:C27413 Adenoma of the Colon with Intramucosal Adenocarcinoma 8 168008 -NCIT:C5543 Cecum Adenocarcinoma 7 168009 -NCIT:C60641 Colon Medullary Carcinoma 7 168010 -NCIT:C7966 Colon Mucinous Adenocarcinoma 7 168011 -NCIT:C7967 Colon Signet Ring Cell Adenocarcinoma 7 168012 -NCIT:C9452 Grade 1 Colon Adenocarcinoma 7 168013 -NCIT:C9453 Grade 2 Colon Adenocarcinoma 7 168014 -NCIT:C9454 Grade 3 Colon Adenocarcinoma 7 168015 -NCIT:C96486 Colon Serrated Adenocarcinoma 7 168016 -NCIT:C96489 Colon Cribriform Comedo-Type Adenocarcinoma 7 168017 -NCIT:C96492 Colon Micropapillary Adenocarcinoma 7 168018 -NCIT:C43584 Rectosigmoid Adenocarcinoma 6 168019 -NCIT:C43592 Rectosigmoid Mucinous Adenocarcinoma 7 168020 -NCIT:C43593 Rectosigmoid Signet Ring Cell Carcinoma 7 168021 -NCIT:C43585 Colorectal Mucinous Adenocarcinoma 6 168022 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 7 168023 -NCIT:C43592 Rectosigmoid Mucinous Adenocarcinoma 7 168024 -NCIT:C7966 Colon Mucinous Adenocarcinoma 7 168025 -NCIT:C7973 Rectal Mucinous Adenocarcinoma 7 168026 -NCIT:C43590 Colorectal Medullary Carcinoma 6 168027 -NCIT:C60640 Rectal Medullary Carcinoma 7 168028 -NCIT:C60641 Colon Medullary Carcinoma 7 168029 -NCIT:C9383 Rectal Adenocarcinoma 6 168030 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 7 168031 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 8 168032 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 168033 -NCIT:C175363 Advanced Rectal Adenocarcinoma 8 168034 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 7 168035 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 8 168036 -NCIT:C162157 Refractory Rectal Adenocarcinoma 7 168037 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 7 168038 -NCIT:C60640 Rectal Medullary Carcinoma 7 168039 -NCIT:C7973 Rectal Mucinous Adenocarcinoma 7 168040 -NCIT:C9168 Rectal Signet Ring Cell Adenocarcinoma 7 168041 -NCIT:C9449 Grade 3 Rectal Adenocarcinoma 7 168042 -NCIT:C9450 Grade 2 Rectal Adenocarcinoma 7 168043 -NCIT:C9451 Grade 1 Rectal Adenocarcinoma 7 168044 -NCIT:C96487 Rectal Serrated Adenocarcinoma 7 168045 -NCIT:C96490 Rectal Cribriform Comedo-Type Adenocarcinoma 7 168046 -NCIT:C96493 Rectal Micropapillary Adenocarcinoma 7 168047 -NCIT:C9446 Grade 1 Colorectal Adenocarcinoma 6 168048 -NCIT:C9451 Grade 1 Rectal Adenocarcinoma 7 168049 -NCIT:C9452 Grade 1 Colon Adenocarcinoma 7 168050 -NCIT:C9447 Grade 2 Colorectal Adenocarcinoma 6 168051 -NCIT:C9450 Grade 2 Rectal Adenocarcinoma 7 168052 -NCIT:C9453 Grade 2 Colon Adenocarcinoma 7 168053 -NCIT:C9448 Grade 3 Colorectal Adenocarcinoma 6 168054 -NCIT:C9449 Grade 3 Rectal Adenocarcinoma 7 168055 -NCIT:C9454 Grade 3 Colon Adenocarcinoma 7 168056 -NCIT:C96485 Colorectal Serrated Adenocarcinoma 6 168057 -NCIT:C96486 Colon Serrated Adenocarcinoma 7 168058 -NCIT:C96487 Rectal Serrated Adenocarcinoma 7 168059 -NCIT:C96488 Colorectal Cribriform Comedo-Type Adenocarcinoma 6 168060 -NCIT:C96489 Colon Cribriform Comedo-Type Adenocarcinoma 7 168061 -NCIT:C96490 Rectal Cribriform Comedo-Type Adenocarcinoma 7 168062 -NCIT:C96491 Colorectal Micropapillary Adenocarcinoma 6 168063 -NCIT:C96492 Colon Micropapillary Adenocarcinoma 7 168064 -NCIT:C96493 Rectal Micropapillary Adenocarcinoma 7 168065 -NCIT:C5214 Breast Adenocarcinoma 5 168066 -NCIT:C114932 Hormone-Resistant Breast Carcinoma 6 168067 -NCIT:C157056 Hormone Receptor-Positive Breast Carcinoma 6 168068 -NCIT:C157057 Refractory Hormone Receptor-Positive Breast Carcinoma 7 168069 -NCIT:C185157 Recurrent Hormone Receptor-Positive Breast Carcinoma 7 168070 -NCIT:C185880 Metastatic Hormone Receptor-Positive Breast Carcinoma 7 168071 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 168072 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 168073 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 168074 -NCIT:C190852 Metastatic Androgen Receptor-Positive Breast Carcinoma 8 168075 -NCIT:C190856 Metastatic Estrogen Receptor-Positive Breast Carcinoma 8 168076 -NCIT:C187160 Unresectable Hormone Receptor-Positive Breast Carcinoma 7 168077 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 8 168078 -NCIT:C188366 Estrogen Receptor-Positive Breast Carcinoma 7 168079 -NCIT:C190856 Metastatic Estrogen Receptor-Positive Breast Carcinoma 8 168080 -NCIT:C190851 Androgen Receptor-Positive Breast Carcinoma 7 168081 -NCIT:C190852 Metastatic Androgen Receptor-Positive Breast Carcinoma 8 168082 -NCIT:C165698 Metastatic Breast Adenocarcinoma 6 168083 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 7 168084 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 8 168085 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 168086 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 168087 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 168088 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 8 168089 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 168090 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 168091 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 168092 -NCIT:C165700 Advanced Breast Adenocarcinoma 7 168093 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 168094 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 168095 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 8 168096 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 168097 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 168098 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 168099 -NCIT:C168777 Metastatic HER2-Negative Breast Carcinoma 7 168100 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 168101 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 168102 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 168103 -NCIT:C179554 Metastatic HER2-Low Breast Carcinoma 7 168104 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 168105 -NCIT:C180924 Metastatic HER2-Positive Breast Carcinoma 7 168106 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 8 168107 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 8 168108 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 168109 -NCIT:C181787 Metastatic Breast Inflammatory Carcinoma 7 168110 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 8 168111 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 8 168112 -NCIT:C9246 Stage IIIB Breast Inflammatory Carcinoma 8 168113 -NCIT:C185880 Metastatic Hormone Receptor-Positive Breast Carcinoma 7 168114 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 168115 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 168116 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 168117 -NCIT:C190852 Metastatic Androgen Receptor-Positive Breast Carcinoma 8 168118 -NCIT:C190856 Metastatic Estrogen Receptor-Positive Breast Carcinoma 8 168119 -NCIT:C190677 Metastatic Hormone Receptor-Negative Breast Carcinoma 7 168120 -NCIT:C153348 Metastatic Triple-Negative Breast Carcinoma 8 168121 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 168122 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 168123 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 168124 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 9 168125 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 168126 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 168127 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 7 168128 -NCIT:C76326 Metastatic Breast Ductal Carcinoma 7 168129 -NCIT:C76328 Metastatic Breast Lobular Carcinoma 7 168130 -NCIT:C165703 Refractory Breast Adenocarcinoma 6 168131 -NCIT:C157057 Refractory Hormone Receptor-Positive Breast Carcinoma 7 168132 -NCIT:C167076 Refractory Triple-Negative Breast Carcinoma 7 168133 -NCIT:C168784 Refractory HER2-Negative Breast Carcinoma 7 168134 -NCIT:C182110 Refractory HER2-Positive Breast Carcinoma 7 168135 -NCIT:C165743 Hormone Receptor-Negative Breast Carcinoma 6 168136 -NCIT:C190676 Unresectable Hormone Receptor-Negative Breast Carcinoma 7 168137 -NCIT:C165491 Unresectable Triple-Negative Breast Carcinoma 8 168138 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 168139 -NCIT:C190677 Metastatic Hormone Receptor-Negative Breast Carcinoma 7 168140 -NCIT:C153348 Metastatic Triple-Negative Breast Carcinoma 8 168141 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 168142 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 168143 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 168144 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 9 168145 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 168146 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 168147 -NCIT:C71732 Triple-Negative Breast Carcinoma 7 168148 -NCIT:C153348 Metastatic Triple-Negative Breast Carcinoma 8 168149 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 168150 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 168151 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 168152 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 9 168153 -NCIT:C165491 Unresectable Triple-Negative Breast Carcinoma 8 168154 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 168155 -NCIT:C167076 Refractory Triple-Negative Breast Carcinoma 8 168156 -NCIT:C171014 Recurrent Triple-Negative Breast Carcinoma 8 168157 -NCIT:C181081 Early Stage Triple-Negative Breast Carcinoma 8 168158 -NCIT:C168519 HER2-Negative Breast Carcinoma 6 168159 -NCIT:C168777 Metastatic HER2-Negative Breast Carcinoma 7 168160 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 168161 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 168162 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 168163 -NCIT:C168783 Recurrent HER2-Negative Breast Carcinoma 7 168164 -NCIT:C168784 Refractory HER2-Negative Breast Carcinoma 7 168165 -NCIT:C187161 Unresectable HER2-Negative Breast Carcinoma 7 168166 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 8 168167 -NCIT:C190215 Early Stage HER2-Negative Breast Carcinoma 7 168168 -NCIT:C175588 Recurrent Breast Adenocarcinoma 6 168169 -NCIT:C153568 Recurrent Breast Acinic Cell Carcinoma 7 168170 -NCIT:C153584 Recurrent Lobular Breast Carcinoma 7 168171 -NCIT:C153587 Recurrent Invasive Breast Carcinoma of No Special Type 7 168172 -NCIT:C153588 Recurrent Breast Paget Disease 7 168173 -NCIT:C168783 Recurrent HER2-Negative Breast Carcinoma 7 168174 -NCIT:C171014 Recurrent Triple-Negative Breast Carcinoma 7 168175 -NCIT:C182108 Recurrent HER2-Positive Breast Carcinoma 7 168176 -NCIT:C185157 Recurrent Hormone Receptor-Positive Breast Carcinoma 7 168177 -NCIT:C8607 Recurrent Breast Inflammatory Carcinoma 7 168178 -NCIT:C179553 HER2-Low Breast Carcinoma 6 168179 -NCIT:C179554 Metastatic HER2-Low Breast Carcinoma 7 168180 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 168181 -NCIT:C3771 Breast Lobular Carcinoma 6 168182 -NCIT:C153584 Recurrent Lobular Breast Carcinoma 7 168183 -NCIT:C4018 Breast Lobular Carcinoma In Situ 7 168184 -NCIT:C137839 Breast Pleomorphic Lobular Carcinoma In Situ 8 168185 -NCIT:C175949 Breast Classic Lobular Carcinoma In Situ 8 168186 -NCIT:C83170 Breast Classic Lobular Carcinoma In Situ Type A 9 168187 -NCIT:C83171 Breast Classic Lobular Carcinoma In Situ Type B 9 168188 -NCIT:C175950 Breast Florid Lobular Carcinoma In Situ 8 168189 -NCIT:C76328 Metastatic Breast Lobular Carcinoma 7 168190 -NCIT:C7950 Invasive Breast Lobular Carcinoma 7 168191 -NCIT:C157235 Breast Histiocytoid Carcinoma 8 168192 -NCIT:C187405 Invasive Breast Lobular Carcinoma with Extracellular Mucin 8 168193 -NCIT:C54691 Invasive Breast Lobular Carcinoma, Signet Ring Variant 8 168194 -NCIT:C9136 Invasive Breast Lobular Carcinoma with Predominant In Situ Component 8 168195 -NCIT:C97049 Invasive Breast Lobular Carcinoma, Alveolar Variant 8 168196 -NCIT:C97051 Invasive Breast Lobular Carcinoma, Pleomorphic Variant 8 168197 -NCIT:C97052 Invasive Breast Lobular Carcinoma, Solid Variant 8 168198 -NCIT:C97053 Invasive Breast Lobular Carcinoma, Tubulolobular Variant 8 168199 -NCIT:C4001 Breast Inflammatory Carcinoma 6 168200 -NCIT:C158751 Unresectable Breast Inflammatory Carcinoma 7 168201 -NCIT:C181787 Metastatic Breast Inflammatory Carcinoma 7 168202 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 8 168203 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 8 168204 -NCIT:C9246 Stage IIIB Breast Inflammatory Carcinoma 8 168205 -NCIT:C8607 Recurrent Breast Inflammatory Carcinoma 7 168206 -NCIT:C4017 Breast Ductal Carcinoma 6 168207 -NCIT:C2924 Breast Ductal Carcinoma In Situ 7 168208 -NCIT:C176005 Breast Ductal Carcinoma In Situ, Comedo Type 8 168209 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 8 168210 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 9 168211 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 9 168212 -NCIT:C5137 Breast Ductal Carcinoma In Situ, Non-Comedo Type 8 168213 -NCIT:C5138 Breast Ductal Carcinoma In Situ, Cribriform Pattern 8 168214 -NCIT:C66933 Breast Ductal Carcinoma In Situ, Solid Type 8 168215 -NCIT:C7949 Breast Ductal Carcinoma In Situ, High Grade 8 168216 -NCIT:C9456 Breast Ductal Carcinoma In Situ, Intermediate Grade 8 168217 -NCIT:C9457 Breast Ductal Carcinoma In Situ, Low Grade 8 168218 -NCIT:C4194 Invasive Breast Carcinoma of No Special Type 7 168219 -NCIT:C153587 Recurrent Invasive Breast Carcinoma of No Special Type 8 168220 -NCIT:C175585 Breast Carcinoma with Neuroendocrine Differentiation 8 168221 -NCIT:C40349 Breast Carcinoma with Osteoclast-Like Stromal Giant Cells 8 168222 -NCIT:C40350 Breast Carcinoma with Choriocarcinomatous Features 8 168223 -NCIT:C40351 Breast Carcinoma with Melanotic Features 8 168224 -NCIT:C40365 Breast Lipid-Rich Carcinoma 8 168225 -NCIT:C40366 Breast Oncocytic Carcinoma 8 168226 -NCIT:C40368 Glycogen-Rich, Clear Cell Breast Carcinoma 8 168227 -NCIT:C40369 Breast Sebaceous Carcinoma 8 168228 -NCIT:C5161 Breast Pleomorphic Carcinoma 8 168229 -NCIT:C66719 Breast Atypical Medullary Carcinoma 8 168230 -NCIT:C6987 Breast Ductal Carcinoma with Squamous Metaplasia 8 168231 -NCIT:C7362 Breast Scirrhous Carcinoma 8 168232 -NCIT:C9119 Breast Medullary Carcinoma 8 168233 -NCIT:C9132 Invasive Breast Carcinoma of No Special Type with Predominant Intraductal Component 8 168234 -NCIT:C76326 Metastatic Breast Ductal Carcinoma 7 168235 -NCIT:C40354 Breast Mucinous Cystadenocarcinoma 6 168236 -NCIT:C40360 Breast Adenocarcinoma with Spindle Cell Metaplasia 6 168237 -NCIT:C40367 Breast Acinic Cell Carcinoma 6 168238 -NCIT:C153568 Recurrent Breast Acinic Cell Carcinoma 7 168239 -NCIT:C47857 Breast Paget Disease 6 168240 -NCIT:C153588 Recurrent Breast Paget Disease 7 168241 -NCIT:C3301 Nipple Paget Disease 7 168242 -NCIT:C47858 Breast Paget Disease without Invasive Carcinoma 7 168243 -NCIT:C4019 Breast Paget Disease and Intraductal Carcinoma 8 168244 -NCIT:C7951 Breast Paget Disease with Invasive Ductal Carcinoma 7 168245 -NCIT:C5141 Breast Apocrine Carcinoma 6 168246 -NCIT:C5140 Breast Apocrine Carcinoma In Situ 7 168247 -NCIT:C5457 Invasive Breast Apocrine Carcinoma 7 168248 -NCIT:C5142 Invasive Breast Cribriform Carcinoma 6 168249 -NCIT:C5160 Breast Mixed Ductal and Lobular Carcinoma 6 168250 -NCIT:C7688 Invasive Breast Ductal Carcinoma and Lobular Carcinoma 7 168251 -NCIT:C6393 Invasive Breast Ductal Carcinoma and Invasive Lobular Carcinoma 8 168252 -NCIT:C7689 Invasive Breast Ductal Carcinoma and Lobular Carcinoma In Situ 8 168253 -NCIT:C7690 Breast Ductal Carcinoma In Situ and Lobular Carcinoma 7 168254 -NCIT:C4195 Breast Ductal Carcinoma In Situ and Lobular Carcinoma In Situ 8 168255 -NCIT:C6939 Breast Ductal Carcinoma In Situ and Invasive Lobular Carcinoma 8 168256 -NCIT:C5163 Breast Adenocarcinoma with Squamous Metaplasia 6 168257 -NCIT:C6987 Breast Ductal Carcinoma with Squamous Metaplasia 7 168258 -NCIT:C5175 Breast Signet Ring Cell Carcinoma 6 168259 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 7 168260 -NCIT:C54691 Invasive Breast Lobular Carcinoma, Signet Ring Variant 7 168261 -NCIT:C53553 Breast Carcinoma by Gene Expression Profile 6 168262 -NCIT:C53554 Luminal A Breast Carcinoma 7 168263 -NCIT:C53555 Luminal B Breast Carcinoma 7 168264 -NCIT:C53556 HER2-Positive Breast Carcinoma 7 168265 -NCIT:C180924 Metastatic HER2-Positive Breast Carcinoma 8 168266 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 168267 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 168268 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 168269 -NCIT:C182108 Recurrent HER2-Positive Breast Carcinoma 8 168270 -NCIT:C182110 Refractory HER2-Positive Breast Carcinoma 8 168271 -NCIT:C186284 Unresectable HER2-Positive Breast Carcinoma 8 168272 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 168273 -NCIT:C53557 Normal Breast-Like Subtype of Breast Carcinoma 7 168274 -NCIT:C53558 Basal-Like Breast Carcinoma 7 168275 -NCIT:C71732 Triple-Negative Breast Carcinoma 7 168276 -NCIT:C153348 Metastatic Triple-Negative Breast Carcinoma 8 168277 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 168278 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 168279 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 168280 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 9 168281 -NCIT:C165491 Unresectable Triple-Negative Breast Carcinoma 8 168282 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 168283 -NCIT:C167076 Refractory Triple-Negative Breast Carcinoma 8 168284 -NCIT:C171014 Recurrent Triple-Negative Breast Carcinoma 8 168285 -NCIT:C181081 Early Stage Triple-Negative Breast Carcinoma 8 168286 -NCIT:C9131 Breast Mucinous Carcinoma 6 168287 -NCIT:C40355 Breast Columnar Cell Mucinous Carcinoma 7 168288 -NCIT:C9134 Breast Papillary Carcinoma 6 168289 -NCIT:C176009 Encapsulated Breast Papillary Carcinoma 7 168290 -NCIT:C176010 Encapsulated Breast Papillary Carcinoma with Invasion 8 168291 -NCIT:C36085 Invasive Breast Papillary Carcinoma 7 168292 -NCIT:C176010 Encapsulated Breast Papillary Carcinoma with Invasion 8 168293 -NCIT:C176012 Invasive Breast Solid Papillary Carcinoma 8 168294 -NCIT:C36084 Invasive Breast Micropapillary Carcinoma 8 168295 -NCIT:C7439 Breast Papillary Ductal Carcinoma In Situ with Invasion 8 168296 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 7 168297 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 8 168298 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 8 168299 -NCIT:C6870 Breast Solid Papillary Carcinoma 7 168300 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 8 168301 -NCIT:C176012 Invasive Breast Solid Papillary Carcinoma 8 168302 -NCIT:C9135 Breast Tubular Carcinoma 6 168303 -NCIT:C5600 Anal Adenocarcinoma 5 168304 -NCIT:C153575 Recurrent Anal Adenocarcinoma 6 168305 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 7 168306 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 7 168307 -NCIT:C5598 Anal Paget Disease 6 168308 -NCIT:C7476 Anal Margin Paget Disease 7 168309 -NCIT:C7477 Anal Canal Paget Disease 7 168310 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 8 168311 -NCIT:C7471 Anal Canal Adenocarcinoma 6 168312 -NCIT:C5606 Anal Mucinous Adenocarcinoma 7 168313 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 8 168314 -NCIT:C7477 Anal Canal Paget Disease 7 168315 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 8 168316 -NCIT:C7474 Anal Extramucosal (Perianal) Adenocarcinoma 6 168317 -NCIT:C5609 Anal Glands Adenocarcinoma 7 168318 -NCIT:C7475 Anal Adenocarcinoma within Anorectal Fistula 7 168319 -NCIT:C5914 Oral Cavity Adenocarcinoma 5 168320 -NCIT:C6143 Renal Pelvis Adenocarcinoma 5 168321 -NCIT:C6155 Ureter Adenocarcinoma 5 168322 -NCIT:C6167 Urethral Adenocarcinoma 5 168323 -NCIT:C6172 Urethral Clear Cell Adenocarcinoma 6 168324 -NCIT:C7371 Accessory Urethral Gland Adenocarcinoma 6 168325 -NCIT:C180948 Skene Gland Adenocarcinoma of the Urethra 7 168326 -NCIT:C39864 Cowper Gland Adenocarcinoma of the Urethra 7 168327 -NCIT:C39865 Littre Gland Adenocarcinoma of the Urethra 7 168328 -NCIT:C6265 Fallopian Tube Adenocarcinoma 5 168329 -NCIT:C170766 Recurrent Fallopian Tube Adenocarcinoma 6 168330 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 7 168331 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 7 168332 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 7 168333 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 7 168334 -NCIT:C170970 Unresectable Fallopian Tube Adenocarcinoma 6 168335 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 7 168336 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 7 168337 -NCIT:C170971 Refractory Fallopian Tube Adenocarcinoma 6 168338 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 7 168339 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 7 168340 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 7 168341 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 7 168342 -NCIT:C40099 Fallopian Tube Serous Adenocarcinoma 6 168343 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 7 168344 -NCIT:C126456 Fallopian Tube High Grade Serous Adenocarcinoma 7 168345 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 8 168346 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 8 168347 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 8 168348 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 8 168349 -NCIT:C40103 Fallopian Tube Mucinous Adenocarcinoma 6 168350 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 7 168351 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 7 168352 -NCIT:C40105 Stage 0 Fallopian Tube Cancer AJCC v7 6 168353 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 7 168354 -NCIT:C6279 Fallopian Tube Endometrioid Adenocarcinoma 6 168355 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 7 168356 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 7 168357 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 7 168358 -NCIT:C6280 Fallopian Tube Clear Cell Adenocarcinoma 6 168359 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 7 168360 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 7 168361 -NCIT:C6380 Vulvar Adenocarcinoma 5 168362 -NCIT:C128162 Vulvar Adenocarcinoma of Mammary Gland Type 6 168363 -NCIT:C128164 Vulvar Adenocarcinoma of Sweat Gland Origin 6 168364 -NCIT:C4027 Vulvar Paget Disease 7 168365 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 7 168366 -NCIT:C40306 Vulvar Porocarcinoma 8 168367 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 7 168368 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 7 168369 -NCIT:C128166 Vulvar Adenocarcinoma, Intestinal-Type 6 168370 -NCIT:C40309 Vulvar Sebaceous Carcinoma 6 168371 -NCIT:C7719 Bartholin Gland Adenocarcinoma 6 168372 -NCIT:C6459 Thymic Adenocarcinoma 5 168373 -NCIT:C146717 Thymic Hepatoid Adenocarcinoma 6 168374 -NCIT:C183314 Thymic Enteric-Type Adenocarcinoma 6 168375 -NCIT:C183315 Thymic Adenocarcinoma, Not Otherwise Specified 6 168376 -NCIT:C27937 Thymic Low Grade Papillary Adenocarcinoma 6 168377 -NCIT:C65192 Tubular Adenocarcinoma 5 168378 -NCIT:C3682 Sweat Gland Tubular Carcinoma 6 168379 -NCIT:C45509 Lung Fetal Adenocarcinoma 6 168380 -NCIT:C5473 Gastric Tubular Adenocarcinoma 6 168381 -NCIT:C9135 Breast Tubular Carcinoma 6 168382 -NCIT:C96915 Gallbladder Adenocarcinoma, Biliary Type 6 168383 -NCIT:C96936 Extrahepatic Bile Duct Adenocarcinoma, Biliary Type 6 168384 -NCIT:C6650 Ampulla of Vater Adenocarcinoma 5 168385 -NCIT:C153574 Recurrent Ampulla of Vater Adenocarcinoma 6 168386 -NCIT:C189065 Unresectable Ampulla of Vater Adenocarcinoma 6 168387 -NCIT:C27414 Ampulla of Vater Clear Cell Adenocarcinoma 6 168388 -NCIT:C27415 Ampulla of Vater Intestinal-Type Adenocarcinoma 6 168389 -NCIT:C27416 Ampulla of Vater Mucinous Adenocarcinoma 6 168390 -NCIT:C6656 Ampulla of Vater Signet Ring Cell Carcinoma 6 168391 -NCIT:C95963 Ampulla of Vater Pancreatobiliary Type Adenocarcinoma 6 168392 -NCIT:C95966 Ampulla of Vater Hepatoid Adenocarcinoma 6 168393 -NCIT:C95967 Ampulla of Vater Invasive Papillary Adenocarcinoma 6 168394 -NCIT:C66745 Adenocarcinoma with Neuroendocrine Differentiation 5 168395 -NCIT:C127915 Cervical Adenocarcinoma Admixed with Neuroendocrine Carcinoma 6 168396 -NCIT:C167364 Endocrine Mucin-Producing Sweat Gland Carcinoma 6 168397 -NCIT:C175585 Breast Carcinoma with Neuroendocrine Differentiation 6 168398 -NCIT:C39903 Prostate Adenocarcinoma with Neuroendocrine Differentiation 6 168399 -NCIT:C158656 Usual Prostate Adenocarcinoma with Neuroendocrine Differentiation 7 168400 -NCIT:C158664 Prostate Adenocarcinoma with Paneth Cell-Like Neuroendocrine Differentiation 7 168401 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 7 168402 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 8 168403 -NCIT:C66950 Hepatoid Adenocarcinoma 5 168404 -NCIT:C146717 Thymic Hepatoid Adenocarcinoma 6 168405 -NCIT:C39838 Bladder Hepatoid Adenocarcinoma 6 168406 -NCIT:C95465 Pancreatic Hepatoid Adenocarcinoma 6 168407 -NCIT:C95747 Gastric Hepatoid Adenocarcinoma 6 168408 -NCIT:C95966 Ampulla of Vater Hepatoid Adenocarcinoma 6 168409 -NCIT:C96890 Gallbladder Hepatoid Adenocarcinoma 6 168410 -NCIT:C6848 Middle Ear Adenocarcinoma 5 168411 -NCIT:C6938 Sweat Gland Carcinoma 5 168412 -NCIT:C128164 Vulvar Adenocarcinoma of Sweat Gland Origin 6 168413 -NCIT:C4027 Vulvar Paget Disease 7 168414 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 7 168415 -NCIT:C40306 Vulvar Porocarcinoma 8 168416 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 7 168417 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 7 168418 -NCIT:C167344 Spiradenocylindrocarcinoma 6 168419 -NCIT:C167364 Endocrine Mucin-Producing Sweat Gland Carcinoma 6 168420 -NCIT:C167365 Syringocystadenocarcinoma Papilliferum 6 168421 -NCIT:C27255 Eccrine Carcinoma 6 168422 -NCIT:C27254 Papillary Eccrine Carcinoma 7 168423 -NCIT:C27534 Digital Papillary Adenocarcinoma 8 168424 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 7 168425 -NCIT:C40306 Vulvar Porocarcinoma 8 168426 -NCIT:C43345 Ductal Eccrine Adenocarcinoma 7 168427 -NCIT:C43346 Ductal Eccrine Carcinoma with Spindle Cell Elements 8 168428 -NCIT:C43347 Squamoid Eccrine Ductal Carcinoma 8 168429 -NCIT:C43349 Ductal Eccrine Carcinoma with Abundant Fibromyxoid Stroma 8 168430 -NCIT:C5560 Porocarcinoma 7 168431 -NCIT:C40306 Vulvar Porocarcinoma 8 168432 -NCIT:C43354 Porocarcinoma In Situ 8 168433 -NCIT:C27533 Primary Cutaneous Mucinous Carcinoma 6 168434 -NCIT:C3682 Sweat Gland Tubular Carcinoma 6 168435 -NCIT:C4169 Apocrine Carcinoma 6 168436 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 7 168437 -NCIT:C4176 Ceruminous Adenocarcinoma 7 168438 -NCIT:C5141 Breast Apocrine Carcinoma 7 168439 -NCIT:C5140 Breast Apocrine Carcinoma In Situ 8 168440 -NCIT:C5457 Invasive Breast Apocrine Carcinoma 8 168441 -NCIT:C43344 Cylindrocarcinoma 6 168442 -NCIT:C4471 Adenoid Cystic Skin Carcinoma 6 168443 -NCIT:C4472 Mucoepidermoid Skin Carcinoma 6 168444 -NCIT:C5117 Spiradenocarcinoma 6 168445 -NCIT:C5180 Malignant Breast Spiradenoma 7 168446 -NCIT:C54664 Hidradenocarcinoma 6 168447 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 7 168448 -NCIT:C7581 Microcystic Adnexal Carcinoma 6 168449 -NCIT:C7073 Paget Disease 5 168450 -NCIT:C3302 Extramammary Paget Disease 6 168451 -NCIT:C27817 Penile Paget Disease 7 168452 -NCIT:C4027 Vulvar Paget Disease 7 168453 -NCIT:C5598 Anal Paget Disease 7 168454 -NCIT:C7476 Anal Margin Paget Disease 8 168455 -NCIT:C7477 Anal Canal Paget Disease 8 168456 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 9 168457 -NCIT:C7728 Scrotal Paget Disease 7 168458 -NCIT:C47857 Breast Paget Disease 6 168459 -NCIT:C153588 Recurrent Breast Paget Disease 7 168460 -NCIT:C3301 Nipple Paget Disease 7 168461 -NCIT:C47858 Breast Paget Disease without Invasive Carcinoma 7 168462 -NCIT:C4019 Breast Paget Disease and Intraductal Carcinoma 8 168463 -NCIT:C7951 Breast Paget Disease with Invasive Ductal Carcinoma 7 168464 -NCIT:C7359 Endometrial Adenocarcinoma 5 168465 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 6 168466 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 7 168467 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 7 168468 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 7 168469 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 7 168470 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 7 168471 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 6 168472 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 7 168473 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 7 168474 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 7 168475 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 7 168476 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 7 168477 -NCIT:C179322 Endometrial Mesonephric-Like Adenocarcinoma 6 168478 -NCIT:C180536 Endometrial Mucinous Adenocarcinoma, Intestinal-Type 6 168479 -NCIT:C180537 Endometrial Mucinous Adenocarcinoma, Gastric-Type 6 168480 -NCIT:C39749 Type II Endometrial Adenocarcinoma 6 168481 -NCIT:C27838 Endometrial Serous Adenocarcinoma 7 168482 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 8 168483 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 8 168484 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 8 168485 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 168486 -NCIT:C187374 Platinum-Sensitive Endometrial Serous Adenocarcinoma 8 168487 -NCIT:C40152 Serous Endometrial Intraepithelial Carcinoma 7 168488 -NCIT:C8028 Endometrial Clear Cell Adenocarcinoma 7 168489 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 8 168490 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 8 168491 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 8 168492 -NCIT:C40145 Type I Endometrial Adenocarcinoma 6 168493 -NCIT:C40144 Endometrial Mucinous Adenocarcinoma 7 168494 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 8 168495 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 8 168496 -NCIT:C40149 FIGO Grade 1 Endometrial Mucinous Adenocarcinoma 8 168497 -NCIT:C40150 FIGO Grade 2 Endometrial Mucinous Adenocarcinoma 8 168498 -NCIT:C40151 FIGO Grade 3 Endometrial Mucinous Adenocarcinoma 8 168499 -NCIT:C6287 Endometrial Endometrioid Adenocarcinoma 7 168500 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 8 168501 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 8 168502 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 8 168503 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 168504 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 168505 -NCIT:C180510 Low Grade Endometrial Endometrioid Adenocarcinoma 8 168506 -NCIT:C40146 FIGO Grade 1 Endometrial Endometrioid Adenocarcinoma 9 168507 -NCIT:C40147 FIGO Grade 2 Endometrial Endometrioid Adenocarcinoma 9 168508 -NCIT:C180512 POLE-Ultramutated Endometrial Endometrioid Adenocarcinoma 8 168509 -NCIT:C180514 Mismatch Repair-Deficient Endometrial Endometrioid Adenocarcinoma 8 168510 -NCIT:C180515 p53-Mutant Endometrial Endometrioid Adenocarcinoma 8 168511 -NCIT:C180516 No Specific Molecular Profile Endometrial Endometrioid Adenocarcinoma 8 168512 -NCIT:C27839 Endometrial Endometrioid Adenocarcinoma, Secretory Variant 8 168513 -NCIT:C27843 Endometrial Endometrioid Adenocarcinoma with Clear Cell Change 8 168514 -NCIT:C27844 Endometrial Endometrioid Adenocarcinoma with a Poorly Differentiated Carcinomatous Component 8 168515 -NCIT:C27845 Endometrial Endometrioid Adenocarcinoma with an Undifferentiated Carcinomatous Component 8 168516 -NCIT:C27846 Villoglandular Endometrial Endometrioid Adenocarcinoma 8 168517 -NCIT:C27848 Endometrial Endometrioid Adenocarcinoma, Ciliated Variant 8 168518 -NCIT:C27849 Oxyphilic Endometrial Endometrioid Adenocarcinoma 8 168519 -NCIT:C27850 Endometrial Endometrioid Adenocarcinoma with Spindled Epithelial Cells 8 168520 -NCIT:C40148 High Grade Endometrial Endometrioid Adenocarcinoma 8 168521 -NCIT:C6290 Endometrial Endometrioid Adenocarcinoma, Variant with Squamous Differentiation 8 168522 -NCIT:C40153 Endometrial Mixed Cell Adenocarcinoma 6 168523 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 7 168524 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 7 168525 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 7 168526 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 6 168527 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 7 168528 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 8 168529 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 7 168530 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 8 168531 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 8 168532 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 7 168533 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 8 168534 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 8 168535 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 7 168536 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 8 168537 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 7 168538 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 7 168539 -NCIT:C7676 Adenocarcinoma in Adenomatous Polyp 5 168540 -NCIT:C162531 Invasive Adenocarcinoma in Adenomatous Polyp 6 168541 -NCIT:C4136 Adenocarcinoma in Multiple Adenomatous Polyps 6 168542 -NCIT:C4134 Adenocarcinoma in Adenomatous Polyposis Coli 7 168543 -NCIT:C4141 Adenocarcinoma in Villous Adenoma 6 168544 -NCIT:C8376 Adenocarcinoma In Situ in Villous Adenoma 7 168545 -NCIT:C4145 Adenocarcinoma in Tubulovillous Adenoma 6 168546 -NCIT:C4144 Adenocarcinoma In Situ in Tubulovillous Adenoma 7 168547 -NCIT:C7677 Adenocarcinoma in Tubular Adenoma 6 168548 -NCIT:C7679 Adenocarcinoma In Situ in Tubular Adenoma 7 168549 -NCIT:C7678 Adenocarcinoma In Situ in Adenomatous Polyp 6 168550 -NCIT:C4144 Adenocarcinoma In Situ in Tubulovillous Adenoma 7 168551 -NCIT:C7679 Adenocarcinoma In Situ in Tubular Adenoma 7 168552 -NCIT:C8376 Adenocarcinoma In Situ in Villous Adenoma 7 168553 -NCIT:C7700 Ovarian Adenocarcinoma 5 168554 -NCIT:C153614 Recurrent Ovarian Adenocarcinoma 6 168555 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 7 168556 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 7 168557 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 8 168558 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 8 168559 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 8 168560 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 7 168561 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 7 168562 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 8 168563 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 7 168564 -NCIT:C170968 Refractory Ovarian Adenocarcinoma 6 168565 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 7 168566 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 7 168567 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 8 168568 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 8 168569 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 7 168570 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 7 168571 -NCIT:C179208 Ovarian Signet Ring Cell Carcinoma 6 168572 -NCIT:C179321 Ovarian Mesonephric-Like Adenocarcinoma 6 168573 -NCIT:C179339 Ovarian Mixed Cell Adenocarcinoma 6 168574 -NCIT:C40078 Ovarian Clear Cell Adenocarcinoma 6 168575 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 7 168576 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 7 168577 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 168578 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 7 168579 -NCIT:C7980 Ovarian Clear Cell Cystadenocarcinoma 7 168580 -NCIT:C5228 Ovarian Cystadenocarcinoma 6 168581 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 7 168582 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 8 168583 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 7 168584 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 7 168585 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 8 168586 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 168587 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 168588 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 8 168589 -NCIT:C7980 Ovarian Clear Cell Cystadenocarcinoma 7 168590 -NCIT:C5243 Ovarian Mucinous Adenocarcinoma 6 168591 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 7 168592 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 7 168593 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 7 168594 -NCIT:C183245 Unresectable Ovarian Mucinous Adenocarcinoma 7 168595 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 7 168596 -NCIT:C7550 Ovarian Serous Adenocarcinoma 6 168597 -NCIT:C105555 Ovarian High Grade Serous Adenocarcinoma 7 168598 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 8 168599 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 8 168600 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 8 168601 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 168602 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 8 168603 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 168604 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 168605 -NCIT:C105556 Ovarian Low Grade Serous Adenocarcinoma 7 168606 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 8 168607 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 8 168608 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 7 168609 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 8 168610 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 8 168611 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 8 168612 -NCIT:C160781 Unresectable Ovarian Serous Adenocarcinoma 7 168613 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 8 168614 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 168615 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 7 168616 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 168617 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 168618 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 168619 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 8 168620 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 168621 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 168622 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 8 168623 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 168624 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 168625 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 168626 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 168627 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 168628 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 7 168629 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 8 168630 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 8 168631 -NCIT:C6256 Ovarian Serous Surface Papillary Adenocarcinoma 7 168632 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 7 168633 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 8 168634 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 168635 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 168636 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 8 168637 -NCIT:C7979 Ovarian Endometrioid Adenocarcinoma 6 168638 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 7 168639 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 7 168640 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 7 168641 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 168642 -NCIT:C186273 Unresectable Ovarian Endometrioid Adenocarcinoma 7 168643 -NCIT:C40061 Ovarian Endometrioid Adenocarcinoma with Squamous Differentiation 7 168644 -NCIT:C7718 Appendix Adenocarcinoma 5 168645 -NCIT:C179174 Recurrent Appendix Adenocarcinoma 6 168646 -NCIT:C153579 Recurrent Appendix Mucinous Adenocarcinoma 7 168647 -NCIT:C179178 Refractory Appendix Adenocarcinoma 6 168648 -NCIT:C182104 Metastatic Appendix Adenocarcinoma 6 168649 -NCIT:C162274 Metastatic Appendix Mucinous Adenocarcinoma 7 168650 -NCIT:C182105 Advanced Appendix Adenocarcinoma 7 168651 -NCIT:C43554 Appendix Signet Ring Cell Carcinoma 6 168652 -NCIT:C43558 Appendix Mucinous Adenocarcinoma 6 168653 -NCIT:C153579 Recurrent Appendix Mucinous Adenocarcinoma 7 168654 -NCIT:C162274 Metastatic Appendix Mucinous Adenocarcinoma 7 168655 -NCIT:C5511 Appendix Mucinous Cystadenocarcinoma 7 168656 -NCIT:C7888 Small Intestinal Adenocarcinoma 5 168657 -NCIT:C133893 Small Intestinal Adenocarcinoma by AJCC v8 Stage 6 168658 -NCIT:C133894 Stage 0 Small Intestinal Adenocarcinoma AJCC v8 7 168659 -NCIT:C133895 Stage I Small Intestinal Adenocarcinoma AJCC v8 7 168660 -NCIT:C133896 Stage II Small Intestinal Adenocarcinoma AJCC v8 7 168661 -NCIT:C133897 Stage IIA Small Intestinal Adenocarcinoma AJCC v8 8 168662 -NCIT:C133898 Stage IIB Small Intestinal Adenocarcinoma AJCC v8 8 168663 -NCIT:C133899 Stage III Small Intestinal Adenocarcinoma AJCC v8 7 168664 -NCIT:C133900 Stage IIIA Small Intestinal Adenocarcinoma AJCC v8 8 168665 -NCIT:C133901 Stage IIIB Small Intestinal Adenocarcinoma AJCC v8 8 168666 -NCIT:C133902 Stage IV Small Intestinal Adenocarcinoma AJCC v8 7 168667 -NCIT:C175516 Unresectable Small Intestinal Adenocarcinoma 6 168668 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 7 168669 -NCIT:C181158 Jejunal Adenocarcinoma 6 168670 -NCIT:C43536 Small Intestinal Mucinous Adenocarcinoma 6 168671 -NCIT:C43543 Small Intestinal Signet Ring Cell Carcinoma 6 168672 -NCIT:C7889 Duodenal Adenocarcinoma 6 168673 -NCIT:C27322 Periampullary Adenocarcinoma 7 168674 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 8 168675 -NCIT:C169108 Resectable Periampullary Adenocarcinoma 8 168676 -NCIT:C8934 Metastatic Small Intestinal Adenocarcinoma 6 168677 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 7 168678 -NCIT:C7981 Vaginal Adenocarcinoma 5 168679 -NCIT:C180943 Human Papillomavirus-Related Vaginal Adenocarcinoma 6 168680 -NCIT:C180947 Vaginal Adenocarcinoma of Skene Gland Origin 6 168681 -NCIT:C40251 Vaginal Endometrioid Adenocarcinoma 6 168682 -NCIT:C40252 Vaginal Mucinous Adenocarcinoma 6 168683 -NCIT:C180945 Vaginal Mucinous Adenocarcinoma, Gastric-Type 7 168684 -NCIT:C180946 Vaginal Mucinous Adenocarcinoma, Intestinal-Type 7 168685 -NCIT:C40253 Vaginal Mesonephric Adenocarcinoma 6 168686 -NCIT:C7735 Vaginal Clear Cell Adenocarcinoma 6 168687 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 6 168688 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 7 168689 -NCIT:C8021 Salivary Gland Adenocarcinoma 5 168690 -NCIT:C123384 Salivary Gland Secretory Carcinoma 6 168691 -NCIT:C173648 Salivary Gland Sebaceous Carcinoma 6 168692 -NCIT:C35702 Salivary Gland Polymorphous Adenocarcinoma 6 168693 -NCIT:C173576 Oropharyngeal Polymorphous Adenocarcinoma 7 168694 -NCIT:C3678 Salivary Gland Basal Cell Adenocarcinoma 6 168695 -NCIT:C5903 Major Salivary Gland Adenocarcinoma 6 168696 -NCIT:C5901 Major Salivary Gland Acinic Cell Carcinoma 7 168697 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 8 168698 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 9 168699 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 8 168700 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 9 168701 -NCIT:C5940 Submandibular Gland Adenocarcinoma 7 168702 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 8 168703 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 9 168704 -NCIT:C5941 Parotid Gland Adenocarcinoma 7 168705 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 8 168706 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 9 168707 -NCIT:C5958 Sublingual Gland Adenocarcinoma 7 168708 -NCIT:C5904 Salivary Duct Carcinoma 6 168709 -NCIT:C153611 Recurrent Salivary Duct Carcinoma 7 168710 -NCIT:C5948 Minor Salivary Gland Adenocarcinoma 6 168711 -NCIT:C153612 Recurrent Minor Salivary Gland Adenocarcinoma 7 168712 -NCIT:C160974 Cribriform Adenocarcinoma of Minor Salivary Gland 7 168713 -NCIT:C6243 Minor Salivary Gland Acinic Cell Carcinoma 7 168714 -NCIT:C5980 Salivary Gland Cystadenocarcinoma 6 168715 -NCIT:C62192 Salivary Gland Intraductal Carcinoma 6 168716 -NCIT:C62193 Salivary Gland Mucinous Adenocarcinoma 6 168717 -NCIT:C62194 Salivary Gland Oncocytic Carcinoma 6 168718 -NCIT:C62196 Salivary Gland Adenocarcinoma, Not Otherwise Specified 6 168719 -NCIT:C8013 Salivary Gland Acinic Cell Carcinoma 6 168720 -NCIT:C190274 Childhood Salivary Gland Acinic Cell Carcinoma 7 168721 -NCIT:C5901 Major Salivary Gland Acinic Cell Carcinoma 7 168722 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 8 168723 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 9 168724 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 8 168725 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 9 168726 -NCIT:C6243 Minor Salivary Gland Acinic Cell Carcinoma 7 168727 -NCIT:C8294 Pancreatic Adenocarcinoma 5 168728 -NCIT:C155742 Recurrent Pancreatic Adenocarcinoma 6 168729 -NCIT:C153569 Recurrent Pancreatic Acinar Cell Carcinoma 7 168730 -NCIT:C153619 Recurrent Pancreatic Ductal Adenocarcinoma 7 168731 -NCIT:C153620 Recurrent Pancreatic Cystadenocarcinoma 7 168732 -NCIT:C156906 Resectable Pancreatic Adenocarcinoma 6 168733 -NCIT:C151995 Resectable Pancreatic Ductal Adenocarcinoma 7 168734 -NCIT:C156907 Resectable Pancreatic Acinar Cell Carcinoma 7 168735 -NCIT:C157350 Borderline Resectable Pancreatic Adenocarcinoma 7 168736 -NCIT:C162015 Refractory Pancreatic Adenocarcinoma 6 168737 -NCIT:C165450 Refractory Pancreatic Ductal Adenocarcinoma 7 168738 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 7 168739 -NCIT:C162016 Unresectable Pancreatic Adenocarcinoma 6 168740 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 7 168741 -NCIT:C172245 Unresectable Pancreatic Ductal Adenocarcinoma 7 168742 -NCIT:C169041 Localized Pancreatic Adenocarcinoma 6 168743 -NCIT:C189009 Localized Pancreatic Ductal Adenocarcinoma 7 168744 -NCIT:C172813 Invasive Pancreatic Micropapillary Adenocarcinoma 6 168745 -NCIT:C3874 Pancreatic Cystadenocarcinoma 6 168746 -NCIT:C153620 Recurrent Pancreatic Cystadenocarcinoma 7 168747 -NCIT:C5724 Pancreatic Serous Cystadenocarcinoma 7 168748 -NCIT:C5727 Pancreatic Acinar Cell Cystadenocarcinoma 7 168749 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 8 168750 -NCIT:C5726 Pancreatic Intraductal Papillary-Mucinous Neoplasm with an Associated Invasive Carcinoma 6 168751 -NCIT:C7977 Pancreatic Acinar Cell Carcinoma 6 168752 -NCIT:C153569 Recurrent Pancreatic Acinar Cell Carcinoma 7 168753 -NCIT:C156907 Resectable Pancreatic Acinar Cell Carcinoma 7 168754 -NCIT:C190024 Childhood Pancreatic Acinar Cell Carcinoma 7 168755 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 8 168756 -NCIT:C5727 Pancreatic Acinar Cell Cystadenocarcinoma 7 168757 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 8 168758 -NCIT:C8933 Metastatic Pancreatic Adenocarcinoma 6 168759 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 7 168760 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 8 168761 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 8 168762 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 7 168763 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 8 168764 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 8 168765 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 8 168766 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 7 168767 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 8 168768 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 7 168769 -NCIT:C9120 Pancreatic Ductal Adenocarcinoma 6 168770 -NCIT:C151995 Resectable Pancreatic Ductal Adenocarcinoma 7 168771 -NCIT:C153619 Recurrent Pancreatic Ductal Adenocarcinoma 7 168772 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 7 168773 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 8 168774 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 8 168775 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 8 168776 -NCIT:C158961 Early Stage Pancreatic Ductal Adenocarcinoma 7 168777 -NCIT:C165450 Refractory Pancreatic Ductal Adenocarcinoma 7 168778 -NCIT:C172245 Unresectable Pancreatic Ductal Adenocarcinoma 7 168779 -NCIT:C172811 Pancreatic Poorly Cohesive Adenocarcinoma 7 168780 -NCIT:C5720 Pancreatic Signet Ring Cell Carcinoma 8 168781 -NCIT:C189009 Localized Pancreatic Ductal Adenocarcinoma 7 168782 -NCIT:C37214 Pancreatic Colloid Carcinoma 7 168783 -NCIT:C37256 Pancreatic Foamy Gland Adenocarcinoma 7 168784 -NCIT:C5722 Pancreatic Undifferentiated Carcinoma 7 168785 -NCIT:C172812 Pancreatic Undifferentiated Carcinoma with Rhabdoid Cells 8 168786 -NCIT:C5723 Pancreatic Undifferentiated Carcinoma with Osteoclast-Like Giant Cells 8 168787 -NCIT:C95426 Pancreatic Well Differentiated Ductal Adenocarcinoma 7 168788 -NCIT:C95427 Pancreatic Moderately Differentiated Ductal Adenocarcinoma 7 168789 -NCIT:C95428 Pancreatic Poorly Differentiated Ductal Adenocarcinoma 7 168790 -NCIT:C95465 Pancreatic Hepatoid Adenocarcinoma 7 168791 -NCIT:C95466 Pancreatic Medullary Carcinoma 7 168792 -NCIT:C95458 Pancreatic Mixed Acinar-Ductal Carcinoma 6 168793 -NCIT:C95507 Pancreatic Intraductal Tubulopapillary Neoplasm with an Associated Invasive Carcinoma 6 168794 -NCIT:C8955 Rete Testis Adenocarcinoma 5 168795 -NCIT:C9166 Gallbladder Adenocarcinoma 5 168796 -NCIT:C189064 Unresectable Gallbladder Adenocarcinoma 6 168797 -NCIT:C43604 Gallbladder Adenocarcinoma, Intestinal-Type 6 168798 -NCIT:C43605 Gallbladder Clear Cell Adenocarcinoma 6 168799 -NCIT:C5743 Gallbladder Intracholecystic Papillary Neoplasm with an Associated Invasive Carcinoma 6 168800 -NCIT:C5744 Gallbladder Mucinous Adenocarcinoma 6 168801 -NCIT:C5745 Gallbladder Signet Ring Cell Carcinoma 6 168802 -NCIT:C9169 Gallbladder Adenocarcinoma with Squamous Metaplasia 6 168803 -NCIT:C96887 Gallbladder Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 6 168804 -NCIT:C96890 Gallbladder Hepatoid Adenocarcinoma 6 168805 -NCIT:C96891 Gallbladder Cribriform Carcinoma 6 168806 -NCIT:C96915 Gallbladder Adenocarcinoma, Biliary Type 6 168807 -NCIT:C96916 Gallbladder Adenocarcinoma, Gastric Foveolar Type 6 168808 -NCIT:C9296 Gastroesophageal Junction Adenocarcinoma 5 168809 -NCIT:C133548 Gastroesophageal Junction Adenocarcinoma by AJCC v8 Stage 6 168810 -NCIT:C133549 Gastroesophageal Junction Adenocarcinoma by AJCC v8 Clinical Stage 7 168811 -NCIT:C133550 Clinical Stage 0 Gastroesophageal Junction Adenocarcinoma AJCC v8 8 168812 -NCIT:C133552 Clinical Stage I Gastroesophageal Junction Adenocarcinoma AJCC v8 8 168813 -NCIT:C133553 Clinical Stage II Gastroesophageal Junction Adenocarcinoma AJCC v8 8 168814 -NCIT:C133554 Clinical Stage IIA Gastroesophageal Junction Adenocarcinoma AJCC v8 9 168815 -NCIT:C133555 Clinical Stage IIB Gastroesophageal Junction Adenocarcinoma AJCC v8 9 168816 -NCIT:C133556 Clinical Stage III Gastroesophageal Junction Adenocarcinoma AJCC v8 8 168817 -NCIT:C133557 Clinical Stage IV Gastroesophageal Junction Adenocarcinoma AJCC v8 8 168818 -NCIT:C133558 Clinical Stage IVA Gastroesophageal Junction Adenocarcinoma AJCC v8 9 168819 -NCIT:C133560 Clinical Stage IVB Gastroesophageal Junction Adenocarcinoma AJCC v8 9 168820 -NCIT:C133563 Gastroesophageal Junction Adenocarcinoma by AJCC v8 Pathologic Stage 7 168821 -NCIT:C133564 Pathologic Stage 0 Gastroesophageal Junction Adenocarcinoma AJCC v8 8 168822 -NCIT:C133565 Pathologic Stage I Gastroesophageal Junction Adenocarcinoma AJCC v8 8 168823 -NCIT:C133566 Pathologic Stage IA Gastroesophageal Junction Adenocarcinoma AJCC v8 9 168824 -NCIT:C133567 Pathologic Stage IB Gastroesophageal Junction Adenocarcinoma AJCC v8 9 168825 -NCIT:C133568 Pathologic Stage IC Gastroesophageal Junction Adenocarcinoma AJCC v8 9 168826 -NCIT:C133570 Pathologic Stage II Gastroesophageal Junction Adenocarcinoma AJCC v8 8 168827 -NCIT:C133572 Pathologic Stage IIA Gastroesophageal Junction Adenocarcinoma AJCC v8 9 168828 -NCIT:C133573 Pathologic Stage IIB Gastroesophageal Junction Adenocarcinoma AJCC v8 9 168829 -NCIT:C133575 Pathologic Stage III Gastroesophageal Junction Adenocarcinoma AJCC v8 8 168830 -NCIT:C133577 Pathologic Stage IIIA Gastroesophageal Junction Adenocarcinoma AJCC v8 9 168831 -NCIT:C133579 Pathologic Stage IIIB Gastroesophageal Junction Adenocarcinoma AJCC v8 9 168832 -NCIT:C133580 Pathologic Stage IV Gastroesophageal Junction Adenocarcinoma AJCC v8 8 168833 -NCIT:C133581 Pathologic Stage IVA Gastroesophageal Junction Adenocarcinoma AJCC v8 9 168834 -NCIT:C133582 Pathologic Stage IVB Gastroesophageal Junction Adenocarcinoma AJCC v8 9 168835 -NCIT:C133583 Gastroesophageal Junction Adenocarcinoma by AJCC v8 Postneoadjuvant Therapy Stage 7 168836 -NCIT:C133584 Postneoadjuvant Therapy Stage I Gastroesophageal Junction Adenocarcinoma AJCC v8 8 168837 -NCIT:C133585 Postneoadjuvant Therapy Stage II Gastroesophageal Junction Adenocarcinoma AJCC v8 8 168838 -NCIT:C133586 Postneoadjuvant Therapy Stage III Gastroesophageal Junction Adenocarcinoma AJCC v8 8 168839 -NCIT:C133587 Postneoadjuvant Therapy Stage IIIA Gastroesophageal Junction Adenocarcinoma AJCC v8 9 168840 -NCIT:C133588 Postneoadjuvant Therapy Stage IIIB Gastroesophageal Junction Adenocarcinoma AJCC v8 9 168841 -NCIT:C133589 Postneoadjuvant Therapy Stage IV Gastroesophageal Junction Adenocarcinoma AJCC v8 8 168842 -NCIT:C133590 Postneoadjuvant Therapy Stage IVA Gastroesophageal Junction Adenocarcinoma AJCC v8 9 168843 -NCIT:C133591 Postneoadjuvant Therapy Stage IVB Gastroesophageal Junction Adenocarcinoma AJCC v8 9 168844 -NCIT:C150577 Metastatic Gastroesophageal Junction Adenocarcinoma 6 168845 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 7 168846 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 7 168847 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 168848 -NCIT:C150578 Unresectable Gastroesophageal Junction Adenocarcinoma 6 168849 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 7 168850 -NCIT:C153359 Recurrent Gastroesophageal Junction Adenocarcinoma 6 168851 -NCIT:C156166 Localized Gastroesophageal Junction Adenocarcinoma 6 168852 -NCIT:C162538 Refractory Gastroesophageal Junction Adenocarcinoma 6 168853 -NCIT:C9325 Adrenal Cortical Carcinoma 5 168854 -NCIT:C104030 Adrenal Cortical Carcinoma by ENSAT Stage 6 168855 -NCIT:C104031 ENSAT Stage I Adrenal Cortical Carcinoma 7 168856 -NCIT:C104032 ENSAT Stage II Adrenal Cortical Carcinoma 7 168857 -NCIT:C104033 ENSAT Stage III Adrenal Cortical Carcinoma 7 168858 -NCIT:C104034 ENSAT Stage IV Adrenal Cortical Carcinoma 7 168859 -NCIT:C141098 Adrenal Cortical Carcinoma by AJCC v7 Stage 6 168860 -NCIT:C9214 Stage I Adrenal Cortical Carcinoma AJCC v7 7 168861 -NCIT:C9215 Stage II Adrenal Cortical Carcinoma AJCC v7 7 168862 -NCIT:C9216 Stage III Adrenal Cortical Carcinoma AJCC v7 7 168863 -NCIT:C9217 Stage IV Adrenal Cortical Carcinoma AJCC v7 7 168864 -NCIT:C141100 Adrenal Cortical Carcinoma by AJCC v8 Stage 6 168865 -NCIT:C141101 Stage I Adrenal Cortical Carcinoma AJCC v8 7 168866 -NCIT:C141102 Stage II Adrenal Cortical Carcinoma AJCC v8 7 168867 -NCIT:C141103 Stage III Adrenal Cortical Carcinoma AJCC v8 7 168868 -NCIT:C141104 Stage IV Adrenal Cortical Carcinoma AJCC v8 7 168869 -NCIT:C150580 Unresectable Adrenal Cortical Carcinoma 6 168870 -NCIT:C156070 Metastatic Adrenal Cortical Carcinoma 6 168871 -NCIT:C174443 Locally Advanced Adrenal Cortical Carcinoma 7 168872 -NCIT:C191863 Advanced Adrenal Cortical Carcinoma 7 168873 -NCIT:C188036 Refractory Adrenal Cortical Carcinoma 6 168874 -NCIT:C188181 Adrenal Cortical Oncocytic Carcinoma 6 168875 -NCIT:C188182 Adrenal Cortical Myxoid Carcinoma 6 168876 -NCIT:C188183 Adrenal Cortical High Grade Carcinoma 6 168877 -NCIT:C190069 Childhood Adrenal Cortical Carcinoma 6 168878 -NCIT:C6417 Recurrent Adrenal Cortical Carcinoma 6 168879 -NCIT:C68635 Adrenal Cortical Low Grade Carcinoma 6 168880 -NCIT:C68644 Adrenal Cortical Sarcomatoid Carcinoma 6 168881 -NCIT:C9385 Renal Cell Carcinoma 5 168882 -NCIT:C100051 Renal Cell Carcinoma Associated with Neuroblastoma 6 168883 -NCIT:C126303 Tubulocystic Renal Cell Carcinoma 6 168884 -NCIT:C140322 Renal Cell Cancer by AJCC v8 Stage 6 168885 -NCIT:C140323 Stage I Renal Cell Cancer AJCC v8 7 168886 -NCIT:C140324 Stage II Renal Cell Cancer AJCC v8 7 168887 -NCIT:C140325 Stage III Renal Cell Cancer AJCC v8 7 168888 -NCIT:C140326 Stage IV Renal Cell Cancer AJCC v8 7 168889 -NCIT:C150359 Bilateral Synchronous Sporadic Renal Cell Carcinoma 6 168890 -NCIT:C150595 Metastatic Renal Cell Carcinoma 6 168891 -NCIT:C153170 Advanced Renal Cell Carcinoma 7 168892 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 8 168893 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 8 168894 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 8 168895 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 8 168896 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 8 168897 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 7 168898 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 8 168899 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 8 168900 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 7 168901 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 8 168902 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 8 168903 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 7 168904 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 8 168905 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 8 168906 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 7 168907 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 8 168908 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 8 168909 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 8 168910 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 8 168911 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 8 168912 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 8 168913 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 7 168914 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 8 168915 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 8 168916 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 7 168917 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 8 168918 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 8 168919 -NCIT:C154494 Renal Cell Carcinoma with MiT Translocations 6 168920 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 7 168921 -NCIT:C27891 TFE3-Rearranged Renal Cell Carcinoma 7 168922 -NCIT:C37872 Renal Cell Carcinoma Associated with t(X;1)(p11.2;q21) 8 168923 -NCIT:C37874 Renal Cell Carcinoma Associated with t(X;1)(p11.2;p34) 8 168924 -NCIT:C37876 Renal Cell Carcinoma Associated with t(X;17)(p11.2;q25) 8 168925 -NCIT:C39802 Renal Cell Carcinoma Associated with inv(X)(p11;q12) 8 168926 -NCIT:C37210 TFEB-Rearranged Renal Cell Carcinoma 7 168927 -NCIT:C154545 Unresectable Renal Cell Carcinoma 6 168928 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 7 168929 -NCIT:C165449 Unresectable Clear Cell Renal Cell Carcinoma 7 168930 -NCIT:C183251 Unresectable Sarcomatoid Renal Cell Carcinoma 7 168931 -NCIT:C190505 Unresectable Papillary Renal Cell Carcinoma 7 168932 -NCIT:C190508 Unresectable Unclassified Renal Cell Carcinoma 7 168933 -NCIT:C154547 Resectable Renal Cell Carcinoma 6 168934 -NCIT:C156464 Succinate Dehydrogenase-Deficient Renal Cell Carcinoma 6 168935 -NCIT:C157718 Acquired Cystic Disease-Associated Renal Cell Carcinoma 6 168936 -NCIT:C164156 Fumarate Hydratase-Deficient Renal Cell Carcinoma 6 168937 -NCIT:C165745 Refractory Renal Cell Carcinoma 6 168938 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 7 168939 -NCIT:C189249 ALK-Rearranged Renal Cell Carcinoma 6 168940 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 7 168941 -NCIT:C189254 Eosinophilic Solid and Cystic Renal Cell Carcinoma 6 168942 -NCIT:C189255 Childhood Eosinophilic Solid and Cystic Renal Cell Carcinoma 7 168943 -NCIT:C191370 Renal Cell Carcinoma, Not Otherwise Specified 6 168944 -NCIT:C191375 ELOC-Mutated Renal Cell Carcinoma 6 168945 -NCIT:C27638 Transplant-Related Renal Cell Carcinoma 6 168946 -NCIT:C27892 Unclassified Renal Cell Carcinoma 6 168947 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 7 168948 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 8 168949 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 8 168950 -NCIT:C190508 Unresectable Unclassified Renal Cell Carcinoma 7 168951 -NCIT:C27893 Sarcomatoid Renal Cell Carcinoma 6 168952 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 7 168953 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 8 168954 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 8 168955 -NCIT:C183251 Unresectable Sarcomatoid Renal Cell Carcinoma 7 168956 -NCIT:C39789 Hereditary Renal Cell Carcinoma 6 168957 -NCIT:C36260 Hereditary Clear Cell Renal Cell Carcinoma 7 168958 -NCIT:C39790 Renal Cell Carcinoma with Constitutional Chromosome 3 Translocations 7 168959 -NCIT:C51302 Hereditary Leiomyomatosis and Renal Cell Carcinoma 7 168960 -NCIT:C9222 Hereditary Papillary Renal Cell Carcinoma 7 168961 -NCIT:C4033 Clear Cell Renal Cell Carcinoma 6 168962 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 7 168963 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 8 168964 -NCIT:C157614 BAP1-Mutant Clear Cell Renal Cell Carcinoma 7 168965 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 7 168966 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 8 168967 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 8 168968 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 7 168969 -NCIT:C165449 Unresectable Clear Cell Renal Cell Carcinoma 7 168970 -NCIT:C35851 Grade 1 Clear Cell Renal Cell Carcinoma 7 168971 -NCIT:C35852 Grade 2 Clear Cell Renal Cell Carcinoma 7 168972 -NCIT:C35853 Grade 3 Clear Cell Renal Cell Carcinoma 7 168973 -NCIT:C35854 Grade 4 Clear Cell Renal Cell Carcinoma 7 168974 -NCIT:C36260 Hereditary Clear Cell Renal Cell Carcinoma 7 168975 -NCIT:C36261 Non-Hereditary Clear Cell Renal Cell Carcinoma 7 168976 -NCIT:C4146 Chromophobe Renal Cell Carcinoma 6 168977 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 7 168978 -NCIT:C155951 Chromophobe Renal Cell Carcinoma Associated with Birt-Hogg-Dube Syndrome 7 168979 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 7 168980 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 8 168981 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 8 168982 -NCIT:C27888 Classic Variant of Chromophobe Renal Cell Carcinoma 7 168983 -NCIT:C27889 Eosinophilic Variant of Chromophobe Renal Cell Carcinoma 7 168984 -NCIT:C6568 Childhood Renal Cell Carcinoma 6 168985 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 7 168986 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 7 168987 -NCIT:C189255 Childhood Eosinophilic Solid and Cystic Renal Cell Carcinoma 7 168988 -NCIT:C6975 Papillary Renal Cell Carcinoma 6 168989 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 7 168990 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 8 168991 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 8 168992 -NCIT:C190505 Unresectable Papillary Renal Cell Carcinoma 7 168993 -NCIT:C27886 Type 1 Papillary Renal Cell Carcinoma 7 168994 -NCIT:C27887 Type 2 Papillary Renal Cell Carcinoma 7 168995 -NCIT:C27890 Sporadic Papillary Renal Cell Carcinoma 7 168996 -NCIT:C9222 Hereditary Papillary Renal Cell Carcinoma 7 168997 -NCIT:C7825 Recurrent Renal Cell Carcinoma 6 168998 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 7 168999 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 8 169000 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 7 169001 -NCIT:C90343 Renal Cell Cancer by AJCC v6 Stage 6 169002 -NCIT:C4003 Stage IV Renal Cell Cancer AJCC v6 7 169003 -NCIT:C7823 Stage I Renal Cell Cancer AJCC v6 and v7 7 169004 -NCIT:C7824 Stage II Renal Cell Cancer AJCC v6 7 169005 -NCIT:C9220 Stage III Renal Cell Cancer AJCC v6 7 169006 -NCIT:C91201 Renal Cell Cancer by AJCC v7 Stage 6 169007 -NCIT:C7823 Stage I Renal Cell Cancer AJCC v6 and v7 7 169008 -NCIT:C89301 Stage II Renal Cell Cancer AJCC v7 7 169009 -NCIT:C89302 Stage III Renal Cell Cancer AJCC v7 7 169010 -NCIT:C89303 Stage IV Renal Cell Cancer AJCC v7 7 169011 -NCIT:C95397 Intramucosal Adenocarcinoma 5 169012 -NCIT:C161906 Esophageal Intramucosal Adenocarcinoma 6 169013 -NCIT:C45429 Colon Intramucosal Adenocarcinoma 6 169014 -NCIT:C27413 Adenoma of the Colon with Intramucosal Adenocarcinoma 7 169015 -NCIT:C95763 Gastric Intramucosal Adenocarcinoma 6 169016 -NCIT:C2972 Cystadenoma 4 169017 -NCIT:C161606 Prostate Cystadenoma 5 169018 -NCIT:C162483 Epididymal Cystadenoma 5 169019 -NCIT:C155953 Epididymal Papillary Cystadenoma 6 169020 -NCIT:C2973 Mucinous Cystadenoma 5 169021 -NCIT:C4184 Papillary Mucinous Cystadenoma 6 169022 -NCIT:C4186 Borderline Papillary Mucinous Cystadenoma 7 169023 -NCIT:C4512 Ovarian Mucinous Cystadenoma 6 169024 -NCIT:C45604 Lung Mucinous Cystadenoma 6 169025 -NCIT:C5510 Appendix Mucinous Cystadenoma 6 169026 -NCIT:C2974 Papillary Cystadenoma 5 169027 -NCIT:C155952 Uterine Ligament Papillary Cystadenoma 6 169028 -NCIT:C179921 Broad Ligament Papillary Cystadenoma 7 169029 -NCIT:C40142 Uterine Ligament Papillary Cystadenoma Associated with von Hippel-Lindau Disease 7 169030 -NCIT:C155953 Epididymal Papillary Cystadenoma 6 169031 -NCIT:C4178 Borderline Papillary Cystadenoma 6 169032 -NCIT:C4183 Borderline Papillary Serous Cystadenoma 7 169033 -NCIT:C4186 Borderline Papillary Mucinous Cystadenoma 7 169034 -NCIT:C4180 Papillary Serous Cystadenoma 6 169035 -NCIT:C4183 Borderline Papillary Serous Cystadenoma 7 169036 -NCIT:C7278 Ovarian Papillary Cystadenoma 7 169037 -NCIT:C4184 Papillary Mucinous Cystadenoma 6 169038 -NCIT:C4186 Borderline Papillary Mucinous Cystadenoma 7 169039 -NCIT:C65203 Clear Cell Papillary Cystadenoma 6 169040 -NCIT:C35833 Salivary Gland Cystadenoma 5 169041 -NCIT:C3783 Serous Cystadenoma 5 169042 -NCIT:C126476 Broad Ligament Serous Cystadenoma 6 169043 -NCIT:C4177 Borderline Serous Cystadenoma 6 169044 -NCIT:C4183 Borderline Papillary Serous Cystadenoma 7 169045 -NCIT:C4180 Papillary Serous Cystadenoma 6 169046 -NCIT:C4183 Borderline Papillary Serous Cystadenoma 7 169047 -NCIT:C7278 Ovarian Papillary Cystadenoma 7 169048 -NCIT:C4511 Ovarian Serous Cystadenoma 6 169049 -NCIT:C7278 Ovarian Papillary Cystadenoma 7 169050 -NCIT:C5712 Pancreatic Serous Cystadenoma 6 169051 -NCIT:C95471 Pancreatic Macrocystic Serous Cystadenoma 6 169052 -NCIT:C39907 Seminal Vesicle Cystadenoma 5 169053 -NCIT:C40019 Rete Ovarii Cystadenoma 5 169054 -NCIT:C4060 Ovarian Cystadenoma 5 169055 -NCIT:C126310 Ovarian Seromucinous Cystadenoma 6 169056 -NCIT:C40075 Ovarian Endometrioid Cystadenoma 6 169057 -NCIT:C4511 Ovarian Serous Cystadenoma 6 169058 -NCIT:C7278 Ovarian Papillary Cystadenoma 7 169059 -NCIT:C4512 Ovarian Mucinous Cystadenoma 6 169060 -NCIT:C4374 Pancreatic Cystadenoma 5 169061 -NCIT:C5712 Pancreatic Serous Cystadenoma 6 169062 -NCIT:C95471 Pancreatic Macrocystic Serous Cystadenoma 6 169063 -NCIT:C4711 Borderline Cystadenoma 5 169064 -NCIT:C4177 Borderline Serous Cystadenoma 6 169065 -NCIT:C4183 Borderline Papillary Serous Cystadenoma 7 169066 -NCIT:C4178 Borderline Papillary Cystadenoma 6 169067 -NCIT:C4183 Borderline Papillary Serous Cystadenoma 7 169068 -NCIT:C4186 Borderline Papillary Mucinous Cystadenoma 7 169069 -NCIT:C40018 Rete Ovarii Adenoma 4 169070 -NCIT:C40210 Cervical Glandular Neoplasm 4 169071 -NCIT:C180860 Cervical Stratified Mucin-Producing Intraepithelial Lesion 5 169072 -NCIT:C34584 Endocervical Polyp 5 169073 -NCIT:C6856 Cervical Microglandular Polyp 6 169074 -NCIT:C40215 Cervical Mullerian Papilloma 5 169075 -NCIT:C4029 Cervical Adenocarcinoma 5 169076 -NCIT:C127915 Cervical Adenocarcinoma Admixed with Neuroendocrine Carcinoma 6 169077 -NCIT:C136651 Recurrent Cervical Adenocarcinoma 6 169078 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 7 169079 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 6 169080 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 7 169081 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 8 169082 -NCIT:C156304 Advanced Cervical Adenocarcinoma 7 169083 -NCIT:C174029 Unresectable Cervical Adenocarcinoma 6 169084 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 7 169085 -NCIT:C180848 Human Papillomavirus-Independent Cervical Adenocarcinoma 6 169086 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 7 169087 -NCIT:C40201 Cervical Serous Adenocarcinoma 7 169088 -NCIT:C40206 Human Papillomavirus-Independent Cervical Adenocarcinoma, Gastric-Type 7 169089 -NCIT:C40254 Cervical Mesonephric Adenocarcinoma 7 169090 -NCIT:C6343 Cervical Endometrioid Adenocarcinoma 7 169091 -NCIT:C6344 Human Papillomavirus-Independent Cervical Adenocarcinoma, Clear Cell-Type 7 169092 -NCIT:C180870 Cervical Adenocarcinoma, Not Otherwise Specified 6 169093 -NCIT:C181036 Refractory Cervical Adenocarcinoma 6 169094 -NCIT:C27677 Human Papillomavirus-Related Cervical Adenocarcinoma 6 169095 -NCIT:C127907 Endocervical Adenocarcinoma, Usual-Type 7 169096 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 8 169097 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 8 169098 -NCIT:C40208 Cervical Villoglandular Adenocarcinoma 8 169099 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 7 169100 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 7 169101 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 7 169102 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 7 169103 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 7 169104 -NCIT:C36095 Cervical Mucinous Adenocarcinoma 6 169105 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 7 169106 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 7 169107 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 7 169108 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 7 169109 -NCIT:C40206 Human Papillomavirus-Independent Cervical Adenocarcinoma, Gastric-Type 7 169110 -NCIT:C36096 Early Invasive Cervical Adenocarcinoma 6 169111 -NCIT:C4520 Cervical Adenocarcinoma In Situ 6 169112 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 7 169113 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 7 169114 -NCIT:C7673 Cervical Glandular Intraepithelial Neoplasia 5 169115 -NCIT:C7674 Low Grade Cervical Glandular Intraepithelial Neoplasia 6 169116 -NCIT:C7675 High Grade Cervical Glandular Intraepithelial Neoplasia 6 169117 -NCIT:C4520 Cervical Adenocarcinoma In Situ 7 169118 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 8 169119 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 8 169120 -NCIT:C40250 Vaginal Glandular Neoplasm 4 169121 -NCIT:C40255 Vaginal Mullerian Papilloma 5 169122 -NCIT:C40256 Vaginal Adenoma 5 169123 -NCIT:C40258 Vaginal Tubulovillous Adenoma 6 169124 -NCIT:C40259 Vaginal Villous Adenoma 6 169125 -NCIT:C7981 Vaginal Adenocarcinoma 5 169126 -NCIT:C180943 Human Papillomavirus-Related Vaginal Adenocarcinoma 6 169127 -NCIT:C180947 Vaginal Adenocarcinoma of Skene Gland Origin 6 169128 -NCIT:C40251 Vaginal Endometrioid Adenocarcinoma 6 169129 -NCIT:C40252 Vaginal Mucinous Adenocarcinoma 6 169130 -NCIT:C180945 Vaginal Mucinous Adenocarcinoma, Gastric-Type 7 169131 -NCIT:C180946 Vaginal Mucinous Adenocarcinoma, Intestinal-Type 7 169132 -NCIT:C40253 Vaginal Mesonephric Adenocarcinoma 6 169133 -NCIT:C7735 Vaginal Clear Cell Adenocarcinoma 6 169134 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 6 169135 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 7 169136 -NCIT:C40292 Vulvar Glandular Neoplasm 4 169137 -NCIT:C128240 Vulvar Hidradenoma Papilliferum 5 169138 -NCIT:C40299 Bartholin Gland Adenoma 5 169139 -NCIT:C40300 Bartholin Gland Adenomyoma 5 169140 -NCIT:C40301 Adenoma of Minor Vestibular Glands 5 169141 -NCIT:C6380 Vulvar Adenocarcinoma 5 169142 -NCIT:C128162 Vulvar Adenocarcinoma of Mammary Gland Type 6 169143 -NCIT:C128164 Vulvar Adenocarcinoma of Sweat Gland Origin 6 169144 -NCIT:C4027 Vulvar Paget Disease 7 169145 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 7 169146 -NCIT:C40306 Vulvar Porocarcinoma 8 169147 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 7 169148 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 7 169149 -NCIT:C128166 Vulvar Adenocarcinoma, Intestinal-Type 6 169150 -NCIT:C40309 Vulvar Sebaceous Carcinoma 6 169151 -NCIT:C7719 Bartholin Gland Adenocarcinoma 6 169152 -NCIT:C4197 Acinar Cell Neoplasm 4 169153 -NCIT:C3768 Acinar Cell Carcinoma 5 169154 -NCIT:C175290 Lacrimal Gland Acinic Cell Carcinoma 6 169155 -NCIT:C40367 Breast Acinic Cell Carcinoma 6 169156 -NCIT:C153568 Recurrent Breast Acinic Cell Carcinoma 7 169157 -NCIT:C5596 Prostate Acinar Adenocarcinoma 6 169158 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 7 169159 -NCIT:C158656 Usual Prostate Adenocarcinoma with Neuroendocrine Differentiation 7 169160 -NCIT:C160817 Prostate Acinar Adenocarcinoma, Microcystic Variant 7 169161 -NCIT:C160818 Prostate Acinar Adenocarcinoma, Pleomorphic Giant Cell Variant 7 169162 -NCIT:C39880 Prostate Acinar Adenocarcinoma, Atrophic Variant 7 169163 -NCIT:C39881 Prostate Acinar Adenocarcinoma, Pseudohyperplastic Variant 7 169164 -NCIT:C39882 Prostate Acinar Adenocarcinoma, Foamy Gland Variant 7 169165 -NCIT:C39884 Prostate Acinar Adenocarcinoma, Oncocytic Variant 7 169166 -NCIT:C39885 Prostate Acinar Adenocarcinoma, Lymphoepithelioma-Like Variant 7 169167 -NCIT:C5530 Prostate Acinar Adenocarcinoma, Sarcomatoid Variant 7 169168 -NCIT:C5535 Prostate Acinar Adenocarcinoma, Signet Ring-Like Cell Variant 7 169169 -NCIT:C5537 Prostate Acinar Mucinous Adenocarcinoma 7 169170 -NCIT:C7977 Pancreatic Acinar Cell Carcinoma 6 169171 -NCIT:C153569 Recurrent Pancreatic Acinar Cell Carcinoma 7 169172 -NCIT:C156907 Resectable Pancreatic Acinar Cell Carcinoma 7 169173 -NCIT:C190024 Childhood Pancreatic Acinar Cell Carcinoma 7 169174 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 8 169175 -NCIT:C5727 Pancreatic Acinar Cell Cystadenocarcinoma 7 169176 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 8 169177 -NCIT:C8013 Salivary Gland Acinic Cell Carcinoma 6 169178 -NCIT:C190274 Childhood Salivary Gland Acinic Cell Carcinoma 7 169179 -NCIT:C5901 Major Salivary Gland Acinic Cell Carcinoma 7 169180 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 8 169181 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 9 169182 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 8 169183 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 9 169184 -NCIT:C6243 Minor Salivary Gland Acinic Cell Carcinoma 7 169185 -NCIT:C4196 Acinar Cell Adenoma 5 169186 -NCIT:C95542 Pancreatic Acinar Cell Neoplasm 5 169187 -NCIT:C7977 Pancreatic Acinar Cell Carcinoma 6 169188 -NCIT:C153569 Recurrent Pancreatic Acinar Cell Carcinoma 7 169189 -NCIT:C156907 Resectable Pancreatic Acinar Cell Carcinoma 7 169190 -NCIT:C190024 Childhood Pancreatic Acinar Cell Carcinoma 7 169191 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 8 169192 -NCIT:C5727 Pancreatic Acinar Cell Cystadenocarcinoma 7 169193 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 8 169194 -NCIT:C6880 Glandular Papilloma 4 169195 -NCIT:C175332 Lacrimal Drainage System Exophytic Papilloma 5 169196 -NCIT:C189336 Mullerian Papilloma 5 169197 -NCIT:C189337 Childhood Mullerian Papilloma 6 169198 -NCIT:C40215 Cervical Mullerian Papilloma 6 169199 -NCIT:C40255 Vaginal Mullerian Papilloma 6 169200 -NCIT:C4117 Sinonasal Papilloma 5 169201 -NCIT:C164251 Sinonasal Exophytic Papilloma 6 169202 -NCIT:C54347 Nasal Cavity Exophytic Papilloma 7 169203 -NCIT:C164256 Nasal Cavity Papilloma 6 169204 -NCIT:C54347 Nasal Cavity Exophytic Papilloma 7 169205 -NCIT:C8194 Nasal Cavity Inverted Papilloma 7 169206 -NCIT:C54345 Sinonasal Oncocytic Papilloma 6 169207 -NCIT:C6835 Paranasal Sinus Papilloma 6 169208 -NCIT:C6836 Ethmoid Sinus Papilloma 7 169209 -NCIT:C6843 Ethmoid Sinus Inverted Papilloma 8 169210 -NCIT:C6837 Frontal Sinus Papilloma 7 169211 -NCIT:C6842 Frontal Sinus Inverted Papilloma 8 169212 -NCIT:C6838 Sphenoid Sinus Papilloma 7 169213 -NCIT:C6841 Sphenoid Sinus Inverted Papilloma 8 169214 -NCIT:C6839 Maxillary Sinus Papilloma 7 169215 -NCIT:C6840 Maxillary Sinus Inverted Papilloma 8 169216 -NCIT:C8195 Paranasal Sinus Inverted Papilloma 7 169217 -NCIT:C6840 Maxillary Sinus Inverted Papilloma 8 169218 -NCIT:C6841 Sphenoid Sinus Inverted Papilloma 8 169219 -NCIT:C6842 Frontal Sinus Inverted Papilloma 8 169220 -NCIT:C6843 Ethmoid Sinus Inverted Papilloma 8 169221 -NCIT:C6871 Sinonasal Inverted Papilloma 6 169222 -NCIT:C115432 Recurrent Sinonasal Inverted Papilloma 7 169223 -NCIT:C8194 Nasal Cavity Inverted Papilloma 7 169224 -NCIT:C8195 Paranasal Sinus Inverted Papilloma 7 169225 -NCIT:C6840 Maxillary Sinus Inverted Papilloma 8 169226 -NCIT:C6841 Sphenoid Sinus Inverted Papilloma 8 169227 -NCIT:C6842 Frontal Sinus Inverted Papilloma 8 169228 -NCIT:C6843 Ethmoid Sinus Inverted Papilloma 8 169229 -NCIT:C45601 Bronchial Glandular Papilloma 5 169230 -NCIT:C7070 Mucinous Neoplasm 4 169231 -NCIT:C170734 Appendix Mucinous Neoplasm 5 169232 -NCIT:C172665 High Grade Appendix Mucinous Neoplasm 6 169233 -NCIT:C42598 Low Grade Appendix Mucinous Neoplasm 6 169234 -NCIT:C134119 Stage 0 Low Grade Appendix Mucinous Neoplasm (LAMN) AJCC v8 7 169235 -NCIT:C26712 Mucinous Adenocarcinoma 5 169236 -NCIT:C128166 Vulvar Adenocarcinoma, Intestinal-Type 6 169237 -NCIT:C136709 Invasive Lung Mucinous Adenocarcinoma 6 169238 -NCIT:C160995 Sinonasal Adenocarcinoma, Intestinal-Type with Mucinous Pattern 6 169239 -NCIT:C27416 Ampulla of Vater Mucinous Adenocarcinoma 6 169240 -NCIT:C27533 Primary Cutaneous Mucinous Carcinoma 6 169241 -NCIT:C3345 Pseudomyxoma Peritonei 6 169242 -NCIT:C179179 Recurrent Pseudomyxoma Peritonei 7 169243 -NCIT:C179180 Refractory Pseudomyxoma Peritonei 7 169244 -NCIT:C36095 Cervical Mucinous Adenocarcinoma 6 169245 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 7 169246 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 7 169247 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 7 169248 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 7 169249 -NCIT:C40206 Human Papillomavirus-Independent Cervical Adenocarcinoma, Gastric-Type 7 169250 -NCIT:C37214 Pancreatic Colloid Carcinoma 6 169251 -NCIT:C3776 Mucinous Cystadenocarcinoma 6 169252 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 7 169253 -NCIT:C40354 Breast Mucinous Cystadenocarcinoma 7 169254 -NCIT:C41246 Pancreatic Mucinous-Cystic Neoplasm with an Associated Invasive Carcinoma 7 169255 -NCIT:C5511 Appendix Mucinous Cystadenocarcinoma 7 169256 -NCIT:C65204 Papillary Mucinous Cystadenocarcinoma 7 169257 -NCIT:C39837 Bladder Mucinous Adenocarcinoma 6 169258 -NCIT:C40103 Fallopian Tube Mucinous Adenocarcinoma 6 169259 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 7 169260 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 7 169261 -NCIT:C40137 Broad Ligament Mucinous Adenocarcinoma 6 169262 -NCIT:C40144 Endometrial Mucinous Adenocarcinoma 6 169263 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 7 169264 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 7 169265 -NCIT:C40149 FIGO Grade 1 Endometrial Mucinous Adenocarcinoma 7 169266 -NCIT:C40150 FIGO Grade 2 Endometrial Mucinous Adenocarcinoma 7 169267 -NCIT:C40151 FIGO Grade 3 Endometrial Mucinous Adenocarcinoma 7 169268 -NCIT:C40252 Vaginal Mucinous Adenocarcinoma 6 169269 -NCIT:C180945 Vaginal Mucinous Adenocarcinoma, Gastric-Type 7 169270 -NCIT:C180946 Vaginal Mucinous Adenocarcinoma, Intestinal-Type 7 169271 -NCIT:C41618 Mucin-Producing Intrahepatic Cholangiocarcinoma 6 169272 -NCIT:C43536 Small Intestinal Mucinous Adenocarcinoma 6 169273 -NCIT:C43558 Appendix Mucinous Adenocarcinoma 6 169274 -NCIT:C153579 Recurrent Appendix Mucinous Adenocarcinoma 7 169275 -NCIT:C162274 Metastatic Appendix Mucinous Adenocarcinoma 7 169276 -NCIT:C5511 Appendix Mucinous Cystadenocarcinoma 7 169277 -NCIT:C43585 Colorectal Mucinous Adenocarcinoma 6 169278 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 7 169279 -NCIT:C43592 Rectosigmoid Mucinous Adenocarcinoma 7 169280 -NCIT:C7966 Colon Mucinous Adenocarcinoma 7 169281 -NCIT:C7973 Rectal Mucinous Adenocarcinoma 7 169282 -NCIT:C45512 Lung Colloid Adenocarcinoma 6 169283 -NCIT:C5243 Ovarian Mucinous Adenocarcinoma 6 169284 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 7 169285 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 7 169286 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 7 169287 -NCIT:C183245 Unresectable Ovarian Mucinous Adenocarcinoma 7 169288 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 7 169289 -NCIT:C5248 Gastric Mucinous Adenocarcinoma 6 169290 -NCIT:C5537 Prostate Acinar Mucinous Adenocarcinoma 6 169291 -NCIT:C5606 Anal Mucinous Adenocarcinoma 6 169292 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 7 169293 -NCIT:C5744 Gallbladder Mucinous Adenocarcinoma 6 169294 -NCIT:C5846 Extrahepatic Bile Duct Mucinous Adenocarcinoma 6 169295 -NCIT:C62193 Salivary Gland Mucinous Adenocarcinoma 6 169296 -NCIT:C9131 Breast Mucinous Carcinoma 6 169297 -NCIT:C40355 Breast Columnar Cell Mucinous Carcinoma 7 169298 -NCIT:C2973 Mucinous Cystadenoma 5 169299 -NCIT:C4184 Papillary Mucinous Cystadenoma 6 169300 -NCIT:C4186 Borderline Papillary Mucinous Cystadenoma 7 169301 -NCIT:C4512 Ovarian Mucinous Cystadenoma 6 169302 -NCIT:C45604 Lung Mucinous Cystadenoma 6 169303 -NCIT:C5510 Appendix Mucinous Cystadenoma 6 169304 -NCIT:C40109 Fallopian Tube Mucinous Neoplasm 5 169305 -NCIT:C40103 Fallopian Tube Mucinous Adenocarcinoma 6 169306 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 7 169307 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 7 169308 -NCIT:C40108 Borderline Fallopian Tube Mucinous Tumor 6 169309 -NCIT:C41247 Pancreatic Mucinous-Cystic Neoplasm 5 169310 -NCIT:C41246 Pancreatic Mucinous-Cystic Neoplasm with an Associated Invasive Carcinoma 6 169311 -NCIT:C95488 Non-Invasive Pancreatic Mucinous-Cystic Neoplasm 6 169312 -NCIT:C95483 Pancreatic Mucinous-Cystic Neoplasm, Low Grade 7 169313 -NCIT:C95493 Pancreatic Mucinous-Cystic Neoplasm, High Grade 7 169314 -NCIT:C5242 Ovarian Mucinous Tumor 5 169315 -NCIT:C159311 Borderline Ovarian Mucinous Tumor/Atypical Proliferative Ovarian Mucinous Tumor with Microinvasion 6 169316 -NCIT:C40033 Malignant Ovarian Mucinous Tumor 6 169317 -NCIT:C40034 Ovarian Mucinous Adenocarcinofibroma 7 169318 -NCIT:C5243 Ovarian Mucinous Adenocarcinoma 7 169319 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 8 169320 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 8 169321 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 8 169322 -NCIT:C183245 Unresectable Ovarian Mucinous Adenocarcinoma 8 169323 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 8 169324 -NCIT:C40036 Borderline Ovarian Mucinous Tumor 6 169325 -NCIT:C122586 Borderline Ovarian Mucinous Tumor/Atypical Proliferative Ovarian Mucinous Tumor 7 169326 -NCIT:C159312 Borderline Ovarian Mucinous Tumor/Atypical Proliferative Ovarian Mucinous Tumor with Intraepithelial Carcinoma 8 169327 -NCIT:C40037 Borderline Ovarian Mucinous Tumor, Intestinal Type 7 169328 -NCIT:C40038 Borderline Ovarian Mucinous Tumor, Endocervical-Like 7 169329 -NCIT:C66775 Borderline Ovarian Mucinous Adenofibroma 7 169330 -NCIT:C40039 Benign Ovarian Mucinous Tumor 6 169331 -NCIT:C40040 Ovarian Mucinous Adenofibroma 7 169332 -NCIT:C40041 Ovarian Mucinous Cystadenofibroma 8 169333 -NCIT:C4512 Ovarian Mucinous Cystadenoma 7 169334 -NCIT:C40042 Ovarian Mucinous Cystic Tumor with Mural Nodules 6 169335 -NCIT:C40043 Ovarian Mucinous Cystic Tumor Associated with Pseudomyxoma Peritonei 6 169336 -NCIT:C8978 Mucinous Adenofibroma 5 169337 -NCIT:C40040 Ovarian Mucinous Adenofibroma 6 169338 -NCIT:C40041 Ovarian Mucinous Cystadenofibroma 7 169339 -NCIT:C66775 Borderline Ovarian Mucinous Adenofibroma 6 169340 -NCIT:C8979 Mucinous Cystadenofibroma 6 169341 -NCIT:C40041 Ovarian Mucinous Cystadenofibroma 7 169342 -NCIT:C7072 Oncocytic Neoplasm 4 169343 -NCIT:C174388 Conjunctival Oncocytoma 5 169344 -NCIT:C175264 Lacrimal Gland Oncocytoma 5 169345 -NCIT:C3679 Oncocytic Adenocarcinoma 5 169346 -NCIT:C126409 Warthin-Like Variant Thyroid Gland Papillary Carcinoma 6 169347 -NCIT:C175267 Lacrimal Gland Oncocytic Adenocarcinoma 6 169348 -NCIT:C188181 Adrenal Cortical Oncocytic Carcinoma 6 169349 -NCIT:C27849 Oxyphilic Endometrial Endometrioid Adenocarcinoma 6 169350 -NCIT:C39884 Prostate Acinar Adenocarcinoma, Oncocytic Variant 6 169351 -NCIT:C40366 Breast Oncocytic Carcinoma 6 169352 -NCIT:C46093 Oncocytic Variant Thyroid Gland Papillary Carcinoma 6 169353 -NCIT:C4946 Thyroid Gland Oncocytic Carcinoma 6 169354 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 7 169355 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 7 169356 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 7 169357 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 7 169358 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 8 169359 -NCIT:C62194 Salivary Gland Oncocytic Carcinoma 6 169360 -NCIT:C3759 Oncocytic Adenoma 5 169361 -NCIT:C27393 Parathyroid Gland Oncocytic Adenoma 6 169362 -NCIT:C48447 Adrenal Cortical Oncocytic Adenoma 6 169363 -NCIT:C5932 Salivary Gland Oncocytoma 6 169364 -NCIT:C6042 Thyroid Gland Oncocytic Adenoma 6 169365 -NCIT:C4526 Kidney Oncocytoma 5 169366 -NCIT:C8960 Hereditary Kidney Oncocytoma 6 169367 -NCIT:C46068 Thyroid Gland Oncocytic Neoplasm 5 169368 -NCIT:C126409 Warthin-Like Variant Thyroid Gland Papillary Carcinoma 6 169369 -NCIT:C46093 Oncocytic Variant Thyroid Gland Papillary Carcinoma 6 169370 -NCIT:C4946 Thyroid Gland Oncocytic Carcinoma 6 169371 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 7 169372 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 7 169373 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 7 169374 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 7 169375 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 8 169376 -NCIT:C6042 Thyroid Gland Oncocytic Adenoma 6 169377 -NCIT:C54345 Sinonasal Oncocytic Papilloma 5 169378 -NCIT:C82890 Cystic Oncocytic Neoplasm 5 169379 -NCIT:C95514 Pancreatic Intraductal Papillary Mucinous Neoplasm, Oncocytic-Type 6 169380 -NCIT:C94537 Spindle Cell Oncocytoma 5 169381 -NCIT:C7074 Serous Neoplasm 4 169382 -NCIT:C126469 Borderline Broad Ligament Serous Tumor 5 169383 -NCIT:C3783 Serous Cystadenoma 5 169384 -NCIT:C126476 Broad Ligament Serous Cystadenoma 6 169385 -NCIT:C4177 Borderline Serous Cystadenoma 6 169386 -NCIT:C4183 Borderline Papillary Serous Cystadenoma 7 169387 -NCIT:C4180 Papillary Serous Cystadenoma 6 169388 -NCIT:C4183 Borderline Papillary Serous Cystadenoma 7 169389 -NCIT:C7278 Ovarian Papillary Cystadenoma 7 169390 -NCIT:C4511 Ovarian Serous Cystadenoma 6 169391 -NCIT:C7278 Ovarian Papillary Cystadenoma 7 169392 -NCIT:C5712 Pancreatic Serous Cystadenoma 6 169393 -NCIT:C95471 Pancreatic Macrocystic Serous Cystadenoma 6 169394 -NCIT:C40024 Borderline Peritoneal Serous Tumor 5 169395 -NCIT:C40101 Serous Adenocarcinoma 5 169396 -NCIT:C126479 Broad Ligament Serous Adenocarcinoma 6 169397 -NCIT:C27838 Endometrial Serous Adenocarcinoma 6 169398 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 7 169399 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 7 169400 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 7 169401 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 8 169402 -NCIT:C187374 Platinum-Sensitive Endometrial Serous Adenocarcinoma 7 169403 -NCIT:C3778 Serous Cystadenocarcinoma 6 169404 -NCIT:C5724 Pancreatic Serous Cystadenocarcinoma 7 169405 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 7 169406 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 8 169407 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 169408 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 169409 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 8 169410 -NCIT:C8377 Papillary Serous Cystadenocarcinoma 7 169411 -NCIT:C40023 Primary Peritoneal Serous Adenocarcinoma 6 169412 -NCIT:C126353 Primary Peritoneal High Grade Serous Adenocarcinoma 7 169413 -NCIT:C165268 Recurrent Primary Peritoneal High Grade Serous Adenocarcinoma 8 169414 -NCIT:C178686 Refractory Primary Peritoneal High Grade Serous Adenocarcinoma 8 169415 -NCIT:C186275 Unresectable Primary Peritoneal High Grade Serous Adenocarcinoma 8 169416 -NCIT:C186453 Metastatic Primary Peritoneal High Grade Serous Adenocarcinoma 8 169417 -NCIT:C126354 Primary Peritoneal Low Grade Serous Adenocarcinoma 7 169418 -NCIT:C156454 Recurrent Primary Peritoneal Low Grade Serous Adenocarcinoma 8 169419 -NCIT:C178687 Refractory Primary Peritoneal Low Grade Serous Adenocarcinoma 8 169420 -NCIT:C156453 Recurrent Primary Peritoneal Serous Adenocarcinoma 7 169421 -NCIT:C156454 Recurrent Primary Peritoneal Low Grade Serous Adenocarcinoma 8 169422 -NCIT:C165268 Recurrent Primary Peritoneal High Grade Serous Adenocarcinoma 8 169423 -NCIT:C171019 Metastatic Primary Peritoneal Serous Adenocarcinoma 7 169424 -NCIT:C186453 Metastatic Primary Peritoneal High Grade Serous Adenocarcinoma 8 169425 -NCIT:C171020 Unresectable Primary Peritoneal Serous Adenocarcinoma 7 169426 -NCIT:C186275 Unresectable Primary Peritoneal High Grade Serous Adenocarcinoma 8 169427 -NCIT:C171021 Refractory Primary Peritoneal Serous Adenocarcinoma 7 169428 -NCIT:C178686 Refractory Primary Peritoneal High Grade Serous Adenocarcinoma 8 169429 -NCIT:C178687 Refractory Primary Peritoneal Low Grade Serous Adenocarcinoma 8 169430 -NCIT:C7695 Primary Peritoneal Serous Papillary Adenocarcinoma 7 169431 -NCIT:C40099 Fallopian Tube Serous Adenocarcinoma 6 169432 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 7 169433 -NCIT:C126456 Fallopian Tube High Grade Serous Adenocarcinoma 7 169434 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 8 169435 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 8 169436 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 8 169437 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 8 169438 -NCIT:C40152 Serous Endometrial Intraepithelial Carcinoma 6 169439 -NCIT:C40201 Cervical Serous Adenocarcinoma 6 169440 -NCIT:C4182 Serous Surface Papillary Carcinoma 6 169441 -NCIT:C6256 Ovarian Serous Surface Papillary Adenocarcinoma 7 169442 -NCIT:C6882 Micropapillary Serous Carcinoma 7 169443 -NCIT:C7695 Primary Peritoneal Serous Papillary Adenocarcinoma 7 169444 -NCIT:C8377 Papillary Serous Cystadenocarcinoma 7 169445 -NCIT:C7550 Ovarian Serous Adenocarcinoma 6 169446 -NCIT:C105555 Ovarian High Grade Serous Adenocarcinoma 7 169447 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 8 169448 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 8 169449 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 8 169450 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 169451 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 8 169452 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 169453 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 169454 -NCIT:C105556 Ovarian Low Grade Serous Adenocarcinoma 7 169455 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 8 169456 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 8 169457 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 7 169458 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 8 169459 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 8 169460 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 8 169461 -NCIT:C160781 Unresectable Ovarian Serous Adenocarcinoma 7 169462 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 8 169463 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 169464 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 7 169465 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 169466 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 169467 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 169468 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 8 169469 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 169470 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 169471 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 8 169472 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 169473 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 169474 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 169475 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 169476 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 169477 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 7 169478 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 8 169479 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 8 169480 -NCIT:C6256 Ovarian Serous Surface Papillary Adenocarcinoma 7 169481 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 7 169482 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 8 169483 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 169484 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 169485 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 8 169486 -NCIT:C40102 Fallopian Tube Serous Neoplasm 5 169487 -NCIT:C179738 Serous Tubal Intraepithelial Lesion 6 169488 -NCIT:C40099 Fallopian Tube Serous Adenocarcinoma 6 169489 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 7 169490 -NCIT:C126456 Fallopian Tube High Grade Serous Adenocarcinoma 7 169491 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 8 169492 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 8 169493 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 8 169494 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 8 169495 -NCIT:C40107 Borderline Fallopian Tube Serous Tumor 6 169496 -NCIT:C40113 Fallopian Tube Serous Adenofibroma 6 169497 -NCIT:C40114 Fallopian Tube Serous Cystadenofibroma 7 169498 -NCIT:C41248 Pancreatic Serous Neoplasm 5 169499 -NCIT:C5724 Pancreatic Serous Cystadenocarcinoma 6 169500 -NCIT:C95470 Pancreatic Serous Adenoma 6 169501 -NCIT:C5712 Pancreatic Serous Cystadenoma 7 169502 -NCIT:C95471 Pancreatic Macrocystic Serous Cystadenoma 7 169503 -NCIT:C95475 Pancreatic Solid Serous Adenoma 7 169504 -NCIT:C95476 Von Hippel Lindau Syndrome-Associated Pancreatic Serous Adenoma 7 169505 -NCIT:C67090 Serous Adenofibroma 5 169506 -NCIT:C158622 Borderline Serous Cystadenofibroma 6 169507 -NCIT:C40029 Borderline Ovarian Serous Cystadenofibroma 7 169508 -NCIT:C40028 Borderline Ovarian Serous Adenofibroma 6 169509 -NCIT:C40029 Borderline Ovarian Serous Cystadenofibroma 7 169510 -NCIT:C40031 Ovarian Serous Adenofibroma 6 169511 -NCIT:C40032 Ovarian Serous Cystadenofibroma 7 169512 -NCIT:C40113 Fallopian Tube Serous Adenofibroma 6 169513 -NCIT:C40114 Fallopian Tube Serous Cystadenofibroma 7 169514 -NCIT:C8431 Ovarian Serous Tumor 5 169515 -NCIT:C40025 Malignant Ovarian Serous Tumor 6 169516 -NCIT:C67092 Ovarian Serous Adenocarcinofibroma 7 169517 -NCIT:C7550 Ovarian Serous Adenocarcinoma 7 169518 -NCIT:C105555 Ovarian High Grade Serous Adenocarcinoma 8 169519 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 9 169520 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 9 169521 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 9 169522 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 169523 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 9 169524 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 169525 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 169526 -NCIT:C105556 Ovarian Low Grade Serous Adenocarcinoma 8 169527 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 9 169528 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 9 169529 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 8 169530 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 9 169531 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 9 169532 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 9 169533 -NCIT:C160781 Unresectable Ovarian Serous Adenocarcinoma 8 169534 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 9 169535 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 169536 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 8 169537 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 169538 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 169539 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 169540 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 9 169541 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 169542 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 169543 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 9 169544 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 169545 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 169546 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 169547 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 169548 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 169549 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 8 169550 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 9 169551 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 9 169552 -NCIT:C6256 Ovarian Serous Surface Papillary Adenocarcinoma 8 169553 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 8 169554 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 9 169555 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 169556 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 169557 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 9 169558 -NCIT:C40027 Borderline Ovarian Serous Tumor/Atypical Proliferative Ovarian Serous Tumor with Microinvasion 6 169559 -NCIT:C5226 Borderline Ovarian Serous Tumor 6 169560 -NCIT:C122584 Borderline Ovarian Serous Tumor/Atypical Proliferative Ovarian Serous Tumor 7 169561 -NCIT:C122585 Borderline Ovarian Serous Tumor-Micropapillary Variant/Non-Invasive Low Grade Ovarian Serous Carcinoma 7 169562 -NCIT:C40028 Borderline Ovarian Serous Adenofibroma 7 169563 -NCIT:C40029 Borderline Ovarian Serous Cystadenofibroma 8 169564 -NCIT:C7313 Benign Ovarian Serous Tumor 6 169565 -NCIT:C40031 Ovarian Serous Adenofibroma 7 169566 -NCIT:C40032 Ovarian Serous Cystadenofibroma 8 169567 -NCIT:C4511 Ovarian Serous Cystadenoma 7 169568 -NCIT:C7278 Ovarian Papillary Cystadenoma 8 169569 -NCIT:C7279 Ovarian Surface Papilloma 7 169570 -NCIT:C95505 Pancreatic Intraductal Neoplasm 4 169571 -NCIT:C38342 Pancreatic Intraductal Papillary-Mucinous Neoplasm 5 169572 -NCIT:C113664 Main Duct Pancreatic Intraductal Papillary-Mucinous Neoplasm 6 169573 -NCIT:C113665 Branch Duct Pancreatic Intraductal Papillary-Mucinous Neoplasm 6 169574 -NCIT:C113667 Mixed Type Pancreatic Intraductal Papillary-Mucinous Neoplasm 6 169575 -NCIT:C41249 Pancreatic Intraductal Papillary-Mucinous Neoplasm, Low Grade 6 169576 -NCIT:C41251 Pancreatic Intraductal Papillary-Mucinous Neoplasm, High Grade 6 169577 -NCIT:C5726 Pancreatic Intraductal Papillary-Mucinous Neoplasm with an Associated Invasive Carcinoma 6 169578 -NCIT:C95508 Pancreatic Intraductal Papillary Mucinous Neoplasm, Gastric-Type 6 169579 -NCIT:C95510 Pancreatic Intraductal Papillary Mucinous Neoplasm, Intestinal-Type 6 169580 -NCIT:C95512 Pancreatic Intraductal Papillary Mucinous Neoplasm, Pancreatobiliary-Type 6 169581 -NCIT:C95514 Pancreatic Intraductal Papillary Mucinous Neoplasm, Oncocytic-Type 6 169582 -NCIT:C95506 Pancreatic Intraductal Tubulopapillary Neoplasm 5 169583 -NCIT:C95507 Pancreatic Intraductal Tubulopapillary Neoplasm with an Associated Invasive Carcinoma 5 169584 -NCIT:C95909 Preinvasive Neoplasm of the Ampullary Region 4 169585 -NCIT:C6657 Ampulla of Vater Adenoma, Intestinal-Type 5 169586 -NCIT:C27412 Ampulla of Vater Tubulovillous Adenoma 6 169587 -NCIT:C6658 Ampulla of Vater Villous Adenoma 6 169588 -NCIT:C6659 Ampulla of Vater Tubular Adenoma 6 169589 -NCIT:C95913 Ampullary Noninvasive Papillary Neoplasm, Pancreatobiliary Type 5 169590 -NCIT:C95914 Ampullary Noninvasive Pancreatobiliary Papillary Neoplasm with Low Grade Dysplasia 6 169591 -NCIT:C95915 Ampullary Noninvasive Pancreatobiliary Papillary Neoplasm with High Grade Dysplasia 6 169592 -NCIT:C95918 Ampullary Flat Intraepithelial Neoplasia, High Grade 5 169593 -NCIT:C7342 Epithelial Skin Neoplasm 3 169594 -NCIT:C43311 Germinative Follicular Epithelium Neoplasm 4 169595 -NCIT:C43319 Benign Germinative Follicular Epithelium Neoplasm 5 169596 -NCIT:C168592 Melanocytic Matricoma 6 169597 -NCIT:C27132 Trichoblastoma 6 169598 -NCIT:C27524 Desmoplastic Trichoepithelioma 7 169599 -NCIT:C40314 Vulvar Trichoepithelioma 7 169600 -NCIT:C4112 Trichofolliculoma 6 169601 -NCIT:C7368 Pilomatricoma 6 169602 -NCIT:C190279 Childhood Pilomatricoma 7 169603 -NCIT:C43321 Malignant Germinative Follicular Epithelium Neoplasm 5 169604 -NCIT:C4114 Pilomatrical Carcinoma 6 169605 -NCIT:C4914 Skin Carcinoma 4 169606 -NCIT:C157324 Unresectable Skin Carcinoma 5 169607 -NCIT:C157320 Unresectable Skin Squamous Cell Carcinoma 6 169608 -NCIT:C157331 Unresectable Skin Basal Cell Carcinoma 6 169609 -NCIT:C162786 Unresectable Merkel Cell Carcinoma 6 169610 -NCIT:C170465 Resectable Skin Carcinoma 5 169611 -NCIT:C170464 Resectable Skin Squamous Cell Carcinoma 6 169612 -NCIT:C162943 Resectable Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 169613 -NCIT:C2921 Skin Basal Cell Carcinoma 5 169614 -NCIT:C157331 Unresectable Skin Basal Cell Carcinoma 6 169615 -NCIT:C181159 Eyelid Basal Cell Carcinoma 6 169616 -NCIT:C27182 Skin Sclerosing/Morphoeic Basal Cell Carcinoma 6 169617 -NCIT:C27535 Skin Adenoid Basal Cell Carcinoma 6 169618 -NCIT:C27536 Skin Clear Cell Basal Cell Carcinoma 6 169619 -NCIT:C27537 Skin Cystic Basal Cell Carcinoma 6 169620 -NCIT:C27539 Skin Infiltrating Basal Cell Carcinoma 6 169621 -NCIT:C27540 Skin Infundibulocystic Basal Cell Carcinoma 6 169622 -NCIT:C27541 Skin Micronodular Basal Cell Carcinoma 6 169623 -NCIT:C2922 Skin Basosquamous Cell Carcinoma 6 169624 -NCIT:C38109 Skin Basal Cell Carcinoma with Adnexal Differentiation 6 169625 -NCIT:C27538 Skin Follicular Basal Cell Carcinoma 7 169626 -NCIT:C4346 Skin Basal Cell Carcinoma with Sebaceous Differentiation 7 169627 -NCIT:C38110 Skin Signet Ring Cell Basal Cell Carcinoma 6 169628 -NCIT:C38111 Skin Basal Cell Carcinoma with Sarcomatoid Differentiation 6 169629 -NCIT:C39961 Penile Basal Cell Carcinoma 6 169630 -NCIT:C4109 Skin Fibroepithelial Basal Cell Carcinoma 6 169631 -NCIT:C54665 Skin Keratotic Basal Cell Carcinoma 6 169632 -NCIT:C6082 External Ear Basal Cell Carcinoma 6 169633 -NCIT:C62282 Skin Nodular Basal Cell Carcinoma 6 169634 -NCIT:C5568 Skin Nodulo-Ulcerative Basal Cell Carcinoma 7 169635 -NCIT:C5616 Skin Nodular Solid Basal Cell Carcinoma 7 169636 -NCIT:C62284 Superficial Basal Cell Carcinoma 6 169637 -NCIT:C4108 Superficial Multifocal Basal Cell Carcinoma 7 169638 -NCIT:C6381 Vulvar Basal Cell Carcinoma 6 169639 -NCIT:C6386 Scrotal Basal Cell Carcinoma 6 169640 -NCIT:C66903 Skin Metatypical Carcinoma 6 169641 -NCIT:C7473 Anal Margin Basal Cell Carcinoma 6 169642 -NCIT:C7585 Skin Adamantinoid Basal Cell Carcinoma 6 169643 -NCIT:C8014 Lip Basal Cell Carcinoma 6 169644 -NCIT:C5893 Stage 0 Lip Basal Cell Carcinoma AJCC v6 and v7 7 169645 -NCIT:C8197 Stage I Lip Basal Cell Carcinoma 7 169646 -NCIT:C8201 Stage II Lip Basal Cell Carcinoma 7 169647 -NCIT:C8205 Stage III Lip Basal Cell Carcinoma 7 169648 -NCIT:C8209 Stage IV Lip Basal Cell Carcinoma 7 169649 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 8 169650 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 8 169651 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 8 169652 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 7 169653 -NCIT:C9359 Skin Pigmented Basal Cell Carcinoma 6 169654 -NCIT:C3640 Stage 0 Skin Cancer 5 169655 -NCIT:C2906 Skin Squamous Cell Carcinoma In Situ 6 169656 -NCIT:C62571 Bowen Disease of the Skin 7 169657 -NCIT:C5893 Stage 0 Lip Basal Cell Carcinoma AJCC v6 and v7 6 169658 -NCIT:C3775 Adnexal Carcinoma 5 169659 -NCIT:C167341 Adnexal Adenocarcinoma, Not Otherwise Specified 6 169660 -NCIT:C167366 Adnexal Cribriform Carcinoma 6 169661 -NCIT:C167368 Adnexal Secretory Carcinoma 6 169662 -NCIT:C167369 Signet Ring Cell/Histiocytoid Carcinoma 6 169663 -NCIT:C167381 Trichoblastic Carcinoma 6 169664 -NCIT:C40310 Sebaceous Carcinoma 6 169665 -NCIT:C160978 Head and Neck Sebaceous Carcinoma 7 169666 -NCIT:C173648 Salivary Gland Sebaceous Carcinoma 8 169667 -NCIT:C40369 Breast Sebaceous Carcinoma 7 169668 -NCIT:C43340 Eye Sebaceous Carcinoma 7 169669 -NCIT:C134831 Eyelid Sebaceous Gland Carcinoma 8 169670 -NCIT:C174404 Conjunctival Sebaceous Carcinoma 8 169671 -NCIT:C43341 Extraocular Cutaneous Sebaceous Carcinoma 7 169672 -NCIT:C40309 Vulvar Sebaceous Carcinoma 8 169673 -NCIT:C4114 Pilomatrical Carcinoma 6 169674 -NCIT:C43326 Trichilemmal Carcinoma 6 169675 -NCIT:C6938 Sweat Gland Carcinoma 6 169676 -NCIT:C128164 Vulvar Adenocarcinoma of Sweat Gland Origin 7 169677 -NCIT:C4027 Vulvar Paget Disease 8 169678 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 8 169679 -NCIT:C40306 Vulvar Porocarcinoma 9 169680 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 8 169681 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 8 169682 -NCIT:C167344 Spiradenocylindrocarcinoma 7 169683 -NCIT:C167364 Endocrine Mucin-Producing Sweat Gland Carcinoma 7 169684 -NCIT:C167365 Syringocystadenocarcinoma Papilliferum 7 169685 -NCIT:C27255 Eccrine Carcinoma 7 169686 -NCIT:C27254 Papillary Eccrine Carcinoma 8 169687 -NCIT:C27534 Digital Papillary Adenocarcinoma 9 169688 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 8 169689 -NCIT:C40306 Vulvar Porocarcinoma 9 169690 -NCIT:C43345 Ductal Eccrine Adenocarcinoma 8 169691 -NCIT:C43346 Ductal Eccrine Carcinoma with Spindle Cell Elements 9 169692 -NCIT:C43347 Squamoid Eccrine Ductal Carcinoma 9 169693 -NCIT:C43349 Ductal Eccrine Carcinoma with Abundant Fibromyxoid Stroma 9 169694 -NCIT:C5560 Porocarcinoma 8 169695 -NCIT:C40306 Vulvar Porocarcinoma 9 169696 -NCIT:C43354 Porocarcinoma In Situ 9 169697 -NCIT:C27533 Primary Cutaneous Mucinous Carcinoma 7 169698 -NCIT:C3682 Sweat Gland Tubular Carcinoma 7 169699 -NCIT:C4169 Apocrine Carcinoma 7 169700 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 8 169701 -NCIT:C4176 Ceruminous Adenocarcinoma 8 169702 -NCIT:C5141 Breast Apocrine Carcinoma 8 169703 -NCIT:C5140 Breast Apocrine Carcinoma In Situ 9 169704 -NCIT:C5457 Invasive Breast Apocrine Carcinoma 9 169705 -NCIT:C43344 Cylindrocarcinoma 7 169706 -NCIT:C4471 Adenoid Cystic Skin Carcinoma 7 169707 -NCIT:C4472 Mucoepidermoid Skin Carcinoma 7 169708 -NCIT:C5117 Spiradenocarcinoma 7 169709 -NCIT:C5180 Malignant Breast Spiradenoma 8 169710 -NCIT:C54664 Hidradenocarcinoma 7 169711 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 8 169712 -NCIT:C7581 Microcystic Adnexal Carcinoma 7 169713 -NCIT:C4819 Skin Squamous Cell Carcinoma 5 169714 -NCIT:C133252 Cutaneous Squamous Cell Carcinoma of the Head and Neck 6 169715 -NCIT:C133253 Cutaneous Squamous Cell Carcinoma of the Head and Neck by AJCC v8 Stage 7 169716 -NCIT:C133255 Stage 0 Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 169717 -NCIT:C133256 Stage I Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 169718 -NCIT:C133257 Stage II Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 169719 -NCIT:C133258 Stage III Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 169720 -NCIT:C133259 Stage IV Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 169721 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 169722 -NCIT:C162943 Resectable Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 169723 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 169724 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 169725 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 169726 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 169727 -NCIT:C6083 External Ear Squamous Cell Carcinoma 7 169728 -NCIT:C143012 Recurrent Skin Squamous Cell Carcinoma 6 169729 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 169730 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 7 169731 -NCIT:C165737 Locally Recurrent Skin Squamous Cell Carcinoma 7 169732 -NCIT:C143013 Metastatic Skin Squamous Cell Carcinoma 6 169733 -NCIT:C153182 Locally Advanced Skin Squamous Cell Carcinoma 7 169734 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 169735 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 7 169736 -NCIT:C168542 Advanced Skin Squamous Cell Carcinoma 7 169737 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 169738 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 169739 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 169740 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 169741 -NCIT:C157320 Unresectable Skin Squamous Cell Carcinoma 6 169742 -NCIT:C160666 Hematologic Malignancy-Associated Skin Squamous Cell Carcinoma 6 169743 -NCIT:C165465 Skin Verrucous Carcinoma 6 169744 -NCIT:C6811 Plantar Verrucous Carcinoma 7 169745 -NCIT:C165466 Skin Squamous Cell Carcinoma with Osteoclast-Like Giant Cells 6 169746 -NCIT:C165467 Skin Lymphoepithelioma-Like Carcinoma 6 169747 -NCIT:C165468 Skin Squamous Cell Carcinoma with Sarcomatoid Differentiation 6 169748 -NCIT:C165735 Refractory Skin Squamous Cell Carcinoma 6 169749 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 169750 -NCIT:C170464 Resectable Skin Squamous Cell Carcinoma 6 169751 -NCIT:C162943 Resectable Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 169752 -NCIT:C27542 Skin Pseudovascular Squamous Cell Carcinoma 6 169753 -NCIT:C27543 Skin Basaloid Carcinoma 6 169754 -NCIT:C27636 Transplant-Related Skin Squamous Cell Carcinoma 6 169755 -NCIT:C27918 Old Burn Scar-Related Skin Squamous Cell Carcinoma 6 169756 -NCIT:C27921 Solar Radiation-Related Skin Squamous Cell Carcinoma 6 169757 -NCIT:C2906 Skin Squamous Cell Carcinoma In Situ 6 169758 -NCIT:C62571 Bowen Disease of the Skin 7 169759 -NCIT:C3146 Keratoacanthoma 6 169760 -NCIT:C128167 Vulvar Keratoacanthoma 7 169761 -NCIT:C174390 Conjunctival Keratoacanthoma 7 169762 -NCIT:C4459 Skin Clear Cell Squamous Cell Carcinoma 6 169763 -NCIT:C4460 Skin Acantholytic Squamous Cell Carcinoma 6 169764 -NCIT:C4643 Scrotal Squamous Cell Carcinoma 6 169765 -NCIT:C4666 Skin Spindle Cell Squamous Cell Carcinoma 6 169766 -NCIT:C6925 Anal Margin Squamous Cell Carcinoma 6 169767 -NCIT:C54250 Skin Adenosquamous Carcinoma 5 169768 -NCIT:C5581 Stage I Skin Cancer 5 169769 -NCIT:C8197 Stage I Lip Basal Cell Carcinoma 6 169770 -NCIT:C5582 Stage II Skin Cancer 5 169771 -NCIT:C8201 Stage II Lip Basal Cell Carcinoma 6 169772 -NCIT:C5583 Stage III Skin Cancer 5 169773 -NCIT:C8205 Stage III Lip Basal Cell Carcinoma 6 169774 -NCIT:C5584 Stage IV Skin Cancer 5 169775 -NCIT:C8209 Stage IV Lip Basal Cell Carcinoma 6 169776 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 7 169777 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 7 169778 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 7 169779 -NCIT:C6389 Scrotal Carcinoma 5 169780 -NCIT:C4643 Scrotal Squamous Cell Carcinoma 6 169781 -NCIT:C6386 Scrotal Basal Cell Carcinoma 6 169782 -NCIT:C7728 Scrotal Paget Disease 6 169783 -NCIT:C7472 Anal Margin Carcinoma 5 169784 -NCIT:C6925 Anal Margin Squamous Cell Carcinoma 6 169785 -NCIT:C7473 Anal Margin Basal Cell Carcinoma 6 169786 -NCIT:C7476 Anal Margin Paget Disease 6 169787 -NCIT:C7903 Recurrent Skin Carcinoma 5 169788 -NCIT:C115440 Recurrent Merkel Cell Carcinoma 6 169789 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 7 169790 -NCIT:C165740 Locally Recurrent Merkel Cell Carcinoma 7 169791 -NCIT:C143012 Recurrent Skin Squamous Cell Carcinoma 6 169792 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 169793 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 7 169794 -NCIT:C165737 Locally Recurrent Skin Squamous Cell Carcinoma 7 169795 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 6 169796 -NCIT:C9231 Merkel Cell Carcinoma 5 169797 -NCIT:C115440 Recurrent Merkel Cell Carcinoma 6 169798 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 7 169799 -NCIT:C165740 Locally Recurrent Merkel Cell Carcinoma 7 169800 -NCIT:C128247 Vulvar Merkel Cell Carcinoma 6 169801 -NCIT:C136869 Merkel Cell Carcinoma by AJCC v7 Stage 6 169802 -NCIT:C85887 Stage 0 Merkel Cell Carcinoma AJCC v7 7 169803 -NCIT:C85889 Stage I Merkel Cell Carcinoma AJCC v7 7 169804 -NCIT:C85890 Stage IA Merkel Cell Carcinoma AJCC v7 8 169805 -NCIT:C85892 Stage IB Merkel Cell Carcinoma AJCC v7 8 169806 -NCIT:C85893 Stage II Merkel Cell Carcinoma AJCC v7 7 169807 -NCIT:C85894 Stage IIA Merkel Cell Carcinoma AJCC v7 8 169808 -NCIT:C85895 Stage IIB Merkel Cell Carcinoma AJCC v7 8 169809 -NCIT:C85896 Stage IIC Merkel Cell Carcinoma AJCC v7 8 169810 -NCIT:C85897 Stage III Merkel Cell Carcinoma AJCC v7 7 169811 -NCIT:C85898 Stage IIIA Merkel Cell Carcinoma AJCC v7 8 169812 -NCIT:C85899 Stage IIIB Merkel Cell Carcinoma AJCC v7 8 169813 -NCIT:C85900 Stage IV Merkel Cell Carcinoma AJCC v7 7 169814 -NCIT:C136870 Merkel Cell Carcinoma by AJCC v8 Stage 6 169815 -NCIT:C136871 Merkel Cell Carcinoma by AJCC v8 Clinical Stage 7 169816 -NCIT:C136872 Clinical Stage 0 Merkel Cell Carcinoma AJCC v8 8 169817 -NCIT:C136873 Clinical Stage I Merkel Cell Carcinoma AJCC v8 8 169818 -NCIT:C136874 Clinical Stage II Merkel Cell Carcinoma AJCC v8 8 169819 -NCIT:C136875 Clinical Stage IIA Merkel Cell Carcinoma AJCC v8 9 169820 -NCIT:C136876 Clinical Stage IIB Merkel Cell Carcinoma AJCC v8 9 169821 -NCIT:C136877 Clinical Stage III Merkel Cell Carcinoma AJCC v8 8 169822 -NCIT:C136878 Clinical Stage IV Merkel Cell Carcinoma AJCC v8 8 169823 -NCIT:C136880 Merkel Cell Carcinoma by AJCC v8 Pathologic Stage 7 169824 -NCIT:C136881 Pathologic Stage 0 Merkel Cell Carcinoma AJCC v8 8 169825 -NCIT:C136882 Pathologic Stage I Merkel Cell Carcinoma AJCC v8 8 169826 -NCIT:C136883 Pathologic Stage II Merkel Cell Carcinoma AJCC v8 8 169827 -NCIT:C136884 Pathologic Stage IIA Merkel Cell Carcinoma AJCC v8 9 169828 -NCIT:C136885 Pathologic Stage IIB Merkel Cell Carcinoma AJCC v8 9 169829 -NCIT:C136886 Pathologic Stage III Merkel Cell Carcinoma AJCC v8 8 169830 -NCIT:C136887 Pathologic Stage IIIA Merkel Cell Carcinoma AJCC v8 9 169831 -NCIT:C136888 Pathologic Stage IIIB Merkel Cell Carcinoma AJCC v8 9 169832 -NCIT:C136889 Pathologic Stage IV Merkel Cell Carcinoma AJCC v8 8 169833 -NCIT:C162572 Metastatic Merkel Cell Carcinoma 6 169834 -NCIT:C165300 Advanced Merkel Cell Carcinoma 7 169835 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 7 169836 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 7 169837 -NCIT:C162786 Unresectable Merkel Cell Carcinoma 6 169838 -NCIT:C165741 Refractory Merkel Cell Carcinoma 6 169839 -NCIT:C5628 Metastatic Carcinoma in the Skin 4 169840 -NCIT:C188113 Metastatic Squamous Cell Carcinoma in the Skin 5 169841 -NCIT:C28311 Metastatic Breast Carcinoma in the Skin 5 169842 -NCIT:C7341 Benign Epithelial Skin Neoplasm 4 169843 -NCIT:C167370 Skin Myoepithelioma 5 169844 -NCIT:C26913 Verruca Plantaris 5 169845 -NCIT:C27087 Verruca Vulgaris 5 169846 -NCIT:C173475 Oral Verruca Vulgaris 6 169847 -NCIT:C43315 Benign Outer Hair Sheath and Infundibulum Neoplasm 5 169848 -NCIT:C4113 Trichilemmoma 6 169849 -NCIT:C27521 Classic Type Trichilemmoma 7 169850 -NCIT:C27522 Desmoplastic Trichilemmoma 7 169851 -NCIT:C43325 Trichoadenoma 6 169852 -NCIT:C4468 Pilar Sheath Acanthoma 6 169853 -NCIT:C4469 Tumor of the Follicular Infundibulum 6 169854 -NCIT:C43319 Benign Germinative Follicular Epithelium Neoplasm 5 169855 -NCIT:C168592 Melanocytic Matricoma 6 169856 -NCIT:C27132 Trichoblastoma 6 169857 -NCIT:C27524 Desmoplastic Trichoepithelioma 7 169858 -NCIT:C40314 Vulvar Trichoepithelioma 7 169859 -NCIT:C4112 Trichofolliculoma 6 169860 -NCIT:C7368 Pilomatricoma 6 169861 -NCIT:C190279 Childhood Pilomatricoma 7 169862 -NCIT:C4614 Skin Papilloma 5 169863 -NCIT:C4879 Benign Sweat Gland Neoplasm 5 169864 -NCIT:C167342 Spiradenocylindroma 6 169865 -NCIT:C27094 Cylindroma 6 169866 -NCIT:C43351 Sporadic Cylindroma 7 169867 -NCIT:C43352 Turban Tumor 7 169868 -NCIT:C27273 Poroma 6 169869 -NCIT:C43353 Classical Poroma 7 169870 -NCIT:C4473 Dermal Duct Tumor 7 169871 -NCIT:C3760 Hidrocystoma 6 169872 -NCIT:C43342 Apocrine Hidrocystoma 7 169873 -NCIT:C7565 Eccrine Hidrocystoma 7 169874 -NCIT:C4170 Spiradenoma 6 169875 -NCIT:C5193 Breast Spiradenoma 7 169876 -NCIT:C4171 Hidradenoma Papilliferum 6 169877 -NCIT:C128240 Vulvar Hidradenoma Papilliferum 7 169878 -NCIT:C96699 Anal Hidradenoma Papilliferum 7 169879 -NCIT:C4474 Chondroid Syringoma 6 169880 -NCIT:C6797 Benign Eccrine Neoplasm 6 169881 -NCIT:C162848 Digital Papillary Adenoma 7 169882 -NCIT:C3761 Syringoma 7 169883 -NCIT:C40311 Vulvar Syringoma 8 169884 -NCIT:C43356 Syringofibroadenoma 7 169885 -NCIT:C7565 Eccrine Hidrocystoma 7 169886 -NCIT:C6799 Benign Apocrine Neoplasm 6 169887 -NCIT:C4168 Apocrine Adenoma 7 169888 -NCIT:C27527 Tubular Apocrine Adenoma 8 169889 -NCIT:C43342 Apocrine Hidrocystoma 8 169890 -NCIT:C6088 Ceruminous Adenoma 8 169891 -NCIT:C7560 Sweat Gland Adenoma 6 169892 -NCIT:C4168 Apocrine Adenoma 7 169893 -NCIT:C27527 Tubular Apocrine Adenoma 8 169894 -NCIT:C43342 Apocrine Hidrocystoma 8 169895 -NCIT:C6088 Ceruminous Adenoma 8 169896 -NCIT:C4172 Syringocystadenoma Papilliferum 7 169897 -NCIT:C43356 Syringofibroadenoma 7 169898 -NCIT:C7563 Hidradenoma 7 169899 -NCIT:C7567 Clear Cell Hidradenoma 8 169900 -NCIT:C7568 Nodular Hidradenoma 8 169901 -NCIT:C40312 Vulvar Nodular Hidradenoma 9 169902 -NCIT:C7419 Acanthoma 5 169903 -NCIT:C165485 Lichen Planus-Like Keratosis 6 169904 -NCIT:C27516 Epidermolytic Acanthoma 6 169905 -NCIT:C27517 Acantholytic Acanthoma 6 169906 -NCIT:C27518 Large Cell Acanthoma 6 169907 -NCIT:C4087 Warty Dyskeratoma 6 169908 -NCIT:C4468 Pilar Sheath Acanthoma 6 169909 -NCIT:C4469 Tumor of the Follicular Infundibulum 6 169910 -NCIT:C9006 Seborrheic Keratosis 6 169911 -NCIT:C27548 Melanoacanthoma 7 169912 -NCIT:C4356 Eyelid Seborrheic Keratosis 7 169913 -NCIT:C6375 Vulvar Seborrheic Keratosis 7 169914 -NCIT:C40291 Vulvar Inverted Follicular Keratosis 8 169915 -NCIT:C9007 Inverted Follicular Keratosis 7 169916 -NCIT:C40291 Vulvar Inverted Follicular Keratosis 8 169917 -NCIT:C97041 Clear Cell Acanthoma 6 169918 -NCIT:C7580 Skin Appendage Adenoma 5 169919 -NCIT:C4174 Sebaceous Adenoma 6 169920 -NCIT:C7560 Sweat Gland Adenoma 6 169921 -NCIT:C4168 Apocrine Adenoma 7 169922 -NCIT:C27527 Tubular Apocrine Adenoma 8 169923 -NCIT:C43342 Apocrine Hidrocystoma 8 169924 -NCIT:C6088 Ceruminous Adenoma 8 169925 -NCIT:C4172 Syringocystadenoma Papilliferum 7 169926 -NCIT:C43356 Syringofibroadenoma 7 169927 -NCIT:C7563 Hidradenoma 7 169928 -NCIT:C7567 Clear Cell Hidradenoma 8 169929 -NCIT:C7568 Nodular Hidradenoma 8 169930 -NCIT:C40312 Vulvar Nodular Hidradenoma 9 169931 -NCIT:C8525 Benign Sebaceous Neoplasm 5 169932 -NCIT:C4174 Sebaceous Adenoma 6 169933 -NCIT:C43334 Superficial Epithelioma with Sebaceous Differentiation 6 169934 -NCIT:C43336 Sebaceoma 6 169935 -NCIT:C7644 Adamantinoma 3 169936 -NCIT:C8461 Tibial Adamantinoma 4 169937 -NCIT:C8366 Intraepithelial Neoplasia 3 169938 -NCIT:C133192 Oral Intraepithelial Neoplasia 4 169939 -NCIT:C164249 Differentiated Intraepithelial Neoplasia 4 169940 -NCIT:C162539 Differentiated (Simplex) Penile Intraepithelial Neoplasia 5 169941 -NCIT:C37272 Vulvar Intraepithelial Neoplasia, HPV-Independent 5 169942 -NCIT:C27269 Glandular Cell Intraepithelial Neoplasia 4 169943 -NCIT:C27424 Esophageal Glandular Intraepithelial Neoplasia 5 169944 -NCIT:C27428 Low Grade Esophageal Glandular Intraepithelial Neoplasia 6 169945 -NCIT:C27429 High Grade Esophageal Glandular Intraepithelial Neoplasia 6 169946 -NCIT:C133402 Clinical Stage 0 Esophageal Adenocarcinoma AJCC v8 7 169947 -NCIT:C133413 Pathologic Stage 0 Esophageal Adenocarcinoma AJCC v8 7 169948 -NCIT:C8629 Stage 0 Esophageal Adenocarcinoma AJCC v7 7 169949 -NCIT:C95613 Intraepithelial Neoplasia in Barrett Esophagus 6 169950 -NCIT:C27789 Endometrial Atypical Hyperplasia/Endometrioid Intraepithelial Neoplasia 5 169951 -NCIT:C36086 Breast Flat Ductal Epithelial Atypia 5 169952 -NCIT:C3955 Gastric Intraepithelial Neoplasia 5 169953 -NCIT:C27436 Low Grade Gastric Intraepithelial Neoplasia 6 169954 -NCIT:C27437 High Grade Gastric Intraepithelial Neoplasia 6 169955 -NCIT:C4064 Prostatic Intraepithelial Neoplasia 5 169956 -NCIT:C5541 High Grade Prostatic Intraepithelial Neoplasia 6 169957 -NCIT:C3642 Grade III Prostatic Intraepithelial Neoplasia 7 169958 -NCIT:C39887 High Grade Prostatic Intraepithelial Neoplasia, Signet Ring Variant 7 169959 -NCIT:C39888 High Grade Prostatic Intraepithelial Neoplasia, Mucinous Variant 7 169960 -NCIT:C39889 High Grade Prostatic Intraepithelial Neoplasia, Foamy Variant 7 169961 -NCIT:C39890 High Grade Prostatic Intraepithelial Neoplasia, Inverted Variant 7 169962 -NCIT:C39891 High Grade Prostatic Intraepithelial Neoplasia, Small Cell Neuroendocrine Variant 7 169963 -NCIT:C7360 Grade II Prostatic Intraepithelial Neoplasia 7 169964 -NCIT:C5542 Low Grade Prostatic Intraepithelial Neoplasia 6 169965 -NCIT:C4843 Biliary Intraepithelial Neoplasia 5 169966 -NCIT:C172804 Low Grade Biliary Intraepithelial Neoplasia 6 169967 -NCIT:C67491 Biliary Intraepithelial Neoplasia-1 7 169968 -NCIT:C67492 Biliary Intraepithelial Neoplasia-2 7 169969 -NCIT:C43606 Gallbladder Biliary Intraepithelial Neoplasia 6 169970 -NCIT:C43607 Gallbladder Flat Biliary Intraepithelial Neoplasia 7 169971 -NCIT:C43609 Gallbladder Papillary Biliary Intraepithelial Neoplasia 7 169972 -NCIT:C67493 High-Grade Biliary Intraepithelial Neoplasia 6 169973 -NCIT:C96945 Bile Duct Biliary Intraepithelial Neoplasia 6 169974 -NCIT:C96942 Extrahepatic Bile Duct Biliary Intraepithelial Neoplasia 7 169975 -NCIT:C96943 Intrahepatic Bile Duct Biliary Intraepithelial Neoplasia 7 169976 -NCIT:C4845 Pancreatic Intraepithelial Neoplasia 5 169977 -NCIT:C172803 Low Grade Pancreatic Intraepithelial Neoplasia 6 169978 -NCIT:C4846 Pancreatic Intraepithelial Neoplasia-2 7 169979 -NCIT:C6820 Pancreatic Intraepithelial Neoplasia-1 7 169980 -NCIT:C95429 Pancreatic Intraepithelial Neoplasia-1A 8 169981 -NCIT:C95430 Pancreatic Intraepithelial Neoplasia-1B 8 169982 -NCIT:C95432 High Grade Pancreatic Intraepithelial Neoplasia 6 169983 -NCIT:C7658 Intestinal Intraepithelial Neoplasia 5 169984 -NCIT:C27459 Colorectal Intraepithelial Neoplasia 6 169985 -NCIT:C27460 Colorectal Low Grade Intraepithelial Neoplasia 7 169986 -NCIT:C27461 Colorectal High Grade Intraepithelial Neoplasia 7 169987 -NCIT:C27462 Small Intestinal Intraepithelial Neoplasia 6 169988 -NCIT:C27463 Small Intestinal Low Grade Intraepithelial Neoplasia 7 169989 -NCIT:C27464 Small Intestinal High Grade Intraepithelial Neoplasia 7 169990 -NCIT:C7661 Low Grade Glandular Intraepithelial Neoplasia 5 169991 -NCIT:C172803 Low Grade Pancreatic Intraepithelial Neoplasia 6 169992 -NCIT:C4846 Pancreatic Intraepithelial Neoplasia-2 7 169993 -NCIT:C6820 Pancreatic Intraepithelial Neoplasia-1 7 169994 -NCIT:C95429 Pancreatic Intraepithelial Neoplasia-1A 8 169995 -NCIT:C95430 Pancreatic Intraepithelial Neoplasia-1B 8 169996 -NCIT:C172804 Low Grade Biliary Intraepithelial Neoplasia 6 169997 -NCIT:C67491 Biliary Intraepithelial Neoplasia-1 7 169998 -NCIT:C67492 Biliary Intraepithelial Neoplasia-2 7 169999 -NCIT:C27428 Low Grade Esophageal Glandular Intraepithelial Neoplasia 6 170000 -NCIT:C27436 Low Grade Gastric Intraepithelial Neoplasia 6 170001 -NCIT:C27460 Colorectal Low Grade Intraepithelial Neoplasia 6 170002 -NCIT:C27463 Small Intestinal Low Grade Intraepithelial Neoplasia 6 170003 -NCIT:C5542 Low Grade Prostatic Intraepithelial Neoplasia 6 170004 -NCIT:C7674 Low Grade Cervical Glandular Intraepithelial Neoplasia 6 170005 -NCIT:C96419 Appendix Low Grade Intraepithelial Neoplasia 6 170006 -NCIT:C7662 High Grade Glandular Intraepithelial Neoplasia 5 170007 -NCIT:C27429 High Grade Esophageal Glandular Intraepithelial Neoplasia 6 170008 -NCIT:C133402 Clinical Stage 0 Esophageal Adenocarcinoma AJCC v8 7 170009 -NCIT:C133413 Pathologic Stage 0 Esophageal Adenocarcinoma AJCC v8 7 170010 -NCIT:C8629 Stage 0 Esophageal Adenocarcinoma AJCC v7 7 170011 -NCIT:C27437 High Grade Gastric Intraepithelial Neoplasia 6 170012 -NCIT:C27461 Colorectal High Grade Intraepithelial Neoplasia 6 170013 -NCIT:C27464 Small Intestinal High Grade Intraepithelial Neoplasia 6 170014 -NCIT:C5541 High Grade Prostatic Intraepithelial Neoplasia 6 170015 -NCIT:C3642 Grade III Prostatic Intraepithelial Neoplasia 7 170016 -NCIT:C39887 High Grade Prostatic Intraepithelial Neoplasia, Signet Ring Variant 7 170017 -NCIT:C39888 High Grade Prostatic Intraepithelial Neoplasia, Mucinous Variant 7 170018 -NCIT:C39889 High Grade Prostatic Intraepithelial Neoplasia, Foamy Variant 7 170019 -NCIT:C39890 High Grade Prostatic Intraepithelial Neoplasia, Inverted Variant 7 170020 -NCIT:C39891 High Grade Prostatic Intraepithelial Neoplasia, Small Cell Neuroendocrine Variant 7 170021 -NCIT:C7360 Grade II Prostatic Intraepithelial Neoplasia 7 170022 -NCIT:C67493 High-Grade Biliary Intraepithelial Neoplasia 6 170023 -NCIT:C6877 Grade III Glandular Intraepithelial Neoplasia 6 170024 -NCIT:C133402 Clinical Stage 0 Esophageal Adenocarcinoma AJCC v8 7 170025 -NCIT:C133413 Pathologic Stage 0 Esophageal Adenocarcinoma AJCC v8 7 170026 -NCIT:C133550 Clinical Stage 0 Gastroesophageal Junction Adenocarcinoma AJCC v8 7 170027 -NCIT:C133564 Pathologic Stage 0 Gastroesophageal Junction Adenocarcinoma AJCC v8 7 170028 -NCIT:C2924 Breast Ductal Carcinoma In Situ 7 170029 -NCIT:C176005 Breast Ductal Carcinoma In Situ, Comedo Type 8 170030 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 8 170031 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 9 170032 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 9 170033 -NCIT:C5137 Breast Ductal Carcinoma In Situ, Non-Comedo Type 8 170034 -NCIT:C5138 Breast Ductal Carcinoma In Situ, Cribriform Pattern 8 170035 -NCIT:C66933 Breast Ductal Carcinoma In Situ, Solid Type 8 170036 -NCIT:C7949 Breast Ductal Carcinoma In Situ, High Grade 8 170037 -NCIT:C9456 Breast Ductal Carcinoma In Situ, Intermediate Grade 8 170038 -NCIT:C9457 Breast Ductal Carcinoma In Situ, Low Grade 8 170039 -NCIT:C3642 Grade III Prostatic Intraepithelial Neoplasia 7 170040 -NCIT:C40105 Stage 0 Fallopian Tube Cancer AJCC v7 7 170041 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 8 170042 -NCIT:C4018 Breast Lobular Carcinoma In Situ 7 170043 -NCIT:C137839 Breast Pleomorphic Lobular Carcinoma In Situ 8 170044 -NCIT:C175949 Breast Classic Lobular Carcinoma In Situ 8 170045 -NCIT:C83170 Breast Classic Lobular Carcinoma In Situ Type A 9 170046 -NCIT:C83171 Breast Classic Lobular Carcinoma In Situ Type B 9 170047 -NCIT:C175950 Breast Florid Lobular Carcinoma In Situ 8 170048 -NCIT:C4195 Breast Ductal Carcinoma In Situ and Lobular Carcinoma In Situ 7 170049 -NCIT:C4520 Cervical Adenocarcinoma In Situ 7 170050 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 8 170051 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 8 170052 -NCIT:C8629 Stage 0 Esophageal Adenocarcinoma AJCC v7 7 170053 -NCIT:C7660 Grade II Glandular Intraepithelial Neoplasia 6 170054 -NCIT:C7360 Grade II Prostatic Intraepithelial Neoplasia 7 170055 -NCIT:C7675 High Grade Cervical Glandular Intraepithelial Neoplasia 6 170056 -NCIT:C4520 Cervical Adenocarcinoma In Situ 7 170057 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 8 170058 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 8 170059 -NCIT:C95432 High Grade Pancreatic Intraepithelial Neoplasia 6 170060 -NCIT:C95918 Ampullary Flat Intraepithelial Neoplasia, High Grade 6 170061 -NCIT:C96420 Appendix High Grade Intraepithelial Neoplasia 6 170062 -NCIT:C7673 Cervical Glandular Intraepithelial Neoplasia 5 170063 -NCIT:C7674 Low Grade Cervical Glandular Intraepithelial Neoplasia 6 170064 -NCIT:C7675 High Grade Cervical Glandular Intraepithelial Neoplasia 6 170065 -NCIT:C4520 Cervical Adenocarcinoma In Situ 7 170066 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 8 170067 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 8 170068 -NCIT:C8436 Breast Atypical Ductal Hyperplasia 5 170069 -NCIT:C27881 Transitional Cell Intraepithelial Neoplasia 4 170070 -NCIT:C4116 Stage 0 Transitional Cell Carcinoma 5 170071 -NCIT:C140358 Stage 0a Renal Pelvis and Ureter Cancer AJCC v8 6 170072 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 7 170073 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 7 170074 -NCIT:C140361 Stage 0is Renal Pelvis and Ureter Cancer AJCC v8 6 170075 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 7 170076 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 7 170077 -NCIT:C39850 Stage 0 Renal Pelvis and Ureter Cancer AJCC v7 6 170078 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 7 170079 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 8 170080 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 8 170081 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 7 170082 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 8 170083 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 8 170084 -NCIT:C7517 Stage 0a Renal Pelvis and Ureter Cancer AJCC v7 7 170085 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 8 170086 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 8 170087 -NCIT:C7518 Stage 0is Renal Pelvis and Ureter Cancer AJCC v7 7 170088 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 8 170089 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 8 170090 -NCIT:C6188 Stage 0 Bladder Urothelial Carcinoma AJCC v6 and v7 6 170091 -NCIT:C3644 Stage 0is Bladder Urothelial Carcinoma AJCC v6 and v7 7 170092 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 7 170093 -NCIT:C3782 Cervical Intraepithelial Neoplasia 4 170094 -NCIT:C4630 Low Grade Cervical Intraepithelial Neoplasia 5 170095 -NCIT:C40196 Low Grade Cervical Squamous Intraepithelial Neoplasia 6 170096 -NCIT:C40199 Cervical Squamous Intraepithelial Neoplasia 1 7 170097 -NCIT:C7674 Low Grade Cervical Glandular Intraepithelial Neoplasia 6 170098 -NCIT:C7346 Cervical Squamous Intraepithelial Neoplasia 5 170099 -NCIT:C40196 Low Grade Cervical Squamous Intraepithelial Neoplasia 6 170100 -NCIT:C40199 Cervical Squamous Intraepithelial Neoplasia 1 7 170101 -NCIT:C40197 High Grade Cervical Squamous Intraepithelial Neoplasia 6 170102 -NCIT:C40198 Cervical Squamous Intraepithelial Neoplasia 2 7 170103 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 7 170104 -NCIT:C7670 High Grade Cervical Intraepithelial Neoplasia 5 170105 -NCIT:C4000 Stage 0 Cervical Cancer AJCC v6 6 170106 -NCIT:C40197 High Grade Cervical Squamous Intraepithelial Neoplasia 6 170107 -NCIT:C40198 Cervical Squamous Intraepithelial Neoplasia 2 7 170108 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 7 170109 -NCIT:C7675 High Grade Cervical Glandular Intraepithelial Neoplasia 6 170110 -NCIT:C4520 Cervical Adenocarcinoma In Situ 7 170111 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 8 170112 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 8 170113 -NCIT:C89550 Stage 0 Cervical Cancer AJCC v7 6 170114 -NCIT:C4520 Cervical Adenocarcinoma In Situ 7 170115 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 8 170116 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 8 170117 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 7 170118 -NCIT:C94676 Cervical Intraepithelial Neoplasia Grade 2/3 6 170119 -NCIT:C7673 Cervical Glandular Intraepithelial Neoplasia 5 170120 -NCIT:C7674 Low Grade Cervical Glandular Intraepithelial Neoplasia 6 170121 -NCIT:C7675 High Grade Cervical Glandular Intraepithelial Neoplasia 6 170122 -NCIT:C4520 Cervical Adenocarcinoma In Situ 7 170123 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 8 170124 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 8 170125 -NCIT:C4521 Vaginal Intraepithelial Neoplasia 4 170126 -NCIT:C4644 Low Grade Vaginal Intraepithelial Neoplasia 5 170127 -NCIT:C7663 High Grade Vaginal Intraepithelial Neoplasia 5 170128 -NCIT:C4645 Grade 2 Vaginal Intraepithelial Neoplasia 6 170129 -NCIT:C7855 Stage 0 Vaginal Cancer AJCC v6 6 170130 -NCIT:C89476 Stage 0 Vaginal Cancer AJCC v7 6 170131 -NCIT:C7348 High Grade Intraepithelial Neoplasia 4 170132 -NCIT:C27425 Esophageal High Grade Intraepithelial Neoplasia 5 170133 -NCIT:C27426 High Grade Esophageal Squamous Intraepithelial Neoplasia 6 170134 -NCIT:C133447 Clinical Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 7 170135 -NCIT:C133519 Pathologic Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 7 170136 -NCIT:C5023 Stage 0 Esophageal Squamous Cell Carcinoma AJCC v7 7 170137 -NCIT:C27429 High Grade Esophageal Glandular Intraepithelial Neoplasia 6 170138 -NCIT:C133402 Clinical Stage 0 Esophageal Adenocarcinoma AJCC v8 7 170139 -NCIT:C133413 Pathologic Stage 0 Esophageal Adenocarcinoma AJCC v8 7 170140 -NCIT:C8629 Stage 0 Esophageal Adenocarcinoma AJCC v7 7 170141 -NCIT:C3637 Stage 0 Esophageal Cancer AJCC v6 6 170142 -NCIT:C89771 Stage 0 Esophageal Cancer AJCC v7 6 170143 -NCIT:C5023 Stage 0 Esophageal Squamous Cell Carcinoma AJCC v7 7 170144 -NCIT:C8629 Stage 0 Esophageal Adenocarcinoma AJCC v7 7 170145 -NCIT:C7662 High Grade Glandular Intraepithelial Neoplasia 5 170146 -NCIT:C27429 High Grade Esophageal Glandular Intraepithelial Neoplasia 6 170147 -NCIT:C133402 Clinical Stage 0 Esophageal Adenocarcinoma AJCC v8 7 170148 -NCIT:C133413 Pathologic Stage 0 Esophageal Adenocarcinoma AJCC v8 7 170149 -NCIT:C8629 Stage 0 Esophageal Adenocarcinoma AJCC v7 7 170150 -NCIT:C27437 High Grade Gastric Intraepithelial Neoplasia 6 170151 -NCIT:C27461 Colorectal High Grade Intraepithelial Neoplasia 6 170152 -NCIT:C27464 Small Intestinal High Grade Intraepithelial Neoplasia 6 170153 -NCIT:C5541 High Grade Prostatic Intraepithelial Neoplasia 6 170154 -NCIT:C3642 Grade III Prostatic Intraepithelial Neoplasia 7 170155 -NCIT:C39887 High Grade Prostatic Intraepithelial Neoplasia, Signet Ring Variant 7 170156 -NCIT:C39888 High Grade Prostatic Intraepithelial Neoplasia, Mucinous Variant 7 170157 -NCIT:C39889 High Grade Prostatic Intraepithelial Neoplasia, Foamy Variant 7 170158 -NCIT:C39890 High Grade Prostatic Intraepithelial Neoplasia, Inverted Variant 7 170159 -NCIT:C39891 High Grade Prostatic Intraepithelial Neoplasia, Small Cell Neuroendocrine Variant 7 170160 -NCIT:C7360 Grade II Prostatic Intraepithelial Neoplasia 7 170161 -NCIT:C67493 High-Grade Biliary Intraepithelial Neoplasia 6 170162 -NCIT:C6877 Grade III Glandular Intraepithelial Neoplasia 6 170163 -NCIT:C133402 Clinical Stage 0 Esophageal Adenocarcinoma AJCC v8 7 170164 -NCIT:C133413 Pathologic Stage 0 Esophageal Adenocarcinoma AJCC v8 7 170165 -NCIT:C133550 Clinical Stage 0 Gastroesophageal Junction Adenocarcinoma AJCC v8 7 170166 -NCIT:C133564 Pathologic Stage 0 Gastroesophageal Junction Adenocarcinoma AJCC v8 7 170167 -NCIT:C2924 Breast Ductal Carcinoma In Situ 7 170168 -NCIT:C176005 Breast Ductal Carcinoma In Situ, Comedo Type 8 170169 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 8 170170 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 9 170171 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 9 170172 -NCIT:C5137 Breast Ductal Carcinoma In Situ, Non-Comedo Type 8 170173 -NCIT:C5138 Breast Ductal Carcinoma In Situ, Cribriform Pattern 8 170174 -NCIT:C66933 Breast Ductal Carcinoma In Situ, Solid Type 8 170175 -NCIT:C7949 Breast Ductal Carcinoma In Situ, High Grade 8 170176 -NCIT:C9456 Breast Ductal Carcinoma In Situ, Intermediate Grade 8 170177 -NCIT:C9457 Breast Ductal Carcinoma In Situ, Low Grade 8 170178 -NCIT:C3642 Grade III Prostatic Intraepithelial Neoplasia 7 170179 -NCIT:C40105 Stage 0 Fallopian Tube Cancer AJCC v7 7 170180 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 8 170181 -NCIT:C4018 Breast Lobular Carcinoma In Situ 7 170182 -NCIT:C137839 Breast Pleomorphic Lobular Carcinoma In Situ 8 170183 -NCIT:C175949 Breast Classic Lobular Carcinoma In Situ 8 170184 -NCIT:C83170 Breast Classic Lobular Carcinoma In Situ Type A 9 170185 -NCIT:C83171 Breast Classic Lobular Carcinoma In Situ Type B 9 170186 -NCIT:C175950 Breast Florid Lobular Carcinoma In Situ 8 170187 -NCIT:C4195 Breast Ductal Carcinoma In Situ and Lobular Carcinoma In Situ 7 170188 -NCIT:C4520 Cervical Adenocarcinoma In Situ 7 170189 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 8 170190 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 8 170191 -NCIT:C8629 Stage 0 Esophageal Adenocarcinoma AJCC v7 7 170192 -NCIT:C7660 Grade II Glandular Intraepithelial Neoplasia 6 170193 -NCIT:C7360 Grade II Prostatic Intraepithelial Neoplasia 7 170194 -NCIT:C7675 High Grade Cervical Glandular Intraepithelial Neoplasia 6 170195 -NCIT:C4520 Cervical Adenocarcinoma In Situ 7 170196 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 8 170197 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 8 170198 -NCIT:C95432 High Grade Pancreatic Intraepithelial Neoplasia 6 170199 -NCIT:C95918 Ampullary Flat Intraepithelial Neoplasia, High Grade 6 170200 -NCIT:C96420 Appendix High Grade Intraepithelial Neoplasia 6 170201 -NCIT:C7663 High Grade Vaginal Intraepithelial Neoplasia 5 170202 -NCIT:C4645 Grade 2 Vaginal Intraepithelial Neoplasia 6 170203 -NCIT:C7855 Stage 0 Vaginal Cancer AJCC v6 6 170204 -NCIT:C89476 Stage 0 Vaginal Cancer AJCC v7 6 170205 -NCIT:C7670 High Grade Cervical Intraepithelial Neoplasia 5 170206 -NCIT:C4000 Stage 0 Cervical Cancer AJCC v6 6 170207 -NCIT:C40197 High Grade Cervical Squamous Intraepithelial Neoplasia 6 170208 -NCIT:C40198 Cervical Squamous Intraepithelial Neoplasia 2 7 170209 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 7 170210 -NCIT:C7675 High Grade Cervical Glandular Intraepithelial Neoplasia 6 170211 -NCIT:C4520 Cervical Adenocarcinoma In Situ 7 170212 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 8 170213 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 8 170214 -NCIT:C89550 Stage 0 Cervical Cancer AJCC v7 6 170215 -NCIT:C4520 Cervical Adenocarcinoma In Situ 7 170216 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 8 170217 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 8 170218 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 7 170219 -NCIT:C94676 Cervical Intraepithelial Neoplasia Grade 2/3 6 170220 -NCIT:C8336 High Grade Squamous Intraepithelial Neoplasia 5 170221 -NCIT:C172706 High Grade Anal Intraepithelial Neoplasia 6 170222 -NCIT:C157574 Anal Intraepithelial Neoplasia 2 7 170223 -NCIT:C157575 Anal Intraepithelial Neoplasia 3 7 170224 -NCIT:C27275 High Grade Anal Canal Intraepithelial Neoplasia 7 170225 -NCIT:C27093 Stage 0 Squamous Cell Carcinoma 6 170226 -NCIT:C133255 Stage 0 Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 7 170227 -NCIT:C133447 Clinical Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 7 170228 -NCIT:C133519 Pathologic Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 7 170229 -NCIT:C136719 Lung Squamous Cell Carcinoma In Situ 7 170230 -NCIT:C8763 Stage 0 Lung Squamous Cell Carcinoma AJCC v6 and v7 8 170231 -NCIT:C157575 Anal Intraepithelial Neoplasia 3 7 170232 -NCIT:C27790 Penile Carcinoma In Situ 7 170233 -NCIT:C28292 Squamous Cell Carcinoma In Situ of the Nipple 7 170234 -NCIT:C2906 Skin Squamous Cell Carcinoma In Situ 7 170235 -NCIT:C62571 Bowen Disease of the Skin 8 170236 -NCIT:C3639 Tracheal Carcinoma In Situ 7 170237 -NCIT:C5023 Stage 0 Esophageal Squamous Cell Carcinoma AJCC v7 7 170238 -NCIT:C6052 Stage 0 Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 170239 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 7 170240 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 8 170241 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 8 170242 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 7 170243 -NCIT:C8903 Stage 0 Bladder Squamous Cell Carcinoma AJCC v6 and v7 7 170244 -NCIT:C27426 High Grade Esophageal Squamous Intraepithelial Neoplasia 6 170245 -NCIT:C133447 Clinical Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 7 170246 -NCIT:C133519 Pathologic Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 7 170247 -NCIT:C5023 Stage 0 Esophageal Squamous Cell Carcinoma AJCC v7 7 170248 -NCIT:C40197 High Grade Cervical Squamous Intraepithelial Neoplasia 6 170249 -NCIT:C40198 Cervical Squamous Intraepithelial Neoplasia 2 7 170250 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 7 170251 -NCIT:C4761 High Grade Vulvar Squamous Intraepithelial Lesion 6 170252 -NCIT:C7351 Grade II Squamous Intraepithelial Neoplasia 6 170253 -NCIT:C157574 Anal Intraepithelial Neoplasia 2 7 170254 -NCIT:C40198 Cervical Squamous Intraepithelial Neoplasia 2 7 170255 -NCIT:C7665 Grade II Penile Intraepithelial Neoplasia 7 170256 -NCIT:C7667 High Grade Penile Intraepithelial Neoplasia 6 170257 -NCIT:C27790 Penile Carcinoma In Situ 7 170258 -NCIT:C7665 Grade II Penile Intraepithelial Neoplasia 7 170259 -NCIT:C7668 High Grade Conjunctival Squamous Intraepithelial Neoplasia 6 170260 -NCIT:C7669 High Grade Corneal Squamous Intraepithelial Neoplasia 6 170261 -NCIT:C8368 Grade II Intraepithelial Neoplasia 5 170262 -NCIT:C4645 Grade 2 Vaginal Intraepithelial Neoplasia 6 170263 -NCIT:C7351 Grade II Squamous Intraepithelial Neoplasia 6 170264 -NCIT:C157574 Anal Intraepithelial Neoplasia 2 7 170265 -NCIT:C40198 Cervical Squamous Intraepithelial Neoplasia 2 7 170266 -NCIT:C7665 Grade II Penile Intraepithelial Neoplasia 7 170267 -NCIT:C7660 Grade II Glandular Intraepithelial Neoplasia 6 170268 -NCIT:C7360 Grade II Prostatic Intraepithelial Neoplasia 7 170269 -NCIT:C7436 Bronchial Intraepithelial Neoplasia 4 170270 -NCIT:C8334 Squamous Cell Intraepithelial Neoplasia 4 170271 -NCIT:C27423 Esophageal Squamous Intraepithelial Neoplasia 5 170272 -NCIT:C27426 High Grade Esophageal Squamous Intraepithelial Neoplasia 6 170273 -NCIT:C133447 Clinical Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 7 170274 -NCIT:C133519 Pathologic Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 7 170275 -NCIT:C5023 Stage 0 Esophageal Squamous Cell Carcinoma AJCC v7 7 170276 -NCIT:C27427 Low Grade Esophageal Squamous Intraepithelial Neoplasia 6 170277 -NCIT:C4394 Anogenital Papillomaviral Intraepithelial Neoplasia 5 170278 -NCIT:C4595 Anal Intraepithelial Neoplasia 5 170279 -NCIT:C157573 Low Grade Anal Intraepithelial Neoplasia 6 170280 -NCIT:C27238 Low Grade Anal Canal Intraepithelial Neoplasia 7 170281 -NCIT:C172706 High Grade Anal Intraepithelial Neoplasia 6 170282 -NCIT:C157574 Anal Intraepithelial Neoplasia 2 7 170283 -NCIT:C157575 Anal Intraepithelial Neoplasia 3 7 170284 -NCIT:C27275 High Grade Anal Canal Intraepithelial Neoplasia 7 170285 -NCIT:C43598 Perianal Intraepithelial Neoplasia 6 170286 -NCIT:C7490 Anal Canal Intraepithelial Neoplasia 6 170287 -NCIT:C27238 Low Grade Anal Canal Intraepithelial Neoplasia 7 170288 -NCIT:C27275 High Grade Anal Canal Intraepithelial Neoplasia 7 170289 -NCIT:C4596 Penile Intraepithelial Neoplasia 5 170290 -NCIT:C162536 Non-Human Papillomavirus-Related Penile Intraepithelial Neoplasia 6 170291 -NCIT:C162539 Differentiated (Simplex) Penile Intraepithelial Neoplasia 7 170292 -NCIT:C162541 Human Papillomavirus-Related Penile Intraepithelial Neoplasia 6 170293 -NCIT:C162542 Basaloid (Undifferentiated) Penile Intraepithelial Neoplasia 7 170294 -NCIT:C162543 Warty (Bowenoid) Penile Intraepithelial Neoplasia 7 170295 -NCIT:C162546 Warty-Basaloid Penile Intraepithelial Neoplasia 7 170296 -NCIT:C39963 Penile Bowenoid Papulosis 7 170297 -NCIT:C7666 Low Grade Penile Intraepithelial Neoplasia 6 170298 -NCIT:C7667 High Grade Penile Intraepithelial Neoplasia 6 170299 -NCIT:C27790 Penile Carcinoma In Situ 7 170300 -NCIT:C7665 Grade II Penile Intraepithelial Neoplasia 7 170301 -NCIT:C4756 Vulvar Intraepithelial Neoplasia 5 170302 -NCIT:C128142 Vulvar Squamous Intraepithelial Lesion, HPV-Associated 6 170303 -NCIT:C4760 Low Grade Vulvar Squamous Intraepithelial Lesion 7 170304 -NCIT:C4761 High Grade Vulvar Squamous Intraepithelial Lesion 7 170305 -NCIT:C37272 Vulvar Intraepithelial Neoplasia, HPV-Independent 6 170306 -NCIT:C4522 Stage 0 Vulvar Cancer AJCC v6 6 170307 -NCIT:C89445 Stage 0 Vulvar Cancer AJCC v7 6 170308 -NCIT:C6093 Corneal Squamous Intraepithelial Neoplasia 5 170309 -NCIT:C6094 Low Grade Corneal Squamous Intraepithelial Neoplasia 6 170310 -NCIT:C7669 High Grade Corneal Squamous Intraepithelial Neoplasia 6 170311 -NCIT:C6120 Conjunctival Squamous Intraepithelial Neoplasia 5 170312 -NCIT:C6097 Low Grade Conjunctival Squamous Intraepithelial Neoplasia 6 170313 -NCIT:C7668 High Grade Conjunctival Squamous Intraepithelial Neoplasia 6 170314 -NCIT:C7346 Cervical Squamous Intraepithelial Neoplasia 5 170315 -NCIT:C40196 Low Grade Cervical Squamous Intraepithelial Neoplasia 6 170316 -NCIT:C40199 Cervical Squamous Intraepithelial Neoplasia 1 7 170317 -NCIT:C40197 High Grade Cervical Squamous Intraepithelial Neoplasia 6 170318 -NCIT:C40198 Cervical Squamous Intraepithelial Neoplasia 2 7 170319 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 7 170320 -NCIT:C8335 Low Grade Squamous Intraepithelial Neoplasia 5 170321 -NCIT:C157573 Low Grade Anal Intraepithelial Neoplasia 6 170322 -NCIT:C27238 Low Grade Anal Canal Intraepithelial Neoplasia 7 170323 -NCIT:C27427 Low Grade Esophageal Squamous Intraepithelial Neoplasia 6 170324 -NCIT:C40196 Low Grade Cervical Squamous Intraepithelial Neoplasia 6 170325 -NCIT:C40199 Cervical Squamous Intraepithelial Neoplasia 1 7 170326 -NCIT:C4760 Low Grade Vulvar Squamous Intraepithelial Lesion 6 170327 -NCIT:C6094 Low Grade Corneal Squamous Intraepithelial Neoplasia 6 170328 -NCIT:C6097 Low Grade Conjunctival Squamous Intraepithelial Neoplasia 6 170329 -NCIT:C7666 Low Grade Penile Intraepithelial Neoplasia 6 170330 -NCIT:C8336 High Grade Squamous Intraepithelial Neoplasia 5 170331 -NCIT:C172706 High Grade Anal Intraepithelial Neoplasia 6 170332 -NCIT:C157574 Anal Intraepithelial Neoplasia 2 7 170333 -NCIT:C157575 Anal Intraepithelial Neoplasia 3 7 170334 -NCIT:C27275 High Grade Anal Canal Intraepithelial Neoplasia 7 170335 -NCIT:C27093 Stage 0 Squamous Cell Carcinoma 6 170336 -NCIT:C133255 Stage 0 Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 7 170337 -NCIT:C133447 Clinical Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 7 170338 -NCIT:C133519 Pathologic Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 7 170339 -NCIT:C136719 Lung Squamous Cell Carcinoma In Situ 7 170340 -NCIT:C8763 Stage 0 Lung Squamous Cell Carcinoma AJCC v6 and v7 8 170341 -NCIT:C157575 Anal Intraepithelial Neoplasia 3 7 170342 -NCIT:C27790 Penile Carcinoma In Situ 7 170343 -NCIT:C28292 Squamous Cell Carcinoma In Situ of the Nipple 7 170344 -NCIT:C2906 Skin Squamous Cell Carcinoma In Situ 7 170345 -NCIT:C62571 Bowen Disease of the Skin 8 170346 -NCIT:C3639 Tracheal Carcinoma In Situ 7 170347 -NCIT:C5023 Stage 0 Esophageal Squamous Cell Carcinoma AJCC v7 7 170348 -NCIT:C6052 Stage 0 Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 170349 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 7 170350 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 8 170351 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 8 170352 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 7 170353 -NCIT:C8903 Stage 0 Bladder Squamous Cell Carcinoma AJCC v6 and v7 7 170354 -NCIT:C27426 High Grade Esophageal Squamous Intraepithelial Neoplasia 6 170355 -NCIT:C133447 Clinical Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 7 170356 -NCIT:C133519 Pathologic Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 7 170357 -NCIT:C5023 Stage 0 Esophageal Squamous Cell Carcinoma AJCC v7 7 170358 -NCIT:C40197 High Grade Cervical Squamous Intraepithelial Neoplasia 6 170359 -NCIT:C40198 Cervical Squamous Intraepithelial Neoplasia 2 7 170360 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 7 170361 -NCIT:C4761 High Grade Vulvar Squamous Intraepithelial Lesion 6 170362 -NCIT:C7351 Grade II Squamous Intraepithelial Neoplasia 6 170363 -NCIT:C157574 Anal Intraepithelial Neoplasia 2 7 170364 -NCIT:C40198 Cervical Squamous Intraepithelial Neoplasia 2 7 170365 -NCIT:C7665 Grade II Penile Intraepithelial Neoplasia 7 170366 -NCIT:C7667 High Grade Penile Intraepithelial Neoplasia 6 170367 -NCIT:C27790 Penile Carcinoma In Situ 7 170368 -NCIT:C7665 Grade II Penile Intraepithelial Neoplasia 7 170369 -NCIT:C7668 High Grade Conjunctival Squamous Intraepithelial Neoplasia 6 170370 -NCIT:C7669 High Grade Corneal Squamous Intraepithelial Neoplasia 6 170371 -NCIT:C8367 Low Grade Intraepithelial Neoplasia 4 170372 -NCIT:C4630 Low Grade Cervical Intraepithelial Neoplasia 5 170373 -NCIT:C40196 Low Grade Cervical Squamous Intraepithelial Neoplasia 6 170374 -NCIT:C40199 Cervical Squamous Intraepithelial Neoplasia 1 7 170375 -NCIT:C7674 Low Grade Cervical Glandular Intraepithelial Neoplasia 6 170376 -NCIT:C4644 Low Grade Vaginal Intraepithelial Neoplasia 5 170377 -NCIT:C4840 Esophageal Low Grade Intraepithelial Neoplasia 5 170378 -NCIT:C27427 Low Grade Esophageal Squamous Intraepithelial Neoplasia 6 170379 -NCIT:C27428 Low Grade Esophageal Glandular Intraepithelial Neoplasia 6 170380 -NCIT:C7661 Low Grade Glandular Intraepithelial Neoplasia 5 170381 -NCIT:C172803 Low Grade Pancreatic Intraepithelial Neoplasia 6 170382 -NCIT:C4846 Pancreatic Intraepithelial Neoplasia-2 7 170383 -NCIT:C6820 Pancreatic Intraepithelial Neoplasia-1 7 170384 -NCIT:C95429 Pancreatic Intraepithelial Neoplasia-1A 8 170385 -NCIT:C95430 Pancreatic Intraepithelial Neoplasia-1B 8 170386 -NCIT:C172804 Low Grade Biliary Intraepithelial Neoplasia 6 170387 -NCIT:C67491 Biliary Intraepithelial Neoplasia-1 7 170388 -NCIT:C67492 Biliary Intraepithelial Neoplasia-2 7 170389 -NCIT:C27428 Low Grade Esophageal Glandular Intraepithelial Neoplasia 6 170390 -NCIT:C27436 Low Grade Gastric Intraepithelial Neoplasia 6 170391 -NCIT:C27460 Colorectal Low Grade Intraepithelial Neoplasia 6 170392 -NCIT:C27463 Small Intestinal Low Grade Intraepithelial Neoplasia 6 170393 -NCIT:C5542 Low Grade Prostatic Intraepithelial Neoplasia 6 170394 -NCIT:C7674 Low Grade Cervical Glandular Intraepithelial Neoplasia 6 170395 -NCIT:C96419 Appendix Low Grade Intraepithelial Neoplasia 6 170396 -NCIT:C8335 Low Grade Squamous Intraepithelial Neoplasia 5 170397 -NCIT:C157573 Low Grade Anal Intraepithelial Neoplasia 6 170398 -NCIT:C27238 Low Grade Anal Canal Intraepithelial Neoplasia 7 170399 -NCIT:C27427 Low Grade Esophageal Squamous Intraepithelial Neoplasia 6 170400 -NCIT:C40196 Low Grade Cervical Squamous Intraepithelial Neoplasia 6 170401 -NCIT:C40199 Cervical Squamous Intraepithelial Neoplasia 1 7 170402 -NCIT:C4760 Low Grade Vulvar Squamous Intraepithelial Lesion 6 170403 -NCIT:C6094 Low Grade Corneal Squamous Intraepithelial Neoplasia 6 170404 -NCIT:C6097 Low Grade Conjunctival Squamous Intraepithelial Neoplasia 6 170405 -NCIT:C7666 Low Grade Penile Intraepithelial Neoplasia 6 170406 -NCIT:C8962 Digestive System Intraepithelial Neoplasia 4 170407 -NCIT:C133550 Clinical Stage 0 Gastroesophageal Junction Adenocarcinoma AJCC v8 5 170408 -NCIT:C133564 Pathologic Stage 0 Gastroesophageal Junction Adenocarcinoma AJCC v8 5 170409 -NCIT:C3955 Gastric Intraepithelial Neoplasia 5 170410 -NCIT:C27436 Low Grade Gastric Intraepithelial Neoplasia 6 170411 -NCIT:C27437 High Grade Gastric Intraepithelial Neoplasia 6 170412 -NCIT:C4595 Anal Intraepithelial Neoplasia 5 170413 -NCIT:C157573 Low Grade Anal Intraepithelial Neoplasia 6 170414 -NCIT:C27238 Low Grade Anal Canal Intraepithelial Neoplasia 7 170415 -NCIT:C172706 High Grade Anal Intraepithelial Neoplasia 6 170416 -NCIT:C157574 Anal Intraepithelial Neoplasia 2 7 170417 -NCIT:C157575 Anal Intraepithelial Neoplasia 3 7 170418 -NCIT:C27275 High Grade Anal Canal Intraepithelial Neoplasia 7 170419 -NCIT:C43598 Perianal Intraepithelial Neoplasia 6 170420 -NCIT:C7490 Anal Canal Intraepithelial Neoplasia 6 170421 -NCIT:C27238 Low Grade Anal Canal Intraepithelial Neoplasia 7 170422 -NCIT:C27275 High Grade Anal Canal Intraepithelial Neoplasia 7 170423 -NCIT:C4839 Esophageal Intraepithelial Neoplasia 5 170424 -NCIT:C27423 Esophageal Squamous Intraepithelial Neoplasia 6 170425 -NCIT:C27426 High Grade Esophageal Squamous Intraepithelial Neoplasia 7 170426 -NCIT:C133447 Clinical Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 8 170427 -NCIT:C133519 Pathologic Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 8 170428 -NCIT:C5023 Stage 0 Esophageal Squamous Cell Carcinoma AJCC v7 8 170429 -NCIT:C27427 Low Grade Esophageal Squamous Intraepithelial Neoplasia 7 170430 -NCIT:C27424 Esophageal Glandular Intraepithelial Neoplasia 6 170431 -NCIT:C27428 Low Grade Esophageal Glandular Intraepithelial Neoplasia 7 170432 -NCIT:C27429 High Grade Esophageal Glandular Intraepithelial Neoplasia 7 170433 -NCIT:C133402 Clinical Stage 0 Esophageal Adenocarcinoma AJCC v8 8 170434 -NCIT:C133413 Pathologic Stage 0 Esophageal Adenocarcinoma AJCC v8 8 170435 -NCIT:C8629 Stage 0 Esophageal Adenocarcinoma AJCC v7 8 170436 -NCIT:C95613 Intraepithelial Neoplasia in Barrett Esophagus 7 170437 -NCIT:C27425 Esophageal High Grade Intraepithelial Neoplasia 6 170438 -NCIT:C27426 High Grade Esophageal Squamous Intraepithelial Neoplasia 7 170439 -NCIT:C133447 Clinical Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 8 170440 -NCIT:C133519 Pathologic Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 8 170441 -NCIT:C5023 Stage 0 Esophageal Squamous Cell Carcinoma AJCC v7 8 170442 -NCIT:C27429 High Grade Esophageal Glandular Intraepithelial Neoplasia 7 170443 -NCIT:C133402 Clinical Stage 0 Esophageal Adenocarcinoma AJCC v8 8 170444 -NCIT:C133413 Pathologic Stage 0 Esophageal Adenocarcinoma AJCC v8 8 170445 -NCIT:C8629 Stage 0 Esophageal Adenocarcinoma AJCC v7 8 170446 -NCIT:C3637 Stage 0 Esophageal Cancer AJCC v6 7 170447 -NCIT:C89771 Stage 0 Esophageal Cancer AJCC v7 7 170448 -NCIT:C5023 Stage 0 Esophageal Squamous Cell Carcinoma AJCC v7 8 170449 -NCIT:C8629 Stage 0 Esophageal Adenocarcinoma AJCC v7 8 170450 -NCIT:C4840 Esophageal Low Grade Intraepithelial Neoplasia 6 170451 -NCIT:C27427 Low Grade Esophageal Squamous Intraepithelial Neoplasia 7 170452 -NCIT:C27428 Low Grade Esophageal Glandular Intraepithelial Neoplasia 7 170453 -NCIT:C4843 Biliary Intraepithelial Neoplasia 5 170454 -NCIT:C172804 Low Grade Biliary Intraepithelial Neoplasia 6 170455 -NCIT:C67491 Biliary Intraepithelial Neoplasia-1 7 170456 -NCIT:C67492 Biliary Intraepithelial Neoplasia-2 7 170457 -NCIT:C43606 Gallbladder Biliary Intraepithelial Neoplasia 6 170458 -NCIT:C43607 Gallbladder Flat Biliary Intraepithelial Neoplasia 7 170459 -NCIT:C43609 Gallbladder Papillary Biliary Intraepithelial Neoplasia 7 170460 -NCIT:C67493 High-Grade Biliary Intraepithelial Neoplasia 6 170461 -NCIT:C96945 Bile Duct Biliary Intraepithelial Neoplasia 6 170462 -NCIT:C96942 Extrahepatic Bile Duct Biliary Intraepithelial Neoplasia 7 170463 -NCIT:C96943 Intrahepatic Bile Duct Biliary Intraepithelial Neoplasia 7 170464 -NCIT:C4845 Pancreatic Intraepithelial Neoplasia 5 170465 -NCIT:C172803 Low Grade Pancreatic Intraepithelial Neoplasia 6 170466 -NCIT:C4846 Pancreatic Intraepithelial Neoplasia-2 7 170467 -NCIT:C6820 Pancreatic Intraepithelial Neoplasia-1 7 170468 -NCIT:C95429 Pancreatic Intraepithelial Neoplasia-1A 8 170469 -NCIT:C95430 Pancreatic Intraepithelial Neoplasia-1B 8 170470 -NCIT:C95432 High Grade Pancreatic Intraepithelial Neoplasia 6 170471 -NCIT:C7658 Intestinal Intraepithelial Neoplasia 5 170472 -NCIT:C27459 Colorectal Intraepithelial Neoplasia 6 170473 -NCIT:C27460 Colorectal Low Grade Intraepithelial Neoplasia 7 170474 -NCIT:C27461 Colorectal High Grade Intraepithelial Neoplasia 7 170475 -NCIT:C27462 Small Intestinal Intraepithelial Neoplasia 6 170476 -NCIT:C27463 Small Intestinal Low Grade Intraepithelial Neoplasia 7 170477 -NCIT:C27464 Small Intestinal High Grade Intraepithelial Neoplasia 7 170478 -NCIT:C95918 Ampullary Flat Intraepithelial Neoplasia, High Grade 5 170479 -NCIT:C96418 Appendix Intraepithelial Neoplasia 5 170480 -NCIT:C96419 Appendix Low Grade Intraepithelial Neoplasia 6 170481 -NCIT:C96420 Appendix High Grade Intraepithelial Neoplasia 6 170482 -NCIT:C8429 Papillary Epithelial Neoplasm 3 170483 -NCIT:C174022 Aggressive Papillary Tumor 4 170484 -NCIT:C27883 Papillary Urothelial Neoplasm 4 170485 -NCIT:C140358 Stage 0a Renal Pelvis and Ureter Cancer AJCC v8 5 170486 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 6 170487 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 6 170488 -NCIT:C191672 Papillary Urothelial Neoplasm of Low Malignant Potential 5 170489 -NCIT:C27884 Bladder Papillary Urothelial Neoplasm of Low Malignant Potential 6 170490 -NCIT:C191673 Non-Invasive Papillary Urothelial Carcinoma, Low Grade 5 170491 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 6 170492 -NCIT:C191675 Non-Invasive Papillary Urothelial Carcinoma, High Grade 5 170493 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 6 170494 -NCIT:C191686 Invasive Micropapillary Urothelial Carcinoma 5 170495 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 6 170496 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 7 170497 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 6 170498 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 7 170499 -NCIT:C3842 Urothelial Papilloma 5 170500 -NCIT:C39858 Bladder Urothelial Papilloma 6 170501 -NCIT:C39859 Bladder Inverted Papilloma 7 170502 -NCIT:C4528 Renal Pelvis Urothelial Papilloma 6 170503 -NCIT:C6187 Renal Pelvis Inverted Papilloma 7 170504 -NCIT:C5061 Urethral Urothelial Papilloma 6 170505 -NCIT:C6173 Urethral Inverted Papilloma 7 170506 -NCIT:C6160 Ureter Urothelial Papilloma 6 170507 -NCIT:C6174 Ureter Inverted Papilloma 7 170508 -NCIT:C6192 Inverted Urothelial Papilloma 6 170509 -NCIT:C39859 Bladder Inverted Papilloma 7 170510 -NCIT:C6173 Urethral Inverted Papilloma 7 170511 -NCIT:C6174 Ureter Inverted Papilloma 7 170512 -NCIT:C6187 Renal Pelvis Inverted Papilloma 7 170513 -NCIT:C39857 Bladder Papillary Urothelial Neoplasm 5 170514 -NCIT:C39831 Bladder Non-Invasive Papillary Urothelial Neoplasm 6 170515 -NCIT:C158382 Bladder Non-Invasive Papillary Urothelial Carcinoma 7 170516 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 8 170517 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 8 170518 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 8 170519 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 8 170520 -NCIT:C27884 Bladder Papillary Urothelial Neoplasm of Low Malignant Potential 7 170521 -NCIT:C39858 Bladder Urothelial Papilloma 7 170522 -NCIT:C39859 Bladder Inverted Papilloma 8 170523 -NCIT:C7383 Bladder Papillary Urothelial Carcinoma 6 170524 -NCIT:C158382 Bladder Non-Invasive Papillary Urothelial Carcinoma 7 170525 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 8 170526 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 8 170527 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 8 170528 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 8 170529 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 7 170530 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 170531 -NCIT:C7517 Stage 0a Renal Pelvis and Ureter Cancer AJCC v7 5 170532 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 6 170533 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 6 170534 -NCIT:C8603 Renal Pelvis Papillary Urothelial Neoplasm 5 170535 -NCIT:C4528 Renal Pelvis Urothelial Papilloma 6 170536 -NCIT:C6187 Renal Pelvis Inverted Papilloma 7 170537 -NCIT:C6148 Renal Pelvis Papillary Urothelial Carcinoma 6 170538 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 7 170539 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 7 170540 -NCIT:C2927 Papillary Carcinoma 4 170541 -NCIT:C164144 Micropapillary Carcinoma 5 170542 -NCIT:C128847 Lung Micropapillary Adenocarcinoma 6 170543 -NCIT:C172813 Invasive Pancreatic Micropapillary Adenocarcinoma 6 170544 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 6 170545 -NCIT:C27534 Digital Papillary Adenocarcinoma 6 170546 -NCIT:C36084 Invasive Breast Micropapillary Carcinoma 6 170547 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 6 170548 -NCIT:C65182 Micropapillary Transitional Cell Carcinoma 6 170549 -NCIT:C191686 Invasive Micropapillary Urothelial Carcinoma 7 170550 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 8 170551 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 170552 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 8 170553 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 170554 -NCIT:C6882 Micropapillary Serous Carcinoma 6 170555 -NCIT:C96491 Colorectal Micropapillary Adenocarcinoma 6 170556 -NCIT:C96492 Colon Micropapillary Adenocarcinoma 7 170557 -NCIT:C96493 Rectal Micropapillary Adenocarcinoma 7 170558 -NCIT:C2853 Papillary Adenocarcinoma 5 170559 -NCIT:C172813 Invasive Pancreatic Micropapillary Adenocarcinoma 6 170560 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 6 170561 -NCIT:C27254 Papillary Eccrine Carcinoma 6 170562 -NCIT:C27534 Digital Papillary Adenocarcinoma 7 170563 -NCIT:C27937 Thymic Low Grade Papillary Adenocarcinoma 6 170564 -NCIT:C3777 Papillary Cystadenocarcinoma 6 170565 -NCIT:C65204 Papillary Mucinous Cystadenocarcinoma 7 170566 -NCIT:C8377 Papillary Serous Cystadenocarcinoma 7 170567 -NCIT:C4035 Thyroid Gland Papillary Carcinoma 6 170568 -NCIT:C123903 Childhood Thyroid Gland Papillary Carcinoma 7 170569 -NCIT:C126409 Warthin-Like Variant Thyroid Gland Papillary Carcinoma 7 170570 -NCIT:C126410 Thyroid Gland Papillary Carcinoma with Fibromatosis/Fasciitis-Like/Desmoid-Type Stroma 7 170571 -NCIT:C126594 Follicular Variant Thyroid Gland Papillary Carcinoma 7 170572 -NCIT:C66850 Invasive Encapsulated Follicular Variant Thyroid Gland Papillary Carcinoma 8 170573 -NCIT:C7381 Invasive Follicular Variant Thyroid Gland Papillary Carcinoma 8 170574 -NCIT:C140960 Thyroid Gland Papillary Carcinoma by AJCC v7 Stage 7 170575 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 8 170576 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 8 170577 -NCIT:C9083 Stage IV Thyroid Gland Papillary Carcinoma AJCC v7 8 170578 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 9 170579 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 9 170580 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 9 170581 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 8 170582 -NCIT:C140976 Thyroid Gland Papillary Carcinoma by AJCC v8 Stage 7 170583 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 8 170584 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 9 170585 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 9 170586 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 8 170587 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 9 170588 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 9 170589 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 8 170590 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 8 170591 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 9 170592 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 9 170593 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 7 170594 -NCIT:C156034 Encapsulated Variant Thyroid Gland Papillary Carcinoma 7 170595 -NCIT:C156045 Spindle Cell Variant Thyroid Gland Papillary Carcinoma 7 170596 -NCIT:C156050 Hobnail Variant Thyroid Gland Papillary Carcinoma 7 170597 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 7 170598 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 7 170599 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 7 170600 -NCIT:C187644 Classic Thyroid Gland Papillary Carcinoma 7 170601 -NCIT:C35558 Tall Cell Variant Thyroid Gland Papillary Carcinoma 7 170602 -NCIT:C35830 Columnar Cell Variant Thyroid Gland Papillary Carcinoma 7 170603 -NCIT:C37304 Multicentric Thyroid Gland Papillary Carcinoma 7 170604 -NCIT:C46004 Thyroid Gland Papillary Microcarcinoma 7 170605 -NCIT:C46092 Macrofollicular Variant Thyroid Gland Papillary Carcinoma 7 170606 -NCIT:C46093 Oncocytic Variant Thyroid Gland Papillary Carcinoma 7 170607 -NCIT:C46094 Clear Cell Variant Thyroid Gland Papillary Carcinoma 7 170608 -NCIT:C46095 Solid/Trabecular Variant Thyroid Gland Papillary Carcinoma 7 170609 -NCIT:C7427 Diffuse Sclerosing Variant Thyroid Gland Papillary Carcinoma 7 170610 -NCIT:C4182 Serous Surface Papillary Carcinoma 6 170611 -NCIT:C6256 Ovarian Serous Surface Papillary Adenocarcinoma 7 170612 -NCIT:C6882 Micropapillary Serous Carcinoma 7 170613 -NCIT:C7695 Primary Peritoneal Serous Papillary Adenocarcinoma 7 170614 -NCIT:C8377 Papillary Serous Cystadenocarcinoma 7 170615 -NCIT:C54400 Nasopharyngeal Papillary Adenocarcinoma 6 170616 -NCIT:C5472 Gastric Papillary Adenocarcinoma 6 170617 -NCIT:C67560 Endolymphatic Sac Tumor 6 170618 -NCIT:C6975 Papillary Renal Cell Carcinoma 6 170619 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 7 170620 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 8 170621 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 8 170622 -NCIT:C190505 Unresectable Papillary Renal Cell Carcinoma 7 170623 -NCIT:C27886 Type 1 Papillary Renal Cell Carcinoma 7 170624 -NCIT:C27887 Type 2 Papillary Renal Cell Carcinoma 7 170625 -NCIT:C27890 Sporadic Papillary Renal Cell Carcinoma 7 170626 -NCIT:C9222 Hereditary Papillary Renal Cell Carcinoma 7 170627 -NCIT:C7438 Invasive Papillary Adenocarcinoma 6 170628 -NCIT:C36085 Invasive Breast Papillary Carcinoma 7 170629 -NCIT:C176010 Encapsulated Breast Papillary Carcinoma with Invasion 8 170630 -NCIT:C176012 Invasive Breast Solid Papillary Carcinoma 8 170631 -NCIT:C36084 Invasive Breast Micropapillary Carcinoma 8 170632 -NCIT:C7439 Breast Papillary Ductal Carcinoma In Situ with Invasion 8 170633 -NCIT:C39896 Prostate Ductal Adenocarcinoma, Papillary Pattern 7 170634 -NCIT:C5650 Lung Papillary Adenocarcinoma 7 170635 -NCIT:C128847 Lung Micropapillary Adenocarcinoma 8 170636 -NCIT:C7381 Invasive Follicular Variant Thyroid Gland Papillary Carcinoma 7 170637 -NCIT:C95967 Ampulla of Vater Invasive Papillary Adenocarcinoma 7 170638 -NCIT:C9134 Breast Papillary Carcinoma 6 170639 -NCIT:C176009 Encapsulated Breast Papillary Carcinoma 7 170640 -NCIT:C176010 Encapsulated Breast Papillary Carcinoma with Invasion 8 170641 -NCIT:C36085 Invasive Breast Papillary Carcinoma 7 170642 -NCIT:C176010 Encapsulated Breast Papillary Carcinoma with Invasion 8 170643 -NCIT:C176012 Invasive Breast Solid Papillary Carcinoma 8 170644 -NCIT:C36084 Invasive Breast Micropapillary Carcinoma 8 170645 -NCIT:C7439 Breast Papillary Ductal Carcinoma In Situ with Invasion 8 170646 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 7 170647 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 8 170648 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 8 170649 -NCIT:C6870 Breast Solid Papillary Carcinoma 7 170650 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 8 170651 -NCIT:C176012 Invasive Breast Solid Papillary Carcinoma 8 170652 -NCIT:C96491 Colorectal Micropapillary Adenocarcinoma 6 170653 -NCIT:C96492 Colon Micropapillary Adenocarcinoma 7 170654 -NCIT:C96493 Rectal Micropapillary Adenocarcinoma 7 170655 -NCIT:C4102 Papillary Squamous Cell Carcinoma 5 170656 -NCIT:C128060 Vaginal Papillary Carcinoma 6 170657 -NCIT:C164248 Warty Carcinoma 6 170658 -NCIT:C40191 Cervical Warty Carcinoma 7 170659 -NCIT:C40248 Vaginal Warty Carcinoma 7 170660 -NCIT:C40287 Vulvar Warty Carcinoma 7 170661 -NCIT:C6981 Warty Carcinoma of the Penis 7 170662 -NCIT:C3781 Verrucous Carcinoma 6 170663 -NCIT:C165465 Skin Verrucous Carcinoma 7 170664 -NCIT:C6811 Plantar Verrucous Carcinoma 8 170665 -NCIT:C27420 Esophageal Verrucous Carcinoma 7 170666 -NCIT:C27678 Human Papillomavirus-Related Verrucous Carcinoma 7 170667 -NCIT:C39832 Bladder Verrucous Carcinoma 7 170668 -NCIT:C39833 Schistosoma Hematobium-Related Bladder Verrucous Carcinoma 8 170669 -NCIT:C39874 Urethral Verrucous Carcinoma 7 170670 -NCIT:C40190 Cervical Verrucous Carcinoma 7 170671 -NCIT:C6325 Vaginal Verrucous Carcinoma 7 170672 -NCIT:C6383 Vulvar Verrucous Carcinoma 7 170673 -NCIT:C6982 Verrucous Carcinoma of the Penis 7 170674 -NCIT:C159247 Carcinoma Cuniculatum of the Penis 8 170675 -NCIT:C7470 Anal Verrucous Carcinoma 7 170676 -NCIT:C8174 Oral Cavity Verrucous Carcinoma 7 170677 -NCIT:C179894 Oral Cavity Carcinoma Cuniculatum 8 170678 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 8 170679 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 8 170680 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 8 170681 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 8 170682 -NCIT:C8188 Laryngeal Verrucous Carcinoma 7 170683 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 8 170684 -NCIT:C8189 Glottis Verrucous Carcinoma 8 170685 -NCIT:C8190 Subglottic Verrucous Carcinoma 8 170686 -NCIT:C8191 Supraglottic Verrucous Carcinoma 8 170687 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 170688 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 170689 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 170690 -NCIT:C8244 Stage IV Laryngeal Verrucous Carcinoma AJCC v7 8 170691 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 9 170692 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 9 170693 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 9 170694 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 170695 -NCIT:C40192 Cervical Papillary Squamous Cell Carcinoma 6 170696 -NCIT:C40191 Cervical Warty Carcinoma 7 170697 -NCIT:C40194 Cervical Squamotransitional Carcinoma 7 170698 -NCIT:C45502 Lung Squamous Cell Carcinoma, Papillary Variant 6 170699 -NCIT:C54335 Laryngeal Papillary Squamous Cell Carcinoma 6 170700 -NCIT:C65164 Non-Invasive Papillary Squamous Cell Carcinoma 6 170701 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 7 170702 -NCIT:C6983 Papillary Carcinoma of the Penis 6 170703 -NCIT:C103340 Papillary Carcinoma of the Penis, Not Otherwise Specified 7 170704 -NCIT:C159249 Papillary-Basaloid Carcinoma of the Penis 7 170705 -NCIT:C6981 Warty Carcinoma of the Penis 7 170706 -NCIT:C6982 Verrucous Carcinoma of the Penis 7 170707 -NCIT:C159247 Carcinoma Cuniculatum of the Penis 8 170708 -NCIT:C4122 Papillary Transitional Cell Carcinoma 5 170709 -NCIT:C6148 Renal Pelvis Papillary Urothelial Carcinoma 6 170710 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 7 170711 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 7 170712 -NCIT:C65181 Non-Invasive Papillary Transitional Cell Carcinoma 6 170713 -NCIT:C140358 Stage 0a Renal Pelvis and Ureter Cancer AJCC v8 7 170714 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 8 170715 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 8 170716 -NCIT:C158382 Bladder Non-Invasive Papillary Urothelial Carcinoma 7 170717 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 8 170718 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 8 170719 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 8 170720 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 8 170721 -NCIT:C191673 Non-Invasive Papillary Urothelial Carcinoma, Low Grade 7 170722 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 8 170723 -NCIT:C191675 Non-Invasive Papillary Urothelial Carcinoma, High Grade 7 170724 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 8 170725 -NCIT:C7517 Stage 0a Renal Pelvis and Ureter Cancer AJCC v7 7 170726 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 8 170727 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 8 170728 -NCIT:C65182 Micropapillary Transitional Cell Carcinoma 6 170729 -NCIT:C191686 Invasive Micropapillary Urothelial Carcinoma 7 170730 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 8 170731 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 170732 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 8 170733 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 170734 -NCIT:C7383 Bladder Papillary Urothelial Carcinoma 6 170735 -NCIT:C158382 Bladder Non-Invasive Papillary Urothelial Carcinoma 7 170736 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 8 170737 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 8 170738 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 8 170739 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 8 170740 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 7 170741 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 170742 -NCIT:C65163 Papillary Carcinoma In Situ 5 170743 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 6 170744 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 7 170745 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 7 170746 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 6 170747 -NCIT:C3713 Papillomatosis 4 170748 -NCIT:C128637 Recurrent Respiratory Papillomatosis 5 170749 -NCIT:C157733 Laryngeal Papillomatosis 6 170750 -NCIT:C65198 Glandular Papillomatosis 5 170751 -NCIT:C7363 Intraductal Papillomatosis 5 170752 -NCIT:C5201 Breast Intraductal Papillomatosis 6 170753 -NCIT:C9503 Juvenile Breast Papillomatosis 7 170754 -NCIT:C9009 Squamous Papillomatosis 5 170755 -NCIT:C40116 Fallopian Tube Metaplastic Papillary Tumor 4 170756 -NCIT:C4179 Papillary Cystic Neoplasm 4 170757 -NCIT:C121955 Clear Cell Papillary Renal Tumor 5 170758 -NCIT:C2974 Papillary Cystadenoma 5 170759 -NCIT:C155952 Uterine Ligament Papillary Cystadenoma 6 170760 -NCIT:C179921 Broad Ligament Papillary Cystadenoma 7 170761 -NCIT:C40142 Uterine Ligament Papillary Cystadenoma Associated with von Hippel-Lindau Disease 7 170762 -NCIT:C155953 Epididymal Papillary Cystadenoma 6 170763 -NCIT:C4178 Borderline Papillary Cystadenoma 6 170764 -NCIT:C4183 Borderline Papillary Serous Cystadenoma 7 170765 -NCIT:C4186 Borderline Papillary Mucinous Cystadenoma 7 170766 -NCIT:C4180 Papillary Serous Cystadenoma 6 170767 -NCIT:C4183 Borderline Papillary Serous Cystadenoma 7 170768 -NCIT:C7278 Ovarian Papillary Cystadenoma 7 170769 -NCIT:C4184 Papillary Mucinous Cystadenoma 6 170770 -NCIT:C4186 Borderline Papillary Mucinous Cystadenoma 7 170771 -NCIT:C65203 Clear Cell Papillary Cystadenoma 6 170772 -NCIT:C35834 Salivary Gland Intraductal Papilloma 5 170773 -NCIT:C3777 Papillary Cystadenocarcinoma 5 170774 -NCIT:C65204 Papillary Mucinous Cystadenocarcinoma 6 170775 -NCIT:C8377 Papillary Serous Cystadenocarcinoma 6 170776 -NCIT:C5206 Breast Papillary Neoplasm 4 170777 -NCIT:C36090 Breast Intraductal Papillary Neoplasm 5 170778 -NCIT:C3863 Breast Intraductal Papilloma 6 170779 -NCIT:C27944 Breast Sclerosing Papilloma 7 170780 -NCIT:C36087 Breast Central Papilloma 7 170781 -NCIT:C36088 Breast Peripheral Papilloma 7 170782 -NCIT:C36089 Breast Atypical Papilloma 7 170783 -NCIT:C5201 Breast Intraductal Papillomatosis 7 170784 -NCIT:C9503 Juvenile Breast Papillomatosis 8 170785 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 6 170786 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 7 170787 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 7 170788 -NCIT:C9134 Breast Papillary Carcinoma 5 170789 -NCIT:C176009 Encapsulated Breast Papillary Carcinoma 6 170790 -NCIT:C176010 Encapsulated Breast Papillary Carcinoma with Invasion 7 170791 -NCIT:C36085 Invasive Breast Papillary Carcinoma 6 170792 -NCIT:C176010 Encapsulated Breast Papillary Carcinoma with Invasion 7 170793 -NCIT:C176012 Invasive Breast Solid Papillary Carcinoma 7 170794 -NCIT:C36084 Invasive Breast Micropapillary Carcinoma 7 170795 -NCIT:C7439 Breast Papillary Ductal Carcinoma In Situ with Invasion 7 170796 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 6 170797 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 7 170798 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 7 170799 -NCIT:C6870 Breast Solid Papillary Carcinoma 6 170800 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 7 170801 -NCIT:C176012 Invasive Breast Solid Papillary Carcinoma 7 170802 -NCIT:C6881 Bile Duct Intraductal Papillary Neoplasm 4 170803 -NCIT:C7124 Extrahepatic Bile Duct Intraductal Papillary Neoplasm 5 170804 -NCIT:C96948 Extrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 6 170805 -NCIT:C7125 Intrahepatic Bile Duct Intraductal Papillary Neoplasm 5 170806 -NCIT:C96949 Intrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 6 170807 -NCIT:C96807 Bile Duct Intraductal Papillary Neoplasm, Low Grade 5 170808 -NCIT:C96809 Bile Duct Intraductal Papillary Neoplasm, High Grade 5 170809 -NCIT:C96810 Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 5 170810 -NCIT:C96948 Extrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 6 170811 -NCIT:C96949 Intrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 6 170812 -NCIT:C7130 Gallbladder Intracholecystic Papillary Neoplasm 4 170813 -NCIT:C5743 Gallbladder Intracholecystic Papillary Neoplasm with an Associated Invasive Carcinoma 5 170814 -NCIT:C96877 Gallbladder Intracholecystic Papillary Neoplasm, Low Grade 5 170815 -NCIT:C96879 Gallbladder Intracholecystic Papillary Neoplasm, High Grade 5 170816 -NCIT:C7440 Papilloma 4 170817 -NCIT:C35839 Salivary Gland Ductal Papilloma 5 170818 -NCIT:C35834 Salivary Gland Intraductal Papilloma 6 170819 -NCIT:C35835 Salivary Gland Inverted Ductal Papilloma 6 170820 -NCIT:C35836 Salivary Gland Sialadenoma Papilliferum 6 170821 -NCIT:C3698 Choroid Plexus Papilloma 5 170822 -NCIT:C5800 Childhood Choroid Plexus Papilloma 6 170823 -NCIT:C3712 Squamous Papilloma 5 170824 -NCIT:C173476 Oral Squamous Papilloma 6 170825 -NCIT:C5819 Buccal Squamous Papilloma 7 170826 -NCIT:C191740 Squamous Papilloma of the Urinary Tract 6 170827 -NCIT:C39834 Bladder Squamous Papilloma 7 170828 -NCIT:C4355 Eyelid Squamous Papilloma 6 170829 -NCIT:C4369 Nasal Vestibule Squamous Papilloma 6 170830 -NCIT:C45573 Lung Squamous Papilloma 6 170831 -NCIT:C5344 Esophageal Squamous Papilloma 6 170832 -NCIT:C6037 Nasopharyngeal Squamous Papilloma 6 170833 -NCIT:C6038 Oropharyngeal Squamous Papilloma 6 170834 -NCIT:C6224 Conjunctival Squamous Papilloma 6 170835 -NCIT:C6342 Cervical Squamous Papilloma 6 170836 -NCIT:C6374 Vaginal Squamous Papilloma 6 170837 -NCIT:C6376 Vulvar Squamous Papilloma 6 170838 -NCIT:C40290 Vulvar Squamous Papillomatosis 7 170839 -NCIT:C65165 Inverted Squamous Papilloma 6 170840 -NCIT:C7742 Laryngeal Squamous Papilloma 6 170841 -NCIT:C190150 Childhood Laryngeal Squamous Papilloma 7 170842 -NCIT:C96554 Anal Canal Squamous Papilloma 6 170843 -NCIT:C3785 Intraductal Papilloma 5 170844 -NCIT:C35834 Salivary Gland Intraductal Papilloma 6 170845 -NCIT:C3863 Breast Intraductal Papilloma 6 170846 -NCIT:C27944 Breast Sclerosing Papilloma 7 170847 -NCIT:C36087 Breast Central Papilloma 7 170848 -NCIT:C36088 Breast Peripheral Papilloma 7 170849 -NCIT:C36089 Breast Atypical Papilloma 7 170850 -NCIT:C5201 Breast Intraductal Papillomatosis 7 170851 -NCIT:C9503 Juvenile Breast Papillomatosis 8 170852 -NCIT:C3793 Inverted Papilloma 5 170853 -NCIT:C175334 Lacrimal Drainage System Inverted Papilloma 6 170854 -NCIT:C35835 Salivary Gland Inverted Ductal Papilloma 6 170855 -NCIT:C4118 Inverted Transitional Cell Papilloma 6 170856 -NCIT:C6192 Inverted Urothelial Papilloma 7 170857 -NCIT:C39859 Bladder Inverted Papilloma 8 170858 -NCIT:C6173 Urethral Inverted Papilloma 8 170859 -NCIT:C6174 Ureter Inverted Papilloma 8 170860 -NCIT:C6187 Renal Pelvis Inverted Papilloma 8 170861 -NCIT:C65165 Inverted Squamous Papilloma 6 170862 -NCIT:C6871 Sinonasal Inverted Papilloma 6 170863 -NCIT:C115432 Recurrent Sinonasal Inverted Papilloma 7 170864 -NCIT:C8194 Nasal Cavity Inverted Papilloma 7 170865 -NCIT:C8195 Paranasal Sinus Inverted Papilloma 7 170866 -NCIT:C6840 Maxillary Sinus Inverted Papilloma 8 170867 -NCIT:C6841 Sphenoid Sinus Inverted Papilloma 8 170868 -NCIT:C6842 Frontal Sinus Inverted Papilloma 8 170869 -NCIT:C6843 Ethmoid Sinus Inverted Papilloma 8 170870 -NCIT:C40112 Fallopian Tube Serous Papilloma 5 170871 -NCIT:C4061 Eyelid Papilloma 5 170872 -NCIT:C4355 Eyelid Squamous Papilloma 6 170873 -NCIT:C4115 Transitional Cell Papilloma 5 170874 -NCIT:C3842 Urothelial Papilloma 6 170875 -NCIT:C39858 Bladder Urothelial Papilloma 7 170876 -NCIT:C39859 Bladder Inverted Papilloma 8 170877 -NCIT:C4528 Renal Pelvis Urothelial Papilloma 7 170878 -NCIT:C6187 Renal Pelvis Inverted Papilloma 8 170879 -NCIT:C5061 Urethral Urothelial Papilloma 7 170880 -NCIT:C6173 Urethral Inverted Papilloma 8 170881 -NCIT:C6160 Ureter Urothelial Papilloma 7 170882 -NCIT:C6174 Ureter Inverted Papilloma 8 170883 -NCIT:C6192 Inverted Urothelial Papilloma 7 170884 -NCIT:C39859 Bladder Inverted Papilloma 8 170885 -NCIT:C6173 Urethral Inverted Papilloma 8 170886 -NCIT:C6174 Ureter Inverted Papilloma 8 170887 -NCIT:C6187 Renal Pelvis Inverted Papilloma 8 170888 -NCIT:C4118 Inverted Transitional Cell Papilloma 6 170889 -NCIT:C6192 Inverted Urothelial Papilloma 7 170890 -NCIT:C39859 Bladder Inverted Papilloma 8 170891 -NCIT:C6173 Urethral Inverted Papilloma 8 170892 -NCIT:C6174 Ureter Inverted Papilloma 8 170893 -NCIT:C6187 Renal Pelvis Inverted Papilloma 8 170894 -NCIT:C4181 Serous Surface Papilloma 5 170895 -NCIT:C7279 Ovarian Surface Papilloma 6 170896 -NCIT:C4614 Skin Papilloma 5 170897 -NCIT:C6880 Glandular Papilloma 5 170898 -NCIT:C175332 Lacrimal Drainage System Exophytic Papilloma 6 170899 -NCIT:C189336 Mullerian Papilloma 6 170900 -NCIT:C189337 Childhood Mullerian Papilloma 7 170901 -NCIT:C40215 Cervical Mullerian Papilloma 7 170902 -NCIT:C40255 Vaginal Mullerian Papilloma 7 170903 -NCIT:C4117 Sinonasal Papilloma 6 170904 -NCIT:C164251 Sinonasal Exophytic Papilloma 7 170905 -NCIT:C54347 Nasal Cavity Exophytic Papilloma 8 170906 -NCIT:C164256 Nasal Cavity Papilloma 7 170907 -NCIT:C54347 Nasal Cavity Exophytic Papilloma 8 170908 -NCIT:C8194 Nasal Cavity Inverted Papilloma 8 170909 -NCIT:C54345 Sinonasal Oncocytic Papilloma 7 170910 -NCIT:C6835 Paranasal Sinus Papilloma 7 170911 -NCIT:C6836 Ethmoid Sinus Papilloma 8 170912 -NCIT:C6843 Ethmoid Sinus Inverted Papilloma 9 170913 -NCIT:C6837 Frontal Sinus Papilloma 8 170914 -NCIT:C6842 Frontal Sinus Inverted Papilloma 9 170915 -NCIT:C6838 Sphenoid Sinus Papilloma 8 170916 -NCIT:C6841 Sphenoid Sinus Inverted Papilloma 9 170917 -NCIT:C6839 Maxillary Sinus Papilloma 8 170918 -NCIT:C6840 Maxillary Sinus Inverted Papilloma 9 170919 -NCIT:C8195 Paranasal Sinus Inverted Papilloma 8 170920 -NCIT:C6840 Maxillary Sinus Inverted Papilloma 9 170921 -NCIT:C6841 Sphenoid Sinus Inverted Papilloma 9 170922 -NCIT:C6842 Frontal Sinus Inverted Papilloma 9 170923 -NCIT:C6843 Ethmoid Sinus Inverted Papilloma 9 170924 -NCIT:C6871 Sinonasal Inverted Papilloma 7 170925 -NCIT:C115432 Recurrent Sinonasal Inverted Papilloma 8 170926 -NCIT:C8194 Nasal Cavity Inverted Papilloma 8 170927 -NCIT:C8195 Paranasal Sinus Inverted Papilloma 8 170928 -NCIT:C6840 Maxillary Sinus Inverted Papilloma 9 170929 -NCIT:C6841 Sphenoid Sinus Inverted Papilloma 9 170930 -NCIT:C6842 Frontal Sinus Inverted Papilloma 9 170931 -NCIT:C6843 Ethmoid Sinus Inverted Papilloma 9 170932 -NCIT:C45601 Bronchial Glandular Papilloma 6 170933 -NCIT:C8295 Bronchial Papilloma 5 170934 -NCIT:C45573 Lung Squamous Papilloma 6 170935 -NCIT:C45601 Bronchial Glandular Papilloma 6 170936 -NCIT:C45602 Bronchial Mixed Squamous Cell and Glandular Papilloma 6 170937 -NCIT:C79951 Papillary Adenoma 4 170938 -NCIT:C3494 Lung Papillary Adenoma 5 170939 -NCIT:C3687 Renal Papillary Adenoma 5 170940 -NCIT:C46111 Thyroid Gland Follicular Adenoma with Papillary Hyperplasia 5 170941 -NCIT:C5849 Extrahepatic Bile Duct Papillary Adenoma 5 170942 -NCIT:C8430 Ovarian Papillary Tumor 4 170943 -NCIT:C6256 Ovarian Serous Surface Papillary Adenocarcinoma 5 170944 -NCIT:C7278 Ovarian Papillary Cystadenoma 5 170945 -NCIT:C7279 Ovarian Surface Papilloma 5 170946 -NCIT:C95913 Ampullary Noninvasive Papillary Neoplasm, Pancreatobiliary Type 4 170947 -NCIT:C95914 Ampullary Noninvasive Pancreatobiliary Papillary Neoplasm with Low Grade Dysplasia 5 170948 -NCIT:C95915 Ampullary Noninvasive Pancreatobiliary Papillary Neoplasm with High Grade Dysplasia 5 170949 -NCIT:C3786 Mesothelial Neoplasm 2 170950 -NCIT:C3234 Mesothelioma 3 170951 -NCIT:C3762 Adenomatoid Tumor 4 170952 -NCIT:C126331 Ovarian Adenomatoid Tumor 5 170953 -NCIT:C162476 Paratesticular Adenomatoid Tumor 5 170954 -NCIT:C6382 Epididymal Adenomatoid Tumor 6 170955 -NCIT:C27250 Uterine Corpus Adenomatoid Tumor 5 170956 -NCIT:C40129 Fallopian Tube Adenomatoid Tumor 5 170957 -NCIT:C4499 Pleural Adenomatoid Tumor 5 170958 -NCIT:C48319 Adrenal Cortical Adenomatoid Tumor 5 170959 -NCIT:C7354 Peritoneal Adenomatoid Tumor 5 170960 -NCIT:C92187 Pericardial Adenomatoid Tumor 5 170961 -NCIT:C3765 Multicystic Mesothelioma 4 170962 -NCIT:C6536 Peritoneal Multicystic Mesothelioma 5 170963 -NCIT:C4456 Malignant Mesothelioma 4 170964 -NCIT:C150535 Refractory Malignant Mesothelioma 5 170965 -NCIT:C159675 Refractory Pleural Malignant Mesothelioma 6 170966 -NCIT:C154442 Resectable Malignant Mesothelioma 5 170967 -NCIT:C154441 Resectable Pleural Malignant Mesothelioma 6 170968 -NCIT:C154443 Unresectable Malignant Mesothelioma 5 170969 -NCIT:C154444 Unresectable Pleural Malignant Mesothelioma 6 170970 -NCIT:C173616 Unresectable Pleural Epithelioid Mesothelioma 7 170971 -NCIT:C173617 Unresectable Pleural Sarcomatoid Mesothelioma 7 170972 -NCIT:C173618 Unresectable Pleural Biphasic Mesothelioma 7 170973 -NCIT:C173608 Unresectable Paratesticular Malignant Mesothelioma 6 170974 -NCIT:C173609 Unresectable Paratesticular Epithelioid Mesothelioma 7 170975 -NCIT:C173610 Unresectable Paratesticular Sarcomatoid Mesothelioma 7 170976 -NCIT:C173611 Unresectable Paratesticular Biphasic Mesothelioma 7 170977 -NCIT:C173612 Unresectable Peritoneal Malignant Mesothelioma 6 170978 -NCIT:C173613 Unresectable Peritoneal Epithelioid Mesothelioma 7 170979 -NCIT:C173614 Unresectable Peritoneal Sarcomatoid Mesothelioma 7 170980 -NCIT:C173615 Unresectable Peritoneal Biphasic Mesothelioma 7 170981 -NCIT:C162477 Paratesticular Malignant Mesothelioma 5 170982 -NCIT:C173605 Paratesticular Epithelioid Mesothelioma 6 170983 -NCIT:C173609 Unresectable Paratesticular Epithelioid Mesothelioma 7 170984 -NCIT:C173606 Paratesticular Sarcomatoid Mesothelioma 6 170985 -NCIT:C173610 Unresectable Paratesticular Sarcomatoid Mesothelioma 7 170986 -NCIT:C173607 Paratesticular Biphasic Mesothelioma 6 170987 -NCIT:C173611 Unresectable Paratesticular Biphasic Mesothelioma 7 170988 -NCIT:C173608 Unresectable Paratesticular Malignant Mesothelioma 6 170989 -NCIT:C173609 Unresectable Paratesticular Epithelioid Mesothelioma 7 170990 -NCIT:C173610 Unresectable Paratesticular Sarcomatoid Mesothelioma 7 170991 -NCIT:C173611 Unresectable Paratesticular Biphasic Mesothelioma 7 170992 -NCIT:C165252 Metastatic Malignant Mesothelioma 5 170993 -NCIT:C168545 Metastatic Pleural Malignant Mesothelioma 6 170994 -NCIT:C175936 Locally Advanced Pleural Malignant Mesothelioma 7 170995 -NCIT:C8706 Advanced Pleural Malignant Mesothelioma 7 170996 -NCIT:C175935 Locally Advanced Malignant Mesothelioma 6 170997 -NCIT:C175936 Locally Advanced Pleural Malignant Mesothelioma 7 170998 -NCIT:C179462 Metastatic Peritoneal Malignant Mesothelioma 6 170999 -NCIT:C8704 Advanced Peritoneal Malignant Mesothelioma 7 171000 -NCIT:C7865 Advanced Malignant Mesothelioma 6 171001 -NCIT:C175937 Advanced Epithelioid Mesothelioma 7 171002 -NCIT:C8703 Advanced Pericardial Malignant Mesothelioma 7 171003 -NCIT:C8704 Advanced Peritoneal Malignant Mesothelioma 7 171004 -NCIT:C8706 Advanced Pleural Malignant Mesothelioma 7 171005 -NCIT:C27926 Asbestos-Related Malignant Mesothelioma 5 171006 -NCIT:C40444 Ovarian Malignant Mesothelioma 5 171007 -NCIT:C7376 Pleural Malignant Mesothelioma 5 171008 -NCIT:C136374 Pleural Malignant Mesothelioma by AJCC v7 Stage 6 171009 -NCIT:C6646 Stage I Pleural Malignant Mesothelioma AJCC v7 7 171010 -NCIT:C87195 Stage IA Pleural Malignant Mesothelioma AJCC v7 8 171011 -NCIT:C87196 Stage IB Pleural Malignant Mesothelioma AJCC v7 8 171012 -NCIT:C6647 Stage II Pleural Malignant Mesothelioma AJCC v7 7 171013 -NCIT:C6648 Stage III Pleural Malignant Mesothelioma AJCC v7 7 171014 -NCIT:C6649 Stage IV Pleural Malignant Mesothelioma AJCC v7 7 171015 -NCIT:C136399 Pleural Malignant Mesothelioma by AJCC v8 Stage 6 171016 -NCIT:C136400 Stage I Pleural Malignant Mesothelioma AJCC v8 7 171017 -NCIT:C136401 Stage IB Pleural Malignant Mesothelioma AJCC v8 8 171018 -NCIT:C136409 Stage IA Pleural Malignant Mesothelioma AJCC v8 8 171019 -NCIT:C136402 Stage II Pleural Malignant Mesothelioma AJCC v8 7 171020 -NCIT:C136403 Stage III Pleural Malignant Mesothelioma AJCC v8 7 171021 -NCIT:C136404 Stage IIIA Pleural Malignant Mesothelioma AJCC v8 8 171022 -NCIT:C136405 Stage IIIB Pleural Malignant Mesothelioma AJCC v8 8 171023 -NCIT:C136406 Stage IV Pleural Malignant Mesothelioma AJCC v8 7 171024 -NCIT:C154441 Resectable Pleural Malignant Mesothelioma 6 171025 -NCIT:C154444 Unresectable Pleural Malignant Mesothelioma 6 171026 -NCIT:C173616 Unresectable Pleural Epithelioid Mesothelioma 7 171027 -NCIT:C173617 Unresectable Pleural Sarcomatoid Mesothelioma 7 171028 -NCIT:C173618 Unresectable Pleural Biphasic Mesothelioma 7 171029 -NCIT:C159675 Refractory Pleural Malignant Mesothelioma 6 171030 -NCIT:C168545 Metastatic Pleural Malignant Mesothelioma 6 171031 -NCIT:C175936 Locally Advanced Pleural Malignant Mesothelioma 7 171032 -NCIT:C8706 Advanced Pleural Malignant Mesothelioma 7 171033 -NCIT:C45662 Pleural Epithelioid Mesothelioma 6 171034 -NCIT:C173616 Unresectable Pleural Epithelioid Mesothelioma 7 171035 -NCIT:C45663 Pleural Sarcomatoid Mesothelioma 6 171036 -NCIT:C173617 Unresectable Pleural Sarcomatoid Mesothelioma 7 171037 -NCIT:C45664 Pleural Desmoplastic Mesothelioma 6 171038 -NCIT:C45665 Pleural Biphasic Mesothelioma 6 171039 -NCIT:C173618 Unresectable Pleural Biphasic Mesothelioma 7 171040 -NCIT:C45666 Localized Pleural Malignant Mesothelioma 6 171041 -NCIT:C8707 Recurrent Pleural Malignant Mesothelioma 6 171042 -NCIT:C7631 Pericardial Malignant Mesothelioma 5 171043 -NCIT:C8703 Advanced Pericardial Malignant Mesothelioma 6 171044 -NCIT:C9253 Recurrent Pericardial Malignant Mesothelioma 6 171045 -NCIT:C7866 Recurrent Malignant Mesothelioma 5 171046 -NCIT:C175938 Recurrent Epithelioid Mesothelioma 6 171047 -NCIT:C8705 Recurrent Peritoneal Malignant Mesothelioma 6 171048 -NCIT:C8707 Recurrent Pleural Malignant Mesothelioma 6 171049 -NCIT:C9253 Recurrent Pericardial Malignant Mesothelioma 6 171050 -NCIT:C8420 Diffuse Malignant Mesothelioma 5 171051 -NCIT:C4282 Biphasic Mesothelioma 6 171052 -NCIT:C168805 Peritoneal Biphasic Mesothelioma 7 171053 -NCIT:C173615 Unresectable Peritoneal Biphasic Mesothelioma 8 171054 -NCIT:C173607 Paratesticular Biphasic Mesothelioma 7 171055 -NCIT:C173611 Unresectable Paratesticular Biphasic Mesothelioma 8 171056 -NCIT:C45665 Pleural Biphasic Mesothelioma 7 171057 -NCIT:C173618 Unresectable Pleural Biphasic Mesothelioma 8 171058 -NCIT:C45655 Sarcomatoid Mesothelioma 6 171059 -NCIT:C168804 Peritoneal Sarcomatoid Mesothelioma 7 171060 -NCIT:C173614 Unresectable Peritoneal Sarcomatoid Mesothelioma 8 171061 -NCIT:C173606 Paratesticular Sarcomatoid Mesothelioma 7 171062 -NCIT:C173610 Unresectable Paratesticular Sarcomatoid Mesothelioma 8 171063 -NCIT:C27779 Lymphohistiocytoid Mesothelioma 7 171064 -NCIT:C45663 Pleural Sarcomatoid Mesothelioma 7 171065 -NCIT:C173617 Unresectable Pleural Sarcomatoid Mesothelioma 8 171066 -NCIT:C6747 Desmoplastic Mesothelioma 6 171067 -NCIT:C45664 Pleural Desmoplastic Mesothelioma 7 171068 -NCIT:C7985 Epithelioid Mesothelioma 6 171069 -NCIT:C162940 Peritoneal Epithelioid Mesothelioma 7 171070 -NCIT:C173613 Unresectable Peritoneal Epithelioid Mesothelioma 8 171071 -NCIT:C173605 Paratesticular Epithelioid Mesothelioma 7 171072 -NCIT:C173609 Unresectable Paratesticular Epithelioid Mesothelioma 8 171073 -NCIT:C175937 Advanced Epithelioid Mesothelioma 7 171074 -NCIT:C175938 Recurrent Epithelioid Mesothelioma 7 171075 -NCIT:C45662 Pleural Epithelioid Mesothelioma 7 171076 -NCIT:C173616 Unresectable Pleural Epithelioid Mesothelioma 8 171077 -NCIT:C9239 Localized Malignant Mesothelioma 5 171078 -NCIT:C45666 Localized Pleural Malignant Mesothelioma 6 171079 -NCIT:C9350 Peritoneal Malignant Mesothelioma 5 171080 -NCIT:C162940 Peritoneal Epithelioid Mesothelioma 6 171081 -NCIT:C173613 Unresectable Peritoneal Epithelioid Mesothelioma 7 171082 -NCIT:C168804 Peritoneal Sarcomatoid Mesothelioma 6 171083 -NCIT:C173614 Unresectable Peritoneal Sarcomatoid Mesothelioma 7 171084 -NCIT:C168805 Peritoneal Biphasic Mesothelioma 6 171085 -NCIT:C173615 Unresectable Peritoneal Biphasic Mesothelioma 7 171086 -NCIT:C173612 Unresectable Peritoneal Malignant Mesothelioma 6 171087 -NCIT:C173613 Unresectable Peritoneal Epithelioid Mesothelioma 7 171088 -NCIT:C173614 Unresectable Peritoneal Sarcomatoid Mesothelioma 7 171089 -NCIT:C173615 Unresectable Peritoneal Biphasic Mesothelioma 7 171090 -NCIT:C179462 Metastatic Peritoneal Malignant Mesothelioma 6 171091 -NCIT:C8704 Advanced Peritoneal Malignant Mesothelioma 7 171092 -NCIT:C8705 Recurrent Peritoneal Malignant Mesothelioma 6 171093 -NCIT:C7632 Pericardial Mesothelioma 4 171094 -NCIT:C7631 Pericardial Malignant Mesothelioma 5 171095 -NCIT:C8703 Advanced Pericardial Malignant Mesothelioma 6 171096 -NCIT:C9253 Recurrent Pericardial Malignant Mesothelioma 6 171097 -NCIT:C92187 Pericardial Adenomatoid Tumor 5 171098 -NCIT:C7633 Peritoneal Mesothelioma 4 171099 -NCIT:C45661 Peritoneal Well Differentiated Papillary Mesothelial Tumor 5 171100 -NCIT:C6536 Peritoneal Multicystic Mesothelioma 5 171101 -NCIT:C7354 Peritoneal Adenomatoid Tumor 5 171102 -NCIT:C9350 Peritoneal Malignant Mesothelioma 5 171103 -NCIT:C162940 Peritoneal Epithelioid Mesothelioma 6 171104 -NCIT:C173613 Unresectable Peritoneal Epithelioid Mesothelioma 7 171105 -NCIT:C168804 Peritoneal Sarcomatoid Mesothelioma 6 171106 -NCIT:C173614 Unresectable Peritoneal Sarcomatoid Mesothelioma 7 171107 -NCIT:C168805 Peritoneal Biphasic Mesothelioma 6 171108 -NCIT:C173615 Unresectable Peritoneal Biphasic Mesothelioma 7 171109 -NCIT:C173612 Unresectable Peritoneal Malignant Mesothelioma 6 171110 -NCIT:C173613 Unresectable Peritoneal Epithelioid Mesothelioma 7 171111 -NCIT:C173614 Unresectable Peritoneal Sarcomatoid Mesothelioma 7 171112 -NCIT:C173615 Unresectable Peritoneal Biphasic Mesothelioma 7 171113 -NCIT:C179462 Metastatic Peritoneal Malignant Mesothelioma 6 171114 -NCIT:C8704 Advanced Peritoneal Malignant Mesothelioma 7 171115 -NCIT:C8705 Recurrent Peritoneal Malignant Mesothelioma 6 171116 -NCIT:C7635 Well Differentiated Papillary Mesothelial Tumor 4 171117 -NCIT:C45660 Pleural Well Differentiated Papillary Mesothelial Tumor 5 171118 -NCIT:C45661 Peritoneal Well Differentiated Papillary Mesothelial Tumor 5 171119 -NCIT:C9351 Pleural Mesothelioma 4 171120 -NCIT:C183134 Pleural Mesothelioma In Situ 5 171121 -NCIT:C4499 Pleural Adenomatoid Tumor 5 171122 -NCIT:C45660 Pleural Well Differentiated Papillary Mesothelial Tumor 5 171123 -NCIT:C7376 Pleural Malignant Mesothelioma 5 171124 -NCIT:C136374 Pleural Malignant Mesothelioma by AJCC v7 Stage 6 171125 -NCIT:C6646 Stage I Pleural Malignant Mesothelioma AJCC v7 7 171126 -NCIT:C87195 Stage IA Pleural Malignant Mesothelioma AJCC v7 8 171127 -NCIT:C87196 Stage IB Pleural Malignant Mesothelioma AJCC v7 8 171128 -NCIT:C6647 Stage II Pleural Malignant Mesothelioma AJCC v7 7 171129 -NCIT:C6648 Stage III Pleural Malignant Mesothelioma AJCC v7 7 171130 -NCIT:C6649 Stage IV Pleural Malignant Mesothelioma AJCC v7 7 171131 -NCIT:C136399 Pleural Malignant Mesothelioma by AJCC v8 Stage 6 171132 -NCIT:C136400 Stage I Pleural Malignant Mesothelioma AJCC v8 7 171133 -NCIT:C136401 Stage IB Pleural Malignant Mesothelioma AJCC v8 8 171134 -NCIT:C136409 Stage IA Pleural Malignant Mesothelioma AJCC v8 8 171135 -NCIT:C136402 Stage II Pleural Malignant Mesothelioma AJCC v8 7 171136 -NCIT:C136403 Stage III Pleural Malignant Mesothelioma AJCC v8 7 171137 -NCIT:C136404 Stage IIIA Pleural Malignant Mesothelioma AJCC v8 8 171138 -NCIT:C136405 Stage IIIB Pleural Malignant Mesothelioma AJCC v8 8 171139 -NCIT:C136406 Stage IV Pleural Malignant Mesothelioma AJCC v8 7 171140 -NCIT:C154441 Resectable Pleural Malignant Mesothelioma 6 171141 -NCIT:C154444 Unresectable Pleural Malignant Mesothelioma 6 171142 -NCIT:C173616 Unresectable Pleural Epithelioid Mesothelioma 7 171143 -NCIT:C173617 Unresectable Pleural Sarcomatoid Mesothelioma 7 171144 -NCIT:C173618 Unresectable Pleural Biphasic Mesothelioma 7 171145 -NCIT:C159675 Refractory Pleural Malignant Mesothelioma 6 171146 -NCIT:C168545 Metastatic Pleural Malignant Mesothelioma 6 171147 -NCIT:C175936 Locally Advanced Pleural Malignant Mesothelioma 7 171148 -NCIT:C8706 Advanced Pleural Malignant Mesothelioma 7 171149 -NCIT:C45662 Pleural Epithelioid Mesothelioma 6 171150 -NCIT:C173616 Unresectable Pleural Epithelioid Mesothelioma 7 171151 -NCIT:C45663 Pleural Sarcomatoid Mesothelioma 6 171152 -NCIT:C173617 Unresectable Pleural Sarcomatoid Mesothelioma 7 171153 -NCIT:C45664 Pleural Desmoplastic Mesothelioma 6 171154 -NCIT:C45665 Pleural Biphasic Mesothelioma 6 171155 -NCIT:C173618 Unresectable Pleural Biphasic Mesothelioma 7 171156 -NCIT:C45666 Localized Pleural Malignant Mesothelioma 6 171157 -NCIT:C8707 Recurrent Pleural Malignant Mesothelioma 6 171158 -NCIT:C6971 Meningothelial Cell Neoplasm 2 171159 -NCIT:C3230 Meningioma 3 171160 -NCIT:C163006 Unresectable Meningioma 4 171161 -NCIT:C172953 Refractory Meningioma 4 171162 -NCIT:C3707 Meningiomatosis 4 171163 -NCIT:C5275 Multiple Intraspinal Meningiomas 5 171164 -NCIT:C5279 Multiple Skull Base Meningiomas 5 171165 -NCIT:C38936 Grade 1 Meningioma 4 171166 -NCIT:C4055 Benign Meningioma 5 171167 -NCIT:C5133 Benign Intracranial Meningioma 6 171168 -NCIT:C4329 Meningothelial Meningioma 5 171169 -NCIT:C4330 Fibrous Meningioma 5 171170 -NCIT:C4331 Psammomatous Meningioma 5 171171 -NCIT:C4332 Angiomatous Meningioma 5 171172 -NCIT:C4333 Transitional Meningioma 5 171173 -NCIT:C4718 Secretory Meningioma 5 171174 -NCIT:C4720 Lymphoplasmacyte-Rich Meningioma 5 171175 -NCIT:C4721 Microcystic Meningioma 5 171176 -NCIT:C6907 Metaplastic Meningioma 5 171177 -NCIT:C71299 Adult Grade 1 Meningioma 5 171178 -NCIT:C71300 Childhood Grade 1 Meningioma 5 171179 -NCIT:C38937 Grade 2 Meningioma 4 171180 -NCIT:C4722 Clear Cell Meningioma 5 171181 -NCIT:C5287 Spinal Multifocal Clear Cell Meningioma 6 171182 -NCIT:C5295 Brain Stem Intraparenchymal Clear Cell Meningioma 6 171183 -NCIT:C4723 Atypical Meningioma 5 171184 -NCIT:C179224 Recurrent Atypical Meningioma 6 171185 -NCIT:C6852 Adult Atypical Meningioma 6 171186 -NCIT:C6908 Chordoid Meningioma 5 171187 -NCIT:C71301 Childhood Grade 2 Meningioma 5 171188 -NCIT:C71304 Adult Grade 2 Meningioma 5 171189 -NCIT:C6852 Adult Atypical Meningioma 6 171190 -NCIT:C38938 Grade 3 Meningioma 4 171191 -NCIT:C3904 Papillary Meningioma 5 171192 -NCIT:C5270 Cerebellar Papillary Meningioma 6 171193 -NCIT:C8293 Adult Papillary Meningioma 6 171194 -NCIT:C4051 Anaplastic (Malignant) Meningioma 5 171195 -NCIT:C179223 Recurrent Anaplastic (Malignant) Meningioma 6 171196 -NCIT:C27307 Anaplastic (Malignant) Intracranial Meningioma 6 171197 -NCIT:C8275 Adult Anaplastic (Malignant) Meningioma 6 171198 -NCIT:C8605 Anaplastic (Malignant) Intraspinal Meningioma 6 171199 -NCIT:C6909 Rhabdoid Meningioma 5 171200 -NCIT:C71303 Childhood Grade 3 Meningioma 5 171201 -NCIT:C71305 Adult Grade 3 Meningioma 5 171202 -NCIT:C8275 Adult Anaplastic (Malignant) Meningioma 6 171203 -NCIT:C8293 Adult Papillary Meningioma 6 171204 -NCIT:C5274 Metastatic Meningioma 4 171205 -NCIT:C5294 Deletion of the Short Arm of Chromosome 1 (1p) Associated Meningioma 4 171206 -NCIT:C5301 Hereditary Meningioma 4 171207 -NCIT:C5305 Deletion of Chromosome 22 Associated Meningioma 4 171208 -NCIT:C5306 Deletion of Chromosome 3p Associated Meningioma 4 171209 -NCIT:C5312 Recurrent Meningioma 4 171210 -NCIT:C179223 Recurrent Anaplastic (Malignant) Meningioma 5 171211 -NCIT:C179224 Recurrent Atypical Meningioma 5 171212 -NCIT:C7051 Meningioma by Site 4 171213 -NCIT:C4656 Intracranial Meningioma 5 171214 -NCIT:C27307 Anaplastic (Malignant) Intracranial Meningioma 6 171215 -NCIT:C4719 Choroid Plexus Meningioma 6 171216 -NCIT:C5133 Benign Intracranial Meningioma 6 171217 -NCIT:C5270 Cerebellar Papillary Meningioma 6 171218 -NCIT:C5272 Skull Base Meningioma 6 171219 -NCIT:C155776 Sellar Meningioma 7 171220 -NCIT:C155778 Intrasellar Meningioma 8 171221 -NCIT:C6776 Suprasellar Meningioma 8 171222 -NCIT:C5283 Diaphragma Sellae Meningioma 9 171223 -NCIT:C5284 Tuberculum Sellae Meningioma 9 171224 -NCIT:C5311 Pituitary Stalk Meningioma 9 171225 -NCIT:C5268 Cavernous Sinus Meningioma 7 171226 -NCIT:C5271 Petrous Apex Meningioma 7 171227 -NCIT:C5278 Petroclival Meningioma 7 171228 -NCIT:C5279 Multiple Skull Base Meningiomas 7 171229 -NCIT:C5280 Foramen Magnum Meningioma 7 171230 -NCIT:C5281 Anterior Foramen Magnum Meningioma 8 171231 -NCIT:C5282 Posterior Foramen Magnum Meningioma 8 171232 -NCIT:C5285 Sphenoorbital Meningioma 7 171233 -NCIT:C5289 Clivus Meningioma 7 171234 -NCIT:C5288 Lower Clivus Meningioma 8 171235 -NCIT:C5290 Upper Clivus Meningioma 8 171236 -NCIT:C5307 Internal Auditory Canal Meningioma 7 171237 -NCIT:C5313 Sphenocavernous Meningioma 7 171238 -NCIT:C5273 Intraventricular Meningioma 6 171239 -NCIT:C5302 Lateral Ventricle Meningioma 7 171240 -NCIT:C5291 Radiation-Induced Intracranial Meningioma 6 171241 -NCIT:C5587 Visual Pathway Meningioma 6 171242 -NCIT:C4538 Optic Nerve Sheath Meningioma 7 171243 -NCIT:C5304 Bilateral Optic Nerve Meningioma 7 171244 -NCIT:C7538 Anterior Visual Pathway Meningioma 7 171245 -NCIT:C6253 Childhood Intracranial Meningioma 6 171246 -NCIT:C6775 Posterior Fossa Meningioma 6 171247 -NCIT:C5289 Clivus Meningioma 7 171248 -NCIT:C5288 Lower Clivus Meningioma 8 171249 -NCIT:C5290 Upper Clivus Meningioma 8 171250 -NCIT:C5295 Brain Stem Intraparenchymal Clear Cell Meningioma 7 171251 -NCIT:C5300 Cerebellopontine Angle Meningioma 7 171252 -NCIT:C7048 Supratentorial Meningioma 6 171253 -NCIT:C4807 Cerebral Meningioma 7 171254 -NCIT:C4959 Cerebral Convexity Meningioma 8 171255 -NCIT:C5292 Frontal Convexity Meningioma 9 171256 -NCIT:C4960 Parasagittal Meningioma 8 171257 -NCIT:C5269 Intracerebral Cystic Meningioma 8 171258 -NCIT:C5302 Lateral Ventricle Meningioma 8 171259 -NCIT:C5286 Anterior Cranial Fossa Meningioma 7 171260 -NCIT:C5267 Falx Cerebri Meningioma 8 171261 -NCIT:C5268 Cavernous Sinus Meningioma 8 171262 -NCIT:C6771 Olfactory Groove Meningioma 8 171263 -NCIT:C5586 Middle Cranial Fossa Meningioma 7 171264 -NCIT:C5307 Internal Auditory Canal Meningioma 8 171265 -NCIT:C6756 Pineal Region Meningioma 7 171266 -NCIT:C6779 Gasserian Meningioma 7 171267 -NCIT:C9374 Adult Intracranial Meningioma 6 171268 -NCIT:C5134 Spinal Meningioma 5 171269 -NCIT:C5275 Multiple Intraspinal Meningiomas 6 171270 -NCIT:C5287 Spinal Multifocal Clear Cell Meningioma 6 171271 -NCIT:C5296 Cervical Intraspinal Meningioma 6 171272 -NCIT:C5297 Thoracic Intraspinal Meningioma 6 171273 -NCIT:C5298 Lumbar Intraspinal Meningioma 6 171274 -NCIT:C5299 Sacral Intraspinal Meningioma 6 171275 -NCIT:C5310 Epidural Spinal Canal Meningioma 6 171276 -NCIT:C6935 Spinal Cord Meningioma 6 171277 -NCIT:C8605 Anaplastic (Malignant) Intraspinal Meningioma 6 171278 -NCIT:C5293 Jugular Foramen Meningioma 5 171279 -NCIT:C5668 Lung Meningioma 5 171280 -NCIT:C5276 Primary Lung Meningioma 6 171281 -NCIT:C6778 Intraorbital Meningioma 5 171282 -NCIT:C6777 Periocular Meningioma 6 171283 -NCIT:C8264 Childhood Meningioma 4 171284 -NCIT:C6253 Childhood Intracranial Meningioma 5 171285 -NCIT:C71300 Childhood Grade 1 Meningioma 5 171286 -NCIT:C71301 Childhood Grade 2 Meningioma 5 171287 -NCIT:C71303 Childhood Grade 3 Meningioma 5 171288 -NCIT:C9093 Adult Meningioma 4 171289 -NCIT:C71299 Adult Grade 1 Meningioma 5 171290 -NCIT:C71304 Adult Grade 2 Meningioma 5 171291 -NCIT:C6852 Adult Atypical Meningioma 6 171292 -NCIT:C71305 Adult Grade 3 Meningioma 5 171293 -NCIT:C8275 Adult Anaplastic (Malignant) Meningioma 6 171294 -NCIT:C8293 Adult Papillary Meningioma 6 171295 -NCIT:C9374 Adult Intracranial Meningioma 5 171296 -NCIT:C5308 Ectopic Meningioma 3 171297 -NCIT:C173163 Primary Sinonasal Meningioma 4 171298 -NCIT:C5309 Ethmoid Sinus Primary Ectopic Meningioma 5 171299 -NCIT:C174033 Primary Middle Ear Meningioma 4 171300 -NCIT:C5276 Primary Lung Meningioma 4 171301 -NCIT:C5277 Primary Cutaneous Meningioma 4 171302 -NCIT:C5303 Primary Parapharyngeal Meningioma 4 171303 -NCIT:C6974 Neoplasm of Uncertain Histogenesis 2 171304 -NCIT:C3801 Hemangioblastoma 3 171305 -NCIT:C157450 Peripheral Hemangioblastoma 4 171306 -NCIT:C191394 Kidney Hemangioblastoma 5 171307 -NCIT:C39783 Retinal Hemangioblastoma 4 171308 -NCIT:C7007 Central Nervous System Hemangioblastoma 4 171309 -NCIT:C155947 Cerebral Hemangioblastoma 5 171310 -NCIT:C155948 Spinal Hemangioblastoma 5 171311 -NCIT:C5146 Cerebellar Hemangioblastoma 5 171312 -NCIT:C5147 Brain Stem Hemangioblastoma 5 171313 -NCIT:C155949 Medullary Hemangioblastoma 6 171314 -NCIT:C7058 Melanocytic Neoplasm 2 171315 -NCIT:C173488 Head and Neck Melanocytic Neoplasm 3 171316 -NCIT:C133187 Mucosal Melanoma of the Head and Neck 4 171317 -NCIT:C133186 Mucosal Melanoma of the Head and Neck by AJCC v7 Stage 5 171318 -NCIT:C87532 Stage III Mucosal Melanoma of the Head and Neck AJCC v7 6 171319 -NCIT:C87533 Stage IVA Mucosal Melanoma of the Head and Neck AJCC v7 6 171320 -NCIT:C87534 Stage IVB Mucosal Melanoma of the Head and Neck AJCC v7 6 171321 -NCIT:C87535 Stage IVC Mucosal Melanoma of the Head and Neck AJCC v7 6 171322 -NCIT:C166399 Sinonasal Mucosal Melanoma 5 171323 -NCIT:C178521 Pharyngeal Melanoma 5 171324 -NCIT:C178522 Nasopharyngeal Melanoma 6 171325 -NCIT:C5915 Oral Cavity Mucosal Melanoma 5 171326 -NCIT:C54661 Head and Neck Nevus 4 171327 -NCIT:C3224 Melanoma 3 171328 -NCIT:C118828 Orbital Melanoma 4 171329 -NCIT:C131506 Childhood Melanoma 4 171330 -NCIT:C147983 Refractory Melanoma 4 171331 -NCIT:C150544 Refractory Cutaneous Melanoma 5 171332 -NCIT:C173328 Refractory Non-Cutaneous Melanoma 5 171333 -NCIT:C173329 Refractory Ocular Melanoma 6 171334 -NCIT:C173335 Refractory Uveal Melanoma 7 171335 -NCIT:C180894 Refractory Mucosal Melanoma 6 171336 -NCIT:C182024 Refractory Metastatic Melanoma 5 171337 -NCIT:C148517 Unresectable Melanoma 4 171338 -NCIT:C148245 Unresectable Cutaneous Melanoma 5 171339 -NCIT:C165535 Unresectable Acral Lentiginous Melanoma 6 171340 -NCIT:C165536 Unresectable Mucosal Melanoma 5 171341 -NCIT:C172247 Unresectable Uveal Melanoma 5 171342 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 6 171343 -NCIT:C162547 Penile Melanoma 4 171344 -NCIT:C178517 Penile Mucosal Melanoma 5 171345 -NCIT:C178518 Penile Cutaneous Melanoma 5 171346 -NCIT:C190239 Resectable Melanoma 4 171347 -NCIT:C190240 Resectable Cutaneous Melanoma 5 171348 -NCIT:C3510 Cutaneous Melanoma 4 171349 -NCIT:C137645 Cutaneous Melanoma by AJCC v8 Stage 5 171350 -NCIT:C137646 Cutaneous Melanoma by AJCC v8 Clinical Stage 6 171351 -NCIT:C137647 Clinical Stage 0 Cutaneous Melanoma AJCC v8 7 171352 -NCIT:C137648 Clinical Stage I Cutaneous Melanoma AJCC v8 7 171353 -NCIT:C137649 Clinical Stage IA Cutaneous Melanoma AJCC v8 8 171354 -NCIT:C137650 Clinical Stage IB Cutaneous Melanoma AJCC v8 8 171355 -NCIT:C137651 Clinical Stage II Cutaneous Melanoma AJCC v8 7 171356 -NCIT:C137652 Clinical Stage IIA Cutaneous Melanoma AJCC v8 8 171357 -NCIT:C137653 Clinical Stage IIB Cutaneous Melanoma AJCC v8 8 171358 -NCIT:C137654 Clinical Stage IIC Cutaneous Melanoma AJCC v8 8 171359 -NCIT:C137655 Clinical Stage III Cutaneous Melanoma AJCC v8 7 171360 -NCIT:C137656 Clinical Stage IV Cutaneous Melanoma AJCC v8 7 171361 -NCIT:C137657 Cutaneous Melanoma by AJCC v8 Pathologic Stage 6 171362 -NCIT:C137662 Pathologic Stage 0 Cutaneous Melanoma AJCC v8 7 171363 -NCIT:C137663 Pathologic Stage I Cutaneous Melanoma AJCC v8 7 171364 -NCIT:C137664 Pathologic Stage IA Cutaneous Melanoma AJCC v8 8 171365 -NCIT:C137665 Pathologic Stage IB Cutaneous Melanoma AJCC v8 8 171366 -NCIT:C137666 Pathologic Stage II Cutaneous Melanoma AJCC v8 7 171367 -NCIT:C137667 Pathologic Stage IIA Cutaneous Melanoma AJCC v8 8 171368 -NCIT:C137668 Pathologic Stage IIB Cutaneous Melanoma AJCC v8 8 171369 -NCIT:C137669 Pathologic Stage IIC Cutaneous Melanoma AJCC v8 8 171370 -NCIT:C137670 Pathologic Stage III Cutaneous Melanoma AJCC v8 7 171371 -NCIT:C137671 Pathologic Stage IIIA Cutaneous Melanoma AJCC v8 8 171372 -NCIT:C137672 Pathologic Stage IIIB Cutaneous Melanoma AJCC v8 8 171373 -NCIT:C137673 Pathologic Stage IIIC Cutaneous Melanoma AJCC v8 8 171374 -NCIT:C137675 Pathologic Stage IIID Cutaneous Melanoma AJCC v8 8 171375 -NCIT:C137677 Pathologic Stage IV Cutaneous Melanoma AJCC v8 7 171376 -NCIT:C148245 Unresectable Cutaneous Melanoma 5 171377 -NCIT:C165535 Unresectable Acral Lentiginous Melanoma 6 171378 -NCIT:C150544 Refractory Cutaneous Melanoma 5 171379 -NCIT:C155305 Cutaneous Melanoma of the Extremity 5 171380 -NCIT:C155306 Recurrent Cutaneous Melanoma of the Extremity 6 171381 -NCIT:C175435 Recurrent Acral Lentiginous Melanoma 7 171382 -NCIT:C155311 Advanced Cutaneous Melanoma of the Extremity 6 171383 -NCIT:C4022 Acral Lentiginous Melanoma 6 171384 -NCIT:C165535 Unresectable Acral Lentiginous Melanoma 7 171385 -NCIT:C175435 Recurrent Acral Lentiginous Melanoma 7 171386 -NCIT:C179427 Metastatic Acral Lentiginous Melanoma 7 171387 -NCIT:C8781 Stage I Acral Lentiginous Melanoma AJCC v7 7 171388 -NCIT:C8782 Stage II Acral Lentiginous Melanoma AJCC v6 and v7 7 171389 -NCIT:C8783 Stage III Acral Lentiginous Melanoma AJCC v7 7 171390 -NCIT:C8784 Stage IV Acral Lentiginous Melanoma AJCC v6 and v7 7 171391 -NCIT:C156072 Metastatic Cutaneous Melanoma 5 171392 -NCIT:C171285 Locally Advanced Cutaneous Melanoma 6 171393 -NCIT:C171572 Advanced Cutaneous Melanoma 6 171394 -NCIT:C155311 Advanced Cutaneous Melanoma of the Extremity 7 171395 -NCIT:C179427 Metastatic Acral Lentiginous Melanoma 6 171396 -NCIT:C165497 Spitz Melanoma 5 171397 -NCIT:C165659 High-CSD Melanoma 5 171398 -NCIT:C37257 Desmoplastic Melanoma 6 171399 -NCIT:C48614 Desmoplastic Neurotropic Melanoma 7 171400 -NCIT:C9151 Lentigo Maligna Melanoma 6 171401 -NCIT:C8785 Recurrent Lentigo Maligna Melanoma 7 171402 -NCIT:C8786 Stage I Lentigo Maligna Melanoma AJCC v7 7 171403 -NCIT:C8787 Stage II Lentigo Maligna Melanoma AJCC v6 and v7 7 171404 -NCIT:C8788 Stage III Lentigo Maligna Melanoma AJCC v7 7 171405 -NCIT:C8789 Stage IV Lentigo Maligna Melanoma AJCC v6 and v7 7 171406 -NCIT:C178518 Penile Cutaneous Melanoma 5 171407 -NCIT:C190240 Resectable Cutaneous Melanoma 5 171408 -NCIT:C190280 Childhood Cutaneous Melanoma 5 171409 -NCIT:C27919 Old Burn Scar-Related Cutaneous Melanoma 5 171410 -NCIT:C27920 Solar Radiation-Related Cutaneous Melanoma 5 171411 -NCIT:C4225 Cutaneous Nodular Melanoma 5 171412 -NCIT:C4227 Balloon Cell Melanoma 5 171413 -NCIT:C4232 Melanoma in Junctional Nevus 5 171414 -NCIT:C4240 Melanoma Arising from Blue Nevus 5 171415 -NCIT:C4633 Amelanotic Cutaneous Melanoma 5 171416 -NCIT:C48607 Invasive Cutaneous Melanoma 5 171417 -NCIT:C48612 Minimal Deviation Melanoma 5 171418 -NCIT:C48613 Melanoma in Congenital Melanocytic Nevus 5 171419 -NCIT:C4235 Melanoma Arising in Giant Congenital Nevus 6 171420 -NCIT:C54662 Nevoid Melanoma 5 171421 -NCIT:C54663 Signet Ring Melanoma 5 171422 -NCIT:C66753 Malignant Melanoma in Precancerous Melanosis 5 171423 -NCIT:C7089 Regressing Cutaneous Melanoma 5 171424 -NCIT:C7361 Scrotal Melanoma 5 171425 -NCIT:C8498 Hereditary Melanoma 5 171426 -NCIT:C128801 Cutaneous Malignant Melanoma 2 6 171427 -NCIT:C90514 Cutaneous Melanoma by AJCC v6 Stage 5 171428 -NCIT:C7916 Stage I Cutaneous Melanoma AJCC v6 6 171429 -NCIT:C7917 Stage II Cutaneous Melanoma AJCC v6 and v7 6 171430 -NCIT:C27742 Stage IIB Cutaneous Melanoma AJCC v6 and v7 7 171431 -NCIT:C86033 Stage IIA Cutaneous Melanoma AJCC v6 and v7 7 171432 -NCIT:C86034 Stage IIC Cutaneous Melanoma AJCC v6 and v7 7 171433 -NCIT:C8782 Stage II Acral Lentiginous Melanoma AJCC v6 and v7 7 171434 -NCIT:C8787 Stage II Lentigo Maligna Melanoma AJCC v6 and v7 7 171435 -NCIT:C8791 Stage II Low-CSD Melanoma AJCC v7 7 171436 -NCIT:C7918 Stage III Cutaneous Melanoma AJCC v6 6 171437 -NCIT:C8423 Stage 0 Cutaneous Melanoma AJCC v6 and v7 6 171438 -NCIT:C43372 Lentigo Maligna 7 171439 -NCIT:C9096 Stage IV Cutaneous Melanoma AJCC v6 and v7 6 171440 -NCIT:C8784 Stage IV Acral Lentiginous Melanoma AJCC v6 and v7 7 171441 -NCIT:C8789 Stage IV Lentigo Maligna Melanoma AJCC v6 and v7 7 171442 -NCIT:C8793 Stage IV Low-CSD Melanoma AJCC v7 7 171443 -NCIT:C9097 Recurrent Cutaneous Melanoma 5 171444 -NCIT:C155306 Recurrent Cutaneous Melanoma of the Extremity 6 171445 -NCIT:C175435 Recurrent Acral Lentiginous Melanoma 7 171446 -NCIT:C8785 Recurrent Lentigo Maligna Melanoma 6 171447 -NCIT:C91231 Cutaneous Melanoma by AJCC v7 Stage 5 171448 -NCIT:C7917 Stage II Cutaneous Melanoma AJCC v6 and v7 6 171449 -NCIT:C27742 Stage IIB Cutaneous Melanoma AJCC v6 and v7 7 171450 -NCIT:C86033 Stage IIA Cutaneous Melanoma AJCC v6 and v7 7 171451 -NCIT:C86034 Stage IIC Cutaneous Melanoma AJCC v6 and v7 7 171452 -NCIT:C8782 Stage II Acral Lentiginous Melanoma AJCC v6 and v7 7 171453 -NCIT:C8787 Stage II Lentigo Maligna Melanoma AJCC v6 and v7 7 171454 -NCIT:C8791 Stage II Low-CSD Melanoma AJCC v7 7 171455 -NCIT:C8423 Stage 0 Cutaneous Melanoma AJCC v6 and v7 6 171456 -NCIT:C43372 Lentigo Maligna 7 171457 -NCIT:C88414 Stage I Cutaneous Melanoma AJCC v7 6 171458 -NCIT:C86026 Stage IA Cutaneous Melanoma AJCC v7 7 171459 -NCIT:C86030 Stage IB Cutaneous Melanoma AJCC v7 7 171460 -NCIT:C8781 Stage I Acral Lentiginous Melanoma AJCC v7 7 171461 -NCIT:C8786 Stage I Lentigo Maligna Melanoma AJCC v7 7 171462 -NCIT:C8790 Stage I Low-CSD Melanoma AJCC v7 7 171463 -NCIT:C88415 Stage III Cutaneous Melanoma AJCC v7 6 171464 -NCIT:C86049 Stage IIIA Cutaneous Melanoma AJCC v7 7 171465 -NCIT:C86051 Stage IIIB Cutaneous Melanoma AJCC v7 7 171466 -NCIT:C86053 Stage IIIC Cutaneous Melanoma AJCC v7 7 171467 -NCIT:C8783 Stage III Acral Lentiginous Melanoma AJCC v7 7 171468 -NCIT:C8788 Stage III Lentigo Maligna Melanoma AJCC v7 7 171469 -NCIT:C8792 Stage III Low-CSD Melanoma AJCC v7 7 171470 -NCIT:C9096 Stage IV Cutaneous Melanoma AJCC v6 and v7 6 171471 -NCIT:C8784 Stage IV Acral Lentiginous Melanoma AJCC v6 and v7 7 171472 -NCIT:C8789 Stage IV Lentigo Maligna Melanoma AJCC v6 and v7 7 171473 -NCIT:C8793 Stage IV Low-CSD Melanoma AJCC v7 7 171474 -NCIT:C9152 Low-CSD Melanoma 5 171475 -NCIT:C8790 Stage I Low-CSD Melanoma AJCC v7 6 171476 -NCIT:C8791 Stage II Low-CSD Melanoma AJCC v7 6 171477 -NCIT:C8792 Stage III Low-CSD Melanoma AJCC v7 6 171478 -NCIT:C8793 Stage IV Low-CSD Melanoma AJCC v7 6 171479 -NCIT:C3802 Amelanotic Melanoma 4 171480 -NCIT:C4633 Amelanotic Cutaneous Melanoma 5 171481 -NCIT:C4228 Regressing Melanoma 4 171482 -NCIT:C7089 Regressing Cutaneous Melanoma 5 171483 -NCIT:C7090 Regressing Non-Cutaneous Melanoma 5 171484 -NCIT:C4236 Epithelioid Cell Melanoma 4 171485 -NCIT:C188079 Rectal Epithelioid Cell Melanoma 5 171486 -NCIT:C35780 Uveal Epithelioid Cell Melanoma 5 171487 -NCIT:C174498 Iris Epithelioid Cell Melanoma 6 171488 -NCIT:C6102 Choroid Epithelioid Cell Melanoma 6 171489 -NCIT:C6119 Ciliary Body Epithelioid Cell Melanoma 6 171490 -NCIT:C4237 Spindle Cell Melanoma 4 171491 -NCIT:C37257 Desmoplastic Melanoma 5 171492 -NCIT:C48614 Desmoplastic Neurotropic Melanoma 6 171493 -NCIT:C4238 Type A Spindle Cell Melanoma 5 171494 -NCIT:C7987 Uveal Spindle Cell Type A Melanoma 6 171495 -NCIT:C6861 Choroid Spindle Cell Type A Melanoma 7 171496 -NCIT:C6864 Ciliary Body Spindle Cell Type A Melanoma 7 171497 -NCIT:C4239 Type B Spindle Cell Melanoma 5 171498 -NCIT:C7988 Uveal Spindle Cell Type B Melanoma 6 171499 -NCIT:C6862 Choroid Spindle Cell Type B Melanoma 7 171500 -NCIT:C6863 Ciliary Body Spindle Cell Type B Melanoma 7 171501 -NCIT:C7986 Uveal Spindle Cell Melanoma 5 171502 -NCIT:C6098 Iris Spindle Cell Melanoma 6 171503 -NCIT:C6099 Choroid Spindle Cell Melanoma 6 171504 -NCIT:C6861 Choroid Spindle Cell Type A Melanoma 7 171505 -NCIT:C6862 Choroid Spindle Cell Type B Melanoma 7 171506 -NCIT:C6117 Ciliary Body Spindle Cell Melanoma 6 171507 -NCIT:C6863 Ciliary Body Spindle Cell Type B Melanoma 7 171508 -NCIT:C6864 Ciliary Body Spindle Cell Type A Melanoma 7 171509 -NCIT:C7987 Uveal Spindle Cell Type A Melanoma 6 171510 -NCIT:C6861 Choroid Spindle Cell Type A Melanoma 7 171511 -NCIT:C6864 Ciliary Body Spindle Cell Type A Melanoma 7 171512 -NCIT:C7988 Uveal Spindle Cell Type B Melanoma 6 171513 -NCIT:C6862 Choroid Spindle Cell Type B Melanoma 7 171514 -NCIT:C6863 Ciliary Body Spindle Cell Type B Melanoma 7 171515 -NCIT:C66756 Mixed Epithelioid and Spindle Cell Melanoma 4 171516 -NCIT:C35781 Uveal Mixed Cell Melanoma 5 171517 -NCIT:C174506 Iris Mixed Cell Melanoma 6 171518 -NCIT:C35782 Choroid Mixed Cell Melanoma 6 171519 -NCIT:C35783 Ciliary Body Mixed Cell Melanoma 6 171520 -NCIT:C7087 Recurrent Melanoma 4 171521 -NCIT:C182020 Recurrent Metastatic Melanoma 5 171522 -NCIT:C7088 Recurrent Non-Cutaneous Melanoma 5 171523 -NCIT:C170954 Recurrent Mucosal Melanoma 6 171524 -NCIT:C171294 Recurrent Ocular Melanoma 6 171525 -NCIT:C7914 Recurrent Uveal Melanoma 7 171526 -NCIT:C9097 Recurrent Cutaneous Melanoma 5 171527 -NCIT:C155306 Recurrent Cutaneous Melanoma of the Extremity 6 171528 -NCIT:C175435 Recurrent Acral Lentiginous Melanoma 7 171529 -NCIT:C8785 Recurrent Lentigo Maligna Melanoma 6 171530 -NCIT:C8410 Breast Melanoma 4 171531 -NCIT:C8562 Ocular Melanoma 4 171532 -NCIT:C171294 Recurrent Ocular Melanoma 5 171533 -NCIT:C7914 Recurrent Uveal Melanoma 6 171534 -NCIT:C171295 Metastatic Ocular Melanoma 5 171535 -NCIT:C148514 Metastatic Uveal Melanoma 6 171536 -NCIT:C148515 Advanced Uveal Melanoma 7 171537 -NCIT:C150130 Uveal Melanoma Metastatic in the Liver 8 171538 -NCIT:C169085 Metastatic Choroid Melanoma 7 171539 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 7 171540 -NCIT:C171296 Locally Advanced Ocular Melanoma 6 171541 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 7 171542 -NCIT:C182127 Metastatic Conjunctival Melanoma 6 171543 -NCIT:C190137 Advanced Ocular Melanoma 6 171544 -NCIT:C148515 Advanced Uveal Melanoma 7 171545 -NCIT:C150130 Uveal Melanoma Metastatic in the Liver 8 171546 -NCIT:C173329 Refractory Ocular Melanoma 5 171547 -NCIT:C173335 Refractory Uveal Melanoma 6 171548 -NCIT:C175345 Lacrimal Drainage System Melanoma 5 171549 -NCIT:C4358 Eyelid Melanoma 5 171550 -NCIT:C4550 Conjunctival Melanoma 5 171551 -NCIT:C182127 Metastatic Conjunctival Melanoma 6 171552 -NCIT:C4553 Corneal Melanoma 5 171553 -NCIT:C7712 Uveal Melanoma 5 171554 -NCIT:C111030 Uveal Melanoma by Gene Expression Profile 6 171555 -NCIT:C111020 Uveal Class 1 Melanoma 7 171556 -NCIT:C111022 Uveal Class 1a Melanoma 8 171557 -NCIT:C111023 Uveal Class 1b Melanoma 8 171558 -NCIT:C111021 Uveal Class 2 Melanoma 7 171559 -NCIT:C140659 Choroidal and Ciliary Body Melanoma by AJCC v8 Stage 6 171560 -NCIT:C140660 Stage I Choroidal and Ciliary Body Melanoma AJCC v8 7 171561 -NCIT:C140661 Stage II Choroidal and Ciliary Body Melanoma AJCC v8 7 171562 -NCIT:C140662 Stage IIA Choroidal and Ciliary Body Melanoma AJCC v8 8 171563 -NCIT:C140663 Stage IIB Choroidal and Ciliary Body Melanoma AJCC v8 8 171564 -NCIT:C140664 Stage III Choroidal and Ciliary Body Melanoma AJCC v8 7 171565 -NCIT:C140665 Stage IIIA Choroidal and Ciliary Body Melanoma AJCC v8 8 171566 -NCIT:C140666 Stage IIIB Choroidal and Ciliary Body Melanoma AJCC v8 8 171567 -NCIT:C140667 Stage IIIC Choroidal and Ciliary Body Melanoma AJCC v8 8 171568 -NCIT:C140668 Stage IV Choroidal and Ciliary Body Melanoma AJCC v8 7 171569 -NCIT:C140672 Uveal Melanoma by AJCC v7 Stage 6 171570 -NCIT:C5577 Stage I Uveal Melanoma AJCC v7 7 171571 -NCIT:C5578 Stage II Uveal Melanoma AJCC v7 7 171572 -NCIT:C88135 Stage IIA Uveal Melanoma AJCC v7 8 171573 -NCIT:C88136 Stage IIB Uveal Melanoma AJCC v7 8 171574 -NCIT:C5579 Stage III Uveal Melanoma AJCC v7 7 171575 -NCIT:C88137 Stage IIIA Uveal Melanoma AJCC v7 8 171576 -NCIT:C88138 Stage IIIB Uveal Melanoma AJCC v7 8 171577 -NCIT:C88139 Stage IIIC Uveal Melanoma AJCC v7 8 171578 -NCIT:C5580 Stage IV Uveal Melanoma AJCC v7 7 171579 -NCIT:C148514 Metastatic Uveal Melanoma 6 171580 -NCIT:C148515 Advanced Uveal Melanoma 7 171581 -NCIT:C150130 Uveal Melanoma Metastatic in the Liver 8 171582 -NCIT:C169085 Metastatic Choroid Melanoma 7 171583 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 7 171584 -NCIT:C172247 Unresectable Uveal Melanoma 6 171585 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 7 171586 -NCIT:C173335 Refractory Uveal Melanoma 6 171587 -NCIT:C190746 Iridociliary Melanoma 6 171588 -NCIT:C35780 Uveal Epithelioid Cell Melanoma 6 171589 -NCIT:C174498 Iris Epithelioid Cell Melanoma 7 171590 -NCIT:C6102 Choroid Epithelioid Cell Melanoma 7 171591 -NCIT:C6119 Ciliary Body Epithelioid Cell Melanoma 7 171592 -NCIT:C35781 Uveal Mixed Cell Melanoma 6 171593 -NCIT:C174506 Iris Mixed Cell Melanoma 7 171594 -NCIT:C35782 Choroid Mixed Cell Melanoma 7 171595 -NCIT:C35783 Ciliary Body Mixed Cell Melanoma 7 171596 -NCIT:C4558 Ciliary Body Melanoma 6 171597 -NCIT:C35783 Ciliary Body Mixed Cell Melanoma 7 171598 -NCIT:C6117 Ciliary Body Spindle Cell Melanoma 7 171599 -NCIT:C6863 Ciliary Body Spindle Cell Type B Melanoma 8 171600 -NCIT:C6864 Ciliary Body Spindle Cell Type A Melanoma 8 171601 -NCIT:C6118 Ciliary Body Intermediate Cell Type Melanoma 7 171602 -NCIT:C6119 Ciliary Body Epithelioid Cell Melanoma 7 171603 -NCIT:C4561 Choroid Melanoma 6 171604 -NCIT:C169085 Metastatic Choroid Melanoma 7 171605 -NCIT:C35782 Choroid Mixed Cell Melanoma 7 171606 -NCIT:C6099 Choroid Spindle Cell Melanoma 7 171607 -NCIT:C6861 Choroid Spindle Cell Type A Melanoma 8 171608 -NCIT:C6862 Choroid Spindle Cell Type B Melanoma 8 171609 -NCIT:C6100 Choroid Intermediate Cell Type Melanoma 7 171610 -NCIT:C6102 Choroid Epithelioid Cell Melanoma 7 171611 -NCIT:C6865 Choroid Necrotic Melanoma 7 171612 -NCIT:C7914 Recurrent Uveal Melanoma 6 171613 -NCIT:C7986 Uveal Spindle Cell Melanoma 6 171614 -NCIT:C6098 Iris Spindle Cell Melanoma 7 171615 -NCIT:C6099 Choroid Spindle Cell Melanoma 7 171616 -NCIT:C6861 Choroid Spindle Cell Type A Melanoma 8 171617 -NCIT:C6862 Choroid Spindle Cell Type B Melanoma 8 171618 -NCIT:C6117 Ciliary Body Spindle Cell Melanoma 7 171619 -NCIT:C6863 Ciliary Body Spindle Cell Type B Melanoma 8 171620 -NCIT:C6864 Ciliary Body Spindle Cell Type A Melanoma 8 171621 -NCIT:C7987 Uveal Spindle Cell Type A Melanoma 7 171622 -NCIT:C6861 Choroid Spindle Cell Type A Melanoma 8 171623 -NCIT:C6864 Ciliary Body Spindle Cell Type A Melanoma 8 171624 -NCIT:C7988 Uveal Spindle Cell Type B Melanoma 7 171625 -NCIT:C6862 Choroid Spindle Cell Type B Melanoma 8 171626 -NCIT:C6863 Ciliary Body Spindle Cell Type B Melanoma 8 171627 -NCIT:C7989 Uveal Intermediate Cell Type Melanoma 6 171628 -NCIT:C6100 Choroid Intermediate Cell Type Melanoma 7 171629 -NCIT:C6101 Iris Intermediate Cell Type Melanoma 7 171630 -NCIT:C6118 Ciliary Body Intermediate Cell Type Melanoma 7 171631 -NCIT:C7990 Uveal Necrotic Melanoma 6 171632 -NCIT:C6865 Choroid Necrotic Melanoma 7 171633 -NCIT:C9088 Iris Melanoma 6 171634 -NCIT:C174498 Iris Epithelioid Cell Melanoma 7 171635 -NCIT:C174506 Iris Mixed Cell Melanoma 7 171636 -NCIT:C6098 Iris Spindle Cell Melanoma 7 171637 -NCIT:C6101 Iris Intermediate Cell Type Melanoma 7 171638 -NCIT:C9089 Small Size Posterior Uveal Melanoma 6 171639 -NCIT:C9090 Medium/Large Size Posterior Uveal Melanoma 6 171640 -NCIT:C7913 Ocular Melanoma with Extraocular Extension 5 171641 -NCIT:C8601 Retinal Melanoma 5 171642 -NCIT:C8711 Non-Cutaneous Melanoma 4 171643 -NCIT:C114828 Mucosal Melanoma 5 171644 -NCIT:C133187 Mucosal Melanoma of the Head and Neck 6 171645 -NCIT:C133186 Mucosal Melanoma of the Head and Neck by AJCC v7 Stage 7 171646 -NCIT:C87532 Stage III Mucosal Melanoma of the Head and Neck AJCC v7 8 171647 -NCIT:C87533 Stage IVA Mucosal Melanoma of the Head and Neck AJCC v7 8 171648 -NCIT:C87534 Stage IVB Mucosal Melanoma of the Head and Neck AJCC v7 8 171649 -NCIT:C87535 Stage IVC Mucosal Melanoma of the Head and Neck AJCC v7 8 171650 -NCIT:C166399 Sinonasal Mucosal Melanoma 7 171651 -NCIT:C178521 Pharyngeal Melanoma 7 171652 -NCIT:C178522 Nasopharyngeal Melanoma 8 171653 -NCIT:C5915 Oral Cavity Mucosal Melanoma 7 171654 -NCIT:C165536 Unresectable Mucosal Melanoma 6 171655 -NCIT:C166405 Mucosal Nodular Melanoma 6 171656 -NCIT:C169086 Metastatic Mucosal Melanoma 6 171657 -NCIT:C180896 Advanced Mucosal Melanoma 7 171658 -NCIT:C170954 Recurrent Mucosal Melanoma 6 171659 -NCIT:C178443 Mucosal Melanoma of the Genitourinary System 6 171660 -NCIT:C178437 Mucosal Melanoma of the Female Genital Tract 7 171661 -NCIT:C27394 Vaginal Melanoma 8 171662 -NCIT:C40239 Cervical Melanoma 8 171663 -NCIT:C40329 Vulvar Melanoma 8 171664 -NCIT:C178453 Mucosal Melanoma of the Urinary System 7 171665 -NCIT:C159663 Bladder Melanoma 8 171666 -NCIT:C159665 Urethral Melanoma 8 171667 -NCIT:C178517 Penile Mucosal Melanoma 7 171668 -NCIT:C180894 Refractory Mucosal Melanoma 6 171669 -NCIT:C48622 Mucosal Lentiginous Melanoma 6 171670 -NCIT:C7091 Mucosal Melanoma of the Digestive System 6 171671 -NCIT:C178519 Gastric Melanoma 7 171672 -NCIT:C188067 Jejunal Melanoma 7 171673 -NCIT:C4639 Anal Melanoma 7 171674 -NCIT:C4640 Rectal Melanoma 7 171675 -NCIT:C188079 Rectal Epithelioid Cell Melanoma 8 171676 -NCIT:C5707 Esophageal Melanoma 7 171677 -NCIT:C5735 Gallbladder Melanoma 7 171678 -NCIT:C161611 Prostate Melanoma 5 171679 -NCIT:C173328 Refractory Non-Cutaneous Melanoma 5 171680 -NCIT:C173329 Refractory Ocular Melanoma 6 171681 -NCIT:C173335 Refractory Uveal Melanoma 7 171682 -NCIT:C180894 Refractory Mucosal Melanoma 6 171683 -NCIT:C178441 Ovarian Melanoma 5 171684 -NCIT:C188185 Adrenal Cortical Melanoma 5 171685 -NCIT:C4550 Conjunctival Melanoma 5 171686 -NCIT:C182127 Metastatic Conjunctival Melanoma 6 171687 -NCIT:C4553 Corneal Melanoma 5 171688 -NCIT:C45652 Lung Melanoma 5 171689 -NCIT:C5505 Central Nervous System Melanoma 5 171690 -NCIT:C5158 Spinal Cord Melanoma 6 171691 -NCIT:C5317 Meningeal Melanoma 6 171692 -NCIT:C5318 Childhood Meningeal Melanoma 7 171693 -NCIT:C5319 Adult Meningeal Melanoma 7 171694 -NCIT:C6891 Meningeal Melanomatosis 7 171695 -NCIT:C5442 Intracranial Melanoma 6 171696 -NCIT:C7088 Recurrent Non-Cutaneous Melanoma 5 171697 -NCIT:C170954 Recurrent Mucosal Melanoma 6 171698 -NCIT:C171294 Recurrent Ocular Melanoma 6 171699 -NCIT:C7914 Recurrent Uveal Melanoma 7 171700 -NCIT:C7090 Regressing Non-Cutaneous Melanoma 5 171701 -NCIT:C7092 Metastatic Non-Cutaneous Melanoma 5 171702 -NCIT:C169086 Metastatic Mucosal Melanoma 6 171703 -NCIT:C180896 Advanced Mucosal Melanoma 7 171704 -NCIT:C171295 Metastatic Ocular Melanoma 6 171705 -NCIT:C148514 Metastatic Uveal Melanoma 7 171706 -NCIT:C148515 Advanced Uveal Melanoma 8 171707 -NCIT:C150130 Uveal Melanoma Metastatic in the Liver 9 171708 -NCIT:C169085 Metastatic Choroid Melanoma 8 171709 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 8 171710 -NCIT:C171296 Locally Advanced Ocular Melanoma 7 171711 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 8 171712 -NCIT:C182127 Metastatic Conjunctival Melanoma 7 171713 -NCIT:C190137 Advanced Ocular Melanoma 7 171714 -NCIT:C148515 Advanced Uveal Melanoma 8 171715 -NCIT:C150130 Uveal Melanoma Metastatic in the Liver 9 171716 -NCIT:C171297 Locally Advanced Non-Cutaneous Melanoma 6 171717 -NCIT:C171296 Locally Advanced Ocular Melanoma 7 171718 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 8 171719 -NCIT:C180895 Advanced Non-Cutaneous Melanoma 6 171720 -NCIT:C180896 Advanced Mucosal Melanoma 7 171721 -NCIT:C190137 Advanced Ocular Melanoma 7 171722 -NCIT:C148515 Advanced Uveal Melanoma 8 171723 -NCIT:C150130 Uveal Melanoma Metastatic in the Liver 9 171724 -NCIT:C7712 Uveal Melanoma 5 171725 -NCIT:C111030 Uveal Melanoma by Gene Expression Profile 6 171726 -NCIT:C111020 Uveal Class 1 Melanoma 7 171727 -NCIT:C111022 Uveal Class 1a Melanoma 8 171728 -NCIT:C111023 Uveal Class 1b Melanoma 8 171729 -NCIT:C111021 Uveal Class 2 Melanoma 7 171730 -NCIT:C140659 Choroidal and Ciliary Body Melanoma by AJCC v8 Stage 6 171731 -NCIT:C140660 Stage I Choroidal and Ciliary Body Melanoma AJCC v8 7 171732 -NCIT:C140661 Stage II Choroidal and Ciliary Body Melanoma AJCC v8 7 171733 -NCIT:C140662 Stage IIA Choroidal and Ciliary Body Melanoma AJCC v8 8 171734 -NCIT:C140663 Stage IIB Choroidal and Ciliary Body Melanoma AJCC v8 8 171735 -NCIT:C140664 Stage III Choroidal and Ciliary Body Melanoma AJCC v8 7 171736 -NCIT:C140665 Stage IIIA Choroidal and Ciliary Body Melanoma AJCC v8 8 171737 -NCIT:C140666 Stage IIIB Choroidal and Ciliary Body Melanoma AJCC v8 8 171738 -NCIT:C140667 Stage IIIC Choroidal and Ciliary Body Melanoma AJCC v8 8 171739 -NCIT:C140668 Stage IV Choroidal and Ciliary Body Melanoma AJCC v8 7 171740 -NCIT:C140672 Uveal Melanoma by AJCC v7 Stage 6 171741 -NCIT:C5577 Stage I Uveal Melanoma AJCC v7 7 171742 -NCIT:C5578 Stage II Uveal Melanoma AJCC v7 7 171743 -NCIT:C88135 Stage IIA Uveal Melanoma AJCC v7 8 171744 -NCIT:C88136 Stage IIB Uveal Melanoma AJCC v7 8 171745 -NCIT:C5579 Stage III Uveal Melanoma AJCC v7 7 171746 -NCIT:C88137 Stage IIIA Uveal Melanoma AJCC v7 8 171747 -NCIT:C88138 Stage IIIB Uveal Melanoma AJCC v7 8 171748 -NCIT:C88139 Stage IIIC Uveal Melanoma AJCC v7 8 171749 -NCIT:C5580 Stage IV Uveal Melanoma AJCC v7 7 171750 -NCIT:C148514 Metastatic Uveal Melanoma 6 171751 -NCIT:C148515 Advanced Uveal Melanoma 7 171752 -NCIT:C150130 Uveal Melanoma Metastatic in the Liver 8 171753 -NCIT:C169085 Metastatic Choroid Melanoma 7 171754 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 7 171755 -NCIT:C172247 Unresectable Uveal Melanoma 6 171756 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 7 171757 -NCIT:C173335 Refractory Uveal Melanoma 6 171758 -NCIT:C190746 Iridociliary Melanoma 6 171759 -NCIT:C35780 Uveal Epithelioid Cell Melanoma 6 171760 -NCIT:C174498 Iris Epithelioid Cell Melanoma 7 171761 -NCIT:C6102 Choroid Epithelioid Cell Melanoma 7 171762 -NCIT:C6119 Ciliary Body Epithelioid Cell Melanoma 7 171763 -NCIT:C35781 Uveal Mixed Cell Melanoma 6 171764 -NCIT:C174506 Iris Mixed Cell Melanoma 7 171765 -NCIT:C35782 Choroid Mixed Cell Melanoma 7 171766 -NCIT:C35783 Ciliary Body Mixed Cell Melanoma 7 171767 -NCIT:C4558 Ciliary Body Melanoma 6 171768 -NCIT:C35783 Ciliary Body Mixed Cell Melanoma 7 171769 -NCIT:C6117 Ciliary Body Spindle Cell Melanoma 7 171770 -NCIT:C6863 Ciliary Body Spindle Cell Type B Melanoma 8 171771 -NCIT:C6864 Ciliary Body Spindle Cell Type A Melanoma 8 171772 -NCIT:C6118 Ciliary Body Intermediate Cell Type Melanoma 7 171773 -NCIT:C6119 Ciliary Body Epithelioid Cell Melanoma 7 171774 -NCIT:C4561 Choroid Melanoma 6 171775 -NCIT:C169085 Metastatic Choroid Melanoma 7 171776 -NCIT:C35782 Choroid Mixed Cell Melanoma 7 171777 -NCIT:C6099 Choroid Spindle Cell Melanoma 7 171778 -NCIT:C6861 Choroid Spindle Cell Type A Melanoma 8 171779 -NCIT:C6862 Choroid Spindle Cell Type B Melanoma 8 171780 -NCIT:C6100 Choroid Intermediate Cell Type Melanoma 7 171781 -NCIT:C6102 Choroid Epithelioid Cell Melanoma 7 171782 -NCIT:C6865 Choroid Necrotic Melanoma 7 171783 -NCIT:C7914 Recurrent Uveal Melanoma 6 171784 -NCIT:C7986 Uveal Spindle Cell Melanoma 6 171785 -NCIT:C6098 Iris Spindle Cell Melanoma 7 171786 -NCIT:C6099 Choroid Spindle Cell Melanoma 7 171787 -NCIT:C6861 Choroid Spindle Cell Type A Melanoma 8 171788 -NCIT:C6862 Choroid Spindle Cell Type B Melanoma 8 171789 -NCIT:C6117 Ciliary Body Spindle Cell Melanoma 7 171790 -NCIT:C6863 Ciliary Body Spindle Cell Type B Melanoma 8 171791 -NCIT:C6864 Ciliary Body Spindle Cell Type A Melanoma 8 171792 -NCIT:C7987 Uveal Spindle Cell Type A Melanoma 7 171793 -NCIT:C6861 Choroid Spindle Cell Type A Melanoma 8 171794 -NCIT:C6864 Ciliary Body Spindle Cell Type A Melanoma 8 171795 -NCIT:C7988 Uveal Spindle Cell Type B Melanoma 7 171796 -NCIT:C6862 Choroid Spindle Cell Type B Melanoma 8 171797 -NCIT:C6863 Ciliary Body Spindle Cell Type B Melanoma 8 171798 -NCIT:C7989 Uveal Intermediate Cell Type Melanoma 6 171799 -NCIT:C6100 Choroid Intermediate Cell Type Melanoma 7 171800 -NCIT:C6101 Iris Intermediate Cell Type Melanoma 7 171801 -NCIT:C6118 Ciliary Body Intermediate Cell Type Melanoma 7 171802 -NCIT:C7990 Uveal Necrotic Melanoma 6 171803 -NCIT:C6865 Choroid Necrotic Melanoma 7 171804 -NCIT:C9088 Iris Melanoma 6 171805 -NCIT:C174498 Iris Epithelioid Cell Melanoma 7 171806 -NCIT:C174506 Iris Mixed Cell Melanoma 7 171807 -NCIT:C6098 Iris Spindle Cell Melanoma 7 171808 -NCIT:C6101 Iris Intermediate Cell Type Melanoma 7 171809 -NCIT:C9089 Small Size Posterior Uveal Melanoma 6 171810 -NCIT:C9090 Medium/Large Size Posterior Uveal Melanoma 6 171811 -NCIT:C8601 Retinal Melanoma 5 171812 -NCIT:C8925 Metastatic Melanoma 4 171813 -NCIT:C133504 Melanoma Metastatic in the Central Nervous System 5 171814 -NCIT:C179206 Melanoma Metastatic in the Brain 6 171815 -NCIT:C148494 Locally Advanced Melanoma 5 171816 -NCIT:C171285 Locally Advanced Cutaneous Melanoma 6 171817 -NCIT:C171297 Locally Advanced Non-Cutaneous Melanoma 6 171818 -NCIT:C171296 Locally Advanced Ocular Melanoma 7 171819 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 8 171820 -NCIT:C153169 Advanced Melanoma 5 171821 -NCIT:C171572 Advanced Cutaneous Melanoma 6 171822 -NCIT:C155311 Advanced Cutaneous Melanoma of the Extremity 7 171823 -NCIT:C180895 Advanced Non-Cutaneous Melanoma 6 171824 -NCIT:C180896 Advanced Mucosal Melanoma 7 171825 -NCIT:C190137 Advanced Ocular Melanoma 7 171826 -NCIT:C148515 Advanced Uveal Melanoma 8 171827 -NCIT:C150130 Uveal Melanoma Metastatic in the Liver 9 171828 -NCIT:C154473 Melanoma of Unknown Primary 5 171829 -NCIT:C156072 Metastatic Cutaneous Melanoma 5 171830 -NCIT:C171285 Locally Advanced Cutaneous Melanoma 6 171831 -NCIT:C171572 Advanced Cutaneous Melanoma 6 171832 -NCIT:C155311 Advanced Cutaneous Melanoma of the Extremity 7 171833 -NCIT:C179427 Metastatic Acral Lentiginous Melanoma 6 171834 -NCIT:C182020 Recurrent Metastatic Melanoma 5 171835 -NCIT:C182024 Refractory Metastatic Melanoma 5 171836 -NCIT:C7092 Metastatic Non-Cutaneous Melanoma 5 171837 -NCIT:C169086 Metastatic Mucosal Melanoma 6 171838 -NCIT:C180896 Advanced Mucosal Melanoma 7 171839 -NCIT:C171295 Metastatic Ocular Melanoma 6 171840 -NCIT:C148514 Metastatic Uveal Melanoma 7 171841 -NCIT:C148515 Advanced Uveal Melanoma 8 171842 -NCIT:C150130 Uveal Melanoma Metastatic in the Liver 9 171843 -NCIT:C169085 Metastatic Choroid Melanoma 8 171844 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 8 171845 -NCIT:C171296 Locally Advanced Ocular Melanoma 7 171846 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 8 171847 -NCIT:C182127 Metastatic Conjunctival Melanoma 7 171848 -NCIT:C190137 Advanced Ocular Melanoma 7 171849 -NCIT:C148515 Advanced Uveal Melanoma 8 171850 -NCIT:C150130 Uveal Melanoma Metastatic in the Liver 9 171851 -NCIT:C171297 Locally Advanced Non-Cutaneous Melanoma 6 171852 -NCIT:C171296 Locally Advanced Ocular Melanoma 7 171853 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 8 171854 -NCIT:C180895 Advanced Non-Cutaneous Melanoma 6 171855 -NCIT:C180896 Advanced Mucosal Melanoma 7 171856 -NCIT:C190137 Advanced Ocular Melanoma 7 171857 -NCIT:C148515 Advanced Uveal Melanoma 8 171858 -NCIT:C150130 Uveal Melanoma Metastatic in the Liver 9 171859 -NCIT:C9499 Melanomatosis 4 171860 -NCIT:C6891 Meningeal Melanomatosis 5 171861 -NCIT:C40335 Vulvar Melanocytic Neoplasm 3 171862 -NCIT:C128289 Vulvar Melanocytic Nevus 4 171863 -NCIT:C40330 Vulvar Congenital Melanocytic Nevus 5 171864 -NCIT:C40331 Vulvar Acquired Melanocytic Nevus 5 171865 -NCIT:C40332 Vulvar Blue Nevus 5 171866 -NCIT:C40333 Atypical Melanocytic Nevus of Genital Type 5 171867 -NCIT:C40334 Vulvar Dysplastic Melanocytic Nevus 5 171868 -NCIT:C40329 Vulvar Melanoma 4 171869 -NCIT:C5504 Central Nervous System Melanocytic Neoplasm 3 171870 -NCIT:C4661 Primary Meningeal Melanocytic Neoplasm 4 171871 -NCIT:C115253 Adult Primary Meningeal Melanocytic Neoplasm 5 171872 -NCIT:C5319 Adult Meningeal Melanoma 6 171873 -NCIT:C186649 Circumscribed Meningeal Melanocytic Neoplasm 5 171874 -NCIT:C186650 Meningeal Melanocytoma of Intermediate Grade 6 171875 -NCIT:C4662 Meningeal Melanocytoma 6 171876 -NCIT:C5317 Meningeal Melanoma 6 171877 -NCIT:C5318 Childhood Meningeal Melanoma 7 171878 -NCIT:C5319 Adult Meningeal Melanoma 7 171879 -NCIT:C6891 Meningeal Melanomatosis 7 171880 -NCIT:C6890 Meningeal Melanocytosis 5 171881 -NCIT:C5505 Central Nervous System Melanoma 4 171882 -NCIT:C5158 Spinal Cord Melanoma 5 171883 -NCIT:C5317 Meningeal Melanoma 5 171884 -NCIT:C5318 Childhood Meningeal Melanoma 6 171885 -NCIT:C5319 Adult Meningeal Melanoma 6 171886 -NCIT:C6891 Meningeal Melanomatosis 6 171887 -NCIT:C5442 Intracranial Melanoma 5 171888 -NCIT:C7161 Skin Melanocytic Neoplasm 3 171889 -NCIT:C136825 Atypical Spitz Nevus 4 171890 -NCIT:C165498 Pigmented Epithelioid Melanocytoma 4 171891 -NCIT:C165522 BAP1-Inactivated Skin Melanocytic Neoplasm 4 171892 -NCIT:C165523 Combined BAP1-Inactivated Nevus 5 171893 -NCIT:C165525 BAP1-Inactivated Melanocytoma 5 171894 -NCIT:C3510 Cutaneous Melanoma 4 171895 -NCIT:C137645 Cutaneous Melanoma by AJCC v8 Stage 5 171896 -NCIT:C137646 Cutaneous Melanoma by AJCC v8 Clinical Stage 6 171897 -NCIT:C137647 Clinical Stage 0 Cutaneous Melanoma AJCC v8 7 171898 -NCIT:C137648 Clinical Stage I Cutaneous Melanoma AJCC v8 7 171899 -NCIT:C137649 Clinical Stage IA Cutaneous Melanoma AJCC v8 8 171900 -NCIT:C137650 Clinical Stage IB Cutaneous Melanoma AJCC v8 8 171901 -NCIT:C137651 Clinical Stage II Cutaneous Melanoma AJCC v8 7 171902 -NCIT:C137652 Clinical Stage IIA Cutaneous Melanoma AJCC v8 8 171903 -NCIT:C137653 Clinical Stage IIB Cutaneous Melanoma AJCC v8 8 171904 -NCIT:C137654 Clinical Stage IIC Cutaneous Melanoma AJCC v8 8 171905 -NCIT:C137655 Clinical Stage III Cutaneous Melanoma AJCC v8 7 171906 -NCIT:C137656 Clinical Stage IV Cutaneous Melanoma AJCC v8 7 171907 -NCIT:C137657 Cutaneous Melanoma by AJCC v8 Pathologic Stage 6 171908 -NCIT:C137662 Pathologic Stage 0 Cutaneous Melanoma AJCC v8 7 171909 -NCIT:C137663 Pathologic Stage I Cutaneous Melanoma AJCC v8 7 171910 -NCIT:C137664 Pathologic Stage IA Cutaneous Melanoma AJCC v8 8 171911 -NCIT:C137665 Pathologic Stage IB Cutaneous Melanoma AJCC v8 8 171912 -NCIT:C137666 Pathologic Stage II Cutaneous Melanoma AJCC v8 7 171913 -NCIT:C137667 Pathologic Stage IIA Cutaneous Melanoma AJCC v8 8 171914 -NCIT:C137668 Pathologic Stage IIB Cutaneous Melanoma AJCC v8 8 171915 -NCIT:C137669 Pathologic Stage IIC Cutaneous Melanoma AJCC v8 8 171916 -NCIT:C137670 Pathologic Stage III Cutaneous Melanoma AJCC v8 7 171917 -NCIT:C137671 Pathologic Stage IIIA Cutaneous Melanoma AJCC v8 8 171918 -NCIT:C137672 Pathologic Stage IIIB Cutaneous Melanoma AJCC v8 8 171919 -NCIT:C137673 Pathologic Stage IIIC Cutaneous Melanoma AJCC v8 8 171920 -NCIT:C137675 Pathologic Stage IIID Cutaneous Melanoma AJCC v8 8 171921 -NCIT:C137677 Pathologic Stage IV Cutaneous Melanoma AJCC v8 7 171922 -NCIT:C148245 Unresectable Cutaneous Melanoma 5 171923 -NCIT:C165535 Unresectable Acral Lentiginous Melanoma 6 171924 -NCIT:C150544 Refractory Cutaneous Melanoma 5 171925 -NCIT:C155305 Cutaneous Melanoma of the Extremity 5 171926 -NCIT:C155306 Recurrent Cutaneous Melanoma of the Extremity 6 171927 -NCIT:C175435 Recurrent Acral Lentiginous Melanoma 7 171928 -NCIT:C155311 Advanced Cutaneous Melanoma of the Extremity 6 171929 -NCIT:C4022 Acral Lentiginous Melanoma 6 171930 -NCIT:C165535 Unresectable Acral Lentiginous Melanoma 7 171931 -NCIT:C175435 Recurrent Acral Lentiginous Melanoma 7 171932 -NCIT:C179427 Metastatic Acral Lentiginous Melanoma 7 171933 -NCIT:C8781 Stage I Acral Lentiginous Melanoma AJCC v7 7 171934 -NCIT:C8782 Stage II Acral Lentiginous Melanoma AJCC v6 and v7 7 171935 -NCIT:C8783 Stage III Acral Lentiginous Melanoma AJCC v7 7 171936 -NCIT:C8784 Stage IV Acral Lentiginous Melanoma AJCC v6 and v7 7 171937 -NCIT:C156072 Metastatic Cutaneous Melanoma 5 171938 -NCIT:C171285 Locally Advanced Cutaneous Melanoma 6 171939 -NCIT:C171572 Advanced Cutaneous Melanoma 6 171940 -NCIT:C155311 Advanced Cutaneous Melanoma of the Extremity 7 171941 -NCIT:C179427 Metastatic Acral Lentiginous Melanoma 6 171942 -NCIT:C165497 Spitz Melanoma 5 171943 -NCIT:C165659 High-CSD Melanoma 5 171944 -NCIT:C37257 Desmoplastic Melanoma 6 171945 -NCIT:C48614 Desmoplastic Neurotropic Melanoma 7 171946 -NCIT:C9151 Lentigo Maligna Melanoma 6 171947 -NCIT:C8785 Recurrent Lentigo Maligna Melanoma 7 171948 -NCIT:C8786 Stage I Lentigo Maligna Melanoma AJCC v7 7 171949 -NCIT:C8787 Stage II Lentigo Maligna Melanoma AJCC v6 and v7 7 171950 -NCIT:C8788 Stage III Lentigo Maligna Melanoma AJCC v7 7 171951 -NCIT:C8789 Stage IV Lentigo Maligna Melanoma AJCC v6 and v7 7 171952 -NCIT:C178518 Penile Cutaneous Melanoma 5 171953 -NCIT:C190240 Resectable Cutaneous Melanoma 5 171954 -NCIT:C190280 Childhood Cutaneous Melanoma 5 171955 -NCIT:C27919 Old Burn Scar-Related Cutaneous Melanoma 5 171956 -NCIT:C27920 Solar Radiation-Related Cutaneous Melanoma 5 171957 -NCIT:C4225 Cutaneous Nodular Melanoma 5 171958 -NCIT:C4227 Balloon Cell Melanoma 5 171959 -NCIT:C4232 Melanoma in Junctional Nevus 5 171960 -NCIT:C4240 Melanoma Arising from Blue Nevus 5 171961 -NCIT:C4633 Amelanotic Cutaneous Melanoma 5 171962 -NCIT:C48607 Invasive Cutaneous Melanoma 5 171963 -NCIT:C48612 Minimal Deviation Melanoma 5 171964 -NCIT:C48613 Melanoma in Congenital Melanocytic Nevus 5 171965 -NCIT:C4235 Melanoma Arising in Giant Congenital Nevus 6 171966 -NCIT:C54662 Nevoid Melanoma 5 171967 -NCIT:C54663 Signet Ring Melanoma 5 171968 -NCIT:C66753 Malignant Melanoma in Precancerous Melanosis 5 171969 -NCIT:C7089 Regressing Cutaneous Melanoma 5 171970 -NCIT:C7361 Scrotal Melanoma 5 171971 -NCIT:C8498 Hereditary Melanoma 5 171972 -NCIT:C128801 Cutaneous Malignant Melanoma 2 6 171973 -NCIT:C90514 Cutaneous Melanoma by AJCC v6 Stage 5 171974 -NCIT:C7916 Stage I Cutaneous Melanoma AJCC v6 6 171975 -NCIT:C7917 Stage II Cutaneous Melanoma AJCC v6 and v7 6 171976 -NCIT:C27742 Stage IIB Cutaneous Melanoma AJCC v6 and v7 7 171977 -NCIT:C86033 Stage IIA Cutaneous Melanoma AJCC v6 and v7 7 171978 -NCIT:C86034 Stage IIC Cutaneous Melanoma AJCC v6 and v7 7 171979 -NCIT:C8782 Stage II Acral Lentiginous Melanoma AJCC v6 and v7 7 171980 -NCIT:C8787 Stage II Lentigo Maligna Melanoma AJCC v6 and v7 7 171981 -NCIT:C8791 Stage II Low-CSD Melanoma AJCC v7 7 171982 -NCIT:C7918 Stage III Cutaneous Melanoma AJCC v6 6 171983 -NCIT:C8423 Stage 0 Cutaneous Melanoma AJCC v6 and v7 6 171984 -NCIT:C43372 Lentigo Maligna 7 171985 -NCIT:C9096 Stage IV Cutaneous Melanoma AJCC v6 and v7 6 171986 -NCIT:C8784 Stage IV Acral Lentiginous Melanoma AJCC v6 and v7 7 171987 -NCIT:C8789 Stage IV Lentigo Maligna Melanoma AJCC v6 and v7 7 171988 -NCIT:C8793 Stage IV Low-CSD Melanoma AJCC v7 7 171989 -NCIT:C9097 Recurrent Cutaneous Melanoma 5 171990 -NCIT:C155306 Recurrent Cutaneous Melanoma of the Extremity 6 171991 -NCIT:C175435 Recurrent Acral Lentiginous Melanoma 7 171992 -NCIT:C8785 Recurrent Lentigo Maligna Melanoma 6 171993 -NCIT:C91231 Cutaneous Melanoma by AJCC v7 Stage 5 171994 -NCIT:C7917 Stage II Cutaneous Melanoma AJCC v6 and v7 6 171995 -NCIT:C27742 Stage IIB Cutaneous Melanoma AJCC v6 and v7 7 171996 -NCIT:C86033 Stage IIA Cutaneous Melanoma AJCC v6 and v7 7 171997 -NCIT:C86034 Stage IIC Cutaneous Melanoma AJCC v6 and v7 7 171998 -NCIT:C8782 Stage II Acral Lentiginous Melanoma AJCC v6 and v7 7 171999 -NCIT:C8787 Stage II Lentigo Maligna Melanoma AJCC v6 and v7 7 172000 -NCIT:C8791 Stage II Low-CSD Melanoma AJCC v7 7 172001 -NCIT:C8423 Stage 0 Cutaneous Melanoma AJCC v6 and v7 6 172002 -NCIT:C43372 Lentigo Maligna 7 172003 -NCIT:C88414 Stage I Cutaneous Melanoma AJCC v7 6 172004 -NCIT:C86026 Stage IA Cutaneous Melanoma AJCC v7 7 172005 -NCIT:C86030 Stage IB Cutaneous Melanoma AJCC v7 7 172006 -NCIT:C8781 Stage I Acral Lentiginous Melanoma AJCC v7 7 172007 -NCIT:C8786 Stage I Lentigo Maligna Melanoma AJCC v7 7 172008 -NCIT:C8790 Stage I Low-CSD Melanoma AJCC v7 7 172009 -NCIT:C88415 Stage III Cutaneous Melanoma AJCC v7 6 172010 -NCIT:C86049 Stage IIIA Cutaneous Melanoma AJCC v7 7 172011 -NCIT:C86051 Stage IIIB Cutaneous Melanoma AJCC v7 7 172012 -NCIT:C86053 Stage IIIC Cutaneous Melanoma AJCC v7 7 172013 -NCIT:C8783 Stage III Acral Lentiginous Melanoma AJCC v7 7 172014 -NCIT:C8788 Stage III Lentigo Maligna Melanoma AJCC v7 7 172015 -NCIT:C8792 Stage III Low-CSD Melanoma AJCC v7 7 172016 -NCIT:C9096 Stage IV Cutaneous Melanoma AJCC v6 and v7 6 172017 -NCIT:C8784 Stage IV Acral Lentiginous Melanoma AJCC v6 and v7 7 172018 -NCIT:C8789 Stage IV Lentigo Maligna Melanoma AJCC v6 and v7 7 172019 -NCIT:C8793 Stage IV Low-CSD Melanoma AJCC v7 7 172020 -NCIT:C9152 Low-CSD Melanoma 5 172021 -NCIT:C8790 Stage I Low-CSD Melanoma AJCC v7 6 172022 -NCIT:C8791 Stage II Low-CSD Melanoma AJCC v7 6 172023 -NCIT:C8792 Stage III Low-CSD Melanoma AJCC v7 6 172024 -NCIT:C8793 Stage IV Low-CSD Melanoma AJCC v7 6 172025 -NCIT:C3694 Dysplastic Nevus 4 172026 -NCIT:C40334 Vulvar Dysplastic Melanocytic Nevus 5 172027 -NCIT:C37258 Paraganglioma-Like Dermal Melanocytic Tumor 4 172028 -NCIT:C7571 Benign Skin Melanocytic Nevus 4 172029 -NCIT:C165529 Combined Nevus 5 172030 -NCIT:C165523 Combined BAP1-Inactivated Nevus 6 172031 -NCIT:C190284 Childhood Benign Skin Melanocytic Nevus 5 172032 -NCIT:C190281 Childhood Pigmented Spindle Cell Nevus 6 172033 -NCIT:C190282 Childhood Spitz Nevus 6 172034 -NCIT:C190283 Childhood Blue Nevus 6 172035 -NCIT:C190285 Childhood Junctional Nevus 6 172036 -NCIT:C190286 Childhood Compound Nevus 6 172037 -NCIT:C190287 Childhood Dermal Nevus 6 172038 -NCIT:C3944 Congenital Melanocytic Nevus 6 172039 -NCIT:C40330 Vulvar Congenital Melanocytic Nevus 7 172040 -NCIT:C4234 Giant Congenital Nevus 7 172041 -NCIT:C66754 Small Congenital Melanocytic Nevus 7 172042 -NCIT:C66755 Proliferative Nodules in Congenital Melanocytic Nevus 7 172043 -NCIT:C27007 Spitz Nevus 5 172044 -NCIT:C190282 Childhood Spitz Nevus 6 172045 -NCIT:C66757 Epithelioid Cell Nevus 6 172046 -NCIT:C66758 Spindle Cell Nevus 6 172047 -NCIT:C82864 Desmoplastic Spitz Nevus 6 172048 -NCIT:C27095 Nonpigmented Nevus 5 172049 -NCIT:C27816 Pigmented Nevus 5 172050 -NCIT:C3803 Blue Nevus 6 172051 -NCIT:C190283 Childhood Blue Nevus 7 172052 -NCIT:C40240 Cervical Blue Nevus 7 172053 -NCIT:C40282 Vaginal Blue Nevus 7 172054 -NCIT:C40332 Vulvar Blue Nevus 7 172055 -NCIT:C4241 Cellular Blue Nevus 7 172056 -NCIT:C4496 Common Blue Nevus 7 172057 -NCIT:C4234 Giant Congenital Nevus 6 172058 -NCIT:C4751 Pigmented Spindle Cell Nevus 6 172059 -NCIT:C190281 Childhood Pigmented Spindle Cell Nevus 7 172060 -NCIT:C3804 Dermal Nevus 5 172061 -NCIT:C190287 Childhood Dermal Nevus 6 172062 -NCIT:C4229 Neuronevus 6 172063 -NCIT:C3880 Eyelid Nevus 5 172064 -NCIT:C3944 Congenital Melanocytic Nevus 5 172065 -NCIT:C40330 Vulvar Congenital Melanocytic Nevus 6 172066 -NCIT:C4234 Giant Congenital Nevus 6 172067 -NCIT:C66754 Small Congenital Melanocytic Nevus 6 172068 -NCIT:C66755 Proliferative Nodules in Congenital Melanocytic Nevus 6 172069 -NCIT:C4226 Balloon Cell Nevus 5 172070 -NCIT:C4495 Cockade Nevus 5 172071 -NCIT:C4497 Desmoplastic Nevus 5 172072 -NCIT:C82864 Desmoplastic Spitz Nevus 6 172073 -NCIT:C4498 Nevus Spilus 5 172074 -NCIT:C54658 Breast Nevus 5 172075 -NCIT:C54659 Acral Nevus 5 172076 -NCIT:C165662 Nail Matrix Nevus 6 172077 -NCIT:C54660 Flexural Skin Nevus 5 172078 -NCIT:C54661 Head and Neck Nevus 5 172079 -NCIT:C7576 Deep Penetrating Nevus 5 172080 -NCIT:C7577 Recurrent Nevus 5 172081 -NCIT:C7602 Halo Nevus 5 172082 -NCIT:C7603 Regressing Nevus 5 172083 -NCIT:C82862 Meyerson Nevus 5 172084 -NCIT:C7570 Melanocytic Nevus 3 172085 -NCIT:C136825 Atypical Spitz Nevus 4 172086 -NCIT:C174502 Uveal Nevus 4 172087 -NCIT:C174500 Ciliary Body Nevus 5 172088 -NCIT:C174501 Choroid Nevus 5 172089 -NCIT:C174503 Uveal Melanocytoma 5 172090 -NCIT:C4556 Iris Nevus 5 172091 -NCIT:C186731 Oral Melanocytic Nevus 4 172092 -NCIT:C3694 Dysplastic Nevus 4 172093 -NCIT:C40334 Vulvar Dysplastic Melanocytic Nevus 5 172094 -NCIT:C3901 Compound Nevus 4 172095 -NCIT:C174418 Conjunctival Compound Nevus 5 172096 -NCIT:C174448 Inflamed Juvenile Conjunctival Nevus 6 172097 -NCIT:C190286 Childhood Compound Nevus 5 172098 -NCIT:C4231 Junctional Nevus 4 172099 -NCIT:C174416 Conjunctival Junctional Nevus 5 172100 -NCIT:C190285 Childhood Junctional Nevus 5 172101 -NCIT:C4551 Conjunctival Nevus 4 172102 -NCIT:C174416 Conjunctival Junctional Nevus 5 172103 -NCIT:C174418 Conjunctival Compound Nevus 5 172104 -NCIT:C174448 Inflamed Juvenile Conjunctival Nevus 6 172105 -NCIT:C174426 Conjunctival Subepithelial Nevus 5 172106 -NCIT:C174452 Conjunctival Blue Nevus 5 172107 -NCIT:C174493 Conjunctival Spitz Nevus 5 172108 -NCIT:C7571 Benign Skin Melanocytic Nevus 4 172109 -NCIT:C165529 Combined Nevus 5 172110 -NCIT:C165523 Combined BAP1-Inactivated Nevus 6 172111 -NCIT:C190284 Childhood Benign Skin Melanocytic Nevus 5 172112 -NCIT:C190281 Childhood Pigmented Spindle Cell Nevus 6 172113 -NCIT:C190282 Childhood Spitz Nevus 6 172114 -NCIT:C190283 Childhood Blue Nevus 6 172115 -NCIT:C190285 Childhood Junctional Nevus 6 172116 -NCIT:C190286 Childhood Compound Nevus 6 172117 -NCIT:C190287 Childhood Dermal Nevus 6 172118 -NCIT:C3944 Congenital Melanocytic Nevus 6 172119 -NCIT:C40330 Vulvar Congenital Melanocytic Nevus 7 172120 -NCIT:C4234 Giant Congenital Nevus 7 172121 -NCIT:C66754 Small Congenital Melanocytic Nevus 7 172122 -NCIT:C66755 Proliferative Nodules in Congenital Melanocytic Nevus 7 172123 -NCIT:C27007 Spitz Nevus 5 172124 -NCIT:C190282 Childhood Spitz Nevus 6 172125 -NCIT:C66757 Epithelioid Cell Nevus 6 172126 -NCIT:C66758 Spindle Cell Nevus 6 172127 -NCIT:C82864 Desmoplastic Spitz Nevus 6 172128 -NCIT:C27095 Nonpigmented Nevus 5 172129 -NCIT:C27816 Pigmented Nevus 5 172130 -NCIT:C3803 Blue Nevus 6 172131 -NCIT:C190283 Childhood Blue Nevus 7 172132 -NCIT:C40240 Cervical Blue Nevus 7 172133 -NCIT:C40282 Vaginal Blue Nevus 7 172134 -NCIT:C40332 Vulvar Blue Nevus 7 172135 -NCIT:C4241 Cellular Blue Nevus 7 172136 -NCIT:C4496 Common Blue Nevus 7 172137 -NCIT:C4234 Giant Congenital Nevus 6 172138 -NCIT:C4751 Pigmented Spindle Cell Nevus 6 172139 -NCIT:C190281 Childhood Pigmented Spindle Cell Nevus 7 172140 -NCIT:C3804 Dermal Nevus 5 172141 -NCIT:C190287 Childhood Dermal Nevus 6 172142 -NCIT:C4229 Neuronevus 6 172143 -NCIT:C3880 Eyelid Nevus 5 172144 -NCIT:C3944 Congenital Melanocytic Nevus 5 172145 -NCIT:C40330 Vulvar Congenital Melanocytic Nevus 6 172146 -NCIT:C4234 Giant Congenital Nevus 6 172147 -NCIT:C66754 Small Congenital Melanocytic Nevus 6 172148 -NCIT:C66755 Proliferative Nodules in Congenital Melanocytic Nevus 6 172149 -NCIT:C4226 Balloon Cell Nevus 5 172150 -NCIT:C4495 Cockade Nevus 5 172151 -NCIT:C4497 Desmoplastic Nevus 5 172152 -NCIT:C82864 Desmoplastic Spitz Nevus 6 172153 -NCIT:C4498 Nevus Spilus 5 172154 -NCIT:C54658 Breast Nevus 5 172155 -NCIT:C54659 Acral Nevus 5 172156 -NCIT:C165662 Nail Matrix Nevus 6 172157 -NCIT:C54660 Flexural Skin Nevus 5 172158 -NCIT:C54661 Head and Neck Nevus 5 172159 -NCIT:C7576 Deep Penetrating Nevus 5 172160 -NCIT:C7577 Recurrent Nevus 5 172161 -NCIT:C7602 Halo Nevus 5 172162 -NCIT:C7603 Regressing Nevus 5 172163 -NCIT:C82862 Meyerson Nevus 5 172164 -NCIT:C7578 Nevus of Female Genitalia 4 172165 -NCIT:C128289 Vulvar Melanocytic Nevus 5 172166 -NCIT:C40330 Vulvar Congenital Melanocytic Nevus 6 172167 -NCIT:C40331 Vulvar Acquired Melanocytic Nevus 6 172168 -NCIT:C40332 Vulvar Blue Nevus 6 172169 -NCIT:C40333 Atypical Melanocytic Nevus of Genital Type 6 172170 -NCIT:C40334 Vulvar Dysplastic Melanocytic Nevus 6 172171 -NCIT:C40240 Cervical Blue Nevus 5 172172 -NCIT:C40281 Benign Vaginal Melanocytic Nevus 5 172173 -NCIT:C40282 Vaginal Blue Nevus 6 172174 -NCIT:C9498 Melanocytoma 3 172175 -NCIT:C175223 Eye Melanocytoma 4 172176 -NCIT:C174503 Uveal Melanocytoma 5 172177 -NCIT:C175224 Visual Pathway Melanocytoma 5 172178 -NCIT:C4230 Optic Disc Melanocytoma 6 172179 -NCIT:C4662 Meningeal Melanocytoma 4 172180 -NCIT:C7059 Mesenchymal Cell Neoplasm 2 172181 -NCIT:C4063 Myomatous Neoplasm 3 172182 -NCIT:C3751 Smooth Muscle Neoplasm 4 172183 -NCIT:C178217 EBV-Associated Smooth Muscle Tumor 5 172184 -NCIT:C188982 Childhood EBV-Associated Smooth Muscle Tumor 6 172185 -NCIT:C179359 Ovarian Smooth Muscle Neoplasm 5 172186 -NCIT:C179360 Ovarian Leiomyoma 6 172187 -NCIT:C179362 Ovarian Smooth Muscle Tumor of Uncertain Malignant Potential 6 172188 -NCIT:C5234 Ovarian Leiomyosarcoma 6 172189 -NCIT:C181941 Female Reproductive System Smooth Muscle Tumor of Uncertain Malignant Potential 5 172190 -NCIT:C179362 Ovarian Smooth Muscle Tumor of Uncertain Malignant Potential 6 172191 -NCIT:C181939 Vulvar Smooth Muscle Tumor of Uncertain Malignant Potential 6 172192 -NCIT:C181940 Vaginal Smooth Muscle Tumor of Uncertain Malignant Potential 6 172193 -NCIT:C40177 Uterine Corpus Smooth Muscle Tumor of Uncertain Malignant Potential 6 172194 -NCIT:C180540 Uterine Corpus Spindle Smooth Muscle Tumor of Uncertain Malignant Potential 7 172195 -NCIT:C180541 Uterine Corpus Myxoid Smooth Muscle Tumor of Uncertain Malignant Potential 7 172196 -NCIT:C180542 Uterine Corpus Epithelioid Smooth Muscle Tumor of Uncertain Malignant Potential 7 172197 -NCIT:C40176 Uterine Corpus Smooth Muscle Neoplasm 5 172198 -NCIT:C3434 Uterine Corpus Leiomyoma 6 172199 -NCIT:C126975 Uterine Corpus Hydropic Leiomyoma 7 172200 -NCIT:C3511 Uterine Corpus Degenerated Leiomyoma 7 172201 -NCIT:C40162 Uterine Corpus Leiomyoma, Mitotically Active Variant 7 172202 -NCIT:C40163 Uterine Corpus Cellular Leiomyoma 7 172203 -NCIT:C40164 Uterine Corpus Epithelioid Leiomyoma 7 172204 -NCIT:C40165 Uterine Corpus Apoplectic Leiomyoma 7 172205 -NCIT:C40166 Uterine Corpus Myxoid Leiomyoma 7 172206 -NCIT:C40167 Uterine Corpus Bizarre Leiomyoma 7 172207 -NCIT:C40168 Uterine Corpus Lipoleiomyoma 7 172208 -NCIT:C40170 Uterine Corpus Diffuse Leiomyomatosis 7 172209 -NCIT:C40172 Uterine Corpus Dissecting Leiomyoma 7 172210 -NCIT:C40173 Uterine Corpus Metastasizing Leiomyoma 7 172211 -NCIT:C5356 Uterine Corpus Intravenous Leiomyomatosis 7 172212 -NCIT:C40177 Uterine Corpus Smooth Muscle Tumor of Uncertain Malignant Potential 6 172213 -NCIT:C180540 Uterine Corpus Spindle Smooth Muscle Tumor of Uncertain Malignant Potential 7 172214 -NCIT:C180541 Uterine Corpus Myxoid Smooth Muscle Tumor of Uncertain Malignant Potential 7 172215 -NCIT:C180542 Uterine Corpus Epithelioid Smooth Muscle Tumor of Uncertain Malignant Potential 7 172216 -NCIT:C6340 Uterine Corpus Leiomyosarcoma 6 172217 -NCIT:C139870 Uterine Corpus Leiomyosarcoma by AJCC v8 Stage 7 172218 -NCIT:C139871 Stage I Uterine Corpus Leiomyosarcoma AJCC v8 8 172219 -NCIT:C139872 Stage IA Uterine Corpus Leiomyosarcoma AJCC v8 9 172220 -NCIT:C139873 Stage IB Uterine Corpus Leiomyosarcoma AJCC v8 9 172221 -NCIT:C139874 Stage II Uterine Corpus Leiomyosarcoma AJCC v8 8 172222 -NCIT:C139875 Stage III Uterine Corpus Leiomyosarcoma AJCC v8 8 172223 -NCIT:C139876 Stage IIIA Uterine Corpus Leiomyosarcoma AJCC v8 9 172224 -NCIT:C139877 Stage IIIB Uterine Corpus Leiomyosarcoma AJCC v8 9 172225 -NCIT:C139878 Stage IIIC Uterine Corpus Leiomyosarcoma AJCC v8 9 172226 -NCIT:C139879 Stage IV Uterine Corpus Leiomyosarcoma AJCC v8 8 172227 -NCIT:C139880 Stage IVA Uterine Corpus Leiomyosarcoma AJCC v8 9 172228 -NCIT:C139881 Stage IVB Uterine Corpus Leiomyosarcoma AJCC v8 9 172229 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 7 172230 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 7 172231 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 172232 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 7 172233 -NCIT:C40174 Uterine Corpus Epithelioid Leiomyosarcoma 7 172234 -NCIT:C40175 Uterine Corpus Myxoid Leiomyosarcoma 7 172235 -NCIT:C4480 Skin Smooth Muscle Neoplasm 5 172236 -NCIT:C4482 Skin Leiomyoma 6 172237 -NCIT:C43332 Pilar Leiomyoma 7 172238 -NCIT:C4483 Dartoic Leiomyoma 7 172239 -NCIT:C4484 Atypical Intradermal Smooth Muscle Neoplasm 6 172240 -NCIT:C6510 Benign Smooth Muscle Neoplasm 5 172241 -NCIT:C3157 Leiomyoma 6 172242 -NCIT:C128046 Cervical Leiomyoma 7 172243 -NCIT:C156346 Thyroid Gland Leiomyoma 7 172244 -NCIT:C159209 Kidney Leiomyoma 7 172245 -NCIT:C162494 Paratesticular Leiomyoma 7 172246 -NCIT:C161638 Seminal Vesicle Leiomyoma 8 172247 -NCIT:C162583 Penile Leiomyoma 7 172248 -NCIT:C172942 Digestive System Leiomyoma 7 172249 -NCIT:C3866 Esophageal Leiomyoma 8 172250 -NCIT:C3876 Gastric Leiomyoma 8 172251 -NCIT:C5514 Appendix Leiomyoma 8 172252 -NCIT:C5608 Anal Leiomyoma 8 172253 -NCIT:C5677 Colorectal Leiomyoma 8 172254 -NCIT:C5492 Colon Leiomyoma 9 172255 -NCIT:C5552 Rectal Leiomyoma 9 172256 -NCIT:C5747 Gallbladder Leiomyoma 8 172257 -NCIT:C5753 Liver Leiomyoma 8 172258 -NCIT:C5855 Extrahepatic Bile Duct Leiomyoma 8 172259 -NCIT:C7725 Small Intestinal Leiomyoma 8 172260 -NCIT:C173140 Sinonasal Leiomyoma 7 172261 -NCIT:C179360 Ovarian Leiomyoma 7 172262 -NCIT:C179923 Uterine Ligament Leiomyoma 7 172263 -NCIT:C179924 Broad Ligament Leiomyoma 8 172264 -NCIT:C188253 Adrenal Gland Leiomyoma 7 172265 -NCIT:C3434 Uterine Corpus Leiomyoma 7 172266 -NCIT:C126975 Uterine Corpus Hydropic Leiomyoma 8 172267 -NCIT:C3511 Uterine Corpus Degenerated Leiomyoma 8 172268 -NCIT:C40162 Uterine Corpus Leiomyoma, Mitotically Active Variant 8 172269 -NCIT:C40163 Uterine Corpus Cellular Leiomyoma 8 172270 -NCIT:C40164 Uterine Corpus Epithelioid Leiomyoma 8 172271 -NCIT:C40165 Uterine Corpus Apoplectic Leiomyoma 8 172272 -NCIT:C40166 Uterine Corpus Myxoid Leiomyoma 8 172273 -NCIT:C40167 Uterine Corpus Bizarre Leiomyoma 8 172274 -NCIT:C40168 Uterine Corpus Lipoleiomyoma 8 172275 -NCIT:C40170 Uterine Corpus Diffuse Leiomyomatosis 8 172276 -NCIT:C40172 Uterine Corpus Dissecting Leiomyoma 8 172277 -NCIT:C40173 Uterine Corpus Metastasizing Leiomyoma 8 172278 -NCIT:C5356 Uterine Corpus Intravenous Leiomyomatosis 8 172279 -NCIT:C3748 Leiomyomatosis 7 172280 -NCIT:C3958 Disseminated Peritoneal Leiomyomatosis 8 172281 -NCIT:C40170 Uterine Corpus Diffuse Leiomyomatosis 8 172282 -NCIT:C4518 Intravenous Leiomyomatosis 8 172283 -NCIT:C5356 Uterine Corpus Intravenous Leiomyomatosis 9 172284 -NCIT:C40127 Fallopian Tube Leiomyoma 7 172285 -NCIT:C40326 Vulvar Leiomyoma 7 172286 -NCIT:C40399 Breast Leiomyoma 7 172287 -NCIT:C4256 Cellular Leiomyoma 7 172288 -NCIT:C40163 Uterine Corpus Cellular Leiomyoma 8 172289 -NCIT:C4257 Bizarre Leiomyoma 7 172290 -NCIT:C40167 Uterine Corpus Bizarre Leiomyoma 8 172291 -NCIT:C4482 Skin Leiomyoma 7 172292 -NCIT:C43332 Pilar Leiomyoma 8 172293 -NCIT:C4483 Dartoic Leiomyoma 8 172294 -NCIT:C4560 Ciliary Body Leiomyoma 7 172295 -NCIT:C53964 Bone Leiomyoma 7 172296 -NCIT:C5544 Prostate Leiomyoma 7 172297 -NCIT:C5660 Lung Leiomyoma 7 172298 -NCIT:C5661 Endobronchial Leiomyoma 8 172299 -NCIT:C5909 Oral Cavity Leiomyoma 7 172300 -NCIT:C6027 Laryngeal Leiomyoma 7 172301 -NCIT:C6049 Tracheal Leiomyoma 7 172302 -NCIT:C6161 Ureter Leiomyoma 7 172303 -NCIT:C6171 Urethral Leiomyoma 7 172304 -NCIT:C6178 Bladder Leiomyoma 7 172305 -NCIT:C6373 Vaginal Leiomyoma 7 172306 -NCIT:C6512 Deep Leiomyoma 7 172307 -NCIT:C6598 Mediastinal Leiomyoma 7 172308 -NCIT:C6743 Pericardial Leiomyoma 7 172309 -NCIT:C67563 Myxoid Leiomyoma 7 172310 -NCIT:C40166 Uterine Corpus Myxoid Leiomyoma 8 172311 -NCIT:C6998 Central Nervous System Leiomyoma 7 172312 -NCIT:C6511 Malignant Smooth Muscle Neoplasm 5 172313 -NCIT:C3158 Leiomyosarcoma 6 172314 -NCIT:C121571 Leiomyosarcoma of Deep Soft Tissue 7 172315 -NCIT:C27904 Retroperitoneal Leiomyosarcoma 8 172316 -NCIT:C128047 Cervical Leiomyosarcoma 7 172317 -NCIT:C132147 Unresectable Leiomyosarcoma 7 172318 -NCIT:C168728 Unresectable Soft Tissue Leiomyosarcoma 8 172319 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 9 172320 -NCIT:C148294 Refractory Leiomyosarcoma 7 172321 -NCIT:C156347 Thyroid Gland Leiomyosarcoma 7 172322 -NCIT:C159670 Bladder Leiomyosarcoma 7 172323 -NCIT:C162306 EBV-Related Leiomyosarcoma 7 172324 -NCIT:C162495 Paratesticular Leiomyosarcoma 7 172325 -NCIT:C161641 Seminal Vesicle Leiomyosarcoma 8 172326 -NCIT:C162585 Penile Leiomyosarcoma 7 172327 -NCIT:C172951 Digestive System Leiomyosarcoma 7 172328 -NCIT:C188065 Pancreatic Leiomyosarcoma 8 172329 -NCIT:C27200 Gastric Leiomyosarcoma 8 172330 -NCIT:C5334 Esophageal Leiomyosarcoma 8 172331 -NCIT:C5599 Anal Leiomyosarcoma 8 172332 -NCIT:C5756 Liver Leiomyosarcoma 8 172333 -NCIT:C5841 Gallbladder Leiomyosarcoma 8 172334 -NCIT:C5848 Extrahepatic Bile Duct Leiomyosarcoma 8 172335 -NCIT:C7085 Small Intestinal Leiomyosarcoma 8 172336 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 9 172337 -NCIT:C96435 Appendix Leiomyosarcoma 8 172338 -NCIT:C96509 Colorectal Leiomyosarcoma 8 172339 -NCIT:C5494 Colon Leiomyosarcoma 9 172340 -NCIT:C5549 Rectal Leiomyosarcoma 9 172341 -NCIT:C173123 Sinonasal Leiomyosarcoma 7 172342 -NCIT:C175500 Conjunctival Leiomyosarcoma 7 172343 -NCIT:C175505 Resectable Leiomyosarcoma 7 172344 -NCIT:C178220 Pleomorphic Leiomyosarcoma 7 172345 -NCIT:C178222 Dedifferentiated Leiomyosarcoma 8 172346 -NCIT:C179926 Broad Ligament Leiomyosarcoma 7 172347 -NCIT:C188063 Pleural Leiomyosarcoma 7 172348 -NCIT:C188254 Adrenal Gland Leiomyosarcoma 7 172349 -NCIT:C27494 Granular Cell Leiomyosarcoma 7 172350 -NCIT:C27495 Inflammatory Leiomyosarcoma 7 172351 -NCIT:C3700 Epithelioid Leiomyosarcoma 7 172352 -NCIT:C40174 Uterine Corpus Epithelioid Leiomyosarcoma 8 172353 -NCIT:C3701 Myxoid Leiomyosarcoma 7 172354 -NCIT:C40175 Uterine Corpus Myxoid Leiomyosarcoma 8 172355 -NCIT:C40128 Fallopian Tube Leiomyosarcoma 7 172356 -NCIT:C40318 Vulvar Leiomyosarcoma 7 172357 -NCIT:C5186 Breast Leiomyosarcoma 7 172358 -NCIT:C5234 Ovarian Leiomyosarcoma 7 172359 -NCIT:C5364 Cardiac Leiomyosarcoma 7 172360 -NCIT:C5387 Leiomyosarcoma of Vessels 7 172361 -NCIT:C5372 Inferior Vena Cava Leiomyosarcoma 8 172362 -NCIT:C5373 Pulmonary Artery Leiomyosarcoma 8 172363 -NCIT:C5374 Pulmonary Vein Leiomyosarcoma 8 172364 -NCIT:C5388 Renal Vein Leiomyosarcoma 8 172365 -NCIT:C6745 Superior Vena Cava Leiomyosarcoma 8 172366 -NCIT:C5526 Prostate Leiomyosarcoma 7 172367 -NCIT:C5667 Lung Leiomyosarcoma 7 172368 -NCIT:C6022 Laryngeal Leiomyosarcoma 7 172369 -NCIT:C6183 Kidney Leiomyosarcoma 7 172370 -NCIT:C6326 Vaginal Leiomyosarcoma 7 172371 -NCIT:C6340 Uterine Corpus Leiomyosarcoma 7 172372 -NCIT:C139870 Uterine Corpus Leiomyosarcoma by AJCC v8 Stage 8 172373 -NCIT:C139871 Stage I Uterine Corpus Leiomyosarcoma AJCC v8 9 172374 -NCIT:C139872 Stage IA Uterine Corpus Leiomyosarcoma AJCC v8 10 172375 -NCIT:C139873 Stage IB Uterine Corpus Leiomyosarcoma AJCC v8 10 172376 -NCIT:C139874 Stage II Uterine Corpus Leiomyosarcoma AJCC v8 9 172377 -NCIT:C139875 Stage III Uterine Corpus Leiomyosarcoma AJCC v8 9 172378 -NCIT:C139876 Stage IIIA Uterine Corpus Leiomyosarcoma AJCC v8 10 172379 -NCIT:C139877 Stage IIIB Uterine Corpus Leiomyosarcoma AJCC v8 10 172380 -NCIT:C139878 Stage IIIC Uterine Corpus Leiomyosarcoma AJCC v8 10 172381 -NCIT:C139879 Stage IV Uterine Corpus Leiomyosarcoma AJCC v8 9 172382 -NCIT:C139880 Stage IVA Uterine Corpus Leiomyosarcoma AJCC v8 10 172383 -NCIT:C139881 Stage IVB Uterine Corpus Leiomyosarcoma AJCC v8 10 172384 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 8 172385 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 8 172386 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 9 172387 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 8 172388 -NCIT:C40174 Uterine Corpus Epithelioid Leiomyosarcoma 8 172389 -NCIT:C40175 Uterine Corpus Myxoid Leiomyosarcoma 8 172390 -NCIT:C6619 Mediastinal Leiomyosarcoma 7 172391 -NCIT:C6999 Central Nervous System Leiomyosarcoma 7 172392 -NCIT:C7154 Bone Leiomyosarcoma 7 172393 -NCIT:C7810 Adult Leiomyosarcoma 7 172394 -NCIT:C8093 Childhood Leiomyosarcoma 7 172395 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 8 172396 -NCIT:C8813 Metastatic Leiomyosarcoma 7 172397 -NCIT:C160917 Locally Advanced Leiomyosarcoma 8 172398 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 9 172399 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 10 172400 -NCIT:C165780 Advanced Leiomyosarcoma 8 172401 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 9 172402 -NCIT:C168725 Metastatic Soft Tissue Leiomyosarcoma 8 172403 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 9 172404 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 9 172405 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 10 172406 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 9 172407 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 10 172408 -NCIT:C8814 Localized Leiomyosarcoma 7 172409 -NCIT:C8815 Recurrent Leiomyosarcoma 7 172410 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 8 172411 -NCIT:C9389 Well Differentiated Leiomyosarcoma 7 172412 -NCIT:C9390 Leiomyosarcoma NCI Grade 3 7 172413 -NCIT:C9391 Leiomyosarcoma NCI Grade 2 7 172414 -NCIT:C9428 Conventional Leiomyosarcoma 7 172415 -NCIT:C4882 Benign Muscle Neoplasm 4 172416 -NCIT:C3358 Rhabdomyoma 5 172417 -NCIT:C188983 Childhood Rhabdomyoma 6 172418 -NCIT:C190104 Childhood Cardiac Rhabdomyoma 7 172419 -NCIT:C49166 Extracardiac Rhabdomyoma 6 172420 -NCIT:C162496 Paratesticular Rhabdomyoma 7 172421 -NCIT:C4260 Fetal Rhabdomyoma 7 172422 -NCIT:C27480 Classic Rhabdomyoma 8 172423 -NCIT:C6518 Intermediate Rhabdomyoma 8 172424 -NCIT:C4261 Adult Extracardiac Rhabdomyoma 7 172425 -NCIT:C6517 Genital Rhabdomyoma 7 172426 -NCIT:C181942 Vulvar Rhabdomyoma 8 172427 -NCIT:C40266 Cervical Rhabdomyoma 8 172428 -NCIT:C6372 Vaginal Rhabdomyoma 8 172429 -NCIT:C6600 Mediastinal Rhabdomyoma 7 172430 -NCIT:C7000 Central Nervous System Rhabdomyoma 7 172431 -NCIT:C6739 Cardiac Rhabdomyoma 6 172432 -NCIT:C190104 Childhood Cardiac Rhabdomyoma 7 172433 -NCIT:C45747 Adult Cardiac Cellular Rhabdomyoma 7 172434 -NCIT:C49179 Conventional Cardiac Rhabdomyoma 7 172435 -NCIT:C6510 Benign Smooth Muscle Neoplasm 5 172436 -NCIT:C3157 Leiomyoma 6 172437 -NCIT:C128046 Cervical Leiomyoma 7 172438 -NCIT:C156346 Thyroid Gland Leiomyoma 7 172439 -NCIT:C159209 Kidney Leiomyoma 7 172440 -NCIT:C162494 Paratesticular Leiomyoma 7 172441 -NCIT:C161638 Seminal Vesicle Leiomyoma 8 172442 -NCIT:C162583 Penile Leiomyoma 7 172443 -NCIT:C172942 Digestive System Leiomyoma 7 172444 -NCIT:C3866 Esophageal Leiomyoma 8 172445 -NCIT:C3876 Gastric Leiomyoma 8 172446 -NCIT:C5514 Appendix Leiomyoma 8 172447 -NCIT:C5608 Anal Leiomyoma 8 172448 -NCIT:C5677 Colorectal Leiomyoma 8 172449 -NCIT:C5492 Colon Leiomyoma 9 172450 -NCIT:C5552 Rectal Leiomyoma 9 172451 -NCIT:C5747 Gallbladder Leiomyoma 8 172452 -NCIT:C5753 Liver Leiomyoma 8 172453 -NCIT:C5855 Extrahepatic Bile Duct Leiomyoma 8 172454 -NCIT:C7725 Small Intestinal Leiomyoma 8 172455 -NCIT:C173140 Sinonasal Leiomyoma 7 172456 -NCIT:C179360 Ovarian Leiomyoma 7 172457 -NCIT:C179923 Uterine Ligament Leiomyoma 7 172458 -NCIT:C179924 Broad Ligament Leiomyoma 8 172459 -NCIT:C188253 Adrenal Gland Leiomyoma 7 172460 -NCIT:C3434 Uterine Corpus Leiomyoma 7 172461 -NCIT:C126975 Uterine Corpus Hydropic Leiomyoma 8 172462 -NCIT:C3511 Uterine Corpus Degenerated Leiomyoma 8 172463 -NCIT:C40162 Uterine Corpus Leiomyoma, Mitotically Active Variant 8 172464 -NCIT:C40163 Uterine Corpus Cellular Leiomyoma 8 172465 -NCIT:C40164 Uterine Corpus Epithelioid Leiomyoma 8 172466 -NCIT:C40165 Uterine Corpus Apoplectic Leiomyoma 8 172467 -NCIT:C40166 Uterine Corpus Myxoid Leiomyoma 8 172468 -NCIT:C40167 Uterine Corpus Bizarre Leiomyoma 8 172469 -NCIT:C40168 Uterine Corpus Lipoleiomyoma 8 172470 -NCIT:C40170 Uterine Corpus Diffuse Leiomyomatosis 8 172471 -NCIT:C40172 Uterine Corpus Dissecting Leiomyoma 8 172472 -NCIT:C40173 Uterine Corpus Metastasizing Leiomyoma 8 172473 -NCIT:C5356 Uterine Corpus Intravenous Leiomyomatosis 8 172474 -NCIT:C3748 Leiomyomatosis 7 172475 -NCIT:C3958 Disseminated Peritoneal Leiomyomatosis 8 172476 -NCIT:C40170 Uterine Corpus Diffuse Leiomyomatosis 8 172477 -NCIT:C4518 Intravenous Leiomyomatosis 8 172478 -NCIT:C5356 Uterine Corpus Intravenous Leiomyomatosis 9 172479 -NCIT:C40127 Fallopian Tube Leiomyoma 7 172480 -NCIT:C40326 Vulvar Leiomyoma 7 172481 -NCIT:C40399 Breast Leiomyoma 7 172482 -NCIT:C4256 Cellular Leiomyoma 7 172483 -NCIT:C40163 Uterine Corpus Cellular Leiomyoma 8 172484 -NCIT:C4257 Bizarre Leiomyoma 7 172485 -NCIT:C40167 Uterine Corpus Bizarre Leiomyoma 8 172486 -NCIT:C4482 Skin Leiomyoma 7 172487 -NCIT:C43332 Pilar Leiomyoma 8 172488 -NCIT:C4483 Dartoic Leiomyoma 8 172489 -NCIT:C4560 Ciliary Body Leiomyoma 7 172490 -NCIT:C53964 Bone Leiomyoma 7 172491 -NCIT:C5544 Prostate Leiomyoma 7 172492 -NCIT:C5660 Lung Leiomyoma 7 172493 -NCIT:C5661 Endobronchial Leiomyoma 8 172494 -NCIT:C5909 Oral Cavity Leiomyoma 7 172495 -NCIT:C6027 Laryngeal Leiomyoma 7 172496 -NCIT:C6049 Tracheal Leiomyoma 7 172497 -NCIT:C6161 Ureter Leiomyoma 7 172498 -NCIT:C6171 Urethral Leiomyoma 7 172499 -NCIT:C6178 Bladder Leiomyoma 7 172500 -NCIT:C6373 Vaginal Leiomyoma 7 172501 -NCIT:C6512 Deep Leiomyoma 7 172502 -NCIT:C6598 Mediastinal Leiomyoma 7 172503 -NCIT:C6743 Pericardial Leiomyoma 7 172504 -NCIT:C67563 Myxoid Leiomyoma 7 172505 -NCIT:C40166 Uterine Corpus Myxoid Leiomyoma 8 172506 -NCIT:C6998 Central Nervous System Leiomyoma 7 172507 -NCIT:C6515 Benign Skeletal Muscle Neoplasm 5 172508 -NCIT:C49166 Extracardiac Rhabdomyoma 6 172509 -NCIT:C162496 Paratesticular Rhabdomyoma 7 172510 -NCIT:C4260 Fetal Rhabdomyoma 7 172511 -NCIT:C27480 Classic Rhabdomyoma 8 172512 -NCIT:C6518 Intermediate Rhabdomyoma 8 172513 -NCIT:C4261 Adult Extracardiac Rhabdomyoma 7 172514 -NCIT:C6517 Genital Rhabdomyoma 7 172515 -NCIT:C181942 Vulvar Rhabdomyoma 8 172516 -NCIT:C40266 Cervical Rhabdomyoma 8 172517 -NCIT:C6372 Vaginal Rhabdomyoma 8 172518 -NCIT:C6600 Mediastinal Rhabdomyoma 7 172519 -NCIT:C7000 Central Nervous System Rhabdomyoma 7 172520 -NCIT:C4883 Malignant Muscle Neoplasm 4 172521 -NCIT:C6511 Malignant Smooth Muscle Neoplasm 5 172522 -NCIT:C3158 Leiomyosarcoma 6 172523 -NCIT:C121571 Leiomyosarcoma of Deep Soft Tissue 7 172524 -NCIT:C27904 Retroperitoneal Leiomyosarcoma 8 172525 -NCIT:C128047 Cervical Leiomyosarcoma 7 172526 -NCIT:C132147 Unresectable Leiomyosarcoma 7 172527 -NCIT:C168728 Unresectable Soft Tissue Leiomyosarcoma 8 172528 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 9 172529 -NCIT:C148294 Refractory Leiomyosarcoma 7 172530 -NCIT:C156347 Thyroid Gland Leiomyosarcoma 7 172531 -NCIT:C159670 Bladder Leiomyosarcoma 7 172532 -NCIT:C162306 EBV-Related Leiomyosarcoma 7 172533 -NCIT:C162495 Paratesticular Leiomyosarcoma 7 172534 -NCIT:C161641 Seminal Vesicle Leiomyosarcoma 8 172535 -NCIT:C162585 Penile Leiomyosarcoma 7 172536 -NCIT:C172951 Digestive System Leiomyosarcoma 7 172537 -NCIT:C188065 Pancreatic Leiomyosarcoma 8 172538 -NCIT:C27200 Gastric Leiomyosarcoma 8 172539 -NCIT:C5334 Esophageal Leiomyosarcoma 8 172540 -NCIT:C5599 Anal Leiomyosarcoma 8 172541 -NCIT:C5756 Liver Leiomyosarcoma 8 172542 -NCIT:C5841 Gallbladder Leiomyosarcoma 8 172543 -NCIT:C5848 Extrahepatic Bile Duct Leiomyosarcoma 8 172544 -NCIT:C7085 Small Intestinal Leiomyosarcoma 8 172545 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 9 172546 -NCIT:C96435 Appendix Leiomyosarcoma 8 172547 -NCIT:C96509 Colorectal Leiomyosarcoma 8 172548 -NCIT:C5494 Colon Leiomyosarcoma 9 172549 -NCIT:C5549 Rectal Leiomyosarcoma 9 172550 -NCIT:C173123 Sinonasal Leiomyosarcoma 7 172551 -NCIT:C175500 Conjunctival Leiomyosarcoma 7 172552 -NCIT:C175505 Resectable Leiomyosarcoma 7 172553 -NCIT:C178220 Pleomorphic Leiomyosarcoma 7 172554 -NCIT:C178222 Dedifferentiated Leiomyosarcoma 8 172555 -NCIT:C179926 Broad Ligament Leiomyosarcoma 7 172556 -NCIT:C188063 Pleural Leiomyosarcoma 7 172557 -NCIT:C188254 Adrenal Gland Leiomyosarcoma 7 172558 -NCIT:C27494 Granular Cell Leiomyosarcoma 7 172559 -NCIT:C27495 Inflammatory Leiomyosarcoma 7 172560 -NCIT:C3700 Epithelioid Leiomyosarcoma 7 172561 -NCIT:C40174 Uterine Corpus Epithelioid Leiomyosarcoma 8 172562 -NCIT:C3701 Myxoid Leiomyosarcoma 7 172563 -NCIT:C40175 Uterine Corpus Myxoid Leiomyosarcoma 8 172564 -NCIT:C40128 Fallopian Tube Leiomyosarcoma 7 172565 -NCIT:C40318 Vulvar Leiomyosarcoma 7 172566 -NCIT:C5186 Breast Leiomyosarcoma 7 172567 -NCIT:C5234 Ovarian Leiomyosarcoma 7 172568 -NCIT:C5364 Cardiac Leiomyosarcoma 7 172569 -NCIT:C5387 Leiomyosarcoma of Vessels 7 172570 -NCIT:C5372 Inferior Vena Cava Leiomyosarcoma 8 172571 -NCIT:C5373 Pulmonary Artery Leiomyosarcoma 8 172572 -NCIT:C5374 Pulmonary Vein Leiomyosarcoma 8 172573 -NCIT:C5388 Renal Vein Leiomyosarcoma 8 172574 -NCIT:C6745 Superior Vena Cava Leiomyosarcoma 8 172575 -NCIT:C5526 Prostate Leiomyosarcoma 7 172576 -NCIT:C5667 Lung Leiomyosarcoma 7 172577 -NCIT:C6022 Laryngeal Leiomyosarcoma 7 172578 -NCIT:C6183 Kidney Leiomyosarcoma 7 172579 -NCIT:C6326 Vaginal Leiomyosarcoma 7 172580 -NCIT:C6340 Uterine Corpus Leiomyosarcoma 7 172581 -NCIT:C139870 Uterine Corpus Leiomyosarcoma by AJCC v8 Stage 8 172582 -NCIT:C139871 Stage I Uterine Corpus Leiomyosarcoma AJCC v8 9 172583 -NCIT:C139872 Stage IA Uterine Corpus Leiomyosarcoma AJCC v8 10 172584 -NCIT:C139873 Stage IB Uterine Corpus Leiomyosarcoma AJCC v8 10 172585 -NCIT:C139874 Stage II Uterine Corpus Leiomyosarcoma AJCC v8 9 172586 -NCIT:C139875 Stage III Uterine Corpus Leiomyosarcoma AJCC v8 9 172587 -NCIT:C139876 Stage IIIA Uterine Corpus Leiomyosarcoma AJCC v8 10 172588 -NCIT:C139877 Stage IIIB Uterine Corpus Leiomyosarcoma AJCC v8 10 172589 -NCIT:C139878 Stage IIIC Uterine Corpus Leiomyosarcoma AJCC v8 10 172590 -NCIT:C139879 Stage IV Uterine Corpus Leiomyosarcoma AJCC v8 9 172591 -NCIT:C139880 Stage IVA Uterine Corpus Leiomyosarcoma AJCC v8 10 172592 -NCIT:C139881 Stage IVB Uterine Corpus Leiomyosarcoma AJCC v8 10 172593 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 8 172594 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 8 172595 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 9 172596 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 8 172597 -NCIT:C40174 Uterine Corpus Epithelioid Leiomyosarcoma 8 172598 -NCIT:C40175 Uterine Corpus Myxoid Leiomyosarcoma 8 172599 -NCIT:C6619 Mediastinal Leiomyosarcoma 7 172600 -NCIT:C6999 Central Nervous System Leiomyosarcoma 7 172601 -NCIT:C7154 Bone Leiomyosarcoma 7 172602 -NCIT:C7810 Adult Leiomyosarcoma 7 172603 -NCIT:C8093 Childhood Leiomyosarcoma 7 172604 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 8 172605 -NCIT:C8813 Metastatic Leiomyosarcoma 7 172606 -NCIT:C160917 Locally Advanced Leiomyosarcoma 8 172607 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 9 172608 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 10 172609 -NCIT:C165780 Advanced Leiomyosarcoma 8 172610 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 9 172611 -NCIT:C168725 Metastatic Soft Tissue Leiomyosarcoma 8 172612 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 9 172613 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 9 172614 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 10 172615 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 9 172616 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 10 172617 -NCIT:C8814 Localized Leiomyosarcoma 7 172618 -NCIT:C8815 Recurrent Leiomyosarcoma 7 172619 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 8 172620 -NCIT:C9389 Well Differentiated Leiomyosarcoma 7 172621 -NCIT:C9390 Leiomyosarcoma NCI Grade 3 7 172622 -NCIT:C9391 Leiomyosarcoma NCI Grade 2 7 172623 -NCIT:C9428 Conventional Leiomyosarcoma 7 172624 -NCIT:C6516 Malignant Skeletal Muscle Neoplasm 5 172625 -NCIT:C3359 Rhabdomyosarcoma 6 172626 -NCIT:C121654 Spindle Cell/Sclerosing Rhabdomyosarcoma 7 172627 -NCIT:C121655 Sclerosing Rhabdomyosarcoma 8 172628 -NCIT:C178235 MYOD1-Mutant Spindle Cell/Sclerosing Rhabdomyosarcoma 8 172629 -NCIT:C6519 Spindle Cell Rhabdomyosarcoma 8 172630 -NCIT:C123397 Childhood Spindle Cell Rhabdomyosarcoma 9 172631 -NCIT:C178232 Congenital/Infantile Spindle Cell Rhabdomyosarcoma with VGLL2/NCOA2/CITED2 Rearrangements 9 172632 -NCIT:C178236 Intraosseous Spindle Cell Rhabdomyosarcoma with TFCP2/NCOA2 Rearrangements 9 172633 -NCIT:C123735 Fusion-Positive Rhabdomyosarcoma 7 172634 -NCIT:C123731 Fusion-Positive Alveolar Rhabdomyosarcoma 8 172635 -NCIT:C123736 Fusion-Negative Rhabdomyosarcoma 7 172636 -NCIT:C123732 Fusion-Negative Alveolar Rhabdomyosarcoma 8 172637 -NCIT:C127058 Uterine Corpus Rhabdomyosarcoma 7 172638 -NCIT:C128048 Cervical Rhabdomyosarcoma 7 172639 -NCIT:C128080 Vaginal Rhabdomyosarcoma 7 172640 -NCIT:C40268 Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 8 172641 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 9 172642 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 9 172643 -NCIT:C142851 Refractory Rhabdomyosarcoma 7 172644 -NCIT:C142880 Refractory Alveolar Rhabdomyosarcoma 8 172645 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 8 172646 -NCIT:C151981 Pelvic Rhabdomyosarcoma 7 172647 -NCIT:C151982 Abdominal Rhabdomyosarcoma 7 172648 -NCIT:C151983 Unresectable Rhabdomyosarcoma 7 172649 -NCIT:C159206 Kidney Rhabdomyosarcoma 7 172650 -NCIT:C159667 Bladder Rhabdomyosarcoma 7 172651 -NCIT:C159668 Bladder Embryonal Rhabdomyosarcoma 8 172652 -NCIT:C159669 Bladder Alveolar Rhabdomyosarcoma 8 172653 -NCIT:C162497 Paratesticular Rhabdomyosarcoma 7 172654 -NCIT:C162588 Penile Rhabdomyosarcoma 7 172655 -NCIT:C166414 Metastatic Rhabdomyosarcoma 7 172656 -NCIT:C166415 Locally Advanced Rhabdomyosarcoma 8 172657 -NCIT:C183250 Metastatic Embryonal Rhabdomyosarcoma 8 172658 -NCIT:C172952 Digestive System Rhabdomyosarcoma 7 172659 -NCIT:C5610 Anal Rhabdomyosarcoma 8 172660 -NCIT:C5627 Rectal Rhabdomyosarcoma 8 172661 -NCIT:C5834 Liver Rhabdomyosarcoma 8 172662 -NCIT:C5839 Gallbladder Rhabdomyosarcoma 8 172663 -NCIT:C5860 Extrahepatic Bile Duct Rhabdomyosarcoma 8 172664 -NCIT:C5847 Extrahepatic Bile Duct Embryonal Rhabdomyosarcoma 9 172665 -NCIT:C95623 Esophageal Rhabdomyosarcoma 8 172666 -NCIT:C173124 Sinonasal Rhabdomyosarcoma 7 172667 -NCIT:C175501 Conjunctival Rhabdomyosarcoma 7 172668 -NCIT:C181201 Lung Rhabdomyosarcoma 7 172669 -NCIT:C181944 Vulvar Rhabdomyosarcoma 7 172670 -NCIT:C128273 Vulvar Alveolar Rhabdomyosarcoma 8 172671 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 8 172672 -NCIT:C188071 Retroperitoneal Rhabdomyosarcoma 7 172673 -NCIT:C3749 Alveolar Rhabdomyosarcoma 7 172674 -NCIT:C123731 Fusion-Positive Alveolar Rhabdomyosarcoma 8 172675 -NCIT:C123732 Fusion-Negative Alveolar Rhabdomyosarcoma 8 172676 -NCIT:C128273 Vulvar Alveolar Rhabdomyosarcoma 8 172677 -NCIT:C142880 Refractory Alveolar Rhabdomyosarcoma 8 172678 -NCIT:C142881 Recurrent Alveolar Rhabdomyosarcoma 8 172679 -NCIT:C159669 Bladder Alveolar Rhabdomyosarcoma 8 172680 -NCIT:C188070 Prostate Alveolar Rhabdomyosarcoma 8 172681 -NCIT:C27492 Conventional Alveolar Rhabdomyosarcoma 8 172682 -NCIT:C27493 Solid Alveolar Rhabdomyosarcoma 8 172683 -NCIT:C6247 Orbit Alveolar Rhabdomyosarcoma 8 172684 -NCIT:C7958 Childhood Alveolar Rhabdomyosarcoma 8 172685 -NCIT:C4258 Pleomorphic Rhabdomyosarcoma 7 172686 -NCIT:C27369 Adult Pleomorphic Rhabdomyosarcoma 8 172687 -NCIT:C7959 Childhood Pleomorphic Rhabdomyosarcoma 8 172688 -NCIT:C4259 Rhabdomyosarcoma with Mixed Embryonal and Alveolar Features 7 172689 -NCIT:C7960 Childhood Rhabdomyosarcoma with Mixed Embryonal and Alveolar Features 8 172690 -NCIT:C4543 Orbit Rhabdomyosarcoma 7 172691 -NCIT:C6246 Orbit Embryonal Rhabdomyosarcoma 8 172692 -NCIT:C6247 Orbit Alveolar Rhabdomyosarcoma 8 172693 -NCIT:C45759 Cardiac Rhabdomyosarcoma 7 172694 -NCIT:C5190 Breast Rhabdomyosarcoma 7 172695 -NCIT:C5236 Ovarian Rhabdomyosarcoma 7 172696 -NCIT:C5464 Central Nervous System Rhabdomyosarcoma 7 172697 -NCIT:C5522 Prostate Rhabdomyosarcoma 7 172698 -NCIT:C188070 Prostate Alveolar Rhabdomyosarcoma 8 172699 -NCIT:C5525 Prostate Embryonal Rhabdomyosarcoma 8 172700 -NCIT:C6378 Testicular Rhabdomyosarcoma 7 172701 -NCIT:C6617 Mediastinal Rhabdomyosarcoma 7 172702 -NCIT:C7705 Childhood Rhabdomyosarcoma 7 172703 -NCIT:C123397 Childhood Spindle Cell Rhabdomyosarcoma 8 172704 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 8 172705 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 8 172706 -NCIT:C7957 Childhood Embryonal Rhabdomyosarcoma 8 172707 -NCIT:C35574 Childhood Botryoid-Type Embryonal Rhabdomyosarcoma 9 172708 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 172709 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 10 172710 -NCIT:C7958 Childhood Alveolar Rhabdomyosarcoma 8 172711 -NCIT:C7959 Childhood Pleomorphic Rhabdomyosarcoma 8 172712 -NCIT:C7960 Childhood Rhabdomyosarcoma with Mixed Embryonal and Alveolar Features 8 172713 -NCIT:C8065 Localized Childhood Rhabdomyosarcoma 8 172714 -NCIT:C8824 Recurrent Rhabdomyosarcoma 7 172715 -NCIT:C142881 Recurrent Alveolar Rhabdomyosarcoma 8 172716 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 8 172717 -NCIT:C8971 Embryonal Rhabdomyosarcoma 7 172718 -NCIT:C159668 Bladder Embryonal Rhabdomyosarcoma 8 172719 -NCIT:C183250 Metastatic Embryonal Rhabdomyosarcoma 8 172720 -NCIT:C188115 Middle Ear Embryonal Rhabdomyosarcoma 8 172721 -NCIT:C49204 Anaplastic Embryonal Rhabdomyosarcoma 8 172722 -NCIT:C5525 Prostate Embryonal Rhabdomyosarcoma 8 172723 -NCIT:C5847 Extrahepatic Bile Duct Embryonal Rhabdomyosarcoma 8 172724 -NCIT:C6246 Orbit Embryonal Rhabdomyosarcoma 8 172725 -NCIT:C7957 Childhood Embryonal Rhabdomyosarcoma 8 172726 -NCIT:C35574 Childhood Botryoid-Type Embryonal Rhabdomyosarcoma 9 172727 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 172728 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 10 172729 -NCIT:C9150 Botryoid-Type Embryonal Rhabdomyosarcoma 8 172730 -NCIT:C35574 Childhood Botryoid-Type Embryonal Rhabdomyosarcoma 9 172731 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 172732 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 10 172733 -NCIT:C36099 Adult Botryoid-Type Embryonal Rhabdomyosarcoma 9 172734 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 172735 -NCIT:C40268 Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 9 172736 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 172737 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 172738 -NCIT:C9130 Adult Rhabdomyosarcoma 7 172739 -NCIT:C27369 Adult Pleomorphic Rhabdomyosarcoma 8 172740 -NCIT:C36099 Adult Botryoid-Type Embryonal Rhabdomyosarcoma 8 172741 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 9 172742 -NCIT:C6514 Skeletal Muscle Neoplasm 4 172743 -NCIT:C6515 Benign Skeletal Muscle Neoplasm 5 172744 -NCIT:C49166 Extracardiac Rhabdomyoma 6 172745 -NCIT:C162496 Paratesticular Rhabdomyoma 7 172746 -NCIT:C4260 Fetal Rhabdomyoma 7 172747 -NCIT:C27480 Classic Rhabdomyoma 8 172748 -NCIT:C6518 Intermediate Rhabdomyoma 8 172749 -NCIT:C4261 Adult Extracardiac Rhabdomyoma 7 172750 -NCIT:C6517 Genital Rhabdomyoma 7 172751 -NCIT:C181942 Vulvar Rhabdomyoma 8 172752 -NCIT:C40266 Cervical Rhabdomyoma 8 172753 -NCIT:C6372 Vaginal Rhabdomyoma 8 172754 -NCIT:C6600 Mediastinal Rhabdomyoma 7 172755 -NCIT:C7000 Central Nervous System Rhabdomyoma 7 172756 -NCIT:C6516 Malignant Skeletal Muscle Neoplasm 5 172757 -NCIT:C3359 Rhabdomyosarcoma 6 172758 -NCIT:C121654 Spindle Cell/Sclerosing Rhabdomyosarcoma 7 172759 -NCIT:C121655 Sclerosing Rhabdomyosarcoma 8 172760 -NCIT:C178235 MYOD1-Mutant Spindle Cell/Sclerosing Rhabdomyosarcoma 8 172761 -NCIT:C6519 Spindle Cell Rhabdomyosarcoma 8 172762 -NCIT:C123397 Childhood Spindle Cell Rhabdomyosarcoma 9 172763 -NCIT:C178232 Congenital/Infantile Spindle Cell Rhabdomyosarcoma with VGLL2/NCOA2/CITED2 Rearrangements 9 172764 -NCIT:C178236 Intraosseous Spindle Cell Rhabdomyosarcoma with TFCP2/NCOA2 Rearrangements 9 172765 -NCIT:C123735 Fusion-Positive Rhabdomyosarcoma 7 172766 -NCIT:C123731 Fusion-Positive Alveolar Rhabdomyosarcoma 8 172767 -NCIT:C123736 Fusion-Negative Rhabdomyosarcoma 7 172768 -NCIT:C123732 Fusion-Negative Alveolar Rhabdomyosarcoma 8 172769 -NCIT:C127058 Uterine Corpus Rhabdomyosarcoma 7 172770 -NCIT:C128048 Cervical Rhabdomyosarcoma 7 172771 -NCIT:C128080 Vaginal Rhabdomyosarcoma 7 172772 -NCIT:C40268 Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 8 172773 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 9 172774 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 9 172775 -NCIT:C142851 Refractory Rhabdomyosarcoma 7 172776 -NCIT:C142880 Refractory Alveolar Rhabdomyosarcoma 8 172777 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 8 172778 -NCIT:C151981 Pelvic Rhabdomyosarcoma 7 172779 -NCIT:C151982 Abdominal Rhabdomyosarcoma 7 172780 -NCIT:C151983 Unresectable Rhabdomyosarcoma 7 172781 -NCIT:C159206 Kidney Rhabdomyosarcoma 7 172782 -NCIT:C159667 Bladder Rhabdomyosarcoma 7 172783 -NCIT:C159668 Bladder Embryonal Rhabdomyosarcoma 8 172784 -NCIT:C159669 Bladder Alveolar Rhabdomyosarcoma 8 172785 -NCIT:C162497 Paratesticular Rhabdomyosarcoma 7 172786 -NCIT:C162588 Penile Rhabdomyosarcoma 7 172787 -NCIT:C166414 Metastatic Rhabdomyosarcoma 7 172788 -NCIT:C166415 Locally Advanced Rhabdomyosarcoma 8 172789 -NCIT:C183250 Metastatic Embryonal Rhabdomyosarcoma 8 172790 -NCIT:C172952 Digestive System Rhabdomyosarcoma 7 172791 -NCIT:C5610 Anal Rhabdomyosarcoma 8 172792 -NCIT:C5627 Rectal Rhabdomyosarcoma 8 172793 -NCIT:C5834 Liver Rhabdomyosarcoma 8 172794 -NCIT:C5839 Gallbladder Rhabdomyosarcoma 8 172795 -NCIT:C5860 Extrahepatic Bile Duct Rhabdomyosarcoma 8 172796 -NCIT:C5847 Extrahepatic Bile Duct Embryonal Rhabdomyosarcoma 9 172797 -NCIT:C95623 Esophageal Rhabdomyosarcoma 8 172798 -NCIT:C173124 Sinonasal Rhabdomyosarcoma 7 172799 -NCIT:C175501 Conjunctival Rhabdomyosarcoma 7 172800 -NCIT:C181201 Lung Rhabdomyosarcoma 7 172801 -NCIT:C181944 Vulvar Rhabdomyosarcoma 7 172802 -NCIT:C128273 Vulvar Alveolar Rhabdomyosarcoma 8 172803 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 8 172804 -NCIT:C188071 Retroperitoneal Rhabdomyosarcoma 7 172805 -NCIT:C3749 Alveolar Rhabdomyosarcoma 7 172806 -NCIT:C123731 Fusion-Positive Alveolar Rhabdomyosarcoma 8 172807 -NCIT:C123732 Fusion-Negative Alveolar Rhabdomyosarcoma 8 172808 -NCIT:C128273 Vulvar Alveolar Rhabdomyosarcoma 8 172809 -NCIT:C142880 Refractory Alveolar Rhabdomyosarcoma 8 172810 -NCIT:C142881 Recurrent Alveolar Rhabdomyosarcoma 8 172811 -NCIT:C159669 Bladder Alveolar Rhabdomyosarcoma 8 172812 -NCIT:C188070 Prostate Alveolar Rhabdomyosarcoma 8 172813 -NCIT:C27492 Conventional Alveolar Rhabdomyosarcoma 8 172814 -NCIT:C27493 Solid Alveolar Rhabdomyosarcoma 8 172815 -NCIT:C6247 Orbit Alveolar Rhabdomyosarcoma 8 172816 -NCIT:C7958 Childhood Alveolar Rhabdomyosarcoma 8 172817 -NCIT:C4258 Pleomorphic Rhabdomyosarcoma 7 172818 -NCIT:C27369 Adult Pleomorphic Rhabdomyosarcoma 8 172819 -NCIT:C7959 Childhood Pleomorphic Rhabdomyosarcoma 8 172820 -NCIT:C4259 Rhabdomyosarcoma with Mixed Embryonal and Alveolar Features 7 172821 -NCIT:C7960 Childhood Rhabdomyosarcoma with Mixed Embryonal and Alveolar Features 8 172822 -NCIT:C4543 Orbit Rhabdomyosarcoma 7 172823 -NCIT:C6246 Orbit Embryonal Rhabdomyosarcoma 8 172824 -NCIT:C6247 Orbit Alveolar Rhabdomyosarcoma 8 172825 -NCIT:C45759 Cardiac Rhabdomyosarcoma 7 172826 -NCIT:C5190 Breast Rhabdomyosarcoma 7 172827 -NCIT:C5236 Ovarian Rhabdomyosarcoma 7 172828 -NCIT:C5464 Central Nervous System Rhabdomyosarcoma 7 172829 -NCIT:C5522 Prostate Rhabdomyosarcoma 7 172830 -NCIT:C188070 Prostate Alveolar Rhabdomyosarcoma 8 172831 -NCIT:C5525 Prostate Embryonal Rhabdomyosarcoma 8 172832 -NCIT:C6378 Testicular Rhabdomyosarcoma 7 172833 -NCIT:C6617 Mediastinal Rhabdomyosarcoma 7 172834 -NCIT:C7705 Childhood Rhabdomyosarcoma 7 172835 -NCIT:C123397 Childhood Spindle Cell Rhabdomyosarcoma 8 172836 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 8 172837 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 8 172838 -NCIT:C7957 Childhood Embryonal Rhabdomyosarcoma 8 172839 -NCIT:C35574 Childhood Botryoid-Type Embryonal Rhabdomyosarcoma 9 172840 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 172841 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 10 172842 -NCIT:C7958 Childhood Alveolar Rhabdomyosarcoma 8 172843 -NCIT:C7959 Childhood Pleomorphic Rhabdomyosarcoma 8 172844 -NCIT:C7960 Childhood Rhabdomyosarcoma with Mixed Embryonal and Alveolar Features 8 172845 -NCIT:C8065 Localized Childhood Rhabdomyosarcoma 8 172846 -NCIT:C8824 Recurrent Rhabdomyosarcoma 7 172847 -NCIT:C142881 Recurrent Alveolar Rhabdomyosarcoma 8 172848 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 8 172849 -NCIT:C8971 Embryonal Rhabdomyosarcoma 7 172850 -NCIT:C159668 Bladder Embryonal Rhabdomyosarcoma 8 172851 -NCIT:C183250 Metastatic Embryonal Rhabdomyosarcoma 8 172852 -NCIT:C188115 Middle Ear Embryonal Rhabdomyosarcoma 8 172853 -NCIT:C49204 Anaplastic Embryonal Rhabdomyosarcoma 8 172854 -NCIT:C5525 Prostate Embryonal Rhabdomyosarcoma 8 172855 -NCIT:C5847 Extrahepatic Bile Duct Embryonal Rhabdomyosarcoma 8 172856 -NCIT:C6246 Orbit Embryonal Rhabdomyosarcoma 8 172857 -NCIT:C7957 Childhood Embryonal Rhabdomyosarcoma 8 172858 -NCIT:C35574 Childhood Botryoid-Type Embryonal Rhabdomyosarcoma 9 172859 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 172860 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 10 172861 -NCIT:C9150 Botryoid-Type Embryonal Rhabdomyosarcoma 8 172862 -NCIT:C35574 Childhood Botryoid-Type Embryonal Rhabdomyosarcoma 9 172863 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 172864 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 10 172865 -NCIT:C36099 Adult Botryoid-Type Embryonal Rhabdomyosarcoma 9 172866 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 172867 -NCIT:C40268 Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 9 172868 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 172869 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 172870 -NCIT:C9130 Adult Rhabdomyosarcoma 7 172871 -NCIT:C27369 Adult Pleomorphic Rhabdomyosarcoma 8 172872 -NCIT:C36099 Adult Botryoid-Type Embryonal Rhabdomyosarcoma 8 172873 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 9 172874 -NCIT:C4248 Lipomatous Neoplasm 3 172875 -NCIT:C3194 Liposarcoma 4 172876 -NCIT:C132148 Unresectable Liposarcoma 5 172877 -NCIT:C150598 Unresectable Dedifferentiated Liposarcoma 6 172878 -NCIT:C168719 Unresectable Myxoid Liposarcoma 6 172879 -NCIT:C182028 Unresectable Pleomorphic Liposarcoma 6 172880 -NCIT:C150594 Refractory Liposarcoma 5 172881 -NCIT:C148297 Refractory Myxoid Liposarcoma 6 172882 -NCIT:C150593 Refractory Dedifferentiated Liposarcoma 6 172883 -NCIT:C150606 Resectable Liposarcoma 5 172884 -NCIT:C150607 Resectable Dedifferentiated Liposarcoma 6 172885 -NCIT:C156279 Colon Liposarcoma 5 172886 -NCIT:C156281 Parotid Gland Liposarcoma 5 172887 -NCIT:C156282 Scrotal Liposarcoma 5 172888 -NCIT:C162493 Paratesticular Liposarcoma 5 172889 -NCIT:C173404 Tongue Liposarcoma 5 172890 -NCIT:C176989 Myxoid Pleomorphic Liposarcoma 5 172891 -NCIT:C27781 Myxoid Liposarcoma 5 172892 -NCIT:C148297 Refractory Myxoid Liposarcoma 6 172893 -NCIT:C148298 Metastatic Myxoid Liposarcoma 6 172894 -NCIT:C162763 Advanced Myxoid Liposarcoma 7 172895 -NCIT:C150579 Recurrent Myxoid Liposarcoma 6 172896 -NCIT:C168719 Unresectable Myxoid Liposarcoma 6 172897 -NCIT:C5235 Ovarian Myxoid Liposarcoma 6 172898 -NCIT:C3704 Dedifferentiated Liposarcoma 5 172899 -NCIT:C150592 Recurrent Dedifferentiated Liposarcoma 6 172900 -NCIT:C150593 Refractory Dedifferentiated Liposarcoma 6 172901 -NCIT:C150598 Unresectable Dedifferentiated Liposarcoma 6 172902 -NCIT:C150607 Resectable Dedifferentiated Liposarcoma 6 172903 -NCIT:C164070 Metastatic Dedifferentiated Liposarcoma 6 172904 -NCIT:C164071 Locally Advanced Dedifferentiated Liposarcoma 7 172905 -NCIT:C168715 Advanced Dedifferentiated Liposarcoma 7 172906 -NCIT:C3705 Pleomorphic Liposarcoma 5 172907 -NCIT:C170473 Skin Pleomorphic Liposarcoma 6 172908 -NCIT:C182025 Metastatic Pleomorphic Liposarcoma 6 172909 -NCIT:C182026 Advanced Pleomorphic Liposarcoma 7 172910 -NCIT:C182028 Unresectable Pleomorphic Liposarcoma 6 172911 -NCIT:C40321 Vulvar Liposarcoma 5 172912 -NCIT:C4253 Mixed Liposarcoma 5 172913 -NCIT:C5187 Breast Liposarcoma 5 172914 -NCIT:C5488 Gastric Liposarcoma 5 172915 -NCIT:C5615 Skin Liposarcoma 5 172916 -NCIT:C170473 Skin Pleomorphic Liposarcoma 6 172917 -NCIT:C5705 Esophageal Liposarcoma 5 172918 -NCIT:C6021 Laryngeal Liposarcoma 5 172919 -NCIT:C6185 Kidney Liposarcoma 5 172920 -NCIT:C6419 Ovarian Liposarcoma 5 172921 -NCIT:C5235 Ovarian Myxoid Liposarcoma 6 172922 -NCIT:C6614 Mediastinal Liposarcoma 5 172923 -NCIT:C95038 Thymoliposarcoma 6 172924 -NCIT:C6973 Brain Liposarcoma 5 172925 -NCIT:C7598 Bone Liposarcoma 5 172926 -NCIT:C7811 Adult Liposarcoma 5 172927 -NCIT:C8091 Childhood Liposarcoma 5 172928 -NCIT:C8816 Metastatic Liposarcoma 5 172929 -NCIT:C148298 Metastatic Myxoid Liposarcoma 6 172930 -NCIT:C162763 Advanced Myxoid Liposarcoma 7 172931 -NCIT:C160916 Locally Advanced Liposarcoma 6 172932 -NCIT:C164071 Locally Advanced Dedifferentiated Liposarcoma 7 172933 -NCIT:C164070 Metastatic Dedifferentiated Liposarcoma 6 172934 -NCIT:C164071 Locally Advanced Dedifferentiated Liposarcoma 7 172935 -NCIT:C168715 Advanced Dedifferentiated Liposarcoma 7 172936 -NCIT:C168701 Advanced Liposarcoma 6 172937 -NCIT:C162763 Advanced Myxoid Liposarcoma 7 172938 -NCIT:C168715 Advanced Dedifferentiated Liposarcoma 7 172939 -NCIT:C182026 Advanced Pleomorphic Liposarcoma 7 172940 -NCIT:C182025 Metastatic Pleomorphic Liposarcoma 6 172941 -NCIT:C182026 Advanced Pleomorphic Liposarcoma 7 172942 -NCIT:C8817 Localized Liposarcoma 5 172943 -NCIT:C8818 Recurrent Liposarcoma 5 172944 -NCIT:C150579 Recurrent Myxoid Liposarcoma 6 172945 -NCIT:C150592 Recurrent Dedifferentiated Liposarcoma 6 172946 -NCIT:C4502 Benign Lipomatous Neoplasm 4 172947 -NCIT:C181925 Vulvar Lipoblastoma-Like Tumor 5 172948 -NCIT:C27483 Lipoblastoma 5 172949 -NCIT:C27489 Atypical Spindle Cell/Pleomorphic Lipomatous Tumor 5 172950 -NCIT:C3192 Lipoma 5 172951 -NCIT:C128270 Vulvar Lipoma 6 172952 -NCIT:C128271 Vulvar Fibrolipoma 7 172953 -NCIT:C172945 Digestive System Lipoma 6 172954 -NCIT:C43576 Appendix Lipoma 7 172955 -NCIT:C5258 Gastric Lipoma 7 172956 -NCIT:C5339 Small Intestinal Lipoma 7 172957 -NCIT:C5678 Colorectal Lipoma 7 172958 -NCIT:C5493 Colon Lipoma 8 172959 -NCIT:C5551 Rectal Lipoma 8 172960 -NCIT:C5701 Esophageal Lipoma 7 172961 -NCIT:C5750 Liver Lipoma 7 172962 -NCIT:C5835 Gallbladder Lipoma 7 172963 -NCIT:C5854 Extrahepatic Bile Duct Lipoma 7 172964 -NCIT:C173681 Salivary Gland Lipoma 6 172965 -NCIT:C5982 Parotid Gland Lipoma 7 172966 -NCIT:C188250 Adrenal Gland Lipoma 6 172967 -NCIT:C27475 Bone Lipoma 6 172968 -NCIT:C178604 Bone Hibernoma 7 172969 -NCIT:C27530 Conventional Lipoma 6 172970 -NCIT:C35419 Axillary Lipoma 6 172971 -NCIT:C3702 Hibernoma 6 172972 -NCIT:C178604 Bone Hibernoma 7 172973 -NCIT:C6997 Central Nervous System Hibernoma 7 172974 -NCIT:C3733 Angiolipoma 6 172975 -NCIT:C129538 Central Nervous System Angiolipoma 7 172976 -NCIT:C5424 Epidural Spinal Canal Angiolipoma 8 172977 -NCIT:C170478 Skin Angiolipoma 7 172978 -NCIT:C176255 Breast Angiolipoma 7 172979 -NCIT:C7449 Infiltrating Angiolipoma 7 172980 -NCIT:C4249 Fibrolipoma 6 172981 -NCIT:C128271 Vulvar Fibrolipoma 7 172982 -NCIT:C4251 Fibromyxolipoma 6 172983 -NCIT:C4616 Skin Lipoma 6 172984 -NCIT:C170474 Skin Spindle Cell/Pleomorphic Lipoma 7 172985 -NCIT:C170475 Skin Spindle Cell Lipoma 8 172986 -NCIT:C170476 Skin Pleomorphic Lipoma 8 172987 -NCIT:C170478 Skin Angiolipoma 7 172988 -NCIT:C4618 External Ear Lipoma 6 172989 -NCIT:C4647 Breast Lipoma 6 172990 -NCIT:C176255 Breast Angiolipoma 7 172991 -NCIT:C5063 Endobronchial Lipoma 6 172992 -NCIT:C5101 Kidney Lipoma 6 172993 -NCIT:C5451 Central Nervous System Lipoma 6 172994 -NCIT:C129538 Central Nervous System Angiolipoma 7 172995 -NCIT:C5424 Epidural Spinal Canal Angiolipoma 8 172996 -NCIT:C4619 Spinal Cord Lipoma 7 172997 -NCIT:C5444 Intracranial Lipoma 7 172998 -NCIT:C5452 Inner Ear Lipoma 8 172999 -NCIT:C6220 Cerebral Hemisphere Lipoma 8 173000 -NCIT:C5438 Corpus Callosum Lipoma 9 173001 -NCIT:C6997 Central Nervous System Hibernoma 7 173002 -NCIT:C5910 Oral Cavity Lipoma 6 173003 -NCIT:C7734 Tongue Lipoma 7 173004 -NCIT:C5989 Tonsillar Lipoma 6 173005 -NCIT:C6384 Paratesticular Lipoma 6 173006 -NCIT:C3606 Spermatic Cord Lipoma 7 173007 -NCIT:C6498 Deep Lipoma 6 173008 -NCIT:C6499 Tendon Sheath Lipoma 7 173009 -NCIT:C6500 Lumbosacral Lipoma 7 173010 -NCIT:C7450 Intramuscular Lipoma 7 173011 -NCIT:C121131 Infiltrating Intramuscular Lipoma 8 173012 -NCIT:C7451 Infiltrating Lipoma 7 173013 -NCIT:C121131 Infiltrating Intramuscular Lipoma 8 173014 -NCIT:C6503 Chondroid Lipoma 6 173015 -NCIT:C6599 Mediastinal Lipoma 6 173016 -NCIT:C6644 Pleural Lipoma 6 173017 -NCIT:C6719 Chest Wall Lipoma 6 173018 -NCIT:C6741 Cardiac Lipoma 6 173019 -NCIT:C6742 Epicardial Lipoma 7 173020 -NCIT:C7180 Spindle Cell/Pleomorphic Lipoma 6 173021 -NCIT:C170474 Skin Spindle Cell/Pleomorphic Lipoma 7 173022 -NCIT:C170475 Skin Spindle Cell Lipoma 8 173023 -NCIT:C170476 Skin Pleomorphic Lipoma 8 173024 -NCIT:C3703 Pleomorphic Lipoma 7 173025 -NCIT:C170476 Skin Pleomorphic Lipoma 8 173026 -NCIT:C4254 Spindle Cell Lipoma 7 173027 -NCIT:C170475 Skin Spindle Cell Lipoma 8 173028 -NCIT:C9502 Myolipoma 6 173029 -NCIT:C5657 Lung Myolipoma 7 173030 -NCIT:C3193 Lipomatosis 5 173031 -NCIT:C27486 Pelvic Lipomatosis 6 173032 -NCIT:C27487 Steroid Lipomatosis 6 173033 -NCIT:C27488 Mediastinal Lipomatosis 6 173034 -NCIT:C4392 Cervical Symmetrical Lipomatosis 6 173035 -NCIT:C4701 Encephalocraniocutaneous Lipomatosis 6 173036 -NCIT:C48899 HIV Lipodystrophy 6 173037 -NCIT:C5431 Lipomatosis of Nerve 6 173038 -NCIT:C6504 Diffuse Lipomatosis 6 173039 -NCIT:C4255 Lipoblastomatosis 5 173040 -NCIT:C5566 Skin Lipomatous Neoplasm 4 173041 -NCIT:C170472 Skin Atypical Lipomatous Tumor/Well Differentiated Liposarcoma 5 173042 -NCIT:C4616 Skin Lipoma 5 173043 -NCIT:C170474 Skin Spindle Cell/Pleomorphic Lipoma 6 173044 -NCIT:C170475 Skin Spindle Cell Lipoma 7 173045 -NCIT:C170476 Skin Pleomorphic Lipoma 7 173046 -NCIT:C170478 Skin Angiolipoma 6 173047 -NCIT:C5615 Skin Liposarcoma 5 173048 -NCIT:C170473 Skin Pleomorphic Liposarcoma 6 173049 -NCIT:C7630 Intermediate Lipomatous Neoplasm 4 173050 -NCIT:C6505 Atypical Lipomatous Tumor/Well Differentiated Liposarcoma 5 173051 -NCIT:C170472 Skin Atypical Lipomatous Tumor/Well Differentiated Liposarcoma 6 173052 -NCIT:C176979 Lipoma-Like Atypical Lipomatous Tumor/Well Differentiated Liposarcoma 6 173053 -NCIT:C176980 Superficial Atypical Lipomatous Tumor/Well Differentiated Liposarcoma 6 173054 -NCIT:C176981 Atypical Lipomatous Tumor/Well Differentiated Liposarcoma of Deep Soft Tissue 6 173055 -NCIT:C6507 Sclerosing Atypical Lipomatous Tumor/Well Differentiated Liposarcoma 6 173056 -NCIT:C6508 Inflammatory Atypical Lipomatous Tumor/Well Differentiated Liposarcoma 6 173057 -NCIT:C4755 Chondrogenic Neoplasm 3 173058 -NCIT:C121846 Intermediate Chondrogenic Neoplasm 4 173059 -NCIT:C66799 Metastasizing Chondroblastoma 5 173060 -NCIT:C2946 Chondrosarcoma 4 173061 -NCIT:C121870 Chondrosarcoma, Grade 2 5 173062 -NCIT:C178491 Central Chondrosarcoma, Grade 2 6 173063 -NCIT:C178492 Secondary Peripheral Chondrosarcoma, Grade 2 6 173064 -NCIT:C121871 Chondrosarcoma, Grade 3 5 173065 -NCIT:C178493 Central Chondrosarcoma, Grade 3 6 173066 -NCIT:C178494 Secondary Peripheral Chondrosarcoma, Grade 3 6 173067 -NCIT:C173407 Laryngeal Chondrosarcoma 5 173068 -NCIT:C173842 Maxillofacial Chondrosarcoma 5 173069 -NCIT:C173843 Maxillofacial Mesenchymal Chondrosarcoma 6 173070 -NCIT:C176467 Synovial Chondrosarcoma 5 173071 -NCIT:C189027 Childhood Chondrosarcoma 5 173072 -NCIT:C189026 Childhood Primary Central Chondrosarcoma 6 173073 -NCIT:C27374 Childhood Mesenchymal Chondrosarcoma 6 173074 -NCIT:C27482 Secondary Chondrosarcoma 5 173075 -NCIT:C121881 Secondary Central Chondrosarcoma 6 173076 -NCIT:C178477 Secondary Central Atypical Cartilaginous Tumor/Chondrosarcoma, Grade 1 7 173077 -NCIT:C121882 Secondary Peripheral Chondrosarcoma 6 173078 -NCIT:C178481 Secondary Peripheral Chondrosarcoma, Grade 1 7 173079 -NCIT:C178492 Secondary Peripheral Chondrosarcoma, Grade 2 7 173080 -NCIT:C178494 Secondary Peripheral Chondrosarcoma, Grade 3 7 173081 -NCIT:C3737 Mesenchymal Chondrosarcoma 5 173082 -NCIT:C129534 Central Nervous System Mesenchymal Chondrosarcoma 6 173083 -NCIT:C27374 Childhood Mesenchymal Chondrosarcoma 6 173084 -NCIT:C27375 Adult Mesenchymal Chondrosarcoma 6 173085 -NCIT:C53493 Mesenchymal Chondrosarcoma of Bone 6 173086 -NCIT:C173843 Maxillofacial Mesenchymal Chondrosarcoma 7 173087 -NCIT:C6475 Clear Cell Chondrosarcoma 5 173088 -NCIT:C6476 Dedifferentiated Chondrosarcoma 5 173089 -NCIT:C7155 Primary Central Chondrosarcoma 5 173090 -NCIT:C171070 Unresectable Primary Central Chondrosarcoma 6 173091 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 7 173092 -NCIT:C171072 Metastatic Primary Central Chondrosarcoma 6 173093 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 7 173094 -NCIT:C178476 Primary Central Atypical Cartilaginous Tumor/Chondrosarcoma, Grade 1 6 173095 -NCIT:C189026 Childhood Primary Central Chondrosarcoma 6 173096 -NCIT:C7357 Periosteal Chondrosarcoma 5 173097 -NCIT:C8778 Localized Chondrosarcoma 5 173098 -NCIT:C8779 Metastatic Chondrosarcoma 5 173099 -NCIT:C170953 Locally Advanced Chondrosarcoma 6 173100 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 7 173101 -NCIT:C171072 Metastatic Primary Central Chondrosarcoma 6 173102 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 7 173103 -NCIT:C8780 Recurrent Chondrosarcoma 5 173104 -NCIT:C9027 Atypical Cartilaginous Tumor/Chondrosarcoma, Grade 1 5 173105 -NCIT:C178473 Central Atypical Cartilaginous Tumor/Chondrosarcoma, Grade 1 6 173106 -NCIT:C178476 Primary Central Atypical Cartilaginous Tumor/Chondrosarcoma, Grade 1 7 173107 -NCIT:C178477 Secondary Central Atypical Cartilaginous Tumor/Chondrosarcoma, Grade 1 7 173108 -NCIT:C178478 Central Atypical Cartilaginous Tumor 7 173109 -NCIT:C178479 Central Chondrosarcoma, Grade 1 7 173110 -NCIT:C178480 Secondary Peripheral Atypical Cartilaginous Tumor/Chondrosarcoma, Grade 1 6 173111 -NCIT:C178481 Secondary Peripheral Chondrosarcoma, Grade 1 7 173112 -NCIT:C178482 Secondary Peripheral Atypical Cartilaginous Tumor 7 173113 -NCIT:C178483 Atypical Cartilaginous Tumor 6 173114 -NCIT:C178478 Central Atypical Cartilaginous Tumor 7 173115 -NCIT:C178482 Secondary Peripheral Atypical Cartilaginous Tumor 7 173116 -NCIT:C178484 Chondrosarcoma, Grade 1 6 173117 -NCIT:C178479 Central Chondrosarcoma, Grade 1 7 173118 -NCIT:C178481 Secondary Peripheral Chondrosarcoma, Grade 1 7 173119 -NCIT:C8592 Benign Chondrogenic Neoplasm 4 173120 -NCIT:C121842 Osteochondromyxoma 5 173121 -NCIT:C121844 Subungual Exostosis 5 173122 -NCIT:C189019 Childhood Subungual Exostosis 6 173123 -NCIT:C121845 Bizarre Parosteal Osteochondromatous Proliferation 5 173124 -NCIT:C2945 Chondroblastoma 5 173125 -NCIT:C173895 Maxillofacial Chondroblastoma 6 173126 -NCIT:C189023 Childhood Chondroblastoma 6 173127 -NCIT:C3295 Osteochondroma 5 173128 -NCIT:C189024 Childhood Osteochondroma 6 173129 -NCIT:C53455 Solitary Osteochondroma 6 173130 -NCIT:C53457 Multiple Osteochondromas 6 173131 -NCIT:C35259 Chondromatosis 5 173132 -NCIT:C3008 Enchondromatosis 6 173133 -NCIT:C34467 Synovial Chondromatosis 6 173134 -NCIT:C3830 Chondromyxoid Fibroma 5 173135 -NCIT:C173897 Maxillofacial Chondromyxoid Fibroma 6 173136 -NCIT:C189025 Childhood Chondromyxoid Fibroma 6 173137 -NCIT:C6714 Sternal Chondromyxoid Fibroma 6 173138 -NCIT:C53459 Chondroma 5 173139 -NCIT:C173406 Laryngeal Chondroma 6 173140 -NCIT:C173893 Maxillofacial Chondroma 6 173141 -NCIT:C3007 Enchondroma 6 173142 -NCIT:C4302 Periosteal Chondroma 6 173143 -NCIT:C9482 Soft Tissue Chondroma 6 173144 -NCIT:C45629 Lung Chondroma 7 173145 -NCIT:C6596 Mediastinal Chondroma 7 173146 -NCIT:C7001 Central Nervous System Chondroma 7 173147 -NCIT:C6528 Pericytic Neoplasm 3 173148 -NCIT:C3060 Glomus Tumor 4 173149 -NCIT:C162582 Penile Glomus Tumor 5 173150 -NCIT:C27497 Glomus Tumor of Uncertain Malignant Potential 5 173151 -NCIT:C4221 Malignant Glomus Tumor 5 173152 -NCIT:C175661 Unresectable Malignant Glomus Tumor 6 173153 -NCIT:C175662 Metastatic Malignant Glomus Tumor 6 173154 -NCIT:C175663 Locally Advanced Malignant Glomus Tumor 7 173155 -NCIT:C175664 Refractory Malignant Glomus Tumor 6 173156 -NCIT:C4222 Glomangioma 5 173157 -NCIT:C5350 Hereditary Glomangioma 6 173158 -NCIT:C6750 Skin Glomangioma 6 173159 -NCIT:C5345 Telangiectatic Glomangioma 7 173160 -NCIT:C4223 Glomangiomyoma 5 173161 -NCIT:C4491 Skin Glomus Tumor 5 173162 -NCIT:C36079 Subungual Glomus Tumor 6 173163 -NCIT:C6750 Skin Glomangioma 6 173164 -NCIT:C5345 Telangiectatic Glomangioma 7 173165 -NCIT:C51133 Solid Glomus Tumor 5 173166 -NCIT:C6480 Bone Glomus Tumor 5 173167 -NCIT:C6748 Benign Glomus Tumor 5 173168 -NCIT:C27496 Glomangiomatosis 6 173169 -NCIT:C95900 Gastric Glomus Tumor 5 173170 -NCIT:C50401 Myopericytoma 4 173171 -NCIT:C6529 Benign Pericytic Neoplasm 4 173172 -NCIT:C3742 Myofibromatosis 5 173173 -NCIT:C176943 Infantile Myofibromatosis 1 6 173174 -NCIT:C176944 Infantile Myofibromatosis 2 6 173175 -NCIT:C3747 Angioleiomyoma 5 173176 -NCIT:C49110 Solid Angioleiomyoma 6 173177 -NCIT:C49111 Venous Angioleiomyoma 6 173178 -NCIT:C49115 Cavernous Angioleiomyoma 6 173179 -NCIT:C5355 Intravascular Angioleiomyoma 6 173180 -NCIT:C6748 Benign Glomus Tumor 5 173181 -NCIT:C27496 Glomangiomatosis 6 173182 -NCIT:C7052 Myofibroma 5 173183 -NCIT:C180887 Infantile Myofibroma 6 173184 -NCIT:C180888 Adult Myofibroma 6 173185 -NCIT:C6530 Malignant Pericytic Neoplasm 4 173186 -NCIT:C4221 Malignant Glomus Tumor 5 173187 -NCIT:C175661 Unresectable Malignant Glomus Tumor 6 173188 -NCIT:C175662 Metastatic Malignant Glomus Tumor 6 173189 -NCIT:C175663 Locally Advanced Malignant Glomus Tumor 7 173190 -NCIT:C175664 Refractory Malignant Glomus Tumor 6 173191 -NCIT:C6603 Osteogenic Neoplasm 3 173192 -NCIT:C121925 Intermediate Osteogenic Neoplasm 4 173193 -NCIT:C66796 Aggressive Osteoblastoma 5 173194 -NCIT:C6602 Benign Osteogenic Neoplasm 4 173195 -NCIT:C3294 Osteoblastoma 5 173196 -NCIT:C173899 Maxillofacial Osteoblastoma 6 173197 -NCIT:C189020 Childhood Osteoblastoma 6 173198 -NCIT:C4308 Cementoblastoma 6 173199 -NCIT:C3296 Osteoma 5 173200 -NCIT:C121923 Ivory Exostosis 6 173201 -NCIT:C121924 Enostosis 6 173202 -NCIT:C129569 Skull Osteoma 6 173203 -NCIT:C173894 Maxillofacial Osteoma 7 173204 -NCIT:C3297 Osteoid Osteoma 5 173205 -NCIT:C173898 Maxillofacial Osteoid Osteoma 6 173206 -NCIT:C189021 Childhood Osteoid Osteoma 6 173207 -NCIT:C9145 Osteosarcoma 4 173208 -NCIT:C132850 Unresectable Osteosarcoma 5 173209 -NCIT:C142857 Refractory Osteosarcoma 5 173210 -NCIT:C187192 Refractory Childhood Osteosarcoma 6 173211 -NCIT:C162661 Resectable Osteosarcoma 5 173212 -NCIT:C53707 Bone Osteosarcoma 5 173213 -NCIT:C173844 Maxillofacial Osteosarcoma 6 173214 -NCIT:C189022 Childhood Bone Osteosarcoma 6 173215 -NCIT:C123398 Childhood Periosteal Osteosarcoma 7 173216 -NCIT:C6589 Childhood Parosteal Osteosarcoma 7 173217 -NCIT:C6590 Childhood Conventional Osteosarcoma 7 173218 -NCIT:C38157 Metachronous Osteosarcoma 6 173219 -NCIT:C4834 Primary Bone Osteosarcoma 6 173220 -NCIT:C136633 Osteosarcoma by AJCC v7 Stage 7 173221 -NCIT:C6612 Stage III Osteosarcoma AJCC v7 8 173222 -NCIT:C6701 Stage IV Osteosarcoma AJCC v7 8 173223 -NCIT:C6702 Stage IVA Osteosarcoma AJCC v7 9 173224 -NCIT:C6703 Stage IVB Osteosarcoma AJCC v7 9 173225 -NCIT:C6709 Stage I Osteosarcoma AJCC v7 8 173226 -NCIT:C6607 Stage IA Osteosarcoma AJCC v7 9 173227 -NCIT:C6609 Stage IB Osteosarcoma AJCC v7 9 173228 -NCIT:C6710 Stage II Osteosarcoma AJCC v7 8 173229 -NCIT:C6610 Stage IIA Osteosarcoma AJCC v7 9 173230 -NCIT:C6611 Stage IIB Osteosarcoma AJCC v7 9 173231 -NCIT:C35870 Conventional Osteosarcoma 7 173232 -NCIT:C179410 Giant Cell-Rich Osteosarcoma 8 173233 -NCIT:C4020 Fibroblastic Osteosarcoma 8 173234 -NCIT:C4021 Chondroblastic Osteosarcoma 8 173235 -NCIT:C53953 Osteoblastic Osteosarcoma 8 173236 -NCIT:C6590 Childhood Conventional Osteosarcoma 8 173237 -NCIT:C3902 Telangiectatic Osteosarcoma 7 173238 -NCIT:C4023 Small Cell Osteosarcoma 7 173239 -NCIT:C6470 Multifocal Osteosarcoma 7 173240 -NCIT:C6471 Synchronous Multifocal Osteosarcoma 8 173241 -NCIT:C6472 Asynchronous Multifocal Osteosarcoma 8 173242 -NCIT:C6474 Low Grade Central Osteosarcoma 7 173243 -NCIT:C7134 Bone Surface (Peripheral) Osteosarcoma 7 173244 -NCIT:C53958 High Grade Surface Osteosarcoma 8 173245 -NCIT:C8969 Parosteal Osteosarcoma 8 173246 -NCIT:C6589 Childhood Parosteal Osteosarcoma 9 173247 -NCIT:C8970 Periosteal Osteosarcoma 8 173248 -NCIT:C123398 Childhood Periosteal Osteosarcoma 9 173249 -NCIT:C53704 Secondary Osteosarcoma 6 173250 -NCIT:C53706 Radiation-Related Osteosarcoma 7 173251 -NCIT:C6469 Osteosarcoma Arising in Paget Disease of Bone 7 173252 -NCIT:C6585 Childhood Osteosarcoma 5 173253 -NCIT:C187189 Recurrent Childhood Osteosarcoma 6 173254 -NCIT:C187192 Refractory Childhood Osteosarcoma 6 173255 -NCIT:C189022 Childhood Bone Osteosarcoma 6 173256 -NCIT:C123398 Childhood Periosteal Osteosarcoma 7 173257 -NCIT:C6589 Childhood Parosteal Osteosarcoma 7 173258 -NCIT:C6590 Childhood Conventional Osteosarcoma 7 173259 -NCIT:C27376 Childhood Extraskeletal Osteosarcoma 6 173260 -NCIT:C7780 Localized Osteosarcoma 5 173261 -NCIT:C8809 Localized Extraskeletal Osteosarcoma 6 173262 -NCIT:C7781 Metastatic Osteosarcoma 5 173263 -NCIT:C175665 Locally Advanced Osteosarcoma 6 173264 -NCIT:C38157 Metachronous Osteosarcoma 6 173265 -NCIT:C8808 Metastatic Extraskeletal Osteosarcoma 6 173266 -NCIT:C7881 Recurrent Osteosarcoma 5 173267 -NCIT:C187189 Recurrent Childhood Osteosarcoma 6 173268 -NCIT:C8811 Recurrent Extraskeletal Osteosarcoma 6 173269 -NCIT:C8810 Extraskeletal Osteosarcoma 5 173270 -NCIT:C147003 Cardiac Extraskeletal Osteosarcoma 6 173271 -NCIT:C161035 Prostate Osteosarcoma 6 173272 -NCIT:C188061 Lung Osteosarcoma 6 173273 -NCIT:C27376 Childhood Extraskeletal Osteosarcoma 6 173274 -NCIT:C5189 Breast Extraskeletal Osteosarcoma 6 173275 -NCIT:C5833 Liver Extraskeletal Osteosarcoma 6 173276 -NCIT:C6181 Kidney Extraskeletal Osteosarcoma 6 173277 -NCIT:C6615 Mediastinal Extraskeletal Osteosarcoma 6 173278 -NCIT:C7002 Central Nervous System Extraskeletal Osteosarcoma 6 173279 -NCIT:C7925 Adult Extraskeletal Osteosarcoma 6 173280 -NCIT:C82972 Duodenal Extraskeletal Osteosarcoma 6 173281 -NCIT:C8808 Metastatic Extraskeletal Osteosarcoma 6 173282 -NCIT:C8809 Localized Extraskeletal Osteosarcoma 6 173283 -NCIT:C8811 Recurrent Extraskeletal Osteosarcoma 6 173284 -NCIT:C67237 Phosphaturic Mesenchymal Tumor 3 173285 -NCIT:C121788 Benign Phosphaturic Mesenchymal Tumor 4 173286 -NCIT:C121789 Malignant Phosphaturic Mesenchymal Tumor 4 173287 -NCIT:C6781 Stromal Neoplasm 3 173288 -NCIT:C175494 Conjunctival Stromal Tumor 4 173289 -NCIT:C179218 Breast Periductal Stromal Tumor 4 173290 -NCIT:C3868 Gastrointestinal Stromal Tumor 4 173291 -NCIT:C123906 Childhood Gastrointestinal Stromal Tumor 5 173292 -NCIT:C128460 Recurrent Gastrointestinal Stromal Tumor 5 173293 -NCIT:C27716 Extragastrointestinal Gastrointestinal Stromal Tumor 5 173294 -NCIT:C40337 Retroperitoneal Gastrointestinal Stromal Tumor 6 173295 -NCIT:C40338 Peritoneal Gastrointestinal Stromal Tumor 6 173296 -NCIT:C40339 Mesenteric Gastrointestinal Stromal Tumor 7 173297 -NCIT:C40340 Omentum Gastrointestinal Stromal Tumor 7 173298 -NCIT:C27792 Spindle Cell Type Gastrointestinal Stromal Tumor 5 173299 -NCIT:C27793 Mixed Cell Type Gastrointestinal Stromal Tumor 5 173300 -NCIT:C3486 Epithelioid Cell Type Gastrointestinal Stromal Tumor 5 173301 -NCIT:C81854 Benign Epithelioid Cell Type Gastrointestinal Stromal Tumor 6 173302 -NCIT:C81855 Malignant Epithelioid Cell Type Gastrointestinal Stromal Tumor 6 173303 -NCIT:C35778 Gastrointestinal Stromal Tumor of the Gastrointestinal Tract 5 173304 -NCIT:C27430 Esophageal Gastrointestinal Stromal Tumor 6 173305 -NCIT:C27735 Colorectal Gastrointestinal Stromal Tumor 6 173306 -NCIT:C5806 Gastric Gastrointestinal Stromal Tumor 6 173307 -NCIT:C87825 Stage IA Gastric Gastrointestinal Stromal Tumor 7 173308 -NCIT:C87826 Stage IB Gastric Gastrointestinal Stromal Tumor 7 173309 -NCIT:C87827 Stage II Gastric Gastrointestinal Stromal Tumor 7 173310 -NCIT:C87828 Stage IIIA Gastric Gastrointestinal Stromal Tumor 7 173311 -NCIT:C87829 Stage IIIB Gastric Gastrointestinal Stromal Tumor 7 173312 -NCIT:C87830 Stage IV Gastric Gastrointestinal Stromal Tumor 7 173313 -NCIT:C95895 Benign Gastric Gastrointestinal Stromal Tumor 7 173314 -NCIT:C95897 Gastric Malignant Gastrointestinal Stromal Tumor 7 173315 -NCIT:C95898 Gastric Gastrointestinal Stromal Tumor of Uncertain Malignant Potential 7 173316 -NCIT:C5811 Small Intestinal Gastrointestinal Stromal Tumor 6 173317 -NCIT:C87831 Stage I Small Intestinal Gastrointestinal Stromal Tumor 7 173318 -NCIT:C87832 Stage II Small Intestinal Gastrointestinal Stromal Tumor 7 173319 -NCIT:C87833 Stage IIIA Small Intestinal Gastrointestinal Stromal Tumor 7 173320 -NCIT:C87834 Stage IIIB Small Intestinal Gastrointestinal Stromal Tumor 7 173321 -NCIT:C87835 Stage IV Small Intestinal Gastrointestinal Stromal Tumor 7 173322 -NCIT:C53998 Benign Gastrointestinal Stromal Tumor 5 173323 -NCIT:C95895 Benign Gastric Gastrointestinal Stromal Tumor 6 173324 -NCIT:C53999 Malignant Gastrointestinal Stromal Tumor 5 173325 -NCIT:C136767 Gastrointestinal Stromal Tumor by AJCC v8 Stage 6 173326 -NCIT:C136768 Gastric and Omental Gastrointestinal Stromal Tumor by AJCC v8 Stage 7 173327 -NCIT:C136770 Stage I Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 8 173328 -NCIT:C136771 Stage IA Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 9 173329 -NCIT:C136772 Stage IB Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 9 173330 -NCIT:C136773 Stage II Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 8 173331 -NCIT:C136774 Stage III Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 8 173332 -NCIT:C136775 Stage IIIA Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 9 173333 -NCIT:C136777 Stage IIIB Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 9 173334 -NCIT:C136778 Stage IV Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 8 173335 -NCIT:C136769 Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor by AJCC v8 Stage 7 173336 -NCIT:C136780 Stage I Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 8 173337 -NCIT:C136781 Stage II Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 8 173338 -NCIT:C136783 Stage III Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 8 173339 -NCIT:C136784 Stage IIIA Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 9 173340 -NCIT:C136785 Stage IIIB Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 9 173341 -NCIT:C136786 Stage IV Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 8 173342 -NCIT:C150738 Metastatic Gastrointestinal Stromal Tumor 6 173343 -NCIT:C150739 Locally Advanced Gastrointestinal Stromal Tumor 7 173344 -NCIT:C173502 Advanced Gastrointestinal Stromal Tumor 7 173345 -NCIT:C150741 Unresectable Malignant Gastrointestinal Stromal Tumor 6 173346 -NCIT:C179932 Dedifferentiated Gastrointestinal Stromal Tumor 6 173347 -NCIT:C185882 Refractory Malignant Gastrointestinal Stromal Tumor 6 173348 -NCIT:C95897 Gastric Malignant Gastrointestinal Stromal Tumor 6 173349 -NCIT:C54000 Gastrointestinal Stromal Tumor of Uncertain Malignant Potential 5 173350 -NCIT:C95898 Gastric Gastrointestinal Stromal Tumor of Uncertain Malignant Potential 6 173351 -NCIT:C39904 Tumor of Specialized Prostatic Stroma 4 173352 -NCIT:C39905 Prostate Stromal Tumor of Uncertain Malignant Potential 5 173353 -NCIT:C5524 Prostate Stromal Sarcoma 5 173354 -NCIT:C6926 Stromal Sarcoma 4 173355 -NCIT:C53994 Undifferentiated Stromal Sarcoma 5 173356 -NCIT:C40066 Ovarian Undifferentiated Sarcoma 6 173357 -NCIT:C40224 Endocervical Undifferentiated Sarcoma 6 173358 -NCIT:C40272 Vaginal Undifferentiated Sarcoma 6 173359 -NCIT:C8972 Uterine Corpus Undifferentiated Sarcoma 6 173360 -NCIT:C53999 Malignant Gastrointestinal Stromal Tumor 5 173361 -NCIT:C136767 Gastrointestinal Stromal Tumor by AJCC v8 Stage 6 173362 -NCIT:C136768 Gastric and Omental Gastrointestinal Stromal Tumor by AJCC v8 Stage 7 173363 -NCIT:C136770 Stage I Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 8 173364 -NCIT:C136771 Stage IA Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 9 173365 -NCIT:C136772 Stage IB Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 9 173366 -NCIT:C136773 Stage II Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 8 173367 -NCIT:C136774 Stage III Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 8 173368 -NCIT:C136775 Stage IIIA Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 9 173369 -NCIT:C136777 Stage IIIB Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 9 173370 -NCIT:C136778 Stage IV Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 8 173371 -NCIT:C136769 Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor by AJCC v8 Stage 7 173372 -NCIT:C136780 Stage I Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 8 173373 -NCIT:C136781 Stage II Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 8 173374 -NCIT:C136783 Stage III Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 8 173375 -NCIT:C136784 Stage IIIA Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 9 173376 -NCIT:C136785 Stage IIIB Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 9 173377 -NCIT:C136786 Stage IV Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 8 173378 -NCIT:C150738 Metastatic Gastrointestinal Stromal Tumor 6 173379 -NCIT:C150739 Locally Advanced Gastrointestinal Stromal Tumor 7 173380 -NCIT:C173502 Advanced Gastrointestinal Stromal Tumor 7 173381 -NCIT:C150741 Unresectable Malignant Gastrointestinal Stromal Tumor 6 173382 -NCIT:C179932 Dedifferentiated Gastrointestinal Stromal Tumor 6 173383 -NCIT:C185882 Refractory Malignant Gastrointestinal Stromal Tumor 6 173384 -NCIT:C95897 Gastric Malignant Gastrointestinal Stromal Tumor 6 173385 -NCIT:C5524 Prostate Stromal Sarcoma 5 173386 -NCIT:C8973 Endometrioid Stromal Sarcoma 5 173387 -NCIT:C40219 Uterine Corpus Endometrial Stromal Sarcoma 6 173388 -NCIT:C126998 Uterine Corpus High Grade Endometrial Stromal Sarcoma 7 173389 -NCIT:C139882 Uterine Corpus Endometrial Stromal Sarcoma by AJCC v8 Stage 7 173390 -NCIT:C139883 Stage I Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 8 173391 -NCIT:C139884 Stage IA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 173392 -NCIT:C139885 Stage IB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 173393 -NCIT:C139886 Stage II Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 8 173394 -NCIT:C139887 Stage III Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 8 173395 -NCIT:C139888 Stage IIIA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 173396 -NCIT:C139889 Stage IIIB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 173397 -NCIT:C139890 Stage IIIC Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 173398 -NCIT:C139891 Stage IV Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 8 173399 -NCIT:C139892 Stage IVA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 173400 -NCIT:C139893 Stage IVB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 173401 -NCIT:C40223 Uterine Corpus Low Grade Endometrial Stromal Sarcoma 7 173402 -NCIT:C4263 Low Grade Endometrioid Stromal Sarcoma 6 173403 -NCIT:C179562 Peritoneal Low Grade Endometrioid Stromal Sarcoma 7 173404 -NCIT:C40063 Ovarian Low Grade Endometrioid Stromal Sarcoma 7 173405 -NCIT:C40222 Cervical Low Grade Endometrioid Stromal Sarcoma 7 173406 -NCIT:C40223 Uterine Corpus Low Grade Endometrial Stromal Sarcoma 7 173407 -NCIT:C40271 Vaginal Low Grade Endometrioid Stromal Sarcoma 7 173408 -NCIT:C9474 Adenosarcoma 5 173409 -NCIT:C102570 Broad Ligament Adenosarcoma 6 173410 -NCIT:C40125 Fallopian Tube Adenosarcoma 6 173411 -NCIT:C40229 Cervical Adenosarcoma 6 173412 -NCIT:C40277 Vaginal Adenosarcoma 6 173413 -NCIT:C6336 Uterine Corpus Adenosarcoma 6 173414 -NCIT:C139894 Uterine Corpus Adenosarcoma by AJCC v8 Stage 7 173415 -NCIT:C139895 Stage I Uterine Corpus Adenosarcoma AJCC v8 8 173416 -NCIT:C139896 Stage IA Uterine Corpus Adenosarcoma AJCC v8 9 173417 -NCIT:C139897 Stage IB Uterine Corpus Adenosarcoma AJCC v8 9 173418 -NCIT:C139898 Stage IC Uterine Corpus Adenosarcoma AJCC v8 9 173419 -NCIT:C139899 Stage II Uterine Corpus Adenosarcoma AJCC v8 8 173420 -NCIT:C139900 Stage III Uterine Corpus Adenosarcoma AJCC v8 8 173421 -NCIT:C139901 Stage IIIA Uterine Corpus Adenosarcoma AJCC v8 9 173422 -NCIT:C139902 Stage IIIB Uterine Corpus Adenosarcoma AJCC v8 9 173423 -NCIT:C139903 Stage IIIC Uterine Corpus Adenosarcoma AJCC v8 9 173424 -NCIT:C139904 Stage IV Uterine Corpus Adenosarcoma AJCC v8 8 173425 -NCIT:C139905 Stage IVA Uterine Corpus Adenosarcoma AJCC v8 9 173426 -NCIT:C139906 Stage IVB Uterine Corpus Adenosarcoma AJCC v8 9 173427 -NCIT:C7317 Ovarian Adenosarcoma 6 173428 -NCIT:C8384 Endometrioid Stromal and Related Neoplasms 4 173429 -NCIT:C40065 Ovarian Endometrioid Stromal and Related Neoplasms 5 173430 -NCIT:C40063 Ovarian Low Grade Endometrioid Stromal Sarcoma 6 173431 -NCIT:C40066 Ovarian Undifferentiated Sarcoma 6 173432 -NCIT:C40217 Uterine Corpus Endometrial Stromal and Related Neoplasms 5 173433 -NCIT:C127005 Uterine Corpus Tumor Resembling Ovarian Sex Cord Tumor 6 173434 -NCIT:C40219 Uterine Corpus Endometrial Stromal Sarcoma 6 173435 -NCIT:C126998 Uterine Corpus High Grade Endometrial Stromal Sarcoma 7 173436 -NCIT:C139882 Uterine Corpus Endometrial Stromal Sarcoma by AJCC v8 Stage 7 173437 -NCIT:C139883 Stage I Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 8 173438 -NCIT:C139884 Stage IA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 173439 -NCIT:C139885 Stage IB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 173440 -NCIT:C139886 Stage II Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 8 173441 -NCIT:C139887 Stage III Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 8 173442 -NCIT:C139888 Stage IIIA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 173443 -NCIT:C139889 Stage IIIB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 173444 -NCIT:C139890 Stage IIIC Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 173445 -NCIT:C139891 Stage IV Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 8 173446 -NCIT:C139892 Stage IVA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 173447 -NCIT:C139893 Stage IVB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 173448 -NCIT:C40223 Uterine Corpus Low Grade Endometrial Stromal Sarcoma 7 173449 -NCIT:C4262 Endometrial Stromal Nodule 6 173450 -NCIT:C8972 Uterine Corpus Undifferentiated Sarcoma 6 173451 -NCIT:C40218 Cervical Endometrioid Stromal and Related Neoplasms 5 173452 -NCIT:C40222 Cervical Low Grade Endometrioid Stromal Sarcoma 6 173453 -NCIT:C40224 Endocervical Undifferentiated Sarcoma 6 173454 -NCIT:C40269 Vaginal Endometrioid Stromal and Related Neoplasms 5 173455 -NCIT:C40271 Vaginal Low Grade Endometrioid Stromal Sarcoma 6 173456 -NCIT:C40272 Vaginal Undifferentiated Sarcoma 6 173457 -NCIT:C53994 Undifferentiated Stromal Sarcoma 5 173458 -NCIT:C40066 Ovarian Undifferentiated Sarcoma 6 173459 -NCIT:C40224 Endocervical Undifferentiated Sarcoma 6 173460 -NCIT:C40272 Vaginal Undifferentiated Sarcoma 6 173461 -NCIT:C8972 Uterine Corpus Undifferentiated Sarcoma 6 173462 -NCIT:C8973 Endometrioid Stromal Sarcoma 5 173463 -NCIT:C40219 Uterine Corpus Endometrial Stromal Sarcoma 6 173464 -NCIT:C126998 Uterine Corpus High Grade Endometrial Stromal Sarcoma 7 173465 -NCIT:C139882 Uterine Corpus Endometrial Stromal Sarcoma by AJCC v8 Stage 7 173466 -NCIT:C139883 Stage I Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 8 173467 -NCIT:C139884 Stage IA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 173468 -NCIT:C139885 Stage IB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 173469 -NCIT:C139886 Stage II Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 8 173470 -NCIT:C139887 Stage III Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 8 173471 -NCIT:C139888 Stage IIIA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 173472 -NCIT:C139889 Stage IIIB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 173473 -NCIT:C139890 Stage IIIC Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 173474 -NCIT:C139891 Stage IV Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 8 173475 -NCIT:C139892 Stage IVA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 173476 -NCIT:C139893 Stage IVB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 173477 -NCIT:C40223 Uterine Corpus Low Grade Endometrial Stromal Sarcoma 7 173478 -NCIT:C4263 Low Grade Endometrioid Stromal Sarcoma 6 173479 -NCIT:C179562 Peritoneal Low Grade Endometrioid Stromal Sarcoma 7 173480 -NCIT:C40063 Ovarian Low Grade Endometrioid Stromal Sarcoma 7 173481 -NCIT:C40222 Cervical Low Grade Endometrioid Stromal Sarcoma 7 173482 -NCIT:C40223 Uterine Corpus Low Grade Endometrial Stromal Sarcoma 7 173483 -NCIT:C40271 Vaginal Low Grade Endometrioid Stromal Sarcoma 7 173484 -NCIT:C7075 Fibroblastic Neoplasm 3 173485 -NCIT:C3042 Fibromatosis 4 173486 -NCIT:C3456 Inclusion Body Fibromatosis 5 173487 -NCIT:C4811 Fibromatosis Colli 5 173488 -NCIT:C6814 Superficial Fibromatosis 5 173489 -NCIT:C3316 Penile Fibromatosis 6 173490 -NCIT:C3469 Palmar Fibromatosis 6 173491 -NCIT:C4680 Plantar Fibromatosis 6 173492 -NCIT:C9182 Desmoid Fibromatosis 5 173493 -NCIT:C126358 Pelvic Fibromatosis 6 173494 -NCIT:C155875 Recurrent Desmoid Fibromatosis 6 173495 -NCIT:C155877 Unresectable Desmoid Fibromatosis 6 173496 -NCIT:C175667 Locally Invasive Desmoid-Type Fibromatosis 6 173497 -NCIT:C175670 Refractory Desmoid Fibromatosis 6 173498 -NCIT:C3741 Abdominal (Mesenteric) Fibromatosis 6 173499 -NCIT:C6489 Extraabdominal Fibromatosis 6 173500 -NCIT:C129548 Central Nervous System Desmoid Fibromatosis 7 173501 -NCIT:C173133 Sinonasal Desmoid Fibromatosis 7 173502 -NCIT:C6713 Chest Wall Fibromatosis 7 173503 -NCIT:C99180 Lipofibromatosis 5 173504 -NCIT:C3043 Fibrosarcoma 4 173505 -NCIT:C158428 Recurrent Fibrosarcoma 5 173506 -NCIT:C158429 Refractory Fibrosarcoma 5 173507 -NCIT:C168717 Unresectable Fibrosarcoma 5 173508 -NCIT:C178372 Unresectable Myxofibrosarcoma 6 173509 -NCIT:C4317 Ameloblastic Fibrosarcoma 5 173510 -NCIT:C45202 Low Grade Fibromyxoid Sarcoma 5 173511 -NCIT:C188970 Childhood Low Grade Fibromyxoid Sarcoma 6 173512 -NCIT:C45203 Low Grade Fibromyxoid Sarcoma with Giant Collagen Rosettes 6 173513 -NCIT:C45210 Classical Low Grade Fibromyxoid Sarcoma 6 173514 -NCIT:C49024 Low Grade Myofibroblastic Sarcoma 5 173515 -NCIT:C173478 Oral Cavity Low Grade Myofibroblastic Sarcoma 6 173516 -NCIT:C188973 Childhood Low Grade Myofibroblastic Sarcoma 6 173517 -NCIT:C49027 Sclerosing Epithelioid Fibrosarcoma 5 173518 -NCIT:C188971 Childhood Sclerosing Epithelioid Fibrosarcoma 6 173519 -NCIT:C5060 Localized Fibrosarcoma 5 173520 -NCIT:C6604 Bone Fibrosarcoma 5 173521 -NCIT:C6605 Soft Tissue Fibrosarcoma 5 173522 -NCIT:C173120 Sinonasal Fibrosarcoma 6 173523 -NCIT:C173478 Oral Cavity Low Grade Myofibroblastic Sarcoma 6 173524 -NCIT:C49025 Myxoinflammatory Fibroblastic Sarcoma 6 173525 -NCIT:C5185 Breast Fibrosarcoma 6 173526 -NCIT:C5233 Ovarian Fibrosarcoma 6 173527 -NCIT:C5336 Small Intestinal Fibrosarcoma 6 173528 -NCIT:C5361 Cardiac Fibrosarcoma 6 173529 -NCIT:C147004 Cardiac Myxofibrosarcoma 7 173530 -NCIT:C5465 Central Nervous System Fibrosarcoma 6 173531 -NCIT:C5832 Liver Fibrosarcoma 6 173532 -NCIT:C6496 Myxofibrosarcoma 6 173533 -NCIT:C147004 Cardiac Myxofibrosarcoma 7 173534 -NCIT:C168670 Metastatic Myxofibrosarcoma 7 173535 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 8 173536 -NCIT:C171304 Advanced Myxofibrosarcoma 8 173537 -NCIT:C172632 Skin Myxofibrosarcoma 7 173538 -NCIT:C177414 Epithelioid Myxofibrosarcoma 7 173539 -NCIT:C178372 Unresectable Myxofibrosarcoma 7 173540 -NCIT:C7726 Kidney Fibrosarcoma 6 173541 -NCIT:C66765 Fascial Fibrosarcoma 5 173542 -NCIT:C7809 Adult Fibrosarcoma 5 173543 -NCIT:C8088 Childhood Fibrosarcoma 5 173544 -NCIT:C188970 Childhood Low Grade Fibromyxoid Sarcoma 6 173545 -NCIT:C188971 Childhood Sclerosing Epithelioid Fibrosarcoma 6 173546 -NCIT:C188973 Childhood Low Grade Myofibroblastic Sarcoma 6 173547 -NCIT:C4244 Infantile Fibrosarcoma 6 173548 -NCIT:C8812 Metastatic Fibrosarcoma 5 173549 -NCIT:C168670 Metastatic Myxofibrosarcoma 6 173550 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 7 173551 -NCIT:C171304 Advanced Myxofibrosarcoma 7 173552 -NCIT:C168716 Advanced Fibrosarcoma 6 173553 -NCIT:C171304 Advanced Myxofibrosarcoma 7 173554 -NCIT:C171317 Locally Advanced Fibrosarcoma 6 173555 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 7 173556 -NCIT:C9025 Well Differentiated Fibrosarcoma 5 173557 -NCIT:C9404 Poorly Differentiated Fibrosarcoma 5 173558 -NCIT:C9429 Conventional Fibrosarcoma 5 173559 -NCIT:C4634 Skin Fibroblastic Neoplasm 4 173560 -NCIT:C172632 Skin Myxofibrosarcoma 5 173561 -NCIT:C4683 Dermatofibrosarcoma Protuberans 5 173562 -NCIT:C177325 Plaque-Like Dermatofibrosarcoma Protuberans 6 173563 -NCIT:C38105 Dermatofibrosarcoma Protuberans with Myoid Differentiation 6 173564 -NCIT:C38106 Myxoid Dermatofibrosarcoma Protuberans 6 173565 -NCIT:C38107 Dedifferentiated Dermatofibrosarcoma Protuberans 6 173566 -NCIT:C27547 Fibrosarcomatous Dermatofibrosarcoma Protuberans 7 173567 -NCIT:C38108 Dermatofibrosarcoma Protuberans with Giant Cell Fibroblastoma-Like Differentiation 6 173568 -NCIT:C9430 Pigmented Dermatofibrosarcoma Protuberans 6 173569 -NCIT:C4700 Giant Cell Fibroblastoma 5 173570 -NCIT:C49025 Myxoinflammatory Fibroblastic Sarcoma 5 173571 -NCIT:C6806 Benign Skin Fibroblastic Neoplasm 5 173572 -NCIT:C170888 Dermatomyofibroma 6 173573 -NCIT:C3942 Fibrous Hamartoma of Infancy 6 173574 -NCIT:C48961 Subcutaneous Nodular Fasciitis 6 173575 -NCIT:C6484 Dermal Fibroma 6 173576 -NCIT:C170889 Plaque-Like CD34-Positive Dermal Fibroma 7 173577 -NCIT:C4470 Perifollicular Fibroma 7 173578 -NCIT:C6486 Nuchal-Type Fibroma 7 173579 -NCIT:C7147 Benign Fibroblastic Neoplasm 4 173580 -NCIT:C121154 Proliferative Myositis 5 173581 -NCIT:C172941 Inflammatory Fibroid Polyp 5 173582 -NCIT:C177278 EWSR1-SMAD3-Positive Fibroblastic Tumor 5 173583 -NCIT:C188965 Childhood EWSR1-SMAD3-Positive Fibroblastic Tumor 6 173584 -NCIT:C3041 Fibroma 5 173585 -NCIT:C170736 Pleomorphic Fibroma 6 173586 -NCIT:C181926 Vulvar Prepubertal Fibroma 6 173587 -NCIT:C27515 Desmoplastic Fibroblastoma 6 173588 -NCIT:C3498 Ovarian Fibroma 6 173589 -NCIT:C189288 Childhood Ovarian Fibroma 7 173590 -NCIT:C7291 Ovarian Cellular Fibroma 7 173591 -NCIT:C3740 Desmoplastic Fibroma 6 173592 -NCIT:C173900 Maxillofacial Desmoplastic Fibroma 7 173593 -NCIT:C3799 Angiofibroma 6 173594 -NCIT:C177323 Angiofibroma of Soft Tissue 7 173595 -NCIT:C27256 Giant Cell Angiofibroma 7 173596 -NCIT:C27257 Cellular Angiofibroma 7 173597 -NCIT:C162498 Paratesticular Cellular Angiofibroma 8 173598 -NCIT:C40327 Vulvar Cellular Angiofibroma 8 173599 -NCIT:C27478 Gingival Angiofibroma 7 173600 -NCIT:C27479 Nasopharyngeal Angiofibroma 7 173601 -NCIT:C3972 Prostate Fibroma 6 173602 -NCIT:C39951 Testicular Fibroma 6 173603 -NCIT:C4818 Calcifying Aponeurotic Fibroma 6 173604 -NCIT:C49017 Gardner Fibroma 6 173605 -NCIT:C5394 Solitary Adult Fibroma 6 173606 -NCIT:C5658 Lung Fibroma 6 173607 -NCIT:C5702 Esophageal Fibroma 6 173608 -NCIT:C5853 Extrahepatic Bile Duct Fibroma 6 173609 -NCIT:C6484 Dermal Fibroma 6 173610 -NCIT:C170889 Plaque-Like CD34-Positive Dermal Fibroma 7 173611 -NCIT:C4470 Perifollicular Fibroma 7 173612 -NCIT:C6486 Nuchal-Type Fibroma 7 173613 -NCIT:C6485 Tendon Sheath Fibroma 6 173614 -NCIT:C66761 Periosteal Fibroma 6 173615 -NCIT:C66764 Fascial Fibroma 6 173616 -NCIT:C6892 Cellular Fibroma 6 173617 -NCIT:C7291 Ovarian Cellular Fibroma 7 173618 -NCIT:C6947 Cardiac Fibroma 6 173619 -NCIT:C3253 Myositis Ossificans 5 173620 -NCIT:C3456 Inclusion Body Fibromatosis 5 173621 -NCIT:C3827 Nodular Fasciitis 5 173622 -NCIT:C173687 Salivary Gland Nodular Fasciitis 6 173623 -NCIT:C173688 Parotid Gland Nodular Fasciitis 7 173624 -NCIT:C176253 Breast Nodular Fasciitis 6 173625 -NCIT:C27248 Cranial Nodular Fasciitis 6 173626 -NCIT:C4729 Intravascular Nodular Fasciitis 6 173627 -NCIT:C48961 Subcutaneous Nodular Fasciitis 6 173628 -NCIT:C4245 Elastofibroma 5 173629 -NCIT:C4728 Proliferative Fasciitis 5 173630 -NCIT:C4811 Fibromatosis Colli 5 173631 -NCIT:C49012 Myofibroblastoma 5 173632 -NCIT:C121181 Mammary-Type Myofibroblastoma 6 173633 -NCIT:C128079 Vaginal Superficial Myofibroblastoma 7 173634 -NCIT:C128272 Vulvar Superficial Myofibroblastoma 7 173635 -NCIT:C162500 Paratesticular Mammary-Type Myofibroblastoma 7 173636 -NCIT:C161640 Seminal Vesicle Mammary-Type Myofibroblastoma 8 173637 -NCIT:C129551 Central Nervous System Myofibroblastoma 6 173638 -NCIT:C40397 Breast Myofibroblastoma 6 173639 -NCIT:C6584 Palisaded Lymph Node Myofibroblastoma 6 173640 -NCIT:C49016 Angiomyofibroblastoma 5 173641 -NCIT:C45445 Vaginal Angiomyofibroblastoma 6 173642 -NCIT:C45446 Vulvar Angiomyofibroblastoma 6 173643 -NCIT:C6488 Calcifying Fibrous Tumor 5 173644 -NCIT:C179560 Peritoneal Calcifying Fibrous Tumor 6 173645 -NCIT:C183277 Pleural Calcifying Fibrous Tumor 6 173646 -NCIT:C6573 Fibroosseous Pseudotumor of Digits 5 173647 -NCIT:C6806 Benign Skin Fibroblastic Neoplasm 5 173648 -NCIT:C170888 Dermatomyofibroma 6 173649 -NCIT:C3942 Fibrous Hamartoma of Infancy 6 173650 -NCIT:C48961 Subcutaneous Nodular Fasciitis 6 173651 -NCIT:C6484 Dermal Fibroma 6 173652 -NCIT:C170889 Plaque-Like CD34-Positive Dermal Fibroma 7 173653 -NCIT:C4470 Perifollicular Fibroma 7 173654 -NCIT:C6486 Nuchal-Type Fibroma 7 173655 -NCIT:C7333 Intermediate Fibroblastic Neoplasm 4 173656 -NCIT:C177324 Superficial CD34-Positive Fibroblastic Tumor 5 173657 -NCIT:C4683 Dermatofibrosarcoma Protuberans 5 173658 -NCIT:C177325 Plaque-Like Dermatofibrosarcoma Protuberans 6 173659 -NCIT:C38105 Dermatofibrosarcoma Protuberans with Myoid Differentiation 6 173660 -NCIT:C38106 Myxoid Dermatofibrosarcoma Protuberans 6 173661 -NCIT:C38107 Dedifferentiated Dermatofibrosarcoma Protuberans 6 173662 -NCIT:C27547 Fibrosarcomatous Dermatofibrosarcoma Protuberans 7 173663 -NCIT:C38108 Dermatofibrosarcoma Protuberans with Giant Cell Fibroblastoma-Like Differentiation 6 173664 -NCIT:C9430 Pigmented Dermatofibrosarcoma Protuberans 6 173665 -NCIT:C4700 Giant Cell Fibroblastoma 5 173666 -NCIT:C6481 Inflammatory Myofibroblastic Tumor 5 173667 -NCIT:C126359 Abdominal Inflammatory Myofibroblastic Tumor 6 173668 -NCIT:C161042 Prostate Inflammatory Myofibroblastic Tumor 6 173669 -NCIT:C172851 Digestive System Inflammatory Myofibroblastic Tumor 6 173670 -NCIT:C5858 Liver Inflammatory Myofibroblastic Tumor 7 173671 -NCIT:C7022 Gastric Inflammatory Myofibroblastic Tumor 7 173672 -NCIT:C173402 Laryngeal Inflammatory Myofibroblastic Tumor 6 173673 -NCIT:C180545 Uterine Corpus Inflammatory Myofibroblastic Tumor 6 173674 -NCIT:C188972 Childhood Inflammatory Myofibroblastic Tumor 6 173675 -NCIT:C39740 Lung Inflammatory Myofibroblastic Tumor 6 173676 -NCIT:C39741 Retroperitoneal Inflammatory Myofibroblastic Tumor 6 173677 -NCIT:C40398 Breast Inflammatory Myofibroblastic Tumor 6 173678 -NCIT:C45753 Cardiac Inflammatory Myofibroblastic Tumor 6 173679 -NCIT:C6177 Bladder Inflammatory Myofibroblastic Tumor 6 173680 -NCIT:C7020 Central Nervous System Inflammatory Myofibroblastic Tumor 6 173681 -NCIT:C6814 Superficial Fibromatosis 5 173682 -NCIT:C3316 Penile Fibromatosis 6 173683 -NCIT:C3469 Palmar Fibromatosis 6 173684 -NCIT:C4680 Plantar Fibromatosis 6 173685 -NCIT:C9182 Desmoid Fibromatosis 5 173686 -NCIT:C126358 Pelvic Fibromatosis 6 173687 -NCIT:C155875 Recurrent Desmoid Fibromatosis 6 173688 -NCIT:C155877 Unresectable Desmoid Fibromatosis 6 173689 -NCIT:C175667 Locally Invasive Desmoid-Type Fibromatosis 6 173690 -NCIT:C175670 Refractory Desmoid Fibromatosis 6 173691 -NCIT:C3741 Abdominal (Mesenteric) Fibromatosis 6 173692 -NCIT:C6489 Extraabdominal Fibromatosis 6 173693 -NCIT:C129548 Central Nervous System Desmoid Fibromatosis 7 173694 -NCIT:C173133 Sinonasal Desmoid Fibromatosis 7 173695 -NCIT:C6713 Chest Wall Fibromatosis 7 173696 -NCIT:C99180 Lipofibromatosis 5 173697 -NCIT:C7634 Solitary Fibrous Tumor 4 173698 -NCIT:C126357 Peritoneal Solitary Fibrous Tumor 5 173699 -NCIT:C129526 Central Nervous System Solitary Fibrous Tumor 5 173700 -NCIT:C129527 Central Nervous System Solitary Fibrous Tumor, Grade 3 6 173701 -NCIT:C186603 Central Nervous System Dedifferentiated Solitary Fibrous Tumor 7 173702 -NCIT:C9183 Adult Central Nervous System Solitary Fibrous Tumor, Grade 3 7 173703 -NCIT:C92652 Meningeal Central Nervous System Solitary Fibrous Tumor, Grade 3 7 173704 -NCIT:C129528 Central Nervous System Solitary Fibrous Tumor, Grade 2 6 173705 -NCIT:C129530 Central Nervous System Solitary Fibrous Tumor, Grade 1 6 173706 -NCIT:C175496 Optic Nerve Sheath Solitary Fibrous Tumor 6 173707 -NCIT:C4660 Meningeal Solitary Fibrous Tumor 6 173708 -NCIT:C155784 Sellar Solitary Fibrous Tumor 7 173709 -NCIT:C92652 Meningeal Central Nervous System Solitary Fibrous Tumor, Grade 3 7 173710 -NCIT:C156349 Thyroid Gland Solitary Fibrous Tumor 5 173711 -NCIT:C159222 Kidney Solitary Fibrous Tumor 5 173712 -NCIT:C159679 Bladder Solitary Fibrous Tumor 5 173713 -NCIT:C161579 Prostate Solitary Fibrous Tumor 5 173714 -NCIT:C161580 Prostate Malignant Solitary Fibrous Tumor 6 173715 -NCIT:C172940 Digestive System Solitary Fibrous Tumor 5 173716 -NCIT:C5752 Liver Solitary Fibrous Tumor 6 173717 -NCIT:C173137 Sinonasal Solitary Fibrous Tumor 5 173718 -NCIT:C181935 Vulvar Solitary Fibrous Tumor 5 173719 -NCIT:C181936 Vaginal Solitary Fibrous Tumor 5 173720 -NCIT:C4281 Pericardial Solitary Fibrous Tumor 5 173721 -NCIT:C4457 Pleural Solitary Fibrous Tumor 5 173722 -NCIT:C45744 Mediastinal Solitary Fibrous Tumor 5 173723 -NCIT:C95044 Thymus Solitary Fibrous Tumor 6 173724 -NCIT:C6894 Malignant Solitary Fibrous Tumor 5 173725 -NCIT:C129527 Central Nervous System Solitary Fibrous Tumor, Grade 3 6 173726 -NCIT:C186603 Central Nervous System Dedifferentiated Solitary Fibrous Tumor 7 173727 -NCIT:C9183 Adult Central Nervous System Solitary Fibrous Tumor, Grade 3 7 173728 -NCIT:C92652 Meningeal Central Nervous System Solitary Fibrous Tumor, Grade 3 7 173729 -NCIT:C161580 Prostate Malignant Solitary Fibrous Tumor 6 173730 -NCIT:C79948 Dedifferentiated Solitary Fibrous Tumor 6 173731 -NCIT:C186603 Central Nervous System Dedifferentiated Solitary Fibrous Tumor 7 173732 -NCIT:C8402 Fibrohistiocytic Neoplasm 3 173733 -NCIT:C121500 Malignant Fibrohistiocytic Neoplasm 4 173734 -NCIT:C6535 Malignant Tenosynovial Giant Cell Tumor 5 173735 -NCIT:C6490 Benign Fibrohistiocytic Neoplasm 4 173736 -NCIT:C3401 Tenosynovial Giant Cell Tumor, Diffuse Type 5 173737 -NCIT:C35765 Histiocytoma 5 173738 -NCIT:C3739 Fibrous Histiocytoma 6 173739 -NCIT:C129549 Intracranial Fibrous Histiocytoma 7 173740 -NCIT:C188974 Childhood Fibrous Histiocytoma 7 173741 -NCIT:C189031 Childhood Non-Ossifying Fibroma 8 173742 -NCIT:C53963 Fibrous Histiocytoma of Bone 7 173743 -NCIT:C121929 Non-Ossifying Fibroma 8 173744 -NCIT:C189031 Childhood Non-Ossifying Fibroma 9 173745 -NCIT:C6492 Deep Fibrous Histiocytoma 7 173746 -NCIT:C6801 Skin Fibrous Histiocytoma 7 173747 -NCIT:C49076 Skin Fibrous Histiocytoma, Fibroblastic Variant 8 173748 -NCIT:C49077 Skin Fibrous Histiocytoma, Histiocytic Variant 8 173749 -NCIT:C49078 Skin Fibrous Histiocytoma, Cellular Variant 8 173750 -NCIT:C49079 Skin Fibrous Histiocytoma, Epithelioid Variant 8 173751 -NCIT:C6532 Tenosynovial Giant Cell Tumor, Localized Type 5 173752 -NCIT:C7343 Benign Skin Fibrohistiocytic Neoplasm 5 173753 -NCIT:C6801 Skin Fibrous Histiocytoma 6 173754 -NCIT:C49076 Skin Fibrous Histiocytoma, Fibroblastic Variant 7 173755 -NCIT:C49077 Skin Fibrous Histiocytoma, Histiocytic Variant 7 173756 -NCIT:C49078 Skin Fibrous Histiocytoma, Cellular Variant 7 173757 -NCIT:C49079 Skin Fibrous Histiocytoma, Epithelioid Variant 7 173758 -NCIT:C6491 Intermediate Fibrohistiocytic Neoplasm 4 173759 -NCIT:C49107 Giant Cell Tumor of Soft Tissue 5 173760 -NCIT:C7344 Skin Intermediate Fibrohistiocytic Neoplasm 5 173761 -NCIT:C6493 Plexiform Fibrohistiocytic Tumor 6 173762 -NCIT:C188975 Childhood Plexiform Fibrohistiocytic Tumor 7 173763 -NCIT:C6721 Chest Wall Plexiform Fibrohistiocytic Tumor 7 173764 -NCIT:C7749 Skin Fibrohistiocytic Neoplasm 4 173765 -NCIT:C7343 Benign Skin Fibrohistiocytic Neoplasm 5 173766 -NCIT:C6801 Skin Fibrous Histiocytoma 6 173767 -NCIT:C49076 Skin Fibrous Histiocytoma, Fibroblastic Variant 7 173768 -NCIT:C49077 Skin Fibrous Histiocytoma, Histiocytic Variant 7 173769 -NCIT:C49078 Skin Fibrous Histiocytoma, Cellular Variant 7 173770 -NCIT:C49079 Skin Fibrous Histiocytoma, Epithelioid Variant 7 173771 -NCIT:C7344 Skin Intermediate Fibrohistiocytic Neoplasm 5 173772 -NCIT:C6493 Plexiform Fibrohistiocytic Tumor 6 173773 -NCIT:C188975 Childhood Plexiform Fibrohistiocytic Tumor 7 173774 -NCIT:C6721 Chest Wall Plexiform Fibrohistiocytic Tumor 7 173775 -NCIT:C7069 Giant Cell Neoplasm 2 173776 -NCIT:C3055 Giant Cell Tumor 3 173777 -NCIT:C3402 Tenosynovial Giant Cell Tumor 4 173778 -NCIT:C188976 Childhood Tenosynovial Giant Cell Tumor 5 173779 -NCIT:C3401 Tenosynovial Giant Cell Tumor, Diffuse Type 5 173780 -NCIT:C6532 Tenosynovial Giant Cell Tumor, Localized Type 5 173781 -NCIT:C6535 Malignant Tenosynovial Giant Cell Tumor 5 173782 -NCIT:C3738 Osteoclastic Giant Cell-Rich Tumor of Bone 4 173783 -NCIT:C121931 Intermediate Osteoclastic Giant Cell-Rich Tumor of Bone 5 173784 -NCIT:C121932 Giant Cell Tumor of Bone 6 173785 -NCIT:C189030 Childhood Giant Cell Tumor of Bone 7 173786 -NCIT:C121933 Malignant Osteoclastic Giant Cell-Rich Tumor of Bone 5 173787 -NCIT:C4304 Malignancy in Giant Cell Tumor of Bone 6 173788 -NCIT:C27477 Benign Osteoclastic Giant Cell-Rich Tumor of Bone 5 173789 -NCIT:C121893 Giant Cell Lesion of Small Bones 6 173790 -NCIT:C49107 Giant Cell Tumor of Soft Tissue 4 173791 -NCIT:C4090 Malignant Giant Cell Neoplasm 3 173792 -NCIT:C121933 Malignant Osteoclastic Giant Cell-Rich Tumor of Bone 4 173793 -NCIT:C4304 Malignancy in Giant Cell Tumor of Bone 5 173794 -NCIT:C3779 Giant Cell Carcinoma 4 173795 -NCIT:C4452 Lung Giant Cell Carcinoma 5 173796 -NCIT:C54342 Laryngeal Giant Cell Carcinoma 5 173797 -NCIT:C5838 Gallbladder Undifferentiated Carcinoma, Spindle and Giant Cell Type 5 173798 -NCIT:C4325 Giant Cell Glioblastoma 4 173799 -NCIT:C114966 Childhood Giant Cell Glioblastoma 5 173800 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 6 173801 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 5 173802 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 6 173803 -NCIT:C176998 Refractory Giant Cell Glioblastoma 5 173804 -NCIT:C68702 Adult Giant Cell Glioblastoma 5 173805 -NCIT:C6535 Malignant Tenosynovial Giant Cell Tumor 4 173806 -NCIT:C8380 Undifferentiated Pleomorphic Sarcoma with Osteoclast-Like Giant Cells 4 173807 -NCIT:C7062 Neoplasm by Special Category 1 173808 -NCIT:C102883 Miscellaneous Neoplasm 2 173809 -NCIT:C116915 Liquid Tumor 2 173810 -NCIT:C163003 Non-Malignant Neoplasm 2 173811 -NCIT:C27263 Spindle Cell Neoplasm 2 173812 -NCIT:C27091 Malignant Spindle Cell Neoplasm 3 173813 -NCIT:C27933 Neoplasm by Cause 2 173814 -NCIT:C27224 Infection-Related Neoplasm 3 173815 -NCIT:C27223 Infection-Related Malignant Neoplasm 4 173816 -NCIT:C27673 Virus-Related Malignant Neoplasm 5 173817 -NCIT:C27685 HTLV-1-Related Malignant Neoplasm 6 173818 -NCIT:C3184 Adult T-Cell Leukemia/Lymphoma 7 173819 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 8 173820 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 9 173821 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 9 173822 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 9 173823 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 9 173824 -NCIT:C36265 Acute Adult T-Cell Leukemia/Lymphoma 8 173825 -NCIT:C36266 Lymphomatous Adult T-Cell Leukemia/Lymphoma 8 173826 -NCIT:C36268 Hodgkin-Like Adult T-Cell Leukemia/Lymphoma 8 173827 -NCIT:C45272 Cutaneous Adult T-Cell Leukemia/Lymphoma 8 173828 -NCIT:C7178 Smoldering Adult T-Cell Leukemia/Lymphoma 8 173829 -NCIT:C7179 Chronic Adult T-Cell Leukemia/Lymphoma 8 173830 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 8 173831 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 8 173832 -NCIT:C27689 EBV-Related Malignant Neoplasm 6 173833 -NCIT:C162305 EBV-Related Sarcoma 7 173834 -NCIT:C162306 EBV-Related Leiomyosarcoma 8 173835 -NCIT:C172847 EBV-Positive Inflammatory Follicular Dendritic Cell Sarcoma 8 173836 -NCIT:C150704 EBV-Positive Inflammatory Follicular Dendritic Cell Sarcoma of the Digestive System 9 173837 -NCIT:C27690 EBV-Related Carcinoma 7 173838 -NCIT:C162304 EBV-Related Gastric Carcinoma 8 173839 -NCIT:C7373 Nasopharyngeal Nonkeratinizing Carcinoma 8 173840 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 173841 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 173842 -NCIT:C54389 Nasopharyngeal Differentiated Carcinoma 9 173843 -NCIT:C8023 Nasopharyngeal Undifferentiated Carcinoma 9 173844 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 173845 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 10 173846 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 173847 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 173848 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 173849 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 173850 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 173851 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 8 173852 -NCIT:C27691 EBV-Related Lymphoma 7 173853 -NCIT:C147863 Recurrent EBV-Related Lymphoma 8 173854 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 173855 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 9 173856 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 173857 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 10 173858 -NCIT:C160149 Refractory EBV-Related Lymphoma 8 173859 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 173860 -NCIT:C27692 EBV-Related Hodgkin Lymphoma 8 173861 -NCIT:C7243 Classic Hodgkin Lymphoma Type Post-Transplant Lymphoproliferative Disorder 9 173862 -NCIT:C27693 EBV-Related Non-Hodgkin Lymphoma 8 173863 -NCIT:C139288 Primary EBV-Positive Nodal T-Cell or NK-Cell Lymphoma 9 173864 -NCIT:C27694 EBV-Related Burkitt Lymphoma 9 173865 -NCIT:C27122 Endemic Burkitt Lymphoma 10 173866 -NCIT:C7933 Grade III Lymphomatoid Granulomatosis 9 173867 -NCIT:C115150 Adult Grade III Lymphomatoid Granulomatosis 10 173868 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 11 173869 -NCIT:C115204 Childhood Grade III Lymphomatoid Granulomatosis 10 173870 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 11 173871 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 10 173872 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 11 173873 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 11 173874 -NCIT:C80281 EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 173875 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 173876 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 173877 -NCIT:C188456 Childhood EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 173878 -NCIT:C188457 Adult EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 173879 -NCIT:C80374 Systemic EBV-Positive T-Cell Lymphoma of Childhood 9 173880 -NCIT:C27695 EBV-Related Clonal Post-Transplant Lymphoproliferative Disorder 8 173881 -NCIT:C7239 Hodgkin-Like Post-Transplant Lymphoproliferative Disorder 9 173882 -NCIT:C7243 Classic Hodgkin Lymphoma Type Post-Transplant Lymphoproliferative Disorder 9 173883 -NCIT:C80373 EBV-Positive T-Cell Lymphoproliferative Disorder of Childhood 7 173884 -NCIT:C45327 Hydroa Vacciniforme-Like Lymphoproliferative Disorder 8 173885 -NCIT:C80374 Systemic EBV-Positive T-Cell Lymphoma of Childhood 8 173886 -NCIT:C27697 HHV8-Related Malignant Neoplasm 6 173887 -NCIT:C138320 HHV8-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 7 173888 -NCIT:C27856 Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 7 173889 -NCIT:C27858 AIDS-Related Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 8 173890 -NCIT:C6915 Primary Effusion Lymphoma 7 173891 -NCIT:C150406 Extracavitary Primary Effusion Lymphoma 8 173892 -NCIT:C150407 Body Cavity Primary Effusion Lymphoma 8 173893 -NCIT:C183135 Pleural Primary Effusion Lymphoma 9 173894 -NCIT:C183136 Pericardial Primary Effusion Lymphoma 9 173895 -NCIT:C183137 Peritoneal Primary Effusion Lymphoma 9 173896 -NCIT:C157679 Recurrent Primary Effusion Lymphoma 8 173897 -NCIT:C157680 Refractory Primary Effusion Lymphoma 8 173898 -NCIT:C9017 AIDS-Related Primary Effusion Lymphoma 8 173899 -NCIT:C9087 Kaposi Sarcoma 7 173900 -NCIT:C156474 Refractory Kaposi Sarcoma 8 173901 -NCIT:C156475 Metastatic Kaposi Sarcoma 8 173902 -NCIT:C156476 Advanced Kaposi Sarcoma 9 173903 -NCIT:C172955 Digestive System Kaposi Sarcoma 8 173904 -NCIT:C5529 Gastric Kaposi Sarcoma 9 173905 -NCIT:C5624 AIDS-Related Gastric Kaposi Sarcoma 10 173906 -NCIT:C5602 Anal Kaposi Sarcoma 9 173907 -NCIT:C5706 Esophageal Kaposi Sarcoma 9 173908 -NCIT:C5842 Gallbladder Kaposi Sarcoma 9 173909 -NCIT:C96059 Small Intestinal Kaposi Sarcoma 9 173910 -NCIT:C96434 Appendix Kaposi Sarcoma 9 173911 -NCIT:C96510 Colorectal Kaposi Sarcoma 9 173912 -NCIT:C5516 Colon Kaposi Sarcoma 10 173913 -NCIT:C5550 Rectal Kaposi Sarcoma 10 173914 -NCIT:C96844 Liver Kaposi Sarcoma 9 173915 -NCIT:C96951 Extrahepatic Bile Duct Kaposi Sarcoma 9 173916 -NCIT:C173477 Oral Cavity Kaposi Sarcoma 8 173917 -NCIT:C6749 Palate Kaposi Sarcoma 9 173918 -NCIT:C181938 Vulvar Kaposi Sarcoma 8 173919 -NCIT:C188980 Childhood Kaposi Sarcoma 8 173920 -NCIT:C27500 Lymphadenopathic Kaposi Sarcoma 8 173921 -NCIT:C3550 Skin Kaposi Sarcoma 8 173922 -NCIT:C9112 Classic Kaposi Sarcoma 9 173923 -NCIT:C3551 Lung Kaposi Sarcoma 8 173924 -NCIT:C35873 Iatrogenic Kaposi Sarcoma 8 173925 -NCIT:C9113 Kaposi Sarcoma Related to Immunosuppressive Treatment 9 173926 -NCIT:C27640 Transplant-Related Kaposi Sarcoma 10 173927 -NCIT:C35874 Endemic African Kaposi Sarcoma 8 173928 -NCIT:C3992 AIDS-Related Kaposi Sarcoma 8 173929 -NCIT:C5624 AIDS-Related Gastric Kaposi Sarcoma 9 173930 -NCIT:C7433 AIDS-Related Cervical Kaposi Sarcoma 9 173931 -NCIT:C4578 Conjunctival Kaposi Sarcoma 8 173932 -NCIT:C4579 Corneal Kaposi Sarcoma 8 173933 -NCIT:C5363 Cardiac Kaposi Sarcoma 8 173934 -NCIT:C5523 Prostate Kaposi Sarcoma 8 173935 -NCIT:C5952 Parotid Gland Kaposi Sarcoma 8 173936 -NCIT:C6377 Penile Kaposi Sarcoma 8 173937 -NCIT:C7006 Central Nervous System Kaposi Sarcoma 8 173938 -NCIT:C7935 Recurrent Kaposi Sarcoma 8 173939 -NCIT:C9413 Kaposi Sarcoma NCI Grade 2 8 173940 -NCIT:C9414 Kaposi Sarcoma NCI Grade 3 8 173941 -NCIT:C27698 Virus-Related Carcinoma 6 173942 -NCIT:C27674 Human Papillomavirus-Related Carcinoma 7 173943 -NCIT:C27675 Human Papillomavirus-Related Cervical Carcinoma 8 173944 -NCIT:C27676 Human Papillomavirus-Related Cervical Squamous Cell Carcinoma 9 173945 -NCIT:C40192 Cervical Papillary Squamous Cell Carcinoma 10 173946 -NCIT:C40191 Cervical Warty Carcinoma 11 173947 -NCIT:C40194 Cervical Squamotransitional Carcinoma 11 173948 -NCIT:C27677 Human Papillomavirus-Related Cervical Adenocarcinoma 9 173949 -NCIT:C127907 Endocervical Adenocarcinoma, Usual-Type 10 173950 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 11 173951 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 11 173952 -NCIT:C40208 Cervical Villoglandular Adenocarcinoma 11 173953 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 10 173954 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 10 173955 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 10 173956 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 10 173957 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 10 173958 -NCIT:C27683 Human Papillomavirus-Related Squamous Cell Carcinoma 8 173959 -NCIT:C171023 Human Papillomavirus-Related Mucosal Head and Neck Squamous Cell Carcinoma 9 173960 -NCIT:C173078 Sinonasal Human Papillomavirus-Related Carcinoma with Adenoid Cystic-Like Features 10 173961 -NCIT:C87055 Oropharyngeal Human Papillomavirus-Positive Squamous Cell Carcinoma 10 173962 -NCIT:C180917 Human Papillomavirus-Related Vaginal Squamous Cell Carcinoma 9 173963 -NCIT:C40248 Vaginal Warty Carcinoma 10 173964 -NCIT:C187051 Human Papillomavirus-Related Head and Neck Squamous Cell Carcinoma of Unknown Primary 9 173965 -NCIT:C27676 Human Papillomavirus-Related Cervical Squamous Cell Carcinoma 9 173966 -NCIT:C40192 Cervical Papillary Squamous Cell Carcinoma 10 173967 -NCIT:C40191 Cervical Warty Carcinoma 11 173968 -NCIT:C40194 Cervical Squamotransitional Carcinoma 11 173969 -NCIT:C27678 Human Papillomavirus-Related Verrucous Carcinoma 9 173970 -NCIT:C27679 Human Papillomavirus-Related Vulvar Squamous Cell Carcinoma 9 173971 -NCIT:C40287 Vulvar Warty Carcinoma 10 173972 -NCIT:C27680 Human Papillomavirus-Related Esophageal Squamous Cell Carcinoma 9 173973 -NCIT:C27681 Human Papillomavirus-Related Anal Squamous Cell Carcinoma 9 173974 -NCIT:C27682 Human Papillomavirus-Related Squamous Cell Carcinoma of the Penis 9 173975 -NCIT:C159250 Warty-Basaloid Carcinoma of the Penis 10 173976 -NCIT:C159251 Clear Cell Squamous Cell Carcinoma of the Penis 10 173977 -NCIT:C159252 Lymphoepithelioma-Like Carcinoma of the Penis 10 173978 -NCIT:C6980 Basaloid Squamous Cell Carcinoma of the Penis 10 173979 -NCIT:C159249 Papillary-Basaloid Carcinoma of the Penis 11 173980 -NCIT:C6981 Warty Carcinoma of the Penis 10 173981 -NCIT:C39862 Human Papillomavirus-Related Urethral Squamous Cell Carcinoma 9 173982 -NCIT:C27684 Human Papillomavirus-Related Adenocarcinoma 8 173983 -NCIT:C180943 Human Papillomavirus-Related Vaginal Adenocarcinoma 9 173984 -NCIT:C27677 Human Papillomavirus-Related Cervical Adenocarcinoma 9 173985 -NCIT:C127907 Endocervical Adenocarcinoma, Usual-Type 10 173986 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 11 173987 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 11 173988 -NCIT:C40208 Cervical Villoglandular Adenocarcinoma 11 173989 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 10 173990 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 10 173991 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 10 173992 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 10 173993 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 10 173994 -NCIT:C97046 Human Papillomavirus-Related Adenosquamous Carcinoma 8 173995 -NCIT:C27686 Hepatitis Virus-Related Hepatocellular Carcinoma 7 173996 -NCIT:C27687 Hepatitis B Virus-Related Hepatocellular Carcinoma 8 173997 -NCIT:C27688 Hepatitis C Virus-Related Hepatocellular Carcinoma 8 173998 -NCIT:C27690 EBV-Related Carcinoma 7 173999 -NCIT:C162304 EBV-Related Gastric Carcinoma 8 174000 -NCIT:C7373 Nasopharyngeal Nonkeratinizing Carcinoma 8 174001 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 174002 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 174003 -NCIT:C54389 Nasopharyngeal Differentiated Carcinoma 9 174004 -NCIT:C8023 Nasopharyngeal Undifferentiated Carcinoma 9 174005 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 174006 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 10 174007 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 174008 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 174009 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 174010 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 174011 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 174012 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 8 174013 -NCIT:C27700 AIDS-Related Carcinoma 7 174014 -NCIT:C7432 AIDS-Related Cervical Carcinoma 8 174015 -NCIT:C9278 AIDS-Related Anal Carcinoma 8 174016 -NCIT:C133095 AIDS-Related Anal Canal Carcinoma 9 174017 -NCIT:C27282 Stage 0 AIDS-Related Anal Canal Cancer AJCC v6 and v7 10 174018 -NCIT:C27283 Stage I AIDS-Related Anal Canal Cancer AJCC v6 and v7 10 174019 -NCIT:C27284 Stage II AIDS-Related Anal Canal Cancer AJCC v6 and v7 10 174020 -NCIT:C27285 Stage III AIDS-Related Anal Canal Cancer AJCC v6 and v7 10 174021 -NCIT:C27286 Stage IV AIDS-Related Anal Canal Cancer AJCC v6 and v7 10 174022 -NCIT:C9249 Recurrent AIDS-Related Anal Canal Carcinoma 10 174023 -NCIT:C27699 Virus-Related Lymphoma 6 174024 -NCIT:C138320 HHV8-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 7 174025 -NCIT:C27691 EBV-Related Lymphoma 7 174026 -NCIT:C147863 Recurrent EBV-Related Lymphoma 8 174027 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 174028 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 9 174029 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 174030 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 10 174031 -NCIT:C160149 Refractory EBV-Related Lymphoma 8 174032 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 174033 -NCIT:C27692 EBV-Related Hodgkin Lymphoma 8 174034 -NCIT:C7243 Classic Hodgkin Lymphoma Type Post-Transplant Lymphoproliferative Disorder 9 174035 -NCIT:C27693 EBV-Related Non-Hodgkin Lymphoma 8 174036 -NCIT:C139288 Primary EBV-Positive Nodal T-Cell or NK-Cell Lymphoma 9 174037 -NCIT:C27694 EBV-Related Burkitt Lymphoma 9 174038 -NCIT:C27122 Endemic Burkitt Lymphoma 10 174039 -NCIT:C7933 Grade III Lymphomatoid Granulomatosis 9 174040 -NCIT:C115150 Adult Grade III Lymphomatoid Granulomatosis 10 174041 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 11 174042 -NCIT:C115204 Childhood Grade III Lymphomatoid Granulomatosis 10 174043 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 11 174044 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 10 174045 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 11 174046 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 11 174047 -NCIT:C80281 EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 174048 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 174049 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 174050 -NCIT:C188456 Childhood EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 174051 -NCIT:C188457 Adult EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 10 174052 -NCIT:C80374 Systemic EBV-Positive T-Cell Lymphoma of Childhood 9 174053 -NCIT:C27695 EBV-Related Clonal Post-Transplant Lymphoproliferative Disorder 8 174054 -NCIT:C7239 Hodgkin-Like Post-Transplant Lymphoproliferative Disorder 9 174055 -NCIT:C7243 Classic Hodgkin Lymphoma Type Post-Transplant Lymphoproliferative Disorder 9 174056 -NCIT:C27856 Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 7 174057 -NCIT:C27858 AIDS-Related Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 8 174058 -NCIT:C3184 Adult T-Cell Leukemia/Lymphoma 7 174059 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 8 174060 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 9 174061 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 9 174062 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 9 174063 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 9 174064 -NCIT:C36265 Acute Adult T-Cell Leukemia/Lymphoma 8 174065 -NCIT:C36266 Lymphomatous Adult T-Cell Leukemia/Lymphoma 8 174066 -NCIT:C36268 Hodgkin-Like Adult T-Cell Leukemia/Lymphoma 8 174067 -NCIT:C45272 Cutaneous Adult T-Cell Leukemia/Lymphoma 8 174068 -NCIT:C7178 Smoldering Adult T-Cell Leukemia/Lymphoma 8 174069 -NCIT:C7179 Chronic Adult T-Cell Leukemia/Lymphoma 8 174070 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 8 174071 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 8 174072 -NCIT:C3471 AIDS-Related Lymphoma 7 174073 -NCIT:C5051 AIDS-Related Non-Hodgkin Lymphoma 8 174074 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 174075 -NCIT:C7212 AIDS-Related Diffuse Large B-cell Lymphoma 9 174076 -NCIT:C27858 AIDS-Related Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 10 174077 -NCIT:C27859 AIDS-Related Plasmablastic Lymphoma 10 174078 -NCIT:C38160 AIDS-Related Plasmablastic Lymphoma of Mucosa Site 11 174079 -NCIT:C9016 AIDS-Related Plasmablastic Lymphoma of the Oral Mucosa 12 174080 -NCIT:C8285 AIDS-Related Immunoblastic Lymphoma 10 174081 -NCIT:C9017 AIDS-Related Primary Effusion Lymphoma 10 174082 -NCIT:C7434 AIDS-Related Non-Hodgkin Lymphoma of the Cervix 9 174083 -NCIT:C7465 AIDS-Related Anal Non-Hodgkin Lymphoma 9 174084 -NCIT:C8286 AIDS-Related Burkitt Lymphoma 9 174085 -NCIT:C27857 AIDS-Related Burkitt Lymphoma with Plasmacytoid Differentiation 10 174086 -NCIT:C8298 AIDS-Related Lymphoblastic Lymphoma 9 174087 -NCIT:C8284 AIDS-Related Primary Central Nervous System Lymphoma 8 174088 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 174089 -NCIT:C9279 AIDS-Related Hodgkin Lymphoma 8 174090 -NCIT:C94797 Ann Arbor Stage I AIDS-Related Lymphoma 8 174091 -NCIT:C94798 Ann Arbor Stage II AIDS-Related Lymphoma 8 174092 -NCIT:C94799 Ann Arbor Stage III AIDS-Related Lymphoma 8 174093 -NCIT:C94800 Ann Arbor Stage IV AIDS-Related Lymphoma 8 174094 -NCIT:C6915 Primary Effusion Lymphoma 7 174095 -NCIT:C150406 Extracavitary Primary Effusion Lymphoma 8 174096 -NCIT:C150407 Body Cavity Primary Effusion Lymphoma 8 174097 -NCIT:C183135 Pleural Primary Effusion Lymphoma 9 174098 -NCIT:C183136 Pericardial Primary Effusion Lymphoma 9 174099 -NCIT:C183137 Peritoneal Primary Effusion Lymphoma 9 174100 -NCIT:C157679 Recurrent Primary Effusion Lymphoma 8 174101 -NCIT:C157680 Refractory Primary Effusion Lymphoma 8 174102 -NCIT:C9017 AIDS-Related Primary Effusion Lymphoma 8 174103 -NCIT:C27707 Virus-Related Sarcoma 6 174104 -NCIT:C162305 EBV-Related Sarcoma 7 174105 -NCIT:C162306 EBV-Related Leiomyosarcoma 8 174106 -NCIT:C172847 EBV-Positive Inflammatory Follicular Dendritic Cell Sarcoma 8 174107 -NCIT:C150704 EBV-Positive Inflammatory Follicular Dendritic Cell Sarcoma of the Digestive System 9 174108 -NCIT:C9087 Kaposi Sarcoma 7 174109 -NCIT:C156474 Refractory Kaposi Sarcoma 8 174110 -NCIT:C156475 Metastatic Kaposi Sarcoma 8 174111 -NCIT:C156476 Advanced Kaposi Sarcoma 9 174112 -NCIT:C172955 Digestive System Kaposi Sarcoma 8 174113 -NCIT:C5529 Gastric Kaposi Sarcoma 9 174114 -NCIT:C5624 AIDS-Related Gastric Kaposi Sarcoma 10 174115 -NCIT:C5602 Anal Kaposi Sarcoma 9 174116 -NCIT:C5706 Esophageal Kaposi Sarcoma 9 174117 -NCIT:C5842 Gallbladder Kaposi Sarcoma 9 174118 -NCIT:C96059 Small Intestinal Kaposi Sarcoma 9 174119 -NCIT:C96434 Appendix Kaposi Sarcoma 9 174120 -NCIT:C96510 Colorectal Kaposi Sarcoma 9 174121 -NCIT:C5516 Colon Kaposi Sarcoma 10 174122 -NCIT:C5550 Rectal Kaposi Sarcoma 10 174123 -NCIT:C96844 Liver Kaposi Sarcoma 9 174124 -NCIT:C96951 Extrahepatic Bile Duct Kaposi Sarcoma 9 174125 -NCIT:C173477 Oral Cavity Kaposi Sarcoma 8 174126 -NCIT:C6749 Palate Kaposi Sarcoma 9 174127 -NCIT:C181938 Vulvar Kaposi Sarcoma 8 174128 -NCIT:C188980 Childhood Kaposi Sarcoma 8 174129 -NCIT:C27500 Lymphadenopathic Kaposi Sarcoma 8 174130 -NCIT:C3550 Skin Kaposi Sarcoma 8 174131 -NCIT:C9112 Classic Kaposi Sarcoma 9 174132 -NCIT:C3551 Lung Kaposi Sarcoma 8 174133 -NCIT:C35873 Iatrogenic Kaposi Sarcoma 8 174134 -NCIT:C9113 Kaposi Sarcoma Related to Immunosuppressive Treatment 9 174135 -NCIT:C27640 Transplant-Related Kaposi Sarcoma 10 174136 -NCIT:C35874 Endemic African Kaposi Sarcoma 8 174137 -NCIT:C3992 AIDS-Related Kaposi Sarcoma 8 174138 -NCIT:C5624 AIDS-Related Gastric Kaposi Sarcoma 9 174139 -NCIT:C7433 AIDS-Related Cervical Kaposi Sarcoma 9 174140 -NCIT:C4578 Conjunctival Kaposi Sarcoma 8 174141 -NCIT:C4579 Corneal Kaposi Sarcoma 8 174142 -NCIT:C5363 Cardiac Kaposi Sarcoma 8 174143 -NCIT:C5523 Prostate Kaposi Sarcoma 8 174144 -NCIT:C5952 Parotid Gland Kaposi Sarcoma 8 174145 -NCIT:C6377 Penile Kaposi Sarcoma 8 174146 -NCIT:C7006 Central Nervous System Kaposi Sarcoma 8 174147 -NCIT:C7935 Recurrent Kaposi Sarcoma 8 174148 -NCIT:C9413 Kaposi Sarcoma NCI Grade 2 8 174149 -NCIT:C9414 Kaposi Sarcoma NCI Grade 3 8 174150 -NCIT:C27718 Human Papillomavirus-Related Malignant Neoplasm 6 174151 -NCIT:C102884 Human Papillomavirus-Related Malignant Neoplasm in AIDS Patient 7 174152 -NCIT:C148510 Recurrent Human Papillomavirus-Related Malignant Neoplasm 7 174153 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 8 174154 -NCIT:C148512 Refractory Human Papillomavirus-Related Malignant Neoplasm 7 174155 -NCIT:C156793 Metastatic Human Papillomavirus-Related Malignant Neoplasm 7 174156 -NCIT:C187051 Human Papillomavirus-Related Head and Neck Squamous Cell Carcinoma of Unknown Primary 8 174157 -NCIT:C27674 Human Papillomavirus-Related Carcinoma 7 174158 -NCIT:C27675 Human Papillomavirus-Related Cervical Carcinoma 8 174159 -NCIT:C27676 Human Papillomavirus-Related Cervical Squamous Cell Carcinoma 9 174160 -NCIT:C40192 Cervical Papillary Squamous Cell Carcinoma 10 174161 -NCIT:C40191 Cervical Warty Carcinoma 11 174162 -NCIT:C40194 Cervical Squamotransitional Carcinoma 11 174163 -NCIT:C27677 Human Papillomavirus-Related Cervical Adenocarcinoma 9 174164 -NCIT:C127907 Endocervical Adenocarcinoma, Usual-Type 10 174165 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 11 174166 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 11 174167 -NCIT:C40208 Cervical Villoglandular Adenocarcinoma 11 174168 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 10 174169 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 10 174170 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 10 174171 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 10 174172 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 10 174173 -NCIT:C27683 Human Papillomavirus-Related Squamous Cell Carcinoma 8 174174 -NCIT:C171023 Human Papillomavirus-Related Mucosal Head and Neck Squamous Cell Carcinoma 9 174175 -NCIT:C173078 Sinonasal Human Papillomavirus-Related Carcinoma with Adenoid Cystic-Like Features 10 174176 -NCIT:C87055 Oropharyngeal Human Papillomavirus-Positive Squamous Cell Carcinoma 10 174177 -NCIT:C180917 Human Papillomavirus-Related Vaginal Squamous Cell Carcinoma 9 174178 -NCIT:C40248 Vaginal Warty Carcinoma 10 174179 -NCIT:C187051 Human Papillomavirus-Related Head and Neck Squamous Cell Carcinoma of Unknown Primary 9 174180 -NCIT:C27676 Human Papillomavirus-Related Cervical Squamous Cell Carcinoma 9 174181 -NCIT:C40192 Cervical Papillary Squamous Cell Carcinoma 10 174182 -NCIT:C40191 Cervical Warty Carcinoma 11 174183 -NCIT:C40194 Cervical Squamotransitional Carcinoma 11 174184 -NCIT:C27678 Human Papillomavirus-Related Verrucous Carcinoma 9 174185 -NCIT:C27679 Human Papillomavirus-Related Vulvar Squamous Cell Carcinoma 9 174186 -NCIT:C40287 Vulvar Warty Carcinoma 10 174187 -NCIT:C27680 Human Papillomavirus-Related Esophageal Squamous Cell Carcinoma 9 174188 -NCIT:C27681 Human Papillomavirus-Related Anal Squamous Cell Carcinoma 9 174189 -NCIT:C27682 Human Papillomavirus-Related Squamous Cell Carcinoma of the Penis 9 174190 -NCIT:C159250 Warty-Basaloid Carcinoma of the Penis 10 174191 -NCIT:C159251 Clear Cell Squamous Cell Carcinoma of the Penis 10 174192 -NCIT:C159252 Lymphoepithelioma-Like Carcinoma of the Penis 10 174193 -NCIT:C6980 Basaloid Squamous Cell Carcinoma of the Penis 10 174194 -NCIT:C159249 Papillary-Basaloid Carcinoma of the Penis 11 174195 -NCIT:C6981 Warty Carcinoma of the Penis 10 174196 -NCIT:C39862 Human Papillomavirus-Related Urethral Squamous Cell Carcinoma 9 174197 -NCIT:C27684 Human Papillomavirus-Related Adenocarcinoma 8 174198 -NCIT:C180943 Human Papillomavirus-Related Vaginal Adenocarcinoma 9 174199 -NCIT:C27677 Human Papillomavirus-Related Cervical Adenocarcinoma 9 174200 -NCIT:C127907 Endocervical Adenocarcinoma, Usual-Type 10 174201 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 11 174202 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 11 174203 -NCIT:C40208 Cervical Villoglandular Adenocarcinoma 11 174204 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 10 174205 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 10 174206 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 10 174207 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 10 174208 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 10 174209 -NCIT:C97046 Human Papillomavirus-Related Adenosquamous Carcinoma 8 174210 -NCIT:C4046 AIDS-Related Malignant Neoplasm 6 174211 -NCIT:C27700 AIDS-Related Carcinoma 7 174212 -NCIT:C7432 AIDS-Related Cervical Carcinoma 8 174213 -NCIT:C9278 AIDS-Related Anal Carcinoma 8 174214 -NCIT:C133095 AIDS-Related Anal Canal Carcinoma 9 174215 -NCIT:C27282 Stage 0 AIDS-Related Anal Canal Cancer AJCC v6 and v7 10 174216 -NCIT:C27283 Stage I AIDS-Related Anal Canal Cancer AJCC v6 and v7 10 174217 -NCIT:C27284 Stage II AIDS-Related Anal Canal Cancer AJCC v6 and v7 10 174218 -NCIT:C27285 Stage III AIDS-Related Anal Canal Cancer AJCC v6 and v7 10 174219 -NCIT:C27286 Stage IV AIDS-Related Anal Canal Cancer AJCC v6 and v7 10 174220 -NCIT:C9249 Recurrent AIDS-Related Anal Canal Carcinoma 10 174221 -NCIT:C3471 AIDS-Related Lymphoma 7 174222 -NCIT:C5051 AIDS-Related Non-Hodgkin Lymphoma 8 174223 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 174224 -NCIT:C7212 AIDS-Related Diffuse Large B-cell Lymphoma 9 174225 -NCIT:C27858 AIDS-Related Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 10 174226 -NCIT:C27859 AIDS-Related Plasmablastic Lymphoma 10 174227 -NCIT:C38160 AIDS-Related Plasmablastic Lymphoma of Mucosa Site 11 174228 -NCIT:C9016 AIDS-Related Plasmablastic Lymphoma of the Oral Mucosa 12 174229 -NCIT:C8285 AIDS-Related Immunoblastic Lymphoma 10 174230 -NCIT:C9017 AIDS-Related Primary Effusion Lymphoma 10 174231 -NCIT:C7434 AIDS-Related Non-Hodgkin Lymphoma of the Cervix 9 174232 -NCIT:C7465 AIDS-Related Anal Non-Hodgkin Lymphoma 9 174233 -NCIT:C8286 AIDS-Related Burkitt Lymphoma 9 174234 -NCIT:C27857 AIDS-Related Burkitt Lymphoma with Plasmacytoid Differentiation 10 174235 -NCIT:C8298 AIDS-Related Lymphoblastic Lymphoma 9 174236 -NCIT:C8284 AIDS-Related Primary Central Nervous System Lymphoma 8 174237 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 174238 -NCIT:C9279 AIDS-Related Hodgkin Lymphoma 8 174239 -NCIT:C94797 Ann Arbor Stage I AIDS-Related Lymphoma 8 174240 -NCIT:C94798 Ann Arbor Stage II AIDS-Related Lymphoma 8 174241 -NCIT:C94799 Ann Arbor Stage III AIDS-Related Lymphoma 8 174242 -NCIT:C94800 Ann Arbor Stage IV AIDS-Related Lymphoma 8 174243 -NCIT:C3992 AIDS-Related Kaposi Sarcoma 7 174244 -NCIT:C5624 AIDS-Related Gastric Kaposi Sarcoma 8 174245 -NCIT:C7433 AIDS-Related Cervical Kaposi Sarcoma 8 174246 -NCIT:C5047 AIDS-Related Malignant Anal Neoplasm 7 174247 -NCIT:C7465 AIDS-Related Anal Non-Hodgkin Lymphoma 8 174248 -NCIT:C9278 AIDS-Related Anal Carcinoma 8 174249 -NCIT:C133095 AIDS-Related Anal Canal Carcinoma 9 174250 -NCIT:C27282 Stage 0 AIDS-Related Anal Canal Cancer AJCC v6 and v7 10 174251 -NCIT:C27283 Stage I AIDS-Related Anal Canal Cancer AJCC v6 and v7 10 174252 -NCIT:C27284 Stage II AIDS-Related Anal Canal Cancer AJCC v6 and v7 10 174253 -NCIT:C27285 Stage III AIDS-Related Anal Canal Cancer AJCC v6 and v7 10 174254 -NCIT:C27286 Stage IV AIDS-Related Anal Canal Cancer AJCC v6 and v7 10 174255 -NCIT:C9249 Recurrent AIDS-Related Anal Canal Carcinoma 10 174256 -NCIT:C5052 AIDS-Related Malignant Cervical Neoplasm 7 174257 -NCIT:C7432 AIDS-Related Cervical Carcinoma 8 174258 -NCIT:C7433 AIDS-Related Cervical Kaposi Sarcoma 8 174259 -NCIT:C7434 AIDS-Related Non-Hodgkin Lymphoma of the Cervix 8 174260 -NCIT:C27760 Bacterium-Related Malignant Neoplasm 5 174261 -NCIT:C27761 Helicobacter Pylori-Related Malignant Neoplasm 6 174262 -NCIT:C27762 Helicobacter Pylori-Related Non-Hodgkin Lymphoma 7 174263 -NCIT:C27763 Helicobacter Pylori-Associated Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 8 174264 -NCIT:C27764 Helicobacter Pylori-Related Carcinoma 7 174265 -NCIT:C27765 Helicobacter Pylori-Related Gastric Adenocarcinoma 8 174266 -NCIT:C45163 Borrelia Burgdoferi-Associated Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 6 174267 -NCIT:C45166 Campylobacter Jejuni-Associated Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 6 174268 -NCIT:C27766 Parasite-Related Malignant Neoplasm 5 174269 -NCIT:C27767 Parasite-Related Carcinoma 6 174270 -NCIT:C27768 Schistosoma Hematobium-Related Bladder Squamous Cell Carcinoma 7 174271 -NCIT:C39833 Schistosoma Hematobium-Related Bladder Verrucous Carcinoma 8 174272 -NCIT:C27769 Opisthorchis Viverrini-Related Cholangiocarcinoma 7 174273 -NCIT:C27225 Environment-Related Neoplasm 3 174274 -NCIT:C4992 Environment-Related Malignant Neoplasm 4 174275 -NCIT:C27776 Solar Radiation-Related Malignant Neoplasm 5 174276 -NCIT:C27920 Solar Radiation-Related Cutaneous Melanoma 6 174277 -NCIT:C27921 Solar Radiation-Related Skin Squamous Cell Carcinoma 6 174278 -NCIT:C27922 Aflatoxins-Related Hepatocellular Carcinoma 5 174279 -NCIT:C27236 Tobacco-Related Carcinoma 3 174280 -NCIT:C27772 Cigarette Smoking-Related Carcinoma 4 174281 -NCIT:C27773 Tobacco Chewing-Related Carcinoma 4 174282 -NCIT:C27771 Old Burn Scar-Related Neoplasm 3 174283 -NCIT:C27918 Old Burn Scar-Related Skin Squamous Cell Carcinoma 4 174284 -NCIT:C27919 Old Burn Scar-Related Cutaneous Melanoma 4 174285 -NCIT:C27927 Alcohol-Related Carcinoma 3 174286 -NCIT:C27924 Alcohol-Related Hepatocellular Carcinoma 4 174287 -NCIT:C27928 Alcohol-Related Esophageal Squamous Cell Carcinoma 4 174288 -NCIT:C27929 Alcohol-Related Laryngeal Carcinoma 4 174289 -NCIT:C27935 Occupational Neoplasm 3 174290 -NCIT:C4993 Occupational Malignant Neoplasm 4 174291 -NCIT:C27774 Asbestos-Related Malignant Neoplasm 5 174292 -NCIT:C27925 Asbestos-Related Lung Carcinoma 6 174293 -NCIT:C27926 Asbestos-Related Malignant Mesothelioma 6 174294 -NCIT:C27775 Aromatic Dyes-Related Malignant Neoplasm 5 174295 -NCIT:C27930 Ionizing Radiation-Related Malignant Neoplasm 5 174296 -NCIT:C27931 Benzene-Related Acute Myeloid Leukemia 5 174297 -NCIT:C27936 Immunodeficiency-Related Neoplasm 3 174298 -NCIT:C27770 Immunodeficiency-Related Malignant Neoplasm 4 174299 -NCIT:C150678 Methotrexate-Associated Lymphoma 5 174300 -NCIT:C7252 Methotrexate-Associated Peripheral T-Cell Lymphoma 6 174301 -NCIT:C7253 Methotrexate-Associated Diffuse Large B-Cell Lymphoma 6 174302 -NCIT:C7254 Methotrexate-Associated Follicular Lymphoma 6 174303 -NCIT:C7255 Methotrexate-Related Burkitt Lymphoma 6 174304 -NCIT:C7256 Methotrexate-Associated Hodgkin Lymphoma 6 174305 -NCIT:C186658 Immunodeficiency-Related Central Nervous System Lymphoma 5 174306 -NCIT:C8284 AIDS-Related Primary Central Nervous System Lymphoma 6 174307 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 7 174308 -NCIT:C27632 Transplant-Related Malignant Neoplasm 5 174309 -NCIT:C27633 Transplant-Related Carcinoma 6 174310 -NCIT:C154700 Transplant-Related Squamous Cell Carcinoma 7 174311 -NCIT:C27636 Transplant-Related Skin Squamous Cell Carcinoma 8 174312 -NCIT:C27634 Transplant-Related Bladder Urothelial Carcinoma 7 174313 -NCIT:C27635 Transplant-Related Hepatocellular Carcinoma 7 174314 -NCIT:C27637 Transplant-Related Lung Carcinoma 7 174315 -NCIT:C27638 Transplant-Related Renal Cell Carcinoma 7 174316 -NCIT:C27639 Transplant-Related Hematologic Malignancy 6 174317 -NCIT:C27695 EBV-Related Clonal Post-Transplant Lymphoproliferative Disorder 7 174318 -NCIT:C7239 Hodgkin-Like Post-Transplant Lymphoproliferative Disorder 8 174319 -NCIT:C7243 Classic Hodgkin Lymphoma Type Post-Transplant Lymphoproliferative Disorder 8 174320 -NCIT:C7233 Monomorphic Post-Transplant Lymphoproliferative Disorder 7 174321 -NCIT:C157474 Recurrent Monomorphic Post-Transplant Lymphoproliferative Disorder 8 174322 -NCIT:C157475 Refractory Monomorphic Post-Transplant Lymphoproliferative Disorder 8 174323 -NCIT:C7237 Monomorphic B-Cell Post-Transplant Lymphoproliferative Disorder 8 174324 -NCIT:C7240 Plasma Cell Post-Transplant Lymphoproliferative Disorder 9 174325 -NCIT:C7241 Plasmacytoma-Like Post-Transplant Lymphoproliferative Disorder 10 174326 -NCIT:C7242 Plasma Cell Myeloma Post-Transplant Lymphoproliferative Disorder 10 174327 -NCIT:C7244 Burkitt Lymphoma Post-Transplant Lymphoproliferative Disorder 9 174328 -NCIT:C7245 Burkitt-Like Lymphoma Post-Transplant Lymphoproliferative Disorder 10 174329 -NCIT:C7246 Diffuse Large B-Cell Lymphoma Post-Transplant Lymphoproliferative Disorder 9 174330 -NCIT:C7247 Anaplastic Lymphoma Post-Transplant Lymphoproliferative Disorder 10 174331 -NCIT:C7248 Centroblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 10 174332 -NCIT:C7249 Immunoblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 10 174333 -NCIT:C7238 Monomorphic T/NK-Cell Post-Transplant Lymphoproliferative Disorder 8 174334 -NCIT:C27640 Transplant-Related Kaposi Sarcoma 6 174335 -NCIT:C27915 Immunodeficiency-Related Burkitt Lymphoma 5 174336 -NCIT:C7244 Burkitt Lymphoma Post-Transplant Lymphoproliferative Disorder 6 174337 -NCIT:C7245 Burkitt-Like Lymphoma Post-Transplant Lymphoproliferative Disorder 7 174338 -NCIT:C7255 Methotrexate-Related Burkitt Lymphoma 6 174339 -NCIT:C8286 AIDS-Related Burkitt Lymphoma 6 174340 -NCIT:C27857 AIDS-Related Burkitt Lymphoma with Plasmacytoid Differentiation 7 174341 -NCIT:C39578 Autoimmune Lymphoproliferative Syndrome-Related Lymphoma 5 174342 -NCIT:C4046 AIDS-Related Malignant Neoplasm 5 174343 -NCIT:C27700 AIDS-Related Carcinoma 6 174344 -NCIT:C7432 AIDS-Related Cervical Carcinoma 7 174345 -NCIT:C9278 AIDS-Related Anal Carcinoma 7 174346 -NCIT:C133095 AIDS-Related Anal Canal Carcinoma 8 174347 -NCIT:C27282 Stage 0 AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 174348 -NCIT:C27283 Stage I AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 174349 -NCIT:C27284 Stage II AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 174350 -NCIT:C27285 Stage III AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 174351 -NCIT:C27286 Stage IV AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 174352 -NCIT:C9249 Recurrent AIDS-Related Anal Canal Carcinoma 9 174353 -NCIT:C3471 AIDS-Related Lymphoma 6 174354 -NCIT:C5051 AIDS-Related Non-Hodgkin Lymphoma 7 174355 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 174356 -NCIT:C7212 AIDS-Related Diffuse Large B-cell Lymphoma 8 174357 -NCIT:C27858 AIDS-Related Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 9 174358 -NCIT:C27859 AIDS-Related Plasmablastic Lymphoma 9 174359 -NCIT:C38160 AIDS-Related Plasmablastic Lymphoma of Mucosa Site 10 174360 -NCIT:C9016 AIDS-Related Plasmablastic Lymphoma of the Oral Mucosa 11 174361 -NCIT:C8285 AIDS-Related Immunoblastic Lymphoma 9 174362 -NCIT:C9017 AIDS-Related Primary Effusion Lymphoma 9 174363 -NCIT:C7434 AIDS-Related Non-Hodgkin Lymphoma of the Cervix 8 174364 -NCIT:C7465 AIDS-Related Anal Non-Hodgkin Lymphoma 8 174365 -NCIT:C8286 AIDS-Related Burkitt Lymphoma 8 174366 -NCIT:C27857 AIDS-Related Burkitt Lymphoma with Plasmacytoid Differentiation 9 174367 -NCIT:C8298 AIDS-Related Lymphoblastic Lymphoma 8 174368 -NCIT:C8284 AIDS-Related Primary Central Nervous System Lymphoma 7 174369 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 174370 -NCIT:C9279 AIDS-Related Hodgkin Lymphoma 7 174371 -NCIT:C94797 Ann Arbor Stage I AIDS-Related Lymphoma 7 174372 -NCIT:C94798 Ann Arbor Stage II AIDS-Related Lymphoma 7 174373 -NCIT:C94799 Ann Arbor Stage III AIDS-Related Lymphoma 7 174374 -NCIT:C94800 Ann Arbor Stage IV AIDS-Related Lymphoma 7 174375 -NCIT:C3992 AIDS-Related Kaposi Sarcoma 6 174376 -NCIT:C5624 AIDS-Related Gastric Kaposi Sarcoma 7 174377 -NCIT:C7433 AIDS-Related Cervical Kaposi Sarcoma 7 174378 -NCIT:C5047 AIDS-Related Malignant Anal Neoplasm 6 174379 -NCIT:C7465 AIDS-Related Anal Non-Hodgkin Lymphoma 7 174380 -NCIT:C9278 AIDS-Related Anal Carcinoma 7 174381 -NCIT:C133095 AIDS-Related Anal Canal Carcinoma 8 174382 -NCIT:C27282 Stage 0 AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 174383 -NCIT:C27283 Stage I AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 174384 -NCIT:C27284 Stage II AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 174385 -NCIT:C27285 Stage III AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 174386 -NCIT:C27286 Stage IV AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 174387 -NCIT:C9249 Recurrent AIDS-Related Anal Canal Carcinoma 9 174388 -NCIT:C5052 AIDS-Related Malignant Cervical Neoplasm 6 174389 -NCIT:C7432 AIDS-Related Cervical Carcinoma 7 174390 -NCIT:C7433 AIDS-Related Cervical Kaposi Sarcoma 7 174391 -NCIT:C7434 AIDS-Related Non-Hodgkin Lymphoma of the Cervix 7 174392 -NCIT:C7232 Neoplastic Post-Transplant Lymphoproliferative Disorder 4 174393 -NCIT:C188179 Refractory Neoplastic Post-Transplant Lymphoproliferative Disorder 5 174394 -NCIT:C157475 Refractory Monomorphic Post-Transplant Lymphoproliferative Disorder 6 174395 -NCIT:C157477 Refractory Polymorphic Post-Transplant Lymphoproliferative Disorder 6 174396 -NCIT:C188180 Recurrent Neoplastic Post-Transplant Lymphoproliferative Disorder 5 174397 -NCIT:C157474 Recurrent Monomorphic Post-Transplant Lymphoproliferative Disorder 6 174398 -NCIT:C157476 Recurrent Polymorphic Post-Transplant Lymphoproliferative Disorder 6 174399 -NCIT:C27695 EBV-Related Clonal Post-Transplant Lymphoproliferative Disorder 5 174400 -NCIT:C7239 Hodgkin-Like Post-Transplant Lymphoproliferative Disorder 6 174401 -NCIT:C7243 Classic Hodgkin Lymphoma Type Post-Transplant Lymphoproliferative Disorder 6 174402 -NCIT:C7183 Polymorphic Post-Transplant Lymphoproliferative Disorder 5 174403 -NCIT:C157476 Recurrent Polymorphic Post-Transplant Lymphoproliferative Disorder 6 174404 -NCIT:C157477 Refractory Polymorphic Post-Transplant Lymphoproliferative Disorder 6 174405 -NCIT:C7233 Monomorphic Post-Transplant Lymphoproliferative Disorder 5 174406 -NCIT:C157474 Recurrent Monomorphic Post-Transplant Lymphoproliferative Disorder 6 174407 -NCIT:C157475 Refractory Monomorphic Post-Transplant Lymphoproliferative Disorder 6 174408 -NCIT:C7237 Monomorphic B-Cell Post-Transplant Lymphoproliferative Disorder 6 174409 -NCIT:C7240 Plasma Cell Post-Transplant Lymphoproliferative Disorder 7 174410 -NCIT:C7241 Plasmacytoma-Like Post-Transplant Lymphoproliferative Disorder 8 174411 -NCIT:C7242 Plasma Cell Myeloma Post-Transplant Lymphoproliferative Disorder 8 174412 -NCIT:C7244 Burkitt Lymphoma Post-Transplant Lymphoproliferative Disorder 7 174413 -NCIT:C7245 Burkitt-Like Lymphoma Post-Transplant Lymphoproliferative Disorder 8 174414 -NCIT:C7246 Diffuse Large B-Cell Lymphoma Post-Transplant Lymphoproliferative Disorder 7 174415 -NCIT:C7247 Anaplastic Lymphoma Post-Transplant Lymphoproliferative Disorder 8 174416 -NCIT:C7248 Centroblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 8 174417 -NCIT:C7249 Immunoblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 8 174418 -NCIT:C7238 Monomorphic T/NK-Cell Post-Transplant Lymphoproliferative Disorder 6 174419 -NCIT:C3265 Radiation-Related Neoplasm 3 174420 -NCIT:C27209 Radiation-Related Malignant Neoplasm 4 174421 -NCIT:C26814 Radiation-Related Leukemia 5 174422 -NCIT:C27776 Solar Radiation-Related Malignant Neoplasm 5 174423 -NCIT:C27920 Solar Radiation-Related Cutaneous Melanoma 6 174424 -NCIT:C27921 Solar Radiation-Related Skin Squamous Cell Carcinoma 6 174425 -NCIT:C27930 Ionizing Radiation-Related Malignant Neoplasm 5 174426 -NCIT:C93125 Radiation-Related Sarcoma 5 174427 -NCIT:C27513 Radiation-Related Angiosarcoma 6 174428 -NCIT:C27719 Skin Radiation-Related Angiosarcoma 7 174429 -NCIT:C53706 Radiation-Related Osteosarcoma 6 174430 -NCIT:C5291 Radiation-Induced Intracranial Meningioma 4 174431 -NCIT:C3487 Therapy-Related Neoplasm 3 174432 -NCIT:C4969 Therapy-Related Malignant Neoplasm 4 174433 -NCIT:C150678 Methotrexate-Associated Lymphoma 5 174434 -NCIT:C7252 Methotrexate-Associated Peripheral T-Cell Lymphoma 6 174435 -NCIT:C7253 Methotrexate-Associated Diffuse Large B-Cell Lymphoma 6 174436 -NCIT:C7254 Methotrexate-Associated Follicular Lymphoma 6 174437 -NCIT:C7255 Methotrexate-Related Burkitt Lymphoma 6 174438 -NCIT:C7256 Methotrexate-Associated Hodgkin Lymphoma 6 174439 -NCIT:C27632 Transplant-Related Malignant Neoplasm 5 174440 -NCIT:C27633 Transplant-Related Carcinoma 6 174441 -NCIT:C154700 Transplant-Related Squamous Cell Carcinoma 7 174442 -NCIT:C27636 Transplant-Related Skin Squamous Cell Carcinoma 8 174443 -NCIT:C27634 Transplant-Related Bladder Urothelial Carcinoma 7 174444 -NCIT:C27635 Transplant-Related Hepatocellular Carcinoma 7 174445 -NCIT:C27637 Transplant-Related Lung Carcinoma 7 174446 -NCIT:C27638 Transplant-Related Renal Cell Carcinoma 7 174447 -NCIT:C27639 Transplant-Related Hematologic Malignancy 6 174448 -NCIT:C27695 EBV-Related Clonal Post-Transplant Lymphoproliferative Disorder 7 174449 -NCIT:C7239 Hodgkin-Like Post-Transplant Lymphoproliferative Disorder 8 174450 -NCIT:C7243 Classic Hodgkin Lymphoma Type Post-Transplant Lymphoproliferative Disorder 8 174451 -NCIT:C7233 Monomorphic Post-Transplant Lymphoproliferative Disorder 7 174452 -NCIT:C157474 Recurrent Monomorphic Post-Transplant Lymphoproliferative Disorder 8 174453 -NCIT:C157475 Refractory Monomorphic Post-Transplant Lymphoproliferative Disorder 8 174454 -NCIT:C7237 Monomorphic B-Cell Post-Transplant Lymphoproliferative Disorder 8 174455 -NCIT:C7240 Plasma Cell Post-Transplant Lymphoproliferative Disorder 9 174456 -NCIT:C7241 Plasmacytoma-Like Post-Transplant Lymphoproliferative Disorder 10 174457 -NCIT:C7242 Plasma Cell Myeloma Post-Transplant Lymphoproliferative Disorder 10 174458 -NCIT:C7244 Burkitt Lymphoma Post-Transplant Lymphoproliferative Disorder 9 174459 -NCIT:C7245 Burkitt-Like Lymphoma Post-Transplant Lymphoproliferative Disorder 10 174460 -NCIT:C7246 Diffuse Large B-Cell Lymphoma Post-Transplant Lymphoproliferative Disorder 9 174461 -NCIT:C7247 Anaplastic Lymphoma Post-Transplant Lymphoproliferative Disorder 10 174462 -NCIT:C7248 Centroblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 10 174463 -NCIT:C7249 Immunoblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 10 174464 -NCIT:C7238 Monomorphic T/NK-Cell Post-Transplant Lymphoproliferative Disorder 8 174465 -NCIT:C27640 Transplant-Related Kaposi Sarcoma 6 174466 -NCIT:C27912 Therapy-Related Myeloid Neoplasm 5 174467 -NCIT:C27722 Therapy-Related Myelodysplastic Syndrome 6 174468 -NCIT:C7642 Epipodophyllotoxin-Related Myelodysplastic Syndrome 7 174469 -NCIT:C7643 Alkylating Agent-Related Myelodysplastic Syndrome 7 174470 -NCIT:C27913 Alkylating Agent-Related Acute Myeloid Leukemia and Myelodysplastic Syndrome 6 174471 -NCIT:C27754 Alkylating Agent-Related Acute Myeloid Leukemia 7 174472 -NCIT:C7643 Alkylating Agent-Related Myelodysplastic Syndrome 7 174473 -NCIT:C82397 Therapy-Related Myelodysplastic/Myeloproliferative Neoplasm 6 174474 -NCIT:C8252 Therapy-Related Acute Myeloid Leukemia 6 174475 -NCIT:C186730 Therapy-Related Cytogenetically Normal Acute Myeloid Leukemia 7 174476 -NCIT:C27754 Alkylating Agent-Related Acute Myeloid Leukemia 7 174477 -NCIT:C27755 Topoisomerase II Inhibitor-Related Acute Myeloid Leukemia 7 174478 -NCIT:C35873 Iatrogenic Kaposi Sarcoma 5 174479 -NCIT:C9113 Kaposi Sarcoma Related to Immunosuppressive Treatment 6 174480 -NCIT:C27640 Transplant-Related Kaposi Sarcoma 7 174481 -NCIT:C80683 Therapy-Related Leukemia 5 174482 -NCIT:C80691 Chemotherapy-Related Leukemia 6 174483 -NCIT:C27754 Alkylating Agent-Related Acute Myeloid Leukemia 7 174484 -NCIT:C8252 Therapy-Related Acute Myeloid Leukemia 6 174485 -NCIT:C186730 Therapy-Related Cytogenetically Normal Acute Myeloid Leukemia 7 174486 -NCIT:C27754 Alkylating Agent-Related Acute Myeloid Leukemia 7 174487 -NCIT:C27755 Topoisomerase II Inhibitor-Related Acute Myeloid Leukemia 7 174488 -NCIT:C93125 Radiation-Related Sarcoma 5 174489 -NCIT:C27513 Radiation-Related Angiosarcoma 6 174490 -NCIT:C27719 Skin Radiation-Related Angiosarcoma 7 174491 -NCIT:C53706 Radiation-Related Osteosarcoma 6 174492 -NCIT:C7232 Neoplastic Post-Transplant Lymphoproliferative Disorder 4 174493 -NCIT:C188179 Refractory Neoplastic Post-Transplant Lymphoproliferative Disorder 5 174494 -NCIT:C157475 Refractory Monomorphic Post-Transplant Lymphoproliferative Disorder 6 174495 -NCIT:C157477 Refractory Polymorphic Post-Transplant Lymphoproliferative Disorder 6 174496 -NCIT:C188180 Recurrent Neoplastic Post-Transplant Lymphoproliferative Disorder 5 174497 -NCIT:C157474 Recurrent Monomorphic Post-Transplant Lymphoproliferative Disorder 6 174498 -NCIT:C157476 Recurrent Polymorphic Post-Transplant Lymphoproliferative Disorder 6 174499 -NCIT:C27695 EBV-Related Clonal Post-Transplant Lymphoproliferative Disorder 5 174500 -NCIT:C7239 Hodgkin-Like Post-Transplant Lymphoproliferative Disorder 6 174501 -NCIT:C7243 Classic Hodgkin Lymphoma Type Post-Transplant Lymphoproliferative Disorder 6 174502 -NCIT:C7183 Polymorphic Post-Transplant Lymphoproliferative Disorder 5 174503 -NCIT:C157476 Recurrent Polymorphic Post-Transplant Lymphoproliferative Disorder 6 174504 -NCIT:C157477 Refractory Polymorphic Post-Transplant Lymphoproliferative Disorder 6 174505 -NCIT:C7233 Monomorphic Post-Transplant Lymphoproliferative Disorder 5 174506 -NCIT:C157474 Recurrent Monomorphic Post-Transplant Lymphoproliferative Disorder 6 174507 -NCIT:C157475 Refractory Monomorphic Post-Transplant Lymphoproliferative Disorder 6 174508 -NCIT:C7237 Monomorphic B-Cell Post-Transplant Lymphoproliferative Disorder 6 174509 -NCIT:C7240 Plasma Cell Post-Transplant Lymphoproliferative Disorder 7 174510 -NCIT:C7241 Plasmacytoma-Like Post-Transplant Lymphoproliferative Disorder 8 174511 -NCIT:C7242 Plasma Cell Myeloma Post-Transplant Lymphoproliferative Disorder 8 174512 -NCIT:C7244 Burkitt Lymphoma Post-Transplant Lymphoproliferative Disorder 7 174513 -NCIT:C7245 Burkitt-Like Lymphoma Post-Transplant Lymphoproliferative Disorder 8 174514 -NCIT:C7246 Diffuse Large B-Cell Lymphoma Post-Transplant Lymphoproliferative Disorder 7 174515 -NCIT:C7247 Anaplastic Lymphoma Post-Transplant Lymphoproliferative Disorder 8 174516 -NCIT:C7248 Centroblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 8 174517 -NCIT:C7249 Immunoblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 8 174518 -NCIT:C7238 Monomorphic T/NK-Cell Post-Transplant Lymphoproliferative Disorder 6 174519 -NCIT:C3261 Metastatic Neoplasm 2 174520 -NCIT:C36263 Metastatic Malignant Neoplasm 3 174521 -NCIT:C114831 Metastatic Malignant Neoplasm in the Soft Tissues 4 174522 -NCIT:C132881 Prostate Carcinoma Metastatic in the Soft Tissue 5 174523 -NCIT:C127155 Metastatic Malignant Solid Neoplasm 4 174524 -NCIT:C129707 Advanced Malignant Solid Neoplasm 5 174525 -NCIT:C157335 Advanced Extracranial Malignant Solid Neoplasm 6 174526 -NCIT:C187210 Advanced Childhood Malignant Solid Neoplasm 6 174527 -NCIT:C133093 Locally Advanced Malignant Solid Neoplasm 5 174528 -NCIT:C157334 Metastatic Extracranial Malignant Solid Neoplasm 5 174529 -NCIT:C157335 Advanced Extracranial Malignant Solid Neoplasm 6 174530 -NCIT:C161019 Oligometastatic Malignant Solid Neoplasm 5 174531 -NCIT:C132854 Metastatic Malignant Germ Cell Tumor 4 174532 -NCIT:C170957 Metastatic Platinum-Resistant Malignant Germ Cell Tumor 5 174533 -NCIT:C170958 Advanced Platinum-Resistant Malignant Germ Cell Tumor 6 174534 -NCIT:C170967 Advanced Malignant Germ Cell Tumor 5 174535 -NCIT:C170958 Advanced Platinum-Resistant Malignant Germ Cell Tumor 6 174536 -NCIT:C187316 Advanced Malignant Testicular Germ Cell Tumor 6 174537 -NCIT:C177770 Metastatic Malignant Nongerminomatous Germ Cell Tumor 5 174538 -NCIT:C25771 Metastatic Malignant Testicular Germ Cell Tumor 5 174539 -NCIT:C187316 Advanced Malignant Testicular Germ Cell Tumor 6 174540 -NCIT:C146858 Metastatic Epithelioid Hemangioendothelioma 4 174541 -NCIT:C146857 Locally Advanced Epithelioid Hemangioendothelioma 5 174542 -NCIT:C168721 Advanced Epithelioid Hemangioendothelioma 5 174543 -NCIT:C150597 Metastatic Malignant Neoplasm in the Viscera 4 174544 -NCIT:C152076 Metastatic Sarcoma 4 174545 -NCIT:C152074 Metastatic Unresectable Sarcoma 5 174546 -NCIT:C153477 Locally Advanced Unresectable Sarcoma 6 174547 -NCIT:C153475 Locally Advanced Unresectable Bone Sarcoma 7 174548 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 8 174549 -NCIT:C153476 Locally Advanced Unresectable Soft Tissue Sarcoma 7 174550 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 8 174551 -NCIT:C153069 Metastatic Soft Tissue Sarcoma 5 174552 -NCIT:C150738 Metastatic Gastrointestinal Stromal Tumor 6 174553 -NCIT:C150739 Locally Advanced Gastrointestinal Stromal Tumor 7 174554 -NCIT:C173502 Advanced Gastrointestinal Stromal Tumor 7 174555 -NCIT:C153066 Locally Advanced Soft Tissue Sarcoma 6 174556 -NCIT:C150739 Locally Advanced Gastrointestinal Stromal Tumor 7 174557 -NCIT:C153476 Locally Advanced Unresectable Soft Tissue Sarcoma 7 174558 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 8 174559 -NCIT:C160919 Locally Advanced Undifferentiated Pleomorphic Sarcoma 7 174560 -NCIT:C164076 Locally Advanced Alveolar Soft Part Sarcoma 7 174561 -NCIT:C166415 Locally Advanced Rhabdomyosarcoma 7 174562 -NCIT:C167378 Locally Advanced Epithelioid Sarcoma 7 174563 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 7 174564 -NCIT:C171399 Locally Advanced Synovial Sarcoma 7 174565 -NCIT:C180875 Locally Advanced Desmoplastic Small Round Cell Tumor 7 174566 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 7 174567 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 174568 -NCIT:C156071 Metastatic Adult Soft Tissue Sarcoma 6 174569 -NCIT:C156475 Metastatic Kaposi Sarcoma 6 174570 -NCIT:C156476 Advanced Kaposi Sarcoma 7 174571 -NCIT:C161585 Metastatic Clear Cell Sarcoma of Soft Tissue 6 174572 -NCIT:C161586 Advanced Clear Cell Sarcoma of Soft Tissue 7 174573 -NCIT:C162194 Advanced Soft Tissue Sarcoma 6 174574 -NCIT:C153184 Advanced Synovial Sarcoma 7 174575 -NCIT:C156476 Advanced Kaposi Sarcoma 7 174576 -NCIT:C161586 Advanced Clear Cell Sarcoma of Soft Tissue 7 174577 -NCIT:C164246 Advanced Malignant PEComa 7 174578 -NCIT:C165781 Advanced Undifferentiated Pleomorphic Sarcoma 7 174579 -NCIT:C167380 Advanced Epithelioid Sarcoma 7 174580 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 7 174581 -NCIT:C171304 Advanced Myxofibrosarcoma 7 174582 -NCIT:C173502 Advanced Gastrointestinal Stromal Tumor 7 174583 -NCIT:C188198 Advanced Alveolar Soft Part Sarcoma 7 174584 -NCIT:C164245 Metastatic Malignant PEComa 6 174585 -NCIT:C164246 Advanced Malignant PEComa 7 174586 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 7 174587 -NCIT:C166414 Metastatic Rhabdomyosarcoma 6 174588 -NCIT:C166415 Locally Advanced Rhabdomyosarcoma 7 174589 -NCIT:C183250 Metastatic Embryonal Rhabdomyosarcoma 7 174590 -NCIT:C168670 Metastatic Myxofibrosarcoma 6 174591 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 7 174592 -NCIT:C171304 Advanced Myxofibrosarcoma 7 174593 -NCIT:C168725 Metastatic Soft Tissue Leiomyosarcoma 6 174594 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 7 174595 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 7 174596 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 174597 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 7 174598 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 174599 -NCIT:C170827 Metastatic Desmoplastic Small Round Cell Tumor 6 174600 -NCIT:C180875 Locally Advanced Desmoplastic Small Round Cell Tumor 7 174601 -NCIT:C190009 Metastatic Uterine Corpus Sarcoma 6 174602 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 7 174603 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 174604 -NCIT:C4926 Metastatic Undifferentiated Pleomorphic Sarcoma 6 174605 -NCIT:C160919 Locally Advanced Undifferentiated Pleomorphic Sarcoma 7 174606 -NCIT:C165781 Advanced Undifferentiated Pleomorphic Sarcoma 7 174607 -NCIT:C8066 Metastatic Childhood Soft Tissue Sarcoma 6 174608 -NCIT:C8796 Metastatic Alveolar Soft Part Sarcoma 6 174609 -NCIT:C164076 Locally Advanced Alveolar Soft Part Sarcoma 7 174610 -NCIT:C188198 Advanced Alveolar Soft Part Sarcoma 7 174611 -NCIT:C8799 Metastatic Epithelioid Sarcoma 6 174612 -NCIT:C167378 Locally Advanced Epithelioid Sarcoma 7 174613 -NCIT:C167380 Advanced Epithelioid Sarcoma 7 174614 -NCIT:C8801 Metastatic Extraskeletal Ewing Sarcoma 6 174615 -NCIT:C8804 Metastatic Extraskeletal Myxoid Chondrosarcoma 6 174616 -NCIT:C8808 Metastatic Extraskeletal Osteosarcoma 6 174617 -NCIT:C8825 Metastatic Synovial Sarcoma 6 174618 -NCIT:C153184 Advanced Synovial Sarcoma 7 174619 -NCIT:C171399 Locally Advanced Synovial Sarcoma 7 174620 -NCIT:C153071 Locally Advanced Sarcoma 5 174621 -NCIT:C146856 Locally Advanced Angiosarcoma 6 174622 -NCIT:C153066 Locally Advanced Soft Tissue Sarcoma 6 174623 -NCIT:C150739 Locally Advanced Gastrointestinal Stromal Tumor 7 174624 -NCIT:C153476 Locally Advanced Unresectable Soft Tissue Sarcoma 7 174625 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 8 174626 -NCIT:C160919 Locally Advanced Undifferentiated Pleomorphic Sarcoma 7 174627 -NCIT:C164076 Locally Advanced Alveolar Soft Part Sarcoma 7 174628 -NCIT:C166415 Locally Advanced Rhabdomyosarcoma 7 174629 -NCIT:C167378 Locally Advanced Epithelioid Sarcoma 7 174630 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 7 174631 -NCIT:C171399 Locally Advanced Synovial Sarcoma 7 174632 -NCIT:C180875 Locally Advanced Desmoplastic Small Round Cell Tumor 7 174633 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 7 174634 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 174635 -NCIT:C153070 Locally Advanced Bone Sarcoma 6 174636 -NCIT:C153475 Locally Advanced Unresectable Bone Sarcoma 7 174637 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 8 174638 -NCIT:C153477 Locally Advanced Unresectable Sarcoma 6 174639 -NCIT:C153475 Locally Advanced Unresectable Bone Sarcoma 7 174640 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 8 174641 -NCIT:C153476 Locally Advanced Unresectable Soft Tissue Sarcoma 7 174642 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 8 174643 -NCIT:C160916 Locally Advanced Liposarcoma 6 174644 -NCIT:C164071 Locally Advanced Dedifferentiated Liposarcoma 7 174645 -NCIT:C160917 Locally Advanced Leiomyosarcoma 6 174646 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 7 174647 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 174648 -NCIT:C164074 Locally Advanced Malignant Peripheral Nerve Sheath Tumor 6 174649 -NCIT:C164080 Locally Advanced Ewing Sarcoma 6 174650 -NCIT:C168668 Locally Advanced High Grade Sarcoma 6 174651 -NCIT:C170953 Locally Advanced Chondrosarcoma 6 174652 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 7 174653 -NCIT:C171317 Locally Advanced Fibrosarcoma 6 174654 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 7 174655 -NCIT:C175665 Locally Advanced Osteosarcoma 6 174656 -NCIT:C153073 Metastatic Bone Sarcoma 5 174657 -NCIT:C153070 Locally Advanced Bone Sarcoma 6 174658 -NCIT:C153475 Locally Advanced Unresectable Bone Sarcoma 7 174659 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 8 174660 -NCIT:C162762 Advanced Bone Sarcoma 6 174661 -NCIT:C171072 Metastatic Primary Central Chondrosarcoma 6 174662 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 7 174663 -NCIT:C38157 Metachronous Osteosarcoma 6 174664 -NCIT:C6621 Metastatic Bone Ewing Sarcoma 6 174665 -NCIT:C153185 Advanced Sarcoma 5 174666 -NCIT:C155649 Advanced Sarcoma of the Extremity 6 174667 -NCIT:C162194 Advanced Soft Tissue Sarcoma 6 174668 -NCIT:C153184 Advanced Synovial Sarcoma 7 174669 -NCIT:C156476 Advanced Kaposi Sarcoma 7 174670 -NCIT:C161586 Advanced Clear Cell Sarcoma of Soft Tissue 7 174671 -NCIT:C164246 Advanced Malignant PEComa 7 174672 -NCIT:C165781 Advanced Undifferentiated Pleomorphic Sarcoma 7 174673 -NCIT:C167380 Advanced Epithelioid Sarcoma 7 174674 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 7 174675 -NCIT:C171304 Advanced Myxofibrosarcoma 7 174676 -NCIT:C173502 Advanced Gastrointestinal Stromal Tumor 7 174677 -NCIT:C188198 Advanced Alveolar Soft Part Sarcoma 7 174678 -NCIT:C162762 Advanced Bone Sarcoma 6 174679 -NCIT:C165780 Advanced Leiomyosarcoma 6 174680 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 7 174681 -NCIT:C168701 Advanced Liposarcoma 6 174682 -NCIT:C162763 Advanced Myxoid Liposarcoma 7 174683 -NCIT:C168715 Advanced Dedifferentiated Liposarcoma 7 174684 -NCIT:C182026 Advanced Pleomorphic Liposarcoma 7 174685 -NCIT:C168714 Advanced Malignant Peripheral Nerve Sheath Tumor 6 174686 -NCIT:C168716 Advanced Fibrosarcoma 6 174687 -NCIT:C171304 Advanced Myxofibrosarcoma 7 174688 -NCIT:C168720 Advanced Angiosarcoma 6 174689 -NCIT:C168667 Metastatic High Grade Sarcoma 5 174690 -NCIT:C168668 Locally Advanced High Grade Sarcoma 6 174691 -NCIT:C179657 Metastatic Sarcoma in the Peritoneum 5 174692 -NCIT:C179656 Peritoneal Sarcomatosis 6 174693 -NCIT:C7781 Metastatic Osteosarcoma 5 174694 -NCIT:C175665 Locally Advanced Osteosarcoma 6 174695 -NCIT:C38157 Metachronous Osteosarcoma 6 174696 -NCIT:C8808 Metastatic Extraskeletal Osteosarcoma 6 174697 -NCIT:C7807 Metastatic Ewing Sarcoma 5 174698 -NCIT:C164080 Locally Advanced Ewing Sarcoma 6 174699 -NCIT:C6621 Metastatic Bone Ewing Sarcoma 6 174700 -NCIT:C8801 Metastatic Extraskeletal Ewing Sarcoma 6 174701 -NCIT:C8708 Metastatic Angiosarcoma 5 174702 -NCIT:C146856 Locally Advanced Angiosarcoma 6 174703 -NCIT:C168720 Advanced Angiosarcoma 6 174704 -NCIT:C8779 Metastatic Chondrosarcoma 5 174705 -NCIT:C170953 Locally Advanced Chondrosarcoma 6 174706 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 7 174707 -NCIT:C171072 Metastatic Primary Central Chondrosarcoma 6 174708 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 7 174709 -NCIT:C8812 Metastatic Fibrosarcoma 5 174710 -NCIT:C168670 Metastatic Myxofibrosarcoma 6 174711 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 7 174712 -NCIT:C171304 Advanced Myxofibrosarcoma 7 174713 -NCIT:C168716 Advanced Fibrosarcoma 6 174714 -NCIT:C171304 Advanced Myxofibrosarcoma 7 174715 -NCIT:C171317 Locally Advanced Fibrosarcoma 6 174716 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 7 174717 -NCIT:C8813 Metastatic Leiomyosarcoma 5 174718 -NCIT:C160917 Locally Advanced Leiomyosarcoma 6 174719 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 7 174720 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 174721 -NCIT:C165780 Advanced Leiomyosarcoma 6 174722 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 7 174723 -NCIT:C168725 Metastatic Soft Tissue Leiomyosarcoma 6 174724 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 7 174725 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 7 174726 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 174727 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 7 174728 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 174729 -NCIT:C8816 Metastatic Liposarcoma 5 174730 -NCIT:C148298 Metastatic Myxoid Liposarcoma 6 174731 -NCIT:C162763 Advanced Myxoid Liposarcoma 7 174732 -NCIT:C160916 Locally Advanced Liposarcoma 6 174733 -NCIT:C164071 Locally Advanced Dedifferentiated Liposarcoma 7 174734 -NCIT:C164070 Metastatic Dedifferentiated Liposarcoma 6 174735 -NCIT:C164071 Locally Advanced Dedifferentiated Liposarcoma 7 174736 -NCIT:C168715 Advanced Dedifferentiated Liposarcoma 7 174737 -NCIT:C168701 Advanced Liposarcoma 6 174738 -NCIT:C162763 Advanced Myxoid Liposarcoma 7 174739 -NCIT:C168715 Advanced Dedifferentiated Liposarcoma 7 174740 -NCIT:C182026 Advanced Pleomorphic Liposarcoma 7 174741 -NCIT:C182025 Metastatic Pleomorphic Liposarcoma 6 174742 -NCIT:C182026 Advanced Pleomorphic Liposarcoma 7 174743 -NCIT:C8822 Metastatic Malignant Peripheral Nerve Sheath Tumor 5 174744 -NCIT:C164074 Locally Advanced Malignant Peripheral Nerve Sheath Tumor 6 174745 -NCIT:C168714 Advanced Malignant Peripheral Nerve Sheath Tumor 6 174746 -NCIT:C153279 Metastatic Unresectable Malignant Neoplasm 4 174747 -NCIT:C152074 Metastatic Unresectable Sarcoma 5 174748 -NCIT:C153477 Locally Advanced Unresectable Sarcoma 6 174749 -NCIT:C153475 Locally Advanced Unresectable Bone Sarcoma 7 174750 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 8 174751 -NCIT:C153476 Locally Advanced Unresectable Soft Tissue Sarcoma 7 174752 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 8 174753 -NCIT:C153278 Locally Advanced Unresectable Malignant Neoplasm 5 174754 -NCIT:C153477 Locally Advanced Unresectable Sarcoma 6 174755 -NCIT:C153475 Locally Advanced Unresectable Bone Sarcoma 7 174756 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 8 174757 -NCIT:C153476 Locally Advanced Unresectable Soft Tissue Sarcoma 7 174758 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 8 174759 -NCIT:C155698 Locally Advanced Unresectable Carcinoma 6 174760 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 7 174761 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 7 174762 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 7 174763 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 7 174764 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 8 174765 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 7 174766 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 8 174767 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 7 174768 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 7 174769 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 7 174770 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 7 174771 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 8 174772 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 8 174773 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 8 174774 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 8 174775 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 7 174776 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 8 174777 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 8 174778 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 7 174779 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 7 174780 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 7 174781 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 7 174782 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 7 174783 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 7 174784 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 7 174785 -NCIT:C158090 Locally Advanced Unresectable Digestive System Neuroendocrine Neoplasm 6 174786 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 6 174787 -NCIT:C153315 Metastatic Unresectable Carcinoma 5 174788 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 6 174789 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 7 174790 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 7 174791 -NCIT:C155698 Locally Advanced Unresectable Carcinoma 6 174792 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 7 174793 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 7 174794 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 7 174795 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 7 174796 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 8 174797 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 7 174798 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 8 174799 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 7 174800 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 7 174801 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 7 174802 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 7 174803 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 8 174804 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 8 174805 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 8 174806 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 8 174807 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 7 174808 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 8 174809 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 8 174810 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 7 174811 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 7 174812 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 7 174813 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 7 174814 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 7 174815 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 7 174816 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 7 174817 -NCIT:C156788 Metastatic Unresectable Basal Cell Carcinoma 6 174818 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 7 174819 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 6 174820 -NCIT:C163959 Metastatic Unresectable Pituitary Neuroendocrine Tumor 5 174821 -NCIT:C153323 Metastatic Chordoma 4 174822 -NCIT:C153324 Locally Advanced Chordoma 5 174823 -NCIT:C173333 Advanced Chordoma 5 174824 -NCIT:C154608 Recurrent Metastatic Malignant Neoplasm 4 174825 -NCIT:C151905 Recurrent Metastatic Digestive System Carcinoma 5 174826 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 6 174827 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 5 174828 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 5 174829 -NCIT:C173916 Recurrent Metastatic Malignant Neoplasm in the Leptomeninges 5 174830 -NCIT:C179179 Recurrent Pseudomyxoma Peritonei 5 174831 -NCIT:C182020 Recurrent Metastatic Melanoma 5 174832 -NCIT:C9181 Recurrent Carcinoma of Unknown Primary 5 174833 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 6 174834 -NCIT:C155852 Metastatic Malignant Pancreatic Neoplasm 4 174835 -NCIT:C156069 Metastatic Pancreatic Carcinoma 5 174836 -NCIT:C165452 Advanced Pancreatic Carcinoma 6 174837 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 7 174838 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 8 174839 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 6 174840 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 7 174841 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 8 174842 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 8 174843 -NCIT:C190770 Metastatic Pancreatic Adenosquamous Carcinoma 6 174844 -NCIT:C190771 Metastatic Pancreatic Squamous Cell Carcinoma 6 174845 -NCIT:C8933 Metastatic Pancreatic Adenocarcinoma 6 174846 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 7 174847 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 8 174848 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 8 174849 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 7 174850 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 8 174851 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 8 174852 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 8 174853 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 7 174854 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 8 174855 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 7 174856 -NCIT:C165447 Metastatic Pancreatic Neuroendocrine Neoplasm 5 174857 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 6 174858 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 7 174859 -NCIT:C156488 Metastatic Pancreatic Neuroendocrine Tumor 6 174860 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 7 174861 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 174862 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 174863 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 7 174864 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 7 174865 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 174866 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 7 174867 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 174868 -NCIT:C165448 Advanced Pancreatic Neuroendocrine Neoplasm 6 174869 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 7 174870 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 174871 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 174872 -NCIT:C155919 Metastatic Malignant Neoplasm in the Thoracic Cavity 4 174873 -NCIT:C35748 Metastatic Malignant Neoplasm in the Axilla 5 174874 -NCIT:C3577 Metastatic Malignant Neoplasm in the Lung 5 174875 -NCIT:C185321 Extramedullary Disease in Plasma Cell Myeloma Involving the Lung 6 174876 -NCIT:C27408 Metastatic Carcinoma in the Lung 6 174877 -NCIT:C153224 Colorectal Carcinoma Metastatic in the Lung 7 174878 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 8 174879 -NCIT:C36300 Breast Carcinoma Metastatic in the Lung 7 174880 -NCIT:C36307 Prostate Carcinoma Metastatic in the Lung 7 174881 -NCIT:C3578 Metastatic Malignant Neoplasm in the Mediastinum 5 174882 -NCIT:C3579 Metastatic Malignant Neoplasm in the Pleura 5 174883 -NCIT:C27384 Pleural Carcinomatosis 6 174884 -NCIT:C45762 Metastatic Malignant Neoplasm in the Pericardium 5 174885 -NCIT:C27385 Pericardial Carcinomatosis 6 174886 -NCIT:C4889 Metastatic Malignant Neoplasm in the Heart 5 174887 -NCIT:C5369 Secondary Heart Lymphoma 6 174888 -NCIT:C4903 Metastatic Malignant Neoplasm in the Thymus 5 174889 -NCIT:C8530 Metastatic Malignant Neoplasm in the Chest Wall 5 174890 -NCIT:C8527 Metastatic Malignant Neoplasm in the Sternum 6 174891 -NCIT:C156101 Metastatic Neuroblastoma 4 174892 -NCIT:C156485 Metastatic Neuroendocrine Neoplasm 4 174893 -NCIT:C147065 Metastatic Neuroendocrine Tumor 5 174894 -NCIT:C140329 Metastatic Non-Functioning Neuroendocrine Tumor 6 174895 -NCIT:C140328 Advanced Non-Functioning Neuroendocrine Tumor 7 174896 -NCIT:C154621 Advanced Neuroendocrine Tumor 6 174897 -NCIT:C140328 Advanced Non-Functioning Neuroendocrine Tumor 7 174898 -NCIT:C156487 Advanced Carcinoid Tumor 7 174899 -NCIT:C177245 Advanced Lung Carcinoid Tumor 8 174900 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 8 174901 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 174902 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 7 174903 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 174904 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 174905 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 7 174906 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 174907 -NCIT:C156488 Metastatic Pancreatic Neuroendocrine Tumor 6 174908 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 7 174909 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 174910 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 174911 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 7 174912 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 7 174913 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 174914 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 7 174915 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 174916 -NCIT:C167329 Metastatic Midgut Neuroendocrine Tumor 6 174917 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 7 174918 -NCIT:C167333 Locally Advanced Neuroendocrine Tumor 6 174919 -NCIT:C163956 Locally Advanced Pituitary Neuroendocrine Tumor 7 174920 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 7 174921 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 7 174922 -NCIT:C187328 Locally Advanced Carcinoid Tumor 7 174923 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 8 174924 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 7 174925 -NCIT:C179415 Metastatic Digestive System Neuroendocrine Tumor G2 6 174926 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 7 174927 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 7 174928 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 174929 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 7 174930 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 174931 -NCIT:C4536 Metastatic Pituitary Neuroendocrine Tumor 6 174932 -NCIT:C163956 Locally Advanced Pituitary Neuroendocrine Tumor 7 174933 -NCIT:C163959 Metastatic Unresectable Pituitary Neuroendocrine Tumor 7 174934 -NCIT:C5962 Metastatic Lactotroph Pituitary Neuroendocrine Tumor 7 174935 -NCIT:C5963 Metastatic Somatotroph Pituitary Neuroendocrine Tumor 7 174936 -NCIT:C5964 Metastatic Corticotroph Pituitary Neuroendocrine Tumor 7 174937 -NCIT:C5965 Metastatic Thyrotroph Pituitary Neuroendocrine Tumor 7 174938 -NCIT:C6431 Metastatic Carcinoid Tumor 6 174939 -NCIT:C115245 Metastatic Digestive System Neuroendocrine Tumor G1 7 174940 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 8 174941 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 174942 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 8 174943 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 8 174944 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 174945 -NCIT:C156487 Advanced Carcinoid Tumor 7 174946 -NCIT:C177245 Advanced Lung Carcinoid Tumor 8 174947 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 8 174948 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 174949 -NCIT:C177243 Metastatic Lung Carcinoid Tumor 7 174950 -NCIT:C177245 Advanced Lung Carcinoid Tumor 8 174951 -NCIT:C187328 Locally Advanced Carcinoid Tumor 7 174952 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 8 174953 -NCIT:C5171 Metastatic Breast Neuroendocrine Tumor G1 7 174954 -NCIT:C155869 Metastatic Neuroendocrine Carcinoma 5 174955 -NCIT:C155870 Advanced Neuroendocrine Carcinoma 6 174956 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 7 174957 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 174958 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 174959 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 7 174960 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 174961 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 174962 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 174963 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 7 174964 -NCIT:C165300 Advanced Merkel Cell Carcinoma 7 174965 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 7 174966 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 174967 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 174968 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 174969 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 6 174970 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 7 174971 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 174972 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 174973 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 174974 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 7 174975 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 174976 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 174977 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 174978 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 7 174979 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 174980 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 174981 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 174982 -NCIT:C158908 Metastatic Large Cell Neuroendocrine Carcinoma 6 174983 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 7 174984 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 7 174985 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 174986 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 7 174987 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 174988 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 174989 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 7 174990 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 174991 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 174992 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 174993 -NCIT:C158909 Locally Advanced Neuroendocrine Carcinoma 6 174994 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 174995 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 174996 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 7 174997 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 174998 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 7 174999 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 7 175000 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 175001 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 7 175002 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 7 175003 -NCIT:C158911 Metastatic Small Cell Neuroendocrine Carcinoma 6 175004 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 7 175005 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 175006 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 175007 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 7 175008 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 175009 -NCIT:C191852 Metastatic Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 175010 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 175011 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 175012 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 8 175013 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 175014 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 6 175015 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 7 175016 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 7 175017 -NCIT:C162572 Metastatic Merkel Cell Carcinoma 6 175018 -NCIT:C165300 Advanced Merkel Cell Carcinoma 7 175019 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 7 175020 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 7 175021 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 6 175022 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 7 175023 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 7 175024 -NCIT:C163975 Neuroendocrine Carcinoma of Unknown Primary 6 175025 -NCIT:C156486 Advanced Neuroendocrine Neoplasm 5 175026 -NCIT:C154621 Advanced Neuroendocrine Tumor 6 175027 -NCIT:C140328 Advanced Non-Functioning Neuroendocrine Tumor 7 175028 -NCIT:C156487 Advanced Carcinoid Tumor 7 175029 -NCIT:C177245 Advanced Lung Carcinoid Tumor 8 175030 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 8 175031 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 175032 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 7 175033 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 175034 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 175035 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 7 175036 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 175037 -NCIT:C155870 Advanced Neuroendocrine Carcinoma 6 175038 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 7 175039 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 175040 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 175041 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 7 175042 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 175043 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 175044 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 175045 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 7 175046 -NCIT:C165300 Advanced Merkel Cell Carcinoma 7 175047 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 7 175048 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 175049 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 175050 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 175051 -NCIT:C158089 Advanced Digestive System Neuroendocrine Neoplasm 6 175052 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 7 175053 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 175054 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 175055 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 7 175056 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 175057 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 175058 -NCIT:C165448 Advanced Pancreatic Neuroendocrine Neoplasm 7 175059 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 8 175060 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 175061 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 175062 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 7 175063 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 175064 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 7 175065 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 175066 -NCIT:C160852 Advanced Paraganglioma 6 175067 -NCIT:C160853 Advanced Adrenal Gland Pheochromocytoma 7 175068 -NCIT:C165446 Advanced Lung Neuroendocrine Neoplasm 6 175069 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 175070 -NCIT:C177245 Advanced Lung Carcinoid Tumor 7 175071 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 7 175072 -NCIT:C180871 Advanced Thymic Neuroendocrine Neoplasm 6 175073 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 6 175074 -NCIT:C156492 Metastatic Digestive System Neuroendocrine Neoplasm 5 175075 -NCIT:C115245 Metastatic Digestive System Neuroendocrine Tumor G1 6 175076 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 7 175077 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 175078 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 7 175079 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 7 175080 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 175081 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 6 175082 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 7 175083 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 175084 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 175085 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 175086 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 7 175087 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 175088 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 175089 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 175090 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 7 175091 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 175092 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 175093 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 175094 -NCIT:C158089 Advanced Digestive System Neuroendocrine Neoplasm 6 175095 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 7 175096 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 175097 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 175098 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 7 175099 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 175100 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 175101 -NCIT:C165448 Advanced Pancreatic Neuroendocrine Neoplasm 7 175102 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 8 175103 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 175104 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 175105 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 7 175106 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 175107 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 7 175108 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 175109 -NCIT:C165447 Metastatic Pancreatic Neuroendocrine Neoplasm 6 175110 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 7 175111 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 175112 -NCIT:C156488 Metastatic Pancreatic Neuroendocrine Tumor 7 175113 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 8 175114 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 175115 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 175116 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 8 175117 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 8 175118 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 175119 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 8 175120 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 175121 -NCIT:C165448 Advanced Pancreatic Neuroendocrine Neoplasm 7 175122 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 8 175123 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 175124 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 175125 -NCIT:C167329 Metastatic Midgut Neuroendocrine Tumor 6 175126 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 7 175127 -NCIT:C178271 Locally Advanced Digestive System Neuroendocrine Neoplasm 6 175128 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 175129 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 175130 -NCIT:C158090 Locally Advanced Unresectable Digestive System Neuroendocrine Neoplasm 7 175131 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 7 175132 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 7 175133 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 7 175134 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 7 175135 -NCIT:C179415 Metastatic Digestive System Neuroendocrine Tumor G2 6 175136 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 7 175137 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 7 175138 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 175139 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 7 175140 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 175141 -NCIT:C156493 Metastatic Breast Neuroendocrine Neoplasm 5 175142 -NCIT:C5171 Metastatic Breast Neuroendocrine Tumor G1 6 175143 -NCIT:C157602 Metastatic Lung Neuroendocrine Neoplasm 5 175144 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 6 175145 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 175146 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 7 175147 -NCIT:C165446 Advanced Lung Neuroendocrine Neoplasm 6 175148 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 175149 -NCIT:C177245 Advanced Lung Carcinoid Tumor 7 175150 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 7 175151 -NCIT:C176715 Locally Advanced Lung Neuroendocrine Neoplasm 6 175152 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 7 175153 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 7 175154 -NCIT:C177243 Metastatic Lung Carcinoid Tumor 6 175155 -NCIT:C177245 Advanced Lung Carcinoid Tumor 7 175156 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 6 175157 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 7 175158 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 7 175159 -NCIT:C162461 Metastatic Thymic Neuroendocrine Neoplasm 5 175160 -NCIT:C180871 Advanced Thymic Neuroendocrine Neoplasm 6 175161 -NCIT:C167332 Locally Advanced Neuroendocrine Neoplasm 5 175162 -NCIT:C133713 Locally Advanced Paraganglioma 6 175163 -NCIT:C157129 Locally Advanced Adrenal Gland Pheochromocytoma 7 175164 -NCIT:C158909 Locally Advanced Neuroendocrine Carcinoma 6 175165 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 175166 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 175167 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 7 175168 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 175169 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 7 175170 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 7 175171 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 175172 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 7 175173 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 7 175174 -NCIT:C167333 Locally Advanced Neuroendocrine Tumor 6 175175 -NCIT:C163956 Locally Advanced Pituitary Neuroendocrine Tumor 7 175176 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 7 175177 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 7 175178 -NCIT:C187328 Locally Advanced Carcinoid Tumor 7 175179 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 8 175180 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 7 175181 -NCIT:C176715 Locally Advanced Lung Neuroendocrine Neoplasm 6 175182 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 7 175183 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 7 175184 -NCIT:C178271 Locally Advanced Digestive System Neuroendocrine Neoplasm 6 175185 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 175186 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 175187 -NCIT:C158090 Locally Advanced Unresectable Digestive System Neuroendocrine Neoplasm 7 175188 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 7 175189 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 7 175190 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 7 175191 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 7 175192 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 5 175193 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 6 175194 -NCIT:C8559 Metastatic Paraganglioma 5 175195 -NCIT:C133713 Locally Advanced Paraganglioma 6 175196 -NCIT:C157129 Locally Advanced Adrenal Gland Pheochromocytoma 7 175197 -NCIT:C160852 Advanced Paraganglioma 6 175198 -NCIT:C160853 Advanced Adrenal Gland Pheochromocytoma 7 175199 -NCIT:C4219 Metastatic Extra-Adrenal Paraganglioma 6 175200 -NCIT:C3574 Metastatic Carotid Body Paraganglioma 7 175201 -NCIT:C4623 Metastatic Jugulotympanic Paraganglioma 7 175202 -NCIT:C5392 Metastatic Cardiac Paraganglioma 7 175203 -NCIT:C6413 Metastatic Intrathoracic Paravertebral Paraganglioma 7 175204 -NCIT:C6416 Metastatic Bladder Paraganglioma 7 175205 -NCIT:C4220 Metastatic Adrenal Gland Pheochromocytoma 6 175206 -NCIT:C157129 Locally Advanced Adrenal Gland Pheochromocytoma 7 175207 -NCIT:C160853 Advanced Adrenal Gland Pheochromocytoma 7 175208 -NCIT:C92184 Metastatic Adrenal Gland Composite Pheochromocytoma 7 175209 -NCIT:C156793 Metastatic Human Papillomavirus-Related Malignant Neoplasm 4 175210 -NCIT:C187051 Human Papillomavirus-Related Head and Neck Squamous Cell Carcinoma of Unknown Primary 5 175211 -NCIT:C157774 Metastatic Malignant Genitourinary System Neoplasm 4 175212 -NCIT:C146893 Metastatic Genitourinary System Carcinoma 5 175213 -NCIT:C126109 Metastatic Urothelial Carcinoma 6 175214 -NCIT:C148493 Advanced Urothelial Carcinoma 7 175215 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 175216 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 175217 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 175218 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 175219 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 175220 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 7 175221 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 175222 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 175223 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 7 175224 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 175225 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 175226 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 175227 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 175228 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 175229 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 175230 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 175231 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 175232 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 175233 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 8 175234 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 7 175235 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 175236 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 175237 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 175238 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 175239 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 175240 -NCIT:C191692 Metastatic Clear Cell (Glycogen-Rich) Urothelial Carcinoma 7 175241 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 175242 -NCIT:C191693 Metastatic Giant Cell Urothelial Carcinoma 7 175243 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 175244 -NCIT:C191694 Metastatic Lipid-Rich Urothelial Carcinoma 7 175245 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 175246 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 7 175247 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 175248 -NCIT:C191696 Metastatic Nested Urothelial Carcinoma 7 175249 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 175250 -NCIT:C191697 Metastatic Plasmacytoid Urothelial Carcinoma 7 175251 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 175252 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 7 175253 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 175254 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 7 175255 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 8 175256 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 175257 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 175258 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 8 175259 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 175260 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 175261 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 175262 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 175263 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 175264 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 175265 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 175266 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 175267 -NCIT:C153387 Metastatic Cervical Carcinoma 6 175268 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 7 175269 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 175270 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 8 175271 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 7 175272 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 8 175273 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 175274 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 175275 -NCIT:C153390 Metastatic Cervical Adenosquamous Carcinoma 7 175276 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 8 175277 -NCIT:C156294 Advanced Cervical Carcinoma 7 175278 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 175279 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 175280 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 8 175281 -NCIT:C156295 Locally Advanced Cervical Carcinoma 7 175282 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 8 175283 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 175284 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 8 175285 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 175286 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 8 175287 -NCIT:C156062 Metastatic Bladder Carcinoma 6 175288 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 7 175289 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 175290 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 175291 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 175292 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 175293 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 175294 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 175295 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 175296 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 175297 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 175298 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 8 175299 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 7 175300 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 7 175301 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 7 175302 -NCIT:C167071 Locally Advanced Bladder Carcinoma 7 175303 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 175304 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 8 175305 -NCIT:C167338 Advanced Bladder Carcinoma 7 175306 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 175307 -NCIT:C190772 Metastatic Non-Muscle Invasive Bladder Carcinoma 7 175308 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 8 175309 -NCIT:C156063 Metastatic Fallopian Tube Carcinoma 6 175310 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 7 175311 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 8 175312 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 7 175313 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 7 175314 -NCIT:C156064 Metastatic Ovarian Carcinoma 6 175315 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 7 175316 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 175317 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 175318 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 175319 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 8 175320 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 175321 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 175322 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 8 175323 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 175324 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 175325 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 175326 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 175327 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 175328 -NCIT:C165458 Advanced Ovarian Carcinoma 7 175329 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 175330 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 175331 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 175332 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 175333 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 175334 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 8 175335 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 8 175336 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 7 175337 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 175338 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 175339 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 175340 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 8 175341 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 7 175342 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 175343 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 7 175344 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 175345 -NCIT:C172234 Metastatic Ovarian Undifferentiated Carcinoma 7 175346 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 7 175347 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 8 175348 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 8 175349 -NCIT:C180333 Metastatic Microsatellite Stable Ovarian Carcinoma 7 175350 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 8 175351 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 7 175352 -NCIT:C27391 Metastatic Ovarian Small Cell Carcinoma, Hypercalcemic Type 7 175353 -NCIT:C156065 Metastatic Vaginal Carcinoma 6 175354 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 7 175355 -NCIT:C170788 Advanced Vaginal Carcinoma 7 175356 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 175357 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 8 175358 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 175359 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 175360 -NCIT:C181028 Metastatic Vaginal Adenosquamous Carcinoma 7 175361 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 8 175362 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 7 175363 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 175364 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 175365 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 7 175366 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 175367 -NCIT:C156066 Metastatic Vulvar Carcinoma 6 175368 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 7 175369 -NCIT:C170786 Advanced Vulvar Carcinoma 7 175370 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 7 175371 -NCIT:C156068 Metastatic Endometrial Carcinoma 6 175372 -NCIT:C159676 Advanced Endometrial Carcinoma 7 175373 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 8 175374 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 175375 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 175376 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 8 175377 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 7 175378 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 8 175379 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 175380 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 8 175381 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 7 175382 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 7 175383 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 8 175384 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 7 175385 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 8 175386 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 175387 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 8 175388 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 175389 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 175390 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 8 175391 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 175392 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 175393 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 8 175394 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 175395 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 8 175396 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 8 175397 -NCIT:C164143 Advanced Genitourinary System Carcinoma 6 175398 -NCIT:C148493 Advanced Urothelial Carcinoma 7 175399 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 175400 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 175401 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 175402 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 175403 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 175404 -NCIT:C156284 Advanced Prostate Carcinoma 7 175405 -NCIT:C156286 Advanced Prostate Adenocarcinoma 8 175406 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 175407 -NCIT:C156294 Advanced Cervical Carcinoma 7 175408 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 175409 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 175410 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 8 175411 -NCIT:C159676 Advanced Endometrial Carcinoma 7 175412 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 8 175413 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 175414 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 175415 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 8 175416 -NCIT:C165458 Advanced Ovarian Carcinoma 7 175417 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 175418 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 175419 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 175420 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 175421 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 175422 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 8 175423 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 8 175424 -NCIT:C167338 Advanced Bladder Carcinoma 7 175425 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 175426 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 7 175427 -NCIT:C170786 Advanced Vulvar Carcinoma 7 175428 -NCIT:C170788 Advanced Vaginal Carcinoma 7 175429 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 175430 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 8 175431 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 175432 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 175433 -NCIT:C170790 Advanced Penile Carcinoma 7 175434 -NCIT:C172617 Advanced Kidney Carcinoma 7 175435 -NCIT:C153170 Advanced Renal Cell Carcinoma 8 175436 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 175437 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 175438 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 175439 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 175440 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 175441 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 8 175442 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 175443 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 8 175444 -NCIT:C167069 Locally Advanced Genitourinary System Carcinoma 6 175445 -NCIT:C156285 Locally Advanced Prostate Carcinoma 7 175446 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 8 175447 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 175448 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 8 175449 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 175450 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 175451 -NCIT:C156295 Locally Advanced Cervical Carcinoma 7 175452 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 8 175453 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 175454 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 8 175455 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 175456 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 8 175457 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 7 175458 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 175459 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 175460 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 175461 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 175462 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 175463 -NCIT:C167071 Locally Advanced Bladder Carcinoma 7 175464 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 175465 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 8 175466 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 7 175467 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 175468 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 175469 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 175470 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 8 175471 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 7 175472 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 8 175473 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 7 175474 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 8 175475 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 175476 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 8 175477 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 7 175478 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 7 175479 -NCIT:C170789 Locally Advanced Penile Carcinoma 7 175480 -NCIT:C172618 Locally Advanced Kidney Carcinoma 7 175481 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 8 175482 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 175483 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 175484 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 175485 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 175486 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 175487 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 175488 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 8 175489 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 175490 -NCIT:C185381 Metastatic Mesonephric Adenocarcinoma 6 175491 -NCIT:C27784 Metastatic Penile Carcinoma 6 175492 -NCIT:C170789 Locally Advanced Penile Carcinoma 7 175493 -NCIT:C170790 Advanced Penile Carcinoma 7 175494 -NCIT:C182111 Metastatic Squamous Cell Carcinoma of the Penis 7 175495 -NCIT:C27806 Metastatic Kidney Carcinoma 6 175496 -NCIT:C150595 Metastatic Renal Cell Carcinoma 7 175497 -NCIT:C153170 Advanced Renal Cell Carcinoma 8 175498 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 175499 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 175500 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 175501 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 175502 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 175503 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 8 175504 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 175505 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 175506 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 8 175507 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 175508 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 175509 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 8 175510 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 175511 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 175512 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 8 175513 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 175514 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 175515 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 175516 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 175517 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 175518 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 175519 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 8 175520 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 175521 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 175522 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 8 175523 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 175524 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 175525 -NCIT:C157755 Metastatic Kidney Medullary Carcinoma 7 175526 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 8 175527 -NCIT:C163965 Metastatic Renal Pelvis Carcinoma 7 175528 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 8 175529 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 175530 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 175531 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 8 175532 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 175533 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 8 175534 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 175535 -NCIT:C172617 Advanced Kidney Carcinoma 7 175536 -NCIT:C153170 Advanced Renal Cell Carcinoma 8 175537 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 175538 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 175539 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 175540 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 175541 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 175542 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 8 175543 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 175544 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 8 175545 -NCIT:C172618 Locally Advanced Kidney Carcinoma 7 175546 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 8 175547 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 175548 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 175549 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 175550 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 175551 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 175552 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 175553 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 8 175554 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 175555 -NCIT:C27818 Metastatic Ureter Carcinoma 6 175556 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 7 175557 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 8 175558 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 8 175559 -NCIT:C27819 Metastatic Urethral Carcinoma 6 175560 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 7 175561 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 175562 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 175563 -NCIT:C8946 Metastatic Prostate Carcinoma 6 175564 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 7 175565 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 8 175566 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 8 175567 -NCIT:C161609 Double-Negative Prostate Carcinoma 8 175568 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 8 175569 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 8 175570 -NCIT:C132881 Prostate Carcinoma Metastatic in the Soft Tissue 7 175571 -NCIT:C148536 Castration-Naive Prostate Carcinoma 7 175572 -NCIT:C153336 Castration-Sensitive Prostate Carcinoma 7 175573 -NCIT:C156284 Advanced Prostate Carcinoma 7 175574 -NCIT:C156286 Advanced Prostate Adenocarcinoma 8 175575 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 175576 -NCIT:C156285 Locally Advanced Prostate Carcinoma 7 175577 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 8 175578 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 175579 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 8 175580 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 175581 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 175582 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 7 175583 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 175584 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 175585 -NCIT:C161584 Prostate Carcinoma Metastatic in the Pelvic Cavity 7 175586 -NCIT:C161587 Prostate Carcinoma Metastatic in the Lymph Nodes 7 175587 -NCIT:C171265 Oligometastatic Prostate Carcinoma 7 175588 -NCIT:C36307 Prostate Carcinoma Metastatic in the Lung 7 175589 -NCIT:C36308 Prostate Carcinoma Metastatic in the Bone 7 175590 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 7 175591 -NCIT:C156286 Advanced Prostate Adenocarcinoma 8 175592 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 175593 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 8 175594 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 175595 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 8 175596 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 175597 -NCIT:C162254 Metastatic Malignant Female Reproductive System Neoplasm 5 175598 -NCIT:C153387 Metastatic Cervical Carcinoma 6 175599 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 7 175600 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 175601 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 8 175602 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 7 175603 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 8 175604 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 175605 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 175606 -NCIT:C153390 Metastatic Cervical Adenosquamous Carcinoma 7 175607 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 8 175608 -NCIT:C156294 Advanced Cervical Carcinoma 7 175609 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 175610 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 175611 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 8 175612 -NCIT:C156295 Locally Advanced Cervical Carcinoma 7 175613 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 8 175614 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 175615 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 8 175616 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 175617 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 8 175618 -NCIT:C156063 Metastatic Fallopian Tube Carcinoma 6 175619 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 7 175620 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 8 175621 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 7 175622 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 7 175623 -NCIT:C156064 Metastatic Ovarian Carcinoma 6 175624 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 7 175625 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 175626 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 175627 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 175628 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 8 175629 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 175630 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 175631 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 8 175632 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 175633 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 175634 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 175635 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 175636 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 175637 -NCIT:C165458 Advanced Ovarian Carcinoma 7 175638 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 175639 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 175640 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 175641 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 175642 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 175643 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 8 175644 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 8 175645 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 7 175646 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 175647 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 175648 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 175649 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 8 175650 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 7 175651 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 175652 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 7 175653 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 175654 -NCIT:C172234 Metastatic Ovarian Undifferentiated Carcinoma 7 175655 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 7 175656 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 8 175657 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 8 175658 -NCIT:C180333 Metastatic Microsatellite Stable Ovarian Carcinoma 7 175659 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 8 175660 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 7 175661 -NCIT:C27391 Metastatic Ovarian Small Cell Carcinoma, Hypercalcemic Type 7 175662 -NCIT:C156065 Metastatic Vaginal Carcinoma 6 175663 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 7 175664 -NCIT:C170788 Advanced Vaginal Carcinoma 7 175665 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 175666 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 8 175667 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 175668 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 175669 -NCIT:C181028 Metastatic Vaginal Adenosquamous Carcinoma 7 175670 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 8 175671 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 7 175672 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 175673 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 175674 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 7 175675 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 175676 -NCIT:C156066 Metastatic Vulvar Carcinoma 6 175677 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 7 175678 -NCIT:C170786 Advanced Vulvar Carcinoma 7 175679 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 7 175680 -NCIT:C156068 Metastatic Endometrial Carcinoma 6 175681 -NCIT:C159676 Advanced Endometrial Carcinoma 7 175682 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 8 175683 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 175684 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 175685 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 8 175686 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 7 175687 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 8 175688 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 175689 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 8 175690 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 7 175691 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 7 175692 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 8 175693 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 7 175694 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 8 175695 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 175696 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 8 175697 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 175698 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 175699 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 8 175700 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 175701 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 175702 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 8 175703 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 175704 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 8 175705 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 8 175706 -NCIT:C167260 Advanced Malignant Female Reproductive System Neoplasm 6 175707 -NCIT:C156294 Advanced Cervical Carcinoma 7 175708 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 175709 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 175710 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 8 175711 -NCIT:C165458 Advanced Ovarian Carcinoma 7 175712 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 175713 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 175714 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 175715 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 175716 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 175717 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 8 175718 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 8 175719 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 7 175720 -NCIT:C170786 Advanced Vulvar Carcinoma 7 175721 -NCIT:C170788 Advanced Vaginal Carcinoma 7 175722 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 175723 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 8 175724 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 175725 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 175726 -NCIT:C170930 Advanced Malignant Mixed Mesodermal (Mullerian) Tumor 7 175727 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 8 175728 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 8 175729 -NCIT:C172450 Advanced Uterine Corpus Cancer 7 175730 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 8 175731 -NCIT:C159676 Advanced Endometrial Carcinoma 8 175732 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 175733 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 175734 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 175735 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 175736 -NCIT:C170460 Locally Advanced Malignant Female Reproductive System Neoplasm 6 175737 -NCIT:C156295 Locally Advanced Cervical Carcinoma 7 175738 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 8 175739 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 175740 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 8 175741 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 175742 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 8 175743 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 7 175744 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 175745 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 175746 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 175747 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 8 175748 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 7 175749 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 8 175750 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 7 175751 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 8 175752 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 175753 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 8 175754 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 7 175755 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 7 175756 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 7 175757 -NCIT:C185381 Metastatic Mesonephric Adenocarcinoma 6 175758 -NCIT:C190009 Metastatic Uterine Corpus Sarcoma 6 175759 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 7 175760 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 175761 -NCIT:C176859 Advanced Malignant Genitourinary System Neoplasm 5 175762 -NCIT:C164143 Advanced Genitourinary System Carcinoma 6 175763 -NCIT:C148493 Advanced Urothelial Carcinoma 7 175764 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 175765 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 175766 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 175767 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 175768 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 175769 -NCIT:C156284 Advanced Prostate Carcinoma 7 175770 -NCIT:C156286 Advanced Prostate Adenocarcinoma 8 175771 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 175772 -NCIT:C156294 Advanced Cervical Carcinoma 7 175773 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 175774 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 175775 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 8 175776 -NCIT:C159676 Advanced Endometrial Carcinoma 7 175777 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 8 175778 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 175779 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 175780 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 8 175781 -NCIT:C165458 Advanced Ovarian Carcinoma 7 175782 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 175783 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 175784 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 175785 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 175786 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 175787 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 8 175788 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 8 175789 -NCIT:C167338 Advanced Bladder Carcinoma 7 175790 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 175791 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 7 175792 -NCIT:C170786 Advanced Vulvar Carcinoma 7 175793 -NCIT:C170788 Advanced Vaginal Carcinoma 7 175794 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 175795 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 8 175796 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 175797 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 175798 -NCIT:C170790 Advanced Penile Carcinoma 7 175799 -NCIT:C172617 Advanced Kidney Carcinoma 7 175800 -NCIT:C153170 Advanced Renal Cell Carcinoma 8 175801 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 175802 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 175803 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 175804 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 175805 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 175806 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 8 175807 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 175808 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 8 175809 -NCIT:C167260 Advanced Malignant Female Reproductive System Neoplasm 6 175810 -NCIT:C156294 Advanced Cervical Carcinoma 7 175811 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 175812 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 175813 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 8 175814 -NCIT:C165458 Advanced Ovarian Carcinoma 7 175815 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 175816 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 175817 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 175818 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 175819 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 175820 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 8 175821 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 8 175822 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 7 175823 -NCIT:C170786 Advanced Vulvar Carcinoma 7 175824 -NCIT:C170788 Advanced Vaginal Carcinoma 7 175825 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 175826 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 8 175827 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 175828 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 175829 -NCIT:C170930 Advanced Malignant Mixed Mesodermal (Mullerian) Tumor 7 175830 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 8 175831 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 8 175832 -NCIT:C172450 Advanced Uterine Corpus Cancer 7 175833 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 8 175834 -NCIT:C159676 Advanced Endometrial Carcinoma 8 175835 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 175836 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 175837 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 175838 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 175839 -NCIT:C187316 Advanced Malignant Testicular Germ Cell Tumor 6 175840 -NCIT:C161583 Metastatic Malignant Neoplasm in the Pelvic Cavity 4 175841 -NCIT:C161584 Prostate Carcinoma Metastatic in the Pelvic Cavity 5 175842 -NCIT:C161649 Metastatic Malignant Neoplasm in the Seminal Vesicle 4 175843 -NCIT:C162255 Metastatic Malignant Digestive System Neoplasm 4 175844 -NCIT:C133839 Metastatic Digestive System Carcinoma 5 175845 -NCIT:C150577 Metastatic Gastroesophageal Junction Adenocarcinoma 6 175846 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 7 175847 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 7 175848 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 175849 -NCIT:C151904 Refractory Metastatic Digestive System Carcinoma 6 175850 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 7 175851 -NCIT:C151905 Recurrent Metastatic Digestive System Carcinoma 6 175852 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 7 175853 -NCIT:C153320 Metastatic Gastric Carcinoma 6 175854 -NCIT:C153319 Metastatic Gastric Adenocarcinoma 7 175855 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 175856 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 175857 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 175858 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 175859 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 175860 -NCIT:C165630 Metastatic Proximal Gastric Adenocarcinoma 8 175861 -NCIT:C166121 Oligometastatic Gastric Adenocarcinoma 8 175862 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 175863 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 175864 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 7 175865 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 175866 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 175867 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 175868 -NCIT:C162772 Locally Advanced Gastric Carcinoma 7 175869 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 175870 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 175871 -NCIT:C165299 Advanced Gastric Carcinoma 7 175872 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 175873 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 175874 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 175875 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 175876 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 175877 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 7 175878 -NCIT:C153358 Locally Advanced Digestive System Carcinoma 6 175879 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 7 175880 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 175881 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 175882 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 175883 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 7 175884 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 175885 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 7 175886 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 8 175887 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 175888 -NCIT:C170778 Locally Advanced Rectal Carcinoma 8 175889 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 175890 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 175891 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 175892 -NCIT:C170910 Locally Advanced Colon Carcinoma 8 175893 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 175894 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 175895 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 175896 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 175897 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 175898 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 175899 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 175900 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 175901 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 175902 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 175903 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 175904 -NCIT:C162772 Locally Advanced Gastric Carcinoma 7 175905 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 175906 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 175907 -NCIT:C168976 Locally Advanced Esophageal Carcinoma 7 175908 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 175909 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 175910 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 175911 -NCIT:C168977 Locally Advanced Anal Carcinoma 7 175912 -NCIT:C170459 Locally Advanced Pancreatobiliary Carcinoma 7 175913 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 8 175914 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 175915 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 175916 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 175917 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 175918 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 175919 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 175920 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 175921 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 175922 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 8 175923 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 175924 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 175925 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 175926 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 8 175927 -NCIT:C171298 Locally Advanced Liver Carcinoma 7 175928 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 175929 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 8 175930 -NCIT:C154088 Metastatic Liver Carcinoma 6 175931 -NCIT:C154091 Metastatic Hepatocellular Carcinoma 7 175932 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 8 175933 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 175934 -NCIT:C167336 Advanced Hepatocellular Carcinoma 8 175935 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 175936 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 175937 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 175938 -NCIT:C171298 Locally Advanced Liver Carcinoma 7 175939 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 175940 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 8 175941 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 7 175942 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 8 175943 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 8 175944 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 6 175945 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 7 175946 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 175947 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 175948 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 175949 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 7 175950 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 175951 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 175952 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 175953 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 7 175954 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 175955 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 175956 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 175957 -NCIT:C156073 Metastatic Esophageal Carcinoma 6 175958 -NCIT:C156074 Metastatic Esophageal Adenocarcinoma 7 175959 -NCIT:C166120 Oligometastatic Esophageal Adenocarcinoma 8 175960 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 175961 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 175962 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 175963 -NCIT:C172249 Metastatic Distal Esophagus Adenocarcinoma 8 175964 -NCIT:C156075 Metastatic Esophageal Squamous Cell Carcinoma 7 175965 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 175966 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 175967 -NCIT:C160599 Advanced Esophageal Carcinoma 7 175968 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 175969 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 175970 -NCIT:C168976 Locally Advanced Esophageal Carcinoma 7 175971 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 175972 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 175973 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 175974 -NCIT:C156096 Metastatic Colorectal Carcinoma 6 175975 -NCIT:C142867 Metastatic Microsatellite Stable Colorectal Carcinoma 7 175976 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 8 175977 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 8 175978 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 175979 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 8 175980 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 175981 -NCIT:C153224 Colorectal Carcinoma Metastatic in the Lung 7 175982 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 8 175983 -NCIT:C156097 Metastatic Colon Carcinoma 7 175984 -NCIT:C160819 Metastatic Colon Adenocarcinoma 8 175985 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 175986 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 175987 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 175988 -NCIT:C167238 Advanced Colon Carcinoma 8 175989 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 175990 -NCIT:C170910 Locally Advanced Colon Carcinoma 8 175991 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 175992 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 175993 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 175994 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 8 175995 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 175996 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 8 175997 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 8 175998 -NCIT:C156098 Metastatic Rectal Carcinoma 7 175999 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 8 176000 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 8 176001 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 176002 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 176003 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 176004 -NCIT:C170777 Advanced Rectal Carcinoma 8 176005 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 176006 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 176007 -NCIT:C170778 Locally Advanced Rectal Carcinoma 8 176008 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 176009 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 176010 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 176011 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 8 176012 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 176013 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 176014 -NCIT:C157366 Colorectal Carcinoma Metastatic in the Liver 7 176015 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 8 176016 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 8 176017 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 8 176018 -NCIT:C161048 Metastatic Colorectal Adenocarcinoma 7 176019 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 8 176020 -NCIT:C160819 Metastatic Colon Adenocarcinoma 8 176021 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 176022 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 176023 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 176024 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 8 176025 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 176026 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 176027 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 176028 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 8 176029 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 176030 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 176031 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 176032 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 176033 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 176034 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 176035 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 176036 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 176037 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 176038 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 176039 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 176040 -NCIT:C162475 Advanced Colorectal Carcinoma 7 176041 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 8 176042 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 176043 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 176044 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 176045 -NCIT:C167238 Advanced Colon Carcinoma 8 176046 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 176047 -NCIT:C170777 Advanced Rectal Carcinoma 8 176048 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 176049 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 176050 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 7 176051 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 8 176052 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 176053 -NCIT:C170778 Locally Advanced Rectal Carcinoma 8 176054 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 176055 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 176056 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 176057 -NCIT:C170910 Locally Advanced Colon Carcinoma 8 176058 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 176059 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 176060 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 176061 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 176062 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 176063 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 176064 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 176065 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 176066 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 176067 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 176068 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 176069 -NCIT:C185165 Oligometastatic Colorectal Carcinoma 7 176070 -NCIT:C156746 Advanced Digestive System Carcinoma 6 176071 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 7 176072 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 176073 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 176074 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 7 176075 -NCIT:C160599 Advanced Esophageal Carcinoma 7 176076 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 176077 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 176078 -NCIT:C162475 Advanced Colorectal Carcinoma 7 176079 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 8 176080 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 176081 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 176082 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 176083 -NCIT:C167238 Advanced Colon Carcinoma 8 176084 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 176085 -NCIT:C170777 Advanced Rectal Carcinoma 8 176086 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 176087 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 176088 -NCIT:C165299 Advanced Gastric Carcinoma 7 176089 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 176090 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 176091 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 176092 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 176093 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 176094 -NCIT:C167336 Advanced Hepatocellular Carcinoma 7 176095 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 8 176096 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 8 176097 -NCIT:C170515 Advanced Anal Carcinoma 7 176098 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 8 176099 -NCIT:C171330 Advanced Pancreatobiliary Carcinoma 7 176100 -NCIT:C165452 Advanced Pancreatic Carcinoma 8 176101 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 176102 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 176103 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 8 176104 -NCIT:C171331 Advanced Biliary Tract Carcinoma 8 176105 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 176106 -NCIT:C162752 Advanced Cholangiocarcinoma 10 176107 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 176108 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 176109 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 176110 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 176111 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 176112 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 176113 -NCIT:C182105 Advanced Appendix Adenocarcinoma 7 176114 -NCIT:C162275 Metastatic Appendix Carcinoma 6 176115 -NCIT:C182104 Metastatic Appendix Adenocarcinoma 7 176116 -NCIT:C162274 Metastatic Appendix Mucinous Adenocarcinoma 8 176117 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 176118 -NCIT:C163967 Metastatic Digestive System Mixed Adenoneuroendocrine Carcinoma 6 176119 -NCIT:C170458 Metastatic Pancreatobiliary Carcinoma 6 176120 -NCIT:C156069 Metastatic Pancreatic Carcinoma 7 176121 -NCIT:C165452 Advanced Pancreatic Carcinoma 8 176122 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 176123 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 176124 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 8 176125 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 176126 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 176127 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 176128 -NCIT:C190770 Metastatic Pancreatic Adenosquamous Carcinoma 8 176129 -NCIT:C190771 Metastatic Pancreatic Squamous Cell Carcinoma 8 176130 -NCIT:C8933 Metastatic Pancreatic Adenocarcinoma 8 176131 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 176132 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 176133 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 176134 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 9 176135 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 176136 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 176137 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 10 176138 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 176139 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 176140 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 9 176141 -NCIT:C162751 Metastatic Biliary Tract Carcinoma 7 176142 -NCIT:C142869 Metastatic Bile Duct Carcinoma 8 176143 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 176144 -NCIT:C162752 Advanced Cholangiocarcinoma 10 176145 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 176146 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 176147 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 176148 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 176149 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 176150 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 176151 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 176152 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 176153 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 176154 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 176155 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 176156 -NCIT:C157623 Metastatic Cholangiocarcinoma 9 176157 -NCIT:C162752 Advanced Cholangiocarcinoma 10 176158 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 176159 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 176160 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 176161 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 176162 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 176163 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 176164 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 10 176165 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 176166 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 10 176167 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 176168 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 176169 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 10 176170 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 176171 -NCIT:C185071 Metastatic Extrahepatic Bile Duct Carcinoma 9 176172 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 10 176173 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 11 176174 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 176175 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 176176 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 176177 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 176178 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 176179 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 176180 -NCIT:C162754 Metastatic Gallbladder Carcinoma 8 176181 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 176182 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 176183 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 176184 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 8 176185 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 176186 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 176187 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 176188 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 176189 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 176190 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 176191 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 176192 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 176193 -NCIT:C171331 Advanced Biliary Tract Carcinoma 8 176194 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 176195 -NCIT:C162752 Advanced Cholangiocarcinoma 10 176196 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 176197 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 176198 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 176199 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 176200 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 176201 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 176202 -NCIT:C170459 Locally Advanced Pancreatobiliary Carcinoma 7 176203 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 8 176204 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 176205 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 176206 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 176207 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 176208 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 176209 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 176210 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 176211 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 176212 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 8 176213 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 176214 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 176215 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 176216 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 8 176217 -NCIT:C171326 Metastatic Ampulla of Vater Carcinoma 7 176218 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 8 176219 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 8 176220 -NCIT:C171330 Advanced Pancreatobiliary Carcinoma 7 176221 -NCIT:C165452 Advanced Pancreatic Carcinoma 8 176222 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 176223 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 176224 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 8 176225 -NCIT:C171331 Advanced Biliary Tract Carcinoma 8 176226 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 176227 -NCIT:C162752 Advanced Cholangiocarcinoma 10 176228 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 176229 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 176230 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 176231 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 176232 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 176233 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 176234 -NCIT:C170514 Metastatic Anal Carcinoma 6 176235 -NCIT:C168977 Locally Advanced Anal Carcinoma 7 176236 -NCIT:C169103 Metastatic Anal Squamous Cell Carcinoma 7 176237 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 176238 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 176239 -NCIT:C170515 Advanced Anal Carcinoma 7 176240 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 8 176241 -NCIT:C5612 Metastatic Anal Canal Carcinoma 7 176242 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 176243 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 176244 -NCIT:C8637 Metastatic Small Intestinal Carcinoma 6 176245 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 7 176246 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 176247 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 7 176248 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 176249 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 176250 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 176251 -NCIT:C8934 Metastatic Small Intestinal Adenocarcinoma 7 176252 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 176253 -NCIT:C156492 Metastatic Digestive System Neuroendocrine Neoplasm 5 176254 -NCIT:C115245 Metastatic Digestive System Neuroendocrine Tumor G1 6 176255 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 7 176256 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 176257 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 7 176258 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 7 176259 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 176260 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 6 176261 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 7 176262 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 176263 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 176264 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 176265 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 7 176266 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 176267 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 176268 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 176269 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 7 176270 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 176271 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 176272 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 176273 -NCIT:C158089 Advanced Digestive System Neuroendocrine Neoplasm 6 176274 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 7 176275 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 176276 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 176277 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 7 176278 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 176279 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 176280 -NCIT:C165448 Advanced Pancreatic Neuroendocrine Neoplasm 7 176281 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 8 176282 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 176283 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 176284 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 7 176285 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 176286 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 7 176287 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 176288 -NCIT:C165447 Metastatic Pancreatic Neuroendocrine Neoplasm 6 176289 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 7 176290 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 176291 -NCIT:C156488 Metastatic Pancreatic Neuroendocrine Tumor 7 176292 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 8 176293 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 176294 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 176295 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 8 176296 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 8 176297 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 176298 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 8 176299 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 176300 -NCIT:C165448 Advanced Pancreatic Neuroendocrine Neoplasm 7 176301 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 8 176302 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 176303 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 176304 -NCIT:C167329 Metastatic Midgut Neuroendocrine Tumor 6 176305 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 7 176306 -NCIT:C178271 Locally Advanced Digestive System Neuroendocrine Neoplasm 6 176307 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 176308 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 176309 -NCIT:C158090 Locally Advanced Unresectable Digestive System Neuroendocrine Neoplasm 7 176310 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 7 176311 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 7 176312 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 7 176313 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 7 176314 -NCIT:C179415 Metastatic Digestive System Neuroendocrine Tumor G2 6 176315 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 7 176316 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 7 176317 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 176318 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 7 176319 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 176320 -NCIT:C162780 Metastatic Malignant Colorectal Neoplasm 5 176321 -NCIT:C156096 Metastatic Colorectal Carcinoma 6 176322 -NCIT:C142867 Metastatic Microsatellite Stable Colorectal Carcinoma 7 176323 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 8 176324 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 8 176325 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 176326 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 8 176327 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 176328 -NCIT:C153224 Colorectal Carcinoma Metastatic in the Lung 7 176329 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 8 176330 -NCIT:C156097 Metastatic Colon Carcinoma 7 176331 -NCIT:C160819 Metastatic Colon Adenocarcinoma 8 176332 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 176333 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 176334 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 176335 -NCIT:C167238 Advanced Colon Carcinoma 8 176336 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 176337 -NCIT:C170910 Locally Advanced Colon Carcinoma 8 176338 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 176339 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 176340 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 176341 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 8 176342 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 176343 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 8 176344 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 8 176345 -NCIT:C156098 Metastatic Rectal Carcinoma 7 176346 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 8 176347 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 8 176348 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 176349 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 176350 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 176351 -NCIT:C170777 Advanced Rectal Carcinoma 8 176352 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 176353 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 176354 -NCIT:C170778 Locally Advanced Rectal Carcinoma 8 176355 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 176356 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 176357 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 176358 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 8 176359 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 176360 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 176361 -NCIT:C157366 Colorectal Carcinoma Metastatic in the Liver 7 176362 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 8 176363 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 8 176364 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 8 176365 -NCIT:C161048 Metastatic Colorectal Adenocarcinoma 7 176366 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 8 176367 -NCIT:C160819 Metastatic Colon Adenocarcinoma 8 176368 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 176369 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 176370 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 176371 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 8 176372 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 176373 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 176374 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 176375 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 8 176376 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 176377 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 176378 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 176379 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 176380 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 176381 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 176382 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 176383 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 176384 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 176385 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 176386 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 176387 -NCIT:C162475 Advanced Colorectal Carcinoma 7 176388 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 8 176389 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 176390 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 176391 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 176392 -NCIT:C167238 Advanced Colon Carcinoma 8 176393 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 176394 -NCIT:C170777 Advanced Rectal Carcinoma 8 176395 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 176396 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 176397 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 7 176398 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 8 176399 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 176400 -NCIT:C170778 Locally Advanced Rectal Carcinoma 8 176401 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 176402 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 176403 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 176404 -NCIT:C170910 Locally Advanced Colon Carcinoma 8 176405 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 176406 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 176407 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 176408 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 176409 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 176410 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 176411 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 176412 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 176413 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 176414 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 176415 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 176416 -NCIT:C185165 Oligometastatic Colorectal Carcinoma 7 176417 -NCIT:C175547 Advanced Malignant Digestive System Neoplasm 5 176418 -NCIT:C156746 Advanced Digestive System Carcinoma 6 176419 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 7 176420 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 176421 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 176422 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 7 176423 -NCIT:C160599 Advanced Esophageal Carcinoma 7 176424 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 176425 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 176426 -NCIT:C162475 Advanced Colorectal Carcinoma 7 176427 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 8 176428 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 176429 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 176430 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 176431 -NCIT:C167238 Advanced Colon Carcinoma 8 176432 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 176433 -NCIT:C170777 Advanced Rectal Carcinoma 8 176434 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 176435 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 176436 -NCIT:C165299 Advanced Gastric Carcinoma 7 176437 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 176438 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 176439 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 176440 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 176441 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 176442 -NCIT:C167336 Advanced Hepatocellular Carcinoma 7 176443 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 8 176444 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 8 176445 -NCIT:C170515 Advanced Anal Carcinoma 7 176446 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 8 176447 -NCIT:C171330 Advanced Pancreatobiliary Carcinoma 7 176448 -NCIT:C165452 Advanced Pancreatic Carcinoma 8 176449 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 176450 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 176451 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 8 176452 -NCIT:C171331 Advanced Biliary Tract Carcinoma 8 176453 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 176454 -NCIT:C162752 Advanced Cholangiocarcinoma 10 176455 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 176456 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 176457 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 176458 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 176459 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 176460 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 176461 -NCIT:C182105 Advanced Appendix Adenocarcinoma 7 176462 -NCIT:C158089 Advanced Digestive System Neuroendocrine Neoplasm 6 176463 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 7 176464 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 176465 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 176466 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 7 176467 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 176468 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 176469 -NCIT:C165448 Advanced Pancreatic Neuroendocrine Neoplasm 7 176470 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 8 176471 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 176472 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 176473 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 7 176474 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 176475 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 7 176476 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 176477 -NCIT:C176679 Advanced Malignant Small Intestinal Neoplasm 6 176478 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 7 176479 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 176480 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 176481 -NCIT:C176678 Metastatic Malignant Small Intestinal Neoplasm 5 176482 -NCIT:C176679 Advanced Malignant Small Intestinal Neoplasm 6 176483 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 7 176484 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 176485 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 176486 -NCIT:C8637 Metastatic Small Intestinal Carcinoma 6 176487 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 7 176488 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 176489 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 7 176490 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 176491 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 176492 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 176493 -NCIT:C8934 Metastatic Small Intestinal Adenocarcinoma 7 176494 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 176495 -NCIT:C179181 Locally Advanced Malignant Digestive System Neoplasm 5 176496 -NCIT:C153358 Locally Advanced Digestive System Carcinoma 6 176497 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 7 176498 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 176499 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 176500 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 176501 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 7 176502 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 176503 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 7 176504 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 8 176505 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 176506 -NCIT:C170778 Locally Advanced Rectal Carcinoma 8 176507 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 176508 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 176509 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 176510 -NCIT:C170910 Locally Advanced Colon Carcinoma 8 176511 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 176512 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 176513 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 176514 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 176515 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 176516 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 176517 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 176518 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 176519 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 176520 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 176521 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 176522 -NCIT:C162772 Locally Advanced Gastric Carcinoma 7 176523 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 176524 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 176525 -NCIT:C168976 Locally Advanced Esophageal Carcinoma 7 176526 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 176527 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 176528 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 176529 -NCIT:C168977 Locally Advanced Anal Carcinoma 7 176530 -NCIT:C170459 Locally Advanced Pancreatobiliary Carcinoma 7 176531 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 8 176532 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 176533 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 176534 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 176535 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 176536 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 176537 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 176538 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 176539 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 176540 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 8 176541 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 176542 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 176543 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 176544 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 8 176545 -NCIT:C171298 Locally Advanced Liver Carcinoma 7 176546 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 176547 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 8 176548 -NCIT:C178271 Locally Advanced Digestive System Neuroendocrine Neoplasm 6 176549 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 176550 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 176551 -NCIT:C158090 Locally Advanced Unresectable Digestive System Neuroendocrine Neoplasm 7 176552 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 7 176553 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 7 176554 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 7 176555 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 7 176556 -NCIT:C162549 Metastatic Malignant Neoplasm in the Penis 4 176557 -NCIT:C162594 Metastatic Malignant Neoplasm in the Head and Neck 4 176558 -NCIT:C155786 Metastatic Malignant Neoplasm in the Sellar Region 5 176559 -NCIT:C6805 Metastatic Malignant Neoplasm in the Pituitary Gland 6 176560 -NCIT:C162595 Head and Neck Carcinoma of Unknown Primary 5 176561 -NCIT:C173585 Neck Carcinoma of Unknown Primary 6 176562 -NCIT:C7713 Neck Squamous Cell Carcinoma of Unknown Primary 7 176563 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 8 176564 -NCIT:C187051 Human Papillomavirus-Related Head and Neck Squamous Cell Carcinoma of Unknown Primary 6 176565 -NCIT:C190149 Human Papillomavirus-Negative Head and Neck Squamous Cell Carcinoma of Unknown Primary 6 176566 -NCIT:C8528 Metastatic Malignant Neoplasm in the Neck 5 176567 -NCIT:C173585 Neck Carcinoma of Unknown Primary 6 176568 -NCIT:C7713 Neck Squamous Cell Carcinoma of Unknown Primary 7 176569 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 8 176570 -NCIT:C6031 Metastatic Malignant Neoplasm in the Larynx 6 176571 -NCIT:C7509 Metastatic Malignant Neoplasm in the Thyroid Gland 6 176572 -NCIT:C7546 Metastatic Malignant Neoplasm in the Pharynx 6 176573 -NCIT:C6028 Metastatic Malignant Neoplasm in the Hypopharynx 7 176574 -NCIT:C6029 Metastatic Malignant Neoplasm in the Oropharynx 7 176575 -NCIT:C6030 Metastatic Malignant Neoplasm in the Nasopharynx 7 176576 -NCIT:C8557 Metastatic Malignant Neoplasm in the Parathyroid Glands 6 176577 -NCIT:C8542 Metastatic Malignant Neoplasm in the Lip 5 176578 -NCIT:C8556 Metastatic Malignant Neoplasm in the Orbit 5 176579 -NCIT:C165252 Metastatic Malignant Mesothelioma 4 176580 -NCIT:C168545 Metastatic Pleural Malignant Mesothelioma 5 176581 -NCIT:C175936 Locally Advanced Pleural Malignant Mesothelioma 6 176582 -NCIT:C8706 Advanced Pleural Malignant Mesothelioma 6 176583 -NCIT:C175935 Locally Advanced Malignant Mesothelioma 5 176584 -NCIT:C175936 Locally Advanced Pleural Malignant Mesothelioma 6 176585 -NCIT:C179462 Metastatic Peritoneal Malignant Mesothelioma 5 176586 -NCIT:C8704 Advanced Peritoneal Malignant Mesothelioma 6 176587 -NCIT:C7865 Advanced Malignant Mesothelioma 5 176588 -NCIT:C175937 Advanced Epithelioid Mesothelioma 6 176589 -NCIT:C8703 Advanced Pericardial Malignant Mesothelioma 6 176590 -NCIT:C8704 Advanced Peritoneal Malignant Mesothelioma 6 176591 -NCIT:C8706 Advanced Pleural Malignant Mesothelioma 6 176592 -NCIT:C166181 Metastatic Primary Malignant Central Nervous System Neoplasm 4 176593 -NCIT:C166182 Locally Advanced Primary Malignant Central Nervous System Neoplasm 5 176594 -NCIT:C180874 Locally Advanced Primary Malignant Brain Neoplasm 6 176595 -NCIT:C180876 Locally Advanced Glioma 6 176596 -NCIT:C170980 Locally Advanced Glioblastoma 7 176597 -NCIT:C170966 Advanced Primary Malignant Central Nervous System Neoplasm 5 176598 -NCIT:C170978 Advanced Glioblastoma 6 176599 -NCIT:C175549 Advanced Primary Malignant Brain Neoplasm 6 176600 -NCIT:C187213 Advanced Childhood Malignant Brain Neoplasm 7 176601 -NCIT:C173155 Metastatic Intracranial Malignant Neoplasm 5 176602 -NCIT:C175550 Metastatic Primary Malignant Brain Neoplasm 6 176603 -NCIT:C175549 Advanced Primary Malignant Brain Neoplasm 7 176604 -NCIT:C187213 Advanced Childhood Malignant Brain Neoplasm 8 176605 -NCIT:C177725 Metastatic Medulloblastoma 7 176606 -NCIT:C5399 Medulloblastoma with Leptomeningeal Spread 8 176607 -NCIT:C180874 Locally Advanced Primary Malignant Brain Neoplasm 7 176608 -NCIT:C187212 Metastatic Childhood Malignant Brain Neoplasm 7 176609 -NCIT:C187213 Advanced Childhood Malignant Brain Neoplasm 8 176610 -NCIT:C180877 Metastatic Glioma 5 176611 -NCIT:C170979 Metastatic Glioblastoma 6 176612 -NCIT:C170978 Advanced Glioblastoma 7 176613 -NCIT:C170980 Locally Advanced Glioblastoma 7 176614 -NCIT:C178558 Metastatic Low Grade Glioma 6 176615 -NCIT:C178559 Metastatic Low Grade Astrocytoma 7 176616 -NCIT:C180876 Locally Advanced Glioma 6 176617 -NCIT:C170980 Locally Advanced Glioblastoma 7 176618 -NCIT:C5274 Metastatic Meningioma 5 176619 -NCIT:C5400 Central Nervous System Embryonal Tumor, Not Otherwise Specified with Leptomeningeal Spread 5 176620 -NCIT:C168669 Metastatic Malignant Neoplasm in the Digestive System 4 176621 -NCIT:C168666 Gastrointestinal Carcinomatosis 5 176622 -NCIT:C4581 Metastatic Malignant Neoplasm in the Large Intestine 5 176623 -NCIT:C7426 Metastatic Malignant Neoplasm in the Rectum 6 176624 -NCIT:C188076 Metastatic Carcinoma in the Rectum 7 176625 -NCIT:C8411 Metastatic Malignant Neoplasm in the Colon 6 176626 -NCIT:C4758 Metastatic Malignant Neoplasm in the Liver 5 176627 -NCIT:C150130 Uveal Melanoma Metastatic in the Liver 6 176628 -NCIT:C185152 Extramedullary Disease in Plasma Cell Myeloma Involving the Liver 6 176629 -NCIT:C96767 Metastatic Carcinoma in the Liver 6 176630 -NCIT:C157366 Colorectal Carcinoma Metastatic in the Liver 7 176631 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 8 176632 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 8 176633 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 8 176634 -NCIT:C36302 Breast Carcinoma Metastatic in the Liver 7 176635 -NCIT:C36306 Lung Carcinoma Metastatic in the Liver 7 176636 -NCIT:C7460 Metastatic Malignant Neoplasm in the Anus 5 176637 -NCIT:C7479 Metastatic Malignant Neoplasm in the Esophagus 5 176638 -NCIT:C7482 Metastatic Malignant Neoplasm in the Gallbladder 5 176639 -NCIT:C7524 Metastatic Malignant Neoplasm in the Small Intestine 5 176640 -NCIT:C8543 Metastatic Malignant Neoplasm in the Pancreas 5 176641 -NCIT:C188077 Metastatic Carcinoma in the Pancreas 6 176642 -NCIT:C95903 Metastatic Malignant Neoplasm in the Stomach 5 176643 -NCIT:C96953 Metastatic Malignant Neoplasm in the Extrahepatic Bile Ducts 5 176644 -NCIT:C170467 Metastatic Malignant Head and Neck Neoplasm 4 176645 -NCIT:C126465 Metastatic Head and Neck Carcinoma 5 176646 -NCIT:C129861 Advanced Head and Neck Carcinoma 6 176647 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 7 176648 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 176649 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 176650 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 176651 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 176652 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 176653 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 176654 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 176655 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 7 176656 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 176657 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 8 176658 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 8 176659 -NCIT:C170784 Advanced Pharyngeal Carcinoma 7 176660 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 8 176661 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 176662 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 176663 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 176664 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 176665 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 176666 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 8 176667 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 176668 -NCIT:C177723 Advanced Salivary Gland Carcinoma 7 176669 -NCIT:C133193 Metastatic Thyroid Gland Carcinoma 6 176670 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 7 176671 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 176672 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 176673 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 7 176674 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 176675 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 8 176676 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 8 176677 -NCIT:C170831 Metastatic Thyroid Gland Anaplastic Carcinoma 7 176678 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 8 176679 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 8 176680 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 7 176681 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 176682 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 8 176683 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 8 176684 -NCIT:C173979 Metastatic Differentiated Thyroid Gland Carcinoma 7 176685 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 8 176686 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 9 176687 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 10 176688 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 8 176689 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 8 176690 -NCIT:C174046 Metastatic Poorly Differentiated Thyroid Gland Carcinoma 7 176691 -NCIT:C148153 Metastatic Head and Neck Squamous Cell Carcinoma 6 176692 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 7 176693 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 176694 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 176695 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 176696 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 176697 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 176698 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 176699 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 176700 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 7 176701 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 176702 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 176703 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 7 176704 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 176705 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 176706 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 7 176707 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 7 176708 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 176709 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 176710 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 176711 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 8 176712 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 9 176713 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 176714 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 176715 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 8 176716 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 176717 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 176718 -NCIT:C162882 Metastatic Sinonasal Squamous Cell Carcinoma 7 176719 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 176720 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 176721 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 176722 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 176723 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 176724 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 176725 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 176726 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 176727 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 176728 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 176729 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 7 176730 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 7 176731 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 8 176732 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 176733 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 176734 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 176735 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 8 176736 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 176737 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 176738 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 176739 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 176740 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 176741 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 8 176742 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 176743 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 176744 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 176745 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 176746 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 176747 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 176748 -NCIT:C153213 Locally Advanced Head and Neck Carcinoma 6 176749 -NCIT:C158464 Locally Advanced Salivary Gland Carcinoma 7 176750 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 7 176751 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 176752 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 176753 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 176754 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 8 176755 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 9 176756 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 176757 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 176758 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 8 176759 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 176760 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 176761 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 7 176762 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 7 176763 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 176764 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 7 176765 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 176766 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 8 176767 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 176768 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 176769 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 8 176770 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 176771 -NCIT:C165562 Locally Advanced Lip and Oral Cavity Carcinoma 7 176772 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 8 176773 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 176774 -NCIT:C165563 Locally Advanced Paranasal Sinus Carcinoma 7 176775 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 8 176776 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 7 176777 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 176778 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 8 176779 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 8 176780 -NCIT:C156080 Metastatic Pharyngeal Carcinoma 6 176781 -NCIT:C156079 Metastatic Nasopharyngeal Carcinoma 7 176782 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 8 176783 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 176784 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 176785 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 176786 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 176787 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 176788 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 8 176789 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 176790 -NCIT:C156081 Metastatic Hypopharyngeal Carcinoma 7 176791 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 8 176792 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 176793 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 176794 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 8 176795 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 176796 -NCIT:C156082 Metastatic Oropharyngeal Carcinoma 7 176797 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 8 176798 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 176799 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 176800 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 176801 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 8 176802 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 176803 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 176804 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 8 176805 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 176806 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 7 176807 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 176808 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 8 176809 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 176810 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 176811 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 8 176812 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 176813 -NCIT:C170784 Advanced Pharyngeal Carcinoma 7 176814 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 8 176815 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 176816 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 176817 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 176818 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 176819 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 176820 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 8 176821 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 176822 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 7 176823 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 8 176824 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 176825 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 176826 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 176827 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 8 176828 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 176829 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 176830 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 176831 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 176832 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 176833 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 8 176834 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 176835 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 176836 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 176837 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 176838 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 176839 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 176840 -NCIT:C156085 Metastatic Laryngeal Carcinoma 6 176841 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 7 176842 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 176843 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 176844 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 7 176845 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 176846 -NCIT:C156086 Metastatic Lip and Oral Cavity Carcinoma 6 176847 -NCIT:C156087 Metastatic Oral Cavity Carcinoma 7 176848 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 176849 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 176850 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 176851 -NCIT:C156089 Metastatic Oral Cavity Adenoid Cystic Carcinoma 8 176852 -NCIT:C156090 Metastatic Oral Cavity Mucoepidermoid Carcinoma 8 176853 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 8 176854 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 176855 -NCIT:C156088 Metastatic Lip Carcinoma 7 176856 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 176857 -NCIT:C165562 Locally Advanced Lip and Oral Cavity Carcinoma 7 176858 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 8 176859 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 176860 -NCIT:C158463 Metastatic Salivary Gland Carcinoma 6 176861 -NCIT:C158464 Locally Advanced Salivary Gland Carcinoma 7 176862 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 7 176863 -NCIT:C177723 Advanced Salivary Gland Carcinoma 7 176864 -NCIT:C5899 Stage IV Major Salivary Gland Carcinoma with Metastasis 7 176865 -NCIT:C9044 Metastatic Parathyroid Gland Carcinoma 6 176866 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 7 176867 -NCIT:C170469 Advanced Malignant Head and Neck Neoplasm 5 176868 -NCIT:C129861 Advanced Head and Neck Carcinoma 6 176869 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 7 176870 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 176871 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 176872 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 176873 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 176874 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 176875 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 176876 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 176877 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 7 176878 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 176879 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 8 176880 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 8 176881 -NCIT:C170784 Advanced Pharyngeal Carcinoma 7 176882 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 8 176883 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 176884 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 176885 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 176886 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 176887 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 176888 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 8 176889 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 176890 -NCIT:C177723 Advanced Salivary Gland Carcinoma 7 176891 -NCIT:C170470 Locally Advanced Malignant Head and Neck Neoplasm 5 176892 -NCIT:C153213 Locally Advanced Head and Neck Carcinoma 6 176893 -NCIT:C158464 Locally Advanced Salivary Gland Carcinoma 7 176894 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 7 176895 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 176896 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 176897 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 176898 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 8 176899 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 9 176900 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 176901 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 176902 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 8 176903 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 176904 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 176905 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 7 176906 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 7 176907 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 176908 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 7 176909 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 176910 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 8 176911 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 176912 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 176913 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 8 176914 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 176915 -NCIT:C165562 Locally Advanced Lip and Oral Cavity Carcinoma 7 176916 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 8 176917 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 176918 -NCIT:C165563 Locally Advanced Paranasal Sinus Carcinoma 7 176919 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 8 176920 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 7 176921 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 176922 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 8 176923 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 8 176924 -NCIT:C3574 Metastatic Carotid Body Paraganglioma 5 176925 -NCIT:C4623 Metastatic Jugulotympanic Paraganglioma 5 176926 -NCIT:C170728 Metastatic Malignant Breast Neoplasm 4 176927 -NCIT:C153238 Metastatic Breast Carcinoma 5 176928 -NCIT:C133501 Breast Carcinoma Metastatic in the Central Nervous System 6 176929 -NCIT:C36301 Breast Carcinoma Metastatic in the Brain 7 176930 -NCIT:C153227 Breast Carcinoma Metastatic in the Lymph Nodes 6 176931 -NCIT:C160920 Locally Advanced Breast Carcinoma 6 176932 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 7 176933 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 8 176934 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 8 176935 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 8 176936 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 8 176937 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 7 176938 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 8 176939 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 176940 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 176941 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 176942 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 8 176943 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 176944 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 176945 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 176946 -NCIT:C161830 Metastatic BRCA-Associated Breast Carcinoma 6 176947 -NCIT:C162648 Advanced Breast Carcinoma 6 176948 -NCIT:C165700 Advanced Breast Adenocarcinoma 7 176949 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 176950 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 176951 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 8 176952 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 176953 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 176954 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 176955 -NCIT:C165698 Metastatic Breast Adenocarcinoma 6 176956 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 7 176957 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 8 176958 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 176959 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 176960 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 176961 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 8 176962 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 176963 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 176964 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 176965 -NCIT:C165700 Advanced Breast Adenocarcinoma 7 176966 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 176967 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 176968 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 8 176969 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 176970 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 176971 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 176972 -NCIT:C168777 Metastatic HER2-Negative Breast Carcinoma 7 176973 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 176974 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 176975 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 176976 -NCIT:C179554 Metastatic HER2-Low Breast Carcinoma 7 176977 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 176978 -NCIT:C180924 Metastatic HER2-Positive Breast Carcinoma 7 176979 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 8 176980 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 8 176981 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 176982 -NCIT:C181787 Metastatic Breast Inflammatory Carcinoma 7 176983 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 8 176984 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 8 176985 -NCIT:C9246 Stage IIIB Breast Inflammatory Carcinoma 8 176986 -NCIT:C185880 Metastatic Hormone Receptor-Positive Breast Carcinoma 7 176987 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 176988 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 176989 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 176990 -NCIT:C190852 Metastatic Androgen Receptor-Positive Breast Carcinoma 8 176991 -NCIT:C190856 Metastatic Estrogen Receptor-Positive Breast Carcinoma 8 176992 -NCIT:C190677 Metastatic Hormone Receptor-Negative Breast Carcinoma 7 176993 -NCIT:C153348 Metastatic Triple-Negative Breast Carcinoma 8 176994 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 176995 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 176996 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 176997 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 9 176998 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 176999 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 177000 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 7 177001 -NCIT:C76326 Metastatic Breast Ductal Carcinoma 7 177002 -NCIT:C76328 Metastatic Breast Lobular Carcinoma 7 177003 -NCIT:C179515 Oligometastatic Breast Carcinoma 6 177004 -NCIT:C28311 Metastatic Breast Carcinoma in the Skin 6 177005 -NCIT:C36300 Breast Carcinoma Metastatic in the Lung 6 177006 -NCIT:C36302 Breast Carcinoma Metastatic in the Liver 6 177007 -NCIT:C36303 Breast Carcinoma Metastatic in the Bone 6 177008 -NCIT:C153226 Breast Carcinoma Metastatic in the Spine 7 177009 -NCIT:C5178 Metastatic Breast Squamous Cell Carcinoma 6 177010 -NCIT:C156493 Metastatic Breast Neuroendocrine Neoplasm 5 177011 -NCIT:C5171 Metastatic Breast Neuroendocrine Tumor G1 6 177012 -NCIT:C170811 Metastatic Malignant Skin Neoplasm 4 177013 -NCIT:C143013 Metastatic Skin Squamous Cell Carcinoma 5 177014 -NCIT:C153182 Locally Advanced Skin Squamous Cell Carcinoma 6 177015 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 177016 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 6 177017 -NCIT:C168542 Advanced Skin Squamous Cell Carcinoma 6 177018 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 177019 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 6 177020 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 177021 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 177022 -NCIT:C156072 Metastatic Cutaneous Melanoma 5 177023 -NCIT:C171285 Locally Advanced Cutaneous Melanoma 6 177024 -NCIT:C171572 Advanced Cutaneous Melanoma 6 177025 -NCIT:C155311 Advanced Cutaneous Melanoma of the Extremity 7 177026 -NCIT:C179427 Metastatic Acral Lentiginous Melanoma 6 177027 -NCIT:C162572 Metastatic Merkel Cell Carcinoma 5 177028 -NCIT:C165300 Advanced Merkel Cell Carcinoma 6 177029 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 6 177030 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 6 177031 -NCIT:C170812 Advanced Malignant Skin Neoplasm 5 177032 -NCIT:C165300 Advanced Merkel Cell Carcinoma 6 177033 -NCIT:C168542 Advanced Skin Squamous Cell Carcinoma 6 177034 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 177035 -NCIT:C171572 Advanced Cutaneous Melanoma 6 177036 -NCIT:C155311 Advanced Cutaneous Melanoma of the Extremity 7 177037 -NCIT:C172442 Advanced Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 6 177038 -NCIT:C171284 Locally Advanced Malignant Skin Neoplasm 5 177039 -NCIT:C153182 Locally Advanced Skin Squamous Cell Carcinoma 6 177040 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 177041 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 6 177042 -NCIT:C171285 Locally Advanced Cutaneous Melanoma 6 177043 -NCIT:C180374 Early Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 6 177044 -NCIT:C170828 Metastatic Rhabdoid Tumor 4 177045 -NCIT:C174568 Advanced Rhabdoid Tumor 5 177046 -NCIT:C170924 Metastatic Carcinosarcoma 4 177047 -NCIT:C170928 Advanced Carcinosarcoma 5 177048 -NCIT:C170930 Advanced Malignant Mixed Mesodermal (Mullerian) Tumor 6 177049 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 7 177050 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 7 177051 -NCIT:C170929 Metastatic Malignant Mixed Mesodermal (Mullerian) Tumor 5 177052 -NCIT:C170930 Advanced Malignant Mixed Mesodermal (Mullerian) Tumor 6 177053 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 7 177054 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 7 177055 -NCIT:C170931 Metastatic Uterine Corpus Carcinosarcoma 6 177056 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 7 177057 -NCIT:C170933 Metastatic Ovarian Carcinosarcoma 6 177058 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 7 177059 -NCIT:C170943 Metastatic Malignant Neoplasm in the Urinary System 4 177060 -NCIT:C7544 Metastatic Malignant Neoplasm in the Ureter 5 177061 -NCIT:C7549 Metastatic Malignant Neoplasm in the Kidney 5 177062 -NCIT:C185153 Extramedullary Disease in Plasma Cell Myeloma Involving the Kidney 6 177063 -NCIT:C7573 Metastatic Malignant Neoplasm in the Urethra 5 177064 -NCIT:C7650 Metastatic Malignant Neoplasm in the Bladder 5 177065 -NCIT:C175662 Metastatic Malignant Glomus Tumor 4 177066 -NCIT:C175663 Locally Advanced Malignant Glomus Tumor 5 177067 -NCIT:C176862 Metastatic Malignant Thoracic Neoplasm 4 177068 -NCIT:C148128 Metastatic Thymic Carcinoma 5 177069 -NCIT:C148126 Locally Advanced Thymic Carcinoma 6 177070 -NCIT:C159903 Advanced Thymic Carcinoma 6 177071 -NCIT:C153202 Metastatic Lung Carcinoma 5 177072 -NCIT:C133503 Lung Carcinoma Metastatic in the Central Nervous System 6 177073 -NCIT:C36304 Lung Carcinoma Metastatic in the Brain 7 177074 -NCIT:C153203 Advanced Lung Carcinoma 6 177075 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 177076 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 7 177077 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 177078 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 177079 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 177080 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 177081 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 8 177082 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 7 177083 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 177084 -NCIT:C180922 Advanced Bronchogenic Carcinoma 7 177085 -NCIT:C153206 Locally Advanced Lung Carcinoma 6 177086 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 7 177087 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 177088 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 177089 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 177090 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 177091 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 177092 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 8 177093 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 7 177094 -NCIT:C156092 Metastatic Lung Squamous Cell Carcinoma 6 177095 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 7 177096 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 177097 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 177098 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 177099 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 7 177100 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 177101 -NCIT:C156094 Metastatic Lung Non-Small Cell Carcinoma 6 177102 -NCIT:C128798 Metastatic Lung Non-Squamous Non-Small Cell Carcinoma 7 177103 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 177104 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 177105 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 177106 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 177107 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 177108 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 177109 -NCIT:C155908 Metastatic Lung Adenocarcinoma 8 177110 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 177111 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 177112 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 8 177113 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 177114 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 177115 -NCIT:C156093 Metastatic Lung Adenosquamous Carcinoma 7 177116 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 8 177117 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 8 177118 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 7 177119 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 177120 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 177121 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 177122 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 7 177123 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 177124 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 177125 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 177126 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 177127 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 177128 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 8 177129 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 7 177130 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 177131 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 177132 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 177133 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 177134 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 8 177135 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 6 177136 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 177137 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 7 177138 -NCIT:C187195 Oligometastatic Lung Carcinoma 6 177139 -NCIT:C36305 Lung Carcinoma Metastatic in the Bone 6 177140 -NCIT:C36306 Lung Carcinoma Metastatic in the Liver 6 177141 -NCIT:C176863 Advanced Malignant Thoracic Neoplasm 5 177142 -NCIT:C153203 Advanced Lung Carcinoma 6 177143 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 177144 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 7 177145 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 177146 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 177147 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 177148 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 177149 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 8 177150 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 7 177151 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 177152 -NCIT:C180922 Advanced Bronchogenic Carcinoma 7 177153 -NCIT:C159903 Advanced Thymic Carcinoma 6 177154 -NCIT:C165446 Advanced Lung Neuroendocrine Neoplasm 6 177155 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 177156 -NCIT:C177245 Advanced Lung Carcinoid Tumor 7 177157 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 7 177158 -NCIT:C8703 Advanced Pericardial Malignant Mesothelioma 6 177159 -NCIT:C8706 Advanced Pleural Malignant Mesothelioma 6 177160 -NCIT:C6413 Metastatic Intrathoracic Paravertebral Paraganglioma 5 177161 -NCIT:C183304 Metastatic Malignant Abdominal Neoplasm 4 177162 -NCIT:C183305 Advanced Malignant Abdominal Neoplasm 5 177163 -NCIT:C27292 Metastatic Ewing Sarcoma/Peripheral Primitive Neuroectodermal Tumor 4 177164 -NCIT:C36074 Metastatic Peripheral Primitive Neuroectodermal Tumor of Bone 5 177165 -NCIT:C7807 Metastatic Ewing Sarcoma 5 177166 -NCIT:C164080 Locally Advanced Ewing Sarcoma 6 177167 -NCIT:C6621 Metastatic Bone Ewing Sarcoma 6 177168 -NCIT:C8801 Metastatic Extraskeletal Ewing Sarcoma 6 177169 -NCIT:C27470 Disseminated Malignant Neoplasm 4 177170 -NCIT:C27469 Disseminated Carcinoma 5 177171 -NCIT:C27185 Disseminated Adenocarcinoma 6 177172 -NCIT:C4829 Disseminated Squamous Cell Carcinoma 6 177173 -NCIT:C3482 Metastatic Carcinoma 4 177174 -NCIT:C126465 Metastatic Head and Neck Carcinoma 5 177175 -NCIT:C129861 Advanced Head and Neck Carcinoma 6 177176 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 7 177177 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 177178 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 177179 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 177180 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 177181 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 177182 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 177183 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 177184 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 7 177185 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 177186 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 8 177187 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 8 177188 -NCIT:C170784 Advanced Pharyngeal Carcinoma 7 177189 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 8 177190 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 177191 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 177192 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 177193 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 177194 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 177195 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 8 177196 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 177197 -NCIT:C177723 Advanced Salivary Gland Carcinoma 7 177198 -NCIT:C133193 Metastatic Thyroid Gland Carcinoma 6 177199 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 7 177200 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 177201 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 177202 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 7 177203 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 177204 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 8 177205 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 8 177206 -NCIT:C170831 Metastatic Thyroid Gland Anaplastic Carcinoma 7 177207 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 8 177208 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 8 177209 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 7 177210 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 177211 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 8 177212 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 8 177213 -NCIT:C173979 Metastatic Differentiated Thyroid Gland Carcinoma 7 177214 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 8 177215 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 9 177216 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 10 177217 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 8 177218 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 8 177219 -NCIT:C174046 Metastatic Poorly Differentiated Thyroid Gland Carcinoma 7 177220 -NCIT:C148153 Metastatic Head and Neck Squamous Cell Carcinoma 6 177221 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 7 177222 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 177223 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 177224 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 177225 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 177226 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 177227 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 177228 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 177229 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 7 177230 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 177231 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 177232 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 7 177233 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 177234 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 177235 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 7 177236 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 7 177237 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 177238 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 177239 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 177240 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 8 177241 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 9 177242 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 177243 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 177244 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 8 177245 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 177246 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 177247 -NCIT:C162882 Metastatic Sinonasal Squamous Cell Carcinoma 7 177248 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 177249 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 177250 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 177251 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 177252 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 177253 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 177254 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 177255 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 177256 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 177257 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 177258 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 7 177259 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 7 177260 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 8 177261 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 177262 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 177263 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 177264 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 8 177265 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 177266 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 177267 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 177268 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 177269 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 177270 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 8 177271 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 177272 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 177273 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 177274 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 177275 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 177276 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 177277 -NCIT:C153213 Locally Advanced Head and Neck Carcinoma 6 177278 -NCIT:C158464 Locally Advanced Salivary Gland Carcinoma 7 177279 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 7 177280 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 177281 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 177282 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 177283 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 8 177284 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 9 177285 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 177286 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 177287 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 8 177288 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 177289 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 177290 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 7 177291 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 7 177292 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 177293 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 7 177294 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 177295 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 8 177296 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 177297 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 177298 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 8 177299 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 177300 -NCIT:C165562 Locally Advanced Lip and Oral Cavity Carcinoma 7 177301 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 8 177302 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 177303 -NCIT:C165563 Locally Advanced Paranasal Sinus Carcinoma 7 177304 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 8 177305 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 7 177306 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 177307 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 8 177308 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 8 177309 -NCIT:C156080 Metastatic Pharyngeal Carcinoma 6 177310 -NCIT:C156079 Metastatic Nasopharyngeal Carcinoma 7 177311 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 8 177312 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 177313 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 177314 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 177315 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 177316 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 177317 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 8 177318 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 177319 -NCIT:C156081 Metastatic Hypopharyngeal Carcinoma 7 177320 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 8 177321 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 177322 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 177323 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 8 177324 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 177325 -NCIT:C156082 Metastatic Oropharyngeal Carcinoma 7 177326 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 8 177327 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 177328 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 177329 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 177330 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 8 177331 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 177332 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 177333 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 8 177334 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 177335 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 7 177336 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 177337 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 8 177338 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 177339 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 177340 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 8 177341 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 177342 -NCIT:C170784 Advanced Pharyngeal Carcinoma 7 177343 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 8 177344 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 177345 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 177346 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 177347 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 177348 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 177349 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 8 177350 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 177351 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 7 177352 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 8 177353 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 177354 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 177355 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 177356 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 8 177357 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 177358 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 177359 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 177360 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 177361 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 177362 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 8 177363 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 177364 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 177365 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 177366 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 177367 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 177368 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 177369 -NCIT:C156085 Metastatic Laryngeal Carcinoma 6 177370 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 7 177371 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 177372 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 177373 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 7 177374 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 177375 -NCIT:C156086 Metastatic Lip and Oral Cavity Carcinoma 6 177376 -NCIT:C156087 Metastatic Oral Cavity Carcinoma 7 177377 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 177378 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 177379 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 177380 -NCIT:C156089 Metastatic Oral Cavity Adenoid Cystic Carcinoma 8 177381 -NCIT:C156090 Metastatic Oral Cavity Mucoepidermoid Carcinoma 8 177382 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 8 177383 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 177384 -NCIT:C156088 Metastatic Lip Carcinoma 7 177385 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 177386 -NCIT:C165562 Locally Advanced Lip and Oral Cavity Carcinoma 7 177387 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 8 177388 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 177389 -NCIT:C158463 Metastatic Salivary Gland Carcinoma 6 177390 -NCIT:C158464 Locally Advanced Salivary Gland Carcinoma 7 177391 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 7 177392 -NCIT:C177723 Advanced Salivary Gland Carcinoma 7 177393 -NCIT:C5899 Stage IV Major Salivary Gland Carcinoma with Metastasis 7 177394 -NCIT:C9044 Metastatic Parathyroid Gland Carcinoma 6 177395 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 7 177396 -NCIT:C129828 Metastatic Transitional Cell Carcinoma 5 177397 -NCIT:C126109 Metastatic Urothelial Carcinoma 6 177398 -NCIT:C148493 Advanced Urothelial Carcinoma 7 177399 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 177400 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 177401 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 177402 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 177403 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 177404 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 7 177405 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 177406 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 177407 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 7 177408 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 177409 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 177410 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 177411 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 177412 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 177413 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 177414 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 177415 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 177416 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 177417 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 8 177418 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 7 177419 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 177420 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 177421 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 177422 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 177423 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 177424 -NCIT:C191692 Metastatic Clear Cell (Glycogen-Rich) Urothelial Carcinoma 7 177425 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 177426 -NCIT:C191693 Metastatic Giant Cell Urothelial Carcinoma 7 177427 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 177428 -NCIT:C191694 Metastatic Lipid-Rich Urothelial Carcinoma 7 177429 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 177430 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 7 177431 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 177432 -NCIT:C191696 Metastatic Nested Urothelial Carcinoma 7 177433 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 177434 -NCIT:C191697 Metastatic Plasmacytoid Urothelial Carcinoma 7 177435 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 177436 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 7 177437 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 177438 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 7 177439 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 8 177440 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 177441 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 177442 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 8 177443 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 177444 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 177445 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 177446 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 177447 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 177448 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 177449 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 177450 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 177451 -NCIT:C172091 Advanced Transitional Cell Carcinoma 6 177452 -NCIT:C148493 Advanced Urothelial Carcinoma 7 177453 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 177454 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 177455 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 177456 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 177457 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 177458 -NCIT:C175493 Locally Advanced Transitional Cell Carcinoma 6 177459 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 7 177460 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 177461 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 177462 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 177463 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 177464 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 177465 -NCIT:C133839 Metastatic Digestive System Carcinoma 5 177466 -NCIT:C150577 Metastatic Gastroesophageal Junction Adenocarcinoma 6 177467 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 7 177468 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 7 177469 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 177470 -NCIT:C151904 Refractory Metastatic Digestive System Carcinoma 6 177471 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 7 177472 -NCIT:C151905 Recurrent Metastatic Digestive System Carcinoma 6 177473 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 7 177474 -NCIT:C153320 Metastatic Gastric Carcinoma 6 177475 -NCIT:C153319 Metastatic Gastric Adenocarcinoma 7 177476 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 177477 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 177478 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 177479 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 177480 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 177481 -NCIT:C165630 Metastatic Proximal Gastric Adenocarcinoma 8 177482 -NCIT:C166121 Oligometastatic Gastric Adenocarcinoma 8 177483 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 177484 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 177485 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 7 177486 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 177487 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 177488 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 177489 -NCIT:C162772 Locally Advanced Gastric Carcinoma 7 177490 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 177491 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 177492 -NCIT:C165299 Advanced Gastric Carcinoma 7 177493 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 177494 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 177495 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 177496 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 177497 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 177498 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 7 177499 -NCIT:C153358 Locally Advanced Digestive System Carcinoma 6 177500 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 7 177501 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 177502 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 177503 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 177504 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 7 177505 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 177506 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 7 177507 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 8 177508 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 177509 -NCIT:C170778 Locally Advanced Rectal Carcinoma 8 177510 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 177511 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 177512 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 177513 -NCIT:C170910 Locally Advanced Colon Carcinoma 8 177514 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 177515 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 177516 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 177517 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 177518 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 177519 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 177520 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 177521 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 177522 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 177523 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 177524 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 177525 -NCIT:C162772 Locally Advanced Gastric Carcinoma 7 177526 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 177527 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 177528 -NCIT:C168976 Locally Advanced Esophageal Carcinoma 7 177529 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 177530 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 177531 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 177532 -NCIT:C168977 Locally Advanced Anal Carcinoma 7 177533 -NCIT:C170459 Locally Advanced Pancreatobiliary Carcinoma 7 177534 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 8 177535 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 177536 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 177537 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 177538 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 177539 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 177540 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 177541 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 177542 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 177543 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 8 177544 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 177545 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 177546 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 177547 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 8 177548 -NCIT:C171298 Locally Advanced Liver Carcinoma 7 177549 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 177550 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 8 177551 -NCIT:C154088 Metastatic Liver Carcinoma 6 177552 -NCIT:C154091 Metastatic Hepatocellular Carcinoma 7 177553 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 8 177554 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 177555 -NCIT:C167336 Advanced Hepatocellular Carcinoma 8 177556 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 177557 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 177558 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 177559 -NCIT:C171298 Locally Advanced Liver Carcinoma 7 177560 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 177561 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 8 177562 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 7 177563 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 8 177564 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 8 177565 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 6 177566 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 7 177567 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 177568 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 177569 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 177570 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 7 177571 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 177572 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 177573 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 177574 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 7 177575 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 177576 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 177577 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 177578 -NCIT:C156073 Metastatic Esophageal Carcinoma 6 177579 -NCIT:C156074 Metastatic Esophageal Adenocarcinoma 7 177580 -NCIT:C166120 Oligometastatic Esophageal Adenocarcinoma 8 177581 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 177582 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 177583 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 177584 -NCIT:C172249 Metastatic Distal Esophagus Adenocarcinoma 8 177585 -NCIT:C156075 Metastatic Esophageal Squamous Cell Carcinoma 7 177586 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 177587 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 177588 -NCIT:C160599 Advanced Esophageal Carcinoma 7 177589 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 177590 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 177591 -NCIT:C168976 Locally Advanced Esophageal Carcinoma 7 177592 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 177593 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 177594 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 177595 -NCIT:C156096 Metastatic Colorectal Carcinoma 6 177596 -NCIT:C142867 Metastatic Microsatellite Stable Colorectal Carcinoma 7 177597 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 8 177598 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 8 177599 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 177600 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 8 177601 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 177602 -NCIT:C153224 Colorectal Carcinoma Metastatic in the Lung 7 177603 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 8 177604 -NCIT:C156097 Metastatic Colon Carcinoma 7 177605 -NCIT:C160819 Metastatic Colon Adenocarcinoma 8 177606 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 177607 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 177608 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 177609 -NCIT:C167238 Advanced Colon Carcinoma 8 177610 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 177611 -NCIT:C170910 Locally Advanced Colon Carcinoma 8 177612 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 177613 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 177614 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 177615 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 8 177616 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 177617 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 8 177618 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 8 177619 -NCIT:C156098 Metastatic Rectal Carcinoma 7 177620 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 8 177621 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 8 177622 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 177623 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 177624 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 177625 -NCIT:C170777 Advanced Rectal Carcinoma 8 177626 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 177627 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 177628 -NCIT:C170778 Locally Advanced Rectal Carcinoma 8 177629 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 177630 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 177631 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 177632 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 8 177633 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 177634 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 177635 -NCIT:C157366 Colorectal Carcinoma Metastatic in the Liver 7 177636 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 8 177637 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 8 177638 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 8 177639 -NCIT:C161048 Metastatic Colorectal Adenocarcinoma 7 177640 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 8 177641 -NCIT:C160819 Metastatic Colon Adenocarcinoma 8 177642 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 177643 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 177644 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 177645 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 8 177646 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 177647 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 177648 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 177649 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 8 177650 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 177651 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 177652 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 177653 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 177654 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 177655 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 177656 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 177657 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 177658 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 177659 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 177660 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 177661 -NCIT:C162475 Advanced Colorectal Carcinoma 7 177662 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 8 177663 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 177664 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 177665 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 177666 -NCIT:C167238 Advanced Colon Carcinoma 8 177667 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 177668 -NCIT:C170777 Advanced Rectal Carcinoma 8 177669 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 177670 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 177671 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 7 177672 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 8 177673 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 177674 -NCIT:C170778 Locally Advanced Rectal Carcinoma 8 177675 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 177676 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 177677 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 177678 -NCIT:C170910 Locally Advanced Colon Carcinoma 8 177679 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 177680 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 177681 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 177682 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 177683 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 177684 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 177685 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 177686 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 177687 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 177688 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 177689 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 177690 -NCIT:C185165 Oligometastatic Colorectal Carcinoma 7 177691 -NCIT:C156746 Advanced Digestive System Carcinoma 6 177692 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 7 177693 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 177694 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 177695 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 7 177696 -NCIT:C160599 Advanced Esophageal Carcinoma 7 177697 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 177698 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 177699 -NCIT:C162475 Advanced Colorectal Carcinoma 7 177700 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 8 177701 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 177702 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 177703 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 177704 -NCIT:C167238 Advanced Colon Carcinoma 8 177705 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 177706 -NCIT:C170777 Advanced Rectal Carcinoma 8 177707 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 177708 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 177709 -NCIT:C165299 Advanced Gastric Carcinoma 7 177710 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 177711 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 177712 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 177713 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 177714 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 177715 -NCIT:C167336 Advanced Hepatocellular Carcinoma 7 177716 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 8 177717 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 8 177718 -NCIT:C170515 Advanced Anal Carcinoma 7 177719 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 8 177720 -NCIT:C171330 Advanced Pancreatobiliary Carcinoma 7 177721 -NCIT:C165452 Advanced Pancreatic Carcinoma 8 177722 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 177723 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 177724 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 8 177725 -NCIT:C171331 Advanced Biliary Tract Carcinoma 8 177726 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 177727 -NCIT:C162752 Advanced Cholangiocarcinoma 10 177728 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 177729 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 177730 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 177731 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 177732 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 177733 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 177734 -NCIT:C182105 Advanced Appendix Adenocarcinoma 7 177735 -NCIT:C162275 Metastatic Appendix Carcinoma 6 177736 -NCIT:C182104 Metastatic Appendix Adenocarcinoma 7 177737 -NCIT:C162274 Metastatic Appendix Mucinous Adenocarcinoma 8 177738 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 177739 -NCIT:C163967 Metastatic Digestive System Mixed Adenoneuroendocrine Carcinoma 6 177740 -NCIT:C170458 Metastatic Pancreatobiliary Carcinoma 6 177741 -NCIT:C156069 Metastatic Pancreatic Carcinoma 7 177742 -NCIT:C165452 Advanced Pancreatic Carcinoma 8 177743 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 177744 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 177745 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 8 177746 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 177747 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 177748 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 177749 -NCIT:C190770 Metastatic Pancreatic Adenosquamous Carcinoma 8 177750 -NCIT:C190771 Metastatic Pancreatic Squamous Cell Carcinoma 8 177751 -NCIT:C8933 Metastatic Pancreatic Adenocarcinoma 8 177752 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 177753 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 177754 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 177755 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 9 177756 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 177757 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 177758 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 10 177759 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 177760 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 177761 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 9 177762 -NCIT:C162751 Metastatic Biliary Tract Carcinoma 7 177763 -NCIT:C142869 Metastatic Bile Duct Carcinoma 8 177764 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 177765 -NCIT:C162752 Advanced Cholangiocarcinoma 10 177766 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 177767 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 177768 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 177769 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 177770 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 177771 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 177772 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 177773 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 177774 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 177775 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 177776 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 177777 -NCIT:C157623 Metastatic Cholangiocarcinoma 9 177778 -NCIT:C162752 Advanced Cholangiocarcinoma 10 177779 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 177780 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 177781 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 177782 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 177783 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 177784 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 177785 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 10 177786 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 177787 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 10 177788 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 177789 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 177790 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 10 177791 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 177792 -NCIT:C185071 Metastatic Extrahepatic Bile Duct Carcinoma 9 177793 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 10 177794 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 11 177795 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 177796 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 177797 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 177798 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 177799 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 177800 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 177801 -NCIT:C162754 Metastatic Gallbladder Carcinoma 8 177802 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 177803 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 177804 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 177805 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 8 177806 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 177807 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 177808 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 177809 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 177810 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 177811 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 177812 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 177813 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 177814 -NCIT:C171331 Advanced Biliary Tract Carcinoma 8 177815 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 177816 -NCIT:C162752 Advanced Cholangiocarcinoma 10 177817 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 177818 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 177819 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 177820 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 177821 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 177822 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 177823 -NCIT:C170459 Locally Advanced Pancreatobiliary Carcinoma 7 177824 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 8 177825 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 177826 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 177827 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 177828 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 177829 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 177830 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 177831 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 177832 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 177833 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 8 177834 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 177835 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 177836 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 177837 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 8 177838 -NCIT:C171326 Metastatic Ampulla of Vater Carcinoma 7 177839 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 8 177840 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 8 177841 -NCIT:C171330 Advanced Pancreatobiliary Carcinoma 7 177842 -NCIT:C165452 Advanced Pancreatic Carcinoma 8 177843 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 177844 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 177845 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 8 177846 -NCIT:C171331 Advanced Biliary Tract Carcinoma 8 177847 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 177848 -NCIT:C162752 Advanced Cholangiocarcinoma 10 177849 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 177850 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 177851 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 177852 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 177853 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 177854 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 177855 -NCIT:C170514 Metastatic Anal Carcinoma 6 177856 -NCIT:C168977 Locally Advanced Anal Carcinoma 7 177857 -NCIT:C169103 Metastatic Anal Squamous Cell Carcinoma 7 177858 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 177859 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 177860 -NCIT:C170515 Advanced Anal Carcinoma 7 177861 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 8 177862 -NCIT:C5612 Metastatic Anal Canal Carcinoma 7 177863 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 177864 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 177865 -NCIT:C8637 Metastatic Small Intestinal Carcinoma 6 177866 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 7 177867 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 177868 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 7 177869 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 177870 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 177871 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 177872 -NCIT:C8934 Metastatic Small Intestinal Adenocarcinoma 7 177873 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 177874 -NCIT:C146893 Metastatic Genitourinary System Carcinoma 5 177875 -NCIT:C126109 Metastatic Urothelial Carcinoma 6 177876 -NCIT:C148493 Advanced Urothelial Carcinoma 7 177877 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 177878 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 177879 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 177880 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 177881 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 177882 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 7 177883 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 177884 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 177885 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 7 177886 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 177887 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 177888 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 177889 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 177890 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 177891 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 177892 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 177893 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 177894 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 177895 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 8 177896 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 7 177897 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 177898 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 177899 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 177900 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 177901 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 177902 -NCIT:C191692 Metastatic Clear Cell (Glycogen-Rich) Urothelial Carcinoma 7 177903 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 177904 -NCIT:C191693 Metastatic Giant Cell Urothelial Carcinoma 7 177905 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 177906 -NCIT:C191694 Metastatic Lipid-Rich Urothelial Carcinoma 7 177907 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 177908 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 7 177909 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 177910 -NCIT:C191696 Metastatic Nested Urothelial Carcinoma 7 177911 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 177912 -NCIT:C191697 Metastatic Plasmacytoid Urothelial Carcinoma 7 177913 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 177914 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 7 177915 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 177916 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 7 177917 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 8 177918 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 177919 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 177920 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 8 177921 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 177922 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 177923 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 177924 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 177925 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 177926 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 177927 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 177928 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 177929 -NCIT:C153387 Metastatic Cervical Carcinoma 6 177930 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 7 177931 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 177932 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 8 177933 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 7 177934 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 8 177935 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 177936 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 177937 -NCIT:C153390 Metastatic Cervical Adenosquamous Carcinoma 7 177938 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 8 177939 -NCIT:C156294 Advanced Cervical Carcinoma 7 177940 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 177941 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 177942 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 8 177943 -NCIT:C156295 Locally Advanced Cervical Carcinoma 7 177944 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 8 177945 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 177946 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 8 177947 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 177948 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 8 177949 -NCIT:C156062 Metastatic Bladder Carcinoma 6 177950 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 7 177951 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 177952 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 177953 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 177954 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 177955 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 177956 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 177957 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 177958 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 177959 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 177960 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 8 177961 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 7 177962 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 7 177963 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 7 177964 -NCIT:C167071 Locally Advanced Bladder Carcinoma 7 177965 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 177966 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 8 177967 -NCIT:C167338 Advanced Bladder Carcinoma 7 177968 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 177969 -NCIT:C190772 Metastatic Non-Muscle Invasive Bladder Carcinoma 7 177970 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 8 177971 -NCIT:C156063 Metastatic Fallopian Tube Carcinoma 6 177972 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 7 177973 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 8 177974 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 7 177975 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 7 177976 -NCIT:C156064 Metastatic Ovarian Carcinoma 6 177977 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 7 177978 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 177979 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 177980 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 177981 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 8 177982 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 177983 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 177984 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 8 177985 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 177986 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 177987 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 177988 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 177989 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 177990 -NCIT:C165458 Advanced Ovarian Carcinoma 7 177991 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 177992 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 177993 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 177994 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 177995 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 177996 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 8 177997 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 8 177998 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 7 177999 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 178000 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 178001 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 178002 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 8 178003 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 7 178004 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 178005 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 7 178006 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 178007 -NCIT:C172234 Metastatic Ovarian Undifferentiated Carcinoma 7 178008 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 7 178009 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 8 178010 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 8 178011 -NCIT:C180333 Metastatic Microsatellite Stable Ovarian Carcinoma 7 178012 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 8 178013 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 7 178014 -NCIT:C27391 Metastatic Ovarian Small Cell Carcinoma, Hypercalcemic Type 7 178015 -NCIT:C156065 Metastatic Vaginal Carcinoma 6 178016 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 7 178017 -NCIT:C170788 Advanced Vaginal Carcinoma 7 178018 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 178019 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 8 178020 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 178021 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 178022 -NCIT:C181028 Metastatic Vaginal Adenosquamous Carcinoma 7 178023 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 8 178024 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 7 178025 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 178026 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 178027 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 7 178028 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 178029 -NCIT:C156066 Metastatic Vulvar Carcinoma 6 178030 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 7 178031 -NCIT:C170786 Advanced Vulvar Carcinoma 7 178032 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 7 178033 -NCIT:C156068 Metastatic Endometrial Carcinoma 6 178034 -NCIT:C159676 Advanced Endometrial Carcinoma 7 178035 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 8 178036 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 178037 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 178038 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 8 178039 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 7 178040 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 8 178041 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 178042 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 8 178043 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 7 178044 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 7 178045 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 8 178046 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 7 178047 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 8 178048 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 178049 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 8 178050 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 178051 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 178052 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 8 178053 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 178054 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 178055 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 8 178056 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 178057 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 8 178058 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 8 178059 -NCIT:C164143 Advanced Genitourinary System Carcinoma 6 178060 -NCIT:C148493 Advanced Urothelial Carcinoma 7 178061 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 178062 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 178063 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 178064 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 178065 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 178066 -NCIT:C156284 Advanced Prostate Carcinoma 7 178067 -NCIT:C156286 Advanced Prostate Adenocarcinoma 8 178068 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 178069 -NCIT:C156294 Advanced Cervical Carcinoma 7 178070 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 178071 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 178072 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 8 178073 -NCIT:C159676 Advanced Endometrial Carcinoma 7 178074 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 8 178075 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 178076 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 178077 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 8 178078 -NCIT:C165458 Advanced Ovarian Carcinoma 7 178079 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 178080 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 178081 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 178082 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 178083 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 178084 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 8 178085 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 8 178086 -NCIT:C167338 Advanced Bladder Carcinoma 7 178087 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 178088 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 7 178089 -NCIT:C170786 Advanced Vulvar Carcinoma 7 178090 -NCIT:C170788 Advanced Vaginal Carcinoma 7 178091 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 178092 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 8 178093 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 178094 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 178095 -NCIT:C170790 Advanced Penile Carcinoma 7 178096 -NCIT:C172617 Advanced Kidney Carcinoma 7 178097 -NCIT:C153170 Advanced Renal Cell Carcinoma 8 178098 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 178099 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 178100 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 178101 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 178102 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 178103 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 8 178104 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 178105 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 8 178106 -NCIT:C167069 Locally Advanced Genitourinary System Carcinoma 6 178107 -NCIT:C156285 Locally Advanced Prostate Carcinoma 7 178108 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 8 178109 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 178110 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 8 178111 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 178112 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 178113 -NCIT:C156295 Locally Advanced Cervical Carcinoma 7 178114 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 8 178115 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 178116 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 8 178117 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 178118 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 8 178119 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 7 178120 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 178121 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 178122 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 178123 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 178124 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 178125 -NCIT:C167071 Locally Advanced Bladder Carcinoma 7 178126 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 178127 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 8 178128 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 7 178129 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 178130 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 178131 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 178132 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 8 178133 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 7 178134 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 8 178135 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 7 178136 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 8 178137 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 178138 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 8 178139 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 7 178140 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 7 178141 -NCIT:C170789 Locally Advanced Penile Carcinoma 7 178142 -NCIT:C172618 Locally Advanced Kidney Carcinoma 7 178143 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 8 178144 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 178145 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 178146 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 178147 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 178148 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 178149 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 178150 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 8 178151 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 178152 -NCIT:C185381 Metastatic Mesonephric Adenocarcinoma 6 178153 -NCIT:C27784 Metastatic Penile Carcinoma 6 178154 -NCIT:C170789 Locally Advanced Penile Carcinoma 7 178155 -NCIT:C170790 Advanced Penile Carcinoma 7 178156 -NCIT:C182111 Metastatic Squamous Cell Carcinoma of the Penis 7 178157 -NCIT:C27806 Metastatic Kidney Carcinoma 6 178158 -NCIT:C150595 Metastatic Renal Cell Carcinoma 7 178159 -NCIT:C153170 Advanced Renal Cell Carcinoma 8 178160 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 178161 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 178162 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 178163 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 178164 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 178165 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 8 178166 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 178167 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 178168 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 8 178169 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 178170 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 178171 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 8 178172 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 178173 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 178174 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 8 178175 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 178176 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 178177 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 178178 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 178179 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 178180 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 178181 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 8 178182 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 178183 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 178184 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 8 178185 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 178186 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 178187 -NCIT:C157755 Metastatic Kidney Medullary Carcinoma 7 178188 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 8 178189 -NCIT:C163965 Metastatic Renal Pelvis Carcinoma 7 178190 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 8 178191 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 178192 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 178193 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 8 178194 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 178195 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 8 178196 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 178197 -NCIT:C172617 Advanced Kidney Carcinoma 7 178198 -NCIT:C153170 Advanced Renal Cell Carcinoma 8 178199 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 178200 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 178201 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 178202 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 178203 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 178204 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 8 178205 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 178206 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 8 178207 -NCIT:C172618 Locally Advanced Kidney Carcinoma 7 178208 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 8 178209 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 178210 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 178211 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 178212 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 178213 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 178214 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 178215 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 8 178216 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 178217 -NCIT:C27818 Metastatic Ureter Carcinoma 6 178218 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 7 178219 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 8 178220 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 8 178221 -NCIT:C27819 Metastatic Urethral Carcinoma 6 178222 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 7 178223 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 178224 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 178225 -NCIT:C8946 Metastatic Prostate Carcinoma 6 178226 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 7 178227 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 8 178228 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 8 178229 -NCIT:C161609 Double-Negative Prostate Carcinoma 8 178230 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 8 178231 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 8 178232 -NCIT:C132881 Prostate Carcinoma Metastatic in the Soft Tissue 7 178233 -NCIT:C148536 Castration-Naive Prostate Carcinoma 7 178234 -NCIT:C153336 Castration-Sensitive Prostate Carcinoma 7 178235 -NCIT:C156284 Advanced Prostate Carcinoma 7 178236 -NCIT:C156286 Advanced Prostate Adenocarcinoma 8 178237 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 178238 -NCIT:C156285 Locally Advanced Prostate Carcinoma 7 178239 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 8 178240 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 178241 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 8 178242 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 178243 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 178244 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 7 178245 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 178246 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 178247 -NCIT:C161584 Prostate Carcinoma Metastatic in the Pelvic Cavity 7 178248 -NCIT:C161587 Prostate Carcinoma Metastatic in the Lymph Nodes 7 178249 -NCIT:C171265 Oligometastatic Prostate Carcinoma 7 178250 -NCIT:C36307 Prostate Carcinoma Metastatic in the Lung 7 178251 -NCIT:C36308 Prostate Carcinoma Metastatic in the Bone 7 178252 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 7 178253 -NCIT:C156286 Advanced Prostate Adenocarcinoma 8 178254 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 178255 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 8 178256 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 178257 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 8 178258 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 178259 -NCIT:C148128 Metastatic Thymic Carcinoma 5 178260 -NCIT:C148126 Locally Advanced Thymic Carcinoma 6 178261 -NCIT:C159903 Advanced Thymic Carcinoma 6 178262 -NCIT:C148130 Locally Advanced Carcinoma 5 178263 -NCIT:C148126 Locally Advanced Thymic Carcinoma 6 178264 -NCIT:C153206 Locally Advanced Lung Carcinoma 6 178265 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 7 178266 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 178267 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 178268 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 178269 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 178270 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 178271 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 8 178272 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 7 178273 -NCIT:C153213 Locally Advanced Head and Neck Carcinoma 6 178274 -NCIT:C158464 Locally Advanced Salivary Gland Carcinoma 7 178275 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 7 178276 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 178277 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 178278 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 178279 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 8 178280 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 9 178281 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 178282 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 178283 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 8 178284 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 178285 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 178286 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 7 178287 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 7 178288 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 178289 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 7 178290 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 178291 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 8 178292 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 178293 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 178294 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 8 178295 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 178296 -NCIT:C165562 Locally Advanced Lip and Oral Cavity Carcinoma 7 178297 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 8 178298 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 178299 -NCIT:C165563 Locally Advanced Paranasal Sinus Carcinoma 7 178300 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 8 178301 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 7 178302 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 178303 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 8 178304 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 8 178305 -NCIT:C153358 Locally Advanced Digestive System Carcinoma 6 178306 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 7 178307 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 178308 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 178309 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 178310 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 7 178311 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 178312 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 7 178313 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 8 178314 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 178315 -NCIT:C170778 Locally Advanced Rectal Carcinoma 8 178316 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 178317 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 178318 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 178319 -NCIT:C170910 Locally Advanced Colon Carcinoma 8 178320 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 178321 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 178322 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 178323 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 178324 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 178325 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 178326 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 178327 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 178328 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 178329 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 178330 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 178331 -NCIT:C162772 Locally Advanced Gastric Carcinoma 7 178332 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 178333 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 178334 -NCIT:C168976 Locally Advanced Esophageal Carcinoma 7 178335 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 178336 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 178337 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 178338 -NCIT:C168977 Locally Advanced Anal Carcinoma 7 178339 -NCIT:C170459 Locally Advanced Pancreatobiliary Carcinoma 7 178340 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 8 178341 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 178342 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 178343 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 178344 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 178345 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 178346 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 178347 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 178348 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 178349 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 8 178350 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 178351 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 178352 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 178353 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 8 178354 -NCIT:C171298 Locally Advanced Liver Carcinoma 7 178355 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 178356 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 8 178357 -NCIT:C154321 Locally Advanced Squamous Cell Carcinoma 6 178358 -NCIT:C153182 Locally Advanced Skin Squamous Cell Carcinoma 7 178359 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 178360 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 7 178361 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 8 178362 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 7 178363 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 178364 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 178365 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 178366 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 8 178367 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 9 178368 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 178369 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 178370 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 8 178371 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 178372 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 178373 -NCIT:C165474 Locally Advanced Squamous Cell Carcinoma of Unknown Primary 7 178374 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 7 178375 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 7 178376 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 7 178377 -NCIT:C155698 Locally Advanced Unresectable Carcinoma 6 178378 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 7 178379 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 7 178380 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 7 178381 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 7 178382 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 8 178383 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 7 178384 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 8 178385 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 7 178386 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 7 178387 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 7 178388 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 7 178389 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 8 178390 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 8 178391 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 8 178392 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 8 178393 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 7 178394 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 8 178395 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 8 178396 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 7 178397 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 7 178398 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 7 178399 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 7 178400 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 7 178401 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 7 178402 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 7 178403 -NCIT:C156770 Locally Advanced Basal Cell Carcinoma 6 178404 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 7 178405 -NCIT:C158909 Locally Advanced Neuroendocrine Carcinoma 6 178406 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 178407 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 178408 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 7 178409 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 178410 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 7 178411 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 7 178412 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 178413 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 7 178414 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 7 178415 -NCIT:C160920 Locally Advanced Breast Carcinoma 6 178416 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 7 178417 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 8 178418 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 8 178419 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 8 178420 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 8 178421 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 7 178422 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 8 178423 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 178424 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 178425 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 178426 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 8 178427 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 178428 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 178429 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 178430 -NCIT:C167069 Locally Advanced Genitourinary System Carcinoma 6 178431 -NCIT:C156285 Locally Advanced Prostate Carcinoma 7 178432 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 8 178433 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 178434 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 8 178435 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 178436 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 178437 -NCIT:C156295 Locally Advanced Cervical Carcinoma 7 178438 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 8 178439 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 178440 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 8 178441 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 178442 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 8 178443 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 7 178444 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 178445 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 178446 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 178447 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 178448 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 178449 -NCIT:C167071 Locally Advanced Bladder Carcinoma 7 178450 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 178451 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 8 178452 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 7 178453 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 178454 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 178455 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 178456 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 8 178457 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 7 178458 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 8 178459 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 7 178460 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 8 178461 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 178462 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 8 178463 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 7 178464 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 7 178465 -NCIT:C170789 Locally Advanced Penile Carcinoma 7 178466 -NCIT:C172618 Locally Advanced Kidney Carcinoma 7 178467 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 8 178468 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 178469 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 178470 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 178471 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 178472 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 178473 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 178474 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 8 178475 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 178476 -NCIT:C167204 Locally Advanced Primary Peritoneal Carcinoma 6 178477 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 7 178478 -NCIT:C168978 Locally Advanced Adenocarcinoma 6 178479 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 7 178480 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 8 178481 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 8 178482 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 7 178483 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 8 178484 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 7 178485 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 8 178486 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 7 178487 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 178488 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 7 178489 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 8 178490 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 7 178491 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 7 178492 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 8 178493 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 178494 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 178495 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 178496 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 8 178497 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 178498 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 178499 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 178500 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 7 178501 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 7 178502 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 8 178503 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 8 178504 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 7 178505 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 8 178506 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 8 178507 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 8 178508 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 8 178509 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 8 178510 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 8 178511 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 7 178512 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 178513 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 7 178514 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 8 178515 -NCIT:C174045 Locally Advanced Endometrioid Adenocarcinoma 7 178516 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 8 178517 -NCIT:C174443 Locally Advanced Adrenal Cortical Carcinoma 7 178518 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 7 178519 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 7 178520 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 7 178521 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 7 178522 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 8 178523 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 8 178524 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 7 178525 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 178526 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 178527 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 178528 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 8 178529 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 178530 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 8 178531 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 178532 -NCIT:C175493 Locally Advanced Transitional Cell Carcinoma 6 178533 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 7 178534 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 178535 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 178536 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 178537 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 178538 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 178539 -NCIT:C175669 Locally Advanced Adenoid Cystic Carcinoma 6 178540 -NCIT:C153171 Advanced Carcinoma 5 178541 -NCIT:C129861 Advanced Head and Neck Carcinoma 6 178542 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 7 178543 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 178544 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 178545 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 178546 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 178547 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 178548 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 178549 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 178550 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 7 178551 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 178552 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 8 178553 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 8 178554 -NCIT:C170784 Advanced Pharyngeal Carcinoma 7 178555 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 8 178556 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 178557 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 178558 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 178559 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 178560 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 178561 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 8 178562 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 178563 -NCIT:C177723 Advanced Salivary Gland Carcinoma 7 178564 -NCIT:C153203 Advanced Lung Carcinoma 6 178565 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 178566 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 7 178567 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 178568 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 178569 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 178570 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 178571 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 8 178572 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 7 178573 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 178574 -NCIT:C180922 Advanced Bronchogenic Carcinoma 7 178575 -NCIT:C155870 Advanced Neuroendocrine Carcinoma 6 178576 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 7 178577 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 178578 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 178579 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 7 178580 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 178581 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 178582 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 178583 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 7 178584 -NCIT:C165300 Advanced Merkel Cell Carcinoma 7 178585 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 7 178586 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 178587 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 178588 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 178589 -NCIT:C156746 Advanced Digestive System Carcinoma 6 178590 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 7 178591 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 178592 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 178593 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 7 178594 -NCIT:C160599 Advanced Esophageal Carcinoma 7 178595 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 178596 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 178597 -NCIT:C162475 Advanced Colorectal Carcinoma 7 178598 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 8 178599 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 178600 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 178601 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 178602 -NCIT:C167238 Advanced Colon Carcinoma 8 178603 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 178604 -NCIT:C170777 Advanced Rectal Carcinoma 8 178605 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 178606 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 178607 -NCIT:C165299 Advanced Gastric Carcinoma 7 178608 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 178609 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 178610 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 178611 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 178612 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 178613 -NCIT:C167336 Advanced Hepatocellular Carcinoma 7 178614 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 8 178615 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 8 178616 -NCIT:C170515 Advanced Anal Carcinoma 7 178617 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 8 178618 -NCIT:C171330 Advanced Pancreatobiliary Carcinoma 7 178619 -NCIT:C165452 Advanced Pancreatic Carcinoma 8 178620 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 178621 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 178622 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 8 178623 -NCIT:C171331 Advanced Biliary Tract Carcinoma 8 178624 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 178625 -NCIT:C162752 Advanced Cholangiocarcinoma 10 178626 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 178627 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 178628 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 178629 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 178630 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 178631 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 178632 -NCIT:C182105 Advanced Appendix Adenocarcinoma 7 178633 -NCIT:C159556 Advanced Adenocarcinoma 6 178634 -NCIT:C153170 Advanced Renal Cell Carcinoma 7 178635 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 8 178636 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 8 178637 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 8 178638 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 8 178639 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 8 178640 -NCIT:C156286 Advanced Prostate Adenocarcinoma 7 178641 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 8 178642 -NCIT:C156304 Advanced Cervical Adenocarcinoma 7 178643 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 7 178644 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 7 178645 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 8 178646 -NCIT:C162752 Advanced Cholangiocarcinoma 7 178647 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 8 178648 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 8 178649 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 8 178650 -NCIT:C165700 Advanced Breast Adenocarcinoma 7 178651 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 178652 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 178653 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 8 178654 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 178655 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 178656 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 178657 -NCIT:C166255 Advanced Gastric Adenocarcinoma 7 178658 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 8 178659 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 7 178660 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 7 178661 -NCIT:C162152 Advanced Colon Adenocarcinoma 8 178662 -NCIT:C175363 Advanced Rectal Adenocarcinoma 8 178663 -NCIT:C167336 Advanced Hepatocellular Carcinoma 7 178664 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 8 178665 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 8 178666 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 7 178667 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 8 178668 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 8 178669 -NCIT:C170807 Advanced Endometrioid Adenocarcinoma 7 178670 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 8 178671 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 178672 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 7 178673 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 8 178674 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 8 178675 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 7 178676 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 7 178677 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 7 178678 -NCIT:C176727 Advanced Lung Adenocarcinoma 7 178679 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 7 178680 -NCIT:C182105 Advanced Appendix Adenocarcinoma 7 178681 -NCIT:C191863 Advanced Adrenal Cortical Carcinoma 7 178682 -NCIT:C159903 Advanced Thymic Carcinoma 6 178683 -NCIT:C160298 Advanced NUT Carcinoma 6 178684 -NCIT:C162648 Advanced Breast Carcinoma 6 178685 -NCIT:C165700 Advanced Breast Adenocarcinoma 7 178686 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 178687 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 178688 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 8 178689 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 178690 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 178691 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 178692 -NCIT:C162653 Advanced Squamous Cell Carcinoma 6 178693 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 7 178694 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 178695 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 178696 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 178697 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 178698 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 178699 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 178700 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 178701 -NCIT:C168542 Advanced Skin Squamous Cell Carcinoma 7 178702 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 178703 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 7 178704 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 7 178705 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 7 178706 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 178707 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 7 178708 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 7 178709 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 7 178710 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 8 178711 -NCIT:C164012 Advanced Adenoid Cystic Carcinoma 6 178712 -NCIT:C164143 Advanced Genitourinary System Carcinoma 6 178713 -NCIT:C148493 Advanced Urothelial Carcinoma 7 178714 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 178715 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 178716 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 178717 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 178718 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 178719 -NCIT:C156284 Advanced Prostate Carcinoma 7 178720 -NCIT:C156286 Advanced Prostate Adenocarcinoma 8 178721 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 178722 -NCIT:C156294 Advanced Cervical Carcinoma 7 178723 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 178724 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 178725 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 8 178726 -NCIT:C159676 Advanced Endometrial Carcinoma 7 178727 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 8 178728 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 178729 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 178730 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 8 178731 -NCIT:C165458 Advanced Ovarian Carcinoma 7 178732 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 178733 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 178734 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 178735 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 178736 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 178737 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 8 178738 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 8 178739 -NCIT:C167338 Advanced Bladder Carcinoma 7 178740 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 178741 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 7 178742 -NCIT:C170786 Advanced Vulvar Carcinoma 7 178743 -NCIT:C170788 Advanced Vaginal Carcinoma 7 178744 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 178745 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 8 178746 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 178747 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 178748 -NCIT:C170790 Advanced Penile Carcinoma 7 178749 -NCIT:C172617 Advanced Kidney Carcinoma 7 178750 -NCIT:C153170 Advanced Renal Cell Carcinoma 8 178751 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 178752 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 178753 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 178754 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 178755 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 178756 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 8 178757 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 178758 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 8 178759 -NCIT:C167396 Advanced Primary Peritoneal Carcinoma 6 178760 -NCIT:C170960 Advanced Carcinoma Of Unknown Primary 6 178761 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 7 178762 -NCIT:C172091 Advanced Transitional Cell Carcinoma 6 178763 -NCIT:C148493 Advanced Urothelial Carcinoma 7 178764 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 178765 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 178766 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 178767 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 178768 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 178769 -NCIT:C172362 Advanced Basal Cell Carcinoma 6 178770 -NCIT:C153202 Metastatic Lung Carcinoma 5 178771 -NCIT:C133503 Lung Carcinoma Metastatic in the Central Nervous System 6 178772 -NCIT:C36304 Lung Carcinoma Metastatic in the Brain 7 178773 -NCIT:C153203 Advanced Lung Carcinoma 6 178774 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 178775 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 7 178776 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 178777 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 178778 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 178779 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 178780 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 8 178781 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 7 178782 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 178783 -NCIT:C180922 Advanced Bronchogenic Carcinoma 7 178784 -NCIT:C153206 Locally Advanced Lung Carcinoma 6 178785 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 7 178786 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 178787 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 178788 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 178789 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 178790 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 178791 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 8 178792 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 7 178793 -NCIT:C156092 Metastatic Lung Squamous Cell Carcinoma 6 178794 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 7 178795 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 178796 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 178797 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 178798 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 7 178799 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 178800 -NCIT:C156094 Metastatic Lung Non-Small Cell Carcinoma 6 178801 -NCIT:C128798 Metastatic Lung Non-Squamous Non-Small Cell Carcinoma 7 178802 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 178803 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 178804 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 178805 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 178806 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 178807 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 178808 -NCIT:C155908 Metastatic Lung Adenocarcinoma 8 178809 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 178810 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 178811 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 8 178812 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 178813 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 178814 -NCIT:C156093 Metastatic Lung Adenosquamous Carcinoma 7 178815 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 8 178816 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 8 178817 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 7 178818 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 178819 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 178820 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 178821 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 7 178822 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 178823 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 178824 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 178825 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 178826 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 178827 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 8 178828 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 7 178829 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 178830 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 178831 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 178832 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 178833 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 8 178834 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 6 178835 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 178836 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 7 178837 -NCIT:C187195 Oligometastatic Lung Carcinoma 6 178838 -NCIT:C36305 Lung Carcinoma Metastatic in the Bone 6 178839 -NCIT:C36306 Lung Carcinoma Metastatic in the Liver 6 178840 -NCIT:C153238 Metastatic Breast Carcinoma 5 178841 -NCIT:C133501 Breast Carcinoma Metastatic in the Central Nervous System 6 178842 -NCIT:C36301 Breast Carcinoma Metastatic in the Brain 7 178843 -NCIT:C153227 Breast Carcinoma Metastatic in the Lymph Nodes 6 178844 -NCIT:C160920 Locally Advanced Breast Carcinoma 6 178845 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 7 178846 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 8 178847 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 8 178848 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 8 178849 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 8 178850 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 7 178851 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 8 178852 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 178853 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 178854 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 178855 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 8 178856 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 178857 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 178858 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 178859 -NCIT:C161830 Metastatic BRCA-Associated Breast Carcinoma 6 178860 -NCIT:C162648 Advanced Breast Carcinoma 6 178861 -NCIT:C165700 Advanced Breast Adenocarcinoma 7 178862 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 178863 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 178864 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 8 178865 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 178866 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 178867 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 178868 -NCIT:C165698 Metastatic Breast Adenocarcinoma 6 178869 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 7 178870 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 8 178871 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 178872 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 178873 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 178874 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 8 178875 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 178876 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 178877 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 178878 -NCIT:C165700 Advanced Breast Adenocarcinoma 7 178879 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 178880 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 178881 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 8 178882 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 178883 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 178884 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 178885 -NCIT:C168777 Metastatic HER2-Negative Breast Carcinoma 7 178886 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 178887 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 178888 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 178889 -NCIT:C179554 Metastatic HER2-Low Breast Carcinoma 7 178890 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 178891 -NCIT:C180924 Metastatic HER2-Positive Breast Carcinoma 7 178892 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 8 178893 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 8 178894 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 178895 -NCIT:C181787 Metastatic Breast Inflammatory Carcinoma 7 178896 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 8 178897 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 8 178898 -NCIT:C9246 Stage IIIB Breast Inflammatory Carcinoma 8 178899 -NCIT:C185880 Metastatic Hormone Receptor-Positive Breast Carcinoma 7 178900 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 178901 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 178902 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 178903 -NCIT:C190852 Metastatic Androgen Receptor-Positive Breast Carcinoma 8 178904 -NCIT:C190856 Metastatic Estrogen Receptor-Positive Breast Carcinoma 8 178905 -NCIT:C190677 Metastatic Hormone Receptor-Negative Breast Carcinoma 7 178906 -NCIT:C153348 Metastatic Triple-Negative Breast Carcinoma 8 178907 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 178908 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 178909 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 178910 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 9 178911 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 178912 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 178913 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 7 178914 -NCIT:C76326 Metastatic Breast Ductal Carcinoma 7 178915 -NCIT:C76328 Metastatic Breast Lobular Carcinoma 7 178916 -NCIT:C179515 Oligometastatic Breast Carcinoma 6 178917 -NCIT:C28311 Metastatic Breast Carcinoma in the Skin 6 178918 -NCIT:C36300 Breast Carcinoma Metastatic in the Lung 6 178919 -NCIT:C36302 Breast Carcinoma Metastatic in the Liver 6 178920 -NCIT:C36303 Breast Carcinoma Metastatic in the Bone 6 178921 -NCIT:C153226 Breast Carcinoma Metastatic in the Spine 7 178922 -NCIT:C5178 Metastatic Breast Squamous Cell Carcinoma 6 178923 -NCIT:C153315 Metastatic Unresectable Carcinoma 5 178924 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 6 178925 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 7 178926 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 7 178927 -NCIT:C155698 Locally Advanced Unresectable Carcinoma 6 178928 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 7 178929 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 7 178930 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 7 178931 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 7 178932 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 8 178933 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 7 178934 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 8 178935 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 7 178936 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 7 178937 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 7 178938 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 7 178939 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 8 178940 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 8 178941 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 8 178942 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 8 178943 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 7 178944 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 8 178945 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 8 178946 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 7 178947 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 7 178948 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 7 178949 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 7 178950 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 7 178951 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 7 178952 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 7 178953 -NCIT:C156788 Metastatic Unresectable Basal Cell Carcinoma 6 178954 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 7 178955 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 6 178956 -NCIT:C155869 Metastatic Neuroendocrine Carcinoma 5 178957 -NCIT:C155870 Advanced Neuroendocrine Carcinoma 6 178958 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 7 178959 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 178960 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 178961 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 7 178962 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 178963 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 178964 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 178965 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 7 178966 -NCIT:C165300 Advanced Merkel Cell Carcinoma 7 178967 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 7 178968 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 178969 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 178970 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 178971 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 6 178972 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 7 178973 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 178974 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 178975 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 178976 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 7 178977 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 178978 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 178979 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 178980 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 7 178981 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 178982 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 178983 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 178984 -NCIT:C158908 Metastatic Large Cell Neuroendocrine Carcinoma 6 178985 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 7 178986 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 7 178987 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 178988 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 7 178989 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 178990 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 178991 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 7 178992 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 178993 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 178994 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 178995 -NCIT:C158909 Locally Advanced Neuroendocrine Carcinoma 6 178996 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 178997 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 178998 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 7 178999 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 179000 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 7 179001 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 7 179002 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 179003 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 7 179004 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 7 179005 -NCIT:C158911 Metastatic Small Cell Neuroendocrine Carcinoma 6 179006 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 7 179007 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 179008 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 179009 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 7 179010 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 179011 -NCIT:C191852 Metastatic Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 179012 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 179013 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 179014 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 8 179015 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 179016 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 6 179017 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 7 179018 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 7 179019 -NCIT:C162572 Metastatic Merkel Cell Carcinoma 6 179020 -NCIT:C165300 Advanced Merkel Cell Carcinoma 7 179021 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 7 179022 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 7 179023 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 6 179024 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 7 179025 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 7 179026 -NCIT:C163975 Neuroendocrine Carcinoma of Unknown Primary 6 179027 -NCIT:C156769 Metastatic Basal Cell Carcinoma 5 179028 -NCIT:C156770 Locally Advanced Basal Cell Carcinoma 6 179029 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 7 179030 -NCIT:C156788 Metastatic Unresectable Basal Cell Carcinoma 6 179031 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 7 179032 -NCIT:C172362 Advanced Basal Cell Carcinoma 6 179033 -NCIT:C157638 Metastatic Adenoid Cystic Carcinoma 5 179034 -NCIT:C156089 Metastatic Oral Cavity Adenoid Cystic Carcinoma 6 179035 -NCIT:C164012 Advanced Adenoid Cystic Carcinoma 6 179036 -NCIT:C175669 Locally Advanced Adenoid Cystic Carcinoma 6 179037 -NCIT:C160297 Metastatic NUT Carcinoma 5 179038 -NCIT:C160298 Advanced NUT Carcinoma 6 179039 -NCIT:C165537 Metastatic Non-Small Cell Carcinoma 5 179040 -NCIT:C156094 Metastatic Lung Non-Small Cell Carcinoma 6 179041 -NCIT:C128798 Metastatic Lung Non-Squamous Non-Small Cell Carcinoma 7 179042 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 179043 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 179044 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 179045 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 179046 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 179047 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 179048 -NCIT:C155908 Metastatic Lung Adenocarcinoma 8 179049 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 179050 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 179051 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 8 179052 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 179053 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 179054 -NCIT:C156093 Metastatic Lung Adenosquamous Carcinoma 7 179055 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 8 179056 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 8 179057 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 7 179058 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 179059 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 179060 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 179061 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 7 179062 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 179063 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 179064 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 179065 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 179066 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 179067 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 8 179068 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 7 179069 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 179070 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 179071 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 179072 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 179073 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 8 179074 -NCIT:C167203 Metastatic Primary Peritoneal Carcinoma 5 179075 -NCIT:C167204 Locally Advanced Primary Peritoneal Carcinoma 6 179076 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 7 179077 -NCIT:C167396 Advanced Primary Peritoneal Carcinoma 6 179078 -NCIT:C170972 Metastatic Primary Peritoneal Adenocarcinoma 6 179079 -NCIT:C171019 Metastatic Primary Peritoneal Serous Adenocarcinoma 7 179080 -NCIT:C186453 Metastatic Primary Peritoneal High Grade Serous Adenocarcinoma 8 179081 -NCIT:C179654 Metastatic Carcinoma in the Peritoneum 5 179082 -NCIT:C27382 Peritoneal Carcinomatosis 6 179083 -NCIT:C3345 Pseudomyxoma Peritonei 7 179084 -NCIT:C179179 Recurrent Pseudomyxoma Peritonei 8 179085 -NCIT:C179180 Refractory Pseudomyxoma Peritonei 8 179086 -NCIT:C188076 Metastatic Carcinoma in the Rectum 5 179087 -NCIT:C188077 Metastatic Carcinoma in the Pancreas 5 179088 -NCIT:C27381 Metastatic Carcinoma in the Adrenal Cortex 5 179089 -NCIT:C27408 Metastatic Carcinoma in the Lung 5 179090 -NCIT:C153224 Colorectal Carcinoma Metastatic in the Lung 6 179091 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 7 179092 -NCIT:C36300 Breast Carcinoma Metastatic in the Lung 6 179093 -NCIT:C36307 Prostate Carcinoma Metastatic in the Lung 6 179094 -NCIT:C27469 Disseminated Carcinoma 5 179095 -NCIT:C27185 Disseminated Adenocarcinoma 6 179096 -NCIT:C4829 Disseminated Squamous Cell Carcinoma 6 179097 -NCIT:C36082 Metastatic Carcinoma in the Bone 5 179098 -NCIT:C36303 Breast Carcinoma Metastatic in the Bone 6 179099 -NCIT:C153226 Breast Carcinoma Metastatic in the Spine 7 179100 -NCIT:C36305 Lung Carcinoma Metastatic in the Bone 6 179101 -NCIT:C36308 Prostate Carcinoma Metastatic in the Bone 6 179102 -NCIT:C3693 Carcinomatosis 5 179103 -NCIT:C168666 Gastrointestinal Carcinomatosis 6 179104 -NCIT:C27382 Peritoneal Carcinomatosis 6 179105 -NCIT:C3345 Pseudomyxoma Peritonei 7 179106 -NCIT:C179179 Recurrent Pseudomyxoma Peritonei 8 179107 -NCIT:C179180 Refractory Pseudomyxoma Peritonei 8 179108 -NCIT:C27383 Meningeal Carcinomatosis 6 179109 -NCIT:C27384 Pleural Carcinomatosis 6 179110 -NCIT:C27385 Pericardial Carcinomatosis 6 179111 -NCIT:C3870 Lymphangitic Carcinomatosis 6 179112 -NCIT:C3812 Carcinoma of Unknown Primary 5 179113 -NCIT:C162595 Head and Neck Carcinoma of Unknown Primary 6 179114 -NCIT:C173585 Neck Carcinoma of Unknown Primary 7 179115 -NCIT:C7713 Neck Squamous Cell Carcinoma of Unknown Primary 8 179116 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 9 179117 -NCIT:C187051 Human Papillomavirus-Related Head and Neck Squamous Cell Carcinoma of Unknown Primary 7 179118 -NCIT:C190149 Human Papillomavirus-Negative Head and Neck Squamous Cell Carcinoma of Unknown Primary 7 179119 -NCIT:C163975 Neuroendocrine Carcinoma of Unknown Primary 6 179120 -NCIT:C170960 Advanced Carcinoma Of Unknown Primary 6 179121 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 7 179122 -NCIT:C170961 Resectable Carcinoma of Unknown Primary 6 179123 -NCIT:C170962 Resectable Adenocarcinoma of Unknown Primary 7 179124 -NCIT:C4039 Adenocarcinoma of Unknown Primary 6 179125 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 7 179126 -NCIT:C170962 Resectable Adenocarcinoma of Unknown Primary 7 179127 -NCIT:C8099 Squamous Cell Carcinoma of Unknown Primary 6 179128 -NCIT:C165474 Locally Advanced Squamous Cell Carcinoma of Unknown Primary 7 179129 -NCIT:C187051 Human Papillomavirus-Related Head and Neck Squamous Cell Carcinoma of Unknown Primary 7 179130 -NCIT:C190149 Human Papillomavirus-Negative Head and Neck Squamous Cell Carcinoma of Unknown Primary 7 179131 -NCIT:C7713 Neck Squamous Cell Carcinoma of Unknown Primary 7 179132 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 8 179133 -NCIT:C8100 Undifferentiated Carcinoma of Unknown Primary 6 179134 -NCIT:C9181 Recurrent Carcinoma of Unknown Primary 6 179135 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 7 179136 -NCIT:C4104 Metastatic Squamous Cell Carcinoma 5 179137 -NCIT:C143013 Metastatic Skin Squamous Cell Carcinoma 6 179138 -NCIT:C153182 Locally Advanced Skin Squamous Cell Carcinoma 7 179139 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 179140 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 7 179141 -NCIT:C168542 Advanced Skin Squamous Cell Carcinoma 7 179142 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 179143 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 179144 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 179145 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 179146 -NCIT:C148153 Metastatic Head and Neck Squamous Cell Carcinoma 6 179147 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 7 179148 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 179149 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 179150 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 179151 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 179152 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 179153 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 179154 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 179155 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 7 179156 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 179157 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 179158 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 7 179159 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 179160 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 179161 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 7 179162 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 7 179163 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 179164 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 179165 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 179166 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 8 179167 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 9 179168 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 179169 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 179170 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 8 179171 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 179172 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 179173 -NCIT:C162882 Metastatic Sinonasal Squamous Cell Carcinoma 7 179174 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 179175 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 179176 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 179177 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 179178 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 179179 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 179180 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 179181 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 179182 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 179183 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 179184 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 7 179185 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 7 179186 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 8 179187 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 179188 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 179189 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 179190 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 8 179191 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 179192 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 179193 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 179194 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 179195 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 179196 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 8 179197 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 179198 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 179199 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 179200 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 179201 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 179202 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 179203 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 6 179204 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 7 179205 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 7 179206 -NCIT:C154321 Locally Advanced Squamous Cell Carcinoma 6 179207 -NCIT:C153182 Locally Advanced Skin Squamous Cell Carcinoma 7 179208 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 179209 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 7 179210 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 8 179211 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 7 179212 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 179213 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 179214 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 179215 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 8 179216 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 9 179217 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 179218 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 179219 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 8 179220 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 179221 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 179222 -NCIT:C165474 Locally Advanced Squamous Cell Carcinoma of Unknown Primary 7 179223 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 7 179224 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 7 179225 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 7 179226 -NCIT:C156075 Metastatic Esophageal Squamous Cell Carcinoma 6 179227 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 7 179228 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 7 179229 -NCIT:C156092 Metastatic Lung Squamous Cell Carcinoma 6 179230 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 7 179231 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 179232 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 179233 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 179234 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 7 179235 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 179236 -NCIT:C157452 Metastatic Squamous Cell Carcinoma in the Cervical Lymph Nodes 6 179237 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 6 179238 -NCIT:C162653 Advanced Squamous Cell Carcinoma 6 179239 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 7 179240 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 179241 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 179242 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 179243 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 179244 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 179245 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 179246 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 179247 -NCIT:C168542 Advanced Skin Squamous Cell Carcinoma 7 179248 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 179249 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 7 179250 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 7 179251 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 7 179252 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 179253 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 7 179254 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 7 179255 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 7 179256 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 8 179257 -NCIT:C169103 Metastatic Anal Squamous Cell Carcinoma 6 179258 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 7 179259 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 8 179260 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 6 179261 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 7 179262 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 7 179263 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 6 179264 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 6 179265 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 7 179266 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 8 179267 -NCIT:C182111 Metastatic Squamous Cell Carcinoma of the Penis 6 179268 -NCIT:C188112 Metastatic Squamous Cell Carcinoma in the Breast 6 179269 -NCIT:C188113 Metastatic Squamous Cell Carcinoma in the Skin 6 179270 -NCIT:C190771 Metastatic Pancreatic Squamous Cell Carcinoma 6 179271 -NCIT:C4829 Disseminated Squamous Cell Carcinoma 6 179272 -NCIT:C5178 Metastatic Breast Squamous Cell Carcinoma 6 179273 -NCIT:C8099 Squamous Cell Carcinoma of Unknown Primary 6 179274 -NCIT:C165474 Locally Advanced Squamous Cell Carcinoma of Unknown Primary 7 179275 -NCIT:C187051 Human Papillomavirus-Related Head and Neck Squamous Cell Carcinoma of Unknown Primary 7 179276 -NCIT:C190149 Human Papillomavirus-Negative Head and Neck Squamous Cell Carcinoma of Unknown Primary 7 179277 -NCIT:C7713 Neck Squamous Cell Carcinoma of Unknown Primary 7 179278 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 8 179279 -NCIT:C4124 Metastatic Adenocarcinoma 5 179280 -NCIT:C150577 Metastatic Gastroesophageal Junction Adenocarcinoma 6 179281 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 7 179282 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 7 179283 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 179284 -NCIT:C150595 Metastatic Renal Cell Carcinoma 6 179285 -NCIT:C153170 Advanced Renal Cell Carcinoma 7 179286 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 8 179287 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 8 179288 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 8 179289 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 8 179290 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 8 179291 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 7 179292 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 8 179293 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 8 179294 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 7 179295 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 8 179296 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 8 179297 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 7 179298 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 8 179299 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 8 179300 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 7 179301 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 8 179302 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 8 179303 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 8 179304 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 8 179305 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 8 179306 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 8 179307 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 7 179308 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 8 179309 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 8 179310 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 7 179311 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 8 179312 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 8 179313 -NCIT:C153319 Metastatic Gastric Adenocarcinoma 6 179314 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 7 179315 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 8 179316 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 8 179317 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 7 179318 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 8 179319 -NCIT:C165630 Metastatic Proximal Gastric Adenocarcinoma 7 179320 -NCIT:C166121 Oligometastatic Gastric Adenocarcinoma 7 179321 -NCIT:C166255 Advanced Gastric Adenocarcinoma 7 179322 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 8 179323 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 6 179324 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 7 179325 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 8 179326 -NCIT:C156304 Advanced Cervical Adenocarcinoma 7 179327 -NCIT:C154091 Metastatic Hepatocellular Carcinoma 6 179328 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 7 179329 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 8 179330 -NCIT:C167336 Advanced Hepatocellular Carcinoma 7 179331 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 8 179332 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 8 179333 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 7 179334 -NCIT:C155908 Metastatic Lung Adenocarcinoma 6 179335 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 7 179336 -NCIT:C176727 Advanced Lung Adenocarcinoma 7 179337 -NCIT:C156070 Metastatic Adrenal Cortical Carcinoma 6 179338 -NCIT:C174443 Locally Advanced Adrenal Cortical Carcinoma 7 179339 -NCIT:C191863 Advanced Adrenal Cortical Carcinoma 7 179340 -NCIT:C156074 Metastatic Esophageal Adenocarcinoma 6 179341 -NCIT:C166120 Oligometastatic Esophageal Adenocarcinoma 7 179342 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 7 179343 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 7 179344 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 179345 -NCIT:C172249 Metastatic Distal Esophagus Adenocarcinoma 7 179346 -NCIT:C157623 Metastatic Cholangiocarcinoma 6 179347 -NCIT:C162752 Advanced Cholangiocarcinoma 7 179348 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 8 179349 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 8 179350 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 8 179351 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 7 179352 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 8 179353 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 8 179354 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 7 179355 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 8 179356 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 7 179357 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 8 179358 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 8 179359 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 7 179360 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 8 179361 -NCIT:C159556 Advanced Adenocarcinoma 6 179362 -NCIT:C153170 Advanced Renal Cell Carcinoma 7 179363 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 8 179364 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 8 179365 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 8 179366 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 8 179367 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 8 179368 -NCIT:C156286 Advanced Prostate Adenocarcinoma 7 179369 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 8 179370 -NCIT:C156304 Advanced Cervical Adenocarcinoma 7 179371 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 7 179372 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 7 179373 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 8 179374 -NCIT:C162752 Advanced Cholangiocarcinoma 7 179375 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 8 179376 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 8 179377 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 8 179378 -NCIT:C165700 Advanced Breast Adenocarcinoma 7 179379 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 179380 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 179381 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 8 179382 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 179383 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 179384 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 179385 -NCIT:C166255 Advanced Gastric Adenocarcinoma 7 179386 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 8 179387 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 7 179388 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 7 179389 -NCIT:C162152 Advanced Colon Adenocarcinoma 8 179390 -NCIT:C175363 Advanced Rectal Adenocarcinoma 8 179391 -NCIT:C167336 Advanced Hepatocellular Carcinoma 7 179392 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 8 179393 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 8 179394 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 7 179395 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 8 179396 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 8 179397 -NCIT:C170807 Advanced Endometrioid Adenocarcinoma 7 179398 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 8 179399 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 179400 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 7 179401 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 8 179402 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 8 179403 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 7 179404 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 7 179405 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 7 179406 -NCIT:C176727 Advanced Lung Adenocarcinoma 7 179407 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 7 179408 -NCIT:C182105 Advanced Appendix Adenocarcinoma 7 179409 -NCIT:C191863 Advanced Adrenal Cortical Carcinoma 7 179410 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 6 179411 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 7 179412 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 8 179413 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 8 179414 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 7 179415 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 8 179416 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 8 179417 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 7 179418 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 8 179419 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 8 179420 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 7 179421 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 8 179422 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 8 179423 -NCIT:C161048 Metastatic Colorectal Adenocarcinoma 6 179424 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 7 179425 -NCIT:C160819 Metastatic Colon Adenocarcinoma 7 179426 -NCIT:C162152 Advanced Colon Adenocarcinoma 8 179427 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 8 179428 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 179429 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 7 179430 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 8 179431 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 179432 -NCIT:C175363 Advanced Rectal Adenocarcinoma 8 179433 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 7 179434 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 7 179435 -NCIT:C162152 Advanced Colon Adenocarcinoma 8 179436 -NCIT:C175363 Advanced Rectal Adenocarcinoma 8 179437 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 7 179438 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 179439 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 179440 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 179441 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 8 179442 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 179443 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 8 179444 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 179445 -NCIT:C165698 Metastatic Breast Adenocarcinoma 6 179446 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 7 179447 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 8 179448 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 179449 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 179450 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 179451 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 8 179452 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 179453 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 179454 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 179455 -NCIT:C165700 Advanced Breast Adenocarcinoma 7 179456 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 179457 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 179458 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 8 179459 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 179460 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 179461 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 179462 -NCIT:C168777 Metastatic HER2-Negative Breast Carcinoma 7 179463 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 179464 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 179465 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 179466 -NCIT:C179554 Metastatic HER2-Low Breast Carcinoma 7 179467 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 179468 -NCIT:C180924 Metastatic HER2-Positive Breast Carcinoma 7 179469 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 8 179470 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 8 179471 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 179472 -NCIT:C181787 Metastatic Breast Inflammatory Carcinoma 7 179473 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 8 179474 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 8 179475 -NCIT:C9246 Stage IIIB Breast Inflammatory Carcinoma 8 179476 -NCIT:C185880 Metastatic Hormone Receptor-Positive Breast Carcinoma 7 179477 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 179478 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 179479 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 179480 -NCIT:C190852 Metastatic Androgen Receptor-Positive Breast Carcinoma 8 179481 -NCIT:C190856 Metastatic Estrogen Receptor-Positive Breast Carcinoma 8 179482 -NCIT:C190677 Metastatic Hormone Receptor-Negative Breast Carcinoma 7 179483 -NCIT:C153348 Metastatic Triple-Negative Breast Carcinoma 8 179484 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 179485 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 179486 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 179487 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 9 179488 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 179489 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 179490 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 7 179491 -NCIT:C76326 Metastatic Breast Ductal Carcinoma 7 179492 -NCIT:C76328 Metastatic Breast Lobular Carcinoma 7 179493 -NCIT:C168978 Locally Advanced Adenocarcinoma 6 179494 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 7 179495 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 8 179496 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 8 179497 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 7 179498 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 8 179499 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 7 179500 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 8 179501 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 7 179502 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 179503 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 7 179504 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 8 179505 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 7 179506 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 7 179507 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 8 179508 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 179509 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 179510 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 179511 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 8 179512 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 179513 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 179514 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 179515 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 7 179516 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 7 179517 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 8 179518 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 8 179519 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 7 179520 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 8 179521 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 8 179522 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 8 179523 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 8 179524 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 8 179525 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 8 179526 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 7 179527 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 179528 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 7 179529 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 8 179530 -NCIT:C174045 Locally Advanced Endometrioid Adenocarcinoma 7 179531 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 8 179532 -NCIT:C174443 Locally Advanced Adrenal Cortical Carcinoma 7 179533 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 7 179534 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 7 179535 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 7 179536 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 7 179537 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 8 179538 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 8 179539 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 7 179540 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 179541 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 179542 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 179543 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 8 179544 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 179545 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 8 179546 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 179547 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 6 179548 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 7 179549 -NCIT:C170972 Metastatic Primary Peritoneal Adenocarcinoma 6 179550 -NCIT:C171019 Metastatic Primary Peritoneal Serous Adenocarcinoma 7 179551 -NCIT:C186453 Metastatic Primary Peritoneal High Grade Serous Adenocarcinoma 8 179552 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 6 179553 -NCIT:C173979 Metastatic Differentiated Thyroid Gland Carcinoma 6 179554 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 7 179555 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 8 179556 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 9 179557 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 7 179558 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 7 179559 -NCIT:C174046 Metastatic Poorly Differentiated Thyroid Gland Carcinoma 6 179560 -NCIT:C182104 Metastatic Appendix Adenocarcinoma 6 179561 -NCIT:C162274 Metastatic Appendix Mucinous Adenocarcinoma 7 179562 -NCIT:C182105 Advanced Appendix Adenocarcinoma 7 179563 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 6 179564 -NCIT:C185381 Metastatic Mesonephric Adenocarcinoma 6 179565 -NCIT:C27185 Disseminated Adenocarcinoma 6 179566 -NCIT:C3345 Pseudomyxoma Peritonei 6 179567 -NCIT:C179179 Recurrent Pseudomyxoma Peritonei 7 179568 -NCIT:C179180 Refractory Pseudomyxoma Peritonei 7 179569 -NCIT:C4039 Adenocarcinoma of Unknown Primary 6 179570 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 7 179571 -NCIT:C170962 Resectable Adenocarcinoma of Unknown Primary 7 179572 -NCIT:C66717 Metastatic Signet Ring Cell Carcinoma 6 179573 -NCIT:C3153 Krukenberg Tumor 7 179574 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 7 179575 -NCIT:C8933 Metastatic Pancreatic Adenocarcinoma 6 179576 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 7 179577 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 8 179578 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 8 179579 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 7 179580 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 8 179581 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 8 179582 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 8 179583 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 7 179584 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 8 179585 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 7 179586 -NCIT:C8934 Metastatic Small Intestinal Adenocarcinoma 6 179587 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 7 179588 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 6 179589 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 7 179590 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 8 179591 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 7 179592 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 8 179593 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 8 179594 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 7 179595 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 8 179596 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 8 179597 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 7 179598 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 8 179599 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 7 179600 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 7 179601 -NCIT:C8943 Metastatic Endometrioid Adenocarcinoma 6 179602 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 7 179603 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 8 179604 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 8 179605 -NCIT:C170807 Advanced Endometrioid Adenocarcinoma 7 179606 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 8 179607 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 179608 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 7 179609 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 179610 -NCIT:C174045 Locally Advanced Endometrioid Adenocarcinoma 7 179611 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 8 179612 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 6 179613 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 7 179614 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 6 179615 -NCIT:C156286 Advanced Prostate Adenocarcinoma 7 179616 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 8 179617 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 7 179618 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 8 179619 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 7 179620 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 8 179621 -NCIT:C9044 Metastatic Parathyroid Gland Carcinoma 6 179622 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 7 179623 -NCIT:C5628 Metastatic Carcinoma in the Skin 5 179624 -NCIT:C188113 Metastatic Squamous Cell Carcinoma in the Skin 6 179625 -NCIT:C28311 Metastatic Breast Carcinoma in the Skin 6 179626 -NCIT:C6334 Metastatic Carcinoma in the Uterine Cervix 5 179627 -NCIT:C9276 Metastatic Carcinoma in the Adrenal Medulla 5 179628 -NCIT:C96767 Metastatic Carcinoma in the Liver 5 179629 -NCIT:C157366 Colorectal Carcinoma Metastatic in the Liver 6 179630 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 7 179631 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 7 179632 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 7 179633 -NCIT:C36302 Breast Carcinoma Metastatic in the Liver 6 179634 -NCIT:C36306 Lung Carcinoma Metastatic in the Liver 6 179635 -NCIT:C3580 Metastatic Malignant Neoplasm in the Bone 4 179636 -NCIT:C185156 Plasma Cell Myeloma-Induced Bone Disease 5 179637 -NCIT:C36082 Metastatic Carcinoma in the Bone 5 179638 -NCIT:C36303 Breast Carcinoma Metastatic in the Bone 6 179639 -NCIT:C153226 Breast Carcinoma Metastatic in the Spine 7 179640 -NCIT:C36305 Lung Carcinoma Metastatic in the Bone 6 179641 -NCIT:C36308 Prostate Carcinoma Metastatic in the Bone 6 179642 -NCIT:C4881 Metastatic Malignant Neoplasm in the Spine 5 179643 -NCIT:C153226 Breast Carcinoma Metastatic in the Spine 6 179644 -NCIT:C35933 Distantly Metastatic Malignant Neoplasm 4 179645 -NCIT:C4582 Metastatic Malignant Neoplasm in the Bone Marrow 4 179646 -NCIT:C4584 Metastatic Malignant Neoplasm in the Testis 4 179647 -NCIT:C4586 Metastatic Malignant Neoplasm in the Eye 4 179648 -NCIT:C174496 Metastatic Malignant Neoplasm in the Conjunctiva 5 179649 -NCIT:C174507 Metastatic Malignant Neoplasm in the Uvea 5 179650 -NCIT:C6103 Metastatic Malignant Neoplasm in the Iris 6 179651 -NCIT:C8553 Metastatic Malignant Neoplasm in the Ciliary Body 6 179652 -NCIT:C8554 Metastatic Malignant Neoplasm in the Choroid 6 179653 -NCIT:C175470 Secondary Choroidal Non-Hodgkin Lymphoma 7 179654 -NCIT:C175327 Metastatic Malignant Neoplasm in the Lacrimal System 5 179655 -NCIT:C175329 Metastatic Malignant Neoplasm in the Lacrimal Gland 6 179656 -NCIT:C175330 Metastatic Malignant Neoplasm in the Lacrimal Drainage System 6 179657 -NCIT:C8555 Metastatic Malignant Neoplasm in the Retina 5 179658 -NCIT:C4887 Metastatic Malignant Neoplasm in the Trachea 4 179659 -NCIT:C4904 Metastatic Malignant Neoplasm in the Lymph Nodes 4 179660 -NCIT:C153227 Breast Carcinoma Metastatic in the Lymph Nodes 5 179661 -NCIT:C157452 Metastatic Squamous Cell Carcinoma in the Cervical Lymph Nodes 5 179662 -NCIT:C161587 Prostate Carcinoma Metastatic in the Lymph Nodes 5 179663 -NCIT:C175222 Metastatic Malignant Neoplasm in the Regional Lymph Nodes 5 179664 -NCIT:C175934 Metastatic Malignant Neoplasm in the Supraclavicular Lymph Nodes 5 179665 -NCIT:C183510 Metastatic Malignant Neoplasm in the Mediastinal Lymph Nodes 5 179666 -NCIT:C5629 Metastatic Malignant Neoplasm in the Skin 4 179667 -NCIT:C185155 Extramedullary Disease in Plasma Cell Myeloma Involving the Skin 5 179668 -NCIT:C5628 Metastatic Carcinoma in the Skin 5 179669 -NCIT:C188113 Metastatic Squamous Cell Carcinoma in the Skin 6 179670 -NCIT:C28311 Metastatic Breast Carcinoma in the Skin 6 179671 -NCIT:C6332 Metastatic Malignant Neoplasm in the Vulva 4 179672 -NCIT:C6333 Metastatic Malignant Neoplasm in the Vagina 4 179673 -NCIT:C6385 Metastatic Malignant Neoplasm in the Uterine Cervix 4 179674 -NCIT:C6334 Metastatic Carcinoma in the Uterine Cervix 5 179675 -NCIT:C7080 Metastatic Malignant Neoplasm in the Prostate Gland 4 179676 -NCIT:C39899 Secondary Prostate Urothelial Carcinoma 5 179677 -NCIT:C7456 Metastatic Malignant Neoplasm in the Ovary 4 179678 -NCIT:C3153 Krukenberg Tumor 5 179679 -NCIT:C7511 Metastatic Malignant Neoplasm in the Breast 4 179680 -NCIT:C188112 Metastatic Squamous Cell Carcinoma in the Breast 5 179681 -NCIT:C8524 Locally Advanced Malignant Neoplasm 4 179682 -NCIT:C133093 Locally Advanced Malignant Solid Neoplasm 5 179683 -NCIT:C146857 Locally Advanced Epithelioid Hemangioendothelioma 5 179684 -NCIT:C148130 Locally Advanced Carcinoma 5 179685 -NCIT:C148126 Locally Advanced Thymic Carcinoma 6 179686 -NCIT:C153206 Locally Advanced Lung Carcinoma 6 179687 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 7 179688 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 179689 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 179690 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 179691 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 179692 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 179693 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 8 179694 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 7 179695 -NCIT:C153213 Locally Advanced Head and Neck Carcinoma 6 179696 -NCIT:C158464 Locally Advanced Salivary Gland Carcinoma 7 179697 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 7 179698 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 179699 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 179700 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 179701 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 8 179702 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 9 179703 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 179704 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 179705 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 8 179706 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 179707 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 179708 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 7 179709 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 7 179710 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 179711 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 7 179712 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 179713 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 8 179714 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 179715 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 179716 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 8 179717 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 179718 -NCIT:C165562 Locally Advanced Lip and Oral Cavity Carcinoma 7 179719 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 8 179720 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 179721 -NCIT:C165563 Locally Advanced Paranasal Sinus Carcinoma 7 179722 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 8 179723 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 7 179724 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 179725 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 8 179726 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 8 179727 -NCIT:C153358 Locally Advanced Digestive System Carcinoma 6 179728 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 7 179729 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 179730 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 179731 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 179732 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 7 179733 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 179734 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 7 179735 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 8 179736 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 179737 -NCIT:C170778 Locally Advanced Rectal Carcinoma 8 179738 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 179739 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 179740 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 179741 -NCIT:C170910 Locally Advanced Colon Carcinoma 8 179742 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 179743 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 179744 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 179745 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 179746 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 179747 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 179748 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 179749 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 179750 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 179751 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 179752 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 179753 -NCIT:C162772 Locally Advanced Gastric Carcinoma 7 179754 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 179755 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 179756 -NCIT:C168976 Locally Advanced Esophageal Carcinoma 7 179757 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 179758 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 179759 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 179760 -NCIT:C168977 Locally Advanced Anal Carcinoma 7 179761 -NCIT:C170459 Locally Advanced Pancreatobiliary Carcinoma 7 179762 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 8 179763 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 179764 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 179765 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 179766 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 179767 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 179768 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 179769 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 179770 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 179771 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 8 179772 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 179773 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 179774 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 179775 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 8 179776 -NCIT:C171298 Locally Advanced Liver Carcinoma 7 179777 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 179778 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 8 179779 -NCIT:C154321 Locally Advanced Squamous Cell Carcinoma 6 179780 -NCIT:C153182 Locally Advanced Skin Squamous Cell Carcinoma 7 179781 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 179782 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 7 179783 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 8 179784 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 7 179785 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 179786 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 179787 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 179788 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 8 179789 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 9 179790 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 179791 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 179792 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 8 179793 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 179794 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 179795 -NCIT:C165474 Locally Advanced Squamous Cell Carcinoma of Unknown Primary 7 179796 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 7 179797 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 7 179798 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 7 179799 -NCIT:C155698 Locally Advanced Unresectable Carcinoma 6 179800 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 7 179801 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 7 179802 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 7 179803 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 7 179804 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 8 179805 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 7 179806 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 8 179807 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 7 179808 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 7 179809 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 7 179810 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 7 179811 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 8 179812 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 8 179813 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 8 179814 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 8 179815 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 7 179816 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 8 179817 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 8 179818 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 7 179819 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 7 179820 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 7 179821 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 7 179822 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 7 179823 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 7 179824 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 7 179825 -NCIT:C156770 Locally Advanced Basal Cell Carcinoma 6 179826 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 7 179827 -NCIT:C158909 Locally Advanced Neuroendocrine Carcinoma 6 179828 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 179829 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 179830 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 7 179831 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 179832 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 7 179833 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 7 179834 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 179835 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 7 179836 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 7 179837 -NCIT:C160920 Locally Advanced Breast Carcinoma 6 179838 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 7 179839 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 8 179840 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 8 179841 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 8 179842 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 8 179843 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 7 179844 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 8 179845 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 179846 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 179847 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 179848 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 8 179849 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 179850 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 179851 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 179852 -NCIT:C167069 Locally Advanced Genitourinary System Carcinoma 6 179853 -NCIT:C156285 Locally Advanced Prostate Carcinoma 7 179854 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 8 179855 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 179856 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 8 179857 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 179858 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 179859 -NCIT:C156295 Locally Advanced Cervical Carcinoma 7 179860 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 8 179861 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 179862 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 8 179863 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 179864 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 8 179865 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 7 179866 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 179867 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 179868 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 179869 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 179870 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 179871 -NCIT:C167071 Locally Advanced Bladder Carcinoma 7 179872 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 179873 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 8 179874 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 7 179875 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 179876 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 179877 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 179878 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 8 179879 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 7 179880 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 8 179881 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 7 179882 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 8 179883 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 179884 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 8 179885 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 7 179886 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 7 179887 -NCIT:C170789 Locally Advanced Penile Carcinoma 7 179888 -NCIT:C172618 Locally Advanced Kidney Carcinoma 7 179889 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 8 179890 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 179891 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 179892 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 179893 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 179894 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 179895 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 179896 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 8 179897 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 179898 -NCIT:C167204 Locally Advanced Primary Peritoneal Carcinoma 6 179899 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 7 179900 -NCIT:C168978 Locally Advanced Adenocarcinoma 6 179901 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 7 179902 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 8 179903 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 8 179904 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 7 179905 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 8 179906 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 7 179907 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 8 179908 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 7 179909 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 179910 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 7 179911 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 8 179912 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 7 179913 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 7 179914 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 8 179915 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 179916 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 179917 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 179918 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 8 179919 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 179920 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 179921 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 179922 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 7 179923 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 7 179924 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 8 179925 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 8 179926 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 7 179927 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 8 179928 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 8 179929 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 8 179930 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 8 179931 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 8 179932 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 8 179933 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 7 179934 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 179935 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 7 179936 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 8 179937 -NCIT:C174045 Locally Advanced Endometrioid Adenocarcinoma 7 179938 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 8 179939 -NCIT:C174443 Locally Advanced Adrenal Cortical Carcinoma 7 179940 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 7 179941 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 7 179942 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 7 179943 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 7 179944 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 8 179945 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 8 179946 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 7 179947 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 179948 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 179949 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 179950 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 8 179951 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 179952 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 8 179953 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 179954 -NCIT:C175493 Locally Advanced Transitional Cell Carcinoma 6 179955 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 7 179956 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 179957 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 179958 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 179959 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 179960 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 179961 -NCIT:C175669 Locally Advanced Adenoid Cystic Carcinoma 6 179962 -NCIT:C148494 Locally Advanced Melanoma 5 179963 -NCIT:C171285 Locally Advanced Cutaneous Melanoma 6 179964 -NCIT:C171297 Locally Advanced Non-Cutaneous Melanoma 6 179965 -NCIT:C171296 Locally Advanced Ocular Melanoma 7 179966 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 8 179967 -NCIT:C153071 Locally Advanced Sarcoma 5 179968 -NCIT:C146856 Locally Advanced Angiosarcoma 6 179969 -NCIT:C153066 Locally Advanced Soft Tissue Sarcoma 6 179970 -NCIT:C150739 Locally Advanced Gastrointestinal Stromal Tumor 7 179971 -NCIT:C153476 Locally Advanced Unresectable Soft Tissue Sarcoma 7 179972 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 8 179973 -NCIT:C160919 Locally Advanced Undifferentiated Pleomorphic Sarcoma 7 179974 -NCIT:C164076 Locally Advanced Alveolar Soft Part Sarcoma 7 179975 -NCIT:C166415 Locally Advanced Rhabdomyosarcoma 7 179976 -NCIT:C167378 Locally Advanced Epithelioid Sarcoma 7 179977 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 7 179978 -NCIT:C171399 Locally Advanced Synovial Sarcoma 7 179979 -NCIT:C180875 Locally Advanced Desmoplastic Small Round Cell Tumor 7 179980 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 7 179981 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 179982 -NCIT:C153070 Locally Advanced Bone Sarcoma 6 179983 -NCIT:C153475 Locally Advanced Unresectable Bone Sarcoma 7 179984 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 8 179985 -NCIT:C153477 Locally Advanced Unresectable Sarcoma 6 179986 -NCIT:C153475 Locally Advanced Unresectable Bone Sarcoma 7 179987 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 8 179988 -NCIT:C153476 Locally Advanced Unresectable Soft Tissue Sarcoma 7 179989 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 8 179990 -NCIT:C160916 Locally Advanced Liposarcoma 6 179991 -NCIT:C164071 Locally Advanced Dedifferentiated Liposarcoma 7 179992 -NCIT:C160917 Locally Advanced Leiomyosarcoma 6 179993 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 7 179994 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 179995 -NCIT:C164074 Locally Advanced Malignant Peripheral Nerve Sheath Tumor 6 179996 -NCIT:C164080 Locally Advanced Ewing Sarcoma 6 179997 -NCIT:C168668 Locally Advanced High Grade Sarcoma 6 179998 -NCIT:C170953 Locally Advanced Chondrosarcoma 6 179999 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 7 180000 -NCIT:C171317 Locally Advanced Fibrosarcoma 6 180001 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 7 180002 -NCIT:C175665 Locally Advanced Osteosarcoma 6 180003 -NCIT:C153278 Locally Advanced Unresectable Malignant Neoplasm 5 180004 -NCIT:C153477 Locally Advanced Unresectable Sarcoma 6 180005 -NCIT:C153475 Locally Advanced Unresectable Bone Sarcoma 7 180006 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 8 180007 -NCIT:C153476 Locally Advanced Unresectable Soft Tissue Sarcoma 7 180008 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 8 180009 -NCIT:C155698 Locally Advanced Unresectable Carcinoma 6 180010 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 7 180011 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 7 180012 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 7 180013 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 7 180014 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 8 180015 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 7 180016 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 8 180017 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 7 180018 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 7 180019 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 7 180020 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 7 180021 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 8 180022 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 8 180023 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 8 180024 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 8 180025 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 7 180026 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 8 180027 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 8 180028 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 7 180029 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 7 180030 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 7 180031 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 7 180032 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 7 180033 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 7 180034 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 7 180035 -NCIT:C158090 Locally Advanced Unresectable Digestive System Neuroendocrine Neoplasm 6 180036 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 6 180037 -NCIT:C153324 Locally Advanced Chordoma 5 180038 -NCIT:C166182 Locally Advanced Primary Malignant Central Nervous System Neoplasm 5 180039 -NCIT:C180874 Locally Advanced Primary Malignant Brain Neoplasm 6 180040 -NCIT:C180876 Locally Advanced Glioma 6 180041 -NCIT:C170980 Locally Advanced Glioblastoma 7 180042 -NCIT:C167332 Locally Advanced Neuroendocrine Neoplasm 5 180043 -NCIT:C133713 Locally Advanced Paraganglioma 6 180044 -NCIT:C157129 Locally Advanced Adrenal Gland Pheochromocytoma 7 180045 -NCIT:C158909 Locally Advanced Neuroendocrine Carcinoma 6 180046 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 180047 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 180048 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 7 180049 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 180050 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 7 180051 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 7 180052 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 180053 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 7 180054 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 7 180055 -NCIT:C167333 Locally Advanced Neuroendocrine Tumor 6 180056 -NCIT:C163956 Locally Advanced Pituitary Neuroendocrine Tumor 7 180057 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 7 180058 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 7 180059 -NCIT:C187328 Locally Advanced Carcinoid Tumor 7 180060 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 8 180061 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 7 180062 -NCIT:C176715 Locally Advanced Lung Neuroendocrine Neoplasm 6 180063 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 7 180064 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 7 180065 -NCIT:C178271 Locally Advanced Digestive System Neuroendocrine Neoplasm 6 180066 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 180067 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 180068 -NCIT:C158090 Locally Advanced Unresectable Digestive System Neuroendocrine Neoplasm 7 180069 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 7 180070 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 7 180071 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 7 180072 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 7 180073 -NCIT:C170460 Locally Advanced Malignant Female Reproductive System Neoplasm 5 180074 -NCIT:C156295 Locally Advanced Cervical Carcinoma 6 180075 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 7 180076 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 8 180077 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 7 180078 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 8 180079 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 7 180080 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 6 180081 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 7 180082 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 8 180083 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 8 180084 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 7 180085 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 6 180086 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 7 180087 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 6 180088 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 7 180089 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 8 180090 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 7 180091 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 6 180092 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 6 180093 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 6 180094 -NCIT:C170470 Locally Advanced Malignant Head and Neck Neoplasm 5 180095 -NCIT:C153213 Locally Advanced Head and Neck Carcinoma 6 180096 -NCIT:C158464 Locally Advanced Salivary Gland Carcinoma 7 180097 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 7 180098 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 180099 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 180100 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 180101 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 8 180102 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 9 180103 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 180104 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 180105 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 8 180106 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 180107 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 180108 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 7 180109 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 7 180110 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 180111 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 7 180112 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 180113 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 8 180114 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 180115 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 180116 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 8 180117 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 180118 -NCIT:C165562 Locally Advanced Lip and Oral Cavity Carcinoma 7 180119 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 8 180120 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 180121 -NCIT:C165563 Locally Advanced Paranasal Sinus Carcinoma 7 180122 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 8 180123 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 7 180124 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 180125 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 8 180126 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 8 180127 -NCIT:C171284 Locally Advanced Malignant Skin Neoplasm 5 180128 -NCIT:C153182 Locally Advanced Skin Squamous Cell Carcinoma 6 180129 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 180130 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 6 180131 -NCIT:C171285 Locally Advanced Cutaneous Melanoma 6 180132 -NCIT:C180374 Early Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 6 180133 -NCIT:C175663 Locally Advanced Malignant Glomus Tumor 5 180134 -NCIT:C175935 Locally Advanced Malignant Mesothelioma 5 180135 -NCIT:C175936 Locally Advanced Pleural Malignant Mesothelioma 6 180136 -NCIT:C176994 Locally Advanced Lymphoma 5 180137 -NCIT:C180374 Early Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 6 180138 -NCIT:C179181 Locally Advanced Malignant Digestive System Neoplasm 5 180139 -NCIT:C153358 Locally Advanced Digestive System Carcinoma 6 180140 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 7 180141 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 180142 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 180143 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 180144 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 7 180145 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 180146 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 7 180147 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 8 180148 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 180149 -NCIT:C170778 Locally Advanced Rectal Carcinoma 8 180150 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 180151 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 180152 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 180153 -NCIT:C170910 Locally Advanced Colon Carcinoma 8 180154 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 180155 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 180156 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 180157 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 180158 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 180159 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 180160 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 180161 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 180162 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 180163 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 180164 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 180165 -NCIT:C162772 Locally Advanced Gastric Carcinoma 7 180166 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 180167 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 180168 -NCIT:C168976 Locally Advanced Esophageal Carcinoma 7 180169 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 180170 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 180171 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 180172 -NCIT:C168977 Locally Advanced Anal Carcinoma 7 180173 -NCIT:C170459 Locally Advanced Pancreatobiliary Carcinoma 7 180174 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 8 180175 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 180176 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 180177 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 180178 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 180179 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 180180 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 180181 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 180182 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 180183 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 8 180184 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 180185 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 180186 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 180187 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 8 180188 -NCIT:C171298 Locally Advanced Liver Carcinoma 7 180189 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 180190 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 8 180191 -NCIT:C178271 Locally Advanced Digestive System Neuroendocrine Neoplasm 6 180192 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 180193 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 180194 -NCIT:C158090 Locally Advanced Unresectable Digestive System Neuroendocrine Neoplasm 7 180195 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 7 180196 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 7 180197 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 7 180198 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 7 180199 -NCIT:C8512 Malignant Neoplasm with Regional Lymph Node Involvement 5 180200 -NCIT:C8544 Metastatic Malignant Neoplasm in the Epididymis 4 180201 -NCIT:C8546 Metastatic Malignant Neoplasm in the Placenta 4 180202 -NCIT:C8547 Metastatic Malignant Neoplasm in the Nervous System 4 180203 -NCIT:C4015 Metastatic Malignant Neoplasm in the Central Nervous System 5 180204 -NCIT:C133501 Breast Carcinoma Metastatic in the Central Nervous System 6 180205 -NCIT:C36301 Breast Carcinoma Metastatic in the Brain 7 180206 -NCIT:C133503 Lung Carcinoma Metastatic in the Central Nervous System 6 180207 -NCIT:C36304 Lung Carcinoma Metastatic in the Brain 7 180208 -NCIT:C133504 Melanoma Metastatic in the Central Nervous System 6 180209 -NCIT:C179206 Melanoma Metastatic in the Brain 7 180210 -NCIT:C155786 Metastatic Malignant Neoplasm in the Sellar Region 6 180211 -NCIT:C6805 Metastatic Malignant Neoplasm in the Pituitary Gland 7 180212 -NCIT:C175220 Metastatic Malignant Neoplasm in the Visual Pathway 6 180213 -NCIT:C3813 Metastatic Malignant Neoplasm in the Brain 6 180214 -NCIT:C179206 Melanoma Metastatic in the Brain 7 180215 -NCIT:C187211 Metastatic Childhood Malignant Neoplasm in the Brain 7 180216 -NCIT:C36301 Breast Carcinoma Metastatic in the Brain 7 180217 -NCIT:C36304 Lung Carcinoma Metastatic in the Brain 7 180218 -NCIT:C5057 Secondary Cerebral Hodgkin Lymphoma 7 180219 -NCIT:C5816 Metastatic Adult Malignant Neoplasm in the Brain 7 180220 -NCIT:C8550 Metastatic Malignant Neoplasm in the Brain Stem 7 180221 -NCIT:C3814 Metastatic Malignant Neoplasm in the Leptomeninges 6 180222 -NCIT:C173916 Recurrent Metastatic Malignant Neoplasm in the Leptomeninges 7 180223 -NCIT:C185039 Extramedullary Disease in Plasma Cell Myeloma Involving the Leptomeninges 7 180224 -NCIT:C5399 Medulloblastoma with Leptomeningeal Spread 7 180225 -NCIT:C5400 Central Nervous System Embryonal Tumor, Not Otherwise Specified with Leptomeningeal Spread 7 180226 -NCIT:C94754 Meningeal Leukemia 7 180227 -NCIT:C9111 Meningeal Chronic Myelogenous Leukemia, BCR-ABL1 Positive 8 180228 -NCIT:C4585 Metastatic Malignant Neoplasm in the Spinal Cord 6 180229 -NCIT:C5439 Drop Metastasis in the Spinal Cord 7 180230 -NCIT:C87797 Secondary Central Nervous System Lymphoma 6 180231 -NCIT:C114949 Secondary Central Nervous System Hodgkin Lymphoma 7 180232 -NCIT:C5057 Secondary Cerebral Hodgkin Lymphoma 8 180233 -NCIT:C114950 Secondary Central Nervous System Non-Hodgkin Lymphoma 7 180234 -NCIT:C8566 Metastatic Malignant Neoplasm of Unknown Primary 4 180235 -NCIT:C132676 Unknown Primary Tumor (Except for EBV-Related and HPV-Related Tumors) and Metastatic Cervical Adenopathy by AJCC v8 Stage 5 180236 -NCIT:C132677 Stage III Unknown Primary Tumor (Except for EBV-Related and HPV-Related Tumors) and Metastatic Cervical Adenopathy AJCC v8 6 180237 -NCIT:C132678 Stage IVA Unknown Primary Tumor (Except for EBV-Related and HPV-Related Tumors) and Metastatic Cervical Adenopathy AJCC v8 6 180238 -NCIT:C132679 Stage IVB Unknown Primary Tumor (Except for EBV-Related and HPV-Related Tumors) and Metastatic Cervical Adenopathy AJCC v8 6 180239 -NCIT:C132680 Stage IVC Unknown Primary Tumor (Except for EBV-Related and HPV-Related Tumors) and Metastatic Cervical Adenopathy AJCC v8 6 180240 -NCIT:C154473 Melanoma of Unknown Primary 5 180241 -NCIT:C3812 Carcinoma of Unknown Primary 5 180242 -NCIT:C162595 Head and Neck Carcinoma of Unknown Primary 6 180243 -NCIT:C173585 Neck Carcinoma of Unknown Primary 7 180244 -NCIT:C7713 Neck Squamous Cell Carcinoma of Unknown Primary 8 180245 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 9 180246 -NCIT:C187051 Human Papillomavirus-Related Head and Neck Squamous Cell Carcinoma of Unknown Primary 7 180247 -NCIT:C190149 Human Papillomavirus-Negative Head and Neck Squamous Cell Carcinoma of Unknown Primary 7 180248 -NCIT:C163975 Neuroendocrine Carcinoma of Unknown Primary 6 180249 -NCIT:C170960 Advanced Carcinoma Of Unknown Primary 6 180250 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 7 180251 -NCIT:C170961 Resectable Carcinoma of Unknown Primary 6 180252 -NCIT:C170962 Resectable Adenocarcinoma of Unknown Primary 7 180253 -NCIT:C4039 Adenocarcinoma of Unknown Primary 6 180254 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 7 180255 -NCIT:C170962 Resectable Adenocarcinoma of Unknown Primary 7 180256 -NCIT:C8099 Squamous Cell Carcinoma of Unknown Primary 6 180257 -NCIT:C165474 Locally Advanced Squamous Cell Carcinoma of Unknown Primary 7 180258 -NCIT:C187051 Human Papillomavirus-Related Head and Neck Squamous Cell Carcinoma of Unknown Primary 7 180259 -NCIT:C190149 Human Papillomavirus-Negative Head and Neck Squamous Cell Carcinoma of Unknown Primary 7 180260 -NCIT:C7713 Neck Squamous Cell Carcinoma of Unknown Primary 7 180261 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 8 180262 -NCIT:C8100 Undifferentiated Carcinoma of Unknown Primary 6 180263 -NCIT:C9181 Recurrent Carcinoma of Unknown Primary 6 180264 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 7 180265 -NCIT:C8610 Metastatic Malignant Neoplasm in the Adrenal Gland 4 180266 -NCIT:C27381 Metastatic Carcinoma in the Adrenal Cortex 5 180267 -NCIT:C9276 Metastatic Carcinoma in the Adrenal Medulla 5 180268 -NCIT:C8615 Metastatic Malignant Neoplasm in the Abdominal Cavity 4 180269 -NCIT:C4583 Metastatic Malignant Neoplasm in the Peritoneum 5 180270 -NCIT:C179654 Metastatic Carcinoma in the Peritoneum 6 180271 -NCIT:C27382 Peritoneal Carcinomatosis 7 180272 -NCIT:C3345 Pseudomyxoma Peritonei 8 180273 -NCIT:C179179 Recurrent Pseudomyxoma Peritonei 9 180274 -NCIT:C179180 Refractory Pseudomyxoma Peritonei 9 180275 -NCIT:C179657 Metastatic Sarcoma in the Peritoneum 6 180276 -NCIT:C179656 Peritoneal Sarcomatosis 7 180277 -NCIT:C8925 Metastatic Melanoma 4 180278 -NCIT:C133504 Melanoma Metastatic in the Central Nervous System 5 180279 -NCIT:C179206 Melanoma Metastatic in the Brain 6 180280 -NCIT:C148494 Locally Advanced Melanoma 5 180281 -NCIT:C171285 Locally Advanced Cutaneous Melanoma 6 180282 -NCIT:C171297 Locally Advanced Non-Cutaneous Melanoma 6 180283 -NCIT:C171296 Locally Advanced Ocular Melanoma 7 180284 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 8 180285 -NCIT:C153169 Advanced Melanoma 5 180286 -NCIT:C171572 Advanced Cutaneous Melanoma 6 180287 -NCIT:C155311 Advanced Cutaneous Melanoma of the Extremity 7 180288 -NCIT:C180895 Advanced Non-Cutaneous Melanoma 6 180289 -NCIT:C180896 Advanced Mucosal Melanoma 7 180290 -NCIT:C190137 Advanced Ocular Melanoma 7 180291 -NCIT:C148515 Advanced Uveal Melanoma 8 180292 -NCIT:C150130 Uveal Melanoma Metastatic in the Liver 9 180293 -NCIT:C154473 Melanoma of Unknown Primary 5 180294 -NCIT:C156072 Metastatic Cutaneous Melanoma 5 180295 -NCIT:C171285 Locally Advanced Cutaneous Melanoma 6 180296 -NCIT:C171572 Advanced Cutaneous Melanoma 6 180297 -NCIT:C155311 Advanced Cutaneous Melanoma of the Extremity 7 180298 -NCIT:C179427 Metastatic Acral Lentiginous Melanoma 6 180299 -NCIT:C182020 Recurrent Metastatic Melanoma 5 180300 -NCIT:C182024 Refractory Metastatic Melanoma 5 180301 -NCIT:C7092 Metastatic Non-Cutaneous Melanoma 5 180302 -NCIT:C169086 Metastatic Mucosal Melanoma 6 180303 -NCIT:C180896 Advanced Mucosal Melanoma 7 180304 -NCIT:C171295 Metastatic Ocular Melanoma 6 180305 -NCIT:C148514 Metastatic Uveal Melanoma 7 180306 -NCIT:C148515 Advanced Uveal Melanoma 8 180307 -NCIT:C150130 Uveal Melanoma Metastatic in the Liver 9 180308 -NCIT:C169085 Metastatic Choroid Melanoma 8 180309 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 8 180310 -NCIT:C171296 Locally Advanced Ocular Melanoma 7 180311 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 8 180312 -NCIT:C182127 Metastatic Conjunctival Melanoma 7 180313 -NCIT:C190137 Advanced Ocular Melanoma 7 180314 -NCIT:C148515 Advanced Uveal Melanoma 8 180315 -NCIT:C150130 Uveal Melanoma Metastatic in the Liver 9 180316 -NCIT:C171297 Locally Advanced Non-Cutaneous Melanoma 6 180317 -NCIT:C171296 Locally Advanced Ocular Melanoma 7 180318 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 8 180319 -NCIT:C180895 Advanced Non-Cutaneous Melanoma 6 180320 -NCIT:C180896 Advanced Mucosal Melanoma 7 180321 -NCIT:C190137 Advanced Ocular Melanoma 7 180322 -NCIT:C148515 Advanced Uveal Melanoma 8 180323 -NCIT:C150130 Uveal Melanoma Metastatic in the Liver 9 180324 -NCIT:C9270 Advanced Malignant Neoplasm 4 180325 -NCIT:C129707 Advanced Malignant Solid Neoplasm 5 180326 -NCIT:C157335 Advanced Extracranial Malignant Solid Neoplasm 6 180327 -NCIT:C187210 Advanced Childhood Malignant Solid Neoplasm 6 180328 -NCIT:C148065 Advanced B-Cell Malignant Neoplasm 5 180329 -NCIT:C171264 Advanced Diffuse Large B-Cell Lymphoma 6 180330 -NCIT:C172359 Advanced Follicular Lymphoma 6 180331 -NCIT:C172360 Advanced Marginal Zone Lymphoma 6 180332 -NCIT:C153169 Advanced Melanoma 5 180333 -NCIT:C171572 Advanced Cutaneous Melanoma 6 180334 -NCIT:C155311 Advanced Cutaneous Melanoma of the Extremity 7 180335 -NCIT:C180895 Advanced Non-Cutaneous Melanoma 6 180336 -NCIT:C180896 Advanced Mucosal Melanoma 7 180337 -NCIT:C190137 Advanced Ocular Melanoma 7 180338 -NCIT:C148515 Advanced Uveal Melanoma 8 180339 -NCIT:C150130 Uveal Melanoma Metastatic in the Liver 9 180340 -NCIT:C153171 Advanced Carcinoma 5 180341 -NCIT:C129861 Advanced Head and Neck Carcinoma 6 180342 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 7 180343 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 180344 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 180345 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 180346 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 180347 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 180348 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 180349 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 180350 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 7 180351 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 180352 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 8 180353 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 8 180354 -NCIT:C170784 Advanced Pharyngeal Carcinoma 7 180355 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 8 180356 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 180357 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 180358 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 180359 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 180360 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 180361 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 8 180362 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 180363 -NCIT:C177723 Advanced Salivary Gland Carcinoma 7 180364 -NCIT:C153203 Advanced Lung Carcinoma 6 180365 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 180366 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 7 180367 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 180368 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 180369 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 180370 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 180371 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 8 180372 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 7 180373 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 180374 -NCIT:C180922 Advanced Bronchogenic Carcinoma 7 180375 -NCIT:C155870 Advanced Neuroendocrine Carcinoma 6 180376 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 7 180377 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 180378 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 180379 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 7 180380 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 180381 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 180382 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 180383 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 7 180384 -NCIT:C165300 Advanced Merkel Cell Carcinoma 7 180385 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 7 180386 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 180387 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 180388 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 180389 -NCIT:C156746 Advanced Digestive System Carcinoma 6 180390 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 7 180391 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 180392 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 180393 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 7 180394 -NCIT:C160599 Advanced Esophageal Carcinoma 7 180395 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 180396 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 180397 -NCIT:C162475 Advanced Colorectal Carcinoma 7 180398 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 8 180399 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 180400 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 180401 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 180402 -NCIT:C167238 Advanced Colon Carcinoma 8 180403 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 180404 -NCIT:C170777 Advanced Rectal Carcinoma 8 180405 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 180406 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 180407 -NCIT:C165299 Advanced Gastric Carcinoma 7 180408 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 180409 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 180410 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 180411 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 180412 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 180413 -NCIT:C167336 Advanced Hepatocellular Carcinoma 7 180414 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 8 180415 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 8 180416 -NCIT:C170515 Advanced Anal Carcinoma 7 180417 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 8 180418 -NCIT:C171330 Advanced Pancreatobiliary Carcinoma 7 180419 -NCIT:C165452 Advanced Pancreatic Carcinoma 8 180420 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 180421 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 180422 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 8 180423 -NCIT:C171331 Advanced Biliary Tract Carcinoma 8 180424 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 180425 -NCIT:C162752 Advanced Cholangiocarcinoma 10 180426 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 180427 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 180428 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 180429 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 180430 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 180431 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 180432 -NCIT:C182105 Advanced Appendix Adenocarcinoma 7 180433 -NCIT:C159556 Advanced Adenocarcinoma 6 180434 -NCIT:C153170 Advanced Renal Cell Carcinoma 7 180435 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 8 180436 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 8 180437 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 8 180438 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 8 180439 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 8 180440 -NCIT:C156286 Advanced Prostate Adenocarcinoma 7 180441 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 8 180442 -NCIT:C156304 Advanced Cervical Adenocarcinoma 7 180443 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 7 180444 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 7 180445 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 8 180446 -NCIT:C162752 Advanced Cholangiocarcinoma 7 180447 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 8 180448 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 8 180449 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 8 180450 -NCIT:C165700 Advanced Breast Adenocarcinoma 7 180451 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 180452 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 180453 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 8 180454 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 180455 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 180456 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 180457 -NCIT:C166255 Advanced Gastric Adenocarcinoma 7 180458 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 8 180459 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 7 180460 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 7 180461 -NCIT:C162152 Advanced Colon Adenocarcinoma 8 180462 -NCIT:C175363 Advanced Rectal Adenocarcinoma 8 180463 -NCIT:C167336 Advanced Hepatocellular Carcinoma 7 180464 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 8 180465 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 8 180466 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 7 180467 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 8 180468 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 8 180469 -NCIT:C170807 Advanced Endometrioid Adenocarcinoma 7 180470 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 8 180471 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 180472 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 7 180473 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 8 180474 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 8 180475 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 7 180476 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 7 180477 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 7 180478 -NCIT:C176727 Advanced Lung Adenocarcinoma 7 180479 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 7 180480 -NCIT:C182105 Advanced Appendix Adenocarcinoma 7 180481 -NCIT:C191863 Advanced Adrenal Cortical Carcinoma 7 180482 -NCIT:C159903 Advanced Thymic Carcinoma 6 180483 -NCIT:C160298 Advanced NUT Carcinoma 6 180484 -NCIT:C162648 Advanced Breast Carcinoma 6 180485 -NCIT:C165700 Advanced Breast Adenocarcinoma 7 180486 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 180487 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 180488 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 8 180489 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 180490 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 180491 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 180492 -NCIT:C162653 Advanced Squamous Cell Carcinoma 6 180493 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 7 180494 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 180495 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 180496 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 180497 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 180498 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 180499 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 180500 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 180501 -NCIT:C168542 Advanced Skin Squamous Cell Carcinoma 7 180502 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 180503 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 7 180504 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 7 180505 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 7 180506 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 180507 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 7 180508 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 7 180509 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 7 180510 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 8 180511 -NCIT:C164012 Advanced Adenoid Cystic Carcinoma 6 180512 -NCIT:C164143 Advanced Genitourinary System Carcinoma 6 180513 -NCIT:C148493 Advanced Urothelial Carcinoma 7 180514 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 180515 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 180516 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 180517 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 180518 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 180519 -NCIT:C156284 Advanced Prostate Carcinoma 7 180520 -NCIT:C156286 Advanced Prostate Adenocarcinoma 8 180521 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 180522 -NCIT:C156294 Advanced Cervical Carcinoma 7 180523 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 180524 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 180525 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 8 180526 -NCIT:C159676 Advanced Endometrial Carcinoma 7 180527 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 8 180528 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 180529 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 180530 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 8 180531 -NCIT:C165458 Advanced Ovarian Carcinoma 7 180532 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 180533 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 180534 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 180535 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 180536 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 180537 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 8 180538 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 8 180539 -NCIT:C167338 Advanced Bladder Carcinoma 7 180540 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 180541 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 7 180542 -NCIT:C170786 Advanced Vulvar Carcinoma 7 180543 -NCIT:C170788 Advanced Vaginal Carcinoma 7 180544 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 180545 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 8 180546 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 180547 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 180548 -NCIT:C170790 Advanced Penile Carcinoma 7 180549 -NCIT:C172617 Advanced Kidney Carcinoma 7 180550 -NCIT:C153170 Advanced Renal Cell Carcinoma 8 180551 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 180552 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 180553 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 180554 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 180555 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 180556 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 8 180557 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 180558 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 8 180559 -NCIT:C167396 Advanced Primary Peritoneal Carcinoma 6 180560 -NCIT:C170960 Advanced Carcinoma Of Unknown Primary 6 180561 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 7 180562 -NCIT:C172091 Advanced Transitional Cell Carcinoma 6 180563 -NCIT:C148493 Advanced Urothelial Carcinoma 7 180564 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 180565 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 180566 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 180567 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 180568 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 180569 -NCIT:C172362 Advanced Basal Cell Carcinoma 6 180570 -NCIT:C153172 Advanced Lymphoma 5 180571 -NCIT:C172371 Advanced Non-Hodgkin Lymphoma 6 180572 -NCIT:C166180 Advanced Anaplastic Large Cell Lymphoma 7 180573 -NCIT:C171264 Advanced Diffuse Large B-Cell Lymphoma 7 180574 -NCIT:C172359 Advanced Follicular Lymphoma 7 180575 -NCIT:C172360 Advanced Marginal Zone Lymphoma 7 180576 -NCIT:C172361 Advanced Transformed Non-Hodgkin Lymphoma 7 180577 -NCIT:C172442 Advanced Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 7 180578 -NCIT:C53283 Advanced Favorable Non-Hodgkin Lymphoma 7 180579 -NCIT:C53284 Advanced Unfavorable Non-Hodgkin Lymphoma 7 180580 -NCIT:C172373 Advanced Hodgkin Lymphoma 6 180581 -NCIT:C68662 Advanced Favorable Hodgkin Lymphoma 7 180582 -NCIT:C68665 Advanced Unfavorable Hodgkin Lymphoma 7 180583 -NCIT:C153185 Advanced Sarcoma 5 180584 -NCIT:C155649 Advanced Sarcoma of the Extremity 6 180585 -NCIT:C162194 Advanced Soft Tissue Sarcoma 6 180586 -NCIT:C153184 Advanced Synovial Sarcoma 7 180587 -NCIT:C156476 Advanced Kaposi Sarcoma 7 180588 -NCIT:C161586 Advanced Clear Cell Sarcoma of Soft Tissue 7 180589 -NCIT:C164246 Advanced Malignant PEComa 7 180590 -NCIT:C165781 Advanced Undifferentiated Pleomorphic Sarcoma 7 180591 -NCIT:C167380 Advanced Epithelioid Sarcoma 7 180592 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 7 180593 -NCIT:C171304 Advanced Myxofibrosarcoma 7 180594 -NCIT:C173502 Advanced Gastrointestinal Stromal Tumor 7 180595 -NCIT:C188198 Advanced Alveolar Soft Part Sarcoma 7 180596 -NCIT:C162762 Advanced Bone Sarcoma 6 180597 -NCIT:C165780 Advanced Leiomyosarcoma 6 180598 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 7 180599 -NCIT:C168701 Advanced Liposarcoma 6 180600 -NCIT:C162763 Advanced Myxoid Liposarcoma 7 180601 -NCIT:C168715 Advanced Dedifferentiated Liposarcoma 7 180602 -NCIT:C182026 Advanced Pleomorphic Liposarcoma 7 180603 -NCIT:C168714 Advanced Malignant Peripheral Nerve Sheath Tumor 6 180604 -NCIT:C168716 Advanced Fibrosarcoma 6 180605 -NCIT:C171304 Advanced Myxofibrosarcoma 7 180606 -NCIT:C168720 Advanced Angiosarcoma 6 180607 -NCIT:C156486 Advanced Neuroendocrine Neoplasm 5 180608 -NCIT:C154621 Advanced Neuroendocrine Tumor 6 180609 -NCIT:C140328 Advanced Non-Functioning Neuroendocrine Tumor 7 180610 -NCIT:C156487 Advanced Carcinoid Tumor 7 180611 -NCIT:C177245 Advanced Lung Carcinoid Tumor 8 180612 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 8 180613 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 180614 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 7 180615 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 180616 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 180617 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 7 180618 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 180619 -NCIT:C155870 Advanced Neuroendocrine Carcinoma 6 180620 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 7 180621 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 180622 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 180623 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 7 180624 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 180625 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 180626 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 180627 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 7 180628 -NCIT:C165300 Advanced Merkel Cell Carcinoma 7 180629 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 7 180630 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 180631 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 180632 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 180633 -NCIT:C158089 Advanced Digestive System Neuroendocrine Neoplasm 6 180634 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 7 180635 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 180636 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 180637 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 7 180638 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 180639 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 180640 -NCIT:C165448 Advanced Pancreatic Neuroendocrine Neoplasm 7 180641 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 8 180642 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 180643 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 180644 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 7 180645 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 180646 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 7 180647 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 180648 -NCIT:C160852 Advanced Paraganglioma 6 180649 -NCIT:C160853 Advanced Adrenal Gland Pheochromocytoma 7 180650 -NCIT:C165446 Advanced Lung Neuroendocrine Neoplasm 6 180651 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 180652 -NCIT:C177245 Advanced Lung Carcinoid Tumor 7 180653 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 7 180654 -NCIT:C180871 Advanced Thymic Neuroendocrine Neoplasm 6 180655 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 6 180656 -NCIT:C159904 Advanced Malignant Thymoma 5 180657 -NCIT:C168721 Advanced Epithelioid Hemangioendothelioma 5 180658 -NCIT:C170469 Advanced Malignant Head and Neck Neoplasm 5 180659 -NCIT:C129861 Advanced Head and Neck Carcinoma 6 180660 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 7 180661 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 180662 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 180663 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 180664 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 180665 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 180666 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 180667 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 180668 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 7 180669 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 180670 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 8 180671 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 8 180672 -NCIT:C170784 Advanced Pharyngeal Carcinoma 7 180673 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 8 180674 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 180675 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 180676 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 180677 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 180678 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 180679 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 8 180680 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 180681 -NCIT:C177723 Advanced Salivary Gland Carcinoma 7 180682 -NCIT:C170812 Advanced Malignant Skin Neoplasm 5 180683 -NCIT:C165300 Advanced Merkel Cell Carcinoma 6 180684 -NCIT:C168542 Advanced Skin Squamous Cell Carcinoma 6 180685 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 180686 -NCIT:C171572 Advanced Cutaneous Melanoma 6 180687 -NCIT:C155311 Advanced Cutaneous Melanoma of the Extremity 7 180688 -NCIT:C172442 Advanced Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 6 180689 -NCIT:C170928 Advanced Carcinosarcoma 5 180690 -NCIT:C170930 Advanced Malignant Mixed Mesodermal (Mullerian) Tumor 6 180691 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 7 180692 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 7 180693 -NCIT:C170966 Advanced Primary Malignant Central Nervous System Neoplasm 5 180694 -NCIT:C170978 Advanced Glioblastoma 6 180695 -NCIT:C175549 Advanced Primary Malignant Brain Neoplasm 6 180696 -NCIT:C187213 Advanced Childhood Malignant Brain Neoplasm 7 180697 -NCIT:C170967 Advanced Malignant Germ Cell Tumor 5 180698 -NCIT:C170958 Advanced Platinum-Resistant Malignant Germ Cell Tumor 6 180699 -NCIT:C187316 Advanced Malignant Testicular Germ Cell Tumor 6 180700 -NCIT:C173333 Advanced Chordoma 5 180701 -NCIT:C174568 Advanced Rhabdoid Tumor 5 180702 -NCIT:C175547 Advanced Malignant Digestive System Neoplasm 5 180703 -NCIT:C156746 Advanced Digestive System Carcinoma 6 180704 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 7 180705 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 180706 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 180707 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 7 180708 -NCIT:C160599 Advanced Esophageal Carcinoma 7 180709 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 180710 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 180711 -NCIT:C162475 Advanced Colorectal Carcinoma 7 180712 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 8 180713 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 180714 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 180715 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 180716 -NCIT:C167238 Advanced Colon Carcinoma 8 180717 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 180718 -NCIT:C170777 Advanced Rectal Carcinoma 8 180719 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 180720 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 180721 -NCIT:C165299 Advanced Gastric Carcinoma 7 180722 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 180723 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 180724 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 180725 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 180726 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 180727 -NCIT:C167336 Advanced Hepatocellular Carcinoma 7 180728 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 8 180729 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 8 180730 -NCIT:C170515 Advanced Anal Carcinoma 7 180731 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 8 180732 -NCIT:C171330 Advanced Pancreatobiliary Carcinoma 7 180733 -NCIT:C165452 Advanced Pancreatic Carcinoma 8 180734 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 180735 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 180736 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 8 180737 -NCIT:C171331 Advanced Biliary Tract Carcinoma 8 180738 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 180739 -NCIT:C162752 Advanced Cholangiocarcinoma 10 180740 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 180741 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 180742 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 180743 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 180744 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 180745 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 180746 -NCIT:C182105 Advanced Appendix Adenocarcinoma 7 180747 -NCIT:C158089 Advanced Digestive System Neuroendocrine Neoplasm 6 180748 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 7 180749 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 180750 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 180751 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 7 180752 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 180753 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 180754 -NCIT:C165448 Advanced Pancreatic Neuroendocrine Neoplasm 7 180755 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 8 180756 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 180757 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 180758 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 7 180759 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 180760 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 7 180761 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 180762 -NCIT:C176679 Advanced Malignant Small Intestinal Neoplasm 6 180763 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 7 180764 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 180765 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 180766 -NCIT:C176859 Advanced Malignant Genitourinary System Neoplasm 5 180767 -NCIT:C164143 Advanced Genitourinary System Carcinoma 6 180768 -NCIT:C148493 Advanced Urothelial Carcinoma 7 180769 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 180770 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 180771 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 180772 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 180773 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 180774 -NCIT:C156284 Advanced Prostate Carcinoma 7 180775 -NCIT:C156286 Advanced Prostate Adenocarcinoma 8 180776 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 180777 -NCIT:C156294 Advanced Cervical Carcinoma 7 180778 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 180779 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 180780 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 8 180781 -NCIT:C159676 Advanced Endometrial Carcinoma 7 180782 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 8 180783 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 180784 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 180785 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 8 180786 -NCIT:C165458 Advanced Ovarian Carcinoma 7 180787 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 180788 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 180789 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 180790 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 180791 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 180792 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 8 180793 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 8 180794 -NCIT:C167338 Advanced Bladder Carcinoma 7 180795 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 180796 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 7 180797 -NCIT:C170786 Advanced Vulvar Carcinoma 7 180798 -NCIT:C170788 Advanced Vaginal Carcinoma 7 180799 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 180800 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 8 180801 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 180802 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 180803 -NCIT:C170790 Advanced Penile Carcinoma 7 180804 -NCIT:C172617 Advanced Kidney Carcinoma 7 180805 -NCIT:C153170 Advanced Renal Cell Carcinoma 8 180806 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 180807 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 180808 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 180809 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 180810 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 180811 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 8 180812 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 180813 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 8 180814 -NCIT:C167260 Advanced Malignant Female Reproductive System Neoplasm 6 180815 -NCIT:C156294 Advanced Cervical Carcinoma 7 180816 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 180817 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 180818 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 8 180819 -NCIT:C165458 Advanced Ovarian Carcinoma 7 180820 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 180821 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 180822 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 180823 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 180824 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 180825 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 8 180826 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 8 180827 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 7 180828 -NCIT:C170786 Advanced Vulvar Carcinoma 7 180829 -NCIT:C170788 Advanced Vaginal Carcinoma 7 180830 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 180831 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 8 180832 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 180833 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 180834 -NCIT:C170930 Advanced Malignant Mixed Mesodermal (Mullerian) Tumor 7 180835 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 8 180836 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 8 180837 -NCIT:C172450 Advanced Uterine Corpus Cancer 7 180838 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 8 180839 -NCIT:C159676 Advanced Endometrial Carcinoma 8 180840 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 180841 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 180842 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 180843 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 180844 -NCIT:C187316 Advanced Malignant Testicular Germ Cell Tumor 6 180845 -NCIT:C176863 Advanced Malignant Thoracic Neoplasm 5 180846 -NCIT:C153203 Advanced Lung Carcinoma 6 180847 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 180848 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 7 180849 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 180850 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 180851 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 180852 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 180853 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 8 180854 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 7 180855 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 180856 -NCIT:C180922 Advanced Bronchogenic Carcinoma 7 180857 -NCIT:C159903 Advanced Thymic Carcinoma 6 180858 -NCIT:C165446 Advanced Lung Neuroendocrine Neoplasm 6 180859 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 180860 -NCIT:C177245 Advanced Lung Carcinoid Tumor 7 180861 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 7 180862 -NCIT:C8703 Advanced Pericardial Malignant Mesothelioma 6 180863 -NCIT:C8706 Advanced Pleural Malignant Mesothelioma 6 180864 -NCIT:C183305 Advanced Malignant Abdominal Neoplasm 5 180865 -NCIT:C7865 Advanced Malignant Mesothelioma 5 180866 -NCIT:C175937 Advanced Epithelioid Mesothelioma 6 180867 -NCIT:C8703 Advanced Pericardial Malignant Mesothelioma 6 180868 -NCIT:C8704 Advanced Peritoneal Malignant Mesothelioma 6 180869 -NCIT:C8706 Advanced Pleural Malignant Mesothelioma 6 180870 -NCIT:C36264 Metastatic Benign Neoplasm 3 180871 -NCIT:C35759 Metastasizing Pleomorphic Adenoma of the Salivary Gland 4 180872 -NCIT:C40173 Uterine Corpus Metastasizing Leiomyoma 4 180873 -NCIT:C54297 Metastasizing Ameloblastoma 3 180874 -NCIT:C3264 Embryonal Neoplasm 2 180875 -NCIT:C175225 Visual Pathway Medulloepithelioma 3 180876 -NCIT:C187995 Thyroblastoma 3 180877 -NCIT:C27291 Ewing Sarcoma/Peripheral Primitive Neuroectodermal Tumor 3 180878 -NCIT:C129537 Central Nervous System Ewing Sarcoma/Peripheral Primitive Neuroectodermal Tumor 4 180879 -NCIT:C186611 Central Nervous System Ewing Sarcoma 5 180880 -NCIT:C153286 Refractory Ewing Sarcoma/Peripheral Primitive Neuroectodermal Tumor 4 180881 -NCIT:C142850 Refractory Peripheral Primitive Neuroectodermal Tumor 5 180882 -NCIT:C142853 Refractory Ewing Sarcoma 5 180883 -NCIT:C27292 Metastatic Ewing Sarcoma/Peripheral Primitive Neuroectodermal Tumor 4 180884 -NCIT:C36074 Metastatic Peripheral Primitive Neuroectodermal Tumor of Bone 5 180885 -NCIT:C7807 Metastatic Ewing Sarcoma 5 180886 -NCIT:C164080 Locally Advanced Ewing Sarcoma 6 180887 -NCIT:C6621 Metastatic Bone Ewing Sarcoma 6 180888 -NCIT:C8801 Metastatic Extraskeletal Ewing Sarcoma 6 180889 -NCIT:C27293 Extraskeletal Ewing Sarcoma/Peripheral Primitive Neuroectodermal Tumor 4 180890 -NCIT:C173175 Sinonasal Ewing Sarcoma/Peripheral Primitive Neuroectodermal Tumor 5 180891 -NCIT:C27471 Peripheral Primitive Neuroectodermal Tumor of Soft Tissues 5 180892 -NCIT:C7135 Extraskeletal Ewing Sarcoma 5 180893 -NCIT:C159208 Kidney Ewing Sarcoma 6 180894 -NCIT:C189261 Childhood Kidney Ewing Sarcoma 7 180895 -NCIT:C172634 Skin Ewing Sarcoma 6 180896 -NCIT:C181977 Vulvar Ewing Sarcoma 6 180897 -NCIT:C186611 Central Nervous System Ewing Sarcoma 6 180898 -NCIT:C8801 Metastatic Extraskeletal Ewing Sarcoma 6 180899 -NCIT:C8802 Localized Extraskeletal Ewing Sarcoma 6 180900 -NCIT:C8803 Recurrent Extraskeletal Ewing Sarcoma 6 180901 -NCIT:C27898 Recurrent Ewing Sarcoma/Peripheral Primitive Neuroectodermal Tumor 4 180902 -NCIT:C27899 Recurrent Peripheral Primitive Neuroectodermal Tumor 5 180903 -NCIT:C27354 Recurrent Peripheral Primitive Neuroectodermal Tumor of Bone 6 180904 -NCIT:C27900 Recurrent Askin Tumor 6 180905 -NCIT:C7808 Recurrent Ewing Sarcoma 5 180906 -NCIT:C6622 Recurrent Bone Ewing Sarcoma 6 180907 -NCIT:C8803 Recurrent Extraskeletal Ewing Sarcoma 6 180908 -NCIT:C27901 Localized Ewing Sarcoma/Peripheral Primitive Neuroectodermal Tumor 4 180909 -NCIT:C27903 Localized Peripheral Primitive Neuroectodermal Tumor 5 180910 -NCIT:C27353 Localized Peripheral Primitive Neuroectodermal Tumor of Bone 6 180911 -NCIT:C27902 Localized Askin Tumor 6 180912 -NCIT:C7806 Localized Ewing Sarcoma 5 180913 -NCIT:C6623 Localized Bone Ewing Sarcoma 6 180914 -NCIT:C8802 Localized Extraskeletal Ewing Sarcoma 6 180915 -NCIT:C35871 Ewing Sarcoma/Peripheral Primitive Neuroectodermal Tumor of Bone 4 180916 -NCIT:C4835 Ewing Sarcoma of Bone 5 180917 -NCIT:C6621 Metastatic Bone Ewing Sarcoma 6 180918 -NCIT:C6622 Recurrent Bone Ewing Sarcoma 6 180919 -NCIT:C6623 Localized Bone Ewing Sarcoma 6 180920 -NCIT:C8776 Peripheral Primitive Neuroectodermal Tumor of Bone 5 180921 -NCIT:C27353 Localized Peripheral Primitive Neuroectodermal Tumor of Bone 6 180922 -NCIT:C27354 Recurrent Peripheral Primitive Neuroectodermal Tumor of Bone 6 180923 -NCIT:C36074 Metastatic Peripheral Primitive Neuroectodermal Tumor of Bone 6 180924 -NCIT:C4817 Ewing Sarcoma 4 180925 -NCIT:C132849 Unresectable Ewing Sarcoma 5 180926 -NCIT:C142853 Refractory Ewing Sarcoma 5 180927 -NCIT:C174456 Atypical Ewing Sarcoma 5 180928 -NCIT:C189002 Childhood Ewing Sarcoma 5 180929 -NCIT:C189261 Childhood Kidney Ewing Sarcoma 6 180930 -NCIT:C4835 Ewing Sarcoma of Bone 5 180931 -NCIT:C6621 Metastatic Bone Ewing Sarcoma 6 180932 -NCIT:C6622 Recurrent Bone Ewing Sarcoma 6 180933 -NCIT:C6623 Localized Bone Ewing Sarcoma 6 180934 -NCIT:C7135 Extraskeletal Ewing Sarcoma 5 180935 -NCIT:C159208 Kidney Ewing Sarcoma 6 180936 -NCIT:C189261 Childhood Kidney Ewing Sarcoma 7 180937 -NCIT:C172634 Skin Ewing Sarcoma 6 180938 -NCIT:C181977 Vulvar Ewing Sarcoma 6 180939 -NCIT:C186611 Central Nervous System Ewing Sarcoma 6 180940 -NCIT:C8801 Metastatic Extraskeletal Ewing Sarcoma 6 180941 -NCIT:C8802 Localized Extraskeletal Ewing Sarcoma 6 180942 -NCIT:C8803 Recurrent Extraskeletal Ewing Sarcoma 6 180943 -NCIT:C7806 Localized Ewing Sarcoma 5 180944 -NCIT:C6623 Localized Bone Ewing Sarcoma 6 180945 -NCIT:C8802 Localized Extraskeletal Ewing Sarcoma 6 180946 -NCIT:C7807 Metastatic Ewing Sarcoma 5 180947 -NCIT:C164080 Locally Advanced Ewing Sarcoma 6 180948 -NCIT:C6621 Metastatic Bone Ewing Sarcoma 6 180949 -NCIT:C8801 Metastatic Extraskeletal Ewing Sarcoma 6 180950 -NCIT:C7808 Recurrent Ewing Sarcoma 5 180951 -NCIT:C6622 Recurrent Bone Ewing Sarcoma 6 180952 -NCIT:C8803 Recurrent Extraskeletal Ewing Sarcoma 6 180953 -NCIT:C9341 Peripheral Primitive Neuroectodermal Tumor 4 180954 -NCIT:C142850 Refractory Peripheral Primitive Neuroectodermal Tumor 5 180955 -NCIT:C27471 Peripheral Primitive Neuroectodermal Tumor of Soft Tissues 5 180956 -NCIT:C27899 Recurrent Peripheral Primitive Neuroectodermal Tumor 5 180957 -NCIT:C27354 Recurrent Peripheral Primitive Neuroectodermal Tumor of Bone 6 180958 -NCIT:C27900 Recurrent Askin Tumor 6 180959 -NCIT:C27903 Localized Peripheral Primitive Neuroectodermal Tumor 5 180960 -NCIT:C27353 Localized Peripheral Primitive Neuroectodermal Tumor of Bone 6 180961 -NCIT:C27902 Localized Askin Tumor 6 180962 -NCIT:C67214 Peripheral Primitive Neuroectodermal Tumor of the Kidney 5 180963 -NCIT:C7542 Askin Tumor 5 180964 -NCIT:C27900 Recurrent Askin Tumor 6 180965 -NCIT:C27902 Localized Askin Tumor 6 180966 -NCIT:C8776 Peripheral Primitive Neuroectodermal Tumor of Bone 5 180967 -NCIT:C27353 Localized Peripheral Primitive Neuroectodermal Tumor of Bone 6 180968 -NCIT:C27354 Recurrent Peripheral Primitive Neuroectodermal Tumor of Bone 6 180969 -NCIT:C36074 Metastatic Peripheral Primitive Neuroectodermal Tumor of Bone 6 180970 -NCIT:C3267 Wilms Tumor 3 180971 -NCIT:C161607 Prostate Wilms Tumor 4 180972 -NCIT:C162489 Paratesticular Wilms Tumor 4 180973 -NCIT:C188038 Refractory Wilms Tumor 4 180974 -NCIT:C40236 Cervical Wilms Tumor 4 180975 -NCIT:C40407 Kidney Wilms Tumor 4 180976 -NCIT:C27730 Childhood Kidney Wilms Tumor 5 180977 -NCIT:C6897 Cystic Partially Differentiated Kidney Nephroblastoma 6 180978 -NCIT:C38158 Metachronous Kidney Wilms Tumor 5 180979 -NCIT:C6180 Adult Kidney Wilms Tumor 5 180980 -NCIT:C6951 Nonanaplastic Kidney Wilms Tumor 5 180981 -NCIT:C6952 Anaplastic Kidney Wilms Tumor 5 180982 -NCIT:C7840 Stage I Kidney Wilms Tumor 5 180983 -NCIT:C7841 Stage II Kidney Wilms Tumor 5 180984 -NCIT:C7842 Stage III Kidney Wilms Tumor 5 180985 -NCIT:C7843 Stage IV Kidney Wilms Tumor 5 180986 -NCIT:C7844 Stage V Kidney Wilms Tumor 5 180987 -NCIT:C7845 Recurrent Kidney Wilms Tumor 5 180988 -NCIT:C8496 Hereditary Kidney Wilms Tumor 5 180989 -NCIT:C9146 Epithelial Predominant Kidney Wilms Tumor 5 180990 -NCIT:C9147 Blastema Predominant Kidney Wilms Tumor 5 180991 -NCIT:C9148 Stromal Predominant Kidney Wilms Tumor 5 180992 -NCIT:C9149 Mixed Cell Type Kidney Wilms Tumor 5 180993 -NCIT:C40443 Ovarian Wilms Tumor 4 180994 -NCIT:C3716 Primitive Neuroectodermal Tumor 3 180995 -NCIT:C173565 Refractory Primitive Neuroectodermal Tumor 4 180996 -NCIT:C134153 Refractory Neuroblastoma 5 180997 -NCIT:C142850 Refractory Peripheral Primitive Neuroectodermal Tumor 5 180998 -NCIT:C173530 Refractory Ganglioneuroblastoma 5 180999 -NCIT:C27294 Localized Primitive Neuroectodermal Tumor 4 181000 -NCIT:C27903 Localized Peripheral Primitive Neuroectodermal Tumor 5 181001 -NCIT:C27353 Localized Peripheral Primitive Neuroectodermal Tumor of Bone 6 181002 -NCIT:C27902 Localized Askin Tumor 6 181003 -NCIT:C7835 Localized Resectable Neuroblastoma 5 181004 -NCIT:C8277 Localized Unresectable Neuroblastoma 5 181005 -NCIT:C27295 Recurrent Primitive Neuroectodermal Tumor 4 181006 -NCIT:C173531 Recurrent Ganglioneuroblastoma 5 181007 -NCIT:C27899 Recurrent Peripheral Primitive Neuroectodermal Tumor 5 181008 -NCIT:C27354 Recurrent Peripheral Primitive Neuroectodermal Tumor of Bone 6 181009 -NCIT:C27900 Recurrent Askin Tumor 6 181010 -NCIT:C7837 Recurrent Neuroblastoma 5 181011 -NCIT:C115384 Recurrent Olfactory Neuroblastoma 6 181012 -NCIT:C6963 Neuroblastic Tumor 4 181013 -NCIT:C3270 Neuroblastoma 5 181014 -NCIT:C115225 Hereditary Neuroblastoma 6 181015 -NCIT:C124270 Childhood Neuroblastoma 6 181016 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 7 181017 -NCIT:C134153 Refractory Neuroblastoma 6 181018 -NCIT:C150281 High Risk Neuroblastoma 6 181019 -NCIT:C150620 Resectable Neuroblastoma 6 181020 -NCIT:C7835 Localized Resectable Neuroblastoma 7 181021 -NCIT:C150622 Unresectable Neuroblastoma 6 181022 -NCIT:C8277 Localized Unresectable Neuroblastoma 7 181023 -NCIT:C155772 Sellar Neuroblastoma 6 181024 -NCIT:C156101 Metastatic Neuroblastoma 6 181025 -NCIT:C42046 Undifferentiated Neuroblastoma 6 181026 -NCIT:C42047 Poorly Differentiated Neuroblastoma 6 181027 -NCIT:C42048 Differentiating Neuroblastoma 6 181028 -NCIT:C4826 Central Nervous System Neuroblastoma 6 181029 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 7 181030 -NCIT:C186547 Central Nervous System Neuroblastoma, FOXR2-Activated 7 181031 -NCIT:C5437 Extracranial Neuroblastoma 6 181032 -NCIT:C3789 Olfactory Neuroblastoma 7 181033 -NCIT:C115384 Recurrent Olfactory Neuroblastoma 8 181034 -NCIT:C173174 Sinonasal Olfactory Neuroblastoma 8 181035 -NCIT:C6016 Paranasal Sinus Olfactory Neuroblastoma 9 181036 -NCIT:C5435 Kadish Stage C Olfactory Neuroblastoma 8 181037 -NCIT:C6853 Kadish Stage A Olfactory Neuroblastoma 8 181038 -NCIT:C6854 Kadish Stage B Olfactory Neuroblastoma 8 181039 -NCIT:C7604 Nasal Cavity Olfactory Neuroblastoma 8 181040 -NCIT:C5155 Spinal Cord Neuroblastoma 7 181041 -NCIT:C6591 Peripheral Neuroblastoma 7 181042 -NCIT:C6628 Mediastinal Neuroblastoma 8 181043 -NCIT:C6964 Neuroblastoma of the Adrenal Gland and Sympathetic Nervous System 8 181044 -NCIT:C4827 Adrenal Gland Neuroblastoma 9 181045 -NCIT:C6638 Stage 1 Neuroblastoma 6 181046 -NCIT:C6639 Stage 2 Neuroblastoma 6 181047 -NCIT:C102845 Stage 2A Neuroblastoma 7 181048 -NCIT:C102846 Stage 2B Neuroblastoma 7 181049 -NCIT:C6640 Stage 3 Neuroblastoma 6 181050 -NCIT:C6641 Stage 4 Neuroblastoma 6 181051 -NCIT:C9504 Stage 4S Neuroblastoma 7 181052 -NCIT:C6956 Retinal Neuroblastoma 6 181053 -NCIT:C7836 Regional Neuroblastoma 6 181054 -NCIT:C7837 Recurrent Neuroblastoma 6 181055 -NCIT:C115384 Recurrent Olfactory Neuroblastoma 7 181056 -NCIT:C3790 Ganglioneuroblastoma 5 181057 -NCIT:C124271 Childhood Ganglioneuroblastoma 6 181058 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 7 181059 -NCIT:C124273 Childhood Ganglioneuroblastoma, Intermixed 7 181060 -NCIT:C124274 Childhood Ganglioneuroblastoma, Nodular 7 181061 -NCIT:C173530 Refractory Ganglioneuroblastoma 6 181062 -NCIT:C173531 Recurrent Ganglioneuroblastoma 6 181063 -NCIT:C42057 Ganglioneuroblastoma, Intermixed 6 181064 -NCIT:C124273 Childhood Ganglioneuroblastoma, Intermixed 7 181065 -NCIT:C157243 Adrenal Gland Ganglioneuroblastoma, Intermixed 7 181066 -NCIT:C42058 Ganglioneuroblastoma, Nodular 6 181067 -NCIT:C124274 Childhood Ganglioneuroblastoma, Nodular 7 181068 -NCIT:C157244 Adrenal Gland Ganglioneuroblastoma, Nodular 7 181069 -NCIT:C42059 Composite Ganglioneuroblastoma, Schwannian Stroma-Rich and Stroma-Poor 7 181070 -NCIT:C42060 Composite Ganglioneuroblastoma, Stroma-Dominant and Stroma-Poor 7 181071 -NCIT:C6594 Peripheral Ganglioneuroblastoma 6 181072 -NCIT:C6627 Mediastinal Ganglioneuroblastoma 7 181073 -NCIT:C7646 Adrenal Gland Ganglioneuroblastoma 7 181074 -NCIT:C157243 Adrenal Gland Ganglioneuroblastoma, Intermixed 8 181075 -NCIT:C157244 Adrenal Gland Ganglioneuroblastoma, Nodular 8 181076 -NCIT:C92629 Central Nervous System Ganglioneuroblastoma 6 181077 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 7 181078 -NCIT:C9341 Peripheral Primitive Neuroectodermal Tumor 4 181079 -NCIT:C142850 Refractory Peripheral Primitive Neuroectodermal Tumor 5 181080 -NCIT:C27471 Peripheral Primitive Neuroectodermal Tumor of Soft Tissues 5 181081 -NCIT:C27899 Recurrent Peripheral Primitive Neuroectodermal Tumor 5 181082 -NCIT:C27354 Recurrent Peripheral Primitive Neuroectodermal Tumor of Bone 6 181083 -NCIT:C27900 Recurrent Askin Tumor 6 181084 -NCIT:C27903 Localized Peripheral Primitive Neuroectodermal Tumor 5 181085 -NCIT:C27353 Localized Peripheral Primitive Neuroectodermal Tumor of Bone 6 181086 -NCIT:C27902 Localized Askin Tumor 6 181087 -NCIT:C67214 Peripheral Primitive Neuroectodermal Tumor of the Kidney 5 181088 -NCIT:C7542 Askin Tumor 5 181089 -NCIT:C27900 Recurrent Askin Tumor 6 181090 -NCIT:C27902 Localized Askin Tumor 6 181091 -NCIT:C8776 Peripheral Primitive Neuroectodermal Tumor of Bone 5 181092 -NCIT:C27353 Localized Peripheral Primitive Neuroectodermal Tumor of Bone 6 181093 -NCIT:C27354 Recurrent Peripheral Primitive Neuroectodermal Tumor of Bone 6 181094 -NCIT:C36074 Metastatic Peripheral Primitive Neuroectodermal Tumor of Bone 6 181095 -NCIT:C3717 Melanotic Neuroectodermal Tumor 3 181096 -NCIT:C162487 Paratesticular Melanotic Neuroectodermal Tumor 4 181097 -NCIT:C162488 Epididymal Melanotic Neuroectodermal Tumor 5 181098 -NCIT:C3728 Hepatoblastoma 3 181099 -NCIT:C142854 Refractory Hepatoblastoma 4 181100 -NCIT:C161838 Hepatocellular Malignant Neoplasm, Not Otherwise Specified 4 181101 -NCIT:C189923 Epithelial Hepatoblastoma 4 181102 -NCIT:C189924 Epithelial Hepatoblastoma with Pleomorphic Pattern 5 181103 -NCIT:C7093 Hepatoblastoma with Pure Fetal Epithelial Differentiation 5 181104 -NCIT:C7094 Hepatoblastoma with Combined Fetal and Embryonal Epithelial Differentiation 5 181105 -NCIT:C7095 Macrotrabecular Hepatoblastoma 5 181106 -NCIT:C7096 Small Cell Undifferentiated Hepatoblastoma 5 181107 -NCIT:C189927 Hepatoblastoma by PRETEXT Stage 4 181108 -NCIT:C7139 PRETEXT Stage 1 Hepatoblastoma 5 181109 -NCIT:C7140 PRETEXT Stage 2 Hepatoblastoma 5 181110 -NCIT:C7141 PRETEXT Stage 3 Hepatoblastoma 5 181111 -NCIT:C7142 PRETEXT Stage 4 Hepatoblastoma 5 181112 -NCIT:C189929 Hepatoblastoma by Postsurgical Stage 4 181113 -NCIT:C7143 Postsurgical Stage IV Hepatoblastoma 5 181114 -NCIT:C7144 Postsurgical Stage III Hepatoblastoma 5 181115 -NCIT:C7145 Postsurgical Stage II Hepatoblastoma 5 181116 -NCIT:C7146 Postsurgical Stage I Hepatoblastoma 5 181117 -NCIT:C7097 Mixed Epithelial and Mesenchymal Hepatoblastoma 4 181118 -NCIT:C189926 Non-Teratoid Hepatoblastoma 5 181119 -NCIT:C7098 Teratoid Hepatoblastoma 5 181120 -NCIT:C8641 Unresectable Hepatoblastoma 4 181121 -NCIT:C8642 Resectable Hepatoblastoma 4 181122 -NCIT:C8643 Recurrent Hepatoblastoma 4 181123 -NCIT:C3808 Rhabdoid Tumor 3 181124 -NCIT:C142849 Recurrent Rhabdoid Tumor 4 181125 -NCIT:C133499 Recurrent Atypical Teratoid/Rhabdoid Tumor 5 181126 -NCIT:C162730 Recurrent Rhabdoid Tumor of the Kidney 5 181127 -NCIT:C188881 Recurrent Extrarenal Rhabdoid Tumor 5 181128 -NCIT:C171170 Recurrent Extrarenal Rhabdoid Tumor of the Ovary 6 181129 -NCIT:C142858 Refractory Rhabdoid Tumor 4 181130 -NCIT:C162723 Refractory Atypical Teratoid/Rhabdoid Tumor 5 181131 -NCIT:C162731 Refractory Rhabdoid Tumor of the Kidney 5 181132 -NCIT:C188884 Refractory Extrarenal Rhabdoid Tumor 5 181133 -NCIT:C171171 Refractory Extrarenal Rhabdoid Tumor of the Ovary 6 181134 -NCIT:C170828 Metastatic Rhabdoid Tumor 4 181135 -NCIT:C174568 Advanced Rhabdoid Tumor 5 181136 -NCIT:C170829 Unresectable Rhabdoid Tumor 4 181137 -NCIT:C188886 Unresectable Extrarenal Rhabdoid Tumor 5 181138 -NCIT:C188888 Unresectable Rhabdoid Tumor of the Kidney 5 181139 -NCIT:C6586 Extrarenal Rhabdoid Tumor 4 181140 -NCIT:C161608 Extrarenal Rhabdoid Tumor of the Prostate 5 181141 -NCIT:C171169 Extrarenal Rhabdoid Tumor of the Ovary 5 181142 -NCIT:C171170 Recurrent Extrarenal Rhabdoid Tumor of the Ovary 6 181143 -NCIT:C171171 Refractory Extrarenal Rhabdoid Tumor of the Ovary 6 181144 -NCIT:C188881 Recurrent Extrarenal Rhabdoid Tumor 5 181145 -NCIT:C171170 Recurrent Extrarenal Rhabdoid Tumor of the Ovary 6 181146 -NCIT:C188884 Refractory Extrarenal Rhabdoid Tumor 5 181147 -NCIT:C171171 Refractory Extrarenal Rhabdoid Tumor of the Ovary 6 181148 -NCIT:C188886 Unresectable Extrarenal Rhabdoid Tumor 5 181149 -NCIT:C96847 Extrarenal Rhabdoid Tumor of the Liver 5 181150 -NCIT:C6906 Atypical Teratoid/Rhabdoid Tumor 4 181151 -NCIT:C133499 Recurrent Atypical Teratoid/Rhabdoid Tumor 5 181152 -NCIT:C162723 Refractory Atypical Teratoid/Rhabdoid Tumor 5 181153 -NCIT:C68634 Childhood Atypical Teratoid/Rhabdoid Tumor 5 181154 -NCIT:C8715 Rhabdoid Tumor of the Kidney 4 181155 -NCIT:C162730 Recurrent Rhabdoid Tumor of the Kidney 5 181156 -NCIT:C162731 Refractory Rhabdoid Tumor of the Kidney 5 181157 -NCIT:C188888 Unresectable Rhabdoid Tumor of the Kidney 5 181158 -NCIT:C6569 Congenital Mesoblastic Nephroma 3 181159 -NCIT:C39814 Classic Congenital Mesoblastic Nephroma 4 181160 -NCIT:C39815 Cellular Congenital Mesoblastic Nephroma 4 181161 -NCIT:C97058 Mixed Congenital Mesoblastic Nephroma 4 181162 -NCIT:C66806 Ciliary Body Medulloepithelioma 3 181163 -NCIT:C4557 Ciliary Body Malignant Medulloepithelioma 4 181164 -NCIT:C66807 Ciliary Body Benign Medulloepithelioma 4 181165 -NCIT:C66809 Ciliary Body Benign Teratoid Medulloepithelioma 5 181166 -NCIT:C66810 Ciliary Body Teratoid Medulloepithelioma 4 181167 -NCIT:C66809 Ciliary Body Benign Teratoid Medulloepithelioma 5 181168 -NCIT:C6990 Central Nervous System Embryonal Tumor 3 181169 -NCIT:C114833 Childhood Central Nervous System Embryonal Tumor 4 181170 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 5 181171 -NCIT:C114812 Childhood Pineoblastoma 5 181172 -NCIT:C115374 Recurrent Childhood Pineoblastoma 6 181173 -NCIT:C114836 Recurrent Childhood Central Nervous System Embryonal Neoplasm 5 181174 -NCIT:C115374 Recurrent Childhood Pineoblastoma 6 181175 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 6 181176 -NCIT:C6774 Recurrent Childhood Medulloblastoma 6 181177 -NCIT:C115203 Childhood Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 5 181178 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 6 181179 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 7 181180 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 6 181181 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 5 181182 -NCIT:C3997 Childhood Medulloblastoma 5 181183 -NCIT:C6774 Recurrent Childhood Medulloblastoma 6 181184 -NCIT:C5961 Childhood Central Nervous System Embryonal Tumor, Not Otherwise Specified 5 181185 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 6 181186 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 7 181187 -NCIT:C68634 Childhood Atypical Teratoid/Rhabdoid Tumor 5 181188 -NCIT:C121963 Cribriform Neuroepithelial Tumor 4 181189 -NCIT:C129501 Central Nervous System Embryonal Tumor with Rhabdoid Features 4 181190 -NCIT:C129537 Central Nervous System Ewing Sarcoma/Peripheral Primitive Neuroectodermal Tumor 4 181191 -NCIT:C186611 Central Nervous System Ewing Sarcoma 5 181192 -NCIT:C186534 Embryonal Tumor with Multilayered Rosettes 4 181193 -NCIT:C129499 Embryonal Tumor with Multilayered Rosettes without C19MC Alteration 5 181194 -NCIT:C186535 Embryonal Tumor with Multilayered Rosettes, DICER1-Mutated 5 181195 -NCIT:C4915 Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 5 181196 -NCIT:C115203 Childhood Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 6 181197 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 7 181198 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 181199 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 7 181200 -NCIT:C8290 Adult Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 6 181201 -NCIT:C186542 Central Nervous System Embryonal Tumor, Not Elsewhere Classified 4 181202 -NCIT:C186556 Central Nervous System Tumor with BCOR Internal Tandem Duplication 4 181203 -NCIT:C3222 Medulloblastoma 4 181204 -NCIT:C129436 Large Cell/Anaplastic Medulloblastoma 5 181205 -NCIT:C129439 Medulloblastoma Molecular Subtypes 5 181206 -NCIT:C129440 Medulloblastoma, WNT-Activated 6 181207 -NCIT:C180892 Refractory Medulloblastoma, WNT-Activated 7 181208 -NCIT:C180893 Recurrent Medulloblastoma, WNT-Activated 7 181209 -NCIT:C129441 Medulloblastoma, SHH-Activated 6 181210 -NCIT:C129442 Medulloblastoma, SHH-Activated, TP53-Mutant 7 181211 -NCIT:C129443 Medulloblastoma, SHH-Activated, TP53-Wildtype 7 181212 -NCIT:C186591 ELP1-Associated Medulloblastoma 8 181213 -NCIT:C147109 Recurrent Medulloblastoma, SHH-Activated 7 181214 -NCIT:C147110 Refractory Medulloblastoma, SHH-Activated 7 181215 -NCIT:C189841 Medulloblastoma, SHH-1 7 181216 -NCIT:C189844 Medulloblastoma, SHH-2 7 181217 -NCIT:C189845 Medulloblastoma, SHH-3 7 181218 -NCIT:C189846 Medulloblastoma, SHH-4 7 181219 -NCIT:C129444 Medulloblastoma, Non-WNT/Non-SHH 6 181220 -NCIT:C129445 Medulloblastoma, Non-WNT/Non-SHH, Group 3 7 181221 -NCIT:C129446 Medulloblastoma, Non-WNT/Non-SHH, Group 4 7 181222 -NCIT:C129447 Medulloblastoma, Not Otherwise Specified 5 181223 -NCIT:C142856 Refractory Medulloblastoma 5 181224 -NCIT:C147110 Refractory Medulloblastoma, SHH-Activated 6 181225 -NCIT:C180892 Refractory Medulloblastoma, WNT-Activated 6 181226 -NCIT:C156039 Fourth Ventricle Medulloblastoma 5 181227 -NCIT:C177725 Metastatic Medulloblastoma 5 181228 -NCIT:C5399 Medulloblastoma with Leptomeningeal Spread 6 181229 -NCIT:C27237 Familial Adenomatous Polyposis Associated Medulloblastoma 5 181230 -NCIT:C3706 Medullomyoblastoma 5 181231 -NCIT:C3997 Childhood Medulloblastoma 5 181232 -NCIT:C6774 Recurrent Childhood Medulloblastoma 6 181233 -NCIT:C4011 Adult Medulloblastoma 5 181234 -NCIT:C4956 Desmoplastic/Nodular Medulloblastoma 5 181235 -NCIT:C5401 Cerebellar Vermis Medulloblastoma 5 181236 -NCIT:C5402 Region 17p13 Allelic Loss Associated Medulloblastoma 5 181237 -NCIT:C54039 Classic Medulloblastoma 5 181238 -NCIT:C5405 Nevoid Basal Cell Carcinoma Syndrome Associated Medulloblastoma 5 181239 -NCIT:C5407 Medulloblastoma with Extensive Nodularity 5 181240 -NCIT:C5588 Recurrent Medulloblastoma 5 181241 -NCIT:C147109 Recurrent Medulloblastoma, SHH-Activated 6 181242 -NCIT:C180893 Recurrent Medulloblastoma, WNT-Activated 6 181243 -NCIT:C6774 Recurrent Childhood Medulloblastoma 6 181244 -NCIT:C6904 Large Cell Medulloblastoma 5 181245 -NCIT:C92625 Anaplastic Medulloblastoma 5 181246 -NCIT:C9497 Melanocytic Medulloblastoma 5 181247 -NCIT:C4327 Central Nervous System Medulloepithelioma 4 181248 -NCIT:C4826 Central Nervous System Neuroblastoma 4 181249 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 5 181250 -NCIT:C186547 Central Nervous System Neuroblastoma, FOXR2-Activated 5 181251 -NCIT:C5398 Central Nervous System Embryonal Tumor, Not Otherwise Specified 4 181252 -NCIT:C5400 Central Nervous System Embryonal Tumor, Not Otherwise Specified with Leptomeningeal Spread 5 181253 -NCIT:C5406 Spinal Cord Embryonal Tumor, Not Otherwise Specified 5 181254 -NCIT:C5411 Adult Central Nervous System Embryonal Tumor, Not Otherwise Specified 5 181255 -NCIT:C68703 Adult Supratentorial Embryonal Tumor, Not Otherwise Specified 6 181256 -NCIT:C5817 Intracranial Embryonal Tumor, Not Otherwise Specified 5 181257 -NCIT:C5436 Cerebellopontine Angle Embryonal Tumor, Not Otherwise Specified 6 181258 -NCIT:C6968 Supratentorial Embryonal Tumor, Not Otherwise Specified 6 181259 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 7 181260 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 181261 -NCIT:C4970 Cerebral Embryonal Tumor, Not Otherwise Specified 7 181262 -NCIT:C68703 Adult Supratentorial Embryonal Tumor, Not Otherwise Specified 7 181263 -NCIT:C5961 Childhood Central Nervous System Embryonal Tumor, Not Otherwise Specified 5 181264 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 6 181265 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 7 181266 -NCIT:C6906 Atypical Teratoid/Rhabdoid Tumor 4 181267 -NCIT:C133499 Recurrent Atypical Teratoid/Rhabdoid Tumor 5 181268 -NCIT:C162723 Refractory Atypical Teratoid/Rhabdoid Tumor 5 181269 -NCIT:C68634 Childhood Atypical Teratoid/Rhabdoid Tumor 5 181270 -NCIT:C92629 Central Nervous System Ganglioneuroblastoma 4 181271 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 5 181272 -NCIT:C7063 Notochordal Tumor 3 181273 -NCIT:C121901 Benign Notochordal Cell Tumor 4 181274 -NCIT:C2947 Chordoma 4 181275 -NCIT:C153323 Metastatic Chordoma 5 181276 -NCIT:C153324 Locally Advanced Chordoma 6 181277 -NCIT:C173333 Advanced Chordoma 6 181278 -NCIT:C153325 Unresectable Chordoma 5 181279 -NCIT:C155973 Recurrent Chordoma 5 181280 -NCIT:C162728 Recurrent Dedifferentiated Chordoma 6 181281 -NCIT:C185073 Locally Recurrent Chordoma 6 181282 -NCIT:C162721 Refractory Chordoma 5 181283 -NCIT:C162729 Refractory Dedifferentiated Chordoma 6 181284 -NCIT:C177898 Poorly Differentiated Chordoma 5 181285 -NCIT:C178563 Conventional Chordoma 5 181286 -NCIT:C6902 Chondroid Chordoma 6 181287 -NCIT:C155782 Sellar Chondroid Chordoma 7 181288 -NCIT:C5426 Clivus Chondroid Chordoma 7 181289 -NCIT:C189032 Childhood Chordoma 5 181290 -NCIT:C48876 Dedifferentiated Chordoma 5 181291 -NCIT:C155783 Sellar Dedifferentiated Chordoma 6 181292 -NCIT:C162728 Recurrent Dedifferentiated Chordoma 6 181293 -NCIT:C162729 Refractory Dedifferentiated Chordoma 6 181294 -NCIT:C5156 Spinal Chordoma 5 181295 -NCIT:C129927 Sacral Chordoma 6 181296 -NCIT:C177775 Thoracic Chordoma 6 181297 -NCIT:C5453 Skull Base Chordoma 5 181298 -NCIT:C155781 Sellar Chordoma 6 181299 -NCIT:C155782 Sellar Chondroid Chordoma 7 181300 -NCIT:C155783 Sellar Dedifferentiated Chordoma 7 181301 -NCIT:C5412 Clivus Chordoma 6 181302 -NCIT:C5426 Clivus Chondroid Chordoma 7 181303 -NCIT:C8997 Blastoma 3 181304 -NCIT:C155304 Pituitary Gland Blastoma 4 181305 -NCIT:C5669 Pleuropulmonary Blastoma 4 181306 -NCIT:C45626 Type I Pleuropulmonary Blastoma 5 181307 -NCIT:C45627 Type II Pleuropulmonary Blastoma 5 181308 -NCIT:C45628 Type III Pleuropulmonary Blastoma 5 181309 -NCIT:C36012 Nodular Neoplasm 2 181310 -NCIT:C36029 Necrotic Neoplasm 2 181311 -NCIT:C36030 Osteolytic Neoplasm 2 181312 -NCIT:C27248 Cranial Nodular Fasciitis 3 181313 -NCIT:C2945 Chondroblastoma 3 181314 -NCIT:C173895 Maxillofacial Chondroblastoma 4 181315 -NCIT:C189023 Childhood Chondroblastoma 4 181316 -NCIT:C3516 Aneurysmal Bone Cyst 3 181317 -NCIT:C189029 Childhood Aneurysmal Bone Cyst 4 181318 -NCIT:C3738 Osteoclastic Giant Cell-Rich Tumor of Bone 3 181319 -NCIT:C121931 Intermediate Osteoclastic Giant Cell-Rich Tumor of Bone 4 181320 -NCIT:C121932 Giant Cell Tumor of Bone 5 181321 -NCIT:C189030 Childhood Giant Cell Tumor of Bone 6 181322 -NCIT:C121933 Malignant Osteoclastic Giant Cell-Rich Tumor of Bone 4 181323 -NCIT:C4304 Malignancy in Giant Cell Tumor of Bone 5 181324 -NCIT:C27477 Benign Osteoclastic Giant Cell-Rich Tumor of Bone 4 181325 -NCIT:C121893 Giant Cell Lesion of Small Bones 5 181326 -NCIT:C3740 Desmoplastic Fibroma 3 181327 -NCIT:C173900 Maxillofacial Desmoplastic Fibroma 4 181328 -NCIT:C7812 Solitary Plasmacytoma of Bone 3 181329 -NCIT:C185035 Multiple Solitary Plasmacytoma of Bone 4 181330 -NCIT:C36031 Papillary Neoplasm 2 181331 -NCIT:C8429 Papillary Epithelial Neoplasm 3 181332 -NCIT:C174022 Aggressive Papillary Tumor 4 181333 -NCIT:C27883 Papillary Urothelial Neoplasm 4 181334 -NCIT:C140358 Stage 0a Renal Pelvis and Ureter Cancer AJCC v8 5 181335 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 6 181336 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 6 181337 -NCIT:C191672 Papillary Urothelial Neoplasm of Low Malignant Potential 5 181338 -NCIT:C27884 Bladder Papillary Urothelial Neoplasm of Low Malignant Potential 6 181339 -NCIT:C191673 Non-Invasive Papillary Urothelial Carcinoma, Low Grade 5 181340 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 6 181341 -NCIT:C191675 Non-Invasive Papillary Urothelial Carcinoma, High Grade 5 181342 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 6 181343 -NCIT:C191686 Invasive Micropapillary Urothelial Carcinoma 5 181344 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 6 181345 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 7 181346 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 6 181347 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 7 181348 -NCIT:C3842 Urothelial Papilloma 5 181349 -NCIT:C39858 Bladder Urothelial Papilloma 6 181350 -NCIT:C39859 Bladder Inverted Papilloma 7 181351 -NCIT:C4528 Renal Pelvis Urothelial Papilloma 6 181352 -NCIT:C6187 Renal Pelvis Inverted Papilloma 7 181353 -NCIT:C5061 Urethral Urothelial Papilloma 6 181354 -NCIT:C6173 Urethral Inverted Papilloma 7 181355 -NCIT:C6160 Ureter Urothelial Papilloma 6 181356 -NCIT:C6174 Ureter Inverted Papilloma 7 181357 -NCIT:C6192 Inverted Urothelial Papilloma 6 181358 -NCIT:C39859 Bladder Inverted Papilloma 7 181359 -NCIT:C6173 Urethral Inverted Papilloma 7 181360 -NCIT:C6174 Ureter Inverted Papilloma 7 181361 -NCIT:C6187 Renal Pelvis Inverted Papilloma 7 181362 -NCIT:C39857 Bladder Papillary Urothelial Neoplasm 5 181363 -NCIT:C39831 Bladder Non-Invasive Papillary Urothelial Neoplasm 6 181364 -NCIT:C158382 Bladder Non-Invasive Papillary Urothelial Carcinoma 7 181365 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 8 181366 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 8 181367 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 8 181368 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 8 181369 -NCIT:C27884 Bladder Papillary Urothelial Neoplasm of Low Malignant Potential 7 181370 -NCIT:C39858 Bladder Urothelial Papilloma 7 181371 -NCIT:C39859 Bladder Inverted Papilloma 8 181372 -NCIT:C7383 Bladder Papillary Urothelial Carcinoma 6 181373 -NCIT:C158382 Bladder Non-Invasive Papillary Urothelial Carcinoma 7 181374 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 8 181375 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 8 181376 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 8 181377 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 8 181378 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 7 181379 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 181380 -NCIT:C7517 Stage 0a Renal Pelvis and Ureter Cancer AJCC v7 5 181381 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 6 181382 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 6 181383 -NCIT:C8603 Renal Pelvis Papillary Urothelial Neoplasm 5 181384 -NCIT:C4528 Renal Pelvis Urothelial Papilloma 6 181385 -NCIT:C6187 Renal Pelvis Inverted Papilloma 7 181386 -NCIT:C6148 Renal Pelvis Papillary Urothelial Carcinoma 6 181387 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 7 181388 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 7 181389 -NCIT:C2927 Papillary Carcinoma 4 181390 -NCIT:C164144 Micropapillary Carcinoma 5 181391 -NCIT:C128847 Lung Micropapillary Adenocarcinoma 6 181392 -NCIT:C172813 Invasive Pancreatic Micropapillary Adenocarcinoma 6 181393 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 6 181394 -NCIT:C27534 Digital Papillary Adenocarcinoma 6 181395 -NCIT:C36084 Invasive Breast Micropapillary Carcinoma 6 181396 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 6 181397 -NCIT:C65182 Micropapillary Transitional Cell Carcinoma 6 181398 -NCIT:C191686 Invasive Micropapillary Urothelial Carcinoma 7 181399 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 8 181400 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 181401 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 8 181402 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 181403 -NCIT:C6882 Micropapillary Serous Carcinoma 6 181404 -NCIT:C96491 Colorectal Micropapillary Adenocarcinoma 6 181405 -NCIT:C96492 Colon Micropapillary Adenocarcinoma 7 181406 -NCIT:C96493 Rectal Micropapillary Adenocarcinoma 7 181407 -NCIT:C2853 Papillary Adenocarcinoma 5 181408 -NCIT:C172813 Invasive Pancreatic Micropapillary Adenocarcinoma 6 181409 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 6 181410 -NCIT:C27254 Papillary Eccrine Carcinoma 6 181411 -NCIT:C27534 Digital Papillary Adenocarcinoma 7 181412 -NCIT:C27937 Thymic Low Grade Papillary Adenocarcinoma 6 181413 -NCIT:C3777 Papillary Cystadenocarcinoma 6 181414 -NCIT:C65204 Papillary Mucinous Cystadenocarcinoma 7 181415 -NCIT:C8377 Papillary Serous Cystadenocarcinoma 7 181416 -NCIT:C4035 Thyroid Gland Papillary Carcinoma 6 181417 -NCIT:C123903 Childhood Thyroid Gland Papillary Carcinoma 7 181418 -NCIT:C126409 Warthin-Like Variant Thyroid Gland Papillary Carcinoma 7 181419 -NCIT:C126410 Thyroid Gland Papillary Carcinoma with Fibromatosis/Fasciitis-Like/Desmoid-Type Stroma 7 181420 -NCIT:C126594 Follicular Variant Thyroid Gland Papillary Carcinoma 7 181421 -NCIT:C66850 Invasive Encapsulated Follicular Variant Thyroid Gland Papillary Carcinoma 8 181422 -NCIT:C7381 Invasive Follicular Variant Thyroid Gland Papillary Carcinoma 8 181423 -NCIT:C140960 Thyroid Gland Papillary Carcinoma by AJCC v7 Stage 7 181424 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 8 181425 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 8 181426 -NCIT:C9083 Stage IV Thyroid Gland Papillary Carcinoma AJCC v7 8 181427 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 9 181428 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 9 181429 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 9 181430 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 8 181431 -NCIT:C140976 Thyroid Gland Papillary Carcinoma by AJCC v8 Stage 7 181432 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 8 181433 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 9 181434 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 9 181435 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 8 181436 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 9 181437 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 9 181438 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 8 181439 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 8 181440 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 9 181441 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 9 181442 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 7 181443 -NCIT:C156034 Encapsulated Variant Thyroid Gland Papillary Carcinoma 7 181444 -NCIT:C156045 Spindle Cell Variant Thyroid Gland Papillary Carcinoma 7 181445 -NCIT:C156050 Hobnail Variant Thyroid Gland Papillary Carcinoma 7 181446 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 7 181447 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 7 181448 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 7 181449 -NCIT:C187644 Classic Thyroid Gland Papillary Carcinoma 7 181450 -NCIT:C35558 Tall Cell Variant Thyroid Gland Papillary Carcinoma 7 181451 -NCIT:C35830 Columnar Cell Variant Thyroid Gland Papillary Carcinoma 7 181452 -NCIT:C37304 Multicentric Thyroid Gland Papillary Carcinoma 7 181453 -NCIT:C46004 Thyroid Gland Papillary Microcarcinoma 7 181454 -NCIT:C46092 Macrofollicular Variant Thyroid Gland Papillary Carcinoma 7 181455 -NCIT:C46093 Oncocytic Variant Thyroid Gland Papillary Carcinoma 7 181456 -NCIT:C46094 Clear Cell Variant Thyroid Gland Papillary Carcinoma 7 181457 -NCIT:C46095 Solid/Trabecular Variant Thyroid Gland Papillary Carcinoma 7 181458 -NCIT:C7427 Diffuse Sclerosing Variant Thyroid Gland Papillary Carcinoma 7 181459 -NCIT:C4182 Serous Surface Papillary Carcinoma 6 181460 -NCIT:C6256 Ovarian Serous Surface Papillary Adenocarcinoma 7 181461 -NCIT:C6882 Micropapillary Serous Carcinoma 7 181462 -NCIT:C7695 Primary Peritoneal Serous Papillary Adenocarcinoma 7 181463 -NCIT:C8377 Papillary Serous Cystadenocarcinoma 7 181464 -NCIT:C54400 Nasopharyngeal Papillary Adenocarcinoma 6 181465 -NCIT:C5472 Gastric Papillary Adenocarcinoma 6 181466 -NCIT:C67560 Endolymphatic Sac Tumor 6 181467 -NCIT:C6975 Papillary Renal Cell Carcinoma 6 181468 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 7 181469 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 8 181470 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 8 181471 -NCIT:C190505 Unresectable Papillary Renal Cell Carcinoma 7 181472 -NCIT:C27886 Type 1 Papillary Renal Cell Carcinoma 7 181473 -NCIT:C27887 Type 2 Papillary Renal Cell Carcinoma 7 181474 -NCIT:C27890 Sporadic Papillary Renal Cell Carcinoma 7 181475 -NCIT:C9222 Hereditary Papillary Renal Cell Carcinoma 7 181476 -NCIT:C7438 Invasive Papillary Adenocarcinoma 6 181477 -NCIT:C36085 Invasive Breast Papillary Carcinoma 7 181478 -NCIT:C176010 Encapsulated Breast Papillary Carcinoma with Invasion 8 181479 -NCIT:C176012 Invasive Breast Solid Papillary Carcinoma 8 181480 -NCIT:C36084 Invasive Breast Micropapillary Carcinoma 8 181481 -NCIT:C7439 Breast Papillary Ductal Carcinoma In Situ with Invasion 8 181482 -NCIT:C39896 Prostate Ductal Adenocarcinoma, Papillary Pattern 7 181483 -NCIT:C5650 Lung Papillary Adenocarcinoma 7 181484 -NCIT:C128847 Lung Micropapillary Adenocarcinoma 8 181485 -NCIT:C7381 Invasive Follicular Variant Thyroid Gland Papillary Carcinoma 7 181486 -NCIT:C95967 Ampulla of Vater Invasive Papillary Adenocarcinoma 7 181487 -NCIT:C9134 Breast Papillary Carcinoma 6 181488 -NCIT:C176009 Encapsulated Breast Papillary Carcinoma 7 181489 -NCIT:C176010 Encapsulated Breast Papillary Carcinoma with Invasion 8 181490 -NCIT:C36085 Invasive Breast Papillary Carcinoma 7 181491 -NCIT:C176010 Encapsulated Breast Papillary Carcinoma with Invasion 8 181492 -NCIT:C176012 Invasive Breast Solid Papillary Carcinoma 8 181493 -NCIT:C36084 Invasive Breast Micropapillary Carcinoma 8 181494 -NCIT:C7439 Breast Papillary Ductal Carcinoma In Situ with Invasion 8 181495 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 7 181496 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 8 181497 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 8 181498 -NCIT:C6870 Breast Solid Papillary Carcinoma 7 181499 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 8 181500 -NCIT:C176012 Invasive Breast Solid Papillary Carcinoma 8 181501 -NCIT:C96491 Colorectal Micropapillary Adenocarcinoma 6 181502 -NCIT:C96492 Colon Micropapillary Adenocarcinoma 7 181503 -NCIT:C96493 Rectal Micropapillary Adenocarcinoma 7 181504 -NCIT:C4102 Papillary Squamous Cell Carcinoma 5 181505 -NCIT:C128060 Vaginal Papillary Carcinoma 6 181506 -NCIT:C164248 Warty Carcinoma 6 181507 -NCIT:C40191 Cervical Warty Carcinoma 7 181508 -NCIT:C40248 Vaginal Warty Carcinoma 7 181509 -NCIT:C40287 Vulvar Warty Carcinoma 7 181510 -NCIT:C6981 Warty Carcinoma of the Penis 7 181511 -NCIT:C3781 Verrucous Carcinoma 6 181512 -NCIT:C165465 Skin Verrucous Carcinoma 7 181513 -NCIT:C6811 Plantar Verrucous Carcinoma 8 181514 -NCIT:C27420 Esophageal Verrucous Carcinoma 7 181515 -NCIT:C27678 Human Papillomavirus-Related Verrucous Carcinoma 7 181516 -NCIT:C39832 Bladder Verrucous Carcinoma 7 181517 -NCIT:C39833 Schistosoma Hematobium-Related Bladder Verrucous Carcinoma 8 181518 -NCIT:C39874 Urethral Verrucous Carcinoma 7 181519 -NCIT:C40190 Cervical Verrucous Carcinoma 7 181520 -NCIT:C6325 Vaginal Verrucous Carcinoma 7 181521 -NCIT:C6383 Vulvar Verrucous Carcinoma 7 181522 -NCIT:C6982 Verrucous Carcinoma of the Penis 7 181523 -NCIT:C159247 Carcinoma Cuniculatum of the Penis 8 181524 -NCIT:C7470 Anal Verrucous Carcinoma 7 181525 -NCIT:C8174 Oral Cavity Verrucous Carcinoma 7 181526 -NCIT:C179894 Oral Cavity Carcinoma Cuniculatum 8 181527 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 8 181528 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 8 181529 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 8 181530 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 8 181531 -NCIT:C8188 Laryngeal Verrucous Carcinoma 7 181532 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 8 181533 -NCIT:C8189 Glottis Verrucous Carcinoma 8 181534 -NCIT:C8190 Subglottic Verrucous Carcinoma 8 181535 -NCIT:C8191 Supraglottic Verrucous Carcinoma 8 181536 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 181537 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 181538 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 181539 -NCIT:C8244 Stage IV Laryngeal Verrucous Carcinoma AJCC v7 8 181540 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 9 181541 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 9 181542 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 9 181543 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 181544 -NCIT:C40192 Cervical Papillary Squamous Cell Carcinoma 6 181545 -NCIT:C40191 Cervical Warty Carcinoma 7 181546 -NCIT:C40194 Cervical Squamotransitional Carcinoma 7 181547 -NCIT:C45502 Lung Squamous Cell Carcinoma, Papillary Variant 6 181548 -NCIT:C54335 Laryngeal Papillary Squamous Cell Carcinoma 6 181549 -NCIT:C65164 Non-Invasive Papillary Squamous Cell Carcinoma 6 181550 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 7 181551 -NCIT:C6983 Papillary Carcinoma of the Penis 6 181552 -NCIT:C103340 Papillary Carcinoma of the Penis, Not Otherwise Specified 7 181553 -NCIT:C159249 Papillary-Basaloid Carcinoma of the Penis 7 181554 -NCIT:C6981 Warty Carcinoma of the Penis 7 181555 -NCIT:C6982 Verrucous Carcinoma of the Penis 7 181556 -NCIT:C159247 Carcinoma Cuniculatum of the Penis 8 181557 -NCIT:C4122 Papillary Transitional Cell Carcinoma 5 181558 -NCIT:C6148 Renal Pelvis Papillary Urothelial Carcinoma 6 181559 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 7 181560 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 7 181561 -NCIT:C65181 Non-Invasive Papillary Transitional Cell Carcinoma 6 181562 -NCIT:C140358 Stage 0a Renal Pelvis and Ureter Cancer AJCC v8 7 181563 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 8 181564 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 8 181565 -NCIT:C158382 Bladder Non-Invasive Papillary Urothelial Carcinoma 7 181566 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 8 181567 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 8 181568 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 8 181569 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 8 181570 -NCIT:C191673 Non-Invasive Papillary Urothelial Carcinoma, Low Grade 7 181571 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 8 181572 -NCIT:C191675 Non-Invasive Papillary Urothelial Carcinoma, High Grade 7 181573 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 8 181574 -NCIT:C7517 Stage 0a Renal Pelvis and Ureter Cancer AJCC v7 7 181575 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 8 181576 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 8 181577 -NCIT:C65182 Micropapillary Transitional Cell Carcinoma 6 181578 -NCIT:C191686 Invasive Micropapillary Urothelial Carcinoma 7 181579 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 8 181580 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 181581 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 8 181582 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 181583 -NCIT:C7383 Bladder Papillary Urothelial Carcinoma 6 181584 -NCIT:C158382 Bladder Non-Invasive Papillary Urothelial Carcinoma 7 181585 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 8 181586 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 8 181587 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 8 181588 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 8 181589 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 7 181590 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 181591 -NCIT:C65163 Papillary Carcinoma In Situ 5 181592 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 6 181593 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 7 181594 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 7 181595 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 6 181596 -NCIT:C3713 Papillomatosis 4 181597 -NCIT:C128637 Recurrent Respiratory Papillomatosis 5 181598 -NCIT:C157733 Laryngeal Papillomatosis 6 181599 -NCIT:C65198 Glandular Papillomatosis 5 181600 -NCIT:C7363 Intraductal Papillomatosis 5 181601 -NCIT:C5201 Breast Intraductal Papillomatosis 6 181602 -NCIT:C9503 Juvenile Breast Papillomatosis 7 181603 -NCIT:C9009 Squamous Papillomatosis 5 181604 -NCIT:C40116 Fallopian Tube Metaplastic Papillary Tumor 4 181605 -NCIT:C4179 Papillary Cystic Neoplasm 4 181606 -NCIT:C121955 Clear Cell Papillary Renal Tumor 5 181607 -NCIT:C2974 Papillary Cystadenoma 5 181608 -NCIT:C155952 Uterine Ligament Papillary Cystadenoma 6 181609 -NCIT:C179921 Broad Ligament Papillary Cystadenoma 7 181610 -NCIT:C40142 Uterine Ligament Papillary Cystadenoma Associated with von Hippel-Lindau Disease 7 181611 -NCIT:C155953 Epididymal Papillary Cystadenoma 6 181612 -NCIT:C4178 Borderline Papillary Cystadenoma 6 181613 -NCIT:C4183 Borderline Papillary Serous Cystadenoma 7 181614 -NCIT:C4186 Borderline Papillary Mucinous Cystadenoma 7 181615 -NCIT:C4180 Papillary Serous Cystadenoma 6 181616 -NCIT:C4183 Borderline Papillary Serous Cystadenoma 7 181617 -NCIT:C7278 Ovarian Papillary Cystadenoma 7 181618 -NCIT:C4184 Papillary Mucinous Cystadenoma 6 181619 -NCIT:C4186 Borderline Papillary Mucinous Cystadenoma 7 181620 -NCIT:C65203 Clear Cell Papillary Cystadenoma 6 181621 -NCIT:C35834 Salivary Gland Intraductal Papilloma 5 181622 -NCIT:C3777 Papillary Cystadenocarcinoma 5 181623 -NCIT:C65204 Papillary Mucinous Cystadenocarcinoma 6 181624 -NCIT:C8377 Papillary Serous Cystadenocarcinoma 6 181625 -NCIT:C5206 Breast Papillary Neoplasm 4 181626 -NCIT:C36090 Breast Intraductal Papillary Neoplasm 5 181627 -NCIT:C3863 Breast Intraductal Papilloma 6 181628 -NCIT:C27944 Breast Sclerosing Papilloma 7 181629 -NCIT:C36087 Breast Central Papilloma 7 181630 -NCIT:C36088 Breast Peripheral Papilloma 7 181631 -NCIT:C36089 Breast Atypical Papilloma 7 181632 -NCIT:C5201 Breast Intraductal Papillomatosis 7 181633 -NCIT:C9503 Juvenile Breast Papillomatosis 8 181634 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 6 181635 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 7 181636 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 7 181637 -NCIT:C9134 Breast Papillary Carcinoma 5 181638 -NCIT:C176009 Encapsulated Breast Papillary Carcinoma 6 181639 -NCIT:C176010 Encapsulated Breast Papillary Carcinoma with Invasion 7 181640 -NCIT:C36085 Invasive Breast Papillary Carcinoma 6 181641 -NCIT:C176010 Encapsulated Breast Papillary Carcinoma with Invasion 7 181642 -NCIT:C176012 Invasive Breast Solid Papillary Carcinoma 7 181643 -NCIT:C36084 Invasive Breast Micropapillary Carcinoma 7 181644 -NCIT:C7439 Breast Papillary Ductal Carcinoma In Situ with Invasion 7 181645 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 6 181646 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 7 181647 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 7 181648 -NCIT:C6870 Breast Solid Papillary Carcinoma 6 181649 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 7 181650 -NCIT:C176012 Invasive Breast Solid Papillary Carcinoma 7 181651 -NCIT:C6881 Bile Duct Intraductal Papillary Neoplasm 4 181652 -NCIT:C7124 Extrahepatic Bile Duct Intraductal Papillary Neoplasm 5 181653 -NCIT:C96948 Extrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 6 181654 -NCIT:C7125 Intrahepatic Bile Duct Intraductal Papillary Neoplasm 5 181655 -NCIT:C96949 Intrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 6 181656 -NCIT:C96807 Bile Duct Intraductal Papillary Neoplasm, Low Grade 5 181657 -NCIT:C96809 Bile Duct Intraductal Papillary Neoplasm, High Grade 5 181658 -NCIT:C96810 Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 5 181659 -NCIT:C96948 Extrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 6 181660 -NCIT:C96949 Intrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 6 181661 -NCIT:C7130 Gallbladder Intracholecystic Papillary Neoplasm 4 181662 -NCIT:C5743 Gallbladder Intracholecystic Papillary Neoplasm with an Associated Invasive Carcinoma 5 181663 -NCIT:C96877 Gallbladder Intracholecystic Papillary Neoplasm, Low Grade 5 181664 -NCIT:C96879 Gallbladder Intracholecystic Papillary Neoplasm, High Grade 5 181665 -NCIT:C7440 Papilloma 4 181666 -NCIT:C35839 Salivary Gland Ductal Papilloma 5 181667 -NCIT:C35834 Salivary Gland Intraductal Papilloma 6 181668 -NCIT:C35835 Salivary Gland Inverted Ductal Papilloma 6 181669 -NCIT:C35836 Salivary Gland Sialadenoma Papilliferum 6 181670 -NCIT:C3698 Choroid Plexus Papilloma 5 181671 -NCIT:C5800 Childhood Choroid Plexus Papilloma 6 181672 -NCIT:C3712 Squamous Papilloma 5 181673 -NCIT:C173476 Oral Squamous Papilloma 6 181674 -NCIT:C5819 Buccal Squamous Papilloma 7 181675 -NCIT:C191740 Squamous Papilloma of the Urinary Tract 6 181676 -NCIT:C39834 Bladder Squamous Papilloma 7 181677 -NCIT:C4355 Eyelid Squamous Papilloma 6 181678 -NCIT:C4369 Nasal Vestibule Squamous Papilloma 6 181679 -NCIT:C45573 Lung Squamous Papilloma 6 181680 -NCIT:C5344 Esophageal Squamous Papilloma 6 181681 -NCIT:C6037 Nasopharyngeal Squamous Papilloma 6 181682 -NCIT:C6038 Oropharyngeal Squamous Papilloma 6 181683 -NCIT:C6224 Conjunctival Squamous Papilloma 6 181684 -NCIT:C6342 Cervical Squamous Papilloma 6 181685 -NCIT:C6374 Vaginal Squamous Papilloma 6 181686 -NCIT:C6376 Vulvar Squamous Papilloma 6 181687 -NCIT:C40290 Vulvar Squamous Papillomatosis 7 181688 -NCIT:C65165 Inverted Squamous Papilloma 6 181689 -NCIT:C7742 Laryngeal Squamous Papilloma 6 181690 -NCIT:C190150 Childhood Laryngeal Squamous Papilloma 7 181691 -NCIT:C96554 Anal Canal Squamous Papilloma 6 181692 -NCIT:C3785 Intraductal Papilloma 5 181693 -NCIT:C35834 Salivary Gland Intraductal Papilloma 6 181694 -NCIT:C3863 Breast Intraductal Papilloma 6 181695 -NCIT:C27944 Breast Sclerosing Papilloma 7 181696 -NCIT:C36087 Breast Central Papilloma 7 181697 -NCIT:C36088 Breast Peripheral Papilloma 7 181698 -NCIT:C36089 Breast Atypical Papilloma 7 181699 -NCIT:C5201 Breast Intraductal Papillomatosis 7 181700 -NCIT:C9503 Juvenile Breast Papillomatosis 8 181701 -NCIT:C3793 Inverted Papilloma 5 181702 -NCIT:C175334 Lacrimal Drainage System Inverted Papilloma 6 181703 -NCIT:C35835 Salivary Gland Inverted Ductal Papilloma 6 181704 -NCIT:C4118 Inverted Transitional Cell Papilloma 6 181705 -NCIT:C6192 Inverted Urothelial Papilloma 7 181706 -NCIT:C39859 Bladder Inverted Papilloma 8 181707 -NCIT:C6173 Urethral Inverted Papilloma 8 181708 -NCIT:C6174 Ureter Inverted Papilloma 8 181709 -NCIT:C6187 Renal Pelvis Inverted Papilloma 8 181710 -NCIT:C65165 Inverted Squamous Papilloma 6 181711 -NCIT:C6871 Sinonasal Inverted Papilloma 6 181712 -NCIT:C115432 Recurrent Sinonasal Inverted Papilloma 7 181713 -NCIT:C8194 Nasal Cavity Inverted Papilloma 7 181714 -NCIT:C8195 Paranasal Sinus Inverted Papilloma 7 181715 -NCIT:C6840 Maxillary Sinus Inverted Papilloma 8 181716 -NCIT:C6841 Sphenoid Sinus Inverted Papilloma 8 181717 -NCIT:C6842 Frontal Sinus Inverted Papilloma 8 181718 -NCIT:C6843 Ethmoid Sinus Inverted Papilloma 8 181719 -NCIT:C40112 Fallopian Tube Serous Papilloma 5 181720 -NCIT:C4061 Eyelid Papilloma 5 181721 -NCIT:C4355 Eyelid Squamous Papilloma 6 181722 -NCIT:C4115 Transitional Cell Papilloma 5 181723 -NCIT:C3842 Urothelial Papilloma 6 181724 -NCIT:C39858 Bladder Urothelial Papilloma 7 181725 -NCIT:C39859 Bladder Inverted Papilloma 8 181726 -NCIT:C4528 Renal Pelvis Urothelial Papilloma 7 181727 -NCIT:C6187 Renal Pelvis Inverted Papilloma 8 181728 -NCIT:C5061 Urethral Urothelial Papilloma 7 181729 -NCIT:C6173 Urethral Inverted Papilloma 8 181730 -NCIT:C6160 Ureter Urothelial Papilloma 7 181731 -NCIT:C6174 Ureter Inverted Papilloma 8 181732 -NCIT:C6192 Inverted Urothelial Papilloma 7 181733 -NCIT:C39859 Bladder Inverted Papilloma 8 181734 -NCIT:C6173 Urethral Inverted Papilloma 8 181735 -NCIT:C6174 Ureter Inverted Papilloma 8 181736 -NCIT:C6187 Renal Pelvis Inverted Papilloma 8 181737 -NCIT:C4118 Inverted Transitional Cell Papilloma 6 181738 -NCIT:C6192 Inverted Urothelial Papilloma 7 181739 -NCIT:C39859 Bladder Inverted Papilloma 8 181740 -NCIT:C6173 Urethral Inverted Papilloma 8 181741 -NCIT:C6174 Ureter Inverted Papilloma 8 181742 -NCIT:C6187 Renal Pelvis Inverted Papilloma 8 181743 -NCIT:C4181 Serous Surface Papilloma 5 181744 -NCIT:C7279 Ovarian Surface Papilloma 6 181745 -NCIT:C4614 Skin Papilloma 5 181746 -NCIT:C6880 Glandular Papilloma 5 181747 -NCIT:C175332 Lacrimal Drainage System Exophytic Papilloma 6 181748 -NCIT:C189336 Mullerian Papilloma 6 181749 -NCIT:C189337 Childhood Mullerian Papilloma 7 181750 -NCIT:C40215 Cervical Mullerian Papilloma 7 181751 -NCIT:C40255 Vaginal Mullerian Papilloma 7 181752 -NCIT:C4117 Sinonasal Papilloma 6 181753 -NCIT:C164251 Sinonasal Exophytic Papilloma 7 181754 -NCIT:C54347 Nasal Cavity Exophytic Papilloma 8 181755 -NCIT:C164256 Nasal Cavity Papilloma 7 181756 -NCIT:C54347 Nasal Cavity Exophytic Papilloma 8 181757 -NCIT:C8194 Nasal Cavity Inverted Papilloma 8 181758 -NCIT:C54345 Sinonasal Oncocytic Papilloma 7 181759 -NCIT:C6835 Paranasal Sinus Papilloma 7 181760 -NCIT:C6836 Ethmoid Sinus Papilloma 8 181761 -NCIT:C6843 Ethmoid Sinus Inverted Papilloma 9 181762 -NCIT:C6837 Frontal Sinus Papilloma 8 181763 -NCIT:C6842 Frontal Sinus Inverted Papilloma 9 181764 -NCIT:C6838 Sphenoid Sinus Papilloma 8 181765 -NCIT:C6841 Sphenoid Sinus Inverted Papilloma 9 181766 -NCIT:C6839 Maxillary Sinus Papilloma 8 181767 -NCIT:C6840 Maxillary Sinus Inverted Papilloma 9 181768 -NCIT:C8195 Paranasal Sinus Inverted Papilloma 8 181769 -NCIT:C6840 Maxillary Sinus Inverted Papilloma 9 181770 -NCIT:C6841 Sphenoid Sinus Inverted Papilloma 9 181771 -NCIT:C6842 Frontal Sinus Inverted Papilloma 9 181772 -NCIT:C6843 Ethmoid Sinus Inverted Papilloma 9 181773 -NCIT:C6871 Sinonasal Inverted Papilloma 7 181774 -NCIT:C115432 Recurrent Sinonasal Inverted Papilloma 8 181775 -NCIT:C8194 Nasal Cavity Inverted Papilloma 8 181776 -NCIT:C8195 Paranasal Sinus Inverted Papilloma 8 181777 -NCIT:C6840 Maxillary Sinus Inverted Papilloma 9 181778 -NCIT:C6841 Sphenoid Sinus Inverted Papilloma 9 181779 -NCIT:C6842 Frontal Sinus Inverted Papilloma 9 181780 -NCIT:C6843 Ethmoid Sinus Inverted Papilloma 9 181781 -NCIT:C45601 Bronchial Glandular Papilloma 6 181782 -NCIT:C8295 Bronchial Papilloma 5 181783 -NCIT:C45573 Lung Squamous Papilloma 6 181784 -NCIT:C45601 Bronchial Glandular Papilloma 6 181785 -NCIT:C45602 Bronchial Mixed Squamous Cell and Glandular Papilloma 6 181786 -NCIT:C79951 Papillary Adenoma 4 181787 -NCIT:C3494 Lung Papillary Adenoma 5 181788 -NCIT:C3687 Renal Papillary Adenoma 5 181789 -NCIT:C46111 Thyroid Gland Follicular Adenoma with Papillary Hyperplasia 5 181790 -NCIT:C5849 Extrahepatic Bile Duct Papillary Adenoma 5 181791 -NCIT:C8430 Ovarian Papillary Tumor 4 181792 -NCIT:C6256 Ovarian Serous Surface Papillary Adenocarcinoma 5 181793 -NCIT:C7278 Ovarian Papillary Cystadenoma 5 181794 -NCIT:C7279 Ovarian Surface Papilloma 5 181795 -NCIT:C95913 Ampullary Noninvasive Papillary Neoplasm, Pancreatobiliary Type 4 181796 -NCIT:C95914 Ampullary Noninvasive Pancreatobiliary Papillary Neoplasm with Low Grade Dysplasia 5 181797 -NCIT:C95915 Ampullary Noninvasive Pancreatobiliary Papillary Neoplasm with High Grade Dysplasia 5 181798 -NCIT:C92624 Papillary Tumor of the Pineal Region 3 181799 -NCIT:C36032 Premalignant Neoplasm 2 181800 -NCIT:C36033 Tubular Neoplasm 2 181801 -NCIT:C36034 Villous Neoplasm 2 181802 -NCIT:C36035 Encapsulated Neoplasm 2 181803 -NCIT:C121955 Clear Cell Papillary Renal Tumor 3 181804 -NCIT:C126598 Thyroid Gland Noninvasive Follicular Neoplasm with Papillary-Like Nuclear Features 3 181805 -NCIT:C156034 Encapsulated Variant Thyroid Gland Papillary Carcinoma 3 181806 -NCIT:C176009 Encapsulated Breast Papillary Carcinoma 3 181807 -NCIT:C176010 Encapsulated Breast Papillary Carcinoma with Invasion 4 181808 -NCIT:C2854 Warthin Tumor 3 181809 -NCIT:C175291 Lacrimal Gland Warthin Tumor 4 181810 -NCIT:C66865 Parotid Gland Warthin Tumor 4 181811 -NCIT:C3502 Thyroid Gland Follicular Adenoma 3 181812 -NCIT:C155957 Thyroid Gland Spindle Cell Follicular Adenoma 4 181813 -NCIT:C155958 Thyroid Gland Black Follicular Adenoma 4 181814 -NCIT:C187261 Thyroid Gland Follicular Adenoma with Papillary Architecture 4 181815 -NCIT:C190060 Childhood Thyroid Gland Follicular Adenoma 4 181816 -NCIT:C4160 Thyroid Gland Microfollicular Adenoma 4 181817 -NCIT:C4161 Thyroid Gland Macrofollicular Adenoma 4 181818 -NCIT:C46111 Thyroid Gland Follicular Adenoma with Papillary Hyperplasia 4 181819 -NCIT:C46115 Thyroid Gland Signet Ring Cell Follicular Adenoma 4 181820 -NCIT:C46116 Thyroid Gland Mucinous Follicular Adenoma 4 181821 -NCIT:C46118 Thyroid Gland Lipoadenoma 4 181822 -NCIT:C46119 Thyroid Gland Clear Cell Follicular Adenoma 4 181823 -NCIT:C46122 Thyroid Gland Hyperfunctioning Adenoma 4 181824 -NCIT:C46123 Thyroid Gland Follicular Adenoma with Bizarre Nuclei 4 181825 -NCIT:C6042 Thyroid Gland Oncocytic Adenoma 4 181826 -NCIT:C66850 Invasive Encapsulated Follicular Variant Thyroid Gland Papillary Carcinoma 3 181827 -NCIT:C7504 Adult Cystic Nephroma 3 181828 -NCIT:C8054 Thyroid Gland Follicular Carcinoma 3 181829 -NCIT:C123904 Childhood Thyroid Gland Follicular Carcinoma 4 181830 -NCIT:C140958 Thyroid Gland Follicular Carcinoma by AJCC v7 Stage 4 181831 -NCIT:C9084 Stage I Thyroid Gland Follicular Carcinoma AJCC v7 5 181832 -NCIT:C9085 Stage II Thyroid Gland Follicular Carcinoma AJCC v7 5 181833 -NCIT:C9086 Stage IV Thyroid Gland Follicular Carcinoma AJCC v7 5 181834 -NCIT:C115035 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v7 6 181835 -NCIT:C115036 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v7 6 181836 -NCIT:C115037 Stage IVC Thyroid Gland Follicular Carcinoma AJCC v7 6 181837 -NCIT:C9121 Stage III Thyroid Gland Follicular Carcinoma AJCC v7 5 181838 -NCIT:C140987 Thyroid Gland Follicular Carcinoma by AJCC v8 Stage 4 181839 -NCIT:C140988 Stage I Thyroid Gland Follicular Carcinoma AJCC v8 5 181840 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 6 181841 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 6 181842 -NCIT:C140991 Stage II Thyroid Gland Follicular Carcinoma AJCC v8 5 181843 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 6 181844 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 6 181845 -NCIT:C140995 Stage III Thyroid Gland Follicular Carcinoma AJCC v8 5 181846 -NCIT:C140996 Stage IV Thyroid Gland Follicular Carcinoma AJCC v8 5 181847 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 6 181848 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 6 181849 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 4 181850 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 5 181851 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 4 181852 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 5 181853 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 6 181854 -NCIT:C156122 Thyroid Gland Follicular Carcinoma, Encapsulated Angioinvasive 4 181855 -NCIT:C156123 Thyroid Gland Follicular Carcinoma, Widely Invasive 4 181856 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 4 181857 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 5 181858 -NCIT:C174571 Unresectable Thyroid Gland Follicular Carcinoma 4 181859 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 5 181860 -NCIT:C187643 Thyroid Gland Follicular Carcinoma, Signet Ring Cell Variant 4 181861 -NCIT:C46096 Thyroid Gland Follicular Carcinoma, Clear Cell Variant 4 181862 -NCIT:C4946 Thyroid Gland Oncocytic Carcinoma 4 181863 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 5 181864 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 5 181865 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 5 181866 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 5 181867 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 6 181868 -NCIT:C65200 Thyroid Gland Follicular Carcinoma, Minimally Invasive 4 181869 -NCIT:C36036 Non-Encapsulated Neoplasm 2 181870 -NCIT:C36037 Localized Neoplasm 2 181871 -NCIT:C4952 Localized Brain Neoplasm 3 181872 -NCIT:C150573 Localized Cerebral Neoplasm 4 181873 -NCIT:C4954 Localized Malignant Brain Neoplasm 4 181874 -NCIT:C8576 Localized Malignant Neoplasm 3 181875 -NCIT:C165631 Localized Malignant Pancreatic Neoplasm 4 181876 -NCIT:C169041 Localized Pancreatic Adenocarcinoma 5 181877 -NCIT:C189009 Localized Pancreatic Ductal Adenocarcinoma 6 181878 -NCIT:C176558 Localized Sarcoma 4 181879 -NCIT:C115997 Localized Adult Undifferentiated High Grade Pleomorphic Sarcoma of Bone 5 181880 -NCIT:C115998 Localized Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 5 181881 -NCIT:C189240 Localized Soft Tissue Sarcoma 5 181882 -NCIT:C115292 Localized Childhood Soft Tissue Sarcoma 6 181883 -NCIT:C8065 Localized Childhood Rhabdomyosarcoma 7 181884 -NCIT:C8797 Localized Alveolar Soft Part Sarcoma 6 181885 -NCIT:C8800 Localized Epithelioid Sarcoma 6 181886 -NCIT:C8802 Localized Extraskeletal Ewing Sarcoma 6 181887 -NCIT:C8809 Localized Extraskeletal Osteosarcoma 6 181888 -NCIT:C8826 Localized Synovial Sarcoma 6 181889 -NCIT:C5060 Localized Fibrosarcoma 5 181890 -NCIT:C7780 Localized Osteosarcoma 5 181891 -NCIT:C8809 Localized Extraskeletal Osteosarcoma 6 181892 -NCIT:C7806 Localized Ewing Sarcoma 5 181893 -NCIT:C6623 Localized Bone Ewing Sarcoma 6 181894 -NCIT:C8802 Localized Extraskeletal Ewing Sarcoma 6 181895 -NCIT:C8814 Localized Leiomyosarcoma 5 181896 -NCIT:C8817 Localized Liposarcoma 5 181897 -NCIT:C9275 Localized Angiosarcoma 5 181898 -NCIT:C190685 Localized Malignant Solid Neoplasm 4 181899 -NCIT:C27294 Localized Primitive Neuroectodermal Tumor 4 181900 -NCIT:C27903 Localized Peripheral Primitive Neuroectodermal Tumor 5 181901 -NCIT:C27353 Localized Peripheral Primitive Neuroectodermal Tumor of Bone 6 181902 -NCIT:C27902 Localized Askin Tumor 6 181903 -NCIT:C7835 Localized Resectable Neuroblastoma 5 181904 -NCIT:C8277 Localized Unresectable Neuroblastoma 5 181905 -NCIT:C27901 Localized Ewing Sarcoma/Peripheral Primitive Neuroectodermal Tumor 4 181906 -NCIT:C27903 Localized Peripheral Primitive Neuroectodermal Tumor 5 181907 -NCIT:C27353 Localized Peripheral Primitive Neuroectodermal Tumor of Bone 6 181908 -NCIT:C27902 Localized Askin Tumor 6 181909 -NCIT:C7806 Localized Ewing Sarcoma 5 181910 -NCIT:C6623 Localized Bone Ewing Sarcoma 6 181911 -NCIT:C8802 Localized Extraskeletal Ewing Sarcoma 6 181912 -NCIT:C35676 Localized Malignant Gallbladder Neoplasm 4 181913 -NCIT:C7649 Localized Gallbladder Carcinoma 5 181914 -NCIT:C4938 Localized Lymphoma 4 181915 -NCIT:C166179 Localized Anaplastic Large Cell Lymphoma 5 181916 -NCIT:C4954 Localized Malignant Brain Neoplasm 4 181917 -NCIT:C7625 Localized Carcinoma 4 181918 -NCIT:C156166 Localized Gastroesophageal Junction Adenocarcinoma 5 181919 -NCIT:C156167 Localized Gastric Carcinoma 5 181920 -NCIT:C162569 Localized Head and Neck Carcinoma 5 181921 -NCIT:C7826 Localized Parathyroid Gland Carcinoma 6 181922 -NCIT:C162570 Localized Lung Carcinoma 5 181923 -NCIT:C162782 Localized Breast Carcinoma 5 181924 -NCIT:C166171 Localized Esophageal Carcinoma 5 181925 -NCIT:C169041 Localized Pancreatic Adenocarcinoma 5 181926 -NCIT:C189009 Localized Pancreatic Ductal Adenocarcinoma 6 181927 -NCIT:C176517 Localized Prostate Carcinoma 5 181928 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 5 181929 -NCIT:C7649 Localized Gallbladder Carcinoma 5 181930 -NCIT:C7877 Localized Resectable Adult Liver Carcinoma 5 181931 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 6 181932 -NCIT:C7878 Localized Unresectable Adult Liver Carcinoma 5 181933 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 6 181934 -NCIT:C7891 Localized Extrahepatic Bile Duct Carcinoma 5 181935 -NCIT:C8167 Localized Renal Pelvis and Ureter Urothelial Carcinoma 5 181936 -NCIT:C9239 Localized Malignant Mesothelioma 4 181937 -NCIT:C45666 Localized Pleural Malignant Mesothelioma 5 181938 -NCIT:C9176 Non-Metastatic Gestational Trophoblastic Tumor 3 181939 -NCIT:C36255 Secondary Neoplasm 2 181940 -NCIT:C4968 Secondary Malignant Neoplasm 3 181941 -NCIT:C178480 Secondary Peripheral Atypical Cartilaginous Tumor/Chondrosarcoma, Grade 1 4 181942 -NCIT:C178481 Secondary Peripheral Chondrosarcoma, Grade 1 5 181943 -NCIT:C178482 Secondary Peripheral Atypical Cartilaginous Tumor 5 181944 -NCIT:C191432 Secondary Plasma Cell Leukemia 4 181945 -NCIT:C25765 Secondary Acute Myeloid Leukemia 4 181946 -NCIT:C172129 Acute Myeloid Leukemia Arising from Previous Myeloproliferative Neoplasm 5 181947 -NCIT:C172130 Acute Myeloid Leukemia Arising from Previous Myelodysplastic/Myeloproliferative Neoplasm 5 181948 -NCIT:C27931 Benzene-Related Acute Myeloid Leukemia 5 181949 -NCIT:C4037 Acute Myeloid Leukemia Arising from Previous Myelodysplastic Syndrome 5 181950 -NCIT:C8252 Therapy-Related Acute Myeloid Leukemia 5 181951 -NCIT:C186730 Therapy-Related Cytogenetically Normal Acute Myeloid Leukemia 6 181952 -NCIT:C27754 Alkylating Agent-Related Acute Myeloid Leukemia 6 181953 -NCIT:C27755 Topoisomerase II Inhibitor-Related Acute Myeloid Leukemia 6 181954 -NCIT:C27280 Secondary Myelodysplastic Syndrome 4 181955 -NCIT:C27722 Therapy-Related Myelodysplastic Syndrome 5 181956 -NCIT:C7642 Epipodophyllotoxin-Related Myelodysplastic Syndrome 6 181957 -NCIT:C7643 Alkylating Agent-Related Myelodysplastic Syndrome 6 181958 -NCIT:C27482 Secondary Chondrosarcoma 4 181959 -NCIT:C121881 Secondary Central Chondrosarcoma 5 181960 -NCIT:C178477 Secondary Central Atypical Cartilaginous Tumor/Chondrosarcoma, Grade 1 6 181961 -NCIT:C121882 Secondary Peripheral Chondrosarcoma 5 181962 -NCIT:C178481 Secondary Peripheral Chondrosarcoma, Grade 1 6 181963 -NCIT:C178492 Secondary Peripheral Chondrosarcoma, Grade 2 6 181964 -NCIT:C178494 Secondary Peripheral Chondrosarcoma, Grade 3 6 181965 -NCIT:C27912 Therapy-Related Myeloid Neoplasm 4 181966 -NCIT:C27722 Therapy-Related Myelodysplastic Syndrome 5 181967 -NCIT:C7642 Epipodophyllotoxin-Related Myelodysplastic Syndrome 6 181968 -NCIT:C7643 Alkylating Agent-Related Myelodysplastic Syndrome 6 181969 -NCIT:C27913 Alkylating Agent-Related Acute Myeloid Leukemia and Myelodysplastic Syndrome 5 181970 -NCIT:C27754 Alkylating Agent-Related Acute Myeloid Leukemia 6 181971 -NCIT:C7643 Alkylating Agent-Related Myelodysplastic Syndrome 6 181972 -NCIT:C82397 Therapy-Related Myelodysplastic/Myeloproliferative Neoplasm 5 181973 -NCIT:C8252 Therapy-Related Acute Myeloid Leukemia 5 181974 -NCIT:C186730 Therapy-Related Cytogenetically Normal Acute Myeloid Leukemia 6 181975 -NCIT:C27754 Alkylating Agent-Related Acute Myeloid Leukemia 6 181976 -NCIT:C27755 Topoisomerase II Inhibitor-Related Acute Myeloid Leukemia 6 181977 -NCIT:C36263 Metastatic Malignant Neoplasm 4 181978 -NCIT:C114831 Metastatic Malignant Neoplasm in the Soft Tissues 5 181979 -NCIT:C132881 Prostate Carcinoma Metastatic in the Soft Tissue 6 181980 -NCIT:C127155 Metastatic Malignant Solid Neoplasm 5 181981 -NCIT:C129707 Advanced Malignant Solid Neoplasm 6 181982 -NCIT:C157335 Advanced Extracranial Malignant Solid Neoplasm 7 181983 -NCIT:C187210 Advanced Childhood Malignant Solid Neoplasm 7 181984 -NCIT:C133093 Locally Advanced Malignant Solid Neoplasm 6 181985 -NCIT:C157334 Metastatic Extracranial Malignant Solid Neoplasm 6 181986 -NCIT:C157335 Advanced Extracranial Malignant Solid Neoplasm 7 181987 -NCIT:C161019 Oligometastatic Malignant Solid Neoplasm 6 181988 -NCIT:C132854 Metastatic Malignant Germ Cell Tumor 5 181989 -NCIT:C170957 Metastatic Platinum-Resistant Malignant Germ Cell Tumor 6 181990 -NCIT:C170958 Advanced Platinum-Resistant Malignant Germ Cell Tumor 7 181991 -NCIT:C170967 Advanced Malignant Germ Cell Tumor 6 181992 -NCIT:C170958 Advanced Platinum-Resistant Malignant Germ Cell Tumor 7 181993 -NCIT:C187316 Advanced Malignant Testicular Germ Cell Tumor 7 181994 -NCIT:C177770 Metastatic Malignant Nongerminomatous Germ Cell Tumor 6 181995 -NCIT:C25771 Metastatic Malignant Testicular Germ Cell Tumor 6 181996 -NCIT:C187316 Advanced Malignant Testicular Germ Cell Tumor 7 181997 -NCIT:C146858 Metastatic Epithelioid Hemangioendothelioma 5 181998 -NCIT:C146857 Locally Advanced Epithelioid Hemangioendothelioma 6 181999 -NCIT:C168721 Advanced Epithelioid Hemangioendothelioma 6 182000 -NCIT:C150597 Metastatic Malignant Neoplasm in the Viscera 5 182001 -NCIT:C152076 Metastatic Sarcoma 5 182002 -NCIT:C152074 Metastatic Unresectable Sarcoma 6 182003 -NCIT:C153477 Locally Advanced Unresectable Sarcoma 7 182004 -NCIT:C153475 Locally Advanced Unresectable Bone Sarcoma 8 182005 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 9 182006 -NCIT:C153476 Locally Advanced Unresectable Soft Tissue Sarcoma 8 182007 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 9 182008 -NCIT:C153069 Metastatic Soft Tissue Sarcoma 6 182009 -NCIT:C150738 Metastatic Gastrointestinal Stromal Tumor 7 182010 -NCIT:C150739 Locally Advanced Gastrointestinal Stromal Tumor 8 182011 -NCIT:C173502 Advanced Gastrointestinal Stromal Tumor 8 182012 -NCIT:C153066 Locally Advanced Soft Tissue Sarcoma 7 182013 -NCIT:C150739 Locally Advanced Gastrointestinal Stromal Tumor 8 182014 -NCIT:C153476 Locally Advanced Unresectable Soft Tissue Sarcoma 8 182015 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 9 182016 -NCIT:C160919 Locally Advanced Undifferentiated Pleomorphic Sarcoma 8 182017 -NCIT:C164076 Locally Advanced Alveolar Soft Part Sarcoma 8 182018 -NCIT:C166415 Locally Advanced Rhabdomyosarcoma 8 182019 -NCIT:C167378 Locally Advanced Epithelioid Sarcoma 8 182020 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 8 182021 -NCIT:C171399 Locally Advanced Synovial Sarcoma 8 182022 -NCIT:C180875 Locally Advanced Desmoplastic Small Round Cell Tumor 8 182023 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 8 182024 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 9 182025 -NCIT:C156071 Metastatic Adult Soft Tissue Sarcoma 7 182026 -NCIT:C156475 Metastatic Kaposi Sarcoma 7 182027 -NCIT:C156476 Advanced Kaposi Sarcoma 8 182028 -NCIT:C161585 Metastatic Clear Cell Sarcoma of Soft Tissue 7 182029 -NCIT:C161586 Advanced Clear Cell Sarcoma of Soft Tissue 8 182030 -NCIT:C162194 Advanced Soft Tissue Sarcoma 7 182031 -NCIT:C153184 Advanced Synovial Sarcoma 8 182032 -NCIT:C156476 Advanced Kaposi Sarcoma 8 182033 -NCIT:C161586 Advanced Clear Cell Sarcoma of Soft Tissue 8 182034 -NCIT:C164246 Advanced Malignant PEComa 8 182035 -NCIT:C165781 Advanced Undifferentiated Pleomorphic Sarcoma 8 182036 -NCIT:C167380 Advanced Epithelioid Sarcoma 8 182037 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 8 182038 -NCIT:C171304 Advanced Myxofibrosarcoma 8 182039 -NCIT:C173502 Advanced Gastrointestinal Stromal Tumor 8 182040 -NCIT:C188198 Advanced Alveolar Soft Part Sarcoma 8 182041 -NCIT:C164245 Metastatic Malignant PEComa 7 182042 -NCIT:C164246 Advanced Malignant PEComa 8 182043 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 8 182044 -NCIT:C166414 Metastatic Rhabdomyosarcoma 7 182045 -NCIT:C166415 Locally Advanced Rhabdomyosarcoma 8 182046 -NCIT:C183250 Metastatic Embryonal Rhabdomyosarcoma 8 182047 -NCIT:C168670 Metastatic Myxofibrosarcoma 7 182048 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 8 182049 -NCIT:C171304 Advanced Myxofibrosarcoma 8 182050 -NCIT:C168725 Metastatic Soft Tissue Leiomyosarcoma 7 182051 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 8 182052 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 8 182053 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 9 182054 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 8 182055 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 9 182056 -NCIT:C170827 Metastatic Desmoplastic Small Round Cell Tumor 7 182057 -NCIT:C180875 Locally Advanced Desmoplastic Small Round Cell Tumor 8 182058 -NCIT:C190009 Metastatic Uterine Corpus Sarcoma 7 182059 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 8 182060 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 9 182061 -NCIT:C4926 Metastatic Undifferentiated Pleomorphic Sarcoma 7 182062 -NCIT:C160919 Locally Advanced Undifferentiated Pleomorphic Sarcoma 8 182063 -NCIT:C165781 Advanced Undifferentiated Pleomorphic Sarcoma 8 182064 -NCIT:C8066 Metastatic Childhood Soft Tissue Sarcoma 7 182065 -NCIT:C8796 Metastatic Alveolar Soft Part Sarcoma 7 182066 -NCIT:C164076 Locally Advanced Alveolar Soft Part Sarcoma 8 182067 -NCIT:C188198 Advanced Alveolar Soft Part Sarcoma 8 182068 -NCIT:C8799 Metastatic Epithelioid Sarcoma 7 182069 -NCIT:C167378 Locally Advanced Epithelioid Sarcoma 8 182070 -NCIT:C167380 Advanced Epithelioid Sarcoma 8 182071 -NCIT:C8801 Metastatic Extraskeletal Ewing Sarcoma 7 182072 -NCIT:C8804 Metastatic Extraskeletal Myxoid Chondrosarcoma 7 182073 -NCIT:C8808 Metastatic Extraskeletal Osteosarcoma 7 182074 -NCIT:C8825 Metastatic Synovial Sarcoma 7 182075 -NCIT:C153184 Advanced Synovial Sarcoma 8 182076 -NCIT:C171399 Locally Advanced Synovial Sarcoma 8 182077 -NCIT:C153071 Locally Advanced Sarcoma 6 182078 -NCIT:C146856 Locally Advanced Angiosarcoma 7 182079 -NCIT:C153066 Locally Advanced Soft Tissue Sarcoma 7 182080 -NCIT:C150739 Locally Advanced Gastrointestinal Stromal Tumor 8 182081 -NCIT:C153476 Locally Advanced Unresectable Soft Tissue Sarcoma 8 182082 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 9 182083 -NCIT:C160919 Locally Advanced Undifferentiated Pleomorphic Sarcoma 8 182084 -NCIT:C164076 Locally Advanced Alveolar Soft Part Sarcoma 8 182085 -NCIT:C166415 Locally Advanced Rhabdomyosarcoma 8 182086 -NCIT:C167378 Locally Advanced Epithelioid Sarcoma 8 182087 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 8 182088 -NCIT:C171399 Locally Advanced Synovial Sarcoma 8 182089 -NCIT:C180875 Locally Advanced Desmoplastic Small Round Cell Tumor 8 182090 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 8 182091 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 9 182092 -NCIT:C153070 Locally Advanced Bone Sarcoma 7 182093 -NCIT:C153475 Locally Advanced Unresectable Bone Sarcoma 8 182094 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 9 182095 -NCIT:C153477 Locally Advanced Unresectable Sarcoma 7 182096 -NCIT:C153475 Locally Advanced Unresectable Bone Sarcoma 8 182097 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 9 182098 -NCIT:C153476 Locally Advanced Unresectable Soft Tissue Sarcoma 8 182099 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 9 182100 -NCIT:C160916 Locally Advanced Liposarcoma 7 182101 -NCIT:C164071 Locally Advanced Dedifferentiated Liposarcoma 8 182102 -NCIT:C160917 Locally Advanced Leiomyosarcoma 7 182103 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 8 182104 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 9 182105 -NCIT:C164074 Locally Advanced Malignant Peripheral Nerve Sheath Tumor 7 182106 -NCIT:C164080 Locally Advanced Ewing Sarcoma 7 182107 -NCIT:C168668 Locally Advanced High Grade Sarcoma 7 182108 -NCIT:C170953 Locally Advanced Chondrosarcoma 7 182109 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 8 182110 -NCIT:C171317 Locally Advanced Fibrosarcoma 7 182111 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 8 182112 -NCIT:C175665 Locally Advanced Osteosarcoma 7 182113 -NCIT:C153073 Metastatic Bone Sarcoma 6 182114 -NCIT:C153070 Locally Advanced Bone Sarcoma 7 182115 -NCIT:C153475 Locally Advanced Unresectable Bone Sarcoma 8 182116 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 9 182117 -NCIT:C162762 Advanced Bone Sarcoma 7 182118 -NCIT:C171072 Metastatic Primary Central Chondrosarcoma 7 182119 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 8 182120 -NCIT:C38157 Metachronous Osteosarcoma 7 182121 -NCIT:C6621 Metastatic Bone Ewing Sarcoma 7 182122 -NCIT:C153185 Advanced Sarcoma 6 182123 -NCIT:C155649 Advanced Sarcoma of the Extremity 7 182124 -NCIT:C162194 Advanced Soft Tissue Sarcoma 7 182125 -NCIT:C153184 Advanced Synovial Sarcoma 8 182126 -NCIT:C156476 Advanced Kaposi Sarcoma 8 182127 -NCIT:C161586 Advanced Clear Cell Sarcoma of Soft Tissue 8 182128 -NCIT:C164246 Advanced Malignant PEComa 8 182129 -NCIT:C165781 Advanced Undifferentiated Pleomorphic Sarcoma 8 182130 -NCIT:C167380 Advanced Epithelioid Sarcoma 8 182131 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 8 182132 -NCIT:C171304 Advanced Myxofibrosarcoma 8 182133 -NCIT:C173502 Advanced Gastrointestinal Stromal Tumor 8 182134 -NCIT:C188198 Advanced Alveolar Soft Part Sarcoma 8 182135 -NCIT:C162762 Advanced Bone Sarcoma 7 182136 -NCIT:C165780 Advanced Leiomyosarcoma 7 182137 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 8 182138 -NCIT:C168701 Advanced Liposarcoma 7 182139 -NCIT:C162763 Advanced Myxoid Liposarcoma 8 182140 -NCIT:C168715 Advanced Dedifferentiated Liposarcoma 8 182141 -NCIT:C182026 Advanced Pleomorphic Liposarcoma 8 182142 -NCIT:C168714 Advanced Malignant Peripheral Nerve Sheath Tumor 7 182143 -NCIT:C168716 Advanced Fibrosarcoma 7 182144 -NCIT:C171304 Advanced Myxofibrosarcoma 8 182145 -NCIT:C168720 Advanced Angiosarcoma 7 182146 -NCIT:C168667 Metastatic High Grade Sarcoma 6 182147 -NCIT:C168668 Locally Advanced High Grade Sarcoma 7 182148 -NCIT:C179657 Metastatic Sarcoma in the Peritoneum 6 182149 -NCIT:C179656 Peritoneal Sarcomatosis 7 182150 -NCIT:C7781 Metastatic Osteosarcoma 6 182151 -NCIT:C175665 Locally Advanced Osteosarcoma 7 182152 -NCIT:C38157 Metachronous Osteosarcoma 7 182153 -NCIT:C8808 Metastatic Extraskeletal Osteosarcoma 7 182154 -NCIT:C7807 Metastatic Ewing Sarcoma 6 182155 -NCIT:C164080 Locally Advanced Ewing Sarcoma 7 182156 -NCIT:C6621 Metastatic Bone Ewing Sarcoma 7 182157 -NCIT:C8801 Metastatic Extraskeletal Ewing Sarcoma 7 182158 -NCIT:C8708 Metastatic Angiosarcoma 6 182159 -NCIT:C146856 Locally Advanced Angiosarcoma 7 182160 -NCIT:C168720 Advanced Angiosarcoma 7 182161 -NCIT:C8779 Metastatic Chondrosarcoma 6 182162 -NCIT:C170953 Locally Advanced Chondrosarcoma 7 182163 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 8 182164 -NCIT:C171072 Metastatic Primary Central Chondrosarcoma 7 182165 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 8 182166 -NCIT:C8812 Metastatic Fibrosarcoma 6 182167 -NCIT:C168670 Metastatic Myxofibrosarcoma 7 182168 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 8 182169 -NCIT:C171304 Advanced Myxofibrosarcoma 8 182170 -NCIT:C168716 Advanced Fibrosarcoma 7 182171 -NCIT:C171304 Advanced Myxofibrosarcoma 8 182172 -NCIT:C171317 Locally Advanced Fibrosarcoma 7 182173 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 8 182174 -NCIT:C8813 Metastatic Leiomyosarcoma 6 182175 -NCIT:C160917 Locally Advanced Leiomyosarcoma 7 182176 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 8 182177 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 9 182178 -NCIT:C165780 Advanced Leiomyosarcoma 7 182179 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 8 182180 -NCIT:C168725 Metastatic Soft Tissue Leiomyosarcoma 7 182181 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 8 182182 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 8 182183 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 9 182184 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 8 182185 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 9 182186 -NCIT:C8816 Metastatic Liposarcoma 6 182187 -NCIT:C148298 Metastatic Myxoid Liposarcoma 7 182188 -NCIT:C162763 Advanced Myxoid Liposarcoma 8 182189 -NCIT:C160916 Locally Advanced Liposarcoma 7 182190 -NCIT:C164071 Locally Advanced Dedifferentiated Liposarcoma 8 182191 -NCIT:C164070 Metastatic Dedifferentiated Liposarcoma 7 182192 -NCIT:C164071 Locally Advanced Dedifferentiated Liposarcoma 8 182193 -NCIT:C168715 Advanced Dedifferentiated Liposarcoma 8 182194 -NCIT:C168701 Advanced Liposarcoma 7 182195 -NCIT:C162763 Advanced Myxoid Liposarcoma 8 182196 -NCIT:C168715 Advanced Dedifferentiated Liposarcoma 8 182197 -NCIT:C182026 Advanced Pleomorphic Liposarcoma 8 182198 -NCIT:C182025 Metastatic Pleomorphic Liposarcoma 7 182199 -NCIT:C182026 Advanced Pleomorphic Liposarcoma 8 182200 -NCIT:C8822 Metastatic Malignant Peripheral Nerve Sheath Tumor 6 182201 -NCIT:C164074 Locally Advanced Malignant Peripheral Nerve Sheath Tumor 7 182202 -NCIT:C168714 Advanced Malignant Peripheral Nerve Sheath Tumor 7 182203 -NCIT:C153279 Metastatic Unresectable Malignant Neoplasm 5 182204 -NCIT:C152074 Metastatic Unresectable Sarcoma 6 182205 -NCIT:C153477 Locally Advanced Unresectable Sarcoma 7 182206 -NCIT:C153475 Locally Advanced Unresectable Bone Sarcoma 8 182207 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 9 182208 -NCIT:C153476 Locally Advanced Unresectable Soft Tissue Sarcoma 8 182209 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 9 182210 -NCIT:C153278 Locally Advanced Unresectable Malignant Neoplasm 6 182211 -NCIT:C153477 Locally Advanced Unresectable Sarcoma 7 182212 -NCIT:C153475 Locally Advanced Unresectable Bone Sarcoma 8 182213 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 9 182214 -NCIT:C153476 Locally Advanced Unresectable Soft Tissue Sarcoma 8 182215 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 9 182216 -NCIT:C155698 Locally Advanced Unresectable Carcinoma 7 182217 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 8 182218 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 8 182219 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 8 182220 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 8 182221 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 182222 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 8 182223 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 182224 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 8 182225 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 182226 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 182227 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 8 182228 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 182229 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 182230 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 182231 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 182232 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 182233 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 182234 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 182235 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 8 182236 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 8 182237 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 8 182238 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 8 182239 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 8 182240 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 8 182241 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 8 182242 -NCIT:C158090 Locally Advanced Unresectable Digestive System Neuroendocrine Neoplasm 7 182243 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 7 182244 -NCIT:C153315 Metastatic Unresectable Carcinoma 6 182245 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 7 182246 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 8 182247 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 8 182248 -NCIT:C155698 Locally Advanced Unresectable Carcinoma 7 182249 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 8 182250 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 8 182251 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 8 182252 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 8 182253 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 182254 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 8 182255 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 182256 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 8 182257 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 182258 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 182259 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 8 182260 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 182261 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 182262 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 182263 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 182264 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 182265 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 182266 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 182267 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 8 182268 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 8 182269 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 8 182270 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 8 182271 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 8 182272 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 8 182273 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 8 182274 -NCIT:C156788 Metastatic Unresectable Basal Cell Carcinoma 7 182275 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 8 182276 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 7 182277 -NCIT:C163959 Metastatic Unresectable Pituitary Neuroendocrine Tumor 6 182278 -NCIT:C153323 Metastatic Chordoma 5 182279 -NCIT:C153324 Locally Advanced Chordoma 6 182280 -NCIT:C173333 Advanced Chordoma 6 182281 -NCIT:C154608 Recurrent Metastatic Malignant Neoplasm 5 182282 -NCIT:C151905 Recurrent Metastatic Digestive System Carcinoma 6 182283 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 7 182284 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 6 182285 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 6 182286 -NCIT:C173916 Recurrent Metastatic Malignant Neoplasm in the Leptomeninges 6 182287 -NCIT:C179179 Recurrent Pseudomyxoma Peritonei 6 182288 -NCIT:C182020 Recurrent Metastatic Melanoma 6 182289 -NCIT:C9181 Recurrent Carcinoma of Unknown Primary 6 182290 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 7 182291 -NCIT:C155852 Metastatic Malignant Pancreatic Neoplasm 5 182292 -NCIT:C156069 Metastatic Pancreatic Carcinoma 6 182293 -NCIT:C165452 Advanced Pancreatic Carcinoma 7 182294 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 8 182295 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 9 182296 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 7 182297 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 8 182298 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 9 182299 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 9 182300 -NCIT:C190770 Metastatic Pancreatic Adenosquamous Carcinoma 7 182301 -NCIT:C190771 Metastatic Pancreatic Squamous Cell Carcinoma 7 182302 -NCIT:C8933 Metastatic Pancreatic Adenocarcinoma 7 182303 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 8 182304 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 9 182305 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 9 182306 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 8 182307 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 9 182308 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 9 182309 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 9 182310 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 8 182311 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 9 182312 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 8 182313 -NCIT:C165447 Metastatic Pancreatic Neuroendocrine Neoplasm 6 182314 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 7 182315 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 182316 -NCIT:C156488 Metastatic Pancreatic Neuroendocrine Tumor 7 182317 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 8 182318 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 182319 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 182320 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 8 182321 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 8 182322 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 182323 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 8 182324 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 182325 -NCIT:C165448 Advanced Pancreatic Neuroendocrine Neoplasm 7 182326 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 8 182327 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 182328 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 182329 -NCIT:C155919 Metastatic Malignant Neoplasm in the Thoracic Cavity 5 182330 -NCIT:C35748 Metastatic Malignant Neoplasm in the Axilla 6 182331 -NCIT:C3577 Metastatic Malignant Neoplasm in the Lung 6 182332 -NCIT:C185321 Extramedullary Disease in Plasma Cell Myeloma Involving the Lung 7 182333 -NCIT:C27408 Metastatic Carcinoma in the Lung 7 182334 -NCIT:C153224 Colorectal Carcinoma Metastatic in the Lung 8 182335 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 9 182336 -NCIT:C36300 Breast Carcinoma Metastatic in the Lung 8 182337 -NCIT:C36307 Prostate Carcinoma Metastatic in the Lung 8 182338 -NCIT:C3578 Metastatic Malignant Neoplasm in the Mediastinum 6 182339 -NCIT:C3579 Metastatic Malignant Neoplasm in the Pleura 6 182340 -NCIT:C27384 Pleural Carcinomatosis 7 182341 -NCIT:C45762 Metastatic Malignant Neoplasm in the Pericardium 6 182342 -NCIT:C27385 Pericardial Carcinomatosis 7 182343 -NCIT:C4889 Metastatic Malignant Neoplasm in the Heart 6 182344 -NCIT:C5369 Secondary Heart Lymphoma 7 182345 -NCIT:C4903 Metastatic Malignant Neoplasm in the Thymus 6 182346 -NCIT:C8530 Metastatic Malignant Neoplasm in the Chest Wall 6 182347 -NCIT:C8527 Metastatic Malignant Neoplasm in the Sternum 7 182348 -NCIT:C156101 Metastatic Neuroblastoma 5 182349 -NCIT:C156485 Metastatic Neuroendocrine Neoplasm 5 182350 -NCIT:C147065 Metastatic Neuroendocrine Tumor 6 182351 -NCIT:C140329 Metastatic Non-Functioning Neuroendocrine Tumor 7 182352 -NCIT:C140328 Advanced Non-Functioning Neuroendocrine Tumor 8 182353 -NCIT:C154621 Advanced Neuroendocrine Tumor 7 182354 -NCIT:C140328 Advanced Non-Functioning Neuroendocrine Tumor 8 182355 -NCIT:C156487 Advanced Carcinoid Tumor 8 182356 -NCIT:C177245 Advanced Lung Carcinoid Tumor 9 182357 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 9 182358 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 182359 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 8 182360 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 182361 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 182362 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 8 182363 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 182364 -NCIT:C156488 Metastatic Pancreatic Neuroendocrine Tumor 7 182365 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 8 182366 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 182367 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 182368 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 8 182369 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 8 182370 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 182371 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 8 182372 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 182373 -NCIT:C167329 Metastatic Midgut Neuroendocrine Tumor 7 182374 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 8 182375 -NCIT:C167333 Locally Advanced Neuroendocrine Tumor 7 182376 -NCIT:C163956 Locally Advanced Pituitary Neuroendocrine Tumor 8 182377 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 8 182378 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 8 182379 -NCIT:C187328 Locally Advanced Carcinoid Tumor 8 182380 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 9 182381 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 8 182382 -NCIT:C179415 Metastatic Digestive System Neuroendocrine Tumor G2 7 182383 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 8 182384 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 8 182385 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 182386 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 8 182387 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 182388 -NCIT:C4536 Metastatic Pituitary Neuroendocrine Tumor 7 182389 -NCIT:C163956 Locally Advanced Pituitary Neuroendocrine Tumor 8 182390 -NCIT:C163959 Metastatic Unresectable Pituitary Neuroendocrine Tumor 8 182391 -NCIT:C5962 Metastatic Lactotroph Pituitary Neuroendocrine Tumor 8 182392 -NCIT:C5963 Metastatic Somatotroph Pituitary Neuroendocrine Tumor 8 182393 -NCIT:C5964 Metastatic Corticotroph Pituitary Neuroendocrine Tumor 8 182394 -NCIT:C5965 Metastatic Thyrotroph Pituitary Neuroendocrine Tumor 8 182395 -NCIT:C6431 Metastatic Carcinoid Tumor 7 182396 -NCIT:C115245 Metastatic Digestive System Neuroendocrine Tumor G1 8 182397 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 9 182398 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 182399 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 9 182400 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 9 182401 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 182402 -NCIT:C156487 Advanced Carcinoid Tumor 8 182403 -NCIT:C177245 Advanced Lung Carcinoid Tumor 9 182404 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 9 182405 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 182406 -NCIT:C177243 Metastatic Lung Carcinoid Tumor 8 182407 -NCIT:C177245 Advanced Lung Carcinoid Tumor 9 182408 -NCIT:C187328 Locally Advanced Carcinoid Tumor 8 182409 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 9 182410 -NCIT:C5171 Metastatic Breast Neuroendocrine Tumor G1 8 182411 -NCIT:C155869 Metastatic Neuroendocrine Carcinoma 6 182412 -NCIT:C155870 Advanced Neuroendocrine Carcinoma 7 182413 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 182414 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 182415 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 182416 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 182417 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 182418 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 182419 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 182420 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 182421 -NCIT:C165300 Advanced Merkel Cell Carcinoma 8 182422 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 8 182423 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 182424 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 182425 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 182426 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 7 182427 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 8 182428 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 182429 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 182430 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 182431 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 8 182432 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 182433 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 182434 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 182435 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 182436 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 182437 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 182438 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 182439 -NCIT:C158908 Metastatic Large Cell Neuroendocrine Carcinoma 7 182440 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 8 182441 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 8 182442 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 182443 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 8 182444 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 182445 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 182446 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 8 182447 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 182448 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 182449 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 182450 -NCIT:C158909 Locally Advanced Neuroendocrine Carcinoma 7 182451 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 182452 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 182453 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 8 182454 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 182455 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 182456 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 8 182457 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 182458 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 8 182459 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 182460 -NCIT:C158911 Metastatic Small Cell Neuroendocrine Carcinoma 7 182461 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 8 182462 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 9 182463 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 182464 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 8 182465 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 182466 -NCIT:C191852 Metastatic Extrapulmonary Small Cell Neuroendocrine Carcinoma 8 182467 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 182468 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 182469 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 9 182470 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 9 182471 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 7 182472 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 182473 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 182474 -NCIT:C162572 Metastatic Merkel Cell Carcinoma 7 182475 -NCIT:C165300 Advanced Merkel Cell Carcinoma 8 182476 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 8 182477 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 8 182478 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 7 182479 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 182480 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 182481 -NCIT:C163975 Neuroendocrine Carcinoma of Unknown Primary 7 182482 -NCIT:C156486 Advanced Neuroendocrine Neoplasm 6 182483 -NCIT:C154621 Advanced Neuroendocrine Tumor 7 182484 -NCIT:C140328 Advanced Non-Functioning Neuroendocrine Tumor 8 182485 -NCIT:C156487 Advanced Carcinoid Tumor 8 182486 -NCIT:C177245 Advanced Lung Carcinoid Tumor 9 182487 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 9 182488 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 182489 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 8 182490 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 182491 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 182492 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 8 182493 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 182494 -NCIT:C155870 Advanced Neuroendocrine Carcinoma 7 182495 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 182496 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 182497 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 182498 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 182499 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 182500 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 182501 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 182502 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 182503 -NCIT:C165300 Advanced Merkel Cell Carcinoma 8 182504 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 8 182505 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 182506 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 182507 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 182508 -NCIT:C158089 Advanced Digestive System Neuroendocrine Neoplasm 7 182509 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 182510 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 182511 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 182512 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 182513 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 182514 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 182515 -NCIT:C165448 Advanced Pancreatic Neuroendocrine Neoplasm 8 182516 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 9 182517 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 182518 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 10 182519 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 8 182520 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 182521 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 8 182522 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 182523 -NCIT:C160852 Advanced Paraganglioma 7 182524 -NCIT:C160853 Advanced Adrenal Gland Pheochromocytoma 8 182525 -NCIT:C165446 Advanced Lung Neuroendocrine Neoplasm 7 182526 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 182527 -NCIT:C177245 Advanced Lung Carcinoid Tumor 8 182528 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 182529 -NCIT:C180871 Advanced Thymic Neuroendocrine Neoplasm 7 182530 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 7 182531 -NCIT:C156492 Metastatic Digestive System Neuroendocrine Neoplasm 6 182532 -NCIT:C115245 Metastatic Digestive System Neuroendocrine Tumor G1 7 182533 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 8 182534 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 182535 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 8 182536 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 8 182537 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 182538 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 7 182539 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 8 182540 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 182541 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 182542 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 182543 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 8 182544 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 182545 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 182546 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 182547 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 182548 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 182549 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 182550 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 182551 -NCIT:C158089 Advanced Digestive System Neuroendocrine Neoplasm 7 182552 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 182553 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 182554 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 182555 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 182556 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 182557 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 182558 -NCIT:C165448 Advanced Pancreatic Neuroendocrine Neoplasm 8 182559 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 9 182560 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 182561 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 10 182562 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 8 182563 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 182564 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 8 182565 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 182566 -NCIT:C165447 Metastatic Pancreatic Neuroendocrine Neoplasm 7 182567 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 8 182568 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 182569 -NCIT:C156488 Metastatic Pancreatic Neuroendocrine Tumor 8 182570 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 9 182571 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 182572 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 10 182573 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 9 182574 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 9 182575 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 182576 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 9 182577 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 10 182578 -NCIT:C165448 Advanced Pancreatic Neuroendocrine Neoplasm 8 182579 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 9 182580 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 182581 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 10 182582 -NCIT:C167329 Metastatic Midgut Neuroendocrine Tumor 7 182583 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 8 182584 -NCIT:C178271 Locally Advanced Digestive System Neuroendocrine Neoplasm 7 182585 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 182586 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 182587 -NCIT:C158090 Locally Advanced Unresectable Digestive System Neuroendocrine Neoplasm 8 182588 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 8 182589 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 8 182590 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 8 182591 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 8 182592 -NCIT:C179415 Metastatic Digestive System Neuroendocrine Tumor G2 7 182593 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 8 182594 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 8 182595 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 182596 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 8 182597 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 182598 -NCIT:C156493 Metastatic Breast Neuroendocrine Neoplasm 6 182599 -NCIT:C5171 Metastatic Breast Neuroendocrine Tumor G1 7 182600 -NCIT:C157602 Metastatic Lung Neuroendocrine Neoplasm 6 182601 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 7 182602 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 182603 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 182604 -NCIT:C165446 Advanced Lung Neuroendocrine Neoplasm 7 182605 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 182606 -NCIT:C177245 Advanced Lung Carcinoid Tumor 8 182607 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 182608 -NCIT:C176715 Locally Advanced Lung Neuroendocrine Neoplasm 7 182609 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 182610 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 182611 -NCIT:C177243 Metastatic Lung Carcinoid Tumor 7 182612 -NCIT:C177245 Advanced Lung Carcinoid Tumor 8 182613 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 7 182614 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 182615 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 182616 -NCIT:C162461 Metastatic Thymic Neuroendocrine Neoplasm 6 182617 -NCIT:C180871 Advanced Thymic Neuroendocrine Neoplasm 7 182618 -NCIT:C167332 Locally Advanced Neuroendocrine Neoplasm 6 182619 -NCIT:C133713 Locally Advanced Paraganglioma 7 182620 -NCIT:C157129 Locally Advanced Adrenal Gland Pheochromocytoma 8 182621 -NCIT:C158909 Locally Advanced Neuroendocrine Carcinoma 7 182622 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 182623 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 182624 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 8 182625 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 182626 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 182627 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 8 182628 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 182629 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 8 182630 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 182631 -NCIT:C167333 Locally Advanced Neuroendocrine Tumor 7 182632 -NCIT:C163956 Locally Advanced Pituitary Neuroendocrine Tumor 8 182633 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 8 182634 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 8 182635 -NCIT:C187328 Locally Advanced Carcinoid Tumor 8 182636 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 9 182637 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 8 182638 -NCIT:C176715 Locally Advanced Lung Neuroendocrine Neoplasm 7 182639 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 182640 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 182641 -NCIT:C178271 Locally Advanced Digestive System Neuroendocrine Neoplasm 7 182642 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 182643 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 182644 -NCIT:C158090 Locally Advanced Unresectable Digestive System Neuroendocrine Neoplasm 8 182645 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 8 182646 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 8 182647 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 8 182648 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 8 182649 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 6 182650 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 7 182651 -NCIT:C8559 Metastatic Paraganglioma 6 182652 -NCIT:C133713 Locally Advanced Paraganglioma 7 182653 -NCIT:C157129 Locally Advanced Adrenal Gland Pheochromocytoma 8 182654 -NCIT:C160852 Advanced Paraganglioma 7 182655 -NCIT:C160853 Advanced Adrenal Gland Pheochromocytoma 8 182656 -NCIT:C4219 Metastatic Extra-Adrenal Paraganglioma 7 182657 -NCIT:C3574 Metastatic Carotid Body Paraganglioma 8 182658 -NCIT:C4623 Metastatic Jugulotympanic Paraganglioma 8 182659 -NCIT:C5392 Metastatic Cardiac Paraganglioma 8 182660 -NCIT:C6413 Metastatic Intrathoracic Paravertebral Paraganglioma 8 182661 -NCIT:C6416 Metastatic Bladder Paraganglioma 8 182662 -NCIT:C4220 Metastatic Adrenal Gland Pheochromocytoma 7 182663 -NCIT:C157129 Locally Advanced Adrenal Gland Pheochromocytoma 8 182664 -NCIT:C160853 Advanced Adrenal Gland Pheochromocytoma 8 182665 -NCIT:C92184 Metastatic Adrenal Gland Composite Pheochromocytoma 8 182666 -NCIT:C156793 Metastatic Human Papillomavirus-Related Malignant Neoplasm 5 182667 -NCIT:C187051 Human Papillomavirus-Related Head and Neck Squamous Cell Carcinoma of Unknown Primary 6 182668 -NCIT:C157774 Metastatic Malignant Genitourinary System Neoplasm 5 182669 -NCIT:C146893 Metastatic Genitourinary System Carcinoma 6 182670 -NCIT:C126109 Metastatic Urothelial Carcinoma 7 182671 -NCIT:C148493 Advanced Urothelial Carcinoma 8 182672 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 182673 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 182674 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 182675 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 182676 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 182677 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 182678 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 182679 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 182680 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 182681 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 182682 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 182683 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 182684 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 182685 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 182686 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 182687 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 182688 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 182689 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 182690 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 182691 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 8 182692 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 182693 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 182694 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 182695 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 182696 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 182697 -NCIT:C191692 Metastatic Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 182698 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 182699 -NCIT:C191693 Metastatic Giant Cell Urothelial Carcinoma 8 182700 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 182701 -NCIT:C191694 Metastatic Lipid-Rich Urothelial Carcinoma 8 182702 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 182703 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 8 182704 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 182705 -NCIT:C191696 Metastatic Nested Urothelial Carcinoma 8 182706 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 182707 -NCIT:C191697 Metastatic Plasmacytoid Urothelial Carcinoma 8 182708 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 182709 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 8 182710 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 182711 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 8 182712 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 182713 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 182714 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 182715 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 9 182716 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 182717 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 182718 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 182719 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 182720 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 182721 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 182722 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 182723 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 182724 -NCIT:C153387 Metastatic Cervical Carcinoma 7 182725 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 8 182726 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 182727 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 182728 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 8 182729 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 182730 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 182731 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 182732 -NCIT:C153390 Metastatic Cervical Adenosquamous Carcinoma 8 182733 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 182734 -NCIT:C156294 Advanced Cervical Carcinoma 8 182735 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 182736 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 182737 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 182738 -NCIT:C156295 Locally Advanced Cervical Carcinoma 8 182739 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 182740 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 182741 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 9 182742 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 182743 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 182744 -NCIT:C156062 Metastatic Bladder Carcinoma 7 182745 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 182746 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 182747 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 182748 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 182749 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 182750 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 182751 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 182752 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 182753 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 182754 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 182755 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 182756 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 8 182757 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 8 182758 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 8 182759 -NCIT:C167071 Locally Advanced Bladder Carcinoma 8 182760 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 182761 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 9 182762 -NCIT:C167338 Advanced Bladder Carcinoma 8 182763 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 182764 -NCIT:C190772 Metastatic Non-Muscle Invasive Bladder Carcinoma 8 182765 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 9 182766 -NCIT:C156063 Metastatic Fallopian Tube Carcinoma 7 182767 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 8 182768 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 9 182769 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 8 182770 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 8 182771 -NCIT:C156064 Metastatic Ovarian Carcinoma 7 182772 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 8 182773 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 182774 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 182775 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 182776 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 9 182777 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 182778 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 182779 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 9 182780 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 182781 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 182782 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 182783 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 182784 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 182785 -NCIT:C165458 Advanced Ovarian Carcinoma 8 182786 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 182787 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 182788 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 182789 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 182790 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 182791 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 182792 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 182793 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 8 182794 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 182795 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 182796 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 182797 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 182798 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 8 182799 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 182800 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 8 182801 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 182802 -NCIT:C172234 Metastatic Ovarian Undifferentiated Carcinoma 8 182803 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 8 182804 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 182805 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 182806 -NCIT:C180333 Metastatic Microsatellite Stable Ovarian Carcinoma 8 182807 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 182808 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 8 182809 -NCIT:C27391 Metastatic Ovarian Small Cell Carcinoma, Hypercalcemic Type 8 182810 -NCIT:C156065 Metastatic Vaginal Carcinoma 7 182811 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 8 182812 -NCIT:C170788 Advanced Vaginal Carcinoma 8 182813 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 182814 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 182815 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 182816 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 182817 -NCIT:C181028 Metastatic Vaginal Adenosquamous Carcinoma 8 182818 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 182819 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 8 182820 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 182821 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 182822 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 8 182823 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 182824 -NCIT:C156066 Metastatic Vulvar Carcinoma 7 182825 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 8 182826 -NCIT:C170786 Advanced Vulvar Carcinoma 8 182827 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 8 182828 -NCIT:C156068 Metastatic Endometrial Carcinoma 7 182829 -NCIT:C159676 Advanced Endometrial Carcinoma 8 182830 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 182831 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 182832 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 182833 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 182834 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 8 182835 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 182836 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 182837 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 9 182838 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 8 182839 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 8 182840 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 182841 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 8 182842 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 9 182843 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 182844 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 182845 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 182846 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 182847 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 9 182848 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 182849 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 182850 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 182851 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 182852 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 9 182853 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 9 182854 -NCIT:C164143 Advanced Genitourinary System Carcinoma 7 182855 -NCIT:C148493 Advanced Urothelial Carcinoma 8 182856 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 182857 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 182858 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 182859 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 182860 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 182861 -NCIT:C156284 Advanced Prostate Carcinoma 8 182862 -NCIT:C156286 Advanced Prostate Adenocarcinoma 9 182863 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 182864 -NCIT:C156294 Advanced Cervical Carcinoma 8 182865 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 182866 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 182867 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 182868 -NCIT:C159676 Advanced Endometrial Carcinoma 8 182869 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 182870 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 182871 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 182872 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 182873 -NCIT:C165458 Advanced Ovarian Carcinoma 8 182874 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 182875 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 182876 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 182877 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 182878 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 182879 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 182880 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 182881 -NCIT:C167338 Advanced Bladder Carcinoma 8 182882 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 182883 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 8 182884 -NCIT:C170786 Advanced Vulvar Carcinoma 8 182885 -NCIT:C170788 Advanced Vaginal Carcinoma 8 182886 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 182887 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 182888 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 182889 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 182890 -NCIT:C170790 Advanced Penile Carcinoma 8 182891 -NCIT:C172617 Advanced Kidney Carcinoma 8 182892 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 182893 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 182894 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 182895 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 182896 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 182897 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 182898 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 182899 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 182900 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 182901 -NCIT:C167069 Locally Advanced Genitourinary System Carcinoma 7 182902 -NCIT:C156285 Locally Advanced Prostate Carcinoma 8 182903 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 9 182904 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 182905 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 9 182906 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 182907 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 9 182908 -NCIT:C156295 Locally Advanced Cervical Carcinoma 8 182909 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 182910 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 182911 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 9 182912 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 182913 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 182914 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 8 182915 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 182916 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 182917 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 182918 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 182919 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 182920 -NCIT:C167071 Locally Advanced Bladder Carcinoma 8 182921 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 182922 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 9 182923 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 8 182924 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 182925 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 182926 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 182927 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 182928 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 8 182929 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 9 182930 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 8 182931 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 182932 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 182933 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 9 182934 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 8 182935 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 8 182936 -NCIT:C170789 Locally Advanced Penile Carcinoma 8 182937 -NCIT:C172618 Locally Advanced Kidney Carcinoma 8 182938 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 182939 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 182940 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 182941 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 182942 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 182943 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 182944 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 182945 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 182946 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 182947 -NCIT:C185381 Metastatic Mesonephric Adenocarcinoma 7 182948 -NCIT:C27784 Metastatic Penile Carcinoma 7 182949 -NCIT:C170789 Locally Advanced Penile Carcinoma 8 182950 -NCIT:C170790 Advanced Penile Carcinoma 8 182951 -NCIT:C182111 Metastatic Squamous Cell Carcinoma of the Penis 8 182952 -NCIT:C27806 Metastatic Kidney Carcinoma 7 182953 -NCIT:C150595 Metastatic Renal Cell Carcinoma 8 182954 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 182955 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 182956 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 182957 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 182958 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 182959 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 182960 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 9 182961 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 182962 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 182963 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 9 182964 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 182965 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 182966 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 9 182967 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 182968 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 182969 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 182970 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 182971 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 182972 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 182973 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 182974 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 182975 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 182976 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 9 182977 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 182978 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 182979 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 9 182980 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 182981 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 182982 -NCIT:C157755 Metastatic Kidney Medullary Carcinoma 8 182983 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 182984 -NCIT:C163965 Metastatic Renal Pelvis Carcinoma 8 182985 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 182986 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 182987 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 182988 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 182989 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 182990 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 182991 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 182992 -NCIT:C172617 Advanced Kidney Carcinoma 8 182993 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 182994 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 182995 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 182996 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 182997 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 182998 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 182999 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 183000 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 183001 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 183002 -NCIT:C172618 Locally Advanced Kidney Carcinoma 8 183003 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 183004 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 183005 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 183006 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 183007 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 183008 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 183009 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 183010 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 183011 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 183012 -NCIT:C27818 Metastatic Ureter Carcinoma 7 183013 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 8 183014 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 183015 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 183016 -NCIT:C27819 Metastatic Urethral Carcinoma 7 183017 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 183018 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 183019 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 183020 -NCIT:C8946 Metastatic Prostate Carcinoma 7 183021 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 8 183022 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 9 183023 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 9 183024 -NCIT:C161609 Double-Negative Prostate Carcinoma 9 183025 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 9 183026 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 9 183027 -NCIT:C132881 Prostate Carcinoma Metastatic in the Soft Tissue 8 183028 -NCIT:C148536 Castration-Naive Prostate Carcinoma 8 183029 -NCIT:C153336 Castration-Sensitive Prostate Carcinoma 8 183030 -NCIT:C156284 Advanced Prostate Carcinoma 8 183031 -NCIT:C156286 Advanced Prostate Adenocarcinoma 9 183032 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 183033 -NCIT:C156285 Locally Advanced Prostate Carcinoma 8 183034 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 9 183035 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 183036 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 9 183037 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 183038 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 9 183039 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 8 183040 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 9 183041 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 9 183042 -NCIT:C161584 Prostate Carcinoma Metastatic in the Pelvic Cavity 8 183043 -NCIT:C161587 Prostate Carcinoma Metastatic in the Lymph Nodes 8 183044 -NCIT:C171265 Oligometastatic Prostate Carcinoma 8 183045 -NCIT:C36307 Prostate Carcinoma Metastatic in the Lung 8 183046 -NCIT:C36308 Prostate Carcinoma Metastatic in the Bone 8 183047 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 8 183048 -NCIT:C156286 Advanced Prostate Adenocarcinoma 9 183049 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 183050 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 9 183051 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 183052 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 183053 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 183054 -NCIT:C162254 Metastatic Malignant Female Reproductive System Neoplasm 6 183055 -NCIT:C153387 Metastatic Cervical Carcinoma 7 183056 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 8 183057 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 183058 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 183059 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 8 183060 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 183061 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 183062 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 183063 -NCIT:C153390 Metastatic Cervical Adenosquamous Carcinoma 8 183064 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 183065 -NCIT:C156294 Advanced Cervical Carcinoma 8 183066 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 183067 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 183068 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 183069 -NCIT:C156295 Locally Advanced Cervical Carcinoma 8 183070 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 183071 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 183072 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 9 183073 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 183074 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 183075 -NCIT:C156063 Metastatic Fallopian Tube Carcinoma 7 183076 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 8 183077 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 9 183078 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 8 183079 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 8 183080 -NCIT:C156064 Metastatic Ovarian Carcinoma 7 183081 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 8 183082 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 183083 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 183084 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 183085 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 9 183086 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 183087 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 183088 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 9 183089 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 183090 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 183091 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 183092 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 183093 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 183094 -NCIT:C165458 Advanced Ovarian Carcinoma 8 183095 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 183096 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 183097 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 183098 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 183099 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 183100 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 183101 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 183102 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 8 183103 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 183104 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 183105 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 183106 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 183107 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 8 183108 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 183109 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 8 183110 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 183111 -NCIT:C172234 Metastatic Ovarian Undifferentiated Carcinoma 8 183112 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 8 183113 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 183114 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 183115 -NCIT:C180333 Metastatic Microsatellite Stable Ovarian Carcinoma 8 183116 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 183117 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 8 183118 -NCIT:C27391 Metastatic Ovarian Small Cell Carcinoma, Hypercalcemic Type 8 183119 -NCIT:C156065 Metastatic Vaginal Carcinoma 7 183120 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 8 183121 -NCIT:C170788 Advanced Vaginal Carcinoma 8 183122 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 183123 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 183124 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 183125 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 183126 -NCIT:C181028 Metastatic Vaginal Adenosquamous Carcinoma 8 183127 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 183128 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 8 183129 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 183130 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 183131 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 8 183132 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 183133 -NCIT:C156066 Metastatic Vulvar Carcinoma 7 183134 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 8 183135 -NCIT:C170786 Advanced Vulvar Carcinoma 8 183136 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 8 183137 -NCIT:C156068 Metastatic Endometrial Carcinoma 7 183138 -NCIT:C159676 Advanced Endometrial Carcinoma 8 183139 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 183140 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 183141 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 183142 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 183143 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 8 183144 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 183145 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 183146 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 9 183147 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 8 183148 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 8 183149 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 183150 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 8 183151 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 9 183152 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 183153 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 183154 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 183155 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 183156 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 9 183157 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 183158 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 183159 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 183160 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 183161 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 9 183162 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 9 183163 -NCIT:C167260 Advanced Malignant Female Reproductive System Neoplasm 7 183164 -NCIT:C156294 Advanced Cervical Carcinoma 8 183165 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 183166 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 183167 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 183168 -NCIT:C165458 Advanced Ovarian Carcinoma 8 183169 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 183170 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 183171 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 183172 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 183173 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 183174 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 183175 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 183176 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 8 183177 -NCIT:C170786 Advanced Vulvar Carcinoma 8 183178 -NCIT:C170788 Advanced Vaginal Carcinoma 8 183179 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 183180 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 183181 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 183182 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 183183 -NCIT:C170930 Advanced Malignant Mixed Mesodermal (Mullerian) Tumor 8 183184 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 9 183185 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 9 183186 -NCIT:C172450 Advanced Uterine Corpus Cancer 8 183187 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 9 183188 -NCIT:C159676 Advanced Endometrial Carcinoma 9 183189 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 10 183190 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 11 183191 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 11 183192 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 10 183193 -NCIT:C170460 Locally Advanced Malignant Female Reproductive System Neoplasm 7 183194 -NCIT:C156295 Locally Advanced Cervical Carcinoma 8 183195 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 183196 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 183197 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 9 183198 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 183199 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 183200 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 8 183201 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 183202 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 183203 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 183204 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 183205 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 8 183206 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 9 183207 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 8 183208 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 183209 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 183210 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 9 183211 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 8 183212 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 8 183213 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 183214 -NCIT:C185381 Metastatic Mesonephric Adenocarcinoma 7 183215 -NCIT:C190009 Metastatic Uterine Corpus Sarcoma 7 183216 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 8 183217 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 9 183218 -NCIT:C176859 Advanced Malignant Genitourinary System Neoplasm 6 183219 -NCIT:C164143 Advanced Genitourinary System Carcinoma 7 183220 -NCIT:C148493 Advanced Urothelial Carcinoma 8 183221 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 183222 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 183223 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 183224 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 183225 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 183226 -NCIT:C156284 Advanced Prostate Carcinoma 8 183227 -NCIT:C156286 Advanced Prostate Adenocarcinoma 9 183228 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 183229 -NCIT:C156294 Advanced Cervical Carcinoma 8 183230 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 183231 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 183232 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 183233 -NCIT:C159676 Advanced Endometrial Carcinoma 8 183234 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 183235 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 183236 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 183237 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 183238 -NCIT:C165458 Advanced Ovarian Carcinoma 8 183239 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 183240 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 183241 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 183242 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 183243 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 183244 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 183245 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 183246 -NCIT:C167338 Advanced Bladder Carcinoma 8 183247 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 183248 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 8 183249 -NCIT:C170786 Advanced Vulvar Carcinoma 8 183250 -NCIT:C170788 Advanced Vaginal Carcinoma 8 183251 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 183252 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 183253 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 183254 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 183255 -NCIT:C170790 Advanced Penile Carcinoma 8 183256 -NCIT:C172617 Advanced Kidney Carcinoma 8 183257 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 183258 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 183259 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 183260 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 183261 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 183262 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 183263 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 183264 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 183265 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 183266 -NCIT:C167260 Advanced Malignant Female Reproductive System Neoplasm 7 183267 -NCIT:C156294 Advanced Cervical Carcinoma 8 183268 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 183269 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 183270 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 183271 -NCIT:C165458 Advanced Ovarian Carcinoma 8 183272 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 183273 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 183274 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 183275 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 183276 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 183277 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 183278 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 183279 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 8 183280 -NCIT:C170786 Advanced Vulvar Carcinoma 8 183281 -NCIT:C170788 Advanced Vaginal Carcinoma 8 183282 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 183283 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 183284 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 183285 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 183286 -NCIT:C170930 Advanced Malignant Mixed Mesodermal (Mullerian) Tumor 8 183287 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 9 183288 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 9 183289 -NCIT:C172450 Advanced Uterine Corpus Cancer 8 183290 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 9 183291 -NCIT:C159676 Advanced Endometrial Carcinoma 9 183292 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 10 183293 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 11 183294 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 11 183295 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 10 183296 -NCIT:C187316 Advanced Malignant Testicular Germ Cell Tumor 7 183297 -NCIT:C161583 Metastatic Malignant Neoplasm in the Pelvic Cavity 5 183298 -NCIT:C161584 Prostate Carcinoma Metastatic in the Pelvic Cavity 6 183299 -NCIT:C161649 Metastatic Malignant Neoplasm in the Seminal Vesicle 5 183300 -NCIT:C162255 Metastatic Malignant Digestive System Neoplasm 5 183301 -NCIT:C133839 Metastatic Digestive System Carcinoma 6 183302 -NCIT:C150577 Metastatic Gastroesophageal Junction Adenocarcinoma 7 183303 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 8 183304 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 8 183305 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 9 183306 -NCIT:C151904 Refractory Metastatic Digestive System Carcinoma 7 183307 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 8 183308 -NCIT:C151905 Recurrent Metastatic Digestive System Carcinoma 7 183309 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 8 183310 -NCIT:C153320 Metastatic Gastric Carcinoma 7 183311 -NCIT:C153319 Metastatic Gastric Adenocarcinoma 8 183312 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 9 183313 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 10 183314 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 10 183315 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 9 183316 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 10 183317 -NCIT:C165630 Metastatic Proximal Gastric Adenocarcinoma 9 183318 -NCIT:C166121 Oligometastatic Gastric Adenocarcinoma 9 183319 -NCIT:C166255 Advanced Gastric Adenocarcinoma 9 183320 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 10 183321 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 8 183322 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 183323 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 183324 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 183325 -NCIT:C162772 Locally Advanced Gastric Carcinoma 8 183326 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 9 183327 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 10 183328 -NCIT:C165299 Advanced Gastric Carcinoma 8 183329 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 183330 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 183331 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 183332 -NCIT:C166255 Advanced Gastric Adenocarcinoma 9 183333 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 10 183334 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 8 183335 -NCIT:C153358 Locally Advanced Digestive System Carcinoma 7 183336 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 8 183337 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 183338 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 183339 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 183340 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 8 183341 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 9 183342 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 8 183343 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 183344 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 183345 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 183346 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 183347 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 183348 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 183349 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 183350 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 183351 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 183352 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 183353 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 183354 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 183355 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 183356 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 183357 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 183358 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 183359 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 183360 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 183361 -NCIT:C162772 Locally Advanced Gastric Carcinoma 8 183362 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 9 183363 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 10 183364 -NCIT:C168976 Locally Advanced Esophageal Carcinoma 8 183365 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 9 183366 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 10 183367 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 9 183368 -NCIT:C168977 Locally Advanced Anal Carcinoma 8 183369 -NCIT:C170459 Locally Advanced Pancreatobiliary Carcinoma 8 183370 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 9 183371 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 10 183372 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 11 183373 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 183374 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 12 183375 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 11 183376 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 183377 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 10 183378 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 11 183379 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 9 183380 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 10 183381 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 11 183382 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 11 183383 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 9 183384 -NCIT:C171298 Locally Advanced Liver Carcinoma 8 183385 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 9 183386 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 183387 -NCIT:C154088 Metastatic Liver Carcinoma 7 183388 -NCIT:C154091 Metastatic Hepatocellular Carcinoma 8 183389 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 9 183390 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 10 183391 -NCIT:C167336 Advanced Hepatocellular Carcinoma 9 183392 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 10 183393 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 10 183394 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 9 183395 -NCIT:C171298 Locally Advanced Liver Carcinoma 8 183396 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 9 183397 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 183398 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 8 183399 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 183400 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 9 183401 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 7 183402 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 8 183403 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 183404 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 183405 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 183406 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 8 183407 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 183408 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 183409 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 183410 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 183411 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 183412 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 183413 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 183414 -NCIT:C156073 Metastatic Esophageal Carcinoma 7 183415 -NCIT:C156074 Metastatic Esophageal Adenocarcinoma 8 183416 -NCIT:C166120 Oligometastatic Esophageal Adenocarcinoma 9 183417 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 9 183418 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 9 183419 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 10 183420 -NCIT:C172249 Metastatic Distal Esophagus Adenocarcinoma 9 183421 -NCIT:C156075 Metastatic Esophageal Squamous Cell Carcinoma 8 183422 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 9 183423 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 9 183424 -NCIT:C160599 Advanced Esophageal Carcinoma 8 183425 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 9 183426 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 9 183427 -NCIT:C168976 Locally Advanced Esophageal Carcinoma 8 183428 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 9 183429 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 10 183430 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 9 183431 -NCIT:C156096 Metastatic Colorectal Carcinoma 7 183432 -NCIT:C142867 Metastatic Microsatellite Stable Colorectal Carcinoma 8 183433 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 183434 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 183435 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 183436 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 183437 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 183438 -NCIT:C153224 Colorectal Carcinoma Metastatic in the Lung 8 183439 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 9 183440 -NCIT:C156097 Metastatic Colon Carcinoma 8 183441 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 183442 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 183443 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 183444 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 183445 -NCIT:C167238 Advanced Colon Carcinoma 9 183446 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 183447 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 183448 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 183449 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 183450 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 183451 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 183452 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 183453 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 9 183454 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 9 183455 -NCIT:C156098 Metastatic Rectal Carcinoma 8 183456 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 9 183457 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 183458 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 183459 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 183460 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 183461 -NCIT:C170777 Advanced Rectal Carcinoma 9 183462 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 183463 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 183464 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 183465 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 183466 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 183467 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 183468 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 9 183469 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 183470 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 183471 -NCIT:C157366 Colorectal Carcinoma Metastatic in the Liver 8 183472 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 9 183473 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 9 183474 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 9 183475 -NCIT:C161048 Metastatic Colorectal Adenocarcinoma 8 183476 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 9 183477 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 183478 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 183479 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 183480 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 183481 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 183482 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 183483 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 183484 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 183485 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 9 183486 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 183487 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 183488 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 183489 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 183490 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 183491 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 183492 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 183493 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 183494 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 183495 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 183496 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 183497 -NCIT:C162475 Advanced Colorectal Carcinoma 8 183498 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 183499 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 183500 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 183501 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 183502 -NCIT:C167238 Advanced Colon Carcinoma 9 183503 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 183504 -NCIT:C170777 Advanced Rectal Carcinoma 9 183505 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 183506 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 183507 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 8 183508 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 183509 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 183510 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 183511 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 183512 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 183513 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 183514 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 183515 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 183516 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 183517 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 183518 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 183519 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 183520 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 183521 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 183522 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 183523 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 183524 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 183525 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 183526 -NCIT:C185165 Oligometastatic Colorectal Carcinoma 8 183527 -NCIT:C156746 Advanced Digestive System Carcinoma 7 183528 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 183529 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 183530 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 183531 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 8 183532 -NCIT:C160599 Advanced Esophageal Carcinoma 8 183533 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 9 183534 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 9 183535 -NCIT:C162475 Advanced Colorectal Carcinoma 8 183536 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 183537 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 183538 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 183539 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 183540 -NCIT:C167238 Advanced Colon Carcinoma 9 183541 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 183542 -NCIT:C170777 Advanced Rectal Carcinoma 9 183543 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 183544 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 183545 -NCIT:C165299 Advanced Gastric Carcinoma 8 183546 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 183547 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 183548 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 183549 -NCIT:C166255 Advanced Gastric Adenocarcinoma 9 183550 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 10 183551 -NCIT:C167336 Advanced Hepatocellular Carcinoma 8 183552 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 183553 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 183554 -NCIT:C170515 Advanced Anal Carcinoma 8 183555 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 183556 -NCIT:C171330 Advanced Pancreatobiliary Carcinoma 8 183557 -NCIT:C165452 Advanced Pancreatic Carcinoma 9 183558 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 10 183559 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 11 183560 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 9 183561 -NCIT:C171331 Advanced Biliary Tract Carcinoma 9 183562 -NCIT:C142870 Advanced Bile Duct Carcinoma 10 183563 -NCIT:C162752 Advanced Cholangiocarcinoma 11 183564 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 183565 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 183566 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 183567 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 11 183568 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 183569 -NCIT:C162755 Advanced Gallbladder Carcinoma 10 183570 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 183571 -NCIT:C162275 Metastatic Appendix Carcinoma 7 183572 -NCIT:C182104 Metastatic Appendix Adenocarcinoma 8 183573 -NCIT:C162274 Metastatic Appendix Mucinous Adenocarcinoma 9 183574 -NCIT:C182105 Advanced Appendix Adenocarcinoma 9 183575 -NCIT:C163967 Metastatic Digestive System Mixed Adenoneuroendocrine Carcinoma 7 183576 -NCIT:C170458 Metastatic Pancreatobiliary Carcinoma 7 183577 -NCIT:C156069 Metastatic Pancreatic Carcinoma 8 183578 -NCIT:C165452 Advanced Pancreatic Carcinoma 9 183579 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 10 183580 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 11 183581 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 9 183582 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 10 183583 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 11 183584 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 11 183585 -NCIT:C190770 Metastatic Pancreatic Adenosquamous Carcinoma 9 183586 -NCIT:C190771 Metastatic Pancreatic Squamous Cell Carcinoma 9 183587 -NCIT:C8933 Metastatic Pancreatic Adenocarcinoma 9 183588 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 10 183589 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 11 183590 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 11 183591 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 10 183592 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 11 183593 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 11 183594 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 11 183595 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 10 183596 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 11 183597 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 10 183598 -NCIT:C162751 Metastatic Biliary Tract Carcinoma 8 183599 -NCIT:C142869 Metastatic Bile Duct Carcinoma 9 183600 -NCIT:C142870 Advanced Bile Duct Carcinoma 10 183601 -NCIT:C162752 Advanced Cholangiocarcinoma 11 183602 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 183603 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 183604 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 183605 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 11 183606 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 183607 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 10 183608 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 11 183609 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 183610 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 12 183611 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 11 183612 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 183613 -NCIT:C157623 Metastatic Cholangiocarcinoma 10 183614 -NCIT:C162752 Advanced Cholangiocarcinoma 11 183615 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 183616 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 183617 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 183618 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 11 183619 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 183620 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 12 183621 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 11 183622 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 183623 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 11 183624 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 183625 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 183626 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 11 183627 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 183628 -NCIT:C185071 Metastatic Extrahepatic Bile Duct Carcinoma 10 183629 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 11 183630 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 12 183631 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 13 183632 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 183633 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 11 183634 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 183635 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 11 183636 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 183637 -NCIT:C162754 Metastatic Gallbladder Carcinoma 9 183638 -NCIT:C162755 Advanced Gallbladder Carcinoma 10 183639 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 10 183640 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 11 183641 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 9 183642 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 10 183643 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 11 183644 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 183645 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 12 183646 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 11 183647 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 183648 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 10 183649 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 11 183650 -NCIT:C171331 Advanced Biliary Tract Carcinoma 9 183651 -NCIT:C142870 Advanced Bile Duct Carcinoma 10 183652 -NCIT:C162752 Advanced Cholangiocarcinoma 11 183653 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 183654 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 183655 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 183656 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 11 183657 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 183658 -NCIT:C162755 Advanced Gallbladder Carcinoma 10 183659 -NCIT:C170459 Locally Advanced Pancreatobiliary Carcinoma 8 183660 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 9 183661 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 10 183662 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 11 183663 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 183664 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 12 183665 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 11 183666 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 183667 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 10 183668 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 11 183669 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 9 183670 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 10 183671 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 11 183672 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 11 183673 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 9 183674 -NCIT:C171326 Metastatic Ampulla of Vater Carcinoma 8 183675 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 9 183676 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 9 183677 -NCIT:C171330 Advanced Pancreatobiliary Carcinoma 8 183678 -NCIT:C165452 Advanced Pancreatic Carcinoma 9 183679 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 10 183680 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 11 183681 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 9 183682 -NCIT:C171331 Advanced Biliary Tract Carcinoma 9 183683 -NCIT:C142870 Advanced Bile Duct Carcinoma 10 183684 -NCIT:C162752 Advanced Cholangiocarcinoma 11 183685 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 183686 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 183687 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 183688 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 11 183689 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 183690 -NCIT:C162755 Advanced Gallbladder Carcinoma 10 183691 -NCIT:C170514 Metastatic Anal Carcinoma 7 183692 -NCIT:C168977 Locally Advanced Anal Carcinoma 8 183693 -NCIT:C169103 Metastatic Anal Squamous Cell Carcinoma 8 183694 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 9 183695 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 10 183696 -NCIT:C170515 Advanced Anal Carcinoma 8 183697 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 183698 -NCIT:C5612 Metastatic Anal Canal Carcinoma 8 183699 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 9 183700 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 10 183701 -NCIT:C8637 Metastatic Small Intestinal Carcinoma 7 183702 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 8 183703 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 183704 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 183705 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 183706 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 183707 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 183708 -NCIT:C8934 Metastatic Small Intestinal Adenocarcinoma 8 183709 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 183710 -NCIT:C156492 Metastatic Digestive System Neuroendocrine Neoplasm 6 183711 -NCIT:C115245 Metastatic Digestive System Neuroendocrine Tumor G1 7 183712 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 8 183713 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 183714 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 8 183715 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 8 183716 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 183717 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 7 183718 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 8 183719 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 183720 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 183721 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 183722 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 8 183723 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 183724 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 183725 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 183726 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 183727 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 183728 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 183729 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 183730 -NCIT:C158089 Advanced Digestive System Neuroendocrine Neoplasm 7 183731 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 183732 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 183733 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 183734 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 183735 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 183736 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 183737 -NCIT:C165448 Advanced Pancreatic Neuroendocrine Neoplasm 8 183738 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 9 183739 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 183740 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 10 183741 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 8 183742 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 183743 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 8 183744 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 183745 -NCIT:C165447 Metastatic Pancreatic Neuroendocrine Neoplasm 7 183746 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 8 183747 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 183748 -NCIT:C156488 Metastatic Pancreatic Neuroendocrine Tumor 8 183749 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 9 183750 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 183751 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 10 183752 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 9 183753 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 9 183754 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 183755 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 9 183756 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 10 183757 -NCIT:C165448 Advanced Pancreatic Neuroendocrine Neoplasm 8 183758 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 9 183759 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 183760 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 10 183761 -NCIT:C167329 Metastatic Midgut Neuroendocrine Tumor 7 183762 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 8 183763 -NCIT:C178271 Locally Advanced Digestive System Neuroendocrine Neoplasm 7 183764 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 183765 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 183766 -NCIT:C158090 Locally Advanced Unresectable Digestive System Neuroendocrine Neoplasm 8 183767 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 8 183768 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 8 183769 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 8 183770 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 8 183771 -NCIT:C179415 Metastatic Digestive System Neuroendocrine Tumor G2 7 183772 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 8 183773 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 8 183774 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 183775 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 8 183776 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 183777 -NCIT:C162780 Metastatic Malignant Colorectal Neoplasm 6 183778 -NCIT:C156096 Metastatic Colorectal Carcinoma 7 183779 -NCIT:C142867 Metastatic Microsatellite Stable Colorectal Carcinoma 8 183780 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 183781 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 183782 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 183783 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 183784 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 183785 -NCIT:C153224 Colorectal Carcinoma Metastatic in the Lung 8 183786 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 9 183787 -NCIT:C156097 Metastatic Colon Carcinoma 8 183788 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 183789 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 183790 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 183791 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 183792 -NCIT:C167238 Advanced Colon Carcinoma 9 183793 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 183794 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 183795 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 183796 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 183797 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 183798 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 183799 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 183800 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 9 183801 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 9 183802 -NCIT:C156098 Metastatic Rectal Carcinoma 8 183803 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 9 183804 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 183805 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 183806 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 183807 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 183808 -NCIT:C170777 Advanced Rectal Carcinoma 9 183809 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 183810 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 183811 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 183812 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 183813 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 183814 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 183815 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 9 183816 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 183817 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 183818 -NCIT:C157366 Colorectal Carcinoma Metastatic in the Liver 8 183819 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 9 183820 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 9 183821 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 9 183822 -NCIT:C161048 Metastatic Colorectal Adenocarcinoma 8 183823 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 9 183824 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 183825 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 183826 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 183827 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 183828 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 183829 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 183830 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 183831 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 183832 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 9 183833 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 183834 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 183835 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 183836 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 183837 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 183838 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 183839 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 183840 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 183841 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 183842 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 183843 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 183844 -NCIT:C162475 Advanced Colorectal Carcinoma 8 183845 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 183846 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 183847 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 183848 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 183849 -NCIT:C167238 Advanced Colon Carcinoma 9 183850 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 183851 -NCIT:C170777 Advanced Rectal Carcinoma 9 183852 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 183853 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 183854 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 8 183855 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 183856 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 183857 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 183858 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 183859 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 183860 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 183861 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 183862 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 183863 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 183864 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 183865 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 183866 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 183867 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 183868 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 183869 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 183870 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 183871 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 183872 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 183873 -NCIT:C185165 Oligometastatic Colorectal Carcinoma 8 183874 -NCIT:C175547 Advanced Malignant Digestive System Neoplasm 6 183875 -NCIT:C156746 Advanced Digestive System Carcinoma 7 183876 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 183877 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 183878 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 183879 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 8 183880 -NCIT:C160599 Advanced Esophageal Carcinoma 8 183881 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 9 183882 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 9 183883 -NCIT:C162475 Advanced Colorectal Carcinoma 8 183884 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 183885 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 183886 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 183887 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 183888 -NCIT:C167238 Advanced Colon Carcinoma 9 183889 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 183890 -NCIT:C170777 Advanced Rectal Carcinoma 9 183891 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 183892 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 183893 -NCIT:C165299 Advanced Gastric Carcinoma 8 183894 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 183895 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 183896 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 183897 -NCIT:C166255 Advanced Gastric Adenocarcinoma 9 183898 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 10 183899 -NCIT:C167336 Advanced Hepatocellular Carcinoma 8 183900 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 183901 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 183902 -NCIT:C170515 Advanced Anal Carcinoma 8 183903 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 183904 -NCIT:C171330 Advanced Pancreatobiliary Carcinoma 8 183905 -NCIT:C165452 Advanced Pancreatic Carcinoma 9 183906 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 10 183907 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 11 183908 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 9 183909 -NCIT:C171331 Advanced Biliary Tract Carcinoma 9 183910 -NCIT:C142870 Advanced Bile Duct Carcinoma 10 183911 -NCIT:C162752 Advanced Cholangiocarcinoma 11 183912 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 183913 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 183914 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 183915 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 11 183916 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 183917 -NCIT:C162755 Advanced Gallbladder Carcinoma 10 183918 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 183919 -NCIT:C158089 Advanced Digestive System Neuroendocrine Neoplasm 7 183920 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 183921 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 183922 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 183923 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 183924 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 183925 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 183926 -NCIT:C165448 Advanced Pancreatic Neuroendocrine Neoplasm 8 183927 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 9 183928 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 183929 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 10 183930 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 8 183931 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 183932 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 8 183933 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 183934 -NCIT:C176679 Advanced Malignant Small Intestinal Neoplasm 7 183935 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 183936 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 183937 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 183938 -NCIT:C176678 Metastatic Malignant Small Intestinal Neoplasm 6 183939 -NCIT:C176679 Advanced Malignant Small Intestinal Neoplasm 7 183940 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 183941 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 183942 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 183943 -NCIT:C8637 Metastatic Small Intestinal Carcinoma 7 183944 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 8 183945 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 183946 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 183947 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 183948 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 183949 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 183950 -NCIT:C8934 Metastatic Small Intestinal Adenocarcinoma 8 183951 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 183952 -NCIT:C179181 Locally Advanced Malignant Digestive System Neoplasm 6 183953 -NCIT:C153358 Locally Advanced Digestive System Carcinoma 7 183954 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 8 183955 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 183956 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 183957 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 183958 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 8 183959 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 9 183960 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 8 183961 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 183962 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 183963 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 183964 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 183965 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 183966 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 183967 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 183968 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 183969 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 183970 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 183971 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 183972 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 183973 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 183974 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 183975 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 183976 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 183977 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 183978 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 183979 -NCIT:C162772 Locally Advanced Gastric Carcinoma 8 183980 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 9 183981 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 10 183982 -NCIT:C168976 Locally Advanced Esophageal Carcinoma 8 183983 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 9 183984 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 10 183985 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 9 183986 -NCIT:C168977 Locally Advanced Anal Carcinoma 8 183987 -NCIT:C170459 Locally Advanced Pancreatobiliary Carcinoma 8 183988 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 9 183989 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 10 183990 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 11 183991 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 183992 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 12 183993 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 11 183994 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 183995 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 10 183996 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 11 183997 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 9 183998 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 10 183999 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 11 184000 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 11 184001 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 9 184002 -NCIT:C171298 Locally Advanced Liver Carcinoma 8 184003 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 9 184004 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 184005 -NCIT:C178271 Locally Advanced Digestive System Neuroendocrine Neoplasm 7 184006 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 184007 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 184008 -NCIT:C158090 Locally Advanced Unresectable Digestive System Neuroendocrine Neoplasm 8 184009 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 8 184010 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 8 184011 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 8 184012 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 8 184013 -NCIT:C162549 Metastatic Malignant Neoplasm in the Penis 5 184014 -NCIT:C162594 Metastatic Malignant Neoplasm in the Head and Neck 5 184015 -NCIT:C155786 Metastatic Malignant Neoplasm in the Sellar Region 6 184016 -NCIT:C6805 Metastatic Malignant Neoplasm in the Pituitary Gland 7 184017 -NCIT:C162595 Head and Neck Carcinoma of Unknown Primary 6 184018 -NCIT:C173585 Neck Carcinoma of Unknown Primary 7 184019 -NCIT:C7713 Neck Squamous Cell Carcinoma of Unknown Primary 8 184020 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 9 184021 -NCIT:C187051 Human Papillomavirus-Related Head and Neck Squamous Cell Carcinoma of Unknown Primary 7 184022 -NCIT:C190149 Human Papillomavirus-Negative Head and Neck Squamous Cell Carcinoma of Unknown Primary 7 184023 -NCIT:C8528 Metastatic Malignant Neoplasm in the Neck 6 184024 -NCIT:C173585 Neck Carcinoma of Unknown Primary 7 184025 -NCIT:C7713 Neck Squamous Cell Carcinoma of Unknown Primary 8 184026 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 9 184027 -NCIT:C6031 Metastatic Malignant Neoplasm in the Larynx 7 184028 -NCIT:C7509 Metastatic Malignant Neoplasm in the Thyroid Gland 7 184029 -NCIT:C7546 Metastatic Malignant Neoplasm in the Pharynx 7 184030 -NCIT:C6028 Metastatic Malignant Neoplasm in the Hypopharynx 8 184031 -NCIT:C6029 Metastatic Malignant Neoplasm in the Oropharynx 8 184032 -NCIT:C6030 Metastatic Malignant Neoplasm in the Nasopharynx 8 184033 -NCIT:C8557 Metastatic Malignant Neoplasm in the Parathyroid Glands 7 184034 -NCIT:C8542 Metastatic Malignant Neoplasm in the Lip 6 184035 -NCIT:C8556 Metastatic Malignant Neoplasm in the Orbit 6 184036 -NCIT:C165252 Metastatic Malignant Mesothelioma 5 184037 -NCIT:C168545 Metastatic Pleural Malignant Mesothelioma 6 184038 -NCIT:C175936 Locally Advanced Pleural Malignant Mesothelioma 7 184039 -NCIT:C8706 Advanced Pleural Malignant Mesothelioma 7 184040 -NCIT:C175935 Locally Advanced Malignant Mesothelioma 6 184041 -NCIT:C175936 Locally Advanced Pleural Malignant Mesothelioma 7 184042 -NCIT:C179462 Metastatic Peritoneal Malignant Mesothelioma 6 184043 -NCIT:C8704 Advanced Peritoneal Malignant Mesothelioma 7 184044 -NCIT:C7865 Advanced Malignant Mesothelioma 6 184045 -NCIT:C175937 Advanced Epithelioid Mesothelioma 7 184046 -NCIT:C8703 Advanced Pericardial Malignant Mesothelioma 7 184047 -NCIT:C8704 Advanced Peritoneal Malignant Mesothelioma 7 184048 -NCIT:C8706 Advanced Pleural Malignant Mesothelioma 7 184049 -NCIT:C166181 Metastatic Primary Malignant Central Nervous System Neoplasm 5 184050 -NCIT:C166182 Locally Advanced Primary Malignant Central Nervous System Neoplasm 6 184051 -NCIT:C180874 Locally Advanced Primary Malignant Brain Neoplasm 7 184052 -NCIT:C180876 Locally Advanced Glioma 7 184053 -NCIT:C170980 Locally Advanced Glioblastoma 8 184054 -NCIT:C170966 Advanced Primary Malignant Central Nervous System Neoplasm 6 184055 -NCIT:C170978 Advanced Glioblastoma 7 184056 -NCIT:C175549 Advanced Primary Malignant Brain Neoplasm 7 184057 -NCIT:C187213 Advanced Childhood Malignant Brain Neoplasm 8 184058 -NCIT:C173155 Metastatic Intracranial Malignant Neoplasm 6 184059 -NCIT:C175550 Metastatic Primary Malignant Brain Neoplasm 7 184060 -NCIT:C175549 Advanced Primary Malignant Brain Neoplasm 8 184061 -NCIT:C187213 Advanced Childhood Malignant Brain Neoplasm 9 184062 -NCIT:C177725 Metastatic Medulloblastoma 8 184063 -NCIT:C5399 Medulloblastoma with Leptomeningeal Spread 9 184064 -NCIT:C180874 Locally Advanced Primary Malignant Brain Neoplasm 8 184065 -NCIT:C187212 Metastatic Childhood Malignant Brain Neoplasm 8 184066 -NCIT:C187213 Advanced Childhood Malignant Brain Neoplasm 9 184067 -NCIT:C180877 Metastatic Glioma 6 184068 -NCIT:C170979 Metastatic Glioblastoma 7 184069 -NCIT:C170978 Advanced Glioblastoma 8 184070 -NCIT:C170980 Locally Advanced Glioblastoma 8 184071 -NCIT:C178558 Metastatic Low Grade Glioma 7 184072 -NCIT:C178559 Metastatic Low Grade Astrocytoma 8 184073 -NCIT:C180876 Locally Advanced Glioma 7 184074 -NCIT:C170980 Locally Advanced Glioblastoma 8 184075 -NCIT:C5274 Metastatic Meningioma 6 184076 -NCIT:C5400 Central Nervous System Embryonal Tumor, Not Otherwise Specified with Leptomeningeal Spread 6 184077 -NCIT:C168669 Metastatic Malignant Neoplasm in the Digestive System 5 184078 -NCIT:C168666 Gastrointestinal Carcinomatosis 6 184079 -NCIT:C4581 Metastatic Malignant Neoplasm in the Large Intestine 6 184080 -NCIT:C7426 Metastatic Malignant Neoplasm in the Rectum 7 184081 -NCIT:C188076 Metastatic Carcinoma in the Rectum 8 184082 -NCIT:C8411 Metastatic Malignant Neoplasm in the Colon 7 184083 -NCIT:C4758 Metastatic Malignant Neoplasm in the Liver 6 184084 -NCIT:C150130 Uveal Melanoma Metastatic in the Liver 7 184085 -NCIT:C185152 Extramedullary Disease in Plasma Cell Myeloma Involving the Liver 7 184086 -NCIT:C96767 Metastatic Carcinoma in the Liver 7 184087 -NCIT:C157366 Colorectal Carcinoma Metastatic in the Liver 8 184088 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 9 184089 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 9 184090 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 9 184091 -NCIT:C36302 Breast Carcinoma Metastatic in the Liver 8 184092 -NCIT:C36306 Lung Carcinoma Metastatic in the Liver 8 184093 -NCIT:C7460 Metastatic Malignant Neoplasm in the Anus 6 184094 -NCIT:C7479 Metastatic Malignant Neoplasm in the Esophagus 6 184095 -NCIT:C7482 Metastatic Malignant Neoplasm in the Gallbladder 6 184096 -NCIT:C7524 Metastatic Malignant Neoplasm in the Small Intestine 6 184097 -NCIT:C8543 Metastatic Malignant Neoplasm in the Pancreas 6 184098 -NCIT:C188077 Metastatic Carcinoma in the Pancreas 7 184099 -NCIT:C95903 Metastatic Malignant Neoplasm in the Stomach 6 184100 -NCIT:C96953 Metastatic Malignant Neoplasm in the Extrahepatic Bile Ducts 6 184101 -NCIT:C170467 Metastatic Malignant Head and Neck Neoplasm 5 184102 -NCIT:C126465 Metastatic Head and Neck Carcinoma 6 184103 -NCIT:C129861 Advanced Head and Neck Carcinoma 7 184104 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 8 184105 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 184106 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 184107 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 184108 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 184109 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 184110 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 184111 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 184112 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 8 184113 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 184114 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 184115 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 184116 -NCIT:C170784 Advanced Pharyngeal Carcinoma 8 184117 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 9 184118 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 184119 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 184120 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 184121 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 184122 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 184123 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 9 184124 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 184125 -NCIT:C177723 Advanced Salivary Gland Carcinoma 8 184126 -NCIT:C133193 Metastatic Thyroid Gland Carcinoma 7 184127 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 8 184128 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 184129 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 184130 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 8 184131 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 184132 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 184133 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 184134 -NCIT:C170831 Metastatic Thyroid Gland Anaplastic Carcinoma 8 184135 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 184136 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 184137 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 8 184138 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 184139 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 9 184140 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 184141 -NCIT:C173979 Metastatic Differentiated Thyroid Gland Carcinoma 8 184142 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 9 184143 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 10 184144 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 11 184145 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 9 184146 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 184147 -NCIT:C174046 Metastatic Poorly Differentiated Thyroid Gland Carcinoma 8 184148 -NCIT:C148153 Metastatic Head and Neck Squamous Cell Carcinoma 7 184149 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 8 184150 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 184151 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 184152 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 184153 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 184154 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 184155 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 184156 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 184157 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 184158 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 184159 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 184160 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 8 184161 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 184162 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 184163 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 184164 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 8 184165 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 184166 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 184167 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 184168 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 184169 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 184170 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 184171 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 184172 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 184173 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 184174 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 184175 -NCIT:C162882 Metastatic Sinonasal Squamous Cell Carcinoma 8 184176 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 184177 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 184178 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 184179 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 9 184180 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 184181 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 9 184182 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 184183 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 184184 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 184185 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 184186 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 8 184187 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 8 184188 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 184189 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 184190 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 184191 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 184192 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 184193 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 184194 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 184195 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 184196 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 184197 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 184198 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 184199 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 184200 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 184201 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 184202 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 184203 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 184204 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 184205 -NCIT:C153213 Locally Advanced Head and Neck Carcinoma 7 184206 -NCIT:C158464 Locally Advanced Salivary Gland Carcinoma 8 184207 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 8 184208 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 184209 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 184210 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 184211 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 184212 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 184213 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 184214 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 184215 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 184216 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 184217 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 184218 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 184219 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 8 184220 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 184221 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 8 184222 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 184223 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 9 184224 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 184225 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 184226 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 9 184227 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 184228 -NCIT:C165562 Locally Advanced Lip and Oral Cavity Carcinoma 8 184229 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 9 184230 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 10 184231 -NCIT:C165563 Locally Advanced Paranasal Sinus Carcinoma 8 184232 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 184233 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 8 184234 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 184235 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 9 184236 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 184237 -NCIT:C156080 Metastatic Pharyngeal Carcinoma 7 184238 -NCIT:C156079 Metastatic Nasopharyngeal Carcinoma 8 184239 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 184240 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 184241 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 184242 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 184243 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 184244 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 184245 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 9 184246 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 184247 -NCIT:C156081 Metastatic Hypopharyngeal Carcinoma 8 184248 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 184249 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 184250 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 184251 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 9 184252 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 184253 -NCIT:C156082 Metastatic Oropharyngeal Carcinoma 8 184254 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 184255 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 184256 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 184257 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 184258 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 9 184259 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 184260 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 184261 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 9 184262 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 184263 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 8 184264 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 184265 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 9 184266 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 184267 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 184268 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 9 184269 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 184270 -NCIT:C170784 Advanced Pharyngeal Carcinoma 8 184271 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 9 184272 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 184273 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 184274 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 184275 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 184276 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 184277 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 9 184278 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 184279 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 8 184280 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 184281 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 184282 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 184283 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 184284 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 184285 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 184286 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 184287 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 184288 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 184289 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 184290 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 184291 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 184292 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 184293 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 184294 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 184295 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 184296 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 184297 -NCIT:C156085 Metastatic Laryngeal Carcinoma 7 184298 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 8 184299 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 184300 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 184301 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 8 184302 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 184303 -NCIT:C156086 Metastatic Lip and Oral Cavity Carcinoma 7 184304 -NCIT:C156087 Metastatic Oral Cavity Carcinoma 8 184305 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 9 184306 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 10 184307 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 10 184308 -NCIT:C156089 Metastatic Oral Cavity Adenoid Cystic Carcinoma 9 184309 -NCIT:C156090 Metastatic Oral Cavity Mucoepidermoid Carcinoma 9 184310 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 9 184311 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 10 184312 -NCIT:C156088 Metastatic Lip Carcinoma 8 184313 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 9 184314 -NCIT:C165562 Locally Advanced Lip and Oral Cavity Carcinoma 8 184315 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 9 184316 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 10 184317 -NCIT:C158463 Metastatic Salivary Gland Carcinoma 7 184318 -NCIT:C158464 Locally Advanced Salivary Gland Carcinoma 8 184319 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 8 184320 -NCIT:C177723 Advanced Salivary Gland Carcinoma 8 184321 -NCIT:C5899 Stage IV Major Salivary Gland Carcinoma with Metastasis 8 184322 -NCIT:C9044 Metastatic Parathyroid Gland Carcinoma 7 184323 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 184324 -NCIT:C170469 Advanced Malignant Head and Neck Neoplasm 6 184325 -NCIT:C129861 Advanced Head and Neck Carcinoma 7 184326 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 8 184327 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 184328 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 184329 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 184330 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 184331 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 184332 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 184333 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 184334 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 8 184335 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 184336 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 184337 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 184338 -NCIT:C170784 Advanced Pharyngeal Carcinoma 8 184339 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 9 184340 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 184341 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 184342 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 184343 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 184344 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 184345 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 9 184346 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 184347 -NCIT:C177723 Advanced Salivary Gland Carcinoma 8 184348 -NCIT:C170470 Locally Advanced Malignant Head and Neck Neoplasm 6 184349 -NCIT:C153213 Locally Advanced Head and Neck Carcinoma 7 184350 -NCIT:C158464 Locally Advanced Salivary Gland Carcinoma 8 184351 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 8 184352 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 184353 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 184354 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 184355 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 184356 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 184357 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 184358 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 184359 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 184360 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 184361 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 184362 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 184363 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 8 184364 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 184365 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 8 184366 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 184367 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 9 184368 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 184369 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 184370 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 9 184371 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 184372 -NCIT:C165562 Locally Advanced Lip and Oral Cavity Carcinoma 8 184373 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 9 184374 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 10 184375 -NCIT:C165563 Locally Advanced Paranasal Sinus Carcinoma 8 184376 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 184377 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 8 184378 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 184379 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 9 184380 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 184381 -NCIT:C3574 Metastatic Carotid Body Paraganglioma 6 184382 -NCIT:C4623 Metastatic Jugulotympanic Paraganglioma 6 184383 -NCIT:C170728 Metastatic Malignant Breast Neoplasm 5 184384 -NCIT:C153238 Metastatic Breast Carcinoma 6 184385 -NCIT:C133501 Breast Carcinoma Metastatic in the Central Nervous System 7 184386 -NCIT:C36301 Breast Carcinoma Metastatic in the Brain 8 184387 -NCIT:C153227 Breast Carcinoma Metastatic in the Lymph Nodes 7 184388 -NCIT:C160920 Locally Advanced Breast Carcinoma 7 184389 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 8 184390 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 184391 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 184392 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 184393 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 184394 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 8 184395 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 184396 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 184397 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 184398 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 184399 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 184400 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 184401 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 184402 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 184403 -NCIT:C161830 Metastatic BRCA-Associated Breast Carcinoma 7 184404 -NCIT:C162648 Advanced Breast Carcinoma 7 184405 -NCIT:C165700 Advanced Breast Adenocarcinoma 8 184406 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 184407 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 184408 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 184409 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 184410 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 184411 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 184412 -NCIT:C165698 Metastatic Breast Adenocarcinoma 7 184413 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 8 184414 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 184415 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 184416 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 184417 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 184418 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 184419 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 184420 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 184421 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 184422 -NCIT:C165700 Advanced Breast Adenocarcinoma 8 184423 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 184424 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 184425 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 184426 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 184427 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 184428 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 184429 -NCIT:C168777 Metastatic HER2-Negative Breast Carcinoma 8 184430 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 184431 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 184432 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 184433 -NCIT:C179554 Metastatic HER2-Low Breast Carcinoma 8 184434 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 184435 -NCIT:C180924 Metastatic HER2-Positive Breast Carcinoma 8 184436 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 184437 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 184438 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 184439 -NCIT:C181787 Metastatic Breast Inflammatory Carcinoma 8 184440 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 9 184441 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 9 184442 -NCIT:C9246 Stage IIIB Breast Inflammatory Carcinoma 9 184443 -NCIT:C185880 Metastatic Hormone Receptor-Positive Breast Carcinoma 8 184444 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 184445 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 184446 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 184447 -NCIT:C190852 Metastatic Androgen Receptor-Positive Breast Carcinoma 9 184448 -NCIT:C190856 Metastatic Estrogen Receptor-Positive Breast Carcinoma 9 184449 -NCIT:C190677 Metastatic Hormone Receptor-Negative Breast Carcinoma 8 184450 -NCIT:C153348 Metastatic Triple-Negative Breast Carcinoma 9 184451 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 184452 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 10 184453 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 11 184454 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 10 184455 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 184456 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 184457 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 8 184458 -NCIT:C76326 Metastatic Breast Ductal Carcinoma 8 184459 -NCIT:C76328 Metastatic Breast Lobular Carcinoma 8 184460 -NCIT:C179515 Oligometastatic Breast Carcinoma 7 184461 -NCIT:C28311 Metastatic Breast Carcinoma in the Skin 7 184462 -NCIT:C36300 Breast Carcinoma Metastatic in the Lung 7 184463 -NCIT:C36302 Breast Carcinoma Metastatic in the Liver 7 184464 -NCIT:C36303 Breast Carcinoma Metastatic in the Bone 7 184465 -NCIT:C153226 Breast Carcinoma Metastatic in the Spine 8 184466 -NCIT:C5178 Metastatic Breast Squamous Cell Carcinoma 7 184467 -NCIT:C156493 Metastatic Breast Neuroendocrine Neoplasm 6 184468 -NCIT:C5171 Metastatic Breast Neuroendocrine Tumor G1 7 184469 -NCIT:C170811 Metastatic Malignant Skin Neoplasm 5 184470 -NCIT:C143013 Metastatic Skin Squamous Cell Carcinoma 6 184471 -NCIT:C153182 Locally Advanced Skin Squamous Cell Carcinoma 7 184472 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 184473 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 7 184474 -NCIT:C168542 Advanced Skin Squamous Cell Carcinoma 7 184475 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 184476 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 184477 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 184478 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 184479 -NCIT:C156072 Metastatic Cutaneous Melanoma 6 184480 -NCIT:C171285 Locally Advanced Cutaneous Melanoma 7 184481 -NCIT:C171572 Advanced Cutaneous Melanoma 7 184482 -NCIT:C155311 Advanced Cutaneous Melanoma of the Extremity 8 184483 -NCIT:C179427 Metastatic Acral Lentiginous Melanoma 7 184484 -NCIT:C162572 Metastatic Merkel Cell Carcinoma 6 184485 -NCIT:C165300 Advanced Merkel Cell Carcinoma 7 184486 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 7 184487 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 7 184488 -NCIT:C170812 Advanced Malignant Skin Neoplasm 6 184489 -NCIT:C165300 Advanced Merkel Cell Carcinoma 7 184490 -NCIT:C168542 Advanced Skin Squamous Cell Carcinoma 7 184491 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 184492 -NCIT:C171572 Advanced Cutaneous Melanoma 7 184493 -NCIT:C155311 Advanced Cutaneous Melanoma of the Extremity 8 184494 -NCIT:C172442 Advanced Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 7 184495 -NCIT:C171284 Locally Advanced Malignant Skin Neoplasm 6 184496 -NCIT:C153182 Locally Advanced Skin Squamous Cell Carcinoma 7 184497 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 184498 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 7 184499 -NCIT:C171285 Locally Advanced Cutaneous Melanoma 7 184500 -NCIT:C180374 Early Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 7 184501 -NCIT:C170828 Metastatic Rhabdoid Tumor 5 184502 -NCIT:C174568 Advanced Rhabdoid Tumor 6 184503 -NCIT:C170924 Metastatic Carcinosarcoma 5 184504 -NCIT:C170928 Advanced Carcinosarcoma 6 184505 -NCIT:C170930 Advanced Malignant Mixed Mesodermal (Mullerian) Tumor 7 184506 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 8 184507 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 8 184508 -NCIT:C170929 Metastatic Malignant Mixed Mesodermal (Mullerian) Tumor 6 184509 -NCIT:C170930 Advanced Malignant Mixed Mesodermal (Mullerian) Tumor 7 184510 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 8 184511 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 8 184512 -NCIT:C170931 Metastatic Uterine Corpus Carcinosarcoma 7 184513 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 8 184514 -NCIT:C170933 Metastatic Ovarian Carcinosarcoma 7 184515 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 8 184516 -NCIT:C170943 Metastatic Malignant Neoplasm in the Urinary System 5 184517 -NCIT:C7544 Metastatic Malignant Neoplasm in the Ureter 6 184518 -NCIT:C7549 Metastatic Malignant Neoplasm in the Kidney 6 184519 -NCIT:C185153 Extramedullary Disease in Plasma Cell Myeloma Involving the Kidney 7 184520 -NCIT:C7573 Metastatic Malignant Neoplasm in the Urethra 6 184521 -NCIT:C7650 Metastatic Malignant Neoplasm in the Bladder 6 184522 -NCIT:C175662 Metastatic Malignant Glomus Tumor 5 184523 -NCIT:C175663 Locally Advanced Malignant Glomus Tumor 6 184524 -NCIT:C176862 Metastatic Malignant Thoracic Neoplasm 5 184525 -NCIT:C148128 Metastatic Thymic Carcinoma 6 184526 -NCIT:C148126 Locally Advanced Thymic Carcinoma 7 184527 -NCIT:C159903 Advanced Thymic Carcinoma 7 184528 -NCIT:C153202 Metastatic Lung Carcinoma 6 184529 -NCIT:C133503 Lung Carcinoma Metastatic in the Central Nervous System 7 184530 -NCIT:C36304 Lung Carcinoma Metastatic in the Brain 8 184531 -NCIT:C153203 Advanced Lung Carcinoma 7 184532 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 184533 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 8 184534 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 184535 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 184536 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 184537 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 184538 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 184539 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 184540 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 184541 -NCIT:C180922 Advanced Bronchogenic Carcinoma 8 184542 -NCIT:C153206 Locally Advanced Lung Carcinoma 7 184543 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 8 184544 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 184545 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 184546 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 184547 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 184548 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 184549 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 184550 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 184551 -NCIT:C156092 Metastatic Lung Squamous Cell Carcinoma 7 184552 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 184553 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 184554 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 184555 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 184556 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 184557 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 184558 -NCIT:C156094 Metastatic Lung Non-Small Cell Carcinoma 7 184559 -NCIT:C128798 Metastatic Lung Non-Squamous Non-Small Cell Carcinoma 8 184560 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 184561 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 184562 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 184563 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 184564 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 184565 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 184566 -NCIT:C155908 Metastatic Lung Adenocarcinoma 9 184567 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 184568 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 184569 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 9 184570 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 184571 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 184572 -NCIT:C156093 Metastatic Lung Adenosquamous Carcinoma 8 184573 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 184574 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 184575 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 184576 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 184577 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 184578 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 184579 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 8 184580 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 184581 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 184582 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 184583 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 184584 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 184585 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 184586 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 8 184587 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 184588 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 184589 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 184590 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 184591 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 184592 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 7 184593 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 184594 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 184595 -NCIT:C187195 Oligometastatic Lung Carcinoma 7 184596 -NCIT:C36305 Lung Carcinoma Metastatic in the Bone 7 184597 -NCIT:C36306 Lung Carcinoma Metastatic in the Liver 7 184598 -NCIT:C176863 Advanced Malignant Thoracic Neoplasm 6 184599 -NCIT:C153203 Advanced Lung Carcinoma 7 184600 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 184601 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 8 184602 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 184603 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 184604 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 184605 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 184606 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 184607 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 184608 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 184609 -NCIT:C180922 Advanced Bronchogenic Carcinoma 8 184610 -NCIT:C159903 Advanced Thymic Carcinoma 7 184611 -NCIT:C165446 Advanced Lung Neuroendocrine Neoplasm 7 184612 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 184613 -NCIT:C177245 Advanced Lung Carcinoid Tumor 8 184614 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 184615 -NCIT:C8703 Advanced Pericardial Malignant Mesothelioma 7 184616 -NCIT:C8706 Advanced Pleural Malignant Mesothelioma 7 184617 -NCIT:C6413 Metastatic Intrathoracic Paravertebral Paraganglioma 6 184618 -NCIT:C183304 Metastatic Malignant Abdominal Neoplasm 5 184619 -NCIT:C183305 Advanced Malignant Abdominal Neoplasm 6 184620 -NCIT:C27292 Metastatic Ewing Sarcoma/Peripheral Primitive Neuroectodermal Tumor 5 184621 -NCIT:C36074 Metastatic Peripheral Primitive Neuroectodermal Tumor of Bone 6 184622 -NCIT:C7807 Metastatic Ewing Sarcoma 6 184623 -NCIT:C164080 Locally Advanced Ewing Sarcoma 7 184624 -NCIT:C6621 Metastatic Bone Ewing Sarcoma 7 184625 -NCIT:C8801 Metastatic Extraskeletal Ewing Sarcoma 7 184626 -NCIT:C27470 Disseminated Malignant Neoplasm 5 184627 -NCIT:C27469 Disseminated Carcinoma 6 184628 -NCIT:C27185 Disseminated Adenocarcinoma 7 184629 -NCIT:C4829 Disseminated Squamous Cell Carcinoma 7 184630 -NCIT:C3482 Metastatic Carcinoma 5 184631 -NCIT:C126465 Metastatic Head and Neck Carcinoma 6 184632 -NCIT:C129861 Advanced Head and Neck Carcinoma 7 184633 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 8 184634 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 184635 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 184636 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 184637 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 184638 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 184639 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 184640 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 184641 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 8 184642 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 184643 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 184644 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 184645 -NCIT:C170784 Advanced Pharyngeal Carcinoma 8 184646 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 9 184647 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 184648 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 184649 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 184650 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 184651 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 184652 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 9 184653 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 184654 -NCIT:C177723 Advanced Salivary Gland Carcinoma 8 184655 -NCIT:C133193 Metastatic Thyroid Gland Carcinoma 7 184656 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 8 184657 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 184658 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 184659 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 8 184660 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 184661 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 184662 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 184663 -NCIT:C170831 Metastatic Thyroid Gland Anaplastic Carcinoma 8 184664 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 184665 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 184666 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 8 184667 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 184668 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 9 184669 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 184670 -NCIT:C173979 Metastatic Differentiated Thyroid Gland Carcinoma 8 184671 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 9 184672 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 10 184673 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 11 184674 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 9 184675 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 184676 -NCIT:C174046 Metastatic Poorly Differentiated Thyroid Gland Carcinoma 8 184677 -NCIT:C148153 Metastatic Head and Neck Squamous Cell Carcinoma 7 184678 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 8 184679 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 184680 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 184681 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 184682 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 184683 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 184684 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 184685 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 184686 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 184687 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 184688 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 184689 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 8 184690 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 184691 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 184692 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 184693 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 8 184694 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 184695 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 184696 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 184697 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 184698 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 184699 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 184700 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 184701 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 184702 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 184703 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 184704 -NCIT:C162882 Metastatic Sinonasal Squamous Cell Carcinoma 8 184705 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 184706 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 184707 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 184708 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 9 184709 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 184710 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 9 184711 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 184712 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 184713 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 184714 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 184715 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 8 184716 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 8 184717 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 184718 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 184719 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 184720 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 184721 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 184722 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 184723 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 184724 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 184725 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 184726 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 184727 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 184728 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 184729 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 184730 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 184731 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 184732 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 184733 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 184734 -NCIT:C153213 Locally Advanced Head and Neck Carcinoma 7 184735 -NCIT:C158464 Locally Advanced Salivary Gland Carcinoma 8 184736 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 8 184737 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 184738 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 184739 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 184740 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 184741 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 184742 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 184743 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 184744 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 184745 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 184746 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 184747 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 184748 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 8 184749 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 184750 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 8 184751 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 184752 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 9 184753 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 184754 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 184755 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 9 184756 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 184757 -NCIT:C165562 Locally Advanced Lip and Oral Cavity Carcinoma 8 184758 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 9 184759 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 10 184760 -NCIT:C165563 Locally Advanced Paranasal Sinus Carcinoma 8 184761 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 184762 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 8 184763 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 184764 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 9 184765 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 184766 -NCIT:C156080 Metastatic Pharyngeal Carcinoma 7 184767 -NCIT:C156079 Metastatic Nasopharyngeal Carcinoma 8 184768 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 184769 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 184770 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 184771 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 184772 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 184773 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 184774 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 9 184775 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 184776 -NCIT:C156081 Metastatic Hypopharyngeal Carcinoma 8 184777 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 184778 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 184779 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 184780 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 9 184781 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 184782 -NCIT:C156082 Metastatic Oropharyngeal Carcinoma 8 184783 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 184784 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 184785 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 184786 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 184787 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 9 184788 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 184789 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 184790 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 9 184791 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 184792 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 8 184793 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 184794 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 9 184795 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 184796 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 184797 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 9 184798 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 184799 -NCIT:C170784 Advanced Pharyngeal Carcinoma 8 184800 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 9 184801 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 184802 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 184803 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 184804 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 184805 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 184806 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 9 184807 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 184808 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 8 184809 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 184810 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 184811 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 184812 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 184813 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 184814 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 184815 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 184816 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 184817 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 184818 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 184819 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 184820 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 184821 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 184822 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 184823 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 184824 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 184825 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 184826 -NCIT:C156085 Metastatic Laryngeal Carcinoma 7 184827 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 8 184828 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 184829 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 184830 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 8 184831 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 184832 -NCIT:C156086 Metastatic Lip and Oral Cavity Carcinoma 7 184833 -NCIT:C156087 Metastatic Oral Cavity Carcinoma 8 184834 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 9 184835 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 10 184836 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 10 184837 -NCIT:C156089 Metastatic Oral Cavity Adenoid Cystic Carcinoma 9 184838 -NCIT:C156090 Metastatic Oral Cavity Mucoepidermoid Carcinoma 9 184839 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 9 184840 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 10 184841 -NCIT:C156088 Metastatic Lip Carcinoma 8 184842 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 9 184843 -NCIT:C165562 Locally Advanced Lip and Oral Cavity Carcinoma 8 184844 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 9 184845 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 10 184846 -NCIT:C158463 Metastatic Salivary Gland Carcinoma 7 184847 -NCIT:C158464 Locally Advanced Salivary Gland Carcinoma 8 184848 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 8 184849 -NCIT:C177723 Advanced Salivary Gland Carcinoma 8 184850 -NCIT:C5899 Stage IV Major Salivary Gland Carcinoma with Metastasis 8 184851 -NCIT:C9044 Metastatic Parathyroid Gland Carcinoma 7 184852 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 184853 -NCIT:C129828 Metastatic Transitional Cell Carcinoma 6 184854 -NCIT:C126109 Metastatic Urothelial Carcinoma 7 184855 -NCIT:C148493 Advanced Urothelial Carcinoma 8 184856 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 184857 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 184858 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 184859 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 184860 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 184861 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 184862 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 184863 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 184864 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 184865 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 184866 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 184867 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 184868 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 184869 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 184870 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 184871 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 184872 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 184873 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 184874 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 184875 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 8 184876 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 184877 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 184878 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 184879 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 184880 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 184881 -NCIT:C191692 Metastatic Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 184882 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 184883 -NCIT:C191693 Metastatic Giant Cell Urothelial Carcinoma 8 184884 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 184885 -NCIT:C191694 Metastatic Lipid-Rich Urothelial Carcinoma 8 184886 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 184887 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 8 184888 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 184889 -NCIT:C191696 Metastatic Nested Urothelial Carcinoma 8 184890 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 184891 -NCIT:C191697 Metastatic Plasmacytoid Urothelial Carcinoma 8 184892 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 184893 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 8 184894 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 184895 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 8 184896 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 184897 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 184898 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 184899 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 9 184900 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 184901 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 184902 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 184903 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 184904 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 184905 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 184906 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 184907 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 184908 -NCIT:C172091 Advanced Transitional Cell Carcinoma 7 184909 -NCIT:C148493 Advanced Urothelial Carcinoma 8 184910 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 184911 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 184912 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 184913 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 184914 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 184915 -NCIT:C175493 Locally Advanced Transitional Cell Carcinoma 7 184916 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 8 184917 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 184918 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 184919 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 184920 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 184921 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 184922 -NCIT:C133839 Metastatic Digestive System Carcinoma 6 184923 -NCIT:C150577 Metastatic Gastroesophageal Junction Adenocarcinoma 7 184924 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 8 184925 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 8 184926 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 9 184927 -NCIT:C151904 Refractory Metastatic Digestive System Carcinoma 7 184928 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 8 184929 -NCIT:C151905 Recurrent Metastatic Digestive System Carcinoma 7 184930 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 8 184931 -NCIT:C153320 Metastatic Gastric Carcinoma 7 184932 -NCIT:C153319 Metastatic Gastric Adenocarcinoma 8 184933 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 9 184934 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 10 184935 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 10 184936 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 9 184937 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 10 184938 -NCIT:C165630 Metastatic Proximal Gastric Adenocarcinoma 9 184939 -NCIT:C166121 Oligometastatic Gastric Adenocarcinoma 9 184940 -NCIT:C166255 Advanced Gastric Adenocarcinoma 9 184941 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 10 184942 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 8 184943 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 184944 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 184945 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 184946 -NCIT:C162772 Locally Advanced Gastric Carcinoma 8 184947 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 9 184948 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 10 184949 -NCIT:C165299 Advanced Gastric Carcinoma 8 184950 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 184951 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 184952 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 184953 -NCIT:C166255 Advanced Gastric Adenocarcinoma 9 184954 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 10 184955 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 8 184956 -NCIT:C153358 Locally Advanced Digestive System Carcinoma 7 184957 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 8 184958 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 184959 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 184960 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 184961 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 8 184962 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 9 184963 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 8 184964 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 184965 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 184966 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 184967 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 184968 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 184969 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 184970 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 184971 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 184972 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 184973 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 184974 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 184975 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 184976 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 184977 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 184978 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 184979 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 184980 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 184981 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 184982 -NCIT:C162772 Locally Advanced Gastric Carcinoma 8 184983 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 9 184984 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 10 184985 -NCIT:C168976 Locally Advanced Esophageal Carcinoma 8 184986 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 9 184987 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 10 184988 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 9 184989 -NCIT:C168977 Locally Advanced Anal Carcinoma 8 184990 -NCIT:C170459 Locally Advanced Pancreatobiliary Carcinoma 8 184991 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 9 184992 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 10 184993 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 11 184994 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 184995 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 12 184996 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 11 184997 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 184998 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 10 184999 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 11 185000 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 9 185001 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 10 185002 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 11 185003 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 11 185004 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 9 185005 -NCIT:C171298 Locally Advanced Liver Carcinoma 8 185006 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 9 185007 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 185008 -NCIT:C154088 Metastatic Liver Carcinoma 7 185009 -NCIT:C154091 Metastatic Hepatocellular Carcinoma 8 185010 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 9 185011 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 10 185012 -NCIT:C167336 Advanced Hepatocellular Carcinoma 9 185013 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 10 185014 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 10 185015 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 9 185016 -NCIT:C171298 Locally Advanced Liver Carcinoma 8 185017 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 9 185018 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 185019 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 8 185020 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 185021 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 9 185022 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 7 185023 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 8 185024 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 185025 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 185026 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 185027 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 8 185028 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 185029 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 185030 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 185031 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 185032 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 185033 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 185034 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 185035 -NCIT:C156073 Metastatic Esophageal Carcinoma 7 185036 -NCIT:C156074 Metastatic Esophageal Adenocarcinoma 8 185037 -NCIT:C166120 Oligometastatic Esophageal Adenocarcinoma 9 185038 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 9 185039 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 9 185040 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 10 185041 -NCIT:C172249 Metastatic Distal Esophagus Adenocarcinoma 9 185042 -NCIT:C156075 Metastatic Esophageal Squamous Cell Carcinoma 8 185043 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 9 185044 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 9 185045 -NCIT:C160599 Advanced Esophageal Carcinoma 8 185046 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 9 185047 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 9 185048 -NCIT:C168976 Locally Advanced Esophageal Carcinoma 8 185049 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 9 185050 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 10 185051 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 9 185052 -NCIT:C156096 Metastatic Colorectal Carcinoma 7 185053 -NCIT:C142867 Metastatic Microsatellite Stable Colorectal Carcinoma 8 185054 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 185055 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 185056 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 185057 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 185058 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 185059 -NCIT:C153224 Colorectal Carcinoma Metastatic in the Lung 8 185060 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 9 185061 -NCIT:C156097 Metastatic Colon Carcinoma 8 185062 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 185063 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 185064 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 185065 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 185066 -NCIT:C167238 Advanced Colon Carcinoma 9 185067 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 185068 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 185069 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 185070 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 185071 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 185072 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 185073 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 185074 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 9 185075 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 9 185076 -NCIT:C156098 Metastatic Rectal Carcinoma 8 185077 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 9 185078 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 185079 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 185080 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 185081 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 185082 -NCIT:C170777 Advanced Rectal Carcinoma 9 185083 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 185084 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 185085 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 185086 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 185087 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 185088 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 185089 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 9 185090 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 185091 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 185092 -NCIT:C157366 Colorectal Carcinoma Metastatic in the Liver 8 185093 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 9 185094 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 9 185095 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 9 185096 -NCIT:C161048 Metastatic Colorectal Adenocarcinoma 8 185097 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 9 185098 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 185099 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 185100 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 185101 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 185102 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 185103 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 185104 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 185105 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 185106 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 9 185107 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 185108 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 185109 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 185110 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 185111 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 185112 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 185113 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 185114 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 185115 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 185116 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 185117 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 185118 -NCIT:C162475 Advanced Colorectal Carcinoma 8 185119 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 185120 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 185121 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 185122 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 185123 -NCIT:C167238 Advanced Colon Carcinoma 9 185124 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 185125 -NCIT:C170777 Advanced Rectal Carcinoma 9 185126 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 185127 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 185128 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 8 185129 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 185130 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 185131 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 185132 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 185133 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 185134 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 185135 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 185136 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 185137 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 185138 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 185139 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 185140 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 185141 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 185142 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 185143 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 185144 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 185145 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 185146 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 185147 -NCIT:C185165 Oligometastatic Colorectal Carcinoma 8 185148 -NCIT:C156746 Advanced Digestive System Carcinoma 7 185149 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 185150 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 185151 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 185152 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 8 185153 -NCIT:C160599 Advanced Esophageal Carcinoma 8 185154 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 9 185155 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 9 185156 -NCIT:C162475 Advanced Colorectal Carcinoma 8 185157 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 185158 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 185159 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 185160 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 185161 -NCIT:C167238 Advanced Colon Carcinoma 9 185162 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 185163 -NCIT:C170777 Advanced Rectal Carcinoma 9 185164 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 185165 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 185166 -NCIT:C165299 Advanced Gastric Carcinoma 8 185167 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 185168 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 185169 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 185170 -NCIT:C166255 Advanced Gastric Adenocarcinoma 9 185171 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 10 185172 -NCIT:C167336 Advanced Hepatocellular Carcinoma 8 185173 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 185174 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 185175 -NCIT:C170515 Advanced Anal Carcinoma 8 185176 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 185177 -NCIT:C171330 Advanced Pancreatobiliary Carcinoma 8 185178 -NCIT:C165452 Advanced Pancreatic Carcinoma 9 185179 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 10 185180 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 11 185181 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 9 185182 -NCIT:C171331 Advanced Biliary Tract Carcinoma 9 185183 -NCIT:C142870 Advanced Bile Duct Carcinoma 10 185184 -NCIT:C162752 Advanced Cholangiocarcinoma 11 185185 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 185186 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 185187 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 185188 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 11 185189 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 185190 -NCIT:C162755 Advanced Gallbladder Carcinoma 10 185191 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 185192 -NCIT:C162275 Metastatic Appendix Carcinoma 7 185193 -NCIT:C182104 Metastatic Appendix Adenocarcinoma 8 185194 -NCIT:C162274 Metastatic Appendix Mucinous Adenocarcinoma 9 185195 -NCIT:C182105 Advanced Appendix Adenocarcinoma 9 185196 -NCIT:C163967 Metastatic Digestive System Mixed Adenoneuroendocrine Carcinoma 7 185197 -NCIT:C170458 Metastatic Pancreatobiliary Carcinoma 7 185198 -NCIT:C156069 Metastatic Pancreatic Carcinoma 8 185199 -NCIT:C165452 Advanced Pancreatic Carcinoma 9 185200 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 10 185201 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 11 185202 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 9 185203 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 10 185204 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 11 185205 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 11 185206 -NCIT:C190770 Metastatic Pancreatic Adenosquamous Carcinoma 9 185207 -NCIT:C190771 Metastatic Pancreatic Squamous Cell Carcinoma 9 185208 -NCIT:C8933 Metastatic Pancreatic Adenocarcinoma 9 185209 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 10 185210 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 11 185211 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 11 185212 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 10 185213 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 11 185214 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 11 185215 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 11 185216 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 10 185217 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 11 185218 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 10 185219 -NCIT:C162751 Metastatic Biliary Tract Carcinoma 8 185220 -NCIT:C142869 Metastatic Bile Duct Carcinoma 9 185221 -NCIT:C142870 Advanced Bile Duct Carcinoma 10 185222 -NCIT:C162752 Advanced Cholangiocarcinoma 11 185223 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 185224 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 185225 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 185226 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 11 185227 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 185228 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 10 185229 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 11 185230 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 185231 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 12 185232 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 11 185233 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 185234 -NCIT:C157623 Metastatic Cholangiocarcinoma 10 185235 -NCIT:C162752 Advanced Cholangiocarcinoma 11 185236 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 185237 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 185238 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 185239 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 11 185240 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 185241 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 12 185242 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 11 185243 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 185244 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 11 185245 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 185246 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 185247 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 11 185248 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 185249 -NCIT:C185071 Metastatic Extrahepatic Bile Duct Carcinoma 10 185250 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 11 185251 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 12 185252 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 13 185253 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 185254 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 11 185255 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 185256 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 11 185257 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 185258 -NCIT:C162754 Metastatic Gallbladder Carcinoma 9 185259 -NCIT:C162755 Advanced Gallbladder Carcinoma 10 185260 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 10 185261 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 11 185262 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 9 185263 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 10 185264 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 11 185265 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 185266 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 12 185267 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 11 185268 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 185269 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 10 185270 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 11 185271 -NCIT:C171331 Advanced Biliary Tract Carcinoma 9 185272 -NCIT:C142870 Advanced Bile Duct Carcinoma 10 185273 -NCIT:C162752 Advanced Cholangiocarcinoma 11 185274 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 185275 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 185276 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 185277 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 11 185278 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 185279 -NCIT:C162755 Advanced Gallbladder Carcinoma 10 185280 -NCIT:C170459 Locally Advanced Pancreatobiliary Carcinoma 8 185281 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 9 185282 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 10 185283 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 11 185284 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 185285 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 12 185286 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 11 185287 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 185288 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 10 185289 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 11 185290 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 9 185291 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 10 185292 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 11 185293 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 11 185294 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 9 185295 -NCIT:C171326 Metastatic Ampulla of Vater Carcinoma 8 185296 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 9 185297 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 9 185298 -NCIT:C171330 Advanced Pancreatobiliary Carcinoma 8 185299 -NCIT:C165452 Advanced Pancreatic Carcinoma 9 185300 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 10 185301 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 11 185302 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 9 185303 -NCIT:C171331 Advanced Biliary Tract Carcinoma 9 185304 -NCIT:C142870 Advanced Bile Duct Carcinoma 10 185305 -NCIT:C162752 Advanced Cholangiocarcinoma 11 185306 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 185307 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 185308 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 185309 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 11 185310 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 185311 -NCIT:C162755 Advanced Gallbladder Carcinoma 10 185312 -NCIT:C170514 Metastatic Anal Carcinoma 7 185313 -NCIT:C168977 Locally Advanced Anal Carcinoma 8 185314 -NCIT:C169103 Metastatic Anal Squamous Cell Carcinoma 8 185315 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 9 185316 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 10 185317 -NCIT:C170515 Advanced Anal Carcinoma 8 185318 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 185319 -NCIT:C5612 Metastatic Anal Canal Carcinoma 8 185320 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 9 185321 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 10 185322 -NCIT:C8637 Metastatic Small Intestinal Carcinoma 7 185323 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 8 185324 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 185325 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 185326 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 185327 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 185328 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 185329 -NCIT:C8934 Metastatic Small Intestinal Adenocarcinoma 8 185330 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 185331 -NCIT:C146893 Metastatic Genitourinary System Carcinoma 6 185332 -NCIT:C126109 Metastatic Urothelial Carcinoma 7 185333 -NCIT:C148493 Advanced Urothelial Carcinoma 8 185334 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 185335 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 185336 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 185337 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 185338 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 185339 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 185340 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 185341 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 185342 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 185343 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 185344 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 185345 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 185346 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 185347 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 185348 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 185349 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 185350 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 185351 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 185352 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 185353 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 8 185354 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 185355 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 185356 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 185357 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 185358 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 185359 -NCIT:C191692 Metastatic Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 185360 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 185361 -NCIT:C191693 Metastatic Giant Cell Urothelial Carcinoma 8 185362 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 185363 -NCIT:C191694 Metastatic Lipid-Rich Urothelial Carcinoma 8 185364 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 185365 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 8 185366 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 185367 -NCIT:C191696 Metastatic Nested Urothelial Carcinoma 8 185368 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 185369 -NCIT:C191697 Metastatic Plasmacytoid Urothelial Carcinoma 8 185370 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 185371 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 8 185372 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 185373 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 8 185374 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 185375 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 185376 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 185377 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 9 185378 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 185379 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 185380 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 185381 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 185382 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 185383 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 185384 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 185385 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 185386 -NCIT:C153387 Metastatic Cervical Carcinoma 7 185387 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 8 185388 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 185389 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 185390 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 8 185391 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 185392 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 185393 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 185394 -NCIT:C153390 Metastatic Cervical Adenosquamous Carcinoma 8 185395 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 185396 -NCIT:C156294 Advanced Cervical Carcinoma 8 185397 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 185398 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 185399 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 185400 -NCIT:C156295 Locally Advanced Cervical Carcinoma 8 185401 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 185402 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 185403 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 9 185404 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 185405 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 185406 -NCIT:C156062 Metastatic Bladder Carcinoma 7 185407 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 185408 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 185409 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 185410 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 185411 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 185412 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 185413 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 185414 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 185415 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 185416 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 185417 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 185418 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 8 185419 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 8 185420 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 8 185421 -NCIT:C167071 Locally Advanced Bladder Carcinoma 8 185422 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 185423 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 9 185424 -NCIT:C167338 Advanced Bladder Carcinoma 8 185425 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 185426 -NCIT:C190772 Metastatic Non-Muscle Invasive Bladder Carcinoma 8 185427 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 9 185428 -NCIT:C156063 Metastatic Fallopian Tube Carcinoma 7 185429 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 8 185430 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 9 185431 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 8 185432 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 8 185433 -NCIT:C156064 Metastatic Ovarian Carcinoma 7 185434 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 8 185435 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 185436 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 185437 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 185438 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 9 185439 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 185440 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 185441 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 9 185442 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 185443 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 185444 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 185445 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 185446 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 185447 -NCIT:C165458 Advanced Ovarian Carcinoma 8 185448 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 185449 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 185450 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 185451 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 185452 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 185453 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 185454 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 185455 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 8 185456 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 185457 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 185458 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 185459 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 185460 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 8 185461 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 185462 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 8 185463 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 185464 -NCIT:C172234 Metastatic Ovarian Undifferentiated Carcinoma 8 185465 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 8 185466 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 185467 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 185468 -NCIT:C180333 Metastatic Microsatellite Stable Ovarian Carcinoma 8 185469 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 185470 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 8 185471 -NCIT:C27391 Metastatic Ovarian Small Cell Carcinoma, Hypercalcemic Type 8 185472 -NCIT:C156065 Metastatic Vaginal Carcinoma 7 185473 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 8 185474 -NCIT:C170788 Advanced Vaginal Carcinoma 8 185475 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 185476 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 185477 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 185478 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 185479 -NCIT:C181028 Metastatic Vaginal Adenosquamous Carcinoma 8 185480 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 185481 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 8 185482 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 185483 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 185484 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 8 185485 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 185486 -NCIT:C156066 Metastatic Vulvar Carcinoma 7 185487 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 8 185488 -NCIT:C170786 Advanced Vulvar Carcinoma 8 185489 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 8 185490 -NCIT:C156068 Metastatic Endometrial Carcinoma 7 185491 -NCIT:C159676 Advanced Endometrial Carcinoma 8 185492 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 185493 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 185494 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 185495 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 185496 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 8 185497 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 185498 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 185499 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 9 185500 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 8 185501 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 8 185502 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 185503 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 8 185504 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 9 185505 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 185506 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 185507 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 185508 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 185509 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 9 185510 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 185511 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 185512 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 185513 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 185514 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 9 185515 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 9 185516 -NCIT:C164143 Advanced Genitourinary System Carcinoma 7 185517 -NCIT:C148493 Advanced Urothelial Carcinoma 8 185518 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 185519 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 185520 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 185521 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 185522 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 185523 -NCIT:C156284 Advanced Prostate Carcinoma 8 185524 -NCIT:C156286 Advanced Prostate Adenocarcinoma 9 185525 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 185526 -NCIT:C156294 Advanced Cervical Carcinoma 8 185527 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 185528 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 185529 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 185530 -NCIT:C159676 Advanced Endometrial Carcinoma 8 185531 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 185532 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 185533 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 185534 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 185535 -NCIT:C165458 Advanced Ovarian Carcinoma 8 185536 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 185537 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 185538 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 185539 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 185540 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 185541 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 185542 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 185543 -NCIT:C167338 Advanced Bladder Carcinoma 8 185544 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 185545 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 8 185546 -NCIT:C170786 Advanced Vulvar Carcinoma 8 185547 -NCIT:C170788 Advanced Vaginal Carcinoma 8 185548 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 185549 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 185550 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 185551 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 185552 -NCIT:C170790 Advanced Penile Carcinoma 8 185553 -NCIT:C172617 Advanced Kidney Carcinoma 8 185554 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 185555 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 185556 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 185557 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 185558 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 185559 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 185560 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 185561 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 185562 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 185563 -NCIT:C167069 Locally Advanced Genitourinary System Carcinoma 7 185564 -NCIT:C156285 Locally Advanced Prostate Carcinoma 8 185565 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 9 185566 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 185567 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 9 185568 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 185569 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 9 185570 -NCIT:C156295 Locally Advanced Cervical Carcinoma 8 185571 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 185572 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 185573 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 9 185574 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 185575 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 185576 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 8 185577 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 185578 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 185579 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 185580 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 185581 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 185582 -NCIT:C167071 Locally Advanced Bladder Carcinoma 8 185583 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 185584 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 9 185585 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 8 185586 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 185587 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 185588 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 185589 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 185590 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 8 185591 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 9 185592 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 8 185593 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 185594 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 185595 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 9 185596 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 8 185597 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 8 185598 -NCIT:C170789 Locally Advanced Penile Carcinoma 8 185599 -NCIT:C172618 Locally Advanced Kidney Carcinoma 8 185600 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 185601 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 185602 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 185603 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 185604 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 185605 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 185606 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 185607 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 185608 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 185609 -NCIT:C185381 Metastatic Mesonephric Adenocarcinoma 7 185610 -NCIT:C27784 Metastatic Penile Carcinoma 7 185611 -NCIT:C170789 Locally Advanced Penile Carcinoma 8 185612 -NCIT:C170790 Advanced Penile Carcinoma 8 185613 -NCIT:C182111 Metastatic Squamous Cell Carcinoma of the Penis 8 185614 -NCIT:C27806 Metastatic Kidney Carcinoma 7 185615 -NCIT:C150595 Metastatic Renal Cell Carcinoma 8 185616 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 185617 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 185618 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 185619 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 185620 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 185621 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 185622 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 9 185623 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 185624 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 185625 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 9 185626 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 185627 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 185628 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 9 185629 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 185630 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 185631 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 185632 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 185633 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 185634 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 185635 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 185636 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 185637 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 185638 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 9 185639 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 185640 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 185641 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 9 185642 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 185643 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 185644 -NCIT:C157755 Metastatic Kidney Medullary Carcinoma 8 185645 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 185646 -NCIT:C163965 Metastatic Renal Pelvis Carcinoma 8 185647 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 185648 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 185649 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 185650 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 185651 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 185652 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 185653 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 185654 -NCIT:C172617 Advanced Kidney Carcinoma 8 185655 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 185656 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 185657 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 185658 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 185659 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 185660 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 185661 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 185662 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 185663 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 185664 -NCIT:C172618 Locally Advanced Kidney Carcinoma 8 185665 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 185666 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 185667 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 185668 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 185669 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 185670 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 185671 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 185672 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 185673 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 185674 -NCIT:C27818 Metastatic Ureter Carcinoma 7 185675 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 8 185676 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 185677 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 185678 -NCIT:C27819 Metastatic Urethral Carcinoma 7 185679 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 185680 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 185681 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 185682 -NCIT:C8946 Metastatic Prostate Carcinoma 7 185683 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 8 185684 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 9 185685 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 9 185686 -NCIT:C161609 Double-Negative Prostate Carcinoma 9 185687 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 9 185688 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 9 185689 -NCIT:C132881 Prostate Carcinoma Metastatic in the Soft Tissue 8 185690 -NCIT:C148536 Castration-Naive Prostate Carcinoma 8 185691 -NCIT:C153336 Castration-Sensitive Prostate Carcinoma 8 185692 -NCIT:C156284 Advanced Prostate Carcinoma 8 185693 -NCIT:C156286 Advanced Prostate Adenocarcinoma 9 185694 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 185695 -NCIT:C156285 Locally Advanced Prostate Carcinoma 8 185696 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 9 185697 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 185698 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 9 185699 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 185700 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 9 185701 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 8 185702 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 9 185703 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 9 185704 -NCIT:C161584 Prostate Carcinoma Metastatic in the Pelvic Cavity 8 185705 -NCIT:C161587 Prostate Carcinoma Metastatic in the Lymph Nodes 8 185706 -NCIT:C171265 Oligometastatic Prostate Carcinoma 8 185707 -NCIT:C36307 Prostate Carcinoma Metastatic in the Lung 8 185708 -NCIT:C36308 Prostate Carcinoma Metastatic in the Bone 8 185709 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 8 185710 -NCIT:C156286 Advanced Prostate Adenocarcinoma 9 185711 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 185712 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 9 185713 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 185714 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 185715 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 185716 -NCIT:C148128 Metastatic Thymic Carcinoma 6 185717 -NCIT:C148126 Locally Advanced Thymic Carcinoma 7 185718 -NCIT:C159903 Advanced Thymic Carcinoma 7 185719 -NCIT:C148130 Locally Advanced Carcinoma 6 185720 -NCIT:C148126 Locally Advanced Thymic Carcinoma 7 185721 -NCIT:C153206 Locally Advanced Lung Carcinoma 7 185722 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 8 185723 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 185724 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 185725 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 185726 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 185727 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 185728 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 185729 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 185730 -NCIT:C153213 Locally Advanced Head and Neck Carcinoma 7 185731 -NCIT:C158464 Locally Advanced Salivary Gland Carcinoma 8 185732 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 8 185733 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 185734 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 185735 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 185736 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 185737 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 185738 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 185739 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 185740 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 185741 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 185742 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 185743 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 185744 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 8 185745 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 185746 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 8 185747 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 185748 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 9 185749 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 185750 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 185751 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 9 185752 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 185753 -NCIT:C165562 Locally Advanced Lip and Oral Cavity Carcinoma 8 185754 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 9 185755 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 10 185756 -NCIT:C165563 Locally Advanced Paranasal Sinus Carcinoma 8 185757 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 185758 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 8 185759 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 185760 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 9 185761 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 185762 -NCIT:C153358 Locally Advanced Digestive System Carcinoma 7 185763 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 8 185764 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 185765 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 185766 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 185767 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 8 185768 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 9 185769 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 8 185770 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 185771 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 185772 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 185773 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 185774 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 185775 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 185776 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 185777 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 185778 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 185779 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 185780 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 185781 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 185782 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 185783 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 185784 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 185785 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 185786 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 185787 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 185788 -NCIT:C162772 Locally Advanced Gastric Carcinoma 8 185789 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 9 185790 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 10 185791 -NCIT:C168976 Locally Advanced Esophageal Carcinoma 8 185792 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 9 185793 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 10 185794 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 9 185795 -NCIT:C168977 Locally Advanced Anal Carcinoma 8 185796 -NCIT:C170459 Locally Advanced Pancreatobiliary Carcinoma 8 185797 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 9 185798 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 10 185799 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 11 185800 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 185801 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 12 185802 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 11 185803 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 185804 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 10 185805 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 11 185806 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 9 185807 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 10 185808 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 11 185809 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 11 185810 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 9 185811 -NCIT:C171298 Locally Advanced Liver Carcinoma 8 185812 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 9 185813 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 185814 -NCIT:C154321 Locally Advanced Squamous Cell Carcinoma 7 185815 -NCIT:C153182 Locally Advanced Skin Squamous Cell Carcinoma 8 185816 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 185817 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 185818 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 185819 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 8 185820 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 185821 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 185822 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 185823 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 185824 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 185825 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 185826 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 185827 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 185828 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 185829 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 185830 -NCIT:C165474 Locally Advanced Squamous Cell Carcinoma of Unknown Primary 8 185831 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 8 185832 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 185833 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 8 185834 -NCIT:C155698 Locally Advanced Unresectable Carcinoma 7 185835 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 8 185836 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 8 185837 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 8 185838 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 8 185839 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 185840 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 8 185841 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 185842 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 8 185843 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 185844 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 185845 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 8 185846 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 185847 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 185848 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 185849 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 185850 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 185851 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 185852 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 185853 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 8 185854 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 8 185855 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 8 185856 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 8 185857 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 8 185858 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 8 185859 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 8 185860 -NCIT:C156770 Locally Advanced Basal Cell Carcinoma 7 185861 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 8 185862 -NCIT:C158909 Locally Advanced Neuroendocrine Carcinoma 7 185863 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 185864 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 185865 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 8 185866 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 185867 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 185868 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 8 185869 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 185870 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 8 185871 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 185872 -NCIT:C160920 Locally Advanced Breast Carcinoma 7 185873 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 8 185874 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 185875 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 185876 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 185877 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 185878 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 8 185879 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 185880 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 185881 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 185882 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 185883 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 185884 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 185885 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 185886 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 185887 -NCIT:C167069 Locally Advanced Genitourinary System Carcinoma 7 185888 -NCIT:C156285 Locally Advanced Prostate Carcinoma 8 185889 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 9 185890 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 185891 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 9 185892 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 185893 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 9 185894 -NCIT:C156295 Locally Advanced Cervical Carcinoma 8 185895 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 185896 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 185897 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 9 185898 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 185899 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 185900 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 8 185901 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 185902 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 185903 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 185904 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 185905 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 185906 -NCIT:C167071 Locally Advanced Bladder Carcinoma 8 185907 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 185908 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 9 185909 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 8 185910 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 185911 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 185912 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 185913 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 185914 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 8 185915 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 9 185916 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 8 185917 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 185918 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 185919 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 9 185920 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 8 185921 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 8 185922 -NCIT:C170789 Locally Advanced Penile Carcinoma 8 185923 -NCIT:C172618 Locally Advanced Kidney Carcinoma 8 185924 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 185925 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 185926 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 185927 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 185928 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 185929 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 185930 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 185931 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 185932 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 185933 -NCIT:C167204 Locally Advanced Primary Peritoneal Carcinoma 7 185934 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 8 185935 -NCIT:C168978 Locally Advanced Adenocarcinoma 7 185936 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 8 185937 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 9 185938 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 9 185939 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 8 185940 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 185941 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 8 185942 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 185943 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 8 185944 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 9 185945 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 185946 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 185947 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 185948 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 8 185949 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 185950 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 185951 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 185952 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 185953 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 185954 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 185955 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 185956 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 185957 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 185958 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 8 185959 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 185960 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 9 185961 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 8 185962 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 185963 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 185964 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 185965 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 185966 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 185967 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 185968 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 185969 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 185970 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 8 185971 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 185972 -NCIT:C174045 Locally Advanced Endometrioid Adenocarcinoma 8 185973 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 185974 -NCIT:C174443 Locally Advanced Adrenal Cortical Carcinoma 8 185975 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 8 185976 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 8 185977 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 185978 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 185979 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 185980 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 185981 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 185982 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 185983 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 185984 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 185985 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 185986 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 185987 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 185988 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 185989 -NCIT:C175493 Locally Advanced Transitional Cell Carcinoma 7 185990 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 8 185991 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 185992 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 185993 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 185994 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 185995 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 185996 -NCIT:C175669 Locally Advanced Adenoid Cystic Carcinoma 7 185997 -NCIT:C153171 Advanced Carcinoma 6 185998 -NCIT:C129861 Advanced Head and Neck Carcinoma 7 185999 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 8 186000 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 186001 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 186002 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 186003 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 186004 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 186005 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 186006 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 186007 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 8 186008 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 186009 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 186010 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 186011 -NCIT:C170784 Advanced Pharyngeal Carcinoma 8 186012 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 9 186013 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 186014 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 186015 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 186016 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 186017 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 186018 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 9 186019 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 186020 -NCIT:C177723 Advanced Salivary Gland Carcinoma 8 186021 -NCIT:C153203 Advanced Lung Carcinoma 7 186022 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 186023 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 8 186024 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 186025 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 186026 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 186027 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 186028 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 186029 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 186030 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 186031 -NCIT:C180922 Advanced Bronchogenic Carcinoma 8 186032 -NCIT:C155870 Advanced Neuroendocrine Carcinoma 7 186033 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 186034 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 186035 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 186036 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 186037 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 186038 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 186039 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 186040 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 186041 -NCIT:C165300 Advanced Merkel Cell Carcinoma 8 186042 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 8 186043 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 186044 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 186045 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 186046 -NCIT:C156746 Advanced Digestive System Carcinoma 7 186047 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 186048 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 186049 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 186050 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 8 186051 -NCIT:C160599 Advanced Esophageal Carcinoma 8 186052 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 9 186053 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 9 186054 -NCIT:C162475 Advanced Colorectal Carcinoma 8 186055 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 186056 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 186057 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 186058 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 186059 -NCIT:C167238 Advanced Colon Carcinoma 9 186060 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 186061 -NCIT:C170777 Advanced Rectal Carcinoma 9 186062 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 186063 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 186064 -NCIT:C165299 Advanced Gastric Carcinoma 8 186065 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 186066 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 186067 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 186068 -NCIT:C166255 Advanced Gastric Adenocarcinoma 9 186069 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 10 186070 -NCIT:C167336 Advanced Hepatocellular Carcinoma 8 186071 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 186072 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 186073 -NCIT:C170515 Advanced Anal Carcinoma 8 186074 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 186075 -NCIT:C171330 Advanced Pancreatobiliary Carcinoma 8 186076 -NCIT:C165452 Advanced Pancreatic Carcinoma 9 186077 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 10 186078 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 11 186079 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 9 186080 -NCIT:C171331 Advanced Biliary Tract Carcinoma 9 186081 -NCIT:C142870 Advanced Bile Duct Carcinoma 10 186082 -NCIT:C162752 Advanced Cholangiocarcinoma 11 186083 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 186084 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 186085 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 186086 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 11 186087 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 186088 -NCIT:C162755 Advanced Gallbladder Carcinoma 10 186089 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 186090 -NCIT:C159556 Advanced Adenocarcinoma 7 186091 -NCIT:C153170 Advanced Renal Cell Carcinoma 8 186092 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 186093 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 186094 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 186095 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 186096 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 186097 -NCIT:C156286 Advanced Prostate Adenocarcinoma 8 186098 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 186099 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 186100 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 8 186101 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 8 186102 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 9 186103 -NCIT:C162752 Advanced Cholangiocarcinoma 8 186104 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 9 186105 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 9 186106 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 9 186107 -NCIT:C165700 Advanced Breast Adenocarcinoma 8 186108 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 186109 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 186110 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 186111 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 186112 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 186113 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 186114 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 186115 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 186116 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 186117 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 186118 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 186119 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 186120 -NCIT:C167336 Advanced Hepatocellular Carcinoma 8 186121 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 186122 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 186123 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 8 186124 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 186125 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 186126 -NCIT:C170807 Advanced Endometrioid Adenocarcinoma 8 186127 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 186128 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 186129 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 186130 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 186131 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 186132 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 186133 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 8 186134 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 8 186135 -NCIT:C176727 Advanced Lung Adenocarcinoma 8 186136 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 186137 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 186138 -NCIT:C191863 Advanced Adrenal Cortical Carcinoma 8 186139 -NCIT:C159903 Advanced Thymic Carcinoma 7 186140 -NCIT:C160298 Advanced NUT Carcinoma 7 186141 -NCIT:C162648 Advanced Breast Carcinoma 7 186142 -NCIT:C165700 Advanced Breast Adenocarcinoma 8 186143 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 186144 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 186145 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 186146 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 186147 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 186148 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 186149 -NCIT:C162653 Advanced Squamous Cell Carcinoma 7 186150 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 8 186151 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 186152 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 186153 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 186154 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 186155 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 186156 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 186157 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 186158 -NCIT:C168542 Advanced Skin Squamous Cell Carcinoma 8 186159 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 186160 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 8 186161 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 186162 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 186163 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 186164 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 8 186165 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 186166 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 186167 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 186168 -NCIT:C164012 Advanced Adenoid Cystic Carcinoma 7 186169 -NCIT:C164143 Advanced Genitourinary System Carcinoma 7 186170 -NCIT:C148493 Advanced Urothelial Carcinoma 8 186171 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 186172 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 186173 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 186174 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 186175 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 186176 -NCIT:C156284 Advanced Prostate Carcinoma 8 186177 -NCIT:C156286 Advanced Prostate Adenocarcinoma 9 186178 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 186179 -NCIT:C156294 Advanced Cervical Carcinoma 8 186180 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 186181 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 186182 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 186183 -NCIT:C159676 Advanced Endometrial Carcinoma 8 186184 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 186185 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 186186 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 186187 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 186188 -NCIT:C165458 Advanced Ovarian Carcinoma 8 186189 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 186190 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 186191 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 186192 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 186193 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 186194 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 186195 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 186196 -NCIT:C167338 Advanced Bladder Carcinoma 8 186197 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 186198 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 8 186199 -NCIT:C170786 Advanced Vulvar Carcinoma 8 186200 -NCIT:C170788 Advanced Vaginal Carcinoma 8 186201 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 186202 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 186203 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 186204 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 186205 -NCIT:C170790 Advanced Penile Carcinoma 8 186206 -NCIT:C172617 Advanced Kidney Carcinoma 8 186207 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 186208 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 186209 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 186210 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 186211 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 186212 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 186213 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 186214 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 186215 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 186216 -NCIT:C167396 Advanced Primary Peritoneal Carcinoma 7 186217 -NCIT:C170960 Advanced Carcinoma Of Unknown Primary 7 186218 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 8 186219 -NCIT:C172091 Advanced Transitional Cell Carcinoma 7 186220 -NCIT:C148493 Advanced Urothelial Carcinoma 8 186221 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 186222 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 186223 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 186224 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 186225 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 186226 -NCIT:C172362 Advanced Basal Cell Carcinoma 7 186227 -NCIT:C153202 Metastatic Lung Carcinoma 6 186228 -NCIT:C133503 Lung Carcinoma Metastatic in the Central Nervous System 7 186229 -NCIT:C36304 Lung Carcinoma Metastatic in the Brain 8 186230 -NCIT:C153203 Advanced Lung Carcinoma 7 186231 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 186232 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 8 186233 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 186234 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 186235 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 186236 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 186237 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 186238 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 186239 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 186240 -NCIT:C180922 Advanced Bronchogenic Carcinoma 8 186241 -NCIT:C153206 Locally Advanced Lung Carcinoma 7 186242 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 8 186243 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 186244 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 186245 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 186246 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 186247 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 186248 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 186249 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 186250 -NCIT:C156092 Metastatic Lung Squamous Cell Carcinoma 7 186251 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 186252 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 186253 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 186254 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 186255 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 186256 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 186257 -NCIT:C156094 Metastatic Lung Non-Small Cell Carcinoma 7 186258 -NCIT:C128798 Metastatic Lung Non-Squamous Non-Small Cell Carcinoma 8 186259 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 186260 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 186261 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 186262 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 186263 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 186264 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 186265 -NCIT:C155908 Metastatic Lung Adenocarcinoma 9 186266 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 186267 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 186268 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 9 186269 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 186270 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 186271 -NCIT:C156093 Metastatic Lung Adenosquamous Carcinoma 8 186272 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 186273 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 186274 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 186275 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 186276 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 186277 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 186278 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 8 186279 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 186280 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 186281 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 186282 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 186283 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 186284 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 186285 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 8 186286 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 186287 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 186288 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 186289 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 186290 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 186291 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 7 186292 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 186293 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 186294 -NCIT:C187195 Oligometastatic Lung Carcinoma 7 186295 -NCIT:C36305 Lung Carcinoma Metastatic in the Bone 7 186296 -NCIT:C36306 Lung Carcinoma Metastatic in the Liver 7 186297 -NCIT:C153238 Metastatic Breast Carcinoma 6 186298 -NCIT:C133501 Breast Carcinoma Metastatic in the Central Nervous System 7 186299 -NCIT:C36301 Breast Carcinoma Metastatic in the Brain 8 186300 -NCIT:C153227 Breast Carcinoma Metastatic in the Lymph Nodes 7 186301 -NCIT:C160920 Locally Advanced Breast Carcinoma 7 186302 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 8 186303 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 186304 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 186305 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 186306 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 186307 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 8 186308 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 186309 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 186310 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 186311 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 186312 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 186313 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 186314 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 186315 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 186316 -NCIT:C161830 Metastatic BRCA-Associated Breast Carcinoma 7 186317 -NCIT:C162648 Advanced Breast Carcinoma 7 186318 -NCIT:C165700 Advanced Breast Adenocarcinoma 8 186319 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 186320 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 186321 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 186322 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 186323 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 186324 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 186325 -NCIT:C165698 Metastatic Breast Adenocarcinoma 7 186326 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 8 186327 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 186328 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 186329 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 186330 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 186331 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 186332 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 186333 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 186334 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 186335 -NCIT:C165700 Advanced Breast Adenocarcinoma 8 186336 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 186337 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 186338 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 186339 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 186340 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 186341 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 186342 -NCIT:C168777 Metastatic HER2-Negative Breast Carcinoma 8 186343 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 186344 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 186345 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 186346 -NCIT:C179554 Metastatic HER2-Low Breast Carcinoma 8 186347 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 186348 -NCIT:C180924 Metastatic HER2-Positive Breast Carcinoma 8 186349 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 186350 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 186351 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 186352 -NCIT:C181787 Metastatic Breast Inflammatory Carcinoma 8 186353 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 9 186354 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 9 186355 -NCIT:C9246 Stage IIIB Breast Inflammatory Carcinoma 9 186356 -NCIT:C185880 Metastatic Hormone Receptor-Positive Breast Carcinoma 8 186357 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 186358 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 186359 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 186360 -NCIT:C190852 Metastatic Androgen Receptor-Positive Breast Carcinoma 9 186361 -NCIT:C190856 Metastatic Estrogen Receptor-Positive Breast Carcinoma 9 186362 -NCIT:C190677 Metastatic Hormone Receptor-Negative Breast Carcinoma 8 186363 -NCIT:C153348 Metastatic Triple-Negative Breast Carcinoma 9 186364 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 186365 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 10 186366 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 11 186367 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 10 186368 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 186369 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 186370 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 8 186371 -NCIT:C76326 Metastatic Breast Ductal Carcinoma 8 186372 -NCIT:C76328 Metastatic Breast Lobular Carcinoma 8 186373 -NCIT:C179515 Oligometastatic Breast Carcinoma 7 186374 -NCIT:C28311 Metastatic Breast Carcinoma in the Skin 7 186375 -NCIT:C36300 Breast Carcinoma Metastatic in the Lung 7 186376 -NCIT:C36302 Breast Carcinoma Metastatic in the Liver 7 186377 -NCIT:C36303 Breast Carcinoma Metastatic in the Bone 7 186378 -NCIT:C153226 Breast Carcinoma Metastatic in the Spine 8 186379 -NCIT:C5178 Metastatic Breast Squamous Cell Carcinoma 7 186380 -NCIT:C153315 Metastatic Unresectable Carcinoma 6 186381 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 7 186382 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 8 186383 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 8 186384 -NCIT:C155698 Locally Advanced Unresectable Carcinoma 7 186385 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 8 186386 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 8 186387 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 8 186388 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 8 186389 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 186390 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 8 186391 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 186392 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 8 186393 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 186394 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 186395 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 8 186396 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 186397 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 186398 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 186399 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 186400 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 186401 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 186402 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 186403 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 8 186404 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 8 186405 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 8 186406 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 8 186407 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 8 186408 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 8 186409 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 8 186410 -NCIT:C156788 Metastatic Unresectable Basal Cell Carcinoma 7 186411 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 8 186412 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 7 186413 -NCIT:C155869 Metastatic Neuroendocrine Carcinoma 6 186414 -NCIT:C155870 Advanced Neuroendocrine Carcinoma 7 186415 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 186416 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 186417 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 186418 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 186419 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 186420 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 186421 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 186422 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 186423 -NCIT:C165300 Advanced Merkel Cell Carcinoma 8 186424 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 8 186425 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 186426 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 186427 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 186428 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 7 186429 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 8 186430 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 186431 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 186432 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 186433 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 8 186434 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 186435 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 186436 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 186437 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 186438 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 186439 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 186440 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 186441 -NCIT:C158908 Metastatic Large Cell Neuroendocrine Carcinoma 7 186442 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 8 186443 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 8 186444 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 186445 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 8 186446 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 186447 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 186448 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 8 186449 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 186450 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 186451 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 186452 -NCIT:C158909 Locally Advanced Neuroendocrine Carcinoma 7 186453 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 186454 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 186455 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 8 186456 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 186457 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 186458 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 8 186459 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 186460 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 8 186461 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 186462 -NCIT:C158911 Metastatic Small Cell Neuroendocrine Carcinoma 7 186463 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 8 186464 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 9 186465 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 186466 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 8 186467 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 186468 -NCIT:C191852 Metastatic Extrapulmonary Small Cell Neuroendocrine Carcinoma 8 186469 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 186470 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 186471 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 9 186472 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 9 186473 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 7 186474 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 186475 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 186476 -NCIT:C162572 Metastatic Merkel Cell Carcinoma 7 186477 -NCIT:C165300 Advanced Merkel Cell Carcinoma 8 186478 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 8 186479 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 8 186480 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 7 186481 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 186482 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 186483 -NCIT:C163975 Neuroendocrine Carcinoma of Unknown Primary 7 186484 -NCIT:C156769 Metastatic Basal Cell Carcinoma 6 186485 -NCIT:C156770 Locally Advanced Basal Cell Carcinoma 7 186486 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 8 186487 -NCIT:C156788 Metastatic Unresectable Basal Cell Carcinoma 7 186488 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 8 186489 -NCIT:C172362 Advanced Basal Cell Carcinoma 7 186490 -NCIT:C157638 Metastatic Adenoid Cystic Carcinoma 6 186491 -NCIT:C156089 Metastatic Oral Cavity Adenoid Cystic Carcinoma 7 186492 -NCIT:C164012 Advanced Adenoid Cystic Carcinoma 7 186493 -NCIT:C175669 Locally Advanced Adenoid Cystic Carcinoma 7 186494 -NCIT:C160297 Metastatic NUT Carcinoma 6 186495 -NCIT:C160298 Advanced NUT Carcinoma 7 186496 -NCIT:C165537 Metastatic Non-Small Cell Carcinoma 6 186497 -NCIT:C156094 Metastatic Lung Non-Small Cell Carcinoma 7 186498 -NCIT:C128798 Metastatic Lung Non-Squamous Non-Small Cell Carcinoma 8 186499 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 186500 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 186501 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 186502 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 186503 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 186504 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 186505 -NCIT:C155908 Metastatic Lung Adenocarcinoma 9 186506 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 186507 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 186508 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 9 186509 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 186510 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 186511 -NCIT:C156093 Metastatic Lung Adenosquamous Carcinoma 8 186512 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 186513 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 186514 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 186515 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 186516 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 186517 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 186518 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 8 186519 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 186520 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 186521 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 186522 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 186523 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 186524 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 186525 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 8 186526 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 186527 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 186528 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 186529 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 186530 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 186531 -NCIT:C167203 Metastatic Primary Peritoneal Carcinoma 6 186532 -NCIT:C167204 Locally Advanced Primary Peritoneal Carcinoma 7 186533 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 8 186534 -NCIT:C167396 Advanced Primary Peritoneal Carcinoma 7 186535 -NCIT:C170972 Metastatic Primary Peritoneal Adenocarcinoma 7 186536 -NCIT:C171019 Metastatic Primary Peritoneal Serous Adenocarcinoma 8 186537 -NCIT:C186453 Metastatic Primary Peritoneal High Grade Serous Adenocarcinoma 9 186538 -NCIT:C179654 Metastatic Carcinoma in the Peritoneum 6 186539 -NCIT:C27382 Peritoneal Carcinomatosis 7 186540 -NCIT:C3345 Pseudomyxoma Peritonei 8 186541 -NCIT:C179179 Recurrent Pseudomyxoma Peritonei 9 186542 -NCIT:C179180 Refractory Pseudomyxoma Peritonei 9 186543 -NCIT:C188076 Metastatic Carcinoma in the Rectum 6 186544 -NCIT:C188077 Metastatic Carcinoma in the Pancreas 6 186545 -NCIT:C27381 Metastatic Carcinoma in the Adrenal Cortex 6 186546 -NCIT:C27408 Metastatic Carcinoma in the Lung 6 186547 -NCIT:C153224 Colorectal Carcinoma Metastatic in the Lung 7 186548 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 8 186549 -NCIT:C36300 Breast Carcinoma Metastatic in the Lung 7 186550 -NCIT:C36307 Prostate Carcinoma Metastatic in the Lung 7 186551 -NCIT:C27469 Disseminated Carcinoma 6 186552 -NCIT:C27185 Disseminated Adenocarcinoma 7 186553 -NCIT:C4829 Disseminated Squamous Cell Carcinoma 7 186554 -NCIT:C36082 Metastatic Carcinoma in the Bone 6 186555 -NCIT:C36303 Breast Carcinoma Metastatic in the Bone 7 186556 -NCIT:C153226 Breast Carcinoma Metastatic in the Spine 8 186557 -NCIT:C36305 Lung Carcinoma Metastatic in the Bone 7 186558 -NCIT:C36308 Prostate Carcinoma Metastatic in the Bone 7 186559 -NCIT:C3693 Carcinomatosis 6 186560 -NCIT:C168666 Gastrointestinal Carcinomatosis 7 186561 -NCIT:C27382 Peritoneal Carcinomatosis 7 186562 -NCIT:C3345 Pseudomyxoma Peritonei 8 186563 -NCIT:C179179 Recurrent Pseudomyxoma Peritonei 9 186564 -NCIT:C179180 Refractory Pseudomyxoma Peritonei 9 186565 -NCIT:C27383 Meningeal Carcinomatosis 7 186566 -NCIT:C27384 Pleural Carcinomatosis 7 186567 -NCIT:C27385 Pericardial Carcinomatosis 7 186568 -NCIT:C3870 Lymphangitic Carcinomatosis 7 186569 -NCIT:C3812 Carcinoma of Unknown Primary 6 186570 -NCIT:C162595 Head and Neck Carcinoma of Unknown Primary 7 186571 -NCIT:C173585 Neck Carcinoma of Unknown Primary 8 186572 -NCIT:C7713 Neck Squamous Cell Carcinoma of Unknown Primary 9 186573 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 10 186574 -NCIT:C187051 Human Papillomavirus-Related Head and Neck Squamous Cell Carcinoma of Unknown Primary 8 186575 -NCIT:C190149 Human Papillomavirus-Negative Head and Neck Squamous Cell Carcinoma of Unknown Primary 8 186576 -NCIT:C163975 Neuroendocrine Carcinoma of Unknown Primary 7 186577 -NCIT:C170960 Advanced Carcinoma Of Unknown Primary 7 186578 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 8 186579 -NCIT:C170961 Resectable Carcinoma of Unknown Primary 7 186580 -NCIT:C170962 Resectable Adenocarcinoma of Unknown Primary 8 186581 -NCIT:C4039 Adenocarcinoma of Unknown Primary 7 186582 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 8 186583 -NCIT:C170962 Resectable Adenocarcinoma of Unknown Primary 8 186584 -NCIT:C8099 Squamous Cell Carcinoma of Unknown Primary 7 186585 -NCIT:C165474 Locally Advanced Squamous Cell Carcinoma of Unknown Primary 8 186586 -NCIT:C187051 Human Papillomavirus-Related Head and Neck Squamous Cell Carcinoma of Unknown Primary 8 186587 -NCIT:C190149 Human Papillomavirus-Negative Head and Neck Squamous Cell Carcinoma of Unknown Primary 8 186588 -NCIT:C7713 Neck Squamous Cell Carcinoma of Unknown Primary 8 186589 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 9 186590 -NCIT:C8100 Undifferentiated Carcinoma of Unknown Primary 7 186591 -NCIT:C9181 Recurrent Carcinoma of Unknown Primary 7 186592 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 8 186593 -NCIT:C4104 Metastatic Squamous Cell Carcinoma 6 186594 -NCIT:C143013 Metastatic Skin Squamous Cell Carcinoma 7 186595 -NCIT:C153182 Locally Advanced Skin Squamous Cell Carcinoma 8 186596 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 186597 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 8 186598 -NCIT:C168542 Advanced Skin Squamous Cell Carcinoma 8 186599 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 186600 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 186601 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 186602 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 186603 -NCIT:C148153 Metastatic Head and Neck Squamous Cell Carcinoma 7 186604 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 8 186605 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 186606 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 186607 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 186608 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 186609 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 186610 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 186611 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 186612 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 186613 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 186614 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 186615 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 8 186616 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 186617 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 186618 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 186619 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 8 186620 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 186621 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 186622 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 186623 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 186624 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 186625 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 186626 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 186627 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 186628 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 186629 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 186630 -NCIT:C162882 Metastatic Sinonasal Squamous Cell Carcinoma 8 186631 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 186632 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 186633 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 186634 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 9 186635 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 186636 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 9 186637 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 186638 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 186639 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 186640 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 186641 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 8 186642 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 8 186643 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 186644 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 186645 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 186646 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 186647 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 186648 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 186649 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 186650 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 186651 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 186652 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 186653 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 186654 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 186655 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 186656 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 186657 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 186658 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 186659 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 186660 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 7 186661 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 186662 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 8 186663 -NCIT:C154321 Locally Advanced Squamous Cell Carcinoma 7 186664 -NCIT:C153182 Locally Advanced Skin Squamous Cell Carcinoma 8 186665 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 186666 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 186667 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 186668 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 8 186669 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 186670 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 186671 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 186672 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 186673 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 186674 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 186675 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 186676 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 186677 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 186678 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 186679 -NCIT:C165474 Locally Advanced Squamous Cell Carcinoma of Unknown Primary 8 186680 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 8 186681 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 186682 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 8 186683 -NCIT:C156075 Metastatic Esophageal Squamous Cell Carcinoma 7 186684 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 186685 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 186686 -NCIT:C156092 Metastatic Lung Squamous Cell Carcinoma 7 186687 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 186688 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 186689 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 186690 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 186691 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 186692 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 186693 -NCIT:C157452 Metastatic Squamous Cell Carcinoma in the Cervical Lymph Nodes 7 186694 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 7 186695 -NCIT:C162653 Advanced Squamous Cell Carcinoma 7 186696 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 8 186697 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 186698 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 186699 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 186700 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 186701 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 186702 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 186703 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 186704 -NCIT:C168542 Advanced Skin Squamous Cell Carcinoma 8 186705 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 186706 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 8 186707 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 186708 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 186709 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 186710 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 8 186711 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 186712 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 186713 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 186714 -NCIT:C169103 Metastatic Anal Squamous Cell Carcinoma 7 186715 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 186716 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 186717 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 7 186718 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 8 186719 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 8 186720 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 7 186721 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 7 186722 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 186723 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 186724 -NCIT:C182111 Metastatic Squamous Cell Carcinoma of the Penis 7 186725 -NCIT:C188112 Metastatic Squamous Cell Carcinoma in the Breast 7 186726 -NCIT:C188113 Metastatic Squamous Cell Carcinoma in the Skin 7 186727 -NCIT:C190771 Metastatic Pancreatic Squamous Cell Carcinoma 7 186728 -NCIT:C4829 Disseminated Squamous Cell Carcinoma 7 186729 -NCIT:C5178 Metastatic Breast Squamous Cell Carcinoma 7 186730 -NCIT:C8099 Squamous Cell Carcinoma of Unknown Primary 7 186731 -NCIT:C165474 Locally Advanced Squamous Cell Carcinoma of Unknown Primary 8 186732 -NCIT:C187051 Human Papillomavirus-Related Head and Neck Squamous Cell Carcinoma of Unknown Primary 8 186733 -NCIT:C190149 Human Papillomavirus-Negative Head and Neck Squamous Cell Carcinoma of Unknown Primary 8 186734 -NCIT:C7713 Neck Squamous Cell Carcinoma of Unknown Primary 8 186735 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 9 186736 -NCIT:C4124 Metastatic Adenocarcinoma 6 186737 -NCIT:C150577 Metastatic Gastroesophageal Junction Adenocarcinoma 7 186738 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 8 186739 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 8 186740 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 9 186741 -NCIT:C150595 Metastatic Renal Cell Carcinoma 7 186742 -NCIT:C153170 Advanced Renal Cell Carcinoma 8 186743 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 186744 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 186745 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 186746 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 186747 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 186748 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 8 186749 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 186750 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 186751 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 8 186752 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 186753 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 186754 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 8 186755 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 186756 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 186757 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 8 186758 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 186759 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 186760 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 186761 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 186762 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 186763 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 186764 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 8 186765 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 186766 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 186767 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 8 186768 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 186769 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 186770 -NCIT:C153319 Metastatic Gastric Adenocarcinoma 7 186771 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 186772 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 186773 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 186774 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 186775 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 186776 -NCIT:C165630 Metastatic Proximal Gastric Adenocarcinoma 8 186777 -NCIT:C166121 Oligometastatic Gastric Adenocarcinoma 8 186778 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 186779 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 186780 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 7 186781 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 8 186782 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 186783 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 186784 -NCIT:C154091 Metastatic Hepatocellular Carcinoma 7 186785 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 8 186786 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 186787 -NCIT:C167336 Advanced Hepatocellular Carcinoma 8 186788 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 186789 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 186790 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 186791 -NCIT:C155908 Metastatic Lung Adenocarcinoma 7 186792 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 8 186793 -NCIT:C176727 Advanced Lung Adenocarcinoma 8 186794 -NCIT:C156070 Metastatic Adrenal Cortical Carcinoma 7 186795 -NCIT:C174443 Locally Advanced Adrenal Cortical Carcinoma 8 186796 -NCIT:C191863 Advanced Adrenal Cortical Carcinoma 8 186797 -NCIT:C156074 Metastatic Esophageal Adenocarcinoma 7 186798 -NCIT:C166120 Oligometastatic Esophageal Adenocarcinoma 8 186799 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 186800 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 186801 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 186802 -NCIT:C172249 Metastatic Distal Esophagus Adenocarcinoma 8 186803 -NCIT:C157623 Metastatic Cholangiocarcinoma 7 186804 -NCIT:C162752 Advanced Cholangiocarcinoma 8 186805 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 9 186806 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 9 186807 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 9 186808 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 8 186809 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 186810 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 9 186811 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 8 186812 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 9 186813 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 8 186814 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 186815 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 9 186816 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 8 186817 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 9 186818 -NCIT:C159556 Advanced Adenocarcinoma 7 186819 -NCIT:C153170 Advanced Renal Cell Carcinoma 8 186820 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 186821 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 186822 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 186823 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 186824 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 186825 -NCIT:C156286 Advanced Prostate Adenocarcinoma 8 186826 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 186827 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 186828 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 8 186829 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 8 186830 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 9 186831 -NCIT:C162752 Advanced Cholangiocarcinoma 8 186832 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 9 186833 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 9 186834 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 9 186835 -NCIT:C165700 Advanced Breast Adenocarcinoma 8 186836 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 186837 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 186838 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 186839 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 186840 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 186841 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 186842 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 186843 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 186844 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 186845 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 186846 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 186847 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 186848 -NCIT:C167336 Advanced Hepatocellular Carcinoma 8 186849 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 186850 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 186851 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 8 186852 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 186853 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 186854 -NCIT:C170807 Advanced Endometrioid Adenocarcinoma 8 186855 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 186856 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 186857 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 186858 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 186859 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 186860 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 186861 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 8 186862 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 8 186863 -NCIT:C176727 Advanced Lung Adenocarcinoma 8 186864 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 186865 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 186866 -NCIT:C191863 Advanced Adrenal Cortical Carcinoma 8 186867 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 7 186868 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 186869 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 186870 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 186871 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 8 186872 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 186873 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 186874 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 8 186875 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 186876 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 186877 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 186878 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 186879 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 186880 -NCIT:C161048 Metastatic Colorectal Adenocarcinoma 7 186881 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 8 186882 -NCIT:C160819 Metastatic Colon Adenocarcinoma 8 186883 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 186884 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 186885 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 186886 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 8 186887 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 186888 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 186889 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 186890 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 8 186891 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 186892 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 186893 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 186894 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 186895 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 186896 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 186897 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 186898 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 186899 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 186900 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 186901 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 186902 -NCIT:C165698 Metastatic Breast Adenocarcinoma 7 186903 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 8 186904 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 186905 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 186906 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 186907 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 186908 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 186909 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 186910 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 186911 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 186912 -NCIT:C165700 Advanced Breast Adenocarcinoma 8 186913 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 186914 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 186915 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 186916 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 186917 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 186918 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 186919 -NCIT:C168777 Metastatic HER2-Negative Breast Carcinoma 8 186920 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 186921 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 186922 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 186923 -NCIT:C179554 Metastatic HER2-Low Breast Carcinoma 8 186924 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 186925 -NCIT:C180924 Metastatic HER2-Positive Breast Carcinoma 8 186926 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 186927 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 186928 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 186929 -NCIT:C181787 Metastatic Breast Inflammatory Carcinoma 8 186930 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 9 186931 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 9 186932 -NCIT:C9246 Stage IIIB Breast Inflammatory Carcinoma 9 186933 -NCIT:C185880 Metastatic Hormone Receptor-Positive Breast Carcinoma 8 186934 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 186935 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 186936 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 186937 -NCIT:C190852 Metastatic Androgen Receptor-Positive Breast Carcinoma 9 186938 -NCIT:C190856 Metastatic Estrogen Receptor-Positive Breast Carcinoma 9 186939 -NCIT:C190677 Metastatic Hormone Receptor-Negative Breast Carcinoma 8 186940 -NCIT:C153348 Metastatic Triple-Negative Breast Carcinoma 9 186941 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 186942 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 10 186943 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 11 186944 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 10 186945 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 186946 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 186947 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 8 186948 -NCIT:C76326 Metastatic Breast Ductal Carcinoma 8 186949 -NCIT:C76328 Metastatic Breast Lobular Carcinoma 8 186950 -NCIT:C168978 Locally Advanced Adenocarcinoma 7 186951 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 8 186952 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 9 186953 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 9 186954 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 8 186955 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 186956 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 8 186957 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 186958 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 8 186959 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 9 186960 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 186961 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 186962 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 186963 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 8 186964 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 186965 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 186966 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 186967 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 186968 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 186969 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 186970 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 186971 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 186972 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 186973 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 8 186974 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 186975 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 9 186976 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 8 186977 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 186978 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 186979 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 186980 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 186981 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 186982 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 186983 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 186984 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 186985 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 8 186986 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 186987 -NCIT:C174045 Locally Advanced Endometrioid Adenocarcinoma 8 186988 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 186989 -NCIT:C174443 Locally Advanced Adrenal Cortical Carcinoma 8 186990 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 8 186991 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 8 186992 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 186993 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 186994 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 186995 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 186996 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 186997 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 186998 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 186999 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 187000 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 187001 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 187002 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 187003 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 187004 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 7 187005 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 187006 -NCIT:C170972 Metastatic Primary Peritoneal Adenocarcinoma 7 187007 -NCIT:C171019 Metastatic Primary Peritoneal Serous Adenocarcinoma 8 187008 -NCIT:C186453 Metastatic Primary Peritoneal High Grade Serous Adenocarcinoma 9 187009 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 7 187010 -NCIT:C173979 Metastatic Differentiated Thyroid Gland Carcinoma 7 187011 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 8 187012 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 9 187013 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 10 187014 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 8 187015 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 8 187016 -NCIT:C174046 Metastatic Poorly Differentiated Thyroid Gland Carcinoma 7 187017 -NCIT:C182104 Metastatic Appendix Adenocarcinoma 7 187018 -NCIT:C162274 Metastatic Appendix Mucinous Adenocarcinoma 8 187019 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 187020 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 7 187021 -NCIT:C185381 Metastatic Mesonephric Adenocarcinoma 7 187022 -NCIT:C27185 Disseminated Adenocarcinoma 7 187023 -NCIT:C3345 Pseudomyxoma Peritonei 7 187024 -NCIT:C179179 Recurrent Pseudomyxoma Peritonei 8 187025 -NCIT:C179180 Refractory Pseudomyxoma Peritonei 8 187026 -NCIT:C4039 Adenocarcinoma of Unknown Primary 7 187027 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 8 187028 -NCIT:C170962 Resectable Adenocarcinoma of Unknown Primary 8 187029 -NCIT:C66717 Metastatic Signet Ring Cell Carcinoma 7 187030 -NCIT:C3153 Krukenberg Tumor 8 187031 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 8 187032 -NCIT:C8933 Metastatic Pancreatic Adenocarcinoma 7 187033 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 8 187034 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 9 187035 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 9 187036 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 8 187037 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 9 187038 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 9 187039 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 9 187040 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 8 187041 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 9 187042 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 8 187043 -NCIT:C8934 Metastatic Small Intestinal Adenocarcinoma 7 187044 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 187045 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 7 187046 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 8 187047 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 187048 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 8 187049 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 187050 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 187051 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 8 187052 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 187053 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 187054 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 8 187055 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 187056 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 8 187057 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 8 187058 -NCIT:C8943 Metastatic Endometrioid Adenocarcinoma 7 187059 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 8 187060 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 187061 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 187062 -NCIT:C170807 Advanced Endometrioid Adenocarcinoma 8 187063 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 187064 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 187065 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 8 187066 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 187067 -NCIT:C174045 Locally Advanced Endometrioid Adenocarcinoma 8 187068 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 187069 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 7 187070 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 187071 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 7 187072 -NCIT:C156286 Advanced Prostate Adenocarcinoma 8 187073 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 187074 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 8 187075 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 187076 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 8 187077 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 187078 -NCIT:C9044 Metastatic Parathyroid Gland Carcinoma 7 187079 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 187080 -NCIT:C5628 Metastatic Carcinoma in the Skin 6 187081 -NCIT:C188113 Metastatic Squamous Cell Carcinoma in the Skin 7 187082 -NCIT:C28311 Metastatic Breast Carcinoma in the Skin 7 187083 -NCIT:C6334 Metastatic Carcinoma in the Uterine Cervix 6 187084 -NCIT:C9276 Metastatic Carcinoma in the Adrenal Medulla 6 187085 -NCIT:C96767 Metastatic Carcinoma in the Liver 6 187086 -NCIT:C157366 Colorectal Carcinoma Metastatic in the Liver 7 187087 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 8 187088 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 8 187089 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 8 187090 -NCIT:C36302 Breast Carcinoma Metastatic in the Liver 7 187091 -NCIT:C36306 Lung Carcinoma Metastatic in the Liver 7 187092 -NCIT:C3580 Metastatic Malignant Neoplasm in the Bone 5 187093 -NCIT:C185156 Plasma Cell Myeloma-Induced Bone Disease 6 187094 -NCIT:C36082 Metastatic Carcinoma in the Bone 6 187095 -NCIT:C36303 Breast Carcinoma Metastatic in the Bone 7 187096 -NCIT:C153226 Breast Carcinoma Metastatic in the Spine 8 187097 -NCIT:C36305 Lung Carcinoma Metastatic in the Bone 7 187098 -NCIT:C36308 Prostate Carcinoma Metastatic in the Bone 7 187099 -NCIT:C4881 Metastatic Malignant Neoplasm in the Spine 6 187100 -NCIT:C153226 Breast Carcinoma Metastatic in the Spine 7 187101 -NCIT:C35933 Distantly Metastatic Malignant Neoplasm 5 187102 -NCIT:C4582 Metastatic Malignant Neoplasm in the Bone Marrow 5 187103 -NCIT:C4584 Metastatic Malignant Neoplasm in the Testis 5 187104 -NCIT:C4586 Metastatic Malignant Neoplasm in the Eye 5 187105 -NCIT:C174496 Metastatic Malignant Neoplasm in the Conjunctiva 6 187106 -NCIT:C174507 Metastatic Malignant Neoplasm in the Uvea 6 187107 -NCIT:C6103 Metastatic Malignant Neoplasm in the Iris 7 187108 -NCIT:C8553 Metastatic Malignant Neoplasm in the Ciliary Body 7 187109 -NCIT:C8554 Metastatic Malignant Neoplasm in the Choroid 7 187110 -NCIT:C175470 Secondary Choroidal Non-Hodgkin Lymphoma 8 187111 -NCIT:C175327 Metastatic Malignant Neoplasm in the Lacrimal System 6 187112 -NCIT:C175329 Metastatic Malignant Neoplasm in the Lacrimal Gland 7 187113 -NCIT:C175330 Metastatic Malignant Neoplasm in the Lacrimal Drainage System 7 187114 -NCIT:C8555 Metastatic Malignant Neoplasm in the Retina 6 187115 -NCIT:C4887 Metastatic Malignant Neoplasm in the Trachea 5 187116 -NCIT:C4904 Metastatic Malignant Neoplasm in the Lymph Nodes 5 187117 -NCIT:C153227 Breast Carcinoma Metastatic in the Lymph Nodes 6 187118 -NCIT:C157452 Metastatic Squamous Cell Carcinoma in the Cervical Lymph Nodes 6 187119 -NCIT:C161587 Prostate Carcinoma Metastatic in the Lymph Nodes 6 187120 -NCIT:C175222 Metastatic Malignant Neoplasm in the Regional Lymph Nodes 6 187121 -NCIT:C175934 Metastatic Malignant Neoplasm in the Supraclavicular Lymph Nodes 6 187122 -NCIT:C183510 Metastatic Malignant Neoplasm in the Mediastinal Lymph Nodes 6 187123 -NCIT:C5629 Metastatic Malignant Neoplasm in the Skin 5 187124 -NCIT:C185155 Extramedullary Disease in Plasma Cell Myeloma Involving the Skin 6 187125 -NCIT:C5628 Metastatic Carcinoma in the Skin 6 187126 -NCIT:C188113 Metastatic Squamous Cell Carcinoma in the Skin 7 187127 -NCIT:C28311 Metastatic Breast Carcinoma in the Skin 7 187128 -NCIT:C6332 Metastatic Malignant Neoplasm in the Vulva 5 187129 -NCIT:C6333 Metastatic Malignant Neoplasm in the Vagina 5 187130 -NCIT:C6385 Metastatic Malignant Neoplasm in the Uterine Cervix 5 187131 -NCIT:C6334 Metastatic Carcinoma in the Uterine Cervix 6 187132 -NCIT:C7080 Metastatic Malignant Neoplasm in the Prostate Gland 5 187133 -NCIT:C39899 Secondary Prostate Urothelial Carcinoma 6 187134 -NCIT:C7456 Metastatic Malignant Neoplasm in the Ovary 5 187135 -NCIT:C3153 Krukenberg Tumor 6 187136 -NCIT:C7511 Metastatic Malignant Neoplasm in the Breast 5 187137 -NCIT:C188112 Metastatic Squamous Cell Carcinoma in the Breast 6 187138 -NCIT:C8524 Locally Advanced Malignant Neoplasm 5 187139 -NCIT:C133093 Locally Advanced Malignant Solid Neoplasm 6 187140 -NCIT:C146857 Locally Advanced Epithelioid Hemangioendothelioma 6 187141 -NCIT:C148130 Locally Advanced Carcinoma 6 187142 -NCIT:C148126 Locally Advanced Thymic Carcinoma 7 187143 -NCIT:C153206 Locally Advanced Lung Carcinoma 7 187144 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 8 187145 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 187146 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 187147 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 187148 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 187149 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 187150 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 187151 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 187152 -NCIT:C153213 Locally Advanced Head and Neck Carcinoma 7 187153 -NCIT:C158464 Locally Advanced Salivary Gland Carcinoma 8 187154 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 8 187155 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 187156 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 187157 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 187158 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 187159 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 187160 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 187161 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 187162 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 187163 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 187164 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 187165 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 187166 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 8 187167 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 187168 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 8 187169 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 187170 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 9 187171 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 187172 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 187173 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 9 187174 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 187175 -NCIT:C165562 Locally Advanced Lip and Oral Cavity Carcinoma 8 187176 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 9 187177 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 10 187178 -NCIT:C165563 Locally Advanced Paranasal Sinus Carcinoma 8 187179 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 187180 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 8 187181 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 187182 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 9 187183 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 187184 -NCIT:C153358 Locally Advanced Digestive System Carcinoma 7 187185 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 8 187186 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 187187 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 187188 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 187189 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 8 187190 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 9 187191 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 8 187192 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 187193 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 187194 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 187195 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 187196 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 187197 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 187198 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 187199 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 187200 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 187201 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 187202 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 187203 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 187204 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 187205 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 187206 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 187207 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 187208 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 187209 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 187210 -NCIT:C162772 Locally Advanced Gastric Carcinoma 8 187211 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 9 187212 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 10 187213 -NCIT:C168976 Locally Advanced Esophageal Carcinoma 8 187214 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 9 187215 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 10 187216 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 9 187217 -NCIT:C168977 Locally Advanced Anal Carcinoma 8 187218 -NCIT:C170459 Locally Advanced Pancreatobiliary Carcinoma 8 187219 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 9 187220 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 10 187221 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 11 187222 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 187223 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 12 187224 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 11 187225 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 187226 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 10 187227 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 11 187228 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 9 187229 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 10 187230 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 11 187231 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 11 187232 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 9 187233 -NCIT:C171298 Locally Advanced Liver Carcinoma 8 187234 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 9 187235 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 187236 -NCIT:C154321 Locally Advanced Squamous Cell Carcinoma 7 187237 -NCIT:C153182 Locally Advanced Skin Squamous Cell Carcinoma 8 187238 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 187239 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 187240 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 187241 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 8 187242 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 187243 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 187244 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 187245 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 187246 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 187247 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 187248 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 187249 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 187250 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 187251 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 187252 -NCIT:C165474 Locally Advanced Squamous Cell Carcinoma of Unknown Primary 8 187253 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 8 187254 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 187255 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 8 187256 -NCIT:C155698 Locally Advanced Unresectable Carcinoma 7 187257 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 8 187258 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 8 187259 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 8 187260 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 8 187261 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 187262 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 8 187263 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 187264 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 8 187265 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 187266 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 187267 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 8 187268 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 187269 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 187270 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 187271 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 187272 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 187273 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 187274 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 187275 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 8 187276 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 8 187277 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 8 187278 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 8 187279 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 8 187280 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 8 187281 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 8 187282 -NCIT:C156770 Locally Advanced Basal Cell Carcinoma 7 187283 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 8 187284 -NCIT:C158909 Locally Advanced Neuroendocrine Carcinoma 7 187285 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 187286 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 187287 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 8 187288 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 187289 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 187290 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 8 187291 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 187292 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 8 187293 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 187294 -NCIT:C160920 Locally Advanced Breast Carcinoma 7 187295 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 8 187296 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 187297 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 187298 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 187299 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 187300 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 8 187301 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 187302 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 187303 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 187304 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 187305 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 187306 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 187307 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 187308 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 187309 -NCIT:C167069 Locally Advanced Genitourinary System Carcinoma 7 187310 -NCIT:C156285 Locally Advanced Prostate Carcinoma 8 187311 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 9 187312 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 187313 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 9 187314 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 187315 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 9 187316 -NCIT:C156295 Locally Advanced Cervical Carcinoma 8 187317 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 187318 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 187319 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 9 187320 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 187321 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 187322 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 8 187323 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 187324 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 187325 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 187326 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 187327 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 187328 -NCIT:C167071 Locally Advanced Bladder Carcinoma 8 187329 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 187330 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 9 187331 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 8 187332 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 187333 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 187334 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 187335 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 187336 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 8 187337 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 9 187338 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 8 187339 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 187340 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 187341 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 9 187342 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 8 187343 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 8 187344 -NCIT:C170789 Locally Advanced Penile Carcinoma 8 187345 -NCIT:C172618 Locally Advanced Kidney Carcinoma 8 187346 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 187347 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 187348 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 187349 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 187350 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 187351 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 187352 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 187353 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 187354 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 187355 -NCIT:C167204 Locally Advanced Primary Peritoneal Carcinoma 7 187356 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 8 187357 -NCIT:C168978 Locally Advanced Adenocarcinoma 7 187358 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 8 187359 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 9 187360 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 9 187361 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 8 187362 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 187363 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 8 187364 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 187365 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 8 187366 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 9 187367 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 187368 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 187369 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 187370 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 8 187371 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 187372 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 187373 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 187374 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 187375 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 187376 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 187377 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 187378 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 187379 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 187380 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 8 187381 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 187382 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 9 187383 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 8 187384 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 187385 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 187386 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 187387 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 187388 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 187389 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 187390 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 187391 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 187392 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 8 187393 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 187394 -NCIT:C174045 Locally Advanced Endometrioid Adenocarcinoma 8 187395 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 187396 -NCIT:C174443 Locally Advanced Adrenal Cortical Carcinoma 8 187397 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 8 187398 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 8 187399 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 187400 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 187401 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 187402 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 187403 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 187404 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 187405 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 187406 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 187407 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 187408 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 187409 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 187410 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 187411 -NCIT:C175493 Locally Advanced Transitional Cell Carcinoma 7 187412 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 8 187413 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 187414 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 187415 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 187416 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 187417 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 187418 -NCIT:C175669 Locally Advanced Adenoid Cystic Carcinoma 7 187419 -NCIT:C148494 Locally Advanced Melanoma 6 187420 -NCIT:C171285 Locally Advanced Cutaneous Melanoma 7 187421 -NCIT:C171297 Locally Advanced Non-Cutaneous Melanoma 7 187422 -NCIT:C171296 Locally Advanced Ocular Melanoma 8 187423 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 9 187424 -NCIT:C153071 Locally Advanced Sarcoma 6 187425 -NCIT:C146856 Locally Advanced Angiosarcoma 7 187426 -NCIT:C153066 Locally Advanced Soft Tissue Sarcoma 7 187427 -NCIT:C150739 Locally Advanced Gastrointestinal Stromal Tumor 8 187428 -NCIT:C153476 Locally Advanced Unresectable Soft Tissue Sarcoma 8 187429 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 9 187430 -NCIT:C160919 Locally Advanced Undifferentiated Pleomorphic Sarcoma 8 187431 -NCIT:C164076 Locally Advanced Alveolar Soft Part Sarcoma 8 187432 -NCIT:C166415 Locally Advanced Rhabdomyosarcoma 8 187433 -NCIT:C167378 Locally Advanced Epithelioid Sarcoma 8 187434 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 8 187435 -NCIT:C171399 Locally Advanced Synovial Sarcoma 8 187436 -NCIT:C180875 Locally Advanced Desmoplastic Small Round Cell Tumor 8 187437 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 8 187438 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 9 187439 -NCIT:C153070 Locally Advanced Bone Sarcoma 7 187440 -NCIT:C153475 Locally Advanced Unresectable Bone Sarcoma 8 187441 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 9 187442 -NCIT:C153477 Locally Advanced Unresectable Sarcoma 7 187443 -NCIT:C153475 Locally Advanced Unresectable Bone Sarcoma 8 187444 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 9 187445 -NCIT:C153476 Locally Advanced Unresectable Soft Tissue Sarcoma 8 187446 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 9 187447 -NCIT:C160916 Locally Advanced Liposarcoma 7 187448 -NCIT:C164071 Locally Advanced Dedifferentiated Liposarcoma 8 187449 -NCIT:C160917 Locally Advanced Leiomyosarcoma 7 187450 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 8 187451 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 9 187452 -NCIT:C164074 Locally Advanced Malignant Peripheral Nerve Sheath Tumor 7 187453 -NCIT:C164080 Locally Advanced Ewing Sarcoma 7 187454 -NCIT:C168668 Locally Advanced High Grade Sarcoma 7 187455 -NCIT:C170953 Locally Advanced Chondrosarcoma 7 187456 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 8 187457 -NCIT:C171317 Locally Advanced Fibrosarcoma 7 187458 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 8 187459 -NCIT:C175665 Locally Advanced Osteosarcoma 7 187460 -NCIT:C153278 Locally Advanced Unresectable Malignant Neoplasm 6 187461 -NCIT:C153477 Locally Advanced Unresectable Sarcoma 7 187462 -NCIT:C153475 Locally Advanced Unresectable Bone Sarcoma 8 187463 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 9 187464 -NCIT:C153476 Locally Advanced Unresectable Soft Tissue Sarcoma 8 187465 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 9 187466 -NCIT:C155698 Locally Advanced Unresectable Carcinoma 7 187467 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 8 187468 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 8 187469 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 8 187470 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 8 187471 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 187472 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 8 187473 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 187474 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 8 187475 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 187476 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 187477 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 8 187478 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 187479 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 187480 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 187481 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 187482 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 187483 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 187484 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 187485 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 8 187486 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 8 187487 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 8 187488 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 8 187489 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 8 187490 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 8 187491 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 8 187492 -NCIT:C158090 Locally Advanced Unresectable Digestive System Neuroendocrine Neoplasm 7 187493 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 7 187494 -NCIT:C153324 Locally Advanced Chordoma 6 187495 -NCIT:C166182 Locally Advanced Primary Malignant Central Nervous System Neoplasm 6 187496 -NCIT:C180874 Locally Advanced Primary Malignant Brain Neoplasm 7 187497 -NCIT:C180876 Locally Advanced Glioma 7 187498 -NCIT:C170980 Locally Advanced Glioblastoma 8 187499 -NCIT:C167332 Locally Advanced Neuroendocrine Neoplasm 6 187500 -NCIT:C133713 Locally Advanced Paraganglioma 7 187501 -NCIT:C157129 Locally Advanced Adrenal Gland Pheochromocytoma 8 187502 -NCIT:C158909 Locally Advanced Neuroendocrine Carcinoma 7 187503 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 187504 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 187505 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 8 187506 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 187507 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 187508 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 8 187509 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 187510 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 8 187511 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 187512 -NCIT:C167333 Locally Advanced Neuroendocrine Tumor 7 187513 -NCIT:C163956 Locally Advanced Pituitary Neuroendocrine Tumor 8 187514 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 8 187515 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 8 187516 -NCIT:C187328 Locally Advanced Carcinoid Tumor 8 187517 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 9 187518 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 8 187519 -NCIT:C176715 Locally Advanced Lung Neuroendocrine Neoplasm 7 187520 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 187521 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 187522 -NCIT:C178271 Locally Advanced Digestive System Neuroendocrine Neoplasm 7 187523 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 187524 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 187525 -NCIT:C158090 Locally Advanced Unresectable Digestive System Neuroendocrine Neoplasm 8 187526 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 8 187527 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 8 187528 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 8 187529 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 8 187530 -NCIT:C170460 Locally Advanced Malignant Female Reproductive System Neoplasm 6 187531 -NCIT:C156295 Locally Advanced Cervical Carcinoma 7 187532 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 8 187533 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 187534 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 8 187535 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 187536 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 8 187537 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 7 187538 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 187539 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 187540 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 187541 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 8 187542 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 7 187543 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 8 187544 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 7 187545 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 8 187546 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 187547 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 8 187548 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 7 187549 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 7 187550 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 7 187551 -NCIT:C170470 Locally Advanced Malignant Head and Neck Neoplasm 6 187552 -NCIT:C153213 Locally Advanced Head and Neck Carcinoma 7 187553 -NCIT:C158464 Locally Advanced Salivary Gland Carcinoma 8 187554 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 8 187555 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 187556 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 187557 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 187558 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 187559 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 187560 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 187561 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 187562 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 187563 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 187564 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 187565 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 187566 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 8 187567 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 187568 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 8 187569 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 187570 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 9 187571 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 187572 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 187573 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 9 187574 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 187575 -NCIT:C165562 Locally Advanced Lip and Oral Cavity Carcinoma 8 187576 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 9 187577 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 10 187578 -NCIT:C165563 Locally Advanced Paranasal Sinus Carcinoma 8 187579 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 187580 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 8 187581 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 187582 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 9 187583 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 187584 -NCIT:C171284 Locally Advanced Malignant Skin Neoplasm 6 187585 -NCIT:C153182 Locally Advanced Skin Squamous Cell Carcinoma 7 187586 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 187587 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 7 187588 -NCIT:C171285 Locally Advanced Cutaneous Melanoma 7 187589 -NCIT:C180374 Early Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 7 187590 -NCIT:C175663 Locally Advanced Malignant Glomus Tumor 6 187591 -NCIT:C175935 Locally Advanced Malignant Mesothelioma 6 187592 -NCIT:C175936 Locally Advanced Pleural Malignant Mesothelioma 7 187593 -NCIT:C176994 Locally Advanced Lymphoma 6 187594 -NCIT:C180374 Early Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 7 187595 -NCIT:C179181 Locally Advanced Malignant Digestive System Neoplasm 6 187596 -NCIT:C153358 Locally Advanced Digestive System Carcinoma 7 187597 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 8 187598 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 187599 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 187600 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 187601 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 8 187602 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 9 187603 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 8 187604 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 187605 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 187606 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 187607 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 187608 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 187609 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 187610 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 187611 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 187612 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 187613 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 187614 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 187615 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 187616 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 187617 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 187618 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 187619 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 187620 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 187621 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 187622 -NCIT:C162772 Locally Advanced Gastric Carcinoma 8 187623 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 9 187624 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 10 187625 -NCIT:C168976 Locally Advanced Esophageal Carcinoma 8 187626 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 9 187627 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 10 187628 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 9 187629 -NCIT:C168977 Locally Advanced Anal Carcinoma 8 187630 -NCIT:C170459 Locally Advanced Pancreatobiliary Carcinoma 8 187631 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 9 187632 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 10 187633 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 11 187634 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 187635 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 12 187636 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 11 187637 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 187638 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 10 187639 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 11 187640 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 9 187641 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 10 187642 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 11 187643 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 11 187644 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 9 187645 -NCIT:C171298 Locally Advanced Liver Carcinoma 8 187646 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 9 187647 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 187648 -NCIT:C178271 Locally Advanced Digestive System Neuroendocrine Neoplasm 7 187649 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 187650 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 187651 -NCIT:C158090 Locally Advanced Unresectable Digestive System Neuroendocrine Neoplasm 8 187652 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 8 187653 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 8 187654 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 8 187655 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 8 187656 -NCIT:C8512 Malignant Neoplasm with Regional Lymph Node Involvement 6 187657 -NCIT:C8544 Metastatic Malignant Neoplasm in the Epididymis 5 187658 -NCIT:C8546 Metastatic Malignant Neoplasm in the Placenta 5 187659 -NCIT:C8547 Metastatic Malignant Neoplasm in the Nervous System 5 187660 -NCIT:C4015 Metastatic Malignant Neoplasm in the Central Nervous System 6 187661 -NCIT:C133501 Breast Carcinoma Metastatic in the Central Nervous System 7 187662 -NCIT:C36301 Breast Carcinoma Metastatic in the Brain 8 187663 -NCIT:C133503 Lung Carcinoma Metastatic in the Central Nervous System 7 187664 -NCIT:C36304 Lung Carcinoma Metastatic in the Brain 8 187665 -NCIT:C133504 Melanoma Metastatic in the Central Nervous System 7 187666 -NCIT:C179206 Melanoma Metastatic in the Brain 8 187667 -NCIT:C155786 Metastatic Malignant Neoplasm in the Sellar Region 7 187668 -NCIT:C6805 Metastatic Malignant Neoplasm in the Pituitary Gland 8 187669 -NCIT:C175220 Metastatic Malignant Neoplasm in the Visual Pathway 7 187670 -NCIT:C3813 Metastatic Malignant Neoplasm in the Brain 7 187671 -NCIT:C179206 Melanoma Metastatic in the Brain 8 187672 -NCIT:C187211 Metastatic Childhood Malignant Neoplasm in the Brain 8 187673 -NCIT:C36301 Breast Carcinoma Metastatic in the Brain 8 187674 -NCIT:C36304 Lung Carcinoma Metastatic in the Brain 8 187675 -NCIT:C5057 Secondary Cerebral Hodgkin Lymphoma 8 187676 -NCIT:C5816 Metastatic Adult Malignant Neoplasm in the Brain 8 187677 -NCIT:C8550 Metastatic Malignant Neoplasm in the Brain Stem 8 187678 -NCIT:C3814 Metastatic Malignant Neoplasm in the Leptomeninges 7 187679 -NCIT:C173916 Recurrent Metastatic Malignant Neoplasm in the Leptomeninges 8 187680 -NCIT:C185039 Extramedullary Disease in Plasma Cell Myeloma Involving the Leptomeninges 8 187681 -NCIT:C5399 Medulloblastoma with Leptomeningeal Spread 8 187682 -NCIT:C5400 Central Nervous System Embryonal Tumor, Not Otherwise Specified with Leptomeningeal Spread 8 187683 -NCIT:C94754 Meningeal Leukemia 8 187684 -NCIT:C9111 Meningeal Chronic Myelogenous Leukemia, BCR-ABL1 Positive 9 187685 -NCIT:C4585 Metastatic Malignant Neoplasm in the Spinal Cord 7 187686 -NCIT:C5439 Drop Metastasis in the Spinal Cord 8 187687 -NCIT:C87797 Secondary Central Nervous System Lymphoma 7 187688 -NCIT:C114949 Secondary Central Nervous System Hodgkin Lymphoma 8 187689 -NCIT:C5057 Secondary Cerebral Hodgkin Lymphoma 9 187690 -NCIT:C114950 Secondary Central Nervous System Non-Hodgkin Lymphoma 8 187691 -NCIT:C8566 Metastatic Malignant Neoplasm of Unknown Primary 5 187692 -NCIT:C132676 Unknown Primary Tumor (Except for EBV-Related and HPV-Related Tumors) and Metastatic Cervical Adenopathy by AJCC v8 Stage 6 187693 -NCIT:C132677 Stage III Unknown Primary Tumor (Except for EBV-Related and HPV-Related Tumors) and Metastatic Cervical Adenopathy AJCC v8 7 187694 -NCIT:C132678 Stage IVA Unknown Primary Tumor (Except for EBV-Related and HPV-Related Tumors) and Metastatic Cervical Adenopathy AJCC v8 7 187695 -NCIT:C132679 Stage IVB Unknown Primary Tumor (Except for EBV-Related and HPV-Related Tumors) and Metastatic Cervical Adenopathy AJCC v8 7 187696 -NCIT:C132680 Stage IVC Unknown Primary Tumor (Except for EBV-Related and HPV-Related Tumors) and Metastatic Cervical Adenopathy AJCC v8 7 187697 -NCIT:C154473 Melanoma of Unknown Primary 6 187698 -NCIT:C3812 Carcinoma of Unknown Primary 6 187699 -NCIT:C162595 Head and Neck Carcinoma of Unknown Primary 7 187700 -NCIT:C173585 Neck Carcinoma of Unknown Primary 8 187701 -NCIT:C7713 Neck Squamous Cell Carcinoma of Unknown Primary 9 187702 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 10 187703 -NCIT:C187051 Human Papillomavirus-Related Head and Neck Squamous Cell Carcinoma of Unknown Primary 8 187704 -NCIT:C190149 Human Papillomavirus-Negative Head and Neck Squamous Cell Carcinoma of Unknown Primary 8 187705 -NCIT:C163975 Neuroendocrine Carcinoma of Unknown Primary 7 187706 -NCIT:C170960 Advanced Carcinoma Of Unknown Primary 7 187707 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 8 187708 -NCIT:C170961 Resectable Carcinoma of Unknown Primary 7 187709 -NCIT:C170962 Resectable Adenocarcinoma of Unknown Primary 8 187710 -NCIT:C4039 Adenocarcinoma of Unknown Primary 7 187711 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 8 187712 -NCIT:C170962 Resectable Adenocarcinoma of Unknown Primary 8 187713 -NCIT:C8099 Squamous Cell Carcinoma of Unknown Primary 7 187714 -NCIT:C165474 Locally Advanced Squamous Cell Carcinoma of Unknown Primary 8 187715 -NCIT:C187051 Human Papillomavirus-Related Head and Neck Squamous Cell Carcinoma of Unknown Primary 8 187716 -NCIT:C190149 Human Papillomavirus-Negative Head and Neck Squamous Cell Carcinoma of Unknown Primary 8 187717 -NCIT:C7713 Neck Squamous Cell Carcinoma of Unknown Primary 8 187718 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 9 187719 -NCIT:C8100 Undifferentiated Carcinoma of Unknown Primary 7 187720 -NCIT:C9181 Recurrent Carcinoma of Unknown Primary 7 187721 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 8 187722 -NCIT:C8610 Metastatic Malignant Neoplasm in the Adrenal Gland 5 187723 -NCIT:C27381 Metastatic Carcinoma in the Adrenal Cortex 6 187724 -NCIT:C9276 Metastatic Carcinoma in the Adrenal Medulla 6 187725 -NCIT:C8615 Metastatic Malignant Neoplasm in the Abdominal Cavity 5 187726 -NCIT:C4583 Metastatic Malignant Neoplasm in the Peritoneum 6 187727 -NCIT:C179654 Metastatic Carcinoma in the Peritoneum 7 187728 -NCIT:C27382 Peritoneal Carcinomatosis 8 187729 -NCIT:C3345 Pseudomyxoma Peritonei 9 187730 -NCIT:C179179 Recurrent Pseudomyxoma Peritonei 10 187731 -NCIT:C179180 Refractory Pseudomyxoma Peritonei 10 187732 -NCIT:C179657 Metastatic Sarcoma in the Peritoneum 7 187733 -NCIT:C179656 Peritoneal Sarcomatosis 8 187734 -NCIT:C8925 Metastatic Melanoma 5 187735 -NCIT:C133504 Melanoma Metastatic in the Central Nervous System 6 187736 -NCIT:C179206 Melanoma Metastatic in the Brain 7 187737 -NCIT:C148494 Locally Advanced Melanoma 6 187738 -NCIT:C171285 Locally Advanced Cutaneous Melanoma 7 187739 -NCIT:C171297 Locally Advanced Non-Cutaneous Melanoma 7 187740 -NCIT:C171296 Locally Advanced Ocular Melanoma 8 187741 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 9 187742 -NCIT:C153169 Advanced Melanoma 6 187743 -NCIT:C171572 Advanced Cutaneous Melanoma 7 187744 -NCIT:C155311 Advanced Cutaneous Melanoma of the Extremity 8 187745 -NCIT:C180895 Advanced Non-Cutaneous Melanoma 7 187746 -NCIT:C180896 Advanced Mucosal Melanoma 8 187747 -NCIT:C190137 Advanced Ocular Melanoma 8 187748 -NCIT:C148515 Advanced Uveal Melanoma 9 187749 -NCIT:C150130 Uveal Melanoma Metastatic in the Liver 10 187750 -NCIT:C154473 Melanoma of Unknown Primary 6 187751 -NCIT:C156072 Metastatic Cutaneous Melanoma 6 187752 -NCIT:C171285 Locally Advanced Cutaneous Melanoma 7 187753 -NCIT:C171572 Advanced Cutaneous Melanoma 7 187754 -NCIT:C155311 Advanced Cutaneous Melanoma of the Extremity 8 187755 -NCIT:C179427 Metastatic Acral Lentiginous Melanoma 7 187756 -NCIT:C182020 Recurrent Metastatic Melanoma 6 187757 -NCIT:C182024 Refractory Metastatic Melanoma 6 187758 -NCIT:C7092 Metastatic Non-Cutaneous Melanoma 6 187759 -NCIT:C169086 Metastatic Mucosal Melanoma 7 187760 -NCIT:C180896 Advanced Mucosal Melanoma 8 187761 -NCIT:C171295 Metastatic Ocular Melanoma 7 187762 -NCIT:C148514 Metastatic Uveal Melanoma 8 187763 -NCIT:C148515 Advanced Uveal Melanoma 9 187764 -NCIT:C150130 Uveal Melanoma Metastatic in the Liver 10 187765 -NCIT:C169085 Metastatic Choroid Melanoma 9 187766 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 9 187767 -NCIT:C171296 Locally Advanced Ocular Melanoma 8 187768 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 9 187769 -NCIT:C182127 Metastatic Conjunctival Melanoma 8 187770 -NCIT:C190137 Advanced Ocular Melanoma 8 187771 -NCIT:C148515 Advanced Uveal Melanoma 9 187772 -NCIT:C150130 Uveal Melanoma Metastatic in the Liver 10 187773 -NCIT:C171297 Locally Advanced Non-Cutaneous Melanoma 7 187774 -NCIT:C171296 Locally Advanced Ocular Melanoma 8 187775 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 9 187776 -NCIT:C180895 Advanced Non-Cutaneous Melanoma 7 187777 -NCIT:C180896 Advanced Mucosal Melanoma 8 187778 -NCIT:C190137 Advanced Ocular Melanoma 8 187779 -NCIT:C148515 Advanced Uveal Melanoma 9 187780 -NCIT:C150130 Uveal Melanoma Metastatic in the Liver 10 187781 -NCIT:C9270 Advanced Malignant Neoplasm 5 187782 -NCIT:C129707 Advanced Malignant Solid Neoplasm 6 187783 -NCIT:C157335 Advanced Extracranial Malignant Solid Neoplasm 7 187784 -NCIT:C187210 Advanced Childhood Malignant Solid Neoplasm 7 187785 -NCIT:C148065 Advanced B-Cell Malignant Neoplasm 6 187786 -NCIT:C171264 Advanced Diffuse Large B-Cell Lymphoma 7 187787 -NCIT:C172359 Advanced Follicular Lymphoma 7 187788 -NCIT:C172360 Advanced Marginal Zone Lymphoma 7 187789 -NCIT:C153169 Advanced Melanoma 6 187790 -NCIT:C171572 Advanced Cutaneous Melanoma 7 187791 -NCIT:C155311 Advanced Cutaneous Melanoma of the Extremity 8 187792 -NCIT:C180895 Advanced Non-Cutaneous Melanoma 7 187793 -NCIT:C180896 Advanced Mucosal Melanoma 8 187794 -NCIT:C190137 Advanced Ocular Melanoma 8 187795 -NCIT:C148515 Advanced Uveal Melanoma 9 187796 -NCIT:C150130 Uveal Melanoma Metastatic in the Liver 10 187797 -NCIT:C153171 Advanced Carcinoma 6 187798 -NCIT:C129861 Advanced Head and Neck Carcinoma 7 187799 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 8 187800 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 187801 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 187802 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 187803 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 187804 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 187805 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 187806 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 187807 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 8 187808 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 187809 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 187810 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 187811 -NCIT:C170784 Advanced Pharyngeal Carcinoma 8 187812 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 9 187813 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 187814 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 187815 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 187816 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 187817 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 187818 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 9 187819 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 187820 -NCIT:C177723 Advanced Salivary Gland Carcinoma 8 187821 -NCIT:C153203 Advanced Lung Carcinoma 7 187822 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 187823 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 8 187824 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 187825 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 187826 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 187827 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 187828 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 187829 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 187830 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 187831 -NCIT:C180922 Advanced Bronchogenic Carcinoma 8 187832 -NCIT:C155870 Advanced Neuroendocrine Carcinoma 7 187833 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 187834 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 187835 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 187836 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 187837 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 187838 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 187839 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 187840 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 187841 -NCIT:C165300 Advanced Merkel Cell Carcinoma 8 187842 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 8 187843 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 187844 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 187845 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 187846 -NCIT:C156746 Advanced Digestive System Carcinoma 7 187847 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 187848 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 187849 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 187850 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 8 187851 -NCIT:C160599 Advanced Esophageal Carcinoma 8 187852 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 9 187853 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 9 187854 -NCIT:C162475 Advanced Colorectal Carcinoma 8 187855 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 187856 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 187857 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 187858 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 187859 -NCIT:C167238 Advanced Colon Carcinoma 9 187860 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 187861 -NCIT:C170777 Advanced Rectal Carcinoma 9 187862 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 187863 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 187864 -NCIT:C165299 Advanced Gastric Carcinoma 8 187865 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 187866 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 187867 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 187868 -NCIT:C166255 Advanced Gastric Adenocarcinoma 9 187869 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 10 187870 -NCIT:C167336 Advanced Hepatocellular Carcinoma 8 187871 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 187872 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 187873 -NCIT:C170515 Advanced Anal Carcinoma 8 187874 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 187875 -NCIT:C171330 Advanced Pancreatobiliary Carcinoma 8 187876 -NCIT:C165452 Advanced Pancreatic Carcinoma 9 187877 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 10 187878 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 11 187879 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 9 187880 -NCIT:C171331 Advanced Biliary Tract Carcinoma 9 187881 -NCIT:C142870 Advanced Bile Duct Carcinoma 10 187882 -NCIT:C162752 Advanced Cholangiocarcinoma 11 187883 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 187884 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 187885 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 187886 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 11 187887 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 187888 -NCIT:C162755 Advanced Gallbladder Carcinoma 10 187889 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 187890 -NCIT:C159556 Advanced Adenocarcinoma 7 187891 -NCIT:C153170 Advanced Renal Cell Carcinoma 8 187892 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 187893 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 187894 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 187895 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 187896 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 187897 -NCIT:C156286 Advanced Prostate Adenocarcinoma 8 187898 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 187899 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 187900 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 8 187901 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 8 187902 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 9 187903 -NCIT:C162752 Advanced Cholangiocarcinoma 8 187904 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 9 187905 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 9 187906 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 9 187907 -NCIT:C165700 Advanced Breast Adenocarcinoma 8 187908 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 187909 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 187910 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 187911 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 187912 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 187913 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 187914 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 187915 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 187916 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 187917 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 187918 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 187919 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 187920 -NCIT:C167336 Advanced Hepatocellular Carcinoma 8 187921 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 187922 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 187923 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 8 187924 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 187925 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 187926 -NCIT:C170807 Advanced Endometrioid Adenocarcinoma 8 187927 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 187928 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 187929 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 187930 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 187931 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 187932 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 187933 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 8 187934 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 8 187935 -NCIT:C176727 Advanced Lung Adenocarcinoma 8 187936 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 187937 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 187938 -NCIT:C191863 Advanced Adrenal Cortical Carcinoma 8 187939 -NCIT:C159903 Advanced Thymic Carcinoma 7 187940 -NCIT:C160298 Advanced NUT Carcinoma 7 187941 -NCIT:C162648 Advanced Breast Carcinoma 7 187942 -NCIT:C165700 Advanced Breast Adenocarcinoma 8 187943 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 187944 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 187945 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 187946 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 187947 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 187948 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 187949 -NCIT:C162653 Advanced Squamous Cell Carcinoma 7 187950 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 8 187951 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 187952 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 187953 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 187954 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 187955 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 187956 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 187957 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 187958 -NCIT:C168542 Advanced Skin Squamous Cell Carcinoma 8 187959 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 187960 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 8 187961 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 187962 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 187963 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 187964 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 8 187965 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 187966 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 187967 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 187968 -NCIT:C164012 Advanced Adenoid Cystic Carcinoma 7 187969 -NCIT:C164143 Advanced Genitourinary System Carcinoma 7 187970 -NCIT:C148493 Advanced Urothelial Carcinoma 8 187971 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 187972 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 187973 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 187974 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 187975 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 187976 -NCIT:C156284 Advanced Prostate Carcinoma 8 187977 -NCIT:C156286 Advanced Prostate Adenocarcinoma 9 187978 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 187979 -NCIT:C156294 Advanced Cervical Carcinoma 8 187980 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 187981 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 187982 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 187983 -NCIT:C159676 Advanced Endometrial Carcinoma 8 187984 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 187985 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 187986 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 187987 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 187988 -NCIT:C165458 Advanced Ovarian Carcinoma 8 187989 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 187990 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 187991 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 187992 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 187993 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 187994 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 187995 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 187996 -NCIT:C167338 Advanced Bladder Carcinoma 8 187997 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 187998 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 8 187999 -NCIT:C170786 Advanced Vulvar Carcinoma 8 188000 -NCIT:C170788 Advanced Vaginal Carcinoma 8 188001 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 188002 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 188003 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 188004 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 188005 -NCIT:C170790 Advanced Penile Carcinoma 8 188006 -NCIT:C172617 Advanced Kidney Carcinoma 8 188007 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 188008 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 188009 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 188010 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 188011 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 188012 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 188013 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 188014 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 188015 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 188016 -NCIT:C167396 Advanced Primary Peritoneal Carcinoma 7 188017 -NCIT:C170960 Advanced Carcinoma Of Unknown Primary 7 188018 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 8 188019 -NCIT:C172091 Advanced Transitional Cell Carcinoma 7 188020 -NCIT:C148493 Advanced Urothelial Carcinoma 8 188021 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 188022 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 188023 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 188024 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 188025 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 188026 -NCIT:C172362 Advanced Basal Cell Carcinoma 7 188027 -NCIT:C153172 Advanced Lymphoma 6 188028 -NCIT:C172371 Advanced Non-Hodgkin Lymphoma 7 188029 -NCIT:C166180 Advanced Anaplastic Large Cell Lymphoma 8 188030 -NCIT:C171264 Advanced Diffuse Large B-Cell Lymphoma 8 188031 -NCIT:C172359 Advanced Follicular Lymphoma 8 188032 -NCIT:C172360 Advanced Marginal Zone Lymphoma 8 188033 -NCIT:C172361 Advanced Transformed Non-Hodgkin Lymphoma 8 188034 -NCIT:C172442 Advanced Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 188035 -NCIT:C53283 Advanced Favorable Non-Hodgkin Lymphoma 8 188036 -NCIT:C53284 Advanced Unfavorable Non-Hodgkin Lymphoma 8 188037 -NCIT:C172373 Advanced Hodgkin Lymphoma 7 188038 -NCIT:C68662 Advanced Favorable Hodgkin Lymphoma 8 188039 -NCIT:C68665 Advanced Unfavorable Hodgkin Lymphoma 8 188040 -NCIT:C153185 Advanced Sarcoma 6 188041 -NCIT:C155649 Advanced Sarcoma of the Extremity 7 188042 -NCIT:C162194 Advanced Soft Tissue Sarcoma 7 188043 -NCIT:C153184 Advanced Synovial Sarcoma 8 188044 -NCIT:C156476 Advanced Kaposi Sarcoma 8 188045 -NCIT:C161586 Advanced Clear Cell Sarcoma of Soft Tissue 8 188046 -NCIT:C164246 Advanced Malignant PEComa 8 188047 -NCIT:C165781 Advanced Undifferentiated Pleomorphic Sarcoma 8 188048 -NCIT:C167380 Advanced Epithelioid Sarcoma 8 188049 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 8 188050 -NCIT:C171304 Advanced Myxofibrosarcoma 8 188051 -NCIT:C173502 Advanced Gastrointestinal Stromal Tumor 8 188052 -NCIT:C188198 Advanced Alveolar Soft Part Sarcoma 8 188053 -NCIT:C162762 Advanced Bone Sarcoma 7 188054 -NCIT:C165780 Advanced Leiomyosarcoma 7 188055 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 8 188056 -NCIT:C168701 Advanced Liposarcoma 7 188057 -NCIT:C162763 Advanced Myxoid Liposarcoma 8 188058 -NCIT:C168715 Advanced Dedifferentiated Liposarcoma 8 188059 -NCIT:C182026 Advanced Pleomorphic Liposarcoma 8 188060 -NCIT:C168714 Advanced Malignant Peripheral Nerve Sheath Tumor 7 188061 -NCIT:C168716 Advanced Fibrosarcoma 7 188062 -NCIT:C171304 Advanced Myxofibrosarcoma 8 188063 -NCIT:C168720 Advanced Angiosarcoma 7 188064 -NCIT:C156486 Advanced Neuroendocrine Neoplasm 6 188065 -NCIT:C154621 Advanced Neuroendocrine Tumor 7 188066 -NCIT:C140328 Advanced Non-Functioning Neuroendocrine Tumor 8 188067 -NCIT:C156487 Advanced Carcinoid Tumor 8 188068 -NCIT:C177245 Advanced Lung Carcinoid Tumor 9 188069 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 9 188070 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 188071 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 8 188072 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 188073 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 188074 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 8 188075 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 188076 -NCIT:C155870 Advanced Neuroendocrine Carcinoma 7 188077 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 188078 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 188079 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 188080 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 188081 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 188082 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 188083 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 188084 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 188085 -NCIT:C165300 Advanced Merkel Cell Carcinoma 8 188086 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 8 188087 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 188088 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 188089 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 188090 -NCIT:C158089 Advanced Digestive System Neuroendocrine Neoplasm 7 188091 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 188092 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 188093 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 188094 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 188095 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 188096 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 188097 -NCIT:C165448 Advanced Pancreatic Neuroendocrine Neoplasm 8 188098 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 9 188099 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 188100 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 10 188101 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 8 188102 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 188103 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 8 188104 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 188105 -NCIT:C160852 Advanced Paraganglioma 7 188106 -NCIT:C160853 Advanced Adrenal Gland Pheochromocytoma 8 188107 -NCIT:C165446 Advanced Lung Neuroendocrine Neoplasm 7 188108 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 188109 -NCIT:C177245 Advanced Lung Carcinoid Tumor 8 188110 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 188111 -NCIT:C180871 Advanced Thymic Neuroendocrine Neoplasm 7 188112 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 7 188113 -NCIT:C159904 Advanced Malignant Thymoma 6 188114 -NCIT:C168721 Advanced Epithelioid Hemangioendothelioma 6 188115 -NCIT:C170469 Advanced Malignant Head and Neck Neoplasm 6 188116 -NCIT:C129861 Advanced Head and Neck Carcinoma 7 188117 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 8 188118 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 188119 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 188120 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 188121 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 188122 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 188123 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 188124 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 188125 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 8 188126 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 188127 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 188128 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 188129 -NCIT:C170784 Advanced Pharyngeal Carcinoma 8 188130 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 9 188131 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 188132 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 188133 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 188134 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 188135 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 188136 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 9 188137 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 188138 -NCIT:C177723 Advanced Salivary Gland Carcinoma 8 188139 -NCIT:C170812 Advanced Malignant Skin Neoplasm 6 188140 -NCIT:C165300 Advanced Merkel Cell Carcinoma 7 188141 -NCIT:C168542 Advanced Skin Squamous Cell Carcinoma 7 188142 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 188143 -NCIT:C171572 Advanced Cutaneous Melanoma 7 188144 -NCIT:C155311 Advanced Cutaneous Melanoma of the Extremity 8 188145 -NCIT:C172442 Advanced Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 7 188146 -NCIT:C170928 Advanced Carcinosarcoma 6 188147 -NCIT:C170930 Advanced Malignant Mixed Mesodermal (Mullerian) Tumor 7 188148 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 8 188149 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 8 188150 -NCIT:C170966 Advanced Primary Malignant Central Nervous System Neoplasm 6 188151 -NCIT:C170978 Advanced Glioblastoma 7 188152 -NCIT:C175549 Advanced Primary Malignant Brain Neoplasm 7 188153 -NCIT:C187213 Advanced Childhood Malignant Brain Neoplasm 8 188154 -NCIT:C170967 Advanced Malignant Germ Cell Tumor 6 188155 -NCIT:C170958 Advanced Platinum-Resistant Malignant Germ Cell Tumor 7 188156 -NCIT:C187316 Advanced Malignant Testicular Germ Cell Tumor 7 188157 -NCIT:C173333 Advanced Chordoma 6 188158 -NCIT:C174568 Advanced Rhabdoid Tumor 6 188159 -NCIT:C175547 Advanced Malignant Digestive System Neoplasm 6 188160 -NCIT:C156746 Advanced Digestive System Carcinoma 7 188161 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 188162 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 188163 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 188164 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 8 188165 -NCIT:C160599 Advanced Esophageal Carcinoma 8 188166 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 9 188167 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 9 188168 -NCIT:C162475 Advanced Colorectal Carcinoma 8 188169 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 188170 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 188171 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 188172 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 188173 -NCIT:C167238 Advanced Colon Carcinoma 9 188174 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 188175 -NCIT:C170777 Advanced Rectal Carcinoma 9 188176 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 188177 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 188178 -NCIT:C165299 Advanced Gastric Carcinoma 8 188179 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 188180 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 188181 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 188182 -NCIT:C166255 Advanced Gastric Adenocarcinoma 9 188183 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 10 188184 -NCIT:C167336 Advanced Hepatocellular Carcinoma 8 188185 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 188186 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 188187 -NCIT:C170515 Advanced Anal Carcinoma 8 188188 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 188189 -NCIT:C171330 Advanced Pancreatobiliary Carcinoma 8 188190 -NCIT:C165452 Advanced Pancreatic Carcinoma 9 188191 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 10 188192 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 11 188193 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 9 188194 -NCIT:C171331 Advanced Biliary Tract Carcinoma 9 188195 -NCIT:C142870 Advanced Bile Duct Carcinoma 10 188196 -NCIT:C162752 Advanced Cholangiocarcinoma 11 188197 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 188198 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 188199 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 188200 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 11 188201 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 188202 -NCIT:C162755 Advanced Gallbladder Carcinoma 10 188203 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 188204 -NCIT:C158089 Advanced Digestive System Neuroendocrine Neoplasm 7 188205 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 188206 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 188207 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 188208 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 188209 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 188210 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 188211 -NCIT:C165448 Advanced Pancreatic Neuroendocrine Neoplasm 8 188212 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 9 188213 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 188214 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 10 188215 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 8 188216 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 188217 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 8 188218 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 188219 -NCIT:C176679 Advanced Malignant Small Intestinal Neoplasm 7 188220 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 188221 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 188222 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 188223 -NCIT:C176859 Advanced Malignant Genitourinary System Neoplasm 6 188224 -NCIT:C164143 Advanced Genitourinary System Carcinoma 7 188225 -NCIT:C148493 Advanced Urothelial Carcinoma 8 188226 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 188227 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 188228 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 188229 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 188230 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 188231 -NCIT:C156284 Advanced Prostate Carcinoma 8 188232 -NCIT:C156286 Advanced Prostate Adenocarcinoma 9 188233 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 188234 -NCIT:C156294 Advanced Cervical Carcinoma 8 188235 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 188236 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 188237 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 188238 -NCIT:C159676 Advanced Endometrial Carcinoma 8 188239 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 188240 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 188241 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 188242 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 188243 -NCIT:C165458 Advanced Ovarian Carcinoma 8 188244 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 188245 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 188246 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 188247 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 188248 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 188249 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 188250 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 188251 -NCIT:C167338 Advanced Bladder Carcinoma 8 188252 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 188253 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 8 188254 -NCIT:C170786 Advanced Vulvar Carcinoma 8 188255 -NCIT:C170788 Advanced Vaginal Carcinoma 8 188256 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 188257 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 188258 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 188259 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 188260 -NCIT:C170790 Advanced Penile Carcinoma 8 188261 -NCIT:C172617 Advanced Kidney Carcinoma 8 188262 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 188263 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 188264 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 188265 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 188266 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 188267 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 188268 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 188269 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 188270 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 188271 -NCIT:C167260 Advanced Malignant Female Reproductive System Neoplasm 7 188272 -NCIT:C156294 Advanced Cervical Carcinoma 8 188273 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 188274 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 188275 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 188276 -NCIT:C165458 Advanced Ovarian Carcinoma 8 188277 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 188278 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 188279 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 188280 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 188281 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 188282 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 188283 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 188284 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 8 188285 -NCIT:C170786 Advanced Vulvar Carcinoma 8 188286 -NCIT:C170788 Advanced Vaginal Carcinoma 8 188287 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 188288 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 188289 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 188290 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 188291 -NCIT:C170930 Advanced Malignant Mixed Mesodermal (Mullerian) Tumor 8 188292 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 9 188293 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 9 188294 -NCIT:C172450 Advanced Uterine Corpus Cancer 8 188295 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 9 188296 -NCIT:C159676 Advanced Endometrial Carcinoma 9 188297 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 10 188298 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 11 188299 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 11 188300 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 10 188301 -NCIT:C187316 Advanced Malignant Testicular Germ Cell Tumor 7 188302 -NCIT:C176863 Advanced Malignant Thoracic Neoplasm 6 188303 -NCIT:C153203 Advanced Lung Carcinoma 7 188304 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 188305 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 8 188306 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 188307 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 188308 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 188309 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 188310 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 188311 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 188312 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 188313 -NCIT:C180922 Advanced Bronchogenic Carcinoma 8 188314 -NCIT:C159903 Advanced Thymic Carcinoma 7 188315 -NCIT:C165446 Advanced Lung Neuroendocrine Neoplasm 7 188316 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 188317 -NCIT:C177245 Advanced Lung Carcinoid Tumor 8 188318 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 188319 -NCIT:C8703 Advanced Pericardial Malignant Mesothelioma 7 188320 -NCIT:C8706 Advanced Pleural Malignant Mesothelioma 7 188321 -NCIT:C183305 Advanced Malignant Abdominal Neoplasm 6 188322 -NCIT:C7865 Advanced Malignant Mesothelioma 6 188323 -NCIT:C175937 Advanced Epithelioid Mesothelioma 7 188324 -NCIT:C8703 Advanced Pericardial Malignant Mesothelioma 7 188325 -NCIT:C8704 Advanced Peritoneal Malignant Mesothelioma 7 188326 -NCIT:C8706 Advanced Pleural Malignant Mesothelioma 7 188327 -NCIT:C36310 Secondary Carcinoma 4 188328 -NCIT:C167344 Spiradenocylindrocarcinoma 5 188329 -NCIT:C3482 Metastatic Carcinoma 5 188330 -NCIT:C126465 Metastatic Head and Neck Carcinoma 6 188331 -NCIT:C129861 Advanced Head and Neck Carcinoma 7 188332 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 8 188333 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 188334 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 188335 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 188336 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 188337 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 188338 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 188339 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 188340 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 8 188341 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 188342 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 188343 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 188344 -NCIT:C170784 Advanced Pharyngeal Carcinoma 8 188345 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 9 188346 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 188347 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 188348 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 188349 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 188350 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 188351 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 9 188352 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 188353 -NCIT:C177723 Advanced Salivary Gland Carcinoma 8 188354 -NCIT:C133193 Metastatic Thyroid Gland Carcinoma 7 188355 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 8 188356 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 188357 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 188358 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 8 188359 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 188360 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 188361 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 188362 -NCIT:C170831 Metastatic Thyroid Gland Anaplastic Carcinoma 8 188363 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 188364 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 188365 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 8 188366 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 188367 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 9 188368 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 188369 -NCIT:C173979 Metastatic Differentiated Thyroid Gland Carcinoma 8 188370 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 9 188371 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 10 188372 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 11 188373 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 9 188374 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 188375 -NCIT:C174046 Metastatic Poorly Differentiated Thyroid Gland Carcinoma 8 188376 -NCIT:C148153 Metastatic Head and Neck Squamous Cell Carcinoma 7 188377 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 8 188378 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 188379 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 188380 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 188381 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 188382 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 188383 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 188384 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 188385 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 188386 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 188387 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 188388 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 8 188389 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 188390 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 188391 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 188392 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 8 188393 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 188394 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 188395 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 188396 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 188397 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 188398 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 188399 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 188400 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 188401 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 188402 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 188403 -NCIT:C162882 Metastatic Sinonasal Squamous Cell Carcinoma 8 188404 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 188405 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 188406 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 188407 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 9 188408 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 188409 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 9 188410 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 188411 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 188412 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 188413 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 188414 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 8 188415 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 8 188416 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 188417 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 188418 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 188419 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 188420 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 188421 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 188422 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 188423 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 188424 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 188425 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 188426 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 188427 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 188428 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 188429 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 188430 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 188431 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 188432 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 188433 -NCIT:C153213 Locally Advanced Head and Neck Carcinoma 7 188434 -NCIT:C158464 Locally Advanced Salivary Gland Carcinoma 8 188435 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 8 188436 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 188437 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 188438 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 188439 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 188440 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 188441 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 188442 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 188443 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 188444 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 188445 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 188446 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 188447 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 8 188448 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 188449 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 8 188450 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 188451 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 9 188452 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 188453 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 188454 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 9 188455 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 188456 -NCIT:C165562 Locally Advanced Lip and Oral Cavity Carcinoma 8 188457 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 9 188458 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 10 188459 -NCIT:C165563 Locally Advanced Paranasal Sinus Carcinoma 8 188460 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 188461 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 8 188462 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 188463 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 9 188464 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 188465 -NCIT:C156080 Metastatic Pharyngeal Carcinoma 7 188466 -NCIT:C156079 Metastatic Nasopharyngeal Carcinoma 8 188467 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 188468 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 188469 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 188470 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 188471 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 188472 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 188473 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 9 188474 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 188475 -NCIT:C156081 Metastatic Hypopharyngeal Carcinoma 8 188476 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 188477 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 188478 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 188479 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 9 188480 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 188481 -NCIT:C156082 Metastatic Oropharyngeal Carcinoma 8 188482 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 188483 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 188484 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 188485 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 188486 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 9 188487 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 188488 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 188489 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 9 188490 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 188491 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 8 188492 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 188493 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 9 188494 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 188495 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 188496 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 9 188497 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 188498 -NCIT:C170784 Advanced Pharyngeal Carcinoma 8 188499 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 9 188500 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 188501 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 188502 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 188503 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 188504 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 188505 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 9 188506 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 188507 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 8 188508 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 188509 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 188510 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 188511 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 188512 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 188513 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 188514 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 188515 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 188516 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 188517 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 188518 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 188519 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 188520 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 188521 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 188522 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 188523 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 188524 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 188525 -NCIT:C156085 Metastatic Laryngeal Carcinoma 7 188526 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 8 188527 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 188528 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 188529 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 8 188530 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 188531 -NCIT:C156086 Metastatic Lip and Oral Cavity Carcinoma 7 188532 -NCIT:C156087 Metastatic Oral Cavity Carcinoma 8 188533 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 9 188534 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 10 188535 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 10 188536 -NCIT:C156089 Metastatic Oral Cavity Adenoid Cystic Carcinoma 9 188537 -NCIT:C156090 Metastatic Oral Cavity Mucoepidermoid Carcinoma 9 188538 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 9 188539 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 10 188540 -NCIT:C156088 Metastatic Lip Carcinoma 8 188541 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 9 188542 -NCIT:C165562 Locally Advanced Lip and Oral Cavity Carcinoma 8 188543 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 9 188544 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 10 188545 -NCIT:C158463 Metastatic Salivary Gland Carcinoma 7 188546 -NCIT:C158464 Locally Advanced Salivary Gland Carcinoma 8 188547 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 8 188548 -NCIT:C177723 Advanced Salivary Gland Carcinoma 8 188549 -NCIT:C5899 Stage IV Major Salivary Gland Carcinoma with Metastasis 8 188550 -NCIT:C9044 Metastatic Parathyroid Gland Carcinoma 7 188551 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 188552 -NCIT:C129828 Metastatic Transitional Cell Carcinoma 6 188553 -NCIT:C126109 Metastatic Urothelial Carcinoma 7 188554 -NCIT:C148493 Advanced Urothelial Carcinoma 8 188555 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 188556 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 188557 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 188558 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 188559 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 188560 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 188561 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 188562 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 188563 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 188564 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 188565 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 188566 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 188567 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 188568 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 188569 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 188570 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 188571 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 188572 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 188573 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 188574 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 8 188575 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 188576 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 188577 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 188578 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 188579 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 188580 -NCIT:C191692 Metastatic Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 188581 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 188582 -NCIT:C191693 Metastatic Giant Cell Urothelial Carcinoma 8 188583 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 188584 -NCIT:C191694 Metastatic Lipid-Rich Urothelial Carcinoma 8 188585 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 188586 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 8 188587 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 188588 -NCIT:C191696 Metastatic Nested Urothelial Carcinoma 8 188589 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 188590 -NCIT:C191697 Metastatic Plasmacytoid Urothelial Carcinoma 8 188591 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 188592 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 8 188593 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 188594 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 8 188595 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 188596 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 188597 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 188598 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 9 188599 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 188600 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 188601 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 188602 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 188603 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 188604 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 188605 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 188606 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 188607 -NCIT:C172091 Advanced Transitional Cell Carcinoma 7 188608 -NCIT:C148493 Advanced Urothelial Carcinoma 8 188609 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 188610 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 188611 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 188612 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 188613 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 188614 -NCIT:C175493 Locally Advanced Transitional Cell Carcinoma 7 188615 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 8 188616 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 188617 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 188618 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 188619 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 188620 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 188621 -NCIT:C133839 Metastatic Digestive System Carcinoma 6 188622 -NCIT:C150577 Metastatic Gastroesophageal Junction Adenocarcinoma 7 188623 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 8 188624 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 8 188625 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 9 188626 -NCIT:C151904 Refractory Metastatic Digestive System Carcinoma 7 188627 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 8 188628 -NCIT:C151905 Recurrent Metastatic Digestive System Carcinoma 7 188629 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 8 188630 -NCIT:C153320 Metastatic Gastric Carcinoma 7 188631 -NCIT:C153319 Metastatic Gastric Adenocarcinoma 8 188632 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 9 188633 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 10 188634 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 10 188635 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 9 188636 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 10 188637 -NCIT:C165630 Metastatic Proximal Gastric Adenocarcinoma 9 188638 -NCIT:C166121 Oligometastatic Gastric Adenocarcinoma 9 188639 -NCIT:C166255 Advanced Gastric Adenocarcinoma 9 188640 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 10 188641 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 8 188642 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 188643 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 188644 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 188645 -NCIT:C162772 Locally Advanced Gastric Carcinoma 8 188646 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 9 188647 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 10 188648 -NCIT:C165299 Advanced Gastric Carcinoma 8 188649 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 188650 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 188651 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 188652 -NCIT:C166255 Advanced Gastric Adenocarcinoma 9 188653 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 10 188654 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 8 188655 -NCIT:C153358 Locally Advanced Digestive System Carcinoma 7 188656 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 8 188657 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 188658 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 188659 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 188660 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 8 188661 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 9 188662 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 8 188663 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 188664 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 188665 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 188666 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 188667 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 188668 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 188669 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 188670 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 188671 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 188672 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 188673 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 188674 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 188675 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 188676 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 188677 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 188678 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 188679 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 188680 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 188681 -NCIT:C162772 Locally Advanced Gastric Carcinoma 8 188682 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 9 188683 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 10 188684 -NCIT:C168976 Locally Advanced Esophageal Carcinoma 8 188685 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 9 188686 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 10 188687 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 9 188688 -NCIT:C168977 Locally Advanced Anal Carcinoma 8 188689 -NCIT:C170459 Locally Advanced Pancreatobiliary Carcinoma 8 188690 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 9 188691 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 10 188692 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 11 188693 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 188694 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 12 188695 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 11 188696 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 188697 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 10 188698 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 11 188699 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 9 188700 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 10 188701 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 11 188702 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 11 188703 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 9 188704 -NCIT:C171298 Locally Advanced Liver Carcinoma 8 188705 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 9 188706 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 188707 -NCIT:C154088 Metastatic Liver Carcinoma 7 188708 -NCIT:C154091 Metastatic Hepatocellular Carcinoma 8 188709 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 9 188710 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 10 188711 -NCIT:C167336 Advanced Hepatocellular Carcinoma 9 188712 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 10 188713 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 10 188714 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 9 188715 -NCIT:C171298 Locally Advanced Liver Carcinoma 8 188716 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 9 188717 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 188718 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 8 188719 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 188720 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 9 188721 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 7 188722 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 8 188723 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 188724 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 188725 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 188726 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 8 188727 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 188728 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 188729 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 188730 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 188731 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 188732 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 188733 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 188734 -NCIT:C156073 Metastatic Esophageal Carcinoma 7 188735 -NCIT:C156074 Metastatic Esophageal Adenocarcinoma 8 188736 -NCIT:C166120 Oligometastatic Esophageal Adenocarcinoma 9 188737 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 9 188738 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 9 188739 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 10 188740 -NCIT:C172249 Metastatic Distal Esophagus Adenocarcinoma 9 188741 -NCIT:C156075 Metastatic Esophageal Squamous Cell Carcinoma 8 188742 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 9 188743 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 9 188744 -NCIT:C160599 Advanced Esophageal Carcinoma 8 188745 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 9 188746 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 9 188747 -NCIT:C168976 Locally Advanced Esophageal Carcinoma 8 188748 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 9 188749 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 10 188750 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 9 188751 -NCIT:C156096 Metastatic Colorectal Carcinoma 7 188752 -NCIT:C142867 Metastatic Microsatellite Stable Colorectal Carcinoma 8 188753 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 188754 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 188755 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 188756 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 188757 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 188758 -NCIT:C153224 Colorectal Carcinoma Metastatic in the Lung 8 188759 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 9 188760 -NCIT:C156097 Metastatic Colon Carcinoma 8 188761 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 188762 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 188763 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 188764 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 188765 -NCIT:C167238 Advanced Colon Carcinoma 9 188766 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 188767 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 188768 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 188769 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 188770 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 188771 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 188772 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 188773 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 9 188774 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 9 188775 -NCIT:C156098 Metastatic Rectal Carcinoma 8 188776 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 9 188777 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 188778 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 188779 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 188780 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 188781 -NCIT:C170777 Advanced Rectal Carcinoma 9 188782 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 188783 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 188784 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 188785 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 188786 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 188787 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 188788 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 9 188789 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 188790 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 188791 -NCIT:C157366 Colorectal Carcinoma Metastatic in the Liver 8 188792 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 9 188793 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 9 188794 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 9 188795 -NCIT:C161048 Metastatic Colorectal Adenocarcinoma 8 188796 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 9 188797 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 188798 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 188799 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 188800 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 188801 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 188802 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 188803 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 188804 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 188805 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 9 188806 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 188807 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 188808 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 188809 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 188810 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 188811 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 188812 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 188813 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 188814 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 188815 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 188816 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 188817 -NCIT:C162475 Advanced Colorectal Carcinoma 8 188818 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 188819 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 188820 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 188821 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 188822 -NCIT:C167238 Advanced Colon Carcinoma 9 188823 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 188824 -NCIT:C170777 Advanced Rectal Carcinoma 9 188825 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 188826 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 188827 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 8 188828 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 188829 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 188830 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 188831 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 188832 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 188833 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 188834 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 188835 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 188836 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 188837 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 188838 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 188839 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 188840 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 188841 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 188842 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 188843 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 188844 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 188845 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 188846 -NCIT:C185165 Oligometastatic Colorectal Carcinoma 8 188847 -NCIT:C156746 Advanced Digestive System Carcinoma 7 188848 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 188849 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 188850 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 188851 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 8 188852 -NCIT:C160599 Advanced Esophageal Carcinoma 8 188853 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 9 188854 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 9 188855 -NCIT:C162475 Advanced Colorectal Carcinoma 8 188856 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 188857 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 188858 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 188859 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 188860 -NCIT:C167238 Advanced Colon Carcinoma 9 188861 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 188862 -NCIT:C170777 Advanced Rectal Carcinoma 9 188863 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 188864 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 188865 -NCIT:C165299 Advanced Gastric Carcinoma 8 188866 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 188867 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 188868 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 188869 -NCIT:C166255 Advanced Gastric Adenocarcinoma 9 188870 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 10 188871 -NCIT:C167336 Advanced Hepatocellular Carcinoma 8 188872 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 188873 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 188874 -NCIT:C170515 Advanced Anal Carcinoma 8 188875 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 188876 -NCIT:C171330 Advanced Pancreatobiliary Carcinoma 8 188877 -NCIT:C165452 Advanced Pancreatic Carcinoma 9 188878 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 10 188879 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 11 188880 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 9 188881 -NCIT:C171331 Advanced Biliary Tract Carcinoma 9 188882 -NCIT:C142870 Advanced Bile Duct Carcinoma 10 188883 -NCIT:C162752 Advanced Cholangiocarcinoma 11 188884 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 188885 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 188886 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 188887 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 11 188888 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 188889 -NCIT:C162755 Advanced Gallbladder Carcinoma 10 188890 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 188891 -NCIT:C162275 Metastatic Appendix Carcinoma 7 188892 -NCIT:C182104 Metastatic Appendix Adenocarcinoma 8 188893 -NCIT:C162274 Metastatic Appendix Mucinous Adenocarcinoma 9 188894 -NCIT:C182105 Advanced Appendix Adenocarcinoma 9 188895 -NCIT:C163967 Metastatic Digestive System Mixed Adenoneuroendocrine Carcinoma 7 188896 -NCIT:C170458 Metastatic Pancreatobiliary Carcinoma 7 188897 -NCIT:C156069 Metastatic Pancreatic Carcinoma 8 188898 -NCIT:C165452 Advanced Pancreatic Carcinoma 9 188899 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 10 188900 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 11 188901 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 9 188902 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 10 188903 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 11 188904 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 11 188905 -NCIT:C190770 Metastatic Pancreatic Adenosquamous Carcinoma 9 188906 -NCIT:C190771 Metastatic Pancreatic Squamous Cell Carcinoma 9 188907 -NCIT:C8933 Metastatic Pancreatic Adenocarcinoma 9 188908 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 10 188909 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 11 188910 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 11 188911 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 10 188912 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 11 188913 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 11 188914 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 11 188915 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 10 188916 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 11 188917 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 10 188918 -NCIT:C162751 Metastatic Biliary Tract Carcinoma 8 188919 -NCIT:C142869 Metastatic Bile Duct Carcinoma 9 188920 -NCIT:C142870 Advanced Bile Duct Carcinoma 10 188921 -NCIT:C162752 Advanced Cholangiocarcinoma 11 188922 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 188923 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 188924 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 188925 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 11 188926 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 188927 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 10 188928 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 11 188929 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 188930 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 12 188931 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 11 188932 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 188933 -NCIT:C157623 Metastatic Cholangiocarcinoma 10 188934 -NCIT:C162752 Advanced Cholangiocarcinoma 11 188935 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 188936 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 188937 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 188938 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 11 188939 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 188940 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 12 188941 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 11 188942 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 188943 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 11 188944 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 188945 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 188946 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 11 188947 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 188948 -NCIT:C185071 Metastatic Extrahepatic Bile Duct Carcinoma 10 188949 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 11 188950 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 12 188951 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 13 188952 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 188953 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 11 188954 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 188955 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 11 188956 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 188957 -NCIT:C162754 Metastatic Gallbladder Carcinoma 9 188958 -NCIT:C162755 Advanced Gallbladder Carcinoma 10 188959 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 10 188960 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 11 188961 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 9 188962 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 10 188963 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 11 188964 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 188965 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 12 188966 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 11 188967 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 188968 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 10 188969 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 11 188970 -NCIT:C171331 Advanced Biliary Tract Carcinoma 9 188971 -NCIT:C142870 Advanced Bile Duct Carcinoma 10 188972 -NCIT:C162752 Advanced Cholangiocarcinoma 11 188973 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 188974 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 188975 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 188976 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 11 188977 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 188978 -NCIT:C162755 Advanced Gallbladder Carcinoma 10 188979 -NCIT:C170459 Locally Advanced Pancreatobiliary Carcinoma 8 188980 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 9 188981 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 10 188982 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 11 188983 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 188984 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 12 188985 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 11 188986 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 188987 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 10 188988 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 11 188989 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 9 188990 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 10 188991 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 11 188992 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 11 188993 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 9 188994 -NCIT:C171326 Metastatic Ampulla of Vater Carcinoma 8 188995 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 9 188996 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 9 188997 -NCIT:C171330 Advanced Pancreatobiliary Carcinoma 8 188998 -NCIT:C165452 Advanced Pancreatic Carcinoma 9 188999 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 10 189000 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 11 189001 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 9 189002 -NCIT:C171331 Advanced Biliary Tract Carcinoma 9 189003 -NCIT:C142870 Advanced Bile Duct Carcinoma 10 189004 -NCIT:C162752 Advanced Cholangiocarcinoma 11 189005 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 189006 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 189007 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 189008 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 11 189009 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 189010 -NCIT:C162755 Advanced Gallbladder Carcinoma 10 189011 -NCIT:C170514 Metastatic Anal Carcinoma 7 189012 -NCIT:C168977 Locally Advanced Anal Carcinoma 8 189013 -NCIT:C169103 Metastatic Anal Squamous Cell Carcinoma 8 189014 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 9 189015 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 10 189016 -NCIT:C170515 Advanced Anal Carcinoma 8 189017 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 189018 -NCIT:C5612 Metastatic Anal Canal Carcinoma 8 189019 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 9 189020 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 10 189021 -NCIT:C8637 Metastatic Small Intestinal Carcinoma 7 189022 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 8 189023 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 189024 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 189025 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 189026 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 189027 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 189028 -NCIT:C8934 Metastatic Small Intestinal Adenocarcinoma 8 189029 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 189030 -NCIT:C146893 Metastatic Genitourinary System Carcinoma 6 189031 -NCIT:C126109 Metastatic Urothelial Carcinoma 7 189032 -NCIT:C148493 Advanced Urothelial Carcinoma 8 189033 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 189034 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 189035 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 189036 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 189037 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 189038 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 189039 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 189040 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 189041 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 189042 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 189043 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 189044 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 189045 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 189046 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 189047 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 189048 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 189049 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 189050 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 189051 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 189052 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 8 189053 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 189054 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 189055 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 189056 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 189057 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 189058 -NCIT:C191692 Metastatic Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 189059 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 189060 -NCIT:C191693 Metastatic Giant Cell Urothelial Carcinoma 8 189061 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 189062 -NCIT:C191694 Metastatic Lipid-Rich Urothelial Carcinoma 8 189063 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 189064 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 8 189065 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 189066 -NCIT:C191696 Metastatic Nested Urothelial Carcinoma 8 189067 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 189068 -NCIT:C191697 Metastatic Plasmacytoid Urothelial Carcinoma 8 189069 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 189070 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 8 189071 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 189072 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 8 189073 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 189074 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 189075 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 189076 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 9 189077 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 189078 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 189079 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 189080 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 189081 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 189082 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 189083 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 189084 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 189085 -NCIT:C153387 Metastatic Cervical Carcinoma 7 189086 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 8 189087 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 189088 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 189089 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 8 189090 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 189091 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 189092 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 189093 -NCIT:C153390 Metastatic Cervical Adenosquamous Carcinoma 8 189094 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 189095 -NCIT:C156294 Advanced Cervical Carcinoma 8 189096 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 189097 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 189098 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 189099 -NCIT:C156295 Locally Advanced Cervical Carcinoma 8 189100 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 189101 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 189102 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 9 189103 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 189104 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 189105 -NCIT:C156062 Metastatic Bladder Carcinoma 7 189106 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 189107 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 189108 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 189109 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 189110 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 189111 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 189112 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 189113 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 189114 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 189115 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 189116 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 189117 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 8 189118 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 8 189119 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 8 189120 -NCIT:C167071 Locally Advanced Bladder Carcinoma 8 189121 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 189122 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 9 189123 -NCIT:C167338 Advanced Bladder Carcinoma 8 189124 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 189125 -NCIT:C190772 Metastatic Non-Muscle Invasive Bladder Carcinoma 8 189126 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 9 189127 -NCIT:C156063 Metastatic Fallopian Tube Carcinoma 7 189128 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 8 189129 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 9 189130 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 8 189131 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 8 189132 -NCIT:C156064 Metastatic Ovarian Carcinoma 7 189133 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 8 189134 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 189135 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 189136 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 189137 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 9 189138 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 189139 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 189140 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 9 189141 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 189142 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 189143 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 189144 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 189145 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 189146 -NCIT:C165458 Advanced Ovarian Carcinoma 8 189147 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 189148 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 189149 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 189150 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 189151 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 189152 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 189153 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 189154 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 8 189155 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 189156 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 189157 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 189158 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 189159 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 8 189160 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 189161 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 8 189162 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 189163 -NCIT:C172234 Metastatic Ovarian Undifferentiated Carcinoma 8 189164 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 8 189165 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 189166 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 189167 -NCIT:C180333 Metastatic Microsatellite Stable Ovarian Carcinoma 8 189168 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 189169 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 8 189170 -NCIT:C27391 Metastatic Ovarian Small Cell Carcinoma, Hypercalcemic Type 8 189171 -NCIT:C156065 Metastatic Vaginal Carcinoma 7 189172 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 8 189173 -NCIT:C170788 Advanced Vaginal Carcinoma 8 189174 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 189175 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 189176 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 189177 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 189178 -NCIT:C181028 Metastatic Vaginal Adenosquamous Carcinoma 8 189179 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 189180 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 8 189181 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 189182 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 189183 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 8 189184 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 189185 -NCIT:C156066 Metastatic Vulvar Carcinoma 7 189186 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 8 189187 -NCIT:C170786 Advanced Vulvar Carcinoma 8 189188 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 8 189189 -NCIT:C156068 Metastatic Endometrial Carcinoma 7 189190 -NCIT:C159676 Advanced Endometrial Carcinoma 8 189191 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 189192 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 189193 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 189194 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 189195 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 8 189196 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 189197 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 189198 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 9 189199 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 8 189200 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 8 189201 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 189202 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 8 189203 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 9 189204 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 189205 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 189206 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 189207 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 189208 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 9 189209 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 189210 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 189211 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 189212 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 189213 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 9 189214 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 9 189215 -NCIT:C164143 Advanced Genitourinary System Carcinoma 7 189216 -NCIT:C148493 Advanced Urothelial Carcinoma 8 189217 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 189218 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 189219 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 189220 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 189221 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 189222 -NCIT:C156284 Advanced Prostate Carcinoma 8 189223 -NCIT:C156286 Advanced Prostate Adenocarcinoma 9 189224 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 189225 -NCIT:C156294 Advanced Cervical Carcinoma 8 189226 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 189227 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 189228 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 189229 -NCIT:C159676 Advanced Endometrial Carcinoma 8 189230 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 189231 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 189232 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 189233 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 189234 -NCIT:C165458 Advanced Ovarian Carcinoma 8 189235 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 189236 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 189237 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 189238 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 189239 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 189240 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 189241 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 189242 -NCIT:C167338 Advanced Bladder Carcinoma 8 189243 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 189244 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 8 189245 -NCIT:C170786 Advanced Vulvar Carcinoma 8 189246 -NCIT:C170788 Advanced Vaginal Carcinoma 8 189247 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 189248 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 189249 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 189250 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 189251 -NCIT:C170790 Advanced Penile Carcinoma 8 189252 -NCIT:C172617 Advanced Kidney Carcinoma 8 189253 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 189254 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 189255 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 189256 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 189257 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 189258 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 189259 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 189260 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 189261 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 189262 -NCIT:C167069 Locally Advanced Genitourinary System Carcinoma 7 189263 -NCIT:C156285 Locally Advanced Prostate Carcinoma 8 189264 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 9 189265 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 189266 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 9 189267 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 189268 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 9 189269 -NCIT:C156295 Locally Advanced Cervical Carcinoma 8 189270 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 189271 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 189272 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 9 189273 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 189274 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 189275 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 8 189276 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 189277 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 189278 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 189279 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 189280 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 189281 -NCIT:C167071 Locally Advanced Bladder Carcinoma 8 189282 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 189283 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 9 189284 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 8 189285 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 189286 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 189287 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 189288 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 189289 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 8 189290 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 9 189291 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 8 189292 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 189293 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 189294 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 9 189295 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 8 189296 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 8 189297 -NCIT:C170789 Locally Advanced Penile Carcinoma 8 189298 -NCIT:C172618 Locally Advanced Kidney Carcinoma 8 189299 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 189300 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 189301 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 189302 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 189303 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 189304 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 189305 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 189306 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 189307 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 189308 -NCIT:C185381 Metastatic Mesonephric Adenocarcinoma 7 189309 -NCIT:C27784 Metastatic Penile Carcinoma 7 189310 -NCIT:C170789 Locally Advanced Penile Carcinoma 8 189311 -NCIT:C170790 Advanced Penile Carcinoma 8 189312 -NCIT:C182111 Metastatic Squamous Cell Carcinoma of the Penis 8 189313 -NCIT:C27806 Metastatic Kidney Carcinoma 7 189314 -NCIT:C150595 Metastatic Renal Cell Carcinoma 8 189315 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 189316 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 189317 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 189318 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 189319 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 189320 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 189321 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 9 189322 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 189323 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 189324 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 9 189325 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 189326 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 189327 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 9 189328 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 189329 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 189330 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 189331 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 189332 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 189333 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 189334 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 189335 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 189336 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 189337 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 9 189338 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 189339 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 189340 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 9 189341 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 189342 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 189343 -NCIT:C157755 Metastatic Kidney Medullary Carcinoma 8 189344 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 189345 -NCIT:C163965 Metastatic Renal Pelvis Carcinoma 8 189346 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 189347 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 189348 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 189349 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 189350 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 189351 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 189352 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 189353 -NCIT:C172617 Advanced Kidney Carcinoma 8 189354 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 189355 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 189356 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 189357 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 189358 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 189359 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 189360 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 189361 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 189362 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 189363 -NCIT:C172618 Locally Advanced Kidney Carcinoma 8 189364 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 189365 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 189366 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 189367 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 189368 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 189369 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 189370 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 189371 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 189372 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 189373 -NCIT:C27818 Metastatic Ureter Carcinoma 7 189374 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 8 189375 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 189376 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 189377 -NCIT:C27819 Metastatic Urethral Carcinoma 7 189378 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 189379 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 189380 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 189381 -NCIT:C8946 Metastatic Prostate Carcinoma 7 189382 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 8 189383 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 9 189384 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 9 189385 -NCIT:C161609 Double-Negative Prostate Carcinoma 9 189386 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 9 189387 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 9 189388 -NCIT:C132881 Prostate Carcinoma Metastatic in the Soft Tissue 8 189389 -NCIT:C148536 Castration-Naive Prostate Carcinoma 8 189390 -NCIT:C153336 Castration-Sensitive Prostate Carcinoma 8 189391 -NCIT:C156284 Advanced Prostate Carcinoma 8 189392 -NCIT:C156286 Advanced Prostate Adenocarcinoma 9 189393 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 189394 -NCIT:C156285 Locally Advanced Prostate Carcinoma 8 189395 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 9 189396 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 189397 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 9 189398 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 189399 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 9 189400 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 8 189401 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 9 189402 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 9 189403 -NCIT:C161584 Prostate Carcinoma Metastatic in the Pelvic Cavity 8 189404 -NCIT:C161587 Prostate Carcinoma Metastatic in the Lymph Nodes 8 189405 -NCIT:C171265 Oligometastatic Prostate Carcinoma 8 189406 -NCIT:C36307 Prostate Carcinoma Metastatic in the Lung 8 189407 -NCIT:C36308 Prostate Carcinoma Metastatic in the Bone 8 189408 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 8 189409 -NCIT:C156286 Advanced Prostate Adenocarcinoma 9 189410 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 189411 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 9 189412 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 189413 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 189414 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 189415 -NCIT:C148128 Metastatic Thymic Carcinoma 6 189416 -NCIT:C148126 Locally Advanced Thymic Carcinoma 7 189417 -NCIT:C159903 Advanced Thymic Carcinoma 7 189418 -NCIT:C148130 Locally Advanced Carcinoma 6 189419 -NCIT:C148126 Locally Advanced Thymic Carcinoma 7 189420 -NCIT:C153206 Locally Advanced Lung Carcinoma 7 189421 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 8 189422 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 189423 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 189424 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 189425 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 189426 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 189427 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 189428 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 189429 -NCIT:C153213 Locally Advanced Head and Neck Carcinoma 7 189430 -NCIT:C158464 Locally Advanced Salivary Gland Carcinoma 8 189431 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 8 189432 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 189433 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 189434 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 189435 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 189436 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 189437 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 189438 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 189439 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 189440 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 189441 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 189442 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 189443 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 8 189444 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 189445 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 8 189446 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 189447 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 9 189448 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 189449 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 189450 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 9 189451 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 189452 -NCIT:C165562 Locally Advanced Lip and Oral Cavity Carcinoma 8 189453 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 9 189454 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 10 189455 -NCIT:C165563 Locally Advanced Paranasal Sinus Carcinoma 8 189456 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 189457 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 8 189458 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 189459 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 9 189460 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 189461 -NCIT:C153358 Locally Advanced Digestive System Carcinoma 7 189462 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 8 189463 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 189464 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 189465 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 189466 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 8 189467 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 9 189468 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 8 189469 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 189470 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 189471 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 189472 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 189473 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 189474 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 189475 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 189476 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 189477 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 189478 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 189479 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 189480 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 189481 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 189482 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 189483 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 189484 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 189485 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 189486 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 189487 -NCIT:C162772 Locally Advanced Gastric Carcinoma 8 189488 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 9 189489 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 10 189490 -NCIT:C168976 Locally Advanced Esophageal Carcinoma 8 189491 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 9 189492 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 10 189493 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 9 189494 -NCIT:C168977 Locally Advanced Anal Carcinoma 8 189495 -NCIT:C170459 Locally Advanced Pancreatobiliary Carcinoma 8 189496 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 9 189497 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 10 189498 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 11 189499 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 189500 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 12 189501 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 11 189502 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 189503 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 10 189504 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 11 189505 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 9 189506 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 10 189507 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 11 189508 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 11 189509 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 9 189510 -NCIT:C171298 Locally Advanced Liver Carcinoma 8 189511 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 9 189512 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 189513 -NCIT:C154321 Locally Advanced Squamous Cell Carcinoma 7 189514 -NCIT:C153182 Locally Advanced Skin Squamous Cell Carcinoma 8 189515 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 189516 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 189517 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 189518 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 8 189519 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 189520 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 189521 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 189522 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 189523 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 189524 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 189525 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 189526 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 189527 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 189528 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 189529 -NCIT:C165474 Locally Advanced Squamous Cell Carcinoma of Unknown Primary 8 189530 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 8 189531 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 189532 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 8 189533 -NCIT:C155698 Locally Advanced Unresectable Carcinoma 7 189534 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 8 189535 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 8 189536 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 8 189537 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 8 189538 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 189539 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 8 189540 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 189541 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 8 189542 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 189543 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 189544 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 8 189545 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 189546 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 189547 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 189548 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 189549 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 189550 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 189551 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 189552 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 8 189553 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 8 189554 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 8 189555 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 8 189556 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 8 189557 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 8 189558 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 8 189559 -NCIT:C156770 Locally Advanced Basal Cell Carcinoma 7 189560 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 8 189561 -NCIT:C158909 Locally Advanced Neuroendocrine Carcinoma 7 189562 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 189563 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 189564 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 8 189565 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 189566 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 189567 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 8 189568 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 189569 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 8 189570 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 189571 -NCIT:C160920 Locally Advanced Breast Carcinoma 7 189572 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 8 189573 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 189574 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 189575 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 189576 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 189577 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 8 189578 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 189579 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 189580 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 189581 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 189582 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 189583 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 189584 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 189585 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 189586 -NCIT:C167069 Locally Advanced Genitourinary System Carcinoma 7 189587 -NCIT:C156285 Locally Advanced Prostate Carcinoma 8 189588 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 9 189589 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 189590 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 9 189591 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 189592 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 9 189593 -NCIT:C156295 Locally Advanced Cervical Carcinoma 8 189594 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 189595 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 189596 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 9 189597 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 189598 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 189599 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 8 189600 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 189601 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 189602 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 189603 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 189604 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 189605 -NCIT:C167071 Locally Advanced Bladder Carcinoma 8 189606 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 189607 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 9 189608 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 8 189609 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 189610 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 189611 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 189612 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 189613 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 8 189614 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 9 189615 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 8 189616 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 189617 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 189618 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 9 189619 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 8 189620 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 8 189621 -NCIT:C170789 Locally Advanced Penile Carcinoma 8 189622 -NCIT:C172618 Locally Advanced Kidney Carcinoma 8 189623 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 189624 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 189625 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 189626 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 189627 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 189628 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 189629 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 189630 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 189631 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 189632 -NCIT:C167204 Locally Advanced Primary Peritoneal Carcinoma 7 189633 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 8 189634 -NCIT:C168978 Locally Advanced Adenocarcinoma 7 189635 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 8 189636 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 9 189637 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 9 189638 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 8 189639 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 189640 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 8 189641 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 189642 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 8 189643 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 9 189644 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 189645 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 189646 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 189647 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 8 189648 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 189649 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 189650 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 189651 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 189652 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 189653 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 189654 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 189655 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 189656 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 189657 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 8 189658 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 189659 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 9 189660 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 8 189661 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 189662 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 189663 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 189664 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 189665 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 189666 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 189667 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 189668 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 189669 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 8 189670 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 189671 -NCIT:C174045 Locally Advanced Endometrioid Adenocarcinoma 8 189672 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 189673 -NCIT:C174443 Locally Advanced Adrenal Cortical Carcinoma 8 189674 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 8 189675 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 8 189676 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 189677 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 189678 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 189679 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 189680 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 189681 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 189682 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 189683 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 189684 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 189685 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 189686 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 189687 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 189688 -NCIT:C175493 Locally Advanced Transitional Cell Carcinoma 7 189689 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 8 189690 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 189691 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 189692 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 189693 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 189694 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 189695 -NCIT:C175669 Locally Advanced Adenoid Cystic Carcinoma 7 189696 -NCIT:C153171 Advanced Carcinoma 6 189697 -NCIT:C129861 Advanced Head and Neck Carcinoma 7 189698 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 8 189699 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 189700 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 189701 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 189702 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 189703 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 189704 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 189705 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 189706 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 8 189707 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 189708 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 189709 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 189710 -NCIT:C170784 Advanced Pharyngeal Carcinoma 8 189711 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 9 189712 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 189713 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 189714 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 189715 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 189716 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 189717 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 9 189718 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 189719 -NCIT:C177723 Advanced Salivary Gland Carcinoma 8 189720 -NCIT:C153203 Advanced Lung Carcinoma 7 189721 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 189722 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 8 189723 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 189724 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 189725 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 189726 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 189727 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 189728 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 189729 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 189730 -NCIT:C180922 Advanced Bronchogenic Carcinoma 8 189731 -NCIT:C155870 Advanced Neuroendocrine Carcinoma 7 189732 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 189733 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 189734 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 189735 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 189736 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 189737 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 189738 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 189739 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 189740 -NCIT:C165300 Advanced Merkel Cell Carcinoma 8 189741 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 8 189742 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 189743 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 189744 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 189745 -NCIT:C156746 Advanced Digestive System Carcinoma 7 189746 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 189747 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 189748 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 189749 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 8 189750 -NCIT:C160599 Advanced Esophageal Carcinoma 8 189751 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 9 189752 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 9 189753 -NCIT:C162475 Advanced Colorectal Carcinoma 8 189754 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 189755 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 189756 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 189757 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 189758 -NCIT:C167238 Advanced Colon Carcinoma 9 189759 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 189760 -NCIT:C170777 Advanced Rectal Carcinoma 9 189761 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 189762 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 189763 -NCIT:C165299 Advanced Gastric Carcinoma 8 189764 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 189765 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 189766 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 189767 -NCIT:C166255 Advanced Gastric Adenocarcinoma 9 189768 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 10 189769 -NCIT:C167336 Advanced Hepatocellular Carcinoma 8 189770 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 189771 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 189772 -NCIT:C170515 Advanced Anal Carcinoma 8 189773 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 189774 -NCIT:C171330 Advanced Pancreatobiliary Carcinoma 8 189775 -NCIT:C165452 Advanced Pancreatic Carcinoma 9 189776 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 10 189777 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 11 189778 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 9 189779 -NCIT:C171331 Advanced Biliary Tract Carcinoma 9 189780 -NCIT:C142870 Advanced Bile Duct Carcinoma 10 189781 -NCIT:C162752 Advanced Cholangiocarcinoma 11 189782 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 189783 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 189784 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 189785 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 11 189786 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 189787 -NCIT:C162755 Advanced Gallbladder Carcinoma 10 189788 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 189789 -NCIT:C159556 Advanced Adenocarcinoma 7 189790 -NCIT:C153170 Advanced Renal Cell Carcinoma 8 189791 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 189792 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 189793 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 189794 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 189795 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 189796 -NCIT:C156286 Advanced Prostate Adenocarcinoma 8 189797 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 189798 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 189799 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 8 189800 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 8 189801 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 9 189802 -NCIT:C162752 Advanced Cholangiocarcinoma 8 189803 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 9 189804 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 9 189805 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 9 189806 -NCIT:C165700 Advanced Breast Adenocarcinoma 8 189807 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 189808 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 189809 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 189810 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 189811 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 189812 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 189813 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 189814 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 189815 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 189816 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 189817 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 189818 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 189819 -NCIT:C167336 Advanced Hepatocellular Carcinoma 8 189820 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 189821 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 189822 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 8 189823 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 189824 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 189825 -NCIT:C170807 Advanced Endometrioid Adenocarcinoma 8 189826 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 189827 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 189828 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 189829 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 189830 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 189831 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 189832 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 8 189833 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 8 189834 -NCIT:C176727 Advanced Lung Adenocarcinoma 8 189835 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 189836 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 189837 -NCIT:C191863 Advanced Adrenal Cortical Carcinoma 8 189838 -NCIT:C159903 Advanced Thymic Carcinoma 7 189839 -NCIT:C160298 Advanced NUT Carcinoma 7 189840 -NCIT:C162648 Advanced Breast Carcinoma 7 189841 -NCIT:C165700 Advanced Breast Adenocarcinoma 8 189842 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 189843 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 189844 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 189845 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 189846 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 189847 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 189848 -NCIT:C162653 Advanced Squamous Cell Carcinoma 7 189849 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 8 189850 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 189851 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 189852 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 189853 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 189854 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 189855 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 189856 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 189857 -NCIT:C168542 Advanced Skin Squamous Cell Carcinoma 8 189858 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 189859 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 8 189860 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 189861 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 189862 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 189863 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 8 189864 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 189865 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 189866 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 189867 -NCIT:C164012 Advanced Adenoid Cystic Carcinoma 7 189868 -NCIT:C164143 Advanced Genitourinary System Carcinoma 7 189869 -NCIT:C148493 Advanced Urothelial Carcinoma 8 189870 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 189871 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 189872 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 189873 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 189874 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 189875 -NCIT:C156284 Advanced Prostate Carcinoma 8 189876 -NCIT:C156286 Advanced Prostate Adenocarcinoma 9 189877 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 189878 -NCIT:C156294 Advanced Cervical Carcinoma 8 189879 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 189880 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 189881 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 189882 -NCIT:C159676 Advanced Endometrial Carcinoma 8 189883 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 189884 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 189885 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 189886 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 189887 -NCIT:C165458 Advanced Ovarian Carcinoma 8 189888 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 189889 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 189890 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 189891 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 189892 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 189893 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 189894 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 189895 -NCIT:C167338 Advanced Bladder Carcinoma 8 189896 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 189897 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 8 189898 -NCIT:C170786 Advanced Vulvar Carcinoma 8 189899 -NCIT:C170788 Advanced Vaginal Carcinoma 8 189900 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 189901 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 189902 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 189903 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 189904 -NCIT:C170790 Advanced Penile Carcinoma 8 189905 -NCIT:C172617 Advanced Kidney Carcinoma 8 189906 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 189907 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 189908 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 189909 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 189910 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 189911 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 189912 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 189913 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 189914 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 189915 -NCIT:C167396 Advanced Primary Peritoneal Carcinoma 7 189916 -NCIT:C170960 Advanced Carcinoma Of Unknown Primary 7 189917 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 8 189918 -NCIT:C172091 Advanced Transitional Cell Carcinoma 7 189919 -NCIT:C148493 Advanced Urothelial Carcinoma 8 189920 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 189921 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 189922 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 189923 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 189924 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 189925 -NCIT:C172362 Advanced Basal Cell Carcinoma 7 189926 -NCIT:C153202 Metastatic Lung Carcinoma 6 189927 -NCIT:C133503 Lung Carcinoma Metastatic in the Central Nervous System 7 189928 -NCIT:C36304 Lung Carcinoma Metastatic in the Brain 8 189929 -NCIT:C153203 Advanced Lung Carcinoma 7 189930 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 189931 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 8 189932 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 189933 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 189934 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 189935 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 189936 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 189937 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 189938 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 189939 -NCIT:C180922 Advanced Bronchogenic Carcinoma 8 189940 -NCIT:C153206 Locally Advanced Lung Carcinoma 7 189941 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 8 189942 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 189943 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 189944 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 189945 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 189946 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 189947 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 189948 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 189949 -NCIT:C156092 Metastatic Lung Squamous Cell Carcinoma 7 189950 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 189951 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 189952 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 189953 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 189954 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 189955 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 189956 -NCIT:C156094 Metastatic Lung Non-Small Cell Carcinoma 7 189957 -NCIT:C128798 Metastatic Lung Non-Squamous Non-Small Cell Carcinoma 8 189958 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 189959 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 189960 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 189961 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 189962 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 189963 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 189964 -NCIT:C155908 Metastatic Lung Adenocarcinoma 9 189965 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 189966 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 189967 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 9 189968 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 189969 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 189970 -NCIT:C156093 Metastatic Lung Adenosquamous Carcinoma 8 189971 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 189972 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 189973 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 189974 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 189975 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 189976 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 189977 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 8 189978 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 189979 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 189980 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 189981 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 189982 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 189983 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 189984 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 8 189985 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 189986 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 189987 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 189988 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 189989 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 189990 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 7 189991 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 189992 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 189993 -NCIT:C187195 Oligometastatic Lung Carcinoma 7 189994 -NCIT:C36305 Lung Carcinoma Metastatic in the Bone 7 189995 -NCIT:C36306 Lung Carcinoma Metastatic in the Liver 7 189996 -NCIT:C153238 Metastatic Breast Carcinoma 6 189997 -NCIT:C133501 Breast Carcinoma Metastatic in the Central Nervous System 7 189998 -NCIT:C36301 Breast Carcinoma Metastatic in the Brain 8 189999 -NCIT:C153227 Breast Carcinoma Metastatic in the Lymph Nodes 7 190000 -NCIT:C160920 Locally Advanced Breast Carcinoma 7 190001 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 8 190002 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 190003 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 190004 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 190005 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 190006 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 8 190007 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 190008 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 190009 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 190010 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 190011 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 190012 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 190013 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 190014 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 190015 -NCIT:C161830 Metastatic BRCA-Associated Breast Carcinoma 7 190016 -NCIT:C162648 Advanced Breast Carcinoma 7 190017 -NCIT:C165700 Advanced Breast Adenocarcinoma 8 190018 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 190019 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 190020 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 190021 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 190022 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 190023 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 190024 -NCIT:C165698 Metastatic Breast Adenocarcinoma 7 190025 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 8 190026 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 190027 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 190028 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 190029 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 190030 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 190031 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 190032 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 190033 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 190034 -NCIT:C165700 Advanced Breast Adenocarcinoma 8 190035 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 190036 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 190037 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 190038 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 190039 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 190040 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 190041 -NCIT:C168777 Metastatic HER2-Negative Breast Carcinoma 8 190042 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 190043 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 190044 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 190045 -NCIT:C179554 Metastatic HER2-Low Breast Carcinoma 8 190046 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 190047 -NCIT:C180924 Metastatic HER2-Positive Breast Carcinoma 8 190048 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 190049 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 190050 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 190051 -NCIT:C181787 Metastatic Breast Inflammatory Carcinoma 8 190052 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 9 190053 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 9 190054 -NCIT:C9246 Stage IIIB Breast Inflammatory Carcinoma 9 190055 -NCIT:C185880 Metastatic Hormone Receptor-Positive Breast Carcinoma 8 190056 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 190057 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 190058 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 190059 -NCIT:C190852 Metastatic Androgen Receptor-Positive Breast Carcinoma 9 190060 -NCIT:C190856 Metastatic Estrogen Receptor-Positive Breast Carcinoma 9 190061 -NCIT:C190677 Metastatic Hormone Receptor-Negative Breast Carcinoma 8 190062 -NCIT:C153348 Metastatic Triple-Negative Breast Carcinoma 9 190063 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 190064 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 10 190065 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 11 190066 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 10 190067 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 190068 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 190069 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 8 190070 -NCIT:C76326 Metastatic Breast Ductal Carcinoma 8 190071 -NCIT:C76328 Metastatic Breast Lobular Carcinoma 8 190072 -NCIT:C179515 Oligometastatic Breast Carcinoma 7 190073 -NCIT:C28311 Metastatic Breast Carcinoma in the Skin 7 190074 -NCIT:C36300 Breast Carcinoma Metastatic in the Lung 7 190075 -NCIT:C36302 Breast Carcinoma Metastatic in the Liver 7 190076 -NCIT:C36303 Breast Carcinoma Metastatic in the Bone 7 190077 -NCIT:C153226 Breast Carcinoma Metastatic in the Spine 8 190078 -NCIT:C5178 Metastatic Breast Squamous Cell Carcinoma 7 190079 -NCIT:C153315 Metastatic Unresectable Carcinoma 6 190080 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 7 190081 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 8 190082 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 8 190083 -NCIT:C155698 Locally Advanced Unresectable Carcinoma 7 190084 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 8 190085 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 8 190086 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 8 190087 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 8 190088 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 190089 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 8 190090 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 190091 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 8 190092 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 190093 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 190094 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 8 190095 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 190096 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 190097 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 190098 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 190099 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 190100 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 190101 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 190102 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 8 190103 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 8 190104 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 8 190105 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 8 190106 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 8 190107 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 8 190108 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 8 190109 -NCIT:C156788 Metastatic Unresectable Basal Cell Carcinoma 7 190110 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 8 190111 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 7 190112 -NCIT:C155869 Metastatic Neuroendocrine Carcinoma 6 190113 -NCIT:C155870 Advanced Neuroendocrine Carcinoma 7 190114 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 190115 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 190116 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 190117 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 190118 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 190119 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 190120 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 190121 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 190122 -NCIT:C165300 Advanced Merkel Cell Carcinoma 8 190123 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 8 190124 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 190125 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 190126 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 190127 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 7 190128 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 8 190129 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 190130 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 190131 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 190132 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 8 190133 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 190134 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 190135 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 190136 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 190137 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 190138 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 190139 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 190140 -NCIT:C158908 Metastatic Large Cell Neuroendocrine Carcinoma 7 190141 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 8 190142 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 8 190143 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 190144 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 8 190145 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 190146 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 190147 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 8 190148 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 190149 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 190150 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 190151 -NCIT:C158909 Locally Advanced Neuroendocrine Carcinoma 7 190152 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 190153 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 190154 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 8 190155 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 190156 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 190157 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 8 190158 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 190159 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 8 190160 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 190161 -NCIT:C158911 Metastatic Small Cell Neuroendocrine Carcinoma 7 190162 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 8 190163 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 9 190164 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 190165 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 8 190166 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 190167 -NCIT:C191852 Metastatic Extrapulmonary Small Cell Neuroendocrine Carcinoma 8 190168 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 190169 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 190170 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 9 190171 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 9 190172 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 7 190173 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 190174 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 190175 -NCIT:C162572 Metastatic Merkel Cell Carcinoma 7 190176 -NCIT:C165300 Advanced Merkel Cell Carcinoma 8 190177 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 8 190178 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 8 190179 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 7 190180 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 190181 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 190182 -NCIT:C163975 Neuroendocrine Carcinoma of Unknown Primary 7 190183 -NCIT:C156769 Metastatic Basal Cell Carcinoma 6 190184 -NCIT:C156770 Locally Advanced Basal Cell Carcinoma 7 190185 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 8 190186 -NCIT:C156788 Metastatic Unresectable Basal Cell Carcinoma 7 190187 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 8 190188 -NCIT:C172362 Advanced Basal Cell Carcinoma 7 190189 -NCIT:C157638 Metastatic Adenoid Cystic Carcinoma 6 190190 -NCIT:C156089 Metastatic Oral Cavity Adenoid Cystic Carcinoma 7 190191 -NCIT:C164012 Advanced Adenoid Cystic Carcinoma 7 190192 -NCIT:C175669 Locally Advanced Adenoid Cystic Carcinoma 7 190193 -NCIT:C160297 Metastatic NUT Carcinoma 6 190194 -NCIT:C160298 Advanced NUT Carcinoma 7 190195 -NCIT:C165537 Metastatic Non-Small Cell Carcinoma 6 190196 -NCIT:C156094 Metastatic Lung Non-Small Cell Carcinoma 7 190197 -NCIT:C128798 Metastatic Lung Non-Squamous Non-Small Cell Carcinoma 8 190198 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 190199 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 190200 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 190201 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 190202 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 190203 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 190204 -NCIT:C155908 Metastatic Lung Adenocarcinoma 9 190205 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 190206 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 190207 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 9 190208 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 190209 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 190210 -NCIT:C156093 Metastatic Lung Adenosquamous Carcinoma 8 190211 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 190212 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 190213 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 190214 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 190215 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 190216 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 190217 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 8 190218 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 190219 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 190220 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 190221 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 190222 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 190223 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 190224 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 8 190225 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 190226 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 190227 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 190228 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 190229 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 190230 -NCIT:C167203 Metastatic Primary Peritoneal Carcinoma 6 190231 -NCIT:C167204 Locally Advanced Primary Peritoneal Carcinoma 7 190232 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 8 190233 -NCIT:C167396 Advanced Primary Peritoneal Carcinoma 7 190234 -NCIT:C170972 Metastatic Primary Peritoneal Adenocarcinoma 7 190235 -NCIT:C171019 Metastatic Primary Peritoneal Serous Adenocarcinoma 8 190236 -NCIT:C186453 Metastatic Primary Peritoneal High Grade Serous Adenocarcinoma 9 190237 -NCIT:C179654 Metastatic Carcinoma in the Peritoneum 6 190238 -NCIT:C27382 Peritoneal Carcinomatosis 7 190239 -NCIT:C3345 Pseudomyxoma Peritonei 8 190240 -NCIT:C179179 Recurrent Pseudomyxoma Peritonei 9 190241 -NCIT:C179180 Refractory Pseudomyxoma Peritonei 9 190242 -NCIT:C188076 Metastatic Carcinoma in the Rectum 6 190243 -NCIT:C188077 Metastatic Carcinoma in the Pancreas 6 190244 -NCIT:C27381 Metastatic Carcinoma in the Adrenal Cortex 6 190245 -NCIT:C27408 Metastatic Carcinoma in the Lung 6 190246 -NCIT:C153224 Colorectal Carcinoma Metastatic in the Lung 7 190247 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 8 190248 -NCIT:C36300 Breast Carcinoma Metastatic in the Lung 7 190249 -NCIT:C36307 Prostate Carcinoma Metastatic in the Lung 7 190250 -NCIT:C27469 Disseminated Carcinoma 6 190251 -NCIT:C27185 Disseminated Adenocarcinoma 7 190252 -NCIT:C4829 Disseminated Squamous Cell Carcinoma 7 190253 -NCIT:C36082 Metastatic Carcinoma in the Bone 6 190254 -NCIT:C36303 Breast Carcinoma Metastatic in the Bone 7 190255 -NCIT:C153226 Breast Carcinoma Metastatic in the Spine 8 190256 -NCIT:C36305 Lung Carcinoma Metastatic in the Bone 7 190257 -NCIT:C36308 Prostate Carcinoma Metastatic in the Bone 7 190258 -NCIT:C3693 Carcinomatosis 6 190259 -NCIT:C168666 Gastrointestinal Carcinomatosis 7 190260 -NCIT:C27382 Peritoneal Carcinomatosis 7 190261 -NCIT:C3345 Pseudomyxoma Peritonei 8 190262 -NCIT:C179179 Recurrent Pseudomyxoma Peritonei 9 190263 -NCIT:C179180 Refractory Pseudomyxoma Peritonei 9 190264 -NCIT:C27383 Meningeal Carcinomatosis 7 190265 -NCIT:C27384 Pleural Carcinomatosis 7 190266 -NCIT:C27385 Pericardial Carcinomatosis 7 190267 -NCIT:C3870 Lymphangitic Carcinomatosis 7 190268 -NCIT:C3812 Carcinoma of Unknown Primary 6 190269 -NCIT:C162595 Head and Neck Carcinoma of Unknown Primary 7 190270 -NCIT:C173585 Neck Carcinoma of Unknown Primary 8 190271 -NCIT:C7713 Neck Squamous Cell Carcinoma of Unknown Primary 9 190272 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 10 190273 -NCIT:C187051 Human Papillomavirus-Related Head and Neck Squamous Cell Carcinoma of Unknown Primary 8 190274 -NCIT:C190149 Human Papillomavirus-Negative Head and Neck Squamous Cell Carcinoma of Unknown Primary 8 190275 -NCIT:C163975 Neuroendocrine Carcinoma of Unknown Primary 7 190276 -NCIT:C170960 Advanced Carcinoma Of Unknown Primary 7 190277 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 8 190278 -NCIT:C170961 Resectable Carcinoma of Unknown Primary 7 190279 -NCIT:C170962 Resectable Adenocarcinoma of Unknown Primary 8 190280 -NCIT:C4039 Adenocarcinoma of Unknown Primary 7 190281 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 8 190282 -NCIT:C170962 Resectable Adenocarcinoma of Unknown Primary 8 190283 -NCIT:C8099 Squamous Cell Carcinoma of Unknown Primary 7 190284 -NCIT:C165474 Locally Advanced Squamous Cell Carcinoma of Unknown Primary 8 190285 -NCIT:C187051 Human Papillomavirus-Related Head and Neck Squamous Cell Carcinoma of Unknown Primary 8 190286 -NCIT:C190149 Human Papillomavirus-Negative Head and Neck Squamous Cell Carcinoma of Unknown Primary 8 190287 -NCIT:C7713 Neck Squamous Cell Carcinoma of Unknown Primary 8 190288 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 9 190289 -NCIT:C8100 Undifferentiated Carcinoma of Unknown Primary 7 190290 -NCIT:C9181 Recurrent Carcinoma of Unknown Primary 7 190291 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 8 190292 -NCIT:C4104 Metastatic Squamous Cell Carcinoma 6 190293 -NCIT:C143013 Metastatic Skin Squamous Cell Carcinoma 7 190294 -NCIT:C153182 Locally Advanced Skin Squamous Cell Carcinoma 8 190295 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 190296 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 8 190297 -NCIT:C168542 Advanced Skin Squamous Cell Carcinoma 8 190298 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 190299 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 190300 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 190301 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 190302 -NCIT:C148153 Metastatic Head and Neck Squamous Cell Carcinoma 7 190303 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 8 190304 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 190305 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 190306 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 190307 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 190308 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 190309 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 190310 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 190311 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 190312 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 190313 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 190314 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 8 190315 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 190316 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 190317 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 190318 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 8 190319 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 190320 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 190321 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 190322 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 190323 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 190324 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 190325 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 190326 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 190327 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 190328 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 190329 -NCIT:C162882 Metastatic Sinonasal Squamous Cell Carcinoma 8 190330 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 190331 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 190332 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 190333 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 9 190334 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 190335 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 9 190336 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 190337 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 190338 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 190339 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 190340 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 8 190341 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 8 190342 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 190343 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 190344 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 190345 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 190346 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 190347 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 190348 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 190349 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 190350 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 190351 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 190352 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 190353 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 190354 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 190355 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 190356 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 190357 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 190358 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 190359 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 7 190360 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 190361 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 8 190362 -NCIT:C154321 Locally Advanced Squamous Cell Carcinoma 7 190363 -NCIT:C153182 Locally Advanced Skin Squamous Cell Carcinoma 8 190364 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 190365 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 190366 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 190367 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 8 190368 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 190369 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 190370 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 190371 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 190372 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 190373 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 190374 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 190375 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 190376 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 190377 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 190378 -NCIT:C165474 Locally Advanced Squamous Cell Carcinoma of Unknown Primary 8 190379 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 8 190380 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 190381 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 8 190382 -NCIT:C156075 Metastatic Esophageal Squamous Cell Carcinoma 7 190383 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 190384 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 190385 -NCIT:C156092 Metastatic Lung Squamous Cell Carcinoma 7 190386 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 190387 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 190388 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 190389 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 190390 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 190391 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 190392 -NCIT:C157452 Metastatic Squamous Cell Carcinoma in the Cervical Lymph Nodes 7 190393 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 7 190394 -NCIT:C162653 Advanced Squamous Cell Carcinoma 7 190395 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 8 190396 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 190397 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 190398 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 190399 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 190400 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 190401 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 190402 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 190403 -NCIT:C168542 Advanced Skin Squamous Cell Carcinoma 8 190404 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 190405 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 8 190406 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 190407 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 190408 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 190409 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 8 190410 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 190411 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 190412 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 190413 -NCIT:C169103 Metastatic Anal Squamous Cell Carcinoma 7 190414 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 190415 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 190416 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 7 190417 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 8 190418 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 8 190419 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 7 190420 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 7 190421 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 190422 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 190423 -NCIT:C182111 Metastatic Squamous Cell Carcinoma of the Penis 7 190424 -NCIT:C188112 Metastatic Squamous Cell Carcinoma in the Breast 7 190425 -NCIT:C188113 Metastatic Squamous Cell Carcinoma in the Skin 7 190426 -NCIT:C190771 Metastatic Pancreatic Squamous Cell Carcinoma 7 190427 -NCIT:C4829 Disseminated Squamous Cell Carcinoma 7 190428 -NCIT:C5178 Metastatic Breast Squamous Cell Carcinoma 7 190429 -NCIT:C8099 Squamous Cell Carcinoma of Unknown Primary 7 190430 -NCIT:C165474 Locally Advanced Squamous Cell Carcinoma of Unknown Primary 8 190431 -NCIT:C187051 Human Papillomavirus-Related Head and Neck Squamous Cell Carcinoma of Unknown Primary 8 190432 -NCIT:C190149 Human Papillomavirus-Negative Head and Neck Squamous Cell Carcinoma of Unknown Primary 8 190433 -NCIT:C7713 Neck Squamous Cell Carcinoma of Unknown Primary 8 190434 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 9 190435 -NCIT:C4124 Metastatic Adenocarcinoma 6 190436 -NCIT:C150577 Metastatic Gastroesophageal Junction Adenocarcinoma 7 190437 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 8 190438 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 8 190439 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 9 190440 -NCIT:C150595 Metastatic Renal Cell Carcinoma 7 190441 -NCIT:C153170 Advanced Renal Cell Carcinoma 8 190442 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 190443 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 190444 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 190445 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 190446 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 190447 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 8 190448 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 190449 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 190450 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 8 190451 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 190452 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 190453 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 8 190454 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 190455 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 190456 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 8 190457 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 190458 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 190459 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 190460 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 190461 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 190462 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 190463 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 8 190464 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 190465 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 190466 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 8 190467 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 190468 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 190469 -NCIT:C153319 Metastatic Gastric Adenocarcinoma 7 190470 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 190471 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 190472 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 190473 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 190474 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 190475 -NCIT:C165630 Metastatic Proximal Gastric Adenocarcinoma 8 190476 -NCIT:C166121 Oligometastatic Gastric Adenocarcinoma 8 190477 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 190478 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 190479 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 7 190480 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 8 190481 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 190482 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 190483 -NCIT:C154091 Metastatic Hepatocellular Carcinoma 7 190484 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 8 190485 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 190486 -NCIT:C167336 Advanced Hepatocellular Carcinoma 8 190487 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 190488 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 190489 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 190490 -NCIT:C155908 Metastatic Lung Adenocarcinoma 7 190491 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 8 190492 -NCIT:C176727 Advanced Lung Adenocarcinoma 8 190493 -NCIT:C156070 Metastatic Adrenal Cortical Carcinoma 7 190494 -NCIT:C174443 Locally Advanced Adrenal Cortical Carcinoma 8 190495 -NCIT:C191863 Advanced Adrenal Cortical Carcinoma 8 190496 -NCIT:C156074 Metastatic Esophageal Adenocarcinoma 7 190497 -NCIT:C166120 Oligometastatic Esophageal Adenocarcinoma 8 190498 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 190499 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 190500 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 190501 -NCIT:C172249 Metastatic Distal Esophagus Adenocarcinoma 8 190502 -NCIT:C157623 Metastatic Cholangiocarcinoma 7 190503 -NCIT:C162752 Advanced Cholangiocarcinoma 8 190504 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 9 190505 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 9 190506 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 9 190507 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 8 190508 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 190509 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 9 190510 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 8 190511 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 9 190512 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 8 190513 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 190514 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 9 190515 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 8 190516 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 9 190517 -NCIT:C159556 Advanced Adenocarcinoma 7 190518 -NCIT:C153170 Advanced Renal Cell Carcinoma 8 190519 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 190520 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 190521 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 190522 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 190523 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 190524 -NCIT:C156286 Advanced Prostate Adenocarcinoma 8 190525 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 190526 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 190527 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 8 190528 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 8 190529 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 9 190530 -NCIT:C162752 Advanced Cholangiocarcinoma 8 190531 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 9 190532 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 9 190533 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 9 190534 -NCIT:C165700 Advanced Breast Adenocarcinoma 8 190535 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 190536 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 190537 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 190538 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 190539 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 190540 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 190541 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 190542 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 190543 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 190544 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 190545 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 190546 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 190547 -NCIT:C167336 Advanced Hepatocellular Carcinoma 8 190548 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 190549 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 190550 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 8 190551 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 190552 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 190553 -NCIT:C170807 Advanced Endometrioid Adenocarcinoma 8 190554 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 190555 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 190556 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 190557 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 190558 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 190559 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 190560 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 8 190561 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 8 190562 -NCIT:C176727 Advanced Lung Adenocarcinoma 8 190563 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 190564 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 190565 -NCIT:C191863 Advanced Adrenal Cortical Carcinoma 8 190566 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 7 190567 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 190568 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 190569 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 190570 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 8 190571 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 190572 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 190573 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 8 190574 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 190575 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 190576 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 190577 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 190578 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 190579 -NCIT:C161048 Metastatic Colorectal Adenocarcinoma 7 190580 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 8 190581 -NCIT:C160819 Metastatic Colon Adenocarcinoma 8 190582 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 190583 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 190584 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 190585 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 8 190586 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 190587 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 190588 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 190589 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 8 190590 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 190591 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 190592 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 190593 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 190594 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 190595 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 190596 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 190597 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 190598 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 190599 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 190600 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 190601 -NCIT:C165698 Metastatic Breast Adenocarcinoma 7 190602 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 8 190603 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 190604 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 190605 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 190606 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 190607 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 190608 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 190609 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 190610 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 190611 -NCIT:C165700 Advanced Breast Adenocarcinoma 8 190612 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 190613 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 190614 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 190615 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 190616 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 190617 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 190618 -NCIT:C168777 Metastatic HER2-Negative Breast Carcinoma 8 190619 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 190620 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 190621 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 190622 -NCIT:C179554 Metastatic HER2-Low Breast Carcinoma 8 190623 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 190624 -NCIT:C180924 Metastatic HER2-Positive Breast Carcinoma 8 190625 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 190626 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 190627 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 190628 -NCIT:C181787 Metastatic Breast Inflammatory Carcinoma 8 190629 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 9 190630 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 9 190631 -NCIT:C9246 Stage IIIB Breast Inflammatory Carcinoma 9 190632 -NCIT:C185880 Metastatic Hormone Receptor-Positive Breast Carcinoma 8 190633 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 190634 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 190635 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 190636 -NCIT:C190852 Metastatic Androgen Receptor-Positive Breast Carcinoma 9 190637 -NCIT:C190856 Metastatic Estrogen Receptor-Positive Breast Carcinoma 9 190638 -NCIT:C190677 Metastatic Hormone Receptor-Negative Breast Carcinoma 8 190639 -NCIT:C153348 Metastatic Triple-Negative Breast Carcinoma 9 190640 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 190641 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 10 190642 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 11 190643 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 10 190644 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 190645 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 190646 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 8 190647 -NCIT:C76326 Metastatic Breast Ductal Carcinoma 8 190648 -NCIT:C76328 Metastatic Breast Lobular Carcinoma 8 190649 -NCIT:C168978 Locally Advanced Adenocarcinoma 7 190650 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 8 190651 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 9 190652 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 9 190653 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 8 190654 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 190655 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 8 190656 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 190657 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 8 190658 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 9 190659 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 190660 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 190661 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 190662 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 8 190663 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 190664 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 190665 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 190666 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 190667 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 190668 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 190669 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 190670 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 190671 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 190672 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 8 190673 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 190674 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 9 190675 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 8 190676 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 190677 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 190678 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 190679 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 190680 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 190681 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 190682 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 190683 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 190684 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 8 190685 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 190686 -NCIT:C174045 Locally Advanced Endometrioid Adenocarcinoma 8 190687 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 190688 -NCIT:C174443 Locally Advanced Adrenal Cortical Carcinoma 8 190689 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 8 190690 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 8 190691 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 190692 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 190693 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 190694 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 190695 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 190696 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 190697 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 190698 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 190699 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 190700 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 190701 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 190702 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 190703 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 7 190704 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 190705 -NCIT:C170972 Metastatic Primary Peritoneal Adenocarcinoma 7 190706 -NCIT:C171019 Metastatic Primary Peritoneal Serous Adenocarcinoma 8 190707 -NCIT:C186453 Metastatic Primary Peritoneal High Grade Serous Adenocarcinoma 9 190708 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 7 190709 -NCIT:C173979 Metastatic Differentiated Thyroid Gland Carcinoma 7 190710 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 8 190711 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 9 190712 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 10 190713 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 8 190714 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 8 190715 -NCIT:C174046 Metastatic Poorly Differentiated Thyroid Gland Carcinoma 7 190716 -NCIT:C182104 Metastatic Appendix Adenocarcinoma 7 190717 -NCIT:C162274 Metastatic Appendix Mucinous Adenocarcinoma 8 190718 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 190719 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 7 190720 -NCIT:C185381 Metastatic Mesonephric Adenocarcinoma 7 190721 -NCIT:C27185 Disseminated Adenocarcinoma 7 190722 -NCIT:C3345 Pseudomyxoma Peritonei 7 190723 -NCIT:C179179 Recurrent Pseudomyxoma Peritonei 8 190724 -NCIT:C179180 Refractory Pseudomyxoma Peritonei 8 190725 -NCIT:C4039 Adenocarcinoma of Unknown Primary 7 190726 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 8 190727 -NCIT:C170962 Resectable Adenocarcinoma of Unknown Primary 8 190728 -NCIT:C66717 Metastatic Signet Ring Cell Carcinoma 7 190729 -NCIT:C3153 Krukenberg Tumor 8 190730 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 8 190731 -NCIT:C8933 Metastatic Pancreatic Adenocarcinoma 7 190732 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 8 190733 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 9 190734 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 9 190735 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 8 190736 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 9 190737 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 9 190738 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 9 190739 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 8 190740 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 9 190741 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 8 190742 -NCIT:C8934 Metastatic Small Intestinal Adenocarcinoma 7 190743 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 190744 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 7 190745 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 8 190746 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 190747 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 8 190748 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 190749 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 190750 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 8 190751 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 190752 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 190753 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 8 190754 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 190755 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 8 190756 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 8 190757 -NCIT:C8943 Metastatic Endometrioid Adenocarcinoma 7 190758 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 8 190759 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 190760 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 190761 -NCIT:C170807 Advanced Endometrioid Adenocarcinoma 8 190762 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 190763 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 190764 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 8 190765 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 190766 -NCIT:C174045 Locally Advanced Endometrioid Adenocarcinoma 8 190767 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 190768 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 7 190769 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 190770 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 7 190771 -NCIT:C156286 Advanced Prostate Adenocarcinoma 8 190772 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 190773 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 8 190774 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 190775 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 8 190776 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 190777 -NCIT:C9044 Metastatic Parathyroid Gland Carcinoma 7 190778 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 190779 -NCIT:C5628 Metastatic Carcinoma in the Skin 6 190780 -NCIT:C188113 Metastatic Squamous Cell Carcinoma in the Skin 7 190781 -NCIT:C28311 Metastatic Breast Carcinoma in the Skin 7 190782 -NCIT:C6334 Metastatic Carcinoma in the Uterine Cervix 6 190783 -NCIT:C9276 Metastatic Carcinoma in the Adrenal Medulla 6 190784 -NCIT:C96767 Metastatic Carcinoma in the Liver 6 190785 -NCIT:C157366 Colorectal Carcinoma Metastatic in the Liver 7 190786 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 8 190787 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 8 190788 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 8 190789 -NCIT:C36302 Breast Carcinoma Metastatic in the Liver 7 190790 -NCIT:C36306 Lung Carcinoma Metastatic in the Liver 7 190791 -NCIT:C43344 Cylindrocarcinoma 5 190792 -NCIT:C4397 Carcinoma ex Pleomorphic Adenoma 5 190793 -NCIT:C40410 Salivary Gland Carcinoma ex Pleomorphic Adenoma 6 190794 -NCIT:C5975 Major Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 190795 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 190796 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 190797 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 190798 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 190799 -NCIT:C5976 Minor Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 190800 -NCIT:C6804 Lacrimal Gland Carcinoma ex Pleomorphic Adenoma 6 190801 -NCIT:C5117 Spiradenocarcinoma 5 190802 -NCIT:C5180 Malignant Breast Spiradenoma 6 190803 -NCIT:C54303 Primary Intraosseous Squamous Cell Carcinoma Derived From Keratocystic Odontogenic Tumor 5 190804 -NCIT:C7496 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated) 5 190805 -NCIT:C54298 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated), Intraosseous 6 190806 -NCIT:C54299 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated), Peripheral 6 190807 -NCIT:C7497 Ameloblastic Carcinoma Derived From Odontogenic Cyst 5 190808 -NCIT:C7500 Primary Intraosseous Squamous Cell Carcinoma Derived From Odontogenic Cyst 5 190809 -NCIT:C79949 Carcinoma Arising from Craniopharyngioma 5 190810 -NCIT:C53704 Secondary Osteosarcoma 4 190811 -NCIT:C53706 Radiation-Related Osteosarcoma 5 190812 -NCIT:C6469 Osteosarcoma Arising in Paget Disease of Bone 5 190813 -NCIT:C5416 Secondary Supratentorial Anaplastic Astrocytoma 4 190814 -NCIT:C80683 Therapy-Related Leukemia 4 190815 -NCIT:C80691 Chemotherapy-Related Leukemia 5 190816 -NCIT:C27754 Alkylating Agent-Related Acute Myeloid Leukemia 6 190817 -NCIT:C8252 Therapy-Related Acute Myeloid Leukemia 5 190818 -NCIT:C186730 Therapy-Related Cytogenetically Normal Acute Myeloid Leukemia 6 190819 -NCIT:C27754 Alkylating Agent-Related Acute Myeloid Leukemia 6 190820 -NCIT:C27755 Topoisomerase II Inhibitor-Related Acute Myeloid Leukemia 6 190821 -NCIT:C3646 Neoplasm of Uncertain Malignant Potential 2 190822 -NCIT:C126469 Borderline Broad Ligament Serous Tumor 3 190823 -NCIT:C158622 Borderline Serous Cystadenofibroma 3 190824 -NCIT:C40029 Borderline Ovarian Serous Cystadenofibroma 4 190825 -NCIT:C178255 Atypical Neurofibromatous Neoplasm of Uncertain Biologic Potential 3 190826 -NCIT:C181941 Female Reproductive System Smooth Muscle Tumor of Uncertain Malignant Potential 3 190827 -NCIT:C179362 Ovarian Smooth Muscle Tumor of Uncertain Malignant Potential 4 190828 -NCIT:C181939 Vulvar Smooth Muscle Tumor of Uncertain Malignant Potential 4 190829 -NCIT:C181940 Vaginal Smooth Muscle Tumor of Uncertain Malignant Potential 4 190830 -NCIT:C40177 Uterine Corpus Smooth Muscle Tumor of Uncertain Malignant Potential 4 190831 -NCIT:C180540 Uterine Corpus Spindle Smooth Muscle Tumor of Uncertain Malignant Potential 5 190832 -NCIT:C180541 Uterine Corpus Myxoid Smooth Muscle Tumor of Uncertain Malignant Potential 5 190833 -NCIT:C180542 Uterine Corpus Epithelioid Smooth Muscle Tumor of Uncertain Malignant Potential 5 190834 -NCIT:C187284 Thyroid Gland Tumor of Uncertain Malignant Potential 3 190835 -NCIT:C155978 Thyroid Gland Follicular Tumor of Uncertain Malignant Potential 4 190836 -NCIT:C27729 Thyroid Gland Well-Differentiated Tumor of Uncertain Malignant Potential 4 190837 -NCIT:C27497 Glomus Tumor of Uncertain Malignant Potential 3 190838 -NCIT:C27880 Bladder Urothelial Proliferation of Uncertain Malignant Potential 3 190839 -NCIT:C27897 T-Cell Proliferation of Uncertain Malignant Potential 3 190840 -NCIT:C139021 Indolent T-Cell Lymphoproliferative Disorder of the Gastrointestinal Tract 4 190841 -NCIT:C3721 Lymphomatoid Papulosis 4 190842 -NCIT:C139014 Type D Lymphomatoid Papulosis 5 190843 -NCIT:C139015 Type E Lymphomatoid Papulosis 5 190844 -NCIT:C139017 Lymphomatoid Papulosis with DUSP22-IRF4 Gene Rearrangement 5 190845 -NCIT:C7197 Type A Lymphomatoid Papulosis 5 190846 -NCIT:C7198 Type B Lymphomatoid Papulosis 5 190847 -NCIT:C7199 Type C Lymphomatoid Papulosis 5 190848 -NCIT:C7196 Borderline Primary Cutaneous CD30-Positive T-Cell Lymphoproliferative Disorder 4 190849 -NCIT:C7199 Type C Lymphomatoid Papulosis 5 190850 -NCIT:C7200 Anaplastic Large Cell Lymphoma, Lymphomatoid Papulosis-Like Histology 5 190851 -NCIT:C3765 Multicystic Mesothelioma 3 190852 -NCIT:C6536 Peritoneal Multicystic Mesothelioma 4 190853 -NCIT:C39905 Prostate Stromal Tumor of Uncertain Malignant Potential 3 190854 -NCIT:C40024 Borderline Peritoneal Serous Tumor 3 190855 -NCIT:C40106 Borderline Fallopian Tube Neoplasm 3 190856 -NCIT:C40107 Borderline Fallopian Tube Serous Tumor 4 190857 -NCIT:C40108 Borderline Fallopian Tube Mucinous Tumor 4 190858 -NCIT:C40110 Borderline Fallopian Tube Endometrioid Tumor 4 190859 -NCIT:C4524 Multilocular Cystic Renal Neoplasm of Low Malignant Potential 3 190860 -NCIT:C4711 Borderline Cystadenoma 3 190861 -NCIT:C4177 Borderline Serous Cystadenoma 4 190862 -NCIT:C4183 Borderline Papillary Serous Cystadenoma 5 190863 -NCIT:C4178 Borderline Papillary Cystadenoma 4 190864 -NCIT:C4183 Borderline Papillary Serous Cystadenoma 5 190865 -NCIT:C4186 Borderline Papillary Mucinous Cystadenoma 5 190866 -NCIT:C4783 Borderline Ovarian Epithelial Tumor 3 190867 -NCIT:C115352 Recurrent Borderline Ovarian Surface Epithelial-Stromal Tumor 4 190868 -NCIT:C158616 Borderline Ovarian Mixed Epithelial Tumor/Atypical Proliferative Ovarian Mixed Epithelial Tumor 4 190869 -NCIT:C7281 Borderline Ovarian Seromucinous Tumor/Atypical Proliferative Ovarian Seromucinous Tumor 5 190870 -NCIT:C179251 Borderline Ovarian Endometrioid Tumor 4 190871 -NCIT:C159486 Borderline Ovarian Endometrioid Tumor/Atypical Proliferative Ovarian Endometrioid Tumor with Microinvasion 5 190872 -NCIT:C7983 Borderline Ovarian Endometrioid Tumor/Atypical Proliferative Ovarian Endometrioid Tumor 5 190873 -NCIT:C40069 Borderline Ovarian Endometrioid Adenofibroma 6 190874 -NCIT:C27289 Borderline Ovarian Endometrioid Cystadenofibroma 7 190875 -NCIT:C179259 Borderline Ovarian Seromucinous Tumor 4 190876 -NCIT:C159313 Borderline Ovarian Seromucinous Tumor/Atypical Proliferative Ovarian Seromucinous Tumor with Microinvasion 5 190877 -NCIT:C7281 Borderline Ovarian Seromucinous Tumor/Atypical Proliferative Ovarian Seromucinous Tumor 5 190878 -NCIT:C40036 Borderline Ovarian Mucinous Tumor 4 190879 -NCIT:C122586 Borderline Ovarian Mucinous Tumor/Atypical Proliferative Ovarian Mucinous Tumor 5 190880 -NCIT:C159312 Borderline Ovarian Mucinous Tumor/Atypical Proliferative Ovarian Mucinous Tumor with Intraepithelial Carcinoma 6 190881 -NCIT:C40037 Borderline Ovarian Mucinous Tumor, Intestinal Type 5 190882 -NCIT:C40038 Borderline Ovarian Mucinous Tumor, Endocervical-Like 5 190883 -NCIT:C66775 Borderline Ovarian Mucinous Adenofibroma 5 190884 -NCIT:C40080 Borderline Ovarian Clear Cell Tumor 4 190885 -NCIT:C40081 Borderline Ovarian Clear Cell Adenofibroma 5 190886 -NCIT:C126308 Borderline Ovarian Clear Cell Tumor/Atypical Proliferative Ovarian Clear Cell Tumor 6 190887 -NCIT:C40082 Borderline Ovarian Clear Cell Tumor/Atypical Proliferative Ovarian Clear Cell Tumor with Intraepithelial Carcinoma 7 190888 -NCIT:C40083 Borderline Ovarian Clear Cell Cystadenofibroma 6 190889 -NCIT:C5226 Borderline Ovarian Serous Tumor 4 190890 -NCIT:C122584 Borderline Ovarian Serous Tumor/Atypical Proliferative Ovarian Serous Tumor 5 190891 -NCIT:C122585 Borderline Ovarian Serous Tumor-Micropapillary Variant/Non-Invasive Low Grade Ovarian Serous Carcinoma 5 190892 -NCIT:C40028 Borderline Ovarian Serous Adenofibroma 5 190893 -NCIT:C40029 Borderline Ovarian Serous Cystadenofibroma 6 190894 -NCIT:C9459 Borderline Ovarian Brenner Tumor 4 190895 -NCIT:C94821 Stage I Borderline Ovarian Surface Epithelial-Stromal Tumor 4 190896 -NCIT:C94822 Stage II Borderline Ovarian Surface Epithelial-Stromal Tumor 4 190897 -NCIT:C94824 Stage III Borderline Ovarian Surface Epithelial-Stromal Tumor 4 190898 -NCIT:C94825 Stage IV Borderline Ovarian Surface Epithelial-Stromal Tumor 4 190899 -NCIT:C54000 Gastrointestinal Stromal Tumor of Uncertain Malignant Potential 3 190900 -NCIT:C95898 Gastric Gastrointestinal Stromal Tumor of Uncertain Malignant Potential 4 190901 -NCIT:C5716 Borderline Exocrine Pancreatic Neoplasm 3 190902 -NCIT:C41249 Pancreatic Intraductal Papillary-Mucinous Neoplasm, Low Grade 4 190903 -NCIT:C41251 Pancreatic Intraductal Papillary-Mucinous Neoplasm, High Grade 4 190904 -NCIT:C4845 Pancreatic Intraepithelial Neoplasia 4 190905 -NCIT:C172803 Low Grade Pancreatic Intraepithelial Neoplasia 5 190906 -NCIT:C4846 Pancreatic Intraepithelial Neoplasia-2 6 190907 -NCIT:C6820 Pancreatic Intraepithelial Neoplasia-1 6 190908 -NCIT:C95429 Pancreatic Intraepithelial Neoplasia-1A 7 190909 -NCIT:C95430 Pancreatic Intraepithelial Neoplasia-1B 7 190910 -NCIT:C95432 High Grade Pancreatic Intraepithelial Neoplasia 5 190911 -NCIT:C95488 Non-Invasive Pancreatic Mucinous-Cystic Neoplasm 4 190912 -NCIT:C95483 Pancreatic Mucinous-Cystic Neoplasm, Low Grade 5 190913 -NCIT:C95493 Pancreatic Mucinous-Cystic Neoplasm, High Grade 5 190914 -NCIT:C95506 Pancreatic Intraductal Tubulopapillary Neoplasm 4 190915 -NCIT:C7182 B-Cell Proliferation of Uncertain Malignant Potential 3 190916 -NCIT:C138181 In Situ Follicular Neoplasia 4 190917 -NCIT:C138191 In Situ Mantle Cell Neoplasia 4 190918 -NCIT:C157343 Monoclonal Gammopathy of Renal Significance 4 190919 -NCIT:C3996 Monoclonal Gammopathy of Undetermined Significance 4 190920 -NCIT:C150566 IgM Monoclonal Gammopathy of Undetermined Significance 5 190921 -NCIT:C150588 Non-IgM Monoclonal Gammopathy of Undetermined Significance 5 190922 -NCIT:C7183 Polymorphic Post-Transplant Lymphoproliferative Disorder 4 190923 -NCIT:C157476 Recurrent Polymorphic Post-Transplant Lymphoproliferative Disorder 5 190924 -NCIT:C157477 Refractory Polymorphic Post-Transplant Lymphoproliferative Disorder 5 190925 -NCIT:C7930 Lymphomatoid Granulomatosis 4 190926 -NCIT:C123392 Childhood Lymphomatoid Granulomatosis 5 190927 -NCIT:C115204 Childhood Grade III Lymphomatoid Granulomatosis 6 190928 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 7 190929 -NCIT:C123393 Recurrent Childhood Lymphomatoid Granulomatosis 6 190930 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 7 190931 -NCIT:C186662 Central Nervous System Lymphomatoid Granulomatosis 5 190932 -NCIT:C45267 Cutaneous Lymphomatoid Granulomatosis 5 190933 -NCIT:C45607 Pulmonary Lymphomatoid Granulomatosis 5 190934 -NCIT:C7931 Grade I Lymphomatoid Granulomatosis 5 190935 -NCIT:C115430 Recurrent Grade I Lymphomatoid Granulomatosis 6 190936 -NCIT:C7932 Grade II Lymphomatoid Granulomatosis 5 190937 -NCIT:C115431 Recurrent Grade II Lymphomatoid Granulomatosis 6 190938 -NCIT:C7933 Grade III Lymphomatoid Granulomatosis 5 190939 -NCIT:C115150 Adult Grade III Lymphomatoid Granulomatosis 6 190940 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 7 190941 -NCIT:C115204 Childhood Grade III Lymphomatoid Granulomatosis 6 190942 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 7 190943 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 6 190944 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 7 190945 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 7 190946 -NCIT:C7934 Recurrent Lymphomatoid Granulomatosis 5 190947 -NCIT:C115430 Recurrent Grade I Lymphomatoid Granulomatosis 6 190948 -NCIT:C115431 Recurrent Grade II Lymphomatoid Granulomatosis 6 190949 -NCIT:C123393 Recurrent Childhood Lymphomatoid Granulomatosis 6 190950 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 7 190951 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 6 190952 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 7 190953 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 7 190954 -NCIT:C7503 Borderline Phyllodes Tumor 3 190955 -NCIT:C181907 Borderline Vulvar Phyllodes Tumor 4 190956 -NCIT:C5316 Borderline Breast Phyllodes Tumor 4 190957 -NCIT:C3677 Benign Neoplasm 2 190958 -NCIT:C156483 Benign Genitourinary System Neoplasm 3 190959 -NCIT:C190602 Childhood Benign Genitourinary System Neoplasm 4 190960 -NCIT:C123837 Childhood Testicular Mature Teratoma 5 190961 -NCIT:C189337 Childhood Mullerian Papilloma 5 190962 -NCIT:C190608 Childhood Benign Kidney Neoplasm 5 190963 -NCIT:C157745 Childhood Cystic Nephroma 6 190964 -NCIT:C66774 Ossifying Renal Tumor of Infancy 6 190965 -NCIT:C190658 Childhood Benign Ovarian Neoplasm 5 190966 -NCIT:C189288 Childhood Ovarian Fibroma 6 190967 -NCIT:C189289 Childhood Ovarian Sclerosing Stromal Tumor 6 190968 -NCIT:C6548 Childhood Ovarian Mature Teratoma 6 190969 -NCIT:C40330 Vulvar Congenital Melanocytic Nevus 5 190970 -NCIT:C4893 Benign Urinary System Neoplasm 4 190971 -NCIT:C191740 Squamous Papilloma of the Urinary Tract 5 190972 -NCIT:C39834 Bladder Squamous Papilloma 6 190973 -NCIT:C191750 Villous Adenoma of the Urinary Tract 5 190974 -NCIT:C7414 Bladder Villous Adenoma 6 190975 -NCIT:C3617 Benign Ureter Neoplasm 5 190976 -NCIT:C4530 Ureter Polyp 6 190977 -NCIT:C6160 Ureter Urothelial Papilloma 6 190978 -NCIT:C6174 Ureter Inverted Papilloma 7 190979 -NCIT:C6161 Ureter Leiomyoma 6 190980 -NCIT:C6162 Ureter Schwannoma 6 190981 -NCIT:C3618 Benign Bladder Neoplasm 5 190982 -NCIT:C159674 Bladder Benign PEComa 6 190983 -NCIT:C159680 Bladder Hemangioma 6 190984 -NCIT:C159682 Bladder Neurofibroma 6 190985 -NCIT:C39834 Bladder Squamous Papilloma 6 190986 -NCIT:C39858 Bladder Urothelial Papilloma 6 190987 -NCIT:C39859 Bladder Inverted Papilloma 7 190988 -NCIT:C6178 Bladder Leiomyoma 6 190989 -NCIT:C7414 Bladder Villous Adenoma 6 190990 -NCIT:C3619 Benign Urethral Neoplasm 5 190991 -NCIT:C39872 Urethral Villous Adenoma 6 190992 -NCIT:C4532 Benign Accessory Urethral Gland Neoplasm 6 190993 -NCIT:C5061 Urethral Urothelial Papilloma 6 190994 -NCIT:C6173 Urethral Inverted Papilloma 7 190995 -NCIT:C6169 Urethral Condyloma Acuminatum 6 190996 -NCIT:C6171 Urethral Leiomyoma 6 190997 -NCIT:C3842 Urothelial Papilloma 5 190998 -NCIT:C39858 Bladder Urothelial Papilloma 6 190999 -NCIT:C39859 Bladder Inverted Papilloma 7 191000 -NCIT:C4528 Renal Pelvis Urothelial Papilloma 6 191001 -NCIT:C6187 Renal Pelvis Inverted Papilloma 7 191002 -NCIT:C5061 Urethral Urothelial Papilloma 6 191003 -NCIT:C6173 Urethral Inverted Papilloma 7 191004 -NCIT:C6160 Ureter Urothelial Papilloma 6 191005 -NCIT:C6174 Ureter Inverted Papilloma 7 191006 -NCIT:C6192 Inverted Urothelial Papilloma 6 191007 -NCIT:C39859 Bladder Inverted Papilloma 7 191008 -NCIT:C6173 Urethral Inverted Papilloma 7 191009 -NCIT:C6174 Ureter Inverted Papilloma 7 191010 -NCIT:C6187 Renal Pelvis Inverted Papilloma 7 191011 -NCIT:C4778 Benign Kidney Neoplasm 5 191012 -NCIT:C157748 Metanephric Tumor 6 191013 -NCIT:C157749 Metanephric Stromal Tumor 7 191014 -NCIT:C27253 Metanephric Adenoma 7 191015 -NCIT:C39812 Metanephric Adenofibroma 7 191016 -NCIT:C159209 Kidney Leiomyoma 6 191017 -NCIT:C159211 Kidney Hemangioma 6 191018 -NCIT:C159214 Kidney Lymphangioma 6 191019 -NCIT:C159221 Kidney Schwannoma 6 191020 -NCIT:C190608 Childhood Benign Kidney Neoplasm 6 191021 -NCIT:C157745 Childhood Cystic Nephroma 7 191022 -NCIT:C66774 Ossifying Renal Tumor of Infancy 7 191023 -NCIT:C191391 Kidney Classic Angiomyolipoma 6 191024 -NCIT:C191392 Kidney Oncocytoma-Like Angiomyolipoma 7 191025 -NCIT:C191393 Kidney Angiomyolipoma with Epithelial Cysts 7 191026 -NCIT:C3616 Benign Renal Pelvis Neoplasm 6 191027 -NCIT:C4528 Renal Pelvis Urothelial Papilloma 7 191028 -NCIT:C6187 Renal Pelvis Inverted Papilloma 8 191029 -NCIT:C37264 Benign Kidney Mixed Epithelial and Stromal Tumor 6 191030 -NCIT:C4162 Juxtaglomerular Cell Tumor 6 191031 -NCIT:C4526 Kidney Oncocytoma 6 191032 -NCIT:C8960 Hereditary Kidney Oncocytoma 7 191033 -NCIT:C5100 Renomedullary Interstitial Cell Tumor 6 191034 -NCIT:C5101 Kidney Lipoma 6 191035 -NCIT:C8383 Kidney Adenoma 6 191036 -NCIT:C27253 Metanephric Adenoma 7 191037 -NCIT:C3687 Renal Papillary Adenoma 7 191038 -NCIT:C7617 Benign Reproductive System Neoplasm 4 191039 -NCIT:C139547 Fibroadenoma of Anogenital Mammary-Type Glands 5 191040 -NCIT:C128242 Vulvar Fibroadenoma 6 191041 -NCIT:C139546 Anal Fibroadenoma 6 191042 -NCIT:C2860 Adrenal Rest Tumor 5 191043 -NCIT:C4777 Benign Male Reproductive System Neoplasm 5 191044 -NCIT:C161643 Benign Seminal Vesicle Neoplasm 6 191045 -NCIT:C161638 Seminal Vesicle Leiomyoma 7 191046 -NCIT:C161639 Seminal Vesicle Schwannoma 7 191047 -NCIT:C161640 Seminal Vesicle Mammary-Type Myofibroblastoma 7 191048 -NCIT:C39907 Seminal Vesicle Cystadenoma 7 191049 -NCIT:C162476 Paratesticular Adenomatoid Tumor 6 191050 -NCIT:C6382 Epididymal Adenomatoid Tumor 7 191051 -NCIT:C162494 Paratesticular Leiomyoma 6 191052 -NCIT:C161638 Seminal Vesicle Leiomyoma 7 191053 -NCIT:C162496 Paratesticular Rhabdomyoma 6 191054 -NCIT:C162498 Paratesticular Cellular Angiofibroma 6 191055 -NCIT:C162500 Paratesticular Mammary-Type Myofibroblastoma 6 191056 -NCIT:C161640 Seminal Vesicle Mammary-Type Myofibroblastoma 7 191057 -NCIT:C162501 Paratesticular Deep (Aggressive) Angiomyxoma 6 191058 -NCIT:C162502 Paratesticular Schwannoma 6 191059 -NCIT:C161639 Seminal Vesicle Schwannoma 7 191060 -NCIT:C162503 Paratesticular Hemangioma 6 191061 -NCIT:C3489 Benign Penile Neoplasm 6 191062 -NCIT:C162579 Penile Hemangioma 7 191063 -NCIT:C162580 Penile Epithelioid Hemangioma 8 191064 -NCIT:C162583 Penile Leiomyoma 7 191065 -NCIT:C162586 Penile Schwannoma 7 191066 -NCIT:C162587 Penile Neurofibroma 7 191067 -NCIT:C162590 Penile Myointimoma 7 191068 -NCIT:C162592 Penile Lymphangioma 7 191069 -NCIT:C3612 Benign Testicular Neoplasm 6 191070 -NCIT:C39951 Testicular Fibroma 7 191071 -NCIT:C6355 Mature Testicular Teratoma 7 191072 -NCIT:C123837 Childhood Testicular Mature Teratoma 8 191073 -NCIT:C36092 Testicular Dermoid Cyst 8 191074 -NCIT:C6522 Benign Testicular Sertoli Cell Tumor 7 191075 -NCIT:C39943 Testicular Sertoli Cell Tumor, Lipid Rich Variant 8 191076 -NCIT:C39945 Testicular Sclerosing Sertoli Cell Tumor 8 191077 -NCIT:C3613 Benign Prostate Neoplasm 6 191078 -NCIT:C161581 Prostate Hemangioma 7 191079 -NCIT:C161606 Prostate Cystadenoma 7 191080 -NCIT:C3972 Prostate Fibroma 7 191081 -NCIT:C4795 Prostate Adenoma 7 191082 -NCIT:C5532 Benign Prostate Phyllodes Tumor 7 191083 -NCIT:C5544 Prostate Leiomyoma 7 191084 -NCIT:C3614 Benign Epididymal Neoplasm 6 191085 -NCIT:C162483 Epididymal Cystadenoma 7 191086 -NCIT:C155953 Epididymal Papillary Cystadenoma 8 191087 -NCIT:C6382 Epididymal Adenomatoid Tumor 7 191088 -NCIT:C39956 Rete Testis Adenoma 6 191089 -NCIT:C6384 Paratesticular Lipoma 6 191090 -NCIT:C3606 Spermatic Cord Lipoma 7 191091 -NCIT:C4934 Benign Female Reproductive System Neoplasm 5 191092 -NCIT:C126493 Benign Uterine Ligament Neoplasm 6 191093 -NCIT:C155952 Uterine Ligament Papillary Cystadenoma 7 191094 -NCIT:C179921 Broad Ligament Papillary Cystadenoma 8 191095 -NCIT:C40142 Uterine Ligament Papillary Cystadenoma Associated with von Hippel-Lindau Disease 8 191096 -NCIT:C179923 Uterine Ligament Leiomyoma 7 191097 -NCIT:C179924 Broad Ligament Leiomyoma 8 191098 -NCIT:C179925 Uterine Ligament Adenomyoma 7 191099 -NCIT:C179933 Benign Broad Ligament Neoplasm 7 191100 -NCIT:C126476 Broad Ligament Serous Cystadenoma 8 191101 -NCIT:C179921 Broad Ligament Papillary Cystadenoma 8 191102 -NCIT:C179924 Broad Ligament Leiomyoma 8 191103 -NCIT:C2895 Benign Ovarian Neoplasm 6 191104 -NCIT:C126331 Ovarian Adenomatoid Tumor 7 191105 -NCIT:C179360 Ovarian Leiomyoma 7 191106 -NCIT:C190658 Childhood Benign Ovarian Neoplasm 7 191107 -NCIT:C189288 Childhood Ovarian Fibroma 8 191108 -NCIT:C189289 Childhood Ovarian Sclerosing Stromal Tumor 8 191109 -NCIT:C6548 Childhood Ovarian Mature Teratoma 8 191110 -NCIT:C4510 Benign Ovarian Epithelial Tumor 7 191111 -NCIT:C40039 Benign Ovarian Mucinous Tumor 8 191112 -NCIT:C40040 Ovarian Mucinous Adenofibroma 9 191113 -NCIT:C40041 Ovarian Mucinous Cystadenofibroma 10 191114 -NCIT:C4512 Ovarian Mucinous Cystadenoma 9 191115 -NCIT:C40072 Benign Ovarian Endometrioid Tumor 8 191116 -NCIT:C27287 Ovarian Endometrioid Adenofibroma 9 191117 -NCIT:C27288 Ovarian Endometrioid Cystadenofibroma 10 191118 -NCIT:C40075 Ovarian Endometrioid Cystadenoma 9 191119 -NCIT:C40084 Benign Ovarian Clear Cell Tumor 8 191120 -NCIT:C40085 Ovarian Clear Cell Adenofibroma 9 191121 -NCIT:C40086 Ovarian Clear Cell Cystadenofibroma 10 191122 -NCIT:C4060 Ovarian Cystadenoma 8 191123 -NCIT:C126310 Ovarian Seromucinous Cystadenoma 9 191124 -NCIT:C40075 Ovarian Endometrioid Cystadenoma 9 191125 -NCIT:C4511 Ovarian Serous Cystadenoma 9 191126 -NCIT:C7278 Ovarian Papillary Cystadenoma 10 191127 -NCIT:C4512 Ovarian Mucinous Cystadenoma 9 191128 -NCIT:C4746 Benign Ovarian Brenner Tumor 8 191129 -NCIT:C7282 Benign Ovarian Seromucinous Tumor 8 191130 -NCIT:C126310 Ovarian Seromucinous Cystadenoma 9 191131 -NCIT:C126311 Ovarian Seromucinous Adenofibroma 9 191132 -NCIT:C7313 Benign Ovarian Serous Tumor 8 191133 -NCIT:C40031 Ovarian Serous Adenofibroma 9 191134 -NCIT:C40032 Ovarian Serous Cystadenofibroma 10 191135 -NCIT:C4511 Ovarian Serous Cystadenoma 9 191136 -NCIT:C7278 Ovarian Papillary Cystadenoma 10 191137 -NCIT:C7279 Ovarian Surface Papilloma 9 191138 -NCIT:C4516 Benign Ovarian Germ Cell Tumor 7 191139 -NCIT:C8112 Mature Ovarian Teratoma 8 191140 -NCIT:C3856 Ovarian Dermoid Cyst 9 191141 -NCIT:C39996 Ovarian Fetiform Teratoma 9 191142 -NCIT:C6548 Childhood Ovarian Mature Teratoma 9 191143 -NCIT:C7285 Ovarian Solid Teratoma 9 191144 -NCIT:C5245 Ovarian Myxoma 7 191145 -NCIT:C6803 Benign Ovarian Sex Cord-Stromal Tumor 7 191146 -NCIT:C121953 Ovarian Microcystic Stromal Tumor 8 191147 -NCIT:C3498 Ovarian Fibroma 8 191148 -NCIT:C189288 Childhood Ovarian Fibroma 9 191149 -NCIT:C7291 Ovarian Cellular Fibroma 9 191150 -NCIT:C39977 Ovarian Stromal-Leydig Cell Tumor 8 191151 -NCIT:C4204 Ovarian Sclerosing Stromal Tumor 8 191152 -NCIT:C189289 Childhood Ovarian Sclerosing Stromal Tumor 9 191153 -NCIT:C5219 Benign Ovarian Thecoma 8 191154 -NCIT:C39964 Typical Ovarian Thecoma 9 191155 -NCIT:C6264 Benign Ovarian Luteinized Thecoma 9 191156 -NCIT:C126321 Ovarian Luteinized Thecoma Associated with Sclerosing Peritonitis 10 191157 -NCIT:C3609 Benign Uterine Neoplasm 6 191158 -NCIT:C3607 Benign Cervical Neoplasm 7 191159 -NCIT:C128053 Benign Cervical Soft Tissue Neoplasm 8 191160 -NCIT:C128046 Cervical Leiomyoma 9 191161 -NCIT:C40266 Cervical Rhabdomyoma 9 191162 -NCIT:C34584 Endocervical Polyp 8 191163 -NCIT:C6856 Cervical Microglandular Polyp 9 191164 -NCIT:C40215 Cervical Mullerian Papilloma 8 191165 -NCIT:C40227 Benign Cervical Mixed Epithelial and Mesenchymal Neoplasm 8 191166 -NCIT:C40230 Cervical Adenofibroma 9 191167 -NCIT:C40231 Cervical Adenomyoma 9 191168 -NCIT:C40232 Cervical Adenomyoma, Endocervical-Type 10 191169 -NCIT:C40233 Cervical Adenomyoma, Mesonephric-Type 10 191170 -NCIT:C40234 Cervical Atypical Polypoid Adenomyoma 10 191171 -NCIT:C40240 Cervical Blue Nevus 8 191172 -NCIT:C6342 Cervical Squamous Papilloma 8 191173 -NCIT:C3608 Benign Uterine Corpus Neoplasm 7 191174 -NCIT:C127071 Benign Uterine Corpus PEComa 8 191175 -NCIT:C27250 Uterine Corpus Adenomatoid Tumor 8 191176 -NCIT:C3434 Uterine Corpus Leiomyoma 8 191177 -NCIT:C126975 Uterine Corpus Hydropic Leiomyoma 9 191178 -NCIT:C3511 Uterine Corpus Degenerated Leiomyoma 9 191179 -NCIT:C40162 Uterine Corpus Leiomyoma, Mitotically Active Variant 9 191180 -NCIT:C40163 Uterine Corpus Cellular Leiomyoma 9 191181 -NCIT:C40164 Uterine Corpus Epithelioid Leiomyoma 9 191182 -NCIT:C40165 Uterine Corpus Apoplectic Leiomyoma 9 191183 -NCIT:C40166 Uterine Corpus Myxoid Leiomyoma 9 191184 -NCIT:C40167 Uterine Corpus Bizarre Leiomyoma 9 191185 -NCIT:C40168 Uterine Corpus Lipoleiomyoma 9 191186 -NCIT:C40170 Uterine Corpus Diffuse Leiomyomatosis 9 191187 -NCIT:C40172 Uterine Corpus Dissecting Leiomyoma 9 191188 -NCIT:C40173 Uterine Corpus Metastasizing Leiomyoma 9 191189 -NCIT:C5356 Uterine Corpus Intravenous Leiomyomatosis 9 191190 -NCIT:C4262 Endometrial Stromal Nodule 8 191191 -NCIT:C4894 Benign Endometrial Neoplasm 8 191192 -NCIT:C6335 Benign Uterine Corpus Mixed Epithelial and Mesenchymal Neoplasm 8 191193 -NCIT:C6337 Uterine Corpus Adenofibroma 9 191194 -NCIT:C6338 Uterine Corpus Adenomyoma 9 191195 -NCIT:C40235 Uterine Corpus Atypical Polypoid Adenomyoma 10 191196 -NCIT:C6433 Endometrial Polyp 8 191197 -NCIT:C3610 Benign Vaginal Neoplasm 6 191198 -NCIT:C128079 Vaginal Superficial Myofibroblastoma 7 191199 -NCIT:C128113 Vaginal Dermoid Cyst 7 191200 -NCIT:C40255 Vaginal Mullerian Papilloma 7 191201 -NCIT:C40273 Vaginal Deep (Aggressive) Angiomyxoma 7 191202 -NCIT:C40275 Benign Vaginal Mixed Epithelial and Mesenchymal Neoplasm 7 191203 -NCIT:C40280 Benign Vaginal Mixed Tumor 8 191204 -NCIT:C40281 Benign Vaginal Melanocytic Nevus 7 191205 -NCIT:C40282 Vaginal Blue Nevus 8 191206 -NCIT:C45445 Vaginal Angiomyofibroblastoma 7 191207 -NCIT:C6372 Vaginal Rhabdomyoma 7 191208 -NCIT:C6373 Vaginal Leiomyoma 7 191209 -NCIT:C6374 Vaginal Squamous Papilloma 7 191210 -NCIT:C3611 Benign Vulvar Neoplasm 6 191211 -NCIT:C128240 Vulvar Hidradenoma Papilliferum 7 191212 -NCIT:C128242 Vulvar Fibroadenoma 7 191213 -NCIT:C128270 Vulvar Lipoma 7 191214 -NCIT:C128271 Vulvar Fibrolipoma 8 191215 -NCIT:C128272 Vulvar Superficial Myofibroblastoma 7 191216 -NCIT:C139548 Vulvar Composite Hidradenoma Papilliferum and Fibroadenoma 7 191217 -NCIT:C181906 Benign Vulvar Phyllodes Tumor 7 191218 -NCIT:C181925 Vulvar Lipoblastoma-Like Tumor 7 191219 -NCIT:C181926 Vulvar Prepubertal Fibroma 7 191220 -NCIT:C181942 Vulvar Rhabdomyoma 7 191221 -NCIT:C40301 Adenoma of Minor Vestibular Glands 7 191222 -NCIT:C40302 Vulvar Chondroid Syringoma 7 191223 -NCIT:C40311 Vulvar Syringoma 7 191224 -NCIT:C40312 Vulvar Nodular Hidradenoma 7 191225 -NCIT:C40314 Vulvar Trichoepithelioma 7 191226 -NCIT:C40325 Vulvar Angiomyxoma 7 191227 -NCIT:C40322 Vulvar Deep (Aggressive) Angiomyxoma 8 191228 -NCIT:C40324 Vulvar Superficial Angiomyxoma 8 191229 -NCIT:C40326 Vulvar Leiomyoma 7 191230 -NCIT:C40327 Vulvar Cellular Angiofibroma 7 191231 -NCIT:C40330 Vulvar Congenital Melanocytic Nevus 7 191232 -NCIT:C40331 Vulvar Acquired Melanocytic Nevus 7 191233 -NCIT:C40332 Vulvar Blue Nevus 7 191234 -NCIT:C45446 Vulvar Angiomyofibroblastoma 7 191235 -NCIT:C6375 Vulvar Seborrheic Keratosis 7 191236 -NCIT:C40291 Vulvar Inverted Follicular Keratosis 8 191237 -NCIT:C6376 Vulvar Squamous Papilloma 7 191238 -NCIT:C40290 Vulvar Squamous Papillomatosis 8 191239 -NCIT:C8418 Benign Bartholin Gland Neoplasm 7 191240 -NCIT:C40299 Bartholin Gland Adenoma 8 191241 -NCIT:C40300 Bartholin Gland Adenomyoma 8 191242 -NCIT:C3726 Adenomyoma 6 191243 -NCIT:C179925 Uterine Ligament Adenomyoma 7 191244 -NCIT:C40231 Cervical Adenomyoma 7 191245 -NCIT:C40232 Cervical Adenomyoma, Endocervical-Type 8 191246 -NCIT:C40233 Cervical Adenomyoma, Mesonephric-Type 8 191247 -NCIT:C40234 Cervical Atypical Polypoid Adenomyoma 8 191248 -NCIT:C6338 Uterine Corpus Adenomyoma 7 191249 -NCIT:C40235 Uterine Corpus Atypical Polypoid Adenomyoma 8 191250 -NCIT:C6895 Atypical Polypoid Adenomyoma 7 191251 -NCIT:C40234 Cervical Atypical Polypoid Adenomyoma 8 191252 -NCIT:C40235 Uterine Corpus Atypical Polypoid Adenomyoma 8 191253 -NCIT:C40018 Rete Ovarii Adenoma 6 191254 -NCIT:C4517 Benign Fallopian Tube Neoplasm 6 191255 -NCIT:C40112 Fallopian Tube Serous Papilloma 7 191256 -NCIT:C40113 Fallopian Tube Serous Adenofibroma 7 191257 -NCIT:C40114 Fallopian Tube Serous Cystadenofibroma 8 191258 -NCIT:C40116 Fallopian Tube Metaplastic Papillary Tumor 7 191259 -NCIT:C40127 Fallopian Tube Leiomyoma 7 191260 -NCIT:C40129 Fallopian Tube Adenomatoid Tumor 7 191261 -NCIT:C6517 Genital Rhabdomyoma 6 191262 -NCIT:C181942 Vulvar Rhabdomyoma 7 191263 -NCIT:C40266 Cervical Rhabdomyoma 7 191264 -NCIT:C6372 Vaginal Rhabdomyoma 7 191265 -NCIT:C8545 Benign Placental Neoplasm 6 191266 -NCIT:C3521 Placental Polyp 7 191267 -NCIT:C4868 Placental Hemangioma 7 191268 -NCIT:C8979 Mucinous Cystadenofibroma 6 191269 -NCIT:C40041 Ovarian Mucinous Cystadenofibroma 7 191270 -NCIT:C67012 Benign Sertoli Cell Tumor 5 191271 -NCIT:C6522 Benign Testicular Sertoli Cell Tumor 6 191272 -NCIT:C39943 Testicular Sertoli Cell Tumor, Lipid Rich Variant 7 191273 -NCIT:C39945 Testicular Sclerosing Sertoli Cell Tumor 7 191274 -NCIT:C156713 Benign Peritoneal and Retroperitoneal Neoplasm 3 191275 -NCIT:C4447 Benign Retroperitoneal Neoplasm 4 191276 -NCIT:C3629 Benign Adrenal Gland Neoplasm 5 191277 -NCIT:C188250 Adrenal Gland Lipoma 6 191278 -NCIT:C188251 Adrenal Gland Hemangioma 6 191279 -NCIT:C188252 Adrenal Gland Lymphangioma 6 191280 -NCIT:C188253 Adrenal Gland Leiomyoma 6 191281 -NCIT:C4895 Benign Adrenal Medulla Neoplasm 6 191282 -NCIT:C156944 Adrenal Gland Schwannoma 7 191283 -NCIT:C157245 Adrenal Gland Ganglioneuroma 7 191284 -NCIT:C9004 Benign Adrenal Cortical Neoplasm 6 191285 -NCIT:C48319 Adrenal Cortical Adenomatoid Tumor 7 191286 -NCIT:C9003 Adrenal Cortical Adenoma 7 191287 -NCIT:C190068 Childhood Adrenal Cortical Adenoma 8 191288 -NCIT:C4163 Adrenal Cortical Compact Cell Adenoma 8 191289 -NCIT:C4164 Pigmented Adrenal Cortical Adenoma 8 191290 -NCIT:C4165 Adrenal Cortical Clear Cell Adenoma 8 191291 -NCIT:C4166 Adrenal Cortical Glomerulosa Cell Adenoma 8 191292 -NCIT:C4167 Adrenal Cortical Mixed Cell Adenoma 8 191293 -NCIT:C48447 Adrenal Cortical Oncocytic Adenoma 8 191294 -NCIT:C48449 Cortisol-Producing Adrenal Cortical Adenoma 8 191295 -NCIT:C48451 Aldosterone-Producing Adrenal Cortical Adenoma 8 191296 -NCIT:C48452 Sex Hormone-Producing Adrenal Cortical Adenoma 8 191297 -NCIT:C48454 Androgen-Producing Adrenal Cortical Adenoma 9 191298 -NCIT:C48456 Estrogen-Producing Adrenal Cortical Adenoma 9 191299 -NCIT:C48458 Non-Functioning Adrenal Cortical Adenoma 8 191300 -NCIT:C5427 Retroperitoneal Ganglioneuroma 5 191301 -NCIT:C157245 Adrenal Gland Ganglioneuroma 6 191302 -NCIT:C8612 Benign Peritoneal Neoplasm 4 191303 -NCIT:C179560 Peritoneal Calcifying Fibrous Tumor 5 191304 -NCIT:C3958 Disseminated Peritoneal Leiomyomatosis 5 191305 -NCIT:C7354 Peritoneal Adenomatoid Tumor 5 191306 -NCIT:C173932 Benign Head and Neck Neoplasm 3 191307 -NCIT:C155792 Benign Skull Neoplasm 4 191308 -NCIT:C129569 Skull Osteoma 5 191309 -NCIT:C173894 Maxillofacial Osteoma 6 191310 -NCIT:C155793 Benign Skull Base Neoplasm 5 191311 -NCIT:C155768 Sellar Neurocytoma 6 191312 -NCIT:C155780 Sellar Schwannoma 6 191313 -NCIT:C155808 Sellar Mature Teratoma 6 191314 -NCIT:C2964 Craniopharyngioma 6 191315 -NCIT:C148076 Unresectable Craniopharyngioma 7 191316 -NCIT:C148077 Recurrent Craniopharyngioma 7 191317 -NCIT:C162612 Recurrent Adamantinomatous Craniopharyngioma 8 191318 -NCIT:C4010 Adult Craniopharyngioma 7 191319 -NCIT:C188949 Adult Adamantinomatous Craniopharyngioma 8 191320 -NCIT:C4725 Papillary Craniopharyngioma 7 191321 -NCIT:C4726 Adamantinomatous Craniopharyngioma 7 191322 -NCIT:C162612 Recurrent Adamantinomatous Craniopharyngioma 8 191323 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 8 191324 -NCIT:C188949 Adult Adamantinomatous Craniopharyngioma 8 191325 -NCIT:C7816 Childhood Craniopharyngioma 7 191326 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 8 191327 -NCIT:C4782 Benign Pituitary Gland Neoplasm 6 191328 -NCIT:C173820 Ossifying Fibroma 5 191329 -NCIT:C190158 Childhood Ossifying Fibroma 6 191330 -NCIT:C8422 Cemento-Ossifying Fibroma 6 191331 -NCIT:C173892 Benign Maxillofacial Neoplasm 5 191332 -NCIT:C173893 Maxillofacial Chondroma 6 191333 -NCIT:C173894 Maxillofacial Osteoma 6 191334 -NCIT:C173895 Maxillofacial Chondroblastoma 6 191335 -NCIT:C173897 Maxillofacial Chondromyxoid Fibroma 6 191336 -NCIT:C173898 Maxillofacial Osteoid Osteoma 6 191337 -NCIT:C173899 Maxillofacial Osteoblastoma 6 191338 -NCIT:C173900 Maxillofacial Desmoplastic Fibroma 6 191339 -NCIT:C173095 Benign Sinonasal Neoplasm 4 191340 -NCIT:C173114 Sinonasal Pleomorphic Adenoma 5 191341 -NCIT:C173139 Benign Sinonasal Soft Tissue Neoplasm 5 191342 -NCIT:C173140 Sinonasal Leiomyoma 6 191343 -NCIT:C173142 Sinonasal Hemangioma 6 191344 -NCIT:C190160 Sinonasal Tract Myxoma 6 191345 -NCIT:C173143 Sinonasal Schwannoma 5 191346 -NCIT:C173144 Sinonasal Neurofibroma 5 191347 -NCIT:C4117 Sinonasal Papilloma 5 191348 -NCIT:C164251 Sinonasal Exophytic Papilloma 6 191349 -NCIT:C54347 Nasal Cavity Exophytic Papilloma 7 191350 -NCIT:C164256 Nasal Cavity Papilloma 6 191351 -NCIT:C54347 Nasal Cavity Exophytic Papilloma 7 191352 -NCIT:C8194 Nasal Cavity Inverted Papilloma 7 191353 -NCIT:C54345 Sinonasal Oncocytic Papilloma 6 191354 -NCIT:C6835 Paranasal Sinus Papilloma 6 191355 -NCIT:C6836 Ethmoid Sinus Papilloma 7 191356 -NCIT:C6843 Ethmoid Sinus Inverted Papilloma 8 191357 -NCIT:C6837 Frontal Sinus Papilloma 7 191358 -NCIT:C6842 Frontal Sinus Inverted Papilloma 8 191359 -NCIT:C6838 Sphenoid Sinus Papilloma 7 191360 -NCIT:C6841 Sphenoid Sinus Inverted Papilloma 8 191361 -NCIT:C6839 Maxillary Sinus Papilloma 7 191362 -NCIT:C6840 Maxillary Sinus Inverted Papilloma 8 191363 -NCIT:C8195 Paranasal Sinus Inverted Papilloma 7 191364 -NCIT:C6840 Maxillary Sinus Inverted Papilloma 8 191365 -NCIT:C6841 Sphenoid Sinus Inverted Papilloma 8 191366 -NCIT:C6842 Frontal Sinus Inverted Papilloma 8 191367 -NCIT:C6843 Ethmoid Sinus Inverted Papilloma 8 191368 -NCIT:C6871 Sinonasal Inverted Papilloma 6 191369 -NCIT:C115432 Recurrent Sinonasal Inverted Papilloma 7 191370 -NCIT:C8194 Nasal Cavity Inverted Papilloma 7 191371 -NCIT:C8195 Paranasal Sinus Inverted Papilloma 7 191372 -NCIT:C6840 Maxillary Sinus Inverted Papilloma 8 191373 -NCIT:C6841 Sphenoid Sinus Inverted Papilloma 8 191374 -NCIT:C6842 Frontal Sinus Inverted Papilloma 8 191375 -NCIT:C6843 Ethmoid Sinus Inverted Papilloma 8 191376 -NCIT:C4603 Benign Nasal Cavity Neoplasm 5 191377 -NCIT:C164256 Nasal Cavity Papilloma 6 191378 -NCIT:C54347 Nasal Cavity Exophytic Papilloma 7 191379 -NCIT:C8194 Nasal Cavity Inverted Papilloma 7 191380 -NCIT:C4369 Nasal Vestibule Squamous Papilloma 6 191381 -NCIT:C8532 Benign Paranasal Sinus Neoplasm 5 191382 -NCIT:C4414 Benign Maxillary Sinus Neoplasm 6 191383 -NCIT:C6839 Maxillary Sinus Papilloma 7 191384 -NCIT:C6840 Maxillary Sinus Inverted Papilloma 8 191385 -NCIT:C4417 Benign Ethmoid Sinus Neoplasm 6 191386 -NCIT:C6836 Ethmoid Sinus Papilloma 7 191387 -NCIT:C6843 Ethmoid Sinus Inverted Papilloma 8 191388 -NCIT:C4420 Benign Frontal Sinus Neoplasm 6 191389 -NCIT:C6837 Frontal Sinus Papilloma 7 191390 -NCIT:C6842 Frontal Sinus Inverted Papilloma 8 191391 -NCIT:C4422 Benign Sphenoid Sinus Neoplasm 6 191392 -NCIT:C6838 Sphenoid Sinus Papilloma 7 191393 -NCIT:C6841 Sphenoid Sinus Inverted Papilloma 8 191394 -NCIT:C6835 Paranasal Sinus Papilloma 6 191395 -NCIT:C6836 Ethmoid Sinus Papilloma 7 191396 -NCIT:C6843 Ethmoid Sinus Inverted Papilloma 8 191397 -NCIT:C6837 Frontal Sinus Papilloma 7 191398 -NCIT:C6842 Frontal Sinus Inverted Papilloma 8 191399 -NCIT:C6838 Sphenoid Sinus Papilloma 7 191400 -NCIT:C6841 Sphenoid Sinus Inverted Papilloma 8 191401 -NCIT:C6839 Maxillary Sinus Papilloma 7 191402 -NCIT:C6840 Maxillary Sinus Inverted Papilloma 8 191403 -NCIT:C8195 Paranasal Sinus Inverted Papilloma 7 191404 -NCIT:C6840 Maxillary Sinus Inverted Papilloma 8 191405 -NCIT:C6841 Sphenoid Sinus Inverted Papilloma 8 191406 -NCIT:C6842 Frontal Sinus Inverted Papilloma 8 191407 -NCIT:C6843 Ethmoid Sinus Inverted Papilloma 8 191408 -NCIT:C190613 Childhood Benign Head and Neck Neoplasm 4 191409 -NCIT:C190060 Childhood Thyroid Gland Follicular Adenoma 5 191410 -NCIT:C190066 Childhood Parathyroid Gland Adenoma 5 191411 -NCIT:C190150 Childhood Laryngeal Squamous Papilloma 5 191412 -NCIT:C190155 Childhood Ameloblastic Fibroma 5 191413 -NCIT:C190156 Childhood Adenomatoid Odontogenic Tumor 5 191414 -NCIT:C190157 Childhood Odontogenic Myxoma 5 191415 -NCIT:C190158 Childhood Ossifying Fibroma 5 191416 -NCIT:C190160 Sinonasal Tract Myxoma 5 191417 -NCIT:C190161 Childhood Salivary Gland Pleomorphic Adenoma 5 191418 -NCIT:C7816 Childhood Craniopharyngioma 5 191419 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 6 191420 -NCIT:C3620 Benign Orbit Neoplasm 4 191421 -NCIT:C4548 Orbit Dermoid Cyst 5 191422 -NCIT:C6245 Orbit Hemangioma 5 191423 -NCIT:C4545 Orbit Capillary Hemangioma 6 191424 -NCIT:C4546 Orbit Cavernous Hemangioma 6 191425 -NCIT:C4600 Benign Salivary Gland Neoplasm 4 191426 -NCIT:C173659 Salivary Gland Lymphadenoma 5 191427 -NCIT:C35555 Salivary Gland Sebaceous Lymphadenoma 6 191428 -NCIT:C5949 Parotid Gland Sebaceous Lymphadenoma 7 191429 -NCIT:C173680 Salivary Gland Hemangioma 5 191430 -NCIT:C5397 Parotid Gland Hemangioma 6 191431 -NCIT:C173681 Salivary Gland Lipoma 5 191432 -NCIT:C5982 Parotid Gland Lipoma 6 191433 -NCIT:C173682 Sialolipoma 5 191434 -NCIT:C173684 Parotid Gland Sialolipoma 6 191435 -NCIT:C173687 Salivary Gland Nodular Fasciitis 5 191436 -NCIT:C173688 Parotid Gland Nodular Fasciitis 6 191437 -NCIT:C184295 Salivary Gland Adenoma 5 191438 -NCIT:C3686 Salivary Gland Monomorphic Adenoma 6 191439 -NCIT:C35738 Salivary Gland Sebaceous Adenoma 7 191440 -NCIT:C5932 Salivary Gland Oncocytoma 7 191441 -NCIT:C5950 Basal Cell Adenoma 7 191442 -NCIT:C5979 Salivary Gland Canalicular Adenoma 7 191443 -NCIT:C6845 Oral Cavity Monomorphic Adenoma 7 191444 -NCIT:C6844 Hard Palate Monomorphic Adenoma 8 191445 -NCIT:C6847 Parotid Gland Monomorphic Adenoma 7 191446 -NCIT:C40409 Salivary Gland Pleomorphic Adenoma 6 191447 -NCIT:C173114 Sinonasal Pleomorphic Adenoma 7 191448 -NCIT:C173412 Laryngeal Pleomorphic Adenoma 7 191449 -NCIT:C173575 Oropharyngeal Pleomorphic Adenoma 7 191450 -NCIT:C190161 Childhood Salivary Gland Pleomorphic Adenoma 7 191451 -NCIT:C35759 Metastasizing Pleomorphic Adenoma of the Salivary Gland 7 191452 -NCIT:C4650 Parotid Gland Pleomorphic Adenoma 7 191453 -NCIT:C6242 Oral Cavity Pleomorphic Adenoma 7 191454 -NCIT:C6211 Soft Palate Pleomorphic Adenoma 8 191455 -NCIT:C6212 Hard Palate Pleomorphic Adenoma 8 191456 -NCIT:C66865 Parotid Gland Warthin Tumor 6 191457 -NCIT:C35833 Salivary Gland Cystadenoma 5 191458 -NCIT:C35839 Salivary Gland Ductal Papilloma 5 191459 -NCIT:C35834 Salivary Gland Intraductal Papilloma 6 191460 -NCIT:C35835 Salivary Gland Inverted Ductal Papilloma 6 191461 -NCIT:C35836 Salivary Gland Sialadenoma Papilliferum 6 191462 -NCIT:C4411 Benign Minor Salivary Gland Neoplasm 5 191463 -NCIT:C4771 Benign Major Salivary Gland Neoplasm 5 191464 -NCIT:C4601 Benign Sublingual Gland Neoplasm 6 191465 -NCIT:C4770 Benign Parotid Gland Neoplasm 6 191466 -NCIT:C173684 Parotid Gland Sialolipoma 7 191467 -NCIT:C173688 Parotid Gland Nodular Fasciitis 7 191468 -NCIT:C4650 Parotid Gland Pleomorphic Adenoma 7 191469 -NCIT:C5393 Parotid Gland Lymphangioma 7 191470 -NCIT:C5397 Parotid Gland Hemangioma 7 191471 -NCIT:C5949 Parotid Gland Sebaceous Lymphadenoma 7 191472 -NCIT:C5982 Parotid Gland Lipoma 7 191473 -NCIT:C66865 Parotid Gland Warthin Tumor 7 191474 -NCIT:C6847 Parotid Gland Monomorphic Adenoma 7 191475 -NCIT:C4891 Benign Submandibular Gland Neoplasm 6 191476 -NCIT:C5978 Salivary Gland Myoepithelioma 5 191477 -NCIT:C97135 Sclerosing Polycystic Adenosis 5 191478 -NCIT:C4884 Benign Neck Neoplasm 4 191479 -NCIT:C162822 Benign Parapharyngeal Neoplasm 5 191480 -NCIT:C162826 Benign Retropharyngeal Neoplasm 5 191481 -NCIT:C3597 Benign Pharyngeal Neoplasm 5 191482 -NCIT:C3595 Benign Nasopharyngeal Neoplasm 6 191483 -NCIT:C27479 Nasopharyngeal Angiofibroma 7 191484 -NCIT:C6034 Nasopharyngeal Polyp 7 191485 -NCIT:C6037 Nasopharyngeal Squamous Papilloma 7 191486 -NCIT:C3596 Benign Hypopharyngeal Neoplasm 6 191487 -NCIT:C4886 Benign Pyriform Fossa Neoplasm 7 191488 -NCIT:C4604 Benign Oropharyngeal Neoplasm 6 191489 -NCIT:C173575 Oropharyngeal Pleomorphic Adenoma 7 191490 -NCIT:C5988 Oropharyngeal Polyp 7 191491 -NCIT:C6038 Oropharyngeal Squamous Papilloma 7 191492 -NCIT:C3601 Benign Laryngeal Neoplasm 5 191493 -NCIT:C173399 Benign Laryngeal Soft Tissue Neoplasm 6 191494 -NCIT:C6026 Subglottic Hemangioma 7 191495 -NCIT:C6027 Laryngeal Leiomyoma 7 191496 -NCIT:C173406 Laryngeal Chondroma 6 191497 -NCIT:C173412 Laryngeal Pleomorphic Adenoma 6 191498 -NCIT:C4427 Benign Subglottis Neoplasm 6 191499 -NCIT:C6026 Subglottic Hemangioma 7 191500 -NCIT:C4605 Benign Glottis Neoplasm 6 191501 -NCIT:C7742 Laryngeal Squamous Papilloma 6 191502 -NCIT:C190150 Childhood Laryngeal Squamous Papilloma 7 191503 -NCIT:C8414 Benign Supraglottis Neoplasm 6 191504 -NCIT:C4606 Benign Epiglottis Neoplasm 7 191505 -NCIT:C3628 Benign Thyroid Gland Neoplasm 5 191506 -NCIT:C156340 Thyroid Gland Schwannoma 6 191507 -NCIT:C156342 Thyroid Gland Benign Vascular Neoplasm 6 191508 -NCIT:C156343 Thyroid Gland Hemangioma 7 191509 -NCIT:C156344 Thyroid Gland Cavernous Hemangioma 8 191510 -NCIT:C156345 Thyroid Gland Lymphangioma 7 191511 -NCIT:C156346 Thyroid Gland Leiomyoma 6 191512 -NCIT:C3502 Thyroid Gland Follicular Adenoma 6 191513 -NCIT:C155957 Thyroid Gland Spindle Cell Follicular Adenoma 7 191514 -NCIT:C155958 Thyroid Gland Black Follicular Adenoma 7 191515 -NCIT:C187261 Thyroid Gland Follicular Adenoma with Papillary Architecture 7 191516 -NCIT:C190060 Childhood Thyroid Gland Follicular Adenoma 7 191517 -NCIT:C4160 Thyroid Gland Microfollicular Adenoma 7 191518 -NCIT:C4161 Thyroid Gland Macrofollicular Adenoma 7 191519 -NCIT:C46111 Thyroid Gland Follicular Adenoma with Papillary Hyperplasia 7 191520 -NCIT:C46115 Thyroid Gland Signet Ring Cell Follicular Adenoma 7 191521 -NCIT:C46116 Thyroid Gland Mucinous Follicular Adenoma 7 191522 -NCIT:C46118 Thyroid Gland Lipoadenoma 7 191523 -NCIT:C46119 Thyroid Gland Clear Cell Follicular Adenoma 7 191524 -NCIT:C46122 Thyroid Gland Hyperfunctioning Adenoma 7 191525 -NCIT:C46123 Thyroid Gland Follicular Adenoma with Bizarre Nuclei 7 191526 -NCIT:C6042 Thyroid Gland Oncocytic Adenoma 7 191527 -NCIT:C3630 Benign Parathyroid Gland Neoplasm 5 191528 -NCIT:C156757 Parathyroid Gland Adenoma 6 191529 -NCIT:C190066 Childhood Parathyroid Gland Adenoma 7 191530 -NCIT:C27393 Parathyroid Gland Oncocytic Adenoma 7 191531 -NCIT:C4154 Parathyroid Gland Chief Cell Adenoma 7 191532 -NCIT:C48283 Parathyroid Gland Lipoadenoma 7 191533 -NCIT:C7993 Parathyroid Gland Clear Cell Adenoma 7 191534 -NCIT:C4155 Parathyroid Gland Water-Clear Cell Adenoma 8 191535 -NCIT:C7994 Parathyroid Gland Mixed Cell Type Adenoma 7 191536 -NCIT:C5323 Jugular Foramen Schwannoma 5 191537 -NCIT:C54661 Head and Neck Nevus 4 191538 -NCIT:C7608 Benign Oral Neoplasm 4 191539 -NCIT:C173476 Oral Squamous Papilloma 5 191540 -NCIT:C5819 Buccal Squamous Papilloma 6 191541 -NCIT:C3591 Benign Lip Neoplasm 5 191542 -NCIT:C4372 Cherry Hemangioma of Lip 6 191543 -NCIT:C7607 Benign Oral Cavity Neoplasm 5 191544 -NCIT:C173480 Benign Oral Cavity Soft Tissue Neoplasm 6 191545 -NCIT:C27478 Gingival Angiofibroma 7 191546 -NCIT:C3950 Oral Mucosa Lobular Capillary Hemangioma 7 191547 -NCIT:C4831 Gingival Hemangioma 7 191548 -NCIT:C5909 Oral Cavity Leiomyoma 7 191549 -NCIT:C5910 Oral Cavity Lipoma 7 191550 -NCIT:C7734 Tongue Lipoma 8 191551 -NCIT:C3592 Benign Tongue Neoplasm 6 191552 -NCIT:C4408 Benign Posterior Tongue Neoplasm 7 191553 -NCIT:C6063 Benign Anterior Tongue Neoplasm 7 191554 -NCIT:C7734 Tongue Lipoma 7 191555 -NCIT:C3593 Benign Floor of the Mouth Neoplasm 6 191556 -NCIT:C3594 Benign Tonsillar Neoplasm 6 191557 -NCIT:C5989 Tonsillar Lipoma 7 191558 -NCIT:C4306 Benign Odontogenic Neoplasm 6 191559 -NCIT:C173819 Primordial Odontogenic Tumor 7 191560 -NCIT:C3710 Ameloblastic Fibro-Odontoma 7 191561 -NCIT:C4308 Cementoblastoma 7 191562 -NCIT:C4310 Adenomatoid Odontogenic Tumor 7 191563 -NCIT:C190156 Childhood Adenomatoid Odontogenic Tumor 8 191564 -NCIT:C4314 Odontogenic Fibroma 7 191565 -NCIT:C4315 Peripheral Odontogenic Fibroma 8 191566 -NCIT:C4316 Ameloblastic Fibroma 7 191567 -NCIT:C190155 Childhood Ameloblastic Fibroma 8 191568 -NCIT:C54301 Calcifying Epithelial Odontogenic Tumor 7 191569 -NCIT:C54319 Calcifying Cystic Odontogenic Tumor 7 191570 -NCIT:C54323 Dentinogenic Ghost Cell Tumor 7 191571 -NCIT:C66800 Ameloblastic Fibrodentinoma 7 191572 -NCIT:C7111 Benign Ameloblastoma 7 191573 -NCIT:C7112 Squamous Odontogenic Tumor 7 191574 -NCIT:C7452 Odontogenic Myxofibroma 7 191575 -NCIT:C7501 Odontogenic Myxoma 7 191576 -NCIT:C190157 Childhood Odontogenic Myxoma 8 191577 -NCIT:C8422 Cemento-Ossifying Fibroma 7 191578 -NCIT:C4403 Benign Hard Palate Neoplasm 6 191579 -NCIT:C6212 Hard Palate Pleomorphic Adenoma 7 191580 -NCIT:C6844 Hard Palate Monomorphic Adenoma 7 191581 -NCIT:C4406 Benign Buccal Mucosa Neoplasm 6 191582 -NCIT:C5819 Buccal Squamous Papilloma 7 191583 -NCIT:C4598 Benign Gingival Neoplasm 6 191584 -NCIT:C27478 Gingival Angiofibroma 7 191585 -NCIT:C4831 Gingival Hemangioma 7 191586 -NCIT:C5913 Oral Cavity Adenoma 6 191587 -NCIT:C6242 Oral Cavity Pleomorphic Adenoma 7 191588 -NCIT:C6211 Soft Palate Pleomorphic Adenoma 8 191589 -NCIT:C6212 Hard Palate Pleomorphic Adenoma 8 191590 -NCIT:C6845 Oral Cavity Monomorphic Adenoma 7 191591 -NCIT:C6844 Hard Palate Monomorphic Adenoma 8 191592 -NCIT:C7605 Oral Cavity Benign Granular Cell Tumor 6 191593 -NCIT:C6210 Soft Palate Benign Granular Cell Tumor 7 191594 -NCIT:C8417 Benign Ear Neoplasm 4 191595 -NCIT:C174023 Benign Inner Ear Neoplasm 5 191596 -NCIT:C3276 Vestibular Schwannoma 6 191597 -NCIT:C5452 Inner Ear Lipoma 6 191598 -NCIT:C4602 Benign Middle Ear Neoplasm 5 191599 -NCIT:C6834 Middle Ear Adenoma 6 191600 -NCIT:C6933 Middle Ear Polyp 6 191601 -NCIT:C5971 Ear Polyp 5 191602 -NCIT:C4366 External Ear Polyp 6 191603 -NCIT:C6933 Middle Ear Polyp 6 191604 -NCIT:C6807 Benign External Ear Neoplasm 5 191605 -NCIT:C4366 External Ear Polyp 6 191606 -NCIT:C4618 External Ear Lipoma 6 191607 -NCIT:C6088 Ceruminous Adenoma 6 191608 -NCIT:C190573 Childhood Benign Neoplasm 3 191609 -NCIT:C190574 Childhood Benign Breast Neoplasm 4 191610 -NCIT:C189339 Childhood Breast Fibroadenoma 5 191611 -NCIT:C4276 Juvenile Breast Fibroadenoma 6 191612 -NCIT:C9503 Juvenile Breast Papillomatosis 5 191613 -NCIT:C190576 Childhood Benign Connective and Soft Tissue Neoplasm 4 191614 -NCIT:C180887 Infantile Myofibroma 5 191615 -NCIT:C188965 Childhood EWSR1-SMAD3-Positive Fibroblastic Tumor 5 191616 -NCIT:C188974 Childhood Fibrous Histiocytoma 5 191617 -NCIT:C189031 Childhood Non-Ossifying Fibroma 6 191618 -NCIT:C188983 Childhood Rhabdomyoma 5 191619 -NCIT:C190104 Childhood Cardiac Rhabdomyoma 6 191620 -NCIT:C189288 Childhood Ovarian Fibroma 5 191621 -NCIT:C190019 Liver Congenital Hemangioma 5 191622 -NCIT:C190160 Sinonasal Tract Myxoma 5 191623 -NCIT:C190577 Childhood Benign Bone Neoplasm 5 191624 -NCIT:C189019 Childhood Subungual Exostosis 6 191625 -NCIT:C189020 Childhood Osteoblastoma 6 191626 -NCIT:C189021 Childhood Osteoid Osteoma 6 191627 -NCIT:C189023 Childhood Chondroblastoma 6 191628 -NCIT:C189024 Childhood Osteochondroma 6 191629 -NCIT:C189025 Childhood Chondromyxoid Fibroma 6 191630 -NCIT:C189028 Childhood Bone Hemangioma 6 191631 -NCIT:C189029 Childhood Aneurysmal Bone Cyst 6 191632 -NCIT:C189031 Childhood Non-Ossifying Fibroma 6 191633 -NCIT:C189033 Childhood Fibrous Dysplasia 6 191634 -NCIT:C27483 Lipoblastoma 5 191635 -NCIT:C3456 Inclusion Body Fibromatosis 5 191636 -NCIT:C3942 Fibrous Hamartoma of Infancy 5 191637 -NCIT:C4818 Calcifying Aponeurotic Fibroma 5 191638 -NCIT:C5751 Liver Mesenchymal Hamartoma 5 191639 -NCIT:C6645 Infantile Hemangioma 5 191640 -NCIT:C96840 Liver Infantile Hemangioma 6 191641 -NCIT:C99086 Airway Infantile Hemangioma 6 191642 -NCIT:C190580 Childhood Benign Digestive System Neoplasm 4 191643 -NCIT:C190581 Childhood Benign Liver Neoplasm 5 191644 -NCIT:C190019 Liver Congenital Hemangioma 6 191645 -NCIT:C5751 Liver Mesenchymal Hamartoma 6 191646 -NCIT:C96840 Liver Infantile Hemangioma 6 191647 -NCIT:C190600 Childhood Benign Endocrine Neoplasm 4 191648 -NCIT:C190060 Childhood Thyroid Gland Follicular Adenoma 5 191649 -NCIT:C190066 Childhood Parathyroid Gland Adenoma 5 191650 -NCIT:C190068 Childhood Adrenal Cortical Adenoma 5 191651 -NCIT:C190602 Childhood Benign Genitourinary System Neoplasm 4 191652 -NCIT:C123837 Childhood Testicular Mature Teratoma 5 191653 -NCIT:C189337 Childhood Mullerian Papilloma 5 191654 -NCIT:C190608 Childhood Benign Kidney Neoplasm 5 191655 -NCIT:C157745 Childhood Cystic Nephroma 6 191656 -NCIT:C66774 Ossifying Renal Tumor of Infancy 6 191657 -NCIT:C190658 Childhood Benign Ovarian Neoplasm 5 191658 -NCIT:C189288 Childhood Ovarian Fibroma 6 191659 -NCIT:C189289 Childhood Ovarian Sclerosing Stromal Tumor 6 191660 -NCIT:C6548 Childhood Ovarian Mature Teratoma 6 191661 -NCIT:C40330 Vulvar Congenital Melanocytic Nevus 5 191662 -NCIT:C190613 Childhood Benign Head and Neck Neoplasm 4 191663 -NCIT:C190060 Childhood Thyroid Gland Follicular Adenoma 5 191664 -NCIT:C190066 Childhood Parathyroid Gland Adenoma 5 191665 -NCIT:C190150 Childhood Laryngeal Squamous Papilloma 5 191666 -NCIT:C190155 Childhood Ameloblastic Fibroma 5 191667 -NCIT:C190156 Childhood Adenomatoid Odontogenic Tumor 5 191668 -NCIT:C190157 Childhood Odontogenic Myxoma 5 191669 -NCIT:C190158 Childhood Ossifying Fibroma 5 191670 -NCIT:C190160 Sinonasal Tract Myxoma 5 191671 -NCIT:C190161 Childhood Salivary Gland Pleomorphic Adenoma 5 191672 -NCIT:C7816 Childhood Craniopharyngioma 5 191673 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 6 191674 -NCIT:C190618 Childhood Benign Skin Neoplasm 4 191675 -NCIT:C190279 Childhood Pilomatricoma 5 191676 -NCIT:C190284 Childhood Benign Skin Melanocytic Nevus 5 191677 -NCIT:C190281 Childhood Pigmented Spindle Cell Nevus 6 191678 -NCIT:C190282 Childhood Spitz Nevus 6 191679 -NCIT:C190283 Childhood Blue Nevus 6 191680 -NCIT:C190285 Childhood Junctional Nevus 6 191681 -NCIT:C190286 Childhood Compound Nevus 6 191682 -NCIT:C190287 Childhood Dermal Nevus 6 191683 -NCIT:C3944 Congenital Melanocytic Nevus 6 191684 -NCIT:C40330 Vulvar Congenital Melanocytic Nevus 7 191685 -NCIT:C4234 Giant Congenital Nevus 7 191686 -NCIT:C66754 Small Congenital Melanocytic Nevus 7 191687 -NCIT:C66755 Proliferative Nodules in Congenital Melanocytic Nevus 7 191688 -NCIT:C3942 Fibrous Hamartoma of Infancy 5 191689 -NCIT:C190620 Childhood Benign Thoracic Neoplasm 4 191690 -NCIT:C190104 Childhood Cardiac Rhabdomyoma 5 191691 -NCIT:C190621 Childhood Benign Lung Neoplasm 5 191692 -NCIT:C190105 Fetal Lung Interstitial Tumor 6 191693 -NCIT:C190622 Childhood Benign Nervous System Neoplasm 4 191694 -NCIT:C188946 Childhood Ganglioneuroma 5 191695 -NCIT:C188992 Childhood Schwannoma 5 191696 -NCIT:C188995 Childhood Neurofibroma 5 191697 -NCIT:C188997 Childhood Perineurioma 5 191698 -NCIT:C5591 Childhood Benign Central Nervous System Neoplasm 5 191699 -NCIT:C27404 Childhood Central Nervous System Mature Teratoma 6 191700 -NCIT:C5798 Childhood Benign Brain Neoplasm 6 191701 -NCIT:C5799 Childhood Benign Supratentorial Neoplasm 7 191702 -NCIT:C5800 Childhood Choroid Plexus Papilloma 8 191703 -NCIT:C6219 Childhood Benign Cerebral Neoplasm 8 191704 -NCIT:C7816 Childhood Craniopharyngioma 7 191705 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 8 191706 -NCIT:C6553 Childhood Benign Germ Cell Tumor 4 191707 -NCIT:C123836 Childhood Mature Teratoma 5 191708 -NCIT:C123837 Childhood Testicular Mature Teratoma 6 191709 -NCIT:C27404 Childhood Central Nervous System Mature Teratoma 6 191710 -NCIT:C6548 Childhood Ovarian Mature Teratoma 6 191711 -NCIT:C2896 Benign Skin Neoplasm 3 191712 -NCIT:C190618 Childhood Benign Skin Neoplasm 4 191713 -NCIT:C190279 Childhood Pilomatricoma 5 191714 -NCIT:C190284 Childhood Benign Skin Melanocytic Nevus 5 191715 -NCIT:C190281 Childhood Pigmented Spindle Cell Nevus 6 191716 -NCIT:C190282 Childhood Spitz Nevus 6 191717 -NCIT:C190283 Childhood Blue Nevus 6 191718 -NCIT:C190285 Childhood Junctional Nevus 6 191719 -NCIT:C190286 Childhood Compound Nevus 6 191720 -NCIT:C190287 Childhood Dermal Nevus 6 191721 -NCIT:C3944 Congenital Melanocytic Nevus 6 191722 -NCIT:C40330 Vulvar Congenital Melanocytic Nevus 7 191723 -NCIT:C4234 Giant Congenital Nevus 7 191724 -NCIT:C66754 Small Congenital Melanocytic Nevus 7 191725 -NCIT:C66755 Proliferative Nodules in Congenital Melanocytic Nevus 7 191726 -NCIT:C3942 Fibrous Hamartoma of Infancy 5 191727 -NCIT:C27514 Adult Xanthogranuloma 4 191728 -NCIT:C3451 Juvenile Xanthogranuloma 4 191729 -NCIT:C3615 Benign Scrotal Neoplasm 4 191730 -NCIT:C6387 Scrotal Hemangioma 5 191731 -NCIT:C4481 Cutaneous Ganglioneuroma 4 191732 -NCIT:C4615 Benign Skin Appendage Neoplasm 4 191733 -NCIT:C167370 Skin Myoepithelioma 5 191734 -NCIT:C27520 Benign Hair Follicle Neoplasm 5 191735 -NCIT:C43315 Benign Outer Hair Sheath and Infundibulum Neoplasm 6 191736 -NCIT:C4113 Trichilemmoma 7 191737 -NCIT:C27521 Classic Type Trichilemmoma 8 191738 -NCIT:C27522 Desmoplastic Trichilemmoma 8 191739 -NCIT:C43325 Trichoadenoma 7 191740 -NCIT:C4468 Pilar Sheath Acanthoma 7 191741 -NCIT:C4469 Tumor of the Follicular Infundibulum 7 191742 -NCIT:C43319 Benign Germinative Follicular Epithelium Neoplasm 6 191743 -NCIT:C168592 Melanocytic Matricoma 7 191744 -NCIT:C27132 Trichoblastoma 7 191745 -NCIT:C27524 Desmoplastic Trichoepithelioma 8 191746 -NCIT:C40314 Vulvar Trichoepithelioma 8 191747 -NCIT:C4112 Trichofolliculoma 7 191748 -NCIT:C7368 Pilomatricoma 7 191749 -NCIT:C190279 Childhood Pilomatricoma 8 191750 -NCIT:C43322 Benign Mixed Epithelial and Mesenchymal Hair Follicle Neoplasm 6 191751 -NCIT:C43323 Benign Pilar-Associated Mesenchyme Neoplasm 6 191752 -NCIT:C27526 Follicular Myxoma 7 191753 -NCIT:C43331 Fibrofolliculoma 7 191754 -NCIT:C43332 Pilar Leiomyoma 7 191755 -NCIT:C43333 Spindle-Cell Predominant Trichodiscoma 7 191756 -NCIT:C4470 Perifollicular Fibroma 7 191757 -NCIT:C4879 Benign Sweat Gland Neoplasm 5 191758 -NCIT:C167342 Spiradenocylindroma 6 191759 -NCIT:C27094 Cylindroma 6 191760 -NCIT:C43351 Sporadic Cylindroma 7 191761 -NCIT:C43352 Turban Tumor 7 191762 -NCIT:C27273 Poroma 6 191763 -NCIT:C43353 Classical Poroma 7 191764 -NCIT:C4473 Dermal Duct Tumor 7 191765 -NCIT:C3760 Hidrocystoma 6 191766 -NCIT:C43342 Apocrine Hidrocystoma 7 191767 -NCIT:C7565 Eccrine Hidrocystoma 7 191768 -NCIT:C4170 Spiradenoma 6 191769 -NCIT:C5193 Breast Spiradenoma 7 191770 -NCIT:C4171 Hidradenoma Papilliferum 6 191771 -NCIT:C128240 Vulvar Hidradenoma Papilliferum 7 191772 -NCIT:C96699 Anal Hidradenoma Papilliferum 7 191773 -NCIT:C4474 Chondroid Syringoma 6 191774 -NCIT:C6797 Benign Eccrine Neoplasm 6 191775 -NCIT:C162848 Digital Papillary Adenoma 7 191776 -NCIT:C3761 Syringoma 7 191777 -NCIT:C40311 Vulvar Syringoma 8 191778 -NCIT:C43356 Syringofibroadenoma 7 191779 -NCIT:C7565 Eccrine Hidrocystoma 7 191780 -NCIT:C6799 Benign Apocrine Neoplasm 6 191781 -NCIT:C4168 Apocrine Adenoma 7 191782 -NCIT:C27527 Tubular Apocrine Adenoma 8 191783 -NCIT:C43342 Apocrine Hidrocystoma 8 191784 -NCIT:C6088 Ceruminous Adenoma 8 191785 -NCIT:C7560 Sweat Gland Adenoma 6 191786 -NCIT:C4168 Apocrine Adenoma 7 191787 -NCIT:C27527 Tubular Apocrine Adenoma 8 191788 -NCIT:C43342 Apocrine Hidrocystoma 8 191789 -NCIT:C6088 Ceruminous Adenoma 8 191790 -NCIT:C4172 Syringocystadenoma Papilliferum 7 191791 -NCIT:C43356 Syringofibroadenoma 7 191792 -NCIT:C7563 Hidradenoma 7 191793 -NCIT:C7567 Clear Cell Hidradenoma 8 191794 -NCIT:C7568 Nodular Hidradenoma 8 191795 -NCIT:C40312 Vulvar Nodular Hidradenoma 9 191796 -NCIT:C7580 Skin Appendage Adenoma 5 191797 -NCIT:C4174 Sebaceous Adenoma 6 191798 -NCIT:C7560 Sweat Gland Adenoma 6 191799 -NCIT:C4168 Apocrine Adenoma 7 191800 -NCIT:C27527 Tubular Apocrine Adenoma 8 191801 -NCIT:C43342 Apocrine Hidrocystoma 8 191802 -NCIT:C6088 Ceruminous Adenoma 8 191803 -NCIT:C4172 Syringocystadenoma Papilliferum 7 191804 -NCIT:C43356 Syringofibroadenoma 7 191805 -NCIT:C7563 Hidradenoma 7 191806 -NCIT:C7567 Clear Cell Hidradenoma 8 191807 -NCIT:C7568 Nodular Hidradenoma 8 191808 -NCIT:C40312 Vulvar Nodular Hidradenoma 9 191809 -NCIT:C8525 Benign Sebaceous Neoplasm 5 191810 -NCIT:C4174 Sebaceous Adenoma 6 191811 -NCIT:C43334 Superficial Epithelioma with Sebaceous Differentiation 6 191812 -NCIT:C43336 Sebaceoma 6 191813 -NCIT:C4632 Dermoid Cyst of the Skin 4 191814 -NCIT:C7158 Benign Dermal Neoplasm 4 191815 -NCIT:C121680 Dermal Nerve Sheath Myxoma 5 191816 -NCIT:C128451 Cutaneous Neurofibroma 5 191817 -NCIT:C27127 Benign Skin Vascular Neoplasm 5 191818 -NCIT:C27509 Skin Lymphangioma 6 191819 -NCIT:C162592 Penile Lymphangioma 7 191820 -NCIT:C4905 Skin Hemangioma 6 191821 -NCIT:C162579 Penile Hemangioma 7 191822 -NCIT:C162580 Penile Epithelioid Hemangioma 8 191823 -NCIT:C34967 Lobular Capillary Hemangioma of Skin and Subcutaneous Tissue 7 191824 -NCIT:C3926 Angioma Serpiginosum 7 191825 -NCIT:C4299 Verrucous Hemangioma 7 191826 -NCIT:C4390 Cherry Hemangioma 7 191827 -NCIT:C4372 Cherry Hemangioma of Lip 8 191828 -NCIT:C4487 Tufted Angioma 7 191829 -NCIT:C4750 Skin Cavernous Hemangioma 7 191830 -NCIT:C6387 Scrotal Hemangioma 7 191831 -NCIT:C7393 Skin Epithelioid Hemangioma 7 191832 -NCIT:C162580 Penile Epithelioid Hemangioma 8 191833 -NCIT:C37258 Paraganglioma-Like Dermal Melanocytic Tumor 5 191834 -NCIT:C4482 Skin Leiomyoma 5 191835 -NCIT:C43332 Pilar Leiomyoma 6 191836 -NCIT:C4483 Dartoic Leiomyoma 6 191837 -NCIT:C4616 Skin Lipoma 5 191838 -NCIT:C170474 Skin Spindle Cell/Pleomorphic Lipoma 6 191839 -NCIT:C170475 Skin Spindle Cell Lipoma 7 191840 -NCIT:C170476 Skin Pleomorphic Lipoma 7 191841 -NCIT:C170478 Skin Angiolipoma 6 191842 -NCIT:C5569 Cutaneous Schwannoma 5 191843 -NCIT:C6578 Skin Myxoma 5 191844 -NCIT:C27526 Follicular Myxoma 6 191845 -NCIT:C6806 Benign Skin Fibroblastic Neoplasm 5 191846 -NCIT:C170888 Dermatomyofibroma 6 191847 -NCIT:C3942 Fibrous Hamartoma of Infancy 6 191848 -NCIT:C48961 Subcutaneous Nodular Fasciitis 6 191849 -NCIT:C6484 Dermal Fibroma 6 191850 -NCIT:C170889 Plaque-Like CD34-Positive Dermal Fibroma 7 191851 -NCIT:C4470 Perifollicular Fibroma 7 191852 -NCIT:C6486 Nuchal-Type Fibroma 7 191853 -NCIT:C7343 Benign Skin Fibrohistiocytic Neoplasm 5 191854 -NCIT:C6801 Skin Fibrous Histiocytoma 6 191855 -NCIT:C49076 Skin Fibrous Histiocytoma, Fibroblastic Variant 7 191856 -NCIT:C49077 Skin Fibrous Histiocytoma, Histiocytic Variant 7 191857 -NCIT:C49078 Skin Fibrous Histiocytoma, Cellular Variant 7 191858 -NCIT:C49079 Skin Fibrous Histiocytoma, Epithelioid Variant 7 191859 -NCIT:C7341 Benign Epithelial Skin Neoplasm 4 191860 -NCIT:C167370 Skin Myoepithelioma 5 191861 -NCIT:C26913 Verruca Plantaris 5 191862 -NCIT:C27087 Verruca Vulgaris 5 191863 -NCIT:C173475 Oral Verruca Vulgaris 6 191864 -NCIT:C43315 Benign Outer Hair Sheath and Infundibulum Neoplasm 5 191865 -NCIT:C4113 Trichilemmoma 6 191866 -NCIT:C27521 Classic Type Trichilemmoma 7 191867 -NCIT:C27522 Desmoplastic Trichilemmoma 7 191868 -NCIT:C43325 Trichoadenoma 6 191869 -NCIT:C4468 Pilar Sheath Acanthoma 6 191870 -NCIT:C4469 Tumor of the Follicular Infundibulum 6 191871 -NCIT:C43319 Benign Germinative Follicular Epithelium Neoplasm 5 191872 -NCIT:C168592 Melanocytic Matricoma 6 191873 -NCIT:C27132 Trichoblastoma 6 191874 -NCIT:C27524 Desmoplastic Trichoepithelioma 7 191875 -NCIT:C40314 Vulvar Trichoepithelioma 7 191876 -NCIT:C4112 Trichofolliculoma 6 191877 -NCIT:C7368 Pilomatricoma 6 191878 -NCIT:C190279 Childhood Pilomatricoma 7 191879 -NCIT:C4614 Skin Papilloma 5 191880 -NCIT:C4879 Benign Sweat Gland Neoplasm 5 191881 -NCIT:C167342 Spiradenocylindroma 6 191882 -NCIT:C27094 Cylindroma 6 191883 -NCIT:C43351 Sporadic Cylindroma 7 191884 -NCIT:C43352 Turban Tumor 7 191885 -NCIT:C27273 Poroma 6 191886 -NCIT:C43353 Classical Poroma 7 191887 -NCIT:C4473 Dermal Duct Tumor 7 191888 -NCIT:C3760 Hidrocystoma 6 191889 -NCIT:C43342 Apocrine Hidrocystoma 7 191890 -NCIT:C7565 Eccrine Hidrocystoma 7 191891 -NCIT:C4170 Spiradenoma 6 191892 -NCIT:C5193 Breast Spiradenoma 7 191893 -NCIT:C4171 Hidradenoma Papilliferum 6 191894 -NCIT:C128240 Vulvar Hidradenoma Papilliferum 7 191895 -NCIT:C96699 Anal Hidradenoma Papilliferum 7 191896 -NCIT:C4474 Chondroid Syringoma 6 191897 -NCIT:C6797 Benign Eccrine Neoplasm 6 191898 -NCIT:C162848 Digital Papillary Adenoma 7 191899 -NCIT:C3761 Syringoma 7 191900 -NCIT:C40311 Vulvar Syringoma 8 191901 -NCIT:C43356 Syringofibroadenoma 7 191902 -NCIT:C7565 Eccrine Hidrocystoma 7 191903 -NCIT:C6799 Benign Apocrine Neoplasm 6 191904 -NCIT:C4168 Apocrine Adenoma 7 191905 -NCIT:C27527 Tubular Apocrine Adenoma 8 191906 -NCIT:C43342 Apocrine Hidrocystoma 8 191907 -NCIT:C6088 Ceruminous Adenoma 8 191908 -NCIT:C7560 Sweat Gland Adenoma 6 191909 -NCIT:C4168 Apocrine Adenoma 7 191910 -NCIT:C27527 Tubular Apocrine Adenoma 8 191911 -NCIT:C43342 Apocrine Hidrocystoma 8 191912 -NCIT:C6088 Ceruminous Adenoma 8 191913 -NCIT:C4172 Syringocystadenoma Papilliferum 7 191914 -NCIT:C43356 Syringofibroadenoma 7 191915 -NCIT:C7563 Hidradenoma 7 191916 -NCIT:C7567 Clear Cell Hidradenoma 8 191917 -NCIT:C7568 Nodular Hidradenoma 8 191918 -NCIT:C40312 Vulvar Nodular Hidradenoma 9 191919 -NCIT:C7419 Acanthoma 5 191920 -NCIT:C165485 Lichen Planus-Like Keratosis 6 191921 -NCIT:C27516 Epidermolytic Acanthoma 6 191922 -NCIT:C27517 Acantholytic Acanthoma 6 191923 -NCIT:C27518 Large Cell Acanthoma 6 191924 -NCIT:C4087 Warty Dyskeratoma 6 191925 -NCIT:C4468 Pilar Sheath Acanthoma 6 191926 -NCIT:C4469 Tumor of the Follicular Infundibulum 6 191927 -NCIT:C9006 Seborrheic Keratosis 6 191928 -NCIT:C27548 Melanoacanthoma 7 191929 -NCIT:C4356 Eyelid Seborrheic Keratosis 7 191930 -NCIT:C6375 Vulvar Seborrheic Keratosis 7 191931 -NCIT:C40291 Vulvar Inverted Follicular Keratosis 8 191932 -NCIT:C9007 Inverted Follicular Keratosis 7 191933 -NCIT:C40291 Vulvar Inverted Follicular Keratosis 8 191934 -NCIT:C97041 Clear Cell Acanthoma 6 191935 -NCIT:C7580 Skin Appendage Adenoma 5 191936 -NCIT:C4174 Sebaceous Adenoma 6 191937 -NCIT:C7560 Sweat Gland Adenoma 6 191938 -NCIT:C4168 Apocrine Adenoma 7 191939 -NCIT:C27527 Tubular Apocrine Adenoma 8 191940 -NCIT:C43342 Apocrine Hidrocystoma 8 191941 -NCIT:C6088 Ceruminous Adenoma 8 191942 -NCIT:C4172 Syringocystadenoma Papilliferum 7 191943 -NCIT:C43356 Syringofibroadenoma 7 191944 -NCIT:C7563 Hidradenoma 7 191945 -NCIT:C7567 Clear Cell Hidradenoma 8 191946 -NCIT:C7568 Nodular Hidradenoma 8 191947 -NCIT:C40312 Vulvar Nodular Hidradenoma 9 191948 -NCIT:C8525 Benign Sebaceous Neoplasm 5 191949 -NCIT:C4174 Sebaceous Adenoma 6 191950 -NCIT:C43334 Superficial Epithelioma with Sebaceous Differentiation 6 191951 -NCIT:C43336 Sebaceoma 6 191952 -NCIT:C7571 Benign Skin Melanocytic Nevus 4 191953 -NCIT:C165529 Combined Nevus 5 191954 -NCIT:C165523 Combined BAP1-Inactivated Nevus 6 191955 -NCIT:C190284 Childhood Benign Skin Melanocytic Nevus 5 191956 -NCIT:C190281 Childhood Pigmented Spindle Cell Nevus 6 191957 -NCIT:C190282 Childhood Spitz Nevus 6 191958 -NCIT:C190283 Childhood Blue Nevus 6 191959 -NCIT:C190285 Childhood Junctional Nevus 6 191960 -NCIT:C190286 Childhood Compound Nevus 6 191961 -NCIT:C190287 Childhood Dermal Nevus 6 191962 -NCIT:C3944 Congenital Melanocytic Nevus 6 191963 -NCIT:C40330 Vulvar Congenital Melanocytic Nevus 7 191964 -NCIT:C4234 Giant Congenital Nevus 7 191965 -NCIT:C66754 Small Congenital Melanocytic Nevus 7 191966 -NCIT:C66755 Proliferative Nodules in Congenital Melanocytic Nevus 7 191967 -NCIT:C27007 Spitz Nevus 5 191968 -NCIT:C190282 Childhood Spitz Nevus 6 191969 -NCIT:C66757 Epithelioid Cell Nevus 6 191970 -NCIT:C66758 Spindle Cell Nevus 6 191971 -NCIT:C82864 Desmoplastic Spitz Nevus 6 191972 -NCIT:C27095 Nonpigmented Nevus 5 191973 -NCIT:C27816 Pigmented Nevus 5 191974 -NCIT:C3803 Blue Nevus 6 191975 -NCIT:C190283 Childhood Blue Nevus 7 191976 -NCIT:C40240 Cervical Blue Nevus 7 191977 -NCIT:C40282 Vaginal Blue Nevus 7 191978 -NCIT:C40332 Vulvar Blue Nevus 7 191979 -NCIT:C4241 Cellular Blue Nevus 7 191980 -NCIT:C4496 Common Blue Nevus 7 191981 -NCIT:C4234 Giant Congenital Nevus 6 191982 -NCIT:C4751 Pigmented Spindle Cell Nevus 6 191983 -NCIT:C190281 Childhood Pigmented Spindle Cell Nevus 7 191984 -NCIT:C3804 Dermal Nevus 5 191985 -NCIT:C190287 Childhood Dermal Nevus 6 191986 -NCIT:C4229 Neuronevus 6 191987 -NCIT:C3880 Eyelid Nevus 5 191988 -NCIT:C3944 Congenital Melanocytic Nevus 5 191989 -NCIT:C40330 Vulvar Congenital Melanocytic Nevus 6 191990 -NCIT:C4234 Giant Congenital Nevus 6 191991 -NCIT:C66754 Small Congenital Melanocytic Nevus 6 191992 -NCIT:C66755 Proliferative Nodules in Congenital Melanocytic Nevus 6 191993 -NCIT:C4226 Balloon Cell Nevus 5 191994 -NCIT:C4495 Cockade Nevus 5 191995 -NCIT:C4497 Desmoplastic Nevus 5 191996 -NCIT:C82864 Desmoplastic Spitz Nevus 6 191997 -NCIT:C4498 Nevus Spilus 5 191998 -NCIT:C54658 Breast Nevus 5 191999 -NCIT:C54659 Acral Nevus 5 192000 -NCIT:C165662 Nail Matrix Nevus 6 192001 -NCIT:C54660 Flexural Skin Nevus 5 192002 -NCIT:C54661 Head and Neck Nevus 5 192003 -NCIT:C7576 Deep Penetrating Nevus 5 192004 -NCIT:C7577 Recurrent Nevus 5 192005 -NCIT:C7602 Halo Nevus 5 192006 -NCIT:C7603 Regressing Nevus 5 192007 -NCIT:C82862 Meyerson Nevus 5 192008 -NCIT:C3217 Benign Mastocytoma 3 192009 -NCIT:C36264 Metastatic Benign Neoplasm 3 192010 -NCIT:C35759 Metastasizing Pleomorphic Adenoma of the Salivary Gland 4 192011 -NCIT:C40173 Uterine Corpus Metastasizing Leiomyoma 4 192012 -NCIT:C3636 Benign Lymph Node Neoplasm 3 192013 -NCIT:C3762 Adenomatoid Tumor 3 192014 -NCIT:C126331 Ovarian Adenomatoid Tumor 4 192015 -NCIT:C162476 Paratesticular Adenomatoid Tumor 4 192016 -NCIT:C6382 Epididymal Adenomatoid Tumor 5 192017 -NCIT:C27250 Uterine Corpus Adenomatoid Tumor 4 192018 -NCIT:C40129 Fallopian Tube Adenomatoid Tumor 4 192019 -NCIT:C4499 Pleural Adenomatoid Tumor 4 192020 -NCIT:C48319 Adrenal Cortical Adenomatoid Tumor 4 192021 -NCIT:C7354 Peritoneal Adenomatoid Tumor 4 192022 -NCIT:C92187 Pericardial Adenomatoid Tumor 4 192023 -NCIT:C4092 Benign Epithelial Neoplasm 3 192024 -NCIT:C157748 Metanephric Tumor 4 192025 -NCIT:C157749 Metanephric Stromal Tumor 5 192026 -NCIT:C27253 Metanephric Adenoma 5 192027 -NCIT:C39812 Metanephric Adenofibroma 5 192028 -NCIT:C162483 Epididymal Cystadenoma 4 192029 -NCIT:C155953 Epididymal Papillary Cystadenoma 5 192030 -NCIT:C2854 Warthin Tumor 4 192031 -NCIT:C175291 Lacrimal Gland Warthin Tumor 5 192032 -NCIT:C66865 Parotid Gland Warthin Tumor 5 192033 -NCIT:C34584 Endocervical Polyp 4 192034 -NCIT:C6856 Cervical Microglandular Polyp 5 192035 -NCIT:C35833 Salivary Gland Cystadenoma 4 192036 -NCIT:C3686 Salivary Gland Monomorphic Adenoma 4 192037 -NCIT:C35738 Salivary Gland Sebaceous Adenoma 5 192038 -NCIT:C5932 Salivary Gland Oncocytoma 5 192039 -NCIT:C5950 Basal Cell Adenoma 5 192040 -NCIT:C5979 Salivary Gland Canalicular Adenoma 5 192041 -NCIT:C6845 Oral Cavity Monomorphic Adenoma 5 192042 -NCIT:C6844 Hard Palate Monomorphic Adenoma 6 192043 -NCIT:C6847 Parotid Gland Monomorphic Adenoma 5 192044 -NCIT:C40018 Rete Ovarii Adenoma 4 192045 -NCIT:C40116 Fallopian Tube Metaplastic Papillary Tumor 4 192046 -NCIT:C40299 Bartholin Gland Adenoma 4 192047 -NCIT:C40300 Bartholin Gland Adenomyoma 4 192048 -NCIT:C40301 Adenoma of Minor Vestibular Glands 4 192049 -NCIT:C40382 Breast Adenoma 4 192050 -NCIT:C40383 Breast Apocrine Adenoma 5 192051 -NCIT:C40384 Breast Ductal Adenoma 5 192052 -NCIT:C40408 Breast Pleomorphic Adenoma 5 192053 -NCIT:C62210 Breast Tubular Adenoma 5 192054 -NCIT:C9473 Lactating Adenoma 6 192055 -NCIT:C4192 Nipple Adenoma 4 192056 -NCIT:C4374 Pancreatic Cystadenoma 4 192057 -NCIT:C5712 Pancreatic Serous Cystadenoma 5 192058 -NCIT:C95471 Pancreatic Macrocystic Serous Cystadenoma 5 192059 -NCIT:C4455 Lung Adenoma 4 192060 -NCIT:C183045 Bronchiolar Adenoma/Ciliated Muconodular Papillary Tumor 5 192061 -NCIT:C3494 Lung Papillary Adenoma 5 192062 -NCIT:C4140 Alveolar Adenoma 5 192063 -NCIT:C45603 Lung Pleomorphic Adenoma 5 192064 -NCIT:C45604 Lung Mucinous Cystadenoma 5 192065 -NCIT:C5656 Sclerosing Pneumocytoma 5 192066 -NCIT:C5664 Lung Mucous Gland Adenoma 5 192067 -NCIT:C4510 Benign Ovarian Epithelial Tumor 4 192068 -NCIT:C40039 Benign Ovarian Mucinous Tumor 5 192069 -NCIT:C40040 Ovarian Mucinous Adenofibroma 6 192070 -NCIT:C40041 Ovarian Mucinous Cystadenofibroma 7 192071 -NCIT:C4512 Ovarian Mucinous Cystadenoma 6 192072 -NCIT:C40072 Benign Ovarian Endometrioid Tumor 5 192073 -NCIT:C27287 Ovarian Endometrioid Adenofibroma 6 192074 -NCIT:C27288 Ovarian Endometrioid Cystadenofibroma 7 192075 -NCIT:C40075 Ovarian Endometrioid Cystadenoma 6 192076 -NCIT:C40084 Benign Ovarian Clear Cell Tumor 5 192077 -NCIT:C40085 Ovarian Clear Cell Adenofibroma 6 192078 -NCIT:C40086 Ovarian Clear Cell Cystadenofibroma 7 192079 -NCIT:C4060 Ovarian Cystadenoma 5 192080 -NCIT:C126310 Ovarian Seromucinous Cystadenoma 6 192081 -NCIT:C40075 Ovarian Endometrioid Cystadenoma 6 192082 -NCIT:C4511 Ovarian Serous Cystadenoma 6 192083 -NCIT:C7278 Ovarian Papillary Cystadenoma 7 192084 -NCIT:C4512 Ovarian Mucinous Cystadenoma 6 192085 -NCIT:C4746 Benign Ovarian Brenner Tumor 5 192086 -NCIT:C7282 Benign Ovarian Seromucinous Tumor 5 192087 -NCIT:C126310 Ovarian Seromucinous Cystadenoma 6 192088 -NCIT:C126311 Ovarian Seromucinous Adenofibroma 6 192089 -NCIT:C7313 Benign Ovarian Serous Tumor 5 192090 -NCIT:C40031 Ovarian Serous Adenofibroma 6 192091 -NCIT:C40032 Ovarian Serous Cystadenofibroma 7 192092 -NCIT:C4511 Ovarian Serous Cystadenoma 6 192093 -NCIT:C7278 Ovarian Papillary Cystadenoma 7 192094 -NCIT:C7279 Ovarian Surface Papilloma 6 192095 -NCIT:C4526 Kidney Oncocytoma 4 192096 -NCIT:C8960 Hereditary Kidney Oncocytoma 5 192097 -NCIT:C4621 Benign Endocrine Neoplasm 4 192098 -NCIT:C156757 Parathyroid Gland Adenoma 5 192099 -NCIT:C190066 Childhood Parathyroid Gland Adenoma 6 192100 -NCIT:C27393 Parathyroid Gland Oncocytic Adenoma 6 192101 -NCIT:C4154 Parathyroid Gland Chief Cell Adenoma 6 192102 -NCIT:C48283 Parathyroid Gland Lipoadenoma 6 192103 -NCIT:C7993 Parathyroid Gland Clear Cell Adenoma 6 192104 -NCIT:C4155 Parathyroid Gland Water-Clear Cell Adenoma 7 192105 -NCIT:C7994 Parathyroid Gland Mixed Cell Type Adenoma 6 192106 -NCIT:C190600 Childhood Benign Endocrine Neoplasm 5 192107 -NCIT:C190060 Childhood Thyroid Gland Follicular Adenoma 6 192108 -NCIT:C190066 Childhood Parathyroid Gland Adenoma 6 192109 -NCIT:C190068 Childhood Adrenal Cortical Adenoma 6 192110 -NCIT:C3502 Thyroid Gland Follicular Adenoma 5 192111 -NCIT:C155957 Thyroid Gland Spindle Cell Follicular Adenoma 6 192112 -NCIT:C155958 Thyroid Gland Black Follicular Adenoma 6 192113 -NCIT:C187261 Thyroid Gland Follicular Adenoma with Papillary Architecture 6 192114 -NCIT:C190060 Childhood Thyroid Gland Follicular Adenoma 6 192115 -NCIT:C4160 Thyroid Gland Microfollicular Adenoma 6 192116 -NCIT:C4161 Thyroid Gland Macrofollicular Adenoma 6 192117 -NCIT:C46111 Thyroid Gland Follicular Adenoma with Papillary Hyperplasia 6 192118 -NCIT:C46115 Thyroid Gland Signet Ring Cell Follicular Adenoma 6 192119 -NCIT:C46116 Thyroid Gland Mucinous Follicular Adenoma 6 192120 -NCIT:C46118 Thyroid Gland Lipoadenoma 6 192121 -NCIT:C46119 Thyroid Gland Clear Cell Follicular Adenoma 6 192122 -NCIT:C46122 Thyroid Gland Hyperfunctioning Adenoma 6 192123 -NCIT:C46123 Thyroid Gland Follicular Adenoma with Bizarre Nuclei 6 192124 -NCIT:C6042 Thyroid Gland Oncocytic Adenoma 6 192125 -NCIT:C9003 Adrenal Cortical Adenoma 5 192126 -NCIT:C190068 Childhood Adrenal Cortical Adenoma 6 192127 -NCIT:C4163 Adrenal Cortical Compact Cell Adenoma 6 192128 -NCIT:C4164 Pigmented Adrenal Cortical Adenoma 6 192129 -NCIT:C4165 Adrenal Cortical Clear Cell Adenoma 6 192130 -NCIT:C4166 Adrenal Cortical Glomerulosa Cell Adenoma 6 192131 -NCIT:C4167 Adrenal Cortical Mixed Cell Adenoma 6 192132 -NCIT:C48447 Adrenal Cortical Oncocytic Adenoma 6 192133 -NCIT:C48449 Cortisol-Producing Adrenal Cortical Adenoma 6 192134 -NCIT:C48451 Aldosterone-Producing Adrenal Cortical Adenoma 6 192135 -NCIT:C48452 Sex Hormone-Producing Adrenal Cortical Adenoma 6 192136 -NCIT:C48454 Androgen-Producing Adrenal Cortical Adenoma 7 192137 -NCIT:C48456 Estrogen-Producing Adrenal Cortical Adenoma 7 192138 -NCIT:C48458 Non-Functioning Adrenal Cortical Adenoma 6 192139 -NCIT:C4742 Benign Squamous Cell Neoplasm 4 192140 -NCIT:C26913 Verruca Plantaris 5 192141 -NCIT:C27087 Verruca Vulgaris 5 192142 -NCIT:C173475 Oral Verruca Vulgaris 6 192143 -NCIT:C2964 Craniopharyngioma 5 192144 -NCIT:C148076 Unresectable Craniopharyngioma 6 192145 -NCIT:C148077 Recurrent Craniopharyngioma 6 192146 -NCIT:C162612 Recurrent Adamantinomatous Craniopharyngioma 7 192147 -NCIT:C4010 Adult Craniopharyngioma 6 192148 -NCIT:C188949 Adult Adamantinomatous Craniopharyngioma 7 192149 -NCIT:C4725 Papillary Craniopharyngioma 6 192150 -NCIT:C4726 Adamantinomatous Craniopharyngioma 6 192151 -NCIT:C162612 Recurrent Adamantinomatous Craniopharyngioma 7 192152 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 7 192153 -NCIT:C188949 Adult Adamantinomatous Craniopharyngioma 7 192154 -NCIT:C7816 Childhood Craniopharyngioma 6 192155 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 7 192156 -NCIT:C3712 Squamous Papilloma 5 192157 -NCIT:C173476 Oral Squamous Papilloma 6 192158 -NCIT:C5819 Buccal Squamous Papilloma 7 192159 -NCIT:C191740 Squamous Papilloma of the Urinary Tract 6 192160 -NCIT:C39834 Bladder Squamous Papilloma 7 192161 -NCIT:C4355 Eyelid Squamous Papilloma 6 192162 -NCIT:C4369 Nasal Vestibule Squamous Papilloma 6 192163 -NCIT:C45573 Lung Squamous Papilloma 6 192164 -NCIT:C5344 Esophageal Squamous Papilloma 6 192165 -NCIT:C6037 Nasopharyngeal Squamous Papilloma 6 192166 -NCIT:C6038 Oropharyngeal Squamous Papilloma 6 192167 -NCIT:C6224 Conjunctival Squamous Papilloma 6 192168 -NCIT:C6342 Cervical Squamous Papilloma 6 192169 -NCIT:C6374 Vaginal Squamous Papilloma 6 192170 -NCIT:C6376 Vulvar Squamous Papilloma 6 192171 -NCIT:C40290 Vulvar Squamous Papillomatosis 7 192172 -NCIT:C65165 Inverted Squamous Papilloma 6 192173 -NCIT:C7742 Laryngeal Squamous Papilloma 6 192174 -NCIT:C190150 Childhood Laryngeal Squamous Papilloma 7 192175 -NCIT:C96554 Anal Canal Squamous Papilloma 6 192176 -NCIT:C4795 Prostate Adenoma 4 192177 -NCIT:C5913 Oral Cavity Adenoma 4 192178 -NCIT:C6242 Oral Cavity Pleomorphic Adenoma 5 192179 -NCIT:C6211 Soft Palate Pleomorphic Adenoma 6 192180 -NCIT:C6212 Hard Palate Pleomorphic Adenoma 6 192181 -NCIT:C6845 Oral Cavity Monomorphic Adenoma 5 192182 -NCIT:C6844 Hard Palate Monomorphic Adenoma 6 192183 -NCIT:C5978 Salivary Gland Myoepithelioma 4 192184 -NCIT:C6834 Middle Ear Adenoma 4 192185 -NCIT:C7341 Benign Epithelial Skin Neoplasm 4 192186 -NCIT:C167370 Skin Myoepithelioma 5 192187 -NCIT:C26913 Verruca Plantaris 5 192188 -NCIT:C27087 Verruca Vulgaris 5 192189 -NCIT:C173475 Oral Verruca Vulgaris 6 192190 -NCIT:C43315 Benign Outer Hair Sheath and Infundibulum Neoplasm 5 192191 -NCIT:C4113 Trichilemmoma 6 192192 -NCIT:C27521 Classic Type Trichilemmoma 7 192193 -NCIT:C27522 Desmoplastic Trichilemmoma 7 192194 -NCIT:C43325 Trichoadenoma 6 192195 -NCIT:C4468 Pilar Sheath Acanthoma 6 192196 -NCIT:C4469 Tumor of the Follicular Infundibulum 6 192197 -NCIT:C43319 Benign Germinative Follicular Epithelium Neoplasm 5 192198 -NCIT:C168592 Melanocytic Matricoma 6 192199 -NCIT:C27132 Trichoblastoma 6 192200 -NCIT:C27524 Desmoplastic Trichoepithelioma 7 192201 -NCIT:C40314 Vulvar Trichoepithelioma 7 192202 -NCIT:C4112 Trichofolliculoma 6 192203 -NCIT:C7368 Pilomatricoma 6 192204 -NCIT:C190279 Childhood Pilomatricoma 7 192205 -NCIT:C4614 Skin Papilloma 5 192206 -NCIT:C4879 Benign Sweat Gland Neoplasm 5 192207 -NCIT:C167342 Spiradenocylindroma 6 192208 -NCIT:C27094 Cylindroma 6 192209 -NCIT:C43351 Sporadic Cylindroma 7 192210 -NCIT:C43352 Turban Tumor 7 192211 -NCIT:C27273 Poroma 6 192212 -NCIT:C43353 Classical Poroma 7 192213 -NCIT:C4473 Dermal Duct Tumor 7 192214 -NCIT:C3760 Hidrocystoma 6 192215 -NCIT:C43342 Apocrine Hidrocystoma 7 192216 -NCIT:C7565 Eccrine Hidrocystoma 7 192217 -NCIT:C4170 Spiradenoma 6 192218 -NCIT:C5193 Breast Spiradenoma 7 192219 -NCIT:C4171 Hidradenoma Papilliferum 6 192220 -NCIT:C128240 Vulvar Hidradenoma Papilliferum 7 192221 -NCIT:C96699 Anal Hidradenoma Papilliferum 7 192222 -NCIT:C4474 Chondroid Syringoma 6 192223 -NCIT:C6797 Benign Eccrine Neoplasm 6 192224 -NCIT:C162848 Digital Papillary Adenoma 7 192225 -NCIT:C3761 Syringoma 7 192226 -NCIT:C40311 Vulvar Syringoma 8 192227 -NCIT:C43356 Syringofibroadenoma 7 192228 -NCIT:C7565 Eccrine Hidrocystoma 7 192229 -NCIT:C6799 Benign Apocrine Neoplasm 6 192230 -NCIT:C4168 Apocrine Adenoma 7 192231 -NCIT:C27527 Tubular Apocrine Adenoma 8 192232 -NCIT:C43342 Apocrine Hidrocystoma 8 192233 -NCIT:C6088 Ceruminous Adenoma 8 192234 -NCIT:C7560 Sweat Gland Adenoma 6 192235 -NCIT:C4168 Apocrine Adenoma 7 192236 -NCIT:C27527 Tubular Apocrine Adenoma 8 192237 -NCIT:C43342 Apocrine Hidrocystoma 8 192238 -NCIT:C6088 Ceruminous Adenoma 8 192239 -NCIT:C4172 Syringocystadenoma Papilliferum 7 192240 -NCIT:C43356 Syringofibroadenoma 7 192241 -NCIT:C7563 Hidradenoma 7 192242 -NCIT:C7567 Clear Cell Hidradenoma 8 192243 -NCIT:C7568 Nodular Hidradenoma 8 192244 -NCIT:C40312 Vulvar Nodular Hidradenoma 9 192245 -NCIT:C7419 Acanthoma 5 192246 -NCIT:C165485 Lichen Planus-Like Keratosis 6 192247 -NCIT:C27516 Epidermolytic Acanthoma 6 192248 -NCIT:C27517 Acantholytic Acanthoma 6 192249 -NCIT:C27518 Large Cell Acanthoma 6 192250 -NCIT:C4087 Warty Dyskeratoma 6 192251 -NCIT:C4468 Pilar Sheath Acanthoma 6 192252 -NCIT:C4469 Tumor of the Follicular Infundibulum 6 192253 -NCIT:C9006 Seborrheic Keratosis 6 192254 -NCIT:C27548 Melanoacanthoma 7 192255 -NCIT:C4356 Eyelid Seborrheic Keratosis 7 192256 -NCIT:C6375 Vulvar Seborrheic Keratosis 7 192257 -NCIT:C40291 Vulvar Inverted Follicular Keratosis 8 192258 -NCIT:C9007 Inverted Follicular Keratosis 7 192259 -NCIT:C40291 Vulvar Inverted Follicular Keratosis 8 192260 -NCIT:C97041 Clear Cell Acanthoma 6 192261 -NCIT:C7580 Skin Appendage Adenoma 5 192262 -NCIT:C4174 Sebaceous Adenoma 6 192263 -NCIT:C7560 Sweat Gland Adenoma 6 192264 -NCIT:C4168 Apocrine Adenoma 7 192265 -NCIT:C27527 Tubular Apocrine Adenoma 8 192266 -NCIT:C43342 Apocrine Hidrocystoma 8 192267 -NCIT:C6088 Ceruminous Adenoma 8 192268 -NCIT:C4172 Syringocystadenoma Papilliferum 7 192269 -NCIT:C43356 Syringofibroadenoma 7 192270 -NCIT:C7563 Hidradenoma 7 192271 -NCIT:C7567 Clear Cell Hidradenoma 8 192272 -NCIT:C7568 Nodular Hidradenoma 8 192273 -NCIT:C40312 Vulvar Nodular Hidradenoma 9 192274 -NCIT:C8525 Benign Sebaceous Neoplasm 5 192275 -NCIT:C4174 Sebaceous Adenoma 6 192276 -NCIT:C43334 Superficial Epithelioma with Sebaceous Differentiation 6 192277 -NCIT:C43336 Sebaceoma 6 192278 -NCIT:C7440 Papilloma 4 192279 -NCIT:C35839 Salivary Gland Ductal Papilloma 5 192280 -NCIT:C35834 Salivary Gland Intraductal Papilloma 6 192281 -NCIT:C35835 Salivary Gland Inverted Ductal Papilloma 6 192282 -NCIT:C35836 Salivary Gland Sialadenoma Papilliferum 6 192283 -NCIT:C3698 Choroid Plexus Papilloma 5 192284 -NCIT:C5800 Childhood Choroid Plexus Papilloma 6 192285 -NCIT:C3712 Squamous Papilloma 5 192286 -NCIT:C173476 Oral Squamous Papilloma 6 192287 -NCIT:C5819 Buccal Squamous Papilloma 7 192288 -NCIT:C191740 Squamous Papilloma of the Urinary Tract 6 192289 -NCIT:C39834 Bladder Squamous Papilloma 7 192290 -NCIT:C4355 Eyelid Squamous Papilloma 6 192291 -NCIT:C4369 Nasal Vestibule Squamous Papilloma 6 192292 -NCIT:C45573 Lung Squamous Papilloma 6 192293 -NCIT:C5344 Esophageal Squamous Papilloma 6 192294 -NCIT:C6037 Nasopharyngeal Squamous Papilloma 6 192295 -NCIT:C6038 Oropharyngeal Squamous Papilloma 6 192296 -NCIT:C6224 Conjunctival Squamous Papilloma 6 192297 -NCIT:C6342 Cervical Squamous Papilloma 6 192298 -NCIT:C6374 Vaginal Squamous Papilloma 6 192299 -NCIT:C6376 Vulvar Squamous Papilloma 6 192300 -NCIT:C40290 Vulvar Squamous Papillomatosis 7 192301 -NCIT:C65165 Inverted Squamous Papilloma 6 192302 -NCIT:C7742 Laryngeal Squamous Papilloma 6 192303 -NCIT:C190150 Childhood Laryngeal Squamous Papilloma 7 192304 -NCIT:C96554 Anal Canal Squamous Papilloma 6 192305 -NCIT:C3785 Intraductal Papilloma 5 192306 -NCIT:C35834 Salivary Gland Intraductal Papilloma 6 192307 -NCIT:C3863 Breast Intraductal Papilloma 6 192308 -NCIT:C27944 Breast Sclerosing Papilloma 7 192309 -NCIT:C36087 Breast Central Papilloma 7 192310 -NCIT:C36088 Breast Peripheral Papilloma 7 192311 -NCIT:C36089 Breast Atypical Papilloma 7 192312 -NCIT:C5201 Breast Intraductal Papillomatosis 7 192313 -NCIT:C9503 Juvenile Breast Papillomatosis 8 192314 -NCIT:C3793 Inverted Papilloma 5 192315 -NCIT:C175334 Lacrimal Drainage System Inverted Papilloma 6 192316 -NCIT:C35835 Salivary Gland Inverted Ductal Papilloma 6 192317 -NCIT:C4118 Inverted Transitional Cell Papilloma 6 192318 -NCIT:C6192 Inverted Urothelial Papilloma 7 192319 -NCIT:C39859 Bladder Inverted Papilloma 8 192320 -NCIT:C6173 Urethral Inverted Papilloma 8 192321 -NCIT:C6174 Ureter Inverted Papilloma 8 192322 -NCIT:C6187 Renal Pelvis Inverted Papilloma 8 192323 -NCIT:C65165 Inverted Squamous Papilloma 6 192324 -NCIT:C6871 Sinonasal Inverted Papilloma 6 192325 -NCIT:C115432 Recurrent Sinonasal Inverted Papilloma 7 192326 -NCIT:C8194 Nasal Cavity Inverted Papilloma 7 192327 -NCIT:C8195 Paranasal Sinus Inverted Papilloma 7 192328 -NCIT:C6840 Maxillary Sinus Inverted Papilloma 8 192329 -NCIT:C6841 Sphenoid Sinus Inverted Papilloma 8 192330 -NCIT:C6842 Frontal Sinus Inverted Papilloma 8 192331 -NCIT:C6843 Ethmoid Sinus Inverted Papilloma 8 192332 -NCIT:C40112 Fallopian Tube Serous Papilloma 5 192333 -NCIT:C4061 Eyelid Papilloma 5 192334 -NCIT:C4355 Eyelid Squamous Papilloma 6 192335 -NCIT:C4115 Transitional Cell Papilloma 5 192336 -NCIT:C3842 Urothelial Papilloma 6 192337 -NCIT:C39858 Bladder Urothelial Papilloma 7 192338 -NCIT:C39859 Bladder Inverted Papilloma 8 192339 -NCIT:C4528 Renal Pelvis Urothelial Papilloma 7 192340 -NCIT:C6187 Renal Pelvis Inverted Papilloma 8 192341 -NCIT:C5061 Urethral Urothelial Papilloma 7 192342 -NCIT:C6173 Urethral Inverted Papilloma 8 192343 -NCIT:C6160 Ureter Urothelial Papilloma 7 192344 -NCIT:C6174 Ureter Inverted Papilloma 8 192345 -NCIT:C6192 Inverted Urothelial Papilloma 7 192346 -NCIT:C39859 Bladder Inverted Papilloma 8 192347 -NCIT:C6173 Urethral Inverted Papilloma 8 192348 -NCIT:C6174 Ureter Inverted Papilloma 8 192349 -NCIT:C6187 Renal Pelvis Inverted Papilloma 8 192350 -NCIT:C4118 Inverted Transitional Cell Papilloma 6 192351 -NCIT:C6192 Inverted Urothelial Papilloma 7 192352 -NCIT:C39859 Bladder Inverted Papilloma 8 192353 -NCIT:C6173 Urethral Inverted Papilloma 8 192354 -NCIT:C6174 Ureter Inverted Papilloma 8 192355 -NCIT:C6187 Renal Pelvis Inverted Papilloma 8 192356 -NCIT:C4181 Serous Surface Papilloma 5 192357 -NCIT:C7279 Ovarian Surface Papilloma 6 192358 -NCIT:C4614 Skin Papilloma 5 192359 -NCIT:C6880 Glandular Papilloma 5 192360 -NCIT:C175332 Lacrimal Drainage System Exophytic Papilloma 6 192361 -NCIT:C189336 Mullerian Papilloma 6 192362 -NCIT:C189337 Childhood Mullerian Papilloma 7 192363 -NCIT:C40215 Cervical Mullerian Papilloma 7 192364 -NCIT:C40255 Vaginal Mullerian Papilloma 7 192365 -NCIT:C4117 Sinonasal Papilloma 6 192366 -NCIT:C164251 Sinonasal Exophytic Papilloma 7 192367 -NCIT:C54347 Nasal Cavity Exophytic Papilloma 8 192368 -NCIT:C164256 Nasal Cavity Papilloma 7 192369 -NCIT:C54347 Nasal Cavity Exophytic Papilloma 8 192370 -NCIT:C8194 Nasal Cavity Inverted Papilloma 8 192371 -NCIT:C54345 Sinonasal Oncocytic Papilloma 7 192372 -NCIT:C6835 Paranasal Sinus Papilloma 7 192373 -NCIT:C6836 Ethmoid Sinus Papilloma 8 192374 -NCIT:C6843 Ethmoid Sinus Inverted Papilloma 9 192375 -NCIT:C6837 Frontal Sinus Papilloma 8 192376 -NCIT:C6842 Frontal Sinus Inverted Papilloma 9 192377 -NCIT:C6838 Sphenoid Sinus Papilloma 8 192378 -NCIT:C6841 Sphenoid Sinus Inverted Papilloma 9 192379 -NCIT:C6839 Maxillary Sinus Papilloma 8 192380 -NCIT:C6840 Maxillary Sinus Inverted Papilloma 9 192381 -NCIT:C8195 Paranasal Sinus Inverted Papilloma 8 192382 -NCIT:C6840 Maxillary Sinus Inverted Papilloma 9 192383 -NCIT:C6841 Sphenoid Sinus Inverted Papilloma 9 192384 -NCIT:C6842 Frontal Sinus Inverted Papilloma 9 192385 -NCIT:C6843 Ethmoid Sinus Inverted Papilloma 9 192386 -NCIT:C6871 Sinonasal Inverted Papilloma 7 192387 -NCIT:C115432 Recurrent Sinonasal Inverted Papilloma 8 192388 -NCIT:C8194 Nasal Cavity Inverted Papilloma 8 192389 -NCIT:C8195 Paranasal Sinus Inverted Papilloma 8 192390 -NCIT:C6840 Maxillary Sinus Inverted Papilloma 9 192391 -NCIT:C6841 Sphenoid Sinus Inverted Papilloma 9 192392 -NCIT:C6842 Frontal Sinus Inverted Papilloma 9 192393 -NCIT:C6843 Ethmoid Sinus Inverted Papilloma 9 192394 -NCIT:C45601 Bronchial Glandular Papilloma 6 192395 -NCIT:C8295 Bronchial Papilloma 5 192396 -NCIT:C45573 Lung Squamous Papilloma 6 192397 -NCIT:C45601 Bronchial Glandular Papilloma 6 192398 -NCIT:C45602 Bronchial Mixed Squamous Cell and Glandular Papilloma 6 192399 -NCIT:C8961 Fundic Gland Polyp 4 192400 -NCIT:C95470 Pancreatic Serous Adenoma 4 192401 -NCIT:C5712 Pancreatic Serous Cystadenoma 5 192402 -NCIT:C95471 Pancreatic Macrocystic Serous Cystadenoma 5 192403 -NCIT:C95475 Pancreatic Solid Serous Adenoma 5 192404 -NCIT:C95476 Von Hippel Lindau Syndrome-Associated Pancreatic Serous Adenoma 5 192405 -NCIT:C4274 Benign Phyllodes Tumor 3 192406 -NCIT:C181906 Benign Vulvar Phyllodes Tumor 4 192407 -NCIT:C5196 Benign Breast Phyllodes Tumor 4 192408 -NCIT:C5532 Benign Prostate Phyllodes Tumor 4 192409 -NCIT:C4505 Benign Breast Neoplasm 3 192410 -NCIT:C176253 Breast Nodular Fasciitis 4 192411 -NCIT:C176414 Breast Schwannoma 4 192412 -NCIT:C176415 Breast Neurofibroma 4 192413 -NCIT:C190574 Childhood Benign Breast Neoplasm 4 192414 -NCIT:C189339 Childhood Breast Fibroadenoma 5 192415 -NCIT:C4276 Juvenile Breast Fibroadenoma 6 192416 -NCIT:C9503 Juvenile Breast Papillomatosis 5 192417 -NCIT:C3848 Benign Female Breast Neoplasm 4 192418 -NCIT:C3863 Breast Intraductal Papilloma 4 192419 -NCIT:C27944 Breast Sclerosing Papilloma 5 192420 -NCIT:C36087 Breast Central Papilloma 5 192421 -NCIT:C36088 Breast Peripheral Papilloma 5 192422 -NCIT:C36089 Breast Atypical Papilloma 5 192423 -NCIT:C5201 Breast Intraductal Papillomatosis 5 192424 -NCIT:C9503 Juvenile Breast Papillomatosis 6 192425 -NCIT:C40381 Breast Angiomatosis 4 192426 -NCIT:C40382 Breast Adenoma 4 192427 -NCIT:C40383 Breast Apocrine Adenoma 5 192428 -NCIT:C40384 Breast Ductal Adenoma 5 192429 -NCIT:C40408 Breast Pleomorphic Adenoma 5 192430 -NCIT:C62210 Breast Tubular Adenoma 5 192431 -NCIT:C9473 Lactating Adenoma 6 192432 -NCIT:C40397 Breast Myofibroblastoma 4 192433 -NCIT:C40399 Breast Leiomyoma 4 192434 -NCIT:C4620 Benign Male Breast Neoplasm 4 192435 -NCIT:C4647 Breast Lipoma 4 192436 -NCIT:C176255 Breast Angiolipoma 5 192437 -NCIT:C5144 Benign Breast Adenomyoepithelioma 4 192438 -NCIT:C5193 Breast Spiradenoma 4 192439 -NCIT:C5196 Benign Breast Phyllodes Tumor 4 192440 -NCIT:C5197 Benign Nipple Neoplasm 4 192441 -NCIT:C40363 Nipple Syringomatous Tumor 5 192442 -NCIT:C4192 Nipple Adenoma 5 192443 -NCIT:C5353 Breast Hemangioma 4 192444 -NCIT:C5210 Breast Capillary Hemangioma 5 192445 -NCIT:C5211 Breast Epithelioid Hemangioma 5 192446 -NCIT:C54658 Breast Nevus 4 192447 -NCIT:C4565 Benign Thoracic Neoplasm 3 192448 -NCIT:C190620 Childhood Benign Thoracic Neoplasm 4 192449 -NCIT:C190104 Childhood Cardiac Rhabdomyoma 5 192450 -NCIT:C190621 Childhood Benign Lung Neoplasm 5 192451 -NCIT:C190105 Fetal Lung Interstitial Tumor 6 192452 -NCIT:C35750 Benign Axillary Neoplasm 4 192453 -NCIT:C35419 Axillary Lipoma 5 192454 -NCIT:C3603 Benign Pleural Neoplasm 4 192455 -NCIT:C183277 Pleural Calcifying Fibrous Tumor 5 192456 -NCIT:C4499 Pleural Adenomatoid Tumor 5 192457 -NCIT:C6644 Pleural Lipoma 5 192458 -NCIT:C3604 Benign Mediastinal Neoplasm 4 192459 -NCIT:C6445 Benign Mediastinal Germ Cell Tumor 5 192460 -NCIT:C7104 Mediastinal Mature Teratoma 6 192461 -NCIT:C6593 Benign Mediastinal Soft Tissue Neoplasm 5 192462 -NCIT:C146987 Mediastinal Hemangioma 6 192463 -NCIT:C27488 Mediastinal Lipomatosis 6 192464 -NCIT:C6595 Mediastinal Lymphangioma 6 192465 -NCIT:C6596 Mediastinal Chondroma 6 192466 -NCIT:C6598 Mediastinal Leiomyoma 6 192467 -NCIT:C6599 Mediastinal Lipoma 6 192468 -NCIT:C6600 Mediastinal Rhabdomyoma 6 192469 -NCIT:C6631 Mediastinal Neurofibroma 5 192470 -NCIT:C6632 Mediastinal Ganglioneuroma 5 192471 -NCIT:C6643 Mediastinal Schwannoma 5 192472 -NCIT:C6636 Mediastinal Psammomatous Schwannoma 6 192473 -NCIT:C3605 Benign Cardiac Neoplasm 4 192474 -NCIT:C45749 Cardiac Hemangioma 5 192475 -NCIT:C45750 Cardiac Cavernous Hemangioma 6 192476 -NCIT:C45751 Cardiac Capillary Hemangioma 6 192477 -NCIT:C45752 Cardiac Intramuscular Hemangioma 6 192478 -NCIT:C45754 Cystic Tumor of the Atrioventricular Node 5 192479 -NCIT:C4607 Benign Myocardial Neoplasm 5 192480 -NCIT:C6739 Cardiac Rhabdomyoma 6 192481 -NCIT:C190104 Childhood Cardiac Rhabdomyoma 7 192482 -NCIT:C45747 Adult Cardiac Cellular Rhabdomyoma 7 192483 -NCIT:C49179 Conventional Cardiac Rhabdomyoma 7 192484 -NCIT:C4608 Benign Endocardial Neoplasm 5 192485 -NCIT:C3695 Papillary Fibroelastoma 6 192486 -NCIT:C7748 Cardiac Myxoma 6 192487 -NCIT:C3499 Atrial Myxoma 7 192488 -NCIT:C4791 Left Atrial Myxoma 8 192489 -NCIT:C4792 Right Atrial Myxoma 8 192490 -NCIT:C45748 Ventricular Myxoma 7 192491 -NCIT:C5357 Benign Cardiac Germ Cell Tumor 5 192492 -NCIT:C5358 Cardiac Schwannoma 5 192493 -NCIT:C5359 Cardiac Neurofibroma 5 192494 -NCIT:C5389 Benign Atrial Neoplasm 5 192495 -NCIT:C3499 Atrial Myxoma 6 192496 -NCIT:C4791 Left Atrial Myxoma 7 192497 -NCIT:C4792 Right Atrial Myxoma 7 192498 -NCIT:C6741 Cardiac Lipoma 5 192499 -NCIT:C6742 Epicardial Lipoma 6 192500 -NCIT:C6947 Cardiac Fibroma 5 192501 -NCIT:C8535 Benign Epicardial Neoplasm 5 192502 -NCIT:C6742 Epicardial Lipoma 6 192503 -NCIT:C4454 Benign Lung Neoplasm 4 192504 -NCIT:C133091 Lung Adenofibroma 5 192505 -NCIT:C142784 Benign Lung PEComa 5 192506 -NCIT:C38152 Lung Clear Cell Tumor 6 192507 -NCIT:C142829 Lung Myoepithelioma 5 192508 -NCIT:C190105 Fetal Lung Interstitial Tumor 5 192509 -NCIT:C190621 Childhood Benign Lung Neoplasm 5 192510 -NCIT:C190105 Fetal Lung Interstitial Tumor 6 192511 -NCIT:C3497 Pulmonary Hamartoma 5 192512 -NCIT:C5662 Endobronchial Hamartoma 6 192513 -NCIT:C5663 Multiple Pulmonary Hamartomas 6 192514 -NCIT:C4455 Lung Adenoma 5 192515 -NCIT:C183045 Bronchiolar Adenoma/Ciliated Muconodular Papillary Tumor 6 192516 -NCIT:C3494 Lung Papillary Adenoma 6 192517 -NCIT:C4140 Alveolar Adenoma 6 192518 -NCIT:C45603 Lung Pleomorphic Adenoma 6 192519 -NCIT:C45604 Lung Mucinous Cystadenoma 6 192520 -NCIT:C5656 Sclerosing Pneumocytoma 6 192521 -NCIT:C5664 Lung Mucous Gland Adenoma 6 192522 -NCIT:C45629 Lung Chondroma 5 192523 -NCIT:C4888 Benign Lung Hilum Neoplasm 5 192524 -NCIT:C5063 Endobronchial Lipoma 5 192525 -NCIT:C5657 Lung Myolipoma 5 192526 -NCIT:C5658 Lung Fibroma 5 192527 -NCIT:C5660 Lung Leiomyoma 5 192528 -NCIT:C5661 Endobronchial Leiomyoma 6 192529 -NCIT:C8295 Bronchial Papilloma 5 192530 -NCIT:C45573 Lung Squamous Papilloma 6 192531 -NCIT:C45601 Bronchial Glandular Papilloma 6 192532 -NCIT:C45602 Bronchial Mixed Squamous Cell and Glandular Papilloma 6 192533 -NCIT:C8529 Benign Chest Wall Neoplasm 4 192534 -NCIT:C6719 Chest Wall Lipoma 5 192535 -NCIT:C8416 Benign Sternal Neoplasm 5 192536 -NCIT:C6714 Sternal Chondromyxoid Fibroma 6 192537 -NCIT:C6718 Sternal Intraosseous Schwannoma 6 192538 -NCIT:C8536 Benign Pericardial Neoplasm 4 192539 -NCIT:C147106 Benign Pericardial Germ Cell Tumor 5 192540 -NCIT:C6744 Pericardial Mature Teratoma 6 192541 -NCIT:C6743 Pericardial Leiomyoma 5 192542 -NCIT:C92187 Pericardial Adenomatoid Tumor 5 192543 -NCIT:C4780 Benign Eye Neoplasm 3 192544 -NCIT:C175223 Eye Melanocytoma 4 192545 -NCIT:C174503 Uveal Melanocytoma 5 192546 -NCIT:C175224 Visual Pathway Melanocytoma 5 192547 -NCIT:C4230 Optic Disc Melanocytoma 6 192548 -NCIT:C175307 Benign Lacrimal System Neoplasm 4 192549 -NCIT:C175318 Benign Lacrimal Drainage System Neoplasm 5 192550 -NCIT:C175332 Lacrimal Drainage System Exophytic Papilloma 6 192551 -NCIT:C175334 Lacrimal Drainage System Inverted Papilloma 6 192552 -NCIT:C3626 Benign Nasolacrimal Duct Neoplasm 6 192553 -NCIT:C3621 Benign Lacrimal Gland Neoplasm 5 192554 -NCIT:C175264 Lacrimal Gland Oncocytoma 6 192555 -NCIT:C175272 Lacrimal Gland Myoepithelioma 6 192556 -NCIT:C175291 Lacrimal Gland Warthin Tumor 6 192557 -NCIT:C4542 Lacrimal Gland Pleomorphic Adenoma 6 192558 -NCIT:C3622 Benign Conjunctival Neoplasm 4 192559 -NCIT:C133744 Pterygium 5 192560 -NCIT:C174388 Conjunctival Oncocytoma 5 192561 -NCIT:C175494 Conjunctival Stromal Tumor 5 192562 -NCIT:C175495 Conjunctival Myxoma 5 192563 -NCIT:C175497 Conjunctival Hemangioma 5 192564 -NCIT:C175498 Conjunctival Lymphangioma 5 192565 -NCIT:C4551 Conjunctival Nevus 5 192566 -NCIT:C174416 Conjunctival Junctional Nevus 6 192567 -NCIT:C174418 Conjunctival Compound Nevus 6 192568 -NCIT:C174448 Inflamed Juvenile Conjunctival Nevus 7 192569 -NCIT:C174426 Conjunctival Subepithelial Nevus 6 192570 -NCIT:C174452 Conjunctival Blue Nevus 6 192571 -NCIT:C174493 Conjunctival Spitz Nevus 6 192572 -NCIT:C6224 Conjunctival Squamous Papilloma 5 192573 -NCIT:C3623 Benign Corneal Neoplasm 4 192574 -NCIT:C3624 Benign Retinal Neoplasm 4 192575 -NCIT:C174550 Adenoma of the Retinal Pigment Epithelium 5 192576 -NCIT:C4921 Retinal Cavernous Hemangioma 5 192577 -NCIT:C66812 Retinocytoma 5 192578 -NCIT:C4354 Benign Eyelid Neoplasm 4 192579 -NCIT:C3880 Eyelid Nevus 5 192580 -NCIT:C4061 Eyelid Papilloma 5 192581 -NCIT:C4355 Eyelid Squamous Papilloma 6 192582 -NCIT:C4356 Eyelid Seborrheic Keratosis 5 192583 -NCIT:C4357 Eyelid Capillary Hemangioma 5 192584 -NCIT:C6104 Benign Uveal Neoplasm 4 192585 -NCIT:C174502 Uveal Nevus 5 192586 -NCIT:C174500 Ciliary Body Nevus 6 192587 -NCIT:C174501 Choroid Nevus 6 192588 -NCIT:C174503 Uveal Melanocytoma 6 192589 -NCIT:C4556 Iris Nevus 6 192590 -NCIT:C3625 Benign Choroid Neoplasm 5 192591 -NCIT:C174501 Choroid Nevus 6 192592 -NCIT:C188956 Choroidal Ganglioneuroma 6 192593 -NCIT:C4562 Choroid Hemangioma 6 192594 -NCIT:C4555 Benign Iris Neoplasm 5 192595 -NCIT:C4556 Iris Nevus 6 192596 -NCIT:C4779 Benign Ciliary Body Neoplasm 5 192597 -NCIT:C174500 Ciliary Body Nevus 6 192598 -NCIT:C174560 Ciliary Body Adenoma 6 192599 -NCIT:C4560 Ciliary Body Leiomyoma 6 192600 -NCIT:C66807 Ciliary Body Benign Medulloepithelioma 6 192601 -NCIT:C66809 Ciliary Body Benign Teratoid Medulloepithelioma 7 192602 -NCIT:C92182 Intraocular Schwannoma 4 192603 -NCIT:C4787 Benign Digestive System Neoplasm 3 192604 -NCIT:C190580 Childhood Benign Digestive System Neoplasm 4 192605 -NCIT:C190581 Childhood Benign Liver Neoplasm 5 192606 -NCIT:C190019 Liver Congenital Hemangioma 6 192607 -NCIT:C5751 Liver Mesenchymal Hamartoma 6 192608 -NCIT:C96840 Liver Infantile Hemangioma 6 192609 -NCIT:C190592 Benign Liver Neoplasm 4 192610 -NCIT:C190581 Childhood Benign Liver Neoplasm 5 192611 -NCIT:C190019 Liver Congenital Hemangioma 6 192612 -NCIT:C5751 Liver Mesenchymal Hamartoma 6 192613 -NCIT:C96840 Liver Infantile Hemangioma 6 192614 -NCIT:C5749 Benign Liver Non-Epithelial Neoplasm 5 192615 -NCIT:C27485 Liver Angiomyolipoma 6 192616 -NCIT:C3869 Liver Hemangioma 6 192617 -NCIT:C190019 Liver Congenital Hemangioma 7 192618 -NCIT:C96839 Liver Cavernous Hemangioma 7 192619 -NCIT:C96840 Liver Infantile Hemangioma 7 192620 -NCIT:C5750 Liver Lipoma 6 192621 -NCIT:C5752 Liver Solitary Fibrous Tumor 6 192622 -NCIT:C5753 Liver Leiomyoma 6 192623 -NCIT:C96841 Liver Lymphangioma 6 192624 -NCIT:C96842 Liver Lymphangiomatosis 6 192625 -NCIT:C96756 Benign Liver Epithelial Neoplasm 5 192626 -NCIT:C3758 Hepatocellular Adenoma 6 192627 -NCIT:C96758 HNF1alpha-Inactivated Hepatocellular Adenoma 7 192628 -NCIT:C96759 Beta-Catenin-Activated Hepatocellular Adenoma 7 192629 -NCIT:C96760 Inflammatory Hepatocellular Adenoma 7 192630 -NCIT:C172707 Beta-Catenin-Activated Inflammatory Hepatocellular Adenoma 8 192631 -NCIT:C96761 Unclassified Hepatocellular Adenoma 7 192632 -NCIT:C7126 Intrahepatic Bile Duct Adenoma 6 192633 -NCIT:C7127 Intrahepatic Bile Duct Microcystic Adenoma 7 192634 -NCIT:C96826 Biliary Adenofibroma 6 192635 -NCIT:C3598 Benign Esophageal Neoplasm 4 192636 -NCIT:C3866 Esophageal Leiomyoma 5 192637 -NCIT:C4057 Esophageal Polyp 5 192638 -NCIT:C5344 Esophageal Squamous Papilloma 6 192639 -NCIT:C5699 Giant Fibrovascular Esophageal Polyp 6 192640 -NCIT:C5701 Esophageal Lipoma 5 192641 -NCIT:C5702 Esophageal Fibroma 5 192642 -NCIT:C5703 Esophageal Schwannoma 5 192643 -NCIT:C5704 Esophageal Neurofibroma 5 192644 -NCIT:C95622 Esophageal Hemangioma 5 192645 -NCIT:C3599 Benign Gastric Neoplasm 4 192646 -NCIT:C27438 Benign Gastric Soft Tissue Neoplasm 5 192647 -NCIT:C3876 Gastric Leiomyoma 6 192648 -NCIT:C5258 Gastric Lipoma 6 192649 -NCIT:C5481 Gastric Hemangioma 6 192650 -NCIT:C5482 Gastric Lymphangioma 6 192651 -NCIT:C95895 Benign Gastric Gastrointestinal Stromal Tumor 6 192652 -NCIT:C95902 Gastric Plexiform Fibromyxoma 6 192653 -NCIT:C5260 Mature Gastric Teratoma 5 192654 -NCIT:C5483 Benign Gastric Granular Cell Tumor 5 192655 -NCIT:C7699 Gastric Adenoma 5 192656 -NCIT:C172655 Oxyntic Gland Adenoma 6 192657 -NCIT:C8961 Fundic Gland Polyp 6 192658 -NCIT:C95773 Gastric Adenoma, Intestinal-Type 6 192659 -NCIT:C7036 Gastric Tubular Adenoma 7 192660 -NCIT:C7037 Gastric Tubulovillous Adenoma 7 192661 -NCIT:C7038 Gastric Villous Adenoma 7 192662 -NCIT:C95775 Gastric Adenoma, Gastric-Type 6 192663 -NCIT:C43526 Gastric Pyloric Gland Adenoma 7 192664 -NCIT:C95779 Foveolar-Type Adenoma 7 192665 -NCIT:C95901 Gastric Schwannoma 5 192666 -NCIT:C36207 Digestive System Adenoma 4 192667 -NCIT:C2942 Bile Duct Adenoma 5 192668 -NCIT:C5857 Extrahepatic Bile Duct Adenoma 6 192669 -NCIT:C5849 Extrahepatic Bile Duct Papillary Adenoma 7 192670 -NCIT:C5850 Extrahepatic Bile Duct Tubular Adenoma 7 192671 -NCIT:C96811 Extrahepatic Bile Duct Tubulopapillary Adenoma 7 192672 -NCIT:C7126 Intrahepatic Bile Duct Adenoma 6 192673 -NCIT:C7127 Intrahepatic Bile Duct Microcystic Adenoma 7 192674 -NCIT:C3758 Hepatocellular Adenoma 5 192675 -NCIT:C96758 HNF1alpha-Inactivated Hepatocellular Adenoma 6 192676 -NCIT:C96759 Beta-Catenin-Activated Hepatocellular Adenoma 6 192677 -NCIT:C96760 Inflammatory Hepatocellular Adenoma 6 192678 -NCIT:C172707 Beta-Catenin-Activated Inflammatory Hepatocellular Adenoma 7 192679 -NCIT:C96761 Unclassified Hepatocellular Adenoma 6 192680 -NCIT:C3764 Adenomatous Polyp 5 192681 -NCIT:C164253 Gastrointestinal Tract Adenoma, Intestinal-Type 6 192682 -NCIT:C172735 Gallbladder Adenoma, Intestinal-Type 7 192683 -NCIT:C6657 Ampulla of Vater Adenoma, Intestinal-Type 7 192684 -NCIT:C27412 Ampulla of Vater Tubulovillous Adenoma 8 192685 -NCIT:C6658 Ampulla of Vater Villous Adenoma 8 192686 -NCIT:C6659 Ampulla of Vater Tubular Adenoma 8 192687 -NCIT:C95773 Gastric Adenoma, Intestinal-Type 7 192688 -NCIT:C7036 Gastric Tubular Adenoma 8 192689 -NCIT:C7037 Gastric Tubulovillous Adenoma 8 192690 -NCIT:C7038 Gastric Villous Adenoma 8 192691 -NCIT:C4135 Multiple Adenomatous Polyps 6 192692 -NCIT:C7720 Gallbladder Adenoma 6 192693 -NCIT:C172731 Gallbladder Pyloric Gland Adenoma 7 192694 -NCIT:C172735 Gallbladder Adenoma, Intestinal-Type 7 192695 -NCIT:C96478 Colorectal Adenomatous Polyp 6 192696 -NCIT:C96479 Colon Adenomatous Polyp 7 192697 -NCIT:C96480 Rectal Adenomatous Polyp 7 192698 -NCIT:C38458 Traditional Serrated Adenoma 5 192699 -NCIT:C43549 Appendix Traditional Serrated Adenoma 6 192700 -NCIT:C5674 Colorectal Traditional Serrated Adenoma 6 192701 -NCIT:C43577 Colon Traditional Serrated Adenoma 7 192702 -NCIT:C96463 Rectal Traditional Serrated Adenoma 7 192703 -NCIT:C96468 Colorectal Filiform Serrated Adenoma 7 192704 -NCIT:C96466 Digestive System Filiform Serrated Adenoma 6 192705 -NCIT:C96468 Colorectal Filiform Serrated Adenoma 7 192706 -NCIT:C4133 Tubular Adenoma 5 192707 -NCIT:C27456 Colorectal Tubular Adenoma 6 192708 -NCIT:C7041 Colon Tubular Adenoma 7 192709 -NCIT:C96477 Rectal Tubular Adenoma 7 192710 -NCIT:C43546 Appendix Tubular Adenoma 6 192711 -NCIT:C43552 Small Intestinal Tubular Adenoma 6 192712 -NCIT:C5850 Extrahepatic Bile Duct Tubular Adenoma 6 192713 -NCIT:C6659 Ampulla of Vater Tubular Adenoma 6 192714 -NCIT:C7036 Gastric Tubular Adenoma 6 192715 -NCIT:C4143 Tubulovillous Adenoma 5 192716 -NCIT:C27412 Ampulla of Vater Tubulovillous Adenoma 6 192717 -NCIT:C43547 Appendix Tubulovillous Adenoma 6 192718 -NCIT:C43553 Small Intestinal Tubulovillous Adenoma 6 192719 -NCIT:C5675 Colorectal Tubulovillous Adenoma 6 192720 -NCIT:C5496 Colon Tubulovillous Adenoma 7 192721 -NCIT:C5620 Rectal Tubulovillous Adenoma 7 192722 -NCIT:C7037 Gastric Tubulovillous Adenoma 6 192723 -NCIT:C96811 Extrahepatic Bile Duct Tubulopapillary Adenoma 6 192724 -NCIT:C43550 Appendix Adenoma 5 192725 -NCIT:C43546 Appendix Tubular Adenoma 6 192726 -NCIT:C43547 Appendix Tubulovillous Adenoma 6 192727 -NCIT:C43549 Appendix Traditional Serrated Adenoma 6 192728 -NCIT:C5510 Appendix Mucinous Cystadenoma 6 192729 -NCIT:C5512 Appendix Villous Adenoma 6 192730 -NCIT:C96415 Appendix Serrated Lesions and Polyps 6 192731 -NCIT:C5340 Small Intestinal Adenoma 5 192732 -NCIT:C43551 Small Intestinal Villous Adenoma 6 192733 -NCIT:C5338 Duodenal Villous Adenoma 7 192734 -NCIT:C43552 Small Intestinal Tubular Adenoma 6 192735 -NCIT:C43553 Small Intestinal Tubulovillous Adenoma 6 192736 -NCIT:C4932 Duodenal Adenoma 6 192737 -NCIT:C5338 Duodenal Villous Adenoma 7 192738 -NCIT:C5673 Colorectal Adenoma 5 192739 -NCIT:C172680 Colorectal Conventional Adenoma 6 192740 -NCIT:C172682 Colon Conventional Adenoma 7 192741 -NCIT:C3495 Colon Villous Adenoma 8 192742 -NCIT:C5520 Cecum Villous Adenoma 9 192743 -NCIT:C5496 Colon Tubulovillous Adenoma 8 192744 -NCIT:C7041 Colon Tubular Adenoma 8 192745 -NCIT:C172683 Rectal Conventional Adenoma 7 192746 -NCIT:C4919 Rectal Villous Adenoma 8 192747 -NCIT:C5620 Rectal Tubulovillous Adenoma 8 192748 -NCIT:C96477 Rectal Tubular Adenoma 8 192749 -NCIT:C27456 Colorectal Tubular Adenoma 7 192750 -NCIT:C7041 Colon Tubular Adenoma 8 192751 -NCIT:C96477 Rectal Tubular Adenoma 8 192752 -NCIT:C5675 Colorectal Tubulovillous Adenoma 7 192753 -NCIT:C5496 Colon Tubulovillous Adenoma 8 192754 -NCIT:C5620 Rectal Tubulovillous Adenoma 8 192755 -NCIT:C5676 Colorectal Villous Adenoma 7 192756 -NCIT:C3495 Colon Villous Adenoma 8 192757 -NCIT:C5520 Cecum Villous Adenoma 9 192758 -NCIT:C4919 Rectal Villous Adenoma 8 192759 -NCIT:C27457 Colorectal Adenoma with Moderate Dysplasia 6 192760 -NCIT:C27458 Colorectal Adenoma with Mild Dysplasia 6 192761 -NCIT:C3864 Colon Adenoma 6 192762 -NCIT:C128171 Colon Adenoma with Severe Dysplasia 7 192763 -NCIT:C172682 Colon Conventional Adenoma 7 192764 -NCIT:C3495 Colon Villous Adenoma 8 192765 -NCIT:C5520 Cecum Villous Adenoma 9 192766 -NCIT:C5496 Colon Tubulovillous Adenoma 8 192767 -NCIT:C7041 Colon Tubular Adenoma 8 192768 -NCIT:C43577 Colon Traditional Serrated Adenoma 7 192769 -NCIT:C96464 Colon Serrated Lesions and Polyps 7 192770 -NCIT:C96479 Colon Adenomatous Polyp 7 192771 -NCIT:C5546 Rectal Adenoma 6 192772 -NCIT:C172683 Rectal Conventional Adenoma 7 192773 -NCIT:C4919 Rectal Villous Adenoma 8 192774 -NCIT:C5620 Rectal Tubulovillous Adenoma 8 192775 -NCIT:C96477 Rectal Tubular Adenoma 8 192776 -NCIT:C5621 Rectal Adenoma with Severe Dysplasia 7 192777 -NCIT:C96463 Rectal Traditional Serrated Adenoma 7 192778 -NCIT:C96465 Rectal Serrated Lesions and Polyps 7 192779 -NCIT:C96480 Rectal Adenomatous Polyp 7 192780 -NCIT:C5674 Colorectal Traditional Serrated Adenoma 6 192781 -NCIT:C43577 Colon Traditional Serrated Adenoma 7 192782 -NCIT:C96463 Rectal Traditional Serrated Adenoma 7 192783 -NCIT:C96468 Colorectal Filiform Serrated Adenoma 7 192784 -NCIT:C5685 Colorectal Adenoma with Severe Dysplasia 6 192785 -NCIT:C128171 Colon Adenoma with Severe Dysplasia 7 192786 -NCIT:C5621 Rectal Adenoma with Severe Dysplasia 7 192787 -NCIT:C83176 Colorectal Serrated Lesions and Polyps 6 192788 -NCIT:C96464 Colon Serrated Lesions and Polyps 7 192789 -NCIT:C96465 Rectal Serrated Lesions and Polyps 7 192790 -NCIT:C96478 Colorectal Adenomatous Polyp 6 192791 -NCIT:C96479 Colon Adenomatous Polyp 7 192792 -NCIT:C96480 Rectal Adenomatous Polyp 7 192793 -NCIT:C65193 Flat Adenoma 5 192794 -NCIT:C7399 Villous Adenoma 5 192795 -NCIT:C43551 Small Intestinal Villous Adenoma 6 192796 -NCIT:C5338 Duodenal Villous Adenoma 7 192797 -NCIT:C5512 Appendix Villous Adenoma 6 192798 -NCIT:C5676 Colorectal Villous Adenoma 6 192799 -NCIT:C3495 Colon Villous Adenoma 7 192800 -NCIT:C5520 Cecum Villous Adenoma 8 192801 -NCIT:C4919 Rectal Villous Adenoma 7 192802 -NCIT:C6658 Ampulla of Vater Villous Adenoma 6 192803 -NCIT:C7038 Gastric Villous Adenoma 6 192804 -NCIT:C7699 Gastric Adenoma 5 192805 -NCIT:C172655 Oxyntic Gland Adenoma 6 192806 -NCIT:C8961 Fundic Gland Polyp 6 192807 -NCIT:C95773 Gastric Adenoma, Intestinal-Type 6 192808 -NCIT:C7036 Gastric Tubular Adenoma 7 192809 -NCIT:C7037 Gastric Tubulovillous Adenoma 7 192810 -NCIT:C7038 Gastric Villous Adenoma 7 192811 -NCIT:C95775 Gastric Adenoma, Gastric-Type 6 192812 -NCIT:C43526 Gastric Pyloric Gland Adenoma 7 192813 -NCIT:C95779 Foveolar-Type Adenoma 7 192814 -NCIT:C96414 Serrated Lesions and Polyps 5 192815 -NCIT:C83176 Colorectal Serrated Lesions and Polyps 6 192816 -NCIT:C96464 Colon Serrated Lesions and Polyps 7 192817 -NCIT:C96465 Rectal Serrated Lesions and Polyps 7 192818 -NCIT:C96415 Appendix Serrated Lesions and Polyps 6 192819 -NCIT:C4440 Gallbladder Benign Neoplasm 4 192820 -NCIT:C7129 Gallbladder Benign Non-Epithelial Neoplasm 5 192821 -NCIT:C5746 Gallbladder Neurofibroma 6 192822 -NCIT:C5747 Gallbladder Leiomyoma 6 192823 -NCIT:C5835 Gallbladder Lipoma 6 192824 -NCIT:C7131 Gallbladder Benign Granular Cell Tumor 6 192825 -NCIT:C7720 Gallbladder Adenoma 5 192826 -NCIT:C172731 Gallbladder Pyloric Gland Adenoma 6 192827 -NCIT:C172735 Gallbladder Adenoma, Intestinal-Type 6 192828 -NCIT:C4609 Benign Intestinal Neoplasm 4 192829 -NCIT:C3600 Benign Small Intestinal Neoplasm 5 192830 -NCIT:C4775 Benign Duodenal Neoplasm 6 192831 -NCIT:C170725 Benign Periampullary Neoplasm 7 192832 -NCIT:C4932 Duodenal Adenoma 7 192833 -NCIT:C5338 Duodenal Villous Adenoma 8 192834 -NCIT:C5339 Small Intestinal Lipoma 6 192835 -NCIT:C5340 Small Intestinal Adenoma 6 192836 -NCIT:C43551 Small Intestinal Villous Adenoma 7 192837 -NCIT:C5338 Duodenal Villous Adenoma 8 192838 -NCIT:C43552 Small Intestinal Tubular Adenoma 7 192839 -NCIT:C43553 Small Intestinal Tubulovillous Adenoma 7 192840 -NCIT:C4932 Duodenal Adenoma 7 192841 -NCIT:C5338 Duodenal Villous Adenoma 8 192842 -NCIT:C7725 Small Intestinal Leiomyoma 6 192843 -NCIT:C4610 Benign Colorectal Neoplasm 5 192844 -NCIT:C2894 Benign Colon Neoplasm 6 192845 -NCIT:C3864 Colon Adenoma 7 192846 -NCIT:C128171 Colon Adenoma with Severe Dysplasia 8 192847 -NCIT:C172682 Colon Conventional Adenoma 8 192848 -NCIT:C3495 Colon Villous Adenoma 9 192849 -NCIT:C5520 Cecum Villous Adenoma 10 192850 -NCIT:C5496 Colon Tubulovillous Adenoma 9 192851 -NCIT:C7041 Colon Tubular Adenoma 9 192852 -NCIT:C43577 Colon Traditional Serrated Adenoma 8 192853 -NCIT:C96464 Colon Serrated Lesions and Polyps 8 192854 -NCIT:C96479 Colon Adenomatous Polyp 8 192855 -NCIT:C4772 Benign Cecum Neoplasm 7 192856 -NCIT:C5520 Cecum Villous Adenoma 8 192857 -NCIT:C5395 Colon Cavernous Hemangioma 7 192858 -NCIT:C5492 Colon Leiomyoma 7 192859 -NCIT:C5493 Colon Lipoma 7 192860 -NCIT:C5500 Colon Lymphangioma 7 192861 -NCIT:C7042 Colon Ganglioneuroma 7 192862 -NCIT:C4774 Benign Rectal Neoplasm 6 192863 -NCIT:C5546 Rectal Adenoma 7 192864 -NCIT:C172683 Rectal Conventional Adenoma 8 192865 -NCIT:C4919 Rectal Villous Adenoma 9 192866 -NCIT:C5620 Rectal Tubulovillous Adenoma 9 192867 -NCIT:C96477 Rectal Tubular Adenoma 9 192868 -NCIT:C5621 Rectal Adenoma with Severe Dysplasia 8 192869 -NCIT:C96463 Rectal Traditional Serrated Adenoma 8 192870 -NCIT:C96465 Rectal Serrated Lesions and Polyps 8 192871 -NCIT:C96480 Rectal Adenomatous Polyp 8 192872 -NCIT:C5551 Rectal Lipoma 7 192873 -NCIT:C5552 Rectal Leiomyoma 7 192874 -NCIT:C5673 Colorectal Adenoma 6 192875 -NCIT:C172680 Colorectal Conventional Adenoma 7 192876 -NCIT:C172682 Colon Conventional Adenoma 8 192877 -NCIT:C3495 Colon Villous Adenoma 9 192878 -NCIT:C5520 Cecum Villous Adenoma 10 192879 -NCIT:C5496 Colon Tubulovillous Adenoma 9 192880 -NCIT:C7041 Colon Tubular Adenoma 9 192881 -NCIT:C172683 Rectal Conventional Adenoma 8 192882 -NCIT:C4919 Rectal Villous Adenoma 9 192883 -NCIT:C5620 Rectal Tubulovillous Adenoma 9 192884 -NCIT:C96477 Rectal Tubular Adenoma 9 192885 -NCIT:C27456 Colorectal Tubular Adenoma 8 192886 -NCIT:C7041 Colon Tubular Adenoma 9 192887 -NCIT:C96477 Rectal Tubular Adenoma 9 192888 -NCIT:C5675 Colorectal Tubulovillous Adenoma 8 192889 -NCIT:C5496 Colon Tubulovillous Adenoma 9 192890 -NCIT:C5620 Rectal Tubulovillous Adenoma 9 192891 -NCIT:C5676 Colorectal Villous Adenoma 8 192892 -NCIT:C3495 Colon Villous Adenoma 9 192893 -NCIT:C5520 Cecum Villous Adenoma 10 192894 -NCIT:C4919 Rectal Villous Adenoma 9 192895 -NCIT:C27457 Colorectal Adenoma with Moderate Dysplasia 7 192896 -NCIT:C27458 Colorectal Adenoma with Mild Dysplasia 7 192897 -NCIT:C3864 Colon Adenoma 7 192898 -NCIT:C128171 Colon Adenoma with Severe Dysplasia 8 192899 -NCIT:C172682 Colon Conventional Adenoma 8 192900 -NCIT:C3495 Colon Villous Adenoma 9 192901 -NCIT:C5520 Cecum Villous Adenoma 10 192902 -NCIT:C5496 Colon Tubulovillous Adenoma 9 192903 -NCIT:C7041 Colon Tubular Adenoma 9 192904 -NCIT:C43577 Colon Traditional Serrated Adenoma 8 192905 -NCIT:C96464 Colon Serrated Lesions and Polyps 8 192906 -NCIT:C96479 Colon Adenomatous Polyp 8 192907 -NCIT:C5546 Rectal Adenoma 7 192908 -NCIT:C172683 Rectal Conventional Adenoma 8 192909 -NCIT:C4919 Rectal Villous Adenoma 9 192910 -NCIT:C5620 Rectal Tubulovillous Adenoma 9 192911 -NCIT:C96477 Rectal Tubular Adenoma 9 192912 -NCIT:C5621 Rectal Adenoma with Severe Dysplasia 8 192913 -NCIT:C96463 Rectal Traditional Serrated Adenoma 8 192914 -NCIT:C96465 Rectal Serrated Lesions and Polyps 8 192915 -NCIT:C96480 Rectal Adenomatous Polyp 8 192916 -NCIT:C5674 Colorectal Traditional Serrated Adenoma 7 192917 -NCIT:C43577 Colon Traditional Serrated Adenoma 8 192918 -NCIT:C96463 Rectal Traditional Serrated Adenoma 8 192919 -NCIT:C96468 Colorectal Filiform Serrated Adenoma 8 192920 -NCIT:C5685 Colorectal Adenoma with Severe Dysplasia 7 192921 -NCIT:C128171 Colon Adenoma with Severe Dysplasia 8 192922 -NCIT:C5621 Rectal Adenoma with Severe Dysplasia 8 192923 -NCIT:C83176 Colorectal Serrated Lesions and Polyps 7 192924 -NCIT:C96464 Colon Serrated Lesions and Polyps 8 192925 -NCIT:C96465 Rectal Serrated Lesions and Polyps 8 192926 -NCIT:C96478 Colorectal Adenomatous Polyp 7 192927 -NCIT:C96479 Colon Adenomatous Polyp 8 192928 -NCIT:C96480 Rectal Adenomatous Polyp 8 192929 -NCIT:C5677 Colorectal Leiomyoma 6 192930 -NCIT:C5492 Colon Leiomyoma 7 192931 -NCIT:C5552 Rectal Leiomyoma 7 192932 -NCIT:C5678 Colorectal Lipoma 6 192933 -NCIT:C5493 Colon Lipoma 7 192934 -NCIT:C5551 Rectal Lipoma 7 192935 -NCIT:C96512 Colorectal Schwannoma 6 192936 -NCIT:C96513 Colorectal Perineurioma 6 192937 -NCIT:C96514 Colorectal Ganglioneuroma 6 192938 -NCIT:C7042 Colon Ganglioneuroma 7 192939 -NCIT:C96516 Colorectal Benign Granular Cell Tumor 6 192940 -NCIT:C4611 Benign Anal Neoplasm 4 192941 -NCIT:C139546 Anal Fibroadenoma 5 192942 -NCIT:C5607 Benign Anal Granular Cell Tumor 5 192943 -NCIT:C5608 Anal Leiomyoma 5 192944 -NCIT:C96554 Anal Canal Squamous Papilloma 5 192945 -NCIT:C96699 Anal Hidradenoma Papilliferum 5 192946 -NCIT:C4612 Benign Pancreatic Neoplasm 4 192947 -NCIT:C4613 Benign Exocrine Pancreas Neoplasm 5 192948 -NCIT:C4374 Pancreatic Cystadenoma 6 192949 -NCIT:C5712 Pancreatic Serous Cystadenoma 7 192950 -NCIT:C95471 Pancreatic Macrocystic Serous Cystadenoma 7 192951 -NCIT:C95470 Pancreatic Serous Adenoma 6 192952 -NCIT:C5712 Pancreatic Serous Cystadenoma 7 192953 -NCIT:C95471 Pancreatic Macrocystic Serous Cystadenoma 7 192954 -NCIT:C95475 Pancreatic Solid Serous Adenoma 7 192955 -NCIT:C95476 Von Hippel Lindau Syndrome-Associated Pancreatic Serous Adenoma 7 192956 -NCIT:C95559 Pancreatic Mature Teratoma 5 192957 -NCIT:C4773 Benign Appendix Neoplasm 4 192958 -NCIT:C43550 Appendix Adenoma 5 192959 -NCIT:C43546 Appendix Tubular Adenoma 6 192960 -NCIT:C43547 Appendix Tubulovillous Adenoma 6 192961 -NCIT:C43549 Appendix Traditional Serrated Adenoma 6 192962 -NCIT:C5510 Appendix Mucinous Cystadenoma 6 192963 -NCIT:C5512 Appendix Villous Adenoma 6 192964 -NCIT:C96415 Appendix Serrated Lesions and Polyps 6 192965 -NCIT:C43576 Appendix Lipoma 5 192966 -NCIT:C5514 Appendix Leiomyoma 5 192967 -NCIT:C4776 Benign Extrahepatic Bile Duct Neoplasm 4 192968 -NCIT:C5857 Extrahepatic Bile Duct Adenoma 5 192969 -NCIT:C5849 Extrahepatic Bile Duct Papillary Adenoma 6 192970 -NCIT:C5850 Extrahepatic Bile Duct Tubular Adenoma 6 192971 -NCIT:C96811 Extrahepatic Bile Duct Tubulopapillary Adenoma 6 192972 -NCIT:C7128 Benign Extrahepatic Bile Duct Non-Epithelial Neoplasm 5 192973 -NCIT:C5852 Extrahepatic Bile Duct Benign Granular Cell Tumor 6 192974 -NCIT:C5856 Benign Extrahepatic Bile Duct Soft Tissue Neoplasm 6 192975 -NCIT:C5853 Extrahepatic Bile Duct Fibroma 7 192976 -NCIT:C5854 Extrahepatic Bile Duct Lipoma 7 192977 -NCIT:C5855 Extrahepatic Bile Duct Leiomyoma 7 192978 -NCIT:C7741 Digestive System Hemangioma 4 192979 -NCIT:C3869 Liver Hemangioma 5 192980 -NCIT:C190019 Liver Congenital Hemangioma 6 192981 -NCIT:C96839 Liver Cavernous Hemangioma 6 192982 -NCIT:C96840 Liver Infantile Hemangioma 6 192983 -NCIT:C5395 Colon Cavernous Hemangioma 5 192984 -NCIT:C5481 Gastric Hemangioma 5 192985 -NCIT:C95622 Esophageal Hemangioma 5 192986 -NCIT:C4789 Benign Nervous System Neoplasm 3 192987 -NCIT:C121681 Solitary Circumscribed Neuroma 4 192988 -NCIT:C121686 Hybrid Nerve Sheath Tumor 4 192989 -NCIT:C188049 Benign Central Nervous System Neoplasm 4 192990 -NCIT:C3627 Benign Spinal Cord Neoplasm 5 192991 -NCIT:C4619 Spinal Cord Lipoma 6 192992 -NCIT:C5145 Spinal Cord Neurofibroma 6 192993 -NCIT:C6808 Dermoid Cyst of the Spinal Cord 6 192994 -NCIT:C4957 Benign Neoplasm of the Meninges 5 192995 -NCIT:C4055 Benign Meningioma 6 192996 -NCIT:C5133 Benign Intracranial Meningioma 7 192997 -NCIT:C5111 Benign Intracranial Neoplasm 5 192998 -NCIT:C129549 Intracranial Fibrous Histiocytoma 6 192999 -NCIT:C155793 Benign Skull Base Neoplasm 6 193000 -NCIT:C155768 Sellar Neurocytoma 7 193001 -NCIT:C155780 Sellar Schwannoma 7 193002 -NCIT:C155808 Sellar Mature Teratoma 7 193003 -NCIT:C2964 Craniopharyngioma 7 193004 -NCIT:C148076 Unresectable Craniopharyngioma 8 193005 -NCIT:C148077 Recurrent Craniopharyngioma 8 193006 -NCIT:C162612 Recurrent Adamantinomatous Craniopharyngioma 9 193007 -NCIT:C4010 Adult Craniopharyngioma 8 193008 -NCIT:C188949 Adult Adamantinomatous Craniopharyngioma 9 193009 -NCIT:C4725 Papillary Craniopharyngioma 8 193010 -NCIT:C4726 Adamantinomatous Craniopharyngioma 8 193011 -NCIT:C162612 Recurrent Adamantinomatous Craniopharyngioma 9 193012 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 9 193013 -NCIT:C188949 Adult Adamantinomatous Craniopharyngioma 9 193014 -NCIT:C7816 Childhood Craniopharyngioma 8 193015 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 9 193016 -NCIT:C4782 Benign Pituitary Gland Neoplasm 7 193017 -NCIT:C3633 Intracranial Hemangioma 6 193018 -NCIT:C5432 Intracranial Cavernous Hemangioma 7 193019 -NCIT:C7739 Brain Hemangioma 7 193020 -NCIT:C5433 Cerebral Hemangioma 8 193021 -NCIT:C4781 Benign Brain Neoplasm 6 193022 -NCIT:C2964 Craniopharyngioma 7 193023 -NCIT:C148076 Unresectable Craniopharyngioma 8 193024 -NCIT:C148077 Recurrent Craniopharyngioma 8 193025 -NCIT:C162612 Recurrent Adamantinomatous Craniopharyngioma 9 193026 -NCIT:C4010 Adult Craniopharyngioma 8 193027 -NCIT:C188949 Adult Adamantinomatous Craniopharyngioma 9 193028 -NCIT:C4725 Papillary Craniopharyngioma 8 193029 -NCIT:C4726 Adamantinomatous Craniopharyngioma 8 193030 -NCIT:C162612 Recurrent Adamantinomatous Craniopharyngioma 9 193031 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 9 193032 -NCIT:C188949 Adult Adamantinomatous Craniopharyngioma 9 193033 -NCIT:C7816 Childhood Craniopharyngioma 8 193034 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 9 193035 -NCIT:C4963 Benign Supratentorial Neoplasm 7 193036 -NCIT:C3631 Benign Pineal Region Neoplasm 8 193037 -NCIT:C6754 Pineal Region Mature Teratoma 9 193038 -NCIT:C6966 Pineocytoma 9 193039 -NCIT:C8291 Adult Pineocytoma 10 193040 -NCIT:C4782 Benign Pituitary Gland Neoplasm 8 193041 -NCIT:C5127 Benign Diencephalic Neoplasm 8 193042 -NCIT:C6222 Benign Thalamic Neoplasm 9 193043 -NCIT:C5799 Childhood Benign Supratentorial Neoplasm 8 193044 -NCIT:C5800 Childhood Choroid Plexus Papilloma 9 193045 -NCIT:C6219 Childhood Benign Cerebral Neoplasm 9 193046 -NCIT:C8548 Benign Cerebral Neoplasm 8 193047 -NCIT:C5433 Cerebral Hemangioma 9 193048 -NCIT:C6218 Adult Benign Cerebral Neoplasm 9 193049 -NCIT:C6219 Childhood Benign Cerebral Neoplasm 9 193050 -NCIT:C6220 Cerebral Hemisphere Lipoma 9 193051 -NCIT:C5438 Corpus Callosum Lipoma 10 193052 -NCIT:C4965 Benign Infratentorial Neoplasm 7 193053 -NCIT:C4955 Benign Cerebellar Neoplasm 8 193054 -NCIT:C5796 Adult Benign Cerebellar Neoplasm 9 193055 -NCIT:C6809 Cerebellar Pilocytic Astrocytoma 9 193056 -NCIT:C5413 Cerebellopontine Angle Schwannoma 8 193057 -NCIT:C8549 Benign Brain Stem Neoplasm 8 193058 -NCIT:C5797 Adult Benign Brain Stem Neoplasm 9 193059 -NCIT:C5116 Adult Benign Brain Neoplasm 7 193060 -NCIT:C4010 Adult Craniopharyngioma 8 193061 -NCIT:C188949 Adult Adamantinomatous Craniopharyngioma 9 193062 -NCIT:C5796 Adult Benign Cerebellar Neoplasm 8 193063 -NCIT:C5797 Adult Benign Brain Stem Neoplasm 8 193064 -NCIT:C6218 Adult Benign Cerebral Neoplasm 8 193065 -NCIT:C8291 Adult Pineocytoma 8 193066 -NCIT:C5798 Childhood Benign Brain Neoplasm 7 193067 -NCIT:C5799 Childhood Benign Supratentorial Neoplasm 8 193068 -NCIT:C5800 Childhood Choroid Plexus Papilloma 9 193069 -NCIT:C6219 Childhood Benign Cerebral Neoplasm 9 193070 -NCIT:C7816 Childhood Craniopharyngioma 8 193071 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 9 193072 -NCIT:C7739 Brain Hemangioma 7 193073 -NCIT:C5433 Cerebral Hemangioma 8 193074 -NCIT:C8405 Benign Choroid Plexus Neoplasm 7 193075 -NCIT:C3698 Choroid Plexus Papilloma 8 193076 -NCIT:C5800 Childhood Choroid Plexus Papilloma 9 193077 -NCIT:C5133 Benign Intracranial Meningioma 6 193078 -NCIT:C5444 Intracranial Lipoma 6 193079 -NCIT:C5452 Inner Ear Lipoma 7 193080 -NCIT:C6220 Cerebral Hemisphere Lipoma 7 193081 -NCIT:C5438 Corpus Callosum Lipoma 8 193082 -NCIT:C5591 Childhood Benign Central Nervous System Neoplasm 5 193083 -NCIT:C27404 Childhood Central Nervous System Mature Teratoma 6 193084 -NCIT:C5798 Childhood Benign Brain Neoplasm 6 193085 -NCIT:C5799 Childhood Benign Supratentorial Neoplasm 7 193086 -NCIT:C5800 Childhood Choroid Plexus Papilloma 8 193087 -NCIT:C6219 Childhood Benign Cerebral Neoplasm 8 193088 -NCIT:C7816 Childhood Craniopharyngioma 7 193089 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 8 193090 -NCIT:C6757 Benign Central Nervous System Mesenchymal, Non-Meningothelial Neoplasm 5 193091 -NCIT:C129549 Intracranial Fibrous Histiocytoma 6 193092 -NCIT:C129551 Central Nervous System Myofibroblastoma 6 193093 -NCIT:C5451 Central Nervous System Lipoma 6 193094 -NCIT:C129538 Central Nervous System Angiolipoma 7 193095 -NCIT:C5424 Epidural Spinal Canal Angiolipoma 8 193096 -NCIT:C4619 Spinal Cord Lipoma 7 193097 -NCIT:C5444 Intracranial Lipoma 7 193098 -NCIT:C5452 Inner Ear Lipoma 8 193099 -NCIT:C6220 Cerebral Hemisphere Lipoma 8 193100 -NCIT:C5438 Corpus Callosum Lipoma 9 193101 -NCIT:C6997 Central Nervous System Hibernoma 7 193102 -NCIT:C6998 Central Nervous System Leiomyoma 6 193103 -NCIT:C7000 Central Nervous System Rhabdomyoma 6 193104 -NCIT:C7001 Central Nervous System Chondroma 6 193105 -NCIT:C7004 Central Nervous System Hemangioma 6 193106 -NCIT:C84621 Central Nervous System Cavernous Hemangioma 7 193107 -NCIT:C5432 Intracranial Cavernous Hemangioma 8 193108 -NCIT:C7013 Central Nervous System Mature Teratoma 5 193109 -NCIT:C155808 Sellar Mature Teratoma 6 193110 -NCIT:C27400 Adult Central Nervous System Mature Teratoma 6 193111 -NCIT:C27404 Childhood Central Nervous System Mature Teratoma 6 193112 -NCIT:C5508 Central Nervous System Dermoid Cyst 6 193113 -NCIT:C6808 Dermoid Cyst of the Spinal Cord 7 193114 -NCIT:C6754 Pineal Region Mature Teratoma 6 193115 -NCIT:C190622 Childhood Benign Nervous System Neoplasm 4 193116 -NCIT:C188946 Childhood Ganglioneuroma 5 193117 -NCIT:C188992 Childhood Schwannoma 5 193118 -NCIT:C188995 Childhood Neurofibroma 5 193119 -NCIT:C188997 Childhood Perineurioma 5 193120 -NCIT:C5591 Childhood Benign Central Nervous System Neoplasm 5 193121 -NCIT:C27404 Childhood Central Nervous System Mature Teratoma 6 193122 -NCIT:C5798 Childhood Benign Brain Neoplasm 6 193123 -NCIT:C5799 Childhood Benign Supratentorial Neoplasm 7 193124 -NCIT:C5800 Childhood Choroid Plexus Papilloma 8 193125 -NCIT:C6219 Childhood Benign Cerebral Neoplasm 8 193126 -NCIT:C7816 Childhood Craniopharyngioma 7 193127 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 8 193128 -NCIT:C27507 Hemangioma of Peripheral Nerve 4 193129 -NCIT:C3049 Ganglioneuroma 4 193130 -NCIT:C188946 Childhood Ganglioneuroma 5 193131 -NCIT:C188947 Adult Ganglioneuroma 5 193132 -NCIT:C188956 Choroidal Ganglioneuroma 5 193133 -NCIT:C42064 Maturing Ganglioneuroma 5 193134 -NCIT:C42065 Mature Ganglioneuroma 5 193135 -NCIT:C4481 Cutaneous Ganglioneuroma 5 193136 -NCIT:C5427 Retroperitoneal Ganglioneuroma 5 193137 -NCIT:C157245 Adrenal Gland Ganglioneuroma 6 193138 -NCIT:C6632 Mediastinal Ganglioneuroma 5 193139 -NCIT:C66804 Ganglioneuromatosis 5 193140 -NCIT:C96514 Colorectal Ganglioneuroma 5 193141 -NCIT:C7042 Colon Ganglioneuroma 6 193142 -NCIT:C3252 Benign Granular Cell Tumor 4 193143 -NCIT:C5483 Benign Gastric Granular Cell Tumor 5 193144 -NCIT:C5502 Benign Peripheral Nerve Granular Cell Tumor 5 193145 -NCIT:C5607 Benign Anal Granular Cell Tumor 5 193146 -NCIT:C5852 Extrahepatic Bile Duct Benign Granular Cell Tumor 5 193147 -NCIT:C7131 Gallbladder Benign Granular Cell Tumor 5 193148 -NCIT:C7605 Oral Cavity Benign Granular Cell Tumor 5 193149 -NCIT:C6210 Soft Palate Benign Granular Cell Tumor 6 193150 -NCIT:C96516 Colorectal Benign Granular Cell Tumor 5 193151 -NCIT:C3269 Schwannoma 4 193152 -NCIT:C121677 Conventional Schwannoma 5 193153 -NCIT:C155780 Sellar Schwannoma 5 193154 -NCIT:C173143 Sinonasal Schwannoma 5 193155 -NCIT:C178245 Epithelioid Schwannoma 5 193156 -NCIT:C182029 Recurrent Schwannoma 5 193157 -NCIT:C188213 Schwannoma of the Seventh Cranial Nerve 5 193158 -NCIT:C188992 Childhood Schwannoma 5 193159 -NCIT:C3276 Vestibular Schwannoma 5 193160 -NCIT:C41430 Peripheral Nerve Schwannoma 5 193161 -NCIT:C156340 Thyroid Gland Schwannoma 6 193162 -NCIT:C156944 Adrenal Gland Schwannoma 6 193163 -NCIT:C159221 Kidney Schwannoma 6 193164 -NCIT:C162502 Paratesticular Schwannoma 6 193165 -NCIT:C161639 Seminal Vesicle Schwannoma 7 193166 -NCIT:C162586 Penile Schwannoma 6 193167 -NCIT:C176414 Breast Schwannoma 6 193168 -NCIT:C27476 Bone Schwannoma 6 193169 -NCIT:C5323 Jugular Foramen Schwannoma 6 193170 -NCIT:C5358 Cardiac Schwannoma 6 193171 -NCIT:C5418 Pleural Schwannoma 6 193172 -NCIT:C5421 Sympathetic Schwannoma 6 193173 -NCIT:C5569 Cutaneous Schwannoma 6 193174 -NCIT:C5703 Esophageal Schwannoma 6 193175 -NCIT:C6162 Ureter Schwannoma 6 193176 -NCIT:C6643 Mediastinal Schwannoma 6 193177 -NCIT:C6636 Mediastinal Psammomatous Schwannoma 7 193178 -NCIT:C6718 Sternal Intraosseous Schwannoma 6 193179 -NCIT:C92182 Intraocular Schwannoma 6 193180 -NCIT:C95901 Gastric Schwannoma 6 193181 -NCIT:C96512 Colorectal Schwannoma 6 193182 -NCIT:C4655 Trigeminal Schwannoma 5 193183 -NCIT:C4724 Cellular Schwannoma 5 193184 -NCIT:C5321 Microcystic/Reticular Schwannoma 5 193185 -NCIT:C5413 Cerebellopontine Angle Schwannoma 5 193186 -NCIT:C5434 Schwannoma of the Twelfth Cranial Nerve 5 193187 -NCIT:C6556 Ancient Schwannoma 5 193188 -NCIT:C6557 Schwannomatosis 5 193189 -NCIT:C186703 SMARCB1 Schwannomatosis 1 6 193190 -NCIT:C186704 LZTR1 Schwannomatosis 2 6 193191 -NCIT:C6969 Plexiform Schwannoma 5 193192 -NCIT:C3272 Neurofibroma 4 193193 -NCIT:C128451 Cutaneous Neurofibroma 5 193194 -NCIT:C159682 Bladder Neurofibroma 5 193195 -NCIT:C162587 Penile Neurofibroma 5 193196 -NCIT:C173144 Sinonasal Neurofibroma 5 193197 -NCIT:C176415 Breast Neurofibroma 5 193198 -NCIT:C188995 Childhood Neurofibroma 5 193199 -NCIT:C3797 Plexiform Neurofibroma 5 193200 -NCIT:C179423 Unresectable Plexiform Neurofibroma 6 193201 -NCIT:C41426 Neurofibroma with Atypia 5 193202 -NCIT:C41427 Cellular Neurofibroma 5 193203 -NCIT:C4328 Pacinian Neurofibroma 5 193204 -NCIT:C5145 Spinal Cord Neurofibroma 5 193205 -NCIT:C5359 Cardiac Neurofibroma 5 193206 -NCIT:C5704 Esophageal Neurofibroma 5 193207 -NCIT:C5746 Gallbladder Neurofibroma 5 193208 -NCIT:C6558 Epithelioid Neurofibroma 5 193209 -NCIT:C6631 Mediastinal Neurofibroma 5 193210 -NCIT:C66841 Melanotic Neurofibroma 5 193211 -NCIT:C8426 Diffuse Neurofibroma 5 193212 -NCIT:C4973 Perineurioma 4 193213 -NCIT:C172621 Cutaneous Perineurioma 5 193214 -NCIT:C188997 Childhood Perineurioma 5 193215 -NCIT:C6911 Intraneural Perineurioma 5 193216 -NCIT:C6912 Soft Tissue Perineurioma 5 193217 -NCIT:C96513 Colorectal Perineurioma 6 193218 -NCIT:C5431 Lipomatosis of Nerve 4 193219 -NCIT:C7018 Nerve Sheath Myxoma 4 193220 -NCIT:C121680 Dermal Nerve Sheath Myxoma 5 193221 -NCIT:C156278 Cellular Nerve Sheath Myxoma 5 193222 -NCIT:C4902 Benign Splenic Neoplasm 3 193223 -NCIT:C8541 Splenic Hemangioma 4 193224 -NCIT:C53684 Benign Connective and Soft Tissue Neoplasm 3 193225 -NCIT:C121788 Benign Phosphaturic Mesenchymal Tumor 4 193226 -NCIT:C166356 Benign Musculoskeletal Neoplasm 4 193227 -NCIT:C4880 Benign Bone Neoplasm 5 193228 -NCIT:C121842 Osteochondromyxoma 6 193229 -NCIT:C121901 Benign Notochordal Cell Tumor 6 193230 -NCIT:C190577 Childhood Benign Bone Neoplasm 6 193231 -NCIT:C189019 Childhood Subungual Exostosis 7 193232 -NCIT:C189020 Childhood Osteoblastoma 7 193233 -NCIT:C189021 Childhood Osteoid Osteoma 7 193234 -NCIT:C189023 Childhood Chondroblastoma 7 193235 -NCIT:C189024 Childhood Osteochondroma 7 193236 -NCIT:C189025 Childhood Chondromyxoid Fibroma 7 193237 -NCIT:C189028 Childhood Bone Hemangioma 7 193238 -NCIT:C189029 Childhood Aneurysmal Bone Cyst 7 193239 -NCIT:C189031 Childhood Non-Ossifying Fibroma 7 193240 -NCIT:C189033 Childhood Fibrous Dysplasia 7 193241 -NCIT:C27475 Bone Lipoma 6 193242 -NCIT:C178604 Bone Hibernoma 7 193243 -NCIT:C27476 Bone Schwannoma 6 193244 -NCIT:C27477 Benign Osteoclastic Giant Cell-Rich Tumor of Bone 6 193245 -NCIT:C121893 Giant Cell Lesion of Small Bones 7 193246 -NCIT:C2945 Chondroblastoma 6 193247 -NCIT:C173895 Maxillofacial Chondroblastoma 7 193248 -NCIT:C189023 Childhood Chondroblastoma 7 193249 -NCIT:C3007 Enchondroma 6 193250 -NCIT:C3008 Enchondromatosis 6 193251 -NCIT:C3294 Osteoblastoma 6 193252 -NCIT:C173899 Maxillofacial Osteoblastoma 7 193253 -NCIT:C189020 Childhood Osteoblastoma 7 193254 -NCIT:C4308 Cementoblastoma 7 193255 -NCIT:C3295 Osteochondroma 6 193256 -NCIT:C189024 Childhood Osteochondroma 7 193257 -NCIT:C53455 Solitary Osteochondroma 7 193258 -NCIT:C53457 Multiple Osteochondromas 7 193259 -NCIT:C3296 Osteoma 6 193260 -NCIT:C121923 Ivory Exostosis 7 193261 -NCIT:C121924 Enostosis 7 193262 -NCIT:C129569 Skull Osteoma 7 193263 -NCIT:C173894 Maxillofacial Osteoma 8 193264 -NCIT:C3297 Osteoid Osteoma 6 193265 -NCIT:C173898 Maxillofacial Osteoid Osteoma 7 193266 -NCIT:C189021 Childhood Osteoid Osteoma 7 193267 -NCIT:C34417 Benign Neoplasm of Lower Jaw Bone 6 193268 -NCIT:C34609 Fibrous Dysplasia 6 193269 -NCIT:C173926 Craniofacial Fibrous Dysplasia 7 193270 -NCIT:C189033 Childhood Fibrous Dysplasia 7 193271 -NCIT:C34610 Polyostotic Fibrous Dysplasia 7 193272 -NCIT:C53971 Monostotic Fibrous Dysplasia 7 193273 -NCIT:C3516 Aneurysmal Bone Cyst 6 193274 -NCIT:C189029 Childhood Aneurysmal Bone Cyst 7 193275 -NCIT:C3830 Chondromyxoid Fibroma 6 193276 -NCIT:C173897 Maxillofacial Chondromyxoid Fibroma 7 193277 -NCIT:C189025 Childhood Chondromyxoid Fibroma 7 193278 -NCIT:C6714 Sternal Chondromyxoid Fibroma 7 193279 -NCIT:C4302 Periosteal Chondroma 6 193280 -NCIT:C53963 Fibrous Histiocytoma of Bone 6 193281 -NCIT:C121929 Non-Ossifying Fibroma 7 193282 -NCIT:C189031 Childhood Non-Ossifying Fibroma 8 193283 -NCIT:C6477 Bone Hemangioma 6 193284 -NCIT:C189028 Childhood Bone Hemangioma 7 193285 -NCIT:C5396 Bone Epithelioid Hemangioma 7 193286 -NCIT:C66761 Periosteal Fibroma 6 193287 -NCIT:C4882 Benign Muscle Neoplasm 5 193288 -NCIT:C3358 Rhabdomyoma 6 193289 -NCIT:C188983 Childhood Rhabdomyoma 7 193290 -NCIT:C190104 Childhood Cardiac Rhabdomyoma 8 193291 -NCIT:C49166 Extracardiac Rhabdomyoma 7 193292 -NCIT:C162496 Paratesticular Rhabdomyoma 8 193293 -NCIT:C4260 Fetal Rhabdomyoma 8 193294 -NCIT:C27480 Classic Rhabdomyoma 9 193295 -NCIT:C6518 Intermediate Rhabdomyoma 9 193296 -NCIT:C4261 Adult Extracardiac Rhabdomyoma 8 193297 -NCIT:C6517 Genital Rhabdomyoma 8 193298 -NCIT:C181942 Vulvar Rhabdomyoma 9 193299 -NCIT:C40266 Cervical Rhabdomyoma 9 193300 -NCIT:C6372 Vaginal Rhabdomyoma 9 193301 -NCIT:C6600 Mediastinal Rhabdomyoma 8 193302 -NCIT:C7000 Central Nervous System Rhabdomyoma 8 193303 -NCIT:C6739 Cardiac Rhabdomyoma 7 193304 -NCIT:C190104 Childhood Cardiac Rhabdomyoma 8 193305 -NCIT:C45747 Adult Cardiac Cellular Rhabdomyoma 8 193306 -NCIT:C49179 Conventional Cardiac Rhabdomyoma 8 193307 -NCIT:C6510 Benign Smooth Muscle Neoplasm 6 193308 -NCIT:C3157 Leiomyoma 7 193309 -NCIT:C128046 Cervical Leiomyoma 8 193310 -NCIT:C156346 Thyroid Gland Leiomyoma 8 193311 -NCIT:C159209 Kidney Leiomyoma 8 193312 -NCIT:C162494 Paratesticular Leiomyoma 8 193313 -NCIT:C161638 Seminal Vesicle Leiomyoma 9 193314 -NCIT:C162583 Penile Leiomyoma 8 193315 -NCIT:C172942 Digestive System Leiomyoma 8 193316 -NCIT:C3866 Esophageal Leiomyoma 9 193317 -NCIT:C3876 Gastric Leiomyoma 9 193318 -NCIT:C5514 Appendix Leiomyoma 9 193319 -NCIT:C5608 Anal Leiomyoma 9 193320 -NCIT:C5677 Colorectal Leiomyoma 9 193321 -NCIT:C5492 Colon Leiomyoma 10 193322 -NCIT:C5552 Rectal Leiomyoma 10 193323 -NCIT:C5747 Gallbladder Leiomyoma 9 193324 -NCIT:C5753 Liver Leiomyoma 9 193325 -NCIT:C5855 Extrahepatic Bile Duct Leiomyoma 9 193326 -NCIT:C7725 Small Intestinal Leiomyoma 9 193327 -NCIT:C173140 Sinonasal Leiomyoma 8 193328 -NCIT:C179360 Ovarian Leiomyoma 8 193329 -NCIT:C179923 Uterine Ligament Leiomyoma 8 193330 -NCIT:C179924 Broad Ligament Leiomyoma 9 193331 -NCIT:C188253 Adrenal Gland Leiomyoma 8 193332 -NCIT:C3434 Uterine Corpus Leiomyoma 8 193333 -NCIT:C126975 Uterine Corpus Hydropic Leiomyoma 9 193334 -NCIT:C3511 Uterine Corpus Degenerated Leiomyoma 9 193335 -NCIT:C40162 Uterine Corpus Leiomyoma, Mitotically Active Variant 9 193336 -NCIT:C40163 Uterine Corpus Cellular Leiomyoma 9 193337 -NCIT:C40164 Uterine Corpus Epithelioid Leiomyoma 9 193338 -NCIT:C40165 Uterine Corpus Apoplectic Leiomyoma 9 193339 -NCIT:C40166 Uterine Corpus Myxoid Leiomyoma 9 193340 -NCIT:C40167 Uterine Corpus Bizarre Leiomyoma 9 193341 -NCIT:C40168 Uterine Corpus Lipoleiomyoma 9 193342 -NCIT:C40170 Uterine Corpus Diffuse Leiomyomatosis 9 193343 -NCIT:C40172 Uterine Corpus Dissecting Leiomyoma 9 193344 -NCIT:C40173 Uterine Corpus Metastasizing Leiomyoma 9 193345 -NCIT:C5356 Uterine Corpus Intravenous Leiomyomatosis 9 193346 -NCIT:C3748 Leiomyomatosis 8 193347 -NCIT:C3958 Disseminated Peritoneal Leiomyomatosis 9 193348 -NCIT:C40170 Uterine Corpus Diffuse Leiomyomatosis 9 193349 -NCIT:C4518 Intravenous Leiomyomatosis 9 193350 -NCIT:C5356 Uterine Corpus Intravenous Leiomyomatosis 10 193351 -NCIT:C40127 Fallopian Tube Leiomyoma 8 193352 -NCIT:C40326 Vulvar Leiomyoma 8 193353 -NCIT:C40399 Breast Leiomyoma 8 193354 -NCIT:C4256 Cellular Leiomyoma 8 193355 -NCIT:C40163 Uterine Corpus Cellular Leiomyoma 9 193356 -NCIT:C4257 Bizarre Leiomyoma 8 193357 -NCIT:C40167 Uterine Corpus Bizarre Leiomyoma 9 193358 -NCIT:C4482 Skin Leiomyoma 8 193359 -NCIT:C43332 Pilar Leiomyoma 9 193360 -NCIT:C4483 Dartoic Leiomyoma 9 193361 -NCIT:C4560 Ciliary Body Leiomyoma 8 193362 -NCIT:C53964 Bone Leiomyoma 8 193363 -NCIT:C5544 Prostate Leiomyoma 8 193364 -NCIT:C5660 Lung Leiomyoma 8 193365 -NCIT:C5661 Endobronchial Leiomyoma 9 193366 -NCIT:C5909 Oral Cavity Leiomyoma 8 193367 -NCIT:C6027 Laryngeal Leiomyoma 8 193368 -NCIT:C6049 Tracheal Leiomyoma 8 193369 -NCIT:C6161 Ureter Leiomyoma 8 193370 -NCIT:C6171 Urethral Leiomyoma 8 193371 -NCIT:C6178 Bladder Leiomyoma 8 193372 -NCIT:C6373 Vaginal Leiomyoma 8 193373 -NCIT:C6512 Deep Leiomyoma 8 193374 -NCIT:C6598 Mediastinal Leiomyoma 8 193375 -NCIT:C6743 Pericardial Leiomyoma 8 193376 -NCIT:C67563 Myxoid Leiomyoma 8 193377 -NCIT:C40166 Uterine Corpus Myxoid Leiomyoma 9 193378 -NCIT:C6998 Central Nervous System Leiomyoma 8 193379 -NCIT:C6515 Benign Skeletal Muscle Neoplasm 6 193380 -NCIT:C49166 Extracardiac Rhabdomyoma 7 193381 -NCIT:C162496 Paratesticular Rhabdomyoma 8 193382 -NCIT:C4260 Fetal Rhabdomyoma 8 193383 -NCIT:C27480 Classic Rhabdomyoma 9 193384 -NCIT:C6518 Intermediate Rhabdomyoma 9 193385 -NCIT:C4261 Adult Extracardiac Rhabdomyoma 8 193386 -NCIT:C6517 Genital Rhabdomyoma 8 193387 -NCIT:C181942 Vulvar Rhabdomyoma 9 193388 -NCIT:C40266 Cervical Rhabdomyoma 9 193389 -NCIT:C6372 Vaginal Rhabdomyoma 9 193390 -NCIT:C6600 Mediastinal Rhabdomyoma 8 193391 -NCIT:C7000 Central Nervous System Rhabdomyoma 8 193392 -NCIT:C190576 Childhood Benign Connective and Soft Tissue Neoplasm 4 193393 -NCIT:C180887 Infantile Myofibroma 5 193394 -NCIT:C188965 Childhood EWSR1-SMAD3-Positive Fibroblastic Tumor 5 193395 -NCIT:C188974 Childhood Fibrous Histiocytoma 5 193396 -NCIT:C189031 Childhood Non-Ossifying Fibroma 6 193397 -NCIT:C188983 Childhood Rhabdomyoma 5 193398 -NCIT:C190104 Childhood Cardiac Rhabdomyoma 6 193399 -NCIT:C189288 Childhood Ovarian Fibroma 5 193400 -NCIT:C190019 Liver Congenital Hemangioma 5 193401 -NCIT:C190160 Sinonasal Tract Myxoma 5 193402 -NCIT:C190577 Childhood Benign Bone Neoplasm 5 193403 -NCIT:C189019 Childhood Subungual Exostosis 6 193404 -NCIT:C189020 Childhood Osteoblastoma 6 193405 -NCIT:C189021 Childhood Osteoid Osteoma 6 193406 -NCIT:C189023 Childhood Chondroblastoma 6 193407 -NCIT:C189024 Childhood Osteochondroma 6 193408 -NCIT:C189025 Childhood Chondromyxoid Fibroma 6 193409 -NCIT:C189028 Childhood Bone Hemangioma 6 193410 -NCIT:C189029 Childhood Aneurysmal Bone Cyst 6 193411 -NCIT:C189031 Childhood Non-Ossifying Fibroma 6 193412 -NCIT:C189033 Childhood Fibrous Dysplasia 6 193413 -NCIT:C27483 Lipoblastoma 5 193414 -NCIT:C3456 Inclusion Body Fibromatosis 5 193415 -NCIT:C3942 Fibrous Hamartoma of Infancy 5 193416 -NCIT:C4818 Calcifying Aponeurotic Fibroma 5 193417 -NCIT:C5751 Liver Mesenchymal Hamartoma 5 193418 -NCIT:C6645 Infantile Hemangioma 5 193419 -NCIT:C96840 Liver Infantile Hemangioma 6 193420 -NCIT:C99086 Airway Infantile Hemangioma 6 193421 -NCIT:C4242 Benign Soft Tissue Neoplasm 4 193422 -NCIT:C128270 Vulvar Lipoma 5 193423 -NCIT:C128271 Vulvar Fibrolipoma 6 193424 -NCIT:C162503 Paratesticular Hemangioma 5 193425 -NCIT:C162590 Penile Myointimoma 5 193426 -NCIT:C172945 Digestive System Lipoma 5 193427 -NCIT:C43576 Appendix Lipoma 6 193428 -NCIT:C5258 Gastric Lipoma 6 193429 -NCIT:C5339 Small Intestinal Lipoma 6 193430 -NCIT:C5678 Colorectal Lipoma 6 193431 -NCIT:C5493 Colon Lipoma 7 193432 -NCIT:C5551 Rectal Lipoma 7 193433 -NCIT:C5701 Esophageal Lipoma 6 193434 -NCIT:C5750 Liver Lipoma 6 193435 -NCIT:C5835 Gallbladder Lipoma 6 193436 -NCIT:C5854 Extrahepatic Bile Duct Lipoma 6 193437 -NCIT:C173139 Benign Sinonasal Soft Tissue Neoplasm 5 193438 -NCIT:C173140 Sinonasal Leiomyoma 6 193439 -NCIT:C173142 Sinonasal Hemangioma 6 193440 -NCIT:C190160 Sinonasal Tract Myxoma 6 193441 -NCIT:C173399 Benign Laryngeal Soft Tissue Neoplasm 5 193442 -NCIT:C6026 Subglottic Hemangioma 6 193443 -NCIT:C6027 Laryngeal Leiomyoma 6 193444 -NCIT:C173480 Benign Oral Cavity Soft Tissue Neoplasm 5 193445 -NCIT:C27478 Gingival Angiofibroma 6 193446 -NCIT:C3950 Oral Mucosa Lobular Capillary Hemangioma 6 193447 -NCIT:C4831 Gingival Hemangioma 6 193448 -NCIT:C5909 Oral Cavity Leiomyoma 6 193449 -NCIT:C5910 Oral Cavity Lipoma 6 193450 -NCIT:C7734 Tongue Lipoma 7 193451 -NCIT:C181925 Vulvar Lipoblastoma-Like Tumor 5 193452 -NCIT:C27127 Benign Skin Vascular Neoplasm 5 193453 -NCIT:C27509 Skin Lymphangioma 6 193454 -NCIT:C162592 Penile Lymphangioma 7 193455 -NCIT:C4905 Skin Hemangioma 6 193456 -NCIT:C162579 Penile Hemangioma 7 193457 -NCIT:C162580 Penile Epithelioid Hemangioma 8 193458 -NCIT:C34967 Lobular Capillary Hemangioma of Skin and Subcutaneous Tissue 7 193459 -NCIT:C3926 Angioma Serpiginosum 7 193460 -NCIT:C4299 Verrucous Hemangioma 7 193461 -NCIT:C4390 Cherry Hemangioma 7 193462 -NCIT:C4372 Cherry Hemangioma of Lip 8 193463 -NCIT:C4487 Tufted Angioma 7 193464 -NCIT:C4750 Skin Cavernous Hemangioma 7 193465 -NCIT:C6387 Scrotal Hemangioma 7 193466 -NCIT:C7393 Skin Epithelioid Hemangioma 7 193467 -NCIT:C162580 Penile Epithelioid Hemangioma 8 193468 -NCIT:C27438 Benign Gastric Soft Tissue Neoplasm 5 193469 -NCIT:C3876 Gastric Leiomyoma 6 193470 -NCIT:C5258 Gastric Lipoma 6 193471 -NCIT:C5481 Gastric Hemangioma 6 193472 -NCIT:C5482 Gastric Lymphangioma 6 193473 -NCIT:C95895 Benign Gastric Gastrointestinal Stromal Tumor 6 193474 -NCIT:C95902 Gastric Plexiform Fibromyxoma 6 193475 -NCIT:C3829 Benign Synovial Neoplasm 5 193476 -NCIT:C3401 Tenosynovial Giant Cell Tumor, Diffuse Type 6 193477 -NCIT:C34467 Synovial Chondromatosis 6 193478 -NCIT:C6525 Synovial Hemangioma 6 193479 -NCIT:C6532 Tenosynovial Giant Cell Tumor, Localized Type 6 193480 -NCIT:C40381 Breast Angiomatosis 5 193481 -NCIT:C4262 Endometrial Stromal Nodule 5 193482 -NCIT:C43323 Benign Pilar-Associated Mesenchyme Neoplasm 5 193483 -NCIT:C27526 Follicular Myxoma 6 193484 -NCIT:C43331 Fibrofolliculoma 6 193485 -NCIT:C43332 Pilar Leiomyoma 6 193486 -NCIT:C43333 Spindle-Cell Predominant Trichodiscoma 6 193487 -NCIT:C4470 Perifollicular Fibroma 6 193488 -NCIT:C4616 Skin Lipoma 5 193489 -NCIT:C170474 Skin Spindle Cell/Pleomorphic Lipoma 6 193490 -NCIT:C170475 Skin Spindle Cell Lipoma 7 193491 -NCIT:C170476 Skin Pleomorphic Lipoma 7 193492 -NCIT:C170478 Skin Angiolipoma 6 193493 -NCIT:C4647 Breast Lipoma 5 193494 -NCIT:C176255 Breast Angiolipoma 6 193495 -NCIT:C4882 Benign Muscle Neoplasm 5 193496 -NCIT:C3358 Rhabdomyoma 6 193497 -NCIT:C188983 Childhood Rhabdomyoma 7 193498 -NCIT:C190104 Childhood Cardiac Rhabdomyoma 8 193499 -NCIT:C49166 Extracardiac Rhabdomyoma 7 193500 -NCIT:C162496 Paratesticular Rhabdomyoma 8 193501 -NCIT:C4260 Fetal Rhabdomyoma 8 193502 -NCIT:C27480 Classic Rhabdomyoma 9 193503 -NCIT:C6518 Intermediate Rhabdomyoma 9 193504 -NCIT:C4261 Adult Extracardiac Rhabdomyoma 8 193505 -NCIT:C6517 Genital Rhabdomyoma 8 193506 -NCIT:C181942 Vulvar Rhabdomyoma 9 193507 -NCIT:C40266 Cervical Rhabdomyoma 9 193508 -NCIT:C6372 Vaginal Rhabdomyoma 9 193509 -NCIT:C6600 Mediastinal Rhabdomyoma 8 193510 -NCIT:C7000 Central Nervous System Rhabdomyoma 8 193511 -NCIT:C6739 Cardiac Rhabdomyoma 7 193512 -NCIT:C190104 Childhood Cardiac Rhabdomyoma 8 193513 -NCIT:C45747 Adult Cardiac Cellular Rhabdomyoma 8 193514 -NCIT:C49179 Conventional Cardiac Rhabdomyoma 8 193515 -NCIT:C6510 Benign Smooth Muscle Neoplasm 6 193516 -NCIT:C3157 Leiomyoma 7 193517 -NCIT:C128046 Cervical Leiomyoma 8 193518 -NCIT:C156346 Thyroid Gland Leiomyoma 8 193519 -NCIT:C159209 Kidney Leiomyoma 8 193520 -NCIT:C162494 Paratesticular Leiomyoma 8 193521 -NCIT:C161638 Seminal Vesicle Leiomyoma 9 193522 -NCIT:C162583 Penile Leiomyoma 8 193523 -NCIT:C172942 Digestive System Leiomyoma 8 193524 -NCIT:C3866 Esophageal Leiomyoma 9 193525 -NCIT:C3876 Gastric Leiomyoma 9 193526 -NCIT:C5514 Appendix Leiomyoma 9 193527 -NCIT:C5608 Anal Leiomyoma 9 193528 -NCIT:C5677 Colorectal Leiomyoma 9 193529 -NCIT:C5492 Colon Leiomyoma 10 193530 -NCIT:C5552 Rectal Leiomyoma 10 193531 -NCIT:C5747 Gallbladder Leiomyoma 9 193532 -NCIT:C5753 Liver Leiomyoma 9 193533 -NCIT:C5855 Extrahepatic Bile Duct Leiomyoma 9 193534 -NCIT:C7725 Small Intestinal Leiomyoma 9 193535 -NCIT:C173140 Sinonasal Leiomyoma 8 193536 -NCIT:C179360 Ovarian Leiomyoma 8 193537 -NCIT:C179923 Uterine Ligament Leiomyoma 8 193538 -NCIT:C179924 Broad Ligament Leiomyoma 9 193539 -NCIT:C188253 Adrenal Gland Leiomyoma 8 193540 -NCIT:C3434 Uterine Corpus Leiomyoma 8 193541 -NCIT:C126975 Uterine Corpus Hydropic Leiomyoma 9 193542 -NCIT:C3511 Uterine Corpus Degenerated Leiomyoma 9 193543 -NCIT:C40162 Uterine Corpus Leiomyoma, Mitotically Active Variant 9 193544 -NCIT:C40163 Uterine Corpus Cellular Leiomyoma 9 193545 -NCIT:C40164 Uterine Corpus Epithelioid Leiomyoma 9 193546 -NCIT:C40165 Uterine Corpus Apoplectic Leiomyoma 9 193547 -NCIT:C40166 Uterine Corpus Myxoid Leiomyoma 9 193548 -NCIT:C40167 Uterine Corpus Bizarre Leiomyoma 9 193549 -NCIT:C40168 Uterine Corpus Lipoleiomyoma 9 193550 -NCIT:C40170 Uterine Corpus Diffuse Leiomyomatosis 9 193551 -NCIT:C40172 Uterine Corpus Dissecting Leiomyoma 9 193552 -NCIT:C40173 Uterine Corpus Metastasizing Leiomyoma 9 193553 -NCIT:C5356 Uterine Corpus Intravenous Leiomyomatosis 9 193554 -NCIT:C3748 Leiomyomatosis 8 193555 -NCIT:C3958 Disseminated Peritoneal Leiomyomatosis 9 193556 -NCIT:C40170 Uterine Corpus Diffuse Leiomyomatosis 9 193557 -NCIT:C4518 Intravenous Leiomyomatosis 9 193558 -NCIT:C5356 Uterine Corpus Intravenous Leiomyomatosis 10 193559 -NCIT:C40127 Fallopian Tube Leiomyoma 8 193560 -NCIT:C40326 Vulvar Leiomyoma 8 193561 -NCIT:C40399 Breast Leiomyoma 8 193562 -NCIT:C4256 Cellular Leiomyoma 8 193563 -NCIT:C40163 Uterine Corpus Cellular Leiomyoma 9 193564 -NCIT:C4257 Bizarre Leiomyoma 8 193565 -NCIT:C40167 Uterine Corpus Bizarre Leiomyoma 9 193566 -NCIT:C4482 Skin Leiomyoma 8 193567 -NCIT:C43332 Pilar Leiomyoma 9 193568 -NCIT:C4483 Dartoic Leiomyoma 9 193569 -NCIT:C4560 Ciliary Body Leiomyoma 8 193570 -NCIT:C53964 Bone Leiomyoma 8 193571 -NCIT:C5544 Prostate Leiomyoma 8 193572 -NCIT:C5660 Lung Leiomyoma 8 193573 -NCIT:C5661 Endobronchial Leiomyoma 9 193574 -NCIT:C5909 Oral Cavity Leiomyoma 8 193575 -NCIT:C6027 Laryngeal Leiomyoma 8 193576 -NCIT:C6049 Tracheal Leiomyoma 8 193577 -NCIT:C6161 Ureter Leiomyoma 8 193578 -NCIT:C6171 Urethral Leiomyoma 8 193579 -NCIT:C6178 Bladder Leiomyoma 8 193580 -NCIT:C6373 Vaginal Leiomyoma 8 193581 -NCIT:C6512 Deep Leiomyoma 8 193582 -NCIT:C6598 Mediastinal Leiomyoma 8 193583 -NCIT:C6743 Pericardial Leiomyoma 8 193584 -NCIT:C67563 Myxoid Leiomyoma 8 193585 -NCIT:C40166 Uterine Corpus Myxoid Leiomyoma 9 193586 -NCIT:C6998 Central Nervous System Leiomyoma 8 193587 -NCIT:C6515 Benign Skeletal Muscle Neoplasm 6 193588 -NCIT:C49166 Extracardiac Rhabdomyoma 7 193589 -NCIT:C162496 Paratesticular Rhabdomyoma 8 193590 -NCIT:C4260 Fetal Rhabdomyoma 8 193591 -NCIT:C27480 Classic Rhabdomyoma 9 193592 -NCIT:C6518 Intermediate Rhabdomyoma 9 193593 -NCIT:C4261 Adult Extracardiac Rhabdomyoma 8 193594 -NCIT:C6517 Genital Rhabdomyoma 8 193595 -NCIT:C181942 Vulvar Rhabdomyoma 9 193596 -NCIT:C40266 Cervical Rhabdomyoma 9 193597 -NCIT:C6372 Vaginal Rhabdomyoma 9 193598 -NCIT:C6600 Mediastinal Rhabdomyoma 8 193599 -NCIT:C7000 Central Nervous System Rhabdomyoma 8 193600 -NCIT:C5063 Endobronchial Lipoma 5 193601 -NCIT:C5353 Breast Hemangioma 5 193602 -NCIT:C5210 Breast Capillary Hemangioma 6 193603 -NCIT:C5211 Breast Epithelioid Hemangioma 6 193604 -NCIT:C53998 Benign Gastrointestinal Stromal Tumor 5 193605 -NCIT:C95895 Benign Gastric Gastrointestinal Stromal Tumor 6 193606 -NCIT:C5657 Lung Myolipoma 5 193607 -NCIT:C5751 Liver Mesenchymal Hamartoma 5 193608 -NCIT:C5856 Benign Extrahepatic Bile Duct Soft Tissue Neoplasm 5 193609 -NCIT:C5853 Extrahepatic Bile Duct Fibroma 6 193610 -NCIT:C5854 Extrahepatic Bile Duct Lipoma 6 193611 -NCIT:C5855 Extrahepatic Bile Duct Leiomyoma 6 193612 -NCIT:C6384 Paratesticular Lipoma 5 193613 -NCIT:C3606 Spermatic Cord Lipoma 6 193614 -NCIT:C6571 Benign Extraskeletal Cartilaginous and Osseous Neoplasm 5 193615 -NCIT:C9482 Soft Tissue Chondroma 6 193616 -NCIT:C45629 Lung Chondroma 7 193617 -NCIT:C6596 Mediastinal Chondroma 7 193618 -NCIT:C7001 Central Nervous System Chondroma 7 193619 -NCIT:C6587 Benign Soft Tissue Tumor of Uncertain Differentiation 5 193620 -NCIT:C121713 Acral Fibromyxoma 6 193621 -NCIT:C121791 Benign PEComa 6 193622 -NCIT:C127071 Benign Uterine Corpus PEComa 7 193623 -NCIT:C142784 Benign Lung PEComa 7 193624 -NCIT:C38152 Lung Clear Cell Tumor 8 193625 -NCIT:C159674 Bladder Benign PEComa 7 193626 -NCIT:C3254 Angiomyxoma 6 193627 -NCIT:C40323 Superficial Angiomyxoma 7 193628 -NCIT:C40324 Vulvar Superficial Angiomyxoma 8 193629 -NCIT:C40325 Vulvar Angiomyxoma 7 193630 -NCIT:C40322 Vulvar Deep (Aggressive) Angiomyxoma 8 193631 -NCIT:C40324 Vulvar Superficial Angiomyxoma 8 193632 -NCIT:C6936 Deep (Aggressive) Angiomyxoma 7 193633 -NCIT:C162501 Paratesticular Deep (Aggressive) Angiomyxoma 8 193634 -NCIT:C40273 Vaginal Deep (Aggressive) Angiomyxoma 8 193635 -NCIT:C40322 Vulvar Deep (Aggressive) Angiomyxoma 8 193636 -NCIT:C53594 Pleomorphic Hyalinizing Angiectatic Tumor of Soft Parts 6 193637 -NCIT:C53595 Ectopic Hamartomatous Thymoma 6 193638 -NCIT:C6577 Myxoma 6 193639 -NCIT:C175495 Conjunctival Myxoma 7 193640 -NCIT:C190160 Sinonasal Tract Myxoma 7 193641 -NCIT:C5245 Ovarian Myxoma 7 193642 -NCIT:C6578 Skin Myxoma 7 193643 -NCIT:C27526 Follicular Myxoma 8 193644 -NCIT:C6579 Intramuscular Myxoma 7 193645 -NCIT:C53589 Cellular Myxoma 8 193646 -NCIT:C6580 Juxta-Articular Myxoma 7 193647 -NCIT:C7748 Cardiac Myxoma 7 193648 -NCIT:C3499 Atrial Myxoma 8 193649 -NCIT:C4791 Left Atrial Myxoma 9 193650 -NCIT:C4792 Right Atrial Myxoma 9 193651 -NCIT:C45748 Ventricular Myxoma 8 193652 -NCIT:C6593 Benign Mediastinal Soft Tissue Neoplasm 5 193653 -NCIT:C146987 Mediastinal Hemangioma 6 193654 -NCIT:C27488 Mediastinal Lipomatosis 6 193655 -NCIT:C6595 Mediastinal Lymphangioma 6 193656 -NCIT:C6596 Mediastinal Chondroma 6 193657 -NCIT:C6598 Mediastinal Leiomyoma 6 193658 -NCIT:C6599 Mediastinal Lipoma 6 193659 -NCIT:C6600 Mediastinal Rhabdomyoma 6 193660 -NCIT:C6757 Benign Central Nervous System Mesenchymal, Non-Meningothelial Neoplasm 5 193661 -NCIT:C129549 Intracranial Fibrous Histiocytoma 6 193662 -NCIT:C129551 Central Nervous System Myofibroblastoma 6 193663 -NCIT:C5451 Central Nervous System Lipoma 6 193664 -NCIT:C129538 Central Nervous System Angiolipoma 7 193665 -NCIT:C5424 Epidural Spinal Canal Angiolipoma 8 193666 -NCIT:C4619 Spinal Cord Lipoma 7 193667 -NCIT:C5444 Intracranial Lipoma 7 193668 -NCIT:C5452 Inner Ear Lipoma 8 193669 -NCIT:C6220 Cerebral Hemisphere Lipoma 8 193670 -NCIT:C5438 Corpus Callosum Lipoma 9 193671 -NCIT:C6997 Central Nervous System Hibernoma 7 193672 -NCIT:C6998 Central Nervous System Leiomyoma 6 193673 -NCIT:C7000 Central Nervous System Rhabdomyoma 6 193674 -NCIT:C7001 Central Nervous System Chondroma 6 193675 -NCIT:C7004 Central Nervous System Hemangioma 6 193676 -NCIT:C84621 Central Nervous System Cavernous Hemangioma 7 193677 -NCIT:C5432 Intracranial Cavernous Hemangioma 8 193678 -NCIT:C7147 Benign Fibroblastic Neoplasm 5 193679 -NCIT:C121154 Proliferative Myositis 6 193680 -NCIT:C172941 Inflammatory Fibroid Polyp 6 193681 -NCIT:C177278 EWSR1-SMAD3-Positive Fibroblastic Tumor 6 193682 -NCIT:C188965 Childhood EWSR1-SMAD3-Positive Fibroblastic Tumor 7 193683 -NCIT:C3041 Fibroma 6 193684 -NCIT:C170736 Pleomorphic Fibroma 7 193685 -NCIT:C181926 Vulvar Prepubertal Fibroma 7 193686 -NCIT:C27515 Desmoplastic Fibroblastoma 7 193687 -NCIT:C3498 Ovarian Fibroma 7 193688 -NCIT:C189288 Childhood Ovarian Fibroma 8 193689 -NCIT:C7291 Ovarian Cellular Fibroma 8 193690 -NCIT:C3740 Desmoplastic Fibroma 7 193691 -NCIT:C173900 Maxillofacial Desmoplastic Fibroma 8 193692 -NCIT:C3799 Angiofibroma 7 193693 -NCIT:C177323 Angiofibroma of Soft Tissue 8 193694 -NCIT:C27256 Giant Cell Angiofibroma 8 193695 -NCIT:C27257 Cellular Angiofibroma 8 193696 -NCIT:C162498 Paratesticular Cellular Angiofibroma 9 193697 -NCIT:C40327 Vulvar Cellular Angiofibroma 9 193698 -NCIT:C27478 Gingival Angiofibroma 8 193699 -NCIT:C27479 Nasopharyngeal Angiofibroma 8 193700 -NCIT:C3972 Prostate Fibroma 7 193701 -NCIT:C39951 Testicular Fibroma 7 193702 -NCIT:C4818 Calcifying Aponeurotic Fibroma 7 193703 -NCIT:C49017 Gardner Fibroma 7 193704 -NCIT:C5394 Solitary Adult Fibroma 7 193705 -NCIT:C5658 Lung Fibroma 7 193706 -NCIT:C5702 Esophageal Fibroma 7 193707 -NCIT:C5853 Extrahepatic Bile Duct Fibroma 7 193708 -NCIT:C6484 Dermal Fibroma 7 193709 -NCIT:C170889 Plaque-Like CD34-Positive Dermal Fibroma 8 193710 -NCIT:C4470 Perifollicular Fibroma 8 193711 -NCIT:C6486 Nuchal-Type Fibroma 8 193712 -NCIT:C6485 Tendon Sheath Fibroma 7 193713 -NCIT:C66761 Periosteal Fibroma 7 193714 -NCIT:C66764 Fascial Fibroma 7 193715 -NCIT:C6892 Cellular Fibroma 7 193716 -NCIT:C7291 Ovarian Cellular Fibroma 8 193717 -NCIT:C6947 Cardiac Fibroma 7 193718 -NCIT:C3253 Myositis Ossificans 6 193719 -NCIT:C3456 Inclusion Body Fibromatosis 6 193720 -NCIT:C3827 Nodular Fasciitis 6 193721 -NCIT:C173687 Salivary Gland Nodular Fasciitis 7 193722 -NCIT:C173688 Parotid Gland Nodular Fasciitis 8 193723 -NCIT:C176253 Breast Nodular Fasciitis 7 193724 -NCIT:C27248 Cranial Nodular Fasciitis 7 193725 -NCIT:C4729 Intravascular Nodular Fasciitis 7 193726 -NCIT:C48961 Subcutaneous Nodular Fasciitis 7 193727 -NCIT:C4245 Elastofibroma 6 193728 -NCIT:C4728 Proliferative Fasciitis 6 193729 -NCIT:C4811 Fibromatosis Colli 6 193730 -NCIT:C49012 Myofibroblastoma 6 193731 -NCIT:C121181 Mammary-Type Myofibroblastoma 7 193732 -NCIT:C128079 Vaginal Superficial Myofibroblastoma 8 193733 -NCIT:C128272 Vulvar Superficial Myofibroblastoma 8 193734 -NCIT:C162500 Paratesticular Mammary-Type Myofibroblastoma 8 193735 -NCIT:C161640 Seminal Vesicle Mammary-Type Myofibroblastoma 9 193736 -NCIT:C129551 Central Nervous System Myofibroblastoma 7 193737 -NCIT:C40397 Breast Myofibroblastoma 7 193738 -NCIT:C6584 Palisaded Lymph Node Myofibroblastoma 7 193739 -NCIT:C49016 Angiomyofibroblastoma 6 193740 -NCIT:C45445 Vaginal Angiomyofibroblastoma 7 193741 -NCIT:C45446 Vulvar Angiomyofibroblastoma 7 193742 -NCIT:C6488 Calcifying Fibrous Tumor 6 193743 -NCIT:C179560 Peritoneal Calcifying Fibrous Tumor 7 193744 -NCIT:C183277 Pleural Calcifying Fibrous Tumor 7 193745 -NCIT:C6573 Fibroosseous Pseudotumor of Digits 6 193746 -NCIT:C6806 Benign Skin Fibroblastic Neoplasm 6 193747 -NCIT:C170888 Dermatomyofibroma 7 193748 -NCIT:C3942 Fibrous Hamartoma of Infancy 7 193749 -NCIT:C48961 Subcutaneous Nodular Fasciitis 7 193750 -NCIT:C6484 Dermal Fibroma 7 193751 -NCIT:C170889 Plaque-Like CD34-Positive Dermal Fibroma 8 193752 -NCIT:C4470 Perifollicular Fibroma 8 193753 -NCIT:C6486 Nuchal-Type Fibroma 8 193754 -NCIT:C7343 Benign Skin Fibrohistiocytic Neoplasm 5 193755 -NCIT:C6801 Skin Fibrous Histiocytoma 6 193756 -NCIT:C49076 Skin Fibrous Histiocytoma, Fibroblastic Variant 7 193757 -NCIT:C49077 Skin Fibrous Histiocytoma, Histiocytic Variant 7 193758 -NCIT:C49078 Skin Fibrous Histiocytoma, Cellular Variant 7 193759 -NCIT:C49079 Skin Fibrous Histiocytoma, Epithelioid Variant 7 193760 -NCIT:C7442 Benign Myoepithelioma 5 193761 -NCIT:C121785 Ectomesenchymal Chondromyxoid Tumor 6 193762 -NCIT:C121786 Mixed Tumor, Not Otherwise Specified 6 193763 -NCIT:C142829 Lung Myoepithelioma 6 193764 -NCIT:C167370 Skin Myoepithelioma 6 193765 -NCIT:C175272 Lacrimal Gland Myoepithelioma 6 193766 -NCIT:C5978 Salivary Gland Myoepithelioma 6 193767 -NCIT:C81854 Benign Epithelioid Cell Type Gastrointestinal Stromal Tumor 5 193768 -NCIT:C4502 Benign Lipomatous Neoplasm 4 193769 -NCIT:C181925 Vulvar Lipoblastoma-Like Tumor 5 193770 -NCIT:C27483 Lipoblastoma 5 193771 -NCIT:C27489 Atypical Spindle Cell/Pleomorphic Lipomatous Tumor 5 193772 -NCIT:C3192 Lipoma 5 193773 -NCIT:C128270 Vulvar Lipoma 6 193774 -NCIT:C128271 Vulvar Fibrolipoma 7 193775 -NCIT:C172945 Digestive System Lipoma 6 193776 -NCIT:C43576 Appendix Lipoma 7 193777 -NCIT:C5258 Gastric Lipoma 7 193778 -NCIT:C5339 Small Intestinal Lipoma 7 193779 -NCIT:C5678 Colorectal Lipoma 7 193780 -NCIT:C5493 Colon Lipoma 8 193781 -NCIT:C5551 Rectal Lipoma 8 193782 -NCIT:C5701 Esophageal Lipoma 7 193783 -NCIT:C5750 Liver Lipoma 7 193784 -NCIT:C5835 Gallbladder Lipoma 7 193785 -NCIT:C5854 Extrahepatic Bile Duct Lipoma 7 193786 -NCIT:C173681 Salivary Gland Lipoma 6 193787 -NCIT:C5982 Parotid Gland Lipoma 7 193788 -NCIT:C188250 Adrenal Gland Lipoma 6 193789 -NCIT:C27475 Bone Lipoma 6 193790 -NCIT:C178604 Bone Hibernoma 7 193791 -NCIT:C27530 Conventional Lipoma 6 193792 -NCIT:C35419 Axillary Lipoma 6 193793 -NCIT:C3702 Hibernoma 6 193794 -NCIT:C178604 Bone Hibernoma 7 193795 -NCIT:C6997 Central Nervous System Hibernoma 7 193796 -NCIT:C3733 Angiolipoma 6 193797 -NCIT:C129538 Central Nervous System Angiolipoma 7 193798 -NCIT:C5424 Epidural Spinal Canal Angiolipoma 8 193799 -NCIT:C170478 Skin Angiolipoma 7 193800 -NCIT:C176255 Breast Angiolipoma 7 193801 -NCIT:C7449 Infiltrating Angiolipoma 7 193802 -NCIT:C4249 Fibrolipoma 6 193803 -NCIT:C128271 Vulvar Fibrolipoma 7 193804 -NCIT:C4251 Fibromyxolipoma 6 193805 -NCIT:C4616 Skin Lipoma 6 193806 -NCIT:C170474 Skin Spindle Cell/Pleomorphic Lipoma 7 193807 -NCIT:C170475 Skin Spindle Cell Lipoma 8 193808 -NCIT:C170476 Skin Pleomorphic Lipoma 8 193809 -NCIT:C170478 Skin Angiolipoma 7 193810 -NCIT:C4618 External Ear Lipoma 6 193811 -NCIT:C4647 Breast Lipoma 6 193812 -NCIT:C176255 Breast Angiolipoma 7 193813 -NCIT:C5063 Endobronchial Lipoma 6 193814 -NCIT:C5101 Kidney Lipoma 6 193815 -NCIT:C5451 Central Nervous System Lipoma 6 193816 -NCIT:C129538 Central Nervous System Angiolipoma 7 193817 -NCIT:C5424 Epidural Spinal Canal Angiolipoma 8 193818 -NCIT:C4619 Spinal Cord Lipoma 7 193819 -NCIT:C5444 Intracranial Lipoma 7 193820 -NCIT:C5452 Inner Ear Lipoma 8 193821 -NCIT:C6220 Cerebral Hemisphere Lipoma 8 193822 -NCIT:C5438 Corpus Callosum Lipoma 9 193823 -NCIT:C6997 Central Nervous System Hibernoma 7 193824 -NCIT:C5910 Oral Cavity Lipoma 6 193825 -NCIT:C7734 Tongue Lipoma 7 193826 -NCIT:C5989 Tonsillar Lipoma 6 193827 -NCIT:C6384 Paratesticular Lipoma 6 193828 -NCIT:C3606 Spermatic Cord Lipoma 7 193829 -NCIT:C6498 Deep Lipoma 6 193830 -NCIT:C6499 Tendon Sheath Lipoma 7 193831 -NCIT:C6500 Lumbosacral Lipoma 7 193832 -NCIT:C7450 Intramuscular Lipoma 7 193833 -NCIT:C121131 Infiltrating Intramuscular Lipoma 8 193834 -NCIT:C7451 Infiltrating Lipoma 7 193835 -NCIT:C121131 Infiltrating Intramuscular Lipoma 8 193836 -NCIT:C6503 Chondroid Lipoma 6 193837 -NCIT:C6599 Mediastinal Lipoma 6 193838 -NCIT:C6644 Pleural Lipoma 6 193839 -NCIT:C6719 Chest Wall Lipoma 6 193840 -NCIT:C6741 Cardiac Lipoma 6 193841 -NCIT:C6742 Epicardial Lipoma 7 193842 -NCIT:C7180 Spindle Cell/Pleomorphic Lipoma 6 193843 -NCIT:C170474 Skin Spindle Cell/Pleomorphic Lipoma 7 193844 -NCIT:C170475 Skin Spindle Cell Lipoma 8 193845 -NCIT:C170476 Skin Pleomorphic Lipoma 8 193846 -NCIT:C3703 Pleomorphic Lipoma 7 193847 -NCIT:C170476 Skin Pleomorphic Lipoma 8 193848 -NCIT:C4254 Spindle Cell Lipoma 7 193849 -NCIT:C170475 Skin Spindle Cell Lipoma 8 193850 -NCIT:C9502 Myolipoma 6 193851 -NCIT:C5657 Lung Myolipoma 7 193852 -NCIT:C3193 Lipomatosis 5 193853 -NCIT:C27486 Pelvic Lipomatosis 6 193854 -NCIT:C27487 Steroid Lipomatosis 6 193855 -NCIT:C27488 Mediastinal Lipomatosis 6 193856 -NCIT:C4392 Cervical Symmetrical Lipomatosis 6 193857 -NCIT:C4701 Encephalocraniocutaneous Lipomatosis 6 193858 -NCIT:C48899 HIV Lipodystrophy 6 193859 -NCIT:C5431 Lipomatosis of Nerve 6 193860 -NCIT:C6504 Diffuse Lipomatosis 6 193861 -NCIT:C4255 Lipoblastomatosis 5 193862 -NCIT:C6490 Benign Fibrohistiocytic Neoplasm 4 193863 -NCIT:C3401 Tenosynovial Giant Cell Tumor, Diffuse Type 5 193864 -NCIT:C35765 Histiocytoma 5 193865 -NCIT:C3739 Fibrous Histiocytoma 6 193866 -NCIT:C129549 Intracranial Fibrous Histiocytoma 7 193867 -NCIT:C188974 Childhood Fibrous Histiocytoma 7 193868 -NCIT:C189031 Childhood Non-Ossifying Fibroma 8 193869 -NCIT:C53963 Fibrous Histiocytoma of Bone 7 193870 -NCIT:C121929 Non-Ossifying Fibroma 8 193871 -NCIT:C189031 Childhood Non-Ossifying Fibroma 9 193872 -NCIT:C6492 Deep Fibrous Histiocytoma 7 193873 -NCIT:C6801 Skin Fibrous Histiocytoma 7 193874 -NCIT:C49076 Skin Fibrous Histiocytoma, Fibroblastic Variant 8 193875 -NCIT:C49077 Skin Fibrous Histiocytoma, Histiocytic Variant 8 193876 -NCIT:C49078 Skin Fibrous Histiocytoma, Cellular Variant 8 193877 -NCIT:C49079 Skin Fibrous Histiocytoma, Epithelioid Variant 8 193878 -NCIT:C6532 Tenosynovial Giant Cell Tumor, Localized Type 5 193879 -NCIT:C7343 Benign Skin Fibrohistiocytic Neoplasm 5 193880 -NCIT:C6801 Skin Fibrous Histiocytoma 6 193881 -NCIT:C49076 Skin Fibrous Histiocytoma, Fibroblastic Variant 7 193882 -NCIT:C49077 Skin Fibrous Histiocytoma, Histiocytic Variant 7 193883 -NCIT:C49078 Skin Fibrous Histiocytoma, Cellular Variant 7 193884 -NCIT:C49079 Skin Fibrous Histiocytoma, Epithelioid Variant 7 193885 -NCIT:C6529 Benign Pericytic Neoplasm 4 193886 -NCIT:C3742 Myofibromatosis 5 193887 -NCIT:C176943 Infantile Myofibromatosis 1 6 193888 -NCIT:C176944 Infantile Myofibromatosis 2 6 193889 -NCIT:C3747 Angioleiomyoma 5 193890 -NCIT:C49110 Solid Angioleiomyoma 6 193891 -NCIT:C49111 Venous Angioleiomyoma 6 193892 -NCIT:C49115 Cavernous Angioleiomyoma 6 193893 -NCIT:C5355 Intravascular Angioleiomyoma 6 193894 -NCIT:C6748 Benign Glomus Tumor 5 193895 -NCIT:C27496 Glomangiomatosis 6 193896 -NCIT:C7052 Myofibroma 5 193897 -NCIT:C180887 Infantile Myofibroma 6 193898 -NCIT:C180888 Adult Myofibroma 6 193899 -NCIT:C6602 Benign Osteogenic Neoplasm 4 193900 -NCIT:C3294 Osteoblastoma 5 193901 -NCIT:C173899 Maxillofacial Osteoblastoma 6 193902 -NCIT:C189020 Childhood Osteoblastoma 6 193903 -NCIT:C4308 Cementoblastoma 6 193904 -NCIT:C3296 Osteoma 5 193905 -NCIT:C121923 Ivory Exostosis 6 193906 -NCIT:C121924 Enostosis 6 193907 -NCIT:C129569 Skull Osteoma 6 193908 -NCIT:C173894 Maxillofacial Osteoma 7 193909 -NCIT:C3297 Osteoid Osteoma 5 193910 -NCIT:C173898 Maxillofacial Osteoid Osteoma 6 193911 -NCIT:C189021 Childhood Osteoid Osteoma 6 193912 -NCIT:C7389 Benign Vascular Neoplasm 4 193913 -NCIT:C156342 Thyroid Gland Benign Vascular Neoplasm 5 193914 -NCIT:C156343 Thyroid Gland Hemangioma 6 193915 -NCIT:C156344 Thyroid Gland Cavernous Hemangioma 7 193916 -NCIT:C156345 Thyroid Gland Lymphangioma 6 193917 -NCIT:C27127 Benign Skin Vascular Neoplasm 5 193918 -NCIT:C27509 Skin Lymphangioma 6 193919 -NCIT:C162592 Penile Lymphangioma 7 193920 -NCIT:C4905 Skin Hemangioma 6 193921 -NCIT:C162579 Penile Hemangioma 7 193922 -NCIT:C162580 Penile Epithelioid Hemangioma 8 193923 -NCIT:C34967 Lobular Capillary Hemangioma of Skin and Subcutaneous Tissue 7 193924 -NCIT:C3926 Angioma Serpiginosum 7 193925 -NCIT:C4299 Verrucous Hemangioma 7 193926 -NCIT:C4390 Cherry Hemangioma 7 193927 -NCIT:C4372 Cherry Hemangioma of Lip 8 193928 -NCIT:C4487 Tufted Angioma 7 193929 -NCIT:C4750 Skin Cavernous Hemangioma 7 193930 -NCIT:C6387 Scrotal Hemangioma 7 193931 -NCIT:C7393 Skin Epithelioid Hemangioma 7 193932 -NCIT:C162580 Penile Epithelioid Hemangioma 8 193933 -NCIT:C6524 Benign Lymphatic Vessel Neoplasm 5 193934 -NCIT:C8965 Lymphangioma 6 193935 -NCIT:C156345 Thyroid Gland Lymphangioma 7 193936 -NCIT:C159214 Kidney Lymphangioma 7 193937 -NCIT:C175498 Conjunctival Lymphangioma 7 193938 -NCIT:C188252 Adrenal Gland Lymphangioma 7 193939 -NCIT:C27508 Intra-Abdominal Lymphangioma 7 193940 -NCIT:C5500 Colon Lymphangioma 8 193941 -NCIT:C96841 Liver Lymphangioma 8 193942 -NCIT:C27509 Skin Lymphangioma 7 193943 -NCIT:C162592 Penile Lymphangioma 8 193944 -NCIT:C3203 Acquired Progressive Lymphangioma 7 193945 -NCIT:C3724 Cystic Hygroma 7 193946 -NCIT:C116899 Congenital Cystic Hygroma 8 193947 -NCIT:C45485 Lymphangioma Circumscriptum 7 193948 -NCIT:C53316 Cavernous Lymphangioma 7 193949 -NCIT:C5393 Parotid Gland Lymphangioma 7 193950 -NCIT:C5482 Gastric Lymphangioma 7 193951 -NCIT:C6595 Mediastinal Lymphangioma 7 193952 -NCIT:C66792 Hemolymphangioma 7 193953 -NCIT:C8537 Benign Blood Vessel Neoplasm 5 193954 -NCIT:C27503 Angiomatosis 6 193955 -NCIT:C3821 Hemangiomatosis with Thrombocytopenia 7 193956 -NCIT:C40381 Breast Angiomatosis 7 193957 -NCIT:C3085 Hemangioma 6 193958 -NCIT:C146987 Mediastinal Hemangioma 7 193959 -NCIT:C156343 Thyroid Gland Hemangioma 7 193960 -NCIT:C156344 Thyroid Gland Cavernous Hemangioma 8 193961 -NCIT:C159211 Kidney Hemangioma 7 193962 -NCIT:C159680 Bladder Hemangioma 7 193963 -NCIT:C161581 Prostate Hemangioma 7 193964 -NCIT:C162503 Paratesticular Hemangioma 7 193965 -NCIT:C173142 Sinonasal Hemangioma 7 193966 -NCIT:C173680 Salivary Gland Hemangioma 7 193967 -NCIT:C5397 Parotid Gland Hemangioma 8 193968 -NCIT:C175497 Conjunctival Hemangioma 7 193969 -NCIT:C188251 Adrenal Gland Hemangioma 7 193970 -NCIT:C27018 Acquired Hemangioma 7 193971 -NCIT:C27505 Glomeruloid Hemangioma 7 193972 -NCIT:C27506 Hobnail Hemangioma 7 193973 -NCIT:C27507 Hemangioma of Peripheral Nerve 7 193974 -NCIT:C3086 Cavernous Hemangioma 7 193975 -NCIT:C156344 Thyroid Gland Cavernous Hemangioma 8 193976 -NCIT:C27777 Giant Hemangioma 8 193977 -NCIT:C4546 Orbit Cavernous Hemangioma 8 193978 -NCIT:C45750 Cardiac Cavernous Hemangioma 8 193979 -NCIT:C4750 Skin Cavernous Hemangioma 8 193980 -NCIT:C4921 Retinal Cavernous Hemangioma 8 193981 -NCIT:C5395 Colon Cavernous Hemangioma 8 193982 -NCIT:C7053 Cavernous Hemangioma of the Face 8 193983 -NCIT:C84621 Central Nervous System Cavernous Hemangioma 8 193984 -NCIT:C5432 Intracranial Cavernous Hemangioma 9 193985 -NCIT:C96839 Liver Cavernous Hemangioma 8 193986 -NCIT:C3633 Intracranial Hemangioma 7 193987 -NCIT:C5432 Intracranial Cavernous Hemangioma 8 193988 -NCIT:C7739 Brain Hemangioma 8 193989 -NCIT:C5433 Cerebral Hemangioma 9 193990 -NCIT:C3635 Intra-Abdominal Hemangioma 7 193991 -NCIT:C3869 Liver Hemangioma 8 193992 -NCIT:C190019 Liver Congenital Hemangioma 9 193993 -NCIT:C96839 Liver Cavernous Hemangioma 9 193994 -NCIT:C96840 Liver Infantile Hemangioma 9 193995 -NCIT:C5481 Gastric Hemangioma 8 193996 -NCIT:C8541 Splenic Hemangioma 8 193997 -NCIT:C3841 Congenital Hemangioma 7 193998 -NCIT:C172207 Rapidly Involuting Congenital Hemangioma 8 193999 -NCIT:C172208 Non-Involuting Congenital Hemangioma 8 194000 -NCIT:C172209 Partially Involuting Congenital Hemangioma 8 194001 -NCIT:C190019 Liver Congenital Hemangioma 8 194002 -NCIT:C4486 Blue Rubber Bleb Nevus 8 194003 -NCIT:C4296 Venous Hemangioma 7 194004 -NCIT:C4298 Epithelioid Hemangioma 7 194005 -NCIT:C5211 Breast Epithelioid Hemangioma 8 194006 -NCIT:C5396 Bone Epithelioid Hemangioma 8 194007 -NCIT:C7393 Skin Epithelioid Hemangioma 8 194008 -NCIT:C162580 Penile Epithelioid Hemangioma 9 194009 -NCIT:C4562 Choroid Hemangioma 7 194010 -NCIT:C45749 Cardiac Hemangioma 7 194011 -NCIT:C45750 Cardiac Cavernous Hemangioma 8 194012 -NCIT:C45751 Cardiac Capillary Hemangioma 8 194013 -NCIT:C45752 Cardiac Intramuscular Hemangioma 8 194014 -NCIT:C4754 Spindle Cell Hemangioma 7 194015 -NCIT:C4831 Gingival Hemangioma 7 194016 -NCIT:C4868 Placental Hemangioma 7 194017 -NCIT:C4905 Skin Hemangioma 7 194018 -NCIT:C162579 Penile Hemangioma 8 194019 -NCIT:C162580 Penile Epithelioid Hemangioma 9 194020 -NCIT:C34967 Lobular Capillary Hemangioma of Skin and Subcutaneous Tissue 8 194021 -NCIT:C3926 Angioma Serpiginosum 8 194022 -NCIT:C4299 Verrucous Hemangioma 8 194023 -NCIT:C4390 Cherry Hemangioma 8 194024 -NCIT:C4372 Cherry Hemangioma of Lip 9 194025 -NCIT:C4487 Tufted Angioma 8 194026 -NCIT:C4750 Skin Cavernous Hemangioma 8 194027 -NCIT:C6387 Scrotal Hemangioma 8 194028 -NCIT:C7393 Skin Epithelioid Hemangioma 8 194029 -NCIT:C162580 Penile Epithelioid Hemangioma 9 194030 -NCIT:C5353 Breast Hemangioma 7 194031 -NCIT:C5210 Breast Capillary Hemangioma 8 194032 -NCIT:C5211 Breast Epithelioid Hemangioma 8 194033 -NCIT:C6026 Subglottic Hemangioma 7 194034 -NCIT:C6245 Orbit Hemangioma 7 194035 -NCIT:C4545 Orbit Capillary Hemangioma 8 194036 -NCIT:C4546 Orbit Cavernous Hemangioma 8 194037 -NCIT:C6477 Bone Hemangioma 7 194038 -NCIT:C189028 Childhood Bone Hemangioma 8 194039 -NCIT:C5396 Bone Epithelioid Hemangioma 8 194040 -NCIT:C6525 Synovial Hemangioma 7 194041 -NCIT:C6555 Deep Hemangioma 7 194042 -NCIT:C3699 Intramuscular Hemangioma 8 194043 -NCIT:C45752 Cardiac Intramuscular Hemangioma 9 194044 -NCIT:C6526 Perineural Hemangioma 8 194045 -NCIT:C7004 Central Nervous System Hemangioma 7 194046 -NCIT:C84621 Central Nervous System Cavernous Hemangioma 8 194047 -NCIT:C5432 Intracranial Cavernous Hemangioma 9 194048 -NCIT:C7457 Capillary Hemangioma 7 194049 -NCIT:C131760 Anastomosing Hemangioma 8 194050 -NCIT:C3480 Lobular Capillary Hemangioma 8 194051 -NCIT:C27552 Multiple Lobular Capillary Hemangiomas 9 194052 -NCIT:C34967 Lobular Capillary Hemangioma of Skin and Subcutaneous Tissue 9 194053 -NCIT:C3950 Oral Mucosa Lobular Capillary Hemangioma 9 194054 -NCIT:C4357 Eyelid Capillary Hemangioma 8 194055 -NCIT:C4390 Cherry Hemangioma 8 194056 -NCIT:C4372 Cherry Hemangioma of Lip 9 194057 -NCIT:C4487 Tufted Angioma 8 194058 -NCIT:C4545 Orbit Capillary Hemangioma 8 194059 -NCIT:C45751 Cardiac Capillary Hemangioma 8 194060 -NCIT:C5210 Breast Capillary Hemangioma 8 194061 -NCIT:C6645 Infantile Hemangioma 8 194062 -NCIT:C96840 Liver Infantile Hemangioma 9 194063 -NCIT:C99086 Airway Infantile Hemangioma 9 194064 -NCIT:C7741 Digestive System Hemangioma 7 194065 -NCIT:C3869 Liver Hemangioma 8 194066 -NCIT:C190019 Liver Congenital Hemangioma 9 194067 -NCIT:C96839 Liver Cavernous Hemangioma 9 194068 -NCIT:C96840 Liver Infantile Hemangioma 9 194069 -NCIT:C5395 Colon Cavernous Hemangioma 8 194070 -NCIT:C5481 Gastric Hemangioma 8 194071 -NCIT:C95622 Esophageal Hemangioma 8 194072 -NCIT:C7744 Mucous Membrane Hemangioma 7 194073 -NCIT:C8540 Subcutaneous Hemangioma 7 194074 -NCIT:C172206 Sinusoidal Hemangioma 8 194075 -NCIT:C8592 Benign Chondrogenic Neoplasm 4 194076 -NCIT:C121842 Osteochondromyxoma 5 194077 -NCIT:C121844 Subungual Exostosis 5 194078 -NCIT:C189019 Childhood Subungual Exostosis 6 194079 -NCIT:C121845 Bizarre Parosteal Osteochondromatous Proliferation 5 194080 -NCIT:C2945 Chondroblastoma 5 194081 -NCIT:C173895 Maxillofacial Chondroblastoma 6 194082 -NCIT:C189023 Childhood Chondroblastoma 6 194083 -NCIT:C3295 Osteochondroma 5 194084 -NCIT:C189024 Childhood Osteochondroma 6 194085 -NCIT:C53455 Solitary Osteochondroma 6 194086 -NCIT:C53457 Multiple Osteochondromas 6 194087 -NCIT:C35259 Chondromatosis 5 194088 -NCIT:C3008 Enchondromatosis 6 194089 -NCIT:C34467 Synovial Chondromatosis 6 194090 -NCIT:C3830 Chondromyxoid Fibroma 5 194091 -NCIT:C173897 Maxillofacial Chondromyxoid Fibroma 6 194092 -NCIT:C189025 Childhood Chondromyxoid Fibroma 6 194093 -NCIT:C6714 Sternal Chondromyxoid Fibroma 6 194094 -NCIT:C53459 Chondroma 5 194095 -NCIT:C173406 Laryngeal Chondroma 6 194096 -NCIT:C173893 Maxillofacial Chondroma 6 194097 -NCIT:C3007 Enchondroma 6 194098 -NCIT:C4302 Periosteal Chondroma 6 194099 -NCIT:C9482 Soft Tissue Chondroma 6 194100 -NCIT:C45629 Lung Chondroma 7 194101 -NCIT:C6596 Mediastinal Chondroma 7 194102 -NCIT:C7001 Central Nervous System Chondroma 7 194103 -NCIT:C6449 Benign Germ Cell Tumor 3 194104 -NCIT:C4516 Benign Ovarian Germ Cell Tumor 4 194105 -NCIT:C8112 Mature Ovarian Teratoma 5 194106 -NCIT:C3856 Ovarian Dermoid Cyst 6 194107 -NCIT:C39996 Ovarian Fetiform Teratoma 6 194108 -NCIT:C6548 Childhood Ovarian Mature Teratoma 6 194109 -NCIT:C7285 Ovarian Solid Teratoma 6 194110 -NCIT:C6553 Childhood Benign Germ Cell Tumor 4 194111 -NCIT:C123836 Childhood Mature Teratoma 5 194112 -NCIT:C123837 Childhood Testicular Mature Teratoma 6 194113 -NCIT:C27404 Childhood Central Nervous System Mature Teratoma 6 194114 -NCIT:C6548 Childhood Ovarian Mature Teratoma 6 194115 -NCIT:C67107 Benign Teratoma 4 194116 -NCIT:C156411 Grade 1 Teratoma 5 194117 -NCIT:C39993 Grade 1 Ovarian Teratoma 6 194118 -NCIT:C9015 Mature Teratoma 5 194119 -NCIT:C123836 Childhood Mature Teratoma 6 194120 -NCIT:C123837 Childhood Testicular Mature Teratoma 7 194121 -NCIT:C27404 Childhood Central Nervous System Mature Teratoma 7 194122 -NCIT:C6548 Childhood Ovarian Mature Teratoma 7 194123 -NCIT:C5260 Mature Gastric Teratoma 6 194124 -NCIT:C6355 Mature Testicular Teratoma 6 194125 -NCIT:C123837 Childhood Testicular Mature Teratoma 7 194126 -NCIT:C36092 Testicular Dermoid Cyst 7 194127 -NCIT:C6744 Pericardial Mature Teratoma 6 194128 -NCIT:C7013 Central Nervous System Mature Teratoma 6 194129 -NCIT:C155808 Sellar Mature Teratoma 7 194130 -NCIT:C27400 Adult Central Nervous System Mature Teratoma 7 194131 -NCIT:C27404 Childhood Central Nervous System Mature Teratoma 7 194132 -NCIT:C5508 Central Nervous System Dermoid Cyst 7 194133 -NCIT:C6808 Dermoid Cyst of the Spinal Cord 8 194134 -NCIT:C6754 Pineal Region Mature Teratoma 7 194135 -NCIT:C7104 Mediastinal Mature Teratoma 6 194136 -NCIT:C8112 Mature Ovarian Teratoma 6 194137 -NCIT:C3856 Ovarian Dermoid Cyst 7 194138 -NCIT:C39996 Ovarian Fetiform Teratoma 7 194139 -NCIT:C6548 Childhood Ovarian Mature Teratoma 7 194140 -NCIT:C7285 Ovarian Solid Teratoma 7 194141 -NCIT:C9011 Dermoid Cyst 6 194142 -NCIT:C128113 Vaginal Dermoid Cyst 7 194143 -NCIT:C36092 Testicular Dermoid Cyst 7 194144 -NCIT:C3856 Ovarian Dermoid Cyst 7 194145 -NCIT:C4548 Orbit Dermoid Cyst 7 194146 -NCIT:C4632 Dermoid Cyst of the Skin 7 194147 -NCIT:C5508 Central Nervous System Dermoid Cyst 7 194148 -NCIT:C6808 Dermoid Cyst of the Spinal Cord 8 194149 -NCIT:C95559 Pancreatic Mature Teratoma 6 194150 -NCIT:C6751 Benign Extragonadal Germ Cell Tumor 4 194151 -NCIT:C147106 Benign Pericardial Germ Cell Tumor 5 194152 -NCIT:C6744 Pericardial Mature Teratoma 6 194153 -NCIT:C5260 Mature Gastric Teratoma 5 194154 -NCIT:C5357 Benign Cardiac Germ Cell Tumor 5 194155 -NCIT:C6445 Benign Mediastinal Germ Cell Tumor 5 194156 -NCIT:C7104 Mediastinal Mature Teratoma 6 194157 -NCIT:C7013 Central Nervous System Mature Teratoma 5 194158 -NCIT:C155808 Sellar Mature Teratoma 6 194159 -NCIT:C27400 Adult Central Nervous System Mature Teratoma 6 194160 -NCIT:C27404 Childhood Central Nervous System Mature Teratoma 6 194161 -NCIT:C5508 Central Nervous System Dermoid Cyst 6 194162 -NCIT:C6808 Dermoid Cyst of the Spinal Cord 7 194163 -NCIT:C6754 Pineal Region Mature Teratoma 6 194164 -NCIT:C95559 Pancreatic Mature Teratoma 5 194165 -NCIT:C8531 Benign Respiratory System Neoplasm 3 194166 -NCIT:C3602 Benign Tracheal Neoplasm 4 194167 -NCIT:C6049 Tracheal Leiomyoma 5 194168 -NCIT:C4454 Benign Lung Neoplasm 4 194169 -NCIT:C133091 Lung Adenofibroma 5 194170 -NCIT:C142784 Benign Lung PEComa 5 194171 -NCIT:C38152 Lung Clear Cell Tumor 6 194172 -NCIT:C142829 Lung Myoepithelioma 5 194173 -NCIT:C190105 Fetal Lung Interstitial Tumor 5 194174 -NCIT:C190621 Childhood Benign Lung Neoplasm 5 194175 -NCIT:C190105 Fetal Lung Interstitial Tumor 6 194176 -NCIT:C3497 Pulmonary Hamartoma 5 194177 -NCIT:C5662 Endobronchial Hamartoma 6 194178 -NCIT:C5663 Multiple Pulmonary Hamartomas 6 194179 -NCIT:C4455 Lung Adenoma 5 194180 -NCIT:C183045 Bronchiolar Adenoma/Ciliated Muconodular Papillary Tumor 6 194181 -NCIT:C3494 Lung Papillary Adenoma 6 194182 -NCIT:C4140 Alveolar Adenoma 6 194183 -NCIT:C45603 Lung Pleomorphic Adenoma 6 194184 -NCIT:C45604 Lung Mucinous Cystadenoma 6 194185 -NCIT:C5656 Sclerosing Pneumocytoma 6 194186 -NCIT:C5664 Lung Mucous Gland Adenoma 6 194187 -NCIT:C45629 Lung Chondroma 5 194188 -NCIT:C4888 Benign Lung Hilum Neoplasm 5 194189 -NCIT:C5063 Endobronchial Lipoma 5 194190 -NCIT:C5657 Lung Myolipoma 5 194191 -NCIT:C5658 Lung Fibroma 5 194192 -NCIT:C5660 Lung Leiomyoma 5 194193 -NCIT:C5661 Endobronchial Leiomyoma 6 194194 -NCIT:C8295 Bronchial Papilloma 5 194195 -NCIT:C45573 Lung Squamous Papilloma 6 194196 -NCIT:C45601 Bronchial Glandular Papilloma 6 194197 -NCIT:C45602 Bronchial Mixed Squamous Cell and Glandular Papilloma 6 194198 -NCIT:C8539 Benign Great Vessel Neoplasm 3 194199 -NCIT:C45230 Neoplasm by Obsolete Classification 2 194200 -NCIT:C3843 Malignant Ovarian Cyst 3 194201 -NCIT:C40136 Uterine Ligament Serous Adenocarcinoma 3 194202 -NCIT:C54317 Odontoameloblastoma 3 194203 -NCIT:C62241 Epithelial Neoplasm (Antiquated) 3 194204 -NCIT:C126457 Low Grade Fallopian Tube Serous Adenocarcinoma 4 194205 -NCIT:C156456 Recurrent Low Grade Fallopian Tube Serous Adenocarcinoma 5 194206 -NCIT:C178678 Refractory Low Grade Fallopian Tube Serous Adenocarcinoma 5 194207 -NCIT:C126478 Broad Ligament Serous Adenofibroma 4 194208 -NCIT:C126477 Broad Ligament Serous Cystadenofibroma 5 194209 -NCIT:C126480 Low Grade Broad Ligament Serous Adenocarcinoma 4 194210 -NCIT:C27234 Nipple Duct Carcinoma 4 194211 -NCIT:C27523 Classic Type Trichoepithelioma 4 194212 -NCIT:C27791 Non-Invasive Verrucous Carcinoma of the Penis 4 194213 -NCIT:C27840 Endometrial Endometrioid Adenocarcinoma with Papillae 4 194214 -NCIT:C27847 Endometrial Endometrioid Adenocarcinoma with Small Nonvillous Papillae 5 194215 -NCIT:C27841 Endometrial Endometrioid Adenocarcinoma with Small Glands, Tubules or Cords 4 194216 -NCIT:C27842 Endometrial Endometrioid Adenocarcinoma with Metaplastic Changes 4 194217 -NCIT:C35423 Complex Endometrial Hyperplasia 4 194218 -NCIT:C35560 Complex Endometrial Hyperplasia with Atypia 5 194219 -NCIT:C35463 Simple Endometrial Hyperplasia 4 194220 -NCIT:C6991 Simple Endometrial Hyperplasia with Atypia 5 194221 -NCIT:C35725 Grade II Neuroendocrine Carcinoma 4 194222 -NCIT:C35726 Grade III Neuroendocrine Carcinoma 4 194223 -NCIT:C27092 Small Cell Carcinoma, Fusiform Cell Type 5 194224 -NCIT:C4099 Small Cell Intermediate Cell Carcinoma 5 194225 -NCIT:C35727 Grade I Neuroendocrine Carcinoma 4 194226 -NCIT:C36053 Epithelial Predominant Pulmonary Blastoma 4 194227 -NCIT:C36054 Biphasic Pulmonary Blastoma 4 194228 -NCIT:C3763 Pulmonary Adenomatosis 4 194229 -NCIT:C39809 Type 1 Renal Papillary Adenoma 4 194230 -NCIT:C39810 Type 2 Renal Papillary Adenoma 4 194231 -NCIT:C40060 Ovarian Endometrioid Adenocarcinofibroma 4 194232 -NCIT:C40140 Borderline Uterine Ligament Neoplasm 4 194233 -NCIT:C4101 Verrucous Papilloma 4 194234 -NCIT:C4110 Intraepidermal Epithelioma of Jadassohn 4 194235 -NCIT:C41245 Pancreatic Non-Invasive Mucinous Cystadenocarcinoma 4 194236 -NCIT:C4125 Superficial Spreading Adenocarcinoma 4 194237 -NCIT:C4156 Water-Clear Cell Adenocarcinoma 4 194238 -NCIT:C4158 Mixed Cell Adenocarcinoma 4 194239 -NCIT:C4173 Papillary Eccrine Adenoma 4 194240 -NCIT:C4198 Complex Epithelial Neoplasm 4 194241 -NCIT:C43328 Trichoepithelial Carcinoma 4 194242 -NCIT:C43329 Trichofollicular Carcinoma 4 194243 -NCIT:C43355 Syringoacanthoma 4 194244 -NCIT:C43601 Gallbladder Tubular Adenoma 4 194245 -NCIT:C43602 Gallbladder Papillary Adenoma 4 194246 -NCIT:C43603 Gallbladder Tubulopapillary Adenoma 4 194247 -NCIT:C45508 Lung Adenocarcinoma, Mixed Subtype 4 194248 -NCIT:C65197 Lung Adenocarcinoma with Mixed Bronchioloalveolar and Invasive Components 5 194249 -NCIT:C45514 Lung Signet Ring Cell Carcinoma 4 194250 -NCIT:C45516 Lung Clear Cell Adenocarcinoma 4 194251 -NCIT:C45567 Low Grade Lung Neuroendocrine Neoplasm 4 194252 -NCIT:C45568 Intermediate Grade Lung Neuroendocrine Neoplasm 4 194253 -NCIT:C45922 Pituitary Gland Neoplasm (Antiquated) 4 194254 -NCIT:C27392 Pituitary Gland Basophil Carcinoma 5 194255 -NCIT:C2856 Pituitary Gland Basophil Adenoma 5 194256 -NCIT:C2857 Pituitary Gland Chromophobe Adenoma 5 194257 -NCIT:C4147 Pituitary Gland Acidophil Carcinoma 5 194258 -NCIT:C4148 Pituitary Gland Mixed Acidophil-Basophil Adenoma 5 194259 -NCIT:C4149 Pituitary Gland Mixed Acidophil-Basophil Carcinoma 5 194260 -NCIT:C6780 Pituitary Gland Acidophil Adenoma 5 194261 -NCIT:C5246 Benign Ovarian Partly Luteinized Thecoma 4 194262 -NCIT:C5713 Pancreatic Mucinous Cystadenocarcinoma 4 194263 -NCIT:C5718 Pancreatic Mucinous Cystadenoma 4 194264 -NCIT:C5719 Pancreatic Intraductal Papillary-Mucinous Neoplasm with Intermediate Grade Dysplasia 4 194265 -NCIT:C5725 Pancreatic Intraductal Papillary-Mucinous Carcinoma 4 194266 -NCIT:C5728 Solid Pseudopapillary Carcinoma of the Pancreas 4 194267 -NCIT:C5892 Stage 0 Oral Cavity Verrucous Carcinoma 4 194268 -NCIT:C6024 Laryngeal Carcinoid Tumor 4 194269 -NCIT:C6158 Infiltrating Ureter Urothelial Carcinoma with Mixed Differentiation 4 194270 -NCIT:C6267 Fallopian Tube Papillary Adenocarcinoma 4 194271 -NCIT:C65154 Malignant Tumor, Small Cell Type 4 194272 -NCIT:C65159 Glassy Cell Carcinoma 4 194273 -NCIT:C65160 Giant Cell and Spindle Cell Carcinoma 4 194274 -NCIT:C65161 Polygonal Cell Carcinoma 4 194275 -NCIT:C65184 Islet Cell Adenoma 4 194276 -NCIT:C67455 Pancreatic Alpha Cell Adenoma 5 194277 -NCIT:C67457 Pancreatic Beta Cell Adenoma 5 194278 -NCIT:C67459 Pancreatic G-Cell Adenoma 5 194279 -NCIT:C67460 Pancreatic Delta Cell Adenoma 5 194280 -NCIT:C65195 Carcinoma Simplex 4 194281 -NCIT:C65196 Carcinoid Tumor of Uncertain Malignant Potential 4 194282 -NCIT:C66718 Medullary Carcinoma, Not Otherwise Specified 4 194283 -NCIT:C66746 Benign Thymoma 4 194284 -NCIT:C66925 Enteroglucagonoma 4 194285 -NCIT:C65191 Malignant Enteroglucagonoma 5 194286 -NCIT:C67453 Pancreatic Polypeptide Tumor 4 194287 -NCIT:C6883 Pancreatic Mucinous-Cystic Neoplasm with Intermediate Grade Dysplasia 4 194288 -NCIT:C7271 Borderline Ovarian Serous Papillary Cystic Tumor 4 194289 -NCIT:C7315 Borderline Ovarian Serous Surface Papillary Tumor 4 194290 -NCIT:C7364 Diffuse Intraductal Papillomatosis 4 194291 -NCIT:C7365 Focal Intraductal Papillomatosis 4 194292 -NCIT:C7380 Thyroid Gland Papillary and Follicular Carcinoma 4 194293 -NCIT:C7645 Breast Intracystic Papillary Carcinoma 4 194294 -NCIT:C7907 Thyroid Gland Undifferentiated Small Cell Carcinoma 4 194295 -NCIT:C7995 Granular Renal Cell Carcinoma 4 194296 -NCIT:C8198 Stage I Oral Cavity Verrucous Carcinoma 4 194297 -NCIT:C8202 Stage II Oral Cavity Verrucous Carcinoma 4 194298 -NCIT:C8206 Stage III Oral Cavity Verrucous Carcinoma 4 194299 -NCIT:C8210 Stage IV Oral Cavity Verrucous Carcinoma 4 194300 -NCIT:C5869 Stage IVA Oral Cavity Verrucous Carcinoma 5 194301 -NCIT:C5870 Stage IVB Oral Cavity Verrucous Carcinoma 5 194302 -NCIT:C5871 Stage IVC Oral Cavity Verrucous Carcinoma 5 194303 -NCIT:C8717 Mucin-Rich Endometrial Endometrioid Adenocarcinoma 4 194304 -NCIT:C87778 Cancer Stage (Antiquated) 4 194305 -NCIT:C4442 Stage 0 Extrahepatic Bile Duct Cancer 5 194306 -NCIT:C5693 Stage IVB Esophageal Cancer 5 194307 -NCIT:C6734 Stage IVB Esophageal Adenocarcinoma 6 194308 -NCIT:C6735 Stage IVB Esophageal Squamous Cell Carcinoma 6 194309 -NCIT:C5694 Stage IVA Esophageal Cancer 5 194310 -NCIT:C6733 Stage IVA Esophageal Adenocarcinoma 6 194311 -NCIT:C6736 Stage IVA Esophageal Squamous Cell Carcinoma 6 194312 -NCIT:C5730 Stage IVA Pancreatic Cancer 5 194313 -NCIT:C5769 Stage I Extrahepatic Bile Duct Cancer 5 194314 -NCIT:C5770 Stage II Extrahepatic Bile Duct Cancer 5 194315 -NCIT:C5771 Stage III Extrahepatic Bile Duct Cancer 5 194316 -NCIT:C5772 Stage IV Extrahepatic Bile Duct Cancer 5 194317 -NCIT:C5773 Stage IVA Extrahepatic Bile Duct Cancer 6 194318 -NCIT:C5774 Stage IVB Extrahepatic Bile Duct Cancer 6 194319 -NCIT:C5998 Stage IIA Nasopharyngeal Carcinoma 5 194320 -NCIT:C5999 Stage IIB Nasopharyngeal Carcinoma 5 194321 -NCIT:C6106 Stage I Retinoblastoma 5 194322 -NCIT:C6107 Stage IA Retinoblastoma 6 194323 -NCIT:C6108 Stage IB Retinoblastoma 6 194324 -NCIT:C6109 Stage II Retinoblastoma 5 194325 -NCIT:C6110 Stage IIA Retinoblastoma 6 194326 -NCIT:C6111 Stage IIB Retinoblastoma 6 194327 -NCIT:C6112 Stage IIC Retinoblastoma 6 194328 -NCIT:C6113 Stage III Retinoblastoma 5 194329 -NCIT:C6114 Stage IIIA Retinoblastoma 6 194330 -NCIT:C6115 Stage IIIB Retinoblastoma 6 194331 -NCIT:C6116 Stage IV Retinoblastoma 5 194332 -NCIT:C6254 Stage IIA Nasopharyngeal Keratinizing Squamous Cell Carcinoma 5 194333 -NCIT:C6255 Stage IIB Nasopharyngeal Keratinizing Squamous Cell Carcinoma 5 194334 -NCIT:C7081 Colorectal Cancer by Astler-Coller Stage 5 194335 -NCIT:C36201 Astler-Coller B2 Colorectal Carcinoma 6 194336 -NCIT:C35674 Astler-Coller B2 Colon Carcinoma 7 194337 -NCIT:C36200 Astler-Coller B2 Rectal Carcinoma 7 194338 -NCIT:C36204 Astler-Coller B1 Colorectal Carcinoma 6 194339 -NCIT:C35568 Astler-Coller B1 Colon Carcinoma 7 194340 -NCIT:C36203 Astler-Coller B1 Rectal Carcinoma 7 194341 -NCIT:C5927 Astler-Coller A Colorectal Carcinoma 6 194342 -NCIT:C36202 Astler-Coller A Colon Carcinoma 7 194343 -NCIT:C5924 Astler-Coller A Rectal Carcinoma 7 194344 -NCIT:C5928 Astler-Coller B3 Colorectal Carcinoma 6 194345 -NCIT:C5919 Astler-Coller B3 Colon Carcinoma 7 194346 -NCIT:C5920 Astler-Coller B3 Rectal Carcinoma 7 194347 -NCIT:C5929 Astler-Coller C3 Colorectal Carcinoma 6 194348 -NCIT:C5921 Astler-Coller C3 Rectal Carcinoma 7 194349 -NCIT:C5930 Astler-Coller C2 Colorectal Carcinoma 6 194350 -NCIT:C36198 Astler-Coller C2 Colon Carcinoma 7 194351 -NCIT:C5923 Astler-Coller C2 Rectal Carcinoma 7 194352 -NCIT:C5931 Astler-Coller C1 Colorectal Carcinoma 6 194353 -NCIT:C36199 Astler-Coller C1 Colon Carcinoma 7 194354 -NCIT:C5922 Astler-Coller C1 Rectal Carcinoma 7 194355 -NCIT:C7082 Colon Cancer by Astler-Coller Stage 6 194356 -NCIT:C35568 Astler-Coller B1 Colon Carcinoma 7 194357 -NCIT:C35674 Astler-Coller B2 Colon Carcinoma 7 194358 -NCIT:C36198 Astler-Coller C2 Colon Carcinoma 7 194359 -NCIT:C36199 Astler-Coller C1 Colon Carcinoma 7 194360 -NCIT:C36202 Astler-Coller A Colon Carcinoma 7 194361 -NCIT:C5919 Astler-Coller B3 Colon Carcinoma 7 194362 -NCIT:C7083 Rectal Cancer by Astler-Coller Stage 6 194363 -NCIT:C36200 Astler-Coller B2 Rectal Carcinoma 7 194364 -NCIT:C36203 Astler-Coller B1 Rectal Carcinoma 7 194365 -NCIT:C5920 Astler-Coller B3 Rectal Carcinoma 7 194366 -NCIT:C5921 Astler-Coller C3 Rectal Carcinoma 7 194367 -NCIT:C5922 Astler-Coller C1 Rectal Carcinoma 7 194368 -NCIT:C5923 Astler-Coller C2 Rectal Carcinoma 7 194369 -NCIT:C5924 Astler-Coller A Rectal Carcinoma 7 194370 -NCIT:C8575 Stage IVB Pancreatic Cancer 5 194371 -NCIT:C8584 Stage IIC Soft Tissue Sarcoma 5 194372 -NCIT:C8573 Stage IIC Adult Soft Tissue Sarcoma 6 194373 -NCIT:C8626 Stage IV Gastric Cancer with Metastasis 5 194374 -NCIT:C8956 Stage IV Gastric Cancer without Metastasis 5 194375 -NCIT:C9365 Stage IIA Bladder Cancer 5 194376 -NCIT:C9366 Stage IIB Bladder Cancer 5 194377 -NCIT:C9367 Stage IVA Bladder Cancer 5 194378 -NCIT:C9368 Stage IVB Bladder Cancer 5 194379 -NCIT:C96421 High Grade Appendix Mucinous Adenocarcinoma 4 194380 -NCIT:C96808 Bile Duct Intraductal Papillary Neoplasm with Intermediate Grade Intraepithelial Neoplasia 4 194381 -NCIT:C96837 Bile Duct Mucinous Cystic Neoplasm with Intermediate Grade Intraepithelial Neoplasia 4 194382 -NCIT:C96878 Gallbladder Intracholecystic Papillary (Tubular) Neoplasm with Intermediate Grade Intraepithelial Neoplasia 4 194383 -NCIT:C96884 Gallbladder Mucinous Cystic Neoplasm with Intermediate Grade Intraepithelial Neoplasia 4 194384 -NCIT:C97965 Breast Solid Neuroendocrine Carcinoma 4 194385 -NCIT:C62277 Connective and Soft Tissue Neoplasm (Antiquated) 3 194386 -NCIT:C114598 Mixed Osteosarcoma 4 194387 -NCIT:C121583 Non-Cutaneous Leiomyosarcoma 4 194388 -NCIT:C27242 Low Risk Gastrointestinal Stromal Tumor 4 194389 -NCIT:C27239 Low Risk Gastric Gastrointestinal Stromal Tumor 5 194390 -NCIT:C27244 Low Risk Small Intestinal Gastrointestinal Stromal Tumor 5 194391 -NCIT:C27431 Low Risk Esophageal Gastrointestinal Stromal Tumor 5 194392 -NCIT:C27737 Low Risk Colorectal Gastrointestinal Stromal Tumor 5 194393 -NCIT:C27243 High Risk Gastrointestinal Stromal Tumor 4 194394 -NCIT:C27240 High Risk Gastric Gastrointestinal Stromal Tumor 5 194395 -NCIT:C27245 High Risk Small Intestinal Gastrointestinal Stromal Tumor 5 194396 -NCIT:C27432 High Risk Esophageal Gastrointestinal Stromal Tumor 5 194397 -NCIT:C27739 High Risk Colorectal Gastrointestinal Stromal Tumor 5 194398 -NCIT:C27271 Intermediate Risk Gastrointestinal Stromal Tumor 4 194399 -NCIT:C27433 Intermediate Risk Esophageal Gastrointestinal Stromal Tumor 5 194400 -NCIT:C27434 Intermediate Risk Small Intestinal Gastrointestinal Stromal Tumor 5 194401 -NCIT:C27435 Intermediate Risk Gastric Gastrointestinal Stromal Tumor 5 194402 -NCIT:C27738 Intermediate Risk Colorectal Gastrointestinal Stromal Tumor 5 194403 -NCIT:C27481 Mesenchymal Extraskeletal Chondrosarcoma 4 194404 -NCIT:C27731 Very Low Risk Gastrointestinal Stromal Tumor 4 194405 -NCIT:C27732 Very Low Risk Esophageal Gastrointestinal Stromal Tumor 5 194406 -NCIT:C27733 Very Low Risk Gastric Gastrointestinal Stromal Tumor 5 194407 -NCIT:C27734 Very Low Risk Small Intestinal Gastrointestinal Stromal Tumor 5 194408 -NCIT:C27736 Very Low Risk Colorectal Gastrointestinal Stromal Tumor 5 194409 -NCIT:C3233 Mesenchymoma 4 194410 -NCIT:C4267 Benign Mesenchymoma 5 194411 -NCIT:C84256 Renal Benign Mesenchymoma 6 194412 -NCIT:C4268 Malignant Mesenchymoma 5 194413 -NCIT:C7947 Adult Malignant Mesenchymoma 6 194414 -NCIT:C8097 Childhood Malignant Mesenchymoma 6 194415 -NCIT:C35081 Traumatic Myositis Ossificans 4 194416 -NCIT:C3634 Retinal Hemangioma 4 194417 -NCIT:C40220 Endometrioid Stromal Sarcoma of the Cervix 4 194418 -NCIT:C40270 Endometrioid Stromal Sarcoma of the Vagina 4 194419 -NCIT:C4252 Round Cell Liposarcoma 4 194420 -NCIT:C148299 Refractory Round Cell Liposarcoma 5 194421 -NCIT:C148300 Metastatic Round Cell Liposarcoma 5 194422 -NCIT:C168722 Advanced Round Cell Liposarcoma 6 194423 -NCIT:C168724 Unresectable Round Cell Liposarcoma 5 194424 -NCIT:C9401 Round Cell Liposarcoma NCI Grade 2 5 194425 -NCIT:C9402 Round Cell Liposarcoma NCI Grade 3 5 194426 -NCIT:C4744 Coccygeal Body Neoplasm 4 194427 -NCIT:C4624 Malignant Coccygeal Body Neoplasm 5 194428 -NCIT:C49104 Conventional Dermatofibrosarcoma Protuberans 4 194429 -NCIT:C6509 Fibroblastic Liposarcoma 4 194430 -NCIT:C6533 Fibrous Synovial Sarcoma 4 194431 -NCIT:C6575 Extraskeletal Osteoma 4 194432 -NCIT:C66759 Giant Cell Sarcoma 4 194433 -NCIT:C66763 Periosteal Fibrosarcoma 4 194434 -NCIT:C66771 Angiomyosarcoma 4 194435 -NCIT:C66772 Benign Stromal Tumor 4 194436 -NCIT:C66779 Benign Hemangioendothelioma 4 194437 -NCIT:C7076 Hemangiopericytic Neoplasm 4 194438 -NCIT:C3087 Hemangiopericytoma 5 194439 -NCIT:C40396 Breast Hemangiopericytoma 6 194440 -NCIT:C4300 Benign Hemangiopericytoma 6 194441 -NCIT:C27498 Infantile Hemangiopericytoma 7 194442 -NCIT:C27499 Lipomatous Hemangiopericytoma 7 194443 -NCIT:C5352 Benign Orbit Hemangiopericytoma 7 194444 -NCIT:C6597 Benign Mediastinal Hemangiopericytoma 7 194445 -NCIT:C6950 Benign Kidney Hemangiopericytoma 7 194446 -NCIT:C4301 Malignant Hemangiopericytoma 6 194447 -NCIT:C4493 Malignant Skin Hemangiopericytoma 7 194448 -NCIT:C4544 Malignant Orbit Hemangiopericytoma 7 194449 -NCIT:C5365 Malignant Cardiac Hemangiopericytoma 7 194450 -NCIT:C6608 Malignant Mediastinal Hemangiopericytoma 7 194451 -NCIT:C7946 Malignant Adult Hemangiopericytoma 7 194452 -NCIT:C8090 Malignant Childhood Hemangiopericytoma 7 194453 -NCIT:C8709 Metastatic Malignant Hemangiopericytoma 7 194454 -NCIT:C8710 Primary Malignant Hemangiopericytoma 7 194455 -NCIT:C9254 Recurrent Malignant Hemangiopericytoma 7 194456 -NCIT:C9392 Well Differentiated Malignant Hemangiopericytoma 7 194457 -NCIT:C9425 Conventional Malignant Hemangiopericytoma 7 194458 -NCIT:C4492 Skin Hemangiopericytoma 6 194459 -NCIT:C4493 Malignant Skin Hemangiopericytoma 7 194460 -NCIT:C4527 Kidney Hemangiopericytoma 6 194461 -NCIT:C6950 Benign Kidney Hemangiopericytoma 7 194462 -NCIT:C4547 Orbit Hemangiopericytoma 6 194463 -NCIT:C4544 Malignant Orbit Hemangiopericytoma 7 194464 -NCIT:C5352 Benign Orbit Hemangiopericytoma 7 194465 -NCIT:C5386 Retroperitoneal Hemangiopericytoma 6 194466 -NCIT:C9393 Malignant Hemangiopericytoma NCI Grade 2 5 194467 -NCIT:C9394 Malignant Hemangiopericytoma NCI Grade 3 5 194468 -NCIT:C7447 Granular Cell Odontogenic Fibroma 4 194469 -NCIT:C7448 Hybrid Odontogenic Fibroma 4 194470 -NCIT:C9395 Chondrosarcoma NCI Grade 3 4 194471 -NCIT:C9396 Chondrosarcoma NCI Grade 2 4 194472 -NCIT:C9399 Myxoid Chondrosarcoma NCI Grade 2 5 194473 -NCIT:C9397 Chondrosarcoma NCI Grade 1 4 194474 -NCIT:C9398 Myxoid Chondrosarcoma NCI Grade 1 4 194475 -NCIT:C9403 Fibrosarcoma NCI Grade 2 4 194476 -NCIT:C9405 Storiform-Pleomorphic Malignant Fibrous Histiocytoma NCI Grade 2 4 194477 -NCIT:C9406 Storiform-Pleomorphic Malignant Fibrous Histiocytoma NCI Grade 3 4 194478 -NCIT:C9407 Inflammatory Malignant Fibrous Histiocytoma NCI Grade 2 4 194479 -NCIT:C9408 Inflammatory Malignant Fibrous Histiocytoma NCI Grade 3 4 194480 -NCIT:C62279 Germ Cell Tumor (Antiquated) 3 194481 -NCIT:C28337 Stage IV Testicular Non-Seminomatous Germ Cell Tumor 4 194482 -NCIT:C4288 Intermediate Immature Teratoma 4 194483 -NCIT:C4996 Stage I Extragonadal Seminoma 4 194484 -NCIT:C66778 Malignant Trophoblastic Teratoma 4 194485 -NCIT:C7169 Pineal Region Dysgerminoma 4 194486 -NCIT:C8600 Stage II Extragonadal Mixed Germ Cell Tumor 4 194487 -NCIT:C8882 Stage I Extragonadal Mixed Germ Cell Tumor 4 194488 -NCIT:C8883 Stage III Extragonadal Mixed Germ Cell Tumor 4 194489 -NCIT:C8886 Stage I Extragonadal Non-Seminomatous Germ Cell Tumor 4 194490 -NCIT:C8887 Stage II Extragonadal Non-Seminomatous Germ Cell Tumor 4 194491 -NCIT:C8888 Stage III Extragonadal Non-Seminomatous Germ Cell Tumor 4 194492 -NCIT:C8889 Stage IV Extragonadal Non-Seminomatous Germ Cell Tumor 4 194493 -NCIT:C8890 Stage II Extragonadal Seminoma 4 194494 -NCIT:C8891 Stage III Extragonadal Seminoma 4 194495 -NCIT:C8892 Stage IV Extragonadal Seminoma 4 194496 -NCIT:C6390 Gestational Trophoblastic Tumor by FIGO Stage 3 194497 -NCIT:C6391 FIGO Stage I Gestational Trophoblastic Tumor 4 194498 -NCIT:C6392 FIGO Stage IA Gestational Trophoblastic Tumor 5 194499 -NCIT:C6394 FIGO Stage IB Gestational Trophoblastic Tumor 5 194500 -NCIT:C6395 FIGO Stage IC Gestational Trophoblastic Tumor 5 194501 -NCIT:C6396 FIGO Stage II Gestational Trophoblastic Tumor 4 194502 -NCIT:C6397 FIGO Stage IIA Gestational Trophoblastic Tumor 5 194503 -NCIT:C6398 FIGO Stage IIB Gestational Trophoblastic Tumor 5 194504 -NCIT:C6399 FIGO Stage IIC Gestational Trophoblastic Tumor 5 194505 -NCIT:C6400 FIGO Stage III Gestational Trophoblastic Tumor 4 194506 -NCIT:C6401 FIGO Stage IIIA Gestational Trophoblastic Tumor 5 194507 -NCIT:C6402 FIGO Stage IIIB Gestational Trophoblastic Tumor 5 194508 -NCIT:C6403 FIGO Stage IIIC Gestational Trophoblastic Tumor 5 194509 -NCIT:C6404 FIGO Stage IV Gestational Trophoblastic Tumor 4 194510 -NCIT:C6405 FIGO Stage IVA Gestational Trophoblastic Tumor 5 194511 -NCIT:C6406 FIGO Stage IVB Gestational Trophoblastic Tumor 5 194512 -NCIT:C6407 FIGO Stage IVC Gestational Trophoblastic Tumor 5 194513 -NCIT:C66751 Granulosa Cell-Theca Cell Tumor 3 194514 -NCIT:C66752 Clear Cell Neoplasm 3 194515 -NCIT:C65156 Clear Cell Malignant Neoplasm 4 194516 -NCIT:C66816 Spontaneously Regressed Retinoblastoma 3 194517 -NCIT:C66818 Nervous System Neoplasm (Antiquated) 3 194518 -NCIT:C66801 Polar Spongioblastoma 4 194519 -NCIT:C66802 Oligodendroblastoma 4 194520 -NCIT:C66803 Cerebellar Sarcoma 4 194521 -NCIT:C66808 Medulloepithelioma Not Otherwise Specified 4 194522 -NCIT:C66811 Spongioneuroblastoma 4 194523 -NCIT:C66817 Hemangioblastic Meningioma 4 194524 -NCIT:C7172 Central Nervous System Neuroepithelial Neoplasm of Uncertain Origin 4 194525 -NCIT:C8497 Neurofibromatosis 1 and 2 (NF1 and NF2) 4 194526 -NCIT:C7340 Hematopoietic and Lymphoid Neoplasm (Antiquated) 3 194527 -NCIT:C26919 Lymphosarcoma 4 194528 -NCIT:C26960 Lymphosarcoma Involving Spleen 5 194529 -NCIT:C27080 Refractory Anemia with Excess Blasts in Transformation 4 194530 -NCIT:C27260 Dendritic Cell Tumor, Not Otherwise Specified 4 194531 -NCIT:C27267 Lymphoma/Leukemia by Kiel Classification (Antiquated) 4 194532 -NCIT:C4338 Diffuse Centroblastic-Centrocytic Lymphoma 5 194533 -NCIT:C8994 Malignant Lymphoma Centroblastic, Follicular 5 194534 -NCIT:C27327 Stage I Centroblastic Follicular Lymphoma 6 194535 -NCIT:C27328 Stage II Centroblastic Follicular Lymphoma 6 194536 -NCIT:C27352 Peripheral T-Cell Lymphoma, Large Cell 4 194537 -NCIT:C27356 Leukemia (Antiquated) 4 194538 -NCIT:C114574 Adult Non-T Non-B Acute Lymphoblastic Leukemia 5 194539 -NCIT:C114580 Non-T Non-B CALLA Negative Adult Acute Lymphoblastic Leukemia 6 194540 -NCIT:C9144 Non-T Non-B CALLA Positive Adult Acute Lymphoblastic Leukemia 6 194541 -NCIT:C114576 Childhood Non-T Non-B Acute Lymphoblastic Leukemia 5 194542 -NCIT:C114579 Non-T Non-B CALLA Negative Childhood Acute Lymphoblastic Leukemia 6 194543 -NCIT:C9141 Non-T Non-B CALLA Positive Childhood Acute Lymphoblastic Leukemia 6 194544 -NCIT:C26813 Acute Eosinophilic Leukemia 5 194545 -NCIT:C7963 Adult Acute Eosinophilic Leukemia 6 194546 -NCIT:C9165 Childhood Acute Eosinophilic Leukemia 6 194547 -NCIT:C27261 Pre T-ALL 5 194548 -NCIT:C27281 L2 Acute Lymphoblastic Leukemia 5 194549 -NCIT:C114562 Childhood L2 Acute Lymphoblastic Leukemia 6 194550 -NCIT:C114581 Adult L2 Acute Lymphoblastic Leukemia 6 194551 -NCIT:C27290 L1 Acute Lymphoblastic Leukemia 5 194552 -NCIT:C114560 Childhood L1 Acute Lymphoblastic Leukemia 6 194553 -NCIT:C27278 Adult L1 Acute Lymphoblastic Leukemia 6 194554 -NCIT:C27361 Philadelphia Chromosome Negative BCR-ABL1 Negative Chronic Myelogenous Leukemia 5 194555 -NCIT:C27797 Common Acute Lymphoblastic Leukemia 5 194556 -NCIT:C27798 Pre-B Acute Lymphoblastic Leukemia 5 194557 -NCIT:C114599 Adult Pre-B Acute Lymphoblastic Leukemia 6 194558 -NCIT:C114600 Childhood Pre-B Acute Lymphoblastic Leukemia 6 194559 -NCIT:C27799 Pre-Pre-B Acute Lymphoblastic Leukemia 5 194560 -NCIT:C27820 Mature T-ALL 5 194561 -NCIT:C3162 B-Cell Leukemia 5 194562 -NCIT:C3165 CALLA Positive Lymphoblastic Leukemia 5 194563 -NCIT:C9141 Non-T Non-B CALLA Positive Childhood Acute Lymphoblastic Leukemia 6 194564 -NCIT:C9144 Non-T Non-B CALLA Positive Adult Acute Lymphoblastic Leukemia 6 194565 -NCIT:C67519 TdT Negative Acute Lymphoblastic Leukemia 5 194566 -NCIT:C114595 Adult TdT Negative Acute Lymphoblastic Leukemia 6 194567 -NCIT:C114596 Childhood TdT Negative Acute Lymphoblastic Leukemia 6 194568 -NCIT:C68689 TdT Positive Acute Lymphoblastic Leukemia 5 194569 -NCIT:C114593 Adult TdT Positive Acute Lymphoblastic Leukemia 6 194570 -NCIT:C114594 Childhood TdT Positive Acute Lymphoblastic Leukemia 6 194571 -NCIT:C70649 T-Cell Chronic Lymphocytic Leukemia 5 194572 -NCIT:C27809 Hodgkin's Lymphoma (Antiquated) 4 194573 -NCIT:C164145 Hodgkin's Sarcoma 5 194574 -NCIT:C26956 Hodgkin's Paragranuloma 5 194575 -NCIT:C26961 Hodgkin's Paragranuloma Involving Spleen 5 194576 -NCIT:C27098 Hodgkin's Disease, Nodular Sclerosis, Mixed Cellularity 5 194577 -NCIT:C27270 Hodgkin's Disease, Nodular Sclerosis, Lymphocyte Predominance 5 194578 -NCIT:C27808 Hodgkin's Disease, Nodular Sclerosis, Lymphocyte Depletion 5 194579 -NCIT:C66846 Hodgkin's Disease, Lymphocyte Depletion, Diffuse Fibrosis 5 194580 -NCIT:C66847 Hodgkin's Disease, Lymphocyte Depletion, Reticular 5 194581 -NCIT:C6914 Hodgkin's Granuloma 5 194582 -NCIT:C8590 Lymphocyte Predominant Type Hodgkin's Disease 5 194583 -NCIT:C8828 Recurrent Hodgkin's Disease Lymphocyte Predominance Type 6 194584 -NCIT:C8829 Refractory Hodgkin's Disease Lymphocyte Predominance Type 6 194585 -NCIT:C8830 Stage III Hodgkin's Disease Lymphocyte Predominance Type 6 194586 -NCIT:C8831 Stage IV Hodgkin's Disease Lymphocyte Predominance Type 6 194587 -NCIT:C27824 Reticulosarcoma 4 194588 -NCIT:C26959 Reticulosarcoma Involving Spleen 5 194589 -NCIT:C27951 Lymphoma by Lukes-Collins Classification (Antiquated) 4 194590 -NCIT:C34774 Chronic Monocytic Leukemia 4 194591 -NCIT:C35382 True Histiocytic Lymphoma 4 194592 -NCIT:C36276 Polyclonal Polymorphic Post-Transplant Lymphoproliferative Disorder 4 194593 -NCIT:C36277 Monoclonal Polymorphic Post-Transplant Lymphoproliferative Disorder 4 194594 -NCIT:C3825 Pseudolymphoma 4 194595 -NCIT:C5091 Stage I Splenic Marginal Zone Lymphoma 4 194596 -NCIT:C5092 Stage II Splenic Marginal Zone Lymphoma 4 194597 -NCIT:C5093 Stage III Splenic Marginal Zone Lymphoma 4 194598 -NCIT:C5094 Stage IV Splenic Marginal Zone Lymphoma 4 194599 -NCIT:C7186 Lymphoma by Working Formulation (Antiquated) 4 194600 -NCIT:C27249 Non-Hodgkin's Lymphoma, Lymphoblastic (WF) 5 194601 -NCIT:C27800 Mycosis Fungoides (Working Formulation) 5 194602 -NCIT:C27822 Diffuse Malignant Lymphoma 5 194603 -NCIT:C27099 Malignant Lymphoma, Histiocytic, Diffuse 6 194604 -NCIT:C27259 Malignant Non-Hodgkin's Lymphoma, Diffuse, Lymphocytic, Poorly Differentiated 6 194605 -NCIT:C27266 Malignant Lymphoma, Non-Cleaved, Diffuse 6 194606 -NCIT:C7213 AIDS-Related Diffuse Large Cell Lymphoma 6 194607 -NCIT:C7872 Adult Diffuse Large Cell Lymphoma 6 194608 -NCIT:C8077 Stage I Adult Diffuse Large Cell Lymphoma 7 194609 -NCIT:C8122 Stage II Adult Diffuse Large Cell Lymphoma 7 194610 -NCIT:C8475 Stage II Contiguous Adult Diffuse Large Cell Lymphoma 8 194611 -NCIT:C8480 Stage II Non-Contiguous Adult Diffuse Large Cell Lymphoma 8 194612 -NCIT:C8135 Stage III Adult Diffuse Large Cell Lymphoma 7 194613 -NCIT:C8148 Stage IV Adult Diffuse Large Cell Lymphoma 7 194614 -NCIT:C8161 Recurrent Adult Diffuse Large Cell Lymphoma 7 194615 -NCIT:C8296 AIDS-Related Diffuse Mixed Cell Lymphoma 6 194616 -NCIT:C8297 AIDS-Related Diffuse Small Cleaved Cell Lymphoma 6 194617 -NCIT:C27826 AIDS-Related Lymphoma by Working Formulation 5 194618 -NCIT:C7213 AIDS-Related Diffuse Large Cell Lymphoma 6 194619 -NCIT:C8296 AIDS-Related Diffuse Mixed Cell Lymphoma 6 194620 -NCIT:C8297 AIDS-Related Diffuse Small Cleaved Cell Lymphoma 6 194621 -NCIT:C27827 Malignant Lymphoma by Cell Type (Working Formulation) 5 194622 -NCIT:C27258 Malignant Lymphoma, Non-Cleaved Cell Type 6 194623 -NCIT:C27266 Malignant Lymphoma, Non-Cleaved, Diffuse 7 194624 -NCIT:C7187 Non-Burkitt's Lymphoma 7 194625 -NCIT:C8995 Malignant Lymphoma Follicular, Large Noncleaved Cell Type 7 194626 -NCIT:C27810 Malignant Non-Hodgkin Lymphoma, Cleaved Cell 6 194627 -NCIT:C27265 Malignant Lymphoma, Large Cell, Cleaved 7 194628 -NCIT:C8996 Malignant Lymphoma Follicular, Large Cleaved Cell Type 8 194629 -NCIT:C27811 Malignant Non-Hodgkin's Lymphoma, Small Cleaved Cell 7 194630 -NCIT:C3464 Adult Diffuse Small Cleaved Cell Lymphoma 7 194631 -NCIT:C70588 Recurrent Adult Diffuse Small Cleaved Cell Lymphoma 8 194632 -NCIT:C8075 Stage I Adult Diffuse Small Cleaved Cell Lymphoma 8 194633 -NCIT:C8120 Stage II Adult Diffuse Small Cleaved Cell Lymphoma 8 194634 -NCIT:C8471 Stage II Contiguous Adult Diffuse Small Cleaved Cell Lymphoma 9 194635 -NCIT:C9197 Stage II Non-Contiguous Adult Diffuse Small Cleaved Cell Lymphoma 9 194636 -NCIT:C8133 Stage III Adult Diffuse Small Cleaved Cell Lymphoma 8 194637 -NCIT:C8146 Stage IV Adult Diffuse Small Cleaved Cell Lymphoma 8 194638 -NCIT:C8297 AIDS-Related Diffuse Small Cleaved Cell Lymphoma 7 194639 -NCIT:C27821 Malignant Lymphoma, Convoluted 6 194640 -NCIT:C27823 Malignant Lymphoma, Large Cell Type 6 194641 -NCIT:C27099 Malignant Lymphoma, Histiocytic, Diffuse 7 194642 -NCIT:C27272 Malignant Lymphoma, Large Cell, Cleaved and Non-Cleaved 7 194643 -NCIT:C7213 AIDS-Related Diffuse Large Cell Lymphoma 7 194644 -NCIT:C7872 Adult Diffuse Large Cell Lymphoma 7 194645 -NCIT:C8077 Stage I Adult Diffuse Large Cell Lymphoma 8 194646 -NCIT:C8122 Stage II Adult Diffuse Large Cell Lymphoma 8 194647 -NCIT:C8475 Stage II Contiguous Adult Diffuse Large Cell Lymphoma 9 194648 -NCIT:C8480 Stage II Non-Contiguous Adult Diffuse Large Cell Lymphoma 9 194649 -NCIT:C8135 Stage III Adult Diffuse Large Cell Lymphoma 8 194650 -NCIT:C8148 Stage IV Adult Diffuse Large Cell Lymphoma 8 194651 -NCIT:C8161 Recurrent Adult Diffuse Large Cell Lymphoma 8 194652 -NCIT:C8310 Childhood Large Cell Lymphoma 7 194653 -NCIT:C8305 Stage I Childhood Large Cell Lymphoma 8 194654 -NCIT:C8306 Stage II Childhood Large Cell Lymphoma 8 194655 -NCIT:C8307 Stage III Childhood Large Cell Lymphoma 8 194656 -NCIT:C8308 Stage IV Childhood Large Cell Lymphoma 8 194657 -NCIT:C8309 Recurrent Childhood Large Cell Lymphoma 8 194658 -NCIT:C9076 Childhood Diffuse Large Cell Lymphoma 8 194659 -NCIT:C3458 High Grade Lymphoma 5 194660 -NCIT:C4736 High Grade T-Cell Lymphoma 6 194661 -NCIT:C6817 High Grade B-Cell Non-Hodgkin's Lymphoma 6 194662 -NCIT:C5005 High Grade Burkitt-Like Lymphoma 7 194663 -NCIT:C4999 Stage IV High Grade Burkitt-Like Lymphoma 8 194664 -NCIT:C5000 Stage III High Grade Burkitt-Like Lymphoma 8 194665 -NCIT:C5001 Stage II High Grade Burkitt-Like Lymphoma 8 194666 -NCIT:C5002 Stage I High Grade Burkitt-Like Lymphoma 8 194667 -NCIT:C5003 Refractory High Grade Burkitt-Like Lymphoma 8 194668 -NCIT:C5004 Recurrent High Grade Burkitt-Like Lymphoma 8 194669 -NCIT:C9109 High Grade Adult Non-Hodgkin's Lymphoma 6 194670 -NCIT:C8081 Stage I High Grade Adult Non-Hodgkin's Lymphoma 7 194671 -NCIT:C8123 Stage II High Grade Adult Non-Hodgkin's Lymphoma 7 194672 -NCIT:C8136 Stage III High Grade Adult Non-Hodgkin's Lymphoma 7 194673 -NCIT:C8149 Stage IV High Grade Adult Non-Hodgkin's Lymphoma 7 194674 -NCIT:C8162 Recurrent High Grade Adult Non-Hodgkin's Lymphoma 7 194675 -NCIT:C3459 Intermediate Grade Lymphoma 5 194676 -NCIT:C3210 Mixed Cell Lymphoma 6 194677 -NCIT:C3463 Diffuse Mixed Cell Lymphoma 7 194678 -NCIT:C7871 Adult Diffuse Mixed Cell Lymphoma 8 194679 -NCIT:C8076 Stage I Adult Diffuse Mixed Cell Lymphoma 9 194680 -NCIT:C8121 Stage II Adult Diffuse Mixed Cell Lymphoma 9 194681 -NCIT:C8474 Stage II Contiguous Adult Diffuse Mixed Cell Lymphoma 10 194682 -NCIT:C9199 Stage II Non-Contiguous Adult Diffuse Mixed Cell Lymphoma 10 194683 -NCIT:C8134 Stage III Adult Diffuse Mixed Cell Lymphoma 9 194684 -NCIT:C8147 Stage IV Adult Diffuse Mixed Cell Lymphoma 9 194685 -NCIT:C8160 Recurrent Adult Diffuse Mixed Cell Lymphoma 9 194686 -NCIT:C8296 AIDS-Related Diffuse Mixed Cell Lymphoma 8 194687 -NCIT:C6819 Intermediate Grade B-Cell Non-Hodgkin's Lymphoma 6 194688 -NCIT:C9108 Intermediate Grade Adult Non-Hodgkin's Lymphoma 6 194689 -NCIT:C8074 Stage I Intermediate Grade Adult Non-Hodgkin's Lymphoma 7 194690 -NCIT:C8118 Stage II Intermediate Grade Adult Non-Hodgkin's Lymphoma 7 194691 -NCIT:C8131 Stage III Intermediate Grade Adult Non-Hodgkin's Lymphoma 7 194692 -NCIT:C8144 Stage IV Intermediate Grade Adult Non-Hodgkin's Lymphoma 7 194693 -NCIT:C8157 Recurrent Intermediate Grade Adult Non-Hodgkin's Lymphoma 7 194694 -NCIT:C3462 Low Grade Lymphoma 5 194695 -NCIT:C4735 Low Grade T-Cell Lymphoma 6 194696 -NCIT:C6816 Low Grade B-Cell Non-Hodgkin's Lymphoma 6 194697 -NCIT:C5314 Primary Low Grade B-Cell Dural Lymphoma 7 194698 -NCIT:C9098 Low Grade Adult Non-Hodgkin's Lymphoma 6 194699 -NCIT:C8069 Stage I Low Grade Adult Non-Hodgkin's Lymphoma 7 194700 -NCIT:C8082 Stage II Low Grade Adult Non-Hodgkin's Lymphoma 7 194701 -NCIT:C8127 Stage III Low Grade Adult Non-Hodgkin's Lymphoma 7 194702 -NCIT:C8140 Stage IV Low Grade Adult Non-Hodgkin's Lymphoma 7 194703 -NCIT:C8153 Recurrent Low Grade Adult Non-Hodgkin's Lymphoma 7 194704 -NCIT:C8068 Adult Non-Hodgkin's Lymphoma Stage 5 194705 -NCIT:C8166 Adult Non-Hodgkin's Lymphoma Grade 5 194706 -NCIT:C9098 Low Grade Adult Non-Hodgkin's Lymphoma 6 194707 -NCIT:C8069 Stage I Low Grade Adult Non-Hodgkin's Lymphoma 7 194708 -NCIT:C8082 Stage II Low Grade Adult Non-Hodgkin's Lymphoma 7 194709 -NCIT:C8127 Stage III Low Grade Adult Non-Hodgkin's Lymphoma 7 194710 -NCIT:C8140 Stage IV Low Grade Adult Non-Hodgkin's Lymphoma 7 194711 -NCIT:C8153 Recurrent Low Grade Adult Non-Hodgkin's Lymphoma 7 194712 -NCIT:C9108 Intermediate Grade Adult Non-Hodgkin's Lymphoma 6 194713 -NCIT:C8074 Stage I Intermediate Grade Adult Non-Hodgkin's Lymphoma 7 194714 -NCIT:C8118 Stage II Intermediate Grade Adult Non-Hodgkin's Lymphoma 7 194715 -NCIT:C8131 Stage III Intermediate Grade Adult Non-Hodgkin's Lymphoma 7 194716 -NCIT:C8144 Stage IV Intermediate Grade Adult Non-Hodgkin's Lymphoma 7 194717 -NCIT:C8157 Recurrent Intermediate Grade Adult Non-Hodgkin's Lymphoma 7 194718 -NCIT:C9109 High Grade Adult Non-Hodgkin's Lymphoma 6 194719 -NCIT:C8081 Stage I High Grade Adult Non-Hodgkin's Lymphoma 7 194720 -NCIT:C8123 Stage II High Grade Adult Non-Hodgkin's Lymphoma 7 194721 -NCIT:C8136 Stage III High Grade Adult Non-Hodgkin's Lymphoma 7 194722 -NCIT:C8149 Stage IV High Grade Adult Non-Hodgkin's Lymphoma 7 194723 -NCIT:C8162 Recurrent High Grade Adult Non-Hodgkin's Lymphoma 7 194724 -NCIT:C7202 Malignant Histiocytosis 4 194725 -NCIT:C7204 T-Zone Variant Peripheral T-Cell Lymphoma 4 194726 -NCIT:C7795 Stage I Cutaneous T-Cell Non-Hodgkin Lymphoma 4 194727 -NCIT:C7797 Stage II Cutaneous T-Cell Non-Hodgkin Lymphoma 4 194728 -NCIT:C7799 Stage III Cutaneous T-Cell Non-Hodgkin Lymphoma 4 194729 -NCIT:C7801 Stage IV Cutaneous T-Cell Non-Hodgkin Lymphoma 4 194730 -NCIT:C82991 Small Lymphocytic Lymphoma Variant 4 194731 -NCIT:C8502 Chronic Lymphoblastic Lymphoma 4 194732 -NCIT:C8597 Retro-Orbital Neoplasm 3 194733 -NCIT:C4798 Recurrent Neoplasm 2 194734 -NCIT:C115352 Recurrent Borderline Ovarian Surface Epithelial-Stromal Tumor 3 194735 -NCIT:C115432 Recurrent Sinonasal Inverted Papilloma 3 194736 -NCIT:C115445 Recurrent Childhood Kidney Neoplasm 3 194737 -NCIT:C162730 Recurrent Rhabdoid Tumor of the Kidney 4 194738 -NCIT:C128460 Recurrent Gastrointestinal Stromal Tumor 3 194739 -NCIT:C128637 Recurrent Respiratory Papillomatosis 3 194740 -NCIT:C157733 Laryngeal Papillomatosis 4 194741 -NCIT:C134172 Recurrent Histiocytic and Dendritic Cell Neoplasm 3 194742 -NCIT:C134175 Recurrent Langerhans Cell Histiocytosis 4 194743 -NCIT:C155875 Recurrent Desmoid Fibromatosis 3 194744 -NCIT:C157130 Recurrent Neuroendocrine Neoplasm 3 194745 -NCIT:C138183 Recurrent Abdominal Neuroendocrine Neoplasm 4 194746 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 5 194747 -NCIT:C157125 Recurrent Paraganglioma 4 194748 -NCIT:C8047 Recurrent Adrenal Gland Pheochromocytoma 5 194749 -NCIT:C165253 Recurrent Neuroendocrine Carcinoma 4 194750 -NCIT:C115440 Recurrent Merkel Cell Carcinoma 5 194751 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 6 194752 -NCIT:C165740 Locally Recurrent Merkel Cell Carcinoma 6 194753 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 5 194754 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 6 194755 -NCIT:C155938 Recurrent Digestive System Neuroendocrine Carcinoma 5 194756 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 6 194757 -NCIT:C183127 Recurrent Small Cell Neuroendocrine Carcinoma 5 194758 -NCIT:C183128 Recurrent Extrapulmonary Small Cell Neuroendocrine Carcinoma 6 194759 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 7 194760 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 7 194761 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 6 194762 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 7 194763 -NCIT:C176711 Recurrent Lung Neuroendocrine Neoplasm 4 194764 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 5 194765 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 6 194766 -NCIT:C188228 Recurrent Digestive System Neuroendocrine Neoplasm 4 194767 -NCIT:C155938 Recurrent Digestive System Neuroendocrine Carcinoma 5 194768 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 6 194769 -NCIT:C182030 Recurrent Nervous System Neoplasm 3 194770 -NCIT:C157125 Recurrent Paraganglioma 4 194771 -NCIT:C8047 Recurrent Adrenal Gland Pheochromocytoma 5 194772 -NCIT:C173916 Recurrent Metastatic Malignant Neoplasm in the Leptomeninges 4 194773 -NCIT:C182029 Recurrent Schwannoma 4 194774 -NCIT:C27295 Recurrent Primitive Neuroectodermal Tumor 4 194775 -NCIT:C173531 Recurrent Ganglioneuroblastoma 5 194776 -NCIT:C27899 Recurrent Peripheral Primitive Neuroectodermal Tumor 5 194777 -NCIT:C27354 Recurrent Peripheral Primitive Neuroectodermal Tumor of Bone 6 194778 -NCIT:C27900 Recurrent Askin Tumor 6 194779 -NCIT:C7837 Recurrent Neuroblastoma 5 194780 -NCIT:C115384 Recurrent Olfactory Neuroblastoma 6 194781 -NCIT:C71700 Recurrent Primary Central Nervous System Neoplasm 4 194782 -NCIT:C132506 Recurrent Glioma 5 194783 -NCIT:C114956 Recurrent Childhood Astrocytic Tumor 6 194784 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 7 194785 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 7 194786 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 8 194787 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 8 194788 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 8 194789 -NCIT:C115364 Recurrent Childhood Glioblastoma 7 194790 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 8 194791 -NCIT:C115365 Recurrent Childhood Gliosarcoma 8 194792 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 7 194793 -NCIT:C115373 Recurrent Childhood Pilomyxoid Astrocytoma 7 194794 -NCIT:C115375 Recurrent Childhood Pleomorphic Xanthoastrocytoma 7 194795 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 7 194796 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 7 194797 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 7 194798 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 8 194799 -NCIT:C8389 Recurrent Childhood Cerebellar Astrocytoma 7 194800 -NCIT:C9191 Recurrent Childhood Cerebral Astrocytoma 7 194801 -NCIT:C131617 Recurrent Ependymal Tumor 6 194802 -NCIT:C157601 Recurrent Ependymoma 7 194803 -NCIT:C8579 Recurrent Childhood Ependymoma 8 194804 -NCIT:C160912 Recurrent Anaplastic Ependymoma 7 194805 -NCIT:C142848 Recurrent Malignant Glioma 6 194806 -NCIT:C126306 Recurrent Glioblastoma 7 194807 -NCIT:C115364 Recurrent Childhood Glioblastoma 8 194808 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 9 194809 -NCIT:C115365 Recurrent Childhood Gliosarcoma 9 194810 -NCIT:C182019 Recurrent Glioblastoma, IDH-Wildtype 8 194811 -NCIT:C131209 Recurrent Gliosarcoma 9 194812 -NCIT:C115365 Recurrent Childhood Gliosarcoma 10 194813 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 9 194814 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 10 194815 -NCIT:C163961 Recurrent Small Cell Glioblastoma 9 194816 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 9 194817 -NCIT:C191198 Recurrent Brain Glioblastoma 8 194818 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 9 194819 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 7 194820 -NCIT:C148038 Recurrent WHO Grade 3 Glioma 7 194821 -NCIT:C136517 Recurrent Anaplastic Astrocytoma 8 194822 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 9 194823 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 9 194824 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 9 194825 -NCIT:C142861 Recurrent Anaplastic Oligoastrocytoma 8 194826 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 9 194827 -NCIT:C142862 Recurrent Anaplastic Oligodendroglioma 8 194828 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 9 194829 -NCIT:C160904 Recurrent Anaplastic Pleomorphic Xanthoastrocytoma 8 194830 -NCIT:C160912 Recurrent Anaplastic Ependymoma 8 194831 -NCIT:C179222 Recurrent Diffuse Midline Glioma, H3 K27M-Mutant 7 194832 -NCIT:C182018 Recurrent Astrocytoma, IDH-Mutant, Grade 4 7 194833 -NCIT:C155983 Recurrent Visual Pathway Glioma 6 194834 -NCIT:C7529 Recurrent Childhood Visual Pathway Glioma 7 194835 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 8 194836 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 9 194837 -NCIT:C7531 Recurrent Childhood Optic Nerve Glioma 8 194838 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 9 194839 -NCIT:C177794 Recurrent Low Grade Glioma 6 194840 -NCIT:C148037 Recurrent WHO Grade 2 Glioma 7 194841 -NCIT:C157601 Recurrent Ependymoma 8 194842 -NCIT:C8579 Recurrent Childhood Ependymoma 9 194843 -NCIT:C160737 Recurrent Oligodendroglioma 8 194844 -NCIT:C115371 Recurrent Childhood Oligodendroglioma 9 194845 -NCIT:C188126 Recurrent Oligodendroglioma, IDH-Mutant and 1p/19q-Codeleted 9 194846 -NCIT:C167081 Recurrent Diffuse Astrocytoma 8 194847 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 9 194848 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 10 194849 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 10 194850 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 10 194851 -NCIT:C167082 Recurrent Oligoastrocytoma 8 194852 -NCIT:C115370 Recurrent Childhood Oligoastrocytoma 9 194853 -NCIT:C176464 Recurrent Low Grade Astrocytoma 7 194854 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 8 194855 -NCIT:C167081 Recurrent Diffuse Astrocytoma 8 194856 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 9 194857 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 10 194858 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 10 194859 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 10 194860 -NCIT:C179220 Recurrent Pilocytic Astrocytoma 8 194861 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 9 194862 -NCIT:C177796 Recurrent WHO Grade 1 Glioma 7 194863 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 8 194864 -NCIT:C179220 Recurrent Pilocytic Astrocytoma 8 194865 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 9 194866 -NCIT:C180408 Recurrent Tectal Glioma 6 194867 -NCIT:C188127 Recurrent Astrocytoma, IDH-Mutant 6 194868 -NCIT:C182018 Recurrent Astrocytoma, IDH-Mutant, Grade 4 7 194869 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 7 194870 -NCIT:C9190 Recurrent Childhood Brain Stem Glioma 6 194871 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 7 194872 -NCIT:C153823 Recurrent Primary Malignant Central Nervous System Neoplasm 5 194873 -NCIT:C114836 Recurrent Childhood Central Nervous System Embryonal Neoplasm 6 194874 -NCIT:C115374 Recurrent Childhood Pineoblastoma 7 194875 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 7 194876 -NCIT:C6774 Recurrent Childhood Medulloblastoma 7 194877 -NCIT:C133499 Recurrent Atypical Teratoid/Rhabdoid Tumor 6 194878 -NCIT:C138019 Recurrent Central Nervous System Lymphoma 6 194879 -NCIT:C146990 Recurrent Central Nervous System Non-Hodgkin Lymphoma 7 194880 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 8 194881 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 194882 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 194883 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 194884 -NCIT:C142848 Recurrent Malignant Glioma 6 194885 -NCIT:C126306 Recurrent Glioblastoma 7 194886 -NCIT:C115364 Recurrent Childhood Glioblastoma 8 194887 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 9 194888 -NCIT:C115365 Recurrent Childhood Gliosarcoma 9 194889 -NCIT:C182019 Recurrent Glioblastoma, IDH-Wildtype 8 194890 -NCIT:C131209 Recurrent Gliosarcoma 9 194891 -NCIT:C115365 Recurrent Childhood Gliosarcoma 10 194892 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 9 194893 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 10 194894 -NCIT:C163961 Recurrent Small Cell Glioblastoma 9 194895 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 9 194896 -NCIT:C191198 Recurrent Brain Glioblastoma 8 194897 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 9 194898 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 7 194899 -NCIT:C148038 Recurrent WHO Grade 3 Glioma 7 194900 -NCIT:C136517 Recurrent Anaplastic Astrocytoma 8 194901 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 9 194902 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 9 194903 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 9 194904 -NCIT:C142861 Recurrent Anaplastic Oligoastrocytoma 8 194905 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 9 194906 -NCIT:C142862 Recurrent Anaplastic Oligodendroglioma 8 194907 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 9 194908 -NCIT:C160904 Recurrent Anaplastic Pleomorphic Xanthoastrocytoma 8 194909 -NCIT:C160912 Recurrent Anaplastic Ependymoma 8 194910 -NCIT:C179222 Recurrent Diffuse Midline Glioma, H3 K27M-Mutant 7 194911 -NCIT:C182018 Recurrent Astrocytoma, IDH-Mutant, Grade 4 7 194912 -NCIT:C153837 Recurrent Malignant Brain Neoplasm 6 194913 -NCIT:C115374 Recurrent Childhood Pineoblastoma 7 194914 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 7 194915 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 7 194916 -NCIT:C179221 Recurrent Gliomatosis Cerebri 7 194917 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 8 194918 -NCIT:C179226 Recurrent Malignant Choroid Plexus Neoplasm 7 194919 -NCIT:C191198 Recurrent Brain Glioblastoma 7 194920 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 8 194921 -NCIT:C5588 Recurrent Medulloblastoma 7 194922 -NCIT:C147109 Recurrent Medulloblastoma, SHH-Activated 8 194923 -NCIT:C180893 Recurrent Medulloblastoma, WNT-Activated 8 194924 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 194925 -NCIT:C160914 Recurrent Anaplastic Ganglioglioma 6 194926 -NCIT:C179223 Recurrent Anaplastic (Malignant) Meningioma 6 194927 -NCIT:C7849 Recurrent Retinoblastoma 6 194928 -NCIT:C173154 Recurrent Intracranial Neoplasm 5 194929 -NCIT:C71698 Recurrent Brain Neoplasm 6 194930 -NCIT:C148077 Recurrent Craniopharyngioma 7 194931 -NCIT:C162612 Recurrent Adamantinomatous Craniopharyngioma 8 194932 -NCIT:C153837 Recurrent Malignant Brain Neoplasm 7 194933 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 194934 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 194935 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 8 194936 -NCIT:C179221 Recurrent Gliomatosis Cerebri 8 194937 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 9 194938 -NCIT:C179226 Recurrent Malignant Choroid Plexus Neoplasm 8 194939 -NCIT:C191198 Recurrent Brain Glioblastoma 8 194940 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 9 194941 -NCIT:C5588 Recurrent Medulloblastoma 8 194942 -NCIT:C147109 Recurrent Medulloblastoma, SHH-Activated 9 194943 -NCIT:C180893 Recurrent Medulloblastoma, WNT-Activated 9 194944 -NCIT:C6774 Recurrent Childhood Medulloblastoma 9 194945 -NCIT:C155983 Recurrent Visual Pathway Glioma 7 194946 -NCIT:C7529 Recurrent Childhood Visual Pathway Glioma 8 194947 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 9 194948 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 194949 -NCIT:C7531 Recurrent Childhood Optic Nerve Glioma 9 194950 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 194951 -NCIT:C179227 Recurrent Pineal Parenchymal Cell Neoplasm 7 194952 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 194953 -NCIT:C180398 Recurrent Multinodular and Vacuolated Neuronal Tumor 7 194954 -NCIT:C180400 Recurrent Polymorphous Low Grade Neuroepithelial Tumor of the Young 7 194955 -NCIT:C7834 Recurrent Childhood Brain Neoplasm 7 194956 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 8 194957 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 194958 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 194959 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 194960 -NCIT:C7529 Recurrent Childhood Visual Pathway Glioma 8 194961 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 9 194962 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 194963 -NCIT:C7531 Recurrent Childhood Optic Nerve Glioma 9 194964 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 194965 -NCIT:C8389 Recurrent Childhood Cerebellar Astrocytoma 8 194966 -NCIT:C9190 Recurrent Childhood Brain Stem Glioma 8 194967 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 9 194968 -NCIT:C9191 Recurrent Childhood Cerebral Astrocytoma 8 194969 -NCIT:C7884 Recurrent Adult Brain Neoplasm 7 194970 -NCIT:C180338 Recurrent Gangliocytoma 5 194971 -NCIT:C180397 Recurrent Myxoid Glioneuronal Tumor 5 194972 -NCIT:C5312 Recurrent Meningioma 5 194973 -NCIT:C179223 Recurrent Anaplastic (Malignant) Meningioma 6 194974 -NCIT:C179224 Recurrent Atypical Meningioma 6 194975 -NCIT:C71699 Recurrent Spinal Cord Neoplasm 5 194976 -NCIT:C71712 Recurrent Childhood Spinal Cord Neoplasm 6 194977 -NCIT:C71713 Recurrent Adult Spinal Cord Neoplasm 6 194978 -NCIT:C9045 Recurrent Childhood Central Nervous System Neoplasm 5 194979 -NCIT:C114836 Recurrent Childhood Central Nervous System Embryonal Neoplasm 6 194980 -NCIT:C115374 Recurrent Childhood Pineoblastoma 7 194981 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 7 194982 -NCIT:C6774 Recurrent Childhood Medulloblastoma 7 194983 -NCIT:C114956 Recurrent Childhood Astrocytic Tumor 6 194984 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 7 194985 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 7 194986 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 8 194987 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 8 194988 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 8 194989 -NCIT:C115364 Recurrent Childhood Glioblastoma 7 194990 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 8 194991 -NCIT:C115365 Recurrent Childhood Gliosarcoma 8 194992 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 7 194993 -NCIT:C115373 Recurrent Childhood Pilomyxoid Astrocytoma 7 194994 -NCIT:C115375 Recurrent Childhood Pleomorphic Xanthoastrocytoma 7 194995 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 7 194996 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 7 194997 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 7 194998 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 8 194999 -NCIT:C8389 Recurrent Childhood Cerebellar Astrocytoma 7 195000 -NCIT:C9191 Recurrent Childhood Cerebral Astrocytoma 7 195001 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 6 195002 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 6 195003 -NCIT:C115370 Recurrent Childhood Oligoastrocytoma 6 195004 -NCIT:C115371 Recurrent Childhood Oligodendroglioma 6 195005 -NCIT:C71712 Recurrent Childhood Spinal Cord Neoplasm 6 195006 -NCIT:C7834 Recurrent Childhood Brain Neoplasm 6 195007 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 7 195008 -NCIT:C115374 Recurrent Childhood Pineoblastoma 7 195009 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 7 195010 -NCIT:C6774 Recurrent Childhood Medulloblastoma 7 195011 -NCIT:C7529 Recurrent Childhood Visual Pathway Glioma 7 195012 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 8 195013 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 9 195014 -NCIT:C7531 Recurrent Childhood Optic Nerve Glioma 8 195015 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 9 195016 -NCIT:C8389 Recurrent Childhood Cerebellar Astrocytoma 7 195017 -NCIT:C9190 Recurrent Childhood Brain Stem Glioma 7 195018 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 8 195019 -NCIT:C9191 Recurrent Childhood Cerebral Astrocytoma 7 195020 -NCIT:C8579 Recurrent Childhood Ependymoma 6 195021 -NCIT:C8823 Recurrent Malignant Peripheral Nerve Sheath Tumor 4 195022 -NCIT:C162724 Recurrent Epithelioid Malignant Peripheral Nerve Sheath Tumor 5 195023 -NCIT:C188180 Recurrent Neoplastic Post-Transplant Lymphoproliferative Disorder 3 195024 -NCIT:C157474 Recurrent Monomorphic Post-Transplant Lymphoproliferative Disorder 4 195025 -NCIT:C157476 Recurrent Polymorphic Post-Transplant Lymphoproliferative Disorder 4 195026 -NCIT:C4813 Recurrent Malignant Neoplasm 3 195027 -NCIT:C127153 Recurrent Malignant Solid Neoplasm 4 195028 -NCIT:C148026 Recurrent Childhood Malignant Solid Neoplasm 5 195029 -NCIT:C170830 Recurrent Extracranial Malignant Solid Neoplasm 5 195030 -NCIT:C131500 Recurrent Primary Malignant Neoplasm 4 195031 -NCIT:C114836 Recurrent Childhood Central Nervous System Embryonal Neoplasm 5 195032 -NCIT:C115374 Recurrent Childhood Pineoblastoma 6 195033 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 6 195034 -NCIT:C6774 Recurrent Childhood Medulloblastoma 6 195035 -NCIT:C115441 Recurrent Primary Peritoneal Carcinoma 5 195036 -NCIT:C170751 Recurrent Platinum-Resistant Primary Peritoneal Carcinoma 6 195037 -NCIT:C170756 Recurrent Primary Peritoneal Undifferentiated Carcinoma 6 195038 -NCIT:C170759 Recurrent Primary Peritoneal Transitional Cell Carcinoma 6 195039 -NCIT:C170767 Recurrent Primary Peritoneal Adenocarcinoma 6 195040 -NCIT:C156453 Recurrent Primary Peritoneal Serous Adenocarcinoma 7 195041 -NCIT:C156454 Recurrent Primary Peritoneal Low Grade Serous Adenocarcinoma 8 195042 -NCIT:C165268 Recurrent Primary Peritoneal High Grade Serous Adenocarcinoma 8 195043 -NCIT:C165269 Recurrent Primary Peritoneal Endometrioid Adenocarcinoma 7 195044 -NCIT:C170761 Recurrent Primary Peritoneal Clear Cell Adenocarcinoma 7 195045 -NCIT:C191407 Recurrent Platinum-Sensitive Primary Peritoneal Carcinoma 6 195046 -NCIT:C115444 Recurrent Combined Thymic Epithelial Neoplasm 5 195047 -NCIT:C133732 Recurrent Primary Amyloidosis 5 195048 -NCIT:C174054 Recurrent AL Amyloidosis 6 195049 -NCIT:C138021 Recurrent Testicular Lymphoma 5 195050 -NCIT:C138023 Recurrent Breast Lymphoma 5 195051 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 6 195052 -NCIT:C142848 Recurrent Malignant Glioma 5 195053 -NCIT:C126306 Recurrent Glioblastoma 6 195054 -NCIT:C115364 Recurrent Childhood Glioblastoma 7 195055 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 8 195056 -NCIT:C115365 Recurrent Childhood Gliosarcoma 8 195057 -NCIT:C182019 Recurrent Glioblastoma, IDH-Wildtype 7 195058 -NCIT:C131209 Recurrent Gliosarcoma 8 195059 -NCIT:C115365 Recurrent Childhood Gliosarcoma 9 195060 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 8 195061 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 9 195062 -NCIT:C163961 Recurrent Small Cell Glioblastoma 8 195063 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 8 195064 -NCIT:C191198 Recurrent Brain Glioblastoma 7 195065 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 8 195066 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 6 195067 -NCIT:C148038 Recurrent WHO Grade 3 Glioma 6 195068 -NCIT:C136517 Recurrent Anaplastic Astrocytoma 7 195069 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 8 195070 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 8 195071 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 8 195072 -NCIT:C142861 Recurrent Anaplastic Oligoastrocytoma 7 195073 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 8 195074 -NCIT:C142862 Recurrent Anaplastic Oligodendroglioma 7 195075 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 8 195076 -NCIT:C160904 Recurrent Anaplastic Pleomorphic Xanthoastrocytoma 7 195077 -NCIT:C160912 Recurrent Anaplastic Ependymoma 7 195078 -NCIT:C179222 Recurrent Diffuse Midline Glioma, H3 K27M-Mutant 6 195079 -NCIT:C182018 Recurrent Astrocytoma, IDH-Mutant, Grade 4 6 195080 -NCIT:C142876 Recurrent Primary Cutaneous Lymphoma 5 195081 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 6 195082 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 6 195083 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 7 195084 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 7 195085 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 7 195086 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 7 195087 -NCIT:C8686 Recurrent Mycosis Fungoides 7 195088 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 8 195089 -NCIT:C150528 Recurrent Malignant Neoplasm of Multiple Primary Sites 5 195090 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 5 195091 -NCIT:C157679 Recurrent Primary Effusion Lymphoma 5 195092 -NCIT:C157681 Recurrent Primary Bone Lymphoma 5 195093 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 5 195094 -NCIT:C27295 Recurrent Primitive Neuroectodermal Tumor 5 195095 -NCIT:C173531 Recurrent Ganglioneuroblastoma 6 195096 -NCIT:C27899 Recurrent Peripheral Primitive Neuroectodermal Tumor 6 195097 -NCIT:C27354 Recurrent Peripheral Primitive Neuroectodermal Tumor of Bone 7 195098 -NCIT:C27900 Recurrent Askin Tumor 7 195099 -NCIT:C7837 Recurrent Neuroblastoma 6 195100 -NCIT:C115384 Recurrent Olfactory Neuroblastoma 7 195101 -NCIT:C27898 Recurrent Ewing Sarcoma/Peripheral Primitive Neuroectodermal Tumor 5 195102 -NCIT:C27899 Recurrent Peripheral Primitive Neuroectodermal Tumor 6 195103 -NCIT:C27354 Recurrent Peripheral Primitive Neuroectodermal Tumor of Bone 7 195104 -NCIT:C27900 Recurrent Askin Tumor 7 195105 -NCIT:C7808 Recurrent Ewing Sarcoma 6 195106 -NCIT:C6622 Recurrent Bone Ewing Sarcoma 7 195107 -NCIT:C8803 Recurrent Extraskeletal Ewing Sarcoma 7 195108 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 5 195109 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 5 195110 -NCIT:C5588 Recurrent Medulloblastoma 5 195111 -NCIT:C147109 Recurrent Medulloblastoma, SHH-Activated 6 195112 -NCIT:C180893 Recurrent Medulloblastoma, WNT-Activated 6 195113 -NCIT:C6774 Recurrent Childhood Medulloblastoma 6 195114 -NCIT:C7087 Recurrent Melanoma 5 195115 -NCIT:C182020 Recurrent Metastatic Melanoma 6 195116 -NCIT:C7088 Recurrent Non-Cutaneous Melanoma 6 195117 -NCIT:C170954 Recurrent Mucosal Melanoma 7 195118 -NCIT:C171294 Recurrent Ocular Melanoma 7 195119 -NCIT:C7914 Recurrent Uveal Melanoma 8 195120 -NCIT:C9097 Recurrent Cutaneous Melanoma 6 195121 -NCIT:C155306 Recurrent Cutaneous Melanoma of the Extremity 7 195122 -NCIT:C175435 Recurrent Acral Lentiginous Melanoma 8 195123 -NCIT:C8785 Recurrent Lentigo Maligna Melanoma 7 195124 -NCIT:C7845 Recurrent Kidney Wilms Tumor 5 195125 -NCIT:C7880 Recurrent Adult Liver Carcinoma 5 195126 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 6 195127 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 5 195128 -NCIT:C9264 Recurrent Hepatocellular Carcinoma 5 195129 -NCIT:C154082 Recurrent Fibrolamellar Carcinoma 6 195130 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 6 195131 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 6 195132 -NCIT:C131501 Recurrent Subsequent Malignant Neoplasm 4 195133 -NCIT:C132853 Recurrent Malignant Germ Cell Tumor 4 195134 -NCIT:C115385 Recurrent Malignant Extragonadal Germ Cell Tumor 5 195135 -NCIT:C115427 Recurrent Malignant Extragonadal Nongerminomatous Germ Cell Tumor 6 195136 -NCIT:C115428 Recurrent Extragonadal Seminoma 6 195137 -NCIT:C177771 Recurrent Malignant Nongerminomatous Germ Cell Tumor 5 195138 -NCIT:C115427 Recurrent Malignant Extragonadal Nongerminomatous Germ Cell Tumor 6 195139 -NCIT:C8087 Recurrent Ovarian Germ Cell Tumor 5 195140 -NCIT:C9221 Recurrent Childhood Malignant Germ Cell Tumor 5 195141 -NCIT:C9369 Recurrent Malignant Testicular Germ Cell Tumor 5 195142 -NCIT:C142849 Recurrent Rhabdoid Tumor 4 195143 -NCIT:C133499 Recurrent Atypical Teratoid/Rhabdoid Tumor 5 195144 -NCIT:C162730 Recurrent Rhabdoid Tumor of the Kidney 5 195145 -NCIT:C188881 Recurrent Extrarenal Rhabdoid Tumor 5 195146 -NCIT:C171170 Recurrent Extrarenal Rhabdoid Tumor of the Ovary 6 195147 -NCIT:C148302 Recurrent Sarcoma 4 195148 -NCIT:C115351 Recurrent Adult Undifferentiated High Grade Pleomorphic Sarcoma of Bone 5 195149 -NCIT:C115368 Recurrent Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 5 195150 -NCIT:C139002 Recurrent Soft Tissue Sarcoma 5 195151 -NCIT:C153626 Recurrent Skin Angiosarcoma 6 195152 -NCIT:C158426 Recurrent Desmoplastic Small Round Cell Tumor 6 195153 -NCIT:C169050 Recurrent Soft Tissue Sarcoma of the Trunk and Extremities 6 195154 -NCIT:C170727 Recurrent Breast Sarcoma 6 195155 -NCIT:C133092 Recurrent Breast Angiosarcoma 7 195156 -NCIT:C180980 Recurrent Clear Cell Sarcoma of Soft Tissue 6 195157 -NCIT:C5059 Recurrent Epithelioid Sarcoma 6 195158 -NCIT:C7822 Recurrent Adult Soft Tissue Sarcoma 6 195159 -NCIT:C7935 Recurrent Kaposi Sarcoma 6 195160 -NCIT:C8067 Recurrent Childhood Soft Tissue Sarcoma 6 195161 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 7 195162 -NCIT:C8261 Recurrent Uterine Corpus Sarcoma 6 195163 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 7 195164 -NCIT:C8795 Recurrent Undifferentiated Pleomorphic Sarcoma 6 195165 -NCIT:C8798 Recurrent Alveolar Soft Part Sarcoma 6 195166 -NCIT:C8803 Recurrent Extraskeletal Ewing Sarcoma 6 195167 -NCIT:C8807 Recurrent Extraskeletal Myxoid Chondrosarcoma 6 195168 -NCIT:C8811 Recurrent Extraskeletal Osteosarcoma 6 195169 -NCIT:C8824 Recurrent Rhabdomyosarcoma 6 195170 -NCIT:C142881 Recurrent Alveolar Rhabdomyosarcoma 7 195171 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 7 195172 -NCIT:C8827 Recurrent Synovial Sarcoma 6 195173 -NCIT:C155648 Recurrent Sarcoma of the Extremity 5 195174 -NCIT:C158428 Recurrent Fibrosarcoma 5 195175 -NCIT:C158430 Recurrent Spindle Cell Sarcoma 5 195176 -NCIT:C173815 Recurrent Ectomesenchymoma 5 195177 -NCIT:C5384 Recurrent Angiosarcoma 5 195178 -NCIT:C133092 Recurrent Breast Angiosarcoma 6 195179 -NCIT:C153626 Recurrent Skin Angiosarcoma 6 195180 -NCIT:C7808 Recurrent Ewing Sarcoma 5 195181 -NCIT:C6622 Recurrent Bone Ewing Sarcoma 6 195182 -NCIT:C8803 Recurrent Extraskeletal Ewing Sarcoma 6 195183 -NCIT:C7881 Recurrent Osteosarcoma 5 195184 -NCIT:C187189 Recurrent Childhood Osteosarcoma 6 195185 -NCIT:C8811 Recurrent Extraskeletal Osteosarcoma 6 195186 -NCIT:C8780 Recurrent Chondrosarcoma 5 195187 -NCIT:C8815 Recurrent Leiomyosarcoma 5 195188 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 6 195189 -NCIT:C8818 Recurrent Liposarcoma 5 195190 -NCIT:C150579 Recurrent Myxoid Liposarcoma 6 195191 -NCIT:C150592 Recurrent Dedifferentiated Liposarcoma 6 195192 -NCIT:C8823 Recurrent Malignant Peripheral Nerve Sheath Tumor 5 195193 -NCIT:C162724 Recurrent Epithelioid Malignant Peripheral Nerve Sheath Tumor 6 195194 -NCIT:C148510 Recurrent Human Papillomavirus-Related Malignant Neoplasm 4 195195 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 5 195196 -NCIT:C150524 Recurrent Malignant Bone Neoplasm 4 195197 -NCIT:C115351 Recurrent Adult Undifferentiated High Grade Pleomorphic Sarcoma of Bone 5 195198 -NCIT:C115368 Recurrent Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 5 195199 -NCIT:C155973 Recurrent Chordoma 5 195200 -NCIT:C162728 Recurrent Dedifferentiated Chordoma 6 195201 -NCIT:C185073 Locally Recurrent Chordoma 6 195202 -NCIT:C157681 Recurrent Primary Bone Lymphoma 5 195203 -NCIT:C27354 Recurrent Peripheral Primitive Neuroectodermal Tumor of Bone 5 195204 -NCIT:C6622 Recurrent Bone Ewing Sarcoma 5 195205 -NCIT:C150536 Recurrent Malignant Soft Tissue Neoplasm 4 195206 -NCIT:C139002 Recurrent Soft Tissue Sarcoma 5 195207 -NCIT:C153626 Recurrent Skin Angiosarcoma 6 195208 -NCIT:C158426 Recurrent Desmoplastic Small Round Cell Tumor 6 195209 -NCIT:C169050 Recurrent Soft Tissue Sarcoma of the Trunk and Extremities 6 195210 -NCIT:C170727 Recurrent Breast Sarcoma 6 195211 -NCIT:C133092 Recurrent Breast Angiosarcoma 7 195212 -NCIT:C180980 Recurrent Clear Cell Sarcoma of Soft Tissue 6 195213 -NCIT:C5059 Recurrent Epithelioid Sarcoma 6 195214 -NCIT:C7822 Recurrent Adult Soft Tissue Sarcoma 6 195215 -NCIT:C7935 Recurrent Kaposi Sarcoma 6 195216 -NCIT:C8067 Recurrent Childhood Soft Tissue Sarcoma 6 195217 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 7 195218 -NCIT:C8261 Recurrent Uterine Corpus Sarcoma 6 195219 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 7 195220 -NCIT:C8795 Recurrent Undifferentiated Pleomorphic Sarcoma 6 195221 -NCIT:C8798 Recurrent Alveolar Soft Part Sarcoma 6 195222 -NCIT:C8803 Recurrent Extraskeletal Ewing Sarcoma 6 195223 -NCIT:C8807 Recurrent Extraskeletal Myxoid Chondrosarcoma 6 195224 -NCIT:C8811 Recurrent Extraskeletal Osteosarcoma 6 195225 -NCIT:C8824 Recurrent Rhabdomyosarcoma 6 195226 -NCIT:C142881 Recurrent Alveolar Rhabdomyosarcoma 7 195227 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 7 195228 -NCIT:C8827 Recurrent Synovial Sarcoma 6 195229 -NCIT:C188881 Recurrent Extrarenal Rhabdoid Tumor 5 195230 -NCIT:C171170 Recurrent Extrarenal Rhabdoid Tumor of the Ovary 6 195231 -NCIT:C150540 Recurrent Malignant Endocrine Neoplasm 4 195232 -NCIT:C165253 Recurrent Neuroendocrine Carcinoma 5 195233 -NCIT:C115440 Recurrent Merkel Cell Carcinoma 6 195234 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 7 195235 -NCIT:C165740 Locally Recurrent Merkel Cell Carcinoma 7 195236 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 6 195237 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 7 195238 -NCIT:C155938 Recurrent Digestive System Neuroendocrine Carcinoma 6 195239 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 7 195240 -NCIT:C183127 Recurrent Small Cell Neuroendocrine Carcinoma 6 195241 -NCIT:C183128 Recurrent Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 195242 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 8 195243 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 195244 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 7 195245 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 8 195246 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 5 195247 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 6 195248 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 6 195249 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 7 195250 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 5 195251 -NCIT:C6417 Recurrent Adrenal Cortical Carcinoma 5 195252 -NCIT:C7828 Recurrent Parathyroid Gland Carcinoma 5 195253 -NCIT:C150545 Recurrent Malignant Skin Neoplasm 4 195254 -NCIT:C142876 Recurrent Primary Cutaneous Lymphoma 5 195255 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 6 195256 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 6 195257 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 7 195258 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 7 195259 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 7 195260 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 7 195261 -NCIT:C8686 Recurrent Mycosis Fungoides 7 195262 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 8 195263 -NCIT:C153626 Recurrent Skin Angiosarcoma 5 195264 -NCIT:C156103 Recurrent Blastic Plasmacytoid Dendritic Cell Neoplasm 5 195265 -NCIT:C179464 Recurrent Malignant Scrotal Neoplasm 5 195266 -NCIT:C7903 Recurrent Skin Carcinoma 5 195267 -NCIT:C115440 Recurrent Merkel Cell Carcinoma 6 195268 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 7 195269 -NCIT:C165740 Locally Recurrent Merkel Cell Carcinoma 7 195270 -NCIT:C143012 Recurrent Skin Squamous Cell Carcinoma 6 195271 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 195272 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 7 195273 -NCIT:C165737 Locally Recurrent Skin Squamous Cell Carcinoma 7 195274 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 6 195275 -NCIT:C9097 Recurrent Cutaneous Melanoma 5 195276 -NCIT:C155306 Recurrent Cutaneous Melanoma of the Extremity 6 195277 -NCIT:C175435 Recurrent Acral Lentiginous Melanoma 7 195278 -NCIT:C8785 Recurrent Lentigo Maligna Melanoma 6 195279 -NCIT:C152077 Recurrent Malignant Head and Neck Neoplasm 4 195280 -NCIT:C150531 Recurrent Malignant Pharyngeal Neoplasm 5 195281 -NCIT:C5103 Recurrent Pharyngeal Carcinoma 6 195282 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 7 195283 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 195284 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 195285 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 195286 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 195287 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 195288 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 195289 -NCIT:C8051 Recurrent Oropharyngeal Carcinoma 7 195290 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 195291 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 195292 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 7 195293 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 195294 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 195295 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 195296 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 7 195297 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 195298 -NCIT:C9268 Recurrent Malignant Nasopharyngeal Neoplasm 6 195299 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 7 195300 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 195301 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 195302 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 195303 -NCIT:C9353 Recurrent Malignant Hypopharyngeal Neoplasm 6 195304 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 7 195305 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 195306 -NCIT:C150538 Recurrent Malignant Thyroid Gland Neoplasm 5 195307 -NCIT:C7908 Recurrent Thyroid Gland Carcinoma 6 195308 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 7 195309 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 8 195310 -NCIT:C153624 Recurrent Thyroid Gland Anaplastic Carcinoma 7 195311 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 7 195312 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 8 195313 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 8 195314 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 9 195315 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 7 195316 -NCIT:C35675 Recurrent Malignant Salivary Gland Neoplasm 5 195317 -NCIT:C7926 Recurrent Salivary Gland Carcinoma 6 195318 -NCIT:C153611 Recurrent Salivary Duct Carcinoma 7 195319 -NCIT:C153612 Recurrent Minor Salivary Gland Adenocarcinoma 7 195320 -NCIT:C153800 Recurrent Parotid Gland Carcinoma 7 195321 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 8 195322 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 8 195323 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 195324 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 8 195325 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 195326 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 8 195327 -NCIT:C153801 Recurrent Submandibular Gland Carcinoma 7 195328 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 8 195329 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 8 195330 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 195331 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 8 195332 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 195333 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 8 195334 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 195335 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 195336 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 195337 -NCIT:C7624 Recurrent Head and Neck Carcinoma 5 195338 -NCIT:C133709 Recurrent Head and Neck Squamous Cell Carcinoma 6 195339 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 195340 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 195341 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 195342 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 195343 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 195344 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 195345 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 195346 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 195347 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 195348 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 7 195349 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 195350 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 195351 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 195352 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 195353 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 195354 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 195355 -NCIT:C176682 Locally Recurrent Head and Neck Squamous Cell Carcinoma 7 195356 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 7 195357 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 195358 -NCIT:C4034 Recurrent Laryngeal Carcinoma 6 195359 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 7 195360 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 195361 -NCIT:C5103 Recurrent Pharyngeal Carcinoma 6 195362 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 7 195363 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 195364 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 195365 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 195366 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 195367 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 195368 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 195369 -NCIT:C8051 Recurrent Oropharyngeal Carcinoma 7 195370 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 195371 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 195372 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 7 195373 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 195374 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 195375 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 195376 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 7 195377 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 195378 -NCIT:C67558 Recurrent Sinonasal Carcinoma 6 195379 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 195380 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 195381 -NCIT:C7828 Recurrent Parathyroid Gland Carcinoma 6 195382 -NCIT:C7908 Recurrent Thyroid Gland Carcinoma 6 195383 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 7 195384 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 8 195385 -NCIT:C153624 Recurrent Thyroid Gland Anaplastic Carcinoma 7 195386 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 7 195387 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 8 195388 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 8 195389 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 9 195390 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 7 195391 -NCIT:C7926 Recurrent Salivary Gland Carcinoma 6 195392 -NCIT:C153611 Recurrent Salivary Duct Carcinoma 7 195393 -NCIT:C153612 Recurrent Minor Salivary Gland Adenocarcinoma 7 195394 -NCIT:C153800 Recurrent Parotid Gland Carcinoma 7 195395 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 8 195396 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 8 195397 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 195398 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 8 195399 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 195400 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 8 195401 -NCIT:C153801 Recurrent Submandibular Gland Carcinoma 7 195402 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 8 195403 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 8 195404 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 195405 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 8 195406 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 195407 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 8 195408 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 195409 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 195410 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 195411 -NCIT:C8037 Recurrent Lip and Oral Cavity Carcinoma 6 195412 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 195413 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 195414 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 195415 -NCIT:C6076 Recurrent Oral Cavity Carcinoma 7 195416 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 195417 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 195418 -NCIT:C8215 Recurrent Oral Cavity Mucoepidermoid Carcinoma 8 195419 -NCIT:C8216 Recurrent Oral Cavity Adenoid Cystic Carcinoma 8 195420 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 7 195421 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 5 195422 -NCIT:C9262 Recurrent Malignant Oral Neoplasm 5 195423 -NCIT:C8037 Recurrent Lip and Oral Cavity Carcinoma 6 195424 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 195425 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 195426 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 195427 -NCIT:C6076 Recurrent Oral Cavity Carcinoma 7 195428 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 195429 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 195430 -NCIT:C8215 Recurrent Oral Cavity Mucoepidermoid Carcinoma 8 195431 -NCIT:C8216 Recurrent Oral Cavity Adenoid Cystic Carcinoma 8 195432 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 7 195433 -NCIT:C153823 Recurrent Primary Malignant Central Nervous System Neoplasm 4 195434 -NCIT:C114836 Recurrent Childhood Central Nervous System Embryonal Neoplasm 5 195435 -NCIT:C115374 Recurrent Childhood Pineoblastoma 6 195436 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 6 195437 -NCIT:C6774 Recurrent Childhood Medulloblastoma 6 195438 -NCIT:C133499 Recurrent Atypical Teratoid/Rhabdoid Tumor 5 195439 -NCIT:C138019 Recurrent Central Nervous System Lymphoma 5 195440 -NCIT:C146990 Recurrent Central Nervous System Non-Hodgkin Lymphoma 6 195441 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 7 195442 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 195443 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 7 195444 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 195445 -NCIT:C142848 Recurrent Malignant Glioma 5 195446 -NCIT:C126306 Recurrent Glioblastoma 6 195447 -NCIT:C115364 Recurrent Childhood Glioblastoma 7 195448 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 8 195449 -NCIT:C115365 Recurrent Childhood Gliosarcoma 8 195450 -NCIT:C182019 Recurrent Glioblastoma, IDH-Wildtype 7 195451 -NCIT:C131209 Recurrent Gliosarcoma 8 195452 -NCIT:C115365 Recurrent Childhood Gliosarcoma 9 195453 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 8 195454 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 9 195455 -NCIT:C163961 Recurrent Small Cell Glioblastoma 8 195456 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 8 195457 -NCIT:C191198 Recurrent Brain Glioblastoma 7 195458 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 8 195459 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 6 195460 -NCIT:C148038 Recurrent WHO Grade 3 Glioma 6 195461 -NCIT:C136517 Recurrent Anaplastic Astrocytoma 7 195462 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 8 195463 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 8 195464 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 8 195465 -NCIT:C142861 Recurrent Anaplastic Oligoastrocytoma 7 195466 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 8 195467 -NCIT:C142862 Recurrent Anaplastic Oligodendroglioma 7 195468 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 8 195469 -NCIT:C160904 Recurrent Anaplastic Pleomorphic Xanthoastrocytoma 7 195470 -NCIT:C160912 Recurrent Anaplastic Ependymoma 7 195471 -NCIT:C179222 Recurrent Diffuse Midline Glioma, H3 K27M-Mutant 6 195472 -NCIT:C182018 Recurrent Astrocytoma, IDH-Mutant, Grade 4 6 195473 -NCIT:C153837 Recurrent Malignant Brain Neoplasm 5 195474 -NCIT:C115374 Recurrent Childhood Pineoblastoma 6 195475 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 6 195476 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 6 195477 -NCIT:C179221 Recurrent Gliomatosis Cerebri 6 195478 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 7 195479 -NCIT:C179226 Recurrent Malignant Choroid Plexus Neoplasm 6 195480 -NCIT:C191198 Recurrent Brain Glioblastoma 6 195481 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 7 195482 -NCIT:C5588 Recurrent Medulloblastoma 6 195483 -NCIT:C147109 Recurrent Medulloblastoma, SHH-Activated 7 195484 -NCIT:C180893 Recurrent Medulloblastoma, WNT-Activated 7 195485 -NCIT:C6774 Recurrent Childhood Medulloblastoma 7 195486 -NCIT:C160914 Recurrent Anaplastic Ganglioglioma 5 195487 -NCIT:C179223 Recurrent Anaplastic (Malignant) Meningioma 5 195488 -NCIT:C7849 Recurrent Retinoblastoma 5 195489 -NCIT:C154608 Recurrent Metastatic Malignant Neoplasm 4 195490 -NCIT:C151905 Recurrent Metastatic Digestive System Carcinoma 5 195491 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 6 195492 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 5 195493 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 5 195494 -NCIT:C173916 Recurrent Metastatic Malignant Neoplasm in the Leptomeninges 5 195495 -NCIT:C179179 Recurrent Pseudomyxoma Peritonei 5 195496 -NCIT:C182020 Recurrent Metastatic Melanoma 5 195497 -NCIT:C9181 Recurrent Carcinoma of Unknown Primary 5 195498 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 6 195499 -NCIT:C162702 Recurrent Childhood Malignant Neoplasm 4 195500 -NCIT:C114836 Recurrent Childhood Central Nervous System Embryonal Neoplasm 5 195501 -NCIT:C115374 Recurrent Childhood Pineoblastoma 6 195502 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 6 195503 -NCIT:C6774 Recurrent Childhood Medulloblastoma 6 195504 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 5 195505 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 5 195506 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 5 195507 -NCIT:C115364 Recurrent Childhood Glioblastoma 5 195508 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 6 195509 -NCIT:C115365 Recurrent Childhood Gliosarcoma 6 195510 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 5 195511 -NCIT:C115368 Recurrent Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 5 195512 -NCIT:C148026 Recurrent Childhood Malignant Solid Neoplasm 5 195513 -NCIT:C162730 Recurrent Rhabdoid Tumor of the Kidney 5 195514 -NCIT:C187189 Recurrent Childhood Osteosarcoma 5 195515 -NCIT:C187196 Recurrent Childhood Lymphoma 5 195516 -NCIT:C115369 Recurrent Childhood Non-Hodgkin Lymphoma 6 195517 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 7 195518 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 7 195519 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 7 195520 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 7 195521 -NCIT:C8059 Recurrent Childhood Hodgkin Lymphoma 6 195522 -NCIT:C188881 Recurrent Extrarenal Rhabdoid Tumor 5 195523 -NCIT:C171170 Recurrent Extrarenal Rhabdoid Tumor of the Ovary 6 195524 -NCIT:C7784 Recurrent Childhood Acute Lymphoblastic Leukemia 5 195525 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 6 195526 -NCIT:C7839 Recurrent Childhood Malignant Liver Neoplasm 5 195527 -NCIT:C8643 Recurrent Hepatoblastoma 6 195528 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 6 195529 -NCIT:C8067 Recurrent Childhood Soft Tissue Sarcoma 5 195530 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 6 195531 -NCIT:C9068 Recurrent Childhood Acute Myeloid Leukemia 5 195532 -NCIT:C9221 Recurrent Childhood Malignant Germ Cell Tumor 5 195533 -NCIT:C170726 Recurrent Malignant Breast Neoplasm 4 195534 -NCIT:C138023 Recurrent Breast Lymphoma 5 195535 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 6 195536 -NCIT:C170727 Recurrent Breast Sarcoma 5 195537 -NCIT:C133092 Recurrent Breast Angiosarcoma 6 195538 -NCIT:C7771 Recurrent Breast Carcinoma 5 195539 -NCIT:C175588 Recurrent Breast Adenocarcinoma 6 195540 -NCIT:C153568 Recurrent Breast Acinic Cell Carcinoma 7 195541 -NCIT:C153584 Recurrent Lobular Breast Carcinoma 7 195542 -NCIT:C153587 Recurrent Invasive Breast Carcinoma of No Special Type 7 195543 -NCIT:C153588 Recurrent Breast Paget Disease 7 195544 -NCIT:C168783 Recurrent HER2-Negative Breast Carcinoma 7 195545 -NCIT:C171014 Recurrent Triple-Negative Breast Carcinoma 7 195546 -NCIT:C182108 Recurrent HER2-Positive Breast Carcinoma 7 195547 -NCIT:C185157 Recurrent Hormone Receptor-Positive Breast Carcinoma 7 195548 -NCIT:C8607 Recurrent Breast Inflammatory Carcinoma 7 195549 -NCIT:C190196 Locally Recurrent Breast Carcinoma 6 195550 -NCIT:C177724 Recurrent Malignant Genitourinary System Neoplasm 4 195551 -NCIT:C150526 Recurrent Malignant Female Reproductive System Neoplasm 5 195552 -NCIT:C153347 Recurrent Ovarian Carcinosarcoma 6 195553 -NCIT:C160619 Recurrent Malignant Ovarian Granulosa Cell Tumor 6 195554 -NCIT:C171170 Recurrent Extrarenal Rhabdoid Tumor of the Ovary 6 195555 -NCIT:C7620 Recurrent Female Reproductive System Carcinoma 6 195556 -NCIT:C115429 Recurrent Fallopian Tube Carcinoma 7 195557 -NCIT:C170750 Recurrent Platinum-Resistant Fallopian Tube Carcinoma 8 195558 -NCIT:C170755 Recurrent Fallopian Tube Undifferentiated Carcinoma 8 195559 -NCIT:C170757 Recurrent Fallopian Tube Transitional Cell Carcinoma 8 195560 -NCIT:C170766 Recurrent Fallopian Tube Adenocarcinoma 8 195561 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 9 195562 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 9 195563 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 9 195564 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 9 195565 -NCIT:C191395 Recurrent Platinum-Sensitive Fallopian Tube Carcinoma 8 195566 -NCIT:C150094 Recurrent Endometrial Carcinoma 7 195567 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 8 195568 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 8 195569 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 9 195570 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 9 195571 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 9 195572 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 9 195573 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 9 195574 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 8 195575 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 8 195576 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 8 195577 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 8 195578 -NCIT:C190200 Locally Recurrent Endometrial Carcinoma 8 195579 -NCIT:C7804 Recurrent Cervical Carcinoma 7 195580 -NCIT:C136649 Recurrent Cervical Squamous Cell Carcinoma 8 195581 -NCIT:C136650 Recurrent Cervical Adenosquamous Carcinoma 8 195582 -NCIT:C136651 Recurrent Cervical Adenocarcinoma 8 195583 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 9 195584 -NCIT:C7833 Recurrent Ovarian Carcinoma 7 195585 -NCIT:C148025 Recurrent BRCA- Associated Ovarian Carcinoma 8 195586 -NCIT:C153614 Recurrent Ovarian Adenocarcinoma 8 195587 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 9 195588 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 9 195589 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 10 195590 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 10 195591 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 10 195592 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 9 195593 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 9 195594 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 10 195595 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 9 195596 -NCIT:C153818 Recurrent Malignant Ovarian Brenner Tumor 8 195597 -NCIT:C153819 Recurrent Ovarian Transitional Cell Carcinoma 8 195598 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 8 195599 -NCIT:C170754 Recurrent Ovarian Undifferentiated Carcinoma 8 195600 -NCIT:C178669 Recurrent Ovarian Seromucinous Carcinoma 8 195601 -NCIT:C188391 Recurrent Platinum-Sensitive Ovarian Carcinoma 8 195602 -NCIT:C190201 Locally Recurrent Ovarian Carcinoma 8 195603 -NCIT:C7860 Recurrent Vaginal Carcinoma 7 195604 -NCIT:C185302 Recurrent Vaginal Squamous Cell Carcinoma 8 195605 -NCIT:C9054 Recurrent Vulvar Carcinoma 7 195606 -NCIT:C174200 Recurrent Vulvar Squamous Cell Carcinoma 8 195607 -NCIT:C8087 Recurrent Ovarian Germ Cell Tumor 6 195608 -NCIT:C8261 Recurrent Uterine Corpus Sarcoma 6 195609 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 7 195610 -NCIT:C9072 Recurrent Uterine Corpus Cancer 6 195611 -NCIT:C150094 Recurrent Endometrial Carcinoma 7 195612 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 8 195613 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 8 195614 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 9 195615 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 9 195616 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 9 195617 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 9 195618 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 9 195619 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 8 195620 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 8 195621 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 8 195622 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 8 195623 -NCIT:C190200 Locally Recurrent Endometrial Carcinoma 8 195624 -NCIT:C155818 Recurrent Uterine Corpus Carcinosarcoma 7 195625 -NCIT:C9269 Recurrent Malignant Endocervical Neoplasm 6 195626 -NCIT:C150533 Recurrent Malignant Male Reproductive System Neoplasm 5 195627 -NCIT:C138021 Recurrent Testicular Lymphoma 6 195628 -NCIT:C179466 Recurrent Malignant Spermatic Cord Neoplasm 6 195629 -NCIT:C7621 Recurrent Male Reproductive System Carcinoma 6 195630 -NCIT:C7870 Recurrent Penile Carcinoma 7 195631 -NCIT:C7902 Recurrent Prostate Carcinoma 7 195632 -NCIT:C156771 Biochemically Recurrent Prostate Carcinoma 8 195633 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 8 195634 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 9 195635 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 8 195636 -NCIT:C9369 Recurrent Malignant Testicular Germ Cell Tumor 6 195637 -NCIT:C150542 Recurrent Malignant Urinary System Neoplasm 5 195638 -NCIT:C162730 Recurrent Rhabdoid Tumor of the Kidney 6 195639 -NCIT:C7623 Recurrent Urinary System Carcinoma 6 195640 -NCIT:C157631 Recurrent Urothelial Carcinoma 7 195641 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 195642 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 195643 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 195644 -NCIT:C8254 Recurrent Renal Pelvis and Ureter Urothelial Carcinoma 8 195645 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 9 195646 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 195647 -NCIT:C172622 Recurrent Kidney Carcinoma 7 195648 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 8 195649 -NCIT:C162726 Recurrent Kidney Medullary Carcinoma 8 195650 -NCIT:C7825 Recurrent Renal Cell Carcinoma 8 195651 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 9 195652 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 10 195653 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 9 195654 -NCIT:C7508 Recurrent Urethral Carcinoma 7 195655 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 195656 -NCIT:C7899 Recurrent Bladder Carcinoma 7 195657 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 195658 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 195659 -NCIT:C190774 Recurrent Non-Muscle Invasive Bladder Carcinoma 8 195660 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 195661 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 195662 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 8 195663 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 8 195664 -NCIT:C9255 Recurrent Ureter Carcinoma 7 195665 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 8 195666 -NCIT:C7845 Recurrent Kidney Wilms Tumor 6 195667 -NCIT:C9266 Recurrent Malignant Bladder Neoplasm 6 195668 -NCIT:C7899 Recurrent Bladder Carcinoma 7 195669 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 195670 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 195671 -NCIT:C190774 Recurrent Non-Muscle Invasive Bladder Carcinoma 8 195672 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 195673 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 195674 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 8 195675 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 8 195676 -NCIT:C179463 Recurrent Malignant Retroperitoneal Neoplasm 4 195677 -NCIT:C6417 Recurrent Adrenal Cortical Carcinoma 5 195678 -NCIT:C179465 Recurrent Malignant Abdominal Neoplasm 4 195679 -NCIT:C179179 Recurrent Pseudomyxoma Peritonei 5 195680 -NCIT:C27358 Recurrent Hematologic Malignancy 4 195681 -NCIT:C148425 Recurrent Leukemia 5 195682 -NCIT:C148429 Recurrent Acute Leukemia 6 195683 -NCIT:C142810 Recurrent Acute Lymphoblastic Leukemia 7 195684 -NCIT:C142811 Recurrent B Acute Lymphoblastic Leukemia 8 195685 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 9 195686 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 195687 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 9 195688 -NCIT:C150131 Recurrent T Acute Lymphoblastic Leukemia 8 195689 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 9 195690 -NCIT:C7784 Recurrent Childhood Acute Lymphoblastic Leukemia 8 195691 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 9 195692 -NCIT:C7883 Recurrent Adult Acute Lymphoblastic Leukemia 8 195693 -NCIT:C148427 Recurrent Acute Myeloid Leukemia 7 195694 -NCIT:C125715 Recurrent Acute Myeloid Leukemia with Myelodysplasia-Related Changes 8 195695 -NCIT:C156720 Recurrent Acute Myeloid Leukemia with Multilineage Dysplasia 9 195696 -NCIT:C156716 Recurrent Acute Myeloid Leukemia Not Otherwise Specified 8 195697 -NCIT:C156717 Recurrent Acute Myelomonocytic Leukemia 9 195698 -NCIT:C156722 Recurrent Acute Monoblastic and Monocytic Leukemia 9 195699 -NCIT:C156723 Recurrent Acute Erythroid Leukemia 9 195700 -NCIT:C156731 Recurrent Acute Megakaryoblastic Leukemia 9 195701 -NCIT:C156718 Recurrent Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 8 195702 -NCIT:C156719 Recurrent Acute Myeloid Leukemia with t (9;11) (p21.3; q23.3); MLLT3-MLL 9 195703 -NCIT:C169107 Recurrent Acute Promyelocytic Leukemia with PML-RARA 9 195704 -NCIT:C7882 Recurrent Adult Acute Myeloid Leukemia 8 195705 -NCIT:C9068 Recurrent Childhood Acute Myeloid Leukemia 8 195706 -NCIT:C151976 Recurrent Burkitt Leukemia 7 195707 -NCIT:C172626 Recurrent Acute Leukemia of Ambiguous Lineage 7 195708 -NCIT:C141446 Recurrent Acute Undifferentiated Leukemia 8 195709 -NCIT:C148423 Recurrent Mixed Phenotype Acute Leukemia 8 195710 -NCIT:C141445 Recurrent Acute Biphenotypic Leukemia 9 195711 -NCIT:C179204 Recurrent Acute Bilineal Leukemia 9 195712 -NCIT:C150043 Recurrent Chronic Leukemia 6 195713 -NCIT:C142882 Recurrent Hairy Cell Leukemia 7 195714 -NCIT:C150048 Recurrent Chronic Myelomonocytic Leukemia 7 195715 -NCIT:C150133 Recurrent T-Cell Prolymphocytic Leukemia 7 195716 -NCIT:C157692 Recurrent Aggressive NK-Cell Leukemia 7 195717 -NCIT:C158081 Recurrent B-Cell Prolymphocytic Leukemia 7 195718 -NCIT:C171065 Recurrent Hairy Cell Leukemia Variant 7 195719 -NCIT:C176999 Recurrent Sezary Syndrome 7 195720 -NCIT:C180985 Recurrent T-Cell Large Granular Lymphocyte Leukemia 7 195721 -NCIT:C8645 Recurrent Chronic Lymphocytic Leukemia 7 195722 -NCIT:C158151 Recurrent Transformed Chronic Lymphocytic Leukemia 8 195723 -NCIT:C9070 Recurrent Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 195724 -NCIT:C190786 Recurrent Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 195725 -NCIT:C172132 Recurrent Myeloid Neoplasm 5 195726 -NCIT:C148363 Recurrent Myelodysplastic Syndrome 6 195727 -NCIT:C148427 Recurrent Acute Myeloid Leukemia 6 195728 -NCIT:C125715 Recurrent Acute Myeloid Leukemia with Myelodysplasia-Related Changes 7 195729 -NCIT:C156720 Recurrent Acute Myeloid Leukemia with Multilineage Dysplasia 8 195730 -NCIT:C156716 Recurrent Acute Myeloid Leukemia Not Otherwise Specified 7 195731 -NCIT:C156717 Recurrent Acute Myelomonocytic Leukemia 8 195732 -NCIT:C156722 Recurrent Acute Monoblastic and Monocytic Leukemia 8 195733 -NCIT:C156723 Recurrent Acute Erythroid Leukemia 8 195734 -NCIT:C156731 Recurrent Acute Megakaryoblastic Leukemia 8 195735 -NCIT:C156718 Recurrent Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 7 195736 -NCIT:C156719 Recurrent Acute Myeloid Leukemia with t (9;11) (p21.3; q23.3); MLLT3-MLL 8 195737 -NCIT:C169107 Recurrent Acute Promyelocytic Leukemia with PML-RARA 8 195738 -NCIT:C7882 Recurrent Adult Acute Myeloid Leukemia 7 195739 -NCIT:C9068 Recurrent Childhood Acute Myeloid Leukemia 7 195740 -NCIT:C156103 Recurrent Blastic Plasmacytoid Dendritic Cell Neoplasm 6 195741 -NCIT:C166142 Recurrent Myeloproliferative Neoplasm 6 195742 -NCIT:C179203 Recurrent Primary Myelofibrosis 7 195743 -NCIT:C190786 Recurrent Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 195744 -NCIT:C9070 Recurrent Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 195745 -NCIT:C166143 Recurrent Myelodysplastic/Myeloproliferative Neoplasm 6 195746 -NCIT:C150048 Recurrent Chronic Myelomonocytic Leukemia 7 195747 -NCIT:C170817 Recurrent Malignant Mastocytosis 6 195748 -NCIT:C172133 Recurrent Malignant Lymphoid Neoplasm 5 195749 -NCIT:C131873 Recurrent Chronic Lymphocytic Leukemia/Small Lymphocytic Lymphoma 6 195750 -NCIT:C8154 Recurrent Small Lymphocytic Lymphoma 7 195751 -NCIT:C8645 Recurrent Chronic Lymphocytic Leukemia 7 195752 -NCIT:C158151 Recurrent Transformed Chronic Lymphocytic Leukemia 8 195753 -NCIT:C134157 Recurrent Lymphoma 6 195754 -NCIT:C138013 Recurrent B-Cell Lymphoma, Unclassifiable, with Features Intermediate between Diffuse Large B-Cell Lymphoma and Classic Hodgkin Lymphoma 7 195755 -NCIT:C138019 Recurrent Central Nervous System Lymphoma 7 195756 -NCIT:C146990 Recurrent Central Nervous System Non-Hodgkin Lymphoma 8 195757 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 9 195758 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 195759 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 195760 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 195761 -NCIT:C138021 Recurrent Testicular Lymphoma 7 195762 -NCIT:C138023 Recurrent Breast Lymphoma 7 195763 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 8 195764 -NCIT:C142876 Recurrent Primary Cutaneous Lymphoma 7 195765 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 8 195766 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 195767 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 195768 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 195769 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 195770 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 195771 -NCIT:C8686 Recurrent Mycosis Fungoides 9 195772 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 195773 -NCIT:C147863 Recurrent EBV-Related Lymphoma 7 195774 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 195775 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 8 195776 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 9 195777 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 9 195778 -NCIT:C153175 Recurrent Mediastinal Lymphoma 7 195779 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 195780 -NCIT:C157681 Recurrent Primary Bone Lymphoma 7 195781 -NCIT:C187196 Recurrent Childhood Lymphoma 7 195782 -NCIT:C115369 Recurrent Childhood Non-Hodgkin Lymphoma 8 195783 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 9 195784 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 9 195785 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 9 195786 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 9 195787 -NCIT:C8059 Recurrent Childhood Hodgkin Lymphoma 8 195788 -NCIT:C4937 Recurrent Hodgkin Lymphoma 7 195789 -NCIT:C133592 Recurrent Classic Hodgkin Lymphoma 8 195790 -NCIT:C136971 Recurrent Lymphocyte-Rich Classic Hodgkin Lymphoma 9 195791 -NCIT:C8649 Recurrent Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 195792 -NCIT:C8832 Recurrent Mixed Cellularity Classic Hodgkin Lymphoma 9 195793 -NCIT:C8837 Recurrent Nodular Sclerosis Classic Hodgkin Lymphoma 9 195794 -NCIT:C7259 Recurrent Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 195795 -NCIT:C7789 Recurrent Adult Hodgkin Lymphoma 8 195796 -NCIT:C8059 Recurrent Childhood Hodgkin Lymphoma 8 195797 -NCIT:C9251 Recurrent Non-Hodgkin Lymphoma 7 195798 -NCIT:C115369 Recurrent Childhood Non-Hodgkin Lymphoma 8 195799 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 9 195800 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 9 195801 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 9 195802 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 9 195803 -NCIT:C146990 Recurrent Central Nervous System Non-Hodgkin Lymphoma 8 195804 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 9 195805 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 195806 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 195807 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 195808 -NCIT:C156232 Recurrent Aggressive Non-Hodgkin Lymphoma 8 195809 -NCIT:C178553 Recurrent Aggressive B-Cell Non-Hodgkin Lymphoma 9 195810 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 195811 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 195812 -NCIT:C5008 Recurrent Burkitt Lymphoma 10 195813 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 11 195814 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 11 195815 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 10 195816 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 11 195817 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 11 195818 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 10 195819 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 11 195820 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 11 195821 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 10 195822 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 10 195823 -NCIT:C178554 Recurrent Aggressive T-Cell Non-Hodgkin Lymphoma 9 195824 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 195825 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 10 195826 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 195827 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 195828 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 10 195829 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 195830 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 195831 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 10 195832 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 10 195833 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 10 195834 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 10 195835 -NCIT:C8490 Recurrent Aggressive Adult Non-Hodgkin Lymphoma 9 195836 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 195837 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 10 195838 -NCIT:C8164 Recurrent Adult Lymphoblastic Lymphoma 10 195839 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 10 195840 -NCIT:C181796 Recurrent Indolent Non-Hodgkin Lymphoma 8 195841 -NCIT:C183512 Recurrent Indolent B-Cell Non-Hodgkin Lymphoma 9 195842 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 10 195843 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 11 195844 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 195845 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 11 195846 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 10 195847 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 10 195848 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 10 195849 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 11 195850 -NCIT:C183513 Recurrent Indolent T-Cell Non-Hodgkin Lymphoma 9 195851 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 195852 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 195853 -NCIT:C8686 Recurrent Mycosis Fungoides 10 195854 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 195855 -NCIT:C8488 Recurrent Indolent Adult Non-Hodgkin Lymphoma 9 195856 -NCIT:C8098 Recurrent Adult Non-Hodgkin Lymphoma 8 195857 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 9 195858 -NCIT:C8488 Recurrent Indolent Adult Non-Hodgkin Lymphoma 9 195859 -NCIT:C8490 Recurrent Aggressive Adult Non-Hodgkin Lymphoma 9 195860 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 195861 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 10 195862 -NCIT:C8164 Recurrent Adult Lymphoblastic Lymphoma 10 195863 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 10 195864 -NCIT:C8663 Recurrent T-Cell Non-Hodgkin Lymphoma 8 195865 -NCIT:C178554 Recurrent Aggressive T-Cell Non-Hodgkin Lymphoma 9 195866 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 195867 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 10 195868 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 195869 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 195870 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 10 195871 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 195872 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 195873 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 10 195874 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 10 195875 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 10 195876 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 10 195877 -NCIT:C183513 Recurrent Indolent T-Cell Non-Hodgkin Lymphoma 9 195878 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 195879 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 195880 -NCIT:C8686 Recurrent Mycosis Fungoides 10 195881 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 195882 -NCIT:C8688 Recurrent Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 9 195883 -NCIT:C115439 Recurrent Mycosis Fungoides and Sezary Syndrome 10 195884 -NCIT:C176999 Recurrent Sezary Syndrome 11 195885 -NCIT:C8686 Recurrent Mycosis Fungoides 11 195886 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 12 195887 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 195888 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 10 195889 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 195890 -NCIT:C157689 Recurrent NK-Cell Lymphoma, Unclassifiable 10 195891 -NCIT:C165789 Recurrent Transformed T-cell Non-Hodgkin Lymphoma 10 195892 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 195893 -NCIT:C168778 Recurrent Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 10 195894 -NCIT:C168780 Recurrent Follicular T-Cell Lymphoma 10 195895 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 10 195896 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 10 195897 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 11 195898 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 11 195899 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 11 195900 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 11 195901 -NCIT:C8686 Recurrent Mycosis Fungoides 11 195902 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 12 195903 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 10 195904 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 10 195905 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 10 195906 -NCIT:C9250 Recurrent Anaplastic Large Cell Lymphoma 10 195907 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 11 195908 -NCIT:C162688 Recurrent Systemic Anaplastic Large Cell Lymphoma 11 195909 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 12 195910 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 11 195911 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 11 195912 -NCIT:C8702 Recurrent Transformed Non-Hodgkin Lymphoma 8 195913 -NCIT:C158149 Recurrent Transformed B-Cell Non-Hodgkin Lymphoma 9 195914 -NCIT:C160232 Recurrent Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 10 195915 -NCIT:C186483 Recurrent Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 10 195916 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 11 195917 -NCIT:C165789 Recurrent Transformed T-cell Non-Hodgkin Lymphoma 9 195918 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 195919 -NCIT:C8841 Recurrent B-Cell Non-Hodgkin Lymphoma 8 195920 -NCIT:C165799 Recurrent Mature B-Cell Non-Hodgkin Lymphoma 9 195921 -NCIT:C158149 Recurrent Transformed B-Cell Non-Hodgkin Lymphoma 10 195922 -NCIT:C160232 Recurrent Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 11 195923 -NCIT:C186483 Recurrent Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 11 195924 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 12 195925 -NCIT:C5007 Recurrent Follicular Lymphoma 10 195926 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 11 195927 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 11 195928 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 11 195929 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 12 195930 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 12 195931 -NCIT:C5008 Recurrent Burkitt Lymphoma 10 195932 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 11 195933 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 11 195934 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 10 195935 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 11 195936 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 195937 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 11 195938 -NCIT:C8154 Recurrent Small Lymphocytic Lymphoma 10 195939 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 10 195940 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 10 195941 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 11 195942 -NCIT:C8852 Recurrent Diffuse Large B-Cell Lymphoma 10 195943 -NCIT:C138015 Recurrent Extranodal Diffuse Large B-cell Lymphoma 11 195944 -NCIT:C138025 Recurrent Intravascular Large B-Cell Lymphoma 11 195945 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 195946 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 195947 -NCIT:C156696 Recurrent T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 11 195948 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 11 195949 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 12 195950 -NCIT:C157679 Recurrent Primary Effusion Lymphoma 11 195951 -NCIT:C157683 Recurrent Plasmablastic Lymphoma 11 195952 -NCIT:C160229 Recurrent High Grade B-Cell Lymphoma 11 195953 -NCIT:C151980 Recurrent High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 12 195954 -NCIT:C162451 Recurrent High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 12 195955 -NCIT:C188788 Recurrent High Grade B-Cell Lymphoma, Not Otherwise Specified 12 195956 -NCIT:C165240 Recurrent Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 195957 -NCIT:C160230 Recurrent Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 12 195958 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 12 195959 -NCIT:C182035 Recurrent Immunoblastic Lymphoma 12 195960 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 13 195961 -NCIT:C8926 Recurrent Centroblastic Lymphoma 12 195962 -NCIT:C183140 Recurrent Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 11 195963 -NCIT:C188790 Recurrent ALK-Positive Large B-Cell Lymphoma 11 195964 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 11 195965 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 12 195966 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 12 195967 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 195968 -NCIT:C178553 Recurrent Aggressive B-Cell Non-Hodgkin Lymphoma 9 195969 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 195970 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 195971 -NCIT:C5008 Recurrent Burkitt Lymphoma 10 195972 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 11 195973 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 11 195974 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 10 195975 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 11 195976 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 11 195977 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 10 195978 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 11 195979 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 11 195980 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 10 195981 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 10 195982 -NCIT:C183512 Recurrent Indolent B-Cell Non-Hodgkin Lymphoma 9 195983 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 10 195984 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 11 195985 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 195986 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 11 195987 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 10 195988 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 10 195989 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 10 195990 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 11 195991 -NCIT:C142810 Recurrent Acute Lymphoblastic Leukemia 6 195992 -NCIT:C142811 Recurrent B Acute Lymphoblastic Leukemia 7 195993 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 195994 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 195995 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 195996 -NCIT:C150131 Recurrent T Acute Lymphoblastic Leukemia 7 195997 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 195998 -NCIT:C7784 Recurrent Childhood Acute Lymphoblastic Leukemia 7 195999 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 196000 -NCIT:C7883 Recurrent Adult Acute Lymphoblastic Leukemia 7 196001 -NCIT:C142882 Recurrent Hairy Cell Leukemia 6 196002 -NCIT:C151976 Recurrent Burkitt Leukemia 6 196003 -NCIT:C157474 Recurrent Monomorphic Post-Transplant Lymphoproliferative Disorder 6 196004 -NCIT:C158081 Recurrent B-Cell Prolymphocytic Leukemia 6 196005 -NCIT:C171065 Recurrent Hairy Cell Leukemia Variant 6 196006 -NCIT:C172289 Recurrent Plasma Cell Neoplasm 6 196007 -NCIT:C133732 Recurrent Primary Amyloidosis 7 196008 -NCIT:C174054 Recurrent AL Amyloidosis 8 196009 -NCIT:C7025 Recurrent Plasma Cell Myeloma 7 196010 -NCIT:C173409 Recurrent Mature T-Cell and NK-Cell Neoplasm 6 196011 -NCIT:C150133 Recurrent T-Cell Prolymphocytic Leukemia 7 196012 -NCIT:C157692 Recurrent Aggressive NK-Cell Leukemia 7 196013 -NCIT:C180985 Recurrent T-Cell Large Granular Lymphocyte Leukemia 7 196014 -NCIT:C8688 Recurrent Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 7 196015 -NCIT:C115439 Recurrent Mycosis Fungoides and Sezary Syndrome 8 196016 -NCIT:C176999 Recurrent Sezary Syndrome 9 196017 -NCIT:C8686 Recurrent Mycosis Fungoides 9 196018 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 196019 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 8 196020 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 8 196021 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 196022 -NCIT:C157689 Recurrent NK-Cell Lymphoma, Unclassifiable 8 196023 -NCIT:C165789 Recurrent Transformed T-cell Non-Hodgkin Lymphoma 8 196024 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 9 196025 -NCIT:C168778 Recurrent Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 8 196026 -NCIT:C168780 Recurrent Follicular T-Cell Lymphoma 8 196027 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 8 196028 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 196029 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 196030 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 196031 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 196032 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 196033 -NCIT:C8686 Recurrent Mycosis Fungoides 9 196034 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 196035 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 8 196036 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 8 196037 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 8 196038 -NCIT:C9250 Recurrent Anaplastic Large Cell Lymphoma 8 196039 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 9 196040 -NCIT:C162688 Recurrent Systemic Anaplastic Large Cell Lymphoma 9 196041 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 196042 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 196043 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 196044 -NCIT:C8695 Recurrent T Lymphoblastic Leukemia/Lymphoma 6 196045 -NCIT:C150131 Recurrent T Acute Lymphoblastic Leukemia 7 196046 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 196047 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 7 196048 -NCIT:C7619 Recurrent Carcinoma 4 196049 -NCIT:C115441 Recurrent Primary Peritoneal Carcinoma 5 196050 -NCIT:C170751 Recurrent Platinum-Resistant Primary Peritoneal Carcinoma 6 196051 -NCIT:C170756 Recurrent Primary Peritoneal Undifferentiated Carcinoma 6 196052 -NCIT:C170759 Recurrent Primary Peritoneal Transitional Cell Carcinoma 6 196053 -NCIT:C170767 Recurrent Primary Peritoneal Adenocarcinoma 6 196054 -NCIT:C156453 Recurrent Primary Peritoneal Serous Adenocarcinoma 7 196055 -NCIT:C156454 Recurrent Primary Peritoneal Low Grade Serous Adenocarcinoma 8 196056 -NCIT:C165268 Recurrent Primary Peritoneal High Grade Serous Adenocarcinoma 8 196057 -NCIT:C165269 Recurrent Primary Peritoneal Endometrioid Adenocarcinoma 7 196058 -NCIT:C170761 Recurrent Primary Peritoneal Clear Cell Adenocarcinoma 7 196059 -NCIT:C191407 Recurrent Platinum-Sensitive Primary Peritoneal Carcinoma 6 196060 -NCIT:C148127 Recurrent Thymic Carcinoma 5 196061 -NCIT:C157639 Recurrent Adenoid Cystic Carcinoma 5 196062 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 6 196063 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 6 196064 -NCIT:C8216 Recurrent Oral Cavity Adenoid Cystic Carcinoma 6 196065 -NCIT:C159565 Recurrent Adenocarcinoma 5 196066 -NCIT:C136651 Recurrent Cervical Adenocarcinoma 6 196067 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 7 196068 -NCIT:C153359 Recurrent Gastroesophageal Junction Adenocarcinoma 6 196069 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 6 196070 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 6 196071 -NCIT:C153574 Recurrent Ampulla of Vater Adenocarcinoma 6 196072 -NCIT:C153575 Recurrent Anal Adenocarcinoma 6 196073 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 7 196074 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 7 196075 -NCIT:C153611 Recurrent Salivary Duct Carcinoma 6 196076 -NCIT:C153612 Recurrent Minor Salivary Gland Adenocarcinoma 6 196077 -NCIT:C153614 Recurrent Ovarian Adenocarcinoma 6 196078 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 7 196079 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 7 196080 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 8 196081 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 8 196082 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 8 196083 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 7 196084 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 7 196085 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 8 196086 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 7 196087 -NCIT:C154622 Recurrent Gastric Adenocarcinoma 6 196088 -NCIT:C155742 Recurrent Pancreatic Adenocarcinoma 6 196089 -NCIT:C153569 Recurrent Pancreatic Acinar Cell Carcinoma 7 196090 -NCIT:C153619 Recurrent Pancreatic Ductal Adenocarcinoma 7 196091 -NCIT:C153620 Recurrent Pancreatic Cystadenocarcinoma 7 196092 -NCIT:C158421 Recurrent Endometrioid Adenocarcinoma 6 196093 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 7 196094 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 7 196095 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 7 196096 -NCIT:C165269 Recurrent Primary Peritoneal Endometrioid Adenocarcinoma 7 196097 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 6 196098 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 7 196099 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 7 196100 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 7 196101 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 7 196102 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 7 196103 -NCIT:C162441 Recurrent Colorectal Adenocarcinoma 6 196104 -NCIT:C162442 Recurrent Colon Adenocarcinoma 7 196105 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 7 196106 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 6 196107 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 7 196108 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 7 196109 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 8 196110 -NCIT:C170766 Recurrent Fallopian Tube Adenocarcinoma 6 196111 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 7 196112 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 7 196113 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 7 196114 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 7 196115 -NCIT:C170767 Recurrent Primary Peritoneal Adenocarcinoma 6 196116 -NCIT:C156453 Recurrent Primary Peritoneal Serous Adenocarcinoma 7 196117 -NCIT:C156454 Recurrent Primary Peritoneal Low Grade Serous Adenocarcinoma 8 196118 -NCIT:C165268 Recurrent Primary Peritoneal High Grade Serous Adenocarcinoma 8 196119 -NCIT:C165269 Recurrent Primary Peritoneal Endometrioid Adenocarcinoma 7 196120 -NCIT:C170761 Recurrent Primary Peritoneal Clear Cell Adenocarcinoma 7 196121 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 6 196122 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 7 196123 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 6 196124 -NCIT:C175588 Recurrent Breast Adenocarcinoma 6 196125 -NCIT:C153568 Recurrent Breast Acinic Cell Carcinoma 7 196126 -NCIT:C153584 Recurrent Lobular Breast Carcinoma 7 196127 -NCIT:C153587 Recurrent Invasive Breast Carcinoma of No Special Type 7 196128 -NCIT:C153588 Recurrent Breast Paget Disease 7 196129 -NCIT:C168783 Recurrent HER2-Negative Breast Carcinoma 7 196130 -NCIT:C171014 Recurrent Triple-Negative Breast Carcinoma 7 196131 -NCIT:C182108 Recurrent HER2-Positive Breast Carcinoma 7 196132 -NCIT:C185157 Recurrent Hormone Receptor-Positive Breast Carcinoma 7 196133 -NCIT:C8607 Recurrent Breast Inflammatory Carcinoma 7 196134 -NCIT:C179174 Recurrent Appendix Adenocarcinoma 6 196135 -NCIT:C153579 Recurrent Appendix Mucinous Adenocarcinoma 7 196136 -NCIT:C179179 Recurrent Pseudomyxoma Peritonei 6 196137 -NCIT:C27325 Recurrent Cholangiocarcinoma 6 196138 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 7 196139 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 7 196140 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 6 196141 -NCIT:C6417 Recurrent Adrenal Cortical Carcinoma 6 196142 -NCIT:C7825 Recurrent Renal Cell Carcinoma 6 196143 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 7 196144 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 8 196145 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 7 196146 -NCIT:C7828 Recurrent Parathyroid Gland Carcinoma 6 196147 -NCIT:C8627 Recurrent Esophageal Adenocarcinoma 6 196148 -NCIT:C8757 Recurrent Lung Adenocarcinoma 6 196149 -NCIT:C9264 Recurrent Hepatocellular Carcinoma 6 196150 -NCIT:C154082 Recurrent Fibrolamellar Carcinoma 7 196151 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 7 196152 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 7 196153 -NCIT:C162652 Recurrent Squamous Cell Carcinoma 5 196154 -NCIT:C133709 Recurrent Head and Neck Squamous Cell Carcinoma 6 196155 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 196156 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 196157 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 196158 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 196159 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 196160 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 196161 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 196162 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 196163 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 196164 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 7 196165 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 196166 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 196167 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 196168 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 196169 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 196170 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 196171 -NCIT:C176682 Locally Recurrent Head and Neck Squamous Cell Carcinoma 7 196172 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 7 196173 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 196174 -NCIT:C136649 Recurrent Cervical Squamous Cell Carcinoma 6 196175 -NCIT:C143012 Recurrent Skin Squamous Cell Carcinoma 6 196176 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 196177 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 7 196178 -NCIT:C165737 Locally Recurrent Skin Squamous Cell Carcinoma 7 196179 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 6 196180 -NCIT:C169102 Recurrent Anal Squamous Cell Carcinoma 6 196181 -NCIT:C175360 Recurrent Anal Canal Squamous Cell Carcinoma 7 196182 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 8 196183 -NCIT:C174200 Recurrent Vulvar Squamous Cell Carcinoma 6 196184 -NCIT:C185302 Recurrent Vaginal Squamous Cell Carcinoma 6 196185 -NCIT:C5014 Recurrent Lung Squamous Cell Carcinoma 6 196186 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 7 196187 -NCIT:C8633 Recurrent Esophageal Squamous Cell Carcinoma 6 196188 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 6 196189 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 6 196190 -NCIT:C162732 Recurrent Malignant Myoepithelioma 5 196191 -NCIT:C165253 Recurrent Neuroendocrine Carcinoma 5 196192 -NCIT:C115440 Recurrent Merkel Cell Carcinoma 6 196193 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 7 196194 -NCIT:C165740 Locally Recurrent Merkel Cell Carcinoma 7 196195 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 6 196196 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 7 196197 -NCIT:C155938 Recurrent Digestive System Neuroendocrine Carcinoma 6 196198 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 7 196199 -NCIT:C183127 Recurrent Small Cell Neuroendocrine Carcinoma 6 196200 -NCIT:C183128 Recurrent Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 196201 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 8 196202 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 196203 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 7 196204 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 8 196205 -NCIT:C190194 Locally Recurrent Carcinoma 5 196206 -NCIT:C165737 Locally Recurrent Skin Squamous Cell Carcinoma 6 196207 -NCIT:C165740 Locally Recurrent Merkel Cell Carcinoma 6 196208 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 6 196209 -NCIT:C176682 Locally Recurrent Head and Neck Squamous Cell Carcinoma 6 196210 -NCIT:C190195 Locally Recurrent Lung Non-Small Cell Carcinoma 6 196211 -NCIT:C190196 Locally Recurrent Breast Carcinoma 6 196212 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 6 196213 -NCIT:C190198 Locally Recurrent Gastric Carcinoma 6 196214 -NCIT:C190199 Locally Recurrent Colorectal Carcinoma 6 196215 -NCIT:C190200 Locally Recurrent Endometrial Carcinoma 6 196216 -NCIT:C190201 Locally Recurrent Ovarian Carcinoma 6 196217 -NCIT:C190776 Recurrent Basal Cell Carcinoma 5 196218 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 6 196219 -NCIT:C7620 Recurrent Female Reproductive System Carcinoma 5 196220 -NCIT:C115429 Recurrent Fallopian Tube Carcinoma 6 196221 -NCIT:C170750 Recurrent Platinum-Resistant Fallopian Tube Carcinoma 7 196222 -NCIT:C170755 Recurrent Fallopian Tube Undifferentiated Carcinoma 7 196223 -NCIT:C170757 Recurrent Fallopian Tube Transitional Cell Carcinoma 7 196224 -NCIT:C170766 Recurrent Fallopian Tube Adenocarcinoma 7 196225 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 8 196226 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 8 196227 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 8 196228 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 8 196229 -NCIT:C191395 Recurrent Platinum-Sensitive Fallopian Tube Carcinoma 7 196230 -NCIT:C150094 Recurrent Endometrial Carcinoma 6 196231 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 7 196232 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 7 196233 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 8 196234 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 8 196235 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 8 196236 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 8 196237 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 8 196238 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 7 196239 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 7 196240 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 7 196241 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 7 196242 -NCIT:C190200 Locally Recurrent Endometrial Carcinoma 7 196243 -NCIT:C7804 Recurrent Cervical Carcinoma 6 196244 -NCIT:C136649 Recurrent Cervical Squamous Cell Carcinoma 7 196245 -NCIT:C136650 Recurrent Cervical Adenosquamous Carcinoma 7 196246 -NCIT:C136651 Recurrent Cervical Adenocarcinoma 7 196247 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 8 196248 -NCIT:C7833 Recurrent Ovarian Carcinoma 6 196249 -NCIT:C148025 Recurrent BRCA- Associated Ovarian Carcinoma 7 196250 -NCIT:C153614 Recurrent Ovarian Adenocarcinoma 7 196251 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 8 196252 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 8 196253 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 9 196254 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 9 196255 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 9 196256 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 8 196257 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 8 196258 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 9 196259 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 8 196260 -NCIT:C153818 Recurrent Malignant Ovarian Brenner Tumor 7 196261 -NCIT:C153819 Recurrent Ovarian Transitional Cell Carcinoma 7 196262 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 7 196263 -NCIT:C170754 Recurrent Ovarian Undifferentiated Carcinoma 7 196264 -NCIT:C178669 Recurrent Ovarian Seromucinous Carcinoma 7 196265 -NCIT:C188391 Recurrent Platinum-Sensitive Ovarian Carcinoma 7 196266 -NCIT:C190201 Locally Recurrent Ovarian Carcinoma 7 196267 -NCIT:C7860 Recurrent Vaginal Carcinoma 6 196268 -NCIT:C185302 Recurrent Vaginal Squamous Cell Carcinoma 7 196269 -NCIT:C9054 Recurrent Vulvar Carcinoma 6 196270 -NCIT:C174200 Recurrent Vulvar Squamous Cell Carcinoma 7 196271 -NCIT:C7621 Recurrent Male Reproductive System Carcinoma 5 196272 -NCIT:C7870 Recurrent Penile Carcinoma 6 196273 -NCIT:C7902 Recurrent Prostate Carcinoma 6 196274 -NCIT:C156771 Biochemically Recurrent Prostate Carcinoma 7 196275 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 7 196276 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 8 196277 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 7 196278 -NCIT:C7622 Recurrent Digestive System Carcinoma 5 196279 -NCIT:C151905 Recurrent Metastatic Digestive System Carcinoma 6 196280 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 7 196281 -NCIT:C153359 Recurrent Gastroesophageal Junction Adenocarcinoma 6 196282 -NCIT:C153574 Recurrent Ampulla of Vater Adenocarcinoma 6 196283 -NCIT:C153575 Recurrent Anal Adenocarcinoma 6 196284 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 7 196285 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 7 196286 -NCIT:C153802 Recurrent Appendix Carcinoma 6 196287 -NCIT:C179174 Recurrent Appendix Adenocarcinoma 7 196288 -NCIT:C153579 Recurrent Appendix Mucinous Adenocarcinoma 8 196289 -NCIT:C155938 Recurrent Digestive System Neuroendocrine Carcinoma 6 196290 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 7 196291 -NCIT:C156782 Recurrent Biliary Tract Carcinoma 6 196292 -NCIT:C153360 Recurrent Bile Duct Carcinoma 7 196293 -NCIT:C27325 Recurrent Cholangiocarcinoma 8 196294 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 9 196295 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 9 196296 -NCIT:C7893 Recurrent Extrahepatic Bile Duct Carcinoma 8 196297 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 9 196298 -NCIT:C4008 Recurrent Gallbladder Carcinoma 7 196299 -NCIT:C169102 Recurrent Anal Squamous Cell Carcinoma 6 196300 -NCIT:C175360 Recurrent Anal Canal Squamous Cell Carcinoma 7 196301 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 8 196302 -NCIT:C3999 Recurrent Esophageal Carcinoma 6 196303 -NCIT:C8627 Recurrent Esophageal Adenocarcinoma 7 196304 -NCIT:C8633 Recurrent Esophageal Squamous Cell Carcinoma 7 196305 -NCIT:C7110 Recurrent Liver Carcinoma 6 196306 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 7 196307 -NCIT:C7880 Recurrent Adult Liver Carcinoma 7 196308 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 8 196309 -NCIT:C9264 Recurrent Hepatocellular Carcinoma 7 196310 -NCIT:C154082 Recurrent Fibrolamellar Carcinoma 8 196311 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 8 196312 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 8 196313 -NCIT:C7626 Recurrent Pancreatic Carcinoma 6 196314 -NCIT:C155742 Recurrent Pancreatic Adenocarcinoma 7 196315 -NCIT:C153569 Recurrent Pancreatic Acinar Cell Carcinoma 8 196316 -NCIT:C153619 Recurrent Pancreatic Ductal Adenocarcinoma 8 196317 -NCIT:C153620 Recurrent Pancreatic Cystadenocarcinoma 8 196318 -NCIT:C7793 Recurrent Anal Canal Carcinoma 6 196319 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 7 196320 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 7 196321 -NCIT:C175360 Recurrent Anal Canal Squamous Cell Carcinoma 7 196322 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 8 196323 -NCIT:C9249 Recurrent AIDS-Related Anal Canal Carcinoma 7 196324 -NCIT:C7894 Recurrent Small Intestinal Carcinoma 6 196325 -NCIT:C9352 Recurrent Duodenal Carcinoma 7 196326 -NCIT:C8625 Recurrent Colorectal Carcinoma 6 196327 -NCIT:C162441 Recurrent Colorectal Adenocarcinoma 7 196328 -NCIT:C162442 Recurrent Colon Adenocarcinoma 8 196329 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 8 196330 -NCIT:C190199 Locally Recurrent Colorectal Carcinoma 7 196331 -NCIT:C190679 Recurrent Microsatellite Stable Colorectal Carcinoma 7 196332 -NCIT:C3998 Recurrent Colon Carcinoma 7 196333 -NCIT:C162442 Recurrent Colon Adenocarcinoma 8 196334 -NCIT:C8634 Recurrent Rectosigmoid Carcinoma 7 196335 -NCIT:C9238 Recurrent Rectal Carcinoma 7 196336 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 8 196337 -NCIT:C9237 Recurrent Gastric Carcinoma 6 196338 -NCIT:C154622 Recurrent Gastric Adenocarcinoma 7 196339 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 7 196340 -NCIT:C190198 Locally Recurrent Gastric Carcinoma 7 196341 -NCIT:C7623 Recurrent Urinary System Carcinoma 5 196342 -NCIT:C157631 Recurrent Urothelial Carcinoma 6 196343 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 7 196344 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 8 196345 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 7 196346 -NCIT:C8254 Recurrent Renal Pelvis and Ureter Urothelial Carcinoma 7 196347 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 8 196348 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 8 196349 -NCIT:C172622 Recurrent Kidney Carcinoma 6 196350 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 7 196351 -NCIT:C162726 Recurrent Kidney Medullary Carcinoma 7 196352 -NCIT:C7825 Recurrent Renal Cell Carcinoma 7 196353 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 8 196354 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 9 196355 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 8 196356 -NCIT:C7508 Recurrent Urethral Carcinoma 6 196357 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 7 196358 -NCIT:C7899 Recurrent Bladder Carcinoma 6 196359 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 7 196360 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 8 196361 -NCIT:C190774 Recurrent Non-Muscle Invasive Bladder Carcinoma 7 196362 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 8 196363 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 7 196364 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 7 196365 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 7 196366 -NCIT:C9255 Recurrent Ureter Carcinoma 6 196367 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 7 196368 -NCIT:C7624 Recurrent Head and Neck Carcinoma 5 196369 -NCIT:C133709 Recurrent Head and Neck Squamous Cell Carcinoma 6 196370 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 196371 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 196372 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 196373 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 196374 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 196375 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 196376 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 196377 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 196378 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 196379 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 7 196380 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 196381 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 196382 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 196383 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 196384 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 196385 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 196386 -NCIT:C176682 Locally Recurrent Head and Neck Squamous Cell Carcinoma 7 196387 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 7 196388 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 196389 -NCIT:C4034 Recurrent Laryngeal Carcinoma 6 196390 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 7 196391 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 196392 -NCIT:C5103 Recurrent Pharyngeal Carcinoma 6 196393 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 7 196394 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 196395 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 196396 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 196397 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 196398 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 196399 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 196400 -NCIT:C8051 Recurrent Oropharyngeal Carcinoma 7 196401 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 196402 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 196403 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 7 196404 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 196405 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 196406 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 196407 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 7 196408 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 196409 -NCIT:C67558 Recurrent Sinonasal Carcinoma 6 196410 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 196411 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 196412 -NCIT:C7828 Recurrent Parathyroid Gland Carcinoma 6 196413 -NCIT:C7908 Recurrent Thyroid Gland Carcinoma 6 196414 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 7 196415 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 8 196416 -NCIT:C153624 Recurrent Thyroid Gland Anaplastic Carcinoma 7 196417 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 7 196418 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 8 196419 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 8 196420 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 9 196421 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 7 196422 -NCIT:C7926 Recurrent Salivary Gland Carcinoma 6 196423 -NCIT:C153611 Recurrent Salivary Duct Carcinoma 7 196424 -NCIT:C153612 Recurrent Minor Salivary Gland Adenocarcinoma 7 196425 -NCIT:C153800 Recurrent Parotid Gland Carcinoma 7 196426 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 8 196427 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 8 196428 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 196429 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 8 196430 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 196431 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 8 196432 -NCIT:C153801 Recurrent Submandibular Gland Carcinoma 7 196433 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 8 196434 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 8 196435 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 196436 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 8 196437 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 196438 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 8 196439 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 196440 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 196441 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 196442 -NCIT:C8037 Recurrent Lip and Oral Cavity Carcinoma 6 196443 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 196444 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 196445 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 196446 -NCIT:C6076 Recurrent Oral Cavity Carcinoma 7 196447 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 196448 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 196449 -NCIT:C8215 Recurrent Oral Cavity Mucoepidermoid Carcinoma 8 196450 -NCIT:C8216 Recurrent Oral Cavity Adenoid Cystic Carcinoma 8 196451 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 7 196452 -NCIT:C7771 Recurrent Breast Carcinoma 5 196453 -NCIT:C175588 Recurrent Breast Adenocarcinoma 6 196454 -NCIT:C153568 Recurrent Breast Acinic Cell Carcinoma 7 196455 -NCIT:C153584 Recurrent Lobular Breast Carcinoma 7 196456 -NCIT:C153587 Recurrent Invasive Breast Carcinoma of No Special Type 7 196457 -NCIT:C153588 Recurrent Breast Paget Disease 7 196458 -NCIT:C168783 Recurrent HER2-Negative Breast Carcinoma 7 196459 -NCIT:C171014 Recurrent Triple-Negative Breast Carcinoma 7 196460 -NCIT:C182108 Recurrent HER2-Positive Breast Carcinoma 7 196461 -NCIT:C185157 Recurrent Hormone Receptor-Positive Breast Carcinoma 7 196462 -NCIT:C8607 Recurrent Breast Inflammatory Carcinoma 7 196463 -NCIT:C190196 Locally Recurrent Breast Carcinoma 6 196464 -NCIT:C7903 Recurrent Skin Carcinoma 5 196465 -NCIT:C115440 Recurrent Merkel Cell Carcinoma 6 196466 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 7 196467 -NCIT:C165740 Locally Recurrent Merkel Cell Carcinoma 7 196468 -NCIT:C143012 Recurrent Skin Squamous Cell Carcinoma 6 196469 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 196470 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 7 196471 -NCIT:C165737 Locally Recurrent Skin Squamous Cell Carcinoma 7 196472 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 6 196473 -NCIT:C8953 Recurrent Lung Carcinoma 5 196474 -NCIT:C180923 Recurrent Bronchogenic Carcinoma 6 196475 -NCIT:C5014 Recurrent Lung Squamous Cell Carcinoma 6 196476 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 7 196477 -NCIT:C7783 Recurrent Lung Non-Small Cell Carcinoma 6 196478 -NCIT:C128797 Recurrent Lung Non-Squamous Non-Small Cell Carcinoma 7 196479 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 7 196480 -NCIT:C190195 Locally Recurrent Lung Non-Small Cell Carcinoma 7 196481 -NCIT:C8747 Recurrent Lung Adenosquamous Carcinoma 7 196482 -NCIT:C8753 Recurrent Lung Large Cell Carcinoma 7 196483 -NCIT:C8757 Recurrent Lung Adenocarcinoma 7 196484 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 6 196485 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 7 196486 -NCIT:C9181 Recurrent Carcinoma of Unknown Primary 5 196487 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 6 196488 -NCIT:C7866 Recurrent Malignant Mesothelioma 4 196489 -NCIT:C175938 Recurrent Epithelioid Mesothelioma 5 196490 -NCIT:C8705 Recurrent Peritoneal Malignant Mesothelioma 5 196491 -NCIT:C8707 Recurrent Pleural Malignant Mesothelioma 5 196492 -NCIT:C9253 Recurrent Pericardial Malignant Mesothelioma 5 196493 -NCIT:C7905 Recurrent Malignant Thymoma 4 196494 -NCIT:C9263 Recurrent Malignant Duodenal Neoplasm 4 196495 -NCIT:C9352 Recurrent Duodenal Carcinoma 5 196496 -NCIT:C9354 Recurrent Malignant Gastric Neoplasm 4 196497 -NCIT:C9237 Recurrent Gastric Carcinoma 5 196498 -NCIT:C154622 Recurrent Gastric Adenocarcinoma 6 196499 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 6 196500 -NCIT:C190198 Locally Recurrent Gastric Carcinoma 6 196501 -NCIT:C94796 Locally Recurrent Malignant Neoplasm 4 196502 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 5 196503 -NCIT:C185073 Locally Recurrent Chordoma 5 196504 -NCIT:C190194 Locally Recurrent Carcinoma 5 196505 -NCIT:C165737 Locally Recurrent Skin Squamous Cell Carcinoma 6 196506 -NCIT:C165740 Locally Recurrent Merkel Cell Carcinoma 6 196507 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 6 196508 -NCIT:C176682 Locally Recurrent Head and Neck Squamous Cell Carcinoma 6 196509 -NCIT:C190195 Locally Recurrent Lung Non-Small Cell Carcinoma 6 196510 -NCIT:C190196 Locally Recurrent Breast Carcinoma 6 196511 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 6 196512 -NCIT:C190198 Locally Recurrent Gastric Carcinoma 6 196513 -NCIT:C190199 Locally Recurrent Colorectal Carcinoma 6 196514 -NCIT:C190200 Locally Recurrent Endometrial Carcinoma 6 196515 -NCIT:C190201 Locally Recurrent Ovarian Carcinoma 6 196516 -NCIT:C7577 Recurrent Nevus 3 196517 -NCIT:C7887 Recurrent Gestational Trophoblastic Tumor 3 196518 -NCIT:C7934 Recurrent Lymphomatoid Granulomatosis 3 196519 -NCIT:C115430 Recurrent Grade I Lymphomatoid Granulomatosis 4 196520 -NCIT:C115431 Recurrent Grade II Lymphomatoid Granulomatosis 4 196521 -NCIT:C123393 Recurrent Childhood Lymphomatoid Granulomatosis 4 196522 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 5 196523 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 4 196524 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 5 196525 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 5 196526 -NCIT:C6283 Childhood Neoplasm 2 196527 -NCIT:C188950 Childhood Nervous System Neoplasm 3 196528 -NCIT:C188951 Childhood Peripheral Nervous System Neoplasm 4 196529 -NCIT:C188946 Childhood Ganglioneuroma 5 196530 -NCIT:C188995 Childhood Neurofibroma 5 196531 -NCIT:C190074 Childhood Paraganglioma 5 196532 -NCIT:C190071 Childhood Sympathetic Paraganglioma 6 196533 -NCIT:C118822 Childhood Adrenal Gland Pheochromocytoma 7 196534 -NCIT:C190072 Childhood Parasympathetic Paraganglioma 6 196535 -NCIT:C190073 Childhood Composite Paraganglioma 6 196536 -NCIT:C5429 Childhood Mediastinal Neurogenic Neoplasm 5 196537 -NCIT:C8094 Childhood Malignant Peripheral Nerve Sheath Tumor 5 196538 -NCIT:C188998 Childhood Granular Cell Tumor 4 196539 -NCIT:C190622 Childhood Benign Nervous System Neoplasm 4 196540 -NCIT:C188946 Childhood Ganglioneuroma 5 196541 -NCIT:C188992 Childhood Schwannoma 5 196542 -NCIT:C188995 Childhood Neurofibroma 5 196543 -NCIT:C188997 Childhood Perineurioma 5 196544 -NCIT:C5591 Childhood Benign Central Nervous System Neoplasm 5 196545 -NCIT:C27404 Childhood Central Nervous System Mature Teratoma 6 196546 -NCIT:C5798 Childhood Benign Brain Neoplasm 6 196547 -NCIT:C5799 Childhood Benign Supratentorial Neoplasm 7 196548 -NCIT:C5800 Childhood Choroid Plexus Papilloma 8 196549 -NCIT:C6219 Childhood Benign Cerebral Neoplasm 8 196550 -NCIT:C7816 Childhood Craniopharyngioma 7 196551 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 8 196552 -NCIT:C190623 Childhood Malignant Nervous System Neoplasm 4 196553 -NCIT:C124270 Childhood Neuroblastoma 5 196554 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 6 196555 -NCIT:C124271 Childhood Ganglioneuroblastoma 5 196556 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 6 196557 -NCIT:C124273 Childhood Ganglioneuroblastoma, Intermixed 6 196558 -NCIT:C124274 Childhood Ganglioneuroblastoma, Nodular 6 196559 -NCIT:C5448 Childhood Malignant Central Nervous System Neoplasm 5 196560 -NCIT:C114833 Childhood Central Nervous System Embryonal Tumor 6 196561 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 7 196562 -NCIT:C114812 Childhood Pineoblastoma 7 196563 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 196564 -NCIT:C114836 Recurrent Childhood Central Nervous System Embryonal Neoplasm 7 196565 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 196566 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 196567 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 196568 -NCIT:C115203 Childhood Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 7 196569 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 196570 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 9 196571 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 196572 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 7 196573 -NCIT:C3997 Childhood Medulloblastoma 7 196574 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 196575 -NCIT:C5961 Childhood Central Nervous System Embryonal Tumor, Not Otherwise Specified 7 196576 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 196577 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 9 196578 -NCIT:C68634 Childhood Atypical Teratoid/Rhabdoid Tumor 7 196579 -NCIT:C114973 Childhood Anaplastic Oligoastrocytoma 6 196580 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 7 196581 -NCIT:C124293 Childhood Anaplastic Ependymoma 6 196582 -NCIT:C187207 Childhood Malignant Brain Neoplasm 6 196583 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 7 196584 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 196585 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 7 196586 -NCIT:C114812 Childhood Pineoblastoma 7 196587 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 196588 -NCIT:C114969 Childhood Gliomatosis Cerebri 7 196589 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 8 196590 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 7 196591 -NCIT:C124292 Childhood Choroid Plexus Carcinoma 7 196592 -NCIT:C147901 Childhood Brain Glioblastoma 7 196593 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 8 196594 -NCIT:C185471 Infant-Type Hemispheric Glioma 7 196595 -NCIT:C185472 Infant-Type Hemispheric Glioma, NTRK-Altered 8 196596 -NCIT:C185473 Infant-Type Hemispheric Glioma, ROS1-Altered 8 196597 -NCIT:C185474 Infant-Type Hemispheric Glioma, ALK-Altered 8 196598 -NCIT:C185475 Infant-Type Hemispheric Glioma, MET-Altered 8 196599 -NCIT:C187211 Metastatic Childhood Malignant Neoplasm in the Brain 7 196600 -NCIT:C187212 Metastatic Childhood Malignant Brain Neoplasm 7 196601 -NCIT:C187213 Advanced Childhood Malignant Brain Neoplasm 8 196602 -NCIT:C188922 Childhood Diffuse Midline Glioma, H3 K27-Altered 7 196603 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 7 196604 -NCIT:C188926 Childhood Diffuse Hemispheric Glioma, H3 G34-Mutant 7 196605 -NCIT:C188935 Childhood Supratentorial Ependymoma ZFTA Fusion-Positive 7 196606 -NCIT:C3997 Childhood Medulloblastoma 7 196607 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 196608 -NCIT:C6207 Childhood Brain Germinoma 7 196609 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 7 196610 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 8 196611 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 8 196612 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 7 196613 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 196614 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 7 196615 -NCIT:C27403 Childhood Central Nervous System Mixed Germ Cell Tumor 6 196616 -NCIT:C27406 Childhood Central Nervous System Germinoma 6 196617 -NCIT:C6207 Childhood Brain Germinoma 7 196618 -NCIT:C5136 Childhood Glioblastoma 6 196619 -NCIT:C114966 Childhood Giant Cell Glioblastoma 7 196620 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 8 196621 -NCIT:C114968 Childhood Gliosarcoma 7 196622 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 8 196623 -NCIT:C115365 Recurrent Childhood Gliosarcoma 8 196624 -NCIT:C115364 Recurrent Childhood Glioblastoma 7 196625 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 8 196626 -NCIT:C115365 Recurrent Childhood Gliosarcoma 8 196627 -NCIT:C147901 Childhood Brain Glioblastoma 7 196628 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 8 196629 -NCIT:C5318 Childhood Meningeal Melanoma 6 196630 -NCIT:C5447 Childhood Anaplastic Oligodendroglioma 6 196631 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 7 196632 -NCIT:C6206 Childhood Central Nervous System Choriocarcinoma 6 196633 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 6 196634 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 6 196635 -NCIT:C6215 Childhood Anaplastic Astrocytoma 6 196636 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 7 196637 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 7 196638 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 8 196639 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 8 196640 -NCIT:C71303 Childhood Grade 3 Meningioma 6 196641 -NCIT:C9047 Childhood Intraocular Retinoblastoma 6 196642 -NCIT:C9048 Childhood Extraocular Retinoblastoma 6 196643 -NCIT:C8094 Childhood Malignant Peripheral Nerve Sheath Tumor 5 196644 -NCIT:C5132 Childhood Central Nervous System Neoplasm 4 196645 -NCIT:C115192 Childhood Ependymal Tumor 5 196646 -NCIT:C124269 Childhood Myxopapillary Ependymoma 6 196647 -NCIT:C124293 Childhood Anaplastic Ependymoma 6 196648 -NCIT:C8578 Childhood Ependymoma 6 196649 -NCIT:C186351 Supratentorial Ependymoma YAP1 Fusion-Positive 7 196650 -NCIT:C186355 Supratentorial Ependymoma, YAP1-MAMLD1 Fusion-Positive 8 196651 -NCIT:C186495 Childhood Spinal Cord Ependymoma 7 196652 -NCIT:C188935 Childhood Supratentorial Ependymoma ZFTA Fusion-Positive 7 196653 -NCIT:C188943 Childhood Posterior Fossa Ependymoma 7 196654 -NCIT:C8579 Recurrent Childhood Ependymoma 7 196655 -NCIT:C9041 Childhood Infratentorial Ependymoma 7 196656 -NCIT:C9043 Childhood Supratentorial Ependymoma, Not Otherwise Specified 7 196657 -NCIT:C6268 Childhood Cerebral Ependymoma, Not Otherwise Specified 8 196658 -NCIT:C115195 Childhood Mixed Glioma 5 196659 -NCIT:C114760 Childhood Brain Stem Mixed Glioma 6 196660 -NCIT:C114973 Childhood Anaplastic Oligoastrocytoma 6 196661 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 7 196662 -NCIT:C114974 Childhood Oligoastrocytoma 6 196663 -NCIT:C115370 Recurrent Childhood Oligoastrocytoma 7 196664 -NCIT:C187214 Refractory Childhood Central Nervous System Neoplasm 5 196665 -NCIT:C187215 Refractory Childhood Brain Neoplasm 6 196666 -NCIT:C71714 Refractory Childhood Spinal Cord Neoplasm 6 196667 -NCIT:C188929 Childhood Astroblastoma, MN1-Altered 5 196668 -NCIT:C27362 Childhood Ganglioglioma 5 196669 -NCIT:C35876 Childhood Intracranial Neoplasm 5 196670 -NCIT:C7703 Childhood Brain Neoplasm 6 196671 -NCIT:C114773 Childhood Brain Oligodendroglioma 7 196672 -NCIT:C187207 Childhood Malignant Brain Neoplasm 7 196673 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 196674 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 9 196675 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 8 196676 -NCIT:C114812 Childhood Pineoblastoma 8 196677 -NCIT:C115374 Recurrent Childhood Pineoblastoma 9 196678 -NCIT:C114969 Childhood Gliomatosis Cerebri 8 196679 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 9 196680 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 8 196681 -NCIT:C124292 Childhood Choroid Plexus Carcinoma 8 196682 -NCIT:C147901 Childhood Brain Glioblastoma 8 196683 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 9 196684 -NCIT:C185471 Infant-Type Hemispheric Glioma 8 196685 -NCIT:C185472 Infant-Type Hemispheric Glioma, NTRK-Altered 9 196686 -NCIT:C185473 Infant-Type Hemispheric Glioma, ROS1-Altered 9 196687 -NCIT:C185474 Infant-Type Hemispheric Glioma, ALK-Altered 9 196688 -NCIT:C185475 Infant-Type Hemispheric Glioma, MET-Altered 9 196689 -NCIT:C187211 Metastatic Childhood Malignant Neoplasm in the Brain 8 196690 -NCIT:C187212 Metastatic Childhood Malignant Brain Neoplasm 8 196691 -NCIT:C187213 Advanced Childhood Malignant Brain Neoplasm 9 196692 -NCIT:C188922 Childhood Diffuse Midline Glioma, H3 K27-Altered 8 196693 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 8 196694 -NCIT:C188926 Childhood Diffuse Hemispheric Glioma, H3 G34-Mutant 8 196695 -NCIT:C188935 Childhood Supratentorial Ependymoma ZFTA Fusion-Positive 8 196696 -NCIT:C3997 Childhood Medulloblastoma 8 196697 -NCIT:C6774 Recurrent Childhood Medulloblastoma 9 196698 -NCIT:C6207 Childhood Brain Germinoma 8 196699 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 8 196700 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 9 196701 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 9 196702 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 196703 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 9 196704 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 196705 -NCIT:C187215 Refractory Childhood Brain Neoplasm 7 196706 -NCIT:C188931 Childhood Dysembryoplastic Neuroepithelial Tumor 7 196707 -NCIT:C188943 Childhood Posterior Fossa Ependymoma 7 196708 -NCIT:C5795 Childhood Brain Germ Cell Tumor 7 196709 -NCIT:C6207 Childhood Brain Germinoma 8 196710 -NCIT:C5798 Childhood Benign Brain Neoplasm 7 196711 -NCIT:C5799 Childhood Benign Supratentorial Neoplasm 8 196712 -NCIT:C5800 Childhood Choroid Plexus Papilloma 9 196713 -NCIT:C6219 Childhood Benign Cerebral Neoplasm 9 196714 -NCIT:C7816 Childhood Craniopharyngioma 8 196715 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 9 196716 -NCIT:C5802 Childhood Infratentorial Neoplasm 7 196717 -NCIT:C5969 Childhood Brain Stem Neoplasm 8 196718 -NCIT:C9042 Childhood Brain Stem Glioma 9 196719 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 196720 -NCIT:C114760 Childhood Brain Stem Mixed Glioma 10 196721 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 10 196722 -NCIT:C6216 Childhood Brain Stem Astrocytoma 10 196723 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 11 196724 -NCIT:C9190 Recurrent Childhood Brain Stem Glioma 10 196725 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 11 196726 -NCIT:C5970 Childhood Cerebellar Neoplasm 8 196727 -NCIT:C3997 Childhood Medulloblastoma 9 196728 -NCIT:C6774 Recurrent Childhood Medulloblastoma 10 196729 -NCIT:C6286 Childhood Cerebellar Astrocytoma 9 196730 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 10 196731 -NCIT:C8389 Recurrent Childhood Cerebellar Astrocytoma 10 196732 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 196733 -NCIT:C9041 Childhood Infratentorial Ependymoma 8 196734 -NCIT:C5960 Childhood Supratentorial Neoplasm 7 196735 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 196736 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 9 196737 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 8 196738 -NCIT:C115196 Childhood Pineal Parenchymal Cell Neoplasm 8 196739 -NCIT:C114812 Childhood Pineoblastoma 9 196740 -NCIT:C115374 Recurrent Childhood Pineoblastoma 10 196741 -NCIT:C124137 Childhood Pineal Parenchymal Tumor of Intermediate Differentiation 9 196742 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 8 196743 -NCIT:C185471 Infant-Type Hemispheric Glioma 8 196744 -NCIT:C185472 Infant-Type Hemispheric Glioma, NTRK-Altered 9 196745 -NCIT:C185473 Infant-Type Hemispheric Glioma, ROS1-Altered 9 196746 -NCIT:C185474 Infant-Type Hemispheric Glioma, ALK-Altered 9 196747 -NCIT:C185475 Infant-Type Hemispheric Glioma, MET-Altered 9 196748 -NCIT:C186351 Supratentorial Ependymoma YAP1 Fusion-Positive 8 196749 -NCIT:C186355 Supratentorial Ependymoma, YAP1-MAMLD1 Fusion-Positive 9 196750 -NCIT:C188926 Childhood Diffuse Hemispheric Glioma, H3 G34-Mutant 8 196751 -NCIT:C188933 Childhood Multinodular and Vacuolated Neuronal Tumor 8 196752 -NCIT:C188935 Childhood Supratentorial Ependymoma ZFTA Fusion-Positive 8 196753 -NCIT:C42080 Childhood Choroid Plexus Neoplasm 8 196754 -NCIT:C124291 Childhood Atypical Choroid Plexus Papilloma 9 196755 -NCIT:C124292 Childhood Choroid Plexus Carcinoma 9 196756 -NCIT:C5800 Childhood Choroid Plexus Papilloma 9 196757 -NCIT:C4347 Childhood Cerebral Astrocytoma 8 196758 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 9 196759 -NCIT:C8387 Childhood Cerebral Diffuse Astrocytoma 9 196760 -NCIT:C9191 Recurrent Childhood Cerebral Astrocytoma 9 196761 -NCIT:C5799 Childhood Benign Supratentorial Neoplasm 8 196762 -NCIT:C5800 Childhood Choroid Plexus Papilloma 9 196763 -NCIT:C6219 Childhood Benign Cerebral Neoplasm 9 196764 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 196765 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 9 196766 -NCIT:C9043 Childhood Supratentorial Ependymoma, Not Otherwise Specified 8 196767 -NCIT:C6268 Childhood Cerebral Ependymoma, Not Otherwise Specified 9 196768 -NCIT:C6253 Childhood Intracranial Meningioma 7 196769 -NCIT:C7535 Childhood Visual Pathway Glioma 7 196770 -NCIT:C7529 Recurrent Childhood Visual Pathway Glioma 8 196771 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 9 196772 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 196773 -NCIT:C7531 Recurrent Childhood Optic Nerve Glioma 9 196774 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 196775 -NCIT:C7534 Childhood Visual Pathway Astrocytoma 8 196776 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 9 196777 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 196778 -NCIT:C7834 Recurrent Childhood Brain Neoplasm 7 196779 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 8 196780 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 196781 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 196782 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 196783 -NCIT:C7529 Recurrent Childhood Visual Pathway Glioma 8 196784 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 9 196785 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 196786 -NCIT:C7531 Recurrent Childhood Optic Nerve Glioma 9 196787 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 10 196788 -NCIT:C8389 Recurrent Childhood Cerebellar Astrocytoma 8 196789 -NCIT:C9190 Recurrent Childhood Brain Stem Glioma 8 196790 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 9 196791 -NCIT:C9191 Recurrent Childhood Cerebral Astrocytoma 8 196792 -NCIT:C4045 Childhood Oligodendroglioma 5 196793 -NCIT:C114773 Childhood Brain Oligodendroglioma 6 196794 -NCIT:C115371 Recurrent Childhood Oligodendroglioma 6 196795 -NCIT:C4738 Desmoplastic Infantile Ganglioglioma 5 196796 -NCIT:C5448 Childhood Malignant Central Nervous System Neoplasm 5 196797 -NCIT:C114833 Childhood Central Nervous System Embryonal Tumor 6 196798 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 7 196799 -NCIT:C114812 Childhood Pineoblastoma 7 196800 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 196801 -NCIT:C114836 Recurrent Childhood Central Nervous System Embryonal Neoplasm 7 196802 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 196803 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 196804 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 196805 -NCIT:C115203 Childhood Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 7 196806 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 196807 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 9 196808 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 196809 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 7 196810 -NCIT:C3997 Childhood Medulloblastoma 7 196811 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 196812 -NCIT:C5961 Childhood Central Nervous System Embryonal Tumor, Not Otherwise Specified 7 196813 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 196814 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 9 196815 -NCIT:C68634 Childhood Atypical Teratoid/Rhabdoid Tumor 7 196816 -NCIT:C114973 Childhood Anaplastic Oligoastrocytoma 6 196817 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 7 196818 -NCIT:C124293 Childhood Anaplastic Ependymoma 6 196819 -NCIT:C187207 Childhood Malignant Brain Neoplasm 6 196820 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 7 196821 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 196822 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 7 196823 -NCIT:C114812 Childhood Pineoblastoma 7 196824 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 196825 -NCIT:C114969 Childhood Gliomatosis Cerebri 7 196826 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 8 196827 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 7 196828 -NCIT:C124292 Childhood Choroid Plexus Carcinoma 7 196829 -NCIT:C147901 Childhood Brain Glioblastoma 7 196830 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 8 196831 -NCIT:C185471 Infant-Type Hemispheric Glioma 7 196832 -NCIT:C185472 Infant-Type Hemispheric Glioma, NTRK-Altered 8 196833 -NCIT:C185473 Infant-Type Hemispheric Glioma, ROS1-Altered 8 196834 -NCIT:C185474 Infant-Type Hemispheric Glioma, ALK-Altered 8 196835 -NCIT:C185475 Infant-Type Hemispheric Glioma, MET-Altered 8 196836 -NCIT:C187211 Metastatic Childhood Malignant Neoplasm in the Brain 7 196837 -NCIT:C187212 Metastatic Childhood Malignant Brain Neoplasm 7 196838 -NCIT:C187213 Advanced Childhood Malignant Brain Neoplasm 8 196839 -NCIT:C188922 Childhood Diffuse Midline Glioma, H3 K27-Altered 7 196840 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 7 196841 -NCIT:C188926 Childhood Diffuse Hemispheric Glioma, H3 G34-Mutant 7 196842 -NCIT:C188935 Childhood Supratentorial Ependymoma ZFTA Fusion-Positive 7 196843 -NCIT:C3997 Childhood Medulloblastoma 7 196844 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 196845 -NCIT:C6207 Childhood Brain Germinoma 7 196846 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 7 196847 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 8 196848 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 8 196849 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 7 196850 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 196851 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 7 196852 -NCIT:C27403 Childhood Central Nervous System Mixed Germ Cell Tumor 6 196853 -NCIT:C27406 Childhood Central Nervous System Germinoma 6 196854 -NCIT:C6207 Childhood Brain Germinoma 7 196855 -NCIT:C5136 Childhood Glioblastoma 6 196856 -NCIT:C114966 Childhood Giant Cell Glioblastoma 7 196857 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 8 196858 -NCIT:C114968 Childhood Gliosarcoma 7 196859 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 8 196860 -NCIT:C115365 Recurrent Childhood Gliosarcoma 8 196861 -NCIT:C115364 Recurrent Childhood Glioblastoma 7 196862 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 8 196863 -NCIT:C115365 Recurrent Childhood Gliosarcoma 8 196864 -NCIT:C147901 Childhood Brain Glioblastoma 7 196865 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 8 196866 -NCIT:C5318 Childhood Meningeal Melanoma 6 196867 -NCIT:C5447 Childhood Anaplastic Oligodendroglioma 6 196868 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 7 196869 -NCIT:C6206 Childhood Central Nervous System Choriocarcinoma 6 196870 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 6 196871 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 6 196872 -NCIT:C6215 Childhood Anaplastic Astrocytoma 6 196873 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 7 196874 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 7 196875 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 8 196876 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 8 196877 -NCIT:C71303 Childhood Grade 3 Meningioma 6 196878 -NCIT:C9047 Childhood Intraocular Retinoblastoma 6 196879 -NCIT:C9048 Childhood Extraocular Retinoblastoma 6 196880 -NCIT:C5591 Childhood Benign Central Nervous System Neoplasm 5 196881 -NCIT:C27404 Childhood Central Nervous System Mature Teratoma 6 196882 -NCIT:C5798 Childhood Benign Brain Neoplasm 6 196883 -NCIT:C5799 Childhood Benign Supratentorial Neoplasm 7 196884 -NCIT:C5800 Childhood Choroid Plexus Papilloma 8 196885 -NCIT:C6219 Childhood Benign Cerebral Neoplasm 8 196886 -NCIT:C7816 Childhood Craniopharyngioma 7 196887 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 8 196888 -NCIT:C6205 Childhood Central Nervous System Germ Cell Tumor 5 196889 -NCIT:C27403 Childhood Central Nervous System Mixed Germ Cell Tumor 6 196890 -NCIT:C27406 Childhood Central Nervous System Germinoma 6 196891 -NCIT:C6207 Childhood Brain Germinoma 7 196892 -NCIT:C5795 Childhood Brain Germ Cell Tumor 6 196893 -NCIT:C6207 Childhood Brain Germinoma 7 196894 -NCIT:C6204 Childhood Central Nervous System Teratoma 6 196895 -NCIT:C27404 Childhood Central Nervous System Mature Teratoma 7 196896 -NCIT:C27405 Childhood Central Nervous System Immature Teratoma 7 196897 -NCIT:C6206 Childhood Central Nervous System Choriocarcinoma 6 196898 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 6 196899 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 6 196900 -NCIT:C8264 Childhood Meningioma 5 196901 -NCIT:C6253 Childhood Intracranial Meningioma 6 196902 -NCIT:C71300 Childhood Grade 1 Meningioma 6 196903 -NCIT:C71301 Childhood Grade 2 Meningioma 6 196904 -NCIT:C71303 Childhood Grade 3 Meningioma 6 196905 -NCIT:C9022 Childhood Astrocytic Tumor 5 196906 -NCIT:C114956 Recurrent Childhood Astrocytic Tumor 6 196907 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 7 196908 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 7 196909 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 8 196910 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 8 196911 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 8 196912 -NCIT:C115364 Recurrent Childhood Glioblastoma 7 196913 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 8 196914 -NCIT:C115365 Recurrent Childhood Gliosarcoma 8 196915 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 7 196916 -NCIT:C115373 Recurrent Childhood Pilomyxoid Astrocytoma 7 196917 -NCIT:C115375 Recurrent Childhood Pleomorphic Xanthoastrocytoma 7 196918 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 7 196919 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 7 196920 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 7 196921 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 8 196922 -NCIT:C8389 Recurrent Childhood Cerebellar Astrocytoma 7 196923 -NCIT:C9191 Recurrent Childhood Cerebral Astrocytoma 7 196924 -NCIT:C124275 Childhood Astrocytoma 6 196925 -NCIT:C114785 Childhood Subependymal Giant Cell Astrocytoma 7 196926 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 8 196927 -NCIT:C114967 Childhood Diffuse Astrocytoma 7 196928 -NCIT:C114963 Childhood Fibrillary Astrocytoma 8 196929 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 9 196930 -NCIT:C114964 Childhood Gemistocytic Astrocytoma 8 196931 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 9 196932 -NCIT:C114972 Childhood Protoplasmic Astrocytoma 8 196933 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 9 196934 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 8 196935 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 9 196936 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 9 196937 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 9 196938 -NCIT:C188920 Childhood Diffuse Astrocytoma, MYBL1-Altered 8 196939 -NCIT:C188921 Childhood Diffuse Astrocytoma, MYB-Altered 8 196940 -NCIT:C8387 Childhood Cerebral Diffuse Astrocytoma 8 196941 -NCIT:C114970 Childhood Pilomyxoid Astrocytoma 7 196942 -NCIT:C115373 Recurrent Childhood Pilomyxoid Astrocytoma 8 196943 -NCIT:C114971 Childhood Pleomorphic Xanthoastrocytoma 7 196944 -NCIT:C115375 Recurrent Childhood Pleomorphic Xanthoastrocytoma 8 196945 -NCIT:C4048 Childhood Pilocytic Astrocytoma 7 196946 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 8 196947 -NCIT:C27081 Juvenile Pilocytic Astrocytoma 8 196948 -NCIT:C4347 Childhood Cerebral Astrocytoma 7 196949 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 8 196950 -NCIT:C8387 Childhood Cerebral Diffuse Astrocytoma 8 196951 -NCIT:C9191 Recurrent Childhood Cerebral Astrocytoma 8 196952 -NCIT:C6215 Childhood Anaplastic Astrocytoma 7 196953 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 8 196954 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 8 196955 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 9 196956 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 9 196957 -NCIT:C6216 Childhood Brain Stem Astrocytoma 7 196958 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 8 196959 -NCIT:C6286 Childhood Cerebellar Astrocytoma 7 196960 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 8 196961 -NCIT:C8389 Recurrent Childhood Cerebellar Astrocytoma 8 196962 -NCIT:C7534 Childhood Visual Pathway Astrocytoma 7 196963 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 8 196964 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 9 196965 -NCIT:C5136 Childhood Glioblastoma 6 196966 -NCIT:C114966 Childhood Giant Cell Glioblastoma 7 196967 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 8 196968 -NCIT:C114968 Childhood Gliosarcoma 7 196969 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 8 196970 -NCIT:C115365 Recurrent Childhood Gliosarcoma 8 196971 -NCIT:C115364 Recurrent Childhood Glioblastoma 7 196972 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 8 196973 -NCIT:C115365 Recurrent Childhood Gliosarcoma 8 196974 -NCIT:C147901 Childhood Brain Glioblastoma 7 196975 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 8 196976 -NCIT:C9045 Recurrent Childhood Central Nervous System Neoplasm 5 196977 -NCIT:C114836 Recurrent Childhood Central Nervous System Embryonal Neoplasm 6 196978 -NCIT:C115374 Recurrent Childhood Pineoblastoma 7 196979 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 7 196980 -NCIT:C6774 Recurrent Childhood Medulloblastoma 7 196981 -NCIT:C114956 Recurrent Childhood Astrocytic Tumor 6 196982 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 7 196983 -NCIT:C115360 Recurrent Childhood Diffuse Astrocytoma 7 196984 -NCIT:C115361 Recurrent Childhood Fibrillary Astrocytoma 8 196985 -NCIT:C115362 Recurrent Childhood Gemistocytic Astrocytoma 8 196986 -NCIT:C115376 Recurrent Childhood Protoplasmic Astrocytoma 8 196987 -NCIT:C115364 Recurrent Childhood Glioblastoma 7 196988 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 8 196989 -NCIT:C115365 Recurrent Childhood Gliosarcoma 8 196990 -NCIT:C115372 Recurrent Childhood Pilocytic Astrocytoma 7 196991 -NCIT:C115373 Recurrent Childhood Pilomyxoid Astrocytoma 7 196992 -NCIT:C115375 Recurrent Childhood Pleomorphic Xanthoastrocytoma 7 196993 -NCIT:C115380 Recurrent Childhood Subependymal Giant Cell Astrocytoma 7 196994 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 7 196995 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 7 196996 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 8 196997 -NCIT:C8389 Recurrent Childhood Cerebellar Astrocytoma 7 196998 -NCIT:C9191 Recurrent Childhood Cerebral Astrocytoma 7 196999 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 6 197000 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 6 197001 -NCIT:C115370 Recurrent Childhood Oligoastrocytoma 6 197002 -NCIT:C115371 Recurrent Childhood Oligodendroglioma 6 197003 -NCIT:C71712 Recurrent Childhood Spinal Cord Neoplasm 6 197004 -NCIT:C7834 Recurrent Childhood Brain Neoplasm 6 197005 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 7 197006 -NCIT:C115374 Recurrent Childhood Pineoblastoma 7 197007 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 7 197008 -NCIT:C6774 Recurrent Childhood Medulloblastoma 7 197009 -NCIT:C7529 Recurrent Childhood Visual Pathway Glioma 7 197010 -NCIT:C7530 Recurrent Childhood Visual Pathway Astrocytoma 8 197011 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 9 197012 -NCIT:C7531 Recurrent Childhood Optic Nerve Glioma 8 197013 -NCIT:C7532 Recurrent Childhood Optic Nerve Astrocytoma 9 197014 -NCIT:C8389 Recurrent Childhood Cerebellar Astrocytoma 7 197015 -NCIT:C9190 Recurrent Childhood Brain Stem Glioma 7 197016 -NCIT:C6217 Recurrent Childhood Brain Stem Astrocytoma 8 197017 -NCIT:C9191 Recurrent Childhood Cerebral Astrocytoma 7 197018 -NCIT:C8579 Recurrent Childhood Ependymoma 6 197019 -NCIT:C9234 Childhood Spinal Cord Neoplasm 5 197020 -NCIT:C186495 Childhood Spinal Cord Ependymoma 6 197021 -NCIT:C71712 Recurrent Childhood Spinal Cord Neoplasm 6 197022 -NCIT:C71714 Refractory Childhood Spinal Cord Neoplasm 6 197023 -NCIT:C9476 Desmoplastic Infantile Astrocytoma 5 197024 -NCIT:C188963 Childhood Connective and Soft Tissue Neoplasm 3 197025 -NCIT:C114926 Childhood Epithelioid Hemangioendothelioma 4 197026 -NCIT:C123906 Childhood Gastrointestinal Stromal Tumor 4 197027 -NCIT:C142823 Congenital Peribronchial Myofibroblastic Tumor 4 197028 -NCIT:C188964 Childhood NTRK-Rearranged Spindle Cell Neoplasm 4 197029 -NCIT:C188972 Childhood Inflammatory Myofibroblastic Tumor 4 197030 -NCIT:C188975 Childhood Plexiform Fibrohistiocytic Tumor 4 197031 -NCIT:C188976 Childhood Tenosynovial Giant Cell Tumor 4 197032 -NCIT:C188977 Childhood Kaposiform Hemangioendothelioma 4 197033 -NCIT:C188978 Childhood Papillary Intralymphatic Angioendothelioma 4 197034 -NCIT:C188979 Childhood Pseudomyogenic Hemangioendothelioma 4 197035 -NCIT:C188981 Childhood Sarcoma 4 197036 -NCIT:C188984 Childhood Ectomesenchymoma 5 197037 -NCIT:C189002 Childhood Ewing Sarcoma 5 197038 -NCIT:C189261 Childhood Kidney Ewing Sarcoma 6 197039 -NCIT:C189003 Childhood Round Cell Sarcoma with EWSR1-non-ETS Fusion 5 197040 -NCIT:C189006 Childhood CIC-Rearranged Sarcoma 5 197041 -NCIT:C189007 Childhood Sarcoma with BCOR Genetic Alterations 5 197042 -NCIT:C189017 Childhood Bone Sarcoma 5 197043 -NCIT:C114750 Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 6 197044 -NCIT:C115368 Recurrent Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 7 197045 -NCIT:C115998 Localized Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 7 197046 -NCIT:C189022 Childhood Bone Osteosarcoma 6 197047 -NCIT:C123398 Childhood Periosteal Osteosarcoma 7 197048 -NCIT:C6589 Childhood Parosteal Osteosarcoma 7 197049 -NCIT:C6590 Childhood Conventional Osteosarcoma 7 197050 -NCIT:C189026 Childhood Primary Central Chondrosarcoma 6 197051 -NCIT:C189027 Childhood Chondrosarcoma 5 197052 -NCIT:C189026 Childhood Primary Central Chondrosarcoma 6 197053 -NCIT:C27374 Childhood Mesenchymal Chondrosarcoma 6 197054 -NCIT:C6585 Childhood Osteosarcoma 5 197055 -NCIT:C187189 Recurrent Childhood Osteosarcoma 6 197056 -NCIT:C187192 Refractory Childhood Osteosarcoma 6 197057 -NCIT:C189022 Childhood Bone Osteosarcoma 6 197058 -NCIT:C123398 Childhood Periosteal Osteosarcoma 7 197059 -NCIT:C6589 Childhood Parosteal Osteosarcoma 7 197060 -NCIT:C6590 Childhood Conventional Osteosarcoma 7 197061 -NCIT:C27376 Childhood Extraskeletal Osteosarcoma 6 197062 -NCIT:C7715 Childhood Soft Tissue Sarcoma 5 197063 -NCIT:C114749 Childhood Undifferentiated Pleomorphic Sarcoma 6 197064 -NCIT:C115292 Localized Childhood Soft Tissue Sarcoma 6 197065 -NCIT:C8065 Localized Childhood Rhabdomyosarcoma 7 197066 -NCIT:C187194 Refractory Childhood Soft Tissue Sarcoma 6 197067 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 7 197068 -NCIT:C188980 Childhood Kaposi Sarcoma 6 197069 -NCIT:C189260 Childhood Anaplastic Sarcoma of the Kidney 6 197070 -NCIT:C189261 Childhood Kidney Ewing Sarcoma 6 197071 -NCIT:C189934 Childhood Liver Embryonal Sarcoma 6 197072 -NCIT:C190020 Childhood Liver Angiosarcoma 6 197073 -NCIT:C27371 Childhood Clear Cell Sarcoma of Soft Tissue 6 197074 -NCIT:C27372 Childhood Desmoplastic Small Round Cell Tumor 6 197075 -NCIT:C27376 Childhood Extraskeletal Osteosarcoma 6 197076 -NCIT:C27377 Childhood Extraskeletal Myxoid Chondrosarcoma 6 197077 -NCIT:C4264 Clear Cell Sarcoma of the Kidney 6 197078 -NCIT:C7705 Childhood Rhabdomyosarcoma 6 197079 -NCIT:C123397 Childhood Spindle Cell Rhabdomyosarcoma 7 197080 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 7 197081 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 7 197082 -NCIT:C7957 Childhood Embryonal Rhabdomyosarcoma 7 197083 -NCIT:C35574 Childhood Botryoid-Type Embryonal Rhabdomyosarcoma 8 197084 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 9 197085 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 9 197086 -NCIT:C7958 Childhood Alveolar Rhabdomyosarcoma 7 197087 -NCIT:C7959 Childhood Pleomorphic Rhabdomyosarcoma 7 197088 -NCIT:C7960 Childhood Rhabdomyosarcoma with Mixed Embryonal and Alveolar Features 7 197089 -NCIT:C8065 Localized Childhood Rhabdomyosarcoma 7 197090 -NCIT:C8066 Metastatic Childhood Soft Tissue Sarcoma 6 197091 -NCIT:C8067 Recurrent Childhood Soft Tissue Sarcoma 6 197092 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 7 197093 -NCIT:C8089 Childhood Synovial Sarcoma 6 197094 -NCIT:C8092 Childhood Alveolar Soft Part Sarcoma 6 197095 -NCIT:C8093 Childhood Leiomyosarcoma 6 197096 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 7 197097 -NCIT:C8095 Childhood Epithelioid Sarcoma 6 197098 -NCIT:C8088 Childhood Fibrosarcoma 5 197099 -NCIT:C188970 Childhood Low Grade Fibromyxoid Sarcoma 6 197100 -NCIT:C188971 Childhood Sclerosing Epithelioid Fibrosarcoma 6 197101 -NCIT:C188973 Childhood Low Grade Myofibroblastic Sarcoma 6 197102 -NCIT:C4244 Infantile Fibrosarcoma 6 197103 -NCIT:C8091 Childhood Liposarcoma 5 197104 -NCIT:C8094 Childhood Malignant Peripheral Nerve Sheath Tumor 5 197105 -NCIT:C9174 Childhood Angiosarcoma 5 197106 -NCIT:C190020 Childhood Liver Angiosarcoma 6 197107 -NCIT:C188982 Childhood EBV-Associated Smooth Muscle Tumor 4 197108 -NCIT:C188999 Childhood Angiomatoid Fibrous Histiocytoma 4 197109 -NCIT:C189000 Childhood PEComa 4 197110 -NCIT:C6565 Childhood Kidney Angiomyolipoma 5 197111 -NCIT:C189001 Childhood Myoepithelial Tumor 4 197112 -NCIT:C189015 Childhood Bone Neoplasm 4 197113 -NCIT:C189030 Childhood Giant Cell Tumor of Bone 5 197114 -NCIT:C190577 Childhood Benign Bone Neoplasm 5 197115 -NCIT:C189019 Childhood Subungual Exostosis 6 197116 -NCIT:C189020 Childhood Osteoblastoma 6 197117 -NCIT:C189021 Childhood Osteoid Osteoma 6 197118 -NCIT:C189023 Childhood Chondroblastoma 6 197119 -NCIT:C189024 Childhood Osteochondroma 6 197120 -NCIT:C189025 Childhood Chondromyxoid Fibroma 6 197121 -NCIT:C189028 Childhood Bone Hemangioma 6 197122 -NCIT:C189029 Childhood Aneurysmal Bone Cyst 6 197123 -NCIT:C189031 Childhood Non-Ossifying Fibroma 6 197124 -NCIT:C189033 Childhood Fibrous Dysplasia 6 197125 -NCIT:C190578 Childhood Malignant Bone Neoplasm 5 197126 -NCIT:C189017 Childhood Bone Sarcoma 6 197127 -NCIT:C114750 Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 7 197128 -NCIT:C115368 Recurrent Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 8 197129 -NCIT:C115998 Localized Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 8 197130 -NCIT:C189022 Childhood Bone Osteosarcoma 7 197131 -NCIT:C123398 Childhood Periosteal Osteosarcoma 8 197132 -NCIT:C6589 Childhood Parosteal Osteosarcoma 8 197133 -NCIT:C6590 Childhood Conventional Osteosarcoma 8 197134 -NCIT:C189026 Childhood Primary Central Chondrosarcoma 7 197135 -NCIT:C189032 Childhood Chordoma 6 197136 -NCIT:C190576 Childhood Benign Connective and Soft Tissue Neoplasm 4 197137 -NCIT:C180887 Infantile Myofibroma 5 197138 -NCIT:C188965 Childhood EWSR1-SMAD3-Positive Fibroblastic Tumor 5 197139 -NCIT:C188974 Childhood Fibrous Histiocytoma 5 197140 -NCIT:C189031 Childhood Non-Ossifying Fibroma 6 197141 -NCIT:C188983 Childhood Rhabdomyoma 5 197142 -NCIT:C190104 Childhood Cardiac Rhabdomyoma 6 197143 -NCIT:C189288 Childhood Ovarian Fibroma 5 197144 -NCIT:C190019 Liver Congenital Hemangioma 5 197145 -NCIT:C190160 Sinonasal Tract Myxoma 5 197146 -NCIT:C190577 Childhood Benign Bone Neoplasm 5 197147 -NCIT:C189019 Childhood Subungual Exostosis 6 197148 -NCIT:C189020 Childhood Osteoblastoma 6 197149 -NCIT:C189021 Childhood Osteoid Osteoma 6 197150 -NCIT:C189023 Childhood Chondroblastoma 6 197151 -NCIT:C189024 Childhood Osteochondroma 6 197152 -NCIT:C189025 Childhood Chondromyxoid Fibroma 6 197153 -NCIT:C189028 Childhood Bone Hemangioma 6 197154 -NCIT:C189029 Childhood Aneurysmal Bone Cyst 6 197155 -NCIT:C189031 Childhood Non-Ossifying Fibroma 6 197156 -NCIT:C189033 Childhood Fibrous Dysplasia 6 197157 -NCIT:C27483 Lipoblastoma 5 197158 -NCIT:C3456 Inclusion Body Fibromatosis 5 197159 -NCIT:C3942 Fibrous Hamartoma of Infancy 5 197160 -NCIT:C4818 Calcifying Aponeurotic Fibroma 5 197161 -NCIT:C5751 Liver Mesenchymal Hamartoma 5 197162 -NCIT:C6645 Infantile Hemangioma 5 197163 -NCIT:C96840 Liver Infantile Hemangioma 6 197164 -NCIT:C99086 Airway Infantile Hemangioma 6 197165 -NCIT:C6586 Extrarenal Rhabdoid Tumor 4 197166 -NCIT:C161608 Extrarenal Rhabdoid Tumor of the Prostate 5 197167 -NCIT:C171169 Extrarenal Rhabdoid Tumor of the Ovary 5 197168 -NCIT:C171170 Recurrent Extrarenal Rhabdoid Tumor of the Ovary 6 197169 -NCIT:C171171 Refractory Extrarenal Rhabdoid Tumor of the Ovary 6 197170 -NCIT:C188881 Recurrent Extrarenal Rhabdoid Tumor 5 197171 -NCIT:C171170 Recurrent Extrarenal Rhabdoid Tumor of the Ovary 6 197172 -NCIT:C188884 Refractory Extrarenal Rhabdoid Tumor 5 197173 -NCIT:C171171 Refractory Extrarenal Rhabdoid Tumor of the Ovary 6 197174 -NCIT:C188886 Unresectable Extrarenal Rhabdoid Tumor 5 197175 -NCIT:C96847 Extrarenal Rhabdoid Tumor of the Liver 5 197176 -NCIT:C99180 Lipofibromatosis 4 197177 -NCIT:C189258 Childhood Genitourinary System Neoplasm 3 197178 -NCIT:C114801 Childhood Gonadal Germ Cell Tumor 4 197179 -NCIT:C6552 Childhood Testicular Germ Cell Tumor 5 197180 -NCIT:C123843 Childhood Testicular Non-Seminomatous Germ Cell Tumor 6 197181 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 7 197182 -NCIT:C6540 Childhood Testicular Teratoma 7 197183 -NCIT:C123835 Childhood Testicular Immature Teratoma 8 197184 -NCIT:C123837 Childhood Testicular Mature Teratoma 8 197185 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 7 197186 -NCIT:C6544 Childhood Testicular Choriocarcinoma 7 197187 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 7 197188 -NCIT:C68628 Childhood Malignant Testicular Germ Cell Tumor 6 197189 -NCIT:C6542 Childhood Testicular Mixed Germ Cell Tumor 7 197190 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 8 197191 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 7 197192 -NCIT:C6544 Childhood Testicular Choriocarcinoma 7 197193 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 7 197194 -NCIT:C8588 Childhood Ovarian Germ Cell Tumor 5 197195 -NCIT:C123842 Childhood Ovarian Nongerminomatous Germ Cell Tumor 6 197196 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 7 197197 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 7 197198 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 7 197199 -NCIT:C6554 Childhood Ovarian Teratoma 7 197200 -NCIT:C6547 Childhood Ovarian Immature Teratoma 8 197201 -NCIT:C6548 Childhood Ovarian Mature Teratoma 8 197202 -NCIT:C68629 Childhood Malignant Ovarian Germ Cell Tumor 6 197203 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 7 197204 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 7 197205 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 7 197206 -NCIT:C6550 Childhood Ovarian Dysgerminoma 7 197207 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 7 197208 -NCIT:C189269 Childhood Malignant Genitourinary System Neoplasm 4 197209 -NCIT:C118816 Childhood Bladder Carcinoma 5 197210 -NCIT:C118821 Childhood Malignant Penile Neoplasm 5 197211 -NCIT:C123907 Childhood Malignant Kidney Neoplasm 5 197212 -NCIT:C189244 Childhood Kidney Carcinoma 6 197213 -NCIT:C189248 Childhood SMARCB1-Deficient Kidney Medullary Carcinoma 7 197214 -NCIT:C6568 Childhood Renal Cell Carcinoma 7 197215 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 8 197216 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 8 197217 -NCIT:C189255 Childhood Eosinophilic Solid and Cystic Renal Cell Carcinoma 8 197218 -NCIT:C189260 Childhood Anaplastic Sarcoma of the Kidney 6 197219 -NCIT:C189261 Childhood Kidney Ewing Sarcoma 6 197220 -NCIT:C27730 Childhood Kidney Wilms Tumor 6 197221 -NCIT:C6897 Cystic Partially Differentiated Kidney Nephroblastoma 7 197222 -NCIT:C4264 Clear Cell Sarcoma of the Kidney 6 197223 -NCIT:C6569 Congenital Mesoblastic Nephroma 6 197224 -NCIT:C39814 Classic Congenital Mesoblastic Nephroma 7 197225 -NCIT:C39815 Cellular Congenital Mesoblastic Nephroma 7 197226 -NCIT:C97058 Mixed Congenital Mesoblastic Nephroma 7 197227 -NCIT:C8715 Rhabdoid Tumor of the Kidney 6 197228 -NCIT:C162730 Recurrent Rhabdoid Tumor of the Kidney 7 197229 -NCIT:C162731 Refractory Rhabdoid Tumor of the Kidney 7 197230 -NCIT:C188888 Unresectable Rhabdoid Tumor of the Kidney 7 197231 -NCIT:C161608 Extrarenal Rhabdoid Tumor of the Prostate 5 197232 -NCIT:C190659 Childhood Malignant Ovarian Neoplasm 5 197233 -NCIT:C171169 Extrarenal Rhabdoid Tumor of the Ovary 6 197234 -NCIT:C171170 Recurrent Extrarenal Rhabdoid Tumor of the Ovary 7 197235 -NCIT:C171171 Refractory Extrarenal Rhabdoid Tumor of the Ovary 7 197236 -NCIT:C189334 Childhood Ovarian Small Cell Carcinoma, Hypercalcemic Type 6 197237 -NCIT:C68629 Childhood Malignant Ovarian Germ Cell Tumor 6 197238 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 7 197239 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 7 197240 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 7 197241 -NCIT:C6550 Childhood Ovarian Dysgerminoma 7 197242 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 7 197243 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 5 197244 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 5 197245 -NCIT:C68628 Childhood Malignant Testicular Germ Cell Tumor 5 197246 -NCIT:C6542 Childhood Testicular Mixed Germ Cell Tumor 6 197247 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 7 197248 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 6 197249 -NCIT:C6544 Childhood Testicular Choriocarcinoma 6 197250 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 6 197251 -NCIT:C189286 Childhood Ovarian Neoplasm 4 197252 -NCIT:C189292 Childhood Ovarian Sertoli-Leydig Cell Tumor 5 197253 -NCIT:C189333 Childhood Ovarian Gynandroblastoma 5 197254 -NCIT:C190658 Childhood Benign Ovarian Neoplasm 5 197255 -NCIT:C189288 Childhood Ovarian Fibroma 6 197256 -NCIT:C189289 Childhood Ovarian Sclerosing Stromal Tumor 6 197257 -NCIT:C6548 Childhood Ovarian Mature Teratoma 6 197258 -NCIT:C190659 Childhood Malignant Ovarian Neoplasm 5 197259 -NCIT:C171169 Extrarenal Rhabdoid Tumor of the Ovary 6 197260 -NCIT:C171170 Recurrent Extrarenal Rhabdoid Tumor of the Ovary 7 197261 -NCIT:C171171 Refractory Extrarenal Rhabdoid Tumor of the Ovary 7 197262 -NCIT:C189334 Childhood Ovarian Small Cell Carcinoma, Hypercalcemic Type 6 197263 -NCIT:C68629 Childhood Malignant Ovarian Germ Cell Tumor 6 197264 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 7 197265 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 7 197266 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 7 197267 -NCIT:C6550 Childhood Ovarian Dysgerminoma 7 197268 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 7 197269 -NCIT:C7289 Juvenile Ovarian Granulosa Cell Tumor 5 197270 -NCIT:C40434 Juvenile Bilateral Ovarian Granulosa Cell Tumor 6 197271 -NCIT:C8588 Childhood Ovarian Germ Cell Tumor 5 197272 -NCIT:C123842 Childhood Ovarian Nongerminomatous Germ Cell Tumor 6 197273 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 7 197274 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 7 197275 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 7 197276 -NCIT:C6554 Childhood Ovarian Teratoma 7 197277 -NCIT:C6547 Childhood Ovarian Immature Teratoma 8 197278 -NCIT:C6548 Childhood Ovarian Mature Teratoma 8 197279 -NCIT:C68629 Childhood Malignant Ovarian Germ Cell Tumor 6 197280 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 7 197281 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 7 197282 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 7 197283 -NCIT:C6550 Childhood Ovarian Dysgerminoma 7 197284 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 7 197285 -NCIT:C190602 Childhood Benign Genitourinary System Neoplasm 4 197286 -NCIT:C123837 Childhood Testicular Mature Teratoma 5 197287 -NCIT:C189337 Childhood Mullerian Papilloma 5 197288 -NCIT:C190608 Childhood Benign Kidney Neoplasm 5 197289 -NCIT:C157745 Childhood Cystic Nephroma 6 197290 -NCIT:C66774 Ossifying Renal Tumor of Infancy 6 197291 -NCIT:C190658 Childhood Benign Ovarian Neoplasm 5 197292 -NCIT:C189288 Childhood Ovarian Fibroma 6 197293 -NCIT:C189289 Childhood Ovarian Sclerosing Stromal Tumor 6 197294 -NCIT:C6548 Childhood Ovarian Mature Teratoma 6 197295 -NCIT:C40330 Vulvar Congenital Melanocytic Nevus 5 197296 -NCIT:C4207 Juvenile Granulosa Cell Tumor 4 197297 -NCIT:C39947 Juvenile Testicular Granulosa Cell Tumor 5 197298 -NCIT:C7289 Juvenile Ovarian Granulosa Cell Tumor 5 197299 -NCIT:C40434 Juvenile Bilateral Ovarian Granulosa Cell Tumor 6 197300 -NCIT:C5053 Childhood Testicular Neoplasm 4 197301 -NCIT:C39947 Juvenile Testicular Granulosa Cell Tumor 5 197302 -NCIT:C6552 Childhood Testicular Germ Cell Tumor 5 197303 -NCIT:C123843 Childhood Testicular Non-Seminomatous Germ Cell Tumor 6 197304 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 7 197305 -NCIT:C6540 Childhood Testicular Teratoma 7 197306 -NCIT:C123835 Childhood Testicular Immature Teratoma 8 197307 -NCIT:C123837 Childhood Testicular Mature Teratoma 8 197308 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 7 197309 -NCIT:C6544 Childhood Testicular Choriocarcinoma 7 197310 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 7 197311 -NCIT:C68628 Childhood Malignant Testicular Germ Cell Tumor 6 197312 -NCIT:C6542 Childhood Testicular Mixed Germ Cell Tumor 7 197313 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 8 197314 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 7 197315 -NCIT:C6544 Childhood Testicular Choriocarcinoma 7 197316 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 7 197317 -NCIT:C6563 Childhood Kidney Neoplasm 4 197318 -NCIT:C115445 Recurrent Childhood Kidney Neoplasm 5 197319 -NCIT:C162730 Recurrent Rhabdoid Tumor of the Kidney 6 197320 -NCIT:C123907 Childhood Malignant Kidney Neoplasm 5 197321 -NCIT:C189244 Childhood Kidney Carcinoma 6 197322 -NCIT:C189248 Childhood SMARCB1-Deficient Kidney Medullary Carcinoma 7 197323 -NCIT:C6568 Childhood Renal Cell Carcinoma 7 197324 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 8 197325 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 8 197326 -NCIT:C189255 Childhood Eosinophilic Solid and Cystic Renal Cell Carcinoma 8 197327 -NCIT:C189260 Childhood Anaplastic Sarcoma of the Kidney 6 197328 -NCIT:C189261 Childhood Kidney Ewing Sarcoma 6 197329 -NCIT:C27730 Childhood Kidney Wilms Tumor 6 197330 -NCIT:C6897 Cystic Partially Differentiated Kidney Nephroblastoma 7 197331 -NCIT:C4264 Clear Cell Sarcoma of the Kidney 6 197332 -NCIT:C6569 Congenital Mesoblastic Nephroma 6 197333 -NCIT:C39814 Classic Congenital Mesoblastic Nephroma 7 197334 -NCIT:C39815 Cellular Congenital Mesoblastic Nephroma 7 197335 -NCIT:C97058 Mixed Congenital Mesoblastic Nephroma 7 197336 -NCIT:C8715 Rhabdoid Tumor of the Kidney 6 197337 -NCIT:C162730 Recurrent Rhabdoid Tumor of the Kidney 7 197338 -NCIT:C162731 Refractory Rhabdoid Tumor of the Kidney 7 197339 -NCIT:C188888 Unresectable Rhabdoid Tumor of the Kidney 7 197340 -NCIT:C190608 Childhood Benign Kidney Neoplasm 5 197341 -NCIT:C157745 Childhood Cystic Nephroma 6 197342 -NCIT:C66774 Ossifying Renal Tumor of Infancy 6 197343 -NCIT:C6565 Childhood Kidney Angiomyolipoma 5 197344 -NCIT:C6566 Childhood Multilocular Cystic Renal Neoplasm 5 197345 -NCIT:C157745 Childhood Cystic Nephroma 6 197346 -NCIT:C6897 Cystic Partially Differentiated Kidney Nephroblastoma 6 197347 -NCIT:C189338 Childhood Breast Neoplasm 3 197348 -NCIT:C189340 Childhood Breast Phyllodes Tumor 4 197349 -NCIT:C190574 Childhood Benign Breast Neoplasm 4 197350 -NCIT:C189339 Childhood Breast Fibroadenoma 5 197351 -NCIT:C4276 Juvenile Breast Fibroadenoma 6 197352 -NCIT:C9503 Juvenile Breast Papillomatosis 5 197353 -NCIT:C190575 Childhood Malignant Breast Neoplasm 4 197354 -NCIT:C118809 Childhood Breast Carcinoma 5 197355 -NCIT:C189869 Childhood Digestive System Neoplasm 3 197356 -NCIT:C189870 Childhood Malignant Digestive System Neoplasm 4 197357 -NCIT:C118808 Childhood Colorectal Carcinoma 5 197358 -NCIT:C118823 Childhood Rectal Carcinoma 6 197359 -NCIT:C118812 Childhood Esophageal Carcinoma 5 197360 -NCIT:C118813 Childhood Gastric Carcinoma 5 197361 -NCIT:C118826 Childhood Malignant Small Intestinal Neoplasm 5 197362 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 6 197363 -NCIT:C123933 Childhood Small Intestinal Carcinoma 6 197364 -NCIT:C190023 Childhood Pancreatoblastoma 5 197365 -NCIT:C190024 Childhood Pancreatic Acinar Cell Carcinoma 5 197366 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 6 197367 -NCIT:C190027 Childhood Solid Pseudopapillary Neoplasm of the Pancreas 5 197368 -NCIT:C190028 Childhood Gastroblastoma 5 197369 -NCIT:C7708 Childhood Malignant Liver Neoplasm 5 197370 -NCIT:C189934 Childhood Liver Embryonal Sarcoma 6 197371 -NCIT:C190020 Childhood Liver Angiosarcoma 6 197372 -NCIT:C3728 Hepatoblastoma 6 197373 -NCIT:C142854 Refractory Hepatoblastoma 7 197374 -NCIT:C161838 Hepatocellular Malignant Neoplasm, Not Otherwise Specified 7 197375 -NCIT:C189923 Epithelial Hepatoblastoma 7 197376 -NCIT:C189924 Epithelial Hepatoblastoma with Pleomorphic Pattern 8 197377 -NCIT:C7093 Hepatoblastoma with Pure Fetal Epithelial Differentiation 8 197378 -NCIT:C7094 Hepatoblastoma with Combined Fetal and Embryonal Epithelial Differentiation 8 197379 -NCIT:C7095 Macrotrabecular Hepatoblastoma 8 197380 -NCIT:C7096 Small Cell Undifferentiated Hepatoblastoma 8 197381 -NCIT:C189927 Hepatoblastoma by PRETEXT Stage 7 197382 -NCIT:C7139 PRETEXT Stage 1 Hepatoblastoma 8 197383 -NCIT:C7140 PRETEXT Stage 2 Hepatoblastoma 8 197384 -NCIT:C7141 PRETEXT Stage 3 Hepatoblastoma 8 197385 -NCIT:C7142 PRETEXT Stage 4 Hepatoblastoma 8 197386 -NCIT:C189929 Hepatoblastoma by Postsurgical Stage 7 197387 -NCIT:C7143 Postsurgical Stage IV Hepatoblastoma 8 197388 -NCIT:C7144 Postsurgical Stage III Hepatoblastoma 8 197389 -NCIT:C7145 Postsurgical Stage II Hepatoblastoma 8 197390 -NCIT:C7146 Postsurgical Stage I Hepatoblastoma 8 197391 -NCIT:C7097 Mixed Epithelial and Mesenchymal Hepatoblastoma 7 197392 -NCIT:C189926 Non-Teratoid Hepatoblastoma 8 197393 -NCIT:C7098 Teratoid Hepatoblastoma 8 197394 -NCIT:C8641 Unresectable Hepatoblastoma 7 197395 -NCIT:C8642 Resectable Hepatoblastoma 7 197396 -NCIT:C8643 Recurrent Hepatoblastoma 7 197397 -NCIT:C7839 Recurrent Childhood Malignant Liver Neoplasm 6 197398 -NCIT:C8643 Recurrent Hepatoblastoma 7 197399 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 7 197400 -NCIT:C7955 Childhood Hepatocellular Carcinoma 6 197401 -NCIT:C189932 Childhood Fibrolamellar Carcinoma 7 197402 -NCIT:C5708 Stage III Childhood Hepatocellular Carcinoma AJCC v7 7 197403 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 7 197404 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 7 197405 -NCIT:C7838 Stage IV Childhood Hepatocellular Carcinoma AJCC v7 7 197406 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 7 197407 -NCIT:C96830 Calcifying Nested Stromal-Epithelial Tumor 6 197408 -NCIT:C96847 Extrarenal Rhabdoid Tumor of the Liver 6 197409 -NCIT:C190076 Childhood Digestive System Neuroendocrine Tumor 4 197410 -NCIT:C190029 Childhood Appendix Neuroendocrine Tumor 5 197411 -NCIT:C190580 Childhood Benign Digestive System Neoplasm 4 197412 -NCIT:C190581 Childhood Benign Liver Neoplasm 5 197413 -NCIT:C190019 Liver Congenital Hemangioma 6 197414 -NCIT:C5751 Liver Mesenchymal Hamartoma 6 197415 -NCIT:C96840 Liver Infantile Hemangioma 6 197416 -NCIT:C27368 Childhood Liver Neoplasm 4 197417 -NCIT:C190581 Childhood Benign Liver Neoplasm 5 197418 -NCIT:C190019 Liver Congenital Hemangioma 6 197419 -NCIT:C5751 Liver Mesenchymal Hamartoma 6 197420 -NCIT:C96840 Liver Infantile Hemangioma 6 197421 -NCIT:C7708 Childhood Malignant Liver Neoplasm 5 197422 -NCIT:C189934 Childhood Liver Embryonal Sarcoma 6 197423 -NCIT:C190020 Childhood Liver Angiosarcoma 6 197424 -NCIT:C3728 Hepatoblastoma 6 197425 -NCIT:C142854 Refractory Hepatoblastoma 7 197426 -NCIT:C161838 Hepatocellular Malignant Neoplasm, Not Otherwise Specified 7 197427 -NCIT:C189923 Epithelial Hepatoblastoma 7 197428 -NCIT:C189924 Epithelial Hepatoblastoma with Pleomorphic Pattern 8 197429 -NCIT:C7093 Hepatoblastoma with Pure Fetal Epithelial Differentiation 8 197430 -NCIT:C7094 Hepatoblastoma with Combined Fetal and Embryonal Epithelial Differentiation 8 197431 -NCIT:C7095 Macrotrabecular Hepatoblastoma 8 197432 -NCIT:C7096 Small Cell Undifferentiated Hepatoblastoma 8 197433 -NCIT:C189927 Hepatoblastoma by PRETEXT Stage 7 197434 -NCIT:C7139 PRETEXT Stage 1 Hepatoblastoma 8 197435 -NCIT:C7140 PRETEXT Stage 2 Hepatoblastoma 8 197436 -NCIT:C7141 PRETEXT Stage 3 Hepatoblastoma 8 197437 -NCIT:C7142 PRETEXT Stage 4 Hepatoblastoma 8 197438 -NCIT:C189929 Hepatoblastoma by Postsurgical Stage 7 197439 -NCIT:C7143 Postsurgical Stage IV Hepatoblastoma 8 197440 -NCIT:C7144 Postsurgical Stage III Hepatoblastoma 8 197441 -NCIT:C7145 Postsurgical Stage II Hepatoblastoma 8 197442 -NCIT:C7146 Postsurgical Stage I Hepatoblastoma 8 197443 -NCIT:C7097 Mixed Epithelial and Mesenchymal Hepatoblastoma 7 197444 -NCIT:C189926 Non-Teratoid Hepatoblastoma 8 197445 -NCIT:C7098 Teratoid Hepatoblastoma 8 197446 -NCIT:C8641 Unresectable Hepatoblastoma 7 197447 -NCIT:C8642 Resectable Hepatoblastoma 7 197448 -NCIT:C8643 Recurrent Hepatoblastoma 7 197449 -NCIT:C7839 Recurrent Childhood Malignant Liver Neoplasm 6 197450 -NCIT:C8643 Recurrent Hepatoblastoma 7 197451 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 7 197452 -NCIT:C7955 Childhood Hepatocellular Carcinoma 6 197453 -NCIT:C189932 Childhood Fibrolamellar Carcinoma 7 197454 -NCIT:C5708 Stage III Childhood Hepatocellular Carcinoma AJCC v7 7 197455 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 7 197456 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 7 197457 -NCIT:C7838 Stage IV Childhood Hepatocellular Carcinoma AJCC v7 7 197458 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 7 197459 -NCIT:C96830 Calcifying Nested Stromal-Epithelial Tumor 6 197460 -NCIT:C96847 Extrarenal Rhabdoid Tumor of the Liver 6 197461 -NCIT:C190056 Childhood Endocrine Neoplasm 3 197462 -NCIT:C190070 Childhood Malignant Endocrine Neoplasm 4 197463 -NCIT:C118815 Childhood Lung Small Cell Carcinoma 5 197464 -NCIT:C118819 Childhood Parathyroid Gland Carcinoma 5 197465 -NCIT:C123903 Childhood Thyroid Gland Papillary Carcinoma 5 197466 -NCIT:C123904 Childhood Thyroid Gland Follicular Carcinoma 5 197467 -NCIT:C123905 Childhood Thyroid Gland Medullary Carcinoma 5 197468 -NCIT:C190069 Childhood Adrenal Cortical Carcinoma 5 197469 -NCIT:C190075 Childhood Neuroendocrine Neoplasm 4 197470 -NCIT:C118815 Childhood Lung Small Cell Carcinoma 5 197471 -NCIT:C123905 Childhood Thyroid Gland Medullary Carcinoma 5 197472 -NCIT:C190074 Childhood Paraganglioma 5 197473 -NCIT:C190071 Childhood Sympathetic Paraganglioma 6 197474 -NCIT:C118822 Childhood Adrenal Gland Pheochromocytoma 7 197475 -NCIT:C190072 Childhood Parasympathetic Paraganglioma 6 197476 -NCIT:C190073 Childhood Composite Paraganglioma 6 197477 -NCIT:C190077 Childhood Neuroendocrine Tumor 5 197478 -NCIT:C118810 Childhood Neuroendocrine Tumor G1 6 197479 -NCIT:C190076 Childhood Digestive System Neuroendocrine Tumor 6 197480 -NCIT:C190029 Childhood Appendix Neuroendocrine Tumor 7 197481 -NCIT:C190078 Childhood Neuroendocrine Tumor G2 6 197482 -NCIT:C190600 Childhood Benign Endocrine Neoplasm 4 197483 -NCIT:C190060 Childhood Thyroid Gland Follicular Adenoma 5 197484 -NCIT:C190066 Childhood Parathyroid Gland Adenoma 5 197485 -NCIT:C190068 Childhood Adrenal Cortical Adenoma 5 197486 -NCIT:C190090 Childhood Thoracic Neoplasm 3 197487 -NCIT:C190095 Childhood Lung Neoplasm 4 197488 -NCIT:C142823 Congenital Peribronchial Myofibroblastic Tumor 5 197489 -NCIT:C190100 Childhood Malignant Lung Neoplasm 5 197490 -NCIT:C118814 Childhood Lung Non-Small Cell Carcinoma 6 197491 -NCIT:C118815 Childhood Lung Small Cell Carcinoma 6 197492 -NCIT:C190621 Childhood Benign Lung Neoplasm 5 197493 -NCIT:C190105 Fetal Lung Interstitial Tumor 6 197494 -NCIT:C190098 Childhood Malignant Thoracic Neoplasm 4 197495 -NCIT:C188455 Childhood Primary Mediastinal (Thymic) Large B-Cell Lymphoma 5 197496 -NCIT:C190100 Childhood Malignant Lung Neoplasm 5 197497 -NCIT:C118814 Childhood Lung Non-Small Cell Carcinoma 6 197498 -NCIT:C118815 Childhood Lung Small Cell Carcinoma 6 197499 -NCIT:C5669 Pleuropulmonary Blastoma 5 197500 -NCIT:C45626 Type I Pleuropulmonary Blastoma 6 197501 -NCIT:C45627 Type II Pleuropulmonary Blastoma 6 197502 -NCIT:C45628 Type III Pleuropulmonary Blastoma 6 197503 -NCIT:C190620 Childhood Benign Thoracic Neoplasm 4 197504 -NCIT:C190104 Childhood Cardiac Rhabdomyoma 5 197505 -NCIT:C190621 Childhood Benign Lung Neoplasm 5 197506 -NCIT:C190105 Fetal Lung Interstitial Tumor 6 197507 -NCIT:C5429 Childhood Mediastinal Neurogenic Neoplasm 4 197508 -NCIT:C190119 Childhood Head and Neck Neoplasm 3 197509 -NCIT:C190121 Childhood Malignant Head and Neck Neoplasm 4 197510 -NCIT:C118811 Childhood Laryngeal Carcinoma 5 197511 -NCIT:C118817 Childhood Nasal Cavity Carcinoma 5 197512 -NCIT:C118818 Childhood Paranasal Sinus Carcinoma 5 197513 -NCIT:C118819 Childhood Parathyroid Gland Carcinoma 5 197514 -NCIT:C118824 Childhood Salivary Gland Carcinoma 5 197515 -NCIT:C190273 Childhood Salivary Gland Mucoepidermoid Carcinoma 6 197516 -NCIT:C190274 Childhood Salivary Gland Acinic Cell Carcinoma 6 197517 -NCIT:C118827 Childhood Thyroid Gland Carcinoma 5 197518 -NCIT:C123903 Childhood Thyroid Gland Papillary Carcinoma 6 197519 -NCIT:C123904 Childhood Thyroid Gland Follicular Carcinoma 6 197520 -NCIT:C123905 Childhood Thyroid Gland Medullary Carcinoma 6 197521 -NCIT:C190064 Childhood Thyroid Gland Spindle Epithelial Tumor with Thymus-Like Elements 6 197522 -NCIT:C190272 Childhood Mucoepidermoid Carcinoma 5 197523 -NCIT:C190273 Childhood Salivary Gland Mucoepidermoid Carcinoma 6 197524 -NCIT:C190276 Childhood Nasopharyngeal Carcinoma 5 197525 -NCIT:C190278 Childhood Head and Neck NUT Carcinoma 5 197526 -NCIT:C190152 Childhood Odontogenic Neoplasm 4 197527 -NCIT:C190154 Childhood Ameloblastoma 5 197528 -NCIT:C190155 Childhood Ameloblastic Fibroma 5 197529 -NCIT:C190156 Childhood Adenomatoid Odontogenic Tumor 5 197530 -NCIT:C190157 Childhood Odontogenic Myxoma 5 197531 -NCIT:C190613 Childhood Benign Head and Neck Neoplasm 4 197532 -NCIT:C190060 Childhood Thyroid Gland Follicular Adenoma 5 197533 -NCIT:C190066 Childhood Parathyroid Gland Adenoma 5 197534 -NCIT:C190150 Childhood Laryngeal Squamous Papilloma 5 197535 -NCIT:C190155 Childhood Ameloblastic Fibroma 5 197536 -NCIT:C190156 Childhood Adenomatoid Odontogenic Tumor 5 197537 -NCIT:C190157 Childhood Odontogenic Myxoma 5 197538 -NCIT:C190158 Childhood Ossifying Fibroma 5 197539 -NCIT:C190160 Sinonasal Tract Myxoma 5 197540 -NCIT:C190161 Childhood Salivary Gland Pleomorphic Adenoma 5 197541 -NCIT:C7816 Childhood Craniopharyngioma 5 197542 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 6 197543 -NCIT:C35837 Sialoblastoma 4 197544 -NCIT:C190123 Childhood Skin Neoplasm 3 197545 -NCIT:C188975 Childhood Plexiform Fibrohistiocytic Tumor 4 197546 -NCIT:C190125 Childhood Malignant Skin Neoplasm 4 197547 -NCIT:C190280 Childhood Cutaneous Melanoma 5 197548 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 5 197549 -NCIT:C190618 Childhood Benign Skin Neoplasm 4 197550 -NCIT:C190279 Childhood Pilomatricoma 5 197551 -NCIT:C190284 Childhood Benign Skin Melanocytic Nevus 5 197552 -NCIT:C190281 Childhood Pigmented Spindle Cell Nevus 6 197553 -NCIT:C190282 Childhood Spitz Nevus 6 197554 -NCIT:C190283 Childhood Blue Nevus 6 197555 -NCIT:C190285 Childhood Junctional Nevus 6 197556 -NCIT:C190286 Childhood Compound Nevus 6 197557 -NCIT:C190287 Childhood Dermal Nevus 6 197558 -NCIT:C3944 Congenital Melanocytic Nevus 6 197559 -NCIT:C40330 Vulvar Congenital Melanocytic Nevus 7 197560 -NCIT:C4234 Giant Congenital Nevus 7 197561 -NCIT:C66754 Small Congenital Melanocytic Nevus 7 197562 -NCIT:C66755 Proliferative Nodules in Congenital Melanocytic Nevus 7 197563 -NCIT:C3942 Fibrous Hamartoma of Infancy 5 197564 -NCIT:C190573 Childhood Benign Neoplasm 3 197565 -NCIT:C190574 Childhood Benign Breast Neoplasm 4 197566 -NCIT:C189339 Childhood Breast Fibroadenoma 5 197567 -NCIT:C4276 Juvenile Breast Fibroadenoma 6 197568 -NCIT:C9503 Juvenile Breast Papillomatosis 5 197569 -NCIT:C190576 Childhood Benign Connective and Soft Tissue Neoplasm 4 197570 -NCIT:C180887 Infantile Myofibroma 5 197571 -NCIT:C188965 Childhood EWSR1-SMAD3-Positive Fibroblastic Tumor 5 197572 -NCIT:C188974 Childhood Fibrous Histiocytoma 5 197573 -NCIT:C189031 Childhood Non-Ossifying Fibroma 6 197574 -NCIT:C188983 Childhood Rhabdomyoma 5 197575 -NCIT:C190104 Childhood Cardiac Rhabdomyoma 6 197576 -NCIT:C189288 Childhood Ovarian Fibroma 5 197577 -NCIT:C190019 Liver Congenital Hemangioma 5 197578 -NCIT:C190160 Sinonasal Tract Myxoma 5 197579 -NCIT:C190577 Childhood Benign Bone Neoplasm 5 197580 -NCIT:C189019 Childhood Subungual Exostosis 6 197581 -NCIT:C189020 Childhood Osteoblastoma 6 197582 -NCIT:C189021 Childhood Osteoid Osteoma 6 197583 -NCIT:C189023 Childhood Chondroblastoma 6 197584 -NCIT:C189024 Childhood Osteochondroma 6 197585 -NCIT:C189025 Childhood Chondromyxoid Fibroma 6 197586 -NCIT:C189028 Childhood Bone Hemangioma 6 197587 -NCIT:C189029 Childhood Aneurysmal Bone Cyst 6 197588 -NCIT:C189031 Childhood Non-Ossifying Fibroma 6 197589 -NCIT:C189033 Childhood Fibrous Dysplasia 6 197590 -NCIT:C27483 Lipoblastoma 5 197591 -NCIT:C3456 Inclusion Body Fibromatosis 5 197592 -NCIT:C3942 Fibrous Hamartoma of Infancy 5 197593 -NCIT:C4818 Calcifying Aponeurotic Fibroma 5 197594 -NCIT:C5751 Liver Mesenchymal Hamartoma 5 197595 -NCIT:C6645 Infantile Hemangioma 5 197596 -NCIT:C96840 Liver Infantile Hemangioma 6 197597 -NCIT:C99086 Airway Infantile Hemangioma 6 197598 -NCIT:C190580 Childhood Benign Digestive System Neoplasm 4 197599 -NCIT:C190581 Childhood Benign Liver Neoplasm 5 197600 -NCIT:C190019 Liver Congenital Hemangioma 6 197601 -NCIT:C5751 Liver Mesenchymal Hamartoma 6 197602 -NCIT:C96840 Liver Infantile Hemangioma 6 197603 -NCIT:C190600 Childhood Benign Endocrine Neoplasm 4 197604 -NCIT:C190060 Childhood Thyroid Gland Follicular Adenoma 5 197605 -NCIT:C190066 Childhood Parathyroid Gland Adenoma 5 197606 -NCIT:C190068 Childhood Adrenal Cortical Adenoma 5 197607 -NCIT:C190602 Childhood Benign Genitourinary System Neoplasm 4 197608 -NCIT:C123837 Childhood Testicular Mature Teratoma 5 197609 -NCIT:C189337 Childhood Mullerian Papilloma 5 197610 -NCIT:C190608 Childhood Benign Kidney Neoplasm 5 197611 -NCIT:C157745 Childhood Cystic Nephroma 6 197612 -NCIT:C66774 Ossifying Renal Tumor of Infancy 6 197613 -NCIT:C190658 Childhood Benign Ovarian Neoplasm 5 197614 -NCIT:C189288 Childhood Ovarian Fibroma 6 197615 -NCIT:C189289 Childhood Ovarian Sclerosing Stromal Tumor 6 197616 -NCIT:C6548 Childhood Ovarian Mature Teratoma 6 197617 -NCIT:C40330 Vulvar Congenital Melanocytic Nevus 5 197618 -NCIT:C190613 Childhood Benign Head and Neck Neoplasm 4 197619 -NCIT:C190060 Childhood Thyroid Gland Follicular Adenoma 5 197620 -NCIT:C190066 Childhood Parathyroid Gland Adenoma 5 197621 -NCIT:C190150 Childhood Laryngeal Squamous Papilloma 5 197622 -NCIT:C190155 Childhood Ameloblastic Fibroma 5 197623 -NCIT:C190156 Childhood Adenomatoid Odontogenic Tumor 5 197624 -NCIT:C190157 Childhood Odontogenic Myxoma 5 197625 -NCIT:C190158 Childhood Ossifying Fibroma 5 197626 -NCIT:C190160 Sinonasal Tract Myxoma 5 197627 -NCIT:C190161 Childhood Salivary Gland Pleomorphic Adenoma 5 197628 -NCIT:C7816 Childhood Craniopharyngioma 5 197629 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 6 197630 -NCIT:C190618 Childhood Benign Skin Neoplasm 4 197631 -NCIT:C190279 Childhood Pilomatricoma 5 197632 -NCIT:C190284 Childhood Benign Skin Melanocytic Nevus 5 197633 -NCIT:C190281 Childhood Pigmented Spindle Cell Nevus 6 197634 -NCIT:C190282 Childhood Spitz Nevus 6 197635 -NCIT:C190283 Childhood Blue Nevus 6 197636 -NCIT:C190285 Childhood Junctional Nevus 6 197637 -NCIT:C190286 Childhood Compound Nevus 6 197638 -NCIT:C190287 Childhood Dermal Nevus 6 197639 -NCIT:C3944 Congenital Melanocytic Nevus 6 197640 -NCIT:C40330 Vulvar Congenital Melanocytic Nevus 7 197641 -NCIT:C4234 Giant Congenital Nevus 7 197642 -NCIT:C66754 Small Congenital Melanocytic Nevus 7 197643 -NCIT:C66755 Proliferative Nodules in Congenital Melanocytic Nevus 7 197644 -NCIT:C3942 Fibrous Hamartoma of Infancy 5 197645 -NCIT:C190620 Childhood Benign Thoracic Neoplasm 4 197646 -NCIT:C190104 Childhood Cardiac Rhabdomyoma 5 197647 -NCIT:C190621 Childhood Benign Lung Neoplasm 5 197648 -NCIT:C190105 Fetal Lung Interstitial Tumor 6 197649 -NCIT:C190622 Childhood Benign Nervous System Neoplasm 4 197650 -NCIT:C188946 Childhood Ganglioneuroma 5 197651 -NCIT:C188992 Childhood Schwannoma 5 197652 -NCIT:C188995 Childhood Neurofibroma 5 197653 -NCIT:C188997 Childhood Perineurioma 5 197654 -NCIT:C5591 Childhood Benign Central Nervous System Neoplasm 5 197655 -NCIT:C27404 Childhood Central Nervous System Mature Teratoma 6 197656 -NCIT:C5798 Childhood Benign Brain Neoplasm 6 197657 -NCIT:C5799 Childhood Benign Supratentorial Neoplasm 7 197658 -NCIT:C5800 Childhood Choroid Plexus Papilloma 8 197659 -NCIT:C6219 Childhood Benign Cerebral Neoplasm 8 197660 -NCIT:C7816 Childhood Craniopharyngioma 7 197661 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 8 197662 -NCIT:C6553 Childhood Benign Germ Cell Tumor 4 197663 -NCIT:C123836 Childhood Mature Teratoma 5 197664 -NCIT:C123837 Childhood Testicular Mature Teratoma 6 197665 -NCIT:C27404 Childhood Central Nervous System Mature Teratoma 6 197666 -NCIT:C6548 Childhood Ovarian Mature Teratoma 6 197667 -NCIT:C4005 Childhood Malignant Neoplasm 3 197668 -NCIT:C114451 Rare Childhood Malignant Neoplasm 4 197669 -NCIT:C118821 Childhood Malignant Penile Neoplasm 5 197670 -NCIT:C118826 Childhood Malignant Small Intestinal Neoplasm 5 197671 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 6 197672 -NCIT:C123933 Childhood Small Intestinal Carcinoma 6 197673 -NCIT:C131506 Childhood Melanoma 5 197674 -NCIT:C189261 Childhood Kidney Ewing Sarcoma 5 197675 -NCIT:C190275 Childhood Carcinoma 5 197676 -NCIT:C118808 Childhood Colorectal Carcinoma 6 197677 -NCIT:C118823 Childhood Rectal Carcinoma 7 197678 -NCIT:C118809 Childhood Breast Carcinoma 6 197679 -NCIT:C118811 Childhood Laryngeal Carcinoma 6 197680 -NCIT:C118812 Childhood Esophageal Carcinoma 6 197681 -NCIT:C118813 Childhood Gastric Carcinoma 6 197682 -NCIT:C118814 Childhood Lung Non-Small Cell Carcinoma 6 197683 -NCIT:C118815 Childhood Lung Small Cell Carcinoma 6 197684 -NCIT:C118816 Childhood Bladder Carcinoma 6 197685 -NCIT:C118817 Childhood Nasal Cavity Carcinoma 6 197686 -NCIT:C118818 Childhood Paranasal Sinus Carcinoma 6 197687 -NCIT:C118819 Childhood Parathyroid Gland Carcinoma 6 197688 -NCIT:C118824 Childhood Salivary Gland Carcinoma 6 197689 -NCIT:C190273 Childhood Salivary Gland Mucoepidermoid Carcinoma 7 197690 -NCIT:C190274 Childhood Salivary Gland Acinic Cell Carcinoma 7 197691 -NCIT:C118827 Childhood Thyroid Gland Carcinoma 6 197692 -NCIT:C123903 Childhood Thyroid Gland Papillary Carcinoma 7 197693 -NCIT:C123904 Childhood Thyroid Gland Follicular Carcinoma 7 197694 -NCIT:C123905 Childhood Thyroid Gland Medullary Carcinoma 7 197695 -NCIT:C190064 Childhood Thyroid Gland Spindle Epithelial Tumor with Thymus-Like Elements 7 197696 -NCIT:C123933 Childhood Small Intestinal Carcinoma 6 197697 -NCIT:C124292 Childhood Choroid Plexus Carcinoma 6 197698 -NCIT:C189244 Childhood Kidney Carcinoma 6 197699 -NCIT:C189248 Childhood SMARCB1-Deficient Kidney Medullary Carcinoma 7 197700 -NCIT:C6568 Childhood Renal Cell Carcinoma 7 197701 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 8 197702 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 8 197703 -NCIT:C189255 Childhood Eosinophilic Solid and Cystic Renal Cell Carcinoma 8 197704 -NCIT:C189334 Childhood Ovarian Small Cell Carcinoma, Hypercalcemic Type 6 197705 -NCIT:C190024 Childhood Pancreatic Acinar Cell Carcinoma 6 197706 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 7 197707 -NCIT:C190069 Childhood Adrenal Cortical Carcinoma 6 197708 -NCIT:C190272 Childhood Mucoepidermoid Carcinoma 6 197709 -NCIT:C190273 Childhood Salivary Gland Mucoepidermoid Carcinoma 7 197710 -NCIT:C190276 Childhood Nasopharyngeal Carcinoma 6 197711 -NCIT:C190277 Childhood NUT Carcinoma 6 197712 -NCIT:C190278 Childhood Head and Neck NUT Carcinoma 7 197713 -NCIT:C7955 Childhood Hepatocellular Carcinoma 6 197714 -NCIT:C189932 Childhood Fibrolamellar Carcinoma 7 197715 -NCIT:C5708 Stage III Childhood Hepatocellular Carcinoma AJCC v7 7 197716 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 7 197717 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 7 197718 -NCIT:C7838 Stage IV Childhood Hepatocellular Carcinoma AJCC v7 7 197719 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 7 197720 -NCIT:C114926 Childhood Epithelioid Hemangioendothelioma 4 197721 -NCIT:C148029 Childhood Malignant Solid Neoplasm 4 197722 -NCIT:C148026 Recurrent Childhood Malignant Solid Neoplasm 5 197723 -NCIT:C148027 Refractory Childhood Malignant Solid Neoplasm 5 197724 -NCIT:C187210 Advanced Childhood Malignant Solid Neoplasm 5 197725 -NCIT:C162702 Recurrent Childhood Malignant Neoplasm 4 197726 -NCIT:C114836 Recurrent Childhood Central Nervous System Embryonal Neoplasm 5 197727 -NCIT:C115374 Recurrent Childhood Pineoblastoma 6 197728 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 6 197729 -NCIT:C6774 Recurrent Childhood Medulloblastoma 6 197730 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 5 197731 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 5 197732 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 5 197733 -NCIT:C115364 Recurrent Childhood Glioblastoma 5 197734 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 6 197735 -NCIT:C115365 Recurrent Childhood Gliosarcoma 6 197736 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 5 197737 -NCIT:C115368 Recurrent Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 5 197738 -NCIT:C148026 Recurrent Childhood Malignant Solid Neoplasm 5 197739 -NCIT:C162730 Recurrent Rhabdoid Tumor of the Kidney 5 197740 -NCIT:C187189 Recurrent Childhood Osteosarcoma 5 197741 -NCIT:C187196 Recurrent Childhood Lymphoma 5 197742 -NCIT:C115369 Recurrent Childhood Non-Hodgkin Lymphoma 6 197743 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 7 197744 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 7 197745 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 7 197746 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 7 197747 -NCIT:C8059 Recurrent Childhood Hodgkin Lymphoma 6 197748 -NCIT:C188881 Recurrent Extrarenal Rhabdoid Tumor 5 197749 -NCIT:C171170 Recurrent Extrarenal Rhabdoid Tumor of the Ovary 6 197750 -NCIT:C7784 Recurrent Childhood Acute Lymphoblastic Leukemia 5 197751 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 6 197752 -NCIT:C7839 Recurrent Childhood Malignant Liver Neoplasm 5 197753 -NCIT:C8643 Recurrent Hepatoblastoma 6 197754 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 6 197755 -NCIT:C8067 Recurrent Childhood Soft Tissue Sarcoma 5 197756 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 6 197757 -NCIT:C9068 Recurrent Childhood Acute Myeloid Leukemia 5 197758 -NCIT:C9221 Recurrent Childhood Malignant Germ Cell Tumor 5 197759 -NCIT:C162703 Refractory Childhood Malignant Neoplasm 4 197760 -NCIT:C122624 Refractory Childhood Acute Lymphoblastic Leukemia 5 197761 -NCIT:C123737 Refractory Childhood Malignant Germ Cell Tumor 5 197762 -NCIT:C142854 Refractory Hepatoblastoma 5 197763 -NCIT:C148027 Refractory Childhood Malignant Solid Neoplasm 5 197764 -NCIT:C162731 Refractory Rhabdoid Tumor of the Kidney 5 197765 -NCIT:C187192 Refractory Childhood Osteosarcoma 5 197766 -NCIT:C187194 Refractory Childhood Soft Tissue Sarcoma 5 197767 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 6 197768 -NCIT:C187197 Refractory Childhood Lymphoma 5 197769 -NCIT:C115458 Refractory Childhood Hodgkin Lymphoma 6 197770 -NCIT:C187449 Refractory Childhood Acute Myeloid Leukemia 5 197771 -NCIT:C188884 Refractory Extrarenal Rhabdoid Tumor 5 197772 -NCIT:C171171 Refractory Extrarenal Rhabdoid Tumor of the Ovary 6 197773 -NCIT:C188453 Childhood B Lymphoblastic Leukemia/Lymphoma 4 197774 -NCIT:C7209 Childhood B Lymphoblastic Lymphoma 5 197775 -NCIT:C9140 Childhood B Acute Lymphoblastic Leukemia 5 197776 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 6 197777 -NCIT:C188981 Childhood Sarcoma 4 197778 -NCIT:C188984 Childhood Ectomesenchymoma 5 197779 -NCIT:C189002 Childhood Ewing Sarcoma 5 197780 -NCIT:C189261 Childhood Kidney Ewing Sarcoma 6 197781 -NCIT:C189003 Childhood Round Cell Sarcoma with EWSR1-non-ETS Fusion 5 197782 -NCIT:C189006 Childhood CIC-Rearranged Sarcoma 5 197783 -NCIT:C189007 Childhood Sarcoma with BCOR Genetic Alterations 5 197784 -NCIT:C189017 Childhood Bone Sarcoma 5 197785 -NCIT:C114750 Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 6 197786 -NCIT:C115368 Recurrent Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 7 197787 -NCIT:C115998 Localized Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 7 197788 -NCIT:C189022 Childhood Bone Osteosarcoma 6 197789 -NCIT:C123398 Childhood Periosteal Osteosarcoma 7 197790 -NCIT:C6589 Childhood Parosteal Osteosarcoma 7 197791 -NCIT:C6590 Childhood Conventional Osteosarcoma 7 197792 -NCIT:C189026 Childhood Primary Central Chondrosarcoma 6 197793 -NCIT:C189027 Childhood Chondrosarcoma 5 197794 -NCIT:C189026 Childhood Primary Central Chondrosarcoma 6 197795 -NCIT:C27374 Childhood Mesenchymal Chondrosarcoma 6 197796 -NCIT:C6585 Childhood Osteosarcoma 5 197797 -NCIT:C187189 Recurrent Childhood Osteosarcoma 6 197798 -NCIT:C187192 Refractory Childhood Osteosarcoma 6 197799 -NCIT:C189022 Childhood Bone Osteosarcoma 6 197800 -NCIT:C123398 Childhood Periosteal Osteosarcoma 7 197801 -NCIT:C6589 Childhood Parosteal Osteosarcoma 7 197802 -NCIT:C6590 Childhood Conventional Osteosarcoma 7 197803 -NCIT:C27376 Childhood Extraskeletal Osteosarcoma 6 197804 -NCIT:C7715 Childhood Soft Tissue Sarcoma 5 197805 -NCIT:C114749 Childhood Undifferentiated Pleomorphic Sarcoma 6 197806 -NCIT:C115292 Localized Childhood Soft Tissue Sarcoma 6 197807 -NCIT:C8065 Localized Childhood Rhabdomyosarcoma 7 197808 -NCIT:C187194 Refractory Childhood Soft Tissue Sarcoma 6 197809 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 7 197810 -NCIT:C188980 Childhood Kaposi Sarcoma 6 197811 -NCIT:C189260 Childhood Anaplastic Sarcoma of the Kidney 6 197812 -NCIT:C189261 Childhood Kidney Ewing Sarcoma 6 197813 -NCIT:C189934 Childhood Liver Embryonal Sarcoma 6 197814 -NCIT:C190020 Childhood Liver Angiosarcoma 6 197815 -NCIT:C27371 Childhood Clear Cell Sarcoma of Soft Tissue 6 197816 -NCIT:C27372 Childhood Desmoplastic Small Round Cell Tumor 6 197817 -NCIT:C27376 Childhood Extraskeletal Osteosarcoma 6 197818 -NCIT:C27377 Childhood Extraskeletal Myxoid Chondrosarcoma 6 197819 -NCIT:C4264 Clear Cell Sarcoma of the Kidney 6 197820 -NCIT:C7705 Childhood Rhabdomyosarcoma 6 197821 -NCIT:C123397 Childhood Spindle Cell Rhabdomyosarcoma 7 197822 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 7 197823 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 7 197824 -NCIT:C7957 Childhood Embryonal Rhabdomyosarcoma 7 197825 -NCIT:C35574 Childhood Botryoid-Type Embryonal Rhabdomyosarcoma 8 197826 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 9 197827 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 9 197828 -NCIT:C7958 Childhood Alveolar Rhabdomyosarcoma 7 197829 -NCIT:C7959 Childhood Pleomorphic Rhabdomyosarcoma 7 197830 -NCIT:C7960 Childhood Rhabdomyosarcoma with Mixed Embryonal and Alveolar Features 7 197831 -NCIT:C8065 Localized Childhood Rhabdomyosarcoma 7 197832 -NCIT:C8066 Metastatic Childhood Soft Tissue Sarcoma 6 197833 -NCIT:C8067 Recurrent Childhood Soft Tissue Sarcoma 6 197834 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 7 197835 -NCIT:C8089 Childhood Synovial Sarcoma 6 197836 -NCIT:C8092 Childhood Alveolar Soft Part Sarcoma 6 197837 -NCIT:C8093 Childhood Leiomyosarcoma 6 197838 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 7 197839 -NCIT:C8095 Childhood Epithelioid Sarcoma 6 197840 -NCIT:C8088 Childhood Fibrosarcoma 5 197841 -NCIT:C188970 Childhood Low Grade Fibromyxoid Sarcoma 6 197842 -NCIT:C188971 Childhood Sclerosing Epithelioid Fibrosarcoma 6 197843 -NCIT:C188973 Childhood Low Grade Myofibroblastic Sarcoma 6 197844 -NCIT:C4244 Infantile Fibrosarcoma 6 197845 -NCIT:C8091 Childhood Liposarcoma 5 197846 -NCIT:C8094 Childhood Malignant Peripheral Nerve Sheath Tumor 5 197847 -NCIT:C9174 Childhood Angiosarcoma 5 197848 -NCIT:C190020 Childhood Liver Angiosarcoma 6 197849 -NCIT:C189269 Childhood Malignant Genitourinary System Neoplasm 4 197850 -NCIT:C118816 Childhood Bladder Carcinoma 5 197851 -NCIT:C118821 Childhood Malignant Penile Neoplasm 5 197852 -NCIT:C123907 Childhood Malignant Kidney Neoplasm 5 197853 -NCIT:C189244 Childhood Kidney Carcinoma 6 197854 -NCIT:C189248 Childhood SMARCB1-Deficient Kidney Medullary Carcinoma 7 197855 -NCIT:C6568 Childhood Renal Cell Carcinoma 7 197856 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 8 197857 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 8 197858 -NCIT:C189255 Childhood Eosinophilic Solid and Cystic Renal Cell Carcinoma 8 197859 -NCIT:C189260 Childhood Anaplastic Sarcoma of the Kidney 6 197860 -NCIT:C189261 Childhood Kidney Ewing Sarcoma 6 197861 -NCIT:C27730 Childhood Kidney Wilms Tumor 6 197862 -NCIT:C6897 Cystic Partially Differentiated Kidney Nephroblastoma 7 197863 -NCIT:C4264 Clear Cell Sarcoma of the Kidney 6 197864 -NCIT:C6569 Congenital Mesoblastic Nephroma 6 197865 -NCIT:C39814 Classic Congenital Mesoblastic Nephroma 7 197866 -NCIT:C39815 Cellular Congenital Mesoblastic Nephroma 7 197867 -NCIT:C97058 Mixed Congenital Mesoblastic Nephroma 7 197868 -NCIT:C8715 Rhabdoid Tumor of the Kidney 6 197869 -NCIT:C162730 Recurrent Rhabdoid Tumor of the Kidney 7 197870 -NCIT:C162731 Refractory Rhabdoid Tumor of the Kidney 7 197871 -NCIT:C188888 Unresectable Rhabdoid Tumor of the Kidney 7 197872 -NCIT:C161608 Extrarenal Rhabdoid Tumor of the Prostate 5 197873 -NCIT:C190659 Childhood Malignant Ovarian Neoplasm 5 197874 -NCIT:C171169 Extrarenal Rhabdoid Tumor of the Ovary 6 197875 -NCIT:C171170 Recurrent Extrarenal Rhabdoid Tumor of the Ovary 7 197876 -NCIT:C171171 Refractory Extrarenal Rhabdoid Tumor of the Ovary 7 197877 -NCIT:C189334 Childhood Ovarian Small Cell Carcinoma, Hypercalcemic Type 6 197878 -NCIT:C68629 Childhood Malignant Ovarian Germ Cell Tumor 6 197879 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 7 197880 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 7 197881 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 7 197882 -NCIT:C6550 Childhood Ovarian Dysgerminoma 7 197883 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 7 197884 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 5 197885 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 5 197886 -NCIT:C68628 Childhood Malignant Testicular Germ Cell Tumor 5 197887 -NCIT:C6542 Childhood Testicular Mixed Germ Cell Tumor 6 197888 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 7 197889 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 6 197890 -NCIT:C6544 Childhood Testicular Choriocarcinoma 6 197891 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 6 197892 -NCIT:C189870 Childhood Malignant Digestive System Neoplasm 4 197893 -NCIT:C118808 Childhood Colorectal Carcinoma 5 197894 -NCIT:C118823 Childhood Rectal Carcinoma 6 197895 -NCIT:C118812 Childhood Esophageal Carcinoma 5 197896 -NCIT:C118813 Childhood Gastric Carcinoma 5 197897 -NCIT:C118826 Childhood Malignant Small Intestinal Neoplasm 5 197898 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 6 197899 -NCIT:C123933 Childhood Small Intestinal Carcinoma 6 197900 -NCIT:C190023 Childhood Pancreatoblastoma 5 197901 -NCIT:C190024 Childhood Pancreatic Acinar Cell Carcinoma 5 197902 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 6 197903 -NCIT:C190027 Childhood Solid Pseudopapillary Neoplasm of the Pancreas 5 197904 -NCIT:C190028 Childhood Gastroblastoma 5 197905 -NCIT:C7708 Childhood Malignant Liver Neoplasm 5 197906 -NCIT:C189934 Childhood Liver Embryonal Sarcoma 6 197907 -NCIT:C190020 Childhood Liver Angiosarcoma 6 197908 -NCIT:C3728 Hepatoblastoma 6 197909 -NCIT:C142854 Refractory Hepatoblastoma 7 197910 -NCIT:C161838 Hepatocellular Malignant Neoplasm, Not Otherwise Specified 7 197911 -NCIT:C189923 Epithelial Hepatoblastoma 7 197912 -NCIT:C189924 Epithelial Hepatoblastoma with Pleomorphic Pattern 8 197913 -NCIT:C7093 Hepatoblastoma with Pure Fetal Epithelial Differentiation 8 197914 -NCIT:C7094 Hepatoblastoma with Combined Fetal and Embryonal Epithelial Differentiation 8 197915 -NCIT:C7095 Macrotrabecular Hepatoblastoma 8 197916 -NCIT:C7096 Small Cell Undifferentiated Hepatoblastoma 8 197917 -NCIT:C189927 Hepatoblastoma by PRETEXT Stage 7 197918 -NCIT:C7139 PRETEXT Stage 1 Hepatoblastoma 8 197919 -NCIT:C7140 PRETEXT Stage 2 Hepatoblastoma 8 197920 -NCIT:C7141 PRETEXT Stage 3 Hepatoblastoma 8 197921 -NCIT:C7142 PRETEXT Stage 4 Hepatoblastoma 8 197922 -NCIT:C189929 Hepatoblastoma by Postsurgical Stage 7 197923 -NCIT:C7143 Postsurgical Stage IV Hepatoblastoma 8 197924 -NCIT:C7144 Postsurgical Stage III Hepatoblastoma 8 197925 -NCIT:C7145 Postsurgical Stage II Hepatoblastoma 8 197926 -NCIT:C7146 Postsurgical Stage I Hepatoblastoma 8 197927 -NCIT:C7097 Mixed Epithelial and Mesenchymal Hepatoblastoma 7 197928 -NCIT:C189926 Non-Teratoid Hepatoblastoma 8 197929 -NCIT:C7098 Teratoid Hepatoblastoma 8 197930 -NCIT:C8641 Unresectable Hepatoblastoma 7 197931 -NCIT:C8642 Resectable Hepatoblastoma 7 197932 -NCIT:C8643 Recurrent Hepatoblastoma 7 197933 -NCIT:C7839 Recurrent Childhood Malignant Liver Neoplasm 6 197934 -NCIT:C8643 Recurrent Hepatoblastoma 7 197935 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 7 197936 -NCIT:C7955 Childhood Hepatocellular Carcinoma 6 197937 -NCIT:C189932 Childhood Fibrolamellar Carcinoma 7 197938 -NCIT:C5708 Stage III Childhood Hepatocellular Carcinoma AJCC v7 7 197939 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 7 197940 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 7 197941 -NCIT:C7838 Stage IV Childhood Hepatocellular Carcinoma AJCC v7 7 197942 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 7 197943 -NCIT:C96830 Calcifying Nested Stromal-Epithelial Tumor 6 197944 -NCIT:C96847 Extrarenal Rhabdoid Tumor of the Liver 6 197945 -NCIT:C190070 Childhood Malignant Endocrine Neoplasm 4 197946 -NCIT:C118815 Childhood Lung Small Cell Carcinoma 5 197947 -NCIT:C118819 Childhood Parathyroid Gland Carcinoma 5 197948 -NCIT:C123903 Childhood Thyroid Gland Papillary Carcinoma 5 197949 -NCIT:C123904 Childhood Thyroid Gland Follicular Carcinoma 5 197950 -NCIT:C123905 Childhood Thyroid Gland Medullary Carcinoma 5 197951 -NCIT:C190069 Childhood Adrenal Cortical Carcinoma 5 197952 -NCIT:C190098 Childhood Malignant Thoracic Neoplasm 4 197953 -NCIT:C188455 Childhood Primary Mediastinal (Thymic) Large B-Cell Lymphoma 5 197954 -NCIT:C190100 Childhood Malignant Lung Neoplasm 5 197955 -NCIT:C118814 Childhood Lung Non-Small Cell Carcinoma 6 197956 -NCIT:C118815 Childhood Lung Small Cell Carcinoma 6 197957 -NCIT:C5669 Pleuropulmonary Blastoma 5 197958 -NCIT:C45626 Type I Pleuropulmonary Blastoma 6 197959 -NCIT:C45627 Type II Pleuropulmonary Blastoma 6 197960 -NCIT:C45628 Type III Pleuropulmonary Blastoma 6 197961 -NCIT:C190121 Childhood Malignant Head and Neck Neoplasm 4 197962 -NCIT:C118811 Childhood Laryngeal Carcinoma 5 197963 -NCIT:C118817 Childhood Nasal Cavity Carcinoma 5 197964 -NCIT:C118818 Childhood Paranasal Sinus Carcinoma 5 197965 -NCIT:C118819 Childhood Parathyroid Gland Carcinoma 5 197966 -NCIT:C118824 Childhood Salivary Gland Carcinoma 5 197967 -NCIT:C190273 Childhood Salivary Gland Mucoepidermoid Carcinoma 6 197968 -NCIT:C190274 Childhood Salivary Gland Acinic Cell Carcinoma 6 197969 -NCIT:C118827 Childhood Thyroid Gland Carcinoma 5 197970 -NCIT:C123903 Childhood Thyroid Gland Papillary Carcinoma 6 197971 -NCIT:C123904 Childhood Thyroid Gland Follicular Carcinoma 6 197972 -NCIT:C123905 Childhood Thyroid Gland Medullary Carcinoma 6 197973 -NCIT:C190064 Childhood Thyroid Gland Spindle Epithelial Tumor with Thymus-Like Elements 6 197974 -NCIT:C190272 Childhood Mucoepidermoid Carcinoma 5 197975 -NCIT:C190273 Childhood Salivary Gland Mucoepidermoid Carcinoma 6 197976 -NCIT:C190276 Childhood Nasopharyngeal Carcinoma 5 197977 -NCIT:C190278 Childhood Head and Neck NUT Carcinoma 5 197978 -NCIT:C190125 Childhood Malignant Skin Neoplasm 4 197979 -NCIT:C190280 Childhood Cutaneous Melanoma 5 197980 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 5 197981 -NCIT:C190575 Childhood Malignant Breast Neoplasm 4 197982 -NCIT:C118809 Childhood Breast Carcinoma 5 197983 -NCIT:C190578 Childhood Malignant Bone Neoplasm 4 197984 -NCIT:C189017 Childhood Bone Sarcoma 5 197985 -NCIT:C114750 Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 6 197986 -NCIT:C115368 Recurrent Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 7 197987 -NCIT:C115998 Localized Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 7 197988 -NCIT:C189022 Childhood Bone Osteosarcoma 6 197989 -NCIT:C123398 Childhood Periosteal Osteosarcoma 7 197990 -NCIT:C6589 Childhood Parosteal Osteosarcoma 7 197991 -NCIT:C6590 Childhood Conventional Osteosarcoma 7 197992 -NCIT:C189026 Childhood Primary Central Chondrosarcoma 6 197993 -NCIT:C189032 Childhood Chordoma 5 197994 -NCIT:C190623 Childhood Malignant Nervous System Neoplasm 4 197995 -NCIT:C124270 Childhood Neuroblastoma 5 197996 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 6 197997 -NCIT:C124271 Childhood Ganglioneuroblastoma 5 197998 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 6 197999 -NCIT:C124273 Childhood Ganglioneuroblastoma, Intermixed 6 198000 -NCIT:C124274 Childhood Ganglioneuroblastoma, Nodular 6 198001 -NCIT:C5448 Childhood Malignant Central Nervous System Neoplasm 5 198002 -NCIT:C114833 Childhood Central Nervous System Embryonal Tumor 6 198003 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 7 198004 -NCIT:C114812 Childhood Pineoblastoma 7 198005 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 198006 -NCIT:C114836 Recurrent Childhood Central Nervous System Embryonal Neoplasm 7 198007 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 198008 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 198009 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 198010 -NCIT:C115203 Childhood Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 7 198011 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 198012 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 9 198013 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 198014 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 7 198015 -NCIT:C3997 Childhood Medulloblastoma 7 198016 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 198017 -NCIT:C5961 Childhood Central Nervous System Embryonal Tumor, Not Otherwise Specified 7 198018 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 198019 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 9 198020 -NCIT:C68634 Childhood Atypical Teratoid/Rhabdoid Tumor 7 198021 -NCIT:C114973 Childhood Anaplastic Oligoastrocytoma 6 198022 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 7 198023 -NCIT:C124293 Childhood Anaplastic Ependymoma 6 198024 -NCIT:C187207 Childhood Malignant Brain Neoplasm 6 198025 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 7 198026 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 198027 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 7 198028 -NCIT:C114812 Childhood Pineoblastoma 7 198029 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 198030 -NCIT:C114969 Childhood Gliomatosis Cerebri 7 198031 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 8 198032 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 7 198033 -NCIT:C124292 Childhood Choroid Plexus Carcinoma 7 198034 -NCIT:C147901 Childhood Brain Glioblastoma 7 198035 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 8 198036 -NCIT:C185471 Infant-Type Hemispheric Glioma 7 198037 -NCIT:C185472 Infant-Type Hemispheric Glioma, NTRK-Altered 8 198038 -NCIT:C185473 Infant-Type Hemispheric Glioma, ROS1-Altered 8 198039 -NCIT:C185474 Infant-Type Hemispheric Glioma, ALK-Altered 8 198040 -NCIT:C185475 Infant-Type Hemispheric Glioma, MET-Altered 8 198041 -NCIT:C187211 Metastatic Childhood Malignant Neoplasm in the Brain 7 198042 -NCIT:C187212 Metastatic Childhood Malignant Brain Neoplasm 7 198043 -NCIT:C187213 Advanced Childhood Malignant Brain Neoplasm 8 198044 -NCIT:C188922 Childhood Diffuse Midline Glioma, H3 K27-Altered 7 198045 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 7 198046 -NCIT:C188926 Childhood Diffuse Hemispheric Glioma, H3 G34-Mutant 7 198047 -NCIT:C188935 Childhood Supratentorial Ependymoma ZFTA Fusion-Positive 7 198048 -NCIT:C3997 Childhood Medulloblastoma 7 198049 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 198050 -NCIT:C6207 Childhood Brain Germinoma 7 198051 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 7 198052 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 8 198053 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 8 198054 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 7 198055 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 198056 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 7 198057 -NCIT:C27403 Childhood Central Nervous System Mixed Germ Cell Tumor 6 198058 -NCIT:C27406 Childhood Central Nervous System Germinoma 6 198059 -NCIT:C6207 Childhood Brain Germinoma 7 198060 -NCIT:C5136 Childhood Glioblastoma 6 198061 -NCIT:C114966 Childhood Giant Cell Glioblastoma 7 198062 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 8 198063 -NCIT:C114968 Childhood Gliosarcoma 7 198064 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 8 198065 -NCIT:C115365 Recurrent Childhood Gliosarcoma 8 198066 -NCIT:C115364 Recurrent Childhood Glioblastoma 7 198067 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 8 198068 -NCIT:C115365 Recurrent Childhood Gliosarcoma 8 198069 -NCIT:C147901 Childhood Brain Glioblastoma 7 198070 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 8 198071 -NCIT:C5318 Childhood Meningeal Melanoma 6 198072 -NCIT:C5447 Childhood Anaplastic Oligodendroglioma 6 198073 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 7 198074 -NCIT:C6206 Childhood Central Nervous System Choriocarcinoma 6 198075 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 6 198076 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 6 198077 -NCIT:C6215 Childhood Anaplastic Astrocytoma 6 198078 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 7 198079 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 7 198080 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 8 198081 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 8 198082 -NCIT:C71303 Childhood Grade 3 Meningioma 6 198083 -NCIT:C9047 Childhood Intraocular Retinoblastoma 6 198084 -NCIT:C9048 Childhood Extraocular Retinoblastoma 6 198085 -NCIT:C8094 Childhood Malignant Peripheral Nerve Sheath Tumor 5 198086 -NCIT:C43223 Myeloid Leukemia Associated with Down Syndrome 4 198087 -NCIT:C4989 Childhood Leukemia 4 198088 -NCIT:C122603 Infant Leukemia 5 198089 -NCIT:C122614 Infant Acute Lymphoblastic Leukemia 6 198090 -NCIT:C122617 Infant Acute Lymphoblastic Leukemia with MLL Rearrangement 7 198091 -NCIT:C122621 Infant Acute Lymphoblastic Leukemia without MLL Gene Rearrangement 7 198092 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 7 198093 -NCIT:C122690 Acute Myeloid Leukemia with t(7;12)(q36;p13); HLXB9-ETV6 6 198094 -NCIT:C126110 Infant Acute Undifferentiated Leukemia 6 198095 -NCIT:C126111 Infant Acute Biphenotypic Leukemia 6 198096 -NCIT:C3845 Neonatal Leukemia 6 198097 -NCIT:C187056 Childhood Acute Leukemia 5 198098 -NCIT:C126110 Infant Acute Undifferentiated Leukemia 6 198099 -NCIT:C126111 Infant Acute Biphenotypic Leukemia 6 198100 -NCIT:C3168 Childhood Acute Lymphoblastic Leukemia 6 198101 -NCIT:C122614 Infant Acute Lymphoblastic Leukemia 7 198102 -NCIT:C122617 Infant Acute Lymphoblastic Leukemia with MLL Rearrangement 8 198103 -NCIT:C122621 Infant Acute Lymphoblastic Leukemia without MLL Gene Rearrangement 8 198104 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 8 198105 -NCIT:C122624 Refractory Childhood Acute Lymphoblastic Leukemia 7 198106 -NCIT:C7784 Recurrent Childhood Acute Lymphoblastic Leukemia 7 198107 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 198108 -NCIT:C7953 Childhood T Acute Lymphoblastic Leukemia 7 198109 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 8 198110 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 198111 -NCIT:C9140 Childhood B Acute Lymphoblastic Leukemia 7 198112 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 198113 -NCIT:C7952 Childhood Burkitt Leukemia 6 198114 -NCIT:C9160 Childhood Acute Myeloid Leukemia 6 198115 -NCIT:C122625 Childhood Acute Myeloid Leukemia Not Otherwise Specified 7 198116 -NCIT:C7940 Childhood Acute Monoblastic and Monocytic Leukemia 8 198117 -NCIT:C9162 Childhood Acute Monoblastic Leukemia 9 198118 -NCIT:C9163 Childhood Acute Monocytic Leukemia 9 198119 -NCIT:C7970 Childhood Acute Myelomonocytic Leukemia 8 198120 -NCIT:C7971 Childhood Acute Basophilic Leukemia 8 198121 -NCIT:C7972 Childhood Acute Megakaryoblastic Leukemia 8 198122 -NCIT:C8304 Childhood Acute Myeloid Leukemia with Minimal Differentiation 8 198123 -NCIT:C9158 Childhood Acute Myeloid Leukemia without Maturation 8 198124 -NCIT:C9164 Childhood Acute Erythroid Leukemia 8 198125 -NCIT:C9381 Childhood Acute Myeloid Leukemia with Maturation 8 198126 -NCIT:C122690 Acute Myeloid Leukemia with t(7;12)(q36;p13); HLXB9-ETV6 7 198127 -NCIT:C122691 Childhood Acute Myeloid Leukemia with NUP98 Rearrangement 7 198128 -NCIT:C131502 Acute Myeloid Leukemia with t(5;11)(q35;p15); NUP98-NSD1 8 198129 -NCIT:C131504 Acute Myeloid Leukemia with t(11;15)(p15;q35); NUP98-JARID1A 8 198130 -NCIT:C132111 Acute Megakaryoblastic Leukemia with NUP98-KDM5A 8 198131 -NCIT:C122725 Childhood Acute Myeloid Leukemia with Abnormalities of Chromosome 5q 7 198132 -NCIT:C122726 Childhood Acute Myeloid Leukemia with Abnormalities of Chromosome 7 7 198133 -NCIT:C132101 Acute Myeloid Leukemia with t(10;11)(p12;q23); MLLT10-MLL 7 198134 -NCIT:C132105 Acute Myeloid Leukemia with t(6;11)(q27;q23); MLLT4-MLL 7 198135 -NCIT:C132109 Acute Megakaryoblastic Leukemia with CBFA2T3-GLIS2 7 198136 -NCIT:C167089 Acute Myeloid Leukemia with RAM Immunophenotype 7 198137 -NCIT:C187449 Refractory Childhood Acute Myeloid Leukemia 7 198138 -NCIT:C188450 Childhood Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 7 198139 -NCIT:C188451 Childhood Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 7 198140 -NCIT:C7968 Childhood Acute Promyelocytic Leukemia with PML-RARA 7 198141 -NCIT:C82431 Acute Myeloid Leukemia with NPM1 Mutation 7 198142 -NCIT:C82433 Acute Myeloid Leukemia with CEBPA Mutation 7 198143 -NCIT:C129782 Acute Myeloid Leukemia with Biallelic Mutations of CEBPA 8 198144 -NCIT:C129783 Acute Myeloid Leukemia with Monoallelic Mutations of CEBPA 8 198145 -NCIT:C9068 Recurrent Childhood Acute Myeloid Leukemia 7 198146 -NCIT:C7320 Childhood Chronic Myelogenous Leukemia, BCR-ABL1 Positive 5 198147 -NCIT:C5165 Childhood Lymphoma 4 198148 -NCIT:C141202 Childhood Lymphoma by AJCC v8 Stage 5 198149 -NCIT:C141178 Lugano Classification Childhood Hodgkin Lymphoma by AJCC v8 Stage 6 198150 -NCIT:C141179 Lugano Classification Limited Stage Childhood Hodgkin Lymphoma AJCC v8 7 198151 -NCIT:C141180 Lugano Classification Stage I Childhood Hodgkin Lymphoma AJCC v8 8 198152 -NCIT:C141181 Lugano Classification Stage IE Childhood Hodgkin Lymphoma AJCC v8 8 198153 -NCIT:C141182 Lugano Classification Stage II Childhood Hodgkin Lymphoma AJCC v8 8 198154 -NCIT:C141184 Lugano Classification Stage II Bulky Childhood Hodgkin Lymphoma AJCC v8 9 198155 -NCIT:C141183 Lugano Classification Stage IIE Childhood Hodgkin Lymphoma AJCC v8 8 198156 -NCIT:C141185 Lugano Classification Advanced Stage Childhood Hodgkin Lymphoma AJCC v8 7 198157 -NCIT:C141186 Lugano Classification Stage III Childhood Hodgkin Lymphoma AJCC v8 8 198158 -NCIT:C141187 Lugano Classification Stage IV Childhood Hodgkin Lymphoma AJCC v8 8 198159 -NCIT:C141217 St. Jude Childhood Non-Hodgkin Lymphoma by AJCC v8 Stage 6 198160 -NCIT:C141218 St. Jude Stage I Childhood Non-Hodgkin Lymphoma AJCC v8 7 198161 -NCIT:C141219 St. Jude Stage II Childhood Non-Hodgkin Lymphoma AJCC v8 7 198162 -NCIT:C141220 St. Jude Stage III Childhood Non-Hodgkin Lymphoma AJCC v8 7 198163 -NCIT:C141221 St. Jude Stage IV Childhood Non-Hodgkin Lymphoma AJCC v8 7 198164 -NCIT:C187196 Recurrent Childhood Lymphoma 5 198165 -NCIT:C115369 Recurrent Childhood Non-Hodgkin Lymphoma 6 198166 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 7 198167 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 7 198168 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 7 198169 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 7 198170 -NCIT:C8059 Recurrent Childhood Hodgkin Lymphoma 6 198171 -NCIT:C187197 Refractory Childhood Lymphoma 5 198172 -NCIT:C115458 Refractory Childhood Hodgkin Lymphoma 6 198173 -NCIT:C7706 Childhood Non-Hodgkin Lymphoma 5 198174 -NCIT:C115369 Recurrent Childhood Non-Hodgkin Lymphoma 6 198175 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 7 198176 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 7 198177 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 7 198178 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 7 198179 -NCIT:C123394 Childhood Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 6 198180 -NCIT:C141217 St. Jude Childhood Non-Hodgkin Lymphoma by AJCC v8 Stage 6 198181 -NCIT:C141218 St. Jude Stage I Childhood Non-Hodgkin Lymphoma AJCC v8 7 198182 -NCIT:C141219 St. Jude Stage II Childhood Non-Hodgkin Lymphoma AJCC v8 7 198183 -NCIT:C141220 St. Jude Stage III Childhood Non-Hodgkin Lymphoma AJCC v8 7 198184 -NCIT:C141221 St. Jude Stage IV Childhood Non-Hodgkin Lymphoma AJCC v8 7 198185 -NCIT:C141236 Childhood Non-Hodgkin Lymphoma by Ann Arbor Stage 6 198186 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 7 198187 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 198188 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 198189 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 198190 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 198191 -NCIT:C94791 Ann Arbor Stage I Childhood Non-Hodgkin Lymphoma 7 198192 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 198193 -NCIT:C9056 Ann Arbor Stage I Childhood Lymphoblastic Lymphoma 8 198194 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 8 198195 -NCIT:C94792 Ann Arbor Stage II Childhood Non-Hodgkin Lymphoma 7 198196 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 198197 -NCIT:C9057 Ann Arbor Stage II Childhood Lymphoblastic Lymphoma 8 198198 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 8 198199 -NCIT:C94793 Ann Arbor Stage III Childhood Non-Hodgkin Lymphoma 7 198200 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 198201 -NCIT:C9058 Ann Arbor Stage III Childhood Lymphoblastic Lymphoma 8 198202 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 8 198203 -NCIT:C94794 Ann Arbor Stage IV Childhood Non-Hodgkin Lymphoma 7 198204 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 198205 -NCIT:C9059 Ann Arbor Stage IV Childhood Lymphoblastic Lymphoma 8 198206 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 8 198207 -NCIT:C188458 Childhood Large B-Cell Lymphoma with IRF4 Rearrangement 6 198208 -NCIT:C5637 Childhood Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 6 198209 -NCIT:C188459 Childhood Peripheral T-Cell Lymphoma, Not Otherwise Specified 7 198210 -NCIT:C5636 Childhood Anaplastic Large Cell Lymphoma 7 198211 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 8 198212 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 8 198213 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 198214 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 198215 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 198216 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 198217 -NCIT:C188460 Childhood Anaplastic Large Cell Lymphoma, ALK-Positive 8 198218 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 8 198219 -NCIT:C9471 Childhood Systemic Anaplastic Large Cell Lymphoma 8 198220 -NCIT:C68692 Childhood Nasal Type Extranodal NK/T-Cell Lymphoma 7 198221 -NCIT:C80374 Systemic EBV-Positive T-Cell Lymphoma of Childhood 7 198222 -NCIT:C7616 Childhood Diffuse Large B-Cell Lymphoma 6 198223 -NCIT:C115204 Childhood Grade III Lymphomatoid Granulomatosis 7 198224 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 8 198225 -NCIT:C188455 Childhood Primary Mediastinal (Thymic) Large B-Cell Lymphoma 7 198226 -NCIT:C188456 Childhood EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 7 198227 -NCIT:C9079 Childhood Immunoblastic Lymphoma 7 198228 -NCIT:C80299 Pediatric Nodal Marginal Zone Lymphoma 6 198229 -NCIT:C9095 Childhood Burkitt Lymphoma 6 198230 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 7 198231 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 7 198232 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 7 198233 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 7 198234 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 7 198235 -NCIT:C9124 Childhood Lymphoblastic Lymphoma 6 198236 -NCIT:C7209 Childhood B Lymphoblastic Lymphoma 7 198237 -NCIT:C7210 Childhood T Lymphoblastic Lymphoma 7 198238 -NCIT:C9056 Ann Arbor Stage I Childhood Lymphoblastic Lymphoma 7 198239 -NCIT:C9057 Ann Arbor Stage II Childhood Lymphoblastic Lymphoma 7 198240 -NCIT:C9058 Ann Arbor Stage III Childhood Lymphoblastic Lymphoma 7 198241 -NCIT:C9059 Ann Arbor Stage IV Childhood Lymphoblastic Lymphoma 7 198242 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 7 198243 -NCIT:C7714 Childhood Hodgkin Lymphoma 5 198244 -NCIT:C114806 Childhood Favorable Prognosis Hodgkin Lymphoma 6 198245 -NCIT:C114808 Childhood Unfavorable Prognosis Hodgkin Lymphoma 6 198246 -NCIT:C115458 Refractory Childhood Hodgkin Lymphoma 6 198247 -NCIT:C141178 Lugano Classification Childhood Hodgkin Lymphoma by AJCC v8 Stage 6 198248 -NCIT:C141179 Lugano Classification Limited Stage Childhood Hodgkin Lymphoma AJCC v8 7 198249 -NCIT:C141180 Lugano Classification Stage I Childhood Hodgkin Lymphoma AJCC v8 8 198250 -NCIT:C141181 Lugano Classification Stage IE Childhood Hodgkin Lymphoma AJCC v8 8 198251 -NCIT:C141182 Lugano Classification Stage II Childhood Hodgkin Lymphoma AJCC v8 8 198252 -NCIT:C141184 Lugano Classification Stage II Bulky Childhood Hodgkin Lymphoma AJCC v8 9 198253 -NCIT:C141183 Lugano Classification Stage IIE Childhood Hodgkin Lymphoma AJCC v8 8 198254 -NCIT:C141185 Lugano Classification Advanced Stage Childhood Hodgkin Lymphoma AJCC v8 7 198255 -NCIT:C141186 Lugano Classification Stage III Childhood Hodgkin Lymphoma AJCC v8 8 198256 -NCIT:C141187 Lugano Classification Stage IV Childhood Hodgkin Lymphoma AJCC v8 8 198257 -NCIT:C141227 Childhood Hodgkin Lymphoma by Ann Arbor Stage 6 198258 -NCIT:C8055 Ann Arbor Stage II Childhood Hodgkin Lymphoma 7 198259 -NCIT:C8056 Ann Arbor Stage I Childhood Hodgkin Lymphoma 7 198260 -NCIT:C8057 Ann Arbor Stage III Childhood Hodgkin Lymphoma 7 198261 -NCIT:C8058 Ann Arbor Stage IV Childhood Hodgkin Lymphoma 7 198262 -NCIT:C69142 Childhood Classic Hodgkin Lymphoma 6 198263 -NCIT:C7054 Childhood Lymphocyte-Rich Classic Hodgkin Lymphoma 7 198264 -NCIT:C8061 Childhood Lymphocyte-Depleted Classic Hodgkin Lymphoma 7 198265 -NCIT:C8062 Childhood Nodular Sclerosis Classic Hodgkin Lymphoma 7 198266 -NCIT:C8063 Childhood Mixed Cellularity Classic Hodgkin Lymphoma 7 198267 -NCIT:C8059 Recurrent Childhood Hodgkin Lymphoma 6 198268 -NCIT:C8060 Childhood Nodular Lymphocyte Predominant Hodgkin Lymphoma 6 198269 -NCIT:C5640 Childhood T Lymphoblastic Leukemia/Lymphoma 4 198270 -NCIT:C7210 Childhood T Lymphoblastic Lymphoma 5 198271 -NCIT:C7953 Childhood T Acute Lymphoblastic Leukemia 5 198272 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 6 198273 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 6 198274 -NCIT:C6541 Childhood Malignant Germ Cell Tumor 4 198275 -NCIT:C123737 Refractory Childhood Malignant Germ Cell Tumor 5 198276 -NCIT:C123840 Childhood Seminoma 5 198277 -NCIT:C123844 Childhood Choriocarcinoma 5 198278 -NCIT:C6206 Childhood Central Nervous System Choriocarcinoma 6 198279 -NCIT:C6544 Childhood Testicular Choriocarcinoma 6 198280 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 6 198281 -NCIT:C123847 Childhood Embryonal Carcinoma 5 198282 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 6 198283 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 6 198284 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 6 198285 -NCIT:C123848 Childhood Mixed Germ Cell Tumor 5 198286 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 6 198287 -NCIT:C27403 Childhood Central Nervous System Mixed Germ Cell Tumor 6 198288 -NCIT:C6542 Childhood Testicular Mixed Germ Cell Tumor 6 198289 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 7 198290 -NCIT:C27364 Childhood Yolk Sac Tumor 5 198291 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 6 198292 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 6 198293 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 6 198294 -NCIT:C68628 Childhood Malignant Testicular Germ Cell Tumor 5 198295 -NCIT:C6542 Childhood Testicular Mixed Germ Cell Tumor 6 198296 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 7 198297 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 6 198298 -NCIT:C6544 Childhood Testicular Choriocarcinoma 6 198299 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 6 198300 -NCIT:C68629 Childhood Malignant Ovarian Germ Cell Tumor 5 198301 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 6 198302 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 6 198303 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 6 198304 -NCIT:C6550 Childhood Ovarian Dysgerminoma 6 198305 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 6 198306 -NCIT:C68632 Childhood Extragonadal Malignant Germ Cell Tumor 5 198307 -NCIT:C27403 Childhood Central Nervous System Mixed Germ Cell Tumor 6 198308 -NCIT:C27406 Childhood Central Nervous System Germinoma 6 198309 -NCIT:C6207 Childhood Brain Germinoma 7 198310 -NCIT:C6206 Childhood Central Nervous System Choriocarcinoma 6 198311 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 6 198312 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 6 198313 -NCIT:C9221 Recurrent Childhood Malignant Germ Cell Tumor 5 198314 -NCIT:C6586 Extrarenal Rhabdoid Tumor 4 198315 -NCIT:C161608 Extrarenal Rhabdoid Tumor of the Prostate 5 198316 -NCIT:C171169 Extrarenal Rhabdoid Tumor of the Ovary 5 198317 -NCIT:C171170 Recurrent Extrarenal Rhabdoid Tumor of the Ovary 6 198318 -NCIT:C171171 Refractory Extrarenal Rhabdoid Tumor of the Ovary 6 198319 -NCIT:C188881 Recurrent Extrarenal Rhabdoid Tumor 5 198320 -NCIT:C171170 Recurrent Extrarenal Rhabdoid Tumor of the Ovary 6 198321 -NCIT:C188884 Refractory Extrarenal Rhabdoid Tumor 5 198322 -NCIT:C171171 Refractory Extrarenal Rhabdoid Tumor of the Ovary 6 198323 -NCIT:C188886 Unresectable Extrarenal Rhabdoid Tumor 5 198324 -NCIT:C96847 Extrarenal Rhabdoid Tumor of the Liver 5 198325 -NCIT:C68744 Childhood Myelodysplastic Syndrome 4 198326 -NCIT:C188449 Childhood Myelodysplastic Syndrome with Excess Blasts 5 198327 -NCIT:C82596 Refractory Cytopenia of Childhood 5 198328 -NCIT:C80373 EBV-Positive T-Cell Lymphoproliferative Disorder of Childhood 4 198329 -NCIT:C45327 Hydroa Vacciniforme-Like Lymphoproliferative Disorder 5 198330 -NCIT:C80374 Systemic EBV-Positive T-Cell Lymphoma of Childhood 5 198331 -NCIT:C82339 Transient Abnormal Myelopoiesis Associated with Down Syndrome 4 198332 -NCIT:C7928 Childhood Germ Cell Tumor 3 198333 -NCIT:C123838 Childhood Germinomatous Germ Cell Tumor 4 198334 -NCIT:C123840 Childhood Seminoma 5 198335 -NCIT:C27406 Childhood Central Nervous System Germinoma 5 198336 -NCIT:C6207 Childhood Brain Germinoma 6 198337 -NCIT:C6550 Childhood Ovarian Dysgerminoma 5 198338 -NCIT:C123841 Childhood Nongerminomatous Germ Cell Tumor 4 198339 -NCIT:C123842 Childhood Ovarian Nongerminomatous Germ Cell Tumor 5 198340 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 6 198341 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 6 198342 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 6 198343 -NCIT:C6554 Childhood Ovarian Teratoma 6 198344 -NCIT:C6547 Childhood Ovarian Immature Teratoma 7 198345 -NCIT:C6548 Childhood Ovarian Mature Teratoma 7 198346 -NCIT:C123843 Childhood Testicular Non-Seminomatous Germ Cell Tumor 5 198347 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 6 198348 -NCIT:C6540 Childhood Testicular Teratoma 6 198349 -NCIT:C123835 Childhood Testicular Immature Teratoma 7 198350 -NCIT:C123837 Childhood Testicular Mature Teratoma 7 198351 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 6 198352 -NCIT:C6544 Childhood Testicular Choriocarcinoma 6 198353 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 6 198354 -NCIT:C123844 Childhood Choriocarcinoma 5 198355 -NCIT:C6206 Childhood Central Nervous System Choriocarcinoma 6 198356 -NCIT:C6544 Childhood Testicular Choriocarcinoma 6 198357 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 6 198358 -NCIT:C123847 Childhood Embryonal Carcinoma 5 198359 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 6 198360 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 6 198361 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 6 198362 -NCIT:C27364 Childhood Yolk Sac Tumor 5 198363 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 6 198364 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 6 198365 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 6 198366 -NCIT:C68626 Childhood Teratoma 5 198367 -NCIT:C123834 Childhood Immature Teratoma 6 198368 -NCIT:C123835 Childhood Testicular Immature Teratoma 7 198369 -NCIT:C27405 Childhood Central Nervous System Immature Teratoma 7 198370 -NCIT:C6547 Childhood Ovarian Immature Teratoma 7 198371 -NCIT:C123836 Childhood Mature Teratoma 6 198372 -NCIT:C123837 Childhood Testicular Mature Teratoma 7 198373 -NCIT:C27404 Childhood Central Nervous System Mature Teratoma 7 198374 -NCIT:C6548 Childhood Ovarian Mature Teratoma 7 198375 -NCIT:C189046 Childhood Extragonadal Teratoma 6 198376 -NCIT:C6204 Childhood Central Nervous System Teratoma 7 198377 -NCIT:C27404 Childhood Central Nervous System Mature Teratoma 8 198378 -NCIT:C27405 Childhood Central Nervous System Immature Teratoma 8 198379 -NCIT:C6540 Childhood Testicular Teratoma 6 198380 -NCIT:C123835 Childhood Testicular Immature Teratoma 7 198381 -NCIT:C123837 Childhood Testicular Mature Teratoma 7 198382 -NCIT:C6554 Childhood Ovarian Teratoma 6 198383 -NCIT:C6547 Childhood Ovarian Immature Teratoma 7 198384 -NCIT:C6548 Childhood Ovarian Mature Teratoma 7 198385 -NCIT:C6205 Childhood Central Nervous System Germ Cell Tumor 4 198386 -NCIT:C27403 Childhood Central Nervous System Mixed Germ Cell Tumor 5 198387 -NCIT:C27406 Childhood Central Nervous System Germinoma 5 198388 -NCIT:C6207 Childhood Brain Germinoma 6 198389 -NCIT:C5795 Childhood Brain Germ Cell Tumor 5 198390 -NCIT:C6207 Childhood Brain Germinoma 6 198391 -NCIT:C6204 Childhood Central Nervous System Teratoma 5 198392 -NCIT:C27404 Childhood Central Nervous System Mature Teratoma 6 198393 -NCIT:C27405 Childhood Central Nervous System Immature Teratoma 6 198394 -NCIT:C6206 Childhood Central Nervous System Choriocarcinoma 5 198395 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 5 198396 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 5 198397 -NCIT:C6541 Childhood Malignant Germ Cell Tumor 4 198398 -NCIT:C123737 Refractory Childhood Malignant Germ Cell Tumor 5 198399 -NCIT:C123840 Childhood Seminoma 5 198400 -NCIT:C123844 Childhood Choriocarcinoma 5 198401 -NCIT:C6206 Childhood Central Nervous System Choriocarcinoma 6 198402 -NCIT:C6544 Childhood Testicular Choriocarcinoma 6 198403 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 6 198404 -NCIT:C123847 Childhood Embryonal Carcinoma 5 198405 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 6 198406 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 6 198407 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 6 198408 -NCIT:C123848 Childhood Mixed Germ Cell Tumor 5 198409 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 6 198410 -NCIT:C27403 Childhood Central Nervous System Mixed Germ Cell Tumor 6 198411 -NCIT:C6542 Childhood Testicular Mixed Germ Cell Tumor 6 198412 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 7 198413 -NCIT:C27364 Childhood Yolk Sac Tumor 5 198414 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 6 198415 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 6 198416 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 6 198417 -NCIT:C68628 Childhood Malignant Testicular Germ Cell Tumor 5 198418 -NCIT:C6542 Childhood Testicular Mixed Germ Cell Tumor 6 198419 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 7 198420 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 6 198421 -NCIT:C6544 Childhood Testicular Choriocarcinoma 6 198422 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 6 198423 -NCIT:C68629 Childhood Malignant Ovarian Germ Cell Tumor 5 198424 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 6 198425 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 6 198426 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 6 198427 -NCIT:C6550 Childhood Ovarian Dysgerminoma 6 198428 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 6 198429 -NCIT:C68632 Childhood Extragonadal Malignant Germ Cell Tumor 5 198430 -NCIT:C27403 Childhood Central Nervous System Mixed Germ Cell Tumor 6 198431 -NCIT:C27406 Childhood Central Nervous System Germinoma 6 198432 -NCIT:C6207 Childhood Brain Germinoma 7 198433 -NCIT:C6206 Childhood Central Nervous System Choriocarcinoma 6 198434 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 6 198435 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 6 198436 -NCIT:C9221 Recurrent Childhood Malignant Germ Cell Tumor 5 198437 -NCIT:C6553 Childhood Benign Germ Cell Tumor 4 198438 -NCIT:C123836 Childhood Mature Teratoma 5 198439 -NCIT:C123837 Childhood Testicular Mature Teratoma 6 198440 -NCIT:C27404 Childhood Central Nervous System Mature Teratoma 6 198441 -NCIT:C6548 Childhood Ovarian Mature Teratoma 6 198442 -NCIT:C68627 Childhood Extracranial Germ Cell Tumor 4 198443 -NCIT:C114801 Childhood Gonadal Germ Cell Tumor 5 198444 -NCIT:C6552 Childhood Testicular Germ Cell Tumor 6 198445 -NCIT:C123843 Childhood Testicular Non-Seminomatous Germ Cell Tumor 7 198446 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 8 198447 -NCIT:C6540 Childhood Testicular Teratoma 8 198448 -NCIT:C123835 Childhood Testicular Immature Teratoma 9 198449 -NCIT:C123837 Childhood Testicular Mature Teratoma 9 198450 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 8 198451 -NCIT:C6544 Childhood Testicular Choriocarcinoma 8 198452 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 8 198453 -NCIT:C68628 Childhood Malignant Testicular Germ Cell Tumor 7 198454 -NCIT:C6542 Childhood Testicular Mixed Germ Cell Tumor 8 198455 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 9 198456 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 8 198457 -NCIT:C6544 Childhood Testicular Choriocarcinoma 8 198458 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 8 198459 -NCIT:C8588 Childhood Ovarian Germ Cell Tumor 6 198460 -NCIT:C123842 Childhood Ovarian Nongerminomatous Germ Cell Tumor 7 198461 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 8 198462 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 8 198463 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 8 198464 -NCIT:C6554 Childhood Ovarian Teratoma 8 198465 -NCIT:C6547 Childhood Ovarian Immature Teratoma 9 198466 -NCIT:C6548 Childhood Ovarian Mature Teratoma 9 198467 -NCIT:C68629 Childhood Malignant Ovarian Germ Cell Tumor 7 198468 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 8 198469 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 8 198470 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 8 198471 -NCIT:C6550 Childhood Ovarian Dysgerminoma 8 198472 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 8 198473 -NCIT:C9107 Childhood Solid Neoplasm 3 198474 -NCIT:C148029 Childhood Malignant Solid Neoplasm 4 198475 -NCIT:C148026 Recurrent Childhood Malignant Solid Neoplasm 5 198476 -NCIT:C148027 Refractory Childhood Malignant Solid Neoplasm 5 198477 -NCIT:C187210 Advanced Childhood Malignant Solid Neoplasm 5 198478 -NCIT:C9431 Childhood Hematopoietic and Lymphoid Cell Neoplasm 3 198479 -NCIT:C114483 Childhood Langerhans Cell Histiocytosis 4 198480 -NCIT:C123395 Childhood Langerhans Cell Histiocytosis with Risk Organ Involvement 5 198481 -NCIT:C123396 Childhood Langerhans Cell Histiocytosis without Risk Organ Involvement 5 198482 -NCIT:C188453 Childhood B Lymphoblastic Leukemia/Lymphoma 4 198483 -NCIT:C7209 Childhood B Lymphoblastic Lymphoma 5 198484 -NCIT:C9140 Childhood B Acute Lymphoblastic Leukemia 5 198485 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 6 198486 -NCIT:C43223 Myeloid Leukemia Associated with Down Syndrome 4 198487 -NCIT:C4989 Childhood Leukemia 4 198488 -NCIT:C122603 Infant Leukemia 5 198489 -NCIT:C122614 Infant Acute Lymphoblastic Leukemia 6 198490 -NCIT:C122617 Infant Acute Lymphoblastic Leukemia with MLL Rearrangement 7 198491 -NCIT:C122621 Infant Acute Lymphoblastic Leukemia without MLL Gene Rearrangement 7 198492 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 7 198493 -NCIT:C122690 Acute Myeloid Leukemia with t(7;12)(q36;p13); HLXB9-ETV6 6 198494 -NCIT:C126110 Infant Acute Undifferentiated Leukemia 6 198495 -NCIT:C126111 Infant Acute Biphenotypic Leukemia 6 198496 -NCIT:C3845 Neonatal Leukemia 6 198497 -NCIT:C187056 Childhood Acute Leukemia 5 198498 -NCIT:C126110 Infant Acute Undifferentiated Leukemia 6 198499 -NCIT:C126111 Infant Acute Biphenotypic Leukemia 6 198500 -NCIT:C3168 Childhood Acute Lymphoblastic Leukemia 6 198501 -NCIT:C122614 Infant Acute Lymphoblastic Leukemia 7 198502 -NCIT:C122617 Infant Acute Lymphoblastic Leukemia with MLL Rearrangement 8 198503 -NCIT:C122621 Infant Acute Lymphoblastic Leukemia without MLL Gene Rearrangement 8 198504 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 8 198505 -NCIT:C122624 Refractory Childhood Acute Lymphoblastic Leukemia 7 198506 -NCIT:C7784 Recurrent Childhood Acute Lymphoblastic Leukemia 7 198507 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 198508 -NCIT:C7953 Childhood T Acute Lymphoblastic Leukemia 7 198509 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 8 198510 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 198511 -NCIT:C9140 Childhood B Acute Lymphoblastic Leukemia 7 198512 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 198513 -NCIT:C7952 Childhood Burkitt Leukemia 6 198514 -NCIT:C9160 Childhood Acute Myeloid Leukemia 6 198515 -NCIT:C122625 Childhood Acute Myeloid Leukemia Not Otherwise Specified 7 198516 -NCIT:C7940 Childhood Acute Monoblastic and Monocytic Leukemia 8 198517 -NCIT:C9162 Childhood Acute Monoblastic Leukemia 9 198518 -NCIT:C9163 Childhood Acute Monocytic Leukemia 9 198519 -NCIT:C7970 Childhood Acute Myelomonocytic Leukemia 8 198520 -NCIT:C7971 Childhood Acute Basophilic Leukemia 8 198521 -NCIT:C7972 Childhood Acute Megakaryoblastic Leukemia 8 198522 -NCIT:C8304 Childhood Acute Myeloid Leukemia with Minimal Differentiation 8 198523 -NCIT:C9158 Childhood Acute Myeloid Leukemia without Maturation 8 198524 -NCIT:C9164 Childhood Acute Erythroid Leukemia 8 198525 -NCIT:C9381 Childhood Acute Myeloid Leukemia with Maturation 8 198526 -NCIT:C122690 Acute Myeloid Leukemia with t(7;12)(q36;p13); HLXB9-ETV6 7 198527 -NCIT:C122691 Childhood Acute Myeloid Leukemia with NUP98 Rearrangement 7 198528 -NCIT:C131502 Acute Myeloid Leukemia with t(5;11)(q35;p15); NUP98-NSD1 8 198529 -NCIT:C131504 Acute Myeloid Leukemia with t(11;15)(p15;q35); NUP98-JARID1A 8 198530 -NCIT:C132111 Acute Megakaryoblastic Leukemia with NUP98-KDM5A 8 198531 -NCIT:C122725 Childhood Acute Myeloid Leukemia with Abnormalities of Chromosome 5q 7 198532 -NCIT:C122726 Childhood Acute Myeloid Leukemia with Abnormalities of Chromosome 7 7 198533 -NCIT:C132101 Acute Myeloid Leukemia with t(10;11)(p12;q23); MLLT10-MLL 7 198534 -NCIT:C132105 Acute Myeloid Leukemia with t(6;11)(q27;q23); MLLT4-MLL 7 198535 -NCIT:C132109 Acute Megakaryoblastic Leukemia with CBFA2T3-GLIS2 7 198536 -NCIT:C167089 Acute Myeloid Leukemia with RAM Immunophenotype 7 198537 -NCIT:C187449 Refractory Childhood Acute Myeloid Leukemia 7 198538 -NCIT:C188450 Childhood Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 7 198539 -NCIT:C188451 Childhood Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 7 198540 -NCIT:C7968 Childhood Acute Promyelocytic Leukemia with PML-RARA 7 198541 -NCIT:C82431 Acute Myeloid Leukemia with NPM1 Mutation 7 198542 -NCIT:C82433 Acute Myeloid Leukemia with CEBPA Mutation 7 198543 -NCIT:C129782 Acute Myeloid Leukemia with Biallelic Mutations of CEBPA 8 198544 -NCIT:C129783 Acute Myeloid Leukemia with Monoallelic Mutations of CEBPA 8 198545 -NCIT:C9068 Recurrent Childhood Acute Myeloid Leukemia 7 198546 -NCIT:C7320 Childhood Chronic Myelogenous Leukemia, BCR-ABL1 Positive 5 198547 -NCIT:C5165 Childhood Lymphoma 4 198548 -NCIT:C141202 Childhood Lymphoma by AJCC v8 Stage 5 198549 -NCIT:C141178 Lugano Classification Childhood Hodgkin Lymphoma by AJCC v8 Stage 6 198550 -NCIT:C141179 Lugano Classification Limited Stage Childhood Hodgkin Lymphoma AJCC v8 7 198551 -NCIT:C141180 Lugano Classification Stage I Childhood Hodgkin Lymphoma AJCC v8 8 198552 -NCIT:C141181 Lugano Classification Stage IE Childhood Hodgkin Lymphoma AJCC v8 8 198553 -NCIT:C141182 Lugano Classification Stage II Childhood Hodgkin Lymphoma AJCC v8 8 198554 -NCIT:C141184 Lugano Classification Stage II Bulky Childhood Hodgkin Lymphoma AJCC v8 9 198555 -NCIT:C141183 Lugano Classification Stage IIE Childhood Hodgkin Lymphoma AJCC v8 8 198556 -NCIT:C141185 Lugano Classification Advanced Stage Childhood Hodgkin Lymphoma AJCC v8 7 198557 -NCIT:C141186 Lugano Classification Stage III Childhood Hodgkin Lymphoma AJCC v8 8 198558 -NCIT:C141187 Lugano Classification Stage IV Childhood Hodgkin Lymphoma AJCC v8 8 198559 -NCIT:C141217 St. Jude Childhood Non-Hodgkin Lymphoma by AJCC v8 Stage 6 198560 -NCIT:C141218 St. Jude Stage I Childhood Non-Hodgkin Lymphoma AJCC v8 7 198561 -NCIT:C141219 St. Jude Stage II Childhood Non-Hodgkin Lymphoma AJCC v8 7 198562 -NCIT:C141220 St. Jude Stage III Childhood Non-Hodgkin Lymphoma AJCC v8 7 198563 -NCIT:C141221 St. Jude Stage IV Childhood Non-Hodgkin Lymphoma AJCC v8 7 198564 -NCIT:C187196 Recurrent Childhood Lymphoma 5 198565 -NCIT:C115369 Recurrent Childhood Non-Hodgkin Lymphoma 6 198566 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 7 198567 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 7 198568 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 7 198569 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 7 198570 -NCIT:C8059 Recurrent Childhood Hodgkin Lymphoma 6 198571 -NCIT:C187197 Refractory Childhood Lymphoma 5 198572 -NCIT:C115458 Refractory Childhood Hodgkin Lymphoma 6 198573 -NCIT:C7706 Childhood Non-Hodgkin Lymphoma 5 198574 -NCIT:C115369 Recurrent Childhood Non-Hodgkin Lymphoma 6 198575 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 7 198576 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 7 198577 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 7 198578 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 7 198579 -NCIT:C123394 Childhood Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 6 198580 -NCIT:C141217 St. Jude Childhood Non-Hodgkin Lymphoma by AJCC v8 Stage 6 198581 -NCIT:C141218 St. Jude Stage I Childhood Non-Hodgkin Lymphoma AJCC v8 7 198582 -NCIT:C141219 St. Jude Stage II Childhood Non-Hodgkin Lymphoma AJCC v8 7 198583 -NCIT:C141220 St. Jude Stage III Childhood Non-Hodgkin Lymphoma AJCC v8 7 198584 -NCIT:C141221 St. Jude Stage IV Childhood Non-Hodgkin Lymphoma AJCC v8 7 198585 -NCIT:C141236 Childhood Non-Hodgkin Lymphoma by Ann Arbor Stage 6 198586 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 7 198587 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 198588 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 198589 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 198590 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 198591 -NCIT:C94791 Ann Arbor Stage I Childhood Non-Hodgkin Lymphoma 7 198592 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 198593 -NCIT:C9056 Ann Arbor Stage I Childhood Lymphoblastic Lymphoma 8 198594 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 8 198595 -NCIT:C94792 Ann Arbor Stage II Childhood Non-Hodgkin Lymphoma 7 198596 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 198597 -NCIT:C9057 Ann Arbor Stage II Childhood Lymphoblastic Lymphoma 8 198598 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 8 198599 -NCIT:C94793 Ann Arbor Stage III Childhood Non-Hodgkin Lymphoma 7 198600 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 198601 -NCIT:C9058 Ann Arbor Stage III Childhood Lymphoblastic Lymphoma 8 198602 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 8 198603 -NCIT:C94794 Ann Arbor Stage IV Childhood Non-Hodgkin Lymphoma 7 198604 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 198605 -NCIT:C9059 Ann Arbor Stage IV Childhood Lymphoblastic Lymphoma 8 198606 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 8 198607 -NCIT:C188458 Childhood Large B-Cell Lymphoma with IRF4 Rearrangement 6 198608 -NCIT:C5637 Childhood Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 6 198609 -NCIT:C188459 Childhood Peripheral T-Cell Lymphoma, Not Otherwise Specified 7 198610 -NCIT:C5636 Childhood Anaplastic Large Cell Lymphoma 7 198611 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 8 198612 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 8 198613 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 198614 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 198615 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 198616 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 198617 -NCIT:C188460 Childhood Anaplastic Large Cell Lymphoma, ALK-Positive 8 198618 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 8 198619 -NCIT:C9471 Childhood Systemic Anaplastic Large Cell Lymphoma 8 198620 -NCIT:C68692 Childhood Nasal Type Extranodal NK/T-Cell Lymphoma 7 198621 -NCIT:C80374 Systemic EBV-Positive T-Cell Lymphoma of Childhood 7 198622 -NCIT:C7616 Childhood Diffuse Large B-Cell Lymphoma 6 198623 -NCIT:C115204 Childhood Grade III Lymphomatoid Granulomatosis 7 198624 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 8 198625 -NCIT:C188455 Childhood Primary Mediastinal (Thymic) Large B-Cell Lymphoma 7 198626 -NCIT:C188456 Childhood EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 7 198627 -NCIT:C9079 Childhood Immunoblastic Lymphoma 7 198628 -NCIT:C80299 Pediatric Nodal Marginal Zone Lymphoma 6 198629 -NCIT:C9095 Childhood Burkitt Lymphoma 6 198630 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 7 198631 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 7 198632 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 7 198633 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 7 198634 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 7 198635 -NCIT:C9124 Childhood Lymphoblastic Lymphoma 6 198636 -NCIT:C7209 Childhood B Lymphoblastic Lymphoma 7 198637 -NCIT:C7210 Childhood T Lymphoblastic Lymphoma 7 198638 -NCIT:C9056 Ann Arbor Stage I Childhood Lymphoblastic Lymphoma 7 198639 -NCIT:C9057 Ann Arbor Stage II Childhood Lymphoblastic Lymphoma 7 198640 -NCIT:C9058 Ann Arbor Stage III Childhood Lymphoblastic Lymphoma 7 198641 -NCIT:C9059 Ann Arbor Stage IV Childhood Lymphoblastic Lymphoma 7 198642 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 7 198643 -NCIT:C7714 Childhood Hodgkin Lymphoma 5 198644 -NCIT:C114806 Childhood Favorable Prognosis Hodgkin Lymphoma 6 198645 -NCIT:C114808 Childhood Unfavorable Prognosis Hodgkin Lymphoma 6 198646 -NCIT:C115458 Refractory Childhood Hodgkin Lymphoma 6 198647 -NCIT:C141178 Lugano Classification Childhood Hodgkin Lymphoma by AJCC v8 Stage 6 198648 -NCIT:C141179 Lugano Classification Limited Stage Childhood Hodgkin Lymphoma AJCC v8 7 198649 -NCIT:C141180 Lugano Classification Stage I Childhood Hodgkin Lymphoma AJCC v8 8 198650 -NCIT:C141181 Lugano Classification Stage IE Childhood Hodgkin Lymphoma AJCC v8 8 198651 -NCIT:C141182 Lugano Classification Stage II Childhood Hodgkin Lymphoma AJCC v8 8 198652 -NCIT:C141184 Lugano Classification Stage II Bulky Childhood Hodgkin Lymphoma AJCC v8 9 198653 -NCIT:C141183 Lugano Classification Stage IIE Childhood Hodgkin Lymphoma AJCC v8 8 198654 -NCIT:C141185 Lugano Classification Advanced Stage Childhood Hodgkin Lymphoma AJCC v8 7 198655 -NCIT:C141186 Lugano Classification Stage III Childhood Hodgkin Lymphoma AJCC v8 8 198656 -NCIT:C141187 Lugano Classification Stage IV Childhood Hodgkin Lymphoma AJCC v8 8 198657 -NCIT:C141227 Childhood Hodgkin Lymphoma by Ann Arbor Stage 6 198658 -NCIT:C8055 Ann Arbor Stage II Childhood Hodgkin Lymphoma 7 198659 -NCIT:C8056 Ann Arbor Stage I Childhood Hodgkin Lymphoma 7 198660 -NCIT:C8057 Ann Arbor Stage III Childhood Hodgkin Lymphoma 7 198661 -NCIT:C8058 Ann Arbor Stage IV Childhood Hodgkin Lymphoma 7 198662 -NCIT:C69142 Childhood Classic Hodgkin Lymphoma 6 198663 -NCIT:C7054 Childhood Lymphocyte-Rich Classic Hodgkin Lymphoma 7 198664 -NCIT:C8061 Childhood Lymphocyte-Depleted Classic Hodgkin Lymphoma 7 198665 -NCIT:C8062 Childhood Nodular Sclerosis Classic Hodgkin Lymphoma 7 198666 -NCIT:C8063 Childhood Mixed Cellularity Classic Hodgkin Lymphoma 7 198667 -NCIT:C8059 Recurrent Childhood Hodgkin Lymphoma 6 198668 -NCIT:C8060 Childhood Nodular Lymphocyte Predominant Hodgkin Lymphoma 6 198669 -NCIT:C5640 Childhood T Lymphoblastic Leukemia/Lymphoma 4 198670 -NCIT:C7210 Childhood T Lymphoblastic Lymphoma 5 198671 -NCIT:C7953 Childhood T Acute Lymphoblastic Leukemia 5 198672 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 6 198673 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 6 198674 -NCIT:C68744 Childhood Myelodysplastic Syndrome 4 198675 -NCIT:C188449 Childhood Myelodysplastic Syndrome with Excess Blasts 5 198676 -NCIT:C82596 Refractory Cytopenia of Childhood 5 198677 -NCIT:C80373 EBV-Positive T-Cell Lymphoproliferative Disorder of Childhood 4 198678 -NCIT:C45327 Hydroa Vacciniforme-Like Lymphoproliferative Disorder 5 198679 -NCIT:C80374 Systemic EBV-Positive T-Cell Lymphoma of Childhood 5 198680 -NCIT:C82339 Transient Abnormal Myelopoiesis Associated with Down Syndrome 4 198681 -NCIT:C65157 Neoplasm, Uncertain Whether Benign or Malignant 2 198682 -NCIT:C6784 Cystic Neoplasm 2 198683 -NCIT:C2964 Craniopharyngioma 3 198684 -NCIT:C148076 Unresectable Craniopharyngioma 4 198685 -NCIT:C148077 Recurrent Craniopharyngioma 4 198686 -NCIT:C162612 Recurrent Adamantinomatous Craniopharyngioma 5 198687 -NCIT:C4010 Adult Craniopharyngioma 4 198688 -NCIT:C188949 Adult Adamantinomatous Craniopharyngioma 5 198689 -NCIT:C4725 Papillary Craniopharyngioma 4 198690 -NCIT:C4726 Adamantinomatous Craniopharyngioma 4 198691 -NCIT:C162612 Recurrent Adamantinomatous Craniopharyngioma 5 198692 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 5 198693 -NCIT:C188949 Adult Adamantinomatous Craniopharyngioma 5 198694 -NCIT:C7816 Childhood Craniopharyngioma 4 198695 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 5 198696 -NCIT:C2971 Cystadenocarcinoma 3 198697 -NCIT:C3776 Mucinous Cystadenocarcinoma 4 198698 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 5 198699 -NCIT:C40354 Breast Mucinous Cystadenocarcinoma 5 198700 -NCIT:C41246 Pancreatic Mucinous-Cystic Neoplasm with an Associated Invasive Carcinoma 5 198701 -NCIT:C5511 Appendix Mucinous Cystadenocarcinoma 5 198702 -NCIT:C65204 Papillary Mucinous Cystadenocarcinoma 5 198703 -NCIT:C3777 Papillary Cystadenocarcinoma 4 198704 -NCIT:C65204 Papillary Mucinous Cystadenocarcinoma 5 198705 -NCIT:C8377 Papillary Serous Cystadenocarcinoma 5 198706 -NCIT:C3778 Serous Cystadenocarcinoma 4 198707 -NCIT:C5724 Pancreatic Serous Cystadenocarcinoma 5 198708 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 5 198709 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 6 198710 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 7 198711 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 7 198712 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 6 198713 -NCIT:C8377 Papillary Serous Cystadenocarcinoma 5 198714 -NCIT:C3874 Pancreatic Cystadenocarcinoma 4 198715 -NCIT:C153620 Recurrent Pancreatic Cystadenocarcinoma 5 198716 -NCIT:C5724 Pancreatic Serous Cystadenocarcinoma 5 198717 -NCIT:C5727 Pancreatic Acinar Cell Cystadenocarcinoma 5 198718 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 6 198719 -NCIT:C5228 Ovarian Cystadenocarcinoma 4 198720 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 5 198721 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 6 198722 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 5 198723 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 5 198724 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 6 198725 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 7 198726 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 7 198727 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 6 198728 -NCIT:C7980 Ovarian Clear Cell Cystadenocarcinoma 5 198729 -NCIT:C5980 Salivary Gland Cystadenocarcinoma 4 198730 -NCIT:C2972 Cystadenoma 3 198731 -NCIT:C161606 Prostate Cystadenoma 4 198732 -NCIT:C162483 Epididymal Cystadenoma 4 198733 -NCIT:C155953 Epididymal Papillary Cystadenoma 5 198734 -NCIT:C2973 Mucinous Cystadenoma 4 198735 -NCIT:C4184 Papillary Mucinous Cystadenoma 5 198736 -NCIT:C4186 Borderline Papillary Mucinous Cystadenoma 6 198737 -NCIT:C4512 Ovarian Mucinous Cystadenoma 5 198738 -NCIT:C45604 Lung Mucinous Cystadenoma 5 198739 -NCIT:C5510 Appendix Mucinous Cystadenoma 5 198740 -NCIT:C2974 Papillary Cystadenoma 4 198741 -NCIT:C155952 Uterine Ligament Papillary Cystadenoma 5 198742 -NCIT:C179921 Broad Ligament Papillary Cystadenoma 6 198743 -NCIT:C40142 Uterine Ligament Papillary Cystadenoma Associated with von Hippel-Lindau Disease 6 198744 -NCIT:C155953 Epididymal Papillary Cystadenoma 5 198745 -NCIT:C4178 Borderline Papillary Cystadenoma 5 198746 -NCIT:C4183 Borderline Papillary Serous Cystadenoma 6 198747 -NCIT:C4186 Borderline Papillary Mucinous Cystadenoma 6 198748 -NCIT:C4180 Papillary Serous Cystadenoma 5 198749 -NCIT:C4183 Borderline Papillary Serous Cystadenoma 6 198750 -NCIT:C7278 Ovarian Papillary Cystadenoma 6 198751 -NCIT:C4184 Papillary Mucinous Cystadenoma 5 198752 -NCIT:C4186 Borderline Papillary Mucinous Cystadenoma 6 198753 -NCIT:C65203 Clear Cell Papillary Cystadenoma 5 198754 -NCIT:C35833 Salivary Gland Cystadenoma 4 198755 -NCIT:C3783 Serous Cystadenoma 4 198756 -NCIT:C126476 Broad Ligament Serous Cystadenoma 5 198757 -NCIT:C4177 Borderline Serous Cystadenoma 5 198758 -NCIT:C4183 Borderline Papillary Serous Cystadenoma 6 198759 -NCIT:C4180 Papillary Serous Cystadenoma 5 198760 -NCIT:C4183 Borderline Papillary Serous Cystadenoma 6 198761 -NCIT:C7278 Ovarian Papillary Cystadenoma 6 198762 -NCIT:C4511 Ovarian Serous Cystadenoma 5 198763 -NCIT:C7278 Ovarian Papillary Cystadenoma 6 198764 -NCIT:C5712 Pancreatic Serous Cystadenoma 5 198765 -NCIT:C95471 Pancreatic Macrocystic Serous Cystadenoma 5 198766 -NCIT:C39907 Seminal Vesicle Cystadenoma 4 198767 -NCIT:C40019 Rete Ovarii Cystadenoma 4 198768 -NCIT:C4060 Ovarian Cystadenoma 4 198769 -NCIT:C126310 Ovarian Seromucinous Cystadenoma 5 198770 -NCIT:C40075 Ovarian Endometrioid Cystadenoma 5 198771 -NCIT:C4511 Ovarian Serous Cystadenoma 5 198772 -NCIT:C7278 Ovarian Papillary Cystadenoma 6 198773 -NCIT:C4512 Ovarian Mucinous Cystadenoma 5 198774 -NCIT:C4374 Pancreatic Cystadenoma 4 198775 -NCIT:C5712 Pancreatic Serous Cystadenoma 5 198776 -NCIT:C95471 Pancreatic Macrocystic Serous Cystadenoma 5 198777 -NCIT:C4711 Borderline Cystadenoma 4 198778 -NCIT:C4177 Borderline Serous Cystadenoma 5 198779 -NCIT:C4183 Borderline Papillary Serous Cystadenoma 6 198780 -NCIT:C4178 Borderline Papillary Cystadenoma 5 198781 -NCIT:C4183 Borderline Papillary Serous Cystadenoma 6 198782 -NCIT:C4186 Borderline Papillary Mucinous Cystadenoma 6 198783 -NCIT:C3516 Aneurysmal Bone Cyst 3 198784 -NCIT:C189029 Childhood Aneurysmal Bone Cyst 4 198785 -NCIT:C3765 Multicystic Mesothelioma 3 198786 -NCIT:C6536 Peritoneal Multicystic Mesothelioma 4 198787 -NCIT:C39756 Unicystic Ameloblastoma 3 198788 -NCIT:C4179 Papillary Cystic Neoplasm 3 198789 -NCIT:C121955 Clear Cell Papillary Renal Tumor 4 198790 -NCIT:C2974 Papillary Cystadenoma 4 198791 -NCIT:C155952 Uterine Ligament Papillary Cystadenoma 5 198792 -NCIT:C179921 Broad Ligament Papillary Cystadenoma 6 198793 -NCIT:C40142 Uterine Ligament Papillary Cystadenoma Associated with von Hippel-Lindau Disease 6 198794 -NCIT:C155953 Epididymal Papillary Cystadenoma 5 198795 -NCIT:C4178 Borderline Papillary Cystadenoma 5 198796 -NCIT:C4183 Borderline Papillary Serous Cystadenoma 6 198797 -NCIT:C4186 Borderline Papillary Mucinous Cystadenoma 6 198798 -NCIT:C4180 Papillary Serous Cystadenoma 5 198799 -NCIT:C4183 Borderline Papillary Serous Cystadenoma 6 198800 -NCIT:C7278 Ovarian Papillary Cystadenoma 6 198801 -NCIT:C4184 Papillary Mucinous Cystadenoma 5 198802 -NCIT:C4186 Borderline Papillary Mucinous Cystadenoma 6 198803 -NCIT:C65203 Clear Cell Papillary Cystadenoma 5 198804 -NCIT:C35834 Salivary Gland Intraductal Papilloma 4 198805 -NCIT:C3777 Papillary Cystadenocarcinoma 4 198806 -NCIT:C65204 Papillary Mucinous Cystadenocarcinoma 5 198807 -NCIT:C8377 Papillary Serous Cystadenocarcinoma 5 198808 -NCIT:C4524 Multilocular Cystic Renal Neoplasm of Low Malignant Potential 3 198809 -NCIT:C5751 Liver Mesenchymal Hamartoma 3 198810 -NCIT:C6566 Childhood Multilocular Cystic Renal Neoplasm 3 198811 -NCIT:C157745 Childhood Cystic Nephroma 4 198812 -NCIT:C6897 Cystic Partially Differentiated Kidney Nephroblastoma 4 198813 -NCIT:C7504 Adult Cystic Nephroma 3 198814 -NCIT:C9014 Cystic Teratoma 3 198815 -NCIT:C7283 Ovarian Cystic Teratoma 4 198816 -NCIT:C3856 Ovarian Dermoid Cyst 5 198817 -NCIT:C9011 Dermoid Cyst 4 198818 -NCIT:C128113 Vaginal Dermoid Cyst 5 198819 -NCIT:C36092 Testicular Dermoid Cyst 5 198820 -NCIT:C3856 Ovarian Dermoid Cyst 5 198821 -NCIT:C4548 Orbit Dermoid Cyst 5 198822 -NCIT:C4632 Dermoid Cyst of the Skin 5 198823 -NCIT:C5508 Central Nervous System Dermoid Cyst 5 198824 -NCIT:C6808 Dermoid Cyst of the Spinal Cord 6 198825 -NCIT:C9012 Adult Cystic Teratoma 4 198826 -NCIT:C6930 Mixed Neoplasm 2 198827 -NCIT:C121686 Hybrid Nerve Sheath Tumor 3 198828 -NCIT:C121786 Mixed Tumor, Not Otherwise Specified 3 198829 -NCIT:C133091 Lung Adenofibroma 3 198830 -NCIT:C139548 Vulvar Composite Hidradenoma Papilliferum and Fibroadenoma 3 198831 -NCIT:C155767 Mixed Gangliocytoma-Pituitary Neuroendocrine Tumor 3 198832 -NCIT:C158616 Borderline Ovarian Mixed Epithelial Tumor/Atypical Proliferative Ovarian Mixed Epithelial Tumor 3 198833 -NCIT:C7281 Borderline Ovarian Seromucinous Tumor/Atypical Proliferative Ovarian Seromucinous Tumor 4 198834 -NCIT:C161636 Seminal Vesicle Mixed Epithelial and Stromal Tumor 3 198835 -NCIT:C39907 Seminal Vesicle Cystadenoma 4 198836 -NCIT:C164255 Mixed Neuroendocrine Non-Neuroendocrine Neoplasm 3 198837 -NCIT:C188217 Pancreatic Mixed Ductal-Neuroendocrine Neoplasm 4 198838 -NCIT:C6879 Pancreatic Mixed Ductal-Neuroendocrine Carcinoma 5 198839 -NCIT:C95406 Digestive System Mixed Adenoneuroendocrine Carcinoma 4 198840 -NCIT:C163967 Metastatic Digestive System Mixed Adenoneuroendocrine Carcinoma 5 198841 -NCIT:C172718 Liver Mixed Adenoneuroendocrine Carcinoma 5 198842 -NCIT:C172808 Unresectable Digestive System Mixed Adenoneuroendocrine Carcinoma 5 198843 -NCIT:C43564 Appendix Mixed Adenoneuroendocrine Carcinoma 5 198844 -NCIT:C3689 Appendix Goblet Cell Adenocarcinoma 6 198845 -NCIT:C45843 Pancreatic Mixed Adenoneuroendocrine Carcinoma 5 198846 -NCIT:C6878 Pancreatic Mixed Acinar-Neuroendocrine Carcinoma 6 198847 -NCIT:C6879 Pancreatic Mixed Ductal-Neuroendocrine Carcinoma 6 198848 -NCIT:C95460 Pancreatic Mixed Acinar-Ductal Neuroendocrine Carcinoma 6 198849 -NCIT:C95621 Esophageal Mixed Adenoneuroendocrine Carcinoma 5 198850 -NCIT:C95886 Gastric Mixed Adenoneuroendocrine Carcinoma 5 198851 -NCIT:C95986 Ampulla of Vater Mixed Adenoneuroendocrine Carcinoma 5 198852 -NCIT:C96066 Small Intestinal Mixed Adenoneuroendocrine Carcinoma 5 198853 -NCIT:C96158 Colorectal Mixed Adenoneuroendocrine Carcinoma 5 198854 -NCIT:C96553 Anal Canal Mixed Adenoneuroendocrine Carcinoma 5 198855 -NCIT:C96927 Gallbladder Mixed Adenoneuroendocrine Carcinoma 5 198856 -NCIT:C96928 Gallbladder Goblet Cell Carcinoid 6 198857 -NCIT:C96959 Extrahepatic Bile Duct Mixed Adenoneuroendocrine Carcinoma 5 198858 -NCIT:C181078 Hybrid Salivary Gland Tumor 3 198859 -NCIT:C181079 Hybrid Salivary Gland Carcinoma 4 198860 -NCIT:C35691 Mixed Tumor of the Salivary Gland 3 198861 -NCIT:C35416 Mixed Tumor of the Parotid Gland 4 198862 -NCIT:C4650 Parotid Gland Pleomorphic Adenoma 5 198863 -NCIT:C5945 Malignant Parotid Gland Mixed Tumor 5 198864 -NCIT:C35832 Parotid Gland Carcinosarcoma 6 198865 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 6 198866 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 7 198867 -NCIT:C40409 Salivary Gland Pleomorphic Adenoma 4 198868 -NCIT:C173114 Sinonasal Pleomorphic Adenoma 5 198869 -NCIT:C173412 Laryngeal Pleomorphic Adenoma 5 198870 -NCIT:C173575 Oropharyngeal Pleomorphic Adenoma 5 198871 -NCIT:C190161 Childhood Salivary Gland Pleomorphic Adenoma 5 198872 -NCIT:C35759 Metastasizing Pleomorphic Adenoma of the Salivary Gland 5 198873 -NCIT:C4650 Parotid Gland Pleomorphic Adenoma 5 198874 -NCIT:C6242 Oral Cavity Pleomorphic Adenoma 5 198875 -NCIT:C6211 Soft Palate Pleomorphic Adenoma 6 198876 -NCIT:C6212 Hard Palate Pleomorphic Adenoma 6 198877 -NCIT:C8025 Malignant Mixed Tumor of the Salivary Gland 4 198878 -NCIT:C35831 Salivary Gland Carcinosarcoma 5 198879 -NCIT:C35832 Parotid Gland Carcinosarcoma 6 198880 -NCIT:C40410 Salivary Gland Carcinoma ex Pleomorphic Adenoma 5 198881 -NCIT:C5975 Major Salivary Gland Carcinoma ex Pleomorphic Adenoma 6 198882 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 7 198883 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 198884 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 7 198885 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 198886 -NCIT:C5976 Minor Salivary Gland Carcinoma ex Pleomorphic Adenoma 6 198887 -NCIT:C5902 Malignant Mixed Tumor of the Major Salivary Gland 5 198888 -NCIT:C5944 Malignant Submandibular Gland Mixed Tumor 6 198889 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 7 198890 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 198891 -NCIT:C5945 Malignant Parotid Gland Mixed Tumor 6 198892 -NCIT:C35832 Parotid Gland Carcinosarcoma 7 198893 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 7 198894 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 198895 -NCIT:C5975 Major Salivary Gland Carcinoma ex Pleomorphic Adenoma 6 198896 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 7 198897 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 198898 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 7 198899 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 198900 -NCIT:C5955 Malignant Mixed Tumor of the Minor Salivary Gland 5 198901 -NCIT:C5976 Minor Salivary Gland Carcinoma ex Pleomorphic Adenoma 6 198902 -NCIT:C37263 Kidney Mixed Epithelial and Stromal Tumor 3 198903 -NCIT:C37264 Benign Kidney Mixed Epithelial and Stromal Tumor 4 198904 -NCIT:C37265 Malignant Mixed Epithelial and Stromal Tumor of the Kidney 4 198905 -NCIT:C3729 Malignant Mixed Neoplasm 3 198906 -NCIT:C121787 Malignant Mixed Tumor, Not Otherwise Specified 4 198907 -NCIT:C123848 Childhood Mixed Germ Cell Tumor 4 198908 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 5 198909 -NCIT:C27403 Childhood Central Nervous System Mixed Germ Cell Tumor 5 198910 -NCIT:C6542 Childhood Testicular Mixed Germ Cell Tumor 5 198911 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 6 198912 -NCIT:C146861 Mediastinal Mixed Germ Cell Tumor 4 198913 -NCIT:C6444 Mediastinal Mixed Nongerminomatous Germ Cell Tumor 5 198914 -NCIT:C6442 Mediastinal Mixed Embryonal Carcinoma and Teratoma 6 198915 -NCIT:C165723 Mixed Carcinoma 4 198916 -NCIT:C165716 Invasive Bladder Mixed Carcinoma 5 198917 -NCIT:C181079 Hybrid Salivary Gland Carcinoma 5 198918 -NCIT:C3727 Adenosquamous Carcinoma 5 198919 -NCIT:C114656 Endometrial Adenosquamous Carcinoma 6 198920 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 7 198921 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 7 198922 -NCIT:C118630 Liver Adenosquamous Carcinoma 6 198923 -NCIT:C159248 Adenosquamous Carcinoma of the Penis 6 198924 -NCIT:C173807 Tongue Adenosquamous Carcinoma 6 198925 -NCIT:C174402 Conjunctival Adenosquamous Carcinoma 6 198926 -NCIT:C27418 Ampulla of Vater Adenosquamous Carcinoma 6 198927 -NCIT:C27421 Esophageal Adenosquamous Carcinoma 6 198928 -NCIT:C35737 Salivary Gland Adenosquamous Carcinoma 6 198929 -NCIT:C40260 Vaginal Adenosquamous Carcinoma 6 198930 -NCIT:C181028 Metastatic Vaginal Adenosquamous Carcinoma 7 198931 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 8 198932 -NCIT:C40296 Bartholin Gland Adenosquamous Carcinoma 6 198933 -NCIT:C40361 Breast Adenosquamous Carcinoma 6 198934 -NCIT:C40362 Low Grade Breast Adenosquamous Carcinoma 7 198935 -NCIT:C43535 Small Intestinal Adenosquamous Carcinoma 6 198936 -NCIT:C43589 Colorectal Adenosquamous Carcinoma 6 198937 -NCIT:C43594 Rectal Adenosquamous Carcinoma 7 198938 -NCIT:C5491 Colon Adenosquamous Carcinoma 7 198939 -NCIT:C4519 Cervical Adenosquamous Carcinoma 6 198940 -NCIT:C136650 Recurrent Cervical Adenosquamous Carcinoma 7 198941 -NCIT:C153390 Metastatic Cervical Adenosquamous Carcinoma 7 198942 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 8 198943 -NCIT:C174027 Unresectable Cervical Adenosquamous Carcinoma 7 198944 -NCIT:C40212 Cervical Poorly Differentiated Adenosquamous Carcinoma 7 198945 -NCIT:C54250 Skin Adenosquamous Carcinoma 6 198946 -NCIT:C54338 Laryngeal Adenosquamous Carcinoma 6 198947 -NCIT:C5474 Gastric Adenosquamous Carcinoma 6 198948 -NCIT:C5538 Prostate Adenosquamous Carcinoma 6 198949 -NCIT:C5721 Pancreatic Adenosquamous Carcinoma 6 198950 -NCIT:C174566 Resectable Pancreatic Adenosquamous Carcinoma 7 198951 -NCIT:C190770 Metastatic Pancreatic Adenosquamous Carcinoma 7 198952 -NCIT:C5778 Extrahepatic Bile Duct Adenosquamous Carcinoma 6 198953 -NCIT:C6458 Thymic Adenosquamous Carcinoma 6 198954 -NCIT:C7356 Gallbladder Adenosquamous Carcinoma 6 198955 -NCIT:C9133 Lung Adenosquamous Carcinoma 6 198956 -NCIT:C136492 Lung Adenosquamous Carcinoma by AJCC v7 Stage 7 198957 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 8 198958 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 8 198959 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 9 198960 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 9 198961 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 8 198962 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 9 198963 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 9 198964 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 8 198965 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 9 198966 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 9 198967 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 8 198968 -NCIT:C156093 Metastatic Lung Adenosquamous Carcinoma 7 198969 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 8 198970 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 8 198971 -NCIT:C6684 Occult Lung Adenosquamous Carcinoma 7 198972 -NCIT:C8747 Recurrent Lung Adenosquamous Carcinoma 7 198973 -NCIT:C97046 Human Papillomavirus-Related Adenosquamous Carcinoma 6 198974 -NCIT:C40090 Ovarian Seromucinous Carcinoma 5 198975 -NCIT:C178669 Recurrent Ovarian Seromucinous Carcinoma 6 198976 -NCIT:C178671 Refractory Ovarian Seromucinous Carcinoma 6 198977 -NCIT:C40347 Breast Mixed Carcinoma 5 198978 -NCIT:C40361 Breast Adenosquamous Carcinoma 6 198979 -NCIT:C40362 Low Grade Breast Adenosquamous Carcinoma 7 198980 -NCIT:C6393 Invasive Breast Ductal Carcinoma and Invasive Lobular Carcinoma 6 198981 -NCIT:C7591 Combined Lung Carcinoma 5 198982 -NCIT:C7267 Combined Lung Large Cell Neuroendocrine Carcinoma 6 198983 -NCIT:C9137 Combined Lung Small Cell Carcinoma 6 198984 -NCIT:C9379 Combined Lung Small Cell Carcinoma and Lung Adenocarcinoma 7 198985 -NCIT:C9423 Combined Lung Small Cell and Squamous Cell Carcinoma 7 198986 -NCIT:C95406 Digestive System Mixed Adenoneuroendocrine Carcinoma 5 198987 -NCIT:C163967 Metastatic Digestive System Mixed Adenoneuroendocrine Carcinoma 6 198988 -NCIT:C172718 Liver Mixed Adenoneuroendocrine Carcinoma 6 198989 -NCIT:C172808 Unresectable Digestive System Mixed Adenoneuroendocrine Carcinoma 6 198990 -NCIT:C43564 Appendix Mixed Adenoneuroendocrine Carcinoma 6 198991 -NCIT:C3689 Appendix Goblet Cell Adenocarcinoma 7 198992 -NCIT:C45843 Pancreatic Mixed Adenoneuroendocrine Carcinoma 6 198993 -NCIT:C6878 Pancreatic Mixed Acinar-Neuroendocrine Carcinoma 7 198994 -NCIT:C6879 Pancreatic Mixed Ductal-Neuroendocrine Carcinoma 7 198995 -NCIT:C95460 Pancreatic Mixed Acinar-Ductal Neuroendocrine Carcinoma 7 198996 -NCIT:C95621 Esophageal Mixed Adenoneuroendocrine Carcinoma 6 198997 -NCIT:C95886 Gastric Mixed Adenoneuroendocrine Carcinoma 6 198998 -NCIT:C95986 Ampulla of Vater Mixed Adenoneuroendocrine Carcinoma 6 198999 -NCIT:C96066 Small Intestinal Mixed Adenoneuroendocrine Carcinoma 6 199000 -NCIT:C96158 Colorectal Mixed Adenoneuroendocrine Carcinoma 6 199001 -NCIT:C96553 Anal Canal Mixed Adenoneuroendocrine Carcinoma 6 199002 -NCIT:C96927 Gallbladder Mixed Adenoneuroendocrine Carcinoma 6 199003 -NCIT:C96928 Gallbladder Goblet Cell Carcinoid 7 199004 -NCIT:C96959 Extrahepatic Bile Duct Mixed Adenoneuroendocrine Carcinoma 6 199005 -NCIT:C167346 Malignant Mixed Tumor of the Skin 4 199006 -NCIT:C173094 Sinonasal Teratocarcinosarcoma 4 199007 -NCIT:C3267 Wilms Tumor 4 199008 -NCIT:C161607 Prostate Wilms Tumor 5 199009 -NCIT:C162489 Paratesticular Wilms Tumor 5 199010 -NCIT:C188038 Refractory Wilms Tumor 5 199011 -NCIT:C40236 Cervical Wilms Tumor 5 199012 -NCIT:C40407 Kidney Wilms Tumor 5 199013 -NCIT:C27730 Childhood Kidney Wilms Tumor 6 199014 -NCIT:C6897 Cystic Partially Differentiated Kidney Nephroblastoma 7 199015 -NCIT:C38158 Metachronous Kidney Wilms Tumor 6 199016 -NCIT:C6180 Adult Kidney Wilms Tumor 6 199017 -NCIT:C6951 Nonanaplastic Kidney Wilms Tumor 6 199018 -NCIT:C6952 Anaplastic Kidney Wilms Tumor 6 199019 -NCIT:C7840 Stage I Kidney Wilms Tumor 6 199020 -NCIT:C7841 Stage II Kidney Wilms Tumor 6 199021 -NCIT:C7842 Stage III Kidney Wilms Tumor 6 199022 -NCIT:C7843 Stage IV Kidney Wilms Tumor 6 199023 -NCIT:C7844 Stage V Kidney Wilms Tumor 6 199024 -NCIT:C7845 Recurrent Kidney Wilms Tumor 6 199025 -NCIT:C8496 Hereditary Kidney Wilms Tumor 6 199026 -NCIT:C9146 Epithelial Predominant Kidney Wilms Tumor 6 199027 -NCIT:C9147 Blastema Predominant Kidney Wilms Tumor 6 199028 -NCIT:C9148 Stromal Predominant Kidney Wilms Tumor 6 199029 -NCIT:C9149 Mixed Cell Type Kidney Wilms Tumor 6 199030 -NCIT:C40443 Ovarian Wilms Tumor 5 199031 -NCIT:C34448 Carcinosarcoma 4 199032 -NCIT:C165468 Skin Squamous Cell Carcinoma with Sarcomatoid Differentiation 5 199033 -NCIT:C167382 Trichoblastic Carcinosarcoma 5 199034 -NCIT:C170924 Metastatic Carcinosarcoma 5 199035 -NCIT:C170928 Advanced Carcinosarcoma 6 199036 -NCIT:C170930 Advanced Malignant Mixed Mesodermal (Mullerian) Tumor 7 199037 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 8 199038 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 8 199039 -NCIT:C170929 Metastatic Malignant Mixed Mesodermal (Mullerian) Tumor 6 199040 -NCIT:C170930 Advanced Malignant Mixed Mesodermal (Mullerian) Tumor 7 199041 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 8 199042 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 8 199043 -NCIT:C170931 Metastatic Uterine Corpus Carcinosarcoma 7 199044 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 8 199045 -NCIT:C170933 Metastatic Ovarian Carcinosarcoma 7 199046 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 8 199047 -NCIT:C173735 Odontogenic Carcinosarcoma 5 199048 -NCIT:C175279 Lacrimal Gland Carcinosarcoma 5 199049 -NCIT:C35831 Salivary Gland Carcinosarcoma 5 199050 -NCIT:C35832 Parotid Gland Carcinosarcoma 6 199051 -NCIT:C45543 Lung Carcinosarcoma 5 199052 -NCIT:C8975 Malignant Mixed Mesodermal (Mullerian) Tumor 5 199053 -NCIT:C159507 Primary Peritoneal Carcinosarcoma 6 199054 -NCIT:C170929 Metastatic Malignant Mixed Mesodermal (Mullerian) Tumor 6 199055 -NCIT:C170930 Advanced Malignant Mixed Mesodermal (Mullerian) Tumor 7 199056 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 8 199057 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 8 199058 -NCIT:C170931 Metastatic Uterine Corpus Carcinosarcoma 7 199059 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 8 199060 -NCIT:C170933 Metastatic Ovarian Carcinosarcoma 7 199061 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 8 199062 -NCIT:C40124 Fallopian Tube Carcinosarcoma 6 199063 -NCIT:C40278 Vaginal Carcinosarcoma 6 199064 -NCIT:C42700 Uterine Carcinosarcoma 6 199065 -NCIT:C113238 Uterine Carcinosarcoma, Homologous Type 7 199066 -NCIT:C113239 Uterine Carcinosarcoma, Heterologous Type 7 199067 -NCIT:C36097 Cervical Carcinosarcoma 7 199068 -NCIT:C9180 Uterine Corpus Carcinosarcoma 7 199069 -NCIT:C155818 Recurrent Uterine Corpus Carcinosarcoma 8 199070 -NCIT:C158381 Refractory Uterine Corpus Carcinosarcoma 8 199071 -NCIT:C170931 Metastatic Uterine Corpus Carcinosarcoma 8 199072 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 9 199073 -NCIT:C9192 Ovarian Carcinosarcoma 6 199074 -NCIT:C153347 Recurrent Ovarian Carcinosarcoma 7 199075 -NCIT:C170933 Metastatic Ovarian Carcinosarcoma 7 199076 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 8 199077 -NCIT:C96848 Liver Carcinosarcoma 5 199078 -NCIT:C96888 Gallbladder Carcinosarcoma 5 199079 -NCIT:C96939 Extrahepatic Bile Duct Carcinosarcoma 5 199080 -NCIT:C37265 Malignant Mixed Epithelial and Stromal Tumor of the Kidney 4 199081 -NCIT:C3756 Mixed Embryonal Carcinoma and Teratoma 4 199082 -NCIT:C6351 Testicular Mixed Embryonal Carcinoma and Teratoma 5 199083 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 6 199084 -NCIT:C6442 Mediastinal Mixed Embryonal Carcinoma and Teratoma 5 199085 -NCIT:C40035 Adenocarcinofibroma 4 199086 -NCIT:C40034 Ovarian Mucinous Adenocarcinofibroma 5 199087 -NCIT:C40079 Ovarian Clear Cell Adenocarcinofibroma 5 199088 -NCIT:C67092 Ovarian Serous Adenocarcinofibroma 5 199089 -NCIT:C40228 Malignant Mixed Epithelial and Mesenchymal Neoplasm of the Cervix 4 199090 -NCIT:C36097 Cervical Carcinosarcoma 5 199091 -NCIT:C40229 Cervical Adenosarcoma 5 199092 -NCIT:C40276 Malignant Vaginal Mixed Epithelial and Mesenchymal Neoplasm 4 199093 -NCIT:C40277 Vaginal Adenosarcoma 5 199094 -NCIT:C40278 Vaginal Carcinosarcoma 5 199095 -NCIT:C40279 Malignant Vaginal Mixed Tumor Resembling Synovial Sarcoma 5 199096 -NCIT:C4275 Malignant Phyllodes Tumor 4 199097 -NCIT:C128165 Malignant Vulvar Phyllodes Tumor 5 199098 -NCIT:C4504 Malignant Breast Phyllodes Tumor 5 199099 -NCIT:C5531 Malignant Prostate Phyllodes Tumor 5 199100 -NCIT:C4397 Carcinoma ex Pleomorphic Adenoma 4 199101 -NCIT:C40410 Salivary Gland Carcinoma ex Pleomorphic Adenoma 5 199102 -NCIT:C5975 Major Salivary Gland Carcinoma ex Pleomorphic Adenoma 6 199103 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 7 199104 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 199105 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 7 199106 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 199107 -NCIT:C5976 Minor Salivary Gland Carcinoma ex Pleomorphic Adenoma 6 199108 -NCIT:C6804 Lacrimal Gland Carcinoma ex Pleomorphic Adenoma 5 199109 -NCIT:C6311 Malignant Uterine Corpus Mixed Epithelial and Mesenchymal Neoplasm 4 199110 -NCIT:C40182 Uterine Corpus Carcinofibroma 5 199111 -NCIT:C6336 Uterine Corpus Adenosarcoma 5 199112 -NCIT:C139894 Uterine Corpus Adenosarcoma by AJCC v8 Stage 6 199113 -NCIT:C139895 Stage I Uterine Corpus Adenosarcoma AJCC v8 7 199114 -NCIT:C139896 Stage IA Uterine Corpus Adenosarcoma AJCC v8 8 199115 -NCIT:C139897 Stage IB Uterine Corpus Adenosarcoma AJCC v8 8 199116 -NCIT:C139898 Stage IC Uterine Corpus Adenosarcoma AJCC v8 8 199117 -NCIT:C139899 Stage II Uterine Corpus Adenosarcoma AJCC v8 7 199118 -NCIT:C139900 Stage III Uterine Corpus Adenosarcoma AJCC v8 7 199119 -NCIT:C139901 Stage IIIA Uterine Corpus Adenosarcoma AJCC v8 8 199120 -NCIT:C139902 Stage IIIB Uterine Corpus Adenosarcoma AJCC v8 8 199121 -NCIT:C139903 Stage IIIC Uterine Corpus Adenosarcoma AJCC v8 8 199122 -NCIT:C139904 Stage IV Uterine Corpus Adenosarcoma AJCC v8 7 199123 -NCIT:C139905 Stage IVA Uterine Corpus Adenosarcoma AJCC v8 8 199124 -NCIT:C139906 Stage IVB Uterine Corpus Adenosarcoma AJCC v8 8 199125 -NCIT:C9180 Uterine Corpus Carcinosarcoma 5 199126 -NCIT:C155818 Recurrent Uterine Corpus Carcinosarcoma 6 199127 -NCIT:C158381 Refractory Uterine Corpus Carcinosarcoma 6 199128 -NCIT:C170931 Metastatic Uterine Corpus Carcinosarcoma 6 199129 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 7 199130 -NCIT:C6347 Testicular Mixed Germ Cell Tumor 4 199131 -NCIT:C6348 Testicular Mixed Choriocarcinoma and Embryonal Carcinoma 5 199132 -NCIT:C6349 Testicular Mixed Choriocarcinoma and Teratoma 5 199133 -NCIT:C6350 Testicular Mixed Embryonal Carcinoma and Seminoma 5 199134 -NCIT:C6351 Testicular Mixed Embryonal Carcinoma and Teratoma 5 199135 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 6 199136 -NCIT:C6352 Testicular Mixed Embryonal Carcinoma and Teratoma with Seminoma 5 199137 -NCIT:C6542 Childhood Testicular Mixed Germ Cell Tumor 5 199138 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 6 199139 -NCIT:C67548 Testicular Mixed Choriocarcinoma and Yolk Sac Tumor 5 199140 -NCIT:C8001 Testicular Mixed Embryonal Carcinoma and Yolk Sac Tumor 5 199141 -NCIT:C8002 Testicular Mixed Yolk Sac Tumor and Teratoma 5 199142 -NCIT:C8003 Testicular Mixed Yolk Sac Tumor and Teratoma with Seminoma 5 199143 -NCIT:C8911 Stage II Testicular Mixed Germ Cell Tumor AJCC v6 and v7 5 199144 -NCIT:C8912 Stage I Testicular Mixed Germ Cell Tumor AJCC v6 and v7 5 199145 -NCIT:C8913 Stage III Testicular Mixed Germ Cell Tumor AJCC v6 and v7 5 199146 -NCIT:C9172 Testicular Mixed Embryonal Carcinoma and Yolk Sac Tumor with Seminoma 5 199147 -NCIT:C9173 Testicular Mixed Choriocarcinoma and Seminoma 5 199148 -NCIT:C66777 Choriocarcinoma Combined with Other Germ Cell Elements 4 199149 -NCIT:C6348 Testicular Mixed Choriocarcinoma and Embryonal Carcinoma 5 199150 -NCIT:C6349 Testicular Mixed Choriocarcinoma and Teratoma 5 199151 -NCIT:C67548 Testicular Mixed Choriocarcinoma and Yolk Sac Tumor 5 199152 -NCIT:C9173 Testicular Mixed Choriocarcinoma and Seminoma 5 199153 -NCIT:C6959 Anaplastic Oligoastrocytoma 4 199154 -NCIT:C114973 Childhood Anaplastic Oligoastrocytoma 5 199155 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 6 199156 -NCIT:C129324 Anaplastic Oligoastrocytoma, Not Otherwise Specified 5 199157 -NCIT:C142861 Recurrent Anaplastic Oligoastrocytoma 5 199158 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 6 199159 -NCIT:C7016 Central Nervous System Mixed Germ Cell Tumor 4 199160 -NCIT:C155811 Sellar Mixed Germ Cell Tumor 5 199161 -NCIT:C27402 Adult Central Nervous System Mixed Germ Cell Tumor 5 199162 -NCIT:C27403 Childhood Central Nervous System Mixed Germ Cell Tumor 5 199163 -NCIT:C7683 Adenocarcinoma with Cartilaginous and Osseous Metaplasia 4 199164 -NCIT:C7684 Adenocarcinoma with Osseous Metaplasia 5 199165 -NCIT:C7685 Adenocarcinoma with Cartilaginous Metaplasia 5 199166 -NCIT:C8025 Malignant Mixed Tumor of the Salivary Gland 4 199167 -NCIT:C35831 Salivary Gland Carcinosarcoma 5 199168 -NCIT:C35832 Parotid Gland Carcinosarcoma 6 199169 -NCIT:C40410 Salivary Gland Carcinoma ex Pleomorphic Adenoma 5 199170 -NCIT:C5975 Major Salivary Gland Carcinoma ex Pleomorphic Adenoma 6 199171 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 7 199172 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 199173 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 7 199174 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 199175 -NCIT:C5976 Minor Salivary Gland Carcinoma ex Pleomorphic Adenoma 6 199176 -NCIT:C5902 Malignant Mixed Tumor of the Major Salivary Gland 5 199177 -NCIT:C5944 Malignant Submandibular Gland Mixed Tumor 6 199178 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 7 199179 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 199180 -NCIT:C5945 Malignant Parotid Gland Mixed Tumor 6 199181 -NCIT:C35832 Parotid Gland Carcinosarcoma 7 199182 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 7 199183 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 199184 -NCIT:C5975 Major Salivary Gland Carcinoma ex Pleomorphic Adenoma 6 199185 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 7 199186 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 199187 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 7 199188 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 199189 -NCIT:C5955 Malignant Mixed Tumor of the Minor Salivary Gland 5 199190 -NCIT:C5976 Minor Salivary Gland Carcinoma ex Pleomorphic Adenoma 6 199191 -NCIT:C8114 Ovarian Mixed Germ Cell Tumor 4 199192 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 5 199193 -NCIT:C9010 Mixed Teratoma and Seminoma 4 199194 -NCIT:C9474 Adenosarcoma 4 199195 -NCIT:C102570 Broad Ligament Adenosarcoma 5 199196 -NCIT:C40125 Fallopian Tube Adenosarcoma 5 199197 -NCIT:C40229 Cervical Adenosarcoma 5 199198 -NCIT:C40277 Vaginal Adenosarcoma 5 199199 -NCIT:C6336 Uterine Corpus Adenosarcoma 5 199200 -NCIT:C139894 Uterine Corpus Adenosarcoma by AJCC v8 Stage 6 199201 -NCIT:C139895 Stage I Uterine Corpus Adenosarcoma AJCC v8 7 199202 -NCIT:C139896 Stage IA Uterine Corpus Adenosarcoma AJCC v8 8 199203 -NCIT:C139897 Stage IB Uterine Corpus Adenosarcoma AJCC v8 8 199204 -NCIT:C139898 Stage IC Uterine Corpus Adenosarcoma AJCC v8 8 199205 -NCIT:C139899 Stage II Uterine Corpus Adenosarcoma AJCC v8 7 199206 -NCIT:C139900 Stage III Uterine Corpus Adenosarcoma AJCC v8 7 199207 -NCIT:C139901 Stage IIIA Uterine Corpus Adenosarcoma AJCC v8 8 199208 -NCIT:C139902 Stage IIIB Uterine Corpus Adenosarcoma AJCC v8 8 199209 -NCIT:C139903 Stage IIIC Uterine Corpus Adenosarcoma AJCC v8 8 199210 -NCIT:C139904 Stage IV Uterine Corpus Adenosarcoma AJCC v8 7 199211 -NCIT:C139905 Stage IVA Uterine Corpus Adenosarcoma AJCC v8 8 199212 -NCIT:C139906 Stage IVB Uterine Corpus Adenosarcoma AJCC v8 8 199213 -NCIT:C7317 Ovarian Adenosarcoma 5 199214 -NCIT:C97058 Mixed Congenital Mesoblastic Nephroma 4 199215 -NCIT:C3730 Mixed Mesodermal (Mullerian) Tumor 3 199216 -NCIT:C3726 Adenomyoma 4 199217 -NCIT:C179925 Uterine Ligament Adenomyoma 5 199218 -NCIT:C40231 Cervical Adenomyoma 5 199219 -NCIT:C40232 Cervical Adenomyoma, Endocervical-Type 6 199220 -NCIT:C40233 Cervical Adenomyoma, Mesonephric-Type 6 199221 -NCIT:C40234 Cervical Atypical Polypoid Adenomyoma 6 199222 -NCIT:C6338 Uterine Corpus Adenomyoma 5 199223 -NCIT:C40235 Uterine Corpus Atypical Polypoid Adenomyoma 6 199224 -NCIT:C6895 Atypical Polypoid Adenomyoma 5 199225 -NCIT:C40234 Cervical Atypical Polypoid Adenomyoma 6 199226 -NCIT:C40235 Uterine Corpus Atypical Polypoid Adenomyoma 6 199227 -NCIT:C40035 Adenocarcinofibroma 4 199228 -NCIT:C40034 Ovarian Mucinous Adenocarcinofibroma 5 199229 -NCIT:C40079 Ovarian Clear Cell Adenocarcinofibroma 5 199230 -NCIT:C67092 Ovarian Serous Adenocarcinofibroma 5 199231 -NCIT:C8975 Malignant Mixed Mesodermal (Mullerian) Tumor 4 199232 -NCIT:C159507 Primary Peritoneal Carcinosarcoma 5 199233 -NCIT:C170929 Metastatic Malignant Mixed Mesodermal (Mullerian) Tumor 5 199234 -NCIT:C170930 Advanced Malignant Mixed Mesodermal (Mullerian) Tumor 6 199235 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 7 199236 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 7 199237 -NCIT:C170931 Metastatic Uterine Corpus Carcinosarcoma 6 199238 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 7 199239 -NCIT:C170933 Metastatic Ovarian Carcinosarcoma 6 199240 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 7 199241 -NCIT:C40124 Fallopian Tube Carcinosarcoma 5 199242 -NCIT:C40278 Vaginal Carcinosarcoma 5 199243 -NCIT:C42700 Uterine Carcinosarcoma 5 199244 -NCIT:C113238 Uterine Carcinosarcoma, Homologous Type 6 199245 -NCIT:C113239 Uterine Carcinosarcoma, Heterologous Type 6 199246 -NCIT:C36097 Cervical Carcinosarcoma 6 199247 -NCIT:C9180 Uterine Corpus Carcinosarcoma 6 199248 -NCIT:C155818 Recurrent Uterine Corpus Carcinosarcoma 7 199249 -NCIT:C158381 Refractory Uterine Corpus Carcinosarcoma 7 199250 -NCIT:C170931 Metastatic Uterine Corpus Carcinosarcoma 7 199251 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 8 199252 -NCIT:C9192 Ovarian Carcinosarcoma 5 199253 -NCIT:C153347 Recurrent Ovarian Carcinosarcoma 6 199254 -NCIT:C170933 Metastatic Ovarian Carcinosarcoma 6 199255 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 7 199256 -NCIT:C8984 Female Reproductive System Adenofibroma 4 199257 -NCIT:C126311 Ovarian Seromucinous Adenofibroma 5 199258 -NCIT:C27287 Ovarian Endometrioid Adenofibroma 5 199259 -NCIT:C27288 Ovarian Endometrioid Cystadenofibroma 6 199260 -NCIT:C40069 Borderline Ovarian Endometrioid Adenofibroma 5 199261 -NCIT:C27289 Borderline Ovarian Endometrioid Cystadenofibroma 6 199262 -NCIT:C40230 Cervical Adenofibroma 5 199263 -NCIT:C6337 Uterine Corpus Adenofibroma 5 199264 -NCIT:C67090 Serous Adenofibroma 5 199265 -NCIT:C158622 Borderline Serous Cystadenofibroma 6 199266 -NCIT:C40029 Borderline Ovarian Serous Cystadenofibroma 7 199267 -NCIT:C40028 Borderline Ovarian Serous Adenofibroma 6 199268 -NCIT:C40029 Borderline Ovarian Serous Cystadenofibroma 7 199269 -NCIT:C40031 Ovarian Serous Adenofibroma 6 199270 -NCIT:C40032 Ovarian Serous Cystadenofibroma 7 199271 -NCIT:C40113 Fallopian Tube Serous Adenofibroma 6 199272 -NCIT:C40114 Fallopian Tube Serous Cystadenofibroma 7 199273 -NCIT:C8978 Mucinous Adenofibroma 5 199274 -NCIT:C40040 Ovarian Mucinous Adenofibroma 6 199275 -NCIT:C40041 Ovarian Mucinous Cystadenofibroma 7 199276 -NCIT:C66775 Borderline Ovarian Mucinous Adenofibroma 6 199277 -NCIT:C8979 Mucinous Cystadenofibroma 6 199278 -NCIT:C40041 Ovarian Mucinous Cystadenofibroma 7 199279 -NCIT:C8985 Cystadenofibroma 5 199280 -NCIT:C158622 Borderline Serous Cystadenofibroma 6 199281 -NCIT:C40029 Borderline Ovarian Serous Cystadenofibroma 7 199282 -NCIT:C27288 Ovarian Endometrioid Cystadenofibroma 6 199283 -NCIT:C27289 Borderline Ovarian Endometrioid Cystadenofibroma 6 199284 -NCIT:C40020 Rete Ovarii Cystadenofibroma 6 199285 -NCIT:C40032 Ovarian Serous Cystadenofibroma 6 199286 -NCIT:C40114 Fallopian Tube Serous Cystadenofibroma 6 199287 -NCIT:C8979 Mucinous Cystadenofibroma 6 199288 -NCIT:C40041 Ovarian Mucinous Cystadenofibroma 7 199289 -NCIT:C8988 Clear Cell Cystadenofibroma 6 199290 -NCIT:C40083 Borderline Ovarian Clear Cell Cystadenofibroma 7 199291 -NCIT:C40086 Ovarian Clear Cell Cystadenofibroma 7 199292 -NCIT:C8986 Papillary Adenofibroma 5 199293 -NCIT:C158622 Borderline Serous Cystadenofibroma 6 199294 -NCIT:C40029 Borderline Ovarian Serous Cystadenofibroma 7 199295 -NCIT:C40028 Borderline Ovarian Serous Adenofibroma 6 199296 -NCIT:C40029 Borderline Ovarian Serous Cystadenofibroma 7 199297 -NCIT:C8987 Clear Cell Adenofibroma 5 199298 -NCIT:C40081 Borderline Ovarian Clear Cell Adenofibroma 6 199299 -NCIT:C126308 Borderline Ovarian Clear Cell Tumor/Atypical Proliferative Ovarian Clear Cell Tumor 7 199300 -NCIT:C40082 Borderline Ovarian Clear Cell Tumor/Atypical Proliferative Ovarian Clear Cell Tumor with Intraepithelial Carcinoma 8 199301 -NCIT:C40083 Borderline Ovarian Clear Cell Cystadenofibroma 7 199302 -NCIT:C40085 Ovarian Clear Cell Adenofibroma 6 199303 -NCIT:C40086 Ovarian Clear Cell Cystadenofibroma 7 199304 -NCIT:C8988 Clear Cell Cystadenofibroma 6 199305 -NCIT:C40083 Borderline Ovarian Clear Cell Cystadenofibroma 7 199306 -NCIT:C40086 Ovarian Clear Cell Cystadenofibroma 7 199307 -NCIT:C9474 Adenosarcoma 4 199308 -NCIT:C102570 Broad Ligament Adenosarcoma 5 199309 -NCIT:C40125 Fallopian Tube Adenosarcoma 5 199310 -NCIT:C40229 Cervical Adenosarcoma 5 199311 -NCIT:C40277 Vaginal Adenosarcoma 5 199312 -NCIT:C6336 Uterine Corpus Adenosarcoma 5 199313 -NCIT:C139894 Uterine Corpus Adenosarcoma by AJCC v8 Stage 6 199314 -NCIT:C139895 Stage I Uterine Corpus Adenosarcoma AJCC v8 7 199315 -NCIT:C139896 Stage IA Uterine Corpus Adenosarcoma AJCC v8 8 199316 -NCIT:C139897 Stage IB Uterine Corpus Adenosarcoma AJCC v8 8 199317 -NCIT:C139898 Stage IC Uterine Corpus Adenosarcoma AJCC v8 8 199318 -NCIT:C139899 Stage II Uterine Corpus Adenosarcoma AJCC v8 7 199319 -NCIT:C139900 Stage III Uterine Corpus Adenosarcoma AJCC v8 7 199320 -NCIT:C139901 Stage IIIA Uterine Corpus Adenosarcoma AJCC v8 8 199321 -NCIT:C139902 Stage IIIB Uterine Corpus Adenosarcoma AJCC v8 8 199322 -NCIT:C139903 Stage IIIC Uterine Corpus Adenosarcoma AJCC v8 8 199323 -NCIT:C139904 Stage IV Uterine Corpus Adenosarcoma AJCC v8 7 199324 -NCIT:C139905 Stage IVA Uterine Corpus Adenosarcoma AJCC v8 8 199325 -NCIT:C139906 Stage IVB Uterine Corpus Adenosarcoma AJCC v8 8 199326 -NCIT:C7317 Ovarian Adenosarcoma 5 199327 -NCIT:C3743 Fibroepithelial Neoplasm 3 199328 -NCIT:C139547 Fibroadenoma of Anogenital Mammary-Type Glands 4 199329 -NCIT:C128242 Vulvar Fibroadenoma 5 199330 -NCIT:C139546 Anal Fibroadenoma 5 199331 -NCIT:C2977 Phyllodes Tumor 4 199332 -NCIT:C168602 Phyllodes Tumor of Anogenital Mammary-Type Glands 5 199333 -NCIT:C181905 Vulvar Phyllodes Tumor 6 199334 -NCIT:C128165 Malignant Vulvar Phyllodes Tumor 7 199335 -NCIT:C181906 Benign Vulvar Phyllodes Tumor 7 199336 -NCIT:C181907 Borderline Vulvar Phyllodes Tumor 7 199337 -NCIT:C4274 Benign Phyllodes Tumor 5 199338 -NCIT:C181906 Benign Vulvar Phyllodes Tumor 6 199339 -NCIT:C5196 Benign Breast Phyllodes Tumor 6 199340 -NCIT:C5532 Benign Prostate Phyllodes Tumor 6 199341 -NCIT:C4275 Malignant Phyllodes Tumor 5 199342 -NCIT:C128165 Malignant Vulvar Phyllodes Tumor 6 199343 -NCIT:C4504 Malignant Breast Phyllodes Tumor 6 199344 -NCIT:C5531 Malignant Prostate Phyllodes Tumor 6 199345 -NCIT:C7503 Borderline Phyllodes Tumor 5 199346 -NCIT:C181907 Borderline Vulvar Phyllodes Tumor 6 199347 -NCIT:C5316 Borderline Breast Phyllodes Tumor 6 199348 -NCIT:C7574 Prostate Phyllodes Tumor 5 199349 -NCIT:C5531 Malignant Prostate Phyllodes Tumor 6 199350 -NCIT:C5532 Benign Prostate Phyllodes Tumor 6 199351 -NCIT:C7575 Breast Phyllodes Tumor 5 199352 -NCIT:C189340 Childhood Breast Phyllodes Tumor 6 199353 -NCIT:C4504 Malignant Breast Phyllodes Tumor 6 199354 -NCIT:C5196 Benign Breast Phyllodes Tumor 6 199355 -NCIT:C5316 Borderline Breast Phyllodes Tumor 6 199356 -NCIT:C39812 Metanephric Adenofibroma 4 199357 -NCIT:C40405 Breast Fibroepithelial Neoplasm 4 199358 -NCIT:C3744 Breast Fibroadenoma 5 199359 -NCIT:C176045 Breast Cellular Fibroadenoma 6 199360 -NCIT:C189339 Childhood Breast Fibroadenoma 6 199361 -NCIT:C4276 Juvenile Breast Fibroadenoma 7 199362 -NCIT:C4271 Breast Intracanalicular Fibroadenoma 6 199363 -NCIT:C4272 Breast Pericanalicular Fibroadenoma 6 199364 -NCIT:C4273 Breast Giant Fibroadenoma 6 199365 -NCIT:C5194 Breast Complex Fibroadenoma 6 199366 -NCIT:C7575 Breast Phyllodes Tumor 5 199367 -NCIT:C189340 Childhood Breast Phyllodes Tumor 6 199368 -NCIT:C4504 Malignant Breast Phyllodes Tumor 6 199369 -NCIT:C5196 Benign Breast Phyllodes Tumor 6 199370 -NCIT:C5316 Borderline Breast Phyllodes Tumor 6 199371 -NCIT:C3903 Mixed Glioma 3 199372 -NCIT:C115195 Childhood Mixed Glioma 4 199373 -NCIT:C114760 Childhood Brain Stem Mixed Glioma 5 199374 -NCIT:C114973 Childhood Anaplastic Oligoastrocytoma 5 199375 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 6 199376 -NCIT:C114974 Childhood Oligoastrocytoma 5 199377 -NCIT:C115370 Recurrent Childhood Oligoastrocytoma 6 199378 -NCIT:C115250 Adult Mixed Glioma 4 199379 -NCIT:C9371 Adult Brain Stem Mixed Glioma 5 199380 -NCIT:C4050 Oligoastrocytoma 4 199381 -NCIT:C114974 Childhood Oligoastrocytoma 5 199382 -NCIT:C115370 Recurrent Childhood Oligoastrocytoma 6 199383 -NCIT:C129323 Oligoastrocytoma, Not Otherwise Specified 5 199384 -NCIT:C167082 Recurrent Oligoastrocytoma 5 199385 -NCIT:C115370 Recurrent Childhood Oligoastrocytoma 6 199386 -NCIT:C6959 Anaplastic Oligoastrocytoma 4 199387 -NCIT:C114973 Childhood Anaplastic Oligoastrocytoma 5 199388 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 6 199389 -NCIT:C129324 Anaplastic Oligoastrocytoma, Not Otherwise Specified 5 199390 -NCIT:C142861 Recurrent Anaplastic Oligoastrocytoma 5 199391 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 6 199392 -NCIT:C8271 Mixed Astrocytoma-Ependymoma 4 199393 -NCIT:C8272 Mixed Astrocytoma-Ependymoma-Oligodendroglioma 4 199394 -NCIT:C40181 Uterine Corpus Mixed Epithelial and Mesenchymal Neoplasm 3 199395 -NCIT:C6311 Malignant Uterine Corpus Mixed Epithelial and Mesenchymal Neoplasm 4 199396 -NCIT:C40182 Uterine Corpus Carcinofibroma 5 199397 -NCIT:C6336 Uterine Corpus Adenosarcoma 5 199398 -NCIT:C139894 Uterine Corpus Adenosarcoma by AJCC v8 Stage 6 199399 -NCIT:C139895 Stage I Uterine Corpus Adenosarcoma AJCC v8 7 199400 -NCIT:C139896 Stage IA Uterine Corpus Adenosarcoma AJCC v8 8 199401 -NCIT:C139897 Stage IB Uterine Corpus Adenosarcoma AJCC v8 8 199402 -NCIT:C139898 Stage IC Uterine Corpus Adenosarcoma AJCC v8 8 199403 -NCIT:C139899 Stage II Uterine Corpus Adenosarcoma AJCC v8 7 199404 -NCIT:C139900 Stage III Uterine Corpus Adenosarcoma AJCC v8 7 199405 -NCIT:C139901 Stage IIIA Uterine Corpus Adenosarcoma AJCC v8 8 199406 -NCIT:C139902 Stage IIIB Uterine Corpus Adenosarcoma AJCC v8 8 199407 -NCIT:C139903 Stage IIIC Uterine Corpus Adenosarcoma AJCC v8 8 199408 -NCIT:C139904 Stage IV Uterine Corpus Adenosarcoma AJCC v8 7 199409 -NCIT:C139905 Stage IVA Uterine Corpus Adenosarcoma AJCC v8 8 199410 -NCIT:C139906 Stage IVB Uterine Corpus Adenosarcoma AJCC v8 8 199411 -NCIT:C9180 Uterine Corpus Carcinosarcoma 5 199412 -NCIT:C155818 Recurrent Uterine Corpus Carcinosarcoma 6 199413 -NCIT:C158381 Refractory Uterine Corpus Carcinosarcoma 6 199414 -NCIT:C170931 Metastatic Uterine Corpus Carcinosarcoma 6 199415 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 7 199416 -NCIT:C6335 Benign Uterine Corpus Mixed Epithelial and Mesenchymal Neoplasm 4 199417 -NCIT:C6337 Uterine Corpus Adenofibroma 5 199418 -NCIT:C6338 Uterine Corpus Adenomyoma 5 199419 -NCIT:C40235 Uterine Corpus Atypical Polypoid Adenomyoma 6 199420 -NCIT:C40226 Cervical Mixed Epithelial and Mesenchymal Neoplasm 3 199421 -NCIT:C40227 Benign Cervical Mixed Epithelial and Mesenchymal Neoplasm 4 199422 -NCIT:C40230 Cervical Adenofibroma 5 199423 -NCIT:C40231 Cervical Adenomyoma 5 199424 -NCIT:C40232 Cervical Adenomyoma, Endocervical-Type 6 199425 -NCIT:C40233 Cervical Adenomyoma, Mesonephric-Type 6 199426 -NCIT:C40234 Cervical Atypical Polypoid Adenomyoma 6 199427 -NCIT:C40228 Malignant Mixed Epithelial and Mesenchymal Neoplasm of the Cervix 4 199428 -NCIT:C36097 Cervical Carcinosarcoma 5 199429 -NCIT:C40229 Cervical Adenosarcoma 5 199430 -NCIT:C40274 Vaginal Mixed Epithelial and Mesenchymal Neoplasm 3 199431 -NCIT:C40275 Benign Vaginal Mixed Epithelial and Mesenchymal Neoplasm 4 199432 -NCIT:C40280 Benign Vaginal Mixed Tumor 5 199433 -NCIT:C40276 Malignant Vaginal Mixed Epithelial and Mesenchymal Neoplasm 4 199434 -NCIT:C40277 Vaginal Adenosarcoma 5 199435 -NCIT:C40278 Vaginal Carcinosarcoma 5 199436 -NCIT:C40279 Malignant Vaginal Mixed Tumor Resembling Synovial Sarcoma 5 199437 -NCIT:C4157 Mixed Cell Adenoma 3 199438 -NCIT:C4167 Adrenal Cortical Mixed Cell Adenoma 4 199439 -NCIT:C7994 Parathyroid Gland Mixed Cell Type Adenoma 4 199440 -NCIT:C4290 Mixed Germ Cell Tumor 3 199441 -NCIT:C123848 Childhood Mixed Germ Cell Tumor 4 199442 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 5 199443 -NCIT:C27403 Childhood Central Nervous System Mixed Germ Cell Tumor 5 199444 -NCIT:C6542 Childhood Testicular Mixed Germ Cell Tumor 5 199445 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 6 199446 -NCIT:C146861 Mediastinal Mixed Germ Cell Tumor 4 199447 -NCIT:C6444 Mediastinal Mixed Nongerminomatous Germ Cell Tumor 5 199448 -NCIT:C6442 Mediastinal Mixed Embryonal Carcinoma and Teratoma 6 199449 -NCIT:C3756 Mixed Embryonal Carcinoma and Teratoma 4 199450 -NCIT:C6351 Testicular Mixed Embryonal Carcinoma and Teratoma 5 199451 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 6 199452 -NCIT:C6442 Mediastinal Mixed Embryonal Carcinoma and Teratoma 5 199453 -NCIT:C6347 Testicular Mixed Germ Cell Tumor 4 199454 -NCIT:C6348 Testicular Mixed Choriocarcinoma and Embryonal Carcinoma 5 199455 -NCIT:C6349 Testicular Mixed Choriocarcinoma and Teratoma 5 199456 -NCIT:C6350 Testicular Mixed Embryonal Carcinoma and Seminoma 5 199457 -NCIT:C6351 Testicular Mixed Embryonal Carcinoma and Teratoma 5 199458 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 6 199459 -NCIT:C6352 Testicular Mixed Embryonal Carcinoma and Teratoma with Seminoma 5 199460 -NCIT:C6542 Childhood Testicular Mixed Germ Cell Tumor 5 199461 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 6 199462 -NCIT:C67548 Testicular Mixed Choriocarcinoma and Yolk Sac Tumor 5 199463 -NCIT:C8001 Testicular Mixed Embryonal Carcinoma and Yolk Sac Tumor 5 199464 -NCIT:C8002 Testicular Mixed Yolk Sac Tumor and Teratoma 5 199465 -NCIT:C8003 Testicular Mixed Yolk Sac Tumor and Teratoma with Seminoma 5 199466 -NCIT:C8911 Stage II Testicular Mixed Germ Cell Tumor AJCC v6 and v7 5 199467 -NCIT:C8912 Stage I Testicular Mixed Germ Cell Tumor AJCC v6 and v7 5 199468 -NCIT:C8913 Stage III Testicular Mixed Germ Cell Tumor AJCC v6 and v7 5 199469 -NCIT:C9172 Testicular Mixed Embryonal Carcinoma and Yolk Sac Tumor with Seminoma 5 199470 -NCIT:C9173 Testicular Mixed Choriocarcinoma and Seminoma 5 199471 -NCIT:C66777 Choriocarcinoma Combined with Other Germ Cell Elements 4 199472 -NCIT:C6348 Testicular Mixed Choriocarcinoma and Embryonal Carcinoma 5 199473 -NCIT:C6349 Testicular Mixed Choriocarcinoma and Teratoma 5 199474 -NCIT:C67548 Testicular Mixed Choriocarcinoma and Yolk Sac Tumor 5 199475 -NCIT:C9173 Testicular Mixed Choriocarcinoma and Seminoma 5 199476 -NCIT:C7016 Central Nervous System Mixed Germ Cell Tumor 4 199477 -NCIT:C155811 Sellar Mixed Germ Cell Tumor 5 199478 -NCIT:C27402 Adult Central Nervous System Mixed Germ Cell Tumor 5 199479 -NCIT:C27403 Childhood Central Nervous System Mixed Germ Cell Tumor 5 199480 -NCIT:C8114 Ovarian Mixed Germ Cell Tumor 4 199481 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 5 199482 -NCIT:C9010 Mixed Teratoma and Seminoma 4 199483 -NCIT:C43312 Mixed Epithelial and Mesenchymal Hair Follicle Neoplasm 3 199484 -NCIT:C43322 Benign Mixed Epithelial and Mesenchymal Hair Follicle Neoplasm 4 199485 -NCIT:C4474 Chondroid Syringoma 3 199486 -NCIT:C45602 Bronchial Mixed Squamous Cell and Glandular Papilloma 3 199487 -NCIT:C5241 Mixed Germ Cell-Sex Cord-Stromal Tumor 3 199488 -NCIT:C3754 Gonadoblastoma 4 199489 -NCIT:C39911 Testicular Gonadoblastoma 5 199490 -NCIT:C39985 Ovarian Gonadoblastoma 5 199491 -NCIT:C7321 Ovarian Mixed Germ Cell-Sex Cord-Stromal Tumor 4 199492 -NCIT:C179475 Ovarian Mixed Germ Cell-Sex Cord-Stromal Tumor, Unclassified 5 199493 -NCIT:C39985 Ovarian Gonadoblastoma 5 199494 -NCIT:C7322 Testicular Mixed Germ Cell-Sex Cord-Stromal Tumor 4 199495 -NCIT:C39911 Testicular Gonadoblastoma 5 199496 -NCIT:C39912 Testicular Mixed Germ Cell-Sex Cord-Stromal Tumor, Unclassified 5 199497 -NCIT:C8602 Pleomorphic Adenoma 3 199498 -NCIT:C40408 Breast Pleomorphic Adenoma 4 199499 -NCIT:C40409 Salivary Gland Pleomorphic Adenoma 4 199500 -NCIT:C173114 Sinonasal Pleomorphic Adenoma 5 199501 -NCIT:C173412 Laryngeal Pleomorphic Adenoma 5 199502 -NCIT:C173575 Oropharyngeal Pleomorphic Adenoma 5 199503 -NCIT:C190161 Childhood Salivary Gland Pleomorphic Adenoma 5 199504 -NCIT:C35759 Metastasizing Pleomorphic Adenoma of the Salivary Gland 5 199505 -NCIT:C4650 Parotid Gland Pleomorphic Adenoma 5 199506 -NCIT:C6242 Oral Cavity Pleomorphic Adenoma 5 199507 -NCIT:C6211 Soft Palate Pleomorphic Adenoma 6 199508 -NCIT:C6212 Hard Palate Pleomorphic Adenoma 6 199509 -NCIT:C4542 Lacrimal Gland Pleomorphic Adenoma 4 199510 -NCIT:C45603 Lung Pleomorphic Adenoma 4 199511 -NCIT:C83174 Cellular Pleomorphic Adenoma 4 199512 -NCIT:C7068 Neoplastic Polyp 2 199513 -NCIT:C172941 Inflammatory Fibroid Polyp 3 199514 -NCIT:C34584 Endocervical Polyp 3 199515 -NCIT:C6856 Cervical Microglandular Polyp 4 199516 -NCIT:C3764 Adenomatous Polyp 3 199517 -NCIT:C164253 Gastrointestinal Tract Adenoma, Intestinal-Type 4 199518 -NCIT:C172735 Gallbladder Adenoma, Intestinal-Type 5 199519 -NCIT:C6657 Ampulla of Vater Adenoma, Intestinal-Type 5 199520 -NCIT:C27412 Ampulla of Vater Tubulovillous Adenoma 6 199521 -NCIT:C6658 Ampulla of Vater Villous Adenoma 6 199522 -NCIT:C6659 Ampulla of Vater Tubular Adenoma 6 199523 -NCIT:C95773 Gastric Adenoma, Intestinal-Type 5 199524 -NCIT:C7036 Gastric Tubular Adenoma 6 199525 -NCIT:C7037 Gastric Tubulovillous Adenoma 6 199526 -NCIT:C7038 Gastric Villous Adenoma 6 199527 -NCIT:C4135 Multiple Adenomatous Polyps 4 199528 -NCIT:C7720 Gallbladder Adenoma 4 199529 -NCIT:C172731 Gallbladder Pyloric Gland Adenoma 5 199530 -NCIT:C172735 Gallbladder Adenoma, Intestinal-Type 5 199531 -NCIT:C96478 Colorectal Adenomatous Polyp 4 199532 -NCIT:C96479 Colon Adenomatous Polyp 5 199533 -NCIT:C96480 Rectal Adenomatous Polyp 5 199534 -NCIT:C40115 Fallopian Tube Endometrioid Polyp 3 199535 -NCIT:C4089 Polyposis 3 199536 -NCIT:C4135 Multiple Adenomatous Polyps 4 199537 -NCIT:C5971 Ear Polyp 3 199538 -NCIT:C4366 External Ear Polyp 4 199539 -NCIT:C6933 Middle Ear Polyp 4 199540 -NCIT:C8587 Precancerous Polyp 3 199541 -NCIT:C7201 Infrequent Neoplasm 2 199542 -NCIT:C2964 Craniopharyngioma 3 199543 -NCIT:C148076 Unresectable Craniopharyngioma 4 199544 -NCIT:C148077 Recurrent Craniopharyngioma 4 199545 -NCIT:C162612 Recurrent Adamantinomatous Craniopharyngioma 5 199546 -NCIT:C4010 Adult Craniopharyngioma 4 199547 -NCIT:C188949 Adult Adamantinomatous Craniopharyngioma 5 199548 -NCIT:C4725 Papillary Craniopharyngioma 4 199549 -NCIT:C4726 Adamantinomatous Craniopharyngioma 4 199550 -NCIT:C162612 Recurrent Adamantinomatous Craniopharyngioma 5 199551 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 5 199552 -NCIT:C188949 Adult Adamantinomatous Craniopharyngioma 5 199553 -NCIT:C7816 Childhood Craniopharyngioma 4 199554 -NCIT:C188948 Childhood Adamantinomatous Craniopharyngioma 5 199555 -NCIT:C3286 Odontogenic Neoplasm 3 199556 -NCIT:C190152 Childhood Odontogenic Neoplasm 4 199557 -NCIT:C190154 Childhood Ameloblastoma 5 199558 -NCIT:C190155 Childhood Ameloblastic Fibroma 5 199559 -NCIT:C190156 Childhood Adenomatoid Odontogenic Tumor 5 199560 -NCIT:C190157 Childhood Odontogenic Myxoma 5 199561 -NCIT:C4306 Benign Odontogenic Neoplasm 4 199562 -NCIT:C173819 Primordial Odontogenic Tumor 5 199563 -NCIT:C3710 Ameloblastic Fibro-Odontoma 5 199564 -NCIT:C4308 Cementoblastoma 5 199565 -NCIT:C4310 Adenomatoid Odontogenic Tumor 5 199566 -NCIT:C190156 Childhood Adenomatoid Odontogenic Tumor 6 199567 -NCIT:C4314 Odontogenic Fibroma 5 199568 -NCIT:C4315 Peripheral Odontogenic Fibroma 6 199569 -NCIT:C4316 Ameloblastic Fibroma 5 199570 -NCIT:C190155 Childhood Ameloblastic Fibroma 6 199571 -NCIT:C54301 Calcifying Epithelial Odontogenic Tumor 5 199572 -NCIT:C54319 Calcifying Cystic Odontogenic Tumor 5 199573 -NCIT:C54323 Dentinogenic Ghost Cell Tumor 5 199574 -NCIT:C66800 Ameloblastic Fibrodentinoma 5 199575 -NCIT:C7111 Benign Ameloblastoma 5 199576 -NCIT:C7112 Squamous Odontogenic Tumor 5 199577 -NCIT:C7452 Odontogenic Myxofibroma 5 199578 -NCIT:C7501 Odontogenic Myxoma 5 199579 -NCIT:C190157 Childhood Odontogenic Myxoma 6 199580 -NCIT:C8422 Cemento-Ossifying Fibroma 5 199581 -NCIT:C4313 Ameloblastoma 4 199582 -NCIT:C190154 Childhood Ameloblastoma 5 199583 -NCIT:C27396 Extraosseous/Peripheral Ameloblastoma 5 199584 -NCIT:C39755 Solid/Multicystic Ameloblastoma 5 199585 -NCIT:C27397 Follicular Ameloblastoma 6 199586 -NCIT:C27398 Granular Cell Ameloblastoma 7 199587 -NCIT:C39754 Acanthomatous Ameloblastoma 7 199588 -NCIT:C39757 Basal Cell Ameloblastoma 7 199589 -NCIT:C39753 Plexiform Ameloblastoma 6 199590 -NCIT:C39756 Unicystic Ameloblastoma 5 199591 -NCIT:C39758 Desmoplastic Ameloblastoma 5 199592 -NCIT:C54297 Metastasizing Ameloblastoma 5 199593 -NCIT:C7111 Benign Ameloblastoma 5 199594 -NCIT:C4812 Malignant Odontogenic Neoplasm 4 199595 -NCIT:C173720 Odontogenic Carcinoma 5 199596 -NCIT:C173733 Sclerosing Odontogenic Carcinoma 6 199597 -NCIT:C4311 Ghost Cell Odontogenic Carcinoma 6 199598 -NCIT:C54295 Primary Intraosseous Squamous Cell Carcinoma 6 199599 -NCIT:C54303 Primary Intraosseous Squamous Cell Carcinoma Derived From Keratocystic Odontogenic Tumor 7 199600 -NCIT:C7491 Primary Intraosseous Squamous Cell Carcinoma-Solid Type 7 199601 -NCIT:C7498 Keratinizing Primary Intraosseous Squamous Cell Carcinoma-Solid Type 8 199602 -NCIT:C7499 Non-Keratinizing Primary Intraosseous Squamous Cell Carcinoma -Solid Type 8 199603 -NCIT:C7500 Primary Intraosseous Squamous Cell Carcinoma Derived From Odontogenic Cyst 7 199604 -NCIT:C54300 Clear Cell Odontogenic Carcinoma 6 199605 -NCIT:C7492 Ameloblastic Carcinoma 6 199606 -NCIT:C7493 Ameloblastic Carcinoma-Primary Type 7 199607 -NCIT:C7496 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated) 7 199608 -NCIT:C54298 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated), Intraosseous 8 199609 -NCIT:C54299 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated), Peripheral 8 199610 -NCIT:C7497 Ameloblastic Carcinoma Derived From Odontogenic Cyst 7 199611 -NCIT:C173735 Odontogenic Carcinosarcoma 5 199612 -NCIT:C173738 Odontogenic Sarcoma 5 199613 -NCIT:C173739 Ameloblastic Fibrodentinosarcoma 6 199614 -NCIT:C173740 Ameloblastic Fibroodontosarcoma 6 199615 -NCIT:C4317 Ameloblastic Fibrosarcoma 6 199616 -NCIT:C3359 Rhabdomyosarcoma 3 199617 -NCIT:C121654 Spindle Cell/Sclerosing Rhabdomyosarcoma 4 199618 -NCIT:C121655 Sclerosing Rhabdomyosarcoma 5 199619 -NCIT:C178235 MYOD1-Mutant Spindle Cell/Sclerosing Rhabdomyosarcoma 5 199620 -NCIT:C6519 Spindle Cell Rhabdomyosarcoma 5 199621 -NCIT:C123397 Childhood Spindle Cell Rhabdomyosarcoma 6 199622 -NCIT:C178232 Congenital/Infantile Spindle Cell Rhabdomyosarcoma with VGLL2/NCOA2/CITED2 Rearrangements 6 199623 -NCIT:C178236 Intraosseous Spindle Cell Rhabdomyosarcoma with TFCP2/NCOA2 Rearrangements 6 199624 -NCIT:C123735 Fusion-Positive Rhabdomyosarcoma 4 199625 -NCIT:C123731 Fusion-Positive Alveolar Rhabdomyosarcoma 5 199626 -NCIT:C123736 Fusion-Negative Rhabdomyosarcoma 4 199627 -NCIT:C123732 Fusion-Negative Alveolar Rhabdomyosarcoma 5 199628 -NCIT:C127058 Uterine Corpus Rhabdomyosarcoma 4 199629 -NCIT:C128048 Cervical Rhabdomyosarcoma 4 199630 -NCIT:C128080 Vaginal Rhabdomyosarcoma 4 199631 -NCIT:C40268 Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 5 199632 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 6 199633 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 6 199634 -NCIT:C142851 Refractory Rhabdomyosarcoma 4 199635 -NCIT:C142880 Refractory Alveolar Rhabdomyosarcoma 5 199636 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 5 199637 -NCIT:C151981 Pelvic Rhabdomyosarcoma 4 199638 -NCIT:C151982 Abdominal Rhabdomyosarcoma 4 199639 -NCIT:C151983 Unresectable Rhabdomyosarcoma 4 199640 -NCIT:C159206 Kidney Rhabdomyosarcoma 4 199641 -NCIT:C159667 Bladder Rhabdomyosarcoma 4 199642 -NCIT:C159668 Bladder Embryonal Rhabdomyosarcoma 5 199643 -NCIT:C159669 Bladder Alveolar Rhabdomyosarcoma 5 199644 -NCIT:C162497 Paratesticular Rhabdomyosarcoma 4 199645 -NCIT:C162588 Penile Rhabdomyosarcoma 4 199646 -NCIT:C166414 Metastatic Rhabdomyosarcoma 4 199647 -NCIT:C166415 Locally Advanced Rhabdomyosarcoma 5 199648 -NCIT:C183250 Metastatic Embryonal Rhabdomyosarcoma 5 199649 -NCIT:C172952 Digestive System Rhabdomyosarcoma 4 199650 -NCIT:C5610 Anal Rhabdomyosarcoma 5 199651 -NCIT:C5627 Rectal Rhabdomyosarcoma 5 199652 -NCIT:C5834 Liver Rhabdomyosarcoma 5 199653 -NCIT:C5839 Gallbladder Rhabdomyosarcoma 5 199654 -NCIT:C5860 Extrahepatic Bile Duct Rhabdomyosarcoma 5 199655 -NCIT:C5847 Extrahepatic Bile Duct Embryonal Rhabdomyosarcoma 6 199656 -NCIT:C95623 Esophageal Rhabdomyosarcoma 5 199657 -NCIT:C173124 Sinonasal Rhabdomyosarcoma 4 199658 -NCIT:C175501 Conjunctival Rhabdomyosarcoma 4 199659 -NCIT:C181201 Lung Rhabdomyosarcoma 4 199660 -NCIT:C181944 Vulvar Rhabdomyosarcoma 4 199661 -NCIT:C128273 Vulvar Alveolar Rhabdomyosarcoma 5 199662 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 5 199663 -NCIT:C188071 Retroperitoneal Rhabdomyosarcoma 4 199664 -NCIT:C3749 Alveolar Rhabdomyosarcoma 4 199665 -NCIT:C123731 Fusion-Positive Alveolar Rhabdomyosarcoma 5 199666 -NCIT:C123732 Fusion-Negative Alveolar Rhabdomyosarcoma 5 199667 -NCIT:C128273 Vulvar Alveolar Rhabdomyosarcoma 5 199668 -NCIT:C142880 Refractory Alveolar Rhabdomyosarcoma 5 199669 -NCIT:C142881 Recurrent Alveolar Rhabdomyosarcoma 5 199670 -NCIT:C159669 Bladder Alveolar Rhabdomyosarcoma 5 199671 -NCIT:C188070 Prostate Alveolar Rhabdomyosarcoma 5 199672 -NCIT:C27492 Conventional Alveolar Rhabdomyosarcoma 5 199673 -NCIT:C27493 Solid Alveolar Rhabdomyosarcoma 5 199674 -NCIT:C6247 Orbit Alveolar Rhabdomyosarcoma 5 199675 -NCIT:C7958 Childhood Alveolar Rhabdomyosarcoma 5 199676 -NCIT:C4258 Pleomorphic Rhabdomyosarcoma 4 199677 -NCIT:C27369 Adult Pleomorphic Rhabdomyosarcoma 5 199678 -NCIT:C7959 Childhood Pleomorphic Rhabdomyosarcoma 5 199679 -NCIT:C4259 Rhabdomyosarcoma with Mixed Embryonal and Alveolar Features 4 199680 -NCIT:C7960 Childhood Rhabdomyosarcoma with Mixed Embryonal and Alveolar Features 5 199681 -NCIT:C4543 Orbit Rhabdomyosarcoma 4 199682 -NCIT:C6246 Orbit Embryonal Rhabdomyosarcoma 5 199683 -NCIT:C6247 Orbit Alveolar Rhabdomyosarcoma 5 199684 -NCIT:C45759 Cardiac Rhabdomyosarcoma 4 199685 -NCIT:C5190 Breast Rhabdomyosarcoma 4 199686 -NCIT:C5236 Ovarian Rhabdomyosarcoma 4 199687 -NCIT:C5464 Central Nervous System Rhabdomyosarcoma 4 199688 -NCIT:C5522 Prostate Rhabdomyosarcoma 4 199689 -NCIT:C188070 Prostate Alveolar Rhabdomyosarcoma 5 199690 -NCIT:C5525 Prostate Embryonal Rhabdomyosarcoma 5 199691 -NCIT:C6378 Testicular Rhabdomyosarcoma 4 199692 -NCIT:C6617 Mediastinal Rhabdomyosarcoma 4 199693 -NCIT:C7705 Childhood Rhabdomyosarcoma 4 199694 -NCIT:C123397 Childhood Spindle Cell Rhabdomyosarcoma 5 199695 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 5 199696 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 5 199697 -NCIT:C7957 Childhood Embryonal Rhabdomyosarcoma 5 199698 -NCIT:C35574 Childhood Botryoid-Type Embryonal Rhabdomyosarcoma 6 199699 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 7 199700 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 7 199701 -NCIT:C7958 Childhood Alveolar Rhabdomyosarcoma 5 199702 -NCIT:C7959 Childhood Pleomorphic Rhabdomyosarcoma 5 199703 -NCIT:C7960 Childhood Rhabdomyosarcoma with Mixed Embryonal and Alveolar Features 5 199704 -NCIT:C8065 Localized Childhood Rhabdomyosarcoma 5 199705 -NCIT:C8824 Recurrent Rhabdomyosarcoma 4 199706 -NCIT:C142881 Recurrent Alveolar Rhabdomyosarcoma 5 199707 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 5 199708 -NCIT:C8971 Embryonal Rhabdomyosarcoma 4 199709 -NCIT:C159668 Bladder Embryonal Rhabdomyosarcoma 5 199710 -NCIT:C183250 Metastatic Embryonal Rhabdomyosarcoma 5 199711 -NCIT:C188115 Middle Ear Embryonal Rhabdomyosarcoma 5 199712 -NCIT:C49204 Anaplastic Embryonal Rhabdomyosarcoma 5 199713 -NCIT:C5525 Prostate Embryonal Rhabdomyosarcoma 5 199714 -NCIT:C5847 Extrahepatic Bile Duct Embryonal Rhabdomyosarcoma 5 199715 -NCIT:C6246 Orbit Embryonal Rhabdomyosarcoma 5 199716 -NCIT:C7957 Childhood Embryonal Rhabdomyosarcoma 5 199717 -NCIT:C35574 Childhood Botryoid-Type Embryonal Rhabdomyosarcoma 6 199718 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 7 199719 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 7 199720 -NCIT:C9150 Botryoid-Type Embryonal Rhabdomyosarcoma 5 199721 -NCIT:C35574 Childhood Botryoid-Type Embryonal Rhabdomyosarcoma 6 199722 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 7 199723 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 7 199724 -NCIT:C36099 Adult Botryoid-Type Embryonal Rhabdomyosarcoma 6 199725 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 7 199726 -NCIT:C40268 Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 6 199727 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 7 199728 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 7 199729 -NCIT:C9130 Adult Rhabdomyosarcoma 4 199730 -NCIT:C27369 Adult Pleomorphic Rhabdomyosarcoma 5 199731 -NCIT:C36099 Adult Botryoid-Type Embryonal Rhabdomyosarcoma 5 199732 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 6 199733 -NCIT:C3812 Carcinoma of Unknown Primary 3 199734 -NCIT:C162595 Head and Neck Carcinoma of Unknown Primary 4 199735 -NCIT:C173585 Neck Carcinoma of Unknown Primary 5 199736 -NCIT:C7713 Neck Squamous Cell Carcinoma of Unknown Primary 6 199737 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 7 199738 -NCIT:C187051 Human Papillomavirus-Related Head and Neck Squamous Cell Carcinoma of Unknown Primary 5 199739 -NCIT:C190149 Human Papillomavirus-Negative Head and Neck Squamous Cell Carcinoma of Unknown Primary 5 199740 -NCIT:C163975 Neuroendocrine Carcinoma of Unknown Primary 4 199741 -NCIT:C170960 Advanced Carcinoma Of Unknown Primary 4 199742 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 5 199743 -NCIT:C170961 Resectable Carcinoma of Unknown Primary 4 199744 -NCIT:C170962 Resectable Adenocarcinoma of Unknown Primary 5 199745 -NCIT:C4039 Adenocarcinoma of Unknown Primary 4 199746 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 5 199747 -NCIT:C170962 Resectable Adenocarcinoma of Unknown Primary 5 199748 -NCIT:C8099 Squamous Cell Carcinoma of Unknown Primary 4 199749 -NCIT:C165474 Locally Advanced Squamous Cell Carcinoma of Unknown Primary 5 199750 -NCIT:C187051 Human Papillomavirus-Related Head and Neck Squamous Cell Carcinoma of Unknown Primary 5 199751 -NCIT:C190149 Human Papillomavirus-Negative Head and Neck Squamous Cell Carcinoma of Unknown Primary 5 199752 -NCIT:C7713 Neck Squamous Cell Carcinoma of Unknown Primary 5 199753 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 6 199754 -NCIT:C8100 Undifferentiated Carcinoma of Unknown Primary 4 199755 -NCIT:C9181 Recurrent Carcinoma of Unknown Primary 4 199756 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 5 199757 -NCIT:C3844 Gallbladder Carcinoma 3 199758 -NCIT:C134660 Gallbladder Cancer by AJCC v8 Stage 4 199759 -NCIT:C134663 Stage 0 Gallbladder Cancer AJCC v8 5 199760 -NCIT:C134665 Stage I Gallbladder Cancer AJCC v8 5 199761 -NCIT:C134667 Stage II Gallbladder Cancer AJCC v8 5 199762 -NCIT:C134670 Stage IIA Gallbladder Cancer AJCC v8 6 199763 -NCIT:C134671 Stage IIB Gallbladder Cancer AJCC v8 6 199764 -NCIT:C134672 Stage III Gallbladder Cancer AJCC v8 5 199765 -NCIT:C134673 Stage IIIA Gallbladder Cancer AJCC v8 6 199766 -NCIT:C134674 Stage IIIB Gallbladder Cancer AJCC v8 6 199767 -NCIT:C134675 Stage IV Gallbladder Cancer AJCC v8 5 199768 -NCIT:C134676 Stage IVA Gallbladder Cancer AJCC v8 6 199769 -NCIT:C134678 Stage IVB Gallbladder Cancer AJCC v8 6 199770 -NCIT:C162753 Refractory Gallbladder Carcinoma 4 199771 -NCIT:C162754 Metastatic Gallbladder Carcinoma 4 199772 -NCIT:C162755 Advanced Gallbladder Carcinoma 5 199773 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 5 199774 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 6 199775 -NCIT:C175214 Incidental Gallbladder Carcinoma 4 199776 -NCIT:C4008 Recurrent Gallbladder Carcinoma 4 199777 -NCIT:C7356 Gallbladder Adenosquamous Carcinoma 4 199778 -NCIT:C7649 Localized Gallbladder Carcinoma 4 199779 -NCIT:C7890 Unresectable Gallbladder Carcinoma 4 199780 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 5 199781 -NCIT:C189064 Unresectable Gallbladder Adenocarcinoma 5 199782 -NCIT:C90512 Gallbladder Cancer by AJCC v6 Stage 4 199783 -NCIT:C4439 Stage 0 Gallbladder Cancer AJCC v6 and v7 5 199784 -NCIT:C5737 Stage I Gallbladder Cancer AJCC v6 5 199785 -NCIT:C5738 Stage II Gallbladder Cancer AJCC v6 5 199786 -NCIT:C5739 Stage III Gallbladder Cancer AJCC v6 5 199787 -NCIT:C5740 Stage IV Gallbladder Cancer AJCC v6 5 199788 -NCIT:C91229 Gallbladder Cancer by AJCC v7 Stage 4 199789 -NCIT:C4439 Stage 0 Gallbladder Cancer AJCC v6 and v7 5 199790 -NCIT:C90216 Stage I Gallbladder Cancer AJCC v7 5 199791 -NCIT:C90217 Stage II Gallbladder Cancer AJCC v7 5 199792 -NCIT:C90218 Stage III Gallbladder Cancer AJCC v7 5 199793 -NCIT:C88056 Stage IIIA Gallbladder Cancer AJCC v7 6 199794 -NCIT:C88057 Stage IIIB Gallbladder Cancer AJCC v7 6 199795 -NCIT:C90219 Stage IV Gallbladder Cancer AJCC v7 5 199796 -NCIT:C5741 Stage IVA Gallbladder Cancer AJCC v7 6 199797 -NCIT:C5742 Stage IVB Gallbladder Cancer AJCC v7 6 199798 -NCIT:C9166 Gallbladder Adenocarcinoma 4 199799 -NCIT:C189064 Unresectable Gallbladder Adenocarcinoma 5 199800 -NCIT:C43604 Gallbladder Adenocarcinoma, Intestinal-Type 5 199801 -NCIT:C43605 Gallbladder Clear Cell Adenocarcinoma 5 199802 -NCIT:C5743 Gallbladder Intracholecystic Papillary Neoplasm with an Associated Invasive Carcinoma 5 199803 -NCIT:C5744 Gallbladder Mucinous Adenocarcinoma 5 199804 -NCIT:C5745 Gallbladder Signet Ring Cell Carcinoma 5 199805 -NCIT:C9169 Gallbladder Adenocarcinoma with Squamous Metaplasia 5 199806 -NCIT:C96887 Gallbladder Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 5 199807 -NCIT:C96890 Gallbladder Hepatoid Adenocarcinoma 5 199808 -NCIT:C96891 Gallbladder Cribriform Carcinoma 5 199809 -NCIT:C96915 Gallbladder Adenocarcinoma, Biliary Type 5 199810 -NCIT:C96916 Gallbladder Adenocarcinoma, Gastric Foveolar Type 5 199811 -NCIT:C9167 Gallbladder Undifferentiated Carcinoma 4 199812 -NCIT:C5838 Gallbladder Undifferentiated Carcinoma, Spindle and Giant Cell Type 5 199813 -NCIT:C9170 Gallbladder Squamous Cell Carcinoma 4 199814 -NCIT:C96888 Gallbladder Carcinosarcoma 4 199815 -NCIT:C96919 Gallbladder Neuroendocrine Carcinoma 4 199816 -NCIT:C6763 Gallbladder Small Cell Neuroendocrine Carcinoma 5 199817 -NCIT:C96921 Gallbladder Large Cell Neuroendocrine Carcinoma 5 199818 -NCIT:C96927 Gallbladder Mixed Adenoneuroendocrine Carcinoma 4 199819 -NCIT:C96928 Gallbladder Goblet Cell Carcinoid 5 199820 -NCIT:C3867 Fallopian Tube Carcinoma 3 199821 -NCIT:C115429 Recurrent Fallopian Tube Carcinoma 4 199822 -NCIT:C170750 Recurrent Platinum-Resistant Fallopian Tube Carcinoma 5 199823 -NCIT:C170755 Recurrent Fallopian Tube Undifferentiated Carcinoma 5 199824 -NCIT:C170757 Recurrent Fallopian Tube Transitional Cell Carcinoma 5 199825 -NCIT:C170766 Recurrent Fallopian Tube Adenocarcinoma 5 199826 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 6 199827 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 6 199828 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 6 199829 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 6 199830 -NCIT:C191395 Recurrent Platinum-Sensitive Fallopian Tube Carcinoma 5 199831 -NCIT:C139983 Fallopian Tube Cancer by AJCC v8 Stage 4 199832 -NCIT:C139984 Stage I Fallopian Tube Cancer AJCC v8 5 199833 -NCIT:C139985 Stage IA Fallopian Tube Cancer AJCC v8 6 199834 -NCIT:C139986 Stage IB Fallopian Tube Cancer AJCC v8 6 199835 -NCIT:C139987 Stage IC Fallopian Tube Cancer AJCC v8 6 199836 -NCIT:C139988 Stage II Fallopian Tube Cancer AJCC v8 5 199837 -NCIT:C139989 Stage IIA Fallopian Tube Cancer AJCC v8 6 199838 -NCIT:C139990 Stage IIB Fallopian Tube Cancer AJCC v8 6 199839 -NCIT:C139991 Stage III Fallopian Tube Cancer AJCC v8 5 199840 -NCIT:C139992 Stage IIIA Fallopian Tube Cancer AJCC v8 6 199841 -NCIT:C139993 Stage IIIA1 Fallopian Tube Cancer AJCC v8 7 199842 -NCIT:C139994 Stage IIIA2 Fallopian Tube Cancer AJCC v8 7 199843 -NCIT:C139995 Stage IIIB Fallopian Tube Cancer AJCC v8 6 199844 -NCIT:C139996 Stage IIIC Fallopian Tube Cancer AJCC v8 6 199845 -NCIT:C139997 Stage IV Fallopian Tube Cancer AJCC v8 5 199846 -NCIT:C139998 Stage IVA Fallopian Tube Cancer AJCC v8 6 199847 -NCIT:C139999 Stage IVB Fallopian Tube Cancer AJCC v8 6 199848 -NCIT:C152047 Refractory Fallopian Tube Carcinoma 4 199849 -NCIT:C157621 Platinum-Resistant Fallopian Tube Carcinoma 5 199850 -NCIT:C170750 Recurrent Platinum-Resistant Fallopian Tube Carcinoma 6 199851 -NCIT:C170971 Refractory Fallopian Tube Adenocarcinoma 5 199852 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 6 199853 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 6 199854 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 6 199855 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 6 199856 -NCIT:C178674 Refractory Fallopian Tube Transitional Cell Carcinoma 5 199857 -NCIT:C178675 Refractory Fallopian Tube Undifferentiated Carcinoma 5 199858 -NCIT:C178698 Platinum-Refractory Fallopian Tube Carcinoma 5 199859 -NCIT:C156063 Metastatic Fallopian Tube Carcinoma 4 199860 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 5 199861 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 6 199862 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 5 199863 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 5 199864 -NCIT:C160873 Platinum-Sensitive Fallopian Tube Carcinoma 4 199865 -NCIT:C191395 Recurrent Platinum-Sensitive Fallopian Tube Carcinoma 5 199866 -NCIT:C170969 Unresectable Fallopian Tube Carcinoma 4 199867 -NCIT:C170970 Unresectable Fallopian Tube Adenocarcinoma 5 199868 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 6 199869 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 6 199870 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 5 199871 -NCIT:C40104 Fallopian Tube Transitional Cell Carcinoma 4 199872 -NCIT:C170757 Recurrent Fallopian Tube Transitional Cell Carcinoma 5 199873 -NCIT:C178674 Refractory Fallopian Tube Transitional Cell Carcinoma 5 199874 -NCIT:C40455 Hereditary Fallopian Tube Carcinoma 4 199875 -NCIT:C6265 Fallopian Tube Adenocarcinoma 4 199876 -NCIT:C170766 Recurrent Fallopian Tube Adenocarcinoma 5 199877 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 6 199878 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 6 199879 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 6 199880 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 6 199881 -NCIT:C170970 Unresectable Fallopian Tube Adenocarcinoma 5 199882 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 6 199883 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 6 199884 -NCIT:C170971 Refractory Fallopian Tube Adenocarcinoma 5 199885 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 6 199886 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 6 199887 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 6 199888 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 6 199889 -NCIT:C40099 Fallopian Tube Serous Adenocarcinoma 5 199890 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 6 199891 -NCIT:C126456 Fallopian Tube High Grade Serous Adenocarcinoma 6 199892 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 7 199893 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 7 199894 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 7 199895 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 7 199896 -NCIT:C40103 Fallopian Tube Mucinous Adenocarcinoma 5 199897 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 6 199898 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 6 199899 -NCIT:C40105 Stage 0 Fallopian Tube Cancer AJCC v7 5 199900 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 6 199901 -NCIT:C6279 Fallopian Tube Endometrioid Adenocarcinoma 5 199902 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 6 199903 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 6 199904 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 6 199905 -NCIT:C6280 Fallopian Tube Clear Cell Adenocarcinoma 5 199906 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 6 199907 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 6 199908 -NCIT:C6278 Fallopian Tube Gestational Choriocarcinoma 4 199909 -NCIT:C6281 Fallopian Tube Undifferentiated Carcinoma 4 199910 -NCIT:C170755 Recurrent Fallopian Tube Undifferentiated Carcinoma 5 199911 -NCIT:C178675 Refractory Fallopian Tube Undifferentiated Carcinoma 5 199912 -NCIT:C6282 Fallopian Tube Squamous Cell Carcinoma 4 199913 -NCIT:C90499 Fallopian Tube Cancer by AJCC v6 Stage 4 199914 -NCIT:C8720 Stage I Fallopian Tube Cancer AJCC v6 and v7 5 199915 -NCIT:C6269 Stage IA Fallopian Tube Cancer AJCC v6 and v7 6 199916 -NCIT:C6270 Stage IB Fallopian Tube Cancer AJCC v6 and v7 6 199917 -NCIT:C6271 Stage IC Fallopian Tube Cancer AJCC v6 and v7 6 199918 -NCIT:C8721 Stage II Fallopian Tube Cancer AJCC v6 and v7 5 199919 -NCIT:C6272 Stage IIA Fallopian Tube Cancer AJCC v6 and v7 6 199920 -NCIT:C6276 Stage IIC Fallopian Tube Cancer AJCC v6 and v7 6 199921 -NCIT:C6277 Stage IIB Fallopian Tube Cancer AJCC v6 and v7 6 199922 -NCIT:C8722 Stage III Fallopian Tube Cancer AJCC v6 5 199923 -NCIT:C8963 Stage IV Fallopian Tube Cancer AJCC v6 and v7 5 199924 -NCIT:C91219 Fallopian Tube Cancer by AJCC v7 Stage 4 199925 -NCIT:C40105 Stage 0 Fallopian Tube Cancer AJCC v7 5 199926 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 6 199927 -NCIT:C8720 Stage I Fallopian Tube Cancer AJCC v6 and v7 5 199928 -NCIT:C6269 Stage IA Fallopian Tube Cancer AJCC v6 and v7 6 199929 -NCIT:C6270 Stage IB Fallopian Tube Cancer AJCC v6 and v7 6 199930 -NCIT:C6271 Stage IC Fallopian Tube Cancer AJCC v6 and v7 6 199931 -NCIT:C8721 Stage II Fallopian Tube Cancer AJCC v6 and v7 5 199932 -NCIT:C6272 Stage IIA Fallopian Tube Cancer AJCC v6 and v7 6 199933 -NCIT:C6276 Stage IIC Fallopian Tube Cancer AJCC v6 and v7 6 199934 -NCIT:C6277 Stage IIB Fallopian Tube Cancer AJCC v6 and v7 6 199935 -NCIT:C8963 Stage IV Fallopian Tube Cancer AJCC v6 and v7 5 199936 -NCIT:C89692 Stage III Fallopian Tube Cancer AJCC v7 5 199937 -NCIT:C6273 Stage IIIA Fallopian Tube Cancer AJCC v7 6 199938 -NCIT:C6274 Stage IIIB Fallopian Tube Cancer AJCC v7 6 199939 -NCIT:C6275 Stage IIIC Fallopian Tube Cancer AJCC v7 6 199940 -NCIT:C4199 Epithelial-Myoepithelial Carcinoma 3 199941 -NCIT:C175288 Lacrimal Gland Epithelial-Myoepithelial Carcinoma 4 199942 -NCIT:C35701 Salivary Gland Epithelial-Myoepithelial Carcinoma 4 199943 -NCIT:C45545 Lung Epithelial-Myoepithelial Carcinoma 4 199944 -NCIT:C4536 Metastatic Pituitary Neuroendocrine Tumor 3 199945 -NCIT:C163956 Locally Advanced Pituitary Neuroendocrine Tumor 4 199946 -NCIT:C163959 Metastatic Unresectable Pituitary Neuroendocrine Tumor 4 199947 -NCIT:C5962 Metastatic Lactotroph Pituitary Neuroendocrine Tumor 4 199948 -NCIT:C5963 Metastatic Somatotroph Pituitary Neuroendocrine Tumor 4 199949 -NCIT:C5964 Metastatic Corticotroph Pituitary Neuroendocrine Tumor 4 199950 -NCIT:C5965 Metastatic Thyrotroph Pituitary Neuroendocrine Tumor 4 199951 -NCIT:C4783 Borderline Ovarian Epithelial Tumor 3 199952 -NCIT:C115352 Recurrent Borderline Ovarian Surface Epithelial-Stromal Tumor 4 199953 -NCIT:C158616 Borderline Ovarian Mixed Epithelial Tumor/Atypical Proliferative Ovarian Mixed Epithelial Tumor 4 199954 -NCIT:C7281 Borderline Ovarian Seromucinous Tumor/Atypical Proliferative Ovarian Seromucinous Tumor 5 199955 -NCIT:C179251 Borderline Ovarian Endometrioid Tumor 4 199956 -NCIT:C159486 Borderline Ovarian Endometrioid Tumor/Atypical Proliferative Ovarian Endometrioid Tumor with Microinvasion 5 199957 -NCIT:C7983 Borderline Ovarian Endometrioid Tumor/Atypical Proliferative Ovarian Endometrioid Tumor 5 199958 -NCIT:C40069 Borderline Ovarian Endometrioid Adenofibroma 6 199959 -NCIT:C27289 Borderline Ovarian Endometrioid Cystadenofibroma 7 199960 -NCIT:C179259 Borderline Ovarian Seromucinous Tumor 4 199961 -NCIT:C159313 Borderline Ovarian Seromucinous Tumor/Atypical Proliferative Ovarian Seromucinous Tumor with Microinvasion 5 199962 -NCIT:C7281 Borderline Ovarian Seromucinous Tumor/Atypical Proliferative Ovarian Seromucinous Tumor 5 199963 -NCIT:C40036 Borderline Ovarian Mucinous Tumor 4 199964 -NCIT:C122586 Borderline Ovarian Mucinous Tumor/Atypical Proliferative Ovarian Mucinous Tumor 5 199965 -NCIT:C159312 Borderline Ovarian Mucinous Tumor/Atypical Proliferative Ovarian Mucinous Tumor with Intraepithelial Carcinoma 6 199966 -NCIT:C40037 Borderline Ovarian Mucinous Tumor, Intestinal Type 5 199967 -NCIT:C40038 Borderline Ovarian Mucinous Tumor, Endocervical-Like 5 199968 -NCIT:C66775 Borderline Ovarian Mucinous Adenofibroma 5 199969 -NCIT:C40080 Borderline Ovarian Clear Cell Tumor 4 199970 -NCIT:C40081 Borderline Ovarian Clear Cell Adenofibroma 5 199971 -NCIT:C126308 Borderline Ovarian Clear Cell Tumor/Atypical Proliferative Ovarian Clear Cell Tumor 6 199972 -NCIT:C40082 Borderline Ovarian Clear Cell Tumor/Atypical Proliferative Ovarian Clear Cell Tumor with Intraepithelial Carcinoma 7 199973 -NCIT:C40083 Borderline Ovarian Clear Cell Cystadenofibroma 6 199974 -NCIT:C5226 Borderline Ovarian Serous Tumor 4 199975 -NCIT:C122584 Borderline Ovarian Serous Tumor/Atypical Proliferative Ovarian Serous Tumor 5 199976 -NCIT:C122585 Borderline Ovarian Serous Tumor-Micropapillary Variant/Non-Invasive Low Grade Ovarian Serous Carcinoma 5 199977 -NCIT:C40028 Borderline Ovarian Serous Adenofibroma 5 199978 -NCIT:C40029 Borderline Ovarian Serous Cystadenofibroma 6 199979 -NCIT:C9459 Borderline Ovarian Brenner Tumor 4 199980 -NCIT:C94821 Stage I Borderline Ovarian Surface Epithelial-Stromal Tumor 4 199981 -NCIT:C94822 Stage II Borderline Ovarian Surface Epithelial-Stromal Tumor 4 199982 -NCIT:C94824 Stage III Borderline Ovarian Surface Epithelial-Stromal Tumor 4 199983 -NCIT:C94825 Stage IV Borderline Ovarian Surface Epithelial-Stromal Tumor 4 199984 -NCIT:C4862 Ovarian Sex Cord-Stromal Tumor 3 199985 -NCIT:C3072 Ovarian Gynandroblastoma 4 199986 -NCIT:C189333 Childhood Ovarian Gynandroblastoma 5 199987 -NCIT:C39966 Ovarian Sertoli-Stromal Cell Tumor 4 199988 -NCIT:C2880 Ovarian Sertoli-Leydig Cell Tumor 5 199989 -NCIT:C189292 Childhood Ovarian Sertoli-Leydig Cell Tumor 6 199990 -NCIT:C189319 Ovarian Sertoli-Leydig Cell Tumor Molecular Subtypes 6 199991 -NCIT:C189328 DICER1-Mutant Ovarian Sertoli-Leydig Cell Tumor 7 199992 -NCIT:C189329 FOXL2 c.402C>G (p.Cys134Trp)-Mutant Ovarian Sertoli-Leydig Cell Tumor 7 199993 -NCIT:C189331 DICER1/FOXL2-Wildtype Ovarian Sertoli-Leydig Cell Tumor 7 199994 -NCIT:C39968 Moderately Differentiated Ovarian Sertoli-Leydig Cell Tumor 6 199995 -NCIT:C39972 Moderately Differentiated Ovarian Sertoli-Leydig Cell Tumor, Variant with Heterologous Elements 7 199996 -NCIT:C39970 Ovarian Sertoli-Leydig Cell Tumor with Heterologous Elements 6 199997 -NCIT:C126322 Ovarian Retiform Sertoli-Leydig Cell Tumor, Variant with Heterologous Elements 7 199998 -NCIT:C39972 Moderately Differentiated Ovarian Sertoli-Leydig Cell Tumor, Variant with Heterologous Elements 7 199999 -NCIT:C39973 Poorly Differentiated Ovarian Sertoli-Leydig Cell Tumor, Variant with Heterologous Elements 7 200000 -NCIT:C39971 Ovarian Retiform Sertoli-Leydig Cell Tumor 6 200001 -NCIT:C126322 Ovarian Retiform Sertoli-Leydig Cell Tumor, Variant with Heterologous Elements 7 200002 -NCIT:C39974 Ovarian Sertoli-Leydig Cell Tumor with Retiform Elements 6 200003 -NCIT:C4209 Well Differentiated Ovarian Sertoli-Leydig Cell Tumor 6 200004 -NCIT:C4210 Poorly Differentiated Ovarian Sertoli-Leydig Cell Tumor 6 200005 -NCIT:C39973 Poorly Differentiated Ovarian Sertoli-Leydig Cell Tumor, Variant with Heterologous Elements 7 200006 -NCIT:C39977 Ovarian Stromal-Leydig Cell Tumor 5 200007 -NCIT:C7133 Ovarian Sertoli Cell Tumor 5 200008 -NCIT:C4211 Ovarian Sertoli Cell Tumor with Lipid Storage 6 200009 -NCIT:C39978 Ovarian Sex Cord-Stromal Tumor, Not Otherwise Specified 4 200010 -NCIT:C40436 Ovarian Sex Cord-Stromal Tumor Associated with Peutz-Jeghers Syndrome 4 200011 -NCIT:C4208 Ovarian Sex Cord Tumor with Annular Tubules 4 200012 -NCIT:C4215 Ovarian Steroid Cell Tumor 4 200013 -NCIT:C3202 Ovarian Stromal Luteoma 5 200014 -NCIT:C39979 Ovarian Steroid Cell Tumor, Not Otherwise Specified 5 200015 -NCIT:C39980 Well Differentiated Ovarian Steroid Cell Tumor 6 200016 -NCIT:C39981 Malignant Ovarian Steroid Cell Tumor 6 200017 -NCIT:C5231 Ovarian Leydig Cell Tumor 5 200018 -NCIT:C39983 Ovarian Leydig Cell Tumor, Non-Hilar Type 6 200019 -NCIT:C39984 Ovarian Leydig Cell Tumor, Not Otherwise Specified 6 200020 -NCIT:C4214 Ovarian Hilus Cell Tumor 6 200021 -NCIT:C66749 Ovarian Stromal Tumor with Minor Sex Cord Elements 4 200022 -NCIT:C6803 Benign Ovarian Sex Cord-Stromal Tumor 4 200023 -NCIT:C121953 Ovarian Microcystic Stromal Tumor 5 200024 -NCIT:C3498 Ovarian Fibroma 5 200025 -NCIT:C189288 Childhood Ovarian Fibroma 6 200026 -NCIT:C7291 Ovarian Cellular Fibroma 6 200027 -NCIT:C39977 Ovarian Stromal-Leydig Cell Tumor 5 200028 -NCIT:C4204 Ovarian Sclerosing Stromal Tumor 5 200029 -NCIT:C189289 Childhood Ovarian Sclerosing Stromal Tumor 6 200030 -NCIT:C5219 Benign Ovarian Thecoma 5 200031 -NCIT:C39964 Typical Ovarian Thecoma 6 200032 -NCIT:C6264 Benign Ovarian Luteinized Thecoma 6 200033 -NCIT:C126321 Ovarian Luteinized Thecoma Associated with Sclerosing Peritonitis 7 200034 -NCIT:C7287 Ovarian Granulosa-Stromal Cell Tumor 4 200035 -NCIT:C6261 Ovarian Granulosa Cell Tumor 5 200036 -NCIT:C7288 Adult Ovarian Granulosa Cell Tumor 6 200037 -NCIT:C7289 Juvenile Ovarian Granulosa Cell Tumor 6 200038 -NCIT:C40434 Juvenile Bilateral Ovarian Granulosa Cell Tumor 7 200039 -NCIT:C8403 Malignant Ovarian Granulosa Cell Tumor 6 200040 -NCIT:C160619 Recurrent Malignant Ovarian Granulosa Cell Tumor 7 200041 -NCIT:C7290 Ovarian Tumor of the Thecoma/Fibroma Group 5 200042 -NCIT:C3498 Ovarian Fibroma 6 200043 -NCIT:C189288 Childhood Ovarian Fibroma 7 200044 -NCIT:C7291 Ovarian Cellular Fibroma 7 200045 -NCIT:C39965 Ovarian Signet Ring Stromal Tumor 6 200046 -NCIT:C4204 Ovarian Sclerosing Stromal Tumor 6 200047 -NCIT:C189289 Childhood Ovarian Sclerosing Stromal Tumor 7 200048 -NCIT:C66989 Ovarian Thecoma 6 200049 -NCIT:C4203 Ovarian Luteinized Thecoma 7 200050 -NCIT:C6263 Malignant Ovarian Luteinized Thecoma 8 200051 -NCIT:C6264 Benign Ovarian Luteinized Thecoma 8 200052 -NCIT:C126321 Ovarian Luteinized Thecoma Associated with Sclerosing Peritonitis 9 200053 -NCIT:C5219 Benign Ovarian Thecoma 7 200054 -NCIT:C39964 Typical Ovarian Thecoma 8 200055 -NCIT:C6264 Benign Ovarian Luteinized Thecoma 8 200056 -NCIT:C126321 Ovarian Luteinized Thecoma Associated with Sclerosing Peritonitis 9 200057 -NCIT:C6929 Malignant Ovarian Thecoma 7 200058 -NCIT:C6263 Malignant Ovarian Luteinized Thecoma 8 200059 -NCIT:C8053 Malignant Ovarian Sex Cord-Stromal Tumor 4 200060 -NCIT:C39981 Malignant Ovarian Steroid Cell Tumor 5 200061 -NCIT:C4210 Poorly Differentiated Ovarian Sertoli-Leydig Cell Tumor 5 200062 -NCIT:C39973 Poorly Differentiated Ovarian Sertoli-Leydig Cell Tumor, Variant with Heterologous Elements 6 200063 -NCIT:C6929 Malignant Ovarian Thecoma 5 200064 -NCIT:C6263 Malignant Ovarian Luteinized Thecoma 6 200065 -NCIT:C8403 Malignant Ovarian Granulosa Cell Tumor 5 200066 -NCIT:C160619 Recurrent Malignant Ovarian Granulosa Cell Tumor 6 200067 -NCIT:C54262 Ear Carcinoma 3 200068 -NCIT:C6081 External Ear Carcinoma 4 200069 -NCIT:C4176 Ceruminous Adenocarcinoma 5 200070 -NCIT:C6082 External Ear Basal Cell Carcinoma 5 200071 -NCIT:C6083 External Ear Squamous Cell Carcinoma 5 200072 -NCIT:C6089 Middle Ear Carcinoma 4 200073 -NCIT:C6086 Middle Ear Squamous Cell Carcinoma 5 200074 -NCIT:C6848 Middle Ear Adenocarcinoma 5 200075 -NCIT:C91741 Middle Ear Carcinoma In Situ 5 200076 -NCIT:C6358 Testicular Sex Cord-Stromal Tumor 3 200077 -NCIT:C162466 Intratubular Large Cell Hyalinizing Sertoli Cell Neoplasia 4 200078 -NCIT:C39948 Malignant Testicular Sex Cord-Stromal Tumor 4 200079 -NCIT:C39949 Testicular Tumor of the Thecoma/Fibroma Group 4 200080 -NCIT:C162966 Testicular Signet Ring Stromal Tumor 5 200081 -NCIT:C39951 Testicular Fibroma 5 200082 -NCIT:C39952 Testicular Thecoma 5 200083 -NCIT:C4672 Testicular Sertoli Cell Tumor 4 200084 -NCIT:C39944 Testicular Large Cell Calcifying Sertoli Cell Tumor 5 200085 -NCIT:C6522 Benign Testicular Sertoli Cell Tumor 5 200086 -NCIT:C39943 Testicular Sertoli Cell Tumor, Lipid Rich Variant 6 200087 -NCIT:C39945 Testicular Sclerosing Sertoli Cell Tumor 6 200088 -NCIT:C6523 Malignant Testicular Sertoli Cell Tumor 5 200089 -NCIT:C6356 Testicular Leydig Cell Tumor 4 200090 -NCIT:C39942 Malignant Testicular Leydig Cell Tumor 5 200091 -NCIT:C6357 Testicular Granulosa Cell Tumor 4 200092 -NCIT:C39946 Adult Testicular Granulosa Cell Tumor 5 200093 -NCIT:C39947 Juvenile Testicular Granulosa Cell Tumor 5 200094 -NCIT:C66748 Unclassified Testicular Sex Cord-Stromal Tumor 4 200095 -NCIT:C66991 Mixed Testicular Sex Cord-Stromal Tumor 4 200096 -NCIT:C7596 Malignant Myoepithelioma 3 200097 -NCIT:C121787 Malignant Mixed Tumor, Not Otherwise Specified 4 200098 -NCIT:C142830 Lung Myoepithelial Carcinoma 4 200099 -NCIT:C162732 Recurrent Malignant Myoepithelioma 4 200100 -NCIT:C162733 Refractory Malignant Myoepithelioma 4 200101 -NCIT:C175274 Lacrimal Gland Myoepithelial Carcinoma 4 200102 -NCIT:C35700 Salivary Gland Myoepithelial Carcinoma 4 200103 -NCIT:C40395 Breast Malignant Myoepithelioma 4 200104 -NCIT:C7708 Childhood Malignant Liver Neoplasm 3 200105 -NCIT:C189934 Childhood Liver Embryonal Sarcoma 4 200106 -NCIT:C190020 Childhood Liver Angiosarcoma 4 200107 -NCIT:C3728 Hepatoblastoma 4 200108 -NCIT:C142854 Refractory Hepatoblastoma 5 200109 -NCIT:C161838 Hepatocellular Malignant Neoplasm, Not Otherwise Specified 5 200110 -NCIT:C189923 Epithelial Hepatoblastoma 5 200111 -NCIT:C189924 Epithelial Hepatoblastoma with Pleomorphic Pattern 6 200112 -NCIT:C7093 Hepatoblastoma with Pure Fetal Epithelial Differentiation 6 200113 -NCIT:C7094 Hepatoblastoma with Combined Fetal and Embryonal Epithelial Differentiation 6 200114 -NCIT:C7095 Macrotrabecular Hepatoblastoma 6 200115 -NCIT:C7096 Small Cell Undifferentiated Hepatoblastoma 6 200116 -NCIT:C189927 Hepatoblastoma by PRETEXT Stage 5 200117 -NCIT:C7139 PRETEXT Stage 1 Hepatoblastoma 6 200118 -NCIT:C7140 PRETEXT Stage 2 Hepatoblastoma 6 200119 -NCIT:C7141 PRETEXT Stage 3 Hepatoblastoma 6 200120 -NCIT:C7142 PRETEXT Stage 4 Hepatoblastoma 6 200121 -NCIT:C189929 Hepatoblastoma by Postsurgical Stage 5 200122 -NCIT:C7143 Postsurgical Stage IV Hepatoblastoma 6 200123 -NCIT:C7144 Postsurgical Stage III Hepatoblastoma 6 200124 -NCIT:C7145 Postsurgical Stage II Hepatoblastoma 6 200125 -NCIT:C7146 Postsurgical Stage I Hepatoblastoma 6 200126 -NCIT:C7097 Mixed Epithelial and Mesenchymal Hepatoblastoma 5 200127 -NCIT:C189926 Non-Teratoid Hepatoblastoma 6 200128 -NCIT:C7098 Teratoid Hepatoblastoma 6 200129 -NCIT:C8641 Unresectable Hepatoblastoma 5 200130 -NCIT:C8642 Resectable Hepatoblastoma 5 200131 -NCIT:C8643 Recurrent Hepatoblastoma 5 200132 -NCIT:C7839 Recurrent Childhood Malignant Liver Neoplasm 4 200133 -NCIT:C8643 Recurrent Hepatoblastoma 5 200134 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 5 200135 -NCIT:C7955 Childhood Hepatocellular Carcinoma 4 200136 -NCIT:C189932 Childhood Fibrolamellar Carcinoma 5 200137 -NCIT:C5708 Stage III Childhood Hepatocellular Carcinoma AJCC v7 5 200138 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 5 200139 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 5 200140 -NCIT:C7838 Stage IV Childhood Hepatocellular Carcinoma AJCC v7 5 200141 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 5 200142 -NCIT:C96830 Calcifying Nested Stromal-Epithelial Tumor 4 200143 -NCIT:C96847 Extrarenal Rhabdoid Tumor of the Liver 4 200144 -NCIT:C9106 Urethral Carcinoma 3 200145 -NCIT:C115210 Distal Urethral Carcinoma 4 200146 -NCIT:C115334 Proximal Urethral Carcinoma 4 200147 -NCIT:C140457 Urethral Cancer by AJCC v8 Stage 4 200148 -NCIT:C140458 Stage 0a Urethral Cancer AJCC v8 5 200149 -NCIT:C140459 Stage 0is Urethral Cancer AJCC v8 5 200150 -NCIT:C140460 Stage I Urethral Cancer AJCC v8 5 200151 -NCIT:C140461 Stage II Urethral Cancer AJCC v8 5 200152 -NCIT:C140462 Stage III Urethral Cancer AJCC v8 5 200153 -NCIT:C140463 Stage IV Urethral Cancer AJCC v8 5 200154 -NCIT:C140464 Urethral Cancer by AJCC v7 Stage 4 200155 -NCIT:C6195 Stage 0 Urethral Cancer AJCC v7 5 200156 -NCIT:C4531 Stage 0is Urethral Cancer AJCC v7 6 200157 -NCIT:C6196 Stage 0a Urethral Cancer AJCC v7 6 200158 -NCIT:C6197 Stage I Urethral Cancer AJCC v7 5 200159 -NCIT:C6198 Stage II Urethral Cancer AJCC v7 5 200160 -NCIT:C6199 Stage III Urethral Cancer AJCC v7 5 200161 -NCIT:C6200 Stage IV Urethral Cancer AJCC v7 5 200162 -NCIT:C27819 Metastatic Urethral Carcinoma 4 200163 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 5 200164 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 6 200165 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 6 200166 -NCIT:C6165 Urethral Squamous Cell Carcinoma 4 200167 -NCIT:C39862 Human Papillomavirus-Related Urethral Squamous Cell Carcinoma 5 200168 -NCIT:C39874 Urethral Verrucous Carcinoma 5 200169 -NCIT:C6166 Urethral Urothelial Carcinoma 4 200170 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 5 200171 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 5 200172 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 6 200173 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 6 200174 -NCIT:C158585 Unresectable Urethral Urothelial Carcinoma 5 200175 -NCIT:C176996 Refractory Urethral Urothelial Carcinoma 5 200176 -NCIT:C39900 Prostatic Urethra Urothelial Carcinoma 5 200177 -NCIT:C6167 Urethral Adenocarcinoma 4 200178 -NCIT:C6172 Urethral Clear Cell Adenocarcinoma 5 200179 -NCIT:C7371 Accessory Urethral Gland Adenocarcinoma 5 200180 -NCIT:C180948 Skene Gland Adenocarcinoma of the Urethra 6 200181 -NCIT:C39864 Cowper Gland Adenocarcinoma of the Urethra 6 200182 -NCIT:C39865 Littre Gland Adenocarcinoma of the Urethra 6 200183 -NCIT:C6168 Urethral Undifferentiated Carcinoma 4 200184 -NCIT:C7508 Recurrent Urethral Carcinoma 4 200185 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 5 200186 -NCIT:C9231 Merkel Cell Carcinoma 3 200187 -NCIT:C115440 Recurrent Merkel Cell Carcinoma 4 200188 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 5 200189 -NCIT:C165740 Locally Recurrent Merkel Cell Carcinoma 5 200190 -NCIT:C128247 Vulvar Merkel Cell Carcinoma 4 200191 -NCIT:C136869 Merkel Cell Carcinoma by AJCC v7 Stage 4 200192 -NCIT:C85887 Stage 0 Merkel Cell Carcinoma AJCC v7 5 200193 -NCIT:C85889 Stage I Merkel Cell Carcinoma AJCC v7 5 200194 -NCIT:C85890 Stage IA Merkel Cell Carcinoma AJCC v7 6 200195 -NCIT:C85892 Stage IB Merkel Cell Carcinoma AJCC v7 6 200196 -NCIT:C85893 Stage II Merkel Cell Carcinoma AJCC v7 5 200197 -NCIT:C85894 Stage IIA Merkel Cell Carcinoma AJCC v7 6 200198 -NCIT:C85895 Stage IIB Merkel Cell Carcinoma AJCC v7 6 200199 -NCIT:C85896 Stage IIC Merkel Cell Carcinoma AJCC v7 6 200200 -NCIT:C85897 Stage III Merkel Cell Carcinoma AJCC v7 5 200201 -NCIT:C85898 Stage IIIA Merkel Cell Carcinoma AJCC v7 6 200202 -NCIT:C85899 Stage IIIB Merkel Cell Carcinoma AJCC v7 6 200203 -NCIT:C85900 Stage IV Merkel Cell Carcinoma AJCC v7 5 200204 -NCIT:C136870 Merkel Cell Carcinoma by AJCC v8 Stage 4 200205 -NCIT:C136871 Merkel Cell Carcinoma by AJCC v8 Clinical Stage 5 200206 -NCIT:C136872 Clinical Stage 0 Merkel Cell Carcinoma AJCC v8 6 200207 -NCIT:C136873 Clinical Stage I Merkel Cell Carcinoma AJCC v8 6 200208 -NCIT:C136874 Clinical Stage II Merkel Cell Carcinoma AJCC v8 6 200209 -NCIT:C136875 Clinical Stage IIA Merkel Cell Carcinoma AJCC v8 7 200210 -NCIT:C136876 Clinical Stage IIB Merkel Cell Carcinoma AJCC v8 7 200211 -NCIT:C136877 Clinical Stage III Merkel Cell Carcinoma AJCC v8 6 200212 -NCIT:C136878 Clinical Stage IV Merkel Cell Carcinoma AJCC v8 6 200213 -NCIT:C136880 Merkel Cell Carcinoma by AJCC v8 Pathologic Stage 5 200214 -NCIT:C136881 Pathologic Stage 0 Merkel Cell Carcinoma AJCC v8 6 200215 -NCIT:C136882 Pathologic Stage I Merkel Cell Carcinoma AJCC v8 6 200216 -NCIT:C136883 Pathologic Stage II Merkel Cell Carcinoma AJCC v8 6 200217 -NCIT:C136884 Pathologic Stage IIA Merkel Cell Carcinoma AJCC v8 7 200218 -NCIT:C136885 Pathologic Stage IIB Merkel Cell Carcinoma AJCC v8 7 200219 -NCIT:C136886 Pathologic Stage III Merkel Cell Carcinoma AJCC v8 6 200220 -NCIT:C136887 Pathologic Stage IIIA Merkel Cell Carcinoma AJCC v8 7 200221 -NCIT:C136888 Pathologic Stage IIIB Merkel Cell Carcinoma AJCC v8 7 200222 -NCIT:C136889 Pathologic Stage IV Merkel Cell Carcinoma AJCC v8 6 200223 -NCIT:C162572 Metastatic Merkel Cell Carcinoma 4 200224 -NCIT:C165300 Advanced Merkel Cell Carcinoma 5 200225 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 5 200226 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 5 200227 -NCIT:C162786 Unresectable Merkel Cell Carcinoma 4 200228 -NCIT:C165741 Refractory Merkel Cell Carcinoma 4 200229 -NCIT:C9294 Histiocytic and Dendritic Cell Neoplasm 3 200230 -NCIT:C134168 Refractory Histiocytic and Dendritic Cell Neoplasm 4 200231 -NCIT:C134177 Refractory Langerhans Cell Histiocytosis 5 200232 -NCIT:C136489 Refractory Erdheim-Chester Disease 5 200233 -NCIT:C134172 Recurrent Histiocytic and Dendritic Cell Neoplasm 4 200234 -NCIT:C134175 Recurrent Langerhans Cell Histiocytosis 5 200235 -NCIT:C150692 Tumors Derived from Langerhans Cells 4 200236 -NCIT:C3107 Langerhans Cell Histiocytosis 5 200237 -NCIT:C114483 Childhood Langerhans Cell Histiocytosis 6 200238 -NCIT:C123395 Childhood Langerhans Cell Histiocytosis with Risk Organ Involvement 7 200239 -NCIT:C123396 Childhood Langerhans Cell Histiocytosis without Risk Organ Involvement 7 200240 -NCIT:C114929 Adult Langerhans Cell Histiocytosis 6 200241 -NCIT:C129806 Central Nervous System Langerhans Cell Histiocytosis 6 200242 -NCIT:C134175 Recurrent Langerhans Cell Histiocytosis 6 200243 -NCIT:C134177 Refractory Langerhans Cell Histiocytosis 6 200244 -NCIT:C150701 Langerhans Cell Histiocytosis, Monostotic 6 200245 -NCIT:C142833 Pulmonary Langerhans Cell Histiocytosis 7 200246 -NCIT:C3016 Eosinophilic Granuloma 7 200247 -NCIT:C150702 Langerhans Cell Histiocytosis, Polyostotic 6 200248 -NCIT:C6920 Hand-Schuller-Christian Disease 7 200249 -NCIT:C150703 Langerhans Cell Histiocytosis, Disseminated 6 200250 -NCIT:C3160 Letterer-Siwe Disease 7 200251 -NCIT:C168983 Cutaneous Langerhans Cell Histiocytosis 6 200252 -NCIT:C173486 Head and Neck Langerhans Cell Histiocytosis 6 200253 -NCIT:C156407 Thyroid Gland Langerhans Cell Histiocytosis 7 200254 -NCIT:C173487 Oral Mucosa Langerhans Cell Histiocytosis 7 200255 -NCIT:C178607 Bone Langerhans Cell Histiocytosis 6 200256 -NCIT:C6921 Langerhans Cell Sarcoma 5 200257 -NCIT:C168980 Cutaneous Histiocytic and Dendritic Cell Neoplasm 4 200258 -NCIT:C168983 Cutaneous Langerhans Cell Histiocytosis 5 200259 -NCIT:C168984 Cutaneous Indeterminate Dendritic Cell Tumor 5 200260 -NCIT:C168991 Cutaneous Erdheim-Chester Disease 5 200261 -NCIT:C27514 Adult Xanthogranuloma 5 200262 -NCIT:C3451 Juvenile Xanthogranuloma 5 200263 -NCIT:C173485 Head and Neck Histiocytic and Dendritic Cell Neoplasm 4 200264 -NCIT:C156406 Thyroid Gland Histiocytic and Dendritic Cell Neoplasm 5 200265 -NCIT:C156407 Thyroid Gland Langerhans Cell Histiocytosis 6 200266 -NCIT:C156408 Thyroid Gland Follicular Dendritic Cell Sarcoma 6 200267 -NCIT:C173486 Head and Neck Langerhans Cell Histiocytosis 5 200268 -NCIT:C156407 Thyroid Gland Langerhans Cell Histiocytosis 6 200269 -NCIT:C173487 Oral Mucosa Langerhans Cell Histiocytosis 6 200270 -NCIT:C173580 Head and Neck Follicular Dendritic Cell Sarcoma 5 200271 -NCIT:C156408 Thyroid Gland Follicular Dendritic Cell Sarcoma 6 200272 -NCIT:C27349 Histiocytic Sarcoma 4 200273 -NCIT:C129807 Central Nervous System Histiocytic Sarcoma 5 200274 -NCIT:C53972 Erdheim-Chester Disease 4 200275 -NCIT:C129808 Central Nervous System Erdheim-Chester Disease 5 200276 -NCIT:C136489 Refractory Erdheim-Chester Disease 5 200277 -NCIT:C168991 Cutaneous Erdheim-Chester Disease 5 200278 -NCIT:C178609 Bone Erdheim-Chester Disease 5 200279 -NCIT:C81758 Fibroblastic Reticular Cell Tumor 4 200280 -NCIT:C81767 Indeterminate Dendritic Cell Tumor 4 200281 -NCIT:C168984 Cutaneous Indeterminate Dendritic Cell Tumor 5 200282 -NCIT:C81772 Disseminated Juvenile Xanthogranuloma 4 200283 -NCIT:C9281 Follicular Dendritic Cell Sarcoma 4 200284 -NCIT:C172846 Conventional Follicular Dendritic Cell Sarcoma 5 200285 -NCIT:C172847 EBV-Positive Inflammatory Follicular Dendritic Cell Sarcoma 5 200286 -NCIT:C150704 EBV-Positive Inflammatory Follicular Dendritic Cell Sarcoma of the Digestive System 6 200287 -NCIT:C173580 Head and Neck Follicular Dendritic Cell Sarcoma 5 200288 -NCIT:C156408 Thyroid Gland Follicular Dendritic Cell Sarcoma 6 200289 -NCIT:C183374 Mediastinal Follicular Dendritic Cell Sarcoma 5 200290 -NCIT:C9282 Interdigitating Dendritic Cell Sarcoma 4 200291 -NCIT:C92944 Central Nervous System Histiocytic and Dendritic Cell Neoplasm 4 200292 -NCIT:C129806 Central Nervous System Langerhans Cell Histiocytosis 5 200293 -NCIT:C129807 Central Nervous System Histiocytic Sarcoma 5 200294 -NCIT:C129808 Central Nervous System Erdheim-Chester Disease 5 200295 -NCIT:C9295 Mast Cell Neoplasm 3 200296 -NCIT:C84269 Mastocytosis 4 200297 -NCIT:C7137 Cutaneous Mastocytosis 5 200298 -NCIT:C43277 Pure Cutaneous Mastocytosis 6 200299 -NCIT:C3218 Diffuse Cutaneous Mastocytosis 7 200300 -NCIT:C3433 Urticaria Pigmentosa/Maculopapular Cutaneous Mastocytosis 7 200301 -NCIT:C7138 Solitary Mastocytoma of the Skin 7 200302 -NCIT:C9235 Systemic Mastocytosis 5 200303 -NCIT:C43284 Primary Systemic Mastocytosis 6 200304 -NCIT:C115460 Smoldering Systemic Mastocytosis 7 200305 -NCIT:C188041 Smoldering Systemic Mastocytosis with an Associated Hematological Neoplasm 8 200306 -NCIT:C3169 Mast Cell Leukemia 7 200307 -NCIT:C188031 Mast Cell Leukemia Associated with Another Hematological Neoplasm 8 200308 -NCIT:C9284 Systemic Mastocytosis with an Associated Hematological Neoplasm 7 200309 -NCIT:C188031 Mast Cell Leukemia Associated with Another Hematological Neoplasm 8 200310 -NCIT:C188041 Smoldering Systemic Mastocytosis with an Associated Hematological Neoplasm 8 200311 -NCIT:C9285 Aggressive Systemic Mastocytosis 7 200312 -NCIT:C186732 Aggressive Systemic Mastocytosis Associated with Germ Cell Tumor 8 200313 -NCIT:C9286 Indolent Systemic Mastocytosis 7 200314 -NCIT:C8991 Malignant Mastocytosis 6 200315 -NCIT:C170816 Refractory Malignant Mastocytosis 7 200316 -NCIT:C170817 Recurrent Malignant Mastocytosis 7 200317 -NCIT:C186735 Systemic Mastocytosis Associated with Germ Cell Tumor 7 200318 -NCIT:C186732 Aggressive Systemic Mastocytosis Associated with Germ Cell Tumor 8 200319 -NCIT:C3169 Mast Cell Leukemia 7 200320 -NCIT:C188031 Mast Cell Leukemia Associated with Another Hematological Neoplasm 8 200321 -NCIT:C9284 Systemic Mastocytosis with an Associated Hematological Neoplasm 7 200322 -NCIT:C188031 Mast Cell Leukemia Associated with Another Hematological Neoplasm 8 200323 -NCIT:C188041 Smoldering Systemic Mastocytosis with an Associated Hematological Neoplasm 8 200324 -NCIT:C9285 Aggressive Systemic Mastocytosis 7 200325 -NCIT:C186732 Aggressive Systemic Mastocytosis Associated with Germ Cell Tumor 8 200326 -NCIT:C9348 Mast Cell Sarcoma 7 200327 -NCIT:C9303 Mastocytoma 4 200328 -NCIT:C3217 Benign Mastocytoma 5 200329 -NCIT:C7136 Extracutaneous Mastocytoma 5 200330 -NCIT:C9325 Adrenal Cortical Carcinoma 3 200331 -NCIT:C104030 Adrenal Cortical Carcinoma by ENSAT Stage 4 200332 -NCIT:C104031 ENSAT Stage I Adrenal Cortical Carcinoma 5 200333 -NCIT:C104032 ENSAT Stage II Adrenal Cortical Carcinoma 5 200334 -NCIT:C104033 ENSAT Stage III Adrenal Cortical Carcinoma 5 200335 -NCIT:C104034 ENSAT Stage IV Adrenal Cortical Carcinoma 5 200336 -NCIT:C141098 Adrenal Cortical Carcinoma by AJCC v7 Stage 4 200337 -NCIT:C9214 Stage I Adrenal Cortical Carcinoma AJCC v7 5 200338 -NCIT:C9215 Stage II Adrenal Cortical Carcinoma AJCC v7 5 200339 -NCIT:C9216 Stage III Adrenal Cortical Carcinoma AJCC v7 5 200340 -NCIT:C9217 Stage IV Adrenal Cortical Carcinoma AJCC v7 5 200341 -NCIT:C141100 Adrenal Cortical Carcinoma by AJCC v8 Stage 4 200342 -NCIT:C141101 Stage I Adrenal Cortical Carcinoma AJCC v8 5 200343 -NCIT:C141102 Stage II Adrenal Cortical Carcinoma AJCC v8 5 200344 -NCIT:C141103 Stage III Adrenal Cortical Carcinoma AJCC v8 5 200345 -NCIT:C141104 Stage IV Adrenal Cortical Carcinoma AJCC v8 5 200346 -NCIT:C150580 Unresectable Adrenal Cortical Carcinoma 4 200347 -NCIT:C156070 Metastatic Adrenal Cortical Carcinoma 4 200348 -NCIT:C174443 Locally Advanced Adrenal Cortical Carcinoma 5 200349 -NCIT:C191863 Advanced Adrenal Cortical Carcinoma 5 200350 -NCIT:C188036 Refractory Adrenal Cortical Carcinoma 4 200351 -NCIT:C188181 Adrenal Cortical Oncocytic Carcinoma 4 200352 -NCIT:C188182 Adrenal Cortical Myxoid Carcinoma 4 200353 -NCIT:C188183 Adrenal Cortical High Grade Carcinoma 4 200354 -NCIT:C190069 Childhood Adrenal Cortical Carcinoma 4 200355 -NCIT:C6417 Recurrent Adrenal Cortical Carcinoma 4 200356 -NCIT:C68635 Adrenal Cortical Low Grade Carcinoma 4 200357 -NCIT:C68644 Adrenal Cortical Sarcomatoid Carcinoma 4 200358 -NCIT:C9347 Tracheal Carcinoma 3 200359 -NCIT:C4448 Tracheal Squamous Cell Carcinoma 4 200360 -NCIT:C3639 Tracheal Carcinoma In Situ 5 200361 -NCIT:C6051 Tracheal Adenoid Cystic Carcinoma 4 200362 -NCIT:C7628 Refractory Neoplasm 2 200363 -NCIT:C120186 Refractory Malignant Neoplasm 3 200364 -NCIT:C123739 Refractory Malignant Germ Cell Tumor 4 200365 -NCIT:C123737 Refractory Childhood Malignant Germ Cell Tumor 5 200366 -NCIT:C170955 Platinum-Resistant Malignant Germ Cell Tumor 5 200367 -NCIT:C170956 Resectable Platinum-Resistant Malignant Germ Cell Tumor 6 200368 -NCIT:C170957 Metastatic Platinum-Resistant Malignant Germ Cell Tumor 6 200369 -NCIT:C170958 Advanced Platinum-Resistant Malignant Germ Cell Tumor 7 200370 -NCIT:C191408 Refractory Malignant Nongerminomatous Germ Cell Tumor 5 200371 -NCIT:C9077 Refractory Malignant Testicular Germ Cell Tumor 5 200372 -NCIT:C133737 Refractory Malignant Solid Neoplasm 4 200373 -NCIT:C148027 Refractory Childhood Malignant Solid Neoplasm 5 200374 -NCIT:C178283 Refractory Extracranial Malignant Solid Neoplasm 5 200375 -NCIT:C142858 Refractory Rhabdoid Tumor 4 200376 -NCIT:C162723 Refractory Atypical Teratoid/Rhabdoid Tumor 5 200377 -NCIT:C162731 Refractory Rhabdoid Tumor of the Kidney 5 200378 -NCIT:C188884 Refractory Extrarenal Rhabdoid Tumor 5 200379 -NCIT:C171171 Refractory Extrarenal Rhabdoid Tumor of the Ovary 6 200380 -NCIT:C147983 Refractory Melanoma 4 200381 -NCIT:C150544 Refractory Cutaneous Melanoma 5 200382 -NCIT:C173328 Refractory Non-Cutaneous Melanoma 5 200383 -NCIT:C173329 Refractory Ocular Melanoma 6 200384 -NCIT:C173335 Refractory Uveal Melanoma 7 200385 -NCIT:C180894 Refractory Mucosal Melanoma 6 200386 -NCIT:C182024 Refractory Metastatic Melanoma 5 200387 -NCIT:C148099 Refractory Malignant Thymoma 4 200388 -NCIT:C148301 Refractory Sarcoma 4 200389 -NCIT:C139001 Refractory Soft Tissue Sarcoma 5 200390 -NCIT:C142851 Refractory Rhabdomyosarcoma 6 200391 -NCIT:C142880 Refractory Alveolar Rhabdomyosarcoma 7 200392 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 7 200393 -NCIT:C148295 Refractory Undifferentiated Pleomorphic Sarcoma 6 200394 -NCIT:C148296 Refractory Synovial Sarcoma 6 200395 -NCIT:C156474 Refractory Kaposi Sarcoma 6 200396 -NCIT:C158427 Refractory Desmoplastic Small Round Cell Tumor 6 200397 -NCIT:C162722 Refractory Epithelioid Sarcoma 6 200398 -NCIT:C171168 Refractory Extraskeletal Myxoid Chondrosarcoma 6 200399 -NCIT:C180979 Refractory Clear Cell Sarcoma of Soft Tissue 6 200400 -NCIT:C185882 Refractory Malignant Gastrointestinal Stromal Tumor 6 200401 -NCIT:C187194 Refractory Childhood Soft Tissue Sarcoma 6 200402 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 7 200403 -NCIT:C188034 Refractory Alveolar Soft Part Sarcoma 6 200404 -NCIT:C142853 Refractory Ewing Sarcoma 5 200405 -NCIT:C142857 Refractory Osteosarcoma 5 200406 -NCIT:C187192 Refractory Childhood Osteosarcoma 6 200407 -NCIT:C148294 Refractory Leiomyosarcoma 5 200408 -NCIT:C150594 Refractory Liposarcoma 5 200409 -NCIT:C148297 Refractory Myxoid Liposarcoma 6 200410 -NCIT:C150593 Refractory Dedifferentiated Liposarcoma 6 200411 -NCIT:C155987 Refractory Malignant Peripheral Nerve Sheath Tumor 5 200412 -NCIT:C162725 Refractory Epithelioid Malignant Peripheral Nerve Sheath Tumor 6 200413 -NCIT:C158429 Refractory Fibrosarcoma 5 200414 -NCIT:C158431 Refractory Spindle Cell Sarcoma 5 200415 -NCIT:C148512 Refractory Human Papillomavirus-Related Malignant Neoplasm 4 200416 -NCIT:C150525 Refractory Malignant Bone Neoplasm 4 200417 -NCIT:C157682 Refractory Primary Bone Lymphoma 5 200418 -NCIT:C162721 Refractory Chordoma 5 200419 -NCIT:C162729 Refractory Dedifferentiated Chordoma 6 200420 -NCIT:C150527 Refractory Malignant Female Reproductive System Neoplasm 4 200421 -NCIT:C150092 Refractory Uterine Corpus Cancer 5 200422 -NCIT:C150093 Refractory Endometrial Carcinoma 6 200423 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 7 200424 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 7 200425 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 7 200426 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 7 200427 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 8 200428 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 8 200429 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 8 200430 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 8 200431 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 8 200432 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 7 200433 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 7 200434 -NCIT:C158381 Refractory Uterine Corpus Carcinosarcoma 6 200435 -NCIT:C152048 Refractory Female Reproductive System Carcinoma 5 200436 -NCIT:C150091 Refractory Ovarian Carcinoma 6 200437 -NCIT:C147561 Platinum-Resistant Ovarian Carcinoma 7 200438 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 8 200439 -NCIT:C179459 Unresectable Platinum-Resistant Ovarian Carcinoma 8 200440 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 8 200441 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 200442 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 200443 -NCIT:C170968 Refractory Ovarian Adenocarcinoma 7 200444 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 8 200445 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 8 200446 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 9 200447 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 9 200448 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 8 200449 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 8 200450 -NCIT:C178671 Refractory Ovarian Seromucinous Carcinoma 7 200451 -NCIT:C178682 Refractory Ovarian Transitional Cell Carcinoma 7 200452 -NCIT:C178683 Refractory Ovarian Undifferentiated Carcinoma 7 200453 -NCIT:C178700 Platinum-Refractory Ovarian Carcinoma 7 200454 -NCIT:C179207 Refractory Ovarian Squamous Cell Carcinoma 7 200455 -NCIT:C183126 Refractory Malignant Ovarian Brenner Tumor 7 200456 -NCIT:C150093 Refractory Endometrial Carcinoma 6 200457 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 7 200458 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 7 200459 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 7 200460 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 7 200461 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 8 200462 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 8 200463 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 8 200464 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 8 200465 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 8 200466 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 7 200467 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 7 200468 -NCIT:C152047 Refractory Fallopian Tube Carcinoma 6 200469 -NCIT:C157621 Platinum-Resistant Fallopian Tube Carcinoma 7 200470 -NCIT:C170750 Recurrent Platinum-Resistant Fallopian Tube Carcinoma 8 200471 -NCIT:C170971 Refractory Fallopian Tube Adenocarcinoma 7 200472 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 8 200473 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 8 200474 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 8 200475 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 8 200476 -NCIT:C178674 Refractory Fallopian Tube Transitional Cell Carcinoma 7 200477 -NCIT:C178675 Refractory Fallopian Tube Undifferentiated Carcinoma 7 200478 -NCIT:C178698 Platinum-Refractory Fallopian Tube Carcinoma 7 200479 -NCIT:C170513 Refractory Cervical Carcinoma 6 200480 -NCIT:C181034 Refractory Cervical Squamous Cell Carcinoma 7 200481 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 8 200482 -NCIT:C181036 Refractory Cervical Adenocarcinoma 7 200483 -NCIT:C174508 Refractory Vulvar Carcinoma 6 200484 -NCIT:C185304 Refractory Vulvar Squamous Cell Carcinoma 7 200485 -NCIT:C174509 Refractory Vaginal Carcinoma 6 200486 -NCIT:C185303 Refractory Vaginal Squamous Cell Carcinoma 7 200487 -NCIT:C169021 Platinum-Resistant Malignant Female Reproductive System Neoplasm 5 200488 -NCIT:C147561 Platinum-Resistant Ovarian Carcinoma 6 200489 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 7 200490 -NCIT:C179459 Unresectable Platinum-Resistant Ovarian Carcinoma 7 200491 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 7 200492 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 8 200493 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 8 200494 -NCIT:C157621 Platinum-Resistant Fallopian Tube Carcinoma 6 200495 -NCIT:C170750 Recurrent Platinum-Resistant Fallopian Tube Carcinoma 7 200496 -NCIT:C171171 Refractory Extrarenal Rhabdoid Tumor of the Ovary 5 200497 -NCIT:C178697 Platinum-Refractory Malignant Female Reproductive System Neoplasm 5 200498 -NCIT:C178698 Platinum-Refractory Fallopian Tube Carcinoma 6 200499 -NCIT:C178700 Platinum-Refractory Ovarian Carcinoma 6 200500 -NCIT:C150529 Refractory Malignant Neoplasm of Multiple Primary Sites 4 200501 -NCIT:C150534 Refractory Malignant Male Reproductive System Neoplasm 4 200502 -NCIT:C138022 Refractory Testicular Lymphoma 5 200503 -NCIT:C177149 Refractory Male Reproductive System Carcinoma 5 200504 -NCIT:C167255 Refractory Prostate Carcinoma 6 200505 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 7 200506 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 8 200507 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 8 200508 -NCIT:C161609 Double-Negative Prostate Carcinoma 8 200509 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 8 200510 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 8 200511 -NCIT:C167256 Refractory Prostate Adenocarcinoma 7 200512 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 7 200513 -NCIT:C177150 Refractory Penile Carcinoma 6 200514 -NCIT:C9077 Refractory Malignant Testicular Germ Cell Tumor 5 200515 -NCIT:C150535 Refractory Malignant Mesothelioma 4 200516 -NCIT:C159675 Refractory Pleural Malignant Mesothelioma 5 200517 -NCIT:C150537 Refractory Malignant Soft Tissue Neoplasm 4 200518 -NCIT:C139001 Refractory Soft Tissue Sarcoma 5 200519 -NCIT:C142851 Refractory Rhabdomyosarcoma 6 200520 -NCIT:C142880 Refractory Alveolar Rhabdomyosarcoma 7 200521 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 7 200522 -NCIT:C148295 Refractory Undifferentiated Pleomorphic Sarcoma 6 200523 -NCIT:C148296 Refractory Synovial Sarcoma 6 200524 -NCIT:C156474 Refractory Kaposi Sarcoma 6 200525 -NCIT:C158427 Refractory Desmoplastic Small Round Cell Tumor 6 200526 -NCIT:C162722 Refractory Epithelioid Sarcoma 6 200527 -NCIT:C171168 Refractory Extraskeletal Myxoid Chondrosarcoma 6 200528 -NCIT:C180979 Refractory Clear Cell Sarcoma of Soft Tissue 6 200529 -NCIT:C185882 Refractory Malignant Gastrointestinal Stromal Tumor 6 200530 -NCIT:C187194 Refractory Childhood Soft Tissue Sarcoma 6 200531 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 7 200532 -NCIT:C188034 Refractory Alveolar Soft Part Sarcoma 6 200533 -NCIT:C175664 Refractory Malignant Glomus Tumor 5 200534 -NCIT:C188884 Refractory Extrarenal Rhabdoid Tumor 5 200535 -NCIT:C171171 Refractory Extrarenal Rhabdoid Tumor of the Ovary 6 200536 -NCIT:C150541 Refractory Malignant Endocrine Neoplasm 4 200537 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 5 200538 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 6 200539 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 6 200540 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 7 200541 -NCIT:C165742 Refractory Neuroendocrine Carcinoma 5 200542 -NCIT:C155937 Refractory Digestive System Neuroendocrine Carcinoma 6 200543 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 7 200544 -NCIT:C165741 Refractory Merkel Cell Carcinoma 6 200545 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 6 200546 -NCIT:C191853 Refractory Small Cell Neuroendocrine Carcinoma 6 200547 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 7 200548 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 8 200549 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 8 200550 -NCIT:C191854 Refractory Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 200551 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 8 200552 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 8 200553 -NCIT:C188036 Refractory Adrenal Cortical Carcinoma 5 200554 -NCIT:C150543 Refractory Malignant Urinary System Neoplasm 4 200555 -NCIT:C162719 Refractory Urinary System Carcinoma 5 200556 -NCIT:C150316 Refractory Bladder Carcinoma 6 200557 -NCIT:C148286 Refractory Stage 0 Bladder Cancer AJCC v6 and v7 7 200558 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 7 200559 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 8 200560 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 7 200561 -NCIT:C150364 Refractory Urothelial Carcinoma 6 200562 -NCIT:C150365 Platinum-Resistant Urothelial Carcinoma 7 200563 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 7 200564 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 8 200565 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 7 200566 -NCIT:C176996 Refractory Urethral Urothelial Carcinoma 7 200567 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 7 200568 -NCIT:C172623 Refractory Kidney Carcinoma 6 200569 -NCIT:C162727 Refractory Kidney Medullary Carcinoma 7 200570 -NCIT:C165745 Refractory Renal Cell Carcinoma 7 200571 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 8 200572 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 7 200573 -NCIT:C162731 Refractory Rhabdoid Tumor of the Kidney 5 200574 -NCIT:C150546 Refractory Malignant Skin Neoplasm 4 200575 -NCIT:C142877 Refractory Primary Cutaneous Lymphoma 5 200576 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 6 200577 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 6 200578 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 7 200579 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 7 200580 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 7 200581 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 7 200582 -NCIT:C8687 Refractory Mycosis Fungoides 7 200583 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 8 200584 -NCIT:C150544 Refractory Cutaneous Melanoma 5 200585 -NCIT:C156104 Refractory Blastic Plasmacytoid Dendritic Cell Neoplasm 5 200586 -NCIT:C165735 Refractory Skin Squamous Cell Carcinoma 5 200587 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 6 200588 -NCIT:C165741 Refractory Merkel Cell Carcinoma 5 200589 -NCIT:C152078 Refractory Malignant Head and Neck Neoplasm 4 200590 -NCIT:C150530 Refractory Malignant Oral Neoplasm 5 200591 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 6 200592 -NCIT:C150532 Refractory Malignant Pharyngeal Neoplasm 5 200593 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 6 200594 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 6 200595 -NCIT:C148434 Refractory Nasopharyngeal Carcinoma 6 200596 -NCIT:C150539 Refractory Malignant Thyroid Gland Neoplasm 5 200597 -NCIT:C142983 Refractory Thyroid Gland Carcinoma 6 200598 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 7 200599 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 8 200600 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 8 200601 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 9 200602 -NCIT:C170832 Refractory Thyroid Gland Anaplastic Carcinoma 7 200603 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 7 200604 -NCIT:C151907 Refractory Head and Neck Carcinoma 5 200605 -NCIT:C142983 Refractory Thyroid Gland Carcinoma 6 200606 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 7 200607 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 8 200608 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 8 200609 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 9 200610 -NCIT:C170832 Refractory Thyroid Gland Anaplastic Carcinoma 7 200611 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 7 200612 -NCIT:C148152 Refractory Head and Neck Squamous Cell Carcinoma 6 200613 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 7 200614 -NCIT:C148383 Refractory Laryngeal Squamous Cell Carcinoma 7 200615 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 7 200616 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 7 200617 -NCIT:C148401 Refractory Sinonasal Squamous Cell Carcinoma 7 200618 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 200619 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 200620 -NCIT:C148434 Refractory Nasopharyngeal Carcinoma 6 200621 -NCIT:C177722 Refractory Salivary Gland Carcinoma 6 200622 -NCIT:C179151 Platinum-Resistant Head and Neck Carcinoma 6 200623 -NCIT:C177721 Refractory Malignant Salivary Gland Neoplasm 5 200624 -NCIT:C177722 Refractory Salivary Gland Carcinoma 6 200625 -NCIT:C153286 Refractory Ewing Sarcoma/Peripheral Primitive Neuroectodermal Tumor 4 200626 -NCIT:C142850 Refractory Peripheral Primitive Neuroectodermal Tumor 5 200627 -NCIT:C142853 Refractory Ewing Sarcoma 5 200628 -NCIT:C153842 Refractory Primary Malignant Central Nervous System Neoplasm 4 200629 -NCIT:C138020 Refractory Central Nervous System Lymphoma 5 200630 -NCIT:C146989 Refractory Central Nervous System Non-Hodgkin Lymphoma 6 200631 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 7 200632 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 200633 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 7 200634 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 200635 -NCIT:C142855 Refractory Malignant Glioma 5 200636 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 6 200637 -NCIT:C146734 Refractory Glioblastoma 6 200638 -NCIT:C163960 Refractory Small Cell Glioblastoma 7 200639 -NCIT:C163962 Refractory Gliosarcoma 7 200640 -NCIT:C176998 Refractory Giant Cell Glioblastoma 7 200641 -NCIT:C153865 Refractory WHO Grade 3 Glioma 6 200642 -NCIT:C160905 Refractory Anaplastic Pleomorphic Xanthoastrocytoma 7 200643 -NCIT:C160913 Refractory Anaplastic Ependymoma 7 200644 -NCIT:C169074 Refractory Anaplastic Oligodendroglioma 7 200645 -NCIT:C169075 Refractory Anaplastic Astrocytoma 7 200646 -NCIT:C153845 Refractory Malignant Brain Neoplasm 5 200647 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 6 200648 -NCIT:C142856 Refractory Medulloblastoma 6 200649 -NCIT:C147110 Refractory Medulloblastoma, SHH-Activated 7 200650 -NCIT:C180892 Refractory Medulloblastoma, WNT-Activated 7 200651 -NCIT:C160915 Refractory Anaplastic Ganglioglioma 5 200652 -NCIT:C162723 Refractory Atypical Teratoid/Rhabdoid Tumor 5 200653 -NCIT:C183152 Refractory Malignant Leptomeningeal Neoplasm 5 200654 -NCIT:C162703 Refractory Childhood Malignant Neoplasm 4 200655 -NCIT:C122624 Refractory Childhood Acute Lymphoblastic Leukemia 5 200656 -NCIT:C123737 Refractory Childhood Malignant Germ Cell Tumor 5 200657 -NCIT:C142854 Refractory Hepatoblastoma 5 200658 -NCIT:C148027 Refractory Childhood Malignant Solid Neoplasm 5 200659 -NCIT:C162731 Refractory Rhabdoid Tumor of the Kidney 5 200660 -NCIT:C187192 Refractory Childhood Osteosarcoma 5 200661 -NCIT:C187194 Refractory Childhood Soft Tissue Sarcoma 5 200662 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 6 200663 -NCIT:C187197 Refractory Childhood Lymphoma 5 200664 -NCIT:C115458 Refractory Childhood Hodgkin Lymphoma 6 200665 -NCIT:C187449 Refractory Childhood Acute Myeloid Leukemia 5 200666 -NCIT:C188884 Refractory Extrarenal Rhabdoid Tumor 5 200667 -NCIT:C171171 Refractory Extrarenal Rhabdoid Tumor of the Ovary 6 200668 -NCIT:C173565 Refractory Primitive Neuroectodermal Tumor 4 200669 -NCIT:C134153 Refractory Neuroblastoma 5 200670 -NCIT:C142850 Refractory Peripheral Primitive Neuroectodermal Tumor 5 200671 -NCIT:C173530 Refractory Ganglioneuroblastoma 5 200672 -NCIT:C188038 Refractory Wilms Tumor 4 200673 -NCIT:C27357 Refractory Hematologic Malignancy 4 200674 -NCIT:C148426 Refractory Leukemia 5 200675 -NCIT:C148431 Refractory Acute Leukemia 6 200676 -NCIT:C134319 Refractory Acute Myeloid Leukemia 7 200677 -NCIT:C174486 Refractory Acute Myeloid Leukemia Not Otherwise Specified 8 200678 -NCIT:C174511 Refractory Acute Monoblastic and Monocytic Leukemia 9 200679 -NCIT:C174512 Refractory Acute Myelomonocytic Leukemia 9 200680 -NCIT:C180897 Refractory Acute Myeloid Leukemia with Myelodysplasia-Related Changes 8 200681 -NCIT:C187449 Refractory Childhood Acute Myeloid Leukemia 8 200682 -NCIT:C136488 Refractory Acute Lymphoblastic Leukemia 7 200683 -NCIT:C122624 Refractory Childhood Acute Lymphoblastic Leukemia 8 200684 -NCIT:C126309 Refractory Adult Acute Lymphoblastic Leukemia 8 200685 -NCIT:C142812 Refractory B Acute Lymphoblastic Leukemia 8 200686 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 9 200687 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 200688 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 9 200689 -NCIT:C150510 Refractory T Acute Lymphoblastic Leukemia 8 200690 -NCIT:C151977 Refractory Burkitt Leukemia 7 200691 -NCIT:C172630 Refractory Acute Leukemia of Ambiguous Lineage 7 200692 -NCIT:C148430 Refractory Mixed Phenotype Acute Leukemia 8 200693 -NCIT:C173683 Refractory Acute Biphenotypic Leukemia 9 200694 -NCIT:C179205 Refractory Acute Bilineal Leukemia 9 200695 -NCIT:C173503 Refractory Acute Undifferentiated Leukemia 8 200696 -NCIT:C150044 Refractory Chronic Leukemia 6 200697 -NCIT:C150049 Refractory Chronic Myelomonocytic Leukemia 7 200698 -NCIT:C157691 Refractory T-Cell Prolymphocytic Leukemia 7 200699 -NCIT:C157693 Refractory Aggressive NK-Cell Leukemia 7 200700 -NCIT:C157697 Refractory B-Cell Prolymphocytic Leukemia 7 200701 -NCIT:C171064 Refractory Hairy Cell Leukemia Variant 7 200702 -NCIT:C177000 Refractory Sezary Syndrome 7 200703 -NCIT:C180986 Refractory T-Cell Large Granular Lymphocyte Leukemia 7 200704 -NCIT:C7885 Refractory Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 200705 -NCIT:C7886 Refractory Chronic Lymphocytic Leukemia 7 200706 -NCIT:C158152 Refractory Transformed Chronic Lymphocytic Leukemia 8 200707 -NCIT:C8030 Refractory Hairy Cell Leukemia 7 200708 -NCIT:C190787 Refractory Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 200709 -NCIT:C172280 Refractory Malignant Lymphoid Neoplasm 5 200710 -NCIT:C134154 Refractory Lymphoma 6 200711 -NCIT:C138014 Refractory B-Cell Lymphoma, Unclassifiable, with Features Intermediate between Diffuse Large B-Cell Lymphoma and Classic Hodgkin Lymphoma 7 200712 -NCIT:C138020 Refractory Central Nervous System Lymphoma 7 200713 -NCIT:C146989 Refractory Central Nervous System Non-Hodgkin Lymphoma 8 200714 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 9 200715 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 200716 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 200717 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 200718 -NCIT:C138022 Refractory Testicular Lymphoma 7 200719 -NCIT:C138024 Refractory Breast Lymphoma 7 200720 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 8 200721 -NCIT:C142877 Refractory Primary Cutaneous Lymphoma 7 200722 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 8 200723 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 200724 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 200725 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 200726 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 200727 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 200728 -NCIT:C8687 Refractory Mycosis Fungoides 9 200729 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 200730 -NCIT:C153177 Refractory Mediastinal Lymphoma 7 200731 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 200732 -NCIT:C157682 Refractory Primary Bone Lymphoma 7 200733 -NCIT:C160149 Refractory EBV-Related Lymphoma 7 200734 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 200735 -NCIT:C187197 Refractory Childhood Lymphoma 7 200736 -NCIT:C115458 Refractory Childhood Hodgkin Lymphoma 8 200737 -NCIT:C8701 Refractory Non-Hodgkin Lymphoma 7 200738 -NCIT:C140091 Refractory Transformed Non-Hodgkin Lymphoma 8 200739 -NCIT:C158150 Refractory Transformed B-Cell Non-Hodgkin Lymphoma 9 200740 -NCIT:C160240 Refractory Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 10 200741 -NCIT:C186484 Refractory Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 10 200742 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 11 200743 -NCIT:C165791 Refractory Transformed T-cell Non-Hodgkin Lymphoma 9 200744 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 200745 -NCIT:C146989 Refractory Central Nervous System Non-Hodgkin Lymphoma 8 200746 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 9 200747 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 200748 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 200749 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 200750 -NCIT:C151978 Refractory Lymphoblastic Lymphoma 8 200751 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 9 200752 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 9 200753 -NCIT:C156233 Refractory Aggressive Non-Hodgkin Lymphoma 8 200754 -NCIT:C178555 Refractory Aggressive B-Cell Non-Hodgkin Lymphoma 9 200755 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 200756 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 200757 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 10 200758 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 11 200759 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 11 200760 -NCIT:C8847 Refractory Burkitt Lymphoma 10 200761 -NCIT:C8862 Refractory Mantle Cell Lymphoma 10 200762 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 10 200763 -NCIT:C178556 Refractory Aggressive T-Cell Non-Hodgkin Lymphoma 9 200764 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 10 200765 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 200766 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 200767 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 200768 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 200769 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 10 200770 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 10 200771 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 10 200772 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 10 200773 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 10 200774 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 200775 -NCIT:C173046 Refractory Indolent Non-Hodgkin Lymphoma 8 200776 -NCIT:C148175 Refractory Indolent Adult Non-Hodgkin Lymphoma 9 200777 -NCIT:C183514 Refractory Indolent B-Cell Non-Hodgkin Lymphoma 9 200778 -NCIT:C143085 Refractory Marginal Zone Lymphoma 10 200779 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 11 200780 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 200781 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 11 200782 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 10 200783 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 10 200784 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 10 200785 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 11 200786 -NCIT:C183515 Refractory Indolent T-Cell Non-Hodgkin Lymphoma 9 200787 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 200788 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 200789 -NCIT:C8687 Refractory Mycosis Fungoides 10 200790 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 200791 -NCIT:C8664 Refractory T-Cell Non-Hodgkin Lymphoma 8 200792 -NCIT:C178556 Refractory Aggressive T-Cell Non-Hodgkin Lymphoma 9 200793 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 10 200794 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 200795 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 200796 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 200797 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 200798 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 10 200799 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 10 200800 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 10 200801 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 10 200802 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 10 200803 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 200804 -NCIT:C183515 Refractory Indolent T-Cell Non-Hodgkin Lymphoma 9 200805 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 200806 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 200807 -NCIT:C8687 Refractory Mycosis Fungoides 10 200808 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 200809 -NCIT:C8689 Refractory Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 9 200810 -NCIT:C148129 Refractory Mycosis Fungoides and Sezary Syndrome 10 200811 -NCIT:C177000 Refractory Sezary Syndrome 11 200812 -NCIT:C8687 Refractory Mycosis Fungoides 11 200813 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 12 200814 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 10 200815 -NCIT:C157690 Refractory NK-Cell Lymphoma, Unclassifiable 10 200816 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 200817 -NCIT:C165791 Refractory Transformed T-cell Non-Hodgkin Lymphoma 10 200818 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 200819 -NCIT:C168779 Refractory Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 10 200820 -NCIT:C168781 Refractory Follicular T-Cell Lymphoma 10 200821 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 10 200822 -NCIT:C8658 Refractory Anaplastic Large Cell Lymphoma 10 200823 -NCIT:C162689 Refractory Systemic Anaplastic Large Cell Lymphoma 11 200824 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 12 200825 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 11 200826 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 11 200827 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 10 200828 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 10 200829 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 10 200830 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 10 200831 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 11 200832 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 11 200833 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 11 200834 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 11 200835 -NCIT:C8687 Refractory Mycosis Fungoides 11 200836 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 12 200837 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 200838 -NCIT:C8842 Refractory B-Cell Non-Hodgkin Lymphoma 8 200839 -NCIT:C178555 Refractory Aggressive B-Cell Non-Hodgkin Lymphoma 9 200840 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 200841 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 200842 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 10 200843 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 11 200844 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 11 200845 -NCIT:C8847 Refractory Burkitt Lymphoma 10 200846 -NCIT:C8862 Refractory Mantle Cell Lymphoma 10 200847 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 10 200848 -NCIT:C183514 Refractory Indolent B-Cell Non-Hodgkin Lymphoma 9 200849 -NCIT:C143085 Refractory Marginal Zone Lymphoma 10 200850 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 11 200851 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 200852 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 11 200853 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 10 200854 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 10 200855 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 10 200856 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 11 200857 -NCIT:C7228 Refractory Mature B-Cell Non-Hodgkin Lymphoma 9 200858 -NCIT:C143085 Refractory Marginal Zone Lymphoma 10 200859 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 11 200860 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 200861 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 11 200862 -NCIT:C158150 Refractory Transformed B-Cell Non-Hodgkin Lymphoma 10 200863 -NCIT:C160240 Refractory Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 11 200864 -NCIT:C186484 Refractory Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 11 200865 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 12 200866 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 10 200867 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 11 200868 -NCIT:C8846 Refractory Small Lymphocytic Lymphoma 10 200869 -NCIT:C8847 Refractory Burkitt Lymphoma 10 200870 -NCIT:C8853 Refractory Diffuse Large B-Cell Lymphoma 10 200871 -NCIT:C138018 Refractory Extranodal Diffuse Large B-cell Lymphoma 11 200872 -NCIT:C138026 Refractory Intravascular Large B-Cell Lymphoma 11 200873 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 200874 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 200875 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 11 200876 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 12 200877 -NCIT:C157678 Refractory T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 11 200878 -NCIT:C157680 Refractory Primary Effusion Lymphoma 11 200879 -NCIT:C157684 Refractory Plasmablastic Lymphoma 11 200880 -NCIT:C160233 Refractory High Grade B-Cell Lymphoma 11 200881 -NCIT:C151979 Refractory High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 12 200882 -NCIT:C162453 Refractory High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 12 200883 -NCIT:C188789 Refractory High Grade B-Cell Lymphoma, Not Otherwise Specified 12 200884 -NCIT:C165241 Refractory Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 200885 -NCIT:C160238 Refractory Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 12 200886 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 12 200887 -NCIT:C182034 Refractory Immunoblastic Lymphoma 12 200888 -NCIT:C8927 Refractory Centroblastic Lymphoma 12 200889 -NCIT:C183142 Refractory Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 11 200890 -NCIT:C188791 Refractory ALK-Positive Large B-Cell Lymphoma 11 200891 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 200892 -NCIT:C8858 Refractory Follicular Lymphoma 10 200893 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 11 200894 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 11 200895 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 11 200896 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 12 200897 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 12 200898 -NCIT:C8862 Refractory Mantle Cell Lymphoma 10 200899 -NCIT:C8836 Refractory Hodgkin Lymphoma 7 200900 -NCIT:C115458 Refractory Childhood Hodgkin Lymphoma 8 200901 -NCIT:C133736 Refractory Classic Hodgkin Lymphoma 8 200902 -NCIT:C142982 Refractory Lymphocyte-Rich Classic Hodgkin Lymphoma 9 200903 -NCIT:C8650 Refractory Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 200904 -NCIT:C8833 Refractory Mixed Cellularity Classic Hodgkin Lymphoma 9 200905 -NCIT:C8838 Refractory Nodular Sclerosis Classic Hodgkin Lymphoma 9 200906 -NCIT:C7260 Refractory Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 200907 -NCIT:C136488 Refractory Acute Lymphoblastic Leukemia 6 200908 -NCIT:C122624 Refractory Childhood Acute Lymphoblastic Leukemia 7 200909 -NCIT:C126309 Refractory Adult Acute Lymphoblastic Leukemia 7 200910 -NCIT:C142812 Refractory B Acute Lymphoblastic Leukemia 7 200911 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 200912 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 200913 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 200914 -NCIT:C150510 Refractory T Acute Lymphoblastic Leukemia 7 200915 -NCIT:C151977 Refractory Burkitt Leukemia 6 200916 -NCIT:C157475 Refractory Monomorphic Post-Transplant Lymphoproliferative Disorder 6 200917 -NCIT:C157697 Refractory B-Cell Prolymphocytic Leukemia 6 200918 -NCIT:C171064 Refractory Hairy Cell Leukemia Variant 6 200919 -NCIT:C172282 Refractory Chronic Lymphocytic Leukemia/Small Lymphocytic Lymphoma 6 200920 -NCIT:C7886 Refractory Chronic Lymphocytic Leukemia 7 200921 -NCIT:C158152 Refractory Transformed Chronic Lymphocytic Leukemia 8 200922 -NCIT:C8846 Refractory Small Lymphocytic Lymphoma 7 200923 -NCIT:C173411 Refractory Mature T-Cell and NK-Cell Neoplasm 6 200924 -NCIT:C157691 Refractory T-Cell Prolymphocytic Leukemia 7 200925 -NCIT:C157693 Refractory Aggressive NK-Cell Leukemia 7 200926 -NCIT:C180986 Refractory T-Cell Large Granular Lymphocyte Leukemia 7 200927 -NCIT:C8689 Refractory Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 7 200928 -NCIT:C148129 Refractory Mycosis Fungoides and Sezary Syndrome 8 200929 -NCIT:C177000 Refractory Sezary Syndrome 9 200930 -NCIT:C8687 Refractory Mycosis Fungoides 9 200931 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 200932 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 8 200933 -NCIT:C157690 Refractory NK-Cell Lymphoma, Unclassifiable 8 200934 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 8 200935 -NCIT:C165791 Refractory Transformed T-cell Non-Hodgkin Lymphoma 8 200936 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 9 200937 -NCIT:C168779 Refractory Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 8 200938 -NCIT:C168781 Refractory Follicular T-Cell Lymphoma 8 200939 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 8 200940 -NCIT:C8658 Refractory Anaplastic Large Cell Lymphoma 8 200941 -NCIT:C162689 Refractory Systemic Anaplastic Large Cell Lymphoma 9 200942 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 200943 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 200944 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 200945 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 8 200946 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 8 200947 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 8 200948 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 200949 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 200950 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 200951 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 200952 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 200953 -NCIT:C8687 Refractory Mycosis Fungoides 9 200954 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 200955 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 200956 -NCIT:C7813 Refractory Plasma Cell Neoplasm 6 200957 -NCIT:C133731 Refractory Primary Amyloidosis 7 200958 -NCIT:C174055 Refractory AL Amyloidosis 8 200959 -NCIT:C7024 Refractory Plasma Cell Myeloma 7 200960 -NCIT:C178375 Triple-Class Refractory Plasma Cell Myeloma 8 200961 -NCIT:C8030 Refractory Hairy Cell Leukemia 6 200962 -NCIT:C8696 Refractory T Lymphoblastic Leukemia/Lymphoma 6 200963 -NCIT:C150510 Refractory T Acute Lymphoblastic Leukemia 7 200964 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 7 200965 -NCIT:C172281 Refractory Myeloid Neoplasm 5 200966 -NCIT:C134319 Refractory Acute Myeloid Leukemia 6 200967 -NCIT:C174486 Refractory Acute Myeloid Leukemia Not Otherwise Specified 7 200968 -NCIT:C174511 Refractory Acute Monoblastic and Monocytic Leukemia 8 200969 -NCIT:C174512 Refractory Acute Myelomonocytic Leukemia 8 200970 -NCIT:C180897 Refractory Acute Myeloid Leukemia with Myelodysplasia-Related Changes 7 200971 -NCIT:C187449 Refractory Childhood Acute Myeloid Leukemia 7 200972 -NCIT:C148362 Refractory Myelodysplastic Syndrome 6 200973 -NCIT:C156104 Refractory Blastic Plasmacytoid Dendritic Cell Neoplasm 6 200974 -NCIT:C170816 Refractory Malignant Mastocytosis 6 200975 -NCIT:C170911 Refractory Myeloproliferative Neoplasm 6 200976 -NCIT:C171340 Refractory Primary Myelofibrosis 7 200977 -NCIT:C190787 Refractory Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 200978 -NCIT:C7885 Refractory Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 200979 -NCIT:C171339 Refractory Myelodysplastic/Myeloproliferative Neoplasm 6 200980 -NCIT:C150049 Refractory Chronic Myelomonocytic Leukemia 7 200981 -NCIT:C8511 Refractory Carcinoma 4 200982 -NCIT:C141076 Refractory Lung Carcinoma 5 200983 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 6 200984 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 7 200985 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 7 200986 -NCIT:C153081 Refractory Lung Non-Small Cell Carcinoma 6 200987 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 7 200988 -NCIT:C176858 Refractory Lung Non-Squamous Non-Small Cell Carcinoma 7 200989 -NCIT:C179209 Refractory Lung Adenocarcinoma 7 200990 -NCIT:C173331 Refractory Lung Squamous Cell Carcinoma 6 200991 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 7 200992 -NCIT:C147965 Refractory Breast Carcinoma 5 200993 -NCIT:C165703 Refractory Breast Adenocarcinoma 6 200994 -NCIT:C157057 Refractory Hormone Receptor-Positive Breast Carcinoma 7 200995 -NCIT:C167076 Refractory Triple-Negative Breast Carcinoma 7 200996 -NCIT:C168784 Refractory HER2-Negative Breast Carcinoma 7 200997 -NCIT:C182110 Refractory HER2-Positive Breast Carcinoma 7 200998 -NCIT:C148173 Refractory Thymic Carcinoma 5 200999 -NCIT:C151906 Refractory Digestive System Carcinoma 5 201000 -NCIT:C137857 Refractory Anal Carcinoma 6 201001 -NCIT:C173334 Refractory Anal Canal Squamous Cell Carcinoma 7 201002 -NCIT:C147982 Refractory Colorectal Carcinoma 6 201003 -NCIT:C153351 Refractory Colon Carcinoma 7 201004 -NCIT:C162155 Refractory Colon Adenocarcinoma 8 201005 -NCIT:C162154 Refractory Colorectal Adenocarcinoma 7 201006 -NCIT:C162155 Refractory Colon Adenocarcinoma 8 201007 -NCIT:C162157 Refractory Rectal Adenocarcinoma 8 201008 -NCIT:C162156 Refractory Rectal Carcinoma 7 201009 -NCIT:C162157 Refractory Rectal Adenocarcinoma 8 201010 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 8 201011 -NCIT:C173332 Refractory Microsatellite Stable Colorectal Carcinoma 7 201012 -NCIT:C147996 Refractory Gastric Carcinoma 6 201013 -NCIT:C167074 Refractory Gastric Adenocarcinoma 7 201014 -NCIT:C151904 Refractory Metastatic Digestive System Carcinoma 6 201015 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 7 201016 -NCIT:C153352 Refractory Liver Carcinoma 6 201017 -NCIT:C162450 Refractory Hepatocellular Carcinoma 7 201018 -NCIT:C188887 Refractory Fibrolamellar Carcinoma 8 201019 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 7 201020 -NCIT:C153356 Refractory Small Intestinal Carcinoma 6 201021 -NCIT:C155937 Refractory Digestive System Neuroendocrine Carcinoma 6 201022 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 7 201023 -NCIT:C162538 Refractory Gastroesophageal Junction Adenocarcinoma 6 201024 -NCIT:C171604 Refractory Esophageal Carcinoma 6 201025 -NCIT:C171606 Refractory Esophageal Squamous Cell Carcinoma 7 201026 -NCIT:C176892 Refractory Esophageal Adenocarcinoma 7 201027 -NCIT:C179177 Refractory Appendix Carcinoma 6 201028 -NCIT:C179178 Refractory Appendix Adenocarcinoma 7 201029 -NCIT:C185305 Refractory Pancreatobiliary Carcinoma 6 201030 -NCIT:C142808 Refractory Pancreatic Carcinoma 7 201031 -NCIT:C162015 Refractory Pancreatic Adenocarcinoma 8 201032 -NCIT:C165450 Refractory Pancreatic Ductal Adenocarcinoma 9 201033 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 9 201034 -NCIT:C162750 Refractory Biliary Tract Carcinoma 7 201035 -NCIT:C153355 Refractory Bile Duct Carcinoma 8 201036 -NCIT:C158101 Refractory Cholangiocarcinoma 9 201037 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 10 201038 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 201039 -NCIT:C175437 Refractory Extrahepatic Bile Duct Carcinoma 9 201040 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 201041 -NCIT:C162753 Refractory Gallbladder Carcinoma 8 201042 -NCIT:C175436 Refractory Ampulla of Vater Carcinoma 7 201043 -NCIT:C151907 Refractory Head and Neck Carcinoma 5 201044 -NCIT:C142983 Refractory Thyroid Gland Carcinoma 6 201045 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 7 201046 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 8 201047 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 8 201048 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 9 201049 -NCIT:C170832 Refractory Thyroid Gland Anaplastic Carcinoma 7 201050 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 7 201051 -NCIT:C148152 Refractory Head and Neck Squamous Cell Carcinoma 6 201052 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 7 201053 -NCIT:C148383 Refractory Laryngeal Squamous Cell Carcinoma 7 201054 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 7 201055 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 7 201056 -NCIT:C148401 Refractory Sinonasal Squamous Cell Carcinoma 7 201057 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 201058 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 201059 -NCIT:C148434 Refractory Nasopharyngeal Carcinoma 6 201060 -NCIT:C177722 Refractory Salivary Gland Carcinoma 6 201061 -NCIT:C179151 Platinum-Resistant Head and Neck Carcinoma 6 201062 -NCIT:C152046 Refractory Primary Peritoneal Carcinoma 5 201063 -NCIT:C157622 Platinum-Resistant Primary Peritoneal Carcinoma 6 201064 -NCIT:C170751 Recurrent Platinum-Resistant Primary Peritoneal Carcinoma 7 201065 -NCIT:C170975 Refractory Primary Peritoneal Adenocarcinoma 6 201066 -NCIT:C171021 Refractory Primary Peritoneal Serous Adenocarcinoma 7 201067 -NCIT:C178686 Refractory Primary Peritoneal High Grade Serous Adenocarcinoma 8 201068 -NCIT:C178687 Refractory Primary Peritoneal Low Grade Serous Adenocarcinoma 8 201069 -NCIT:C178684 Refractory Primary Peritoneal Clear Cell Adenocarcinoma 7 201070 -NCIT:C178685 Refractory Primary Peritoneal Endometrioid Adenocarcinoma 7 201071 -NCIT:C178688 Refractory Primary Peritoneal Transitional Cell Carcinoma 6 201072 -NCIT:C178689 Refractory Primary Peritoneal Undifferentiated Carcinoma 6 201073 -NCIT:C178702 Platinum-Refractory Primary Peritoneal Carcinoma 6 201074 -NCIT:C152048 Refractory Female Reproductive System Carcinoma 5 201075 -NCIT:C150091 Refractory Ovarian Carcinoma 6 201076 -NCIT:C147561 Platinum-Resistant Ovarian Carcinoma 7 201077 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 8 201078 -NCIT:C179459 Unresectable Platinum-Resistant Ovarian Carcinoma 8 201079 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 8 201080 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 201081 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 201082 -NCIT:C170968 Refractory Ovarian Adenocarcinoma 7 201083 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 8 201084 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 8 201085 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 9 201086 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 9 201087 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 8 201088 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 8 201089 -NCIT:C178671 Refractory Ovarian Seromucinous Carcinoma 7 201090 -NCIT:C178682 Refractory Ovarian Transitional Cell Carcinoma 7 201091 -NCIT:C178683 Refractory Ovarian Undifferentiated Carcinoma 7 201092 -NCIT:C178700 Platinum-Refractory Ovarian Carcinoma 7 201093 -NCIT:C179207 Refractory Ovarian Squamous Cell Carcinoma 7 201094 -NCIT:C183126 Refractory Malignant Ovarian Brenner Tumor 7 201095 -NCIT:C150093 Refractory Endometrial Carcinoma 6 201096 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 7 201097 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 7 201098 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 7 201099 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 7 201100 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 8 201101 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 8 201102 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 8 201103 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 8 201104 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 8 201105 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 7 201106 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 7 201107 -NCIT:C152047 Refractory Fallopian Tube Carcinoma 6 201108 -NCIT:C157621 Platinum-Resistant Fallopian Tube Carcinoma 7 201109 -NCIT:C170750 Recurrent Platinum-Resistant Fallopian Tube Carcinoma 8 201110 -NCIT:C170971 Refractory Fallopian Tube Adenocarcinoma 7 201111 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 8 201112 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 8 201113 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 8 201114 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 8 201115 -NCIT:C178674 Refractory Fallopian Tube Transitional Cell Carcinoma 7 201116 -NCIT:C178675 Refractory Fallopian Tube Undifferentiated Carcinoma 7 201117 -NCIT:C178698 Platinum-Refractory Fallopian Tube Carcinoma 7 201118 -NCIT:C170513 Refractory Cervical Carcinoma 6 201119 -NCIT:C181034 Refractory Cervical Squamous Cell Carcinoma 7 201120 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 8 201121 -NCIT:C181036 Refractory Cervical Adenocarcinoma 7 201122 -NCIT:C174508 Refractory Vulvar Carcinoma 6 201123 -NCIT:C185304 Refractory Vulvar Squamous Cell Carcinoma 7 201124 -NCIT:C174509 Refractory Vaginal Carcinoma 6 201125 -NCIT:C185303 Refractory Vaginal Squamous Cell Carcinoma 7 201126 -NCIT:C159563 Refractory Adenocarcinoma 5 201127 -NCIT:C158101 Refractory Cholangiocarcinoma 6 201128 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 7 201129 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 7 201130 -NCIT:C162015 Refractory Pancreatic Adenocarcinoma 6 201131 -NCIT:C165450 Refractory Pancreatic Ductal Adenocarcinoma 7 201132 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 7 201133 -NCIT:C162154 Refractory Colorectal Adenocarcinoma 6 201134 -NCIT:C162155 Refractory Colon Adenocarcinoma 7 201135 -NCIT:C162157 Refractory Rectal Adenocarcinoma 7 201136 -NCIT:C162450 Refractory Hepatocellular Carcinoma 6 201137 -NCIT:C188887 Refractory Fibrolamellar Carcinoma 7 201138 -NCIT:C162538 Refractory Gastroesophageal Junction Adenocarcinoma 6 201139 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 6 201140 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 7 201141 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 7 201142 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 7 201143 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 7 201144 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 7 201145 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 6 201146 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 7 201147 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 7 201148 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 8 201149 -NCIT:C165703 Refractory Breast Adenocarcinoma 6 201150 -NCIT:C157057 Refractory Hormone Receptor-Positive Breast Carcinoma 7 201151 -NCIT:C167076 Refractory Triple-Negative Breast Carcinoma 7 201152 -NCIT:C168784 Refractory HER2-Negative Breast Carcinoma 7 201153 -NCIT:C182110 Refractory HER2-Positive Breast Carcinoma 7 201154 -NCIT:C165745 Refractory Renal Cell Carcinoma 6 201155 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 7 201156 -NCIT:C167074 Refractory Gastric Adenocarcinoma 6 201157 -NCIT:C167256 Refractory Prostate Adenocarcinoma 6 201158 -NCIT:C170968 Refractory Ovarian Adenocarcinoma 6 201159 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 7 201160 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 7 201161 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 8 201162 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 8 201163 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 7 201164 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 7 201165 -NCIT:C170971 Refractory Fallopian Tube Adenocarcinoma 6 201166 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 7 201167 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 7 201168 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 7 201169 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 7 201170 -NCIT:C170975 Refractory Primary Peritoneal Adenocarcinoma 6 201171 -NCIT:C171021 Refractory Primary Peritoneal Serous Adenocarcinoma 7 201172 -NCIT:C178686 Refractory Primary Peritoneal High Grade Serous Adenocarcinoma 8 201173 -NCIT:C178687 Refractory Primary Peritoneal Low Grade Serous Adenocarcinoma 8 201174 -NCIT:C178684 Refractory Primary Peritoneal Clear Cell Adenocarcinoma 7 201175 -NCIT:C178685 Refractory Primary Peritoneal Endometrioid Adenocarcinoma 7 201176 -NCIT:C176892 Refractory Esophageal Adenocarcinoma 6 201177 -NCIT:C179178 Refractory Appendix Adenocarcinoma 6 201178 -NCIT:C179180 Refractory Pseudomyxoma Peritonei 6 201179 -NCIT:C179209 Refractory Lung Adenocarcinoma 6 201180 -NCIT:C181036 Refractory Cervical Adenocarcinoma 6 201181 -NCIT:C188036 Refractory Adrenal Cortical Carcinoma 6 201182 -NCIT:C162719 Refractory Urinary System Carcinoma 5 201183 -NCIT:C150316 Refractory Bladder Carcinoma 6 201184 -NCIT:C148286 Refractory Stage 0 Bladder Cancer AJCC v6 and v7 7 201185 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 7 201186 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 8 201187 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 7 201188 -NCIT:C150364 Refractory Urothelial Carcinoma 6 201189 -NCIT:C150365 Platinum-Resistant Urothelial Carcinoma 7 201190 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 7 201191 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 8 201192 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 7 201193 -NCIT:C176996 Refractory Urethral Urothelial Carcinoma 7 201194 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 7 201195 -NCIT:C172623 Refractory Kidney Carcinoma 6 201196 -NCIT:C162727 Refractory Kidney Medullary Carcinoma 7 201197 -NCIT:C165745 Refractory Renal Cell Carcinoma 7 201198 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 8 201199 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 7 201200 -NCIT:C162733 Refractory Malignant Myoepithelioma 5 201201 -NCIT:C165742 Refractory Neuroendocrine Carcinoma 5 201202 -NCIT:C155937 Refractory Digestive System Neuroendocrine Carcinoma 6 201203 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 7 201204 -NCIT:C165741 Refractory Merkel Cell Carcinoma 6 201205 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 6 201206 -NCIT:C191853 Refractory Small Cell Neuroendocrine Carcinoma 6 201207 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 7 201208 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 8 201209 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 8 201210 -NCIT:C191854 Refractory Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 201211 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 8 201212 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 8 201213 -NCIT:C171605 Refractory Squamous Cell Carcinoma 5 201214 -NCIT:C148152 Refractory Head and Neck Squamous Cell Carcinoma 6 201215 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 7 201216 -NCIT:C148383 Refractory Laryngeal Squamous Cell Carcinoma 7 201217 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 7 201218 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 7 201219 -NCIT:C148401 Refractory Sinonasal Squamous Cell Carcinoma 7 201220 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 201221 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 201222 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 6 201223 -NCIT:C165735 Refractory Skin Squamous Cell Carcinoma 6 201224 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 201225 -NCIT:C171606 Refractory Esophageal Squamous Cell Carcinoma 6 201226 -NCIT:C173331 Refractory Lung Squamous Cell Carcinoma 6 201227 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 7 201228 -NCIT:C173334 Refractory Anal Canal Squamous Cell Carcinoma 6 201229 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 6 201230 -NCIT:C179207 Refractory Ovarian Squamous Cell Carcinoma 6 201231 -NCIT:C181034 Refractory Cervical Squamous Cell Carcinoma 6 201232 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 7 201233 -NCIT:C185303 Refractory Vaginal Squamous Cell Carcinoma 6 201234 -NCIT:C185304 Refractory Vulvar Squamous Cell Carcinoma 6 201235 -NCIT:C175668 Refractory Adenoid Cystic Carcinoma 5 201236 -NCIT:C177149 Refractory Male Reproductive System Carcinoma 5 201237 -NCIT:C167255 Refractory Prostate Carcinoma 6 201238 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 7 201239 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 8 201240 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 8 201241 -NCIT:C161609 Double-Negative Prostate Carcinoma 8 201242 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 8 201243 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 8 201244 -NCIT:C167256 Refractory Prostate Adenocarcinoma 7 201245 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 7 201246 -NCIT:C177150 Refractory Penile Carcinoma 6 201247 -NCIT:C134168 Refractory Histiocytic and Dendritic Cell Neoplasm 3 201248 -NCIT:C134177 Refractory Langerhans Cell Histiocytosis 4 201249 -NCIT:C136489 Refractory Erdheim-Chester Disease 4 201250 -NCIT:C157131 Refractory Neuroendocrine Neoplasm 3 201251 -NCIT:C138184 Refractory Abdominal Neuroendocrine Neoplasm 4 201252 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 5 201253 -NCIT:C158088 Refractory Digestive System Neuroendocrine Neoplasm 4 201254 -NCIT:C155937 Refractory Digestive System Neuroendocrine Carcinoma 5 201255 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 6 201256 -NCIT:C158401 Refractory Paraganglioma 4 201257 -NCIT:C158402 Refractory Adrenal Gland Pheochromocytoma 5 201258 -NCIT:C165742 Refractory Neuroendocrine Carcinoma 4 201259 -NCIT:C155937 Refractory Digestive System Neuroendocrine Carcinoma 5 201260 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 6 201261 -NCIT:C165741 Refractory Merkel Cell Carcinoma 5 201262 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 5 201263 -NCIT:C191853 Refractory Small Cell Neuroendocrine Carcinoma 5 201264 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 6 201265 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 7 201266 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 7 201267 -NCIT:C191854 Refractory Extrapulmonary Small Cell Neuroendocrine Carcinoma 6 201268 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 7 201269 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 7 201270 -NCIT:C175670 Refractory Desmoid Fibromatosis 3 201271 -NCIT:C188179 Refractory Neoplastic Post-Transplant Lymphoproliferative Disorder 3 201272 -NCIT:C157475 Refractory Monomorphic Post-Transplant Lymphoproliferative Disorder 4 201273 -NCIT:C157477 Refractory Polymorphic Post-Transplant Lymphoproliferative Disorder 4 201274 -NCIT:C71701 Refractory Primary Central Nervous System Neoplasm 3 201275 -NCIT:C147107 Refractory Glioma 4 201276 -NCIT:C142855 Refractory Malignant Glioma 5 201277 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 6 201278 -NCIT:C146734 Refractory Glioblastoma 6 201279 -NCIT:C163960 Refractory Small Cell Glioblastoma 7 201280 -NCIT:C163962 Refractory Gliosarcoma 7 201281 -NCIT:C176998 Refractory Giant Cell Glioblastoma 7 201282 -NCIT:C153865 Refractory WHO Grade 3 Glioma 6 201283 -NCIT:C160905 Refractory Anaplastic Pleomorphic Xanthoastrocytoma 7 201284 -NCIT:C160913 Refractory Anaplastic Ependymoma 7 201285 -NCIT:C169074 Refractory Anaplastic Oligodendroglioma 7 201286 -NCIT:C169075 Refractory Anaplastic Astrocytoma 7 201287 -NCIT:C155984 Refractory Visual Pathway Glioma 5 201288 -NCIT:C177793 Refractory Low Grade Glioma 5 201289 -NCIT:C158104 Refractory WHO Grade 2 Glioma 6 201290 -NCIT:C147108 Refractory Ependymoma 7 201291 -NCIT:C177795 Refractory Low Grade Astrocytoma 6 201292 -NCIT:C177798 Refractory WHO Grade 1 Glioma 6 201293 -NCIT:C153842 Refractory Primary Malignant Central Nervous System Neoplasm 4 201294 -NCIT:C138020 Refractory Central Nervous System Lymphoma 5 201295 -NCIT:C146989 Refractory Central Nervous System Non-Hodgkin Lymphoma 6 201296 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 7 201297 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 201298 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 7 201299 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 201300 -NCIT:C142855 Refractory Malignant Glioma 5 201301 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 6 201302 -NCIT:C146734 Refractory Glioblastoma 6 201303 -NCIT:C163960 Refractory Small Cell Glioblastoma 7 201304 -NCIT:C163962 Refractory Gliosarcoma 7 201305 -NCIT:C176998 Refractory Giant Cell Glioblastoma 7 201306 -NCIT:C153865 Refractory WHO Grade 3 Glioma 6 201307 -NCIT:C160905 Refractory Anaplastic Pleomorphic Xanthoastrocytoma 7 201308 -NCIT:C160913 Refractory Anaplastic Ependymoma 7 201309 -NCIT:C169074 Refractory Anaplastic Oligodendroglioma 7 201310 -NCIT:C169075 Refractory Anaplastic Astrocytoma 7 201311 -NCIT:C153845 Refractory Malignant Brain Neoplasm 5 201312 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 6 201313 -NCIT:C142856 Refractory Medulloblastoma 6 201314 -NCIT:C147110 Refractory Medulloblastoma, SHH-Activated 7 201315 -NCIT:C180892 Refractory Medulloblastoma, WNT-Activated 7 201316 -NCIT:C160915 Refractory Anaplastic Ganglioglioma 5 201317 -NCIT:C162723 Refractory Atypical Teratoid/Rhabdoid Tumor 5 201318 -NCIT:C183152 Refractory Malignant Leptomeningeal Neoplasm 5 201319 -NCIT:C172953 Refractory Meningioma 4 201320 -NCIT:C187214 Refractory Childhood Central Nervous System Neoplasm 4 201321 -NCIT:C187215 Refractory Childhood Brain Neoplasm 5 201322 -NCIT:C71714 Refractory Childhood Spinal Cord Neoplasm 5 201323 -NCIT:C71702 Refractory Brain Neoplasm 4 201324 -NCIT:C153845 Refractory Malignant Brain Neoplasm 5 201325 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 6 201326 -NCIT:C142856 Refractory Medulloblastoma 6 201327 -NCIT:C147110 Refractory Medulloblastoma, SHH-Activated 7 201328 -NCIT:C180892 Refractory Medulloblastoma, WNT-Activated 7 201329 -NCIT:C155984 Refractory Visual Pathway Glioma 5 201330 -NCIT:C187215 Refractory Childhood Brain Neoplasm 5 201331 -NCIT:C71703 Refractory Spinal Cord Neoplasm 4 201332 -NCIT:C71714 Refractory Childhood Spinal Cord Neoplasm 5 201333 -NCIT:C71715 Refractory Adult Spinal Cord Neoplasm 5 201334 -NCIT:C8509 Primary Neoplasm 2 201335 -NCIT:C182235 Second Primary Tumor 3 201336 -NCIT:C84509 Primary Malignant Neoplasm 3 201337 -NCIT:C95606 Second Primary Malignant Neoplasm 4 201338 -NCIT:C9292 Solid Neoplasm 2 201339 -NCIT:C127156 Unresectable Solid Neoplasm 3 201340 -NCIT:C148036 Unresectable Malignant Solid Neoplasm 4 201341 -NCIT:C132146 Malignant Solid Neoplasm 3 201342 -NCIT:C127153 Recurrent Malignant Solid Neoplasm 4 201343 -NCIT:C148026 Recurrent Childhood Malignant Solid Neoplasm 5 201344 -NCIT:C170830 Recurrent Extracranial Malignant Solid Neoplasm 5 201345 -NCIT:C127155 Metastatic Malignant Solid Neoplasm 4 201346 -NCIT:C129707 Advanced Malignant Solid Neoplasm 5 201347 -NCIT:C157335 Advanced Extracranial Malignant Solid Neoplasm 6 201348 -NCIT:C187210 Advanced Childhood Malignant Solid Neoplasm 6 201349 -NCIT:C133093 Locally Advanced Malignant Solid Neoplasm 5 201350 -NCIT:C157334 Metastatic Extracranial Malignant Solid Neoplasm 5 201351 -NCIT:C157335 Advanced Extracranial Malignant Solid Neoplasm 6 201352 -NCIT:C161019 Oligometastatic Malignant Solid Neoplasm 5 201353 -NCIT:C133737 Refractory Malignant Solid Neoplasm 4 201354 -NCIT:C148027 Refractory Childhood Malignant Solid Neoplasm 5 201355 -NCIT:C178283 Refractory Extracranial Malignant Solid Neoplasm 5 201356 -NCIT:C148029 Childhood Malignant Solid Neoplasm 4 201357 -NCIT:C148026 Recurrent Childhood Malignant Solid Neoplasm 5 201358 -NCIT:C148027 Refractory Childhood Malignant Solid Neoplasm 5 201359 -NCIT:C187210 Advanced Childhood Malignant Solid Neoplasm 5 201360 -NCIT:C148036 Unresectable Malignant Solid Neoplasm 4 201361 -NCIT:C165542 Neoantigen-Positive Malignant Solid Neoplasm 4 201362 -NCIT:C165545 Patient-Specific Neoantigen-Positive Malignant Solid Neoplasm 5 201363 -NCIT:C165546 Shared Neoantigen-Positive Malignant Solid Neoplasm 5 201364 -NCIT:C190685 Localized Malignant Solid Neoplasm 4 201365 -NCIT:C151940 Extracranial Solid Neoplasm 3 201366 -NCIT:C157334 Metastatic Extracranial Malignant Solid Neoplasm 4 201367 -NCIT:C157335 Advanced Extracranial Malignant Solid Neoplasm 5 201368 -NCIT:C170830 Recurrent Extracranial Malignant Solid Neoplasm 4 201369 -NCIT:C178283 Refractory Extracranial Malignant Solid Neoplasm 4 201370 -NCIT:C8101 Adult Solid Neoplasm 3 201371 -NCIT:C9107 Childhood Solid Neoplasm 3 201372 -NCIT:C148029 Childhood Malignant Solid Neoplasm 4 201373 -NCIT:C148026 Recurrent Childhood Malignant Solid Neoplasm 5 201374 -NCIT:C148027 Refractory Childhood Malignant Solid Neoplasm 5 201375 -NCIT:C187210 Advanced Childhood Malignant Solid Neoplasm 5 201376 -NCIT:C9305 Malignant Neoplasm 2 201377 -NCIT:C114940 Malignant Cardiovascular Neoplasm 3 201378 -NCIT:C3548 Malignant Cardiac Neoplasm 4 201379 -NCIT:C4568 Malignant Epicardial Neoplasm 5 201380 -NCIT:C4569 Malignant Myocardial Neoplasm 5 201381 -NCIT:C4570 Malignant Endocardial Neoplasm 5 201382 -NCIT:C4889 Metastatic Malignant Neoplasm in the Heart 5 201383 -NCIT:C5369 Secondary Heart Lymphoma 6 201384 -NCIT:C5362 Cardiac Epithelioid Hemangioendothelioma 5 201385 -NCIT:C5368 Cardiac Lymphoma 5 201386 -NCIT:C183146 Cardiac Diffuse Large B-Cell Lymphoma 6 201387 -NCIT:C183141 Cardiac Fibrin-Associated Diffuse Large B-Cell Lymphoma 7 201388 -NCIT:C5370 Cardiac Myeloid Sarcoma 5 201389 -NCIT:C5371 Malignant Cardiac Germ Cell Tumor 5 201390 -NCIT:C147006 Cardiac Yolk Sac Tumor 6 201391 -NCIT:C5392 Metastatic Cardiac Paraganglioma 5 201392 -NCIT:C7723 Cardiac Sarcoma 5 201393 -NCIT:C147003 Cardiac Extraskeletal Osteosarcoma 6 201394 -NCIT:C147097 Cardiac Angiosarcoma 6 201395 -NCIT:C45755 Cardiac Undifferentiated Pleomorphic Sarcoma 6 201396 -NCIT:C45756 Cardiac Synovial Sarcoma 6 201397 -NCIT:C45757 Cardiac Biphasic Synovial Sarcoma 7 201398 -NCIT:C45758 Cardiac Monophasic Synovial Sarcoma 7 201399 -NCIT:C45759 Cardiac Rhabdomyosarcoma 6 201400 -NCIT:C5361 Cardiac Fibrosarcoma 6 201401 -NCIT:C147004 Cardiac Myxofibrosarcoma 7 201402 -NCIT:C5363 Cardiac Kaposi Sarcoma 6 201403 -NCIT:C5364 Cardiac Leiomyosarcoma 6 201404 -NCIT:C5367 Cardiac Malignant Peripheral Nerve Sheath Tumor 6 201405 -NCIT:C4567 Malignant Pericardial Neoplasm 4 201406 -NCIT:C147098 Pericardial Sarcoma 5 201407 -NCIT:C147101 Pericardial Angiosarcoma 6 201408 -NCIT:C147102 Pericardial Synovial Sarcoma 6 201409 -NCIT:C147104 Malignant Pericardial Germ Cell Tumor 5 201410 -NCIT:C147105 Pericardial Yolk Sac Tumor 6 201411 -NCIT:C183136 Pericardial Primary Effusion Lymphoma 5 201412 -NCIT:C45762 Metastatic Malignant Neoplasm in the Pericardium 5 201413 -NCIT:C27385 Pericardial Carcinomatosis 6 201414 -NCIT:C7631 Pericardial Malignant Mesothelioma 5 201415 -NCIT:C8703 Advanced Pericardial Malignant Mesothelioma 6 201416 -NCIT:C9253 Recurrent Pericardial Malignant Mesothelioma 6 201417 -NCIT:C7753 Malignant Pericarditis 5 201418 -NCIT:C4575 Malignant Great Vessel Neoplasm 4 201419 -NCIT:C5375 Malignant Aortic Neoplasm 5 201420 -NCIT:C5377 Malignant Inferior Vena Cava Neoplasm 5 201421 -NCIT:C5379 Malignant Superior Vena Cava Neoplasm 5 201422 -NCIT:C6745 Superior Vena Cava Leiomyosarcoma 6 201423 -NCIT:C5380 Malignant Pulmonary Artery Neoplasm 5 201424 -NCIT:C5381 Pulmonary Artery Choriocarcinoma 6 201425 -NCIT:C5383 Malignant Pulmonary Vein Neoplasm 5 201426 -NCIT:C7390 Malignant Vascular Neoplasm 4 201427 -NCIT:C27529 Malignant Skin Vascular Neoplasm 5 201428 -NCIT:C3550 Skin Kaposi Sarcoma 6 201429 -NCIT:C9112 Classic Kaposi Sarcoma 7 201430 -NCIT:C4489 Skin Angiosarcoma 6 201431 -NCIT:C153626 Recurrent Skin Angiosarcoma 7 201432 -NCIT:C27719 Skin Radiation-Related Angiosarcoma 7 201433 -NCIT:C40379 Angiosarcoma of the Skin of the Arm after Radical Mastectomy followed by Lymphedema 7 201434 -NCIT:C4490 Skin Lymphangiosarcoma 6 201435 -NCIT:C3205 Lymphangiosarcoma 5 201436 -NCIT:C4490 Skin Lymphangiosarcoma 6 201437 -NCIT:C8538 Malignant Blood Vessel Neoplasm 5 201438 -NCIT:C3088 Angiosarcoma 6 201439 -NCIT:C121671 Soft Tissue Angiosarcoma 7 201440 -NCIT:C162578 Penile Angiosarcoma 8 201441 -NCIT:C171026 Visceral Angiosarcoma 8 201442 -NCIT:C147097 Cardiac Angiosarcoma 9 201443 -NCIT:C147101 Pericardial Angiosarcoma 9 201444 -NCIT:C159205 Kidney Angiosarcoma 9 201445 -NCIT:C159671 Bladder Angiosarcoma 9 201446 -NCIT:C161642 Seminal Vesicle Angiosarcoma 9 201447 -NCIT:C4438 Liver Angiosarcoma 9 201448 -NCIT:C190020 Childhood Liver Angiosarcoma 10 201449 -NCIT:C4564 Splenic Angiosarcoma 9 201450 -NCIT:C48320 Adrenal Gland Angiosarcoma 9 201451 -NCIT:C5232 Ovarian Angiosarcoma 9 201452 -NCIT:C5376 Aortic Angiosarcoma 9 201453 -NCIT:C5378 Superior Vena Cava Angiosarcoma 9 201454 -NCIT:C5385 Uterine Angiosarcoma 9 201455 -NCIT:C128049 Cervical Angiosarcoma 10 201456 -NCIT:C5528 Prostate Angiosarcoma 9 201457 -NCIT:C5840 Gallbladder Angiosarcoma 9 201458 -NCIT:C6043 Thyroid Gland Angiosarcoma 9 201459 -NCIT:C6613 Mediastinal Angiosarcoma 9 201460 -NCIT:C6746 Pulmonary Artery Angiosarcoma 9 201461 -NCIT:C96060 Small Intestinal Angiosarcoma 9 201462 -NCIT:C96511 Colorectal Angiosarcoma 9 201463 -NCIT:C173125 Sinonasal Angiosarcoma 8 201464 -NCIT:C176515 Vulvar Angiosarcoma 8 201465 -NCIT:C4489 Skin Angiosarcoma 8 201466 -NCIT:C153626 Recurrent Skin Angiosarcoma 9 201467 -NCIT:C27719 Skin Radiation-Related Angiosarcoma 9 201468 -NCIT:C40379 Angiosarcoma of the Skin of the Arm after Radical Mastectomy followed by Lymphedema 9 201469 -NCIT:C5184 Breast Angiosarcoma 8 201470 -NCIT:C133092 Recurrent Breast Angiosarcoma 9 201471 -NCIT:C176251 Primary Breast Angiosarcoma 9 201472 -NCIT:C40378 Postradiation Breast Angiosarcoma 9 201473 -NCIT:C5320 Peripheral Intraneural Angiosarcoma 8 201474 -NCIT:C5450 Central Nervous System Angiosarcoma 8 201475 -NCIT:C168718 Unresectable Angiosarcoma 7 201476 -NCIT:C175499 Conjunctival Angiosarcoma 7 201477 -NCIT:C27512 Angiosarcoma Associated with Lymphedema 7 201478 -NCIT:C40379 Angiosarcoma of the Skin of the Arm after Radical Mastectomy followed by Lymphedema 8 201479 -NCIT:C27513 Radiation-Related Angiosarcoma 7 201480 -NCIT:C27719 Skin Radiation-Related Angiosarcoma 8 201481 -NCIT:C5384 Recurrent Angiosarcoma 7 201482 -NCIT:C133092 Recurrent Breast Angiosarcoma 8 201483 -NCIT:C153626 Recurrent Skin Angiosarcoma 8 201484 -NCIT:C6479 Bone Angiosarcoma 7 201485 -NCIT:C8708 Metastatic Angiosarcoma 7 201486 -NCIT:C146856 Locally Advanced Angiosarcoma 8 201487 -NCIT:C168720 Advanced Angiosarcoma 8 201488 -NCIT:C9031 Poorly Differentiated Angiosarcoma 7 201489 -NCIT:C9040 Adult Angiosarcoma 7 201490 -NCIT:C9174 Childhood Angiosarcoma 7 201491 -NCIT:C190020 Childhood Liver Angiosarcoma 8 201492 -NCIT:C9275 Localized Angiosarcoma 7 201493 -NCIT:C9411 Angiosarcoma NCI Grade 2 7 201494 -NCIT:C9412 Angiosarcoma NCI Grade 3 7 201495 -NCIT:C9426 Conventional Angiosarcoma 7 201496 -NCIT:C3800 Epithelioid Hemangioendothelioma 6 201497 -NCIT:C114923 Adult Epithelioid Hemangioendothelioma 7 201498 -NCIT:C114926 Childhood Epithelioid Hemangioendothelioma 7 201499 -NCIT:C121941 Bone Epithelioid Hemangioendothelioma 7 201500 -NCIT:C129536 Central Nervous System Epithelioid Hemangioendothelioma 7 201501 -NCIT:C146858 Metastatic Epithelioid Hemangioendothelioma 7 201502 -NCIT:C146857 Locally Advanced Epithelioid Hemangioendothelioma 8 201503 -NCIT:C168721 Advanced Epithelioid Hemangioendothelioma 8 201504 -NCIT:C146988 Mediastinal Epithelioid Hemangioendothelioma 7 201505 -NCIT:C162581 Penile Epithelioid Hemangioendothelioma 7 201506 -NCIT:C168723 Unresectable Epithelioid Hemangioendothelioma 7 201507 -NCIT:C173138 Sinonasal Epithelioid Hemangioendothelioma 7 201508 -NCIT:C177552 Epithelioid Hemangioendothelioma with WWTR1-CAMTA1 Gene Fusion 7 201509 -NCIT:C177553 Epithelioid Hemangioendothelioma with YAP1-TFE3 Gene Fusion 7 201510 -NCIT:C4453 Lung Epithelioid Hemangioendothelioma 7 201511 -NCIT:C45695 Pleural Epithelioid Hemangioendothelioma 7 201512 -NCIT:C5362 Cardiac Epithelioid Hemangioendothelioma 7 201513 -NCIT:C96846 Liver Epithelioid Hemangioendothelioma 7 201514 -NCIT:C9087 Kaposi Sarcoma 6 201515 -NCIT:C156474 Refractory Kaposi Sarcoma 7 201516 -NCIT:C156475 Metastatic Kaposi Sarcoma 7 201517 -NCIT:C156476 Advanced Kaposi Sarcoma 8 201518 -NCIT:C172955 Digestive System Kaposi Sarcoma 7 201519 -NCIT:C5529 Gastric Kaposi Sarcoma 8 201520 -NCIT:C5624 AIDS-Related Gastric Kaposi Sarcoma 9 201521 -NCIT:C5602 Anal Kaposi Sarcoma 8 201522 -NCIT:C5706 Esophageal Kaposi Sarcoma 8 201523 -NCIT:C5842 Gallbladder Kaposi Sarcoma 8 201524 -NCIT:C96059 Small Intestinal Kaposi Sarcoma 8 201525 -NCIT:C96434 Appendix Kaposi Sarcoma 8 201526 -NCIT:C96510 Colorectal Kaposi Sarcoma 8 201527 -NCIT:C5516 Colon Kaposi Sarcoma 9 201528 -NCIT:C5550 Rectal Kaposi Sarcoma 9 201529 -NCIT:C96844 Liver Kaposi Sarcoma 8 201530 -NCIT:C96951 Extrahepatic Bile Duct Kaposi Sarcoma 8 201531 -NCIT:C173477 Oral Cavity Kaposi Sarcoma 7 201532 -NCIT:C6749 Palate Kaposi Sarcoma 8 201533 -NCIT:C181938 Vulvar Kaposi Sarcoma 7 201534 -NCIT:C188980 Childhood Kaposi Sarcoma 7 201535 -NCIT:C27500 Lymphadenopathic Kaposi Sarcoma 7 201536 -NCIT:C3550 Skin Kaposi Sarcoma 7 201537 -NCIT:C9112 Classic Kaposi Sarcoma 8 201538 -NCIT:C3551 Lung Kaposi Sarcoma 7 201539 -NCIT:C35873 Iatrogenic Kaposi Sarcoma 7 201540 -NCIT:C9113 Kaposi Sarcoma Related to Immunosuppressive Treatment 8 201541 -NCIT:C27640 Transplant-Related Kaposi Sarcoma 9 201542 -NCIT:C35874 Endemic African Kaposi Sarcoma 7 201543 -NCIT:C3992 AIDS-Related Kaposi Sarcoma 7 201544 -NCIT:C5624 AIDS-Related Gastric Kaposi Sarcoma 8 201545 -NCIT:C7433 AIDS-Related Cervical Kaposi Sarcoma 8 201546 -NCIT:C4578 Conjunctival Kaposi Sarcoma 7 201547 -NCIT:C4579 Corneal Kaposi Sarcoma 7 201548 -NCIT:C5363 Cardiac Kaposi Sarcoma 7 201549 -NCIT:C5523 Prostate Kaposi Sarcoma 7 201550 -NCIT:C5952 Parotid Gland Kaposi Sarcoma 7 201551 -NCIT:C6377 Penile Kaposi Sarcoma 7 201552 -NCIT:C7006 Central Nervous System Kaposi Sarcoma 7 201553 -NCIT:C7935 Recurrent Kaposi Sarcoma 7 201554 -NCIT:C9413 Kaposi Sarcoma NCI Grade 2 7 201555 -NCIT:C9414 Kaposi Sarcoma NCI Grade 3 7 201556 -NCIT:C120186 Refractory Malignant Neoplasm 3 201557 -NCIT:C123739 Refractory Malignant Germ Cell Tumor 4 201558 -NCIT:C123737 Refractory Childhood Malignant Germ Cell Tumor 5 201559 -NCIT:C170955 Platinum-Resistant Malignant Germ Cell Tumor 5 201560 -NCIT:C170956 Resectable Platinum-Resistant Malignant Germ Cell Tumor 6 201561 -NCIT:C170957 Metastatic Platinum-Resistant Malignant Germ Cell Tumor 6 201562 -NCIT:C170958 Advanced Platinum-Resistant Malignant Germ Cell Tumor 7 201563 -NCIT:C191408 Refractory Malignant Nongerminomatous Germ Cell Tumor 5 201564 -NCIT:C9077 Refractory Malignant Testicular Germ Cell Tumor 5 201565 -NCIT:C133737 Refractory Malignant Solid Neoplasm 4 201566 -NCIT:C148027 Refractory Childhood Malignant Solid Neoplasm 5 201567 -NCIT:C178283 Refractory Extracranial Malignant Solid Neoplasm 5 201568 -NCIT:C142858 Refractory Rhabdoid Tumor 4 201569 -NCIT:C162723 Refractory Atypical Teratoid/Rhabdoid Tumor 5 201570 -NCIT:C162731 Refractory Rhabdoid Tumor of the Kidney 5 201571 -NCIT:C188884 Refractory Extrarenal Rhabdoid Tumor 5 201572 -NCIT:C171171 Refractory Extrarenal Rhabdoid Tumor of the Ovary 6 201573 -NCIT:C147983 Refractory Melanoma 4 201574 -NCIT:C150544 Refractory Cutaneous Melanoma 5 201575 -NCIT:C173328 Refractory Non-Cutaneous Melanoma 5 201576 -NCIT:C173329 Refractory Ocular Melanoma 6 201577 -NCIT:C173335 Refractory Uveal Melanoma 7 201578 -NCIT:C180894 Refractory Mucosal Melanoma 6 201579 -NCIT:C182024 Refractory Metastatic Melanoma 5 201580 -NCIT:C148099 Refractory Malignant Thymoma 4 201581 -NCIT:C148301 Refractory Sarcoma 4 201582 -NCIT:C139001 Refractory Soft Tissue Sarcoma 5 201583 -NCIT:C142851 Refractory Rhabdomyosarcoma 6 201584 -NCIT:C142880 Refractory Alveolar Rhabdomyosarcoma 7 201585 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 7 201586 -NCIT:C148295 Refractory Undifferentiated Pleomorphic Sarcoma 6 201587 -NCIT:C148296 Refractory Synovial Sarcoma 6 201588 -NCIT:C156474 Refractory Kaposi Sarcoma 6 201589 -NCIT:C158427 Refractory Desmoplastic Small Round Cell Tumor 6 201590 -NCIT:C162722 Refractory Epithelioid Sarcoma 6 201591 -NCIT:C171168 Refractory Extraskeletal Myxoid Chondrosarcoma 6 201592 -NCIT:C180979 Refractory Clear Cell Sarcoma of Soft Tissue 6 201593 -NCIT:C185882 Refractory Malignant Gastrointestinal Stromal Tumor 6 201594 -NCIT:C187194 Refractory Childhood Soft Tissue Sarcoma 6 201595 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 7 201596 -NCIT:C188034 Refractory Alveolar Soft Part Sarcoma 6 201597 -NCIT:C142853 Refractory Ewing Sarcoma 5 201598 -NCIT:C142857 Refractory Osteosarcoma 5 201599 -NCIT:C187192 Refractory Childhood Osteosarcoma 6 201600 -NCIT:C148294 Refractory Leiomyosarcoma 5 201601 -NCIT:C150594 Refractory Liposarcoma 5 201602 -NCIT:C148297 Refractory Myxoid Liposarcoma 6 201603 -NCIT:C150593 Refractory Dedifferentiated Liposarcoma 6 201604 -NCIT:C155987 Refractory Malignant Peripheral Nerve Sheath Tumor 5 201605 -NCIT:C162725 Refractory Epithelioid Malignant Peripheral Nerve Sheath Tumor 6 201606 -NCIT:C158429 Refractory Fibrosarcoma 5 201607 -NCIT:C158431 Refractory Spindle Cell Sarcoma 5 201608 -NCIT:C148512 Refractory Human Papillomavirus-Related Malignant Neoplasm 4 201609 -NCIT:C150525 Refractory Malignant Bone Neoplasm 4 201610 -NCIT:C157682 Refractory Primary Bone Lymphoma 5 201611 -NCIT:C162721 Refractory Chordoma 5 201612 -NCIT:C162729 Refractory Dedifferentiated Chordoma 6 201613 -NCIT:C150527 Refractory Malignant Female Reproductive System Neoplasm 4 201614 -NCIT:C150092 Refractory Uterine Corpus Cancer 5 201615 -NCIT:C150093 Refractory Endometrial Carcinoma 6 201616 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 7 201617 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 7 201618 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 7 201619 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 7 201620 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 8 201621 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 8 201622 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 8 201623 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 8 201624 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 8 201625 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 7 201626 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 7 201627 -NCIT:C158381 Refractory Uterine Corpus Carcinosarcoma 6 201628 -NCIT:C152048 Refractory Female Reproductive System Carcinoma 5 201629 -NCIT:C150091 Refractory Ovarian Carcinoma 6 201630 -NCIT:C147561 Platinum-Resistant Ovarian Carcinoma 7 201631 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 8 201632 -NCIT:C179459 Unresectable Platinum-Resistant Ovarian Carcinoma 8 201633 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 8 201634 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 201635 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 201636 -NCIT:C170968 Refractory Ovarian Adenocarcinoma 7 201637 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 8 201638 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 8 201639 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 9 201640 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 9 201641 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 8 201642 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 8 201643 -NCIT:C178671 Refractory Ovarian Seromucinous Carcinoma 7 201644 -NCIT:C178682 Refractory Ovarian Transitional Cell Carcinoma 7 201645 -NCIT:C178683 Refractory Ovarian Undifferentiated Carcinoma 7 201646 -NCIT:C178700 Platinum-Refractory Ovarian Carcinoma 7 201647 -NCIT:C179207 Refractory Ovarian Squamous Cell Carcinoma 7 201648 -NCIT:C183126 Refractory Malignant Ovarian Brenner Tumor 7 201649 -NCIT:C150093 Refractory Endometrial Carcinoma 6 201650 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 7 201651 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 7 201652 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 7 201653 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 7 201654 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 8 201655 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 8 201656 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 8 201657 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 8 201658 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 8 201659 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 7 201660 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 7 201661 -NCIT:C152047 Refractory Fallopian Tube Carcinoma 6 201662 -NCIT:C157621 Platinum-Resistant Fallopian Tube Carcinoma 7 201663 -NCIT:C170750 Recurrent Platinum-Resistant Fallopian Tube Carcinoma 8 201664 -NCIT:C170971 Refractory Fallopian Tube Adenocarcinoma 7 201665 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 8 201666 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 8 201667 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 8 201668 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 8 201669 -NCIT:C178674 Refractory Fallopian Tube Transitional Cell Carcinoma 7 201670 -NCIT:C178675 Refractory Fallopian Tube Undifferentiated Carcinoma 7 201671 -NCIT:C178698 Platinum-Refractory Fallopian Tube Carcinoma 7 201672 -NCIT:C170513 Refractory Cervical Carcinoma 6 201673 -NCIT:C181034 Refractory Cervical Squamous Cell Carcinoma 7 201674 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 8 201675 -NCIT:C181036 Refractory Cervical Adenocarcinoma 7 201676 -NCIT:C174508 Refractory Vulvar Carcinoma 6 201677 -NCIT:C185304 Refractory Vulvar Squamous Cell Carcinoma 7 201678 -NCIT:C174509 Refractory Vaginal Carcinoma 6 201679 -NCIT:C185303 Refractory Vaginal Squamous Cell Carcinoma 7 201680 -NCIT:C169021 Platinum-Resistant Malignant Female Reproductive System Neoplasm 5 201681 -NCIT:C147561 Platinum-Resistant Ovarian Carcinoma 6 201682 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 7 201683 -NCIT:C179459 Unresectable Platinum-Resistant Ovarian Carcinoma 7 201684 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 7 201685 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 8 201686 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 8 201687 -NCIT:C157621 Platinum-Resistant Fallopian Tube Carcinoma 6 201688 -NCIT:C170750 Recurrent Platinum-Resistant Fallopian Tube Carcinoma 7 201689 -NCIT:C171171 Refractory Extrarenal Rhabdoid Tumor of the Ovary 5 201690 -NCIT:C178697 Platinum-Refractory Malignant Female Reproductive System Neoplasm 5 201691 -NCIT:C178698 Platinum-Refractory Fallopian Tube Carcinoma 6 201692 -NCIT:C178700 Platinum-Refractory Ovarian Carcinoma 6 201693 -NCIT:C150529 Refractory Malignant Neoplasm of Multiple Primary Sites 4 201694 -NCIT:C150534 Refractory Malignant Male Reproductive System Neoplasm 4 201695 -NCIT:C138022 Refractory Testicular Lymphoma 5 201696 -NCIT:C177149 Refractory Male Reproductive System Carcinoma 5 201697 -NCIT:C167255 Refractory Prostate Carcinoma 6 201698 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 7 201699 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 8 201700 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 8 201701 -NCIT:C161609 Double-Negative Prostate Carcinoma 8 201702 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 8 201703 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 8 201704 -NCIT:C167256 Refractory Prostate Adenocarcinoma 7 201705 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 7 201706 -NCIT:C177150 Refractory Penile Carcinoma 6 201707 -NCIT:C9077 Refractory Malignant Testicular Germ Cell Tumor 5 201708 -NCIT:C150535 Refractory Malignant Mesothelioma 4 201709 -NCIT:C159675 Refractory Pleural Malignant Mesothelioma 5 201710 -NCIT:C150537 Refractory Malignant Soft Tissue Neoplasm 4 201711 -NCIT:C139001 Refractory Soft Tissue Sarcoma 5 201712 -NCIT:C142851 Refractory Rhabdomyosarcoma 6 201713 -NCIT:C142880 Refractory Alveolar Rhabdomyosarcoma 7 201714 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 7 201715 -NCIT:C148295 Refractory Undifferentiated Pleomorphic Sarcoma 6 201716 -NCIT:C148296 Refractory Synovial Sarcoma 6 201717 -NCIT:C156474 Refractory Kaposi Sarcoma 6 201718 -NCIT:C158427 Refractory Desmoplastic Small Round Cell Tumor 6 201719 -NCIT:C162722 Refractory Epithelioid Sarcoma 6 201720 -NCIT:C171168 Refractory Extraskeletal Myxoid Chondrosarcoma 6 201721 -NCIT:C180979 Refractory Clear Cell Sarcoma of Soft Tissue 6 201722 -NCIT:C185882 Refractory Malignant Gastrointestinal Stromal Tumor 6 201723 -NCIT:C187194 Refractory Childhood Soft Tissue Sarcoma 6 201724 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 7 201725 -NCIT:C188034 Refractory Alveolar Soft Part Sarcoma 6 201726 -NCIT:C175664 Refractory Malignant Glomus Tumor 5 201727 -NCIT:C188884 Refractory Extrarenal Rhabdoid Tumor 5 201728 -NCIT:C171171 Refractory Extrarenal Rhabdoid Tumor of the Ovary 6 201729 -NCIT:C150541 Refractory Malignant Endocrine Neoplasm 4 201730 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 5 201731 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 6 201732 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 6 201733 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 7 201734 -NCIT:C165742 Refractory Neuroendocrine Carcinoma 5 201735 -NCIT:C155937 Refractory Digestive System Neuroendocrine Carcinoma 6 201736 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 7 201737 -NCIT:C165741 Refractory Merkel Cell Carcinoma 6 201738 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 6 201739 -NCIT:C191853 Refractory Small Cell Neuroendocrine Carcinoma 6 201740 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 7 201741 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 8 201742 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 8 201743 -NCIT:C191854 Refractory Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 201744 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 8 201745 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 8 201746 -NCIT:C188036 Refractory Adrenal Cortical Carcinoma 5 201747 -NCIT:C150543 Refractory Malignant Urinary System Neoplasm 4 201748 -NCIT:C162719 Refractory Urinary System Carcinoma 5 201749 -NCIT:C150316 Refractory Bladder Carcinoma 6 201750 -NCIT:C148286 Refractory Stage 0 Bladder Cancer AJCC v6 and v7 7 201751 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 7 201752 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 8 201753 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 7 201754 -NCIT:C150364 Refractory Urothelial Carcinoma 6 201755 -NCIT:C150365 Platinum-Resistant Urothelial Carcinoma 7 201756 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 7 201757 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 8 201758 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 7 201759 -NCIT:C176996 Refractory Urethral Urothelial Carcinoma 7 201760 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 7 201761 -NCIT:C172623 Refractory Kidney Carcinoma 6 201762 -NCIT:C162727 Refractory Kidney Medullary Carcinoma 7 201763 -NCIT:C165745 Refractory Renal Cell Carcinoma 7 201764 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 8 201765 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 7 201766 -NCIT:C162731 Refractory Rhabdoid Tumor of the Kidney 5 201767 -NCIT:C150546 Refractory Malignant Skin Neoplasm 4 201768 -NCIT:C142877 Refractory Primary Cutaneous Lymphoma 5 201769 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 6 201770 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 6 201771 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 7 201772 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 7 201773 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 7 201774 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 7 201775 -NCIT:C8687 Refractory Mycosis Fungoides 7 201776 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 8 201777 -NCIT:C150544 Refractory Cutaneous Melanoma 5 201778 -NCIT:C156104 Refractory Blastic Plasmacytoid Dendritic Cell Neoplasm 5 201779 -NCIT:C165735 Refractory Skin Squamous Cell Carcinoma 5 201780 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 6 201781 -NCIT:C165741 Refractory Merkel Cell Carcinoma 5 201782 -NCIT:C152078 Refractory Malignant Head and Neck Neoplasm 4 201783 -NCIT:C150530 Refractory Malignant Oral Neoplasm 5 201784 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 6 201785 -NCIT:C150532 Refractory Malignant Pharyngeal Neoplasm 5 201786 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 6 201787 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 6 201788 -NCIT:C148434 Refractory Nasopharyngeal Carcinoma 6 201789 -NCIT:C150539 Refractory Malignant Thyroid Gland Neoplasm 5 201790 -NCIT:C142983 Refractory Thyroid Gland Carcinoma 6 201791 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 7 201792 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 8 201793 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 8 201794 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 9 201795 -NCIT:C170832 Refractory Thyroid Gland Anaplastic Carcinoma 7 201796 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 7 201797 -NCIT:C151907 Refractory Head and Neck Carcinoma 5 201798 -NCIT:C142983 Refractory Thyroid Gland Carcinoma 6 201799 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 7 201800 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 8 201801 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 8 201802 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 9 201803 -NCIT:C170832 Refractory Thyroid Gland Anaplastic Carcinoma 7 201804 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 7 201805 -NCIT:C148152 Refractory Head and Neck Squamous Cell Carcinoma 6 201806 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 7 201807 -NCIT:C148383 Refractory Laryngeal Squamous Cell Carcinoma 7 201808 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 7 201809 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 7 201810 -NCIT:C148401 Refractory Sinonasal Squamous Cell Carcinoma 7 201811 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 201812 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 201813 -NCIT:C148434 Refractory Nasopharyngeal Carcinoma 6 201814 -NCIT:C177722 Refractory Salivary Gland Carcinoma 6 201815 -NCIT:C179151 Platinum-Resistant Head and Neck Carcinoma 6 201816 -NCIT:C177721 Refractory Malignant Salivary Gland Neoplasm 5 201817 -NCIT:C177722 Refractory Salivary Gland Carcinoma 6 201818 -NCIT:C153286 Refractory Ewing Sarcoma/Peripheral Primitive Neuroectodermal Tumor 4 201819 -NCIT:C142850 Refractory Peripheral Primitive Neuroectodermal Tumor 5 201820 -NCIT:C142853 Refractory Ewing Sarcoma 5 201821 -NCIT:C153842 Refractory Primary Malignant Central Nervous System Neoplasm 4 201822 -NCIT:C138020 Refractory Central Nervous System Lymphoma 5 201823 -NCIT:C146989 Refractory Central Nervous System Non-Hodgkin Lymphoma 6 201824 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 7 201825 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 201826 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 7 201827 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 201828 -NCIT:C142855 Refractory Malignant Glioma 5 201829 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 6 201830 -NCIT:C146734 Refractory Glioblastoma 6 201831 -NCIT:C163960 Refractory Small Cell Glioblastoma 7 201832 -NCIT:C163962 Refractory Gliosarcoma 7 201833 -NCIT:C176998 Refractory Giant Cell Glioblastoma 7 201834 -NCIT:C153865 Refractory WHO Grade 3 Glioma 6 201835 -NCIT:C160905 Refractory Anaplastic Pleomorphic Xanthoastrocytoma 7 201836 -NCIT:C160913 Refractory Anaplastic Ependymoma 7 201837 -NCIT:C169074 Refractory Anaplastic Oligodendroglioma 7 201838 -NCIT:C169075 Refractory Anaplastic Astrocytoma 7 201839 -NCIT:C153845 Refractory Malignant Brain Neoplasm 5 201840 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 6 201841 -NCIT:C142856 Refractory Medulloblastoma 6 201842 -NCIT:C147110 Refractory Medulloblastoma, SHH-Activated 7 201843 -NCIT:C180892 Refractory Medulloblastoma, WNT-Activated 7 201844 -NCIT:C160915 Refractory Anaplastic Ganglioglioma 5 201845 -NCIT:C162723 Refractory Atypical Teratoid/Rhabdoid Tumor 5 201846 -NCIT:C183152 Refractory Malignant Leptomeningeal Neoplasm 5 201847 -NCIT:C162703 Refractory Childhood Malignant Neoplasm 4 201848 -NCIT:C122624 Refractory Childhood Acute Lymphoblastic Leukemia 5 201849 -NCIT:C123737 Refractory Childhood Malignant Germ Cell Tumor 5 201850 -NCIT:C142854 Refractory Hepatoblastoma 5 201851 -NCIT:C148027 Refractory Childhood Malignant Solid Neoplasm 5 201852 -NCIT:C162731 Refractory Rhabdoid Tumor of the Kidney 5 201853 -NCIT:C187192 Refractory Childhood Osteosarcoma 5 201854 -NCIT:C187194 Refractory Childhood Soft Tissue Sarcoma 5 201855 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 6 201856 -NCIT:C187197 Refractory Childhood Lymphoma 5 201857 -NCIT:C115458 Refractory Childhood Hodgkin Lymphoma 6 201858 -NCIT:C187449 Refractory Childhood Acute Myeloid Leukemia 5 201859 -NCIT:C188884 Refractory Extrarenal Rhabdoid Tumor 5 201860 -NCIT:C171171 Refractory Extrarenal Rhabdoid Tumor of the Ovary 6 201861 -NCIT:C173565 Refractory Primitive Neuroectodermal Tumor 4 201862 -NCIT:C134153 Refractory Neuroblastoma 5 201863 -NCIT:C142850 Refractory Peripheral Primitive Neuroectodermal Tumor 5 201864 -NCIT:C173530 Refractory Ganglioneuroblastoma 5 201865 -NCIT:C188038 Refractory Wilms Tumor 4 201866 -NCIT:C27357 Refractory Hematologic Malignancy 4 201867 -NCIT:C148426 Refractory Leukemia 5 201868 -NCIT:C148431 Refractory Acute Leukemia 6 201869 -NCIT:C134319 Refractory Acute Myeloid Leukemia 7 201870 -NCIT:C174486 Refractory Acute Myeloid Leukemia Not Otherwise Specified 8 201871 -NCIT:C174511 Refractory Acute Monoblastic and Monocytic Leukemia 9 201872 -NCIT:C174512 Refractory Acute Myelomonocytic Leukemia 9 201873 -NCIT:C180897 Refractory Acute Myeloid Leukemia with Myelodysplasia-Related Changes 8 201874 -NCIT:C187449 Refractory Childhood Acute Myeloid Leukemia 8 201875 -NCIT:C136488 Refractory Acute Lymphoblastic Leukemia 7 201876 -NCIT:C122624 Refractory Childhood Acute Lymphoblastic Leukemia 8 201877 -NCIT:C126309 Refractory Adult Acute Lymphoblastic Leukemia 8 201878 -NCIT:C142812 Refractory B Acute Lymphoblastic Leukemia 8 201879 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 9 201880 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 201881 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 9 201882 -NCIT:C150510 Refractory T Acute Lymphoblastic Leukemia 8 201883 -NCIT:C151977 Refractory Burkitt Leukemia 7 201884 -NCIT:C172630 Refractory Acute Leukemia of Ambiguous Lineage 7 201885 -NCIT:C148430 Refractory Mixed Phenotype Acute Leukemia 8 201886 -NCIT:C173683 Refractory Acute Biphenotypic Leukemia 9 201887 -NCIT:C179205 Refractory Acute Bilineal Leukemia 9 201888 -NCIT:C173503 Refractory Acute Undifferentiated Leukemia 8 201889 -NCIT:C150044 Refractory Chronic Leukemia 6 201890 -NCIT:C150049 Refractory Chronic Myelomonocytic Leukemia 7 201891 -NCIT:C157691 Refractory T-Cell Prolymphocytic Leukemia 7 201892 -NCIT:C157693 Refractory Aggressive NK-Cell Leukemia 7 201893 -NCIT:C157697 Refractory B-Cell Prolymphocytic Leukemia 7 201894 -NCIT:C171064 Refractory Hairy Cell Leukemia Variant 7 201895 -NCIT:C177000 Refractory Sezary Syndrome 7 201896 -NCIT:C180986 Refractory T-Cell Large Granular Lymphocyte Leukemia 7 201897 -NCIT:C7885 Refractory Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 201898 -NCIT:C7886 Refractory Chronic Lymphocytic Leukemia 7 201899 -NCIT:C158152 Refractory Transformed Chronic Lymphocytic Leukemia 8 201900 -NCIT:C8030 Refractory Hairy Cell Leukemia 7 201901 -NCIT:C190787 Refractory Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 201902 -NCIT:C172280 Refractory Malignant Lymphoid Neoplasm 5 201903 -NCIT:C134154 Refractory Lymphoma 6 201904 -NCIT:C138014 Refractory B-Cell Lymphoma, Unclassifiable, with Features Intermediate between Diffuse Large B-Cell Lymphoma and Classic Hodgkin Lymphoma 7 201905 -NCIT:C138020 Refractory Central Nervous System Lymphoma 7 201906 -NCIT:C146989 Refractory Central Nervous System Non-Hodgkin Lymphoma 8 201907 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 9 201908 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 201909 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 201910 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 201911 -NCIT:C138022 Refractory Testicular Lymphoma 7 201912 -NCIT:C138024 Refractory Breast Lymphoma 7 201913 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 8 201914 -NCIT:C142877 Refractory Primary Cutaneous Lymphoma 7 201915 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 8 201916 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 201917 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 201918 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 201919 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 201920 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 201921 -NCIT:C8687 Refractory Mycosis Fungoides 9 201922 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 201923 -NCIT:C153177 Refractory Mediastinal Lymphoma 7 201924 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 201925 -NCIT:C157682 Refractory Primary Bone Lymphoma 7 201926 -NCIT:C160149 Refractory EBV-Related Lymphoma 7 201927 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 201928 -NCIT:C187197 Refractory Childhood Lymphoma 7 201929 -NCIT:C115458 Refractory Childhood Hodgkin Lymphoma 8 201930 -NCIT:C8701 Refractory Non-Hodgkin Lymphoma 7 201931 -NCIT:C140091 Refractory Transformed Non-Hodgkin Lymphoma 8 201932 -NCIT:C158150 Refractory Transformed B-Cell Non-Hodgkin Lymphoma 9 201933 -NCIT:C160240 Refractory Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 10 201934 -NCIT:C186484 Refractory Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 10 201935 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 11 201936 -NCIT:C165791 Refractory Transformed T-cell Non-Hodgkin Lymphoma 9 201937 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 201938 -NCIT:C146989 Refractory Central Nervous System Non-Hodgkin Lymphoma 8 201939 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 9 201940 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 201941 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 201942 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 201943 -NCIT:C151978 Refractory Lymphoblastic Lymphoma 8 201944 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 9 201945 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 9 201946 -NCIT:C156233 Refractory Aggressive Non-Hodgkin Lymphoma 8 201947 -NCIT:C178555 Refractory Aggressive B-Cell Non-Hodgkin Lymphoma 9 201948 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 201949 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 201950 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 10 201951 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 11 201952 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 11 201953 -NCIT:C8847 Refractory Burkitt Lymphoma 10 201954 -NCIT:C8862 Refractory Mantle Cell Lymphoma 10 201955 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 10 201956 -NCIT:C178556 Refractory Aggressive T-Cell Non-Hodgkin Lymphoma 9 201957 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 10 201958 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 201959 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 201960 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 201961 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 201962 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 10 201963 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 10 201964 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 10 201965 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 10 201966 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 10 201967 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 201968 -NCIT:C173046 Refractory Indolent Non-Hodgkin Lymphoma 8 201969 -NCIT:C148175 Refractory Indolent Adult Non-Hodgkin Lymphoma 9 201970 -NCIT:C183514 Refractory Indolent B-Cell Non-Hodgkin Lymphoma 9 201971 -NCIT:C143085 Refractory Marginal Zone Lymphoma 10 201972 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 11 201973 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 201974 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 11 201975 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 10 201976 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 10 201977 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 10 201978 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 11 201979 -NCIT:C183515 Refractory Indolent T-Cell Non-Hodgkin Lymphoma 9 201980 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 201981 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 201982 -NCIT:C8687 Refractory Mycosis Fungoides 10 201983 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 201984 -NCIT:C8664 Refractory T-Cell Non-Hodgkin Lymphoma 8 201985 -NCIT:C178556 Refractory Aggressive T-Cell Non-Hodgkin Lymphoma 9 201986 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 10 201987 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 201988 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 201989 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 201990 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 201991 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 10 201992 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 10 201993 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 10 201994 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 10 201995 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 10 201996 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 201997 -NCIT:C183515 Refractory Indolent T-Cell Non-Hodgkin Lymphoma 9 201998 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 201999 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 202000 -NCIT:C8687 Refractory Mycosis Fungoides 10 202001 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 202002 -NCIT:C8689 Refractory Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 9 202003 -NCIT:C148129 Refractory Mycosis Fungoides and Sezary Syndrome 10 202004 -NCIT:C177000 Refractory Sezary Syndrome 11 202005 -NCIT:C8687 Refractory Mycosis Fungoides 11 202006 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 12 202007 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 10 202008 -NCIT:C157690 Refractory NK-Cell Lymphoma, Unclassifiable 10 202009 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 202010 -NCIT:C165791 Refractory Transformed T-cell Non-Hodgkin Lymphoma 10 202011 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 202012 -NCIT:C168779 Refractory Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 10 202013 -NCIT:C168781 Refractory Follicular T-Cell Lymphoma 10 202014 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 10 202015 -NCIT:C8658 Refractory Anaplastic Large Cell Lymphoma 10 202016 -NCIT:C162689 Refractory Systemic Anaplastic Large Cell Lymphoma 11 202017 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 12 202018 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 11 202019 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 11 202020 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 10 202021 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 10 202022 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 10 202023 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 10 202024 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 11 202025 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 11 202026 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 11 202027 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 11 202028 -NCIT:C8687 Refractory Mycosis Fungoides 11 202029 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 12 202030 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 202031 -NCIT:C8842 Refractory B-Cell Non-Hodgkin Lymphoma 8 202032 -NCIT:C178555 Refractory Aggressive B-Cell Non-Hodgkin Lymphoma 9 202033 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 202034 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 202035 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 10 202036 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 11 202037 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 11 202038 -NCIT:C8847 Refractory Burkitt Lymphoma 10 202039 -NCIT:C8862 Refractory Mantle Cell Lymphoma 10 202040 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 10 202041 -NCIT:C183514 Refractory Indolent B-Cell Non-Hodgkin Lymphoma 9 202042 -NCIT:C143085 Refractory Marginal Zone Lymphoma 10 202043 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 11 202044 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 202045 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 11 202046 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 10 202047 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 10 202048 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 10 202049 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 11 202050 -NCIT:C7228 Refractory Mature B-Cell Non-Hodgkin Lymphoma 9 202051 -NCIT:C143085 Refractory Marginal Zone Lymphoma 10 202052 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 11 202053 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 202054 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 11 202055 -NCIT:C158150 Refractory Transformed B-Cell Non-Hodgkin Lymphoma 10 202056 -NCIT:C160240 Refractory Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 11 202057 -NCIT:C186484 Refractory Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 11 202058 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 12 202059 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 10 202060 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 11 202061 -NCIT:C8846 Refractory Small Lymphocytic Lymphoma 10 202062 -NCIT:C8847 Refractory Burkitt Lymphoma 10 202063 -NCIT:C8853 Refractory Diffuse Large B-Cell Lymphoma 10 202064 -NCIT:C138018 Refractory Extranodal Diffuse Large B-cell Lymphoma 11 202065 -NCIT:C138026 Refractory Intravascular Large B-Cell Lymphoma 11 202066 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 202067 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 202068 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 11 202069 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 12 202070 -NCIT:C157678 Refractory T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 11 202071 -NCIT:C157680 Refractory Primary Effusion Lymphoma 11 202072 -NCIT:C157684 Refractory Plasmablastic Lymphoma 11 202073 -NCIT:C160233 Refractory High Grade B-Cell Lymphoma 11 202074 -NCIT:C151979 Refractory High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 12 202075 -NCIT:C162453 Refractory High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 12 202076 -NCIT:C188789 Refractory High Grade B-Cell Lymphoma, Not Otherwise Specified 12 202077 -NCIT:C165241 Refractory Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 202078 -NCIT:C160238 Refractory Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 12 202079 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 12 202080 -NCIT:C182034 Refractory Immunoblastic Lymphoma 12 202081 -NCIT:C8927 Refractory Centroblastic Lymphoma 12 202082 -NCIT:C183142 Refractory Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 11 202083 -NCIT:C188791 Refractory ALK-Positive Large B-Cell Lymphoma 11 202084 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 202085 -NCIT:C8858 Refractory Follicular Lymphoma 10 202086 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 11 202087 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 11 202088 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 11 202089 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 12 202090 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 12 202091 -NCIT:C8862 Refractory Mantle Cell Lymphoma 10 202092 -NCIT:C8836 Refractory Hodgkin Lymphoma 7 202093 -NCIT:C115458 Refractory Childhood Hodgkin Lymphoma 8 202094 -NCIT:C133736 Refractory Classic Hodgkin Lymphoma 8 202095 -NCIT:C142982 Refractory Lymphocyte-Rich Classic Hodgkin Lymphoma 9 202096 -NCIT:C8650 Refractory Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 202097 -NCIT:C8833 Refractory Mixed Cellularity Classic Hodgkin Lymphoma 9 202098 -NCIT:C8838 Refractory Nodular Sclerosis Classic Hodgkin Lymphoma 9 202099 -NCIT:C7260 Refractory Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 202100 -NCIT:C136488 Refractory Acute Lymphoblastic Leukemia 6 202101 -NCIT:C122624 Refractory Childhood Acute Lymphoblastic Leukemia 7 202102 -NCIT:C126309 Refractory Adult Acute Lymphoblastic Leukemia 7 202103 -NCIT:C142812 Refractory B Acute Lymphoblastic Leukemia 7 202104 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 202105 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 202106 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 202107 -NCIT:C150510 Refractory T Acute Lymphoblastic Leukemia 7 202108 -NCIT:C151977 Refractory Burkitt Leukemia 6 202109 -NCIT:C157475 Refractory Monomorphic Post-Transplant Lymphoproliferative Disorder 6 202110 -NCIT:C157697 Refractory B-Cell Prolymphocytic Leukemia 6 202111 -NCIT:C171064 Refractory Hairy Cell Leukemia Variant 6 202112 -NCIT:C172282 Refractory Chronic Lymphocytic Leukemia/Small Lymphocytic Lymphoma 6 202113 -NCIT:C7886 Refractory Chronic Lymphocytic Leukemia 7 202114 -NCIT:C158152 Refractory Transformed Chronic Lymphocytic Leukemia 8 202115 -NCIT:C8846 Refractory Small Lymphocytic Lymphoma 7 202116 -NCIT:C173411 Refractory Mature T-Cell and NK-Cell Neoplasm 6 202117 -NCIT:C157691 Refractory T-Cell Prolymphocytic Leukemia 7 202118 -NCIT:C157693 Refractory Aggressive NK-Cell Leukemia 7 202119 -NCIT:C180986 Refractory T-Cell Large Granular Lymphocyte Leukemia 7 202120 -NCIT:C8689 Refractory Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 7 202121 -NCIT:C148129 Refractory Mycosis Fungoides and Sezary Syndrome 8 202122 -NCIT:C177000 Refractory Sezary Syndrome 9 202123 -NCIT:C8687 Refractory Mycosis Fungoides 9 202124 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 202125 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 8 202126 -NCIT:C157690 Refractory NK-Cell Lymphoma, Unclassifiable 8 202127 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 8 202128 -NCIT:C165791 Refractory Transformed T-cell Non-Hodgkin Lymphoma 8 202129 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 9 202130 -NCIT:C168779 Refractory Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 8 202131 -NCIT:C168781 Refractory Follicular T-Cell Lymphoma 8 202132 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 8 202133 -NCIT:C8658 Refractory Anaplastic Large Cell Lymphoma 8 202134 -NCIT:C162689 Refractory Systemic Anaplastic Large Cell Lymphoma 9 202135 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 202136 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 202137 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 202138 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 8 202139 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 8 202140 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 8 202141 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 202142 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 202143 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 202144 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 202145 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 202146 -NCIT:C8687 Refractory Mycosis Fungoides 9 202147 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 202148 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 202149 -NCIT:C7813 Refractory Plasma Cell Neoplasm 6 202150 -NCIT:C133731 Refractory Primary Amyloidosis 7 202151 -NCIT:C174055 Refractory AL Amyloidosis 8 202152 -NCIT:C7024 Refractory Plasma Cell Myeloma 7 202153 -NCIT:C178375 Triple-Class Refractory Plasma Cell Myeloma 8 202154 -NCIT:C8030 Refractory Hairy Cell Leukemia 6 202155 -NCIT:C8696 Refractory T Lymphoblastic Leukemia/Lymphoma 6 202156 -NCIT:C150510 Refractory T Acute Lymphoblastic Leukemia 7 202157 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 7 202158 -NCIT:C172281 Refractory Myeloid Neoplasm 5 202159 -NCIT:C134319 Refractory Acute Myeloid Leukemia 6 202160 -NCIT:C174486 Refractory Acute Myeloid Leukemia Not Otherwise Specified 7 202161 -NCIT:C174511 Refractory Acute Monoblastic and Monocytic Leukemia 8 202162 -NCIT:C174512 Refractory Acute Myelomonocytic Leukemia 8 202163 -NCIT:C180897 Refractory Acute Myeloid Leukemia with Myelodysplasia-Related Changes 7 202164 -NCIT:C187449 Refractory Childhood Acute Myeloid Leukemia 7 202165 -NCIT:C148362 Refractory Myelodysplastic Syndrome 6 202166 -NCIT:C156104 Refractory Blastic Plasmacytoid Dendritic Cell Neoplasm 6 202167 -NCIT:C170816 Refractory Malignant Mastocytosis 6 202168 -NCIT:C170911 Refractory Myeloproliferative Neoplasm 6 202169 -NCIT:C171340 Refractory Primary Myelofibrosis 7 202170 -NCIT:C190787 Refractory Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 202171 -NCIT:C7885 Refractory Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 202172 -NCIT:C171339 Refractory Myelodysplastic/Myeloproliferative Neoplasm 6 202173 -NCIT:C150049 Refractory Chronic Myelomonocytic Leukemia 7 202174 -NCIT:C8511 Refractory Carcinoma 4 202175 -NCIT:C141076 Refractory Lung Carcinoma 5 202176 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 6 202177 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 7 202178 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 7 202179 -NCIT:C153081 Refractory Lung Non-Small Cell Carcinoma 6 202180 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 7 202181 -NCIT:C176858 Refractory Lung Non-Squamous Non-Small Cell Carcinoma 7 202182 -NCIT:C179209 Refractory Lung Adenocarcinoma 7 202183 -NCIT:C173331 Refractory Lung Squamous Cell Carcinoma 6 202184 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 7 202185 -NCIT:C147965 Refractory Breast Carcinoma 5 202186 -NCIT:C165703 Refractory Breast Adenocarcinoma 6 202187 -NCIT:C157057 Refractory Hormone Receptor-Positive Breast Carcinoma 7 202188 -NCIT:C167076 Refractory Triple-Negative Breast Carcinoma 7 202189 -NCIT:C168784 Refractory HER2-Negative Breast Carcinoma 7 202190 -NCIT:C182110 Refractory HER2-Positive Breast Carcinoma 7 202191 -NCIT:C148173 Refractory Thymic Carcinoma 5 202192 -NCIT:C151906 Refractory Digestive System Carcinoma 5 202193 -NCIT:C137857 Refractory Anal Carcinoma 6 202194 -NCIT:C173334 Refractory Anal Canal Squamous Cell Carcinoma 7 202195 -NCIT:C147982 Refractory Colorectal Carcinoma 6 202196 -NCIT:C153351 Refractory Colon Carcinoma 7 202197 -NCIT:C162155 Refractory Colon Adenocarcinoma 8 202198 -NCIT:C162154 Refractory Colorectal Adenocarcinoma 7 202199 -NCIT:C162155 Refractory Colon Adenocarcinoma 8 202200 -NCIT:C162157 Refractory Rectal Adenocarcinoma 8 202201 -NCIT:C162156 Refractory Rectal Carcinoma 7 202202 -NCIT:C162157 Refractory Rectal Adenocarcinoma 8 202203 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 8 202204 -NCIT:C173332 Refractory Microsatellite Stable Colorectal Carcinoma 7 202205 -NCIT:C147996 Refractory Gastric Carcinoma 6 202206 -NCIT:C167074 Refractory Gastric Adenocarcinoma 7 202207 -NCIT:C151904 Refractory Metastatic Digestive System Carcinoma 6 202208 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 7 202209 -NCIT:C153352 Refractory Liver Carcinoma 6 202210 -NCIT:C162450 Refractory Hepatocellular Carcinoma 7 202211 -NCIT:C188887 Refractory Fibrolamellar Carcinoma 8 202212 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 7 202213 -NCIT:C153356 Refractory Small Intestinal Carcinoma 6 202214 -NCIT:C155937 Refractory Digestive System Neuroendocrine Carcinoma 6 202215 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 7 202216 -NCIT:C162538 Refractory Gastroesophageal Junction Adenocarcinoma 6 202217 -NCIT:C171604 Refractory Esophageal Carcinoma 6 202218 -NCIT:C171606 Refractory Esophageal Squamous Cell Carcinoma 7 202219 -NCIT:C176892 Refractory Esophageal Adenocarcinoma 7 202220 -NCIT:C179177 Refractory Appendix Carcinoma 6 202221 -NCIT:C179178 Refractory Appendix Adenocarcinoma 7 202222 -NCIT:C185305 Refractory Pancreatobiliary Carcinoma 6 202223 -NCIT:C142808 Refractory Pancreatic Carcinoma 7 202224 -NCIT:C162015 Refractory Pancreatic Adenocarcinoma 8 202225 -NCIT:C165450 Refractory Pancreatic Ductal Adenocarcinoma 9 202226 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 9 202227 -NCIT:C162750 Refractory Biliary Tract Carcinoma 7 202228 -NCIT:C153355 Refractory Bile Duct Carcinoma 8 202229 -NCIT:C158101 Refractory Cholangiocarcinoma 9 202230 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 10 202231 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 202232 -NCIT:C175437 Refractory Extrahepatic Bile Duct Carcinoma 9 202233 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 202234 -NCIT:C162753 Refractory Gallbladder Carcinoma 8 202235 -NCIT:C175436 Refractory Ampulla of Vater Carcinoma 7 202236 -NCIT:C151907 Refractory Head and Neck Carcinoma 5 202237 -NCIT:C142983 Refractory Thyroid Gland Carcinoma 6 202238 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 7 202239 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 8 202240 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 8 202241 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 9 202242 -NCIT:C170832 Refractory Thyroid Gland Anaplastic Carcinoma 7 202243 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 7 202244 -NCIT:C148152 Refractory Head and Neck Squamous Cell Carcinoma 6 202245 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 7 202246 -NCIT:C148383 Refractory Laryngeal Squamous Cell Carcinoma 7 202247 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 7 202248 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 7 202249 -NCIT:C148401 Refractory Sinonasal Squamous Cell Carcinoma 7 202250 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 202251 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 202252 -NCIT:C148434 Refractory Nasopharyngeal Carcinoma 6 202253 -NCIT:C177722 Refractory Salivary Gland Carcinoma 6 202254 -NCIT:C179151 Platinum-Resistant Head and Neck Carcinoma 6 202255 -NCIT:C152046 Refractory Primary Peritoneal Carcinoma 5 202256 -NCIT:C157622 Platinum-Resistant Primary Peritoneal Carcinoma 6 202257 -NCIT:C170751 Recurrent Platinum-Resistant Primary Peritoneal Carcinoma 7 202258 -NCIT:C170975 Refractory Primary Peritoneal Adenocarcinoma 6 202259 -NCIT:C171021 Refractory Primary Peritoneal Serous Adenocarcinoma 7 202260 -NCIT:C178686 Refractory Primary Peritoneal High Grade Serous Adenocarcinoma 8 202261 -NCIT:C178687 Refractory Primary Peritoneal Low Grade Serous Adenocarcinoma 8 202262 -NCIT:C178684 Refractory Primary Peritoneal Clear Cell Adenocarcinoma 7 202263 -NCIT:C178685 Refractory Primary Peritoneal Endometrioid Adenocarcinoma 7 202264 -NCIT:C178688 Refractory Primary Peritoneal Transitional Cell Carcinoma 6 202265 -NCIT:C178689 Refractory Primary Peritoneal Undifferentiated Carcinoma 6 202266 -NCIT:C178702 Platinum-Refractory Primary Peritoneal Carcinoma 6 202267 -NCIT:C152048 Refractory Female Reproductive System Carcinoma 5 202268 -NCIT:C150091 Refractory Ovarian Carcinoma 6 202269 -NCIT:C147561 Platinum-Resistant Ovarian Carcinoma 7 202270 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 8 202271 -NCIT:C179459 Unresectable Platinum-Resistant Ovarian Carcinoma 8 202272 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 8 202273 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 202274 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 202275 -NCIT:C170968 Refractory Ovarian Adenocarcinoma 7 202276 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 8 202277 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 8 202278 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 9 202279 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 9 202280 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 8 202281 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 8 202282 -NCIT:C178671 Refractory Ovarian Seromucinous Carcinoma 7 202283 -NCIT:C178682 Refractory Ovarian Transitional Cell Carcinoma 7 202284 -NCIT:C178683 Refractory Ovarian Undifferentiated Carcinoma 7 202285 -NCIT:C178700 Platinum-Refractory Ovarian Carcinoma 7 202286 -NCIT:C179207 Refractory Ovarian Squamous Cell Carcinoma 7 202287 -NCIT:C183126 Refractory Malignant Ovarian Brenner Tumor 7 202288 -NCIT:C150093 Refractory Endometrial Carcinoma 6 202289 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 7 202290 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 7 202291 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 7 202292 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 7 202293 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 8 202294 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 8 202295 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 8 202296 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 8 202297 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 8 202298 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 7 202299 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 7 202300 -NCIT:C152047 Refractory Fallopian Tube Carcinoma 6 202301 -NCIT:C157621 Platinum-Resistant Fallopian Tube Carcinoma 7 202302 -NCIT:C170750 Recurrent Platinum-Resistant Fallopian Tube Carcinoma 8 202303 -NCIT:C170971 Refractory Fallopian Tube Adenocarcinoma 7 202304 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 8 202305 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 8 202306 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 8 202307 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 8 202308 -NCIT:C178674 Refractory Fallopian Tube Transitional Cell Carcinoma 7 202309 -NCIT:C178675 Refractory Fallopian Tube Undifferentiated Carcinoma 7 202310 -NCIT:C178698 Platinum-Refractory Fallopian Tube Carcinoma 7 202311 -NCIT:C170513 Refractory Cervical Carcinoma 6 202312 -NCIT:C181034 Refractory Cervical Squamous Cell Carcinoma 7 202313 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 8 202314 -NCIT:C181036 Refractory Cervical Adenocarcinoma 7 202315 -NCIT:C174508 Refractory Vulvar Carcinoma 6 202316 -NCIT:C185304 Refractory Vulvar Squamous Cell Carcinoma 7 202317 -NCIT:C174509 Refractory Vaginal Carcinoma 6 202318 -NCIT:C185303 Refractory Vaginal Squamous Cell Carcinoma 7 202319 -NCIT:C159563 Refractory Adenocarcinoma 5 202320 -NCIT:C158101 Refractory Cholangiocarcinoma 6 202321 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 7 202322 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 7 202323 -NCIT:C162015 Refractory Pancreatic Adenocarcinoma 6 202324 -NCIT:C165450 Refractory Pancreatic Ductal Adenocarcinoma 7 202325 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 7 202326 -NCIT:C162154 Refractory Colorectal Adenocarcinoma 6 202327 -NCIT:C162155 Refractory Colon Adenocarcinoma 7 202328 -NCIT:C162157 Refractory Rectal Adenocarcinoma 7 202329 -NCIT:C162450 Refractory Hepatocellular Carcinoma 6 202330 -NCIT:C188887 Refractory Fibrolamellar Carcinoma 7 202331 -NCIT:C162538 Refractory Gastroesophageal Junction Adenocarcinoma 6 202332 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 6 202333 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 7 202334 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 7 202335 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 7 202336 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 7 202337 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 7 202338 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 6 202339 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 7 202340 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 7 202341 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 8 202342 -NCIT:C165703 Refractory Breast Adenocarcinoma 6 202343 -NCIT:C157057 Refractory Hormone Receptor-Positive Breast Carcinoma 7 202344 -NCIT:C167076 Refractory Triple-Negative Breast Carcinoma 7 202345 -NCIT:C168784 Refractory HER2-Negative Breast Carcinoma 7 202346 -NCIT:C182110 Refractory HER2-Positive Breast Carcinoma 7 202347 -NCIT:C165745 Refractory Renal Cell Carcinoma 6 202348 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 7 202349 -NCIT:C167074 Refractory Gastric Adenocarcinoma 6 202350 -NCIT:C167256 Refractory Prostate Adenocarcinoma 6 202351 -NCIT:C170968 Refractory Ovarian Adenocarcinoma 6 202352 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 7 202353 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 7 202354 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 8 202355 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 8 202356 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 7 202357 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 7 202358 -NCIT:C170971 Refractory Fallopian Tube Adenocarcinoma 6 202359 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 7 202360 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 7 202361 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 7 202362 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 7 202363 -NCIT:C170975 Refractory Primary Peritoneal Adenocarcinoma 6 202364 -NCIT:C171021 Refractory Primary Peritoneal Serous Adenocarcinoma 7 202365 -NCIT:C178686 Refractory Primary Peritoneal High Grade Serous Adenocarcinoma 8 202366 -NCIT:C178687 Refractory Primary Peritoneal Low Grade Serous Adenocarcinoma 8 202367 -NCIT:C178684 Refractory Primary Peritoneal Clear Cell Adenocarcinoma 7 202368 -NCIT:C178685 Refractory Primary Peritoneal Endometrioid Adenocarcinoma 7 202369 -NCIT:C176892 Refractory Esophageal Adenocarcinoma 6 202370 -NCIT:C179178 Refractory Appendix Adenocarcinoma 6 202371 -NCIT:C179180 Refractory Pseudomyxoma Peritonei 6 202372 -NCIT:C179209 Refractory Lung Adenocarcinoma 6 202373 -NCIT:C181036 Refractory Cervical Adenocarcinoma 6 202374 -NCIT:C188036 Refractory Adrenal Cortical Carcinoma 6 202375 -NCIT:C162719 Refractory Urinary System Carcinoma 5 202376 -NCIT:C150316 Refractory Bladder Carcinoma 6 202377 -NCIT:C148286 Refractory Stage 0 Bladder Cancer AJCC v6 and v7 7 202378 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 7 202379 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 8 202380 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 7 202381 -NCIT:C150364 Refractory Urothelial Carcinoma 6 202382 -NCIT:C150365 Platinum-Resistant Urothelial Carcinoma 7 202383 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 7 202384 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 8 202385 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 7 202386 -NCIT:C176996 Refractory Urethral Urothelial Carcinoma 7 202387 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 7 202388 -NCIT:C172623 Refractory Kidney Carcinoma 6 202389 -NCIT:C162727 Refractory Kidney Medullary Carcinoma 7 202390 -NCIT:C165745 Refractory Renal Cell Carcinoma 7 202391 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 8 202392 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 7 202393 -NCIT:C162733 Refractory Malignant Myoepithelioma 5 202394 -NCIT:C165742 Refractory Neuroendocrine Carcinoma 5 202395 -NCIT:C155937 Refractory Digestive System Neuroendocrine Carcinoma 6 202396 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 7 202397 -NCIT:C165741 Refractory Merkel Cell Carcinoma 6 202398 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 6 202399 -NCIT:C191853 Refractory Small Cell Neuroendocrine Carcinoma 6 202400 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 7 202401 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 8 202402 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 8 202403 -NCIT:C191854 Refractory Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 202404 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 8 202405 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 8 202406 -NCIT:C171605 Refractory Squamous Cell Carcinoma 5 202407 -NCIT:C148152 Refractory Head and Neck Squamous Cell Carcinoma 6 202408 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 7 202409 -NCIT:C148383 Refractory Laryngeal Squamous Cell Carcinoma 7 202410 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 7 202411 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 7 202412 -NCIT:C148401 Refractory Sinonasal Squamous Cell Carcinoma 7 202413 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 202414 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 202415 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 6 202416 -NCIT:C165735 Refractory Skin Squamous Cell Carcinoma 6 202417 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 202418 -NCIT:C171606 Refractory Esophageal Squamous Cell Carcinoma 6 202419 -NCIT:C173331 Refractory Lung Squamous Cell Carcinoma 6 202420 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 7 202421 -NCIT:C173334 Refractory Anal Canal Squamous Cell Carcinoma 6 202422 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 6 202423 -NCIT:C179207 Refractory Ovarian Squamous Cell Carcinoma 6 202424 -NCIT:C181034 Refractory Cervical Squamous Cell Carcinoma 6 202425 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 7 202426 -NCIT:C185303 Refractory Vaginal Squamous Cell Carcinoma 6 202427 -NCIT:C185304 Refractory Vulvar Squamous Cell Carcinoma 6 202428 -NCIT:C175668 Refractory Adenoid Cystic Carcinoma 5 202429 -NCIT:C177149 Refractory Male Reproductive System Carcinoma 5 202430 -NCIT:C167255 Refractory Prostate Carcinoma 6 202431 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 7 202432 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 8 202433 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 8 202434 -NCIT:C161609 Double-Negative Prostate Carcinoma 8 202435 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 8 202436 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 8 202437 -NCIT:C167256 Refractory Prostate Adenocarcinoma 7 202438 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 7 202439 -NCIT:C177150 Refractory Penile Carcinoma 6 202440 -NCIT:C121500 Malignant Fibrohistiocytic Neoplasm 3 202441 -NCIT:C6535 Malignant Tenosynovial Giant Cell Tumor 4 202442 -NCIT:C132146 Malignant Solid Neoplasm 3 202443 -NCIT:C127153 Recurrent Malignant Solid Neoplasm 4 202444 -NCIT:C148026 Recurrent Childhood Malignant Solid Neoplasm 5 202445 -NCIT:C170830 Recurrent Extracranial Malignant Solid Neoplasm 5 202446 -NCIT:C127155 Metastatic Malignant Solid Neoplasm 4 202447 -NCIT:C129707 Advanced Malignant Solid Neoplasm 5 202448 -NCIT:C157335 Advanced Extracranial Malignant Solid Neoplasm 6 202449 -NCIT:C187210 Advanced Childhood Malignant Solid Neoplasm 6 202450 -NCIT:C133093 Locally Advanced Malignant Solid Neoplasm 5 202451 -NCIT:C157334 Metastatic Extracranial Malignant Solid Neoplasm 5 202452 -NCIT:C157335 Advanced Extracranial Malignant Solid Neoplasm 6 202453 -NCIT:C161019 Oligometastatic Malignant Solid Neoplasm 5 202454 -NCIT:C133737 Refractory Malignant Solid Neoplasm 4 202455 -NCIT:C148027 Refractory Childhood Malignant Solid Neoplasm 5 202456 -NCIT:C178283 Refractory Extracranial Malignant Solid Neoplasm 5 202457 -NCIT:C148029 Childhood Malignant Solid Neoplasm 4 202458 -NCIT:C148026 Recurrent Childhood Malignant Solid Neoplasm 5 202459 -NCIT:C148027 Refractory Childhood Malignant Solid Neoplasm 5 202460 -NCIT:C187210 Advanced Childhood Malignant Solid Neoplasm 5 202461 -NCIT:C148036 Unresectable Malignant Solid Neoplasm 4 202462 -NCIT:C165542 Neoantigen-Positive Malignant Solid Neoplasm 4 202463 -NCIT:C165545 Patient-Specific Neoantigen-Positive Malignant Solid Neoplasm 5 202464 -NCIT:C165546 Shared Neoantigen-Positive Malignant Solid Neoplasm 5 202465 -NCIT:C190685 Localized Malignant Solid Neoplasm 4 202466 -NCIT:C150602 Resectable Malignant Neoplasm 3 202467 -NCIT:C150604 Resectable Carcinoma 4 202468 -NCIT:C132012 Resectable Head and Neck Squamous Cell Carcinoma 5 202469 -NCIT:C162787 Resectable Oropharyngeal Squamous Cell Carcinoma 6 202470 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 7 202471 -NCIT:C162943 Resectable Cutaneous Squamous Cell Carcinoma of the Head and Neck 6 202472 -NCIT:C154547 Resectable Renal Cell Carcinoma 5 202473 -NCIT:C156909 Resectable Digestive System Carcinoma 5 202474 -NCIT:C156910 Resectable Bile Duct Adenocarcinoma 6 202475 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 7 202476 -NCIT:C27326 Resectable Cholangiocarcinoma 7 202477 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 8 202478 -NCIT:C162257 Resectable Colorectal Carcinoma 6 202479 -NCIT:C167237 Resectable Colon Carcinoma 7 202480 -NCIT:C165293 Resectable Liver and Intrahepatic Bile Duct Carcinoma 6 202481 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 7 202482 -NCIT:C7691 Resectable Hepatocellular Carcinoma 7 202483 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 8 202484 -NCIT:C7877 Localized Resectable Adult Liver Carcinoma 7 202485 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 8 202486 -NCIT:C5099 Resectable Pancreatic Carcinoma 6 202487 -NCIT:C156906 Resectable Pancreatic Adenocarcinoma 7 202488 -NCIT:C151995 Resectable Pancreatic Ductal Adenocarcinoma 8 202489 -NCIT:C156907 Resectable Pancreatic Acinar Cell Carcinoma 8 202490 -NCIT:C157350 Borderline Resectable Pancreatic Adenocarcinoma 8 202491 -NCIT:C157348 Borderline Resectable Pancreatic Carcinoma 7 202492 -NCIT:C157350 Borderline Resectable Pancreatic Adenocarcinoma 8 202493 -NCIT:C174566 Resectable Pancreatic Adenosquamous Carcinoma 7 202494 -NCIT:C8639 Resectable Small Intestinal Carcinoma 6 202495 -NCIT:C27323 Resectable Duodenal Carcinoma 7 202496 -NCIT:C169108 Resectable Periampullary Adenocarcinoma 8 202497 -NCIT:C8640 Resectable Extrahepatic Bile Duct Carcinoma 6 202498 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 7 202499 -NCIT:C157349 Borderline Resectable Carcinoma 5 202500 -NCIT:C157348 Borderline Resectable Pancreatic Carcinoma 6 202501 -NCIT:C157350 Borderline Resectable Pancreatic Adenocarcinoma 7 202502 -NCIT:C170465 Resectable Skin Carcinoma 5 202503 -NCIT:C170464 Resectable Skin Squamous Cell Carcinoma 6 202504 -NCIT:C162943 Resectable Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 202505 -NCIT:C170961 Resectable Carcinoma of Unknown Primary 5 202506 -NCIT:C170962 Resectable Adenocarcinoma of Unknown Primary 6 202507 -NCIT:C188032 Resectable Bladder Urothelial Carcinoma 5 202508 -NCIT:C188035 Resectable Breast Carcinoma 5 202509 -NCIT:C190952 Resectable Lung Carcinoma 5 202510 -NCIT:C165767 Resectable Lung Non-Small Cell Carcinoma 6 202511 -NCIT:C190954 Resectable Lung Adenocarcinoma 7 202512 -NCIT:C190953 Resectable Lung Squamous Cell Carcinoma 6 202513 -NCIT:C150605 Resectable Sarcoma 4 202514 -NCIT:C150606 Resectable Liposarcoma 5 202515 -NCIT:C150607 Resectable Dedifferentiated Liposarcoma 6 202516 -NCIT:C153086 Resectable Soft Tissue Sarcoma 5 202517 -NCIT:C150611 Resectable Undifferentiated Pleomorphic Sarcoma 6 202518 -NCIT:C162661 Resectable Osteosarcoma 5 202519 -NCIT:C175505 Resectable Leiomyosarcoma 5 202520 -NCIT:C150620 Resectable Neuroblastoma 4 202521 -NCIT:C7835 Localized Resectable Neuroblastoma 5 202522 -NCIT:C154442 Resectable Malignant Mesothelioma 4 202523 -NCIT:C154441 Resectable Pleural Malignant Mesothelioma 5 202524 -NCIT:C157346 Borderline Resectable Malignant Neoplasm 4 202525 -NCIT:C157349 Borderline Resectable Carcinoma 5 202526 -NCIT:C157348 Borderline Resectable Pancreatic Carcinoma 6 202527 -NCIT:C157350 Borderline Resectable Pancreatic Adenocarcinoma 7 202528 -NCIT:C166156 Resectable Glioblastoma 4 202529 -NCIT:C170956 Resectable Platinum-Resistant Malignant Germ Cell Tumor 4 202530 -NCIT:C170963 Resectable Malignant Female Reproductive System Neoplasm 4 202531 -NCIT:C187448 Resectable Malignant Bone Neoplasm 4 202532 -NCIT:C190239 Resectable Melanoma 4 202533 -NCIT:C190240 Resectable Cutaneous Melanoma 5 202534 -NCIT:C7692 Resectable Malignant Liver Neoplasm 4 202535 -NCIT:C165293 Resectable Liver and Intrahepatic Bile Duct Carcinoma 5 202536 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 6 202537 -NCIT:C7691 Resectable Hepatocellular Carcinoma 6 202538 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 7 202539 -NCIT:C7877 Localized Resectable Adult Liver Carcinoma 6 202540 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 7 202541 -NCIT:C8642 Resectable Hepatoblastoma 5 202542 -NCIT:C156484 Malignant Genitourinary System Neoplasm 3 202543 -NCIT:C157774 Metastatic Malignant Genitourinary System Neoplasm 4 202544 -NCIT:C146893 Metastatic Genitourinary System Carcinoma 5 202545 -NCIT:C126109 Metastatic Urothelial Carcinoma 6 202546 -NCIT:C148493 Advanced Urothelial Carcinoma 7 202547 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 202548 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 202549 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 202550 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 202551 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 202552 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 7 202553 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 202554 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 202555 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 7 202556 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 202557 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 202558 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 202559 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 202560 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 202561 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 202562 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 202563 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 202564 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 202565 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 8 202566 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 7 202567 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 202568 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 202569 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 202570 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 202571 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 202572 -NCIT:C191692 Metastatic Clear Cell (Glycogen-Rich) Urothelial Carcinoma 7 202573 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 202574 -NCIT:C191693 Metastatic Giant Cell Urothelial Carcinoma 7 202575 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 202576 -NCIT:C191694 Metastatic Lipid-Rich Urothelial Carcinoma 7 202577 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 202578 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 7 202579 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 202580 -NCIT:C191696 Metastatic Nested Urothelial Carcinoma 7 202581 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 202582 -NCIT:C191697 Metastatic Plasmacytoid Urothelial Carcinoma 7 202583 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 202584 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 7 202585 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 202586 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 7 202587 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 8 202588 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 202589 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 202590 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 8 202591 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 202592 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 202593 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 202594 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 202595 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 202596 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 202597 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 202598 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 202599 -NCIT:C153387 Metastatic Cervical Carcinoma 6 202600 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 7 202601 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 202602 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 8 202603 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 7 202604 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 8 202605 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 202606 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 202607 -NCIT:C153390 Metastatic Cervical Adenosquamous Carcinoma 7 202608 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 8 202609 -NCIT:C156294 Advanced Cervical Carcinoma 7 202610 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 202611 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 202612 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 8 202613 -NCIT:C156295 Locally Advanced Cervical Carcinoma 7 202614 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 8 202615 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 202616 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 8 202617 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 202618 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 8 202619 -NCIT:C156062 Metastatic Bladder Carcinoma 6 202620 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 7 202621 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 202622 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 202623 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 202624 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 202625 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 202626 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 202627 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 202628 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 202629 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 202630 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 8 202631 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 7 202632 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 7 202633 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 7 202634 -NCIT:C167071 Locally Advanced Bladder Carcinoma 7 202635 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 202636 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 8 202637 -NCIT:C167338 Advanced Bladder Carcinoma 7 202638 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 202639 -NCIT:C190772 Metastatic Non-Muscle Invasive Bladder Carcinoma 7 202640 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 8 202641 -NCIT:C156063 Metastatic Fallopian Tube Carcinoma 6 202642 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 7 202643 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 8 202644 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 7 202645 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 7 202646 -NCIT:C156064 Metastatic Ovarian Carcinoma 6 202647 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 7 202648 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 202649 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 202650 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 202651 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 8 202652 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 202653 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 202654 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 8 202655 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 202656 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 202657 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 202658 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 202659 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 202660 -NCIT:C165458 Advanced Ovarian Carcinoma 7 202661 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 202662 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 202663 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 202664 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 202665 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 202666 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 8 202667 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 8 202668 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 7 202669 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 202670 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 202671 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 202672 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 8 202673 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 7 202674 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 202675 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 7 202676 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 202677 -NCIT:C172234 Metastatic Ovarian Undifferentiated Carcinoma 7 202678 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 7 202679 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 8 202680 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 8 202681 -NCIT:C180333 Metastatic Microsatellite Stable Ovarian Carcinoma 7 202682 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 8 202683 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 7 202684 -NCIT:C27391 Metastatic Ovarian Small Cell Carcinoma, Hypercalcemic Type 7 202685 -NCIT:C156065 Metastatic Vaginal Carcinoma 6 202686 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 7 202687 -NCIT:C170788 Advanced Vaginal Carcinoma 7 202688 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 202689 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 8 202690 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 202691 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 202692 -NCIT:C181028 Metastatic Vaginal Adenosquamous Carcinoma 7 202693 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 8 202694 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 7 202695 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 202696 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 202697 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 7 202698 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 202699 -NCIT:C156066 Metastatic Vulvar Carcinoma 6 202700 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 7 202701 -NCIT:C170786 Advanced Vulvar Carcinoma 7 202702 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 7 202703 -NCIT:C156068 Metastatic Endometrial Carcinoma 6 202704 -NCIT:C159676 Advanced Endometrial Carcinoma 7 202705 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 8 202706 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 202707 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 202708 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 8 202709 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 7 202710 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 8 202711 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 202712 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 8 202713 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 7 202714 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 7 202715 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 8 202716 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 7 202717 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 8 202718 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 202719 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 8 202720 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 202721 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 202722 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 8 202723 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 202724 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 202725 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 8 202726 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 202727 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 8 202728 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 8 202729 -NCIT:C164143 Advanced Genitourinary System Carcinoma 6 202730 -NCIT:C148493 Advanced Urothelial Carcinoma 7 202731 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 202732 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 202733 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 202734 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 202735 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 202736 -NCIT:C156284 Advanced Prostate Carcinoma 7 202737 -NCIT:C156286 Advanced Prostate Adenocarcinoma 8 202738 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 202739 -NCIT:C156294 Advanced Cervical Carcinoma 7 202740 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 202741 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 202742 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 8 202743 -NCIT:C159676 Advanced Endometrial Carcinoma 7 202744 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 8 202745 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 202746 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 202747 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 8 202748 -NCIT:C165458 Advanced Ovarian Carcinoma 7 202749 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 202750 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 202751 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 202752 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 202753 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 202754 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 8 202755 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 8 202756 -NCIT:C167338 Advanced Bladder Carcinoma 7 202757 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 202758 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 7 202759 -NCIT:C170786 Advanced Vulvar Carcinoma 7 202760 -NCIT:C170788 Advanced Vaginal Carcinoma 7 202761 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 202762 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 8 202763 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 202764 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 202765 -NCIT:C170790 Advanced Penile Carcinoma 7 202766 -NCIT:C172617 Advanced Kidney Carcinoma 7 202767 -NCIT:C153170 Advanced Renal Cell Carcinoma 8 202768 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 202769 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 202770 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 202771 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 202772 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 202773 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 8 202774 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 202775 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 8 202776 -NCIT:C167069 Locally Advanced Genitourinary System Carcinoma 6 202777 -NCIT:C156285 Locally Advanced Prostate Carcinoma 7 202778 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 8 202779 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 202780 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 8 202781 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 202782 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 202783 -NCIT:C156295 Locally Advanced Cervical Carcinoma 7 202784 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 8 202785 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 202786 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 8 202787 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 202788 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 8 202789 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 7 202790 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 202791 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 202792 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 202793 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 202794 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 202795 -NCIT:C167071 Locally Advanced Bladder Carcinoma 7 202796 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 202797 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 8 202798 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 7 202799 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 202800 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 202801 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 202802 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 8 202803 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 7 202804 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 8 202805 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 7 202806 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 8 202807 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 202808 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 8 202809 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 7 202810 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 7 202811 -NCIT:C170789 Locally Advanced Penile Carcinoma 7 202812 -NCIT:C172618 Locally Advanced Kidney Carcinoma 7 202813 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 8 202814 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 202815 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 202816 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 202817 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 202818 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 202819 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 202820 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 8 202821 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 202822 -NCIT:C185381 Metastatic Mesonephric Adenocarcinoma 6 202823 -NCIT:C27784 Metastatic Penile Carcinoma 6 202824 -NCIT:C170789 Locally Advanced Penile Carcinoma 7 202825 -NCIT:C170790 Advanced Penile Carcinoma 7 202826 -NCIT:C182111 Metastatic Squamous Cell Carcinoma of the Penis 7 202827 -NCIT:C27806 Metastatic Kidney Carcinoma 6 202828 -NCIT:C150595 Metastatic Renal Cell Carcinoma 7 202829 -NCIT:C153170 Advanced Renal Cell Carcinoma 8 202830 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 202831 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 202832 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 202833 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 202834 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 202835 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 8 202836 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 202837 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 202838 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 8 202839 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 202840 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 202841 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 8 202842 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 202843 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 202844 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 8 202845 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 202846 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 202847 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 202848 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 202849 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 202850 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 202851 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 8 202852 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 202853 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 202854 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 8 202855 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 202856 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 202857 -NCIT:C157755 Metastatic Kidney Medullary Carcinoma 7 202858 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 8 202859 -NCIT:C163965 Metastatic Renal Pelvis Carcinoma 7 202860 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 8 202861 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 202862 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 202863 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 8 202864 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 202865 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 8 202866 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 202867 -NCIT:C172617 Advanced Kidney Carcinoma 7 202868 -NCIT:C153170 Advanced Renal Cell Carcinoma 8 202869 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 202870 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 202871 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 202872 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 202873 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 202874 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 8 202875 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 202876 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 8 202877 -NCIT:C172618 Locally Advanced Kidney Carcinoma 7 202878 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 8 202879 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 202880 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 202881 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 202882 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 202883 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 202884 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 202885 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 8 202886 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 202887 -NCIT:C27818 Metastatic Ureter Carcinoma 6 202888 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 7 202889 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 8 202890 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 8 202891 -NCIT:C27819 Metastatic Urethral Carcinoma 6 202892 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 7 202893 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 202894 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 202895 -NCIT:C8946 Metastatic Prostate Carcinoma 6 202896 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 7 202897 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 8 202898 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 8 202899 -NCIT:C161609 Double-Negative Prostate Carcinoma 8 202900 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 8 202901 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 8 202902 -NCIT:C132881 Prostate Carcinoma Metastatic in the Soft Tissue 7 202903 -NCIT:C148536 Castration-Naive Prostate Carcinoma 7 202904 -NCIT:C153336 Castration-Sensitive Prostate Carcinoma 7 202905 -NCIT:C156284 Advanced Prostate Carcinoma 7 202906 -NCIT:C156286 Advanced Prostate Adenocarcinoma 8 202907 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 202908 -NCIT:C156285 Locally Advanced Prostate Carcinoma 7 202909 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 8 202910 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 202911 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 8 202912 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 202913 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 202914 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 7 202915 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 202916 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 202917 -NCIT:C161584 Prostate Carcinoma Metastatic in the Pelvic Cavity 7 202918 -NCIT:C161587 Prostate Carcinoma Metastatic in the Lymph Nodes 7 202919 -NCIT:C171265 Oligometastatic Prostate Carcinoma 7 202920 -NCIT:C36307 Prostate Carcinoma Metastatic in the Lung 7 202921 -NCIT:C36308 Prostate Carcinoma Metastatic in the Bone 7 202922 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 7 202923 -NCIT:C156286 Advanced Prostate Adenocarcinoma 8 202924 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 202925 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 8 202926 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 202927 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 8 202928 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 202929 -NCIT:C162254 Metastatic Malignant Female Reproductive System Neoplasm 5 202930 -NCIT:C153387 Metastatic Cervical Carcinoma 6 202931 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 7 202932 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 202933 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 8 202934 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 7 202935 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 8 202936 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 202937 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 202938 -NCIT:C153390 Metastatic Cervical Adenosquamous Carcinoma 7 202939 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 8 202940 -NCIT:C156294 Advanced Cervical Carcinoma 7 202941 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 202942 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 202943 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 8 202944 -NCIT:C156295 Locally Advanced Cervical Carcinoma 7 202945 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 8 202946 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 202947 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 8 202948 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 202949 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 8 202950 -NCIT:C156063 Metastatic Fallopian Tube Carcinoma 6 202951 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 7 202952 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 8 202953 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 7 202954 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 7 202955 -NCIT:C156064 Metastatic Ovarian Carcinoma 6 202956 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 7 202957 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 202958 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 202959 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 202960 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 8 202961 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 202962 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 202963 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 8 202964 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 202965 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 202966 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 202967 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 202968 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 202969 -NCIT:C165458 Advanced Ovarian Carcinoma 7 202970 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 202971 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 202972 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 202973 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 202974 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 202975 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 8 202976 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 8 202977 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 7 202978 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 202979 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 202980 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 202981 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 8 202982 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 7 202983 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 202984 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 7 202985 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 202986 -NCIT:C172234 Metastatic Ovarian Undifferentiated Carcinoma 7 202987 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 7 202988 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 8 202989 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 8 202990 -NCIT:C180333 Metastatic Microsatellite Stable Ovarian Carcinoma 7 202991 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 8 202992 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 7 202993 -NCIT:C27391 Metastatic Ovarian Small Cell Carcinoma, Hypercalcemic Type 7 202994 -NCIT:C156065 Metastatic Vaginal Carcinoma 6 202995 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 7 202996 -NCIT:C170788 Advanced Vaginal Carcinoma 7 202997 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 202998 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 8 202999 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 203000 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 203001 -NCIT:C181028 Metastatic Vaginal Adenosquamous Carcinoma 7 203002 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 8 203003 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 7 203004 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 203005 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 203006 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 7 203007 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 203008 -NCIT:C156066 Metastatic Vulvar Carcinoma 6 203009 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 7 203010 -NCIT:C170786 Advanced Vulvar Carcinoma 7 203011 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 7 203012 -NCIT:C156068 Metastatic Endometrial Carcinoma 6 203013 -NCIT:C159676 Advanced Endometrial Carcinoma 7 203014 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 8 203015 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 203016 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 203017 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 8 203018 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 7 203019 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 8 203020 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 203021 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 8 203022 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 7 203023 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 7 203024 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 8 203025 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 7 203026 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 8 203027 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 203028 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 8 203029 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 203030 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 203031 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 8 203032 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 203033 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 203034 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 8 203035 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 203036 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 8 203037 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 8 203038 -NCIT:C167260 Advanced Malignant Female Reproductive System Neoplasm 6 203039 -NCIT:C156294 Advanced Cervical Carcinoma 7 203040 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 203041 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 203042 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 8 203043 -NCIT:C165458 Advanced Ovarian Carcinoma 7 203044 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 203045 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 203046 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 203047 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 203048 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 203049 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 8 203050 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 8 203051 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 7 203052 -NCIT:C170786 Advanced Vulvar Carcinoma 7 203053 -NCIT:C170788 Advanced Vaginal Carcinoma 7 203054 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 203055 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 8 203056 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 203057 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 203058 -NCIT:C170930 Advanced Malignant Mixed Mesodermal (Mullerian) Tumor 7 203059 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 8 203060 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 8 203061 -NCIT:C172450 Advanced Uterine Corpus Cancer 7 203062 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 8 203063 -NCIT:C159676 Advanced Endometrial Carcinoma 8 203064 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 203065 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 203066 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 203067 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 203068 -NCIT:C170460 Locally Advanced Malignant Female Reproductive System Neoplasm 6 203069 -NCIT:C156295 Locally Advanced Cervical Carcinoma 7 203070 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 8 203071 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 203072 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 8 203073 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 203074 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 8 203075 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 7 203076 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 203077 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 203078 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 203079 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 8 203080 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 7 203081 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 8 203082 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 7 203083 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 8 203084 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 203085 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 8 203086 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 7 203087 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 7 203088 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 7 203089 -NCIT:C185381 Metastatic Mesonephric Adenocarcinoma 6 203090 -NCIT:C190009 Metastatic Uterine Corpus Sarcoma 6 203091 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 7 203092 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 203093 -NCIT:C176859 Advanced Malignant Genitourinary System Neoplasm 5 203094 -NCIT:C164143 Advanced Genitourinary System Carcinoma 6 203095 -NCIT:C148493 Advanced Urothelial Carcinoma 7 203096 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 203097 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 203098 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 203099 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 203100 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 203101 -NCIT:C156284 Advanced Prostate Carcinoma 7 203102 -NCIT:C156286 Advanced Prostate Adenocarcinoma 8 203103 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 203104 -NCIT:C156294 Advanced Cervical Carcinoma 7 203105 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 203106 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 203107 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 8 203108 -NCIT:C159676 Advanced Endometrial Carcinoma 7 203109 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 8 203110 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 203111 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 203112 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 8 203113 -NCIT:C165458 Advanced Ovarian Carcinoma 7 203114 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 203115 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 203116 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 203117 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 203118 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 203119 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 8 203120 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 8 203121 -NCIT:C167338 Advanced Bladder Carcinoma 7 203122 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 203123 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 7 203124 -NCIT:C170786 Advanced Vulvar Carcinoma 7 203125 -NCIT:C170788 Advanced Vaginal Carcinoma 7 203126 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 203127 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 8 203128 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 203129 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 203130 -NCIT:C170790 Advanced Penile Carcinoma 7 203131 -NCIT:C172617 Advanced Kidney Carcinoma 7 203132 -NCIT:C153170 Advanced Renal Cell Carcinoma 8 203133 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 203134 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 203135 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 203136 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 203137 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 203138 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 8 203139 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 203140 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 8 203141 -NCIT:C167260 Advanced Malignant Female Reproductive System Neoplasm 6 203142 -NCIT:C156294 Advanced Cervical Carcinoma 7 203143 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 203144 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 203145 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 8 203146 -NCIT:C165458 Advanced Ovarian Carcinoma 7 203147 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 203148 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 203149 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 203150 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 203151 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 203152 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 8 203153 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 8 203154 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 7 203155 -NCIT:C170786 Advanced Vulvar Carcinoma 7 203156 -NCIT:C170788 Advanced Vaginal Carcinoma 7 203157 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 203158 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 8 203159 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 203160 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 203161 -NCIT:C170930 Advanced Malignant Mixed Mesodermal (Mullerian) Tumor 7 203162 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 8 203163 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 8 203164 -NCIT:C172450 Advanced Uterine Corpus Cancer 7 203165 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 8 203166 -NCIT:C159676 Advanced Endometrial Carcinoma 8 203167 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 203168 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 203169 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 203170 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 203171 -NCIT:C187316 Advanced Malignant Testicular Germ Cell Tumor 6 203172 -NCIT:C164141 Genitourinary System Carcinoma 4 203173 -NCIT:C146893 Metastatic Genitourinary System Carcinoma 5 203174 -NCIT:C126109 Metastatic Urothelial Carcinoma 6 203175 -NCIT:C148493 Advanced Urothelial Carcinoma 7 203176 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 203177 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 203178 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 203179 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 203180 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 203181 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 7 203182 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 203183 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 203184 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 7 203185 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 203186 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 203187 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 203188 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 203189 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 203190 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 203191 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 203192 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 203193 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 203194 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 8 203195 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 7 203196 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 203197 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 203198 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 203199 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 203200 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 203201 -NCIT:C191692 Metastatic Clear Cell (Glycogen-Rich) Urothelial Carcinoma 7 203202 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 203203 -NCIT:C191693 Metastatic Giant Cell Urothelial Carcinoma 7 203204 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 203205 -NCIT:C191694 Metastatic Lipid-Rich Urothelial Carcinoma 7 203206 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 203207 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 7 203208 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 203209 -NCIT:C191696 Metastatic Nested Urothelial Carcinoma 7 203210 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 203211 -NCIT:C191697 Metastatic Plasmacytoid Urothelial Carcinoma 7 203212 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 203213 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 7 203214 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 203215 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 7 203216 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 8 203217 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 203218 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 203219 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 8 203220 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 203221 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 203222 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 203223 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 203224 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 203225 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 203226 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 203227 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 203228 -NCIT:C153387 Metastatic Cervical Carcinoma 6 203229 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 7 203230 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 203231 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 8 203232 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 7 203233 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 8 203234 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 203235 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 203236 -NCIT:C153390 Metastatic Cervical Adenosquamous Carcinoma 7 203237 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 8 203238 -NCIT:C156294 Advanced Cervical Carcinoma 7 203239 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 203240 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 203241 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 8 203242 -NCIT:C156295 Locally Advanced Cervical Carcinoma 7 203243 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 8 203244 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 203245 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 8 203246 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 203247 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 8 203248 -NCIT:C156062 Metastatic Bladder Carcinoma 6 203249 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 7 203250 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 203251 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 203252 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 203253 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 203254 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 203255 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 203256 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 203257 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 203258 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 203259 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 8 203260 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 7 203261 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 7 203262 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 7 203263 -NCIT:C167071 Locally Advanced Bladder Carcinoma 7 203264 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 203265 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 8 203266 -NCIT:C167338 Advanced Bladder Carcinoma 7 203267 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 203268 -NCIT:C190772 Metastatic Non-Muscle Invasive Bladder Carcinoma 7 203269 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 8 203270 -NCIT:C156063 Metastatic Fallopian Tube Carcinoma 6 203271 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 7 203272 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 8 203273 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 7 203274 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 7 203275 -NCIT:C156064 Metastatic Ovarian Carcinoma 6 203276 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 7 203277 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 203278 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 203279 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 203280 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 8 203281 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 203282 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 203283 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 8 203284 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 203285 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 203286 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 203287 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 203288 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 203289 -NCIT:C165458 Advanced Ovarian Carcinoma 7 203290 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 203291 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 203292 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 203293 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 203294 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 203295 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 8 203296 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 8 203297 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 7 203298 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 203299 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 203300 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 203301 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 8 203302 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 7 203303 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 203304 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 7 203305 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 203306 -NCIT:C172234 Metastatic Ovarian Undifferentiated Carcinoma 7 203307 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 7 203308 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 8 203309 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 8 203310 -NCIT:C180333 Metastatic Microsatellite Stable Ovarian Carcinoma 7 203311 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 8 203312 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 7 203313 -NCIT:C27391 Metastatic Ovarian Small Cell Carcinoma, Hypercalcemic Type 7 203314 -NCIT:C156065 Metastatic Vaginal Carcinoma 6 203315 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 7 203316 -NCIT:C170788 Advanced Vaginal Carcinoma 7 203317 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 203318 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 8 203319 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 203320 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 203321 -NCIT:C181028 Metastatic Vaginal Adenosquamous Carcinoma 7 203322 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 8 203323 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 7 203324 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 203325 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 203326 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 7 203327 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 203328 -NCIT:C156066 Metastatic Vulvar Carcinoma 6 203329 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 7 203330 -NCIT:C170786 Advanced Vulvar Carcinoma 7 203331 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 7 203332 -NCIT:C156068 Metastatic Endometrial Carcinoma 6 203333 -NCIT:C159676 Advanced Endometrial Carcinoma 7 203334 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 8 203335 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 203336 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 203337 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 8 203338 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 7 203339 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 8 203340 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 203341 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 8 203342 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 7 203343 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 7 203344 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 8 203345 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 7 203346 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 8 203347 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 203348 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 8 203349 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 203350 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 203351 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 8 203352 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 203353 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 203354 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 8 203355 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 203356 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 8 203357 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 8 203358 -NCIT:C164143 Advanced Genitourinary System Carcinoma 6 203359 -NCIT:C148493 Advanced Urothelial Carcinoma 7 203360 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 203361 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 203362 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 203363 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 203364 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 203365 -NCIT:C156284 Advanced Prostate Carcinoma 7 203366 -NCIT:C156286 Advanced Prostate Adenocarcinoma 8 203367 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 203368 -NCIT:C156294 Advanced Cervical Carcinoma 7 203369 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 203370 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 203371 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 8 203372 -NCIT:C159676 Advanced Endometrial Carcinoma 7 203373 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 8 203374 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 203375 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 203376 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 8 203377 -NCIT:C165458 Advanced Ovarian Carcinoma 7 203378 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 203379 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 203380 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 203381 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 203382 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 203383 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 8 203384 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 8 203385 -NCIT:C167338 Advanced Bladder Carcinoma 7 203386 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 203387 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 7 203388 -NCIT:C170786 Advanced Vulvar Carcinoma 7 203389 -NCIT:C170788 Advanced Vaginal Carcinoma 7 203390 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 203391 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 8 203392 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 203393 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 203394 -NCIT:C170790 Advanced Penile Carcinoma 7 203395 -NCIT:C172617 Advanced Kidney Carcinoma 7 203396 -NCIT:C153170 Advanced Renal Cell Carcinoma 8 203397 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 203398 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 203399 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 203400 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 203401 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 203402 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 8 203403 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 203404 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 8 203405 -NCIT:C167069 Locally Advanced Genitourinary System Carcinoma 6 203406 -NCIT:C156285 Locally Advanced Prostate Carcinoma 7 203407 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 8 203408 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 203409 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 8 203410 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 203411 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 203412 -NCIT:C156295 Locally Advanced Cervical Carcinoma 7 203413 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 8 203414 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 203415 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 8 203416 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 203417 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 8 203418 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 7 203419 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 203420 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 203421 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 203422 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 203423 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 203424 -NCIT:C167071 Locally Advanced Bladder Carcinoma 7 203425 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 203426 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 8 203427 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 7 203428 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 203429 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 203430 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 203431 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 8 203432 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 7 203433 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 8 203434 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 7 203435 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 8 203436 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 203437 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 8 203438 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 7 203439 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 7 203440 -NCIT:C170789 Locally Advanced Penile Carcinoma 7 203441 -NCIT:C172618 Locally Advanced Kidney Carcinoma 7 203442 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 8 203443 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 203444 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 203445 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 203446 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 203447 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 203448 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 203449 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 8 203450 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 203451 -NCIT:C185381 Metastatic Mesonephric Adenocarcinoma 6 203452 -NCIT:C27784 Metastatic Penile Carcinoma 6 203453 -NCIT:C170789 Locally Advanced Penile Carcinoma 7 203454 -NCIT:C170790 Advanced Penile Carcinoma 7 203455 -NCIT:C182111 Metastatic Squamous Cell Carcinoma of the Penis 7 203456 -NCIT:C27806 Metastatic Kidney Carcinoma 6 203457 -NCIT:C150595 Metastatic Renal Cell Carcinoma 7 203458 -NCIT:C153170 Advanced Renal Cell Carcinoma 8 203459 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 203460 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 203461 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 203462 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 203463 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 203464 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 8 203465 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 203466 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 203467 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 8 203468 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 203469 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 203470 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 8 203471 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 203472 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 203473 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 8 203474 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 203475 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 203476 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 203477 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 203478 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 203479 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 203480 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 8 203481 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 203482 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 203483 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 8 203484 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 203485 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 203486 -NCIT:C157755 Metastatic Kidney Medullary Carcinoma 7 203487 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 8 203488 -NCIT:C163965 Metastatic Renal Pelvis Carcinoma 7 203489 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 8 203490 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 203491 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 203492 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 8 203493 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 203494 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 8 203495 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 203496 -NCIT:C172617 Advanced Kidney Carcinoma 7 203497 -NCIT:C153170 Advanced Renal Cell Carcinoma 8 203498 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 203499 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 203500 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 203501 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 203502 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 203503 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 8 203504 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 203505 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 8 203506 -NCIT:C172618 Locally Advanced Kidney Carcinoma 7 203507 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 8 203508 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 203509 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 203510 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 203511 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 203512 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 203513 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 203514 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 8 203515 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 203516 -NCIT:C27818 Metastatic Ureter Carcinoma 6 203517 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 7 203518 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 8 203519 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 8 203520 -NCIT:C27819 Metastatic Urethral Carcinoma 6 203521 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 7 203522 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 203523 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 203524 -NCIT:C8946 Metastatic Prostate Carcinoma 6 203525 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 7 203526 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 8 203527 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 8 203528 -NCIT:C161609 Double-Negative Prostate Carcinoma 8 203529 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 8 203530 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 8 203531 -NCIT:C132881 Prostate Carcinoma Metastatic in the Soft Tissue 7 203532 -NCIT:C148536 Castration-Naive Prostate Carcinoma 7 203533 -NCIT:C153336 Castration-Sensitive Prostate Carcinoma 7 203534 -NCIT:C156284 Advanced Prostate Carcinoma 7 203535 -NCIT:C156286 Advanced Prostate Adenocarcinoma 8 203536 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 203537 -NCIT:C156285 Locally Advanced Prostate Carcinoma 7 203538 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 8 203539 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 203540 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 8 203541 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 203542 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 203543 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 7 203544 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 203545 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 203546 -NCIT:C161584 Prostate Carcinoma Metastatic in the Pelvic Cavity 7 203547 -NCIT:C161587 Prostate Carcinoma Metastatic in the Lymph Nodes 7 203548 -NCIT:C171265 Oligometastatic Prostate Carcinoma 7 203549 -NCIT:C36307 Prostate Carcinoma Metastatic in the Lung 7 203550 -NCIT:C36308 Prostate Carcinoma Metastatic in the Bone 7 203551 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 7 203552 -NCIT:C156286 Advanced Prostate Adenocarcinoma 8 203553 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 203554 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 8 203555 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 203556 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 8 203557 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 203558 -NCIT:C181162 Female Reproductive System Carcinoma 5 203559 -NCIT:C3867 Fallopian Tube Carcinoma 6 203560 -NCIT:C115429 Recurrent Fallopian Tube Carcinoma 7 203561 -NCIT:C170750 Recurrent Platinum-Resistant Fallopian Tube Carcinoma 8 203562 -NCIT:C170755 Recurrent Fallopian Tube Undifferentiated Carcinoma 8 203563 -NCIT:C170757 Recurrent Fallopian Tube Transitional Cell Carcinoma 8 203564 -NCIT:C170766 Recurrent Fallopian Tube Adenocarcinoma 8 203565 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 9 203566 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 9 203567 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 9 203568 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 9 203569 -NCIT:C191395 Recurrent Platinum-Sensitive Fallopian Tube Carcinoma 8 203570 -NCIT:C139983 Fallopian Tube Cancer by AJCC v8 Stage 7 203571 -NCIT:C139984 Stage I Fallopian Tube Cancer AJCC v8 8 203572 -NCIT:C139985 Stage IA Fallopian Tube Cancer AJCC v8 9 203573 -NCIT:C139986 Stage IB Fallopian Tube Cancer AJCC v8 9 203574 -NCIT:C139987 Stage IC Fallopian Tube Cancer AJCC v8 9 203575 -NCIT:C139988 Stage II Fallopian Tube Cancer AJCC v8 8 203576 -NCIT:C139989 Stage IIA Fallopian Tube Cancer AJCC v8 9 203577 -NCIT:C139990 Stage IIB Fallopian Tube Cancer AJCC v8 9 203578 -NCIT:C139991 Stage III Fallopian Tube Cancer AJCC v8 8 203579 -NCIT:C139992 Stage IIIA Fallopian Tube Cancer AJCC v8 9 203580 -NCIT:C139993 Stage IIIA1 Fallopian Tube Cancer AJCC v8 10 203581 -NCIT:C139994 Stage IIIA2 Fallopian Tube Cancer AJCC v8 10 203582 -NCIT:C139995 Stage IIIB Fallopian Tube Cancer AJCC v8 9 203583 -NCIT:C139996 Stage IIIC Fallopian Tube Cancer AJCC v8 9 203584 -NCIT:C139997 Stage IV Fallopian Tube Cancer AJCC v8 8 203585 -NCIT:C139998 Stage IVA Fallopian Tube Cancer AJCC v8 9 203586 -NCIT:C139999 Stage IVB Fallopian Tube Cancer AJCC v8 9 203587 -NCIT:C152047 Refractory Fallopian Tube Carcinoma 7 203588 -NCIT:C157621 Platinum-Resistant Fallopian Tube Carcinoma 8 203589 -NCIT:C170750 Recurrent Platinum-Resistant Fallopian Tube Carcinoma 9 203590 -NCIT:C170971 Refractory Fallopian Tube Adenocarcinoma 8 203591 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 9 203592 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 9 203593 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 9 203594 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 9 203595 -NCIT:C178674 Refractory Fallopian Tube Transitional Cell Carcinoma 8 203596 -NCIT:C178675 Refractory Fallopian Tube Undifferentiated Carcinoma 8 203597 -NCIT:C178698 Platinum-Refractory Fallopian Tube Carcinoma 8 203598 -NCIT:C156063 Metastatic Fallopian Tube Carcinoma 7 203599 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 8 203600 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 9 203601 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 8 203602 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 8 203603 -NCIT:C160873 Platinum-Sensitive Fallopian Tube Carcinoma 7 203604 -NCIT:C191395 Recurrent Platinum-Sensitive Fallopian Tube Carcinoma 8 203605 -NCIT:C170969 Unresectable Fallopian Tube Carcinoma 7 203606 -NCIT:C170970 Unresectable Fallopian Tube Adenocarcinoma 8 203607 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 9 203608 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 9 203609 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 8 203610 -NCIT:C40104 Fallopian Tube Transitional Cell Carcinoma 7 203611 -NCIT:C170757 Recurrent Fallopian Tube Transitional Cell Carcinoma 8 203612 -NCIT:C178674 Refractory Fallopian Tube Transitional Cell Carcinoma 8 203613 -NCIT:C40455 Hereditary Fallopian Tube Carcinoma 7 203614 -NCIT:C6265 Fallopian Tube Adenocarcinoma 7 203615 -NCIT:C170766 Recurrent Fallopian Tube Adenocarcinoma 8 203616 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 9 203617 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 9 203618 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 9 203619 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 9 203620 -NCIT:C170970 Unresectable Fallopian Tube Adenocarcinoma 8 203621 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 9 203622 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 9 203623 -NCIT:C170971 Refractory Fallopian Tube Adenocarcinoma 8 203624 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 9 203625 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 9 203626 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 9 203627 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 9 203628 -NCIT:C40099 Fallopian Tube Serous Adenocarcinoma 8 203629 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 9 203630 -NCIT:C126456 Fallopian Tube High Grade Serous Adenocarcinoma 9 203631 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 10 203632 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 10 203633 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 10 203634 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 10 203635 -NCIT:C40103 Fallopian Tube Mucinous Adenocarcinoma 8 203636 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 9 203637 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 9 203638 -NCIT:C40105 Stage 0 Fallopian Tube Cancer AJCC v7 8 203639 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 9 203640 -NCIT:C6279 Fallopian Tube Endometrioid Adenocarcinoma 8 203641 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 9 203642 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 9 203643 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 9 203644 -NCIT:C6280 Fallopian Tube Clear Cell Adenocarcinoma 8 203645 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 9 203646 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 9 203647 -NCIT:C6278 Fallopian Tube Gestational Choriocarcinoma 7 203648 -NCIT:C6281 Fallopian Tube Undifferentiated Carcinoma 7 203649 -NCIT:C170755 Recurrent Fallopian Tube Undifferentiated Carcinoma 8 203650 -NCIT:C178675 Refractory Fallopian Tube Undifferentiated Carcinoma 8 203651 -NCIT:C6282 Fallopian Tube Squamous Cell Carcinoma 7 203652 -NCIT:C90499 Fallopian Tube Cancer by AJCC v6 Stage 7 203653 -NCIT:C8720 Stage I Fallopian Tube Cancer AJCC v6 and v7 8 203654 -NCIT:C6269 Stage IA Fallopian Tube Cancer AJCC v6 and v7 9 203655 -NCIT:C6270 Stage IB Fallopian Tube Cancer AJCC v6 and v7 9 203656 -NCIT:C6271 Stage IC Fallopian Tube Cancer AJCC v6 and v7 9 203657 -NCIT:C8721 Stage II Fallopian Tube Cancer AJCC v6 and v7 8 203658 -NCIT:C6272 Stage IIA Fallopian Tube Cancer AJCC v6 and v7 9 203659 -NCIT:C6276 Stage IIC Fallopian Tube Cancer AJCC v6 and v7 9 203660 -NCIT:C6277 Stage IIB Fallopian Tube Cancer AJCC v6 and v7 9 203661 -NCIT:C8722 Stage III Fallopian Tube Cancer AJCC v6 8 203662 -NCIT:C8963 Stage IV Fallopian Tube Cancer AJCC v6 and v7 8 203663 -NCIT:C91219 Fallopian Tube Cancer by AJCC v7 Stage 7 203664 -NCIT:C40105 Stage 0 Fallopian Tube Cancer AJCC v7 8 203665 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 9 203666 -NCIT:C8720 Stage I Fallopian Tube Cancer AJCC v6 and v7 8 203667 -NCIT:C6269 Stage IA Fallopian Tube Cancer AJCC v6 and v7 9 203668 -NCIT:C6270 Stage IB Fallopian Tube Cancer AJCC v6 and v7 9 203669 -NCIT:C6271 Stage IC Fallopian Tube Cancer AJCC v6 and v7 9 203670 -NCIT:C8721 Stage II Fallopian Tube Cancer AJCC v6 and v7 8 203671 -NCIT:C6272 Stage IIA Fallopian Tube Cancer AJCC v6 and v7 9 203672 -NCIT:C6276 Stage IIC Fallopian Tube Cancer AJCC v6 and v7 9 203673 -NCIT:C6277 Stage IIB Fallopian Tube Cancer AJCC v6 and v7 9 203674 -NCIT:C8963 Stage IV Fallopian Tube Cancer AJCC v6 and v7 8 203675 -NCIT:C89692 Stage III Fallopian Tube Cancer AJCC v7 8 203676 -NCIT:C6273 Stage IIIA Fallopian Tube Cancer AJCC v7 9 203677 -NCIT:C6274 Stage IIIB Fallopian Tube Cancer AJCC v7 9 203678 -NCIT:C6275 Stage IIIC Fallopian Tube Cancer AJCC v7 9 203679 -NCIT:C3917 Vaginal Carcinoma 6 203680 -NCIT:C128073 Vaginal Neuroendocrine Carcinoma 7 203681 -NCIT:C128075 Vaginal Large Cell Neuroendocrine Carcinoma 8 203682 -NCIT:C40263 Vaginal Small Cell Neuroendocrine Carcinoma 8 203683 -NCIT:C139657 Vaginal Cancer by AJCC v8 Stage 7 203684 -NCIT:C139658 Stage I Vaginal Cancer AJCC v8 8 203685 -NCIT:C139659 Stage IA Vaginal Cancer AJCC v8 9 203686 -NCIT:C139660 Stage IB Vaginal Cancer AJCC v8 9 203687 -NCIT:C139661 Stage II Vaginal Cancer AJCC v8 8 203688 -NCIT:C139662 Stage IIA Vaginal Cancer AJCC v8 9 203689 -NCIT:C139664 Stage IIB Vaginal Cancer AJCC v8 9 203690 -NCIT:C139665 Stage III Vaginal Cancer AJCC v8 8 203691 -NCIT:C139667 Stage IV Vaginal Cancer AJCC v8 8 203692 -NCIT:C139669 Stage IVA Vaginal Cancer AJCC v8 9 203693 -NCIT:C139670 Stage IVB Vaginal Cancer AJCC v8 9 203694 -NCIT:C156065 Metastatic Vaginal Carcinoma 7 203695 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 8 203696 -NCIT:C170788 Advanced Vaginal Carcinoma 8 203697 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 203698 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 203699 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 203700 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 203701 -NCIT:C181028 Metastatic Vaginal Adenosquamous Carcinoma 8 203702 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 203703 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 8 203704 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 203705 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 203706 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 8 203707 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 203708 -NCIT:C174509 Refractory Vaginal Carcinoma 7 203709 -NCIT:C185303 Refractory Vaginal Squamous Cell Carcinoma 8 203710 -NCIT:C175434 Unresectable Vaginal Carcinoma 7 203711 -NCIT:C180915 Vaginal Squamous Cell Carcinoma 7 203712 -NCIT:C128060 Vaginal Papillary Carcinoma 8 203713 -NCIT:C180917 Human Papillomavirus-Related Vaginal Squamous Cell Carcinoma 8 203714 -NCIT:C40248 Vaginal Warty Carcinoma 9 203715 -NCIT:C180919 Human Papillomavirus-Independent Vaginal Squamous Cell Carcinoma 8 203716 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 8 203717 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 203718 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 203719 -NCIT:C185302 Recurrent Vaginal Squamous Cell Carcinoma 8 203720 -NCIT:C185303 Refractory Vaginal Squamous Cell Carcinoma 8 203721 -NCIT:C40243 Vaginal Keratinizing Squamous Cell Carcinoma 8 203722 -NCIT:C40244 Vaginal Non-Keratinizing Squamous Cell Carcinoma 8 203723 -NCIT:C40245 Vaginal Basaloid Carcinoma 8 203724 -NCIT:C6325 Vaginal Verrucous Carcinoma 8 203725 -NCIT:C7736 Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 8 203726 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 203727 -NCIT:C40260 Vaginal Adenosquamous Carcinoma 7 203728 -NCIT:C181028 Metastatic Vaginal Adenosquamous Carcinoma 8 203729 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 203730 -NCIT:C40261 Vaginal Adenoid Cystic Carcinoma 7 203731 -NCIT:C40262 Vaginal Adenoid Basal Carcinoma 7 203732 -NCIT:C40264 Vaginal Undifferentiated Carcinoma 7 203733 -NCIT:C7860 Recurrent Vaginal Carcinoma 7 203734 -NCIT:C185302 Recurrent Vaginal Squamous Cell Carcinoma 8 203735 -NCIT:C7981 Vaginal Adenocarcinoma 7 203736 -NCIT:C180943 Human Papillomavirus-Related Vaginal Adenocarcinoma 8 203737 -NCIT:C180947 Vaginal Adenocarcinoma of Skene Gland Origin 8 203738 -NCIT:C40251 Vaginal Endometrioid Adenocarcinoma 8 203739 -NCIT:C40252 Vaginal Mucinous Adenocarcinoma 8 203740 -NCIT:C180945 Vaginal Mucinous Adenocarcinoma, Gastric-Type 9 203741 -NCIT:C180946 Vaginal Mucinous Adenocarcinoma, Intestinal-Type 9 203742 -NCIT:C40253 Vaginal Mesonephric Adenocarcinoma 8 203743 -NCIT:C7735 Vaginal Clear Cell Adenocarcinoma 8 203744 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 8 203745 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 203746 -NCIT:C90347 Vaginal Cancer by AJCC v6 Stage 7 203747 -NCIT:C7597 Stage IV Vaginal Cancer AJCC v6 and v7 8 203748 -NCIT:C7859 Stage IVA Vaginal Cancer AJCC v6 and v7 9 203749 -NCIT:C9355 Stage IVB Vaginal Cancer AJCC v6 and v7 9 203750 -NCIT:C7855 Stage 0 Vaginal Cancer AJCC v6 8 203751 -NCIT:C7856 Stage I Vaginal Cancer AJCC v6 and v7 8 203752 -NCIT:C7857 Stage II Vaginal Cancer AJCC v6 and v7 8 203753 -NCIT:C7858 Stage III Vaginal Cancer AJCC v6 and v7 8 203754 -NCIT:C91204 Vaginal Cancer by AJCC v7 Stage 7 203755 -NCIT:C7597 Stage IV Vaginal Cancer AJCC v6 and v7 8 203756 -NCIT:C7859 Stage IVA Vaginal Cancer AJCC v6 and v7 9 203757 -NCIT:C9355 Stage IVB Vaginal Cancer AJCC v6 and v7 9 203758 -NCIT:C7856 Stage I Vaginal Cancer AJCC v6 and v7 8 203759 -NCIT:C7857 Stage II Vaginal Cancer AJCC v6 and v7 8 203760 -NCIT:C7858 Stage III Vaginal Cancer AJCC v6 and v7 8 203761 -NCIT:C89476 Stage 0 Vaginal Cancer AJCC v7 8 203762 -NCIT:C4072 Mesonephric Adenocarcinoma 6 203763 -NCIT:C185381 Metastatic Mesonephric Adenocarcinoma 7 203764 -NCIT:C40253 Vaginal Mesonephric Adenocarcinoma 7 203765 -NCIT:C40254 Cervical Mesonephric Adenocarcinoma 7 203766 -NCIT:C4866 Vulvar Carcinoma 6 203767 -NCIT:C128243 Vulvar Neuroendocrine Carcinoma 7 203768 -NCIT:C128244 Vulvar Small Cell Neuroendocrine Carcinoma 8 203769 -NCIT:C40298 Bartholin Gland Small Cell Neuroendocrine Carcinoma 9 203770 -NCIT:C128245 Vulvar Large Cell Neuroendocrine Carcinoma 8 203771 -NCIT:C128247 Vulvar Merkel Cell Carcinoma 8 203772 -NCIT:C139618 Vulvar Cancer by AJCC v8 Stage 7 203773 -NCIT:C139619 Stage I Vulvar Cancer AJCC v8 8 203774 -NCIT:C139620 Stage IA Vulvar Cancer AJCC v8 9 203775 -NCIT:C139621 Stage IB Vulvar Cancer AJCC v8 9 203776 -NCIT:C139622 Stage II Vulvar Cancer AJCC v8 8 203777 -NCIT:C139623 Stage III Vulvar Cancer AJCC v8 8 203778 -NCIT:C139624 Stage IIIA Vulvar Cancer AJCC v8 9 203779 -NCIT:C139625 Stage IIIB Vulvar Cancer AJCC v8 9 203780 -NCIT:C139626 Stage IIIC Vulvar Cancer AJCC v8 9 203781 -NCIT:C139627 Stage IV Vulvar Cancer AJCC v8 8 203782 -NCIT:C139628 Stage IVA Vulvar Cancer AJCC v8 9 203783 -NCIT:C139630 Stage IVB Vulvar Cancer AJCC v8 9 203784 -NCIT:C156066 Metastatic Vulvar Carcinoma 7 203785 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 8 203786 -NCIT:C170786 Advanced Vulvar Carcinoma 8 203787 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 8 203788 -NCIT:C174198 Unresectable Vulvar Carcinoma 7 203789 -NCIT:C174199 Unresectable Vulvar Squamous Cell Carcinoma 8 203790 -NCIT:C174508 Refractory Vulvar Carcinoma 7 203791 -NCIT:C185304 Refractory Vulvar Squamous Cell Carcinoma 8 203792 -NCIT:C4052 Vulvar Squamous Cell Carcinoma 7 203793 -NCIT:C128167 Vulvar Keratoacanthoma 8 203794 -NCIT:C174199 Unresectable Vulvar Squamous Cell Carcinoma 8 203795 -NCIT:C174200 Recurrent Vulvar Squamous Cell Carcinoma 8 203796 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 8 203797 -NCIT:C181902 Vulvar Squamous Cell Carcinoma, Not Otherwise Specified 8 203798 -NCIT:C181903 Human Papillomavirus-Independent Vulvar Squamous Cell Carcinoma 8 203799 -NCIT:C185304 Refractory Vulvar Squamous Cell Carcinoma 8 203800 -NCIT:C27679 Human Papillomavirus-Related Vulvar Squamous Cell Carcinoma 8 203801 -NCIT:C40287 Vulvar Warty Carcinoma 9 203802 -NCIT:C40284 Vulvar Keratinizing Squamous Cell Carcinoma 8 203803 -NCIT:C40285 Vulvar Non-Keratinizing Squamous Cell Carcinoma 8 203804 -NCIT:C40286 Vulvar Basaloid Carcinoma 8 203805 -NCIT:C40289 Vulvar Squamous Cell Carcinoma with Tumor Giant Cells 8 203806 -NCIT:C40293 Bartholin Gland Squamous Cell Carcinoma 8 203807 -NCIT:C6383 Vulvar Verrucous Carcinoma 8 203808 -NCIT:C6380 Vulvar Adenocarcinoma 7 203809 -NCIT:C128162 Vulvar Adenocarcinoma of Mammary Gland Type 8 203810 -NCIT:C128164 Vulvar Adenocarcinoma of Sweat Gland Origin 8 203811 -NCIT:C4027 Vulvar Paget Disease 9 203812 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 9 203813 -NCIT:C40306 Vulvar Porocarcinoma 10 203814 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 9 203815 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 9 203816 -NCIT:C128166 Vulvar Adenocarcinoma, Intestinal-Type 8 203817 -NCIT:C40309 Vulvar Sebaceous Carcinoma 8 203818 -NCIT:C7719 Bartholin Gland Adenocarcinoma 8 203819 -NCIT:C6381 Vulvar Basal Cell Carcinoma 7 203820 -NCIT:C90345 Vulvar Cancer by AJCC v6 Stage 7 203821 -NCIT:C4522 Stage 0 Vulvar Cancer AJCC v6 8 203822 -NCIT:C7854 Stage I Vulvar Cancer AJCC v6 8 203823 -NCIT:C6328 Stage IA Vulvar Carcinoma AJCC v6 9 203824 -NCIT:C6329 Stage IB Vulvar Carcinoma AJCC v6 9 203825 -NCIT:C9051 Stage II Vulvar Cancer AJCC v6 8 203826 -NCIT:C9052 Stage III Vulvar Cancer AJCC v6 8 203827 -NCIT:C9053 Stage IV Vulvar Cancer AJCC v6 8 203828 -NCIT:C27247 Stage IVB Vulvar Cancer AJCC v6 and v7 9 203829 -NCIT:C6330 Stage IVA Vulvar Cancer AJCC v6 9 203830 -NCIT:C9054 Recurrent Vulvar Carcinoma 7 203831 -NCIT:C174200 Recurrent Vulvar Squamous Cell Carcinoma 8 203832 -NCIT:C9055 Bartholin Gland Carcinoma 7 203833 -NCIT:C40293 Bartholin Gland Squamous Cell Carcinoma 8 203834 -NCIT:C40295 Bartholin Gland Adenoid Cystic Carcinoma 8 203835 -NCIT:C40296 Bartholin Gland Adenosquamous Carcinoma 8 203836 -NCIT:C40297 Bartholin Gland Transitional Cell Carcinoma 8 203837 -NCIT:C40298 Bartholin Gland Small Cell Neuroendocrine Carcinoma 8 203838 -NCIT:C7719 Bartholin Gland Adenocarcinoma 8 203839 -NCIT:C91203 Vulvar Cancer by AJCC v7 Stage 7 203840 -NCIT:C89445 Stage 0 Vulvar Cancer AJCC v7 8 203841 -NCIT:C89447 Stage I Vulvar Cancer AJCC v7 8 203842 -NCIT:C89448 Stage IA Vulvar Cancer AJCC v7 9 203843 -NCIT:C89449 Stage IB Vulvar Cancer AJCC v7 9 203844 -NCIT:C89451 Stage II Vulvar Cancer AJCC v7 8 203845 -NCIT:C89452 Stage III Vulvar Cancer AJCC v7 8 203846 -NCIT:C87003 Stage IIIA Vulvar Cancer AJCC v7 9 203847 -NCIT:C87004 Stage IIIB Vulvar Cancer AJCC v7 9 203848 -NCIT:C87005 Stage IIIC Vulvar Cancer AJCC v7 9 203849 -NCIT:C89453 Stage IV Vulvar Cancer AJCC v7 8 203850 -NCIT:C27247 Stage IVB Vulvar Cancer AJCC v6 and v7 9 203851 -NCIT:C89454 Stage IVA Vulvar Cancer AJCC v7 9 203852 -NCIT:C9362 Clitoral Carcinoma 7 203853 -NCIT:C9363 Labia Majora Carcinoma 7 203854 -NCIT:C9364 Labia Minora Carcinoma 7 203855 -NCIT:C4908 Ovarian Carcinoma 6 203856 -NCIT:C128081 Ovarian Cancer by FIGO Stage 7 203857 -NCIT:C128082 FIGO Stage IC1 Ovarian Cancer 8 203858 -NCIT:C128083 FIGO Stage IC2 Ovarian Cancer 8 203859 -NCIT:C128084 FIGO Stage IC3 Ovarian Cancer 8 203860 -NCIT:C128085 FIGO Stage II Ovarian Cancer 8 203861 -NCIT:C5223 Stage IIA Ovarian Cancer AJCC V6 and v7 9 203862 -NCIT:C5224 Stage IIB Ovarian Cancer AJCC v6 and v7 9 203863 -NCIT:C128086 FIGO Stage III Ovarian Cancer 8 203864 -NCIT:C128087 FIGO Stage IIIA Ovarian Cancer 9 203865 -NCIT:C128088 FIGO Stage IIIA1 Ovarian Cancer 10 203866 -NCIT:C128089 FIGO Stage IIIA1(i) Ovarian Cancer 11 203867 -NCIT:C128090 FIGO Stage IIIA1(ii) Ovarian Cancer 11 203868 -NCIT:C128091 FIGO Stage IIIA2 Ovarian Cancer 10 203869 -NCIT:C128092 FIGO Stage IIIB Ovarian Cancer 9 203870 -NCIT:C128093 FIGO Stage IIIC Ovarian Cancer 9 203871 -NCIT:C128094 FIGO Stage IVA Ovarian Cancer 8 203872 -NCIT:C128095 FIGO Stage IVB Ovarian Cancer 8 203873 -NCIT:C7829 Stage I Ovarian Cancer AJCC v6 and v7 8 203874 -NCIT:C5220 Stage IA Ovarian Cancer AJCC v6 and v7 9 203875 -NCIT:C5221 Stage IB Ovarian Cancer AJCC v6 and v7 9 203876 -NCIT:C5222 Stage IC Ovarian Cancer AJCC v6 and v7 9 203877 -NCIT:C7832 Stage IV Ovarian Cancer AJCC v6 and v7 8 203878 -NCIT:C128106 Ovarian Cancer by AJCC v6 and v7 Stage 7 203879 -NCIT:C7829 Stage I Ovarian Cancer AJCC v6 and v7 8 203880 -NCIT:C5220 Stage IA Ovarian Cancer AJCC v6 and v7 9 203881 -NCIT:C5221 Stage IB Ovarian Cancer AJCC v6 and v7 9 203882 -NCIT:C5222 Stage IC Ovarian Cancer AJCC v6 and v7 9 203883 -NCIT:C7830 Stage II Ovarian Cancer AJCC v6 and v7 8 203884 -NCIT:C5223 Stage IIA Ovarian Cancer AJCC V6 and v7 9 203885 -NCIT:C5224 Stage IIB Ovarian Cancer AJCC v6 and v7 9 203886 -NCIT:C5225 Stage IIC Ovarian Cancer AJCC v6 and v7 9 203887 -NCIT:C7831 Stage III Ovarian Cancer AJCC v6 and v7 8 203888 -NCIT:C6258 Stage IIIA Ovarian Cancer AJCC v6 and v7 9 203889 -NCIT:C6259 Stage IIIB Ovarian Cancer AJCC v6 and v7 9 203890 -NCIT:C6260 Stage IIIC Ovarian Cancer AJCC v6 and v7 9 203891 -NCIT:C7832 Stage IV Ovarian Cancer AJCC v6 and v7 8 203892 -NCIT:C139963 Ovarian Cancer by AJCC v8 Stage 7 203893 -NCIT:C139964 Stage I Ovarian Cancer AJCC v8 8 203894 -NCIT:C139965 Stage IA Ovarian Cancer AJCC v8 9 203895 -NCIT:C139966 Stage IB Ovarian Cancer AJCC v8 9 203896 -NCIT:C139967 Stage IC Ovarian Cancer AJCC v8 9 203897 -NCIT:C139968 Stage II Ovarian Cancer AJCC v8 8 203898 -NCIT:C139969 Stage IIA Ovarian Cancer AJCC v8 9 203899 -NCIT:C139970 Stage IIB Ovarian Cancer AJCC v8 9 203900 -NCIT:C139971 Stage III Ovarian Cancer AJCC v8 8 203901 -NCIT:C139972 Stage IIIA Ovarian Cancer AJCC v8 9 203902 -NCIT:C139973 Stage IIIA1 Ovarian Cancer AJCC v8 10 203903 -NCIT:C139974 Stage IIIA2 Ovarian Cancer AJCC v8 10 203904 -NCIT:C139975 Stage IIIB Ovarian Cancer AJCC v8 9 203905 -NCIT:C139976 Stage IIIC Ovarian Cancer AJCC v8 9 203906 -NCIT:C139977 Stage IV Ovarian Cancer AJCC v8 8 203907 -NCIT:C139978 Stage IVA Ovarian Cancer AJCC v8 9 203908 -NCIT:C139979 Stage IVB Ovarian Cancer AJCC v8 9 203909 -NCIT:C150091 Refractory Ovarian Carcinoma 7 203910 -NCIT:C147561 Platinum-Resistant Ovarian Carcinoma 8 203911 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 9 203912 -NCIT:C179459 Unresectable Platinum-Resistant Ovarian Carcinoma 9 203913 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 9 203914 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 10 203915 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 10 203916 -NCIT:C170968 Refractory Ovarian Adenocarcinoma 8 203917 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 9 203918 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 9 203919 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 10 203920 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 10 203921 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 9 203922 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 9 203923 -NCIT:C178671 Refractory Ovarian Seromucinous Carcinoma 8 203924 -NCIT:C178682 Refractory Ovarian Transitional Cell Carcinoma 8 203925 -NCIT:C178683 Refractory Ovarian Undifferentiated Carcinoma 8 203926 -NCIT:C178700 Platinum-Refractory Ovarian Carcinoma 8 203927 -NCIT:C179207 Refractory Ovarian Squamous Cell Carcinoma 8 203928 -NCIT:C183126 Refractory Malignant Ovarian Brenner Tumor 8 203929 -NCIT:C156064 Metastatic Ovarian Carcinoma 7 203930 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 8 203931 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 203932 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 203933 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 203934 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 9 203935 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 203936 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 203937 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 9 203938 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 203939 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 203940 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 203941 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 203942 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 203943 -NCIT:C165458 Advanced Ovarian Carcinoma 8 203944 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 203945 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 203946 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 203947 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 203948 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 203949 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 203950 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 203951 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 8 203952 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 203953 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 203954 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 203955 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 203956 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 8 203957 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 203958 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 8 203959 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 203960 -NCIT:C172234 Metastatic Ovarian Undifferentiated Carcinoma 8 203961 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 8 203962 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 203963 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 203964 -NCIT:C180333 Metastatic Microsatellite Stable Ovarian Carcinoma 8 203965 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 203966 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 8 203967 -NCIT:C27391 Metastatic Ovarian Small Cell Carcinoma, Hypercalcemic Type 8 203968 -NCIT:C159902 Platinum-Sensitive Ovarian Carcinoma 7 203969 -NCIT:C188391 Recurrent Platinum-Sensitive Ovarian Carcinoma 8 203970 -NCIT:C167073 Unresectable Ovarian Carcinoma 7 203971 -NCIT:C160781 Unresectable Ovarian Serous Adenocarcinoma 8 203972 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 9 203973 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 203974 -NCIT:C172235 Unresectable Ovarian Undifferentiated Carcinoma 8 203975 -NCIT:C179459 Unresectable Platinum-Resistant Ovarian Carcinoma 8 203976 -NCIT:C183245 Unresectable Ovarian Mucinous Adenocarcinoma 8 203977 -NCIT:C186273 Unresectable Ovarian Endometrioid Adenocarcinoma 8 203978 -NCIT:C171032 Ovarian Neuroendocrine Carcinoma 7 203979 -NCIT:C40440 Ovarian Small Cell Carcinoma, Pulmonary-Type 8 203980 -NCIT:C5238 Ovarian Large Cell Neuroendocrine Carcinoma 8 203981 -NCIT:C179334 Ovarian Dedifferentiated Carcinoma 7 203982 -NCIT:C180332 Microsatellite Stable Ovarian Carcinoma 7 203983 -NCIT:C180333 Metastatic Microsatellite Stable Ovarian Carcinoma 8 203984 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 203985 -NCIT:C27390 Ovarian Small Cell Carcinoma 7 203986 -NCIT:C40439 Ovarian Small Cell Carcinoma, Hypercalcemic Type 8 203987 -NCIT:C189334 Childhood Ovarian Small Cell Carcinoma, Hypercalcemic Type 9 203988 -NCIT:C27391 Metastatic Ovarian Small Cell Carcinoma, Hypercalcemic Type 9 203989 -NCIT:C40440 Ovarian Small Cell Carcinoma, Pulmonary-Type 8 203990 -NCIT:C36102 Hereditary Ovarian Carcinoma 7 203991 -NCIT:C148024 BRCA-Associated Ovarian Carcinoma 8 203992 -NCIT:C148025 Recurrent BRCA- Associated Ovarian Carcinoma 9 203993 -NCIT:C40090 Ovarian Seromucinous Carcinoma 7 203994 -NCIT:C178669 Recurrent Ovarian Seromucinous Carcinoma 8 203995 -NCIT:C178671 Refractory Ovarian Seromucinous Carcinoma 8 203996 -NCIT:C40093 Ovarian Squamous Cell Carcinoma 7 203997 -NCIT:C179207 Refractory Ovarian Squamous Cell Carcinoma 8 203998 -NCIT:C4270 Malignant Ovarian Brenner Tumor 7 203999 -NCIT:C153818 Recurrent Malignant Ovarian Brenner Tumor 8 204000 -NCIT:C183126 Refractory Malignant Ovarian Brenner Tumor 8 204001 -NCIT:C4509 Ovarian Undifferentiated Carcinoma 7 204002 -NCIT:C170754 Recurrent Ovarian Undifferentiated Carcinoma 8 204003 -NCIT:C172234 Metastatic Ovarian Undifferentiated Carcinoma 8 204004 -NCIT:C172235 Unresectable Ovarian Undifferentiated Carcinoma 8 204005 -NCIT:C178683 Refractory Ovarian Undifferentiated Carcinoma 8 204006 -NCIT:C5240 Ovarian Transitional Cell Carcinoma 7 204007 -NCIT:C153819 Recurrent Ovarian Transitional Cell Carcinoma 8 204008 -NCIT:C178682 Refractory Ovarian Transitional Cell Carcinoma 8 204009 -NCIT:C7700 Ovarian Adenocarcinoma 7 204010 -NCIT:C153614 Recurrent Ovarian Adenocarcinoma 8 204011 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 9 204012 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 9 204013 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 10 204014 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 10 204015 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 10 204016 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 9 204017 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 9 204018 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 10 204019 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 9 204020 -NCIT:C170968 Refractory Ovarian Adenocarcinoma 8 204021 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 9 204022 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 9 204023 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 10 204024 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 10 204025 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 9 204026 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 9 204027 -NCIT:C179208 Ovarian Signet Ring Cell Carcinoma 8 204028 -NCIT:C179321 Ovarian Mesonephric-Like Adenocarcinoma 8 204029 -NCIT:C179339 Ovarian Mixed Cell Adenocarcinoma 8 204030 -NCIT:C40078 Ovarian Clear Cell Adenocarcinoma 8 204031 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 9 204032 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 9 204033 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 10 204034 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 9 204035 -NCIT:C7980 Ovarian Clear Cell Cystadenocarcinoma 9 204036 -NCIT:C5228 Ovarian Cystadenocarcinoma 8 204037 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 9 204038 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 10 204039 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 9 204040 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 9 204041 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 10 204042 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 11 204043 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 11 204044 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 10 204045 -NCIT:C7980 Ovarian Clear Cell Cystadenocarcinoma 9 204046 -NCIT:C5243 Ovarian Mucinous Adenocarcinoma 8 204047 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 9 204048 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 9 204049 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 9 204050 -NCIT:C183245 Unresectable Ovarian Mucinous Adenocarcinoma 9 204051 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 9 204052 -NCIT:C7550 Ovarian Serous Adenocarcinoma 8 204053 -NCIT:C105555 Ovarian High Grade Serous Adenocarcinoma 9 204054 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 10 204055 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 10 204056 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 10 204057 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 11 204058 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 10 204059 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 11 204060 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 11 204061 -NCIT:C105556 Ovarian Low Grade Serous Adenocarcinoma 9 204062 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 10 204063 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 10 204064 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 9 204065 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 10 204066 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 10 204067 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 10 204068 -NCIT:C160781 Unresectable Ovarian Serous Adenocarcinoma 9 204069 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 10 204070 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 11 204071 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 9 204072 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 10 204073 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 11 204074 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 11 204075 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 10 204076 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 11 204077 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 11 204078 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 10 204079 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 11 204080 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 11 204081 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 10 204082 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 11 204083 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 11 204084 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 9 204085 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 10 204086 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 10 204087 -NCIT:C6256 Ovarian Serous Surface Papillary Adenocarcinoma 9 204088 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 9 204089 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 10 204090 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 11 204091 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 11 204092 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 10 204093 -NCIT:C7979 Ovarian Endometrioid Adenocarcinoma 8 204094 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 9 204095 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 9 204096 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 9 204097 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 10 204098 -NCIT:C186273 Unresectable Ovarian Endometrioid Adenocarcinoma 9 204099 -NCIT:C40061 Ovarian Endometrioid Adenocarcinoma with Squamous Differentiation 9 204100 -NCIT:C7833 Recurrent Ovarian Carcinoma 7 204101 -NCIT:C148025 Recurrent BRCA- Associated Ovarian Carcinoma 8 204102 -NCIT:C153614 Recurrent Ovarian Adenocarcinoma 8 204103 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 9 204104 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 9 204105 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 10 204106 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 10 204107 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 10 204108 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 9 204109 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 9 204110 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 10 204111 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 9 204112 -NCIT:C153818 Recurrent Malignant Ovarian Brenner Tumor 8 204113 -NCIT:C153819 Recurrent Ovarian Transitional Cell Carcinoma 8 204114 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 8 204115 -NCIT:C170754 Recurrent Ovarian Undifferentiated Carcinoma 8 204116 -NCIT:C178669 Recurrent Ovarian Seromucinous Carcinoma 8 204117 -NCIT:C188391 Recurrent Platinum-Sensitive Ovarian Carcinoma 8 204118 -NCIT:C190201 Locally Recurrent Ovarian Carcinoma 8 204119 -NCIT:C7558 Endometrial Carcinoma 6 204120 -NCIT:C114656 Endometrial Adenosquamous Carcinoma 7 204121 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 8 204122 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 8 204123 -NCIT:C126769 Endometrial Dedifferentiated Carcinoma 7 204124 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 8 204125 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 8 204126 -NCIT:C150093 Refractory Endometrial Carcinoma 7 204127 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 8 204128 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 8 204129 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 8 204130 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 8 204131 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 9 204132 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 9 204133 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 9 204134 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 9 204135 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 9 204136 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 8 204137 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 8 204138 -NCIT:C150094 Recurrent Endometrial Carcinoma 7 204139 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 8 204140 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 8 204141 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 9 204142 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 9 204143 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 9 204144 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 9 204145 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 9 204146 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 8 204147 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 8 204148 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 8 204149 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 8 204150 -NCIT:C190200 Locally Recurrent Endometrial Carcinoma 8 204151 -NCIT:C156068 Metastatic Endometrial Carcinoma 7 204152 -NCIT:C159676 Advanced Endometrial Carcinoma 8 204153 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 204154 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 204155 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 204156 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 204157 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 8 204158 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 204159 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 204160 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 9 204161 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 8 204162 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 8 204163 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 204164 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 8 204165 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 9 204166 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 204167 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 204168 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 204169 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 204170 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 9 204171 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 204172 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 204173 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 204174 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 204175 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 9 204176 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 9 204177 -NCIT:C171033 Endometrial Neuroendocrine Carcinoma 7 204178 -NCIT:C126772 Endometrial Large Cell Neuroendocrine Carcinoma 8 204179 -NCIT:C40155 Endometrial Small Cell Neuroendocrine Carcinoma 8 204180 -NCIT:C171610 Unresectable Endometrial Carcinoma 7 204181 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 8 204182 -NCIT:C180335 Microsatellite Stable Endometrial Carcinoma 7 204183 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 8 204184 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 204185 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 8 204186 -NCIT:C190680 High Grade Endometrial Carcinoma 7 204187 -NCIT:C27838 Endometrial Serous Adenocarcinoma 8 204188 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 9 204189 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 9 204190 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 9 204191 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 204192 -NCIT:C187374 Platinum-Sensitive Endometrial Serous Adenocarcinoma 9 204193 -NCIT:C40148 High Grade Endometrial Endometrioid Adenocarcinoma 8 204194 -NCIT:C40156 Endometrial Undifferentiated Carcinoma 8 204195 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 9 204196 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 9 204197 -NCIT:C8028 Endometrial Clear Cell Adenocarcinoma 8 204198 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 9 204199 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 9 204200 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 9 204201 -NCIT:C40154 Endometrial Transitional Cell Carcinoma 7 204202 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 8 204203 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 8 204204 -NCIT:C7359 Endometrial Adenocarcinoma 7 204205 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 8 204206 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 9 204207 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 9 204208 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 9 204209 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 9 204210 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 9 204211 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 8 204212 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 9 204213 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 9 204214 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 9 204215 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 9 204216 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 9 204217 -NCIT:C179322 Endometrial Mesonephric-Like Adenocarcinoma 8 204218 -NCIT:C180536 Endometrial Mucinous Adenocarcinoma, Intestinal-Type 8 204219 -NCIT:C180537 Endometrial Mucinous Adenocarcinoma, Gastric-Type 8 204220 -NCIT:C39749 Type II Endometrial Adenocarcinoma 8 204221 -NCIT:C27838 Endometrial Serous Adenocarcinoma 9 204222 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 10 204223 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 10 204224 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 10 204225 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 11 204226 -NCIT:C187374 Platinum-Sensitive Endometrial Serous Adenocarcinoma 10 204227 -NCIT:C40152 Serous Endometrial Intraepithelial Carcinoma 9 204228 -NCIT:C8028 Endometrial Clear Cell Adenocarcinoma 9 204229 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 10 204230 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 10 204231 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 10 204232 -NCIT:C40145 Type I Endometrial Adenocarcinoma 8 204233 -NCIT:C40144 Endometrial Mucinous Adenocarcinoma 9 204234 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 10 204235 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 10 204236 -NCIT:C40149 FIGO Grade 1 Endometrial Mucinous Adenocarcinoma 10 204237 -NCIT:C40150 FIGO Grade 2 Endometrial Mucinous Adenocarcinoma 10 204238 -NCIT:C40151 FIGO Grade 3 Endometrial Mucinous Adenocarcinoma 10 204239 -NCIT:C6287 Endometrial Endometrioid Adenocarcinoma 9 204240 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 10 204241 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 10 204242 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 10 204243 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 11 204244 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 11 204245 -NCIT:C180510 Low Grade Endometrial Endometrioid Adenocarcinoma 10 204246 -NCIT:C40146 FIGO Grade 1 Endometrial Endometrioid Adenocarcinoma 11 204247 -NCIT:C40147 FIGO Grade 2 Endometrial Endometrioid Adenocarcinoma 11 204248 -NCIT:C180512 POLE-Ultramutated Endometrial Endometrioid Adenocarcinoma 10 204249 -NCIT:C180514 Mismatch Repair-Deficient Endometrial Endometrioid Adenocarcinoma 10 204250 -NCIT:C180515 p53-Mutant Endometrial Endometrioid Adenocarcinoma 10 204251 -NCIT:C180516 No Specific Molecular Profile Endometrial Endometrioid Adenocarcinoma 10 204252 -NCIT:C27839 Endometrial Endometrioid Adenocarcinoma, Secretory Variant 10 204253 -NCIT:C27843 Endometrial Endometrioid Adenocarcinoma with Clear Cell Change 10 204254 -NCIT:C27844 Endometrial Endometrioid Adenocarcinoma with a Poorly Differentiated Carcinomatous Component 10 204255 -NCIT:C27845 Endometrial Endometrioid Adenocarcinoma with an Undifferentiated Carcinomatous Component 10 204256 -NCIT:C27846 Villoglandular Endometrial Endometrioid Adenocarcinoma 10 204257 -NCIT:C27848 Endometrial Endometrioid Adenocarcinoma, Ciliated Variant 10 204258 -NCIT:C27849 Oxyphilic Endometrial Endometrioid Adenocarcinoma 10 204259 -NCIT:C27850 Endometrial Endometrioid Adenocarcinoma with Spindled Epithelial Cells 10 204260 -NCIT:C40148 High Grade Endometrial Endometrioid Adenocarcinoma 10 204261 -NCIT:C6290 Endometrial Endometrioid Adenocarcinoma, Variant with Squamous Differentiation 10 204262 -NCIT:C40153 Endometrial Mixed Cell Adenocarcinoma 8 204263 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 9 204264 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 9 204265 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 9 204266 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 8 204267 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 9 204268 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 204269 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 204270 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 204271 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 204272 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 9 204273 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 204274 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 204275 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 204276 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 204277 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 9 204278 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 9 204279 -NCIT:C8719 Endometrial Squamous Cell Carcinoma 7 204280 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 8 204281 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 8 204282 -NCIT:C9039 Cervical Carcinoma 6 204283 -NCIT:C128045 Cervical Neuroendocrine Carcinoma 7 204284 -NCIT:C40214 Cervical Large Cell Neuroendocrine Carcinoma 8 204285 -NCIT:C7982 Cervical Small Cell Neuroendocrine Carcinoma 8 204286 -NCIT:C139733 Cervical Cancer by AJCC v8 Stage 7 204287 -NCIT:C139734 Stage I Cervical Cancer AJCC v8 8 204288 -NCIT:C139735 Stage IA Cervical Cancer AJCC v8 9 204289 -NCIT:C139736 Stage IA1 Cervical Cancer AJCC v8 10 204290 -NCIT:C139737 Stage IA2 Cervical Cancer AJCC v8 10 204291 -NCIT:C139738 Stage IB Cervical Cancer AJCC v8 9 204292 -NCIT:C139739 Stage IB1 Cervical Cancer AJCC v8 10 204293 -NCIT:C139740 Stage IB2 Cervical Cancer AJCC v8 10 204294 -NCIT:C139743 Stage II Cervical Cancer AJCC v8 8 204295 -NCIT:C139744 Stage IIA Cervical Cancer AJCC v8 9 204296 -NCIT:C139745 Stage IIA1 Cervical Cancer AJCC v8 10 204297 -NCIT:C139746 Stage IIA2 Cervical Cancer AJCC v8 10 204298 -NCIT:C139748 Stage IIB Cervical Cancer AJCC v8 9 204299 -NCIT:C139749 Stage III Cervical Cancer AJCC v8 8 204300 -NCIT:C139750 Stage IIIA Cervical Cancer AJCC v8 9 204301 -NCIT:C139752 Stage IIIB Cervical Cancer AJCC v8 9 204302 -NCIT:C139753 Stage IV Cervical Cancer AJCC v8 8 204303 -NCIT:C139754 Stage IVA Cervical Cancer AJCC v8 9 204304 -NCIT:C139755 Stage IVB Cervical Cancer AJCC v8 9 204305 -NCIT:C153387 Metastatic Cervical Carcinoma 7 204306 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 8 204307 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 204308 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 204309 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 8 204310 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 204311 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 204312 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 204313 -NCIT:C153390 Metastatic Cervical Adenosquamous Carcinoma 8 204314 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 204315 -NCIT:C156294 Advanced Cervical Carcinoma 8 204316 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 204317 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 204318 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 204319 -NCIT:C156295 Locally Advanced Cervical Carcinoma 8 204320 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 204321 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 204322 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 9 204323 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 204324 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 204325 -NCIT:C162225 Cervical Cancer by FIGO Stage 2018 7 204326 -NCIT:C162226 Stage I Cervical Cancer FIGO 2018 8 204327 -NCIT:C162227 Stage IA Cervical Cancer FIGO 2018 9 204328 -NCIT:C162228 Stage IA1 Cervical Cancer FIGO 2018 10 204329 -NCIT:C162229 Stage IA2 Cervical Cancer FIGO 2018 10 204330 -NCIT:C162230 Stage IB Cervical Cancer FIGO 2018 9 204331 -NCIT:C162231 Stage IB1 Cervical Cancer FIGO 2018 10 204332 -NCIT:C162232 Stage IB2 Cervical Cancer FIGO 2018 10 204333 -NCIT:C162233 Stage IB3 Cervical Cancer FIGO 2018 10 204334 -NCIT:C162234 Stage II Cervical Cancer FIGO 2018 8 204335 -NCIT:C162235 Stage IIA Cervical Cancer FIGO 2018 9 204336 -NCIT:C162236 Stage IIA1 Cervical Cancer FIGO 2018 10 204337 -NCIT:C162237 Stage IIA2 Cervical Cancer FIGO 2018 10 204338 -NCIT:C162238 Stage IIB Cervical Cancer FIGO 2018 9 204339 -NCIT:C162239 Stage III Cervical Cancer FIGO 2018 8 204340 -NCIT:C162240 Stage IIIA Cervical Cancer FIGO 2018 9 204341 -NCIT:C162241 Stage IIIB Cervical Cancer FIGO 2018 9 204342 -NCIT:C162242 Stage IIIC Cervical Cancer FIGO 2018 9 204343 -NCIT:C162243 Stage IIIC1 Cervical Cancer FIGO 2018 10 204344 -NCIT:C162244 Stage IIIC2 Cervical Cancer FIGO 2018 10 204345 -NCIT:C162245 Stage IV Cervical Cancer FIGO 2018 8 204346 -NCIT:C162246 Stage IVA Cervical Cancer FIGO 2018 9 204347 -NCIT:C162247 Stage IVB Cervical Cancer FIGO 2018 9 204348 -NCIT:C170513 Refractory Cervical Carcinoma 7 204349 -NCIT:C181034 Refractory Cervical Squamous Cell Carcinoma 8 204350 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 9 204351 -NCIT:C181036 Refractory Cervical Adenocarcinoma 8 204352 -NCIT:C174024 Unresectable Cervical Carcinoma 7 204353 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 8 204354 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 204355 -NCIT:C174025 Unresectable Cervical Squamous Cell Carcinoma 8 204356 -NCIT:C174027 Unresectable Cervical Adenosquamous Carcinoma 8 204357 -NCIT:C174029 Unresectable Cervical Adenocarcinoma 8 204358 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 204359 -NCIT:C180878 Cervical Mucoepidermoid Carcinoma 7 204360 -NCIT:C181562 Cervical Cancer by AJCC v9 Stage 7 204361 -NCIT:C181564 Stage I Cervical Cancer AJCC v9 8 204362 -NCIT:C181565 Stage IA Cervical Cancer AJCC v9 9 204363 -NCIT:C181567 Stage IA1 Cervical Cancer AJCC v9 10 204364 -NCIT:C181568 Stage IA2 Cervical Cancer AJCC v9 10 204365 -NCIT:C181570 Stage IB Cervical Cancer AJCC v9 9 204366 -NCIT:C181571 Stage IB1 Cervical Cancer AJCC v9 10 204367 -NCIT:C181576 Stage IB2 Cervical Cancer AJCC v9 10 204368 -NCIT:C181579 Stage IB3 Cervical Cancer AJCC v9 10 204369 -NCIT:C181583 Stage II Cervical Cancer AJCC v9 8 204370 -NCIT:C181584 Stage IIA Cervical Cancer AJCC v9 9 204371 -NCIT:C181586 Stage IIA1 Cervical Cancer AJCC v9 10 204372 -NCIT:C181588 Stage IIA2 Cervical Cancer AJCC v9 10 204373 -NCIT:C181591 Stage IIB Cervical Cancer AJCC v9 9 204374 -NCIT:C181592 Stage III Cervical Cancer AJCC v9 8 204375 -NCIT:C181594 Stage IIIA Cervical Cancer AJCC v9 9 204376 -NCIT:C181595 Stage IIIB Cervical Cancer AJCC v9 9 204377 -NCIT:C181596 Stage IIIC Cervical Cancer AJCC v9 9 204378 -NCIT:C181597 Stage IIIC1 Cervical Cancer AJCC v9 10 204379 -NCIT:C181598 Stage IIIC2 Cervical Cancer AJCC v9 10 204380 -NCIT:C181599 Stage IV Cervical Cancer AJCC v9 8 204381 -NCIT:C181601 Stage IVA Cervical Cancer AJCC v9 9 204382 -NCIT:C181603 Stage IVB Cervical Cancer AJCC v9 9 204383 -NCIT:C186619 Cervical Cancer by FIGO Stage 2009 7 204384 -NCIT:C186620 Stage I Cervical Cancer FIGO 2009 8 204385 -NCIT:C186621 Stage IA Cervical Cancer FIGO 2009 9 204386 -NCIT:C186622 Stage IA1 Cervical Cancer FIGO 2009 10 204387 -NCIT:C186623 Stage IA2 Cervical Cancer FIGO 2009 10 204388 -NCIT:C186624 Stage IB Cervical Cancer FIGO 2009 9 204389 -NCIT:C186625 Stage IB1 Cervical Cancer FIGO 2009 10 204390 -NCIT:C186626 Stage IB2 Cervical Cancer FIGO 2009 10 204391 -NCIT:C186627 Stage II Cervical Cancer FIGO 2009 8 204392 -NCIT:C186628 Stage IIA Cervical Cancer FIGO 2009 9 204393 -NCIT:C186629 Stage IIA1 Cervical Cancer FIGO 2009 10 204394 -NCIT:C186630 Stage IIA2 Cervical Cancer FIGO 2009 10 204395 -NCIT:C186631 Stage IIB Cervical Cancer FIGO 2009 9 204396 -NCIT:C186632 Stage III Cervical Cancer FIGO 2009 8 204397 -NCIT:C186633 Stage IIIA Cervical Cancer FIGO 2009 9 204398 -NCIT:C186634 Stage IIIB Cervical Cancer FIGO 2009 9 204399 -NCIT:C186635 Stage IV Cervical Cancer FIGO 2009 8 204400 -NCIT:C186636 Stage IVA Cervical Cancer FIGO 2009 9 204401 -NCIT:C186637 Stage IVB Cervical Cancer FIGO 2009 9 204402 -NCIT:C27675 Human Papillomavirus-Related Cervical Carcinoma 7 204403 -NCIT:C27676 Human Papillomavirus-Related Cervical Squamous Cell Carcinoma 8 204404 -NCIT:C40192 Cervical Papillary Squamous Cell Carcinoma 9 204405 -NCIT:C40191 Cervical Warty Carcinoma 10 204406 -NCIT:C40194 Cervical Squamotransitional Carcinoma 10 204407 -NCIT:C27677 Human Papillomavirus-Related Cervical Adenocarcinoma 8 204408 -NCIT:C127907 Endocervical Adenocarcinoma, Usual-Type 9 204409 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 10 204410 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 10 204411 -NCIT:C40208 Cervical Villoglandular Adenocarcinoma 10 204412 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 9 204413 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 9 204414 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 9 204415 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 9 204416 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 9 204417 -NCIT:C40213 Cervical Adenoid Basal Carcinoma 7 204418 -NCIT:C4028 Cervical Squamous Cell Carcinoma 7 204419 -NCIT:C136649 Recurrent Cervical Squamous Cell Carcinoma 8 204420 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 8 204421 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 204422 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 204423 -NCIT:C174025 Unresectable Cervical Squamous Cell Carcinoma 8 204424 -NCIT:C180839 Cervical Squamous Cell Carcinoma, Not Otherwise Specified 8 204425 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 9 204426 -NCIT:C180841 Human Papillomavirus-Independent Cervical Squamous Cell Carcinoma 8 204427 -NCIT:C181034 Refractory Cervical Squamous Cell Carcinoma 8 204428 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 9 204429 -NCIT:C27676 Human Papillomavirus-Related Cervical Squamous Cell Carcinoma 8 204430 -NCIT:C40192 Cervical Papillary Squamous Cell Carcinoma 9 204431 -NCIT:C40191 Cervical Warty Carcinoma 10 204432 -NCIT:C40194 Cervical Squamotransitional Carcinoma 10 204433 -NCIT:C36094 Early Invasive Cervical Squamous Cell Carcinoma 8 204434 -NCIT:C40187 Cervical Keratinizing Squamous Cell Carcinoma 8 204435 -NCIT:C40188 Cervical Non-Keratinizing Squamous Cell Carcinoma 8 204436 -NCIT:C40189 Cervical Basaloid Carcinoma 8 204437 -NCIT:C40190 Cervical Verrucous Carcinoma 8 204438 -NCIT:C40193 Cervical Lymphoepithelioma-Like Carcinoma 8 204439 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 8 204440 -NCIT:C4029 Cervical Adenocarcinoma 7 204441 -NCIT:C127915 Cervical Adenocarcinoma Admixed with Neuroendocrine Carcinoma 8 204442 -NCIT:C136651 Recurrent Cervical Adenocarcinoma 8 204443 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 9 204444 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 8 204445 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 204446 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 204447 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 204448 -NCIT:C174029 Unresectable Cervical Adenocarcinoma 8 204449 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 204450 -NCIT:C180848 Human Papillomavirus-Independent Cervical Adenocarcinoma 8 204451 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 9 204452 -NCIT:C40201 Cervical Serous Adenocarcinoma 9 204453 -NCIT:C40206 Human Papillomavirus-Independent Cervical Adenocarcinoma, Gastric-Type 9 204454 -NCIT:C40254 Cervical Mesonephric Adenocarcinoma 9 204455 -NCIT:C6343 Cervical Endometrioid Adenocarcinoma 9 204456 -NCIT:C6344 Human Papillomavirus-Independent Cervical Adenocarcinoma, Clear Cell-Type 9 204457 -NCIT:C180870 Cervical Adenocarcinoma, Not Otherwise Specified 8 204458 -NCIT:C181036 Refractory Cervical Adenocarcinoma 8 204459 -NCIT:C27677 Human Papillomavirus-Related Cervical Adenocarcinoma 8 204460 -NCIT:C127907 Endocervical Adenocarcinoma, Usual-Type 9 204461 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 10 204462 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 10 204463 -NCIT:C40208 Cervical Villoglandular Adenocarcinoma 10 204464 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 9 204465 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 9 204466 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 9 204467 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 9 204468 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 9 204469 -NCIT:C36095 Cervical Mucinous Adenocarcinoma 8 204470 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 9 204471 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 9 204472 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 9 204473 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 9 204474 -NCIT:C40206 Human Papillomavirus-Independent Cervical Adenocarcinoma, Gastric-Type 9 204475 -NCIT:C36096 Early Invasive Cervical Adenocarcinoma 8 204476 -NCIT:C4520 Cervical Adenocarcinoma In Situ 8 204477 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 9 204478 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 9 204479 -NCIT:C4519 Cervical Adenosquamous Carcinoma 7 204480 -NCIT:C136650 Recurrent Cervical Adenosquamous Carcinoma 8 204481 -NCIT:C153390 Metastatic Cervical Adenosquamous Carcinoma 8 204482 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 204483 -NCIT:C174027 Unresectable Cervical Adenosquamous Carcinoma 8 204484 -NCIT:C40212 Cervical Poorly Differentiated Adenosquamous Carcinoma 8 204485 -NCIT:C6345 Cervical Undifferentiated Carcinoma 7 204486 -NCIT:C6346 Cervical Adenoid Cystic Carcinoma 7 204487 -NCIT:C7432 AIDS-Related Cervical Carcinoma 7 204488 -NCIT:C7453 Exocervical Carcinoma 7 204489 -NCIT:C7804 Recurrent Cervical Carcinoma 7 204490 -NCIT:C136649 Recurrent Cervical Squamous Cell Carcinoma 8 204491 -NCIT:C136650 Recurrent Cervical Adenosquamous Carcinoma 8 204492 -NCIT:C136651 Recurrent Cervical Adenocarcinoma 8 204493 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 9 204494 -NCIT:C8577 Invasive Cervical Carcinoma 7 204495 -NCIT:C90493 Cervical Cancer by AJCC v6 Stage 7 204496 -NCIT:C4000 Stage 0 Cervical Cancer AJCC v6 8 204497 -NCIT:C7803 Stage II Cervical Cancer AJCC v6 8 204498 -NCIT:C6319 Stage IIA Cervical Cancer AJCC v6 9 204499 -NCIT:C6320 Stage IIB Cervical Cancer AJCC v6 and v7 9 204500 -NCIT:C9204 Stage I Cervical Cancer AJCC v6 and v7 8 204501 -NCIT:C6313 Stage IA Cervical Cancer AJCC v6 and v7 9 204502 -NCIT:C6314 Stage IA1 Cervical Cancer AJCC v6 and v7 10 204503 -NCIT:C6315 Stage IA2 Cervical Cancer AJCC v6 and v7 10 204504 -NCIT:C6316 Stage IB Cervical Cancer AJCC v6 and v7 9 204505 -NCIT:C6317 Stage IB1 Cervical Cancer AJCC v6 and v7 10 204506 -NCIT:C6318 Stage IB2 Cervical Cancer AJCC v6 and v7 10 204507 -NCIT:C9205 Stage III Cervical Cancer AJCC v6 and v7 8 204508 -NCIT:C6321 Stage IIIB Cervical Cancer AJCC v6 and v7 9 204509 -NCIT:C6322 Stage IIIA Cervical Cancer AJCC v6 and v7 9 204510 -NCIT:C9206 Stage IV Cervical Cancer AJCC v6 and v7 8 204511 -NCIT:C6323 Stage IVA Cervical Cancer AJCC v6 and v7 9 204512 -NCIT:C6324 Stage IVB Cervical Cancer AJCC v6 and v7 9 204513 -NCIT:C91208 Cervical Cancer by AJCC v7 Stage 7 204514 -NCIT:C89550 Stage 0 Cervical Cancer AJCC v7 8 204515 -NCIT:C4520 Cervical Adenocarcinoma In Situ 9 204516 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 10 204517 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 10 204518 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 9 204519 -NCIT:C89551 Stage II Cervical Cancer AJCC v7 8 204520 -NCIT:C6320 Stage IIB Cervical Cancer AJCC v6 and v7 9 204521 -NCIT:C89552 Stage IIA Cervical Cancer AJCC v7 9 204522 -NCIT:C95172 Stage IIA1 Cervical Cancer AJCC v7 10 204523 -NCIT:C95173 Stage IIA2 Cervical Cancer AJCC v7 10 204524 -NCIT:C9204 Stage I Cervical Cancer AJCC v6 and v7 8 204525 -NCIT:C6313 Stage IA Cervical Cancer AJCC v6 and v7 9 204526 -NCIT:C6314 Stage IA1 Cervical Cancer AJCC v6 and v7 10 204527 -NCIT:C6315 Stage IA2 Cervical Cancer AJCC v6 and v7 10 204528 -NCIT:C6316 Stage IB Cervical Cancer AJCC v6 and v7 9 204529 -NCIT:C6317 Stage IB1 Cervical Cancer AJCC v6 and v7 10 204530 -NCIT:C6318 Stage IB2 Cervical Cancer AJCC v6 and v7 10 204531 -NCIT:C9205 Stage III Cervical Cancer AJCC v6 and v7 8 204532 -NCIT:C6321 Stage IIIB Cervical Cancer AJCC v6 and v7 9 204533 -NCIT:C6322 Stage IIIA Cervical Cancer AJCC v6 and v7 9 204534 -NCIT:C9206 Stage IV Cervical Cancer AJCC v6 and v7 8 204535 -NCIT:C6323 Stage IVA Cervical Cancer AJCC v6 and v7 9 204536 -NCIT:C6324 Stage IVB Cervical Cancer AJCC v6 and v7 9 204537 -NCIT:C181196 Male Reproductive System Carcinoma 5 204538 -NCIT:C177149 Refractory Male Reproductive System Carcinoma 6 204539 -NCIT:C167255 Refractory Prostate Carcinoma 7 204540 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 8 204541 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 9 204542 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 9 204543 -NCIT:C161609 Double-Negative Prostate Carcinoma 9 204544 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 9 204545 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 9 204546 -NCIT:C167256 Refractory Prostate Adenocarcinoma 8 204547 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 8 204548 -NCIT:C177150 Refractory Penile Carcinoma 7 204549 -NCIT:C39906 Seminal Vesicle Adenocarcinoma 6 204550 -NCIT:C39957 Epididymal Adenocarcinoma 6 204551 -NCIT:C4863 Prostate Carcinoma 6 204552 -NCIT:C103817 Hereditary Prostate Carcinoma 7 204553 -NCIT:C114933 Hormone-Resistant Prostate Carcinoma 7 204554 -NCIT:C138167 Prostate Carcinoma by Gene Expression Profile 7 204555 -NCIT:C138168 Luminal A Prostate Carcinoma 8 204556 -NCIT:C138169 Luminal B Prostate Carcinoma 8 204557 -NCIT:C138170 Basal-Like Prostate Carcinoma 8 204558 -NCIT:C140163 Prostate Cancer by AJCC v8 Stage 7 204559 -NCIT:C140164 Stage I Prostate Cancer AJCC v8 8 204560 -NCIT:C140165 Stage II Prostate Cancer AJCC v8 8 204561 -NCIT:C140166 Stage IIA Prostate Cancer AJCC v8 9 204562 -NCIT:C140167 Stage IIB Prostate Cancer AJCC v8 9 204563 -NCIT:C140168 Stage IIC Prostate Cancer AJCC v8 9 204564 -NCIT:C140169 Stage III Prostate Cancer AJCC v8 8 204565 -NCIT:C140170 Stage IIIA Prostate Cancer AJCC v8 9 204566 -NCIT:C140171 Stage IIIB Prostate Cancer AJCC v8 9 204567 -NCIT:C140172 Stage IIIC Prostate Cancer AJCC v8 9 204568 -NCIT:C140173 Stage IV Prostate Cancer AJCC v8 8 204569 -NCIT:C140174 Stage IVA Prostate Cancer AJCC v8 9 204570 -NCIT:C140175 Stage IVB Prostate Cancer AJCC v8 9 204571 -NCIT:C161022 Intraductal Prostate Carcinoma 7 204572 -NCIT:C167255 Refractory Prostate Carcinoma 7 204573 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 8 204574 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 9 204575 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 9 204576 -NCIT:C161609 Double-Negative Prostate Carcinoma 9 204577 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 9 204578 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 9 204579 -NCIT:C167256 Refractory Prostate Adenocarcinoma 8 204580 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 8 204581 -NCIT:C171611 Unresectable Prostate Carcinoma 7 204582 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 8 204583 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 204584 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 8 204585 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 8 204586 -NCIT:C176517 Localized Prostate Carcinoma 7 204587 -NCIT:C39898 Primary Prostate Urothelial Carcinoma 7 204588 -NCIT:C39900 Prostatic Urethra Urothelial Carcinoma 8 204589 -NCIT:C39901 Prostatic Duct Urothelial Carcinoma 8 204590 -NCIT:C48596 Invasive Prostate Carcinoma 7 204591 -NCIT:C158912 Prostate Neuroendocrine Carcinoma 8 204592 -NCIT:C158650 Prostate Large Cell Neuroendocrine Carcinoma 9 204593 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 9 204594 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 10 204595 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 10 204596 -NCIT:C6766 Prostate Small Cell Neuroendocrine Carcinoma 9 204597 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 10 204598 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 10 204599 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 10 204600 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 10 204601 -NCIT:C2919 Prostate Adenocarcinoma 8 204602 -NCIT:C150557 Prostate Adenocarcinoma without Neuroendocrine Differentiation 9 204603 -NCIT:C164185 Aggressive Prostate Adenocarcinoma 9 204604 -NCIT:C164186 Prostate Adenocarcinoma by AJCC v7 Stage 9 204605 -NCIT:C8947 Stage I Prostate Adenocarcinoma AJCC v7 10 204606 -NCIT:C8948 Stage II Prostate Adenocarcinoma AJCC v7 10 204607 -NCIT:C8949 Stage III Prostate Adenocarcinoma AJCC v7 10 204608 -NCIT:C8950 Stage IV Prostate Adenocarcinoma AJCC v7 10 204609 -NCIT:C167256 Refractory Prostate Adenocarcinoma 9 204610 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 9 204611 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 10 204612 -NCIT:C27905 Well Differentiated Prostate Adenocarcinoma 9 204613 -NCIT:C39896 Prostate Ductal Adenocarcinoma, Papillary Pattern 10 204614 -NCIT:C27906 Moderately Differentiated Prostate Adenocarcinoma 9 204615 -NCIT:C27916 Poorly Differentiated Prostate Adenocarcinoma 9 204616 -NCIT:C5530 Prostate Acinar Adenocarcinoma, Sarcomatoid Variant 10 204617 -NCIT:C39903 Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 204618 -NCIT:C158656 Usual Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 204619 -NCIT:C158664 Prostate Adenocarcinoma with Paneth Cell-Like Neuroendocrine Differentiation 10 204620 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 204621 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 204622 -NCIT:C5596 Prostate Acinar Adenocarcinoma 9 204623 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 10 204624 -NCIT:C158656 Usual Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 204625 -NCIT:C160817 Prostate Acinar Adenocarcinoma, Microcystic Variant 10 204626 -NCIT:C160818 Prostate Acinar Adenocarcinoma, Pleomorphic Giant Cell Variant 10 204627 -NCIT:C39880 Prostate Acinar Adenocarcinoma, Atrophic Variant 10 204628 -NCIT:C39881 Prostate Acinar Adenocarcinoma, Pseudohyperplastic Variant 10 204629 -NCIT:C39882 Prostate Acinar Adenocarcinoma, Foamy Gland Variant 10 204630 -NCIT:C39884 Prostate Acinar Adenocarcinoma, Oncocytic Variant 10 204631 -NCIT:C39885 Prostate Acinar Adenocarcinoma, Lymphoepithelioma-Like Variant 10 204632 -NCIT:C5530 Prostate Acinar Adenocarcinoma, Sarcomatoid Variant 10 204633 -NCIT:C5535 Prostate Acinar Adenocarcinoma, Signet Ring-Like Cell Variant 10 204634 -NCIT:C5537 Prostate Acinar Mucinous Adenocarcinoma 10 204635 -NCIT:C6813 Prostate Ductal Adenocarcinoma 9 204636 -NCIT:C39895 Prostate Ductal Adenocarcinoma, Cribriform Pattern 10 204637 -NCIT:C39896 Prostate Ductal Adenocarcinoma, Papillary Pattern 10 204638 -NCIT:C39897 Prostate Ductal Adenocarcinoma, Solid Pattern 10 204639 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 9 204640 -NCIT:C156286 Advanced Prostate Adenocarcinoma 10 204641 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 204642 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 10 204643 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 11 204644 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 204645 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 204646 -NCIT:C39902 Prostate Basal Cell Carcinoma 8 204647 -NCIT:C5536 Prostate Squamous Cell Carcinoma 8 204648 -NCIT:C5538 Prostate Adenosquamous Carcinoma 8 204649 -NCIT:C5539 Prostate Adenoid Cystic Carcinoma 8 204650 -NCIT:C5597 Prostate Undifferentiated Carcinoma 8 204651 -NCIT:C7079 Prostate Cancer by Whitmore-Jewett Stage 7 204652 -NCIT:C7099 Stage D Prostate Cancer 8 204653 -NCIT:C7552 Stage C Prostate Cancer 8 204654 -NCIT:C7554 Stage B Prostate Cancer 8 204655 -NCIT:C7556 Stage A Prostate Cancer 8 204656 -NCIT:C7902 Recurrent Prostate Carcinoma 7 204657 -NCIT:C156771 Biochemically Recurrent Prostate Carcinoma 8 204658 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 8 204659 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 9 204660 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 8 204661 -NCIT:C8946 Metastatic Prostate Carcinoma 7 204662 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 8 204663 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 9 204664 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 9 204665 -NCIT:C161609 Double-Negative Prostate Carcinoma 9 204666 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 9 204667 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 9 204668 -NCIT:C132881 Prostate Carcinoma Metastatic in the Soft Tissue 8 204669 -NCIT:C148536 Castration-Naive Prostate Carcinoma 8 204670 -NCIT:C153336 Castration-Sensitive Prostate Carcinoma 8 204671 -NCIT:C156284 Advanced Prostate Carcinoma 8 204672 -NCIT:C156286 Advanced Prostate Adenocarcinoma 9 204673 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 204674 -NCIT:C156285 Locally Advanced Prostate Carcinoma 8 204675 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 9 204676 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 204677 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 9 204678 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 204679 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 9 204680 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 8 204681 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 9 204682 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 9 204683 -NCIT:C161584 Prostate Carcinoma Metastatic in the Pelvic Cavity 8 204684 -NCIT:C161587 Prostate Carcinoma Metastatic in the Lymph Nodes 8 204685 -NCIT:C171265 Oligometastatic Prostate Carcinoma 8 204686 -NCIT:C36307 Prostate Carcinoma Metastatic in the Lung 8 204687 -NCIT:C36308 Prostate Carcinoma Metastatic in the Bone 8 204688 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 8 204689 -NCIT:C156286 Advanced Prostate Adenocarcinoma 9 204690 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 204691 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 9 204692 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 204693 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 204694 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 204695 -NCIT:C90521 Prostate Cancer by AJCC v6 Stage 7 204696 -NCIT:C7551 Stage III Prostate Cancer AJCC v6 8 204697 -NCIT:C7553 Stage II Prostate Cancer AJCC v6 8 204698 -NCIT:C7555 Stage I Prostate Cancer AJCC v6 8 204699 -NCIT:C9075 Stage IV Prostate Cancer AJCC v6 8 204700 -NCIT:C91233 Prostate Cancer by AJCC v7 Stage 7 204701 -NCIT:C164186 Prostate Adenocarcinoma by AJCC v7 Stage 8 204702 -NCIT:C8947 Stage I Prostate Adenocarcinoma AJCC v7 9 204703 -NCIT:C8948 Stage II Prostate Adenocarcinoma AJCC v7 9 204704 -NCIT:C8949 Stage III Prostate Adenocarcinoma AJCC v7 9 204705 -NCIT:C8950 Stage IV Prostate Adenocarcinoma AJCC v7 9 204706 -NCIT:C89232 Stage I Prostate Cancer AJCC v7 8 204707 -NCIT:C8947 Stage I Prostate Adenocarcinoma AJCC v7 9 204708 -NCIT:C89233 Stage II Prostate Cancer AJCC v7 8 204709 -NCIT:C88106 Stage IIA Prostate Cancer AJCC v7 9 204710 -NCIT:C88107 Stage IIB Prostate Cancer AJCC v7 9 204711 -NCIT:C8948 Stage II Prostate Adenocarcinoma AJCC v7 9 204712 -NCIT:C89234 Stage III Prostate Cancer AJCC v7 8 204713 -NCIT:C8949 Stage III Prostate Adenocarcinoma AJCC v7 9 204714 -NCIT:C89235 Stage IV Prostate Cancer AJCC v7 8 204715 -NCIT:C8950 Stage IV Prostate Adenocarcinoma AJCC v7 9 204716 -NCIT:C7621 Recurrent Male Reproductive System Carcinoma 6 204717 -NCIT:C7870 Recurrent Penile Carcinoma 7 204718 -NCIT:C7902 Recurrent Prostate Carcinoma 7 204719 -NCIT:C156771 Biochemically Recurrent Prostate Carcinoma 8 204720 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 8 204721 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 9 204722 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 8 204723 -NCIT:C8955 Rete Testis Adenocarcinoma 6 204724 -NCIT:C9061 Penile Carcinoma 6 204725 -NCIT:C118820 Adult Penile Carcinoma 7 204726 -NCIT:C140075 Penile Cancer by AJCC v8 Stage 7 204727 -NCIT:C140076 Stage 0 Penile Cancer AJCC v8 8 204728 -NCIT:C140077 Stage 0is Penile Cancer AJCC v8 9 204729 -NCIT:C140078 Stage 0a Penile Cancer AJCC v8 9 204730 -NCIT:C140079 Stage I Penile Cancer AJCC v8 8 204731 -NCIT:C140080 Stage II Penile Cancer AJCC v8 8 204732 -NCIT:C140081 Stage IIA Penile Cancer AJCC v8 9 204733 -NCIT:C140083 Stage IIB Penile Cancer AJCC v8 9 204734 -NCIT:C140084 Stage III Penile Cancer AJCC v8 8 204735 -NCIT:C140085 Stage IIIA Penile Cancer AJCC v8 9 204736 -NCIT:C140086 Stage IIIB Penile Cancer AJCC v8 9 204737 -NCIT:C140087 Stage IV Penile Cancer AJCC v8 8 204738 -NCIT:C177150 Refractory Penile Carcinoma 7 204739 -NCIT:C27784 Metastatic Penile Carcinoma 7 204740 -NCIT:C170789 Locally Advanced Penile Carcinoma 8 204741 -NCIT:C170790 Advanced Penile Carcinoma 8 204742 -NCIT:C182111 Metastatic Squamous Cell Carcinoma of the Penis 8 204743 -NCIT:C27817 Penile Paget Disease 7 204744 -NCIT:C39961 Penile Basal Cell Carcinoma 7 204745 -NCIT:C7729 Squamous Cell Carcinoma of the Penis 7 204746 -NCIT:C159244 Non-Human Papillomavirus-Related Squamous Cell Carcinoma of the Penis 8 204747 -NCIT:C103340 Papillary Carcinoma of the Penis, Not Otherwise Specified 9 204748 -NCIT:C159245 Pseudohyperplastic Carcinoma of the Penis 9 204749 -NCIT:C159246 Pseudoglandular Carcinoma of the Penis 9 204750 -NCIT:C159248 Adenosquamous Carcinoma of the Penis 9 204751 -NCIT:C39959 Mixed Squamous Cell Carcinoma of the Penis 9 204752 -NCIT:C6979 Squamous Cell Carcinoma of the Penis, Usual Type 9 204753 -NCIT:C6982 Verrucous Carcinoma of the Penis 9 204754 -NCIT:C159247 Carcinoma Cuniculatum of the Penis 10 204755 -NCIT:C6984 Sarcomatoid Carcinoma of the Penis 9 204756 -NCIT:C182111 Metastatic Squamous Cell Carcinoma of the Penis 8 204757 -NCIT:C27682 Human Papillomavirus-Related Squamous Cell Carcinoma of the Penis 8 204758 -NCIT:C159250 Warty-Basaloid Carcinoma of the Penis 9 204759 -NCIT:C159251 Clear Cell Squamous Cell Carcinoma of the Penis 9 204760 -NCIT:C159252 Lymphoepithelioma-Like Carcinoma of the Penis 9 204761 -NCIT:C6980 Basaloid Squamous Cell Carcinoma of the Penis 9 204762 -NCIT:C159249 Papillary-Basaloid Carcinoma of the Penis 10 204763 -NCIT:C6981 Warty Carcinoma of the Penis 9 204764 -NCIT:C27790 Penile Carcinoma In Situ 8 204765 -NCIT:C6983 Papillary Carcinoma of the Penis 8 204766 -NCIT:C103340 Papillary Carcinoma of the Penis, Not Otherwise Specified 9 204767 -NCIT:C159249 Papillary-Basaloid Carcinoma of the Penis 9 204768 -NCIT:C6981 Warty Carcinoma of the Penis 9 204769 -NCIT:C6982 Verrucous Carcinoma of the Penis 9 204770 -NCIT:C159247 Carcinoma Cuniculatum of the Penis 10 204771 -NCIT:C7870 Recurrent Penile Carcinoma 7 204772 -NCIT:C90520 Penile Cancer by AJCC v6 Stage 7 204773 -NCIT:C3643 Stage 0 Penile Cancer AJCC v6 8 204774 -NCIT:C7867 Stage I Penile Cancer AJCC v6 8 204775 -NCIT:C7868 Stage II Penile Cancer AJCC v6 8 204776 -NCIT:C7869 Stage III Penile Cancer AJCC v6 8 204777 -NCIT:C8959 Stage IV Penile Cancer AJCC v6 8 204778 -NCIT:C91234 Penile Cancer by AJCC v7 Stage 7 204779 -NCIT:C89194 Stage 0 Penile Cancer AJCC v7 8 204780 -NCIT:C27790 Penile Carcinoma In Situ 9 204781 -NCIT:C89195 Stage I Penile Cancer AJCC v7 8 204782 -NCIT:C89196 Stage II Penile Cancer AJCC v7 8 204783 -NCIT:C89197 Stage III Penile Cancer AJCC v7 8 204784 -NCIT:C88104 Stage IIIa Penile Cancer AJCC v7 9 204785 -NCIT:C88105 Stage IIIb Penile Cancer AJCC v7 9 204786 -NCIT:C89198 Stage IV Penile Cancer AJCC v7 8 204787 -NCIT:C181197 Urinary System Carcinoma 5 204788 -NCIT:C162719 Refractory Urinary System Carcinoma 6 204789 -NCIT:C150316 Refractory Bladder Carcinoma 7 204790 -NCIT:C148286 Refractory Stage 0 Bladder Cancer AJCC v6 and v7 8 204791 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 8 204792 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 204793 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 8 204794 -NCIT:C150364 Refractory Urothelial Carcinoma 7 204795 -NCIT:C150365 Platinum-Resistant Urothelial Carcinoma 8 204796 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 8 204797 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 204798 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 8 204799 -NCIT:C176996 Refractory Urethral Urothelial Carcinoma 8 204800 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 8 204801 -NCIT:C172623 Refractory Kidney Carcinoma 7 204802 -NCIT:C162727 Refractory Kidney Medullary Carcinoma 8 204803 -NCIT:C165745 Refractory Renal Cell Carcinoma 8 204804 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 9 204805 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 8 204806 -NCIT:C191749 Squamous Cell Carcinoma of the Urinary Tract 6 204807 -NCIT:C4031 Bladder Squamous Cell Carcinoma 7 204808 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 8 204809 -NCIT:C27768 Schistosoma Hematobium-Related Bladder Squamous Cell Carcinoma 8 204810 -NCIT:C39833 Schistosoma Hematobium-Related Bladder Verrucous Carcinoma 9 204811 -NCIT:C39832 Bladder Verrucous Carcinoma 8 204812 -NCIT:C39833 Schistosoma Hematobium-Related Bladder Verrucous Carcinoma 9 204813 -NCIT:C39845 Urachal Squamous Cell Carcinoma 8 204814 -NCIT:C4994 Stage II Bladder Squamous Cell Carcinoma AJCC v6 and v7 8 204815 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 8 204816 -NCIT:C8903 Stage 0 Bladder Squamous Cell Carcinoma AJCC v6 and v7 8 204817 -NCIT:C8904 Stage I Squamous Cell Carcinoma of the Bladder AJCC v6 and v7 8 204818 -NCIT:C8905 Stage III Bladder Squamous Cell Carcinoma AJCC v6 and v7 8 204819 -NCIT:C8906 Stage IV Bladder Squamous Cell Carcinoma AJCC v7 8 204820 -NCIT:C191751 Adenocarcinoma of the Urinary Tract 6 204821 -NCIT:C4032 Bladder Adenocarcinoma 7 204822 -NCIT:C39835 Bladder Enteric Type Adenocarcinoma 8 204823 -NCIT:C39836 Bladder Adenocarcinoma, Not Otherwise Specified 8 204824 -NCIT:C39837 Bladder Mucinous Adenocarcinoma 8 204825 -NCIT:C39838 Bladder Hepatoid Adenocarcinoma 8 204826 -NCIT:C39839 Bladder Mixed Adenocarcinoma 8 204827 -NCIT:C39843 Urachal Adenocarcinoma 8 204828 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 8 204829 -NCIT:C6163 Bladder Signet Ring Cell Adenocarcinoma 8 204830 -NCIT:C8894 Stage 0 Bladder Adenocarcinoma AJCC v6 and v7 8 204831 -NCIT:C8895 Stage I Bladder Adenocarcinoma AJCC v6 and v7 8 204832 -NCIT:C8896 Stage II Bladder Adenocarcinoma AJCC v6 and v7 8 204833 -NCIT:C8897 Stage III Bladder Adenocarcinoma AJCC v6 and v7 8 204834 -NCIT:C8898 Stage IV Bladder Adenocarcinoma AJCC v7 8 204835 -NCIT:C191753 Diverticular Carcinoma of the Urinary Tract 6 204836 -NCIT:C191768 Clear Cell Adenocarcinoma of the Urinary Tract 6 204837 -NCIT:C6172 Urethral Clear Cell Adenocarcinoma 7 204838 -NCIT:C6179 Bladder Clear Cell Adenocarcinoma 7 204839 -NCIT:C39847 Bladder Tubulo-Cystic Clear Cell Adenocarcinoma 8 204840 -NCIT:C39848 Bladder Papillary Clear Cell Adenocarcinoma 8 204841 -NCIT:C39849 Bladder Diffuse Clear Cell Adenocarcinoma 8 204842 -NCIT:C191769 Endometrioid Adenocarcinoma of the Urinary Tract 6 204843 -NCIT:C159542 Bladder Endometrioid Adenocarcinoma 7 204844 -NCIT:C4030 Urothelial Carcinoma 6 204845 -NCIT:C126109 Metastatic Urothelial Carcinoma 7 204846 -NCIT:C148493 Advanced Urothelial Carcinoma 8 204847 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 204848 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 204849 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 204850 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 204851 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 204852 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 204853 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 204854 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 204855 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 204856 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 204857 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 204858 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 204859 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 204860 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 204861 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 204862 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 204863 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 204864 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 204865 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 204866 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 8 204867 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 204868 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 204869 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 204870 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 204871 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 204872 -NCIT:C191692 Metastatic Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 204873 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 204874 -NCIT:C191693 Metastatic Giant Cell Urothelial Carcinoma 8 204875 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 204876 -NCIT:C191694 Metastatic Lipid-Rich Urothelial Carcinoma 8 204877 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 204878 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 8 204879 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 204880 -NCIT:C191696 Metastatic Nested Urothelial Carcinoma 8 204881 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 204882 -NCIT:C191697 Metastatic Plasmacytoid Urothelial Carcinoma 8 204883 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 204884 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 8 204885 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 204886 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 8 204887 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 204888 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 204889 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 204890 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 9 204891 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 204892 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 204893 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 204894 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 204895 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 204896 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 204897 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 204898 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 204899 -NCIT:C150364 Refractory Urothelial Carcinoma 7 204900 -NCIT:C150365 Platinum-Resistant Urothelial Carcinoma 8 204901 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 8 204902 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 204903 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 8 204904 -NCIT:C176996 Refractory Urethral Urothelial Carcinoma 8 204905 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 8 204906 -NCIT:C150521 Unresectable Urothelial Carcinoma 7 204907 -NCIT:C158585 Unresectable Urethral Urothelial Carcinoma 8 204908 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 8 204909 -NCIT:C164160 Unresectable Renal Pelvis and Ureter Urothelial Carcinoma 8 204910 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 9 204911 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 9 204912 -NCIT:C157631 Recurrent Urothelial Carcinoma 7 204913 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 204914 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 204915 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 204916 -NCIT:C8254 Recurrent Renal Pelvis and Ureter Urothelial Carcinoma 8 204917 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 9 204918 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 204919 -NCIT:C180606 Urothelial Carcinoma, High Grade 7 204920 -NCIT:C180607 Renal Pelvis Urothelial Carcinoma, High Grade 8 204921 -NCIT:C180608 Ureter Urothelial Carcinoma, High Grade 8 204922 -NCIT:C180609 Bladder Urothelial Carcinoma, High Grade 8 204923 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 9 204924 -NCIT:C191675 Non-Invasive Papillary Urothelial Carcinoma, High Grade 8 204925 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 9 204926 -NCIT:C191673 Non-Invasive Papillary Urothelial Carcinoma, Low Grade 7 204927 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 8 204928 -NCIT:C39851 Bladder Urothelial Carcinoma 7 204929 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 204930 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 204931 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 204932 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 204933 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 204934 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 204935 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 204936 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 204937 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 204938 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 204939 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 204940 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 204941 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 204942 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 8 204943 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 8 204944 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 204945 -NCIT:C177531 Bladder Flat Urothelial Carcinoma 8 204946 -NCIT:C37266 Bladder Urothelial Carcinoma In Situ 9 204947 -NCIT:C140418 Stage 0is Bladder Cancer AJCC v8 10 204948 -NCIT:C3644 Stage 0is Bladder Urothelial Carcinoma AJCC v6 and v7 10 204949 -NCIT:C180609 Bladder Urothelial Carcinoma, High Grade 8 204950 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 9 204951 -NCIT:C188032 Resectable Bladder Urothelial Carcinoma 8 204952 -NCIT:C27634 Transplant-Related Bladder Urothelial Carcinoma 8 204953 -NCIT:C27885 Invasive Bladder Urothelial Carcinoma 8 204954 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 9 204955 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 204956 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 10 204957 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 9 204958 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 10 204959 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 9 204960 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 9 204961 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 9 204962 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 9 204963 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 204964 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 204965 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 9 204966 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 9 204967 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 9 204968 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 9 204969 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 10 204970 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 9 204971 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 9 204972 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 9 204973 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 10 204974 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 9 204975 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 10 204976 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 10 204977 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 10 204978 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 204979 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 10 204980 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 9 204981 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 10 204982 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 9 204983 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 10 204984 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 204985 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 204986 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 204987 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 9 204988 -NCIT:C39844 Urachal Urothelial Carcinoma 8 204989 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 204990 -NCIT:C7383 Bladder Papillary Urothelial Carcinoma 8 204991 -NCIT:C158382 Bladder Non-Invasive Papillary Urothelial Carcinoma 9 204992 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 10 204993 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 10 204994 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 10 204995 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 10 204996 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 204997 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 204998 -NCIT:C39853 Invasive Urothelial Carcinoma 7 204999 -NCIT:C115966 Invasive Bladder Urothelial Carcinoma Associated with Urethral Carcinoma 8 205000 -NCIT:C164252 Invasive Sarcomatoid Urothelial Carcinoma 8 205001 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 9 205002 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 10 205003 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 9 205004 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 10 205005 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 10 205006 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 10 205007 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 9 205008 -NCIT:C191678 Invasive Lymphoepithelioma-Like Urothelial Carcinoma 8 205009 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 9 205010 -NCIT:C191679 Invasive Giant Cell Urothelial Carcinoma 8 205011 -NCIT:C191693 Metastatic Giant Cell Urothelial Carcinoma 9 205012 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 10 205013 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 9 205014 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 10 205015 -NCIT:C191680 Invasive Urothelial Carcinoma with Glandular Differentiation 8 205016 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 9 205017 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 9 205018 -NCIT:C191681 Invasive Urothelial Carcinoma with Squamous Differentiation 8 205019 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 9 205020 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 9 205021 -NCIT:C191682 Invasive Urothelial Carcinoma with Trophoblastic Differentiation 8 205022 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 9 205023 -NCIT:C191683 Invasive Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 205024 -NCIT:C191692 Metastatic Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 205025 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 10 205026 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 205027 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 10 205028 -NCIT:C191684 Invasive Lipid-Rich Urothelial Carcinoma 8 205029 -NCIT:C191694 Metastatic Lipid-Rich Urothelial Carcinoma 9 205030 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 10 205031 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 9 205032 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 10 205033 -NCIT:C191685 Invasive Microcystic Urothelial Carcinoma 8 205034 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 9 205035 -NCIT:C191686 Invasive Micropapillary Urothelial Carcinoma 8 205036 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 9 205037 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 205038 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 205039 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 205040 -NCIT:C191687 Invasive Nested Urothelial Carcinoma 8 205041 -NCIT:C191696 Metastatic Nested Urothelial Carcinoma 9 205042 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 10 205043 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 9 205044 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 10 205045 -NCIT:C191688 Invasive Plasmacytoid Urothelial Carcinoma 8 205046 -NCIT:C191697 Metastatic Plasmacytoid Urothelial Carcinoma 9 205047 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 10 205048 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 9 205049 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 10 205050 -NCIT:C191725 Invasive Large Nested Urothelial Carcinoma 8 205051 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 9 205052 -NCIT:C191728 Invasive Tubular Urothelial Carcinoma 8 205053 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 9 205054 -NCIT:C191730 Invasive Poorly Differentiated Urothelial Carcinoma 8 205055 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 9 205056 -NCIT:C191734 Invasive Conventional Urothelial Carcinoma 8 205057 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 9 205058 -NCIT:C27885 Invasive Bladder Urothelial Carcinoma 8 205059 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 9 205060 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 205061 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 10 205062 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 9 205063 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 10 205064 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 9 205065 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 9 205066 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 9 205067 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 9 205068 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 205069 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 205070 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 9 205071 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 9 205072 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 9 205073 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 9 205074 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 10 205075 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 9 205076 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 9 205077 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 9 205078 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 10 205079 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 9 205080 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 10 205081 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 10 205082 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 10 205083 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 205084 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 10 205085 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 9 205086 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 10 205087 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 9 205088 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 10 205089 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 205090 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 205091 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 205092 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 9 205093 -NCIT:C39879 Invasive Renal Pelvis and Ureter Urothelial Carcinoma 8 205094 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 9 205095 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 9 205096 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 9 205097 -NCIT:C39898 Primary Prostate Urothelial Carcinoma 7 205098 -NCIT:C39900 Prostatic Urethra Urothelial Carcinoma 8 205099 -NCIT:C39901 Prostatic Duct Urothelial Carcinoma 8 205100 -NCIT:C6166 Urethral Urothelial Carcinoma 7 205101 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 205102 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 205103 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 205104 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 205105 -NCIT:C158585 Unresectable Urethral Urothelial Carcinoma 8 205106 -NCIT:C176996 Refractory Urethral Urothelial Carcinoma 8 205107 -NCIT:C39900 Prostatic Urethra Urothelial Carcinoma 8 205108 -NCIT:C7716 Renal Pelvis and Ureter Urothelial Carcinoma 7 205109 -NCIT:C140355 Renal Pelvis and Ureter Cancer by AJCC v8 Stage 8 205110 -NCIT:C140356 Renal Pelvis Cancer by AJCC v8 Stage 9 205111 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 205112 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 10 205113 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 10 205114 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 10 205115 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 10 205116 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 10 205117 -NCIT:C140357 Ureter Cancer by AJCC v8 Stage 9 205118 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 10 205119 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 10 205120 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 10 205121 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 10 205122 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 10 205123 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 10 205124 -NCIT:C140358 Stage 0a Renal Pelvis and Ureter Cancer AJCC v8 9 205125 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 205126 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 10 205127 -NCIT:C140361 Stage 0is Renal Pelvis and Ureter Cancer AJCC v8 9 205128 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 10 205129 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 10 205130 -NCIT:C140364 Stage I Renal Pelvis and Ureter Cancer AJCC v8 9 205131 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 10 205132 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 10 205133 -NCIT:C140367 Stage II Renal Pelvis and Ureter Cancer AJCC v8 9 205134 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 10 205135 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 10 205136 -NCIT:C140370 Stage III Renal Pelvis and Ureter Cancer AJCC v8 9 205137 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 10 205138 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 10 205139 -NCIT:C140373 Stage IV Renal Pelvis and Ureter Cancer AJCC v8 9 205140 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 10 205141 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 10 205142 -NCIT:C140376 Renal Pelvis and Ureter Cancer by AJCC v7 Stage 8 205143 -NCIT:C140377 Renal Pelvis Cancer by AJCC v7 Stage 9 205144 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 10 205145 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 10 205146 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 10 205147 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 10 205148 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 10 205149 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 205150 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 205151 -NCIT:C140378 Ureter Cancer by AJCC v7 Stage 9 205152 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 10 205153 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 11 205154 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 11 205155 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 10 205156 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 10 205157 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 10 205158 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 10 205159 -NCIT:C39850 Stage 0 Renal Pelvis and Ureter Cancer AJCC v7 9 205160 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 10 205161 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 11 205162 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 11 205163 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 10 205164 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 205165 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 205166 -NCIT:C7517 Stage 0a Renal Pelvis and Ureter Cancer AJCC v7 10 205167 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 205168 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 11 205169 -NCIT:C7518 Stage 0is Renal Pelvis and Ureter Cancer AJCC v7 10 205170 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 11 205171 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 205172 -NCIT:C7519 Stage I Renal Pelvis and Ureter Cancer AJCC v7 9 205173 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 10 205174 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 10 205175 -NCIT:C7520 Stage II Renal Pelvis and Ureter Cancer AJCC v7 9 205176 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 10 205177 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 10 205178 -NCIT:C7521 Stage III Renal Pelvis and Ureter Cancer AJCC v7 9 205179 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 10 205180 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 10 205181 -NCIT:C7522 Stage IV Renal Pelvis and Ureter Cancer AJCC v7 9 205182 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 10 205183 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 10 205184 -NCIT:C164160 Unresectable Renal Pelvis and Ureter Urothelial Carcinoma 8 205185 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 9 205186 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 9 205187 -NCIT:C39879 Invasive Renal Pelvis and Ureter Urothelial Carcinoma 8 205188 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 9 205189 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 9 205190 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 9 205191 -NCIT:C4830 Ureter Urothelial Carcinoma 8 205192 -NCIT:C140357 Ureter Cancer by AJCC v8 Stage 9 205193 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 10 205194 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 10 205195 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 10 205196 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 10 205197 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 10 205198 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 10 205199 -NCIT:C140378 Ureter Cancer by AJCC v7 Stage 9 205200 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 10 205201 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 11 205202 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 11 205203 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 10 205204 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 10 205205 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 10 205206 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 10 205207 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 9 205208 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 205209 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 205210 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 9 205211 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 9 205212 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 9 205213 -NCIT:C180608 Ureter Urothelial Carcinoma, High Grade 9 205214 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 9 205215 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 9 205216 -NCIT:C7355 Renal Pelvis Urothelial Carcinoma 8 205217 -NCIT:C140356 Renal Pelvis Cancer by AJCC v8 Stage 9 205218 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 205219 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 10 205220 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 10 205221 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 10 205222 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 10 205223 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 10 205224 -NCIT:C140377 Renal Pelvis Cancer by AJCC v7 Stage 9 205225 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 10 205226 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 10 205227 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 10 205228 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 10 205229 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 10 205230 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 205231 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 205232 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 205233 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 205234 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 205235 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 205236 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 9 205237 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 9 205238 -NCIT:C180607 Renal Pelvis Urothelial Carcinoma, High Grade 9 205239 -NCIT:C6148 Renal Pelvis Papillary Urothelial Carcinoma 9 205240 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 205241 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 10 205242 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 9 205243 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 8 205244 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 205245 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 205246 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 205247 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 9 205248 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 205249 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 205250 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 205251 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 205252 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 205253 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 205254 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 205255 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 205256 -NCIT:C8167 Localized Renal Pelvis and Ureter Urothelial Carcinoma 8 205257 -NCIT:C8168 Regional Renal Pelvis and Ureter Urothelial Carcinoma 8 205258 -NCIT:C8254 Recurrent Renal Pelvis and Ureter Urothelial Carcinoma 8 205259 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 9 205260 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 205261 -NCIT:C4912 Bladder Carcinoma 6 205262 -NCIT:C118816 Childhood Bladder Carcinoma 7 205263 -NCIT:C140416 Bladder Cancer by AJCC v8 Stage 7 205264 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 8 205265 -NCIT:C140418 Stage 0is Bladder Cancer AJCC v8 8 205266 -NCIT:C140419 Stage I Bladder Cancer AJCC v8 8 205267 -NCIT:C140420 Stage II Bladder Cancer AJCC v8 8 205268 -NCIT:C140421 Stage III Bladder Cancer AJCC v8 8 205269 -NCIT:C140422 Stage IIIA Bladder Cancer AJCC v8 9 205270 -NCIT:C140423 Stage IIIB Bladder Cancer AJCC v8 9 205271 -NCIT:C140424 Stage IV Bladder Cancer AJCC v8 8 205272 -NCIT:C140425 Stage IVA Bladder Cancer AJCC v8 9 205273 -NCIT:C140426 Stage IVB Bladder Cancer AJCC v8 9 205274 -NCIT:C150316 Refractory Bladder Carcinoma 7 205275 -NCIT:C148286 Refractory Stage 0 Bladder Cancer AJCC v6 and v7 8 205276 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 8 205277 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 205278 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 8 205279 -NCIT:C150570 Invasive Bladder Carcinoma 7 205280 -NCIT:C150572 Muscle Invasive Bladder Carcinoma 8 205281 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 9 205282 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 10 205283 -NCIT:C165716 Invasive Bladder Mixed Carcinoma 8 205284 -NCIT:C27474 Non-Muscle Invasive Bladder Carcinoma 8 205285 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 9 205286 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 205287 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 10 205288 -NCIT:C190772 Metastatic Non-Muscle Invasive Bladder Carcinoma 9 205289 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 10 205290 -NCIT:C190774 Recurrent Non-Muscle Invasive Bladder Carcinoma 9 205291 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 205292 -NCIT:C27885 Invasive Bladder Urothelial Carcinoma 8 205293 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 9 205294 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 205295 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 10 205296 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 9 205297 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 10 205298 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 9 205299 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 9 205300 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 9 205301 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 9 205302 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 205303 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 205304 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 9 205305 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 9 205306 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 9 205307 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 9 205308 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 10 205309 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 9 205310 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 9 205311 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 9 205312 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 10 205313 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 9 205314 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 10 205315 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 10 205316 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 10 205317 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 205318 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 10 205319 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 9 205320 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 10 205321 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 9 205322 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 10 205323 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 205324 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 205325 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 205326 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 9 205327 -NCIT:C156062 Metastatic Bladder Carcinoma 7 205328 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 205329 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 205330 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 205331 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 205332 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 205333 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 205334 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 205335 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 205336 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 205337 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 205338 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 205339 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 8 205340 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 8 205341 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 8 205342 -NCIT:C167071 Locally Advanced Bladder Carcinoma 8 205343 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 205344 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 9 205345 -NCIT:C167338 Advanced Bladder Carcinoma 8 205346 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 205347 -NCIT:C190772 Metastatic Non-Muscle Invasive Bladder Carcinoma 8 205348 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 9 205349 -NCIT:C157759 Bladder Neuroendocrine Carcinoma 7 205350 -NCIT:C157760 Bladder Large Cell Neuroendocrine Carcinoma 8 205351 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 9 205352 -NCIT:C9461 Bladder Small Cell Neuroendocrine Carcinoma 8 205353 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 9 205354 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 9 205355 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 9 205356 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 9 205357 -NCIT:C159542 Bladder Endometrioid Adenocarcinoma 7 205358 -NCIT:C160158 Carcinoma Arising in Bladder Diverticulum 7 205359 -NCIT:C167075 Unresectable Bladder Carcinoma 7 205360 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 8 205361 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 8 205362 -NCIT:C39842 Urachal Carcinoma 7 205363 -NCIT:C39843 Urachal Adenocarcinoma 8 205364 -NCIT:C39844 Urachal Urothelial Carcinoma 8 205365 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 205366 -NCIT:C39845 Urachal Squamous Cell Carcinoma 8 205367 -NCIT:C39851 Bladder Urothelial Carcinoma 7 205368 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 205369 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 205370 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 205371 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 205372 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 205373 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 205374 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 205375 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 205376 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 205377 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 205378 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 205379 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 205380 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 205381 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 8 205382 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 8 205383 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 205384 -NCIT:C177531 Bladder Flat Urothelial Carcinoma 8 205385 -NCIT:C37266 Bladder Urothelial Carcinoma In Situ 9 205386 -NCIT:C140418 Stage 0is Bladder Cancer AJCC v8 10 205387 -NCIT:C3644 Stage 0is Bladder Urothelial Carcinoma AJCC v6 and v7 10 205388 -NCIT:C180609 Bladder Urothelial Carcinoma, High Grade 8 205389 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 9 205390 -NCIT:C188032 Resectable Bladder Urothelial Carcinoma 8 205391 -NCIT:C27634 Transplant-Related Bladder Urothelial Carcinoma 8 205392 -NCIT:C27885 Invasive Bladder Urothelial Carcinoma 8 205393 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 9 205394 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 205395 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 10 205396 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 9 205397 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 10 205398 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 9 205399 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 9 205400 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 9 205401 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 9 205402 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 205403 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 205404 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 9 205405 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 9 205406 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 9 205407 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 9 205408 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 10 205409 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 9 205410 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 9 205411 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 9 205412 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 10 205413 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 9 205414 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 10 205415 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 10 205416 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 10 205417 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 205418 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 10 205419 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 9 205420 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 10 205421 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 9 205422 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 10 205423 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 205424 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 205425 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 205426 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 9 205427 -NCIT:C39844 Urachal Urothelial Carcinoma 8 205428 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 205429 -NCIT:C7383 Bladder Papillary Urothelial Carcinoma 8 205430 -NCIT:C158382 Bladder Non-Invasive Papillary Urothelial Carcinoma 9 205431 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 10 205432 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 10 205433 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 10 205434 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 10 205435 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 205436 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 205437 -NCIT:C4031 Bladder Squamous Cell Carcinoma 7 205438 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 8 205439 -NCIT:C27768 Schistosoma Hematobium-Related Bladder Squamous Cell Carcinoma 8 205440 -NCIT:C39833 Schistosoma Hematobium-Related Bladder Verrucous Carcinoma 9 205441 -NCIT:C39832 Bladder Verrucous Carcinoma 8 205442 -NCIT:C39833 Schistosoma Hematobium-Related Bladder Verrucous Carcinoma 9 205443 -NCIT:C39845 Urachal Squamous Cell Carcinoma 8 205444 -NCIT:C4994 Stage II Bladder Squamous Cell Carcinoma AJCC v6 and v7 8 205445 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 8 205446 -NCIT:C8903 Stage 0 Bladder Squamous Cell Carcinoma AJCC v6 and v7 8 205447 -NCIT:C8904 Stage I Squamous Cell Carcinoma of the Bladder AJCC v6 and v7 8 205448 -NCIT:C8905 Stage III Bladder Squamous Cell Carcinoma AJCC v6 and v7 8 205449 -NCIT:C8906 Stage IV Bladder Squamous Cell Carcinoma AJCC v7 8 205450 -NCIT:C4032 Bladder Adenocarcinoma 7 205451 -NCIT:C39835 Bladder Enteric Type Adenocarcinoma 8 205452 -NCIT:C39836 Bladder Adenocarcinoma, Not Otherwise Specified 8 205453 -NCIT:C39837 Bladder Mucinous Adenocarcinoma 8 205454 -NCIT:C39838 Bladder Hepatoid Adenocarcinoma 8 205455 -NCIT:C39839 Bladder Mixed Adenocarcinoma 8 205456 -NCIT:C39843 Urachal Adenocarcinoma 8 205457 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 8 205458 -NCIT:C6163 Bladder Signet Ring Cell Adenocarcinoma 8 205459 -NCIT:C8894 Stage 0 Bladder Adenocarcinoma AJCC v6 and v7 8 205460 -NCIT:C8895 Stage I Bladder Adenocarcinoma AJCC v6 and v7 8 205461 -NCIT:C8896 Stage II Bladder Adenocarcinoma AJCC v6 and v7 8 205462 -NCIT:C8897 Stage III Bladder Adenocarcinoma AJCC v6 and v7 8 205463 -NCIT:C8898 Stage IV Bladder Adenocarcinoma AJCC v7 8 205464 -NCIT:C6179 Bladder Clear Cell Adenocarcinoma 7 205465 -NCIT:C39847 Bladder Tubulo-Cystic Clear Cell Adenocarcinoma 8 205466 -NCIT:C39848 Bladder Papillary Clear Cell Adenocarcinoma 8 205467 -NCIT:C39849 Bladder Diffuse Clear Cell Adenocarcinoma 8 205468 -NCIT:C7899 Recurrent Bladder Carcinoma 7 205469 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 205470 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 205471 -NCIT:C190774 Recurrent Non-Muscle Invasive Bladder Carcinoma 8 205472 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 205473 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 205474 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 8 205475 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 8 205476 -NCIT:C90344 Bladder Cancer by AJCC v6 Stage 7 205477 -NCIT:C7895 Stage 0 Bladder Cancer AJCC v6 and v7 8 205478 -NCIT:C148286 Refractory Stage 0 Bladder Cancer AJCC v6 and v7 9 205479 -NCIT:C6188 Stage 0 Bladder Urothelial Carcinoma AJCC v6 and v7 9 205480 -NCIT:C3644 Stage 0is Bladder Urothelial Carcinoma AJCC v6 and v7 10 205481 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 10 205482 -NCIT:C8894 Stage 0 Bladder Adenocarcinoma AJCC v6 and v7 9 205483 -NCIT:C8903 Stage 0 Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 205484 -NCIT:C7896 Stage I Bladder Cancer AJCC v6 and v7 8 205485 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 205486 -NCIT:C8895 Stage I Bladder Adenocarcinoma AJCC v6 and v7 9 205487 -NCIT:C8899 Stage I Bladder Cancer with Carcinoma In Situ 9 205488 -NCIT:C8901 Stage I Bladder Cancer without Carcinoma In Situ 9 205489 -NCIT:C8904 Stage I Squamous Cell Carcinoma of the Bladder AJCC v6 and v7 9 205490 -NCIT:C7897 Stage II Bladder Cancer AJCC v6 and v7 8 205491 -NCIT:C4994 Stage II Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 205492 -NCIT:C8896 Stage II Bladder Adenocarcinoma AJCC v6 and v7 9 205493 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 205494 -NCIT:C7898 Stage III Bladder Cancer AJCC v6 and v7 8 205495 -NCIT:C8897 Stage III Bladder Adenocarcinoma AJCC v6 and v7 9 205496 -NCIT:C8905 Stage III Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 205497 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 205498 -NCIT:C7900 Stage IV Bladder Cancer AJCC v6 8 205499 -NCIT:C91202 Bladder Cancer by AJCC v7 Stage 7 205500 -NCIT:C7895 Stage 0 Bladder Cancer AJCC v6 and v7 8 205501 -NCIT:C148286 Refractory Stage 0 Bladder Cancer AJCC v6 and v7 9 205502 -NCIT:C6188 Stage 0 Bladder Urothelial Carcinoma AJCC v6 and v7 9 205503 -NCIT:C3644 Stage 0is Bladder Urothelial Carcinoma AJCC v6 and v7 10 205504 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 10 205505 -NCIT:C8894 Stage 0 Bladder Adenocarcinoma AJCC v6 and v7 9 205506 -NCIT:C8903 Stage 0 Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 205507 -NCIT:C7896 Stage I Bladder Cancer AJCC v6 and v7 8 205508 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 205509 -NCIT:C8895 Stage I Bladder Adenocarcinoma AJCC v6 and v7 9 205510 -NCIT:C8899 Stage I Bladder Cancer with Carcinoma In Situ 9 205511 -NCIT:C8901 Stage I Bladder Cancer without Carcinoma In Situ 9 205512 -NCIT:C8904 Stage I Squamous Cell Carcinoma of the Bladder AJCC v6 and v7 9 205513 -NCIT:C7897 Stage II Bladder Cancer AJCC v6 and v7 8 205514 -NCIT:C4994 Stage II Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 205515 -NCIT:C8896 Stage II Bladder Adenocarcinoma AJCC v6 and v7 9 205516 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 205517 -NCIT:C7898 Stage III Bladder Cancer AJCC v6 and v7 8 205518 -NCIT:C8897 Stage III Bladder Adenocarcinoma AJCC v6 and v7 9 205519 -NCIT:C8905 Stage III Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 205520 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 205521 -NCIT:C89366 Stage IV Bladder Cancer AJCC v7 8 205522 -NCIT:C8898 Stage IV Bladder Adenocarcinoma AJCC v7 9 205523 -NCIT:C8906 Stage IV Bladder Squamous Cell Carcinoma AJCC v7 9 205524 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 9 205525 -NCIT:C7515 Renal Pelvis and Ureter Carcinoma 6 205526 -NCIT:C7716 Renal Pelvis and Ureter Urothelial Carcinoma 7 205527 -NCIT:C140355 Renal Pelvis and Ureter Cancer by AJCC v8 Stage 8 205528 -NCIT:C140356 Renal Pelvis Cancer by AJCC v8 Stage 9 205529 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 205530 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 10 205531 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 10 205532 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 10 205533 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 10 205534 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 10 205535 -NCIT:C140357 Ureter Cancer by AJCC v8 Stage 9 205536 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 10 205537 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 10 205538 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 10 205539 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 10 205540 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 10 205541 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 10 205542 -NCIT:C140358 Stage 0a Renal Pelvis and Ureter Cancer AJCC v8 9 205543 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 205544 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 10 205545 -NCIT:C140361 Stage 0is Renal Pelvis and Ureter Cancer AJCC v8 9 205546 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 10 205547 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 10 205548 -NCIT:C140364 Stage I Renal Pelvis and Ureter Cancer AJCC v8 9 205549 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 10 205550 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 10 205551 -NCIT:C140367 Stage II Renal Pelvis and Ureter Cancer AJCC v8 9 205552 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 10 205553 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 10 205554 -NCIT:C140370 Stage III Renal Pelvis and Ureter Cancer AJCC v8 9 205555 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 10 205556 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 10 205557 -NCIT:C140373 Stage IV Renal Pelvis and Ureter Cancer AJCC v8 9 205558 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 10 205559 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 10 205560 -NCIT:C140376 Renal Pelvis and Ureter Cancer by AJCC v7 Stage 8 205561 -NCIT:C140377 Renal Pelvis Cancer by AJCC v7 Stage 9 205562 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 10 205563 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 10 205564 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 10 205565 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 10 205566 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 10 205567 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 205568 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 205569 -NCIT:C140378 Ureter Cancer by AJCC v7 Stage 9 205570 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 10 205571 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 11 205572 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 11 205573 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 10 205574 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 10 205575 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 10 205576 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 10 205577 -NCIT:C39850 Stage 0 Renal Pelvis and Ureter Cancer AJCC v7 9 205578 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 10 205579 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 11 205580 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 11 205581 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 10 205582 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 205583 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 205584 -NCIT:C7517 Stage 0a Renal Pelvis and Ureter Cancer AJCC v7 10 205585 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 205586 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 11 205587 -NCIT:C7518 Stage 0is Renal Pelvis and Ureter Cancer AJCC v7 10 205588 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 11 205589 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 205590 -NCIT:C7519 Stage I Renal Pelvis and Ureter Cancer AJCC v7 9 205591 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 10 205592 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 10 205593 -NCIT:C7520 Stage II Renal Pelvis and Ureter Cancer AJCC v7 9 205594 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 10 205595 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 10 205596 -NCIT:C7521 Stage III Renal Pelvis and Ureter Cancer AJCC v7 9 205597 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 10 205598 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 10 205599 -NCIT:C7522 Stage IV Renal Pelvis and Ureter Cancer AJCC v7 9 205600 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 10 205601 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 10 205602 -NCIT:C164160 Unresectable Renal Pelvis and Ureter Urothelial Carcinoma 8 205603 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 9 205604 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 9 205605 -NCIT:C39879 Invasive Renal Pelvis and Ureter Urothelial Carcinoma 8 205606 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 9 205607 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 9 205608 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 9 205609 -NCIT:C4830 Ureter Urothelial Carcinoma 8 205610 -NCIT:C140357 Ureter Cancer by AJCC v8 Stage 9 205611 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 10 205612 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 10 205613 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 10 205614 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 10 205615 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 10 205616 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 10 205617 -NCIT:C140378 Ureter Cancer by AJCC v7 Stage 9 205618 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 10 205619 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 11 205620 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 11 205621 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 10 205622 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 10 205623 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 10 205624 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 10 205625 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 9 205626 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 205627 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 205628 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 9 205629 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 9 205630 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 9 205631 -NCIT:C180608 Ureter Urothelial Carcinoma, High Grade 9 205632 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 9 205633 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 9 205634 -NCIT:C7355 Renal Pelvis Urothelial Carcinoma 8 205635 -NCIT:C140356 Renal Pelvis Cancer by AJCC v8 Stage 9 205636 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 205637 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 10 205638 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 10 205639 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 10 205640 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 10 205641 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 10 205642 -NCIT:C140377 Renal Pelvis Cancer by AJCC v7 Stage 9 205643 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 10 205644 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 10 205645 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 10 205646 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 10 205647 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 10 205648 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 205649 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 205650 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 205651 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 205652 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 205653 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 205654 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 9 205655 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 9 205656 -NCIT:C180607 Renal Pelvis Urothelial Carcinoma, High Grade 9 205657 -NCIT:C6148 Renal Pelvis Papillary Urothelial Carcinoma 9 205658 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 205659 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 10 205660 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 9 205661 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 8 205662 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 205663 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 205664 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 205665 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 9 205666 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 205667 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 205668 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 205669 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 205670 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 205671 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 205672 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 205673 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 205674 -NCIT:C8167 Localized Renal Pelvis and Ureter Urothelial Carcinoma 8 205675 -NCIT:C8168 Regional Renal Pelvis and Ureter Urothelial Carcinoma 8 205676 -NCIT:C8254 Recurrent Renal Pelvis and Ureter Urothelial Carcinoma 8 205677 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 9 205678 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 205679 -NCIT:C7623 Recurrent Urinary System Carcinoma 6 205680 -NCIT:C157631 Recurrent Urothelial Carcinoma 7 205681 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 205682 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 205683 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 205684 -NCIT:C8254 Recurrent Renal Pelvis and Ureter Urothelial Carcinoma 8 205685 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 9 205686 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 205687 -NCIT:C172622 Recurrent Kidney Carcinoma 7 205688 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 8 205689 -NCIT:C162726 Recurrent Kidney Medullary Carcinoma 8 205690 -NCIT:C7825 Recurrent Renal Cell Carcinoma 8 205691 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 9 205692 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 10 205693 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 9 205694 -NCIT:C7508 Recurrent Urethral Carcinoma 7 205695 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 205696 -NCIT:C7899 Recurrent Bladder Carcinoma 7 205697 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 205698 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 205699 -NCIT:C190774 Recurrent Non-Muscle Invasive Bladder Carcinoma 8 205700 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 205701 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 205702 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 8 205703 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 8 205704 -NCIT:C9255 Recurrent Ureter Carcinoma 7 205705 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 8 205706 -NCIT:C8993 Ureter Carcinoma 6 205707 -NCIT:C27818 Metastatic Ureter Carcinoma 7 205708 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 8 205709 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 205710 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 205711 -NCIT:C4830 Ureter Urothelial Carcinoma 7 205712 -NCIT:C140357 Ureter Cancer by AJCC v8 Stage 8 205713 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 9 205714 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 9 205715 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 9 205716 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 9 205717 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 9 205718 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 9 205719 -NCIT:C140378 Ureter Cancer by AJCC v7 Stage 8 205720 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 9 205721 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 10 205722 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 10 205723 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 9 205724 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 9 205725 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 9 205726 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 9 205727 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 8 205728 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 205729 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 205730 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 8 205731 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 8 205732 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 8 205733 -NCIT:C180608 Ureter Urothelial Carcinoma, High Grade 8 205734 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 8 205735 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 8 205736 -NCIT:C6154 Ureter Squamous Cell Carcinoma 7 205737 -NCIT:C6155 Ureter Adenocarcinoma 7 205738 -NCIT:C6159 Ureter Undifferentiated Carcinoma 7 205739 -NCIT:C6176 Ureter Small Cell Neuroendocrine Carcinoma 7 205740 -NCIT:C9255 Recurrent Ureter Carcinoma 7 205741 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 8 205742 -NCIT:C9356 Regional Ureter Carcinoma 7 205743 -NCIT:C9106 Urethral Carcinoma 6 205744 -NCIT:C115210 Distal Urethral Carcinoma 7 205745 -NCIT:C115334 Proximal Urethral Carcinoma 7 205746 -NCIT:C140457 Urethral Cancer by AJCC v8 Stage 7 205747 -NCIT:C140458 Stage 0a Urethral Cancer AJCC v8 8 205748 -NCIT:C140459 Stage 0is Urethral Cancer AJCC v8 8 205749 -NCIT:C140460 Stage I Urethral Cancer AJCC v8 8 205750 -NCIT:C140461 Stage II Urethral Cancer AJCC v8 8 205751 -NCIT:C140462 Stage III Urethral Cancer AJCC v8 8 205752 -NCIT:C140463 Stage IV Urethral Cancer AJCC v8 8 205753 -NCIT:C140464 Urethral Cancer by AJCC v7 Stage 7 205754 -NCIT:C6195 Stage 0 Urethral Cancer AJCC v7 8 205755 -NCIT:C4531 Stage 0is Urethral Cancer AJCC v7 9 205756 -NCIT:C6196 Stage 0a Urethral Cancer AJCC v7 9 205757 -NCIT:C6197 Stage I Urethral Cancer AJCC v7 8 205758 -NCIT:C6198 Stage II Urethral Cancer AJCC v7 8 205759 -NCIT:C6199 Stage III Urethral Cancer AJCC v7 8 205760 -NCIT:C6200 Stage IV Urethral Cancer AJCC v7 8 205761 -NCIT:C27819 Metastatic Urethral Carcinoma 7 205762 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 205763 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 205764 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 205765 -NCIT:C6165 Urethral Squamous Cell Carcinoma 7 205766 -NCIT:C39862 Human Papillomavirus-Related Urethral Squamous Cell Carcinoma 8 205767 -NCIT:C39874 Urethral Verrucous Carcinoma 8 205768 -NCIT:C6166 Urethral Urothelial Carcinoma 7 205769 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 205770 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 205771 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 205772 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 205773 -NCIT:C158585 Unresectable Urethral Urothelial Carcinoma 8 205774 -NCIT:C176996 Refractory Urethral Urothelial Carcinoma 8 205775 -NCIT:C39900 Prostatic Urethra Urothelial Carcinoma 8 205776 -NCIT:C6167 Urethral Adenocarcinoma 7 205777 -NCIT:C6172 Urethral Clear Cell Adenocarcinoma 8 205778 -NCIT:C7371 Accessory Urethral Gland Adenocarcinoma 8 205779 -NCIT:C180948 Skene Gland Adenocarcinoma of the Urethra 9 205780 -NCIT:C39864 Cowper Gland Adenocarcinoma of the Urethra 9 205781 -NCIT:C39865 Littre Gland Adenocarcinoma of the Urethra 9 205782 -NCIT:C6168 Urethral Undifferentiated Carcinoma 7 205783 -NCIT:C7508 Recurrent Urethral Carcinoma 7 205784 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 205785 -NCIT:C9384 Kidney Carcinoma 6 205786 -NCIT:C159224 Kidney Neuroendocrine Carcinoma 7 205787 -NCIT:C116317 Kidney Small Cell Neuroendocrine Carcinoma 8 205788 -NCIT:C159225 Kidney Large Cell Neuroendocrine Carcinoma 8 205789 -NCIT:C172622 Recurrent Kidney Carcinoma 7 205790 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 8 205791 -NCIT:C162726 Recurrent Kidney Medullary Carcinoma 8 205792 -NCIT:C7825 Recurrent Renal Cell Carcinoma 8 205793 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 9 205794 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 10 205795 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 9 205796 -NCIT:C172623 Refractory Kidney Carcinoma 7 205797 -NCIT:C162727 Refractory Kidney Medullary Carcinoma 8 205798 -NCIT:C165745 Refractory Renal Cell Carcinoma 8 205799 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 9 205800 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 8 205801 -NCIT:C174565 Unresectable Kidney Carcinoma 7 205802 -NCIT:C154545 Unresectable Renal Cell Carcinoma 8 205803 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 205804 -NCIT:C165449 Unresectable Clear Cell Renal Cell Carcinoma 9 205805 -NCIT:C183251 Unresectable Sarcomatoid Renal Cell Carcinoma 9 205806 -NCIT:C190505 Unresectable Papillary Renal Cell Carcinoma 9 205807 -NCIT:C190508 Unresectable Unclassified Renal Cell Carcinoma 9 205808 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 8 205809 -NCIT:C174567 Unresectable Kidney Medullary Carcinoma 8 205810 -NCIT:C189241 Kidney Carcinoma Molecular Subtypes 7 205811 -NCIT:C154494 Renal Cell Carcinoma with MiT Translocations 8 205812 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 9 205813 -NCIT:C27891 TFE3-Rearranged Renal Cell Carcinoma 9 205814 -NCIT:C37872 Renal Cell Carcinoma Associated with t(X;1)(p11.2;q21) 10 205815 -NCIT:C37874 Renal Cell Carcinoma Associated with t(X;1)(p11.2;p34) 10 205816 -NCIT:C37876 Renal Cell Carcinoma Associated with t(X;17)(p11.2;q25) 10 205817 -NCIT:C39802 Renal Cell Carcinoma Associated with inv(X)(p11;q12) 10 205818 -NCIT:C37210 TFEB-Rearranged Renal Cell Carcinoma 9 205819 -NCIT:C156464 Succinate Dehydrogenase-Deficient Renal Cell Carcinoma 8 205820 -NCIT:C164156 Fumarate Hydratase-Deficient Renal Cell Carcinoma 8 205821 -NCIT:C189247 SMARCB1-Deficient Kidney Medullary Carcinoma 8 205822 -NCIT:C189248 Childhood SMARCB1-Deficient Kidney Medullary Carcinoma 9 205823 -NCIT:C189249 ALK-Rearranged Renal Cell Carcinoma 8 205824 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 9 205825 -NCIT:C191375 ELOC-Mutated Renal Cell Carcinoma 8 205826 -NCIT:C189244 Childhood Kidney Carcinoma 7 205827 -NCIT:C189248 Childhood SMARCB1-Deficient Kidney Medullary Carcinoma 8 205828 -NCIT:C6568 Childhood Renal Cell Carcinoma 8 205829 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 9 205830 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 9 205831 -NCIT:C189255 Childhood Eosinophilic Solid and Cystic Renal Cell Carcinoma 9 205832 -NCIT:C27806 Metastatic Kidney Carcinoma 7 205833 -NCIT:C150595 Metastatic Renal Cell Carcinoma 8 205834 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 205835 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 205836 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 205837 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 205838 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 205839 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 205840 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 9 205841 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 205842 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 205843 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 9 205844 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 205845 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 205846 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 9 205847 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 205848 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 205849 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 205850 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 205851 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 205852 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 205853 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 205854 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 205855 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 205856 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 9 205857 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 205858 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 205859 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 9 205860 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 205861 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 205862 -NCIT:C157755 Metastatic Kidney Medullary Carcinoma 8 205863 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 205864 -NCIT:C163965 Metastatic Renal Pelvis Carcinoma 8 205865 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 205866 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 205867 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 205868 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 205869 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 205870 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 205871 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 205872 -NCIT:C172617 Advanced Kidney Carcinoma 8 205873 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 205874 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 205875 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 205876 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 205877 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 205878 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 205879 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 205880 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 205881 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 205882 -NCIT:C172618 Locally Advanced Kidney Carcinoma 8 205883 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 205884 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 205885 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 205886 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 205887 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 205888 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 205889 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 205890 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 205891 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 205892 -NCIT:C39807 Mucinous Tubular and Spindle Cell Carcinoma of the Kidney 7 205893 -NCIT:C6142 Renal Pelvis Carcinoma 7 205894 -NCIT:C163965 Metastatic Renal Pelvis Carcinoma 8 205895 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 205896 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 205897 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 205898 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 205899 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 205900 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 205901 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 205902 -NCIT:C6143 Renal Pelvis Adenocarcinoma 8 205903 -NCIT:C7355 Renal Pelvis Urothelial Carcinoma 8 205904 -NCIT:C140356 Renal Pelvis Cancer by AJCC v8 Stage 9 205905 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 205906 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 10 205907 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 10 205908 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 10 205909 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 10 205910 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 10 205911 -NCIT:C140377 Renal Pelvis Cancer by AJCC v7 Stage 9 205912 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 10 205913 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 10 205914 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 10 205915 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 10 205916 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 10 205917 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 205918 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 205919 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 205920 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 205921 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 205922 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 205923 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 9 205924 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 9 205925 -NCIT:C180607 Renal Pelvis Urothelial Carcinoma, High Grade 9 205926 -NCIT:C6148 Renal Pelvis Papillary Urothelial Carcinoma 9 205927 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 205928 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 10 205929 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 9 205930 -NCIT:C7732 Renal Pelvis Squamous Cell Carcinoma 8 205931 -NCIT:C6194 Collecting Duct Carcinoma 7 205932 -NCIT:C7572 Kidney Medullary Carcinoma 7 205933 -NCIT:C157755 Metastatic Kidney Medullary Carcinoma 8 205934 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 205935 -NCIT:C162726 Recurrent Kidney Medullary Carcinoma 8 205936 -NCIT:C162727 Refractory Kidney Medullary Carcinoma 8 205937 -NCIT:C174567 Unresectable Kidney Medullary Carcinoma 8 205938 -NCIT:C189247 SMARCB1-Deficient Kidney Medullary Carcinoma 8 205939 -NCIT:C189248 Childhood SMARCB1-Deficient Kidney Medullary Carcinoma 9 205940 -NCIT:C9385 Renal Cell Carcinoma 7 205941 -NCIT:C100051 Renal Cell Carcinoma Associated with Neuroblastoma 8 205942 -NCIT:C126303 Tubulocystic Renal Cell Carcinoma 8 205943 -NCIT:C140322 Renal Cell Cancer by AJCC v8 Stage 8 205944 -NCIT:C140323 Stage I Renal Cell Cancer AJCC v8 9 205945 -NCIT:C140324 Stage II Renal Cell Cancer AJCC v8 9 205946 -NCIT:C140325 Stage III Renal Cell Cancer AJCC v8 9 205947 -NCIT:C140326 Stage IV Renal Cell Cancer AJCC v8 9 205948 -NCIT:C150359 Bilateral Synchronous Sporadic Renal Cell Carcinoma 8 205949 -NCIT:C150595 Metastatic Renal Cell Carcinoma 8 205950 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 205951 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 205952 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 205953 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 205954 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 205955 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 205956 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 9 205957 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 205958 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 205959 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 9 205960 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 205961 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 205962 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 9 205963 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 205964 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 205965 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 205966 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 205967 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 205968 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 205969 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 205970 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 205971 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 205972 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 9 205973 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 205974 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 205975 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 9 205976 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 205977 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 205978 -NCIT:C154494 Renal Cell Carcinoma with MiT Translocations 8 205979 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 9 205980 -NCIT:C27891 TFE3-Rearranged Renal Cell Carcinoma 9 205981 -NCIT:C37872 Renal Cell Carcinoma Associated with t(X;1)(p11.2;q21) 10 205982 -NCIT:C37874 Renal Cell Carcinoma Associated with t(X;1)(p11.2;p34) 10 205983 -NCIT:C37876 Renal Cell Carcinoma Associated with t(X;17)(p11.2;q25) 10 205984 -NCIT:C39802 Renal Cell Carcinoma Associated with inv(X)(p11;q12) 10 205985 -NCIT:C37210 TFEB-Rearranged Renal Cell Carcinoma 9 205986 -NCIT:C154545 Unresectable Renal Cell Carcinoma 8 205987 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 205988 -NCIT:C165449 Unresectable Clear Cell Renal Cell Carcinoma 9 205989 -NCIT:C183251 Unresectable Sarcomatoid Renal Cell Carcinoma 9 205990 -NCIT:C190505 Unresectable Papillary Renal Cell Carcinoma 9 205991 -NCIT:C190508 Unresectable Unclassified Renal Cell Carcinoma 9 205992 -NCIT:C154547 Resectable Renal Cell Carcinoma 8 205993 -NCIT:C156464 Succinate Dehydrogenase-Deficient Renal Cell Carcinoma 8 205994 -NCIT:C157718 Acquired Cystic Disease-Associated Renal Cell Carcinoma 8 205995 -NCIT:C164156 Fumarate Hydratase-Deficient Renal Cell Carcinoma 8 205996 -NCIT:C165745 Refractory Renal Cell Carcinoma 8 205997 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 9 205998 -NCIT:C189249 ALK-Rearranged Renal Cell Carcinoma 8 205999 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 9 206000 -NCIT:C189254 Eosinophilic Solid and Cystic Renal Cell Carcinoma 8 206001 -NCIT:C189255 Childhood Eosinophilic Solid and Cystic Renal Cell Carcinoma 9 206002 -NCIT:C191370 Renal Cell Carcinoma, Not Otherwise Specified 8 206003 -NCIT:C191375 ELOC-Mutated Renal Cell Carcinoma 8 206004 -NCIT:C27638 Transplant-Related Renal Cell Carcinoma 8 206005 -NCIT:C27892 Unclassified Renal Cell Carcinoma 8 206006 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 9 206007 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 206008 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 206009 -NCIT:C190508 Unresectable Unclassified Renal Cell Carcinoma 9 206010 -NCIT:C27893 Sarcomatoid Renal Cell Carcinoma 8 206011 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 9 206012 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 206013 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 206014 -NCIT:C183251 Unresectable Sarcomatoid Renal Cell Carcinoma 9 206015 -NCIT:C39789 Hereditary Renal Cell Carcinoma 8 206016 -NCIT:C36260 Hereditary Clear Cell Renal Cell Carcinoma 9 206017 -NCIT:C39790 Renal Cell Carcinoma with Constitutional Chromosome 3 Translocations 9 206018 -NCIT:C51302 Hereditary Leiomyomatosis and Renal Cell Carcinoma 9 206019 -NCIT:C9222 Hereditary Papillary Renal Cell Carcinoma 9 206020 -NCIT:C4033 Clear Cell Renal Cell Carcinoma 8 206021 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 9 206022 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 10 206023 -NCIT:C157614 BAP1-Mutant Clear Cell Renal Cell Carcinoma 9 206024 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 9 206025 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 206026 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 206027 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 9 206028 -NCIT:C165449 Unresectable Clear Cell Renal Cell Carcinoma 9 206029 -NCIT:C35851 Grade 1 Clear Cell Renal Cell Carcinoma 9 206030 -NCIT:C35852 Grade 2 Clear Cell Renal Cell Carcinoma 9 206031 -NCIT:C35853 Grade 3 Clear Cell Renal Cell Carcinoma 9 206032 -NCIT:C35854 Grade 4 Clear Cell Renal Cell Carcinoma 9 206033 -NCIT:C36260 Hereditary Clear Cell Renal Cell Carcinoma 9 206034 -NCIT:C36261 Non-Hereditary Clear Cell Renal Cell Carcinoma 9 206035 -NCIT:C4146 Chromophobe Renal Cell Carcinoma 8 206036 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 9 206037 -NCIT:C155951 Chromophobe Renal Cell Carcinoma Associated with Birt-Hogg-Dube Syndrome 9 206038 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 9 206039 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 206040 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 206041 -NCIT:C27888 Classic Variant of Chromophobe Renal Cell Carcinoma 9 206042 -NCIT:C27889 Eosinophilic Variant of Chromophobe Renal Cell Carcinoma 9 206043 -NCIT:C6568 Childhood Renal Cell Carcinoma 8 206044 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 9 206045 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 9 206046 -NCIT:C189255 Childhood Eosinophilic Solid and Cystic Renal Cell Carcinoma 9 206047 -NCIT:C6975 Papillary Renal Cell Carcinoma 8 206048 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 9 206049 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 206050 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 206051 -NCIT:C190505 Unresectable Papillary Renal Cell Carcinoma 9 206052 -NCIT:C27886 Type 1 Papillary Renal Cell Carcinoma 9 206053 -NCIT:C27887 Type 2 Papillary Renal Cell Carcinoma 9 206054 -NCIT:C27890 Sporadic Papillary Renal Cell Carcinoma 9 206055 -NCIT:C9222 Hereditary Papillary Renal Cell Carcinoma 9 206056 -NCIT:C7825 Recurrent Renal Cell Carcinoma 8 206057 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 9 206058 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 10 206059 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 9 206060 -NCIT:C90343 Renal Cell Cancer by AJCC v6 Stage 8 206061 -NCIT:C4003 Stage IV Renal Cell Cancer AJCC v6 9 206062 -NCIT:C7823 Stage I Renal Cell Cancer AJCC v6 and v7 9 206063 -NCIT:C7824 Stage II Renal Cell Cancer AJCC v6 9 206064 -NCIT:C9220 Stage III Renal Cell Cancer AJCC v6 9 206065 -NCIT:C91201 Renal Cell Cancer by AJCC v7 Stage 8 206066 -NCIT:C7823 Stage I Renal Cell Cancer AJCC v6 and v7 9 206067 -NCIT:C89301 Stage II Renal Cell Cancer AJCC v7 9 206068 -NCIT:C89302 Stage III Renal Cell Cancer AJCC v7 9 206069 -NCIT:C89303 Stage IV Renal Cell Cancer AJCC v7 9 206070 -NCIT:C190783 Unresectable Genitourinary System Carcinoma 5 206071 -NCIT:C150521 Unresectable Urothelial Carcinoma 6 206072 -NCIT:C158585 Unresectable Urethral Urothelial Carcinoma 7 206073 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 7 206074 -NCIT:C164160 Unresectable Renal Pelvis and Ureter Urothelial Carcinoma 7 206075 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 8 206076 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 8 206077 -NCIT:C167073 Unresectable Ovarian Carcinoma 6 206078 -NCIT:C160781 Unresectable Ovarian Serous Adenocarcinoma 7 206079 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 8 206080 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 206081 -NCIT:C172235 Unresectable Ovarian Undifferentiated Carcinoma 7 206082 -NCIT:C179459 Unresectable Platinum-Resistant Ovarian Carcinoma 7 206083 -NCIT:C183245 Unresectable Ovarian Mucinous Adenocarcinoma 7 206084 -NCIT:C186273 Unresectable Ovarian Endometrioid Adenocarcinoma 7 206085 -NCIT:C167075 Unresectable Bladder Carcinoma 6 206086 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 7 206087 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 7 206088 -NCIT:C170969 Unresectable Fallopian Tube Carcinoma 6 206089 -NCIT:C170970 Unresectable Fallopian Tube Adenocarcinoma 7 206090 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 8 206091 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 8 206092 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 7 206093 -NCIT:C171610 Unresectable Endometrial Carcinoma 6 206094 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 7 206095 -NCIT:C171611 Unresectable Prostate Carcinoma 6 206096 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 7 206097 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 8 206098 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 7 206099 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 7 206100 -NCIT:C174024 Unresectable Cervical Carcinoma 6 206101 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 7 206102 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 8 206103 -NCIT:C174025 Unresectable Cervical Squamous Cell Carcinoma 7 206104 -NCIT:C174027 Unresectable Cervical Adenosquamous Carcinoma 7 206105 -NCIT:C174029 Unresectable Cervical Adenocarcinoma 7 206106 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 8 206107 -NCIT:C174198 Unresectable Vulvar Carcinoma 6 206108 -NCIT:C174199 Unresectable Vulvar Squamous Cell Carcinoma 7 206109 -NCIT:C174565 Unresectable Kidney Carcinoma 6 206110 -NCIT:C154545 Unresectable Renal Cell Carcinoma 7 206111 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 8 206112 -NCIT:C165449 Unresectable Clear Cell Renal Cell Carcinoma 8 206113 -NCIT:C183251 Unresectable Sarcomatoid Renal Cell Carcinoma 8 206114 -NCIT:C190505 Unresectable Papillary Renal Cell Carcinoma 8 206115 -NCIT:C190508 Unresectable Unclassified Renal Cell Carcinoma 8 206116 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 7 206117 -NCIT:C174567 Unresectable Kidney Medullary Carcinoma 7 206118 -NCIT:C175434 Unresectable Vaginal Carcinoma 6 206119 -NCIT:C177724 Recurrent Malignant Genitourinary System Neoplasm 4 206120 -NCIT:C150526 Recurrent Malignant Female Reproductive System Neoplasm 5 206121 -NCIT:C153347 Recurrent Ovarian Carcinosarcoma 6 206122 -NCIT:C160619 Recurrent Malignant Ovarian Granulosa Cell Tumor 6 206123 -NCIT:C171170 Recurrent Extrarenal Rhabdoid Tumor of the Ovary 6 206124 -NCIT:C7620 Recurrent Female Reproductive System Carcinoma 6 206125 -NCIT:C115429 Recurrent Fallopian Tube Carcinoma 7 206126 -NCIT:C170750 Recurrent Platinum-Resistant Fallopian Tube Carcinoma 8 206127 -NCIT:C170755 Recurrent Fallopian Tube Undifferentiated Carcinoma 8 206128 -NCIT:C170757 Recurrent Fallopian Tube Transitional Cell Carcinoma 8 206129 -NCIT:C170766 Recurrent Fallopian Tube Adenocarcinoma 8 206130 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 9 206131 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 9 206132 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 9 206133 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 9 206134 -NCIT:C191395 Recurrent Platinum-Sensitive Fallopian Tube Carcinoma 8 206135 -NCIT:C150094 Recurrent Endometrial Carcinoma 7 206136 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 8 206137 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 8 206138 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 9 206139 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 9 206140 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 9 206141 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 9 206142 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 9 206143 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 8 206144 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 8 206145 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 8 206146 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 8 206147 -NCIT:C190200 Locally Recurrent Endometrial Carcinoma 8 206148 -NCIT:C7804 Recurrent Cervical Carcinoma 7 206149 -NCIT:C136649 Recurrent Cervical Squamous Cell Carcinoma 8 206150 -NCIT:C136650 Recurrent Cervical Adenosquamous Carcinoma 8 206151 -NCIT:C136651 Recurrent Cervical Adenocarcinoma 8 206152 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 9 206153 -NCIT:C7833 Recurrent Ovarian Carcinoma 7 206154 -NCIT:C148025 Recurrent BRCA- Associated Ovarian Carcinoma 8 206155 -NCIT:C153614 Recurrent Ovarian Adenocarcinoma 8 206156 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 9 206157 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 9 206158 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 10 206159 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 10 206160 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 10 206161 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 9 206162 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 9 206163 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 10 206164 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 9 206165 -NCIT:C153818 Recurrent Malignant Ovarian Brenner Tumor 8 206166 -NCIT:C153819 Recurrent Ovarian Transitional Cell Carcinoma 8 206167 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 8 206168 -NCIT:C170754 Recurrent Ovarian Undifferentiated Carcinoma 8 206169 -NCIT:C178669 Recurrent Ovarian Seromucinous Carcinoma 8 206170 -NCIT:C188391 Recurrent Platinum-Sensitive Ovarian Carcinoma 8 206171 -NCIT:C190201 Locally Recurrent Ovarian Carcinoma 8 206172 -NCIT:C7860 Recurrent Vaginal Carcinoma 7 206173 -NCIT:C185302 Recurrent Vaginal Squamous Cell Carcinoma 8 206174 -NCIT:C9054 Recurrent Vulvar Carcinoma 7 206175 -NCIT:C174200 Recurrent Vulvar Squamous Cell Carcinoma 8 206176 -NCIT:C8087 Recurrent Ovarian Germ Cell Tumor 6 206177 -NCIT:C8261 Recurrent Uterine Corpus Sarcoma 6 206178 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 7 206179 -NCIT:C9072 Recurrent Uterine Corpus Cancer 6 206180 -NCIT:C150094 Recurrent Endometrial Carcinoma 7 206181 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 8 206182 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 8 206183 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 9 206184 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 9 206185 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 9 206186 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 9 206187 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 9 206188 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 8 206189 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 8 206190 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 8 206191 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 8 206192 -NCIT:C190200 Locally Recurrent Endometrial Carcinoma 8 206193 -NCIT:C155818 Recurrent Uterine Corpus Carcinosarcoma 7 206194 -NCIT:C9269 Recurrent Malignant Endocervical Neoplasm 6 206195 -NCIT:C150533 Recurrent Malignant Male Reproductive System Neoplasm 5 206196 -NCIT:C138021 Recurrent Testicular Lymphoma 6 206197 -NCIT:C179466 Recurrent Malignant Spermatic Cord Neoplasm 6 206198 -NCIT:C7621 Recurrent Male Reproductive System Carcinoma 6 206199 -NCIT:C7870 Recurrent Penile Carcinoma 7 206200 -NCIT:C7902 Recurrent Prostate Carcinoma 7 206201 -NCIT:C156771 Biochemically Recurrent Prostate Carcinoma 8 206202 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 8 206203 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 9 206204 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 8 206205 -NCIT:C9369 Recurrent Malignant Testicular Germ Cell Tumor 6 206206 -NCIT:C150542 Recurrent Malignant Urinary System Neoplasm 5 206207 -NCIT:C162730 Recurrent Rhabdoid Tumor of the Kidney 6 206208 -NCIT:C7623 Recurrent Urinary System Carcinoma 6 206209 -NCIT:C157631 Recurrent Urothelial Carcinoma 7 206210 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 206211 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 206212 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 206213 -NCIT:C8254 Recurrent Renal Pelvis and Ureter Urothelial Carcinoma 8 206214 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 9 206215 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 206216 -NCIT:C172622 Recurrent Kidney Carcinoma 7 206217 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 8 206218 -NCIT:C162726 Recurrent Kidney Medullary Carcinoma 8 206219 -NCIT:C7825 Recurrent Renal Cell Carcinoma 8 206220 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 9 206221 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 10 206222 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 9 206223 -NCIT:C7508 Recurrent Urethral Carcinoma 7 206224 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 206225 -NCIT:C7899 Recurrent Bladder Carcinoma 7 206226 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 206227 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 206228 -NCIT:C190774 Recurrent Non-Muscle Invasive Bladder Carcinoma 8 206229 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 206230 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 206231 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 8 206232 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 8 206233 -NCIT:C9255 Recurrent Ureter Carcinoma 7 206234 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 8 206235 -NCIT:C7845 Recurrent Kidney Wilms Tumor 6 206236 -NCIT:C9266 Recurrent Malignant Bladder Neoplasm 6 206237 -NCIT:C7899 Recurrent Bladder Carcinoma 7 206238 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 206239 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 206240 -NCIT:C190774 Recurrent Non-Muscle Invasive Bladder Carcinoma 8 206241 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 206242 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 206243 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 8 206244 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 8 206245 -NCIT:C178443 Mucosal Melanoma of the Genitourinary System 4 206246 -NCIT:C178437 Mucosal Melanoma of the Female Genital Tract 5 206247 -NCIT:C27394 Vaginal Melanoma 6 206248 -NCIT:C40239 Cervical Melanoma 6 206249 -NCIT:C40329 Vulvar Melanoma 6 206250 -NCIT:C178453 Mucosal Melanoma of the Urinary System 5 206251 -NCIT:C159663 Bladder Melanoma 6 206252 -NCIT:C159665 Urethral Melanoma 6 206253 -NCIT:C178517 Penile Mucosal Melanoma 5 206254 -NCIT:C189269 Childhood Malignant Genitourinary System Neoplasm 4 206255 -NCIT:C118816 Childhood Bladder Carcinoma 5 206256 -NCIT:C118821 Childhood Malignant Penile Neoplasm 5 206257 -NCIT:C123907 Childhood Malignant Kidney Neoplasm 5 206258 -NCIT:C189244 Childhood Kidney Carcinoma 6 206259 -NCIT:C189248 Childhood SMARCB1-Deficient Kidney Medullary Carcinoma 7 206260 -NCIT:C6568 Childhood Renal Cell Carcinoma 7 206261 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 8 206262 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 8 206263 -NCIT:C189255 Childhood Eosinophilic Solid and Cystic Renal Cell Carcinoma 8 206264 -NCIT:C189260 Childhood Anaplastic Sarcoma of the Kidney 6 206265 -NCIT:C189261 Childhood Kidney Ewing Sarcoma 6 206266 -NCIT:C27730 Childhood Kidney Wilms Tumor 6 206267 -NCIT:C6897 Cystic Partially Differentiated Kidney Nephroblastoma 7 206268 -NCIT:C4264 Clear Cell Sarcoma of the Kidney 6 206269 -NCIT:C6569 Congenital Mesoblastic Nephroma 6 206270 -NCIT:C39814 Classic Congenital Mesoblastic Nephroma 7 206271 -NCIT:C39815 Cellular Congenital Mesoblastic Nephroma 7 206272 -NCIT:C97058 Mixed Congenital Mesoblastic Nephroma 7 206273 -NCIT:C8715 Rhabdoid Tumor of the Kidney 6 206274 -NCIT:C162730 Recurrent Rhabdoid Tumor of the Kidney 7 206275 -NCIT:C162731 Refractory Rhabdoid Tumor of the Kidney 7 206276 -NCIT:C188888 Unresectable Rhabdoid Tumor of the Kidney 7 206277 -NCIT:C161608 Extrarenal Rhabdoid Tumor of the Prostate 5 206278 -NCIT:C190659 Childhood Malignant Ovarian Neoplasm 5 206279 -NCIT:C171169 Extrarenal Rhabdoid Tumor of the Ovary 6 206280 -NCIT:C171170 Recurrent Extrarenal Rhabdoid Tumor of the Ovary 7 206281 -NCIT:C171171 Refractory Extrarenal Rhabdoid Tumor of the Ovary 7 206282 -NCIT:C189334 Childhood Ovarian Small Cell Carcinoma, Hypercalcemic Type 6 206283 -NCIT:C68629 Childhood Malignant Ovarian Germ Cell Tumor 6 206284 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 7 206285 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 7 206286 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 7 206287 -NCIT:C6550 Childhood Ovarian Dysgerminoma 7 206288 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 7 206289 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 5 206290 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 5 206291 -NCIT:C68628 Childhood Malignant Testicular Germ Cell Tumor 5 206292 -NCIT:C6542 Childhood Testicular Mixed Germ Cell Tumor 6 206293 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 7 206294 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 6 206295 -NCIT:C6544 Childhood Testicular Choriocarcinoma 6 206296 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 6 206297 -NCIT:C36076 Malignant Reproductive System Neoplasm 4 206298 -NCIT:C4913 Malignant Female Reproductive System Neoplasm 5 206299 -NCIT:C126498 Malignant Uterine Ligament Neoplasm 6 206300 -NCIT:C179934 Malignant Broad Ligament Neoplasm 7 206301 -NCIT:C102570 Broad Ligament Adenosarcoma 8 206302 -NCIT:C179926 Broad Ligament Leiomyosarcoma 8 206303 -NCIT:C40135 Broad Ligament Adenocarcinoma 8 206304 -NCIT:C126479 Broad Ligament Serous Adenocarcinoma 9 206305 -NCIT:C40137 Broad Ligament Mucinous Adenocarcinoma 9 206306 -NCIT:C40138 Broad Ligament Endometrioid Adenocarcinoma 9 206307 -NCIT:C40139 Broad Ligament Clear Cell Adenocarcinoma 9 206308 -NCIT:C150526 Recurrent Malignant Female Reproductive System Neoplasm 6 206309 -NCIT:C153347 Recurrent Ovarian Carcinosarcoma 7 206310 -NCIT:C160619 Recurrent Malignant Ovarian Granulosa Cell Tumor 7 206311 -NCIT:C171170 Recurrent Extrarenal Rhabdoid Tumor of the Ovary 7 206312 -NCIT:C7620 Recurrent Female Reproductive System Carcinoma 7 206313 -NCIT:C115429 Recurrent Fallopian Tube Carcinoma 8 206314 -NCIT:C170750 Recurrent Platinum-Resistant Fallopian Tube Carcinoma 9 206315 -NCIT:C170755 Recurrent Fallopian Tube Undifferentiated Carcinoma 9 206316 -NCIT:C170757 Recurrent Fallopian Tube Transitional Cell Carcinoma 9 206317 -NCIT:C170766 Recurrent Fallopian Tube Adenocarcinoma 9 206318 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 10 206319 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 10 206320 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 10 206321 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 10 206322 -NCIT:C191395 Recurrent Platinum-Sensitive Fallopian Tube Carcinoma 9 206323 -NCIT:C150094 Recurrent Endometrial Carcinoma 8 206324 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 9 206325 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 9 206326 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 10 206327 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 10 206328 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 10 206329 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 10 206330 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 10 206331 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 9 206332 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 9 206333 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 9 206334 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 9 206335 -NCIT:C190200 Locally Recurrent Endometrial Carcinoma 9 206336 -NCIT:C7804 Recurrent Cervical Carcinoma 8 206337 -NCIT:C136649 Recurrent Cervical Squamous Cell Carcinoma 9 206338 -NCIT:C136650 Recurrent Cervical Adenosquamous Carcinoma 9 206339 -NCIT:C136651 Recurrent Cervical Adenocarcinoma 9 206340 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 10 206341 -NCIT:C7833 Recurrent Ovarian Carcinoma 8 206342 -NCIT:C148025 Recurrent BRCA- Associated Ovarian Carcinoma 9 206343 -NCIT:C153614 Recurrent Ovarian Adenocarcinoma 9 206344 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 10 206345 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 10 206346 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 11 206347 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 11 206348 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 11 206349 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 10 206350 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 10 206351 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 11 206352 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 10 206353 -NCIT:C153818 Recurrent Malignant Ovarian Brenner Tumor 9 206354 -NCIT:C153819 Recurrent Ovarian Transitional Cell Carcinoma 9 206355 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 9 206356 -NCIT:C170754 Recurrent Ovarian Undifferentiated Carcinoma 9 206357 -NCIT:C178669 Recurrent Ovarian Seromucinous Carcinoma 9 206358 -NCIT:C188391 Recurrent Platinum-Sensitive Ovarian Carcinoma 9 206359 -NCIT:C190201 Locally Recurrent Ovarian Carcinoma 9 206360 -NCIT:C7860 Recurrent Vaginal Carcinoma 8 206361 -NCIT:C185302 Recurrent Vaginal Squamous Cell Carcinoma 9 206362 -NCIT:C9054 Recurrent Vulvar Carcinoma 8 206363 -NCIT:C174200 Recurrent Vulvar Squamous Cell Carcinoma 9 206364 -NCIT:C8087 Recurrent Ovarian Germ Cell Tumor 7 206365 -NCIT:C8261 Recurrent Uterine Corpus Sarcoma 7 206366 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 8 206367 -NCIT:C9072 Recurrent Uterine Corpus Cancer 7 206368 -NCIT:C150094 Recurrent Endometrial Carcinoma 8 206369 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 9 206370 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 9 206371 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 10 206372 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 10 206373 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 10 206374 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 10 206375 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 10 206376 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 9 206377 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 9 206378 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 9 206379 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 9 206380 -NCIT:C190200 Locally Recurrent Endometrial Carcinoma 9 206381 -NCIT:C155818 Recurrent Uterine Corpus Carcinosarcoma 8 206382 -NCIT:C9269 Recurrent Malignant Endocervical Neoplasm 7 206383 -NCIT:C150527 Refractory Malignant Female Reproductive System Neoplasm 6 206384 -NCIT:C150092 Refractory Uterine Corpus Cancer 7 206385 -NCIT:C150093 Refractory Endometrial Carcinoma 8 206386 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 9 206387 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 9 206388 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 9 206389 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 9 206390 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 10 206391 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 10 206392 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 10 206393 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 10 206394 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 10 206395 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 9 206396 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 9 206397 -NCIT:C158381 Refractory Uterine Corpus Carcinosarcoma 8 206398 -NCIT:C152048 Refractory Female Reproductive System Carcinoma 7 206399 -NCIT:C150091 Refractory Ovarian Carcinoma 8 206400 -NCIT:C147561 Platinum-Resistant Ovarian Carcinoma 9 206401 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 10 206402 -NCIT:C179459 Unresectable Platinum-Resistant Ovarian Carcinoma 10 206403 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 10 206404 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 11 206405 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 11 206406 -NCIT:C170968 Refractory Ovarian Adenocarcinoma 9 206407 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 10 206408 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 10 206409 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 11 206410 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 11 206411 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 10 206412 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 10 206413 -NCIT:C178671 Refractory Ovarian Seromucinous Carcinoma 9 206414 -NCIT:C178682 Refractory Ovarian Transitional Cell Carcinoma 9 206415 -NCIT:C178683 Refractory Ovarian Undifferentiated Carcinoma 9 206416 -NCIT:C178700 Platinum-Refractory Ovarian Carcinoma 9 206417 -NCIT:C179207 Refractory Ovarian Squamous Cell Carcinoma 9 206418 -NCIT:C183126 Refractory Malignant Ovarian Brenner Tumor 9 206419 -NCIT:C150093 Refractory Endometrial Carcinoma 8 206420 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 9 206421 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 9 206422 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 9 206423 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 9 206424 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 10 206425 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 10 206426 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 10 206427 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 10 206428 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 10 206429 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 9 206430 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 9 206431 -NCIT:C152047 Refractory Fallopian Tube Carcinoma 8 206432 -NCIT:C157621 Platinum-Resistant Fallopian Tube Carcinoma 9 206433 -NCIT:C170750 Recurrent Platinum-Resistant Fallopian Tube Carcinoma 10 206434 -NCIT:C170971 Refractory Fallopian Tube Adenocarcinoma 9 206435 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 10 206436 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 10 206437 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 10 206438 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 10 206439 -NCIT:C178674 Refractory Fallopian Tube Transitional Cell Carcinoma 9 206440 -NCIT:C178675 Refractory Fallopian Tube Undifferentiated Carcinoma 9 206441 -NCIT:C178698 Platinum-Refractory Fallopian Tube Carcinoma 9 206442 -NCIT:C170513 Refractory Cervical Carcinoma 8 206443 -NCIT:C181034 Refractory Cervical Squamous Cell Carcinoma 9 206444 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 10 206445 -NCIT:C181036 Refractory Cervical Adenocarcinoma 9 206446 -NCIT:C174508 Refractory Vulvar Carcinoma 8 206447 -NCIT:C185304 Refractory Vulvar Squamous Cell Carcinoma 9 206448 -NCIT:C174509 Refractory Vaginal Carcinoma 8 206449 -NCIT:C185303 Refractory Vaginal Squamous Cell Carcinoma 9 206450 -NCIT:C169021 Platinum-Resistant Malignant Female Reproductive System Neoplasm 7 206451 -NCIT:C147561 Platinum-Resistant Ovarian Carcinoma 8 206452 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 9 206453 -NCIT:C179459 Unresectable Platinum-Resistant Ovarian Carcinoma 9 206454 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 9 206455 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 10 206456 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 10 206457 -NCIT:C157621 Platinum-Resistant Fallopian Tube Carcinoma 8 206458 -NCIT:C170750 Recurrent Platinum-Resistant Fallopian Tube Carcinoma 9 206459 -NCIT:C171171 Refractory Extrarenal Rhabdoid Tumor of the Ovary 7 206460 -NCIT:C178697 Platinum-Refractory Malignant Female Reproductive System Neoplasm 7 206461 -NCIT:C178698 Platinum-Refractory Fallopian Tube Carcinoma 8 206462 -NCIT:C178700 Platinum-Refractory Ovarian Carcinoma 8 206463 -NCIT:C162254 Metastatic Malignant Female Reproductive System Neoplasm 6 206464 -NCIT:C153387 Metastatic Cervical Carcinoma 7 206465 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 8 206466 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 206467 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 206468 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 8 206469 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 206470 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 206471 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 206472 -NCIT:C153390 Metastatic Cervical Adenosquamous Carcinoma 8 206473 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 206474 -NCIT:C156294 Advanced Cervical Carcinoma 8 206475 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 206476 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 206477 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 206478 -NCIT:C156295 Locally Advanced Cervical Carcinoma 8 206479 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 206480 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 206481 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 9 206482 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 206483 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 206484 -NCIT:C156063 Metastatic Fallopian Tube Carcinoma 7 206485 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 8 206486 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 9 206487 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 8 206488 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 8 206489 -NCIT:C156064 Metastatic Ovarian Carcinoma 7 206490 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 8 206491 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 206492 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 206493 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 206494 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 9 206495 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 206496 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 206497 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 9 206498 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 206499 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 206500 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 206501 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 206502 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 206503 -NCIT:C165458 Advanced Ovarian Carcinoma 8 206504 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 206505 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 206506 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 206507 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 206508 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 206509 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 206510 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 206511 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 8 206512 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 206513 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 206514 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 206515 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 206516 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 8 206517 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 206518 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 8 206519 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 206520 -NCIT:C172234 Metastatic Ovarian Undifferentiated Carcinoma 8 206521 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 8 206522 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 206523 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 206524 -NCIT:C180333 Metastatic Microsatellite Stable Ovarian Carcinoma 8 206525 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 206526 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 8 206527 -NCIT:C27391 Metastatic Ovarian Small Cell Carcinoma, Hypercalcemic Type 8 206528 -NCIT:C156065 Metastatic Vaginal Carcinoma 7 206529 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 8 206530 -NCIT:C170788 Advanced Vaginal Carcinoma 8 206531 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 206532 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 206533 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 206534 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 206535 -NCIT:C181028 Metastatic Vaginal Adenosquamous Carcinoma 8 206536 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 206537 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 8 206538 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 206539 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 206540 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 8 206541 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 206542 -NCIT:C156066 Metastatic Vulvar Carcinoma 7 206543 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 8 206544 -NCIT:C170786 Advanced Vulvar Carcinoma 8 206545 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 8 206546 -NCIT:C156068 Metastatic Endometrial Carcinoma 7 206547 -NCIT:C159676 Advanced Endometrial Carcinoma 8 206548 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 206549 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 206550 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 206551 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 206552 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 8 206553 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 206554 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 206555 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 9 206556 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 8 206557 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 8 206558 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 206559 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 8 206560 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 9 206561 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 206562 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 206563 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 206564 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 206565 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 9 206566 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 206567 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 206568 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 206569 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 206570 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 9 206571 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 9 206572 -NCIT:C167260 Advanced Malignant Female Reproductive System Neoplasm 7 206573 -NCIT:C156294 Advanced Cervical Carcinoma 8 206574 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 206575 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 206576 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 206577 -NCIT:C165458 Advanced Ovarian Carcinoma 8 206578 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 206579 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 206580 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 206581 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 206582 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 206583 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 206584 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 206585 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 8 206586 -NCIT:C170786 Advanced Vulvar Carcinoma 8 206587 -NCIT:C170788 Advanced Vaginal Carcinoma 8 206588 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 206589 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 206590 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 206591 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 206592 -NCIT:C170930 Advanced Malignant Mixed Mesodermal (Mullerian) Tumor 8 206593 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 9 206594 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 9 206595 -NCIT:C172450 Advanced Uterine Corpus Cancer 8 206596 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 9 206597 -NCIT:C159676 Advanced Endometrial Carcinoma 9 206598 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 10 206599 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 11 206600 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 11 206601 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 10 206602 -NCIT:C170460 Locally Advanced Malignant Female Reproductive System Neoplasm 7 206603 -NCIT:C156295 Locally Advanced Cervical Carcinoma 8 206604 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 206605 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 206606 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 9 206607 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 206608 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 206609 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 8 206610 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 206611 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 206612 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 206613 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 206614 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 8 206615 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 9 206616 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 8 206617 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 206618 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 206619 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 9 206620 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 8 206621 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 8 206622 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 206623 -NCIT:C185381 Metastatic Mesonephric Adenocarcinoma 7 206624 -NCIT:C190009 Metastatic Uterine Corpus Sarcoma 7 206625 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 8 206626 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 9 206627 -NCIT:C170963 Resectable Malignant Female Reproductive System Neoplasm 6 206628 -NCIT:C178437 Mucosal Melanoma of the Female Genital Tract 6 206629 -NCIT:C27394 Vaginal Melanoma 7 206630 -NCIT:C40239 Cervical Melanoma 7 206631 -NCIT:C40329 Vulvar Melanoma 7 206632 -NCIT:C179320 Mesonephric-Like Adenocarcinoma 6 206633 -NCIT:C179321 Ovarian Mesonephric-Like Adenocarcinoma 7 206634 -NCIT:C179322 Endometrial Mesonephric-Like Adenocarcinoma 7 206635 -NCIT:C181162 Female Reproductive System Carcinoma 6 206636 -NCIT:C3867 Fallopian Tube Carcinoma 7 206637 -NCIT:C115429 Recurrent Fallopian Tube Carcinoma 8 206638 -NCIT:C170750 Recurrent Platinum-Resistant Fallopian Tube Carcinoma 9 206639 -NCIT:C170755 Recurrent Fallopian Tube Undifferentiated Carcinoma 9 206640 -NCIT:C170757 Recurrent Fallopian Tube Transitional Cell Carcinoma 9 206641 -NCIT:C170766 Recurrent Fallopian Tube Adenocarcinoma 9 206642 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 10 206643 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 10 206644 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 10 206645 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 10 206646 -NCIT:C191395 Recurrent Platinum-Sensitive Fallopian Tube Carcinoma 9 206647 -NCIT:C139983 Fallopian Tube Cancer by AJCC v8 Stage 8 206648 -NCIT:C139984 Stage I Fallopian Tube Cancer AJCC v8 9 206649 -NCIT:C139985 Stage IA Fallopian Tube Cancer AJCC v8 10 206650 -NCIT:C139986 Stage IB Fallopian Tube Cancer AJCC v8 10 206651 -NCIT:C139987 Stage IC Fallopian Tube Cancer AJCC v8 10 206652 -NCIT:C139988 Stage II Fallopian Tube Cancer AJCC v8 9 206653 -NCIT:C139989 Stage IIA Fallopian Tube Cancer AJCC v8 10 206654 -NCIT:C139990 Stage IIB Fallopian Tube Cancer AJCC v8 10 206655 -NCIT:C139991 Stage III Fallopian Tube Cancer AJCC v8 9 206656 -NCIT:C139992 Stage IIIA Fallopian Tube Cancer AJCC v8 10 206657 -NCIT:C139993 Stage IIIA1 Fallopian Tube Cancer AJCC v8 11 206658 -NCIT:C139994 Stage IIIA2 Fallopian Tube Cancer AJCC v8 11 206659 -NCIT:C139995 Stage IIIB Fallopian Tube Cancer AJCC v8 10 206660 -NCIT:C139996 Stage IIIC Fallopian Tube Cancer AJCC v8 10 206661 -NCIT:C139997 Stage IV Fallopian Tube Cancer AJCC v8 9 206662 -NCIT:C139998 Stage IVA Fallopian Tube Cancer AJCC v8 10 206663 -NCIT:C139999 Stage IVB Fallopian Tube Cancer AJCC v8 10 206664 -NCIT:C152047 Refractory Fallopian Tube Carcinoma 8 206665 -NCIT:C157621 Platinum-Resistant Fallopian Tube Carcinoma 9 206666 -NCIT:C170750 Recurrent Platinum-Resistant Fallopian Tube Carcinoma 10 206667 -NCIT:C170971 Refractory Fallopian Tube Adenocarcinoma 9 206668 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 10 206669 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 10 206670 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 10 206671 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 10 206672 -NCIT:C178674 Refractory Fallopian Tube Transitional Cell Carcinoma 9 206673 -NCIT:C178675 Refractory Fallopian Tube Undifferentiated Carcinoma 9 206674 -NCIT:C178698 Platinum-Refractory Fallopian Tube Carcinoma 9 206675 -NCIT:C156063 Metastatic Fallopian Tube Carcinoma 8 206676 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 9 206677 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 10 206678 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 9 206679 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 9 206680 -NCIT:C160873 Platinum-Sensitive Fallopian Tube Carcinoma 8 206681 -NCIT:C191395 Recurrent Platinum-Sensitive Fallopian Tube Carcinoma 9 206682 -NCIT:C170969 Unresectable Fallopian Tube Carcinoma 8 206683 -NCIT:C170970 Unresectable Fallopian Tube Adenocarcinoma 9 206684 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 10 206685 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 10 206686 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 9 206687 -NCIT:C40104 Fallopian Tube Transitional Cell Carcinoma 8 206688 -NCIT:C170757 Recurrent Fallopian Tube Transitional Cell Carcinoma 9 206689 -NCIT:C178674 Refractory Fallopian Tube Transitional Cell Carcinoma 9 206690 -NCIT:C40455 Hereditary Fallopian Tube Carcinoma 8 206691 -NCIT:C6265 Fallopian Tube Adenocarcinoma 8 206692 -NCIT:C170766 Recurrent Fallopian Tube Adenocarcinoma 9 206693 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 10 206694 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 10 206695 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 10 206696 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 10 206697 -NCIT:C170970 Unresectable Fallopian Tube Adenocarcinoma 9 206698 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 10 206699 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 10 206700 -NCIT:C170971 Refractory Fallopian Tube Adenocarcinoma 9 206701 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 10 206702 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 10 206703 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 10 206704 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 10 206705 -NCIT:C40099 Fallopian Tube Serous Adenocarcinoma 9 206706 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 10 206707 -NCIT:C126456 Fallopian Tube High Grade Serous Adenocarcinoma 10 206708 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 11 206709 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 11 206710 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 11 206711 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 11 206712 -NCIT:C40103 Fallopian Tube Mucinous Adenocarcinoma 9 206713 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 10 206714 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 10 206715 -NCIT:C40105 Stage 0 Fallopian Tube Cancer AJCC v7 9 206716 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 10 206717 -NCIT:C6279 Fallopian Tube Endometrioid Adenocarcinoma 9 206718 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 10 206719 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 10 206720 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 10 206721 -NCIT:C6280 Fallopian Tube Clear Cell Adenocarcinoma 9 206722 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 10 206723 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 10 206724 -NCIT:C6278 Fallopian Tube Gestational Choriocarcinoma 8 206725 -NCIT:C6281 Fallopian Tube Undifferentiated Carcinoma 8 206726 -NCIT:C170755 Recurrent Fallopian Tube Undifferentiated Carcinoma 9 206727 -NCIT:C178675 Refractory Fallopian Tube Undifferentiated Carcinoma 9 206728 -NCIT:C6282 Fallopian Tube Squamous Cell Carcinoma 8 206729 -NCIT:C90499 Fallopian Tube Cancer by AJCC v6 Stage 8 206730 -NCIT:C8720 Stage I Fallopian Tube Cancer AJCC v6 and v7 9 206731 -NCIT:C6269 Stage IA Fallopian Tube Cancer AJCC v6 and v7 10 206732 -NCIT:C6270 Stage IB Fallopian Tube Cancer AJCC v6 and v7 10 206733 -NCIT:C6271 Stage IC Fallopian Tube Cancer AJCC v6 and v7 10 206734 -NCIT:C8721 Stage II Fallopian Tube Cancer AJCC v6 and v7 9 206735 -NCIT:C6272 Stage IIA Fallopian Tube Cancer AJCC v6 and v7 10 206736 -NCIT:C6276 Stage IIC Fallopian Tube Cancer AJCC v6 and v7 10 206737 -NCIT:C6277 Stage IIB Fallopian Tube Cancer AJCC v6 and v7 10 206738 -NCIT:C8722 Stage III Fallopian Tube Cancer AJCC v6 9 206739 -NCIT:C8963 Stage IV Fallopian Tube Cancer AJCC v6 and v7 9 206740 -NCIT:C91219 Fallopian Tube Cancer by AJCC v7 Stage 8 206741 -NCIT:C40105 Stage 0 Fallopian Tube Cancer AJCC v7 9 206742 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 10 206743 -NCIT:C8720 Stage I Fallopian Tube Cancer AJCC v6 and v7 9 206744 -NCIT:C6269 Stage IA Fallopian Tube Cancer AJCC v6 and v7 10 206745 -NCIT:C6270 Stage IB Fallopian Tube Cancer AJCC v6 and v7 10 206746 -NCIT:C6271 Stage IC Fallopian Tube Cancer AJCC v6 and v7 10 206747 -NCIT:C8721 Stage II Fallopian Tube Cancer AJCC v6 and v7 9 206748 -NCIT:C6272 Stage IIA Fallopian Tube Cancer AJCC v6 and v7 10 206749 -NCIT:C6276 Stage IIC Fallopian Tube Cancer AJCC v6 and v7 10 206750 -NCIT:C6277 Stage IIB Fallopian Tube Cancer AJCC v6 and v7 10 206751 -NCIT:C8963 Stage IV Fallopian Tube Cancer AJCC v6 and v7 9 206752 -NCIT:C89692 Stage III Fallopian Tube Cancer AJCC v7 9 206753 -NCIT:C6273 Stage IIIA Fallopian Tube Cancer AJCC v7 10 206754 -NCIT:C6274 Stage IIIB Fallopian Tube Cancer AJCC v7 10 206755 -NCIT:C6275 Stage IIIC Fallopian Tube Cancer AJCC v7 10 206756 -NCIT:C3917 Vaginal Carcinoma 7 206757 -NCIT:C128073 Vaginal Neuroendocrine Carcinoma 8 206758 -NCIT:C128075 Vaginal Large Cell Neuroendocrine Carcinoma 9 206759 -NCIT:C40263 Vaginal Small Cell Neuroendocrine Carcinoma 9 206760 -NCIT:C139657 Vaginal Cancer by AJCC v8 Stage 8 206761 -NCIT:C139658 Stage I Vaginal Cancer AJCC v8 9 206762 -NCIT:C139659 Stage IA Vaginal Cancer AJCC v8 10 206763 -NCIT:C139660 Stage IB Vaginal Cancer AJCC v8 10 206764 -NCIT:C139661 Stage II Vaginal Cancer AJCC v8 9 206765 -NCIT:C139662 Stage IIA Vaginal Cancer AJCC v8 10 206766 -NCIT:C139664 Stage IIB Vaginal Cancer AJCC v8 10 206767 -NCIT:C139665 Stage III Vaginal Cancer AJCC v8 9 206768 -NCIT:C139667 Stage IV Vaginal Cancer AJCC v8 9 206769 -NCIT:C139669 Stage IVA Vaginal Cancer AJCC v8 10 206770 -NCIT:C139670 Stage IVB Vaginal Cancer AJCC v8 10 206771 -NCIT:C156065 Metastatic Vaginal Carcinoma 8 206772 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 9 206773 -NCIT:C170788 Advanced Vaginal Carcinoma 9 206774 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 10 206775 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 10 206776 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 10 206777 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 11 206778 -NCIT:C181028 Metastatic Vaginal Adenosquamous Carcinoma 9 206779 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 10 206780 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 9 206781 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 10 206782 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 11 206783 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 9 206784 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 10 206785 -NCIT:C174509 Refractory Vaginal Carcinoma 8 206786 -NCIT:C185303 Refractory Vaginal Squamous Cell Carcinoma 9 206787 -NCIT:C175434 Unresectable Vaginal Carcinoma 8 206788 -NCIT:C180915 Vaginal Squamous Cell Carcinoma 8 206789 -NCIT:C128060 Vaginal Papillary Carcinoma 9 206790 -NCIT:C180917 Human Papillomavirus-Related Vaginal Squamous Cell Carcinoma 9 206791 -NCIT:C40248 Vaginal Warty Carcinoma 10 206792 -NCIT:C180919 Human Papillomavirus-Independent Vaginal Squamous Cell Carcinoma 9 206793 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 9 206794 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 10 206795 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 11 206796 -NCIT:C185302 Recurrent Vaginal Squamous Cell Carcinoma 9 206797 -NCIT:C185303 Refractory Vaginal Squamous Cell Carcinoma 9 206798 -NCIT:C40243 Vaginal Keratinizing Squamous Cell Carcinoma 9 206799 -NCIT:C40244 Vaginal Non-Keratinizing Squamous Cell Carcinoma 9 206800 -NCIT:C40245 Vaginal Basaloid Carcinoma 9 206801 -NCIT:C6325 Vaginal Verrucous Carcinoma 9 206802 -NCIT:C7736 Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 206803 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 206804 -NCIT:C40260 Vaginal Adenosquamous Carcinoma 8 206805 -NCIT:C181028 Metastatic Vaginal Adenosquamous Carcinoma 9 206806 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 10 206807 -NCIT:C40261 Vaginal Adenoid Cystic Carcinoma 8 206808 -NCIT:C40262 Vaginal Adenoid Basal Carcinoma 8 206809 -NCIT:C40264 Vaginal Undifferentiated Carcinoma 8 206810 -NCIT:C7860 Recurrent Vaginal Carcinoma 8 206811 -NCIT:C185302 Recurrent Vaginal Squamous Cell Carcinoma 9 206812 -NCIT:C7981 Vaginal Adenocarcinoma 8 206813 -NCIT:C180943 Human Papillomavirus-Related Vaginal Adenocarcinoma 9 206814 -NCIT:C180947 Vaginal Adenocarcinoma of Skene Gland Origin 9 206815 -NCIT:C40251 Vaginal Endometrioid Adenocarcinoma 9 206816 -NCIT:C40252 Vaginal Mucinous Adenocarcinoma 9 206817 -NCIT:C180945 Vaginal Mucinous Adenocarcinoma, Gastric-Type 10 206818 -NCIT:C180946 Vaginal Mucinous Adenocarcinoma, Intestinal-Type 10 206819 -NCIT:C40253 Vaginal Mesonephric Adenocarcinoma 9 206820 -NCIT:C7735 Vaginal Clear Cell Adenocarcinoma 9 206821 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 9 206822 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 10 206823 -NCIT:C90347 Vaginal Cancer by AJCC v6 Stage 8 206824 -NCIT:C7597 Stage IV Vaginal Cancer AJCC v6 and v7 9 206825 -NCIT:C7859 Stage IVA Vaginal Cancer AJCC v6 and v7 10 206826 -NCIT:C9355 Stage IVB Vaginal Cancer AJCC v6 and v7 10 206827 -NCIT:C7855 Stage 0 Vaginal Cancer AJCC v6 9 206828 -NCIT:C7856 Stage I Vaginal Cancer AJCC v6 and v7 9 206829 -NCIT:C7857 Stage II Vaginal Cancer AJCC v6 and v7 9 206830 -NCIT:C7858 Stage III Vaginal Cancer AJCC v6 and v7 9 206831 -NCIT:C91204 Vaginal Cancer by AJCC v7 Stage 8 206832 -NCIT:C7597 Stage IV Vaginal Cancer AJCC v6 and v7 9 206833 -NCIT:C7859 Stage IVA Vaginal Cancer AJCC v6 and v7 10 206834 -NCIT:C9355 Stage IVB Vaginal Cancer AJCC v6 and v7 10 206835 -NCIT:C7856 Stage I Vaginal Cancer AJCC v6 and v7 9 206836 -NCIT:C7857 Stage II Vaginal Cancer AJCC v6 and v7 9 206837 -NCIT:C7858 Stage III Vaginal Cancer AJCC v6 and v7 9 206838 -NCIT:C89476 Stage 0 Vaginal Cancer AJCC v7 9 206839 -NCIT:C4072 Mesonephric Adenocarcinoma 7 206840 -NCIT:C185381 Metastatic Mesonephric Adenocarcinoma 8 206841 -NCIT:C40253 Vaginal Mesonephric Adenocarcinoma 8 206842 -NCIT:C40254 Cervical Mesonephric Adenocarcinoma 8 206843 -NCIT:C4866 Vulvar Carcinoma 7 206844 -NCIT:C128243 Vulvar Neuroendocrine Carcinoma 8 206845 -NCIT:C128244 Vulvar Small Cell Neuroendocrine Carcinoma 9 206846 -NCIT:C40298 Bartholin Gland Small Cell Neuroendocrine Carcinoma 10 206847 -NCIT:C128245 Vulvar Large Cell Neuroendocrine Carcinoma 9 206848 -NCIT:C128247 Vulvar Merkel Cell Carcinoma 9 206849 -NCIT:C139618 Vulvar Cancer by AJCC v8 Stage 8 206850 -NCIT:C139619 Stage I Vulvar Cancer AJCC v8 9 206851 -NCIT:C139620 Stage IA Vulvar Cancer AJCC v8 10 206852 -NCIT:C139621 Stage IB Vulvar Cancer AJCC v8 10 206853 -NCIT:C139622 Stage II Vulvar Cancer AJCC v8 9 206854 -NCIT:C139623 Stage III Vulvar Cancer AJCC v8 9 206855 -NCIT:C139624 Stage IIIA Vulvar Cancer AJCC v8 10 206856 -NCIT:C139625 Stage IIIB Vulvar Cancer AJCC v8 10 206857 -NCIT:C139626 Stage IIIC Vulvar Cancer AJCC v8 10 206858 -NCIT:C139627 Stage IV Vulvar Cancer AJCC v8 9 206859 -NCIT:C139628 Stage IVA Vulvar Cancer AJCC v8 10 206860 -NCIT:C139630 Stage IVB Vulvar Cancer AJCC v8 10 206861 -NCIT:C156066 Metastatic Vulvar Carcinoma 8 206862 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 9 206863 -NCIT:C170786 Advanced Vulvar Carcinoma 9 206864 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 9 206865 -NCIT:C174198 Unresectable Vulvar Carcinoma 8 206866 -NCIT:C174199 Unresectable Vulvar Squamous Cell Carcinoma 9 206867 -NCIT:C174508 Refractory Vulvar Carcinoma 8 206868 -NCIT:C185304 Refractory Vulvar Squamous Cell Carcinoma 9 206869 -NCIT:C4052 Vulvar Squamous Cell Carcinoma 8 206870 -NCIT:C128167 Vulvar Keratoacanthoma 9 206871 -NCIT:C174199 Unresectable Vulvar Squamous Cell Carcinoma 9 206872 -NCIT:C174200 Recurrent Vulvar Squamous Cell Carcinoma 9 206873 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 9 206874 -NCIT:C181902 Vulvar Squamous Cell Carcinoma, Not Otherwise Specified 9 206875 -NCIT:C181903 Human Papillomavirus-Independent Vulvar Squamous Cell Carcinoma 9 206876 -NCIT:C185304 Refractory Vulvar Squamous Cell Carcinoma 9 206877 -NCIT:C27679 Human Papillomavirus-Related Vulvar Squamous Cell Carcinoma 9 206878 -NCIT:C40287 Vulvar Warty Carcinoma 10 206879 -NCIT:C40284 Vulvar Keratinizing Squamous Cell Carcinoma 9 206880 -NCIT:C40285 Vulvar Non-Keratinizing Squamous Cell Carcinoma 9 206881 -NCIT:C40286 Vulvar Basaloid Carcinoma 9 206882 -NCIT:C40289 Vulvar Squamous Cell Carcinoma with Tumor Giant Cells 9 206883 -NCIT:C40293 Bartholin Gland Squamous Cell Carcinoma 9 206884 -NCIT:C6383 Vulvar Verrucous Carcinoma 9 206885 -NCIT:C6380 Vulvar Adenocarcinoma 8 206886 -NCIT:C128162 Vulvar Adenocarcinoma of Mammary Gland Type 9 206887 -NCIT:C128164 Vulvar Adenocarcinoma of Sweat Gland Origin 9 206888 -NCIT:C4027 Vulvar Paget Disease 10 206889 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 10 206890 -NCIT:C40306 Vulvar Porocarcinoma 11 206891 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 10 206892 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 10 206893 -NCIT:C128166 Vulvar Adenocarcinoma, Intestinal-Type 9 206894 -NCIT:C40309 Vulvar Sebaceous Carcinoma 9 206895 -NCIT:C7719 Bartholin Gland Adenocarcinoma 9 206896 -NCIT:C6381 Vulvar Basal Cell Carcinoma 8 206897 -NCIT:C90345 Vulvar Cancer by AJCC v6 Stage 8 206898 -NCIT:C4522 Stage 0 Vulvar Cancer AJCC v6 9 206899 -NCIT:C7854 Stage I Vulvar Cancer AJCC v6 9 206900 -NCIT:C6328 Stage IA Vulvar Carcinoma AJCC v6 10 206901 -NCIT:C6329 Stage IB Vulvar Carcinoma AJCC v6 10 206902 -NCIT:C9051 Stage II Vulvar Cancer AJCC v6 9 206903 -NCIT:C9052 Stage III Vulvar Cancer AJCC v6 9 206904 -NCIT:C9053 Stage IV Vulvar Cancer AJCC v6 9 206905 -NCIT:C27247 Stage IVB Vulvar Cancer AJCC v6 and v7 10 206906 -NCIT:C6330 Stage IVA Vulvar Cancer AJCC v6 10 206907 -NCIT:C9054 Recurrent Vulvar Carcinoma 8 206908 -NCIT:C174200 Recurrent Vulvar Squamous Cell Carcinoma 9 206909 -NCIT:C9055 Bartholin Gland Carcinoma 8 206910 -NCIT:C40293 Bartholin Gland Squamous Cell Carcinoma 9 206911 -NCIT:C40295 Bartholin Gland Adenoid Cystic Carcinoma 9 206912 -NCIT:C40296 Bartholin Gland Adenosquamous Carcinoma 9 206913 -NCIT:C40297 Bartholin Gland Transitional Cell Carcinoma 9 206914 -NCIT:C40298 Bartholin Gland Small Cell Neuroendocrine Carcinoma 9 206915 -NCIT:C7719 Bartholin Gland Adenocarcinoma 9 206916 -NCIT:C91203 Vulvar Cancer by AJCC v7 Stage 8 206917 -NCIT:C89445 Stage 0 Vulvar Cancer AJCC v7 9 206918 -NCIT:C89447 Stage I Vulvar Cancer AJCC v7 9 206919 -NCIT:C89448 Stage IA Vulvar Cancer AJCC v7 10 206920 -NCIT:C89449 Stage IB Vulvar Cancer AJCC v7 10 206921 -NCIT:C89451 Stage II Vulvar Cancer AJCC v7 9 206922 -NCIT:C89452 Stage III Vulvar Cancer AJCC v7 9 206923 -NCIT:C87003 Stage IIIA Vulvar Cancer AJCC v7 10 206924 -NCIT:C87004 Stage IIIB Vulvar Cancer AJCC v7 10 206925 -NCIT:C87005 Stage IIIC Vulvar Cancer AJCC v7 10 206926 -NCIT:C89453 Stage IV Vulvar Cancer AJCC v7 9 206927 -NCIT:C27247 Stage IVB Vulvar Cancer AJCC v6 and v7 10 206928 -NCIT:C89454 Stage IVA Vulvar Cancer AJCC v7 10 206929 -NCIT:C9362 Clitoral Carcinoma 8 206930 -NCIT:C9363 Labia Majora Carcinoma 8 206931 -NCIT:C9364 Labia Minora Carcinoma 8 206932 -NCIT:C4908 Ovarian Carcinoma 7 206933 -NCIT:C128081 Ovarian Cancer by FIGO Stage 8 206934 -NCIT:C128082 FIGO Stage IC1 Ovarian Cancer 9 206935 -NCIT:C128083 FIGO Stage IC2 Ovarian Cancer 9 206936 -NCIT:C128084 FIGO Stage IC3 Ovarian Cancer 9 206937 -NCIT:C128085 FIGO Stage II Ovarian Cancer 9 206938 -NCIT:C5223 Stage IIA Ovarian Cancer AJCC V6 and v7 10 206939 -NCIT:C5224 Stage IIB Ovarian Cancer AJCC v6 and v7 10 206940 -NCIT:C128086 FIGO Stage III Ovarian Cancer 9 206941 -NCIT:C128087 FIGO Stage IIIA Ovarian Cancer 10 206942 -NCIT:C128088 FIGO Stage IIIA1 Ovarian Cancer 11 206943 -NCIT:C128089 FIGO Stage IIIA1(i) Ovarian Cancer 12 206944 -NCIT:C128090 FIGO Stage IIIA1(ii) Ovarian Cancer 12 206945 -NCIT:C128091 FIGO Stage IIIA2 Ovarian Cancer 11 206946 -NCIT:C128092 FIGO Stage IIIB Ovarian Cancer 10 206947 -NCIT:C128093 FIGO Stage IIIC Ovarian Cancer 10 206948 -NCIT:C128094 FIGO Stage IVA Ovarian Cancer 9 206949 -NCIT:C128095 FIGO Stage IVB Ovarian Cancer 9 206950 -NCIT:C7829 Stage I Ovarian Cancer AJCC v6 and v7 9 206951 -NCIT:C5220 Stage IA Ovarian Cancer AJCC v6 and v7 10 206952 -NCIT:C5221 Stage IB Ovarian Cancer AJCC v6 and v7 10 206953 -NCIT:C5222 Stage IC Ovarian Cancer AJCC v6 and v7 10 206954 -NCIT:C7832 Stage IV Ovarian Cancer AJCC v6 and v7 9 206955 -NCIT:C128106 Ovarian Cancer by AJCC v6 and v7 Stage 8 206956 -NCIT:C7829 Stage I Ovarian Cancer AJCC v6 and v7 9 206957 -NCIT:C5220 Stage IA Ovarian Cancer AJCC v6 and v7 10 206958 -NCIT:C5221 Stage IB Ovarian Cancer AJCC v6 and v7 10 206959 -NCIT:C5222 Stage IC Ovarian Cancer AJCC v6 and v7 10 206960 -NCIT:C7830 Stage II Ovarian Cancer AJCC v6 and v7 9 206961 -NCIT:C5223 Stage IIA Ovarian Cancer AJCC V6 and v7 10 206962 -NCIT:C5224 Stage IIB Ovarian Cancer AJCC v6 and v7 10 206963 -NCIT:C5225 Stage IIC Ovarian Cancer AJCC v6 and v7 10 206964 -NCIT:C7831 Stage III Ovarian Cancer AJCC v6 and v7 9 206965 -NCIT:C6258 Stage IIIA Ovarian Cancer AJCC v6 and v7 10 206966 -NCIT:C6259 Stage IIIB Ovarian Cancer AJCC v6 and v7 10 206967 -NCIT:C6260 Stage IIIC Ovarian Cancer AJCC v6 and v7 10 206968 -NCIT:C7832 Stage IV Ovarian Cancer AJCC v6 and v7 9 206969 -NCIT:C139963 Ovarian Cancer by AJCC v8 Stage 8 206970 -NCIT:C139964 Stage I Ovarian Cancer AJCC v8 9 206971 -NCIT:C139965 Stage IA Ovarian Cancer AJCC v8 10 206972 -NCIT:C139966 Stage IB Ovarian Cancer AJCC v8 10 206973 -NCIT:C139967 Stage IC Ovarian Cancer AJCC v8 10 206974 -NCIT:C139968 Stage II Ovarian Cancer AJCC v8 9 206975 -NCIT:C139969 Stage IIA Ovarian Cancer AJCC v8 10 206976 -NCIT:C139970 Stage IIB Ovarian Cancer AJCC v8 10 206977 -NCIT:C139971 Stage III Ovarian Cancer AJCC v8 9 206978 -NCIT:C139972 Stage IIIA Ovarian Cancer AJCC v8 10 206979 -NCIT:C139973 Stage IIIA1 Ovarian Cancer AJCC v8 11 206980 -NCIT:C139974 Stage IIIA2 Ovarian Cancer AJCC v8 11 206981 -NCIT:C139975 Stage IIIB Ovarian Cancer AJCC v8 10 206982 -NCIT:C139976 Stage IIIC Ovarian Cancer AJCC v8 10 206983 -NCIT:C139977 Stage IV Ovarian Cancer AJCC v8 9 206984 -NCIT:C139978 Stage IVA Ovarian Cancer AJCC v8 10 206985 -NCIT:C139979 Stage IVB Ovarian Cancer AJCC v8 10 206986 -NCIT:C150091 Refractory Ovarian Carcinoma 8 206987 -NCIT:C147561 Platinum-Resistant Ovarian Carcinoma 9 206988 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 10 206989 -NCIT:C179459 Unresectable Platinum-Resistant Ovarian Carcinoma 10 206990 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 10 206991 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 11 206992 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 11 206993 -NCIT:C170968 Refractory Ovarian Adenocarcinoma 9 206994 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 10 206995 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 10 206996 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 11 206997 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 11 206998 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 10 206999 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 10 207000 -NCIT:C178671 Refractory Ovarian Seromucinous Carcinoma 9 207001 -NCIT:C178682 Refractory Ovarian Transitional Cell Carcinoma 9 207002 -NCIT:C178683 Refractory Ovarian Undifferentiated Carcinoma 9 207003 -NCIT:C178700 Platinum-Refractory Ovarian Carcinoma 9 207004 -NCIT:C179207 Refractory Ovarian Squamous Cell Carcinoma 9 207005 -NCIT:C183126 Refractory Malignant Ovarian Brenner Tumor 9 207006 -NCIT:C156064 Metastatic Ovarian Carcinoma 8 207007 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 9 207008 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 10 207009 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 11 207010 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 11 207011 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 10 207012 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 11 207013 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 11 207014 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 10 207015 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 11 207016 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 11 207017 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 10 207018 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 11 207019 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 11 207020 -NCIT:C165458 Advanced Ovarian Carcinoma 9 207021 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 10 207022 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 11 207023 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 11 207024 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 10 207025 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 10 207026 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 10 207027 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 10 207028 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 9 207029 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 10 207030 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 11 207031 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 11 207032 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 10 207033 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 9 207034 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 10 207035 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 9 207036 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 10 207037 -NCIT:C172234 Metastatic Ovarian Undifferentiated Carcinoma 9 207038 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 9 207039 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 10 207040 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 10 207041 -NCIT:C180333 Metastatic Microsatellite Stable Ovarian Carcinoma 9 207042 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 10 207043 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 9 207044 -NCIT:C27391 Metastatic Ovarian Small Cell Carcinoma, Hypercalcemic Type 9 207045 -NCIT:C159902 Platinum-Sensitive Ovarian Carcinoma 8 207046 -NCIT:C188391 Recurrent Platinum-Sensitive Ovarian Carcinoma 9 207047 -NCIT:C167073 Unresectable Ovarian Carcinoma 8 207048 -NCIT:C160781 Unresectable Ovarian Serous Adenocarcinoma 9 207049 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 10 207050 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 11 207051 -NCIT:C172235 Unresectable Ovarian Undifferentiated Carcinoma 9 207052 -NCIT:C179459 Unresectable Platinum-Resistant Ovarian Carcinoma 9 207053 -NCIT:C183245 Unresectable Ovarian Mucinous Adenocarcinoma 9 207054 -NCIT:C186273 Unresectable Ovarian Endometrioid Adenocarcinoma 9 207055 -NCIT:C171032 Ovarian Neuroendocrine Carcinoma 8 207056 -NCIT:C40440 Ovarian Small Cell Carcinoma, Pulmonary-Type 9 207057 -NCIT:C5238 Ovarian Large Cell Neuroendocrine Carcinoma 9 207058 -NCIT:C179334 Ovarian Dedifferentiated Carcinoma 8 207059 -NCIT:C180332 Microsatellite Stable Ovarian Carcinoma 8 207060 -NCIT:C180333 Metastatic Microsatellite Stable Ovarian Carcinoma 9 207061 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 10 207062 -NCIT:C27390 Ovarian Small Cell Carcinoma 8 207063 -NCIT:C40439 Ovarian Small Cell Carcinoma, Hypercalcemic Type 9 207064 -NCIT:C189334 Childhood Ovarian Small Cell Carcinoma, Hypercalcemic Type 10 207065 -NCIT:C27391 Metastatic Ovarian Small Cell Carcinoma, Hypercalcemic Type 10 207066 -NCIT:C40440 Ovarian Small Cell Carcinoma, Pulmonary-Type 9 207067 -NCIT:C36102 Hereditary Ovarian Carcinoma 8 207068 -NCIT:C148024 BRCA-Associated Ovarian Carcinoma 9 207069 -NCIT:C148025 Recurrent BRCA- Associated Ovarian Carcinoma 10 207070 -NCIT:C40090 Ovarian Seromucinous Carcinoma 8 207071 -NCIT:C178669 Recurrent Ovarian Seromucinous Carcinoma 9 207072 -NCIT:C178671 Refractory Ovarian Seromucinous Carcinoma 9 207073 -NCIT:C40093 Ovarian Squamous Cell Carcinoma 8 207074 -NCIT:C179207 Refractory Ovarian Squamous Cell Carcinoma 9 207075 -NCIT:C4270 Malignant Ovarian Brenner Tumor 8 207076 -NCIT:C153818 Recurrent Malignant Ovarian Brenner Tumor 9 207077 -NCIT:C183126 Refractory Malignant Ovarian Brenner Tumor 9 207078 -NCIT:C4509 Ovarian Undifferentiated Carcinoma 8 207079 -NCIT:C170754 Recurrent Ovarian Undifferentiated Carcinoma 9 207080 -NCIT:C172234 Metastatic Ovarian Undifferentiated Carcinoma 9 207081 -NCIT:C172235 Unresectable Ovarian Undifferentiated Carcinoma 9 207082 -NCIT:C178683 Refractory Ovarian Undifferentiated Carcinoma 9 207083 -NCIT:C5240 Ovarian Transitional Cell Carcinoma 8 207084 -NCIT:C153819 Recurrent Ovarian Transitional Cell Carcinoma 9 207085 -NCIT:C178682 Refractory Ovarian Transitional Cell Carcinoma 9 207086 -NCIT:C7700 Ovarian Adenocarcinoma 8 207087 -NCIT:C153614 Recurrent Ovarian Adenocarcinoma 9 207088 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 10 207089 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 10 207090 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 11 207091 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 11 207092 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 11 207093 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 10 207094 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 10 207095 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 11 207096 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 10 207097 -NCIT:C170968 Refractory Ovarian Adenocarcinoma 9 207098 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 10 207099 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 10 207100 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 11 207101 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 11 207102 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 10 207103 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 10 207104 -NCIT:C179208 Ovarian Signet Ring Cell Carcinoma 9 207105 -NCIT:C179321 Ovarian Mesonephric-Like Adenocarcinoma 9 207106 -NCIT:C179339 Ovarian Mixed Cell Adenocarcinoma 9 207107 -NCIT:C40078 Ovarian Clear Cell Adenocarcinoma 9 207108 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 10 207109 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 10 207110 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 11 207111 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 10 207112 -NCIT:C7980 Ovarian Clear Cell Cystadenocarcinoma 10 207113 -NCIT:C5228 Ovarian Cystadenocarcinoma 9 207114 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 10 207115 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 11 207116 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 10 207117 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 10 207118 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 11 207119 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 12 207120 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 12 207121 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 11 207122 -NCIT:C7980 Ovarian Clear Cell Cystadenocarcinoma 10 207123 -NCIT:C5243 Ovarian Mucinous Adenocarcinoma 9 207124 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 10 207125 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 10 207126 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 10 207127 -NCIT:C183245 Unresectable Ovarian Mucinous Adenocarcinoma 10 207128 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 10 207129 -NCIT:C7550 Ovarian Serous Adenocarcinoma 9 207130 -NCIT:C105555 Ovarian High Grade Serous Adenocarcinoma 10 207131 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 11 207132 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 11 207133 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 11 207134 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 207135 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 11 207136 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 207137 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 12 207138 -NCIT:C105556 Ovarian Low Grade Serous Adenocarcinoma 10 207139 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 11 207140 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 11 207141 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 10 207142 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 11 207143 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 11 207144 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 11 207145 -NCIT:C160781 Unresectable Ovarian Serous Adenocarcinoma 10 207146 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 11 207147 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 207148 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 10 207149 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 11 207150 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 12 207151 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 12 207152 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 11 207153 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 207154 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 12 207155 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 11 207156 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 12 207157 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 12 207158 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 11 207159 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 12 207160 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 207161 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 10 207162 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 11 207163 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 11 207164 -NCIT:C6256 Ovarian Serous Surface Papillary Adenocarcinoma 10 207165 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 10 207166 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 11 207167 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 12 207168 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 12 207169 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 11 207170 -NCIT:C7979 Ovarian Endometrioid Adenocarcinoma 9 207171 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 10 207172 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 10 207173 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 10 207174 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 11 207175 -NCIT:C186273 Unresectable Ovarian Endometrioid Adenocarcinoma 10 207176 -NCIT:C40061 Ovarian Endometrioid Adenocarcinoma with Squamous Differentiation 10 207177 -NCIT:C7833 Recurrent Ovarian Carcinoma 8 207178 -NCIT:C148025 Recurrent BRCA- Associated Ovarian Carcinoma 9 207179 -NCIT:C153614 Recurrent Ovarian Adenocarcinoma 9 207180 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 10 207181 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 10 207182 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 11 207183 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 11 207184 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 11 207185 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 10 207186 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 10 207187 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 11 207188 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 10 207189 -NCIT:C153818 Recurrent Malignant Ovarian Brenner Tumor 9 207190 -NCIT:C153819 Recurrent Ovarian Transitional Cell Carcinoma 9 207191 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 9 207192 -NCIT:C170754 Recurrent Ovarian Undifferentiated Carcinoma 9 207193 -NCIT:C178669 Recurrent Ovarian Seromucinous Carcinoma 9 207194 -NCIT:C188391 Recurrent Platinum-Sensitive Ovarian Carcinoma 9 207195 -NCIT:C190201 Locally Recurrent Ovarian Carcinoma 9 207196 -NCIT:C7558 Endometrial Carcinoma 7 207197 -NCIT:C114656 Endometrial Adenosquamous Carcinoma 8 207198 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 9 207199 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 9 207200 -NCIT:C126769 Endometrial Dedifferentiated Carcinoma 8 207201 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 9 207202 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 9 207203 -NCIT:C150093 Refractory Endometrial Carcinoma 8 207204 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 9 207205 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 9 207206 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 9 207207 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 9 207208 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 10 207209 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 10 207210 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 10 207211 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 10 207212 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 10 207213 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 9 207214 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 9 207215 -NCIT:C150094 Recurrent Endometrial Carcinoma 8 207216 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 9 207217 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 9 207218 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 10 207219 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 10 207220 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 10 207221 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 10 207222 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 10 207223 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 9 207224 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 9 207225 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 9 207226 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 9 207227 -NCIT:C190200 Locally Recurrent Endometrial Carcinoma 9 207228 -NCIT:C156068 Metastatic Endometrial Carcinoma 8 207229 -NCIT:C159676 Advanced Endometrial Carcinoma 9 207230 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 10 207231 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 11 207232 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 11 207233 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 10 207234 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 9 207235 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 10 207236 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 11 207237 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 10 207238 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 9 207239 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 9 207240 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 10 207241 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 9 207242 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 10 207243 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 11 207244 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 10 207245 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 11 207246 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 11 207247 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 10 207248 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 11 207249 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 11 207250 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 10 207251 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 11 207252 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 10 207253 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 10 207254 -NCIT:C171033 Endometrial Neuroendocrine Carcinoma 8 207255 -NCIT:C126772 Endometrial Large Cell Neuroendocrine Carcinoma 9 207256 -NCIT:C40155 Endometrial Small Cell Neuroendocrine Carcinoma 9 207257 -NCIT:C171610 Unresectable Endometrial Carcinoma 8 207258 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 9 207259 -NCIT:C180335 Microsatellite Stable Endometrial Carcinoma 8 207260 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 9 207261 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 10 207262 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 9 207263 -NCIT:C190680 High Grade Endometrial Carcinoma 8 207264 -NCIT:C27838 Endometrial Serous Adenocarcinoma 9 207265 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 10 207266 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 10 207267 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 10 207268 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 11 207269 -NCIT:C187374 Platinum-Sensitive Endometrial Serous Adenocarcinoma 10 207270 -NCIT:C40148 High Grade Endometrial Endometrioid Adenocarcinoma 9 207271 -NCIT:C40156 Endometrial Undifferentiated Carcinoma 9 207272 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 10 207273 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 10 207274 -NCIT:C8028 Endometrial Clear Cell Adenocarcinoma 9 207275 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 10 207276 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 10 207277 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 10 207278 -NCIT:C40154 Endometrial Transitional Cell Carcinoma 8 207279 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 9 207280 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 9 207281 -NCIT:C7359 Endometrial Adenocarcinoma 8 207282 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 9 207283 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 10 207284 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 10 207285 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 10 207286 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 10 207287 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 10 207288 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 9 207289 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 10 207290 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 10 207291 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 10 207292 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 10 207293 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 10 207294 -NCIT:C179322 Endometrial Mesonephric-Like Adenocarcinoma 9 207295 -NCIT:C180536 Endometrial Mucinous Adenocarcinoma, Intestinal-Type 9 207296 -NCIT:C180537 Endometrial Mucinous Adenocarcinoma, Gastric-Type 9 207297 -NCIT:C39749 Type II Endometrial Adenocarcinoma 9 207298 -NCIT:C27838 Endometrial Serous Adenocarcinoma 10 207299 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 11 207300 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 11 207301 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 11 207302 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 12 207303 -NCIT:C187374 Platinum-Sensitive Endometrial Serous Adenocarcinoma 11 207304 -NCIT:C40152 Serous Endometrial Intraepithelial Carcinoma 10 207305 -NCIT:C8028 Endometrial Clear Cell Adenocarcinoma 10 207306 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 11 207307 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 11 207308 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 11 207309 -NCIT:C40145 Type I Endometrial Adenocarcinoma 9 207310 -NCIT:C40144 Endometrial Mucinous Adenocarcinoma 10 207311 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 11 207312 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 11 207313 -NCIT:C40149 FIGO Grade 1 Endometrial Mucinous Adenocarcinoma 11 207314 -NCIT:C40150 FIGO Grade 2 Endometrial Mucinous Adenocarcinoma 11 207315 -NCIT:C40151 FIGO Grade 3 Endometrial Mucinous Adenocarcinoma 11 207316 -NCIT:C6287 Endometrial Endometrioid Adenocarcinoma 10 207317 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 11 207318 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 11 207319 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 11 207320 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 12 207321 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 12 207322 -NCIT:C180510 Low Grade Endometrial Endometrioid Adenocarcinoma 11 207323 -NCIT:C40146 FIGO Grade 1 Endometrial Endometrioid Adenocarcinoma 12 207324 -NCIT:C40147 FIGO Grade 2 Endometrial Endometrioid Adenocarcinoma 12 207325 -NCIT:C180512 POLE-Ultramutated Endometrial Endometrioid Adenocarcinoma 11 207326 -NCIT:C180514 Mismatch Repair-Deficient Endometrial Endometrioid Adenocarcinoma 11 207327 -NCIT:C180515 p53-Mutant Endometrial Endometrioid Adenocarcinoma 11 207328 -NCIT:C180516 No Specific Molecular Profile Endometrial Endometrioid Adenocarcinoma 11 207329 -NCIT:C27839 Endometrial Endometrioid Adenocarcinoma, Secretory Variant 11 207330 -NCIT:C27843 Endometrial Endometrioid Adenocarcinoma with Clear Cell Change 11 207331 -NCIT:C27844 Endometrial Endometrioid Adenocarcinoma with a Poorly Differentiated Carcinomatous Component 11 207332 -NCIT:C27845 Endometrial Endometrioid Adenocarcinoma with an Undifferentiated Carcinomatous Component 11 207333 -NCIT:C27846 Villoglandular Endometrial Endometrioid Adenocarcinoma 11 207334 -NCIT:C27848 Endometrial Endometrioid Adenocarcinoma, Ciliated Variant 11 207335 -NCIT:C27849 Oxyphilic Endometrial Endometrioid Adenocarcinoma 11 207336 -NCIT:C27850 Endometrial Endometrioid Adenocarcinoma with Spindled Epithelial Cells 11 207337 -NCIT:C40148 High Grade Endometrial Endometrioid Adenocarcinoma 11 207338 -NCIT:C6290 Endometrial Endometrioid Adenocarcinoma, Variant with Squamous Differentiation 11 207339 -NCIT:C40153 Endometrial Mixed Cell Adenocarcinoma 9 207340 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 10 207341 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 10 207342 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 10 207343 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 9 207344 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 10 207345 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 11 207346 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 10 207347 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 11 207348 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 11 207349 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 10 207350 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 11 207351 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 11 207352 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 10 207353 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 11 207354 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 10 207355 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 10 207356 -NCIT:C8719 Endometrial Squamous Cell Carcinoma 8 207357 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 9 207358 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 9 207359 -NCIT:C9039 Cervical Carcinoma 7 207360 -NCIT:C128045 Cervical Neuroendocrine Carcinoma 8 207361 -NCIT:C40214 Cervical Large Cell Neuroendocrine Carcinoma 9 207362 -NCIT:C7982 Cervical Small Cell Neuroendocrine Carcinoma 9 207363 -NCIT:C139733 Cervical Cancer by AJCC v8 Stage 8 207364 -NCIT:C139734 Stage I Cervical Cancer AJCC v8 9 207365 -NCIT:C139735 Stage IA Cervical Cancer AJCC v8 10 207366 -NCIT:C139736 Stage IA1 Cervical Cancer AJCC v8 11 207367 -NCIT:C139737 Stage IA2 Cervical Cancer AJCC v8 11 207368 -NCIT:C139738 Stage IB Cervical Cancer AJCC v8 10 207369 -NCIT:C139739 Stage IB1 Cervical Cancer AJCC v8 11 207370 -NCIT:C139740 Stage IB2 Cervical Cancer AJCC v8 11 207371 -NCIT:C139743 Stage II Cervical Cancer AJCC v8 9 207372 -NCIT:C139744 Stage IIA Cervical Cancer AJCC v8 10 207373 -NCIT:C139745 Stage IIA1 Cervical Cancer AJCC v8 11 207374 -NCIT:C139746 Stage IIA2 Cervical Cancer AJCC v8 11 207375 -NCIT:C139748 Stage IIB Cervical Cancer AJCC v8 10 207376 -NCIT:C139749 Stage III Cervical Cancer AJCC v8 9 207377 -NCIT:C139750 Stage IIIA Cervical Cancer AJCC v8 10 207378 -NCIT:C139752 Stage IIIB Cervical Cancer AJCC v8 10 207379 -NCIT:C139753 Stage IV Cervical Cancer AJCC v8 9 207380 -NCIT:C139754 Stage IVA Cervical Cancer AJCC v8 10 207381 -NCIT:C139755 Stage IVB Cervical Cancer AJCC v8 10 207382 -NCIT:C153387 Metastatic Cervical Carcinoma 8 207383 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 9 207384 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 10 207385 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 10 207386 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 9 207387 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 10 207388 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 11 207389 -NCIT:C156304 Advanced Cervical Adenocarcinoma 10 207390 -NCIT:C153390 Metastatic Cervical Adenosquamous Carcinoma 9 207391 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 10 207392 -NCIT:C156294 Advanced Cervical Carcinoma 9 207393 -NCIT:C156304 Advanced Cervical Adenocarcinoma 10 207394 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 10 207395 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 10 207396 -NCIT:C156295 Locally Advanced Cervical Carcinoma 9 207397 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 10 207398 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 11 207399 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 10 207400 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 11 207401 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 10 207402 -NCIT:C162225 Cervical Cancer by FIGO Stage 2018 8 207403 -NCIT:C162226 Stage I Cervical Cancer FIGO 2018 9 207404 -NCIT:C162227 Stage IA Cervical Cancer FIGO 2018 10 207405 -NCIT:C162228 Stage IA1 Cervical Cancer FIGO 2018 11 207406 -NCIT:C162229 Stage IA2 Cervical Cancer FIGO 2018 11 207407 -NCIT:C162230 Stage IB Cervical Cancer FIGO 2018 10 207408 -NCIT:C162231 Stage IB1 Cervical Cancer FIGO 2018 11 207409 -NCIT:C162232 Stage IB2 Cervical Cancer FIGO 2018 11 207410 -NCIT:C162233 Stage IB3 Cervical Cancer FIGO 2018 11 207411 -NCIT:C162234 Stage II Cervical Cancer FIGO 2018 9 207412 -NCIT:C162235 Stage IIA Cervical Cancer FIGO 2018 10 207413 -NCIT:C162236 Stage IIA1 Cervical Cancer FIGO 2018 11 207414 -NCIT:C162237 Stage IIA2 Cervical Cancer FIGO 2018 11 207415 -NCIT:C162238 Stage IIB Cervical Cancer FIGO 2018 10 207416 -NCIT:C162239 Stage III Cervical Cancer FIGO 2018 9 207417 -NCIT:C162240 Stage IIIA Cervical Cancer FIGO 2018 10 207418 -NCIT:C162241 Stage IIIB Cervical Cancer FIGO 2018 10 207419 -NCIT:C162242 Stage IIIC Cervical Cancer FIGO 2018 10 207420 -NCIT:C162243 Stage IIIC1 Cervical Cancer FIGO 2018 11 207421 -NCIT:C162244 Stage IIIC2 Cervical Cancer FIGO 2018 11 207422 -NCIT:C162245 Stage IV Cervical Cancer FIGO 2018 9 207423 -NCIT:C162246 Stage IVA Cervical Cancer FIGO 2018 10 207424 -NCIT:C162247 Stage IVB Cervical Cancer FIGO 2018 10 207425 -NCIT:C170513 Refractory Cervical Carcinoma 8 207426 -NCIT:C181034 Refractory Cervical Squamous Cell Carcinoma 9 207427 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 10 207428 -NCIT:C181036 Refractory Cervical Adenocarcinoma 9 207429 -NCIT:C174024 Unresectable Cervical Carcinoma 8 207430 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 9 207431 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 207432 -NCIT:C174025 Unresectable Cervical Squamous Cell Carcinoma 9 207433 -NCIT:C174027 Unresectable Cervical Adenosquamous Carcinoma 9 207434 -NCIT:C174029 Unresectable Cervical Adenocarcinoma 9 207435 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 207436 -NCIT:C180878 Cervical Mucoepidermoid Carcinoma 8 207437 -NCIT:C181562 Cervical Cancer by AJCC v9 Stage 8 207438 -NCIT:C181564 Stage I Cervical Cancer AJCC v9 9 207439 -NCIT:C181565 Stage IA Cervical Cancer AJCC v9 10 207440 -NCIT:C181567 Stage IA1 Cervical Cancer AJCC v9 11 207441 -NCIT:C181568 Stage IA2 Cervical Cancer AJCC v9 11 207442 -NCIT:C181570 Stage IB Cervical Cancer AJCC v9 10 207443 -NCIT:C181571 Stage IB1 Cervical Cancer AJCC v9 11 207444 -NCIT:C181576 Stage IB2 Cervical Cancer AJCC v9 11 207445 -NCIT:C181579 Stage IB3 Cervical Cancer AJCC v9 11 207446 -NCIT:C181583 Stage II Cervical Cancer AJCC v9 9 207447 -NCIT:C181584 Stage IIA Cervical Cancer AJCC v9 10 207448 -NCIT:C181586 Stage IIA1 Cervical Cancer AJCC v9 11 207449 -NCIT:C181588 Stage IIA2 Cervical Cancer AJCC v9 11 207450 -NCIT:C181591 Stage IIB Cervical Cancer AJCC v9 10 207451 -NCIT:C181592 Stage III Cervical Cancer AJCC v9 9 207452 -NCIT:C181594 Stage IIIA Cervical Cancer AJCC v9 10 207453 -NCIT:C181595 Stage IIIB Cervical Cancer AJCC v9 10 207454 -NCIT:C181596 Stage IIIC Cervical Cancer AJCC v9 10 207455 -NCIT:C181597 Stage IIIC1 Cervical Cancer AJCC v9 11 207456 -NCIT:C181598 Stage IIIC2 Cervical Cancer AJCC v9 11 207457 -NCIT:C181599 Stage IV Cervical Cancer AJCC v9 9 207458 -NCIT:C181601 Stage IVA Cervical Cancer AJCC v9 10 207459 -NCIT:C181603 Stage IVB Cervical Cancer AJCC v9 10 207460 -NCIT:C186619 Cervical Cancer by FIGO Stage 2009 8 207461 -NCIT:C186620 Stage I Cervical Cancer FIGO 2009 9 207462 -NCIT:C186621 Stage IA Cervical Cancer FIGO 2009 10 207463 -NCIT:C186622 Stage IA1 Cervical Cancer FIGO 2009 11 207464 -NCIT:C186623 Stage IA2 Cervical Cancer FIGO 2009 11 207465 -NCIT:C186624 Stage IB Cervical Cancer FIGO 2009 10 207466 -NCIT:C186625 Stage IB1 Cervical Cancer FIGO 2009 11 207467 -NCIT:C186626 Stage IB2 Cervical Cancer FIGO 2009 11 207468 -NCIT:C186627 Stage II Cervical Cancer FIGO 2009 9 207469 -NCIT:C186628 Stage IIA Cervical Cancer FIGO 2009 10 207470 -NCIT:C186629 Stage IIA1 Cervical Cancer FIGO 2009 11 207471 -NCIT:C186630 Stage IIA2 Cervical Cancer FIGO 2009 11 207472 -NCIT:C186631 Stage IIB Cervical Cancer FIGO 2009 10 207473 -NCIT:C186632 Stage III Cervical Cancer FIGO 2009 9 207474 -NCIT:C186633 Stage IIIA Cervical Cancer FIGO 2009 10 207475 -NCIT:C186634 Stage IIIB Cervical Cancer FIGO 2009 10 207476 -NCIT:C186635 Stage IV Cervical Cancer FIGO 2009 9 207477 -NCIT:C186636 Stage IVA Cervical Cancer FIGO 2009 10 207478 -NCIT:C186637 Stage IVB Cervical Cancer FIGO 2009 10 207479 -NCIT:C27675 Human Papillomavirus-Related Cervical Carcinoma 8 207480 -NCIT:C27676 Human Papillomavirus-Related Cervical Squamous Cell Carcinoma 9 207481 -NCIT:C40192 Cervical Papillary Squamous Cell Carcinoma 10 207482 -NCIT:C40191 Cervical Warty Carcinoma 11 207483 -NCIT:C40194 Cervical Squamotransitional Carcinoma 11 207484 -NCIT:C27677 Human Papillomavirus-Related Cervical Adenocarcinoma 9 207485 -NCIT:C127907 Endocervical Adenocarcinoma, Usual-Type 10 207486 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 11 207487 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 11 207488 -NCIT:C40208 Cervical Villoglandular Adenocarcinoma 11 207489 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 10 207490 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 10 207491 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 10 207492 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 10 207493 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 10 207494 -NCIT:C40213 Cervical Adenoid Basal Carcinoma 8 207495 -NCIT:C4028 Cervical Squamous Cell Carcinoma 8 207496 -NCIT:C136649 Recurrent Cervical Squamous Cell Carcinoma 9 207497 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 9 207498 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 10 207499 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 10 207500 -NCIT:C174025 Unresectable Cervical Squamous Cell Carcinoma 9 207501 -NCIT:C180839 Cervical Squamous Cell Carcinoma, Not Otherwise Specified 9 207502 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 10 207503 -NCIT:C180841 Human Papillomavirus-Independent Cervical Squamous Cell Carcinoma 9 207504 -NCIT:C181034 Refractory Cervical Squamous Cell Carcinoma 9 207505 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 10 207506 -NCIT:C27676 Human Papillomavirus-Related Cervical Squamous Cell Carcinoma 9 207507 -NCIT:C40192 Cervical Papillary Squamous Cell Carcinoma 10 207508 -NCIT:C40191 Cervical Warty Carcinoma 11 207509 -NCIT:C40194 Cervical Squamotransitional Carcinoma 11 207510 -NCIT:C36094 Early Invasive Cervical Squamous Cell Carcinoma 9 207511 -NCIT:C40187 Cervical Keratinizing Squamous Cell Carcinoma 9 207512 -NCIT:C40188 Cervical Non-Keratinizing Squamous Cell Carcinoma 9 207513 -NCIT:C40189 Cervical Basaloid Carcinoma 9 207514 -NCIT:C40190 Cervical Verrucous Carcinoma 9 207515 -NCIT:C40193 Cervical Lymphoepithelioma-Like Carcinoma 9 207516 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 9 207517 -NCIT:C4029 Cervical Adenocarcinoma 8 207518 -NCIT:C127915 Cervical Adenocarcinoma Admixed with Neuroendocrine Carcinoma 9 207519 -NCIT:C136651 Recurrent Cervical Adenocarcinoma 9 207520 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 10 207521 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 9 207522 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 10 207523 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 11 207524 -NCIT:C156304 Advanced Cervical Adenocarcinoma 10 207525 -NCIT:C174029 Unresectable Cervical Adenocarcinoma 9 207526 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 207527 -NCIT:C180848 Human Papillomavirus-Independent Cervical Adenocarcinoma 9 207528 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 10 207529 -NCIT:C40201 Cervical Serous Adenocarcinoma 10 207530 -NCIT:C40206 Human Papillomavirus-Independent Cervical Adenocarcinoma, Gastric-Type 10 207531 -NCIT:C40254 Cervical Mesonephric Adenocarcinoma 10 207532 -NCIT:C6343 Cervical Endometrioid Adenocarcinoma 10 207533 -NCIT:C6344 Human Papillomavirus-Independent Cervical Adenocarcinoma, Clear Cell-Type 10 207534 -NCIT:C180870 Cervical Adenocarcinoma, Not Otherwise Specified 9 207535 -NCIT:C181036 Refractory Cervical Adenocarcinoma 9 207536 -NCIT:C27677 Human Papillomavirus-Related Cervical Adenocarcinoma 9 207537 -NCIT:C127907 Endocervical Adenocarcinoma, Usual-Type 10 207538 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 11 207539 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 11 207540 -NCIT:C40208 Cervical Villoglandular Adenocarcinoma 11 207541 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 10 207542 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 10 207543 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 10 207544 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 10 207545 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 10 207546 -NCIT:C36095 Cervical Mucinous Adenocarcinoma 9 207547 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 10 207548 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 10 207549 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 10 207550 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 10 207551 -NCIT:C40206 Human Papillomavirus-Independent Cervical Adenocarcinoma, Gastric-Type 10 207552 -NCIT:C36096 Early Invasive Cervical Adenocarcinoma 9 207553 -NCIT:C4520 Cervical Adenocarcinoma In Situ 9 207554 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 10 207555 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 10 207556 -NCIT:C4519 Cervical Adenosquamous Carcinoma 8 207557 -NCIT:C136650 Recurrent Cervical Adenosquamous Carcinoma 9 207558 -NCIT:C153390 Metastatic Cervical Adenosquamous Carcinoma 9 207559 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 10 207560 -NCIT:C174027 Unresectable Cervical Adenosquamous Carcinoma 9 207561 -NCIT:C40212 Cervical Poorly Differentiated Adenosquamous Carcinoma 9 207562 -NCIT:C6345 Cervical Undifferentiated Carcinoma 8 207563 -NCIT:C6346 Cervical Adenoid Cystic Carcinoma 8 207564 -NCIT:C7432 AIDS-Related Cervical Carcinoma 8 207565 -NCIT:C7453 Exocervical Carcinoma 8 207566 -NCIT:C7804 Recurrent Cervical Carcinoma 8 207567 -NCIT:C136649 Recurrent Cervical Squamous Cell Carcinoma 9 207568 -NCIT:C136650 Recurrent Cervical Adenosquamous Carcinoma 9 207569 -NCIT:C136651 Recurrent Cervical Adenocarcinoma 9 207570 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 10 207571 -NCIT:C8577 Invasive Cervical Carcinoma 8 207572 -NCIT:C90493 Cervical Cancer by AJCC v6 Stage 8 207573 -NCIT:C4000 Stage 0 Cervical Cancer AJCC v6 9 207574 -NCIT:C7803 Stage II Cervical Cancer AJCC v6 9 207575 -NCIT:C6319 Stage IIA Cervical Cancer AJCC v6 10 207576 -NCIT:C6320 Stage IIB Cervical Cancer AJCC v6 and v7 10 207577 -NCIT:C9204 Stage I Cervical Cancer AJCC v6 and v7 9 207578 -NCIT:C6313 Stage IA Cervical Cancer AJCC v6 and v7 10 207579 -NCIT:C6314 Stage IA1 Cervical Cancer AJCC v6 and v7 11 207580 -NCIT:C6315 Stage IA2 Cervical Cancer AJCC v6 and v7 11 207581 -NCIT:C6316 Stage IB Cervical Cancer AJCC v6 and v7 10 207582 -NCIT:C6317 Stage IB1 Cervical Cancer AJCC v6 and v7 11 207583 -NCIT:C6318 Stage IB2 Cervical Cancer AJCC v6 and v7 11 207584 -NCIT:C9205 Stage III Cervical Cancer AJCC v6 and v7 9 207585 -NCIT:C6321 Stage IIIB Cervical Cancer AJCC v6 and v7 10 207586 -NCIT:C6322 Stage IIIA Cervical Cancer AJCC v6 and v7 10 207587 -NCIT:C9206 Stage IV Cervical Cancer AJCC v6 and v7 9 207588 -NCIT:C6323 Stage IVA Cervical Cancer AJCC v6 and v7 10 207589 -NCIT:C6324 Stage IVB Cervical Cancer AJCC v6 and v7 10 207590 -NCIT:C91208 Cervical Cancer by AJCC v7 Stage 8 207591 -NCIT:C89550 Stage 0 Cervical Cancer AJCC v7 9 207592 -NCIT:C4520 Cervical Adenocarcinoma In Situ 10 207593 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 11 207594 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 11 207595 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 10 207596 -NCIT:C89551 Stage II Cervical Cancer AJCC v7 9 207597 -NCIT:C6320 Stage IIB Cervical Cancer AJCC v6 and v7 10 207598 -NCIT:C89552 Stage IIA Cervical Cancer AJCC v7 10 207599 -NCIT:C95172 Stage IIA1 Cervical Cancer AJCC v7 11 207600 -NCIT:C95173 Stage IIA2 Cervical Cancer AJCC v7 11 207601 -NCIT:C9204 Stage I Cervical Cancer AJCC v6 and v7 9 207602 -NCIT:C6313 Stage IA Cervical Cancer AJCC v6 and v7 10 207603 -NCIT:C6314 Stage IA1 Cervical Cancer AJCC v6 and v7 11 207604 -NCIT:C6315 Stage IA2 Cervical Cancer AJCC v6 and v7 11 207605 -NCIT:C6316 Stage IB Cervical Cancer AJCC v6 and v7 10 207606 -NCIT:C6317 Stage IB1 Cervical Cancer AJCC v6 and v7 11 207607 -NCIT:C6318 Stage IB2 Cervical Cancer AJCC v6 and v7 11 207608 -NCIT:C9205 Stage III Cervical Cancer AJCC v6 and v7 9 207609 -NCIT:C6321 Stage IIIB Cervical Cancer AJCC v6 and v7 10 207610 -NCIT:C6322 Stage IIIA Cervical Cancer AJCC v6 and v7 10 207611 -NCIT:C9206 Stage IV Cervical Cancer AJCC v6 and v7 9 207612 -NCIT:C6323 Stage IVA Cervical Cancer AJCC v6 and v7 10 207613 -NCIT:C6324 Stage IVB Cervical Cancer AJCC v6 and v7 10 207614 -NCIT:C3552 Malignant Uterine Neoplasm 6 207615 -NCIT:C3556 Malignant Uterine Corpus Neoplasm 7 207616 -NCIT:C127072 Uterine Corpus Malignant PEComa 8 207617 -NCIT:C188074 Extramedullary Disease in Plasma Cell Myeloma Involving the Uterine Corpus 8 207618 -NCIT:C27246 Uterine Corpus Choriocarcinoma 8 207619 -NCIT:C27815 Malignant Endometrial Neoplasm 8 207620 -NCIT:C181910 Endometrial Mucosa-Associated Lymphoid Tissue Lymphoma 9 207621 -NCIT:C40219 Uterine Corpus Endometrial Stromal Sarcoma 9 207622 -NCIT:C126998 Uterine Corpus High Grade Endometrial Stromal Sarcoma 10 207623 -NCIT:C139882 Uterine Corpus Endometrial Stromal Sarcoma by AJCC v8 Stage 10 207624 -NCIT:C139883 Stage I Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 207625 -NCIT:C139884 Stage IA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 207626 -NCIT:C139885 Stage IB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 207627 -NCIT:C139886 Stage II Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 207628 -NCIT:C139887 Stage III Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 207629 -NCIT:C139888 Stage IIIA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 207630 -NCIT:C139889 Stage IIIB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 207631 -NCIT:C139890 Stage IIIC Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 207632 -NCIT:C139891 Stage IV Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 207633 -NCIT:C139892 Stage IVA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 207634 -NCIT:C139893 Stage IVB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 207635 -NCIT:C40223 Uterine Corpus Low Grade Endometrial Stromal Sarcoma 10 207636 -NCIT:C7558 Endometrial Carcinoma 9 207637 -NCIT:C114656 Endometrial Adenosquamous Carcinoma 10 207638 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 11 207639 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 11 207640 -NCIT:C126769 Endometrial Dedifferentiated Carcinoma 10 207641 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 11 207642 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 11 207643 -NCIT:C150093 Refractory Endometrial Carcinoma 10 207644 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 11 207645 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 11 207646 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 11 207647 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 11 207648 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 12 207649 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 12 207650 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 12 207651 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 12 207652 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 12 207653 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 11 207654 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 11 207655 -NCIT:C150094 Recurrent Endometrial Carcinoma 10 207656 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 11 207657 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 11 207658 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 12 207659 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 12 207660 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 12 207661 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 12 207662 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 12 207663 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 11 207664 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 11 207665 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 11 207666 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 11 207667 -NCIT:C190200 Locally Recurrent Endometrial Carcinoma 11 207668 -NCIT:C156068 Metastatic Endometrial Carcinoma 10 207669 -NCIT:C159676 Advanced Endometrial Carcinoma 11 207670 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 12 207671 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 207672 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 207673 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 12 207674 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 11 207675 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 12 207676 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 207677 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 12 207678 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 11 207679 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 11 207680 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 12 207681 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 11 207682 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 12 207683 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 207684 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 12 207685 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 207686 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 207687 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 12 207688 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 207689 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 207690 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 12 207691 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 207692 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 12 207693 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 12 207694 -NCIT:C171033 Endometrial Neuroendocrine Carcinoma 10 207695 -NCIT:C126772 Endometrial Large Cell Neuroendocrine Carcinoma 11 207696 -NCIT:C40155 Endometrial Small Cell Neuroendocrine Carcinoma 11 207697 -NCIT:C171610 Unresectable Endometrial Carcinoma 10 207698 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 11 207699 -NCIT:C180335 Microsatellite Stable Endometrial Carcinoma 10 207700 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 11 207701 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 12 207702 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 11 207703 -NCIT:C190680 High Grade Endometrial Carcinoma 10 207704 -NCIT:C27838 Endometrial Serous Adenocarcinoma 11 207705 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 12 207706 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 12 207707 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 12 207708 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 207709 -NCIT:C187374 Platinum-Sensitive Endometrial Serous Adenocarcinoma 12 207710 -NCIT:C40148 High Grade Endometrial Endometrioid Adenocarcinoma 11 207711 -NCIT:C40156 Endometrial Undifferentiated Carcinoma 11 207712 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 12 207713 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 12 207714 -NCIT:C8028 Endometrial Clear Cell Adenocarcinoma 11 207715 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 12 207716 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 12 207717 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 12 207718 -NCIT:C40154 Endometrial Transitional Cell Carcinoma 10 207719 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 11 207720 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 11 207721 -NCIT:C7359 Endometrial Adenocarcinoma 10 207722 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 11 207723 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 12 207724 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 12 207725 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 12 207726 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 12 207727 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 12 207728 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 11 207729 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 12 207730 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 12 207731 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 12 207732 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 12 207733 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 12 207734 -NCIT:C179322 Endometrial Mesonephric-Like Adenocarcinoma 11 207735 -NCIT:C180536 Endometrial Mucinous Adenocarcinoma, Intestinal-Type 11 207736 -NCIT:C180537 Endometrial Mucinous Adenocarcinoma, Gastric-Type 11 207737 -NCIT:C39749 Type II Endometrial Adenocarcinoma 11 207738 -NCIT:C27838 Endometrial Serous Adenocarcinoma 12 207739 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 13 207740 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 13 207741 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 13 207742 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 14 207743 -NCIT:C187374 Platinum-Sensitive Endometrial Serous Adenocarcinoma 13 207744 -NCIT:C40152 Serous Endometrial Intraepithelial Carcinoma 12 207745 -NCIT:C8028 Endometrial Clear Cell Adenocarcinoma 12 207746 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 13 207747 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 13 207748 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 13 207749 -NCIT:C40145 Type I Endometrial Adenocarcinoma 11 207750 -NCIT:C40144 Endometrial Mucinous Adenocarcinoma 12 207751 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 13 207752 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 13 207753 -NCIT:C40149 FIGO Grade 1 Endometrial Mucinous Adenocarcinoma 13 207754 -NCIT:C40150 FIGO Grade 2 Endometrial Mucinous Adenocarcinoma 13 207755 -NCIT:C40151 FIGO Grade 3 Endometrial Mucinous Adenocarcinoma 13 207756 -NCIT:C6287 Endometrial Endometrioid Adenocarcinoma 12 207757 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 13 207758 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 13 207759 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 13 207760 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 14 207761 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 14 207762 -NCIT:C180510 Low Grade Endometrial Endometrioid Adenocarcinoma 13 207763 -NCIT:C40146 FIGO Grade 1 Endometrial Endometrioid Adenocarcinoma 14 207764 -NCIT:C40147 FIGO Grade 2 Endometrial Endometrioid Adenocarcinoma 14 207765 -NCIT:C180512 POLE-Ultramutated Endometrial Endometrioid Adenocarcinoma 13 207766 -NCIT:C180514 Mismatch Repair-Deficient Endometrial Endometrioid Adenocarcinoma 13 207767 -NCIT:C180515 p53-Mutant Endometrial Endometrioid Adenocarcinoma 13 207768 -NCIT:C180516 No Specific Molecular Profile Endometrial Endometrioid Adenocarcinoma 13 207769 -NCIT:C27839 Endometrial Endometrioid Adenocarcinoma, Secretory Variant 13 207770 -NCIT:C27843 Endometrial Endometrioid Adenocarcinoma with Clear Cell Change 13 207771 -NCIT:C27844 Endometrial Endometrioid Adenocarcinoma with a Poorly Differentiated Carcinomatous Component 13 207772 -NCIT:C27845 Endometrial Endometrioid Adenocarcinoma with an Undifferentiated Carcinomatous Component 13 207773 -NCIT:C27846 Villoglandular Endometrial Endometrioid Adenocarcinoma 13 207774 -NCIT:C27848 Endometrial Endometrioid Adenocarcinoma, Ciliated Variant 13 207775 -NCIT:C27849 Oxyphilic Endometrial Endometrioid Adenocarcinoma 13 207776 -NCIT:C27850 Endometrial Endometrioid Adenocarcinoma with Spindled Epithelial Cells 13 207777 -NCIT:C40148 High Grade Endometrial Endometrioid Adenocarcinoma 13 207778 -NCIT:C6290 Endometrial Endometrioid Adenocarcinoma, Variant with Squamous Differentiation 13 207779 -NCIT:C40153 Endometrial Mixed Cell Adenocarcinoma 11 207780 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 12 207781 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 12 207782 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 12 207783 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 11 207784 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 12 207785 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 207786 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 12 207787 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 207788 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 207789 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 12 207790 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 207791 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 207792 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 12 207793 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 207794 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 12 207795 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 12 207796 -NCIT:C8719 Endometrial Squamous Cell Carcinoma 10 207797 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 11 207798 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 11 207799 -NCIT:C61574 Uterine Corpus Cancer 8 207800 -NCIT:C139801 Uterine Corpus Cancer by AJCC v8 Stage 9 207801 -NCIT:C139802 Stage I Uterine Corpus Cancer AJCC v8 10 207802 -NCIT:C139803 Stage IA Uterine Corpus Cancer AJCC v8 11 207803 -NCIT:C139804 Stage IB Uterine Corpus Cancer AJCC v8 11 207804 -NCIT:C139805 Stage II Uterine Corpus Cancer AJCC v8 10 207805 -NCIT:C139806 Stage III Uterine Corpus Cancer AJCC v8 10 207806 -NCIT:C139807 Stage IIIA Uterine Corpus Cancer AJCC v8 11 207807 -NCIT:C139808 Stage IIIB Uterine Corpus Cancer AJCC v8 11 207808 -NCIT:C139809 Stage IIIC Uterine Corpus Cancer AJCC v8 11 207809 -NCIT:C139810 Stage IIIC1 Uterine Corpus Cancer AJCC v8 12 207810 -NCIT:C139811 Stage IIIC2 Uterine Corpus Cancer AJCC v8 12 207811 -NCIT:C139812 Stage IV Uterine Corpus Cancer AJCC v8 10 207812 -NCIT:C139813 Stage IVA Uterine Corpus Cancer AJCC v8 11 207813 -NCIT:C139814 Stage IVB Uterine Corpus Cancer AJCC v8 11 207814 -NCIT:C150092 Refractory Uterine Corpus Cancer 9 207815 -NCIT:C150093 Refractory Endometrial Carcinoma 10 207816 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 11 207817 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 11 207818 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 11 207819 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 11 207820 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 12 207821 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 12 207822 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 12 207823 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 12 207824 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 12 207825 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 11 207826 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 11 207827 -NCIT:C158381 Refractory Uterine Corpus Carcinosarcoma 10 207828 -NCIT:C172450 Advanced Uterine Corpus Cancer 9 207829 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 10 207830 -NCIT:C159676 Advanced Endometrial Carcinoma 10 207831 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 11 207832 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 12 207833 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 12 207834 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 11 207835 -NCIT:C7558 Endometrial Carcinoma 9 207836 -NCIT:C114656 Endometrial Adenosquamous Carcinoma 10 207837 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 11 207838 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 11 207839 -NCIT:C126769 Endometrial Dedifferentiated Carcinoma 10 207840 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 11 207841 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 11 207842 -NCIT:C150093 Refractory Endometrial Carcinoma 10 207843 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 11 207844 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 11 207845 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 11 207846 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 11 207847 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 12 207848 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 12 207849 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 12 207850 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 12 207851 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 12 207852 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 11 207853 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 11 207854 -NCIT:C150094 Recurrent Endometrial Carcinoma 10 207855 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 11 207856 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 11 207857 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 12 207858 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 12 207859 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 12 207860 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 12 207861 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 12 207862 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 11 207863 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 11 207864 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 11 207865 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 11 207866 -NCIT:C190200 Locally Recurrent Endometrial Carcinoma 11 207867 -NCIT:C156068 Metastatic Endometrial Carcinoma 10 207868 -NCIT:C159676 Advanced Endometrial Carcinoma 11 207869 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 12 207870 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 207871 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 207872 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 12 207873 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 11 207874 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 12 207875 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 207876 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 12 207877 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 11 207878 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 11 207879 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 12 207880 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 11 207881 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 12 207882 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 207883 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 12 207884 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 207885 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 207886 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 12 207887 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 207888 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 207889 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 12 207890 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 207891 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 12 207892 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 12 207893 -NCIT:C171033 Endometrial Neuroendocrine Carcinoma 10 207894 -NCIT:C126772 Endometrial Large Cell Neuroendocrine Carcinoma 11 207895 -NCIT:C40155 Endometrial Small Cell Neuroendocrine Carcinoma 11 207896 -NCIT:C171610 Unresectable Endometrial Carcinoma 10 207897 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 11 207898 -NCIT:C180335 Microsatellite Stable Endometrial Carcinoma 10 207899 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 11 207900 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 12 207901 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 11 207902 -NCIT:C190680 High Grade Endometrial Carcinoma 10 207903 -NCIT:C27838 Endometrial Serous Adenocarcinoma 11 207904 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 12 207905 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 12 207906 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 12 207907 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 207908 -NCIT:C187374 Platinum-Sensitive Endometrial Serous Adenocarcinoma 12 207909 -NCIT:C40148 High Grade Endometrial Endometrioid Adenocarcinoma 11 207910 -NCIT:C40156 Endometrial Undifferentiated Carcinoma 11 207911 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 12 207912 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 12 207913 -NCIT:C8028 Endometrial Clear Cell Adenocarcinoma 11 207914 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 12 207915 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 12 207916 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 12 207917 -NCIT:C40154 Endometrial Transitional Cell Carcinoma 10 207918 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 11 207919 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 11 207920 -NCIT:C7359 Endometrial Adenocarcinoma 10 207921 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 11 207922 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 12 207923 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 12 207924 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 12 207925 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 12 207926 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 12 207927 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 11 207928 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 12 207929 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 12 207930 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 12 207931 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 12 207932 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 12 207933 -NCIT:C179322 Endometrial Mesonephric-Like Adenocarcinoma 11 207934 -NCIT:C180536 Endometrial Mucinous Adenocarcinoma, Intestinal-Type 11 207935 -NCIT:C180537 Endometrial Mucinous Adenocarcinoma, Gastric-Type 11 207936 -NCIT:C39749 Type II Endometrial Adenocarcinoma 11 207937 -NCIT:C27838 Endometrial Serous Adenocarcinoma 12 207938 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 13 207939 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 13 207940 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 13 207941 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 14 207942 -NCIT:C187374 Platinum-Sensitive Endometrial Serous Adenocarcinoma 13 207943 -NCIT:C40152 Serous Endometrial Intraepithelial Carcinoma 12 207944 -NCIT:C8028 Endometrial Clear Cell Adenocarcinoma 12 207945 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 13 207946 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 13 207947 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 13 207948 -NCIT:C40145 Type I Endometrial Adenocarcinoma 11 207949 -NCIT:C40144 Endometrial Mucinous Adenocarcinoma 12 207950 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 13 207951 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 13 207952 -NCIT:C40149 FIGO Grade 1 Endometrial Mucinous Adenocarcinoma 13 207953 -NCIT:C40150 FIGO Grade 2 Endometrial Mucinous Adenocarcinoma 13 207954 -NCIT:C40151 FIGO Grade 3 Endometrial Mucinous Adenocarcinoma 13 207955 -NCIT:C6287 Endometrial Endometrioid Adenocarcinoma 12 207956 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 13 207957 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 13 207958 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 13 207959 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 14 207960 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 14 207961 -NCIT:C180510 Low Grade Endometrial Endometrioid Adenocarcinoma 13 207962 -NCIT:C40146 FIGO Grade 1 Endometrial Endometrioid Adenocarcinoma 14 207963 -NCIT:C40147 FIGO Grade 2 Endometrial Endometrioid Adenocarcinoma 14 207964 -NCIT:C180512 POLE-Ultramutated Endometrial Endometrioid Adenocarcinoma 13 207965 -NCIT:C180514 Mismatch Repair-Deficient Endometrial Endometrioid Adenocarcinoma 13 207966 -NCIT:C180515 p53-Mutant Endometrial Endometrioid Adenocarcinoma 13 207967 -NCIT:C180516 No Specific Molecular Profile Endometrial Endometrioid Adenocarcinoma 13 207968 -NCIT:C27839 Endometrial Endometrioid Adenocarcinoma, Secretory Variant 13 207969 -NCIT:C27843 Endometrial Endometrioid Adenocarcinoma with Clear Cell Change 13 207970 -NCIT:C27844 Endometrial Endometrioid Adenocarcinoma with a Poorly Differentiated Carcinomatous Component 13 207971 -NCIT:C27845 Endometrial Endometrioid Adenocarcinoma with an Undifferentiated Carcinomatous Component 13 207972 -NCIT:C27846 Villoglandular Endometrial Endometrioid Adenocarcinoma 13 207973 -NCIT:C27848 Endometrial Endometrioid Adenocarcinoma, Ciliated Variant 13 207974 -NCIT:C27849 Oxyphilic Endometrial Endometrioid Adenocarcinoma 13 207975 -NCIT:C27850 Endometrial Endometrioid Adenocarcinoma with Spindled Epithelial Cells 13 207976 -NCIT:C40148 High Grade Endometrial Endometrioid Adenocarcinoma 13 207977 -NCIT:C6290 Endometrial Endometrioid Adenocarcinoma, Variant with Squamous Differentiation 13 207978 -NCIT:C40153 Endometrial Mixed Cell Adenocarcinoma 11 207979 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 12 207980 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 12 207981 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 12 207982 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 11 207983 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 12 207984 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 207985 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 12 207986 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 13 207987 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 207988 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 12 207989 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 13 207990 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 207991 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 12 207992 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 13 207993 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 12 207994 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 12 207995 -NCIT:C8719 Endometrial Squamous Cell Carcinoma 10 207996 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 11 207997 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 11 207998 -NCIT:C90494 Uterine Corpus Cancer by AJCC v6 Stage 9 207999 -NCIT:C4006 Stage IV Uterine Corpus Cancer AJCC v6 10 208000 -NCIT:C9071 Stage 0 Uterine Corpus Cancer AJCC v6 10 208001 -NCIT:C9207 Stage I Uterine Corpus Cancer AJCC v6 10 208002 -NCIT:C6303 Stage IC Uterine Corpus Cancer AJCC v6 11 208003 -NCIT:C9208 Stage II Uterine Corpus Cancer AJCC v6 10 208004 -NCIT:C6304 Stage IIA Uterine Corpus Cancer AJCC v6 11 208005 -NCIT:C6305 Stage IIB Uterine Corpus Cancer AJCC v6 11 208006 -NCIT:C9209 Stage III Uterine Corpus Cancer AJCC v6 10 208007 -NCIT:C9072 Recurrent Uterine Corpus Cancer 9 208008 -NCIT:C150094 Recurrent Endometrial Carcinoma 10 208009 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 11 208010 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 11 208011 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 12 208012 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 12 208013 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 12 208014 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 12 208015 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 12 208016 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 11 208017 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 11 208018 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 11 208019 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 11 208020 -NCIT:C190200 Locally Recurrent Endometrial Carcinoma 11 208021 -NCIT:C155818 Recurrent Uterine Corpus Carcinosarcoma 10 208022 -NCIT:C91218 Uterine Corpus Cancer by AJCC v7 Stage 9 208023 -NCIT:C89632 Stage 0 Uterine Corpus Cancer AJCC v7 10 208024 -NCIT:C89633 Stage I Uterine Corpus Cancer AJCC v7 10 208025 -NCIT:C6301 Stage IA Uterine Corpus Cancer AJCC v7 11 208026 -NCIT:C6302 Stage IB Uterine Corpus Cancer AJCC v7 11 208027 -NCIT:C89634 Stage II Uterine Corpus Cancer AJCC v7 10 208028 -NCIT:C89635 Stage III Uterine Corpus Cancer AJCC v7 10 208029 -NCIT:C6306 Stage IIIA Uterine Corpus Cancer AJCC v7 11 208030 -NCIT:C6307 Stage IIIB Uterine Corpus Cancer AJCC v7 11 208031 -NCIT:C6308 Stage IIIC Uterine Corpus Cancer AJCC v7 11 208032 -NCIT:C95174 Stage IIIC1 Uterine Corpus Cancer AJCC v7 12 208033 -NCIT:C95176 Stage IIIC2 Uterine Corpus Cancer AJCC v7 12 208034 -NCIT:C89636 Stage IV Uterine Corpus Cancer AJCC v7 10 208035 -NCIT:C6309 Stage IVA Uterine Corpus Cancer AJCC v7 11 208036 -NCIT:C6310 Stage IVB Uterine Corpus Cancer AJCC v7 11 208037 -NCIT:C9180 Uterine Corpus Carcinosarcoma 9 208038 -NCIT:C155818 Recurrent Uterine Corpus Carcinosarcoma 10 208039 -NCIT:C158381 Refractory Uterine Corpus Carcinosarcoma 10 208040 -NCIT:C170931 Metastatic Uterine Corpus Carcinosarcoma 10 208041 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 11 208042 -NCIT:C6311 Malignant Uterine Corpus Mixed Epithelial and Mesenchymal Neoplasm 8 208043 -NCIT:C40182 Uterine Corpus Carcinofibroma 9 208044 -NCIT:C6336 Uterine Corpus Adenosarcoma 9 208045 -NCIT:C139894 Uterine Corpus Adenosarcoma by AJCC v8 Stage 10 208046 -NCIT:C139895 Stage I Uterine Corpus Adenosarcoma AJCC v8 11 208047 -NCIT:C139896 Stage IA Uterine Corpus Adenosarcoma AJCC v8 12 208048 -NCIT:C139897 Stage IB Uterine Corpus Adenosarcoma AJCC v8 12 208049 -NCIT:C139898 Stage IC Uterine Corpus Adenosarcoma AJCC v8 12 208050 -NCIT:C139899 Stage II Uterine Corpus Adenosarcoma AJCC v8 11 208051 -NCIT:C139900 Stage III Uterine Corpus Adenosarcoma AJCC v8 11 208052 -NCIT:C139901 Stage IIIA Uterine Corpus Adenosarcoma AJCC v8 12 208053 -NCIT:C139902 Stage IIIB Uterine Corpus Adenosarcoma AJCC v8 12 208054 -NCIT:C139903 Stage IIIC Uterine Corpus Adenosarcoma AJCC v8 12 208055 -NCIT:C139904 Stage IV Uterine Corpus Adenosarcoma AJCC v8 11 208056 -NCIT:C139905 Stage IVA Uterine Corpus Adenosarcoma AJCC v8 12 208057 -NCIT:C139906 Stage IVB Uterine Corpus Adenosarcoma AJCC v8 12 208058 -NCIT:C9180 Uterine Corpus Carcinosarcoma 9 208059 -NCIT:C155818 Recurrent Uterine Corpus Carcinosarcoma 10 208060 -NCIT:C158381 Refractory Uterine Corpus Carcinosarcoma 10 208061 -NCIT:C170931 Metastatic Uterine Corpus Carcinosarcoma 10 208062 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 11 208063 -NCIT:C6339 Uterine Corpus Sarcoma 8 208064 -NCIT:C127058 Uterine Corpus Rhabdomyosarcoma 9 208065 -NCIT:C136708 Uterine Corpus Sarcoma by AJCC v7 Stage 9 208066 -NCIT:C8258 Stage I Uterine Sarcoma AJCC v7 10 208067 -NCIT:C87132 Stage IA Uterine Sarcoma AJCC v7 11 208068 -NCIT:C87133 Stage IB Uterine Sarcoma AJCC v7 11 208069 -NCIT:C87134 Stage IC Uterine Sarcoma AJCC v7 11 208070 -NCIT:C8259 Stage II Uterine Sarcoma AJCC v7 10 208071 -NCIT:C115130 Stage IIA Uterine Sarcoma AJCC v7 11 208072 -NCIT:C115131 Stage IIB Uterine Sarcoma AJCC v7 11 208073 -NCIT:C8260 Stage III Uterine Sarcoma AJCC v7 10 208074 -NCIT:C87135 Stage IIIA Uterine Sarcoma AJCC v7 11 208075 -NCIT:C87137 Stage IIIB Uterine Sarcoma AJCC v7 11 208076 -NCIT:C87138 Stage IIIC Uterine Sarcoma AJCC v7 11 208077 -NCIT:C9179 Stage IV Uterine Sarcoma AJCC v7 10 208078 -NCIT:C87140 Stage IVA Uterine Sarcoma AJCC v7 11 208079 -NCIT:C87144 Stage IVB Uterine Sarcoma AJCC v7 11 208080 -NCIT:C139869 Uterine Corpus Sarcoma by AJCC v8 Stage 9 208081 -NCIT:C139870 Uterine Corpus Leiomyosarcoma by AJCC v8 Stage 10 208082 -NCIT:C139871 Stage I Uterine Corpus Leiomyosarcoma AJCC v8 11 208083 -NCIT:C139872 Stage IA Uterine Corpus Leiomyosarcoma AJCC v8 12 208084 -NCIT:C139873 Stage IB Uterine Corpus Leiomyosarcoma AJCC v8 12 208085 -NCIT:C139874 Stage II Uterine Corpus Leiomyosarcoma AJCC v8 11 208086 -NCIT:C139875 Stage III Uterine Corpus Leiomyosarcoma AJCC v8 11 208087 -NCIT:C139876 Stage IIIA Uterine Corpus Leiomyosarcoma AJCC v8 12 208088 -NCIT:C139877 Stage IIIB Uterine Corpus Leiomyosarcoma AJCC v8 12 208089 -NCIT:C139878 Stage IIIC Uterine Corpus Leiomyosarcoma AJCC v8 12 208090 -NCIT:C139879 Stage IV Uterine Corpus Leiomyosarcoma AJCC v8 11 208091 -NCIT:C139880 Stage IVA Uterine Corpus Leiomyosarcoma AJCC v8 12 208092 -NCIT:C139881 Stage IVB Uterine Corpus Leiomyosarcoma AJCC v8 12 208093 -NCIT:C139882 Uterine Corpus Endometrial Stromal Sarcoma by AJCC v8 Stage 10 208094 -NCIT:C139883 Stage I Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 208095 -NCIT:C139884 Stage IA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 208096 -NCIT:C139885 Stage IB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 208097 -NCIT:C139886 Stage II Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 208098 -NCIT:C139887 Stage III Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 208099 -NCIT:C139888 Stage IIIA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 208100 -NCIT:C139889 Stage IIIB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 208101 -NCIT:C139890 Stage IIIC Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 208102 -NCIT:C139891 Stage IV Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 208103 -NCIT:C139892 Stage IVA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 208104 -NCIT:C139893 Stage IVB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 208105 -NCIT:C139894 Uterine Corpus Adenosarcoma by AJCC v8 Stage 10 208106 -NCIT:C139895 Stage I Uterine Corpus Adenosarcoma AJCC v8 11 208107 -NCIT:C139896 Stage IA Uterine Corpus Adenosarcoma AJCC v8 12 208108 -NCIT:C139897 Stage IB Uterine Corpus Adenosarcoma AJCC v8 12 208109 -NCIT:C139898 Stage IC Uterine Corpus Adenosarcoma AJCC v8 12 208110 -NCIT:C139899 Stage II Uterine Corpus Adenosarcoma AJCC v8 11 208111 -NCIT:C139900 Stage III Uterine Corpus Adenosarcoma AJCC v8 11 208112 -NCIT:C139901 Stage IIIA Uterine Corpus Adenosarcoma AJCC v8 12 208113 -NCIT:C139902 Stage IIIB Uterine Corpus Adenosarcoma AJCC v8 12 208114 -NCIT:C139903 Stage IIIC Uterine Corpus Adenosarcoma AJCC v8 12 208115 -NCIT:C139904 Stage IV Uterine Corpus Adenosarcoma AJCC v8 11 208116 -NCIT:C139905 Stage IVA Uterine Corpus Adenosarcoma AJCC v8 12 208117 -NCIT:C139906 Stage IVB Uterine Corpus Adenosarcoma AJCC v8 12 208118 -NCIT:C180546 Uterine Corpus Central Primitive Neuroectodermal Tumor 9 208119 -NCIT:C190009 Metastatic Uterine Corpus Sarcoma 9 208120 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 10 208121 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 11 208122 -NCIT:C190016 Unresectable Uterine Corpus Sarcoma 9 208123 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 10 208124 -NCIT:C40219 Uterine Corpus Endometrial Stromal Sarcoma 9 208125 -NCIT:C126998 Uterine Corpus High Grade Endometrial Stromal Sarcoma 10 208126 -NCIT:C139882 Uterine Corpus Endometrial Stromal Sarcoma by AJCC v8 Stage 10 208127 -NCIT:C139883 Stage I Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 208128 -NCIT:C139884 Stage IA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 208129 -NCIT:C139885 Stage IB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 208130 -NCIT:C139886 Stage II Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 208131 -NCIT:C139887 Stage III Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 208132 -NCIT:C139888 Stage IIIA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 208133 -NCIT:C139889 Stage IIIB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 208134 -NCIT:C139890 Stage IIIC Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 208135 -NCIT:C139891 Stage IV Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 11 208136 -NCIT:C139892 Stage IVA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 208137 -NCIT:C139893 Stage IVB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 12 208138 -NCIT:C40223 Uterine Corpus Low Grade Endometrial Stromal Sarcoma 10 208139 -NCIT:C6336 Uterine Corpus Adenosarcoma 9 208140 -NCIT:C139894 Uterine Corpus Adenosarcoma by AJCC v8 Stage 10 208141 -NCIT:C139895 Stage I Uterine Corpus Adenosarcoma AJCC v8 11 208142 -NCIT:C139896 Stage IA Uterine Corpus Adenosarcoma AJCC v8 12 208143 -NCIT:C139897 Stage IB Uterine Corpus Adenosarcoma AJCC v8 12 208144 -NCIT:C139898 Stage IC Uterine Corpus Adenosarcoma AJCC v8 12 208145 -NCIT:C139899 Stage II Uterine Corpus Adenosarcoma AJCC v8 11 208146 -NCIT:C139900 Stage III Uterine Corpus Adenosarcoma AJCC v8 11 208147 -NCIT:C139901 Stage IIIA Uterine Corpus Adenosarcoma AJCC v8 12 208148 -NCIT:C139902 Stage IIIB Uterine Corpus Adenosarcoma AJCC v8 12 208149 -NCIT:C139903 Stage IIIC Uterine Corpus Adenosarcoma AJCC v8 12 208150 -NCIT:C139904 Stage IV Uterine Corpus Adenosarcoma AJCC v8 11 208151 -NCIT:C139905 Stage IVA Uterine Corpus Adenosarcoma AJCC v8 12 208152 -NCIT:C139906 Stage IVB Uterine Corpus Adenosarcoma AJCC v8 12 208153 -NCIT:C6340 Uterine Corpus Leiomyosarcoma 9 208154 -NCIT:C139870 Uterine Corpus Leiomyosarcoma by AJCC v8 Stage 10 208155 -NCIT:C139871 Stage I Uterine Corpus Leiomyosarcoma AJCC v8 11 208156 -NCIT:C139872 Stage IA Uterine Corpus Leiomyosarcoma AJCC v8 12 208157 -NCIT:C139873 Stage IB Uterine Corpus Leiomyosarcoma AJCC v8 12 208158 -NCIT:C139874 Stage II Uterine Corpus Leiomyosarcoma AJCC v8 11 208159 -NCIT:C139875 Stage III Uterine Corpus Leiomyosarcoma AJCC v8 11 208160 -NCIT:C139876 Stage IIIA Uterine Corpus Leiomyosarcoma AJCC v8 12 208161 -NCIT:C139877 Stage IIIB Uterine Corpus Leiomyosarcoma AJCC v8 12 208162 -NCIT:C139878 Stage IIIC Uterine Corpus Leiomyosarcoma AJCC v8 12 208163 -NCIT:C139879 Stage IV Uterine Corpus Leiomyosarcoma AJCC v8 11 208164 -NCIT:C139880 Stage IVA Uterine Corpus Leiomyosarcoma AJCC v8 12 208165 -NCIT:C139881 Stage IVB Uterine Corpus Leiomyosarcoma AJCC v8 12 208166 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 10 208167 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 10 208168 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 11 208169 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 10 208170 -NCIT:C40174 Uterine Corpus Epithelioid Leiomyosarcoma 10 208171 -NCIT:C40175 Uterine Corpus Myxoid Leiomyosarcoma 10 208172 -NCIT:C8261 Recurrent Uterine Corpus Sarcoma 9 208173 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 10 208174 -NCIT:C8972 Uterine Corpus Undifferentiated Sarcoma 9 208175 -NCIT:C42700 Uterine Carcinosarcoma 7 208176 -NCIT:C113238 Uterine Carcinosarcoma, Homologous Type 8 208177 -NCIT:C113239 Uterine Carcinosarcoma, Heterologous Type 8 208178 -NCIT:C36097 Cervical Carcinosarcoma 8 208179 -NCIT:C9180 Uterine Corpus Carcinosarcoma 8 208180 -NCIT:C155818 Recurrent Uterine Corpus Carcinosarcoma 9 208181 -NCIT:C158381 Refractory Uterine Corpus Carcinosarcoma 9 208182 -NCIT:C170931 Metastatic Uterine Corpus Carcinosarcoma 9 208183 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 10 208184 -NCIT:C5385 Uterine Angiosarcoma 7 208185 -NCIT:C128049 Cervical Angiosarcoma 8 208186 -NCIT:C9311 Malignant Cervical Neoplasm 7 208187 -NCIT:C128054 Malignant Cervical Soft Tissue Neoplasm 8 208188 -NCIT:C128047 Cervical Leiomyosarcoma 9 208189 -NCIT:C128048 Cervical Rhabdomyosarcoma 9 208190 -NCIT:C128049 Cervical Angiosarcoma 9 208191 -NCIT:C128050 Cervical Malignant Peripheral Nerve Sheath Tumor 9 208192 -NCIT:C40222 Cervical Low Grade Endometrioid Stromal Sarcoma 9 208193 -NCIT:C40224 Endocervical Undifferentiated Sarcoma 9 208194 -NCIT:C40225 Cervical Alveolar Soft Part Sarcoma 9 208195 -NCIT:C40229 Cervical Adenosarcoma 9 208196 -NCIT:C7433 AIDS-Related Cervical Kaposi Sarcoma 9 208197 -NCIT:C128055 Cervical Yolk Sac Tumor 8 208198 -NCIT:C3553 Malignant Endocervical Neoplasm 8 208199 -NCIT:C9269 Recurrent Malignant Endocervical Neoplasm 9 208200 -NCIT:C3554 Malignant Exocervical Neoplasm 8 208201 -NCIT:C7453 Exocervical Carcinoma 9 208202 -NCIT:C40228 Malignant Mixed Epithelial and Mesenchymal Neoplasm of the Cervix 8 208203 -NCIT:C36097 Cervical Carcinosarcoma 9 208204 -NCIT:C40229 Cervical Adenosarcoma 9 208205 -NCIT:C40236 Cervical Wilms Tumor 8 208206 -NCIT:C40239 Cervical Melanoma 8 208207 -NCIT:C5052 AIDS-Related Malignant Cervical Neoplasm 8 208208 -NCIT:C7432 AIDS-Related Cervical Carcinoma 9 208209 -NCIT:C7433 AIDS-Related Cervical Kaposi Sarcoma 9 208210 -NCIT:C7434 AIDS-Related Non-Hodgkin Lymphoma of the Cervix 9 208211 -NCIT:C6385 Metastatic Malignant Neoplasm in the Uterine Cervix 8 208212 -NCIT:C6334 Metastatic Carcinoma in the Uterine Cervix 9 208213 -NCIT:C9039 Cervical Carcinoma 8 208214 -NCIT:C128045 Cervical Neuroendocrine Carcinoma 9 208215 -NCIT:C40214 Cervical Large Cell Neuroendocrine Carcinoma 10 208216 -NCIT:C7982 Cervical Small Cell Neuroendocrine Carcinoma 10 208217 -NCIT:C139733 Cervical Cancer by AJCC v8 Stage 9 208218 -NCIT:C139734 Stage I Cervical Cancer AJCC v8 10 208219 -NCIT:C139735 Stage IA Cervical Cancer AJCC v8 11 208220 -NCIT:C139736 Stage IA1 Cervical Cancer AJCC v8 12 208221 -NCIT:C139737 Stage IA2 Cervical Cancer AJCC v8 12 208222 -NCIT:C139738 Stage IB Cervical Cancer AJCC v8 11 208223 -NCIT:C139739 Stage IB1 Cervical Cancer AJCC v8 12 208224 -NCIT:C139740 Stage IB2 Cervical Cancer AJCC v8 12 208225 -NCIT:C139743 Stage II Cervical Cancer AJCC v8 10 208226 -NCIT:C139744 Stage IIA Cervical Cancer AJCC v8 11 208227 -NCIT:C139745 Stage IIA1 Cervical Cancer AJCC v8 12 208228 -NCIT:C139746 Stage IIA2 Cervical Cancer AJCC v8 12 208229 -NCIT:C139748 Stage IIB Cervical Cancer AJCC v8 11 208230 -NCIT:C139749 Stage III Cervical Cancer AJCC v8 10 208231 -NCIT:C139750 Stage IIIA Cervical Cancer AJCC v8 11 208232 -NCIT:C139752 Stage IIIB Cervical Cancer AJCC v8 11 208233 -NCIT:C139753 Stage IV Cervical Cancer AJCC v8 10 208234 -NCIT:C139754 Stage IVA Cervical Cancer AJCC v8 11 208235 -NCIT:C139755 Stage IVB Cervical Cancer AJCC v8 11 208236 -NCIT:C153387 Metastatic Cervical Carcinoma 9 208237 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 10 208238 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 11 208239 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 11 208240 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 10 208241 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 11 208242 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 12 208243 -NCIT:C156304 Advanced Cervical Adenocarcinoma 11 208244 -NCIT:C153390 Metastatic Cervical Adenosquamous Carcinoma 10 208245 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 11 208246 -NCIT:C156294 Advanced Cervical Carcinoma 10 208247 -NCIT:C156304 Advanced Cervical Adenocarcinoma 11 208248 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 11 208249 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 11 208250 -NCIT:C156295 Locally Advanced Cervical Carcinoma 10 208251 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 11 208252 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 12 208253 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 11 208254 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 12 208255 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 11 208256 -NCIT:C162225 Cervical Cancer by FIGO Stage 2018 9 208257 -NCIT:C162226 Stage I Cervical Cancer FIGO 2018 10 208258 -NCIT:C162227 Stage IA Cervical Cancer FIGO 2018 11 208259 -NCIT:C162228 Stage IA1 Cervical Cancer FIGO 2018 12 208260 -NCIT:C162229 Stage IA2 Cervical Cancer FIGO 2018 12 208261 -NCIT:C162230 Stage IB Cervical Cancer FIGO 2018 11 208262 -NCIT:C162231 Stage IB1 Cervical Cancer FIGO 2018 12 208263 -NCIT:C162232 Stage IB2 Cervical Cancer FIGO 2018 12 208264 -NCIT:C162233 Stage IB3 Cervical Cancer FIGO 2018 12 208265 -NCIT:C162234 Stage II Cervical Cancer FIGO 2018 10 208266 -NCIT:C162235 Stage IIA Cervical Cancer FIGO 2018 11 208267 -NCIT:C162236 Stage IIA1 Cervical Cancer FIGO 2018 12 208268 -NCIT:C162237 Stage IIA2 Cervical Cancer FIGO 2018 12 208269 -NCIT:C162238 Stage IIB Cervical Cancer FIGO 2018 11 208270 -NCIT:C162239 Stage III Cervical Cancer FIGO 2018 10 208271 -NCIT:C162240 Stage IIIA Cervical Cancer FIGO 2018 11 208272 -NCIT:C162241 Stage IIIB Cervical Cancer FIGO 2018 11 208273 -NCIT:C162242 Stage IIIC Cervical Cancer FIGO 2018 11 208274 -NCIT:C162243 Stage IIIC1 Cervical Cancer FIGO 2018 12 208275 -NCIT:C162244 Stage IIIC2 Cervical Cancer FIGO 2018 12 208276 -NCIT:C162245 Stage IV Cervical Cancer FIGO 2018 10 208277 -NCIT:C162246 Stage IVA Cervical Cancer FIGO 2018 11 208278 -NCIT:C162247 Stage IVB Cervical Cancer FIGO 2018 11 208279 -NCIT:C170513 Refractory Cervical Carcinoma 9 208280 -NCIT:C181034 Refractory Cervical Squamous Cell Carcinoma 10 208281 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 11 208282 -NCIT:C181036 Refractory Cervical Adenocarcinoma 10 208283 -NCIT:C174024 Unresectable Cervical Carcinoma 9 208284 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 10 208285 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 11 208286 -NCIT:C174025 Unresectable Cervical Squamous Cell Carcinoma 10 208287 -NCIT:C174027 Unresectable Cervical Adenosquamous Carcinoma 10 208288 -NCIT:C174029 Unresectable Cervical Adenocarcinoma 10 208289 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 11 208290 -NCIT:C180878 Cervical Mucoepidermoid Carcinoma 9 208291 -NCIT:C181562 Cervical Cancer by AJCC v9 Stage 9 208292 -NCIT:C181564 Stage I Cervical Cancer AJCC v9 10 208293 -NCIT:C181565 Stage IA Cervical Cancer AJCC v9 11 208294 -NCIT:C181567 Stage IA1 Cervical Cancer AJCC v9 12 208295 -NCIT:C181568 Stage IA2 Cervical Cancer AJCC v9 12 208296 -NCIT:C181570 Stage IB Cervical Cancer AJCC v9 11 208297 -NCIT:C181571 Stage IB1 Cervical Cancer AJCC v9 12 208298 -NCIT:C181576 Stage IB2 Cervical Cancer AJCC v9 12 208299 -NCIT:C181579 Stage IB3 Cervical Cancer AJCC v9 12 208300 -NCIT:C181583 Stage II Cervical Cancer AJCC v9 10 208301 -NCIT:C181584 Stage IIA Cervical Cancer AJCC v9 11 208302 -NCIT:C181586 Stage IIA1 Cervical Cancer AJCC v9 12 208303 -NCIT:C181588 Stage IIA2 Cervical Cancer AJCC v9 12 208304 -NCIT:C181591 Stage IIB Cervical Cancer AJCC v9 11 208305 -NCIT:C181592 Stage III Cervical Cancer AJCC v9 10 208306 -NCIT:C181594 Stage IIIA Cervical Cancer AJCC v9 11 208307 -NCIT:C181595 Stage IIIB Cervical Cancer AJCC v9 11 208308 -NCIT:C181596 Stage IIIC Cervical Cancer AJCC v9 11 208309 -NCIT:C181597 Stage IIIC1 Cervical Cancer AJCC v9 12 208310 -NCIT:C181598 Stage IIIC2 Cervical Cancer AJCC v9 12 208311 -NCIT:C181599 Stage IV Cervical Cancer AJCC v9 10 208312 -NCIT:C181601 Stage IVA Cervical Cancer AJCC v9 11 208313 -NCIT:C181603 Stage IVB Cervical Cancer AJCC v9 11 208314 -NCIT:C186619 Cervical Cancer by FIGO Stage 2009 9 208315 -NCIT:C186620 Stage I Cervical Cancer FIGO 2009 10 208316 -NCIT:C186621 Stage IA Cervical Cancer FIGO 2009 11 208317 -NCIT:C186622 Stage IA1 Cervical Cancer FIGO 2009 12 208318 -NCIT:C186623 Stage IA2 Cervical Cancer FIGO 2009 12 208319 -NCIT:C186624 Stage IB Cervical Cancer FIGO 2009 11 208320 -NCIT:C186625 Stage IB1 Cervical Cancer FIGO 2009 12 208321 -NCIT:C186626 Stage IB2 Cervical Cancer FIGO 2009 12 208322 -NCIT:C186627 Stage II Cervical Cancer FIGO 2009 10 208323 -NCIT:C186628 Stage IIA Cervical Cancer FIGO 2009 11 208324 -NCIT:C186629 Stage IIA1 Cervical Cancer FIGO 2009 12 208325 -NCIT:C186630 Stage IIA2 Cervical Cancer FIGO 2009 12 208326 -NCIT:C186631 Stage IIB Cervical Cancer FIGO 2009 11 208327 -NCIT:C186632 Stage III Cervical Cancer FIGO 2009 10 208328 -NCIT:C186633 Stage IIIA Cervical Cancer FIGO 2009 11 208329 -NCIT:C186634 Stage IIIB Cervical Cancer FIGO 2009 11 208330 -NCIT:C186635 Stage IV Cervical Cancer FIGO 2009 10 208331 -NCIT:C186636 Stage IVA Cervical Cancer FIGO 2009 11 208332 -NCIT:C186637 Stage IVB Cervical Cancer FIGO 2009 11 208333 -NCIT:C27675 Human Papillomavirus-Related Cervical Carcinoma 9 208334 -NCIT:C27676 Human Papillomavirus-Related Cervical Squamous Cell Carcinoma 10 208335 -NCIT:C40192 Cervical Papillary Squamous Cell Carcinoma 11 208336 -NCIT:C40191 Cervical Warty Carcinoma 12 208337 -NCIT:C40194 Cervical Squamotransitional Carcinoma 12 208338 -NCIT:C27677 Human Papillomavirus-Related Cervical Adenocarcinoma 10 208339 -NCIT:C127907 Endocervical Adenocarcinoma, Usual-Type 11 208340 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 12 208341 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 12 208342 -NCIT:C40208 Cervical Villoglandular Adenocarcinoma 12 208343 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 11 208344 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 11 208345 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 11 208346 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 11 208347 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 11 208348 -NCIT:C40213 Cervical Adenoid Basal Carcinoma 9 208349 -NCIT:C4028 Cervical Squamous Cell Carcinoma 9 208350 -NCIT:C136649 Recurrent Cervical Squamous Cell Carcinoma 10 208351 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 10 208352 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 11 208353 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 11 208354 -NCIT:C174025 Unresectable Cervical Squamous Cell Carcinoma 10 208355 -NCIT:C180839 Cervical Squamous Cell Carcinoma, Not Otherwise Specified 10 208356 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 11 208357 -NCIT:C180841 Human Papillomavirus-Independent Cervical Squamous Cell Carcinoma 10 208358 -NCIT:C181034 Refractory Cervical Squamous Cell Carcinoma 10 208359 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 11 208360 -NCIT:C27676 Human Papillomavirus-Related Cervical Squamous Cell Carcinoma 10 208361 -NCIT:C40192 Cervical Papillary Squamous Cell Carcinoma 11 208362 -NCIT:C40191 Cervical Warty Carcinoma 12 208363 -NCIT:C40194 Cervical Squamotransitional Carcinoma 12 208364 -NCIT:C36094 Early Invasive Cervical Squamous Cell Carcinoma 10 208365 -NCIT:C40187 Cervical Keratinizing Squamous Cell Carcinoma 10 208366 -NCIT:C40188 Cervical Non-Keratinizing Squamous Cell Carcinoma 10 208367 -NCIT:C40189 Cervical Basaloid Carcinoma 10 208368 -NCIT:C40190 Cervical Verrucous Carcinoma 10 208369 -NCIT:C40193 Cervical Lymphoepithelioma-Like Carcinoma 10 208370 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 10 208371 -NCIT:C4029 Cervical Adenocarcinoma 9 208372 -NCIT:C127915 Cervical Adenocarcinoma Admixed with Neuroendocrine Carcinoma 10 208373 -NCIT:C136651 Recurrent Cervical Adenocarcinoma 10 208374 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 11 208375 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 10 208376 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 11 208377 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 12 208378 -NCIT:C156304 Advanced Cervical Adenocarcinoma 11 208379 -NCIT:C174029 Unresectable Cervical Adenocarcinoma 10 208380 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 11 208381 -NCIT:C180848 Human Papillomavirus-Independent Cervical Adenocarcinoma 10 208382 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 11 208383 -NCIT:C40201 Cervical Serous Adenocarcinoma 11 208384 -NCIT:C40206 Human Papillomavirus-Independent Cervical Adenocarcinoma, Gastric-Type 11 208385 -NCIT:C40254 Cervical Mesonephric Adenocarcinoma 11 208386 -NCIT:C6343 Cervical Endometrioid Adenocarcinoma 11 208387 -NCIT:C6344 Human Papillomavirus-Independent Cervical Adenocarcinoma, Clear Cell-Type 11 208388 -NCIT:C180870 Cervical Adenocarcinoma, Not Otherwise Specified 10 208389 -NCIT:C181036 Refractory Cervical Adenocarcinoma 10 208390 -NCIT:C27677 Human Papillomavirus-Related Cervical Adenocarcinoma 10 208391 -NCIT:C127907 Endocervical Adenocarcinoma, Usual-Type 11 208392 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 12 208393 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 12 208394 -NCIT:C40208 Cervical Villoglandular Adenocarcinoma 12 208395 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 11 208396 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 11 208397 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 11 208398 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 11 208399 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 11 208400 -NCIT:C36095 Cervical Mucinous Adenocarcinoma 10 208401 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 11 208402 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 11 208403 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 11 208404 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 11 208405 -NCIT:C40206 Human Papillomavirus-Independent Cervical Adenocarcinoma, Gastric-Type 11 208406 -NCIT:C36096 Early Invasive Cervical Adenocarcinoma 10 208407 -NCIT:C4520 Cervical Adenocarcinoma In Situ 10 208408 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 11 208409 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 11 208410 -NCIT:C4519 Cervical Adenosquamous Carcinoma 9 208411 -NCIT:C136650 Recurrent Cervical Adenosquamous Carcinoma 10 208412 -NCIT:C153390 Metastatic Cervical Adenosquamous Carcinoma 10 208413 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 11 208414 -NCIT:C174027 Unresectable Cervical Adenosquamous Carcinoma 10 208415 -NCIT:C40212 Cervical Poorly Differentiated Adenosquamous Carcinoma 10 208416 -NCIT:C6345 Cervical Undifferentiated Carcinoma 9 208417 -NCIT:C6346 Cervical Adenoid Cystic Carcinoma 9 208418 -NCIT:C7432 AIDS-Related Cervical Carcinoma 9 208419 -NCIT:C7453 Exocervical Carcinoma 9 208420 -NCIT:C7804 Recurrent Cervical Carcinoma 9 208421 -NCIT:C136649 Recurrent Cervical Squamous Cell Carcinoma 10 208422 -NCIT:C136650 Recurrent Cervical Adenosquamous Carcinoma 10 208423 -NCIT:C136651 Recurrent Cervical Adenocarcinoma 10 208424 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 11 208425 -NCIT:C8577 Invasive Cervical Carcinoma 9 208426 -NCIT:C90493 Cervical Cancer by AJCC v6 Stage 9 208427 -NCIT:C4000 Stage 0 Cervical Cancer AJCC v6 10 208428 -NCIT:C7803 Stage II Cervical Cancer AJCC v6 10 208429 -NCIT:C6319 Stage IIA Cervical Cancer AJCC v6 11 208430 -NCIT:C6320 Stage IIB Cervical Cancer AJCC v6 and v7 11 208431 -NCIT:C9204 Stage I Cervical Cancer AJCC v6 and v7 10 208432 -NCIT:C6313 Stage IA Cervical Cancer AJCC v6 and v7 11 208433 -NCIT:C6314 Stage IA1 Cervical Cancer AJCC v6 and v7 12 208434 -NCIT:C6315 Stage IA2 Cervical Cancer AJCC v6 and v7 12 208435 -NCIT:C6316 Stage IB Cervical Cancer AJCC v6 and v7 11 208436 -NCIT:C6317 Stage IB1 Cervical Cancer AJCC v6 and v7 12 208437 -NCIT:C6318 Stage IB2 Cervical Cancer AJCC v6 and v7 12 208438 -NCIT:C9205 Stage III Cervical Cancer AJCC v6 and v7 10 208439 -NCIT:C6321 Stage IIIB Cervical Cancer AJCC v6 and v7 11 208440 -NCIT:C6322 Stage IIIA Cervical Cancer AJCC v6 and v7 11 208441 -NCIT:C9206 Stage IV Cervical Cancer AJCC v6 and v7 10 208442 -NCIT:C6323 Stage IVA Cervical Cancer AJCC v6 and v7 11 208443 -NCIT:C6324 Stage IVB Cervical Cancer AJCC v6 and v7 11 208444 -NCIT:C91208 Cervical Cancer by AJCC v7 Stage 9 208445 -NCIT:C89550 Stage 0 Cervical Cancer AJCC v7 10 208446 -NCIT:C4520 Cervical Adenocarcinoma In Situ 11 208447 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 12 208448 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 12 208449 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 11 208450 -NCIT:C89551 Stage II Cervical Cancer AJCC v7 10 208451 -NCIT:C6320 Stage IIB Cervical Cancer AJCC v6 and v7 11 208452 -NCIT:C89552 Stage IIA Cervical Cancer AJCC v7 11 208453 -NCIT:C95172 Stage IIA1 Cervical Cancer AJCC v7 12 208454 -NCIT:C95173 Stage IIA2 Cervical Cancer AJCC v7 12 208455 -NCIT:C9204 Stage I Cervical Cancer AJCC v6 and v7 10 208456 -NCIT:C6313 Stage IA Cervical Cancer AJCC v6 and v7 11 208457 -NCIT:C6314 Stage IA1 Cervical Cancer AJCC v6 and v7 12 208458 -NCIT:C6315 Stage IA2 Cervical Cancer AJCC v6 and v7 12 208459 -NCIT:C6316 Stage IB Cervical Cancer AJCC v6 and v7 11 208460 -NCIT:C6317 Stage IB1 Cervical Cancer AJCC v6 and v7 12 208461 -NCIT:C6318 Stage IB2 Cervical Cancer AJCC v6 and v7 12 208462 -NCIT:C9205 Stage III Cervical Cancer AJCC v6 and v7 10 208463 -NCIT:C6321 Stage IIIB Cervical Cancer AJCC v6 and v7 11 208464 -NCIT:C6322 Stage IIIA Cervical Cancer AJCC v6 and v7 11 208465 -NCIT:C9206 Stage IV Cervical Cancer AJCC v6 and v7 10 208466 -NCIT:C6323 Stage IVA Cervical Cancer AJCC v6 and v7 11 208467 -NCIT:C6324 Stage IVB Cervical Cancer AJCC v6 and v7 11 208468 -NCIT:C3555 Malignant Placental Neoplasm 6 208469 -NCIT:C8546 Metastatic Malignant Neoplasm in the Placenta 7 208470 -NCIT:C8893 Placental Choriocarcinoma 7 208471 -NCIT:C40017 Rete Ovarii Adenocarcinoma 6 208472 -NCIT:C4646 Gestational Choriocarcinoma 6 208473 -NCIT:C27246 Uterine Corpus Choriocarcinoma 7 208474 -NCIT:C40442 Ovarian Gestational Choriocarcinoma 7 208475 -NCIT:C6278 Fallopian Tube Gestational Choriocarcinoma 7 208476 -NCIT:C8893 Placental Choriocarcinoma 7 208477 -NCIT:C53994 Undifferentiated Stromal Sarcoma 6 208478 -NCIT:C40066 Ovarian Undifferentiated Sarcoma 7 208479 -NCIT:C40224 Endocervical Undifferentiated Sarcoma 7 208480 -NCIT:C40272 Vaginal Undifferentiated Sarcoma 7 208481 -NCIT:C8972 Uterine Corpus Undifferentiated Sarcoma 7 208482 -NCIT:C7410 Malignant Vaginal Neoplasm 6 208483 -NCIT:C27394 Vaginal Melanoma 7 208484 -NCIT:C3917 Vaginal Carcinoma 7 208485 -NCIT:C128073 Vaginal Neuroendocrine Carcinoma 8 208486 -NCIT:C128075 Vaginal Large Cell Neuroendocrine Carcinoma 9 208487 -NCIT:C40263 Vaginal Small Cell Neuroendocrine Carcinoma 9 208488 -NCIT:C139657 Vaginal Cancer by AJCC v8 Stage 8 208489 -NCIT:C139658 Stage I Vaginal Cancer AJCC v8 9 208490 -NCIT:C139659 Stage IA Vaginal Cancer AJCC v8 10 208491 -NCIT:C139660 Stage IB Vaginal Cancer AJCC v8 10 208492 -NCIT:C139661 Stage II Vaginal Cancer AJCC v8 9 208493 -NCIT:C139662 Stage IIA Vaginal Cancer AJCC v8 10 208494 -NCIT:C139664 Stage IIB Vaginal Cancer AJCC v8 10 208495 -NCIT:C139665 Stage III Vaginal Cancer AJCC v8 9 208496 -NCIT:C139667 Stage IV Vaginal Cancer AJCC v8 9 208497 -NCIT:C139669 Stage IVA Vaginal Cancer AJCC v8 10 208498 -NCIT:C139670 Stage IVB Vaginal Cancer AJCC v8 10 208499 -NCIT:C156065 Metastatic Vaginal Carcinoma 8 208500 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 9 208501 -NCIT:C170788 Advanced Vaginal Carcinoma 9 208502 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 10 208503 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 10 208504 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 10 208505 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 11 208506 -NCIT:C181028 Metastatic Vaginal Adenosquamous Carcinoma 9 208507 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 10 208508 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 9 208509 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 10 208510 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 11 208511 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 9 208512 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 10 208513 -NCIT:C174509 Refractory Vaginal Carcinoma 8 208514 -NCIT:C185303 Refractory Vaginal Squamous Cell Carcinoma 9 208515 -NCIT:C175434 Unresectable Vaginal Carcinoma 8 208516 -NCIT:C180915 Vaginal Squamous Cell Carcinoma 8 208517 -NCIT:C128060 Vaginal Papillary Carcinoma 9 208518 -NCIT:C180917 Human Papillomavirus-Related Vaginal Squamous Cell Carcinoma 9 208519 -NCIT:C40248 Vaginal Warty Carcinoma 10 208520 -NCIT:C180919 Human Papillomavirus-Independent Vaginal Squamous Cell Carcinoma 9 208521 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 9 208522 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 10 208523 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 11 208524 -NCIT:C185302 Recurrent Vaginal Squamous Cell Carcinoma 9 208525 -NCIT:C185303 Refractory Vaginal Squamous Cell Carcinoma 9 208526 -NCIT:C40243 Vaginal Keratinizing Squamous Cell Carcinoma 9 208527 -NCIT:C40244 Vaginal Non-Keratinizing Squamous Cell Carcinoma 9 208528 -NCIT:C40245 Vaginal Basaloid Carcinoma 9 208529 -NCIT:C6325 Vaginal Verrucous Carcinoma 9 208530 -NCIT:C7736 Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 208531 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 208532 -NCIT:C40260 Vaginal Adenosquamous Carcinoma 8 208533 -NCIT:C181028 Metastatic Vaginal Adenosquamous Carcinoma 9 208534 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 10 208535 -NCIT:C40261 Vaginal Adenoid Cystic Carcinoma 8 208536 -NCIT:C40262 Vaginal Adenoid Basal Carcinoma 8 208537 -NCIT:C40264 Vaginal Undifferentiated Carcinoma 8 208538 -NCIT:C7860 Recurrent Vaginal Carcinoma 8 208539 -NCIT:C185302 Recurrent Vaginal Squamous Cell Carcinoma 9 208540 -NCIT:C7981 Vaginal Adenocarcinoma 8 208541 -NCIT:C180943 Human Papillomavirus-Related Vaginal Adenocarcinoma 9 208542 -NCIT:C180947 Vaginal Adenocarcinoma of Skene Gland Origin 9 208543 -NCIT:C40251 Vaginal Endometrioid Adenocarcinoma 9 208544 -NCIT:C40252 Vaginal Mucinous Adenocarcinoma 9 208545 -NCIT:C180945 Vaginal Mucinous Adenocarcinoma, Gastric-Type 10 208546 -NCIT:C180946 Vaginal Mucinous Adenocarcinoma, Intestinal-Type 10 208547 -NCIT:C40253 Vaginal Mesonephric Adenocarcinoma 9 208548 -NCIT:C7735 Vaginal Clear Cell Adenocarcinoma 9 208549 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 9 208550 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 10 208551 -NCIT:C90347 Vaginal Cancer by AJCC v6 Stage 8 208552 -NCIT:C7597 Stage IV Vaginal Cancer AJCC v6 and v7 9 208553 -NCIT:C7859 Stage IVA Vaginal Cancer AJCC v6 and v7 10 208554 -NCIT:C9355 Stage IVB Vaginal Cancer AJCC v6 and v7 10 208555 -NCIT:C7855 Stage 0 Vaginal Cancer AJCC v6 9 208556 -NCIT:C7856 Stage I Vaginal Cancer AJCC v6 and v7 9 208557 -NCIT:C7857 Stage II Vaginal Cancer AJCC v6 and v7 9 208558 -NCIT:C7858 Stage III Vaginal Cancer AJCC v6 and v7 9 208559 -NCIT:C91204 Vaginal Cancer by AJCC v7 Stage 8 208560 -NCIT:C7597 Stage IV Vaginal Cancer AJCC v6 and v7 9 208561 -NCIT:C7859 Stage IVA Vaginal Cancer AJCC v6 and v7 10 208562 -NCIT:C9355 Stage IVB Vaginal Cancer AJCC v6 and v7 10 208563 -NCIT:C7856 Stage I Vaginal Cancer AJCC v6 and v7 9 208564 -NCIT:C7857 Stage II Vaginal Cancer AJCC v6 and v7 9 208565 -NCIT:C7858 Stage III Vaginal Cancer AJCC v6 and v7 9 208566 -NCIT:C89476 Stage 0 Vaginal Cancer AJCC v7 9 208567 -NCIT:C40276 Malignant Vaginal Mixed Epithelial and Mesenchymal Neoplasm 7 208568 -NCIT:C40277 Vaginal Adenosarcoma 8 208569 -NCIT:C40278 Vaginal Carcinosarcoma 8 208570 -NCIT:C40279 Malignant Vaginal Mixed Tumor Resembling Synovial Sarcoma 8 208571 -NCIT:C6333 Metastatic Malignant Neoplasm in the Vagina 7 208572 -NCIT:C6379 Vaginal Yolk Sac Tumor 7 208573 -NCIT:C7737 Vaginal Sarcoma 7 208574 -NCIT:C128080 Vaginal Rhabdomyosarcoma 8 208575 -NCIT:C40268 Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 9 208576 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 208577 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 208578 -NCIT:C40271 Vaginal Low Grade Endometrioid Stromal Sarcoma 8 208579 -NCIT:C40272 Vaginal Undifferentiated Sarcoma 8 208580 -NCIT:C40277 Vaginal Adenosarcoma 8 208581 -NCIT:C6326 Vaginal Leiomyosarcoma 8 208582 -NCIT:C7431 Malignant Ovarian Neoplasm 6 208583 -NCIT:C165261 Solid Pseudopapillary Neoplasm of the Ovary 7 208584 -NCIT:C178441 Ovarian Melanoma 7 208585 -NCIT:C179474 Ovarian Neuroectodermal-Type Tumor 7 208586 -NCIT:C190659 Childhood Malignant Ovarian Neoplasm 7 208587 -NCIT:C171169 Extrarenal Rhabdoid Tumor of the Ovary 8 208588 -NCIT:C171170 Recurrent Extrarenal Rhabdoid Tumor of the Ovary 9 208589 -NCIT:C171171 Refractory Extrarenal Rhabdoid Tumor of the Ovary 9 208590 -NCIT:C189334 Childhood Ovarian Small Cell Carcinoma, Hypercalcemic Type 8 208591 -NCIT:C68629 Childhood Malignant Ovarian Germ Cell Tumor 8 208592 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 9 208593 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 9 208594 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 9 208595 -NCIT:C6550 Childhood Ovarian Dysgerminoma 9 208596 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 9 208597 -NCIT:C40021 Ovarian Lymphoma 7 208598 -NCIT:C40026 Malignant Ovarian Epithelial Tumor 7 208599 -NCIT:C40025 Malignant Ovarian Serous Tumor 8 208600 -NCIT:C67092 Ovarian Serous Adenocarcinofibroma 9 208601 -NCIT:C7550 Ovarian Serous Adenocarcinoma 9 208602 -NCIT:C105555 Ovarian High Grade Serous Adenocarcinoma 10 208603 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 11 208604 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 11 208605 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 11 208606 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 208607 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 11 208608 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 208609 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 12 208610 -NCIT:C105556 Ovarian Low Grade Serous Adenocarcinoma 10 208611 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 11 208612 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 11 208613 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 10 208614 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 11 208615 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 11 208616 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 11 208617 -NCIT:C160781 Unresectable Ovarian Serous Adenocarcinoma 10 208618 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 11 208619 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 208620 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 10 208621 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 11 208622 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 12 208623 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 12 208624 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 11 208625 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 208626 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 12 208627 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 11 208628 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 12 208629 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 12 208630 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 11 208631 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 12 208632 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 208633 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 10 208634 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 11 208635 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 11 208636 -NCIT:C6256 Ovarian Serous Surface Papillary Adenocarcinoma 10 208637 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 10 208638 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 11 208639 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 12 208640 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 12 208641 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 11 208642 -NCIT:C40033 Malignant Ovarian Mucinous Tumor 8 208643 -NCIT:C40034 Ovarian Mucinous Adenocarcinofibroma 9 208644 -NCIT:C5243 Ovarian Mucinous Adenocarcinoma 9 208645 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 10 208646 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 10 208647 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 10 208648 -NCIT:C183245 Unresectable Ovarian Mucinous Adenocarcinoma 10 208649 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 10 208650 -NCIT:C40051 Malignant Ovarian Endometrioid Tumor 8 208651 -NCIT:C7979 Ovarian Endometrioid Adenocarcinoma 9 208652 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 10 208653 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 10 208654 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 10 208655 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 11 208656 -NCIT:C186273 Unresectable Ovarian Endometrioid Adenocarcinoma 10 208657 -NCIT:C40061 Ovarian Endometrioid Adenocarcinoma with Squamous Differentiation 10 208658 -NCIT:C9192 Ovarian Carcinosarcoma 9 208659 -NCIT:C153347 Recurrent Ovarian Carcinosarcoma 10 208660 -NCIT:C170933 Metastatic Ovarian Carcinosarcoma 10 208661 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 11 208662 -NCIT:C40077 Malignant Ovarian Clear Cell Tumor 8 208663 -NCIT:C40078 Ovarian Clear Cell Adenocarcinoma 9 208664 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 10 208665 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 10 208666 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 11 208667 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 10 208668 -NCIT:C7980 Ovarian Clear Cell Cystadenocarcinoma 10 208669 -NCIT:C40079 Ovarian Clear Cell Adenocarcinofibroma 9 208670 -NCIT:C4908 Ovarian Carcinoma 8 208671 -NCIT:C128081 Ovarian Cancer by FIGO Stage 9 208672 -NCIT:C128082 FIGO Stage IC1 Ovarian Cancer 10 208673 -NCIT:C128083 FIGO Stage IC2 Ovarian Cancer 10 208674 -NCIT:C128084 FIGO Stage IC3 Ovarian Cancer 10 208675 -NCIT:C128085 FIGO Stage II Ovarian Cancer 10 208676 -NCIT:C5223 Stage IIA Ovarian Cancer AJCC V6 and v7 11 208677 -NCIT:C5224 Stage IIB Ovarian Cancer AJCC v6 and v7 11 208678 -NCIT:C128086 FIGO Stage III Ovarian Cancer 10 208679 -NCIT:C128087 FIGO Stage IIIA Ovarian Cancer 11 208680 -NCIT:C128088 FIGO Stage IIIA1 Ovarian Cancer 12 208681 -NCIT:C128089 FIGO Stage IIIA1(i) Ovarian Cancer 13 208682 -NCIT:C128090 FIGO Stage IIIA1(ii) Ovarian Cancer 13 208683 -NCIT:C128091 FIGO Stage IIIA2 Ovarian Cancer 12 208684 -NCIT:C128092 FIGO Stage IIIB Ovarian Cancer 11 208685 -NCIT:C128093 FIGO Stage IIIC Ovarian Cancer 11 208686 -NCIT:C128094 FIGO Stage IVA Ovarian Cancer 10 208687 -NCIT:C128095 FIGO Stage IVB Ovarian Cancer 10 208688 -NCIT:C7829 Stage I Ovarian Cancer AJCC v6 and v7 10 208689 -NCIT:C5220 Stage IA Ovarian Cancer AJCC v6 and v7 11 208690 -NCIT:C5221 Stage IB Ovarian Cancer AJCC v6 and v7 11 208691 -NCIT:C5222 Stage IC Ovarian Cancer AJCC v6 and v7 11 208692 -NCIT:C7832 Stage IV Ovarian Cancer AJCC v6 and v7 10 208693 -NCIT:C128106 Ovarian Cancer by AJCC v6 and v7 Stage 9 208694 -NCIT:C7829 Stage I Ovarian Cancer AJCC v6 and v7 10 208695 -NCIT:C5220 Stage IA Ovarian Cancer AJCC v6 and v7 11 208696 -NCIT:C5221 Stage IB Ovarian Cancer AJCC v6 and v7 11 208697 -NCIT:C5222 Stage IC Ovarian Cancer AJCC v6 and v7 11 208698 -NCIT:C7830 Stage II Ovarian Cancer AJCC v6 and v7 10 208699 -NCIT:C5223 Stage IIA Ovarian Cancer AJCC V6 and v7 11 208700 -NCIT:C5224 Stage IIB Ovarian Cancer AJCC v6 and v7 11 208701 -NCIT:C5225 Stage IIC Ovarian Cancer AJCC v6 and v7 11 208702 -NCIT:C7831 Stage III Ovarian Cancer AJCC v6 and v7 10 208703 -NCIT:C6258 Stage IIIA Ovarian Cancer AJCC v6 and v7 11 208704 -NCIT:C6259 Stage IIIB Ovarian Cancer AJCC v6 and v7 11 208705 -NCIT:C6260 Stage IIIC Ovarian Cancer AJCC v6 and v7 11 208706 -NCIT:C7832 Stage IV Ovarian Cancer AJCC v6 and v7 10 208707 -NCIT:C139963 Ovarian Cancer by AJCC v8 Stage 9 208708 -NCIT:C139964 Stage I Ovarian Cancer AJCC v8 10 208709 -NCIT:C139965 Stage IA Ovarian Cancer AJCC v8 11 208710 -NCIT:C139966 Stage IB Ovarian Cancer AJCC v8 11 208711 -NCIT:C139967 Stage IC Ovarian Cancer AJCC v8 11 208712 -NCIT:C139968 Stage II Ovarian Cancer AJCC v8 10 208713 -NCIT:C139969 Stage IIA Ovarian Cancer AJCC v8 11 208714 -NCIT:C139970 Stage IIB Ovarian Cancer AJCC v8 11 208715 -NCIT:C139971 Stage III Ovarian Cancer AJCC v8 10 208716 -NCIT:C139972 Stage IIIA Ovarian Cancer AJCC v8 11 208717 -NCIT:C139973 Stage IIIA1 Ovarian Cancer AJCC v8 12 208718 -NCIT:C139974 Stage IIIA2 Ovarian Cancer AJCC v8 12 208719 -NCIT:C139975 Stage IIIB Ovarian Cancer AJCC v8 11 208720 -NCIT:C139976 Stage IIIC Ovarian Cancer AJCC v8 11 208721 -NCIT:C139977 Stage IV Ovarian Cancer AJCC v8 10 208722 -NCIT:C139978 Stage IVA Ovarian Cancer AJCC v8 11 208723 -NCIT:C139979 Stage IVB Ovarian Cancer AJCC v8 11 208724 -NCIT:C150091 Refractory Ovarian Carcinoma 9 208725 -NCIT:C147561 Platinum-Resistant Ovarian Carcinoma 10 208726 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 11 208727 -NCIT:C179459 Unresectable Platinum-Resistant Ovarian Carcinoma 11 208728 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 11 208729 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 12 208730 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 12 208731 -NCIT:C170968 Refractory Ovarian Adenocarcinoma 10 208732 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 11 208733 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 11 208734 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 12 208735 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 12 208736 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 11 208737 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 11 208738 -NCIT:C178671 Refractory Ovarian Seromucinous Carcinoma 10 208739 -NCIT:C178682 Refractory Ovarian Transitional Cell Carcinoma 10 208740 -NCIT:C178683 Refractory Ovarian Undifferentiated Carcinoma 10 208741 -NCIT:C178700 Platinum-Refractory Ovarian Carcinoma 10 208742 -NCIT:C179207 Refractory Ovarian Squamous Cell Carcinoma 10 208743 -NCIT:C183126 Refractory Malignant Ovarian Brenner Tumor 10 208744 -NCIT:C156064 Metastatic Ovarian Carcinoma 9 208745 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 10 208746 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 11 208747 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 12 208748 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 12 208749 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 11 208750 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 208751 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 12 208752 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 11 208753 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 12 208754 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 12 208755 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 11 208756 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 12 208757 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 208758 -NCIT:C165458 Advanced Ovarian Carcinoma 10 208759 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 11 208760 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 12 208761 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 12 208762 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 11 208763 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 11 208764 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 11 208765 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 11 208766 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 10 208767 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 11 208768 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 12 208769 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 208770 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 11 208771 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 10 208772 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 11 208773 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 10 208774 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 11 208775 -NCIT:C172234 Metastatic Ovarian Undifferentiated Carcinoma 10 208776 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 10 208777 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 11 208778 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 11 208779 -NCIT:C180333 Metastatic Microsatellite Stable Ovarian Carcinoma 10 208780 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 11 208781 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 10 208782 -NCIT:C27391 Metastatic Ovarian Small Cell Carcinoma, Hypercalcemic Type 10 208783 -NCIT:C159902 Platinum-Sensitive Ovarian Carcinoma 9 208784 -NCIT:C188391 Recurrent Platinum-Sensitive Ovarian Carcinoma 10 208785 -NCIT:C167073 Unresectable Ovarian Carcinoma 9 208786 -NCIT:C160781 Unresectable Ovarian Serous Adenocarcinoma 10 208787 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 11 208788 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 12 208789 -NCIT:C172235 Unresectable Ovarian Undifferentiated Carcinoma 10 208790 -NCIT:C179459 Unresectable Platinum-Resistant Ovarian Carcinoma 10 208791 -NCIT:C183245 Unresectable Ovarian Mucinous Adenocarcinoma 10 208792 -NCIT:C186273 Unresectable Ovarian Endometrioid Adenocarcinoma 10 208793 -NCIT:C171032 Ovarian Neuroendocrine Carcinoma 9 208794 -NCIT:C40440 Ovarian Small Cell Carcinoma, Pulmonary-Type 10 208795 -NCIT:C5238 Ovarian Large Cell Neuroendocrine Carcinoma 10 208796 -NCIT:C179334 Ovarian Dedifferentiated Carcinoma 9 208797 -NCIT:C180332 Microsatellite Stable Ovarian Carcinoma 9 208798 -NCIT:C180333 Metastatic Microsatellite Stable Ovarian Carcinoma 10 208799 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 11 208800 -NCIT:C27390 Ovarian Small Cell Carcinoma 9 208801 -NCIT:C40439 Ovarian Small Cell Carcinoma, Hypercalcemic Type 10 208802 -NCIT:C189334 Childhood Ovarian Small Cell Carcinoma, Hypercalcemic Type 11 208803 -NCIT:C27391 Metastatic Ovarian Small Cell Carcinoma, Hypercalcemic Type 11 208804 -NCIT:C40440 Ovarian Small Cell Carcinoma, Pulmonary-Type 10 208805 -NCIT:C36102 Hereditary Ovarian Carcinoma 9 208806 -NCIT:C148024 BRCA-Associated Ovarian Carcinoma 10 208807 -NCIT:C148025 Recurrent BRCA- Associated Ovarian Carcinoma 11 208808 -NCIT:C40090 Ovarian Seromucinous Carcinoma 9 208809 -NCIT:C178669 Recurrent Ovarian Seromucinous Carcinoma 10 208810 -NCIT:C178671 Refractory Ovarian Seromucinous Carcinoma 10 208811 -NCIT:C40093 Ovarian Squamous Cell Carcinoma 9 208812 -NCIT:C179207 Refractory Ovarian Squamous Cell Carcinoma 10 208813 -NCIT:C4270 Malignant Ovarian Brenner Tumor 9 208814 -NCIT:C153818 Recurrent Malignant Ovarian Brenner Tumor 10 208815 -NCIT:C183126 Refractory Malignant Ovarian Brenner Tumor 10 208816 -NCIT:C4509 Ovarian Undifferentiated Carcinoma 9 208817 -NCIT:C170754 Recurrent Ovarian Undifferentiated Carcinoma 10 208818 -NCIT:C172234 Metastatic Ovarian Undifferentiated Carcinoma 10 208819 -NCIT:C172235 Unresectable Ovarian Undifferentiated Carcinoma 10 208820 -NCIT:C178683 Refractory Ovarian Undifferentiated Carcinoma 10 208821 -NCIT:C5240 Ovarian Transitional Cell Carcinoma 9 208822 -NCIT:C153819 Recurrent Ovarian Transitional Cell Carcinoma 10 208823 -NCIT:C178682 Refractory Ovarian Transitional Cell Carcinoma 10 208824 -NCIT:C7700 Ovarian Adenocarcinoma 9 208825 -NCIT:C153614 Recurrent Ovarian Adenocarcinoma 10 208826 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 11 208827 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 11 208828 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 12 208829 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 12 208830 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 12 208831 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 11 208832 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 11 208833 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 12 208834 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 11 208835 -NCIT:C170968 Refractory Ovarian Adenocarcinoma 10 208836 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 11 208837 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 11 208838 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 12 208839 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 12 208840 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 11 208841 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 11 208842 -NCIT:C179208 Ovarian Signet Ring Cell Carcinoma 10 208843 -NCIT:C179321 Ovarian Mesonephric-Like Adenocarcinoma 10 208844 -NCIT:C179339 Ovarian Mixed Cell Adenocarcinoma 10 208845 -NCIT:C40078 Ovarian Clear Cell Adenocarcinoma 10 208846 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 11 208847 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 11 208848 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 12 208849 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 11 208850 -NCIT:C7980 Ovarian Clear Cell Cystadenocarcinoma 11 208851 -NCIT:C5228 Ovarian Cystadenocarcinoma 10 208852 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 11 208853 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 12 208854 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 11 208855 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 11 208856 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 12 208857 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 13 208858 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 13 208859 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 12 208860 -NCIT:C7980 Ovarian Clear Cell Cystadenocarcinoma 11 208861 -NCIT:C5243 Ovarian Mucinous Adenocarcinoma 10 208862 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 11 208863 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 11 208864 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 11 208865 -NCIT:C183245 Unresectable Ovarian Mucinous Adenocarcinoma 11 208866 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 11 208867 -NCIT:C7550 Ovarian Serous Adenocarcinoma 10 208868 -NCIT:C105555 Ovarian High Grade Serous Adenocarcinoma 11 208869 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 12 208870 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 12 208871 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 12 208872 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 13 208873 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 12 208874 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 13 208875 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 13 208876 -NCIT:C105556 Ovarian Low Grade Serous Adenocarcinoma 11 208877 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 12 208878 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 12 208879 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 11 208880 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 12 208881 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 12 208882 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 12 208883 -NCIT:C160781 Unresectable Ovarian Serous Adenocarcinoma 11 208884 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 12 208885 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 13 208886 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 11 208887 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 12 208888 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 13 208889 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 13 208890 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 12 208891 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 13 208892 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 13 208893 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 12 208894 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 13 208895 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 13 208896 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 12 208897 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 13 208898 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 13 208899 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 11 208900 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 12 208901 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 12 208902 -NCIT:C6256 Ovarian Serous Surface Papillary Adenocarcinoma 11 208903 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 11 208904 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 12 208905 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 13 208906 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 13 208907 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 12 208908 -NCIT:C7979 Ovarian Endometrioid Adenocarcinoma 10 208909 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 11 208910 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 11 208911 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 11 208912 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 12 208913 -NCIT:C186273 Unresectable Ovarian Endometrioid Adenocarcinoma 11 208914 -NCIT:C40061 Ovarian Endometrioid Adenocarcinoma with Squamous Differentiation 11 208915 -NCIT:C7833 Recurrent Ovarian Carcinoma 9 208916 -NCIT:C148025 Recurrent BRCA- Associated Ovarian Carcinoma 10 208917 -NCIT:C153614 Recurrent Ovarian Adenocarcinoma 10 208918 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 11 208919 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 11 208920 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 12 208921 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 12 208922 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 12 208923 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 11 208924 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 11 208925 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 12 208926 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 11 208927 -NCIT:C153818 Recurrent Malignant Ovarian Brenner Tumor 10 208928 -NCIT:C153819 Recurrent Ovarian Transitional Cell Carcinoma 10 208929 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 10 208930 -NCIT:C170754 Recurrent Ovarian Undifferentiated Carcinoma 10 208931 -NCIT:C178669 Recurrent Ovarian Seromucinous Carcinoma 10 208932 -NCIT:C188391 Recurrent Platinum-Sensitive Ovarian Carcinoma 10 208933 -NCIT:C190201 Locally Recurrent Ovarian Carcinoma 10 208934 -NCIT:C40035 Adenocarcinofibroma 7 208935 -NCIT:C40034 Ovarian Mucinous Adenocarcinofibroma 8 208936 -NCIT:C40079 Ovarian Clear Cell Adenocarcinofibroma 8 208937 -NCIT:C67092 Ovarian Serous Adenocarcinofibroma 8 208938 -NCIT:C40443 Ovarian Wilms Tumor 7 208939 -NCIT:C40444 Ovarian Malignant Mesothelioma 7 208940 -NCIT:C4514 Malignant Ovarian Germ Cell Tumor 7 208941 -NCIT:C39986 Ovarian Primitive Germ Cell Tumor 8 208942 -NCIT:C102870 Ovarian Non-Dysgerminomatous Germ Cell Tumor 9 208943 -NCIT:C39990 Ovarian Polyembryoma 10 208944 -NCIT:C8739 Stage I Ovarian Polyembryoma AJCC v6 and v7 11 208945 -NCIT:C8740 Stage II Ovarian Polyembryoma AJCC v6 and v7 11 208946 -NCIT:C8741 Stage III Ovarian Polyembryoma AJCC v6 and v7 11 208947 -NCIT:C8742 Stage IV Ovarian Polyembryoma AJCC v6 and v7 11 208948 -NCIT:C39991 Non-Gestational Ovarian Choriocarcinoma 10 208949 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 11 208950 -NCIT:C8107 Ovarian Yolk Sac Tumor 10 208951 -NCIT:C39987 Ovarian Yolk Sac Tumor, Polyvesicular Vitelline Pattern 11 208952 -NCIT:C39988 Ovarian Yolk Sac Tumor, Glandular Pattern 11 208953 -NCIT:C39989 Ovarian Yolk Sac Tumor, Hepatoid Pattern 11 208954 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 11 208955 -NCIT:C8735 Stage I Ovarian Yolk Sac Tumor AJCC v6 and v7 11 208956 -NCIT:C8736 Stage II Ovarian Yolk Sac Tumor AJCC v6 and v7 11 208957 -NCIT:C8737 Stage III Ovarian Yolk Sac Tumor AJCC v6 and v7 11 208958 -NCIT:C8738 Stage IV Ovarian Yolk Sac Tumor AJCC v6 and v7 11 208959 -NCIT:C8108 Ovarian Embryonal Carcinoma 10 208960 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 11 208961 -NCIT:C8725 Stage II Ovarian Embryonal Carcinoma AJCC v6 and v7 11 208962 -NCIT:C8728 Stage III Ovarian Embryonal Carcinoma AJCC v6 and v7 11 208963 -NCIT:C8729 Stage IV Ovarian Embryonal Carcinoma AJCC v6 and v7 11 208964 -NCIT:C8734 Stage I Ovarian Embryonal Carcinoma AJCC v6 and v7 11 208965 -NCIT:C8106 Ovarian Dysgerminoma 9 208966 -NCIT:C6550 Childhood Ovarian Dysgerminoma 10 208967 -NCIT:C8723 Stage I Ovarian Dysgerminoma AJCC v6 and v7 10 208968 -NCIT:C8724 Stage II Ovarian Dysgerminoma AJCC v6 and v7 10 208969 -NCIT:C8726 Stage III Ovarian Dysgerminoma AJCC v6 and v7 10 208970 -NCIT:C8727 Stage IV Ovarian Dysgerminoma AJCC v6 and v7 10 208971 -NCIT:C8114 Ovarian Mixed Germ Cell Tumor 9 208972 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 10 208973 -NCIT:C39995 Malignant Ovarian Teratoma 8 208974 -NCIT:C4291 Thyroid Carcinoma Arising in Struma Ovarii 8 208975 -NCIT:C68629 Childhood Malignant Ovarian Germ Cell Tumor 8 208976 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 9 208977 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 9 208978 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 9 208979 -NCIT:C6550 Childhood Ovarian Dysgerminoma 9 208980 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 9 208981 -NCIT:C8083 Stage I Ovarian Germ Cell Tumor AJCC v6 and v7 8 208982 -NCIT:C6291 Stage IA Ovarian Germ Cell Tumor AJCC v6 and v7 9 208983 -NCIT:C6292 Stage IB Ovarian Germ Cell Tumor AJCC v6 and v7 9 208984 -NCIT:C6293 Stage IC Ovarian Germ Cell Tumor AJCC v6 and v7 9 208985 -NCIT:C8723 Stage I Ovarian Dysgerminoma AJCC v6 and v7 9 208986 -NCIT:C8734 Stage I Ovarian Embryonal Carcinoma AJCC v6 and v7 9 208987 -NCIT:C8735 Stage I Ovarian Yolk Sac Tumor AJCC v6 and v7 9 208988 -NCIT:C8739 Stage I Ovarian Polyembryoma AJCC v6 and v7 9 208989 -NCIT:C8743 Stage I Ovarian Teratoma AJCC v6 and v7 9 208990 -NCIT:C8084 Stage II Ovarian Germ Cell Tumor AJCC v6 and v7 8 208991 -NCIT:C6294 Stage IIC Ovarian Germ Cell Tumor AJCC v6 and v7 9 208992 -NCIT:C6295 Stage IIB Ovarian Germ Cell Tumor AJCC v6 and v7 9 208993 -NCIT:C6296 Stage IIA Ovarian Germ Cell Tumor AJCC v6 and v7 9 208994 -NCIT:C8724 Stage II Ovarian Dysgerminoma AJCC v6 and v7 9 208995 -NCIT:C8725 Stage II Ovarian Embryonal Carcinoma AJCC v6 and v7 9 208996 -NCIT:C8736 Stage II Ovarian Yolk Sac Tumor AJCC v6 and v7 9 208997 -NCIT:C8740 Stage II Ovarian Polyembryoma AJCC v6 and v7 9 208998 -NCIT:C8744 Stage II Ovarian Teratoma AJCC v6 and v7 9 208999 -NCIT:C8085 Stage III Ovarian Germ Cell Tumor AJCC v6 and v7 8 209000 -NCIT:C6297 Stage IIIA Ovarian Germ Cell Tumor AJCC v6 and v7 9 209001 -NCIT:C6298 Stage IIIB Ovarian Germ Cell Tumor AJCC v6 and v7 9 209002 -NCIT:C6299 Stage IIIC Ovarian Germ Cell Tumor AJCC v6 and v7 9 209003 -NCIT:C8726 Stage III Ovarian Dysgerminoma AJCC v6 and v7 9 209004 -NCIT:C8728 Stage III Ovarian Embryonal Carcinoma AJCC v6 and v7 9 209005 -NCIT:C8737 Stage III Ovarian Yolk Sac Tumor AJCC v6 and v7 9 209006 -NCIT:C8741 Stage III Ovarian Polyembryoma AJCC v6 and v7 9 209007 -NCIT:C8745 Stage III Ovarian Teratoma AJCC v6 and v7 9 209008 -NCIT:C8086 Stage IV Ovarian Germ Cell Tumor AJCC v6 and v7 8 209009 -NCIT:C8727 Stage IV Ovarian Dysgerminoma AJCC v6 and v7 9 209010 -NCIT:C8729 Stage IV Ovarian Embryonal Carcinoma AJCC v6 and v7 9 209011 -NCIT:C8738 Stage IV Ovarian Yolk Sac Tumor AJCC v6 and v7 9 209012 -NCIT:C8742 Stage IV Ovarian Polyembryoma AJCC v6 and v7 9 209013 -NCIT:C8746 Stage IV Ovarian Teratoma AJCC v6 and v7 9 209014 -NCIT:C8087 Recurrent Ovarian Germ Cell Tumor 8 209015 -NCIT:C4515 Ovarian Choriocarcinoma 7 209016 -NCIT:C39991 Non-Gestational Ovarian Choriocarcinoma 8 209017 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 9 209018 -NCIT:C40442 Ovarian Gestational Choriocarcinoma 8 209019 -NCIT:C8730 Stage I Ovarian Choriocarcinoma 8 209020 -NCIT:C8731 Stage II Ovarian Choriocarcinoma 8 209021 -NCIT:C8732 Stage III Ovarian Choriocarcinoma 8 209022 -NCIT:C8733 Stage IV Ovarian Choriocarcinoma 8 209023 -NCIT:C7456 Metastatic Malignant Neoplasm in the Ovary 7 209024 -NCIT:C3153 Krukenberg Tumor 8 209025 -NCIT:C8053 Malignant Ovarian Sex Cord-Stromal Tumor 7 209026 -NCIT:C39981 Malignant Ovarian Steroid Cell Tumor 8 209027 -NCIT:C4210 Poorly Differentiated Ovarian Sertoli-Leydig Cell Tumor 8 209028 -NCIT:C39973 Poorly Differentiated Ovarian Sertoli-Leydig Cell Tumor, Variant with Heterologous Elements 9 209029 -NCIT:C6929 Malignant Ovarian Thecoma 8 209030 -NCIT:C6263 Malignant Ovarian Luteinized Thecoma 9 209031 -NCIT:C8403 Malignant Ovarian Granulosa Cell Tumor 8 209032 -NCIT:C160619 Recurrent Malignant Ovarian Granulosa Cell Tumor 9 209033 -NCIT:C8267 Ovarian Sarcoma 7 209034 -NCIT:C40063 Ovarian Low Grade Endometrioid Stromal Sarcoma 8 209035 -NCIT:C40066 Ovarian Undifferentiated Sarcoma 8 209036 -NCIT:C5232 Ovarian Angiosarcoma 8 209037 -NCIT:C5233 Ovarian Fibrosarcoma 8 209038 -NCIT:C5234 Ovarian Leiomyosarcoma 8 209039 -NCIT:C5236 Ovarian Rhabdomyosarcoma 8 209040 -NCIT:C6419 Ovarian Liposarcoma 8 209041 -NCIT:C5235 Ovarian Myxoid Liposarcoma 9 209042 -NCIT:C7317 Ovarian Adenosarcoma 8 209043 -NCIT:C7480 Malignant Fallopian Tube Neoplasm 6 209044 -NCIT:C126464 Fallopian Tube Lymphoma 7 209045 -NCIT:C3867 Fallopian Tube Carcinoma 7 209046 -NCIT:C115429 Recurrent Fallopian Tube Carcinoma 8 209047 -NCIT:C170750 Recurrent Platinum-Resistant Fallopian Tube Carcinoma 9 209048 -NCIT:C170755 Recurrent Fallopian Tube Undifferentiated Carcinoma 9 209049 -NCIT:C170757 Recurrent Fallopian Tube Transitional Cell Carcinoma 9 209050 -NCIT:C170766 Recurrent Fallopian Tube Adenocarcinoma 9 209051 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 10 209052 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 10 209053 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 10 209054 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 10 209055 -NCIT:C191395 Recurrent Platinum-Sensitive Fallopian Tube Carcinoma 9 209056 -NCIT:C139983 Fallopian Tube Cancer by AJCC v8 Stage 8 209057 -NCIT:C139984 Stage I Fallopian Tube Cancer AJCC v8 9 209058 -NCIT:C139985 Stage IA Fallopian Tube Cancer AJCC v8 10 209059 -NCIT:C139986 Stage IB Fallopian Tube Cancer AJCC v8 10 209060 -NCIT:C139987 Stage IC Fallopian Tube Cancer AJCC v8 10 209061 -NCIT:C139988 Stage II Fallopian Tube Cancer AJCC v8 9 209062 -NCIT:C139989 Stage IIA Fallopian Tube Cancer AJCC v8 10 209063 -NCIT:C139990 Stage IIB Fallopian Tube Cancer AJCC v8 10 209064 -NCIT:C139991 Stage III Fallopian Tube Cancer AJCC v8 9 209065 -NCIT:C139992 Stage IIIA Fallopian Tube Cancer AJCC v8 10 209066 -NCIT:C139993 Stage IIIA1 Fallopian Tube Cancer AJCC v8 11 209067 -NCIT:C139994 Stage IIIA2 Fallopian Tube Cancer AJCC v8 11 209068 -NCIT:C139995 Stage IIIB Fallopian Tube Cancer AJCC v8 10 209069 -NCIT:C139996 Stage IIIC Fallopian Tube Cancer AJCC v8 10 209070 -NCIT:C139997 Stage IV Fallopian Tube Cancer AJCC v8 9 209071 -NCIT:C139998 Stage IVA Fallopian Tube Cancer AJCC v8 10 209072 -NCIT:C139999 Stage IVB Fallopian Tube Cancer AJCC v8 10 209073 -NCIT:C152047 Refractory Fallopian Tube Carcinoma 8 209074 -NCIT:C157621 Platinum-Resistant Fallopian Tube Carcinoma 9 209075 -NCIT:C170750 Recurrent Platinum-Resistant Fallopian Tube Carcinoma 10 209076 -NCIT:C170971 Refractory Fallopian Tube Adenocarcinoma 9 209077 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 10 209078 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 10 209079 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 10 209080 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 10 209081 -NCIT:C178674 Refractory Fallopian Tube Transitional Cell Carcinoma 9 209082 -NCIT:C178675 Refractory Fallopian Tube Undifferentiated Carcinoma 9 209083 -NCIT:C178698 Platinum-Refractory Fallopian Tube Carcinoma 9 209084 -NCIT:C156063 Metastatic Fallopian Tube Carcinoma 8 209085 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 9 209086 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 10 209087 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 9 209088 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 9 209089 -NCIT:C160873 Platinum-Sensitive Fallopian Tube Carcinoma 8 209090 -NCIT:C191395 Recurrent Platinum-Sensitive Fallopian Tube Carcinoma 9 209091 -NCIT:C170969 Unresectable Fallopian Tube Carcinoma 8 209092 -NCIT:C170970 Unresectable Fallopian Tube Adenocarcinoma 9 209093 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 10 209094 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 10 209095 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 9 209096 -NCIT:C40104 Fallopian Tube Transitional Cell Carcinoma 8 209097 -NCIT:C170757 Recurrent Fallopian Tube Transitional Cell Carcinoma 9 209098 -NCIT:C178674 Refractory Fallopian Tube Transitional Cell Carcinoma 9 209099 -NCIT:C40455 Hereditary Fallopian Tube Carcinoma 8 209100 -NCIT:C6265 Fallopian Tube Adenocarcinoma 8 209101 -NCIT:C170766 Recurrent Fallopian Tube Adenocarcinoma 9 209102 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 10 209103 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 10 209104 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 10 209105 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 10 209106 -NCIT:C170970 Unresectable Fallopian Tube Adenocarcinoma 9 209107 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 10 209108 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 10 209109 -NCIT:C170971 Refractory Fallopian Tube Adenocarcinoma 9 209110 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 10 209111 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 10 209112 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 10 209113 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 10 209114 -NCIT:C40099 Fallopian Tube Serous Adenocarcinoma 9 209115 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 10 209116 -NCIT:C126456 Fallopian Tube High Grade Serous Adenocarcinoma 10 209117 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 11 209118 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 11 209119 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 11 209120 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 11 209121 -NCIT:C40103 Fallopian Tube Mucinous Adenocarcinoma 9 209122 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 10 209123 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 10 209124 -NCIT:C40105 Stage 0 Fallopian Tube Cancer AJCC v7 9 209125 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 10 209126 -NCIT:C6279 Fallopian Tube Endometrioid Adenocarcinoma 9 209127 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 10 209128 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 10 209129 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 10 209130 -NCIT:C6280 Fallopian Tube Clear Cell Adenocarcinoma 9 209131 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 10 209132 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 10 209133 -NCIT:C6278 Fallopian Tube Gestational Choriocarcinoma 8 209134 -NCIT:C6281 Fallopian Tube Undifferentiated Carcinoma 8 209135 -NCIT:C170755 Recurrent Fallopian Tube Undifferentiated Carcinoma 9 209136 -NCIT:C178675 Refractory Fallopian Tube Undifferentiated Carcinoma 9 209137 -NCIT:C6282 Fallopian Tube Squamous Cell Carcinoma 8 209138 -NCIT:C90499 Fallopian Tube Cancer by AJCC v6 Stage 8 209139 -NCIT:C8720 Stage I Fallopian Tube Cancer AJCC v6 and v7 9 209140 -NCIT:C6269 Stage IA Fallopian Tube Cancer AJCC v6 and v7 10 209141 -NCIT:C6270 Stage IB Fallopian Tube Cancer AJCC v6 and v7 10 209142 -NCIT:C6271 Stage IC Fallopian Tube Cancer AJCC v6 and v7 10 209143 -NCIT:C8721 Stage II Fallopian Tube Cancer AJCC v6 and v7 9 209144 -NCIT:C6272 Stage IIA Fallopian Tube Cancer AJCC v6 and v7 10 209145 -NCIT:C6276 Stage IIC Fallopian Tube Cancer AJCC v6 and v7 10 209146 -NCIT:C6277 Stage IIB Fallopian Tube Cancer AJCC v6 and v7 10 209147 -NCIT:C8722 Stage III Fallopian Tube Cancer AJCC v6 9 209148 -NCIT:C8963 Stage IV Fallopian Tube Cancer AJCC v6 and v7 9 209149 -NCIT:C91219 Fallopian Tube Cancer by AJCC v7 Stage 8 209150 -NCIT:C40105 Stage 0 Fallopian Tube Cancer AJCC v7 9 209151 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 10 209152 -NCIT:C8720 Stage I Fallopian Tube Cancer AJCC v6 and v7 9 209153 -NCIT:C6269 Stage IA Fallopian Tube Cancer AJCC v6 and v7 10 209154 -NCIT:C6270 Stage IB Fallopian Tube Cancer AJCC v6 and v7 10 209155 -NCIT:C6271 Stage IC Fallopian Tube Cancer AJCC v6 and v7 10 209156 -NCIT:C8721 Stage II Fallopian Tube Cancer AJCC v6 and v7 9 209157 -NCIT:C6272 Stage IIA Fallopian Tube Cancer AJCC v6 and v7 10 209158 -NCIT:C6276 Stage IIC Fallopian Tube Cancer AJCC v6 and v7 10 209159 -NCIT:C6277 Stage IIB Fallopian Tube Cancer AJCC v6 and v7 10 209160 -NCIT:C8963 Stage IV Fallopian Tube Cancer AJCC v6 and v7 9 209161 -NCIT:C89692 Stage III Fallopian Tube Cancer AJCC v7 9 209162 -NCIT:C6273 Stage IIIA Fallopian Tube Cancer AJCC v7 10 209163 -NCIT:C6274 Stage IIIB Fallopian Tube Cancer AJCC v7 10 209164 -NCIT:C6275 Stage IIIC Fallopian Tube Cancer AJCC v7 10 209165 -NCIT:C40124 Fallopian Tube Carcinosarcoma 7 209166 -NCIT:C40125 Fallopian Tube Adenosarcoma 7 209167 -NCIT:C40128 Fallopian Tube Leiomyosarcoma 7 209168 -NCIT:C7502 Malignant Vulvar Neoplasm 6 209169 -NCIT:C128165 Malignant Vulvar Phyllodes Tumor 7 209170 -NCIT:C128295 Vulvar Yolk Sac Tumor 7 209171 -NCIT:C3557 Malignant Clitoral Neoplasm 7 209172 -NCIT:C9362 Clitoral Carcinoma 8 209173 -NCIT:C40304 Malignant Vulvar Sweat Gland Neoplasm 7 209174 -NCIT:C128164 Vulvar Adenocarcinoma of Sweat Gland Origin 8 209175 -NCIT:C4027 Vulvar Paget Disease 9 209176 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 9 209177 -NCIT:C40306 Vulvar Porocarcinoma 10 209178 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 9 209179 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 9 209180 -NCIT:C40317 Vulvar Sarcoma 7 209181 -NCIT:C176515 Vulvar Angiosarcoma 8 209182 -NCIT:C181938 Vulvar Kaposi Sarcoma 8 209183 -NCIT:C181944 Vulvar Rhabdomyosarcoma 8 209184 -NCIT:C128273 Vulvar Alveolar Rhabdomyosarcoma 9 209185 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 9 209186 -NCIT:C181971 Vulvar Epithelioid Sarcoma 8 209187 -NCIT:C181973 Vulvar Distal-Type Epithelioid Sarcoma 9 209188 -NCIT:C40319 Vulvar Proximal-Type Epithelioid Sarcoma 9 209189 -NCIT:C181977 Vulvar Ewing Sarcoma 8 209190 -NCIT:C40318 Vulvar Leiomyosarcoma 8 209191 -NCIT:C40320 Vulvar Alveolar Soft Part Sarcoma 8 209192 -NCIT:C40321 Vulvar Liposarcoma 8 209193 -NCIT:C40329 Vulvar Melanoma 7 209194 -NCIT:C4866 Vulvar Carcinoma 7 209195 -NCIT:C128243 Vulvar Neuroendocrine Carcinoma 8 209196 -NCIT:C128244 Vulvar Small Cell Neuroendocrine Carcinoma 9 209197 -NCIT:C40298 Bartholin Gland Small Cell Neuroendocrine Carcinoma 10 209198 -NCIT:C128245 Vulvar Large Cell Neuroendocrine Carcinoma 9 209199 -NCIT:C128247 Vulvar Merkel Cell Carcinoma 9 209200 -NCIT:C139618 Vulvar Cancer by AJCC v8 Stage 8 209201 -NCIT:C139619 Stage I Vulvar Cancer AJCC v8 9 209202 -NCIT:C139620 Stage IA Vulvar Cancer AJCC v8 10 209203 -NCIT:C139621 Stage IB Vulvar Cancer AJCC v8 10 209204 -NCIT:C139622 Stage II Vulvar Cancer AJCC v8 9 209205 -NCIT:C139623 Stage III Vulvar Cancer AJCC v8 9 209206 -NCIT:C139624 Stage IIIA Vulvar Cancer AJCC v8 10 209207 -NCIT:C139625 Stage IIIB Vulvar Cancer AJCC v8 10 209208 -NCIT:C139626 Stage IIIC Vulvar Cancer AJCC v8 10 209209 -NCIT:C139627 Stage IV Vulvar Cancer AJCC v8 9 209210 -NCIT:C139628 Stage IVA Vulvar Cancer AJCC v8 10 209211 -NCIT:C139630 Stage IVB Vulvar Cancer AJCC v8 10 209212 -NCIT:C156066 Metastatic Vulvar Carcinoma 8 209213 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 9 209214 -NCIT:C170786 Advanced Vulvar Carcinoma 9 209215 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 9 209216 -NCIT:C174198 Unresectable Vulvar Carcinoma 8 209217 -NCIT:C174199 Unresectable Vulvar Squamous Cell Carcinoma 9 209218 -NCIT:C174508 Refractory Vulvar Carcinoma 8 209219 -NCIT:C185304 Refractory Vulvar Squamous Cell Carcinoma 9 209220 -NCIT:C4052 Vulvar Squamous Cell Carcinoma 8 209221 -NCIT:C128167 Vulvar Keratoacanthoma 9 209222 -NCIT:C174199 Unresectable Vulvar Squamous Cell Carcinoma 9 209223 -NCIT:C174200 Recurrent Vulvar Squamous Cell Carcinoma 9 209224 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 9 209225 -NCIT:C181902 Vulvar Squamous Cell Carcinoma, Not Otherwise Specified 9 209226 -NCIT:C181903 Human Papillomavirus-Independent Vulvar Squamous Cell Carcinoma 9 209227 -NCIT:C185304 Refractory Vulvar Squamous Cell Carcinoma 9 209228 -NCIT:C27679 Human Papillomavirus-Related Vulvar Squamous Cell Carcinoma 9 209229 -NCIT:C40287 Vulvar Warty Carcinoma 10 209230 -NCIT:C40284 Vulvar Keratinizing Squamous Cell Carcinoma 9 209231 -NCIT:C40285 Vulvar Non-Keratinizing Squamous Cell Carcinoma 9 209232 -NCIT:C40286 Vulvar Basaloid Carcinoma 9 209233 -NCIT:C40289 Vulvar Squamous Cell Carcinoma with Tumor Giant Cells 9 209234 -NCIT:C40293 Bartholin Gland Squamous Cell Carcinoma 9 209235 -NCIT:C6383 Vulvar Verrucous Carcinoma 9 209236 -NCIT:C6380 Vulvar Adenocarcinoma 8 209237 -NCIT:C128162 Vulvar Adenocarcinoma of Mammary Gland Type 9 209238 -NCIT:C128164 Vulvar Adenocarcinoma of Sweat Gland Origin 9 209239 -NCIT:C4027 Vulvar Paget Disease 10 209240 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 10 209241 -NCIT:C40306 Vulvar Porocarcinoma 11 209242 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 10 209243 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 10 209244 -NCIT:C128166 Vulvar Adenocarcinoma, Intestinal-Type 9 209245 -NCIT:C40309 Vulvar Sebaceous Carcinoma 9 209246 -NCIT:C7719 Bartholin Gland Adenocarcinoma 9 209247 -NCIT:C6381 Vulvar Basal Cell Carcinoma 8 209248 -NCIT:C90345 Vulvar Cancer by AJCC v6 Stage 8 209249 -NCIT:C4522 Stage 0 Vulvar Cancer AJCC v6 9 209250 -NCIT:C7854 Stage I Vulvar Cancer AJCC v6 9 209251 -NCIT:C6328 Stage IA Vulvar Carcinoma AJCC v6 10 209252 -NCIT:C6329 Stage IB Vulvar Carcinoma AJCC v6 10 209253 -NCIT:C9051 Stage II Vulvar Cancer AJCC v6 9 209254 -NCIT:C9052 Stage III Vulvar Cancer AJCC v6 9 209255 -NCIT:C9053 Stage IV Vulvar Cancer AJCC v6 9 209256 -NCIT:C27247 Stage IVB Vulvar Cancer AJCC v6 and v7 10 209257 -NCIT:C6330 Stage IVA Vulvar Cancer AJCC v6 10 209258 -NCIT:C9054 Recurrent Vulvar Carcinoma 8 209259 -NCIT:C174200 Recurrent Vulvar Squamous Cell Carcinoma 9 209260 -NCIT:C9055 Bartholin Gland Carcinoma 8 209261 -NCIT:C40293 Bartholin Gland Squamous Cell Carcinoma 9 209262 -NCIT:C40295 Bartholin Gland Adenoid Cystic Carcinoma 9 209263 -NCIT:C40296 Bartholin Gland Adenosquamous Carcinoma 9 209264 -NCIT:C40297 Bartholin Gland Transitional Cell Carcinoma 9 209265 -NCIT:C40298 Bartholin Gland Small Cell Neuroendocrine Carcinoma 9 209266 -NCIT:C7719 Bartholin Gland Adenocarcinoma 9 209267 -NCIT:C91203 Vulvar Cancer by AJCC v7 Stage 8 209268 -NCIT:C89445 Stage 0 Vulvar Cancer AJCC v7 9 209269 -NCIT:C89447 Stage I Vulvar Cancer AJCC v7 9 209270 -NCIT:C89448 Stage IA Vulvar Cancer AJCC v7 10 209271 -NCIT:C89449 Stage IB Vulvar Cancer AJCC v7 10 209272 -NCIT:C89451 Stage II Vulvar Cancer AJCC v7 9 209273 -NCIT:C89452 Stage III Vulvar Cancer AJCC v7 9 209274 -NCIT:C87003 Stage IIIA Vulvar Cancer AJCC v7 10 209275 -NCIT:C87004 Stage IIIB Vulvar Cancer AJCC v7 10 209276 -NCIT:C87005 Stage IIIC Vulvar Cancer AJCC v7 10 209277 -NCIT:C89453 Stage IV Vulvar Cancer AJCC v7 9 209278 -NCIT:C27247 Stage IVB Vulvar Cancer AJCC v6 and v7 10 209279 -NCIT:C89454 Stage IVA Vulvar Cancer AJCC v7 10 209280 -NCIT:C9362 Clitoral Carcinoma 8 209281 -NCIT:C9363 Labia Majora Carcinoma 8 209282 -NCIT:C9364 Labia Minora Carcinoma 8 209283 -NCIT:C6332 Metastatic Malignant Neoplasm in the Vulva 7 209284 -NCIT:C7637 Malignant Labia Minora Neoplasm 7 209285 -NCIT:C9364 Labia Minora Carcinoma 8 209286 -NCIT:C7638 Malignant Labia Majora Neoplasm 7 209287 -NCIT:C9363 Labia Majora Carcinoma 8 209288 -NCIT:C8975 Malignant Mixed Mesodermal (Mullerian) Tumor 6 209289 -NCIT:C159507 Primary Peritoneal Carcinosarcoma 7 209290 -NCIT:C170929 Metastatic Malignant Mixed Mesodermal (Mullerian) Tumor 7 209291 -NCIT:C170930 Advanced Malignant Mixed Mesodermal (Mullerian) Tumor 8 209292 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 9 209293 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 9 209294 -NCIT:C170931 Metastatic Uterine Corpus Carcinosarcoma 8 209295 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 9 209296 -NCIT:C170933 Metastatic Ovarian Carcinosarcoma 8 209297 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 9 209298 -NCIT:C40124 Fallopian Tube Carcinosarcoma 7 209299 -NCIT:C40278 Vaginal Carcinosarcoma 7 209300 -NCIT:C42700 Uterine Carcinosarcoma 7 209301 -NCIT:C113238 Uterine Carcinosarcoma, Homologous Type 8 209302 -NCIT:C113239 Uterine Carcinosarcoma, Heterologous Type 8 209303 -NCIT:C36097 Cervical Carcinosarcoma 8 209304 -NCIT:C9180 Uterine Corpus Carcinosarcoma 8 209305 -NCIT:C155818 Recurrent Uterine Corpus Carcinosarcoma 9 209306 -NCIT:C158381 Refractory Uterine Corpus Carcinosarcoma 9 209307 -NCIT:C170931 Metastatic Uterine Corpus Carcinosarcoma 9 209308 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 10 209309 -NCIT:C9192 Ovarian Carcinosarcoma 7 209310 -NCIT:C153347 Recurrent Ovarian Carcinosarcoma 8 209311 -NCIT:C170933 Metastatic Ovarian Carcinosarcoma 8 209312 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 9 209313 -NCIT:C9474 Adenosarcoma 6 209314 -NCIT:C102570 Broad Ligament Adenosarcoma 7 209315 -NCIT:C40125 Fallopian Tube Adenosarcoma 7 209316 -NCIT:C40229 Cervical Adenosarcoma 7 209317 -NCIT:C40277 Vaginal Adenosarcoma 7 209318 -NCIT:C6336 Uterine Corpus Adenosarcoma 7 209319 -NCIT:C139894 Uterine Corpus Adenosarcoma by AJCC v8 Stage 8 209320 -NCIT:C139895 Stage I Uterine Corpus Adenosarcoma AJCC v8 9 209321 -NCIT:C139896 Stage IA Uterine Corpus Adenosarcoma AJCC v8 10 209322 -NCIT:C139897 Stage IB Uterine Corpus Adenosarcoma AJCC v8 10 209323 -NCIT:C139898 Stage IC Uterine Corpus Adenosarcoma AJCC v8 10 209324 -NCIT:C139899 Stage II Uterine Corpus Adenosarcoma AJCC v8 9 209325 -NCIT:C139900 Stage III Uterine Corpus Adenosarcoma AJCC v8 9 209326 -NCIT:C139901 Stage IIIA Uterine Corpus Adenosarcoma AJCC v8 10 209327 -NCIT:C139902 Stage IIIB Uterine Corpus Adenosarcoma AJCC v8 10 209328 -NCIT:C139903 Stage IIIC Uterine Corpus Adenosarcoma AJCC v8 10 209329 -NCIT:C139904 Stage IV Uterine Corpus Adenosarcoma AJCC v8 9 209330 -NCIT:C139905 Stage IVA Uterine Corpus Adenosarcoma AJCC v8 10 209331 -NCIT:C139906 Stage IVB Uterine Corpus Adenosarcoma AJCC v8 10 209332 -NCIT:C7317 Ovarian Adenosarcoma 7 209333 -NCIT:C67561 Malignant Sex Cord-Stromal Tumor 5 209334 -NCIT:C39948 Malignant Testicular Sex Cord-Stromal Tumor 6 209335 -NCIT:C8053 Malignant Ovarian Sex Cord-Stromal Tumor 6 209336 -NCIT:C39981 Malignant Ovarian Steroid Cell Tumor 7 209337 -NCIT:C4210 Poorly Differentiated Ovarian Sertoli-Leydig Cell Tumor 7 209338 -NCIT:C39973 Poorly Differentiated Ovarian Sertoli-Leydig Cell Tumor, Variant with Heterologous Elements 8 209339 -NCIT:C6929 Malignant Ovarian Thecoma 7 209340 -NCIT:C6263 Malignant Ovarian Luteinized Thecoma 8 209341 -NCIT:C8403 Malignant Ovarian Granulosa Cell Tumor 7 209342 -NCIT:C160619 Recurrent Malignant Ovarian Granulosa Cell Tumor 8 209343 -NCIT:C8561 Malignant Male Reproductive System Neoplasm 5 209344 -NCIT:C150533 Recurrent Malignant Male Reproductive System Neoplasm 6 209345 -NCIT:C138021 Recurrent Testicular Lymphoma 7 209346 -NCIT:C179466 Recurrent Malignant Spermatic Cord Neoplasm 7 209347 -NCIT:C7621 Recurrent Male Reproductive System Carcinoma 7 209348 -NCIT:C7870 Recurrent Penile Carcinoma 8 209349 -NCIT:C7902 Recurrent Prostate Carcinoma 8 209350 -NCIT:C156771 Biochemically Recurrent Prostate Carcinoma 9 209351 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 9 209352 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 10 209353 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 9 209354 -NCIT:C9369 Recurrent Malignant Testicular Germ Cell Tumor 7 209355 -NCIT:C150534 Refractory Malignant Male Reproductive System Neoplasm 6 209356 -NCIT:C138022 Refractory Testicular Lymphoma 7 209357 -NCIT:C177149 Refractory Male Reproductive System Carcinoma 7 209358 -NCIT:C167255 Refractory Prostate Carcinoma 8 209359 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 9 209360 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 10 209361 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 10 209362 -NCIT:C161609 Double-Negative Prostate Carcinoma 10 209363 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 10 209364 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 10 209365 -NCIT:C167256 Refractory Prostate Adenocarcinoma 9 209366 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 9 209367 -NCIT:C177150 Refractory Penile Carcinoma 8 209368 -NCIT:C9077 Refractory Malignant Testicular Germ Cell Tumor 7 209369 -NCIT:C161644 Malignant Seminal Vesicle Neoplasm 6 209370 -NCIT:C161634 Seminal Vesicle Squamous Cell Carcinoma 7 209371 -NCIT:C161641 Seminal Vesicle Leiomyosarcoma 7 209372 -NCIT:C161642 Seminal Vesicle Angiosarcoma 7 209373 -NCIT:C161649 Metastatic Malignant Neoplasm in the Seminal Vesicle 7 209374 -NCIT:C39906 Seminal Vesicle Adenocarcinoma 7 209375 -NCIT:C162477 Paratesticular Malignant Mesothelioma 6 209376 -NCIT:C173605 Paratesticular Epithelioid Mesothelioma 7 209377 -NCIT:C173609 Unresectable Paratesticular Epithelioid Mesothelioma 8 209378 -NCIT:C173606 Paratesticular Sarcomatoid Mesothelioma 7 209379 -NCIT:C173610 Unresectable Paratesticular Sarcomatoid Mesothelioma 8 209380 -NCIT:C173607 Paratesticular Biphasic Mesothelioma 7 209381 -NCIT:C173611 Unresectable Paratesticular Biphasic Mesothelioma 8 209382 -NCIT:C173608 Unresectable Paratesticular Malignant Mesothelioma 7 209383 -NCIT:C173609 Unresectable Paratesticular Epithelioid Mesothelioma 8 209384 -NCIT:C173610 Unresectable Paratesticular Sarcomatoid Mesothelioma 8 209385 -NCIT:C173611 Unresectable Paratesticular Biphasic Mesothelioma 8 209386 -NCIT:C162486 Paratesticular Squamous Cell Carcinoma 6 209387 -NCIT:C161634 Seminal Vesicle Squamous Cell Carcinoma 7 209388 -NCIT:C162489 Paratesticular Wilms Tumor 6 209389 -NCIT:C162493 Paratesticular Liposarcoma 6 209390 -NCIT:C162495 Paratesticular Leiomyosarcoma 6 209391 -NCIT:C161641 Seminal Vesicle Leiomyosarcoma 7 209392 -NCIT:C162497 Paratesticular Rhabdomyosarcoma 6 209393 -NCIT:C181196 Male Reproductive System Carcinoma 6 209394 -NCIT:C177149 Refractory Male Reproductive System Carcinoma 7 209395 -NCIT:C167255 Refractory Prostate Carcinoma 8 209396 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 9 209397 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 10 209398 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 10 209399 -NCIT:C161609 Double-Negative Prostate Carcinoma 10 209400 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 10 209401 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 10 209402 -NCIT:C167256 Refractory Prostate Adenocarcinoma 9 209403 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 9 209404 -NCIT:C177150 Refractory Penile Carcinoma 8 209405 -NCIT:C39906 Seminal Vesicle Adenocarcinoma 7 209406 -NCIT:C39957 Epididymal Adenocarcinoma 7 209407 -NCIT:C4863 Prostate Carcinoma 7 209408 -NCIT:C103817 Hereditary Prostate Carcinoma 8 209409 -NCIT:C114933 Hormone-Resistant Prostate Carcinoma 8 209410 -NCIT:C138167 Prostate Carcinoma by Gene Expression Profile 8 209411 -NCIT:C138168 Luminal A Prostate Carcinoma 9 209412 -NCIT:C138169 Luminal B Prostate Carcinoma 9 209413 -NCIT:C138170 Basal-Like Prostate Carcinoma 9 209414 -NCIT:C140163 Prostate Cancer by AJCC v8 Stage 8 209415 -NCIT:C140164 Stage I Prostate Cancer AJCC v8 9 209416 -NCIT:C140165 Stage II Prostate Cancer AJCC v8 9 209417 -NCIT:C140166 Stage IIA Prostate Cancer AJCC v8 10 209418 -NCIT:C140167 Stage IIB Prostate Cancer AJCC v8 10 209419 -NCIT:C140168 Stage IIC Prostate Cancer AJCC v8 10 209420 -NCIT:C140169 Stage III Prostate Cancer AJCC v8 9 209421 -NCIT:C140170 Stage IIIA Prostate Cancer AJCC v8 10 209422 -NCIT:C140171 Stage IIIB Prostate Cancer AJCC v8 10 209423 -NCIT:C140172 Stage IIIC Prostate Cancer AJCC v8 10 209424 -NCIT:C140173 Stage IV Prostate Cancer AJCC v8 9 209425 -NCIT:C140174 Stage IVA Prostate Cancer AJCC v8 10 209426 -NCIT:C140175 Stage IVB Prostate Cancer AJCC v8 10 209427 -NCIT:C161022 Intraductal Prostate Carcinoma 8 209428 -NCIT:C167255 Refractory Prostate Carcinoma 8 209429 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 9 209430 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 10 209431 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 10 209432 -NCIT:C161609 Double-Negative Prostate Carcinoma 10 209433 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 10 209434 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 10 209435 -NCIT:C167256 Refractory Prostate Adenocarcinoma 9 209436 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 9 209437 -NCIT:C171611 Unresectable Prostate Carcinoma 8 209438 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 9 209439 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 209440 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 9 209441 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 9 209442 -NCIT:C176517 Localized Prostate Carcinoma 8 209443 -NCIT:C39898 Primary Prostate Urothelial Carcinoma 8 209444 -NCIT:C39900 Prostatic Urethra Urothelial Carcinoma 9 209445 -NCIT:C39901 Prostatic Duct Urothelial Carcinoma 9 209446 -NCIT:C48596 Invasive Prostate Carcinoma 8 209447 -NCIT:C158912 Prostate Neuroendocrine Carcinoma 9 209448 -NCIT:C158650 Prostate Large Cell Neuroendocrine Carcinoma 10 209449 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 10 209450 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 11 209451 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 11 209452 -NCIT:C6766 Prostate Small Cell Neuroendocrine Carcinoma 10 209453 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 11 209454 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 11 209455 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 11 209456 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 11 209457 -NCIT:C2919 Prostate Adenocarcinoma 9 209458 -NCIT:C150557 Prostate Adenocarcinoma without Neuroendocrine Differentiation 10 209459 -NCIT:C164185 Aggressive Prostate Adenocarcinoma 10 209460 -NCIT:C164186 Prostate Adenocarcinoma by AJCC v7 Stage 10 209461 -NCIT:C8947 Stage I Prostate Adenocarcinoma AJCC v7 11 209462 -NCIT:C8948 Stage II Prostate Adenocarcinoma AJCC v7 11 209463 -NCIT:C8949 Stage III Prostate Adenocarcinoma AJCC v7 11 209464 -NCIT:C8950 Stage IV Prostate Adenocarcinoma AJCC v7 11 209465 -NCIT:C167256 Refractory Prostate Adenocarcinoma 10 209466 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 10 209467 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 11 209468 -NCIT:C27905 Well Differentiated Prostate Adenocarcinoma 10 209469 -NCIT:C39896 Prostate Ductal Adenocarcinoma, Papillary Pattern 11 209470 -NCIT:C27906 Moderately Differentiated Prostate Adenocarcinoma 10 209471 -NCIT:C27916 Poorly Differentiated Prostate Adenocarcinoma 10 209472 -NCIT:C5530 Prostate Acinar Adenocarcinoma, Sarcomatoid Variant 11 209473 -NCIT:C39903 Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 209474 -NCIT:C158656 Usual Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 209475 -NCIT:C158664 Prostate Adenocarcinoma with Paneth Cell-Like Neuroendocrine Differentiation 11 209476 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 209477 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 12 209478 -NCIT:C5596 Prostate Acinar Adenocarcinoma 10 209479 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 11 209480 -NCIT:C158656 Usual Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 209481 -NCIT:C160817 Prostate Acinar Adenocarcinoma, Microcystic Variant 11 209482 -NCIT:C160818 Prostate Acinar Adenocarcinoma, Pleomorphic Giant Cell Variant 11 209483 -NCIT:C39880 Prostate Acinar Adenocarcinoma, Atrophic Variant 11 209484 -NCIT:C39881 Prostate Acinar Adenocarcinoma, Pseudohyperplastic Variant 11 209485 -NCIT:C39882 Prostate Acinar Adenocarcinoma, Foamy Gland Variant 11 209486 -NCIT:C39884 Prostate Acinar Adenocarcinoma, Oncocytic Variant 11 209487 -NCIT:C39885 Prostate Acinar Adenocarcinoma, Lymphoepithelioma-Like Variant 11 209488 -NCIT:C5530 Prostate Acinar Adenocarcinoma, Sarcomatoid Variant 11 209489 -NCIT:C5535 Prostate Acinar Adenocarcinoma, Signet Ring-Like Cell Variant 11 209490 -NCIT:C5537 Prostate Acinar Mucinous Adenocarcinoma 11 209491 -NCIT:C6813 Prostate Ductal Adenocarcinoma 10 209492 -NCIT:C39895 Prostate Ductal Adenocarcinoma, Cribriform Pattern 11 209493 -NCIT:C39896 Prostate Ductal Adenocarcinoma, Papillary Pattern 11 209494 -NCIT:C39897 Prostate Ductal Adenocarcinoma, Solid Pattern 11 209495 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 10 209496 -NCIT:C156286 Advanced Prostate Adenocarcinoma 11 209497 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 12 209498 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 11 209499 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 12 209500 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 209501 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 12 209502 -NCIT:C39902 Prostate Basal Cell Carcinoma 9 209503 -NCIT:C5536 Prostate Squamous Cell Carcinoma 9 209504 -NCIT:C5538 Prostate Adenosquamous Carcinoma 9 209505 -NCIT:C5539 Prostate Adenoid Cystic Carcinoma 9 209506 -NCIT:C5597 Prostate Undifferentiated Carcinoma 9 209507 -NCIT:C7079 Prostate Cancer by Whitmore-Jewett Stage 8 209508 -NCIT:C7099 Stage D Prostate Cancer 9 209509 -NCIT:C7552 Stage C Prostate Cancer 9 209510 -NCIT:C7554 Stage B Prostate Cancer 9 209511 -NCIT:C7556 Stage A Prostate Cancer 9 209512 -NCIT:C7902 Recurrent Prostate Carcinoma 8 209513 -NCIT:C156771 Biochemically Recurrent Prostate Carcinoma 9 209514 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 9 209515 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 10 209516 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 9 209517 -NCIT:C8946 Metastatic Prostate Carcinoma 8 209518 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 9 209519 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 10 209520 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 10 209521 -NCIT:C161609 Double-Negative Prostate Carcinoma 10 209522 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 10 209523 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 10 209524 -NCIT:C132881 Prostate Carcinoma Metastatic in the Soft Tissue 9 209525 -NCIT:C148536 Castration-Naive Prostate Carcinoma 9 209526 -NCIT:C153336 Castration-Sensitive Prostate Carcinoma 9 209527 -NCIT:C156284 Advanced Prostate Carcinoma 9 209528 -NCIT:C156286 Advanced Prostate Adenocarcinoma 10 209529 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 209530 -NCIT:C156285 Locally Advanced Prostate Carcinoma 9 209531 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 10 209532 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 11 209533 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 10 209534 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 11 209535 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 10 209536 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 9 209537 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 10 209538 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 10 209539 -NCIT:C161584 Prostate Carcinoma Metastatic in the Pelvic Cavity 9 209540 -NCIT:C161587 Prostate Carcinoma Metastatic in the Lymph Nodes 9 209541 -NCIT:C171265 Oligometastatic Prostate Carcinoma 9 209542 -NCIT:C36307 Prostate Carcinoma Metastatic in the Lung 9 209543 -NCIT:C36308 Prostate Carcinoma Metastatic in the Bone 9 209544 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 9 209545 -NCIT:C156286 Advanced Prostate Adenocarcinoma 10 209546 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 209547 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 10 209548 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 11 209549 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 209550 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 209551 -NCIT:C90521 Prostate Cancer by AJCC v6 Stage 8 209552 -NCIT:C7551 Stage III Prostate Cancer AJCC v6 9 209553 -NCIT:C7553 Stage II Prostate Cancer AJCC v6 9 209554 -NCIT:C7555 Stage I Prostate Cancer AJCC v6 9 209555 -NCIT:C9075 Stage IV Prostate Cancer AJCC v6 9 209556 -NCIT:C91233 Prostate Cancer by AJCC v7 Stage 8 209557 -NCIT:C164186 Prostate Adenocarcinoma by AJCC v7 Stage 9 209558 -NCIT:C8947 Stage I Prostate Adenocarcinoma AJCC v7 10 209559 -NCIT:C8948 Stage II Prostate Adenocarcinoma AJCC v7 10 209560 -NCIT:C8949 Stage III Prostate Adenocarcinoma AJCC v7 10 209561 -NCIT:C8950 Stage IV Prostate Adenocarcinoma AJCC v7 10 209562 -NCIT:C89232 Stage I Prostate Cancer AJCC v7 9 209563 -NCIT:C8947 Stage I Prostate Adenocarcinoma AJCC v7 10 209564 -NCIT:C89233 Stage II Prostate Cancer AJCC v7 9 209565 -NCIT:C88106 Stage IIA Prostate Cancer AJCC v7 10 209566 -NCIT:C88107 Stage IIB Prostate Cancer AJCC v7 10 209567 -NCIT:C8948 Stage II Prostate Adenocarcinoma AJCC v7 10 209568 -NCIT:C89234 Stage III Prostate Cancer AJCC v7 9 209569 -NCIT:C8949 Stage III Prostate Adenocarcinoma AJCC v7 10 209570 -NCIT:C89235 Stage IV Prostate Cancer AJCC v7 9 209571 -NCIT:C8950 Stage IV Prostate Adenocarcinoma AJCC v7 10 209572 -NCIT:C7621 Recurrent Male Reproductive System Carcinoma 7 209573 -NCIT:C7870 Recurrent Penile Carcinoma 8 209574 -NCIT:C7902 Recurrent Prostate Carcinoma 8 209575 -NCIT:C156771 Biochemically Recurrent Prostate Carcinoma 9 209576 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 9 209577 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 10 209578 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 9 209579 -NCIT:C8955 Rete Testis Adenocarcinoma 7 209580 -NCIT:C9061 Penile Carcinoma 7 209581 -NCIT:C118820 Adult Penile Carcinoma 8 209582 -NCIT:C140075 Penile Cancer by AJCC v8 Stage 8 209583 -NCIT:C140076 Stage 0 Penile Cancer AJCC v8 9 209584 -NCIT:C140077 Stage 0is Penile Cancer AJCC v8 10 209585 -NCIT:C140078 Stage 0a Penile Cancer AJCC v8 10 209586 -NCIT:C140079 Stage I Penile Cancer AJCC v8 9 209587 -NCIT:C140080 Stage II Penile Cancer AJCC v8 9 209588 -NCIT:C140081 Stage IIA Penile Cancer AJCC v8 10 209589 -NCIT:C140083 Stage IIB Penile Cancer AJCC v8 10 209590 -NCIT:C140084 Stage III Penile Cancer AJCC v8 9 209591 -NCIT:C140085 Stage IIIA Penile Cancer AJCC v8 10 209592 -NCIT:C140086 Stage IIIB Penile Cancer AJCC v8 10 209593 -NCIT:C140087 Stage IV Penile Cancer AJCC v8 9 209594 -NCIT:C177150 Refractory Penile Carcinoma 8 209595 -NCIT:C27784 Metastatic Penile Carcinoma 8 209596 -NCIT:C170789 Locally Advanced Penile Carcinoma 9 209597 -NCIT:C170790 Advanced Penile Carcinoma 9 209598 -NCIT:C182111 Metastatic Squamous Cell Carcinoma of the Penis 9 209599 -NCIT:C27817 Penile Paget Disease 8 209600 -NCIT:C39961 Penile Basal Cell Carcinoma 8 209601 -NCIT:C7729 Squamous Cell Carcinoma of the Penis 8 209602 -NCIT:C159244 Non-Human Papillomavirus-Related Squamous Cell Carcinoma of the Penis 9 209603 -NCIT:C103340 Papillary Carcinoma of the Penis, Not Otherwise Specified 10 209604 -NCIT:C159245 Pseudohyperplastic Carcinoma of the Penis 10 209605 -NCIT:C159246 Pseudoglandular Carcinoma of the Penis 10 209606 -NCIT:C159248 Adenosquamous Carcinoma of the Penis 10 209607 -NCIT:C39959 Mixed Squamous Cell Carcinoma of the Penis 10 209608 -NCIT:C6979 Squamous Cell Carcinoma of the Penis, Usual Type 10 209609 -NCIT:C6982 Verrucous Carcinoma of the Penis 10 209610 -NCIT:C159247 Carcinoma Cuniculatum of the Penis 11 209611 -NCIT:C6984 Sarcomatoid Carcinoma of the Penis 10 209612 -NCIT:C182111 Metastatic Squamous Cell Carcinoma of the Penis 9 209613 -NCIT:C27682 Human Papillomavirus-Related Squamous Cell Carcinoma of the Penis 9 209614 -NCIT:C159250 Warty-Basaloid Carcinoma of the Penis 10 209615 -NCIT:C159251 Clear Cell Squamous Cell Carcinoma of the Penis 10 209616 -NCIT:C159252 Lymphoepithelioma-Like Carcinoma of the Penis 10 209617 -NCIT:C6980 Basaloid Squamous Cell Carcinoma of the Penis 10 209618 -NCIT:C159249 Papillary-Basaloid Carcinoma of the Penis 11 209619 -NCIT:C6981 Warty Carcinoma of the Penis 10 209620 -NCIT:C27790 Penile Carcinoma In Situ 9 209621 -NCIT:C6983 Papillary Carcinoma of the Penis 9 209622 -NCIT:C103340 Papillary Carcinoma of the Penis, Not Otherwise Specified 10 209623 -NCIT:C159249 Papillary-Basaloid Carcinoma of the Penis 10 209624 -NCIT:C6981 Warty Carcinoma of the Penis 10 209625 -NCIT:C6982 Verrucous Carcinoma of the Penis 10 209626 -NCIT:C159247 Carcinoma Cuniculatum of the Penis 11 209627 -NCIT:C7870 Recurrent Penile Carcinoma 8 209628 -NCIT:C90520 Penile Cancer by AJCC v6 Stage 8 209629 -NCIT:C3643 Stage 0 Penile Cancer AJCC v6 9 209630 -NCIT:C7867 Stage I Penile Cancer AJCC v6 9 209631 -NCIT:C7868 Stage II Penile Cancer AJCC v6 9 209632 -NCIT:C7869 Stage III Penile Cancer AJCC v6 9 209633 -NCIT:C8959 Stage IV Penile Cancer AJCC v6 9 209634 -NCIT:C91234 Penile Cancer by AJCC v7 Stage 8 209635 -NCIT:C89194 Stage 0 Penile Cancer AJCC v7 9 209636 -NCIT:C27790 Penile Carcinoma In Situ 10 209637 -NCIT:C89195 Stage I Penile Cancer AJCC v7 9 209638 -NCIT:C89196 Stage II Penile Cancer AJCC v7 9 209639 -NCIT:C89197 Stage III Penile Cancer AJCC v7 9 209640 -NCIT:C88104 Stage IIIa Penile Cancer AJCC v7 10 209641 -NCIT:C88105 Stage IIIb Penile Cancer AJCC v7 10 209642 -NCIT:C89198 Stage IV Penile Cancer AJCC v7 9 209643 -NCIT:C3558 Malignant Epididymal Neoplasm 6 209644 -NCIT:C39957 Epididymal Adenocarcinoma 7 209645 -NCIT:C8544 Metastatic Malignant Neoplasm in the Epididymis 7 209646 -NCIT:C3559 Malignant Spermatic Cord Neoplasm 6 209647 -NCIT:C179466 Recurrent Malignant Spermatic Cord Neoplasm 7 209648 -NCIT:C7251 Malignant Testicular Neoplasm 6 209649 -NCIT:C140225 Testicular Cancer by AJCC v8 Stage 7 209650 -NCIT:C140226 Stage 0 Testicular Cancer AJCC v8 8 209651 -NCIT:C40345 Testicular Intratubular Germ Cell Neoplasia 9 209652 -NCIT:C7325 Intratubular Non-Seminoma 10 209653 -NCIT:C7329 Intratubular Seminoma 10 209654 -NCIT:C140227 Stage I Testicular Cancer AJCC v8 8 209655 -NCIT:C140228 Stage IA Testicular Cancer AJCC v8 9 209656 -NCIT:C140229 Stage IB Testicular Cancer AJCC v8 9 209657 -NCIT:C140232 Stage IS Testicular Cancer AJCC v8 9 209658 -NCIT:C140233 Stage II Testicular Cancer AJCC v8 8 209659 -NCIT:C140234 Stage IIA Testicular Cancer AJCC v8 9 209660 -NCIT:C140235 Stage IIB Testicular Cancer AJCC v8 9 209661 -NCIT:C140236 Stage IIC Testicular Cancer AJCC v8 9 209662 -NCIT:C140237 Stage III Testicular Cancer AJCC v8 8 209663 -NCIT:C140238 Stage IIIA Testicular Cancer AJCC v8 9 209664 -NCIT:C140239 Stage IIIB Testicular Cancer AJCC v8 9 209665 -NCIT:C140240 Stage IIIC Testicular Cancer AJCC v8 9 209666 -NCIT:C140241 Testicular Cancer by AJCC v6 and v7 Stage 7 209667 -NCIT:C4523 Stage 0 Testicular Cancer AJCC v6 and v7 8 209668 -NCIT:C40345 Testicular Intratubular Germ Cell Neoplasia 9 209669 -NCIT:C7325 Intratubular Non-Seminoma 10 209670 -NCIT:C7329 Intratubular Seminoma 10 209671 -NCIT:C7901 Stage I Testicular Cancer AJCC v6 and v7 8 209672 -NCIT:C27785 Stage I Testicular Non-Seminomatous Germ Cell Tumor AJCC v6 and v7 9 209673 -NCIT:C8907 Stage I Testicular Choriocarcinoma AJCC v6 and v7 10 209674 -NCIT:C8908 Stage I Testicular Embryonal Carcinoma AJCC v6 and v7 10 209675 -NCIT:C8914 Stage I Immature Testicular Teratoma AJCC v6 and v7 10 209676 -NCIT:C8920 Stage I Testicular Yolk Sac Tumor AJCC v6 and v7 10 209677 -NCIT:C6361 Stage IA Testicular Cancer AJCC v6 and v7 9 209678 -NCIT:C6362 Stage IB Testicular Cancer AJCC v6 and v7 9 209679 -NCIT:C6363 Stage IS Testicular Cancer AJCC v6 and v7 9 209680 -NCIT:C8912 Stage I Testicular Mixed Germ Cell Tumor AJCC v6 and v7 9 209681 -NCIT:C8917 Stage I Testicular Seminoma AJCC v6 and v7 9 209682 -NCIT:C9073 Stage II Testicular Cancer AJCC v6 and v7 8 209683 -NCIT:C27786 Stage II Testicular Non-Seminomatous Germ Cell Tumor AJCC v6 and v7 9 209684 -NCIT:C8606 Stage II Testicular Choriocarcinoma AJCC v6 and v7 10 209685 -NCIT:C8909 Stage II Testicular Embryonal Carcinoma AJCC v6 and v7 10 209686 -NCIT:C8915 Stage II Immature Testicular Teratoma AJCC v6 and v7 10 209687 -NCIT:C8921 Stage II Testicular Yolk Sac Tumor AJCC v6 and v7 10 209688 -NCIT:C6364 Stage IIA Testicular Cancer AJCC v6 and v7 9 209689 -NCIT:C6365 Stage IIB Testicular Cancer AJCC v6 and v7 9 209690 -NCIT:C6366 Stage IIC Testicular Cancer AJCC v6 and v7 9 209691 -NCIT:C8911 Stage II Testicular Mixed Germ Cell Tumor AJCC v6 and v7 9 209692 -NCIT:C8918 Stage II Testicular Seminoma AJCC v6 and v7 9 209693 -NCIT:C9074 Stage III Testicular Cancer AJCC v6 and v7 8 209694 -NCIT:C27787 Stage III Testicular Non-Seminomatous Germ Cell Tumor AJCC v6 and v7 9 209695 -NCIT:C8900 Stage III Testicular Choriocarcinoma AJCC v6 and v7 10 209696 -NCIT:C8910 Stage III Testicular Embryonal Carcinoma AJCC v6 and v7 10 209697 -NCIT:C8916 Stage III Immature Testicular Teratoma AJCC v6 and v7 10 209698 -NCIT:C8922 Stage III Testicular Yolk Sac Tumor AJCC v6 and v7 10 209699 -NCIT:C6367 Stage IIIC Testicular Cancer AJCC v6 and v7 9 209700 -NCIT:C6368 Stage IIIB Testicular Cancer AJCC v6 and v7 9 209701 -NCIT:C6369 Stage IIIA Testicular Cancer AJCC v6 and v7 9 209702 -NCIT:C8913 Stage III Testicular Mixed Germ Cell Tumor AJCC v6 and v7 9 209703 -NCIT:C8919 Stage III Testicular Seminoma AJCC v6 and v7 9 209704 -NCIT:C162469 Testicular Myeloid Sarcoma 7 209705 -NCIT:C162470 Testicular Plasmacytoma 7 209706 -NCIT:C39948 Malignant Testicular Sex Cord-Stromal Tumor 7 209707 -NCIT:C4584 Metastatic Malignant Neoplasm in the Testis 7 209708 -NCIT:C6359 Testicular Sarcoma 7 209709 -NCIT:C6378 Testicular Rhabdomyosarcoma 8 209710 -NCIT:C6810 Testicular Lymphoma 7 209711 -NCIT:C138021 Recurrent Testicular Lymphoma 8 209712 -NCIT:C138022 Refractory Testicular Lymphoma 8 209713 -NCIT:C150589 Testicular Follicular Lymphoma 8 209714 -NCIT:C162467 Testicular Diffuse Large B-Cell Lymphoma 8 209715 -NCIT:C162468 Testicular Nasal Type Extranodal NK/T-Cell Lymphoma 8 209716 -NCIT:C9063 Malignant Testicular Germ Cell Tumor 7 209717 -NCIT:C189057 Postpubertal-Type Testicular Teratoma 8 209718 -NCIT:C25771 Metastatic Malignant Testicular Germ Cell Tumor 8 209719 -NCIT:C187316 Advanced Malignant Testicular Germ Cell Tumor 9 209720 -NCIT:C39921 Testicular Spermatocytic Tumor 8 209721 -NCIT:C39922 Testicular Spermatocytic Tumor with Sarcoma 9 209722 -NCIT:C40962 Testicular Polyembryoma 8 209723 -NCIT:C5027 Malignant Testicular Non-Seminomatous Germ Cell Tumor 8 209724 -NCIT:C27785 Stage I Testicular Non-Seminomatous Germ Cell Tumor AJCC v6 and v7 9 209725 -NCIT:C8907 Stage I Testicular Choriocarcinoma AJCC v6 and v7 10 209726 -NCIT:C8908 Stage I Testicular Embryonal Carcinoma AJCC v6 and v7 10 209727 -NCIT:C8914 Stage I Immature Testicular Teratoma AJCC v6 and v7 10 209728 -NCIT:C8920 Stage I Testicular Yolk Sac Tumor AJCC v6 and v7 10 209729 -NCIT:C27786 Stage II Testicular Non-Seminomatous Germ Cell Tumor AJCC v6 and v7 9 209730 -NCIT:C8606 Stage II Testicular Choriocarcinoma AJCC v6 and v7 10 209731 -NCIT:C8909 Stage II Testicular Embryonal Carcinoma AJCC v6 and v7 10 209732 -NCIT:C8915 Stage II Immature Testicular Teratoma AJCC v6 and v7 10 209733 -NCIT:C8921 Stage II Testicular Yolk Sac Tumor AJCC v6 and v7 10 209734 -NCIT:C27787 Stage III Testicular Non-Seminomatous Germ Cell Tumor AJCC v6 and v7 9 209735 -NCIT:C8900 Stage III Testicular Choriocarcinoma AJCC v6 and v7 10 209736 -NCIT:C8910 Stage III Testicular Embryonal Carcinoma AJCC v6 and v7 10 209737 -NCIT:C8916 Stage III Immature Testicular Teratoma AJCC v6 and v7 10 209738 -NCIT:C8922 Stage III Testicular Yolk Sac Tumor AJCC v6 and v7 10 209739 -NCIT:C35711 Testicular Teratoma with Somatic-Type Malignancy 9 209740 -NCIT:C6341 Testicular Embryonal Carcinoma 9 209741 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 10 209742 -NCIT:C7325 Intratubular Non-Seminoma 10 209743 -NCIT:C8908 Stage I Testicular Embryonal Carcinoma AJCC v6 and v7 10 209744 -NCIT:C8909 Stage II Testicular Embryonal Carcinoma AJCC v6 and v7 10 209745 -NCIT:C8910 Stage III Testicular Embryonal Carcinoma AJCC v6 and v7 10 209746 -NCIT:C6351 Testicular Mixed Embryonal Carcinoma and Teratoma 9 209747 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 10 209748 -NCIT:C7733 Testicular Choriocarcinoma 9 209749 -NCIT:C39935 Testicular Monophasic Choriocarcinoma 10 209750 -NCIT:C6544 Childhood Testicular Choriocarcinoma 10 209751 -NCIT:C8606 Stage II Testicular Choriocarcinoma AJCC v6 and v7 10 209752 -NCIT:C8900 Stage III Testicular Choriocarcinoma AJCC v6 and v7 10 209753 -NCIT:C8907 Stage I Testicular Choriocarcinoma AJCC v6 and v7 10 209754 -NCIT:C8000 Testicular Yolk Sac Tumor 9 209755 -NCIT:C39923 Testicular Yolk Sac Tumor, Microcystic Pattern 10 209756 -NCIT:C39924 Testicular Yolk Sac Tumor, Macrocystic Pattern 10 209757 -NCIT:C39925 Testicular Yolk Sac Tumor, Solid Pattern 10 209758 -NCIT:C39926 Testicular Yolk Sac Tumor, Glandular-Alveolar Pattern 10 209759 -NCIT:C39927 Testicular Yolk Sac Tumor, Endodermal Sinus/Perivascular Pattern 10 209760 -NCIT:C39928 Testicular Yolk Sac Tumor, Papillary Pattern 10 209761 -NCIT:C39929 Testicular Yolk Sac Tumor, Myxomatous Pattern 10 209762 -NCIT:C39930 Testicular Yolk Sac Tumor, Polyvesicular Vitelline Pattern 10 209763 -NCIT:C39931 Testicular Yolk Sac Tumor, Hepatoid Pattern 10 209764 -NCIT:C39932 Testicular Yolk Sac Tumor, Enteric Pattern 10 209765 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 10 209766 -NCIT:C8920 Stage I Testicular Yolk Sac Tumor AJCC v6 and v7 10 209767 -NCIT:C8921 Stage II Testicular Yolk Sac Tumor AJCC v6 and v7 10 209768 -NCIT:C8922 Stage III Testicular Yolk Sac Tumor AJCC v6 and v7 10 209769 -NCIT:C8001 Testicular Mixed Embryonal Carcinoma and Yolk Sac Tumor 9 209770 -NCIT:C8002 Testicular Mixed Yolk Sac Tumor and Teratoma 9 209771 -NCIT:C6347 Testicular Mixed Germ Cell Tumor 8 209772 -NCIT:C6348 Testicular Mixed Choriocarcinoma and Embryonal Carcinoma 9 209773 -NCIT:C6349 Testicular Mixed Choriocarcinoma and Teratoma 9 209774 -NCIT:C6350 Testicular Mixed Embryonal Carcinoma and Seminoma 9 209775 -NCIT:C6351 Testicular Mixed Embryonal Carcinoma and Teratoma 9 209776 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 10 209777 -NCIT:C6352 Testicular Mixed Embryonal Carcinoma and Teratoma with Seminoma 9 209778 -NCIT:C6542 Childhood Testicular Mixed Germ Cell Tumor 9 209779 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 10 209780 -NCIT:C67548 Testicular Mixed Choriocarcinoma and Yolk Sac Tumor 9 209781 -NCIT:C8001 Testicular Mixed Embryonal Carcinoma and Yolk Sac Tumor 9 209782 -NCIT:C8002 Testicular Mixed Yolk Sac Tumor and Teratoma 9 209783 -NCIT:C8003 Testicular Mixed Yolk Sac Tumor and Teratoma with Seminoma 9 209784 -NCIT:C8911 Stage II Testicular Mixed Germ Cell Tumor AJCC v6 and v7 9 209785 -NCIT:C8912 Stage I Testicular Mixed Germ Cell Tumor AJCC v6 and v7 9 209786 -NCIT:C8913 Stage III Testicular Mixed Germ Cell Tumor AJCC v6 and v7 9 209787 -NCIT:C9172 Testicular Mixed Embryonal Carcinoma and Yolk Sac Tumor with Seminoma 9 209788 -NCIT:C9173 Testicular Mixed Choriocarcinoma and Seminoma 9 209789 -NCIT:C68628 Childhood Malignant Testicular Germ Cell Tumor 8 209790 -NCIT:C6542 Childhood Testicular Mixed Germ Cell Tumor 9 209791 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 10 209792 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 9 209793 -NCIT:C6544 Childhood Testicular Choriocarcinoma 9 209794 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 9 209795 -NCIT:C7326 Testicular Germ Cell Neoplasia In Situ with Extratubular Extension 8 209796 -NCIT:C7328 Testicular Seminoma 8 209797 -NCIT:C39919 Testicular Seminoma with Syncytiotrophoblastic Cells 9 209798 -NCIT:C39920 Testicular Seminoma with High Mitotic Index 9 209799 -NCIT:C40957 Testicular Seminoma, Cribriform Variant 9 209800 -NCIT:C40958 Testicular Seminoma, Pseudoglandular Variant 9 209801 -NCIT:C40959 Testicular Seminoma, Tubular Variant 9 209802 -NCIT:C61383 Testicular Typical Seminoma 9 209803 -NCIT:C7329 Intratubular Seminoma 9 209804 -NCIT:C8917 Stage I Testicular Seminoma AJCC v6 and v7 9 209805 -NCIT:C8918 Stage II Testicular Seminoma AJCC v6 and v7 9 209806 -NCIT:C8919 Stage III Testicular Seminoma AJCC v6 and v7 9 209807 -NCIT:C9077 Refractory Malignant Testicular Germ Cell Tumor 8 209808 -NCIT:C9369 Recurrent Malignant Testicular Germ Cell Tumor 8 209809 -NCIT:C9277 Testicular Leukemia 7 209810 -NCIT:C7378 Malignant Prostate Neoplasm 6 209811 -NCIT:C161580 Prostate Malignant Solitary Fibrous Tumor 7 209812 -NCIT:C161607 Prostate Wilms Tumor 7 209813 -NCIT:C161608 Extrarenal Rhabdoid Tumor of the Prostate 7 209814 -NCIT:C161611 Prostate Melanoma 7 209815 -NCIT:C3642 Grade III Prostatic Intraepithelial Neoplasia 7 209816 -NCIT:C4863 Prostate Carcinoma 7 209817 -NCIT:C103817 Hereditary Prostate Carcinoma 8 209818 -NCIT:C114933 Hormone-Resistant Prostate Carcinoma 8 209819 -NCIT:C138167 Prostate Carcinoma by Gene Expression Profile 8 209820 -NCIT:C138168 Luminal A Prostate Carcinoma 9 209821 -NCIT:C138169 Luminal B Prostate Carcinoma 9 209822 -NCIT:C138170 Basal-Like Prostate Carcinoma 9 209823 -NCIT:C140163 Prostate Cancer by AJCC v8 Stage 8 209824 -NCIT:C140164 Stage I Prostate Cancer AJCC v8 9 209825 -NCIT:C140165 Stage II Prostate Cancer AJCC v8 9 209826 -NCIT:C140166 Stage IIA Prostate Cancer AJCC v8 10 209827 -NCIT:C140167 Stage IIB Prostate Cancer AJCC v8 10 209828 -NCIT:C140168 Stage IIC Prostate Cancer AJCC v8 10 209829 -NCIT:C140169 Stage III Prostate Cancer AJCC v8 9 209830 -NCIT:C140170 Stage IIIA Prostate Cancer AJCC v8 10 209831 -NCIT:C140171 Stage IIIB Prostate Cancer AJCC v8 10 209832 -NCIT:C140172 Stage IIIC Prostate Cancer AJCC v8 10 209833 -NCIT:C140173 Stage IV Prostate Cancer AJCC v8 9 209834 -NCIT:C140174 Stage IVA Prostate Cancer AJCC v8 10 209835 -NCIT:C140175 Stage IVB Prostate Cancer AJCC v8 10 209836 -NCIT:C161022 Intraductal Prostate Carcinoma 8 209837 -NCIT:C167255 Refractory Prostate Carcinoma 8 209838 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 9 209839 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 10 209840 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 10 209841 -NCIT:C161609 Double-Negative Prostate Carcinoma 10 209842 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 10 209843 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 10 209844 -NCIT:C167256 Refractory Prostate Adenocarcinoma 9 209845 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 9 209846 -NCIT:C171611 Unresectable Prostate Carcinoma 8 209847 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 9 209848 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 209849 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 9 209850 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 9 209851 -NCIT:C176517 Localized Prostate Carcinoma 8 209852 -NCIT:C39898 Primary Prostate Urothelial Carcinoma 8 209853 -NCIT:C39900 Prostatic Urethra Urothelial Carcinoma 9 209854 -NCIT:C39901 Prostatic Duct Urothelial Carcinoma 9 209855 -NCIT:C48596 Invasive Prostate Carcinoma 8 209856 -NCIT:C158912 Prostate Neuroendocrine Carcinoma 9 209857 -NCIT:C158650 Prostate Large Cell Neuroendocrine Carcinoma 10 209858 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 10 209859 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 11 209860 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 11 209861 -NCIT:C6766 Prostate Small Cell Neuroendocrine Carcinoma 10 209862 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 11 209863 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 11 209864 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 11 209865 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 11 209866 -NCIT:C2919 Prostate Adenocarcinoma 9 209867 -NCIT:C150557 Prostate Adenocarcinoma without Neuroendocrine Differentiation 10 209868 -NCIT:C164185 Aggressive Prostate Adenocarcinoma 10 209869 -NCIT:C164186 Prostate Adenocarcinoma by AJCC v7 Stage 10 209870 -NCIT:C8947 Stage I Prostate Adenocarcinoma AJCC v7 11 209871 -NCIT:C8948 Stage II Prostate Adenocarcinoma AJCC v7 11 209872 -NCIT:C8949 Stage III Prostate Adenocarcinoma AJCC v7 11 209873 -NCIT:C8950 Stage IV Prostate Adenocarcinoma AJCC v7 11 209874 -NCIT:C167256 Refractory Prostate Adenocarcinoma 10 209875 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 10 209876 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 11 209877 -NCIT:C27905 Well Differentiated Prostate Adenocarcinoma 10 209878 -NCIT:C39896 Prostate Ductal Adenocarcinoma, Papillary Pattern 11 209879 -NCIT:C27906 Moderately Differentiated Prostate Adenocarcinoma 10 209880 -NCIT:C27916 Poorly Differentiated Prostate Adenocarcinoma 10 209881 -NCIT:C5530 Prostate Acinar Adenocarcinoma, Sarcomatoid Variant 11 209882 -NCIT:C39903 Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 209883 -NCIT:C158656 Usual Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 209884 -NCIT:C158664 Prostate Adenocarcinoma with Paneth Cell-Like Neuroendocrine Differentiation 11 209885 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 209886 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 12 209887 -NCIT:C5596 Prostate Acinar Adenocarcinoma 10 209888 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 11 209889 -NCIT:C158656 Usual Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 209890 -NCIT:C160817 Prostate Acinar Adenocarcinoma, Microcystic Variant 11 209891 -NCIT:C160818 Prostate Acinar Adenocarcinoma, Pleomorphic Giant Cell Variant 11 209892 -NCIT:C39880 Prostate Acinar Adenocarcinoma, Atrophic Variant 11 209893 -NCIT:C39881 Prostate Acinar Adenocarcinoma, Pseudohyperplastic Variant 11 209894 -NCIT:C39882 Prostate Acinar Adenocarcinoma, Foamy Gland Variant 11 209895 -NCIT:C39884 Prostate Acinar Adenocarcinoma, Oncocytic Variant 11 209896 -NCIT:C39885 Prostate Acinar Adenocarcinoma, Lymphoepithelioma-Like Variant 11 209897 -NCIT:C5530 Prostate Acinar Adenocarcinoma, Sarcomatoid Variant 11 209898 -NCIT:C5535 Prostate Acinar Adenocarcinoma, Signet Ring-Like Cell Variant 11 209899 -NCIT:C5537 Prostate Acinar Mucinous Adenocarcinoma 11 209900 -NCIT:C6813 Prostate Ductal Adenocarcinoma 10 209901 -NCIT:C39895 Prostate Ductal Adenocarcinoma, Cribriform Pattern 11 209902 -NCIT:C39896 Prostate Ductal Adenocarcinoma, Papillary Pattern 11 209903 -NCIT:C39897 Prostate Ductal Adenocarcinoma, Solid Pattern 11 209904 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 10 209905 -NCIT:C156286 Advanced Prostate Adenocarcinoma 11 209906 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 12 209907 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 11 209908 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 12 209909 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 209910 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 12 209911 -NCIT:C39902 Prostate Basal Cell Carcinoma 9 209912 -NCIT:C5536 Prostate Squamous Cell Carcinoma 9 209913 -NCIT:C5538 Prostate Adenosquamous Carcinoma 9 209914 -NCIT:C5539 Prostate Adenoid Cystic Carcinoma 9 209915 -NCIT:C5597 Prostate Undifferentiated Carcinoma 9 209916 -NCIT:C7079 Prostate Cancer by Whitmore-Jewett Stage 8 209917 -NCIT:C7099 Stage D Prostate Cancer 9 209918 -NCIT:C7552 Stage C Prostate Cancer 9 209919 -NCIT:C7554 Stage B Prostate Cancer 9 209920 -NCIT:C7556 Stage A Prostate Cancer 9 209921 -NCIT:C7902 Recurrent Prostate Carcinoma 8 209922 -NCIT:C156771 Biochemically Recurrent Prostate Carcinoma 9 209923 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 9 209924 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 10 209925 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 9 209926 -NCIT:C8946 Metastatic Prostate Carcinoma 8 209927 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 9 209928 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 10 209929 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 10 209930 -NCIT:C161609 Double-Negative Prostate Carcinoma 10 209931 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 10 209932 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 10 209933 -NCIT:C132881 Prostate Carcinoma Metastatic in the Soft Tissue 9 209934 -NCIT:C148536 Castration-Naive Prostate Carcinoma 9 209935 -NCIT:C153336 Castration-Sensitive Prostate Carcinoma 9 209936 -NCIT:C156284 Advanced Prostate Carcinoma 9 209937 -NCIT:C156286 Advanced Prostate Adenocarcinoma 10 209938 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 209939 -NCIT:C156285 Locally Advanced Prostate Carcinoma 9 209940 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 10 209941 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 11 209942 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 10 209943 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 11 209944 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 10 209945 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 9 209946 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 10 209947 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 10 209948 -NCIT:C161584 Prostate Carcinoma Metastatic in the Pelvic Cavity 9 209949 -NCIT:C161587 Prostate Carcinoma Metastatic in the Lymph Nodes 9 209950 -NCIT:C171265 Oligometastatic Prostate Carcinoma 9 209951 -NCIT:C36307 Prostate Carcinoma Metastatic in the Lung 9 209952 -NCIT:C36308 Prostate Carcinoma Metastatic in the Bone 9 209953 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 9 209954 -NCIT:C156286 Advanced Prostate Adenocarcinoma 10 209955 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 209956 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 10 209957 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 11 209958 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 209959 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 209960 -NCIT:C90521 Prostate Cancer by AJCC v6 Stage 8 209961 -NCIT:C7551 Stage III Prostate Cancer AJCC v6 9 209962 -NCIT:C7553 Stage II Prostate Cancer AJCC v6 9 209963 -NCIT:C7555 Stage I Prostate Cancer AJCC v6 9 209964 -NCIT:C9075 Stage IV Prostate Cancer AJCC v6 9 209965 -NCIT:C91233 Prostate Cancer by AJCC v7 Stage 8 209966 -NCIT:C164186 Prostate Adenocarcinoma by AJCC v7 Stage 9 209967 -NCIT:C8947 Stage I Prostate Adenocarcinoma AJCC v7 10 209968 -NCIT:C8948 Stage II Prostate Adenocarcinoma AJCC v7 10 209969 -NCIT:C8949 Stage III Prostate Adenocarcinoma AJCC v7 10 209970 -NCIT:C8950 Stage IV Prostate Adenocarcinoma AJCC v7 10 209971 -NCIT:C89232 Stage I Prostate Cancer AJCC v7 9 209972 -NCIT:C8947 Stage I Prostate Adenocarcinoma AJCC v7 10 209973 -NCIT:C89233 Stage II Prostate Cancer AJCC v7 9 209974 -NCIT:C88106 Stage IIA Prostate Cancer AJCC v7 10 209975 -NCIT:C88107 Stage IIB Prostate Cancer AJCC v7 10 209976 -NCIT:C8948 Stage II Prostate Adenocarcinoma AJCC v7 10 209977 -NCIT:C89234 Stage III Prostate Cancer AJCC v7 9 209978 -NCIT:C8949 Stage III Prostate Adenocarcinoma AJCC v7 10 209979 -NCIT:C89235 Stage IV Prostate Cancer AJCC v7 9 209980 -NCIT:C8950 Stage IV Prostate Adenocarcinoma AJCC v7 10 209981 -NCIT:C5527 Prostate Myeloid Sarcoma 7 209982 -NCIT:C5531 Malignant Prostate Phyllodes Tumor 7 209983 -NCIT:C5533 Prostate Lymphoma 7 209984 -NCIT:C5534 Prostate Non-Hodgkin Lymphoma 8 209985 -NCIT:C161602 Prostate Diffuse Large B-Cell Lymphoma 9 209986 -NCIT:C161603 Prostate Follicular Lymphoma 9 209987 -NCIT:C161604 Prostate Mantle Cell Lymphoma 9 209988 -NCIT:C161605 Prostate Small Lymphocytic Lymphoma 9 209989 -NCIT:C7080 Metastatic Malignant Neoplasm in the Prostate Gland 7 209990 -NCIT:C39899 Secondary Prostate Urothelial Carcinoma 8 209991 -NCIT:C7731 Prostate Sarcoma 7 209992 -NCIT:C161034 Prostate Synovial Sarcoma 8 209993 -NCIT:C161035 Prostate Osteosarcoma 8 209994 -NCIT:C161038 Prostate Undifferentiated Pleomorphic Sarcoma 8 209995 -NCIT:C5522 Prostate Rhabdomyosarcoma 8 209996 -NCIT:C188070 Prostate Alveolar Rhabdomyosarcoma 9 209997 -NCIT:C5525 Prostate Embryonal Rhabdomyosarcoma 9 209998 -NCIT:C5523 Prostate Kaposi Sarcoma 8 209999 -NCIT:C5524 Prostate Stromal Sarcoma 8 210000 -NCIT:C5526 Prostate Leiomyosarcoma 8 210001 -NCIT:C5528 Prostate Angiosarcoma 8 210002 -NCIT:C7547 Malignant Penile Neoplasm 6 210003 -NCIT:C118821 Childhood Malignant Penile Neoplasm 7 210004 -NCIT:C162547 Penile Melanoma 7 210005 -NCIT:C178517 Penile Mucosal Melanoma 8 210006 -NCIT:C178518 Penile Cutaneous Melanoma 8 210007 -NCIT:C162548 Penile Lymphoma 7 210008 -NCIT:C162549 Metastatic Malignant Neoplasm in the Penis 7 210009 -NCIT:C162581 Penile Epithelioid Hemangioendothelioma 7 210010 -NCIT:C7730 Penile Sarcoma 7 210011 -NCIT:C162578 Penile Angiosarcoma 8 210012 -NCIT:C162584 Penile Malignant Peripheral Nerve Sheath Tumor 8 210013 -NCIT:C162585 Penile Leiomyosarcoma 8 210014 -NCIT:C162588 Penile Rhabdomyosarcoma 8 210015 -NCIT:C162589 Penile Undifferentiated Pleomorphic Sarcoma 8 210016 -NCIT:C6377 Penile Kaposi Sarcoma 8 210017 -NCIT:C9061 Penile Carcinoma 7 210018 -NCIT:C118820 Adult Penile Carcinoma 8 210019 -NCIT:C140075 Penile Cancer by AJCC v8 Stage 8 210020 -NCIT:C140076 Stage 0 Penile Cancer AJCC v8 9 210021 -NCIT:C140077 Stage 0is Penile Cancer AJCC v8 10 210022 -NCIT:C140078 Stage 0a Penile Cancer AJCC v8 10 210023 -NCIT:C140079 Stage I Penile Cancer AJCC v8 9 210024 -NCIT:C140080 Stage II Penile Cancer AJCC v8 9 210025 -NCIT:C140081 Stage IIA Penile Cancer AJCC v8 10 210026 -NCIT:C140083 Stage IIB Penile Cancer AJCC v8 10 210027 -NCIT:C140084 Stage III Penile Cancer AJCC v8 9 210028 -NCIT:C140085 Stage IIIA Penile Cancer AJCC v8 10 210029 -NCIT:C140086 Stage IIIB Penile Cancer AJCC v8 10 210030 -NCIT:C140087 Stage IV Penile Cancer AJCC v8 9 210031 -NCIT:C177150 Refractory Penile Carcinoma 8 210032 -NCIT:C27784 Metastatic Penile Carcinoma 8 210033 -NCIT:C170789 Locally Advanced Penile Carcinoma 9 210034 -NCIT:C170790 Advanced Penile Carcinoma 9 210035 -NCIT:C182111 Metastatic Squamous Cell Carcinoma of the Penis 9 210036 -NCIT:C27817 Penile Paget Disease 8 210037 -NCIT:C39961 Penile Basal Cell Carcinoma 8 210038 -NCIT:C7729 Squamous Cell Carcinoma of the Penis 8 210039 -NCIT:C159244 Non-Human Papillomavirus-Related Squamous Cell Carcinoma of the Penis 9 210040 -NCIT:C103340 Papillary Carcinoma of the Penis, Not Otherwise Specified 10 210041 -NCIT:C159245 Pseudohyperplastic Carcinoma of the Penis 10 210042 -NCIT:C159246 Pseudoglandular Carcinoma of the Penis 10 210043 -NCIT:C159248 Adenosquamous Carcinoma of the Penis 10 210044 -NCIT:C39959 Mixed Squamous Cell Carcinoma of the Penis 10 210045 -NCIT:C6979 Squamous Cell Carcinoma of the Penis, Usual Type 10 210046 -NCIT:C6982 Verrucous Carcinoma of the Penis 10 210047 -NCIT:C159247 Carcinoma Cuniculatum of the Penis 11 210048 -NCIT:C6984 Sarcomatoid Carcinoma of the Penis 10 210049 -NCIT:C182111 Metastatic Squamous Cell Carcinoma of the Penis 9 210050 -NCIT:C27682 Human Papillomavirus-Related Squamous Cell Carcinoma of the Penis 9 210051 -NCIT:C159250 Warty-Basaloid Carcinoma of the Penis 10 210052 -NCIT:C159251 Clear Cell Squamous Cell Carcinoma of the Penis 10 210053 -NCIT:C159252 Lymphoepithelioma-Like Carcinoma of the Penis 10 210054 -NCIT:C6980 Basaloid Squamous Cell Carcinoma of the Penis 10 210055 -NCIT:C159249 Papillary-Basaloid Carcinoma of the Penis 11 210056 -NCIT:C6981 Warty Carcinoma of the Penis 10 210057 -NCIT:C27790 Penile Carcinoma In Situ 9 210058 -NCIT:C6983 Papillary Carcinoma of the Penis 9 210059 -NCIT:C103340 Papillary Carcinoma of the Penis, Not Otherwise Specified 10 210060 -NCIT:C159249 Papillary-Basaloid Carcinoma of the Penis 10 210061 -NCIT:C6981 Warty Carcinoma of the Penis 10 210062 -NCIT:C6982 Verrucous Carcinoma of the Penis 10 210063 -NCIT:C159247 Carcinoma Cuniculatum of the Penis 11 210064 -NCIT:C7870 Recurrent Penile Carcinoma 8 210065 -NCIT:C90520 Penile Cancer by AJCC v6 Stage 8 210066 -NCIT:C3643 Stage 0 Penile Cancer AJCC v6 9 210067 -NCIT:C7867 Stage I Penile Cancer AJCC v6 9 210068 -NCIT:C7868 Stage II Penile Cancer AJCC v6 9 210069 -NCIT:C7869 Stage III Penile Cancer AJCC v6 9 210070 -NCIT:C8959 Stage IV Penile Cancer AJCC v6 9 210071 -NCIT:C91234 Penile Cancer by AJCC v7 Stage 8 210072 -NCIT:C89194 Stage 0 Penile Cancer AJCC v7 9 210073 -NCIT:C27790 Penile Carcinoma In Situ 10 210074 -NCIT:C89195 Stage I Penile Cancer AJCC v7 9 210075 -NCIT:C89196 Stage II Penile Cancer AJCC v7 9 210076 -NCIT:C89197 Stage III Penile Cancer AJCC v7 9 210077 -NCIT:C88104 Stage IIIa Penile Cancer AJCC v7 10 210078 -NCIT:C88105 Stage IIIb Penile Cancer AJCC v7 10 210079 -NCIT:C89198 Stage IV Penile Cancer AJCC v7 9 210080 -NCIT:C9297 Malignant Urinary System Neoplasm 4 210081 -NCIT:C150542 Recurrent Malignant Urinary System Neoplasm 5 210082 -NCIT:C162730 Recurrent Rhabdoid Tumor of the Kidney 6 210083 -NCIT:C7623 Recurrent Urinary System Carcinoma 6 210084 -NCIT:C157631 Recurrent Urothelial Carcinoma 7 210085 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 210086 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 210087 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 210088 -NCIT:C8254 Recurrent Renal Pelvis and Ureter Urothelial Carcinoma 8 210089 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 9 210090 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 210091 -NCIT:C172622 Recurrent Kidney Carcinoma 7 210092 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 8 210093 -NCIT:C162726 Recurrent Kidney Medullary Carcinoma 8 210094 -NCIT:C7825 Recurrent Renal Cell Carcinoma 8 210095 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 9 210096 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 10 210097 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 9 210098 -NCIT:C7508 Recurrent Urethral Carcinoma 7 210099 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 210100 -NCIT:C7899 Recurrent Bladder Carcinoma 7 210101 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 210102 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 210103 -NCIT:C190774 Recurrent Non-Muscle Invasive Bladder Carcinoma 8 210104 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 210105 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 210106 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 8 210107 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 8 210108 -NCIT:C9255 Recurrent Ureter Carcinoma 7 210109 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 8 210110 -NCIT:C7845 Recurrent Kidney Wilms Tumor 6 210111 -NCIT:C9266 Recurrent Malignant Bladder Neoplasm 6 210112 -NCIT:C7899 Recurrent Bladder Carcinoma 7 210113 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 210114 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 210115 -NCIT:C190774 Recurrent Non-Muscle Invasive Bladder Carcinoma 8 210116 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 210117 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 210118 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 8 210119 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 8 210120 -NCIT:C150543 Refractory Malignant Urinary System Neoplasm 5 210121 -NCIT:C162719 Refractory Urinary System Carcinoma 6 210122 -NCIT:C150316 Refractory Bladder Carcinoma 7 210123 -NCIT:C148286 Refractory Stage 0 Bladder Cancer AJCC v6 and v7 8 210124 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 8 210125 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 210126 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 8 210127 -NCIT:C150364 Refractory Urothelial Carcinoma 7 210128 -NCIT:C150365 Platinum-Resistant Urothelial Carcinoma 8 210129 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 8 210130 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 210131 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 8 210132 -NCIT:C176996 Refractory Urethral Urothelial Carcinoma 8 210133 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 8 210134 -NCIT:C172623 Refractory Kidney Carcinoma 7 210135 -NCIT:C162727 Refractory Kidney Medullary Carcinoma 8 210136 -NCIT:C165745 Refractory Renal Cell Carcinoma 8 210137 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 9 210138 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 8 210139 -NCIT:C162731 Refractory Rhabdoid Tumor of the Kidney 6 210140 -NCIT:C155950 Hereditary Malignant Urinary System Neoplasm 5 210141 -NCIT:C39789 Hereditary Renal Cell Carcinoma 6 210142 -NCIT:C36260 Hereditary Clear Cell Renal Cell Carcinoma 7 210143 -NCIT:C39790 Renal Cell Carcinoma with Constitutional Chromosome 3 Translocations 7 210144 -NCIT:C51302 Hereditary Leiomyomatosis and Renal Cell Carcinoma 7 210145 -NCIT:C9222 Hereditary Papillary Renal Cell Carcinoma 7 210146 -NCIT:C8496 Hereditary Kidney Wilms Tumor 6 210147 -NCIT:C170943 Metastatic Malignant Neoplasm in the Urinary System 5 210148 -NCIT:C7544 Metastatic Malignant Neoplasm in the Ureter 6 210149 -NCIT:C7549 Metastatic Malignant Neoplasm in the Kidney 6 210150 -NCIT:C185153 Extramedullary Disease in Plasma Cell Myeloma Involving the Kidney 7 210151 -NCIT:C7573 Metastatic Malignant Neoplasm in the Urethra 6 210152 -NCIT:C7650 Metastatic Malignant Neoplasm in the Bladder 6 210153 -NCIT:C178453 Mucosal Melanoma of the Urinary System 5 210154 -NCIT:C159663 Bladder Melanoma 6 210155 -NCIT:C159665 Urethral Melanoma 6 210156 -NCIT:C181197 Urinary System Carcinoma 5 210157 -NCIT:C162719 Refractory Urinary System Carcinoma 6 210158 -NCIT:C150316 Refractory Bladder Carcinoma 7 210159 -NCIT:C148286 Refractory Stage 0 Bladder Cancer AJCC v6 and v7 8 210160 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 8 210161 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 210162 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 8 210163 -NCIT:C150364 Refractory Urothelial Carcinoma 7 210164 -NCIT:C150365 Platinum-Resistant Urothelial Carcinoma 8 210165 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 8 210166 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 210167 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 8 210168 -NCIT:C176996 Refractory Urethral Urothelial Carcinoma 8 210169 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 8 210170 -NCIT:C172623 Refractory Kidney Carcinoma 7 210171 -NCIT:C162727 Refractory Kidney Medullary Carcinoma 8 210172 -NCIT:C165745 Refractory Renal Cell Carcinoma 8 210173 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 9 210174 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 8 210175 -NCIT:C191749 Squamous Cell Carcinoma of the Urinary Tract 6 210176 -NCIT:C4031 Bladder Squamous Cell Carcinoma 7 210177 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 8 210178 -NCIT:C27768 Schistosoma Hematobium-Related Bladder Squamous Cell Carcinoma 8 210179 -NCIT:C39833 Schistosoma Hematobium-Related Bladder Verrucous Carcinoma 9 210180 -NCIT:C39832 Bladder Verrucous Carcinoma 8 210181 -NCIT:C39833 Schistosoma Hematobium-Related Bladder Verrucous Carcinoma 9 210182 -NCIT:C39845 Urachal Squamous Cell Carcinoma 8 210183 -NCIT:C4994 Stage II Bladder Squamous Cell Carcinoma AJCC v6 and v7 8 210184 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 8 210185 -NCIT:C8903 Stage 0 Bladder Squamous Cell Carcinoma AJCC v6 and v7 8 210186 -NCIT:C8904 Stage I Squamous Cell Carcinoma of the Bladder AJCC v6 and v7 8 210187 -NCIT:C8905 Stage III Bladder Squamous Cell Carcinoma AJCC v6 and v7 8 210188 -NCIT:C8906 Stage IV Bladder Squamous Cell Carcinoma AJCC v7 8 210189 -NCIT:C191751 Adenocarcinoma of the Urinary Tract 6 210190 -NCIT:C4032 Bladder Adenocarcinoma 7 210191 -NCIT:C39835 Bladder Enteric Type Adenocarcinoma 8 210192 -NCIT:C39836 Bladder Adenocarcinoma, Not Otherwise Specified 8 210193 -NCIT:C39837 Bladder Mucinous Adenocarcinoma 8 210194 -NCIT:C39838 Bladder Hepatoid Adenocarcinoma 8 210195 -NCIT:C39839 Bladder Mixed Adenocarcinoma 8 210196 -NCIT:C39843 Urachal Adenocarcinoma 8 210197 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 8 210198 -NCIT:C6163 Bladder Signet Ring Cell Adenocarcinoma 8 210199 -NCIT:C8894 Stage 0 Bladder Adenocarcinoma AJCC v6 and v7 8 210200 -NCIT:C8895 Stage I Bladder Adenocarcinoma AJCC v6 and v7 8 210201 -NCIT:C8896 Stage II Bladder Adenocarcinoma AJCC v6 and v7 8 210202 -NCIT:C8897 Stage III Bladder Adenocarcinoma AJCC v6 and v7 8 210203 -NCIT:C8898 Stage IV Bladder Adenocarcinoma AJCC v7 8 210204 -NCIT:C191753 Diverticular Carcinoma of the Urinary Tract 6 210205 -NCIT:C191768 Clear Cell Adenocarcinoma of the Urinary Tract 6 210206 -NCIT:C6172 Urethral Clear Cell Adenocarcinoma 7 210207 -NCIT:C6179 Bladder Clear Cell Adenocarcinoma 7 210208 -NCIT:C39847 Bladder Tubulo-Cystic Clear Cell Adenocarcinoma 8 210209 -NCIT:C39848 Bladder Papillary Clear Cell Adenocarcinoma 8 210210 -NCIT:C39849 Bladder Diffuse Clear Cell Adenocarcinoma 8 210211 -NCIT:C191769 Endometrioid Adenocarcinoma of the Urinary Tract 6 210212 -NCIT:C159542 Bladder Endometrioid Adenocarcinoma 7 210213 -NCIT:C4030 Urothelial Carcinoma 6 210214 -NCIT:C126109 Metastatic Urothelial Carcinoma 7 210215 -NCIT:C148493 Advanced Urothelial Carcinoma 8 210216 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 210217 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 210218 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 210219 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 210220 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 210221 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 210222 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 210223 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 210224 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 210225 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 210226 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 210227 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 210228 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 210229 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 210230 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 210231 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 210232 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 210233 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 210234 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 210235 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 8 210236 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 210237 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 210238 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 210239 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 210240 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 210241 -NCIT:C191692 Metastatic Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 210242 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 210243 -NCIT:C191693 Metastatic Giant Cell Urothelial Carcinoma 8 210244 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 210245 -NCIT:C191694 Metastatic Lipid-Rich Urothelial Carcinoma 8 210246 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 210247 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 8 210248 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 210249 -NCIT:C191696 Metastatic Nested Urothelial Carcinoma 8 210250 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 210251 -NCIT:C191697 Metastatic Plasmacytoid Urothelial Carcinoma 8 210252 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 210253 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 8 210254 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 210255 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 8 210256 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 210257 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 210258 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 210259 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 9 210260 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 210261 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 210262 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 210263 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 210264 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 210265 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 210266 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 210267 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 210268 -NCIT:C150364 Refractory Urothelial Carcinoma 7 210269 -NCIT:C150365 Platinum-Resistant Urothelial Carcinoma 8 210270 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 8 210271 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 210272 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 8 210273 -NCIT:C176996 Refractory Urethral Urothelial Carcinoma 8 210274 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 8 210275 -NCIT:C150521 Unresectable Urothelial Carcinoma 7 210276 -NCIT:C158585 Unresectable Urethral Urothelial Carcinoma 8 210277 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 8 210278 -NCIT:C164160 Unresectable Renal Pelvis and Ureter Urothelial Carcinoma 8 210279 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 9 210280 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 9 210281 -NCIT:C157631 Recurrent Urothelial Carcinoma 7 210282 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 210283 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 210284 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 210285 -NCIT:C8254 Recurrent Renal Pelvis and Ureter Urothelial Carcinoma 8 210286 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 9 210287 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 210288 -NCIT:C180606 Urothelial Carcinoma, High Grade 7 210289 -NCIT:C180607 Renal Pelvis Urothelial Carcinoma, High Grade 8 210290 -NCIT:C180608 Ureter Urothelial Carcinoma, High Grade 8 210291 -NCIT:C180609 Bladder Urothelial Carcinoma, High Grade 8 210292 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 9 210293 -NCIT:C191675 Non-Invasive Papillary Urothelial Carcinoma, High Grade 8 210294 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 9 210295 -NCIT:C191673 Non-Invasive Papillary Urothelial Carcinoma, Low Grade 7 210296 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 8 210297 -NCIT:C39851 Bladder Urothelial Carcinoma 7 210298 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 210299 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 210300 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 210301 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 210302 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 210303 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 210304 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 210305 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 210306 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 210307 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 210308 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 210309 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 210310 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 210311 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 8 210312 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 8 210313 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 210314 -NCIT:C177531 Bladder Flat Urothelial Carcinoma 8 210315 -NCIT:C37266 Bladder Urothelial Carcinoma In Situ 9 210316 -NCIT:C140418 Stage 0is Bladder Cancer AJCC v8 10 210317 -NCIT:C3644 Stage 0is Bladder Urothelial Carcinoma AJCC v6 and v7 10 210318 -NCIT:C180609 Bladder Urothelial Carcinoma, High Grade 8 210319 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 9 210320 -NCIT:C188032 Resectable Bladder Urothelial Carcinoma 8 210321 -NCIT:C27634 Transplant-Related Bladder Urothelial Carcinoma 8 210322 -NCIT:C27885 Invasive Bladder Urothelial Carcinoma 8 210323 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 9 210324 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 210325 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 10 210326 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 9 210327 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 10 210328 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 9 210329 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 9 210330 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 9 210331 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 9 210332 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 210333 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 210334 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 9 210335 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 9 210336 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 9 210337 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 9 210338 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 10 210339 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 9 210340 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 9 210341 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 9 210342 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 10 210343 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 9 210344 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 10 210345 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 10 210346 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 10 210347 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 210348 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 10 210349 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 9 210350 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 10 210351 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 9 210352 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 10 210353 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 210354 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 210355 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 210356 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 9 210357 -NCIT:C39844 Urachal Urothelial Carcinoma 8 210358 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 210359 -NCIT:C7383 Bladder Papillary Urothelial Carcinoma 8 210360 -NCIT:C158382 Bladder Non-Invasive Papillary Urothelial Carcinoma 9 210361 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 10 210362 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 10 210363 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 10 210364 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 10 210365 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 210366 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 210367 -NCIT:C39853 Invasive Urothelial Carcinoma 7 210368 -NCIT:C115966 Invasive Bladder Urothelial Carcinoma Associated with Urethral Carcinoma 8 210369 -NCIT:C164252 Invasive Sarcomatoid Urothelial Carcinoma 8 210370 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 9 210371 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 10 210372 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 9 210373 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 10 210374 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 10 210375 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 10 210376 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 9 210377 -NCIT:C191678 Invasive Lymphoepithelioma-Like Urothelial Carcinoma 8 210378 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 9 210379 -NCIT:C191679 Invasive Giant Cell Urothelial Carcinoma 8 210380 -NCIT:C191693 Metastatic Giant Cell Urothelial Carcinoma 9 210381 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 10 210382 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 9 210383 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 10 210384 -NCIT:C191680 Invasive Urothelial Carcinoma with Glandular Differentiation 8 210385 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 9 210386 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 9 210387 -NCIT:C191681 Invasive Urothelial Carcinoma with Squamous Differentiation 8 210388 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 9 210389 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 9 210390 -NCIT:C191682 Invasive Urothelial Carcinoma with Trophoblastic Differentiation 8 210391 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 9 210392 -NCIT:C191683 Invasive Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 210393 -NCIT:C191692 Metastatic Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 210394 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 10 210395 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 210396 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 10 210397 -NCIT:C191684 Invasive Lipid-Rich Urothelial Carcinoma 8 210398 -NCIT:C191694 Metastatic Lipid-Rich Urothelial Carcinoma 9 210399 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 10 210400 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 9 210401 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 10 210402 -NCIT:C191685 Invasive Microcystic Urothelial Carcinoma 8 210403 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 9 210404 -NCIT:C191686 Invasive Micropapillary Urothelial Carcinoma 8 210405 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 9 210406 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 210407 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 210408 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 210409 -NCIT:C191687 Invasive Nested Urothelial Carcinoma 8 210410 -NCIT:C191696 Metastatic Nested Urothelial Carcinoma 9 210411 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 10 210412 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 9 210413 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 10 210414 -NCIT:C191688 Invasive Plasmacytoid Urothelial Carcinoma 8 210415 -NCIT:C191697 Metastatic Plasmacytoid Urothelial Carcinoma 9 210416 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 10 210417 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 9 210418 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 10 210419 -NCIT:C191725 Invasive Large Nested Urothelial Carcinoma 8 210420 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 9 210421 -NCIT:C191728 Invasive Tubular Urothelial Carcinoma 8 210422 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 9 210423 -NCIT:C191730 Invasive Poorly Differentiated Urothelial Carcinoma 8 210424 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 9 210425 -NCIT:C191734 Invasive Conventional Urothelial Carcinoma 8 210426 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 9 210427 -NCIT:C27885 Invasive Bladder Urothelial Carcinoma 8 210428 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 9 210429 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 210430 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 10 210431 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 9 210432 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 10 210433 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 9 210434 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 9 210435 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 9 210436 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 9 210437 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 210438 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 210439 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 9 210440 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 9 210441 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 9 210442 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 9 210443 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 10 210444 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 9 210445 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 9 210446 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 9 210447 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 10 210448 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 9 210449 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 10 210450 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 10 210451 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 10 210452 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 210453 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 10 210454 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 9 210455 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 10 210456 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 9 210457 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 10 210458 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 210459 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 210460 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 210461 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 9 210462 -NCIT:C39879 Invasive Renal Pelvis and Ureter Urothelial Carcinoma 8 210463 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 9 210464 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 9 210465 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 9 210466 -NCIT:C39898 Primary Prostate Urothelial Carcinoma 7 210467 -NCIT:C39900 Prostatic Urethra Urothelial Carcinoma 8 210468 -NCIT:C39901 Prostatic Duct Urothelial Carcinoma 8 210469 -NCIT:C6166 Urethral Urothelial Carcinoma 7 210470 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 210471 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 210472 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 210473 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 210474 -NCIT:C158585 Unresectable Urethral Urothelial Carcinoma 8 210475 -NCIT:C176996 Refractory Urethral Urothelial Carcinoma 8 210476 -NCIT:C39900 Prostatic Urethra Urothelial Carcinoma 8 210477 -NCIT:C7716 Renal Pelvis and Ureter Urothelial Carcinoma 7 210478 -NCIT:C140355 Renal Pelvis and Ureter Cancer by AJCC v8 Stage 8 210479 -NCIT:C140356 Renal Pelvis Cancer by AJCC v8 Stage 9 210480 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 210481 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 10 210482 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 10 210483 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 10 210484 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 10 210485 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 10 210486 -NCIT:C140357 Ureter Cancer by AJCC v8 Stage 9 210487 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 10 210488 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 10 210489 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 10 210490 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 10 210491 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 10 210492 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 10 210493 -NCIT:C140358 Stage 0a Renal Pelvis and Ureter Cancer AJCC v8 9 210494 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 210495 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 10 210496 -NCIT:C140361 Stage 0is Renal Pelvis and Ureter Cancer AJCC v8 9 210497 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 10 210498 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 10 210499 -NCIT:C140364 Stage I Renal Pelvis and Ureter Cancer AJCC v8 9 210500 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 10 210501 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 10 210502 -NCIT:C140367 Stage II Renal Pelvis and Ureter Cancer AJCC v8 9 210503 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 10 210504 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 10 210505 -NCIT:C140370 Stage III Renal Pelvis and Ureter Cancer AJCC v8 9 210506 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 10 210507 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 10 210508 -NCIT:C140373 Stage IV Renal Pelvis and Ureter Cancer AJCC v8 9 210509 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 10 210510 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 10 210511 -NCIT:C140376 Renal Pelvis and Ureter Cancer by AJCC v7 Stage 8 210512 -NCIT:C140377 Renal Pelvis Cancer by AJCC v7 Stage 9 210513 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 10 210514 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 10 210515 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 10 210516 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 10 210517 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 10 210518 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 210519 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 210520 -NCIT:C140378 Ureter Cancer by AJCC v7 Stage 9 210521 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 10 210522 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 11 210523 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 11 210524 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 10 210525 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 10 210526 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 10 210527 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 10 210528 -NCIT:C39850 Stage 0 Renal Pelvis and Ureter Cancer AJCC v7 9 210529 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 10 210530 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 11 210531 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 11 210532 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 10 210533 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 210534 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 210535 -NCIT:C7517 Stage 0a Renal Pelvis and Ureter Cancer AJCC v7 10 210536 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 210537 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 11 210538 -NCIT:C7518 Stage 0is Renal Pelvis and Ureter Cancer AJCC v7 10 210539 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 11 210540 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 210541 -NCIT:C7519 Stage I Renal Pelvis and Ureter Cancer AJCC v7 9 210542 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 10 210543 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 10 210544 -NCIT:C7520 Stage II Renal Pelvis and Ureter Cancer AJCC v7 9 210545 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 10 210546 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 10 210547 -NCIT:C7521 Stage III Renal Pelvis and Ureter Cancer AJCC v7 9 210548 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 10 210549 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 10 210550 -NCIT:C7522 Stage IV Renal Pelvis and Ureter Cancer AJCC v7 9 210551 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 10 210552 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 10 210553 -NCIT:C164160 Unresectable Renal Pelvis and Ureter Urothelial Carcinoma 8 210554 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 9 210555 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 9 210556 -NCIT:C39879 Invasive Renal Pelvis and Ureter Urothelial Carcinoma 8 210557 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 9 210558 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 9 210559 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 9 210560 -NCIT:C4830 Ureter Urothelial Carcinoma 8 210561 -NCIT:C140357 Ureter Cancer by AJCC v8 Stage 9 210562 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 10 210563 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 10 210564 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 10 210565 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 10 210566 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 10 210567 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 10 210568 -NCIT:C140378 Ureter Cancer by AJCC v7 Stage 9 210569 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 10 210570 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 11 210571 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 11 210572 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 10 210573 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 10 210574 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 10 210575 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 10 210576 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 9 210577 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 210578 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 210579 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 9 210580 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 9 210581 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 9 210582 -NCIT:C180608 Ureter Urothelial Carcinoma, High Grade 9 210583 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 9 210584 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 9 210585 -NCIT:C7355 Renal Pelvis Urothelial Carcinoma 8 210586 -NCIT:C140356 Renal Pelvis Cancer by AJCC v8 Stage 9 210587 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 210588 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 10 210589 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 10 210590 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 10 210591 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 10 210592 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 10 210593 -NCIT:C140377 Renal Pelvis Cancer by AJCC v7 Stage 9 210594 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 10 210595 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 10 210596 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 10 210597 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 10 210598 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 10 210599 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 210600 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 210601 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 210602 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 210603 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 210604 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 210605 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 9 210606 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 9 210607 -NCIT:C180607 Renal Pelvis Urothelial Carcinoma, High Grade 9 210608 -NCIT:C6148 Renal Pelvis Papillary Urothelial Carcinoma 9 210609 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 210610 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 10 210611 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 9 210612 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 8 210613 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 210614 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 210615 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 210616 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 9 210617 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 210618 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 210619 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 210620 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 210621 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 210622 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 210623 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 210624 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 210625 -NCIT:C8167 Localized Renal Pelvis and Ureter Urothelial Carcinoma 8 210626 -NCIT:C8168 Regional Renal Pelvis and Ureter Urothelial Carcinoma 8 210627 -NCIT:C8254 Recurrent Renal Pelvis and Ureter Urothelial Carcinoma 8 210628 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 9 210629 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 210630 -NCIT:C4912 Bladder Carcinoma 6 210631 -NCIT:C118816 Childhood Bladder Carcinoma 7 210632 -NCIT:C140416 Bladder Cancer by AJCC v8 Stage 7 210633 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 8 210634 -NCIT:C140418 Stage 0is Bladder Cancer AJCC v8 8 210635 -NCIT:C140419 Stage I Bladder Cancer AJCC v8 8 210636 -NCIT:C140420 Stage II Bladder Cancer AJCC v8 8 210637 -NCIT:C140421 Stage III Bladder Cancer AJCC v8 8 210638 -NCIT:C140422 Stage IIIA Bladder Cancer AJCC v8 9 210639 -NCIT:C140423 Stage IIIB Bladder Cancer AJCC v8 9 210640 -NCIT:C140424 Stage IV Bladder Cancer AJCC v8 8 210641 -NCIT:C140425 Stage IVA Bladder Cancer AJCC v8 9 210642 -NCIT:C140426 Stage IVB Bladder Cancer AJCC v8 9 210643 -NCIT:C150316 Refractory Bladder Carcinoma 7 210644 -NCIT:C148286 Refractory Stage 0 Bladder Cancer AJCC v6 and v7 8 210645 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 8 210646 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 210647 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 8 210648 -NCIT:C150570 Invasive Bladder Carcinoma 7 210649 -NCIT:C150572 Muscle Invasive Bladder Carcinoma 8 210650 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 9 210651 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 10 210652 -NCIT:C165716 Invasive Bladder Mixed Carcinoma 8 210653 -NCIT:C27474 Non-Muscle Invasive Bladder Carcinoma 8 210654 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 9 210655 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 210656 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 10 210657 -NCIT:C190772 Metastatic Non-Muscle Invasive Bladder Carcinoma 9 210658 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 10 210659 -NCIT:C190774 Recurrent Non-Muscle Invasive Bladder Carcinoma 9 210660 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 210661 -NCIT:C27885 Invasive Bladder Urothelial Carcinoma 8 210662 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 9 210663 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 210664 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 10 210665 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 9 210666 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 10 210667 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 9 210668 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 9 210669 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 9 210670 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 9 210671 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 210672 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 210673 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 9 210674 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 9 210675 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 9 210676 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 9 210677 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 10 210678 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 9 210679 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 9 210680 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 9 210681 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 10 210682 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 9 210683 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 10 210684 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 10 210685 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 10 210686 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 210687 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 10 210688 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 9 210689 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 10 210690 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 9 210691 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 10 210692 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 210693 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 210694 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 210695 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 9 210696 -NCIT:C156062 Metastatic Bladder Carcinoma 7 210697 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 210698 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 210699 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 210700 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 210701 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 210702 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 210703 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 210704 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 210705 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 210706 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 210707 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 210708 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 8 210709 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 8 210710 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 8 210711 -NCIT:C167071 Locally Advanced Bladder Carcinoma 8 210712 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 210713 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 9 210714 -NCIT:C167338 Advanced Bladder Carcinoma 8 210715 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 210716 -NCIT:C190772 Metastatic Non-Muscle Invasive Bladder Carcinoma 8 210717 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 9 210718 -NCIT:C157759 Bladder Neuroendocrine Carcinoma 7 210719 -NCIT:C157760 Bladder Large Cell Neuroendocrine Carcinoma 8 210720 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 9 210721 -NCIT:C9461 Bladder Small Cell Neuroendocrine Carcinoma 8 210722 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 9 210723 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 9 210724 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 9 210725 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 9 210726 -NCIT:C159542 Bladder Endometrioid Adenocarcinoma 7 210727 -NCIT:C160158 Carcinoma Arising in Bladder Diverticulum 7 210728 -NCIT:C167075 Unresectable Bladder Carcinoma 7 210729 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 8 210730 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 8 210731 -NCIT:C39842 Urachal Carcinoma 7 210732 -NCIT:C39843 Urachal Adenocarcinoma 8 210733 -NCIT:C39844 Urachal Urothelial Carcinoma 8 210734 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 210735 -NCIT:C39845 Urachal Squamous Cell Carcinoma 8 210736 -NCIT:C39851 Bladder Urothelial Carcinoma 7 210737 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 210738 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 210739 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 210740 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 210741 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 210742 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 210743 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 210744 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 210745 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 210746 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 210747 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 210748 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 210749 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 210750 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 8 210751 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 8 210752 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 210753 -NCIT:C177531 Bladder Flat Urothelial Carcinoma 8 210754 -NCIT:C37266 Bladder Urothelial Carcinoma In Situ 9 210755 -NCIT:C140418 Stage 0is Bladder Cancer AJCC v8 10 210756 -NCIT:C3644 Stage 0is Bladder Urothelial Carcinoma AJCC v6 and v7 10 210757 -NCIT:C180609 Bladder Urothelial Carcinoma, High Grade 8 210758 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 9 210759 -NCIT:C188032 Resectable Bladder Urothelial Carcinoma 8 210760 -NCIT:C27634 Transplant-Related Bladder Urothelial Carcinoma 8 210761 -NCIT:C27885 Invasive Bladder Urothelial Carcinoma 8 210762 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 9 210763 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 210764 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 10 210765 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 9 210766 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 10 210767 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 9 210768 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 9 210769 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 9 210770 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 9 210771 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 210772 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 210773 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 9 210774 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 9 210775 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 9 210776 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 9 210777 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 10 210778 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 9 210779 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 9 210780 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 9 210781 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 10 210782 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 9 210783 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 10 210784 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 10 210785 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 10 210786 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 210787 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 10 210788 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 9 210789 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 10 210790 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 9 210791 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 10 210792 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 210793 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 210794 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 210795 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 9 210796 -NCIT:C39844 Urachal Urothelial Carcinoma 8 210797 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 210798 -NCIT:C7383 Bladder Papillary Urothelial Carcinoma 8 210799 -NCIT:C158382 Bladder Non-Invasive Papillary Urothelial Carcinoma 9 210800 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 10 210801 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 10 210802 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 10 210803 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 10 210804 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 210805 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 210806 -NCIT:C4031 Bladder Squamous Cell Carcinoma 7 210807 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 8 210808 -NCIT:C27768 Schistosoma Hematobium-Related Bladder Squamous Cell Carcinoma 8 210809 -NCIT:C39833 Schistosoma Hematobium-Related Bladder Verrucous Carcinoma 9 210810 -NCIT:C39832 Bladder Verrucous Carcinoma 8 210811 -NCIT:C39833 Schistosoma Hematobium-Related Bladder Verrucous Carcinoma 9 210812 -NCIT:C39845 Urachal Squamous Cell Carcinoma 8 210813 -NCIT:C4994 Stage II Bladder Squamous Cell Carcinoma AJCC v6 and v7 8 210814 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 8 210815 -NCIT:C8903 Stage 0 Bladder Squamous Cell Carcinoma AJCC v6 and v7 8 210816 -NCIT:C8904 Stage I Squamous Cell Carcinoma of the Bladder AJCC v6 and v7 8 210817 -NCIT:C8905 Stage III Bladder Squamous Cell Carcinoma AJCC v6 and v7 8 210818 -NCIT:C8906 Stage IV Bladder Squamous Cell Carcinoma AJCC v7 8 210819 -NCIT:C4032 Bladder Adenocarcinoma 7 210820 -NCIT:C39835 Bladder Enteric Type Adenocarcinoma 8 210821 -NCIT:C39836 Bladder Adenocarcinoma, Not Otherwise Specified 8 210822 -NCIT:C39837 Bladder Mucinous Adenocarcinoma 8 210823 -NCIT:C39838 Bladder Hepatoid Adenocarcinoma 8 210824 -NCIT:C39839 Bladder Mixed Adenocarcinoma 8 210825 -NCIT:C39843 Urachal Adenocarcinoma 8 210826 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 8 210827 -NCIT:C6163 Bladder Signet Ring Cell Adenocarcinoma 8 210828 -NCIT:C8894 Stage 0 Bladder Adenocarcinoma AJCC v6 and v7 8 210829 -NCIT:C8895 Stage I Bladder Adenocarcinoma AJCC v6 and v7 8 210830 -NCIT:C8896 Stage II Bladder Adenocarcinoma AJCC v6 and v7 8 210831 -NCIT:C8897 Stage III Bladder Adenocarcinoma AJCC v6 and v7 8 210832 -NCIT:C8898 Stage IV Bladder Adenocarcinoma AJCC v7 8 210833 -NCIT:C6179 Bladder Clear Cell Adenocarcinoma 7 210834 -NCIT:C39847 Bladder Tubulo-Cystic Clear Cell Adenocarcinoma 8 210835 -NCIT:C39848 Bladder Papillary Clear Cell Adenocarcinoma 8 210836 -NCIT:C39849 Bladder Diffuse Clear Cell Adenocarcinoma 8 210837 -NCIT:C7899 Recurrent Bladder Carcinoma 7 210838 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 210839 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 210840 -NCIT:C190774 Recurrent Non-Muscle Invasive Bladder Carcinoma 8 210841 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 210842 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 210843 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 8 210844 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 8 210845 -NCIT:C90344 Bladder Cancer by AJCC v6 Stage 7 210846 -NCIT:C7895 Stage 0 Bladder Cancer AJCC v6 and v7 8 210847 -NCIT:C148286 Refractory Stage 0 Bladder Cancer AJCC v6 and v7 9 210848 -NCIT:C6188 Stage 0 Bladder Urothelial Carcinoma AJCC v6 and v7 9 210849 -NCIT:C3644 Stage 0is Bladder Urothelial Carcinoma AJCC v6 and v7 10 210850 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 10 210851 -NCIT:C8894 Stage 0 Bladder Adenocarcinoma AJCC v6 and v7 9 210852 -NCIT:C8903 Stage 0 Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 210853 -NCIT:C7896 Stage I Bladder Cancer AJCC v6 and v7 8 210854 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 210855 -NCIT:C8895 Stage I Bladder Adenocarcinoma AJCC v6 and v7 9 210856 -NCIT:C8899 Stage I Bladder Cancer with Carcinoma In Situ 9 210857 -NCIT:C8901 Stage I Bladder Cancer without Carcinoma In Situ 9 210858 -NCIT:C8904 Stage I Squamous Cell Carcinoma of the Bladder AJCC v6 and v7 9 210859 -NCIT:C7897 Stage II Bladder Cancer AJCC v6 and v7 8 210860 -NCIT:C4994 Stage II Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 210861 -NCIT:C8896 Stage II Bladder Adenocarcinoma AJCC v6 and v7 9 210862 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 210863 -NCIT:C7898 Stage III Bladder Cancer AJCC v6 and v7 8 210864 -NCIT:C8897 Stage III Bladder Adenocarcinoma AJCC v6 and v7 9 210865 -NCIT:C8905 Stage III Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 210866 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 210867 -NCIT:C7900 Stage IV Bladder Cancer AJCC v6 8 210868 -NCIT:C91202 Bladder Cancer by AJCC v7 Stage 7 210869 -NCIT:C7895 Stage 0 Bladder Cancer AJCC v6 and v7 8 210870 -NCIT:C148286 Refractory Stage 0 Bladder Cancer AJCC v6 and v7 9 210871 -NCIT:C6188 Stage 0 Bladder Urothelial Carcinoma AJCC v6 and v7 9 210872 -NCIT:C3644 Stage 0is Bladder Urothelial Carcinoma AJCC v6 and v7 10 210873 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 10 210874 -NCIT:C8894 Stage 0 Bladder Adenocarcinoma AJCC v6 and v7 9 210875 -NCIT:C8903 Stage 0 Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 210876 -NCIT:C7896 Stage I Bladder Cancer AJCC v6 and v7 8 210877 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 210878 -NCIT:C8895 Stage I Bladder Adenocarcinoma AJCC v6 and v7 9 210879 -NCIT:C8899 Stage I Bladder Cancer with Carcinoma In Situ 9 210880 -NCIT:C8901 Stage I Bladder Cancer without Carcinoma In Situ 9 210881 -NCIT:C8904 Stage I Squamous Cell Carcinoma of the Bladder AJCC v6 and v7 9 210882 -NCIT:C7897 Stage II Bladder Cancer AJCC v6 and v7 8 210883 -NCIT:C4994 Stage II Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 210884 -NCIT:C8896 Stage II Bladder Adenocarcinoma AJCC v6 and v7 9 210885 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 210886 -NCIT:C7898 Stage III Bladder Cancer AJCC v6 and v7 8 210887 -NCIT:C8897 Stage III Bladder Adenocarcinoma AJCC v6 and v7 9 210888 -NCIT:C8905 Stage III Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 210889 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 210890 -NCIT:C89366 Stage IV Bladder Cancer AJCC v7 8 210891 -NCIT:C8898 Stage IV Bladder Adenocarcinoma AJCC v7 9 210892 -NCIT:C8906 Stage IV Bladder Squamous Cell Carcinoma AJCC v7 9 210893 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 9 210894 -NCIT:C7515 Renal Pelvis and Ureter Carcinoma 6 210895 -NCIT:C7716 Renal Pelvis and Ureter Urothelial Carcinoma 7 210896 -NCIT:C140355 Renal Pelvis and Ureter Cancer by AJCC v8 Stage 8 210897 -NCIT:C140356 Renal Pelvis Cancer by AJCC v8 Stage 9 210898 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 210899 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 10 210900 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 10 210901 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 10 210902 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 10 210903 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 10 210904 -NCIT:C140357 Ureter Cancer by AJCC v8 Stage 9 210905 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 10 210906 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 10 210907 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 10 210908 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 10 210909 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 10 210910 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 10 210911 -NCIT:C140358 Stage 0a Renal Pelvis and Ureter Cancer AJCC v8 9 210912 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 210913 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 10 210914 -NCIT:C140361 Stage 0is Renal Pelvis and Ureter Cancer AJCC v8 9 210915 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 10 210916 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 10 210917 -NCIT:C140364 Stage I Renal Pelvis and Ureter Cancer AJCC v8 9 210918 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 10 210919 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 10 210920 -NCIT:C140367 Stage II Renal Pelvis and Ureter Cancer AJCC v8 9 210921 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 10 210922 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 10 210923 -NCIT:C140370 Stage III Renal Pelvis and Ureter Cancer AJCC v8 9 210924 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 10 210925 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 10 210926 -NCIT:C140373 Stage IV Renal Pelvis and Ureter Cancer AJCC v8 9 210927 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 10 210928 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 10 210929 -NCIT:C140376 Renal Pelvis and Ureter Cancer by AJCC v7 Stage 8 210930 -NCIT:C140377 Renal Pelvis Cancer by AJCC v7 Stage 9 210931 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 10 210932 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 10 210933 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 10 210934 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 10 210935 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 10 210936 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 210937 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 210938 -NCIT:C140378 Ureter Cancer by AJCC v7 Stage 9 210939 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 10 210940 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 11 210941 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 11 210942 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 10 210943 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 10 210944 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 10 210945 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 10 210946 -NCIT:C39850 Stage 0 Renal Pelvis and Ureter Cancer AJCC v7 9 210947 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 10 210948 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 11 210949 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 11 210950 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 10 210951 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 210952 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 210953 -NCIT:C7517 Stage 0a Renal Pelvis and Ureter Cancer AJCC v7 10 210954 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 210955 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 11 210956 -NCIT:C7518 Stage 0is Renal Pelvis and Ureter Cancer AJCC v7 10 210957 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 11 210958 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 210959 -NCIT:C7519 Stage I Renal Pelvis and Ureter Cancer AJCC v7 9 210960 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 10 210961 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 10 210962 -NCIT:C7520 Stage II Renal Pelvis and Ureter Cancer AJCC v7 9 210963 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 10 210964 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 10 210965 -NCIT:C7521 Stage III Renal Pelvis and Ureter Cancer AJCC v7 9 210966 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 10 210967 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 10 210968 -NCIT:C7522 Stage IV Renal Pelvis and Ureter Cancer AJCC v7 9 210969 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 10 210970 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 10 210971 -NCIT:C164160 Unresectable Renal Pelvis and Ureter Urothelial Carcinoma 8 210972 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 9 210973 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 9 210974 -NCIT:C39879 Invasive Renal Pelvis and Ureter Urothelial Carcinoma 8 210975 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 9 210976 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 9 210977 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 9 210978 -NCIT:C4830 Ureter Urothelial Carcinoma 8 210979 -NCIT:C140357 Ureter Cancer by AJCC v8 Stage 9 210980 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 10 210981 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 10 210982 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 10 210983 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 10 210984 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 10 210985 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 10 210986 -NCIT:C140378 Ureter Cancer by AJCC v7 Stage 9 210987 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 10 210988 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 11 210989 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 11 210990 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 10 210991 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 10 210992 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 10 210993 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 10 210994 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 9 210995 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 210996 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 210997 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 9 210998 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 9 210999 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 9 211000 -NCIT:C180608 Ureter Urothelial Carcinoma, High Grade 9 211001 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 9 211002 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 9 211003 -NCIT:C7355 Renal Pelvis Urothelial Carcinoma 8 211004 -NCIT:C140356 Renal Pelvis Cancer by AJCC v8 Stage 9 211005 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 211006 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 10 211007 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 10 211008 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 10 211009 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 10 211010 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 10 211011 -NCIT:C140377 Renal Pelvis Cancer by AJCC v7 Stage 9 211012 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 10 211013 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 10 211014 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 10 211015 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 10 211016 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 10 211017 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 211018 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 211019 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 211020 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 211021 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 211022 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 211023 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 9 211024 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 9 211025 -NCIT:C180607 Renal Pelvis Urothelial Carcinoma, High Grade 9 211026 -NCIT:C6148 Renal Pelvis Papillary Urothelial Carcinoma 9 211027 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 211028 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 10 211029 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 9 211030 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 8 211031 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 211032 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 211033 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 211034 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 9 211035 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 211036 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 211037 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 211038 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 211039 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 211040 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 211041 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 211042 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 211043 -NCIT:C8167 Localized Renal Pelvis and Ureter Urothelial Carcinoma 8 211044 -NCIT:C8168 Regional Renal Pelvis and Ureter Urothelial Carcinoma 8 211045 -NCIT:C8254 Recurrent Renal Pelvis and Ureter Urothelial Carcinoma 8 211046 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 9 211047 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 211048 -NCIT:C7623 Recurrent Urinary System Carcinoma 6 211049 -NCIT:C157631 Recurrent Urothelial Carcinoma 7 211050 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 211051 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 211052 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 211053 -NCIT:C8254 Recurrent Renal Pelvis and Ureter Urothelial Carcinoma 8 211054 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 9 211055 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 211056 -NCIT:C172622 Recurrent Kidney Carcinoma 7 211057 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 8 211058 -NCIT:C162726 Recurrent Kidney Medullary Carcinoma 8 211059 -NCIT:C7825 Recurrent Renal Cell Carcinoma 8 211060 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 9 211061 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 10 211062 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 9 211063 -NCIT:C7508 Recurrent Urethral Carcinoma 7 211064 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 211065 -NCIT:C7899 Recurrent Bladder Carcinoma 7 211066 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 211067 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 211068 -NCIT:C190774 Recurrent Non-Muscle Invasive Bladder Carcinoma 8 211069 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 211070 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 211071 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 8 211072 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 8 211073 -NCIT:C9255 Recurrent Ureter Carcinoma 7 211074 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 8 211075 -NCIT:C8993 Ureter Carcinoma 6 211076 -NCIT:C27818 Metastatic Ureter Carcinoma 7 211077 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 8 211078 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 211079 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 211080 -NCIT:C4830 Ureter Urothelial Carcinoma 7 211081 -NCIT:C140357 Ureter Cancer by AJCC v8 Stage 8 211082 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 9 211083 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 9 211084 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 9 211085 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 9 211086 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 9 211087 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 9 211088 -NCIT:C140378 Ureter Cancer by AJCC v7 Stage 8 211089 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 9 211090 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 10 211091 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 10 211092 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 9 211093 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 9 211094 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 9 211095 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 9 211096 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 8 211097 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 211098 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 211099 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 8 211100 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 8 211101 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 8 211102 -NCIT:C180608 Ureter Urothelial Carcinoma, High Grade 8 211103 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 8 211104 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 8 211105 -NCIT:C6154 Ureter Squamous Cell Carcinoma 7 211106 -NCIT:C6155 Ureter Adenocarcinoma 7 211107 -NCIT:C6159 Ureter Undifferentiated Carcinoma 7 211108 -NCIT:C6176 Ureter Small Cell Neuroendocrine Carcinoma 7 211109 -NCIT:C9255 Recurrent Ureter Carcinoma 7 211110 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 8 211111 -NCIT:C9356 Regional Ureter Carcinoma 7 211112 -NCIT:C9106 Urethral Carcinoma 6 211113 -NCIT:C115210 Distal Urethral Carcinoma 7 211114 -NCIT:C115334 Proximal Urethral Carcinoma 7 211115 -NCIT:C140457 Urethral Cancer by AJCC v8 Stage 7 211116 -NCIT:C140458 Stage 0a Urethral Cancer AJCC v8 8 211117 -NCIT:C140459 Stage 0is Urethral Cancer AJCC v8 8 211118 -NCIT:C140460 Stage I Urethral Cancer AJCC v8 8 211119 -NCIT:C140461 Stage II Urethral Cancer AJCC v8 8 211120 -NCIT:C140462 Stage III Urethral Cancer AJCC v8 8 211121 -NCIT:C140463 Stage IV Urethral Cancer AJCC v8 8 211122 -NCIT:C140464 Urethral Cancer by AJCC v7 Stage 7 211123 -NCIT:C6195 Stage 0 Urethral Cancer AJCC v7 8 211124 -NCIT:C4531 Stage 0is Urethral Cancer AJCC v7 9 211125 -NCIT:C6196 Stage 0a Urethral Cancer AJCC v7 9 211126 -NCIT:C6197 Stage I Urethral Cancer AJCC v7 8 211127 -NCIT:C6198 Stage II Urethral Cancer AJCC v7 8 211128 -NCIT:C6199 Stage III Urethral Cancer AJCC v7 8 211129 -NCIT:C6200 Stage IV Urethral Cancer AJCC v7 8 211130 -NCIT:C27819 Metastatic Urethral Carcinoma 7 211131 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 211132 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 211133 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 211134 -NCIT:C6165 Urethral Squamous Cell Carcinoma 7 211135 -NCIT:C39862 Human Papillomavirus-Related Urethral Squamous Cell Carcinoma 8 211136 -NCIT:C39874 Urethral Verrucous Carcinoma 8 211137 -NCIT:C6166 Urethral Urothelial Carcinoma 7 211138 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 211139 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 211140 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 211141 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 211142 -NCIT:C158585 Unresectable Urethral Urothelial Carcinoma 8 211143 -NCIT:C176996 Refractory Urethral Urothelial Carcinoma 8 211144 -NCIT:C39900 Prostatic Urethra Urothelial Carcinoma 8 211145 -NCIT:C6167 Urethral Adenocarcinoma 7 211146 -NCIT:C6172 Urethral Clear Cell Adenocarcinoma 8 211147 -NCIT:C7371 Accessory Urethral Gland Adenocarcinoma 8 211148 -NCIT:C180948 Skene Gland Adenocarcinoma of the Urethra 9 211149 -NCIT:C39864 Cowper Gland Adenocarcinoma of the Urethra 9 211150 -NCIT:C39865 Littre Gland Adenocarcinoma of the Urethra 9 211151 -NCIT:C6168 Urethral Undifferentiated Carcinoma 7 211152 -NCIT:C7508 Recurrent Urethral Carcinoma 7 211153 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 211154 -NCIT:C9384 Kidney Carcinoma 6 211155 -NCIT:C159224 Kidney Neuroendocrine Carcinoma 7 211156 -NCIT:C116317 Kidney Small Cell Neuroendocrine Carcinoma 8 211157 -NCIT:C159225 Kidney Large Cell Neuroendocrine Carcinoma 8 211158 -NCIT:C172622 Recurrent Kidney Carcinoma 7 211159 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 8 211160 -NCIT:C162726 Recurrent Kidney Medullary Carcinoma 8 211161 -NCIT:C7825 Recurrent Renal Cell Carcinoma 8 211162 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 9 211163 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 10 211164 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 9 211165 -NCIT:C172623 Refractory Kidney Carcinoma 7 211166 -NCIT:C162727 Refractory Kidney Medullary Carcinoma 8 211167 -NCIT:C165745 Refractory Renal Cell Carcinoma 8 211168 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 9 211169 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 8 211170 -NCIT:C174565 Unresectable Kidney Carcinoma 7 211171 -NCIT:C154545 Unresectable Renal Cell Carcinoma 8 211172 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 211173 -NCIT:C165449 Unresectable Clear Cell Renal Cell Carcinoma 9 211174 -NCIT:C183251 Unresectable Sarcomatoid Renal Cell Carcinoma 9 211175 -NCIT:C190505 Unresectable Papillary Renal Cell Carcinoma 9 211176 -NCIT:C190508 Unresectable Unclassified Renal Cell Carcinoma 9 211177 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 8 211178 -NCIT:C174567 Unresectable Kidney Medullary Carcinoma 8 211179 -NCIT:C189241 Kidney Carcinoma Molecular Subtypes 7 211180 -NCIT:C154494 Renal Cell Carcinoma with MiT Translocations 8 211181 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 9 211182 -NCIT:C27891 TFE3-Rearranged Renal Cell Carcinoma 9 211183 -NCIT:C37872 Renal Cell Carcinoma Associated with t(X;1)(p11.2;q21) 10 211184 -NCIT:C37874 Renal Cell Carcinoma Associated with t(X;1)(p11.2;p34) 10 211185 -NCIT:C37876 Renal Cell Carcinoma Associated with t(X;17)(p11.2;q25) 10 211186 -NCIT:C39802 Renal Cell Carcinoma Associated with inv(X)(p11;q12) 10 211187 -NCIT:C37210 TFEB-Rearranged Renal Cell Carcinoma 9 211188 -NCIT:C156464 Succinate Dehydrogenase-Deficient Renal Cell Carcinoma 8 211189 -NCIT:C164156 Fumarate Hydratase-Deficient Renal Cell Carcinoma 8 211190 -NCIT:C189247 SMARCB1-Deficient Kidney Medullary Carcinoma 8 211191 -NCIT:C189248 Childhood SMARCB1-Deficient Kidney Medullary Carcinoma 9 211192 -NCIT:C189249 ALK-Rearranged Renal Cell Carcinoma 8 211193 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 9 211194 -NCIT:C191375 ELOC-Mutated Renal Cell Carcinoma 8 211195 -NCIT:C189244 Childhood Kidney Carcinoma 7 211196 -NCIT:C189248 Childhood SMARCB1-Deficient Kidney Medullary Carcinoma 8 211197 -NCIT:C6568 Childhood Renal Cell Carcinoma 8 211198 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 9 211199 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 9 211200 -NCIT:C189255 Childhood Eosinophilic Solid and Cystic Renal Cell Carcinoma 9 211201 -NCIT:C27806 Metastatic Kidney Carcinoma 7 211202 -NCIT:C150595 Metastatic Renal Cell Carcinoma 8 211203 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 211204 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 211205 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 211206 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 211207 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 211208 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 211209 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 9 211210 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 211211 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 211212 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 9 211213 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 211214 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 211215 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 9 211216 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 211217 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 211218 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 211219 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 211220 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 211221 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 211222 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 211223 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 211224 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 211225 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 9 211226 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 211227 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 211228 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 9 211229 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 211230 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 211231 -NCIT:C157755 Metastatic Kidney Medullary Carcinoma 8 211232 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 211233 -NCIT:C163965 Metastatic Renal Pelvis Carcinoma 8 211234 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 211235 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 211236 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 211237 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 211238 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 211239 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 211240 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 211241 -NCIT:C172617 Advanced Kidney Carcinoma 8 211242 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 211243 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 211244 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 211245 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 211246 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 211247 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 211248 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 211249 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 211250 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 211251 -NCIT:C172618 Locally Advanced Kidney Carcinoma 8 211252 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 211253 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 211254 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 211255 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 211256 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 211257 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 211258 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 211259 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 211260 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 211261 -NCIT:C39807 Mucinous Tubular and Spindle Cell Carcinoma of the Kidney 7 211262 -NCIT:C6142 Renal Pelvis Carcinoma 7 211263 -NCIT:C163965 Metastatic Renal Pelvis Carcinoma 8 211264 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 211265 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 211266 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 211267 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 211268 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 211269 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 211270 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 211271 -NCIT:C6143 Renal Pelvis Adenocarcinoma 8 211272 -NCIT:C7355 Renal Pelvis Urothelial Carcinoma 8 211273 -NCIT:C140356 Renal Pelvis Cancer by AJCC v8 Stage 9 211274 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 211275 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 10 211276 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 10 211277 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 10 211278 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 10 211279 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 10 211280 -NCIT:C140377 Renal Pelvis Cancer by AJCC v7 Stage 9 211281 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 10 211282 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 10 211283 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 10 211284 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 10 211285 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 10 211286 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 211287 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 211288 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 211289 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 211290 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 211291 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 211292 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 9 211293 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 9 211294 -NCIT:C180607 Renal Pelvis Urothelial Carcinoma, High Grade 9 211295 -NCIT:C6148 Renal Pelvis Papillary Urothelial Carcinoma 9 211296 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 211297 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 10 211298 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 9 211299 -NCIT:C7732 Renal Pelvis Squamous Cell Carcinoma 8 211300 -NCIT:C6194 Collecting Duct Carcinoma 7 211301 -NCIT:C7572 Kidney Medullary Carcinoma 7 211302 -NCIT:C157755 Metastatic Kidney Medullary Carcinoma 8 211303 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 211304 -NCIT:C162726 Recurrent Kidney Medullary Carcinoma 8 211305 -NCIT:C162727 Refractory Kidney Medullary Carcinoma 8 211306 -NCIT:C174567 Unresectable Kidney Medullary Carcinoma 8 211307 -NCIT:C189247 SMARCB1-Deficient Kidney Medullary Carcinoma 8 211308 -NCIT:C189248 Childhood SMARCB1-Deficient Kidney Medullary Carcinoma 9 211309 -NCIT:C9385 Renal Cell Carcinoma 7 211310 -NCIT:C100051 Renal Cell Carcinoma Associated with Neuroblastoma 8 211311 -NCIT:C126303 Tubulocystic Renal Cell Carcinoma 8 211312 -NCIT:C140322 Renal Cell Cancer by AJCC v8 Stage 8 211313 -NCIT:C140323 Stage I Renal Cell Cancer AJCC v8 9 211314 -NCIT:C140324 Stage II Renal Cell Cancer AJCC v8 9 211315 -NCIT:C140325 Stage III Renal Cell Cancer AJCC v8 9 211316 -NCIT:C140326 Stage IV Renal Cell Cancer AJCC v8 9 211317 -NCIT:C150359 Bilateral Synchronous Sporadic Renal Cell Carcinoma 8 211318 -NCIT:C150595 Metastatic Renal Cell Carcinoma 8 211319 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 211320 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 211321 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 211322 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 211323 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 211324 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 211325 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 9 211326 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 211327 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 211328 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 9 211329 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 211330 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 211331 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 9 211332 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 211333 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 211334 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 211335 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 211336 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 211337 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 211338 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 211339 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 211340 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 211341 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 9 211342 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 211343 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 211344 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 9 211345 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 211346 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 211347 -NCIT:C154494 Renal Cell Carcinoma with MiT Translocations 8 211348 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 9 211349 -NCIT:C27891 TFE3-Rearranged Renal Cell Carcinoma 9 211350 -NCIT:C37872 Renal Cell Carcinoma Associated with t(X;1)(p11.2;q21) 10 211351 -NCIT:C37874 Renal Cell Carcinoma Associated with t(X;1)(p11.2;p34) 10 211352 -NCIT:C37876 Renal Cell Carcinoma Associated with t(X;17)(p11.2;q25) 10 211353 -NCIT:C39802 Renal Cell Carcinoma Associated with inv(X)(p11;q12) 10 211354 -NCIT:C37210 TFEB-Rearranged Renal Cell Carcinoma 9 211355 -NCIT:C154545 Unresectable Renal Cell Carcinoma 8 211356 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 211357 -NCIT:C165449 Unresectable Clear Cell Renal Cell Carcinoma 9 211358 -NCIT:C183251 Unresectable Sarcomatoid Renal Cell Carcinoma 9 211359 -NCIT:C190505 Unresectable Papillary Renal Cell Carcinoma 9 211360 -NCIT:C190508 Unresectable Unclassified Renal Cell Carcinoma 9 211361 -NCIT:C154547 Resectable Renal Cell Carcinoma 8 211362 -NCIT:C156464 Succinate Dehydrogenase-Deficient Renal Cell Carcinoma 8 211363 -NCIT:C157718 Acquired Cystic Disease-Associated Renal Cell Carcinoma 8 211364 -NCIT:C164156 Fumarate Hydratase-Deficient Renal Cell Carcinoma 8 211365 -NCIT:C165745 Refractory Renal Cell Carcinoma 8 211366 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 9 211367 -NCIT:C189249 ALK-Rearranged Renal Cell Carcinoma 8 211368 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 9 211369 -NCIT:C189254 Eosinophilic Solid and Cystic Renal Cell Carcinoma 8 211370 -NCIT:C189255 Childhood Eosinophilic Solid and Cystic Renal Cell Carcinoma 9 211371 -NCIT:C191370 Renal Cell Carcinoma, Not Otherwise Specified 8 211372 -NCIT:C191375 ELOC-Mutated Renal Cell Carcinoma 8 211373 -NCIT:C27638 Transplant-Related Renal Cell Carcinoma 8 211374 -NCIT:C27892 Unclassified Renal Cell Carcinoma 8 211375 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 9 211376 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 211377 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 211378 -NCIT:C190508 Unresectable Unclassified Renal Cell Carcinoma 9 211379 -NCIT:C27893 Sarcomatoid Renal Cell Carcinoma 8 211380 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 9 211381 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 211382 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 211383 -NCIT:C183251 Unresectable Sarcomatoid Renal Cell Carcinoma 9 211384 -NCIT:C39789 Hereditary Renal Cell Carcinoma 8 211385 -NCIT:C36260 Hereditary Clear Cell Renal Cell Carcinoma 9 211386 -NCIT:C39790 Renal Cell Carcinoma with Constitutional Chromosome 3 Translocations 9 211387 -NCIT:C51302 Hereditary Leiomyomatosis and Renal Cell Carcinoma 9 211388 -NCIT:C9222 Hereditary Papillary Renal Cell Carcinoma 9 211389 -NCIT:C4033 Clear Cell Renal Cell Carcinoma 8 211390 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 9 211391 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 10 211392 -NCIT:C157614 BAP1-Mutant Clear Cell Renal Cell Carcinoma 9 211393 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 9 211394 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 211395 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 211396 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 9 211397 -NCIT:C165449 Unresectable Clear Cell Renal Cell Carcinoma 9 211398 -NCIT:C35851 Grade 1 Clear Cell Renal Cell Carcinoma 9 211399 -NCIT:C35852 Grade 2 Clear Cell Renal Cell Carcinoma 9 211400 -NCIT:C35853 Grade 3 Clear Cell Renal Cell Carcinoma 9 211401 -NCIT:C35854 Grade 4 Clear Cell Renal Cell Carcinoma 9 211402 -NCIT:C36260 Hereditary Clear Cell Renal Cell Carcinoma 9 211403 -NCIT:C36261 Non-Hereditary Clear Cell Renal Cell Carcinoma 9 211404 -NCIT:C4146 Chromophobe Renal Cell Carcinoma 8 211405 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 9 211406 -NCIT:C155951 Chromophobe Renal Cell Carcinoma Associated with Birt-Hogg-Dube Syndrome 9 211407 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 9 211408 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 211409 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 211410 -NCIT:C27888 Classic Variant of Chromophobe Renal Cell Carcinoma 9 211411 -NCIT:C27889 Eosinophilic Variant of Chromophobe Renal Cell Carcinoma 9 211412 -NCIT:C6568 Childhood Renal Cell Carcinoma 8 211413 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 9 211414 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 9 211415 -NCIT:C189255 Childhood Eosinophilic Solid and Cystic Renal Cell Carcinoma 9 211416 -NCIT:C6975 Papillary Renal Cell Carcinoma 8 211417 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 9 211418 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 211419 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 211420 -NCIT:C190505 Unresectable Papillary Renal Cell Carcinoma 9 211421 -NCIT:C27886 Type 1 Papillary Renal Cell Carcinoma 9 211422 -NCIT:C27887 Type 2 Papillary Renal Cell Carcinoma 9 211423 -NCIT:C27890 Sporadic Papillary Renal Cell Carcinoma 9 211424 -NCIT:C9222 Hereditary Papillary Renal Cell Carcinoma 9 211425 -NCIT:C7825 Recurrent Renal Cell Carcinoma 8 211426 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 9 211427 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 10 211428 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 9 211429 -NCIT:C90343 Renal Cell Cancer by AJCC v6 Stage 8 211430 -NCIT:C4003 Stage IV Renal Cell Cancer AJCC v6 9 211431 -NCIT:C7823 Stage I Renal Cell Cancer AJCC v6 and v7 9 211432 -NCIT:C7824 Stage II Renal Cell Cancer AJCC v6 9 211433 -NCIT:C9220 Stage III Renal Cell Cancer AJCC v6 9 211434 -NCIT:C91201 Renal Cell Cancer by AJCC v7 Stage 8 211435 -NCIT:C7823 Stage I Renal Cell Cancer AJCC v6 and v7 9 211436 -NCIT:C89301 Stage II Renal Cell Cancer AJCC v7 9 211437 -NCIT:C89302 Stage III Renal Cell Cancer AJCC v7 9 211438 -NCIT:C89303 Stage IV Renal Cell Cancer AJCC v7 9 211439 -NCIT:C7507 Malignant Urethral Neoplasm 5 211440 -NCIT:C159665 Urethral Melanoma 6 211441 -NCIT:C3561 Malignant Accessory Urethral Gland Neoplasm 6 211442 -NCIT:C7371 Accessory Urethral Gland Adenocarcinoma 7 211443 -NCIT:C180948 Skene Gland Adenocarcinoma of the Urethra 8 211444 -NCIT:C39864 Cowper Gland Adenocarcinoma of the Urethra 8 211445 -NCIT:C39865 Littre Gland Adenocarcinoma of the Urethra 8 211446 -NCIT:C39866 Female Urethral Malignant Neoplasm 6 211447 -NCIT:C39867 Male Urethral Malignant Neoplasm 6 211448 -NCIT:C39864 Cowper Gland Adenocarcinoma of the Urethra 7 211449 -NCIT:C39865 Littre Gland Adenocarcinoma of the Urethra 7 211450 -NCIT:C39868 Penile Urethral Malignant Neoplasm 7 211451 -NCIT:C39869 Bulbomembranous Urethral Malignant Neoplasm 7 211452 -NCIT:C39870 Prostatic Urethral Malignant Neoplasm 7 211453 -NCIT:C39900 Prostatic Urethra Urothelial Carcinoma 8 211454 -NCIT:C7573 Metastatic Malignant Neoplasm in the Urethra 6 211455 -NCIT:C7639 Regional Malignant Urethral Neoplasm 6 211456 -NCIT:C7640 Posterior Urethral Malignant Neoplasm 6 211457 -NCIT:C7641 Anterior Urethral Malignant Neoplasm 6 211458 -NCIT:C9106 Urethral Carcinoma 6 211459 -NCIT:C115210 Distal Urethral Carcinoma 7 211460 -NCIT:C115334 Proximal Urethral Carcinoma 7 211461 -NCIT:C140457 Urethral Cancer by AJCC v8 Stage 7 211462 -NCIT:C140458 Stage 0a Urethral Cancer AJCC v8 8 211463 -NCIT:C140459 Stage 0is Urethral Cancer AJCC v8 8 211464 -NCIT:C140460 Stage I Urethral Cancer AJCC v8 8 211465 -NCIT:C140461 Stage II Urethral Cancer AJCC v8 8 211466 -NCIT:C140462 Stage III Urethral Cancer AJCC v8 8 211467 -NCIT:C140463 Stage IV Urethral Cancer AJCC v8 8 211468 -NCIT:C140464 Urethral Cancer by AJCC v7 Stage 7 211469 -NCIT:C6195 Stage 0 Urethral Cancer AJCC v7 8 211470 -NCIT:C4531 Stage 0is Urethral Cancer AJCC v7 9 211471 -NCIT:C6196 Stage 0a Urethral Cancer AJCC v7 9 211472 -NCIT:C6197 Stage I Urethral Cancer AJCC v7 8 211473 -NCIT:C6198 Stage II Urethral Cancer AJCC v7 8 211474 -NCIT:C6199 Stage III Urethral Cancer AJCC v7 8 211475 -NCIT:C6200 Stage IV Urethral Cancer AJCC v7 8 211476 -NCIT:C27819 Metastatic Urethral Carcinoma 7 211477 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 211478 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 211479 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 211480 -NCIT:C6165 Urethral Squamous Cell Carcinoma 7 211481 -NCIT:C39862 Human Papillomavirus-Related Urethral Squamous Cell Carcinoma 8 211482 -NCIT:C39874 Urethral Verrucous Carcinoma 8 211483 -NCIT:C6166 Urethral Urothelial Carcinoma 7 211484 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 211485 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 211486 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 211487 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 211488 -NCIT:C158585 Unresectable Urethral Urothelial Carcinoma 8 211489 -NCIT:C176996 Refractory Urethral Urothelial Carcinoma 8 211490 -NCIT:C39900 Prostatic Urethra Urothelial Carcinoma 8 211491 -NCIT:C6167 Urethral Adenocarcinoma 7 211492 -NCIT:C6172 Urethral Clear Cell Adenocarcinoma 8 211493 -NCIT:C7371 Accessory Urethral Gland Adenocarcinoma 8 211494 -NCIT:C180948 Skene Gland Adenocarcinoma of the Urethra 9 211495 -NCIT:C39864 Cowper Gland Adenocarcinoma of the Urethra 9 211496 -NCIT:C39865 Littre Gland Adenocarcinoma of the Urethra 9 211497 -NCIT:C6168 Urethral Undifferentiated Carcinoma 7 211498 -NCIT:C7508 Recurrent Urethral Carcinoma 7 211499 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 211500 -NCIT:C7543 Malignant Ureter Neoplasm 5 211501 -NCIT:C6175 Ureter Lymphoma 6 211502 -NCIT:C7544 Metastatic Malignant Neoplasm in the Ureter 6 211503 -NCIT:C8716 Regional Malignant Ureter Neoplasm 6 211504 -NCIT:C9356 Regional Ureter Carcinoma 7 211505 -NCIT:C8993 Ureter Carcinoma 6 211506 -NCIT:C27818 Metastatic Ureter Carcinoma 7 211507 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 8 211508 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 211509 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 211510 -NCIT:C4830 Ureter Urothelial Carcinoma 7 211511 -NCIT:C140357 Ureter Cancer by AJCC v8 Stage 8 211512 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 9 211513 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 9 211514 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 9 211515 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 9 211516 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 9 211517 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 9 211518 -NCIT:C140378 Ureter Cancer by AJCC v7 Stage 8 211519 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 9 211520 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 10 211521 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 10 211522 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 9 211523 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 9 211524 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 9 211525 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 9 211526 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 8 211527 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 211528 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 211529 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 8 211530 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 8 211531 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 8 211532 -NCIT:C180608 Ureter Urothelial Carcinoma, High Grade 8 211533 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 8 211534 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 8 211535 -NCIT:C6154 Ureter Squamous Cell Carcinoma 7 211536 -NCIT:C6155 Ureter Adenocarcinoma 7 211537 -NCIT:C6159 Ureter Undifferentiated Carcinoma 7 211538 -NCIT:C6176 Ureter Small Cell Neuroendocrine Carcinoma 7 211539 -NCIT:C9255 Recurrent Ureter Carcinoma 7 211540 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 8 211541 -NCIT:C9356 Regional Ureter Carcinoma 7 211542 -NCIT:C7548 Malignant Kidney Neoplasm 5 211543 -NCIT:C120456 Malignant Kidney Neoplasm Except Pelvis 6 211544 -NCIT:C123907 Childhood Malignant Kidney Neoplasm 6 211545 -NCIT:C189244 Childhood Kidney Carcinoma 7 211546 -NCIT:C189248 Childhood SMARCB1-Deficient Kidney Medullary Carcinoma 8 211547 -NCIT:C6568 Childhood Renal Cell Carcinoma 8 211548 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 9 211549 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 9 211550 -NCIT:C189255 Childhood Eosinophilic Solid and Cystic Renal Cell Carcinoma 9 211551 -NCIT:C189260 Childhood Anaplastic Sarcoma of the Kidney 7 211552 -NCIT:C189261 Childhood Kidney Ewing Sarcoma 7 211553 -NCIT:C27730 Childhood Kidney Wilms Tumor 7 211554 -NCIT:C6897 Cystic Partially Differentiated Kidney Nephroblastoma 8 211555 -NCIT:C4264 Clear Cell Sarcoma of the Kidney 7 211556 -NCIT:C6569 Congenital Mesoblastic Nephroma 7 211557 -NCIT:C39814 Classic Congenital Mesoblastic Nephroma 8 211558 -NCIT:C39815 Cellular Congenital Mesoblastic Nephroma 8 211559 -NCIT:C97058 Mixed Congenital Mesoblastic Nephroma 8 211560 -NCIT:C8715 Rhabdoid Tumor of the Kidney 7 211561 -NCIT:C162730 Recurrent Rhabdoid Tumor of the Kidney 8 211562 -NCIT:C162731 Refractory Rhabdoid Tumor of the Kidney 8 211563 -NCIT:C188888 Unresectable Rhabdoid Tumor of the Kidney 8 211564 -NCIT:C37265 Malignant Mixed Epithelial and Stromal Tumor of the Kidney 6 211565 -NCIT:C40407 Kidney Wilms Tumor 6 211566 -NCIT:C27730 Childhood Kidney Wilms Tumor 7 211567 -NCIT:C6897 Cystic Partially Differentiated Kidney Nephroblastoma 8 211568 -NCIT:C38158 Metachronous Kidney Wilms Tumor 7 211569 -NCIT:C6180 Adult Kidney Wilms Tumor 7 211570 -NCIT:C6951 Nonanaplastic Kidney Wilms Tumor 7 211571 -NCIT:C6952 Anaplastic Kidney Wilms Tumor 7 211572 -NCIT:C7840 Stage I Kidney Wilms Tumor 7 211573 -NCIT:C7841 Stage II Kidney Wilms Tumor 7 211574 -NCIT:C7842 Stage III Kidney Wilms Tumor 7 211575 -NCIT:C7843 Stage IV Kidney Wilms Tumor 7 211576 -NCIT:C7844 Stage V Kidney Wilms Tumor 7 211577 -NCIT:C7845 Recurrent Kidney Wilms Tumor 7 211578 -NCIT:C8496 Hereditary Kidney Wilms Tumor 7 211579 -NCIT:C9146 Epithelial Predominant Kidney Wilms Tumor 7 211580 -NCIT:C9147 Blastema Predominant Kidney Wilms Tumor 7 211581 -NCIT:C9148 Stromal Predominant Kidney Wilms Tumor 7 211582 -NCIT:C9149 Mixed Cell Type Kidney Wilms Tumor 7 211583 -NCIT:C4525 Kidney Sarcoma 6 211584 -NCIT:C154496 Anaplastic Sarcoma of the Kidney 7 211585 -NCIT:C189260 Childhood Anaplastic Sarcoma of the Kidney 8 211586 -NCIT:C157737 Kidney Synovial Sarcoma 7 211587 -NCIT:C159205 Kidney Angiosarcoma 7 211588 -NCIT:C159206 Kidney Rhabdomyosarcoma 7 211589 -NCIT:C159208 Kidney Ewing Sarcoma 7 211590 -NCIT:C189261 Childhood Kidney Ewing Sarcoma 8 211591 -NCIT:C4264 Clear Cell Sarcoma of the Kidney 7 211592 -NCIT:C6181 Kidney Extraskeletal Osteosarcoma 7 211593 -NCIT:C6183 Kidney Leiomyosarcoma 7 211594 -NCIT:C6185 Kidney Liposarcoma 7 211595 -NCIT:C7726 Kidney Fibrosarcoma 7 211596 -NCIT:C63532 Kidney Lymphoma 6 211597 -NCIT:C188075 Kidney Burkitt Lymphoma 7 211598 -NCIT:C63533 Kidney Diffuse Large B-Cell Lymphoma 7 211599 -NCIT:C67214 Peripheral Primitive Neuroectodermal Tumor of the Kidney 6 211600 -NCIT:C7525 Malignant Renal Pelvis Neoplasm 6 211601 -NCIT:C6142 Renal Pelvis Carcinoma 7 211602 -NCIT:C163965 Metastatic Renal Pelvis Carcinoma 8 211603 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 211604 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 211605 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 211606 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 211607 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 211608 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 211609 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 211610 -NCIT:C6143 Renal Pelvis Adenocarcinoma 8 211611 -NCIT:C7355 Renal Pelvis Urothelial Carcinoma 8 211612 -NCIT:C140356 Renal Pelvis Cancer by AJCC v8 Stage 9 211613 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 211614 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 10 211615 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 10 211616 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 10 211617 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 10 211618 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 10 211619 -NCIT:C140377 Renal Pelvis Cancer by AJCC v7 Stage 9 211620 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 10 211621 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 10 211622 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 10 211623 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 10 211624 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 10 211625 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 211626 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 211627 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 211628 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 211629 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 211630 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 211631 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 9 211632 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 9 211633 -NCIT:C180607 Renal Pelvis Urothelial Carcinoma, High Grade 9 211634 -NCIT:C6148 Renal Pelvis Papillary Urothelial Carcinoma 9 211635 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 211636 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 10 211637 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 9 211638 -NCIT:C7732 Renal Pelvis Squamous Cell Carcinoma 8 211639 -NCIT:C7549 Metastatic Malignant Neoplasm in the Kidney 6 211640 -NCIT:C185153 Extramedullary Disease in Plasma Cell Myeloma Involving the Kidney 7 211641 -NCIT:C9384 Kidney Carcinoma 6 211642 -NCIT:C159224 Kidney Neuroendocrine Carcinoma 7 211643 -NCIT:C116317 Kidney Small Cell Neuroendocrine Carcinoma 8 211644 -NCIT:C159225 Kidney Large Cell Neuroendocrine Carcinoma 8 211645 -NCIT:C172622 Recurrent Kidney Carcinoma 7 211646 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 8 211647 -NCIT:C162726 Recurrent Kidney Medullary Carcinoma 8 211648 -NCIT:C7825 Recurrent Renal Cell Carcinoma 8 211649 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 9 211650 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 10 211651 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 9 211652 -NCIT:C172623 Refractory Kidney Carcinoma 7 211653 -NCIT:C162727 Refractory Kidney Medullary Carcinoma 8 211654 -NCIT:C165745 Refractory Renal Cell Carcinoma 8 211655 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 9 211656 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 8 211657 -NCIT:C174565 Unresectable Kidney Carcinoma 7 211658 -NCIT:C154545 Unresectable Renal Cell Carcinoma 8 211659 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 211660 -NCIT:C165449 Unresectable Clear Cell Renal Cell Carcinoma 9 211661 -NCIT:C183251 Unresectable Sarcomatoid Renal Cell Carcinoma 9 211662 -NCIT:C190505 Unresectable Papillary Renal Cell Carcinoma 9 211663 -NCIT:C190508 Unresectable Unclassified Renal Cell Carcinoma 9 211664 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 8 211665 -NCIT:C174567 Unresectable Kidney Medullary Carcinoma 8 211666 -NCIT:C189241 Kidney Carcinoma Molecular Subtypes 7 211667 -NCIT:C154494 Renal Cell Carcinoma with MiT Translocations 8 211668 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 9 211669 -NCIT:C27891 TFE3-Rearranged Renal Cell Carcinoma 9 211670 -NCIT:C37872 Renal Cell Carcinoma Associated with t(X;1)(p11.2;q21) 10 211671 -NCIT:C37874 Renal Cell Carcinoma Associated with t(X;1)(p11.2;p34) 10 211672 -NCIT:C37876 Renal Cell Carcinoma Associated with t(X;17)(p11.2;q25) 10 211673 -NCIT:C39802 Renal Cell Carcinoma Associated with inv(X)(p11;q12) 10 211674 -NCIT:C37210 TFEB-Rearranged Renal Cell Carcinoma 9 211675 -NCIT:C156464 Succinate Dehydrogenase-Deficient Renal Cell Carcinoma 8 211676 -NCIT:C164156 Fumarate Hydratase-Deficient Renal Cell Carcinoma 8 211677 -NCIT:C189247 SMARCB1-Deficient Kidney Medullary Carcinoma 8 211678 -NCIT:C189248 Childhood SMARCB1-Deficient Kidney Medullary Carcinoma 9 211679 -NCIT:C189249 ALK-Rearranged Renal Cell Carcinoma 8 211680 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 9 211681 -NCIT:C191375 ELOC-Mutated Renal Cell Carcinoma 8 211682 -NCIT:C189244 Childhood Kidney Carcinoma 7 211683 -NCIT:C189248 Childhood SMARCB1-Deficient Kidney Medullary Carcinoma 8 211684 -NCIT:C6568 Childhood Renal Cell Carcinoma 8 211685 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 9 211686 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 9 211687 -NCIT:C189255 Childhood Eosinophilic Solid and Cystic Renal Cell Carcinoma 9 211688 -NCIT:C27806 Metastatic Kidney Carcinoma 7 211689 -NCIT:C150595 Metastatic Renal Cell Carcinoma 8 211690 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 211691 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 211692 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 211693 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 211694 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 211695 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 211696 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 9 211697 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 211698 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 211699 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 9 211700 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 211701 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 211702 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 9 211703 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 211704 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 211705 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 211706 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 211707 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 211708 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 211709 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 211710 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 211711 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 211712 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 9 211713 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 211714 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 211715 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 9 211716 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 211717 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 211718 -NCIT:C157755 Metastatic Kidney Medullary Carcinoma 8 211719 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 211720 -NCIT:C163965 Metastatic Renal Pelvis Carcinoma 8 211721 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 211722 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 211723 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 211724 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 211725 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 211726 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 211727 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 211728 -NCIT:C172617 Advanced Kidney Carcinoma 8 211729 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 211730 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 211731 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 211732 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 211733 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 211734 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 211735 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 211736 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 211737 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 211738 -NCIT:C172618 Locally Advanced Kidney Carcinoma 8 211739 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 211740 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 211741 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 211742 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 211743 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 211744 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 211745 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 211746 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 211747 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 211748 -NCIT:C39807 Mucinous Tubular and Spindle Cell Carcinoma of the Kidney 7 211749 -NCIT:C6142 Renal Pelvis Carcinoma 7 211750 -NCIT:C163965 Metastatic Renal Pelvis Carcinoma 8 211751 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 211752 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 211753 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 211754 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 211755 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 211756 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 211757 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 211758 -NCIT:C6143 Renal Pelvis Adenocarcinoma 8 211759 -NCIT:C7355 Renal Pelvis Urothelial Carcinoma 8 211760 -NCIT:C140356 Renal Pelvis Cancer by AJCC v8 Stage 9 211761 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 211762 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 10 211763 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 10 211764 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 10 211765 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 10 211766 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 10 211767 -NCIT:C140377 Renal Pelvis Cancer by AJCC v7 Stage 9 211768 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 10 211769 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 10 211770 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 10 211771 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 10 211772 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 10 211773 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 211774 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 211775 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 211776 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 211777 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 211778 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 211779 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 9 211780 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 9 211781 -NCIT:C180607 Renal Pelvis Urothelial Carcinoma, High Grade 9 211782 -NCIT:C6148 Renal Pelvis Papillary Urothelial Carcinoma 9 211783 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 211784 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 10 211785 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 9 211786 -NCIT:C7732 Renal Pelvis Squamous Cell Carcinoma 8 211787 -NCIT:C6194 Collecting Duct Carcinoma 7 211788 -NCIT:C7572 Kidney Medullary Carcinoma 7 211789 -NCIT:C157755 Metastatic Kidney Medullary Carcinoma 8 211790 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 211791 -NCIT:C162726 Recurrent Kidney Medullary Carcinoma 8 211792 -NCIT:C162727 Refractory Kidney Medullary Carcinoma 8 211793 -NCIT:C174567 Unresectable Kidney Medullary Carcinoma 8 211794 -NCIT:C189247 SMARCB1-Deficient Kidney Medullary Carcinoma 8 211795 -NCIT:C189248 Childhood SMARCB1-Deficient Kidney Medullary Carcinoma 9 211796 -NCIT:C9385 Renal Cell Carcinoma 7 211797 -NCIT:C100051 Renal Cell Carcinoma Associated with Neuroblastoma 8 211798 -NCIT:C126303 Tubulocystic Renal Cell Carcinoma 8 211799 -NCIT:C140322 Renal Cell Cancer by AJCC v8 Stage 8 211800 -NCIT:C140323 Stage I Renal Cell Cancer AJCC v8 9 211801 -NCIT:C140324 Stage II Renal Cell Cancer AJCC v8 9 211802 -NCIT:C140325 Stage III Renal Cell Cancer AJCC v8 9 211803 -NCIT:C140326 Stage IV Renal Cell Cancer AJCC v8 9 211804 -NCIT:C150359 Bilateral Synchronous Sporadic Renal Cell Carcinoma 8 211805 -NCIT:C150595 Metastatic Renal Cell Carcinoma 8 211806 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 211807 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 211808 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 211809 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 211810 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 211811 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 211812 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 9 211813 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 211814 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 211815 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 9 211816 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 211817 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 211818 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 9 211819 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 211820 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 211821 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 211822 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 211823 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 211824 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 211825 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 211826 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 211827 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 211828 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 9 211829 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 211830 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 211831 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 9 211832 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 211833 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 211834 -NCIT:C154494 Renal Cell Carcinoma with MiT Translocations 8 211835 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 9 211836 -NCIT:C27891 TFE3-Rearranged Renal Cell Carcinoma 9 211837 -NCIT:C37872 Renal Cell Carcinoma Associated with t(X;1)(p11.2;q21) 10 211838 -NCIT:C37874 Renal Cell Carcinoma Associated with t(X;1)(p11.2;p34) 10 211839 -NCIT:C37876 Renal Cell Carcinoma Associated with t(X;17)(p11.2;q25) 10 211840 -NCIT:C39802 Renal Cell Carcinoma Associated with inv(X)(p11;q12) 10 211841 -NCIT:C37210 TFEB-Rearranged Renal Cell Carcinoma 9 211842 -NCIT:C154545 Unresectable Renal Cell Carcinoma 8 211843 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 211844 -NCIT:C165449 Unresectable Clear Cell Renal Cell Carcinoma 9 211845 -NCIT:C183251 Unresectable Sarcomatoid Renal Cell Carcinoma 9 211846 -NCIT:C190505 Unresectable Papillary Renal Cell Carcinoma 9 211847 -NCIT:C190508 Unresectable Unclassified Renal Cell Carcinoma 9 211848 -NCIT:C154547 Resectable Renal Cell Carcinoma 8 211849 -NCIT:C156464 Succinate Dehydrogenase-Deficient Renal Cell Carcinoma 8 211850 -NCIT:C157718 Acquired Cystic Disease-Associated Renal Cell Carcinoma 8 211851 -NCIT:C164156 Fumarate Hydratase-Deficient Renal Cell Carcinoma 8 211852 -NCIT:C165745 Refractory Renal Cell Carcinoma 8 211853 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 9 211854 -NCIT:C189249 ALK-Rearranged Renal Cell Carcinoma 8 211855 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 9 211856 -NCIT:C189254 Eosinophilic Solid and Cystic Renal Cell Carcinoma 8 211857 -NCIT:C189255 Childhood Eosinophilic Solid and Cystic Renal Cell Carcinoma 9 211858 -NCIT:C191370 Renal Cell Carcinoma, Not Otherwise Specified 8 211859 -NCIT:C191375 ELOC-Mutated Renal Cell Carcinoma 8 211860 -NCIT:C27638 Transplant-Related Renal Cell Carcinoma 8 211861 -NCIT:C27892 Unclassified Renal Cell Carcinoma 8 211862 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 9 211863 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 211864 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 211865 -NCIT:C190508 Unresectable Unclassified Renal Cell Carcinoma 9 211866 -NCIT:C27893 Sarcomatoid Renal Cell Carcinoma 8 211867 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 9 211868 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 211869 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 211870 -NCIT:C183251 Unresectable Sarcomatoid Renal Cell Carcinoma 9 211871 -NCIT:C39789 Hereditary Renal Cell Carcinoma 8 211872 -NCIT:C36260 Hereditary Clear Cell Renal Cell Carcinoma 9 211873 -NCIT:C39790 Renal Cell Carcinoma with Constitutional Chromosome 3 Translocations 9 211874 -NCIT:C51302 Hereditary Leiomyomatosis and Renal Cell Carcinoma 9 211875 -NCIT:C9222 Hereditary Papillary Renal Cell Carcinoma 9 211876 -NCIT:C4033 Clear Cell Renal Cell Carcinoma 8 211877 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 9 211878 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 10 211879 -NCIT:C157614 BAP1-Mutant Clear Cell Renal Cell Carcinoma 9 211880 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 9 211881 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 211882 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 211883 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 9 211884 -NCIT:C165449 Unresectable Clear Cell Renal Cell Carcinoma 9 211885 -NCIT:C35851 Grade 1 Clear Cell Renal Cell Carcinoma 9 211886 -NCIT:C35852 Grade 2 Clear Cell Renal Cell Carcinoma 9 211887 -NCIT:C35853 Grade 3 Clear Cell Renal Cell Carcinoma 9 211888 -NCIT:C35854 Grade 4 Clear Cell Renal Cell Carcinoma 9 211889 -NCIT:C36260 Hereditary Clear Cell Renal Cell Carcinoma 9 211890 -NCIT:C36261 Non-Hereditary Clear Cell Renal Cell Carcinoma 9 211891 -NCIT:C4146 Chromophobe Renal Cell Carcinoma 8 211892 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 9 211893 -NCIT:C155951 Chromophobe Renal Cell Carcinoma Associated with Birt-Hogg-Dube Syndrome 9 211894 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 9 211895 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 211896 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 211897 -NCIT:C27888 Classic Variant of Chromophobe Renal Cell Carcinoma 9 211898 -NCIT:C27889 Eosinophilic Variant of Chromophobe Renal Cell Carcinoma 9 211899 -NCIT:C6568 Childhood Renal Cell Carcinoma 8 211900 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 9 211901 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 9 211902 -NCIT:C189255 Childhood Eosinophilic Solid and Cystic Renal Cell Carcinoma 9 211903 -NCIT:C6975 Papillary Renal Cell Carcinoma 8 211904 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 9 211905 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 211906 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 211907 -NCIT:C190505 Unresectable Papillary Renal Cell Carcinoma 9 211908 -NCIT:C27886 Type 1 Papillary Renal Cell Carcinoma 9 211909 -NCIT:C27887 Type 2 Papillary Renal Cell Carcinoma 9 211910 -NCIT:C27890 Sporadic Papillary Renal Cell Carcinoma 9 211911 -NCIT:C9222 Hereditary Papillary Renal Cell Carcinoma 9 211912 -NCIT:C7825 Recurrent Renal Cell Carcinoma 8 211913 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 9 211914 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 10 211915 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 9 211916 -NCIT:C90343 Renal Cell Cancer by AJCC v6 Stage 8 211917 -NCIT:C4003 Stage IV Renal Cell Cancer AJCC v6 9 211918 -NCIT:C7823 Stage I Renal Cell Cancer AJCC v6 and v7 9 211919 -NCIT:C7824 Stage II Renal Cell Cancer AJCC v6 9 211920 -NCIT:C9220 Stage III Renal Cell Cancer AJCC v6 9 211921 -NCIT:C91201 Renal Cell Cancer by AJCC v7 Stage 8 211922 -NCIT:C7823 Stage I Renal Cell Cancer AJCC v6 and v7 9 211923 -NCIT:C89301 Stage II Renal Cell Cancer AJCC v7 9 211924 -NCIT:C89302 Stage III Renal Cell Cancer AJCC v7 9 211925 -NCIT:C89303 Stage IV Renal Cell Cancer AJCC v7 9 211926 -NCIT:C9334 Malignant Bladder Neoplasm 5 211927 -NCIT:C159663 Bladder Melanoma 6 211928 -NCIT:C159677 Bladder Malignant PEComa 6 211929 -NCIT:C4669 Bladder Sarcoma 6 211930 -NCIT:C156277 Bladder Alveolar Soft Part Sarcoma 7 211931 -NCIT:C159667 Bladder Rhabdomyosarcoma 7 211932 -NCIT:C159668 Bladder Embryonal Rhabdomyosarcoma 8 211933 -NCIT:C159669 Bladder Alveolar Rhabdomyosarcoma 8 211934 -NCIT:C159670 Bladder Leiomyosarcoma 7 211935 -NCIT:C159671 Bladder Angiosarcoma 7 211936 -NCIT:C4912 Bladder Carcinoma 6 211937 -NCIT:C118816 Childhood Bladder Carcinoma 7 211938 -NCIT:C140416 Bladder Cancer by AJCC v8 Stage 7 211939 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 8 211940 -NCIT:C140418 Stage 0is Bladder Cancer AJCC v8 8 211941 -NCIT:C140419 Stage I Bladder Cancer AJCC v8 8 211942 -NCIT:C140420 Stage II Bladder Cancer AJCC v8 8 211943 -NCIT:C140421 Stage III Bladder Cancer AJCC v8 8 211944 -NCIT:C140422 Stage IIIA Bladder Cancer AJCC v8 9 211945 -NCIT:C140423 Stage IIIB Bladder Cancer AJCC v8 9 211946 -NCIT:C140424 Stage IV Bladder Cancer AJCC v8 8 211947 -NCIT:C140425 Stage IVA Bladder Cancer AJCC v8 9 211948 -NCIT:C140426 Stage IVB Bladder Cancer AJCC v8 9 211949 -NCIT:C150316 Refractory Bladder Carcinoma 7 211950 -NCIT:C148286 Refractory Stage 0 Bladder Cancer AJCC v6 and v7 8 211951 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 8 211952 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 211953 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 8 211954 -NCIT:C150570 Invasive Bladder Carcinoma 7 211955 -NCIT:C150572 Muscle Invasive Bladder Carcinoma 8 211956 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 9 211957 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 10 211958 -NCIT:C165716 Invasive Bladder Mixed Carcinoma 8 211959 -NCIT:C27474 Non-Muscle Invasive Bladder Carcinoma 8 211960 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 9 211961 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 211962 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 10 211963 -NCIT:C190772 Metastatic Non-Muscle Invasive Bladder Carcinoma 9 211964 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 10 211965 -NCIT:C190774 Recurrent Non-Muscle Invasive Bladder Carcinoma 9 211966 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 211967 -NCIT:C27885 Invasive Bladder Urothelial Carcinoma 8 211968 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 9 211969 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 211970 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 10 211971 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 9 211972 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 10 211973 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 9 211974 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 9 211975 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 9 211976 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 9 211977 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 211978 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 211979 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 9 211980 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 9 211981 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 9 211982 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 9 211983 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 10 211984 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 9 211985 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 9 211986 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 9 211987 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 10 211988 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 9 211989 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 10 211990 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 10 211991 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 10 211992 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 211993 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 10 211994 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 9 211995 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 10 211996 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 9 211997 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 10 211998 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 211999 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 212000 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 212001 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 9 212002 -NCIT:C156062 Metastatic Bladder Carcinoma 7 212003 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 212004 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 212005 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 212006 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 212007 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 212008 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 212009 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 212010 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 212011 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 212012 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 212013 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 212014 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 8 212015 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 8 212016 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 8 212017 -NCIT:C167071 Locally Advanced Bladder Carcinoma 8 212018 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 212019 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 9 212020 -NCIT:C167338 Advanced Bladder Carcinoma 8 212021 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 212022 -NCIT:C190772 Metastatic Non-Muscle Invasive Bladder Carcinoma 8 212023 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 9 212024 -NCIT:C157759 Bladder Neuroendocrine Carcinoma 7 212025 -NCIT:C157760 Bladder Large Cell Neuroendocrine Carcinoma 8 212026 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 9 212027 -NCIT:C9461 Bladder Small Cell Neuroendocrine Carcinoma 8 212028 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 9 212029 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 9 212030 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 9 212031 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 9 212032 -NCIT:C159542 Bladder Endometrioid Adenocarcinoma 7 212033 -NCIT:C160158 Carcinoma Arising in Bladder Diverticulum 7 212034 -NCIT:C167075 Unresectable Bladder Carcinoma 7 212035 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 8 212036 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 8 212037 -NCIT:C39842 Urachal Carcinoma 7 212038 -NCIT:C39843 Urachal Adenocarcinoma 8 212039 -NCIT:C39844 Urachal Urothelial Carcinoma 8 212040 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 212041 -NCIT:C39845 Urachal Squamous Cell Carcinoma 8 212042 -NCIT:C39851 Bladder Urothelial Carcinoma 7 212043 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 212044 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 212045 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 212046 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 212047 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 212048 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 212049 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 212050 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 212051 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 212052 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 212053 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 212054 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 212055 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 212056 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 8 212057 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 8 212058 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 212059 -NCIT:C177531 Bladder Flat Urothelial Carcinoma 8 212060 -NCIT:C37266 Bladder Urothelial Carcinoma In Situ 9 212061 -NCIT:C140418 Stage 0is Bladder Cancer AJCC v8 10 212062 -NCIT:C3644 Stage 0is Bladder Urothelial Carcinoma AJCC v6 and v7 10 212063 -NCIT:C180609 Bladder Urothelial Carcinoma, High Grade 8 212064 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 9 212065 -NCIT:C188032 Resectable Bladder Urothelial Carcinoma 8 212066 -NCIT:C27634 Transplant-Related Bladder Urothelial Carcinoma 8 212067 -NCIT:C27885 Invasive Bladder Urothelial Carcinoma 8 212068 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 9 212069 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 212070 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 10 212071 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 9 212072 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 10 212073 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 9 212074 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 9 212075 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 9 212076 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 9 212077 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 212078 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 212079 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 9 212080 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 9 212081 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 9 212082 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 9 212083 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 10 212084 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 9 212085 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 9 212086 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 9 212087 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 10 212088 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 9 212089 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 10 212090 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 10 212091 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 10 212092 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 212093 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 10 212094 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 9 212095 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 10 212096 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 9 212097 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 10 212098 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 212099 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 212100 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 212101 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 9 212102 -NCIT:C39844 Urachal Urothelial Carcinoma 8 212103 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 212104 -NCIT:C7383 Bladder Papillary Urothelial Carcinoma 8 212105 -NCIT:C158382 Bladder Non-Invasive Papillary Urothelial Carcinoma 9 212106 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 10 212107 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 10 212108 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 10 212109 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 10 212110 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 212111 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 212112 -NCIT:C4031 Bladder Squamous Cell Carcinoma 7 212113 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 8 212114 -NCIT:C27768 Schistosoma Hematobium-Related Bladder Squamous Cell Carcinoma 8 212115 -NCIT:C39833 Schistosoma Hematobium-Related Bladder Verrucous Carcinoma 9 212116 -NCIT:C39832 Bladder Verrucous Carcinoma 8 212117 -NCIT:C39833 Schistosoma Hematobium-Related Bladder Verrucous Carcinoma 9 212118 -NCIT:C39845 Urachal Squamous Cell Carcinoma 8 212119 -NCIT:C4994 Stage II Bladder Squamous Cell Carcinoma AJCC v6 and v7 8 212120 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 8 212121 -NCIT:C8903 Stage 0 Bladder Squamous Cell Carcinoma AJCC v6 and v7 8 212122 -NCIT:C8904 Stage I Squamous Cell Carcinoma of the Bladder AJCC v6 and v7 8 212123 -NCIT:C8905 Stage III Bladder Squamous Cell Carcinoma AJCC v6 and v7 8 212124 -NCIT:C8906 Stage IV Bladder Squamous Cell Carcinoma AJCC v7 8 212125 -NCIT:C4032 Bladder Adenocarcinoma 7 212126 -NCIT:C39835 Bladder Enteric Type Adenocarcinoma 8 212127 -NCIT:C39836 Bladder Adenocarcinoma, Not Otherwise Specified 8 212128 -NCIT:C39837 Bladder Mucinous Adenocarcinoma 8 212129 -NCIT:C39838 Bladder Hepatoid Adenocarcinoma 8 212130 -NCIT:C39839 Bladder Mixed Adenocarcinoma 8 212131 -NCIT:C39843 Urachal Adenocarcinoma 8 212132 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 8 212133 -NCIT:C6163 Bladder Signet Ring Cell Adenocarcinoma 8 212134 -NCIT:C8894 Stage 0 Bladder Adenocarcinoma AJCC v6 and v7 8 212135 -NCIT:C8895 Stage I Bladder Adenocarcinoma AJCC v6 and v7 8 212136 -NCIT:C8896 Stage II Bladder Adenocarcinoma AJCC v6 and v7 8 212137 -NCIT:C8897 Stage III Bladder Adenocarcinoma AJCC v6 and v7 8 212138 -NCIT:C8898 Stage IV Bladder Adenocarcinoma AJCC v7 8 212139 -NCIT:C6179 Bladder Clear Cell Adenocarcinoma 7 212140 -NCIT:C39847 Bladder Tubulo-Cystic Clear Cell Adenocarcinoma 8 212141 -NCIT:C39848 Bladder Papillary Clear Cell Adenocarcinoma 8 212142 -NCIT:C39849 Bladder Diffuse Clear Cell Adenocarcinoma 8 212143 -NCIT:C7899 Recurrent Bladder Carcinoma 7 212144 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 212145 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 212146 -NCIT:C190774 Recurrent Non-Muscle Invasive Bladder Carcinoma 8 212147 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 212148 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 212149 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 8 212150 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 8 212151 -NCIT:C90344 Bladder Cancer by AJCC v6 Stage 7 212152 -NCIT:C7895 Stage 0 Bladder Cancer AJCC v6 and v7 8 212153 -NCIT:C148286 Refractory Stage 0 Bladder Cancer AJCC v6 and v7 9 212154 -NCIT:C6188 Stage 0 Bladder Urothelial Carcinoma AJCC v6 and v7 9 212155 -NCIT:C3644 Stage 0is Bladder Urothelial Carcinoma AJCC v6 and v7 10 212156 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 10 212157 -NCIT:C8894 Stage 0 Bladder Adenocarcinoma AJCC v6 and v7 9 212158 -NCIT:C8903 Stage 0 Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 212159 -NCIT:C7896 Stage I Bladder Cancer AJCC v6 and v7 8 212160 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 212161 -NCIT:C8895 Stage I Bladder Adenocarcinoma AJCC v6 and v7 9 212162 -NCIT:C8899 Stage I Bladder Cancer with Carcinoma In Situ 9 212163 -NCIT:C8901 Stage I Bladder Cancer without Carcinoma In Situ 9 212164 -NCIT:C8904 Stage I Squamous Cell Carcinoma of the Bladder AJCC v6 and v7 9 212165 -NCIT:C7897 Stage II Bladder Cancer AJCC v6 and v7 8 212166 -NCIT:C4994 Stage II Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 212167 -NCIT:C8896 Stage II Bladder Adenocarcinoma AJCC v6 and v7 9 212168 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 212169 -NCIT:C7898 Stage III Bladder Cancer AJCC v6 and v7 8 212170 -NCIT:C8897 Stage III Bladder Adenocarcinoma AJCC v6 and v7 9 212171 -NCIT:C8905 Stage III Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 212172 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 212173 -NCIT:C7900 Stage IV Bladder Cancer AJCC v6 8 212174 -NCIT:C91202 Bladder Cancer by AJCC v7 Stage 7 212175 -NCIT:C7895 Stage 0 Bladder Cancer AJCC v6 and v7 8 212176 -NCIT:C148286 Refractory Stage 0 Bladder Cancer AJCC v6 and v7 9 212177 -NCIT:C6188 Stage 0 Bladder Urothelial Carcinoma AJCC v6 and v7 9 212178 -NCIT:C3644 Stage 0is Bladder Urothelial Carcinoma AJCC v6 and v7 10 212179 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 10 212180 -NCIT:C8894 Stage 0 Bladder Adenocarcinoma AJCC v6 and v7 9 212181 -NCIT:C8903 Stage 0 Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 212182 -NCIT:C7896 Stage I Bladder Cancer AJCC v6 and v7 8 212183 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 212184 -NCIT:C8895 Stage I Bladder Adenocarcinoma AJCC v6 and v7 9 212185 -NCIT:C8899 Stage I Bladder Cancer with Carcinoma In Situ 9 212186 -NCIT:C8901 Stage I Bladder Cancer without Carcinoma In Situ 9 212187 -NCIT:C8904 Stage I Squamous Cell Carcinoma of the Bladder AJCC v6 and v7 9 212188 -NCIT:C7897 Stage II Bladder Cancer AJCC v6 and v7 8 212189 -NCIT:C4994 Stage II Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 212190 -NCIT:C8896 Stage II Bladder Adenocarcinoma AJCC v6 and v7 9 212191 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 212192 -NCIT:C7898 Stage III Bladder Cancer AJCC v6 and v7 8 212193 -NCIT:C8897 Stage III Bladder Adenocarcinoma AJCC v6 and v7 9 212194 -NCIT:C8905 Stage III Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 212195 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 212196 -NCIT:C89366 Stage IV Bladder Cancer AJCC v7 8 212197 -NCIT:C8898 Stage IV Bladder Adenocarcinoma AJCC v7 9 212198 -NCIT:C8906 Stage IV Bladder Squamous Cell Carcinoma AJCC v7 9 212199 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 9 212200 -NCIT:C6164 Bladder Lymphoma 6 212201 -NCIT:C39878 Bladder Mucosa-Associated Lymphoid Tissue Lymphoma 7 212202 -NCIT:C6416 Metastatic Bladder Paraganglioma 6 212203 -NCIT:C7650 Metastatic Malignant Neoplasm in the Bladder 6 212204 -NCIT:C9266 Recurrent Malignant Bladder Neoplasm 6 212205 -NCIT:C7899 Recurrent Bladder Carcinoma 7 212206 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 212207 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 212208 -NCIT:C190774 Recurrent Non-Muscle Invasive Bladder Carcinoma 8 212209 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 212210 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 212211 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 8 212212 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 8 212213 -NCIT:C156711 Malignant Peritoneal and Retroperitoneal Neoplasm 3 212214 -NCIT:C3537 Malignant Retroperitoneal Neoplasm 4 212215 -NCIT:C179463 Recurrent Malignant Retroperitoneal Neoplasm 5 212216 -NCIT:C6417 Recurrent Adrenal Cortical Carcinoma 6 212217 -NCIT:C4832 Retroperitoneal Sarcoma 5 212218 -NCIT:C136811 Retroperitoneal Sarcoma by AJCC v8 Stage 6 212219 -NCIT:C136812 Stage I Retroperitoneal Sarcoma AJCC v8 7 212220 -NCIT:C136813 Stage IA Retroperitoneal Sarcoma AJCC v8 8 212221 -NCIT:C136814 Stage IB Retroperitoneal Sarcoma AJCC v8 8 212222 -NCIT:C136815 Stage II Retroperitoneal Sarcoma AJCC v8 7 212223 -NCIT:C136816 Stage III Retroperitoneal Sarcoma AJCC v8 7 212224 -NCIT:C136817 Stage IIIA Retroperitoneal Sarcoma AJCC v8 8 212225 -NCIT:C136818 Stage IIIB Retroperitoneal Sarcoma AJCC v8 8 212226 -NCIT:C136819 Stage IV Retroperitoneal Sarcoma AJCC v8 7 212227 -NCIT:C156956 Adrenal Gland Sarcoma 6 212228 -NCIT:C188254 Adrenal Gland Leiomyosarcoma 7 212229 -NCIT:C48320 Adrenal Gland Angiosarcoma 7 212230 -NCIT:C173808 Retroperitoneal Undifferentiated Pleomorphic Sarcoma 6 212231 -NCIT:C188071 Retroperitoneal Rhabdomyosarcoma 6 212232 -NCIT:C188073 Retroperitoneal Malignant Peripheral Nerve Sheath Tumor 6 212233 -NCIT:C27904 Retroperitoneal Leiomyosarcoma 6 212234 -NCIT:C7352 Retroperitoneal Carcinoma 5 212235 -NCIT:C9325 Adrenal Cortical Carcinoma 6 212236 -NCIT:C104030 Adrenal Cortical Carcinoma by ENSAT Stage 7 212237 -NCIT:C104031 ENSAT Stage I Adrenal Cortical Carcinoma 8 212238 -NCIT:C104032 ENSAT Stage II Adrenal Cortical Carcinoma 8 212239 -NCIT:C104033 ENSAT Stage III Adrenal Cortical Carcinoma 8 212240 -NCIT:C104034 ENSAT Stage IV Adrenal Cortical Carcinoma 8 212241 -NCIT:C141098 Adrenal Cortical Carcinoma by AJCC v7 Stage 7 212242 -NCIT:C9214 Stage I Adrenal Cortical Carcinoma AJCC v7 8 212243 -NCIT:C9215 Stage II Adrenal Cortical Carcinoma AJCC v7 8 212244 -NCIT:C9216 Stage III Adrenal Cortical Carcinoma AJCC v7 8 212245 -NCIT:C9217 Stage IV Adrenal Cortical Carcinoma AJCC v7 8 212246 -NCIT:C141100 Adrenal Cortical Carcinoma by AJCC v8 Stage 7 212247 -NCIT:C141101 Stage I Adrenal Cortical Carcinoma AJCC v8 8 212248 -NCIT:C141102 Stage II Adrenal Cortical Carcinoma AJCC v8 8 212249 -NCIT:C141103 Stage III Adrenal Cortical Carcinoma AJCC v8 8 212250 -NCIT:C141104 Stage IV Adrenal Cortical Carcinoma AJCC v8 8 212251 -NCIT:C150580 Unresectable Adrenal Cortical Carcinoma 7 212252 -NCIT:C156070 Metastatic Adrenal Cortical Carcinoma 7 212253 -NCIT:C174443 Locally Advanced Adrenal Cortical Carcinoma 8 212254 -NCIT:C191863 Advanced Adrenal Cortical Carcinoma 8 212255 -NCIT:C188036 Refractory Adrenal Cortical Carcinoma 7 212256 -NCIT:C188181 Adrenal Cortical Oncocytic Carcinoma 7 212257 -NCIT:C188182 Adrenal Cortical Myxoid Carcinoma 7 212258 -NCIT:C188183 Adrenal Cortical High Grade Carcinoma 7 212259 -NCIT:C190069 Childhood Adrenal Cortical Carcinoma 7 212260 -NCIT:C6417 Recurrent Adrenal Cortical Carcinoma 7 212261 -NCIT:C68635 Adrenal Cortical Low Grade Carcinoma 7 212262 -NCIT:C68644 Adrenal Cortical Sarcomatoid Carcinoma 7 212263 -NCIT:C7353 Retroperitoneal Lymphoma 5 212264 -NCIT:C156945 Adrenal Gland Lymphoma 6 212265 -NCIT:C9338 Malignant Adrenal Gland Neoplasm 5 212266 -NCIT:C156945 Adrenal Gland Lymphoma 6 212267 -NCIT:C156956 Adrenal Gland Sarcoma 6 212268 -NCIT:C188254 Adrenal Gland Leiomyosarcoma 7 212269 -NCIT:C48320 Adrenal Gland Angiosarcoma 7 212270 -NCIT:C4396 Malignant Adrenal Medulla Neoplasm 6 212271 -NCIT:C4220 Metastatic Adrenal Gland Pheochromocytoma 7 212272 -NCIT:C157129 Locally Advanced Adrenal Gland Pheochromocytoma 8 212273 -NCIT:C160853 Advanced Adrenal Gland Pheochromocytoma 8 212274 -NCIT:C92184 Metastatic Adrenal Gland Composite Pheochromocytoma 8 212275 -NCIT:C4827 Adrenal Gland Neuroblastoma 7 212276 -NCIT:C7646 Adrenal Gland Ganglioneuroblastoma 7 212277 -NCIT:C157243 Adrenal Gland Ganglioneuroblastoma, Intermixed 8 212278 -NCIT:C157244 Adrenal Gland Ganglioneuroblastoma, Nodular 8 212279 -NCIT:C9276 Metastatic Carcinoma in the Adrenal Medulla 7 212280 -NCIT:C8610 Metastatic Malignant Neoplasm in the Adrenal Gland 6 212281 -NCIT:C27381 Metastatic Carcinoma in the Adrenal Cortex 7 212282 -NCIT:C9276 Metastatic Carcinoma in the Adrenal Medulla 7 212283 -NCIT:C9327 Malignant Adrenal Cortical Neoplasm 6 212284 -NCIT:C188185 Adrenal Cortical Melanoma 7 212285 -NCIT:C27381 Metastatic Carcinoma in the Adrenal Cortex 7 212286 -NCIT:C9325 Adrenal Cortical Carcinoma 7 212287 -NCIT:C104030 Adrenal Cortical Carcinoma by ENSAT Stage 8 212288 -NCIT:C104031 ENSAT Stage I Adrenal Cortical Carcinoma 9 212289 -NCIT:C104032 ENSAT Stage II Adrenal Cortical Carcinoma 9 212290 -NCIT:C104033 ENSAT Stage III Adrenal Cortical Carcinoma 9 212291 -NCIT:C104034 ENSAT Stage IV Adrenal Cortical Carcinoma 9 212292 -NCIT:C141098 Adrenal Cortical Carcinoma by AJCC v7 Stage 8 212293 -NCIT:C9214 Stage I Adrenal Cortical Carcinoma AJCC v7 9 212294 -NCIT:C9215 Stage II Adrenal Cortical Carcinoma AJCC v7 9 212295 -NCIT:C9216 Stage III Adrenal Cortical Carcinoma AJCC v7 9 212296 -NCIT:C9217 Stage IV Adrenal Cortical Carcinoma AJCC v7 9 212297 -NCIT:C141100 Adrenal Cortical Carcinoma by AJCC v8 Stage 8 212298 -NCIT:C141101 Stage I Adrenal Cortical Carcinoma AJCC v8 9 212299 -NCIT:C141102 Stage II Adrenal Cortical Carcinoma AJCC v8 9 212300 -NCIT:C141103 Stage III Adrenal Cortical Carcinoma AJCC v8 9 212301 -NCIT:C141104 Stage IV Adrenal Cortical Carcinoma AJCC v8 9 212302 -NCIT:C150580 Unresectable Adrenal Cortical Carcinoma 8 212303 -NCIT:C156070 Metastatic Adrenal Cortical Carcinoma 8 212304 -NCIT:C174443 Locally Advanced Adrenal Cortical Carcinoma 9 212305 -NCIT:C191863 Advanced Adrenal Cortical Carcinoma 9 212306 -NCIT:C188036 Refractory Adrenal Cortical Carcinoma 8 212307 -NCIT:C188181 Adrenal Cortical Oncocytic Carcinoma 8 212308 -NCIT:C188182 Adrenal Cortical Myxoid Carcinoma 8 212309 -NCIT:C188183 Adrenal Cortical High Grade Carcinoma 8 212310 -NCIT:C190069 Childhood Adrenal Cortical Carcinoma 8 212311 -NCIT:C6417 Recurrent Adrenal Cortical Carcinoma 8 212312 -NCIT:C68635 Adrenal Cortical Low Grade Carcinoma 8 212313 -NCIT:C68644 Adrenal Cortical Sarcomatoid Carcinoma 8 212314 -NCIT:C3538 Malignant Peritoneal Neoplasm 4 212315 -NCIT:C126356 Peritoneal Desmoplastic Small Round Cell Tumor 5 212316 -NCIT:C136410 Malignant Peritoneal Germ Cell Tumor 5 212317 -NCIT:C159507 Primary Peritoneal Carcinosarcoma 5 212318 -NCIT:C179562 Peritoneal Low Grade Endometrioid Stromal Sarcoma 5 212319 -NCIT:C183137 Peritoneal Primary Effusion Lymphoma 5 212320 -NCIT:C40022 Primary Peritoneal Carcinoma 5 212321 -NCIT:C115441 Recurrent Primary Peritoneal Carcinoma 6 212322 -NCIT:C170751 Recurrent Platinum-Resistant Primary Peritoneal Carcinoma 7 212323 -NCIT:C170756 Recurrent Primary Peritoneal Undifferentiated Carcinoma 7 212324 -NCIT:C170759 Recurrent Primary Peritoneal Transitional Cell Carcinoma 7 212325 -NCIT:C170767 Recurrent Primary Peritoneal Adenocarcinoma 7 212326 -NCIT:C156453 Recurrent Primary Peritoneal Serous Adenocarcinoma 8 212327 -NCIT:C156454 Recurrent Primary Peritoneal Low Grade Serous Adenocarcinoma 9 212328 -NCIT:C165268 Recurrent Primary Peritoneal High Grade Serous Adenocarcinoma 9 212329 -NCIT:C165269 Recurrent Primary Peritoneal Endometrioid Adenocarcinoma 8 212330 -NCIT:C170761 Recurrent Primary Peritoneal Clear Cell Adenocarcinoma 8 212331 -NCIT:C191407 Recurrent Platinum-Sensitive Primary Peritoneal Carcinoma 7 212332 -NCIT:C140003 Primary Peritoneal Cancer by AJCC v7 Stage 6 212333 -NCIT:C115094 Stage III Primary Peritoneal Cancer AJCC v7 7 212334 -NCIT:C115095 Stage IIIA Primary Peritoneal Cancer AJCC v7 8 212335 -NCIT:C115096 Stage IIIB Primary Peritoneal Cancer AJCC v7 8 212336 -NCIT:C115097 Stage IIIC Primary Peritoneal Cancer AJCC v7 8 212337 -NCIT:C115098 Stage IV Primary Peritoneal Cancer AJCC v7 7 212338 -NCIT:C140004 Primary Peritoneal Cancer by AJCC v8 Stage 6 212339 -NCIT:C140005 Stage II Primary Peritoneal Cancer AJCC v8 7 212340 -NCIT:C140006 Stage IIA Primary Peritoneal Cancer AJCC v8 8 212341 -NCIT:C140007 Stage IIB Primary Peritoneal Cancer AJCC v8 8 212342 -NCIT:C140008 Stage III Primary Peritoneal Cancer AJCC v8 7 212343 -NCIT:C140009 Stage IIIA Primary Peritoneal Cancer AJCC v8 8 212344 -NCIT:C140010 Stage IIIB Primary Peritoneal Cancer AJCC v8 8 212345 -NCIT:C140011 Stage IIIC Primary Peritoneal Cancer AJCC v8 8 212346 -NCIT:C140012 Stage IV Primary Peritoneal Cancer AJCC v8 7 212347 -NCIT:C140013 Stage IVA Primary Peritoneal Cancer AJCC v8 8 212348 -NCIT:C140014 Stage IVB Primary Peritoneal Cancer AJCC v8 8 212349 -NCIT:C152046 Refractory Primary Peritoneal Carcinoma 6 212350 -NCIT:C157622 Platinum-Resistant Primary Peritoneal Carcinoma 7 212351 -NCIT:C170751 Recurrent Platinum-Resistant Primary Peritoneal Carcinoma 8 212352 -NCIT:C170975 Refractory Primary Peritoneal Adenocarcinoma 7 212353 -NCIT:C171021 Refractory Primary Peritoneal Serous Adenocarcinoma 8 212354 -NCIT:C178686 Refractory Primary Peritoneal High Grade Serous Adenocarcinoma 9 212355 -NCIT:C178687 Refractory Primary Peritoneal Low Grade Serous Adenocarcinoma 9 212356 -NCIT:C178684 Refractory Primary Peritoneal Clear Cell Adenocarcinoma 8 212357 -NCIT:C178685 Refractory Primary Peritoneal Endometrioid Adenocarcinoma 8 212358 -NCIT:C178688 Refractory Primary Peritoneal Transitional Cell Carcinoma 7 212359 -NCIT:C178689 Refractory Primary Peritoneal Undifferentiated Carcinoma 7 212360 -NCIT:C178702 Platinum-Refractory Primary Peritoneal Carcinoma 7 212361 -NCIT:C160872 Platinum-Sensitive Primary Peritoneal Carcinoma 6 212362 -NCIT:C191407 Recurrent Platinum-Sensitive Primary Peritoneal Carcinoma 7 212363 -NCIT:C162562 Primary Peritoneal Undifferentiated Carcinoma 6 212364 -NCIT:C170756 Recurrent Primary Peritoneal Undifferentiated Carcinoma 7 212365 -NCIT:C178689 Refractory Primary Peritoneal Undifferentiated Carcinoma 7 212366 -NCIT:C162564 Primary Peritoneal Transitional Cell Carcinoma 6 212367 -NCIT:C170759 Recurrent Primary Peritoneal Transitional Cell Carcinoma 7 212368 -NCIT:C178688 Refractory Primary Peritoneal Transitional Cell Carcinoma 7 212369 -NCIT:C167203 Metastatic Primary Peritoneal Carcinoma 6 212370 -NCIT:C167204 Locally Advanced Primary Peritoneal Carcinoma 7 212371 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 8 212372 -NCIT:C167396 Advanced Primary Peritoneal Carcinoma 7 212373 -NCIT:C170972 Metastatic Primary Peritoneal Adenocarcinoma 7 212374 -NCIT:C171019 Metastatic Primary Peritoneal Serous Adenocarcinoma 8 212375 -NCIT:C186453 Metastatic Primary Peritoneal High Grade Serous Adenocarcinoma 9 212376 -NCIT:C170733 Primary Peritoneal Adenocarcinoma 6 212377 -NCIT:C162566 Primary Peritoneal Clear Cell Adenocarcinoma 7 212378 -NCIT:C170761 Recurrent Primary Peritoneal Clear Cell Adenocarcinoma 8 212379 -NCIT:C178684 Refractory Primary Peritoneal Clear Cell Adenocarcinoma 8 212380 -NCIT:C165260 Primary Peritoneal Endometrioid Adenocarcinoma 7 212381 -NCIT:C165269 Recurrent Primary Peritoneal Endometrioid Adenocarcinoma 8 212382 -NCIT:C178685 Refractory Primary Peritoneal Endometrioid Adenocarcinoma 8 212383 -NCIT:C186276 Unresectable Primary Peritoneal Endometrioid Adenocarcinoma 8 212384 -NCIT:C170767 Recurrent Primary Peritoneal Adenocarcinoma 7 212385 -NCIT:C156453 Recurrent Primary Peritoneal Serous Adenocarcinoma 8 212386 -NCIT:C156454 Recurrent Primary Peritoneal Low Grade Serous Adenocarcinoma 9 212387 -NCIT:C165268 Recurrent Primary Peritoneal High Grade Serous Adenocarcinoma 9 212388 -NCIT:C165269 Recurrent Primary Peritoneal Endometrioid Adenocarcinoma 8 212389 -NCIT:C170761 Recurrent Primary Peritoneal Clear Cell Adenocarcinoma 8 212390 -NCIT:C170972 Metastatic Primary Peritoneal Adenocarcinoma 7 212391 -NCIT:C171019 Metastatic Primary Peritoneal Serous Adenocarcinoma 8 212392 -NCIT:C186453 Metastatic Primary Peritoneal High Grade Serous Adenocarcinoma 9 212393 -NCIT:C170974 Unresectable Primary Peritoneal Adenocarcinoma 7 212394 -NCIT:C171020 Unresectable Primary Peritoneal Serous Adenocarcinoma 8 212395 -NCIT:C186275 Unresectable Primary Peritoneal High Grade Serous Adenocarcinoma 9 212396 -NCIT:C186276 Unresectable Primary Peritoneal Endometrioid Adenocarcinoma 8 212397 -NCIT:C170975 Refractory Primary Peritoneal Adenocarcinoma 7 212398 -NCIT:C171021 Refractory Primary Peritoneal Serous Adenocarcinoma 8 212399 -NCIT:C178686 Refractory Primary Peritoneal High Grade Serous Adenocarcinoma 9 212400 -NCIT:C178687 Refractory Primary Peritoneal Low Grade Serous Adenocarcinoma 9 212401 -NCIT:C178684 Refractory Primary Peritoneal Clear Cell Adenocarcinoma 8 212402 -NCIT:C178685 Refractory Primary Peritoneal Endometrioid Adenocarcinoma 8 212403 -NCIT:C40023 Primary Peritoneal Serous Adenocarcinoma 7 212404 -NCIT:C126353 Primary Peritoneal High Grade Serous Adenocarcinoma 8 212405 -NCIT:C165268 Recurrent Primary Peritoneal High Grade Serous Adenocarcinoma 9 212406 -NCIT:C178686 Refractory Primary Peritoneal High Grade Serous Adenocarcinoma 9 212407 -NCIT:C186275 Unresectable Primary Peritoneal High Grade Serous Adenocarcinoma 9 212408 -NCIT:C186453 Metastatic Primary Peritoneal High Grade Serous Adenocarcinoma 9 212409 -NCIT:C126354 Primary Peritoneal Low Grade Serous Adenocarcinoma 8 212410 -NCIT:C156454 Recurrent Primary Peritoneal Low Grade Serous Adenocarcinoma 9 212411 -NCIT:C178687 Refractory Primary Peritoneal Low Grade Serous Adenocarcinoma 9 212412 -NCIT:C156453 Recurrent Primary Peritoneal Serous Adenocarcinoma 8 212413 -NCIT:C156454 Recurrent Primary Peritoneal Low Grade Serous Adenocarcinoma 9 212414 -NCIT:C165268 Recurrent Primary Peritoneal High Grade Serous Adenocarcinoma 9 212415 -NCIT:C171019 Metastatic Primary Peritoneal Serous Adenocarcinoma 8 212416 -NCIT:C186453 Metastatic Primary Peritoneal High Grade Serous Adenocarcinoma 9 212417 -NCIT:C171020 Unresectable Primary Peritoneal Serous Adenocarcinoma 8 212418 -NCIT:C186275 Unresectable Primary Peritoneal High Grade Serous Adenocarcinoma 9 212419 -NCIT:C171021 Refractory Primary Peritoneal Serous Adenocarcinoma 8 212420 -NCIT:C178686 Refractory Primary Peritoneal High Grade Serous Adenocarcinoma 9 212421 -NCIT:C178687 Refractory Primary Peritoneal Low Grade Serous Adenocarcinoma 9 212422 -NCIT:C7695 Primary Peritoneal Serous Papillary Adenocarcinoma 8 212423 -NCIT:C170973 Unresectable Primary Peritoneal Carcinoma 6 212424 -NCIT:C170974 Unresectable Primary Peritoneal Adenocarcinoma 7 212425 -NCIT:C171020 Unresectable Primary Peritoneal Serous Adenocarcinoma 8 212426 -NCIT:C186275 Unresectable Primary Peritoneal High Grade Serous Adenocarcinoma 9 212427 -NCIT:C186276 Unresectable Primary Peritoneal Endometrioid Adenocarcinoma 8 212428 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 7 212429 -NCIT:C4583 Metastatic Malignant Neoplasm in the Peritoneum 5 212430 -NCIT:C179654 Metastatic Carcinoma in the Peritoneum 6 212431 -NCIT:C27382 Peritoneal Carcinomatosis 7 212432 -NCIT:C3345 Pseudomyxoma Peritonei 8 212433 -NCIT:C179179 Recurrent Pseudomyxoma Peritonei 9 212434 -NCIT:C179180 Refractory Pseudomyxoma Peritonei 9 212435 -NCIT:C179657 Metastatic Sarcoma in the Peritoneum 6 212436 -NCIT:C179656 Peritoneal Sarcomatosis 7 212437 -NCIT:C9350 Peritoneal Malignant Mesothelioma 5 212438 -NCIT:C162940 Peritoneal Epithelioid Mesothelioma 6 212439 -NCIT:C173613 Unresectable Peritoneal Epithelioid Mesothelioma 7 212440 -NCIT:C168804 Peritoneal Sarcomatoid Mesothelioma 6 212441 -NCIT:C173614 Unresectable Peritoneal Sarcomatoid Mesothelioma 7 212442 -NCIT:C168805 Peritoneal Biphasic Mesothelioma 6 212443 -NCIT:C173615 Unresectable Peritoneal Biphasic Mesothelioma 7 212444 -NCIT:C173612 Unresectable Peritoneal Malignant Mesothelioma 6 212445 -NCIT:C173613 Unresectable Peritoneal Epithelioid Mesothelioma 7 212446 -NCIT:C173614 Unresectable Peritoneal Sarcomatoid Mesothelioma 7 212447 -NCIT:C173615 Unresectable Peritoneal Biphasic Mesothelioma 7 212448 -NCIT:C179462 Metastatic Peritoneal Malignant Mesothelioma 6 212449 -NCIT:C8704 Advanced Peritoneal Malignant Mesothelioma 7 212450 -NCIT:C8705 Recurrent Peritoneal Malignant Mesothelioma 6 212451 -NCIT:C156714 Malignant Abdominal Neoplasm 3 212452 -NCIT:C179465 Recurrent Malignant Abdominal Neoplasm 4 212453 -NCIT:C179179 Recurrent Pseudomyxoma Peritonei 5 212454 -NCIT:C183304 Metastatic Malignant Abdominal Neoplasm 4 212455 -NCIT:C183305 Advanced Malignant Abdominal Neoplasm 5 212456 -NCIT:C8615 Metastatic Malignant Neoplasm in the Abdominal Cavity 4 212457 -NCIT:C4583 Metastatic Malignant Neoplasm in the Peritoneum 5 212458 -NCIT:C179654 Metastatic Carcinoma in the Peritoneum 6 212459 -NCIT:C27382 Peritoneal Carcinomatosis 7 212460 -NCIT:C3345 Pseudomyxoma Peritonei 8 212461 -NCIT:C179179 Recurrent Pseudomyxoma Peritonei 9 212462 -NCIT:C179180 Refractory Pseudomyxoma Peritonei 9 212463 -NCIT:C179657 Metastatic Sarcoma in the Peritoneum 6 212464 -NCIT:C179656 Peritoneal Sarcomatosis 7 212465 -NCIT:C156715 Malignant Pelvic Neoplasm 3 212466 -NCIT:C161583 Metastatic Malignant Neoplasm in the Pelvic Cavity 4 212467 -NCIT:C161584 Prostate Carcinoma Metastatic in the Pelvic Cavity 5 212468 -NCIT:C183184 Primary Malignant Pelvic Neoplasm 4 212469 -NCIT:C157652 Pelvic Sarcoma 5 212470 -NCIT:C151981 Pelvic Rhabdomyosarcoma 6 212471 -NCIT:C151984 Pelvic Undifferentiated High Grade Pleomorphic Sarcoma 6 212472 -NCIT:C166357 Malignant Musculoskeletal Neoplasm 3 212473 -NCIT:C4016 Malignant Bone Neoplasm 4 212474 -NCIT:C121933 Malignant Osteoclastic Giant Cell-Rich Tumor of Bone 5 212475 -NCIT:C4304 Malignancy in Giant Cell Tumor of Bone 6 212476 -NCIT:C121941 Bone Epithelioid Hemangioendothelioma 5 212477 -NCIT:C136610 Bone Cancer by AJCC v7 Stage 5 212478 -NCIT:C136632 Bone Sarcoma by AJCC v7 Stage 6 212479 -NCIT:C136633 Osteosarcoma by AJCC v7 Stage 7 212480 -NCIT:C6612 Stage III Osteosarcoma AJCC v7 8 212481 -NCIT:C6701 Stage IV Osteosarcoma AJCC v7 8 212482 -NCIT:C6702 Stage IVA Osteosarcoma AJCC v7 9 212483 -NCIT:C6703 Stage IVB Osteosarcoma AJCC v7 9 212484 -NCIT:C6709 Stage I Osteosarcoma AJCC v7 8 212485 -NCIT:C6607 Stage IA Osteosarcoma AJCC v7 9 212486 -NCIT:C6609 Stage IB Osteosarcoma AJCC v7 9 212487 -NCIT:C6710 Stage II Osteosarcoma AJCC v7 8 212488 -NCIT:C6610 Stage IIA Osteosarcoma AJCC v7 9 212489 -NCIT:C6611 Stage IIB Osteosarcoma AJCC v7 9 212490 -NCIT:C6468 Stage III Bone Sarcoma AJCC v7 7 212491 -NCIT:C6612 Stage III Osteosarcoma AJCC v7 8 212492 -NCIT:C6704 Stage I Bone Sarcoma AJCC v7 7 212493 -NCIT:C6464 Stage IA Bone Sarcoma AJCC v7 8 212494 -NCIT:C6607 Stage IA Osteosarcoma AJCC v7 9 212495 -NCIT:C6465 Stage IB Bone Sarcoma AJCC v7 8 212496 -NCIT:C6609 Stage IB Osteosarcoma AJCC v7 9 212497 -NCIT:C6709 Stage I Osteosarcoma AJCC v7 8 212498 -NCIT:C6607 Stage IA Osteosarcoma AJCC v7 9 212499 -NCIT:C6609 Stage IB Osteosarcoma AJCC v7 9 212500 -NCIT:C6705 Stage II Bone Sarcoma AJCC v7 7 212501 -NCIT:C6466 Stage IIB Bone Sarcoma AJCC v7 8 212502 -NCIT:C6611 Stage IIB Osteosarcoma AJCC v7 9 212503 -NCIT:C6467 Stage IIA Bone Sarcoma AJCC v7 8 212504 -NCIT:C6610 Stage IIA Osteosarcoma AJCC v7 9 212505 -NCIT:C6710 Stage II Osteosarcoma AJCC v7 8 212506 -NCIT:C6610 Stage IIA Osteosarcoma AJCC v7 9 212507 -NCIT:C6611 Stage IIB Osteosarcoma AJCC v7 9 212508 -NCIT:C6706 Stage IV Bone Sarcoma AJCC v7 7 212509 -NCIT:C6701 Stage IV Osteosarcoma AJCC v7 8 212510 -NCIT:C6702 Stage IVA Osteosarcoma AJCC v7 9 212511 -NCIT:C6703 Stage IVB Osteosarcoma AJCC v7 9 212512 -NCIT:C6707 Stage IVA Bone Sarcoma AJCC v7 8 212513 -NCIT:C6702 Stage IVA Osteosarcoma AJCC v7 9 212514 -NCIT:C6708 Stage IVB Bone Sarcoma AJCC v7 8 212515 -NCIT:C6703 Stage IVB Osteosarcoma AJCC v7 9 212516 -NCIT:C87178 Stage I Bone Cancer AJCC v7 6 212517 -NCIT:C6704 Stage I Bone Sarcoma AJCC v7 7 212518 -NCIT:C6464 Stage IA Bone Sarcoma AJCC v7 8 212519 -NCIT:C6607 Stage IA Osteosarcoma AJCC v7 9 212520 -NCIT:C6465 Stage IB Bone Sarcoma AJCC v7 8 212521 -NCIT:C6609 Stage IB Osteosarcoma AJCC v7 9 212522 -NCIT:C6709 Stage I Osteosarcoma AJCC v7 8 212523 -NCIT:C6607 Stage IA Osteosarcoma AJCC v7 9 212524 -NCIT:C6609 Stage IB Osteosarcoma AJCC v7 9 212525 -NCIT:C87179 Stage IA Bone Cancer AJCC v7 7 212526 -NCIT:C6464 Stage IA Bone Sarcoma AJCC v7 8 212527 -NCIT:C6607 Stage IA Osteosarcoma AJCC v7 9 212528 -NCIT:C87180 Stage IB Bone Cancer AJCC v7 7 212529 -NCIT:C6465 Stage IB Bone Sarcoma AJCC v7 8 212530 -NCIT:C6609 Stage IB Osteosarcoma AJCC v7 9 212531 -NCIT:C87181 Stage II Bone Cancer AJCC v7 6 212532 -NCIT:C6705 Stage II Bone Sarcoma AJCC v7 7 212533 -NCIT:C6466 Stage IIB Bone Sarcoma AJCC v7 8 212534 -NCIT:C6611 Stage IIB Osteosarcoma AJCC v7 9 212535 -NCIT:C6467 Stage IIA Bone Sarcoma AJCC v7 8 212536 -NCIT:C6610 Stage IIA Osteosarcoma AJCC v7 9 212537 -NCIT:C6710 Stage II Osteosarcoma AJCC v7 8 212538 -NCIT:C6610 Stage IIA Osteosarcoma AJCC v7 9 212539 -NCIT:C6611 Stage IIB Osteosarcoma AJCC v7 9 212540 -NCIT:C87182 Stage IIA Bone Cancer AJCC v7 7 212541 -NCIT:C6467 Stage IIA Bone Sarcoma AJCC v7 8 212542 -NCIT:C6610 Stage IIA Osteosarcoma AJCC v7 9 212543 -NCIT:C87183 Stage IIB Bone Cancer AJCC v7 7 212544 -NCIT:C6466 Stage IIB Bone Sarcoma AJCC v7 8 212545 -NCIT:C6611 Stage IIB Osteosarcoma AJCC v7 9 212546 -NCIT:C87184 Stage III Bone Cancer AJCC v7 6 212547 -NCIT:C6468 Stage III Bone Sarcoma AJCC v7 7 212548 -NCIT:C6612 Stage III Osteosarcoma AJCC v7 8 212549 -NCIT:C87185 Stage IV Bone Cancer AJCC v7 6 212550 -NCIT:C6706 Stage IV Bone Sarcoma AJCC v7 7 212551 -NCIT:C6701 Stage IV Osteosarcoma AJCC v7 8 212552 -NCIT:C6702 Stage IVA Osteosarcoma AJCC v7 9 212553 -NCIT:C6703 Stage IVB Osteosarcoma AJCC v7 9 212554 -NCIT:C6707 Stage IVA Bone Sarcoma AJCC v7 8 212555 -NCIT:C6702 Stage IVA Osteosarcoma AJCC v7 9 212556 -NCIT:C6708 Stage IVB Bone Sarcoma AJCC v7 8 212557 -NCIT:C6703 Stage IVB Osteosarcoma AJCC v7 9 212558 -NCIT:C87186 Stage IVA Bone Cancer AJCC v7 7 212559 -NCIT:C6707 Stage IVA Bone Sarcoma AJCC v7 8 212560 -NCIT:C6702 Stage IVA Osteosarcoma AJCC v7 9 212561 -NCIT:C87187 Stage IVB Bone Cancer AJCC v7 7 212562 -NCIT:C6708 Stage IVB Bone Sarcoma AJCC v7 8 212563 -NCIT:C6703 Stage IVB Osteosarcoma AJCC v7 9 212564 -NCIT:C136612 Bone Cancer by AJCC v8 Stage 5 212565 -NCIT:C136613 Stage I Bone Cancer AJCC v8 6 212566 -NCIT:C136614 Stage IA Bone Cancer AJCC v8 7 212567 -NCIT:C136615 Stage IB Bone Cancer AJCC v8 7 212568 -NCIT:C136616 Stage II Bone Cancer AJCC v8 6 212569 -NCIT:C136617 Stage IIA Bone Cancer AJCC v8 7 212570 -NCIT:C136618 Stage IIB Bone Cancer AJCC v8 7 212571 -NCIT:C136619 Stage III Bone Cancer AJCC v8 6 212572 -NCIT:C136620 Stage IV Bone Cancer AJCC v8 6 212573 -NCIT:C136621 Stage IVA Bone Cancer AJCC v8 7 212574 -NCIT:C136622 Stage IVB Bone Cancer AJCC v8 7 212575 -NCIT:C150524 Recurrent Malignant Bone Neoplasm 5 212576 -NCIT:C115351 Recurrent Adult Undifferentiated High Grade Pleomorphic Sarcoma of Bone 6 212577 -NCIT:C115368 Recurrent Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 6 212578 -NCIT:C155973 Recurrent Chordoma 6 212579 -NCIT:C162728 Recurrent Dedifferentiated Chordoma 7 212580 -NCIT:C185073 Locally Recurrent Chordoma 7 212581 -NCIT:C157681 Recurrent Primary Bone Lymphoma 6 212582 -NCIT:C27354 Recurrent Peripheral Primitive Neuroectodermal Tumor of Bone 6 212583 -NCIT:C6622 Recurrent Bone Ewing Sarcoma 6 212584 -NCIT:C150525 Refractory Malignant Bone Neoplasm 5 212585 -NCIT:C157682 Refractory Primary Bone Lymphoma 6 212586 -NCIT:C162721 Refractory Chordoma 6 212587 -NCIT:C162729 Refractory Dedifferentiated Chordoma 7 212588 -NCIT:C187448 Resectable Malignant Bone Neoplasm 5 212589 -NCIT:C190578 Childhood Malignant Bone Neoplasm 5 212590 -NCIT:C189017 Childhood Bone Sarcoma 6 212591 -NCIT:C114750 Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 7 212592 -NCIT:C115368 Recurrent Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 8 212593 -NCIT:C115998 Localized Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 8 212594 -NCIT:C189022 Childhood Bone Osteosarcoma 7 212595 -NCIT:C123398 Childhood Periosteal Osteosarcoma 8 212596 -NCIT:C6589 Childhood Parosteal Osteosarcoma 8 212597 -NCIT:C6590 Childhood Conventional Osteosarcoma 8 212598 -NCIT:C189026 Childhood Primary Central Chondrosarcoma 7 212599 -NCIT:C189032 Childhood Chordoma 6 212600 -NCIT:C2947 Chordoma 5 212601 -NCIT:C153323 Metastatic Chordoma 6 212602 -NCIT:C153324 Locally Advanced Chordoma 7 212603 -NCIT:C173333 Advanced Chordoma 7 212604 -NCIT:C153325 Unresectable Chordoma 6 212605 -NCIT:C155973 Recurrent Chordoma 6 212606 -NCIT:C162728 Recurrent Dedifferentiated Chordoma 7 212607 -NCIT:C185073 Locally Recurrent Chordoma 7 212608 -NCIT:C162721 Refractory Chordoma 6 212609 -NCIT:C162729 Refractory Dedifferentiated Chordoma 7 212610 -NCIT:C177898 Poorly Differentiated Chordoma 6 212611 -NCIT:C178563 Conventional Chordoma 6 212612 -NCIT:C6902 Chondroid Chordoma 7 212613 -NCIT:C155782 Sellar Chondroid Chordoma 8 212614 -NCIT:C5426 Clivus Chondroid Chordoma 8 212615 -NCIT:C189032 Childhood Chordoma 6 212616 -NCIT:C48876 Dedifferentiated Chordoma 6 212617 -NCIT:C155783 Sellar Dedifferentiated Chordoma 7 212618 -NCIT:C162728 Recurrent Dedifferentiated Chordoma 7 212619 -NCIT:C162729 Refractory Dedifferentiated Chordoma 7 212620 -NCIT:C5156 Spinal Chordoma 6 212621 -NCIT:C129927 Sacral Chordoma 7 212622 -NCIT:C177775 Thoracic Chordoma 7 212623 -NCIT:C5453 Skull Base Chordoma 6 212624 -NCIT:C155781 Sellar Chordoma 7 212625 -NCIT:C155782 Sellar Chondroid Chordoma 8 212626 -NCIT:C155783 Sellar Dedifferentiated Chordoma 8 212627 -NCIT:C5412 Clivus Chordoma 7 212628 -NCIT:C5426 Clivus Chondroid Chordoma 8 212629 -NCIT:C35178 Malignant Neoplasm of Lower Jaw Bone 5 212630 -NCIT:C3580 Metastatic Malignant Neoplasm in the Bone 5 212631 -NCIT:C185156 Plasma Cell Myeloma-Induced Bone Disease 6 212632 -NCIT:C36082 Metastatic Carcinoma in the Bone 6 212633 -NCIT:C36303 Breast Carcinoma Metastatic in the Bone 7 212634 -NCIT:C153226 Breast Carcinoma Metastatic in the Spine 8 212635 -NCIT:C36305 Lung Carcinoma Metastatic in the Bone 7 212636 -NCIT:C36308 Prostate Carcinoma Metastatic in the Bone 7 212637 -NCIT:C4881 Metastatic Malignant Neoplasm in the Spine 6 212638 -NCIT:C153226 Breast Carcinoma Metastatic in the Spine 7 212639 -NCIT:C35871 Ewing Sarcoma/Peripheral Primitive Neuroectodermal Tumor of Bone 5 212640 -NCIT:C4835 Ewing Sarcoma of Bone 6 212641 -NCIT:C6621 Metastatic Bone Ewing Sarcoma 7 212642 -NCIT:C6622 Recurrent Bone Ewing Sarcoma 7 212643 -NCIT:C6623 Localized Bone Ewing Sarcoma 7 212644 -NCIT:C8776 Peripheral Primitive Neuroectodermal Tumor of Bone 6 212645 -NCIT:C27353 Localized Peripheral Primitive Neuroectodermal Tumor of Bone 7 212646 -NCIT:C27354 Recurrent Peripheral Primitive Neuroectodermal Tumor of Bone 7 212647 -NCIT:C36074 Metastatic Peripheral Primitive Neuroectodermal Tumor of Bone 7 212648 -NCIT:C6620 Primary Bone Lymphoma 5 212649 -NCIT:C121930 Primary Bone Non-Hodgkin Lymphoma 6 212650 -NCIT:C173811 Primary Bone Diffuse Large B-Cell Lymphoma 7 212651 -NCIT:C157681 Recurrent Primary Bone Lymphoma 6 212652 -NCIT:C157682 Refractory Primary Bone Lymphoma 6 212653 -NCIT:C181207 Primary Bone Hodgkin Lymphoma 6 212654 -NCIT:C6724 Malignant Chest Wall Bone Neoplasm 5 212655 -NCIT:C7644 Adamantinoma 5 212656 -NCIT:C8461 Tibial Adamantinoma 6 212657 -NCIT:C7812 Solitary Plasmacytoma of Bone 5 212658 -NCIT:C185035 Multiple Solitary Plasmacytoma of Bone 6 212659 -NCIT:C9312 Bone Sarcoma 5 212660 -NCIT:C136632 Bone Sarcoma by AJCC v7 Stage 6 212661 -NCIT:C136633 Osteosarcoma by AJCC v7 Stage 7 212662 -NCIT:C6612 Stage III Osteosarcoma AJCC v7 8 212663 -NCIT:C6701 Stage IV Osteosarcoma AJCC v7 8 212664 -NCIT:C6702 Stage IVA Osteosarcoma AJCC v7 9 212665 -NCIT:C6703 Stage IVB Osteosarcoma AJCC v7 9 212666 -NCIT:C6709 Stage I Osteosarcoma AJCC v7 8 212667 -NCIT:C6607 Stage IA Osteosarcoma AJCC v7 9 212668 -NCIT:C6609 Stage IB Osteosarcoma AJCC v7 9 212669 -NCIT:C6710 Stage II Osteosarcoma AJCC v7 8 212670 -NCIT:C6610 Stage IIA Osteosarcoma AJCC v7 9 212671 -NCIT:C6611 Stage IIB Osteosarcoma AJCC v7 9 212672 -NCIT:C6468 Stage III Bone Sarcoma AJCC v7 7 212673 -NCIT:C6612 Stage III Osteosarcoma AJCC v7 8 212674 -NCIT:C6704 Stage I Bone Sarcoma AJCC v7 7 212675 -NCIT:C6464 Stage IA Bone Sarcoma AJCC v7 8 212676 -NCIT:C6607 Stage IA Osteosarcoma AJCC v7 9 212677 -NCIT:C6465 Stage IB Bone Sarcoma AJCC v7 8 212678 -NCIT:C6609 Stage IB Osteosarcoma AJCC v7 9 212679 -NCIT:C6709 Stage I Osteosarcoma AJCC v7 8 212680 -NCIT:C6607 Stage IA Osteosarcoma AJCC v7 9 212681 -NCIT:C6609 Stage IB Osteosarcoma AJCC v7 9 212682 -NCIT:C6705 Stage II Bone Sarcoma AJCC v7 7 212683 -NCIT:C6466 Stage IIB Bone Sarcoma AJCC v7 8 212684 -NCIT:C6611 Stage IIB Osteosarcoma AJCC v7 9 212685 -NCIT:C6467 Stage IIA Bone Sarcoma AJCC v7 8 212686 -NCIT:C6610 Stage IIA Osteosarcoma AJCC v7 9 212687 -NCIT:C6710 Stage II Osteosarcoma AJCC v7 8 212688 -NCIT:C6610 Stage IIA Osteosarcoma AJCC v7 9 212689 -NCIT:C6611 Stage IIB Osteosarcoma AJCC v7 9 212690 -NCIT:C6706 Stage IV Bone Sarcoma AJCC v7 7 212691 -NCIT:C6701 Stage IV Osteosarcoma AJCC v7 8 212692 -NCIT:C6702 Stage IVA Osteosarcoma AJCC v7 9 212693 -NCIT:C6703 Stage IVB Osteosarcoma AJCC v7 9 212694 -NCIT:C6707 Stage IVA Bone Sarcoma AJCC v7 8 212695 -NCIT:C6702 Stage IVA Osteosarcoma AJCC v7 9 212696 -NCIT:C6708 Stage IVB Bone Sarcoma AJCC v7 8 212697 -NCIT:C6703 Stage IVB Osteosarcoma AJCC v7 9 212698 -NCIT:C153072 Unresectable Bone Sarcoma 6 212699 -NCIT:C153475 Locally Advanced Unresectable Bone Sarcoma 7 212700 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 8 212701 -NCIT:C171070 Unresectable Primary Central Chondrosarcoma 7 212702 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 8 212703 -NCIT:C153073 Metastatic Bone Sarcoma 6 212704 -NCIT:C153070 Locally Advanced Bone Sarcoma 7 212705 -NCIT:C153475 Locally Advanced Unresectable Bone Sarcoma 8 212706 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 9 212707 -NCIT:C162762 Advanced Bone Sarcoma 7 212708 -NCIT:C171072 Metastatic Primary Central Chondrosarcoma 7 212709 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 8 212710 -NCIT:C38157 Metachronous Osteosarcoma 7 212711 -NCIT:C6621 Metastatic Bone Ewing Sarcoma 7 212712 -NCIT:C173841 Maxillofacial Sarcoma 6 212713 -NCIT:C173842 Maxillofacial Chondrosarcoma 7 212714 -NCIT:C173843 Maxillofacial Mesenchymal Chondrosarcoma 8 212715 -NCIT:C173844 Maxillofacial Osteosarcoma 7 212716 -NCIT:C188064 Bone Malignant Peripheral Nerve Sheath Tumor 6 212717 -NCIT:C189017 Childhood Bone Sarcoma 6 212718 -NCIT:C114750 Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 7 212719 -NCIT:C115368 Recurrent Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 8 212720 -NCIT:C115998 Localized Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 8 212721 -NCIT:C189022 Childhood Bone Osteosarcoma 7 212722 -NCIT:C123398 Childhood Periosteal Osteosarcoma 8 212723 -NCIT:C6589 Childhood Parosteal Osteosarcoma 8 212724 -NCIT:C6590 Childhood Conventional Osteosarcoma 8 212725 -NCIT:C189026 Childhood Primary Central Chondrosarcoma 7 212726 -NCIT:C27482 Secondary Chondrosarcoma 6 212727 -NCIT:C121881 Secondary Central Chondrosarcoma 7 212728 -NCIT:C178477 Secondary Central Atypical Cartilaginous Tumor/Chondrosarcoma, Grade 1 8 212729 -NCIT:C121882 Secondary Peripheral Chondrosarcoma 7 212730 -NCIT:C178481 Secondary Peripheral Chondrosarcoma, Grade 1 8 212731 -NCIT:C178492 Secondary Peripheral Chondrosarcoma, Grade 2 8 212732 -NCIT:C178494 Secondary Peripheral Chondrosarcoma, Grade 3 8 212733 -NCIT:C4304 Malignancy in Giant Cell Tumor of Bone 6 212734 -NCIT:C4835 Ewing Sarcoma of Bone 6 212735 -NCIT:C6621 Metastatic Bone Ewing Sarcoma 7 212736 -NCIT:C6622 Recurrent Bone Ewing Sarcoma 7 212737 -NCIT:C6623 Localized Bone Ewing Sarcoma 7 212738 -NCIT:C53493 Mesenchymal Chondrosarcoma of Bone 6 212739 -NCIT:C173843 Maxillofacial Mesenchymal Chondrosarcoma 7 212740 -NCIT:C53707 Bone Osteosarcoma 6 212741 -NCIT:C173844 Maxillofacial Osteosarcoma 7 212742 -NCIT:C189022 Childhood Bone Osteosarcoma 7 212743 -NCIT:C123398 Childhood Periosteal Osteosarcoma 8 212744 -NCIT:C6589 Childhood Parosteal Osteosarcoma 8 212745 -NCIT:C6590 Childhood Conventional Osteosarcoma 8 212746 -NCIT:C38157 Metachronous Osteosarcoma 7 212747 -NCIT:C4834 Primary Bone Osteosarcoma 7 212748 -NCIT:C136633 Osteosarcoma by AJCC v7 Stage 8 212749 -NCIT:C6612 Stage III Osteosarcoma AJCC v7 9 212750 -NCIT:C6701 Stage IV Osteosarcoma AJCC v7 9 212751 -NCIT:C6702 Stage IVA Osteosarcoma AJCC v7 10 212752 -NCIT:C6703 Stage IVB Osteosarcoma AJCC v7 10 212753 -NCIT:C6709 Stage I Osteosarcoma AJCC v7 9 212754 -NCIT:C6607 Stage IA Osteosarcoma AJCC v7 10 212755 -NCIT:C6609 Stage IB Osteosarcoma AJCC v7 10 212756 -NCIT:C6710 Stage II Osteosarcoma AJCC v7 9 212757 -NCIT:C6610 Stage IIA Osteosarcoma AJCC v7 10 212758 -NCIT:C6611 Stage IIB Osteosarcoma AJCC v7 10 212759 -NCIT:C35870 Conventional Osteosarcoma 8 212760 -NCIT:C179410 Giant Cell-Rich Osteosarcoma 9 212761 -NCIT:C4020 Fibroblastic Osteosarcoma 9 212762 -NCIT:C4021 Chondroblastic Osteosarcoma 9 212763 -NCIT:C53953 Osteoblastic Osteosarcoma 9 212764 -NCIT:C6590 Childhood Conventional Osteosarcoma 9 212765 -NCIT:C3902 Telangiectatic Osteosarcoma 8 212766 -NCIT:C4023 Small Cell Osteosarcoma 8 212767 -NCIT:C6470 Multifocal Osteosarcoma 8 212768 -NCIT:C6471 Synchronous Multifocal Osteosarcoma 9 212769 -NCIT:C6472 Asynchronous Multifocal Osteosarcoma 9 212770 -NCIT:C6474 Low Grade Central Osteosarcoma 8 212771 -NCIT:C7134 Bone Surface (Peripheral) Osteosarcoma 8 212772 -NCIT:C53958 High Grade Surface Osteosarcoma 9 212773 -NCIT:C8969 Parosteal Osteosarcoma 9 212774 -NCIT:C6589 Childhood Parosteal Osteosarcoma 10 212775 -NCIT:C8970 Periosteal Osteosarcoma 9 212776 -NCIT:C123398 Childhood Periosteal Osteosarcoma 10 212777 -NCIT:C53704 Secondary Osteosarcoma 7 212778 -NCIT:C53706 Radiation-Related Osteosarcoma 8 212779 -NCIT:C6469 Osteosarcoma Arising in Paget Disease of Bone 8 212780 -NCIT:C6475 Clear Cell Chondrosarcoma 6 212781 -NCIT:C6476 Dedifferentiated Chondrosarcoma 6 212782 -NCIT:C6479 Bone Angiosarcoma 6 212783 -NCIT:C6604 Bone Fibrosarcoma 6 212784 -NCIT:C7154 Bone Leiomyosarcoma 6 212785 -NCIT:C7155 Primary Central Chondrosarcoma 6 212786 -NCIT:C171070 Unresectable Primary Central Chondrosarcoma 7 212787 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 8 212788 -NCIT:C171072 Metastatic Primary Central Chondrosarcoma 7 212789 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 8 212790 -NCIT:C178476 Primary Central Atypical Cartilaginous Tumor/Chondrosarcoma, Grade 1 7 212791 -NCIT:C189026 Childhood Primary Central Chondrosarcoma 7 212792 -NCIT:C7357 Periosteal Chondrosarcoma 6 212793 -NCIT:C7598 Bone Liposarcoma 6 212794 -NCIT:C8563 Undifferentiated High Grade Pleomorphic Sarcoma of Bone 6 212795 -NCIT:C114750 Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 7 212796 -NCIT:C115368 Recurrent Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 8 212797 -NCIT:C115998 Localized Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 8 212798 -NCIT:C114782 Adult Undifferentiated High Grade Pleomorphic Sarcoma of Bone 7 212799 -NCIT:C115351 Recurrent Adult Undifferentiated High Grade Pleomorphic Sarcoma of Bone 8 212800 -NCIT:C115997 Localized Adult Undifferentiated High Grade Pleomorphic Sarcoma of Bone 8 212801 -NCIT:C151984 Pelvic Undifferentiated High Grade Pleomorphic Sarcoma 7 212802 -NCIT:C4883 Malignant Muscle Neoplasm 4 212803 -NCIT:C6511 Malignant Smooth Muscle Neoplasm 5 212804 -NCIT:C3158 Leiomyosarcoma 6 212805 -NCIT:C121571 Leiomyosarcoma of Deep Soft Tissue 7 212806 -NCIT:C27904 Retroperitoneal Leiomyosarcoma 8 212807 -NCIT:C128047 Cervical Leiomyosarcoma 7 212808 -NCIT:C132147 Unresectable Leiomyosarcoma 7 212809 -NCIT:C168728 Unresectable Soft Tissue Leiomyosarcoma 8 212810 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 9 212811 -NCIT:C148294 Refractory Leiomyosarcoma 7 212812 -NCIT:C156347 Thyroid Gland Leiomyosarcoma 7 212813 -NCIT:C159670 Bladder Leiomyosarcoma 7 212814 -NCIT:C162306 EBV-Related Leiomyosarcoma 7 212815 -NCIT:C162495 Paratesticular Leiomyosarcoma 7 212816 -NCIT:C161641 Seminal Vesicle Leiomyosarcoma 8 212817 -NCIT:C162585 Penile Leiomyosarcoma 7 212818 -NCIT:C172951 Digestive System Leiomyosarcoma 7 212819 -NCIT:C188065 Pancreatic Leiomyosarcoma 8 212820 -NCIT:C27200 Gastric Leiomyosarcoma 8 212821 -NCIT:C5334 Esophageal Leiomyosarcoma 8 212822 -NCIT:C5599 Anal Leiomyosarcoma 8 212823 -NCIT:C5756 Liver Leiomyosarcoma 8 212824 -NCIT:C5841 Gallbladder Leiomyosarcoma 8 212825 -NCIT:C5848 Extrahepatic Bile Duct Leiomyosarcoma 8 212826 -NCIT:C7085 Small Intestinal Leiomyosarcoma 8 212827 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 9 212828 -NCIT:C96435 Appendix Leiomyosarcoma 8 212829 -NCIT:C96509 Colorectal Leiomyosarcoma 8 212830 -NCIT:C5494 Colon Leiomyosarcoma 9 212831 -NCIT:C5549 Rectal Leiomyosarcoma 9 212832 -NCIT:C173123 Sinonasal Leiomyosarcoma 7 212833 -NCIT:C175500 Conjunctival Leiomyosarcoma 7 212834 -NCIT:C175505 Resectable Leiomyosarcoma 7 212835 -NCIT:C178220 Pleomorphic Leiomyosarcoma 7 212836 -NCIT:C178222 Dedifferentiated Leiomyosarcoma 8 212837 -NCIT:C179926 Broad Ligament Leiomyosarcoma 7 212838 -NCIT:C188063 Pleural Leiomyosarcoma 7 212839 -NCIT:C188254 Adrenal Gland Leiomyosarcoma 7 212840 -NCIT:C27494 Granular Cell Leiomyosarcoma 7 212841 -NCIT:C27495 Inflammatory Leiomyosarcoma 7 212842 -NCIT:C3700 Epithelioid Leiomyosarcoma 7 212843 -NCIT:C40174 Uterine Corpus Epithelioid Leiomyosarcoma 8 212844 -NCIT:C3701 Myxoid Leiomyosarcoma 7 212845 -NCIT:C40175 Uterine Corpus Myxoid Leiomyosarcoma 8 212846 -NCIT:C40128 Fallopian Tube Leiomyosarcoma 7 212847 -NCIT:C40318 Vulvar Leiomyosarcoma 7 212848 -NCIT:C5186 Breast Leiomyosarcoma 7 212849 -NCIT:C5234 Ovarian Leiomyosarcoma 7 212850 -NCIT:C5364 Cardiac Leiomyosarcoma 7 212851 -NCIT:C5387 Leiomyosarcoma of Vessels 7 212852 -NCIT:C5372 Inferior Vena Cava Leiomyosarcoma 8 212853 -NCIT:C5373 Pulmonary Artery Leiomyosarcoma 8 212854 -NCIT:C5374 Pulmonary Vein Leiomyosarcoma 8 212855 -NCIT:C5388 Renal Vein Leiomyosarcoma 8 212856 -NCIT:C6745 Superior Vena Cava Leiomyosarcoma 8 212857 -NCIT:C5526 Prostate Leiomyosarcoma 7 212858 -NCIT:C5667 Lung Leiomyosarcoma 7 212859 -NCIT:C6022 Laryngeal Leiomyosarcoma 7 212860 -NCIT:C6183 Kidney Leiomyosarcoma 7 212861 -NCIT:C6326 Vaginal Leiomyosarcoma 7 212862 -NCIT:C6340 Uterine Corpus Leiomyosarcoma 7 212863 -NCIT:C139870 Uterine Corpus Leiomyosarcoma by AJCC v8 Stage 8 212864 -NCIT:C139871 Stage I Uterine Corpus Leiomyosarcoma AJCC v8 9 212865 -NCIT:C139872 Stage IA Uterine Corpus Leiomyosarcoma AJCC v8 10 212866 -NCIT:C139873 Stage IB Uterine Corpus Leiomyosarcoma AJCC v8 10 212867 -NCIT:C139874 Stage II Uterine Corpus Leiomyosarcoma AJCC v8 9 212868 -NCIT:C139875 Stage III Uterine Corpus Leiomyosarcoma AJCC v8 9 212869 -NCIT:C139876 Stage IIIA Uterine Corpus Leiomyosarcoma AJCC v8 10 212870 -NCIT:C139877 Stage IIIB Uterine Corpus Leiomyosarcoma AJCC v8 10 212871 -NCIT:C139878 Stage IIIC Uterine Corpus Leiomyosarcoma AJCC v8 10 212872 -NCIT:C139879 Stage IV Uterine Corpus Leiomyosarcoma AJCC v8 9 212873 -NCIT:C139880 Stage IVA Uterine Corpus Leiomyosarcoma AJCC v8 10 212874 -NCIT:C139881 Stage IVB Uterine Corpus Leiomyosarcoma AJCC v8 10 212875 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 8 212876 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 8 212877 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 9 212878 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 8 212879 -NCIT:C40174 Uterine Corpus Epithelioid Leiomyosarcoma 8 212880 -NCIT:C40175 Uterine Corpus Myxoid Leiomyosarcoma 8 212881 -NCIT:C6619 Mediastinal Leiomyosarcoma 7 212882 -NCIT:C6999 Central Nervous System Leiomyosarcoma 7 212883 -NCIT:C7154 Bone Leiomyosarcoma 7 212884 -NCIT:C7810 Adult Leiomyosarcoma 7 212885 -NCIT:C8093 Childhood Leiomyosarcoma 7 212886 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 8 212887 -NCIT:C8813 Metastatic Leiomyosarcoma 7 212888 -NCIT:C160917 Locally Advanced Leiomyosarcoma 8 212889 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 9 212890 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 10 212891 -NCIT:C165780 Advanced Leiomyosarcoma 8 212892 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 9 212893 -NCIT:C168725 Metastatic Soft Tissue Leiomyosarcoma 8 212894 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 9 212895 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 9 212896 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 10 212897 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 9 212898 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 10 212899 -NCIT:C8814 Localized Leiomyosarcoma 7 212900 -NCIT:C8815 Recurrent Leiomyosarcoma 7 212901 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 8 212902 -NCIT:C9389 Well Differentiated Leiomyosarcoma 7 212903 -NCIT:C9390 Leiomyosarcoma NCI Grade 3 7 212904 -NCIT:C9391 Leiomyosarcoma NCI Grade 2 7 212905 -NCIT:C9428 Conventional Leiomyosarcoma 7 212906 -NCIT:C6516 Malignant Skeletal Muscle Neoplasm 5 212907 -NCIT:C3359 Rhabdomyosarcoma 6 212908 -NCIT:C121654 Spindle Cell/Sclerosing Rhabdomyosarcoma 7 212909 -NCIT:C121655 Sclerosing Rhabdomyosarcoma 8 212910 -NCIT:C178235 MYOD1-Mutant Spindle Cell/Sclerosing Rhabdomyosarcoma 8 212911 -NCIT:C6519 Spindle Cell Rhabdomyosarcoma 8 212912 -NCIT:C123397 Childhood Spindle Cell Rhabdomyosarcoma 9 212913 -NCIT:C178232 Congenital/Infantile Spindle Cell Rhabdomyosarcoma with VGLL2/NCOA2/CITED2 Rearrangements 9 212914 -NCIT:C178236 Intraosseous Spindle Cell Rhabdomyosarcoma with TFCP2/NCOA2 Rearrangements 9 212915 -NCIT:C123735 Fusion-Positive Rhabdomyosarcoma 7 212916 -NCIT:C123731 Fusion-Positive Alveolar Rhabdomyosarcoma 8 212917 -NCIT:C123736 Fusion-Negative Rhabdomyosarcoma 7 212918 -NCIT:C123732 Fusion-Negative Alveolar Rhabdomyosarcoma 8 212919 -NCIT:C127058 Uterine Corpus Rhabdomyosarcoma 7 212920 -NCIT:C128048 Cervical Rhabdomyosarcoma 7 212921 -NCIT:C128080 Vaginal Rhabdomyosarcoma 7 212922 -NCIT:C40268 Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 8 212923 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 9 212924 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 9 212925 -NCIT:C142851 Refractory Rhabdomyosarcoma 7 212926 -NCIT:C142880 Refractory Alveolar Rhabdomyosarcoma 8 212927 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 8 212928 -NCIT:C151981 Pelvic Rhabdomyosarcoma 7 212929 -NCIT:C151982 Abdominal Rhabdomyosarcoma 7 212930 -NCIT:C151983 Unresectable Rhabdomyosarcoma 7 212931 -NCIT:C159206 Kidney Rhabdomyosarcoma 7 212932 -NCIT:C159667 Bladder Rhabdomyosarcoma 7 212933 -NCIT:C159668 Bladder Embryonal Rhabdomyosarcoma 8 212934 -NCIT:C159669 Bladder Alveolar Rhabdomyosarcoma 8 212935 -NCIT:C162497 Paratesticular Rhabdomyosarcoma 7 212936 -NCIT:C162588 Penile Rhabdomyosarcoma 7 212937 -NCIT:C166414 Metastatic Rhabdomyosarcoma 7 212938 -NCIT:C166415 Locally Advanced Rhabdomyosarcoma 8 212939 -NCIT:C183250 Metastatic Embryonal Rhabdomyosarcoma 8 212940 -NCIT:C172952 Digestive System Rhabdomyosarcoma 7 212941 -NCIT:C5610 Anal Rhabdomyosarcoma 8 212942 -NCIT:C5627 Rectal Rhabdomyosarcoma 8 212943 -NCIT:C5834 Liver Rhabdomyosarcoma 8 212944 -NCIT:C5839 Gallbladder Rhabdomyosarcoma 8 212945 -NCIT:C5860 Extrahepatic Bile Duct Rhabdomyosarcoma 8 212946 -NCIT:C5847 Extrahepatic Bile Duct Embryonal Rhabdomyosarcoma 9 212947 -NCIT:C95623 Esophageal Rhabdomyosarcoma 8 212948 -NCIT:C173124 Sinonasal Rhabdomyosarcoma 7 212949 -NCIT:C175501 Conjunctival Rhabdomyosarcoma 7 212950 -NCIT:C181201 Lung Rhabdomyosarcoma 7 212951 -NCIT:C181944 Vulvar Rhabdomyosarcoma 7 212952 -NCIT:C128273 Vulvar Alveolar Rhabdomyosarcoma 8 212953 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 8 212954 -NCIT:C188071 Retroperitoneal Rhabdomyosarcoma 7 212955 -NCIT:C3749 Alveolar Rhabdomyosarcoma 7 212956 -NCIT:C123731 Fusion-Positive Alveolar Rhabdomyosarcoma 8 212957 -NCIT:C123732 Fusion-Negative Alveolar Rhabdomyosarcoma 8 212958 -NCIT:C128273 Vulvar Alveolar Rhabdomyosarcoma 8 212959 -NCIT:C142880 Refractory Alveolar Rhabdomyosarcoma 8 212960 -NCIT:C142881 Recurrent Alveolar Rhabdomyosarcoma 8 212961 -NCIT:C159669 Bladder Alveolar Rhabdomyosarcoma 8 212962 -NCIT:C188070 Prostate Alveolar Rhabdomyosarcoma 8 212963 -NCIT:C27492 Conventional Alveolar Rhabdomyosarcoma 8 212964 -NCIT:C27493 Solid Alveolar Rhabdomyosarcoma 8 212965 -NCIT:C6247 Orbit Alveolar Rhabdomyosarcoma 8 212966 -NCIT:C7958 Childhood Alveolar Rhabdomyosarcoma 8 212967 -NCIT:C4258 Pleomorphic Rhabdomyosarcoma 7 212968 -NCIT:C27369 Adult Pleomorphic Rhabdomyosarcoma 8 212969 -NCIT:C7959 Childhood Pleomorphic Rhabdomyosarcoma 8 212970 -NCIT:C4259 Rhabdomyosarcoma with Mixed Embryonal and Alveolar Features 7 212971 -NCIT:C7960 Childhood Rhabdomyosarcoma with Mixed Embryonal and Alveolar Features 8 212972 -NCIT:C4543 Orbit Rhabdomyosarcoma 7 212973 -NCIT:C6246 Orbit Embryonal Rhabdomyosarcoma 8 212974 -NCIT:C6247 Orbit Alveolar Rhabdomyosarcoma 8 212975 -NCIT:C45759 Cardiac Rhabdomyosarcoma 7 212976 -NCIT:C5190 Breast Rhabdomyosarcoma 7 212977 -NCIT:C5236 Ovarian Rhabdomyosarcoma 7 212978 -NCIT:C5464 Central Nervous System Rhabdomyosarcoma 7 212979 -NCIT:C5522 Prostate Rhabdomyosarcoma 7 212980 -NCIT:C188070 Prostate Alveolar Rhabdomyosarcoma 8 212981 -NCIT:C5525 Prostate Embryonal Rhabdomyosarcoma 8 212982 -NCIT:C6378 Testicular Rhabdomyosarcoma 7 212983 -NCIT:C6617 Mediastinal Rhabdomyosarcoma 7 212984 -NCIT:C7705 Childhood Rhabdomyosarcoma 7 212985 -NCIT:C123397 Childhood Spindle Cell Rhabdomyosarcoma 8 212986 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 8 212987 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 8 212988 -NCIT:C7957 Childhood Embryonal Rhabdomyosarcoma 8 212989 -NCIT:C35574 Childhood Botryoid-Type Embryonal Rhabdomyosarcoma 9 212990 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 212991 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 10 212992 -NCIT:C7958 Childhood Alveolar Rhabdomyosarcoma 8 212993 -NCIT:C7959 Childhood Pleomorphic Rhabdomyosarcoma 8 212994 -NCIT:C7960 Childhood Rhabdomyosarcoma with Mixed Embryonal and Alveolar Features 8 212995 -NCIT:C8065 Localized Childhood Rhabdomyosarcoma 8 212996 -NCIT:C8824 Recurrent Rhabdomyosarcoma 7 212997 -NCIT:C142881 Recurrent Alveolar Rhabdomyosarcoma 8 212998 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 8 212999 -NCIT:C8971 Embryonal Rhabdomyosarcoma 7 213000 -NCIT:C159668 Bladder Embryonal Rhabdomyosarcoma 8 213001 -NCIT:C183250 Metastatic Embryonal Rhabdomyosarcoma 8 213002 -NCIT:C188115 Middle Ear Embryonal Rhabdomyosarcoma 8 213003 -NCIT:C49204 Anaplastic Embryonal Rhabdomyosarcoma 8 213004 -NCIT:C5525 Prostate Embryonal Rhabdomyosarcoma 8 213005 -NCIT:C5847 Extrahepatic Bile Duct Embryonal Rhabdomyosarcoma 8 213006 -NCIT:C6246 Orbit Embryonal Rhabdomyosarcoma 8 213007 -NCIT:C7957 Childhood Embryonal Rhabdomyosarcoma 8 213008 -NCIT:C35574 Childhood Botryoid-Type Embryonal Rhabdomyosarcoma 9 213009 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 213010 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 10 213011 -NCIT:C9150 Botryoid-Type Embryonal Rhabdomyosarcoma 8 213012 -NCIT:C35574 Childhood Botryoid-Type Embryonal Rhabdomyosarcoma 9 213013 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 213014 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 10 213015 -NCIT:C36099 Adult Botryoid-Type Embryonal Rhabdomyosarcoma 9 213016 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 213017 -NCIT:C40268 Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 9 213018 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 213019 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 213020 -NCIT:C9130 Adult Rhabdomyosarcoma 7 213021 -NCIT:C27369 Adult Pleomorphic Rhabdomyosarcoma 8 213022 -NCIT:C36099 Adult Botryoid-Type Embryonal Rhabdomyosarcoma 8 213023 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 9 213024 -NCIT:C167168 Obesity-Related Malignant Neoplasm 3 213025 -NCIT:C172183 Progesterone Receptor Expressing Malignant Neoplasm 3 213026 -NCIT:C177364 Somatic-Type Malignancy 3 213027 -NCIT:C188021 B-Cell Malignant Neoplasm 3 213028 -NCIT:C148065 Advanced B-Cell Malignant Neoplasm 4 213029 -NCIT:C171264 Advanced Diffuse Large B-Cell Lymphoma 5 213030 -NCIT:C172359 Advanced Follicular Lymphoma 5 213031 -NCIT:C172360 Advanced Marginal Zone Lymphoma 5 213032 -NCIT:C27911 Chronic Lymphocytic Leukemia/Small Lymphocytic Lymphoma 4 213033 -NCIT:C131873 Recurrent Chronic Lymphocytic Leukemia/Small Lymphocytic Lymphoma 5 213034 -NCIT:C8154 Recurrent Small Lymphocytic Lymphoma 6 213035 -NCIT:C8645 Recurrent Chronic Lymphocytic Leukemia 6 213036 -NCIT:C158151 Recurrent Transformed Chronic Lymphocytic Leukemia 7 213037 -NCIT:C172282 Refractory Chronic Lymphocytic Leukemia/Small Lymphocytic Lymphoma 5 213038 -NCIT:C7886 Refractory Chronic Lymphocytic Leukemia 6 213039 -NCIT:C158152 Refractory Transformed Chronic Lymphocytic Leukemia 7 213040 -NCIT:C8846 Refractory Small Lymphocytic Lymphoma 6 213041 -NCIT:C3163 Chronic Lymphocytic Leukemia 5 213042 -NCIT:C141206 Chronic Lymphocytic Leukemia- Modified Rai Staging System 6 213043 -NCIT:C7847 Stage 0 Chronic Lymphocytic Leukemia 7 213044 -NCIT:C7874 Stage I Chronic Lymphocytic Leukemia 7 213045 -NCIT:C7875 Stage II Chronic Lymphocytic Leukemia 7 213046 -NCIT:C7876 Stage III Chronic Lymphocytic Leukemia 7 213047 -NCIT:C8646 Stage IV Chronic Lymphocytic Leukemia 7 213048 -NCIT:C141208 Chronic Lymphocytic Leukemia- Binet Staging System 6 213049 -NCIT:C141209 Stage A Chronic Lymphocytic Leukemia 7 213050 -NCIT:C141210 Stage B Chronic Lymphocytic Leukemia 7 213051 -NCIT:C141211 Stage C Chronic Lymphocytic Leukemia 7 213052 -NCIT:C157624 Transformed Chronic Lymphocytic Leukemia to Diffuse Large B-Cell Lymphoma 6 213053 -NCIT:C158151 Recurrent Transformed Chronic Lymphocytic Leukemia 7 213054 -NCIT:C158152 Refractory Transformed Chronic Lymphocytic Leukemia 7 213055 -NCIT:C36272 Chronic Lymphocytic Leukemia with Plasmacytoid Differentiation 6 213056 -NCIT:C37202 Chronic Lymphocytic Leukemia with Immunoglobulin Heavy Chain Variable-Region Gene Somatic Hypermutation 6 213057 -NCIT:C37205 Chronic Lymphocytic Leukemia with Unmutated Immunoglobulin Heavy Chain Variable-Region Gene 6 213058 -NCIT:C45264 Cutaneous Chronic Lymphocytic Leukemia 6 213059 -NCIT:C7176 Aleukemic Chronic Lymphocytic Leukemia 6 213060 -NCIT:C7300 Splenic Manifestation of Chronic Lymphocytic Leukemia 6 213061 -NCIT:C7886 Refractory Chronic Lymphocytic Leukemia 6 213062 -NCIT:C158152 Refractory Transformed Chronic Lymphocytic Leukemia 7 213063 -NCIT:C8645 Recurrent Chronic Lymphocytic Leukemia 6 213064 -NCIT:C158151 Recurrent Transformed Chronic Lymphocytic Leukemia 7 213065 -NCIT:C37201 Chronic Lymphocytic Leukemia/Small Lymphocytic Lymphoma with Immunoglobulin Heavy Chain Variable-Region Gene Somatic Hypermutation 5 213066 -NCIT:C37202 Chronic Lymphocytic Leukemia with Immunoglobulin Heavy Chain Variable-Region Gene Somatic Hypermutation 6 213067 -NCIT:C37203 Small Lymphocytic Lymphoma with Immunoglobulin Heavy Chain Variable-Region Gene Somatic Hypermutation 6 213068 -NCIT:C37204 Chronic Lymphocytic Leukemia/Small Lymphocytic Lymphoma with Unmutated Immunoglobulin Heavy Chain Variable-Region Gene 5 213069 -NCIT:C37205 Chronic Lymphocytic Leukemia with Unmutated Immunoglobulin Heavy Chain Variable-Region Gene 6 213070 -NCIT:C37206 Small Lymphocytic Lymphoma with Unmutated Immunoglobulin Heavy Chain Variable-Region Gene 6 213071 -NCIT:C7540 Small Lymphocytic Lymphoma 5 213072 -NCIT:C141259 Small Lymphocytic Lymphoma by Ann Arbor Stage 6 213073 -NCIT:C8070 Ann Arbor Stage I Small Lymphocytic Lymphoma 7 213074 -NCIT:C8115 Ann Arbor Stage II Small Lymphocytic Lymphoma 7 213075 -NCIT:C8128 Ann Arbor Stage III Small Lymphocytic Lymphoma 7 213076 -NCIT:C8141 Ann Arbor Stage IV Small Lymphocytic Lymphoma 7 213077 -NCIT:C161605 Prostate Small Lymphocytic Lymphoma 6 213078 -NCIT:C36273 Small Lymphocytic Lymphoma with Plasmacytoid Differentiation 6 213079 -NCIT:C37203 Small Lymphocytic Lymphoma with Immunoglobulin Heavy Chain Variable-Region Gene Somatic Hypermutation 6 213080 -NCIT:C37206 Small Lymphocytic Lymphoma with Unmutated Immunoglobulin Heavy Chain Variable-Region Gene 6 213081 -NCIT:C7304 Splenic Small Lymphocytic Lymphoma 6 213082 -NCIT:C8154 Recurrent Small Lymphocytic Lymphoma 6 213083 -NCIT:C8846 Refractory Small Lymphocytic Lymphoma 6 213084 -NCIT:C3180 Plasma Cell Leukemia 4 213085 -NCIT:C191432 Secondary Plasma Cell Leukemia 5 213086 -NCIT:C3242 Plasma Cell Myeloma 4 213087 -NCIT:C139008 Plasma Cell Myeloma by DS Stage 5 213088 -NCIT:C7850 DS Stage I Plasma Cell Myeloma 6 213089 -NCIT:C181859 DS Stage IA Plasma Cell Myeloma 7 213090 -NCIT:C181860 DS Stage IB Plasma Cell Myeloma 7 213091 -NCIT:C7851 DS Stage II Plasma Cell Myeloma 6 213092 -NCIT:C181862 DS Stage IIA Plasma Cell Myeloma 7 213093 -NCIT:C181864 DS Stage IIB Plasma Cell Myeloma 7 213094 -NCIT:C7852 DS Stage III Plasma Cell Myeloma 6 213095 -NCIT:C181865 DS Stage IIIA Plasma Cell Myeloma 7 213096 -NCIT:C181866 DS Stage IIIB Plasma Cell Myeloma 7 213097 -NCIT:C139009 Plasma Cell Myeloma by ISS Stage 5 213098 -NCIT:C70658 ISS Stage I Plasma Cell Myeloma 6 213099 -NCIT:C70659 ISS Stage II Plasma Cell Myeloma 6 213100 -NCIT:C70660 ISS Stage III Plasma Cell Myeloma 6 213101 -NCIT:C141393 Plasma Cell Myeloma by RISS Stage 5 213102 -NCIT:C141394 RISS Stage I Plasma Cell Myeloma 6 213103 -NCIT:C141395 RISS Stage II Plasma Cell Myeloma 6 213104 -NCIT:C141396 RISS Stage III Plasma Cell Myeloma 6 213105 -NCIT:C185149 Extramedullary Disease in Plasma Cell Myeloma 5 213106 -NCIT:C185037 Extramedullary Disease in Plasma Cell Myeloma Involving the Central Nervous System 6 213107 -NCIT:C185039 Extramedullary Disease in Plasma Cell Myeloma Involving the Leptomeninges 7 213108 -NCIT:C185151 Extramedullary Disease in Plasma Cell Myeloma Involving the Spleen 6 213109 -NCIT:C185152 Extramedullary Disease in Plasma Cell Myeloma Involving the Liver 6 213110 -NCIT:C185153 Extramedullary Disease in Plasma Cell Myeloma Involving the Kidney 6 213111 -NCIT:C185155 Extramedullary Disease in Plasma Cell Myeloma Involving the Skin 6 213112 -NCIT:C185321 Extramedullary Disease in Plasma Cell Myeloma Involving the Lung 6 213113 -NCIT:C188074 Extramedullary Disease in Plasma Cell Myeloma Involving the Uterine Corpus 6 213114 -NCIT:C4734 Non-Secretory Plasma Cell Myeloma 5 213115 -NCIT:C7024 Refractory Plasma Cell Myeloma 5 213116 -NCIT:C178375 Triple-Class Refractory Plasma Cell Myeloma 6 213117 -NCIT:C7025 Recurrent Plasma Cell Myeloma 5 213118 -NCIT:C7149 Smoldering Plasma Cell Myeloma 5 213119 -NCIT:C7150 Indolent Plasma Cell Myeloma 5 213120 -NCIT:C7242 Plasma Cell Myeloma Post-Transplant Lymphoproliferative Disorder 5 213121 -NCIT:C7765 Osteosclerotic Plasma Cell Myeloma 5 213122 -NCIT:C3457 B-Cell Non-Hodgkin Lymphoma 4 213123 -NCIT:C141243 B-Cell Non-Hodgkin Lymphoma by Ann Arbor Stage 5 213124 -NCIT:C141250 B Lymphoblastic Lymphoma by Ann Arbor Stage 6 213125 -NCIT:C8871 Ann Arbor Stage I B Lymphoblastic Lymphoma 7 213126 -NCIT:C8872 Ann Arbor Stage III B Lymphoblastic Lymphoma 7 213127 -NCIT:C8873 Ann Arbor Stage IV B Lymphoblastic Lymphoma 7 213128 -NCIT:C8937 Ann Arbor Stage II B Lymphoblastic Lymphoma 7 213129 -NCIT:C141253 Burkitt Lymphoma by Ann Arbor Stage 6 213130 -NCIT:C5084 Ann Arbor Stage IV Burkitt Lymphoma 7 213131 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 8 213132 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 8 213133 -NCIT:C8848 Ann Arbor Stage I Burkitt Lymphoma 7 213134 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 8 213135 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 8 213136 -NCIT:C8849 Ann Arbor Stage II Burkitt Lymphoma 7 213137 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 8 213138 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 9 213139 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 9 213140 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 8 213141 -NCIT:C8850 Ann Arbor Stage III Burkitt Lymphoma 7 213142 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 8 213143 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 8 213144 -NCIT:C141254 Diffuse Large B-Cell Lymphoma by Ann Arbor Stage 6 213145 -NCIT:C141262 Primary Mediastinal (Thymic) Large B-Cell Lymphoma by Ann Arbor Stage 7 213146 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 213147 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 213148 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 213149 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 213150 -NCIT:C141263 Centroblastic Lymphoma by Ann Arbor Stage 7 213151 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 8 213152 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 8 213153 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 8 213154 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 8 213155 -NCIT:C8854 Ann Arbor Stage I Diffuse Large B-Cell Lymphoma 7 213156 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 8 213157 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 213158 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 8 213159 -NCIT:C8855 Ann Arbor Stage II Diffuse Large B-Cell Lymphoma 7 213160 -NCIT:C171158 Ann Arbor Stage IIX (Bulky) Diffuse Large B-Cell Lymphoma 8 213161 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 8 213162 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 9 213163 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 9 213164 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 213165 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 8 213166 -NCIT:C8856 Ann Arbor Stage III Diffuse Large B-Cell Lymphoma 7 213167 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 8 213168 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 213169 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 8 213170 -NCIT:C8857 Ann Arbor Stage IV Diffuse Large B-Cell Lymphoma 7 213171 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 8 213172 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 213173 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 8 213174 -NCIT:C141255 Follicular Lymphoma by Ann Arbor Stage 6 213175 -NCIT:C5006 Ann Arbor Stage IV Follicular Lymphoma 7 213176 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 8 213177 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 8 213178 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 8 213179 -NCIT:C8859 Ann Arbor Stage I Follicular Lymphoma 7 213180 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 8 213181 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 8 213182 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 8 213183 -NCIT:C8860 Ann Arbor Stage II Follicular Lymphoma 7 213184 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 8 213185 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 9 213186 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 9 213187 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 8 213188 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 9 213189 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 9 213190 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 8 213191 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 9 213192 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 9 213193 -NCIT:C8861 Ann Arbor Stage III Follicular Lymphoma 7 213194 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 8 213195 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 8 213196 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 8 213197 -NCIT:C141256 Lymphoplasmacytic Lymphoma by Ann Arbor Stage 6 213198 -NCIT:C8653 Ann Arbor Stage I Lymphoplasmacytic Lymphoma 7 213199 -NCIT:C8654 Ann Arbor Stage II Lymphoplasmacytic Lymphoma 7 213200 -NCIT:C8655 Ann Arbor Stage III Lymphoplasmacytic Lymphoma 7 213201 -NCIT:C8656 Ann Arbor Stage IV Lymphoplasmacytic Lymphoma 7 213202 -NCIT:C141257 Mantle Cell Lymphoma by Ann Arbor Stage 6 213203 -NCIT:C8465 Ann Arbor Stage I Mantle Cell Lymphoma 7 213204 -NCIT:C8483 Ann Arbor Stage III Mantle Cell Lymphoma 7 213205 -NCIT:C8486 Ann Arbor Stage IV Mantle Cell Lymphoma 7 213206 -NCIT:C9202 Ann Arbor Stage II Mantle Cell Lymphoma 7 213207 -NCIT:C8473 Ann Arbor Stage II Contiguous Mantle Cell Lymphoma 8 213208 -NCIT:C9198 Ann Arbor Stage II Non-Contiguous Mantle Cell Lymphoma 8 213209 -NCIT:C141258 Marginal Zone Lymphoma by Ann Arbor Stage 6 213210 -NCIT:C141260 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue by Ann Arbor Stage 7 213211 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 213212 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 213213 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 213214 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 213215 -NCIT:C141261 Nodal Marginal Zone Lymphoma by Ann Arbor Stage 7 213216 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 8 213217 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 8 213218 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 8 213219 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 8 213220 -NCIT:C68678 Ann Arbor Stage I Marginal Zone Lymphoma 7 213221 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 213222 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 8 213223 -NCIT:C68679 Ann Arbor Stage II Marginal Zone Lymphoma 7 213224 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 213225 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 8 213226 -NCIT:C68682 Ann Arbor Stage III Marginal Zone Lymphoma 7 213227 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 213228 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 8 213229 -NCIT:C68683 Ann Arbor Stage IV Marginal Zone Lymphoma 7 213230 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 213231 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 8 213232 -NCIT:C141259 Small Lymphocytic Lymphoma by Ann Arbor Stage 6 213233 -NCIT:C8070 Ann Arbor Stage I Small Lymphocytic Lymphoma 7 213234 -NCIT:C8115 Ann Arbor Stage II Small Lymphocytic Lymphoma 7 213235 -NCIT:C8128 Ann Arbor Stage III Small Lymphocytic Lymphoma 7 213236 -NCIT:C8141 Ann Arbor Stage IV Small Lymphocytic Lymphoma 7 213237 -NCIT:C27308 Ann Arbor Stage I B-Cell Non-Hodgkin Lymphoma 6 213238 -NCIT:C68678 Ann Arbor Stage I Marginal Zone Lymphoma 7 213239 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 213240 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 8 213241 -NCIT:C8070 Ann Arbor Stage I Small Lymphocytic Lymphoma 7 213242 -NCIT:C8465 Ann Arbor Stage I Mantle Cell Lymphoma 7 213243 -NCIT:C8653 Ann Arbor Stage I Lymphoplasmacytic Lymphoma 7 213244 -NCIT:C8848 Ann Arbor Stage I Burkitt Lymphoma 7 213245 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 8 213246 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 8 213247 -NCIT:C8854 Ann Arbor Stage I Diffuse Large B-Cell Lymphoma 7 213248 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 8 213249 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 213250 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 8 213251 -NCIT:C8859 Ann Arbor Stage I Follicular Lymphoma 7 213252 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 8 213253 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 8 213254 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 8 213255 -NCIT:C8871 Ann Arbor Stage I B Lymphoblastic Lymphoma 7 213256 -NCIT:C8843 Ann Arbor Stage II B-Cell Non-Hodgkin Lymphoma 6 213257 -NCIT:C68679 Ann Arbor Stage II Marginal Zone Lymphoma 7 213258 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 213259 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 8 213260 -NCIT:C8115 Ann Arbor Stage II Small Lymphocytic Lymphoma 7 213261 -NCIT:C8654 Ann Arbor Stage II Lymphoplasmacytic Lymphoma 7 213262 -NCIT:C8849 Ann Arbor Stage II Burkitt Lymphoma 7 213263 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 8 213264 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 9 213265 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 9 213266 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 8 213267 -NCIT:C8855 Ann Arbor Stage II Diffuse Large B-Cell Lymphoma 7 213268 -NCIT:C171158 Ann Arbor Stage IIX (Bulky) Diffuse Large B-Cell Lymphoma 8 213269 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 8 213270 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 9 213271 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 9 213272 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 213273 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 8 213274 -NCIT:C8860 Ann Arbor Stage II Follicular Lymphoma 7 213275 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 8 213276 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 9 213277 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 9 213278 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 8 213279 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 9 213280 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 9 213281 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 8 213282 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 9 213283 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 9 213284 -NCIT:C8937 Ann Arbor Stage II B Lymphoblastic Lymphoma 7 213285 -NCIT:C9202 Ann Arbor Stage II Mantle Cell Lymphoma 7 213286 -NCIT:C8473 Ann Arbor Stage II Contiguous Mantle Cell Lymphoma 8 213287 -NCIT:C9198 Ann Arbor Stage II Non-Contiguous Mantle Cell Lymphoma 8 213288 -NCIT:C8844 Ann Arbor Stage III B-Cell Non-Hodgkin Lymphoma 6 213289 -NCIT:C68682 Ann Arbor Stage III Marginal Zone Lymphoma 7 213290 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 213291 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 8 213292 -NCIT:C8128 Ann Arbor Stage III Small Lymphocytic Lymphoma 7 213293 -NCIT:C8483 Ann Arbor Stage III Mantle Cell Lymphoma 7 213294 -NCIT:C8655 Ann Arbor Stage III Lymphoplasmacytic Lymphoma 7 213295 -NCIT:C8850 Ann Arbor Stage III Burkitt Lymphoma 7 213296 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 8 213297 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 8 213298 -NCIT:C8856 Ann Arbor Stage III Diffuse Large B-Cell Lymphoma 7 213299 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 8 213300 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 213301 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 8 213302 -NCIT:C8861 Ann Arbor Stage III Follicular Lymphoma 7 213303 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 8 213304 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 8 213305 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 8 213306 -NCIT:C8872 Ann Arbor Stage III B Lymphoblastic Lymphoma 7 213307 -NCIT:C8845 Ann Arbor Stage IV B-Cell Non-Hodgkin Lymphoma 6 213308 -NCIT:C5006 Ann Arbor Stage IV Follicular Lymphoma 7 213309 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 8 213310 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 8 213311 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 8 213312 -NCIT:C5084 Ann Arbor Stage IV Burkitt Lymphoma 7 213313 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 8 213314 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 8 213315 -NCIT:C68683 Ann Arbor Stage IV Marginal Zone Lymphoma 7 213316 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 213317 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 8 213318 -NCIT:C8141 Ann Arbor Stage IV Small Lymphocytic Lymphoma 7 213319 -NCIT:C8486 Ann Arbor Stage IV Mantle Cell Lymphoma 7 213320 -NCIT:C8656 Ann Arbor Stage IV Lymphoplasmacytic Lymphoma 7 213321 -NCIT:C8857 Ann Arbor Stage IV Diffuse Large B-Cell Lymphoma 7 213322 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 8 213323 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 213324 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 8 213325 -NCIT:C8873 Ann Arbor Stage IV B Lymphoblastic Lymphoma 7 213326 -NCIT:C147948 Central Nervous System B-Cell Non-Hodgkin Lymphoma 5 213327 -NCIT:C71720 Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 6 213328 -NCIT:C129602 Central Nervous System Intravascular Large B-Cell Lymphoma 7 213329 -NCIT:C155797 Pituitary Gland Diffuse Large B-Cell Lymphoma 7 213330 -NCIT:C157067 Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 7 213331 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 213332 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 213333 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 7 213334 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 213335 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 7 213336 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 213337 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 7 213338 -NCIT:C95991 Dural Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 6 213339 -NCIT:C178541 Aggressive B-Cell Non-Hodgkin Lymphoma 5 213340 -NCIT:C131911 Burkitt-Like Lymphoma with 11q Aberration 6 213341 -NCIT:C178553 Recurrent Aggressive B-Cell Non-Hodgkin Lymphoma 6 213342 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 7 213343 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 7 213344 -NCIT:C5008 Recurrent Burkitt Lymphoma 7 213345 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 8 213346 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 8 213347 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 7 213348 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 8 213349 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 8 213350 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 7 213351 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 8 213352 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 8 213353 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 7 213354 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 7 213355 -NCIT:C178555 Refractory Aggressive B-Cell Non-Hodgkin Lymphoma 6 213356 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 7 213357 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 7 213358 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 7 213359 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 8 213360 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 8 213361 -NCIT:C8847 Refractory Burkitt Lymphoma 7 213362 -NCIT:C8862 Refractory Mantle Cell Lymphoma 7 213363 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 7 213364 -NCIT:C2912 Burkitt Lymphoma 6 213365 -NCIT:C141253 Burkitt Lymphoma by Ann Arbor Stage 7 213366 -NCIT:C5084 Ann Arbor Stage IV Burkitt Lymphoma 8 213367 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 9 213368 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 9 213369 -NCIT:C8848 Ann Arbor Stage I Burkitt Lymphoma 8 213370 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 9 213371 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 9 213372 -NCIT:C8849 Ann Arbor Stage II Burkitt Lymphoma 8 213373 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 9 213374 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 10 213375 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 10 213376 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 9 213377 -NCIT:C8850 Ann Arbor Stage III Burkitt Lymphoma 8 213378 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 9 213379 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 9 213380 -NCIT:C168651 Cutaneous Burkitt Lymphoma 7 213381 -NCIT:C188075 Kidney Burkitt Lymphoma 7 213382 -NCIT:C27409 Small Intestinal Burkitt Lymphoma 7 213383 -NCIT:C27410 Small Intestinal Atypical Burkitt/Burkitt-Like Lymphoma 8 213384 -NCIT:C27694 EBV-Related Burkitt Lymphoma 7 213385 -NCIT:C27122 Endemic Burkitt Lymphoma 8 213386 -NCIT:C27914 Sporadic Burkitt Lymphoma 7 213387 -NCIT:C27915 Immunodeficiency-Related Burkitt Lymphoma 7 213388 -NCIT:C7244 Burkitt Lymphoma Post-Transplant Lymphoproliferative Disorder 8 213389 -NCIT:C7245 Burkitt-Like Lymphoma Post-Transplant Lymphoproliferative Disorder 9 213390 -NCIT:C7255 Methotrexate-Related Burkitt Lymphoma 8 213391 -NCIT:C8286 AIDS-Related Burkitt Lymphoma 8 213392 -NCIT:C27857 AIDS-Related Burkitt Lymphoma with Plasmacytoid Differentiation 9 213393 -NCIT:C40376 Breast Burkitt Lymphoma 7 213394 -NCIT:C5008 Recurrent Burkitt Lymphoma 7 213395 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 8 213396 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 8 213397 -NCIT:C5251 Gastric Burkitt Lymphoma 7 213398 -NCIT:C6917 Atypical Burkitt/Burkitt-Like Lymphoma 7 213399 -NCIT:C27410 Small Intestinal Atypical Burkitt/Burkitt-Like Lymphoma 8 213400 -NCIT:C7245 Burkitt-Like Lymphoma Post-Transplant Lymphoproliferative Disorder 8 213401 -NCIT:C7188 Classical Burkitt Lymphoma 7 213402 -NCIT:C7189 Burkitt Lymphoma with Plasmacytoid Differentiation 7 213403 -NCIT:C27857 AIDS-Related Burkitt Lymphoma with Plasmacytoid Differentiation 8 213404 -NCIT:C7309 Splenic Burkitt Lymphoma 7 213405 -NCIT:C8847 Refractory Burkitt Lymphoma 7 213406 -NCIT:C9062 Adult Burkitt Lymphoma 7 213407 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 8 213408 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 8 213409 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 9 213410 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 9 213411 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 8 213412 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 8 213413 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 8 213414 -NCIT:C9095 Childhood Burkitt Lymphoma 7 213415 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 8 213416 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 8 213417 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 8 213418 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 8 213419 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 8 213420 -NCIT:C96502 Colorectal Burkitt Lymphoma 7 213421 -NCIT:C27465 Colon Burkitt Lymphoma 8 213422 -NCIT:C3460 Grade 3 Follicular Lymphoma 6 213423 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 7 213424 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 8 213425 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 8 213426 -NCIT:C6859 Grade 3 Cutaneous Follicular Lymphoma 7 213427 -NCIT:C7191 Grade 3a Follicular Lymphoma 7 213428 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 8 213429 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 8 213430 -NCIT:C7192 Grade 3b Follicular Lymphoma 7 213431 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 8 213432 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 8 213433 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 7 213434 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 7 213435 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 8 213436 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 8 213437 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 7 213438 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 7 213439 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 7 213440 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 8 213441 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 8 213442 -NCIT:C36081 Diffuse Large B-Cell Lymphoma Activated B-Cell Type 6 213443 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 7 213444 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 7 213445 -NCIT:C4337 Mantle Cell Lymphoma 6 213446 -NCIT:C141257 Mantle Cell Lymphoma by Ann Arbor Stage 7 213447 -NCIT:C8465 Ann Arbor Stage I Mantle Cell Lymphoma 8 213448 -NCIT:C8483 Ann Arbor Stage III Mantle Cell Lymphoma 8 213449 -NCIT:C8486 Ann Arbor Stage IV Mantle Cell Lymphoma 8 213450 -NCIT:C9202 Ann Arbor Stage II Mantle Cell Lymphoma 8 213451 -NCIT:C8473 Ann Arbor Stage II Contiguous Mantle Cell Lymphoma 9 213452 -NCIT:C9198 Ann Arbor Stage II Non-Contiguous Mantle Cell Lymphoma 9 213453 -NCIT:C161604 Prostate Mantle Cell Lymphoma 7 213454 -NCIT:C181210 Parotid Gland Mantle Cell Lymphoma 7 213455 -NCIT:C188080 Tonsillar Mantle Cell Lymphoma 7 213456 -NCIT:C27440 Gastric Mantle Cell Lymphoma 7 213457 -NCIT:C27441 Small Intestinal Mantle Cell Lymphoma 7 213458 -NCIT:C39747 Pleomorphic Variant Mantle Cell Lymphoma 7 213459 -NCIT:C45266 Cutaneous Mantle Cell Lymphoma 7 213460 -NCIT:C7229 Blastoid Variant Mantle Cell Lymphoma 7 213461 -NCIT:C7306 Splenic Mantle Cell Lymphoma 7 213462 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 7 213463 -NCIT:C8862 Refractory Mantle Cell Lymphoma 7 213464 -NCIT:C96505 Colorectal Mantle Cell Lymphoma 7 213465 -NCIT:C27411 Colon Mantle Cell Lymphoma 8 213466 -NCIT:C45194 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 6 213467 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 7 213468 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 7 213469 -NCIT:C45231 Diffuse Large B-Cell Lymphoma Unclassifiable 6 213470 -NCIT:C7212 AIDS-Related Diffuse Large B-cell Lymphoma 6 213471 -NCIT:C27858 AIDS-Related Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 7 213472 -NCIT:C27859 AIDS-Related Plasmablastic Lymphoma 7 213473 -NCIT:C38160 AIDS-Related Plasmablastic Lymphoma of Mucosa Site 8 213474 -NCIT:C9016 AIDS-Related Plasmablastic Lymphoma of the Oral Mucosa 9 213475 -NCIT:C8285 AIDS-Related Immunoblastic Lymphoma 7 213476 -NCIT:C9017 AIDS-Related Primary Effusion Lymphoma 7 213477 -NCIT:C7246 Diffuse Large B-Cell Lymphoma Post-Transplant Lymphoproliferative Disorder 6 213478 -NCIT:C7247 Anaplastic Lymphoma Post-Transplant Lymphoproliferative Disorder 7 213479 -NCIT:C7248 Centroblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 7 213480 -NCIT:C7249 Immunoblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 7 213481 -NCIT:C7933 Grade III Lymphomatoid Granulomatosis 6 213482 -NCIT:C115150 Adult Grade III Lymphomatoid Granulomatosis 7 213483 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 8 213484 -NCIT:C115204 Childhood Grade III Lymphomatoid Granulomatosis 7 213485 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 8 213486 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 7 213487 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 8 213488 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 8 213489 -NCIT:C8868 B Lymphoblastic Lymphoma 6 213490 -NCIT:C141250 B Lymphoblastic Lymphoma by Ann Arbor Stage 7 213491 -NCIT:C8871 Ann Arbor Stage I B Lymphoblastic Lymphoma 8 213492 -NCIT:C8872 Ann Arbor Stage III B Lymphoblastic Lymphoma 8 213493 -NCIT:C8873 Ann Arbor Stage IV B Lymphoblastic Lymphoma 8 213494 -NCIT:C8937 Ann Arbor Stage II B Lymphoblastic Lymphoma 8 213495 -NCIT:C7209 Childhood B Lymphoblastic Lymphoma 7 213496 -NCIT:C7310 Splenic B Lymphoblastic Lymphoma 7 213497 -NCIT:C7338 Adult B Lymphoblastic Lymphoma 7 213498 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 7 213499 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 7 213500 -NCIT:C7056 Mature B-Cell Non-Hodgkin Lymphoma 5 213501 -NCIT:C131911 Burkitt-Like Lymphoma with 11q Aberration 6 213502 -NCIT:C133494 Large B-Cell Lymphoma with IRF4 Rearrangement 6 213503 -NCIT:C188458 Childhood Large B-Cell Lymphoma with IRF4 Rearrangement 7 213504 -NCIT:C139681 Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 6 213505 -NCIT:C160232 Recurrent Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 7 213506 -NCIT:C160240 Refractory Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 7 213507 -NCIT:C165799 Recurrent Mature B-Cell Non-Hodgkin Lymphoma 6 213508 -NCIT:C158149 Recurrent Transformed B-Cell Non-Hodgkin Lymphoma 7 213509 -NCIT:C160232 Recurrent Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 8 213510 -NCIT:C186483 Recurrent Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 8 213511 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 9 213512 -NCIT:C5007 Recurrent Follicular Lymphoma 7 213513 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 8 213514 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 8 213515 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 8 213516 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 9 213517 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 9 213518 -NCIT:C5008 Recurrent Burkitt Lymphoma 7 213519 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 8 213520 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 8 213521 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 7 213522 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 8 213523 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 213524 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 8 213525 -NCIT:C8154 Recurrent Small Lymphocytic Lymphoma 7 213526 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 7 213527 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 7 213528 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 8 213529 -NCIT:C8852 Recurrent Diffuse Large B-Cell Lymphoma 7 213530 -NCIT:C138015 Recurrent Extranodal Diffuse Large B-cell Lymphoma 8 213531 -NCIT:C138025 Recurrent Intravascular Large B-Cell Lymphoma 8 213532 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 8 213533 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 213534 -NCIT:C156696 Recurrent T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 8 213535 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 213536 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 213537 -NCIT:C157679 Recurrent Primary Effusion Lymphoma 8 213538 -NCIT:C157683 Recurrent Plasmablastic Lymphoma 8 213539 -NCIT:C160229 Recurrent High Grade B-Cell Lymphoma 8 213540 -NCIT:C151980 Recurrent High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 9 213541 -NCIT:C162451 Recurrent High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 9 213542 -NCIT:C188788 Recurrent High Grade B-Cell Lymphoma, Not Otherwise Specified 9 213543 -NCIT:C165240 Recurrent Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 213544 -NCIT:C160230 Recurrent Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 9 213545 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 9 213546 -NCIT:C182035 Recurrent Immunoblastic Lymphoma 9 213547 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 10 213548 -NCIT:C8926 Recurrent Centroblastic Lymphoma 9 213549 -NCIT:C183140 Recurrent Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 8 213550 -NCIT:C188790 Recurrent ALK-Positive Large B-Cell Lymphoma 8 213551 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 8 213552 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 9 213553 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 9 213554 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 213555 -NCIT:C171299 Indolent B-Cell Non-Hodgkin Lymphoma 6 213556 -NCIT:C175451 Primary Uveal Non-Hodgkin Lymphoma 7 213557 -NCIT:C175464 Primary Choroidal Non-Hodgkin Lymphoma 8 213558 -NCIT:C175466 Primary Ciliary Body Non-Hodgkin Lymphoma 8 213559 -NCIT:C175467 Primary Iris Non-Hodgkin Lymphoma 8 213560 -NCIT:C3212 Lymphoplasmacytic Lymphoma 7 213561 -NCIT:C141256 Lymphoplasmacytic Lymphoma by Ann Arbor Stage 8 213562 -NCIT:C8653 Ann Arbor Stage I Lymphoplasmacytic Lymphoma 9 213563 -NCIT:C8654 Ann Arbor Stage II Lymphoplasmacytic Lymphoma 9 213564 -NCIT:C8655 Ann Arbor Stage III Lymphoplasmacytic Lymphoma 9 213565 -NCIT:C8656 Ann Arbor Stage IV Lymphoplasmacytic Lymphoma 9 213566 -NCIT:C7305 Splenic Lymphoplasmacytic Lymphoma 8 213567 -NCIT:C80307 Waldenstrom Macroglobulinemia 8 213568 -NCIT:C115212 Familial Waldenstrom Macroglobulinemia 9 213569 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 9 213570 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 9 213571 -NCIT:C155910 Smoldering Waldenstrom Macroglobulinemia 9 213572 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 8 213573 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 9 213574 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 8 213575 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 9 213576 -NCIT:C3465 Grade 1 Follicular Lymphoma 7 213577 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 8 213578 -NCIT:C7220 Grade 1 Cutaneous Follicular Lymphoma 8 213579 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 8 213580 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 8 213581 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 9 213582 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 9 213583 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 8 213584 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 8 213585 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 8 213586 -NCIT:C37203 Small Lymphocytic Lymphoma with Immunoglobulin Heavy Chain Variable-Region Gene Somatic Hypermutation 7 213587 -NCIT:C4341 Marginal Zone Lymphoma 7 213588 -NCIT:C141258 Marginal Zone Lymphoma by Ann Arbor Stage 8 213589 -NCIT:C141260 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue by Ann Arbor Stage 9 213590 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 213591 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 213592 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 213593 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 213594 -NCIT:C141261 Nodal Marginal Zone Lymphoma by Ann Arbor Stage 9 213595 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 10 213596 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 10 213597 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 10 213598 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 10 213599 -NCIT:C68678 Ann Arbor Stage I Marginal Zone Lymphoma 9 213600 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 213601 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 10 213602 -NCIT:C68679 Ann Arbor Stage II Marginal Zone Lymphoma 9 213603 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 213604 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 10 213605 -NCIT:C68682 Ann Arbor Stage III Marginal Zone Lymphoma 9 213606 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 213607 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 10 213608 -NCIT:C68683 Ann Arbor Stage IV Marginal Zone Lymphoma 9 213609 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 213610 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 10 213611 -NCIT:C143085 Refractory Marginal Zone Lymphoma 8 213612 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 9 213613 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 213614 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 9 213615 -NCIT:C172360 Advanced Marginal Zone Lymphoma 8 213616 -NCIT:C3898 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 213617 -NCIT:C123394 Childhood Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 213618 -NCIT:C141260 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue by Ann Arbor Stage 9 213619 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 213620 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 213621 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 213622 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 213623 -NCIT:C172844 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue Involving the Digestive System 9 213624 -NCIT:C5266 Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 10 213625 -NCIT:C27763 Helicobacter Pylori-Associated Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 11 213626 -NCIT:C5635 Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 10 213627 -NCIT:C45166 Campylobacter Jejuni-Associated Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 11 213628 -NCIT:C5768 Liver Mucosa-Associated Lymphoid Tissue Lymphoma 10 213629 -NCIT:C95626 Esophageal Mucosa-Associated Lymphoid Tissue Lymphoma 10 213630 -NCIT:C96506 Colorectal Mucosa-Associated Lymphoid Tissue Lymphoma 10 213631 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 11 213632 -NCIT:C173693 Salivary Gland Mucosa-Associated Lymphoid Tissue Lymphoma 9 213633 -NCIT:C35687 Parotid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 10 213634 -NCIT:C181910 Endometrial Mucosa-Associated Lymphoid Tissue Lymphoma 9 213635 -NCIT:C35688 Breast Mucosa-Associated Lymphoid Tissue Lymphoma 9 213636 -NCIT:C35689 Ocular Adnexal Mucosa-Associated Lymphoid Tissue Lymphoma 9 213637 -NCIT:C175431 Conjunctival Mucosa-Associated Lymphoid Tissue Lymphoma 10 213638 -NCIT:C175482 Lacrimal System Mucosa-Associated Lymphoid Tissue Lymphoma 10 213639 -NCIT:C175483 Lacrimal Gland Mucosa-Associated Lymphoid Tissue Lymphoma 11 213640 -NCIT:C175484 Lacrimal Drainage System Mucosa-Associated Lymphoid Tissue Lymphoma 11 213641 -NCIT:C182357 Diffusion Restriction 10 213642 -NCIT:C44960 Chlamydia Psittaci-Associated Ocular Adnexal Mucosa-Associated Lymphoid Tissue Lymphoma 10 213643 -NCIT:C39878 Bladder Mucosa-Associated Lymphoid Tissue Lymphoma 9 213644 -NCIT:C45380 Thymic Mucosa-Associated Lymphoid Tissue Lymphoma 9 213645 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 213646 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 213647 -NCIT:C5264 Lung Mucosa-Associated Lymphoid Tissue Lymphoma 9 213648 -NCIT:C7230 Primary Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 213649 -NCIT:C45163 Borrelia Burgdoferi-Associated Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 213650 -NCIT:C7601 Thyroid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 9 213651 -NCIT:C95991 Dural Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 213652 -NCIT:C4663 Splenic Marginal Zone Lymphoma 8 213653 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 9 213654 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 9 213655 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 8 213656 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 9 213657 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 213658 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 9 213659 -NCIT:C8863 Nodal Marginal Zone Lymphoma 8 213660 -NCIT:C141261 Nodal Marginal Zone Lymphoma by Ann Arbor Stage 9 213661 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 10 213662 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 10 213663 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 10 213664 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 10 213665 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 9 213666 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 9 213667 -NCIT:C80299 Pediatric Nodal Marginal Zone Lymphoma 9 213668 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 7 213669 -NCIT:C7264 Diffuse Follicular Lymphoma 7 213670 -NCIT:C7194 Grade 2 Diffuse Follicular Lymphoma 8 213671 -NCIT:C9464 Grade 1 Diffuse Follicular Lymphoma 8 213672 -NCIT:C8968 Grade 2 Follicular Lymphoma 7 213673 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 8 213674 -NCIT:C7219 Grade 2 Cutaneous Follicular Lymphoma 8 213675 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 8 213676 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 8 213677 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 9 213678 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 9 213679 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 8 213680 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 8 213681 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 8 213682 -NCIT:C179717 Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 6 213683 -NCIT:C156699 Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 7 213684 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 8 213685 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 8 213686 -NCIT:C157625 Transformed Small Lymphocytic Lymphoma to Diffuse Large B-Cell Lymphoma 7 213687 -NCIT:C185134 Transformed Lymphoplasmacytic Lymphoma to Diffuse Large B-Cell Lymphoma 7 213688 -NCIT:C185135 Transformed Waldenstrom Macroglobulinemia to Diffuse Large B-Cell Lymphoma 8 213689 -NCIT:C186483 Recurrent Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 7 213690 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 8 213691 -NCIT:C186484 Refractory Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 7 213692 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 8 213693 -NCIT:C2912 Burkitt Lymphoma 6 213694 -NCIT:C141253 Burkitt Lymphoma by Ann Arbor Stage 7 213695 -NCIT:C5084 Ann Arbor Stage IV Burkitt Lymphoma 8 213696 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 9 213697 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 9 213698 -NCIT:C8848 Ann Arbor Stage I Burkitt Lymphoma 8 213699 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 9 213700 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 9 213701 -NCIT:C8849 Ann Arbor Stage II Burkitt Lymphoma 8 213702 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 9 213703 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 10 213704 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 10 213705 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 9 213706 -NCIT:C8850 Ann Arbor Stage III Burkitt Lymphoma 8 213707 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 9 213708 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 9 213709 -NCIT:C168651 Cutaneous Burkitt Lymphoma 7 213710 -NCIT:C188075 Kidney Burkitt Lymphoma 7 213711 -NCIT:C27409 Small Intestinal Burkitt Lymphoma 7 213712 -NCIT:C27410 Small Intestinal Atypical Burkitt/Burkitt-Like Lymphoma 8 213713 -NCIT:C27694 EBV-Related Burkitt Lymphoma 7 213714 -NCIT:C27122 Endemic Burkitt Lymphoma 8 213715 -NCIT:C27914 Sporadic Burkitt Lymphoma 7 213716 -NCIT:C27915 Immunodeficiency-Related Burkitt Lymphoma 7 213717 -NCIT:C7244 Burkitt Lymphoma Post-Transplant Lymphoproliferative Disorder 8 213718 -NCIT:C7245 Burkitt-Like Lymphoma Post-Transplant Lymphoproliferative Disorder 9 213719 -NCIT:C7255 Methotrexate-Related Burkitt Lymphoma 8 213720 -NCIT:C8286 AIDS-Related Burkitt Lymphoma 8 213721 -NCIT:C27857 AIDS-Related Burkitt Lymphoma with Plasmacytoid Differentiation 9 213722 -NCIT:C40376 Breast Burkitt Lymphoma 7 213723 -NCIT:C5008 Recurrent Burkitt Lymphoma 7 213724 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 8 213725 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 8 213726 -NCIT:C5251 Gastric Burkitt Lymphoma 7 213727 -NCIT:C6917 Atypical Burkitt/Burkitt-Like Lymphoma 7 213728 -NCIT:C27410 Small Intestinal Atypical Burkitt/Burkitt-Like Lymphoma 8 213729 -NCIT:C7245 Burkitt-Like Lymphoma Post-Transplant Lymphoproliferative Disorder 8 213730 -NCIT:C7188 Classical Burkitt Lymphoma 7 213731 -NCIT:C7189 Burkitt Lymphoma with Plasmacytoid Differentiation 7 213732 -NCIT:C27857 AIDS-Related Burkitt Lymphoma with Plasmacytoid Differentiation 8 213733 -NCIT:C7309 Splenic Burkitt Lymphoma 7 213734 -NCIT:C8847 Refractory Burkitt Lymphoma 7 213735 -NCIT:C9062 Adult Burkitt Lymphoma 7 213736 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 8 213737 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 8 213738 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 9 213739 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 9 213740 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 8 213741 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 8 213742 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 8 213743 -NCIT:C9095 Childhood Burkitt Lymphoma 7 213744 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 8 213745 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 8 213746 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 8 213747 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 8 213748 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 8 213749 -NCIT:C96502 Colorectal Burkitt Lymphoma 7 213750 -NCIT:C27465 Colon Burkitt Lymphoma 8 213751 -NCIT:C3082 Heavy Chain Disease 6 213752 -NCIT:C3083 Gamma Heavy Chain Disease 7 213753 -NCIT:C3132 Alpha Heavy Chain Disease 7 213754 -NCIT:C3892 Mu Heavy Chain Disease 7 213755 -NCIT:C3209 Follicular Lymphoma 6 213756 -NCIT:C138185 Duodenal-Type Follicular Lymphoma 7 213757 -NCIT:C138186 Predominantly Diffuse Follicular Lymphoma with 1p36 Deletion 7 213758 -NCIT:C141255 Follicular Lymphoma by Ann Arbor Stage 7 213759 -NCIT:C5006 Ann Arbor Stage IV Follicular Lymphoma 8 213760 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 9 213761 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 9 213762 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 9 213763 -NCIT:C8859 Ann Arbor Stage I Follicular Lymphoma 8 213764 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 9 213765 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 9 213766 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 9 213767 -NCIT:C8860 Ann Arbor Stage II Follicular Lymphoma 8 213768 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 9 213769 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 10 213770 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 10 213771 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 9 213772 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 10 213773 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 10 213774 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 9 213775 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 10 213776 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 10 213777 -NCIT:C8861 Ann Arbor Stage III Follicular Lymphoma 8 213778 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 9 213779 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 9 213780 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 9 213781 -NCIT:C150589 Testicular Follicular Lymphoma 7 213782 -NCIT:C156410 Thyroid Gland Follicular Lymphoma 7 213783 -NCIT:C161603 Prostate Follicular Lymphoma 7 213784 -NCIT:C172359 Advanced Follicular Lymphoma 7 213785 -NCIT:C173715 Salivary Gland Follicular Lymphoma 7 213786 -NCIT:C173716 Parotid Gland Follicular Lymphoma 8 213787 -NCIT:C175430 Conjunctival Follicular Lymphoma 7 213788 -NCIT:C175488 Lacrimal Gland Follicular Lymphoma 7 213789 -NCIT:C181211 Lung Follicular Lymphoma 7 213790 -NCIT:C3460 Grade 3 Follicular Lymphoma 7 213791 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 8 213792 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 9 213793 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 9 213794 -NCIT:C6859 Grade 3 Cutaneous Follicular Lymphoma 8 213795 -NCIT:C7191 Grade 3a Follicular Lymphoma 8 213796 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 9 213797 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 9 213798 -NCIT:C7192 Grade 3b Follicular Lymphoma 8 213799 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 9 213800 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 9 213801 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 8 213802 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 8 213803 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 9 213804 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 9 213805 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 8 213806 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 8 213807 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 8 213808 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 9 213809 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 9 213810 -NCIT:C3465 Grade 1 Follicular Lymphoma 7 213811 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 8 213812 -NCIT:C7220 Grade 1 Cutaneous Follicular Lymphoma 8 213813 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 8 213814 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 8 213815 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 9 213816 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 9 213817 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 8 213818 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 8 213819 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 8 213820 -NCIT:C37209 Diffuse Blastoid B-Cell Lymphoma 7 213821 -NCIT:C40377 Breast Follicular Lymphoma 7 213822 -NCIT:C5007 Recurrent Follicular Lymphoma 7 213823 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 8 213824 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 8 213825 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 8 213826 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 9 213827 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 9 213828 -NCIT:C7218 Cutaneous Follicular Lymphoma 7 213829 -NCIT:C6859 Grade 3 Cutaneous Follicular Lymphoma 8 213830 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 8 213831 -NCIT:C7219 Grade 2 Cutaneous Follicular Lymphoma 8 213832 -NCIT:C7220 Grade 1 Cutaneous Follicular Lymphoma 8 213833 -NCIT:C7254 Methotrexate-Associated Follicular Lymphoma 7 213834 -NCIT:C7264 Diffuse Follicular Lymphoma 7 213835 -NCIT:C7194 Grade 2 Diffuse Follicular Lymphoma 8 213836 -NCIT:C9464 Grade 1 Diffuse Follicular Lymphoma 8 213837 -NCIT:C7307 Splenic Follicular Lymphoma 7 213838 -NCIT:C80297 Pediatric-Type Follicular Lymphoma 7 213839 -NCIT:C80298 Intestinal Follicular Lymphoma 7 213840 -NCIT:C96056 Small Intestinal Follicular Lymphoma 8 213841 -NCIT:C8858 Refractory Follicular Lymphoma 7 213842 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 8 213843 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 8 213844 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 8 213845 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 9 213846 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 9 213847 -NCIT:C8968 Grade 2 Follicular Lymphoma 7 213848 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 8 213849 -NCIT:C7219 Grade 2 Cutaneous Follicular Lymphoma 8 213850 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 8 213851 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 8 213852 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 9 213853 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 9 213854 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 8 213855 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 8 213856 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 8 213857 -NCIT:C4337 Mantle Cell Lymphoma 6 213858 -NCIT:C141257 Mantle Cell Lymphoma by Ann Arbor Stage 7 213859 -NCIT:C8465 Ann Arbor Stage I Mantle Cell Lymphoma 8 213860 -NCIT:C8483 Ann Arbor Stage III Mantle Cell Lymphoma 8 213861 -NCIT:C8486 Ann Arbor Stage IV Mantle Cell Lymphoma 8 213862 -NCIT:C9202 Ann Arbor Stage II Mantle Cell Lymphoma 8 213863 -NCIT:C8473 Ann Arbor Stage II Contiguous Mantle Cell Lymphoma 9 213864 -NCIT:C9198 Ann Arbor Stage II Non-Contiguous Mantle Cell Lymphoma 9 213865 -NCIT:C161604 Prostate Mantle Cell Lymphoma 7 213866 -NCIT:C181210 Parotid Gland Mantle Cell Lymphoma 7 213867 -NCIT:C188080 Tonsillar Mantle Cell Lymphoma 7 213868 -NCIT:C27440 Gastric Mantle Cell Lymphoma 7 213869 -NCIT:C27441 Small Intestinal Mantle Cell Lymphoma 7 213870 -NCIT:C39747 Pleomorphic Variant Mantle Cell Lymphoma 7 213871 -NCIT:C45266 Cutaneous Mantle Cell Lymphoma 7 213872 -NCIT:C7229 Blastoid Variant Mantle Cell Lymphoma 7 213873 -NCIT:C7306 Splenic Mantle Cell Lymphoma 7 213874 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 7 213875 -NCIT:C8862 Refractory Mantle Cell Lymphoma 7 213876 -NCIT:C96505 Colorectal Mantle Cell Lymphoma 7 213877 -NCIT:C27411 Colon Mantle Cell Lymphoma 8 213878 -NCIT:C6858 Primary Cutaneous B-Cell Non-Hodgkin Lymphoma 6 213879 -NCIT:C45193 Primary Cutaneous Diffuse Large B-Cell Lymphoma 7 213880 -NCIT:C45194 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 8 213881 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 213882 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 213883 -NCIT:C45213 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Other 8 213884 -NCIT:C45214 Primary Cutaneous Intravascular Large B-Cell Lymphoma 9 213885 -NCIT:C45215 Primary Cutaneous T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 9 213886 -NCIT:C45216 Primary Cutaneous Plasmablastic Lymphoma 9 213887 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 7 213888 -NCIT:C7230 Primary Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 7 213889 -NCIT:C45163 Borrelia Burgdoferi-Associated Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 213890 -NCIT:C7228 Refractory Mature B-Cell Non-Hodgkin Lymphoma 6 213891 -NCIT:C143085 Refractory Marginal Zone Lymphoma 7 213892 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 8 213893 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 213894 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 8 213895 -NCIT:C158150 Refractory Transformed B-Cell Non-Hodgkin Lymphoma 7 213896 -NCIT:C160240 Refractory Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 8 213897 -NCIT:C186484 Refractory Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 8 213898 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 9 213899 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 7 213900 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 8 213901 -NCIT:C8846 Refractory Small Lymphocytic Lymphoma 7 213902 -NCIT:C8847 Refractory Burkitt Lymphoma 7 213903 -NCIT:C8853 Refractory Diffuse Large B-Cell Lymphoma 7 213904 -NCIT:C138018 Refractory Extranodal Diffuse Large B-cell Lymphoma 8 213905 -NCIT:C138026 Refractory Intravascular Large B-Cell Lymphoma 8 213906 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 8 213907 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 213908 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 213909 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 213910 -NCIT:C157678 Refractory T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 8 213911 -NCIT:C157680 Refractory Primary Effusion Lymphoma 8 213912 -NCIT:C157684 Refractory Plasmablastic Lymphoma 8 213913 -NCIT:C160233 Refractory High Grade B-Cell Lymphoma 8 213914 -NCIT:C151979 Refractory High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 9 213915 -NCIT:C162453 Refractory High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 9 213916 -NCIT:C188789 Refractory High Grade B-Cell Lymphoma, Not Otherwise Specified 9 213917 -NCIT:C165241 Refractory Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 213918 -NCIT:C160238 Refractory Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 9 213919 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 9 213920 -NCIT:C182034 Refractory Immunoblastic Lymphoma 9 213921 -NCIT:C8927 Refractory Centroblastic Lymphoma 9 213922 -NCIT:C183142 Refractory Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 8 213923 -NCIT:C188791 Refractory ALK-Positive Large B-Cell Lymphoma 8 213924 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 213925 -NCIT:C8858 Refractory Follicular Lymphoma 7 213926 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 8 213927 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 8 213928 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 8 213929 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 9 213930 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 9 213931 -NCIT:C8862 Refractory Mantle Cell Lymphoma 7 213932 -NCIT:C7540 Small Lymphocytic Lymphoma 6 213933 -NCIT:C141259 Small Lymphocytic Lymphoma by Ann Arbor Stage 7 213934 -NCIT:C8070 Ann Arbor Stage I Small Lymphocytic Lymphoma 8 213935 -NCIT:C8115 Ann Arbor Stage II Small Lymphocytic Lymphoma 8 213936 -NCIT:C8128 Ann Arbor Stage III Small Lymphocytic Lymphoma 8 213937 -NCIT:C8141 Ann Arbor Stage IV Small Lymphocytic Lymphoma 8 213938 -NCIT:C161605 Prostate Small Lymphocytic Lymphoma 7 213939 -NCIT:C36273 Small Lymphocytic Lymphoma with Plasmacytoid Differentiation 7 213940 -NCIT:C37203 Small Lymphocytic Lymphoma with Immunoglobulin Heavy Chain Variable-Region Gene Somatic Hypermutation 7 213941 -NCIT:C37206 Small Lymphocytic Lymphoma with Unmutated Immunoglobulin Heavy Chain Variable-Region Gene 7 213942 -NCIT:C7304 Splenic Small Lymphocytic Lymphoma 7 213943 -NCIT:C8154 Recurrent Small Lymphocytic Lymphoma 7 213944 -NCIT:C8846 Refractory Small Lymphocytic Lymphoma 7 213945 -NCIT:C80309 Splenic Diffuse Red Pulp Small B-Cell Lymphoma 6 213946 -NCIT:C8851 Diffuse Large B-Cell Lymphoma 6 213947 -NCIT:C138211 High Grade B-Cell Lymphoma 7 213948 -NCIT:C138195 High Grade B-Cell Lymphoma with MYC and BCL2 and/or BCL6 Rearrangements 8 213949 -NCIT:C125904 High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 9 213950 -NCIT:C151979 Refractory High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 10 213951 -NCIT:C151980 Recurrent High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 10 213952 -NCIT:C131913 High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 9 213953 -NCIT:C162451 Recurrent High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 10 213954 -NCIT:C162453 Refractory High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 10 213955 -NCIT:C160229 Recurrent High Grade B-Cell Lymphoma 8 213956 -NCIT:C151980 Recurrent High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 9 213957 -NCIT:C162451 Recurrent High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 9 213958 -NCIT:C188788 Recurrent High Grade B-Cell Lymphoma, Not Otherwise Specified 9 213959 -NCIT:C160233 Refractory High Grade B-Cell Lymphoma 8 213960 -NCIT:C151979 Refractory High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 9 213961 -NCIT:C162453 Refractory High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 9 213962 -NCIT:C188789 Refractory High Grade B-Cell Lymphoma, Not Otherwise Specified 9 213963 -NCIT:C80291 High Grade B-Cell Lymphoma, Not Otherwise Specified 8 213964 -NCIT:C188788 Recurrent High Grade B-Cell Lymphoma, Not Otherwise Specified 9 213965 -NCIT:C188789 Refractory High Grade B-Cell Lymphoma, Not Otherwise Specified 9 213966 -NCIT:C96057 Small Intestinal High Grade B-Cell Lymphoma, Not Otherwise Specified 9 213967 -NCIT:C96501 Colorectal High Grade B-Cell Lymphoma, Not Otherwise Specified 9 213968 -NCIT:C138320 HHV8-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 7 213969 -NCIT:C138899 Double-Expressor Lymphoma 7 213970 -NCIT:C141254 Diffuse Large B-Cell Lymphoma by Ann Arbor Stage 7 213971 -NCIT:C141262 Primary Mediastinal (Thymic) Large B-Cell Lymphoma by Ann Arbor Stage 8 213972 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 213973 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 213974 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 213975 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 213976 -NCIT:C141263 Centroblastic Lymphoma by Ann Arbor Stage 8 213977 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 9 213978 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 9 213979 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 9 213980 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 9 213981 -NCIT:C8854 Ann Arbor Stage I Diffuse Large B-Cell Lymphoma 8 213982 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 9 213983 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 213984 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 9 213985 -NCIT:C8855 Ann Arbor Stage II Diffuse Large B-Cell Lymphoma 8 213986 -NCIT:C171158 Ann Arbor Stage IIX (Bulky) Diffuse Large B-Cell Lymphoma 9 213987 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 9 213988 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 10 213989 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 10 213990 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 213991 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 9 213992 -NCIT:C8856 Ann Arbor Stage III Diffuse Large B-Cell Lymphoma 8 213993 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 9 213994 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 213995 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 9 213996 -NCIT:C8857 Ann Arbor Stage IV Diffuse Large B-Cell Lymphoma 8 213997 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 9 213998 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 213999 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 9 214000 -NCIT:C150396 Fibrin-Associated Diffuse Large B-Cell Lymphoma 7 214001 -NCIT:C183141 Cardiac Fibrin-Associated Diffuse Large B-Cell Lymphoma 8 214002 -NCIT:C161602 Prostate Diffuse Large B-Cell Lymphoma 7 214003 -NCIT:C162467 Testicular Diffuse Large B-Cell Lymphoma 7 214004 -NCIT:C171264 Advanced Diffuse Large B-Cell Lymphoma 7 214005 -NCIT:C172850 Digestive System Diffuse Large B-Cell Lymphoma 7 214006 -NCIT:C5253 Gastric Diffuse Large B-Cell Lymphoma 8 214007 -NCIT:C95625 Esophageal Diffuse Large B-Cell Lymphoma 8 214008 -NCIT:C96055 Small Intestinal Diffuse Large B-Cell Lymphoma 8 214009 -NCIT:C96057 Small Intestinal High Grade B-Cell Lymphoma, Not Otherwise Specified 9 214010 -NCIT:C96503 Colorectal Diffuse Large B-Cell Lymphoma 8 214011 -NCIT:C96501 Colorectal High Grade B-Cell Lymphoma, Not Otherwise Specified 9 214012 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 9 214013 -NCIT:C96843 Liver Diffuse Large B-Cell Lymphoma 8 214014 -NCIT:C173717 Salivary Gland Diffuse Large B-Cell Lymphoma 7 214015 -NCIT:C173719 Parotid Gland Diffuse Large B-Cell Lymphoma 8 214016 -NCIT:C173811 Primary Bone Diffuse Large B-Cell Lymphoma 7 214017 -NCIT:C175433 Conjunctival Diffuse Large B-Cell Lymphoma 7 214018 -NCIT:C175485 Lacrimal System Diffuse Large B-Cell Lymphoma 7 214019 -NCIT:C175486 Lacrimal Gland Diffuse Large B-Cell Lymphoma 8 214020 -NCIT:C175487 Lacrimal Drainage System Diffuse Large B-Cell Lymphoma 8 214021 -NCIT:C183146 Cardiac Diffuse Large B-Cell Lymphoma 7 214022 -NCIT:C183141 Cardiac Fibrin-Associated Diffuse Large B-Cell Lymphoma 8 214023 -NCIT:C188072 Tonsillar Diffuse Large B-Cell Lymphoma 7 214024 -NCIT:C188081 Nasal Cavity Diffuse Large B-Cell Lymphoma 7 214025 -NCIT:C27856 Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 7 214026 -NCIT:C27858 AIDS-Related Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 8 214027 -NCIT:C40375 Breast Diffuse Large B-Cell Lymphoma 7 214028 -NCIT:C4342 Intravascular Large B-Cell Lymphoma 7 214029 -NCIT:C129602 Central Nervous System Intravascular Large B-Cell Lymphoma 8 214030 -NCIT:C138025 Recurrent Intravascular Large B-Cell Lymphoma 8 214031 -NCIT:C138026 Refractory Intravascular Large B-Cell Lymphoma 8 214032 -NCIT:C183121 Lung Intravascular Large B-Cell Lymphoma 8 214033 -NCIT:C45214 Primary Cutaneous Intravascular Large B-Cell Lymphoma 8 214034 -NCIT:C45193 Primary Cutaneous Diffuse Large B-Cell Lymphoma 7 214035 -NCIT:C45194 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 8 214036 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 214037 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 214038 -NCIT:C45213 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Other 8 214039 -NCIT:C45214 Primary Cutaneous Intravascular Large B-Cell Lymphoma 9 214040 -NCIT:C45215 Primary Cutaneous T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 9 214041 -NCIT:C45216 Primary Cutaneous Plasmablastic Lymphoma 9 214042 -NCIT:C45605 Lung Diffuse Large B-Cell Lymphoma 7 214043 -NCIT:C183121 Lung Intravascular Large B-Cell Lymphoma 8 214044 -NCIT:C6046 Thyroid Gland Diffuse Large B-Cell Lymphoma 7 214045 -NCIT:C7263 Thyroid Gland Immunoblastic Lymphoma 8 214046 -NCIT:C6073 Paranasal Sinus Diffuse Large B-Cell Lymphoma 7 214047 -NCIT:C63533 Kidney Diffuse Large B-Cell Lymphoma 7 214048 -NCIT:C6915 Primary Effusion Lymphoma 7 214049 -NCIT:C150406 Extracavitary Primary Effusion Lymphoma 8 214050 -NCIT:C150407 Body Cavity Primary Effusion Lymphoma 8 214051 -NCIT:C183135 Pleural Primary Effusion Lymphoma 9 214052 -NCIT:C183136 Pericardial Primary Effusion Lymphoma 9 214053 -NCIT:C183137 Peritoneal Primary Effusion Lymphoma 9 214054 -NCIT:C157679 Recurrent Primary Effusion Lymphoma 8 214055 -NCIT:C157680 Refractory Primary Effusion Lymphoma 8 214056 -NCIT:C9017 AIDS-Related Primary Effusion Lymphoma 8 214057 -NCIT:C71720 Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 7 214058 -NCIT:C129602 Central Nervous System Intravascular Large B-Cell Lymphoma 8 214059 -NCIT:C155797 Pituitary Gland Diffuse Large B-Cell Lymphoma 8 214060 -NCIT:C157067 Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 214061 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 214062 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 214063 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 214064 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 214065 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 214066 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 214067 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 214068 -NCIT:C7212 AIDS-Related Diffuse Large B-cell Lymphoma 7 214069 -NCIT:C27858 AIDS-Related Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 8 214070 -NCIT:C27859 AIDS-Related Plasmablastic Lymphoma 8 214071 -NCIT:C38160 AIDS-Related Plasmablastic Lymphoma of Mucosa Site 9 214072 -NCIT:C9016 AIDS-Related Plasmablastic Lymphoma of the Oral Mucosa 10 214073 -NCIT:C8285 AIDS-Related Immunoblastic Lymphoma 8 214074 -NCIT:C9017 AIDS-Related Primary Effusion Lymphoma 8 214075 -NCIT:C7224 Plasmablastic Lymphoma 7 214076 -NCIT:C157683 Recurrent Plasmablastic Lymphoma 8 214077 -NCIT:C157684 Refractory Plasmablastic Lymphoma 8 214078 -NCIT:C27859 AIDS-Related Plasmablastic Lymphoma 8 214079 -NCIT:C38160 AIDS-Related Plasmablastic Lymphoma of Mucosa Site 9 214080 -NCIT:C9016 AIDS-Related Plasmablastic Lymphoma of the Oral Mucosa 10 214081 -NCIT:C38159 Plasmablastic Lymphoma of Mucosa Site 8 214082 -NCIT:C38160 AIDS-Related Plasmablastic Lymphoma of Mucosa Site 9 214083 -NCIT:C9016 AIDS-Related Plasmablastic Lymphoma of the Oral Mucosa 10 214084 -NCIT:C80290 Plasmablastic Lymphoma of the Oral Mucosa 9 214085 -NCIT:C9016 AIDS-Related Plasmablastic Lymphoma of the Oral Mucosa 10 214086 -NCIT:C45216 Primary Cutaneous Plasmablastic Lymphoma 8 214087 -NCIT:C7225 ALK-Positive Large B-Cell Lymphoma 7 214088 -NCIT:C188790 Recurrent ALK-Positive Large B-Cell Lymphoma 8 214089 -NCIT:C188791 Refractory ALK-Positive Large B-Cell Lymphoma 8 214090 -NCIT:C7246 Diffuse Large B-Cell Lymphoma Post-Transplant Lymphoproliferative Disorder 7 214091 -NCIT:C7247 Anaplastic Lymphoma Post-Transplant Lymphoproliferative Disorder 8 214092 -NCIT:C7248 Centroblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 8 214093 -NCIT:C7249 Immunoblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 8 214094 -NCIT:C7253 Methotrexate-Associated Diffuse Large B-Cell Lymphoma 7 214095 -NCIT:C7308 Splenic Diffuse Large B-Cell Lymphoma 7 214096 -NCIT:C7615 Adult Diffuse Large B-Cell Lymphoma 7 214097 -NCIT:C115150 Adult Grade III Lymphomatoid Granulomatosis 8 214098 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 9 214099 -NCIT:C188457 Adult EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 214100 -NCIT:C7873 Adult Immunoblastic Lymphoma 8 214101 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 9 214102 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 9 214103 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 10 214104 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 10 214105 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 9 214106 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 9 214107 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 9 214108 -NCIT:C7616 Childhood Diffuse Large B-Cell Lymphoma 7 214109 -NCIT:C115204 Childhood Grade III Lymphomatoid Granulomatosis 8 214110 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 9 214111 -NCIT:C188455 Childhood Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 214112 -NCIT:C188456 Childhood EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 214113 -NCIT:C9079 Childhood Immunoblastic Lymphoma 8 214114 -NCIT:C7933 Grade III Lymphomatoid Granulomatosis 7 214115 -NCIT:C115150 Adult Grade III Lymphomatoid Granulomatosis 8 214116 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 9 214117 -NCIT:C115204 Childhood Grade III Lymphomatoid Granulomatosis 8 214118 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 9 214119 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 8 214120 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 9 214121 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 9 214122 -NCIT:C80280 Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 7 214123 -NCIT:C148392 Diffuse Large B-Cell Lymphoma, Not Otherwise Specified Molecular Subtypes 8 214124 -NCIT:C148394 MCD Diffuse Large B-Cell Lymphoma 9 214125 -NCIT:C148395 BN2 Diffuse Large B-Cell Lymphoma 9 214126 -NCIT:C148396 N1 Diffuse Large B-Cell Lymphoma 9 214127 -NCIT:C148398 EZB Diffuse Large B-Cell Lymphoma 9 214128 -NCIT:C187445 ST2 Diffuse Large B-Cell Lymphoma 9 214129 -NCIT:C187447 A53 Diffuse Large B-Cell Lymphoma 9 214130 -NCIT:C165240 Recurrent Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 214131 -NCIT:C160230 Recurrent Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 9 214132 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 9 214133 -NCIT:C182035 Recurrent Immunoblastic Lymphoma 9 214134 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 10 214135 -NCIT:C8926 Recurrent Centroblastic Lymphoma 9 214136 -NCIT:C165241 Refractory Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 214137 -NCIT:C160238 Refractory Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 9 214138 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 9 214139 -NCIT:C182034 Refractory Immunoblastic Lymphoma 9 214140 -NCIT:C8927 Refractory Centroblastic Lymphoma 9 214141 -NCIT:C3461 Immunoblastic Lymphoma 8 214142 -NCIT:C182034 Refractory Immunoblastic Lymphoma 9 214143 -NCIT:C182035 Recurrent Immunoblastic Lymphoma 9 214144 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 10 214145 -NCIT:C7249 Immunoblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 9 214146 -NCIT:C7263 Thyroid Gland Immunoblastic Lymphoma 9 214147 -NCIT:C7873 Adult Immunoblastic Lymphoma 9 214148 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 10 214149 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 10 214150 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 11 214151 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 11 214152 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 10 214153 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 10 214154 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 10 214155 -NCIT:C8285 AIDS-Related Immunoblastic Lymphoma 9 214156 -NCIT:C9079 Childhood Immunoblastic Lymphoma 9 214157 -NCIT:C4074 Centroblastic Lymphoma 8 214158 -NCIT:C141263 Centroblastic Lymphoma by Ann Arbor Stage 9 214159 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 10 214160 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 10 214161 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 10 214162 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 10 214163 -NCIT:C7248 Centroblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 9 214164 -NCIT:C8926 Recurrent Centroblastic Lymphoma 9 214165 -NCIT:C8927 Refractory Centroblastic Lymphoma 9 214166 -NCIT:C45219 Diffuse Large B-Cell Lymphoma, Not Otherwise Specified by Gene Expression Profile 8 214167 -NCIT:C36080 Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 9 214168 -NCIT:C160230 Recurrent Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 10 214169 -NCIT:C160238 Refractory Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 10 214170 -NCIT:C36081 Diffuse Large B-Cell Lymphoma Activated B-Cell Type 9 214171 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 214172 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 214173 -NCIT:C45231 Diffuse Large B-Cell Lymphoma Unclassifiable 9 214174 -NCIT:C6916 Anaplastic Lymphoma 8 214175 -NCIT:C7247 Anaplastic Lymphoma Post-Transplant Lymphoproliferative Disorder 9 214176 -NCIT:C80281 EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 7 214177 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 214178 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 214179 -NCIT:C188456 Childhood EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 214180 -NCIT:C188457 Adult EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 214181 -NCIT:C80289 Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 7 214182 -NCIT:C183140 Recurrent Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 8 214183 -NCIT:C183142 Refractory Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 8 214184 -NCIT:C45691 Pyothorax-Associated Lymphoma 8 214185 -NCIT:C8852 Recurrent Diffuse Large B-Cell Lymphoma 7 214186 -NCIT:C138015 Recurrent Extranodal Diffuse Large B-cell Lymphoma 8 214187 -NCIT:C138025 Recurrent Intravascular Large B-Cell Lymphoma 8 214188 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 8 214189 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 214190 -NCIT:C156696 Recurrent T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 8 214191 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 214192 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 214193 -NCIT:C157679 Recurrent Primary Effusion Lymphoma 8 214194 -NCIT:C157683 Recurrent Plasmablastic Lymphoma 8 214195 -NCIT:C160229 Recurrent High Grade B-Cell Lymphoma 8 214196 -NCIT:C151980 Recurrent High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 9 214197 -NCIT:C162451 Recurrent High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 9 214198 -NCIT:C188788 Recurrent High Grade B-Cell Lymphoma, Not Otherwise Specified 9 214199 -NCIT:C165240 Recurrent Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 214200 -NCIT:C160230 Recurrent Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 9 214201 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 9 214202 -NCIT:C182035 Recurrent Immunoblastic Lymphoma 9 214203 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 10 214204 -NCIT:C8926 Recurrent Centroblastic Lymphoma 9 214205 -NCIT:C183140 Recurrent Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 8 214206 -NCIT:C188790 Recurrent ALK-Positive Large B-Cell Lymphoma 8 214207 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 8 214208 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 9 214209 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 9 214210 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 214211 -NCIT:C8853 Refractory Diffuse Large B-Cell Lymphoma 7 214212 -NCIT:C138018 Refractory Extranodal Diffuse Large B-cell Lymphoma 8 214213 -NCIT:C138026 Refractory Intravascular Large B-Cell Lymphoma 8 214214 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 8 214215 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 214216 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 214217 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 214218 -NCIT:C157678 Refractory T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 8 214219 -NCIT:C157680 Refractory Primary Effusion Lymphoma 8 214220 -NCIT:C157684 Refractory Plasmablastic Lymphoma 8 214221 -NCIT:C160233 Refractory High Grade B-Cell Lymphoma 8 214222 -NCIT:C151979 Refractory High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 9 214223 -NCIT:C162453 Refractory High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 9 214224 -NCIT:C188789 Refractory High Grade B-Cell Lymphoma, Not Otherwise Specified 9 214225 -NCIT:C165241 Refractory Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 214226 -NCIT:C160238 Refractory Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 9 214227 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 9 214228 -NCIT:C182034 Refractory Immunoblastic Lymphoma 9 214229 -NCIT:C8927 Refractory Centroblastic Lymphoma 9 214230 -NCIT:C183142 Refractory Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 8 214231 -NCIT:C188791 Refractory ALK-Positive Large B-Cell Lymphoma 8 214232 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 214233 -NCIT:C9280 Primary Mediastinal (Thymic) Large B-Cell Lymphoma 7 214234 -NCIT:C141262 Primary Mediastinal (Thymic) Large B-Cell Lymphoma by Ann Arbor Stage 8 214235 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 214236 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 214237 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 214238 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 214239 -NCIT:C188455 Childhood Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 214240 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 214241 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 214242 -NCIT:C9496 T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 7 214243 -NCIT:C156696 Recurrent T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 8 214244 -NCIT:C157678 Refractory T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 8 214245 -NCIT:C45215 Primary Cutaneous T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 8 214246 -NCIT:C8841 Recurrent B-Cell Non-Hodgkin Lymphoma 5 214247 -NCIT:C165799 Recurrent Mature B-Cell Non-Hodgkin Lymphoma 6 214248 -NCIT:C158149 Recurrent Transformed B-Cell Non-Hodgkin Lymphoma 7 214249 -NCIT:C160232 Recurrent Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 8 214250 -NCIT:C186483 Recurrent Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 8 214251 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 9 214252 -NCIT:C5007 Recurrent Follicular Lymphoma 7 214253 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 8 214254 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 8 214255 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 8 214256 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 9 214257 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 9 214258 -NCIT:C5008 Recurrent Burkitt Lymphoma 7 214259 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 8 214260 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 8 214261 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 7 214262 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 8 214263 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 214264 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 8 214265 -NCIT:C8154 Recurrent Small Lymphocytic Lymphoma 7 214266 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 7 214267 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 7 214268 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 8 214269 -NCIT:C8852 Recurrent Diffuse Large B-Cell Lymphoma 7 214270 -NCIT:C138015 Recurrent Extranodal Diffuse Large B-cell Lymphoma 8 214271 -NCIT:C138025 Recurrent Intravascular Large B-Cell Lymphoma 8 214272 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 8 214273 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 214274 -NCIT:C156696 Recurrent T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 8 214275 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 214276 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 214277 -NCIT:C157679 Recurrent Primary Effusion Lymphoma 8 214278 -NCIT:C157683 Recurrent Plasmablastic Lymphoma 8 214279 -NCIT:C160229 Recurrent High Grade B-Cell Lymphoma 8 214280 -NCIT:C151980 Recurrent High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 9 214281 -NCIT:C162451 Recurrent High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 9 214282 -NCIT:C188788 Recurrent High Grade B-Cell Lymphoma, Not Otherwise Specified 9 214283 -NCIT:C165240 Recurrent Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 214284 -NCIT:C160230 Recurrent Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 9 214285 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 9 214286 -NCIT:C182035 Recurrent Immunoblastic Lymphoma 9 214287 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 10 214288 -NCIT:C8926 Recurrent Centroblastic Lymphoma 9 214289 -NCIT:C183140 Recurrent Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 8 214290 -NCIT:C188790 Recurrent ALK-Positive Large B-Cell Lymphoma 8 214291 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 8 214292 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 9 214293 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 9 214294 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 214295 -NCIT:C178553 Recurrent Aggressive B-Cell Non-Hodgkin Lymphoma 6 214296 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 7 214297 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 7 214298 -NCIT:C5008 Recurrent Burkitt Lymphoma 7 214299 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 8 214300 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 8 214301 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 7 214302 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 8 214303 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 8 214304 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 7 214305 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 8 214306 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 8 214307 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 7 214308 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 7 214309 -NCIT:C183512 Recurrent Indolent B-Cell Non-Hodgkin Lymphoma 6 214310 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 7 214311 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 8 214312 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 214313 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 8 214314 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 7 214315 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 7 214316 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 7 214317 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 8 214318 -NCIT:C8842 Refractory B-Cell Non-Hodgkin Lymphoma 5 214319 -NCIT:C178555 Refractory Aggressive B-Cell Non-Hodgkin Lymphoma 6 214320 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 7 214321 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 7 214322 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 7 214323 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 8 214324 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 8 214325 -NCIT:C8847 Refractory Burkitt Lymphoma 7 214326 -NCIT:C8862 Refractory Mantle Cell Lymphoma 7 214327 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 7 214328 -NCIT:C183514 Refractory Indolent B-Cell Non-Hodgkin Lymphoma 6 214329 -NCIT:C143085 Refractory Marginal Zone Lymphoma 7 214330 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 8 214331 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 214332 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 8 214333 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 7 214334 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 7 214335 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 7 214336 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 8 214337 -NCIT:C7228 Refractory Mature B-Cell Non-Hodgkin Lymphoma 6 214338 -NCIT:C143085 Refractory Marginal Zone Lymphoma 7 214339 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 8 214340 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 214341 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 8 214342 -NCIT:C158150 Refractory Transformed B-Cell Non-Hodgkin Lymphoma 7 214343 -NCIT:C160240 Refractory Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 8 214344 -NCIT:C186484 Refractory Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 8 214345 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 9 214346 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 7 214347 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 8 214348 -NCIT:C8846 Refractory Small Lymphocytic Lymphoma 7 214349 -NCIT:C8847 Refractory Burkitt Lymphoma 7 214350 -NCIT:C8853 Refractory Diffuse Large B-Cell Lymphoma 7 214351 -NCIT:C138018 Refractory Extranodal Diffuse Large B-cell Lymphoma 8 214352 -NCIT:C138026 Refractory Intravascular Large B-Cell Lymphoma 8 214353 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 8 214354 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 214355 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 214356 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 214357 -NCIT:C157678 Refractory T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 8 214358 -NCIT:C157680 Refractory Primary Effusion Lymphoma 8 214359 -NCIT:C157684 Refractory Plasmablastic Lymphoma 8 214360 -NCIT:C160233 Refractory High Grade B-Cell Lymphoma 8 214361 -NCIT:C151979 Refractory High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 9 214362 -NCIT:C162453 Refractory High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 9 214363 -NCIT:C188789 Refractory High Grade B-Cell Lymphoma, Not Otherwise Specified 9 214364 -NCIT:C165241 Refractory Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 214365 -NCIT:C160238 Refractory Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 9 214366 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 9 214367 -NCIT:C182034 Refractory Immunoblastic Lymphoma 9 214368 -NCIT:C8927 Refractory Centroblastic Lymphoma 9 214369 -NCIT:C183142 Refractory Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 8 214370 -NCIT:C188791 Refractory ALK-Positive Large B-Cell Lymphoma 8 214371 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 214372 -NCIT:C8858 Refractory Follicular Lymphoma 7 214373 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 8 214374 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 8 214375 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 8 214376 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 9 214377 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 9 214378 -NCIT:C8862 Refractory Mantle Cell Lymphoma 7 214379 -NCIT:C96053 Small Intestinal B-Cell Non-Hodgkin Lymphoma 5 214380 -NCIT:C27409 Small Intestinal Burkitt Lymphoma 6 214381 -NCIT:C27410 Small Intestinal Atypical Burkitt/Burkitt-Like Lymphoma 7 214382 -NCIT:C27441 Small Intestinal Mantle Cell Lymphoma 6 214383 -NCIT:C3132 Alpha Heavy Chain Disease 6 214384 -NCIT:C5635 Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 6 214385 -NCIT:C45166 Campylobacter Jejuni-Associated Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 7 214386 -NCIT:C96055 Small Intestinal Diffuse Large B-Cell Lymphoma 6 214387 -NCIT:C96057 Small Intestinal High Grade B-Cell Lymphoma, Not Otherwise Specified 7 214388 -NCIT:C96056 Small Intestinal Follicular Lymphoma 6 214389 -NCIT:C4753 B-Cell Prolymphocytic Leukemia 4 214390 -NCIT:C157697 Refractory B-Cell Prolymphocytic Leukemia 5 214391 -NCIT:C158081 Recurrent B-Cell Prolymphocytic Leukemia 5 214392 -NCIT:C7299 Splenic Manifestation of B-Cell Prolymphocytic Leukemia 5 214393 -NCIT:C7237 Monomorphic B-Cell Post-Transplant Lymphoproliferative Disorder 4 214394 -NCIT:C7240 Plasma Cell Post-Transplant Lymphoproliferative Disorder 5 214395 -NCIT:C7241 Plasmacytoma-Like Post-Transplant Lymphoproliferative Disorder 6 214396 -NCIT:C7242 Plasma Cell Myeloma Post-Transplant Lymphoproliferative Disorder 6 214397 -NCIT:C7244 Burkitt Lymphoma Post-Transplant Lymphoproliferative Disorder 5 214398 -NCIT:C7245 Burkitt-Like Lymphoma Post-Transplant Lymphoproliferative Disorder 6 214399 -NCIT:C7246 Diffuse Large B-Cell Lymphoma Post-Transplant Lymphoproliferative Disorder 5 214400 -NCIT:C7247 Anaplastic Lymphoma Post-Transplant Lymphoproliferative Disorder 6 214401 -NCIT:C7248 Centroblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 6 214402 -NCIT:C7249 Immunoblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 6 214403 -NCIT:C7400 Burkitt Leukemia 4 214404 -NCIT:C151976 Recurrent Burkitt Leukemia 5 214405 -NCIT:C151977 Refractory Burkitt Leukemia 5 214406 -NCIT:C7952 Childhood Burkitt Leukemia 5 214407 -NCIT:C7954 Adult Burkitt Leukemia 5 214408 -NCIT:C7402 Hairy Cell Leukemia 4 214409 -NCIT:C142882 Recurrent Hairy Cell Leukemia 5 214410 -NCIT:C7301 Splenic Manifestation of Hairy Cell Leukemia 5 214411 -NCIT:C8029 Progressive Hairy Cell Leukemia Initial Treatment 5 214412 -NCIT:C8030 Refractory Hairy Cell Leukemia 5 214413 -NCIT:C80308 Splenic B-Cell Lymphoma/Leukemia, Unclassifiable 4 214414 -NCIT:C7401 Hairy Cell Leukemia Variant 5 214415 -NCIT:C171064 Refractory Hairy Cell Leukemia Variant 6 214416 -NCIT:C171065 Recurrent Hairy Cell Leukemia Variant 6 214417 -NCIT:C80309 Splenic Diffuse Red Pulp Small B-Cell Lymphoma 5 214418 -NCIT:C8936 B Lymphoblastic Leukemia/Lymphoma 4 214419 -NCIT:C188453 Childhood B Lymphoblastic Leukemia/Lymphoma 5 214420 -NCIT:C7209 Childhood B Lymphoblastic Lymphoma 6 214421 -NCIT:C9140 Childhood B Acute Lymphoblastic Leukemia 6 214422 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 7 214423 -NCIT:C45241 Cutaneous B Lymphoblastic Leukemia/Lymphoma 5 214424 -NCIT:C80326 B Lymphoblastic Leukemia/Lymphoma, Not Otherwise Specified 5 214425 -NCIT:C80328 B Lymphoblastic Leukemia/Lymphoma with Recurrent Genetic Abnormalities 5 214426 -NCIT:C129787 B Lymphoblastic Leukemia/Lymphoma with BCR-ABL1-Like Features 6 214427 -NCIT:C121974 B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 7 214428 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 214429 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 214430 -NCIT:C130039 B-Lymphoblastic Leukemia/Lymphoma with Intrachromosomal Amplification of Chromosome 21 6 214431 -NCIT:C130040 B Acute Lymphoblastic Leukemia with Intrachromosomal Amplification of Chromosome 21 7 214432 -NCIT:C190956 B Lymphoblastic Leukemia/Lymphoma with ETV6-RUNX1-Like Features 6 214433 -NCIT:C190957 B Acute Lymphoblastic Leukemia with ETV6-RUNX1-Like Features 7 214434 -NCIT:C80331 B Lymphoblastic Leukemia/Lymphoma with t(9;22)(q34.1;q11.2); BCR-ABL1 6 214435 -NCIT:C36312 B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 7 214436 -NCIT:C114819 Adult B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 214437 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 214438 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 214439 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 214440 -NCIT:C80332 B Lymphoblastic Leukemia/Lymphoma with t(v;11q23.3); MLL Rearranged 6 214441 -NCIT:C80342 B Acute Lymphoblastic Leukemia with t(v;11q23.3); MLL Rearranged 7 214442 -NCIT:C80334 B Lymphoblastic Leukemia/Lymphoma with t(12;21)(p13.2;q22.1); ETV6-RUNX1 6 214443 -NCIT:C80343 B Acute Lymphoblastic Leukemia with t(12;21)(p13.2;q22.1); ETV6-RUNX1 7 214444 -NCIT:C80335 B Lymphoblastic Leukemia/Lymphoma with Hyperdiploidy 6 214445 -NCIT:C80344 Hyperdiploid B Acute Lymphoblastic Leukemia 7 214446 -NCIT:C80338 B Lymphoblastic Leukemia/Lymphoma with Hypodiploidy 6 214447 -NCIT:C80345 Hypodiploid B Acute Lymphoblastic Leukemia 7 214448 -NCIT:C80340 B Lymphoblastic Leukemia/Lymphoma with t(5;14)(q31.1;q32.3); IL3-IGH 6 214449 -NCIT:C80346 B Acute Lymphoblastic Leukemia with t(5;14)(q31.1;q32.3); IL3-IGH 7 214450 -NCIT:C80341 B Lymphoblastic Leukemia/Lymphoma with t(1;19)(q23;p13.3); E2A-PBX1 (TCF3-PBX1) 6 214451 -NCIT:C80347 B Acute Lymphoblastic Leukemia with t(1;19)(q23;p13.3); E2A-PBX1 (TCF3-PBX1) 7 214452 -NCIT:C8644 B Acute Lymphoblastic Leukemia 5 214453 -NCIT:C121974 B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 6 214454 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 7 214455 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 7 214456 -NCIT:C128629 B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 6 214457 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 7 214458 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 7 214459 -NCIT:C130040 B Acute Lymphoblastic Leukemia with Intrachromosomal Amplification of Chromosome 21 6 214460 -NCIT:C142811 Recurrent B Acute Lymphoblastic Leukemia 6 214461 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 7 214462 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 7 214463 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 7 214464 -NCIT:C142812 Refractory B Acute Lymphoblastic Leukemia 6 214465 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 7 214466 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 7 214467 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 7 214468 -NCIT:C162776 B Acute Lymphoblastic Leukemia with t(4;11)(q21;23) 6 214469 -NCIT:C190847 B Acute Lymphoblastic Leukemia Associated with Down Syndrome 6 214470 -NCIT:C190957 B Acute Lymphoblastic Leukemia with ETV6-RUNX1-Like Features 6 214471 -NCIT:C36312 B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 6 214472 -NCIT:C114819 Adult B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 7 214473 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 7 214474 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 7 214475 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 7 214476 -NCIT:C80342 B Acute Lymphoblastic Leukemia with t(v;11q23.3); MLL Rearranged 6 214477 -NCIT:C80343 B Acute Lymphoblastic Leukemia with t(12;21)(p13.2;q22.1); ETV6-RUNX1 6 214478 -NCIT:C80344 Hyperdiploid B Acute Lymphoblastic Leukemia 6 214479 -NCIT:C80345 Hypodiploid B Acute Lymphoblastic Leukemia 6 214480 -NCIT:C80346 B Acute Lymphoblastic Leukemia with t(5;14)(q31.1;q32.3); IL3-IGH 6 214481 -NCIT:C80347 B Acute Lymphoblastic Leukemia with t(1;19)(q23;p13.3); E2A-PBX1 (TCF3-PBX1) 6 214482 -NCIT:C9140 Childhood B Acute Lymphoblastic Leukemia 6 214483 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 7 214484 -NCIT:C9143 Adult B Acute Lymphoblastic Leukemia 6 214485 -NCIT:C114819 Adult B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 7 214486 -NCIT:C8868 B Lymphoblastic Lymphoma 5 214487 -NCIT:C141250 B Lymphoblastic Lymphoma by Ann Arbor Stage 6 214488 -NCIT:C8871 Ann Arbor Stage I B Lymphoblastic Lymphoma 7 214489 -NCIT:C8872 Ann Arbor Stage III B Lymphoblastic Lymphoma 7 214490 -NCIT:C8873 Ann Arbor Stage IV B Lymphoblastic Lymphoma 7 214491 -NCIT:C8937 Ann Arbor Stage II B Lymphoblastic Lymphoma 7 214492 -NCIT:C7209 Childhood B Lymphoblastic Lymphoma 6 214493 -NCIT:C7310 Splenic B Lymphoblastic Lymphoma 6 214494 -NCIT:C7338 Adult B Lymphoblastic Lymphoma 6 214495 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 6 214496 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 6 214497 -NCIT:C9349 Plasmacytoma 4 214498 -NCIT:C118421 Anaplastic Plasmacytoma 5 214499 -NCIT:C4002 Extraosseous Plasmacytoma 5 214500 -NCIT:C162470 Testicular Plasmacytoma 6 214501 -NCIT:C173169 Sinonasal Plasmacytoma 6 214502 -NCIT:C185041 Splenic Plasmacytoma 6 214503 -NCIT:C185042 Liver Plasmacytoma 6 214504 -NCIT:C185043 Lung Plasmacytoma 6 214505 -NCIT:C185044 Cutaneous Plasmacytoma 6 214506 -NCIT:C6932 Solitary Plasmacytoma 5 214507 -NCIT:C6711 Chest Wall Solitary Plasmacytoma 6 214508 -NCIT:C7812 Solitary Plasmacytoma of Bone 6 214509 -NCIT:C185035 Multiple Solitary Plasmacytoma of Bone 7 214510 -NCIT:C27209 Radiation-Related Malignant Neoplasm 3 214511 -NCIT:C26814 Radiation-Related Leukemia 4 214512 -NCIT:C27776 Solar Radiation-Related Malignant Neoplasm 4 214513 -NCIT:C27920 Solar Radiation-Related Cutaneous Melanoma 5 214514 -NCIT:C27921 Solar Radiation-Related Skin Squamous Cell Carcinoma 5 214515 -NCIT:C27930 Ionizing Radiation-Related Malignant Neoplasm 4 214516 -NCIT:C93125 Radiation-Related Sarcoma 4 214517 -NCIT:C27513 Radiation-Related Angiosarcoma 5 214518 -NCIT:C27719 Skin Radiation-Related Angiosarcoma 6 214519 -NCIT:C53706 Radiation-Related Osteosarcoma 5 214520 -NCIT:C27223 Infection-Related Malignant Neoplasm 3 214521 -NCIT:C27673 Virus-Related Malignant Neoplasm 4 214522 -NCIT:C27685 HTLV-1-Related Malignant Neoplasm 5 214523 -NCIT:C3184 Adult T-Cell Leukemia/Lymphoma 6 214524 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 7 214525 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 8 214526 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 8 214527 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 8 214528 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 8 214529 -NCIT:C36265 Acute Adult T-Cell Leukemia/Lymphoma 7 214530 -NCIT:C36266 Lymphomatous Adult T-Cell Leukemia/Lymphoma 7 214531 -NCIT:C36268 Hodgkin-Like Adult T-Cell Leukemia/Lymphoma 7 214532 -NCIT:C45272 Cutaneous Adult T-Cell Leukemia/Lymphoma 7 214533 -NCIT:C7178 Smoldering Adult T-Cell Leukemia/Lymphoma 7 214534 -NCIT:C7179 Chronic Adult T-Cell Leukemia/Lymphoma 7 214535 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 7 214536 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 7 214537 -NCIT:C27689 EBV-Related Malignant Neoplasm 5 214538 -NCIT:C162305 EBV-Related Sarcoma 6 214539 -NCIT:C162306 EBV-Related Leiomyosarcoma 7 214540 -NCIT:C172847 EBV-Positive Inflammatory Follicular Dendritic Cell Sarcoma 7 214541 -NCIT:C150704 EBV-Positive Inflammatory Follicular Dendritic Cell Sarcoma of the Digestive System 8 214542 -NCIT:C27690 EBV-Related Carcinoma 6 214543 -NCIT:C162304 EBV-Related Gastric Carcinoma 7 214544 -NCIT:C7373 Nasopharyngeal Nonkeratinizing Carcinoma 7 214545 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 8 214546 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 9 214547 -NCIT:C54389 Nasopharyngeal Differentiated Carcinoma 8 214548 -NCIT:C8023 Nasopharyngeal Undifferentiated Carcinoma 8 214549 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 9 214550 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 9 214551 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 9 214552 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 9 214553 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 9 214554 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 9 214555 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 214556 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 7 214557 -NCIT:C27691 EBV-Related Lymphoma 6 214558 -NCIT:C147863 Recurrent EBV-Related Lymphoma 7 214559 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 214560 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 8 214561 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 9 214562 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 9 214563 -NCIT:C160149 Refractory EBV-Related Lymphoma 7 214564 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 214565 -NCIT:C27692 EBV-Related Hodgkin Lymphoma 7 214566 -NCIT:C7243 Classic Hodgkin Lymphoma Type Post-Transplant Lymphoproliferative Disorder 8 214567 -NCIT:C27693 EBV-Related Non-Hodgkin Lymphoma 7 214568 -NCIT:C139288 Primary EBV-Positive Nodal T-Cell or NK-Cell Lymphoma 8 214569 -NCIT:C27694 EBV-Related Burkitt Lymphoma 8 214570 -NCIT:C27122 Endemic Burkitt Lymphoma 9 214571 -NCIT:C7933 Grade III Lymphomatoid Granulomatosis 8 214572 -NCIT:C115150 Adult Grade III Lymphomatoid Granulomatosis 9 214573 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 214574 -NCIT:C115204 Childhood Grade III Lymphomatoid Granulomatosis 9 214575 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 10 214576 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 9 214577 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 214578 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 10 214579 -NCIT:C80281 EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 214580 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 214581 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 214582 -NCIT:C188456 Childhood EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 214583 -NCIT:C188457 Adult EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 214584 -NCIT:C80374 Systemic EBV-Positive T-Cell Lymphoma of Childhood 8 214585 -NCIT:C27695 EBV-Related Clonal Post-Transplant Lymphoproliferative Disorder 7 214586 -NCIT:C7239 Hodgkin-Like Post-Transplant Lymphoproliferative Disorder 8 214587 -NCIT:C7243 Classic Hodgkin Lymphoma Type Post-Transplant Lymphoproliferative Disorder 8 214588 -NCIT:C80373 EBV-Positive T-Cell Lymphoproliferative Disorder of Childhood 6 214589 -NCIT:C45327 Hydroa Vacciniforme-Like Lymphoproliferative Disorder 7 214590 -NCIT:C80374 Systemic EBV-Positive T-Cell Lymphoma of Childhood 7 214591 -NCIT:C27697 HHV8-Related Malignant Neoplasm 5 214592 -NCIT:C138320 HHV8-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 6 214593 -NCIT:C27856 Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 6 214594 -NCIT:C27858 AIDS-Related Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 7 214595 -NCIT:C6915 Primary Effusion Lymphoma 6 214596 -NCIT:C150406 Extracavitary Primary Effusion Lymphoma 7 214597 -NCIT:C150407 Body Cavity Primary Effusion Lymphoma 7 214598 -NCIT:C183135 Pleural Primary Effusion Lymphoma 8 214599 -NCIT:C183136 Pericardial Primary Effusion Lymphoma 8 214600 -NCIT:C183137 Peritoneal Primary Effusion Lymphoma 8 214601 -NCIT:C157679 Recurrent Primary Effusion Lymphoma 7 214602 -NCIT:C157680 Refractory Primary Effusion Lymphoma 7 214603 -NCIT:C9017 AIDS-Related Primary Effusion Lymphoma 7 214604 -NCIT:C9087 Kaposi Sarcoma 6 214605 -NCIT:C156474 Refractory Kaposi Sarcoma 7 214606 -NCIT:C156475 Metastatic Kaposi Sarcoma 7 214607 -NCIT:C156476 Advanced Kaposi Sarcoma 8 214608 -NCIT:C172955 Digestive System Kaposi Sarcoma 7 214609 -NCIT:C5529 Gastric Kaposi Sarcoma 8 214610 -NCIT:C5624 AIDS-Related Gastric Kaposi Sarcoma 9 214611 -NCIT:C5602 Anal Kaposi Sarcoma 8 214612 -NCIT:C5706 Esophageal Kaposi Sarcoma 8 214613 -NCIT:C5842 Gallbladder Kaposi Sarcoma 8 214614 -NCIT:C96059 Small Intestinal Kaposi Sarcoma 8 214615 -NCIT:C96434 Appendix Kaposi Sarcoma 8 214616 -NCIT:C96510 Colorectal Kaposi Sarcoma 8 214617 -NCIT:C5516 Colon Kaposi Sarcoma 9 214618 -NCIT:C5550 Rectal Kaposi Sarcoma 9 214619 -NCIT:C96844 Liver Kaposi Sarcoma 8 214620 -NCIT:C96951 Extrahepatic Bile Duct Kaposi Sarcoma 8 214621 -NCIT:C173477 Oral Cavity Kaposi Sarcoma 7 214622 -NCIT:C6749 Palate Kaposi Sarcoma 8 214623 -NCIT:C181938 Vulvar Kaposi Sarcoma 7 214624 -NCIT:C188980 Childhood Kaposi Sarcoma 7 214625 -NCIT:C27500 Lymphadenopathic Kaposi Sarcoma 7 214626 -NCIT:C3550 Skin Kaposi Sarcoma 7 214627 -NCIT:C9112 Classic Kaposi Sarcoma 8 214628 -NCIT:C3551 Lung Kaposi Sarcoma 7 214629 -NCIT:C35873 Iatrogenic Kaposi Sarcoma 7 214630 -NCIT:C9113 Kaposi Sarcoma Related to Immunosuppressive Treatment 8 214631 -NCIT:C27640 Transplant-Related Kaposi Sarcoma 9 214632 -NCIT:C35874 Endemic African Kaposi Sarcoma 7 214633 -NCIT:C3992 AIDS-Related Kaposi Sarcoma 7 214634 -NCIT:C5624 AIDS-Related Gastric Kaposi Sarcoma 8 214635 -NCIT:C7433 AIDS-Related Cervical Kaposi Sarcoma 8 214636 -NCIT:C4578 Conjunctival Kaposi Sarcoma 7 214637 -NCIT:C4579 Corneal Kaposi Sarcoma 7 214638 -NCIT:C5363 Cardiac Kaposi Sarcoma 7 214639 -NCIT:C5523 Prostate Kaposi Sarcoma 7 214640 -NCIT:C5952 Parotid Gland Kaposi Sarcoma 7 214641 -NCIT:C6377 Penile Kaposi Sarcoma 7 214642 -NCIT:C7006 Central Nervous System Kaposi Sarcoma 7 214643 -NCIT:C7935 Recurrent Kaposi Sarcoma 7 214644 -NCIT:C9413 Kaposi Sarcoma NCI Grade 2 7 214645 -NCIT:C9414 Kaposi Sarcoma NCI Grade 3 7 214646 -NCIT:C27698 Virus-Related Carcinoma 5 214647 -NCIT:C27674 Human Papillomavirus-Related Carcinoma 6 214648 -NCIT:C27675 Human Papillomavirus-Related Cervical Carcinoma 7 214649 -NCIT:C27676 Human Papillomavirus-Related Cervical Squamous Cell Carcinoma 8 214650 -NCIT:C40192 Cervical Papillary Squamous Cell Carcinoma 9 214651 -NCIT:C40191 Cervical Warty Carcinoma 10 214652 -NCIT:C40194 Cervical Squamotransitional Carcinoma 10 214653 -NCIT:C27677 Human Papillomavirus-Related Cervical Adenocarcinoma 8 214654 -NCIT:C127907 Endocervical Adenocarcinoma, Usual-Type 9 214655 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 10 214656 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 10 214657 -NCIT:C40208 Cervical Villoglandular Adenocarcinoma 10 214658 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 9 214659 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 9 214660 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 9 214661 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 9 214662 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 9 214663 -NCIT:C27683 Human Papillomavirus-Related Squamous Cell Carcinoma 7 214664 -NCIT:C171023 Human Papillomavirus-Related Mucosal Head and Neck Squamous Cell Carcinoma 8 214665 -NCIT:C173078 Sinonasal Human Papillomavirus-Related Carcinoma with Adenoid Cystic-Like Features 9 214666 -NCIT:C87055 Oropharyngeal Human Papillomavirus-Positive Squamous Cell Carcinoma 9 214667 -NCIT:C180917 Human Papillomavirus-Related Vaginal Squamous Cell Carcinoma 8 214668 -NCIT:C40248 Vaginal Warty Carcinoma 9 214669 -NCIT:C187051 Human Papillomavirus-Related Head and Neck Squamous Cell Carcinoma of Unknown Primary 8 214670 -NCIT:C27676 Human Papillomavirus-Related Cervical Squamous Cell Carcinoma 8 214671 -NCIT:C40192 Cervical Papillary Squamous Cell Carcinoma 9 214672 -NCIT:C40191 Cervical Warty Carcinoma 10 214673 -NCIT:C40194 Cervical Squamotransitional Carcinoma 10 214674 -NCIT:C27678 Human Papillomavirus-Related Verrucous Carcinoma 8 214675 -NCIT:C27679 Human Papillomavirus-Related Vulvar Squamous Cell Carcinoma 8 214676 -NCIT:C40287 Vulvar Warty Carcinoma 9 214677 -NCIT:C27680 Human Papillomavirus-Related Esophageal Squamous Cell Carcinoma 8 214678 -NCIT:C27681 Human Papillomavirus-Related Anal Squamous Cell Carcinoma 8 214679 -NCIT:C27682 Human Papillomavirus-Related Squamous Cell Carcinoma of the Penis 8 214680 -NCIT:C159250 Warty-Basaloid Carcinoma of the Penis 9 214681 -NCIT:C159251 Clear Cell Squamous Cell Carcinoma of the Penis 9 214682 -NCIT:C159252 Lymphoepithelioma-Like Carcinoma of the Penis 9 214683 -NCIT:C6980 Basaloid Squamous Cell Carcinoma of the Penis 9 214684 -NCIT:C159249 Papillary-Basaloid Carcinoma of the Penis 10 214685 -NCIT:C6981 Warty Carcinoma of the Penis 9 214686 -NCIT:C39862 Human Papillomavirus-Related Urethral Squamous Cell Carcinoma 8 214687 -NCIT:C27684 Human Papillomavirus-Related Adenocarcinoma 7 214688 -NCIT:C180943 Human Papillomavirus-Related Vaginal Adenocarcinoma 8 214689 -NCIT:C27677 Human Papillomavirus-Related Cervical Adenocarcinoma 8 214690 -NCIT:C127907 Endocervical Adenocarcinoma, Usual-Type 9 214691 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 10 214692 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 10 214693 -NCIT:C40208 Cervical Villoglandular Adenocarcinoma 10 214694 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 9 214695 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 9 214696 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 9 214697 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 9 214698 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 9 214699 -NCIT:C97046 Human Papillomavirus-Related Adenosquamous Carcinoma 7 214700 -NCIT:C27686 Hepatitis Virus-Related Hepatocellular Carcinoma 6 214701 -NCIT:C27687 Hepatitis B Virus-Related Hepatocellular Carcinoma 7 214702 -NCIT:C27688 Hepatitis C Virus-Related Hepatocellular Carcinoma 7 214703 -NCIT:C27690 EBV-Related Carcinoma 6 214704 -NCIT:C162304 EBV-Related Gastric Carcinoma 7 214705 -NCIT:C7373 Nasopharyngeal Nonkeratinizing Carcinoma 7 214706 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 8 214707 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 9 214708 -NCIT:C54389 Nasopharyngeal Differentiated Carcinoma 8 214709 -NCIT:C8023 Nasopharyngeal Undifferentiated Carcinoma 8 214710 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 9 214711 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 9 214712 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 9 214713 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 9 214714 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 9 214715 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 9 214716 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 214717 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 7 214718 -NCIT:C27700 AIDS-Related Carcinoma 6 214719 -NCIT:C7432 AIDS-Related Cervical Carcinoma 7 214720 -NCIT:C9278 AIDS-Related Anal Carcinoma 7 214721 -NCIT:C133095 AIDS-Related Anal Canal Carcinoma 8 214722 -NCIT:C27282 Stage 0 AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 214723 -NCIT:C27283 Stage I AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 214724 -NCIT:C27284 Stage II AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 214725 -NCIT:C27285 Stage III AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 214726 -NCIT:C27286 Stage IV AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 214727 -NCIT:C9249 Recurrent AIDS-Related Anal Canal Carcinoma 9 214728 -NCIT:C27699 Virus-Related Lymphoma 5 214729 -NCIT:C138320 HHV8-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 6 214730 -NCIT:C27691 EBV-Related Lymphoma 6 214731 -NCIT:C147863 Recurrent EBV-Related Lymphoma 7 214732 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 214733 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 8 214734 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 9 214735 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 9 214736 -NCIT:C160149 Refractory EBV-Related Lymphoma 7 214737 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 214738 -NCIT:C27692 EBV-Related Hodgkin Lymphoma 7 214739 -NCIT:C7243 Classic Hodgkin Lymphoma Type Post-Transplant Lymphoproliferative Disorder 8 214740 -NCIT:C27693 EBV-Related Non-Hodgkin Lymphoma 7 214741 -NCIT:C139288 Primary EBV-Positive Nodal T-Cell or NK-Cell Lymphoma 8 214742 -NCIT:C27694 EBV-Related Burkitt Lymphoma 8 214743 -NCIT:C27122 Endemic Burkitt Lymphoma 9 214744 -NCIT:C7933 Grade III Lymphomatoid Granulomatosis 8 214745 -NCIT:C115150 Adult Grade III Lymphomatoid Granulomatosis 9 214746 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 214747 -NCIT:C115204 Childhood Grade III Lymphomatoid Granulomatosis 9 214748 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 10 214749 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 9 214750 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 214751 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 10 214752 -NCIT:C80281 EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 214753 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 214754 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 214755 -NCIT:C188456 Childhood EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 214756 -NCIT:C188457 Adult EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 214757 -NCIT:C80374 Systemic EBV-Positive T-Cell Lymphoma of Childhood 8 214758 -NCIT:C27695 EBV-Related Clonal Post-Transplant Lymphoproliferative Disorder 7 214759 -NCIT:C7239 Hodgkin-Like Post-Transplant Lymphoproliferative Disorder 8 214760 -NCIT:C7243 Classic Hodgkin Lymphoma Type Post-Transplant Lymphoproliferative Disorder 8 214761 -NCIT:C27856 Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 6 214762 -NCIT:C27858 AIDS-Related Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 7 214763 -NCIT:C3184 Adult T-Cell Leukemia/Lymphoma 6 214764 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 7 214765 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 8 214766 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 8 214767 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 8 214768 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 8 214769 -NCIT:C36265 Acute Adult T-Cell Leukemia/Lymphoma 7 214770 -NCIT:C36266 Lymphomatous Adult T-Cell Leukemia/Lymphoma 7 214771 -NCIT:C36268 Hodgkin-Like Adult T-Cell Leukemia/Lymphoma 7 214772 -NCIT:C45272 Cutaneous Adult T-Cell Leukemia/Lymphoma 7 214773 -NCIT:C7178 Smoldering Adult T-Cell Leukemia/Lymphoma 7 214774 -NCIT:C7179 Chronic Adult T-Cell Leukemia/Lymphoma 7 214775 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 7 214776 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 7 214777 -NCIT:C3471 AIDS-Related Lymphoma 6 214778 -NCIT:C5051 AIDS-Related Non-Hodgkin Lymphoma 7 214779 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 214780 -NCIT:C7212 AIDS-Related Diffuse Large B-cell Lymphoma 8 214781 -NCIT:C27858 AIDS-Related Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 9 214782 -NCIT:C27859 AIDS-Related Plasmablastic Lymphoma 9 214783 -NCIT:C38160 AIDS-Related Plasmablastic Lymphoma of Mucosa Site 10 214784 -NCIT:C9016 AIDS-Related Plasmablastic Lymphoma of the Oral Mucosa 11 214785 -NCIT:C8285 AIDS-Related Immunoblastic Lymphoma 9 214786 -NCIT:C9017 AIDS-Related Primary Effusion Lymphoma 9 214787 -NCIT:C7434 AIDS-Related Non-Hodgkin Lymphoma of the Cervix 8 214788 -NCIT:C7465 AIDS-Related Anal Non-Hodgkin Lymphoma 8 214789 -NCIT:C8286 AIDS-Related Burkitt Lymphoma 8 214790 -NCIT:C27857 AIDS-Related Burkitt Lymphoma with Plasmacytoid Differentiation 9 214791 -NCIT:C8298 AIDS-Related Lymphoblastic Lymphoma 8 214792 -NCIT:C8284 AIDS-Related Primary Central Nervous System Lymphoma 7 214793 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 214794 -NCIT:C9279 AIDS-Related Hodgkin Lymphoma 7 214795 -NCIT:C94797 Ann Arbor Stage I AIDS-Related Lymphoma 7 214796 -NCIT:C94798 Ann Arbor Stage II AIDS-Related Lymphoma 7 214797 -NCIT:C94799 Ann Arbor Stage III AIDS-Related Lymphoma 7 214798 -NCIT:C94800 Ann Arbor Stage IV AIDS-Related Lymphoma 7 214799 -NCIT:C6915 Primary Effusion Lymphoma 6 214800 -NCIT:C150406 Extracavitary Primary Effusion Lymphoma 7 214801 -NCIT:C150407 Body Cavity Primary Effusion Lymphoma 7 214802 -NCIT:C183135 Pleural Primary Effusion Lymphoma 8 214803 -NCIT:C183136 Pericardial Primary Effusion Lymphoma 8 214804 -NCIT:C183137 Peritoneal Primary Effusion Lymphoma 8 214805 -NCIT:C157679 Recurrent Primary Effusion Lymphoma 7 214806 -NCIT:C157680 Refractory Primary Effusion Lymphoma 7 214807 -NCIT:C9017 AIDS-Related Primary Effusion Lymphoma 7 214808 -NCIT:C27707 Virus-Related Sarcoma 5 214809 -NCIT:C162305 EBV-Related Sarcoma 6 214810 -NCIT:C162306 EBV-Related Leiomyosarcoma 7 214811 -NCIT:C172847 EBV-Positive Inflammatory Follicular Dendritic Cell Sarcoma 7 214812 -NCIT:C150704 EBV-Positive Inflammatory Follicular Dendritic Cell Sarcoma of the Digestive System 8 214813 -NCIT:C9087 Kaposi Sarcoma 6 214814 -NCIT:C156474 Refractory Kaposi Sarcoma 7 214815 -NCIT:C156475 Metastatic Kaposi Sarcoma 7 214816 -NCIT:C156476 Advanced Kaposi Sarcoma 8 214817 -NCIT:C172955 Digestive System Kaposi Sarcoma 7 214818 -NCIT:C5529 Gastric Kaposi Sarcoma 8 214819 -NCIT:C5624 AIDS-Related Gastric Kaposi Sarcoma 9 214820 -NCIT:C5602 Anal Kaposi Sarcoma 8 214821 -NCIT:C5706 Esophageal Kaposi Sarcoma 8 214822 -NCIT:C5842 Gallbladder Kaposi Sarcoma 8 214823 -NCIT:C96059 Small Intestinal Kaposi Sarcoma 8 214824 -NCIT:C96434 Appendix Kaposi Sarcoma 8 214825 -NCIT:C96510 Colorectal Kaposi Sarcoma 8 214826 -NCIT:C5516 Colon Kaposi Sarcoma 9 214827 -NCIT:C5550 Rectal Kaposi Sarcoma 9 214828 -NCIT:C96844 Liver Kaposi Sarcoma 8 214829 -NCIT:C96951 Extrahepatic Bile Duct Kaposi Sarcoma 8 214830 -NCIT:C173477 Oral Cavity Kaposi Sarcoma 7 214831 -NCIT:C6749 Palate Kaposi Sarcoma 8 214832 -NCIT:C181938 Vulvar Kaposi Sarcoma 7 214833 -NCIT:C188980 Childhood Kaposi Sarcoma 7 214834 -NCIT:C27500 Lymphadenopathic Kaposi Sarcoma 7 214835 -NCIT:C3550 Skin Kaposi Sarcoma 7 214836 -NCIT:C9112 Classic Kaposi Sarcoma 8 214837 -NCIT:C3551 Lung Kaposi Sarcoma 7 214838 -NCIT:C35873 Iatrogenic Kaposi Sarcoma 7 214839 -NCIT:C9113 Kaposi Sarcoma Related to Immunosuppressive Treatment 8 214840 -NCIT:C27640 Transplant-Related Kaposi Sarcoma 9 214841 -NCIT:C35874 Endemic African Kaposi Sarcoma 7 214842 -NCIT:C3992 AIDS-Related Kaposi Sarcoma 7 214843 -NCIT:C5624 AIDS-Related Gastric Kaposi Sarcoma 8 214844 -NCIT:C7433 AIDS-Related Cervical Kaposi Sarcoma 8 214845 -NCIT:C4578 Conjunctival Kaposi Sarcoma 7 214846 -NCIT:C4579 Corneal Kaposi Sarcoma 7 214847 -NCIT:C5363 Cardiac Kaposi Sarcoma 7 214848 -NCIT:C5523 Prostate Kaposi Sarcoma 7 214849 -NCIT:C5952 Parotid Gland Kaposi Sarcoma 7 214850 -NCIT:C6377 Penile Kaposi Sarcoma 7 214851 -NCIT:C7006 Central Nervous System Kaposi Sarcoma 7 214852 -NCIT:C7935 Recurrent Kaposi Sarcoma 7 214853 -NCIT:C9413 Kaposi Sarcoma NCI Grade 2 7 214854 -NCIT:C9414 Kaposi Sarcoma NCI Grade 3 7 214855 -NCIT:C27718 Human Papillomavirus-Related Malignant Neoplasm 5 214856 -NCIT:C102884 Human Papillomavirus-Related Malignant Neoplasm in AIDS Patient 6 214857 -NCIT:C148510 Recurrent Human Papillomavirus-Related Malignant Neoplasm 6 214858 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 7 214859 -NCIT:C148512 Refractory Human Papillomavirus-Related Malignant Neoplasm 6 214860 -NCIT:C156793 Metastatic Human Papillomavirus-Related Malignant Neoplasm 6 214861 -NCIT:C187051 Human Papillomavirus-Related Head and Neck Squamous Cell Carcinoma of Unknown Primary 7 214862 -NCIT:C27674 Human Papillomavirus-Related Carcinoma 6 214863 -NCIT:C27675 Human Papillomavirus-Related Cervical Carcinoma 7 214864 -NCIT:C27676 Human Papillomavirus-Related Cervical Squamous Cell Carcinoma 8 214865 -NCIT:C40192 Cervical Papillary Squamous Cell Carcinoma 9 214866 -NCIT:C40191 Cervical Warty Carcinoma 10 214867 -NCIT:C40194 Cervical Squamotransitional Carcinoma 10 214868 -NCIT:C27677 Human Papillomavirus-Related Cervical Adenocarcinoma 8 214869 -NCIT:C127907 Endocervical Adenocarcinoma, Usual-Type 9 214870 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 10 214871 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 10 214872 -NCIT:C40208 Cervical Villoglandular Adenocarcinoma 10 214873 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 9 214874 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 9 214875 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 9 214876 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 9 214877 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 9 214878 -NCIT:C27683 Human Papillomavirus-Related Squamous Cell Carcinoma 7 214879 -NCIT:C171023 Human Papillomavirus-Related Mucosal Head and Neck Squamous Cell Carcinoma 8 214880 -NCIT:C173078 Sinonasal Human Papillomavirus-Related Carcinoma with Adenoid Cystic-Like Features 9 214881 -NCIT:C87055 Oropharyngeal Human Papillomavirus-Positive Squamous Cell Carcinoma 9 214882 -NCIT:C180917 Human Papillomavirus-Related Vaginal Squamous Cell Carcinoma 8 214883 -NCIT:C40248 Vaginal Warty Carcinoma 9 214884 -NCIT:C187051 Human Papillomavirus-Related Head and Neck Squamous Cell Carcinoma of Unknown Primary 8 214885 -NCIT:C27676 Human Papillomavirus-Related Cervical Squamous Cell Carcinoma 8 214886 -NCIT:C40192 Cervical Papillary Squamous Cell Carcinoma 9 214887 -NCIT:C40191 Cervical Warty Carcinoma 10 214888 -NCIT:C40194 Cervical Squamotransitional Carcinoma 10 214889 -NCIT:C27678 Human Papillomavirus-Related Verrucous Carcinoma 8 214890 -NCIT:C27679 Human Papillomavirus-Related Vulvar Squamous Cell Carcinoma 8 214891 -NCIT:C40287 Vulvar Warty Carcinoma 9 214892 -NCIT:C27680 Human Papillomavirus-Related Esophageal Squamous Cell Carcinoma 8 214893 -NCIT:C27681 Human Papillomavirus-Related Anal Squamous Cell Carcinoma 8 214894 -NCIT:C27682 Human Papillomavirus-Related Squamous Cell Carcinoma of the Penis 8 214895 -NCIT:C159250 Warty-Basaloid Carcinoma of the Penis 9 214896 -NCIT:C159251 Clear Cell Squamous Cell Carcinoma of the Penis 9 214897 -NCIT:C159252 Lymphoepithelioma-Like Carcinoma of the Penis 9 214898 -NCIT:C6980 Basaloid Squamous Cell Carcinoma of the Penis 9 214899 -NCIT:C159249 Papillary-Basaloid Carcinoma of the Penis 10 214900 -NCIT:C6981 Warty Carcinoma of the Penis 9 214901 -NCIT:C39862 Human Papillomavirus-Related Urethral Squamous Cell Carcinoma 8 214902 -NCIT:C27684 Human Papillomavirus-Related Adenocarcinoma 7 214903 -NCIT:C180943 Human Papillomavirus-Related Vaginal Adenocarcinoma 8 214904 -NCIT:C27677 Human Papillomavirus-Related Cervical Adenocarcinoma 8 214905 -NCIT:C127907 Endocervical Adenocarcinoma, Usual-Type 9 214906 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 10 214907 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 10 214908 -NCIT:C40208 Cervical Villoglandular Adenocarcinoma 10 214909 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 9 214910 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 9 214911 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 9 214912 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 9 214913 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 9 214914 -NCIT:C97046 Human Papillomavirus-Related Adenosquamous Carcinoma 7 214915 -NCIT:C4046 AIDS-Related Malignant Neoplasm 5 214916 -NCIT:C27700 AIDS-Related Carcinoma 6 214917 -NCIT:C7432 AIDS-Related Cervical Carcinoma 7 214918 -NCIT:C9278 AIDS-Related Anal Carcinoma 7 214919 -NCIT:C133095 AIDS-Related Anal Canal Carcinoma 8 214920 -NCIT:C27282 Stage 0 AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 214921 -NCIT:C27283 Stage I AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 214922 -NCIT:C27284 Stage II AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 214923 -NCIT:C27285 Stage III AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 214924 -NCIT:C27286 Stage IV AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 214925 -NCIT:C9249 Recurrent AIDS-Related Anal Canal Carcinoma 9 214926 -NCIT:C3471 AIDS-Related Lymphoma 6 214927 -NCIT:C5051 AIDS-Related Non-Hodgkin Lymphoma 7 214928 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 214929 -NCIT:C7212 AIDS-Related Diffuse Large B-cell Lymphoma 8 214930 -NCIT:C27858 AIDS-Related Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 9 214931 -NCIT:C27859 AIDS-Related Plasmablastic Lymphoma 9 214932 -NCIT:C38160 AIDS-Related Plasmablastic Lymphoma of Mucosa Site 10 214933 -NCIT:C9016 AIDS-Related Plasmablastic Lymphoma of the Oral Mucosa 11 214934 -NCIT:C8285 AIDS-Related Immunoblastic Lymphoma 9 214935 -NCIT:C9017 AIDS-Related Primary Effusion Lymphoma 9 214936 -NCIT:C7434 AIDS-Related Non-Hodgkin Lymphoma of the Cervix 8 214937 -NCIT:C7465 AIDS-Related Anal Non-Hodgkin Lymphoma 8 214938 -NCIT:C8286 AIDS-Related Burkitt Lymphoma 8 214939 -NCIT:C27857 AIDS-Related Burkitt Lymphoma with Plasmacytoid Differentiation 9 214940 -NCIT:C8298 AIDS-Related Lymphoblastic Lymphoma 8 214941 -NCIT:C8284 AIDS-Related Primary Central Nervous System Lymphoma 7 214942 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 214943 -NCIT:C9279 AIDS-Related Hodgkin Lymphoma 7 214944 -NCIT:C94797 Ann Arbor Stage I AIDS-Related Lymphoma 7 214945 -NCIT:C94798 Ann Arbor Stage II AIDS-Related Lymphoma 7 214946 -NCIT:C94799 Ann Arbor Stage III AIDS-Related Lymphoma 7 214947 -NCIT:C94800 Ann Arbor Stage IV AIDS-Related Lymphoma 7 214948 -NCIT:C3992 AIDS-Related Kaposi Sarcoma 6 214949 -NCIT:C5624 AIDS-Related Gastric Kaposi Sarcoma 7 214950 -NCIT:C7433 AIDS-Related Cervical Kaposi Sarcoma 7 214951 -NCIT:C5047 AIDS-Related Malignant Anal Neoplasm 6 214952 -NCIT:C7465 AIDS-Related Anal Non-Hodgkin Lymphoma 7 214953 -NCIT:C9278 AIDS-Related Anal Carcinoma 7 214954 -NCIT:C133095 AIDS-Related Anal Canal Carcinoma 8 214955 -NCIT:C27282 Stage 0 AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 214956 -NCIT:C27283 Stage I AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 214957 -NCIT:C27284 Stage II AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 214958 -NCIT:C27285 Stage III AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 214959 -NCIT:C27286 Stage IV AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 214960 -NCIT:C9249 Recurrent AIDS-Related Anal Canal Carcinoma 9 214961 -NCIT:C5052 AIDS-Related Malignant Cervical Neoplasm 6 214962 -NCIT:C7432 AIDS-Related Cervical Carcinoma 7 214963 -NCIT:C7433 AIDS-Related Cervical Kaposi Sarcoma 7 214964 -NCIT:C7434 AIDS-Related Non-Hodgkin Lymphoma of the Cervix 7 214965 -NCIT:C27760 Bacterium-Related Malignant Neoplasm 4 214966 -NCIT:C27761 Helicobacter Pylori-Related Malignant Neoplasm 5 214967 -NCIT:C27762 Helicobacter Pylori-Related Non-Hodgkin Lymphoma 6 214968 -NCIT:C27763 Helicobacter Pylori-Associated Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 7 214969 -NCIT:C27764 Helicobacter Pylori-Related Carcinoma 6 214970 -NCIT:C27765 Helicobacter Pylori-Related Gastric Adenocarcinoma 7 214971 -NCIT:C45163 Borrelia Burgdoferi-Associated Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 5 214972 -NCIT:C45166 Campylobacter Jejuni-Associated Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 5 214973 -NCIT:C27766 Parasite-Related Malignant Neoplasm 4 214974 -NCIT:C27767 Parasite-Related Carcinoma 5 214975 -NCIT:C27768 Schistosoma Hematobium-Related Bladder Squamous Cell Carcinoma 6 214976 -NCIT:C39833 Schistosoma Hematobium-Related Bladder Verrucous Carcinoma 7 214977 -NCIT:C27769 Opisthorchis Viverrini-Related Cholangiocarcinoma 6 214978 -NCIT:C27359 Unresectable Malignant Neoplasm 3 214979 -NCIT:C148036 Unresectable Malignant Solid Neoplasm 4 214980 -NCIT:C148124 Unresectable Carcinoma 4 214981 -NCIT:C129827 Unresectable Transitional Cell Carcinoma 5 214982 -NCIT:C150521 Unresectable Urothelial Carcinoma 6 214983 -NCIT:C158585 Unresectable Urethral Urothelial Carcinoma 7 214984 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 7 214985 -NCIT:C164160 Unresectable Renal Pelvis and Ureter Urothelial Carcinoma 7 214986 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 8 214987 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 8 214988 -NCIT:C148125 Unresectable Thymic Carcinoma 5 214989 -NCIT:C150580 Unresectable Adrenal Cortical Carcinoma 5 214990 -NCIT:C153315 Metastatic Unresectable Carcinoma 5 214991 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 6 214992 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 7 214993 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 7 214994 -NCIT:C155698 Locally Advanced Unresectable Carcinoma 6 214995 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 7 214996 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 7 214997 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 7 214998 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 7 214999 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 8 215000 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 7 215001 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 8 215002 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 7 215003 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 7 215004 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 7 215005 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 7 215006 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 8 215007 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 8 215008 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 8 215009 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 8 215010 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 7 215011 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 8 215012 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 8 215013 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 7 215014 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 7 215015 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 7 215016 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 7 215017 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 7 215018 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 7 215019 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 7 215020 -NCIT:C156788 Metastatic Unresectable Basal Cell Carcinoma 6 215021 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 7 215022 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 6 215023 -NCIT:C155902 Unresectable Lung Carcinoma 5 215024 -NCIT:C155901 Unresectable Lung Non-Small Cell Carcinoma 6 215025 -NCIT:C162642 Unresectable Lung Non-Squamous Non-Small Cell Carcinoma 7 215026 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 8 215027 -NCIT:C171612 Unresectable Lung Non-Small Cell Squamous Carcinoma 7 215028 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 8 215029 -NCIT:C174510 Unresectable Lung Adenocarcinoma 7 215030 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 6 215031 -NCIT:C155903 Unresectable Digestive System Carcinoma 5 215032 -NCIT:C128563 Unresectable Esophageal Carcinoma 6 215033 -NCIT:C171608 Unresectable Esophageal Squamous Cell Carcinoma 7 215034 -NCIT:C173162 Unresectable Esophageal Adenocarcinoma 7 215035 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 215036 -NCIT:C172248 Unresectable Distal Esophagus Adenocarcinoma 8 215037 -NCIT:C129654 Unresectable Digestive System Adenocarcinoma 6 215038 -NCIT:C150578 Unresectable Gastroesophageal Junction Adenocarcinoma 7 215039 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 215040 -NCIT:C154221 Unresectable Gastric Adenocarcinoma 7 215041 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 215042 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 215043 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 215044 -NCIT:C162016 Unresectable Pancreatic Adenocarcinoma 7 215045 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 8 215046 -NCIT:C172245 Unresectable Pancreatic Ductal Adenocarcinoma 8 215047 -NCIT:C165171 Unresectable Liver and Intrahepatic Bile Duct Carcinoma 7 215048 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 8 215049 -NCIT:C27345 Unresectable Hepatocellular Carcinoma 8 215050 -NCIT:C162602 Unresectable Fibrolamellar Carcinoma 9 215051 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 9 215052 -NCIT:C7878 Localized Unresectable Adult Liver Carcinoma 8 215053 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 9 215054 -NCIT:C171585 Unresectable Colorectal Adenocarcinoma 7 215055 -NCIT:C162116 Unresectable Colon Adenocarcinoma 8 215056 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 215057 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 8 215058 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 215059 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 215060 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 215061 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 215062 -NCIT:C173162 Unresectable Esophageal Adenocarcinoma 7 215063 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 215064 -NCIT:C172248 Unresectable Distal Esophagus Adenocarcinoma 8 215065 -NCIT:C175516 Unresectable Small Intestinal Adenocarcinoma 7 215066 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 8 215067 -NCIT:C189064 Unresectable Gallbladder Adenocarcinoma 7 215068 -NCIT:C189065 Unresectable Ampulla of Vater Adenocarcinoma 7 215069 -NCIT:C27324 Unresectable Cholangiocarcinoma 7 215070 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 8 215071 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 8 215072 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 8 215073 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 8 215074 -NCIT:C155935 Unresectable Digestive System Neuroendocrine Carcinoma 6 215075 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 7 215076 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 7 215077 -NCIT:C159775 Unresectable Gastric Carcinoma 6 215078 -NCIT:C154221 Unresectable Gastric Adenocarcinoma 7 215079 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 215080 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 215081 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 215082 -NCIT:C162600 Unresectable Colorectal Carcinoma 6 215083 -NCIT:C171585 Unresectable Colorectal Adenocarcinoma 7 215084 -NCIT:C162116 Unresectable Colon Adenocarcinoma 8 215085 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 215086 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 8 215087 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 215088 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 215089 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 215090 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 215091 -NCIT:C180406 Unresectable Colon Carcinoma 7 215092 -NCIT:C162116 Unresectable Colon Adenocarcinoma 8 215093 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 215094 -NCIT:C165172 Unresectable Ampulla of Vater Carcinoma 6 215095 -NCIT:C189065 Unresectable Ampulla of Vater Adenocarcinoma 7 215096 -NCIT:C172808 Unresectable Digestive System Mixed Adenoneuroendocrine Carcinoma 6 215097 -NCIT:C173156 Unresectable Anal Squamous Cell Carcinoma 6 215098 -NCIT:C175384 Unresectable Anal Canal Squamous Cell Carcinoma 7 215099 -NCIT:C176042 Unresectable Biliary Tract Carcinoma 6 215100 -NCIT:C171322 Unresectable Bile Duct Carcinoma 7 215101 -NCIT:C27324 Unresectable Cholangiocarcinoma 8 215102 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 9 215103 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 9 215104 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 9 215105 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 9 215106 -NCIT:C7892 Unresectable Extrahepatic Bile Duct Carcinoma 8 215107 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 9 215108 -NCIT:C7890 Unresectable Gallbladder Carcinoma 7 215109 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 8 215110 -NCIT:C189064 Unresectable Gallbladder Adenocarcinoma 8 215111 -NCIT:C5018 Unresectable Pancreatic Carcinoma 6 215112 -NCIT:C162016 Unresectable Pancreatic Adenocarcinoma 7 215113 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 8 215114 -NCIT:C172245 Unresectable Pancreatic Ductal Adenocarcinoma 8 215115 -NCIT:C8638 Unresectable Small Intestinal Carcinoma 6 215116 -NCIT:C175516 Unresectable Small Intestinal Adenocarcinoma 7 215117 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 8 215118 -NCIT:C157324 Unresectable Skin Carcinoma 5 215119 -NCIT:C157320 Unresectable Skin Squamous Cell Carcinoma 6 215120 -NCIT:C157331 Unresectable Skin Basal Cell Carcinoma 6 215121 -NCIT:C162786 Unresectable Merkel Cell Carcinoma 6 215122 -NCIT:C157330 Unresectable Basal Cell Carcinoma 5 215123 -NCIT:C156788 Metastatic Unresectable Basal Cell Carcinoma 6 215124 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 7 215125 -NCIT:C157331 Unresectable Skin Basal Cell Carcinoma 6 215126 -NCIT:C158752 Unresectable Breast Carcinoma 5 215127 -NCIT:C158751 Unresectable Breast Inflammatory Carcinoma 6 215128 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 6 215129 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 7 215130 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 7 215131 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 7 215132 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 7 215133 -NCIT:C186284 Unresectable HER2-Positive Breast Carcinoma 6 215134 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 7 215135 -NCIT:C187160 Unresectable Hormone Receptor-Positive Breast Carcinoma 6 215136 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 7 215137 -NCIT:C187161 Unresectable HER2-Negative Breast Carcinoma 6 215138 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 7 215139 -NCIT:C190676 Unresectable Hormone Receptor-Negative Breast Carcinoma 6 215140 -NCIT:C165491 Unresectable Triple-Negative Breast Carcinoma 7 215141 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 8 215142 -NCIT:C160301 Unresectable NUT Carcinoma 5 215143 -NCIT:C164013 Unresectable Adenoid Cystic Carcinoma 5 215144 -NCIT:C165174 Unresectable Head and Neck Carcinoma 5 215145 -NCIT:C129784 Unresectable Thyroid Gland Carcinoma 6 215146 -NCIT:C163974 Unresectable Thyroid Gland Medullary Carcinoma 7 215147 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 8 215148 -NCIT:C168572 Unresectable Differentiated Thyroid Gland Carcinoma 7 215149 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 8 215150 -NCIT:C174571 Unresectable Thyroid Gland Follicular Carcinoma 8 215151 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 9 215152 -NCIT:C170833 Unresectable Thyroid Gland Anaplastic Carcinoma 7 215153 -NCIT:C174569 Unresectable Poorly Differentiated Thyroid Gland Carcinoma 7 215154 -NCIT:C136427 Unresectable Head and Neck Squamous Cell Carcinoma 6 215155 -NCIT:C162833 Unresectable Oropharyngeal Squamous Cell Carcinoma 7 215156 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 8 215157 -NCIT:C172644 Unresectable Oral Cavity Squamous Cell Carcinoma 7 215158 -NCIT:C172645 Unresectable Laryngeal Squamous Cell Carcinoma 7 215159 -NCIT:C172646 Unresectable Hypopharyngeal Squamous Cell Carcinoma 7 215160 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 7 215161 -NCIT:C172651 Unresectable Salivary Gland Squamous Cell Carcinoma 7 215162 -NCIT:C176513 Unresectable Sinonasal Squamous Cell Carcinoma 7 215163 -NCIT:C172648 Unresectable Paranasal Sinus Squamous Cell Carcinoma 8 215164 -NCIT:C176514 Unresectable Nasal Cavity Squamous Cell Carcinoma 8 215165 -NCIT:C165176 Unresectable Nasopharyngeal Carcinoma 6 215166 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 7 215167 -NCIT:C174034 Unresectable Salivary Gland Carcinoma 6 215168 -NCIT:C172651 Unresectable Salivary Gland Squamous Cell Carcinoma 7 215169 -NCIT:C170973 Unresectable Primary Peritoneal Carcinoma 5 215170 -NCIT:C170974 Unresectable Primary Peritoneal Adenocarcinoma 6 215171 -NCIT:C171020 Unresectable Primary Peritoneal Serous Adenocarcinoma 7 215172 -NCIT:C186275 Unresectable Primary Peritoneal High Grade Serous Adenocarcinoma 8 215173 -NCIT:C186276 Unresectable Primary Peritoneal Endometrioid Adenocarcinoma 7 215174 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 6 215175 -NCIT:C172806 Unresectable Neuroendocrine Carcinoma 5 215176 -NCIT:C155935 Unresectable Digestive System Neuroendocrine Carcinoma 6 215177 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 7 215178 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 7 215179 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 6 215180 -NCIT:C162786 Unresectable Merkel Cell Carcinoma 6 215181 -NCIT:C163974 Unresectable Thyroid Gland Medullary Carcinoma 6 215182 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 7 215183 -NCIT:C172810 Unresectable Large Cell Neuroendocrine Carcinoma 6 215184 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 7 215185 -NCIT:C191855 Unresectable Extrapulmonary Small Cell Neuroendocrine Carcinoma 6 215186 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 7 215187 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 7 215188 -NCIT:C190783 Unresectable Genitourinary System Carcinoma 5 215189 -NCIT:C150521 Unresectable Urothelial Carcinoma 6 215190 -NCIT:C158585 Unresectable Urethral Urothelial Carcinoma 7 215191 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 7 215192 -NCIT:C164160 Unresectable Renal Pelvis and Ureter Urothelial Carcinoma 7 215193 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 8 215194 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 8 215195 -NCIT:C167073 Unresectable Ovarian Carcinoma 6 215196 -NCIT:C160781 Unresectable Ovarian Serous Adenocarcinoma 7 215197 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 8 215198 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 215199 -NCIT:C172235 Unresectable Ovarian Undifferentiated Carcinoma 7 215200 -NCIT:C179459 Unresectable Platinum-Resistant Ovarian Carcinoma 7 215201 -NCIT:C183245 Unresectable Ovarian Mucinous Adenocarcinoma 7 215202 -NCIT:C186273 Unresectable Ovarian Endometrioid Adenocarcinoma 7 215203 -NCIT:C167075 Unresectable Bladder Carcinoma 6 215204 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 7 215205 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 7 215206 -NCIT:C170969 Unresectable Fallopian Tube Carcinoma 6 215207 -NCIT:C170970 Unresectable Fallopian Tube Adenocarcinoma 7 215208 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 8 215209 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 8 215210 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 7 215211 -NCIT:C171610 Unresectable Endometrial Carcinoma 6 215212 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 7 215213 -NCIT:C171611 Unresectable Prostate Carcinoma 6 215214 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 7 215215 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 8 215216 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 7 215217 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 7 215218 -NCIT:C174024 Unresectable Cervical Carcinoma 6 215219 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 7 215220 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 8 215221 -NCIT:C174025 Unresectable Cervical Squamous Cell Carcinoma 7 215222 -NCIT:C174027 Unresectable Cervical Adenosquamous Carcinoma 7 215223 -NCIT:C174029 Unresectable Cervical Adenocarcinoma 7 215224 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 8 215225 -NCIT:C174198 Unresectable Vulvar Carcinoma 6 215226 -NCIT:C174199 Unresectable Vulvar Squamous Cell Carcinoma 7 215227 -NCIT:C174565 Unresectable Kidney Carcinoma 6 215228 -NCIT:C154545 Unresectable Renal Cell Carcinoma 7 215229 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 8 215230 -NCIT:C165449 Unresectable Clear Cell Renal Cell Carcinoma 8 215231 -NCIT:C183251 Unresectable Sarcomatoid Renal Cell Carcinoma 8 215232 -NCIT:C190505 Unresectable Papillary Renal Cell Carcinoma 8 215233 -NCIT:C190508 Unresectable Unclassified Renal Cell Carcinoma 8 215234 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 7 215235 -NCIT:C174567 Unresectable Kidney Medullary Carcinoma 7 215236 -NCIT:C175434 Unresectable Vaginal Carcinoma 6 215237 -NCIT:C148331 Unresectable Sarcoma 4 215238 -NCIT:C132147 Unresectable Leiomyosarcoma 5 215239 -NCIT:C168728 Unresectable Soft Tissue Leiomyosarcoma 6 215240 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 7 215241 -NCIT:C132148 Unresectable Liposarcoma 5 215242 -NCIT:C150598 Unresectable Dedifferentiated Liposarcoma 6 215243 -NCIT:C168719 Unresectable Myxoid Liposarcoma 6 215244 -NCIT:C182028 Unresectable Pleomorphic Liposarcoma 6 215245 -NCIT:C132849 Unresectable Ewing Sarcoma 5 215246 -NCIT:C132850 Unresectable Osteosarcoma 5 215247 -NCIT:C152074 Metastatic Unresectable Sarcoma 5 215248 -NCIT:C153477 Locally Advanced Unresectable Sarcoma 6 215249 -NCIT:C153475 Locally Advanced Unresectable Bone Sarcoma 7 215250 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 8 215251 -NCIT:C153476 Locally Advanced Unresectable Soft Tissue Sarcoma 7 215252 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 8 215253 -NCIT:C153068 Unresectable Soft Tissue Sarcoma 5 215254 -NCIT:C150610 Unresectable Undifferentiated Pleomorphic Sarcoma 6 215255 -NCIT:C150741 Unresectable Malignant Gastrointestinal Stromal Tumor 6 215256 -NCIT:C151983 Unresectable Rhabdomyosarcoma 6 215257 -NCIT:C153074 Unresectable Synovial Sarcoma 6 215258 -NCIT:C153476 Locally Advanced Unresectable Soft Tissue Sarcoma 6 215259 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 7 215260 -NCIT:C164078 Unresectable Alveolar Soft Part Sarcoma 6 215261 -NCIT:C167379 Unresectable Epithelioid Sarcoma 6 215262 -NCIT:C168728 Unresectable Soft Tissue Leiomyosarcoma 6 215263 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 7 215264 -NCIT:C170826 Unresectable Desmoplastic Small Round Cell Tumor 6 215265 -NCIT:C178372 Unresectable Myxofibrosarcoma 6 215266 -NCIT:C190016 Unresectable Uterine Corpus Sarcoma 6 215267 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 7 215268 -NCIT:C153072 Unresectable Bone Sarcoma 5 215269 -NCIT:C153475 Locally Advanced Unresectable Bone Sarcoma 6 215270 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 7 215271 -NCIT:C171070 Unresectable Primary Central Chondrosarcoma 6 215272 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 7 215273 -NCIT:C164312 Unresectable Malignant Peripheral Nerve Sheath Tumor 5 215274 -NCIT:C168717 Unresectable Fibrosarcoma 5 215275 -NCIT:C178372 Unresectable Myxofibrosarcoma 6 215276 -NCIT:C168718 Unresectable Angiosarcoma 5 215277 -NCIT:C148517 Unresectable Melanoma 4 215278 -NCIT:C148245 Unresectable Cutaneous Melanoma 5 215279 -NCIT:C165535 Unresectable Acral Lentiginous Melanoma 6 215280 -NCIT:C165536 Unresectable Mucosal Melanoma 5 215281 -NCIT:C172247 Unresectable Uveal Melanoma 5 215282 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 6 215283 -NCIT:C150622 Unresectable Neuroblastoma 4 215284 -NCIT:C8277 Localized Unresectable Neuroblastoma 5 215285 -NCIT:C153279 Metastatic Unresectable Malignant Neoplasm 4 215286 -NCIT:C152074 Metastatic Unresectable Sarcoma 5 215287 -NCIT:C153477 Locally Advanced Unresectable Sarcoma 6 215288 -NCIT:C153475 Locally Advanced Unresectable Bone Sarcoma 7 215289 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 8 215290 -NCIT:C153476 Locally Advanced Unresectable Soft Tissue Sarcoma 7 215291 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 8 215292 -NCIT:C153278 Locally Advanced Unresectable Malignant Neoplasm 5 215293 -NCIT:C153477 Locally Advanced Unresectable Sarcoma 6 215294 -NCIT:C153475 Locally Advanced Unresectable Bone Sarcoma 7 215295 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 8 215296 -NCIT:C153476 Locally Advanced Unresectable Soft Tissue Sarcoma 7 215297 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 8 215298 -NCIT:C155698 Locally Advanced Unresectable Carcinoma 6 215299 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 7 215300 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 7 215301 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 7 215302 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 7 215303 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 8 215304 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 7 215305 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 8 215306 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 7 215307 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 7 215308 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 7 215309 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 7 215310 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 8 215311 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 8 215312 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 8 215313 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 8 215314 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 7 215315 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 8 215316 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 8 215317 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 7 215318 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 7 215319 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 7 215320 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 7 215321 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 7 215322 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 7 215323 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 7 215324 -NCIT:C158090 Locally Advanced Unresectable Digestive System Neuroendocrine Neoplasm 6 215325 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 6 215326 -NCIT:C153315 Metastatic Unresectable Carcinoma 5 215327 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 6 215328 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 7 215329 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 7 215330 -NCIT:C155698 Locally Advanced Unresectable Carcinoma 6 215331 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 7 215332 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 7 215333 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 7 215334 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 7 215335 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 8 215336 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 7 215337 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 8 215338 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 7 215339 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 7 215340 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 7 215341 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 7 215342 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 8 215343 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 8 215344 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 8 215345 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 8 215346 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 7 215347 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 8 215348 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 8 215349 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 7 215350 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 7 215351 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 7 215352 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 7 215353 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 7 215354 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 7 215355 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 7 215356 -NCIT:C156788 Metastatic Unresectable Basal Cell Carcinoma 6 215357 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 7 215358 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 6 215359 -NCIT:C163959 Metastatic Unresectable Pituitary Neuroendocrine Tumor 5 215360 -NCIT:C153325 Unresectable Chordoma 4 215361 -NCIT:C154443 Unresectable Malignant Mesothelioma 4 215362 -NCIT:C154444 Unresectable Pleural Malignant Mesothelioma 5 215363 -NCIT:C173616 Unresectable Pleural Epithelioid Mesothelioma 6 215364 -NCIT:C173617 Unresectable Pleural Sarcomatoid Mesothelioma 6 215365 -NCIT:C173618 Unresectable Pleural Biphasic Mesothelioma 6 215366 -NCIT:C173608 Unresectable Paratesticular Malignant Mesothelioma 5 215367 -NCIT:C173609 Unresectable Paratesticular Epithelioid Mesothelioma 6 215368 -NCIT:C173610 Unresectable Paratesticular Sarcomatoid Mesothelioma 6 215369 -NCIT:C173611 Unresectable Paratesticular Biphasic Mesothelioma 6 215370 -NCIT:C173612 Unresectable Peritoneal Malignant Mesothelioma 5 215371 -NCIT:C173613 Unresectable Peritoneal Epithelioid Mesothelioma 6 215372 -NCIT:C173614 Unresectable Peritoneal Sarcomatoid Mesothelioma 6 215373 -NCIT:C173615 Unresectable Peritoneal Biphasic Mesothelioma 6 215374 -NCIT:C157657 Unresectable Lymphoma 4 215375 -NCIT:C162845 Unresectable Malignant Digestive System Neoplasm 4 215376 -NCIT:C155903 Unresectable Digestive System Carcinoma 5 215377 -NCIT:C128563 Unresectable Esophageal Carcinoma 6 215378 -NCIT:C171608 Unresectable Esophageal Squamous Cell Carcinoma 7 215379 -NCIT:C173162 Unresectable Esophageal Adenocarcinoma 7 215380 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 215381 -NCIT:C172248 Unresectable Distal Esophagus Adenocarcinoma 8 215382 -NCIT:C129654 Unresectable Digestive System Adenocarcinoma 6 215383 -NCIT:C150578 Unresectable Gastroesophageal Junction Adenocarcinoma 7 215384 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 215385 -NCIT:C154221 Unresectable Gastric Adenocarcinoma 7 215386 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 215387 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 215388 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 215389 -NCIT:C162016 Unresectable Pancreatic Adenocarcinoma 7 215390 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 8 215391 -NCIT:C172245 Unresectable Pancreatic Ductal Adenocarcinoma 8 215392 -NCIT:C165171 Unresectable Liver and Intrahepatic Bile Duct Carcinoma 7 215393 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 8 215394 -NCIT:C27345 Unresectable Hepatocellular Carcinoma 8 215395 -NCIT:C162602 Unresectable Fibrolamellar Carcinoma 9 215396 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 9 215397 -NCIT:C7878 Localized Unresectable Adult Liver Carcinoma 8 215398 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 9 215399 -NCIT:C171585 Unresectable Colorectal Adenocarcinoma 7 215400 -NCIT:C162116 Unresectable Colon Adenocarcinoma 8 215401 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 215402 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 8 215403 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 215404 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 215405 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 215406 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 215407 -NCIT:C173162 Unresectable Esophageal Adenocarcinoma 7 215408 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 215409 -NCIT:C172248 Unresectable Distal Esophagus Adenocarcinoma 8 215410 -NCIT:C175516 Unresectable Small Intestinal Adenocarcinoma 7 215411 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 8 215412 -NCIT:C189064 Unresectable Gallbladder Adenocarcinoma 7 215413 -NCIT:C189065 Unresectable Ampulla of Vater Adenocarcinoma 7 215414 -NCIT:C27324 Unresectable Cholangiocarcinoma 7 215415 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 8 215416 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 8 215417 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 8 215418 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 8 215419 -NCIT:C155935 Unresectable Digestive System Neuroendocrine Carcinoma 6 215420 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 7 215421 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 7 215422 -NCIT:C159775 Unresectable Gastric Carcinoma 6 215423 -NCIT:C154221 Unresectable Gastric Adenocarcinoma 7 215424 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 215425 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 215426 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 215427 -NCIT:C162600 Unresectable Colorectal Carcinoma 6 215428 -NCIT:C171585 Unresectable Colorectal Adenocarcinoma 7 215429 -NCIT:C162116 Unresectable Colon Adenocarcinoma 8 215430 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 215431 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 8 215432 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 215433 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 215434 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 215435 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 215436 -NCIT:C180406 Unresectable Colon Carcinoma 7 215437 -NCIT:C162116 Unresectable Colon Adenocarcinoma 8 215438 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 215439 -NCIT:C165172 Unresectable Ampulla of Vater Carcinoma 6 215440 -NCIT:C189065 Unresectable Ampulla of Vater Adenocarcinoma 7 215441 -NCIT:C172808 Unresectable Digestive System Mixed Adenoneuroendocrine Carcinoma 6 215442 -NCIT:C173156 Unresectable Anal Squamous Cell Carcinoma 6 215443 -NCIT:C175384 Unresectable Anal Canal Squamous Cell Carcinoma 7 215444 -NCIT:C176042 Unresectable Biliary Tract Carcinoma 6 215445 -NCIT:C171322 Unresectable Bile Duct Carcinoma 7 215446 -NCIT:C27324 Unresectable Cholangiocarcinoma 8 215447 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 9 215448 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 9 215449 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 9 215450 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 9 215451 -NCIT:C7892 Unresectable Extrahepatic Bile Duct Carcinoma 8 215452 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 9 215453 -NCIT:C7890 Unresectable Gallbladder Carcinoma 7 215454 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 8 215455 -NCIT:C189064 Unresectable Gallbladder Adenocarcinoma 8 215456 -NCIT:C5018 Unresectable Pancreatic Carcinoma 6 215457 -NCIT:C162016 Unresectable Pancreatic Adenocarcinoma 7 215458 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 8 215459 -NCIT:C172245 Unresectable Pancreatic Ductal Adenocarcinoma 8 215460 -NCIT:C8638 Unresectable Small Intestinal Carcinoma 6 215461 -NCIT:C175516 Unresectable Small Intestinal Adenocarcinoma 7 215462 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 8 215463 -NCIT:C165455 Unresectable Digestive System Neuroendocrine Neoplasm 5 215464 -NCIT:C155935 Unresectable Digestive System Neuroendocrine Carcinoma 6 215465 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 7 215466 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 7 215467 -NCIT:C158090 Locally Advanced Unresectable Digestive System Neuroendocrine Neoplasm 6 215468 -NCIT:C165456 Unresectable Pancreatic Neuroendocrine Neoplasm 6 215469 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 7 215470 -NCIT:C190782 Unresectable Pancreatic Neuroendocrine Tumor 7 215471 -NCIT:C167331 Unresectable Midgut Neuroendocrine Tumor 6 215472 -NCIT:C179419 Unresectable Digestive System Neuroendocrine Tumor G1 6 215473 -NCIT:C187345 Unresectable Digestive System Neuroendocrine Tumor G2 6 215474 -NCIT:C175304 Unresectable Malignant Gastric Neoplasm 5 215475 -NCIT:C159775 Unresectable Gastric Carcinoma 6 215476 -NCIT:C154221 Unresectable Gastric Adenocarcinoma 7 215477 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 215478 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 215479 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 215480 -NCIT:C35648 Unresectable Malignant Liver Neoplasm 5 215481 -NCIT:C165171 Unresectable Liver and Intrahepatic Bile Duct Carcinoma 6 215482 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 7 215483 -NCIT:C27345 Unresectable Hepatocellular Carcinoma 7 215484 -NCIT:C162602 Unresectable Fibrolamellar Carcinoma 8 215485 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 8 215486 -NCIT:C7878 Localized Unresectable Adult Liver Carcinoma 7 215487 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 8 215488 -NCIT:C8641 Unresectable Hepatoblastoma 6 215489 -NCIT:C168723 Unresectable Epithelioid Hemangioendothelioma 4 215490 -NCIT:C168973 Unresectable Neuroendocrine Neoplasm 4 215491 -NCIT:C165453 Unresectable Neuroendocrine Tumor 5 215492 -NCIT:C153080 Unresectable Neuroendocrine Tumor G1 6 215493 -NCIT:C177246 Unresectable Lung Carcinoid Tumor 7 215494 -NCIT:C179419 Unresectable Digestive System Neuroendocrine Tumor G1 7 215495 -NCIT:C163959 Metastatic Unresectable Pituitary Neuroendocrine Tumor 6 215496 -NCIT:C167331 Unresectable Midgut Neuroendocrine Tumor 6 215497 -NCIT:C187345 Unresectable Digestive System Neuroendocrine Tumor G2 6 215498 -NCIT:C190782 Unresectable Pancreatic Neuroendocrine Tumor 6 215499 -NCIT:C165454 Unresectable Lung Neuroendocrine Neoplasm 5 215500 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 6 215501 -NCIT:C177246 Unresectable Lung Carcinoid Tumor 6 215502 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 6 215503 -NCIT:C165455 Unresectable Digestive System Neuroendocrine Neoplasm 5 215504 -NCIT:C155935 Unresectable Digestive System Neuroendocrine Carcinoma 6 215505 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 7 215506 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 7 215507 -NCIT:C158090 Locally Advanced Unresectable Digestive System Neuroendocrine Neoplasm 6 215508 -NCIT:C165456 Unresectable Pancreatic Neuroendocrine Neoplasm 6 215509 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 7 215510 -NCIT:C190782 Unresectable Pancreatic Neuroendocrine Tumor 7 215511 -NCIT:C167331 Unresectable Midgut Neuroendocrine Tumor 6 215512 -NCIT:C179419 Unresectable Digestive System Neuroendocrine Tumor G1 6 215513 -NCIT:C187345 Unresectable Digestive System Neuroendocrine Tumor G2 6 215514 -NCIT:C172806 Unresectable Neuroendocrine Carcinoma 5 215515 -NCIT:C155935 Unresectable Digestive System Neuroendocrine Carcinoma 6 215516 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 7 215517 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 7 215518 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 6 215519 -NCIT:C162786 Unresectable Merkel Cell Carcinoma 6 215520 -NCIT:C163974 Unresectable Thyroid Gland Medullary Carcinoma 6 215521 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 7 215522 -NCIT:C172810 Unresectable Large Cell Neuroendocrine Carcinoma 6 215523 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 7 215524 -NCIT:C191855 Unresectable Extrapulmonary Small Cell Neuroendocrine Carcinoma 6 215525 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 7 215526 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 7 215527 -NCIT:C175939 Unresectable Abdominal Neuroendocrine Neoplasm 5 215528 -NCIT:C180872 Unresectable Thymic Neuroendocrine Neoplasm 5 215529 -NCIT:C170829 Unresectable Rhabdoid Tumor 4 215530 -NCIT:C188886 Unresectable Extrarenal Rhabdoid Tumor 5 215531 -NCIT:C188888 Unresectable Rhabdoid Tumor of the Kidney 5 215532 -NCIT:C175661 Unresectable Malignant Glomus Tumor 4 215533 -NCIT:C176890 Unresectable Glioblastoma 4 215534 -NCIT:C179420 Unresectable Malignant Thoracic Neoplasm 4 215535 -NCIT:C148125 Unresectable Thymic Carcinoma 5 215536 -NCIT:C154444 Unresectable Pleural Malignant Mesothelioma 5 215537 -NCIT:C173616 Unresectable Pleural Epithelioid Mesothelioma 6 215538 -NCIT:C173617 Unresectable Pleural Sarcomatoid Mesothelioma 6 215539 -NCIT:C173618 Unresectable Pleural Biphasic Mesothelioma 6 215540 -NCIT:C155902 Unresectable Lung Carcinoma 5 215541 -NCIT:C155901 Unresectable Lung Non-Small Cell Carcinoma 6 215542 -NCIT:C162642 Unresectable Lung Non-Squamous Non-Small Cell Carcinoma 7 215543 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 8 215544 -NCIT:C171612 Unresectable Lung Non-Small Cell Squamous Carcinoma 7 215545 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 8 215546 -NCIT:C174510 Unresectable Lung Adenocarcinoma 7 215547 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 6 215548 -NCIT:C165454 Unresectable Lung Neuroendocrine Neoplasm 5 215549 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 6 215550 -NCIT:C177246 Unresectable Lung Carcinoid Tumor 6 215551 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 6 215552 -NCIT:C180872 Unresectable Thymic Neuroendocrine Neoplasm 5 215553 -NCIT:C27770 Immunodeficiency-Related Malignant Neoplasm 3 215554 -NCIT:C150678 Methotrexate-Associated Lymphoma 4 215555 -NCIT:C7252 Methotrexate-Associated Peripheral T-Cell Lymphoma 5 215556 -NCIT:C7253 Methotrexate-Associated Diffuse Large B-Cell Lymphoma 5 215557 -NCIT:C7254 Methotrexate-Associated Follicular Lymphoma 5 215558 -NCIT:C7255 Methotrexate-Related Burkitt Lymphoma 5 215559 -NCIT:C7256 Methotrexate-Associated Hodgkin Lymphoma 5 215560 -NCIT:C186658 Immunodeficiency-Related Central Nervous System Lymphoma 4 215561 -NCIT:C8284 AIDS-Related Primary Central Nervous System Lymphoma 5 215562 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 6 215563 -NCIT:C27632 Transplant-Related Malignant Neoplasm 4 215564 -NCIT:C27633 Transplant-Related Carcinoma 5 215565 -NCIT:C154700 Transplant-Related Squamous Cell Carcinoma 6 215566 -NCIT:C27636 Transplant-Related Skin Squamous Cell Carcinoma 7 215567 -NCIT:C27634 Transplant-Related Bladder Urothelial Carcinoma 6 215568 -NCIT:C27635 Transplant-Related Hepatocellular Carcinoma 6 215569 -NCIT:C27637 Transplant-Related Lung Carcinoma 6 215570 -NCIT:C27638 Transplant-Related Renal Cell Carcinoma 6 215571 -NCIT:C27639 Transplant-Related Hematologic Malignancy 5 215572 -NCIT:C27695 EBV-Related Clonal Post-Transplant Lymphoproliferative Disorder 6 215573 -NCIT:C7239 Hodgkin-Like Post-Transplant Lymphoproliferative Disorder 7 215574 -NCIT:C7243 Classic Hodgkin Lymphoma Type Post-Transplant Lymphoproliferative Disorder 7 215575 -NCIT:C7233 Monomorphic Post-Transplant Lymphoproliferative Disorder 6 215576 -NCIT:C157474 Recurrent Monomorphic Post-Transplant Lymphoproliferative Disorder 7 215577 -NCIT:C157475 Refractory Monomorphic Post-Transplant Lymphoproliferative Disorder 7 215578 -NCIT:C7237 Monomorphic B-Cell Post-Transplant Lymphoproliferative Disorder 7 215579 -NCIT:C7240 Plasma Cell Post-Transplant Lymphoproliferative Disorder 8 215580 -NCIT:C7241 Plasmacytoma-Like Post-Transplant Lymphoproliferative Disorder 9 215581 -NCIT:C7242 Plasma Cell Myeloma Post-Transplant Lymphoproliferative Disorder 9 215582 -NCIT:C7244 Burkitt Lymphoma Post-Transplant Lymphoproliferative Disorder 8 215583 -NCIT:C7245 Burkitt-Like Lymphoma Post-Transplant Lymphoproliferative Disorder 9 215584 -NCIT:C7246 Diffuse Large B-Cell Lymphoma Post-Transplant Lymphoproliferative Disorder 8 215585 -NCIT:C7247 Anaplastic Lymphoma Post-Transplant Lymphoproliferative Disorder 9 215586 -NCIT:C7248 Centroblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 9 215587 -NCIT:C7249 Immunoblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 9 215588 -NCIT:C7238 Monomorphic T/NK-Cell Post-Transplant Lymphoproliferative Disorder 7 215589 -NCIT:C27640 Transplant-Related Kaposi Sarcoma 5 215590 -NCIT:C27915 Immunodeficiency-Related Burkitt Lymphoma 4 215591 -NCIT:C7244 Burkitt Lymphoma Post-Transplant Lymphoproliferative Disorder 5 215592 -NCIT:C7245 Burkitt-Like Lymphoma Post-Transplant Lymphoproliferative Disorder 6 215593 -NCIT:C7255 Methotrexate-Related Burkitt Lymphoma 5 215594 -NCIT:C8286 AIDS-Related Burkitt Lymphoma 5 215595 -NCIT:C27857 AIDS-Related Burkitt Lymphoma with Plasmacytoid Differentiation 6 215596 -NCIT:C39578 Autoimmune Lymphoproliferative Syndrome-Related Lymphoma 4 215597 -NCIT:C4046 AIDS-Related Malignant Neoplasm 4 215598 -NCIT:C27700 AIDS-Related Carcinoma 5 215599 -NCIT:C7432 AIDS-Related Cervical Carcinoma 6 215600 -NCIT:C9278 AIDS-Related Anal Carcinoma 6 215601 -NCIT:C133095 AIDS-Related Anal Canal Carcinoma 7 215602 -NCIT:C27282 Stage 0 AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 215603 -NCIT:C27283 Stage I AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 215604 -NCIT:C27284 Stage II AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 215605 -NCIT:C27285 Stage III AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 215606 -NCIT:C27286 Stage IV AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 215607 -NCIT:C9249 Recurrent AIDS-Related Anal Canal Carcinoma 8 215608 -NCIT:C3471 AIDS-Related Lymphoma 5 215609 -NCIT:C5051 AIDS-Related Non-Hodgkin Lymphoma 6 215610 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 7 215611 -NCIT:C7212 AIDS-Related Diffuse Large B-cell Lymphoma 7 215612 -NCIT:C27858 AIDS-Related Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 8 215613 -NCIT:C27859 AIDS-Related Plasmablastic Lymphoma 8 215614 -NCIT:C38160 AIDS-Related Plasmablastic Lymphoma of Mucosa Site 9 215615 -NCIT:C9016 AIDS-Related Plasmablastic Lymphoma of the Oral Mucosa 10 215616 -NCIT:C8285 AIDS-Related Immunoblastic Lymphoma 8 215617 -NCIT:C9017 AIDS-Related Primary Effusion Lymphoma 8 215618 -NCIT:C7434 AIDS-Related Non-Hodgkin Lymphoma of the Cervix 7 215619 -NCIT:C7465 AIDS-Related Anal Non-Hodgkin Lymphoma 7 215620 -NCIT:C8286 AIDS-Related Burkitt Lymphoma 7 215621 -NCIT:C27857 AIDS-Related Burkitt Lymphoma with Plasmacytoid Differentiation 8 215622 -NCIT:C8298 AIDS-Related Lymphoblastic Lymphoma 7 215623 -NCIT:C8284 AIDS-Related Primary Central Nervous System Lymphoma 6 215624 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 7 215625 -NCIT:C9279 AIDS-Related Hodgkin Lymphoma 6 215626 -NCIT:C94797 Ann Arbor Stage I AIDS-Related Lymphoma 6 215627 -NCIT:C94798 Ann Arbor Stage II AIDS-Related Lymphoma 6 215628 -NCIT:C94799 Ann Arbor Stage III AIDS-Related Lymphoma 6 215629 -NCIT:C94800 Ann Arbor Stage IV AIDS-Related Lymphoma 6 215630 -NCIT:C3992 AIDS-Related Kaposi Sarcoma 5 215631 -NCIT:C5624 AIDS-Related Gastric Kaposi Sarcoma 6 215632 -NCIT:C7433 AIDS-Related Cervical Kaposi Sarcoma 6 215633 -NCIT:C5047 AIDS-Related Malignant Anal Neoplasm 5 215634 -NCIT:C7465 AIDS-Related Anal Non-Hodgkin Lymphoma 6 215635 -NCIT:C9278 AIDS-Related Anal Carcinoma 6 215636 -NCIT:C133095 AIDS-Related Anal Canal Carcinoma 7 215637 -NCIT:C27282 Stage 0 AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 215638 -NCIT:C27283 Stage I AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 215639 -NCIT:C27284 Stage II AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 215640 -NCIT:C27285 Stage III AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 215641 -NCIT:C27286 Stage IV AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 215642 -NCIT:C9249 Recurrent AIDS-Related Anal Canal Carcinoma 8 215643 -NCIT:C5052 AIDS-Related Malignant Cervical Neoplasm 5 215644 -NCIT:C7432 AIDS-Related Cervical Carcinoma 6 215645 -NCIT:C7433 AIDS-Related Cervical Kaposi Sarcoma 6 215646 -NCIT:C7434 AIDS-Related Non-Hodgkin Lymphoma of the Cervix 6 215647 -NCIT:C2916 Carcinoma 3 215648 -NCIT:C148124 Unresectable Carcinoma 4 215649 -NCIT:C129827 Unresectable Transitional Cell Carcinoma 5 215650 -NCIT:C150521 Unresectable Urothelial Carcinoma 6 215651 -NCIT:C158585 Unresectable Urethral Urothelial Carcinoma 7 215652 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 7 215653 -NCIT:C164160 Unresectable Renal Pelvis and Ureter Urothelial Carcinoma 7 215654 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 8 215655 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 8 215656 -NCIT:C148125 Unresectable Thymic Carcinoma 5 215657 -NCIT:C150580 Unresectable Adrenal Cortical Carcinoma 5 215658 -NCIT:C153315 Metastatic Unresectable Carcinoma 5 215659 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 6 215660 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 7 215661 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 7 215662 -NCIT:C155698 Locally Advanced Unresectable Carcinoma 6 215663 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 7 215664 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 7 215665 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 7 215666 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 7 215667 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 8 215668 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 7 215669 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 8 215670 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 7 215671 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 7 215672 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 7 215673 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 7 215674 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 8 215675 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 8 215676 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 8 215677 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 8 215678 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 7 215679 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 8 215680 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 8 215681 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 7 215682 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 7 215683 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 7 215684 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 7 215685 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 7 215686 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 7 215687 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 7 215688 -NCIT:C156788 Metastatic Unresectable Basal Cell Carcinoma 6 215689 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 7 215690 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 6 215691 -NCIT:C155902 Unresectable Lung Carcinoma 5 215692 -NCIT:C155901 Unresectable Lung Non-Small Cell Carcinoma 6 215693 -NCIT:C162642 Unresectable Lung Non-Squamous Non-Small Cell Carcinoma 7 215694 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 8 215695 -NCIT:C171612 Unresectable Lung Non-Small Cell Squamous Carcinoma 7 215696 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 8 215697 -NCIT:C174510 Unresectable Lung Adenocarcinoma 7 215698 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 6 215699 -NCIT:C155903 Unresectable Digestive System Carcinoma 5 215700 -NCIT:C128563 Unresectable Esophageal Carcinoma 6 215701 -NCIT:C171608 Unresectable Esophageal Squamous Cell Carcinoma 7 215702 -NCIT:C173162 Unresectable Esophageal Adenocarcinoma 7 215703 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 215704 -NCIT:C172248 Unresectable Distal Esophagus Adenocarcinoma 8 215705 -NCIT:C129654 Unresectable Digestive System Adenocarcinoma 6 215706 -NCIT:C150578 Unresectable Gastroesophageal Junction Adenocarcinoma 7 215707 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 215708 -NCIT:C154221 Unresectable Gastric Adenocarcinoma 7 215709 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 215710 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 215711 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 215712 -NCIT:C162016 Unresectable Pancreatic Adenocarcinoma 7 215713 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 8 215714 -NCIT:C172245 Unresectable Pancreatic Ductal Adenocarcinoma 8 215715 -NCIT:C165171 Unresectable Liver and Intrahepatic Bile Duct Carcinoma 7 215716 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 8 215717 -NCIT:C27345 Unresectable Hepatocellular Carcinoma 8 215718 -NCIT:C162602 Unresectable Fibrolamellar Carcinoma 9 215719 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 9 215720 -NCIT:C7878 Localized Unresectable Adult Liver Carcinoma 8 215721 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 9 215722 -NCIT:C171585 Unresectable Colorectal Adenocarcinoma 7 215723 -NCIT:C162116 Unresectable Colon Adenocarcinoma 8 215724 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 215725 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 8 215726 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 215727 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 215728 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 215729 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 215730 -NCIT:C173162 Unresectable Esophageal Adenocarcinoma 7 215731 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 215732 -NCIT:C172248 Unresectable Distal Esophagus Adenocarcinoma 8 215733 -NCIT:C175516 Unresectable Small Intestinal Adenocarcinoma 7 215734 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 8 215735 -NCIT:C189064 Unresectable Gallbladder Adenocarcinoma 7 215736 -NCIT:C189065 Unresectable Ampulla of Vater Adenocarcinoma 7 215737 -NCIT:C27324 Unresectable Cholangiocarcinoma 7 215738 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 8 215739 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 8 215740 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 8 215741 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 8 215742 -NCIT:C155935 Unresectable Digestive System Neuroendocrine Carcinoma 6 215743 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 7 215744 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 7 215745 -NCIT:C159775 Unresectable Gastric Carcinoma 6 215746 -NCIT:C154221 Unresectable Gastric Adenocarcinoma 7 215747 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 215748 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 215749 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 215750 -NCIT:C162600 Unresectable Colorectal Carcinoma 6 215751 -NCIT:C171585 Unresectable Colorectal Adenocarcinoma 7 215752 -NCIT:C162116 Unresectable Colon Adenocarcinoma 8 215753 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 215754 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 8 215755 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 215756 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 215757 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 215758 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 215759 -NCIT:C180406 Unresectable Colon Carcinoma 7 215760 -NCIT:C162116 Unresectable Colon Adenocarcinoma 8 215761 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 215762 -NCIT:C165172 Unresectable Ampulla of Vater Carcinoma 6 215763 -NCIT:C189065 Unresectable Ampulla of Vater Adenocarcinoma 7 215764 -NCIT:C172808 Unresectable Digestive System Mixed Adenoneuroendocrine Carcinoma 6 215765 -NCIT:C173156 Unresectable Anal Squamous Cell Carcinoma 6 215766 -NCIT:C175384 Unresectable Anal Canal Squamous Cell Carcinoma 7 215767 -NCIT:C176042 Unresectable Biliary Tract Carcinoma 6 215768 -NCIT:C171322 Unresectable Bile Duct Carcinoma 7 215769 -NCIT:C27324 Unresectable Cholangiocarcinoma 8 215770 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 9 215771 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 9 215772 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 9 215773 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 9 215774 -NCIT:C7892 Unresectable Extrahepatic Bile Duct Carcinoma 8 215775 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 9 215776 -NCIT:C7890 Unresectable Gallbladder Carcinoma 7 215777 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 8 215778 -NCIT:C189064 Unresectable Gallbladder Adenocarcinoma 8 215779 -NCIT:C5018 Unresectable Pancreatic Carcinoma 6 215780 -NCIT:C162016 Unresectable Pancreatic Adenocarcinoma 7 215781 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 8 215782 -NCIT:C172245 Unresectable Pancreatic Ductal Adenocarcinoma 8 215783 -NCIT:C8638 Unresectable Small Intestinal Carcinoma 6 215784 -NCIT:C175516 Unresectable Small Intestinal Adenocarcinoma 7 215785 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 8 215786 -NCIT:C157324 Unresectable Skin Carcinoma 5 215787 -NCIT:C157320 Unresectable Skin Squamous Cell Carcinoma 6 215788 -NCIT:C157331 Unresectable Skin Basal Cell Carcinoma 6 215789 -NCIT:C162786 Unresectable Merkel Cell Carcinoma 6 215790 -NCIT:C157330 Unresectable Basal Cell Carcinoma 5 215791 -NCIT:C156788 Metastatic Unresectable Basal Cell Carcinoma 6 215792 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 7 215793 -NCIT:C157331 Unresectable Skin Basal Cell Carcinoma 6 215794 -NCIT:C158752 Unresectable Breast Carcinoma 5 215795 -NCIT:C158751 Unresectable Breast Inflammatory Carcinoma 6 215796 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 6 215797 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 7 215798 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 7 215799 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 7 215800 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 7 215801 -NCIT:C186284 Unresectable HER2-Positive Breast Carcinoma 6 215802 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 7 215803 -NCIT:C187160 Unresectable Hormone Receptor-Positive Breast Carcinoma 6 215804 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 7 215805 -NCIT:C187161 Unresectable HER2-Negative Breast Carcinoma 6 215806 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 7 215807 -NCIT:C190676 Unresectable Hormone Receptor-Negative Breast Carcinoma 6 215808 -NCIT:C165491 Unresectable Triple-Negative Breast Carcinoma 7 215809 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 8 215810 -NCIT:C160301 Unresectable NUT Carcinoma 5 215811 -NCIT:C164013 Unresectable Adenoid Cystic Carcinoma 5 215812 -NCIT:C165174 Unresectable Head and Neck Carcinoma 5 215813 -NCIT:C129784 Unresectable Thyroid Gland Carcinoma 6 215814 -NCIT:C163974 Unresectable Thyroid Gland Medullary Carcinoma 7 215815 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 8 215816 -NCIT:C168572 Unresectable Differentiated Thyroid Gland Carcinoma 7 215817 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 8 215818 -NCIT:C174571 Unresectable Thyroid Gland Follicular Carcinoma 8 215819 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 9 215820 -NCIT:C170833 Unresectable Thyroid Gland Anaplastic Carcinoma 7 215821 -NCIT:C174569 Unresectable Poorly Differentiated Thyroid Gland Carcinoma 7 215822 -NCIT:C136427 Unresectable Head and Neck Squamous Cell Carcinoma 6 215823 -NCIT:C162833 Unresectable Oropharyngeal Squamous Cell Carcinoma 7 215824 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 8 215825 -NCIT:C172644 Unresectable Oral Cavity Squamous Cell Carcinoma 7 215826 -NCIT:C172645 Unresectable Laryngeal Squamous Cell Carcinoma 7 215827 -NCIT:C172646 Unresectable Hypopharyngeal Squamous Cell Carcinoma 7 215828 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 7 215829 -NCIT:C172651 Unresectable Salivary Gland Squamous Cell Carcinoma 7 215830 -NCIT:C176513 Unresectable Sinonasal Squamous Cell Carcinoma 7 215831 -NCIT:C172648 Unresectable Paranasal Sinus Squamous Cell Carcinoma 8 215832 -NCIT:C176514 Unresectable Nasal Cavity Squamous Cell Carcinoma 8 215833 -NCIT:C165176 Unresectable Nasopharyngeal Carcinoma 6 215834 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 7 215835 -NCIT:C174034 Unresectable Salivary Gland Carcinoma 6 215836 -NCIT:C172651 Unresectable Salivary Gland Squamous Cell Carcinoma 7 215837 -NCIT:C170973 Unresectable Primary Peritoneal Carcinoma 5 215838 -NCIT:C170974 Unresectable Primary Peritoneal Adenocarcinoma 6 215839 -NCIT:C171020 Unresectable Primary Peritoneal Serous Adenocarcinoma 7 215840 -NCIT:C186275 Unresectable Primary Peritoneal High Grade Serous Adenocarcinoma 8 215841 -NCIT:C186276 Unresectable Primary Peritoneal Endometrioid Adenocarcinoma 7 215842 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 6 215843 -NCIT:C172806 Unresectable Neuroendocrine Carcinoma 5 215844 -NCIT:C155935 Unresectable Digestive System Neuroendocrine Carcinoma 6 215845 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 7 215846 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 7 215847 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 6 215848 -NCIT:C162786 Unresectable Merkel Cell Carcinoma 6 215849 -NCIT:C163974 Unresectable Thyroid Gland Medullary Carcinoma 6 215850 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 7 215851 -NCIT:C172810 Unresectable Large Cell Neuroendocrine Carcinoma 6 215852 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 7 215853 -NCIT:C191855 Unresectable Extrapulmonary Small Cell Neuroendocrine Carcinoma 6 215854 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 7 215855 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 7 215856 -NCIT:C190783 Unresectable Genitourinary System Carcinoma 5 215857 -NCIT:C150521 Unresectable Urothelial Carcinoma 6 215858 -NCIT:C158585 Unresectable Urethral Urothelial Carcinoma 7 215859 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 7 215860 -NCIT:C164160 Unresectable Renal Pelvis and Ureter Urothelial Carcinoma 7 215861 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 8 215862 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 8 215863 -NCIT:C167073 Unresectable Ovarian Carcinoma 6 215864 -NCIT:C160781 Unresectable Ovarian Serous Adenocarcinoma 7 215865 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 8 215866 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 215867 -NCIT:C172235 Unresectable Ovarian Undifferentiated Carcinoma 7 215868 -NCIT:C179459 Unresectable Platinum-Resistant Ovarian Carcinoma 7 215869 -NCIT:C183245 Unresectable Ovarian Mucinous Adenocarcinoma 7 215870 -NCIT:C186273 Unresectable Ovarian Endometrioid Adenocarcinoma 7 215871 -NCIT:C167075 Unresectable Bladder Carcinoma 6 215872 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 7 215873 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 7 215874 -NCIT:C170969 Unresectable Fallopian Tube Carcinoma 6 215875 -NCIT:C170970 Unresectable Fallopian Tube Adenocarcinoma 7 215876 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 8 215877 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 8 215878 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 7 215879 -NCIT:C171610 Unresectable Endometrial Carcinoma 6 215880 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 7 215881 -NCIT:C171611 Unresectable Prostate Carcinoma 6 215882 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 7 215883 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 8 215884 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 7 215885 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 7 215886 -NCIT:C174024 Unresectable Cervical Carcinoma 6 215887 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 7 215888 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 8 215889 -NCIT:C174025 Unresectable Cervical Squamous Cell Carcinoma 7 215890 -NCIT:C174027 Unresectable Cervical Adenosquamous Carcinoma 7 215891 -NCIT:C174029 Unresectable Cervical Adenocarcinoma 7 215892 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 8 215893 -NCIT:C174198 Unresectable Vulvar Carcinoma 6 215894 -NCIT:C174199 Unresectable Vulvar Squamous Cell Carcinoma 7 215895 -NCIT:C174565 Unresectable Kidney Carcinoma 6 215896 -NCIT:C154545 Unresectable Renal Cell Carcinoma 7 215897 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 8 215898 -NCIT:C165449 Unresectable Clear Cell Renal Cell Carcinoma 8 215899 -NCIT:C183251 Unresectable Sarcomatoid Renal Cell Carcinoma 8 215900 -NCIT:C190505 Unresectable Papillary Renal Cell Carcinoma 8 215901 -NCIT:C190508 Unresectable Unclassified Renal Cell Carcinoma 8 215902 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 7 215903 -NCIT:C174567 Unresectable Kidney Medullary Carcinoma 7 215904 -NCIT:C175434 Unresectable Vaginal Carcinoma 6 215905 -NCIT:C150604 Resectable Carcinoma 4 215906 -NCIT:C132012 Resectable Head and Neck Squamous Cell Carcinoma 5 215907 -NCIT:C162787 Resectable Oropharyngeal Squamous Cell Carcinoma 6 215908 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 7 215909 -NCIT:C162943 Resectable Cutaneous Squamous Cell Carcinoma of the Head and Neck 6 215910 -NCIT:C154547 Resectable Renal Cell Carcinoma 5 215911 -NCIT:C156909 Resectable Digestive System Carcinoma 5 215912 -NCIT:C156910 Resectable Bile Duct Adenocarcinoma 6 215913 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 7 215914 -NCIT:C27326 Resectable Cholangiocarcinoma 7 215915 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 8 215916 -NCIT:C162257 Resectable Colorectal Carcinoma 6 215917 -NCIT:C167237 Resectable Colon Carcinoma 7 215918 -NCIT:C165293 Resectable Liver and Intrahepatic Bile Duct Carcinoma 6 215919 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 7 215920 -NCIT:C7691 Resectable Hepatocellular Carcinoma 7 215921 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 8 215922 -NCIT:C7877 Localized Resectable Adult Liver Carcinoma 7 215923 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 8 215924 -NCIT:C5099 Resectable Pancreatic Carcinoma 6 215925 -NCIT:C156906 Resectable Pancreatic Adenocarcinoma 7 215926 -NCIT:C151995 Resectable Pancreatic Ductal Adenocarcinoma 8 215927 -NCIT:C156907 Resectable Pancreatic Acinar Cell Carcinoma 8 215928 -NCIT:C157350 Borderline Resectable Pancreatic Adenocarcinoma 8 215929 -NCIT:C157348 Borderline Resectable Pancreatic Carcinoma 7 215930 -NCIT:C157350 Borderline Resectable Pancreatic Adenocarcinoma 8 215931 -NCIT:C174566 Resectable Pancreatic Adenosquamous Carcinoma 7 215932 -NCIT:C8639 Resectable Small Intestinal Carcinoma 6 215933 -NCIT:C27323 Resectable Duodenal Carcinoma 7 215934 -NCIT:C169108 Resectable Periampullary Adenocarcinoma 8 215935 -NCIT:C8640 Resectable Extrahepatic Bile Duct Carcinoma 6 215936 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 7 215937 -NCIT:C157349 Borderline Resectable Carcinoma 5 215938 -NCIT:C157348 Borderline Resectable Pancreatic Carcinoma 6 215939 -NCIT:C157350 Borderline Resectable Pancreatic Adenocarcinoma 7 215940 -NCIT:C170465 Resectable Skin Carcinoma 5 215941 -NCIT:C170464 Resectable Skin Squamous Cell Carcinoma 6 215942 -NCIT:C162943 Resectable Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 215943 -NCIT:C170961 Resectable Carcinoma of Unknown Primary 5 215944 -NCIT:C170962 Resectable Adenocarcinoma of Unknown Primary 6 215945 -NCIT:C188032 Resectable Bladder Urothelial Carcinoma 5 215946 -NCIT:C188035 Resectable Breast Carcinoma 5 215947 -NCIT:C190952 Resectable Lung Carcinoma 5 215948 -NCIT:C165767 Resectable Lung Non-Small Cell Carcinoma 6 215949 -NCIT:C190954 Resectable Lung Adenocarcinoma 7 215950 -NCIT:C190953 Resectable Lung Squamous Cell Carcinoma 6 215951 -NCIT:C156767 Basal Cell Carcinoma 4 215952 -NCIT:C156769 Metastatic Basal Cell Carcinoma 5 215953 -NCIT:C156770 Locally Advanced Basal Cell Carcinoma 6 215954 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 7 215955 -NCIT:C156788 Metastatic Unresectable Basal Cell Carcinoma 6 215956 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 7 215957 -NCIT:C172362 Advanced Basal Cell Carcinoma 6 215958 -NCIT:C157330 Unresectable Basal Cell Carcinoma 5 215959 -NCIT:C156788 Metastatic Unresectable Basal Cell Carcinoma 6 215960 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 7 215961 -NCIT:C157331 Unresectable Skin Basal Cell Carcinoma 6 215962 -NCIT:C190776 Recurrent Basal Cell Carcinoma 5 215963 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 6 215964 -NCIT:C2921 Skin Basal Cell Carcinoma 5 215965 -NCIT:C157331 Unresectable Skin Basal Cell Carcinoma 6 215966 -NCIT:C181159 Eyelid Basal Cell Carcinoma 6 215967 -NCIT:C27182 Skin Sclerosing/Morphoeic Basal Cell Carcinoma 6 215968 -NCIT:C27535 Skin Adenoid Basal Cell Carcinoma 6 215969 -NCIT:C27536 Skin Clear Cell Basal Cell Carcinoma 6 215970 -NCIT:C27537 Skin Cystic Basal Cell Carcinoma 6 215971 -NCIT:C27539 Skin Infiltrating Basal Cell Carcinoma 6 215972 -NCIT:C27540 Skin Infundibulocystic Basal Cell Carcinoma 6 215973 -NCIT:C27541 Skin Micronodular Basal Cell Carcinoma 6 215974 -NCIT:C2922 Skin Basosquamous Cell Carcinoma 6 215975 -NCIT:C38109 Skin Basal Cell Carcinoma with Adnexal Differentiation 6 215976 -NCIT:C27538 Skin Follicular Basal Cell Carcinoma 7 215977 -NCIT:C4346 Skin Basal Cell Carcinoma with Sebaceous Differentiation 7 215978 -NCIT:C38110 Skin Signet Ring Cell Basal Cell Carcinoma 6 215979 -NCIT:C38111 Skin Basal Cell Carcinoma with Sarcomatoid Differentiation 6 215980 -NCIT:C39961 Penile Basal Cell Carcinoma 6 215981 -NCIT:C4109 Skin Fibroepithelial Basal Cell Carcinoma 6 215982 -NCIT:C54665 Skin Keratotic Basal Cell Carcinoma 6 215983 -NCIT:C6082 External Ear Basal Cell Carcinoma 6 215984 -NCIT:C62282 Skin Nodular Basal Cell Carcinoma 6 215985 -NCIT:C5568 Skin Nodulo-Ulcerative Basal Cell Carcinoma 7 215986 -NCIT:C5616 Skin Nodular Solid Basal Cell Carcinoma 7 215987 -NCIT:C62284 Superficial Basal Cell Carcinoma 6 215988 -NCIT:C4108 Superficial Multifocal Basal Cell Carcinoma 7 215989 -NCIT:C6381 Vulvar Basal Cell Carcinoma 6 215990 -NCIT:C6386 Scrotal Basal Cell Carcinoma 6 215991 -NCIT:C66903 Skin Metatypical Carcinoma 6 215992 -NCIT:C7473 Anal Margin Basal Cell Carcinoma 6 215993 -NCIT:C7585 Skin Adamantinoid Basal Cell Carcinoma 6 215994 -NCIT:C8014 Lip Basal Cell Carcinoma 6 215995 -NCIT:C5893 Stage 0 Lip Basal Cell Carcinoma AJCC v6 and v7 7 215996 -NCIT:C8197 Stage I Lip Basal Cell Carcinoma 7 215997 -NCIT:C8201 Stage II Lip Basal Cell Carcinoma 7 215998 -NCIT:C8205 Stage III Lip Basal Cell Carcinoma 7 215999 -NCIT:C8209 Stage IV Lip Basal Cell Carcinoma 7 216000 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 8 216001 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 8 216002 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 8 216003 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 7 216004 -NCIT:C9359 Skin Pigmented Basal Cell Carcinoma 6 216005 -NCIT:C3678 Salivary Gland Basal Cell Adenocarcinoma 5 216006 -NCIT:C39902 Prostate Basal Cell Carcinoma 5 216007 -NCIT:C164141 Genitourinary System Carcinoma 4 216008 -NCIT:C146893 Metastatic Genitourinary System Carcinoma 5 216009 -NCIT:C126109 Metastatic Urothelial Carcinoma 6 216010 -NCIT:C148493 Advanced Urothelial Carcinoma 7 216011 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 216012 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 216013 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 216014 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 216015 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 216016 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 7 216017 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 216018 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 216019 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 7 216020 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 216021 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 216022 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 216023 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 216024 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 216025 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 216026 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 216027 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 216028 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 216029 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 8 216030 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 7 216031 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 216032 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 216033 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 216034 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 216035 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 216036 -NCIT:C191692 Metastatic Clear Cell (Glycogen-Rich) Urothelial Carcinoma 7 216037 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 216038 -NCIT:C191693 Metastatic Giant Cell Urothelial Carcinoma 7 216039 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 216040 -NCIT:C191694 Metastatic Lipid-Rich Urothelial Carcinoma 7 216041 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 216042 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 7 216043 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 216044 -NCIT:C191696 Metastatic Nested Urothelial Carcinoma 7 216045 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 216046 -NCIT:C191697 Metastatic Plasmacytoid Urothelial Carcinoma 7 216047 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 216048 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 7 216049 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 216050 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 7 216051 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 8 216052 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 216053 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 216054 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 8 216055 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 216056 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 216057 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 216058 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 216059 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 216060 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 216061 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 216062 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 216063 -NCIT:C153387 Metastatic Cervical Carcinoma 6 216064 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 7 216065 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 216066 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 8 216067 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 7 216068 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 8 216069 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 216070 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 216071 -NCIT:C153390 Metastatic Cervical Adenosquamous Carcinoma 7 216072 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 8 216073 -NCIT:C156294 Advanced Cervical Carcinoma 7 216074 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 216075 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 216076 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 8 216077 -NCIT:C156295 Locally Advanced Cervical Carcinoma 7 216078 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 8 216079 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 216080 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 8 216081 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 216082 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 8 216083 -NCIT:C156062 Metastatic Bladder Carcinoma 6 216084 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 7 216085 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 216086 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 216087 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 216088 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 216089 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 216090 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 216091 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 216092 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 216093 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 216094 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 8 216095 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 7 216096 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 7 216097 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 7 216098 -NCIT:C167071 Locally Advanced Bladder Carcinoma 7 216099 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 216100 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 8 216101 -NCIT:C167338 Advanced Bladder Carcinoma 7 216102 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 216103 -NCIT:C190772 Metastatic Non-Muscle Invasive Bladder Carcinoma 7 216104 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 8 216105 -NCIT:C156063 Metastatic Fallopian Tube Carcinoma 6 216106 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 7 216107 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 8 216108 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 7 216109 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 7 216110 -NCIT:C156064 Metastatic Ovarian Carcinoma 6 216111 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 7 216112 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 216113 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 216114 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 216115 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 8 216116 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 216117 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 216118 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 8 216119 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 216120 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 216121 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 216122 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 216123 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 216124 -NCIT:C165458 Advanced Ovarian Carcinoma 7 216125 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 216126 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 216127 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 216128 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 216129 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 216130 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 8 216131 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 8 216132 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 7 216133 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 216134 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 216135 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 216136 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 8 216137 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 7 216138 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 216139 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 7 216140 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 216141 -NCIT:C172234 Metastatic Ovarian Undifferentiated Carcinoma 7 216142 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 7 216143 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 8 216144 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 8 216145 -NCIT:C180333 Metastatic Microsatellite Stable Ovarian Carcinoma 7 216146 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 8 216147 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 7 216148 -NCIT:C27391 Metastatic Ovarian Small Cell Carcinoma, Hypercalcemic Type 7 216149 -NCIT:C156065 Metastatic Vaginal Carcinoma 6 216150 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 7 216151 -NCIT:C170788 Advanced Vaginal Carcinoma 7 216152 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 216153 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 8 216154 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 216155 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 216156 -NCIT:C181028 Metastatic Vaginal Adenosquamous Carcinoma 7 216157 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 8 216158 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 7 216159 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 216160 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 216161 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 7 216162 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 216163 -NCIT:C156066 Metastatic Vulvar Carcinoma 6 216164 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 7 216165 -NCIT:C170786 Advanced Vulvar Carcinoma 7 216166 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 7 216167 -NCIT:C156068 Metastatic Endometrial Carcinoma 6 216168 -NCIT:C159676 Advanced Endometrial Carcinoma 7 216169 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 8 216170 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 216171 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 216172 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 8 216173 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 7 216174 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 8 216175 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 216176 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 8 216177 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 7 216178 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 7 216179 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 8 216180 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 7 216181 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 8 216182 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 216183 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 8 216184 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 216185 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 216186 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 8 216187 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 216188 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 216189 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 8 216190 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 216191 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 8 216192 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 8 216193 -NCIT:C164143 Advanced Genitourinary System Carcinoma 6 216194 -NCIT:C148493 Advanced Urothelial Carcinoma 7 216195 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 216196 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 216197 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 216198 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 216199 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 216200 -NCIT:C156284 Advanced Prostate Carcinoma 7 216201 -NCIT:C156286 Advanced Prostate Adenocarcinoma 8 216202 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 216203 -NCIT:C156294 Advanced Cervical Carcinoma 7 216204 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 216205 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 216206 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 8 216207 -NCIT:C159676 Advanced Endometrial Carcinoma 7 216208 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 8 216209 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 216210 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 216211 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 8 216212 -NCIT:C165458 Advanced Ovarian Carcinoma 7 216213 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 216214 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 216215 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 216216 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 216217 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 216218 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 8 216219 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 8 216220 -NCIT:C167338 Advanced Bladder Carcinoma 7 216221 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 216222 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 7 216223 -NCIT:C170786 Advanced Vulvar Carcinoma 7 216224 -NCIT:C170788 Advanced Vaginal Carcinoma 7 216225 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 216226 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 8 216227 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 216228 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 216229 -NCIT:C170790 Advanced Penile Carcinoma 7 216230 -NCIT:C172617 Advanced Kidney Carcinoma 7 216231 -NCIT:C153170 Advanced Renal Cell Carcinoma 8 216232 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 216233 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 216234 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 216235 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 216236 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 216237 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 8 216238 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 216239 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 8 216240 -NCIT:C167069 Locally Advanced Genitourinary System Carcinoma 6 216241 -NCIT:C156285 Locally Advanced Prostate Carcinoma 7 216242 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 8 216243 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 216244 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 8 216245 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 216246 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 216247 -NCIT:C156295 Locally Advanced Cervical Carcinoma 7 216248 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 8 216249 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 216250 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 8 216251 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 216252 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 8 216253 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 7 216254 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 216255 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 216256 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 216257 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 216258 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 216259 -NCIT:C167071 Locally Advanced Bladder Carcinoma 7 216260 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 216261 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 8 216262 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 7 216263 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 216264 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 216265 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 216266 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 8 216267 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 7 216268 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 8 216269 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 7 216270 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 8 216271 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 216272 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 8 216273 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 7 216274 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 7 216275 -NCIT:C170789 Locally Advanced Penile Carcinoma 7 216276 -NCIT:C172618 Locally Advanced Kidney Carcinoma 7 216277 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 8 216278 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 216279 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 216280 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 216281 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 216282 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 216283 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 216284 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 8 216285 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 216286 -NCIT:C185381 Metastatic Mesonephric Adenocarcinoma 6 216287 -NCIT:C27784 Metastatic Penile Carcinoma 6 216288 -NCIT:C170789 Locally Advanced Penile Carcinoma 7 216289 -NCIT:C170790 Advanced Penile Carcinoma 7 216290 -NCIT:C182111 Metastatic Squamous Cell Carcinoma of the Penis 7 216291 -NCIT:C27806 Metastatic Kidney Carcinoma 6 216292 -NCIT:C150595 Metastatic Renal Cell Carcinoma 7 216293 -NCIT:C153170 Advanced Renal Cell Carcinoma 8 216294 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 216295 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 216296 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 216297 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 216298 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 216299 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 8 216300 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 216301 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 216302 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 8 216303 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 216304 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 216305 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 8 216306 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 216307 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 216308 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 8 216309 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 216310 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 216311 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 216312 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 216313 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 216314 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 216315 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 8 216316 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 216317 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 216318 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 8 216319 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 216320 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 216321 -NCIT:C157755 Metastatic Kidney Medullary Carcinoma 7 216322 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 8 216323 -NCIT:C163965 Metastatic Renal Pelvis Carcinoma 7 216324 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 8 216325 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 216326 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 216327 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 8 216328 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 216329 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 8 216330 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 216331 -NCIT:C172617 Advanced Kidney Carcinoma 7 216332 -NCIT:C153170 Advanced Renal Cell Carcinoma 8 216333 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 216334 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 216335 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 216336 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 216337 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 216338 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 8 216339 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 216340 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 8 216341 -NCIT:C172618 Locally Advanced Kidney Carcinoma 7 216342 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 8 216343 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 216344 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 216345 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 216346 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 216347 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 216348 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 216349 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 8 216350 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 216351 -NCIT:C27818 Metastatic Ureter Carcinoma 6 216352 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 7 216353 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 8 216354 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 8 216355 -NCIT:C27819 Metastatic Urethral Carcinoma 6 216356 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 7 216357 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 216358 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 216359 -NCIT:C8946 Metastatic Prostate Carcinoma 6 216360 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 7 216361 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 8 216362 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 8 216363 -NCIT:C161609 Double-Negative Prostate Carcinoma 8 216364 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 8 216365 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 8 216366 -NCIT:C132881 Prostate Carcinoma Metastatic in the Soft Tissue 7 216367 -NCIT:C148536 Castration-Naive Prostate Carcinoma 7 216368 -NCIT:C153336 Castration-Sensitive Prostate Carcinoma 7 216369 -NCIT:C156284 Advanced Prostate Carcinoma 7 216370 -NCIT:C156286 Advanced Prostate Adenocarcinoma 8 216371 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 216372 -NCIT:C156285 Locally Advanced Prostate Carcinoma 7 216373 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 8 216374 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 216375 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 8 216376 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 216377 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 216378 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 7 216379 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 216380 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 216381 -NCIT:C161584 Prostate Carcinoma Metastatic in the Pelvic Cavity 7 216382 -NCIT:C161587 Prostate Carcinoma Metastatic in the Lymph Nodes 7 216383 -NCIT:C171265 Oligometastatic Prostate Carcinoma 7 216384 -NCIT:C36307 Prostate Carcinoma Metastatic in the Lung 7 216385 -NCIT:C36308 Prostate Carcinoma Metastatic in the Bone 7 216386 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 7 216387 -NCIT:C156286 Advanced Prostate Adenocarcinoma 8 216388 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 216389 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 8 216390 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 216391 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 8 216392 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 216393 -NCIT:C181162 Female Reproductive System Carcinoma 5 216394 -NCIT:C3867 Fallopian Tube Carcinoma 6 216395 -NCIT:C115429 Recurrent Fallopian Tube Carcinoma 7 216396 -NCIT:C170750 Recurrent Platinum-Resistant Fallopian Tube Carcinoma 8 216397 -NCIT:C170755 Recurrent Fallopian Tube Undifferentiated Carcinoma 8 216398 -NCIT:C170757 Recurrent Fallopian Tube Transitional Cell Carcinoma 8 216399 -NCIT:C170766 Recurrent Fallopian Tube Adenocarcinoma 8 216400 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 9 216401 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 9 216402 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 9 216403 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 9 216404 -NCIT:C191395 Recurrent Platinum-Sensitive Fallopian Tube Carcinoma 8 216405 -NCIT:C139983 Fallopian Tube Cancer by AJCC v8 Stage 7 216406 -NCIT:C139984 Stage I Fallopian Tube Cancer AJCC v8 8 216407 -NCIT:C139985 Stage IA Fallopian Tube Cancer AJCC v8 9 216408 -NCIT:C139986 Stage IB Fallopian Tube Cancer AJCC v8 9 216409 -NCIT:C139987 Stage IC Fallopian Tube Cancer AJCC v8 9 216410 -NCIT:C139988 Stage II Fallopian Tube Cancer AJCC v8 8 216411 -NCIT:C139989 Stage IIA Fallopian Tube Cancer AJCC v8 9 216412 -NCIT:C139990 Stage IIB Fallopian Tube Cancer AJCC v8 9 216413 -NCIT:C139991 Stage III Fallopian Tube Cancer AJCC v8 8 216414 -NCIT:C139992 Stage IIIA Fallopian Tube Cancer AJCC v8 9 216415 -NCIT:C139993 Stage IIIA1 Fallopian Tube Cancer AJCC v8 10 216416 -NCIT:C139994 Stage IIIA2 Fallopian Tube Cancer AJCC v8 10 216417 -NCIT:C139995 Stage IIIB Fallopian Tube Cancer AJCC v8 9 216418 -NCIT:C139996 Stage IIIC Fallopian Tube Cancer AJCC v8 9 216419 -NCIT:C139997 Stage IV Fallopian Tube Cancer AJCC v8 8 216420 -NCIT:C139998 Stage IVA Fallopian Tube Cancer AJCC v8 9 216421 -NCIT:C139999 Stage IVB Fallopian Tube Cancer AJCC v8 9 216422 -NCIT:C152047 Refractory Fallopian Tube Carcinoma 7 216423 -NCIT:C157621 Platinum-Resistant Fallopian Tube Carcinoma 8 216424 -NCIT:C170750 Recurrent Platinum-Resistant Fallopian Tube Carcinoma 9 216425 -NCIT:C170971 Refractory Fallopian Tube Adenocarcinoma 8 216426 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 9 216427 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 9 216428 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 9 216429 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 9 216430 -NCIT:C178674 Refractory Fallopian Tube Transitional Cell Carcinoma 8 216431 -NCIT:C178675 Refractory Fallopian Tube Undifferentiated Carcinoma 8 216432 -NCIT:C178698 Platinum-Refractory Fallopian Tube Carcinoma 8 216433 -NCIT:C156063 Metastatic Fallopian Tube Carcinoma 7 216434 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 8 216435 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 9 216436 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 8 216437 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 8 216438 -NCIT:C160873 Platinum-Sensitive Fallopian Tube Carcinoma 7 216439 -NCIT:C191395 Recurrent Platinum-Sensitive Fallopian Tube Carcinoma 8 216440 -NCIT:C170969 Unresectable Fallopian Tube Carcinoma 7 216441 -NCIT:C170970 Unresectable Fallopian Tube Adenocarcinoma 8 216442 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 9 216443 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 9 216444 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 8 216445 -NCIT:C40104 Fallopian Tube Transitional Cell Carcinoma 7 216446 -NCIT:C170757 Recurrent Fallopian Tube Transitional Cell Carcinoma 8 216447 -NCIT:C178674 Refractory Fallopian Tube Transitional Cell Carcinoma 8 216448 -NCIT:C40455 Hereditary Fallopian Tube Carcinoma 7 216449 -NCIT:C6265 Fallopian Tube Adenocarcinoma 7 216450 -NCIT:C170766 Recurrent Fallopian Tube Adenocarcinoma 8 216451 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 9 216452 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 9 216453 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 9 216454 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 9 216455 -NCIT:C170970 Unresectable Fallopian Tube Adenocarcinoma 8 216456 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 9 216457 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 9 216458 -NCIT:C170971 Refractory Fallopian Tube Adenocarcinoma 8 216459 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 9 216460 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 9 216461 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 9 216462 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 9 216463 -NCIT:C40099 Fallopian Tube Serous Adenocarcinoma 8 216464 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 9 216465 -NCIT:C126456 Fallopian Tube High Grade Serous Adenocarcinoma 9 216466 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 10 216467 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 10 216468 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 10 216469 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 10 216470 -NCIT:C40103 Fallopian Tube Mucinous Adenocarcinoma 8 216471 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 9 216472 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 9 216473 -NCIT:C40105 Stage 0 Fallopian Tube Cancer AJCC v7 8 216474 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 9 216475 -NCIT:C6279 Fallopian Tube Endometrioid Adenocarcinoma 8 216476 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 9 216477 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 9 216478 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 9 216479 -NCIT:C6280 Fallopian Tube Clear Cell Adenocarcinoma 8 216480 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 9 216481 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 9 216482 -NCIT:C6278 Fallopian Tube Gestational Choriocarcinoma 7 216483 -NCIT:C6281 Fallopian Tube Undifferentiated Carcinoma 7 216484 -NCIT:C170755 Recurrent Fallopian Tube Undifferentiated Carcinoma 8 216485 -NCIT:C178675 Refractory Fallopian Tube Undifferentiated Carcinoma 8 216486 -NCIT:C6282 Fallopian Tube Squamous Cell Carcinoma 7 216487 -NCIT:C90499 Fallopian Tube Cancer by AJCC v6 Stage 7 216488 -NCIT:C8720 Stage I Fallopian Tube Cancer AJCC v6 and v7 8 216489 -NCIT:C6269 Stage IA Fallopian Tube Cancer AJCC v6 and v7 9 216490 -NCIT:C6270 Stage IB Fallopian Tube Cancer AJCC v6 and v7 9 216491 -NCIT:C6271 Stage IC Fallopian Tube Cancer AJCC v6 and v7 9 216492 -NCIT:C8721 Stage II Fallopian Tube Cancer AJCC v6 and v7 8 216493 -NCIT:C6272 Stage IIA Fallopian Tube Cancer AJCC v6 and v7 9 216494 -NCIT:C6276 Stage IIC Fallopian Tube Cancer AJCC v6 and v7 9 216495 -NCIT:C6277 Stage IIB Fallopian Tube Cancer AJCC v6 and v7 9 216496 -NCIT:C8722 Stage III Fallopian Tube Cancer AJCC v6 8 216497 -NCIT:C8963 Stage IV Fallopian Tube Cancer AJCC v6 and v7 8 216498 -NCIT:C91219 Fallopian Tube Cancer by AJCC v7 Stage 7 216499 -NCIT:C40105 Stage 0 Fallopian Tube Cancer AJCC v7 8 216500 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 9 216501 -NCIT:C8720 Stage I Fallopian Tube Cancer AJCC v6 and v7 8 216502 -NCIT:C6269 Stage IA Fallopian Tube Cancer AJCC v6 and v7 9 216503 -NCIT:C6270 Stage IB Fallopian Tube Cancer AJCC v6 and v7 9 216504 -NCIT:C6271 Stage IC Fallopian Tube Cancer AJCC v6 and v7 9 216505 -NCIT:C8721 Stage II Fallopian Tube Cancer AJCC v6 and v7 8 216506 -NCIT:C6272 Stage IIA Fallopian Tube Cancer AJCC v6 and v7 9 216507 -NCIT:C6276 Stage IIC Fallopian Tube Cancer AJCC v6 and v7 9 216508 -NCIT:C6277 Stage IIB Fallopian Tube Cancer AJCC v6 and v7 9 216509 -NCIT:C8963 Stage IV Fallopian Tube Cancer AJCC v6 and v7 8 216510 -NCIT:C89692 Stage III Fallopian Tube Cancer AJCC v7 8 216511 -NCIT:C6273 Stage IIIA Fallopian Tube Cancer AJCC v7 9 216512 -NCIT:C6274 Stage IIIB Fallopian Tube Cancer AJCC v7 9 216513 -NCIT:C6275 Stage IIIC Fallopian Tube Cancer AJCC v7 9 216514 -NCIT:C3917 Vaginal Carcinoma 6 216515 -NCIT:C128073 Vaginal Neuroendocrine Carcinoma 7 216516 -NCIT:C128075 Vaginal Large Cell Neuroendocrine Carcinoma 8 216517 -NCIT:C40263 Vaginal Small Cell Neuroendocrine Carcinoma 8 216518 -NCIT:C139657 Vaginal Cancer by AJCC v8 Stage 7 216519 -NCIT:C139658 Stage I Vaginal Cancer AJCC v8 8 216520 -NCIT:C139659 Stage IA Vaginal Cancer AJCC v8 9 216521 -NCIT:C139660 Stage IB Vaginal Cancer AJCC v8 9 216522 -NCIT:C139661 Stage II Vaginal Cancer AJCC v8 8 216523 -NCIT:C139662 Stage IIA Vaginal Cancer AJCC v8 9 216524 -NCIT:C139664 Stage IIB Vaginal Cancer AJCC v8 9 216525 -NCIT:C139665 Stage III Vaginal Cancer AJCC v8 8 216526 -NCIT:C139667 Stage IV Vaginal Cancer AJCC v8 8 216527 -NCIT:C139669 Stage IVA Vaginal Cancer AJCC v8 9 216528 -NCIT:C139670 Stage IVB Vaginal Cancer AJCC v8 9 216529 -NCIT:C156065 Metastatic Vaginal Carcinoma 7 216530 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 8 216531 -NCIT:C170788 Advanced Vaginal Carcinoma 8 216532 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 216533 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 216534 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 216535 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 216536 -NCIT:C181028 Metastatic Vaginal Adenosquamous Carcinoma 8 216537 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 216538 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 8 216539 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 216540 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 216541 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 8 216542 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 216543 -NCIT:C174509 Refractory Vaginal Carcinoma 7 216544 -NCIT:C185303 Refractory Vaginal Squamous Cell Carcinoma 8 216545 -NCIT:C175434 Unresectable Vaginal Carcinoma 7 216546 -NCIT:C180915 Vaginal Squamous Cell Carcinoma 7 216547 -NCIT:C128060 Vaginal Papillary Carcinoma 8 216548 -NCIT:C180917 Human Papillomavirus-Related Vaginal Squamous Cell Carcinoma 8 216549 -NCIT:C40248 Vaginal Warty Carcinoma 9 216550 -NCIT:C180919 Human Papillomavirus-Independent Vaginal Squamous Cell Carcinoma 8 216551 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 8 216552 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 216553 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 216554 -NCIT:C185302 Recurrent Vaginal Squamous Cell Carcinoma 8 216555 -NCIT:C185303 Refractory Vaginal Squamous Cell Carcinoma 8 216556 -NCIT:C40243 Vaginal Keratinizing Squamous Cell Carcinoma 8 216557 -NCIT:C40244 Vaginal Non-Keratinizing Squamous Cell Carcinoma 8 216558 -NCIT:C40245 Vaginal Basaloid Carcinoma 8 216559 -NCIT:C6325 Vaginal Verrucous Carcinoma 8 216560 -NCIT:C7736 Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 8 216561 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 216562 -NCIT:C40260 Vaginal Adenosquamous Carcinoma 7 216563 -NCIT:C181028 Metastatic Vaginal Adenosquamous Carcinoma 8 216564 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 216565 -NCIT:C40261 Vaginal Adenoid Cystic Carcinoma 7 216566 -NCIT:C40262 Vaginal Adenoid Basal Carcinoma 7 216567 -NCIT:C40264 Vaginal Undifferentiated Carcinoma 7 216568 -NCIT:C7860 Recurrent Vaginal Carcinoma 7 216569 -NCIT:C185302 Recurrent Vaginal Squamous Cell Carcinoma 8 216570 -NCIT:C7981 Vaginal Adenocarcinoma 7 216571 -NCIT:C180943 Human Papillomavirus-Related Vaginal Adenocarcinoma 8 216572 -NCIT:C180947 Vaginal Adenocarcinoma of Skene Gland Origin 8 216573 -NCIT:C40251 Vaginal Endometrioid Adenocarcinoma 8 216574 -NCIT:C40252 Vaginal Mucinous Adenocarcinoma 8 216575 -NCIT:C180945 Vaginal Mucinous Adenocarcinoma, Gastric-Type 9 216576 -NCIT:C180946 Vaginal Mucinous Adenocarcinoma, Intestinal-Type 9 216577 -NCIT:C40253 Vaginal Mesonephric Adenocarcinoma 8 216578 -NCIT:C7735 Vaginal Clear Cell Adenocarcinoma 8 216579 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 8 216580 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 216581 -NCIT:C90347 Vaginal Cancer by AJCC v6 Stage 7 216582 -NCIT:C7597 Stage IV Vaginal Cancer AJCC v6 and v7 8 216583 -NCIT:C7859 Stage IVA Vaginal Cancer AJCC v6 and v7 9 216584 -NCIT:C9355 Stage IVB Vaginal Cancer AJCC v6 and v7 9 216585 -NCIT:C7855 Stage 0 Vaginal Cancer AJCC v6 8 216586 -NCIT:C7856 Stage I Vaginal Cancer AJCC v6 and v7 8 216587 -NCIT:C7857 Stage II Vaginal Cancer AJCC v6 and v7 8 216588 -NCIT:C7858 Stage III Vaginal Cancer AJCC v6 and v7 8 216589 -NCIT:C91204 Vaginal Cancer by AJCC v7 Stage 7 216590 -NCIT:C7597 Stage IV Vaginal Cancer AJCC v6 and v7 8 216591 -NCIT:C7859 Stage IVA Vaginal Cancer AJCC v6 and v7 9 216592 -NCIT:C9355 Stage IVB Vaginal Cancer AJCC v6 and v7 9 216593 -NCIT:C7856 Stage I Vaginal Cancer AJCC v6 and v7 8 216594 -NCIT:C7857 Stage II Vaginal Cancer AJCC v6 and v7 8 216595 -NCIT:C7858 Stage III Vaginal Cancer AJCC v6 and v7 8 216596 -NCIT:C89476 Stage 0 Vaginal Cancer AJCC v7 8 216597 -NCIT:C4072 Mesonephric Adenocarcinoma 6 216598 -NCIT:C185381 Metastatic Mesonephric Adenocarcinoma 7 216599 -NCIT:C40253 Vaginal Mesonephric Adenocarcinoma 7 216600 -NCIT:C40254 Cervical Mesonephric Adenocarcinoma 7 216601 -NCIT:C4866 Vulvar Carcinoma 6 216602 -NCIT:C128243 Vulvar Neuroendocrine Carcinoma 7 216603 -NCIT:C128244 Vulvar Small Cell Neuroendocrine Carcinoma 8 216604 -NCIT:C40298 Bartholin Gland Small Cell Neuroendocrine Carcinoma 9 216605 -NCIT:C128245 Vulvar Large Cell Neuroendocrine Carcinoma 8 216606 -NCIT:C128247 Vulvar Merkel Cell Carcinoma 8 216607 -NCIT:C139618 Vulvar Cancer by AJCC v8 Stage 7 216608 -NCIT:C139619 Stage I Vulvar Cancer AJCC v8 8 216609 -NCIT:C139620 Stage IA Vulvar Cancer AJCC v8 9 216610 -NCIT:C139621 Stage IB Vulvar Cancer AJCC v8 9 216611 -NCIT:C139622 Stage II Vulvar Cancer AJCC v8 8 216612 -NCIT:C139623 Stage III Vulvar Cancer AJCC v8 8 216613 -NCIT:C139624 Stage IIIA Vulvar Cancer AJCC v8 9 216614 -NCIT:C139625 Stage IIIB Vulvar Cancer AJCC v8 9 216615 -NCIT:C139626 Stage IIIC Vulvar Cancer AJCC v8 9 216616 -NCIT:C139627 Stage IV Vulvar Cancer AJCC v8 8 216617 -NCIT:C139628 Stage IVA Vulvar Cancer AJCC v8 9 216618 -NCIT:C139630 Stage IVB Vulvar Cancer AJCC v8 9 216619 -NCIT:C156066 Metastatic Vulvar Carcinoma 7 216620 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 8 216621 -NCIT:C170786 Advanced Vulvar Carcinoma 8 216622 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 8 216623 -NCIT:C174198 Unresectable Vulvar Carcinoma 7 216624 -NCIT:C174199 Unresectable Vulvar Squamous Cell Carcinoma 8 216625 -NCIT:C174508 Refractory Vulvar Carcinoma 7 216626 -NCIT:C185304 Refractory Vulvar Squamous Cell Carcinoma 8 216627 -NCIT:C4052 Vulvar Squamous Cell Carcinoma 7 216628 -NCIT:C128167 Vulvar Keratoacanthoma 8 216629 -NCIT:C174199 Unresectable Vulvar Squamous Cell Carcinoma 8 216630 -NCIT:C174200 Recurrent Vulvar Squamous Cell Carcinoma 8 216631 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 8 216632 -NCIT:C181902 Vulvar Squamous Cell Carcinoma, Not Otherwise Specified 8 216633 -NCIT:C181903 Human Papillomavirus-Independent Vulvar Squamous Cell Carcinoma 8 216634 -NCIT:C185304 Refractory Vulvar Squamous Cell Carcinoma 8 216635 -NCIT:C27679 Human Papillomavirus-Related Vulvar Squamous Cell Carcinoma 8 216636 -NCIT:C40287 Vulvar Warty Carcinoma 9 216637 -NCIT:C40284 Vulvar Keratinizing Squamous Cell Carcinoma 8 216638 -NCIT:C40285 Vulvar Non-Keratinizing Squamous Cell Carcinoma 8 216639 -NCIT:C40286 Vulvar Basaloid Carcinoma 8 216640 -NCIT:C40289 Vulvar Squamous Cell Carcinoma with Tumor Giant Cells 8 216641 -NCIT:C40293 Bartholin Gland Squamous Cell Carcinoma 8 216642 -NCIT:C6383 Vulvar Verrucous Carcinoma 8 216643 -NCIT:C6380 Vulvar Adenocarcinoma 7 216644 -NCIT:C128162 Vulvar Adenocarcinoma of Mammary Gland Type 8 216645 -NCIT:C128164 Vulvar Adenocarcinoma of Sweat Gland Origin 8 216646 -NCIT:C4027 Vulvar Paget Disease 9 216647 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 9 216648 -NCIT:C40306 Vulvar Porocarcinoma 10 216649 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 9 216650 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 9 216651 -NCIT:C128166 Vulvar Adenocarcinoma, Intestinal-Type 8 216652 -NCIT:C40309 Vulvar Sebaceous Carcinoma 8 216653 -NCIT:C7719 Bartholin Gland Adenocarcinoma 8 216654 -NCIT:C6381 Vulvar Basal Cell Carcinoma 7 216655 -NCIT:C90345 Vulvar Cancer by AJCC v6 Stage 7 216656 -NCIT:C4522 Stage 0 Vulvar Cancer AJCC v6 8 216657 -NCIT:C7854 Stage I Vulvar Cancer AJCC v6 8 216658 -NCIT:C6328 Stage IA Vulvar Carcinoma AJCC v6 9 216659 -NCIT:C6329 Stage IB Vulvar Carcinoma AJCC v6 9 216660 -NCIT:C9051 Stage II Vulvar Cancer AJCC v6 8 216661 -NCIT:C9052 Stage III Vulvar Cancer AJCC v6 8 216662 -NCIT:C9053 Stage IV Vulvar Cancer AJCC v6 8 216663 -NCIT:C27247 Stage IVB Vulvar Cancer AJCC v6 and v7 9 216664 -NCIT:C6330 Stage IVA Vulvar Cancer AJCC v6 9 216665 -NCIT:C9054 Recurrent Vulvar Carcinoma 7 216666 -NCIT:C174200 Recurrent Vulvar Squamous Cell Carcinoma 8 216667 -NCIT:C9055 Bartholin Gland Carcinoma 7 216668 -NCIT:C40293 Bartholin Gland Squamous Cell Carcinoma 8 216669 -NCIT:C40295 Bartholin Gland Adenoid Cystic Carcinoma 8 216670 -NCIT:C40296 Bartholin Gland Adenosquamous Carcinoma 8 216671 -NCIT:C40297 Bartholin Gland Transitional Cell Carcinoma 8 216672 -NCIT:C40298 Bartholin Gland Small Cell Neuroendocrine Carcinoma 8 216673 -NCIT:C7719 Bartholin Gland Adenocarcinoma 8 216674 -NCIT:C91203 Vulvar Cancer by AJCC v7 Stage 7 216675 -NCIT:C89445 Stage 0 Vulvar Cancer AJCC v7 8 216676 -NCIT:C89447 Stage I Vulvar Cancer AJCC v7 8 216677 -NCIT:C89448 Stage IA Vulvar Cancer AJCC v7 9 216678 -NCIT:C89449 Stage IB Vulvar Cancer AJCC v7 9 216679 -NCIT:C89451 Stage II Vulvar Cancer AJCC v7 8 216680 -NCIT:C89452 Stage III Vulvar Cancer AJCC v7 8 216681 -NCIT:C87003 Stage IIIA Vulvar Cancer AJCC v7 9 216682 -NCIT:C87004 Stage IIIB Vulvar Cancer AJCC v7 9 216683 -NCIT:C87005 Stage IIIC Vulvar Cancer AJCC v7 9 216684 -NCIT:C89453 Stage IV Vulvar Cancer AJCC v7 8 216685 -NCIT:C27247 Stage IVB Vulvar Cancer AJCC v6 and v7 9 216686 -NCIT:C89454 Stage IVA Vulvar Cancer AJCC v7 9 216687 -NCIT:C9362 Clitoral Carcinoma 7 216688 -NCIT:C9363 Labia Majora Carcinoma 7 216689 -NCIT:C9364 Labia Minora Carcinoma 7 216690 -NCIT:C4908 Ovarian Carcinoma 6 216691 -NCIT:C128081 Ovarian Cancer by FIGO Stage 7 216692 -NCIT:C128082 FIGO Stage IC1 Ovarian Cancer 8 216693 -NCIT:C128083 FIGO Stage IC2 Ovarian Cancer 8 216694 -NCIT:C128084 FIGO Stage IC3 Ovarian Cancer 8 216695 -NCIT:C128085 FIGO Stage II Ovarian Cancer 8 216696 -NCIT:C5223 Stage IIA Ovarian Cancer AJCC V6 and v7 9 216697 -NCIT:C5224 Stage IIB Ovarian Cancer AJCC v6 and v7 9 216698 -NCIT:C128086 FIGO Stage III Ovarian Cancer 8 216699 -NCIT:C128087 FIGO Stage IIIA Ovarian Cancer 9 216700 -NCIT:C128088 FIGO Stage IIIA1 Ovarian Cancer 10 216701 -NCIT:C128089 FIGO Stage IIIA1(i) Ovarian Cancer 11 216702 -NCIT:C128090 FIGO Stage IIIA1(ii) Ovarian Cancer 11 216703 -NCIT:C128091 FIGO Stage IIIA2 Ovarian Cancer 10 216704 -NCIT:C128092 FIGO Stage IIIB Ovarian Cancer 9 216705 -NCIT:C128093 FIGO Stage IIIC Ovarian Cancer 9 216706 -NCIT:C128094 FIGO Stage IVA Ovarian Cancer 8 216707 -NCIT:C128095 FIGO Stage IVB Ovarian Cancer 8 216708 -NCIT:C7829 Stage I Ovarian Cancer AJCC v6 and v7 8 216709 -NCIT:C5220 Stage IA Ovarian Cancer AJCC v6 and v7 9 216710 -NCIT:C5221 Stage IB Ovarian Cancer AJCC v6 and v7 9 216711 -NCIT:C5222 Stage IC Ovarian Cancer AJCC v6 and v7 9 216712 -NCIT:C7832 Stage IV Ovarian Cancer AJCC v6 and v7 8 216713 -NCIT:C128106 Ovarian Cancer by AJCC v6 and v7 Stage 7 216714 -NCIT:C7829 Stage I Ovarian Cancer AJCC v6 and v7 8 216715 -NCIT:C5220 Stage IA Ovarian Cancer AJCC v6 and v7 9 216716 -NCIT:C5221 Stage IB Ovarian Cancer AJCC v6 and v7 9 216717 -NCIT:C5222 Stage IC Ovarian Cancer AJCC v6 and v7 9 216718 -NCIT:C7830 Stage II Ovarian Cancer AJCC v6 and v7 8 216719 -NCIT:C5223 Stage IIA Ovarian Cancer AJCC V6 and v7 9 216720 -NCIT:C5224 Stage IIB Ovarian Cancer AJCC v6 and v7 9 216721 -NCIT:C5225 Stage IIC Ovarian Cancer AJCC v6 and v7 9 216722 -NCIT:C7831 Stage III Ovarian Cancer AJCC v6 and v7 8 216723 -NCIT:C6258 Stage IIIA Ovarian Cancer AJCC v6 and v7 9 216724 -NCIT:C6259 Stage IIIB Ovarian Cancer AJCC v6 and v7 9 216725 -NCIT:C6260 Stage IIIC Ovarian Cancer AJCC v6 and v7 9 216726 -NCIT:C7832 Stage IV Ovarian Cancer AJCC v6 and v7 8 216727 -NCIT:C139963 Ovarian Cancer by AJCC v8 Stage 7 216728 -NCIT:C139964 Stage I Ovarian Cancer AJCC v8 8 216729 -NCIT:C139965 Stage IA Ovarian Cancer AJCC v8 9 216730 -NCIT:C139966 Stage IB Ovarian Cancer AJCC v8 9 216731 -NCIT:C139967 Stage IC Ovarian Cancer AJCC v8 9 216732 -NCIT:C139968 Stage II Ovarian Cancer AJCC v8 8 216733 -NCIT:C139969 Stage IIA Ovarian Cancer AJCC v8 9 216734 -NCIT:C139970 Stage IIB Ovarian Cancer AJCC v8 9 216735 -NCIT:C139971 Stage III Ovarian Cancer AJCC v8 8 216736 -NCIT:C139972 Stage IIIA Ovarian Cancer AJCC v8 9 216737 -NCIT:C139973 Stage IIIA1 Ovarian Cancer AJCC v8 10 216738 -NCIT:C139974 Stage IIIA2 Ovarian Cancer AJCC v8 10 216739 -NCIT:C139975 Stage IIIB Ovarian Cancer AJCC v8 9 216740 -NCIT:C139976 Stage IIIC Ovarian Cancer AJCC v8 9 216741 -NCIT:C139977 Stage IV Ovarian Cancer AJCC v8 8 216742 -NCIT:C139978 Stage IVA Ovarian Cancer AJCC v8 9 216743 -NCIT:C139979 Stage IVB Ovarian Cancer AJCC v8 9 216744 -NCIT:C150091 Refractory Ovarian Carcinoma 7 216745 -NCIT:C147561 Platinum-Resistant Ovarian Carcinoma 8 216746 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 9 216747 -NCIT:C179459 Unresectable Platinum-Resistant Ovarian Carcinoma 9 216748 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 9 216749 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 10 216750 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 10 216751 -NCIT:C170968 Refractory Ovarian Adenocarcinoma 8 216752 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 9 216753 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 9 216754 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 10 216755 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 10 216756 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 9 216757 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 9 216758 -NCIT:C178671 Refractory Ovarian Seromucinous Carcinoma 8 216759 -NCIT:C178682 Refractory Ovarian Transitional Cell Carcinoma 8 216760 -NCIT:C178683 Refractory Ovarian Undifferentiated Carcinoma 8 216761 -NCIT:C178700 Platinum-Refractory Ovarian Carcinoma 8 216762 -NCIT:C179207 Refractory Ovarian Squamous Cell Carcinoma 8 216763 -NCIT:C183126 Refractory Malignant Ovarian Brenner Tumor 8 216764 -NCIT:C156064 Metastatic Ovarian Carcinoma 7 216765 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 8 216766 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 216767 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 216768 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 216769 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 9 216770 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 216771 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 216772 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 9 216773 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 216774 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 216775 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 216776 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 216777 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 216778 -NCIT:C165458 Advanced Ovarian Carcinoma 8 216779 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 216780 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 216781 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 216782 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 216783 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 216784 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 216785 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 216786 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 8 216787 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 216788 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 216789 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 216790 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 216791 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 8 216792 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 216793 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 8 216794 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 216795 -NCIT:C172234 Metastatic Ovarian Undifferentiated Carcinoma 8 216796 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 8 216797 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 216798 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 216799 -NCIT:C180333 Metastatic Microsatellite Stable Ovarian Carcinoma 8 216800 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 216801 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 8 216802 -NCIT:C27391 Metastatic Ovarian Small Cell Carcinoma, Hypercalcemic Type 8 216803 -NCIT:C159902 Platinum-Sensitive Ovarian Carcinoma 7 216804 -NCIT:C188391 Recurrent Platinum-Sensitive Ovarian Carcinoma 8 216805 -NCIT:C167073 Unresectable Ovarian Carcinoma 7 216806 -NCIT:C160781 Unresectable Ovarian Serous Adenocarcinoma 8 216807 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 9 216808 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 216809 -NCIT:C172235 Unresectable Ovarian Undifferentiated Carcinoma 8 216810 -NCIT:C179459 Unresectable Platinum-Resistant Ovarian Carcinoma 8 216811 -NCIT:C183245 Unresectable Ovarian Mucinous Adenocarcinoma 8 216812 -NCIT:C186273 Unresectable Ovarian Endometrioid Adenocarcinoma 8 216813 -NCIT:C171032 Ovarian Neuroendocrine Carcinoma 7 216814 -NCIT:C40440 Ovarian Small Cell Carcinoma, Pulmonary-Type 8 216815 -NCIT:C5238 Ovarian Large Cell Neuroendocrine Carcinoma 8 216816 -NCIT:C179334 Ovarian Dedifferentiated Carcinoma 7 216817 -NCIT:C180332 Microsatellite Stable Ovarian Carcinoma 7 216818 -NCIT:C180333 Metastatic Microsatellite Stable Ovarian Carcinoma 8 216819 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 216820 -NCIT:C27390 Ovarian Small Cell Carcinoma 7 216821 -NCIT:C40439 Ovarian Small Cell Carcinoma, Hypercalcemic Type 8 216822 -NCIT:C189334 Childhood Ovarian Small Cell Carcinoma, Hypercalcemic Type 9 216823 -NCIT:C27391 Metastatic Ovarian Small Cell Carcinoma, Hypercalcemic Type 9 216824 -NCIT:C40440 Ovarian Small Cell Carcinoma, Pulmonary-Type 8 216825 -NCIT:C36102 Hereditary Ovarian Carcinoma 7 216826 -NCIT:C148024 BRCA-Associated Ovarian Carcinoma 8 216827 -NCIT:C148025 Recurrent BRCA- Associated Ovarian Carcinoma 9 216828 -NCIT:C40090 Ovarian Seromucinous Carcinoma 7 216829 -NCIT:C178669 Recurrent Ovarian Seromucinous Carcinoma 8 216830 -NCIT:C178671 Refractory Ovarian Seromucinous Carcinoma 8 216831 -NCIT:C40093 Ovarian Squamous Cell Carcinoma 7 216832 -NCIT:C179207 Refractory Ovarian Squamous Cell Carcinoma 8 216833 -NCIT:C4270 Malignant Ovarian Brenner Tumor 7 216834 -NCIT:C153818 Recurrent Malignant Ovarian Brenner Tumor 8 216835 -NCIT:C183126 Refractory Malignant Ovarian Brenner Tumor 8 216836 -NCIT:C4509 Ovarian Undifferentiated Carcinoma 7 216837 -NCIT:C170754 Recurrent Ovarian Undifferentiated Carcinoma 8 216838 -NCIT:C172234 Metastatic Ovarian Undifferentiated Carcinoma 8 216839 -NCIT:C172235 Unresectable Ovarian Undifferentiated Carcinoma 8 216840 -NCIT:C178683 Refractory Ovarian Undifferentiated Carcinoma 8 216841 -NCIT:C5240 Ovarian Transitional Cell Carcinoma 7 216842 -NCIT:C153819 Recurrent Ovarian Transitional Cell Carcinoma 8 216843 -NCIT:C178682 Refractory Ovarian Transitional Cell Carcinoma 8 216844 -NCIT:C7700 Ovarian Adenocarcinoma 7 216845 -NCIT:C153614 Recurrent Ovarian Adenocarcinoma 8 216846 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 9 216847 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 9 216848 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 10 216849 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 10 216850 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 10 216851 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 9 216852 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 9 216853 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 10 216854 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 9 216855 -NCIT:C170968 Refractory Ovarian Adenocarcinoma 8 216856 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 9 216857 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 9 216858 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 10 216859 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 10 216860 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 9 216861 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 9 216862 -NCIT:C179208 Ovarian Signet Ring Cell Carcinoma 8 216863 -NCIT:C179321 Ovarian Mesonephric-Like Adenocarcinoma 8 216864 -NCIT:C179339 Ovarian Mixed Cell Adenocarcinoma 8 216865 -NCIT:C40078 Ovarian Clear Cell Adenocarcinoma 8 216866 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 9 216867 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 9 216868 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 10 216869 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 9 216870 -NCIT:C7980 Ovarian Clear Cell Cystadenocarcinoma 9 216871 -NCIT:C5228 Ovarian Cystadenocarcinoma 8 216872 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 9 216873 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 10 216874 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 9 216875 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 9 216876 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 10 216877 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 11 216878 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 11 216879 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 10 216880 -NCIT:C7980 Ovarian Clear Cell Cystadenocarcinoma 9 216881 -NCIT:C5243 Ovarian Mucinous Adenocarcinoma 8 216882 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 9 216883 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 9 216884 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 9 216885 -NCIT:C183245 Unresectable Ovarian Mucinous Adenocarcinoma 9 216886 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 9 216887 -NCIT:C7550 Ovarian Serous Adenocarcinoma 8 216888 -NCIT:C105555 Ovarian High Grade Serous Adenocarcinoma 9 216889 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 10 216890 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 10 216891 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 10 216892 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 11 216893 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 10 216894 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 11 216895 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 11 216896 -NCIT:C105556 Ovarian Low Grade Serous Adenocarcinoma 9 216897 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 10 216898 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 10 216899 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 9 216900 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 10 216901 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 10 216902 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 10 216903 -NCIT:C160781 Unresectable Ovarian Serous Adenocarcinoma 9 216904 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 10 216905 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 11 216906 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 9 216907 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 10 216908 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 11 216909 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 11 216910 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 10 216911 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 11 216912 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 11 216913 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 10 216914 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 11 216915 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 11 216916 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 10 216917 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 11 216918 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 11 216919 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 9 216920 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 10 216921 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 10 216922 -NCIT:C6256 Ovarian Serous Surface Papillary Adenocarcinoma 9 216923 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 9 216924 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 10 216925 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 11 216926 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 11 216927 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 10 216928 -NCIT:C7979 Ovarian Endometrioid Adenocarcinoma 8 216929 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 9 216930 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 9 216931 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 9 216932 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 10 216933 -NCIT:C186273 Unresectable Ovarian Endometrioid Adenocarcinoma 9 216934 -NCIT:C40061 Ovarian Endometrioid Adenocarcinoma with Squamous Differentiation 9 216935 -NCIT:C7833 Recurrent Ovarian Carcinoma 7 216936 -NCIT:C148025 Recurrent BRCA- Associated Ovarian Carcinoma 8 216937 -NCIT:C153614 Recurrent Ovarian Adenocarcinoma 8 216938 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 9 216939 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 9 216940 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 10 216941 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 10 216942 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 10 216943 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 9 216944 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 9 216945 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 10 216946 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 9 216947 -NCIT:C153818 Recurrent Malignant Ovarian Brenner Tumor 8 216948 -NCIT:C153819 Recurrent Ovarian Transitional Cell Carcinoma 8 216949 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 8 216950 -NCIT:C170754 Recurrent Ovarian Undifferentiated Carcinoma 8 216951 -NCIT:C178669 Recurrent Ovarian Seromucinous Carcinoma 8 216952 -NCIT:C188391 Recurrent Platinum-Sensitive Ovarian Carcinoma 8 216953 -NCIT:C190201 Locally Recurrent Ovarian Carcinoma 8 216954 -NCIT:C7558 Endometrial Carcinoma 6 216955 -NCIT:C114656 Endometrial Adenosquamous Carcinoma 7 216956 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 8 216957 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 8 216958 -NCIT:C126769 Endometrial Dedifferentiated Carcinoma 7 216959 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 8 216960 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 8 216961 -NCIT:C150093 Refractory Endometrial Carcinoma 7 216962 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 8 216963 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 8 216964 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 8 216965 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 8 216966 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 9 216967 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 9 216968 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 9 216969 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 9 216970 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 9 216971 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 8 216972 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 8 216973 -NCIT:C150094 Recurrent Endometrial Carcinoma 7 216974 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 8 216975 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 8 216976 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 9 216977 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 9 216978 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 9 216979 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 9 216980 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 9 216981 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 8 216982 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 8 216983 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 8 216984 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 8 216985 -NCIT:C190200 Locally Recurrent Endometrial Carcinoma 8 216986 -NCIT:C156068 Metastatic Endometrial Carcinoma 7 216987 -NCIT:C159676 Advanced Endometrial Carcinoma 8 216988 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 216989 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 216990 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 216991 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 216992 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 8 216993 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 216994 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 216995 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 9 216996 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 8 216997 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 8 216998 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 216999 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 8 217000 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 9 217001 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 217002 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 217003 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 217004 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 217005 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 9 217006 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 217007 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 217008 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 217009 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 217010 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 9 217011 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 9 217012 -NCIT:C171033 Endometrial Neuroendocrine Carcinoma 7 217013 -NCIT:C126772 Endometrial Large Cell Neuroendocrine Carcinoma 8 217014 -NCIT:C40155 Endometrial Small Cell Neuroendocrine Carcinoma 8 217015 -NCIT:C171610 Unresectable Endometrial Carcinoma 7 217016 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 8 217017 -NCIT:C180335 Microsatellite Stable Endometrial Carcinoma 7 217018 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 8 217019 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 217020 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 8 217021 -NCIT:C190680 High Grade Endometrial Carcinoma 7 217022 -NCIT:C27838 Endometrial Serous Adenocarcinoma 8 217023 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 9 217024 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 9 217025 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 9 217026 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 217027 -NCIT:C187374 Platinum-Sensitive Endometrial Serous Adenocarcinoma 9 217028 -NCIT:C40148 High Grade Endometrial Endometrioid Adenocarcinoma 8 217029 -NCIT:C40156 Endometrial Undifferentiated Carcinoma 8 217030 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 9 217031 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 9 217032 -NCIT:C8028 Endometrial Clear Cell Adenocarcinoma 8 217033 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 9 217034 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 9 217035 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 9 217036 -NCIT:C40154 Endometrial Transitional Cell Carcinoma 7 217037 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 8 217038 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 8 217039 -NCIT:C7359 Endometrial Adenocarcinoma 7 217040 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 8 217041 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 9 217042 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 9 217043 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 9 217044 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 9 217045 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 9 217046 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 8 217047 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 9 217048 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 9 217049 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 9 217050 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 9 217051 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 9 217052 -NCIT:C179322 Endometrial Mesonephric-Like Adenocarcinoma 8 217053 -NCIT:C180536 Endometrial Mucinous Adenocarcinoma, Intestinal-Type 8 217054 -NCIT:C180537 Endometrial Mucinous Adenocarcinoma, Gastric-Type 8 217055 -NCIT:C39749 Type II Endometrial Adenocarcinoma 8 217056 -NCIT:C27838 Endometrial Serous Adenocarcinoma 9 217057 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 10 217058 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 10 217059 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 10 217060 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 11 217061 -NCIT:C187374 Platinum-Sensitive Endometrial Serous Adenocarcinoma 10 217062 -NCIT:C40152 Serous Endometrial Intraepithelial Carcinoma 9 217063 -NCIT:C8028 Endometrial Clear Cell Adenocarcinoma 9 217064 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 10 217065 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 10 217066 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 10 217067 -NCIT:C40145 Type I Endometrial Adenocarcinoma 8 217068 -NCIT:C40144 Endometrial Mucinous Adenocarcinoma 9 217069 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 10 217070 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 10 217071 -NCIT:C40149 FIGO Grade 1 Endometrial Mucinous Adenocarcinoma 10 217072 -NCIT:C40150 FIGO Grade 2 Endometrial Mucinous Adenocarcinoma 10 217073 -NCIT:C40151 FIGO Grade 3 Endometrial Mucinous Adenocarcinoma 10 217074 -NCIT:C6287 Endometrial Endometrioid Adenocarcinoma 9 217075 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 10 217076 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 10 217077 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 10 217078 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 11 217079 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 11 217080 -NCIT:C180510 Low Grade Endometrial Endometrioid Adenocarcinoma 10 217081 -NCIT:C40146 FIGO Grade 1 Endometrial Endometrioid Adenocarcinoma 11 217082 -NCIT:C40147 FIGO Grade 2 Endometrial Endometrioid Adenocarcinoma 11 217083 -NCIT:C180512 POLE-Ultramutated Endometrial Endometrioid Adenocarcinoma 10 217084 -NCIT:C180514 Mismatch Repair-Deficient Endometrial Endometrioid Adenocarcinoma 10 217085 -NCIT:C180515 p53-Mutant Endometrial Endometrioid Adenocarcinoma 10 217086 -NCIT:C180516 No Specific Molecular Profile Endometrial Endometrioid Adenocarcinoma 10 217087 -NCIT:C27839 Endometrial Endometrioid Adenocarcinoma, Secretory Variant 10 217088 -NCIT:C27843 Endometrial Endometrioid Adenocarcinoma with Clear Cell Change 10 217089 -NCIT:C27844 Endometrial Endometrioid Adenocarcinoma with a Poorly Differentiated Carcinomatous Component 10 217090 -NCIT:C27845 Endometrial Endometrioid Adenocarcinoma with an Undifferentiated Carcinomatous Component 10 217091 -NCIT:C27846 Villoglandular Endometrial Endometrioid Adenocarcinoma 10 217092 -NCIT:C27848 Endometrial Endometrioid Adenocarcinoma, Ciliated Variant 10 217093 -NCIT:C27849 Oxyphilic Endometrial Endometrioid Adenocarcinoma 10 217094 -NCIT:C27850 Endometrial Endometrioid Adenocarcinoma with Spindled Epithelial Cells 10 217095 -NCIT:C40148 High Grade Endometrial Endometrioid Adenocarcinoma 10 217096 -NCIT:C6290 Endometrial Endometrioid Adenocarcinoma, Variant with Squamous Differentiation 10 217097 -NCIT:C40153 Endometrial Mixed Cell Adenocarcinoma 8 217098 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 9 217099 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 9 217100 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 9 217101 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 8 217102 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 9 217103 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 217104 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 217105 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 217106 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 217107 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 9 217108 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 217109 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 217110 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 217111 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 217112 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 9 217113 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 9 217114 -NCIT:C8719 Endometrial Squamous Cell Carcinoma 7 217115 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 8 217116 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 8 217117 -NCIT:C9039 Cervical Carcinoma 6 217118 -NCIT:C128045 Cervical Neuroendocrine Carcinoma 7 217119 -NCIT:C40214 Cervical Large Cell Neuroendocrine Carcinoma 8 217120 -NCIT:C7982 Cervical Small Cell Neuroendocrine Carcinoma 8 217121 -NCIT:C139733 Cervical Cancer by AJCC v8 Stage 7 217122 -NCIT:C139734 Stage I Cervical Cancer AJCC v8 8 217123 -NCIT:C139735 Stage IA Cervical Cancer AJCC v8 9 217124 -NCIT:C139736 Stage IA1 Cervical Cancer AJCC v8 10 217125 -NCIT:C139737 Stage IA2 Cervical Cancer AJCC v8 10 217126 -NCIT:C139738 Stage IB Cervical Cancer AJCC v8 9 217127 -NCIT:C139739 Stage IB1 Cervical Cancer AJCC v8 10 217128 -NCIT:C139740 Stage IB2 Cervical Cancer AJCC v8 10 217129 -NCIT:C139743 Stage II Cervical Cancer AJCC v8 8 217130 -NCIT:C139744 Stage IIA Cervical Cancer AJCC v8 9 217131 -NCIT:C139745 Stage IIA1 Cervical Cancer AJCC v8 10 217132 -NCIT:C139746 Stage IIA2 Cervical Cancer AJCC v8 10 217133 -NCIT:C139748 Stage IIB Cervical Cancer AJCC v8 9 217134 -NCIT:C139749 Stage III Cervical Cancer AJCC v8 8 217135 -NCIT:C139750 Stage IIIA Cervical Cancer AJCC v8 9 217136 -NCIT:C139752 Stage IIIB Cervical Cancer AJCC v8 9 217137 -NCIT:C139753 Stage IV Cervical Cancer AJCC v8 8 217138 -NCIT:C139754 Stage IVA Cervical Cancer AJCC v8 9 217139 -NCIT:C139755 Stage IVB Cervical Cancer AJCC v8 9 217140 -NCIT:C153387 Metastatic Cervical Carcinoma 7 217141 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 8 217142 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 217143 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 217144 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 8 217145 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 217146 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 217147 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 217148 -NCIT:C153390 Metastatic Cervical Adenosquamous Carcinoma 8 217149 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 217150 -NCIT:C156294 Advanced Cervical Carcinoma 8 217151 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 217152 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 217153 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 217154 -NCIT:C156295 Locally Advanced Cervical Carcinoma 8 217155 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 217156 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 217157 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 9 217158 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 217159 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 217160 -NCIT:C162225 Cervical Cancer by FIGO Stage 2018 7 217161 -NCIT:C162226 Stage I Cervical Cancer FIGO 2018 8 217162 -NCIT:C162227 Stage IA Cervical Cancer FIGO 2018 9 217163 -NCIT:C162228 Stage IA1 Cervical Cancer FIGO 2018 10 217164 -NCIT:C162229 Stage IA2 Cervical Cancer FIGO 2018 10 217165 -NCIT:C162230 Stage IB Cervical Cancer FIGO 2018 9 217166 -NCIT:C162231 Stage IB1 Cervical Cancer FIGO 2018 10 217167 -NCIT:C162232 Stage IB2 Cervical Cancer FIGO 2018 10 217168 -NCIT:C162233 Stage IB3 Cervical Cancer FIGO 2018 10 217169 -NCIT:C162234 Stage II Cervical Cancer FIGO 2018 8 217170 -NCIT:C162235 Stage IIA Cervical Cancer FIGO 2018 9 217171 -NCIT:C162236 Stage IIA1 Cervical Cancer FIGO 2018 10 217172 -NCIT:C162237 Stage IIA2 Cervical Cancer FIGO 2018 10 217173 -NCIT:C162238 Stage IIB Cervical Cancer FIGO 2018 9 217174 -NCIT:C162239 Stage III Cervical Cancer FIGO 2018 8 217175 -NCIT:C162240 Stage IIIA Cervical Cancer FIGO 2018 9 217176 -NCIT:C162241 Stage IIIB Cervical Cancer FIGO 2018 9 217177 -NCIT:C162242 Stage IIIC Cervical Cancer FIGO 2018 9 217178 -NCIT:C162243 Stage IIIC1 Cervical Cancer FIGO 2018 10 217179 -NCIT:C162244 Stage IIIC2 Cervical Cancer FIGO 2018 10 217180 -NCIT:C162245 Stage IV Cervical Cancer FIGO 2018 8 217181 -NCIT:C162246 Stage IVA Cervical Cancer FIGO 2018 9 217182 -NCIT:C162247 Stage IVB Cervical Cancer FIGO 2018 9 217183 -NCIT:C170513 Refractory Cervical Carcinoma 7 217184 -NCIT:C181034 Refractory Cervical Squamous Cell Carcinoma 8 217185 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 9 217186 -NCIT:C181036 Refractory Cervical Adenocarcinoma 8 217187 -NCIT:C174024 Unresectable Cervical Carcinoma 7 217188 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 8 217189 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 217190 -NCIT:C174025 Unresectable Cervical Squamous Cell Carcinoma 8 217191 -NCIT:C174027 Unresectable Cervical Adenosquamous Carcinoma 8 217192 -NCIT:C174029 Unresectable Cervical Adenocarcinoma 8 217193 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 217194 -NCIT:C180878 Cervical Mucoepidermoid Carcinoma 7 217195 -NCIT:C181562 Cervical Cancer by AJCC v9 Stage 7 217196 -NCIT:C181564 Stage I Cervical Cancer AJCC v9 8 217197 -NCIT:C181565 Stage IA Cervical Cancer AJCC v9 9 217198 -NCIT:C181567 Stage IA1 Cervical Cancer AJCC v9 10 217199 -NCIT:C181568 Stage IA2 Cervical Cancer AJCC v9 10 217200 -NCIT:C181570 Stage IB Cervical Cancer AJCC v9 9 217201 -NCIT:C181571 Stage IB1 Cervical Cancer AJCC v9 10 217202 -NCIT:C181576 Stage IB2 Cervical Cancer AJCC v9 10 217203 -NCIT:C181579 Stage IB3 Cervical Cancer AJCC v9 10 217204 -NCIT:C181583 Stage II Cervical Cancer AJCC v9 8 217205 -NCIT:C181584 Stage IIA Cervical Cancer AJCC v9 9 217206 -NCIT:C181586 Stage IIA1 Cervical Cancer AJCC v9 10 217207 -NCIT:C181588 Stage IIA2 Cervical Cancer AJCC v9 10 217208 -NCIT:C181591 Stage IIB Cervical Cancer AJCC v9 9 217209 -NCIT:C181592 Stage III Cervical Cancer AJCC v9 8 217210 -NCIT:C181594 Stage IIIA Cervical Cancer AJCC v9 9 217211 -NCIT:C181595 Stage IIIB Cervical Cancer AJCC v9 9 217212 -NCIT:C181596 Stage IIIC Cervical Cancer AJCC v9 9 217213 -NCIT:C181597 Stage IIIC1 Cervical Cancer AJCC v9 10 217214 -NCIT:C181598 Stage IIIC2 Cervical Cancer AJCC v9 10 217215 -NCIT:C181599 Stage IV Cervical Cancer AJCC v9 8 217216 -NCIT:C181601 Stage IVA Cervical Cancer AJCC v9 9 217217 -NCIT:C181603 Stage IVB Cervical Cancer AJCC v9 9 217218 -NCIT:C186619 Cervical Cancer by FIGO Stage 2009 7 217219 -NCIT:C186620 Stage I Cervical Cancer FIGO 2009 8 217220 -NCIT:C186621 Stage IA Cervical Cancer FIGO 2009 9 217221 -NCIT:C186622 Stage IA1 Cervical Cancer FIGO 2009 10 217222 -NCIT:C186623 Stage IA2 Cervical Cancer FIGO 2009 10 217223 -NCIT:C186624 Stage IB Cervical Cancer FIGO 2009 9 217224 -NCIT:C186625 Stage IB1 Cervical Cancer FIGO 2009 10 217225 -NCIT:C186626 Stage IB2 Cervical Cancer FIGO 2009 10 217226 -NCIT:C186627 Stage II Cervical Cancer FIGO 2009 8 217227 -NCIT:C186628 Stage IIA Cervical Cancer FIGO 2009 9 217228 -NCIT:C186629 Stage IIA1 Cervical Cancer FIGO 2009 10 217229 -NCIT:C186630 Stage IIA2 Cervical Cancer FIGO 2009 10 217230 -NCIT:C186631 Stage IIB Cervical Cancer FIGO 2009 9 217231 -NCIT:C186632 Stage III Cervical Cancer FIGO 2009 8 217232 -NCIT:C186633 Stage IIIA Cervical Cancer FIGO 2009 9 217233 -NCIT:C186634 Stage IIIB Cervical Cancer FIGO 2009 9 217234 -NCIT:C186635 Stage IV Cervical Cancer FIGO 2009 8 217235 -NCIT:C186636 Stage IVA Cervical Cancer FIGO 2009 9 217236 -NCIT:C186637 Stage IVB Cervical Cancer FIGO 2009 9 217237 -NCIT:C27675 Human Papillomavirus-Related Cervical Carcinoma 7 217238 -NCIT:C27676 Human Papillomavirus-Related Cervical Squamous Cell Carcinoma 8 217239 -NCIT:C40192 Cervical Papillary Squamous Cell Carcinoma 9 217240 -NCIT:C40191 Cervical Warty Carcinoma 10 217241 -NCIT:C40194 Cervical Squamotransitional Carcinoma 10 217242 -NCIT:C27677 Human Papillomavirus-Related Cervical Adenocarcinoma 8 217243 -NCIT:C127907 Endocervical Adenocarcinoma, Usual-Type 9 217244 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 10 217245 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 10 217246 -NCIT:C40208 Cervical Villoglandular Adenocarcinoma 10 217247 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 9 217248 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 9 217249 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 9 217250 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 9 217251 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 9 217252 -NCIT:C40213 Cervical Adenoid Basal Carcinoma 7 217253 -NCIT:C4028 Cervical Squamous Cell Carcinoma 7 217254 -NCIT:C136649 Recurrent Cervical Squamous Cell Carcinoma 8 217255 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 8 217256 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 217257 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 217258 -NCIT:C174025 Unresectable Cervical Squamous Cell Carcinoma 8 217259 -NCIT:C180839 Cervical Squamous Cell Carcinoma, Not Otherwise Specified 8 217260 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 9 217261 -NCIT:C180841 Human Papillomavirus-Independent Cervical Squamous Cell Carcinoma 8 217262 -NCIT:C181034 Refractory Cervical Squamous Cell Carcinoma 8 217263 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 9 217264 -NCIT:C27676 Human Papillomavirus-Related Cervical Squamous Cell Carcinoma 8 217265 -NCIT:C40192 Cervical Papillary Squamous Cell Carcinoma 9 217266 -NCIT:C40191 Cervical Warty Carcinoma 10 217267 -NCIT:C40194 Cervical Squamotransitional Carcinoma 10 217268 -NCIT:C36094 Early Invasive Cervical Squamous Cell Carcinoma 8 217269 -NCIT:C40187 Cervical Keratinizing Squamous Cell Carcinoma 8 217270 -NCIT:C40188 Cervical Non-Keratinizing Squamous Cell Carcinoma 8 217271 -NCIT:C40189 Cervical Basaloid Carcinoma 8 217272 -NCIT:C40190 Cervical Verrucous Carcinoma 8 217273 -NCIT:C40193 Cervical Lymphoepithelioma-Like Carcinoma 8 217274 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 8 217275 -NCIT:C4029 Cervical Adenocarcinoma 7 217276 -NCIT:C127915 Cervical Adenocarcinoma Admixed with Neuroendocrine Carcinoma 8 217277 -NCIT:C136651 Recurrent Cervical Adenocarcinoma 8 217278 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 9 217279 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 8 217280 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 217281 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 217282 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 217283 -NCIT:C174029 Unresectable Cervical Adenocarcinoma 8 217284 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 217285 -NCIT:C180848 Human Papillomavirus-Independent Cervical Adenocarcinoma 8 217286 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 9 217287 -NCIT:C40201 Cervical Serous Adenocarcinoma 9 217288 -NCIT:C40206 Human Papillomavirus-Independent Cervical Adenocarcinoma, Gastric-Type 9 217289 -NCIT:C40254 Cervical Mesonephric Adenocarcinoma 9 217290 -NCIT:C6343 Cervical Endometrioid Adenocarcinoma 9 217291 -NCIT:C6344 Human Papillomavirus-Independent Cervical Adenocarcinoma, Clear Cell-Type 9 217292 -NCIT:C180870 Cervical Adenocarcinoma, Not Otherwise Specified 8 217293 -NCIT:C181036 Refractory Cervical Adenocarcinoma 8 217294 -NCIT:C27677 Human Papillomavirus-Related Cervical Adenocarcinoma 8 217295 -NCIT:C127907 Endocervical Adenocarcinoma, Usual-Type 9 217296 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 10 217297 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 10 217298 -NCIT:C40208 Cervical Villoglandular Adenocarcinoma 10 217299 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 9 217300 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 9 217301 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 9 217302 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 9 217303 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 9 217304 -NCIT:C36095 Cervical Mucinous Adenocarcinoma 8 217305 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 9 217306 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 9 217307 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 9 217308 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 9 217309 -NCIT:C40206 Human Papillomavirus-Independent Cervical Adenocarcinoma, Gastric-Type 9 217310 -NCIT:C36096 Early Invasive Cervical Adenocarcinoma 8 217311 -NCIT:C4520 Cervical Adenocarcinoma In Situ 8 217312 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 9 217313 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 9 217314 -NCIT:C4519 Cervical Adenosquamous Carcinoma 7 217315 -NCIT:C136650 Recurrent Cervical Adenosquamous Carcinoma 8 217316 -NCIT:C153390 Metastatic Cervical Adenosquamous Carcinoma 8 217317 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 217318 -NCIT:C174027 Unresectable Cervical Adenosquamous Carcinoma 8 217319 -NCIT:C40212 Cervical Poorly Differentiated Adenosquamous Carcinoma 8 217320 -NCIT:C6345 Cervical Undifferentiated Carcinoma 7 217321 -NCIT:C6346 Cervical Adenoid Cystic Carcinoma 7 217322 -NCIT:C7432 AIDS-Related Cervical Carcinoma 7 217323 -NCIT:C7453 Exocervical Carcinoma 7 217324 -NCIT:C7804 Recurrent Cervical Carcinoma 7 217325 -NCIT:C136649 Recurrent Cervical Squamous Cell Carcinoma 8 217326 -NCIT:C136650 Recurrent Cervical Adenosquamous Carcinoma 8 217327 -NCIT:C136651 Recurrent Cervical Adenocarcinoma 8 217328 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 9 217329 -NCIT:C8577 Invasive Cervical Carcinoma 7 217330 -NCIT:C90493 Cervical Cancer by AJCC v6 Stage 7 217331 -NCIT:C4000 Stage 0 Cervical Cancer AJCC v6 8 217332 -NCIT:C7803 Stage II Cervical Cancer AJCC v6 8 217333 -NCIT:C6319 Stage IIA Cervical Cancer AJCC v6 9 217334 -NCIT:C6320 Stage IIB Cervical Cancer AJCC v6 and v7 9 217335 -NCIT:C9204 Stage I Cervical Cancer AJCC v6 and v7 8 217336 -NCIT:C6313 Stage IA Cervical Cancer AJCC v6 and v7 9 217337 -NCIT:C6314 Stage IA1 Cervical Cancer AJCC v6 and v7 10 217338 -NCIT:C6315 Stage IA2 Cervical Cancer AJCC v6 and v7 10 217339 -NCIT:C6316 Stage IB Cervical Cancer AJCC v6 and v7 9 217340 -NCIT:C6317 Stage IB1 Cervical Cancer AJCC v6 and v7 10 217341 -NCIT:C6318 Stage IB2 Cervical Cancer AJCC v6 and v7 10 217342 -NCIT:C9205 Stage III Cervical Cancer AJCC v6 and v7 8 217343 -NCIT:C6321 Stage IIIB Cervical Cancer AJCC v6 and v7 9 217344 -NCIT:C6322 Stage IIIA Cervical Cancer AJCC v6 and v7 9 217345 -NCIT:C9206 Stage IV Cervical Cancer AJCC v6 and v7 8 217346 -NCIT:C6323 Stage IVA Cervical Cancer AJCC v6 and v7 9 217347 -NCIT:C6324 Stage IVB Cervical Cancer AJCC v6 and v7 9 217348 -NCIT:C91208 Cervical Cancer by AJCC v7 Stage 7 217349 -NCIT:C89550 Stage 0 Cervical Cancer AJCC v7 8 217350 -NCIT:C4520 Cervical Adenocarcinoma In Situ 9 217351 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 10 217352 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 10 217353 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 9 217354 -NCIT:C89551 Stage II Cervical Cancer AJCC v7 8 217355 -NCIT:C6320 Stage IIB Cervical Cancer AJCC v6 and v7 9 217356 -NCIT:C89552 Stage IIA Cervical Cancer AJCC v7 9 217357 -NCIT:C95172 Stage IIA1 Cervical Cancer AJCC v7 10 217358 -NCIT:C95173 Stage IIA2 Cervical Cancer AJCC v7 10 217359 -NCIT:C9204 Stage I Cervical Cancer AJCC v6 and v7 8 217360 -NCIT:C6313 Stage IA Cervical Cancer AJCC v6 and v7 9 217361 -NCIT:C6314 Stage IA1 Cervical Cancer AJCC v6 and v7 10 217362 -NCIT:C6315 Stage IA2 Cervical Cancer AJCC v6 and v7 10 217363 -NCIT:C6316 Stage IB Cervical Cancer AJCC v6 and v7 9 217364 -NCIT:C6317 Stage IB1 Cervical Cancer AJCC v6 and v7 10 217365 -NCIT:C6318 Stage IB2 Cervical Cancer AJCC v6 and v7 10 217366 -NCIT:C9205 Stage III Cervical Cancer AJCC v6 and v7 8 217367 -NCIT:C6321 Stage IIIB Cervical Cancer AJCC v6 and v7 9 217368 -NCIT:C6322 Stage IIIA Cervical Cancer AJCC v6 and v7 9 217369 -NCIT:C9206 Stage IV Cervical Cancer AJCC v6 and v7 8 217370 -NCIT:C6323 Stage IVA Cervical Cancer AJCC v6 and v7 9 217371 -NCIT:C6324 Stage IVB Cervical Cancer AJCC v6 and v7 9 217372 -NCIT:C181196 Male Reproductive System Carcinoma 5 217373 -NCIT:C177149 Refractory Male Reproductive System Carcinoma 6 217374 -NCIT:C167255 Refractory Prostate Carcinoma 7 217375 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 8 217376 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 9 217377 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 9 217378 -NCIT:C161609 Double-Negative Prostate Carcinoma 9 217379 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 9 217380 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 9 217381 -NCIT:C167256 Refractory Prostate Adenocarcinoma 8 217382 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 8 217383 -NCIT:C177150 Refractory Penile Carcinoma 7 217384 -NCIT:C39906 Seminal Vesicle Adenocarcinoma 6 217385 -NCIT:C39957 Epididymal Adenocarcinoma 6 217386 -NCIT:C4863 Prostate Carcinoma 6 217387 -NCIT:C103817 Hereditary Prostate Carcinoma 7 217388 -NCIT:C114933 Hormone-Resistant Prostate Carcinoma 7 217389 -NCIT:C138167 Prostate Carcinoma by Gene Expression Profile 7 217390 -NCIT:C138168 Luminal A Prostate Carcinoma 8 217391 -NCIT:C138169 Luminal B Prostate Carcinoma 8 217392 -NCIT:C138170 Basal-Like Prostate Carcinoma 8 217393 -NCIT:C140163 Prostate Cancer by AJCC v8 Stage 7 217394 -NCIT:C140164 Stage I Prostate Cancer AJCC v8 8 217395 -NCIT:C140165 Stage II Prostate Cancer AJCC v8 8 217396 -NCIT:C140166 Stage IIA Prostate Cancer AJCC v8 9 217397 -NCIT:C140167 Stage IIB Prostate Cancer AJCC v8 9 217398 -NCIT:C140168 Stage IIC Prostate Cancer AJCC v8 9 217399 -NCIT:C140169 Stage III Prostate Cancer AJCC v8 8 217400 -NCIT:C140170 Stage IIIA Prostate Cancer AJCC v8 9 217401 -NCIT:C140171 Stage IIIB Prostate Cancer AJCC v8 9 217402 -NCIT:C140172 Stage IIIC Prostate Cancer AJCC v8 9 217403 -NCIT:C140173 Stage IV Prostate Cancer AJCC v8 8 217404 -NCIT:C140174 Stage IVA Prostate Cancer AJCC v8 9 217405 -NCIT:C140175 Stage IVB Prostate Cancer AJCC v8 9 217406 -NCIT:C161022 Intraductal Prostate Carcinoma 7 217407 -NCIT:C167255 Refractory Prostate Carcinoma 7 217408 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 8 217409 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 9 217410 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 9 217411 -NCIT:C161609 Double-Negative Prostate Carcinoma 9 217412 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 9 217413 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 9 217414 -NCIT:C167256 Refractory Prostate Adenocarcinoma 8 217415 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 8 217416 -NCIT:C171611 Unresectable Prostate Carcinoma 7 217417 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 8 217418 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 217419 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 8 217420 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 8 217421 -NCIT:C176517 Localized Prostate Carcinoma 7 217422 -NCIT:C39898 Primary Prostate Urothelial Carcinoma 7 217423 -NCIT:C39900 Prostatic Urethra Urothelial Carcinoma 8 217424 -NCIT:C39901 Prostatic Duct Urothelial Carcinoma 8 217425 -NCIT:C48596 Invasive Prostate Carcinoma 7 217426 -NCIT:C158912 Prostate Neuroendocrine Carcinoma 8 217427 -NCIT:C158650 Prostate Large Cell Neuroendocrine Carcinoma 9 217428 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 9 217429 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 10 217430 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 10 217431 -NCIT:C6766 Prostate Small Cell Neuroendocrine Carcinoma 9 217432 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 10 217433 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 10 217434 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 10 217435 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 10 217436 -NCIT:C2919 Prostate Adenocarcinoma 8 217437 -NCIT:C150557 Prostate Adenocarcinoma without Neuroendocrine Differentiation 9 217438 -NCIT:C164185 Aggressive Prostate Adenocarcinoma 9 217439 -NCIT:C164186 Prostate Adenocarcinoma by AJCC v7 Stage 9 217440 -NCIT:C8947 Stage I Prostate Adenocarcinoma AJCC v7 10 217441 -NCIT:C8948 Stage II Prostate Adenocarcinoma AJCC v7 10 217442 -NCIT:C8949 Stage III Prostate Adenocarcinoma AJCC v7 10 217443 -NCIT:C8950 Stage IV Prostate Adenocarcinoma AJCC v7 10 217444 -NCIT:C167256 Refractory Prostate Adenocarcinoma 9 217445 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 9 217446 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 10 217447 -NCIT:C27905 Well Differentiated Prostate Adenocarcinoma 9 217448 -NCIT:C39896 Prostate Ductal Adenocarcinoma, Papillary Pattern 10 217449 -NCIT:C27906 Moderately Differentiated Prostate Adenocarcinoma 9 217450 -NCIT:C27916 Poorly Differentiated Prostate Adenocarcinoma 9 217451 -NCIT:C5530 Prostate Acinar Adenocarcinoma, Sarcomatoid Variant 10 217452 -NCIT:C39903 Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 217453 -NCIT:C158656 Usual Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 217454 -NCIT:C158664 Prostate Adenocarcinoma with Paneth Cell-Like Neuroendocrine Differentiation 10 217455 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 217456 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 217457 -NCIT:C5596 Prostate Acinar Adenocarcinoma 9 217458 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 10 217459 -NCIT:C158656 Usual Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 217460 -NCIT:C160817 Prostate Acinar Adenocarcinoma, Microcystic Variant 10 217461 -NCIT:C160818 Prostate Acinar Adenocarcinoma, Pleomorphic Giant Cell Variant 10 217462 -NCIT:C39880 Prostate Acinar Adenocarcinoma, Atrophic Variant 10 217463 -NCIT:C39881 Prostate Acinar Adenocarcinoma, Pseudohyperplastic Variant 10 217464 -NCIT:C39882 Prostate Acinar Adenocarcinoma, Foamy Gland Variant 10 217465 -NCIT:C39884 Prostate Acinar Adenocarcinoma, Oncocytic Variant 10 217466 -NCIT:C39885 Prostate Acinar Adenocarcinoma, Lymphoepithelioma-Like Variant 10 217467 -NCIT:C5530 Prostate Acinar Adenocarcinoma, Sarcomatoid Variant 10 217468 -NCIT:C5535 Prostate Acinar Adenocarcinoma, Signet Ring-Like Cell Variant 10 217469 -NCIT:C5537 Prostate Acinar Mucinous Adenocarcinoma 10 217470 -NCIT:C6813 Prostate Ductal Adenocarcinoma 9 217471 -NCIT:C39895 Prostate Ductal Adenocarcinoma, Cribriform Pattern 10 217472 -NCIT:C39896 Prostate Ductal Adenocarcinoma, Papillary Pattern 10 217473 -NCIT:C39897 Prostate Ductal Adenocarcinoma, Solid Pattern 10 217474 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 9 217475 -NCIT:C156286 Advanced Prostate Adenocarcinoma 10 217476 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 217477 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 10 217478 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 11 217479 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 217480 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 11 217481 -NCIT:C39902 Prostate Basal Cell Carcinoma 8 217482 -NCIT:C5536 Prostate Squamous Cell Carcinoma 8 217483 -NCIT:C5538 Prostate Adenosquamous Carcinoma 8 217484 -NCIT:C5539 Prostate Adenoid Cystic Carcinoma 8 217485 -NCIT:C5597 Prostate Undifferentiated Carcinoma 8 217486 -NCIT:C7079 Prostate Cancer by Whitmore-Jewett Stage 7 217487 -NCIT:C7099 Stage D Prostate Cancer 8 217488 -NCIT:C7552 Stage C Prostate Cancer 8 217489 -NCIT:C7554 Stage B Prostate Cancer 8 217490 -NCIT:C7556 Stage A Prostate Cancer 8 217491 -NCIT:C7902 Recurrent Prostate Carcinoma 7 217492 -NCIT:C156771 Biochemically Recurrent Prostate Carcinoma 8 217493 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 8 217494 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 9 217495 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 8 217496 -NCIT:C8946 Metastatic Prostate Carcinoma 7 217497 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 8 217498 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 9 217499 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 9 217500 -NCIT:C161609 Double-Negative Prostate Carcinoma 9 217501 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 9 217502 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 9 217503 -NCIT:C132881 Prostate Carcinoma Metastatic in the Soft Tissue 8 217504 -NCIT:C148536 Castration-Naive Prostate Carcinoma 8 217505 -NCIT:C153336 Castration-Sensitive Prostate Carcinoma 8 217506 -NCIT:C156284 Advanced Prostate Carcinoma 8 217507 -NCIT:C156286 Advanced Prostate Adenocarcinoma 9 217508 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 217509 -NCIT:C156285 Locally Advanced Prostate Carcinoma 8 217510 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 9 217511 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 217512 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 9 217513 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 217514 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 9 217515 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 8 217516 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 9 217517 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 9 217518 -NCIT:C161584 Prostate Carcinoma Metastatic in the Pelvic Cavity 8 217519 -NCIT:C161587 Prostate Carcinoma Metastatic in the Lymph Nodes 8 217520 -NCIT:C171265 Oligometastatic Prostate Carcinoma 8 217521 -NCIT:C36307 Prostate Carcinoma Metastatic in the Lung 8 217522 -NCIT:C36308 Prostate Carcinoma Metastatic in the Bone 8 217523 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 8 217524 -NCIT:C156286 Advanced Prostate Adenocarcinoma 9 217525 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 217526 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 9 217527 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 217528 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 217529 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 217530 -NCIT:C90521 Prostate Cancer by AJCC v6 Stage 7 217531 -NCIT:C7551 Stage III Prostate Cancer AJCC v6 8 217532 -NCIT:C7553 Stage II Prostate Cancer AJCC v6 8 217533 -NCIT:C7555 Stage I Prostate Cancer AJCC v6 8 217534 -NCIT:C9075 Stage IV Prostate Cancer AJCC v6 8 217535 -NCIT:C91233 Prostate Cancer by AJCC v7 Stage 7 217536 -NCIT:C164186 Prostate Adenocarcinoma by AJCC v7 Stage 8 217537 -NCIT:C8947 Stage I Prostate Adenocarcinoma AJCC v7 9 217538 -NCIT:C8948 Stage II Prostate Adenocarcinoma AJCC v7 9 217539 -NCIT:C8949 Stage III Prostate Adenocarcinoma AJCC v7 9 217540 -NCIT:C8950 Stage IV Prostate Adenocarcinoma AJCC v7 9 217541 -NCIT:C89232 Stage I Prostate Cancer AJCC v7 8 217542 -NCIT:C8947 Stage I Prostate Adenocarcinoma AJCC v7 9 217543 -NCIT:C89233 Stage II Prostate Cancer AJCC v7 8 217544 -NCIT:C88106 Stage IIA Prostate Cancer AJCC v7 9 217545 -NCIT:C88107 Stage IIB Prostate Cancer AJCC v7 9 217546 -NCIT:C8948 Stage II Prostate Adenocarcinoma AJCC v7 9 217547 -NCIT:C89234 Stage III Prostate Cancer AJCC v7 8 217548 -NCIT:C8949 Stage III Prostate Adenocarcinoma AJCC v7 9 217549 -NCIT:C89235 Stage IV Prostate Cancer AJCC v7 8 217550 -NCIT:C8950 Stage IV Prostate Adenocarcinoma AJCC v7 9 217551 -NCIT:C7621 Recurrent Male Reproductive System Carcinoma 6 217552 -NCIT:C7870 Recurrent Penile Carcinoma 7 217553 -NCIT:C7902 Recurrent Prostate Carcinoma 7 217554 -NCIT:C156771 Biochemically Recurrent Prostate Carcinoma 8 217555 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 8 217556 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 9 217557 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 8 217558 -NCIT:C8955 Rete Testis Adenocarcinoma 6 217559 -NCIT:C9061 Penile Carcinoma 6 217560 -NCIT:C118820 Adult Penile Carcinoma 7 217561 -NCIT:C140075 Penile Cancer by AJCC v8 Stage 7 217562 -NCIT:C140076 Stage 0 Penile Cancer AJCC v8 8 217563 -NCIT:C140077 Stage 0is Penile Cancer AJCC v8 9 217564 -NCIT:C140078 Stage 0a Penile Cancer AJCC v8 9 217565 -NCIT:C140079 Stage I Penile Cancer AJCC v8 8 217566 -NCIT:C140080 Stage II Penile Cancer AJCC v8 8 217567 -NCIT:C140081 Stage IIA Penile Cancer AJCC v8 9 217568 -NCIT:C140083 Stage IIB Penile Cancer AJCC v8 9 217569 -NCIT:C140084 Stage III Penile Cancer AJCC v8 8 217570 -NCIT:C140085 Stage IIIA Penile Cancer AJCC v8 9 217571 -NCIT:C140086 Stage IIIB Penile Cancer AJCC v8 9 217572 -NCIT:C140087 Stage IV Penile Cancer AJCC v8 8 217573 -NCIT:C177150 Refractory Penile Carcinoma 7 217574 -NCIT:C27784 Metastatic Penile Carcinoma 7 217575 -NCIT:C170789 Locally Advanced Penile Carcinoma 8 217576 -NCIT:C170790 Advanced Penile Carcinoma 8 217577 -NCIT:C182111 Metastatic Squamous Cell Carcinoma of the Penis 8 217578 -NCIT:C27817 Penile Paget Disease 7 217579 -NCIT:C39961 Penile Basal Cell Carcinoma 7 217580 -NCIT:C7729 Squamous Cell Carcinoma of the Penis 7 217581 -NCIT:C159244 Non-Human Papillomavirus-Related Squamous Cell Carcinoma of the Penis 8 217582 -NCIT:C103340 Papillary Carcinoma of the Penis, Not Otherwise Specified 9 217583 -NCIT:C159245 Pseudohyperplastic Carcinoma of the Penis 9 217584 -NCIT:C159246 Pseudoglandular Carcinoma of the Penis 9 217585 -NCIT:C159248 Adenosquamous Carcinoma of the Penis 9 217586 -NCIT:C39959 Mixed Squamous Cell Carcinoma of the Penis 9 217587 -NCIT:C6979 Squamous Cell Carcinoma of the Penis, Usual Type 9 217588 -NCIT:C6982 Verrucous Carcinoma of the Penis 9 217589 -NCIT:C159247 Carcinoma Cuniculatum of the Penis 10 217590 -NCIT:C6984 Sarcomatoid Carcinoma of the Penis 9 217591 -NCIT:C182111 Metastatic Squamous Cell Carcinoma of the Penis 8 217592 -NCIT:C27682 Human Papillomavirus-Related Squamous Cell Carcinoma of the Penis 8 217593 -NCIT:C159250 Warty-Basaloid Carcinoma of the Penis 9 217594 -NCIT:C159251 Clear Cell Squamous Cell Carcinoma of the Penis 9 217595 -NCIT:C159252 Lymphoepithelioma-Like Carcinoma of the Penis 9 217596 -NCIT:C6980 Basaloid Squamous Cell Carcinoma of the Penis 9 217597 -NCIT:C159249 Papillary-Basaloid Carcinoma of the Penis 10 217598 -NCIT:C6981 Warty Carcinoma of the Penis 9 217599 -NCIT:C27790 Penile Carcinoma In Situ 8 217600 -NCIT:C6983 Papillary Carcinoma of the Penis 8 217601 -NCIT:C103340 Papillary Carcinoma of the Penis, Not Otherwise Specified 9 217602 -NCIT:C159249 Papillary-Basaloid Carcinoma of the Penis 9 217603 -NCIT:C6981 Warty Carcinoma of the Penis 9 217604 -NCIT:C6982 Verrucous Carcinoma of the Penis 9 217605 -NCIT:C159247 Carcinoma Cuniculatum of the Penis 10 217606 -NCIT:C7870 Recurrent Penile Carcinoma 7 217607 -NCIT:C90520 Penile Cancer by AJCC v6 Stage 7 217608 -NCIT:C3643 Stage 0 Penile Cancer AJCC v6 8 217609 -NCIT:C7867 Stage I Penile Cancer AJCC v6 8 217610 -NCIT:C7868 Stage II Penile Cancer AJCC v6 8 217611 -NCIT:C7869 Stage III Penile Cancer AJCC v6 8 217612 -NCIT:C8959 Stage IV Penile Cancer AJCC v6 8 217613 -NCIT:C91234 Penile Cancer by AJCC v7 Stage 7 217614 -NCIT:C89194 Stage 0 Penile Cancer AJCC v7 8 217615 -NCIT:C27790 Penile Carcinoma In Situ 9 217616 -NCIT:C89195 Stage I Penile Cancer AJCC v7 8 217617 -NCIT:C89196 Stage II Penile Cancer AJCC v7 8 217618 -NCIT:C89197 Stage III Penile Cancer AJCC v7 8 217619 -NCIT:C88104 Stage IIIa Penile Cancer AJCC v7 9 217620 -NCIT:C88105 Stage IIIb Penile Cancer AJCC v7 9 217621 -NCIT:C89198 Stage IV Penile Cancer AJCC v7 8 217622 -NCIT:C181197 Urinary System Carcinoma 5 217623 -NCIT:C162719 Refractory Urinary System Carcinoma 6 217624 -NCIT:C150316 Refractory Bladder Carcinoma 7 217625 -NCIT:C148286 Refractory Stage 0 Bladder Cancer AJCC v6 and v7 8 217626 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 8 217627 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 217628 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 8 217629 -NCIT:C150364 Refractory Urothelial Carcinoma 7 217630 -NCIT:C150365 Platinum-Resistant Urothelial Carcinoma 8 217631 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 8 217632 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 217633 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 8 217634 -NCIT:C176996 Refractory Urethral Urothelial Carcinoma 8 217635 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 8 217636 -NCIT:C172623 Refractory Kidney Carcinoma 7 217637 -NCIT:C162727 Refractory Kidney Medullary Carcinoma 8 217638 -NCIT:C165745 Refractory Renal Cell Carcinoma 8 217639 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 9 217640 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 8 217641 -NCIT:C191749 Squamous Cell Carcinoma of the Urinary Tract 6 217642 -NCIT:C4031 Bladder Squamous Cell Carcinoma 7 217643 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 8 217644 -NCIT:C27768 Schistosoma Hematobium-Related Bladder Squamous Cell Carcinoma 8 217645 -NCIT:C39833 Schistosoma Hematobium-Related Bladder Verrucous Carcinoma 9 217646 -NCIT:C39832 Bladder Verrucous Carcinoma 8 217647 -NCIT:C39833 Schistosoma Hematobium-Related Bladder Verrucous Carcinoma 9 217648 -NCIT:C39845 Urachal Squamous Cell Carcinoma 8 217649 -NCIT:C4994 Stage II Bladder Squamous Cell Carcinoma AJCC v6 and v7 8 217650 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 8 217651 -NCIT:C8903 Stage 0 Bladder Squamous Cell Carcinoma AJCC v6 and v7 8 217652 -NCIT:C8904 Stage I Squamous Cell Carcinoma of the Bladder AJCC v6 and v7 8 217653 -NCIT:C8905 Stage III Bladder Squamous Cell Carcinoma AJCC v6 and v7 8 217654 -NCIT:C8906 Stage IV Bladder Squamous Cell Carcinoma AJCC v7 8 217655 -NCIT:C191751 Adenocarcinoma of the Urinary Tract 6 217656 -NCIT:C4032 Bladder Adenocarcinoma 7 217657 -NCIT:C39835 Bladder Enteric Type Adenocarcinoma 8 217658 -NCIT:C39836 Bladder Adenocarcinoma, Not Otherwise Specified 8 217659 -NCIT:C39837 Bladder Mucinous Adenocarcinoma 8 217660 -NCIT:C39838 Bladder Hepatoid Adenocarcinoma 8 217661 -NCIT:C39839 Bladder Mixed Adenocarcinoma 8 217662 -NCIT:C39843 Urachal Adenocarcinoma 8 217663 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 8 217664 -NCIT:C6163 Bladder Signet Ring Cell Adenocarcinoma 8 217665 -NCIT:C8894 Stage 0 Bladder Adenocarcinoma AJCC v6 and v7 8 217666 -NCIT:C8895 Stage I Bladder Adenocarcinoma AJCC v6 and v7 8 217667 -NCIT:C8896 Stage II Bladder Adenocarcinoma AJCC v6 and v7 8 217668 -NCIT:C8897 Stage III Bladder Adenocarcinoma AJCC v6 and v7 8 217669 -NCIT:C8898 Stage IV Bladder Adenocarcinoma AJCC v7 8 217670 -NCIT:C191753 Diverticular Carcinoma of the Urinary Tract 6 217671 -NCIT:C191768 Clear Cell Adenocarcinoma of the Urinary Tract 6 217672 -NCIT:C6172 Urethral Clear Cell Adenocarcinoma 7 217673 -NCIT:C6179 Bladder Clear Cell Adenocarcinoma 7 217674 -NCIT:C39847 Bladder Tubulo-Cystic Clear Cell Adenocarcinoma 8 217675 -NCIT:C39848 Bladder Papillary Clear Cell Adenocarcinoma 8 217676 -NCIT:C39849 Bladder Diffuse Clear Cell Adenocarcinoma 8 217677 -NCIT:C191769 Endometrioid Adenocarcinoma of the Urinary Tract 6 217678 -NCIT:C159542 Bladder Endometrioid Adenocarcinoma 7 217679 -NCIT:C4030 Urothelial Carcinoma 6 217680 -NCIT:C126109 Metastatic Urothelial Carcinoma 7 217681 -NCIT:C148493 Advanced Urothelial Carcinoma 8 217682 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 217683 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 217684 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 217685 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 217686 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 217687 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 217688 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 217689 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 217690 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 217691 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 217692 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 217693 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 217694 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 217695 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 217696 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 217697 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 217698 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 217699 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 217700 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 217701 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 8 217702 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 217703 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 217704 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 217705 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 217706 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 217707 -NCIT:C191692 Metastatic Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 217708 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 217709 -NCIT:C191693 Metastatic Giant Cell Urothelial Carcinoma 8 217710 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 217711 -NCIT:C191694 Metastatic Lipid-Rich Urothelial Carcinoma 8 217712 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 217713 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 8 217714 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 217715 -NCIT:C191696 Metastatic Nested Urothelial Carcinoma 8 217716 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 217717 -NCIT:C191697 Metastatic Plasmacytoid Urothelial Carcinoma 8 217718 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 217719 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 8 217720 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 217721 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 8 217722 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 217723 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 217724 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 217725 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 9 217726 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 217727 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 217728 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 217729 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 217730 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 217731 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 217732 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 217733 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 217734 -NCIT:C150364 Refractory Urothelial Carcinoma 7 217735 -NCIT:C150365 Platinum-Resistant Urothelial Carcinoma 8 217736 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 8 217737 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 217738 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 8 217739 -NCIT:C176996 Refractory Urethral Urothelial Carcinoma 8 217740 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 8 217741 -NCIT:C150521 Unresectable Urothelial Carcinoma 7 217742 -NCIT:C158585 Unresectable Urethral Urothelial Carcinoma 8 217743 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 8 217744 -NCIT:C164160 Unresectable Renal Pelvis and Ureter Urothelial Carcinoma 8 217745 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 9 217746 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 9 217747 -NCIT:C157631 Recurrent Urothelial Carcinoma 7 217748 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 217749 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 217750 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 217751 -NCIT:C8254 Recurrent Renal Pelvis and Ureter Urothelial Carcinoma 8 217752 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 9 217753 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 217754 -NCIT:C180606 Urothelial Carcinoma, High Grade 7 217755 -NCIT:C180607 Renal Pelvis Urothelial Carcinoma, High Grade 8 217756 -NCIT:C180608 Ureter Urothelial Carcinoma, High Grade 8 217757 -NCIT:C180609 Bladder Urothelial Carcinoma, High Grade 8 217758 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 9 217759 -NCIT:C191675 Non-Invasive Papillary Urothelial Carcinoma, High Grade 8 217760 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 9 217761 -NCIT:C191673 Non-Invasive Papillary Urothelial Carcinoma, Low Grade 7 217762 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 8 217763 -NCIT:C39851 Bladder Urothelial Carcinoma 7 217764 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 217765 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 217766 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 217767 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 217768 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 217769 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 217770 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 217771 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 217772 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 217773 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 217774 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 217775 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 217776 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 217777 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 8 217778 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 8 217779 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 217780 -NCIT:C177531 Bladder Flat Urothelial Carcinoma 8 217781 -NCIT:C37266 Bladder Urothelial Carcinoma In Situ 9 217782 -NCIT:C140418 Stage 0is Bladder Cancer AJCC v8 10 217783 -NCIT:C3644 Stage 0is Bladder Urothelial Carcinoma AJCC v6 and v7 10 217784 -NCIT:C180609 Bladder Urothelial Carcinoma, High Grade 8 217785 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 9 217786 -NCIT:C188032 Resectable Bladder Urothelial Carcinoma 8 217787 -NCIT:C27634 Transplant-Related Bladder Urothelial Carcinoma 8 217788 -NCIT:C27885 Invasive Bladder Urothelial Carcinoma 8 217789 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 9 217790 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 217791 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 10 217792 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 9 217793 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 10 217794 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 9 217795 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 9 217796 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 9 217797 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 9 217798 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 217799 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 217800 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 9 217801 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 9 217802 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 9 217803 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 9 217804 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 10 217805 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 9 217806 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 9 217807 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 9 217808 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 10 217809 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 9 217810 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 10 217811 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 10 217812 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 10 217813 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 217814 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 10 217815 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 9 217816 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 10 217817 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 9 217818 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 10 217819 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 217820 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 217821 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 217822 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 9 217823 -NCIT:C39844 Urachal Urothelial Carcinoma 8 217824 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 217825 -NCIT:C7383 Bladder Papillary Urothelial Carcinoma 8 217826 -NCIT:C158382 Bladder Non-Invasive Papillary Urothelial Carcinoma 9 217827 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 10 217828 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 10 217829 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 10 217830 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 10 217831 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 217832 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 217833 -NCIT:C39853 Invasive Urothelial Carcinoma 7 217834 -NCIT:C115966 Invasive Bladder Urothelial Carcinoma Associated with Urethral Carcinoma 8 217835 -NCIT:C164252 Invasive Sarcomatoid Urothelial Carcinoma 8 217836 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 9 217837 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 10 217838 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 9 217839 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 10 217840 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 10 217841 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 10 217842 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 9 217843 -NCIT:C191678 Invasive Lymphoepithelioma-Like Urothelial Carcinoma 8 217844 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 9 217845 -NCIT:C191679 Invasive Giant Cell Urothelial Carcinoma 8 217846 -NCIT:C191693 Metastatic Giant Cell Urothelial Carcinoma 9 217847 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 10 217848 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 9 217849 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 10 217850 -NCIT:C191680 Invasive Urothelial Carcinoma with Glandular Differentiation 8 217851 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 9 217852 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 9 217853 -NCIT:C191681 Invasive Urothelial Carcinoma with Squamous Differentiation 8 217854 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 9 217855 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 9 217856 -NCIT:C191682 Invasive Urothelial Carcinoma with Trophoblastic Differentiation 8 217857 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 9 217858 -NCIT:C191683 Invasive Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 217859 -NCIT:C191692 Metastatic Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 217860 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 10 217861 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 217862 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 10 217863 -NCIT:C191684 Invasive Lipid-Rich Urothelial Carcinoma 8 217864 -NCIT:C191694 Metastatic Lipid-Rich Urothelial Carcinoma 9 217865 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 10 217866 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 9 217867 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 10 217868 -NCIT:C191685 Invasive Microcystic Urothelial Carcinoma 8 217869 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 9 217870 -NCIT:C191686 Invasive Micropapillary Urothelial Carcinoma 8 217871 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 9 217872 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 217873 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 217874 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 217875 -NCIT:C191687 Invasive Nested Urothelial Carcinoma 8 217876 -NCIT:C191696 Metastatic Nested Urothelial Carcinoma 9 217877 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 10 217878 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 9 217879 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 10 217880 -NCIT:C191688 Invasive Plasmacytoid Urothelial Carcinoma 8 217881 -NCIT:C191697 Metastatic Plasmacytoid Urothelial Carcinoma 9 217882 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 10 217883 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 9 217884 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 10 217885 -NCIT:C191725 Invasive Large Nested Urothelial Carcinoma 8 217886 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 9 217887 -NCIT:C191728 Invasive Tubular Urothelial Carcinoma 8 217888 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 9 217889 -NCIT:C191730 Invasive Poorly Differentiated Urothelial Carcinoma 8 217890 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 9 217891 -NCIT:C191734 Invasive Conventional Urothelial Carcinoma 8 217892 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 9 217893 -NCIT:C27885 Invasive Bladder Urothelial Carcinoma 8 217894 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 9 217895 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 217896 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 10 217897 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 9 217898 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 10 217899 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 9 217900 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 9 217901 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 9 217902 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 9 217903 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 217904 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 217905 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 9 217906 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 9 217907 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 9 217908 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 9 217909 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 10 217910 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 9 217911 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 9 217912 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 9 217913 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 10 217914 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 9 217915 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 10 217916 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 10 217917 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 10 217918 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 217919 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 10 217920 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 9 217921 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 10 217922 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 9 217923 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 10 217924 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 217925 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 217926 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 217927 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 9 217928 -NCIT:C39879 Invasive Renal Pelvis and Ureter Urothelial Carcinoma 8 217929 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 9 217930 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 9 217931 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 9 217932 -NCIT:C39898 Primary Prostate Urothelial Carcinoma 7 217933 -NCIT:C39900 Prostatic Urethra Urothelial Carcinoma 8 217934 -NCIT:C39901 Prostatic Duct Urothelial Carcinoma 8 217935 -NCIT:C6166 Urethral Urothelial Carcinoma 7 217936 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 217937 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 217938 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 217939 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 217940 -NCIT:C158585 Unresectable Urethral Urothelial Carcinoma 8 217941 -NCIT:C176996 Refractory Urethral Urothelial Carcinoma 8 217942 -NCIT:C39900 Prostatic Urethra Urothelial Carcinoma 8 217943 -NCIT:C7716 Renal Pelvis and Ureter Urothelial Carcinoma 7 217944 -NCIT:C140355 Renal Pelvis and Ureter Cancer by AJCC v8 Stage 8 217945 -NCIT:C140356 Renal Pelvis Cancer by AJCC v8 Stage 9 217946 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 217947 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 10 217948 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 10 217949 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 10 217950 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 10 217951 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 10 217952 -NCIT:C140357 Ureter Cancer by AJCC v8 Stage 9 217953 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 10 217954 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 10 217955 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 10 217956 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 10 217957 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 10 217958 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 10 217959 -NCIT:C140358 Stage 0a Renal Pelvis and Ureter Cancer AJCC v8 9 217960 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 217961 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 10 217962 -NCIT:C140361 Stage 0is Renal Pelvis and Ureter Cancer AJCC v8 9 217963 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 10 217964 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 10 217965 -NCIT:C140364 Stage I Renal Pelvis and Ureter Cancer AJCC v8 9 217966 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 10 217967 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 10 217968 -NCIT:C140367 Stage II Renal Pelvis and Ureter Cancer AJCC v8 9 217969 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 10 217970 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 10 217971 -NCIT:C140370 Stage III Renal Pelvis and Ureter Cancer AJCC v8 9 217972 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 10 217973 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 10 217974 -NCIT:C140373 Stage IV Renal Pelvis and Ureter Cancer AJCC v8 9 217975 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 10 217976 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 10 217977 -NCIT:C140376 Renal Pelvis and Ureter Cancer by AJCC v7 Stage 8 217978 -NCIT:C140377 Renal Pelvis Cancer by AJCC v7 Stage 9 217979 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 10 217980 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 10 217981 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 10 217982 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 10 217983 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 10 217984 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 217985 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 217986 -NCIT:C140378 Ureter Cancer by AJCC v7 Stage 9 217987 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 10 217988 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 11 217989 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 11 217990 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 10 217991 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 10 217992 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 10 217993 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 10 217994 -NCIT:C39850 Stage 0 Renal Pelvis and Ureter Cancer AJCC v7 9 217995 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 10 217996 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 11 217997 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 11 217998 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 10 217999 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 218000 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 218001 -NCIT:C7517 Stage 0a Renal Pelvis and Ureter Cancer AJCC v7 10 218002 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 218003 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 11 218004 -NCIT:C7518 Stage 0is Renal Pelvis and Ureter Cancer AJCC v7 10 218005 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 11 218006 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 218007 -NCIT:C7519 Stage I Renal Pelvis and Ureter Cancer AJCC v7 9 218008 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 10 218009 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 10 218010 -NCIT:C7520 Stage II Renal Pelvis and Ureter Cancer AJCC v7 9 218011 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 10 218012 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 10 218013 -NCIT:C7521 Stage III Renal Pelvis and Ureter Cancer AJCC v7 9 218014 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 10 218015 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 10 218016 -NCIT:C7522 Stage IV Renal Pelvis and Ureter Cancer AJCC v7 9 218017 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 10 218018 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 10 218019 -NCIT:C164160 Unresectable Renal Pelvis and Ureter Urothelial Carcinoma 8 218020 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 9 218021 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 9 218022 -NCIT:C39879 Invasive Renal Pelvis and Ureter Urothelial Carcinoma 8 218023 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 9 218024 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 9 218025 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 9 218026 -NCIT:C4830 Ureter Urothelial Carcinoma 8 218027 -NCIT:C140357 Ureter Cancer by AJCC v8 Stage 9 218028 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 10 218029 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 10 218030 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 10 218031 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 10 218032 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 10 218033 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 10 218034 -NCIT:C140378 Ureter Cancer by AJCC v7 Stage 9 218035 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 10 218036 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 11 218037 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 11 218038 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 10 218039 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 10 218040 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 10 218041 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 10 218042 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 9 218043 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 218044 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 218045 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 9 218046 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 9 218047 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 9 218048 -NCIT:C180608 Ureter Urothelial Carcinoma, High Grade 9 218049 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 9 218050 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 9 218051 -NCIT:C7355 Renal Pelvis Urothelial Carcinoma 8 218052 -NCIT:C140356 Renal Pelvis Cancer by AJCC v8 Stage 9 218053 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 218054 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 10 218055 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 10 218056 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 10 218057 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 10 218058 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 10 218059 -NCIT:C140377 Renal Pelvis Cancer by AJCC v7 Stage 9 218060 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 10 218061 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 10 218062 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 10 218063 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 10 218064 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 10 218065 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 218066 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 218067 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 218068 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 218069 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 218070 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 218071 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 9 218072 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 9 218073 -NCIT:C180607 Renal Pelvis Urothelial Carcinoma, High Grade 9 218074 -NCIT:C6148 Renal Pelvis Papillary Urothelial Carcinoma 9 218075 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 218076 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 10 218077 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 9 218078 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 8 218079 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 218080 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 218081 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 218082 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 9 218083 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 218084 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 218085 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 218086 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 218087 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 218088 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 218089 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 218090 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 218091 -NCIT:C8167 Localized Renal Pelvis and Ureter Urothelial Carcinoma 8 218092 -NCIT:C8168 Regional Renal Pelvis and Ureter Urothelial Carcinoma 8 218093 -NCIT:C8254 Recurrent Renal Pelvis and Ureter Urothelial Carcinoma 8 218094 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 9 218095 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 218096 -NCIT:C4912 Bladder Carcinoma 6 218097 -NCIT:C118816 Childhood Bladder Carcinoma 7 218098 -NCIT:C140416 Bladder Cancer by AJCC v8 Stage 7 218099 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 8 218100 -NCIT:C140418 Stage 0is Bladder Cancer AJCC v8 8 218101 -NCIT:C140419 Stage I Bladder Cancer AJCC v8 8 218102 -NCIT:C140420 Stage II Bladder Cancer AJCC v8 8 218103 -NCIT:C140421 Stage III Bladder Cancer AJCC v8 8 218104 -NCIT:C140422 Stage IIIA Bladder Cancer AJCC v8 9 218105 -NCIT:C140423 Stage IIIB Bladder Cancer AJCC v8 9 218106 -NCIT:C140424 Stage IV Bladder Cancer AJCC v8 8 218107 -NCIT:C140425 Stage IVA Bladder Cancer AJCC v8 9 218108 -NCIT:C140426 Stage IVB Bladder Cancer AJCC v8 9 218109 -NCIT:C150316 Refractory Bladder Carcinoma 7 218110 -NCIT:C148286 Refractory Stage 0 Bladder Cancer AJCC v6 and v7 8 218111 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 8 218112 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 218113 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 8 218114 -NCIT:C150570 Invasive Bladder Carcinoma 7 218115 -NCIT:C150572 Muscle Invasive Bladder Carcinoma 8 218116 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 9 218117 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 10 218118 -NCIT:C165716 Invasive Bladder Mixed Carcinoma 8 218119 -NCIT:C27474 Non-Muscle Invasive Bladder Carcinoma 8 218120 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 9 218121 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 218122 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 10 218123 -NCIT:C190772 Metastatic Non-Muscle Invasive Bladder Carcinoma 9 218124 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 10 218125 -NCIT:C190774 Recurrent Non-Muscle Invasive Bladder Carcinoma 9 218126 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 218127 -NCIT:C27885 Invasive Bladder Urothelial Carcinoma 8 218128 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 9 218129 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 218130 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 10 218131 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 9 218132 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 10 218133 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 9 218134 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 9 218135 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 9 218136 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 9 218137 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 218138 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 218139 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 9 218140 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 9 218141 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 9 218142 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 9 218143 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 10 218144 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 9 218145 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 9 218146 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 9 218147 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 10 218148 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 9 218149 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 10 218150 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 10 218151 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 10 218152 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 218153 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 10 218154 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 9 218155 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 10 218156 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 9 218157 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 10 218158 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 218159 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 218160 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 218161 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 9 218162 -NCIT:C156062 Metastatic Bladder Carcinoma 7 218163 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 218164 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 218165 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 218166 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 218167 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 218168 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 218169 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 218170 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 218171 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 218172 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 218173 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 218174 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 8 218175 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 8 218176 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 8 218177 -NCIT:C167071 Locally Advanced Bladder Carcinoma 8 218178 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 218179 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 9 218180 -NCIT:C167338 Advanced Bladder Carcinoma 8 218181 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 218182 -NCIT:C190772 Metastatic Non-Muscle Invasive Bladder Carcinoma 8 218183 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 9 218184 -NCIT:C157759 Bladder Neuroendocrine Carcinoma 7 218185 -NCIT:C157760 Bladder Large Cell Neuroendocrine Carcinoma 8 218186 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 9 218187 -NCIT:C9461 Bladder Small Cell Neuroendocrine Carcinoma 8 218188 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 9 218189 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 9 218190 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 9 218191 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 9 218192 -NCIT:C159542 Bladder Endometrioid Adenocarcinoma 7 218193 -NCIT:C160158 Carcinoma Arising in Bladder Diverticulum 7 218194 -NCIT:C167075 Unresectable Bladder Carcinoma 7 218195 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 8 218196 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 8 218197 -NCIT:C39842 Urachal Carcinoma 7 218198 -NCIT:C39843 Urachal Adenocarcinoma 8 218199 -NCIT:C39844 Urachal Urothelial Carcinoma 8 218200 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 218201 -NCIT:C39845 Urachal Squamous Cell Carcinoma 8 218202 -NCIT:C39851 Bladder Urothelial Carcinoma 7 218203 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 218204 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 218205 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 218206 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 218207 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 218208 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 218209 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 218210 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 218211 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 218212 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 218213 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 218214 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 218215 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 218216 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 8 218217 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 8 218218 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 218219 -NCIT:C177531 Bladder Flat Urothelial Carcinoma 8 218220 -NCIT:C37266 Bladder Urothelial Carcinoma In Situ 9 218221 -NCIT:C140418 Stage 0is Bladder Cancer AJCC v8 10 218222 -NCIT:C3644 Stage 0is Bladder Urothelial Carcinoma AJCC v6 and v7 10 218223 -NCIT:C180609 Bladder Urothelial Carcinoma, High Grade 8 218224 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 9 218225 -NCIT:C188032 Resectable Bladder Urothelial Carcinoma 8 218226 -NCIT:C27634 Transplant-Related Bladder Urothelial Carcinoma 8 218227 -NCIT:C27885 Invasive Bladder Urothelial Carcinoma 8 218228 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 9 218229 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 10 218230 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 10 218231 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 9 218232 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 10 218233 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 9 218234 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 9 218235 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 9 218236 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 9 218237 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 218238 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 218239 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 9 218240 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 9 218241 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 9 218242 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 9 218243 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 10 218244 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 9 218245 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 9 218246 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 9 218247 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 10 218248 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 9 218249 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 10 218250 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 10 218251 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 10 218252 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 218253 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 10 218254 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 9 218255 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 10 218256 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 9 218257 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 10 218258 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 218259 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 218260 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 218261 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 9 218262 -NCIT:C39844 Urachal Urothelial Carcinoma 8 218263 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 218264 -NCIT:C7383 Bladder Papillary Urothelial Carcinoma 8 218265 -NCIT:C158382 Bladder Non-Invasive Papillary Urothelial Carcinoma 9 218266 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 10 218267 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 10 218268 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 10 218269 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 10 218270 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 9 218271 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 10 218272 -NCIT:C4031 Bladder Squamous Cell Carcinoma 7 218273 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 8 218274 -NCIT:C27768 Schistosoma Hematobium-Related Bladder Squamous Cell Carcinoma 8 218275 -NCIT:C39833 Schistosoma Hematobium-Related Bladder Verrucous Carcinoma 9 218276 -NCIT:C39832 Bladder Verrucous Carcinoma 8 218277 -NCIT:C39833 Schistosoma Hematobium-Related Bladder Verrucous Carcinoma 9 218278 -NCIT:C39845 Urachal Squamous Cell Carcinoma 8 218279 -NCIT:C4994 Stage II Bladder Squamous Cell Carcinoma AJCC v6 and v7 8 218280 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 8 218281 -NCIT:C8903 Stage 0 Bladder Squamous Cell Carcinoma AJCC v6 and v7 8 218282 -NCIT:C8904 Stage I Squamous Cell Carcinoma of the Bladder AJCC v6 and v7 8 218283 -NCIT:C8905 Stage III Bladder Squamous Cell Carcinoma AJCC v6 and v7 8 218284 -NCIT:C8906 Stage IV Bladder Squamous Cell Carcinoma AJCC v7 8 218285 -NCIT:C4032 Bladder Adenocarcinoma 7 218286 -NCIT:C39835 Bladder Enteric Type Adenocarcinoma 8 218287 -NCIT:C39836 Bladder Adenocarcinoma, Not Otherwise Specified 8 218288 -NCIT:C39837 Bladder Mucinous Adenocarcinoma 8 218289 -NCIT:C39838 Bladder Hepatoid Adenocarcinoma 8 218290 -NCIT:C39839 Bladder Mixed Adenocarcinoma 8 218291 -NCIT:C39843 Urachal Adenocarcinoma 8 218292 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 8 218293 -NCIT:C6163 Bladder Signet Ring Cell Adenocarcinoma 8 218294 -NCIT:C8894 Stage 0 Bladder Adenocarcinoma AJCC v6 and v7 8 218295 -NCIT:C8895 Stage I Bladder Adenocarcinoma AJCC v6 and v7 8 218296 -NCIT:C8896 Stage II Bladder Adenocarcinoma AJCC v6 and v7 8 218297 -NCIT:C8897 Stage III Bladder Adenocarcinoma AJCC v6 and v7 8 218298 -NCIT:C8898 Stage IV Bladder Adenocarcinoma AJCC v7 8 218299 -NCIT:C6179 Bladder Clear Cell Adenocarcinoma 7 218300 -NCIT:C39847 Bladder Tubulo-Cystic Clear Cell Adenocarcinoma 8 218301 -NCIT:C39848 Bladder Papillary Clear Cell Adenocarcinoma 8 218302 -NCIT:C39849 Bladder Diffuse Clear Cell Adenocarcinoma 8 218303 -NCIT:C7899 Recurrent Bladder Carcinoma 7 218304 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 218305 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 218306 -NCIT:C190774 Recurrent Non-Muscle Invasive Bladder Carcinoma 8 218307 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 218308 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 218309 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 8 218310 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 8 218311 -NCIT:C90344 Bladder Cancer by AJCC v6 Stage 7 218312 -NCIT:C7895 Stage 0 Bladder Cancer AJCC v6 and v7 8 218313 -NCIT:C148286 Refractory Stage 0 Bladder Cancer AJCC v6 and v7 9 218314 -NCIT:C6188 Stage 0 Bladder Urothelial Carcinoma AJCC v6 and v7 9 218315 -NCIT:C3644 Stage 0is Bladder Urothelial Carcinoma AJCC v6 and v7 10 218316 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 10 218317 -NCIT:C8894 Stage 0 Bladder Adenocarcinoma AJCC v6 and v7 9 218318 -NCIT:C8903 Stage 0 Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 218319 -NCIT:C7896 Stage I Bladder Cancer AJCC v6 and v7 8 218320 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 218321 -NCIT:C8895 Stage I Bladder Adenocarcinoma AJCC v6 and v7 9 218322 -NCIT:C8899 Stage I Bladder Cancer with Carcinoma In Situ 9 218323 -NCIT:C8901 Stage I Bladder Cancer without Carcinoma In Situ 9 218324 -NCIT:C8904 Stage I Squamous Cell Carcinoma of the Bladder AJCC v6 and v7 9 218325 -NCIT:C7897 Stage II Bladder Cancer AJCC v6 and v7 8 218326 -NCIT:C4994 Stage II Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 218327 -NCIT:C8896 Stage II Bladder Adenocarcinoma AJCC v6 and v7 9 218328 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 218329 -NCIT:C7898 Stage III Bladder Cancer AJCC v6 and v7 8 218330 -NCIT:C8897 Stage III Bladder Adenocarcinoma AJCC v6 and v7 9 218331 -NCIT:C8905 Stage III Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 218332 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 218333 -NCIT:C7900 Stage IV Bladder Cancer AJCC v6 8 218334 -NCIT:C91202 Bladder Cancer by AJCC v7 Stage 7 218335 -NCIT:C7895 Stage 0 Bladder Cancer AJCC v6 and v7 8 218336 -NCIT:C148286 Refractory Stage 0 Bladder Cancer AJCC v6 and v7 9 218337 -NCIT:C6188 Stage 0 Bladder Urothelial Carcinoma AJCC v6 and v7 9 218338 -NCIT:C3644 Stage 0is Bladder Urothelial Carcinoma AJCC v6 and v7 10 218339 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 10 218340 -NCIT:C8894 Stage 0 Bladder Adenocarcinoma AJCC v6 and v7 9 218341 -NCIT:C8903 Stage 0 Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 218342 -NCIT:C7896 Stage I Bladder Cancer AJCC v6 and v7 8 218343 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 9 218344 -NCIT:C8895 Stage I Bladder Adenocarcinoma AJCC v6 and v7 9 218345 -NCIT:C8899 Stage I Bladder Cancer with Carcinoma In Situ 9 218346 -NCIT:C8901 Stage I Bladder Cancer without Carcinoma In Situ 9 218347 -NCIT:C8904 Stage I Squamous Cell Carcinoma of the Bladder AJCC v6 and v7 9 218348 -NCIT:C7897 Stage II Bladder Cancer AJCC v6 and v7 8 218349 -NCIT:C4994 Stage II Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 218350 -NCIT:C8896 Stage II Bladder Adenocarcinoma AJCC v6 and v7 9 218351 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 9 218352 -NCIT:C7898 Stage III Bladder Cancer AJCC v6 and v7 8 218353 -NCIT:C8897 Stage III Bladder Adenocarcinoma AJCC v6 and v7 9 218354 -NCIT:C8905 Stage III Bladder Squamous Cell Carcinoma AJCC v6 and v7 9 218355 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 9 218356 -NCIT:C89366 Stage IV Bladder Cancer AJCC v7 8 218357 -NCIT:C8898 Stage IV Bladder Adenocarcinoma AJCC v7 9 218358 -NCIT:C8906 Stage IV Bladder Squamous Cell Carcinoma AJCC v7 9 218359 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 9 218360 -NCIT:C7515 Renal Pelvis and Ureter Carcinoma 6 218361 -NCIT:C7716 Renal Pelvis and Ureter Urothelial Carcinoma 7 218362 -NCIT:C140355 Renal Pelvis and Ureter Cancer by AJCC v8 Stage 8 218363 -NCIT:C140356 Renal Pelvis Cancer by AJCC v8 Stage 9 218364 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 218365 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 10 218366 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 10 218367 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 10 218368 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 10 218369 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 10 218370 -NCIT:C140357 Ureter Cancer by AJCC v8 Stage 9 218371 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 10 218372 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 10 218373 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 10 218374 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 10 218375 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 10 218376 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 10 218377 -NCIT:C140358 Stage 0a Renal Pelvis and Ureter Cancer AJCC v8 9 218378 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 218379 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 10 218380 -NCIT:C140361 Stage 0is Renal Pelvis and Ureter Cancer AJCC v8 9 218381 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 10 218382 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 10 218383 -NCIT:C140364 Stage I Renal Pelvis and Ureter Cancer AJCC v8 9 218384 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 10 218385 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 10 218386 -NCIT:C140367 Stage II Renal Pelvis and Ureter Cancer AJCC v8 9 218387 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 10 218388 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 10 218389 -NCIT:C140370 Stage III Renal Pelvis and Ureter Cancer AJCC v8 9 218390 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 10 218391 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 10 218392 -NCIT:C140373 Stage IV Renal Pelvis and Ureter Cancer AJCC v8 9 218393 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 10 218394 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 10 218395 -NCIT:C140376 Renal Pelvis and Ureter Cancer by AJCC v7 Stage 8 218396 -NCIT:C140377 Renal Pelvis Cancer by AJCC v7 Stage 9 218397 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 10 218398 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 10 218399 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 10 218400 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 10 218401 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 10 218402 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 218403 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 218404 -NCIT:C140378 Ureter Cancer by AJCC v7 Stage 9 218405 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 10 218406 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 11 218407 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 11 218408 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 10 218409 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 10 218410 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 10 218411 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 10 218412 -NCIT:C39850 Stage 0 Renal Pelvis and Ureter Cancer AJCC v7 9 218413 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 10 218414 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 11 218415 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 11 218416 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 10 218417 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 218418 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 218419 -NCIT:C7517 Stage 0a Renal Pelvis and Ureter Cancer AJCC v7 10 218420 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 218421 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 11 218422 -NCIT:C7518 Stage 0is Renal Pelvis and Ureter Cancer AJCC v7 10 218423 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 11 218424 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 218425 -NCIT:C7519 Stage I Renal Pelvis and Ureter Cancer AJCC v7 9 218426 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 10 218427 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 10 218428 -NCIT:C7520 Stage II Renal Pelvis and Ureter Cancer AJCC v7 9 218429 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 10 218430 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 10 218431 -NCIT:C7521 Stage III Renal Pelvis and Ureter Cancer AJCC v7 9 218432 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 10 218433 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 10 218434 -NCIT:C7522 Stage IV Renal Pelvis and Ureter Cancer AJCC v7 9 218435 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 10 218436 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 10 218437 -NCIT:C164160 Unresectable Renal Pelvis and Ureter Urothelial Carcinoma 8 218438 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 9 218439 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 9 218440 -NCIT:C39879 Invasive Renal Pelvis and Ureter Urothelial Carcinoma 8 218441 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 9 218442 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 9 218443 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 9 218444 -NCIT:C4830 Ureter Urothelial Carcinoma 8 218445 -NCIT:C140357 Ureter Cancer by AJCC v8 Stage 9 218446 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 10 218447 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 10 218448 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 10 218449 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 10 218450 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 10 218451 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 10 218452 -NCIT:C140378 Ureter Cancer by AJCC v7 Stage 9 218453 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 10 218454 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 11 218455 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 11 218456 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 10 218457 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 10 218458 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 10 218459 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 10 218460 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 9 218461 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 218462 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 218463 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 9 218464 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 9 218465 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 9 218466 -NCIT:C180608 Ureter Urothelial Carcinoma, High Grade 9 218467 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 9 218468 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 9 218469 -NCIT:C7355 Renal Pelvis Urothelial Carcinoma 8 218470 -NCIT:C140356 Renal Pelvis Cancer by AJCC v8 Stage 9 218471 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 218472 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 10 218473 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 10 218474 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 10 218475 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 10 218476 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 10 218477 -NCIT:C140377 Renal Pelvis Cancer by AJCC v7 Stage 9 218478 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 10 218479 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 10 218480 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 10 218481 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 10 218482 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 10 218483 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 218484 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 218485 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 218486 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 218487 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 218488 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 218489 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 9 218490 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 9 218491 -NCIT:C180607 Renal Pelvis Urothelial Carcinoma, High Grade 9 218492 -NCIT:C6148 Renal Pelvis Papillary Urothelial Carcinoma 9 218493 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 218494 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 10 218495 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 9 218496 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 8 218497 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 218498 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 218499 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 218500 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 9 218501 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 218502 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 218503 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 218504 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 218505 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 218506 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 218507 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 218508 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 218509 -NCIT:C8167 Localized Renal Pelvis and Ureter Urothelial Carcinoma 8 218510 -NCIT:C8168 Regional Renal Pelvis and Ureter Urothelial Carcinoma 8 218511 -NCIT:C8254 Recurrent Renal Pelvis and Ureter Urothelial Carcinoma 8 218512 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 9 218513 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 218514 -NCIT:C7623 Recurrent Urinary System Carcinoma 6 218515 -NCIT:C157631 Recurrent Urothelial Carcinoma 7 218516 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 218517 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 218518 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 218519 -NCIT:C8254 Recurrent Renal Pelvis and Ureter Urothelial Carcinoma 8 218520 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 9 218521 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 218522 -NCIT:C172622 Recurrent Kidney Carcinoma 7 218523 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 8 218524 -NCIT:C162726 Recurrent Kidney Medullary Carcinoma 8 218525 -NCIT:C7825 Recurrent Renal Cell Carcinoma 8 218526 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 9 218527 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 10 218528 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 9 218529 -NCIT:C7508 Recurrent Urethral Carcinoma 7 218530 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 218531 -NCIT:C7899 Recurrent Bladder Carcinoma 7 218532 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 218533 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 218534 -NCIT:C190774 Recurrent Non-Muscle Invasive Bladder Carcinoma 8 218535 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 218536 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 218537 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 8 218538 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 8 218539 -NCIT:C9255 Recurrent Ureter Carcinoma 7 218540 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 8 218541 -NCIT:C8993 Ureter Carcinoma 6 218542 -NCIT:C27818 Metastatic Ureter Carcinoma 7 218543 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 8 218544 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 218545 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 218546 -NCIT:C4830 Ureter Urothelial Carcinoma 7 218547 -NCIT:C140357 Ureter Cancer by AJCC v8 Stage 8 218548 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 9 218549 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 9 218550 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 9 218551 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 9 218552 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 9 218553 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 9 218554 -NCIT:C140378 Ureter Cancer by AJCC v7 Stage 8 218555 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 9 218556 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 10 218557 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 10 218558 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 9 218559 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 9 218560 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 9 218561 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 9 218562 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 8 218563 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 218564 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 218565 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 8 218566 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 8 218567 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 8 218568 -NCIT:C180608 Ureter Urothelial Carcinoma, High Grade 8 218569 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 8 218570 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 8 218571 -NCIT:C6154 Ureter Squamous Cell Carcinoma 7 218572 -NCIT:C6155 Ureter Adenocarcinoma 7 218573 -NCIT:C6159 Ureter Undifferentiated Carcinoma 7 218574 -NCIT:C6176 Ureter Small Cell Neuroendocrine Carcinoma 7 218575 -NCIT:C9255 Recurrent Ureter Carcinoma 7 218576 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 8 218577 -NCIT:C9356 Regional Ureter Carcinoma 7 218578 -NCIT:C9106 Urethral Carcinoma 6 218579 -NCIT:C115210 Distal Urethral Carcinoma 7 218580 -NCIT:C115334 Proximal Urethral Carcinoma 7 218581 -NCIT:C140457 Urethral Cancer by AJCC v8 Stage 7 218582 -NCIT:C140458 Stage 0a Urethral Cancer AJCC v8 8 218583 -NCIT:C140459 Stage 0is Urethral Cancer AJCC v8 8 218584 -NCIT:C140460 Stage I Urethral Cancer AJCC v8 8 218585 -NCIT:C140461 Stage II Urethral Cancer AJCC v8 8 218586 -NCIT:C140462 Stage III Urethral Cancer AJCC v8 8 218587 -NCIT:C140463 Stage IV Urethral Cancer AJCC v8 8 218588 -NCIT:C140464 Urethral Cancer by AJCC v7 Stage 7 218589 -NCIT:C6195 Stage 0 Urethral Cancer AJCC v7 8 218590 -NCIT:C4531 Stage 0is Urethral Cancer AJCC v7 9 218591 -NCIT:C6196 Stage 0a Urethral Cancer AJCC v7 9 218592 -NCIT:C6197 Stage I Urethral Cancer AJCC v7 8 218593 -NCIT:C6198 Stage II Urethral Cancer AJCC v7 8 218594 -NCIT:C6199 Stage III Urethral Cancer AJCC v7 8 218595 -NCIT:C6200 Stage IV Urethral Cancer AJCC v7 8 218596 -NCIT:C27819 Metastatic Urethral Carcinoma 7 218597 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 218598 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 218599 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 218600 -NCIT:C6165 Urethral Squamous Cell Carcinoma 7 218601 -NCIT:C39862 Human Papillomavirus-Related Urethral Squamous Cell Carcinoma 8 218602 -NCIT:C39874 Urethral Verrucous Carcinoma 8 218603 -NCIT:C6166 Urethral Urothelial Carcinoma 7 218604 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 218605 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 218606 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 218607 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 218608 -NCIT:C158585 Unresectable Urethral Urothelial Carcinoma 8 218609 -NCIT:C176996 Refractory Urethral Urothelial Carcinoma 8 218610 -NCIT:C39900 Prostatic Urethra Urothelial Carcinoma 8 218611 -NCIT:C6167 Urethral Adenocarcinoma 7 218612 -NCIT:C6172 Urethral Clear Cell Adenocarcinoma 8 218613 -NCIT:C7371 Accessory Urethral Gland Adenocarcinoma 8 218614 -NCIT:C180948 Skene Gland Adenocarcinoma of the Urethra 9 218615 -NCIT:C39864 Cowper Gland Adenocarcinoma of the Urethra 9 218616 -NCIT:C39865 Littre Gland Adenocarcinoma of the Urethra 9 218617 -NCIT:C6168 Urethral Undifferentiated Carcinoma 7 218618 -NCIT:C7508 Recurrent Urethral Carcinoma 7 218619 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 218620 -NCIT:C9384 Kidney Carcinoma 6 218621 -NCIT:C159224 Kidney Neuroendocrine Carcinoma 7 218622 -NCIT:C116317 Kidney Small Cell Neuroendocrine Carcinoma 8 218623 -NCIT:C159225 Kidney Large Cell Neuroendocrine Carcinoma 8 218624 -NCIT:C172622 Recurrent Kidney Carcinoma 7 218625 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 8 218626 -NCIT:C162726 Recurrent Kidney Medullary Carcinoma 8 218627 -NCIT:C7825 Recurrent Renal Cell Carcinoma 8 218628 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 9 218629 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 10 218630 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 9 218631 -NCIT:C172623 Refractory Kidney Carcinoma 7 218632 -NCIT:C162727 Refractory Kidney Medullary Carcinoma 8 218633 -NCIT:C165745 Refractory Renal Cell Carcinoma 8 218634 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 9 218635 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 8 218636 -NCIT:C174565 Unresectable Kidney Carcinoma 7 218637 -NCIT:C154545 Unresectable Renal Cell Carcinoma 8 218638 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 218639 -NCIT:C165449 Unresectable Clear Cell Renal Cell Carcinoma 9 218640 -NCIT:C183251 Unresectable Sarcomatoid Renal Cell Carcinoma 9 218641 -NCIT:C190505 Unresectable Papillary Renal Cell Carcinoma 9 218642 -NCIT:C190508 Unresectable Unclassified Renal Cell Carcinoma 9 218643 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 8 218644 -NCIT:C174567 Unresectable Kidney Medullary Carcinoma 8 218645 -NCIT:C189241 Kidney Carcinoma Molecular Subtypes 7 218646 -NCIT:C154494 Renal Cell Carcinoma with MiT Translocations 8 218647 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 9 218648 -NCIT:C27891 TFE3-Rearranged Renal Cell Carcinoma 9 218649 -NCIT:C37872 Renal Cell Carcinoma Associated with t(X;1)(p11.2;q21) 10 218650 -NCIT:C37874 Renal Cell Carcinoma Associated with t(X;1)(p11.2;p34) 10 218651 -NCIT:C37876 Renal Cell Carcinoma Associated with t(X;17)(p11.2;q25) 10 218652 -NCIT:C39802 Renal Cell Carcinoma Associated with inv(X)(p11;q12) 10 218653 -NCIT:C37210 TFEB-Rearranged Renal Cell Carcinoma 9 218654 -NCIT:C156464 Succinate Dehydrogenase-Deficient Renal Cell Carcinoma 8 218655 -NCIT:C164156 Fumarate Hydratase-Deficient Renal Cell Carcinoma 8 218656 -NCIT:C189247 SMARCB1-Deficient Kidney Medullary Carcinoma 8 218657 -NCIT:C189248 Childhood SMARCB1-Deficient Kidney Medullary Carcinoma 9 218658 -NCIT:C189249 ALK-Rearranged Renal Cell Carcinoma 8 218659 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 9 218660 -NCIT:C191375 ELOC-Mutated Renal Cell Carcinoma 8 218661 -NCIT:C189244 Childhood Kidney Carcinoma 7 218662 -NCIT:C189248 Childhood SMARCB1-Deficient Kidney Medullary Carcinoma 8 218663 -NCIT:C6568 Childhood Renal Cell Carcinoma 8 218664 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 9 218665 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 9 218666 -NCIT:C189255 Childhood Eosinophilic Solid and Cystic Renal Cell Carcinoma 9 218667 -NCIT:C27806 Metastatic Kidney Carcinoma 7 218668 -NCIT:C150595 Metastatic Renal Cell Carcinoma 8 218669 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 218670 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 218671 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 218672 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 218673 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 218674 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 218675 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 9 218676 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 218677 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 218678 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 9 218679 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 218680 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 218681 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 9 218682 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 218683 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 218684 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 218685 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 218686 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 218687 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 218688 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 218689 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 218690 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 218691 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 9 218692 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 218693 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 218694 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 9 218695 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 218696 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 218697 -NCIT:C157755 Metastatic Kidney Medullary Carcinoma 8 218698 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 218699 -NCIT:C163965 Metastatic Renal Pelvis Carcinoma 8 218700 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 218701 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 218702 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 218703 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 218704 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 218705 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 218706 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 218707 -NCIT:C172617 Advanced Kidney Carcinoma 8 218708 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 218709 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 218710 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 218711 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 218712 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 218713 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 218714 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 218715 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 218716 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 218717 -NCIT:C172618 Locally Advanced Kidney Carcinoma 8 218718 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 218719 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 218720 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 218721 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 218722 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 218723 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 218724 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 218725 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 218726 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 218727 -NCIT:C39807 Mucinous Tubular and Spindle Cell Carcinoma of the Kidney 7 218728 -NCIT:C6142 Renal Pelvis Carcinoma 7 218729 -NCIT:C163965 Metastatic Renal Pelvis Carcinoma 8 218730 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 218731 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 218732 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 218733 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 218734 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 218735 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 218736 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 218737 -NCIT:C6143 Renal Pelvis Adenocarcinoma 8 218738 -NCIT:C7355 Renal Pelvis Urothelial Carcinoma 8 218739 -NCIT:C140356 Renal Pelvis Cancer by AJCC v8 Stage 9 218740 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 218741 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 10 218742 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 10 218743 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 10 218744 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 10 218745 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 10 218746 -NCIT:C140377 Renal Pelvis Cancer by AJCC v7 Stage 9 218747 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 10 218748 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 10 218749 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 10 218750 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 10 218751 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 10 218752 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 11 218753 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 11 218754 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 218755 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 218756 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 218757 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 218758 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 9 218759 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 9 218760 -NCIT:C180607 Renal Pelvis Urothelial Carcinoma, High Grade 9 218761 -NCIT:C6148 Renal Pelvis Papillary Urothelial Carcinoma 9 218762 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 10 218763 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 10 218764 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 9 218765 -NCIT:C7732 Renal Pelvis Squamous Cell Carcinoma 8 218766 -NCIT:C6194 Collecting Duct Carcinoma 7 218767 -NCIT:C7572 Kidney Medullary Carcinoma 7 218768 -NCIT:C157755 Metastatic Kidney Medullary Carcinoma 8 218769 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 218770 -NCIT:C162726 Recurrent Kidney Medullary Carcinoma 8 218771 -NCIT:C162727 Refractory Kidney Medullary Carcinoma 8 218772 -NCIT:C174567 Unresectable Kidney Medullary Carcinoma 8 218773 -NCIT:C189247 SMARCB1-Deficient Kidney Medullary Carcinoma 8 218774 -NCIT:C189248 Childhood SMARCB1-Deficient Kidney Medullary Carcinoma 9 218775 -NCIT:C9385 Renal Cell Carcinoma 7 218776 -NCIT:C100051 Renal Cell Carcinoma Associated with Neuroblastoma 8 218777 -NCIT:C126303 Tubulocystic Renal Cell Carcinoma 8 218778 -NCIT:C140322 Renal Cell Cancer by AJCC v8 Stage 8 218779 -NCIT:C140323 Stage I Renal Cell Cancer AJCC v8 9 218780 -NCIT:C140324 Stage II Renal Cell Cancer AJCC v8 9 218781 -NCIT:C140325 Stage III Renal Cell Cancer AJCC v8 9 218782 -NCIT:C140326 Stage IV Renal Cell Cancer AJCC v8 9 218783 -NCIT:C150359 Bilateral Synchronous Sporadic Renal Cell Carcinoma 8 218784 -NCIT:C150595 Metastatic Renal Cell Carcinoma 8 218785 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 218786 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 218787 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 218788 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 218789 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 218790 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 218791 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 9 218792 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 218793 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 218794 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 9 218795 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 218796 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 218797 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 9 218798 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 218799 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 218800 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 218801 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 218802 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 218803 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 218804 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 218805 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 218806 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 218807 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 9 218808 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 218809 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 218810 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 9 218811 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 218812 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 218813 -NCIT:C154494 Renal Cell Carcinoma with MiT Translocations 8 218814 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 9 218815 -NCIT:C27891 TFE3-Rearranged Renal Cell Carcinoma 9 218816 -NCIT:C37872 Renal Cell Carcinoma Associated with t(X;1)(p11.2;q21) 10 218817 -NCIT:C37874 Renal Cell Carcinoma Associated with t(X;1)(p11.2;p34) 10 218818 -NCIT:C37876 Renal Cell Carcinoma Associated with t(X;17)(p11.2;q25) 10 218819 -NCIT:C39802 Renal Cell Carcinoma Associated with inv(X)(p11;q12) 10 218820 -NCIT:C37210 TFEB-Rearranged Renal Cell Carcinoma 9 218821 -NCIT:C154545 Unresectable Renal Cell Carcinoma 8 218822 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 218823 -NCIT:C165449 Unresectable Clear Cell Renal Cell Carcinoma 9 218824 -NCIT:C183251 Unresectable Sarcomatoid Renal Cell Carcinoma 9 218825 -NCIT:C190505 Unresectable Papillary Renal Cell Carcinoma 9 218826 -NCIT:C190508 Unresectable Unclassified Renal Cell Carcinoma 9 218827 -NCIT:C154547 Resectable Renal Cell Carcinoma 8 218828 -NCIT:C156464 Succinate Dehydrogenase-Deficient Renal Cell Carcinoma 8 218829 -NCIT:C157718 Acquired Cystic Disease-Associated Renal Cell Carcinoma 8 218830 -NCIT:C164156 Fumarate Hydratase-Deficient Renal Cell Carcinoma 8 218831 -NCIT:C165745 Refractory Renal Cell Carcinoma 8 218832 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 9 218833 -NCIT:C189249 ALK-Rearranged Renal Cell Carcinoma 8 218834 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 9 218835 -NCIT:C189254 Eosinophilic Solid and Cystic Renal Cell Carcinoma 8 218836 -NCIT:C189255 Childhood Eosinophilic Solid and Cystic Renal Cell Carcinoma 9 218837 -NCIT:C191370 Renal Cell Carcinoma, Not Otherwise Specified 8 218838 -NCIT:C191375 ELOC-Mutated Renal Cell Carcinoma 8 218839 -NCIT:C27638 Transplant-Related Renal Cell Carcinoma 8 218840 -NCIT:C27892 Unclassified Renal Cell Carcinoma 8 218841 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 9 218842 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 218843 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 218844 -NCIT:C190508 Unresectable Unclassified Renal Cell Carcinoma 9 218845 -NCIT:C27893 Sarcomatoid Renal Cell Carcinoma 8 218846 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 9 218847 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 218848 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 218849 -NCIT:C183251 Unresectable Sarcomatoid Renal Cell Carcinoma 9 218850 -NCIT:C39789 Hereditary Renal Cell Carcinoma 8 218851 -NCIT:C36260 Hereditary Clear Cell Renal Cell Carcinoma 9 218852 -NCIT:C39790 Renal Cell Carcinoma with Constitutional Chromosome 3 Translocations 9 218853 -NCIT:C51302 Hereditary Leiomyomatosis and Renal Cell Carcinoma 9 218854 -NCIT:C9222 Hereditary Papillary Renal Cell Carcinoma 9 218855 -NCIT:C4033 Clear Cell Renal Cell Carcinoma 8 218856 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 9 218857 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 10 218858 -NCIT:C157614 BAP1-Mutant Clear Cell Renal Cell Carcinoma 9 218859 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 9 218860 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 218861 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 218862 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 9 218863 -NCIT:C165449 Unresectable Clear Cell Renal Cell Carcinoma 9 218864 -NCIT:C35851 Grade 1 Clear Cell Renal Cell Carcinoma 9 218865 -NCIT:C35852 Grade 2 Clear Cell Renal Cell Carcinoma 9 218866 -NCIT:C35853 Grade 3 Clear Cell Renal Cell Carcinoma 9 218867 -NCIT:C35854 Grade 4 Clear Cell Renal Cell Carcinoma 9 218868 -NCIT:C36260 Hereditary Clear Cell Renal Cell Carcinoma 9 218869 -NCIT:C36261 Non-Hereditary Clear Cell Renal Cell Carcinoma 9 218870 -NCIT:C4146 Chromophobe Renal Cell Carcinoma 8 218871 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 9 218872 -NCIT:C155951 Chromophobe Renal Cell Carcinoma Associated with Birt-Hogg-Dube Syndrome 9 218873 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 9 218874 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 218875 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 218876 -NCIT:C27888 Classic Variant of Chromophobe Renal Cell Carcinoma 9 218877 -NCIT:C27889 Eosinophilic Variant of Chromophobe Renal Cell Carcinoma 9 218878 -NCIT:C6568 Childhood Renal Cell Carcinoma 8 218879 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 9 218880 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 9 218881 -NCIT:C189255 Childhood Eosinophilic Solid and Cystic Renal Cell Carcinoma 9 218882 -NCIT:C6975 Papillary Renal Cell Carcinoma 8 218883 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 9 218884 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 218885 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 218886 -NCIT:C190505 Unresectable Papillary Renal Cell Carcinoma 9 218887 -NCIT:C27886 Type 1 Papillary Renal Cell Carcinoma 9 218888 -NCIT:C27887 Type 2 Papillary Renal Cell Carcinoma 9 218889 -NCIT:C27890 Sporadic Papillary Renal Cell Carcinoma 9 218890 -NCIT:C9222 Hereditary Papillary Renal Cell Carcinoma 9 218891 -NCIT:C7825 Recurrent Renal Cell Carcinoma 8 218892 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 9 218893 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 10 218894 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 9 218895 -NCIT:C90343 Renal Cell Cancer by AJCC v6 Stage 8 218896 -NCIT:C4003 Stage IV Renal Cell Cancer AJCC v6 9 218897 -NCIT:C7823 Stage I Renal Cell Cancer AJCC v6 and v7 9 218898 -NCIT:C7824 Stage II Renal Cell Cancer AJCC v6 9 218899 -NCIT:C9220 Stage III Renal Cell Cancer AJCC v6 9 218900 -NCIT:C91201 Renal Cell Cancer by AJCC v7 Stage 8 218901 -NCIT:C7823 Stage I Renal Cell Cancer AJCC v6 and v7 9 218902 -NCIT:C89301 Stage II Renal Cell Cancer AJCC v7 9 218903 -NCIT:C89302 Stage III Renal Cell Cancer AJCC v7 9 218904 -NCIT:C89303 Stage IV Renal Cell Cancer AJCC v7 9 218905 -NCIT:C190783 Unresectable Genitourinary System Carcinoma 5 218906 -NCIT:C150521 Unresectable Urothelial Carcinoma 6 218907 -NCIT:C158585 Unresectable Urethral Urothelial Carcinoma 7 218908 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 7 218909 -NCIT:C164160 Unresectable Renal Pelvis and Ureter Urothelial Carcinoma 7 218910 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 8 218911 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 8 218912 -NCIT:C167073 Unresectable Ovarian Carcinoma 6 218913 -NCIT:C160781 Unresectable Ovarian Serous Adenocarcinoma 7 218914 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 8 218915 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 218916 -NCIT:C172235 Unresectable Ovarian Undifferentiated Carcinoma 7 218917 -NCIT:C179459 Unresectable Platinum-Resistant Ovarian Carcinoma 7 218918 -NCIT:C183245 Unresectable Ovarian Mucinous Adenocarcinoma 7 218919 -NCIT:C186273 Unresectable Ovarian Endometrioid Adenocarcinoma 7 218920 -NCIT:C167075 Unresectable Bladder Carcinoma 6 218921 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 7 218922 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 7 218923 -NCIT:C170969 Unresectable Fallopian Tube Carcinoma 6 218924 -NCIT:C170970 Unresectable Fallopian Tube Adenocarcinoma 7 218925 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 8 218926 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 8 218927 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 7 218928 -NCIT:C171610 Unresectable Endometrial Carcinoma 6 218929 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 7 218930 -NCIT:C171611 Unresectable Prostate Carcinoma 6 218931 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 7 218932 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 8 218933 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 7 218934 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 7 218935 -NCIT:C174024 Unresectable Cervical Carcinoma 6 218936 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 7 218937 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 8 218938 -NCIT:C174025 Unresectable Cervical Squamous Cell Carcinoma 7 218939 -NCIT:C174027 Unresectable Cervical Adenosquamous Carcinoma 7 218940 -NCIT:C174029 Unresectable Cervical Adenocarcinoma 7 218941 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 8 218942 -NCIT:C174198 Unresectable Vulvar Carcinoma 6 218943 -NCIT:C174199 Unresectable Vulvar Squamous Cell Carcinoma 7 218944 -NCIT:C174565 Unresectable Kidney Carcinoma 6 218945 -NCIT:C154545 Unresectable Renal Cell Carcinoma 7 218946 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 8 218947 -NCIT:C165449 Unresectable Clear Cell Renal Cell Carcinoma 8 218948 -NCIT:C183251 Unresectable Sarcomatoid Renal Cell Carcinoma 8 218949 -NCIT:C190505 Unresectable Papillary Renal Cell Carcinoma 8 218950 -NCIT:C190508 Unresectable Unclassified Renal Cell Carcinoma 8 218951 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 7 218952 -NCIT:C174567 Unresectable Kidney Medullary Carcinoma 7 218953 -NCIT:C175434 Unresectable Vaginal Carcinoma 6 218954 -NCIT:C165723 Mixed Carcinoma 4 218955 -NCIT:C165716 Invasive Bladder Mixed Carcinoma 5 218956 -NCIT:C181079 Hybrid Salivary Gland Carcinoma 5 218957 -NCIT:C3727 Adenosquamous Carcinoma 5 218958 -NCIT:C114656 Endometrial Adenosquamous Carcinoma 6 218959 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 7 218960 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 7 218961 -NCIT:C118630 Liver Adenosquamous Carcinoma 6 218962 -NCIT:C159248 Adenosquamous Carcinoma of the Penis 6 218963 -NCIT:C173807 Tongue Adenosquamous Carcinoma 6 218964 -NCIT:C174402 Conjunctival Adenosquamous Carcinoma 6 218965 -NCIT:C27418 Ampulla of Vater Adenosquamous Carcinoma 6 218966 -NCIT:C27421 Esophageal Adenosquamous Carcinoma 6 218967 -NCIT:C35737 Salivary Gland Adenosquamous Carcinoma 6 218968 -NCIT:C40260 Vaginal Adenosquamous Carcinoma 6 218969 -NCIT:C181028 Metastatic Vaginal Adenosquamous Carcinoma 7 218970 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 8 218971 -NCIT:C40296 Bartholin Gland Adenosquamous Carcinoma 6 218972 -NCIT:C40361 Breast Adenosquamous Carcinoma 6 218973 -NCIT:C40362 Low Grade Breast Adenosquamous Carcinoma 7 218974 -NCIT:C43535 Small Intestinal Adenosquamous Carcinoma 6 218975 -NCIT:C43589 Colorectal Adenosquamous Carcinoma 6 218976 -NCIT:C43594 Rectal Adenosquamous Carcinoma 7 218977 -NCIT:C5491 Colon Adenosquamous Carcinoma 7 218978 -NCIT:C4519 Cervical Adenosquamous Carcinoma 6 218979 -NCIT:C136650 Recurrent Cervical Adenosquamous Carcinoma 7 218980 -NCIT:C153390 Metastatic Cervical Adenosquamous Carcinoma 7 218981 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 8 218982 -NCIT:C174027 Unresectable Cervical Adenosquamous Carcinoma 7 218983 -NCIT:C40212 Cervical Poorly Differentiated Adenosquamous Carcinoma 7 218984 -NCIT:C54250 Skin Adenosquamous Carcinoma 6 218985 -NCIT:C54338 Laryngeal Adenosquamous Carcinoma 6 218986 -NCIT:C5474 Gastric Adenosquamous Carcinoma 6 218987 -NCIT:C5538 Prostate Adenosquamous Carcinoma 6 218988 -NCIT:C5721 Pancreatic Adenosquamous Carcinoma 6 218989 -NCIT:C174566 Resectable Pancreatic Adenosquamous Carcinoma 7 218990 -NCIT:C190770 Metastatic Pancreatic Adenosquamous Carcinoma 7 218991 -NCIT:C5778 Extrahepatic Bile Duct Adenosquamous Carcinoma 6 218992 -NCIT:C6458 Thymic Adenosquamous Carcinoma 6 218993 -NCIT:C7356 Gallbladder Adenosquamous Carcinoma 6 218994 -NCIT:C9133 Lung Adenosquamous Carcinoma 6 218995 -NCIT:C136492 Lung Adenosquamous Carcinoma by AJCC v7 Stage 7 218996 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 8 218997 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 8 218998 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 9 218999 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 9 219000 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 8 219001 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 9 219002 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 9 219003 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 8 219004 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 9 219005 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 9 219006 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 8 219007 -NCIT:C156093 Metastatic Lung Adenosquamous Carcinoma 7 219008 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 8 219009 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 8 219010 -NCIT:C6684 Occult Lung Adenosquamous Carcinoma 7 219011 -NCIT:C8747 Recurrent Lung Adenosquamous Carcinoma 7 219012 -NCIT:C97046 Human Papillomavirus-Related Adenosquamous Carcinoma 6 219013 -NCIT:C40090 Ovarian Seromucinous Carcinoma 5 219014 -NCIT:C178669 Recurrent Ovarian Seromucinous Carcinoma 6 219015 -NCIT:C178671 Refractory Ovarian Seromucinous Carcinoma 6 219016 -NCIT:C40347 Breast Mixed Carcinoma 5 219017 -NCIT:C40361 Breast Adenosquamous Carcinoma 6 219018 -NCIT:C40362 Low Grade Breast Adenosquamous Carcinoma 7 219019 -NCIT:C6393 Invasive Breast Ductal Carcinoma and Invasive Lobular Carcinoma 6 219020 -NCIT:C7591 Combined Lung Carcinoma 5 219021 -NCIT:C7267 Combined Lung Large Cell Neuroendocrine Carcinoma 6 219022 -NCIT:C9137 Combined Lung Small Cell Carcinoma 6 219023 -NCIT:C9379 Combined Lung Small Cell Carcinoma and Lung Adenocarcinoma 7 219024 -NCIT:C9423 Combined Lung Small Cell and Squamous Cell Carcinoma 7 219025 -NCIT:C95406 Digestive System Mixed Adenoneuroendocrine Carcinoma 5 219026 -NCIT:C163967 Metastatic Digestive System Mixed Adenoneuroendocrine Carcinoma 6 219027 -NCIT:C172718 Liver Mixed Adenoneuroendocrine Carcinoma 6 219028 -NCIT:C172808 Unresectable Digestive System Mixed Adenoneuroendocrine Carcinoma 6 219029 -NCIT:C43564 Appendix Mixed Adenoneuroendocrine Carcinoma 6 219030 -NCIT:C3689 Appendix Goblet Cell Adenocarcinoma 7 219031 -NCIT:C45843 Pancreatic Mixed Adenoneuroendocrine Carcinoma 6 219032 -NCIT:C6878 Pancreatic Mixed Acinar-Neuroendocrine Carcinoma 7 219033 -NCIT:C6879 Pancreatic Mixed Ductal-Neuroendocrine Carcinoma 7 219034 -NCIT:C95460 Pancreatic Mixed Acinar-Ductal Neuroendocrine Carcinoma 7 219035 -NCIT:C95621 Esophageal Mixed Adenoneuroendocrine Carcinoma 6 219036 -NCIT:C95886 Gastric Mixed Adenoneuroendocrine Carcinoma 6 219037 -NCIT:C95986 Ampulla of Vater Mixed Adenoneuroendocrine Carcinoma 6 219038 -NCIT:C96066 Small Intestinal Mixed Adenoneuroendocrine Carcinoma 6 219039 -NCIT:C96158 Colorectal Mixed Adenoneuroendocrine Carcinoma 6 219040 -NCIT:C96553 Anal Canal Mixed Adenoneuroendocrine Carcinoma 6 219041 -NCIT:C96927 Gallbladder Mixed Adenoneuroendocrine Carcinoma 6 219042 -NCIT:C96928 Gallbladder Goblet Cell Carcinoid 7 219043 -NCIT:C96959 Extrahepatic Bile Duct Mixed Adenoneuroendocrine Carcinoma 6 219044 -NCIT:C190275 Childhood Carcinoma 4 219045 -NCIT:C118808 Childhood Colorectal Carcinoma 5 219046 -NCIT:C118823 Childhood Rectal Carcinoma 6 219047 -NCIT:C118809 Childhood Breast Carcinoma 5 219048 -NCIT:C118811 Childhood Laryngeal Carcinoma 5 219049 -NCIT:C118812 Childhood Esophageal Carcinoma 5 219050 -NCIT:C118813 Childhood Gastric Carcinoma 5 219051 -NCIT:C118814 Childhood Lung Non-Small Cell Carcinoma 5 219052 -NCIT:C118815 Childhood Lung Small Cell Carcinoma 5 219053 -NCIT:C118816 Childhood Bladder Carcinoma 5 219054 -NCIT:C118817 Childhood Nasal Cavity Carcinoma 5 219055 -NCIT:C118818 Childhood Paranasal Sinus Carcinoma 5 219056 -NCIT:C118819 Childhood Parathyroid Gland Carcinoma 5 219057 -NCIT:C118824 Childhood Salivary Gland Carcinoma 5 219058 -NCIT:C190273 Childhood Salivary Gland Mucoepidermoid Carcinoma 6 219059 -NCIT:C190274 Childhood Salivary Gland Acinic Cell Carcinoma 6 219060 -NCIT:C118827 Childhood Thyroid Gland Carcinoma 5 219061 -NCIT:C123903 Childhood Thyroid Gland Papillary Carcinoma 6 219062 -NCIT:C123904 Childhood Thyroid Gland Follicular Carcinoma 6 219063 -NCIT:C123905 Childhood Thyroid Gland Medullary Carcinoma 6 219064 -NCIT:C190064 Childhood Thyroid Gland Spindle Epithelial Tumor with Thymus-Like Elements 6 219065 -NCIT:C123933 Childhood Small Intestinal Carcinoma 5 219066 -NCIT:C124292 Childhood Choroid Plexus Carcinoma 5 219067 -NCIT:C189244 Childhood Kidney Carcinoma 5 219068 -NCIT:C189248 Childhood SMARCB1-Deficient Kidney Medullary Carcinoma 6 219069 -NCIT:C6568 Childhood Renal Cell Carcinoma 6 219070 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 7 219071 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 7 219072 -NCIT:C189255 Childhood Eosinophilic Solid and Cystic Renal Cell Carcinoma 7 219073 -NCIT:C189334 Childhood Ovarian Small Cell Carcinoma, Hypercalcemic Type 5 219074 -NCIT:C190024 Childhood Pancreatic Acinar Cell Carcinoma 5 219075 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 6 219076 -NCIT:C190069 Childhood Adrenal Cortical Carcinoma 5 219077 -NCIT:C190272 Childhood Mucoepidermoid Carcinoma 5 219078 -NCIT:C190273 Childhood Salivary Gland Mucoepidermoid Carcinoma 6 219079 -NCIT:C190276 Childhood Nasopharyngeal Carcinoma 5 219080 -NCIT:C190277 Childhood NUT Carcinoma 5 219081 -NCIT:C190278 Childhood Head and Neck NUT Carcinoma 6 219082 -NCIT:C7955 Childhood Hepatocellular Carcinoma 5 219083 -NCIT:C189932 Childhood Fibrolamellar Carcinoma 6 219084 -NCIT:C5708 Stage III Childhood Hepatocellular Carcinoma AJCC v7 6 219085 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 6 219086 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 6 219087 -NCIT:C7838 Stage IV Childhood Hepatocellular Carcinoma AJCC v7 6 219088 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 6 219089 -NCIT:C27004 Sarcomatoid Carcinoma 4 219090 -NCIT:C27084 Spindle Cell Squamous Cell Carcinoma 5 219091 -NCIT:C129289 Gingival Spindle Cell Carcinoma 6 219092 -NCIT:C173079 Sinonasal Spindle Cell Squamous Cell Carcinoma 6 219093 -NCIT:C174398 Conjunctival Spindle Cell Carcinoma 6 219094 -NCIT:C40358 Breast Squamous Cell Carcinoma, Spindle Cell Variant 6 219095 -NCIT:C4666 Skin Spindle Cell Squamous Cell Carcinoma 6 219096 -NCIT:C54336 Laryngeal Squamous Cell Carcinoma, Spindle Cell Variant 6 219097 -NCIT:C6984 Sarcomatoid Carcinoma of the Penis 6 219098 -NCIT:C95608 Esophageal Spindle Cell Carcinoma 6 219099 -NCIT:C27893 Sarcomatoid Renal Cell Carcinoma 5 219100 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 6 219101 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 7 219102 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 7 219103 -NCIT:C183251 Unresectable Sarcomatoid Renal Cell Carcinoma 6 219104 -NCIT:C38111 Skin Basal Cell Carcinoma with Sarcomatoid Differentiation 5 219105 -NCIT:C4094 Pleomorphic Carcinoma 5 219106 -NCIT:C45542 Lung Pleomorphic Carcinoma 6 219107 -NCIT:C4120 Sarcomatoid Transitional Cell Carcinoma 5 219108 -NCIT:C164252 Invasive Sarcomatoid Urothelial Carcinoma 6 219109 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 7 219110 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 219111 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 7 219112 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 219113 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 8 219114 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 8 219115 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 7 219116 -NCIT:C45540 Lung Sarcomatoid Carcinoma 5 219117 -NCIT:C3732 Pulmonary Blastoma 6 219118 -NCIT:C4452 Lung Giant Cell Carcinoma 6 219119 -NCIT:C45541 Lung Spindle Cell Carcinoma 6 219120 -NCIT:C45542 Lung Pleomorphic Carcinoma 6 219121 -NCIT:C45543 Lung Carcinosarcoma 6 219122 -NCIT:C5530 Prostate Acinar Adenocarcinoma, Sarcomatoid Variant 5 219123 -NCIT:C6463 Thymic Sarcomatoid Carcinoma 5 219124 -NCIT:C68644 Adrenal Cortical Sarcomatoid Carcinoma 5 219125 -NCIT:C96494 Colorectal Sarcomatoid Carcinoma 5 219126 -NCIT:C5556 Rectal Sarcomatoid Carcinoma 6 219127 -NCIT:C27236 Tobacco-Related Carcinoma 4 219128 -NCIT:C27772 Cigarette Smoking-Related Carcinoma 5 219129 -NCIT:C27773 Tobacco Chewing-Related Carcinoma 5 219130 -NCIT:C27633 Transplant-Related Carcinoma 4 219131 -NCIT:C154700 Transplant-Related Squamous Cell Carcinoma 5 219132 -NCIT:C27636 Transplant-Related Skin Squamous Cell Carcinoma 6 219133 -NCIT:C27634 Transplant-Related Bladder Urothelial Carcinoma 5 219134 -NCIT:C27635 Transplant-Related Hepatocellular Carcinoma 5 219135 -NCIT:C27637 Transplant-Related Lung Carcinoma 5 219136 -NCIT:C27638 Transplant-Related Renal Cell Carcinoma 5 219137 -NCIT:C27698 Virus-Related Carcinoma 4 219138 -NCIT:C27674 Human Papillomavirus-Related Carcinoma 5 219139 -NCIT:C27675 Human Papillomavirus-Related Cervical Carcinoma 6 219140 -NCIT:C27676 Human Papillomavirus-Related Cervical Squamous Cell Carcinoma 7 219141 -NCIT:C40192 Cervical Papillary Squamous Cell Carcinoma 8 219142 -NCIT:C40191 Cervical Warty Carcinoma 9 219143 -NCIT:C40194 Cervical Squamotransitional Carcinoma 9 219144 -NCIT:C27677 Human Papillomavirus-Related Cervical Adenocarcinoma 7 219145 -NCIT:C127907 Endocervical Adenocarcinoma, Usual-Type 8 219146 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 9 219147 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 9 219148 -NCIT:C40208 Cervical Villoglandular Adenocarcinoma 9 219149 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 8 219150 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 8 219151 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 8 219152 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 8 219153 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 8 219154 -NCIT:C27683 Human Papillomavirus-Related Squamous Cell Carcinoma 6 219155 -NCIT:C171023 Human Papillomavirus-Related Mucosal Head and Neck Squamous Cell Carcinoma 7 219156 -NCIT:C173078 Sinonasal Human Papillomavirus-Related Carcinoma with Adenoid Cystic-Like Features 8 219157 -NCIT:C87055 Oropharyngeal Human Papillomavirus-Positive Squamous Cell Carcinoma 8 219158 -NCIT:C180917 Human Papillomavirus-Related Vaginal Squamous Cell Carcinoma 7 219159 -NCIT:C40248 Vaginal Warty Carcinoma 8 219160 -NCIT:C187051 Human Papillomavirus-Related Head and Neck Squamous Cell Carcinoma of Unknown Primary 7 219161 -NCIT:C27676 Human Papillomavirus-Related Cervical Squamous Cell Carcinoma 7 219162 -NCIT:C40192 Cervical Papillary Squamous Cell Carcinoma 8 219163 -NCIT:C40191 Cervical Warty Carcinoma 9 219164 -NCIT:C40194 Cervical Squamotransitional Carcinoma 9 219165 -NCIT:C27678 Human Papillomavirus-Related Verrucous Carcinoma 7 219166 -NCIT:C27679 Human Papillomavirus-Related Vulvar Squamous Cell Carcinoma 7 219167 -NCIT:C40287 Vulvar Warty Carcinoma 8 219168 -NCIT:C27680 Human Papillomavirus-Related Esophageal Squamous Cell Carcinoma 7 219169 -NCIT:C27681 Human Papillomavirus-Related Anal Squamous Cell Carcinoma 7 219170 -NCIT:C27682 Human Papillomavirus-Related Squamous Cell Carcinoma of the Penis 7 219171 -NCIT:C159250 Warty-Basaloid Carcinoma of the Penis 8 219172 -NCIT:C159251 Clear Cell Squamous Cell Carcinoma of the Penis 8 219173 -NCIT:C159252 Lymphoepithelioma-Like Carcinoma of the Penis 8 219174 -NCIT:C6980 Basaloid Squamous Cell Carcinoma of the Penis 8 219175 -NCIT:C159249 Papillary-Basaloid Carcinoma of the Penis 9 219176 -NCIT:C6981 Warty Carcinoma of the Penis 8 219177 -NCIT:C39862 Human Papillomavirus-Related Urethral Squamous Cell Carcinoma 7 219178 -NCIT:C27684 Human Papillomavirus-Related Adenocarcinoma 6 219179 -NCIT:C180943 Human Papillomavirus-Related Vaginal Adenocarcinoma 7 219180 -NCIT:C27677 Human Papillomavirus-Related Cervical Adenocarcinoma 7 219181 -NCIT:C127907 Endocervical Adenocarcinoma, Usual-Type 8 219182 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 9 219183 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 9 219184 -NCIT:C40208 Cervical Villoglandular Adenocarcinoma 9 219185 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 8 219186 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 8 219187 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 8 219188 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 8 219189 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 8 219190 -NCIT:C97046 Human Papillomavirus-Related Adenosquamous Carcinoma 6 219191 -NCIT:C27686 Hepatitis Virus-Related Hepatocellular Carcinoma 5 219192 -NCIT:C27687 Hepatitis B Virus-Related Hepatocellular Carcinoma 6 219193 -NCIT:C27688 Hepatitis C Virus-Related Hepatocellular Carcinoma 6 219194 -NCIT:C27690 EBV-Related Carcinoma 5 219195 -NCIT:C162304 EBV-Related Gastric Carcinoma 6 219196 -NCIT:C7373 Nasopharyngeal Nonkeratinizing Carcinoma 6 219197 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 7 219198 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 8 219199 -NCIT:C54389 Nasopharyngeal Differentiated Carcinoma 7 219200 -NCIT:C8023 Nasopharyngeal Undifferentiated Carcinoma 7 219201 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 8 219202 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 8 219203 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 8 219204 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 8 219205 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 8 219206 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 8 219207 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 8 219208 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 6 219209 -NCIT:C27700 AIDS-Related Carcinoma 5 219210 -NCIT:C7432 AIDS-Related Cervical Carcinoma 6 219211 -NCIT:C9278 AIDS-Related Anal Carcinoma 6 219212 -NCIT:C133095 AIDS-Related Anal Canal Carcinoma 7 219213 -NCIT:C27282 Stage 0 AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 219214 -NCIT:C27283 Stage I AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 219215 -NCIT:C27284 Stage II AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 219216 -NCIT:C27285 Stage III AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 219217 -NCIT:C27286 Stage IV AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 219218 -NCIT:C9249 Recurrent AIDS-Related Anal Canal Carcinoma 8 219219 -NCIT:C27764 Helicobacter Pylori-Related Carcinoma 4 219220 -NCIT:C27765 Helicobacter Pylori-Related Gastric Adenocarcinoma 5 219221 -NCIT:C27767 Parasite-Related Carcinoma 4 219222 -NCIT:C27768 Schistosoma Hematobium-Related Bladder Squamous Cell Carcinoma 5 219223 -NCIT:C39833 Schistosoma Hematobium-Related Bladder Verrucous Carcinoma 6 219224 -NCIT:C27769 Opisthorchis Viverrini-Related Cholangiocarcinoma 5 219225 -NCIT:C27825 Mucin-Producing Carcinoma 4 219226 -NCIT:C27379 Mucin-Producing Adenocarcinoma 5 219227 -NCIT:C167364 Endocrine Mucin-Producing Sweat Gland Carcinoma 6 219228 -NCIT:C3772 Mucoepidermoid Carcinoma 5 219229 -NCIT:C175339 Lacrimal Drainage System Mucoepidermoid Carcinoma 6 219230 -NCIT:C180878 Cervical Mucoepidermoid Carcinoma 6 219231 -NCIT:C190272 Childhood Mucoepidermoid Carcinoma 6 219232 -NCIT:C190273 Childhood Salivary Gland Mucoepidermoid Carcinoma 7 219233 -NCIT:C38762 Thyroid Gland Mucoepidermoid Carcinoma 6 219234 -NCIT:C38763 Thyroid Gland Sclerosing Mucoepidermoid Carcinoma with Eosinophilia 7 219235 -NCIT:C4472 Mucoepidermoid Skin Carcinoma 6 219236 -NCIT:C45544 Lung Mucoepidermoid Carcinoma 6 219237 -NCIT:C5166 Breast Mucoepidermoid Carcinoma 6 219238 -NCIT:C5167 High Grade Breast Mucoepidermoid Carcinoma 7 219239 -NCIT:C5168 Low Grade Breast Mucoepidermoid Carcinoma 7 219240 -NCIT:C5343 Esophageal Mucoepidermoid Carcinoma 6 219241 -NCIT:C5862 Extrahepatic Bile Duct Mucoepidermoid Carcinoma 6 219242 -NCIT:C5908 Salivary Gland Mucoepidermoid Carcinoma 6 219243 -NCIT:C190273 Childhood Salivary Gland Mucoepidermoid Carcinoma 7 219244 -NCIT:C5906 Major Salivary Gland Mucoepidermoid Carcinoma 7 219245 -NCIT:C5938 Parotid Gland Mucoepidermoid Carcinoma 8 219246 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 9 219247 -NCIT:C5939 Submandibular Gland Mucoepidermoid Carcinoma 8 219248 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 9 219249 -NCIT:C5953 Minor Salivary Gland Mucoepidermoid Carcinoma 7 219250 -NCIT:C8015 Low Grade Salivary Gland Mucoepidermoid Carcinoma 7 219251 -NCIT:C8017 Intermediate Grade Salivary Gland Mucoepidermoid Carcinoma 7 219252 -NCIT:C8019 High Grade Salivary Gland Mucoepidermoid Carcinoma 7 219253 -NCIT:C6018 Paranasal Sinus Mucoepidermoid Carcinoma 6 219254 -NCIT:C6091 Lacrimal Gland Mucoepidermoid Carcinoma 6 219255 -NCIT:C6457 Thymic Mucoepidermoid Carcinoma 6 219256 -NCIT:C8177 Oral Cavity Mucoepidermoid Carcinoma 6 219257 -NCIT:C156090 Metastatic Oral Cavity Mucoepidermoid Carcinoma 7 219258 -NCIT:C181160 Tongue Mucoepidermoid Carcinoma 7 219259 -NCIT:C5990 Posterior Tongue Mucoepidermoid Carcinoma 8 219260 -NCIT:C6250 Anterior Tongue Mucoepidermoid Carcinoma 8 219261 -NCIT:C6214 Hard Palate Mucoepidermoid Carcinoma 7 219262 -NCIT:C8178 Floor of Mouth Mucoepidermoid Carcinoma 7 219263 -NCIT:C8199 Stage I Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 7 219264 -NCIT:C8203 Stage II Oral Cavity Mucoepidermoid Carcinoma 7 219265 -NCIT:C8207 Stage III Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 7 219266 -NCIT:C8211 Stage IV Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 7 219267 -NCIT:C5866 Stage IVC Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 219268 -NCIT:C5867 Stage IVB Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 219269 -NCIT:C5868 Stage IVA Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 219270 -NCIT:C8215 Recurrent Oral Cavity Mucoepidermoid Carcinoma 7 219271 -NCIT:C9463 Laryngeal Mucoepidermoid Carcinoma 6 219272 -NCIT:C27927 Alcohol-Related Carcinoma 4 219273 -NCIT:C27924 Alcohol-Related Hepatocellular Carcinoma 5 219274 -NCIT:C27928 Alcohol-Related Esophageal Squamous Cell Carcinoma 5 219275 -NCIT:C27929 Alcohol-Related Laryngeal Carcinoma 5 219276 -NCIT:C27949 Metaplastic Carcinoma 4 219277 -NCIT:C191749 Squamous Cell Carcinoma of the Urinary Tract 5 219278 -NCIT:C4031 Bladder Squamous Cell Carcinoma 6 219279 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 7 219280 -NCIT:C27768 Schistosoma Hematobium-Related Bladder Squamous Cell Carcinoma 7 219281 -NCIT:C39833 Schistosoma Hematobium-Related Bladder Verrucous Carcinoma 8 219282 -NCIT:C39832 Bladder Verrucous Carcinoma 7 219283 -NCIT:C39833 Schistosoma Hematobium-Related Bladder Verrucous Carcinoma 8 219284 -NCIT:C39845 Urachal Squamous Cell Carcinoma 7 219285 -NCIT:C4994 Stage II Bladder Squamous Cell Carcinoma AJCC v6 and v7 7 219286 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 7 219287 -NCIT:C8903 Stage 0 Bladder Squamous Cell Carcinoma AJCC v6 and v7 7 219288 -NCIT:C8904 Stage I Squamous Cell Carcinoma of the Bladder AJCC v6 and v7 7 219289 -NCIT:C8905 Stage III Bladder Squamous Cell Carcinoma AJCC v6 and v7 7 219290 -NCIT:C8906 Stage IV Bladder Squamous Cell Carcinoma AJCC v7 7 219291 -NCIT:C4126 Intestinal-Type Adenocarcinoma 5 219292 -NCIT:C116316 Sinonasal Adenocarcinoma, Intestinal-Type 6 219293 -NCIT:C160984 Sinonasal Adenocarcinoma, Intestinal-Type with Papillary Pattern 7 219294 -NCIT:C160986 Sinonasal Adenocarcinoma, Intestinal-Type with Colonic Pattern 7 219295 -NCIT:C160987 Sinonasal Adenocarcinoma, Intestinal-Type with Solid Pattern 7 219296 -NCIT:C160995 Sinonasal Adenocarcinoma, Intestinal-Type with Mucinous Pattern 7 219297 -NCIT:C161000 Sinonasal Adenocarcinoma, Intestinal-Type with Mixed Pattern 7 219298 -NCIT:C128166 Vulvar Adenocarcinoma, Intestinal-Type 6 219299 -NCIT:C136710 Lung Enteric Adenocarcinoma 6 219300 -NCIT:C180536 Endometrial Mucinous Adenocarcinoma, Intestinal-Type 6 219301 -NCIT:C180946 Vaginal Mucinous Adenocarcinoma, Intestinal-Type 6 219302 -NCIT:C183314 Thymic Enteric-Type Adenocarcinoma 6 219303 -NCIT:C27415 Ampulla of Vater Intestinal-Type Adenocarcinoma 6 219304 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 6 219305 -NCIT:C43604 Gallbladder Adenocarcinoma, Intestinal-Type 6 219306 -NCIT:C9157 Gastric Intestinal-Type Adenocarcinoma 6 219307 -NCIT:C7027 Barrett Adenocarcinoma 5 219308 -NCIT:C2852 Adenocarcinoma 4 219309 -NCIT:C129449 Small Cell Adenocarcinoma 5 219310 -NCIT:C129654 Unresectable Digestive System Adenocarcinoma 5 219311 -NCIT:C150578 Unresectable Gastroesophageal Junction Adenocarcinoma 6 219312 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 7 219313 -NCIT:C154221 Unresectable Gastric Adenocarcinoma 6 219314 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 7 219315 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 8 219316 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 8 219317 -NCIT:C162016 Unresectable Pancreatic Adenocarcinoma 6 219318 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 7 219319 -NCIT:C172245 Unresectable Pancreatic Ductal Adenocarcinoma 7 219320 -NCIT:C165171 Unresectable Liver and Intrahepatic Bile Duct Carcinoma 6 219321 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 7 219322 -NCIT:C27345 Unresectable Hepatocellular Carcinoma 7 219323 -NCIT:C162602 Unresectable Fibrolamellar Carcinoma 8 219324 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 8 219325 -NCIT:C7878 Localized Unresectable Adult Liver Carcinoma 7 219326 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 8 219327 -NCIT:C171585 Unresectable Colorectal Adenocarcinoma 6 219328 -NCIT:C162116 Unresectable Colon Adenocarcinoma 7 219329 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 8 219330 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 7 219331 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 8 219332 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 7 219333 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 8 219334 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 8 219335 -NCIT:C173162 Unresectable Esophageal Adenocarcinoma 6 219336 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 7 219337 -NCIT:C172248 Unresectable Distal Esophagus Adenocarcinoma 7 219338 -NCIT:C175516 Unresectable Small Intestinal Adenocarcinoma 6 219339 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 7 219340 -NCIT:C189064 Unresectable Gallbladder Adenocarcinoma 6 219341 -NCIT:C189065 Unresectable Ampulla of Vater Adenocarcinoma 6 219342 -NCIT:C27324 Unresectable Cholangiocarcinoma 6 219343 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 7 219344 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 7 219345 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 7 219346 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 7 219347 -NCIT:C159563 Refractory Adenocarcinoma 5 219348 -NCIT:C158101 Refractory Cholangiocarcinoma 6 219349 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 7 219350 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 7 219351 -NCIT:C162015 Refractory Pancreatic Adenocarcinoma 6 219352 -NCIT:C165450 Refractory Pancreatic Ductal Adenocarcinoma 7 219353 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 7 219354 -NCIT:C162154 Refractory Colorectal Adenocarcinoma 6 219355 -NCIT:C162155 Refractory Colon Adenocarcinoma 7 219356 -NCIT:C162157 Refractory Rectal Adenocarcinoma 7 219357 -NCIT:C162450 Refractory Hepatocellular Carcinoma 6 219358 -NCIT:C188887 Refractory Fibrolamellar Carcinoma 7 219359 -NCIT:C162538 Refractory Gastroesophageal Junction Adenocarcinoma 6 219360 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 6 219361 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 7 219362 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 7 219363 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 7 219364 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 7 219365 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 7 219366 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 6 219367 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 7 219368 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 7 219369 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 8 219370 -NCIT:C165703 Refractory Breast Adenocarcinoma 6 219371 -NCIT:C157057 Refractory Hormone Receptor-Positive Breast Carcinoma 7 219372 -NCIT:C167076 Refractory Triple-Negative Breast Carcinoma 7 219373 -NCIT:C168784 Refractory HER2-Negative Breast Carcinoma 7 219374 -NCIT:C182110 Refractory HER2-Positive Breast Carcinoma 7 219375 -NCIT:C165745 Refractory Renal Cell Carcinoma 6 219376 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 7 219377 -NCIT:C167074 Refractory Gastric Adenocarcinoma 6 219378 -NCIT:C167256 Refractory Prostate Adenocarcinoma 6 219379 -NCIT:C170968 Refractory Ovarian Adenocarcinoma 6 219380 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 7 219381 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 7 219382 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 8 219383 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 8 219384 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 7 219385 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 7 219386 -NCIT:C170971 Refractory Fallopian Tube Adenocarcinoma 6 219387 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 7 219388 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 7 219389 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 7 219390 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 7 219391 -NCIT:C170975 Refractory Primary Peritoneal Adenocarcinoma 6 219392 -NCIT:C171021 Refractory Primary Peritoneal Serous Adenocarcinoma 7 219393 -NCIT:C178686 Refractory Primary Peritoneal High Grade Serous Adenocarcinoma 8 219394 -NCIT:C178687 Refractory Primary Peritoneal Low Grade Serous Adenocarcinoma 8 219395 -NCIT:C178684 Refractory Primary Peritoneal Clear Cell Adenocarcinoma 7 219396 -NCIT:C178685 Refractory Primary Peritoneal Endometrioid Adenocarcinoma 7 219397 -NCIT:C176892 Refractory Esophageal Adenocarcinoma 6 219398 -NCIT:C179178 Refractory Appendix Adenocarcinoma 6 219399 -NCIT:C179180 Refractory Pseudomyxoma Peritonei 6 219400 -NCIT:C179209 Refractory Lung Adenocarcinoma 6 219401 -NCIT:C181036 Refractory Cervical Adenocarcinoma 6 219402 -NCIT:C188036 Refractory Adrenal Cortical Carcinoma 6 219403 -NCIT:C159565 Recurrent Adenocarcinoma 5 219404 -NCIT:C136651 Recurrent Cervical Adenocarcinoma 6 219405 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 7 219406 -NCIT:C153359 Recurrent Gastroesophageal Junction Adenocarcinoma 6 219407 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 6 219408 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 6 219409 -NCIT:C153574 Recurrent Ampulla of Vater Adenocarcinoma 6 219410 -NCIT:C153575 Recurrent Anal Adenocarcinoma 6 219411 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 7 219412 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 7 219413 -NCIT:C153611 Recurrent Salivary Duct Carcinoma 6 219414 -NCIT:C153612 Recurrent Minor Salivary Gland Adenocarcinoma 6 219415 -NCIT:C153614 Recurrent Ovarian Adenocarcinoma 6 219416 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 7 219417 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 7 219418 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 8 219419 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 8 219420 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 8 219421 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 7 219422 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 7 219423 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 8 219424 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 7 219425 -NCIT:C154622 Recurrent Gastric Adenocarcinoma 6 219426 -NCIT:C155742 Recurrent Pancreatic Adenocarcinoma 6 219427 -NCIT:C153569 Recurrent Pancreatic Acinar Cell Carcinoma 7 219428 -NCIT:C153619 Recurrent Pancreatic Ductal Adenocarcinoma 7 219429 -NCIT:C153620 Recurrent Pancreatic Cystadenocarcinoma 7 219430 -NCIT:C158421 Recurrent Endometrioid Adenocarcinoma 6 219431 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 7 219432 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 7 219433 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 7 219434 -NCIT:C165269 Recurrent Primary Peritoneal Endometrioid Adenocarcinoma 7 219435 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 6 219436 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 7 219437 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 7 219438 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 7 219439 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 7 219440 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 7 219441 -NCIT:C162441 Recurrent Colorectal Adenocarcinoma 6 219442 -NCIT:C162442 Recurrent Colon Adenocarcinoma 7 219443 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 7 219444 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 6 219445 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 7 219446 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 7 219447 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 8 219448 -NCIT:C170766 Recurrent Fallopian Tube Adenocarcinoma 6 219449 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 7 219450 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 7 219451 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 7 219452 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 7 219453 -NCIT:C170767 Recurrent Primary Peritoneal Adenocarcinoma 6 219454 -NCIT:C156453 Recurrent Primary Peritoneal Serous Adenocarcinoma 7 219455 -NCIT:C156454 Recurrent Primary Peritoneal Low Grade Serous Adenocarcinoma 8 219456 -NCIT:C165268 Recurrent Primary Peritoneal High Grade Serous Adenocarcinoma 8 219457 -NCIT:C165269 Recurrent Primary Peritoneal Endometrioid Adenocarcinoma 7 219458 -NCIT:C170761 Recurrent Primary Peritoneal Clear Cell Adenocarcinoma 7 219459 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 6 219460 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 7 219461 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 6 219462 -NCIT:C175588 Recurrent Breast Adenocarcinoma 6 219463 -NCIT:C153568 Recurrent Breast Acinic Cell Carcinoma 7 219464 -NCIT:C153584 Recurrent Lobular Breast Carcinoma 7 219465 -NCIT:C153587 Recurrent Invasive Breast Carcinoma of No Special Type 7 219466 -NCIT:C153588 Recurrent Breast Paget Disease 7 219467 -NCIT:C168783 Recurrent HER2-Negative Breast Carcinoma 7 219468 -NCIT:C171014 Recurrent Triple-Negative Breast Carcinoma 7 219469 -NCIT:C182108 Recurrent HER2-Positive Breast Carcinoma 7 219470 -NCIT:C185157 Recurrent Hormone Receptor-Positive Breast Carcinoma 7 219471 -NCIT:C8607 Recurrent Breast Inflammatory Carcinoma 7 219472 -NCIT:C179174 Recurrent Appendix Adenocarcinoma 6 219473 -NCIT:C153579 Recurrent Appendix Mucinous Adenocarcinoma 7 219474 -NCIT:C179179 Recurrent Pseudomyxoma Peritonei 6 219475 -NCIT:C27325 Recurrent Cholangiocarcinoma 6 219476 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 7 219477 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 7 219478 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 6 219479 -NCIT:C6417 Recurrent Adrenal Cortical Carcinoma 6 219480 -NCIT:C7825 Recurrent Renal Cell Carcinoma 6 219481 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 7 219482 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 8 219483 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 7 219484 -NCIT:C7828 Recurrent Parathyroid Gland Carcinoma 6 219485 -NCIT:C8627 Recurrent Esophageal Adenocarcinoma 6 219486 -NCIT:C8757 Recurrent Lung Adenocarcinoma 6 219487 -NCIT:C9264 Recurrent Hepatocellular Carcinoma 6 219488 -NCIT:C154082 Recurrent Fibrolamellar Carcinoma 7 219489 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 7 219490 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 7 219491 -NCIT:C160976 Sinonasal Adenocarcinoma 5 219492 -NCIT:C161007 Sinonasal Adenocarcinoma, Salivary-Type 6 219493 -NCIT:C161008 Sinonasal Adenocarcinoma, Non-Salivary-Type 6 219494 -NCIT:C116316 Sinonasal Adenocarcinoma, Intestinal-Type 7 219495 -NCIT:C160984 Sinonasal Adenocarcinoma, Intestinal-Type with Papillary Pattern 8 219496 -NCIT:C160986 Sinonasal Adenocarcinoma, Intestinal-Type with Colonic Pattern 8 219497 -NCIT:C160987 Sinonasal Adenocarcinoma, Intestinal-Type with Solid Pattern 8 219498 -NCIT:C160995 Sinonasal Adenocarcinoma, Intestinal-Type with Mucinous Pattern 8 219499 -NCIT:C161000 Sinonasal Adenocarcinoma, Intestinal-Type with Mixed Pattern 8 219500 -NCIT:C160977 Sinonasal Adenocarcinoma, Non-Intestinal-Type 7 219501 -NCIT:C6015 Nasal Cavity Adenocarcinoma 6 219502 -NCIT:C6017 Paranasal Sinus Adenocarcinoma 6 219503 -NCIT:C6237 Ethmoid Sinus Adenocarcinoma 7 219504 -NCIT:C6240 Maxillary Sinus Adenocarcinoma 7 219505 -NCIT:C167341 Adnexal Adenocarcinoma, Not Otherwise Specified 5 219506 -NCIT:C167368 Adnexal Secretory Carcinoma 5 219507 -NCIT:C167369 Signet Ring Cell/Histiocytoid Carcinoma 5 219508 -NCIT:C170733 Primary Peritoneal Adenocarcinoma 5 219509 -NCIT:C162566 Primary Peritoneal Clear Cell Adenocarcinoma 6 219510 -NCIT:C170761 Recurrent Primary Peritoneal Clear Cell Adenocarcinoma 7 219511 -NCIT:C178684 Refractory Primary Peritoneal Clear Cell Adenocarcinoma 7 219512 -NCIT:C165260 Primary Peritoneal Endometrioid Adenocarcinoma 6 219513 -NCIT:C165269 Recurrent Primary Peritoneal Endometrioid Adenocarcinoma 7 219514 -NCIT:C178685 Refractory Primary Peritoneal Endometrioid Adenocarcinoma 7 219515 -NCIT:C186276 Unresectable Primary Peritoneal Endometrioid Adenocarcinoma 7 219516 -NCIT:C170767 Recurrent Primary Peritoneal Adenocarcinoma 6 219517 -NCIT:C156453 Recurrent Primary Peritoneal Serous Adenocarcinoma 7 219518 -NCIT:C156454 Recurrent Primary Peritoneal Low Grade Serous Adenocarcinoma 8 219519 -NCIT:C165268 Recurrent Primary Peritoneal High Grade Serous Adenocarcinoma 8 219520 -NCIT:C165269 Recurrent Primary Peritoneal Endometrioid Adenocarcinoma 7 219521 -NCIT:C170761 Recurrent Primary Peritoneal Clear Cell Adenocarcinoma 7 219522 -NCIT:C170972 Metastatic Primary Peritoneal Adenocarcinoma 6 219523 -NCIT:C171019 Metastatic Primary Peritoneal Serous Adenocarcinoma 7 219524 -NCIT:C186453 Metastatic Primary Peritoneal High Grade Serous Adenocarcinoma 8 219525 -NCIT:C170974 Unresectable Primary Peritoneal Adenocarcinoma 6 219526 -NCIT:C171020 Unresectable Primary Peritoneal Serous Adenocarcinoma 7 219527 -NCIT:C186275 Unresectable Primary Peritoneal High Grade Serous Adenocarcinoma 8 219528 -NCIT:C186276 Unresectable Primary Peritoneal Endometrioid Adenocarcinoma 7 219529 -NCIT:C170975 Refractory Primary Peritoneal Adenocarcinoma 6 219530 -NCIT:C171021 Refractory Primary Peritoneal Serous Adenocarcinoma 7 219531 -NCIT:C178686 Refractory Primary Peritoneal High Grade Serous Adenocarcinoma 8 219532 -NCIT:C178687 Refractory Primary Peritoneal Low Grade Serous Adenocarcinoma 8 219533 -NCIT:C178684 Refractory Primary Peritoneal Clear Cell Adenocarcinoma 7 219534 -NCIT:C178685 Refractory Primary Peritoneal Endometrioid Adenocarcinoma 7 219535 -NCIT:C40023 Primary Peritoneal Serous Adenocarcinoma 6 219536 -NCIT:C126353 Primary Peritoneal High Grade Serous Adenocarcinoma 7 219537 -NCIT:C165268 Recurrent Primary Peritoneal High Grade Serous Adenocarcinoma 8 219538 -NCIT:C178686 Refractory Primary Peritoneal High Grade Serous Adenocarcinoma 8 219539 -NCIT:C186275 Unresectable Primary Peritoneal High Grade Serous Adenocarcinoma 8 219540 -NCIT:C186453 Metastatic Primary Peritoneal High Grade Serous Adenocarcinoma 8 219541 -NCIT:C126354 Primary Peritoneal Low Grade Serous Adenocarcinoma 7 219542 -NCIT:C156454 Recurrent Primary Peritoneal Low Grade Serous Adenocarcinoma 8 219543 -NCIT:C178687 Refractory Primary Peritoneal Low Grade Serous Adenocarcinoma 8 219544 -NCIT:C156453 Recurrent Primary Peritoneal Serous Adenocarcinoma 7 219545 -NCIT:C156454 Recurrent Primary Peritoneal Low Grade Serous Adenocarcinoma 8 219546 -NCIT:C165268 Recurrent Primary Peritoneal High Grade Serous Adenocarcinoma 8 219547 -NCIT:C171019 Metastatic Primary Peritoneal Serous Adenocarcinoma 7 219548 -NCIT:C186453 Metastatic Primary Peritoneal High Grade Serous Adenocarcinoma 8 219549 -NCIT:C171020 Unresectable Primary Peritoneal Serous Adenocarcinoma 7 219550 -NCIT:C186275 Unresectable Primary Peritoneal High Grade Serous Adenocarcinoma 8 219551 -NCIT:C171021 Refractory Primary Peritoneal Serous Adenocarcinoma 7 219552 -NCIT:C178686 Refractory Primary Peritoneal High Grade Serous Adenocarcinoma 8 219553 -NCIT:C178687 Refractory Primary Peritoneal Low Grade Serous Adenocarcinoma 8 219554 -NCIT:C7695 Primary Peritoneal Serous Papillary Adenocarcinoma 7 219555 -NCIT:C174551 Retinal Pigment Epithelium Adenocarcinoma 5 219556 -NCIT:C174561 Ciliary Body Adenocarcinoma 5 219557 -NCIT:C175336 Lacrimal Drainage System Adenocarcinoma 5 219558 -NCIT:C176887 Psammocarcinoma 5 219559 -NCIT:C179320 Mesonephric-Like Adenocarcinoma 5 219560 -NCIT:C179321 Ovarian Mesonephric-Like Adenocarcinoma 6 219561 -NCIT:C179322 Endometrial Mesonephric-Like Adenocarcinoma 6 219562 -NCIT:C191751 Adenocarcinoma of the Urinary Tract 5 219563 -NCIT:C4032 Bladder Adenocarcinoma 6 219564 -NCIT:C39835 Bladder Enteric Type Adenocarcinoma 7 219565 -NCIT:C39836 Bladder Adenocarcinoma, Not Otherwise Specified 7 219566 -NCIT:C39837 Bladder Mucinous Adenocarcinoma 7 219567 -NCIT:C39838 Bladder Hepatoid Adenocarcinoma 7 219568 -NCIT:C39839 Bladder Mixed Adenocarcinoma 7 219569 -NCIT:C39843 Urachal Adenocarcinoma 7 219570 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 7 219571 -NCIT:C6163 Bladder Signet Ring Cell Adenocarcinoma 7 219572 -NCIT:C8894 Stage 0 Bladder Adenocarcinoma AJCC v6 and v7 7 219573 -NCIT:C8895 Stage I Bladder Adenocarcinoma AJCC v6 and v7 7 219574 -NCIT:C8896 Stage II Bladder Adenocarcinoma AJCC v6 and v7 7 219575 -NCIT:C8897 Stage III Bladder Adenocarcinoma AJCC v6 and v7 7 219576 -NCIT:C8898 Stage IV Bladder Adenocarcinoma AJCC v7 7 219577 -NCIT:C26712 Mucinous Adenocarcinoma 5 219578 -NCIT:C128166 Vulvar Adenocarcinoma, Intestinal-Type 6 219579 -NCIT:C136709 Invasive Lung Mucinous Adenocarcinoma 6 219580 -NCIT:C160995 Sinonasal Adenocarcinoma, Intestinal-Type with Mucinous Pattern 6 219581 -NCIT:C27416 Ampulla of Vater Mucinous Adenocarcinoma 6 219582 -NCIT:C27533 Primary Cutaneous Mucinous Carcinoma 6 219583 -NCIT:C3345 Pseudomyxoma Peritonei 6 219584 -NCIT:C179179 Recurrent Pseudomyxoma Peritonei 7 219585 -NCIT:C179180 Refractory Pseudomyxoma Peritonei 7 219586 -NCIT:C36095 Cervical Mucinous Adenocarcinoma 6 219587 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 7 219588 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 7 219589 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 7 219590 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 7 219591 -NCIT:C40206 Human Papillomavirus-Independent Cervical Adenocarcinoma, Gastric-Type 7 219592 -NCIT:C37214 Pancreatic Colloid Carcinoma 6 219593 -NCIT:C3776 Mucinous Cystadenocarcinoma 6 219594 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 7 219595 -NCIT:C40354 Breast Mucinous Cystadenocarcinoma 7 219596 -NCIT:C41246 Pancreatic Mucinous-Cystic Neoplasm with an Associated Invasive Carcinoma 7 219597 -NCIT:C5511 Appendix Mucinous Cystadenocarcinoma 7 219598 -NCIT:C65204 Papillary Mucinous Cystadenocarcinoma 7 219599 -NCIT:C39837 Bladder Mucinous Adenocarcinoma 6 219600 -NCIT:C40103 Fallopian Tube Mucinous Adenocarcinoma 6 219601 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 7 219602 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 7 219603 -NCIT:C40137 Broad Ligament Mucinous Adenocarcinoma 6 219604 -NCIT:C40144 Endometrial Mucinous Adenocarcinoma 6 219605 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 7 219606 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 7 219607 -NCIT:C40149 FIGO Grade 1 Endometrial Mucinous Adenocarcinoma 7 219608 -NCIT:C40150 FIGO Grade 2 Endometrial Mucinous Adenocarcinoma 7 219609 -NCIT:C40151 FIGO Grade 3 Endometrial Mucinous Adenocarcinoma 7 219610 -NCIT:C40252 Vaginal Mucinous Adenocarcinoma 6 219611 -NCIT:C180945 Vaginal Mucinous Adenocarcinoma, Gastric-Type 7 219612 -NCIT:C180946 Vaginal Mucinous Adenocarcinoma, Intestinal-Type 7 219613 -NCIT:C41618 Mucin-Producing Intrahepatic Cholangiocarcinoma 6 219614 -NCIT:C43536 Small Intestinal Mucinous Adenocarcinoma 6 219615 -NCIT:C43558 Appendix Mucinous Adenocarcinoma 6 219616 -NCIT:C153579 Recurrent Appendix Mucinous Adenocarcinoma 7 219617 -NCIT:C162274 Metastatic Appendix Mucinous Adenocarcinoma 7 219618 -NCIT:C5511 Appendix Mucinous Cystadenocarcinoma 7 219619 -NCIT:C43585 Colorectal Mucinous Adenocarcinoma 6 219620 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 7 219621 -NCIT:C43592 Rectosigmoid Mucinous Adenocarcinoma 7 219622 -NCIT:C7966 Colon Mucinous Adenocarcinoma 7 219623 -NCIT:C7973 Rectal Mucinous Adenocarcinoma 7 219624 -NCIT:C45512 Lung Colloid Adenocarcinoma 6 219625 -NCIT:C5243 Ovarian Mucinous Adenocarcinoma 6 219626 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 7 219627 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 7 219628 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 7 219629 -NCIT:C183245 Unresectable Ovarian Mucinous Adenocarcinoma 7 219630 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 7 219631 -NCIT:C5248 Gastric Mucinous Adenocarcinoma 6 219632 -NCIT:C5537 Prostate Acinar Mucinous Adenocarcinoma 6 219633 -NCIT:C5606 Anal Mucinous Adenocarcinoma 6 219634 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 7 219635 -NCIT:C5744 Gallbladder Mucinous Adenocarcinoma 6 219636 -NCIT:C5846 Extrahepatic Bile Duct Mucinous Adenocarcinoma 6 219637 -NCIT:C62193 Salivary Gland Mucinous Adenocarcinoma 6 219638 -NCIT:C9131 Breast Mucinous Carcinoma 6 219639 -NCIT:C40355 Breast Columnar Cell Mucinous Carcinoma 7 219640 -NCIT:C27379 Mucin-Producing Adenocarcinoma 5 219641 -NCIT:C167364 Endocrine Mucin-Producing Sweat Gland Carcinoma 6 219642 -NCIT:C27380 Thyroid Gland Adenocarcinoma 5 219643 -NCIT:C187645 Follicular-Derived Thyroid Gland Carcinoma, High Grade 6 219644 -NCIT:C187648 Differentiated High Grade Thyroid Gland Carcinoma 7 219645 -NCIT:C6040 Poorly Differentiated Thyroid Gland Carcinoma 7 219646 -NCIT:C174046 Metastatic Poorly Differentiated Thyroid Gland Carcinoma 8 219647 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 8 219648 -NCIT:C174569 Unresectable Poorly Differentiated Thyroid Gland Carcinoma 8 219649 -NCIT:C187994 Thyroid Gland Secretory Carcinoma 6 219650 -NCIT:C7153 Differentiated Thyroid Gland Carcinoma 6 219651 -NCIT:C118829 Hereditary Nonmedullary Thyroid Gland Carcinoma 7 219652 -NCIT:C140959 Differentiated Thyroid Gland Carcinoma by AJCC v7 Stage 7 219653 -NCIT:C140958 Thyroid Gland Follicular Carcinoma by AJCC v7 Stage 8 219654 -NCIT:C9084 Stage I Thyroid Gland Follicular Carcinoma AJCC v7 9 219655 -NCIT:C9085 Stage II Thyroid Gland Follicular Carcinoma AJCC v7 9 219656 -NCIT:C9086 Stage IV Thyroid Gland Follicular Carcinoma AJCC v7 9 219657 -NCIT:C115035 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v7 10 219658 -NCIT:C115036 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v7 10 219659 -NCIT:C115037 Stage IVC Thyroid Gland Follicular Carcinoma AJCC v7 10 219660 -NCIT:C9121 Stage III Thyroid Gland Follicular Carcinoma AJCC v7 9 219661 -NCIT:C140960 Thyroid Gland Papillary Carcinoma by AJCC v7 Stage 8 219662 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 9 219663 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 9 219664 -NCIT:C9083 Stage IV Thyroid Gland Papillary Carcinoma AJCC v7 9 219665 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 10 219666 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 10 219667 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 10 219668 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 9 219669 -NCIT:C87543 Stage I Differentiated Thyroid Gland Carcinoma AJCC v7 8 219670 -NCIT:C101539 Stage I Differentiated Thyroid Gland Carcinoma Under 45 Years AJCC v7 9 219671 -NCIT:C101540 Stage I Differentiated Thyroid Gland Carcinoma 45 Years and Older AJCC v7 9 219672 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 9 219673 -NCIT:C9084 Stage I Thyroid Gland Follicular Carcinoma AJCC v7 9 219674 -NCIT:C87544 Stage II Differentiated Thyroid Gland Carcinoma AJCC v7 8 219675 -NCIT:C101541 Stage II Differentiated Thyroid Gland Carcinoma Under 45 Years AJCC v7 9 219676 -NCIT:C101542 Stage II Differentiated Thyroid Gland Carcinoma 45 Years and Older AJCC v7 9 219677 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 9 219678 -NCIT:C9085 Stage II Thyroid Gland Follicular Carcinoma AJCC v7 9 219679 -NCIT:C87545 Stage III Differentiated Thyroid Gland Carcinoma AJCC v7 8 219680 -NCIT:C9121 Stage III Thyroid Gland Follicular Carcinoma AJCC v7 9 219681 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 9 219682 -NCIT:C87546 Stage IVA Differentiated Thyroid Gland Carcinoma AJCC v7 8 219683 -NCIT:C115035 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v7 9 219684 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 9 219685 -NCIT:C87547 Stage IVB Differentiated Thyroid Gland Carcinoma AJCC v7 8 219686 -NCIT:C115036 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v7 9 219687 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 9 219688 -NCIT:C87548 Stage IVC Differentiated Thyroid Gland Carcinoma AJCC v7 8 219689 -NCIT:C115037 Stage IVC Thyroid Gland Follicular Carcinoma AJCC v7 9 219690 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 9 219691 -NCIT:C140965 Differentiated Thyroid Gland Carcinoma by AJCC v8 Stage 7 219692 -NCIT:C140966 Stage I Differentiated Thyroid Gland Carcinoma AJCC v8 8 219693 -NCIT:C140967 Stage I Differentiated Thyroid Gland Carcinoma Under 55 Years AJCC v8 9 219694 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 10 219695 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 10 219696 -NCIT:C140968 Stage I Differentiated Thyroid Gland Carcinoma 55 Years and Older AJCC v8 9 219697 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 10 219698 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 10 219699 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 9 219700 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 10 219701 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 10 219702 -NCIT:C140988 Stage I Thyroid Gland Follicular Carcinoma AJCC v8 9 219703 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 10 219704 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 10 219705 -NCIT:C140969 Stage II Differentiated Thyroid Gland Carcinoma AJCC v8 8 219706 -NCIT:C140970 Stage II Differentiated Thyroid Gland Carcinoma Under 55 Years AJCC v8 9 219707 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 10 219708 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 10 219709 -NCIT:C140971 Stage II Differentiated Thyroid Gland Carcinoma 55 Years and Older AJCC v8 9 219710 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 10 219711 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 10 219712 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 9 219713 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 10 219714 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 10 219715 -NCIT:C140991 Stage II Thyroid Gland Follicular Carcinoma AJCC v8 9 219716 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 10 219717 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 10 219718 -NCIT:C140972 Stage III Differentiated Thyroid Gland Carcinoma AJCC v8 8 219719 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 9 219720 -NCIT:C140995 Stage III Thyroid Gland Follicular Carcinoma AJCC v8 9 219721 -NCIT:C140973 Stage IV Differentiated Thyroid Gland Carcinoma AJCC v8 8 219722 -NCIT:C140974 Stage IVA Differentiated Thyroid Gland Carcinoma AJCC v8 9 219723 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 10 219724 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 10 219725 -NCIT:C140975 Stage IVB Differentiated Thyroid Gland Carcinoma AJCC v8 9 219726 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 10 219727 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 10 219728 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 9 219729 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 10 219730 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 10 219731 -NCIT:C140996 Stage IV Thyroid Gland Follicular Carcinoma AJCC v8 9 219732 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 10 219733 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 10 219734 -NCIT:C140976 Thyroid Gland Papillary Carcinoma by AJCC v8 Stage 8 219735 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 9 219736 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 10 219737 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 10 219738 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 9 219739 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 10 219740 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 10 219741 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 9 219742 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 9 219743 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 10 219744 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 10 219745 -NCIT:C140987 Thyroid Gland Follicular Carcinoma by AJCC v8 Stage 8 219746 -NCIT:C140988 Stage I Thyroid Gland Follicular Carcinoma AJCC v8 9 219747 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 10 219748 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 10 219749 -NCIT:C140991 Stage II Thyroid Gland Follicular Carcinoma AJCC v8 9 219750 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 10 219751 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 10 219752 -NCIT:C140995 Stage III Thyroid Gland Follicular Carcinoma AJCC v8 9 219753 -NCIT:C140996 Stage IV Thyroid Gland Follicular Carcinoma AJCC v8 9 219754 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 10 219755 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 10 219756 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 7 219757 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 8 219758 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 8 219759 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 9 219760 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 7 219761 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 8 219762 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 8 219763 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 9 219764 -NCIT:C168572 Unresectable Differentiated Thyroid Gland Carcinoma 7 219765 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 8 219766 -NCIT:C174571 Unresectable Thyroid Gland Follicular Carcinoma 8 219767 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 9 219768 -NCIT:C173979 Metastatic Differentiated Thyroid Gland Carcinoma 7 219769 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 8 219770 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 9 219771 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 10 219772 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 8 219773 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 8 219774 -NCIT:C4035 Thyroid Gland Papillary Carcinoma 7 219775 -NCIT:C123903 Childhood Thyroid Gland Papillary Carcinoma 8 219776 -NCIT:C126409 Warthin-Like Variant Thyroid Gland Papillary Carcinoma 8 219777 -NCIT:C126410 Thyroid Gland Papillary Carcinoma with Fibromatosis/Fasciitis-Like/Desmoid-Type Stroma 8 219778 -NCIT:C126594 Follicular Variant Thyroid Gland Papillary Carcinoma 8 219779 -NCIT:C66850 Invasive Encapsulated Follicular Variant Thyroid Gland Papillary Carcinoma 9 219780 -NCIT:C7381 Invasive Follicular Variant Thyroid Gland Papillary Carcinoma 9 219781 -NCIT:C140960 Thyroid Gland Papillary Carcinoma by AJCC v7 Stage 8 219782 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 9 219783 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 9 219784 -NCIT:C9083 Stage IV Thyroid Gland Papillary Carcinoma AJCC v7 9 219785 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 10 219786 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 10 219787 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 10 219788 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 9 219789 -NCIT:C140976 Thyroid Gland Papillary Carcinoma by AJCC v8 Stage 8 219790 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 9 219791 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 10 219792 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 10 219793 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 9 219794 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 10 219795 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 10 219796 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 9 219797 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 9 219798 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 10 219799 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 10 219800 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 8 219801 -NCIT:C156034 Encapsulated Variant Thyroid Gland Papillary Carcinoma 8 219802 -NCIT:C156045 Spindle Cell Variant Thyroid Gland Papillary Carcinoma 8 219803 -NCIT:C156050 Hobnail Variant Thyroid Gland Papillary Carcinoma 8 219804 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 8 219805 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 8 219806 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 8 219807 -NCIT:C187644 Classic Thyroid Gland Papillary Carcinoma 8 219808 -NCIT:C35558 Tall Cell Variant Thyroid Gland Papillary Carcinoma 8 219809 -NCIT:C35830 Columnar Cell Variant Thyroid Gland Papillary Carcinoma 8 219810 -NCIT:C37304 Multicentric Thyroid Gland Papillary Carcinoma 8 219811 -NCIT:C46004 Thyroid Gland Papillary Microcarcinoma 8 219812 -NCIT:C46092 Macrofollicular Variant Thyroid Gland Papillary Carcinoma 8 219813 -NCIT:C46093 Oncocytic Variant Thyroid Gland Papillary Carcinoma 8 219814 -NCIT:C46094 Clear Cell Variant Thyroid Gland Papillary Carcinoma 8 219815 -NCIT:C46095 Solid/Trabecular Variant Thyroid Gland Papillary Carcinoma 8 219816 -NCIT:C7427 Diffuse Sclerosing Variant Thyroid Gland Papillary Carcinoma 8 219817 -NCIT:C8054 Thyroid Gland Follicular Carcinoma 7 219818 -NCIT:C123904 Childhood Thyroid Gland Follicular Carcinoma 8 219819 -NCIT:C140958 Thyroid Gland Follicular Carcinoma by AJCC v7 Stage 8 219820 -NCIT:C9084 Stage I Thyroid Gland Follicular Carcinoma AJCC v7 9 219821 -NCIT:C9085 Stage II Thyroid Gland Follicular Carcinoma AJCC v7 9 219822 -NCIT:C9086 Stage IV Thyroid Gland Follicular Carcinoma AJCC v7 9 219823 -NCIT:C115035 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v7 10 219824 -NCIT:C115036 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v7 10 219825 -NCIT:C115037 Stage IVC Thyroid Gland Follicular Carcinoma AJCC v7 10 219826 -NCIT:C9121 Stage III Thyroid Gland Follicular Carcinoma AJCC v7 9 219827 -NCIT:C140987 Thyroid Gland Follicular Carcinoma by AJCC v8 Stage 8 219828 -NCIT:C140988 Stage I Thyroid Gland Follicular Carcinoma AJCC v8 9 219829 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 10 219830 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 10 219831 -NCIT:C140991 Stage II Thyroid Gland Follicular Carcinoma AJCC v8 9 219832 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 10 219833 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 10 219834 -NCIT:C140995 Stage III Thyroid Gland Follicular Carcinoma AJCC v8 9 219835 -NCIT:C140996 Stage IV Thyroid Gland Follicular Carcinoma AJCC v8 9 219836 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 10 219837 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 10 219838 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 8 219839 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 9 219840 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 8 219841 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 9 219842 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 10 219843 -NCIT:C156122 Thyroid Gland Follicular Carcinoma, Encapsulated Angioinvasive 8 219844 -NCIT:C156123 Thyroid Gland Follicular Carcinoma, Widely Invasive 8 219845 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 8 219846 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 9 219847 -NCIT:C174571 Unresectable Thyroid Gland Follicular Carcinoma 8 219848 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 9 219849 -NCIT:C187643 Thyroid Gland Follicular Carcinoma, Signet Ring Cell Variant 8 219850 -NCIT:C46096 Thyroid Gland Follicular Carcinoma, Clear Cell Variant 8 219851 -NCIT:C4946 Thyroid Gland Oncocytic Carcinoma 8 219852 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 9 219853 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 9 219854 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 9 219855 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 9 219856 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 10 219857 -NCIT:C65200 Thyroid Gland Follicular Carcinoma, Minimally Invasive 8 219858 -NCIT:C27684 Human Papillomavirus-Related Adenocarcinoma 5 219859 -NCIT:C180943 Human Papillomavirus-Related Vaginal Adenocarcinoma 6 219860 -NCIT:C27677 Human Papillomavirus-Related Cervical Adenocarcinoma 6 219861 -NCIT:C127907 Endocervical Adenocarcinoma, Usual-Type 7 219862 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 8 219863 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 8 219864 -NCIT:C40208 Cervical Villoglandular Adenocarcinoma 8 219865 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 7 219866 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 7 219867 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 7 219868 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 7 219869 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 7 219870 -NCIT:C27745 Non-Small Cell Adenocarcinoma 5 219871 -NCIT:C3512 Lung Adenocarcinoma 6 219872 -NCIT:C136486 Lung Adenocarcinoma In Situ 7 219873 -NCIT:C136716 Lung Non-Mucinous Adenocarcinoma In Situ 8 219874 -NCIT:C136717 Lung Mucinous Adenocarcinoma In Situ 8 219875 -NCIT:C136490 Lung Adenocarcinoma by AJCC v7 Stage 7 219876 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 8 219877 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 8 219878 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 9 219879 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 9 219880 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 8 219881 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 9 219882 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 9 219883 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 8 219884 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 9 219885 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 9 219886 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 8 219887 -NCIT:C136709 Invasive Lung Mucinous Adenocarcinoma 7 219888 -NCIT:C136710 Lung Enteric Adenocarcinoma 7 219889 -NCIT:C155908 Metastatic Lung Adenocarcinoma 7 219890 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 8 219891 -NCIT:C176727 Advanced Lung Adenocarcinoma 8 219892 -NCIT:C174510 Unresectable Lung Adenocarcinoma 7 219893 -NCIT:C179209 Refractory Lung Adenocarcinoma 7 219894 -NCIT:C183109 Invasive Lung Non-Mucinous Adenocarcinoma 7 219895 -NCIT:C123160 Lepidic Adenocarcinoma 8 219896 -NCIT:C5649 Lung Acinar Adenocarcinoma 8 219897 -NCIT:C5650 Lung Papillary Adenocarcinoma 8 219898 -NCIT:C128847 Lung Micropapillary Adenocarcinoma 9 219899 -NCIT:C5651 Solid Lung Adenocarcinoma 8 219900 -NCIT:C190954 Resectable Lung Adenocarcinoma 7 219901 -NCIT:C2923 Minimally Invasive Lung Adenocarcinoma 7 219902 -NCIT:C7268 Minimally Invasive Lung Mucinous Adenocarcinoma 8 219903 -NCIT:C7269 Minimally Invasive Lung Non-Mucinous Adenocarcinoma 8 219904 -NCIT:C7270 Minimally Invasive Lung Mixed Non-Mucinous and Mucinous Adenocarcinoma 8 219905 -NCIT:C45509 Lung Fetal Adenocarcinoma 7 219906 -NCIT:C45512 Lung Colloid Adenocarcinoma 7 219907 -NCIT:C6699 Occult Lung Adenocarcinoma 7 219908 -NCIT:C8757 Recurrent Lung Adenocarcinoma 7 219909 -NCIT:C27813 Bile Duct Adenocarcinoma 5 219910 -NCIT:C156910 Resectable Bile Duct Adenocarcinoma 6 219911 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 7 219912 -NCIT:C27326 Resectable Cholangiocarcinoma 7 219913 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 8 219914 -NCIT:C4130 Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 6 219915 -NCIT:C96946 Extrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 7 219916 -NCIT:C96947 Intrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 7 219917 -NCIT:C4436 Cholangiocarcinoma 6 219918 -NCIT:C157623 Metastatic Cholangiocarcinoma 7 219919 -NCIT:C162752 Advanced Cholangiocarcinoma 8 219920 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 9 219921 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 9 219922 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 9 219923 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 8 219924 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 219925 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 9 219926 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 8 219927 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 9 219928 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 8 219929 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 219930 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 9 219931 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 8 219932 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 9 219933 -NCIT:C158101 Refractory Cholangiocarcinoma 7 219934 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 8 219935 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 8 219936 -NCIT:C27324 Unresectable Cholangiocarcinoma 7 219937 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 8 219938 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 8 219939 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 8 219940 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 8 219941 -NCIT:C27325 Recurrent Cholangiocarcinoma 7 219942 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 8 219943 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 8 219944 -NCIT:C27326 Resectable Cholangiocarcinoma 7 219945 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 8 219946 -NCIT:C27769 Opisthorchis Viverrini-Related Cholangiocarcinoma 7 219947 -NCIT:C35417 Intrahepatic Cholangiocarcinoma 7 219948 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 8 219949 -NCIT:C134514 Intrahepatic Cholangiocarcinoma by AJCC v7 Stage 8 219950 -NCIT:C88049 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v7 9 219951 -NCIT:C88050 Stage I Intrahepatic Cholangiocarcinoma AJCC v7 9 219952 -NCIT:C88051 Stage II Intrahepatic Cholangiocarcinoma AJCC v7 9 219953 -NCIT:C88052 Stage III Intrahepatic Cholangiocarcinoma AJCC v7 9 219954 -NCIT:C88053 Stage IVA Intrahepatic Cholangiocarcinoma AJCC v7 9 219955 -NCIT:C88054 Stage IVB Intrahepatic Cholangiocarcinoma AJCC v7 9 219956 -NCIT:C134755 Intrahepatic Cholangiocarcinoma by AJCC v8 Stage 8 219957 -NCIT:C134756 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v8 9 219958 -NCIT:C134757 Stage I Intrahepatic Cholangiocarcinoma AJCC v8 9 219959 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 10 219960 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 10 219961 -NCIT:C134760 Stage II Intrahepatic Cholangiocarcinoma AJCC v8 9 219962 -NCIT:C134761 Stage III Intrahepatic Cholangiocarcinoma AJCC v8 9 219963 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 10 219964 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 10 219965 -NCIT:C134764 Stage IV Intrahepatic Cholangiocarcinoma AJCC v8 9 219966 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 8 219967 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 8 219968 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 8 219969 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 219970 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 9 219971 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 8 219972 -NCIT:C41617 Cholangiolocellular Carcinoma 8 219973 -NCIT:C41618 Mucin-Producing Intrahepatic Cholangiocarcinoma 8 219974 -NCIT:C41619 Signet Ring Cell Intrahepatic Cholangiocarcinoma 8 219975 -NCIT:C41620 Sarcomatoid Intrahepatic Cholangiocarcinoma 8 219976 -NCIT:C43848 Clear Cell Intrahepatic Cholangiocarcinoma 8 219977 -NCIT:C96804 Large Duct Intrahepatic Cholangiocarcinoma 8 219978 -NCIT:C96805 Small Duct Intrahepatic Cholangiocarcinoma 8 219979 -NCIT:C96949 Intrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 8 219980 -NCIT:C36077 Hilar Cholangiocarcinoma 7 219981 -NCIT:C134742 Hilar Cholangiocarcinoma by AJCC v7 Stage 8 219982 -NCIT:C88058 Stage 0 Hilar Cholangiocarcinoma AJCC v7 9 219983 -NCIT:C88059 Stage I Hilar Cholangiocarcinoma AJCC v7 9 219984 -NCIT:C88060 Stage II Hilar Cholangiocarcinoma AJCC v7 9 219985 -NCIT:C88061 Stage IIIA Hilar Cholangiocarcinoma AJCC v7 9 219986 -NCIT:C88062 Stage IIIB Hilar Cholangiocarcinoma AJCC v7 9 219987 -NCIT:C88063 Stage IVA Hilar Cholangiocarcinoma AJCC v7 9 219988 -NCIT:C88064 Stage IVB Hilar Cholangiocarcinoma AJCC v7 9 219989 -NCIT:C134743 Hilar Cholangiocarcinoma by AJCC v8 Stage 8 219990 -NCIT:C134744 Stage 0 Hilar Cholangiocarcinoma AJCC v8 9 219991 -NCIT:C134745 Stage I Hilar Cholangiocarcinoma AJCC v8 9 219992 -NCIT:C134746 Stage II Hilar Cholangiocarcinoma AJCC v8 9 219993 -NCIT:C134747 Stage III Hilar Cholangiocarcinoma AJCC v8 9 219994 -NCIT:C134748 Stage IIIA Hilar Cholangiocarcinoma AJCC v8 10 219995 -NCIT:C134749 Stage IIIB Hilar Cholangiocarcinoma AJCC v8 10 219996 -NCIT:C134750 Stage IIIC Hilar Cholangiocarcinoma AJCC v8 10 219997 -NCIT:C134751 Stage IV Hilar Cholangiocarcinoma AJCC v8 9 219998 -NCIT:C134752 Stage IVA Hilar Cholangiocarcinoma AJCC v8 10 219999 -NCIT:C134753 Stage IVB Hilar Cholangiocarcinoma AJCC v8 10 220000 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 8 220001 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 8 220002 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 9 220003 -NCIT:C7976 Distal Bile Duct Adenocarcinoma 7 220004 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 8 220005 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 8 220006 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 9 220007 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 8 220008 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 8 220009 -NCIT:C8265 Adult Cholangiocarcinoma 7 220010 -NCIT:C7975 Extrahepatic Bile Duct Adenocarcinoma 6 220011 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 7 220012 -NCIT:C5775 Extrahepatic Bile Duct Clear Cell Adenocarcinoma 7 220013 -NCIT:C5776 Extrahepatic Bile Duct Signet Ring Cell Carcinoma 7 220014 -NCIT:C5846 Extrahepatic Bile Duct Mucinous Adenocarcinoma 7 220015 -NCIT:C7976 Distal Bile Duct Adenocarcinoma 7 220016 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 8 220017 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 8 220018 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 9 220019 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 8 220020 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 8 220021 -NCIT:C96936 Extrahepatic Bile Duct Adenocarcinoma, Biliary Type 7 220022 -NCIT:C96937 Extrahepatic Bile Duct Adenocarcinoma, Gastric Foveolar Type 7 220023 -NCIT:C96938 Extrahepatic Bile Duct Adenocarcinoma, Intestinal Type 7 220024 -NCIT:C96946 Extrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 7 220025 -NCIT:C96948 Extrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 7 220026 -NCIT:C96810 Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 6 220027 -NCIT:C96948 Extrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 7 220028 -NCIT:C96949 Intrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 7 220029 -NCIT:C2853 Papillary Adenocarcinoma 5 220030 -NCIT:C172813 Invasive Pancreatic Micropapillary Adenocarcinoma 6 220031 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 6 220032 -NCIT:C27254 Papillary Eccrine Carcinoma 6 220033 -NCIT:C27534 Digital Papillary Adenocarcinoma 7 220034 -NCIT:C27937 Thymic Low Grade Papillary Adenocarcinoma 6 220035 -NCIT:C3777 Papillary Cystadenocarcinoma 6 220036 -NCIT:C65204 Papillary Mucinous Cystadenocarcinoma 7 220037 -NCIT:C8377 Papillary Serous Cystadenocarcinoma 7 220038 -NCIT:C4035 Thyroid Gland Papillary Carcinoma 6 220039 -NCIT:C123903 Childhood Thyroid Gland Papillary Carcinoma 7 220040 -NCIT:C126409 Warthin-Like Variant Thyroid Gland Papillary Carcinoma 7 220041 -NCIT:C126410 Thyroid Gland Papillary Carcinoma with Fibromatosis/Fasciitis-Like/Desmoid-Type Stroma 7 220042 -NCIT:C126594 Follicular Variant Thyroid Gland Papillary Carcinoma 7 220043 -NCIT:C66850 Invasive Encapsulated Follicular Variant Thyroid Gland Papillary Carcinoma 8 220044 -NCIT:C7381 Invasive Follicular Variant Thyroid Gland Papillary Carcinoma 8 220045 -NCIT:C140960 Thyroid Gland Papillary Carcinoma by AJCC v7 Stage 7 220046 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 8 220047 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 8 220048 -NCIT:C9083 Stage IV Thyroid Gland Papillary Carcinoma AJCC v7 8 220049 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 9 220050 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 9 220051 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 9 220052 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 8 220053 -NCIT:C140976 Thyroid Gland Papillary Carcinoma by AJCC v8 Stage 7 220054 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 8 220055 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 9 220056 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 9 220057 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 8 220058 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 9 220059 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 9 220060 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 8 220061 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 8 220062 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 9 220063 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 9 220064 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 7 220065 -NCIT:C156034 Encapsulated Variant Thyroid Gland Papillary Carcinoma 7 220066 -NCIT:C156045 Spindle Cell Variant Thyroid Gland Papillary Carcinoma 7 220067 -NCIT:C156050 Hobnail Variant Thyroid Gland Papillary Carcinoma 7 220068 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 7 220069 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 7 220070 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 7 220071 -NCIT:C187644 Classic Thyroid Gland Papillary Carcinoma 7 220072 -NCIT:C35558 Tall Cell Variant Thyroid Gland Papillary Carcinoma 7 220073 -NCIT:C35830 Columnar Cell Variant Thyroid Gland Papillary Carcinoma 7 220074 -NCIT:C37304 Multicentric Thyroid Gland Papillary Carcinoma 7 220075 -NCIT:C46004 Thyroid Gland Papillary Microcarcinoma 7 220076 -NCIT:C46092 Macrofollicular Variant Thyroid Gland Papillary Carcinoma 7 220077 -NCIT:C46093 Oncocytic Variant Thyroid Gland Papillary Carcinoma 7 220078 -NCIT:C46094 Clear Cell Variant Thyroid Gland Papillary Carcinoma 7 220079 -NCIT:C46095 Solid/Trabecular Variant Thyroid Gland Papillary Carcinoma 7 220080 -NCIT:C7427 Diffuse Sclerosing Variant Thyroid Gland Papillary Carcinoma 7 220081 -NCIT:C4182 Serous Surface Papillary Carcinoma 6 220082 -NCIT:C6256 Ovarian Serous Surface Papillary Adenocarcinoma 7 220083 -NCIT:C6882 Micropapillary Serous Carcinoma 7 220084 -NCIT:C7695 Primary Peritoneal Serous Papillary Adenocarcinoma 7 220085 -NCIT:C8377 Papillary Serous Cystadenocarcinoma 7 220086 -NCIT:C54400 Nasopharyngeal Papillary Adenocarcinoma 6 220087 -NCIT:C5472 Gastric Papillary Adenocarcinoma 6 220088 -NCIT:C67560 Endolymphatic Sac Tumor 6 220089 -NCIT:C6975 Papillary Renal Cell Carcinoma 6 220090 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 7 220091 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 8 220092 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 8 220093 -NCIT:C190505 Unresectable Papillary Renal Cell Carcinoma 7 220094 -NCIT:C27886 Type 1 Papillary Renal Cell Carcinoma 7 220095 -NCIT:C27887 Type 2 Papillary Renal Cell Carcinoma 7 220096 -NCIT:C27890 Sporadic Papillary Renal Cell Carcinoma 7 220097 -NCIT:C9222 Hereditary Papillary Renal Cell Carcinoma 7 220098 -NCIT:C7438 Invasive Papillary Adenocarcinoma 6 220099 -NCIT:C36085 Invasive Breast Papillary Carcinoma 7 220100 -NCIT:C176010 Encapsulated Breast Papillary Carcinoma with Invasion 8 220101 -NCIT:C176012 Invasive Breast Solid Papillary Carcinoma 8 220102 -NCIT:C36084 Invasive Breast Micropapillary Carcinoma 8 220103 -NCIT:C7439 Breast Papillary Ductal Carcinoma In Situ with Invasion 8 220104 -NCIT:C39896 Prostate Ductal Adenocarcinoma, Papillary Pattern 7 220105 -NCIT:C5650 Lung Papillary Adenocarcinoma 7 220106 -NCIT:C128847 Lung Micropapillary Adenocarcinoma 8 220107 -NCIT:C7381 Invasive Follicular Variant Thyroid Gland Papillary Carcinoma 7 220108 -NCIT:C95967 Ampulla of Vater Invasive Papillary Adenocarcinoma 7 220109 -NCIT:C9134 Breast Papillary Carcinoma 6 220110 -NCIT:C176009 Encapsulated Breast Papillary Carcinoma 7 220111 -NCIT:C176010 Encapsulated Breast Papillary Carcinoma with Invasion 8 220112 -NCIT:C36085 Invasive Breast Papillary Carcinoma 7 220113 -NCIT:C176010 Encapsulated Breast Papillary Carcinoma with Invasion 8 220114 -NCIT:C176012 Invasive Breast Solid Papillary Carcinoma 8 220115 -NCIT:C36084 Invasive Breast Micropapillary Carcinoma 8 220116 -NCIT:C7439 Breast Papillary Ductal Carcinoma In Situ with Invasion 8 220117 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 7 220118 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 8 220119 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 8 220120 -NCIT:C6870 Breast Solid Papillary Carcinoma 7 220121 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 8 220122 -NCIT:C176012 Invasive Breast Solid Papillary Carcinoma 8 220123 -NCIT:C96491 Colorectal Micropapillary Adenocarcinoma 6 220124 -NCIT:C96492 Colon Micropapillary Adenocarcinoma 7 220125 -NCIT:C96493 Rectal Micropapillary Adenocarcinoma 7 220126 -NCIT:C2919 Prostate Adenocarcinoma 5 220127 -NCIT:C150557 Prostate Adenocarcinoma without Neuroendocrine Differentiation 6 220128 -NCIT:C164185 Aggressive Prostate Adenocarcinoma 6 220129 -NCIT:C164186 Prostate Adenocarcinoma by AJCC v7 Stage 6 220130 -NCIT:C8947 Stage I Prostate Adenocarcinoma AJCC v7 7 220131 -NCIT:C8948 Stage II Prostate Adenocarcinoma AJCC v7 7 220132 -NCIT:C8949 Stage III Prostate Adenocarcinoma AJCC v7 7 220133 -NCIT:C8950 Stage IV Prostate Adenocarcinoma AJCC v7 7 220134 -NCIT:C167256 Refractory Prostate Adenocarcinoma 6 220135 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 6 220136 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 7 220137 -NCIT:C27905 Well Differentiated Prostate Adenocarcinoma 6 220138 -NCIT:C39896 Prostate Ductal Adenocarcinoma, Papillary Pattern 7 220139 -NCIT:C27906 Moderately Differentiated Prostate Adenocarcinoma 6 220140 -NCIT:C27916 Poorly Differentiated Prostate Adenocarcinoma 6 220141 -NCIT:C5530 Prostate Acinar Adenocarcinoma, Sarcomatoid Variant 7 220142 -NCIT:C39903 Prostate Adenocarcinoma with Neuroendocrine Differentiation 6 220143 -NCIT:C158656 Usual Prostate Adenocarcinoma with Neuroendocrine Differentiation 7 220144 -NCIT:C158664 Prostate Adenocarcinoma with Paneth Cell-Like Neuroendocrine Differentiation 7 220145 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 7 220146 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 8 220147 -NCIT:C5596 Prostate Acinar Adenocarcinoma 6 220148 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 7 220149 -NCIT:C158656 Usual Prostate Adenocarcinoma with Neuroendocrine Differentiation 7 220150 -NCIT:C160817 Prostate Acinar Adenocarcinoma, Microcystic Variant 7 220151 -NCIT:C160818 Prostate Acinar Adenocarcinoma, Pleomorphic Giant Cell Variant 7 220152 -NCIT:C39880 Prostate Acinar Adenocarcinoma, Atrophic Variant 7 220153 -NCIT:C39881 Prostate Acinar Adenocarcinoma, Pseudohyperplastic Variant 7 220154 -NCIT:C39882 Prostate Acinar Adenocarcinoma, Foamy Gland Variant 7 220155 -NCIT:C39884 Prostate Acinar Adenocarcinoma, Oncocytic Variant 7 220156 -NCIT:C39885 Prostate Acinar Adenocarcinoma, Lymphoepithelioma-Like Variant 7 220157 -NCIT:C5530 Prostate Acinar Adenocarcinoma, Sarcomatoid Variant 7 220158 -NCIT:C5535 Prostate Acinar Adenocarcinoma, Signet Ring-Like Cell Variant 7 220159 -NCIT:C5537 Prostate Acinar Mucinous Adenocarcinoma 7 220160 -NCIT:C6813 Prostate Ductal Adenocarcinoma 6 220161 -NCIT:C39895 Prostate Ductal Adenocarcinoma, Cribriform Pattern 7 220162 -NCIT:C39896 Prostate Ductal Adenocarcinoma, Papillary Pattern 7 220163 -NCIT:C39897 Prostate Ductal Adenocarcinoma, Solid Pattern 7 220164 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 6 220165 -NCIT:C156286 Advanced Prostate Adenocarcinoma 7 220166 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 8 220167 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 7 220168 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 8 220169 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 7 220170 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 8 220171 -NCIT:C2928 Scirrhous Adenocarcinoma 5 220172 -NCIT:C2971 Cystadenocarcinoma 5 220173 -NCIT:C3776 Mucinous Cystadenocarcinoma 6 220174 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 7 220175 -NCIT:C40354 Breast Mucinous Cystadenocarcinoma 7 220176 -NCIT:C41246 Pancreatic Mucinous-Cystic Neoplasm with an Associated Invasive Carcinoma 7 220177 -NCIT:C5511 Appendix Mucinous Cystadenocarcinoma 7 220178 -NCIT:C65204 Papillary Mucinous Cystadenocarcinoma 7 220179 -NCIT:C3777 Papillary Cystadenocarcinoma 6 220180 -NCIT:C65204 Papillary Mucinous Cystadenocarcinoma 7 220181 -NCIT:C8377 Papillary Serous Cystadenocarcinoma 7 220182 -NCIT:C3778 Serous Cystadenocarcinoma 6 220183 -NCIT:C5724 Pancreatic Serous Cystadenocarcinoma 7 220184 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 7 220185 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 8 220186 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 220187 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 220188 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 8 220189 -NCIT:C8377 Papillary Serous Cystadenocarcinoma 7 220190 -NCIT:C3874 Pancreatic Cystadenocarcinoma 6 220191 -NCIT:C153620 Recurrent Pancreatic Cystadenocarcinoma 7 220192 -NCIT:C5724 Pancreatic Serous Cystadenocarcinoma 7 220193 -NCIT:C5727 Pancreatic Acinar Cell Cystadenocarcinoma 7 220194 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 8 220195 -NCIT:C5228 Ovarian Cystadenocarcinoma 6 220196 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 7 220197 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 8 220198 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 7 220199 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 7 220200 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 8 220201 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 220202 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 220203 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 8 220204 -NCIT:C7980 Ovarian Clear Cell Cystadenocarcinoma 7 220205 -NCIT:C5980 Salivary Gland Cystadenocarcinoma 6 220206 -NCIT:C3099 Hepatocellular Carcinoma 5 220207 -NCIT:C115132 Hepatocellular Carcinoma by BCLC Stage 6 220208 -NCIT:C115133 BCLC Stage 0 Hepatocellular Carcinoma 7 220209 -NCIT:C115139 BCLC Stage 0 Adult Hepatocellular Carcinoma 8 220210 -NCIT:C115135 BCLC Stage A Hepatocellular Carcinoma 7 220211 -NCIT:C115140 BCLC Stage A Adult Hepatocellular Carcinoma 8 220212 -NCIT:C115136 BCLC Stage B Hepatocellular Carcinoma 7 220213 -NCIT:C115141 BCLC Stage B Adult Hepatocellular Carcinoma 8 220214 -NCIT:C115137 BCLC Stage C Hepatocellular Carcinoma 7 220215 -NCIT:C115143 BCLC Stage C Adult Hepatocellular Carcinoma 8 220216 -NCIT:C115138 BCLC Stage D Hepatocellular Carcinoma 7 220217 -NCIT:C115144 BCLC Stage D Adult Hepatocellular Carcinoma 8 220218 -NCIT:C134515 Hepatocellular Carcinoma by AJCC v8 Stage 6 220219 -NCIT:C134516 Stage I Hepatocellular Carcinoma AJCC v8 7 220220 -NCIT:C134517 Stage IA Hepatocellular Carcinoma AJCC v8 8 220221 -NCIT:C134518 Stage IB Hepatocellular Carcinoma AJCC v8 8 220222 -NCIT:C134519 Stage II Hepatocellular Carcinoma AJCC v8 7 220223 -NCIT:C134520 Stage III Hepatocellular Carcinoma AJCC v8 7 220224 -NCIT:C134521 Stage IIIA Hepatocellular Carcinoma AJCC v8 8 220225 -NCIT:C134522 Stage IIIB Hepatocellular Carcinoma AJCC v8 8 220226 -NCIT:C134523 Stage IV Hepatocellular Carcinoma AJCC v8 7 220227 -NCIT:C134524 Stage IVA Hepatocellular Carcinoma AJCC v8 8 220228 -NCIT:C134525 Stage IVB Hepatocellular Carcinoma AJCC v8 8 220229 -NCIT:C154091 Metastatic Hepatocellular Carcinoma 6 220230 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 7 220231 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 8 220232 -NCIT:C167336 Advanced Hepatocellular Carcinoma 7 220233 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 8 220234 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 8 220235 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 7 220236 -NCIT:C162450 Refractory Hepatocellular Carcinoma 6 220237 -NCIT:C188887 Refractory Fibrolamellar Carcinoma 7 220238 -NCIT:C172709 Steatohepatitic Hepatocellular Carcinoma 6 220239 -NCIT:C27924 Alcohol-Related Hepatocellular Carcinoma 7 220240 -NCIT:C172710 Macrotrabecular Massive Hepatocellular Carcinoma 6 220241 -NCIT:C172712 Chromophobe Hepatocellular Carcinoma 6 220242 -NCIT:C172713 Neutrophil-Rich Hepatocellular Carcinoma 6 220243 -NCIT:C172714 Small Hepatocellular Carcinoma 6 220244 -NCIT:C172716 Small Progressed Hepatocellular Carcinoma 7 220245 -NCIT:C96772 Early Hepatocellular Carcinoma 7 220246 -NCIT:C27345 Unresectable Hepatocellular Carcinoma 6 220247 -NCIT:C162602 Unresectable Fibrolamellar Carcinoma 7 220248 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 7 220249 -NCIT:C27388 Scirrhous Hepatocellular Carcinoma 6 220250 -NCIT:C27635 Transplant-Related Hepatocellular Carcinoma 6 220251 -NCIT:C27686 Hepatitis Virus-Related Hepatocellular Carcinoma 6 220252 -NCIT:C27687 Hepatitis B Virus-Related Hepatocellular Carcinoma 7 220253 -NCIT:C27688 Hepatitis C Virus-Related Hepatocellular Carcinoma 7 220254 -NCIT:C27922 Aflatoxins-Related Hepatocellular Carcinoma 6 220255 -NCIT:C4131 Fibrolamellar Carcinoma 6 220256 -NCIT:C114992 Adult Fibrolamellar Carcinoma 7 220257 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 7 220258 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 8 220259 -NCIT:C154082 Recurrent Fibrolamellar Carcinoma 7 220260 -NCIT:C162602 Unresectable Fibrolamellar Carcinoma 7 220261 -NCIT:C188887 Refractory Fibrolamellar Carcinoma 7 220262 -NCIT:C189932 Childhood Fibrolamellar Carcinoma 7 220263 -NCIT:C43625 Pleomorphic Hepatocellular Carcinoma 6 220264 -NCIT:C114993 Adult Pleomorphic Hepatocellular Carcinoma 7 220265 -NCIT:C43627 Sarcomatoid Hepatocellular Carcinoma 6 220266 -NCIT:C5754 Clear Cell Hepatocellular Carcinoma 6 220267 -NCIT:C7691 Resectable Hepatocellular Carcinoma 6 220268 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 7 220269 -NCIT:C7955 Childhood Hepatocellular Carcinoma 6 220270 -NCIT:C189932 Childhood Fibrolamellar Carcinoma 7 220271 -NCIT:C5708 Stage III Childhood Hepatocellular Carcinoma AJCC v7 7 220272 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 7 220273 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 7 220274 -NCIT:C7838 Stage IV Childhood Hepatocellular Carcinoma AJCC v7 7 220275 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 7 220276 -NCIT:C7956 Adult Hepatocellular Carcinoma 6 220277 -NCIT:C114992 Adult Fibrolamellar Carcinoma 7 220278 -NCIT:C114993 Adult Pleomorphic Hepatocellular Carcinoma 7 220279 -NCIT:C115139 BCLC Stage 0 Adult Hepatocellular Carcinoma 7 220280 -NCIT:C115140 BCLC Stage A Adult Hepatocellular Carcinoma 7 220281 -NCIT:C115141 BCLC Stage B Adult Hepatocellular Carcinoma 7 220282 -NCIT:C115143 BCLC Stage C Adult Hepatocellular Carcinoma 7 220283 -NCIT:C115144 BCLC Stage D Adult Hepatocellular Carcinoma 7 220284 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 7 220285 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 7 220286 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 7 220287 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 7 220288 -NCIT:C90510 Hepatocellular Carcinoma by AJCC v6 Stage 6 220289 -NCIT:C5758 Stage I Hepatocellular Carcinoma AJCC v6 and v7 7 220290 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 8 220291 -NCIT:C5759 Stage II Hepatocellular Carcinoma AJCC v6 and v7 7 220292 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 8 220293 -NCIT:C5760 Stage III Hepatocellular Carcinoma AJCC v6 7 220294 -NCIT:C5763 Stage IV Hepatocellular Carcinoma AJCC v6 7 220295 -NCIT:C91228 Hepatocellular Carcinoma by AJCC v7 Stage 6 220296 -NCIT:C5758 Stage I Hepatocellular Carcinoma AJCC v6 and v7 7 220297 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 8 220298 -NCIT:C5759 Stage II Hepatocellular Carcinoma AJCC v6 and v7 7 220299 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 8 220300 -NCIT:C90180 Stage III Hepatocellular Carcinoma AJCC v7 7 220301 -NCIT:C5708 Stage III Childhood Hepatocellular Carcinoma AJCC v7 8 220302 -NCIT:C5761 Stage IIIA Hepatocellular Carcinoma AJCC v7 8 220303 -NCIT:C5762 Stage IIIB Hepatocellular Carcinoma AJCC v7 8 220304 -NCIT:C88044 Stage IIIC Hepatocellular Carcinoma AJCC v7 8 220305 -NCIT:C90181 Stage IV Hepatocellular Carcinoma AJCC v7 7 220306 -NCIT:C5764 Stage IVA Hepatocellular Carcinoma AJCC v7 8 220307 -NCIT:C5765 Stage IVB Hepatocellular Carcinoma AJCC v7 8 220308 -NCIT:C7838 Stage IV Childhood Hepatocellular Carcinoma AJCC v7 8 220309 -NCIT:C9264 Recurrent Hepatocellular Carcinoma 6 220310 -NCIT:C154082 Recurrent Fibrolamellar Carcinoma 7 220311 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 7 220312 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 7 220313 -NCIT:C96788 Lymphocyte-Rich Hepatocellular Carcinoma 6 220314 -NCIT:C96789 Well Differentiated Hepatocellular Carcinoma 6 220315 -NCIT:C96790 Moderately Differentiated Hepatocellular Carcinoma 6 220316 -NCIT:C96791 Poorly Differentiated Hepatocellular Carcinoma 6 220317 -NCIT:C3679 Oncocytic Adenocarcinoma 5 220318 -NCIT:C126409 Warthin-Like Variant Thyroid Gland Papillary Carcinoma 6 220319 -NCIT:C175267 Lacrimal Gland Oncocytic Adenocarcinoma 6 220320 -NCIT:C188181 Adrenal Cortical Oncocytic Carcinoma 6 220321 -NCIT:C27849 Oxyphilic Endometrial Endometrioid Adenocarcinoma 6 220322 -NCIT:C39884 Prostate Acinar Adenocarcinoma, Oncocytic Variant 6 220323 -NCIT:C40366 Breast Oncocytic Carcinoma 6 220324 -NCIT:C46093 Oncocytic Variant Thyroid Gland Papillary Carcinoma 6 220325 -NCIT:C4946 Thyroid Gland Oncocytic Carcinoma 6 220326 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 7 220327 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 7 220328 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 7 220329 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 7 220330 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 8 220331 -NCIT:C62194 Salivary Gland Oncocytic Carcinoma 6 220332 -NCIT:C3681 Granular Cell Carcinoma 5 220333 -NCIT:C3766 Clear Cell Adenocarcinoma 5 220334 -NCIT:C162566 Primary Peritoneal Clear Cell Adenocarcinoma 6 220335 -NCIT:C170761 Recurrent Primary Peritoneal Clear Cell Adenocarcinoma 7 220336 -NCIT:C178684 Refractory Primary Peritoneal Clear Cell Adenocarcinoma 7 220337 -NCIT:C191768 Clear Cell Adenocarcinoma of the Urinary Tract 6 220338 -NCIT:C6172 Urethral Clear Cell Adenocarcinoma 7 220339 -NCIT:C6179 Bladder Clear Cell Adenocarcinoma 7 220340 -NCIT:C39847 Bladder Tubulo-Cystic Clear Cell Adenocarcinoma 8 220341 -NCIT:C39848 Bladder Papillary Clear Cell Adenocarcinoma 8 220342 -NCIT:C39849 Bladder Diffuse Clear Cell Adenocarcinoma 8 220343 -NCIT:C27414 Ampulla of Vater Clear Cell Adenocarcinoma 6 220344 -NCIT:C27843 Endometrial Endometrioid Adenocarcinoma with Clear Cell Change 6 220345 -NCIT:C40078 Ovarian Clear Cell Adenocarcinoma 6 220346 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 7 220347 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 7 220348 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 220349 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 7 220350 -NCIT:C7980 Ovarian Clear Cell Cystadenocarcinoma 7 220351 -NCIT:C40139 Broad Ligament Clear Cell Adenocarcinoma 6 220352 -NCIT:C4033 Clear Cell Renal Cell Carcinoma 6 220353 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 7 220354 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 8 220355 -NCIT:C157614 BAP1-Mutant Clear Cell Renal Cell Carcinoma 7 220356 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 7 220357 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 8 220358 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 8 220359 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 7 220360 -NCIT:C165449 Unresectable Clear Cell Renal Cell Carcinoma 7 220361 -NCIT:C35851 Grade 1 Clear Cell Renal Cell Carcinoma 7 220362 -NCIT:C35852 Grade 2 Clear Cell Renal Cell Carcinoma 7 220363 -NCIT:C35853 Grade 3 Clear Cell Renal Cell Carcinoma 7 220364 -NCIT:C35854 Grade 4 Clear Cell Renal Cell Carcinoma 7 220365 -NCIT:C36260 Hereditary Clear Cell Renal Cell Carcinoma 7 220366 -NCIT:C36261 Non-Hereditary Clear Cell Renal Cell Carcinoma 7 220367 -NCIT:C40365 Breast Lipid-Rich Carcinoma 6 220368 -NCIT:C40368 Glycogen-Rich, Clear Cell Breast Carcinoma 6 220369 -NCIT:C43605 Gallbladder Clear Cell Adenocarcinoma 6 220370 -NCIT:C43848 Clear Cell Intrahepatic Cholangiocarcinoma 6 220371 -NCIT:C46094 Clear Cell Variant Thyroid Gland Papillary Carcinoma 6 220372 -NCIT:C46096 Thyroid Gland Follicular Carcinoma, Clear Cell Variant 6 220373 -NCIT:C54664 Hidradenocarcinoma 6 220374 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 7 220375 -NCIT:C5754 Clear Cell Hepatocellular Carcinoma 6 220376 -NCIT:C5775 Extrahepatic Bile Duct Clear Cell Adenocarcinoma 6 220377 -NCIT:C6280 Fallopian Tube Clear Cell Adenocarcinoma 6 220378 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 7 220379 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 7 220380 -NCIT:C6344 Human Papillomavirus-Independent Cervical Adenocarcinoma, Clear Cell-Type 6 220381 -NCIT:C7735 Vaginal Clear Cell Adenocarcinoma 6 220382 -NCIT:C8028 Endometrial Clear Cell Adenocarcinoma 6 220383 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 7 220384 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 7 220385 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 7 220386 -NCIT:C3768 Acinar Cell Carcinoma 5 220387 -NCIT:C175290 Lacrimal Gland Acinic Cell Carcinoma 6 220388 -NCIT:C40367 Breast Acinic Cell Carcinoma 6 220389 -NCIT:C153568 Recurrent Breast Acinic Cell Carcinoma 7 220390 -NCIT:C5596 Prostate Acinar Adenocarcinoma 6 220391 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 7 220392 -NCIT:C158656 Usual Prostate Adenocarcinoma with Neuroendocrine Differentiation 7 220393 -NCIT:C160817 Prostate Acinar Adenocarcinoma, Microcystic Variant 7 220394 -NCIT:C160818 Prostate Acinar Adenocarcinoma, Pleomorphic Giant Cell Variant 7 220395 -NCIT:C39880 Prostate Acinar Adenocarcinoma, Atrophic Variant 7 220396 -NCIT:C39881 Prostate Acinar Adenocarcinoma, Pseudohyperplastic Variant 7 220397 -NCIT:C39882 Prostate Acinar Adenocarcinoma, Foamy Gland Variant 7 220398 -NCIT:C39884 Prostate Acinar Adenocarcinoma, Oncocytic Variant 7 220399 -NCIT:C39885 Prostate Acinar Adenocarcinoma, Lymphoepithelioma-Like Variant 7 220400 -NCIT:C5530 Prostate Acinar Adenocarcinoma, Sarcomatoid Variant 7 220401 -NCIT:C5535 Prostate Acinar Adenocarcinoma, Signet Ring-Like Cell Variant 7 220402 -NCIT:C5537 Prostate Acinar Mucinous Adenocarcinoma 7 220403 -NCIT:C7977 Pancreatic Acinar Cell Carcinoma 6 220404 -NCIT:C153569 Recurrent Pancreatic Acinar Cell Carcinoma 7 220405 -NCIT:C156907 Resectable Pancreatic Acinar Cell Carcinoma 7 220406 -NCIT:C190024 Childhood Pancreatic Acinar Cell Carcinoma 7 220407 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 8 220408 -NCIT:C5727 Pancreatic Acinar Cell Cystadenocarcinoma 7 220409 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 8 220410 -NCIT:C8013 Salivary Gland Acinic Cell Carcinoma 6 220411 -NCIT:C190274 Childhood Salivary Gland Acinic Cell Carcinoma 7 220412 -NCIT:C5901 Major Salivary Gland Acinic Cell Carcinoma 7 220413 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 8 220414 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 9 220415 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 8 220416 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 9 220417 -NCIT:C6243 Minor Salivary Gland Acinic Cell Carcinoma 7 220418 -NCIT:C3769 Endometrioid Adenocarcinoma 5 220419 -NCIT:C158421 Recurrent Endometrioid Adenocarcinoma 6 220420 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 7 220421 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 7 220422 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 7 220423 -NCIT:C165269 Recurrent Primary Peritoneal Endometrioid Adenocarcinoma 7 220424 -NCIT:C158610 Endometrioid Adenocarcinoma, Variant with Squamous Differentiation 6 220425 -NCIT:C40061 Ovarian Endometrioid Adenocarcinoma with Squamous Differentiation 7 220426 -NCIT:C6290 Endometrial Endometrioid Adenocarcinoma, Variant with Squamous Differentiation 7 220427 -NCIT:C165260 Primary Peritoneal Endometrioid Adenocarcinoma 6 220428 -NCIT:C165269 Recurrent Primary Peritoneal Endometrioid Adenocarcinoma 7 220429 -NCIT:C178685 Refractory Primary Peritoneal Endometrioid Adenocarcinoma 7 220430 -NCIT:C186276 Unresectable Primary Peritoneal Endometrioid Adenocarcinoma 7 220431 -NCIT:C191769 Endometrioid Adenocarcinoma of the Urinary Tract 6 220432 -NCIT:C159542 Bladder Endometrioid Adenocarcinoma 7 220433 -NCIT:C40138 Broad Ligament Endometrioid Adenocarcinoma 6 220434 -NCIT:C40251 Vaginal Endometrioid Adenocarcinoma 6 220435 -NCIT:C6279 Fallopian Tube Endometrioid Adenocarcinoma 6 220436 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 7 220437 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 7 220438 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 7 220439 -NCIT:C6287 Endometrial Endometrioid Adenocarcinoma 6 220440 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 7 220441 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 7 220442 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 7 220443 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 8 220444 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 8 220445 -NCIT:C180510 Low Grade Endometrial Endometrioid Adenocarcinoma 7 220446 -NCIT:C40146 FIGO Grade 1 Endometrial Endometrioid Adenocarcinoma 8 220447 -NCIT:C40147 FIGO Grade 2 Endometrial Endometrioid Adenocarcinoma 8 220448 -NCIT:C180512 POLE-Ultramutated Endometrial Endometrioid Adenocarcinoma 7 220449 -NCIT:C180514 Mismatch Repair-Deficient Endometrial Endometrioid Adenocarcinoma 7 220450 -NCIT:C180515 p53-Mutant Endometrial Endometrioid Adenocarcinoma 7 220451 -NCIT:C180516 No Specific Molecular Profile Endometrial Endometrioid Adenocarcinoma 7 220452 -NCIT:C27839 Endometrial Endometrioid Adenocarcinoma, Secretory Variant 7 220453 -NCIT:C27843 Endometrial Endometrioid Adenocarcinoma with Clear Cell Change 7 220454 -NCIT:C27844 Endometrial Endometrioid Adenocarcinoma with a Poorly Differentiated Carcinomatous Component 7 220455 -NCIT:C27845 Endometrial Endometrioid Adenocarcinoma with an Undifferentiated Carcinomatous Component 7 220456 -NCIT:C27846 Villoglandular Endometrial Endometrioid Adenocarcinoma 7 220457 -NCIT:C27848 Endometrial Endometrioid Adenocarcinoma, Ciliated Variant 7 220458 -NCIT:C27849 Oxyphilic Endometrial Endometrioid Adenocarcinoma 7 220459 -NCIT:C27850 Endometrial Endometrioid Adenocarcinoma with Spindled Epithelial Cells 7 220460 -NCIT:C40148 High Grade Endometrial Endometrioid Adenocarcinoma 7 220461 -NCIT:C6290 Endometrial Endometrioid Adenocarcinoma, Variant with Squamous Differentiation 7 220462 -NCIT:C6343 Cervical Endometrioid Adenocarcinoma 6 220463 -NCIT:C7979 Ovarian Endometrioid Adenocarcinoma 6 220464 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 7 220465 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 7 220466 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 7 220467 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 220468 -NCIT:C186273 Unresectable Ovarian Endometrioid Adenocarcinoma 7 220469 -NCIT:C40061 Ovarian Endometrioid Adenocarcinoma with Squamous Differentiation 7 220470 -NCIT:C8943 Metastatic Endometrioid Adenocarcinoma 6 220471 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 7 220472 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 8 220473 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 8 220474 -NCIT:C170807 Advanced Endometrioid Adenocarcinoma 7 220475 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 8 220476 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 220477 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 7 220478 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 220479 -NCIT:C174045 Locally Advanced Endometrioid Adenocarcinoma 7 220480 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 8 220481 -NCIT:C3774 Signet Ring Cell Carcinoma 5 220482 -NCIT:C179208 Ovarian Signet Ring Cell Carcinoma 6 220483 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 6 220484 -NCIT:C41619 Signet Ring Cell Intrahepatic Cholangiocarcinoma 6 220485 -NCIT:C43543 Small Intestinal Signet Ring Cell Carcinoma 6 220486 -NCIT:C43554 Appendix Signet Ring Cell Carcinoma 6 220487 -NCIT:C43586 Colorectal Signet Ring Cell Carcinoma 6 220488 -NCIT:C43593 Rectosigmoid Signet Ring Cell Carcinoma 7 220489 -NCIT:C7967 Colon Signet Ring Cell Adenocarcinoma 7 220490 -NCIT:C9168 Rectal Signet Ring Cell Adenocarcinoma 7 220491 -NCIT:C5175 Breast Signet Ring Cell Carcinoma 6 220492 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 7 220493 -NCIT:C54691 Invasive Breast Lobular Carcinoma, Signet Ring Variant 7 220494 -NCIT:C5250 Gastric Signet Ring Cell Adenocarcinoma 6 220495 -NCIT:C5535 Prostate Acinar Adenocarcinoma, Signet Ring-Like Cell Variant 6 220496 -NCIT:C5720 Pancreatic Signet Ring Cell Carcinoma 6 220497 -NCIT:C5745 Gallbladder Signet Ring Cell Carcinoma 6 220498 -NCIT:C5776 Extrahepatic Bile Duct Signet Ring Cell Carcinoma 6 220499 -NCIT:C6163 Bladder Signet Ring Cell Adenocarcinoma 6 220500 -NCIT:C6656 Ampulla of Vater Signet Ring Cell Carcinoma 6 220501 -NCIT:C66717 Metastatic Signet Ring Cell Carcinoma 6 220502 -NCIT:C3153 Krukenberg Tumor 7 220503 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 7 220504 -NCIT:C3828 Combined Hepatocellular Carcinoma and Cholangiocarcinoma 5 220505 -NCIT:C114987 Adult Combined Hepatocellular Carcinoma and Cholangiocarcinoma 6 220506 -NCIT:C39863 Adenocarcinoma of Skene Gland Origin 5 220507 -NCIT:C180947 Vaginal Adenocarcinoma of Skene Gland Origin 6 220508 -NCIT:C180948 Skene Gland Adenocarcinoma of the Urethra 6 220509 -NCIT:C39906 Seminal Vesicle Adenocarcinoma 5 220510 -NCIT:C39957 Epididymal Adenocarcinoma 5 220511 -NCIT:C40017 Rete Ovarii Adenocarcinoma 5 220512 -NCIT:C4004 Gastric Adenocarcinoma 5 220513 -NCIT:C153319 Metastatic Gastric Adenocarcinoma 6 220514 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 7 220515 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 8 220516 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 8 220517 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 7 220518 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 8 220519 -NCIT:C165630 Metastatic Proximal Gastric Adenocarcinoma 7 220520 -NCIT:C166121 Oligometastatic Gastric Adenocarcinoma 7 220521 -NCIT:C166255 Advanced Gastric Adenocarcinoma 7 220522 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 8 220523 -NCIT:C154221 Unresectable Gastric Adenocarcinoma 6 220524 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 7 220525 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 8 220526 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 8 220527 -NCIT:C154622 Recurrent Gastric Adenocarcinoma 6 220528 -NCIT:C165628 Proximal Gastric Adenocarcinoma 6 220529 -NCIT:C165630 Metastatic Proximal Gastric Adenocarcinoma 7 220530 -NCIT:C167074 Refractory Gastric Adenocarcinoma 6 220531 -NCIT:C43527 Sporadic Gastric Adenocarcinoma 6 220532 -NCIT:C27131 Early Gastric Cancer 7 220533 -NCIT:C95763 Gastric Intramucosal Adenocarcinoma 8 220534 -NCIT:C27765 Helicobacter Pylori-Related Gastric Adenocarcinoma 7 220535 -NCIT:C43529 Sporadic Gastric Diffuse Adenocarcinoma 7 220536 -NCIT:C5247 Gastric Cardia Adenocarcinoma 7 220537 -NCIT:C5248 Gastric Mucinous Adenocarcinoma 7 220538 -NCIT:C5472 Gastric Papillary Adenocarcinoma 7 220539 -NCIT:C5473 Gastric Tubular Adenocarcinoma 7 220540 -NCIT:C65194 Gastric Parietal Cell Adenocarcinoma 7 220541 -NCIT:C67526 Gastric Mixed Adenocarcinoma 7 220542 -NCIT:C9157 Gastric Intestinal-Type Adenocarcinoma 7 220543 -NCIT:C95743 Gastric Poorly Cohesive Adenocarcinoma 7 220544 -NCIT:C5250 Gastric Signet Ring Cell Adenocarcinoma 8 220545 -NCIT:C95747 Gastric Hepatoid Adenocarcinoma 7 220546 -NCIT:C95748 Gastric Carcinoma with Lymphoid Stroma 7 220547 -NCIT:C9159 Gastric Diffuse Adenocarcinoma 6 220548 -NCIT:C43295 Hereditary Gastric Diffuse Adenocarcinoma 7 220549 -NCIT:C43529 Sporadic Gastric Diffuse Adenocarcinoma 7 220550 -NCIT:C40101 Serous Adenocarcinoma 5 220551 -NCIT:C126479 Broad Ligament Serous Adenocarcinoma 6 220552 -NCIT:C27838 Endometrial Serous Adenocarcinoma 6 220553 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 7 220554 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 7 220555 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 7 220556 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 8 220557 -NCIT:C187374 Platinum-Sensitive Endometrial Serous Adenocarcinoma 7 220558 -NCIT:C3778 Serous Cystadenocarcinoma 6 220559 -NCIT:C5724 Pancreatic Serous Cystadenocarcinoma 7 220560 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 7 220561 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 8 220562 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 220563 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 220564 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 8 220565 -NCIT:C8377 Papillary Serous Cystadenocarcinoma 7 220566 -NCIT:C40023 Primary Peritoneal Serous Adenocarcinoma 6 220567 -NCIT:C126353 Primary Peritoneal High Grade Serous Adenocarcinoma 7 220568 -NCIT:C165268 Recurrent Primary Peritoneal High Grade Serous Adenocarcinoma 8 220569 -NCIT:C178686 Refractory Primary Peritoneal High Grade Serous Adenocarcinoma 8 220570 -NCIT:C186275 Unresectable Primary Peritoneal High Grade Serous Adenocarcinoma 8 220571 -NCIT:C186453 Metastatic Primary Peritoneal High Grade Serous Adenocarcinoma 8 220572 -NCIT:C126354 Primary Peritoneal Low Grade Serous Adenocarcinoma 7 220573 -NCIT:C156454 Recurrent Primary Peritoneal Low Grade Serous Adenocarcinoma 8 220574 -NCIT:C178687 Refractory Primary Peritoneal Low Grade Serous Adenocarcinoma 8 220575 -NCIT:C156453 Recurrent Primary Peritoneal Serous Adenocarcinoma 7 220576 -NCIT:C156454 Recurrent Primary Peritoneal Low Grade Serous Adenocarcinoma 8 220577 -NCIT:C165268 Recurrent Primary Peritoneal High Grade Serous Adenocarcinoma 8 220578 -NCIT:C171019 Metastatic Primary Peritoneal Serous Adenocarcinoma 7 220579 -NCIT:C186453 Metastatic Primary Peritoneal High Grade Serous Adenocarcinoma 8 220580 -NCIT:C171020 Unresectable Primary Peritoneal Serous Adenocarcinoma 7 220581 -NCIT:C186275 Unresectable Primary Peritoneal High Grade Serous Adenocarcinoma 8 220582 -NCIT:C171021 Refractory Primary Peritoneal Serous Adenocarcinoma 7 220583 -NCIT:C178686 Refractory Primary Peritoneal High Grade Serous Adenocarcinoma 8 220584 -NCIT:C178687 Refractory Primary Peritoneal Low Grade Serous Adenocarcinoma 8 220585 -NCIT:C7695 Primary Peritoneal Serous Papillary Adenocarcinoma 7 220586 -NCIT:C40099 Fallopian Tube Serous Adenocarcinoma 6 220587 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 7 220588 -NCIT:C126456 Fallopian Tube High Grade Serous Adenocarcinoma 7 220589 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 8 220590 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 8 220591 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 8 220592 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 8 220593 -NCIT:C40152 Serous Endometrial Intraepithelial Carcinoma 6 220594 -NCIT:C40201 Cervical Serous Adenocarcinoma 6 220595 -NCIT:C4182 Serous Surface Papillary Carcinoma 6 220596 -NCIT:C6256 Ovarian Serous Surface Papillary Adenocarcinoma 7 220597 -NCIT:C6882 Micropapillary Serous Carcinoma 7 220598 -NCIT:C7695 Primary Peritoneal Serous Papillary Adenocarcinoma 7 220599 -NCIT:C8377 Papillary Serous Cystadenocarcinoma 7 220600 -NCIT:C7550 Ovarian Serous Adenocarcinoma 6 220601 -NCIT:C105555 Ovarian High Grade Serous Adenocarcinoma 7 220602 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 8 220603 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 8 220604 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 8 220605 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 220606 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 8 220607 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 220608 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 220609 -NCIT:C105556 Ovarian Low Grade Serous Adenocarcinoma 7 220610 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 8 220611 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 8 220612 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 7 220613 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 8 220614 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 8 220615 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 8 220616 -NCIT:C160781 Unresectable Ovarian Serous Adenocarcinoma 7 220617 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 8 220618 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 220619 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 7 220620 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 220621 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 220622 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 220623 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 8 220624 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 220625 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 220626 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 8 220627 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 220628 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 220629 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 220630 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 220631 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 220632 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 7 220633 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 8 220634 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 8 220635 -NCIT:C6256 Ovarian Serous Surface Papillary Adenocarcinoma 7 220636 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 7 220637 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 8 220638 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 220639 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 220640 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 8 220641 -NCIT:C40135 Broad Ligament Adenocarcinoma 5 220642 -NCIT:C126479 Broad Ligament Serous Adenocarcinoma 6 220643 -NCIT:C40137 Broad Ligament Mucinous Adenocarcinoma 6 220644 -NCIT:C40138 Broad Ligament Endometrioid Adenocarcinoma 6 220645 -NCIT:C40139 Broad Ligament Clear Cell Adenocarcinoma 6 220646 -NCIT:C4025 Esophageal Adenocarcinoma 5 220647 -NCIT:C133400 Esophageal Adenocarcinoma by AJCC v8 Stage 6 220648 -NCIT:C133401 Esophageal Adenocarcinoma by AJCC v8 Clinical Stage 7 220649 -NCIT:C133402 Clinical Stage 0 Esophageal Adenocarcinoma AJCC v8 8 220650 -NCIT:C133403 Clinical Stage I Esophageal Adenocarcinoma AJCC v8 8 220651 -NCIT:C133404 Clinical Stage II Esophageal Adenocarcinoma AJCC v8 8 220652 -NCIT:C133405 Clinical Stage IIA Esophageal Adenocarcinoma AJCC v8 9 220653 -NCIT:C133406 Clinical Stage IIB Esophageal Adenocarcinoma AJCC v8 9 220654 -NCIT:C133407 Clinical Stage III Esophageal Adenocarcinoma AJCC v8 8 220655 -NCIT:C133408 Clinical Stage IV Esophageal Adenocarcinoma AJCC v8 8 220656 -NCIT:C133409 Clinical Stage IVA Esophageal Adenocarcinoma AJCC v8 9 220657 -NCIT:C133410 Clinical Stage IVB Esophageal Adenocarcinoma AJCC v8 9 220658 -NCIT:C133412 Esophageal Adenocarcinoma by AJCC v8 Pathologic Stage 7 220659 -NCIT:C133413 Pathologic Stage 0 Esophageal Adenocarcinoma AJCC v8 8 220660 -NCIT:C133414 Pathologic Stage I Esophageal Adenocarcinoma AJCC v8 8 220661 -NCIT:C133415 Pathologic Stage IA Esophageal Adenocarcinoma AJCC v8 9 220662 -NCIT:C133416 Pathologic Stage IB Esophageal Adenocarcinoma AJCC v8 9 220663 -NCIT:C133417 Pathologic Stage IC Esophageal Adenocarcinoma AJCC v8 9 220664 -NCIT:C133418 Pathologic Stage II Esophageal Adenocarcinoma AJCC v8 8 220665 -NCIT:C133419 Pathologic Stage IIA Esophageal Adenocarcinoma AJCC v8 9 220666 -NCIT:C133420 Pathologic Stage IIB Esophageal Adenocarcinoma AJCC v8 9 220667 -NCIT:C133421 Pathologic Stage III Esophageal Adenocarcinoma AJCC v8 8 220668 -NCIT:C133422 Pathologic Stage IIIA Esophageal Adenocarcinoma AJCC v8 9 220669 -NCIT:C133423 Pathologic Stage IIIB Esophageal Adenocarcinoma AJCC v8 9 220670 -NCIT:C133424 Pathologic Stage IV Esophageal Adenocarcinoma AJCC v8 8 220671 -NCIT:C133425 Pathologic Stage IVA Esophageal Adenocarcinoma AJCC v8 9 220672 -NCIT:C133426 Pathologic Stage IVB Esophageal Adenocarcinoma AJCC v8 9 220673 -NCIT:C133432 Esophageal Adenocarcinoma by AJCC v8 Postneoadjuvant Therapy Stage 7 220674 -NCIT:C133433 Postneoadjuvant Therapy Stage I Esophageal Adenocarcinoma AJCC v8 8 220675 -NCIT:C133434 Postneoadjuvant Therapy Stage II Esophageal Adenocarcinoma AJCC v8 8 220676 -NCIT:C133435 Postneoadjuvant Therapy Stage III Esophageal Adenocarcinoma AJCC v8 8 220677 -NCIT:C133436 Postneoadjuvant Therapy Stage IIIA Esophageal Adenocarcinoma AJCC v8 9 220678 -NCIT:C133437 Postneoadjuvant Therapy Stage IIIB Esophageal Adenocarcinoma AJCC v8 9 220679 -NCIT:C133438 Postneoadjuvant Therapy Stage IV Esophageal Adenocarcinoma AJCC v8 8 220680 -NCIT:C133439 Postneoadjuvant Therapy Stage IVA Esophageal Adenocarcinoma AJCC v8 9 220681 -NCIT:C133440 Postneoadjuvant Therapy Stage IVB Esophageal Adenocarcinoma AJCC v8 9 220682 -NCIT:C133411 Esophageal Adenocarcinoma by AJCC v7 Stage 6 220683 -NCIT:C8628 Stage II Esophageal Adenocarcinoma AJCC v7 7 220684 -NCIT:C6731 Stage IIA Esophageal Adenocarcinoma AJCC v7 8 220685 -NCIT:C6732 Stage IIB Esophageal Adenocarcinoma AJCC v7 8 220686 -NCIT:C8629 Stage 0 Esophageal Adenocarcinoma AJCC v7 7 220687 -NCIT:C8630 Stage I Esophageal Adenocarcinoma AJCC v7 7 220688 -NCIT:C87782 Stage IA Esophageal Adenocarcinoma AJCC v7 8 220689 -NCIT:C87783 Stage IB Esophageal Adenocarcinoma AJCC v7 8 220690 -NCIT:C8631 Stage III Esophageal Adenocarcinoma AJCC v7 7 220691 -NCIT:C87784 Stage IIIA Esophageal Adenocarcinoma AJCC v7 8 220692 -NCIT:C87785 Stage IIIB Esophageal Adenocarcinoma AJCC v7 8 220693 -NCIT:C87786 Stage IIIC Esophageal Adenocarcinoma AJCC v7 8 220694 -NCIT:C8632 Stage IV Esophageal Adenocarcinoma AJCC v7 7 220695 -NCIT:C150027 Thoracic Esophagus Adenocarcinoma 6 220696 -NCIT:C150031 Cervical Esophagus Adenocarcinoma 6 220697 -NCIT:C152036 Distal Esophagus Adenocarcinoma 6 220698 -NCIT:C172248 Unresectable Distal Esophagus Adenocarcinoma 7 220699 -NCIT:C172249 Metastatic Distal Esophagus Adenocarcinoma 7 220700 -NCIT:C7027 Barrett Adenocarcinoma 7 220701 -NCIT:C156074 Metastatic Esophageal Adenocarcinoma 6 220702 -NCIT:C166120 Oligometastatic Esophageal Adenocarcinoma 7 220703 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 7 220704 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 7 220705 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 220706 -NCIT:C172249 Metastatic Distal Esophagus Adenocarcinoma 7 220707 -NCIT:C161906 Esophageal Intramucosal Adenocarcinoma 6 220708 -NCIT:C173162 Unresectable Esophageal Adenocarcinoma 6 220709 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 7 220710 -NCIT:C172248 Unresectable Distal Esophagus Adenocarcinoma 7 220711 -NCIT:C176892 Refractory Esophageal Adenocarcinoma 6 220712 -NCIT:C8627 Recurrent Esophageal Adenocarcinoma 6 220713 -NCIT:C4029 Cervical Adenocarcinoma 5 220714 -NCIT:C127915 Cervical Adenocarcinoma Admixed with Neuroendocrine Carcinoma 6 220715 -NCIT:C136651 Recurrent Cervical Adenocarcinoma 6 220716 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 7 220717 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 6 220718 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 7 220719 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 8 220720 -NCIT:C156304 Advanced Cervical Adenocarcinoma 7 220721 -NCIT:C174029 Unresectable Cervical Adenocarcinoma 6 220722 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 7 220723 -NCIT:C180848 Human Papillomavirus-Independent Cervical Adenocarcinoma 6 220724 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 7 220725 -NCIT:C40201 Cervical Serous Adenocarcinoma 7 220726 -NCIT:C40206 Human Papillomavirus-Independent Cervical Adenocarcinoma, Gastric-Type 7 220727 -NCIT:C40254 Cervical Mesonephric Adenocarcinoma 7 220728 -NCIT:C6343 Cervical Endometrioid Adenocarcinoma 7 220729 -NCIT:C6344 Human Papillomavirus-Independent Cervical Adenocarcinoma, Clear Cell-Type 7 220730 -NCIT:C180870 Cervical Adenocarcinoma, Not Otherwise Specified 6 220731 -NCIT:C181036 Refractory Cervical Adenocarcinoma 6 220732 -NCIT:C27677 Human Papillomavirus-Related Cervical Adenocarcinoma 6 220733 -NCIT:C127907 Endocervical Adenocarcinoma, Usual-Type 7 220734 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 8 220735 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 8 220736 -NCIT:C40208 Cervical Villoglandular Adenocarcinoma 8 220737 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 7 220738 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 7 220739 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 7 220740 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 7 220741 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 7 220742 -NCIT:C36095 Cervical Mucinous Adenocarcinoma 6 220743 -NCIT:C180861 Cervical Invasive Stratified Mucinous Adenocarcinoma 7 220744 -NCIT:C180869 Cervical Mucinous Adenocarcinoma, Not Otherwise Specified 7 220745 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 7 220746 -NCIT:C40205 Cervical Mucinous Adenocarcinoma, Signet Ring Cell-Type 7 220747 -NCIT:C40206 Human Papillomavirus-Independent Cervical Adenocarcinoma, Gastric-Type 7 220748 -NCIT:C36096 Early Invasive Cervical Adenocarcinoma 6 220749 -NCIT:C4520 Cervical Adenocarcinoma In Situ 6 220750 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 7 220751 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 7 220752 -NCIT:C40310 Sebaceous Carcinoma 5 220753 -NCIT:C160978 Head and Neck Sebaceous Carcinoma 6 220754 -NCIT:C173648 Salivary Gland Sebaceous Carcinoma 7 220755 -NCIT:C40369 Breast Sebaceous Carcinoma 6 220756 -NCIT:C43340 Eye Sebaceous Carcinoma 6 220757 -NCIT:C134831 Eyelid Sebaceous Gland Carcinoma 7 220758 -NCIT:C174404 Conjunctival Sebaceous Carcinoma 7 220759 -NCIT:C43341 Extraocular Cutaneous Sebaceous Carcinoma 6 220760 -NCIT:C40309 Vulvar Sebaceous Carcinoma 7 220761 -NCIT:C4068 Trabecular Adenocarcinoma 5 220762 -NCIT:C4072 Mesonephric Adenocarcinoma 5 220763 -NCIT:C185381 Metastatic Mesonephric Adenocarcinoma 6 220764 -NCIT:C40253 Vaginal Mesonephric Adenocarcinoma 6 220765 -NCIT:C40254 Cervical Mesonephric Adenocarcinoma 6 220766 -NCIT:C4123 Adenocarcinoma In Situ 5 220767 -NCIT:C133894 Stage 0 Small Intestinal Adenocarcinoma AJCC v8 6 220768 -NCIT:C134914 Stage 0 Pancreatic Cancer AJCC v8 6 220769 -NCIT:C136486 Lung Adenocarcinoma In Situ 6 220770 -NCIT:C136716 Lung Non-Mucinous Adenocarcinoma In Situ 7 220771 -NCIT:C136717 Lung Mucinous Adenocarcinoma In Situ 7 220772 -NCIT:C5729 Stage 0 Pancreatic Cancer AJCC v6 and v7 6 220773 -NCIT:C6877 Grade III Glandular Intraepithelial Neoplasia 6 220774 -NCIT:C133402 Clinical Stage 0 Esophageal Adenocarcinoma AJCC v8 7 220775 -NCIT:C133413 Pathologic Stage 0 Esophageal Adenocarcinoma AJCC v8 7 220776 -NCIT:C133550 Clinical Stage 0 Gastroesophageal Junction Adenocarcinoma AJCC v8 7 220777 -NCIT:C133564 Pathologic Stage 0 Gastroesophageal Junction Adenocarcinoma AJCC v8 7 220778 -NCIT:C2924 Breast Ductal Carcinoma In Situ 7 220779 -NCIT:C176005 Breast Ductal Carcinoma In Situ, Comedo Type 8 220780 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 8 220781 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 9 220782 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 9 220783 -NCIT:C5137 Breast Ductal Carcinoma In Situ, Non-Comedo Type 8 220784 -NCIT:C5138 Breast Ductal Carcinoma In Situ, Cribriform Pattern 8 220785 -NCIT:C66933 Breast Ductal Carcinoma In Situ, Solid Type 8 220786 -NCIT:C7949 Breast Ductal Carcinoma In Situ, High Grade 8 220787 -NCIT:C9456 Breast Ductal Carcinoma In Situ, Intermediate Grade 8 220788 -NCIT:C9457 Breast Ductal Carcinoma In Situ, Low Grade 8 220789 -NCIT:C3642 Grade III Prostatic Intraepithelial Neoplasia 7 220790 -NCIT:C40105 Stage 0 Fallopian Tube Cancer AJCC v7 7 220791 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 8 220792 -NCIT:C4018 Breast Lobular Carcinoma In Situ 7 220793 -NCIT:C137839 Breast Pleomorphic Lobular Carcinoma In Situ 8 220794 -NCIT:C175949 Breast Classic Lobular Carcinoma In Situ 8 220795 -NCIT:C83170 Breast Classic Lobular Carcinoma In Situ Type A 9 220796 -NCIT:C83171 Breast Classic Lobular Carcinoma In Situ Type B 9 220797 -NCIT:C175950 Breast Florid Lobular Carcinoma In Situ 8 220798 -NCIT:C4195 Breast Ductal Carcinoma In Situ and Lobular Carcinoma In Situ 7 220799 -NCIT:C4520 Cervical Adenocarcinoma In Situ 7 220800 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 8 220801 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 8 220802 -NCIT:C8629 Stage 0 Esophageal Adenocarcinoma AJCC v7 7 220803 -NCIT:C7680 Adenocarcinoma In Situ in a Polyp 6 220804 -NCIT:C7678 Adenocarcinoma In Situ in Adenomatous Polyp 7 220805 -NCIT:C4144 Adenocarcinoma In Situ in Tubulovillous Adenoma 8 220806 -NCIT:C7679 Adenocarcinoma In Situ in Tubular Adenoma 8 220807 -NCIT:C8376 Adenocarcinoma In Situ in Villous Adenoma 8 220808 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 6 220809 -NCIT:C8894 Stage 0 Bladder Adenocarcinoma AJCC v6 and v7 6 220810 -NCIT:C4124 Metastatic Adenocarcinoma 5 220811 -NCIT:C150577 Metastatic Gastroesophageal Junction Adenocarcinoma 6 220812 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 7 220813 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 7 220814 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 220815 -NCIT:C150595 Metastatic Renal Cell Carcinoma 6 220816 -NCIT:C153170 Advanced Renal Cell Carcinoma 7 220817 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 8 220818 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 8 220819 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 8 220820 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 8 220821 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 8 220822 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 7 220823 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 8 220824 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 8 220825 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 7 220826 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 8 220827 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 8 220828 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 7 220829 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 8 220830 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 8 220831 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 7 220832 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 8 220833 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 8 220834 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 8 220835 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 8 220836 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 8 220837 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 8 220838 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 7 220839 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 8 220840 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 8 220841 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 7 220842 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 8 220843 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 8 220844 -NCIT:C153319 Metastatic Gastric Adenocarcinoma 6 220845 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 7 220846 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 8 220847 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 8 220848 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 7 220849 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 8 220850 -NCIT:C165630 Metastatic Proximal Gastric Adenocarcinoma 7 220851 -NCIT:C166121 Oligometastatic Gastric Adenocarcinoma 7 220852 -NCIT:C166255 Advanced Gastric Adenocarcinoma 7 220853 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 8 220854 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 6 220855 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 7 220856 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 8 220857 -NCIT:C156304 Advanced Cervical Adenocarcinoma 7 220858 -NCIT:C154091 Metastatic Hepatocellular Carcinoma 6 220859 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 7 220860 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 8 220861 -NCIT:C167336 Advanced Hepatocellular Carcinoma 7 220862 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 8 220863 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 8 220864 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 7 220865 -NCIT:C155908 Metastatic Lung Adenocarcinoma 6 220866 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 7 220867 -NCIT:C176727 Advanced Lung Adenocarcinoma 7 220868 -NCIT:C156070 Metastatic Adrenal Cortical Carcinoma 6 220869 -NCIT:C174443 Locally Advanced Adrenal Cortical Carcinoma 7 220870 -NCIT:C191863 Advanced Adrenal Cortical Carcinoma 7 220871 -NCIT:C156074 Metastatic Esophageal Adenocarcinoma 6 220872 -NCIT:C166120 Oligometastatic Esophageal Adenocarcinoma 7 220873 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 7 220874 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 7 220875 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 220876 -NCIT:C172249 Metastatic Distal Esophagus Adenocarcinoma 7 220877 -NCIT:C157623 Metastatic Cholangiocarcinoma 6 220878 -NCIT:C162752 Advanced Cholangiocarcinoma 7 220879 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 8 220880 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 8 220881 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 8 220882 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 7 220883 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 8 220884 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 8 220885 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 7 220886 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 8 220887 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 7 220888 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 8 220889 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 8 220890 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 7 220891 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 8 220892 -NCIT:C159556 Advanced Adenocarcinoma 6 220893 -NCIT:C153170 Advanced Renal Cell Carcinoma 7 220894 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 8 220895 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 8 220896 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 8 220897 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 8 220898 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 8 220899 -NCIT:C156286 Advanced Prostate Adenocarcinoma 7 220900 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 8 220901 -NCIT:C156304 Advanced Cervical Adenocarcinoma 7 220902 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 7 220903 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 7 220904 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 8 220905 -NCIT:C162752 Advanced Cholangiocarcinoma 7 220906 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 8 220907 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 8 220908 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 8 220909 -NCIT:C165700 Advanced Breast Adenocarcinoma 7 220910 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 220911 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 220912 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 8 220913 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 220914 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 220915 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 220916 -NCIT:C166255 Advanced Gastric Adenocarcinoma 7 220917 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 8 220918 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 7 220919 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 7 220920 -NCIT:C162152 Advanced Colon Adenocarcinoma 8 220921 -NCIT:C175363 Advanced Rectal Adenocarcinoma 8 220922 -NCIT:C167336 Advanced Hepatocellular Carcinoma 7 220923 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 8 220924 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 8 220925 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 7 220926 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 8 220927 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 8 220928 -NCIT:C170807 Advanced Endometrioid Adenocarcinoma 7 220929 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 8 220930 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 220931 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 7 220932 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 8 220933 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 8 220934 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 7 220935 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 7 220936 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 7 220937 -NCIT:C176727 Advanced Lung Adenocarcinoma 7 220938 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 7 220939 -NCIT:C182105 Advanced Appendix Adenocarcinoma 7 220940 -NCIT:C191863 Advanced Adrenal Cortical Carcinoma 7 220941 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 6 220942 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 7 220943 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 8 220944 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 8 220945 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 7 220946 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 8 220947 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 8 220948 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 7 220949 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 8 220950 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 8 220951 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 7 220952 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 8 220953 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 8 220954 -NCIT:C161048 Metastatic Colorectal Adenocarcinoma 6 220955 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 7 220956 -NCIT:C160819 Metastatic Colon Adenocarcinoma 7 220957 -NCIT:C162152 Advanced Colon Adenocarcinoma 8 220958 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 8 220959 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 220960 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 7 220961 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 8 220962 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 220963 -NCIT:C175363 Advanced Rectal Adenocarcinoma 8 220964 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 7 220965 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 7 220966 -NCIT:C162152 Advanced Colon Adenocarcinoma 8 220967 -NCIT:C175363 Advanced Rectal Adenocarcinoma 8 220968 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 7 220969 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 220970 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 220971 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 220972 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 8 220973 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 220974 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 8 220975 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 220976 -NCIT:C165698 Metastatic Breast Adenocarcinoma 6 220977 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 7 220978 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 8 220979 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 220980 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 220981 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 220982 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 8 220983 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 220984 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 220985 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 220986 -NCIT:C165700 Advanced Breast Adenocarcinoma 7 220987 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 220988 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 220989 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 8 220990 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 220991 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 220992 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 220993 -NCIT:C168777 Metastatic HER2-Negative Breast Carcinoma 7 220994 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 220995 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 220996 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 220997 -NCIT:C179554 Metastatic HER2-Low Breast Carcinoma 7 220998 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 220999 -NCIT:C180924 Metastatic HER2-Positive Breast Carcinoma 7 221000 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 8 221001 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 8 221002 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 221003 -NCIT:C181787 Metastatic Breast Inflammatory Carcinoma 7 221004 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 8 221005 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 8 221006 -NCIT:C9246 Stage IIIB Breast Inflammatory Carcinoma 8 221007 -NCIT:C185880 Metastatic Hormone Receptor-Positive Breast Carcinoma 7 221008 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 221009 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 221010 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 221011 -NCIT:C190852 Metastatic Androgen Receptor-Positive Breast Carcinoma 8 221012 -NCIT:C190856 Metastatic Estrogen Receptor-Positive Breast Carcinoma 8 221013 -NCIT:C190677 Metastatic Hormone Receptor-Negative Breast Carcinoma 7 221014 -NCIT:C153348 Metastatic Triple-Negative Breast Carcinoma 8 221015 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 221016 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 221017 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 221018 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 9 221019 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 221020 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 221021 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 7 221022 -NCIT:C76326 Metastatic Breast Ductal Carcinoma 7 221023 -NCIT:C76328 Metastatic Breast Lobular Carcinoma 7 221024 -NCIT:C168978 Locally Advanced Adenocarcinoma 6 221025 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 7 221026 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 8 221027 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 8 221028 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 7 221029 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 8 221030 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 7 221031 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 8 221032 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 7 221033 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 221034 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 7 221035 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 8 221036 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 7 221037 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 7 221038 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 8 221039 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 221040 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 221041 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 221042 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 8 221043 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 221044 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 221045 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 221046 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 7 221047 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 7 221048 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 8 221049 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 8 221050 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 7 221051 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 8 221052 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 8 221053 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 8 221054 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 8 221055 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 8 221056 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 8 221057 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 7 221058 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 221059 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 7 221060 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 8 221061 -NCIT:C174045 Locally Advanced Endometrioid Adenocarcinoma 7 221062 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 8 221063 -NCIT:C174443 Locally Advanced Adrenal Cortical Carcinoma 7 221064 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 7 221065 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 7 221066 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 7 221067 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 7 221068 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 8 221069 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 8 221070 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 7 221071 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 221072 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 221073 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 221074 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 8 221075 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 221076 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 8 221077 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 221078 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 6 221079 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 7 221080 -NCIT:C170972 Metastatic Primary Peritoneal Adenocarcinoma 6 221081 -NCIT:C171019 Metastatic Primary Peritoneal Serous Adenocarcinoma 7 221082 -NCIT:C186453 Metastatic Primary Peritoneal High Grade Serous Adenocarcinoma 8 221083 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 6 221084 -NCIT:C173979 Metastatic Differentiated Thyroid Gland Carcinoma 6 221085 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 7 221086 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 8 221087 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 9 221088 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 7 221089 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 7 221090 -NCIT:C174046 Metastatic Poorly Differentiated Thyroid Gland Carcinoma 6 221091 -NCIT:C182104 Metastatic Appendix Adenocarcinoma 6 221092 -NCIT:C162274 Metastatic Appendix Mucinous Adenocarcinoma 7 221093 -NCIT:C182105 Advanced Appendix Adenocarcinoma 7 221094 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 6 221095 -NCIT:C185381 Metastatic Mesonephric Adenocarcinoma 6 221096 -NCIT:C27185 Disseminated Adenocarcinoma 6 221097 -NCIT:C3345 Pseudomyxoma Peritonei 6 221098 -NCIT:C179179 Recurrent Pseudomyxoma Peritonei 7 221099 -NCIT:C179180 Refractory Pseudomyxoma Peritonei 7 221100 -NCIT:C4039 Adenocarcinoma of Unknown Primary 6 221101 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 7 221102 -NCIT:C170962 Resectable Adenocarcinoma of Unknown Primary 7 221103 -NCIT:C66717 Metastatic Signet Ring Cell Carcinoma 6 221104 -NCIT:C3153 Krukenberg Tumor 7 221105 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 7 221106 -NCIT:C8933 Metastatic Pancreatic Adenocarcinoma 6 221107 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 7 221108 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 8 221109 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 8 221110 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 7 221111 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 8 221112 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 8 221113 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 8 221114 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 7 221115 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 8 221116 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 7 221117 -NCIT:C8934 Metastatic Small Intestinal Adenocarcinoma 6 221118 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 7 221119 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 6 221120 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 7 221121 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 8 221122 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 7 221123 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 8 221124 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 8 221125 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 7 221126 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 8 221127 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 8 221128 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 7 221129 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 8 221130 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 7 221131 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 7 221132 -NCIT:C8943 Metastatic Endometrioid Adenocarcinoma 6 221133 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 7 221134 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 8 221135 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 8 221136 -NCIT:C170807 Advanced Endometrioid Adenocarcinoma 7 221137 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 8 221138 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 221139 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 7 221140 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 221141 -NCIT:C174045 Locally Advanced Endometrioid Adenocarcinoma 7 221142 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 8 221143 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 6 221144 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 7 221145 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 6 221146 -NCIT:C156286 Advanced Prostate Adenocarcinoma 7 221147 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 8 221148 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 7 221149 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 8 221150 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 7 221151 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 8 221152 -NCIT:C9044 Metastatic Parathyroid Gland Carcinoma 6 221153 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 7 221154 -NCIT:C4126 Intestinal-Type Adenocarcinoma 5 221155 -NCIT:C116316 Sinonasal Adenocarcinoma, Intestinal-Type 6 221156 -NCIT:C160984 Sinonasal Adenocarcinoma, Intestinal-Type with Papillary Pattern 7 221157 -NCIT:C160986 Sinonasal Adenocarcinoma, Intestinal-Type with Colonic Pattern 7 221158 -NCIT:C160987 Sinonasal Adenocarcinoma, Intestinal-Type with Solid Pattern 7 221159 -NCIT:C160995 Sinonasal Adenocarcinoma, Intestinal-Type with Mucinous Pattern 7 221160 -NCIT:C161000 Sinonasal Adenocarcinoma, Intestinal-Type with Mixed Pattern 7 221161 -NCIT:C128166 Vulvar Adenocarcinoma, Intestinal-Type 6 221162 -NCIT:C136710 Lung Enteric Adenocarcinoma 6 221163 -NCIT:C180536 Endometrial Mucinous Adenocarcinoma, Intestinal-Type 6 221164 -NCIT:C180946 Vaginal Mucinous Adenocarcinoma, Intestinal-Type 6 221165 -NCIT:C183314 Thymic Enteric-Type Adenocarcinoma 6 221166 -NCIT:C27415 Ampulla of Vater Intestinal-Type Adenocarcinoma 6 221167 -NCIT:C40203 Cervical Mucinous Adenocarcinoma, Intestinal-Type 6 221168 -NCIT:C43604 Gallbladder Adenocarcinoma, Intestinal-Type 6 221169 -NCIT:C9157 Gastric Intestinal-Type Adenocarcinoma 6 221170 -NCIT:C4127 Diffuse Type Adenocarcinoma 5 221171 -NCIT:C9159 Gastric Diffuse Adenocarcinoma 6 221172 -NCIT:C43295 Hereditary Gastric Diffuse Adenocarcinoma 7 221173 -NCIT:C43529 Sporadic Gastric Diffuse Adenocarcinoma 7 221174 -NCIT:C4142 Villous Adenocarcinoma 5 221175 -NCIT:C172699 Colorectal Adenoma-Like Adenocarcinoma 6 221176 -NCIT:C27846 Villoglandular Endometrial Endometrioid Adenocarcinoma 6 221177 -NCIT:C40208 Cervical Villoglandular Adenocarcinoma 6 221178 -NCIT:C4150 Basophilic Adenocarcinoma 5 221179 -NCIT:C4541 Lacrimal Gland Adenocarcinoma 5 221180 -NCIT:C175267 Lacrimal Gland Oncocytic Adenocarcinoma 6 221181 -NCIT:C175290 Lacrimal Gland Acinic Cell Carcinoma 6 221182 -NCIT:C4712 Adenocarcinoma with Metaplasia 5 221183 -NCIT:C4200 Adenocarcinoma with Squamous Metaplasia 6 221184 -NCIT:C5163 Breast Adenocarcinoma with Squamous Metaplasia 7 221185 -NCIT:C6987 Breast Ductal Carcinoma with Squamous Metaplasia 8 221186 -NCIT:C9169 Gallbladder Adenocarcinoma with Squamous Metaplasia 7 221187 -NCIT:C4201 Adenocarcinoma with Spindle Cell Metaplasia 6 221188 -NCIT:C40360 Breast Adenocarcinoma with Spindle Cell Metaplasia 7 221189 -NCIT:C4202 Adenocarcinoma with Apocrine Metaplasia 6 221190 -NCIT:C7683 Adenocarcinoma with Cartilaginous and Osseous Metaplasia 6 221191 -NCIT:C7684 Adenocarcinoma with Osseous Metaplasia 7 221192 -NCIT:C7685 Adenocarcinoma with Cartilaginous Metaplasia 7 221193 -NCIT:C4906 Parathyroid Gland Carcinoma 5 221194 -NCIT:C118819 Childhood Parathyroid Gland Carcinoma 6 221195 -NCIT:C7826 Localized Parathyroid Gland Carcinoma 6 221196 -NCIT:C7828 Recurrent Parathyroid Gland Carcinoma 6 221197 -NCIT:C9044 Metastatic Parathyroid Gland Carcinoma 6 221198 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 7 221199 -NCIT:C5105 Colorectal Adenocarcinoma 5 221200 -NCIT:C161048 Metastatic Colorectal Adenocarcinoma 6 221201 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 7 221202 -NCIT:C160819 Metastatic Colon Adenocarcinoma 7 221203 -NCIT:C162152 Advanced Colon Adenocarcinoma 8 221204 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 8 221205 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 221206 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 7 221207 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 8 221208 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 221209 -NCIT:C175363 Advanced Rectal Adenocarcinoma 8 221210 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 7 221211 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 7 221212 -NCIT:C162152 Advanced Colon Adenocarcinoma 8 221213 -NCIT:C175363 Advanced Rectal Adenocarcinoma 8 221214 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 7 221215 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 221216 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 221217 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 221218 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 8 221219 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 221220 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 8 221221 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 221222 -NCIT:C162154 Refractory Colorectal Adenocarcinoma 6 221223 -NCIT:C162155 Refractory Colon Adenocarcinoma 7 221224 -NCIT:C162157 Refractory Rectal Adenocarcinoma 7 221225 -NCIT:C162441 Recurrent Colorectal Adenocarcinoma 6 221226 -NCIT:C162442 Recurrent Colon Adenocarcinoma 7 221227 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 7 221228 -NCIT:C171585 Unresectable Colorectal Adenocarcinoma 6 221229 -NCIT:C162116 Unresectable Colon Adenocarcinoma 7 221230 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 8 221231 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 7 221232 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 8 221233 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 7 221234 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 8 221235 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 8 221236 -NCIT:C172694 Colorectal Poorly Cohesive Adenocarcinoma 6 221237 -NCIT:C43586 Colorectal Signet Ring Cell Carcinoma 7 221238 -NCIT:C43593 Rectosigmoid Signet Ring Cell Carcinoma 8 221239 -NCIT:C7967 Colon Signet Ring Cell Adenocarcinoma 8 221240 -NCIT:C9168 Rectal Signet Ring Cell Adenocarcinoma 8 221241 -NCIT:C172699 Colorectal Adenoma-Like Adenocarcinoma 6 221242 -NCIT:C172700 Inflammatory Bowel Disease-Associated Colorectal Adenocarcinoma 6 221243 -NCIT:C96496 Ulcerative Colitis-Associated Colorectal Adenocarcinoma 7 221244 -NCIT:C96497 Crohn Disease-Associated Colorectal Adenocarcinoma 7 221245 -NCIT:C4349 Colon Adenocarcinoma 6 221246 -NCIT:C160819 Metastatic Colon Adenocarcinoma 7 221247 -NCIT:C162152 Advanced Colon Adenocarcinoma 8 221248 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 8 221249 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 221250 -NCIT:C162116 Unresectable Colon Adenocarcinoma 7 221251 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 8 221252 -NCIT:C162155 Refractory Colon Adenocarcinoma 7 221253 -NCIT:C162442 Recurrent Colon Adenocarcinoma 7 221254 -NCIT:C38760 Submucosal Invasive Colon Adenocarcinoma 7 221255 -NCIT:C45429 Colon Intramucosal Adenocarcinoma 7 221256 -NCIT:C27413 Adenoma of the Colon with Intramucosal Adenocarcinoma 8 221257 -NCIT:C5543 Cecum Adenocarcinoma 7 221258 -NCIT:C60641 Colon Medullary Carcinoma 7 221259 -NCIT:C7966 Colon Mucinous Adenocarcinoma 7 221260 -NCIT:C7967 Colon Signet Ring Cell Adenocarcinoma 7 221261 -NCIT:C9452 Grade 1 Colon Adenocarcinoma 7 221262 -NCIT:C9453 Grade 2 Colon Adenocarcinoma 7 221263 -NCIT:C9454 Grade 3 Colon Adenocarcinoma 7 221264 -NCIT:C96486 Colon Serrated Adenocarcinoma 7 221265 -NCIT:C96489 Colon Cribriform Comedo-Type Adenocarcinoma 7 221266 -NCIT:C96492 Colon Micropapillary Adenocarcinoma 7 221267 -NCIT:C43584 Rectosigmoid Adenocarcinoma 6 221268 -NCIT:C43592 Rectosigmoid Mucinous Adenocarcinoma 7 221269 -NCIT:C43593 Rectosigmoid Signet Ring Cell Carcinoma 7 221270 -NCIT:C43585 Colorectal Mucinous Adenocarcinoma 6 221271 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 7 221272 -NCIT:C43592 Rectosigmoid Mucinous Adenocarcinoma 7 221273 -NCIT:C7966 Colon Mucinous Adenocarcinoma 7 221274 -NCIT:C7973 Rectal Mucinous Adenocarcinoma 7 221275 -NCIT:C43590 Colorectal Medullary Carcinoma 6 221276 -NCIT:C60640 Rectal Medullary Carcinoma 7 221277 -NCIT:C60641 Colon Medullary Carcinoma 7 221278 -NCIT:C9383 Rectal Adenocarcinoma 6 221279 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 7 221280 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 8 221281 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 221282 -NCIT:C175363 Advanced Rectal Adenocarcinoma 8 221283 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 7 221284 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 8 221285 -NCIT:C162157 Refractory Rectal Adenocarcinoma 7 221286 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 7 221287 -NCIT:C60640 Rectal Medullary Carcinoma 7 221288 -NCIT:C7973 Rectal Mucinous Adenocarcinoma 7 221289 -NCIT:C9168 Rectal Signet Ring Cell Adenocarcinoma 7 221290 -NCIT:C9449 Grade 3 Rectal Adenocarcinoma 7 221291 -NCIT:C9450 Grade 2 Rectal Adenocarcinoma 7 221292 -NCIT:C9451 Grade 1 Rectal Adenocarcinoma 7 221293 -NCIT:C96487 Rectal Serrated Adenocarcinoma 7 221294 -NCIT:C96490 Rectal Cribriform Comedo-Type Adenocarcinoma 7 221295 -NCIT:C96493 Rectal Micropapillary Adenocarcinoma 7 221296 -NCIT:C9446 Grade 1 Colorectal Adenocarcinoma 6 221297 -NCIT:C9451 Grade 1 Rectal Adenocarcinoma 7 221298 -NCIT:C9452 Grade 1 Colon Adenocarcinoma 7 221299 -NCIT:C9447 Grade 2 Colorectal Adenocarcinoma 6 221300 -NCIT:C9450 Grade 2 Rectal Adenocarcinoma 7 221301 -NCIT:C9453 Grade 2 Colon Adenocarcinoma 7 221302 -NCIT:C9448 Grade 3 Colorectal Adenocarcinoma 6 221303 -NCIT:C9449 Grade 3 Rectal Adenocarcinoma 7 221304 -NCIT:C9454 Grade 3 Colon Adenocarcinoma 7 221305 -NCIT:C96485 Colorectal Serrated Adenocarcinoma 6 221306 -NCIT:C96486 Colon Serrated Adenocarcinoma 7 221307 -NCIT:C96487 Rectal Serrated Adenocarcinoma 7 221308 -NCIT:C96488 Colorectal Cribriform Comedo-Type Adenocarcinoma 6 221309 -NCIT:C96489 Colon Cribriform Comedo-Type Adenocarcinoma 7 221310 -NCIT:C96490 Rectal Cribriform Comedo-Type Adenocarcinoma 7 221311 -NCIT:C96491 Colorectal Micropapillary Adenocarcinoma 6 221312 -NCIT:C96492 Colon Micropapillary Adenocarcinoma 7 221313 -NCIT:C96493 Rectal Micropapillary Adenocarcinoma 7 221314 -NCIT:C5214 Breast Adenocarcinoma 5 221315 -NCIT:C114932 Hormone-Resistant Breast Carcinoma 6 221316 -NCIT:C157056 Hormone Receptor-Positive Breast Carcinoma 6 221317 -NCIT:C157057 Refractory Hormone Receptor-Positive Breast Carcinoma 7 221318 -NCIT:C185157 Recurrent Hormone Receptor-Positive Breast Carcinoma 7 221319 -NCIT:C185880 Metastatic Hormone Receptor-Positive Breast Carcinoma 7 221320 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 221321 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 221322 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 221323 -NCIT:C190852 Metastatic Androgen Receptor-Positive Breast Carcinoma 8 221324 -NCIT:C190856 Metastatic Estrogen Receptor-Positive Breast Carcinoma 8 221325 -NCIT:C187160 Unresectable Hormone Receptor-Positive Breast Carcinoma 7 221326 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 8 221327 -NCIT:C188366 Estrogen Receptor-Positive Breast Carcinoma 7 221328 -NCIT:C190856 Metastatic Estrogen Receptor-Positive Breast Carcinoma 8 221329 -NCIT:C190851 Androgen Receptor-Positive Breast Carcinoma 7 221330 -NCIT:C190852 Metastatic Androgen Receptor-Positive Breast Carcinoma 8 221331 -NCIT:C165698 Metastatic Breast Adenocarcinoma 6 221332 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 7 221333 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 8 221334 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 221335 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 221336 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 221337 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 8 221338 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 221339 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 221340 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 221341 -NCIT:C165700 Advanced Breast Adenocarcinoma 7 221342 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 221343 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 221344 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 8 221345 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 221346 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 221347 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 221348 -NCIT:C168777 Metastatic HER2-Negative Breast Carcinoma 7 221349 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 221350 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 221351 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 221352 -NCIT:C179554 Metastatic HER2-Low Breast Carcinoma 7 221353 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 221354 -NCIT:C180924 Metastatic HER2-Positive Breast Carcinoma 7 221355 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 8 221356 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 8 221357 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 221358 -NCIT:C181787 Metastatic Breast Inflammatory Carcinoma 7 221359 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 8 221360 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 8 221361 -NCIT:C9246 Stage IIIB Breast Inflammatory Carcinoma 8 221362 -NCIT:C185880 Metastatic Hormone Receptor-Positive Breast Carcinoma 7 221363 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 221364 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 221365 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 221366 -NCIT:C190852 Metastatic Androgen Receptor-Positive Breast Carcinoma 8 221367 -NCIT:C190856 Metastatic Estrogen Receptor-Positive Breast Carcinoma 8 221368 -NCIT:C190677 Metastatic Hormone Receptor-Negative Breast Carcinoma 7 221369 -NCIT:C153348 Metastatic Triple-Negative Breast Carcinoma 8 221370 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 221371 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 221372 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 221373 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 9 221374 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 221375 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 221376 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 7 221377 -NCIT:C76326 Metastatic Breast Ductal Carcinoma 7 221378 -NCIT:C76328 Metastatic Breast Lobular Carcinoma 7 221379 -NCIT:C165703 Refractory Breast Adenocarcinoma 6 221380 -NCIT:C157057 Refractory Hormone Receptor-Positive Breast Carcinoma 7 221381 -NCIT:C167076 Refractory Triple-Negative Breast Carcinoma 7 221382 -NCIT:C168784 Refractory HER2-Negative Breast Carcinoma 7 221383 -NCIT:C182110 Refractory HER2-Positive Breast Carcinoma 7 221384 -NCIT:C165743 Hormone Receptor-Negative Breast Carcinoma 6 221385 -NCIT:C190676 Unresectable Hormone Receptor-Negative Breast Carcinoma 7 221386 -NCIT:C165491 Unresectable Triple-Negative Breast Carcinoma 8 221387 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 221388 -NCIT:C190677 Metastatic Hormone Receptor-Negative Breast Carcinoma 7 221389 -NCIT:C153348 Metastatic Triple-Negative Breast Carcinoma 8 221390 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 221391 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 221392 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 221393 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 9 221394 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 221395 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 221396 -NCIT:C71732 Triple-Negative Breast Carcinoma 7 221397 -NCIT:C153348 Metastatic Triple-Negative Breast Carcinoma 8 221398 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 221399 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 221400 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 221401 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 9 221402 -NCIT:C165491 Unresectable Triple-Negative Breast Carcinoma 8 221403 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 221404 -NCIT:C167076 Refractory Triple-Negative Breast Carcinoma 8 221405 -NCIT:C171014 Recurrent Triple-Negative Breast Carcinoma 8 221406 -NCIT:C181081 Early Stage Triple-Negative Breast Carcinoma 8 221407 -NCIT:C168519 HER2-Negative Breast Carcinoma 6 221408 -NCIT:C168777 Metastatic HER2-Negative Breast Carcinoma 7 221409 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 221410 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 221411 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 221412 -NCIT:C168783 Recurrent HER2-Negative Breast Carcinoma 7 221413 -NCIT:C168784 Refractory HER2-Negative Breast Carcinoma 7 221414 -NCIT:C187161 Unresectable HER2-Negative Breast Carcinoma 7 221415 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 8 221416 -NCIT:C190215 Early Stage HER2-Negative Breast Carcinoma 7 221417 -NCIT:C175588 Recurrent Breast Adenocarcinoma 6 221418 -NCIT:C153568 Recurrent Breast Acinic Cell Carcinoma 7 221419 -NCIT:C153584 Recurrent Lobular Breast Carcinoma 7 221420 -NCIT:C153587 Recurrent Invasive Breast Carcinoma of No Special Type 7 221421 -NCIT:C153588 Recurrent Breast Paget Disease 7 221422 -NCIT:C168783 Recurrent HER2-Negative Breast Carcinoma 7 221423 -NCIT:C171014 Recurrent Triple-Negative Breast Carcinoma 7 221424 -NCIT:C182108 Recurrent HER2-Positive Breast Carcinoma 7 221425 -NCIT:C185157 Recurrent Hormone Receptor-Positive Breast Carcinoma 7 221426 -NCIT:C8607 Recurrent Breast Inflammatory Carcinoma 7 221427 -NCIT:C179553 HER2-Low Breast Carcinoma 6 221428 -NCIT:C179554 Metastatic HER2-Low Breast Carcinoma 7 221429 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 221430 -NCIT:C3771 Breast Lobular Carcinoma 6 221431 -NCIT:C153584 Recurrent Lobular Breast Carcinoma 7 221432 -NCIT:C4018 Breast Lobular Carcinoma In Situ 7 221433 -NCIT:C137839 Breast Pleomorphic Lobular Carcinoma In Situ 8 221434 -NCIT:C175949 Breast Classic Lobular Carcinoma In Situ 8 221435 -NCIT:C83170 Breast Classic Lobular Carcinoma In Situ Type A 9 221436 -NCIT:C83171 Breast Classic Lobular Carcinoma In Situ Type B 9 221437 -NCIT:C175950 Breast Florid Lobular Carcinoma In Situ 8 221438 -NCIT:C76328 Metastatic Breast Lobular Carcinoma 7 221439 -NCIT:C7950 Invasive Breast Lobular Carcinoma 7 221440 -NCIT:C157235 Breast Histiocytoid Carcinoma 8 221441 -NCIT:C187405 Invasive Breast Lobular Carcinoma with Extracellular Mucin 8 221442 -NCIT:C54691 Invasive Breast Lobular Carcinoma, Signet Ring Variant 8 221443 -NCIT:C9136 Invasive Breast Lobular Carcinoma with Predominant In Situ Component 8 221444 -NCIT:C97049 Invasive Breast Lobular Carcinoma, Alveolar Variant 8 221445 -NCIT:C97051 Invasive Breast Lobular Carcinoma, Pleomorphic Variant 8 221446 -NCIT:C97052 Invasive Breast Lobular Carcinoma, Solid Variant 8 221447 -NCIT:C97053 Invasive Breast Lobular Carcinoma, Tubulolobular Variant 8 221448 -NCIT:C4001 Breast Inflammatory Carcinoma 6 221449 -NCIT:C158751 Unresectable Breast Inflammatory Carcinoma 7 221450 -NCIT:C181787 Metastatic Breast Inflammatory Carcinoma 7 221451 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 8 221452 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 8 221453 -NCIT:C9246 Stage IIIB Breast Inflammatory Carcinoma 8 221454 -NCIT:C8607 Recurrent Breast Inflammatory Carcinoma 7 221455 -NCIT:C4017 Breast Ductal Carcinoma 6 221456 -NCIT:C2924 Breast Ductal Carcinoma In Situ 7 221457 -NCIT:C176005 Breast Ductal Carcinoma In Situ, Comedo Type 8 221458 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 8 221459 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 9 221460 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 9 221461 -NCIT:C5137 Breast Ductal Carcinoma In Situ, Non-Comedo Type 8 221462 -NCIT:C5138 Breast Ductal Carcinoma In Situ, Cribriform Pattern 8 221463 -NCIT:C66933 Breast Ductal Carcinoma In Situ, Solid Type 8 221464 -NCIT:C7949 Breast Ductal Carcinoma In Situ, High Grade 8 221465 -NCIT:C9456 Breast Ductal Carcinoma In Situ, Intermediate Grade 8 221466 -NCIT:C9457 Breast Ductal Carcinoma In Situ, Low Grade 8 221467 -NCIT:C4194 Invasive Breast Carcinoma of No Special Type 7 221468 -NCIT:C153587 Recurrent Invasive Breast Carcinoma of No Special Type 8 221469 -NCIT:C175585 Breast Carcinoma with Neuroendocrine Differentiation 8 221470 -NCIT:C40349 Breast Carcinoma with Osteoclast-Like Stromal Giant Cells 8 221471 -NCIT:C40350 Breast Carcinoma with Choriocarcinomatous Features 8 221472 -NCIT:C40351 Breast Carcinoma with Melanotic Features 8 221473 -NCIT:C40365 Breast Lipid-Rich Carcinoma 8 221474 -NCIT:C40366 Breast Oncocytic Carcinoma 8 221475 -NCIT:C40368 Glycogen-Rich, Clear Cell Breast Carcinoma 8 221476 -NCIT:C40369 Breast Sebaceous Carcinoma 8 221477 -NCIT:C5161 Breast Pleomorphic Carcinoma 8 221478 -NCIT:C66719 Breast Atypical Medullary Carcinoma 8 221479 -NCIT:C6987 Breast Ductal Carcinoma with Squamous Metaplasia 8 221480 -NCIT:C7362 Breast Scirrhous Carcinoma 8 221481 -NCIT:C9119 Breast Medullary Carcinoma 8 221482 -NCIT:C9132 Invasive Breast Carcinoma of No Special Type with Predominant Intraductal Component 8 221483 -NCIT:C76326 Metastatic Breast Ductal Carcinoma 7 221484 -NCIT:C40354 Breast Mucinous Cystadenocarcinoma 6 221485 -NCIT:C40360 Breast Adenocarcinoma with Spindle Cell Metaplasia 6 221486 -NCIT:C40367 Breast Acinic Cell Carcinoma 6 221487 -NCIT:C153568 Recurrent Breast Acinic Cell Carcinoma 7 221488 -NCIT:C47857 Breast Paget Disease 6 221489 -NCIT:C153588 Recurrent Breast Paget Disease 7 221490 -NCIT:C3301 Nipple Paget Disease 7 221491 -NCIT:C47858 Breast Paget Disease without Invasive Carcinoma 7 221492 -NCIT:C4019 Breast Paget Disease and Intraductal Carcinoma 8 221493 -NCIT:C7951 Breast Paget Disease with Invasive Ductal Carcinoma 7 221494 -NCIT:C5141 Breast Apocrine Carcinoma 6 221495 -NCIT:C5140 Breast Apocrine Carcinoma In Situ 7 221496 -NCIT:C5457 Invasive Breast Apocrine Carcinoma 7 221497 -NCIT:C5142 Invasive Breast Cribriform Carcinoma 6 221498 -NCIT:C5160 Breast Mixed Ductal and Lobular Carcinoma 6 221499 -NCIT:C7688 Invasive Breast Ductal Carcinoma and Lobular Carcinoma 7 221500 -NCIT:C6393 Invasive Breast Ductal Carcinoma and Invasive Lobular Carcinoma 8 221501 -NCIT:C7689 Invasive Breast Ductal Carcinoma and Lobular Carcinoma In Situ 8 221502 -NCIT:C7690 Breast Ductal Carcinoma In Situ and Lobular Carcinoma 7 221503 -NCIT:C4195 Breast Ductal Carcinoma In Situ and Lobular Carcinoma In Situ 8 221504 -NCIT:C6939 Breast Ductal Carcinoma In Situ and Invasive Lobular Carcinoma 8 221505 -NCIT:C5163 Breast Adenocarcinoma with Squamous Metaplasia 6 221506 -NCIT:C6987 Breast Ductal Carcinoma with Squamous Metaplasia 7 221507 -NCIT:C5175 Breast Signet Ring Cell Carcinoma 6 221508 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 7 221509 -NCIT:C54691 Invasive Breast Lobular Carcinoma, Signet Ring Variant 7 221510 -NCIT:C53553 Breast Carcinoma by Gene Expression Profile 6 221511 -NCIT:C53554 Luminal A Breast Carcinoma 7 221512 -NCIT:C53555 Luminal B Breast Carcinoma 7 221513 -NCIT:C53556 HER2-Positive Breast Carcinoma 7 221514 -NCIT:C180924 Metastatic HER2-Positive Breast Carcinoma 8 221515 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 221516 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 221517 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 221518 -NCIT:C182108 Recurrent HER2-Positive Breast Carcinoma 8 221519 -NCIT:C182110 Refractory HER2-Positive Breast Carcinoma 8 221520 -NCIT:C186284 Unresectable HER2-Positive Breast Carcinoma 8 221521 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 221522 -NCIT:C53557 Normal Breast-Like Subtype of Breast Carcinoma 7 221523 -NCIT:C53558 Basal-Like Breast Carcinoma 7 221524 -NCIT:C71732 Triple-Negative Breast Carcinoma 7 221525 -NCIT:C153348 Metastatic Triple-Negative Breast Carcinoma 8 221526 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 221527 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 221528 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 221529 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 9 221530 -NCIT:C165491 Unresectable Triple-Negative Breast Carcinoma 8 221531 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 221532 -NCIT:C167076 Refractory Triple-Negative Breast Carcinoma 8 221533 -NCIT:C171014 Recurrent Triple-Negative Breast Carcinoma 8 221534 -NCIT:C181081 Early Stage Triple-Negative Breast Carcinoma 8 221535 -NCIT:C9131 Breast Mucinous Carcinoma 6 221536 -NCIT:C40355 Breast Columnar Cell Mucinous Carcinoma 7 221537 -NCIT:C9134 Breast Papillary Carcinoma 6 221538 -NCIT:C176009 Encapsulated Breast Papillary Carcinoma 7 221539 -NCIT:C176010 Encapsulated Breast Papillary Carcinoma with Invasion 8 221540 -NCIT:C36085 Invasive Breast Papillary Carcinoma 7 221541 -NCIT:C176010 Encapsulated Breast Papillary Carcinoma with Invasion 8 221542 -NCIT:C176012 Invasive Breast Solid Papillary Carcinoma 8 221543 -NCIT:C36084 Invasive Breast Micropapillary Carcinoma 8 221544 -NCIT:C7439 Breast Papillary Ductal Carcinoma In Situ with Invasion 8 221545 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 7 221546 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 8 221547 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 8 221548 -NCIT:C6870 Breast Solid Papillary Carcinoma 7 221549 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 8 221550 -NCIT:C176012 Invasive Breast Solid Papillary Carcinoma 8 221551 -NCIT:C9135 Breast Tubular Carcinoma 6 221552 -NCIT:C5600 Anal Adenocarcinoma 5 221553 -NCIT:C153575 Recurrent Anal Adenocarcinoma 6 221554 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 7 221555 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 7 221556 -NCIT:C5598 Anal Paget Disease 6 221557 -NCIT:C7476 Anal Margin Paget Disease 7 221558 -NCIT:C7477 Anal Canal Paget Disease 7 221559 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 8 221560 -NCIT:C7471 Anal Canal Adenocarcinoma 6 221561 -NCIT:C5606 Anal Mucinous Adenocarcinoma 7 221562 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 8 221563 -NCIT:C7477 Anal Canal Paget Disease 7 221564 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 8 221565 -NCIT:C7474 Anal Extramucosal (Perianal) Adenocarcinoma 6 221566 -NCIT:C5609 Anal Glands Adenocarcinoma 7 221567 -NCIT:C7475 Anal Adenocarcinoma within Anorectal Fistula 7 221568 -NCIT:C5914 Oral Cavity Adenocarcinoma 5 221569 -NCIT:C6143 Renal Pelvis Adenocarcinoma 5 221570 -NCIT:C6155 Ureter Adenocarcinoma 5 221571 -NCIT:C6167 Urethral Adenocarcinoma 5 221572 -NCIT:C6172 Urethral Clear Cell Adenocarcinoma 6 221573 -NCIT:C7371 Accessory Urethral Gland Adenocarcinoma 6 221574 -NCIT:C180948 Skene Gland Adenocarcinoma of the Urethra 7 221575 -NCIT:C39864 Cowper Gland Adenocarcinoma of the Urethra 7 221576 -NCIT:C39865 Littre Gland Adenocarcinoma of the Urethra 7 221577 -NCIT:C6265 Fallopian Tube Adenocarcinoma 5 221578 -NCIT:C170766 Recurrent Fallopian Tube Adenocarcinoma 6 221579 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 7 221580 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 7 221581 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 7 221582 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 7 221583 -NCIT:C170970 Unresectable Fallopian Tube Adenocarcinoma 6 221584 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 7 221585 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 7 221586 -NCIT:C170971 Refractory Fallopian Tube Adenocarcinoma 6 221587 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 7 221588 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 7 221589 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 7 221590 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 7 221591 -NCIT:C40099 Fallopian Tube Serous Adenocarcinoma 6 221592 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 7 221593 -NCIT:C126456 Fallopian Tube High Grade Serous Adenocarcinoma 7 221594 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 8 221595 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 8 221596 -NCIT:C171017 Unresectable Fallopian Tube High Grade Serous Adenocarcinoma 8 221597 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 8 221598 -NCIT:C40103 Fallopian Tube Mucinous Adenocarcinoma 6 221599 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 7 221600 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 7 221601 -NCIT:C40105 Stage 0 Fallopian Tube Cancer AJCC v7 6 221602 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 7 221603 -NCIT:C6279 Fallopian Tube Endometrioid Adenocarcinoma 6 221604 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 7 221605 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 7 221606 -NCIT:C186274 Unresectable Fallopian Tube Endometrioid Adenocarcinoma 7 221607 -NCIT:C6280 Fallopian Tube Clear Cell Adenocarcinoma 6 221608 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 7 221609 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 7 221610 -NCIT:C6380 Vulvar Adenocarcinoma 5 221611 -NCIT:C128162 Vulvar Adenocarcinoma of Mammary Gland Type 6 221612 -NCIT:C128164 Vulvar Adenocarcinoma of Sweat Gland Origin 6 221613 -NCIT:C4027 Vulvar Paget Disease 7 221614 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 7 221615 -NCIT:C40306 Vulvar Porocarcinoma 8 221616 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 7 221617 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 7 221618 -NCIT:C128166 Vulvar Adenocarcinoma, Intestinal-Type 6 221619 -NCIT:C40309 Vulvar Sebaceous Carcinoma 6 221620 -NCIT:C7719 Bartholin Gland Adenocarcinoma 6 221621 -NCIT:C6459 Thymic Adenocarcinoma 5 221622 -NCIT:C146717 Thymic Hepatoid Adenocarcinoma 6 221623 -NCIT:C183314 Thymic Enteric-Type Adenocarcinoma 6 221624 -NCIT:C183315 Thymic Adenocarcinoma, Not Otherwise Specified 6 221625 -NCIT:C27937 Thymic Low Grade Papillary Adenocarcinoma 6 221626 -NCIT:C65192 Tubular Adenocarcinoma 5 221627 -NCIT:C3682 Sweat Gland Tubular Carcinoma 6 221628 -NCIT:C45509 Lung Fetal Adenocarcinoma 6 221629 -NCIT:C5473 Gastric Tubular Adenocarcinoma 6 221630 -NCIT:C9135 Breast Tubular Carcinoma 6 221631 -NCIT:C96915 Gallbladder Adenocarcinoma, Biliary Type 6 221632 -NCIT:C96936 Extrahepatic Bile Duct Adenocarcinoma, Biliary Type 6 221633 -NCIT:C6650 Ampulla of Vater Adenocarcinoma 5 221634 -NCIT:C153574 Recurrent Ampulla of Vater Adenocarcinoma 6 221635 -NCIT:C189065 Unresectable Ampulla of Vater Adenocarcinoma 6 221636 -NCIT:C27414 Ampulla of Vater Clear Cell Adenocarcinoma 6 221637 -NCIT:C27415 Ampulla of Vater Intestinal-Type Adenocarcinoma 6 221638 -NCIT:C27416 Ampulla of Vater Mucinous Adenocarcinoma 6 221639 -NCIT:C6656 Ampulla of Vater Signet Ring Cell Carcinoma 6 221640 -NCIT:C95963 Ampulla of Vater Pancreatobiliary Type Adenocarcinoma 6 221641 -NCIT:C95966 Ampulla of Vater Hepatoid Adenocarcinoma 6 221642 -NCIT:C95967 Ampulla of Vater Invasive Papillary Adenocarcinoma 6 221643 -NCIT:C66745 Adenocarcinoma with Neuroendocrine Differentiation 5 221644 -NCIT:C127915 Cervical Adenocarcinoma Admixed with Neuroendocrine Carcinoma 6 221645 -NCIT:C167364 Endocrine Mucin-Producing Sweat Gland Carcinoma 6 221646 -NCIT:C175585 Breast Carcinoma with Neuroendocrine Differentiation 6 221647 -NCIT:C39903 Prostate Adenocarcinoma with Neuroendocrine Differentiation 6 221648 -NCIT:C158656 Usual Prostate Adenocarcinoma with Neuroendocrine Differentiation 7 221649 -NCIT:C158664 Prostate Adenocarcinoma with Paneth Cell-Like Neuroendocrine Differentiation 7 221650 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 7 221651 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 8 221652 -NCIT:C66950 Hepatoid Adenocarcinoma 5 221653 -NCIT:C146717 Thymic Hepatoid Adenocarcinoma 6 221654 -NCIT:C39838 Bladder Hepatoid Adenocarcinoma 6 221655 -NCIT:C95465 Pancreatic Hepatoid Adenocarcinoma 6 221656 -NCIT:C95747 Gastric Hepatoid Adenocarcinoma 6 221657 -NCIT:C95966 Ampulla of Vater Hepatoid Adenocarcinoma 6 221658 -NCIT:C96890 Gallbladder Hepatoid Adenocarcinoma 6 221659 -NCIT:C6848 Middle Ear Adenocarcinoma 5 221660 -NCIT:C6938 Sweat Gland Carcinoma 5 221661 -NCIT:C128164 Vulvar Adenocarcinoma of Sweat Gland Origin 6 221662 -NCIT:C4027 Vulvar Paget Disease 7 221663 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 7 221664 -NCIT:C40306 Vulvar Porocarcinoma 8 221665 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 7 221666 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 7 221667 -NCIT:C167344 Spiradenocylindrocarcinoma 6 221668 -NCIT:C167364 Endocrine Mucin-Producing Sweat Gland Carcinoma 6 221669 -NCIT:C167365 Syringocystadenocarcinoma Papilliferum 6 221670 -NCIT:C27255 Eccrine Carcinoma 6 221671 -NCIT:C27254 Papillary Eccrine Carcinoma 7 221672 -NCIT:C27534 Digital Papillary Adenocarcinoma 8 221673 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 7 221674 -NCIT:C40306 Vulvar Porocarcinoma 8 221675 -NCIT:C43345 Ductal Eccrine Adenocarcinoma 7 221676 -NCIT:C43346 Ductal Eccrine Carcinoma with Spindle Cell Elements 8 221677 -NCIT:C43347 Squamoid Eccrine Ductal Carcinoma 8 221678 -NCIT:C43349 Ductal Eccrine Carcinoma with Abundant Fibromyxoid Stroma 8 221679 -NCIT:C5560 Porocarcinoma 7 221680 -NCIT:C40306 Vulvar Porocarcinoma 8 221681 -NCIT:C43354 Porocarcinoma In Situ 8 221682 -NCIT:C27533 Primary Cutaneous Mucinous Carcinoma 6 221683 -NCIT:C3682 Sweat Gland Tubular Carcinoma 6 221684 -NCIT:C4169 Apocrine Carcinoma 6 221685 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 7 221686 -NCIT:C4176 Ceruminous Adenocarcinoma 7 221687 -NCIT:C5141 Breast Apocrine Carcinoma 7 221688 -NCIT:C5140 Breast Apocrine Carcinoma In Situ 8 221689 -NCIT:C5457 Invasive Breast Apocrine Carcinoma 8 221690 -NCIT:C43344 Cylindrocarcinoma 6 221691 -NCIT:C4471 Adenoid Cystic Skin Carcinoma 6 221692 -NCIT:C4472 Mucoepidermoid Skin Carcinoma 6 221693 -NCIT:C5117 Spiradenocarcinoma 6 221694 -NCIT:C5180 Malignant Breast Spiradenoma 7 221695 -NCIT:C54664 Hidradenocarcinoma 6 221696 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 7 221697 -NCIT:C7581 Microcystic Adnexal Carcinoma 6 221698 -NCIT:C7073 Paget Disease 5 221699 -NCIT:C3302 Extramammary Paget Disease 6 221700 -NCIT:C27817 Penile Paget Disease 7 221701 -NCIT:C4027 Vulvar Paget Disease 7 221702 -NCIT:C5598 Anal Paget Disease 7 221703 -NCIT:C7476 Anal Margin Paget Disease 8 221704 -NCIT:C7477 Anal Canal Paget Disease 8 221705 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 9 221706 -NCIT:C7728 Scrotal Paget Disease 7 221707 -NCIT:C47857 Breast Paget Disease 6 221708 -NCIT:C153588 Recurrent Breast Paget Disease 7 221709 -NCIT:C3301 Nipple Paget Disease 7 221710 -NCIT:C47858 Breast Paget Disease without Invasive Carcinoma 7 221711 -NCIT:C4019 Breast Paget Disease and Intraductal Carcinoma 8 221712 -NCIT:C7951 Breast Paget Disease with Invasive Ductal Carcinoma 7 221713 -NCIT:C7359 Endometrial Adenocarcinoma 5 221714 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 6 221715 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 7 221716 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 7 221717 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 7 221718 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 7 221719 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 7 221720 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 6 221721 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 7 221722 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 7 221723 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 7 221724 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 7 221725 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 7 221726 -NCIT:C179322 Endometrial Mesonephric-Like Adenocarcinoma 6 221727 -NCIT:C180536 Endometrial Mucinous Adenocarcinoma, Intestinal-Type 6 221728 -NCIT:C180537 Endometrial Mucinous Adenocarcinoma, Gastric-Type 6 221729 -NCIT:C39749 Type II Endometrial Adenocarcinoma 6 221730 -NCIT:C27838 Endometrial Serous Adenocarcinoma 7 221731 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 8 221732 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 8 221733 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 8 221734 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 221735 -NCIT:C187374 Platinum-Sensitive Endometrial Serous Adenocarcinoma 8 221736 -NCIT:C40152 Serous Endometrial Intraepithelial Carcinoma 7 221737 -NCIT:C8028 Endometrial Clear Cell Adenocarcinoma 7 221738 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 8 221739 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 8 221740 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 8 221741 -NCIT:C40145 Type I Endometrial Adenocarcinoma 6 221742 -NCIT:C40144 Endometrial Mucinous Adenocarcinoma 7 221743 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 8 221744 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 8 221745 -NCIT:C40149 FIGO Grade 1 Endometrial Mucinous Adenocarcinoma 8 221746 -NCIT:C40150 FIGO Grade 2 Endometrial Mucinous Adenocarcinoma 8 221747 -NCIT:C40151 FIGO Grade 3 Endometrial Mucinous Adenocarcinoma 8 221748 -NCIT:C6287 Endometrial Endometrioid Adenocarcinoma 7 221749 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 8 221750 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 8 221751 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 8 221752 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 221753 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 221754 -NCIT:C180510 Low Grade Endometrial Endometrioid Adenocarcinoma 8 221755 -NCIT:C40146 FIGO Grade 1 Endometrial Endometrioid Adenocarcinoma 9 221756 -NCIT:C40147 FIGO Grade 2 Endometrial Endometrioid Adenocarcinoma 9 221757 -NCIT:C180512 POLE-Ultramutated Endometrial Endometrioid Adenocarcinoma 8 221758 -NCIT:C180514 Mismatch Repair-Deficient Endometrial Endometrioid Adenocarcinoma 8 221759 -NCIT:C180515 p53-Mutant Endometrial Endometrioid Adenocarcinoma 8 221760 -NCIT:C180516 No Specific Molecular Profile Endometrial Endometrioid Adenocarcinoma 8 221761 -NCIT:C27839 Endometrial Endometrioid Adenocarcinoma, Secretory Variant 8 221762 -NCIT:C27843 Endometrial Endometrioid Adenocarcinoma with Clear Cell Change 8 221763 -NCIT:C27844 Endometrial Endometrioid Adenocarcinoma with a Poorly Differentiated Carcinomatous Component 8 221764 -NCIT:C27845 Endometrial Endometrioid Adenocarcinoma with an Undifferentiated Carcinomatous Component 8 221765 -NCIT:C27846 Villoglandular Endometrial Endometrioid Adenocarcinoma 8 221766 -NCIT:C27848 Endometrial Endometrioid Adenocarcinoma, Ciliated Variant 8 221767 -NCIT:C27849 Oxyphilic Endometrial Endometrioid Adenocarcinoma 8 221768 -NCIT:C27850 Endometrial Endometrioid Adenocarcinoma with Spindled Epithelial Cells 8 221769 -NCIT:C40148 High Grade Endometrial Endometrioid Adenocarcinoma 8 221770 -NCIT:C6290 Endometrial Endometrioid Adenocarcinoma, Variant with Squamous Differentiation 8 221771 -NCIT:C40153 Endometrial Mixed Cell Adenocarcinoma 6 221772 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 7 221773 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 7 221774 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 7 221775 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 6 221776 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 7 221777 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 8 221778 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 7 221779 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 8 221780 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 8 221781 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 7 221782 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 8 221783 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 8 221784 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 7 221785 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 8 221786 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 7 221787 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 7 221788 -NCIT:C7676 Adenocarcinoma in Adenomatous Polyp 5 221789 -NCIT:C162531 Invasive Adenocarcinoma in Adenomatous Polyp 6 221790 -NCIT:C4136 Adenocarcinoma in Multiple Adenomatous Polyps 6 221791 -NCIT:C4134 Adenocarcinoma in Adenomatous Polyposis Coli 7 221792 -NCIT:C4141 Adenocarcinoma in Villous Adenoma 6 221793 -NCIT:C8376 Adenocarcinoma In Situ in Villous Adenoma 7 221794 -NCIT:C4145 Adenocarcinoma in Tubulovillous Adenoma 6 221795 -NCIT:C4144 Adenocarcinoma In Situ in Tubulovillous Adenoma 7 221796 -NCIT:C7677 Adenocarcinoma in Tubular Adenoma 6 221797 -NCIT:C7679 Adenocarcinoma In Situ in Tubular Adenoma 7 221798 -NCIT:C7678 Adenocarcinoma In Situ in Adenomatous Polyp 6 221799 -NCIT:C4144 Adenocarcinoma In Situ in Tubulovillous Adenoma 7 221800 -NCIT:C7679 Adenocarcinoma In Situ in Tubular Adenoma 7 221801 -NCIT:C8376 Adenocarcinoma In Situ in Villous Adenoma 7 221802 -NCIT:C7700 Ovarian Adenocarcinoma 5 221803 -NCIT:C153614 Recurrent Ovarian Adenocarcinoma 6 221804 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 7 221805 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 7 221806 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 8 221807 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 8 221808 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 8 221809 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 7 221810 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 7 221811 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 8 221812 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 7 221813 -NCIT:C170968 Refractory Ovarian Adenocarcinoma 6 221814 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 7 221815 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 7 221816 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 8 221817 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 8 221818 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 7 221819 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 7 221820 -NCIT:C179208 Ovarian Signet Ring Cell Carcinoma 6 221821 -NCIT:C179321 Ovarian Mesonephric-Like Adenocarcinoma 6 221822 -NCIT:C179339 Ovarian Mixed Cell Adenocarcinoma 6 221823 -NCIT:C40078 Ovarian Clear Cell Adenocarcinoma 6 221824 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 7 221825 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 7 221826 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 221827 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 7 221828 -NCIT:C7980 Ovarian Clear Cell Cystadenocarcinoma 7 221829 -NCIT:C5228 Ovarian Cystadenocarcinoma 6 221830 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 7 221831 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 8 221832 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 7 221833 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 7 221834 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 8 221835 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 221836 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 221837 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 8 221838 -NCIT:C7980 Ovarian Clear Cell Cystadenocarcinoma 7 221839 -NCIT:C5243 Ovarian Mucinous Adenocarcinoma 6 221840 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 7 221841 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 7 221842 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 7 221843 -NCIT:C183245 Unresectable Ovarian Mucinous Adenocarcinoma 7 221844 -NCIT:C4026 Ovarian Mucinous Cystadenocarcinoma 7 221845 -NCIT:C7550 Ovarian Serous Adenocarcinoma 6 221846 -NCIT:C105555 Ovarian High Grade Serous Adenocarcinoma 7 221847 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 8 221848 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 8 221849 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 8 221850 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 221851 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 8 221852 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 221853 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 221854 -NCIT:C105556 Ovarian Low Grade Serous Adenocarcinoma 7 221855 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 8 221856 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 8 221857 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 7 221858 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 8 221859 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 8 221860 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 8 221861 -NCIT:C160781 Unresectable Ovarian Serous Adenocarcinoma 7 221862 -NCIT:C186272 Unresectable Ovarian High Grade Serous Adenocarcinoma 8 221863 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 221864 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 7 221865 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 221866 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 221867 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 221868 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 8 221869 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 221870 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 221871 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 8 221872 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 221873 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 221874 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 221875 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 221876 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 221877 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 7 221878 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 8 221879 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 8 221880 -NCIT:C6256 Ovarian Serous Surface Papillary Adenocarcinoma 7 221881 -NCIT:C7978 Ovarian Serous Cystadenocarcinoma 7 221882 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 8 221883 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 221884 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 221885 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 8 221886 -NCIT:C7979 Ovarian Endometrioid Adenocarcinoma 6 221887 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 7 221888 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 7 221889 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 7 221890 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 8 221891 -NCIT:C186273 Unresectable Ovarian Endometrioid Adenocarcinoma 7 221892 -NCIT:C40061 Ovarian Endometrioid Adenocarcinoma with Squamous Differentiation 7 221893 -NCIT:C7718 Appendix Adenocarcinoma 5 221894 -NCIT:C179174 Recurrent Appendix Adenocarcinoma 6 221895 -NCIT:C153579 Recurrent Appendix Mucinous Adenocarcinoma 7 221896 -NCIT:C179178 Refractory Appendix Adenocarcinoma 6 221897 -NCIT:C182104 Metastatic Appendix Adenocarcinoma 6 221898 -NCIT:C162274 Metastatic Appendix Mucinous Adenocarcinoma 7 221899 -NCIT:C182105 Advanced Appendix Adenocarcinoma 7 221900 -NCIT:C43554 Appendix Signet Ring Cell Carcinoma 6 221901 -NCIT:C43558 Appendix Mucinous Adenocarcinoma 6 221902 -NCIT:C153579 Recurrent Appendix Mucinous Adenocarcinoma 7 221903 -NCIT:C162274 Metastatic Appendix Mucinous Adenocarcinoma 7 221904 -NCIT:C5511 Appendix Mucinous Cystadenocarcinoma 7 221905 -NCIT:C7888 Small Intestinal Adenocarcinoma 5 221906 -NCIT:C133893 Small Intestinal Adenocarcinoma by AJCC v8 Stage 6 221907 -NCIT:C133894 Stage 0 Small Intestinal Adenocarcinoma AJCC v8 7 221908 -NCIT:C133895 Stage I Small Intestinal Adenocarcinoma AJCC v8 7 221909 -NCIT:C133896 Stage II Small Intestinal Adenocarcinoma AJCC v8 7 221910 -NCIT:C133897 Stage IIA Small Intestinal Adenocarcinoma AJCC v8 8 221911 -NCIT:C133898 Stage IIB Small Intestinal Adenocarcinoma AJCC v8 8 221912 -NCIT:C133899 Stage III Small Intestinal Adenocarcinoma AJCC v8 7 221913 -NCIT:C133900 Stage IIIA Small Intestinal Adenocarcinoma AJCC v8 8 221914 -NCIT:C133901 Stage IIIB Small Intestinal Adenocarcinoma AJCC v8 8 221915 -NCIT:C133902 Stage IV Small Intestinal Adenocarcinoma AJCC v8 7 221916 -NCIT:C175516 Unresectable Small Intestinal Adenocarcinoma 6 221917 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 7 221918 -NCIT:C181158 Jejunal Adenocarcinoma 6 221919 -NCIT:C43536 Small Intestinal Mucinous Adenocarcinoma 6 221920 -NCIT:C43543 Small Intestinal Signet Ring Cell Carcinoma 6 221921 -NCIT:C7889 Duodenal Adenocarcinoma 6 221922 -NCIT:C27322 Periampullary Adenocarcinoma 7 221923 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 8 221924 -NCIT:C169108 Resectable Periampullary Adenocarcinoma 8 221925 -NCIT:C8934 Metastatic Small Intestinal Adenocarcinoma 6 221926 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 7 221927 -NCIT:C7981 Vaginal Adenocarcinoma 5 221928 -NCIT:C180943 Human Papillomavirus-Related Vaginal Adenocarcinoma 6 221929 -NCIT:C180947 Vaginal Adenocarcinoma of Skene Gland Origin 6 221930 -NCIT:C40251 Vaginal Endometrioid Adenocarcinoma 6 221931 -NCIT:C40252 Vaginal Mucinous Adenocarcinoma 6 221932 -NCIT:C180945 Vaginal Mucinous Adenocarcinoma, Gastric-Type 7 221933 -NCIT:C180946 Vaginal Mucinous Adenocarcinoma, Intestinal-Type 7 221934 -NCIT:C40253 Vaginal Mesonephric Adenocarcinoma 6 221935 -NCIT:C7735 Vaginal Clear Cell Adenocarcinoma 6 221936 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 6 221937 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 7 221938 -NCIT:C8021 Salivary Gland Adenocarcinoma 5 221939 -NCIT:C123384 Salivary Gland Secretory Carcinoma 6 221940 -NCIT:C173648 Salivary Gland Sebaceous Carcinoma 6 221941 -NCIT:C35702 Salivary Gland Polymorphous Adenocarcinoma 6 221942 -NCIT:C173576 Oropharyngeal Polymorphous Adenocarcinoma 7 221943 -NCIT:C3678 Salivary Gland Basal Cell Adenocarcinoma 6 221944 -NCIT:C5903 Major Salivary Gland Adenocarcinoma 6 221945 -NCIT:C5901 Major Salivary Gland Acinic Cell Carcinoma 7 221946 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 8 221947 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 9 221948 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 8 221949 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 9 221950 -NCIT:C5940 Submandibular Gland Adenocarcinoma 7 221951 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 8 221952 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 9 221953 -NCIT:C5941 Parotid Gland Adenocarcinoma 7 221954 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 8 221955 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 9 221956 -NCIT:C5958 Sublingual Gland Adenocarcinoma 7 221957 -NCIT:C5904 Salivary Duct Carcinoma 6 221958 -NCIT:C153611 Recurrent Salivary Duct Carcinoma 7 221959 -NCIT:C5948 Minor Salivary Gland Adenocarcinoma 6 221960 -NCIT:C153612 Recurrent Minor Salivary Gland Adenocarcinoma 7 221961 -NCIT:C160974 Cribriform Adenocarcinoma of Minor Salivary Gland 7 221962 -NCIT:C6243 Minor Salivary Gland Acinic Cell Carcinoma 7 221963 -NCIT:C5980 Salivary Gland Cystadenocarcinoma 6 221964 -NCIT:C62192 Salivary Gland Intraductal Carcinoma 6 221965 -NCIT:C62193 Salivary Gland Mucinous Adenocarcinoma 6 221966 -NCIT:C62194 Salivary Gland Oncocytic Carcinoma 6 221967 -NCIT:C62196 Salivary Gland Adenocarcinoma, Not Otherwise Specified 6 221968 -NCIT:C8013 Salivary Gland Acinic Cell Carcinoma 6 221969 -NCIT:C190274 Childhood Salivary Gland Acinic Cell Carcinoma 7 221970 -NCIT:C5901 Major Salivary Gland Acinic Cell Carcinoma 7 221971 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 8 221972 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 9 221973 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 8 221974 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 9 221975 -NCIT:C6243 Minor Salivary Gland Acinic Cell Carcinoma 7 221976 -NCIT:C8294 Pancreatic Adenocarcinoma 5 221977 -NCIT:C155742 Recurrent Pancreatic Adenocarcinoma 6 221978 -NCIT:C153569 Recurrent Pancreatic Acinar Cell Carcinoma 7 221979 -NCIT:C153619 Recurrent Pancreatic Ductal Adenocarcinoma 7 221980 -NCIT:C153620 Recurrent Pancreatic Cystadenocarcinoma 7 221981 -NCIT:C156906 Resectable Pancreatic Adenocarcinoma 6 221982 -NCIT:C151995 Resectable Pancreatic Ductal Adenocarcinoma 7 221983 -NCIT:C156907 Resectable Pancreatic Acinar Cell Carcinoma 7 221984 -NCIT:C157350 Borderline Resectable Pancreatic Adenocarcinoma 7 221985 -NCIT:C162015 Refractory Pancreatic Adenocarcinoma 6 221986 -NCIT:C165450 Refractory Pancreatic Ductal Adenocarcinoma 7 221987 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 7 221988 -NCIT:C162016 Unresectable Pancreatic Adenocarcinoma 6 221989 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 7 221990 -NCIT:C172245 Unresectable Pancreatic Ductal Adenocarcinoma 7 221991 -NCIT:C169041 Localized Pancreatic Adenocarcinoma 6 221992 -NCIT:C189009 Localized Pancreatic Ductal Adenocarcinoma 7 221993 -NCIT:C172813 Invasive Pancreatic Micropapillary Adenocarcinoma 6 221994 -NCIT:C3874 Pancreatic Cystadenocarcinoma 6 221995 -NCIT:C153620 Recurrent Pancreatic Cystadenocarcinoma 7 221996 -NCIT:C5724 Pancreatic Serous Cystadenocarcinoma 7 221997 -NCIT:C5727 Pancreatic Acinar Cell Cystadenocarcinoma 7 221998 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 8 221999 -NCIT:C5726 Pancreatic Intraductal Papillary-Mucinous Neoplasm with an Associated Invasive Carcinoma 6 222000 -NCIT:C7977 Pancreatic Acinar Cell Carcinoma 6 222001 -NCIT:C153569 Recurrent Pancreatic Acinar Cell Carcinoma 7 222002 -NCIT:C156907 Resectable Pancreatic Acinar Cell Carcinoma 7 222003 -NCIT:C190024 Childhood Pancreatic Acinar Cell Carcinoma 7 222004 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 8 222005 -NCIT:C5727 Pancreatic Acinar Cell Cystadenocarcinoma 7 222006 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 8 222007 -NCIT:C8933 Metastatic Pancreatic Adenocarcinoma 6 222008 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 7 222009 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 8 222010 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 8 222011 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 7 222012 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 8 222013 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 8 222014 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 8 222015 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 7 222016 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 8 222017 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 7 222018 -NCIT:C9120 Pancreatic Ductal Adenocarcinoma 6 222019 -NCIT:C151995 Resectable Pancreatic Ductal Adenocarcinoma 7 222020 -NCIT:C153619 Recurrent Pancreatic Ductal Adenocarcinoma 7 222021 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 7 222022 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 8 222023 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 8 222024 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 8 222025 -NCIT:C158961 Early Stage Pancreatic Ductal Adenocarcinoma 7 222026 -NCIT:C165450 Refractory Pancreatic Ductal Adenocarcinoma 7 222027 -NCIT:C172245 Unresectable Pancreatic Ductal Adenocarcinoma 7 222028 -NCIT:C172811 Pancreatic Poorly Cohesive Adenocarcinoma 7 222029 -NCIT:C5720 Pancreatic Signet Ring Cell Carcinoma 8 222030 -NCIT:C189009 Localized Pancreatic Ductal Adenocarcinoma 7 222031 -NCIT:C37214 Pancreatic Colloid Carcinoma 7 222032 -NCIT:C37256 Pancreatic Foamy Gland Adenocarcinoma 7 222033 -NCIT:C5722 Pancreatic Undifferentiated Carcinoma 7 222034 -NCIT:C172812 Pancreatic Undifferentiated Carcinoma with Rhabdoid Cells 8 222035 -NCIT:C5723 Pancreatic Undifferentiated Carcinoma with Osteoclast-Like Giant Cells 8 222036 -NCIT:C95426 Pancreatic Well Differentiated Ductal Adenocarcinoma 7 222037 -NCIT:C95427 Pancreatic Moderately Differentiated Ductal Adenocarcinoma 7 222038 -NCIT:C95428 Pancreatic Poorly Differentiated Ductal Adenocarcinoma 7 222039 -NCIT:C95465 Pancreatic Hepatoid Adenocarcinoma 7 222040 -NCIT:C95466 Pancreatic Medullary Carcinoma 7 222041 -NCIT:C95458 Pancreatic Mixed Acinar-Ductal Carcinoma 6 222042 -NCIT:C95507 Pancreatic Intraductal Tubulopapillary Neoplasm with an Associated Invasive Carcinoma 6 222043 -NCIT:C8955 Rete Testis Adenocarcinoma 5 222044 -NCIT:C9166 Gallbladder Adenocarcinoma 5 222045 -NCIT:C189064 Unresectable Gallbladder Adenocarcinoma 6 222046 -NCIT:C43604 Gallbladder Adenocarcinoma, Intestinal-Type 6 222047 -NCIT:C43605 Gallbladder Clear Cell Adenocarcinoma 6 222048 -NCIT:C5743 Gallbladder Intracholecystic Papillary Neoplasm with an Associated Invasive Carcinoma 6 222049 -NCIT:C5744 Gallbladder Mucinous Adenocarcinoma 6 222050 -NCIT:C5745 Gallbladder Signet Ring Cell Carcinoma 6 222051 -NCIT:C9169 Gallbladder Adenocarcinoma with Squamous Metaplasia 6 222052 -NCIT:C96887 Gallbladder Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 6 222053 -NCIT:C96890 Gallbladder Hepatoid Adenocarcinoma 6 222054 -NCIT:C96891 Gallbladder Cribriform Carcinoma 6 222055 -NCIT:C96915 Gallbladder Adenocarcinoma, Biliary Type 6 222056 -NCIT:C96916 Gallbladder Adenocarcinoma, Gastric Foveolar Type 6 222057 -NCIT:C9296 Gastroesophageal Junction Adenocarcinoma 5 222058 -NCIT:C133548 Gastroesophageal Junction Adenocarcinoma by AJCC v8 Stage 6 222059 -NCIT:C133549 Gastroesophageal Junction Adenocarcinoma by AJCC v8 Clinical Stage 7 222060 -NCIT:C133550 Clinical Stage 0 Gastroesophageal Junction Adenocarcinoma AJCC v8 8 222061 -NCIT:C133552 Clinical Stage I Gastroesophageal Junction Adenocarcinoma AJCC v8 8 222062 -NCIT:C133553 Clinical Stage II Gastroesophageal Junction Adenocarcinoma AJCC v8 8 222063 -NCIT:C133554 Clinical Stage IIA Gastroesophageal Junction Adenocarcinoma AJCC v8 9 222064 -NCIT:C133555 Clinical Stage IIB Gastroesophageal Junction Adenocarcinoma AJCC v8 9 222065 -NCIT:C133556 Clinical Stage III Gastroesophageal Junction Adenocarcinoma AJCC v8 8 222066 -NCIT:C133557 Clinical Stage IV Gastroesophageal Junction Adenocarcinoma AJCC v8 8 222067 -NCIT:C133558 Clinical Stage IVA Gastroesophageal Junction Adenocarcinoma AJCC v8 9 222068 -NCIT:C133560 Clinical Stage IVB Gastroesophageal Junction Adenocarcinoma AJCC v8 9 222069 -NCIT:C133563 Gastroesophageal Junction Adenocarcinoma by AJCC v8 Pathologic Stage 7 222070 -NCIT:C133564 Pathologic Stage 0 Gastroesophageal Junction Adenocarcinoma AJCC v8 8 222071 -NCIT:C133565 Pathologic Stage I Gastroesophageal Junction Adenocarcinoma AJCC v8 8 222072 -NCIT:C133566 Pathologic Stage IA Gastroesophageal Junction Adenocarcinoma AJCC v8 9 222073 -NCIT:C133567 Pathologic Stage IB Gastroesophageal Junction Adenocarcinoma AJCC v8 9 222074 -NCIT:C133568 Pathologic Stage IC Gastroesophageal Junction Adenocarcinoma AJCC v8 9 222075 -NCIT:C133570 Pathologic Stage II Gastroesophageal Junction Adenocarcinoma AJCC v8 8 222076 -NCIT:C133572 Pathologic Stage IIA Gastroesophageal Junction Adenocarcinoma AJCC v8 9 222077 -NCIT:C133573 Pathologic Stage IIB Gastroesophageal Junction Adenocarcinoma AJCC v8 9 222078 -NCIT:C133575 Pathologic Stage III Gastroesophageal Junction Adenocarcinoma AJCC v8 8 222079 -NCIT:C133577 Pathologic Stage IIIA Gastroesophageal Junction Adenocarcinoma AJCC v8 9 222080 -NCIT:C133579 Pathologic Stage IIIB Gastroesophageal Junction Adenocarcinoma AJCC v8 9 222081 -NCIT:C133580 Pathologic Stage IV Gastroesophageal Junction Adenocarcinoma AJCC v8 8 222082 -NCIT:C133581 Pathologic Stage IVA Gastroesophageal Junction Adenocarcinoma AJCC v8 9 222083 -NCIT:C133582 Pathologic Stage IVB Gastroesophageal Junction Adenocarcinoma AJCC v8 9 222084 -NCIT:C133583 Gastroesophageal Junction Adenocarcinoma by AJCC v8 Postneoadjuvant Therapy Stage 7 222085 -NCIT:C133584 Postneoadjuvant Therapy Stage I Gastroesophageal Junction Adenocarcinoma AJCC v8 8 222086 -NCIT:C133585 Postneoadjuvant Therapy Stage II Gastroesophageal Junction Adenocarcinoma AJCC v8 8 222087 -NCIT:C133586 Postneoadjuvant Therapy Stage III Gastroesophageal Junction Adenocarcinoma AJCC v8 8 222088 -NCIT:C133587 Postneoadjuvant Therapy Stage IIIA Gastroesophageal Junction Adenocarcinoma AJCC v8 9 222089 -NCIT:C133588 Postneoadjuvant Therapy Stage IIIB Gastroesophageal Junction Adenocarcinoma AJCC v8 9 222090 -NCIT:C133589 Postneoadjuvant Therapy Stage IV Gastroesophageal Junction Adenocarcinoma AJCC v8 8 222091 -NCIT:C133590 Postneoadjuvant Therapy Stage IVA Gastroesophageal Junction Adenocarcinoma AJCC v8 9 222092 -NCIT:C133591 Postneoadjuvant Therapy Stage IVB Gastroesophageal Junction Adenocarcinoma AJCC v8 9 222093 -NCIT:C150577 Metastatic Gastroesophageal Junction Adenocarcinoma 6 222094 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 7 222095 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 7 222096 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 222097 -NCIT:C150578 Unresectable Gastroesophageal Junction Adenocarcinoma 6 222098 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 7 222099 -NCIT:C153359 Recurrent Gastroesophageal Junction Adenocarcinoma 6 222100 -NCIT:C156166 Localized Gastroesophageal Junction Adenocarcinoma 6 222101 -NCIT:C162538 Refractory Gastroesophageal Junction Adenocarcinoma 6 222102 -NCIT:C9325 Adrenal Cortical Carcinoma 5 222103 -NCIT:C104030 Adrenal Cortical Carcinoma by ENSAT Stage 6 222104 -NCIT:C104031 ENSAT Stage I Adrenal Cortical Carcinoma 7 222105 -NCIT:C104032 ENSAT Stage II Adrenal Cortical Carcinoma 7 222106 -NCIT:C104033 ENSAT Stage III Adrenal Cortical Carcinoma 7 222107 -NCIT:C104034 ENSAT Stage IV Adrenal Cortical Carcinoma 7 222108 -NCIT:C141098 Adrenal Cortical Carcinoma by AJCC v7 Stage 6 222109 -NCIT:C9214 Stage I Adrenal Cortical Carcinoma AJCC v7 7 222110 -NCIT:C9215 Stage II Adrenal Cortical Carcinoma AJCC v7 7 222111 -NCIT:C9216 Stage III Adrenal Cortical Carcinoma AJCC v7 7 222112 -NCIT:C9217 Stage IV Adrenal Cortical Carcinoma AJCC v7 7 222113 -NCIT:C141100 Adrenal Cortical Carcinoma by AJCC v8 Stage 6 222114 -NCIT:C141101 Stage I Adrenal Cortical Carcinoma AJCC v8 7 222115 -NCIT:C141102 Stage II Adrenal Cortical Carcinoma AJCC v8 7 222116 -NCIT:C141103 Stage III Adrenal Cortical Carcinoma AJCC v8 7 222117 -NCIT:C141104 Stage IV Adrenal Cortical Carcinoma AJCC v8 7 222118 -NCIT:C150580 Unresectable Adrenal Cortical Carcinoma 6 222119 -NCIT:C156070 Metastatic Adrenal Cortical Carcinoma 6 222120 -NCIT:C174443 Locally Advanced Adrenal Cortical Carcinoma 7 222121 -NCIT:C191863 Advanced Adrenal Cortical Carcinoma 7 222122 -NCIT:C188036 Refractory Adrenal Cortical Carcinoma 6 222123 -NCIT:C188181 Adrenal Cortical Oncocytic Carcinoma 6 222124 -NCIT:C188182 Adrenal Cortical Myxoid Carcinoma 6 222125 -NCIT:C188183 Adrenal Cortical High Grade Carcinoma 6 222126 -NCIT:C190069 Childhood Adrenal Cortical Carcinoma 6 222127 -NCIT:C6417 Recurrent Adrenal Cortical Carcinoma 6 222128 -NCIT:C68635 Adrenal Cortical Low Grade Carcinoma 6 222129 -NCIT:C68644 Adrenal Cortical Sarcomatoid Carcinoma 6 222130 -NCIT:C9385 Renal Cell Carcinoma 5 222131 -NCIT:C100051 Renal Cell Carcinoma Associated with Neuroblastoma 6 222132 -NCIT:C126303 Tubulocystic Renal Cell Carcinoma 6 222133 -NCIT:C140322 Renal Cell Cancer by AJCC v8 Stage 6 222134 -NCIT:C140323 Stage I Renal Cell Cancer AJCC v8 7 222135 -NCIT:C140324 Stage II Renal Cell Cancer AJCC v8 7 222136 -NCIT:C140325 Stage III Renal Cell Cancer AJCC v8 7 222137 -NCIT:C140326 Stage IV Renal Cell Cancer AJCC v8 7 222138 -NCIT:C150359 Bilateral Synchronous Sporadic Renal Cell Carcinoma 6 222139 -NCIT:C150595 Metastatic Renal Cell Carcinoma 6 222140 -NCIT:C153170 Advanced Renal Cell Carcinoma 7 222141 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 8 222142 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 8 222143 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 8 222144 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 8 222145 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 8 222146 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 7 222147 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 8 222148 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 8 222149 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 7 222150 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 8 222151 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 8 222152 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 7 222153 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 8 222154 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 8 222155 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 7 222156 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 8 222157 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 8 222158 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 8 222159 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 8 222160 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 8 222161 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 8 222162 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 7 222163 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 8 222164 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 8 222165 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 7 222166 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 8 222167 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 8 222168 -NCIT:C154494 Renal Cell Carcinoma with MiT Translocations 6 222169 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 7 222170 -NCIT:C27891 TFE3-Rearranged Renal Cell Carcinoma 7 222171 -NCIT:C37872 Renal Cell Carcinoma Associated with t(X;1)(p11.2;q21) 8 222172 -NCIT:C37874 Renal Cell Carcinoma Associated with t(X;1)(p11.2;p34) 8 222173 -NCIT:C37876 Renal Cell Carcinoma Associated with t(X;17)(p11.2;q25) 8 222174 -NCIT:C39802 Renal Cell Carcinoma Associated with inv(X)(p11;q12) 8 222175 -NCIT:C37210 TFEB-Rearranged Renal Cell Carcinoma 7 222176 -NCIT:C154545 Unresectable Renal Cell Carcinoma 6 222177 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 7 222178 -NCIT:C165449 Unresectable Clear Cell Renal Cell Carcinoma 7 222179 -NCIT:C183251 Unresectable Sarcomatoid Renal Cell Carcinoma 7 222180 -NCIT:C190505 Unresectable Papillary Renal Cell Carcinoma 7 222181 -NCIT:C190508 Unresectable Unclassified Renal Cell Carcinoma 7 222182 -NCIT:C154547 Resectable Renal Cell Carcinoma 6 222183 -NCIT:C156464 Succinate Dehydrogenase-Deficient Renal Cell Carcinoma 6 222184 -NCIT:C157718 Acquired Cystic Disease-Associated Renal Cell Carcinoma 6 222185 -NCIT:C164156 Fumarate Hydratase-Deficient Renal Cell Carcinoma 6 222186 -NCIT:C165745 Refractory Renal Cell Carcinoma 6 222187 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 7 222188 -NCIT:C189249 ALK-Rearranged Renal Cell Carcinoma 6 222189 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 7 222190 -NCIT:C189254 Eosinophilic Solid and Cystic Renal Cell Carcinoma 6 222191 -NCIT:C189255 Childhood Eosinophilic Solid and Cystic Renal Cell Carcinoma 7 222192 -NCIT:C191370 Renal Cell Carcinoma, Not Otherwise Specified 6 222193 -NCIT:C191375 ELOC-Mutated Renal Cell Carcinoma 6 222194 -NCIT:C27638 Transplant-Related Renal Cell Carcinoma 6 222195 -NCIT:C27892 Unclassified Renal Cell Carcinoma 6 222196 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 7 222197 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 8 222198 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 8 222199 -NCIT:C190508 Unresectable Unclassified Renal Cell Carcinoma 7 222200 -NCIT:C27893 Sarcomatoid Renal Cell Carcinoma 6 222201 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 7 222202 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 8 222203 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 8 222204 -NCIT:C183251 Unresectable Sarcomatoid Renal Cell Carcinoma 7 222205 -NCIT:C39789 Hereditary Renal Cell Carcinoma 6 222206 -NCIT:C36260 Hereditary Clear Cell Renal Cell Carcinoma 7 222207 -NCIT:C39790 Renal Cell Carcinoma with Constitutional Chromosome 3 Translocations 7 222208 -NCIT:C51302 Hereditary Leiomyomatosis and Renal Cell Carcinoma 7 222209 -NCIT:C9222 Hereditary Papillary Renal Cell Carcinoma 7 222210 -NCIT:C4033 Clear Cell Renal Cell Carcinoma 6 222211 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 7 222212 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 8 222213 -NCIT:C157614 BAP1-Mutant Clear Cell Renal Cell Carcinoma 7 222214 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 7 222215 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 8 222216 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 8 222217 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 7 222218 -NCIT:C165449 Unresectable Clear Cell Renal Cell Carcinoma 7 222219 -NCIT:C35851 Grade 1 Clear Cell Renal Cell Carcinoma 7 222220 -NCIT:C35852 Grade 2 Clear Cell Renal Cell Carcinoma 7 222221 -NCIT:C35853 Grade 3 Clear Cell Renal Cell Carcinoma 7 222222 -NCIT:C35854 Grade 4 Clear Cell Renal Cell Carcinoma 7 222223 -NCIT:C36260 Hereditary Clear Cell Renal Cell Carcinoma 7 222224 -NCIT:C36261 Non-Hereditary Clear Cell Renal Cell Carcinoma 7 222225 -NCIT:C4146 Chromophobe Renal Cell Carcinoma 6 222226 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 7 222227 -NCIT:C155951 Chromophobe Renal Cell Carcinoma Associated with Birt-Hogg-Dube Syndrome 7 222228 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 7 222229 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 8 222230 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 8 222231 -NCIT:C27888 Classic Variant of Chromophobe Renal Cell Carcinoma 7 222232 -NCIT:C27889 Eosinophilic Variant of Chromophobe Renal Cell Carcinoma 7 222233 -NCIT:C6568 Childhood Renal Cell Carcinoma 6 222234 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 7 222235 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 7 222236 -NCIT:C189255 Childhood Eosinophilic Solid and Cystic Renal Cell Carcinoma 7 222237 -NCIT:C6975 Papillary Renal Cell Carcinoma 6 222238 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 7 222239 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 8 222240 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 8 222241 -NCIT:C190505 Unresectable Papillary Renal Cell Carcinoma 7 222242 -NCIT:C27886 Type 1 Papillary Renal Cell Carcinoma 7 222243 -NCIT:C27887 Type 2 Papillary Renal Cell Carcinoma 7 222244 -NCIT:C27890 Sporadic Papillary Renal Cell Carcinoma 7 222245 -NCIT:C9222 Hereditary Papillary Renal Cell Carcinoma 7 222246 -NCIT:C7825 Recurrent Renal Cell Carcinoma 6 222247 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 7 222248 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 8 222249 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 7 222250 -NCIT:C90343 Renal Cell Cancer by AJCC v6 Stage 6 222251 -NCIT:C4003 Stage IV Renal Cell Cancer AJCC v6 7 222252 -NCIT:C7823 Stage I Renal Cell Cancer AJCC v6 and v7 7 222253 -NCIT:C7824 Stage II Renal Cell Cancer AJCC v6 7 222254 -NCIT:C9220 Stage III Renal Cell Cancer AJCC v6 7 222255 -NCIT:C91201 Renal Cell Cancer by AJCC v7 Stage 6 222256 -NCIT:C7823 Stage I Renal Cell Cancer AJCC v6 and v7 7 222257 -NCIT:C89301 Stage II Renal Cell Cancer AJCC v7 7 222258 -NCIT:C89302 Stage III Renal Cell Cancer AJCC v7 7 222259 -NCIT:C89303 Stage IV Renal Cell Cancer AJCC v7 7 222260 -NCIT:C95397 Intramucosal Adenocarcinoma 5 222261 -NCIT:C161906 Esophageal Intramucosal Adenocarcinoma 6 222262 -NCIT:C45429 Colon Intramucosal Adenocarcinoma 6 222263 -NCIT:C27413 Adenoma of the Colon with Intramucosal Adenocarcinoma 7 222264 -NCIT:C95763 Gastric Intramucosal Adenocarcinoma 6 222265 -NCIT:C2917 Carcinoma In Situ 4 222266 -NCIT:C132783 Stage 0 Major Salivary Gland Cancer AJCC v8 5 222267 -NCIT:C139534 Anatomic Stage 0 Breast Cancer AJCC v8 5 222268 -NCIT:C2924 Breast Ductal Carcinoma In Situ 6 222269 -NCIT:C176005 Breast Ductal Carcinoma In Situ, Comedo Type 7 222270 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 7 222271 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 8 222272 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 8 222273 -NCIT:C5137 Breast Ductal Carcinoma In Situ, Non-Comedo Type 7 222274 -NCIT:C5138 Breast Ductal Carcinoma In Situ, Cribriform Pattern 7 222275 -NCIT:C66933 Breast Ductal Carcinoma In Situ, Solid Type 7 222276 -NCIT:C7949 Breast Ductal Carcinoma In Situ, High Grade 7 222277 -NCIT:C9456 Breast Ductal Carcinoma In Situ, Intermediate Grade 7 222278 -NCIT:C9457 Breast Ductal Carcinoma In Situ, Low Grade 7 222279 -NCIT:C139555 Prognostic Stage 0 Breast Cancer AJCC v8 5 222280 -NCIT:C140361 Stage 0is Renal Pelvis and Ureter Cancer AJCC v8 5 222281 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 6 222282 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 6 222283 -NCIT:C140459 Stage 0is Urethral Cancer AJCC v8 5 222284 -NCIT:C27093 Stage 0 Squamous Cell Carcinoma 5 222285 -NCIT:C133255 Stage 0 Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 6 222286 -NCIT:C133447 Clinical Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 6 222287 -NCIT:C133519 Pathologic Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 6 222288 -NCIT:C136719 Lung Squamous Cell Carcinoma In Situ 6 222289 -NCIT:C8763 Stage 0 Lung Squamous Cell Carcinoma AJCC v6 and v7 7 222290 -NCIT:C157575 Anal Intraepithelial Neoplasia 3 6 222291 -NCIT:C27790 Penile Carcinoma In Situ 6 222292 -NCIT:C28292 Squamous Cell Carcinoma In Situ of the Nipple 6 222293 -NCIT:C2906 Skin Squamous Cell Carcinoma In Situ 6 222294 -NCIT:C62571 Bowen Disease of the Skin 7 222295 -NCIT:C3639 Tracheal Carcinoma In Situ 6 222296 -NCIT:C5023 Stage 0 Esophageal Squamous Cell Carcinoma AJCC v7 6 222297 -NCIT:C6052 Stage 0 Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 6 222298 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 6 222299 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 7 222300 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 7 222301 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 6 222302 -NCIT:C8903 Stage 0 Bladder Squamous Cell Carcinoma AJCC v6 and v7 6 222303 -NCIT:C27467 Stage 0 Lung Cancer AJCC v6 and v7 5 222304 -NCIT:C9104 Stage 0 Lung Non-Small Cell Cancer AJCC v6 and v7 6 222305 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 7 222306 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 7 222307 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 7 222308 -NCIT:C35180 Digestive System Carcinoma In Situ 5 222309 -NCIT:C133402 Clinical Stage 0 Esophageal Adenocarcinoma AJCC v8 6 222310 -NCIT:C133413 Pathologic Stage 0 Esophageal Adenocarcinoma AJCC v8 6 222311 -NCIT:C133447 Clinical Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 6 222312 -NCIT:C133519 Pathologic Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 6 222313 -NCIT:C133550 Clinical Stage 0 Gastroesophageal Junction Adenocarcinoma AJCC v8 6 222314 -NCIT:C133564 Pathologic Stage 0 Gastroesophageal Junction Adenocarcinoma AJCC v8 6 222315 -NCIT:C133647 Clinical Stage 0 Gastric Cancer AJCC v8 6 222316 -NCIT:C133654 Pathologic Stage 0 Gastric Cancer AJCC v8 6 222317 -NCIT:C133795 Stage 0 Anal Cancer AJCC v8 6 222318 -NCIT:C157575 Anal Intraepithelial Neoplasia 3 7 222319 -NCIT:C133894 Stage 0 Small Intestinal Adenocarcinoma AJCC v8 6 222320 -NCIT:C134118 Stage 0 Appendix Carcinoma AJCC v8 6 222321 -NCIT:C134182 Stage 0 Colorectal Cancer AJCC v8 6 222322 -NCIT:C134271 Stage 0 Colon Cancer AJCC v8 7 222323 -NCIT:C134291 Stage 0 Rectal Cancer AJCC v8 7 222324 -NCIT:C134663 Stage 0 Gallbladder Cancer AJCC v8 6 222325 -NCIT:C134865 Stage 0 Ampulla of Vater Cancer AJCC v8 6 222326 -NCIT:C134914 Stage 0 Pancreatic Cancer AJCC v8 6 222327 -NCIT:C3637 Stage 0 Esophageal Cancer AJCC v6 6 222328 -NCIT:C4439 Stage 0 Gallbladder Cancer AJCC v6 and v7 6 222329 -NCIT:C4444 Stage 0 Ampulla of Vater Cancer AJCC v7 6 222330 -NCIT:C4593 Stage 0 Appendix Carcinoma AJCC v7 6 222331 -NCIT:C4892 Stage 0 Small Intestinal Cancer AJCC v7 6 222332 -NCIT:C5729 Stage 0 Pancreatic Cancer AJCC v6 and v7 6 222333 -NCIT:C67493 High-Grade Biliary Intraepithelial Neoplasia 6 222334 -NCIT:C7788 Stage 0 Gastric Cancer AJCC v6 and v7 6 222335 -NCIT:C4428 Gastric Cardia Carcinoma In Situ AJCC v6 and v7 7 222336 -NCIT:C4429 Gastric Fundus Carcinoma In Situ AJCC v6 and v7 7 222337 -NCIT:C4430 Gastric Body Carcinoma In Situ AJCC v6 and v7 7 222338 -NCIT:C4431 Gastric Pylorus Carcinoma In Situ AJCC v6 and v7 7 222339 -NCIT:C8400 Gastric Antrum Carcinoma In Situ AJCC v6 and v7 8 222340 -NCIT:C7794 Stage 0 Anal Canal Cancer AJCC v6 and v7 6 222341 -NCIT:C27282 Stage 0 AIDS-Related Anal Canal Cancer AJCC v6 and v7 7 222342 -NCIT:C8932 Stage 0 Colorectal Cancer AJCC v6 and v7 6 222343 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 7 222344 -NCIT:C4594 Cecum Carcinoma In Situ 8 222345 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 7 222346 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 7 222347 -NCIT:C89771 Stage 0 Esophageal Cancer AJCC v7 6 222348 -NCIT:C5023 Stage 0 Esophageal Squamous Cell Carcinoma AJCC v7 7 222349 -NCIT:C8629 Stage 0 Esophageal Adenocarcinoma AJCC v7 7 222350 -NCIT:C3640 Stage 0 Skin Cancer 5 222351 -NCIT:C2906 Skin Squamous Cell Carcinoma In Situ 6 222352 -NCIT:C62571 Bowen Disease of the Skin 7 222353 -NCIT:C5893 Stage 0 Lip Basal Cell Carcinoma AJCC v6 and v7 6 222354 -NCIT:C3641 Stage 0 Breast Cancer AJCC v6 and v7 5 222355 -NCIT:C176503 Male Breast Carcinoma In Situ 6 222356 -NCIT:C176580 Female Breast Carcinoma In Situ 6 222357 -NCIT:C2924 Breast Ductal Carcinoma In Situ 6 222358 -NCIT:C176005 Breast Ductal Carcinoma In Situ, Comedo Type 7 222359 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 7 222360 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 8 222361 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 8 222362 -NCIT:C5137 Breast Ductal Carcinoma In Situ, Non-Comedo Type 7 222363 -NCIT:C5138 Breast Ductal Carcinoma In Situ, Cribriform Pattern 7 222364 -NCIT:C66933 Breast Ductal Carcinoma In Situ, Solid Type 7 222365 -NCIT:C7949 Breast Ductal Carcinoma In Situ, High Grade 7 222366 -NCIT:C9456 Breast Ductal Carcinoma In Situ, Intermediate Grade 7 222367 -NCIT:C9457 Breast Ductal Carcinoma In Situ, Low Grade 7 222368 -NCIT:C4018 Breast Lobular Carcinoma In Situ 6 222369 -NCIT:C137839 Breast Pleomorphic Lobular Carcinoma In Situ 7 222370 -NCIT:C175949 Breast Classic Lobular Carcinoma In Situ 7 222371 -NCIT:C83170 Breast Classic Lobular Carcinoma In Situ Type A 8 222372 -NCIT:C83171 Breast Classic Lobular Carcinoma In Situ Type B 8 222373 -NCIT:C175950 Breast Florid Lobular Carcinoma In Situ 7 222374 -NCIT:C4195 Breast Ductal Carcinoma In Situ and Lobular Carcinoma In Situ 6 222375 -NCIT:C37266 Bladder Urothelial Carcinoma In Situ 5 222376 -NCIT:C140418 Stage 0is Bladder Cancer AJCC v8 6 222377 -NCIT:C3644 Stage 0is Bladder Urothelial Carcinoma AJCC v6 and v7 6 222378 -NCIT:C4000 Stage 0 Cervical Cancer AJCC v6 5 222379 -NCIT:C4123 Adenocarcinoma In Situ 5 222380 -NCIT:C133894 Stage 0 Small Intestinal Adenocarcinoma AJCC v8 6 222381 -NCIT:C134914 Stage 0 Pancreatic Cancer AJCC v8 6 222382 -NCIT:C136486 Lung Adenocarcinoma In Situ 6 222383 -NCIT:C136716 Lung Non-Mucinous Adenocarcinoma In Situ 7 222384 -NCIT:C136717 Lung Mucinous Adenocarcinoma In Situ 7 222385 -NCIT:C5729 Stage 0 Pancreatic Cancer AJCC v6 and v7 6 222386 -NCIT:C6877 Grade III Glandular Intraepithelial Neoplasia 6 222387 -NCIT:C133402 Clinical Stage 0 Esophageal Adenocarcinoma AJCC v8 7 222388 -NCIT:C133413 Pathologic Stage 0 Esophageal Adenocarcinoma AJCC v8 7 222389 -NCIT:C133550 Clinical Stage 0 Gastroesophageal Junction Adenocarcinoma AJCC v8 7 222390 -NCIT:C133564 Pathologic Stage 0 Gastroesophageal Junction Adenocarcinoma AJCC v8 7 222391 -NCIT:C2924 Breast Ductal Carcinoma In Situ 7 222392 -NCIT:C176005 Breast Ductal Carcinoma In Situ, Comedo Type 8 222393 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 8 222394 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 9 222395 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 9 222396 -NCIT:C5137 Breast Ductal Carcinoma In Situ, Non-Comedo Type 8 222397 -NCIT:C5138 Breast Ductal Carcinoma In Situ, Cribriform Pattern 8 222398 -NCIT:C66933 Breast Ductal Carcinoma In Situ, Solid Type 8 222399 -NCIT:C7949 Breast Ductal Carcinoma In Situ, High Grade 8 222400 -NCIT:C9456 Breast Ductal Carcinoma In Situ, Intermediate Grade 8 222401 -NCIT:C9457 Breast Ductal Carcinoma In Situ, Low Grade 8 222402 -NCIT:C3642 Grade III Prostatic Intraepithelial Neoplasia 7 222403 -NCIT:C40105 Stage 0 Fallopian Tube Cancer AJCC v7 7 222404 -NCIT:C126449 Serous Tubal Intraepithelial Carcinoma 8 222405 -NCIT:C4018 Breast Lobular Carcinoma In Situ 7 222406 -NCIT:C137839 Breast Pleomorphic Lobular Carcinoma In Situ 8 222407 -NCIT:C175949 Breast Classic Lobular Carcinoma In Situ 8 222408 -NCIT:C83170 Breast Classic Lobular Carcinoma In Situ Type A 9 222409 -NCIT:C83171 Breast Classic Lobular Carcinoma In Situ Type B 9 222410 -NCIT:C175950 Breast Florid Lobular Carcinoma In Situ 8 222411 -NCIT:C4195 Breast Ductal Carcinoma In Situ and Lobular Carcinoma In Situ 7 222412 -NCIT:C4520 Cervical Adenocarcinoma In Situ 7 222413 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 8 222414 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 8 222415 -NCIT:C8629 Stage 0 Esophageal Adenocarcinoma AJCC v7 7 222416 -NCIT:C7680 Adenocarcinoma In Situ in a Polyp 6 222417 -NCIT:C7678 Adenocarcinoma In Situ in Adenomatous Polyp 7 222418 -NCIT:C4144 Adenocarcinoma In Situ in Tubulovillous Adenoma 8 222419 -NCIT:C7679 Adenocarcinoma In Situ in Tubular Adenoma 8 222420 -NCIT:C8376 Adenocarcinoma In Situ in Villous Adenoma 8 222421 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 6 222422 -NCIT:C8894 Stage 0 Bladder Adenocarcinoma AJCC v6 and v7 6 222423 -NCIT:C4522 Stage 0 Vulvar Cancer AJCC v6 5 222424 -NCIT:C4531 Stage 0is Urethral Cancer AJCC v7 5 222425 -NCIT:C4942 Stage 0 Pharyngeal Cancer 5 222426 -NCIT:C132995 Stage 0 Oropharyngeal (p16-Negative) Carcinoma AJCC v8 6 222427 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 6 222428 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 7 222429 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 6 222430 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 7 222431 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 7 222432 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 6 222433 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 7 222434 -NCIT:C65163 Papillary Carcinoma In Situ 5 222435 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 6 222436 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 7 222437 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 7 222438 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 6 222439 -NCIT:C7518 Stage 0is Renal Pelvis and Ureter Cancer AJCC v7 5 222440 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 6 222441 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 6 222442 -NCIT:C7681 Carcinoma In Situ in a Polyp 5 222443 -NCIT:C7680 Adenocarcinoma In Situ in a Polyp 6 222444 -NCIT:C7678 Adenocarcinoma In Situ in Adenomatous Polyp 7 222445 -NCIT:C4144 Adenocarcinoma In Situ in Tubulovillous Adenoma 8 222446 -NCIT:C7679 Adenocarcinoma In Situ in Tubular Adenoma 8 222447 -NCIT:C8376 Adenocarcinoma In Situ in Villous Adenoma 8 222448 -NCIT:C7855 Stage 0 Vaginal Cancer AJCC v6 5 222449 -NCIT:C7939 Stage 0 Lip and Oral Cavity Cancer AJCC v6 and v7 5 222450 -NCIT:C4587 Stage 0 Oral Cavity Cancer AJCC v6 and v7 6 222451 -NCIT:C6052 Stage 0 Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 222452 -NCIT:C4588 Stage 0 Lip Cancer AJCC v6 and v7 6 222453 -NCIT:C5893 Stage 0 Lip Basal Cell Carcinoma AJCC v6 and v7 7 222454 -NCIT:C89445 Stage 0 Vulvar Cancer AJCC v7 5 222455 -NCIT:C89476 Stage 0 Vaginal Cancer AJCC v7 5 222456 -NCIT:C89550 Stage 0 Cervical Cancer AJCC v7 5 222457 -NCIT:C4520 Cervical Adenocarcinoma In Situ 6 222458 -NCIT:C180845 Human Papillomavirus-Related Cervical Adenocarcinoma In Situ 7 222459 -NCIT:C180846 Human Papillomavirus-Independent Cervical Adenocarcinoma In Situ 7 222460 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 6 222461 -NCIT:C9100 Stage 0 Laryngeal Cancer AJCC v6, v7, and V8 5 222462 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 6 222463 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 7 222464 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 7 222465 -NCIT:C91741 Middle Ear Carcinoma In Situ 5 222466 -NCIT:C2927 Papillary Carcinoma 4 222467 -NCIT:C164144 Micropapillary Carcinoma 5 222468 -NCIT:C128847 Lung Micropapillary Adenocarcinoma 6 222469 -NCIT:C172813 Invasive Pancreatic Micropapillary Adenocarcinoma 6 222470 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 6 222471 -NCIT:C27534 Digital Papillary Adenocarcinoma 6 222472 -NCIT:C36084 Invasive Breast Micropapillary Carcinoma 6 222473 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 6 222474 -NCIT:C65182 Micropapillary Transitional Cell Carcinoma 6 222475 -NCIT:C191686 Invasive Micropapillary Urothelial Carcinoma 7 222476 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 8 222477 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 222478 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 8 222479 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 222480 -NCIT:C6882 Micropapillary Serous Carcinoma 6 222481 -NCIT:C96491 Colorectal Micropapillary Adenocarcinoma 6 222482 -NCIT:C96492 Colon Micropapillary Adenocarcinoma 7 222483 -NCIT:C96493 Rectal Micropapillary Adenocarcinoma 7 222484 -NCIT:C2853 Papillary Adenocarcinoma 5 222485 -NCIT:C172813 Invasive Pancreatic Micropapillary Adenocarcinoma 6 222486 -NCIT:C180864 Cervical Micropapillary Adenocarcinoma 6 222487 -NCIT:C27254 Papillary Eccrine Carcinoma 6 222488 -NCIT:C27534 Digital Papillary Adenocarcinoma 7 222489 -NCIT:C27937 Thymic Low Grade Papillary Adenocarcinoma 6 222490 -NCIT:C3777 Papillary Cystadenocarcinoma 6 222491 -NCIT:C65204 Papillary Mucinous Cystadenocarcinoma 7 222492 -NCIT:C8377 Papillary Serous Cystadenocarcinoma 7 222493 -NCIT:C4035 Thyroid Gland Papillary Carcinoma 6 222494 -NCIT:C123903 Childhood Thyroid Gland Papillary Carcinoma 7 222495 -NCIT:C126409 Warthin-Like Variant Thyroid Gland Papillary Carcinoma 7 222496 -NCIT:C126410 Thyroid Gland Papillary Carcinoma with Fibromatosis/Fasciitis-Like/Desmoid-Type Stroma 7 222497 -NCIT:C126594 Follicular Variant Thyroid Gland Papillary Carcinoma 7 222498 -NCIT:C66850 Invasive Encapsulated Follicular Variant Thyroid Gland Papillary Carcinoma 8 222499 -NCIT:C7381 Invasive Follicular Variant Thyroid Gland Papillary Carcinoma 8 222500 -NCIT:C140960 Thyroid Gland Papillary Carcinoma by AJCC v7 Stage 7 222501 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 8 222502 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 8 222503 -NCIT:C9083 Stage IV Thyroid Gland Papillary Carcinoma AJCC v7 8 222504 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 9 222505 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 9 222506 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 9 222507 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 8 222508 -NCIT:C140976 Thyroid Gland Papillary Carcinoma by AJCC v8 Stage 7 222509 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 8 222510 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 9 222511 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 9 222512 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 8 222513 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 9 222514 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 9 222515 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 8 222516 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 8 222517 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 9 222518 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 9 222519 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 7 222520 -NCIT:C156034 Encapsulated Variant Thyroid Gland Papillary Carcinoma 7 222521 -NCIT:C156045 Spindle Cell Variant Thyroid Gland Papillary Carcinoma 7 222522 -NCIT:C156050 Hobnail Variant Thyroid Gland Papillary Carcinoma 7 222523 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 7 222524 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 7 222525 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 7 222526 -NCIT:C187644 Classic Thyroid Gland Papillary Carcinoma 7 222527 -NCIT:C35558 Tall Cell Variant Thyroid Gland Papillary Carcinoma 7 222528 -NCIT:C35830 Columnar Cell Variant Thyroid Gland Papillary Carcinoma 7 222529 -NCIT:C37304 Multicentric Thyroid Gland Papillary Carcinoma 7 222530 -NCIT:C46004 Thyroid Gland Papillary Microcarcinoma 7 222531 -NCIT:C46092 Macrofollicular Variant Thyroid Gland Papillary Carcinoma 7 222532 -NCIT:C46093 Oncocytic Variant Thyroid Gland Papillary Carcinoma 7 222533 -NCIT:C46094 Clear Cell Variant Thyroid Gland Papillary Carcinoma 7 222534 -NCIT:C46095 Solid/Trabecular Variant Thyroid Gland Papillary Carcinoma 7 222535 -NCIT:C7427 Diffuse Sclerosing Variant Thyroid Gland Papillary Carcinoma 7 222536 -NCIT:C4182 Serous Surface Papillary Carcinoma 6 222537 -NCIT:C6256 Ovarian Serous Surface Papillary Adenocarcinoma 7 222538 -NCIT:C6882 Micropapillary Serous Carcinoma 7 222539 -NCIT:C7695 Primary Peritoneal Serous Papillary Adenocarcinoma 7 222540 -NCIT:C8377 Papillary Serous Cystadenocarcinoma 7 222541 -NCIT:C54400 Nasopharyngeal Papillary Adenocarcinoma 6 222542 -NCIT:C5472 Gastric Papillary Adenocarcinoma 6 222543 -NCIT:C67560 Endolymphatic Sac Tumor 6 222544 -NCIT:C6975 Papillary Renal Cell Carcinoma 6 222545 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 7 222546 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 8 222547 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 8 222548 -NCIT:C190505 Unresectable Papillary Renal Cell Carcinoma 7 222549 -NCIT:C27886 Type 1 Papillary Renal Cell Carcinoma 7 222550 -NCIT:C27887 Type 2 Papillary Renal Cell Carcinoma 7 222551 -NCIT:C27890 Sporadic Papillary Renal Cell Carcinoma 7 222552 -NCIT:C9222 Hereditary Papillary Renal Cell Carcinoma 7 222553 -NCIT:C7438 Invasive Papillary Adenocarcinoma 6 222554 -NCIT:C36085 Invasive Breast Papillary Carcinoma 7 222555 -NCIT:C176010 Encapsulated Breast Papillary Carcinoma with Invasion 8 222556 -NCIT:C176012 Invasive Breast Solid Papillary Carcinoma 8 222557 -NCIT:C36084 Invasive Breast Micropapillary Carcinoma 8 222558 -NCIT:C7439 Breast Papillary Ductal Carcinoma In Situ with Invasion 8 222559 -NCIT:C39896 Prostate Ductal Adenocarcinoma, Papillary Pattern 7 222560 -NCIT:C5650 Lung Papillary Adenocarcinoma 7 222561 -NCIT:C128847 Lung Micropapillary Adenocarcinoma 8 222562 -NCIT:C7381 Invasive Follicular Variant Thyroid Gland Papillary Carcinoma 7 222563 -NCIT:C95967 Ampulla of Vater Invasive Papillary Adenocarcinoma 7 222564 -NCIT:C9134 Breast Papillary Carcinoma 6 222565 -NCIT:C176009 Encapsulated Breast Papillary Carcinoma 7 222566 -NCIT:C176010 Encapsulated Breast Papillary Carcinoma with Invasion 8 222567 -NCIT:C36085 Invasive Breast Papillary Carcinoma 7 222568 -NCIT:C176010 Encapsulated Breast Papillary Carcinoma with Invasion 8 222569 -NCIT:C176012 Invasive Breast Solid Papillary Carcinoma 8 222570 -NCIT:C36084 Invasive Breast Micropapillary Carcinoma 8 222571 -NCIT:C7439 Breast Papillary Ductal Carcinoma In Situ with Invasion 8 222572 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 7 222573 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 8 222574 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 8 222575 -NCIT:C6870 Breast Solid Papillary Carcinoma 7 222576 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 8 222577 -NCIT:C176012 Invasive Breast Solid Papillary Carcinoma 8 222578 -NCIT:C96491 Colorectal Micropapillary Adenocarcinoma 6 222579 -NCIT:C96492 Colon Micropapillary Adenocarcinoma 7 222580 -NCIT:C96493 Rectal Micropapillary Adenocarcinoma 7 222581 -NCIT:C4102 Papillary Squamous Cell Carcinoma 5 222582 -NCIT:C128060 Vaginal Papillary Carcinoma 6 222583 -NCIT:C164248 Warty Carcinoma 6 222584 -NCIT:C40191 Cervical Warty Carcinoma 7 222585 -NCIT:C40248 Vaginal Warty Carcinoma 7 222586 -NCIT:C40287 Vulvar Warty Carcinoma 7 222587 -NCIT:C6981 Warty Carcinoma of the Penis 7 222588 -NCIT:C3781 Verrucous Carcinoma 6 222589 -NCIT:C165465 Skin Verrucous Carcinoma 7 222590 -NCIT:C6811 Plantar Verrucous Carcinoma 8 222591 -NCIT:C27420 Esophageal Verrucous Carcinoma 7 222592 -NCIT:C27678 Human Papillomavirus-Related Verrucous Carcinoma 7 222593 -NCIT:C39832 Bladder Verrucous Carcinoma 7 222594 -NCIT:C39833 Schistosoma Hematobium-Related Bladder Verrucous Carcinoma 8 222595 -NCIT:C39874 Urethral Verrucous Carcinoma 7 222596 -NCIT:C40190 Cervical Verrucous Carcinoma 7 222597 -NCIT:C6325 Vaginal Verrucous Carcinoma 7 222598 -NCIT:C6383 Vulvar Verrucous Carcinoma 7 222599 -NCIT:C6982 Verrucous Carcinoma of the Penis 7 222600 -NCIT:C159247 Carcinoma Cuniculatum of the Penis 8 222601 -NCIT:C7470 Anal Verrucous Carcinoma 7 222602 -NCIT:C8174 Oral Cavity Verrucous Carcinoma 7 222603 -NCIT:C179894 Oral Cavity Carcinoma Cuniculatum 8 222604 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 8 222605 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 8 222606 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 8 222607 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 8 222608 -NCIT:C8188 Laryngeal Verrucous Carcinoma 7 222609 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 8 222610 -NCIT:C8189 Glottis Verrucous Carcinoma 8 222611 -NCIT:C8190 Subglottic Verrucous Carcinoma 8 222612 -NCIT:C8191 Supraglottic Verrucous Carcinoma 8 222613 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 222614 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 222615 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 222616 -NCIT:C8244 Stage IV Laryngeal Verrucous Carcinoma AJCC v7 8 222617 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 9 222618 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 9 222619 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 9 222620 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 222621 -NCIT:C40192 Cervical Papillary Squamous Cell Carcinoma 6 222622 -NCIT:C40191 Cervical Warty Carcinoma 7 222623 -NCIT:C40194 Cervical Squamotransitional Carcinoma 7 222624 -NCIT:C45502 Lung Squamous Cell Carcinoma, Papillary Variant 6 222625 -NCIT:C54335 Laryngeal Papillary Squamous Cell Carcinoma 6 222626 -NCIT:C65164 Non-Invasive Papillary Squamous Cell Carcinoma 6 222627 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 7 222628 -NCIT:C6983 Papillary Carcinoma of the Penis 6 222629 -NCIT:C103340 Papillary Carcinoma of the Penis, Not Otherwise Specified 7 222630 -NCIT:C159249 Papillary-Basaloid Carcinoma of the Penis 7 222631 -NCIT:C6981 Warty Carcinoma of the Penis 7 222632 -NCIT:C6982 Verrucous Carcinoma of the Penis 7 222633 -NCIT:C159247 Carcinoma Cuniculatum of the Penis 8 222634 -NCIT:C4122 Papillary Transitional Cell Carcinoma 5 222635 -NCIT:C6148 Renal Pelvis Papillary Urothelial Carcinoma 6 222636 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 7 222637 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 7 222638 -NCIT:C65181 Non-Invasive Papillary Transitional Cell Carcinoma 6 222639 -NCIT:C140358 Stage 0a Renal Pelvis and Ureter Cancer AJCC v8 7 222640 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 8 222641 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 8 222642 -NCIT:C158382 Bladder Non-Invasive Papillary Urothelial Carcinoma 7 222643 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 8 222644 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 8 222645 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 8 222646 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 8 222647 -NCIT:C191673 Non-Invasive Papillary Urothelial Carcinoma, Low Grade 7 222648 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 8 222649 -NCIT:C191675 Non-Invasive Papillary Urothelial Carcinoma, High Grade 7 222650 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 8 222651 -NCIT:C7517 Stage 0a Renal Pelvis and Ureter Cancer AJCC v7 7 222652 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 8 222653 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 8 222654 -NCIT:C65182 Micropapillary Transitional Cell Carcinoma 6 222655 -NCIT:C191686 Invasive Micropapillary Urothelial Carcinoma 7 222656 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 8 222657 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 222658 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 8 222659 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 222660 -NCIT:C7383 Bladder Papillary Urothelial Carcinoma 6 222661 -NCIT:C158382 Bladder Non-Invasive Papillary Urothelial Carcinoma 7 222662 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 8 222663 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 8 222664 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 8 222665 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 8 222666 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 7 222667 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 222668 -NCIT:C65163 Papillary Carcinoma In Situ 5 222669 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 6 222670 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 7 222671 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 7 222672 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 6 222673 -NCIT:C2929 Squamous Cell Carcinoma 4 222674 -NCIT:C154700 Transplant-Related Squamous Cell Carcinoma 5 222675 -NCIT:C27636 Transplant-Related Skin Squamous Cell Carcinoma 6 222676 -NCIT:C162486 Paratesticular Squamous Cell Carcinoma 5 222677 -NCIT:C161634 Seminal Vesicle Squamous Cell Carcinoma 6 222678 -NCIT:C162652 Recurrent Squamous Cell Carcinoma 5 222679 -NCIT:C133709 Recurrent Head and Neck Squamous Cell Carcinoma 6 222680 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 222681 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 222682 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 222683 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 222684 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 222685 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 222686 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 222687 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 222688 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 222689 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 7 222690 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 222691 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 222692 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 222693 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 222694 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 222695 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 222696 -NCIT:C176682 Locally Recurrent Head and Neck Squamous Cell Carcinoma 7 222697 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 7 222698 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 222699 -NCIT:C136649 Recurrent Cervical Squamous Cell Carcinoma 6 222700 -NCIT:C143012 Recurrent Skin Squamous Cell Carcinoma 6 222701 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 222702 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 7 222703 -NCIT:C165737 Locally Recurrent Skin Squamous Cell Carcinoma 7 222704 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 6 222705 -NCIT:C169102 Recurrent Anal Squamous Cell Carcinoma 6 222706 -NCIT:C175360 Recurrent Anal Canal Squamous Cell Carcinoma 7 222707 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 8 222708 -NCIT:C174200 Recurrent Vulvar Squamous Cell Carcinoma 6 222709 -NCIT:C185302 Recurrent Vaginal Squamous Cell Carcinoma 6 222710 -NCIT:C5014 Recurrent Lung Squamous Cell Carcinoma 6 222711 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 7 222712 -NCIT:C8633 Recurrent Esophageal Squamous Cell Carcinoma 6 222713 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 6 222714 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 6 222715 -NCIT:C164250 Human Papillomavirus-Negative Squamous Cell Carcinoma 5 222716 -NCIT:C173414 Oropharyngeal Human Papillomavirus-Negative Squamous Cell Carcinoma 6 222717 -NCIT:C180841 Human Papillomavirus-Independent Cervical Squamous Cell Carcinoma 6 222718 -NCIT:C180919 Human Papillomavirus-Independent Vaginal Squamous Cell Carcinoma 6 222719 -NCIT:C181903 Human Papillomavirus-Independent Vulvar Squamous Cell Carcinoma 6 222720 -NCIT:C171605 Refractory Squamous Cell Carcinoma 5 222721 -NCIT:C148152 Refractory Head and Neck Squamous Cell Carcinoma 6 222722 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 7 222723 -NCIT:C148383 Refractory Laryngeal Squamous Cell Carcinoma 7 222724 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 7 222725 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 7 222726 -NCIT:C148401 Refractory Sinonasal Squamous Cell Carcinoma 7 222727 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 222728 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 222729 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 6 222730 -NCIT:C165735 Refractory Skin Squamous Cell Carcinoma 6 222731 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 222732 -NCIT:C171606 Refractory Esophageal Squamous Cell Carcinoma 6 222733 -NCIT:C173331 Refractory Lung Squamous Cell Carcinoma 6 222734 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 7 222735 -NCIT:C173334 Refractory Anal Canal Squamous Cell Carcinoma 6 222736 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 6 222737 -NCIT:C179207 Refractory Ovarian Squamous Cell Carcinoma 6 222738 -NCIT:C181034 Refractory Cervical Squamous Cell Carcinoma 6 222739 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 7 222740 -NCIT:C185303 Refractory Vaginal Squamous Cell Carcinoma 6 222741 -NCIT:C185304 Refractory Vulvar Squamous Cell Carcinoma 6 222742 -NCIT:C173813 Pancreatic Squamous Cell Carcinoma 5 222743 -NCIT:C190771 Metastatic Pancreatic Squamous Cell Carcinoma 6 222744 -NCIT:C180915 Vaginal Squamous Cell Carcinoma 5 222745 -NCIT:C128060 Vaginal Papillary Carcinoma 6 222746 -NCIT:C180917 Human Papillomavirus-Related Vaginal Squamous Cell Carcinoma 6 222747 -NCIT:C40248 Vaginal Warty Carcinoma 7 222748 -NCIT:C180919 Human Papillomavirus-Independent Vaginal Squamous Cell Carcinoma 6 222749 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 6 222750 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 7 222751 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 8 222752 -NCIT:C185302 Recurrent Vaginal Squamous Cell Carcinoma 6 222753 -NCIT:C185303 Refractory Vaginal Squamous Cell Carcinoma 6 222754 -NCIT:C40243 Vaginal Keratinizing Squamous Cell Carcinoma 6 222755 -NCIT:C40244 Vaginal Non-Keratinizing Squamous Cell Carcinoma 6 222756 -NCIT:C40245 Vaginal Basaloid Carcinoma 6 222757 -NCIT:C6325 Vaginal Verrucous Carcinoma 6 222758 -NCIT:C7736 Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 6 222759 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 7 222760 -NCIT:C191749 Squamous Cell Carcinoma of the Urinary Tract 5 222761 -NCIT:C4031 Bladder Squamous Cell Carcinoma 6 222762 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 7 222763 -NCIT:C27768 Schistosoma Hematobium-Related Bladder Squamous Cell Carcinoma 7 222764 -NCIT:C39833 Schistosoma Hematobium-Related Bladder Verrucous Carcinoma 8 222765 -NCIT:C39832 Bladder Verrucous Carcinoma 7 222766 -NCIT:C39833 Schistosoma Hematobium-Related Bladder Verrucous Carcinoma 8 222767 -NCIT:C39845 Urachal Squamous Cell Carcinoma 7 222768 -NCIT:C4994 Stage II Bladder Squamous Cell Carcinoma AJCC v6 and v7 7 222769 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 7 222770 -NCIT:C8903 Stage 0 Bladder Squamous Cell Carcinoma AJCC v6 and v7 7 222771 -NCIT:C8904 Stage I Squamous Cell Carcinoma of the Bladder AJCC v6 and v7 7 222772 -NCIT:C8905 Stage III Bladder Squamous Cell Carcinoma AJCC v6 and v7 7 222773 -NCIT:C8906 Stage IV Bladder Squamous Cell Carcinoma AJCC v7 7 222774 -NCIT:C27084 Spindle Cell Squamous Cell Carcinoma 5 222775 -NCIT:C129289 Gingival Spindle Cell Carcinoma 6 222776 -NCIT:C173079 Sinonasal Spindle Cell Squamous Cell Carcinoma 6 222777 -NCIT:C174398 Conjunctival Spindle Cell Carcinoma 6 222778 -NCIT:C40358 Breast Squamous Cell Carcinoma, Spindle Cell Variant 6 222779 -NCIT:C4666 Skin Spindle Cell Squamous Cell Carcinoma 6 222780 -NCIT:C54336 Laryngeal Squamous Cell Carcinoma, Spindle Cell Variant 6 222781 -NCIT:C6984 Sarcomatoid Carcinoma of the Penis 6 222782 -NCIT:C95608 Esophageal Spindle Cell Carcinoma 6 222783 -NCIT:C27093 Stage 0 Squamous Cell Carcinoma 5 222784 -NCIT:C133255 Stage 0 Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 6 222785 -NCIT:C133447 Clinical Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 6 222786 -NCIT:C133519 Pathologic Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 6 222787 -NCIT:C136719 Lung Squamous Cell Carcinoma In Situ 6 222788 -NCIT:C8763 Stage 0 Lung Squamous Cell Carcinoma AJCC v6 and v7 7 222789 -NCIT:C157575 Anal Intraepithelial Neoplasia 3 6 222790 -NCIT:C27790 Penile Carcinoma In Situ 6 222791 -NCIT:C28292 Squamous Cell Carcinoma In Situ of the Nipple 6 222792 -NCIT:C2906 Skin Squamous Cell Carcinoma In Situ 6 222793 -NCIT:C62571 Bowen Disease of the Skin 7 222794 -NCIT:C3639 Tracheal Carcinoma In Situ 6 222795 -NCIT:C5023 Stage 0 Esophageal Squamous Cell Carcinoma AJCC v7 6 222796 -NCIT:C6052 Stage 0 Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 6 222797 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 6 222798 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 7 222799 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 7 222800 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 6 222801 -NCIT:C8903 Stage 0 Bladder Squamous Cell Carcinoma AJCC v6 and v7 6 222802 -NCIT:C27417 Ampulla of Vater Squamous Cell Carcinoma 5 222803 -NCIT:C27683 Human Papillomavirus-Related Squamous Cell Carcinoma 5 222804 -NCIT:C171023 Human Papillomavirus-Related Mucosal Head and Neck Squamous Cell Carcinoma 6 222805 -NCIT:C173078 Sinonasal Human Papillomavirus-Related Carcinoma with Adenoid Cystic-Like Features 7 222806 -NCIT:C87055 Oropharyngeal Human Papillomavirus-Positive Squamous Cell Carcinoma 7 222807 -NCIT:C180917 Human Papillomavirus-Related Vaginal Squamous Cell Carcinoma 6 222808 -NCIT:C40248 Vaginal Warty Carcinoma 7 222809 -NCIT:C187051 Human Papillomavirus-Related Head and Neck Squamous Cell Carcinoma of Unknown Primary 6 222810 -NCIT:C27676 Human Papillomavirus-Related Cervical Squamous Cell Carcinoma 6 222811 -NCIT:C40192 Cervical Papillary Squamous Cell Carcinoma 7 222812 -NCIT:C40191 Cervical Warty Carcinoma 8 222813 -NCIT:C40194 Cervical Squamotransitional Carcinoma 8 222814 -NCIT:C27678 Human Papillomavirus-Related Verrucous Carcinoma 6 222815 -NCIT:C27679 Human Papillomavirus-Related Vulvar Squamous Cell Carcinoma 6 222816 -NCIT:C40287 Vulvar Warty Carcinoma 7 222817 -NCIT:C27680 Human Papillomavirus-Related Esophageal Squamous Cell Carcinoma 6 222818 -NCIT:C27681 Human Papillomavirus-Related Anal Squamous Cell Carcinoma 6 222819 -NCIT:C27682 Human Papillomavirus-Related Squamous Cell Carcinoma of the Penis 6 222820 -NCIT:C159250 Warty-Basaloid Carcinoma of the Penis 7 222821 -NCIT:C159251 Clear Cell Squamous Cell Carcinoma of the Penis 7 222822 -NCIT:C159252 Lymphoepithelioma-Like Carcinoma of the Penis 7 222823 -NCIT:C6980 Basaloid Squamous Cell Carcinoma of the Penis 7 222824 -NCIT:C159249 Papillary-Basaloid Carcinoma of the Penis 8 222825 -NCIT:C6981 Warty Carcinoma of the Penis 7 222826 -NCIT:C39862 Human Papillomavirus-Related Urethral Squamous Cell Carcinoma 6 222827 -NCIT:C34447 Head and Neck Squamous Cell Carcinoma 5 222828 -NCIT:C102872 Pharyngeal Squamous Cell Carcinoma 6 222829 -NCIT:C167265 Nasopharyngeal Squamous Cell Carcinoma 7 222830 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 8 222831 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 222832 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 222833 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 222834 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 222835 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 222836 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 222837 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 222838 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 222839 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 8 222840 -NCIT:C54360 Nasopharyngeal Basaloid Carcinoma 8 222841 -NCIT:C7373 Nasopharyngeal Nonkeratinizing Carcinoma 8 222842 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 222843 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 222844 -NCIT:C54389 Nasopharyngeal Differentiated Carcinoma 9 222845 -NCIT:C8023 Nasopharyngeal Undifferentiated Carcinoma 9 222846 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 222847 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 10 222848 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 222849 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 222850 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 222851 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 222852 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 222853 -NCIT:C7992 Nasopharyngeal Keratinizing Squamous Cell Carcinoma 8 222854 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 222855 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 9 222856 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 222857 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 222858 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 222859 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 222860 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 222861 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 222862 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 222863 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 222864 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 7 222865 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 8 222866 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 222867 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 222868 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 222869 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 8 222870 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 222871 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 222872 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 222873 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 222874 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 222875 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 8 222876 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 222877 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 222878 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 222879 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 222880 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 222881 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 222882 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 7 222883 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 222884 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 222885 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 222886 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 222887 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 222888 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 222889 -NCIT:C35693 Posterior Pharyngeal Wall Squamous Cell Carcinoma 7 222890 -NCIT:C4043 Hypopharyngeal Squamous Cell Carcinoma 7 222891 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 8 222892 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 8 222893 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 222894 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 222895 -NCIT:C172646 Unresectable Hypopharyngeal Squamous Cell Carcinoma 8 222896 -NCIT:C4943 Pyriform Fossa Squamous Cell Carcinoma 8 222897 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 8 222898 -NCIT:C8185 Postcricoid Squamous Cell Carcinoma 8 222899 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 8 222900 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 8 222901 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 8 222902 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 8 222903 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 222904 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 222905 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 222906 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 222907 -NCIT:C8181 Oropharyngeal Squamous Cell Carcinoma 7 222908 -NCIT:C126750 Oropharyngeal Poorly Differentiated Carcinoma 8 222909 -NCIT:C126751 Oropharyngeal Basaloid Carcinoma 8 222910 -NCIT:C147906 Oropharyngeal p16INK4a-Negative Squamous Cell Carcinoma 8 222911 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 8 222912 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 8 222913 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 222914 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 222915 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 222916 -NCIT:C162787 Resectable Oropharyngeal Squamous Cell Carcinoma 8 222917 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 9 222918 -NCIT:C162833 Unresectable Oropharyngeal Squamous Cell Carcinoma 8 222919 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 9 222920 -NCIT:C173414 Oropharyngeal Human Papillomavirus-Negative Squamous Cell Carcinoma 8 222921 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 8 222922 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 8 222923 -NCIT:C68610 Oropharyngeal Undifferentiated Carcinoma 8 222924 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 9 222925 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 9 222926 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 9 222927 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 9 222928 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 222929 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 222930 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 222931 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 222932 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 9 222933 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 9 222934 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 9 222935 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 9 222936 -NCIT:C8183 Tonsillar Squamous Cell Carcinoma 8 222937 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 9 222938 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 8 222939 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 9 222940 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 8 222941 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 9 222942 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 8 222943 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 9 222944 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 8 222945 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 9 222946 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 222947 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 222948 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 222949 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 9 222950 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 222951 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 9 222952 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 222953 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 9 222954 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 222955 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 222956 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 222957 -NCIT:C87055 Oropharyngeal Human Papillomavirus-Positive Squamous Cell Carcinoma 8 222958 -NCIT:C132012 Resectable Head and Neck Squamous Cell Carcinoma 6 222959 -NCIT:C162787 Resectable Oropharyngeal Squamous Cell Carcinoma 7 222960 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 8 222961 -NCIT:C162943 Resectable Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 222962 -NCIT:C133252 Cutaneous Squamous Cell Carcinoma of the Head and Neck 6 222963 -NCIT:C133253 Cutaneous Squamous Cell Carcinoma of the Head and Neck by AJCC v8 Stage 7 222964 -NCIT:C133255 Stage 0 Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 222965 -NCIT:C133256 Stage I Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 222966 -NCIT:C133257 Stage II Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 222967 -NCIT:C133258 Stage III Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 222968 -NCIT:C133259 Stage IV Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 222969 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 222970 -NCIT:C162943 Resectable Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 222971 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 222972 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 222973 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 222974 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 222975 -NCIT:C6083 External Ear Squamous Cell Carcinoma 7 222976 -NCIT:C133709 Recurrent Head and Neck Squamous Cell Carcinoma 6 222977 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 222978 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 222979 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 222980 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 222981 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 222982 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 222983 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 222984 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 222985 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 222986 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 7 222987 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 222988 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 222989 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 222990 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 222991 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 222992 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 222993 -NCIT:C176682 Locally Recurrent Head and Neck Squamous Cell Carcinoma 7 222994 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 7 222995 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 222996 -NCIT:C136427 Unresectable Head and Neck Squamous Cell Carcinoma 6 222997 -NCIT:C162833 Unresectable Oropharyngeal Squamous Cell Carcinoma 7 222998 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 8 222999 -NCIT:C172644 Unresectable Oral Cavity Squamous Cell Carcinoma 7 223000 -NCIT:C172645 Unresectable Laryngeal Squamous Cell Carcinoma 7 223001 -NCIT:C172646 Unresectable Hypopharyngeal Squamous Cell Carcinoma 7 223002 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 7 223003 -NCIT:C172651 Unresectable Salivary Gland Squamous Cell Carcinoma 7 223004 -NCIT:C176513 Unresectable Sinonasal Squamous Cell Carcinoma 7 223005 -NCIT:C172648 Unresectable Paranasal Sinus Squamous Cell Carcinoma 8 223006 -NCIT:C176514 Unresectable Nasal Cavity Squamous Cell Carcinoma 8 223007 -NCIT:C148152 Refractory Head and Neck Squamous Cell Carcinoma 6 223008 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 7 223009 -NCIT:C148383 Refractory Laryngeal Squamous Cell Carcinoma 7 223010 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 7 223011 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 7 223012 -NCIT:C148401 Refractory Sinonasal Squamous Cell Carcinoma 7 223013 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 223014 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 223015 -NCIT:C148153 Metastatic Head and Neck Squamous Cell Carcinoma 6 223016 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 7 223017 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 223018 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 223019 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 223020 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 223021 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 223022 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 223023 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 223024 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 7 223025 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 223026 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 223027 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 7 223028 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 223029 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 223030 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 7 223031 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 7 223032 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 223033 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 223034 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 223035 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 8 223036 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 9 223037 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 223038 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 223039 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 8 223040 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 223041 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 223042 -NCIT:C162882 Metastatic Sinonasal Squamous Cell Carcinoma 7 223043 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 223044 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 223045 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 223046 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 223047 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 223048 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 223049 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 223050 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 223051 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 223052 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 223053 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 7 223054 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 7 223055 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 8 223056 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 223057 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 223058 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 223059 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 8 223060 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 223061 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 223062 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 223063 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 223064 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 223065 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 8 223066 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 223067 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 223068 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 223069 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 223070 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 223071 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 223072 -NCIT:C162770 ASPH-Positive Head and Neck Squamous Cell Carcinoma 6 223073 -NCIT:C171023 Human Papillomavirus-Related Mucosal Head and Neck Squamous Cell Carcinoma 6 223074 -NCIT:C173078 Sinonasal Human Papillomavirus-Related Carcinoma with Adenoid Cystic-Like Features 7 223075 -NCIT:C87055 Oropharyngeal Human Papillomavirus-Positive Squamous Cell Carcinoma 7 223076 -NCIT:C37290 Head and Neck Basaloid Carcinoma 6 223077 -NCIT:C126751 Oropharyngeal Basaloid Carcinoma 7 223078 -NCIT:C129873 Floor of Mouth Basaloid Squamous Cell Carcinoma 7 223079 -NCIT:C54334 Laryngeal Basaloid Carcinoma 7 223080 -NCIT:C54360 Nasopharyngeal Basaloid Carcinoma 7 223081 -NCIT:C4044 Laryngeal Squamous Cell Carcinoma 6 223082 -NCIT:C148383 Refractory Laryngeal Squamous Cell Carcinoma 7 223083 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 7 223084 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 223085 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 223086 -NCIT:C172645 Unresectable Laryngeal Squamous Cell Carcinoma 7 223087 -NCIT:C4945 Supraglottic Squamous Cell Carcinoma 7 223088 -NCIT:C181714 Epiglottic Squamous Cell Carcinoma 8 223089 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 9 223090 -NCIT:C8191 Supraglottic Verrucous Carcinoma 8 223091 -NCIT:C54334 Laryngeal Basaloid Carcinoma 7 223092 -NCIT:C54335 Laryngeal Papillary Squamous Cell Carcinoma 7 223093 -NCIT:C54336 Laryngeal Squamous Cell Carcinoma, Spindle Cell Variant 7 223094 -NCIT:C54337 Laryngeal Acantholytic Squamous Cell Carcinoma 7 223095 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 7 223096 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 8 223097 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 8 223098 -NCIT:C8186 Glottic Squamous Cell Carcinoma 7 223099 -NCIT:C8189 Glottis Verrucous Carcinoma 8 223100 -NCIT:C8187 Subglottic Squamous Cell Carcinoma 7 223101 -NCIT:C8190 Subglottic Verrucous Carcinoma 8 223102 -NCIT:C8188 Laryngeal Verrucous Carcinoma 7 223103 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 8 223104 -NCIT:C8189 Glottis Verrucous Carcinoma 8 223105 -NCIT:C8190 Subglottic Verrucous Carcinoma 8 223106 -NCIT:C8191 Supraglottic Verrucous Carcinoma 8 223107 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 223108 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 223109 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 223110 -NCIT:C8244 Stage IV Laryngeal Verrucous Carcinoma AJCC v7 8 223111 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 9 223112 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 9 223113 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 9 223114 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 223115 -NCIT:C8237 Stage I Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 7 223116 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 223117 -NCIT:C8239 Stage II Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 7 223118 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 223119 -NCIT:C8241 Stage III Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 7 223120 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 223121 -NCIT:C8243 Stage IV Laryngeal Squamous Cell Carcinoma AJCC v7 7 223122 -NCIT:C6122 Stage IVA Laryngeal Squamous Cell Carcinoma AJCC v7 8 223123 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 9 223124 -NCIT:C6123 Stage IVB Laryngeal Squamous Cell Carcinoma AJCC v7 8 223125 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 9 223126 -NCIT:C6124 Stage IVC Laryngeal Squamous Cell Carcinoma AJCC v7 8 223127 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 9 223128 -NCIT:C8244 Stage IV Laryngeal Verrucous Carcinoma AJCC v7 8 223129 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 9 223130 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 9 223131 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 9 223132 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 7 223133 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 223134 -NCIT:C42690 Lip and Oral Cavity Squamous Cell Carcinoma 6 223135 -NCIT:C115057 Stage I Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 223136 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 223137 -NCIT:C115058 Stage II Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 223138 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 223139 -NCIT:C115059 Stage III Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 223140 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 223141 -NCIT:C115060 Stage IV Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 223142 -NCIT:C115061 Stage IVA Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 223143 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 223144 -NCIT:C115062 Stage IVB Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 223145 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 223146 -NCIT:C115063 Stage IVC Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 223147 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 223148 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 223149 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 223150 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 223151 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 223152 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 223153 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 223154 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 223155 -NCIT:C4042 Lip Squamous Cell Carcinoma 7 223156 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 223157 -NCIT:C4833 Oral Cavity Squamous Cell Carcinoma 7 223158 -NCIT:C129857 Gingival Squamous Cell Carcinoma 8 223159 -NCIT:C129289 Gingival Spindle Cell Carcinoma 9 223160 -NCIT:C8171 Lower Gingival Squamous Cell Carcinoma 9 223161 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 10 223162 -NCIT:C8172 Retromolar Trigone Squamous Cell Carcinoma 9 223163 -NCIT:C8173 Upper Gingival Squamous Cell Carcinoma 9 223164 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 10 223165 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 8 223166 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 223167 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 223168 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 223169 -NCIT:C170774 Alveolar Ridge Squamous Cell Carcinoma 8 223170 -NCIT:C170775 Upper Alveolar Ridge Squamous Cell Carcinoma 9 223171 -NCIT:C170776 Lower Alveolar Ridge Squamous Cell Carcinoma 9 223172 -NCIT:C172644 Unresectable Oral Cavity Squamous Cell Carcinoma 8 223173 -NCIT:C4040 Buccal Mucosa Squamous Cell Carcinoma 8 223174 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 9 223175 -NCIT:C4041 Floor of Mouth Squamous Cell Carcinoma 8 223176 -NCIT:C129873 Floor of Mouth Basaloid Squamous Cell Carcinoma 9 223177 -NCIT:C4648 Tongue Squamous Cell Carcinoma 8 223178 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 223179 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 223180 -NCIT:C4649 Palate Squamous Cell Carcinoma 8 223181 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 223182 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 223183 -NCIT:C54295 Primary Intraosseous Squamous Cell Carcinoma 8 223184 -NCIT:C54303 Primary Intraosseous Squamous Cell Carcinoma Derived From Keratocystic Odontogenic Tumor 9 223185 -NCIT:C7491 Primary Intraosseous Squamous Cell Carcinoma-Solid Type 9 223186 -NCIT:C7498 Keratinizing Primary Intraosseous Squamous Cell Carcinoma-Solid Type 10 223187 -NCIT:C7499 Non-Keratinizing Primary Intraosseous Squamous Cell Carcinoma -Solid Type 10 223188 -NCIT:C7500 Primary Intraosseous Squamous Cell Carcinoma Derived From Odontogenic Cyst 9 223189 -NCIT:C6052 Stage 0 Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 223190 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 223191 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 223192 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 223193 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 223194 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 223195 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 223196 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 223197 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 223198 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 223199 -NCIT:C8174 Oral Cavity Verrucous Carcinoma 8 223200 -NCIT:C179894 Oral Cavity Carcinoma Cuniculatum 9 223201 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 9 223202 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 9 223203 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 9 223204 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 223205 -NCIT:C54283 Head and Neck Keratinizing Squamous Cell Carcinoma 6 223206 -NCIT:C173077 Sinonasal Keratinizing Squamous Cell Carcinoma 7 223207 -NCIT:C54284 Paranasal Sinus Keratinizing Squamous Cell Carcinoma 8 223208 -NCIT:C54285 Nasal Cavity Keratinizing Squamous Cell Carcinoma 8 223209 -NCIT:C6083 External Ear Squamous Cell Carcinoma 7 223210 -NCIT:C6086 Middle Ear Squamous Cell Carcinoma 7 223211 -NCIT:C7498 Keratinizing Primary Intraosseous Squamous Cell Carcinoma-Solid Type 7 223212 -NCIT:C7992 Nasopharyngeal Keratinizing Squamous Cell Carcinoma 7 223213 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 8 223214 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 8 223215 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 8 223216 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 8 223217 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 8 223218 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 8 223219 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 223220 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 223221 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 223222 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 8 223223 -NCIT:C68611 Sinonasal Squamous Cell Carcinoma 6 223224 -NCIT:C115070 Stage I Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 7 223225 -NCIT:C115071 Stage II Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 7 223226 -NCIT:C115072 Stage III Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 7 223227 -NCIT:C115073 Stage IV Sinonasal Squamous Cell Carcinoma AJCC v7 7 223228 -NCIT:C115074 Stage IVA Sinonasal Squamous Cell Carcinoma AJCC v7 8 223229 -NCIT:C115075 Stage IVB Sinonasal Squamous Cell Carcinoma AJCC v7 8 223230 -NCIT:C115076 Stage IVC Sinonasal Squamous Cell Carcinoma AJCC v7 8 223231 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 223232 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 223233 -NCIT:C148401 Refractory Sinonasal Squamous Cell Carcinoma 7 223234 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 223235 -NCIT:C162882 Metastatic Sinonasal Squamous Cell Carcinoma 7 223236 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 223237 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 223238 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 223239 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 223240 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 223241 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 223242 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 223243 -NCIT:C173077 Sinonasal Keratinizing Squamous Cell Carcinoma 7 223244 -NCIT:C54284 Paranasal Sinus Keratinizing Squamous Cell Carcinoma 8 223245 -NCIT:C54285 Nasal Cavity Keratinizing Squamous Cell Carcinoma 8 223246 -NCIT:C173079 Sinonasal Spindle Cell Squamous Cell Carcinoma 7 223247 -NCIT:C176513 Unresectable Sinonasal Squamous Cell Carcinoma 7 223248 -NCIT:C172648 Unresectable Paranasal Sinus Squamous Cell Carcinoma 8 223249 -NCIT:C176514 Unresectable Nasal Cavity Squamous Cell Carcinoma 8 223250 -NCIT:C54287 Sinonasal Non-Keratinizing Squamous Cell Carcinoma 7 223251 -NCIT:C173078 Sinonasal Human Papillomavirus-Related Carcinoma with Adenoid Cystic-Like Features 8 223252 -NCIT:C173080 Sinonasal Lymphoepithelial Carcinoma 8 223253 -NCIT:C8192 Nasal Cavity Squamous Cell Carcinoma 7 223254 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 223255 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 223256 -NCIT:C176514 Unresectable Nasal Cavity Squamous Cell Carcinoma 8 223257 -NCIT:C54285 Nasal Cavity Keratinizing Squamous Cell Carcinoma 8 223258 -NCIT:C8193 Paranasal Sinus Squamous Cell Carcinoma 7 223259 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 223260 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 223261 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 223262 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 223263 -NCIT:C172648 Unresectable Paranasal Sinus Squamous Cell Carcinoma 8 223264 -NCIT:C54284 Paranasal Sinus Keratinizing Squamous Cell Carcinoma 8 223265 -NCIT:C6064 Maxillary Sinus Squamous Cell Carcinoma 8 223266 -NCIT:C6065 Ethmoid Sinus Squamous Cell Carcinoma 8 223267 -NCIT:C6066 Sphenoid Sinus Squamous Cell Carcinoma 8 223268 -NCIT:C6067 Frontal Sinus Squamous Cell Carcinoma 8 223269 -NCIT:C7991 Salivary Gland Squamous Cell Carcinoma 6 223270 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 7 223271 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 223272 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 223273 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 223274 -NCIT:C172651 Unresectable Salivary Gland Squamous Cell Carcinoma 7 223275 -NCIT:C181161 Major Salivary Gland Squamous Cell Carcinoma 7 223276 -NCIT:C5942 Parotid Gland Squamous Cell Carcinoma 8 223277 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 9 223278 -NCIT:C5943 Submandibular Gland Squamous Cell Carcinoma 8 223279 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 9 223280 -NCIT:C5959 Minor Salivary Gland Squamous Cell Carcinoma 7 223281 -NCIT:C8022 Salivary Gland Poorly Differentiated Squamous Cell Carcinoma 7 223282 -NCIT:C3493 Lung Squamous Cell Carcinoma 5 223283 -NCIT:C133254 Lung Non-Small Cell Squamous Carcinoma 6 223284 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 7 223285 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 223286 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 223287 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 223288 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 7 223289 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 7 223290 -NCIT:C171612 Unresectable Lung Non-Small Cell Squamous Carcinoma 7 223291 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 8 223292 -NCIT:C45502 Lung Squamous Cell Carcinoma, Papillary Variant 7 223293 -NCIT:C45503 Lung Squamous Cell Carcinoma, Clear Cell Variant 7 223294 -NCIT:C136494 Lung Squamous Cell Carcinoma by AJCC v7 Stage 6 223295 -NCIT:C8763 Stage 0 Lung Squamous Cell Carcinoma AJCC v6 and v7 7 223296 -NCIT:C8764 Stage I Lung Squamous Cell Carcinoma AJCC v7 7 223297 -NCIT:C6687 Stage IA Lung Squamous Cell Carcinoma AJCC v7 8 223298 -NCIT:C6692 Stage IB Lung Squamous Cell Carcinoma AJCC v7 8 223299 -NCIT:C8765 Stage II Lung Squamous Cell Carcinoma AJCC v7 7 223300 -NCIT:C6688 Stage IIA Lung Squamous Cell Carcinoma AJCC v7 8 223301 -NCIT:C6691 Stage IIB Lung Squamous Cell Carcinoma AJCC v7 8 223302 -NCIT:C8766 Stage III Lung Squamous Cell Carcinoma AJCC v7 7 223303 -NCIT:C6689 Stage IIIA Lung Squamous Cell Carcinoma AJCC v7 8 223304 -NCIT:C6690 Stage IIIB Lung Squamous Cell Carcinoma AJCC v7 8 223305 -NCIT:C8767 Stage IV Lung Squamous Cell Carcinoma AJCC v7 7 223306 -NCIT:C136713 Lung Keratinizing Squamous Cell Carcinoma 6 223307 -NCIT:C136714 Lung Non-Keratinizing Squamous Cell Carcinoma 6 223308 -NCIT:C136719 Lung Squamous Cell Carcinoma In Situ 6 223309 -NCIT:C8763 Stage 0 Lung Squamous Cell Carcinoma AJCC v6 and v7 7 223310 -NCIT:C156092 Metastatic Lung Squamous Cell Carcinoma 6 223311 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 7 223312 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 223313 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 223314 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 223315 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 7 223316 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 223317 -NCIT:C173331 Refractory Lung Squamous Cell Carcinoma 6 223318 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 7 223319 -NCIT:C190953 Resectable Lung Squamous Cell Carcinoma 6 223320 -NCIT:C45504 Lung Squamous Cell Carcinoma, Small Cell Variant 6 223321 -NCIT:C45507 Lung Basaloid Squamous Cell Carcinoma 6 223322 -NCIT:C5014 Recurrent Lung Squamous Cell Carcinoma 6 223323 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 7 223324 -NCIT:C6686 Occult Lung Squamous Cell Carcinoma 6 223325 -NCIT:C40093 Ovarian Squamous Cell Carcinoma 5 223326 -NCIT:C179207 Refractory Ovarian Squamous Cell Carcinoma 6 223327 -NCIT:C4024 Esophageal Squamous Cell Carcinoma 5 223328 -NCIT:C133442 Esophageal Squamous Cell Carcinoma by AJCC v7 Stage 6 223329 -NCIT:C5019 Stage IV Esophageal Squamous Cell Carcinoma AJCC v7 7 223330 -NCIT:C5020 Stage III Esophageal Squamous Cell Carcinoma AJCC v7 7 223331 -NCIT:C87787 Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v7 8 223332 -NCIT:C87788 Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v7 8 223333 -NCIT:C87789 Stage IIIC Esophageal Squamous Cell Carcinoma AJCC v7 8 223334 -NCIT:C5021 Stage II Esophageal Squamous Cell Carcinoma AJCC v7 7 223335 -NCIT:C6737 Stage IIB Esophageal Squamous Cell Carcinoma AJCC v7 8 223336 -NCIT:C6738 Stage IIA Esophageal Squamous Cell Carcinoma AJCC v7 8 223337 -NCIT:C5022 Stage I Esophageal Squamous Cell Carcinoma AJCC v7 7 223338 -NCIT:C87780 Stage IA Esophageal Squamous Cell Carcinoma AJCC v7 8 223339 -NCIT:C87781 Stage IB Esophageal Squamous Cell Carcinoma AJCC v7 8 223340 -NCIT:C5023 Stage 0 Esophageal Squamous Cell Carcinoma AJCC v7 7 223341 -NCIT:C133443 Esophageal Squamous Cell Carcinoma by AJCC v8 Stage 6 223342 -NCIT:C133444 Esophageal Squamous Cell Carcinoma by AJCC v8 Clinical Stage 7 223343 -NCIT:C133447 Clinical Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 8 223344 -NCIT:C133448 Clinical Stage I Esophageal Squamous Cell Carcinoma AJCC v8 8 223345 -NCIT:C133449 Clinical Stage II Esophageal Squamous Cell Carcinoma AJCC v8 8 223346 -NCIT:C133450 Clinical Stage III Esophageal Squamous Cell Carcinoma AJCC v8 8 223347 -NCIT:C133451 Clinical Stage IV Esophageal Squamous Cell Carcinoma AJCC v8 8 223348 -NCIT:C133452 Clinical Stage IVA Esophageal Squamous Cell Carcinoma AJCC v8 9 223349 -NCIT:C133453 Clinical Stage IVB Esophageal Squamous Cell Carcinoma AJCC v8 9 223350 -NCIT:C133445 Esophageal Squamous Cell Carcinoma by AJCC v8 Pathologic Stage 7 223351 -NCIT:C133519 Pathologic Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 8 223352 -NCIT:C133521 Pathologic Stage I Esophageal Squamous Cell Carcinoma AJCC v8 8 223353 -NCIT:C133525 Pathologic Stage IA Esophageal Squamous Cell Carcinoma AJCC v8 9 223354 -NCIT:C133530 Pathologic Stage IB Esophageal Squamous Cell Carcinoma AJCC v8 9 223355 -NCIT:C133532 Pathologic Stage II Esophageal Squamous Cell Carcinoma AJCC v8 8 223356 -NCIT:C133534 Pathologic Stage IIA Esophageal Squamous Cell Carcinoma AJCC v8 9 223357 -NCIT:C133535 Pathologic Stage IIB Esophageal Squamous Cell Carcinoma AJCC v8 9 223358 -NCIT:C133536 Pathologic Stage III Esophageal Squamous Cell Carcinoma AJCC v8 8 223359 -NCIT:C133537 Pathologic Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v8 9 223360 -NCIT:C133538 Pathologic Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v8 9 223361 -NCIT:C133539 Pathologic Stage IV Esophageal Squamous Cell Carcinoma AJCC v8 8 223362 -NCIT:C133541 Pathologic Stage IVA Esophageal Squamous Cell Carcinoma AJCC v8 9 223363 -NCIT:C133542 Pathologic Stage IVB Esophageal Squamous Cell Carcinoma AJCC v8 9 223364 -NCIT:C133446 Esophageal Squamous Cell Carcinoma by AJCC v8 Postneoadjuvant Therapy Stage 7 223365 -NCIT:C133454 Postneoadjuvant Therapy Stage I Esophageal Squamous Cell Carcinoma AJCC v8 8 223366 -NCIT:C133455 Postneoadjuvant Therapy Stage II Esophageal Squamous Cell Carcinoma AJCC v8 8 223367 -NCIT:C133456 Postneoadjuvant Therapy Stage III Esophageal Squamous Cell Carcinoma AJCC v8 8 223368 -NCIT:C133457 Postneoadjuvant Therapy Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v8 9 223369 -NCIT:C133458 Postneoadjuvant Therapy Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v8 9 223370 -NCIT:C133459 Postneoadjuvant Therapy Stage IV Esophageal Squamous Cell Carcinoma AJCC v8 8 223371 -NCIT:C133460 Postneoadjuvant Therapy Stage IVA Esophageal Squamous Cell Carcinoma AJCC v8 9 223372 -NCIT:C133461 Postneoadjuvant Therapy Stage IVB Esophageal Squamous Cell Carcinoma AJCC v8 9 223373 -NCIT:C150029 Thoracic Esophagus Squamous Cell Carcinoma 6 223374 -NCIT:C150032 Cervical Esophagus Squamous Cell Carcinoma 6 223375 -NCIT:C150037 Distal Esophagus Squamous Cell Carcinoma 6 223376 -NCIT:C156075 Metastatic Esophageal Squamous Cell Carcinoma 6 223377 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 7 223378 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 7 223379 -NCIT:C171606 Refractory Esophageal Squamous Cell Carcinoma 6 223380 -NCIT:C171608 Unresectable Esophageal Squamous Cell Carcinoma 6 223381 -NCIT:C27420 Esophageal Verrucous Carcinoma 6 223382 -NCIT:C27680 Human Papillomavirus-Related Esophageal Squamous Cell Carcinoma 6 223383 -NCIT:C27928 Alcohol-Related Esophageal Squamous Cell Carcinoma 6 223384 -NCIT:C7032 Esophageal Basaloid Carcinoma 6 223385 -NCIT:C8633 Recurrent Esophageal Squamous Cell Carcinoma 6 223386 -NCIT:C95608 Esophageal Spindle Cell Carcinoma 6 223387 -NCIT:C95610 Esophageal Well Differentiated Squamous Cell Carcinoma 6 223388 -NCIT:C179888 Esophageal Carcinoma Cuniculatum 7 223389 -NCIT:C95611 Esophageal Moderately Differentiated Squamous Cell Carcinoma 6 223390 -NCIT:C95612 Esophageal Poorly Differentiated Squamous Cell Carcinoma 6 223391 -NCIT:C4028 Cervical Squamous Cell Carcinoma 5 223392 -NCIT:C136649 Recurrent Cervical Squamous Cell Carcinoma 6 223393 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 6 223394 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 7 223395 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 7 223396 -NCIT:C174025 Unresectable Cervical Squamous Cell Carcinoma 6 223397 -NCIT:C180839 Cervical Squamous Cell Carcinoma, Not Otherwise Specified 6 223398 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 7 223399 -NCIT:C180841 Human Papillomavirus-Independent Cervical Squamous Cell Carcinoma 6 223400 -NCIT:C181034 Refractory Cervical Squamous Cell Carcinoma 6 223401 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 7 223402 -NCIT:C27676 Human Papillomavirus-Related Cervical Squamous Cell Carcinoma 6 223403 -NCIT:C40192 Cervical Papillary Squamous Cell Carcinoma 7 223404 -NCIT:C40191 Cervical Warty Carcinoma 8 223405 -NCIT:C40194 Cervical Squamotransitional Carcinoma 8 223406 -NCIT:C36094 Early Invasive Cervical Squamous Cell Carcinoma 6 223407 -NCIT:C40187 Cervical Keratinizing Squamous Cell Carcinoma 6 223408 -NCIT:C40188 Cervical Non-Keratinizing Squamous Cell Carcinoma 6 223409 -NCIT:C40189 Cervical Basaloid Carcinoma 6 223410 -NCIT:C40190 Cervical Verrucous Carcinoma 6 223411 -NCIT:C40193 Cervical Lymphoepithelioma-Like Carcinoma 6 223412 -NCIT:C7347 Cervical Squamous Cell Carcinoma In Situ 6 223413 -NCIT:C4052 Vulvar Squamous Cell Carcinoma 5 223414 -NCIT:C128167 Vulvar Keratoacanthoma 6 223415 -NCIT:C174199 Unresectable Vulvar Squamous Cell Carcinoma 6 223416 -NCIT:C174200 Recurrent Vulvar Squamous Cell Carcinoma 6 223417 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 6 223418 -NCIT:C181902 Vulvar Squamous Cell Carcinoma, Not Otherwise Specified 6 223419 -NCIT:C181903 Human Papillomavirus-Independent Vulvar Squamous Cell Carcinoma 6 223420 -NCIT:C185304 Refractory Vulvar Squamous Cell Carcinoma 6 223421 -NCIT:C27679 Human Papillomavirus-Related Vulvar Squamous Cell Carcinoma 6 223422 -NCIT:C40287 Vulvar Warty Carcinoma 7 223423 -NCIT:C40284 Vulvar Keratinizing Squamous Cell Carcinoma 6 223424 -NCIT:C40285 Vulvar Non-Keratinizing Squamous Cell Carcinoma 6 223425 -NCIT:C40286 Vulvar Basaloid Carcinoma 6 223426 -NCIT:C40289 Vulvar Squamous Cell Carcinoma with Tumor Giant Cells 6 223427 -NCIT:C40293 Bartholin Gland Squamous Cell Carcinoma 6 223428 -NCIT:C6383 Vulvar Verrucous Carcinoma 6 223429 -NCIT:C4102 Papillary Squamous Cell Carcinoma 5 223430 -NCIT:C128060 Vaginal Papillary Carcinoma 6 223431 -NCIT:C164248 Warty Carcinoma 6 223432 -NCIT:C40191 Cervical Warty Carcinoma 7 223433 -NCIT:C40248 Vaginal Warty Carcinoma 7 223434 -NCIT:C40287 Vulvar Warty Carcinoma 7 223435 -NCIT:C6981 Warty Carcinoma of the Penis 7 223436 -NCIT:C3781 Verrucous Carcinoma 6 223437 -NCIT:C165465 Skin Verrucous Carcinoma 7 223438 -NCIT:C6811 Plantar Verrucous Carcinoma 8 223439 -NCIT:C27420 Esophageal Verrucous Carcinoma 7 223440 -NCIT:C27678 Human Papillomavirus-Related Verrucous Carcinoma 7 223441 -NCIT:C39832 Bladder Verrucous Carcinoma 7 223442 -NCIT:C39833 Schistosoma Hematobium-Related Bladder Verrucous Carcinoma 8 223443 -NCIT:C39874 Urethral Verrucous Carcinoma 7 223444 -NCIT:C40190 Cervical Verrucous Carcinoma 7 223445 -NCIT:C6325 Vaginal Verrucous Carcinoma 7 223446 -NCIT:C6383 Vulvar Verrucous Carcinoma 7 223447 -NCIT:C6982 Verrucous Carcinoma of the Penis 7 223448 -NCIT:C159247 Carcinoma Cuniculatum of the Penis 8 223449 -NCIT:C7470 Anal Verrucous Carcinoma 7 223450 -NCIT:C8174 Oral Cavity Verrucous Carcinoma 7 223451 -NCIT:C179894 Oral Cavity Carcinoma Cuniculatum 8 223452 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 8 223453 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 8 223454 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 8 223455 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 8 223456 -NCIT:C8188 Laryngeal Verrucous Carcinoma 7 223457 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 8 223458 -NCIT:C8189 Glottis Verrucous Carcinoma 8 223459 -NCIT:C8190 Subglottic Verrucous Carcinoma 8 223460 -NCIT:C8191 Supraglottic Verrucous Carcinoma 8 223461 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 223462 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 223463 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 223464 -NCIT:C8244 Stage IV Laryngeal Verrucous Carcinoma AJCC v7 8 223465 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 9 223466 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 9 223467 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 9 223468 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 223469 -NCIT:C40192 Cervical Papillary Squamous Cell Carcinoma 6 223470 -NCIT:C40191 Cervical Warty Carcinoma 7 223471 -NCIT:C40194 Cervical Squamotransitional Carcinoma 7 223472 -NCIT:C45502 Lung Squamous Cell Carcinoma, Papillary Variant 6 223473 -NCIT:C54335 Laryngeal Papillary Squamous Cell Carcinoma 6 223474 -NCIT:C65164 Non-Invasive Papillary Squamous Cell Carcinoma 6 223475 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 7 223476 -NCIT:C6983 Papillary Carcinoma of the Penis 6 223477 -NCIT:C103340 Papillary Carcinoma of the Penis, Not Otherwise Specified 7 223478 -NCIT:C159249 Papillary-Basaloid Carcinoma of the Penis 7 223479 -NCIT:C6981 Warty Carcinoma of the Penis 7 223480 -NCIT:C6982 Verrucous Carcinoma of the Penis 7 223481 -NCIT:C159247 Carcinoma Cuniculatum of the Penis 8 223482 -NCIT:C4104 Metastatic Squamous Cell Carcinoma 5 223483 -NCIT:C143013 Metastatic Skin Squamous Cell Carcinoma 6 223484 -NCIT:C153182 Locally Advanced Skin Squamous Cell Carcinoma 7 223485 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 223486 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 7 223487 -NCIT:C168542 Advanced Skin Squamous Cell Carcinoma 7 223488 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 223489 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 223490 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 223491 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 223492 -NCIT:C148153 Metastatic Head and Neck Squamous Cell Carcinoma 6 223493 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 7 223494 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 223495 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 223496 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 223497 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 223498 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 223499 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 223500 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 223501 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 7 223502 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 223503 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 223504 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 7 223505 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 223506 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 223507 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 7 223508 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 7 223509 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 223510 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 223511 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 223512 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 8 223513 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 9 223514 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 223515 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 223516 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 8 223517 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 223518 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 223519 -NCIT:C162882 Metastatic Sinonasal Squamous Cell Carcinoma 7 223520 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 223521 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 223522 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 223523 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 223524 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 223525 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 223526 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 223527 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 223528 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 223529 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 223530 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 7 223531 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 7 223532 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 8 223533 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 223534 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 223535 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 223536 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 8 223537 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 223538 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 223539 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 223540 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 223541 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 223542 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 8 223543 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 223544 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 223545 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 223546 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 223547 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 223548 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 223549 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 6 223550 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 7 223551 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 7 223552 -NCIT:C154321 Locally Advanced Squamous Cell Carcinoma 6 223553 -NCIT:C153182 Locally Advanced Skin Squamous Cell Carcinoma 7 223554 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 223555 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 7 223556 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 8 223557 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 7 223558 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 223559 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 223560 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 223561 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 8 223562 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 9 223563 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 223564 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 223565 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 8 223566 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 223567 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 223568 -NCIT:C165474 Locally Advanced Squamous Cell Carcinoma of Unknown Primary 7 223569 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 7 223570 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 7 223571 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 7 223572 -NCIT:C156075 Metastatic Esophageal Squamous Cell Carcinoma 6 223573 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 7 223574 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 7 223575 -NCIT:C156092 Metastatic Lung Squamous Cell Carcinoma 6 223576 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 7 223577 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 223578 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 223579 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 223580 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 7 223581 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 223582 -NCIT:C157452 Metastatic Squamous Cell Carcinoma in the Cervical Lymph Nodes 6 223583 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 6 223584 -NCIT:C162653 Advanced Squamous Cell Carcinoma 6 223585 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 7 223586 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 223587 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 223588 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 223589 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 223590 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 223591 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 223592 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 223593 -NCIT:C168542 Advanced Skin Squamous Cell Carcinoma 7 223594 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 223595 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 7 223596 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 7 223597 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 7 223598 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 223599 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 7 223600 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 7 223601 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 7 223602 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 8 223603 -NCIT:C169103 Metastatic Anal Squamous Cell Carcinoma 6 223604 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 7 223605 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 8 223606 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 6 223607 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 7 223608 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 7 223609 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 6 223610 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 6 223611 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 7 223612 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 8 223613 -NCIT:C182111 Metastatic Squamous Cell Carcinoma of the Penis 6 223614 -NCIT:C188112 Metastatic Squamous Cell Carcinoma in the Breast 6 223615 -NCIT:C188113 Metastatic Squamous Cell Carcinoma in the Skin 6 223616 -NCIT:C190771 Metastatic Pancreatic Squamous Cell Carcinoma 6 223617 -NCIT:C4829 Disseminated Squamous Cell Carcinoma 6 223618 -NCIT:C5178 Metastatic Breast Squamous Cell Carcinoma 6 223619 -NCIT:C8099 Squamous Cell Carcinoma of Unknown Primary 6 223620 -NCIT:C165474 Locally Advanced Squamous Cell Carcinoma of Unknown Primary 7 223621 -NCIT:C187051 Human Papillomavirus-Related Head and Neck Squamous Cell Carcinoma of Unknown Primary 7 223622 -NCIT:C190149 Human Papillomavirus-Negative Head and Neck Squamous Cell Carcinoma of Unknown Primary 7 223623 -NCIT:C7713 Neck Squamous Cell Carcinoma of Unknown Primary 7 223624 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 8 223625 -NCIT:C4105 Keratinizing Squamous Cell Carcinoma 5 223626 -NCIT:C27542 Skin Pseudovascular Squamous Cell Carcinoma 6 223627 -NCIT:C27543 Skin Basaloid Carcinoma 6 223628 -NCIT:C40187 Cervical Keratinizing Squamous Cell Carcinoma 6 223629 -NCIT:C40243 Vaginal Keratinizing Squamous Cell Carcinoma 6 223630 -NCIT:C40284 Vulvar Keratinizing Squamous Cell Carcinoma 6 223631 -NCIT:C40357 Breast Squamous Cell Carcinoma, Large Cell Keratinizing Variant 6 223632 -NCIT:C4459 Skin Clear Cell Squamous Cell Carcinoma 6 223633 -NCIT:C4460 Skin Acantholytic Squamous Cell Carcinoma 6 223634 -NCIT:C45502 Lung Squamous Cell Carcinoma, Papillary Variant 6 223635 -NCIT:C45503 Lung Squamous Cell Carcinoma, Clear Cell Variant 6 223636 -NCIT:C45504 Lung Squamous Cell Carcinoma, Small Cell Variant 6 223637 -NCIT:C45507 Lung Basaloid Squamous Cell Carcinoma 6 223638 -NCIT:C54283 Head and Neck Keratinizing Squamous Cell Carcinoma 6 223639 -NCIT:C173077 Sinonasal Keratinizing Squamous Cell Carcinoma 7 223640 -NCIT:C54284 Paranasal Sinus Keratinizing Squamous Cell Carcinoma 8 223641 -NCIT:C54285 Nasal Cavity Keratinizing Squamous Cell Carcinoma 8 223642 -NCIT:C6083 External Ear Squamous Cell Carcinoma 7 223643 -NCIT:C6086 Middle Ear Squamous Cell Carcinoma 7 223644 -NCIT:C7498 Keratinizing Primary Intraosseous Squamous Cell Carcinoma-Solid Type 7 223645 -NCIT:C7992 Nasopharyngeal Keratinizing Squamous Cell Carcinoma 7 223646 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 8 223647 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 8 223648 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 8 223649 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 8 223650 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 8 223651 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 8 223652 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 223653 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 223654 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 223655 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 8 223656 -NCIT:C65179 Squamous Cell Carcinoma with Horn Formation 6 223657 -NCIT:C4106 Pseudoglandular Squamous Cell Carcinoma 5 223658 -NCIT:C159246 Pseudoglandular Carcinoma of the Penis 6 223659 -NCIT:C54337 Laryngeal Acantholytic Squamous Cell Carcinoma 6 223660 -NCIT:C43534 Small Intestinal Squamous Cell Carcinoma 5 223661 -NCIT:C43588 Colorectal Squamous Cell Carcinoma 5 223662 -NCIT:C5490 Colon Squamous Cell Carcinoma 6 223663 -NCIT:C5554 Rectal Squamous Cell Carcinoma 6 223664 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 7 223665 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 8 223666 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 8 223667 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 7 223668 -NCIT:C5555 Rectal Cloacogenic Carcinoma 7 223669 -NCIT:C4448 Tracheal Squamous Cell Carcinoma 5 223670 -NCIT:C3639 Tracheal Carcinoma In Situ 6 223671 -NCIT:C4549 Conjunctival Squamous Cell Carcinoma 5 223672 -NCIT:C174390 Conjunctival Keratoacanthoma 6 223673 -NCIT:C174398 Conjunctival Spindle Cell Carcinoma 6 223674 -NCIT:C4552 Corneal Squamous Cell Carcinoma 5 223675 -NCIT:C4819 Skin Squamous Cell Carcinoma 5 223676 -NCIT:C133252 Cutaneous Squamous Cell Carcinoma of the Head and Neck 6 223677 -NCIT:C133253 Cutaneous Squamous Cell Carcinoma of the Head and Neck by AJCC v8 Stage 7 223678 -NCIT:C133255 Stage 0 Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 223679 -NCIT:C133256 Stage I Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 223680 -NCIT:C133257 Stage II Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 223681 -NCIT:C133258 Stage III Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 223682 -NCIT:C133259 Stage IV Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 223683 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 223684 -NCIT:C162943 Resectable Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 223685 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 223686 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 223687 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 223688 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 223689 -NCIT:C6083 External Ear Squamous Cell Carcinoma 7 223690 -NCIT:C143012 Recurrent Skin Squamous Cell Carcinoma 6 223691 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 223692 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 7 223693 -NCIT:C165737 Locally Recurrent Skin Squamous Cell Carcinoma 7 223694 -NCIT:C143013 Metastatic Skin Squamous Cell Carcinoma 6 223695 -NCIT:C153182 Locally Advanced Skin Squamous Cell Carcinoma 7 223696 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 223697 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 7 223698 -NCIT:C168542 Advanced Skin Squamous Cell Carcinoma 7 223699 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 223700 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 223701 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 223702 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 223703 -NCIT:C157320 Unresectable Skin Squamous Cell Carcinoma 6 223704 -NCIT:C160666 Hematologic Malignancy-Associated Skin Squamous Cell Carcinoma 6 223705 -NCIT:C165465 Skin Verrucous Carcinoma 6 223706 -NCIT:C6811 Plantar Verrucous Carcinoma 7 223707 -NCIT:C165466 Skin Squamous Cell Carcinoma with Osteoclast-Like Giant Cells 6 223708 -NCIT:C165467 Skin Lymphoepithelioma-Like Carcinoma 6 223709 -NCIT:C165468 Skin Squamous Cell Carcinoma with Sarcomatoid Differentiation 6 223710 -NCIT:C165735 Refractory Skin Squamous Cell Carcinoma 6 223711 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 223712 -NCIT:C170464 Resectable Skin Squamous Cell Carcinoma 6 223713 -NCIT:C162943 Resectable Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 223714 -NCIT:C27542 Skin Pseudovascular Squamous Cell Carcinoma 6 223715 -NCIT:C27543 Skin Basaloid Carcinoma 6 223716 -NCIT:C27636 Transplant-Related Skin Squamous Cell Carcinoma 6 223717 -NCIT:C27918 Old Burn Scar-Related Skin Squamous Cell Carcinoma 6 223718 -NCIT:C27921 Solar Radiation-Related Skin Squamous Cell Carcinoma 6 223719 -NCIT:C2906 Skin Squamous Cell Carcinoma In Situ 6 223720 -NCIT:C62571 Bowen Disease of the Skin 7 223721 -NCIT:C3146 Keratoacanthoma 6 223722 -NCIT:C128167 Vulvar Keratoacanthoma 7 223723 -NCIT:C174390 Conjunctival Keratoacanthoma 7 223724 -NCIT:C4459 Skin Clear Cell Squamous Cell Carcinoma 6 223725 -NCIT:C4460 Skin Acantholytic Squamous Cell Carcinoma 6 223726 -NCIT:C4643 Scrotal Squamous Cell Carcinoma 6 223727 -NCIT:C4666 Skin Spindle Cell Squamous Cell Carcinoma 6 223728 -NCIT:C6925 Anal Margin Squamous Cell Carcinoma 6 223729 -NCIT:C5177 Breast Squamous Cell Carcinoma 5 223730 -NCIT:C40357 Breast Squamous Cell Carcinoma, Large Cell Keratinizing Variant 6 223731 -NCIT:C40358 Breast Squamous Cell Carcinoma, Spindle Cell Variant 6 223732 -NCIT:C40359 Breast Squamous Cell Carcinoma, Acantholytic Variant 6 223733 -NCIT:C5178 Metastatic Breast Squamous Cell Carcinoma 6 223734 -NCIT:C54244 Basaloid Squamous Cell Carcinoma 5 223735 -NCIT:C27543 Skin Basaloid Carcinoma 6 223736 -NCIT:C37290 Head and Neck Basaloid Carcinoma 6 223737 -NCIT:C126751 Oropharyngeal Basaloid Carcinoma 7 223738 -NCIT:C129873 Floor of Mouth Basaloid Squamous Cell Carcinoma 7 223739 -NCIT:C54334 Laryngeal Basaloid Carcinoma 7 223740 -NCIT:C54360 Nasopharyngeal Basaloid Carcinoma 7 223741 -NCIT:C40189 Cervical Basaloid Carcinoma 6 223742 -NCIT:C40245 Vaginal Basaloid Carcinoma 6 223743 -NCIT:C40286 Vulvar Basaloid Carcinoma 6 223744 -NCIT:C45507 Lung Basaloid Squamous Cell Carcinoma 6 223745 -NCIT:C6456 Thymic Basaloid Carcinoma 6 223746 -NCIT:C6980 Basaloid Squamous Cell Carcinoma of the Penis 6 223747 -NCIT:C159249 Papillary-Basaloid Carcinoma of the Penis 7 223748 -NCIT:C7032 Esophageal Basaloid Carcinoma 6 223749 -NCIT:C8256 Anal Basaloid Carcinoma 6 223750 -NCIT:C5475 Gastric Squamous Cell Carcinoma 5 223751 -NCIT:C150034 Gastric Cardia Squamous Cell Carcinoma 6 223752 -NCIT:C5536 Prostate Squamous Cell Carcinoma 5 223753 -NCIT:C5777 Extrahepatic Bile Duct Squamous Cell Carcinoma 5 223754 -NCIT:C6092 Lacrimal Drainage System Squamous Cell Carcinoma 5 223755 -NCIT:C175335 Lacrimal Drainage System Non-Keratinizing Squamous Cell Carcinoma 6 223756 -NCIT:C6154 Ureter Squamous Cell Carcinoma 5 223757 -NCIT:C6165 Urethral Squamous Cell Carcinoma 5 223758 -NCIT:C39862 Human Papillomavirus-Related Urethral Squamous Cell Carcinoma 6 223759 -NCIT:C39874 Urethral Verrucous Carcinoma 6 223760 -NCIT:C6282 Fallopian Tube Squamous Cell Carcinoma 5 223761 -NCIT:C6455 Thymic Squamous Cell Carcinoma 5 223762 -NCIT:C6456 Thymic Basaloid Carcinoma 6 223763 -NCIT:C65173 Non-Keratinizing Large Cell Squamous Cell Carcinoma 5 223764 -NCIT:C65175 Non-Keratinizing Small Cell Squamous Cell Carcinoma 5 223765 -NCIT:C65176 Squamous Cell Carcinoma In Situ with Questionable Stromal Invasion 5 223766 -NCIT:C65178 Microinvasive Squamous Cell Carcinoma 5 223767 -NCIT:C65180 Squamous Cell Carcinoma, Clear Cell Type 5 223768 -NCIT:C159251 Clear Cell Squamous Cell Carcinoma of the Penis 6 223769 -NCIT:C7729 Squamous Cell Carcinoma of the Penis 5 223770 -NCIT:C159244 Non-Human Papillomavirus-Related Squamous Cell Carcinoma of the Penis 6 223771 -NCIT:C103340 Papillary Carcinoma of the Penis, Not Otherwise Specified 7 223772 -NCIT:C159245 Pseudohyperplastic Carcinoma of the Penis 7 223773 -NCIT:C159246 Pseudoglandular Carcinoma of the Penis 7 223774 -NCIT:C159248 Adenosquamous Carcinoma of the Penis 7 223775 -NCIT:C39959 Mixed Squamous Cell Carcinoma of the Penis 7 223776 -NCIT:C6979 Squamous Cell Carcinoma of the Penis, Usual Type 7 223777 -NCIT:C6982 Verrucous Carcinoma of the Penis 7 223778 -NCIT:C159247 Carcinoma Cuniculatum of the Penis 8 223779 -NCIT:C6984 Sarcomatoid Carcinoma of the Penis 7 223780 -NCIT:C182111 Metastatic Squamous Cell Carcinoma of the Penis 6 223781 -NCIT:C27682 Human Papillomavirus-Related Squamous Cell Carcinoma of the Penis 6 223782 -NCIT:C159250 Warty-Basaloid Carcinoma of the Penis 7 223783 -NCIT:C159251 Clear Cell Squamous Cell Carcinoma of the Penis 7 223784 -NCIT:C159252 Lymphoepithelioma-Like Carcinoma of the Penis 7 223785 -NCIT:C6980 Basaloid Squamous Cell Carcinoma of the Penis 7 223786 -NCIT:C159249 Papillary-Basaloid Carcinoma of the Penis 8 223787 -NCIT:C6981 Warty Carcinoma of the Penis 7 223788 -NCIT:C27790 Penile Carcinoma In Situ 6 223789 -NCIT:C6983 Papillary Carcinoma of the Penis 6 223790 -NCIT:C103340 Papillary Carcinoma of the Penis, Not Otherwise Specified 7 223791 -NCIT:C159249 Papillary-Basaloid Carcinoma of the Penis 7 223792 -NCIT:C6981 Warty Carcinoma of the Penis 7 223793 -NCIT:C6982 Verrucous Carcinoma of the Penis 7 223794 -NCIT:C159247 Carcinoma Cuniculatum of the Penis 8 223795 -NCIT:C7732 Renal Pelvis Squamous Cell Carcinoma 5 223796 -NCIT:C8719 Endometrial Squamous Cell Carcinoma 5 223797 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 6 223798 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 6 223799 -NCIT:C9161 Anal Squamous Cell Carcinoma 5 223800 -NCIT:C157575 Anal Intraepithelial Neoplasia 3 6 223801 -NCIT:C169102 Recurrent Anal Squamous Cell Carcinoma 6 223802 -NCIT:C175360 Recurrent Anal Canal Squamous Cell Carcinoma 7 223803 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 8 223804 -NCIT:C169103 Metastatic Anal Squamous Cell Carcinoma 6 223805 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 7 223806 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 8 223807 -NCIT:C173156 Unresectable Anal Squamous Cell Carcinoma 6 223808 -NCIT:C175384 Unresectable Anal Canal Squamous Cell Carcinoma 7 223809 -NCIT:C27681 Human Papillomavirus-Related Anal Squamous Cell Carcinoma 6 223810 -NCIT:C6925 Anal Margin Squamous Cell Carcinoma 6 223811 -NCIT:C7469 Anal Canal Squamous Cell Carcinoma 6 223812 -NCIT:C173334 Refractory Anal Canal Squamous Cell Carcinoma 7 223813 -NCIT:C175360 Recurrent Anal Canal Squamous Cell Carcinoma 7 223814 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 8 223815 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 7 223816 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 8 223817 -NCIT:C175384 Unresectable Anal Canal Squamous Cell Carcinoma 7 223818 -NCIT:C7470 Anal Verrucous Carcinoma 6 223819 -NCIT:C8256 Anal Basaloid Carcinoma 6 223820 -NCIT:C9170 Gallbladder Squamous Cell Carcinoma 5 223821 -NCIT:C2930 Transitional Cell Carcinoma 4 223822 -NCIT:C129827 Unresectable Transitional Cell Carcinoma 5 223823 -NCIT:C150521 Unresectable Urothelial Carcinoma 6 223824 -NCIT:C158585 Unresectable Urethral Urothelial Carcinoma 7 223825 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 7 223826 -NCIT:C164160 Unresectable Renal Pelvis and Ureter Urothelial Carcinoma 7 223827 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 8 223828 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 8 223829 -NCIT:C129828 Metastatic Transitional Cell Carcinoma 5 223830 -NCIT:C126109 Metastatic Urothelial Carcinoma 6 223831 -NCIT:C148493 Advanced Urothelial Carcinoma 7 223832 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 223833 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 223834 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 223835 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 223836 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 223837 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 7 223838 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 223839 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 223840 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 7 223841 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 223842 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 223843 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 223844 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 223845 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 223846 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 223847 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 223848 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 223849 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 223850 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 8 223851 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 7 223852 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 223853 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 223854 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 223855 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 223856 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 223857 -NCIT:C191692 Metastatic Clear Cell (Glycogen-Rich) Urothelial Carcinoma 7 223858 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 223859 -NCIT:C191693 Metastatic Giant Cell Urothelial Carcinoma 7 223860 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 223861 -NCIT:C191694 Metastatic Lipid-Rich Urothelial Carcinoma 7 223862 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 223863 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 7 223864 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 223865 -NCIT:C191696 Metastatic Nested Urothelial Carcinoma 7 223866 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 223867 -NCIT:C191697 Metastatic Plasmacytoid Urothelial Carcinoma 7 223868 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 223869 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 7 223870 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 223871 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 7 223872 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 8 223873 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 223874 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 223875 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 8 223876 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 223877 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 223878 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 223879 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 223880 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 223881 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 223882 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 223883 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 223884 -NCIT:C172091 Advanced Transitional Cell Carcinoma 6 223885 -NCIT:C148493 Advanced Urothelial Carcinoma 7 223886 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 223887 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 223888 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 223889 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 223890 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 223891 -NCIT:C175493 Locally Advanced Transitional Cell Carcinoma 6 223892 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 7 223893 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 223894 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 223895 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 223896 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 223897 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 223898 -NCIT:C162564 Primary Peritoneal Transitional Cell Carcinoma 5 223899 -NCIT:C170759 Recurrent Primary Peritoneal Transitional Cell Carcinoma 6 223900 -NCIT:C178688 Refractory Primary Peritoneal Transitional Cell Carcinoma 6 223901 -NCIT:C40104 Fallopian Tube Transitional Cell Carcinoma 5 223902 -NCIT:C170757 Recurrent Fallopian Tube Transitional Cell Carcinoma 6 223903 -NCIT:C178674 Refractory Fallopian Tube Transitional Cell Carcinoma 6 223904 -NCIT:C40154 Endometrial Transitional Cell Carcinoma 5 223905 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 6 223906 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 6 223907 -NCIT:C40297 Bartholin Gland Transitional Cell Carcinoma 5 223908 -NCIT:C4030 Urothelial Carcinoma 5 223909 -NCIT:C126109 Metastatic Urothelial Carcinoma 6 223910 -NCIT:C148493 Advanced Urothelial Carcinoma 7 223911 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 223912 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 223913 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 223914 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 223915 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 223916 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 7 223917 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 223918 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 223919 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 7 223920 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 223921 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 223922 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 223923 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 223924 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 223925 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 223926 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 223927 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 223928 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 223929 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 8 223930 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 7 223931 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 223932 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 223933 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 223934 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 223935 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 223936 -NCIT:C191692 Metastatic Clear Cell (Glycogen-Rich) Urothelial Carcinoma 7 223937 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 223938 -NCIT:C191693 Metastatic Giant Cell Urothelial Carcinoma 7 223939 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 223940 -NCIT:C191694 Metastatic Lipid-Rich Urothelial Carcinoma 7 223941 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 223942 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 7 223943 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 223944 -NCIT:C191696 Metastatic Nested Urothelial Carcinoma 7 223945 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 223946 -NCIT:C191697 Metastatic Plasmacytoid Urothelial Carcinoma 7 223947 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 223948 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 7 223949 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 223950 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 7 223951 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 8 223952 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 223953 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 223954 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 8 223955 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 223956 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 223957 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 223958 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 223959 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 223960 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 223961 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 223962 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 223963 -NCIT:C150364 Refractory Urothelial Carcinoma 6 223964 -NCIT:C150365 Platinum-Resistant Urothelial Carcinoma 7 223965 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 7 223966 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 8 223967 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 7 223968 -NCIT:C176996 Refractory Urethral Urothelial Carcinoma 7 223969 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 7 223970 -NCIT:C150521 Unresectable Urothelial Carcinoma 6 223971 -NCIT:C158585 Unresectable Urethral Urothelial Carcinoma 7 223972 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 7 223973 -NCIT:C164160 Unresectable Renal Pelvis and Ureter Urothelial Carcinoma 7 223974 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 8 223975 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 8 223976 -NCIT:C157631 Recurrent Urothelial Carcinoma 6 223977 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 7 223978 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 8 223979 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 7 223980 -NCIT:C8254 Recurrent Renal Pelvis and Ureter Urothelial Carcinoma 7 223981 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 8 223982 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 8 223983 -NCIT:C180606 Urothelial Carcinoma, High Grade 6 223984 -NCIT:C180607 Renal Pelvis Urothelial Carcinoma, High Grade 7 223985 -NCIT:C180608 Ureter Urothelial Carcinoma, High Grade 7 223986 -NCIT:C180609 Bladder Urothelial Carcinoma, High Grade 7 223987 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 8 223988 -NCIT:C191675 Non-Invasive Papillary Urothelial Carcinoma, High Grade 7 223989 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 8 223990 -NCIT:C191673 Non-Invasive Papillary Urothelial Carcinoma, Low Grade 6 223991 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 7 223992 -NCIT:C39851 Bladder Urothelial Carcinoma 6 223993 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 7 223994 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 8 223995 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 7 223996 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 223997 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 223998 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 223999 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 224000 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 224001 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 224002 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 224003 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 8 224004 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 8 224005 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 8 224006 -NCIT:C158586 Unresectable Bladder Urothelial Carcinoma 7 224007 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 7 224008 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 8 224009 -NCIT:C177531 Bladder Flat Urothelial Carcinoma 7 224010 -NCIT:C37266 Bladder Urothelial Carcinoma In Situ 8 224011 -NCIT:C140418 Stage 0is Bladder Cancer AJCC v8 9 224012 -NCIT:C3644 Stage 0is Bladder Urothelial Carcinoma AJCC v6 and v7 9 224013 -NCIT:C180609 Bladder Urothelial Carcinoma, High Grade 7 224014 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 8 224015 -NCIT:C188032 Resectable Bladder Urothelial Carcinoma 7 224016 -NCIT:C27634 Transplant-Related Bladder Urothelial Carcinoma 7 224017 -NCIT:C27885 Invasive Bladder Urothelial Carcinoma 7 224018 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 8 224019 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 224020 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 224021 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 8 224022 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 9 224023 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 8 224024 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 8 224025 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 8 224026 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 8 224027 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 8 224028 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 224029 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 8 224030 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 8 224031 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 8 224032 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 8 224033 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 224034 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 8 224035 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 8 224036 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 8 224037 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 224038 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 8 224039 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 224040 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 9 224041 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 9 224042 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 224043 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 224044 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 8 224045 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 224046 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 8 224047 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 224048 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 8 224049 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 8 224050 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 8 224051 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 8 224052 -NCIT:C39844 Urachal Urothelial Carcinoma 7 224053 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 8 224054 -NCIT:C7383 Bladder Papillary Urothelial Carcinoma 7 224055 -NCIT:C158382 Bladder Non-Invasive Papillary Urothelial Carcinoma 8 224056 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 9 224057 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 9 224058 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 9 224059 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 9 224060 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 8 224061 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 224062 -NCIT:C39853 Invasive Urothelial Carcinoma 6 224063 -NCIT:C115966 Invasive Bladder Urothelial Carcinoma Associated with Urethral Carcinoma 7 224064 -NCIT:C164252 Invasive Sarcomatoid Urothelial Carcinoma 7 224065 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 8 224066 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 224067 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 8 224068 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 224069 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 9 224070 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 9 224071 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 8 224072 -NCIT:C191678 Invasive Lymphoepithelioma-Like Urothelial Carcinoma 7 224073 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 8 224074 -NCIT:C191679 Invasive Giant Cell Urothelial Carcinoma 7 224075 -NCIT:C191693 Metastatic Giant Cell Urothelial Carcinoma 8 224076 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 224077 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 8 224078 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 224079 -NCIT:C191680 Invasive Urothelial Carcinoma with Glandular Differentiation 7 224080 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 8 224081 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 8 224082 -NCIT:C191681 Invasive Urothelial Carcinoma with Squamous Differentiation 7 224083 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 8 224084 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 8 224085 -NCIT:C191682 Invasive Urothelial Carcinoma with Trophoblastic Differentiation 7 224086 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 8 224087 -NCIT:C191683 Invasive Clear Cell (Glycogen-Rich) Urothelial Carcinoma 7 224088 -NCIT:C191692 Metastatic Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 224089 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 224090 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 224091 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 224092 -NCIT:C191684 Invasive Lipid-Rich Urothelial Carcinoma 7 224093 -NCIT:C191694 Metastatic Lipid-Rich Urothelial Carcinoma 8 224094 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 224095 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 8 224096 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 224097 -NCIT:C191685 Invasive Microcystic Urothelial Carcinoma 7 224098 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 8 224099 -NCIT:C191686 Invasive Micropapillary Urothelial Carcinoma 7 224100 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 8 224101 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 224102 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 8 224103 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 224104 -NCIT:C191687 Invasive Nested Urothelial Carcinoma 7 224105 -NCIT:C191696 Metastatic Nested Urothelial Carcinoma 8 224106 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 224107 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 8 224108 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 224109 -NCIT:C191688 Invasive Plasmacytoid Urothelial Carcinoma 7 224110 -NCIT:C191697 Metastatic Plasmacytoid Urothelial Carcinoma 8 224111 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 224112 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 8 224113 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 224114 -NCIT:C191725 Invasive Large Nested Urothelial Carcinoma 7 224115 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 8 224116 -NCIT:C191728 Invasive Tubular Urothelial Carcinoma 7 224117 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 8 224118 -NCIT:C191730 Invasive Poorly Differentiated Urothelial Carcinoma 7 224119 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 8 224120 -NCIT:C191734 Invasive Conventional Urothelial Carcinoma 7 224121 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 8 224122 -NCIT:C27885 Invasive Bladder Urothelial Carcinoma 7 224123 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 8 224124 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 224125 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 9 224126 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 8 224127 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 9 224128 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 8 224129 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 8 224130 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 8 224131 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 8 224132 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 8 224133 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 224134 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 8 224135 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 8 224136 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 8 224137 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 8 224138 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 224139 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 8 224140 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 8 224141 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 8 224142 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 224143 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 8 224144 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 224145 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 9 224146 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 9 224147 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 224148 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 224149 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 8 224150 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 224151 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 8 224152 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 224153 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 8 224154 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 8 224155 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 8 224156 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 8 224157 -NCIT:C39879 Invasive Renal Pelvis and Ureter Urothelial Carcinoma 7 224158 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 8 224159 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 8 224160 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 8 224161 -NCIT:C39898 Primary Prostate Urothelial Carcinoma 6 224162 -NCIT:C39900 Prostatic Urethra Urothelial Carcinoma 7 224163 -NCIT:C39901 Prostatic Duct Urothelial Carcinoma 7 224164 -NCIT:C6166 Urethral Urothelial Carcinoma 6 224165 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 7 224166 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 7 224167 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 8 224168 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 8 224169 -NCIT:C158585 Unresectable Urethral Urothelial Carcinoma 7 224170 -NCIT:C176996 Refractory Urethral Urothelial Carcinoma 7 224171 -NCIT:C39900 Prostatic Urethra Urothelial Carcinoma 7 224172 -NCIT:C7716 Renal Pelvis and Ureter Urothelial Carcinoma 6 224173 -NCIT:C140355 Renal Pelvis and Ureter Cancer by AJCC v8 Stage 7 224174 -NCIT:C140356 Renal Pelvis Cancer by AJCC v8 Stage 8 224175 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 9 224176 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 9 224177 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 9 224178 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 9 224179 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 9 224180 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 9 224181 -NCIT:C140357 Ureter Cancer by AJCC v8 Stage 8 224182 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 9 224183 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 9 224184 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 9 224185 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 9 224186 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 9 224187 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 9 224188 -NCIT:C140358 Stage 0a Renal Pelvis and Ureter Cancer AJCC v8 8 224189 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 9 224190 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 9 224191 -NCIT:C140361 Stage 0is Renal Pelvis and Ureter Cancer AJCC v8 8 224192 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 9 224193 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 9 224194 -NCIT:C140364 Stage I Renal Pelvis and Ureter Cancer AJCC v8 8 224195 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 9 224196 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 9 224197 -NCIT:C140367 Stage II Renal Pelvis and Ureter Cancer AJCC v8 8 224198 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 9 224199 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 9 224200 -NCIT:C140370 Stage III Renal Pelvis and Ureter Cancer AJCC v8 8 224201 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 9 224202 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 9 224203 -NCIT:C140373 Stage IV Renal Pelvis and Ureter Cancer AJCC v8 8 224204 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 9 224205 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 9 224206 -NCIT:C140376 Renal Pelvis and Ureter Cancer by AJCC v7 Stage 7 224207 -NCIT:C140377 Renal Pelvis Cancer by AJCC v7 Stage 8 224208 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 9 224209 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 9 224210 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 9 224211 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 9 224212 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 9 224213 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 10 224214 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 10 224215 -NCIT:C140378 Ureter Cancer by AJCC v7 Stage 8 224216 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 9 224217 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 10 224218 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 10 224219 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 9 224220 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 9 224221 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 9 224222 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 9 224223 -NCIT:C39850 Stage 0 Renal Pelvis and Ureter Cancer AJCC v7 8 224224 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 9 224225 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 10 224226 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 10 224227 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 9 224228 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 10 224229 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 10 224230 -NCIT:C7517 Stage 0a Renal Pelvis and Ureter Cancer AJCC v7 9 224231 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 10 224232 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 10 224233 -NCIT:C7518 Stage 0is Renal Pelvis and Ureter Cancer AJCC v7 9 224234 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 10 224235 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 10 224236 -NCIT:C7519 Stage I Renal Pelvis and Ureter Cancer AJCC v7 8 224237 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 9 224238 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 9 224239 -NCIT:C7520 Stage II Renal Pelvis and Ureter Cancer AJCC v7 8 224240 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 9 224241 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 9 224242 -NCIT:C7521 Stage III Renal Pelvis and Ureter Cancer AJCC v7 8 224243 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 9 224244 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 9 224245 -NCIT:C7522 Stage IV Renal Pelvis and Ureter Cancer AJCC v7 8 224246 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 9 224247 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 9 224248 -NCIT:C164160 Unresectable Renal Pelvis and Ureter Urothelial Carcinoma 7 224249 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 8 224250 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 8 224251 -NCIT:C39879 Invasive Renal Pelvis and Ureter Urothelial Carcinoma 7 224252 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 8 224253 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 8 224254 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 8 224255 -NCIT:C4830 Ureter Urothelial Carcinoma 7 224256 -NCIT:C140357 Ureter Cancer by AJCC v8 Stage 8 224257 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 9 224258 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 9 224259 -NCIT:C140366 Stage I Ureter Cancer AJCC v8 9 224260 -NCIT:C140369 Stage II Ureter Cancer AJCC v8 9 224261 -NCIT:C140372 Stage III Ureter Cancer AJCC v8 9 224262 -NCIT:C140375 Stage IV Ureter Cancer AJCC v8 9 224263 -NCIT:C140378 Ureter Cancer by AJCC v7 Stage 8 224264 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 9 224265 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 10 224266 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 10 224267 -NCIT:C6150 Stage I Ureter Cancer AJCC v7 9 224268 -NCIT:C6151 Stage II Ureter Cancer AJCC v7 9 224269 -NCIT:C6152 Stage III Ureter Cancer AJCC v7 9 224270 -NCIT:C6153 Stage IV Ureter Cancer AJCC v7 9 224271 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 8 224272 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 224273 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 224274 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 8 224275 -NCIT:C158587 Unresectable Ureter Urothelial Carcinoma 8 224276 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 8 224277 -NCIT:C180608 Ureter Urothelial Carcinoma, High Grade 8 224278 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 8 224279 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 8 224280 -NCIT:C7355 Renal Pelvis Urothelial Carcinoma 7 224281 -NCIT:C140356 Renal Pelvis Cancer by AJCC v8 Stage 8 224282 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 9 224283 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 9 224284 -NCIT:C140365 Stage I Renal Pelvis Cancer AJCC v8 9 224285 -NCIT:C140368 Stage II Renal Pelvis Cancer AJCC v8 9 224286 -NCIT:C140371 Stage III Renal Pelvis Cancer AJCC v8 9 224287 -NCIT:C140374 Stage IV Renal Pelvis Cancer AJCC v8 9 224288 -NCIT:C140377 Renal Pelvis Cancer by AJCC v7 Stage 8 224289 -NCIT:C6144 Stage I Renal Pelvis Cancer AJCC v7 9 224290 -NCIT:C6145 Stage II Renal Pelvis Cancer AJCC v7 9 224291 -NCIT:C6146 Stage III Renal Pelvis Cancer AJCC v7 9 224292 -NCIT:C6147 Stage IV Renal Pelvis Cancer AJCC v7 9 224293 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 9 224294 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 10 224295 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 10 224296 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 8 224297 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 224298 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 224299 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 8 224300 -NCIT:C158588 Unresectable Renal Pelvis Urothelial Carcinoma 8 224301 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 8 224302 -NCIT:C180607 Renal Pelvis Urothelial Carcinoma, High Grade 8 224303 -NCIT:C6148 Renal Pelvis Papillary Urothelial Carcinoma 8 224304 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 9 224305 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 9 224306 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 8 224307 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 7 224308 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 8 224309 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 224310 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 224311 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 8 224312 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 224313 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 224314 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 224315 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 224316 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 9 224317 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 8 224318 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 224319 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 9 224320 -NCIT:C8167 Localized Renal Pelvis and Ureter Urothelial Carcinoma 7 224321 -NCIT:C8168 Regional Renal Pelvis and Ureter Urothelial Carcinoma 7 224322 -NCIT:C8254 Recurrent Renal Pelvis and Ureter Urothelial Carcinoma 7 224323 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 8 224324 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 8 224325 -NCIT:C4116 Stage 0 Transitional Cell Carcinoma 5 224326 -NCIT:C140358 Stage 0a Renal Pelvis and Ureter Cancer AJCC v8 6 224327 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 7 224328 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 7 224329 -NCIT:C140361 Stage 0is Renal Pelvis and Ureter Cancer AJCC v8 6 224330 -NCIT:C140362 Stage 0is Renal Pelvis Cancer AJCC v8 7 224331 -NCIT:C140363 Stage 0is Ureter Cancer AJCC v8 7 224332 -NCIT:C39850 Stage 0 Renal Pelvis and Ureter Cancer AJCC v7 6 224333 -NCIT:C6149 Stage 0 Ureter Cancer AJCC v7 7 224334 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 8 224335 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 8 224336 -NCIT:C6193 Stage 0 Renal Pelvis Cancer AJCC v7 7 224337 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 8 224338 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 8 224339 -NCIT:C7517 Stage 0a Renal Pelvis and Ureter Cancer AJCC v7 7 224340 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 8 224341 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 8 224342 -NCIT:C7518 Stage 0is Renal Pelvis and Ureter Cancer AJCC v7 7 224343 -NCIT:C4529 Stage 0is Ureter Cancer AJCC v7 8 224344 -NCIT:C4597 Stage 0is Renal Pelvis Cancer AJCC v7 8 224345 -NCIT:C6188 Stage 0 Bladder Urothelial Carcinoma AJCC v6 and v7 6 224346 -NCIT:C3644 Stage 0is Bladder Urothelial Carcinoma AJCC v6 and v7 7 224347 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 7 224348 -NCIT:C4120 Sarcomatoid Transitional Cell Carcinoma 5 224349 -NCIT:C164252 Invasive Sarcomatoid Urothelial Carcinoma 6 224350 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 7 224351 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 224352 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 7 224353 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 224354 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 8 224355 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 8 224356 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 7 224357 -NCIT:C4122 Papillary Transitional Cell Carcinoma 5 224358 -NCIT:C6148 Renal Pelvis Papillary Urothelial Carcinoma 6 224359 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 7 224360 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 7 224361 -NCIT:C65181 Non-Invasive Papillary Transitional Cell Carcinoma 6 224362 -NCIT:C140358 Stage 0a Renal Pelvis and Ureter Cancer AJCC v8 7 224363 -NCIT:C140359 Stage 0a Renal Pelvis Cancer AJCC v8 8 224364 -NCIT:C140360 Stage 0a Ureter Cancer AJCC v8 8 224365 -NCIT:C158382 Bladder Non-Invasive Papillary Urothelial Carcinoma 7 224366 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 8 224367 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 8 224368 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 8 224369 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 8 224370 -NCIT:C191673 Non-Invasive Papillary Urothelial Carcinoma, Low Grade 7 224371 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 8 224372 -NCIT:C191675 Non-Invasive Papillary Urothelial Carcinoma, High Grade 7 224373 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 8 224374 -NCIT:C7517 Stage 0a Renal Pelvis and Ureter Cancer AJCC v7 7 224375 -NCIT:C6202 Stage 0a Renal Pelvis Cancer AJCC v7 8 224376 -NCIT:C6203 Stage 0a Ureter Cancer AJCC v7 8 224377 -NCIT:C65182 Micropapillary Transitional Cell Carcinoma 6 224378 -NCIT:C191686 Invasive Micropapillary Urothelial Carcinoma 7 224379 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 8 224380 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 224381 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 8 224382 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 224383 -NCIT:C7383 Bladder Papillary Urothelial Carcinoma 6 224384 -NCIT:C158382 Bladder Non-Invasive Papillary Urothelial Carcinoma 7 224385 -NCIT:C140417 Stage 0a Bladder Cancer AJCC v8 8 224386 -NCIT:C27875 Bladder Non-Invasive Papillary Urothelial Carcinoma, Low Grade 8 224387 -NCIT:C27876 Bladder Non-Invasive Papillary Urothelial Carcinoma, High Grade 8 224388 -NCIT:C9267 Stage 0a Bladder Urothelial Carcinoma AJCC v6 and v7 8 224389 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 7 224390 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 224391 -NCIT:C5240 Ovarian Transitional Cell Carcinoma 5 224392 -NCIT:C153819 Recurrent Ovarian Transitional Cell Carcinoma 6 224393 -NCIT:C178682 Refractory Ovarian Transitional Cell Carcinoma 6 224394 -NCIT:C2970 Adenoid Cystic Carcinoma 4 224395 -NCIT:C157638 Metastatic Adenoid Cystic Carcinoma 5 224396 -NCIT:C156089 Metastatic Oral Cavity Adenoid Cystic Carcinoma 6 224397 -NCIT:C164012 Advanced Adenoid Cystic Carcinoma 6 224398 -NCIT:C175669 Locally Advanced Adenoid Cystic Carcinoma 6 224399 -NCIT:C157639 Recurrent Adenoid Cystic Carcinoma 5 224400 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 6 224401 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 6 224402 -NCIT:C8216 Recurrent Oral Cavity Adenoid Cystic Carcinoma 6 224403 -NCIT:C164013 Unresectable Adenoid Cystic Carcinoma 5 224404 -NCIT:C175340 Lacrimal Drainage System Adenoid Cystic Carcinoma 5 224405 -NCIT:C175668 Refractory Adenoid Cystic Carcinoma 5 224406 -NCIT:C40261 Vaginal Adenoid Cystic Carcinoma 5 224407 -NCIT:C40295 Bartholin Gland Adenoid Cystic Carcinoma 5 224408 -NCIT:C4471 Adenoid Cystic Skin Carcinoma 5 224409 -NCIT:C4540 Lacrimal Gland Adenoid Cystic Carcinoma 5 224410 -NCIT:C5130 Breast Adenoid Cystic Carcinoma 5 224411 -NCIT:C5342 Esophageal Adenoid Cystic Carcinoma 5 224412 -NCIT:C5539 Prostate Adenoid Cystic Carcinoma 5 224413 -NCIT:C5666 Lung Adenoid Cystic Carcinoma 5 224414 -NCIT:C5818 Pharyngeal Adenoid Cystic Carcinoma 5 224415 -NCIT:C173340 Nasopharyngeal Adenoid Cystic Carcinoma 6 224416 -NCIT:C6241 Oropharyngeal Adenoid Cystic Carcinoma 6 224417 -NCIT:C6019 Paranasal Sinus Adenoid Cystic Carcinoma 5 224418 -NCIT:C6238 Ethmoid Sinus Adenoid Cystic Carcinoma 6 224419 -NCIT:C6239 Maxillary Sinus Adenoid Cystic Carcinoma 6 224420 -NCIT:C6051 Tracheal Adenoid Cystic Carcinoma 5 224421 -NCIT:C6346 Cervical Adenoid Cystic Carcinoma 5 224422 -NCIT:C8026 Salivary Gland Adenoid Cystic Carcinoma 5 224423 -NCIT:C5905 Major Salivary Gland Adenoid Cystic Carcinoma 6 224424 -NCIT:C5935 Submandibular Gland Adenoid Cystic Carcinoma 7 224425 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 8 224426 -NCIT:C5937 Parotid Gland Adenoid Cystic Carcinoma 7 224427 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 8 224428 -NCIT:C5936 Minor Salivary Gland Adenoid Cystic Carcinoma 6 224429 -NCIT:C8179 Oral Cavity Adenoid Cystic Carcinoma 5 224430 -NCIT:C156089 Metastatic Oral Cavity Adenoid Cystic Carcinoma 6 224431 -NCIT:C171028 Tongue Adenoid Cystic Carcinoma 6 224432 -NCIT:C5991 Posterior Tongue Adenoid Cystic Carcinoma 7 224433 -NCIT:C6251 Anterior Tongue Adenoid Cystic Carcinoma 7 224434 -NCIT:C6213 Hard Palate Adenoid Cystic Carcinoma 6 224435 -NCIT:C8180 Floor of Mouth Adenoid Cystic Carcinoma 6 224436 -NCIT:C8200 Stage I Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 6 224437 -NCIT:C8204 Stage II Oral Cavity Adenoid Cystic Carcinoma 6 224438 -NCIT:C8208 Stage III Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 6 224439 -NCIT:C8212 Stage IV Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 6 224440 -NCIT:C5863 Stage IVA Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 7 224441 -NCIT:C5864 Stage IVB Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 7 224442 -NCIT:C5865 Stage IVC Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 7 224443 -NCIT:C8216 Recurrent Oral Cavity Adenoid Cystic Carcinoma 6 224444 -NCIT:C9462 Laryngeal Adenoid Cystic Carcinoma 5 224445 -NCIT:C35850 Head and Neck Carcinoma 4 224446 -NCIT:C126465 Metastatic Head and Neck Carcinoma 5 224447 -NCIT:C129861 Advanced Head and Neck Carcinoma 6 224448 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 7 224449 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 224450 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 224451 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 224452 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 224453 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 224454 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 224455 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 224456 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 7 224457 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 224458 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 8 224459 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 8 224460 -NCIT:C170784 Advanced Pharyngeal Carcinoma 7 224461 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 8 224462 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 224463 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 224464 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 224465 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 224466 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 224467 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 8 224468 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 224469 -NCIT:C177723 Advanced Salivary Gland Carcinoma 7 224470 -NCIT:C133193 Metastatic Thyroid Gland Carcinoma 6 224471 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 7 224472 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 224473 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 224474 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 7 224475 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 224476 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 8 224477 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 8 224478 -NCIT:C170831 Metastatic Thyroid Gland Anaplastic Carcinoma 7 224479 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 8 224480 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 8 224481 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 7 224482 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 224483 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 8 224484 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 8 224485 -NCIT:C173979 Metastatic Differentiated Thyroid Gland Carcinoma 7 224486 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 8 224487 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 9 224488 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 10 224489 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 8 224490 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 8 224491 -NCIT:C174046 Metastatic Poorly Differentiated Thyroid Gland Carcinoma 7 224492 -NCIT:C148153 Metastatic Head and Neck Squamous Cell Carcinoma 6 224493 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 7 224494 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 224495 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 224496 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 224497 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 224498 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 224499 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 224500 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 224501 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 7 224502 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 224503 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 224504 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 7 224505 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 224506 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 224507 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 7 224508 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 7 224509 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 224510 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 224511 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 224512 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 8 224513 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 9 224514 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 224515 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 224516 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 8 224517 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 224518 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 224519 -NCIT:C162882 Metastatic Sinonasal Squamous Cell Carcinoma 7 224520 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 224521 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 224522 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 224523 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 224524 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 224525 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 224526 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 224527 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 224528 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 224529 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 224530 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 7 224531 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 7 224532 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 8 224533 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 224534 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 224535 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 224536 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 8 224537 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 224538 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 224539 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 224540 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 224541 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 224542 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 8 224543 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 224544 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 224545 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 224546 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 224547 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 224548 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 224549 -NCIT:C153213 Locally Advanced Head and Neck Carcinoma 6 224550 -NCIT:C158464 Locally Advanced Salivary Gland Carcinoma 7 224551 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 7 224552 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 224553 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 224554 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 224555 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 8 224556 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 9 224557 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 224558 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 224559 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 8 224560 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 224561 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 224562 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 7 224563 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 7 224564 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 224565 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 7 224566 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 224567 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 8 224568 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 224569 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 224570 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 8 224571 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 224572 -NCIT:C165562 Locally Advanced Lip and Oral Cavity Carcinoma 7 224573 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 8 224574 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 224575 -NCIT:C165563 Locally Advanced Paranasal Sinus Carcinoma 7 224576 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 8 224577 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 7 224578 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 224579 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 8 224580 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 8 224581 -NCIT:C156080 Metastatic Pharyngeal Carcinoma 6 224582 -NCIT:C156079 Metastatic Nasopharyngeal Carcinoma 7 224583 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 8 224584 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 224585 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 224586 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 224587 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 224588 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 224589 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 8 224590 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 224591 -NCIT:C156081 Metastatic Hypopharyngeal Carcinoma 7 224592 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 8 224593 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 224594 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 224595 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 8 224596 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 224597 -NCIT:C156082 Metastatic Oropharyngeal Carcinoma 7 224598 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 8 224599 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 224600 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 224601 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 224602 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 8 224603 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 224604 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 224605 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 8 224606 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 224607 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 7 224608 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 224609 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 8 224610 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 224611 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 224612 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 8 224613 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 224614 -NCIT:C170784 Advanced Pharyngeal Carcinoma 7 224615 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 8 224616 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 224617 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 224618 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 224619 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 224620 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 224621 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 8 224622 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 224623 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 7 224624 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 8 224625 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 224626 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 224627 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 224628 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 8 224629 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 224630 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 224631 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 224632 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 224633 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 224634 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 8 224635 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 224636 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 224637 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 224638 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 224639 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 224640 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 224641 -NCIT:C156085 Metastatic Laryngeal Carcinoma 6 224642 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 7 224643 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 224644 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 224645 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 7 224646 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 224647 -NCIT:C156086 Metastatic Lip and Oral Cavity Carcinoma 6 224648 -NCIT:C156087 Metastatic Oral Cavity Carcinoma 7 224649 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 224650 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 224651 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 224652 -NCIT:C156089 Metastatic Oral Cavity Adenoid Cystic Carcinoma 8 224653 -NCIT:C156090 Metastatic Oral Cavity Mucoepidermoid Carcinoma 8 224654 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 8 224655 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 224656 -NCIT:C156088 Metastatic Lip Carcinoma 7 224657 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 224658 -NCIT:C165562 Locally Advanced Lip and Oral Cavity Carcinoma 7 224659 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 8 224660 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 224661 -NCIT:C158463 Metastatic Salivary Gland Carcinoma 6 224662 -NCIT:C158464 Locally Advanced Salivary Gland Carcinoma 7 224663 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 7 224664 -NCIT:C177723 Advanced Salivary Gland Carcinoma 7 224665 -NCIT:C5899 Stage IV Major Salivary Gland Carcinoma with Metastasis 7 224666 -NCIT:C9044 Metastatic Parathyroid Gland Carcinoma 6 224667 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 7 224668 -NCIT:C151907 Refractory Head and Neck Carcinoma 5 224669 -NCIT:C142983 Refractory Thyroid Gland Carcinoma 6 224670 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 7 224671 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 8 224672 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 8 224673 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 9 224674 -NCIT:C170832 Refractory Thyroid Gland Anaplastic Carcinoma 7 224675 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 7 224676 -NCIT:C148152 Refractory Head and Neck Squamous Cell Carcinoma 6 224677 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 7 224678 -NCIT:C148383 Refractory Laryngeal Squamous Cell Carcinoma 7 224679 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 7 224680 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 7 224681 -NCIT:C148401 Refractory Sinonasal Squamous Cell Carcinoma 7 224682 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 224683 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 224684 -NCIT:C148434 Refractory Nasopharyngeal Carcinoma 6 224685 -NCIT:C177722 Refractory Salivary Gland Carcinoma 6 224686 -NCIT:C179151 Platinum-Resistant Head and Neck Carcinoma 6 224687 -NCIT:C160978 Head and Neck Sebaceous Carcinoma 5 224688 -NCIT:C173648 Salivary Gland Sebaceous Carcinoma 6 224689 -NCIT:C160980 Head and Neck Neuroendocrine Carcinoma 5 224690 -NCIT:C160981 Head and Neck Small Cell Neuroendocrine Carcinoma 6 224691 -NCIT:C116318 Sinonasal Small Cell Neuroendocrine Carcinoma 7 224692 -NCIT:C35703 Salivary Gland Small Cell Neuroendocrine Carcinoma 7 224693 -NCIT:C5956 Minor Salivary Gland Small Cell Neuroendocrine Carcinoma 8 224694 -NCIT:C6025 Laryngeal Small Cell Neuroendocrine Carcinoma 7 224695 -NCIT:C160982 Head and Neck Large Cell Neuroendocrine Carcinoma 6 224696 -NCIT:C173091 Sinonasal Large Cell Neuroendocrine Carcinoma 7 224697 -NCIT:C173395 Laryngeal Large Cell Neuroendocrine Carcinoma 7 224698 -NCIT:C173650 Salivary Gland Large Cell Neuroendocrine Carcinoma 7 224699 -NCIT:C173089 Sinonasal Neuroendocrine Carcinoma 6 224700 -NCIT:C116318 Sinonasal Small Cell Neuroendocrine Carcinoma 7 224701 -NCIT:C173091 Sinonasal Large Cell Neuroendocrine Carcinoma 7 224702 -NCIT:C173390 Laryngeal Neuroendocrine Carcinoma 6 224703 -NCIT:C173395 Laryngeal Large Cell Neuroendocrine Carcinoma 7 224704 -NCIT:C6025 Laryngeal Small Cell Neuroendocrine Carcinoma 7 224705 -NCIT:C173587 Head and Neck Merkel Cell Carcinoma 6 224706 -NCIT:C173653 Salivary Gland Neuroendocrine Carcinoma 6 224707 -NCIT:C173650 Salivary Gland Large Cell Neuroendocrine Carcinoma 7 224708 -NCIT:C35703 Salivary Gland Small Cell Neuroendocrine Carcinoma 7 224709 -NCIT:C5956 Minor Salivary Gland Small Cell Neuroendocrine Carcinoma 8 224710 -NCIT:C3879 Thyroid Gland Medullary Carcinoma 6 224711 -NCIT:C123905 Childhood Thyroid Gland Medullary Carcinoma 7 224712 -NCIT:C141041 Thyroid Gland Medullary Carcinoma by AJCC v7 Stage 7 224713 -NCIT:C6133 Stage I Thyroid Gland Medullary Carcinoma AJCC v7 8 224714 -NCIT:C6134 Stage II Thyroid Gland Medullary Carcinoma AJCC v7 8 224715 -NCIT:C6135 Stage III Thyroid Gland Medullary Carcinoma AJCC v7 8 224716 -NCIT:C6136 Stage IV Thyroid Gland Medullary Carcinoma AJCC v7 8 224717 -NCIT:C87549 Stage IVA Thyroid Gland Medullary Carcinoma AJCC v7 9 224718 -NCIT:C87550 Stage IVB Thyroid Gland Medullary Carcinoma AJCC v7 9 224719 -NCIT:C87551 Stage IVC Thyroid Gland Medullary Carcinoma AJCC v7 9 224720 -NCIT:C141042 Thyroid Gland Medullary Carcinoma by AJCC v8 Stage 7 224721 -NCIT:C141043 Stage I Thyroid Gland Medullary Carcinoma AJCC v8 8 224722 -NCIT:C141044 Stage II Thyroid Gland Medullary Carcinoma AJCC v8 8 224723 -NCIT:C141045 Stage III Thyroid Gland Medullary Carcinoma AJCC v8 8 224724 -NCIT:C141046 Stage IV Thyroid Gland Medullary Carcinoma AJCC v8 8 224725 -NCIT:C141047 Stage IVA Thyroid Gland Medullary Carcinoma AJCC v8 9 224726 -NCIT:C141048 Stage IVB Thyroid Gland Medullary Carcinoma AJCC v8 9 224727 -NCIT:C141049 Stage IVC Thyroid Gland Medullary Carcinoma AJCC v8 9 224728 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 7 224729 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 8 224730 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 7 224731 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 224732 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 224733 -NCIT:C163974 Unresectable Thyroid Gland Medullary Carcinoma 7 224734 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 8 224735 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 7 224736 -NCIT:C4193 Thyroid Gland Medullary Carcinoma with Amyloid Stroma 7 224737 -NCIT:C46098 Sporadic Thyroid Gland Medullary Carcinoma 7 224738 -NCIT:C46103 Sporadic Thyroid Gland Micromedullary Carcinoma 8 224739 -NCIT:C46099 Hereditary Thyroid Gland Medullary Carcinoma 7 224740 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 8 224741 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 8 224742 -NCIT:C162569 Localized Head and Neck Carcinoma 5 224743 -NCIT:C7826 Localized Parathyroid Gland Carcinoma 6 224744 -NCIT:C165174 Unresectable Head and Neck Carcinoma 5 224745 -NCIT:C129784 Unresectable Thyroid Gland Carcinoma 6 224746 -NCIT:C163974 Unresectable Thyroid Gland Medullary Carcinoma 7 224747 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 8 224748 -NCIT:C168572 Unresectable Differentiated Thyroid Gland Carcinoma 7 224749 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 8 224750 -NCIT:C174571 Unresectable Thyroid Gland Follicular Carcinoma 8 224751 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 9 224752 -NCIT:C170833 Unresectable Thyroid Gland Anaplastic Carcinoma 7 224753 -NCIT:C174569 Unresectable Poorly Differentiated Thyroid Gland Carcinoma 7 224754 -NCIT:C136427 Unresectable Head and Neck Squamous Cell Carcinoma 6 224755 -NCIT:C162833 Unresectable Oropharyngeal Squamous Cell Carcinoma 7 224756 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 8 224757 -NCIT:C172644 Unresectable Oral Cavity Squamous Cell Carcinoma 7 224758 -NCIT:C172645 Unresectable Laryngeal Squamous Cell Carcinoma 7 224759 -NCIT:C172646 Unresectable Hypopharyngeal Squamous Cell Carcinoma 7 224760 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 7 224761 -NCIT:C172651 Unresectable Salivary Gland Squamous Cell Carcinoma 7 224762 -NCIT:C176513 Unresectable Sinonasal Squamous Cell Carcinoma 7 224763 -NCIT:C172648 Unresectable Paranasal Sinus Squamous Cell Carcinoma 8 224764 -NCIT:C176514 Unresectable Nasal Cavity Squamous Cell Carcinoma 8 224765 -NCIT:C165176 Unresectable Nasopharyngeal Carcinoma 6 224766 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 7 224767 -NCIT:C174034 Unresectable Salivary Gland Carcinoma 6 224768 -NCIT:C172651 Unresectable Salivary Gland Squamous Cell Carcinoma 7 224769 -NCIT:C173087 Head and Neck NUT Carcinoma 5 224770 -NCIT:C173088 Sinonasal NUT Carcinoma 6 224771 -NCIT:C190278 Childhood Head and Neck NUT Carcinoma 6 224772 -NCIT:C173588 Head and Neck Heterotopia-Associated Carcinoma 5 224773 -NCIT:C34447 Head and Neck Squamous Cell Carcinoma 5 224774 -NCIT:C102872 Pharyngeal Squamous Cell Carcinoma 6 224775 -NCIT:C167265 Nasopharyngeal Squamous Cell Carcinoma 7 224776 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 8 224777 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 224778 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 224779 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 224780 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 224781 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 224782 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 224783 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 224784 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 224785 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 8 224786 -NCIT:C54360 Nasopharyngeal Basaloid Carcinoma 8 224787 -NCIT:C7373 Nasopharyngeal Nonkeratinizing Carcinoma 8 224788 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 224789 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 224790 -NCIT:C54389 Nasopharyngeal Differentiated Carcinoma 9 224791 -NCIT:C8023 Nasopharyngeal Undifferentiated Carcinoma 9 224792 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 224793 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 10 224794 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 224795 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 224796 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 224797 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 224798 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 224799 -NCIT:C7992 Nasopharyngeal Keratinizing Squamous Cell Carcinoma 8 224800 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 224801 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 9 224802 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 224803 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 224804 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 224805 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 224806 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 224807 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 224808 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 224809 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 224810 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 7 224811 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 8 224812 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 224813 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 224814 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 224815 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 8 224816 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 224817 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 224818 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 224819 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 224820 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 224821 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 8 224822 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 224823 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 224824 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 224825 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 224826 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 224827 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 224828 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 7 224829 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 224830 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 224831 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 224832 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 224833 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 224834 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 224835 -NCIT:C35693 Posterior Pharyngeal Wall Squamous Cell Carcinoma 7 224836 -NCIT:C4043 Hypopharyngeal Squamous Cell Carcinoma 7 224837 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 8 224838 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 8 224839 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 224840 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 224841 -NCIT:C172646 Unresectable Hypopharyngeal Squamous Cell Carcinoma 8 224842 -NCIT:C4943 Pyriform Fossa Squamous Cell Carcinoma 8 224843 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 8 224844 -NCIT:C8185 Postcricoid Squamous Cell Carcinoma 8 224845 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 8 224846 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 8 224847 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 8 224848 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 8 224849 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 224850 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 224851 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 224852 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 224853 -NCIT:C8181 Oropharyngeal Squamous Cell Carcinoma 7 224854 -NCIT:C126750 Oropharyngeal Poorly Differentiated Carcinoma 8 224855 -NCIT:C126751 Oropharyngeal Basaloid Carcinoma 8 224856 -NCIT:C147906 Oropharyngeal p16INK4a-Negative Squamous Cell Carcinoma 8 224857 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 8 224858 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 8 224859 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 224860 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 224861 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 224862 -NCIT:C162787 Resectable Oropharyngeal Squamous Cell Carcinoma 8 224863 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 9 224864 -NCIT:C162833 Unresectable Oropharyngeal Squamous Cell Carcinoma 8 224865 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 9 224866 -NCIT:C173414 Oropharyngeal Human Papillomavirus-Negative Squamous Cell Carcinoma 8 224867 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 8 224868 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 8 224869 -NCIT:C68610 Oropharyngeal Undifferentiated Carcinoma 8 224870 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 9 224871 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 9 224872 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 9 224873 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 9 224874 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 224875 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 224876 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 224877 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 224878 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 9 224879 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 9 224880 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 9 224881 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 9 224882 -NCIT:C8183 Tonsillar Squamous Cell Carcinoma 8 224883 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 9 224884 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 8 224885 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 9 224886 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 8 224887 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 9 224888 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 8 224889 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 9 224890 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 8 224891 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 9 224892 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 224893 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 224894 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 224895 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 9 224896 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 224897 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 9 224898 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 224899 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 9 224900 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 224901 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 224902 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 224903 -NCIT:C87055 Oropharyngeal Human Papillomavirus-Positive Squamous Cell Carcinoma 8 224904 -NCIT:C132012 Resectable Head and Neck Squamous Cell Carcinoma 6 224905 -NCIT:C162787 Resectable Oropharyngeal Squamous Cell Carcinoma 7 224906 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 8 224907 -NCIT:C162943 Resectable Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 224908 -NCIT:C133252 Cutaneous Squamous Cell Carcinoma of the Head and Neck 6 224909 -NCIT:C133253 Cutaneous Squamous Cell Carcinoma of the Head and Neck by AJCC v8 Stage 7 224910 -NCIT:C133255 Stage 0 Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 224911 -NCIT:C133256 Stage I Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 224912 -NCIT:C133257 Stage II Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 224913 -NCIT:C133258 Stage III Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 224914 -NCIT:C133259 Stage IV Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 224915 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 224916 -NCIT:C162943 Resectable Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 224917 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 224918 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 224919 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 224920 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 224921 -NCIT:C6083 External Ear Squamous Cell Carcinoma 7 224922 -NCIT:C133709 Recurrent Head and Neck Squamous Cell Carcinoma 6 224923 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 224924 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 224925 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 224926 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 224927 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 224928 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 224929 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 224930 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 224931 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 224932 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 7 224933 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 224934 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 224935 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 224936 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 224937 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 224938 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 224939 -NCIT:C176682 Locally Recurrent Head and Neck Squamous Cell Carcinoma 7 224940 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 7 224941 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 224942 -NCIT:C136427 Unresectable Head and Neck Squamous Cell Carcinoma 6 224943 -NCIT:C162833 Unresectable Oropharyngeal Squamous Cell Carcinoma 7 224944 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 8 224945 -NCIT:C172644 Unresectable Oral Cavity Squamous Cell Carcinoma 7 224946 -NCIT:C172645 Unresectable Laryngeal Squamous Cell Carcinoma 7 224947 -NCIT:C172646 Unresectable Hypopharyngeal Squamous Cell Carcinoma 7 224948 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 7 224949 -NCIT:C172651 Unresectable Salivary Gland Squamous Cell Carcinoma 7 224950 -NCIT:C176513 Unresectable Sinonasal Squamous Cell Carcinoma 7 224951 -NCIT:C172648 Unresectable Paranasal Sinus Squamous Cell Carcinoma 8 224952 -NCIT:C176514 Unresectable Nasal Cavity Squamous Cell Carcinoma 8 224953 -NCIT:C148152 Refractory Head and Neck Squamous Cell Carcinoma 6 224954 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 7 224955 -NCIT:C148383 Refractory Laryngeal Squamous Cell Carcinoma 7 224956 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 7 224957 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 7 224958 -NCIT:C148401 Refractory Sinonasal Squamous Cell Carcinoma 7 224959 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 224960 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 224961 -NCIT:C148153 Metastatic Head and Neck Squamous Cell Carcinoma 6 224962 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 7 224963 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 224964 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 224965 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 224966 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 224967 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 224968 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 224969 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 224970 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 7 224971 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 224972 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 224973 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 7 224974 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 224975 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 224976 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 7 224977 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 7 224978 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 224979 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 224980 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 224981 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 8 224982 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 9 224983 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 224984 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 224985 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 8 224986 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 224987 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 224988 -NCIT:C162882 Metastatic Sinonasal Squamous Cell Carcinoma 7 224989 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 224990 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 224991 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 224992 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 224993 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 224994 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 224995 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 224996 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 224997 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 224998 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 224999 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 7 225000 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 7 225001 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 8 225002 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 225003 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 225004 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 225005 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 8 225006 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 225007 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 225008 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 225009 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 225010 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 225011 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 8 225012 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 225013 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 225014 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 225015 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 225016 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 225017 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 225018 -NCIT:C162770 ASPH-Positive Head and Neck Squamous Cell Carcinoma 6 225019 -NCIT:C171023 Human Papillomavirus-Related Mucosal Head and Neck Squamous Cell Carcinoma 6 225020 -NCIT:C173078 Sinonasal Human Papillomavirus-Related Carcinoma with Adenoid Cystic-Like Features 7 225021 -NCIT:C87055 Oropharyngeal Human Papillomavirus-Positive Squamous Cell Carcinoma 7 225022 -NCIT:C37290 Head and Neck Basaloid Carcinoma 6 225023 -NCIT:C126751 Oropharyngeal Basaloid Carcinoma 7 225024 -NCIT:C129873 Floor of Mouth Basaloid Squamous Cell Carcinoma 7 225025 -NCIT:C54334 Laryngeal Basaloid Carcinoma 7 225026 -NCIT:C54360 Nasopharyngeal Basaloid Carcinoma 7 225027 -NCIT:C4044 Laryngeal Squamous Cell Carcinoma 6 225028 -NCIT:C148383 Refractory Laryngeal Squamous Cell Carcinoma 7 225029 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 7 225030 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 225031 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 225032 -NCIT:C172645 Unresectable Laryngeal Squamous Cell Carcinoma 7 225033 -NCIT:C4945 Supraglottic Squamous Cell Carcinoma 7 225034 -NCIT:C181714 Epiglottic Squamous Cell Carcinoma 8 225035 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 9 225036 -NCIT:C8191 Supraglottic Verrucous Carcinoma 8 225037 -NCIT:C54334 Laryngeal Basaloid Carcinoma 7 225038 -NCIT:C54335 Laryngeal Papillary Squamous Cell Carcinoma 7 225039 -NCIT:C54336 Laryngeal Squamous Cell Carcinoma, Spindle Cell Variant 7 225040 -NCIT:C54337 Laryngeal Acantholytic Squamous Cell Carcinoma 7 225041 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 7 225042 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 8 225043 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 8 225044 -NCIT:C8186 Glottic Squamous Cell Carcinoma 7 225045 -NCIT:C8189 Glottis Verrucous Carcinoma 8 225046 -NCIT:C8187 Subglottic Squamous Cell Carcinoma 7 225047 -NCIT:C8190 Subglottic Verrucous Carcinoma 8 225048 -NCIT:C8188 Laryngeal Verrucous Carcinoma 7 225049 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 8 225050 -NCIT:C8189 Glottis Verrucous Carcinoma 8 225051 -NCIT:C8190 Subglottic Verrucous Carcinoma 8 225052 -NCIT:C8191 Supraglottic Verrucous Carcinoma 8 225053 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 225054 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 225055 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 225056 -NCIT:C8244 Stage IV Laryngeal Verrucous Carcinoma AJCC v7 8 225057 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 9 225058 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 9 225059 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 9 225060 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 225061 -NCIT:C8237 Stage I Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 7 225062 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 225063 -NCIT:C8239 Stage II Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 7 225064 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 225065 -NCIT:C8241 Stage III Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 7 225066 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 225067 -NCIT:C8243 Stage IV Laryngeal Squamous Cell Carcinoma AJCC v7 7 225068 -NCIT:C6122 Stage IVA Laryngeal Squamous Cell Carcinoma AJCC v7 8 225069 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 9 225070 -NCIT:C6123 Stage IVB Laryngeal Squamous Cell Carcinoma AJCC v7 8 225071 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 9 225072 -NCIT:C6124 Stage IVC Laryngeal Squamous Cell Carcinoma AJCC v7 8 225073 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 9 225074 -NCIT:C8244 Stage IV Laryngeal Verrucous Carcinoma AJCC v7 8 225075 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 9 225076 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 9 225077 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 9 225078 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 7 225079 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 225080 -NCIT:C42690 Lip and Oral Cavity Squamous Cell Carcinoma 6 225081 -NCIT:C115057 Stage I Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 225082 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 225083 -NCIT:C115058 Stage II Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 225084 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 225085 -NCIT:C115059 Stage III Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 225086 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 225087 -NCIT:C115060 Stage IV Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 225088 -NCIT:C115061 Stage IVA Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 225089 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 225090 -NCIT:C115062 Stage IVB Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 225091 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 225092 -NCIT:C115063 Stage IVC Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 225093 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 225094 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 225095 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 225096 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 225097 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 225098 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 225099 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 225100 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 225101 -NCIT:C4042 Lip Squamous Cell Carcinoma 7 225102 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 225103 -NCIT:C4833 Oral Cavity Squamous Cell Carcinoma 7 225104 -NCIT:C129857 Gingival Squamous Cell Carcinoma 8 225105 -NCIT:C129289 Gingival Spindle Cell Carcinoma 9 225106 -NCIT:C8171 Lower Gingival Squamous Cell Carcinoma 9 225107 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 10 225108 -NCIT:C8172 Retromolar Trigone Squamous Cell Carcinoma 9 225109 -NCIT:C8173 Upper Gingival Squamous Cell Carcinoma 9 225110 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 10 225111 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 8 225112 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 225113 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 225114 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 225115 -NCIT:C170774 Alveolar Ridge Squamous Cell Carcinoma 8 225116 -NCIT:C170775 Upper Alveolar Ridge Squamous Cell Carcinoma 9 225117 -NCIT:C170776 Lower Alveolar Ridge Squamous Cell Carcinoma 9 225118 -NCIT:C172644 Unresectable Oral Cavity Squamous Cell Carcinoma 8 225119 -NCIT:C4040 Buccal Mucosa Squamous Cell Carcinoma 8 225120 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 9 225121 -NCIT:C4041 Floor of Mouth Squamous Cell Carcinoma 8 225122 -NCIT:C129873 Floor of Mouth Basaloid Squamous Cell Carcinoma 9 225123 -NCIT:C4648 Tongue Squamous Cell Carcinoma 8 225124 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 225125 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 225126 -NCIT:C4649 Palate Squamous Cell Carcinoma 8 225127 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 225128 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 225129 -NCIT:C54295 Primary Intraosseous Squamous Cell Carcinoma 8 225130 -NCIT:C54303 Primary Intraosseous Squamous Cell Carcinoma Derived From Keratocystic Odontogenic Tumor 9 225131 -NCIT:C7491 Primary Intraosseous Squamous Cell Carcinoma-Solid Type 9 225132 -NCIT:C7498 Keratinizing Primary Intraosseous Squamous Cell Carcinoma-Solid Type 10 225133 -NCIT:C7499 Non-Keratinizing Primary Intraosseous Squamous Cell Carcinoma -Solid Type 10 225134 -NCIT:C7500 Primary Intraosseous Squamous Cell Carcinoma Derived From Odontogenic Cyst 9 225135 -NCIT:C6052 Stage 0 Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 225136 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 225137 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 225138 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 225139 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 225140 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 225141 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 225142 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 225143 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 225144 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 225145 -NCIT:C8174 Oral Cavity Verrucous Carcinoma 8 225146 -NCIT:C179894 Oral Cavity Carcinoma Cuniculatum 9 225147 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 9 225148 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 9 225149 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 9 225150 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 225151 -NCIT:C54283 Head and Neck Keratinizing Squamous Cell Carcinoma 6 225152 -NCIT:C173077 Sinonasal Keratinizing Squamous Cell Carcinoma 7 225153 -NCIT:C54284 Paranasal Sinus Keratinizing Squamous Cell Carcinoma 8 225154 -NCIT:C54285 Nasal Cavity Keratinizing Squamous Cell Carcinoma 8 225155 -NCIT:C6083 External Ear Squamous Cell Carcinoma 7 225156 -NCIT:C6086 Middle Ear Squamous Cell Carcinoma 7 225157 -NCIT:C7498 Keratinizing Primary Intraosseous Squamous Cell Carcinoma-Solid Type 7 225158 -NCIT:C7992 Nasopharyngeal Keratinizing Squamous Cell Carcinoma 7 225159 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 8 225160 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 8 225161 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 8 225162 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 8 225163 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 8 225164 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 8 225165 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 225166 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 225167 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 225168 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 8 225169 -NCIT:C68611 Sinonasal Squamous Cell Carcinoma 6 225170 -NCIT:C115070 Stage I Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 7 225171 -NCIT:C115071 Stage II Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 7 225172 -NCIT:C115072 Stage III Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 7 225173 -NCIT:C115073 Stage IV Sinonasal Squamous Cell Carcinoma AJCC v7 7 225174 -NCIT:C115074 Stage IVA Sinonasal Squamous Cell Carcinoma AJCC v7 8 225175 -NCIT:C115075 Stage IVB Sinonasal Squamous Cell Carcinoma AJCC v7 8 225176 -NCIT:C115076 Stage IVC Sinonasal Squamous Cell Carcinoma AJCC v7 8 225177 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 225178 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 225179 -NCIT:C148401 Refractory Sinonasal Squamous Cell Carcinoma 7 225180 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 225181 -NCIT:C162882 Metastatic Sinonasal Squamous Cell Carcinoma 7 225182 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 225183 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 225184 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 225185 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 225186 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 225187 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 225188 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 225189 -NCIT:C173077 Sinonasal Keratinizing Squamous Cell Carcinoma 7 225190 -NCIT:C54284 Paranasal Sinus Keratinizing Squamous Cell Carcinoma 8 225191 -NCIT:C54285 Nasal Cavity Keratinizing Squamous Cell Carcinoma 8 225192 -NCIT:C173079 Sinonasal Spindle Cell Squamous Cell Carcinoma 7 225193 -NCIT:C176513 Unresectable Sinonasal Squamous Cell Carcinoma 7 225194 -NCIT:C172648 Unresectable Paranasal Sinus Squamous Cell Carcinoma 8 225195 -NCIT:C176514 Unresectable Nasal Cavity Squamous Cell Carcinoma 8 225196 -NCIT:C54287 Sinonasal Non-Keratinizing Squamous Cell Carcinoma 7 225197 -NCIT:C173078 Sinonasal Human Papillomavirus-Related Carcinoma with Adenoid Cystic-Like Features 8 225198 -NCIT:C173080 Sinonasal Lymphoepithelial Carcinoma 8 225199 -NCIT:C8192 Nasal Cavity Squamous Cell Carcinoma 7 225200 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 225201 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 225202 -NCIT:C176514 Unresectable Nasal Cavity Squamous Cell Carcinoma 8 225203 -NCIT:C54285 Nasal Cavity Keratinizing Squamous Cell Carcinoma 8 225204 -NCIT:C8193 Paranasal Sinus Squamous Cell Carcinoma 7 225205 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 225206 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 225207 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 225208 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 225209 -NCIT:C172648 Unresectable Paranasal Sinus Squamous Cell Carcinoma 8 225210 -NCIT:C54284 Paranasal Sinus Keratinizing Squamous Cell Carcinoma 8 225211 -NCIT:C6064 Maxillary Sinus Squamous Cell Carcinoma 8 225212 -NCIT:C6065 Ethmoid Sinus Squamous Cell Carcinoma 8 225213 -NCIT:C6066 Sphenoid Sinus Squamous Cell Carcinoma 8 225214 -NCIT:C6067 Frontal Sinus Squamous Cell Carcinoma 8 225215 -NCIT:C7991 Salivary Gland Squamous Cell Carcinoma 6 225216 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 7 225217 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 225218 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 225219 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 225220 -NCIT:C172651 Unresectable Salivary Gland Squamous Cell Carcinoma 7 225221 -NCIT:C181161 Major Salivary Gland Squamous Cell Carcinoma 7 225222 -NCIT:C5942 Parotid Gland Squamous Cell Carcinoma 8 225223 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 9 225224 -NCIT:C5943 Submandibular Gland Squamous Cell Carcinoma 8 225225 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 9 225226 -NCIT:C5959 Minor Salivary Gland Squamous Cell Carcinoma 7 225227 -NCIT:C8022 Salivary Gland Poorly Differentiated Squamous Cell Carcinoma 7 225228 -NCIT:C54262 Ear Carcinoma 5 225229 -NCIT:C6081 External Ear Carcinoma 6 225230 -NCIT:C4176 Ceruminous Adenocarcinoma 7 225231 -NCIT:C6082 External Ear Basal Cell Carcinoma 7 225232 -NCIT:C6083 External Ear Squamous Cell Carcinoma 7 225233 -NCIT:C6089 Middle Ear Carcinoma 6 225234 -NCIT:C6086 Middle Ear Squamous Cell Carcinoma 7 225235 -NCIT:C6848 Middle Ear Adenocarcinoma 7 225236 -NCIT:C91741 Middle Ear Carcinoma In Situ 7 225237 -NCIT:C54293 Sinonasal Carcinoma 5 225238 -NCIT:C133074 Sinonasal Cancer by AJCC v8 Stage 6 225239 -NCIT:C133076 Stage I Sinonasal Cancer AJCC v8 7 225240 -NCIT:C133077 Stage II Sinonasal Cancer AJCC v8 7 225241 -NCIT:C133078 Stage III Sinonasal Cancer AJCC v8 7 225242 -NCIT:C133079 Stage IV Sinonasal Cancer AJCC v8 7 225243 -NCIT:C133080 Stage IVA Sinonasal Cancer AJCC v8 8 225244 -NCIT:C133081 Stage IVB Sinonasal Cancer AJCC v8 8 225245 -NCIT:C133082 Stage IVC Sinonasal Cancer AJCC v8 8 225246 -NCIT:C87498 Stage 0 Sinonasal Cancer AJCC v6, v7, and v8 7 225247 -NCIT:C4589 Stage 0 Nasal Cavity Cancer AJCC v6, v7, and v8 8 225248 -NCIT:C94768 Stage 0 Paranasal Sinus Cancer AJCC v6, v7, and v8 8 225249 -NCIT:C154324 Sinonasal Poorly Differentiated Carcinoma 6 225250 -NCIT:C173088 Sinonasal NUT Carcinoma 7 225251 -NCIT:C160976 Sinonasal Adenocarcinoma 6 225252 -NCIT:C161007 Sinonasal Adenocarcinoma, Salivary-Type 7 225253 -NCIT:C161008 Sinonasal Adenocarcinoma, Non-Salivary-Type 7 225254 -NCIT:C116316 Sinonasal Adenocarcinoma, Intestinal-Type 8 225255 -NCIT:C160984 Sinonasal Adenocarcinoma, Intestinal-Type with Papillary Pattern 9 225256 -NCIT:C160986 Sinonasal Adenocarcinoma, Intestinal-Type with Colonic Pattern 9 225257 -NCIT:C160987 Sinonasal Adenocarcinoma, Intestinal-Type with Solid Pattern 9 225258 -NCIT:C160995 Sinonasal Adenocarcinoma, Intestinal-Type with Mucinous Pattern 9 225259 -NCIT:C161000 Sinonasal Adenocarcinoma, Intestinal-Type with Mixed Pattern 9 225260 -NCIT:C160977 Sinonasal Adenocarcinoma, Non-Intestinal-Type 8 225261 -NCIT:C6015 Nasal Cavity Adenocarcinoma 7 225262 -NCIT:C6017 Paranasal Sinus Adenocarcinoma 7 225263 -NCIT:C6237 Ethmoid Sinus Adenocarcinoma 8 225264 -NCIT:C6240 Maxillary Sinus Adenocarcinoma 8 225265 -NCIT:C173089 Sinonasal Neuroendocrine Carcinoma 6 225266 -NCIT:C116318 Sinonasal Small Cell Neuroendocrine Carcinoma 7 225267 -NCIT:C173091 Sinonasal Large Cell Neuroendocrine Carcinoma 7 225268 -NCIT:C180670 Low Grade Papillary Schneiderian Carcinoma 6 225269 -NCIT:C54294 Sinonasal Undifferentiated Carcinoma 6 225270 -NCIT:C6014 Paranasal Sinus Carcinoma 6 225271 -NCIT:C118818 Childhood Paranasal Sinus Carcinoma 7 225272 -NCIT:C165563 Locally Advanced Paranasal Sinus Carcinoma 7 225273 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 8 225274 -NCIT:C6006 Stage I Paranasal Sinus Cancer 7 225275 -NCIT:C6007 Stage II Paranasal Sinus Cancer AJCC v6 and v7 7 225276 -NCIT:C6008 Stage III Paranasal Sinus Cancer AJCC v6 and v7 7 225277 -NCIT:C6009 Stage IV Paranasal Sinus Cancer AJCC v7 7 225278 -NCIT:C6070 Stage IVA Paranasal Sinus Cancer AJCC v7 8 225279 -NCIT:C6071 Stage IVB Paranasal Sinus Cancer AJCC v7 8 225280 -NCIT:C6072 Stage IVC Paranasal Sinus Cancer AJCC v7 8 225281 -NCIT:C6017 Paranasal Sinus Adenocarcinoma 7 225282 -NCIT:C6237 Ethmoid Sinus Adenocarcinoma 8 225283 -NCIT:C6240 Maxillary Sinus Adenocarcinoma 8 225284 -NCIT:C6018 Paranasal Sinus Mucoepidermoid Carcinoma 7 225285 -NCIT:C6019 Paranasal Sinus Adenoid Cystic Carcinoma 7 225286 -NCIT:C6238 Ethmoid Sinus Adenoid Cystic Carcinoma 8 225287 -NCIT:C6239 Maxillary Sinus Adenoid Cystic Carcinoma 8 225288 -NCIT:C8193 Paranasal Sinus Squamous Cell Carcinoma 7 225289 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 225290 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 225291 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 225292 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 225293 -NCIT:C172648 Unresectable Paranasal Sinus Squamous Cell Carcinoma 8 225294 -NCIT:C54284 Paranasal Sinus Keratinizing Squamous Cell Carcinoma 8 225295 -NCIT:C6064 Maxillary Sinus Squamous Cell Carcinoma 8 225296 -NCIT:C6065 Ethmoid Sinus Squamous Cell Carcinoma 8 225297 -NCIT:C6066 Sphenoid Sinus Squamous Cell Carcinoma 8 225298 -NCIT:C6067 Frontal Sinus Squamous Cell Carcinoma 8 225299 -NCIT:C9332 Maxillary Sinus Carcinoma 7 225300 -NCIT:C6064 Maxillary Sinus Squamous Cell Carcinoma 8 225301 -NCIT:C6239 Maxillary Sinus Adenoid Cystic Carcinoma 8 225302 -NCIT:C6240 Maxillary Sinus Adenocarcinoma 8 225303 -NCIT:C94768 Stage 0 Paranasal Sinus Cancer AJCC v6, v7, and v8 7 225304 -NCIT:C67558 Recurrent Sinonasal Carcinoma 6 225305 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 225306 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 225307 -NCIT:C68611 Sinonasal Squamous Cell Carcinoma 6 225308 -NCIT:C115070 Stage I Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 7 225309 -NCIT:C115071 Stage II Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 7 225310 -NCIT:C115072 Stage III Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 7 225311 -NCIT:C115073 Stage IV Sinonasal Squamous Cell Carcinoma AJCC v7 7 225312 -NCIT:C115074 Stage IVA Sinonasal Squamous Cell Carcinoma AJCC v7 8 225313 -NCIT:C115075 Stage IVB Sinonasal Squamous Cell Carcinoma AJCC v7 8 225314 -NCIT:C115076 Stage IVC Sinonasal Squamous Cell Carcinoma AJCC v7 8 225315 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 225316 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 225317 -NCIT:C148401 Refractory Sinonasal Squamous Cell Carcinoma 7 225318 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 225319 -NCIT:C162882 Metastatic Sinonasal Squamous Cell Carcinoma 7 225320 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 225321 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 225322 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 225323 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 225324 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 225325 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 225326 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 225327 -NCIT:C173077 Sinonasal Keratinizing Squamous Cell Carcinoma 7 225328 -NCIT:C54284 Paranasal Sinus Keratinizing Squamous Cell Carcinoma 8 225329 -NCIT:C54285 Nasal Cavity Keratinizing Squamous Cell Carcinoma 8 225330 -NCIT:C173079 Sinonasal Spindle Cell Squamous Cell Carcinoma 7 225331 -NCIT:C176513 Unresectable Sinonasal Squamous Cell Carcinoma 7 225332 -NCIT:C172648 Unresectable Paranasal Sinus Squamous Cell Carcinoma 8 225333 -NCIT:C176514 Unresectable Nasal Cavity Squamous Cell Carcinoma 8 225334 -NCIT:C54287 Sinonasal Non-Keratinizing Squamous Cell Carcinoma 7 225335 -NCIT:C173078 Sinonasal Human Papillomavirus-Related Carcinoma with Adenoid Cystic-Like Features 8 225336 -NCIT:C173080 Sinonasal Lymphoepithelial Carcinoma 8 225337 -NCIT:C8192 Nasal Cavity Squamous Cell Carcinoma 7 225338 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 225339 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 225340 -NCIT:C176514 Unresectable Nasal Cavity Squamous Cell Carcinoma 8 225341 -NCIT:C54285 Nasal Cavity Keratinizing Squamous Cell Carcinoma 8 225342 -NCIT:C8193 Paranasal Sinus Squamous Cell Carcinoma 7 225343 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 225344 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 225345 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 225346 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 225347 -NCIT:C172648 Unresectable Paranasal Sinus Squamous Cell Carcinoma 8 225348 -NCIT:C54284 Paranasal Sinus Keratinizing Squamous Cell Carcinoma 8 225349 -NCIT:C6064 Maxillary Sinus Squamous Cell Carcinoma 8 225350 -NCIT:C6065 Ethmoid Sinus Squamous Cell Carcinoma 8 225351 -NCIT:C6066 Sphenoid Sinus Squamous Cell Carcinoma 8 225352 -NCIT:C6067 Frontal Sinus Squamous Cell Carcinoma 8 225353 -NCIT:C90528 Sinonasal Cancer by AJCC v6 Stage 6 225354 -NCIT:C67554 Stage I Sinonasal Cancer AJCC v6 and v7 7 225355 -NCIT:C115070 Stage I Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 8 225356 -NCIT:C6006 Stage I Paranasal Sinus Cancer 8 225357 -NCIT:C6013 Stage I Nasal Cavity Cancer AJCC v6 and v7 8 225358 -NCIT:C67555 Stage II Sinonasal Cancer AJCC v6 and v7 7 225359 -NCIT:C115071 Stage II Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 8 225360 -NCIT:C6007 Stage II Paranasal Sinus Cancer AJCC v6 and v7 8 225361 -NCIT:C6012 Stage II Nasal Cavity Cancer AJCC v6 and v7 8 225362 -NCIT:C67556 Stage III Sinonasal Cancer AJCC v6 and v7 7 225363 -NCIT:C115072 Stage III Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 8 225364 -NCIT:C6008 Stage III Paranasal Sinus Cancer AJCC v6 and v7 8 225365 -NCIT:C6011 Stage III Nasal Cavity Cancer AJCC v6 and v7 8 225366 -NCIT:C67557 Stage IV Sinonasal Cancer AJCC v6 7 225367 -NCIT:C87498 Stage 0 Sinonasal Cancer AJCC v6, v7, and v8 7 225368 -NCIT:C4589 Stage 0 Nasal Cavity Cancer AJCC v6, v7, and v8 8 225369 -NCIT:C94768 Stage 0 Paranasal Sinus Cancer AJCC v6, v7, and v8 8 225370 -NCIT:C91255 Sinonasal Cancer by AJCC v7 Stage 6 225371 -NCIT:C67554 Stage I Sinonasal Cancer AJCC v6 and v7 7 225372 -NCIT:C115070 Stage I Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 8 225373 -NCIT:C6006 Stage I Paranasal Sinus Cancer 8 225374 -NCIT:C6013 Stage I Nasal Cavity Cancer AJCC v6 and v7 8 225375 -NCIT:C67555 Stage II Sinonasal Cancer AJCC v6 and v7 7 225376 -NCIT:C115071 Stage II Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 8 225377 -NCIT:C6007 Stage II Paranasal Sinus Cancer AJCC v6 and v7 8 225378 -NCIT:C6012 Stage II Nasal Cavity Cancer AJCC v6 and v7 8 225379 -NCIT:C67556 Stage III Sinonasal Cancer AJCC v6 and v7 7 225380 -NCIT:C115072 Stage III Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 8 225381 -NCIT:C6008 Stage III Paranasal Sinus Cancer AJCC v6 and v7 8 225382 -NCIT:C6011 Stage III Nasal Cavity Cancer AJCC v6 and v7 8 225383 -NCIT:C87498 Stage 0 Sinonasal Cancer AJCC v6, v7, and v8 7 225384 -NCIT:C4589 Stage 0 Nasal Cavity Cancer AJCC v6, v7, and v8 8 225385 -NCIT:C94768 Stage 0 Paranasal Sinus Cancer AJCC v6, v7, and v8 8 225386 -NCIT:C89117 Stage IV Sinonasal Cancer AJCC v7 7 225387 -NCIT:C115073 Stage IV Sinonasal Squamous Cell Carcinoma AJCC v7 8 225388 -NCIT:C115074 Stage IVA Sinonasal Squamous Cell Carcinoma AJCC v7 9 225389 -NCIT:C115075 Stage IVB Sinonasal Squamous Cell Carcinoma AJCC v7 9 225390 -NCIT:C115076 Stage IVC Sinonasal Squamous Cell Carcinoma AJCC v7 9 225391 -NCIT:C6009 Stage IV Paranasal Sinus Cancer AJCC v7 8 225392 -NCIT:C6070 Stage IVA Paranasal Sinus Cancer AJCC v7 9 225393 -NCIT:C6071 Stage IVB Paranasal Sinus Cancer AJCC v7 9 225394 -NCIT:C6072 Stage IVC Paranasal Sinus Cancer AJCC v7 9 225395 -NCIT:C6010 Stage IV Nasal Cavity Cancer 8 225396 -NCIT:C87501 Stage IVA Sinonasal Cancer AJCC v7 8 225397 -NCIT:C115074 Stage IVA Sinonasal Squamous Cell Carcinoma AJCC v7 9 225398 -NCIT:C6070 Stage IVA Paranasal Sinus Cancer AJCC v7 9 225399 -NCIT:C87502 Stage IVB Sinonasal Cancer AJCC v7 8 225400 -NCIT:C115075 Stage IVB Sinonasal Squamous Cell Carcinoma AJCC v7 9 225401 -NCIT:C6071 Stage IVB Paranasal Sinus Cancer AJCC v7 9 225402 -NCIT:C87503 Stage IVC Sinonasal Cancer AJCC v7 8 225403 -NCIT:C115076 Stage IVC Sinonasal Squamous Cell Carcinoma AJCC v7 9 225404 -NCIT:C6072 Stage IVC Paranasal Sinus Cancer AJCC v7 9 225405 -NCIT:C9336 Nasal Cavity Carcinoma 6 225406 -NCIT:C118817 Childhood Nasal Cavity Carcinoma 7 225407 -NCIT:C27389 Carcinoma Arising in Nasal Papillomatosis 7 225408 -NCIT:C4589 Stage 0 Nasal Cavity Cancer AJCC v6, v7, and v8 7 225409 -NCIT:C6010 Stage IV Nasal Cavity Cancer 7 225410 -NCIT:C6011 Stage III Nasal Cavity Cancer AJCC v6 and v7 7 225411 -NCIT:C6012 Stage II Nasal Cavity Cancer AJCC v6 and v7 7 225412 -NCIT:C6013 Stage I Nasal Cavity Cancer AJCC v6 and v7 7 225413 -NCIT:C6015 Nasal Cavity Adenocarcinoma 7 225414 -NCIT:C8192 Nasal Cavity Squamous Cell Carcinoma 7 225415 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 225416 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 225417 -NCIT:C176514 Unresectable Nasal Cavity Squamous Cell Carcinoma 8 225418 -NCIT:C54285 Nasal Cavity Keratinizing Squamous Cell Carcinoma 8 225419 -NCIT:C6077 Neck Carcinoma 5 225420 -NCIT:C35506 Throat Carcinoma 6 225421 -NCIT:C4855 Laryngeal Carcinoma 7 225422 -NCIT:C118811 Childhood Laryngeal Carcinoma 8 225423 -NCIT:C133156 Laryngeal Cancer by AJCC v8 Stage 8 225424 -NCIT:C133158 Stage I Laryngeal Cancer AJCC v8 9 225425 -NCIT:C133159 Stage II Laryngeal Cancer AJCC v8 9 225426 -NCIT:C133160 Stage III Laryngeal Cancer AJCC v8 9 225427 -NCIT:C133161 Stage IV Laryngeal Cancer AJCC v8 9 225428 -NCIT:C133162 Stage IVA Laryngeal Cancer AJCC v8 10 225429 -NCIT:C133163 Stage IVB Laryngeal Cancer AJCC v8 10 225430 -NCIT:C133164 Stage IVC Laryngeal Cancer AJCC v8 10 225431 -NCIT:C9100 Stage 0 Laryngeal Cancer AJCC v6, v7, and V8 9 225432 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 225433 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 11 225434 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 11 225435 -NCIT:C156085 Metastatic Laryngeal Carcinoma 8 225436 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 9 225437 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 10 225438 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 10 225439 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 9 225440 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 10 225441 -NCIT:C173390 Laryngeal Neuroendocrine Carcinoma 8 225442 -NCIT:C173395 Laryngeal Large Cell Neuroendocrine Carcinoma 9 225443 -NCIT:C6025 Laryngeal Small Cell Neuroendocrine Carcinoma 9 225444 -NCIT:C27929 Alcohol-Related Laryngeal Carcinoma 8 225445 -NCIT:C4034 Recurrent Laryngeal Carcinoma 8 225446 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 9 225447 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 10 225448 -NCIT:C4044 Laryngeal Squamous Cell Carcinoma 8 225449 -NCIT:C148383 Refractory Laryngeal Squamous Cell Carcinoma 9 225450 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 9 225451 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 10 225452 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 10 225453 -NCIT:C172645 Unresectable Laryngeal Squamous Cell Carcinoma 9 225454 -NCIT:C4945 Supraglottic Squamous Cell Carcinoma 9 225455 -NCIT:C181714 Epiglottic Squamous Cell Carcinoma 10 225456 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 11 225457 -NCIT:C8191 Supraglottic Verrucous Carcinoma 10 225458 -NCIT:C54334 Laryngeal Basaloid Carcinoma 9 225459 -NCIT:C54335 Laryngeal Papillary Squamous Cell Carcinoma 9 225460 -NCIT:C54336 Laryngeal Squamous Cell Carcinoma, Spindle Cell Variant 9 225461 -NCIT:C54337 Laryngeal Acantholytic Squamous Cell Carcinoma 9 225462 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 9 225463 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 10 225464 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 10 225465 -NCIT:C8186 Glottic Squamous Cell Carcinoma 9 225466 -NCIT:C8189 Glottis Verrucous Carcinoma 10 225467 -NCIT:C8187 Subglottic Squamous Cell Carcinoma 9 225468 -NCIT:C8190 Subglottic Verrucous Carcinoma 10 225469 -NCIT:C8188 Laryngeal Verrucous Carcinoma 9 225470 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 10 225471 -NCIT:C8189 Glottis Verrucous Carcinoma 10 225472 -NCIT:C8190 Subglottic Verrucous Carcinoma 10 225473 -NCIT:C8191 Supraglottic Verrucous Carcinoma 10 225474 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 225475 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 225476 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 225477 -NCIT:C8244 Stage IV Laryngeal Verrucous Carcinoma AJCC v7 10 225478 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 11 225479 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 11 225480 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 11 225481 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 10 225482 -NCIT:C8237 Stage I Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 9 225483 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 225484 -NCIT:C8239 Stage II Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 9 225485 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 225486 -NCIT:C8241 Stage III Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 9 225487 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 225488 -NCIT:C8243 Stage IV Laryngeal Squamous Cell Carcinoma AJCC v7 9 225489 -NCIT:C6122 Stage IVA Laryngeal Squamous Cell Carcinoma AJCC v7 10 225490 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 11 225491 -NCIT:C6123 Stage IVB Laryngeal Squamous Cell Carcinoma AJCC v7 10 225492 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 11 225493 -NCIT:C6124 Stage IVC Laryngeal Squamous Cell Carcinoma AJCC v7 10 225494 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 11 225495 -NCIT:C8244 Stage IV Laryngeal Verrucous Carcinoma AJCC v7 10 225496 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 11 225497 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 11 225498 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 11 225499 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 9 225500 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 10 225501 -NCIT:C4923 Glottis Carcinoma 8 225502 -NCIT:C8186 Glottic Squamous Cell Carcinoma 9 225503 -NCIT:C8189 Glottis Verrucous Carcinoma 10 225504 -NCIT:C54338 Laryngeal Adenosquamous Carcinoma 8 225505 -NCIT:C54339 Laryngeal Undifferentiated Carcinoma 8 225506 -NCIT:C54341 Laryngeal Lymphoepithelial Carcinoma 9 225507 -NCIT:C54342 Laryngeal Giant Cell Carcinoma 9 225508 -NCIT:C5972 Subglottic Carcinoma 8 225509 -NCIT:C8187 Subglottic Squamous Cell Carcinoma 9 225510 -NCIT:C8190 Subglottic Verrucous Carcinoma 10 225511 -NCIT:C5973 Supraglottic Carcinoma 8 225512 -NCIT:C35697 Epiglottic Carcinoma 9 225513 -NCIT:C181714 Epiglottic Squamous Cell Carcinoma 10 225514 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 11 225515 -NCIT:C4945 Supraglottic Squamous Cell Carcinoma 9 225516 -NCIT:C181714 Epiglottic Squamous Cell Carcinoma 10 225517 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 11 225518 -NCIT:C8191 Supraglottic Verrucous Carcinoma 10 225519 -NCIT:C90527 Laryngeal Cancer by AJCC v6 Stage 8 225520 -NCIT:C6868 Stage IV Laryngeal Cancer AJCC v6 9 225521 -NCIT:C8041 Stage I Laryngeal Cancer AJCC v6 and v7 9 225522 -NCIT:C8237 Stage I Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 10 225523 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 11 225524 -NCIT:C8042 Stage II Laryngeal Cancer AJCC v6 and v7 9 225525 -NCIT:C8239 Stage II Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 10 225526 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 11 225527 -NCIT:C8043 Stage III Laryngeal Cancer AJCC v6 and v7 9 225528 -NCIT:C8241 Stage III Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 10 225529 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 11 225530 -NCIT:C9100 Stage 0 Laryngeal Cancer AJCC v6, v7, and V8 9 225531 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 225532 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 11 225533 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 11 225534 -NCIT:C91256 Laryngeal Cancer by AJCC v7 Stage 8 225535 -NCIT:C8041 Stage I Laryngeal Cancer AJCC v6 and v7 9 225536 -NCIT:C8237 Stage I Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 10 225537 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 11 225538 -NCIT:C8042 Stage II Laryngeal Cancer AJCC v6 and v7 9 225539 -NCIT:C8239 Stage II Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 10 225540 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 11 225541 -NCIT:C8043 Stage III Laryngeal Cancer AJCC v6 and v7 9 225542 -NCIT:C8241 Stage III Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 10 225543 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 11 225544 -NCIT:C89091 Stage IV Laryngeal Cancer AJCC v7 9 225545 -NCIT:C6003 Stage IVC Laryngeal Cancer AJCC v7 10 225546 -NCIT:C6124 Stage IVC Laryngeal Squamous Cell Carcinoma AJCC v7 11 225547 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 12 225548 -NCIT:C6004 Stage IVB Laryngeal Cancer AJCC v7 10 225549 -NCIT:C6123 Stage IVB Laryngeal Squamous Cell Carcinoma AJCC v7 11 225550 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 12 225551 -NCIT:C6005 Stage IVA Laryngeal Cancer AJCC v7 10 225552 -NCIT:C6122 Stage IVA Laryngeal Squamous Cell Carcinoma AJCC v7 11 225553 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 12 225554 -NCIT:C8243 Stage IV Laryngeal Squamous Cell Carcinoma AJCC v7 10 225555 -NCIT:C6122 Stage IVA Laryngeal Squamous Cell Carcinoma AJCC v7 11 225556 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 12 225557 -NCIT:C6123 Stage IVB Laryngeal Squamous Cell Carcinoma AJCC v7 11 225558 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 12 225559 -NCIT:C6124 Stage IVC Laryngeal Squamous Cell Carcinoma AJCC v7 11 225560 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 12 225561 -NCIT:C8244 Stage IV Laryngeal Verrucous Carcinoma AJCC v7 11 225562 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 12 225563 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 12 225564 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 12 225565 -NCIT:C9100 Stage 0 Laryngeal Cancer AJCC v6, v7, and V8 9 225566 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 225567 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 11 225568 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 11 225569 -NCIT:C9462 Laryngeal Adenoid Cystic Carcinoma 8 225570 -NCIT:C9463 Laryngeal Mucoepidermoid Carcinoma 8 225571 -NCIT:C9466 Pharyngeal Carcinoma 7 225572 -NCIT:C102872 Pharyngeal Squamous Cell Carcinoma 8 225573 -NCIT:C167265 Nasopharyngeal Squamous Cell Carcinoma 9 225574 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 10 225575 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 225576 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 225577 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 11 225578 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 11 225579 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 225580 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 10 225581 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 225582 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 11 225583 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 10 225584 -NCIT:C54360 Nasopharyngeal Basaloid Carcinoma 10 225585 -NCIT:C7373 Nasopharyngeal Nonkeratinizing Carcinoma 10 225586 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 11 225587 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 225588 -NCIT:C54389 Nasopharyngeal Differentiated Carcinoma 11 225589 -NCIT:C8023 Nasopharyngeal Undifferentiated Carcinoma 11 225590 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 225591 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 12 225592 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 12 225593 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 12 225594 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 12 225595 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 12 225596 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 12 225597 -NCIT:C7992 Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 225598 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 225599 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 11 225600 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 225601 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 225602 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 225603 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 225604 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 225605 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 225606 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 225607 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 225608 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 9 225609 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 10 225610 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 225611 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 225612 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 225613 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 10 225614 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 225615 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 225616 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 11 225617 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 11 225618 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 225619 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 10 225620 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 225621 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 225622 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 10 225623 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 225624 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 225625 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 225626 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 9 225627 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 10 225628 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 225629 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 11 225630 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 10 225631 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 11 225632 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 10 225633 -NCIT:C35693 Posterior Pharyngeal Wall Squamous Cell Carcinoma 9 225634 -NCIT:C4043 Hypopharyngeal Squamous Cell Carcinoma 9 225635 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 10 225636 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 10 225637 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 225638 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 225639 -NCIT:C172646 Unresectable Hypopharyngeal Squamous Cell Carcinoma 10 225640 -NCIT:C4943 Pyriform Fossa Squamous Cell Carcinoma 10 225641 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 225642 -NCIT:C8185 Postcricoid Squamous Cell Carcinoma 10 225643 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 225644 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 225645 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 225646 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 225647 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 225648 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 225649 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 225650 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 10 225651 -NCIT:C8181 Oropharyngeal Squamous Cell Carcinoma 9 225652 -NCIT:C126750 Oropharyngeal Poorly Differentiated Carcinoma 10 225653 -NCIT:C126751 Oropharyngeal Basaloid Carcinoma 10 225654 -NCIT:C147906 Oropharyngeal p16INK4a-Negative Squamous Cell Carcinoma 10 225655 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 10 225656 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 10 225657 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 225658 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 225659 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 225660 -NCIT:C162787 Resectable Oropharyngeal Squamous Cell Carcinoma 10 225661 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 11 225662 -NCIT:C162833 Unresectable Oropharyngeal Squamous Cell Carcinoma 10 225663 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 11 225664 -NCIT:C173414 Oropharyngeal Human Papillomavirus-Negative Squamous Cell Carcinoma 10 225665 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 10 225666 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 225667 -NCIT:C68610 Oropharyngeal Undifferentiated Carcinoma 10 225668 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 225669 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 225670 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 225671 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 225672 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 225673 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 225674 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 225675 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 11 225676 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 225677 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 11 225678 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 11 225679 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 11 225680 -NCIT:C8183 Tonsillar Squamous Cell Carcinoma 10 225681 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 11 225682 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 225683 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 225684 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 225685 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 225686 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 225687 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 225688 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 225689 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 225690 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 225691 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 225692 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 225693 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 225694 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 225695 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 225696 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 225697 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 225698 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 225699 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 10 225700 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 11 225701 -NCIT:C87055 Oropharyngeal Human Papillomavirus-Positive Squamous Cell Carcinoma 10 225702 -NCIT:C132814 Pharyngeal Carcinoma by AJCC v8 Stage 8 225703 -NCIT:C132816 Nasopharyngeal Carcinoma by AJCC v8 Stage 9 225704 -NCIT:C132817 Stage I Nasopharyngeal Carcinoma AJCC v8 10 225705 -NCIT:C132818 Stage II Nasopharyngeal Carcinoma AJCC v8 10 225706 -NCIT:C132819 Stage III Nasopharyngeal Carcinoma AJCC v8 10 225707 -NCIT:C132820 Stage IV Nasopharyngeal Carcinoma AJCC v8 10 225708 -NCIT:C132821 Stage IVA Nasopharyngeal Carcinoma AJCC v8 11 225709 -NCIT:C132822 Stage IVB Nasopharyngeal Carcinoma AJCC v8 11 225710 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 10 225711 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 11 225712 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 11 225713 -NCIT:C132882 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Stage 9 225714 -NCIT:C132883 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Clinical Stage 10 225715 -NCIT:C132885 Clinical Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 225716 -NCIT:C132886 Clinical Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 225717 -NCIT:C132891 Clinical Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 225718 -NCIT:C132893 Clinical Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 225719 -NCIT:C132884 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Pathologic Stage 10 225720 -NCIT:C132898 Pathologic Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 225721 -NCIT:C132899 Pathologic Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 225722 -NCIT:C132900 Pathologic Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 225723 -NCIT:C132901 Pathologic Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 225724 -NCIT:C132994 Oropharyngeal (p16-Negative) Carcinoma by AJCC v8 Stage 9 225725 -NCIT:C132995 Stage 0 Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 225726 -NCIT:C132996 Stage I Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 225727 -NCIT:C132997 Stage II Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 225728 -NCIT:C132998 Stage III Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 225729 -NCIT:C132999 Stage IV Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 225730 -NCIT:C133000 Stage IVA Oropharyngeal (p16-Negative) Carcinoma AJCC v8 11 225731 -NCIT:C133001 Stage IVB Oropharyngeal (p16-Negative) Carcinoma AJCC v8 11 225732 -NCIT:C133002 Stage IVC Oropharyngeal (p16-Negative) Carcinoma AJCC v8 11 225733 -NCIT:C133003 Hypopharyngeal Carcinoma by AJCC v8 Stage 9 225734 -NCIT:C133005 Stage I Hypopharyngeal Carcinoma AJCC v8 10 225735 -NCIT:C133006 Stage II Hypopharyngeal Carcinoma AJCC v8 10 225736 -NCIT:C133007 Stage III Hypopharyngeal Carcinoma AJCC v8 10 225737 -NCIT:C133008 Stage IV Hypopharyngeal Carcinoma AJCC v8 10 225738 -NCIT:C133009 Stage IVA Hypopharyngeal Carcinoma AJCC v8 11 225739 -NCIT:C133010 Stage IVB Hypopharyngeal Carcinoma AJCC v8 11 225740 -NCIT:C133011 Stage IVC Hypopharyngeal Carcinoma AJCC v8 11 225741 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 10 225742 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 11 225743 -NCIT:C156080 Metastatic Pharyngeal Carcinoma 8 225744 -NCIT:C156079 Metastatic Nasopharyngeal Carcinoma 9 225745 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 10 225746 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 225747 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 225748 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 11 225749 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 11 225750 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 225751 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 10 225752 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 225753 -NCIT:C156081 Metastatic Hypopharyngeal Carcinoma 9 225754 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 10 225755 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 225756 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 225757 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 10 225758 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 225759 -NCIT:C156082 Metastatic Oropharyngeal Carcinoma 9 225760 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 10 225761 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 225762 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 225763 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 225764 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 10 225765 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 225766 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 225767 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 10 225768 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 225769 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 9 225770 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 225771 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 10 225772 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 225773 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 225774 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 10 225775 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 225776 -NCIT:C170784 Advanced Pharyngeal Carcinoma 9 225777 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 10 225778 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 225779 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 10 225780 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 225781 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 225782 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 225783 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 10 225784 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 225785 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 9 225786 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 10 225787 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 225788 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 225789 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 225790 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 10 225791 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 225792 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 225793 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 11 225794 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 11 225795 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 225796 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 10 225797 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 225798 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 225799 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 10 225800 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 225801 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 225802 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 225803 -NCIT:C35692 Posterior Pharyngeal Wall Carcinoma 8 225804 -NCIT:C35693 Posterior Pharyngeal Wall Squamous Cell Carcinoma 9 225805 -NCIT:C3871 Nasopharyngeal Carcinoma 8 225806 -NCIT:C132816 Nasopharyngeal Carcinoma by AJCC v8 Stage 9 225807 -NCIT:C132817 Stage I Nasopharyngeal Carcinoma AJCC v8 10 225808 -NCIT:C132818 Stage II Nasopharyngeal Carcinoma AJCC v8 10 225809 -NCIT:C132819 Stage III Nasopharyngeal Carcinoma AJCC v8 10 225810 -NCIT:C132820 Stage IV Nasopharyngeal Carcinoma AJCC v8 10 225811 -NCIT:C132821 Stage IVA Nasopharyngeal Carcinoma AJCC v8 11 225812 -NCIT:C132822 Stage IVB Nasopharyngeal Carcinoma AJCC v8 11 225813 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 10 225814 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 11 225815 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 11 225816 -NCIT:C148434 Refractory Nasopharyngeal Carcinoma 9 225817 -NCIT:C156079 Metastatic Nasopharyngeal Carcinoma 9 225818 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 10 225819 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 225820 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 225821 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 11 225822 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 11 225823 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 225824 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 10 225825 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 225826 -NCIT:C165176 Unresectable Nasopharyngeal Carcinoma 9 225827 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 10 225828 -NCIT:C167265 Nasopharyngeal Squamous Cell Carcinoma 9 225829 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 10 225830 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 225831 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 225832 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 11 225833 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 11 225834 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 225835 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 10 225836 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 225837 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 11 225838 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 10 225839 -NCIT:C54360 Nasopharyngeal Basaloid Carcinoma 10 225840 -NCIT:C7373 Nasopharyngeal Nonkeratinizing Carcinoma 10 225841 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 11 225842 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 225843 -NCIT:C54389 Nasopharyngeal Differentiated Carcinoma 11 225844 -NCIT:C8023 Nasopharyngeal Undifferentiated Carcinoma 11 225845 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 225846 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 12 225847 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 12 225848 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 12 225849 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 12 225850 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 12 225851 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 12 225852 -NCIT:C7992 Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 225853 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 225854 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 11 225855 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 225856 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 225857 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 225858 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 225859 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 225860 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 225861 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 225862 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 225863 -NCIT:C173340 Nasopharyngeal Adenoid Cystic Carcinoma 9 225864 -NCIT:C190276 Childhood Nasopharyngeal Carcinoma 9 225865 -NCIT:C54400 Nasopharyngeal Papillary Adenocarcinoma 9 225866 -NCIT:C90522 Nasopharyngeal Carcinoma by AJCC v6 Stage 9 225867 -NCIT:C7395 Stage I Nasopharyngeal Carcinoma AJCC v6 10 225868 -NCIT:C7396 Stage III Nasopharyngeal Carcinoma AJCC v6 10 225869 -NCIT:C7397 Stage IV Nasopharyngeal Carcinoma AJCC v6 10 225870 -NCIT:C7920 Stage II Nasopharyngeal Carcinoma AJCC v6 10 225871 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 10 225872 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 11 225873 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 11 225874 -NCIT:C91244 Nasopharyngeal Carcinoma by AJCC v7 Stage 9 225875 -NCIT:C88981 Stage I Nasopharyngeal Carcinoma AJCC v7 10 225876 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 225877 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 225878 -NCIT:C88982 Stage II Nasopharyngeal Carcinoma AJCC v7 10 225879 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 225880 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 225881 -NCIT:C88983 Stage III Nasopharyngeal Carcinoma AJCC v7 10 225882 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 225883 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 225884 -NCIT:C88984 Stage IV Nasopharyngeal Carcinoma AJCC v7 10 225885 -NCIT:C5995 Stage IVC Nasopharyngeal Carcinoma AJCC v7 11 225886 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 225887 -NCIT:C5996 Stage IVB Nasopharyngeal Carcinoma AJCC v7 11 225888 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 225889 -NCIT:C5997 Stage IVA Nasopharyngeal Carcinoma AJCC v7 11 225890 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 225891 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 225892 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 225893 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 225894 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 225895 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 225896 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 10 225897 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 11 225898 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 11 225899 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 9 225900 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 10 225901 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 225902 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 11 225903 -NCIT:C4942 Stage 0 Pharyngeal Cancer 8 225904 -NCIT:C132995 Stage 0 Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 225905 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 9 225906 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 225907 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 9 225908 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 10 225909 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 225910 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 9 225911 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 225912 -NCIT:C5103 Recurrent Pharyngeal Carcinoma 8 225913 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 9 225914 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 10 225915 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 225916 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 11 225917 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 10 225918 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 11 225919 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 10 225920 -NCIT:C8051 Recurrent Oropharyngeal Carcinoma 9 225921 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 10 225922 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 11 225923 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 9 225924 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 10 225925 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 225926 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 11 225927 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 9 225928 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 10 225929 -NCIT:C5818 Pharyngeal Adenoid Cystic Carcinoma 8 225930 -NCIT:C173340 Nasopharyngeal Adenoid Cystic Carcinoma 9 225931 -NCIT:C6241 Oropharyngeal Adenoid Cystic Carcinoma 9 225932 -NCIT:C8768 Stage I Pharyngeal Cancer 8 225933 -NCIT:C132817 Stage I Nasopharyngeal Carcinoma AJCC v8 9 225934 -NCIT:C132885 Clinical Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 9 225935 -NCIT:C132898 Pathologic Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 9 225936 -NCIT:C132996 Stage I Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 225937 -NCIT:C133005 Stage I Hypopharyngeal Carcinoma AJCC v8 9 225938 -NCIT:C7395 Stage I Nasopharyngeal Carcinoma AJCC v6 9 225939 -NCIT:C8038 Stage I Hypopharyngeal Carcinoma AJCC v6 9 225940 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 9 225941 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 225942 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 225943 -NCIT:C88981 Stage I Nasopharyngeal Carcinoma AJCC v7 9 225944 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 225945 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 225946 -NCIT:C89045 Stage I Hypopharyngeal Carcinoma AJCC v7 9 225947 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 225948 -NCIT:C8769 Stage II Pharyngeal Cancer 8 225949 -NCIT:C132818 Stage II Nasopharyngeal Carcinoma AJCC v8 9 225950 -NCIT:C132886 Clinical Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 9 225951 -NCIT:C132899 Pathologic Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 9 225952 -NCIT:C132997 Stage II Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 225953 -NCIT:C133006 Stage II Hypopharyngeal Carcinoma AJCC v8 9 225954 -NCIT:C7920 Stage II Nasopharyngeal Carcinoma AJCC v6 9 225955 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 9 225956 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 225957 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 9 225958 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 225959 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 225960 -NCIT:C88982 Stage II Nasopharyngeal Carcinoma AJCC v7 9 225961 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 225962 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 225963 -NCIT:C8770 Stage III Pharyngeal Cancer 8 225964 -NCIT:C132819 Stage III Nasopharyngeal Carcinoma AJCC v8 9 225965 -NCIT:C132891 Clinical Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 9 225966 -NCIT:C132900 Pathologic Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 9 225967 -NCIT:C132998 Stage III Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 225968 -NCIT:C133007 Stage III Hypopharyngeal Carcinoma AJCC v8 9 225969 -NCIT:C7396 Stage III Nasopharyngeal Carcinoma AJCC v6 9 225970 -NCIT:C8040 Stage III Hypopharyngeal Carcinoma AJCC v6 9 225971 -NCIT:C8050 Stage III Oropharyngeal Carcinoma AJCC v6 9 225972 -NCIT:C88983 Stage III Nasopharyngeal Carcinoma AJCC v7 9 225973 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 225974 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 225975 -NCIT:C89021 Stage III Oropharyngeal Carcinoma AJCC v7 9 225976 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 225977 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 225978 -NCIT:C89046 Stage III Hypopharyngeal Carcinoma AJCC v7 9 225979 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 225980 -NCIT:C8771 Stage IV Pharyngeal Cancer 8 225981 -NCIT:C132820 Stage IV Nasopharyngeal Carcinoma AJCC v8 9 225982 -NCIT:C132821 Stage IVA Nasopharyngeal Carcinoma AJCC v8 10 225983 -NCIT:C132822 Stage IVB Nasopharyngeal Carcinoma AJCC v8 10 225984 -NCIT:C132893 Clinical Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 9 225985 -NCIT:C132901 Pathologic Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 9 225986 -NCIT:C132999 Stage IV Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 225987 -NCIT:C133000 Stage IVA Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 225988 -NCIT:C133001 Stage IVB Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 225989 -NCIT:C133002 Stage IVC Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 225990 -NCIT:C133008 Stage IV Hypopharyngeal Carcinoma AJCC v8 9 225991 -NCIT:C133009 Stage IVA Hypopharyngeal Carcinoma AJCC v8 10 225992 -NCIT:C133010 Stage IVB Hypopharyngeal Carcinoma AJCC v8 10 225993 -NCIT:C133011 Stage IVC Hypopharyngeal Carcinoma AJCC v8 10 225994 -NCIT:C6000 Stage IVA Pharyngeal Cancer 9 225995 -NCIT:C132821 Stage IVA Nasopharyngeal Carcinoma AJCC v8 10 225996 -NCIT:C133000 Stage IVA Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 225997 -NCIT:C133009 Stage IVA Hypopharyngeal Carcinoma AJCC v8 10 225998 -NCIT:C5985 Stage IVA Oropharyngeal Carcinoma AJCC v7 10 225999 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 226000 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 226001 -NCIT:C5992 Stage IVA Hypopharyngeal Carcinoma AJCC v7 10 226002 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 226003 -NCIT:C5997 Stage IVA Nasopharyngeal Carcinoma AJCC v7 10 226004 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 226005 -NCIT:C6001 Stage IVB Pharyngeal Cancer 9 226006 -NCIT:C132822 Stage IVB Nasopharyngeal Carcinoma AJCC v8 10 226007 -NCIT:C133001 Stage IVB Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 226008 -NCIT:C133010 Stage IVB Hypopharyngeal Carcinoma AJCC v8 10 226009 -NCIT:C5986 Stage IVB Oropharyngeal Carcinoma AJCC v7 10 226010 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 226011 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 226012 -NCIT:C5993 Stage IVB Hypopharyngeal Carcinoma AJCC v7 10 226013 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 226014 -NCIT:C5996 Stage IVB Nasopharyngeal Carcinoma AJCC v7 10 226015 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 226016 -NCIT:C6002 Stage IVC Pharyngeal Cancer 9 226017 -NCIT:C133002 Stage IVC Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 226018 -NCIT:C133011 Stage IVC Hypopharyngeal Carcinoma AJCC v8 10 226019 -NCIT:C5987 Stage IVC Oropharyngeal Carcinoma AJCC v7 10 226020 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 226021 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 226022 -NCIT:C5994 Stage IVC Hypopharyngeal Carcinoma AJCC v7 10 226023 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 226024 -NCIT:C5995 Stage IVC Nasopharyngeal Carcinoma AJCC v7 10 226025 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 226026 -NCIT:C7397 Stage IV Nasopharyngeal Carcinoma AJCC v6 9 226027 -NCIT:C8533 Stage IV Hypopharyngeal Carcinoma AJCC v6 9 226028 -NCIT:C88984 Stage IV Nasopharyngeal Carcinoma AJCC v7 9 226029 -NCIT:C5995 Stage IVC Nasopharyngeal Carcinoma AJCC v7 10 226030 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 226031 -NCIT:C5996 Stage IVB Nasopharyngeal Carcinoma AJCC v7 10 226032 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 226033 -NCIT:C5997 Stage IVA Nasopharyngeal Carcinoma AJCC v7 10 226034 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 226035 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 226036 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 226037 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 226038 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 226039 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 226040 -NCIT:C89023 Stage IV Oropharyngeal Carcinoma AJCC v7 9 226041 -NCIT:C5985 Stage IVA Oropharyngeal Carcinoma AJCC v7 10 226042 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 226043 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 226044 -NCIT:C5986 Stage IVB Oropharyngeal Carcinoma AJCC v7 10 226045 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 226046 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 226047 -NCIT:C5987 Stage IVC Oropharyngeal Carcinoma AJCC v7 10 226048 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 226049 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 226050 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 226051 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 226052 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 226053 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 226054 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 226055 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 226056 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 226057 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 226058 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 226059 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 226060 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 226061 -NCIT:C89047 Stage IV Hypopharyngeal Carcinoma AJCC v7 9 226062 -NCIT:C5992 Stage IVA Hypopharyngeal Carcinoma AJCC v7 10 226063 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 226064 -NCIT:C5993 Stage IVB Hypopharyngeal Carcinoma AJCC v7 10 226065 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 226066 -NCIT:C5994 Stage IVC Hypopharyngeal Carcinoma AJCC v7 10 226067 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 226068 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 226069 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 226070 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 226071 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 226072 -NCIT:C9218 Stage IV Oropharyngeal Carcinoma AJCC v6 9 226073 -NCIT:C90525 Pharyngeal Carcinoma by AJCC v6 Stage 8 226074 -NCIT:C90522 Nasopharyngeal Carcinoma by AJCC v6 Stage 9 226075 -NCIT:C7395 Stage I Nasopharyngeal Carcinoma AJCC v6 10 226076 -NCIT:C7396 Stage III Nasopharyngeal Carcinoma AJCC v6 10 226077 -NCIT:C7397 Stage IV Nasopharyngeal Carcinoma AJCC v6 10 226078 -NCIT:C7920 Stage II Nasopharyngeal Carcinoma AJCC v6 10 226079 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 10 226080 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 11 226081 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 11 226082 -NCIT:C90523 Oropharyngeal Carcinoma by AJCC v6 Stage 9 226083 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 10 226084 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 226085 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 10 226086 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 226087 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 12 226088 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 10 226089 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 226090 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 12 226091 -NCIT:C8050 Stage III Oropharyngeal Carcinoma AJCC v6 10 226092 -NCIT:C9218 Stage IV Oropharyngeal Carcinoma AJCC v6 10 226093 -NCIT:C90524 Hypopharyngeal Carcinoma by AJCC v6 Stage 9 226094 -NCIT:C8038 Stage I Hypopharyngeal Carcinoma AJCC v6 10 226095 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 10 226096 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 226097 -NCIT:C8040 Stage III Hypopharyngeal Carcinoma AJCC v6 10 226098 -NCIT:C8533 Stage IV Hypopharyngeal Carcinoma AJCC v6 10 226099 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 10 226100 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 11 226101 -NCIT:C9105 Oropharyngeal Carcinoma 8 226102 -NCIT:C132882 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Stage 9 226103 -NCIT:C132883 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Clinical Stage 10 226104 -NCIT:C132885 Clinical Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 226105 -NCIT:C132886 Clinical Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 226106 -NCIT:C132891 Clinical Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 226107 -NCIT:C132893 Clinical Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 226108 -NCIT:C132884 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Pathologic Stage 10 226109 -NCIT:C132898 Pathologic Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 226110 -NCIT:C132899 Pathologic Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 226111 -NCIT:C132900 Pathologic Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 226112 -NCIT:C132901 Pathologic Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 226113 -NCIT:C132994 Oropharyngeal (p16-Negative) Carcinoma by AJCC v8 Stage 9 226114 -NCIT:C132995 Stage 0 Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 226115 -NCIT:C132996 Stage I Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 226116 -NCIT:C132997 Stage II Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 226117 -NCIT:C132998 Stage III Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 226118 -NCIT:C132999 Stage IV Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 226119 -NCIT:C133000 Stage IVA Oropharyngeal (p16-Negative) Carcinoma AJCC v8 11 226120 -NCIT:C133001 Stage IVB Oropharyngeal (p16-Negative) Carcinoma AJCC v8 11 226121 -NCIT:C133002 Stage IVC Oropharyngeal (p16-Negative) Carcinoma AJCC v8 11 226122 -NCIT:C156082 Metastatic Oropharyngeal Carcinoma 9 226123 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 10 226124 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 226125 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 226126 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 226127 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 10 226128 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 226129 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 226130 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 10 226131 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 226132 -NCIT:C173576 Oropharyngeal Polymorphous Adenocarcinoma 9 226133 -NCIT:C4825 Tonsillar Carcinoma 9 226134 -NCIT:C8183 Tonsillar Squamous Cell Carcinoma 10 226135 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 11 226136 -NCIT:C6241 Oropharyngeal Adenoid Cystic Carcinoma 9 226137 -NCIT:C8051 Recurrent Oropharyngeal Carcinoma 9 226138 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 10 226139 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 11 226140 -NCIT:C8181 Oropharyngeal Squamous Cell Carcinoma 9 226141 -NCIT:C126750 Oropharyngeal Poorly Differentiated Carcinoma 10 226142 -NCIT:C126751 Oropharyngeal Basaloid Carcinoma 10 226143 -NCIT:C147906 Oropharyngeal p16INK4a-Negative Squamous Cell Carcinoma 10 226144 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 10 226145 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 10 226146 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 226147 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 226148 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 226149 -NCIT:C162787 Resectable Oropharyngeal Squamous Cell Carcinoma 10 226150 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 11 226151 -NCIT:C162833 Unresectable Oropharyngeal Squamous Cell Carcinoma 10 226152 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 11 226153 -NCIT:C173414 Oropharyngeal Human Papillomavirus-Negative Squamous Cell Carcinoma 10 226154 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 10 226155 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 226156 -NCIT:C68610 Oropharyngeal Undifferentiated Carcinoma 10 226157 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 226158 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 226159 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 226160 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 226161 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 226162 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 226163 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 226164 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 11 226165 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 226166 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 11 226167 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 11 226168 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 11 226169 -NCIT:C8183 Tonsillar Squamous Cell Carcinoma 10 226170 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 11 226171 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 226172 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 226173 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 226174 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 226175 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 226176 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 226177 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 226178 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 226179 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 226180 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 226181 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 226182 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 226183 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 226184 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 226185 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 226186 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 226187 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 226188 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 10 226189 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 11 226190 -NCIT:C87055 Oropharyngeal Human Papillomavirus-Positive Squamous Cell Carcinoma 10 226191 -NCIT:C8395 Soft Palate Carcinoma 9 226192 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 10 226193 -NCIT:C90523 Oropharyngeal Carcinoma by AJCC v6 Stage 9 226194 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 10 226195 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 226196 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 10 226197 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 226198 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 12 226199 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 10 226200 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 226201 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 12 226202 -NCIT:C8050 Stage III Oropharyngeal Carcinoma AJCC v6 10 226203 -NCIT:C9218 Stage IV Oropharyngeal Carcinoma AJCC v6 10 226204 -NCIT:C91248 Oropharyngeal Carcinoma by AJCC v7 Stage 9 226205 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 10 226206 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 226207 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 10 226208 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 226209 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 12 226210 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 10 226211 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 226212 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 12 226213 -NCIT:C89021 Stage III Oropharyngeal Carcinoma AJCC v7 10 226214 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 226215 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 226216 -NCIT:C89023 Stage IV Oropharyngeal Carcinoma AJCC v7 10 226217 -NCIT:C5985 Stage IVA Oropharyngeal Carcinoma AJCC v7 11 226218 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 226219 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 226220 -NCIT:C5986 Stage IVB Oropharyngeal Carcinoma AJCC v7 11 226221 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 226222 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 226223 -NCIT:C5987 Stage IVC Oropharyngeal Carcinoma AJCC v7 11 226224 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 226225 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 226226 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 226227 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 226228 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 226229 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 226230 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 226231 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 226232 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 226233 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 226234 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 226235 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 226236 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 226237 -NCIT:C91252 Pharyngeal Carcinoma by AJCC v7 Stage 8 226238 -NCIT:C91244 Nasopharyngeal Carcinoma by AJCC v7 Stage 9 226239 -NCIT:C88981 Stage I Nasopharyngeal Carcinoma AJCC v7 10 226240 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 226241 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 226242 -NCIT:C88982 Stage II Nasopharyngeal Carcinoma AJCC v7 10 226243 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 226244 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 226245 -NCIT:C88983 Stage III Nasopharyngeal Carcinoma AJCC v7 10 226246 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 226247 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 226248 -NCIT:C88984 Stage IV Nasopharyngeal Carcinoma AJCC v7 10 226249 -NCIT:C5995 Stage IVC Nasopharyngeal Carcinoma AJCC v7 11 226250 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 226251 -NCIT:C5996 Stage IVB Nasopharyngeal Carcinoma AJCC v7 11 226252 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 226253 -NCIT:C5997 Stage IVA Nasopharyngeal Carcinoma AJCC v7 11 226254 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 226255 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 226256 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 226257 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 226258 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 226259 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 226260 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 10 226261 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 11 226262 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 11 226263 -NCIT:C91248 Oropharyngeal Carcinoma by AJCC v7 Stage 9 226264 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 10 226265 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 226266 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 10 226267 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 226268 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 12 226269 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 10 226270 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 226271 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 12 226272 -NCIT:C89021 Stage III Oropharyngeal Carcinoma AJCC v7 10 226273 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 226274 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 226275 -NCIT:C89023 Stage IV Oropharyngeal Carcinoma AJCC v7 10 226276 -NCIT:C5985 Stage IVA Oropharyngeal Carcinoma AJCC v7 11 226277 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 226278 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 226279 -NCIT:C5986 Stage IVB Oropharyngeal Carcinoma AJCC v7 11 226280 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 226281 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 226282 -NCIT:C5987 Stage IVC Oropharyngeal Carcinoma AJCC v7 11 226283 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 226284 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 226285 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 226286 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 226287 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 226288 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 226289 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 226290 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 226291 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 226292 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 226293 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 226294 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 226295 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 226296 -NCIT:C91251 Hypopharyngeal Carcinoma by AJCC v7 Stage 9 226297 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 10 226298 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 226299 -NCIT:C89045 Stage I Hypopharyngeal Carcinoma AJCC v7 10 226300 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 226301 -NCIT:C89046 Stage III Hypopharyngeal Carcinoma AJCC v7 10 226302 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 226303 -NCIT:C89047 Stage IV Hypopharyngeal Carcinoma AJCC v7 10 226304 -NCIT:C5992 Stage IVA Hypopharyngeal Carcinoma AJCC v7 11 226305 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 226306 -NCIT:C5993 Stage IVB Hypopharyngeal Carcinoma AJCC v7 11 226307 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 226308 -NCIT:C5994 Stage IVC Hypopharyngeal Carcinoma AJCC v7 11 226309 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 226310 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 226311 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 226312 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 226313 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 226314 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 10 226315 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 11 226316 -NCIT:C9465 Hypopharyngeal Carcinoma 8 226317 -NCIT:C133003 Hypopharyngeal Carcinoma by AJCC v8 Stage 9 226318 -NCIT:C133005 Stage I Hypopharyngeal Carcinoma AJCC v8 10 226319 -NCIT:C133006 Stage II Hypopharyngeal Carcinoma AJCC v8 10 226320 -NCIT:C133007 Stage III Hypopharyngeal Carcinoma AJCC v8 10 226321 -NCIT:C133008 Stage IV Hypopharyngeal Carcinoma AJCC v8 10 226322 -NCIT:C133009 Stage IVA Hypopharyngeal Carcinoma AJCC v8 11 226323 -NCIT:C133010 Stage IVB Hypopharyngeal Carcinoma AJCC v8 11 226324 -NCIT:C133011 Stage IVC Hypopharyngeal Carcinoma AJCC v8 11 226325 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 10 226326 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 11 226327 -NCIT:C156081 Metastatic Hypopharyngeal Carcinoma 9 226328 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 10 226329 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 226330 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 226331 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 10 226332 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 226333 -NCIT:C4043 Hypopharyngeal Squamous Cell Carcinoma 9 226334 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 10 226335 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 10 226336 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 226337 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 226338 -NCIT:C172646 Unresectable Hypopharyngeal Squamous Cell Carcinoma 10 226339 -NCIT:C4943 Pyriform Fossa Squamous Cell Carcinoma 10 226340 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 226341 -NCIT:C8185 Postcricoid Squamous Cell Carcinoma 10 226342 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 226343 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 226344 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 226345 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 226346 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 226347 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 226348 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 226349 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 10 226350 -NCIT:C6700 Pyriform Fossa Carcinoma 9 226351 -NCIT:C4943 Pyriform Fossa Squamous Cell Carcinoma 10 226352 -NCIT:C8595 Postcricoid Carcinoma 9 226353 -NCIT:C8185 Postcricoid Squamous Cell Carcinoma 10 226354 -NCIT:C90524 Hypopharyngeal Carcinoma by AJCC v6 Stage 9 226355 -NCIT:C8038 Stage I Hypopharyngeal Carcinoma AJCC v6 10 226356 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 10 226357 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 226358 -NCIT:C8040 Stage III Hypopharyngeal Carcinoma AJCC v6 10 226359 -NCIT:C8533 Stage IV Hypopharyngeal Carcinoma AJCC v6 10 226360 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 10 226361 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 11 226362 -NCIT:C91251 Hypopharyngeal Carcinoma by AJCC v7 Stage 9 226363 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 10 226364 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 226365 -NCIT:C89045 Stage I Hypopharyngeal Carcinoma AJCC v7 10 226366 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 226367 -NCIT:C89046 Stage III Hypopharyngeal Carcinoma AJCC v7 10 226368 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 226369 -NCIT:C89047 Stage IV Hypopharyngeal Carcinoma AJCC v7 10 226370 -NCIT:C5992 Stage IVA Hypopharyngeal Carcinoma AJCC v7 11 226371 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 226372 -NCIT:C5993 Stage IVB Hypopharyngeal Carcinoma AJCC v7 11 226373 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 226374 -NCIT:C5994 Stage IVC Hypopharyngeal Carcinoma AJCC v7 11 226375 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 226376 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 226377 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 226378 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 226379 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 226380 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 10 226381 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 11 226382 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 9 226383 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 10 226384 -NCIT:C4815 Thyroid Gland Carcinoma 6 226385 -NCIT:C118827 Childhood Thyroid Gland Carcinoma 7 226386 -NCIT:C123903 Childhood Thyroid Gland Papillary Carcinoma 8 226387 -NCIT:C123904 Childhood Thyroid Gland Follicular Carcinoma 8 226388 -NCIT:C123905 Childhood Thyroid Gland Medullary Carcinoma 8 226389 -NCIT:C190064 Childhood Thyroid Gland Spindle Epithelial Tumor with Thymus-Like Elements 8 226390 -NCIT:C126408 Thyroid Gland Cribriform Morular Carcinoma 7 226391 -NCIT:C129784 Unresectable Thyroid Gland Carcinoma 7 226392 -NCIT:C163974 Unresectable Thyroid Gland Medullary Carcinoma 8 226393 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 9 226394 -NCIT:C168572 Unresectable Differentiated Thyroid Gland Carcinoma 8 226395 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 9 226396 -NCIT:C174571 Unresectable Thyroid Gland Follicular Carcinoma 9 226397 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 10 226398 -NCIT:C170833 Unresectable Thyroid Gland Anaplastic Carcinoma 8 226399 -NCIT:C174569 Unresectable Poorly Differentiated Thyroid Gland Carcinoma 8 226400 -NCIT:C133193 Metastatic Thyroid Gland Carcinoma 7 226401 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 8 226402 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 226403 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 226404 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 8 226405 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 226406 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 226407 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 226408 -NCIT:C170831 Metastatic Thyroid Gland Anaplastic Carcinoma 8 226409 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 226410 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 226411 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 8 226412 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 226413 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 9 226414 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 226415 -NCIT:C173979 Metastatic Differentiated Thyroid Gland Carcinoma 8 226416 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 9 226417 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 10 226418 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 11 226419 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 9 226420 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 226421 -NCIT:C174046 Metastatic Poorly Differentiated Thyroid Gland Carcinoma 8 226422 -NCIT:C142983 Refractory Thyroid Gland Carcinoma 7 226423 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 8 226424 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 9 226425 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 9 226426 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 10 226427 -NCIT:C170832 Refractory Thyroid Gland Anaplastic Carcinoma 8 226428 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 8 226429 -NCIT:C156267 Thyroid Gland Mucinous Carcinoma 7 226430 -NCIT:C27380 Thyroid Gland Adenocarcinoma 7 226431 -NCIT:C187645 Follicular-Derived Thyroid Gland Carcinoma, High Grade 8 226432 -NCIT:C187648 Differentiated High Grade Thyroid Gland Carcinoma 9 226433 -NCIT:C6040 Poorly Differentiated Thyroid Gland Carcinoma 9 226434 -NCIT:C174046 Metastatic Poorly Differentiated Thyroid Gland Carcinoma 10 226435 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 10 226436 -NCIT:C174569 Unresectable Poorly Differentiated Thyroid Gland Carcinoma 10 226437 -NCIT:C187994 Thyroid Gland Secretory Carcinoma 8 226438 -NCIT:C7153 Differentiated Thyroid Gland Carcinoma 8 226439 -NCIT:C118829 Hereditary Nonmedullary Thyroid Gland Carcinoma 9 226440 -NCIT:C140959 Differentiated Thyroid Gland Carcinoma by AJCC v7 Stage 9 226441 -NCIT:C140958 Thyroid Gland Follicular Carcinoma by AJCC v7 Stage 10 226442 -NCIT:C9084 Stage I Thyroid Gland Follicular Carcinoma AJCC v7 11 226443 -NCIT:C9085 Stage II Thyroid Gland Follicular Carcinoma AJCC v7 11 226444 -NCIT:C9086 Stage IV Thyroid Gland Follicular Carcinoma AJCC v7 11 226445 -NCIT:C115035 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v7 12 226446 -NCIT:C115036 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v7 12 226447 -NCIT:C115037 Stage IVC Thyroid Gland Follicular Carcinoma AJCC v7 12 226448 -NCIT:C9121 Stage III Thyroid Gland Follicular Carcinoma AJCC v7 11 226449 -NCIT:C140960 Thyroid Gland Papillary Carcinoma by AJCC v7 Stage 10 226450 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 11 226451 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 11 226452 -NCIT:C9083 Stage IV Thyroid Gland Papillary Carcinoma AJCC v7 11 226453 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 12 226454 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 12 226455 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 12 226456 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 11 226457 -NCIT:C87543 Stage I Differentiated Thyroid Gland Carcinoma AJCC v7 10 226458 -NCIT:C101539 Stage I Differentiated Thyroid Gland Carcinoma Under 45 Years AJCC v7 11 226459 -NCIT:C101540 Stage I Differentiated Thyroid Gland Carcinoma 45 Years and Older AJCC v7 11 226460 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 11 226461 -NCIT:C9084 Stage I Thyroid Gland Follicular Carcinoma AJCC v7 11 226462 -NCIT:C87544 Stage II Differentiated Thyroid Gland Carcinoma AJCC v7 10 226463 -NCIT:C101541 Stage II Differentiated Thyroid Gland Carcinoma Under 45 Years AJCC v7 11 226464 -NCIT:C101542 Stage II Differentiated Thyroid Gland Carcinoma 45 Years and Older AJCC v7 11 226465 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 11 226466 -NCIT:C9085 Stage II Thyroid Gland Follicular Carcinoma AJCC v7 11 226467 -NCIT:C87545 Stage III Differentiated Thyroid Gland Carcinoma AJCC v7 10 226468 -NCIT:C9121 Stage III Thyroid Gland Follicular Carcinoma AJCC v7 11 226469 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 11 226470 -NCIT:C87546 Stage IVA Differentiated Thyroid Gland Carcinoma AJCC v7 10 226471 -NCIT:C115035 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v7 11 226472 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 11 226473 -NCIT:C87547 Stage IVB Differentiated Thyroid Gland Carcinoma AJCC v7 10 226474 -NCIT:C115036 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v7 11 226475 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 11 226476 -NCIT:C87548 Stage IVC Differentiated Thyroid Gland Carcinoma AJCC v7 10 226477 -NCIT:C115037 Stage IVC Thyroid Gland Follicular Carcinoma AJCC v7 11 226478 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 11 226479 -NCIT:C140965 Differentiated Thyroid Gland Carcinoma by AJCC v8 Stage 9 226480 -NCIT:C140966 Stage I Differentiated Thyroid Gland Carcinoma AJCC v8 10 226481 -NCIT:C140967 Stage I Differentiated Thyroid Gland Carcinoma Under 55 Years AJCC v8 11 226482 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 226483 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 226484 -NCIT:C140968 Stage I Differentiated Thyroid Gland Carcinoma 55 Years and Older AJCC v8 11 226485 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 226486 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 226487 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 11 226488 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 226489 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 226490 -NCIT:C140988 Stage I Thyroid Gland Follicular Carcinoma AJCC v8 11 226491 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 226492 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 226493 -NCIT:C140969 Stage II Differentiated Thyroid Gland Carcinoma AJCC v8 10 226494 -NCIT:C140970 Stage II Differentiated Thyroid Gland Carcinoma Under 55 Years AJCC v8 11 226495 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 226496 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 226497 -NCIT:C140971 Stage II Differentiated Thyroid Gland Carcinoma 55 Years and Older AJCC v8 11 226498 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 226499 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 226500 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 11 226501 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 226502 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 226503 -NCIT:C140991 Stage II Thyroid Gland Follicular Carcinoma AJCC v8 11 226504 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 226505 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 226506 -NCIT:C140972 Stage III Differentiated Thyroid Gland Carcinoma AJCC v8 10 226507 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 11 226508 -NCIT:C140995 Stage III Thyroid Gland Follicular Carcinoma AJCC v8 11 226509 -NCIT:C140973 Stage IV Differentiated Thyroid Gland Carcinoma AJCC v8 10 226510 -NCIT:C140974 Stage IVA Differentiated Thyroid Gland Carcinoma AJCC v8 11 226511 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 12 226512 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 12 226513 -NCIT:C140975 Stage IVB Differentiated Thyroid Gland Carcinoma AJCC v8 11 226514 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 12 226515 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 12 226516 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 11 226517 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 12 226518 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 12 226519 -NCIT:C140996 Stage IV Thyroid Gland Follicular Carcinoma AJCC v8 11 226520 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 12 226521 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 12 226522 -NCIT:C140976 Thyroid Gland Papillary Carcinoma by AJCC v8 Stage 10 226523 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 11 226524 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 226525 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 226526 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 11 226527 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 226528 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 226529 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 11 226530 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 11 226531 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 12 226532 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 12 226533 -NCIT:C140987 Thyroid Gland Follicular Carcinoma by AJCC v8 Stage 10 226534 -NCIT:C140988 Stage I Thyroid Gland Follicular Carcinoma AJCC v8 11 226535 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 226536 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 226537 -NCIT:C140991 Stage II Thyroid Gland Follicular Carcinoma AJCC v8 11 226538 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 226539 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 226540 -NCIT:C140995 Stage III Thyroid Gland Follicular Carcinoma AJCC v8 11 226541 -NCIT:C140996 Stage IV Thyroid Gland Follicular Carcinoma AJCC v8 11 226542 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 12 226543 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 12 226544 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 9 226545 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 10 226546 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 10 226547 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 11 226548 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 9 226549 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 10 226550 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 10 226551 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 11 226552 -NCIT:C168572 Unresectable Differentiated Thyroid Gland Carcinoma 9 226553 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 10 226554 -NCIT:C174571 Unresectable Thyroid Gland Follicular Carcinoma 10 226555 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 11 226556 -NCIT:C173979 Metastatic Differentiated Thyroid Gland Carcinoma 9 226557 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 10 226558 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 11 226559 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 12 226560 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 10 226561 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 10 226562 -NCIT:C4035 Thyroid Gland Papillary Carcinoma 9 226563 -NCIT:C123903 Childhood Thyroid Gland Papillary Carcinoma 10 226564 -NCIT:C126409 Warthin-Like Variant Thyroid Gland Papillary Carcinoma 10 226565 -NCIT:C126410 Thyroid Gland Papillary Carcinoma with Fibromatosis/Fasciitis-Like/Desmoid-Type Stroma 10 226566 -NCIT:C126594 Follicular Variant Thyroid Gland Papillary Carcinoma 10 226567 -NCIT:C66850 Invasive Encapsulated Follicular Variant Thyroid Gland Papillary Carcinoma 11 226568 -NCIT:C7381 Invasive Follicular Variant Thyroid Gland Papillary Carcinoma 11 226569 -NCIT:C140960 Thyroid Gland Papillary Carcinoma by AJCC v7 Stage 10 226570 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 11 226571 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 11 226572 -NCIT:C9083 Stage IV Thyroid Gland Papillary Carcinoma AJCC v7 11 226573 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 12 226574 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 12 226575 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 12 226576 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 11 226577 -NCIT:C140976 Thyroid Gland Papillary Carcinoma by AJCC v8 Stage 10 226578 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 11 226579 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 226580 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 226581 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 11 226582 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 226583 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 226584 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 11 226585 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 11 226586 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 12 226587 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 12 226588 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 10 226589 -NCIT:C156034 Encapsulated Variant Thyroid Gland Papillary Carcinoma 10 226590 -NCIT:C156045 Spindle Cell Variant Thyroid Gland Papillary Carcinoma 10 226591 -NCIT:C156050 Hobnail Variant Thyroid Gland Papillary Carcinoma 10 226592 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 10 226593 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 10 226594 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 10 226595 -NCIT:C187644 Classic Thyroid Gland Papillary Carcinoma 10 226596 -NCIT:C35558 Tall Cell Variant Thyroid Gland Papillary Carcinoma 10 226597 -NCIT:C35830 Columnar Cell Variant Thyroid Gland Papillary Carcinoma 10 226598 -NCIT:C37304 Multicentric Thyroid Gland Papillary Carcinoma 10 226599 -NCIT:C46004 Thyroid Gland Papillary Microcarcinoma 10 226600 -NCIT:C46092 Macrofollicular Variant Thyroid Gland Papillary Carcinoma 10 226601 -NCIT:C46093 Oncocytic Variant Thyroid Gland Papillary Carcinoma 10 226602 -NCIT:C46094 Clear Cell Variant Thyroid Gland Papillary Carcinoma 10 226603 -NCIT:C46095 Solid/Trabecular Variant Thyroid Gland Papillary Carcinoma 10 226604 -NCIT:C7427 Diffuse Sclerosing Variant Thyroid Gland Papillary Carcinoma 10 226605 -NCIT:C8054 Thyroid Gland Follicular Carcinoma 9 226606 -NCIT:C123904 Childhood Thyroid Gland Follicular Carcinoma 10 226607 -NCIT:C140958 Thyroid Gland Follicular Carcinoma by AJCC v7 Stage 10 226608 -NCIT:C9084 Stage I Thyroid Gland Follicular Carcinoma AJCC v7 11 226609 -NCIT:C9085 Stage II Thyroid Gland Follicular Carcinoma AJCC v7 11 226610 -NCIT:C9086 Stage IV Thyroid Gland Follicular Carcinoma AJCC v7 11 226611 -NCIT:C115035 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v7 12 226612 -NCIT:C115036 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v7 12 226613 -NCIT:C115037 Stage IVC Thyroid Gland Follicular Carcinoma AJCC v7 12 226614 -NCIT:C9121 Stage III Thyroid Gland Follicular Carcinoma AJCC v7 11 226615 -NCIT:C140987 Thyroid Gland Follicular Carcinoma by AJCC v8 Stage 10 226616 -NCIT:C140988 Stage I Thyroid Gland Follicular Carcinoma AJCC v8 11 226617 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 226618 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 226619 -NCIT:C140991 Stage II Thyroid Gland Follicular Carcinoma AJCC v8 11 226620 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 226621 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 226622 -NCIT:C140995 Stage III Thyroid Gland Follicular Carcinoma AJCC v8 11 226623 -NCIT:C140996 Stage IV Thyroid Gland Follicular Carcinoma AJCC v8 11 226624 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 12 226625 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 12 226626 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 10 226627 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 11 226628 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 10 226629 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 11 226630 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 12 226631 -NCIT:C156122 Thyroid Gland Follicular Carcinoma, Encapsulated Angioinvasive 10 226632 -NCIT:C156123 Thyroid Gland Follicular Carcinoma, Widely Invasive 10 226633 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 10 226634 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 11 226635 -NCIT:C174571 Unresectable Thyroid Gland Follicular Carcinoma 10 226636 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 11 226637 -NCIT:C187643 Thyroid Gland Follicular Carcinoma, Signet Ring Cell Variant 10 226638 -NCIT:C46096 Thyroid Gland Follicular Carcinoma, Clear Cell Variant 10 226639 -NCIT:C4946 Thyroid Gland Oncocytic Carcinoma 10 226640 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 11 226641 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 11 226642 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 11 226643 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 11 226644 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 12 226645 -NCIT:C65200 Thyroid Gland Follicular Carcinoma, Minimally Invasive 10 226646 -NCIT:C38762 Thyroid Gland Mucoepidermoid Carcinoma 7 226647 -NCIT:C38763 Thyroid Gland Sclerosing Mucoepidermoid Carcinoma with Eosinophilia 8 226648 -NCIT:C3878 Thyroid Gland Anaplastic Carcinoma 7 226649 -NCIT:C140999 Thyroid Gland Anaplastic Carcinoma by AJCC v7 Stage 8 226650 -NCIT:C87552 Stage IVA Thyroid Gland Anaplastic Carcinoma AJCC v7 9 226651 -NCIT:C87553 Stage IVB Thyroid Gland Anaplastic Carcinoma AJCC v7 9 226652 -NCIT:C87554 Stage IVC Thyroid Gland Anaplastic Carcinoma AJCC v7 9 226653 -NCIT:C141000 Thyroid Gland Anaplastic Carcinoma by AJCC v8 Stage 8 226654 -NCIT:C141001 Stage IVA Thyroid Gland Anaplastic Carcinoma AJCC v8 9 226655 -NCIT:C141003 Stage IVB Thyroid Gland Anaplastic Carcinoma AJCC v8 9 226656 -NCIT:C141004 Stage IVC Thyroid Gland Anaplastic Carcinoma AJCC v8 9 226657 -NCIT:C153624 Recurrent Thyroid Gland Anaplastic Carcinoma 8 226658 -NCIT:C170831 Metastatic Thyroid Gland Anaplastic Carcinoma 8 226659 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 226660 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 226661 -NCIT:C170832 Refractory Thyroid Gland Anaplastic Carcinoma 8 226662 -NCIT:C170833 Unresectable Thyroid Gland Anaplastic Carcinoma 8 226663 -NCIT:C46008 Thyroid Gland Anaplastic Carcinoma, Squamous Cell Carcinoma Pattern 8 226664 -NCIT:C7906 Thyroid Gland Anaplastic Carcinoma, Osteoclastic Variant 8 226665 -NCIT:C3879 Thyroid Gland Medullary Carcinoma 7 226666 -NCIT:C123905 Childhood Thyroid Gland Medullary Carcinoma 8 226667 -NCIT:C141041 Thyroid Gland Medullary Carcinoma by AJCC v7 Stage 8 226668 -NCIT:C6133 Stage I Thyroid Gland Medullary Carcinoma AJCC v7 9 226669 -NCIT:C6134 Stage II Thyroid Gland Medullary Carcinoma AJCC v7 9 226670 -NCIT:C6135 Stage III Thyroid Gland Medullary Carcinoma AJCC v7 9 226671 -NCIT:C6136 Stage IV Thyroid Gland Medullary Carcinoma AJCC v7 9 226672 -NCIT:C87549 Stage IVA Thyroid Gland Medullary Carcinoma AJCC v7 10 226673 -NCIT:C87550 Stage IVB Thyroid Gland Medullary Carcinoma AJCC v7 10 226674 -NCIT:C87551 Stage IVC Thyroid Gland Medullary Carcinoma AJCC v7 10 226675 -NCIT:C141042 Thyroid Gland Medullary Carcinoma by AJCC v8 Stage 8 226676 -NCIT:C141043 Stage I Thyroid Gland Medullary Carcinoma AJCC v8 9 226677 -NCIT:C141044 Stage II Thyroid Gland Medullary Carcinoma AJCC v8 9 226678 -NCIT:C141045 Stage III Thyroid Gland Medullary Carcinoma AJCC v8 9 226679 -NCIT:C141046 Stage IV Thyroid Gland Medullary Carcinoma AJCC v8 9 226680 -NCIT:C141047 Stage IVA Thyroid Gland Medullary Carcinoma AJCC v8 10 226681 -NCIT:C141048 Stage IVB Thyroid Gland Medullary Carcinoma AJCC v8 10 226682 -NCIT:C141049 Stage IVC Thyroid Gland Medullary Carcinoma AJCC v8 10 226683 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 8 226684 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 9 226685 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 8 226686 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 226687 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 226688 -NCIT:C163974 Unresectable Thyroid Gland Medullary Carcinoma 8 226689 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 9 226690 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 8 226691 -NCIT:C4193 Thyroid Gland Medullary Carcinoma with Amyloid Stroma 8 226692 -NCIT:C46098 Sporadic Thyroid Gland Medullary Carcinoma 8 226693 -NCIT:C46103 Sporadic Thyroid Gland Micromedullary Carcinoma 9 226694 -NCIT:C46099 Hereditary Thyroid Gland Medullary Carcinoma 8 226695 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 9 226696 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 9 226697 -NCIT:C46104 Thyroid Gland Mixed Medullary and Follicular Cell-Derived Carcinoma 7 226698 -NCIT:C187992 Thyroid Gland Mixed Medullary and Follicular Carcinoma 8 226699 -NCIT:C187993 Thyroid Gland Mixed Medullary and Papillary Carcinoma 8 226700 -NCIT:C46105 Thyroid Gland Spindle Epithelial Tumor with Thymus-Like Elements 7 226701 -NCIT:C190064 Childhood Thyroid Gland Spindle Epithelial Tumor with Thymus-Like Elements 8 226702 -NCIT:C46106 Intrathyroid Thymic Carcinoma 7 226703 -NCIT:C7908 Recurrent Thyroid Gland Carcinoma 7 226704 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 8 226705 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 9 226706 -NCIT:C153624 Recurrent Thyroid Gland Anaplastic Carcinoma 8 226707 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 8 226708 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 9 226709 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 9 226710 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 10 226711 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 8 226712 -NCIT:C4906 Parathyroid Gland Carcinoma 6 226713 -NCIT:C118819 Childhood Parathyroid Gland Carcinoma 7 226714 -NCIT:C7826 Localized Parathyroid Gland Carcinoma 7 226715 -NCIT:C7828 Recurrent Parathyroid Gland Carcinoma 7 226716 -NCIT:C9044 Metastatic Parathyroid Gland Carcinoma 7 226717 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 226718 -NCIT:C7624 Recurrent Head and Neck Carcinoma 5 226719 -NCIT:C133709 Recurrent Head and Neck Squamous Cell Carcinoma 6 226720 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 226721 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 226722 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 226723 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 226724 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 226725 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 226726 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 226727 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 226728 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 226729 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 7 226730 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 226731 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 226732 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 226733 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 226734 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 226735 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 226736 -NCIT:C176682 Locally Recurrent Head and Neck Squamous Cell Carcinoma 7 226737 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 7 226738 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 226739 -NCIT:C4034 Recurrent Laryngeal Carcinoma 6 226740 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 7 226741 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 226742 -NCIT:C5103 Recurrent Pharyngeal Carcinoma 6 226743 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 7 226744 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 226745 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 226746 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 226747 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 226748 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 226749 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 226750 -NCIT:C8051 Recurrent Oropharyngeal Carcinoma 7 226751 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 226752 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 226753 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 7 226754 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 226755 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 226756 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 226757 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 7 226758 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 226759 -NCIT:C67558 Recurrent Sinonasal Carcinoma 6 226760 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 226761 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 226762 -NCIT:C7828 Recurrent Parathyroid Gland Carcinoma 6 226763 -NCIT:C7908 Recurrent Thyroid Gland Carcinoma 6 226764 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 7 226765 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 8 226766 -NCIT:C153624 Recurrent Thyroid Gland Anaplastic Carcinoma 7 226767 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 7 226768 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 8 226769 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 8 226770 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 9 226771 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 7 226772 -NCIT:C7926 Recurrent Salivary Gland Carcinoma 6 226773 -NCIT:C153611 Recurrent Salivary Duct Carcinoma 7 226774 -NCIT:C153612 Recurrent Minor Salivary Gland Adenocarcinoma 7 226775 -NCIT:C153800 Recurrent Parotid Gland Carcinoma 7 226776 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 8 226777 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 8 226778 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 226779 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 8 226780 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 226781 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 8 226782 -NCIT:C153801 Recurrent Submandibular Gland Carcinoma 7 226783 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 8 226784 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 8 226785 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 226786 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 8 226787 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 226788 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 8 226789 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 226790 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 226791 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 226792 -NCIT:C8037 Recurrent Lip and Oral Cavity Carcinoma 6 226793 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 226794 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 226795 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 226796 -NCIT:C6076 Recurrent Oral Cavity Carcinoma 7 226797 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 226798 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 226799 -NCIT:C8215 Recurrent Oral Cavity Mucoepidermoid Carcinoma 8 226800 -NCIT:C8216 Recurrent Oral Cavity Adenoid Cystic Carcinoma 8 226801 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 7 226802 -NCIT:C9272 Salivary Gland Carcinoma 5 226803 -NCIT:C118824 Childhood Salivary Gland Carcinoma 6 226804 -NCIT:C190273 Childhood Salivary Gland Mucoepidermoid Carcinoma 7 226805 -NCIT:C190274 Childhood Salivary Gland Acinic Cell Carcinoma 7 226806 -NCIT:C118825 Adult Salivary Gland Carcinoma 6 226807 -NCIT:C158463 Metastatic Salivary Gland Carcinoma 6 226808 -NCIT:C158464 Locally Advanced Salivary Gland Carcinoma 7 226809 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 7 226810 -NCIT:C177723 Advanced Salivary Gland Carcinoma 7 226811 -NCIT:C5899 Stage IV Major Salivary Gland Carcinoma with Metastasis 7 226812 -NCIT:C173649 Salivary Gland Poorly Differentiated Carcinoma 6 226813 -NCIT:C173653 Salivary Gland Neuroendocrine Carcinoma 7 226814 -NCIT:C173650 Salivary Gland Large Cell Neuroendocrine Carcinoma 8 226815 -NCIT:C35703 Salivary Gland Small Cell Neuroendocrine Carcinoma 8 226816 -NCIT:C5956 Minor Salivary Gland Small Cell Neuroendocrine Carcinoma 9 226817 -NCIT:C35735 Salivary Gland Large Cell Carcinoma 7 226818 -NCIT:C173650 Salivary Gland Large Cell Neuroendocrine Carcinoma 8 226819 -NCIT:C174034 Unresectable Salivary Gland Carcinoma 6 226820 -NCIT:C172651 Unresectable Salivary Gland Squamous Cell Carcinoma 7 226821 -NCIT:C177722 Refractory Salivary Gland Carcinoma 6 226822 -NCIT:C181079 Hybrid Salivary Gland Carcinoma 6 226823 -NCIT:C35700 Salivary Gland Myoepithelial Carcinoma 6 226824 -NCIT:C35701 Salivary Gland Epithelial-Myoepithelial Carcinoma 6 226825 -NCIT:C35736 Salivary Gland Lymphoepithelial Carcinoma 6 226826 -NCIT:C35737 Salivary Gland Adenosquamous Carcinoma 6 226827 -NCIT:C40410 Salivary Gland Carcinoma ex Pleomorphic Adenoma 6 226828 -NCIT:C5975 Major Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 226829 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 226830 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 226831 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 226832 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 226833 -NCIT:C5976 Minor Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 226834 -NCIT:C5907 Major Salivary Gland Carcinoma 6 226835 -NCIT:C132778 Major Salivary Gland Cancer by AJCC v7 Stage 7 226836 -NCIT:C5895 Stage I Major Salivary Gland Cancer AJCC v7 8 226837 -NCIT:C5896 Stage II Major Salivary Gland Cancer AJCC v7 8 226838 -NCIT:C5897 Stage III Major Salivary Gland Cancer AJCC v7 8 226839 -NCIT:C5898 Stage IV Major Salivary Gland Cancer AJCC v7 8 226840 -NCIT:C35694 Stage IVA Major Salivary Gland Cancer AJCC v7 9 226841 -NCIT:C35695 Stage IVB Major Salivary Gland Cancer AJCC v7 9 226842 -NCIT:C35696 Stage IVC Major Salivary Gland Cancer AJCC v7 9 226843 -NCIT:C5899 Stage IV Major Salivary Gland Carcinoma with Metastasis 9 226844 -NCIT:C5900 Stage IV Major Salivary Gland Carcinoma without Metastasis 9 226845 -NCIT:C132779 Major Salivary Gland Cancer by AJCC v8 Stage 7 226846 -NCIT:C132781 Stage I Major Salivary Gland Cancer AJCC v8 8 226847 -NCIT:C132783 Stage 0 Major Salivary Gland Cancer AJCC v8 8 226848 -NCIT:C132785 Stage II Major Salivary Gland Cancer AJCC v8 8 226849 -NCIT:C132786 Stage III Major Salivary Gland Cancer AJCC v8 8 226850 -NCIT:C132787 Stage IV Major Salivary Gland Cancer AJCC v8 8 226851 -NCIT:C132788 Stage IVA Major Salivary Gland Cancer AJCC v8 9 226852 -NCIT:C132789 Stage IVB Major Salivary Gland Cancer AJCC v8 9 226853 -NCIT:C132790 Stage IVC Major Salivary Gland Cancer AJCC v8 9 226854 -NCIT:C181161 Major Salivary Gland Squamous Cell Carcinoma 7 226855 -NCIT:C5942 Parotid Gland Squamous Cell Carcinoma 8 226856 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 9 226857 -NCIT:C5943 Submandibular Gland Squamous Cell Carcinoma 8 226858 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 9 226859 -NCIT:C5903 Major Salivary Gland Adenocarcinoma 7 226860 -NCIT:C5901 Major Salivary Gland Acinic Cell Carcinoma 8 226861 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 226862 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 226863 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 226864 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 226865 -NCIT:C5940 Submandibular Gland Adenocarcinoma 8 226866 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 226867 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 226868 -NCIT:C5941 Parotid Gland Adenocarcinoma 8 226869 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 226870 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 226871 -NCIT:C5958 Sublingual Gland Adenocarcinoma 8 226872 -NCIT:C5905 Major Salivary Gland Adenoid Cystic Carcinoma 7 226873 -NCIT:C5935 Submandibular Gland Adenoid Cystic Carcinoma 8 226874 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 9 226875 -NCIT:C5937 Parotid Gland Adenoid Cystic Carcinoma 8 226876 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 9 226877 -NCIT:C5906 Major Salivary Gland Mucoepidermoid Carcinoma 7 226878 -NCIT:C5938 Parotid Gland Mucoepidermoid Carcinoma 8 226879 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 9 226880 -NCIT:C5939 Submandibular Gland Mucoepidermoid Carcinoma 8 226881 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 9 226882 -NCIT:C5975 Major Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 226883 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 226884 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 226885 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 226886 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 226887 -NCIT:C6791 Parotid Gland Carcinoma 7 226888 -NCIT:C153800 Recurrent Parotid Gland Carcinoma 8 226889 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 9 226890 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 9 226891 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 226892 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 9 226893 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 9 226894 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 9 226895 -NCIT:C5937 Parotid Gland Adenoid Cystic Carcinoma 8 226896 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 9 226897 -NCIT:C5938 Parotid Gland Mucoepidermoid Carcinoma 8 226898 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 9 226899 -NCIT:C5941 Parotid Gland Adenocarcinoma 8 226900 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 226901 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 226902 -NCIT:C5942 Parotid Gland Squamous Cell Carcinoma 8 226903 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 9 226904 -NCIT:C5946 Parotid Gland Undifferentiated Carcinoma 8 226905 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 9 226906 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 226907 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 226908 -NCIT:C8396 Submandibular Gland Carcinoma 7 226909 -NCIT:C153801 Recurrent Submandibular Gland Carcinoma 8 226910 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 9 226911 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 9 226912 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 226913 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 9 226914 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 9 226915 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 9 226916 -NCIT:C5935 Submandibular Gland Adenoid Cystic Carcinoma 8 226917 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 9 226918 -NCIT:C5939 Submandibular Gland Mucoepidermoid Carcinoma 8 226919 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 9 226920 -NCIT:C5940 Submandibular Gland Adenocarcinoma 8 226921 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 226922 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 226923 -NCIT:C5943 Submandibular Gland Squamous Cell Carcinoma 8 226924 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 9 226925 -NCIT:C5947 Submandibular Gland Undifferentiated Carcinoma 8 226926 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 9 226927 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 226928 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 226929 -NCIT:C8397 Sublingual Gland Carcinoma 7 226930 -NCIT:C5958 Sublingual Gland Adenocarcinoma 8 226931 -NCIT:C5908 Salivary Gland Mucoepidermoid Carcinoma 6 226932 -NCIT:C190273 Childhood Salivary Gland Mucoepidermoid Carcinoma 7 226933 -NCIT:C5906 Major Salivary Gland Mucoepidermoid Carcinoma 7 226934 -NCIT:C5938 Parotid Gland Mucoepidermoid Carcinoma 8 226935 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 9 226936 -NCIT:C5939 Submandibular Gland Mucoepidermoid Carcinoma 8 226937 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 9 226938 -NCIT:C5953 Minor Salivary Gland Mucoepidermoid Carcinoma 7 226939 -NCIT:C8015 Low Grade Salivary Gland Mucoepidermoid Carcinoma 7 226940 -NCIT:C8017 Intermediate Grade Salivary Gland Mucoepidermoid Carcinoma 7 226941 -NCIT:C8019 High Grade Salivary Gland Mucoepidermoid Carcinoma 7 226942 -NCIT:C5957 Minor Salivary Gland Carcinoma 6 226943 -NCIT:C5936 Minor Salivary Gland Adenoid Cystic Carcinoma 7 226944 -NCIT:C5948 Minor Salivary Gland Adenocarcinoma 7 226945 -NCIT:C153612 Recurrent Minor Salivary Gland Adenocarcinoma 8 226946 -NCIT:C160974 Cribriform Adenocarcinoma of Minor Salivary Gland 8 226947 -NCIT:C6243 Minor Salivary Gland Acinic Cell Carcinoma 8 226948 -NCIT:C5953 Minor Salivary Gland Mucoepidermoid Carcinoma 7 226949 -NCIT:C5954 Minor Salivary Gland Undifferentiated Carcinoma 7 226950 -NCIT:C5956 Minor Salivary Gland Small Cell Neuroendocrine Carcinoma 7 226951 -NCIT:C5959 Minor Salivary Gland Squamous Cell Carcinoma 7 226952 -NCIT:C5976 Minor Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 226953 -NCIT:C62191 Salivary Gland Clear Cell Carcinoma 6 226954 -NCIT:C7926 Recurrent Salivary Gland Carcinoma 6 226955 -NCIT:C153611 Recurrent Salivary Duct Carcinoma 7 226956 -NCIT:C153612 Recurrent Minor Salivary Gland Adenocarcinoma 7 226957 -NCIT:C153800 Recurrent Parotid Gland Carcinoma 7 226958 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 8 226959 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 8 226960 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 226961 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 8 226962 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 226963 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 8 226964 -NCIT:C153801 Recurrent Submandibular Gland Carcinoma 7 226965 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 8 226966 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 8 226967 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 226968 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 8 226969 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 226970 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 8 226971 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 226972 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 226973 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 226974 -NCIT:C7991 Salivary Gland Squamous Cell Carcinoma 6 226975 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 7 226976 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 226977 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 226978 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 226979 -NCIT:C172651 Unresectable Salivary Gland Squamous Cell Carcinoma 7 226980 -NCIT:C181161 Major Salivary Gland Squamous Cell Carcinoma 7 226981 -NCIT:C5942 Parotid Gland Squamous Cell Carcinoma 8 226982 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 9 226983 -NCIT:C5943 Submandibular Gland Squamous Cell Carcinoma 8 226984 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 9 226985 -NCIT:C5959 Minor Salivary Gland Squamous Cell Carcinoma 7 226986 -NCIT:C8022 Salivary Gland Poorly Differentiated Squamous Cell Carcinoma 7 226987 -NCIT:C8012 Low Grade Salivary Gland Carcinoma 6 226988 -NCIT:C123384 Salivary Gland Secretory Carcinoma 7 226989 -NCIT:C35702 Salivary Gland Polymorphous Adenocarcinoma 7 226990 -NCIT:C173576 Oropharyngeal Polymorphous Adenocarcinoma 8 226991 -NCIT:C62192 Salivary Gland Intraductal Carcinoma 7 226992 -NCIT:C8015 Low Grade Salivary Gland Mucoepidermoid Carcinoma 7 226993 -NCIT:C8018 High Grade Salivary Gland Carcinoma 6 226994 -NCIT:C5904 Salivary Duct Carcinoma 7 226995 -NCIT:C153611 Recurrent Salivary Duct Carcinoma 8 226996 -NCIT:C62194 Salivary Gland Oncocytic Carcinoma 7 226997 -NCIT:C8019 High Grade Salivary Gland Mucoepidermoid Carcinoma 7 226998 -NCIT:C8021 Salivary Gland Adenocarcinoma 6 226999 -NCIT:C123384 Salivary Gland Secretory Carcinoma 7 227000 -NCIT:C173648 Salivary Gland Sebaceous Carcinoma 7 227001 -NCIT:C35702 Salivary Gland Polymorphous Adenocarcinoma 7 227002 -NCIT:C173576 Oropharyngeal Polymorphous Adenocarcinoma 8 227003 -NCIT:C3678 Salivary Gland Basal Cell Adenocarcinoma 7 227004 -NCIT:C5903 Major Salivary Gland Adenocarcinoma 7 227005 -NCIT:C5901 Major Salivary Gland Acinic Cell Carcinoma 8 227006 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 227007 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 227008 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 227009 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 227010 -NCIT:C5940 Submandibular Gland Adenocarcinoma 8 227011 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 227012 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 227013 -NCIT:C5941 Parotid Gland Adenocarcinoma 8 227014 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 227015 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 227016 -NCIT:C5958 Sublingual Gland Adenocarcinoma 8 227017 -NCIT:C5904 Salivary Duct Carcinoma 7 227018 -NCIT:C153611 Recurrent Salivary Duct Carcinoma 8 227019 -NCIT:C5948 Minor Salivary Gland Adenocarcinoma 7 227020 -NCIT:C153612 Recurrent Minor Salivary Gland Adenocarcinoma 8 227021 -NCIT:C160974 Cribriform Adenocarcinoma of Minor Salivary Gland 8 227022 -NCIT:C6243 Minor Salivary Gland Acinic Cell Carcinoma 8 227023 -NCIT:C5980 Salivary Gland Cystadenocarcinoma 7 227024 -NCIT:C62192 Salivary Gland Intraductal Carcinoma 7 227025 -NCIT:C62193 Salivary Gland Mucinous Adenocarcinoma 7 227026 -NCIT:C62194 Salivary Gland Oncocytic Carcinoma 7 227027 -NCIT:C62196 Salivary Gland Adenocarcinoma, Not Otherwise Specified 7 227028 -NCIT:C8013 Salivary Gland Acinic Cell Carcinoma 7 227029 -NCIT:C190274 Childhood Salivary Gland Acinic Cell Carcinoma 8 227030 -NCIT:C5901 Major Salivary Gland Acinic Cell Carcinoma 8 227031 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 227032 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 227033 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 227034 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 227035 -NCIT:C6243 Minor Salivary Gland Acinic Cell Carcinoma 8 227036 -NCIT:C8024 Salivary Gland Undifferentiated Carcinoma 6 227037 -NCIT:C5946 Parotid Gland Undifferentiated Carcinoma 7 227038 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 8 227039 -NCIT:C5947 Submandibular Gland Undifferentiated Carcinoma 7 227040 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 8 227041 -NCIT:C5954 Minor Salivary Gland Undifferentiated Carcinoma 7 227042 -NCIT:C8026 Salivary Gland Adenoid Cystic Carcinoma 6 227043 -NCIT:C5905 Major Salivary Gland Adenoid Cystic Carcinoma 7 227044 -NCIT:C5935 Submandibular Gland Adenoid Cystic Carcinoma 8 227045 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 9 227046 -NCIT:C5937 Parotid Gland Adenoid Cystic Carcinoma 8 227047 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 9 227048 -NCIT:C5936 Minor Salivary Gland Adenoid Cystic Carcinoma 7 227049 -NCIT:C9315 Lip and Oral Cavity Carcinoma 5 227050 -NCIT:C132728 Lip and Oral Cavity Cancer by AJCC v8 Stage 6 227051 -NCIT:C132729 Stage I Lip and Oral Cavity Cancer AJCC v8 7 227052 -NCIT:C132730 Stage II Lip and Oral Cavity Cancer AJCC v8 7 227053 -NCIT:C132731 Stage III Lip and Oral Cavity Cancer AJCC v8 7 227054 -NCIT:C132732 Stage IV Lip and Oral Cavity Cancer AJCC v8 7 227055 -NCIT:C132733 Stage IVA Lip and Oral Cavity Cancer AJCC v8 8 227056 -NCIT:C132734 Stage IVB Lip and Oral Cavity Cancer AJCC v8 8 227057 -NCIT:C132735 Stage IVC Lip and Oral Cavity Cancer AJCC v8 8 227058 -NCIT:C132736 Lip and Oral Cavity Cancer by AJCC v6 and v7 Stage 6 227059 -NCIT:C7939 Stage 0 Lip and Oral Cavity Cancer AJCC v6 and v7 7 227060 -NCIT:C4587 Stage 0 Oral Cavity Cancer AJCC v6 and v7 8 227061 -NCIT:C6052 Stage 0 Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 227062 -NCIT:C4588 Stage 0 Lip Cancer AJCC v6 and v7 8 227063 -NCIT:C5893 Stage 0 Lip Basal Cell Carcinoma AJCC v6 and v7 9 227064 -NCIT:C8033 Stage I Lip and Oral Cavity Cancer AJCC v6 and v7 7 227065 -NCIT:C115057 Stage I Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 227066 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 227067 -NCIT:C5876 Stage I Lip Cancer AJCC v6 and v7 8 227068 -NCIT:C8197 Stage I Lip Basal Cell Carcinoma 9 227069 -NCIT:C5883 Stage I Oral Cavity Cancer AJCC v6 and v7 8 227070 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 227071 -NCIT:C8199 Stage I Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 227072 -NCIT:C8200 Stage I Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 227073 -NCIT:C8034 Stage II Lip and Oral Cavity Cancer AJCC v6 and v7 7 227074 -NCIT:C115058 Stage II Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 227075 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 227076 -NCIT:C5877 Stage II Lip Cancer AJCC v6 and v7 8 227077 -NCIT:C8201 Stage II Lip Basal Cell Carcinoma 9 227078 -NCIT:C5884 Stage II Oral Cavity Cancer AJCC v6 and v7 8 227079 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 227080 -NCIT:C8203 Stage II Oral Cavity Mucoepidermoid Carcinoma 9 227081 -NCIT:C8204 Stage II Oral Cavity Adenoid Cystic Carcinoma 9 227082 -NCIT:C8035 Stage III Lip and Oral Cavity Cancer AJCC v6 and v7 7 227083 -NCIT:C115059 Stage III Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 227084 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 227085 -NCIT:C5878 Stage III Lip Cancer AJCC v6 and v7 8 227086 -NCIT:C8205 Stage III Lip Basal Cell Carcinoma 9 227087 -NCIT:C5885 Stage III Oral Cavity Cancer AJCC v6 and v7 8 227088 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 227089 -NCIT:C8207 Stage III Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 227090 -NCIT:C8208 Stage III Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 227091 -NCIT:C8036 Stage IV Lip and Oral Cavity Cancer AJCC v6 and v7 7 227092 -NCIT:C115060 Stage IV Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 227093 -NCIT:C115061 Stage IVA Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 227094 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 227095 -NCIT:C115062 Stage IVB Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 227096 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 227097 -NCIT:C115063 Stage IVC Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 227098 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 227099 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 227100 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 227101 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 227102 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 227103 -NCIT:C5879 Stage IV Lip Cancer AJCC v6 and v7 8 227104 -NCIT:C5880 Stage IVA Lip Cancer AJCC v6 and v7 9 227105 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 10 227106 -NCIT:C5881 Stage IVB Lip Cancer AJCC v6 and v7 9 227107 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 10 227108 -NCIT:C5882 Stage IVC Lip Cancer AJCC v6 and v7 9 227109 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 10 227110 -NCIT:C8209 Stage IV Lip Basal Cell Carcinoma 9 227111 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 10 227112 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 10 227113 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 10 227114 -NCIT:C5886 Stage IV Oral Cavity Cancer AJCC v6 and v7 8 227115 -NCIT:C5887 Stage IVA Oral Cavity Cancer AJCC v6 and v7 9 227116 -NCIT:C5863 Stage IVA Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 227117 -NCIT:C5868 Stage IVA Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 227118 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 227119 -NCIT:C5888 Stage IVB Oral Cavity Cancer AJCC v6 and v7 9 227120 -NCIT:C5864 Stage IVB Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 227121 -NCIT:C5867 Stage IVB Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 227122 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 227123 -NCIT:C5889 Stage IVC Oral Cavity Cancer AJCC v6 and v7 9 227124 -NCIT:C5865 Stage IVC Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 227125 -NCIT:C5866 Stage IVC Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 227126 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 227127 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 227128 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 227129 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 227130 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 227131 -NCIT:C8211 Stage IV Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 227132 -NCIT:C5866 Stage IVC Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 227133 -NCIT:C5867 Stage IVB Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 227134 -NCIT:C5868 Stage IVA Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 227135 -NCIT:C8212 Stage IV Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 227136 -NCIT:C5863 Stage IVA Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 227137 -NCIT:C5864 Stage IVB Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 227138 -NCIT:C5865 Stage IVC Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 227139 -NCIT:C87301 Stage IVA Lip and Oral Cavity Cancer AJCC v6 and v7 8 227140 -NCIT:C115061 Stage IVA Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 227141 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 227142 -NCIT:C5880 Stage IVA Lip Cancer AJCC v6 and v7 9 227143 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 10 227144 -NCIT:C5887 Stage IVA Oral Cavity Cancer AJCC v6 and v7 9 227145 -NCIT:C5863 Stage IVA Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 227146 -NCIT:C5868 Stage IVA Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 227147 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 227148 -NCIT:C87302 Stage IVB Lip and Oral Cavity Cancer AJCC v6 and v7 8 227149 -NCIT:C115062 Stage IVB Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 227150 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 227151 -NCIT:C5881 Stage IVB Lip Cancer AJCC v6 and v7 9 227152 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 10 227153 -NCIT:C5888 Stage IVB Oral Cavity Cancer AJCC v6 and v7 9 227154 -NCIT:C5864 Stage IVB Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 227155 -NCIT:C5867 Stage IVB Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 227156 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 227157 -NCIT:C87303 Stage IVC Lip and Oral Cavity Cancer AJCC v6 and v7 8 227158 -NCIT:C115063 Stage IVC Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 227159 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 227160 -NCIT:C5882 Stage IVC Lip Cancer AJCC v6 and v7 9 227161 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 10 227162 -NCIT:C5889 Stage IVC Oral Cavity Cancer AJCC v6 and v7 9 227163 -NCIT:C5865 Stage IVC Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 227164 -NCIT:C5866 Stage IVC Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 227165 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 227166 -NCIT:C156086 Metastatic Lip and Oral Cavity Carcinoma 6 227167 -NCIT:C156087 Metastatic Oral Cavity Carcinoma 7 227168 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 227169 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 227170 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 227171 -NCIT:C156089 Metastatic Oral Cavity Adenoid Cystic Carcinoma 8 227172 -NCIT:C156090 Metastatic Oral Cavity Mucoepidermoid Carcinoma 8 227173 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 8 227174 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 227175 -NCIT:C156088 Metastatic Lip Carcinoma 7 227176 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 227177 -NCIT:C165562 Locally Advanced Lip and Oral Cavity Carcinoma 7 227178 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 8 227179 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 227180 -NCIT:C3490 Lip Carcinoma 6 227181 -NCIT:C156088 Metastatic Lip Carcinoma 7 227182 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 227183 -NCIT:C4042 Lip Squamous Cell Carcinoma 7 227184 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 227185 -NCIT:C4588 Stage 0 Lip Cancer AJCC v6 and v7 7 227186 -NCIT:C5893 Stage 0 Lip Basal Cell Carcinoma AJCC v6 and v7 8 227187 -NCIT:C5876 Stage I Lip Cancer AJCC v6 and v7 7 227188 -NCIT:C8197 Stage I Lip Basal Cell Carcinoma 8 227189 -NCIT:C5877 Stage II Lip Cancer AJCC v6 and v7 7 227190 -NCIT:C8201 Stage II Lip Basal Cell Carcinoma 8 227191 -NCIT:C5878 Stage III Lip Cancer AJCC v6 and v7 7 227192 -NCIT:C8205 Stage III Lip Basal Cell Carcinoma 8 227193 -NCIT:C5879 Stage IV Lip Cancer AJCC v6 and v7 7 227194 -NCIT:C5880 Stage IVA Lip Cancer AJCC v6 and v7 8 227195 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 9 227196 -NCIT:C5881 Stage IVB Lip Cancer AJCC v6 and v7 8 227197 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 9 227198 -NCIT:C5882 Stage IVC Lip Cancer AJCC v6 and v7 8 227199 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 9 227200 -NCIT:C8209 Stage IV Lip Basal Cell Carcinoma 8 227201 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 9 227202 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 9 227203 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 9 227204 -NCIT:C8014 Lip Basal Cell Carcinoma 7 227205 -NCIT:C5893 Stage 0 Lip Basal Cell Carcinoma AJCC v6 and v7 8 227206 -NCIT:C8197 Stage I Lip Basal Cell Carcinoma 8 227207 -NCIT:C8201 Stage II Lip Basal Cell Carcinoma 8 227208 -NCIT:C8205 Stage III Lip Basal Cell Carcinoma 8 227209 -NCIT:C8209 Stage IV Lip Basal Cell Carcinoma 8 227210 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 9 227211 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 9 227212 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 9 227213 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 8 227214 -NCIT:C42690 Lip and Oral Cavity Squamous Cell Carcinoma 6 227215 -NCIT:C115057 Stage I Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 227216 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 227217 -NCIT:C115058 Stage II Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 227218 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 227219 -NCIT:C115059 Stage III Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 227220 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 227221 -NCIT:C115060 Stage IV Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 227222 -NCIT:C115061 Stage IVA Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 227223 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 227224 -NCIT:C115062 Stage IVB Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 227225 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 227226 -NCIT:C115063 Stage IVC Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 227227 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 227228 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 227229 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 227230 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 227231 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 227232 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 227233 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 227234 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 227235 -NCIT:C4042 Lip Squamous Cell Carcinoma 7 227236 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 227237 -NCIT:C4833 Oral Cavity Squamous Cell Carcinoma 7 227238 -NCIT:C129857 Gingival Squamous Cell Carcinoma 8 227239 -NCIT:C129289 Gingival Spindle Cell Carcinoma 9 227240 -NCIT:C8171 Lower Gingival Squamous Cell Carcinoma 9 227241 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 10 227242 -NCIT:C8172 Retromolar Trigone Squamous Cell Carcinoma 9 227243 -NCIT:C8173 Upper Gingival Squamous Cell Carcinoma 9 227244 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 10 227245 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 8 227246 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 227247 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 227248 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 227249 -NCIT:C170774 Alveolar Ridge Squamous Cell Carcinoma 8 227250 -NCIT:C170775 Upper Alveolar Ridge Squamous Cell Carcinoma 9 227251 -NCIT:C170776 Lower Alveolar Ridge Squamous Cell Carcinoma 9 227252 -NCIT:C172644 Unresectable Oral Cavity Squamous Cell Carcinoma 8 227253 -NCIT:C4040 Buccal Mucosa Squamous Cell Carcinoma 8 227254 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 9 227255 -NCIT:C4041 Floor of Mouth Squamous Cell Carcinoma 8 227256 -NCIT:C129873 Floor of Mouth Basaloid Squamous Cell Carcinoma 9 227257 -NCIT:C4648 Tongue Squamous Cell Carcinoma 8 227258 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 227259 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 227260 -NCIT:C4649 Palate Squamous Cell Carcinoma 8 227261 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 227262 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 227263 -NCIT:C54295 Primary Intraosseous Squamous Cell Carcinoma 8 227264 -NCIT:C54303 Primary Intraosseous Squamous Cell Carcinoma Derived From Keratocystic Odontogenic Tumor 9 227265 -NCIT:C7491 Primary Intraosseous Squamous Cell Carcinoma-Solid Type 9 227266 -NCIT:C7498 Keratinizing Primary Intraosseous Squamous Cell Carcinoma-Solid Type 10 227267 -NCIT:C7499 Non-Keratinizing Primary Intraosseous Squamous Cell Carcinoma -Solid Type 10 227268 -NCIT:C7500 Primary Intraosseous Squamous Cell Carcinoma Derived From Odontogenic Cyst 9 227269 -NCIT:C6052 Stage 0 Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 227270 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 227271 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 227272 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 227273 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 227274 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 227275 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 227276 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 227277 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 227278 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 227279 -NCIT:C8174 Oral Cavity Verrucous Carcinoma 8 227280 -NCIT:C179894 Oral Cavity Carcinoma Cuniculatum 9 227281 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 9 227282 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 9 227283 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 9 227284 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 227285 -NCIT:C8037 Recurrent Lip and Oral Cavity Carcinoma 6 227286 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 227287 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 227288 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 227289 -NCIT:C6076 Recurrent Oral Cavity Carcinoma 7 227290 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 227291 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 227292 -NCIT:C8215 Recurrent Oral Cavity Mucoepidermoid Carcinoma 8 227293 -NCIT:C8216 Recurrent Oral Cavity Adenoid Cystic Carcinoma 8 227294 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 7 227295 -NCIT:C8990 Oral Cavity Carcinoma 6 227296 -NCIT:C156087 Metastatic Oral Cavity Carcinoma 7 227297 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 227298 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 227299 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 227300 -NCIT:C156089 Metastatic Oral Cavity Adenoid Cystic Carcinoma 8 227301 -NCIT:C156090 Metastatic Oral Cavity Mucoepidermoid Carcinoma 8 227302 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 8 227303 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 227304 -NCIT:C173720 Odontogenic Carcinoma 7 227305 -NCIT:C173733 Sclerosing Odontogenic Carcinoma 8 227306 -NCIT:C4311 Ghost Cell Odontogenic Carcinoma 8 227307 -NCIT:C54295 Primary Intraosseous Squamous Cell Carcinoma 8 227308 -NCIT:C54303 Primary Intraosseous Squamous Cell Carcinoma Derived From Keratocystic Odontogenic Tumor 9 227309 -NCIT:C7491 Primary Intraosseous Squamous Cell Carcinoma-Solid Type 9 227310 -NCIT:C7498 Keratinizing Primary Intraosseous Squamous Cell Carcinoma-Solid Type 10 227311 -NCIT:C7499 Non-Keratinizing Primary Intraosseous Squamous Cell Carcinoma -Solid Type 10 227312 -NCIT:C7500 Primary Intraosseous Squamous Cell Carcinoma Derived From Odontogenic Cyst 9 227313 -NCIT:C54300 Clear Cell Odontogenic Carcinoma 8 227314 -NCIT:C7492 Ameloblastic Carcinoma 8 227315 -NCIT:C7493 Ameloblastic Carcinoma-Primary Type 9 227316 -NCIT:C7496 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated) 9 227317 -NCIT:C54298 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated), Intraosseous 10 227318 -NCIT:C54299 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated), Peripheral 10 227319 -NCIT:C7497 Ameloblastic Carcinoma Derived From Odontogenic Cyst 9 227320 -NCIT:C4587 Stage 0 Oral Cavity Cancer AJCC v6 and v7 7 227321 -NCIT:C6052 Stage 0 Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 227322 -NCIT:C4824 Tongue Carcinoma 7 227323 -NCIT:C171028 Tongue Adenoid Cystic Carcinoma 8 227324 -NCIT:C5991 Posterior Tongue Adenoid Cystic Carcinoma 9 227325 -NCIT:C6251 Anterior Tongue Adenoid Cystic Carcinoma 9 227326 -NCIT:C173807 Tongue Adenosquamous Carcinoma 8 227327 -NCIT:C181160 Tongue Mucoepidermoid Carcinoma 8 227328 -NCIT:C5990 Posterior Tongue Mucoepidermoid Carcinoma 9 227329 -NCIT:C6250 Anterior Tongue Mucoepidermoid Carcinoma 9 227330 -NCIT:C4648 Tongue Squamous Cell Carcinoma 8 227331 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 227332 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 227333 -NCIT:C6249 Anterior Tongue Carcinoma 8 227334 -NCIT:C6250 Anterior Tongue Mucoepidermoid Carcinoma 9 227335 -NCIT:C6251 Anterior Tongue Adenoid Cystic Carcinoma 9 227336 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 227337 -NCIT:C8407 Posterior Tongue Carcinoma 8 227338 -NCIT:C5990 Posterior Tongue Mucoepidermoid Carcinoma 9 227339 -NCIT:C5991 Posterior Tongue Adenoid Cystic Carcinoma 9 227340 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 227341 -NCIT:C4833 Oral Cavity Squamous Cell Carcinoma 7 227342 -NCIT:C129857 Gingival Squamous Cell Carcinoma 8 227343 -NCIT:C129289 Gingival Spindle Cell Carcinoma 9 227344 -NCIT:C8171 Lower Gingival Squamous Cell Carcinoma 9 227345 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 10 227346 -NCIT:C8172 Retromolar Trigone Squamous Cell Carcinoma 9 227347 -NCIT:C8173 Upper Gingival Squamous Cell Carcinoma 9 227348 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 10 227349 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 8 227350 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 227351 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 227352 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 227353 -NCIT:C170774 Alveolar Ridge Squamous Cell Carcinoma 8 227354 -NCIT:C170775 Upper Alveolar Ridge Squamous Cell Carcinoma 9 227355 -NCIT:C170776 Lower Alveolar Ridge Squamous Cell Carcinoma 9 227356 -NCIT:C172644 Unresectable Oral Cavity Squamous Cell Carcinoma 8 227357 -NCIT:C4040 Buccal Mucosa Squamous Cell Carcinoma 8 227358 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 9 227359 -NCIT:C4041 Floor of Mouth Squamous Cell Carcinoma 8 227360 -NCIT:C129873 Floor of Mouth Basaloid Squamous Cell Carcinoma 9 227361 -NCIT:C4648 Tongue Squamous Cell Carcinoma 8 227362 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 227363 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 227364 -NCIT:C4649 Palate Squamous Cell Carcinoma 8 227365 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 227366 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 227367 -NCIT:C54295 Primary Intraosseous Squamous Cell Carcinoma 8 227368 -NCIT:C54303 Primary Intraosseous Squamous Cell Carcinoma Derived From Keratocystic Odontogenic Tumor 9 227369 -NCIT:C7491 Primary Intraosseous Squamous Cell Carcinoma-Solid Type 9 227370 -NCIT:C7498 Keratinizing Primary Intraosseous Squamous Cell Carcinoma-Solid Type 10 227371 -NCIT:C7499 Non-Keratinizing Primary Intraosseous Squamous Cell Carcinoma -Solid Type 10 227372 -NCIT:C7500 Primary Intraosseous Squamous Cell Carcinoma Derived From Odontogenic Cyst 9 227373 -NCIT:C6052 Stage 0 Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 227374 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 227375 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 227376 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 227377 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 227378 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 227379 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 227380 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 227381 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 227382 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 227383 -NCIT:C8174 Oral Cavity Verrucous Carcinoma 8 227384 -NCIT:C179894 Oral Cavity Carcinoma Cuniculatum 9 227385 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 9 227386 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 9 227387 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 9 227388 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 227389 -NCIT:C5883 Stage I Oral Cavity Cancer AJCC v6 and v7 7 227390 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 227391 -NCIT:C8199 Stage I Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 227392 -NCIT:C8200 Stage I Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 227393 -NCIT:C5884 Stage II Oral Cavity Cancer AJCC v6 and v7 7 227394 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 227395 -NCIT:C8203 Stage II Oral Cavity Mucoepidermoid Carcinoma 8 227396 -NCIT:C8204 Stage II Oral Cavity Adenoid Cystic Carcinoma 8 227397 -NCIT:C5885 Stage III Oral Cavity Cancer AJCC v6 and v7 7 227398 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 227399 -NCIT:C8207 Stage III Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 227400 -NCIT:C8208 Stage III Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 227401 -NCIT:C5886 Stage IV Oral Cavity Cancer AJCC v6 and v7 7 227402 -NCIT:C5887 Stage IVA Oral Cavity Cancer AJCC v6 and v7 8 227403 -NCIT:C5863 Stage IVA Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 227404 -NCIT:C5868 Stage IVA Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 227405 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 227406 -NCIT:C5888 Stage IVB Oral Cavity Cancer AJCC v6 and v7 8 227407 -NCIT:C5864 Stage IVB Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 227408 -NCIT:C5867 Stage IVB Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 227409 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 227410 -NCIT:C5889 Stage IVC Oral Cavity Cancer AJCC v6 and v7 8 227411 -NCIT:C5865 Stage IVC Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 227412 -NCIT:C5866 Stage IVC Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 227413 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 227414 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 227415 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 227416 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 227417 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 227418 -NCIT:C8211 Stage IV Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 227419 -NCIT:C5866 Stage IVC Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 227420 -NCIT:C5867 Stage IVB Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 227421 -NCIT:C5868 Stage IVA Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 227422 -NCIT:C8212 Stage IV Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 227423 -NCIT:C5863 Stage IVA Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 227424 -NCIT:C5864 Stage IVB Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 227425 -NCIT:C5865 Stage IVC Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 227426 -NCIT:C5914 Oral Cavity Adenocarcinoma 7 227427 -NCIT:C6076 Recurrent Oral Cavity Carcinoma 7 227428 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 227429 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 227430 -NCIT:C8215 Recurrent Oral Cavity Mucoepidermoid Carcinoma 8 227431 -NCIT:C8216 Recurrent Oral Cavity Adenoid Cystic Carcinoma 8 227432 -NCIT:C7721 Gingival Carcinoma 7 227433 -NCIT:C129857 Gingival Squamous Cell Carcinoma 8 227434 -NCIT:C129289 Gingival Spindle Cell Carcinoma 9 227435 -NCIT:C8171 Lower Gingival Squamous Cell Carcinoma 9 227436 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 10 227437 -NCIT:C8172 Retromolar Trigone Squamous Cell Carcinoma 9 227438 -NCIT:C8173 Upper Gingival Squamous Cell Carcinoma 9 227439 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 10 227440 -NCIT:C8392 Upper Gingival Carcinoma 8 227441 -NCIT:C8173 Upper Gingival Squamous Cell Carcinoma 9 227442 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 10 227443 -NCIT:C8393 Lower Gingival Carcinoma 8 227444 -NCIT:C8171 Lower Gingival Squamous Cell Carcinoma 9 227445 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 10 227446 -NCIT:C8177 Oral Cavity Mucoepidermoid Carcinoma 7 227447 -NCIT:C156090 Metastatic Oral Cavity Mucoepidermoid Carcinoma 8 227448 -NCIT:C181160 Tongue Mucoepidermoid Carcinoma 8 227449 -NCIT:C5990 Posterior Tongue Mucoepidermoid Carcinoma 9 227450 -NCIT:C6250 Anterior Tongue Mucoepidermoid Carcinoma 9 227451 -NCIT:C6214 Hard Palate Mucoepidermoid Carcinoma 8 227452 -NCIT:C8178 Floor of Mouth Mucoepidermoid Carcinoma 8 227453 -NCIT:C8199 Stage I Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 227454 -NCIT:C8203 Stage II Oral Cavity Mucoepidermoid Carcinoma 8 227455 -NCIT:C8207 Stage III Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 227456 -NCIT:C8211 Stage IV Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 227457 -NCIT:C5866 Stage IVC Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 227458 -NCIT:C5867 Stage IVB Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 227459 -NCIT:C5868 Stage IVA Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 227460 -NCIT:C8215 Recurrent Oral Cavity Mucoepidermoid Carcinoma 8 227461 -NCIT:C8179 Oral Cavity Adenoid Cystic Carcinoma 7 227462 -NCIT:C156089 Metastatic Oral Cavity Adenoid Cystic Carcinoma 8 227463 -NCIT:C171028 Tongue Adenoid Cystic Carcinoma 8 227464 -NCIT:C5991 Posterior Tongue Adenoid Cystic Carcinoma 9 227465 -NCIT:C6251 Anterior Tongue Adenoid Cystic Carcinoma 9 227466 -NCIT:C6213 Hard Palate Adenoid Cystic Carcinoma 8 227467 -NCIT:C8180 Floor of Mouth Adenoid Cystic Carcinoma 8 227468 -NCIT:C8200 Stage I Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 227469 -NCIT:C8204 Stage II Oral Cavity Adenoid Cystic Carcinoma 8 227470 -NCIT:C8208 Stage III Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 227471 -NCIT:C8212 Stage IV Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 227472 -NCIT:C5863 Stage IVA Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 227473 -NCIT:C5864 Stage IVB Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 227474 -NCIT:C5865 Stage IVC Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 227475 -NCIT:C8216 Recurrent Oral Cavity Adenoid Cystic Carcinoma 8 227476 -NCIT:C8463 Palate Carcinoma 7 227477 -NCIT:C4649 Palate Squamous Cell Carcinoma 8 227478 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 227479 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 227480 -NCIT:C8394 Hard Palate Carcinoma 8 227481 -NCIT:C6213 Hard Palate Adenoid Cystic Carcinoma 9 227482 -NCIT:C6214 Hard Palate Mucoepidermoid Carcinoma 9 227483 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 227484 -NCIT:C8395 Soft Palate Carcinoma 8 227485 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 227486 -NCIT:C9319 Floor of the Mouth Carcinoma 7 227487 -NCIT:C4041 Floor of Mouth Squamous Cell Carcinoma 8 227488 -NCIT:C129873 Floor of Mouth Basaloid Squamous Cell Carcinoma 9 227489 -NCIT:C8178 Floor of Mouth Mucoepidermoid Carcinoma 8 227490 -NCIT:C8180 Floor of Mouth Adenoid Cystic Carcinoma 8 227491 -NCIT:C36310 Secondary Carcinoma 4 227492 -NCIT:C167344 Spiradenocylindrocarcinoma 5 227493 -NCIT:C3482 Metastatic Carcinoma 5 227494 -NCIT:C126465 Metastatic Head and Neck Carcinoma 6 227495 -NCIT:C129861 Advanced Head and Neck Carcinoma 7 227496 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 8 227497 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 227498 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 227499 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 227500 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 227501 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 227502 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 227503 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 227504 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 8 227505 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 227506 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 227507 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 227508 -NCIT:C170784 Advanced Pharyngeal Carcinoma 8 227509 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 9 227510 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 227511 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 227512 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 227513 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 227514 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 227515 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 9 227516 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 227517 -NCIT:C177723 Advanced Salivary Gland Carcinoma 8 227518 -NCIT:C133193 Metastatic Thyroid Gland Carcinoma 7 227519 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 8 227520 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 227521 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 227522 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 8 227523 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 227524 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 227525 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 227526 -NCIT:C170831 Metastatic Thyroid Gland Anaplastic Carcinoma 8 227527 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 227528 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 227529 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 8 227530 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 227531 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 9 227532 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 227533 -NCIT:C173979 Metastatic Differentiated Thyroid Gland Carcinoma 8 227534 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 9 227535 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 10 227536 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 11 227537 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 9 227538 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 227539 -NCIT:C174046 Metastatic Poorly Differentiated Thyroid Gland Carcinoma 8 227540 -NCIT:C148153 Metastatic Head and Neck Squamous Cell Carcinoma 7 227541 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 8 227542 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 227543 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 227544 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 227545 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 227546 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 227547 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 227548 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 227549 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 227550 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 227551 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 227552 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 8 227553 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 227554 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 227555 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 227556 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 8 227557 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 227558 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 227559 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 227560 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 227561 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 227562 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 227563 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 227564 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 227565 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 227566 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 227567 -NCIT:C162882 Metastatic Sinonasal Squamous Cell Carcinoma 8 227568 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 227569 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 227570 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 227571 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 9 227572 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 227573 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 9 227574 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 227575 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 227576 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 227577 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 227578 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 8 227579 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 8 227580 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 227581 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 227582 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 227583 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 227584 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 227585 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 227586 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 227587 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 227588 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 227589 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 227590 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 227591 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 227592 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 227593 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 227594 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 227595 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 227596 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 227597 -NCIT:C153213 Locally Advanced Head and Neck Carcinoma 7 227598 -NCIT:C158464 Locally Advanced Salivary Gland Carcinoma 8 227599 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 8 227600 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 227601 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 227602 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 227603 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 227604 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 227605 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 227606 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 227607 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 227608 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 227609 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 227610 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 227611 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 8 227612 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 227613 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 8 227614 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 227615 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 9 227616 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 227617 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 227618 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 9 227619 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 227620 -NCIT:C165562 Locally Advanced Lip and Oral Cavity Carcinoma 8 227621 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 9 227622 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 10 227623 -NCIT:C165563 Locally Advanced Paranasal Sinus Carcinoma 8 227624 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 227625 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 8 227626 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 227627 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 9 227628 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 227629 -NCIT:C156080 Metastatic Pharyngeal Carcinoma 7 227630 -NCIT:C156079 Metastatic Nasopharyngeal Carcinoma 8 227631 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 227632 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 227633 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 227634 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 227635 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 227636 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 227637 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 9 227638 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 227639 -NCIT:C156081 Metastatic Hypopharyngeal Carcinoma 8 227640 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 227641 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 227642 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 227643 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 9 227644 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 227645 -NCIT:C156082 Metastatic Oropharyngeal Carcinoma 8 227646 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 227647 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 227648 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 227649 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 227650 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 9 227651 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 227652 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 227653 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 9 227654 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 227655 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 8 227656 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 227657 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 9 227658 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 227659 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 227660 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 9 227661 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 227662 -NCIT:C170784 Advanced Pharyngeal Carcinoma 8 227663 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 9 227664 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 227665 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 227666 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 227667 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 227668 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 227669 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 9 227670 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 227671 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 8 227672 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 227673 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 227674 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 227675 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 227676 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 227677 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 227678 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 227679 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 227680 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 227681 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 227682 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 227683 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 227684 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 227685 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 227686 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 227687 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 227688 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 227689 -NCIT:C156085 Metastatic Laryngeal Carcinoma 7 227690 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 8 227691 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 227692 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 227693 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 8 227694 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 227695 -NCIT:C156086 Metastatic Lip and Oral Cavity Carcinoma 7 227696 -NCIT:C156087 Metastatic Oral Cavity Carcinoma 8 227697 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 9 227698 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 10 227699 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 10 227700 -NCIT:C156089 Metastatic Oral Cavity Adenoid Cystic Carcinoma 9 227701 -NCIT:C156090 Metastatic Oral Cavity Mucoepidermoid Carcinoma 9 227702 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 9 227703 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 10 227704 -NCIT:C156088 Metastatic Lip Carcinoma 8 227705 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 9 227706 -NCIT:C165562 Locally Advanced Lip and Oral Cavity Carcinoma 8 227707 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 9 227708 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 10 227709 -NCIT:C158463 Metastatic Salivary Gland Carcinoma 7 227710 -NCIT:C158464 Locally Advanced Salivary Gland Carcinoma 8 227711 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 8 227712 -NCIT:C177723 Advanced Salivary Gland Carcinoma 8 227713 -NCIT:C5899 Stage IV Major Salivary Gland Carcinoma with Metastasis 8 227714 -NCIT:C9044 Metastatic Parathyroid Gland Carcinoma 7 227715 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 227716 -NCIT:C129828 Metastatic Transitional Cell Carcinoma 6 227717 -NCIT:C126109 Metastatic Urothelial Carcinoma 7 227718 -NCIT:C148493 Advanced Urothelial Carcinoma 8 227719 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 227720 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 227721 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 227722 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 227723 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 227724 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 227725 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 227726 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 227727 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 227728 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 227729 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 227730 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 227731 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 227732 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 227733 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 227734 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 227735 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 227736 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 227737 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 227738 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 8 227739 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 227740 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 227741 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 227742 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 227743 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 227744 -NCIT:C191692 Metastatic Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 227745 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 227746 -NCIT:C191693 Metastatic Giant Cell Urothelial Carcinoma 8 227747 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 227748 -NCIT:C191694 Metastatic Lipid-Rich Urothelial Carcinoma 8 227749 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 227750 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 8 227751 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 227752 -NCIT:C191696 Metastatic Nested Urothelial Carcinoma 8 227753 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 227754 -NCIT:C191697 Metastatic Plasmacytoid Urothelial Carcinoma 8 227755 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 227756 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 8 227757 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 227758 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 8 227759 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 227760 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 227761 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 227762 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 9 227763 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 227764 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 227765 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 227766 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 227767 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 227768 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 227769 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 227770 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 227771 -NCIT:C172091 Advanced Transitional Cell Carcinoma 7 227772 -NCIT:C148493 Advanced Urothelial Carcinoma 8 227773 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 227774 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 227775 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 227776 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 227777 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 227778 -NCIT:C175493 Locally Advanced Transitional Cell Carcinoma 7 227779 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 8 227780 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 227781 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 227782 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 227783 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 227784 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 227785 -NCIT:C133839 Metastatic Digestive System Carcinoma 6 227786 -NCIT:C150577 Metastatic Gastroesophageal Junction Adenocarcinoma 7 227787 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 8 227788 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 8 227789 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 9 227790 -NCIT:C151904 Refractory Metastatic Digestive System Carcinoma 7 227791 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 8 227792 -NCIT:C151905 Recurrent Metastatic Digestive System Carcinoma 7 227793 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 8 227794 -NCIT:C153320 Metastatic Gastric Carcinoma 7 227795 -NCIT:C153319 Metastatic Gastric Adenocarcinoma 8 227796 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 9 227797 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 10 227798 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 10 227799 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 9 227800 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 10 227801 -NCIT:C165630 Metastatic Proximal Gastric Adenocarcinoma 9 227802 -NCIT:C166121 Oligometastatic Gastric Adenocarcinoma 9 227803 -NCIT:C166255 Advanced Gastric Adenocarcinoma 9 227804 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 10 227805 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 8 227806 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 227807 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 227808 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 227809 -NCIT:C162772 Locally Advanced Gastric Carcinoma 8 227810 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 9 227811 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 10 227812 -NCIT:C165299 Advanced Gastric Carcinoma 8 227813 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 227814 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 227815 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 227816 -NCIT:C166255 Advanced Gastric Adenocarcinoma 9 227817 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 10 227818 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 8 227819 -NCIT:C153358 Locally Advanced Digestive System Carcinoma 7 227820 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 8 227821 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 227822 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 227823 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 227824 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 8 227825 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 9 227826 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 8 227827 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 227828 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 227829 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 227830 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 227831 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 227832 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 227833 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 227834 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 227835 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 227836 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 227837 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 227838 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 227839 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 227840 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 227841 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 227842 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 227843 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 227844 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 227845 -NCIT:C162772 Locally Advanced Gastric Carcinoma 8 227846 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 9 227847 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 10 227848 -NCIT:C168976 Locally Advanced Esophageal Carcinoma 8 227849 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 9 227850 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 10 227851 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 9 227852 -NCIT:C168977 Locally Advanced Anal Carcinoma 8 227853 -NCIT:C170459 Locally Advanced Pancreatobiliary Carcinoma 8 227854 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 9 227855 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 10 227856 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 11 227857 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 227858 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 12 227859 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 11 227860 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 227861 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 10 227862 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 11 227863 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 9 227864 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 10 227865 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 11 227866 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 11 227867 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 9 227868 -NCIT:C171298 Locally Advanced Liver Carcinoma 8 227869 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 9 227870 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 227871 -NCIT:C154088 Metastatic Liver Carcinoma 7 227872 -NCIT:C154091 Metastatic Hepatocellular Carcinoma 8 227873 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 9 227874 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 10 227875 -NCIT:C167336 Advanced Hepatocellular Carcinoma 9 227876 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 10 227877 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 10 227878 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 9 227879 -NCIT:C171298 Locally Advanced Liver Carcinoma 8 227880 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 9 227881 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 227882 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 8 227883 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 227884 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 9 227885 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 7 227886 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 8 227887 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 227888 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 227889 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 227890 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 8 227891 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 227892 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 227893 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 227894 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 227895 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 227896 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 227897 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 227898 -NCIT:C156073 Metastatic Esophageal Carcinoma 7 227899 -NCIT:C156074 Metastatic Esophageal Adenocarcinoma 8 227900 -NCIT:C166120 Oligometastatic Esophageal Adenocarcinoma 9 227901 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 9 227902 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 9 227903 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 10 227904 -NCIT:C172249 Metastatic Distal Esophagus Adenocarcinoma 9 227905 -NCIT:C156075 Metastatic Esophageal Squamous Cell Carcinoma 8 227906 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 9 227907 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 9 227908 -NCIT:C160599 Advanced Esophageal Carcinoma 8 227909 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 9 227910 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 9 227911 -NCIT:C168976 Locally Advanced Esophageal Carcinoma 8 227912 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 9 227913 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 10 227914 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 9 227915 -NCIT:C156096 Metastatic Colorectal Carcinoma 7 227916 -NCIT:C142867 Metastatic Microsatellite Stable Colorectal Carcinoma 8 227917 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 227918 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 227919 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 227920 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 227921 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 227922 -NCIT:C153224 Colorectal Carcinoma Metastatic in the Lung 8 227923 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 9 227924 -NCIT:C156097 Metastatic Colon Carcinoma 8 227925 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 227926 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 227927 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 227928 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 227929 -NCIT:C167238 Advanced Colon Carcinoma 9 227930 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 227931 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 227932 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 227933 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 227934 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 227935 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 227936 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 227937 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 9 227938 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 9 227939 -NCIT:C156098 Metastatic Rectal Carcinoma 8 227940 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 9 227941 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 227942 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 227943 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 227944 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 227945 -NCIT:C170777 Advanced Rectal Carcinoma 9 227946 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 227947 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 227948 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 227949 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 227950 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 227951 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 227952 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 9 227953 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 227954 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 227955 -NCIT:C157366 Colorectal Carcinoma Metastatic in the Liver 8 227956 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 9 227957 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 9 227958 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 9 227959 -NCIT:C161048 Metastatic Colorectal Adenocarcinoma 8 227960 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 9 227961 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 227962 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 227963 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 227964 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 227965 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 227966 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 227967 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 227968 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 227969 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 9 227970 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 227971 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 227972 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 227973 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 227974 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 227975 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 227976 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 227977 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 227978 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 227979 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 227980 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 227981 -NCIT:C162475 Advanced Colorectal Carcinoma 8 227982 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 227983 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 227984 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 227985 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 227986 -NCIT:C167238 Advanced Colon Carcinoma 9 227987 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 227988 -NCIT:C170777 Advanced Rectal Carcinoma 9 227989 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 227990 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 227991 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 8 227992 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 227993 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 227994 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 227995 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 227996 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 227997 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 227998 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 227999 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 228000 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 228001 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 228002 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 228003 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 228004 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 228005 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 228006 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 228007 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 228008 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 228009 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 228010 -NCIT:C185165 Oligometastatic Colorectal Carcinoma 8 228011 -NCIT:C156746 Advanced Digestive System Carcinoma 7 228012 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 228013 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 228014 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 228015 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 8 228016 -NCIT:C160599 Advanced Esophageal Carcinoma 8 228017 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 9 228018 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 9 228019 -NCIT:C162475 Advanced Colorectal Carcinoma 8 228020 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 228021 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 228022 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 228023 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 228024 -NCIT:C167238 Advanced Colon Carcinoma 9 228025 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 228026 -NCIT:C170777 Advanced Rectal Carcinoma 9 228027 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 228028 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 228029 -NCIT:C165299 Advanced Gastric Carcinoma 8 228030 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 228031 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 228032 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 228033 -NCIT:C166255 Advanced Gastric Adenocarcinoma 9 228034 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 10 228035 -NCIT:C167336 Advanced Hepatocellular Carcinoma 8 228036 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 228037 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 228038 -NCIT:C170515 Advanced Anal Carcinoma 8 228039 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 228040 -NCIT:C171330 Advanced Pancreatobiliary Carcinoma 8 228041 -NCIT:C165452 Advanced Pancreatic Carcinoma 9 228042 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 10 228043 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 11 228044 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 9 228045 -NCIT:C171331 Advanced Biliary Tract Carcinoma 9 228046 -NCIT:C142870 Advanced Bile Duct Carcinoma 10 228047 -NCIT:C162752 Advanced Cholangiocarcinoma 11 228048 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 228049 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 228050 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 228051 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 11 228052 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 228053 -NCIT:C162755 Advanced Gallbladder Carcinoma 10 228054 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 228055 -NCIT:C162275 Metastatic Appendix Carcinoma 7 228056 -NCIT:C182104 Metastatic Appendix Adenocarcinoma 8 228057 -NCIT:C162274 Metastatic Appendix Mucinous Adenocarcinoma 9 228058 -NCIT:C182105 Advanced Appendix Adenocarcinoma 9 228059 -NCIT:C163967 Metastatic Digestive System Mixed Adenoneuroendocrine Carcinoma 7 228060 -NCIT:C170458 Metastatic Pancreatobiliary Carcinoma 7 228061 -NCIT:C156069 Metastatic Pancreatic Carcinoma 8 228062 -NCIT:C165452 Advanced Pancreatic Carcinoma 9 228063 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 10 228064 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 11 228065 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 9 228066 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 10 228067 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 11 228068 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 11 228069 -NCIT:C190770 Metastatic Pancreatic Adenosquamous Carcinoma 9 228070 -NCIT:C190771 Metastatic Pancreatic Squamous Cell Carcinoma 9 228071 -NCIT:C8933 Metastatic Pancreatic Adenocarcinoma 9 228072 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 10 228073 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 11 228074 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 11 228075 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 10 228076 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 11 228077 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 11 228078 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 11 228079 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 10 228080 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 11 228081 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 10 228082 -NCIT:C162751 Metastatic Biliary Tract Carcinoma 8 228083 -NCIT:C142869 Metastatic Bile Duct Carcinoma 9 228084 -NCIT:C142870 Advanced Bile Duct Carcinoma 10 228085 -NCIT:C162752 Advanced Cholangiocarcinoma 11 228086 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 228087 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 228088 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 228089 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 11 228090 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 228091 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 10 228092 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 11 228093 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 228094 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 12 228095 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 11 228096 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 228097 -NCIT:C157623 Metastatic Cholangiocarcinoma 10 228098 -NCIT:C162752 Advanced Cholangiocarcinoma 11 228099 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 228100 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 228101 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 228102 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 11 228103 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 228104 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 12 228105 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 11 228106 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 228107 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 11 228108 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 228109 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 228110 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 11 228111 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 228112 -NCIT:C185071 Metastatic Extrahepatic Bile Duct Carcinoma 10 228113 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 11 228114 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 12 228115 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 13 228116 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 228117 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 11 228118 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 228119 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 11 228120 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 228121 -NCIT:C162754 Metastatic Gallbladder Carcinoma 9 228122 -NCIT:C162755 Advanced Gallbladder Carcinoma 10 228123 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 10 228124 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 11 228125 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 9 228126 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 10 228127 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 11 228128 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 228129 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 12 228130 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 11 228131 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 228132 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 10 228133 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 11 228134 -NCIT:C171331 Advanced Biliary Tract Carcinoma 9 228135 -NCIT:C142870 Advanced Bile Duct Carcinoma 10 228136 -NCIT:C162752 Advanced Cholangiocarcinoma 11 228137 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 228138 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 228139 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 228140 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 11 228141 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 228142 -NCIT:C162755 Advanced Gallbladder Carcinoma 10 228143 -NCIT:C170459 Locally Advanced Pancreatobiliary Carcinoma 8 228144 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 9 228145 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 10 228146 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 11 228147 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 228148 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 12 228149 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 11 228150 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 228151 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 10 228152 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 11 228153 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 9 228154 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 10 228155 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 11 228156 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 11 228157 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 9 228158 -NCIT:C171326 Metastatic Ampulla of Vater Carcinoma 8 228159 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 9 228160 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 9 228161 -NCIT:C171330 Advanced Pancreatobiliary Carcinoma 8 228162 -NCIT:C165452 Advanced Pancreatic Carcinoma 9 228163 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 10 228164 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 11 228165 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 9 228166 -NCIT:C171331 Advanced Biliary Tract Carcinoma 9 228167 -NCIT:C142870 Advanced Bile Duct Carcinoma 10 228168 -NCIT:C162752 Advanced Cholangiocarcinoma 11 228169 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 228170 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 228171 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 228172 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 11 228173 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 228174 -NCIT:C162755 Advanced Gallbladder Carcinoma 10 228175 -NCIT:C170514 Metastatic Anal Carcinoma 7 228176 -NCIT:C168977 Locally Advanced Anal Carcinoma 8 228177 -NCIT:C169103 Metastatic Anal Squamous Cell Carcinoma 8 228178 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 9 228179 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 10 228180 -NCIT:C170515 Advanced Anal Carcinoma 8 228181 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 228182 -NCIT:C5612 Metastatic Anal Canal Carcinoma 8 228183 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 9 228184 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 10 228185 -NCIT:C8637 Metastatic Small Intestinal Carcinoma 7 228186 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 8 228187 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 228188 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 228189 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 228190 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 228191 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 228192 -NCIT:C8934 Metastatic Small Intestinal Adenocarcinoma 8 228193 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 228194 -NCIT:C146893 Metastatic Genitourinary System Carcinoma 6 228195 -NCIT:C126109 Metastatic Urothelial Carcinoma 7 228196 -NCIT:C148493 Advanced Urothelial Carcinoma 8 228197 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 228198 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 228199 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 228200 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 228201 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 228202 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 228203 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 228204 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 228205 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 228206 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 228207 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 228208 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 228209 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 228210 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 228211 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 228212 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 228213 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 228214 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 228215 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 228216 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 8 228217 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 228218 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 228219 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 228220 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 228221 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 228222 -NCIT:C191692 Metastatic Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 228223 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 228224 -NCIT:C191693 Metastatic Giant Cell Urothelial Carcinoma 8 228225 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 228226 -NCIT:C191694 Metastatic Lipid-Rich Urothelial Carcinoma 8 228227 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 228228 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 8 228229 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 228230 -NCIT:C191696 Metastatic Nested Urothelial Carcinoma 8 228231 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 228232 -NCIT:C191697 Metastatic Plasmacytoid Urothelial Carcinoma 8 228233 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 228234 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 8 228235 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 228236 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 8 228237 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 228238 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 228239 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 228240 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 9 228241 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 228242 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 228243 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 228244 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 228245 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 228246 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 228247 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 228248 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 228249 -NCIT:C153387 Metastatic Cervical Carcinoma 7 228250 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 8 228251 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 228252 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 228253 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 8 228254 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 228255 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 228256 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 228257 -NCIT:C153390 Metastatic Cervical Adenosquamous Carcinoma 8 228258 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 228259 -NCIT:C156294 Advanced Cervical Carcinoma 8 228260 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 228261 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 228262 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 228263 -NCIT:C156295 Locally Advanced Cervical Carcinoma 8 228264 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 228265 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 228266 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 9 228267 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 228268 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 228269 -NCIT:C156062 Metastatic Bladder Carcinoma 7 228270 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 228271 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 228272 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 228273 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 228274 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 228275 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 228276 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 228277 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 228278 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 228279 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 228280 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 228281 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 8 228282 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 8 228283 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 8 228284 -NCIT:C167071 Locally Advanced Bladder Carcinoma 8 228285 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 228286 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 9 228287 -NCIT:C167338 Advanced Bladder Carcinoma 8 228288 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 228289 -NCIT:C190772 Metastatic Non-Muscle Invasive Bladder Carcinoma 8 228290 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 9 228291 -NCIT:C156063 Metastatic Fallopian Tube Carcinoma 7 228292 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 8 228293 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 9 228294 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 8 228295 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 8 228296 -NCIT:C156064 Metastatic Ovarian Carcinoma 7 228297 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 8 228298 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 228299 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 228300 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 228301 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 9 228302 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 228303 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 228304 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 9 228305 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 228306 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 228307 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 228308 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 228309 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 228310 -NCIT:C165458 Advanced Ovarian Carcinoma 8 228311 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 228312 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 228313 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 228314 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 228315 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 228316 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 228317 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 228318 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 8 228319 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 228320 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 228321 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 228322 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 228323 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 8 228324 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 228325 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 8 228326 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 228327 -NCIT:C172234 Metastatic Ovarian Undifferentiated Carcinoma 8 228328 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 8 228329 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 228330 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 228331 -NCIT:C180333 Metastatic Microsatellite Stable Ovarian Carcinoma 8 228332 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 228333 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 8 228334 -NCIT:C27391 Metastatic Ovarian Small Cell Carcinoma, Hypercalcemic Type 8 228335 -NCIT:C156065 Metastatic Vaginal Carcinoma 7 228336 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 8 228337 -NCIT:C170788 Advanced Vaginal Carcinoma 8 228338 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 228339 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 228340 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 228341 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 228342 -NCIT:C181028 Metastatic Vaginal Adenosquamous Carcinoma 8 228343 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 228344 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 8 228345 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 228346 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 228347 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 8 228348 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 228349 -NCIT:C156066 Metastatic Vulvar Carcinoma 7 228350 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 8 228351 -NCIT:C170786 Advanced Vulvar Carcinoma 8 228352 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 8 228353 -NCIT:C156068 Metastatic Endometrial Carcinoma 7 228354 -NCIT:C159676 Advanced Endometrial Carcinoma 8 228355 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 228356 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 228357 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 228358 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 228359 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 8 228360 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 228361 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 228362 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 9 228363 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 8 228364 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 8 228365 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 228366 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 8 228367 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 9 228368 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 228369 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 228370 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 228371 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 228372 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 9 228373 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 228374 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 228375 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 228376 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 228377 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 9 228378 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 9 228379 -NCIT:C164143 Advanced Genitourinary System Carcinoma 7 228380 -NCIT:C148493 Advanced Urothelial Carcinoma 8 228381 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 228382 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 228383 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 228384 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 228385 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 228386 -NCIT:C156284 Advanced Prostate Carcinoma 8 228387 -NCIT:C156286 Advanced Prostate Adenocarcinoma 9 228388 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 228389 -NCIT:C156294 Advanced Cervical Carcinoma 8 228390 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 228391 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 228392 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 228393 -NCIT:C159676 Advanced Endometrial Carcinoma 8 228394 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 228395 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 228396 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 228397 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 228398 -NCIT:C165458 Advanced Ovarian Carcinoma 8 228399 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 228400 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 228401 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 228402 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 228403 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 228404 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 228405 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 228406 -NCIT:C167338 Advanced Bladder Carcinoma 8 228407 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 228408 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 8 228409 -NCIT:C170786 Advanced Vulvar Carcinoma 8 228410 -NCIT:C170788 Advanced Vaginal Carcinoma 8 228411 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 228412 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 228413 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 228414 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 228415 -NCIT:C170790 Advanced Penile Carcinoma 8 228416 -NCIT:C172617 Advanced Kidney Carcinoma 8 228417 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 228418 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 228419 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 228420 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 228421 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 228422 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 228423 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 228424 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 228425 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 228426 -NCIT:C167069 Locally Advanced Genitourinary System Carcinoma 7 228427 -NCIT:C156285 Locally Advanced Prostate Carcinoma 8 228428 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 9 228429 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 228430 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 9 228431 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 228432 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 9 228433 -NCIT:C156295 Locally Advanced Cervical Carcinoma 8 228434 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 228435 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 228436 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 9 228437 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 228438 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 228439 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 8 228440 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 228441 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 228442 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 228443 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 228444 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 228445 -NCIT:C167071 Locally Advanced Bladder Carcinoma 8 228446 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 228447 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 9 228448 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 8 228449 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 228450 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 228451 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 228452 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 228453 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 8 228454 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 9 228455 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 8 228456 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 228457 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 228458 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 9 228459 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 8 228460 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 8 228461 -NCIT:C170789 Locally Advanced Penile Carcinoma 8 228462 -NCIT:C172618 Locally Advanced Kidney Carcinoma 8 228463 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 228464 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 228465 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 228466 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 228467 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 228468 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 228469 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 228470 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 228471 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 228472 -NCIT:C185381 Metastatic Mesonephric Adenocarcinoma 7 228473 -NCIT:C27784 Metastatic Penile Carcinoma 7 228474 -NCIT:C170789 Locally Advanced Penile Carcinoma 8 228475 -NCIT:C170790 Advanced Penile Carcinoma 8 228476 -NCIT:C182111 Metastatic Squamous Cell Carcinoma of the Penis 8 228477 -NCIT:C27806 Metastatic Kidney Carcinoma 7 228478 -NCIT:C150595 Metastatic Renal Cell Carcinoma 8 228479 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 228480 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 228481 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 228482 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 228483 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 228484 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 228485 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 9 228486 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 228487 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 228488 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 9 228489 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 228490 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 228491 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 9 228492 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 228493 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 228494 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 228495 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 228496 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 228497 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 228498 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 228499 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 228500 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 228501 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 9 228502 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 228503 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 228504 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 9 228505 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 228506 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 228507 -NCIT:C157755 Metastatic Kidney Medullary Carcinoma 8 228508 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 228509 -NCIT:C163965 Metastatic Renal Pelvis Carcinoma 8 228510 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 228511 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 228512 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 228513 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 228514 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 228515 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 228516 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 228517 -NCIT:C172617 Advanced Kidney Carcinoma 8 228518 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 228519 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 228520 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 228521 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 228522 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 228523 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 228524 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 228525 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 228526 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 228527 -NCIT:C172618 Locally Advanced Kidney Carcinoma 8 228528 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 228529 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 228530 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 228531 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 228532 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 228533 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 228534 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 228535 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 228536 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 228537 -NCIT:C27818 Metastatic Ureter Carcinoma 7 228538 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 8 228539 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 228540 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 228541 -NCIT:C27819 Metastatic Urethral Carcinoma 7 228542 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 228543 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 228544 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 228545 -NCIT:C8946 Metastatic Prostate Carcinoma 7 228546 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 8 228547 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 9 228548 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 9 228549 -NCIT:C161609 Double-Negative Prostate Carcinoma 9 228550 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 9 228551 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 9 228552 -NCIT:C132881 Prostate Carcinoma Metastatic in the Soft Tissue 8 228553 -NCIT:C148536 Castration-Naive Prostate Carcinoma 8 228554 -NCIT:C153336 Castration-Sensitive Prostate Carcinoma 8 228555 -NCIT:C156284 Advanced Prostate Carcinoma 8 228556 -NCIT:C156286 Advanced Prostate Adenocarcinoma 9 228557 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 228558 -NCIT:C156285 Locally Advanced Prostate Carcinoma 8 228559 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 9 228560 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 228561 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 9 228562 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 228563 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 9 228564 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 8 228565 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 9 228566 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 9 228567 -NCIT:C161584 Prostate Carcinoma Metastatic in the Pelvic Cavity 8 228568 -NCIT:C161587 Prostate Carcinoma Metastatic in the Lymph Nodes 8 228569 -NCIT:C171265 Oligometastatic Prostate Carcinoma 8 228570 -NCIT:C36307 Prostate Carcinoma Metastatic in the Lung 8 228571 -NCIT:C36308 Prostate Carcinoma Metastatic in the Bone 8 228572 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 8 228573 -NCIT:C156286 Advanced Prostate Adenocarcinoma 9 228574 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 228575 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 9 228576 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 228577 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 228578 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 228579 -NCIT:C148128 Metastatic Thymic Carcinoma 6 228580 -NCIT:C148126 Locally Advanced Thymic Carcinoma 7 228581 -NCIT:C159903 Advanced Thymic Carcinoma 7 228582 -NCIT:C148130 Locally Advanced Carcinoma 6 228583 -NCIT:C148126 Locally Advanced Thymic Carcinoma 7 228584 -NCIT:C153206 Locally Advanced Lung Carcinoma 7 228585 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 8 228586 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 228587 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 228588 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 228589 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 228590 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 228591 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 228592 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 228593 -NCIT:C153213 Locally Advanced Head and Neck Carcinoma 7 228594 -NCIT:C158464 Locally Advanced Salivary Gland Carcinoma 8 228595 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 8 228596 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 228597 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 228598 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 228599 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 228600 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 228601 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 228602 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 228603 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 228604 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 228605 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 228606 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 228607 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 8 228608 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 228609 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 8 228610 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 228611 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 9 228612 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 228613 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 228614 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 9 228615 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 228616 -NCIT:C165562 Locally Advanced Lip and Oral Cavity Carcinoma 8 228617 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 9 228618 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 10 228619 -NCIT:C165563 Locally Advanced Paranasal Sinus Carcinoma 8 228620 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 228621 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 8 228622 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 228623 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 9 228624 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 228625 -NCIT:C153358 Locally Advanced Digestive System Carcinoma 7 228626 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 8 228627 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 228628 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 228629 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 228630 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 8 228631 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 9 228632 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 8 228633 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 228634 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 228635 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 228636 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 228637 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 228638 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 228639 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 228640 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 228641 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 228642 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 228643 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 228644 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 228645 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 228646 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 228647 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 228648 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 228649 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 228650 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 228651 -NCIT:C162772 Locally Advanced Gastric Carcinoma 8 228652 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 9 228653 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 10 228654 -NCIT:C168976 Locally Advanced Esophageal Carcinoma 8 228655 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 9 228656 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 10 228657 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 9 228658 -NCIT:C168977 Locally Advanced Anal Carcinoma 8 228659 -NCIT:C170459 Locally Advanced Pancreatobiliary Carcinoma 8 228660 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 9 228661 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 10 228662 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 11 228663 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 228664 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 12 228665 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 11 228666 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 228667 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 10 228668 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 11 228669 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 9 228670 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 10 228671 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 11 228672 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 11 228673 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 9 228674 -NCIT:C171298 Locally Advanced Liver Carcinoma 8 228675 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 9 228676 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 228677 -NCIT:C154321 Locally Advanced Squamous Cell Carcinoma 7 228678 -NCIT:C153182 Locally Advanced Skin Squamous Cell Carcinoma 8 228679 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 228680 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 228681 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 228682 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 8 228683 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 228684 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 228685 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 228686 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 228687 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 228688 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 228689 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 228690 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 228691 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 228692 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 228693 -NCIT:C165474 Locally Advanced Squamous Cell Carcinoma of Unknown Primary 8 228694 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 8 228695 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 228696 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 8 228697 -NCIT:C155698 Locally Advanced Unresectable Carcinoma 7 228698 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 8 228699 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 8 228700 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 8 228701 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 8 228702 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 228703 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 8 228704 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 228705 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 8 228706 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 228707 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 228708 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 8 228709 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 228710 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 228711 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 228712 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 228713 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 228714 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 228715 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 228716 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 8 228717 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 8 228718 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 8 228719 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 8 228720 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 8 228721 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 8 228722 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 8 228723 -NCIT:C156770 Locally Advanced Basal Cell Carcinoma 7 228724 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 8 228725 -NCIT:C158909 Locally Advanced Neuroendocrine Carcinoma 7 228726 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 228727 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 228728 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 8 228729 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 228730 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 228731 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 8 228732 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 228733 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 8 228734 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 228735 -NCIT:C160920 Locally Advanced Breast Carcinoma 7 228736 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 8 228737 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 228738 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 228739 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 228740 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 228741 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 8 228742 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 228743 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 228744 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 228745 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 228746 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 228747 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 228748 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 228749 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 228750 -NCIT:C167069 Locally Advanced Genitourinary System Carcinoma 7 228751 -NCIT:C156285 Locally Advanced Prostate Carcinoma 8 228752 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 9 228753 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 228754 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 9 228755 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 228756 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 9 228757 -NCIT:C156295 Locally Advanced Cervical Carcinoma 8 228758 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 228759 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 228760 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 9 228761 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 228762 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 228763 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 8 228764 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 228765 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 228766 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 228767 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 228768 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 228769 -NCIT:C167071 Locally Advanced Bladder Carcinoma 8 228770 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 228771 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 9 228772 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 8 228773 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 228774 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 228775 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 228776 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 228777 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 8 228778 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 9 228779 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 8 228780 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 228781 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 228782 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 9 228783 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 8 228784 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 8 228785 -NCIT:C170789 Locally Advanced Penile Carcinoma 8 228786 -NCIT:C172618 Locally Advanced Kidney Carcinoma 8 228787 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 228788 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 228789 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 228790 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 228791 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 228792 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 228793 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 228794 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 228795 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 228796 -NCIT:C167204 Locally Advanced Primary Peritoneal Carcinoma 7 228797 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 8 228798 -NCIT:C168978 Locally Advanced Adenocarcinoma 7 228799 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 8 228800 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 9 228801 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 9 228802 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 8 228803 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 228804 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 8 228805 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 228806 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 8 228807 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 9 228808 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 228809 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 228810 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 228811 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 8 228812 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 228813 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 228814 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 228815 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 228816 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 228817 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 228818 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 228819 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 228820 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 228821 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 8 228822 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 228823 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 9 228824 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 8 228825 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 228826 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 228827 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 228828 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 228829 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 228830 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 228831 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 228832 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 228833 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 8 228834 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 228835 -NCIT:C174045 Locally Advanced Endometrioid Adenocarcinoma 8 228836 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 228837 -NCIT:C174443 Locally Advanced Adrenal Cortical Carcinoma 8 228838 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 8 228839 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 8 228840 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 228841 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 228842 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 228843 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 228844 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 228845 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 228846 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 228847 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 228848 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 228849 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 228850 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 228851 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 228852 -NCIT:C175493 Locally Advanced Transitional Cell Carcinoma 7 228853 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 8 228854 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 228855 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 228856 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 228857 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 228858 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 228859 -NCIT:C175669 Locally Advanced Adenoid Cystic Carcinoma 7 228860 -NCIT:C153171 Advanced Carcinoma 6 228861 -NCIT:C129861 Advanced Head and Neck Carcinoma 7 228862 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 8 228863 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 228864 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 228865 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 228866 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 228867 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 228868 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 228869 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 228870 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 8 228871 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 228872 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 228873 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 228874 -NCIT:C170784 Advanced Pharyngeal Carcinoma 8 228875 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 9 228876 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 228877 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 228878 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 228879 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 228880 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 228881 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 9 228882 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 228883 -NCIT:C177723 Advanced Salivary Gland Carcinoma 8 228884 -NCIT:C153203 Advanced Lung Carcinoma 7 228885 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 228886 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 8 228887 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 228888 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 228889 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 228890 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 228891 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 228892 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 228893 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 228894 -NCIT:C180922 Advanced Bronchogenic Carcinoma 8 228895 -NCIT:C155870 Advanced Neuroendocrine Carcinoma 7 228896 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 228897 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 228898 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 228899 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 228900 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 228901 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 228902 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 228903 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 228904 -NCIT:C165300 Advanced Merkel Cell Carcinoma 8 228905 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 8 228906 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 228907 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 228908 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 228909 -NCIT:C156746 Advanced Digestive System Carcinoma 7 228910 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 228911 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 228912 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 228913 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 8 228914 -NCIT:C160599 Advanced Esophageal Carcinoma 8 228915 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 9 228916 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 9 228917 -NCIT:C162475 Advanced Colorectal Carcinoma 8 228918 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 228919 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 228920 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 228921 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 228922 -NCIT:C167238 Advanced Colon Carcinoma 9 228923 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 228924 -NCIT:C170777 Advanced Rectal Carcinoma 9 228925 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 228926 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 228927 -NCIT:C165299 Advanced Gastric Carcinoma 8 228928 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 228929 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 228930 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 228931 -NCIT:C166255 Advanced Gastric Adenocarcinoma 9 228932 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 10 228933 -NCIT:C167336 Advanced Hepatocellular Carcinoma 8 228934 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 228935 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 228936 -NCIT:C170515 Advanced Anal Carcinoma 8 228937 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 228938 -NCIT:C171330 Advanced Pancreatobiliary Carcinoma 8 228939 -NCIT:C165452 Advanced Pancreatic Carcinoma 9 228940 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 10 228941 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 11 228942 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 9 228943 -NCIT:C171331 Advanced Biliary Tract Carcinoma 9 228944 -NCIT:C142870 Advanced Bile Duct Carcinoma 10 228945 -NCIT:C162752 Advanced Cholangiocarcinoma 11 228946 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 228947 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 228948 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 228949 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 11 228950 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 228951 -NCIT:C162755 Advanced Gallbladder Carcinoma 10 228952 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 228953 -NCIT:C159556 Advanced Adenocarcinoma 7 228954 -NCIT:C153170 Advanced Renal Cell Carcinoma 8 228955 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 228956 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 228957 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 228958 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 228959 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 228960 -NCIT:C156286 Advanced Prostate Adenocarcinoma 8 228961 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 228962 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 228963 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 8 228964 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 8 228965 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 9 228966 -NCIT:C162752 Advanced Cholangiocarcinoma 8 228967 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 9 228968 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 9 228969 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 9 228970 -NCIT:C165700 Advanced Breast Adenocarcinoma 8 228971 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 228972 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 228973 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 228974 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 228975 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 228976 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 228977 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 228978 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 228979 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 228980 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 228981 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 228982 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 228983 -NCIT:C167336 Advanced Hepatocellular Carcinoma 8 228984 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 228985 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 228986 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 8 228987 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 228988 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 228989 -NCIT:C170807 Advanced Endometrioid Adenocarcinoma 8 228990 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 228991 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 228992 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 228993 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 228994 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 228995 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 228996 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 8 228997 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 8 228998 -NCIT:C176727 Advanced Lung Adenocarcinoma 8 228999 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 229000 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 229001 -NCIT:C191863 Advanced Adrenal Cortical Carcinoma 8 229002 -NCIT:C159903 Advanced Thymic Carcinoma 7 229003 -NCIT:C160298 Advanced NUT Carcinoma 7 229004 -NCIT:C162648 Advanced Breast Carcinoma 7 229005 -NCIT:C165700 Advanced Breast Adenocarcinoma 8 229006 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 229007 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 229008 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 229009 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 229010 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 229011 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 229012 -NCIT:C162653 Advanced Squamous Cell Carcinoma 7 229013 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 8 229014 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 229015 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 229016 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 229017 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 229018 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 229019 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 229020 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 229021 -NCIT:C168542 Advanced Skin Squamous Cell Carcinoma 8 229022 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 229023 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 8 229024 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 229025 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 229026 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 229027 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 8 229028 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 229029 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 229030 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 229031 -NCIT:C164012 Advanced Adenoid Cystic Carcinoma 7 229032 -NCIT:C164143 Advanced Genitourinary System Carcinoma 7 229033 -NCIT:C148493 Advanced Urothelial Carcinoma 8 229034 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 229035 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 229036 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 229037 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 229038 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 229039 -NCIT:C156284 Advanced Prostate Carcinoma 8 229040 -NCIT:C156286 Advanced Prostate Adenocarcinoma 9 229041 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 229042 -NCIT:C156294 Advanced Cervical Carcinoma 8 229043 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 229044 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 229045 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 229046 -NCIT:C159676 Advanced Endometrial Carcinoma 8 229047 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 229048 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 229049 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 229050 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 229051 -NCIT:C165458 Advanced Ovarian Carcinoma 8 229052 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 229053 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 229054 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 229055 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 229056 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 229057 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 229058 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 229059 -NCIT:C167338 Advanced Bladder Carcinoma 8 229060 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 229061 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 8 229062 -NCIT:C170786 Advanced Vulvar Carcinoma 8 229063 -NCIT:C170788 Advanced Vaginal Carcinoma 8 229064 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 229065 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 229066 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 229067 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 229068 -NCIT:C170790 Advanced Penile Carcinoma 8 229069 -NCIT:C172617 Advanced Kidney Carcinoma 8 229070 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 229071 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 229072 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 229073 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 229074 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 229075 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 229076 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 229077 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 229078 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 229079 -NCIT:C167396 Advanced Primary Peritoneal Carcinoma 7 229080 -NCIT:C170960 Advanced Carcinoma Of Unknown Primary 7 229081 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 8 229082 -NCIT:C172091 Advanced Transitional Cell Carcinoma 7 229083 -NCIT:C148493 Advanced Urothelial Carcinoma 8 229084 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 229085 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 229086 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 229087 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 229088 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 229089 -NCIT:C172362 Advanced Basal Cell Carcinoma 7 229090 -NCIT:C153202 Metastatic Lung Carcinoma 6 229091 -NCIT:C133503 Lung Carcinoma Metastatic in the Central Nervous System 7 229092 -NCIT:C36304 Lung Carcinoma Metastatic in the Brain 8 229093 -NCIT:C153203 Advanced Lung Carcinoma 7 229094 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 229095 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 8 229096 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 229097 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 229098 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 229099 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 229100 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 229101 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 229102 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 229103 -NCIT:C180922 Advanced Bronchogenic Carcinoma 8 229104 -NCIT:C153206 Locally Advanced Lung Carcinoma 7 229105 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 8 229106 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 229107 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 229108 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 229109 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 229110 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 229111 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 229112 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 229113 -NCIT:C156092 Metastatic Lung Squamous Cell Carcinoma 7 229114 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 229115 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 229116 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 229117 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 229118 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 229119 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 229120 -NCIT:C156094 Metastatic Lung Non-Small Cell Carcinoma 7 229121 -NCIT:C128798 Metastatic Lung Non-Squamous Non-Small Cell Carcinoma 8 229122 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 229123 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 229124 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 229125 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 229126 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 229127 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 229128 -NCIT:C155908 Metastatic Lung Adenocarcinoma 9 229129 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 229130 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 229131 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 9 229132 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 229133 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 229134 -NCIT:C156093 Metastatic Lung Adenosquamous Carcinoma 8 229135 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 229136 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 229137 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 229138 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 229139 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 229140 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 229141 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 8 229142 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 229143 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 229144 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 229145 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 229146 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 229147 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 229148 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 8 229149 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 229150 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 229151 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 229152 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 229153 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 229154 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 7 229155 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 229156 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 229157 -NCIT:C187195 Oligometastatic Lung Carcinoma 7 229158 -NCIT:C36305 Lung Carcinoma Metastatic in the Bone 7 229159 -NCIT:C36306 Lung Carcinoma Metastatic in the Liver 7 229160 -NCIT:C153238 Metastatic Breast Carcinoma 6 229161 -NCIT:C133501 Breast Carcinoma Metastatic in the Central Nervous System 7 229162 -NCIT:C36301 Breast Carcinoma Metastatic in the Brain 8 229163 -NCIT:C153227 Breast Carcinoma Metastatic in the Lymph Nodes 7 229164 -NCIT:C160920 Locally Advanced Breast Carcinoma 7 229165 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 8 229166 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 229167 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 229168 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 229169 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 229170 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 8 229171 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 229172 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 229173 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 229174 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 229175 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 229176 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 229177 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 229178 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 229179 -NCIT:C161830 Metastatic BRCA-Associated Breast Carcinoma 7 229180 -NCIT:C162648 Advanced Breast Carcinoma 7 229181 -NCIT:C165700 Advanced Breast Adenocarcinoma 8 229182 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 229183 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 229184 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 229185 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 229186 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 229187 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 229188 -NCIT:C165698 Metastatic Breast Adenocarcinoma 7 229189 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 8 229190 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 229191 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 229192 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 229193 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 229194 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 229195 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 229196 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 229197 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 229198 -NCIT:C165700 Advanced Breast Adenocarcinoma 8 229199 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 229200 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 229201 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 229202 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 229203 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 229204 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 229205 -NCIT:C168777 Metastatic HER2-Negative Breast Carcinoma 8 229206 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 229207 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 229208 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 229209 -NCIT:C179554 Metastatic HER2-Low Breast Carcinoma 8 229210 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 229211 -NCIT:C180924 Metastatic HER2-Positive Breast Carcinoma 8 229212 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 229213 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 229214 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 229215 -NCIT:C181787 Metastatic Breast Inflammatory Carcinoma 8 229216 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 9 229217 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 9 229218 -NCIT:C9246 Stage IIIB Breast Inflammatory Carcinoma 9 229219 -NCIT:C185880 Metastatic Hormone Receptor-Positive Breast Carcinoma 8 229220 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 229221 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 229222 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 229223 -NCIT:C190852 Metastatic Androgen Receptor-Positive Breast Carcinoma 9 229224 -NCIT:C190856 Metastatic Estrogen Receptor-Positive Breast Carcinoma 9 229225 -NCIT:C190677 Metastatic Hormone Receptor-Negative Breast Carcinoma 8 229226 -NCIT:C153348 Metastatic Triple-Negative Breast Carcinoma 9 229227 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 229228 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 10 229229 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 11 229230 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 10 229231 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 229232 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 229233 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 8 229234 -NCIT:C76326 Metastatic Breast Ductal Carcinoma 8 229235 -NCIT:C76328 Metastatic Breast Lobular Carcinoma 8 229236 -NCIT:C179515 Oligometastatic Breast Carcinoma 7 229237 -NCIT:C28311 Metastatic Breast Carcinoma in the Skin 7 229238 -NCIT:C36300 Breast Carcinoma Metastatic in the Lung 7 229239 -NCIT:C36302 Breast Carcinoma Metastatic in the Liver 7 229240 -NCIT:C36303 Breast Carcinoma Metastatic in the Bone 7 229241 -NCIT:C153226 Breast Carcinoma Metastatic in the Spine 8 229242 -NCIT:C5178 Metastatic Breast Squamous Cell Carcinoma 7 229243 -NCIT:C153315 Metastatic Unresectable Carcinoma 6 229244 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 7 229245 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 8 229246 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 8 229247 -NCIT:C155698 Locally Advanced Unresectable Carcinoma 7 229248 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 8 229249 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 8 229250 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 8 229251 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 8 229252 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 229253 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 8 229254 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 229255 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 8 229256 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 229257 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 229258 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 8 229259 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 229260 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 229261 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 229262 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 229263 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 229264 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 229265 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 229266 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 8 229267 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 8 229268 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 8 229269 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 8 229270 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 8 229271 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 8 229272 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 8 229273 -NCIT:C156788 Metastatic Unresectable Basal Cell Carcinoma 7 229274 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 8 229275 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 7 229276 -NCIT:C155869 Metastatic Neuroendocrine Carcinoma 6 229277 -NCIT:C155870 Advanced Neuroendocrine Carcinoma 7 229278 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 229279 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 229280 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 229281 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 229282 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 229283 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 229284 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 229285 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 229286 -NCIT:C165300 Advanced Merkel Cell Carcinoma 8 229287 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 8 229288 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 229289 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 229290 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 229291 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 7 229292 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 8 229293 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 229294 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 229295 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 229296 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 8 229297 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 229298 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 229299 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 229300 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 229301 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 229302 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 229303 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 229304 -NCIT:C158908 Metastatic Large Cell Neuroendocrine Carcinoma 7 229305 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 8 229306 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 8 229307 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 229308 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 8 229309 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 229310 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 229311 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 8 229312 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 229313 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 229314 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 229315 -NCIT:C158909 Locally Advanced Neuroendocrine Carcinoma 7 229316 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 229317 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 229318 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 8 229319 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 229320 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 229321 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 8 229322 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 229323 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 8 229324 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 229325 -NCIT:C158911 Metastatic Small Cell Neuroendocrine Carcinoma 7 229326 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 8 229327 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 9 229328 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 229329 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 8 229330 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 229331 -NCIT:C191852 Metastatic Extrapulmonary Small Cell Neuroendocrine Carcinoma 8 229332 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 229333 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 229334 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 9 229335 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 9 229336 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 7 229337 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 229338 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 229339 -NCIT:C162572 Metastatic Merkel Cell Carcinoma 7 229340 -NCIT:C165300 Advanced Merkel Cell Carcinoma 8 229341 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 8 229342 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 8 229343 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 7 229344 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 229345 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 229346 -NCIT:C163975 Neuroendocrine Carcinoma of Unknown Primary 7 229347 -NCIT:C156769 Metastatic Basal Cell Carcinoma 6 229348 -NCIT:C156770 Locally Advanced Basal Cell Carcinoma 7 229349 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 8 229350 -NCIT:C156788 Metastatic Unresectable Basal Cell Carcinoma 7 229351 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 8 229352 -NCIT:C172362 Advanced Basal Cell Carcinoma 7 229353 -NCIT:C157638 Metastatic Adenoid Cystic Carcinoma 6 229354 -NCIT:C156089 Metastatic Oral Cavity Adenoid Cystic Carcinoma 7 229355 -NCIT:C164012 Advanced Adenoid Cystic Carcinoma 7 229356 -NCIT:C175669 Locally Advanced Adenoid Cystic Carcinoma 7 229357 -NCIT:C160297 Metastatic NUT Carcinoma 6 229358 -NCIT:C160298 Advanced NUT Carcinoma 7 229359 -NCIT:C165537 Metastatic Non-Small Cell Carcinoma 6 229360 -NCIT:C156094 Metastatic Lung Non-Small Cell Carcinoma 7 229361 -NCIT:C128798 Metastatic Lung Non-Squamous Non-Small Cell Carcinoma 8 229362 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 229363 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 229364 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 229365 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 229366 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 229367 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 229368 -NCIT:C155908 Metastatic Lung Adenocarcinoma 9 229369 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 229370 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 229371 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 9 229372 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 229373 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 229374 -NCIT:C156093 Metastatic Lung Adenosquamous Carcinoma 8 229375 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 229376 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 229377 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 229378 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 229379 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 229380 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 229381 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 8 229382 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 229383 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 229384 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 229385 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 229386 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 229387 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 229388 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 8 229389 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 229390 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 229391 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 229392 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 229393 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 229394 -NCIT:C167203 Metastatic Primary Peritoneal Carcinoma 6 229395 -NCIT:C167204 Locally Advanced Primary Peritoneal Carcinoma 7 229396 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 8 229397 -NCIT:C167396 Advanced Primary Peritoneal Carcinoma 7 229398 -NCIT:C170972 Metastatic Primary Peritoneal Adenocarcinoma 7 229399 -NCIT:C171019 Metastatic Primary Peritoneal Serous Adenocarcinoma 8 229400 -NCIT:C186453 Metastatic Primary Peritoneal High Grade Serous Adenocarcinoma 9 229401 -NCIT:C179654 Metastatic Carcinoma in the Peritoneum 6 229402 -NCIT:C27382 Peritoneal Carcinomatosis 7 229403 -NCIT:C3345 Pseudomyxoma Peritonei 8 229404 -NCIT:C179179 Recurrent Pseudomyxoma Peritonei 9 229405 -NCIT:C179180 Refractory Pseudomyxoma Peritonei 9 229406 -NCIT:C188076 Metastatic Carcinoma in the Rectum 6 229407 -NCIT:C188077 Metastatic Carcinoma in the Pancreas 6 229408 -NCIT:C27381 Metastatic Carcinoma in the Adrenal Cortex 6 229409 -NCIT:C27408 Metastatic Carcinoma in the Lung 6 229410 -NCIT:C153224 Colorectal Carcinoma Metastatic in the Lung 7 229411 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 8 229412 -NCIT:C36300 Breast Carcinoma Metastatic in the Lung 7 229413 -NCIT:C36307 Prostate Carcinoma Metastatic in the Lung 7 229414 -NCIT:C27469 Disseminated Carcinoma 6 229415 -NCIT:C27185 Disseminated Adenocarcinoma 7 229416 -NCIT:C4829 Disseminated Squamous Cell Carcinoma 7 229417 -NCIT:C36082 Metastatic Carcinoma in the Bone 6 229418 -NCIT:C36303 Breast Carcinoma Metastatic in the Bone 7 229419 -NCIT:C153226 Breast Carcinoma Metastatic in the Spine 8 229420 -NCIT:C36305 Lung Carcinoma Metastatic in the Bone 7 229421 -NCIT:C36308 Prostate Carcinoma Metastatic in the Bone 7 229422 -NCIT:C3693 Carcinomatosis 6 229423 -NCIT:C168666 Gastrointestinal Carcinomatosis 7 229424 -NCIT:C27382 Peritoneal Carcinomatosis 7 229425 -NCIT:C3345 Pseudomyxoma Peritonei 8 229426 -NCIT:C179179 Recurrent Pseudomyxoma Peritonei 9 229427 -NCIT:C179180 Refractory Pseudomyxoma Peritonei 9 229428 -NCIT:C27383 Meningeal Carcinomatosis 7 229429 -NCIT:C27384 Pleural Carcinomatosis 7 229430 -NCIT:C27385 Pericardial Carcinomatosis 7 229431 -NCIT:C3870 Lymphangitic Carcinomatosis 7 229432 -NCIT:C3812 Carcinoma of Unknown Primary 6 229433 -NCIT:C162595 Head and Neck Carcinoma of Unknown Primary 7 229434 -NCIT:C173585 Neck Carcinoma of Unknown Primary 8 229435 -NCIT:C7713 Neck Squamous Cell Carcinoma of Unknown Primary 9 229436 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 10 229437 -NCIT:C187051 Human Papillomavirus-Related Head and Neck Squamous Cell Carcinoma of Unknown Primary 8 229438 -NCIT:C190149 Human Papillomavirus-Negative Head and Neck Squamous Cell Carcinoma of Unknown Primary 8 229439 -NCIT:C163975 Neuroendocrine Carcinoma of Unknown Primary 7 229440 -NCIT:C170960 Advanced Carcinoma Of Unknown Primary 7 229441 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 8 229442 -NCIT:C170961 Resectable Carcinoma of Unknown Primary 7 229443 -NCIT:C170962 Resectable Adenocarcinoma of Unknown Primary 8 229444 -NCIT:C4039 Adenocarcinoma of Unknown Primary 7 229445 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 8 229446 -NCIT:C170962 Resectable Adenocarcinoma of Unknown Primary 8 229447 -NCIT:C8099 Squamous Cell Carcinoma of Unknown Primary 7 229448 -NCIT:C165474 Locally Advanced Squamous Cell Carcinoma of Unknown Primary 8 229449 -NCIT:C187051 Human Papillomavirus-Related Head and Neck Squamous Cell Carcinoma of Unknown Primary 8 229450 -NCIT:C190149 Human Papillomavirus-Negative Head and Neck Squamous Cell Carcinoma of Unknown Primary 8 229451 -NCIT:C7713 Neck Squamous Cell Carcinoma of Unknown Primary 8 229452 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 9 229453 -NCIT:C8100 Undifferentiated Carcinoma of Unknown Primary 7 229454 -NCIT:C9181 Recurrent Carcinoma of Unknown Primary 7 229455 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 8 229456 -NCIT:C4104 Metastatic Squamous Cell Carcinoma 6 229457 -NCIT:C143013 Metastatic Skin Squamous Cell Carcinoma 7 229458 -NCIT:C153182 Locally Advanced Skin Squamous Cell Carcinoma 8 229459 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 229460 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 8 229461 -NCIT:C168542 Advanced Skin Squamous Cell Carcinoma 8 229462 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 229463 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 229464 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 229465 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 229466 -NCIT:C148153 Metastatic Head and Neck Squamous Cell Carcinoma 7 229467 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 8 229468 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 229469 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 229470 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 229471 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 229472 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 229473 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 229474 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 229475 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 229476 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 229477 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 229478 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 8 229479 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 229480 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 229481 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 229482 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 8 229483 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 229484 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 229485 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 229486 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 229487 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 229488 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 229489 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 229490 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 229491 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 229492 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 229493 -NCIT:C162882 Metastatic Sinonasal Squamous Cell Carcinoma 8 229494 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 229495 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 229496 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 229497 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 9 229498 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 229499 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 9 229500 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 229501 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 229502 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 229503 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 229504 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 8 229505 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 8 229506 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 229507 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 229508 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 229509 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 229510 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 229511 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 229512 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 229513 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 229514 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 229515 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 229516 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 229517 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 229518 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 229519 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 229520 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 229521 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 229522 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 229523 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 7 229524 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 229525 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 8 229526 -NCIT:C154321 Locally Advanced Squamous Cell Carcinoma 7 229527 -NCIT:C153182 Locally Advanced Skin Squamous Cell Carcinoma 8 229528 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 229529 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 229530 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 229531 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 8 229532 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 229533 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 229534 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 229535 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 229536 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 229537 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 229538 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 229539 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 229540 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 229541 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 229542 -NCIT:C165474 Locally Advanced Squamous Cell Carcinoma of Unknown Primary 8 229543 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 8 229544 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 229545 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 8 229546 -NCIT:C156075 Metastatic Esophageal Squamous Cell Carcinoma 7 229547 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 229548 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 229549 -NCIT:C156092 Metastatic Lung Squamous Cell Carcinoma 7 229550 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 229551 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 229552 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 229553 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 229554 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 229555 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 229556 -NCIT:C157452 Metastatic Squamous Cell Carcinoma in the Cervical Lymph Nodes 7 229557 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 7 229558 -NCIT:C162653 Advanced Squamous Cell Carcinoma 7 229559 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 8 229560 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 229561 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 229562 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 229563 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 229564 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 229565 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 229566 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 229567 -NCIT:C168542 Advanced Skin Squamous Cell Carcinoma 8 229568 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 229569 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 8 229570 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 229571 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 229572 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 229573 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 8 229574 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 229575 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 229576 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 229577 -NCIT:C169103 Metastatic Anal Squamous Cell Carcinoma 7 229578 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 229579 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 229580 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 7 229581 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 8 229582 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 8 229583 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 7 229584 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 7 229585 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 229586 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 229587 -NCIT:C182111 Metastatic Squamous Cell Carcinoma of the Penis 7 229588 -NCIT:C188112 Metastatic Squamous Cell Carcinoma in the Breast 7 229589 -NCIT:C188113 Metastatic Squamous Cell Carcinoma in the Skin 7 229590 -NCIT:C190771 Metastatic Pancreatic Squamous Cell Carcinoma 7 229591 -NCIT:C4829 Disseminated Squamous Cell Carcinoma 7 229592 -NCIT:C5178 Metastatic Breast Squamous Cell Carcinoma 7 229593 -NCIT:C8099 Squamous Cell Carcinoma of Unknown Primary 7 229594 -NCIT:C165474 Locally Advanced Squamous Cell Carcinoma of Unknown Primary 8 229595 -NCIT:C187051 Human Papillomavirus-Related Head and Neck Squamous Cell Carcinoma of Unknown Primary 8 229596 -NCIT:C190149 Human Papillomavirus-Negative Head and Neck Squamous Cell Carcinoma of Unknown Primary 8 229597 -NCIT:C7713 Neck Squamous Cell Carcinoma of Unknown Primary 8 229598 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 9 229599 -NCIT:C4124 Metastatic Adenocarcinoma 6 229600 -NCIT:C150577 Metastatic Gastroesophageal Junction Adenocarcinoma 7 229601 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 8 229602 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 8 229603 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 9 229604 -NCIT:C150595 Metastatic Renal Cell Carcinoma 7 229605 -NCIT:C153170 Advanced Renal Cell Carcinoma 8 229606 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 229607 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 229608 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 229609 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 229610 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 229611 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 8 229612 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 229613 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 229614 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 8 229615 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 229616 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 229617 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 8 229618 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 229619 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 229620 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 8 229621 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 229622 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 229623 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 229624 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 229625 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 229626 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 229627 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 8 229628 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 229629 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 229630 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 8 229631 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 229632 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 229633 -NCIT:C153319 Metastatic Gastric Adenocarcinoma 7 229634 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 229635 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 229636 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 229637 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 229638 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 229639 -NCIT:C165630 Metastatic Proximal Gastric Adenocarcinoma 8 229640 -NCIT:C166121 Oligometastatic Gastric Adenocarcinoma 8 229641 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 229642 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 229643 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 7 229644 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 8 229645 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 229646 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 229647 -NCIT:C154091 Metastatic Hepatocellular Carcinoma 7 229648 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 8 229649 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 229650 -NCIT:C167336 Advanced Hepatocellular Carcinoma 8 229651 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 229652 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 229653 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 229654 -NCIT:C155908 Metastatic Lung Adenocarcinoma 7 229655 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 8 229656 -NCIT:C176727 Advanced Lung Adenocarcinoma 8 229657 -NCIT:C156070 Metastatic Adrenal Cortical Carcinoma 7 229658 -NCIT:C174443 Locally Advanced Adrenal Cortical Carcinoma 8 229659 -NCIT:C191863 Advanced Adrenal Cortical Carcinoma 8 229660 -NCIT:C156074 Metastatic Esophageal Adenocarcinoma 7 229661 -NCIT:C166120 Oligometastatic Esophageal Adenocarcinoma 8 229662 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 229663 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 229664 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 229665 -NCIT:C172249 Metastatic Distal Esophagus Adenocarcinoma 8 229666 -NCIT:C157623 Metastatic Cholangiocarcinoma 7 229667 -NCIT:C162752 Advanced Cholangiocarcinoma 8 229668 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 9 229669 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 9 229670 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 9 229671 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 8 229672 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 229673 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 9 229674 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 8 229675 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 9 229676 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 8 229677 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 229678 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 9 229679 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 8 229680 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 9 229681 -NCIT:C159556 Advanced Adenocarcinoma 7 229682 -NCIT:C153170 Advanced Renal Cell Carcinoma 8 229683 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 229684 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 229685 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 229686 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 229687 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 229688 -NCIT:C156286 Advanced Prostate Adenocarcinoma 8 229689 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 229690 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 229691 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 8 229692 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 8 229693 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 9 229694 -NCIT:C162752 Advanced Cholangiocarcinoma 8 229695 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 9 229696 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 9 229697 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 9 229698 -NCIT:C165700 Advanced Breast Adenocarcinoma 8 229699 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 229700 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 229701 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 229702 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 229703 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 229704 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 229705 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 229706 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 229707 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 229708 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 229709 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 229710 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 229711 -NCIT:C167336 Advanced Hepatocellular Carcinoma 8 229712 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 229713 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 229714 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 8 229715 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 229716 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 229717 -NCIT:C170807 Advanced Endometrioid Adenocarcinoma 8 229718 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 229719 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 229720 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 229721 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 229722 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 229723 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 229724 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 8 229725 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 8 229726 -NCIT:C176727 Advanced Lung Adenocarcinoma 8 229727 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 229728 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 229729 -NCIT:C191863 Advanced Adrenal Cortical Carcinoma 8 229730 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 7 229731 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 229732 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 229733 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 229734 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 8 229735 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 229736 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 229737 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 8 229738 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 229739 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 229740 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 229741 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 229742 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 229743 -NCIT:C161048 Metastatic Colorectal Adenocarcinoma 7 229744 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 8 229745 -NCIT:C160819 Metastatic Colon Adenocarcinoma 8 229746 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 229747 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 229748 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 229749 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 8 229750 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 229751 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 229752 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 229753 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 8 229754 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 229755 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 229756 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 229757 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 229758 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 229759 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 229760 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 229761 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 229762 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 229763 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 229764 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 229765 -NCIT:C165698 Metastatic Breast Adenocarcinoma 7 229766 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 8 229767 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 229768 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 229769 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 229770 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 229771 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 229772 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 229773 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 229774 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 229775 -NCIT:C165700 Advanced Breast Adenocarcinoma 8 229776 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 229777 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 229778 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 229779 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 229780 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 229781 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 229782 -NCIT:C168777 Metastatic HER2-Negative Breast Carcinoma 8 229783 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 229784 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 229785 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 229786 -NCIT:C179554 Metastatic HER2-Low Breast Carcinoma 8 229787 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 229788 -NCIT:C180924 Metastatic HER2-Positive Breast Carcinoma 8 229789 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 229790 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 229791 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 229792 -NCIT:C181787 Metastatic Breast Inflammatory Carcinoma 8 229793 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 9 229794 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 9 229795 -NCIT:C9246 Stage IIIB Breast Inflammatory Carcinoma 9 229796 -NCIT:C185880 Metastatic Hormone Receptor-Positive Breast Carcinoma 8 229797 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 229798 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 229799 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 229800 -NCIT:C190852 Metastatic Androgen Receptor-Positive Breast Carcinoma 9 229801 -NCIT:C190856 Metastatic Estrogen Receptor-Positive Breast Carcinoma 9 229802 -NCIT:C190677 Metastatic Hormone Receptor-Negative Breast Carcinoma 8 229803 -NCIT:C153348 Metastatic Triple-Negative Breast Carcinoma 9 229804 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 229805 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 10 229806 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 11 229807 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 10 229808 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 229809 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 229810 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 8 229811 -NCIT:C76326 Metastatic Breast Ductal Carcinoma 8 229812 -NCIT:C76328 Metastatic Breast Lobular Carcinoma 8 229813 -NCIT:C168978 Locally Advanced Adenocarcinoma 7 229814 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 8 229815 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 9 229816 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 9 229817 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 8 229818 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 229819 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 8 229820 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 229821 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 8 229822 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 9 229823 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 229824 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 229825 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 229826 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 8 229827 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 229828 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 229829 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 229830 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 229831 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 229832 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 229833 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 229834 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 229835 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 229836 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 8 229837 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 229838 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 9 229839 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 8 229840 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 229841 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 229842 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 229843 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 229844 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 229845 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 229846 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 229847 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 229848 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 8 229849 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 229850 -NCIT:C174045 Locally Advanced Endometrioid Adenocarcinoma 8 229851 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 229852 -NCIT:C174443 Locally Advanced Adrenal Cortical Carcinoma 8 229853 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 8 229854 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 8 229855 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 229856 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 229857 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 229858 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 229859 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 229860 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 229861 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 229862 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 229863 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 229864 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 229865 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 229866 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 229867 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 7 229868 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 229869 -NCIT:C170972 Metastatic Primary Peritoneal Adenocarcinoma 7 229870 -NCIT:C171019 Metastatic Primary Peritoneal Serous Adenocarcinoma 8 229871 -NCIT:C186453 Metastatic Primary Peritoneal High Grade Serous Adenocarcinoma 9 229872 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 7 229873 -NCIT:C173979 Metastatic Differentiated Thyroid Gland Carcinoma 7 229874 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 8 229875 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 9 229876 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 10 229877 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 8 229878 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 8 229879 -NCIT:C174046 Metastatic Poorly Differentiated Thyroid Gland Carcinoma 7 229880 -NCIT:C182104 Metastatic Appendix Adenocarcinoma 7 229881 -NCIT:C162274 Metastatic Appendix Mucinous Adenocarcinoma 8 229882 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 229883 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 7 229884 -NCIT:C185381 Metastatic Mesonephric Adenocarcinoma 7 229885 -NCIT:C27185 Disseminated Adenocarcinoma 7 229886 -NCIT:C3345 Pseudomyxoma Peritonei 7 229887 -NCIT:C179179 Recurrent Pseudomyxoma Peritonei 8 229888 -NCIT:C179180 Refractory Pseudomyxoma Peritonei 8 229889 -NCIT:C4039 Adenocarcinoma of Unknown Primary 7 229890 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 8 229891 -NCIT:C170962 Resectable Adenocarcinoma of Unknown Primary 8 229892 -NCIT:C66717 Metastatic Signet Ring Cell Carcinoma 7 229893 -NCIT:C3153 Krukenberg Tumor 8 229894 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 8 229895 -NCIT:C8933 Metastatic Pancreatic Adenocarcinoma 7 229896 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 8 229897 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 9 229898 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 9 229899 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 8 229900 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 9 229901 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 9 229902 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 9 229903 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 8 229904 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 9 229905 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 8 229906 -NCIT:C8934 Metastatic Small Intestinal Adenocarcinoma 7 229907 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 229908 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 7 229909 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 8 229910 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 229911 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 8 229912 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 229913 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 229914 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 8 229915 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 229916 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 229917 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 8 229918 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 229919 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 8 229920 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 8 229921 -NCIT:C8943 Metastatic Endometrioid Adenocarcinoma 7 229922 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 8 229923 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 229924 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 229925 -NCIT:C170807 Advanced Endometrioid Adenocarcinoma 8 229926 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 229927 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 229928 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 8 229929 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 229930 -NCIT:C174045 Locally Advanced Endometrioid Adenocarcinoma 8 229931 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 229932 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 7 229933 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 229934 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 7 229935 -NCIT:C156286 Advanced Prostate Adenocarcinoma 8 229936 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 229937 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 8 229938 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 229939 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 8 229940 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 229941 -NCIT:C9044 Metastatic Parathyroid Gland Carcinoma 7 229942 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 229943 -NCIT:C5628 Metastatic Carcinoma in the Skin 6 229944 -NCIT:C188113 Metastatic Squamous Cell Carcinoma in the Skin 7 229945 -NCIT:C28311 Metastatic Breast Carcinoma in the Skin 7 229946 -NCIT:C6334 Metastatic Carcinoma in the Uterine Cervix 6 229947 -NCIT:C9276 Metastatic Carcinoma in the Adrenal Medulla 6 229948 -NCIT:C96767 Metastatic Carcinoma in the Liver 6 229949 -NCIT:C157366 Colorectal Carcinoma Metastatic in the Liver 7 229950 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 8 229951 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 8 229952 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 8 229953 -NCIT:C36302 Breast Carcinoma Metastatic in the Liver 7 229954 -NCIT:C36306 Lung Carcinoma Metastatic in the Liver 7 229955 -NCIT:C43344 Cylindrocarcinoma 5 229956 -NCIT:C4397 Carcinoma ex Pleomorphic Adenoma 5 229957 -NCIT:C40410 Salivary Gland Carcinoma ex Pleomorphic Adenoma 6 229958 -NCIT:C5975 Major Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 229959 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 229960 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 229961 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 229962 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 229963 -NCIT:C5976 Minor Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 229964 -NCIT:C6804 Lacrimal Gland Carcinoma ex Pleomorphic Adenoma 6 229965 -NCIT:C5117 Spiradenocarcinoma 5 229966 -NCIT:C5180 Malignant Breast Spiradenoma 6 229967 -NCIT:C54303 Primary Intraosseous Squamous Cell Carcinoma Derived From Keratocystic Odontogenic Tumor 5 229968 -NCIT:C7496 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated) 5 229969 -NCIT:C54298 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated), Intraosseous 6 229970 -NCIT:C54299 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated), Peripheral 6 229971 -NCIT:C7497 Ameloblastic Carcinoma Derived From Odontogenic Cyst 5 229972 -NCIT:C7500 Primary Intraosseous Squamous Cell Carcinoma Derived From Odontogenic Cyst 5 229973 -NCIT:C79949 Carcinoma Arising from Craniopharyngioma 5 229974 -NCIT:C3680 Cribriform Carcinoma 4 229975 -NCIT:C160974 Cribriform Adenocarcinoma of Minor Salivary Gland 5 229976 -NCIT:C162973 Non-Invasive Cribriform Carcinoma 5 229977 -NCIT:C5138 Breast Ductal Carcinoma In Situ, Cribriform Pattern 6 229978 -NCIT:C62192 Salivary Gland Intraductal Carcinoma 6 229979 -NCIT:C167366 Adnexal Cribriform Carcinoma 5 229980 -NCIT:C39895 Prostate Ductal Adenocarcinoma, Cribriform Pattern 5 229981 -NCIT:C5142 Invasive Breast Cribriform Carcinoma 5 229982 -NCIT:C5904 Salivary Duct Carcinoma 5 229983 -NCIT:C153611 Recurrent Salivary Duct Carcinoma 6 229984 -NCIT:C96488 Colorectal Cribriform Comedo-Type Adenocarcinoma 5 229985 -NCIT:C96489 Colon Cribriform Comedo-Type Adenocarcinoma 6 229986 -NCIT:C96490 Rectal Cribriform Comedo-Type Adenocarcinoma 6 229987 -NCIT:C96891 Gallbladder Cribriform Carcinoma 5 229988 -NCIT:C3692 Undifferentiated Carcinoma 4 229989 -NCIT:C162562 Primary Peritoneal Undifferentiated Carcinoma 5 229990 -NCIT:C170756 Recurrent Primary Peritoneal Undifferentiated Carcinoma 6 229991 -NCIT:C178689 Refractory Primary Peritoneal Undifferentiated Carcinoma 6 229992 -NCIT:C27419 Ampulla of Vater Undifferentiated Carcinoma 5 229993 -NCIT:C95965 Ampulla of Vater Undifferentiated Carcinoma with Osteoclast-Like Giant Cells 6 229994 -NCIT:C27422 Esophageal Undifferentiated Carcinoma 5 229995 -NCIT:C35718 Thymic Undifferentiated Carcinoma 5 229996 -NCIT:C3779 Giant Cell Carcinoma 5 229997 -NCIT:C4452 Lung Giant Cell Carcinoma 6 229998 -NCIT:C54342 Laryngeal Giant Cell Carcinoma 6 229999 -NCIT:C5838 Gallbladder Undifferentiated Carcinoma, Spindle and Giant Cell Type 6 230000 -NCIT:C3878 Thyroid Gland Anaplastic Carcinoma 5 230001 -NCIT:C140999 Thyroid Gland Anaplastic Carcinoma by AJCC v7 Stage 6 230002 -NCIT:C87552 Stage IVA Thyroid Gland Anaplastic Carcinoma AJCC v7 7 230003 -NCIT:C87553 Stage IVB Thyroid Gland Anaplastic Carcinoma AJCC v7 7 230004 -NCIT:C87554 Stage IVC Thyroid Gland Anaplastic Carcinoma AJCC v7 7 230005 -NCIT:C141000 Thyroid Gland Anaplastic Carcinoma by AJCC v8 Stage 6 230006 -NCIT:C141001 Stage IVA Thyroid Gland Anaplastic Carcinoma AJCC v8 7 230007 -NCIT:C141003 Stage IVB Thyroid Gland Anaplastic Carcinoma AJCC v8 7 230008 -NCIT:C141004 Stage IVC Thyroid Gland Anaplastic Carcinoma AJCC v8 7 230009 -NCIT:C153624 Recurrent Thyroid Gland Anaplastic Carcinoma 6 230010 -NCIT:C170831 Metastatic Thyroid Gland Anaplastic Carcinoma 6 230011 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 7 230012 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 7 230013 -NCIT:C170832 Refractory Thyroid Gland Anaplastic Carcinoma 6 230014 -NCIT:C170833 Unresectable Thyroid Gland Anaplastic Carcinoma 6 230015 -NCIT:C46008 Thyroid Gland Anaplastic Carcinoma, Squamous Cell Carcinoma Pattern 6 230016 -NCIT:C7906 Thyroid Gland Anaplastic Carcinoma, Osteoclastic Variant 6 230017 -NCIT:C40156 Endometrial Undifferentiated Carcinoma 5 230018 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 6 230019 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 6 230020 -NCIT:C40264 Vaginal Undifferentiated Carcinoma 5 230021 -NCIT:C43538 Small Intestinal Undifferentiated Carcinoma 5 230022 -NCIT:C43556 Appendix Undifferentiated Carcinoma 5 230023 -NCIT:C43591 Colorectal Undifferentiated Carcinoma 5 230024 -NCIT:C7100 Colon Undifferentiated Carcinoma 6 230025 -NCIT:C7974 Rectal Undifferentiated Carcinoma 6 230026 -NCIT:C4509 Ovarian Undifferentiated Carcinoma 5 230027 -NCIT:C170754 Recurrent Ovarian Undifferentiated Carcinoma 6 230028 -NCIT:C172234 Metastatic Ovarian Undifferentiated Carcinoma 6 230029 -NCIT:C172235 Unresectable Ovarian Undifferentiated Carcinoma 6 230030 -NCIT:C178683 Refractory Ovarian Undifferentiated Carcinoma 6 230031 -NCIT:C54294 Sinonasal Undifferentiated Carcinoma 5 230032 -NCIT:C54339 Laryngeal Undifferentiated Carcinoma 5 230033 -NCIT:C54341 Laryngeal Lymphoepithelial Carcinoma 6 230034 -NCIT:C54342 Laryngeal Giant Cell Carcinoma 6 230035 -NCIT:C5476 Gastric Undifferentiated Carcinoma 5 230036 -NCIT:C5597 Prostate Undifferentiated Carcinoma 5 230037 -NCIT:C5780 Extrahepatic Bile Duct Undifferentiated Carcinoma 5 230038 -NCIT:C6159 Ureter Undifferentiated Carcinoma 5 230039 -NCIT:C6168 Urethral Undifferentiated Carcinoma 5 230040 -NCIT:C6281 Fallopian Tube Undifferentiated Carcinoma 5 230041 -NCIT:C170755 Recurrent Fallopian Tube Undifferentiated Carcinoma 6 230042 -NCIT:C178675 Refractory Fallopian Tube Undifferentiated Carcinoma 6 230043 -NCIT:C6345 Cervical Undifferentiated Carcinoma 5 230044 -NCIT:C63622 Undifferentiated Carcinoma with Osteoclast-Like Giant Cells 5 230045 -NCIT:C7906 Thyroid Gland Anaplastic Carcinoma, Osteoclastic Variant 6 230046 -NCIT:C95965 Ampulla of Vater Undifferentiated Carcinoma with Osteoclast-Like Giant Cells 6 230047 -NCIT:C8024 Salivary Gland Undifferentiated Carcinoma 5 230048 -NCIT:C5946 Parotid Gland Undifferentiated Carcinoma 6 230049 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 7 230050 -NCIT:C5947 Submandibular Gland Undifferentiated Carcinoma 6 230051 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 7 230052 -NCIT:C5954 Minor Salivary Gland Undifferentiated Carcinoma 6 230053 -NCIT:C8100 Undifferentiated Carcinoma of Unknown Primary 5 230054 -NCIT:C9167 Gallbladder Undifferentiated Carcinoma 5 230055 -NCIT:C5838 Gallbladder Undifferentiated Carcinoma, Spindle and Giant Cell Type 6 230056 -NCIT:C96529 Anal Canal Undifferentiated Carcinoma 5 230057 -NCIT:C96792 Liver Undifferentiated Carcinoma 5 230058 -NCIT:C3773 Neuroendocrine Carcinoma 4 230059 -NCIT:C155869 Metastatic Neuroendocrine Carcinoma 5 230060 -NCIT:C155870 Advanced Neuroendocrine Carcinoma 6 230061 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 7 230062 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 230063 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 230064 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 7 230065 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 230066 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 230067 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 230068 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 7 230069 -NCIT:C165300 Advanced Merkel Cell Carcinoma 7 230070 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 7 230071 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 230072 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 230073 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 230074 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 6 230075 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 7 230076 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 230077 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 230078 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 230079 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 7 230080 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 230081 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 230082 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 230083 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 7 230084 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 230085 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 230086 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 230087 -NCIT:C158908 Metastatic Large Cell Neuroendocrine Carcinoma 6 230088 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 7 230089 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 7 230090 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 230091 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 7 230092 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 230093 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 230094 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 7 230095 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 230096 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 230097 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 230098 -NCIT:C158909 Locally Advanced Neuroendocrine Carcinoma 6 230099 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 230100 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 230101 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 7 230102 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 230103 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 7 230104 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 7 230105 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 230106 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 7 230107 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 7 230108 -NCIT:C158911 Metastatic Small Cell Neuroendocrine Carcinoma 6 230109 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 7 230110 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 230111 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 230112 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 7 230113 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 230114 -NCIT:C191852 Metastatic Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 230115 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 230116 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 230117 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 8 230118 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 230119 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 6 230120 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 7 230121 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 7 230122 -NCIT:C162572 Metastatic Merkel Cell Carcinoma 6 230123 -NCIT:C165300 Advanced Merkel Cell Carcinoma 7 230124 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 7 230125 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 7 230126 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 6 230127 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 7 230128 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 7 230129 -NCIT:C163975 Neuroendocrine Carcinoma of Unknown Primary 6 230130 -NCIT:C160980 Head and Neck Neuroendocrine Carcinoma 5 230131 -NCIT:C160981 Head and Neck Small Cell Neuroendocrine Carcinoma 6 230132 -NCIT:C116318 Sinonasal Small Cell Neuroendocrine Carcinoma 7 230133 -NCIT:C35703 Salivary Gland Small Cell Neuroendocrine Carcinoma 7 230134 -NCIT:C5956 Minor Salivary Gland Small Cell Neuroendocrine Carcinoma 8 230135 -NCIT:C6025 Laryngeal Small Cell Neuroendocrine Carcinoma 7 230136 -NCIT:C160982 Head and Neck Large Cell Neuroendocrine Carcinoma 6 230137 -NCIT:C173091 Sinonasal Large Cell Neuroendocrine Carcinoma 7 230138 -NCIT:C173395 Laryngeal Large Cell Neuroendocrine Carcinoma 7 230139 -NCIT:C173650 Salivary Gland Large Cell Neuroendocrine Carcinoma 7 230140 -NCIT:C173089 Sinonasal Neuroendocrine Carcinoma 6 230141 -NCIT:C116318 Sinonasal Small Cell Neuroendocrine Carcinoma 7 230142 -NCIT:C173091 Sinonasal Large Cell Neuroendocrine Carcinoma 7 230143 -NCIT:C173390 Laryngeal Neuroendocrine Carcinoma 6 230144 -NCIT:C173395 Laryngeal Large Cell Neuroendocrine Carcinoma 7 230145 -NCIT:C6025 Laryngeal Small Cell Neuroendocrine Carcinoma 7 230146 -NCIT:C173587 Head and Neck Merkel Cell Carcinoma 6 230147 -NCIT:C173653 Salivary Gland Neuroendocrine Carcinoma 6 230148 -NCIT:C173650 Salivary Gland Large Cell Neuroendocrine Carcinoma 7 230149 -NCIT:C35703 Salivary Gland Small Cell Neuroendocrine Carcinoma 7 230150 -NCIT:C5956 Minor Salivary Gland Small Cell Neuroendocrine Carcinoma 8 230151 -NCIT:C3879 Thyroid Gland Medullary Carcinoma 6 230152 -NCIT:C123905 Childhood Thyroid Gland Medullary Carcinoma 7 230153 -NCIT:C141041 Thyroid Gland Medullary Carcinoma by AJCC v7 Stage 7 230154 -NCIT:C6133 Stage I Thyroid Gland Medullary Carcinoma AJCC v7 8 230155 -NCIT:C6134 Stage II Thyroid Gland Medullary Carcinoma AJCC v7 8 230156 -NCIT:C6135 Stage III Thyroid Gland Medullary Carcinoma AJCC v7 8 230157 -NCIT:C6136 Stage IV Thyroid Gland Medullary Carcinoma AJCC v7 8 230158 -NCIT:C87549 Stage IVA Thyroid Gland Medullary Carcinoma AJCC v7 9 230159 -NCIT:C87550 Stage IVB Thyroid Gland Medullary Carcinoma AJCC v7 9 230160 -NCIT:C87551 Stage IVC Thyroid Gland Medullary Carcinoma AJCC v7 9 230161 -NCIT:C141042 Thyroid Gland Medullary Carcinoma by AJCC v8 Stage 7 230162 -NCIT:C141043 Stage I Thyroid Gland Medullary Carcinoma AJCC v8 8 230163 -NCIT:C141044 Stage II Thyroid Gland Medullary Carcinoma AJCC v8 8 230164 -NCIT:C141045 Stage III Thyroid Gland Medullary Carcinoma AJCC v8 8 230165 -NCIT:C141046 Stage IV Thyroid Gland Medullary Carcinoma AJCC v8 8 230166 -NCIT:C141047 Stage IVA Thyroid Gland Medullary Carcinoma AJCC v8 9 230167 -NCIT:C141048 Stage IVB Thyroid Gland Medullary Carcinoma AJCC v8 9 230168 -NCIT:C141049 Stage IVC Thyroid Gland Medullary Carcinoma AJCC v8 9 230169 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 7 230170 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 8 230171 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 7 230172 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 230173 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 230174 -NCIT:C163974 Unresectable Thyroid Gland Medullary Carcinoma 7 230175 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 8 230176 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 7 230177 -NCIT:C4193 Thyroid Gland Medullary Carcinoma with Amyloid Stroma 7 230178 -NCIT:C46098 Sporadic Thyroid Gland Medullary Carcinoma 7 230179 -NCIT:C46103 Sporadic Thyroid Gland Micromedullary Carcinoma 8 230180 -NCIT:C46099 Hereditary Thyroid Gland Medullary Carcinoma 7 230181 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 8 230182 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 8 230183 -NCIT:C165253 Recurrent Neuroendocrine Carcinoma 5 230184 -NCIT:C115440 Recurrent Merkel Cell Carcinoma 6 230185 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 7 230186 -NCIT:C165740 Locally Recurrent Merkel Cell Carcinoma 7 230187 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 6 230188 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 7 230189 -NCIT:C155938 Recurrent Digestive System Neuroendocrine Carcinoma 6 230190 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 7 230191 -NCIT:C183127 Recurrent Small Cell Neuroendocrine Carcinoma 6 230192 -NCIT:C183128 Recurrent Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 230193 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 8 230194 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 230195 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 7 230196 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 8 230197 -NCIT:C165742 Refractory Neuroendocrine Carcinoma 5 230198 -NCIT:C155937 Refractory Digestive System Neuroendocrine Carcinoma 6 230199 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 7 230200 -NCIT:C165741 Refractory Merkel Cell Carcinoma 6 230201 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 6 230202 -NCIT:C191853 Refractory Small Cell Neuroendocrine Carcinoma 6 230203 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 7 230204 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 8 230205 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 8 230206 -NCIT:C191854 Refractory Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 230207 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 8 230208 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 8 230209 -NCIT:C172806 Unresectable Neuroendocrine Carcinoma 5 230210 -NCIT:C155935 Unresectable Digestive System Neuroendocrine Carcinoma 6 230211 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 7 230212 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 7 230213 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 6 230214 -NCIT:C162786 Unresectable Merkel Cell Carcinoma 6 230215 -NCIT:C163974 Unresectable Thyroid Gland Medullary Carcinoma 6 230216 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 7 230217 -NCIT:C172810 Unresectable Large Cell Neuroendocrine Carcinoma 6 230218 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 7 230219 -NCIT:C191855 Unresectable Extrapulmonary Small Cell Neuroendocrine Carcinoma 6 230220 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 7 230221 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 7 230222 -NCIT:C173385 Neuroendocrine Carcinoma, Excluding Head and Neck 5 230223 -NCIT:C128045 Cervical Neuroendocrine Carcinoma 6 230224 -NCIT:C40214 Cervical Large Cell Neuroendocrine Carcinoma 7 230225 -NCIT:C7982 Cervical Small Cell Neuroendocrine Carcinoma 7 230226 -NCIT:C128073 Vaginal Neuroendocrine Carcinoma 6 230227 -NCIT:C128075 Vaginal Large Cell Neuroendocrine Carcinoma 7 230228 -NCIT:C40263 Vaginal Small Cell Neuroendocrine Carcinoma 7 230229 -NCIT:C128243 Vulvar Neuroendocrine Carcinoma 6 230230 -NCIT:C128244 Vulvar Small Cell Neuroendocrine Carcinoma 7 230231 -NCIT:C40298 Bartholin Gland Small Cell Neuroendocrine Carcinoma 8 230232 -NCIT:C128245 Vulvar Large Cell Neuroendocrine Carcinoma 7 230233 -NCIT:C128247 Vulvar Merkel Cell Carcinoma 7 230234 -NCIT:C157759 Bladder Neuroendocrine Carcinoma 6 230235 -NCIT:C157760 Bladder Large Cell Neuroendocrine Carcinoma 7 230236 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 8 230237 -NCIT:C9461 Bladder Small Cell Neuroendocrine Carcinoma 7 230238 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 8 230239 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 8 230240 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 230241 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 8 230242 -NCIT:C158912 Prostate Neuroendocrine Carcinoma 6 230243 -NCIT:C158650 Prostate Large Cell Neuroendocrine Carcinoma 7 230244 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 7 230245 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 230246 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 230247 -NCIT:C6766 Prostate Small Cell Neuroendocrine Carcinoma 7 230248 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 230249 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 8 230250 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 8 230251 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 8 230252 -NCIT:C159224 Kidney Neuroendocrine Carcinoma 6 230253 -NCIT:C116317 Kidney Small Cell Neuroendocrine Carcinoma 7 230254 -NCIT:C159225 Kidney Large Cell Neuroendocrine Carcinoma 7 230255 -NCIT:C175581 Breast Neuroendocrine Carcinoma 6 230256 -NCIT:C40356 Breast Large Cell Neuroendocrine Carcinoma 7 230257 -NCIT:C6760 Breast Small Cell Neuroendocrine Carcinoma 7 230258 -NCIT:C45569 Lung Neuroendocrine Carcinoma 6 230259 -NCIT:C4917 Lung Small Cell Carcinoma 7 230260 -NCIT:C118815 Childhood Lung Small Cell Carcinoma 8 230261 -NCIT:C136496 Lung Small Cell Carcinoma by AJCC v7 Stage 8 230262 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 9 230263 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 10 230264 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 10 230265 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 9 230266 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 10 230267 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 10 230268 -NCIT:C6679 Stage III Lung Small Cell Carcinoma AJCC v7 9 230269 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 10 230270 -NCIT:C6681 Stage IIIB Lung Small Cell Carcinoma AJCC v7 10 230271 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 11 230272 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 11 230273 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 9 230274 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 8 230275 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 9 230276 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 9 230277 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 8 230278 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 9 230279 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 230280 -NCIT:C158495 Platinum-Sensitive Lung Small Cell Carcinoma 8 230281 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 8 230282 -NCIT:C188753 Lung Small Cell Carcinoma Neuroendocrine Subtype 8 230283 -NCIT:C188754 Lung Small Cell Carcinoma, Neuroendocrine-High Subtype 9 230284 -NCIT:C188755 Lung Small Cell Carcinoma, Neuroendocrine-Low Subtype 9 230285 -NCIT:C188756 Lung Small Cell Carcinoma Molecular Subtypes 8 230286 -NCIT:C188761 Lung Small Cell Carcinoma, A Subtype 9 230287 -NCIT:C188762 Lung Small Cell Carcinoma, N Subtype 9 230288 -NCIT:C188763 Lung Small Cell Carcinoma, P Subtype 9 230289 -NCIT:C188765 Lung Small Cell Carcinoma, I Subtype 9 230290 -NCIT:C188766 Lung Small Cell Carcinoma, Y Subtype 9 230291 -NCIT:C6683 Occult Lung Small Cell Carcinoma 8 230292 -NCIT:C7853 Limited Stage Lung Small Cell Carcinoma 8 230293 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 9 230294 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 9 230295 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 10 230296 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 10 230297 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 9 230298 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 10 230299 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 10 230300 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 9 230301 -NCIT:C9049 Extensive Stage Lung Small Cell Carcinoma 8 230302 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 9 230303 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 9 230304 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 9 230305 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 9 230306 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 8 230307 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 9 230308 -NCIT:C9137 Combined Lung Small Cell Carcinoma 8 230309 -NCIT:C9379 Combined Lung Small Cell Carcinoma and Lung Adenocarcinoma 9 230310 -NCIT:C9423 Combined Lung Small Cell and Squamous Cell Carcinoma 9 230311 -NCIT:C5672 Lung Large Cell Neuroendocrine Carcinoma 7 230312 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 8 230313 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 230314 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 230315 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 8 230316 -NCIT:C7267 Combined Lung Large Cell Neuroendocrine Carcinoma 8 230317 -NCIT:C7591 Combined Lung Carcinoma 7 230318 -NCIT:C7267 Combined Lung Large Cell Neuroendocrine Carcinoma 8 230319 -NCIT:C9137 Combined Lung Small Cell Carcinoma 8 230320 -NCIT:C9379 Combined Lung Small Cell Carcinoma and Lung Adenocarcinoma 9 230321 -NCIT:C9423 Combined Lung Small Cell and Squamous Cell Carcinoma 9 230322 -NCIT:C9231 Merkel Cell Carcinoma 6 230323 -NCIT:C115440 Recurrent Merkel Cell Carcinoma 7 230324 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 8 230325 -NCIT:C165740 Locally Recurrent Merkel Cell Carcinoma 8 230326 -NCIT:C128247 Vulvar Merkel Cell Carcinoma 7 230327 -NCIT:C136869 Merkel Cell Carcinoma by AJCC v7 Stage 7 230328 -NCIT:C85887 Stage 0 Merkel Cell Carcinoma AJCC v7 8 230329 -NCIT:C85889 Stage I Merkel Cell Carcinoma AJCC v7 8 230330 -NCIT:C85890 Stage IA Merkel Cell Carcinoma AJCC v7 9 230331 -NCIT:C85892 Stage IB Merkel Cell Carcinoma AJCC v7 9 230332 -NCIT:C85893 Stage II Merkel Cell Carcinoma AJCC v7 8 230333 -NCIT:C85894 Stage IIA Merkel Cell Carcinoma AJCC v7 9 230334 -NCIT:C85895 Stage IIB Merkel Cell Carcinoma AJCC v7 9 230335 -NCIT:C85896 Stage IIC Merkel Cell Carcinoma AJCC v7 9 230336 -NCIT:C85897 Stage III Merkel Cell Carcinoma AJCC v7 8 230337 -NCIT:C85898 Stage IIIA Merkel Cell Carcinoma AJCC v7 9 230338 -NCIT:C85899 Stage IIIB Merkel Cell Carcinoma AJCC v7 9 230339 -NCIT:C85900 Stage IV Merkel Cell Carcinoma AJCC v7 8 230340 -NCIT:C136870 Merkel Cell Carcinoma by AJCC v8 Stage 7 230341 -NCIT:C136871 Merkel Cell Carcinoma by AJCC v8 Clinical Stage 8 230342 -NCIT:C136872 Clinical Stage 0 Merkel Cell Carcinoma AJCC v8 9 230343 -NCIT:C136873 Clinical Stage I Merkel Cell Carcinoma AJCC v8 9 230344 -NCIT:C136874 Clinical Stage II Merkel Cell Carcinoma AJCC v8 9 230345 -NCIT:C136875 Clinical Stage IIA Merkel Cell Carcinoma AJCC v8 10 230346 -NCIT:C136876 Clinical Stage IIB Merkel Cell Carcinoma AJCC v8 10 230347 -NCIT:C136877 Clinical Stage III Merkel Cell Carcinoma AJCC v8 9 230348 -NCIT:C136878 Clinical Stage IV Merkel Cell Carcinoma AJCC v8 9 230349 -NCIT:C136880 Merkel Cell Carcinoma by AJCC v8 Pathologic Stage 8 230350 -NCIT:C136881 Pathologic Stage 0 Merkel Cell Carcinoma AJCC v8 9 230351 -NCIT:C136882 Pathologic Stage I Merkel Cell Carcinoma AJCC v8 9 230352 -NCIT:C136883 Pathologic Stage II Merkel Cell Carcinoma AJCC v8 9 230353 -NCIT:C136884 Pathologic Stage IIA Merkel Cell Carcinoma AJCC v8 10 230354 -NCIT:C136885 Pathologic Stage IIB Merkel Cell Carcinoma AJCC v8 10 230355 -NCIT:C136886 Pathologic Stage III Merkel Cell Carcinoma AJCC v8 9 230356 -NCIT:C136887 Pathologic Stage IIIA Merkel Cell Carcinoma AJCC v8 10 230357 -NCIT:C136888 Pathologic Stage IIIB Merkel Cell Carcinoma AJCC v8 10 230358 -NCIT:C136889 Pathologic Stage IV Merkel Cell Carcinoma AJCC v8 9 230359 -NCIT:C162572 Metastatic Merkel Cell Carcinoma 7 230360 -NCIT:C165300 Advanced Merkel Cell Carcinoma 8 230361 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 8 230362 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 8 230363 -NCIT:C162786 Unresectable Merkel Cell Carcinoma 7 230364 -NCIT:C165741 Refractory Merkel Cell Carcinoma 7 230365 -NCIT:C95405 Digestive System Neuroendocrine Carcinoma 6 230366 -NCIT:C126324 Gastroesophageal Junction Neuroendocrine Carcinoma 7 230367 -NCIT:C126323 Gastroesophageal Junction Large Cell Neuroendocrine Carcinoma 8 230368 -NCIT:C126325 Gastroesophageal Junction Small Cell Neuroendocrine Carcinoma 8 230369 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 8 230370 -NCIT:C154617 Digestive System Large Cell Neuroendocrine Carcinoma 7 230371 -NCIT:C126323 Gastroesophageal Junction Large Cell Neuroendocrine Carcinoma 8 230372 -NCIT:C172722 Liver Large Cell Neuroendocrine Carcinoma 8 230373 -NCIT:C95582 Pancreatic Large Cell Neuroendocrine Carcinoma 8 230374 -NCIT:C95620 Esophageal Large Cell Neuroendocrine Carcinoma 8 230375 -NCIT:C95885 Gastric Large Cell Neuroendocrine Carcinoma 8 230376 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 230377 -NCIT:C95985 Ampulla of Vater Large Cell Neuroendocrine Carcinoma 8 230378 -NCIT:C96065 Small Intestinal Large Cell Neuroendocrine Carcinoma 8 230379 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 230380 -NCIT:C96157 Colorectal Large Cell Neuroendocrine Carcinoma 8 230381 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 9 230382 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 9 230383 -NCIT:C96426 Appendix Large Cell Neuroendocrine Carcinoma 8 230384 -NCIT:C96550 Anal Canal Large Cell Neuroendocrine Carcinoma 8 230385 -NCIT:C96921 Gallbladder Large Cell Neuroendocrine Carcinoma 8 230386 -NCIT:C96958 Extrahepatic Bile Duct Large Cell Neuroendocrine Carcinoma 8 230387 -NCIT:C154641 Digestive System Small Cell Neuroendocrine Carcinoma 7 230388 -NCIT:C126325 Gastroesophageal Junction Small Cell Neuroendocrine Carcinoma 8 230389 -NCIT:C172725 Liver Small Cell Neuroendocrine Carcinoma 8 230390 -NCIT:C27449 Small Intestinal Small Cell Neuroendocrine Carcinoma 8 230391 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 230392 -NCIT:C43555 Appendix Small Cell Neuroendocrine Carcinoma 8 230393 -NCIT:C43587 Colorectal Small Cell Neuroendocrine Carcinoma 8 230394 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 9 230395 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 9 230396 -NCIT:C5845 Extrahepatic Bile Duct Small Cell Neuroendocrine Carcinoma 8 230397 -NCIT:C6655 Ampulla of Vater Small Cell Neuroendocrine Carcinoma 8 230398 -NCIT:C6762 Esophageal Small Cell Neuroendocrine Carcinoma 8 230399 -NCIT:C6763 Gallbladder Small Cell Neuroendocrine Carcinoma 8 230400 -NCIT:C6764 Gastric Small Cell Neuroendocrine Carcinoma 8 230401 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 230402 -NCIT:C95583 Pancreatic Small Cell Neuroendocrine Carcinoma 8 230403 -NCIT:C96551 Anal Canal Small Cell Neuroendocrine Carcinoma 8 230404 -NCIT:C155935 Unresectable Digestive System Neuroendocrine Carcinoma 7 230405 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 8 230406 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 8 230407 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 7 230408 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 8 230409 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 230410 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 230411 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 230412 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 8 230413 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 230414 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 230415 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 230416 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 230417 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 230418 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 230419 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 230420 -NCIT:C155937 Refractory Digestive System Neuroendocrine Carcinoma 7 230421 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 8 230422 -NCIT:C155938 Recurrent Digestive System Neuroendocrine Carcinoma 7 230423 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 8 230424 -NCIT:C3770 Pancreatic Neuroendocrine Carcinoma 7 230425 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 8 230426 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 8 230427 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 8 230428 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 230429 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 8 230430 -NCIT:C95582 Pancreatic Large Cell Neuroendocrine Carcinoma 8 230431 -NCIT:C95583 Pancreatic Small Cell Neuroendocrine Carcinoma 8 230432 -NCIT:C95619 Esophageal Neuroendocrine Carcinoma 7 230433 -NCIT:C6762 Esophageal Small Cell Neuroendocrine Carcinoma 8 230434 -NCIT:C95620 Esophageal Large Cell Neuroendocrine Carcinoma 8 230435 -NCIT:C95884 Gastric Neuroendocrine Carcinoma 7 230436 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 8 230437 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 230438 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 230439 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 230440 -NCIT:C6764 Gastric Small Cell Neuroendocrine Carcinoma 8 230441 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 230442 -NCIT:C95885 Gastric Large Cell Neuroendocrine Carcinoma 8 230443 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 230444 -NCIT:C95984 Ampulla of Vater Neuroendocrine Carcinoma 7 230445 -NCIT:C6655 Ampulla of Vater Small Cell Neuroendocrine Carcinoma 8 230446 -NCIT:C95985 Ampulla of Vater Large Cell Neuroendocrine Carcinoma 8 230447 -NCIT:C96063 Intestinal Neuroendocrine Carcinoma 7 230448 -NCIT:C96064 Small Intestinal Neuroendocrine Carcinoma 8 230449 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 9 230450 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 10 230451 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 11 230452 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 11 230453 -NCIT:C27449 Small Intestinal Small Cell Neuroendocrine Carcinoma 9 230454 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 230455 -NCIT:C96065 Small Intestinal Large Cell Neuroendocrine Carcinoma 9 230456 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 230457 -NCIT:C96156 Colorectal Neuroendocrine Carcinoma 8 230458 -NCIT:C43587 Colorectal Small Cell Neuroendocrine Carcinoma 9 230459 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 10 230460 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 10 230461 -NCIT:C96157 Colorectal Large Cell Neuroendocrine Carcinoma 9 230462 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 10 230463 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 10 230464 -NCIT:C96425 Appendix Neuroendocrine Carcinoma 7 230465 -NCIT:C43555 Appendix Small Cell Neuroendocrine Carcinoma 8 230466 -NCIT:C96426 Appendix Large Cell Neuroendocrine Carcinoma 8 230467 -NCIT:C96549 Anal Canal Neuroendocrine Carcinoma 7 230468 -NCIT:C96550 Anal Canal Large Cell Neuroendocrine Carcinoma 8 230469 -NCIT:C96551 Anal Canal Small Cell Neuroendocrine Carcinoma 8 230470 -NCIT:C96787 Liver Neuroendocrine Carcinoma 7 230471 -NCIT:C172722 Liver Large Cell Neuroendocrine Carcinoma 8 230472 -NCIT:C172725 Liver Small Cell Neuroendocrine Carcinoma 8 230473 -NCIT:C96919 Gallbladder Neuroendocrine Carcinoma 7 230474 -NCIT:C6763 Gallbladder Small Cell Neuroendocrine Carcinoma 8 230475 -NCIT:C96921 Gallbladder Large Cell Neuroendocrine Carcinoma 8 230476 -NCIT:C96956 Extrahepatic Bile Duct Neuroendocrine Carcinoma 7 230477 -NCIT:C5845 Extrahepatic Bile Duct Small Cell Neuroendocrine Carcinoma 8 230478 -NCIT:C96958 Extrahepatic Bile Duct Large Cell Neuroendocrine Carcinoma 8 230479 -NCIT:C173586 Extracutaneous Merkel Cell Carcinoma 5 230480 -NCIT:C173587 Head and Neck Merkel Cell Carcinoma 6 230481 -NCIT:C3915 Small Cell Neuroendocrine Carcinoma 5 230482 -NCIT:C156457 Extrapulmonary Small Cell Neuroendocrine Carcinoma 6 230483 -NCIT:C116317 Kidney Small Cell Neuroendocrine Carcinoma 7 230484 -NCIT:C128244 Vulvar Small Cell Neuroendocrine Carcinoma 7 230485 -NCIT:C40298 Bartholin Gland Small Cell Neuroendocrine Carcinoma 8 230486 -NCIT:C154641 Digestive System Small Cell Neuroendocrine Carcinoma 7 230487 -NCIT:C126325 Gastroesophageal Junction Small Cell Neuroendocrine Carcinoma 8 230488 -NCIT:C172725 Liver Small Cell Neuroendocrine Carcinoma 8 230489 -NCIT:C27449 Small Intestinal Small Cell Neuroendocrine Carcinoma 8 230490 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 230491 -NCIT:C43555 Appendix Small Cell Neuroendocrine Carcinoma 8 230492 -NCIT:C43587 Colorectal Small Cell Neuroendocrine Carcinoma 8 230493 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 9 230494 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 9 230495 -NCIT:C5845 Extrahepatic Bile Duct Small Cell Neuroendocrine Carcinoma 8 230496 -NCIT:C6655 Ampulla of Vater Small Cell Neuroendocrine Carcinoma 8 230497 -NCIT:C6762 Esophageal Small Cell Neuroendocrine Carcinoma 8 230498 -NCIT:C6763 Gallbladder Small Cell Neuroendocrine Carcinoma 8 230499 -NCIT:C6764 Gastric Small Cell Neuroendocrine Carcinoma 8 230500 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 230501 -NCIT:C95583 Pancreatic Small Cell Neuroendocrine Carcinoma 8 230502 -NCIT:C96551 Anal Canal Small Cell Neuroendocrine Carcinoma 8 230503 -NCIT:C160981 Head and Neck Small Cell Neuroendocrine Carcinoma 7 230504 -NCIT:C116318 Sinonasal Small Cell Neuroendocrine Carcinoma 8 230505 -NCIT:C35703 Salivary Gland Small Cell Neuroendocrine Carcinoma 8 230506 -NCIT:C5956 Minor Salivary Gland Small Cell Neuroendocrine Carcinoma 9 230507 -NCIT:C6025 Laryngeal Small Cell Neuroendocrine Carcinoma 8 230508 -NCIT:C183128 Recurrent Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 230509 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 8 230510 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 230511 -NCIT:C191852 Metastatic Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 230512 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 230513 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 230514 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 8 230515 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 230516 -NCIT:C191854 Refractory Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 230517 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 8 230518 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 8 230519 -NCIT:C191855 Unresectable Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 230520 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 8 230521 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 8 230522 -NCIT:C40155 Endometrial Small Cell Neuroendocrine Carcinoma 7 230523 -NCIT:C40263 Vaginal Small Cell Neuroendocrine Carcinoma 7 230524 -NCIT:C40440 Ovarian Small Cell Carcinoma, Pulmonary-Type 7 230525 -NCIT:C6176 Ureter Small Cell Neuroendocrine Carcinoma 7 230526 -NCIT:C6460 Thymic Small Cell Neuroendocrine Carcinoma 7 230527 -NCIT:C6760 Breast Small Cell Neuroendocrine Carcinoma 7 230528 -NCIT:C6766 Prostate Small Cell Neuroendocrine Carcinoma 7 230529 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 230530 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 8 230531 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 8 230532 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 8 230533 -NCIT:C7982 Cervical Small Cell Neuroendocrine Carcinoma 7 230534 -NCIT:C9461 Bladder Small Cell Neuroendocrine Carcinoma 7 230535 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 8 230536 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 8 230537 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 230538 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 8 230539 -NCIT:C158911 Metastatic Small Cell Neuroendocrine Carcinoma 6 230540 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 7 230541 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 230542 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 230543 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 7 230544 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 230545 -NCIT:C191852 Metastatic Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 230546 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 230547 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 230548 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 8 230549 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 230550 -NCIT:C183127 Recurrent Small Cell Neuroendocrine Carcinoma 6 230551 -NCIT:C183128 Recurrent Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 230552 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 8 230553 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 230554 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 7 230555 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 8 230556 -NCIT:C191853 Refractory Small Cell Neuroendocrine Carcinoma 6 230557 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 7 230558 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 8 230559 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 8 230560 -NCIT:C191854 Refractory Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 230561 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 8 230562 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 8 230563 -NCIT:C4917 Lung Small Cell Carcinoma 6 230564 -NCIT:C118815 Childhood Lung Small Cell Carcinoma 7 230565 -NCIT:C136496 Lung Small Cell Carcinoma by AJCC v7 Stage 7 230566 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 8 230567 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 9 230568 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 9 230569 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 8 230570 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 9 230571 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 9 230572 -NCIT:C6679 Stage III Lung Small Cell Carcinoma AJCC v7 8 230573 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 9 230574 -NCIT:C6681 Stage IIIB Lung Small Cell Carcinoma AJCC v7 9 230575 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 10 230576 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 10 230577 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 8 230578 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 7 230579 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 8 230580 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 8 230581 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 7 230582 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 230583 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 230584 -NCIT:C158495 Platinum-Sensitive Lung Small Cell Carcinoma 7 230585 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 7 230586 -NCIT:C188753 Lung Small Cell Carcinoma Neuroendocrine Subtype 7 230587 -NCIT:C188754 Lung Small Cell Carcinoma, Neuroendocrine-High Subtype 8 230588 -NCIT:C188755 Lung Small Cell Carcinoma, Neuroendocrine-Low Subtype 8 230589 -NCIT:C188756 Lung Small Cell Carcinoma Molecular Subtypes 7 230590 -NCIT:C188761 Lung Small Cell Carcinoma, A Subtype 8 230591 -NCIT:C188762 Lung Small Cell Carcinoma, N Subtype 8 230592 -NCIT:C188763 Lung Small Cell Carcinoma, P Subtype 8 230593 -NCIT:C188765 Lung Small Cell Carcinoma, I Subtype 8 230594 -NCIT:C188766 Lung Small Cell Carcinoma, Y Subtype 8 230595 -NCIT:C6683 Occult Lung Small Cell Carcinoma 7 230596 -NCIT:C7853 Limited Stage Lung Small Cell Carcinoma 7 230597 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 8 230598 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 8 230599 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 9 230600 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 9 230601 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 8 230602 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 9 230603 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 9 230604 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 8 230605 -NCIT:C9049 Extensive Stage Lung Small Cell Carcinoma 7 230606 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 8 230607 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 8 230608 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 8 230609 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 8 230610 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 7 230611 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 8 230612 -NCIT:C9137 Combined Lung Small Cell Carcinoma 7 230613 -NCIT:C9379 Combined Lung Small Cell Carcinoma and Lung Adenocarcinoma 8 230614 -NCIT:C9423 Combined Lung Small Cell and Squamous Cell Carcinoma 8 230615 -NCIT:C6875 Large Cell Neuroendocrine Carcinoma 5 230616 -NCIT:C126772 Endometrial Large Cell Neuroendocrine Carcinoma 6 230617 -NCIT:C128075 Vaginal Large Cell Neuroendocrine Carcinoma 6 230618 -NCIT:C128245 Vulvar Large Cell Neuroendocrine Carcinoma 6 230619 -NCIT:C154617 Digestive System Large Cell Neuroendocrine Carcinoma 6 230620 -NCIT:C126323 Gastroesophageal Junction Large Cell Neuroendocrine Carcinoma 7 230621 -NCIT:C172722 Liver Large Cell Neuroendocrine Carcinoma 7 230622 -NCIT:C95582 Pancreatic Large Cell Neuroendocrine Carcinoma 7 230623 -NCIT:C95620 Esophageal Large Cell Neuroendocrine Carcinoma 7 230624 -NCIT:C95885 Gastric Large Cell Neuroendocrine Carcinoma 7 230625 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 230626 -NCIT:C95985 Ampulla of Vater Large Cell Neuroendocrine Carcinoma 7 230627 -NCIT:C96065 Small Intestinal Large Cell Neuroendocrine Carcinoma 7 230628 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 230629 -NCIT:C96157 Colorectal Large Cell Neuroendocrine Carcinoma 7 230630 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 8 230631 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 8 230632 -NCIT:C96426 Appendix Large Cell Neuroendocrine Carcinoma 7 230633 -NCIT:C96550 Anal Canal Large Cell Neuroendocrine Carcinoma 7 230634 -NCIT:C96921 Gallbladder Large Cell Neuroendocrine Carcinoma 7 230635 -NCIT:C96958 Extrahepatic Bile Duct Large Cell Neuroendocrine Carcinoma 7 230636 -NCIT:C157760 Bladder Large Cell Neuroendocrine Carcinoma 6 230637 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 7 230638 -NCIT:C158650 Prostate Large Cell Neuroendocrine Carcinoma 6 230639 -NCIT:C158908 Metastatic Large Cell Neuroendocrine Carcinoma 6 230640 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 7 230641 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 7 230642 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 230643 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 7 230644 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 230645 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 230646 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 7 230647 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 230648 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 230649 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 230650 -NCIT:C159225 Kidney Large Cell Neuroendocrine Carcinoma 6 230651 -NCIT:C160982 Head and Neck Large Cell Neuroendocrine Carcinoma 6 230652 -NCIT:C173091 Sinonasal Large Cell Neuroendocrine Carcinoma 7 230653 -NCIT:C173395 Laryngeal Large Cell Neuroendocrine Carcinoma 7 230654 -NCIT:C173650 Salivary Gland Large Cell Neuroendocrine Carcinoma 7 230655 -NCIT:C172810 Unresectable Large Cell Neuroendocrine Carcinoma 6 230656 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 7 230657 -NCIT:C40214 Cervical Large Cell Neuroendocrine Carcinoma 6 230658 -NCIT:C40356 Breast Large Cell Neuroendocrine Carcinoma 6 230659 -NCIT:C5238 Ovarian Large Cell Neuroendocrine Carcinoma 6 230660 -NCIT:C5672 Lung Large Cell Neuroendocrine Carcinoma 6 230661 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 7 230662 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 230663 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 230664 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 7 230665 -NCIT:C7267 Combined Lung Large Cell Neuroendocrine Carcinoma 7 230666 -NCIT:C6461 Thymic Large Cell Neuroendocrine Carcinoma 6 230667 -NCIT:C3780 Large Cell Carcinoma 4 230668 -NCIT:C35735 Salivary Gland Large Cell Carcinoma 5 230669 -NCIT:C173650 Salivary Gland Large Cell Neuroendocrine Carcinoma 6 230670 -NCIT:C3779 Giant Cell Carcinoma 5 230671 -NCIT:C4452 Lung Giant Cell Carcinoma 6 230672 -NCIT:C54342 Laryngeal Giant Cell Carcinoma 6 230673 -NCIT:C5838 Gallbladder Undifferentiated Carcinoma, Spindle and Giant Cell Type 6 230674 -NCIT:C3878 Thyroid Gland Anaplastic Carcinoma 5 230675 -NCIT:C140999 Thyroid Gland Anaplastic Carcinoma by AJCC v7 Stage 6 230676 -NCIT:C87552 Stage IVA Thyroid Gland Anaplastic Carcinoma AJCC v7 7 230677 -NCIT:C87553 Stage IVB Thyroid Gland Anaplastic Carcinoma AJCC v7 7 230678 -NCIT:C87554 Stage IVC Thyroid Gland Anaplastic Carcinoma AJCC v7 7 230679 -NCIT:C141000 Thyroid Gland Anaplastic Carcinoma by AJCC v8 Stage 6 230680 -NCIT:C141001 Stage IVA Thyroid Gland Anaplastic Carcinoma AJCC v8 7 230681 -NCIT:C141003 Stage IVB Thyroid Gland Anaplastic Carcinoma AJCC v8 7 230682 -NCIT:C141004 Stage IVC Thyroid Gland Anaplastic Carcinoma AJCC v8 7 230683 -NCIT:C153624 Recurrent Thyroid Gland Anaplastic Carcinoma 6 230684 -NCIT:C170831 Metastatic Thyroid Gland Anaplastic Carcinoma 6 230685 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 7 230686 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 7 230687 -NCIT:C170832 Refractory Thyroid Gland Anaplastic Carcinoma 6 230688 -NCIT:C170833 Unresectable Thyroid Gland Anaplastic Carcinoma 6 230689 -NCIT:C46008 Thyroid Gland Anaplastic Carcinoma, Squamous Cell Carcinoma Pattern 6 230690 -NCIT:C7906 Thyroid Gland Anaplastic Carcinoma, Osteoclastic Variant 6 230691 -NCIT:C4107 Nasopharyngeal-Type Undifferentiated Carcinoma 5 230692 -NCIT:C159252 Lymphoepithelioma-Like Carcinoma of the Penis 6 230693 -NCIT:C165467 Skin Lymphoepithelioma-Like Carcinoma 6 230694 -NCIT:C173080 Sinonasal Lymphoepithelial Carcinoma 6 230695 -NCIT:C175344 Lacrimal Drainage System Lymphoepithelial Carcinoma 6 230696 -NCIT:C191678 Invasive Lymphoepithelioma-Like Urothelial Carcinoma 6 230697 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 7 230698 -NCIT:C35736 Salivary Gland Lymphoepithelial Carcinoma 6 230699 -NCIT:C39885 Prostate Acinar Adenocarcinoma, Lymphoepithelioma-Like Variant 6 230700 -NCIT:C40193 Cervical Lymphoepithelioma-Like Carcinoma 6 230701 -NCIT:C45519 Lung Lymphoepithelial Carcinoma 6 230702 -NCIT:C54341 Laryngeal Lymphoepithelial Carcinoma 6 230703 -NCIT:C68610 Oropharyngeal Undifferentiated Carcinoma 6 230704 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 7 230705 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 7 230706 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 7 230707 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 7 230708 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 8 230709 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 8 230710 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 8 230711 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 7 230712 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 7 230713 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 7 230714 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 7 230715 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 7 230716 -NCIT:C7998 Thymic Lymphoepithelial Carcinoma 6 230717 -NCIT:C8023 Nasopharyngeal Undifferentiated Carcinoma 6 230718 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 7 230719 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 7 230720 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 7 230721 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 7 230722 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 7 230723 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 7 230724 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 7 230725 -NCIT:C4450 Lung Large Cell Carcinoma 5 230726 -NCIT:C136493 Lung Large Cell Carcinoma by AJCC v7 Stage 6 230727 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 7 230728 -NCIT:C6660 Stage II Lung Large Cell Carcinoma AJCC v7 7 230729 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 8 230730 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 8 230731 -NCIT:C8755 Stage I Lung Large Cell Carcinoma AJCC v7 7 230732 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 8 230733 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 8 230734 -NCIT:C8756 Stage IV Lung Large Cell Carcinoma AJCC v7 7 230735 -NCIT:C9257 Stage III Lung Large Cell Carcinoma AJCC v7 7 230736 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 8 230737 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 8 230738 -NCIT:C4451 Lung Large Cell Carcinoma, Clear Cell Variant 6 230739 -NCIT:C6685 Occult Lung Large Cell Carcinoma 6 230740 -NCIT:C6876 Lung Large Cell Carcinoma with Rhabdoid Phenotype 6 230741 -NCIT:C7266 Lung Basaloid Large Cell Carcinoma 6 230742 -NCIT:C8753 Recurrent Lung Large Cell Carcinoma 6 230743 -NCIT:C6875 Large Cell Neuroendocrine Carcinoma 5 230744 -NCIT:C126772 Endometrial Large Cell Neuroendocrine Carcinoma 6 230745 -NCIT:C128075 Vaginal Large Cell Neuroendocrine Carcinoma 6 230746 -NCIT:C128245 Vulvar Large Cell Neuroendocrine Carcinoma 6 230747 -NCIT:C154617 Digestive System Large Cell Neuroendocrine Carcinoma 6 230748 -NCIT:C126323 Gastroesophageal Junction Large Cell Neuroendocrine Carcinoma 7 230749 -NCIT:C172722 Liver Large Cell Neuroendocrine Carcinoma 7 230750 -NCIT:C95582 Pancreatic Large Cell Neuroendocrine Carcinoma 7 230751 -NCIT:C95620 Esophageal Large Cell Neuroendocrine Carcinoma 7 230752 -NCIT:C95885 Gastric Large Cell Neuroendocrine Carcinoma 7 230753 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 230754 -NCIT:C95985 Ampulla of Vater Large Cell Neuroendocrine Carcinoma 7 230755 -NCIT:C96065 Small Intestinal Large Cell Neuroendocrine Carcinoma 7 230756 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 230757 -NCIT:C96157 Colorectal Large Cell Neuroendocrine Carcinoma 7 230758 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 8 230759 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 8 230760 -NCIT:C96426 Appendix Large Cell Neuroendocrine Carcinoma 7 230761 -NCIT:C96550 Anal Canal Large Cell Neuroendocrine Carcinoma 7 230762 -NCIT:C96921 Gallbladder Large Cell Neuroendocrine Carcinoma 7 230763 -NCIT:C96958 Extrahepatic Bile Duct Large Cell Neuroendocrine Carcinoma 7 230764 -NCIT:C157760 Bladder Large Cell Neuroendocrine Carcinoma 6 230765 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 7 230766 -NCIT:C158650 Prostate Large Cell Neuroendocrine Carcinoma 6 230767 -NCIT:C158908 Metastatic Large Cell Neuroendocrine Carcinoma 6 230768 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 7 230769 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 7 230770 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 230771 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 7 230772 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 230773 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 230774 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 7 230775 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 230776 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 230777 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 230778 -NCIT:C159225 Kidney Large Cell Neuroendocrine Carcinoma 6 230779 -NCIT:C160982 Head and Neck Large Cell Neuroendocrine Carcinoma 6 230780 -NCIT:C173091 Sinonasal Large Cell Neuroendocrine Carcinoma 7 230781 -NCIT:C173395 Laryngeal Large Cell Neuroendocrine Carcinoma 7 230782 -NCIT:C173650 Salivary Gland Large Cell Neuroendocrine Carcinoma 7 230783 -NCIT:C172810 Unresectable Large Cell Neuroendocrine Carcinoma 6 230784 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 7 230785 -NCIT:C40214 Cervical Large Cell Neuroendocrine Carcinoma 6 230786 -NCIT:C40356 Breast Large Cell Neuroendocrine Carcinoma 6 230787 -NCIT:C5238 Ovarian Large Cell Neuroendocrine Carcinoma 6 230788 -NCIT:C5672 Lung Large Cell Neuroendocrine Carcinoma 6 230789 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 7 230790 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 230791 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 230792 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 7 230793 -NCIT:C7267 Combined Lung Large Cell Neuroendocrine Carcinoma 7 230794 -NCIT:C6461 Thymic Large Cell Neuroendocrine Carcinoma 6 230795 -NCIT:C40022 Primary Peritoneal Carcinoma 4 230796 -NCIT:C115441 Recurrent Primary Peritoneal Carcinoma 5 230797 -NCIT:C170751 Recurrent Platinum-Resistant Primary Peritoneal Carcinoma 6 230798 -NCIT:C170756 Recurrent Primary Peritoneal Undifferentiated Carcinoma 6 230799 -NCIT:C170759 Recurrent Primary Peritoneal Transitional Cell Carcinoma 6 230800 -NCIT:C170767 Recurrent Primary Peritoneal Adenocarcinoma 6 230801 -NCIT:C156453 Recurrent Primary Peritoneal Serous Adenocarcinoma 7 230802 -NCIT:C156454 Recurrent Primary Peritoneal Low Grade Serous Adenocarcinoma 8 230803 -NCIT:C165268 Recurrent Primary Peritoneal High Grade Serous Adenocarcinoma 8 230804 -NCIT:C165269 Recurrent Primary Peritoneal Endometrioid Adenocarcinoma 7 230805 -NCIT:C170761 Recurrent Primary Peritoneal Clear Cell Adenocarcinoma 7 230806 -NCIT:C191407 Recurrent Platinum-Sensitive Primary Peritoneal Carcinoma 6 230807 -NCIT:C140003 Primary Peritoneal Cancer by AJCC v7 Stage 5 230808 -NCIT:C115094 Stage III Primary Peritoneal Cancer AJCC v7 6 230809 -NCIT:C115095 Stage IIIA Primary Peritoneal Cancer AJCC v7 7 230810 -NCIT:C115096 Stage IIIB Primary Peritoneal Cancer AJCC v7 7 230811 -NCIT:C115097 Stage IIIC Primary Peritoneal Cancer AJCC v7 7 230812 -NCIT:C115098 Stage IV Primary Peritoneal Cancer AJCC v7 6 230813 -NCIT:C140004 Primary Peritoneal Cancer by AJCC v8 Stage 5 230814 -NCIT:C140005 Stage II Primary Peritoneal Cancer AJCC v8 6 230815 -NCIT:C140006 Stage IIA Primary Peritoneal Cancer AJCC v8 7 230816 -NCIT:C140007 Stage IIB Primary Peritoneal Cancer AJCC v8 7 230817 -NCIT:C140008 Stage III Primary Peritoneal Cancer AJCC v8 6 230818 -NCIT:C140009 Stage IIIA Primary Peritoneal Cancer AJCC v8 7 230819 -NCIT:C140010 Stage IIIB Primary Peritoneal Cancer AJCC v8 7 230820 -NCIT:C140011 Stage IIIC Primary Peritoneal Cancer AJCC v8 7 230821 -NCIT:C140012 Stage IV Primary Peritoneal Cancer AJCC v8 6 230822 -NCIT:C140013 Stage IVA Primary Peritoneal Cancer AJCC v8 7 230823 -NCIT:C140014 Stage IVB Primary Peritoneal Cancer AJCC v8 7 230824 -NCIT:C152046 Refractory Primary Peritoneal Carcinoma 5 230825 -NCIT:C157622 Platinum-Resistant Primary Peritoneal Carcinoma 6 230826 -NCIT:C170751 Recurrent Platinum-Resistant Primary Peritoneal Carcinoma 7 230827 -NCIT:C170975 Refractory Primary Peritoneal Adenocarcinoma 6 230828 -NCIT:C171021 Refractory Primary Peritoneal Serous Adenocarcinoma 7 230829 -NCIT:C178686 Refractory Primary Peritoneal High Grade Serous Adenocarcinoma 8 230830 -NCIT:C178687 Refractory Primary Peritoneal Low Grade Serous Adenocarcinoma 8 230831 -NCIT:C178684 Refractory Primary Peritoneal Clear Cell Adenocarcinoma 7 230832 -NCIT:C178685 Refractory Primary Peritoneal Endometrioid Adenocarcinoma 7 230833 -NCIT:C178688 Refractory Primary Peritoneal Transitional Cell Carcinoma 6 230834 -NCIT:C178689 Refractory Primary Peritoneal Undifferentiated Carcinoma 6 230835 -NCIT:C178702 Platinum-Refractory Primary Peritoneal Carcinoma 6 230836 -NCIT:C160872 Platinum-Sensitive Primary Peritoneal Carcinoma 5 230837 -NCIT:C191407 Recurrent Platinum-Sensitive Primary Peritoneal Carcinoma 6 230838 -NCIT:C162562 Primary Peritoneal Undifferentiated Carcinoma 5 230839 -NCIT:C170756 Recurrent Primary Peritoneal Undifferentiated Carcinoma 6 230840 -NCIT:C178689 Refractory Primary Peritoneal Undifferentiated Carcinoma 6 230841 -NCIT:C162564 Primary Peritoneal Transitional Cell Carcinoma 5 230842 -NCIT:C170759 Recurrent Primary Peritoneal Transitional Cell Carcinoma 6 230843 -NCIT:C178688 Refractory Primary Peritoneal Transitional Cell Carcinoma 6 230844 -NCIT:C167203 Metastatic Primary Peritoneal Carcinoma 5 230845 -NCIT:C167204 Locally Advanced Primary Peritoneal Carcinoma 6 230846 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 7 230847 -NCIT:C167396 Advanced Primary Peritoneal Carcinoma 6 230848 -NCIT:C170972 Metastatic Primary Peritoneal Adenocarcinoma 6 230849 -NCIT:C171019 Metastatic Primary Peritoneal Serous Adenocarcinoma 7 230850 -NCIT:C186453 Metastatic Primary Peritoneal High Grade Serous Adenocarcinoma 8 230851 -NCIT:C170733 Primary Peritoneal Adenocarcinoma 5 230852 -NCIT:C162566 Primary Peritoneal Clear Cell Adenocarcinoma 6 230853 -NCIT:C170761 Recurrent Primary Peritoneal Clear Cell Adenocarcinoma 7 230854 -NCIT:C178684 Refractory Primary Peritoneal Clear Cell Adenocarcinoma 7 230855 -NCIT:C165260 Primary Peritoneal Endometrioid Adenocarcinoma 6 230856 -NCIT:C165269 Recurrent Primary Peritoneal Endometrioid Adenocarcinoma 7 230857 -NCIT:C178685 Refractory Primary Peritoneal Endometrioid Adenocarcinoma 7 230858 -NCIT:C186276 Unresectable Primary Peritoneal Endometrioid Adenocarcinoma 7 230859 -NCIT:C170767 Recurrent Primary Peritoneal Adenocarcinoma 6 230860 -NCIT:C156453 Recurrent Primary Peritoneal Serous Adenocarcinoma 7 230861 -NCIT:C156454 Recurrent Primary Peritoneal Low Grade Serous Adenocarcinoma 8 230862 -NCIT:C165268 Recurrent Primary Peritoneal High Grade Serous Adenocarcinoma 8 230863 -NCIT:C165269 Recurrent Primary Peritoneal Endometrioid Adenocarcinoma 7 230864 -NCIT:C170761 Recurrent Primary Peritoneal Clear Cell Adenocarcinoma 7 230865 -NCIT:C170972 Metastatic Primary Peritoneal Adenocarcinoma 6 230866 -NCIT:C171019 Metastatic Primary Peritoneal Serous Adenocarcinoma 7 230867 -NCIT:C186453 Metastatic Primary Peritoneal High Grade Serous Adenocarcinoma 8 230868 -NCIT:C170974 Unresectable Primary Peritoneal Adenocarcinoma 6 230869 -NCIT:C171020 Unresectable Primary Peritoneal Serous Adenocarcinoma 7 230870 -NCIT:C186275 Unresectable Primary Peritoneal High Grade Serous Adenocarcinoma 8 230871 -NCIT:C186276 Unresectable Primary Peritoneal Endometrioid Adenocarcinoma 7 230872 -NCIT:C170975 Refractory Primary Peritoneal Adenocarcinoma 6 230873 -NCIT:C171021 Refractory Primary Peritoneal Serous Adenocarcinoma 7 230874 -NCIT:C178686 Refractory Primary Peritoneal High Grade Serous Adenocarcinoma 8 230875 -NCIT:C178687 Refractory Primary Peritoneal Low Grade Serous Adenocarcinoma 8 230876 -NCIT:C178684 Refractory Primary Peritoneal Clear Cell Adenocarcinoma 7 230877 -NCIT:C178685 Refractory Primary Peritoneal Endometrioid Adenocarcinoma 7 230878 -NCIT:C40023 Primary Peritoneal Serous Adenocarcinoma 6 230879 -NCIT:C126353 Primary Peritoneal High Grade Serous Adenocarcinoma 7 230880 -NCIT:C165268 Recurrent Primary Peritoneal High Grade Serous Adenocarcinoma 8 230881 -NCIT:C178686 Refractory Primary Peritoneal High Grade Serous Adenocarcinoma 8 230882 -NCIT:C186275 Unresectable Primary Peritoneal High Grade Serous Adenocarcinoma 8 230883 -NCIT:C186453 Metastatic Primary Peritoneal High Grade Serous Adenocarcinoma 8 230884 -NCIT:C126354 Primary Peritoneal Low Grade Serous Adenocarcinoma 7 230885 -NCIT:C156454 Recurrent Primary Peritoneal Low Grade Serous Adenocarcinoma 8 230886 -NCIT:C178687 Refractory Primary Peritoneal Low Grade Serous Adenocarcinoma 8 230887 -NCIT:C156453 Recurrent Primary Peritoneal Serous Adenocarcinoma 7 230888 -NCIT:C156454 Recurrent Primary Peritoneal Low Grade Serous Adenocarcinoma 8 230889 -NCIT:C165268 Recurrent Primary Peritoneal High Grade Serous Adenocarcinoma 8 230890 -NCIT:C171019 Metastatic Primary Peritoneal Serous Adenocarcinoma 7 230891 -NCIT:C186453 Metastatic Primary Peritoneal High Grade Serous Adenocarcinoma 8 230892 -NCIT:C171020 Unresectable Primary Peritoneal Serous Adenocarcinoma 7 230893 -NCIT:C186275 Unresectable Primary Peritoneal High Grade Serous Adenocarcinoma 8 230894 -NCIT:C171021 Refractory Primary Peritoneal Serous Adenocarcinoma 7 230895 -NCIT:C178686 Refractory Primary Peritoneal High Grade Serous Adenocarcinoma 8 230896 -NCIT:C178687 Refractory Primary Peritoneal Low Grade Serous Adenocarcinoma 8 230897 -NCIT:C7695 Primary Peritoneal Serous Papillary Adenocarcinoma 7 230898 -NCIT:C170973 Unresectable Primary Peritoneal Carcinoma 5 230899 -NCIT:C170974 Unresectable Primary Peritoneal Adenocarcinoma 6 230900 -NCIT:C171020 Unresectable Primary Peritoneal Serous Adenocarcinoma 7 230901 -NCIT:C186275 Unresectable Primary Peritoneal High Grade Serous Adenocarcinoma 8 230902 -NCIT:C186276 Unresectable Primary Peritoneal Endometrioid Adenocarcinoma 7 230903 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 6 230904 -NCIT:C4121 Basaloid Carcinoma 4 230905 -NCIT:C54244 Basaloid Squamous Cell Carcinoma 5 230906 -NCIT:C27543 Skin Basaloid Carcinoma 6 230907 -NCIT:C37290 Head and Neck Basaloid Carcinoma 6 230908 -NCIT:C126751 Oropharyngeal Basaloid Carcinoma 7 230909 -NCIT:C129873 Floor of Mouth Basaloid Squamous Cell Carcinoma 7 230910 -NCIT:C54334 Laryngeal Basaloid Carcinoma 7 230911 -NCIT:C54360 Nasopharyngeal Basaloid Carcinoma 7 230912 -NCIT:C40189 Cervical Basaloid Carcinoma 6 230913 -NCIT:C40245 Vaginal Basaloid Carcinoma 6 230914 -NCIT:C40286 Vulvar Basaloid Carcinoma 6 230915 -NCIT:C45507 Lung Basaloid Squamous Cell Carcinoma 6 230916 -NCIT:C6456 Thymic Basaloid Carcinoma 6 230917 -NCIT:C6980 Basaloid Squamous Cell Carcinoma of the Penis 6 230918 -NCIT:C159249 Papillary-Basaloid Carcinoma of the Penis 7 230919 -NCIT:C7032 Esophageal Basaloid Carcinoma 6 230920 -NCIT:C8256 Anal Basaloid Carcinoma 6 230921 -NCIT:C7266 Lung Basaloid Large Cell Carcinoma 5 230922 -NCIT:C4137 Solid Carcinoma 4 230923 -NCIT:C39897 Prostate Ductal Adenocarcinoma, Solid Pattern 5 230924 -NCIT:C46095 Solid/Trabecular Variant Thyroid Gland Papillary Carcinoma 5 230925 -NCIT:C5616 Skin Nodular Solid Basal Cell Carcinoma 5 230926 -NCIT:C5651 Solid Lung Adenocarcinoma 5 230927 -NCIT:C66933 Breast Ductal Carcinoma In Situ, Solid Type 5 230928 -NCIT:C6870 Breast Solid Papillary Carcinoma 5 230929 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 6 230930 -NCIT:C176012 Invasive Breast Solid Papillary Carcinoma 6 230931 -NCIT:C4139 Combined Carcinoid and Adenocarcinoma 4 230932 -NCIT:C3689 Appendix Goblet Cell Adenocarcinoma 5 230933 -NCIT:C96928 Gallbladder Goblet Cell Carcinoid 5 230934 -NCIT:C4152 Lipid-Rich Carcinoma 4 230935 -NCIT:C40365 Breast Lipid-Rich Carcinoma 5 230936 -NCIT:C4153 Glycogen-Rich Carcinoma 4 230937 -NCIT:C40368 Glycogen-Rich, Clear Cell Breast Carcinoma 5 230938 -NCIT:C4188 Comedocarcinoma 4 230939 -NCIT:C176005 Breast Ductal Carcinoma In Situ, Comedo Type 5 230940 -NCIT:C96488 Colorectal Cribriform Comedo-Type Adenocarcinoma 5 230941 -NCIT:C96489 Colon Cribriform Comedo-Type Adenocarcinoma 6 230942 -NCIT:C96490 Rectal Cribriform Comedo-Type Adenocarcinoma 6 230943 -NCIT:C4199 Epithelial-Myoepithelial Carcinoma 4 230944 -NCIT:C175288 Lacrimal Gland Epithelial-Myoepithelial Carcinoma 5 230945 -NCIT:C35701 Salivary Gland Epithelial-Myoepithelial Carcinoma 5 230946 -NCIT:C45545 Lung Epithelial-Myoepithelial Carcinoma 5 230947 -NCIT:C45716 NUT Carcinoma 4 230948 -NCIT:C142781 Thoracic NUT Carcinoma 5 230949 -NCIT:C146706 Mediastinal/Thymic NUT Carcinoma 6 230950 -NCIT:C160297 Metastatic NUT Carcinoma 5 230951 -NCIT:C160298 Advanced NUT Carcinoma 6 230952 -NCIT:C160301 Unresectable NUT Carcinoma 5 230953 -NCIT:C173087 Head and Neck NUT Carcinoma 5 230954 -NCIT:C173088 Sinonasal NUT Carcinoma 6 230955 -NCIT:C190278 Childhood Head and Neck NUT Carcinoma 6 230956 -NCIT:C190277 Childhood NUT Carcinoma 5 230957 -NCIT:C190278 Childhood Head and Neck NUT Carcinoma 6 230958 -NCIT:C4872 Breast Carcinoma 4 230959 -NCIT:C118809 Childhood Breast Carcinoma 5 230960 -NCIT:C137674 Occult Breast Carcinoma 5 230961 -NCIT:C139532 Breast Cancer by AJCC v8 Stage 5 230962 -NCIT:C139533 Breast Cancer by AJCC v8 Anatomic Stage 6 230963 -NCIT:C139534 Anatomic Stage 0 Breast Cancer AJCC v8 7 230964 -NCIT:C2924 Breast Ductal Carcinoma In Situ 8 230965 -NCIT:C176005 Breast Ductal Carcinoma In Situ, Comedo Type 9 230966 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 9 230967 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 10 230968 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 10 230969 -NCIT:C5137 Breast Ductal Carcinoma In Situ, Non-Comedo Type 9 230970 -NCIT:C5138 Breast Ductal Carcinoma In Situ, Cribriform Pattern 9 230971 -NCIT:C66933 Breast Ductal Carcinoma In Situ, Solid Type 9 230972 -NCIT:C7949 Breast Ductal Carcinoma In Situ, High Grade 9 230973 -NCIT:C9456 Breast Ductal Carcinoma In Situ, Intermediate Grade 9 230974 -NCIT:C9457 Breast Ductal Carcinoma In Situ, Low Grade 9 230975 -NCIT:C139535 Anatomic Stage I Breast Cancer AJCC v8 7 230976 -NCIT:C139536 Anatomic Stage IA Breast Cancer AJCC v8 8 230977 -NCIT:C139537 Anatomic Stage IB Breast Cancer AJCC v8 8 230978 -NCIT:C139538 Anatomic Stage II Breast Cancer AJCC v8 7 230979 -NCIT:C139539 Anatomic Stage IIA Breast Cancer AJCC v8 8 230980 -NCIT:C139540 Anatomic Stage IIB Breast Cancer AJCC v8 8 230981 -NCIT:C139541 Anatomic Stage III Breast Cancer AJCC v8 7 230982 -NCIT:C139542 Anatomic Stage IIIA Breast Cancer AJCC v8 8 230983 -NCIT:C139543 Anatomic Stage IIIB Breast Cancer AJCC v8 8 230984 -NCIT:C9246 Stage IIIB Breast Inflammatory Carcinoma 9 230985 -NCIT:C139544 Anatomic Stage IIIC Breast Cancer AJCC v8 8 230986 -NCIT:C139545 Anatomic Stage IV Breast Cancer AJCC v8 7 230987 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 8 230988 -NCIT:C139554 Breast Cancer by AJCC v8 Prognostic Stage 6 230989 -NCIT:C139555 Prognostic Stage 0 Breast Cancer AJCC v8 7 230990 -NCIT:C139556 Prognostic Stage I Breast Cancer AJCC v8 7 230991 -NCIT:C139557 Prognostic Stage IA Breast Cancer AJCC v8 8 230992 -NCIT:C139558 Prognostic Stage IB Breast Cancer AJCC v8 8 230993 -NCIT:C139569 Prognostic Stage II Breast Cancer AJCC v8 7 230994 -NCIT:C139571 Prognostic Stage IIA Breast Cancer AJCC v8 8 230995 -NCIT:C139572 Prognostic Stage IIB Breast Cancer AJCC v8 8 230996 -NCIT:C139582 Prognostic Stage III Breast Cancer AJCC v8 7 230997 -NCIT:C139583 Prognostic Stage IIIA Breast Cancer AJCC v8 8 230998 -NCIT:C139584 Prognostic Stage IIIB Breast Cancer AJCC v8 8 230999 -NCIT:C139585 Prognostic Stage IIIC Breast Cancer AJCC v8 8 231000 -NCIT:C139587 Prognostic Stage IV Breast Cancer AJCC v8 7 231001 -NCIT:C147965 Refractory Breast Carcinoma 5 231002 -NCIT:C165703 Refractory Breast Adenocarcinoma 6 231003 -NCIT:C157057 Refractory Hormone Receptor-Positive Breast Carcinoma 7 231004 -NCIT:C167076 Refractory Triple-Negative Breast Carcinoma 7 231005 -NCIT:C168784 Refractory HER2-Negative Breast Carcinoma 7 231006 -NCIT:C182110 Refractory HER2-Positive Breast Carcinoma 7 231007 -NCIT:C153238 Metastatic Breast Carcinoma 5 231008 -NCIT:C133501 Breast Carcinoma Metastatic in the Central Nervous System 6 231009 -NCIT:C36301 Breast Carcinoma Metastatic in the Brain 7 231010 -NCIT:C153227 Breast Carcinoma Metastatic in the Lymph Nodes 6 231011 -NCIT:C160920 Locally Advanced Breast Carcinoma 6 231012 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 7 231013 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 8 231014 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 8 231015 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 8 231016 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 8 231017 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 7 231018 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 8 231019 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 231020 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 231021 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 231022 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 8 231023 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 231024 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 231025 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 231026 -NCIT:C161830 Metastatic BRCA-Associated Breast Carcinoma 6 231027 -NCIT:C162648 Advanced Breast Carcinoma 6 231028 -NCIT:C165700 Advanced Breast Adenocarcinoma 7 231029 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 231030 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 231031 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 8 231032 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 231033 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 231034 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 231035 -NCIT:C165698 Metastatic Breast Adenocarcinoma 6 231036 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 7 231037 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 8 231038 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 231039 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 231040 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 231041 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 8 231042 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 231043 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 231044 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 231045 -NCIT:C165700 Advanced Breast Adenocarcinoma 7 231046 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 231047 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 231048 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 8 231049 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 231050 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 231051 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 231052 -NCIT:C168777 Metastatic HER2-Negative Breast Carcinoma 7 231053 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 231054 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 231055 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 231056 -NCIT:C179554 Metastatic HER2-Low Breast Carcinoma 7 231057 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 231058 -NCIT:C180924 Metastatic HER2-Positive Breast Carcinoma 7 231059 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 8 231060 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 8 231061 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 231062 -NCIT:C181787 Metastatic Breast Inflammatory Carcinoma 7 231063 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 8 231064 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 8 231065 -NCIT:C9246 Stage IIIB Breast Inflammatory Carcinoma 8 231066 -NCIT:C185880 Metastatic Hormone Receptor-Positive Breast Carcinoma 7 231067 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 231068 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 231069 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 231070 -NCIT:C190852 Metastatic Androgen Receptor-Positive Breast Carcinoma 8 231071 -NCIT:C190856 Metastatic Estrogen Receptor-Positive Breast Carcinoma 8 231072 -NCIT:C190677 Metastatic Hormone Receptor-Negative Breast Carcinoma 7 231073 -NCIT:C153348 Metastatic Triple-Negative Breast Carcinoma 8 231074 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 231075 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 231076 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 231077 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 9 231078 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 231079 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 231080 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 7 231081 -NCIT:C76326 Metastatic Breast Ductal Carcinoma 7 231082 -NCIT:C76328 Metastatic Breast Lobular Carcinoma 7 231083 -NCIT:C179515 Oligometastatic Breast Carcinoma 6 231084 -NCIT:C28311 Metastatic Breast Carcinoma in the Skin 6 231085 -NCIT:C36300 Breast Carcinoma Metastatic in the Lung 6 231086 -NCIT:C36302 Breast Carcinoma Metastatic in the Liver 6 231087 -NCIT:C36303 Breast Carcinoma Metastatic in the Bone 6 231088 -NCIT:C153226 Breast Carcinoma Metastatic in the Spine 7 231089 -NCIT:C5178 Metastatic Breast Squamous Cell Carcinoma 6 231090 -NCIT:C158752 Unresectable Breast Carcinoma 5 231091 -NCIT:C158751 Unresectable Breast Inflammatory Carcinoma 6 231092 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 6 231093 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 7 231094 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 7 231095 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 7 231096 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 7 231097 -NCIT:C186284 Unresectable HER2-Positive Breast Carcinoma 6 231098 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 7 231099 -NCIT:C187160 Unresectable Hormone Receptor-Positive Breast Carcinoma 6 231100 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 7 231101 -NCIT:C187161 Unresectable HER2-Negative Breast Carcinoma 6 231102 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 7 231103 -NCIT:C190676 Unresectable Hormone Receptor-Negative Breast Carcinoma 6 231104 -NCIT:C165491 Unresectable Triple-Negative Breast Carcinoma 7 231105 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 8 231106 -NCIT:C162782 Localized Breast Carcinoma 5 231107 -NCIT:C188035 Resectable Breast Carcinoma 5 231108 -NCIT:C28432 Nipple Carcinoma 5 231109 -NCIT:C28292 Squamous Cell Carcinoma In Situ of the Nipple 6 231110 -NCIT:C3301 Nipple Paget Disease 6 231111 -NCIT:C2918 Female Breast Carcinoma 5 231112 -NCIT:C176579 Invasive Female Breast Carcinoma 6 231113 -NCIT:C176580 Female Breast Carcinoma In Situ 6 231114 -NCIT:C36107 Hereditary Female Breast Carcinoma 6 231115 -NCIT:C3862 Male Breast Carcinoma 5 231116 -NCIT:C176503 Male Breast Carcinoma In Situ 6 231117 -NCIT:C176504 Invasive Male Breast Carcinoma 6 231118 -NCIT:C36106 Hereditary Male Breast Carcinoma 6 231119 -NCIT:C4503 Hereditary Breast Carcinoma 5 231120 -NCIT:C167189 BRCA-Associated Breast Carcinoma 6 231121 -NCIT:C161830 Metastatic BRCA-Associated Breast Carcinoma 7 231122 -NCIT:C167193 PALB2-Associated Breast Carcinoma 6 231123 -NCIT:C36106 Hereditary Male Breast Carcinoma 6 231124 -NCIT:C36107 Hereditary Female Breast Carcinoma 6 231125 -NCIT:C46073 Unilateral Breast Carcinoma 5 231126 -NCIT:C5214 Breast Adenocarcinoma 5 231127 -NCIT:C114932 Hormone-Resistant Breast Carcinoma 6 231128 -NCIT:C157056 Hormone Receptor-Positive Breast Carcinoma 6 231129 -NCIT:C157057 Refractory Hormone Receptor-Positive Breast Carcinoma 7 231130 -NCIT:C185157 Recurrent Hormone Receptor-Positive Breast Carcinoma 7 231131 -NCIT:C185880 Metastatic Hormone Receptor-Positive Breast Carcinoma 7 231132 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 231133 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 231134 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 231135 -NCIT:C190852 Metastatic Androgen Receptor-Positive Breast Carcinoma 8 231136 -NCIT:C190856 Metastatic Estrogen Receptor-Positive Breast Carcinoma 8 231137 -NCIT:C187160 Unresectable Hormone Receptor-Positive Breast Carcinoma 7 231138 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 8 231139 -NCIT:C188366 Estrogen Receptor-Positive Breast Carcinoma 7 231140 -NCIT:C190856 Metastatic Estrogen Receptor-Positive Breast Carcinoma 8 231141 -NCIT:C190851 Androgen Receptor-Positive Breast Carcinoma 7 231142 -NCIT:C190852 Metastatic Androgen Receptor-Positive Breast Carcinoma 8 231143 -NCIT:C165698 Metastatic Breast Adenocarcinoma 6 231144 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 7 231145 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 8 231146 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 231147 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 231148 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 231149 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 8 231150 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 231151 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 231152 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 231153 -NCIT:C165700 Advanced Breast Adenocarcinoma 7 231154 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 231155 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 231156 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 8 231157 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 231158 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 231159 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 231160 -NCIT:C168777 Metastatic HER2-Negative Breast Carcinoma 7 231161 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 231162 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 231163 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 231164 -NCIT:C179554 Metastatic HER2-Low Breast Carcinoma 7 231165 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 231166 -NCIT:C180924 Metastatic HER2-Positive Breast Carcinoma 7 231167 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 8 231168 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 8 231169 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 231170 -NCIT:C181787 Metastatic Breast Inflammatory Carcinoma 7 231171 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 8 231172 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 8 231173 -NCIT:C9246 Stage IIIB Breast Inflammatory Carcinoma 8 231174 -NCIT:C185880 Metastatic Hormone Receptor-Positive Breast Carcinoma 7 231175 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 231176 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 231177 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 231178 -NCIT:C190852 Metastatic Androgen Receptor-Positive Breast Carcinoma 8 231179 -NCIT:C190856 Metastatic Estrogen Receptor-Positive Breast Carcinoma 8 231180 -NCIT:C190677 Metastatic Hormone Receptor-Negative Breast Carcinoma 7 231181 -NCIT:C153348 Metastatic Triple-Negative Breast Carcinoma 8 231182 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 231183 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 231184 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 231185 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 9 231186 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 231187 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 231188 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 7 231189 -NCIT:C76326 Metastatic Breast Ductal Carcinoma 7 231190 -NCIT:C76328 Metastatic Breast Lobular Carcinoma 7 231191 -NCIT:C165703 Refractory Breast Adenocarcinoma 6 231192 -NCIT:C157057 Refractory Hormone Receptor-Positive Breast Carcinoma 7 231193 -NCIT:C167076 Refractory Triple-Negative Breast Carcinoma 7 231194 -NCIT:C168784 Refractory HER2-Negative Breast Carcinoma 7 231195 -NCIT:C182110 Refractory HER2-Positive Breast Carcinoma 7 231196 -NCIT:C165743 Hormone Receptor-Negative Breast Carcinoma 6 231197 -NCIT:C190676 Unresectable Hormone Receptor-Negative Breast Carcinoma 7 231198 -NCIT:C165491 Unresectable Triple-Negative Breast Carcinoma 8 231199 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 231200 -NCIT:C190677 Metastatic Hormone Receptor-Negative Breast Carcinoma 7 231201 -NCIT:C153348 Metastatic Triple-Negative Breast Carcinoma 8 231202 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 231203 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 231204 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 231205 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 9 231206 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 231207 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 231208 -NCIT:C71732 Triple-Negative Breast Carcinoma 7 231209 -NCIT:C153348 Metastatic Triple-Negative Breast Carcinoma 8 231210 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 231211 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 231212 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 231213 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 9 231214 -NCIT:C165491 Unresectable Triple-Negative Breast Carcinoma 8 231215 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 231216 -NCIT:C167076 Refractory Triple-Negative Breast Carcinoma 8 231217 -NCIT:C171014 Recurrent Triple-Negative Breast Carcinoma 8 231218 -NCIT:C181081 Early Stage Triple-Negative Breast Carcinoma 8 231219 -NCIT:C168519 HER2-Negative Breast Carcinoma 6 231220 -NCIT:C168777 Metastatic HER2-Negative Breast Carcinoma 7 231221 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 231222 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 231223 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 231224 -NCIT:C168783 Recurrent HER2-Negative Breast Carcinoma 7 231225 -NCIT:C168784 Refractory HER2-Negative Breast Carcinoma 7 231226 -NCIT:C187161 Unresectable HER2-Negative Breast Carcinoma 7 231227 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 8 231228 -NCIT:C190215 Early Stage HER2-Negative Breast Carcinoma 7 231229 -NCIT:C175588 Recurrent Breast Adenocarcinoma 6 231230 -NCIT:C153568 Recurrent Breast Acinic Cell Carcinoma 7 231231 -NCIT:C153584 Recurrent Lobular Breast Carcinoma 7 231232 -NCIT:C153587 Recurrent Invasive Breast Carcinoma of No Special Type 7 231233 -NCIT:C153588 Recurrent Breast Paget Disease 7 231234 -NCIT:C168783 Recurrent HER2-Negative Breast Carcinoma 7 231235 -NCIT:C171014 Recurrent Triple-Negative Breast Carcinoma 7 231236 -NCIT:C182108 Recurrent HER2-Positive Breast Carcinoma 7 231237 -NCIT:C185157 Recurrent Hormone Receptor-Positive Breast Carcinoma 7 231238 -NCIT:C8607 Recurrent Breast Inflammatory Carcinoma 7 231239 -NCIT:C179553 HER2-Low Breast Carcinoma 6 231240 -NCIT:C179554 Metastatic HER2-Low Breast Carcinoma 7 231241 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 231242 -NCIT:C3771 Breast Lobular Carcinoma 6 231243 -NCIT:C153584 Recurrent Lobular Breast Carcinoma 7 231244 -NCIT:C4018 Breast Lobular Carcinoma In Situ 7 231245 -NCIT:C137839 Breast Pleomorphic Lobular Carcinoma In Situ 8 231246 -NCIT:C175949 Breast Classic Lobular Carcinoma In Situ 8 231247 -NCIT:C83170 Breast Classic Lobular Carcinoma In Situ Type A 9 231248 -NCIT:C83171 Breast Classic Lobular Carcinoma In Situ Type B 9 231249 -NCIT:C175950 Breast Florid Lobular Carcinoma In Situ 8 231250 -NCIT:C76328 Metastatic Breast Lobular Carcinoma 7 231251 -NCIT:C7950 Invasive Breast Lobular Carcinoma 7 231252 -NCIT:C157235 Breast Histiocytoid Carcinoma 8 231253 -NCIT:C187405 Invasive Breast Lobular Carcinoma with Extracellular Mucin 8 231254 -NCIT:C54691 Invasive Breast Lobular Carcinoma, Signet Ring Variant 8 231255 -NCIT:C9136 Invasive Breast Lobular Carcinoma with Predominant In Situ Component 8 231256 -NCIT:C97049 Invasive Breast Lobular Carcinoma, Alveolar Variant 8 231257 -NCIT:C97051 Invasive Breast Lobular Carcinoma, Pleomorphic Variant 8 231258 -NCIT:C97052 Invasive Breast Lobular Carcinoma, Solid Variant 8 231259 -NCIT:C97053 Invasive Breast Lobular Carcinoma, Tubulolobular Variant 8 231260 -NCIT:C4001 Breast Inflammatory Carcinoma 6 231261 -NCIT:C158751 Unresectable Breast Inflammatory Carcinoma 7 231262 -NCIT:C181787 Metastatic Breast Inflammatory Carcinoma 7 231263 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 8 231264 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 8 231265 -NCIT:C9246 Stage IIIB Breast Inflammatory Carcinoma 8 231266 -NCIT:C8607 Recurrent Breast Inflammatory Carcinoma 7 231267 -NCIT:C4017 Breast Ductal Carcinoma 6 231268 -NCIT:C2924 Breast Ductal Carcinoma In Situ 7 231269 -NCIT:C176005 Breast Ductal Carcinoma In Situ, Comedo Type 8 231270 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 8 231271 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 9 231272 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 9 231273 -NCIT:C5137 Breast Ductal Carcinoma In Situ, Non-Comedo Type 8 231274 -NCIT:C5138 Breast Ductal Carcinoma In Situ, Cribriform Pattern 8 231275 -NCIT:C66933 Breast Ductal Carcinoma In Situ, Solid Type 8 231276 -NCIT:C7949 Breast Ductal Carcinoma In Situ, High Grade 8 231277 -NCIT:C9456 Breast Ductal Carcinoma In Situ, Intermediate Grade 8 231278 -NCIT:C9457 Breast Ductal Carcinoma In Situ, Low Grade 8 231279 -NCIT:C4194 Invasive Breast Carcinoma of No Special Type 7 231280 -NCIT:C153587 Recurrent Invasive Breast Carcinoma of No Special Type 8 231281 -NCIT:C175585 Breast Carcinoma with Neuroendocrine Differentiation 8 231282 -NCIT:C40349 Breast Carcinoma with Osteoclast-Like Stromal Giant Cells 8 231283 -NCIT:C40350 Breast Carcinoma with Choriocarcinomatous Features 8 231284 -NCIT:C40351 Breast Carcinoma with Melanotic Features 8 231285 -NCIT:C40365 Breast Lipid-Rich Carcinoma 8 231286 -NCIT:C40366 Breast Oncocytic Carcinoma 8 231287 -NCIT:C40368 Glycogen-Rich, Clear Cell Breast Carcinoma 8 231288 -NCIT:C40369 Breast Sebaceous Carcinoma 8 231289 -NCIT:C5161 Breast Pleomorphic Carcinoma 8 231290 -NCIT:C66719 Breast Atypical Medullary Carcinoma 8 231291 -NCIT:C6987 Breast Ductal Carcinoma with Squamous Metaplasia 8 231292 -NCIT:C7362 Breast Scirrhous Carcinoma 8 231293 -NCIT:C9119 Breast Medullary Carcinoma 8 231294 -NCIT:C9132 Invasive Breast Carcinoma of No Special Type with Predominant Intraductal Component 8 231295 -NCIT:C76326 Metastatic Breast Ductal Carcinoma 7 231296 -NCIT:C40354 Breast Mucinous Cystadenocarcinoma 6 231297 -NCIT:C40360 Breast Adenocarcinoma with Spindle Cell Metaplasia 6 231298 -NCIT:C40367 Breast Acinic Cell Carcinoma 6 231299 -NCIT:C153568 Recurrent Breast Acinic Cell Carcinoma 7 231300 -NCIT:C47857 Breast Paget Disease 6 231301 -NCIT:C153588 Recurrent Breast Paget Disease 7 231302 -NCIT:C3301 Nipple Paget Disease 7 231303 -NCIT:C47858 Breast Paget Disease without Invasive Carcinoma 7 231304 -NCIT:C4019 Breast Paget Disease and Intraductal Carcinoma 8 231305 -NCIT:C7951 Breast Paget Disease with Invasive Ductal Carcinoma 7 231306 -NCIT:C5141 Breast Apocrine Carcinoma 6 231307 -NCIT:C5140 Breast Apocrine Carcinoma In Situ 7 231308 -NCIT:C5457 Invasive Breast Apocrine Carcinoma 7 231309 -NCIT:C5142 Invasive Breast Cribriform Carcinoma 6 231310 -NCIT:C5160 Breast Mixed Ductal and Lobular Carcinoma 6 231311 -NCIT:C7688 Invasive Breast Ductal Carcinoma and Lobular Carcinoma 7 231312 -NCIT:C6393 Invasive Breast Ductal Carcinoma and Invasive Lobular Carcinoma 8 231313 -NCIT:C7689 Invasive Breast Ductal Carcinoma and Lobular Carcinoma In Situ 8 231314 -NCIT:C7690 Breast Ductal Carcinoma In Situ and Lobular Carcinoma 7 231315 -NCIT:C4195 Breast Ductal Carcinoma In Situ and Lobular Carcinoma In Situ 8 231316 -NCIT:C6939 Breast Ductal Carcinoma In Situ and Invasive Lobular Carcinoma 8 231317 -NCIT:C5163 Breast Adenocarcinoma with Squamous Metaplasia 6 231318 -NCIT:C6987 Breast Ductal Carcinoma with Squamous Metaplasia 7 231319 -NCIT:C5175 Breast Signet Ring Cell Carcinoma 6 231320 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 7 231321 -NCIT:C54691 Invasive Breast Lobular Carcinoma, Signet Ring Variant 7 231322 -NCIT:C53553 Breast Carcinoma by Gene Expression Profile 6 231323 -NCIT:C53554 Luminal A Breast Carcinoma 7 231324 -NCIT:C53555 Luminal B Breast Carcinoma 7 231325 -NCIT:C53556 HER2-Positive Breast Carcinoma 7 231326 -NCIT:C180924 Metastatic HER2-Positive Breast Carcinoma 8 231327 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 231328 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 231329 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 231330 -NCIT:C182108 Recurrent HER2-Positive Breast Carcinoma 8 231331 -NCIT:C182110 Refractory HER2-Positive Breast Carcinoma 8 231332 -NCIT:C186284 Unresectable HER2-Positive Breast Carcinoma 8 231333 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 231334 -NCIT:C53557 Normal Breast-Like Subtype of Breast Carcinoma 7 231335 -NCIT:C53558 Basal-Like Breast Carcinoma 7 231336 -NCIT:C71732 Triple-Negative Breast Carcinoma 7 231337 -NCIT:C153348 Metastatic Triple-Negative Breast Carcinoma 8 231338 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 231339 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 231340 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 231341 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 9 231342 -NCIT:C165491 Unresectable Triple-Negative Breast Carcinoma 8 231343 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 231344 -NCIT:C167076 Refractory Triple-Negative Breast Carcinoma 8 231345 -NCIT:C171014 Recurrent Triple-Negative Breast Carcinoma 8 231346 -NCIT:C181081 Early Stage Triple-Negative Breast Carcinoma 8 231347 -NCIT:C9131 Breast Mucinous Carcinoma 6 231348 -NCIT:C40355 Breast Columnar Cell Mucinous Carcinoma 7 231349 -NCIT:C9134 Breast Papillary Carcinoma 6 231350 -NCIT:C176009 Encapsulated Breast Papillary Carcinoma 7 231351 -NCIT:C176010 Encapsulated Breast Papillary Carcinoma with Invasion 8 231352 -NCIT:C36085 Invasive Breast Papillary Carcinoma 7 231353 -NCIT:C176010 Encapsulated Breast Papillary Carcinoma with Invasion 8 231354 -NCIT:C176012 Invasive Breast Solid Papillary Carcinoma 8 231355 -NCIT:C36084 Invasive Breast Micropapillary Carcinoma 8 231356 -NCIT:C7439 Breast Papillary Ductal Carcinoma In Situ with Invasion 8 231357 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 7 231358 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 8 231359 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 8 231360 -NCIT:C6870 Breast Solid Papillary Carcinoma 7 231361 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 8 231362 -NCIT:C176012 Invasive Breast Solid Papillary Carcinoma 8 231363 -NCIT:C9135 Breast Tubular Carcinoma 6 231364 -NCIT:C7566 Sporadic Breast Carcinoma 5 231365 -NCIT:C7771 Recurrent Breast Carcinoma 5 231366 -NCIT:C175588 Recurrent Breast Adenocarcinoma 6 231367 -NCIT:C153568 Recurrent Breast Acinic Cell Carcinoma 7 231368 -NCIT:C153584 Recurrent Lobular Breast Carcinoma 7 231369 -NCIT:C153587 Recurrent Invasive Breast Carcinoma of No Special Type 7 231370 -NCIT:C153588 Recurrent Breast Paget Disease 7 231371 -NCIT:C168783 Recurrent HER2-Negative Breast Carcinoma 7 231372 -NCIT:C171014 Recurrent Triple-Negative Breast Carcinoma 7 231373 -NCIT:C182108 Recurrent HER2-Positive Breast Carcinoma 7 231374 -NCIT:C185157 Recurrent Hormone Receptor-Positive Breast Carcinoma 7 231375 -NCIT:C8607 Recurrent Breast Inflammatory Carcinoma 7 231376 -NCIT:C190196 Locally Recurrent Breast Carcinoma 6 231377 -NCIT:C8287 Bilateral Breast Carcinoma 5 231378 -NCIT:C40370 Synchronous Bilateral Breast Carcinoma 6 231379 -NCIT:C99390 Contralateral Breast Carcinoma 6 231380 -NCIT:C90513 Breast Cancer by AJCC v6 Stage 5 231381 -NCIT:C3641 Stage 0 Breast Cancer AJCC v6 and v7 6 231382 -NCIT:C176503 Male Breast Carcinoma In Situ 7 231383 -NCIT:C176580 Female Breast Carcinoma In Situ 7 231384 -NCIT:C2924 Breast Ductal Carcinoma In Situ 7 231385 -NCIT:C176005 Breast Ductal Carcinoma In Situ, Comedo Type 8 231386 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 8 231387 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 9 231388 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 9 231389 -NCIT:C5137 Breast Ductal Carcinoma In Situ, Non-Comedo Type 8 231390 -NCIT:C5138 Breast Ductal Carcinoma In Situ, Cribriform Pattern 8 231391 -NCIT:C66933 Breast Ductal Carcinoma In Situ, Solid Type 8 231392 -NCIT:C7949 Breast Ductal Carcinoma In Situ, High Grade 8 231393 -NCIT:C9456 Breast Ductal Carcinoma In Situ, Intermediate Grade 8 231394 -NCIT:C9457 Breast Ductal Carcinoma In Situ, Low Grade 8 231395 -NCIT:C4018 Breast Lobular Carcinoma In Situ 7 231396 -NCIT:C137839 Breast Pleomorphic Lobular Carcinoma In Situ 8 231397 -NCIT:C175949 Breast Classic Lobular Carcinoma In Situ 8 231398 -NCIT:C83170 Breast Classic Lobular Carcinoma In Situ Type A 9 231399 -NCIT:C83171 Breast Classic Lobular Carcinoma In Situ Type B 9 231400 -NCIT:C175950 Breast Florid Lobular Carcinoma In Situ 8 231401 -NCIT:C4195 Breast Ductal Carcinoma In Situ and Lobular Carcinoma In Situ 7 231402 -NCIT:C3995 Stage IV Breast Cancer AJCC v6 and v7 6 231403 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 7 231404 -NCIT:C7767 Stage I Breast Cancer AJCC v6 6 231405 -NCIT:C7768 Stage II Breast Cancer AJCC v6 and v7 6 231406 -NCIT:C5454 Stage IIA Breast Cancer AJCC v6 and v7 7 231407 -NCIT:C5455 Stage IIB Breast Cancer AJCC v6 and v7 7 231408 -NCIT:C7769 Stage III Breast Cancer AJCC v6 6 231409 -NCIT:C27828 Stage IIIC Breast Cancer AJCC v6 7 231410 -NCIT:C91230 Breast Cancer by AJCC v7 Stage 5 231411 -NCIT:C3641 Stage 0 Breast Cancer AJCC v6 and v7 6 231412 -NCIT:C176503 Male Breast Carcinoma In Situ 7 231413 -NCIT:C176580 Female Breast Carcinoma In Situ 7 231414 -NCIT:C2924 Breast Ductal Carcinoma In Situ 7 231415 -NCIT:C176005 Breast Ductal Carcinoma In Situ, Comedo Type 8 231416 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 8 231417 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 9 231418 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 9 231419 -NCIT:C5137 Breast Ductal Carcinoma In Situ, Non-Comedo Type 8 231420 -NCIT:C5138 Breast Ductal Carcinoma In Situ, Cribriform Pattern 8 231421 -NCIT:C66933 Breast Ductal Carcinoma In Situ, Solid Type 8 231422 -NCIT:C7949 Breast Ductal Carcinoma In Situ, High Grade 8 231423 -NCIT:C9456 Breast Ductal Carcinoma In Situ, Intermediate Grade 8 231424 -NCIT:C9457 Breast Ductal Carcinoma In Situ, Low Grade 8 231425 -NCIT:C4018 Breast Lobular Carcinoma In Situ 7 231426 -NCIT:C137839 Breast Pleomorphic Lobular Carcinoma In Situ 8 231427 -NCIT:C175949 Breast Classic Lobular Carcinoma In Situ 8 231428 -NCIT:C83170 Breast Classic Lobular Carcinoma In Situ Type A 9 231429 -NCIT:C83171 Breast Classic Lobular Carcinoma In Situ Type B 9 231430 -NCIT:C175950 Breast Florid Lobular Carcinoma In Situ 8 231431 -NCIT:C4195 Breast Ductal Carcinoma In Situ and Lobular Carcinoma In Situ 7 231432 -NCIT:C3995 Stage IV Breast Cancer AJCC v6 and v7 6 231433 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 7 231434 -NCIT:C7768 Stage II Breast Cancer AJCC v6 and v7 6 231435 -NCIT:C5454 Stage IIA Breast Cancer AJCC v6 and v7 7 231436 -NCIT:C5455 Stage IIB Breast Cancer AJCC v6 and v7 7 231437 -NCIT:C88375 Stage I Breast Cancer AJCC v7 6 231438 -NCIT:C85835 Stage IA Breast Cancer AJCC v7 7 231439 -NCIT:C85836 Stage IB Breast Cancer AJCC v7 7 231440 -NCIT:C88376 Stage III Breast Cancer AJCC v7 6 231441 -NCIT:C7770 Stage IIIA Breast Cancer AJCC v7 7 231442 -NCIT:C7782 Stage IIIB Breast Cancer AJCC v7 7 231443 -NCIT:C9246 Stage IIIB Breast Inflammatory Carcinoma 8 231444 -NCIT:C88377 Stage IIIC Breast Cancer AJCC v7 7 231445 -NCIT:C9245 Invasive Breast Carcinoma 5 231446 -NCIT:C175581 Breast Neuroendocrine Carcinoma 6 231447 -NCIT:C40356 Breast Large Cell Neuroendocrine Carcinoma 7 231448 -NCIT:C6760 Breast Small Cell Neuroendocrine Carcinoma 7 231449 -NCIT:C175604 Breast Polymorphous Adenocarcinoma 6 231450 -NCIT:C175607 Breast Tall Cell Carcinoma with Reversed Polarity 6 231451 -NCIT:C176504 Invasive Male Breast Carcinoma 6 231452 -NCIT:C176579 Invasive Female Breast Carcinoma 6 231453 -NCIT:C27829 Invasive Breast Carcinoma by Histologic Grade 6 231454 -NCIT:C27830 Grade 1 Invasive Breast Carcinoma 7 231455 -NCIT:C27831 Grade 2 Invasive Breast Carcinoma 7 231456 -NCIT:C27832 Grade 3 Invasive Breast Carcinoma 7 231457 -NCIT:C5161 Breast Pleomorphic Carcinoma 8 231458 -NCIT:C36085 Invasive Breast Papillary Carcinoma 6 231459 -NCIT:C176010 Encapsulated Breast Papillary Carcinoma with Invasion 7 231460 -NCIT:C176012 Invasive Breast Solid Papillary Carcinoma 7 231461 -NCIT:C36084 Invasive Breast Micropapillary Carcinoma 7 231462 -NCIT:C7439 Breast Papillary Ductal Carcinoma In Situ with Invasion 7 231463 -NCIT:C4001 Breast Inflammatory Carcinoma 6 231464 -NCIT:C158751 Unresectable Breast Inflammatory Carcinoma 7 231465 -NCIT:C181787 Metastatic Breast Inflammatory Carcinoma 7 231466 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 8 231467 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 8 231468 -NCIT:C9246 Stage IIIB Breast Inflammatory Carcinoma 8 231469 -NCIT:C8607 Recurrent Breast Inflammatory Carcinoma 7 231470 -NCIT:C40347 Breast Mixed Carcinoma 6 231471 -NCIT:C40361 Breast Adenosquamous Carcinoma 7 231472 -NCIT:C40362 Low Grade Breast Adenosquamous Carcinoma 8 231473 -NCIT:C6393 Invasive Breast Ductal Carcinoma and Invasive Lobular Carcinoma 7 231474 -NCIT:C40354 Breast Mucinous Cystadenocarcinoma 6 231475 -NCIT:C40367 Breast Acinic Cell Carcinoma 6 231476 -NCIT:C153568 Recurrent Breast Acinic Cell Carcinoma 7 231477 -NCIT:C40374 Microinvasive Breast Carcinoma 6 231478 -NCIT:C40395 Breast Malignant Myoepithelioma 6 231479 -NCIT:C4189 Breast Secretory Carcinoma 6 231480 -NCIT:C4194 Invasive Breast Carcinoma of No Special Type 6 231481 -NCIT:C153587 Recurrent Invasive Breast Carcinoma of No Special Type 7 231482 -NCIT:C175585 Breast Carcinoma with Neuroendocrine Differentiation 7 231483 -NCIT:C40349 Breast Carcinoma with Osteoclast-Like Stromal Giant Cells 7 231484 -NCIT:C40350 Breast Carcinoma with Choriocarcinomatous Features 7 231485 -NCIT:C40351 Breast Carcinoma with Melanotic Features 7 231486 -NCIT:C40365 Breast Lipid-Rich Carcinoma 7 231487 -NCIT:C40366 Breast Oncocytic Carcinoma 7 231488 -NCIT:C40368 Glycogen-Rich, Clear Cell Breast Carcinoma 7 231489 -NCIT:C40369 Breast Sebaceous Carcinoma 7 231490 -NCIT:C5161 Breast Pleomorphic Carcinoma 7 231491 -NCIT:C66719 Breast Atypical Medullary Carcinoma 7 231492 -NCIT:C6987 Breast Ductal Carcinoma with Squamous Metaplasia 7 231493 -NCIT:C7362 Breast Scirrhous Carcinoma 7 231494 -NCIT:C9119 Breast Medullary Carcinoma 7 231495 -NCIT:C9132 Invasive Breast Carcinoma of No Special Type with Predominant Intraductal Component 7 231496 -NCIT:C5130 Breast Adenoid Cystic Carcinoma 6 231497 -NCIT:C5142 Invasive Breast Cribriform Carcinoma 6 231498 -NCIT:C5164 Breast Metaplastic Carcinoma 6 231499 -NCIT:C40360 Breast Adenocarcinoma with Spindle Cell Metaplasia 7 231500 -NCIT:C40364 Breast Mixed Epithelial/Mesenchymal Metaplastic Carcinoma 7 231501 -NCIT:C47847 Breast Carcinoma with Chondroid Metaplasia 8 231502 -NCIT:C47848 Breast Carcinoma with Osseous Metaplasia 8 231503 -NCIT:C5163 Breast Adenocarcinoma with Squamous Metaplasia 7 231504 -NCIT:C6987 Breast Ductal Carcinoma with Squamous Metaplasia 8 231505 -NCIT:C5166 Breast Mucoepidermoid Carcinoma 6 231506 -NCIT:C5167 High Grade Breast Mucoepidermoid Carcinoma 7 231507 -NCIT:C5168 Low Grade Breast Mucoepidermoid Carcinoma 7 231508 -NCIT:C5175 Breast Signet Ring Cell Carcinoma 6 231509 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 7 231510 -NCIT:C54691 Invasive Breast Lobular Carcinoma, Signet Ring Variant 7 231511 -NCIT:C5177 Breast Squamous Cell Carcinoma 6 231512 -NCIT:C40357 Breast Squamous Cell Carcinoma, Large Cell Keratinizing Variant 7 231513 -NCIT:C40358 Breast Squamous Cell Carcinoma, Spindle Cell Variant 7 231514 -NCIT:C40359 Breast Squamous Cell Carcinoma, Acantholytic Variant 7 231515 -NCIT:C5178 Metastatic Breast Squamous Cell Carcinoma 7 231516 -NCIT:C5457 Invasive Breast Apocrine Carcinoma 6 231517 -NCIT:C7950 Invasive Breast Lobular Carcinoma 6 231518 -NCIT:C157235 Breast Histiocytoid Carcinoma 7 231519 -NCIT:C187405 Invasive Breast Lobular Carcinoma with Extracellular Mucin 7 231520 -NCIT:C54691 Invasive Breast Lobular Carcinoma, Signet Ring Variant 7 231521 -NCIT:C9136 Invasive Breast Lobular Carcinoma with Predominant In Situ Component 7 231522 -NCIT:C97049 Invasive Breast Lobular Carcinoma, Alveolar Variant 7 231523 -NCIT:C97051 Invasive Breast Lobular Carcinoma, Pleomorphic Variant 7 231524 -NCIT:C97052 Invasive Breast Lobular Carcinoma, Solid Variant 7 231525 -NCIT:C97053 Invasive Breast Lobular Carcinoma, Tubulolobular Variant 7 231526 -NCIT:C7951 Breast Paget Disease with Invasive Ductal Carcinoma 6 231527 -NCIT:C9131 Breast Mucinous Carcinoma 6 231528 -NCIT:C40355 Breast Columnar Cell Mucinous Carcinoma 7 231529 -NCIT:C9135 Breast Tubular Carcinoma 6 231530 -NCIT:C94770 Multifocal Breast Carcinoma 5 231531 -NCIT:C94772 Multicentric Breast Carcinoma 5 231532 -NCIT:C94774 Early Stage Breast Carcinoma 5 231533 -NCIT:C181081 Early Stage Triple-Negative Breast Carcinoma 6 231534 -NCIT:C190215 Early Stage HER2-Negative Breast Carcinoma 6 231535 -NCIT:C4878 Lung Carcinoma 4 231536 -NCIT:C136467 Lung Cancer by AJCC v8 Stage 5 231537 -NCIT:C136468 Occult Lung Cancer AJCC v8 6 231538 -NCIT:C136469 Stage 0 Lung Cancer AJCC v8 6 231539 -NCIT:C136470 Stage I Lung Cancer AJCC v8 6 231540 -NCIT:C136471 Stage IA1 Lung Cancer AJCC v8 7 231541 -NCIT:C136472 Stage IA2 Lung Cancer AJCC v8 7 231542 -NCIT:C136473 Stage IA3 Lung Cancer AJCC v8 7 231543 -NCIT:C136474 Stage IB Lung Cancer AJCC v8 7 231544 -NCIT:C136475 Stage II Lung Cancer AJCC v8 6 231545 -NCIT:C136476 Stage IIA Lung Cancer AJCC v8 7 231546 -NCIT:C136477 Stage IIB Lung Cancer AJCC v8 7 231547 -NCIT:C136478 Stage III Lung Cancer AJCC v8 6 231548 -NCIT:C136479 Stage IIIA Lung Cancer AJCC v8 7 231549 -NCIT:C136480 Stage IIIB Lung Cancer AJCC v8 7 231550 -NCIT:C136481 Stage IIIC Lung Cancer AJCC v8 7 231551 -NCIT:C136482 Stage IV Lung Cancer AJCC v8 6 231552 -NCIT:C136483 Stage IVA Lung Cancer AJCC v8 7 231553 -NCIT:C136484 Stage IVB Lung Cancer AJCC v8 7 231554 -NCIT:C141076 Refractory Lung Carcinoma 5 231555 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 6 231556 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 7 231557 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 7 231558 -NCIT:C153081 Refractory Lung Non-Small Cell Carcinoma 6 231559 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 7 231560 -NCIT:C176858 Refractory Lung Non-Squamous Non-Small Cell Carcinoma 7 231561 -NCIT:C179209 Refractory Lung Adenocarcinoma 7 231562 -NCIT:C173331 Refractory Lung Squamous Cell Carcinoma 6 231563 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 7 231564 -NCIT:C142830 Lung Myoepithelial Carcinoma 5 231565 -NCIT:C153202 Metastatic Lung Carcinoma 5 231566 -NCIT:C133503 Lung Carcinoma Metastatic in the Central Nervous System 6 231567 -NCIT:C36304 Lung Carcinoma Metastatic in the Brain 7 231568 -NCIT:C153203 Advanced Lung Carcinoma 6 231569 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 231570 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 7 231571 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 231572 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 231573 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 231574 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 231575 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 8 231576 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 7 231577 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 231578 -NCIT:C180922 Advanced Bronchogenic Carcinoma 7 231579 -NCIT:C153206 Locally Advanced Lung Carcinoma 6 231580 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 7 231581 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 231582 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 231583 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 231584 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 231585 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 231586 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 8 231587 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 7 231588 -NCIT:C156092 Metastatic Lung Squamous Cell Carcinoma 6 231589 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 7 231590 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 231591 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 231592 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 231593 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 7 231594 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 231595 -NCIT:C156094 Metastatic Lung Non-Small Cell Carcinoma 6 231596 -NCIT:C128798 Metastatic Lung Non-Squamous Non-Small Cell Carcinoma 7 231597 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 231598 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 231599 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 231600 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 231601 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 231602 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 231603 -NCIT:C155908 Metastatic Lung Adenocarcinoma 8 231604 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 231605 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 231606 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 8 231607 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 231608 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 231609 -NCIT:C156093 Metastatic Lung Adenosquamous Carcinoma 7 231610 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 8 231611 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 8 231612 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 7 231613 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 231614 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 231615 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 231616 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 7 231617 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 231618 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 231619 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 231620 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 231621 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 231622 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 8 231623 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 7 231624 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 231625 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 231626 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 231627 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 231628 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 8 231629 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 6 231630 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 231631 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 7 231632 -NCIT:C187195 Oligometastatic Lung Carcinoma 6 231633 -NCIT:C36305 Lung Carcinoma Metastatic in the Bone 6 231634 -NCIT:C36306 Lung Carcinoma Metastatic in the Liver 6 231635 -NCIT:C155902 Unresectable Lung Carcinoma 5 231636 -NCIT:C155901 Unresectable Lung Non-Small Cell Carcinoma 6 231637 -NCIT:C162642 Unresectable Lung Non-Squamous Non-Small Cell Carcinoma 7 231638 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 8 231639 -NCIT:C171612 Unresectable Lung Non-Small Cell Squamous Carcinoma 7 231640 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 8 231641 -NCIT:C174510 Unresectable Lung Adenocarcinoma 7 231642 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 6 231643 -NCIT:C162570 Localized Lung Carcinoma 5 231644 -NCIT:C183116 Lung Hyalinizing Clear Cell Carcinoma 5 231645 -NCIT:C188068 Lung Secretory Carcinoma 5 231646 -NCIT:C190952 Resectable Lung Carcinoma 5 231647 -NCIT:C165767 Resectable Lung Non-Small Cell Carcinoma 6 231648 -NCIT:C190954 Resectable Lung Adenocarcinoma 7 231649 -NCIT:C190953 Resectable Lung Squamous Cell Carcinoma 6 231650 -NCIT:C27637 Transplant-Related Lung Carcinoma 5 231651 -NCIT:C27925 Asbestos-Related Lung Carcinoma 5 231652 -NCIT:C2926 Lung Non-Small Cell Carcinoma 5 231653 -NCIT:C118814 Childhood Lung Non-Small Cell Carcinoma 6 231654 -NCIT:C133254 Lung Non-Small Cell Squamous Carcinoma 6 231655 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 7 231656 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 231657 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 231658 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 231659 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 7 231660 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 7 231661 -NCIT:C171612 Unresectable Lung Non-Small Cell Squamous Carcinoma 7 231662 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 8 231663 -NCIT:C45502 Lung Squamous Cell Carcinoma, Papillary Variant 7 231664 -NCIT:C45503 Lung Squamous Cell Carcinoma, Clear Cell Variant 7 231665 -NCIT:C135017 Lung Non-Squamous Non-Small Cell Carcinoma 6 231666 -NCIT:C128797 Recurrent Lung Non-Squamous Non-Small Cell Carcinoma 7 231667 -NCIT:C128798 Metastatic Lung Non-Squamous Non-Small Cell Carcinoma 7 231668 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 231669 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 231670 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 231671 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 231672 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 231673 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 231674 -NCIT:C155908 Metastatic Lung Adenocarcinoma 8 231675 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 231676 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 231677 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 8 231678 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 231679 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 231680 -NCIT:C162642 Unresectable Lung Non-Squamous Non-Small Cell Carcinoma 7 231681 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 8 231682 -NCIT:C176858 Refractory Lung Non-Squamous Non-Small Cell Carcinoma 7 231683 -NCIT:C136491 Lung Non-Small Cell Cancer by AJCC v7 Stage 6 231684 -NCIT:C136490 Lung Adenocarcinoma by AJCC v7 Stage 7 231685 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 8 231686 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 8 231687 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 9 231688 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 9 231689 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 8 231690 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 9 231691 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 9 231692 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 8 231693 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 9 231694 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 9 231695 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 8 231696 -NCIT:C136492 Lung Adenosquamous Carcinoma by AJCC v7 Stage 7 231697 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 8 231698 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 8 231699 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 9 231700 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 9 231701 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 8 231702 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 9 231703 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 9 231704 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 8 231705 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 9 231706 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 9 231707 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 8 231708 -NCIT:C136493 Lung Large Cell Carcinoma by AJCC v7 Stage 7 231709 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 8 231710 -NCIT:C6660 Stage II Lung Large Cell Carcinoma AJCC v7 8 231711 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 9 231712 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 9 231713 -NCIT:C8755 Stage I Lung Large Cell Carcinoma AJCC v7 8 231714 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 9 231715 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 9 231716 -NCIT:C8756 Stage IV Lung Large Cell Carcinoma AJCC v7 8 231717 -NCIT:C9257 Stage III Lung Large Cell Carcinoma AJCC v7 8 231718 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 9 231719 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 9 231720 -NCIT:C4012 Stage IV Lung Non-Small Cell Cancer AJCC v7 7 231721 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 8 231722 -NCIT:C8756 Stage IV Lung Large Cell Carcinoma AJCC v7 8 231723 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 8 231724 -NCIT:C6671 Stage I Lung Non-Small Cell Cancer AJCC v7 7 231725 -NCIT:C5652 Stage IA Lung Non-Small Cell Carcinoma AJCC v7 8 231726 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 9 231727 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 9 231728 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 9 231729 -NCIT:C5653 Stage IB Lung Non-Small Cell Carcinoma AJCC v7 8 231730 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 9 231731 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 9 231732 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 9 231733 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 8 231734 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 9 231735 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 9 231736 -NCIT:C8755 Stage I Lung Large Cell Carcinoma AJCC v7 8 231737 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 9 231738 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 9 231739 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 8 231740 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 9 231741 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 9 231742 -NCIT:C7777 Stage II Lung Non-Small Cell Cancer AJCC v7 7 231743 -NCIT:C5654 Stage IIB Lung Non-Small Cell Carcinoma AJCC v7 8 231744 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 9 231745 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 9 231746 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 9 231747 -NCIT:C5655 Stage IIA Lung Non-Small Cell Carcinoma AJCC v7 8 231748 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 9 231749 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 9 231750 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 9 231751 -NCIT:C6660 Stage II Lung Large Cell Carcinoma AJCC v7 8 231752 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 9 231753 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 9 231754 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 8 231755 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 9 231756 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 9 231757 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 8 231758 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 9 231759 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 9 231760 -NCIT:C7778 Stage III Lung Non-Small Cell Cancer AJCC v7 7 231761 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 8 231762 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 9 231763 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 9 231764 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 8 231765 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 9 231766 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 9 231767 -NCIT:C9102 Stage IIIA Lung Non-Small Cell Cancer AJCC v7 8 231768 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 9 231769 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 9 231770 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 9 231771 -NCIT:C9103 Stage IIIB Lung Non-Small Cell Cancer AJCC v7 8 231772 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 9 231773 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 9 231774 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 9 231775 -NCIT:C9257 Stage III Lung Large Cell Carcinoma AJCC v7 8 231776 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 9 231777 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 9 231778 -NCIT:C9104 Stage 0 Lung Non-Small Cell Cancer AJCC v6 and v7 7 231779 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 8 231780 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 8 231781 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 8 231782 -NCIT:C153081 Refractory Lung Non-Small Cell Carcinoma 6 231783 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 7 231784 -NCIT:C176858 Refractory Lung Non-Squamous Non-Small Cell Carcinoma 7 231785 -NCIT:C179209 Refractory Lung Adenocarcinoma 7 231786 -NCIT:C155901 Unresectable Lung Non-Small Cell Carcinoma 6 231787 -NCIT:C162642 Unresectable Lung Non-Squamous Non-Small Cell Carcinoma 7 231788 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 8 231789 -NCIT:C171612 Unresectable Lung Non-Small Cell Squamous Carcinoma 7 231790 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 8 231791 -NCIT:C174510 Unresectable Lung Adenocarcinoma 7 231792 -NCIT:C156094 Metastatic Lung Non-Small Cell Carcinoma 6 231793 -NCIT:C128798 Metastatic Lung Non-Squamous Non-Small Cell Carcinoma 7 231794 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 231795 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 231796 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 231797 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 231798 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 231799 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 231800 -NCIT:C155908 Metastatic Lung Adenocarcinoma 8 231801 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 231802 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 231803 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 8 231804 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 231805 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 231806 -NCIT:C156093 Metastatic Lung Adenosquamous Carcinoma 7 231807 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 8 231808 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 8 231809 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 7 231810 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 231811 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 231812 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 231813 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 7 231814 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 231815 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 231816 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 231817 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 231818 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 231819 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 8 231820 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 7 231821 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 231822 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 231823 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 231824 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 231825 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 8 231826 -NCIT:C165767 Resectable Lung Non-Small Cell Carcinoma 6 231827 -NCIT:C190954 Resectable Lung Adenocarcinoma 7 231828 -NCIT:C3512 Lung Adenocarcinoma 6 231829 -NCIT:C136486 Lung Adenocarcinoma In Situ 7 231830 -NCIT:C136716 Lung Non-Mucinous Adenocarcinoma In Situ 8 231831 -NCIT:C136717 Lung Mucinous Adenocarcinoma In Situ 8 231832 -NCIT:C136490 Lung Adenocarcinoma by AJCC v7 Stage 7 231833 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 8 231834 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 8 231835 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 9 231836 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 9 231837 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 8 231838 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 9 231839 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 9 231840 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 8 231841 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 9 231842 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 9 231843 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 8 231844 -NCIT:C136709 Invasive Lung Mucinous Adenocarcinoma 7 231845 -NCIT:C136710 Lung Enteric Adenocarcinoma 7 231846 -NCIT:C155908 Metastatic Lung Adenocarcinoma 7 231847 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 8 231848 -NCIT:C176727 Advanced Lung Adenocarcinoma 8 231849 -NCIT:C174510 Unresectable Lung Adenocarcinoma 7 231850 -NCIT:C179209 Refractory Lung Adenocarcinoma 7 231851 -NCIT:C183109 Invasive Lung Non-Mucinous Adenocarcinoma 7 231852 -NCIT:C123160 Lepidic Adenocarcinoma 8 231853 -NCIT:C5649 Lung Acinar Adenocarcinoma 8 231854 -NCIT:C5650 Lung Papillary Adenocarcinoma 8 231855 -NCIT:C128847 Lung Micropapillary Adenocarcinoma 9 231856 -NCIT:C5651 Solid Lung Adenocarcinoma 8 231857 -NCIT:C190954 Resectable Lung Adenocarcinoma 7 231858 -NCIT:C2923 Minimally Invasive Lung Adenocarcinoma 7 231859 -NCIT:C7268 Minimally Invasive Lung Mucinous Adenocarcinoma 8 231860 -NCIT:C7269 Minimally Invasive Lung Non-Mucinous Adenocarcinoma 8 231861 -NCIT:C7270 Minimally Invasive Lung Mixed Non-Mucinous and Mucinous Adenocarcinoma 8 231862 -NCIT:C45509 Lung Fetal Adenocarcinoma 7 231863 -NCIT:C45512 Lung Colloid Adenocarcinoma 7 231864 -NCIT:C6699 Occult Lung Adenocarcinoma 7 231865 -NCIT:C8757 Recurrent Lung Adenocarcinoma 7 231866 -NCIT:C4450 Lung Large Cell Carcinoma 6 231867 -NCIT:C136493 Lung Large Cell Carcinoma by AJCC v7 Stage 7 231868 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 8 231869 -NCIT:C6660 Stage II Lung Large Cell Carcinoma AJCC v7 8 231870 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 9 231871 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 9 231872 -NCIT:C8755 Stage I Lung Large Cell Carcinoma AJCC v7 8 231873 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 9 231874 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 9 231875 -NCIT:C8756 Stage IV Lung Large Cell Carcinoma AJCC v7 8 231876 -NCIT:C9257 Stage III Lung Large Cell Carcinoma AJCC v7 8 231877 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 9 231878 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 9 231879 -NCIT:C4451 Lung Large Cell Carcinoma, Clear Cell Variant 7 231880 -NCIT:C6685 Occult Lung Large Cell Carcinoma 7 231881 -NCIT:C6876 Lung Large Cell Carcinoma with Rhabdoid Phenotype 7 231882 -NCIT:C7266 Lung Basaloid Large Cell Carcinoma 7 231883 -NCIT:C8753 Recurrent Lung Large Cell Carcinoma 7 231884 -NCIT:C45519 Lung Lymphoepithelial Carcinoma 6 231885 -NCIT:C45540 Lung Sarcomatoid Carcinoma 6 231886 -NCIT:C3732 Pulmonary Blastoma 7 231887 -NCIT:C4452 Lung Giant Cell Carcinoma 7 231888 -NCIT:C45541 Lung Spindle Cell Carcinoma 7 231889 -NCIT:C45542 Lung Pleomorphic Carcinoma 7 231890 -NCIT:C45543 Lung Carcinosarcoma 7 231891 -NCIT:C7783 Recurrent Lung Non-Small Cell Carcinoma 6 231892 -NCIT:C128797 Recurrent Lung Non-Squamous Non-Small Cell Carcinoma 7 231893 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 7 231894 -NCIT:C190195 Locally Recurrent Lung Non-Small Cell Carcinoma 7 231895 -NCIT:C8747 Recurrent Lung Adenosquamous Carcinoma 7 231896 -NCIT:C8753 Recurrent Lung Large Cell Carcinoma 7 231897 -NCIT:C8757 Recurrent Lung Adenocarcinoma 7 231898 -NCIT:C9038 Occult Lung Non-Small Cell Carcinoma 6 231899 -NCIT:C6684 Occult Lung Adenosquamous Carcinoma 7 231900 -NCIT:C6685 Occult Lung Large Cell Carcinoma 7 231901 -NCIT:C6699 Occult Lung Adenocarcinoma 7 231902 -NCIT:C9133 Lung Adenosquamous Carcinoma 6 231903 -NCIT:C136492 Lung Adenosquamous Carcinoma by AJCC v7 Stage 7 231904 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 8 231905 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 8 231906 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 9 231907 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 9 231908 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 8 231909 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 9 231910 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 9 231911 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 8 231912 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 9 231913 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 9 231914 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 8 231915 -NCIT:C156093 Metastatic Lung Adenosquamous Carcinoma 7 231916 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 8 231917 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 8 231918 -NCIT:C6684 Occult Lung Adenosquamous Carcinoma 7 231919 -NCIT:C8747 Recurrent Lung Adenosquamous Carcinoma 7 231920 -NCIT:C3493 Lung Squamous Cell Carcinoma 5 231921 -NCIT:C133254 Lung Non-Small Cell Squamous Carcinoma 6 231922 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 7 231923 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 231924 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 231925 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 231926 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 7 231927 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 7 231928 -NCIT:C171612 Unresectable Lung Non-Small Cell Squamous Carcinoma 7 231929 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 8 231930 -NCIT:C45502 Lung Squamous Cell Carcinoma, Papillary Variant 7 231931 -NCIT:C45503 Lung Squamous Cell Carcinoma, Clear Cell Variant 7 231932 -NCIT:C136494 Lung Squamous Cell Carcinoma by AJCC v7 Stage 6 231933 -NCIT:C8763 Stage 0 Lung Squamous Cell Carcinoma AJCC v6 and v7 7 231934 -NCIT:C8764 Stage I Lung Squamous Cell Carcinoma AJCC v7 7 231935 -NCIT:C6687 Stage IA Lung Squamous Cell Carcinoma AJCC v7 8 231936 -NCIT:C6692 Stage IB Lung Squamous Cell Carcinoma AJCC v7 8 231937 -NCIT:C8765 Stage II Lung Squamous Cell Carcinoma AJCC v7 7 231938 -NCIT:C6688 Stage IIA Lung Squamous Cell Carcinoma AJCC v7 8 231939 -NCIT:C6691 Stage IIB Lung Squamous Cell Carcinoma AJCC v7 8 231940 -NCIT:C8766 Stage III Lung Squamous Cell Carcinoma AJCC v7 7 231941 -NCIT:C6689 Stage IIIA Lung Squamous Cell Carcinoma AJCC v7 8 231942 -NCIT:C6690 Stage IIIB Lung Squamous Cell Carcinoma AJCC v7 8 231943 -NCIT:C8767 Stage IV Lung Squamous Cell Carcinoma AJCC v7 7 231944 -NCIT:C136713 Lung Keratinizing Squamous Cell Carcinoma 6 231945 -NCIT:C136714 Lung Non-Keratinizing Squamous Cell Carcinoma 6 231946 -NCIT:C136719 Lung Squamous Cell Carcinoma In Situ 6 231947 -NCIT:C8763 Stage 0 Lung Squamous Cell Carcinoma AJCC v6 and v7 7 231948 -NCIT:C156092 Metastatic Lung Squamous Cell Carcinoma 6 231949 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 7 231950 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 231951 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 231952 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 231953 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 7 231954 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 231955 -NCIT:C173331 Refractory Lung Squamous Cell Carcinoma 6 231956 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 7 231957 -NCIT:C190953 Resectable Lung Squamous Cell Carcinoma 6 231958 -NCIT:C45504 Lung Squamous Cell Carcinoma, Small Cell Variant 6 231959 -NCIT:C45507 Lung Basaloid Squamous Cell Carcinoma 6 231960 -NCIT:C5014 Recurrent Lung Squamous Cell Carcinoma 6 231961 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 7 231962 -NCIT:C6686 Occult Lung Squamous Cell Carcinoma 6 231963 -NCIT:C35875 Bronchogenic Carcinoma 5 231964 -NCIT:C180922 Advanced Bronchogenic Carcinoma 6 231965 -NCIT:C180923 Recurrent Bronchogenic Carcinoma 6 231966 -NCIT:C7779 Superior Sulcus Lung Carcinoma 6 231967 -NCIT:C45544 Lung Mucoepidermoid Carcinoma 5 231968 -NCIT:C45545 Lung Epithelial-Myoepithelial Carcinoma 5 231969 -NCIT:C45569 Lung Neuroendocrine Carcinoma 5 231970 -NCIT:C4917 Lung Small Cell Carcinoma 6 231971 -NCIT:C118815 Childhood Lung Small Cell Carcinoma 7 231972 -NCIT:C136496 Lung Small Cell Carcinoma by AJCC v7 Stage 7 231973 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 8 231974 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 9 231975 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 9 231976 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 8 231977 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 9 231978 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 9 231979 -NCIT:C6679 Stage III Lung Small Cell Carcinoma AJCC v7 8 231980 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 9 231981 -NCIT:C6681 Stage IIIB Lung Small Cell Carcinoma AJCC v7 9 231982 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 10 231983 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 10 231984 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 8 231985 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 7 231986 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 8 231987 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 8 231988 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 7 231989 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 231990 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 231991 -NCIT:C158495 Platinum-Sensitive Lung Small Cell Carcinoma 7 231992 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 7 231993 -NCIT:C188753 Lung Small Cell Carcinoma Neuroendocrine Subtype 7 231994 -NCIT:C188754 Lung Small Cell Carcinoma, Neuroendocrine-High Subtype 8 231995 -NCIT:C188755 Lung Small Cell Carcinoma, Neuroendocrine-Low Subtype 8 231996 -NCIT:C188756 Lung Small Cell Carcinoma Molecular Subtypes 7 231997 -NCIT:C188761 Lung Small Cell Carcinoma, A Subtype 8 231998 -NCIT:C188762 Lung Small Cell Carcinoma, N Subtype 8 231999 -NCIT:C188763 Lung Small Cell Carcinoma, P Subtype 8 232000 -NCIT:C188765 Lung Small Cell Carcinoma, I Subtype 8 232001 -NCIT:C188766 Lung Small Cell Carcinoma, Y Subtype 8 232002 -NCIT:C6683 Occult Lung Small Cell Carcinoma 7 232003 -NCIT:C7853 Limited Stage Lung Small Cell Carcinoma 7 232004 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 8 232005 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 8 232006 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 9 232007 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 9 232008 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 8 232009 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 9 232010 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 9 232011 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 8 232012 -NCIT:C9049 Extensive Stage Lung Small Cell Carcinoma 7 232013 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 8 232014 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 8 232015 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 8 232016 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 8 232017 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 7 232018 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 8 232019 -NCIT:C9137 Combined Lung Small Cell Carcinoma 7 232020 -NCIT:C9379 Combined Lung Small Cell Carcinoma and Lung Adenocarcinoma 8 232021 -NCIT:C9423 Combined Lung Small Cell and Squamous Cell Carcinoma 8 232022 -NCIT:C5672 Lung Large Cell Neuroendocrine Carcinoma 6 232023 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 7 232024 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 232025 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 232026 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 7 232027 -NCIT:C7267 Combined Lung Large Cell Neuroendocrine Carcinoma 7 232028 -NCIT:C7591 Combined Lung Carcinoma 6 232029 -NCIT:C7267 Combined Lung Large Cell Neuroendocrine Carcinoma 7 232030 -NCIT:C9137 Combined Lung Small Cell Carcinoma 7 232031 -NCIT:C9379 Combined Lung Small Cell Carcinoma and Lung Adenocarcinoma 8 232032 -NCIT:C9423 Combined Lung Small Cell and Squamous Cell Carcinoma 8 232033 -NCIT:C5641 Occult Lung Carcinoma 5 232034 -NCIT:C136468 Occult Lung Cancer AJCC v8 6 232035 -NCIT:C6683 Occult Lung Small Cell Carcinoma 6 232036 -NCIT:C6686 Occult Lung Squamous Cell Carcinoma 6 232037 -NCIT:C9038 Occult Lung Non-Small Cell Carcinoma 6 232038 -NCIT:C6684 Occult Lung Adenosquamous Carcinoma 7 232039 -NCIT:C6685 Occult Lung Large Cell Carcinoma 7 232040 -NCIT:C6699 Occult Lung Adenocarcinoma 7 232041 -NCIT:C5666 Lung Adenoid Cystic Carcinoma 5 232042 -NCIT:C7454 Lung Hilum Carcinoma 5 232043 -NCIT:C8953 Recurrent Lung Carcinoma 5 232044 -NCIT:C180923 Recurrent Bronchogenic Carcinoma 6 232045 -NCIT:C5014 Recurrent Lung Squamous Cell Carcinoma 6 232046 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 7 232047 -NCIT:C7783 Recurrent Lung Non-Small Cell Carcinoma 6 232048 -NCIT:C128797 Recurrent Lung Non-Squamous Non-Small Cell Carcinoma 7 232049 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 7 232050 -NCIT:C190195 Locally Recurrent Lung Non-Small Cell Carcinoma 7 232051 -NCIT:C8747 Recurrent Lung Adenosquamous Carcinoma 7 232052 -NCIT:C8753 Recurrent Lung Large Cell Carcinoma 7 232053 -NCIT:C8757 Recurrent Lung Adenocarcinoma 7 232054 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 6 232055 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 7 232056 -NCIT:C90519 Lung Cancer by AJCC v6 Stage 5 232057 -NCIT:C27467 Stage 0 Lung Cancer AJCC v6 and v7 6 232058 -NCIT:C9104 Stage 0 Lung Non-Small Cell Cancer AJCC v6 and v7 7 232059 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 8 232060 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 8 232061 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 8 232062 -NCIT:C8772 Stage I Lung Cancer AJCC v6 6 232063 -NCIT:C8773 Stage III Lung Cancer AJCC v6 6 232064 -NCIT:C8774 Stage IV Lung Cancer AJCC v6 6 232065 -NCIT:C8954 Stage II Lung Cancer AJCC v6 6 232066 -NCIT:C91232 Lung Cancer by AJCC v7 Stage 5 232067 -NCIT:C136491 Lung Non-Small Cell Cancer by AJCC v7 Stage 6 232068 -NCIT:C136490 Lung Adenocarcinoma by AJCC v7 Stage 7 232069 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 8 232070 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 8 232071 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 9 232072 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 9 232073 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 8 232074 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 9 232075 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 9 232076 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 8 232077 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 9 232078 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 9 232079 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 8 232080 -NCIT:C136492 Lung Adenosquamous Carcinoma by AJCC v7 Stage 7 232081 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 8 232082 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 8 232083 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 9 232084 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 9 232085 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 8 232086 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 9 232087 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 9 232088 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 8 232089 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 9 232090 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 9 232091 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 8 232092 -NCIT:C136493 Lung Large Cell Carcinoma by AJCC v7 Stage 7 232093 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 8 232094 -NCIT:C6660 Stage II Lung Large Cell Carcinoma AJCC v7 8 232095 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 9 232096 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 9 232097 -NCIT:C8755 Stage I Lung Large Cell Carcinoma AJCC v7 8 232098 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 9 232099 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 9 232100 -NCIT:C8756 Stage IV Lung Large Cell Carcinoma AJCC v7 8 232101 -NCIT:C9257 Stage III Lung Large Cell Carcinoma AJCC v7 8 232102 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 9 232103 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 9 232104 -NCIT:C4012 Stage IV Lung Non-Small Cell Cancer AJCC v7 7 232105 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 8 232106 -NCIT:C8756 Stage IV Lung Large Cell Carcinoma AJCC v7 8 232107 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 8 232108 -NCIT:C6671 Stage I Lung Non-Small Cell Cancer AJCC v7 7 232109 -NCIT:C5652 Stage IA Lung Non-Small Cell Carcinoma AJCC v7 8 232110 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 9 232111 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 9 232112 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 9 232113 -NCIT:C5653 Stage IB Lung Non-Small Cell Carcinoma AJCC v7 8 232114 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 9 232115 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 9 232116 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 9 232117 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 8 232118 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 9 232119 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 9 232120 -NCIT:C8755 Stage I Lung Large Cell Carcinoma AJCC v7 8 232121 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 9 232122 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 9 232123 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 8 232124 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 9 232125 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 9 232126 -NCIT:C7777 Stage II Lung Non-Small Cell Cancer AJCC v7 7 232127 -NCIT:C5654 Stage IIB Lung Non-Small Cell Carcinoma AJCC v7 8 232128 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 9 232129 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 9 232130 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 9 232131 -NCIT:C5655 Stage IIA Lung Non-Small Cell Carcinoma AJCC v7 8 232132 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 9 232133 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 9 232134 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 9 232135 -NCIT:C6660 Stage II Lung Large Cell Carcinoma AJCC v7 8 232136 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 9 232137 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 9 232138 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 8 232139 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 9 232140 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 9 232141 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 8 232142 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 9 232143 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 9 232144 -NCIT:C7778 Stage III Lung Non-Small Cell Cancer AJCC v7 7 232145 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 8 232146 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 9 232147 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 9 232148 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 8 232149 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 9 232150 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 9 232151 -NCIT:C9102 Stage IIIA Lung Non-Small Cell Cancer AJCC v7 8 232152 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 9 232153 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 9 232154 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 9 232155 -NCIT:C9103 Stage IIIB Lung Non-Small Cell Cancer AJCC v7 8 232156 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 9 232157 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 9 232158 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 9 232159 -NCIT:C9257 Stage III Lung Large Cell Carcinoma AJCC v7 8 232160 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 9 232161 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 9 232162 -NCIT:C9104 Stage 0 Lung Non-Small Cell Cancer AJCC v6 and v7 7 232163 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 8 232164 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 8 232165 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 8 232166 -NCIT:C136494 Lung Squamous Cell Carcinoma by AJCC v7 Stage 6 232167 -NCIT:C8763 Stage 0 Lung Squamous Cell Carcinoma AJCC v6 and v7 7 232168 -NCIT:C8764 Stage I Lung Squamous Cell Carcinoma AJCC v7 7 232169 -NCIT:C6687 Stage IA Lung Squamous Cell Carcinoma AJCC v7 8 232170 -NCIT:C6692 Stage IB Lung Squamous Cell Carcinoma AJCC v7 8 232171 -NCIT:C8765 Stage II Lung Squamous Cell Carcinoma AJCC v7 7 232172 -NCIT:C6688 Stage IIA Lung Squamous Cell Carcinoma AJCC v7 8 232173 -NCIT:C6691 Stage IIB Lung Squamous Cell Carcinoma AJCC v7 8 232174 -NCIT:C8766 Stage III Lung Squamous Cell Carcinoma AJCC v7 7 232175 -NCIT:C6689 Stage IIIA Lung Squamous Cell Carcinoma AJCC v7 8 232176 -NCIT:C6690 Stage IIIB Lung Squamous Cell Carcinoma AJCC v7 8 232177 -NCIT:C8767 Stage IV Lung Squamous Cell Carcinoma AJCC v7 7 232178 -NCIT:C136496 Lung Small Cell Carcinoma by AJCC v7 Stage 6 232179 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 7 232180 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 8 232181 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 8 232182 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 7 232183 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 8 232184 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 8 232185 -NCIT:C6679 Stage III Lung Small Cell Carcinoma AJCC v7 7 232186 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 8 232187 -NCIT:C6681 Stage IIIB Lung Small Cell Carcinoma AJCC v7 8 232188 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 9 232189 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 9 232190 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 7 232191 -NCIT:C27467 Stage 0 Lung Cancer AJCC v6 and v7 6 232192 -NCIT:C9104 Stage 0 Lung Non-Small Cell Cancer AJCC v6 and v7 7 232193 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 8 232194 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 8 232195 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 8 232196 -NCIT:C88888 Stage I Lung Cancer AJCC v7 6 232197 -NCIT:C5642 Stage IA Lung Cancer AJCC v7 7 232198 -NCIT:C5652 Stage IA Lung Non-Small Cell Carcinoma AJCC v7 8 232199 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 9 232200 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 9 232201 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 9 232202 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 8 232203 -NCIT:C6687 Stage IA Lung Squamous Cell Carcinoma AJCC v7 8 232204 -NCIT:C5643 Stage IB Lung Cancer AJCC v7 7 232205 -NCIT:C5653 Stage IB Lung Non-Small Cell Carcinoma AJCC v7 8 232206 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 9 232207 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 9 232208 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 9 232209 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 8 232210 -NCIT:C6692 Stage IB Lung Squamous Cell Carcinoma AJCC v7 8 232211 -NCIT:C6671 Stage I Lung Non-Small Cell Cancer AJCC v7 7 232212 -NCIT:C5652 Stage IA Lung Non-Small Cell Carcinoma AJCC v7 8 232213 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 9 232214 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 9 232215 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 9 232216 -NCIT:C5653 Stage IB Lung Non-Small Cell Carcinoma AJCC v7 8 232217 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 9 232218 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 9 232219 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 9 232220 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 8 232221 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 9 232222 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 9 232223 -NCIT:C8755 Stage I Lung Large Cell Carcinoma AJCC v7 8 232224 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 9 232225 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 9 232226 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 8 232227 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 9 232228 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 9 232229 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 7 232230 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 8 232231 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 8 232232 -NCIT:C8764 Stage I Lung Squamous Cell Carcinoma AJCC v7 7 232233 -NCIT:C6687 Stage IA Lung Squamous Cell Carcinoma AJCC v7 8 232234 -NCIT:C6692 Stage IB Lung Squamous Cell Carcinoma AJCC v7 8 232235 -NCIT:C88889 Stage II Lung Cancer AJCC v7 6 232236 -NCIT:C5644 Stage IIA Lung Cancer AJCC v7 7 232237 -NCIT:C5655 Stage IIA Lung Non-Small Cell Carcinoma AJCC v7 8 232238 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 9 232239 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 9 232240 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 9 232241 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 8 232242 -NCIT:C6688 Stage IIA Lung Squamous Cell Carcinoma AJCC v7 8 232243 -NCIT:C5645 Stage IIB Lung Cancer AJCC v7 7 232244 -NCIT:C5654 Stage IIB Lung Non-Small Cell Carcinoma AJCC v7 8 232245 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 9 232246 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 9 232247 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 9 232248 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 8 232249 -NCIT:C6691 Stage IIB Lung Squamous Cell Carcinoma AJCC v7 8 232250 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 7 232251 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 8 232252 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 8 232253 -NCIT:C7777 Stage II Lung Non-Small Cell Cancer AJCC v7 7 232254 -NCIT:C5654 Stage IIB Lung Non-Small Cell Carcinoma AJCC v7 8 232255 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 9 232256 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 9 232257 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 9 232258 -NCIT:C5655 Stage IIA Lung Non-Small Cell Carcinoma AJCC v7 8 232259 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 9 232260 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 9 232261 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 9 232262 -NCIT:C6660 Stage II Lung Large Cell Carcinoma AJCC v7 8 232263 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 9 232264 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 9 232265 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 8 232266 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 9 232267 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 9 232268 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 8 232269 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 9 232270 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 9 232271 -NCIT:C8765 Stage II Lung Squamous Cell Carcinoma AJCC v7 7 232272 -NCIT:C6688 Stage IIA Lung Squamous Cell Carcinoma AJCC v7 8 232273 -NCIT:C6691 Stage IIB Lung Squamous Cell Carcinoma AJCC v7 8 232274 -NCIT:C88890 Stage III Lung Cancer AJCC v7 6 232275 -NCIT:C5646 Stage IIIA Lung Cancer AJCC v7 7 232276 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 8 232277 -NCIT:C6689 Stage IIIA Lung Squamous Cell Carcinoma AJCC v7 8 232278 -NCIT:C9102 Stage IIIA Lung Non-Small Cell Cancer AJCC v7 8 232279 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 9 232280 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 9 232281 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 9 232282 -NCIT:C5647 Stage IIIB Lung Cancer AJCC v7 7 232283 -NCIT:C6681 Stage IIIB Lung Small Cell Carcinoma AJCC v7 8 232284 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 9 232285 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 9 232286 -NCIT:C6690 Stage IIIB Lung Squamous Cell Carcinoma AJCC v7 8 232287 -NCIT:C9103 Stage IIIB Lung Non-Small Cell Cancer AJCC v7 8 232288 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 9 232289 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 9 232290 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 9 232291 -NCIT:C6679 Stage III Lung Small Cell Carcinoma AJCC v7 7 232292 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 8 232293 -NCIT:C6681 Stage IIIB Lung Small Cell Carcinoma AJCC v7 8 232294 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 9 232295 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 9 232296 -NCIT:C7778 Stage III Lung Non-Small Cell Cancer AJCC v7 7 232297 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 8 232298 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 9 232299 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 9 232300 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 8 232301 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 9 232302 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 9 232303 -NCIT:C9102 Stage IIIA Lung Non-Small Cell Cancer AJCC v7 8 232304 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 9 232305 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 9 232306 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 9 232307 -NCIT:C9103 Stage IIIB Lung Non-Small Cell Cancer AJCC v7 8 232308 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 9 232309 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 9 232310 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 9 232311 -NCIT:C9257 Stage III Lung Large Cell Carcinoma AJCC v7 8 232312 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 9 232313 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 9 232314 -NCIT:C8766 Stage III Lung Squamous Cell Carcinoma AJCC v7 7 232315 -NCIT:C6689 Stage IIIA Lung Squamous Cell Carcinoma AJCC v7 8 232316 -NCIT:C6690 Stage IIIB Lung Squamous Cell Carcinoma AJCC v7 8 232317 -NCIT:C88891 Stage IV Lung Cancer AJCC v7 6 232318 -NCIT:C4012 Stage IV Lung Non-Small Cell Cancer AJCC v7 7 232319 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 8 232320 -NCIT:C8756 Stage IV Lung Large Cell Carcinoma AJCC v7 8 232321 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 8 232322 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 7 232323 -NCIT:C8767 Stage IV Lung Squamous Cell Carcinoma AJCC v7 7 232324 -NCIT:C4914 Skin Carcinoma 4 232325 -NCIT:C157324 Unresectable Skin Carcinoma 5 232326 -NCIT:C157320 Unresectable Skin Squamous Cell Carcinoma 6 232327 -NCIT:C157331 Unresectable Skin Basal Cell Carcinoma 6 232328 -NCIT:C162786 Unresectable Merkel Cell Carcinoma 6 232329 -NCIT:C170465 Resectable Skin Carcinoma 5 232330 -NCIT:C170464 Resectable Skin Squamous Cell Carcinoma 6 232331 -NCIT:C162943 Resectable Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 232332 -NCIT:C2921 Skin Basal Cell Carcinoma 5 232333 -NCIT:C157331 Unresectable Skin Basal Cell Carcinoma 6 232334 -NCIT:C181159 Eyelid Basal Cell Carcinoma 6 232335 -NCIT:C27182 Skin Sclerosing/Morphoeic Basal Cell Carcinoma 6 232336 -NCIT:C27535 Skin Adenoid Basal Cell Carcinoma 6 232337 -NCIT:C27536 Skin Clear Cell Basal Cell Carcinoma 6 232338 -NCIT:C27537 Skin Cystic Basal Cell Carcinoma 6 232339 -NCIT:C27539 Skin Infiltrating Basal Cell Carcinoma 6 232340 -NCIT:C27540 Skin Infundibulocystic Basal Cell Carcinoma 6 232341 -NCIT:C27541 Skin Micronodular Basal Cell Carcinoma 6 232342 -NCIT:C2922 Skin Basosquamous Cell Carcinoma 6 232343 -NCIT:C38109 Skin Basal Cell Carcinoma with Adnexal Differentiation 6 232344 -NCIT:C27538 Skin Follicular Basal Cell Carcinoma 7 232345 -NCIT:C4346 Skin Basal Cell Carcinoma with Sebaceous Differentiation 7 232346 -NCIT:C38110 Skin Signet Ring Cell Basal Cell Carcinoma 6 232347 -NCIT:C38111 Skin Basal Cell Carcinoma with Sarcomatoid Differentiation 6 232348 -NCIT:C39961 Penile Basal Cell Carcinoma 6 232349 -NCIT:C4109 Skin Fibroepithelial Basal Cell Carcinoma 6 232350 -NCIT:C54665 Skin Keratotic Basal Cell Carcinoma 6 232351 -NCIT:C6082 External Ear Basal Cell Carcinoma 6 232352 -NCIT:C62282 Skin Nodular Basal Cell Carcinoma 6 232353 -NCIT:C5568 Skin Nodulo-Ulcerative Basal Cell Carcinoma 7 232354 -NCIT:C5616 Skin Nodular Solid Basal Cell Carcinoma 7 232355 -NCIT:C62284 Superficial Basal Cell Carcinoma 6 232356 -NCIT:C4108 Superficial Multifocal Basal Cell Carcinoma 7 232357 -NCIT:C6381 Vulvar Basal Cell Carcinoma 6 232358 -NCIT:C6386 Scrotal Basal Cell Carcinoma 6 232359 -NCIT:C66903 Skin Metatypical Carcinoma 6 232360 -NCIT:C7473 Anal Margin Basal Cell Carcinoma 6 232361 -NCIT:C7585 Skin Adamantinoid Basal Cell Carcinoma 6 232362 -NCIT:C8014 Lip Basal Cell Carcinoma 6 232363 -NCIT:C5893 Stage 0 Lip Basal Cell Carcinoma AJCC v6 and v7 7 232364 -NCIT:C8197 Stage I Lip Basal Cell Carcinoma 7 232365 -NCIT:C8201 Stage II Lip Basal Cell Carcinoma 7 232366 -NCIT:C8205 Stage III Lip Basal Cell Carcinoma 7 232367 -NCIT:C8209 Stage IV Lip Basal Cell Carcinoma 7 232368 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 8 232369 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 8 232370 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 8 232371 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 7 232372 -NCIT:C9359 Skin Pigmented Basal Cell Carcinoma 6 232373 -NCIT:C3640 Stage 0 Skin Cancer 5 232374 -NCIT:C2906 Skin Squamous Cell Carcinoma In Situ 6 232375 -NCIT:C62571 Bowen Disease of the Skin 7 232376 -NCIT:C5893 Stage 0 Lip Basal Cell Carcinoma AJCC v6 and v7 6 232377 -NCIT:C3775 Adnexal Carcinoma 5 232378 -NCIT:C167341 Adnexal Adenocarcinoma, Not Otherwise Specified 6 232379 -NCIT:C167366 Adnexal Cribriform Carcinoma 6 232380 -NCIT:C167368 Adnexal Secretory Carcinoma 6 232381 -NCIT:C167369 Signet Ring Cell/Histiocytoid Carcinoma 6 232382 -NCIT:C167381 Trichoblastic Carcinoma 6 232383 -NCIT:C40310 Sebaceous Carcinoma 6 232384 -NCIT:C160978 Head and Neck Sebaceous Carcinoma 7 232385 -NCIT:C173648 Salivary Gland Sebaceous Carcinoma 8 232386 -NCIT:C40369 Breast Sebaceous Carcinoma 7 232387 -NCIT:C43340 Eye Sebaceous Carcinoma 7 232388 -NCIT:C134831 Eyelid Sebaceous Gland Carcinoma 8 232389 -NCIT:C174404 Conjunctival Sebaceous Carcinoma 8 232390 -NCIT:C43341 Extraocular Cutaneous Sebaceous Carcinoma 7 232391 -NCIT:C40309 Vulvar Sebaceous Carcinoma 8 232392 -NCIT:C4114 Pilomatrical Carcinoma 6 232393 -NCIT:C43326 Trichilemmal Carcinoma 6 232394 -NCIT:C6938 Sweat Gland Carcinoma 6 232395 -NCIT:C128164 Vulvar Adenocarcinoma of Sweat Gland Origin 7 232396 -NCIT:C4027 Vulvar Paget Disease 8 232397 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 8 232398 -NCIT:C40306 Vulvar Porocarcinoma 9 232399 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 8 232400 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 8 232401 -NCIT:C167344 Spiradenocylindrocarcinoma 7 232402 -NCIT:C167364 Endocrine Mucin-Producing Sweat Gland Carcinoma 7 232403 -NCIT:C167365 Syringocystadenocarcinoma Papilliferum 7 232404 -NCIT:C27255 Eccrine Carcinoma 7 232405 -NCIT:C27254 Papillary Eccrine Carcinoma 8 232406 -NCIT:C27534 Digital Papillary Adenocarcinoma 9 232407 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 8 232408 -NCIT:C40306 Vulvar Porocarcinoma 9 232409 -NCIT:C43345 Ductal Eccrine Adenocarcinoma 8 232410 -NCIT:C43346 Ductal Eccrine Carcinoma with Spindle Cell Elements 9 232411 -NCIT:C43347 Squamoid Eccrine Ductal Carcinoma 9 232412 -NCIT:C43349 Ductal Eccrine Carcinoma with Abundant Fibromyxoid Stroma 9 232413 -NCIT:C5560 Porocarcinoma 8 232414 -NCIT:C40306 Vulvar Porocarcinoma 9 232415 -NCIT:C43354 Porocarcinoma In Situ 9 232416 -NCIT:C27533 Primary Cutaneous Mucinous Carcinoma 7 232417 -NCIT:C3682 Sweat Gland Tubular Carcinoma 7 232418 -NCIT:C4169 Apocrine Carcinoma 7 232419 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 8 232420 -NCIT:C4176 Ceruminous Adenocarcinoma 8 232421 -NCIT:C5141 Breast Apocrine Carcinoma 8 232422 -NCIT:C5140 Breast Apocrine Carcinoma In Situ 9 232423 -NCIT:C5457 Invasive Breast Apocrine Carcinoma 9 232424 -NCIT:C43344 Cylindrocarcinoma 7 232425 -NCIT:C4471 Adenoid Cystic Skin Carcinoma 7 232426 -NCIT:C4472 Mucoepidermoid Skin Carcinoma 7 232427 -NCIT:C5117 Spiradenocarcinoma 7 232428 -NCIT:C5180 Malignant Breast Spiradenoma 8 232429 -NCIT:C54664 Hidradenocarcinoma 7 232430 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 8 232431 -NCIT:C7581 Microcystic Adnexal Carcinoma 7 232432 -NCIT:C4819 Skin Squamous Cell Carcinoma 5 232433 -NCIT:C133252 Cutaneous Squamous Cell Carcinoma of the Head and Neck 6 232434 -NCIT:C133253 Cutaneous Squamous Cell Carcinoma of the Head and Neck by AJCC v8 Stage 7 232435 -NCIT:C133255 Stage 0 Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 232436 -NCIT:C133256 Stage I Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 232437 -NCIT:C133257 Stage II Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 232438 -NCIT:C133258 Stage III Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 232439 -NCIT:C133259 Stage IV Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 232440 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 232441 -NCIT:C162943 Resectable Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 232442 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 232443 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 232444 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 232445 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 232446 -NCIT:C6083 External Ear Squamous Cell Carcinoma 7 232447 -NCIT:C143012 Recurrent Skin Squamous Cell Carcinoma 6 232448 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 232449 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 7 232450 -NCIT:C165737 Locally Recurrent Skin Squamous Cell Carcinoma 7 232451 -NCIT:C143013 Metastatic Skin Squamous Cell Carcinoma 6 232452 -NCIT:C153182 Locally Advanced Skin Squamous Cell Carcinoma 7 232453 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 232454 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 7 232455 -NCIT:C168542 Advanced Skin Squamous Cell Carcinoma 7 232456 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 232457 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 232458 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 232459 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 232460 -NCIT:C157320 Unresectable Skin Squamous Cell Carcinoma 6 232461 -NCIT:C160666 Hematologic Malignancy-Associated Skin Squamous Cell Carcinoma 6 232462 -NCIT:C165465 Skin Verrucous Carcinoma 6 232463 -NCIT:C6811 Plantar Verrucous Carcinoma 7 232464 -NCIT:C165466 Skin Squamous Cell Carcinoma with Osteoclast-Like Giant Cells 6 232465 -NCIT:C165467 Skin Lymphoepithelioma-Like Carcinoma 6 232466 -NCIT:C165468 Skin Squamous Cell Carcinoma with Sarcomatoid Differentiation 6 232467 -NCIT:C165735 Refractory Skin Squamous Cell Carcinoma 6 232468 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 232469 -NCIT:C170464 Resectable Skin Squamous Cell Carcinoma 6 232470 -NCIT:C162943 Resectable Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 232471 -NCIT:C27542 Skin Pseudovascular Squamous Cell Carcinoma 6 232472 -NCIT:C27543 Skin Basaloid Carcinoma 6 232473 -NCIT:C27636 Transplant-Related Skin Squamous Cell Carcinoma 6 232474 -NCIT:C27918 Old Burn Scar-Related Skin Squamous Cell Carcinoma 6 232475 -NCIT:C27921 Solar Radiation-Related Skin Squamous Cell Carcinoma 6 232476 -NCIT:C2906 Skin Squamous Cell Carcinoma In Situ 6 232477 -NCIT:C62571 Bowen Disease of the Skin 7 232478 -NCIT:C3146 Keratoacanthoma 6 232479 -NCIT:C128167 Vulvar Keratoacanthoma 7 232480 -NCIT:C174390 Conjunctival Keratoacanthoma 7 232481 -NCIT:C4459 Skin Clear Cell Squamous Cell Carcinoma 6 232482 -NCIT:C4460 Skin Acantholytic Squamous Cell Carcinoma 6 232483 -NCIT:C4643 Scrotal Squamous Cell Carcinoma 6 232484 -NCIT:C4666 Skin Spindle Cell Squamous Cell Carcinoma 6 232485 -NCIT:C6925 Anal Margin Squamous Cell Carcinoma 6 232486 -NCIT:C54250 Skin Adenosquamous Carcinoma 5 232487 -NCIT:C5581 Stage I Skin Cancer 5 232488 -NCIT:C8197 Stage I Lip Basal Cell Carcinoma 6 232489 -NCIT:C5582 Stage II Skin Cancer 5 232490 -NCIT:C8201 Stage II Lip Basal Cell Carcinoma 6 232491 -NCIT:C5583 Stage III Skin Cancer 5 232492 -NCIT:C8205 Stage III Lip Basal Cell Carcinoma 6 232493 -NCIT:C5584 Stage IV Skin Cancer 5 232494 -NCIT:C8209 Stage IV Lip Basal Cell Carcinoma 6 232495 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 7 232496 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 7 232497 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 7 232498 -NCIT:C6389 Scrotal Carcinoma 5 232499 -NCIT:C4643 Scrotal Squamous Cell Carcinoma 6 232500 -NCIT:C6386 Scrotal Basal Cell Carcinoma 6 232501 -NCIT:C7728 Scrotal Paget Disease 6 232502 -NCIT:C7472 Anal Margin Carcinoma 5 232503 -NCIT:C6925 Anal Margin Squamous Cell Carcinoma 6 232504 -NCIT:C7473 Anal Margin Basal Cell Carcinoma 6 232505 -NCIT:C7476 Anal Margin Paget Disease 6 232506 -NCIT:C7903 Recurrent Skin Carcinoma 5 232507 -NCIT:C115440 Recurrent Merkel Cell Carcinoma 6 232508 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 7 232509 -NCIT:C165740 Locally Recurrent Merkel Cell Carcinoma 7 232510 -NCIT:C143012 Recurrent Skin Squamous Cell Carcinoma 6 232511 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 232512 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 7 232513 -NCIT:C165737 Locally Recurrent Skin Squamous Cell Carcinoma 7 232514 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 6 232515 -NCIT:C9231 Merkel Cell Carcinoma 5 232516 -NCIT:C115440 Recurrent Merkel Cell Carcinoma 6 232517 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 7 232518 -NCIT:C165740 Locally Recurrent Merkel Cell Carcinoma 7 232519 -NCIT:C128247 Vulvar Merkel Cell Carcinoma 6 232520 -NCIT:C136869 Merkel Cell Carcinoma by AJCC v7 Stage 6 232521 -NCIT:C85887 Stage 0 Merkel Cell Carcinoma AJCC v7 7 232522 -NCIT:C85889 Stage I Merkel Cell Carcinoma AJCC v7 7 232523 -NCIT:C85890 Stage IA Merkel Cell Carcinoma AJCC v7 8 232524 -NCIT:C85892 Stage IB Merkel Cell Carcinoma AJCC v7 8 232525 -NCIT:C85893 Stage II Merkel Cell Carcinoma AJCC v7 7 232526 -NCIT:C85894 Stage IIA Merkel Cell Carcinoma AJCC v7 8 232527 -NCIT:C85895 Stage IIB Merkel Cell Carcinoma AJCC v7 8 232528 -NCIT:C85896 Stage IIC Merkel Cell Carcinoma AJCC v7 8 232529 -NCIT:C85897 Stage III Merkel Cell Carcinoma AJCC v7 7 232530 -NCIT:C85898 Stage IIIA Merkel Cell Carcinoma AJCC v7 8 232531 -NCIT:C85899 Stage IIIB Merkel Cell Carcinoma AJCC v7 8 232532 -NCIT:C85900 Stage IV Merkel Cell Carcinoma AJCC v7 7 232533 -NCIT:C136870 Merkel Cell Carcinoma by AJCC v8 Stage 6 232534 -NCIT:C136871 Merkel Cell Carcinoma by AJCC v8 Clinical Stage 7 232535 -NCIT:C136872 Clinical Stage 0 Merkel Cell Carcinoma AJCC v8 8 232536 -NCIT:C136873 Clinical Stage I Merkel Cell Carcinoma AJCC v8 8 232537 -NCIT:C136874 Clinical Stage II Merkel Cell Carcinoma AJCC v8 8 232538 -NCIT:C136875 Clinical Stage IIA Merkel Cell Carcinoma AJCC v8 9 232539 -NCIT:C136876 Clinical Stage IIB Merkel Cell Carcinoma AJCC v8 9 232540 -NCIT:C136877 Clinical Stage III Merkel Cell Carcinoma AJCC v8 8 232541 -NCIT:C136878 Clinical Stage IV Merkel Cell Carcinoma AJCC v8 8 232542 -NCIT:C136880 Merkel Cell Carcinoma by AJCC v8 Pathologic Stage 7 232543 -NCIT:C136881 Pathologic Stage 0 Merkel Cell Carcinoma AJCC v8 8 232544 -NCIT:C136882 Pathologic Stage I Merkel Cell Carcinoma AJCC v8 8 232545 -NCIT:C136883 Pathologic Stage II Merkel Cell Carcinoma AJCC v8 8 232546 -NCIT:C136884 Pathologic Stage IIA Merkel Cell Carcinoma AJCC v8 9 232547 -NCIT:C136885 Pathologic Stage IIB Merkel Cell Carcinoma AJCC v8 9 232548 -NCIT:C136886 Pathologic Stage III Merkel Cell Carcinoma AJCC v8 8 232549 -NCIT:C136887 Pathologic Stage IIIA Merkel Cell Carcinoma AJCC v8 9 232550 -NCIT:C136888 Pathologic Stage IIIB Merkel Cell Carcinoma AJCC v8 9 232551 -NCIT:C136889 Pathologic Stage IV Merkel Cell Carcinoma AJCC v8 8 232552 -NCIT:C162572 Metastatic Merkel Cell Carcinoma 6 232553 -NCIT:C165300 Advanced Merkel Cell Carcinoma 7 232554 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 7 232555 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 7 232556 -NCIT:C162786 Unresectable Merkel Cell Carcinoma 6 232557 -NCIT:C165741 Refractory Merkel Cell Carcinoma 6 232558 -NCIT:C4979 Carcinoma Unspecified Site 4 232559 -NCIT:C6079 Eye Carcinoma 4 232560 -NCIT:C174403 Conjunctival Carcinoma 5 232561 -NCIT:C174402 Conjunctival Adenosquamous Carcinoma 6 232562 -NCIT:C174404 Conjunctival Sebaceous Carcinoma 6 232563 -NCIT:C4549 Conjunctival Squamous Cell Carcinoma 6 232564 -NCIT:C174390 Conjunctival Keratoacanthoma 7 232565 -NCIT:C174398 Conjunctival Spindle Cell Carcinoma 7 232566 -NCIT:C174551 Retinal Pigment Epithelium Adenocarcinoma 5 232567 -NCIT:C174561 Ciliary Body Adenocarcinoma 5 232568 -NCIT:C175348 Lacrimal System Carcinoma 5 232569 -NCIT:C175337 Lacrimal Drainage System Carcinoma 6 232570 -NCIT:C175336 Lacrimal Drainage System Adenocarcinoma 7 232571 -NCIT:C175339 Lacrimal Drainage System Mucoepidermoid Carcinoma 7 232572 -NCIT:C175340 Lacrimal Drainage System Adenoid Cystic Carcinoma 7 232573 -NCIT:C175344 Lacrimal Drainage System Lymphoepithelial Carcinoma 7 232574 -NCIT:C6092 Lacrimal Drainage System Squamous Cell Carcinoma 7 232575 -NCIT:C175335 Lacrimal Drainage System Non-Keratinizing Squamous Cell Carcinoma 8 232576 -NCIT:C6129 Lacrimal Gland Carcinoma 6 232577 -NCIT:C175274 Lacrimal Gland Myoepithelial Carcinoma 7 232578 -NCIT:C175288 Lacrimal Gland Epithelial-Myoepithelial Carcinoma 7 232579 -NCIT:C4540 Lacrimal Gland Adenoid Cystic Carcinoma 7 232580 -NCIT:C4541 Lacrimal Gland Adenocarcinoma 7 232581 -NCIT:C175267 Lacrimal Gland Oncocytic Adenocarcinoma 8 232582 -NCIT:C175290 Lacrimal Gland Acinic Cell Carcinoma 8 232583 -NCIT:C6091 Lacrimal Gland Mucoepidermoid Carcinoma 7 232584 -NCIT:C6804 Lacrimal Gland Carcinoma ex Pleomorphic Adenoma 7 232585 -NCIT:C43340 Eye Sebaceous Carcinoma 5 232586 -NCIT:C134831 Eyelid Sebaceous Gland Carcinoma 6 232587 -NCIT:C174404 Conjunctival Sebaceous Carcinoma 6 232588 -NCIT:C4552 Corneal Squamous Cell Carcinoma 5 232589 -NCIT:C6078 Eyelid Carcinoma 5 232590 -NCIT:C134831 Eyelid Sebaceous Gland Carcinoma 6 232591 -NCIT:C140511 Eyelid Carcinoma by AJCC v7 Stage 6 232592 -NCIT:C88120 Stage 0 Eyelid Carcinoma AJCC v7 7 232593 -NCIT:C88121 Stage IA Eyelid Carcinoma AJCC v7 7 232594 -NCIT:C88122 Stage IB Eyelid Carcinoma AJCC v7 7 232595 -NCIT:C88125 Stage IC Eyelid Carcinoma AJCC v7 7 232596 -NCIT:C88127 Stage II Eyelid Carcinoma AJCC v7 7 232597 -NCIT:C88129 Stage IIIA Eyelid Carcinoma AJCC v7 7 232598 -NCIT:C88131 Stage IIIB Eyelid Carcinoma AJCC v7 7 232599 -NCIT:C88132 Stage IIIC Eyelid Carcinoma AJCC v7 7 232600 -NCIT:C88133 Stage IV Eyelid Carcinoma AJCC v7 7 232601 -NCIT:C140513 Eyelid Carcinoma by AJCC v8 Stage 6 232602 -NCIT:C140515 Stage 0 Eyelid Carcinoma AJCC v8 7 232603 -NCIT:C140516 Stage I Eyelid Carcinoma AJCC v8 7 232604 -NCIT:C140517 Stage IA Eyelid Carcinoma AJCC v8 8 232605 -NCIT:C140518 Stage IB Eyelid Carcinoma AJCC v8 8 232606 -NCIT:C140519 Stage II Eyelid Carcinoma AJCC v8 7 232607 -NCIT:C140520 Stage IIA Eyelid Carcinoma AJCC v8 8 232608 -NCIT:C140521 Stage IIB Eyelid Carcinoma AJCC v8 8 232609 -NCIT:C140522 Stage III Eyelid Carcinoma AJCC v8 7 232610 -NCIT:C140523 Stage IIIA Eyelid Carcinoma AJCC v8 8 232611 -NCIT:C140524 Stage IIIB Eyelid Carcinoma AJCC v8 8 232612 -NCIT:C140525 Stage IV Eyelid Carcinoma AJCC v8 7 232613 -NCIT:C181159 Eyelid Basal Cell Carcinoma 6 232614 -NCIT:C62332 Central Nervous System Carcinoma 4 232615 -NCIT:C4715 Choroid Plexus Carcinoma 5 232616 -NCIT:C124292 Childhood Choroid Plexus Carcinoma 6 232617 -NCIT:C65151 Non-Small Cell Carcinoma 4 232618 -NCIT:C165537 Metastatic Non-Small Cell Carcinoma 5 232619 -NCIT:C156094 Metastatic Lung Non-Small Cell Carcinoma 6 232620 -NCIT:C128798 Metastatic Lung Non-Squamous Non-Small Cell Carcinoma 7 232621 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 232622 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 232623 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 232624 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 232625 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 232626 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 232627 -NCIT:C155908 Metastatic Lung Adenocarcinoma 8 232628 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 232629 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 232630 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 8 232631 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 232632 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 232633 -NCIT:C156093 Metastatic Lung Adenosquamous Carcinoma 7 232634 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 8 232635 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 8 232636 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 7 232637 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 232638 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 232639 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 232640 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 7 232641 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 232642 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 232643 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 232644 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 232645 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 232646 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 8 232647 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 7 232648 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 232649 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 232650 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 232651 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 232652 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 8 232653 -NCIT:C27745 Non-Small Cell Adenocarcinoma 5 232654 -NCIT:C3512 Lung Adenocarcinoma 6 232655 -NCIT:C136486 Lung Adenocarcinoma In Situ 7 232656 -NCIT:C136716 Lung Non-Mucinous Adenocarcinoma In Situ 8 232657 -NCIT:C136717 Lung Mucinous Adenocarcinoma In Situ 8 232658 -NCIT:C136490 Lung Adenocarcinoma by AJCC v7 Stage 7 232659 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 8 232660 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 8 232661 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 9 232662 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 9 232663 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 8 232664 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 9 232665 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 9 232666 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 8 232667 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 9 232668 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 9 232669 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 8 232670 -NCIT:C136709 Invasive Lung Mucinous Adenocarcinoma 7 232671 -NCIT:C136710 Lung Enteric Adenocarcinoma 7 232672 -NCIT:C155908 Metastatic Lung Adenocarcinoma 7 232673 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 8 232674 -NCIT:C176727 Advanced Lung Adenocarcinoma 8 232675 -NCIT:C174510 Unresectable Lung Adenocarcinoma 7 232676 -NCIT:C179209 Refractory Lung Adenocarcinoma 7 232677 -NCIT:C183109 Invasive Lung Non-Mucinous Adenocarcinoma 7 232678 -NCIT:C123160 Lepidic Adenocarcinoma 8 232679 -NCIT:C5649 Lung Acinar Adenocarcinoma 8 232680 -NCIT:C5650 Lung Papillary Adenocarcinoma 8 232681 -NCIT:C128847 Lung Micropapillary Adenocarcinoma 9 232682 -NCIT:C5651 Solid Lung Adenocarcinoma 8 232683 -NCIT:C190954 Resectable Lung Adenocarcinoma 7 232684 -NCIT:C2923 Minimally Invasive Lung Adenocarcinoma 7 232685 -NCIT:C7268 Minimally Invasive Lung Mucinous Adenocarcinoma 8 232686 -NCIT:C7269 Minimally Invasive Lung Non-Mucinous Adenocarcinoma 8 232687 -NCIT:C7270 Minimally Invasive Lung Mixed Non-Mucinous and Mucinous Adenocarcinoma 8 232688 -NCIT:C45509 Lung Fetal Adenocarcinoma 7 232689 -NCIT:C45512 Lung Colloid Adenocarcinoma 7 232690 -NCIT:C6699 Occult Lung Adenocarcinoma 7 232691 -NCIT:C8757 Recurrent Lung Adenocarcinoma 7 232692 -NCIT:C2926 Lung Non-Small Cell Carcinoma 5 232693 -NCIT:C118814 Childhood Lung Non-Small Cell Carcinoma 6 232694 -NCIT:C133254 Lung Non-Small Cell Squamous Carcinoma 6 232695 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 7 232696 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 232697 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 232698 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 232699 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 7 232700 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 7 232701 -NCIT:C171612 Unresectable Lung Non-Small Cell Squamous Carcinoma 7 232702 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 8 232703 -NCIT:C45502 Lung Squamous Cell Carcinoma, Papillary Variant 7 232704 -NCIT:C45503 Lung Squamous Cell Carcinoma, Clear Cell Variant 7 232705 -NCIT:C135017 Lung Non-Squamous Non-Small Cell Carcinoma 6 232706 -NCIT:C128797 Recurrent Lung Non-Squamous Non-Small Cell Carcinoma 7 232707 -NCIT:C128798 Metastatic Lung Non-Squamous Non-Small Cell Carcinoma 7 232708 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 232709 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 232710 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 232711 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 232712 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 232713 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 232714 -NCIT:C155908 Metastatic Lung Adenocarcinoma 8 232715 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 232716 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 232717 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 8 232718 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 232719 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 232720 -NCIT:C162642 Unresectable Lung Non-Squamous Non-Small Cell Carcinoma 7 232721 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 8 232722 -NCIT:C176858 Refractory Lung Non-Squamous Non-Small Cell Carcinoma 7 232723 -NCIT:C136491 Lung Non-Small Cell Cancer by AJCC v7 Stage 6 232724 -NCIT:C136490 Lung Adenocarcinoma by AJCC v7 Stage 7 232725 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 8 232726 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 8 232727 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 9 232728 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 9 232729 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 8 232730 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 9 232731 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 9 232732 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 8 232733 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 9 232734 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 9 232735 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 8 232736 -NCIT:C136492 Lung Adenosquamous Carcinoma by AJCC v7 Stage 7 232737 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 8 232738 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 8 232739 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 9 232740 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 9 232741 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 8 232742 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 9 232743 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 9 232744 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 8 232745 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 9 232746 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 9 232747 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 8 232748 -NCIT:C136493 Lung Large Cell Carcinoma by AJCC v7 Stage 7 232749 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 8 232750 -NCIT:C6660 Stage II Lung Large Cell Carcinoma AJCC v7 8 232751 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 9 232752 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 9 232753 -NCIT:C8755 Stage I Lung Large Cell Carcinoma AJCC v7 8 232754 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 9 232755 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 9 232756 -NCIT:C8756 Stage IV Lung Large Cell Carcinoma AJCC v7 8 232757 -NCIT:C9257 Stage III Lung Large Cell Carcinoma AJCC v7 8 232758 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 9 232759 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 9 232760 -NCIT:C4012 Stage IV Lung Non-Small Cell Cancer AJCC v7 7 232761 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 8 232762 -NCIT:C8756 Stage IV Lung Large Cell Carcinoma AJCC v7 8 232763 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 8 232764 -NCIT:C6671 Stage I Lung Non-Small Cell Cancer AJCC v7 7 232765 -NCIT:C5652 Stage IA Lung Non-Small Cell Carcinoma AJCC v7 8 232766 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 9 232767 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 9 232768 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 9 232769 -NCIT:C5653 Stage IB Lung Non-Small Cell Carcinoma AJCC v7 8 232770 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 9 232771 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 9 232772 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 9 232773 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 8 232774 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 9 232775 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 9 232776 -NCIT:C8755 Stage I Lung Large Cell Carcinoma AJCC v7 8 232777 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 9 232778 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 9 232779 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 8 232780 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 9 232781 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 9 232782 -NCIT:C7777 Stage II Lung Non-Small Cell Cancer AJCC v7 7 232783 -NCIT:C5654 Stage IIB Lung Non-Small Cell Carcinoma AJCC v7 8 232784 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 9 232785 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 9 232786 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 9 232787 -NCIT:C5655 Stage IIA Lung Non-Small Cell Carcinoma AJCC v7 8 232788 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 9 232789 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 9 232790 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 9 232791 -NCIT:C6660 Stage II Lung Large Cell Carcinoma AJCC v7 8 232792 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 9 232793 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 9 232794 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 8 232795 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 9 232796 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 9 232797 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 8 232798 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 9 232799 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 9 232800 -NCIT:C7778 Stage III Lung Non-Small Cell Cancer AJCC v7 7 232801 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 8 232802 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 9 232803 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 9 232804 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 8 232805 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 9 232806 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 9 232807 -NCIT:C9102 Stage IIIA Lung Non-Small Cell Cancer AJCC v7 8 232808 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 9 232809 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 9 232810 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 9 232811 -NCIT:C9103 Stage IIIB Lung Non-Small Cell Cancer AJCC v7 8 232812 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 9 232813 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 9 232814 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 9 232815 -NCIT:C9257 Stage III Lung Large Cell Carcinoma AJCC v7 8 232816 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 9 232817 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 9 232818 -NCIT:C9104 Stage 0 Lung Non-Small Cell Cancer AJCC v6 and v7 7 232819 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 8 232820 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 8 232821 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 8 232822 -NCIT:C153081 Refractory Lung Non-Small Cell Carcinoma 6 232823 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 7 232824 -NCIT:C176858 Refractory Lung Non-Squamous Non-Small Cell Carcinoma 7 232825 -NCIT:C179209 Refractory Lung Adenocarcinoma 7 232826 -NCIT:C155901 Unresectable Lung Non-Small Cell Carcinoma 6 232827 -NCIT:C162642 Unresectable Lung Non-Squamous Non-Small Cell Carcinoma 7 232828 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 8 232829 -NCIT:C171612 Unresectable Lung Non-Small Cell Squamous Carcinoma 7 232830 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 8 232831 -NCIT:C174510 Unresectable Lung Adenocarcinoma 7 232832 -NCIT:C156094 Metastatic Lung Non-Small Cell Carcinoma 6 232833 -NCIT:C128798 Metastatic Lung Non-Squamous Non-Small Cell Carcinoma 7 232834 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 232835 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 232836 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 232837 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 232838 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 232839 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 232840 -NCIT:C155908 Metastatic Lung Adenocarcinoma 8 232841 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 232842 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 232843 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 8 232844 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 232845 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 232846 -NCIT:C156093 Metastatic Lung Adenosquamous Carcinoma 7 232847 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 8 232848 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 8 232849 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 7 232850 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 232851 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 232852 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 232853 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 7 232854 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 232855 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 232856 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 232857 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 232858 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 232859 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 8 232860 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 7 232861 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 232862 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 232863 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 232864 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 232865 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 8 232866 -NCIT:C165767 Resectable Lung Non-Small Cell Carcinoma 6 232867 -NCIT:C190954 Resectable Lung Adenocarcinoma 7 232868 -NCIT:C3512 Lung Adenocarcinoma 6 232869 -NCIT:C136486 Lung Adenocarcinoma In Situ 7 232870 -NCIT:C136716 Lung Non-Mucinous Adenocarcinoma In Situ 8 232871 -NCIT:C136717 Lung Mucinous Adenocarcinoma In Situ 8 232872 -NCIT:C136490 Lung Adenocarcinoma by AJCC v7 Stage 7 232873 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 8 232874 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 8 232875 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 9 232876 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 9 232877 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 8 232878 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 9 232879 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 9 232880 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 8 232881 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 9 232882 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 9 232883 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 8 232884 -NCIT:C136709 Invasive Lung Mucinous Adenocarcinoma 7 232885 -NCIT:C136710 Lung Enteric Adenocarcinoma 7 232886 -NCIT:C155908 Metastatic Lung Adenocarcinoma 7 232887 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 8 232888 -NCIT:C176727 Advanced Lung Adenocarcinoma 8 232889 -NCIT:C174510 Unresectable Lung Adenocarcinoma 7 232890 -NCIT:C179209 Refractory Lung Adenocarcinoma 7 232891 -NCIT:C183109 Invasive Lung Non-Mucinous Adenocarcinoma 7 232892 -NCIT:C123160 Lepidic Adenocarcinoma 8 232893 -NCIT:C5649 Lung Acinar Adenocarcinoma 8 232894 -NCIT:C5650 Lung Papillary Adenocarcinoma 8 232895 -NCIT:C128847 Lung Micropapillary Adenocarcinoma 9 232896 -NCIT:C5651 Solid Lung Adenocarcinoma 8 232897 -NCIT:C190954 Resectable Lung Adenocarcinoma 7 232898 -NCIT:C2923 Minimally Invasive Lung Adenocarcinoma 7 232899 -NCIT:C7268 Minimally Invasive Lung Mucinous Adenocarcinoma 8 232900 -NCIT:C7269 Minimally Invasive Lung Non-Mucinous Adenocarcinoma 8 232901 -NCIT:C7270 Minimally Invasive Lung Mixed Non-Mucinous and Mucinous Adenocarcinoma 8 232902 -NCIT:C45509 Lung Fetal Adenocarcinoma 7 232903 -NCIT:C45512 Lung Colloid Adenocarcinoma 7 232904 -NCIT:C6699 Occult Lung Adenocarcinoma 7 232905 -NCIT:C8757 Recurrent Lung Adenocarcinoma 7 232906 -NCIT:C4450 Lung Large Cell Carcinoma 6 232907 -NCIT:C136493 Lung Large Cell Carcinoma by AJCC v7 Stage 7 232908 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 8 232909 -NCIT:C6660 Stage II Lung Large Cell Carcinoma AJCC v7 8 232910 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 9 232911 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 9 232912 -NCIT:C8755 Stage I Lung Large Cell Carcinoma AJCC v7 8 232913 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 9 232914 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 9 232915 -NCIT:C8756 Stage IV Lung Large Cell Carcinoma AJCC v7 8 232916 -NCIT:C9257 Stage III Lung Large Cell Carcinoma AJCC v7 8 232917 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 9 232918 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 9 232919 -NCIT:C4451 Lung Large Cell Carcinoma, Clear Cell Variant 7 232920 -NCIT:C6685 Occult Lung Large Cell Carcinoma 7 232921 -NCIT:C6876 Lung Large Cell Carcinoma with Rhabdoid Phenotype 7 232922 -NCIT:C7266 Lung Basaloid Large Cell Carcinoma 7 232923 -NCIT:C8753 Recurrent Lung Large Cell Carcinoma 7 232924 -NCIT:C45519 Lung Lymphoepithelial Carcinoma 6 232925 -NCIT:C45540 Lung Sarcomatoid Carcinoma 6 232926 -NCIT:C3732 Pulmonary Blastoma 7 232927 -NCIT:C4452 Lung Giant Cell Carcinoma 7 232928 -NCIT:C45541 Lung Spindle Cell Carcinoma 7 232929 -NCIT:C45542 Lung Pleomorphic Carcinoma 7 232930 -NCIT:C45543 Lung Carcinosarcoma 7 232931 -NCIT:C7783 Recurrent Lung Non-Small Cell Carcinoma 6 232932 -NCIT:C128797 Recurrent Lung Non-Squamous Non-Small Cell Carcinoma 7 232933 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 7 232934 -NCIT:C190195 Locally Recurrent Lung Non-Small Cell Carcinoma 7 232935 -NCIT:C8747 Recurrent Lung Adenosquamous Carcinoma 7 232936 -NCIT:C8753 Recurrent Lung Large Cell Carcinoma 7 232937 -NCIT:C8757 Recurrent Lung Adenocarcinoma 7 232938 -NCIT:C9038 Occult Lung Non-Small Cell Carcinoma 6 232939 -NCIT:C6684 Occult Lung Adenosquamous Carcinoma 7 232940 -NCIT:C6685 Occult Lung Large Cell Carcinoma 7 232941 -NCIT:C6699 Occult Lung Adenocarcinoma 7 232942 -NCIT:C9133 Lung Adenosquamous Carcinoma 6 232943 -NCIT:C136492 Lung Adenosquamous Carcinoma by AJCC v7 Stage 7 232944 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 8 232945 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 8 232946 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 9 232947 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 9 232948 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 8 232949 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 9 232950 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 9 232951 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 8 232952 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 9 232953 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 9 232954 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 8 232955 -NCIT:C156093 Metastatic Lung Adenosquamous Carcinoma 7 232956 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 8 232957 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 8 232958 -NCIT:C6684 Occult Lung Adenosquamous Carcinoma 7 232959 -NCIT:C8747 Recurrent Lung Adenosquamous Carcinoma 7 232960 -NCIT:C7352 Retroperitoneal Carcinoma 4 232961 -NCIT:C9325 Adrenal Cortical Carcinoma 5 232962 -NCIT:C104030 Adrenal Cortical Carcinoma by ENSAT Stage 6 232963 -NCIT:C104031 ENSAT Stage I Adrenal Cortical Carcinoma 7 232964 -NCIT:C104032 ENSAT Stage II Adrenal Cortical Carcinoma 7 232965 -NCIT:C104033 ENSAT Stage III Adrenal Cortical Carcinoma 7 232966 -NCIT:C104034 ENSAT Stage IV Adrenal Cortical Carcinoma 7 232967 -NCIT:C141098 Adrenal Cortical Carcinoma by AJCC v7 Stage 6 232968 -NCIT:C9214 Stage I Adrenal Cortical Carcinoma AJCC v7 7 232969 -NCIT:C9215 Stage II Adrenal Cortical Carcinoma AJCC v7 7 232970 -NCIT:C9216 Stage III Adrenal Cortical Carcinoma AJCC v7 7 232971 -NCIT:C9217 Stage IV Adrenal Cortical Carcinoma AJCC v7 7 232972 -NCIT:C141100 Adrenal Cortical Carcinoma by AJCC v8 Stage 6 232973 -NCIT:C141101 Stage I Adrenal Cortical Carcinoma AJCC v8 7 232974 -NCIT:C141102 Stage II Adrenal Cortical Carcinoma AJCC v8 7 232975 -NCIT:C141103 Stage III Adrenal Cortical Carcinoma AJCC v8 7 232976 -NCIT:C141104 Stage IV Adrenal Cortical Carcinoma AJCC v8 7 232977 -NCIT:C150580 Unresectable Adrenal Cortical Carcinoma 6 232978 -NCIT:C156070 Metastatic Adrenal Cortical Carcinoma 6 232979 -NCIT:C174443 Locally Advanced Adrenal Cortical Carcinoma 7 232980 -NCIT:C191863 Advanced Adrenal Cortical Carcinoma 7 232981 -NCIT:C188036 Refractory Adrenal Cortical Carcinoma 6 232982 -NCIT:C188181 Adrenal Cortical Oncocytic Carcinoma 6 232983 -NCIT:C188182 Adrenal Cortical Myxoid Carcinoma 6 232984 -NCIT:C188183 Adrenal Cortical High Grade Carcinoma 6 232985 -NCIT:C190069 Childhood Adrenal Cortical Carcinoma 6 232986 -NCIT:C6417 Recurrent Adrenal Cortical Carcinoma 6 232987 -NCIT:C68635 Adrenal Cortical Low Grade Carcinoma 6 232988 -NCIT:C68644 Adrenal Cortical Sarcomatoid Carcinoma 6 232989 -NCIT:C7569 Thymic Carcinoma 4 232990 -NCIT:C146706 Mediastinal/Thymic NUT Carcinoma 5 232991 -NCIT:C148125 Unresectable Thymic Carcinoma 5 232992 -NCIT:C148127 Recurrent Thymic Carcinoma 5 232993 -NCIT:C148128 Metastatic Thymic Carcinoma 5 232994 -NCIT:C148126 Locally Advanced Thymic Carcinoma 6 232995 -NCIT:C159903 Advanced Thymic Carcinoma 6 232996 -NCIT:C148173 Refractory Thymic Carcinoma 5 232997 -NCIT:C171031 Thymic Neuroendocrine Carcinoma 5 232998 -NCIT:C6460 Thymic Small Cell Neuroendocrine Carcinoma 6 232999 -NCIT:C6461 Thymic Large Cell Neuroendocrine Carcinoma 6 233000 -NCIT:C183313 Thymic Carcinoma with Adenoid Cystic Carcinoma-Like Features 5 233001 -NCIT:C183316 Thymic Carcinoma, Not Otherwise Specified 5 233002 -NCIT:C35718 Thymic Undifferentiated Carcinoma 5 233003 -NCIT:C6455 Thymic Squamous Cell Carcinoma 5 233004 -NCIT:C6456 Thymic Basaloid Carcinoma 6 233005 -NCIT:C6457 Thymic Mucoepidermoid Carcinoma 5 233006 -NCIT:C6458 Thymic Adenosquamous Carcinoma 5 233007 -NCIT:C6459 Thymic Adenocarcinoma 5 233008 -NCIT:C146717 Thymic Hepatoid Adenocarcinoma 6 233009 -NCIT:C183314 Thymic Enteric-Type Adenocarcinoma 6 233010 -NCIT:C183315 Thymic Adenocarcinoma, Not Otherwise Specified 6 233011 -NCIT:C27937 Thymic Low Grade Papillary Adenocarcinoma 6 233012 -NCIT:C6462 Thymic Clear Cell Carcinoma 5 233013 -NCIT:C6463 Thymic Sarcomatoid Carcinoma 5 233014 -NCIT:C7998 Thymic Lymphoepithelial Carcinoma 5 233015 -NCIT:C7596 Malignant Myoepithelioma 4 233016 -NCIT:C121787 Malignant Mixed Tumor, Not Otherwise Specified 5 233017 -NCIT:C142830 Lung Myoepithelial Carcinoma 5 233018 -NCIT:C162732 Recurrent Malignant Myoepithelioma 5 233019 -NCIT:C162733 Refractory Malignant Myoepithelioma 5 233020 -NCIT:C175274 Lacrimal Gland Myoepithelial Carcinoma 5 233021 -NCIT:C35700 Salivary Gland Myoepithelial Carcinoma 5 233022 -NCIT:C40395 Breast Malignant Myoepithelioma 5 233023 -NCIT:C7619 Recurrent Carcinoma 4 233024 -NCIT:C115441 Recurrent Primary Peritoneal Carcinoma 5 233025 -NCIT:C170751 Recurrent Platinum-Resistant Primary Peritoneal Carcinoma 6 233026 -NCIT:C170756 Recurrent Primary Peritoneal Undifferentiated Carcinoma 6 233027 -NCIT:C170759 Recurrent Primary Peritoneal Transitional Cell Carcinoma 6 233028 -NCIT:C170767 Recurrent Primary Peritoneal Adenocarcinoma 6 233029 -NCIT:C156453 Recurrent Primary Peritoneal Serous Adenocarcinoma 7 233030 -NCIT:C156454 Recurrent Primary Peritoneal Low Grade Serous Adenocarcinoma 8 233031 -NCIT:C165268 Recurrent Primary Peritoneal High Grade Serous Adenocarcinoma 8 233032 -NCIT:C165269 Recurrent Primary Peritoneal Endometrioid Adenocarcinoma 7 233033 -NCIT:C170761 Recurrent Primary Peritoneal Clear Cell Adenocarcinoma 7 233034 -NCIT:C191407 Recurrent Platinum-Sensitive Primary Peritoneal Carcinoma 6 233035 -NCIT:C148127 Recurrent Thymic Carcinoma 5 233036 -NCIT:C157639 Recurrent Adenoid Cystic Carcinoma 5 233037 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 6 233038 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 6 233039 -NCIT:C8216 Recurrent Oral Cavity Adenoid Cystic Carcinoma 6 233040 -NCIT:C159565 Recurrent Adenocarcinoma 5 233041 -NCIT:C136651 Recurrent Cervical Adenocarcinoma 6 233042 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 7 233043 -NCIT:C153359 Recurrent Gastroesophageal Junction Adenocarcinoma 6 233044 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 6 233045 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 6 233046 -NCIT:C153574 Recurrent Ampulla of Vater Adenocarcinoma 6 233047 -NCIT:C153575 Recurrent Anal Adenocarcinoma 6 233048 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 7 233049 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 7 233050 -NCIT:C153611 Recurrent Salivary Duct Carcinoma 6 233051 -NCIT:C153612 Recurrent Minor Salivary Gland Adenocarcinoma 6 233052 -NCIT:C153614 Recurrent Ovarian Adenocarcinoma 6 233053 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 7 233054 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 7 233055 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 8 233056 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 8 233057 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 8 233058 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 7 233059 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 7 233060 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 8 233061 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 7 233062 -NCIT:C154622 Recurrent Gastric Adenocarcinoma 6 233063 -NCIT:C155742 Recurrent Pancreatic Adenocarcinoma 6 233064 -NCIT:C153569 Recurrent Pancreatic Acinar Cell Carcinoma 7 233065 -NCIT:C153619 Recurrent Pancreatic Ductal Adenocarcinoma 7 233066 -NCIT:C153620 Recurrent Pancreatic Cystadenocarcinoma 7 233067 -NCIT:C158421 Recurrent Endometrioid Adenocarcinoma 6 233068 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 7 233069 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 7 233070 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 7 233071 -NCIT:C165269 Recurrent Primary Peritoneal Endometrioid Adenocarcinoma 7 233072 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 6 233073 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 7 233074 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 7 233075 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 7 233076 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 7 233077 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 7 233078 -NCIT:C162441 Recurrent Colorectal Adenocarcinoma 6 233079 -NCIT:C162442 Recurrent Colon Adenocarcinoma 7 233080 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 7 233081 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 6 233082 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 7 233083 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 7 233084 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 8 233085 -NCIT:C170766 Recurrent Fallopian Tube Adenocarcinoma 6 233086 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 7 233087 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 7 233088 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 7 233089 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 7 233090 -NCIT:C170767 Recurrent Primary Peritoneal Adenocarcinoma 6 233091 -NCIT:C156453 Recurrent Primary Peritoneal Serous Adenocarcinoma 7 233092 -NCIT:C156454 Recurrent Primary Peritoneal Low Grade Serous Adenocarcinoma 8 233093 -NCIT:C165268 Recurrent Primary Peritoneal High Grade Serous Adenocarcinoma 8 233094 -NCIT:C165269 Recurrent Primary Peritoneal Endometrioid Adenocarcinoma 7 233095 -NCIT:C170761 Recurrent Primary Peritoneal Clear Cell Adenocarcinoma 7 233096 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 6 233097 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 7 233098 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 6 233099 -NCIT:C175588 Recurrent Breast Adenocarcinoma 6 233100 -NCIT:C153568 Recurrent Breast Acinic Cell Carcinoma 7 233101 -NCIT:C153584 Recurrent Lobular Breast Carcinoma 7 233102 -NCIT:C153587 Recurrent Invasive Breast Carcinoma of No Special Type 7 233103 -NCIT:C153588 Recurrent Breast Paget Disease 7 233104 -NCIT:C168783 Recurrent HER2-Negative Breast Carcinoma 7 233105 -NCIT:C171014 Recurrent Triple-Negative Breast Carcinoma 7 233106 -NCIT:C182108 Recurrent HER2-Positive Breast Carcinoma 7 233107 -NCIT:C185157 Recurrent Hormone Receptor-Positive Breast Carcinoma 7 233108 -NCIT:C8607 Recurrent Breast Inflammatory Carcinoma 7 233109 -NCIT:C179174 Recurrent Appendix Adenocarcinoma 6 233110 -NCIT:C153579 Recurrent Appendix Mucinous Adenocarcinoma 7 233111 -NCIT:C179179 Recurrent Pseudomyxoma Peritonei 6 233112 -NCIT:C27325 Recurrent Cholangiocarcinoma 6 233113 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 7 233114 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 7 233115 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 6 233116 -NCIT:C6417 Recurrent Adrenal Cortical Carcinoma 6 233117 -NCIT:C7825 Recurrent Renal Cell Carcinoma 6 233118 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 7 233119 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 8 233120 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 7 233121 -NCIT:C7828 Recurrent Parathyroid Gland Carcinoma 6 233122 -NCIT:C8627 Recurrent Esophageal Adenocarcinoma 6 233123 -NCIT:C8757 Recurrent Lung Adenocarcinoma 6 233124 -NCIT:C9264 Recurrent Hepatocellular Carcinoma 6 233125 -NCIT:C154082 Recurrent Fibrolamellar Carcinoma 7 233126 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 7 233127 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 7 233128 -NCIT:C162652 Recurrent Squamous Cell Carcinoma 5 233129 -NCIT:C133709 Recurrent Head and Neck Squamous Cell Carcinoma 6 233130 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 233131 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 233132 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 233133 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 233134 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 233135 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 233136 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 233137 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 233138 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 233139 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 7 233140 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 233141 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 233142 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 233143 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 233144 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 233145 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 233146 -NCIT:C176682 Locally Recurrent Head and Neck Squamous Cell Carcinoma 7 233147 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 7 233148 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 233149 -NCIT:C136649 Recurrent Cervical Squamous Cell Carcinoma 6 233150 -NCIT:C143012 Recurrent Skin Squamous Cell Carcinoma 6 233151 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 233152 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 7 233153 -NCIT:C165737 Locally Recurrent Skin Squamous Cell Carcinoma 7 233154 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 6 233155 -NCIT:C169102 Recurrent Anal Squamous Cell Carcinoma 6 233156 -NCIT:C175360 Recurrent Anal Canal Squamous Cell Carcinoma 7 233157 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 8 233158 -NCIT:C174200 Recurrent Vulvar Squamous Cell Carcinoma 6 233159 -NCIT:C185302 Recurrent Vaginal Squamous Cell Carcinoma 6 233160 -NCIT:C5014 Recurrent Lung Squamous Cell Carcinoma 6 233161 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 7 233162 -NCIT:C8633 Recurrent Esophageal Squamous Cell Carcinoma 6 233163 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 6 233164 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 6 233165 -NCIT:C162732 Recurrent Malignant Myoepithelioma 5 233166 -NCIT:C165253 Recurrent Neuroendocrine Carcinoma 5 233167 -NCIT:C115440 Recurrent Merkel Cell Carcinoma 6 233168 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 7 233169 -NCIT:C165740 Locally Recurrent Merkel Cell Carcinoma 7 233170 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 6 233171 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 7 233172 -NCIT:C155938 Recurrent Digestive System Neuroendocrine Carcinoma 6 233173 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 7 233174 -NCIT:C183127 Recurrent Small Cell Neuroendocrine Carcinoma 6 233175 -NCIT:C183128 Recurrent Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 233176 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 8 233177 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 233178 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 7 233179 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 8 233180 -NCIT:C190194 Locally Recurrent Carcinoma 5 233181 -NCIT:C165737 Locally Recurrent Skin Squamous Cell Carcinoma 6 233182 -NCIT:C165740 Locally Recurrent Merkel Cell Carcinoma 6 233183 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 6 233184 -NCIT:C176682 Locally Recurrent Head and Neck Squamous Cell Carcinoma 6 233185 -NCIT:C190195 Locally Recurrent Lung Non-Small Cell Carcinoma 6 233186 -NCIT:C190196 Locally Recurrent Breast Carcinoma 6 233187 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 6 233188 -NCIT:C190198 Locally Recurrent Gastric Carcinoma 6 233189 -NCIT:C190199 Locally Recurrent Colorectal Carcinoma 6 233190 -NCIT:C190200 Locally Recurrent Endometrial Carcinoma 6 233191 -NCIT:C190201 Locally Recurrent Ovarian Carcinoma 6 233192 -NCIT:C190776 Recurrent Basal Cell Carcinoma 5 233193 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 6 233194 -NCIT:C7620 Recurrent Female Reproductive System Carcinoma 5 233195 -NCIT:C115429 Recurrent Fallopian Tube Carcinoma 6 233196 -NCIT:C170750 Recurrent Platinum-Resistant Fallopian Tube Carcinoma 7 233197 -NCIT:C170755 Recurrent Fallopian Tube Undifferentiated Carcinoma 7 233198 -NCIT:C170757 Recurrent Fallopian Tube Transitional Cell Carcinoma 7 233199 -NCIT:C170766 Recurrent Fallopian Tube Adenocarcinoma 7 233200 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 8 233201 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 8 233202 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 8 233203 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 8 233204 -NCIT:C191395 Recurrent Platinum-Sensitive Fallopian Tube Carcinoma 7 233205 -NCIT:C150094 Recurrent Endometrial Carcinoma 6 233206 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 7 233207 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 7 233208 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 8 233209 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 8 233210 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 8 233211 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 8 233212 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 8 233213 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 7 233214 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 7 233215 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 7 233216 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 7 233217 -NCIT:C190200 Locally Recurrent Endometrial Carcinoma 7 233218 -NCIT:C7804 Recurrent Cervical Carcinoma 6 233219 -NCIT:C136649 Recurrent Cervical Squamous Cell Carcinoma 7 233220 -NCIT:C136650 Recurrent Cervical Adenosquamous Carcinoma 7 233221 -NCIT:C136651 Recurrent Cervical Adenocarcinoma 7 233222 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 8 233223 -NCIT:C7833 Recurrent Ovarian Carcinoma 6 233224 -NCIT:C148025 Recurrent BRCA- Associated Ovarian Carcinoma 7 233225 -NCIT:C153614 Recurrent Ovarian Adenocarcinoma 7 233226 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 8 233227 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 8 233228 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 9 233229 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 9 233230 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 9 233231 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 8 233232 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 8 233233 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 9 233234 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 8 233235 -NCIT:C153818 Recurrent Malignant Ovarian Brenner Tumor 7 233236 -NCIT:C153819 Recurrent Ovarian Transitional Cell Carcinoma 7 233237 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 7 233238 -NCIT:C170754 Recurrent Ovarian Undifferentiated Carcinoma 7 233239 -NCIT:C178669 Recurrent Ovarian Seromucinous Carcinoma 7 233240 -NCIT:C188391 Recurrent Platinum-Sensitive Ovarian Carcinoma 7 233241 -NCIT:C190201 Locally Recurrent Ovarian Carcinoma 7 233242 -NCIT:C7860 Recurrent Vaginal Carcinoma 6 233243 -NCIT:C185302 Recurrent Vaginal Squamous Cell Carcinoma 7 233244 -NCIT:C9054 Recurrent Vulvar Carcinoma 6 233245 -NCIT:C174200 Recurrent Vulvar Squamous Cell Carcinoma 7 233246 -NCIT:C7621 Recurrent Male Reproductive System Carcinoma 5 233247 -NCIT:C7870 Recurrent Penile Carcinoma 6 233248 -NCIT:C7902 Recurrent Prostate Carcinoma 6 233249 -NCIT:C156771 Biochemically Recurrent Prostate Carcinoma 7 233250 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 7 233251 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 8 233252 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 7 233253 -NCIT:C7622 Recurrent Digestive System Carcinoma 5 233254 -NCIT:C151905 Recurrent Metastatic Digestive System Carcinoma 6 233255 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 7 233256 -NCIT:C153359 Recurrent Gastroesophageal Junction Adenocarcinoma 6 233257 -NCIT:C153574 Recurrent Ampulla of Vater Adenocarcinoma 6 233258 -NCIT:C153575 Recurrent Anal Adenocarcinoma 6 233259 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 7 233260 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 7 233261 -NCIT:C153802 Recurrent Appendix Carcinoma 6 233262 -NCIT:C179174 Recurrent Appendix Adenocarcinoma 7 233263 -NCIT:C153579 Recurrent Appendix Mucinous Adenocarcinoma 8 233264 -NCIT:C155938 Recurrent Digestive System Neuroendocrine Carcinoma 6 233265 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 7 233266 -NCIT:C156782 Recurrent Biliary Tract Carcinoma 6 233267 -NCIT:C153360 Recurrent Bile Duct Carcinoma 7 233268 -NCIT:C27325 Recurrent Cholangiocarcinoma 8 233269 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 9 233270 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 9 233271 -NCIT:C7893 Recurrent Extrahepatic Bile Duct Carcinoma 8 233272 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 9 233273 -NCIT:C4008 Recurrent Gallbladder Carcinoma 7 233274 -NCIT:C169102 Recurrent Anal Squamous Cell Carcinoma 6 233275 -NCIT:C175360 Recurrent Anal Canal Squamous Cell Carcinoma 7 233276 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 8 233277 -NCIT:C3999 Recurrent Esophageal Carcinoma 6 233278 -NCIT:C8627 Recurrent Esophageal Adenocarcinoma 7 233279 -NCIT:C8633 Recurrent Esophageal Squamous Cell Carcinoma 7 233280 -NCIT:C7110 Recurrent Liver Carcinoma 6 233281 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 7 233282 -NCIT:C7880 Recurrent Adult Liver Carcinoma 7 233283 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 8 233284 -NCIT:C9264 Recurrent Hepatocellular Carcinoma 7 233285 -NCIT:C154082 Recurrent Fibrolamellar Carcinoma 8 233286 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 8 233287 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 8 233288 -NCIT:C7626 Recurrent Pancreatic Carcinoma 6 233289 -NCIT:C155742 Recurrent Pancreatic Adenocarcinoma 7 233290 -NCIT:C153569 Recurrent Pancreatic Acinar Cell Carcinoma 8 233291 -NCIT:C153619 Recurrent Pancreatic Ductal Adenocarcinoma 8 233292 -NCIT:C153620 Recurrent Pancreatic Cystadenocarcinoma 8 233293 -NCIT:C7793 Recurrent Anal Canal Carcinoma 6 233294 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 7 233295 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 7 233296 -NCIT:C175360 Recurrent Anal Canal Squamous Cell Carcinoma 7 233297 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 8 233298 -NCIT:C9249 Recurrent AIDS-Related Anal Canal Carcinoma 7 233299 -NCIT:C7894 Recurrent Small Intestinal Carcinoma 6 233300 -NCIT:C9352 Recurrent Duodenal Carcinoma 7 233301 -NCIT:C8625 Recurrent Colorectal Carcinoma 6 233302 -NCIT:C162441 Recurrent Colorectal Adenocarcinoma 7 233303 -NCIT:C162442 Recurrent Colon Adenocarcinoma 8 233304 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 8 233305 -NCIT:C190199 Locally Recurrent Colorectal Carcinoma 7 233306 -NCIT:C190679 Recurrent Microsatellite Stable Colorectal Carcinoma 7 233307 -NCIT:C3998 Recurrent Colon Carcinoma 7 233308 -NCIT:C162442 Recurrent Colon Adenocarcinoma 8 233309 -NCIT:C8634 Recurrent Rectosigmoid Carcinoma 7 233310 -NCIT:C9238 Recurrent Rectal Carcinoma 7 233311 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 8 233312 -NCIT:C9237 Recurrent Gastric Carcinoma 6 233313 -NCIT:C154622 Recurrent Gastric Adenocarcinoma 7 233314 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 7 233315 -NCIT:C190198 Locally Recurrent Gastric Carcinoma 7 233316 -NCIT:C7623 Recurrent Urinary System Carcinoma 5 233317 -NCIT:C157631 Recurrent Urothelial Carcinoma 6 233318 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 7 233319 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 8 233320 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 7 233321 -NCIT:C8254 Recurrent Renal Pelvis and Ureter Urothelial Carcinoma 7 233322 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 8 233323 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 8 233324 -NCIT:C172622 Recurrent Kidney Carcinoma 6 233325 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 7 233326 -NCIT:C162726 Recurrent Kidney Medullary Carcinoma 7 233327 -NCIT:C7825 Recurrent Renal Cell Carcinoma 7 233328 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 8 233329 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 9 233330 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 8 233331 -NCIT:C7508 Recurrent Urethral Carcinoma 6 233332 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 7 233333 -NCIT:C7899 Recurrent Bladder Carcinoma 6 233334 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 7 233335 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 8 233336 -NCIT:C190774 Recurrent Non-Muscle Invasive Bladder Carcinoma 7 233337 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 8 233338 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 7 233339 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 7 233340 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 7 233341 -NCIT:C9255 Recurrent Ureter Carcinoma 6 233342 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 7 233343 -NCIT:C7624 Recurrent Head and Neck Carcinoma 5 233344 -NCIT:C133709 Recurrent Head and Neck Squamous Cell Carcinoma 6 233345 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 233346 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 233347 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 233348 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 233349 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 233350 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 233351 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 233352 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 233353 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 233354 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 7 233355 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 233356 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 233357 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 233358 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 233359 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 233360 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 233361 -NCIT:C176682 Locally Recurrent Head and Neck Squamous Cell Carcinoma 7 233362 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 7 233363 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 233364 -NCIT:C4034 Recurrent Laryngeal Carcinoma 6 233365 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 7 233366 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 233367 -NCIT:C5103 Recurrent Pharyngeal Carcinoma 6 233368 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 7 233369 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 233370 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 233371 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 233372 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 233373 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 233374 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 233375 -NCIT:C8051 Recurrent Oropharyngeal Carcinoma 7 233376 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 233377 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 233378 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 7 233379 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 233380 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 233381 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 233382 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 7 233383 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 233384 -NCIT:C67558 Recurrent Sinonasal Carcinoma 6 233385 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 233386 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 233387 -NCIT:C7828 Recurrent Parathyroid Gland Carcinoma 6 233388 -NCIT:C7908 Recurrent Thyroid Gland Carcinoma 6 233389 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 7 233390 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 8 233391 -NCIT:C153624 Recurrent Thyroid Gland Anaplastic Carcinoma 7 233392 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 7 233393 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 8 233394 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 8 233395 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 9 233396 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 7 233397 -NCIT:C7926 Recurrent Salivary Gland Carcinoma 6 233398 -NCIT:C153611 Recurrent Salivary Duct Carcinoma 7 233399 -NCIT:C153612 Recurrent Minor Salivary Gland Adenocarcinoma 7 233400 -NCIT:C153800 Recurrent Parotid Gland Carcinoma 7 233401 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 8 233402 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 8 233403 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 233404 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 8 233405 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 233406 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 8 233407 -NCIT:C153801 Recurrent Submandibular Gland Carcinoma 7 233408 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 8 233409 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 8 233410 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 233411 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 8 233412 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 233413 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 8 233414 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 233415 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 233416 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 233417 -NCIT:C8037 Recurrent Lip and Oral Cavity Carcinoma 6 233418 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 233419 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 233420 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 233421 -NCIT:C6076 Recurrent Oral Cavity Carcinoma 7 233422 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 233423 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 233424 -NCIT:C8215 Recurrent Oral Cavity Mucoepidermoid Carcinoma 8 233425 -NCIT:C8216 Recurrent Oral Cavity Adenoid Cystic Carcinoma 8 233426 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 7 233427 -NCIT:C7771 Recurrent Breast Carcinoma 5 233428 -NCIT:C175588 Recurrent Breast Adenocarcinoma 6 233429 -NCIT:C153568 Recurrent Breast Acinic Cell Carcinoma 7 233430 -NCIT:C153584 Recurrent Lobular Breast Carcinoma 7 233431 -NCIT:C153587 Recurrent Invasive Breast Carcinoma of No Special Type 7 233432 -NCIT:C153588 Recurrent Breast Paget Disease 7 233433 -NCIT:C168783 Recurrent HER2-Negative Breast Carcinoma 7 233434 -NCIT:C171014 Recurrent Triple-Negative Breast Carcinoma 7 233435 -NCIT:C182108 Recurrent HER2-Positive Breast Carcinoma 7 233436 -NCIT:C185157 Recurrent Hormone Receptor-Positive Breast Carcinoma 7 233437 -NCIT:C8607 Recurrent Breast Inflammatory Carcinoma 7 233438 -NCIT:C190196 Locally Recurrent Breast Carcinoma 6 233439 -NCIT:C7903 Recurrent Skin Carcinoma 5 233440 -NCIT:C115440 Recurrent Merkel Cell Carcinoma 6 233441 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 7 233442 -NCIT:C165740 Locally Recurrent Merkel Cell Carcinoma 7 233443 -NCIT:C143012 Recurrent Skin Squamous Cell Carcinoma 6 233444 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 233445 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 7 233446 -NCIT:C165737 Locally Recurrent Skin Squamous Cell Carcinoma 7 233447 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 6 233448 -NCIT:C8953 Recurrent Lung Carcinoma 5 233449 -NCIT:C180923 Recurrent Bronchogenic Carcinoma 6 233450 -NCIT:C5014 Recurrent Lung Squamous Cell Carcinoma 6 233451 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 7 233452 -NCIT:C7783 Recurrent Lung Non-Small Cell Carcinoma 6 233453 -NCIT:C128797 Recurrent Lung Non-Squamous Non-Small Cell Carcinoma 7 233454 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 7 233455 -NCIT:C190195 Locally Recurrent Lung Non-Small Cell Carcinoma 7 233456 -NCIT:C8747 Recurrent Lung Adenosquamous Carcinoma 7 233457 -NCIT:C8753 Recurrent Lung Large Cell Carcinoma 7 233458 -NCIT:C8757 Recurrent Lung Adenocarcinoma 7 233459 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 6 233460 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 7 233461 -NCIT:C9181 Recurrent Carcinoma of Unknown Primary 5 233462 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 6 233463 -NCIT:C7625 Localized Carcinoma 4 233464 -NCIT:C156166 Localized Gastroesophageal Junction Adenocarcinoma 5 233465 -NCIT:C156167 Localized Gastric Carcinoma 5 233466 -NCIT:C162569 Localized Head and Neck Carcinoma 5 233467 -NCIT:C7826 Localized Parathyroid Gland Carcinoma 6 233468 -NCIT:C162570 Localized Lung Carcinoma 5 233469 -NCIT:C162782 Localized Breast Carcinoma 5 233470 -NCIT:C166171 Localized Esophageal Carcinoma 5 233471 -NCIT:C169041 Localized Pancreatic Adenocarcinoma 5 233472 -NCIT:C189009 Localized Pancreatic Ductal Adenocarcinoma 6 233473 -NCIT:C176517 Localized Prostate Carcinoma 5 233474 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 5 233475 -NCIT:C7649 Localized Gallbladder Carcinoma 5 233476 -NCIT:C7877 Localized Resectable Adult Liver Carcinoma 5 233477 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 6 233478 -NCIT:C7878 Localized Unresectable Adult Liver Carcinoma 5 233479 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 6 233480 -NCIT:C7891 Localized Extrahepatic Bile Duct Carcinoma 5 233481 -NCIT:C8167 Localized Renal Pelvis and Ureter Urothelial Carcinoma 5 233482 -NCIT:C7682 Carcinoma in a Polyp 4 233483 -NCIT:C7676 Adenocarcinoma in Adenomatous Polyp 5 233484 -NCIT:C162531 Invasive Adenocarcinoma in Adenomatous Polyp 6 233485 -NCIT:C4136 Adenocarcinoma in Multiple Adenomatous Polyps 6 233486 -NCIT:C4134 Adenocarcinoma in Adenomatous Polyposis Coli 7 233487 -NCIT:C4141 Adenocarcinoma in Villous Adenoma 6 233488 -NCIT:C8376 Adenocarcinoma In Situ in Villous Adenoma 7 233489 -NCIT:C4145 Adenocarcinoma in Tubulovillous Adenoma 6 233490 -NCIT:C4144 Adenocarcinoma In Situ in Tubulovillous Adenoma 7 233491 -NCIT:C7677 Adenocarcinoma in Tubular Adenoma 6 233492 -NCIT:C7679 Adenocarcinoma In Situ in Tubular Adenoma 7 233493 -NCIT:C7678 Adenocarcinoma In Situ in Adenomatous Polyp 6 233494 -NCIT:C4144 Adenocarcinoma In Situ in Tubulovillous Adenoma 7 233495 -NCIT:C7679 Adenocarcinoma In Situ in Tubular Adenoma 7 233496 -NCIT:C8376 Adenocarcinoma In Situ in Villous Adenoma 7 233497 -NCIT:C7681 Carcinoma In Situ in a Polyp 5 233498 -NCIT:C7680 Adenocarcinoma In Situ in a Polyp 6 233499 -NCIT:C7678 Adenocarcinoma In Situ in Adenomatous Polyp 7 233500 -NCIT:C4144 Adenocarcinoma In Situ in Tubulovillous Adenoma 8 233501 -NCIT:C7679 Adenocarcinoma In Situ in Tubular Adenoma 8 233502 -NCIT:C8376 Adenocarcinoma In Situ in Villous Adenoma 8 233503 -NCIT:C8500 Bilateral Carcinoma 4 233504 -NCIT:C150359 Bilateral Synchronous Sporadic Renal Cell Carcinoma 5 233505 -NCIT:C8287 Bilateral Breast Carcinoma 5 233506 -NCIT:C40370 Synchronous Bilateral Breast Carcinoma 6 233507 -NCIT:C99390 Contralateral Breast Carcinoma 6 233508 -NCIT:C8511 Refractory Carcinoma 4 233509 -NCIT:C141076 Refractory Lung Carcinoma 5 233510 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 6 233511 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 7 233512 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 7 233513 -NCIT:C153081 Refractory Lung Non-Small Cell Carcinoma 6 233514 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 7 233515 -NCIT:C176858 Refractory Lung Non-Squamous Non-Small Cell Carcinoma 7 233516 -NCIT:C179209 Refractory Lung Adenocarcinoma 7 233517 -NCIT:C173331 Refractory Lung Squamous Cell Carcinoma 6 233518 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 7 233519 -NCIT:C147965 Refractory Breast Carcinoma 5 233520 -NCIT:C165703 Refractory Breast Adenocarcinoma 6 233521 -NCIT:C157057 Refractory Hormone Receptor-Positive Breast Carcinoma 7 233522 -NCIT:C167076 Refractory Triple-Negative Breast Carcinoma 7 233523 -NCIT:C168784 Refractory HER2-Negative Breast Carcinoma 7 233524 -NCIT:C182110 Refractory HER2-Positive Breast Carcinoma 7 233525 -NCIT:C148173 Refractory Thymic Carcinoma 5 233526 -NCIT:C151906 Refractory Digestive System Carcinoma 5 233527 -NCIT:C137857 Refractory Anal Carcinoma 6 233528 -NCIT:C173334 Refractory Anal Canal Squamous Cell Carcinoma 7 233529 -NCIT:C147982 Refractory Colorectal Carcinoma 6 233530 -NCIT:C153351 Refractory Colon Carcinoma 7 233531 -NCIT:C162155 Refractory Colon Adenocarcinoma 8 233532 -NCIT:C162154 Refractory Colorectal Adenocarcinoma 7 233533 -NCIT:C162155 Refractory Colon Adenocarcinoma 8 233534 -NCIT:C162157 Refractory Rectal Adenocarcinoma 8 233535 -NCIT:C162156 Refractory Rectal Carcinoma 7 233536 -NCIT:C162157 Refractory Rectal Adenocarcinoma 8 233537 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 8 233538 -NCIT:C173332 Refractory Microsatellite Stable Colorectal Carcinoma 7 233539 -NCIT:C147996 Refractory Gastric Carcinoma 6 233540 -NCIT:C167074 Refractory Gastric Adenocarcinoma 7 233541 -NCIT:C151904 Refractory Metastatic Digestive System Carcinoma 6 233542 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 7 233543 -NCIT:C153352 Refractory Liver Carcinoma 6 233544 -NCIT:C162450 Refractory Hepatocellular Carcinoma 7 233545 -NCIT:C188887 Refractory Fibrolamellar Carcinoma 8 233546 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 7 233547 -NCIT:C153356 Refractory Small Intestinal Carcinoma 6 233548 -NCIT:C155937 Refractory Digestive System Neuroendocrine Carcinoma 6 233549 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 7 233550 -NCIT:C162538 Refractory Gastroesophageal Junction Adenocarcinoma 6 233551 -NCIT:C171604 Refractory Esophageal Carcinoma 6 233552 -NCIT:C171606 Refractory Esophageal Squamous Cell Carcinoma 7 233553 -NCIT:C176892 Refractory Esophageal Adenocarcinoma 7 233554 -NCIT:C179177 Refractory Appendix Carcinoma 6 233555 -NCIT:C179178 Refractory Appendix Adenocarcinoma 7 233556 -NCIT:C185305 Refractory Pancreatobiliary Carcinoma 6 233557 -NCIT:C142808 Refractory Pancreatic Carcinoma 7 233558 -NCIT:C162015 Refractory Pancreatic Adenocarcinoma 8 233559 -NCIT:C165450 Refractory Pancreatic Ductal Adenocarcinoma 9 233560 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 9 233561 -NCIT:C162750 Refractory Biliary Tract Carcinoma 7 233562 -NCIT:C153355 Refractory Bile Duct Carcinoma 8 233563 -NCIT:C158101 Refractory Cholangiocarcinoma 9 233564 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 10 233565 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 233566 -NCIT:C175437 Refractory Extrahepatic Bile Duct Carcinoma 9 233567 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 233568 -NCIT:C162753 Refractory Gallbladder Carcinoma 8 233569 -NCIT:C175436 Refractory Ampulla of Vater Carcinoma 7 233570 -NCIT:C151907 Refractory Head and Neck Carcinoma 5 233571 -NCIT:C142983 Refractory Thyroid Gland Carcinoma 6 233572 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 7 233573 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 8 233574 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 8 233575 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 9 233576 -NCIT:C170832 Refractory Thyroid Gland Anaplastic Carcinoma 7 233577 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 7 233578 -NCIT:C148152 Refractory Head and Neck Squamous Cell Carcinoma 6 233579 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 7 233580 -NCIT:C148383 Refractory Laryngeal Squamous Cell Carcinoma 7 233581 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 7 233582 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 7 233583 -NCIT:C148401 Refractory Sinonasal Squamous Cell Carcinoma 7 233584 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 233585 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 233586 -NCIT:C148434 Refractory Nasopharyngeal Carcinoma 6 233587 -NCIT:C177722 Refractory Salivary Gland Carcinoma 6 233588 -NCIT:C179151 Platinum-Resistant Head and Neck Carcinoma 6 233589 -NCIT:C152046 Refractory Primary Peritoneal Carcinoma 5 233590 -NCIT:C157622 Platinum-Resistant Primary Peritoneal Carcinoma 6 233591 -NCIT:C170751 Recurrent Platinum-Resistant Primary Peritoneal Carcinoma 7 233592 -NCIT:C170975 Refractory Primary Peritoneal Adenocarcinoma 6 233593 -NCIT:C171021 Refractory Primary Peritoneal Serous Adenocarcinoma 7 233594 -NCIT:C178686 Refractory Primary Peritoneal High Grade Serous Adenocarcinoma 8 233595 -NCIT:C178687 Refractory Primary Peritoneal Low Grade Serous Adenocarcinoma 8 233596 -NCIT:C178684 Refractory Primary Peritoneal Clear Cell Adenocarcinoma 7 233597 -NCIT:C178685 Refractory Primary Peritoneal Endometrioid Adenocarcinoma 7 233598 -NCIT:C178688 Refractory Primary Peritoneal Transitional Cell Carcinoma 6 233599 -NCIT:C178689 Refractory Primary Peritoneal Undifferentiated Carcinoma 6 233600 -NCIT:C178702 Platinum-Refractory Primary Peritoneal Carcinoma 6 233601 -NCIT:C152048 Refractory Female Reproductive System Carcinoma 5 233602 -NCIT:C150091 Refractory Ovarian Carcinoma 6 233603 -NCIT:C147561 Platinum-Resistant Ovarian Carcinoma 7 233604 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 8 233605 -NCIT:C179459 Unresectable Platinum-Resistant Ovarian Carcinoma 8 233606 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 8 233607 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 233608 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 233609 -NCIT:C170968 Refractory Ovarian Adenocarcinoma 7 233610 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 8 233611 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 8 233612 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 9 233613 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 9 233614 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 8 233615 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 8 233616 -NCIT:C178671 Refractory Ovarian Seromucinous Carcinoma 7 233617 -NCIT:C178682 Refractory Ovarian Transitional Cell Carcinoma 7 233618 -NCIT:C178683 Refractory Ovarian Undifferentiated Carcinoma 7 233619 -NCIT:C178700 Platinum-Refractory Ovarian Carcinoma 7 233620 -NCIT:C179207 Refractory Ovarian Squamous Cell Carcinoma 7 233621 -NCIT:C183126 Refractory Malignant Ovarian Brenner Tumor 7 233622 -NCIT:C150093 Refractory Endometrial Carcinoma 6 233623 -NCIT:C165286 Refractory Endometrial Dedifferentiated Carcinoma 7 233624 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 7 233625 -NCIT:C165288 Refractory Endometrial Transitional Cell Carcinoma 7 233626 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 7 233627 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 8 233628 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 8 233629 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 8 233630 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 8 233631 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 8 233632 -NCIT:C165298 Refractory Endometrial Undifferentiated Carcinoma 7 233633 -NCIT:C188230 Refractory Microsatellite Stable Endometrial Carcinoma 7 233634 -NCIT:C152047 Refractory Fallopian Tube Carcinoma 6 233635 -NCIT:C157621 Platinum-Resistant Fallopian Tube Carcinoma 7 233636 -NCIT:C170750 Recurrent Platinum-Resistant Fallopian Tube Carcinoma 8 233637 -NCIT:C170971 Refractory Fallopian Tube Adenocarcinoma 7 233638 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 8 233639 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 8 233640 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 8 233641 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 8 233642 -NCIT:C178674 Refractory Fallopian Tube Transitional Cell Carcinoma 7 233643 -NCIT:C178675 Refractory Fallopian Tube Undifferentiated Carcinoma 7 233644 -NCIT:C178698 Platinum-Refractory Fallopian Tube Carcinoma 7 233645 -NCIT:C170513 Refractory Cervical Carcinoma 6 233646 -NCIT:C181034 Refractory Cervical Squamous Cell Carcinoma 7 233647 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 8 233648 -NCIT:C181036 Refractory Cervical Adenocarcinoma 7 233649 -NCIT:C174508 Refractory Vulvar Carcinoma 6 233650 -NCIT:C185304 Refractory Vulvar Squamous Cell Carcinoma 7 233651 -NCIT:C174509 Refractory Vaginal Carcinoma 6 233652 -NCIT:C185303 Refractory Vaginal Squamous Cell Carcinoma 7 233653 -NCIT:C159563 Refractory Adenocarcinoma 5 233654 -NCIT:C158101 Refractory Cholangiocarcinoma 6 233655 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 7 233656 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 7 233657 -NCIT:C162015 Refractory Pancreatic Adenocarcinoma 6 233658 -NCIT:C165450 Refractory Pancreatic Ductal Adenocarcinoma 7 233659 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 7 233660 -NCIT:C162154 Refractory Colorectal Adenocarcinoma 6 233661 -NCIT:C162155 Refractory Colon Adenocarcinoma 7 233662 -NCIT:C162157 Refractory Rectal Adenocarcinoma 7 233663 -NCIT:C162450 Refractory Hepatocellular Carcinoma 6 233664 -NCIT:C188887 Refractory Fibrolamellar Carcinoma 7 233665 -NCIT:C162538 Refractory Gastroesophageal Junction Adenocarcinoma 6 233666 -NCIT:C165289 Refractory Endometrial Adenocarcinoma 6 233667 -NCIT:C150098 Refractory Endometrial Endometrioid Adenocarcinoma 7 233668 -NCIT:C158378 Refractory Endometrial Serous Adenocarcinoma 7 233669 -NCIT:C158379 Refractory Endometrial Mixed Cell Adenocarcinoma 7 233670 -NCIT:C158380 Refractory Endometrial Clear Cell Adenocarcinoma 7 233671 -NCIT:C165290 Refractory Endometrial Mucinous Adenocarcinoma 7 233672 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 6 233673 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 7 233674 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 7 233675 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 8 233676 -NCIT:C165703 Refractory Breast Adenocarcinoma 6 233677 -NCIT:C157057 Refractory Hormone Receptor-Positive Breast Carcinoma 7 233678 -NCIT:C167076 Refractory Triple-Negative Breast Carcinoma 7 233679 -NCIT:C168784 Refractory HER2-Negative Breast Carcinoma 7 233680 -NCIT:C182110 Refractory HER2-Positive Breast Carcinoma 7 233681 -NCIT:C165745 Refractory Renal Cell Carcinoma 6 233682 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 7 233683 -NCIT:C167074 Refractory Gastric Adenocarcinoma 6 233684 -NCIT:C167256 Refractory Prostate Adenocarcinoma 6 233685 -NCIT:C170968 Refractory Ovarian Adenocarcinoma 6 233686 -NCIT:C150096 Refractory Ovarian Endometrioid Adenocarcinoma 7 233687 -NCIT:C171015 Refractory Ovarian Serous Adenocarcinoma 7 233688 -NCIT:C178677 Refractory Ovarian High Grade Serous Adenocarcinoma 8 233689 -NCIT:C178679 Refractory Ovarian Low Grade Serous Adenocarcinoma 8 233690 -NCIT:C178680 Refractory Ovarian Clear Cell Adenocarcinoma 7 233691 -NCIT:C178681 Refractory Ovarian Mucinous Adenocarcinoma 7 233692 -NCIT:C170971 Refractory Fallopian Tube Adenocarcinoma 6 233693 -NCIT:C178670 Refractory Fallopian Tube Mucinous Adenocarcinoma 7 233694 -NCIT:C178672 Refractory Fallopian Tube Clear Cell Adenocarcinoma 7 233695 -NCIT:C178673 Refractory Fallopian Tube Endometrioid Adenocarcinoma 7 233696 -NCIT:C178676 Refractory Fallopian Tube High Grade Serous Adenocarcinoma 7 233697 -NCIT:C170975 Refractory Primary Peritoneal Adenocarcinoma 6 233698 -NCIT:C171021 Refractory Primary Peritoneal Serous Adenocarcinoma 7 233699 -NCIT:C178686 Refractory Primary Peritoneal High Grade Serous Adenocarcinoma 8 233700 -NCIT:C178687 Refractory Primary Peritoneal Low Grade Serous Adenocarcinoma 8 233701 -NCIT:C178684 Refractory Primary Peritoneal Clear Cell Adenocarcinoma 7 233702 -NCIT:C178685 Refractory Primary Peritoneal Endometrioid Adenocarcinoma 7 233703 -NCIT:C176892 Refractory Esophageal Adenocarcinoma 6 233704 -NCIT:C179178 Refractory Appendix Adenocarcinoma 6 233705 -NCIT:C179180 Refractory Pseudomyxoma Peritonei 6 233706 -NCIT:C179209 Refractory Lung Adenocarcinoma 6 233707 -NCIT:C181036 Refractory Cervical Adenocarcinoma 6 233708 -NCIT:C188036 Refractory Adrenal Cortical Carcinoma 6 233709 -NCIT:C162719 Refractory Urinary System Carcinoma 5 233710 -NCIT:C150316 Refractory Bladder Carcinoma 6 233711 -NCIT:C148286 Refractory Stage 0 Bladder Cancer AJCC v6 and v7 7 233712 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 7 233713 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 8 233714 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 7 233715 -NCIT:C150364 Refractory Urothelial Carcinoma 6 233716 -NCIT:C150365 Platinum-Resistant Urothelial Carcinoma 7 233717 -NCIT:C165702 Refractory Bladder Urothelial Carcinoma 7 233718 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 8 233719 -NCIT:C176995 Refractory Ureter Urothelial Carcinoma 7 233720 -NCIT:C176996 Refractory Urethral Urothelial Carcinoma 7 233721 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 7 233722 -NCIT:C172623 Refractory Kidney Carcinoma 6 233723 -NCIT:C162727 Refractory Kidney Medullary Carcinoma 7 233724 -NCIT:C165745 Refractory Renal Cell Carcinoma 7 233725 -NCIT:C164236 Refractory Clear Cell Renal Cell Carcinoma 8 233726 -NCIT:C176997 Refractory Renal Pelvis Urothelial Carcinoma 7 233727 -NCIT:C162733 Refractory Malignant Myoepithelioma 5 233728 -NCIT:C165742 Refractory Neuroendocrine Carcinoma 5 233729 -NCIT:C155937 Refractory Digestive System Neuroendocrine Carcinoma 6 233730 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 7 233731 -NCIT:C165741 Refractory Merkel Cell Carcinoma 6 233732 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 6 233733 -NCIT:C191853 Refractory Small Cell Neuroendocrine Carcinoma 6 233734 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 7 233735 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 8 233736 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 8 233737 -NCIT:C191854 Refractory Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 233738 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 8 233739 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 8 233740 -NCIT:C171605 Refractory Squamous Cell Carcinoma 5 233741 -NCIT:C148152 Refractory Head and Neck Squamous Cell Carcinoma 6 233742 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 7 233743 -NCIT:C148383 Refractory Laryngeal Squamous Cell Carcinoma 7 233744 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 7 233745 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 7 233746 -NCIT:C148401 Refractory Sinonasal Squamous Cell Carcinoma 7 233747 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 233748 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 233749 -NCIT:C165287 Refractory Endometrial Squamous Cell Carcinoma 6 233750 -NCIT:C165735 Refractory Skin Squamous Cell Carcinoma 6 233751 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 233752 -NCIT:C171606 Refractory Esophageal Squamous Cell Carcinoma 6 233753 -NCIT:C173331 Refractory Lung Squamous Cell Carcinoma 6 233754 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 7 233755 -NCIT:C173334 Refractory Anal Canal Squamous Cell Carcinoma 6 233756 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 6 233757 -NCIT:C179207 Refractory Ovarian Squamous Cell Carcinoma 6 233758 -NCIT:C181034 Refractory Cervical Squamous Cell Carcinoma 6 233759 -NCIT:C181035 Refractory Cervical Squamous Cell Carcinoma, Not Otherwise Specified 7 233760 -NCIT:C185303 Refractory Vaginal Squamous Cell Carcinoma 6 233761 -NCIT:C185304 Refractory Vulvar Squamous Cell Carcinoma 6 233762 -NCIT:C175668 Refractory Adenoid Cystic Carcinoma 5 233763 -NCIT:C177149 Refractory Male Reproductive System Carcinoma 5 233764 -NCIT:C167255 Refractory Prostate Carcinoma 6 233765 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 7 233766 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 8 233767 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 8 233768 -NCIT:C161609 Double-Negative Prostate Carcinoma 8 233769 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 8 233770 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 8 233771 -NCIT:C167256 Refractory Prostate Adenocarcinoma 7 233772 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 7 233773 -NCIT:C177150 Refractory Penile Carcinoma 6 233774 -NCIT:C9347 Tracheal Carcinoma 4 233775 -NCIT:C4448 Tracheal Squamous Cell Carcinoma 5 233776 -NCIT:C3639 Tracheal Carcinoma In Situ 6 233777 -NCIT:C6051 Tracheal Adenoid Cystic Carcinoma 5 233778 -NCIT:C9480 Invasive Carcinoma 4 233779 -NCIT:C136709 Invasive Lung Mucinous Adenocarcinoma 5 233780 -NCIT:C150570 Invasive Bladder Carcinoma 5 233781 -NCIT:C150572 Muscle Invasive Bladder Carcinoma 6 233782 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 7 233783 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 8 233784 -NCIT:C165716 Invasive Bladder Mixed Carcinoma 6 233785 -NCIT:C27474 Non-Muscle Invasive Bladder Carcinoma 6 233786 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 7 233787 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 8 233788 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 8 233789 -NCIT:C190772 Metastatic Non-Muscle Invasive Bladder Carcinoma 7 233790 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 8 233791 -NCIT:C190774 Recurrent Non-Muscle Invasive Bladder Carcinoma 7 233792 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 8 233793 -NCIT:C27885 Invasive Bladder Urothelial Carcinoma 6 233794 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 7 233795 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 8 233796 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 8 233797 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 7 233798 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 8 233799 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 7 233800 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 7 233801 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 7 233802 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 7 233803 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 7 233804 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 233805 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 7 233806 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 7 233807 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 7 233808 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 7 233809 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 233810 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 7 233811 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 7 233812 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 7 233813 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 233814 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 7 233815 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 233816 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 8 233817 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 8 233818 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 7 233819 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 233820 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 7 233821 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 233822 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 7 233823 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 233824 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 7 233825 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 7 233826 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 7 233827 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 7 233828 -NCIT:C156123 Thyroid Gland Follicular Carcinoma, Widely Invasive 5 233829 -NCIT:C162531 Invasive Adenocarcinoma in Adenomatous Polyp 5 233830 -NCIT:C167354 Microinvasive Anal Carcinoma 5 233831 -NCIT:C183109 Invasive Lung Non-Mucinous Adenocarcinoma 5 233832 -NCIT:C123160 Lepidic Adenocarcinoma 6 233833 -NCIT:C5649 Lung Acinar Adenocarcinoma 6 233834 -NCIT:C5650 Lung Papillary Adenocarcinoma 6 233835 -NCIT:C128847 Lung Micropapillary Adenocarcinoma 7 233836 -NCIT:C5651 Solid Lung Adenocarcinoma 6 233837 -NCIT:C38760 Submucosal Invasive Colon Adenocarcinoma 5 233838 -NCIT:C39853 Invasive Urothelial Carcinoma 5 233839 -NCIT:C115966 Invasive Bladder Urothelial Carcinoma Associated with Urethral Carcinoma 6 233840 -NCIT:C164252 Invasive Sarcomatoid Urothelial Carcinoma 6 233841 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 7 233842 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 233843 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 7 233844 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 233845 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 8 233846 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 8 233847 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 7 233848 -NCIT:C191678 Invasive Lymphoepithelioma-Like Urothelial Carcinoma 6 233849 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 7 233850 -NCIT:C191679 Invasive Giant Cell Urothelial Carcinoma 6 233851 -NCIT:C191693 Metastatic Giant Cell Urothelial Carcinoma 7 233852 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 233853 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 7 233854 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 233855 -NCIT:C191680 Invasive Urothelial Carcinoma with Glandular Differentiation 6 233856 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 7 233857 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 7 233858 -NCIT:C191681 Invasive Urothelial Carcinoma with Squamous Differentiation 6 233859 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 7 233860 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 7 233861 -NCIT:C191682 Invasive Urothelial Carcinoma with Trophoblastic Differentiation 6 233862 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 7 233863 -NCIT:C191683 Invasive Clear Cell (Glycogen-Rich) Urothelial Carcinoma 6 233864 -NCIT:C191692 Metastatic Clear Cell (Glycogen-Rich) Urothelial Carcinoma 7 233865 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 233866 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 7 233867 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 233868 -NCIT:C191684 Invasive Lipid-Rich Urothelial Carcinoma 6 233869 -NCIT:C191694 Metastatic Lipid-Rich Urothelial Carcinoma 7 233870 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 233871 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 7 233872 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 233873 -NCIT:C191685 Invasive Microcystic Urothelial Carcinoma 6 233874 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 7 233875 -NCIT:C191686 Invasive Micropapillary Urothelial Carcinoma 6 233876 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 7 233877 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 233878 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 7 233879 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 233880 -NCIT:C191687 Invasive Nested Urothelial Carcinoma 6 233881 -NCIT:C191696 Metastatic Nested Urothelial Carcinoma 7 233882 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 233883 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 7 233884 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 233885 -NCIT:C191688 Invasive Plasmacytoid Urothelial Carcinoma 6 233886 -NCIT:C191697 Metastatic Plasmacytoid Urothelial Carcinoma 7 233887 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 233888 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 7 233889 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 233890 -NCIT:C191725 Invasive Large Nested Urothelial Carcinoma 6 233891 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 7 233892 -NCIT:C191728 Invasive Tubular Urothelial Carcinoma 6 233893 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 7 233894 -NCIT:C191730 Invasive Poorly Differentiated Urothelial Carcinoma 6 233895 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 7 233896 -NCIT:C191734 Invasive Conventional Urothelial Carcinoma 6 233897 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 7 233898 -NCIT:C27885 Invasive Bladder Urothelial Carcinoma 6 233899 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 7 233900 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 8 233901 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 8 233902 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 7 233903 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 8 233904 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 7 233905 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 7 233906 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 7 233907 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 7 233908 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 7 233909 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 233910 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 7 233911 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 7 233912 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 7 233913 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 7 233914 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 233915 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 7 233916 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 7 233917 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 7 233918 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 233919 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 7 233920 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 233921 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 8 233922 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 8 233923 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 7 233924 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 233925 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 7 233926 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 233927 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 7 233928 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 233929 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 7 233930 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 7 233931 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 7 233932 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 7 233933 -NCIT:C39879 Invasive Renal Pelvis and Ureter Urothelial Carcinoma 6 233934 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 7 233935 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 7 233936 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 7 233937 -NCIT:C41246 Pancreatic Mucinous-Cystic Neoplasm with an Associated Invasive Carcinoma 5 233938 -NCIT:C48596 Invasive Prostate Carcinoma 5 233939 -NCIT:C158912 Prostate Neuroendocrine Carcinoma 6 233940 -NCIT:C158650 Prostate Large Cell Neuroendocrine Carcinoma 7 233941 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 7 233942 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 233943 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 233944 -NCIT:C6766 Prostate Small Cell Neuroendocrine Carcinoma 7 233945 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 233946 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 8 233947 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 8 233948 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 8 233949 -NCIT:C2919 Prostate Adenocarcinoma 6 233950 -NCIT:C150557 Prostate Adenocarcinoma without Neuroendocrine Differentiation 7 233951 -NCIT:C164185 Aggressive Prostate Adenocarcinoma 7 233952 -NCIT:C164186 Prostate Adenocarcinoma by AJCC v7 Stage 7 233953 -NCIT:C8947 Stage I Prostate Adenocarcinoma AJCC v7 8 233954 -NCIT:C8948 Stage II Prostate Adenocarcinoma AJCC v7 8 233955 -NCIT:C8949 Stage III Prostate Adenocarcinoma AJCC v7 8 233956 -NCIT:C8950 Stage IV Prostate Adenocarcinoma AJCC v7 8 233957 -NCIT:C167256 Refractory Prostate Adenocarcinoma 7 233958 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 7 233959 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 8 233960 -NCIT:C27905 Well Differentiated Prostate Adenocarcinoma 7 233961 -NCIT:C39896 Prostate Ductal Adenocarcinoma, Papillary Pattern 8 233962 -NCIT:C27906 Moderately Differentiated Prostate Adenocarcinoma 7 233963 -NCIT:C27916 Poorly Differentiated Prostate Adenocarcinoma 7 233964 -NCIT:C5530 Prostate Acinar Adenocarcinoma, Sarcomatoid Variant 8 233965 -NCIT:C39903 Prostate Adenocarcinoma with Neuroendocrine Differentiation 7 233966 -NCIT:C158656 Usual Prostate Adenocarcinoma with Neuroendocrine Differentiation 8 233967 -NCIT:C158664 Prostate Adenocarcinoma with Paneth Cell-Like Neuroendocrine Differentiation 8 233968 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 8 233969 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 233970 -NCIT:C5596 Prostate Acinar Adenocarcinoma 7 233971 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 8 233972 -NCIT:C158656 Usual Prostate Adenocarcinoma with Neuroendocrine Differentiation 8 233973 -NCIT:C160817 Prostate Acinar Adenocarcinoma, Microcystic Variant 8 233974 -NCIT:C160818 Prostate Acinar Adenocarcinoma, Pleomorphic Giant Cell Variant 8 233975 -NCIT:C39880 Prostate Acinar Adenocarcinoma, Atrophic Variant 8 233976 -NCIT:C39881 Prostate Acinar Adenocarcinoma, Pseudohyperplastic Variant 8 233977 -NCIT:C39882 Prostate Acinar Adenocarcinoma, Foamy Gland Variant 8 233978 -NCIT:C39884 Prostate Acinar Adenocarcinoma, Oncocytic Variant 8 233979 -NCIT:C39885 Prostate Acinar Adenocarcinoma, Lymphoepithelioma-Like Variant 8 233980 -NCIT:C5530 Prostate Acinar Adenocarcinoma, Sarcomatoid Variant 8 233981 -NCIT:C5535 Prostate Acinar Adenocarcinoma, Signet Ring-Like Cell Variant 8 233982 -NCIT:C5537 Prostate Acinar Mucinous Adenocarcinoma 8 233983 -NCIT:C6813 Prostate Ductal Adenocarcinoma 7 233984 -NCIT:C39895 Prostate Ductal Adenocarcinoma, Cribriform Pattern 8 233985 -NCIT:C39896 Prostate Ductal Adenocarcinoma, Papillary Pattern 8 233986 -NCIT:C39897 Prostate Ductal Adenocarcinoma, Solid Pattern 8 233987 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 7 233988 -NCIT:C156286 Advanced Prostate Adenocarcinoma 8 233989 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 233990 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 8 233991 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 233992 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 8 233993 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 233994 -NCIT:C39902 Prostate Basal Cell Carcinoma 6 233995 -NCIT:C5536 Prostate Squamous Cell Carcinoma 6 233996 -NCIT:C5538 Prostate Adenosquamous Carcinoma 6 233997 -NCIT:C5539 Prostate Adenoid Cystic Carcinoma 6 233998 -NCIT:C5597 Prostate Undifferentiated Carcinoma 6 233999 -NCIT:C65178 Microinvasive Squamous Cell Carcinoma 5 234000 -NCIT:C65200 Thyroid Gland Follicular Carcinoma, Minimally Invasive 5 234001 -NCIT:C7438 Invasive Papillary Adenocarcinoma 5 234002 -NCIT:C36085 Invasive Breast Papillary Carcinoma 6 234003 -NCIT:C176010 Encapsulated Breast Papillary Carcinoma with Invasion 7 234004 -NCIT:C176012 Invasive Breast Solid Papillary Carcinoma 7 234005 -NCIT:C36084 Invasive Breast Micropapillary Carcinoma 7 234006 -NCIT:C7439 Breast Papillary Ductal Carcinoma In Situ with Invasion 7 234007 -NCIT:C39896 Prostate Ductal Adenocarcinoma, Papillary Pattern 6 234008 -NCIT:C5650 Lung Papillary Adenocarcinoma 6 234009 -NCIT:C128847 Lung Micropapillary Adenocarcinoma 7 234010 -NCIT:C7381 Invasive Follicular Variant Thyroid Gland Papillary Carcinoma 6 234011 -NCIT:C95967 Ampulla of Vater Invasive Papillary Adenocarcinoma 6 234012 -NCIT:C8577 Invasive Cervical Carcinoma 5 234013 -NCIT:C9245 Invasive Breast Carcinoma 5 234014 -NCIT:C175581 Breast Neuroendocrine Carcinoma 6 234015 -NCIT:C40356 Breast Large Cell Neuroendocrine Carcinoma 7 234016 -NCIT:C6760 Breast Small Cell Neuroendocrine Carcinoma 7 234017 -NCIT:C175604 Breast Polymorphous Adenocarcinoma 6 234018 -NCIT:C175607 Breast Tall Cell Carcinoma with Reversed Polarity 6 234019 -NCIT:C176504 Invasive Male Breast Carcinoma 6 234020 -NCIT:C176579 Invasive Female Breast Carcinoma 6 234021 -NCIT:C27829 Invasive Breast Carcinoma by Histologic Grade 6 234022 -NCIT:C27830 Grade 1 Invasive Breast Carcinoma 7 234023 -NCIT:C27831 Grade 2 Invasive Breast Carcinoma 7 234024 -NCIT:C27832 Grade 3 Invasive Breast Carcinoma 7 234025 -NCIT:C5161 Breast Pleomorphic Carcinoma 8 234026 -NCIT:C36085 Invasive Breast Papillary Carcinoma 6 234027 -NCIT:C176010 Encapsulated Breast Papillary Carcinoma with Invasion 7 234028 -NCIT:C176012 Invasive Breast Solid Papillary Carcinoma 7 234029 -NCIT:C36084 Invasive Breast Micropapillary Carcinoma 7 234030 -NCIT:C7439 Breast Papillary Ductal Carcinoma In Situ with Invasion 7 234031 -NCIT:C4001 Breast Inflammatory Carcinoma 6 234032 -NCIT:C158751 Unresectable Breast Inflammatory Carcinoma 7 234033 -NCIT:C181787 Metastatic Breast Inflammatory Carcinoma 7 234034 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 8 234035 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 8 234036 -NCIT:C9246 Stage IIIB Breast Inflammatory Carcinoma 8 234037 -NCIT:C8607 Recurrent Breast Inflammatory Carcinoma 7 234038 -NCIT:C40347 Breast Mixed Carcinoma 6 234039 -NCIT:C40361 Breast Adenosquamous Carcinoma 7 234040 -NCIT:C40362 Low Grade Breast Adenosquamous Carcinoma 8 234041 -NCIT:C6393 Invasive Breast Ductal Carcinoma and Invasive Lobular Carcinoma 7 234042 -NCIT:C40354 Breast Mucinous Cystadenocarcinoma 6 234043 -NCIT:C40367 Breast Acinic Cell Carcinoma 6 234044 -NCIT:C153568 Recurrent Breast Acinic Cell Carcinoma 7 234045 -NCIT:C40374 Microinvasive Breast Carcinoma 6 234046 -NCIT:C40395 Breast Malignant Myoepithelioma 6 234047 -NCIT:C4189 Breast Secretory Carcinoma 6 234048 -NCIT:C4194 Invasive Breast Carcinoma of No Special Type 6 234049 -NCIT:C153587 Recurrent Invasive Breast Carcinoma of No Special Type 7 234050 -NCIT:C175585 Breast Carcinoma with Neuroendocrine Differentiation 7 234051 -NCIT:C40349 Breast Carcinoma with Osteoclast-Like Stromal Giant Cells 7 234052 -NCIT:C40350 Breast Carcinoma with Choriocarcinomatous Features 7 234053 -NCIT:C40351 Breast Carcinoma with Melanotic Features 7 234054 -NCIT:C40365 Breast Lipid-Rich Carcinoma 7 234055 -NCIT:C40366 Breast Oncocytic Carcinoma 7 234056 -NCIT:C40368 Glycogen-Rich, Clear Cell Breast Carcinoma 7 234057 -NCIT:C40369 Breast Sebaceous Carcinoma 7 234058 -NCIT:C5161 Breast Pleomorphic Carcinoma 7 234059 -NCIT:C66719 Breast Atypical Medullary Carcinoma 7 234060 -NCIT:C6987 Breast Ductal Carcinoma with Squamous Metaplasia 7 234061 -NCIT:C7362 Breast Scirrhous Carcinoma 7 234062 -NCIT:C9119 Breast Medullary Carcinoma 7 234063 -NCIT:C9132 Invasive Breast Carcinoma of No Special Type with Predominant Intraductal Component 7 234064 -NCIT:C5130 Breast Adenoid Cystic Carcinoma 6 234065 -NCIT:C5142 Invasive Breast Cribriform Carcinoma 6 234066 -NCIT:C5164 Breast Metaplastic Carcinoma 6 234067 -NCIT:C40360 Breast Adenocarcinoma with Spindle Cell Metaplasia 7 234068 -NCIT:C40364 Breast Mixed Epithelial/Mesenchymal Metaplastic Carcinoma 7 234069 -NCIT:C47847 Breast Carcinoma with Chondroid Metaplasia 8 234070 -NCIT:C47848 Breast Carcinoma with Osseous Metaplasia 8 234071 -NCIT:C5163 Breast Adenocarcinoma with Squamous Metaplasia 7 234072 -NCIT:C6987 Breast Ductal Carcinoma with Squamous Metaplasia 8 234073 -NCIT:C5166 Breast Mucoepidermoid Carcinoma 6 234074 -NCIT:C5167 High Grade Breast Mucoepidermoid Carcinoma 7 234075 -NCIT:C5168 Low Grade Breast Mucoepidermoid Carcinoma 7 234076 -NCIT:C5175 Breast Signet Ring Cell Carcinoma 6 234077 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 7 234078 -NCIT:C54691 Invasive Breast Lobular Carcinoma, Signet Ring Variant 7 234079 -NCIT:C5177 Breast Squamous Cell Carcinoma 6 234080 -NCIT:C40357 Breast Squamous Cell Carcinoma, Large Cell Keratinizing Variant 7 234081 -NCIT:C40358 Breast Squamous Cell Carcinoma, Spindle Cell Variant 7 234082 -NCIT:C40359 Breast Squamous Cell Carcinoma, Acantholytic Variant 7 234083 -NCIT:C5178 Metastatic Breast Squamous Cell Carcinoma 7 234084 -NCIT:C5457 Invasive Breast Apocrine Carcinoma 6 234085 -NCIT:C7950 Invasive Breast Lobular Carcinoma 6 234086 -NCIT:C157235 Breast Histiocytoid Carcinoma 7 234087 -NCIT:C187405 Invasive Breast Lobular Carcinoma with Extracellular Mucin 7 234088 -NCIT:C54691 Invasive Breast Lobular Carcinoma, Signet Ring Variant 7 234089 -NCIT:C9136 Invasive Breast Lobular Carcinoma with Predominant In Situ Component 7 234090 -NCIT:C97049 Invasive Breast Lobular Carcinoma, Alveolar Variant 7 234091 -NCIT:C97051 Invasive Breast Lobular Carcinoma, Pleomorphic Variant 7 234092 -NCIT:C97052 Invasive Breast Lobular Carcinoma, Solid Variant 7 234093 -NCIT:C97053 Invasive Breast Lobular Carcinoma, Tubulolobular Variant 7 234094 -NCIT:C7951 Breast Paget Disease with Invasive Ductal Carcinoma 6 234095 -NCIT:C9131 Breast Mucinous Carcinoma 6 234096 -NCIT:C40355 Breast Columnar Cell Mucinous Carcinoma 7 234097 -NCIT:C9135 Breast Tubular Carcinoma 6 234098 -NCIT:C96963 Digestive System Carcinoma 4 234099 -NCIT:C133839 Metastatic Digestive System Carcinoma 5 234100 -NCIT:C150577 Metastatic Gastroesophageal Junction Adenocarcinoma 6 234101 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 7 234102 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 7 234103 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 234104 -NCIT:C151904 Refractory Metastatic Digestive System Carcinoma 6 234105 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 7 234106 -NCIT:C151905 Recurrent Metastatic Digestive System Carcinoma 6 234107 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 7 234108 -NCIT:C153320 Metastatic Gastric Carcinoma 6 234109 -NCIT:C153319 Metastatic Gastric Adenocarcinoma 7 234110 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 234111 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 234112 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 234113 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 234114 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 234115 -NCIT:C165630 Metastatic Proximal Gastric Adenocarcinoma 8 234116 -NCIT:C166121 Oligometastatic Gastric Adenocarcinoma 8 234117 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 234118 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 234119 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 7 234120 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 234121 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 234122 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 234123 -NCIT:C162772 Locally Advanced Gastric Carcinoma 7 234124 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 234125 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 234126 -NCIT:C165299 Advanced Gastric Carcinoma 7 234127 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 234128 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 234129 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 234130 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 234131 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 234132 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 7 234133 -NCIT:C153358 Locally Advanced Digestive System Carcinoma 6 234134 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 7 234135 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 234136 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 234137 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 234138 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 7 234139 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 234140 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 7 234141 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 8 234142 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 234143 -NCIT:C170778 Locally Advanced Rectal Carcinoma 8 234144 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 234145 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 234146 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 234147 -NCIT:C170910 Locally Advanced Colon Carcinoma 8 234148 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 234149 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 234150 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 234151 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 234152 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 234153 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 234154 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 234155 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 234156 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 234157 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 234158 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 234159 -NCIT:C162772 Locally Advanced Gastric Carcinoma 7 234160 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 234161 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 234162 -NCIT:C168976 Locally Advanced Esophageal Carcinoma 7 234163 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 234164 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 234165 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 234166 -NCIT:C168977 Locally Advanced Anal Carcinoma 7 234167 -NCIT:C170459 Locally Advanced Pancreatobiliary Carcinoma 7 234168 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 8 234169 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 234170 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 234171 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 234172 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 234173 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 234174 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 234175 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 234176 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 234177 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 8 234178 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 234179 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 234180 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 234181 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 8 234182 -NCIT:C171298 Locally Advanced Liver Carcinoma 7 234183 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 234184 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 8 234185 -NCIT:C154088 Metastatic Liver Carcinoma 6 234186 -NCIT:C154091 Metastatic Hepatocellular Carcinoma 7 234187 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 8 234188 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 234189 -NCIT:C167336 Advanced Hepatocellular Carcinoma 8 234190 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 234191 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 234192 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 234193 -NCIT:C171298 Locally Advanced Liver Carcinoma 7 234194 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 234195 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 8 234196 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 7 234197 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 8 234198 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 8 234199 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 6 234200 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 7 234201 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 234202 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 234203 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 234204 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 7 234205 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 234206 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 234207 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 234208 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 7 234209 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 234210 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 234211 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 234212 -NCIT:C156073 Metastatic Esophageal Carcinoma 6 234213 -NCIT:C156074 Metastatic Esophageal Adenocarcinoma 7 234214 -NCIT:C166120 Oligometastatic Esophageal Adenocarcinoma 8 234215 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 234216 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 234217 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 234218 -NCIT:C172249 Metastatic Distal Esophagus Adenocarcinoma 8 234219 -NCIT:C156075 Metastatic Esophageal Squamous Cell Carcinoma 7 234220 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 234221 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 234222 -NCIT:C160599 Advanced Esophageal Carcinoma 7 234223 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 234224 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 234225 -NCIT:C168976 Locally Advanced Esophageal Carcinoma 7 234226 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 234227 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 234228 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 234229 -NCIT:C156096 Metastatic Colorectal Carcinoma 6 234230 -NCIT:C142867 Metastatic Microsatellite Stable Colorectal Carcinoma 7 234231 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 8 234232 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 8 234233 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 234234 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 8 234235 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 234236 -NCIT:C153224 Colorectal Carcinoma Metastatic in the Lung 7 234237 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 8 234238 -NCIT:C156097 Metastatic Colon Carcinoma 7 234239 -NCIT:C160819 Metastatic Colon Adenocarcinoma 8 234240 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 234241 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 234242 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 234243 -NCIT:C167238 Advanced Colon Carcinoma 8 234244 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 234245 -NCIT:C170910 Locally Advanced Colon Carcinoma 8 234246 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 234247 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 234248 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 234249 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 8 234250 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 234251 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 8 234252 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 8 234253 -NCIT:C156098 Metastatic Rectal Carcinoma 7 234254 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 8 234255 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 8 234256 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 234257 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 234258 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 234259 -NCIT:C170777 Advanced Rectal Carcinoma 8 234260 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 234261 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 234262 -NCIT:C170778 Locally Advanced Rectal Carcinoma 8 234263 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 234264 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 234265 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 234266 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 8 234267 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 234268 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 234269 -NCIT:C157366 Colorectal Carcinoma Metastatic in the Liver 7 234270 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 8 234271 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 8 234272 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 8 234273 -NCIT:C161048 Metastatic Colorectal Adenocarcinoma 7 234274 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 8 234275 -NCIT:C160819 Metastatic Colon Adenocarcinoma 8 234276 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 234277 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 234278 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 234279 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 8 234280 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 234281 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 234282 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 234283 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 8 234284 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 234285 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 234286 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 234287 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 234288 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 234289 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 234290 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 234291 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 234292 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 234293 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 234294 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 234295 -NCIT:C162475 Advanced Colorectal Carcinoma 7 234296 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 8 234297 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 234298 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 234299 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 234300 -NCIT:C167238 Advanced Colon Carcinoma 8 234301 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 234302 -NCIT:C170777 Advanced Rectal Carcinoma 8 234303 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 234304 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 234305 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 7 234306 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 8 234307 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 234308 -NCIT:C170778 Locally Advanced Rectal Carcinoma 8 234309 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 234310 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 234311 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 234312 -NCIT:C170910 Locally Advanced Colon Carcinoma 8 234313 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 234314 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 234315 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 234316 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 234317 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 234318 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 234319 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 234320 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 234321 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 234322 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 234323 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 234324 -NCIT:C185165 Oligometastatic Colorectal Carcinoma 7 234325 -NCIT:C156746 Advanced Digestive System Carcinoma 6 234326 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 7 234327 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 234328 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 234329 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 7 234330 -NCIT:C160599 Advanced Esophageal Carcinoma 7 234331 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 234332 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 234333 -NCIT:C162475 Advanced Colorectal Carcinoma 7 234334 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 8 234335 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 234336 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 234337 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 234338 -NCIT:C167238 Advanced Colon Carcinoma 8 234339 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 234340 -NCIT:C170777 Advanced Rectal Carcinoma 8 234341 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 234342 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 234343 -NCIT:C165299 Advanced Gastric Carcinoma 7 234344 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 234345 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 234346 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 234347 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 234348 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 234349 -NCIT:C167336 Advanced Hepatocellular Carcinoma 7 234350 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 8 234351 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 8 234352 -NCIT:C170515 Advanced Anal Carcinoma 7 234353 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 8 234354 -NCIT:C171330 Advanced Pancreatobiliary Carcinoma 7 234355 -NCIT:C165452 Advanced Pancreatic Carcinoma 8 234356 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 234357 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 234358 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 8 234359 -NCIT:C171331 Advanced Biliary Tract Carcinoma 8 234360 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 234361 -NCIT:C162752 Advanced Cholangiocarcinoma 10 234362 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 234363 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 234364 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 234365 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 234366 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 234367 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 234368 -NCIT:C182105 Advanced Appendix Adenocarcinoma 7 234369 -NCIT:C162275 Metastatic Appendix Carcinoma 6 234370 -NCIT:C182104 Metastatic Appendix Adenocarcinoma 7 234371 -NCIT:C162274 Metastatic Appendix Mucinous Adenocarcinoma 8 234372 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 234373 -NCIT:C163967 Metastatic Digestive System Mixed Adenoneuroendocrine Carcinoma 6 234374 -NCIT:C170458 Metastatic Pancreatobiliary Carcinoma 6 234375 -NCIT:C156069 Metastatic Pancreatic Carcinoma 7 234376 -NCIT:C165452 Advanced Pancreatic Carcinoma 8 234377 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 234378 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 234379 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 8 234380 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 234381 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 234382 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 234383 -NCIT:C190770 Metastatic Pancreatic Adenosquamous Carcinoma 8 234384 -NCIT:C190771 Metastatic Pancreatic Squamous Cell Carcinoma 8 234385 -NCIT:C8933 Metastatic Pancreatic Adenocarcinoma 8 234386 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 234387 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 234388 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 234389 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 9 234390 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 234391 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 234392 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 10 234393 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 234394 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 234395 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 9 234396 -NCIT:C162751 Metastatic Biliary Tract Carcinoma 7 234397 -NCIT:C142869 Metastatic Bile Duct Carcinoma 8 234398 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 234399 -NCIT:C162752 Advanced Cholangiocarcinoma 10 234400 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 234401 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 234402 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 234403 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 234404 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 234405 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 234406 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 234407 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 234408 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 234409 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 234410 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 234411 -NCIT:C157623 Metastatic Cholangiocarcinoma 9 234412 -NCIT:C162752 Advanced Cholangiocarcinoma 10 234413 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 234414 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 234415 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 234416 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 234417 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 234418 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 234419 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 10 234420 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 234421 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 10 234422 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 234423 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 234424 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 10 234425 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 234426 -NCIT:C185071 Metastatic Extrahepatic Bile Duct Carcinoma 9 234427 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 10 234428 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 11 234429 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 234430 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 234431 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 234432 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 234433 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 234434 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 234435 -NCIT:C162754 Metastatic Gallbladder Carcinoma 8 234436 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 234437 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 234438 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 234439 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 8 234440 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 234441 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 234442 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 234443 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 234444 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 234445 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 234446 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 234447 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 234448 -NCIT:C171331 Advanced Biliary Tract Carcinoma 8 234449 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 234450 -NCIT:C162752 Advanced Cholangiocarcinoma 10 234451 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 234452 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 234453 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 234454 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 234455 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 234456 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 234457 -NCIT:C170459 Locally Advanced Pancreatobiliary Carcinoma 7 234458 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 8 234459 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 234460 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 234461 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 234462 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 234463 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 234464 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 234465 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 234466 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 234467 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 8 234468 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 234469 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 234470 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 234471 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 8 234472 -NCIT:C171326 Metastatic Ampulla of Vater Carcinoma 7 234473 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 8 234474 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 8 234475 -NCIT:C171330 Advanced Pancreatobiliary Carcinoma 7 234476 -NCIT:C165452 Advanced Pancreatic Carcinoma 8 234477 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 234478 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 234479 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 8 234480 -NCIT:C171331 Advanced Biliary Tract Carcinoma 8 234481 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 234482 -NCIT:C162752 Advanced Cholangiocarcinoma 10 234483 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 234484 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 234485 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 234486 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 234487 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 234488 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 234489 -NCIT:C170514 Metastatic Anal Carcinoma 6 234490 -NCIT:C168977 Locally Advanced Anal Carcinoma 7 234491 -NCIT:C169103 Metastatic Anal Squamous Cell Carcinoma 7 234492 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 234493 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 234494 -NCIT:C170515 Advanced Anal Carcinoma 7 234495 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 8 234496 -NCIT:C5612 Metastatic Anal Canal Carcinoma 7 234497 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 234498 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 234499 -NCIT:C8637 Metastatic Small Intestinal Carcinoma 6 234500 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 7 234501 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 234502 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 7 234503 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 234504 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 234505 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 234506 -NCIT:C8934 Metastatic Small Intestinal Adenocarcinoma 7 234507 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 234508 -NCIT:C151906 Refractory Digestive System Carcinoma 5 234509 -NCIT:C137857 Refractory Anal Carcinoma 6 234510 -NCIT:C173334 Refractory Anal Canal Squamous Cell Carcinoma 7 234511 -NCIT:C147982 Refractory Colorectal Carcinoma 6 234512 -NCIT:C153351 Refractory Colon Carcinoma 7 234513 -NCIT:C162155 Refractory Colon Adenocarcinoma 8 234514 -NCIT:C162154 Refractory Colorectal Adenocarcinoma 7 234515 -NCIT:C162155 Refractory Colon Adenocarcinoma 8 234516 -NCIT:C162157 Refractory Rectal Adenocarcinoma 8 234517 -NCIT:C162156 Refractory Rectal Carcinoma 7 234518 -NCIT:C162157 Refractory Rectal Adenocarcinoma 8 234519 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 8 234520 -NCIT:C173332 Refractory Microsatellite Stable Colorectal Carcinoma 7 234521 -NCIT:C147996 Refractory Gastric Carcinoma 6 234522 -NCIT:C167074 Refractory Gastric Adenocarcinoma 7 234523 -NCIT:C151904 Refractory Metastatic Digestive System Carcinoma 6 234524 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 7 234525 -NCIT:C153352 Refractory Liver Carcinoma 6 234526 -NCIT:C162450 Refractory Hepatocellular Carcinoma 7 234527 -NCIT:C188887 Refractory Fibrolamellar Carcinoma 8 234528 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 7 234529 -NCIT:C153356 Refractory Small Intestinal Carcinoma 6 234530 -NCIT:C155937 Refractory Digestive System Neuroendocrine Carcinoma 6 234531 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 7 234532 -NCIT:C162538 Refractory Gastroesophageal Junction Adenocarcinoma 6 234533 -NCIT:C171604 Refractory Esophageal Carcinoma 6 234534 -NCIT:C171606 Refractory Esophageal Squamous Cell Carcinoma 7 234535 -NCIT:C176892 Refractory Esophageal Adenocarcinoma 7 234536 -NCIT:C179177 Refractory Appendix Carcinoma 6 234537 -NCIT:C179178 Refractory Appendix Adenocarcinoma 7 234538 -NCIT:C185305 Refractory Pancreatobiliary Carcinoma 6 234539 -NCIT:C142808 Refractory Pancreatic Carcinoma 7 234540 -NCIT:C162015 Refractory Pancreatic Adenocarcinoma 8 234541 -NCIT:C165450 Refractory Pancreatic Ductal Adenocarcinoma 9 234542 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 9 234543 -NCIT:C162750 Refractory Biliary Tract Carcinoma 7 234544 -NCIT:C153355 Refractory Bile Duct Carcinoma 8 234545 -NCIT:C158101 Refractory Cholangiocarcinoma 9 234546 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 10 234547 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 234548 -NCIT:C175437 Refractory Extrahepatic Bile Duct Carcinoma 9 234549 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 234550 -NCIT:C162753 Refractory Gallbladder Carcinoma 8 234551 -NCIT:C175436 Refractory Ampulla of Vater Carcinoma 7 234552 -NCIT:C155903 Unresectable Digestive System Carcinoma 5 234553 -NCIT:C128563 Unresectable Esophageal Carcinoma 6 234554 -NCIT:C171608 Unresectable Esophageal Squamous Cell Carcinoma 7 234555 -NCIT:C173162 Unresectable Esophageal Adenocarcinoma 7 234556 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 234557 -NCIT:C172248 Unresectable Distal Esophagus Adenocarcinoma 8 234558 -NCIT:C129654 Unresectable Digestive System Adenocarcinoma 6 234559 -NCIT:C150578 Unresectable Gastroesophageal Junction Adenocarcinoma 7 234560 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 234561 -NCIT:C154221 Unresectable Gastric Adenocarcinoma 7 234562 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 234563 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 234564 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 234565 -NCIT:C162016 Unresectable Pancreatic Adenocarcinoma 7 234566 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 8 234567 -NCIT:C172245 Unresectable Pancreatic Ductal Adenocarcinoma 8 234568 -NCIT:C165171 Unresectable Liver and Intrahepatic Bile Duct Carcinoma 7 234569 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 8 234570 -NCIT:C27345 Unresectable Hepatocellular Carcinoma 8 234571 -NCIT:C162602 Unresectable Fibrolamellar Carcinoma 9 234572 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 9 234573 -NCIT:C7878 Localized Unresectable Adult Liver Carcinoma 8 234574 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 9 234575 -NCIT:C171585 Unresectable Colorectal Adenocarcinoma 7 234576 -NCIT:C162116 Unresectable Colon Adenocarcinoma 8 234577 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 234578 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 8 234579 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 234580 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 234581 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 234582 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 234583 -NCIT:C173162 Unresectable Esophageal Adenocarcinoma 7 234584 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 234585 -NCIT:C172248 Unresectable Distal Esophagus Adenocarcinoma 8 234586 -NCIT:C175516 Unresectable Small Intestinal Adenocarcinoma 7 234587 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 8 234588 -NCIT:C189064 Unresectable Gallbladder Adenocarcinoma 7 234589 -NCIT:C189065 Unresectable Ampulla of Vater Adenocarcinoma 7 234590 -NCIT:C27324 Unresectable Cholangiocarcinoma 7 234591 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 8 234592 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 8 234593 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 8 234594 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 8 234595 -NCIT:C155935 Unresectable Digestive System Neuroendocrine Carcinoma 6 234596 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 7 234597 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 7 234598 -NCIT:C159775 Unresectable Gastric Carcinoma 6 234599 -NCIT:C154221 Unresectable Gastric Adenocarcinoma 7 234600 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 234601 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 234602 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 234603 -NCIT:C162600 Unresectable Colorectal Carcinoma 6 234604 -NCIT:C171585 Unresectable Colorectal Adenocarcinoma 7 234605 -NCIT:C162116 Unresectable Colon Adenocarcinoma 8 234606 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 234607 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 8 234608 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 234609 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 234610 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 234611 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 234612 -NCIT:C180406 Unresectable Colon Carcinoma 7 234613 -NCIT:C162116 Unresectable Colon Adenocarcinoma 8 234614 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 234615 -NCIT:C165172 Unresectable Ampulla of Vater Carcinoma 6 234616 -NCIT:C189065 Unresectable Ampulla of Vater Adenocarcinoma 7 234617 -NCIT:C172808 Unresectable Digestive System Mixed Adenoneuroendocrine Carcinoma 6 234618 -NCIT:C173156 Unresectable Anal Squamous Cell Carcinoma 6 234619 -NCIT:C175384 Unresectable Anal Canal Squamous Cell Carcinoma 7 234620 -NCIT:C176042 Unresectable Biliary Tract Carcinoma 6 234621 -NCIT:C171322 Unresectable Bile Duct Carcinoma 7 234622 -NCIT:C27324 Unresectable Cholangiocarcinoma 8 234623 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 9 234624 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 9 234625 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 9 234626 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 9 234627 -NCIT:C7892 Unresectable Extrahepatic Bile Duct Carcinoma 8 234628 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 9 234629 -NCIT:C7890 Unresectable Gallbladder Carcinoma 7 234630 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 8 234631 -NCIT:C189064 Unresectable Gallbladder Adenocarcinoma 8 234632 -NCIT:C5018 Unresectable Pancreatic Carcinoma 6 234633 -NCIT:C162016 Unresectable Pancreatic Adenocarcinoma 7 234634 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 8 234635 -NCIT:C172245 Unresectable Pancreatic Ductal Adenocarcinoma 8 234636 -NCIT:C8638 Unresectable Small Intestinal Carcinoma 6 234637 -NCIT:C175516 Unresectable Small Intestinal Adenocarcinoma 7 234638 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 8 234639 -NCIT:C156909 Resectable Digestive System Carcinoma 5 234640 -NCIT:C156910 Resectable Bile Duct Adenocarcinoma 6 234641 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 7 234642 -NCIT:C27326 Resectable Cholangiocarcinoma 7 234643 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 8 234644 -NCIT:C162257 Resectable Colorectal Carcinoma 6 234645 -NCIT:C167237 Resectable Colon Carcinoma 7 234646 -NCIT:C165293 Resectable Liver and Intrahepatic Bile Duct Carcinoma 6 234647 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 7 234648 -NCIT:C7691 Resectable Hepatocellular Carcinoma 7 234649 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 8 234650 -NCIT:C7877 Localized Resectable Adult Liver Carcinoma 7 234651 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 8 234652 -NCIT:C5099 Resectable Pancreatic Carcinoma 6 234653 -NCIT:C156906 Resectable Pancreatic Adenocarcinoma 7 234654 -NCIT:C151995 Resectable Pancreatic Ductal Adenocarcinoma 8 234655 -NCIT:C156907 Resectable Pancreatic Acinar Cell Carcinoma 8 234656 -NCIT:C157350 Borderline Resectable Pancreatic Adenocarcinoma 8 234657 -NCIT:C157348 Borderline Resectable Pancreatic Carcinoma 7 234658 -NCIT:C157350 Borderline Resectable Pancreatic Adenocarcinoma 8 234659 -NCIT:C174566 Resectable Pancreatic Adenosquamous Carcinoma 7 234660 -NCIT:C8639 Resectable Small Intestinal Carcinoma 6 234661 -NCIT:C27323 Resectable Duodenal Carcinoma 7 234662 -NCIT:C169108 Resectable Periampullary Adenocarcinoma 8 234663 -NCIT:C8640 Resectable Extrahepatic Bile Duct Carcinoma 6 234664 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 7 234665 -NCIT:C166418 Pancreatobiliary Carcinoma 5 234666 -NCIT:C156781 Biliary Tract Carcinoma 6 234667 -NCIT:C156782 Recurrent Biliary Tract Carcinoma 7 234668 -NCIT:C153360 Recurrent Bile Duct Carcinoma 8 234669 -NCIT:C27325 Recurrent Cholangiocarcinoma 9 234670 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 10 234671 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 10 234672 -NCIT:C7893 Recurrent Extrahepatic Bile Duct Carcinoma 9 234673 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 10 234674 -NCIT:C4008 Recurrent Gallbladder Carcinoma 8 234675 -NCIT:C162750 Refractory Biliary Tract Carcinoma 7 234676 -NCIT:C153355 Refractory Bile Duct Carcinoma 8 234677 -NCIT:C158101 Refractory Cholangiocarcinoma 9 234678 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 10 234679 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 234680 -NCIT:C175437 Refractory Extrahepatic Bile Duct Carcinoma 9 234681 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 234682 -NCIT:C162753 Refractory Gallbladder Carcinoma 8 234683 -NCIT:C162751 Metastatic Biliary Tract Carcinoma 7 234684 -NCIT:C142869 Metastatic Bile Duct Carcinoma 8 234685 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 234686 -NCIT:C162752 Advanced Cholangiocarcinoma 10 234687 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 234688 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 234689 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 234690 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 234691 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 234692 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 234693 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 234694 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 234695 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 234696 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 234697 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 234698 -NCIT:C157623 Metastatic Cholangiocarcinoma 9 234699 -NCIT:C162752 Advanced Cholangiocarcinoma 10 234700 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 234701 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 234702 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 234703 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 234704 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 234705 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 234706 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 10 234707 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 234708 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 10 234709 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 234710 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 234711 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 10 234712 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 234713 -NCIT:C185071 Metastatic Extrahepatic Bile Duct Carcinoma 9 234714 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 10 234715 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 11 234716 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 234717 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 234718 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 234719 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 234720 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 234721 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 234722 -NCIT:C162754 Metastatic Gallbladder Carcinoma 8 234723 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 234724 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 234725 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 234726 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 8 234727 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 234728 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 234729 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 234730 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 234731 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 234732 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 234733 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 234734 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 234735 -NCIT:C171331 Advanced Biliary Tract Carcinoma 8 234736 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 234737 -NCIT:C162752 Advanced Cholangiocarcinoma 10 234738 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 234739 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 234740 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 234741 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 234742 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 234743 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 234744 -NCIT:C176042 Unresectable Biliary Tract Carcinoma 7 234745 -NCIT:C171322 Unresectable Bile Duct Carcinoma 8 234746 -NCIT:C27324 Unresectable Cholangiocarcinoma 9 234747 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 10 234748 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 10 234749 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 10 234750 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 10 234751 -NCIT:C7892 Unresectable Extrahepatic Bile Duct Carcinoma 9 234752 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 10 234753 -NCIT:C7890 Unresectable Gallbladder Carcinoma 8 234754 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 9 234755 -NCIT:C189064 Unresectable Gallbladder Adenocarcinoma 9 234756 -NCIT:C27814 Bile Duct Carcinoma 7 234757 -NCIT:C142869 Metastatic Bile Duct Carcinoma 8 234758 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 234759 -NCIT:C162752 Advanced Cholangiocarcinoma 10 234760 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 234761 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 234762 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 234763 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 234764 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 234765 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 234766 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 234767 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 234768 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 234769 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 234770 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 234771 -NCIT:C157623 Metastatic Cholangiocarcinoma 9 234772 -NCIT:C162752 Advanced Cholangiocarcinoma 10 234773 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 234774 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 234775 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 234776 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 234777 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 234778 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 234779 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 10 234780 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 234781 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 10 234782 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 234783 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 234784 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 10 234785 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 234786 -NCIT:C185071 Metastatic Extrahepatic Bile Duct Carcinoma 9 234787 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 10 234788 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 11 234789 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 234790 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 234791 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 234792 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 234793 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 234794 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 234795 -NCIT:C153355 Refractory Bile Duct Carcinoma 8 234796 -NCIT:C158101 Refractory Cholangiocarcinoma 9 234797 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 10 234798 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 234799 -NCIT:C175437 Refractory Extrahepatic Bile Duct Carcinoma 9 234800 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 234801 -NCIT:C153360 Recurrent Bile Duct Carcinoma 8 234802 -NCIT:C27325 Recurrent Cholangiocarcinoma 9 234803 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 10 234804 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 10 234805 -NCIT:C7893 Recurrent Extrahepatic Bile Duct Carcinoma 9 234806 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 10 234807 -NCIT:C171322 Unresectable Bile Duct Carcinoma 8 234808 -NCIT:C27324 Unresectable Cholangiocarcinoma 9 234809 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 10 234810 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 10 234811 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 10 234812 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 10 234813 -NCIT:C7892 Unresectable Extrahepatic Bile Duct Carcinoma 9 234814 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 10 234815 -NCIT:C27813 Bile Duct Adenocarcinoma 8 234816 -NCIT:C156910 Resectable Bile Duct Adenocarcinoma 9 234817 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 10 234818 -NCIT:C27326 Resectable Cholangiocarcinoma 10 234819 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 11 234820 -NCIT:C4130 Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 9 234821 -NCIT:C96946 Extrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 10 234822 -NCIT:C96947 Intrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 10 234823 -NCIT:C4436 Cholangiocarcinoma 9 234824 -NCIT:C157623 Metastatic Cholangiocarcinoma 10 234825 -NCIT:C162752 Advanced Cholangiocarcinoma 11 234826 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 234827 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 234828 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 234829 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 11 234830 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 234831 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 12 234832 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 11 234833 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 234834 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 11 234835 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 234836 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 234837 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 11 234838 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 234839 -NCIT:C158101 Refractory Cholangiocarcinoma 10 234840 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 11 234841 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 11 234842 -NCIT:C27324 Unresectable Cholangiocarcinoma 10 234843 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 11 234844 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 11 234845 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 11 234846 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 234847 -NCIT:C27325 Recurrent Cholangiocarcinoma 10 234848 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 11 234849 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 11 234850 -NCIT:C27326 Resectable Cholangiocarcinoma 10 234851 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 11 234852 -NCIT:C27769 Opisthorchis Viverrini-Related Cholangiocarcinoma 10 234853 -NCIT:C35417 Intrahepatic Cholangiocarcinoma 10 234854 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 11 234855 -NCIT:C134514 Intrahepatic Cholangiocarcinoma by AJCC v7 Stage 11 234856 -NCIT:C88049 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v7 12 234857 -NCIT:C88050 Stage I Intrahepatic Cholangiocarcinoma AJCC v7 12 234858 -NCIT:C88051 Stage II Intrahepatic Cholangiocarcinoma AJCC v7 12 234859 -NCIT:C88052 Stage III Intrahepatic Cholangiocarcinoma AJCC v7 12 234860 -NCIT:C88053 Stage IVA Intrahepatic Cholangiocarcinoma AJCC v7 12 234861 -NCIT:C88054 Stage IVB Intrahepatic Cholangiocarcinoma AJCC v7 12 234862 -NCIT:C134755 Intrahepatic Cholangiocarcinoma by AJCC v8 Stage 11 234863 -NCIT:C134756 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v8 12 234864 -NCIT:C134757 Stage I Intrahepatic Cholangiocarcinoma AJCC v8 12 234865 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 13 234866 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 13 234867 -NCIT:C134760 Stage II Intrahepatic Cholangiocarcinoma AJCC v8 12 234868 -NCIT:C134761 Stage III Intrahepatic Cholangiocarcinoma AJCC v8 12 234869 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 13 234870 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 13 234871 -NCIT:C134764 Stage IV Intrahepatic Cholangiocarcinoma AJCC v8 12 234872 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 11 234873 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 11 234874 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 11 234875 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 234876 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 234877 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 11 234878 -NCIT:C41617 Cholangiolocellular Carcinoma 11 234879 -NCIT:C41618 Mucin-Producing Intrahepatic Cholangiocarcinoma 11 234880 -NCIT:C41619 Signet Ring Cell Intrahepatic Cholangiocarcinoma 11 234881 -NCIT:C41620 Sarcomatoid Intrahepatic Cholangiocarcinoma 11 234882 -NCIT:C43848 Clear Cell Intrahepatic Cholangiocarcinoma 11 234883 -NCIT:C96804 Large Duct Intrahepatic Cholangiocarcinoma 11 234884 -NCIT:C96805 Small Duct Intrahepatic Cholangiocarcinoma 11 234885 -NCIT:C96949 Intrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 11 234886 -NCIT:C36077 Hilar Cholangiocarcinoma 10 234887 -NCIT:C134742 Hilar Cholangiocarcinoma by AJCC v7 Stage 11 234888 -NCIT:C88058 Stage 0 Hilar Cholangiocarcinoma AJCC v7 12 234889 -NCIT:C88059 Stage I Hilar Cholangiocarcinoma AJCC v7 12 234890 -NCIT:C88060 Stage II Hilar Cholangiocarcinoma AJCC v7 12 234891 -NCIT:C88061 Stage IIIA Hilar Cholangiocarcinoma AJCC v7 12 234892 -NCIT:C88062 Stage IIIB Hilar Cholangiocarcinoma AJCC v7 12 234893 -NCIT:C88063 Stage IVA Hilar Cholangiocarcinoma AJCC v7 12 234894 -NCIT:C88064 Stage IVB Hilar Cholangiocarcinoma AJCC v7 12 234895 -NCIT:C134743 Hilar Cholangiocarcinoma by AJCC v8 Stage 11 234896 -NCIT:C134744 Stage 0 Hilar Cholangiocarcinoma AJCC v8 12 234897 -NCIT:C134745 Stage I Hilar Cholangiocarcinoma AJCC v8 12 234898 -NCIT:C134746 Stage II Hilar Cholangiocarcinoma AJCC v8 12 234899 -NCIT:C134747 Stage III Hilar Cholangiocarcinoma AJCC v8 12 234900 -NCIT:C134748 Stage IIIA Hilar Cholangiocarcinoma AJCC v8 13 234901 -NCIT:C134749 Stage IIIB Hilar Cholangiocarcinoma AJCC v8 13 234902 -NCIT:C134750 Stage IIIC Hilar Cholangiocarcinoma AJCC v8 13 234903 -NCIT:C134751 Stage IV Hilar Cholangiocarcinoma AJCC v8 12 234904 -NCIT:C134752 Stage IVA Hilar Cholangiocarcinoma AJCC v8 13 234905 -NCIT:C134753 Stage IVB Hilar Cholangiocarcinoma AJCC v8 13 234906 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 11 234907 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 11 234908 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 234909 -NCIT:C7976 Distal Bile Duct Adenocarcinoma 10 234910 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 11 234911 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 11 234912 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 234913 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 11 234914 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 11 234915 -NCIT:C8265 Adult Cholangiocarcinoma 10 234916 -NCIT:C7975 Extrahepatic Bile Duct Adenocarcinoma 9 234917 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 10 234918 -NCIT:C5775 Extrahepatic Bile Duct Clear Cell Adenocarcinoma 10 234919 -NCIT:C5776 Extrahepatic Bile Duct Signet Ring Cell Carcinoma 10 234920 -NCIT:C5846 Extrahepatic Bile Duct Mucinous Adenocarcinoma 10 234921 -NCIT:C7976 Distal Bile Duct Adenocarcinoma 10 234922 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 11 234923 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 11 234924 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 234925 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 11 234926 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 11 234927 -NCIT:C96936 Extrahepatic Bile Duct Adenocarcinoma, Biliary Type 10 234928 -NCIT:C96937 Extrahepatic Bile Duct Adenocarcinoma, Gastric Foveolar Type 10 234929 -NCIT:C96938 Extrahepatic Bile Duct Adenocarcinoma, Intestinal Type 10 234930 -NCIT:C96946 Extrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 10 234931 -NCIT:C96948 Extrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 10 234932 -NCIT:C96810 Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 9 234933 -NCIT:C96948 Extrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 10 234934 -NCIT:C96949 Intrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 10 234935 -NCIT:C3860 Extrahepatic Bile Duct Carcinoma 8 234936 -NCIT:C175437 Refractory Extrahepatic Bile Duct Carcinoma 9 234937 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 234938 -NCIT:C185071 Metastatic Extrahepatic Bile Duct Carcinoma 9 234939 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 10 234940 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 11 234941 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 234942 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 234943 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 234944 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 234945 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 234946 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 234947 -NCIT:C5777 Extrahepatic Bile Duct Squamous Cell Carcinoma 9 234948 -NCIT:C5778 Extrahepatic Bile Duct Adenosquamous Carcinoma 9 234949 -NCIT:C5780 Extrahepatic Bile Duct Undifferentiated Carcinoma 9 234950 -NCIT:C5862 Extrahepatic Bile Duct Mucoepidermoid Carcinoma 9 234951 -NCIT:C7109 Distal Bile Duct Carcinoma 9 234952 -NCIT:C134810 Distal Bile Duct Cancer by AJCC v7 Stage 10 234953 -NCIT:C88089 Stage 0 Distal Bile Duct Cancer AJCC v7 11 234954 -NCIT:C88090 Stage IA Distal Bile Duct Cancer AJCC v7 11 234955 -NCIT:C88091 Stage IB Distal Bile Duct Cancer AJCC v7 11 234956 -NCIT:C88092 Stage IIA Distal Bile Duct Cancer AJCC v7 11 234957 -NCIT:C88093 Stage IIB Distal Bile Duct Cancer AJCC v7 11 234958 -NCIT:C88094 Stage III Distal Bile Duct Cancer AJCC v7 11 234959 -NCIT:C88095 Stage IV Distal Bile Duct Cancer AJCC v7 11 234960 -NCIT:C134811 Distal Bile Duct Cancer by AJCC v8 Stage 10 234961 -NCIT:C134812 Stage 0 Distal Bile Duct Cancer AJCC v8 11 234962 -NCIT:C134813 Stage I Distal Bile Duct Cancer AJCC v8 11 234963 -NCIT:C134814 Stage II Distal Bile Duct Cancer AJCC v8 11 234964 -NCIT:C134815 Stage IIA Distal Bile Duct Cancer AJCC v8 12 234965 -NCIT:C134816 Stage IIB Distal Bile Duct Cancer AJCC v8 12 234966 -NCIT:C134817 Stage III Distal Bile Duct Cancer AJCC v8 11 234967 -NCIT:C134818 Stage IIIA Distal Bile Duct Cancer AJCC v8 12 234968 -NCIT:C134819 Stage IIIB Distal Bile Duct Cancer AJCC v8 12 234969 -NCIT:C134820 Stage IV Distal Bile Duct Cancer AJCC v8 11 234970 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 10 234971 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 11 234972 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 234973 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 234974 -NCIT:C7976 Distal Bile Duct Adenocarcinoma 10 234975 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 11 234976 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 11 234977 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 234978 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 11 234979 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 11 234980 -NCIT:C7891 Localized Extrahepatic Bile Duct Carcinoma 9 234981 -NCIT:C7892 Unresectable Extrahepatic Bile Duct Carcinoma 9 234982 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 10 234983 -NCIT:C7893 Recurrent Extrahepatic Bile Duct Carcinoma 9 234984 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 10 234985 -NCIT:C7975 Extrahepatic Bile Duct Adenocarcinoma 9 234986 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 10 234987 -NCIT:C5775 Extrahepatic Bile Duct Clear Cell Adenocarcinoma 10 234988 -NCIT:C5776 Extrahepatic Bile Duct Signet Ring Cell Carcinoma 10 234989 -NCIT:C5846 Extrahepatic Bile Duct Mucinous Adenocarcinoma 10 234990 -NCIT:C7976 Distal Bile Duct Adenocarcinoma 10 234991 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 11 234992 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 11 234993 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 234994 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 11 234995 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 11 234996 -NCIT:C96936 Extrahepatic Bile Duct Adenocarcinoma, Biliary Type 10 234997 -NCIT:C96937 Extrahepatic Bile Duct Adenocarcinoma, Gastric Foveolar Type 10 234998 -NCIT:C96938 Extrahepatic Bile Duct Adenocarcinoma, Intestinal Type 10 234999 -NCIT:C96946 Extrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 10 235000 -NCIT:C96948 Extrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 10 235001 -NCIT:C8640 Resectable Extrahepatic Bile Duct Carcinoma 9 235002 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 10 235003 -NCIT:C96939 Extrahepatic Bile Duct Carcinosarcoma 9 235004 -NCIT:C96956 Extrahepatic Bile Duct Neuroendocrine Carcinoma 9 235005 -NCIT:C5845 Extrahepatic Bile Duct Small Cell Neuroendocrine Carcinoma 10 235006 -NCIT:C96958 Extrahepatic Bile Duct Large Cell Neuroendocrine Carcinoma 10 235007 -NCIT:C96959 Extrahepatic Bile Duct Mixed Adenoneuroendocrine Carcinoma 9 235008 -NCIT:C3844 Gallbladder Carcinoma 7 235009 -NCIT:C134660 Gallbladder Cancer by AJCC v8 Stage 8 235010 -NCIT:C134663 Stage 0 Gallbladder Cancer AJCC v8 9 235011 -NCIT:C134665 Stage I Gallbladder Cancer AJCC v8 9 235012 -NCIT:C134667 Stage II Gallbladder Cancer AJCC v8 9 235013 -NCIT:C134670 Stage IIA Gallbladder Cancer AJCC v8 10 235014 -NCIT:C134671 Stage IIB Gallbladder Cancer AJCC v8 10 235015 -NCIT:C134672 Stage III Gallbladder Cancer AJCC v8 9 235016 -NCIT:C134673 Stage IIIA Gallbladder Cancer AJCC v8 10 235017 -NCIT:C134674 Stage IIIB Gallbladder Cancer AJCC v8 10 235018 -NCIT:C134675 Stage IV Gallbladder Cancer AJCC v8 9 235019 -NCIT:C134676 Stage IVA Gallbladder Cancer AJCC v8 10 235020 -NCIT:C134678 Stage IVB Gallbladder Cancer AJCC v8 10 235021 -NCIT:C162753 Refractory Gallbladder Carcinoma 8 235022 -NCIT:C162754 Metastatic Gallbladder Carcinoma 8 235023 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 235024 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 235025 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 235026 -NCIT:C175214 Incidental Gallbladder Carcinoma 8 235027 -NCIT:C4008 Recurrent Gallbladder Carcinoma 8 235028 -NCIT:C7356 Gallbladder Adenosquamous Carcinoma 8 235029 -NCIT:C7649 Localized Gallbladder Carcinoma 8 235030 -NCIT:C7890 Unresectable Gallbladder Carcinoma 8 235031 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 9 235032 -NCIT:C189064 Unresectable Gallbladder Adenocarcinoma 9 235033 -NCIT:C90512 Gallbladder Cancer by AJCC v6 Stage 8 235034 -NCIT:C4439 Stage 0 Gallbladder Cancer AJCC v6 and v7 9 235035 -NCIT:C5737 Stage I Gallbladder Cancer AJCC v6 9 235036 -NCIT:C5738 Stage II Gallbladder Cancer AJCC v6 9 235037 -NCIT:C5739 Stage III Gallbladder Cancer AJCC v6 9 235038 -NCIT:C5740 Stage IV Gallbladder Cancer AJCC v6 9 235039 -NCIT:C91229 Gallbladder Cancer by AJCC v7 Stage 8 235040 -NCIT:C4439 Stage 0 Gallbladder Cancer AJCC v6 and v7 9 235041 -NCIT:C90216 Stage I Gallbladder Cancer AJCC v7 9 235042 -NCIT:C90217 Stage II Gallbladder Cancer AJCC v7 9 235043 -NCIT:C90218 Stage III Gallbladder Cancer AJCC v7 9 235044 -NCIT:C88056 Stage IIIA Gallbladder Cancer AJCC v7 10 235045 -NCIT:C88057 Stage IIIB Gallbladder Cancer AJCC v7 10 235046 -NCIT:C90219 Stage IV Gallbladder Cancer AJCC v7 9 235047 -NCIT:C5741 Stage IVA Gallbladder Cancer AJCC v7 10 235048 -NCIT:C5742 Stage IVB Gallbladder Cancer AJCC v7 10 235049 -NCIT:C9166 Gallbladder Adenocarcinoma 8 235050 -NCIT:C189064 Unresectable Gallbladder Adenocarcinoma 9 235051 -NCIT:C43604 Gallbladder Adenocarcinoma, Intestinal-Type 9 235052 -NCIT:C43605 Gallbladder Clear Cell Adenocarcinoma 9 235053 -NCIT:C5743 Gallbladder Intracholecystic Papillary Neoplasm with an Associated Invasive Carcinoma 9 235054 -NCIT:C5744 Gallbladder Mucinous Adenocarcinoma 9 235055 -NCIT:C5745 Gallbladder Signet Ring Cell Carcinoma 9 235056 -NCIT:C9169 Gallbladder Adenocarcinoma with Squamous Metaplasia 9 235057 -NCIT:C96887 Gallbladder Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 9 235058 -NCIT:C96890 Gallbladder Hepatoid Adenocarcinoma 9 235059 -NCIT:C96891 Gallbladder Cribriform Carcinoma 9 235060 -NCIT:C96915 Gallbladder Adenocarcinoma, Biliary Type 9 235061 -NCIT:C96916 Gallbladder Adenocarcinoma, Gastric Foveolar Type 9 235062 -NCIT:C9167 Gallbladder Undifferentiated Carcinoma 8 235063 -NCIT:C5838 Gallbladder Undifferentiated Carcinoma, Spindle and Giant Cell Type 9 235064 -NCIT:C9170 Gallbladder Squamous Cell Carcinoma 8 235065 -NCIT:C96888 Gallbladder Carcinosarcoma 8 235066 -NCIT:C96919 Gallbladder Neuroendocrine Carcinoma 8 235067 -NCIT:C6763 Gallbladder Small Cell Neuroendocrine Carcinoma 9 235068 -NCIT:C96921 Gallbladder Large Cell Neuroendocrine Carcinoma 9 235069 -NCIT:C96927 Gallbladder Mixed Adenoneuroendocrine Carcinoma 8 235070 -NCIT:C96928 Gallbladder Goblet Cell Carcinoid 9 235071 -NCIT:C67493 High-Grade Biliary Intraepithelial Neoplasia 7 235072 -NCIT:C170458 Metastatic Pancreatobiliary Carcinoma 6 235073 -NCIT:C156069 Metastatic Pancreatic Carcinoma 7 235074 -NCIT:C165452 Advanced Pancreatic Carcinoma 8 235075 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 235076 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 235077 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 8 235078 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 235079 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 235080 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 235081 -NCIT:C190770 Metastatic Pancreatic Adenosquamous Carcinoma 8 235082 -NCIT:C190771 Metastatic Pancreatic Squamous Cell Carcinoma 8 235083 -NCIT:C8933 Metastatic Pancreatic Adenocarcinoma 8 235084 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 235085 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 235086 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 235087 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 9 235088 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 235089 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 235090 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 10 235091 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 235092 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 235093 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 9 235094 -NCIT:C162751 Metastatic Biliary Tract Carcinoma 7 235095 -NCIT:C142869 Metastatic Bile Duct Carcinoma 8 235096 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 235097 -NCIT:C162752 Advanced Cholangiocarcinoma 10 235098 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 235099 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 235100 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 235101 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 235102 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 235103 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 235104 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 235105 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 235106 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 235107 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 235108 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 235109 -NCIT:C157623 Metastatic Cholangiocarcinoma 9 235110 -NCIT:C162752 Advanced Cholangiocarcinoma 10 235111 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 235112 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 235113 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 235114 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 235115 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 235116 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 235117 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 10 235118 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 235119 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 10 235120 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 235121 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 235122 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 10 235123 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 235124 -NCIT:C185071 Metastatic Extrahepatic Bile Duct Carcinoma 9 235125 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 10 235126 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 11 235127 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 235128 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 235129 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 235130 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 235131 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 235132 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 235133 -NCIT:C162754 Metastatic Gallbladder Carcinoma 8 235134 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 235135 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 235136 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 235137 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 8 235138 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 235139 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 235140 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 235141 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 235142 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 235143 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 235144 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 235145 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 235146 -NCIT:C171331 Advanced Biliary Tract Carcinoma 8 235147 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 235148 -NCIT:C162752 Advanced Cholangiocarcinoma 10 235149 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 235150 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 235151 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 235152 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 235153 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 235154 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 235155 -NCIT:C170459 Locally Advanced Pancreatobiliary Carcinoma 7 235156 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 8 235157 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 235158 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 235159 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 235160 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 235161 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 235162 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 235163 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 235164 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 235165 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 8 235166 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 235167 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 235168 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 235169 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 8 235170 -NCIT:C171326 Metastatic Ampulla of Vater Carcinoma 7 235171 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 8 235172 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 8 235173 -NCIT:C171330 Advanced Pancreatobiliary Carcinoma 7 235174 -NCIT:C165452 Advanced Pancreatic Carcinoma 8 235175 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 235176 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 235177 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 8 235178 -NCIT:C171331 Advanced Biliary Tract Carcinoma 8 235179 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 235180 -NCIT:C162752 Advanced Cholangiocarcinoma 10 235181 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 235182 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 235183 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 235184 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 235185 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 235186 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 235187 -NCIT:C185305 Refractory Pancreatobiliary Carcinoma 6 235188 -NCIT:C142808 Refractory Pancreatic Carcinoma 7 235189 -NCIT:C162015 Refractory Pancreatic Adenocarcinoma 8 235190 -NCIT:C165450 Refractory Pancreatic Ductal Adenocarcinoma 9 235191 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 9 235192 -NCIT:C162750 Refractory Biliary Tract Carcinoma 7 235193 -NCIT:C153355 Refractory Bile Duct Carcinoma 8 235194 -NCIT:C158101 Refractory Cholangiocarcinoma 9 235195 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 10 235196 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 235197 -NCIT:C175437 Refractory Extrahepatic Bile Duct Carcinoma 9 235198 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 235199 -NCIT:C162753 Refractory Gallbladder Carcinoma 8 235200 -NCIT:C175436 Refractory Ampulla of Vater Carcinoma 7 235201 -NCIT:C3850 Pancreatic Carcinoma 6 235202 -NCIT:C134902 Pancreatic Cancer by AJCC v6 and v7 Stage 7 235203 -NCIT:C5711 Stage IV Pancreatic Cancer AJCC v6 and v7 8 235204 -NCIT:C5729 Stage 0 Pancreatic Cancer AJCC v6 and v7 8 235205 -NCIT:C7785 Stage I Pancreatic Cancer AJCC v6 and v7 8 235206 -NCIT:C88100 Stage IA Pancreatic Cancer AJCC v6 and v7 9 235207 -NCIT:C88101 Stage IB Pancreatic Cancer AJCC v6 and v7 9 235208 -NCIT:C7786 Stage II Pancreatic Cancer AJCC v6 and v7 8 235209 -NCIT:C88102 Stage IIA Pancreatic Cancer AJCC v6 and v7 9 235210 -NCIT:C88103 Stage IIB Pancreatic Cancer AJCC v6 and v7 9 235211 -NCIT:C7787 Stage III Pancreatic Cancer AJCC v6 and v7 8 235212 -NCIT:C134909 Pancreatic Cancer by AJCC v8 Stage 7 235213 -NCIT:C134914 Stage 0 Pancreatic Cancer AJCC v8 8 235214 -NCIT:C134915 Stage I Pancreatic Cancer AJCC v8 8 235215 -NCIT:C134917 Stage IA Pancreatic Cancer AJCC v8 9 235216 -NCIT:C134920 Stage IB Pancreatic Cancer AJCC v8 9 235217 -NCIT:C134921 Stage II Pancreatic Cancer AJCC v8 8 235218 -NCIT:C134925 Stage IIA Pancreatic Cancer AJCC v8 9 235219 -NCIT:C134927 Stage IIB Pancreatic Cancer AJCC v8 9 235220 -NCIT:C134928 Stage III Pancreatic Cancer AJCC v8 8 235221 -NCIT:C134930 Stage IV Pancreatic Cancer AJCC v8 8 235222 -NCIT:C142808 Refractory Pancreatic Carcinoma 7 235223 -NCIT:C162015 Refractory Pancreatic Adenocarcinoma 8 235224 -NCIT:C165450 Refractory Pancreatic Ductal Adenocarcinoma 9 235225 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 9 235226 -NCIT:C156069 Metastatic Pancreatic Carcinoma 7 235227 -NCIT:C165452 Advanced Pancreatic Carcinoma 8 235228 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 235229 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 235230 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 8 235231 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 235232 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 235233 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 235234 -NCIT:C190770 Metastatic Pancreatic Adenosquamous Carcinoma 8 235235 -NCIT:C190771 Metastatic Pancreatic Squamous Cell Carcinoma 8 235236 -NCIT:C8933 Metastatic Pancreatic Adenocarcinoma 8 235237 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 235238 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 235239 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 235240 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 9 235241 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 235242 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 235243 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 10 235244 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 235245 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 235246 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 9 235247 -NCIT:C173813 Pancreatic Squamous Cell Carcinoma 7 235248 -NCIT:C190771 Metastatic Pancreatic Squamous Cell Carcinoma 8 235249 -NCIT:C43298 Hereditary Pancreatic Carcinoma 7 235250 -NCIT:C45843 Pancreatic Mixed Adenoneuroendocrine Carcinoma 7 235251 -NCIT:C6878 Pancreatic Mixed Acinar-Neuroendocrine Carcinoma 8 235252 -NCIT:C6879 Pancreatic Mixed Ductal-Neuroendocrine Carcinoma 8 235253 -NCIT:C95460 Pancreatic Mixed Acinar-Ductal Neuroendocrine Carcinoma 8 235254 -NCIT:C5018 Unresectable Pancreatic Carcinoma 7 235255 -NCIT:C162016 Unresectable Pancreatic Adenocarcinoma 8 235256 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 9 235257 -NCIT:C172245 Unresectable Pancreatic Ductal Adenocarcinoma 9 235258 -NCIT:C5099 Resectable Pancreatic Carcinoma 7 235259 -NCIT:C156906 Resectable Pancreatic Adenocarcinoma 8 235260 -NCIT:C151995 Resectable Pancreatic Ductal Adenocarcinoma 9 235261 -NCIT:C156907 Resectable Pancreatic Acinar Cell Carcinoma 9 235262 -NCIT:C157350 Borderline Resectable Pancreatic Adenocarcinoma 9 235263 -NCIT:C157348 Borderline Resectable Pancreatic Carcinoma 8 235264 -NCIT:C157350 Borderline Resectable Pancreatic Adenocarcinoma 9 235265 -NCIT:C174566 Resectable Pancreatic Adenosquamous Carcinoma 8 235266 -NCIT:C5721 Pancreatic Adenosquamous Carcinoma 7 235267 -NCIT:C174566 Resectable Pancreatic Adenosquamous Carcinoma 8 235268 -NCIT:C190770 Metastatic Pancreatic Adenosquamous Carcinoma 8 235269 -NCIT:C7626 Recurrent Pancreatic Carcinoma 7 235270 -NCIT:C155742 Recurrent Pancreatic Adenocarcinoma 8 235271 -NCIT:C153569 Recurrent Pancreatic Acinar Cell Carcinoma 9 235272 -NCIT:C153619 Recurrent Pancreatic Ductal Adenocarcinoma 9 235273 -NCIT:C153620 Recurrent Pancreatic Cystadenocarcinoma 9 235274 -NCIT:C8294 Pancreatic Adenocarcinoma 7 235275 -NCIT:C155742 Recurrent Pancreatic Adenocarcinoma 8 235276 -NCIT:C153569 Recurrent Pancreatic Acinar Cell Carcinoma 9 235277 -NCIT:C153619 Recurrent Pancreatic Ductal Adenocarcinoma 9 235278 -NCIT:C153620 Recurrent Pancreatic Cystadenocarcinoma 9 235279 -NCIT:C156906 Resectable Pancreatic Adenocarcinoma 8 235280 -NCIT:C151995 Resectable Pancreatic Ductal Adenocarcinoma 9 235281 -NCIT:C156907 Resectable Pancreatic Acinar Cell Carcinoma 9 235282 -NCIT:C157350 Borderline Resectable Pancreatic Adenocarcinoma 9 235283 -NCIT:C162015 Refractory Pancreatic Adenocarcinoma 8 235284 -NCIT:C165450 Refractory Pancreatic Ductal Adenocarcinoma 9 235285 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 9 235286 -NCIT:C162016 Unresectable Pancreatic Adenocarcinoma 8 235287 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 9 235288 -NCIT:C172245 Unresectable Pancreatic Ductal Adenocarcinoma 9 235289 -NCIT:C169041 Localized Pancreatic Adenocarcinoma 8 235290 -NCIT:C189009 Localized Pancreatic Ductal Adenocarcinoma 9 235291 -NCIT:C172813 Invasive Pancreatic Micropapillary Adenocarcinoma 8 235292 -NCIT:C3874 Pancreatic Cystadenocarcinoma 8 235293 -NCIT:C153620 Recurrent Pancreatic Cystadenocarcinoma 9 235294 -NCIT:C5724 Pancreatic Serous Cystadenocarcinoma 9 235295 -NCIT:C5727 Pancreatic Acinar Cell Cystadenocarcinoma 9 235296 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 10 235297 -NCIT:C5726 Pancreatic Intraductal Papillary-Mucinous Neoplasm with an Associated Invasive Carcinoma 8 235298 -NCIT:C7977 Pancreatic Acinar Cell Carcinoma 8 235299 -NCIT:C153569 Recurrent Pancreatic Acinar Cell Carcinoma 9 235300 -NCIT:C156907 Resectable Pancreatic Acinar Cell Carcinoma 9 235301 -NCIT:C190024 Childhood Pancreatic Acinar Cell Carcinoma 9 235302 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 10 235303 -NCIT:C5727 Pancreatic Acinar Cell Cystadenocarcinoma 9 235304 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 10 235305 -NCIT:C8933 Metastatic Pancreatic Adenocarcinoma 8 235306 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 235307 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 235308 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 235309 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 9 235310 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 235311 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 235312 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 10 235313 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 235314 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 235315 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 9 235316 -NCIT:C9120 Pancreatic Ductal Adenocarcinoma 8 235317 -NCIT:C151995 Resectable Pancreatic Ductal Adenocarcinoma 9 235318 -NCIT:C153619 Recurrent Pancreatic Ductal Adenocarcinoma 9 235319 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 9 235320 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 235321 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 235322 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 10 235323 -NCIT:C158961 Early Stage Pancreatic Ductal Adenocarcinoma 9 235324 -NCIT:C165450 Refractory Pancreatic Ductal Adenocarcinoma 9 235325 -NCIT:C172245 Unresectable Pancreatic Ductal Adenocarcinoma 9 235326 -NCIT:C172811 Pancreatic Poorly Cohesive Adenocarcinoma 9 235327 -NCIT:C5720 Pancreatic Signet Ring Cell Carcinoma 10 235328 -NCIT:C189009 Localized Pancreatic Ductal Adenocarcinoma 9 235329 -NCIT:C37214 Pancreatic Colloid Carcinoma 9 235330 -NCIT:C37256 Pancreatic Foamy Gland Adenocarcinoma 9 235331 -NCIT:C5722 Pancreatic Undifferentiated Carcinoma 9 235332 -NCIT:C172812 Pancreatic Undifferentiated Carcinoma with Rhabdoid Cells 10 235333 -NCIT:C5723 Pancreatic Undifferentiated Carcinoma with Osteoclast-Like Giant Cells 10 235334 -NCIT:C95426 Pancreatic Well Differentiated Ductal Adenocarcinoma 9 235335 -NCIT:C95427 Pancreatic Moderately Differentiated Ductal Adenocarcinoma 9 235336 -NCIT:C95428 Pancreatic Poorly Differentiated Ductal Adenocarcinoma 9 235337 -NCIT:C95465 Pancreatic Hepatoid Adenocarcinoma 9 235338 -NCIT:C95466 Pancreatic Medullary Carcinoma 9 235339 -NCIT:C95458 Pancreatic Mixed Acinar-Ductal Carcinoma 8 235340 -NCIT:C95507 Pancreatic Intraductal Tubulopapillary Neoplasm with an Associated Invasive Carcinoma 8 235341 -NCIT:C3908 Ampulla of Vater Carcinoma 6 235342 -NCIT:C134863 Ampulla of Vater Cancer by AJCC v7 Stage 7 235343 -NCIT:C4444 Stage 0 Ampulla of Vater Cancer AJCC v7 8 235344 -NCIT:C6651 Stage I Ampulla of Vater Cancer AJCC v7 8 235345 -NCIT:C88096 Stage IA Ampulla of Vater Cancer AJCC v7 9 235346 -NCIT:C88097 Stage IB Ampulla of Vater Cancer AJCC v7 9 235347 -NCIT:C6652 Stage II Ampulla of Vater Cancer AJCC v7 8 235348 -NCIT:C88098 Stage IIA Ampulla of Vater Cancer AJCC v7 9 235349 -NCIT:C88099 Stage IIB Ampulla of Vater Cancer AJCC v7 9 235350 -NCIT:C6653 Stage III Ampulla of Vater Cancer AJCC v7 8 235351 -NCIT:C6654 Stage IV Ampulla of Vater Cancer AJCC v7 8 235352 -NCIT:C134864 Ampulla of Vater Cancer by AJCC v8 Stage 7 235353 -NCIT:C134865 Stage 0 Ampulla of Vater Cancer AJCC v8 8 235354 -NCIT:C134866 Stage I Ampulla of Vater Cancer AJCC v8 8 235355 -NCIT:C134867 Stage IA Ampulla of Vater Cancer AJCC v8 9 235356 -NCIT:C134868 Stage IB Ampulla of Vater Cancer AJCC v8 9 235357 -NCIT:C134869 Stage II Ampulla of Vater Cancer AJCC v8 8 235358 -NCIT:C134870 Stage IIA Ampulla of Vater Cancer AJCC v8 9 235359 -NCIT:C134871 Stage IIB Ampulla of Vater Cancer AJCC v8 9 235360 -NCIT:C134872 Stage III Ampulla of Vater Cancer AJCC v8 8 235361 -NCIT:C134873 Stage IIIA Ampulla of Vater Cancer AJCC v8 9 235362 -NCIT:C134874 Stage IIIB Ampulla of Vater Cancer AJCC v8 9 235363 -NCIT:C134875 Stage IV Ampulla of Vater Cancer AJCC v8 8 235364 -NCIT:C165172 Unresectable Ampulla of Vater Carcinoma 7 235365 -NCIT:C189065 Unresectable Ampulla of Vater Adenocarcinoma 8 235366 -NCIT:C171326 Metastatic Ampulla of Vater Carcinoma 7 235367 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 8 235368 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 8 235369 -NCIT:C175436 Refractory Ampulla of Vater Carcinoma 7 235370 -NCIT:C27417 Ampulla of Vater Squamous Cell Carcinoma 7 235371 -NCIT:C27418 Ampulla of Vater Adenosquamous Carcinoma 7 235372 -NCIT:C27419 Ampulla of Vater Undifferentiated Carcinoma 7 235373 -NCIT:C95965 Ampulla of Vater Undifferentiated Carcinoma with Osteoclast-Like Giant Cells 8 235374 -NCIT:C6650 Ampulla of Vater Adenocarcinoma 7 235375 -NCIT:C153574 Recurrent Ampulla of Vater Adenocarcinoma 8 235376 -NCIT:C189065 Unresectable Ampulla of Vater Adenocarcinoma 8 235377 -NCIT:C27414 Ampulla of Vater Clear Cell Adenocarcinoma 8 235378 -NCIT:C27415 Ampulla of Vater Intestinal-Type Adenocarcinoma 8 235379 -NCIT:C27416 Ampulla of Vater Mucinous Adenocarcinoma 8 235380 -NCIT:C6656 Ampulla of Vater Signet Ring Cell Carcinoma 8 235381 -NCIT:C95963 Ampulla of Vater Pancreatobiliary Type Adenocarcinoma 8 235382 -NCIT:C95966 Ampulla of Vater Hepatoid Adenocarcinoma 8 235383 -NCIT:C95967 Ampulla of Vater Invasive Papillary Adenocarcinoma 8 235384 -NCIT:C95984 Ampulla of Vater Neuroendocrine Carcinoma 7 235385 -NCIT:C6655 Ampulla of Vater Small Cell Neuroendocrine Carcinoma 8 235386 -NCIT:C95985 Ampulla of Vater Large Cell Neuroendocrine Carcinoma 8 235387 -NCIT:C95986 Ampulla of Vater Mixed Adenoneuroendocrine Carcinoma 7 235388 -NCIT:C2955 Colorectal Carcinoma 5 235389 -NCIT:C118808 Childhood Colorectal Carcinoma 6 235390 -NCIT:C118823 Childhood Rectal Carcinoma 7 235391 -NCIT:C134180 Colorectal Cancer by AJCC v8 Stage 6 235392 -NCIT:C134182 Stage 0 Colorectal Cancer AJCC v8 7 235393 -NCIT:C134271 Stage 0 Colon Cancer AJCC v8 8 235394 -NCIT:C134291 Stage 0 Rectal Cancer AJCC v8 8 235395 -NCIT:C134185 Stage I Colorectal Cancer AJCC v8 7 235396 -NCIT:C134273 Stage I Colon Cancer AJCC v8 8 235397 -NCIT:C134292 Stage I Rectal Cancer AJCC v8 8 235398 -NCIT:C134186 Stage II Colorectal Cancer AJCC v8 7 235399 -NCIT:C134187 Stage IIA Colorectal Cancer AJCC v8 8 235400 -NCIT:C134280 Stage IIA Colon Cancer AJCC v8 9 235401 -NCIT:C134294 Stage IIA Rectal Cancer AJCC v8 9 235402 -NCIT:C134188 Stage IIB Colorectal Cancer AJCC v8 8 235403 -NCIT:C134281 Stage IIB Colon Cancer AJCC v8 9 235404 -NCIT:C134295 Stage IIB Rectal Cancer AJCC v8 9 235405 -NCIT:C134190 Stage IIC Colorectal Cancer AJCC v8 8 235406 -NCIT:C134282 Stage IIC Colon Cancer AJCC v8 9 235407 -NCIT:C134296 Stage IIC Rectal Cancer AJCC v8 9 235408 -NCIT:C134274 Stage II Colon Cancer AJCC v8 8 235409 -NCIT:C134280 Stage IIA Colon Cancer AJCC v8 9 235410 -NCIT:C134281 Stage IIB Colon Cancer AJCC v8 9 235411 -NCIT:C134282 Stage IIC Colon Cancer AJCC v8 9 235412 -NCIT:C134293 Stage II Rectal Cancer AJCC v8 8 235413 -NCIT:C134294 Stage IIA Rectal Cancer AJCC v8 9 235414 -NCIT:C134295 Stage IIB Rectal Cancer AJCC v8 9 235415 -NCIT:C134296 Stage IIC Rectal Cancer AJCC v8 9 235416 -NCIT:C134191 Stage III Colorectal Cancer AJCC v8 7 235417 -NCIT:C134192 Stage IIIA Colorectal Cancer AJCC v8 8 235418 -NCIT:C134284 Stage IIIA Colon Cancer AJCC v8 9 235419 -NCIT:C134298 Stage IIIA Rectal Cancer AJCC v8 9 235420 -NCIT:C134193 Stage IIIB Colorectal Cancer AJCC v8 8 235421 -NCIT:C134285 Stage IIIB Colon Cancer AJCC v8 9 235422 -NCIT:C134299 Stage IIIB Rectal Cancer AJCC v8 9 235423 -NCIT:C134194 Stage IIIC Colorectal Cancer AJCC v8 8 235424 -NCIT:C134286 Stage IIIC Colon Cancer AJCC v8 9 235425 -NCIT:C134300 Stage IIIC Rectal Cancer AJCC v8 9 235426 -NCIT:C134283 Stage III Colon Cancer AJCC v8 8 235427 -NCIT:C134284 Stage IIIA Colon Cancer AJCC v8 9 235428 -NCIT:C134285 Stage IIIB Colon Cancer AJCC v8 9 235429 -NCIT:C134286 Stage IIIC Colon Cancer AJCC v8 9 235430 -NCIT:C134297 Stage III Rectal Cancer AJCC v8 8 235431 -NCIT:C134298 Stage IIIA Rectal Cancer AJCC v8 9 235432 -NCIT:C134299 Stage IIIB Rectal Cancer AJCC v8 9 235433 -NCIT:C134300 Stage IIIC Rectal Cancer AJCC v8 9 235434 -NCIT:C134195 Stage IV Colorectal Cancer AJCC v8 7 235435 -NCIT:C134196 Stage IVA Colorectal Cancer AJCC v8 8 235436 -NCIT:C134288 Stage IVA Colon Cancer AJCC v8 9 235437 -NCIT:C134302 Stage IVA Rectal Cancer AJCC v8 9 235438 -NCIT:C134197 Stage IVB Colorectal Cancer AJCC v8 8 235439 -NCIT:C134289 Stage IVB Colon Cancer AJCC v8 9 235440 -NCIT:C134303 Stage IVB Rectal Cancer AJCC v8 9 235441 -NCIT:C134198 Stage IVC Colorectal Cancer AJCC v8 8 235442 -NCIT:C134290 Stage IVC Colon Cancer AJCC v8 9 235443 -NCIT:C134304 Stage IVC Rectal Cancer AJCC v8 9 235444 -NCIT:C134287 Stage IV Colon Cancer AJCC v8 8 235445 -NCIT:C134288 Stage IVA Colon Cancer AJCC v8 9 235446 -NCIT:C134289 Stage IVB Colon Cancer AJCC v8 9 235447 -NCIT:C134290 Stage IVC Colon Cancer AJCC v8 9 235448 -NCIT:C134301 Stage IV Rectal Cancer AJCC v8 8 235449 -NCIT:C134302 Stage IVA Rectal Cancer AJCC v8 9 235450 -NCIT:C134303 Stage IVB Rectal Cancer AJCC v8 9 235451 -NCIT:C134304 Stage IVC Rectal Cancer AJCC v8 9 235452 -NCIT:C134251 Colon Cancer by AJCC v8 Stage 7 235453 -NCIT:C134271 Stage 0 Colon Cancer AJCC v8 8 235454 -NCIT:C134273 Stage I Colon Cancer AJCC v8 8 235455 -NCIT:C134274 Stage II Colon Cancer AJCC v8 8 235456 -NCIT:C134280 Stage IIA Colon Cancer AJCC v8 9 235457 -NCIT:C134281 Stage IIB Colon Cancer AJCC v8 9 235458 -NCIT:C134282 Stage IIC Colon Cancer AJCC v8 9 235459 -NCIT:C134283 Stage III Colon Cancer AJCC v8 8 235460 -NCIT:C134284 Stage IIIA Colon Cancer AJCC v8 9 235461 -NCIT:C134285 Stage IIIB Colon Cancer AJCC v8 9 235462 -NCIT:C134286 Stage IIIC Colon Cancer AJCC v8 9 235463 -NCIT:C134287 Stage IV Colon Cancer AJCC v8 8 235464 -NCIT:C134288 Stage IVA Colon Cancer AJCC v8 9 235465 -NCIT:C134289 Stage IVB Colon Cancer AJCC v8 9 235466 -NCIT:C134290 Stage IVC Colon Cancer AJCC v8 9 235467 -NCIT:C134258 Rectal Cancer by AJCC v8 Stage 7 235468 -NCIT:C134291 Stage 0 Rectal Cancer AJCC v8 8 235469 -NCIT:C134292 Stage I Rectal Cancer AJCC v8 8 235470 -NCIT:C134293 Stage II Rectal Cancer AJCC v8 8 235471 -NCIT:C134294 Stage IIA Rectal Cancer AJCC v8 9 235472 -NCIT:C134295 Stage IIB Rectal Cancer AJCC v8 9 235473 -NCIT:C134296 Stage IIC Rectal Cancer AJCC v8 9 235474 -NCIT:C134297 Stage III Rectal Cancer AJCC v8 8 235475 -NCIT:C134298 Stage IIIA Rectal Cancer AJCC v8 9 235476 -NCIT:C134299 Stage IIIB Rectal Cancer AJCC v8 9 235477 -NCIT:C134300 Stage IIIC Rectal Cancer AJCC v8 9 235478 -NCIT:C134301 Stage IV Rectal Cancer AJCC v8 8 235479 -NCIT:C134302 Stage IVA Rectal Cancer AJCC v8 9 235480 -NCIT:C134303 Stage IVB Rectal Cancer AJCC v8 9 235481 -NCIT:C134304 Stage IVC Rectal Cancer AJCC v8 9 235482 -NCIT:C147982 Refractory Colorectal Carcinoma 6 235483 -NCIT:C153351 Refractory Colon Carcinoma 7 235484 -NCIT:C162155 Refractory Colon Adenocarcinoma 8 235485 -NCIT:C162154 Refractory Colorectal Adenocarcinoma 7 235486 -NCIT:C162155 Refractory Colon Adenocarcinoma 8 235487 -NCIT:C162157 Refractory Rectal Adenocarcinoma 8 235488 -NCIT:C162156 Refractory Rectal Carcinoma 7 235489 -NCIT:C162157 Refractory Rectal Adenocarcinoma 8 235490 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 8 235491 -NCIT:C173332 Refractory Microsatellite Stable Colorectal Carcinoma 7 235492 -NCIT:C156096 Metastatic Colorectal Carcinoma 6 235493 -NCIT:C142867 Metastatic Microsatellite Stable Colorectal Carcinoma 7 235494 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 8 235495 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 8 235496 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 235497 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 8 235498 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 235499 -NCIT:C153224 Colorectal Carcinoma Metastatic in the Lung 7 235500 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 8 235501 -NCIT:C156097 Metastatic Colon Carcinoma 7 235502 -NCIT:C160819 Metastatic Colon Adenocarcinoma 8 235503 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 235504 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 235505 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 235506 -NCIT:C167238 Advanced Colon Carcinoma 8 235507 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 235508 -NCIT:C170910 Locally Advanced Colon Carcinoma 8 235509 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 235510 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 235511 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 235512 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 8 235513 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 235514 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 8 235515 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 8 235516 -NCIT:C156098 Metastatic Rectal Carcinoma 7 235517 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 8 235518 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 8 235519 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 235520 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 235521 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 235522 -NCIT:C170777 Advanced Rectal Carcinoma 8 235523 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 235524 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 235525 -NCIT:C170778 Locally Advanced Rectal Carcinoma 8 235526 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 235527 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 235528 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 235529 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 8 235530 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 235531 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 235532 -NCIT:C157366 Colorectal Carcinoma Metastatic in the Liver 7 235533 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 8 235534 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 8 235535 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 8 235536 -NCIT:C161048 Metastatic Colorectal Adenocarcinoma 7 235537 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 8 235538 -NCIT:C160819 Metastatic Colon Adenocarcinoma 8 235539 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 235540 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 235541 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 235542 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 8 235543 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 235544 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 235545 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 235546 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 8 235547 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 235548 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 235549 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 235550 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 235551 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 235552 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 235553 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 235554 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 235555 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 235556 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 235557 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 235558 -NCIT:C162475 Advanced Colorectal Carcinoma 7 235559 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 8 235560 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 235561 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 235562 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 235563 -NCIT:C167238 Advanced Colon Carcinoma 8 235564 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 235565 -NCIT:C170777 Advanced Rectal Carcinoma 8 235566 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 235567 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 235568 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 7 235569 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 8 235570 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 235571 -NCIT:C170778 Locally Advanced Rectal Carcinoma 8 235572 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 235573 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 235574 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 235575 -NCIT:C170910 Locally Advanced Colon Carcinoma 8 235576 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 235577 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 235578 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 235579 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 235580 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 235581 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 235582 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 235583 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 235584 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 235585 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 235586 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 235587 -NCIT:C185165 Oligometastatic Colorectal Carcinoma 7 235588 -NCIT:C162256 Hypermutated Colorectal Carcinoma 6 235589 -NCIT:C162257 Resectable Colorectal Carcinoma 6 235590 -NCIT:C167237 Resectable Colon Carcinoma 7 235591 -NCIT:C162600 Unresectable Colorectal Carcinoma 6 235592 -NCIT:C171585 Unresectable Colorectal Adenocarcinoma 7 235593 -NCIT:C162116 Unresectable Colon Adenocarcinoma 8 235594 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 235595 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 8 235596 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 235597 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 235598 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 235599 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 235600 -NCIT:C180406 Unresectable Colon Carcinoma 7 235601 -NCIT:C162116 Unresectable Colon Adenocarcinoma 8 235602 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 235603 -NCIT:C173324 Microsatellite Stable Colorectal Carcinoma 6 235604 -NCIT:C142867 Metastatic Microsatellite Stable Colorectal Carcinoma 7 235605 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 8 235606 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 8 235607 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 235608 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 8 235609 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 235610 -NCIT:C173332 Refractory Microsatellite Stable Colorectal Carcinoma 7 235611 -NCIT:C177776 Microsatellite Stable Rectal Carcinoma 7 235612 -NCIT:C177777 Microsatellite Stable Colon Carcinoma 7 235613 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 8 235614 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 235615 -NCIT:C190679 Recurrent Microsatellite Stable Colorectal Carcinoma 7 235616 -NCIT:C43588 Colorectal Squamous Cell Carcinoma 6 235617 -NCIT:C5490 Colon Squamous Cell Carcinoma 7 235618 -NCIT:C5554 Rectal Squamous Cell Carcinoma 7 235619 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 8 235620 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 235621 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 235622 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 8 235623 -NCIT:C5555 Rectal Cloacogenic Carcinoma 8 235624 -NCIT:C43589 Colorectal Adenosquamous Carcinoma 6 235625 -NCIT:C43594 Rectal Adenosquamous Carcinoma 7 235626 -NCIT:C5491 Colon Adenosquamous Carcinoma 7 235627 -NCIT:C43591 Colorectal Undifferentiated Carcinoma 6 235628 -NCIT:C7100 Colon Undifferentiated Carcinoma 7 235629 -NCIT:C7974 Rectal Undifferentiated Carcinoma 7 235630 -NCIT:C4910 Colon Carcinoma 6 235631 -NCIT:C134251 Colon Cancer by AJCC v8 Stage 7 235632 -NCIT:C134271 Stage 0 Colon Cancer AJCC v8 8 235633 -NCIT:C134273 Stage I Colon Cancer AJCC v8 8 235634 -NCIT:C134274 Stage II Colon Cancer AJCC v8 8 235635 -NCIT:C134280 Stage IIA Colon Cancer AJCC v8 9 235636 -NCIT:C134281 Stage IIB Colon Cancer AJCC v8 9 235637 -NCIT:C134282 Stage IIC Colon Cancer AJCC v8 9 235638 -NCIT:C134283 Stage III Colon Cancer AJCC v8 8 235639 -NCIT:C134284 Stage IIIA Colon Cancer AJCC v8 9 235640 -NCIT:C134285 Stage IIIB Colon Cancer AJCC v8 9 235641 -NCIT:C134286 Stage IIIC Colon Cancer AJCC v8 9 235642 -NCIT:C134287 Stage IV Colon Cancer AJCC v8 8 235643 -NCIT:C134288 Stage IVA Colon Cancer AJCC v8 9 235644 -NCIT:C134289 Stage IVB Colon Cancer AJCC v8 9 235645 -NCIT:C134290 Stage IVC Colon Cancer AJCC v8 9 235646 -NCIT:C153351 Refractory Colon Carcinoma 7 235647 -NCIT:C162155 Refractory Colon Adenocarcinoma 8 235648 -NCIT:C156097 Metastatic Colon Carcinoma 7 235649 -NCIT:C160819 Metastatic Colon Adenocarcinoma 8 235650 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 235651 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 235652 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 235653 -NCIT:C167238 Advanced Colon Carcinoma 8 235654 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 235655 -NCIT:C170910 Locally Advanced Colon Carcinoma 8 235656 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 235657 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 235658 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 235659 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 8 235660 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 235661 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 8 235662 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 8 235663 -NCIT:C164228 Hereditary Colon Carcinoma 7 235664 -NCIT:C167237 Resectable Colon Carcinoma 7 235665 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 7 235666 -NCIT:C177680 Sigmoid Colon Carcinoma 7 235667 -NCIT:C177777 Microsatellite Stable Colon Carcinoma 7 235668 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 8 235669 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 235670 -NCIT:C180406 Unresectable Colon Carcinoma 7 235671 -NCIT:C162116 Unresectable Colon Adenocarcinoma 8 235672 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 235673 -NCIT:C3491 Cecum Carcinoma 7 235674 -NCIT:C4594 Cecum Carcinoma In Situ 8 235675 -NCIT:C5543 Cecum Adenocarcinoma 8 235676 -NCIT:C3998 Recurrent Colon Carcinoma 7 235677 -NCIT:C162442 Recurrent Colon Adenocarcinoma 8 235678 -NCIT:C4349 Colon Adenocarcinoma 7 235679 -NCIT:C160819 Metastatic Colon Adenocarcinoma 8 235680 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 235681 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 235682 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 235683 -NCIT:C162116 Unresectable Colon Adenocarcinoma 8 235684 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 235685 -NCIT:C162155 Refractory Colon Adenocarcinoma 8 235686 -NCIT:C162442 Recurrent Colon Adenocarcinoma 8 235687 -NCIT:C38760 Submucosal Invasive Colon Adenocarcinoma 8 235688 -NCIT:C45429 Colon Intramucosal Adenocarcinoma 8 235689 -NCIT:C27413 Adenoma of the Colon with Intramucosal Adenocarcinoma 9 235690 -NCIT:C5543 Cecum Adenocarcinoma 8 235691 -NCIT:C60641 Colon Medullary Carcinoma 8 235692 -NCIT:C7966 Colon Mucinous Adenocarcinoma 8 235693 -NCIT:C7967 Colon Signet Ring Cell Adenocarcinoma 8 235694 -NCIT:C9452 Grade 1 Colon Adenocarcinoma 8 235695 -NCIT:C9453 Grade 2 Colon Adenocarcinoma 8 235696 -NCIT:C9454 Grade 3 Colon Adenocarcinoma 8 235697 -NCIT:C96486 Colon Serrated Adenocarcinoma 8 235698 -NCIT:C96489 Colon Cribriform Comedo-Type Adenocarcinoma 8 235699 -NCIT:C96492 Colon Micropapillary Adenocarcinoma 8 235700 -NCIT:C5490 Colon Squamous Cell Carcinoma 7 235701 -NCIT:C5491 Colon Adenosquamous Carcinoma 7 235702 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 7 235703 -NCIT:C7100 Colon Undifferentiated Carcinoma 7 235704 -NCIT:C90507 Colon Cancer by AJCC v6 Stage 7 235705 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 8 235706 -NCIT:C4594 Cecum Carcinoma In Situ 9 235707 -NCIT:C3993 Stage II Colon Cancer AJCC v6 8 235708 -NCIT:C3994 Stage IV Colon Cancer AJCC v6 8 235709 -NCIT:C7766 Stage III Colon Cancer AJCC v6 8 235710 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 8 235711 -NCIT:C91224 Colon Cancer by AJCC v7 Stage 7 235712 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 8 235713 -NCIT:C4594 Cecum Carcinoma In Situ 9 235714 -NCIT:C89990 Stage II Colon Cancer AJCC v7 8 235715 -NCIT:C115041 Stage IIA Colon Cancer AJCC v7 9 235716 -NCIT:C115042 Stage IIB Colon Cancer AJCC v7 9 235717 -NCIT:C115043 Stage IIC Colon Cancer AJCC v7 9 235718 -NCIT:C89995 Stage III Colon Cancer AJCC v7 8 235719 -NCIT:C115047 Stage IIIA Colon Cancer AJCC v7 9 235720 -NCIT:C115048 Stage IIIB Colon Cancer AJCC v7 9 235721 -NCIT:C115049 Stage IIIC Colon Cancer AJCC v7 9 235722 -NCIT:C89999 Stage IV Colon Cancer AJCC v7 8 235723 -NCIT:C115053 Stage IVA Colon Cancer AJCC v7 9 235724 -NCIT:C115054 Stage IVB Colon Cancer AJCC v7 9 235725 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 8 235726 -NCIT:C5105 Colorectal Adenocarcinoma 6 235727 -NCIT:C161048 Metastatic Colorectal Adenocarcinoma 7 235728 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 8 235729 -NCIT:C160819 Metastatic Colon Adenocarcinoma 8 235730 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 235731 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 235732 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 235733 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 8 235734 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 235735 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 235736 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 235737 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 8 235738 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 235739 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 235740 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 235741 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 235742 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 235743 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 235744 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 235745 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 235746 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 235747 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 235748 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 235749 -NCIT:C162154 Refractory Colorectal Adenocarcinoma 7 235750 -NCIT:C162155 Refractory Colon Adenocarcinoma 8 235751 -NCIT:C162157 Refractory Rectal Adenocarcinoma 8 235752 -NCIT:C162441 Recurrent Colorectal Adenocarcinoma 7 235753 -NCIT:C162442 Recurrent Colon Adenocarcinoma 8 235754 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 8 235755 -NCIT:C171585 Unresectable Colorectal Adenocarcinoma 7 235756 -NCIT:C162116 Unresectable Colon Adenocarcinoma 8 235757 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 235758 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 8 235759 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 235760 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 235761 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 235762 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 235763 -NCIT:C172694 Colorectal Poorly Cohesive Adenocarcinoma 7 235764 -NCIT:C43586 Colorectal Signet Ring Cell Carcinoma 8 235765 -NCIT:C43593 Rectosigmoid Signet Ring Cell Carcinoma 9 235766 -NCIT:C7967 Colon Signet Ring Cell Adenocarcinoma 9 235767 -NCIT:C9168 Rectal Signet Ring Cell Adenocarcinoma 9 235768 -NCIT:C172699 Colorectal Adenoma-Like Adenocarcinoma 7 235769 -NCIT:C172700 Inflammatory Bowel Disease-Associated Colorectal Adenocarcinoma 7 235770 -NCIT:C96496 Ulcerative Colitis-Associated Colorectal Adenocarcinoma 8 235771 -NCIT:C96497 Crohn Disease-Associated Colorectal Adenocarcinoma 8 235772 -NCIT:C4349 Colon Adenocarcinoma 7 235773 -NCIT:C160819 Metastatic Colon Adenocarcinoma 8 235774 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 235775 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 235776 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 235777 -NCIT:C162116 Unresectable Colon Adenocarcinoma 8 235778 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 235779 -NCIT:C162155 Refractory Colon Adenocarcinoma 8 235780 -NCIT:C162442 Recurrent Colon Adenocarcinoma 8 235781 -NCIT:C38760 Submucosal Invasive Colon Adenocarcinoma 8 235782 -NCIT:C45429 Colon Intramucosal Adenocarcinoma 8 235783 -NCIT:C27413 Adenoma of the Colon with Intramucosal Adenocarcinoma 9 235784 -NCIT:C5543 Cecum Adenocarcinoma 8 235785 -NCIT:C60641 Colon Medullary Carcinoma 8 235786 -NCIT:C7966 Colon Mucinous Adenocarcinoma 8 235787 -NCIT:C7967 Colon Signet Ring Cell Adenocarcinoma 8 235788 -NCIT:C9452 Grade 1 Colon Adenocarcinoma 8 235789 -NCIT:C9453 Grade 2 Colon Adenocarcinoma 8 235790 -NCIT:C9454 Grade 3 Colon Adenocarcinoma 8 235791 -NCIT:C96486 Colon Serrated Adenocarcinoma 8 235792 -NCIT:C96489 Colon Cribriform Comedo-Type Adenocarcinoma 8 235793 -NCIT:C96492 Colon Micropapillary Adenocarcinoma 8 235794 -NCIT:C43584 Rectosigmoid Adenocarcinoma 7 235795 -NCIT:C43592 Rectosigmoid Mucinous Adenocarcinoma 8 235796 -NCIT:C43593 Rectosigmoid Signet Ring Cell Carcinoma 8 235797 -NCIT:C43585 Colorectal Mucinous Adenocarcinoma 7 235798 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 8 235799 -NCIT:C43592 Rectosigmoid Mucinous Adenocarcinoma 8 235800 -NCIT:C7966 Colon Mucinous Adenocarcinoma 8 235801 -NCIT:C7973 Rectal Mucinous Adenocarcinoma 8 235802 -NCIT:C43590 Colorectal Medullary Carcinoma 7 235803 -NCIT:C60640 Rectal Medullary Carcinoma 8 235804 -NCIT:C60641 Colon Medullary Carcinoma 8 235805 -NCIT:C9383 Rectal Adenocarcinoma 7 235806 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 8 235807 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 235808 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 235809 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 235810 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 8 235811 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 235812 -NCIT:C162157 Refractory Rectal Adenocarcinoma 8 235813 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 8 235814 -NCIT:C60640 Rectal Medullary Carcinoma 8 235815 -NCIT:C7973 Rectal Mucinous Adenocarcinoma 8 235816 -NCIT:C9168 Rectal Signet Ring Cell Adenocarcinoma 8 235817 -NCIT:C9449 Grade 3 Rectal Adenocarcinoma 8 235818 -NCIT:C9450 Grade 2 Rectal Adenocarcinoma 8 235819 -NCIT:C9451 Grade 1 Rectal Adenocarcinoma 8 235820 -NCIT:C96487 Rectal Serrated Adenocarcinoma 8 235821 -NCIT:C96490 Rectal Cribriform Comedo-Type Adenocarcinoma 8 235822 -NCIT:C96493 Rectal Micropapillary Adenocarcinoma 8 235823 -NCIT:C9446 Grade 1 Colorectal Adenocarcinoma 7 235824 -NCIT:C9451 Grade 1 Rectal Adenocarcinoma 8 235825 -NCIT:C9452 Grade 1 Colon Adenocarcinoma 8 235826 -NCIT:C9447 Grade 2 Colorectal Adenocarcinoma 7 235827 -NCIT:C9450 Grade 2 Rectal Adenocarcinoma 8 235828 -NCIT:C9453 Grade 2 Colon Adenocarcinoma 8 235829 -NCIT:C9448 Grade 3 Colorectal Adenocarcinoma 7 235830 -NCIT:C9449 Grade 3 Rectal Adenocarcinoma 8 235831 -NCIT:C9454 Grade 3 Colon Adenocarcinoma 8 235832 -NCIT:C96485 Colorectal Serrated Adenocarcinoma 7 235833 -NCIT:C96486 Colon Serrated Adenocarcinoma 8 235834 -NCIT:C96487 Rectal Serrated Adenocarcinoma 8 235835 -NCIT:C96488 Colorectal Cribriform Comedo-Type Adenocarcinoma 7 235836 -NCIT:C96489 Colon Cribriform Comedo-Type Adenocarcinoma 8 235837 -NCIT:C96490 Rectal Cribriform Comedo-Type Adenocarcinoma 8 235838 -NCIT:C96491 Colorectal Micropapillary Adenocarcinoma 7 235839 -NCIT:C96492 Colon Micropapillary Adenocarcinoma 8 235840 -NCIT:C96493 Rectal Micropapillary Adenocarcinoma 8 235841 -NCIT:C7421 Rectosigmoid Carcinoma 6 235842 -NCIT:C43584 Rectosigmoid Adenocarcinoma 7 235843 -NCIT:C43592 Rectosigmoid Mucinous Adenocarcinoma 8 235844 -NCIT:C43593 Rectosigmoid Signet Ring Cell Carcinoma 8 235845 -NCIT:C8634 Recurrent Rectosigmoid Carcinoma 7 235846 -NCIT:C90509 Rectosigmoid Cancer by AJCC v6 Stage 7 235847 -NCIT:C5015 Stage II Rectosigmoid Cancer AJCC v6 8 235848 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 8 235849 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 8 235850 -NCIT:C8635 Stage III Rectosigmoid Cancer AJCC v6 8 235851 -NCIT:C8636 Stage IV Rectosigmoid Cancer AJCC v6 8 235852 -NCIT:C91226 Rectosigmoid Cancer by AJCC v7 Stage 7 235853 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 8 235854 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 8 235855 -NCIT:C89992 Stage II Rectosigmoid Cancer AJCC v7 8 235856 -NCIT:C89997 Stage III Rectosigmoid Cancer AJCC v7 8 235857 -NCIT:C90019 Stage IV Rectosigmoid Cancer AJCC v7 8 235858 -NCIT:C8625 Recurrent Colorectal Carcinoma 6 235859 -NCIT:C162441 Recurrent Colorectal Adenocarcinoma 7 235860 -NCIT:C162442 Recurrent Colon Adenocarcinoma 8 235861 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 8 235862 -NCIT:C190199 Locally Recurrent Colorectal Carcinoma 7 235863 -NCIT:C190679 Recurrent Microsatellite Stable Colorectal Carcinoma 7 235864 -NCIT:C3998 Recurrent Colon Carcinoma 7 235865 -NCIT:C162442 Recurrent Colon Adenocarcinoma 8 235866 -NCIT:C8634 Recurrent Rectosigmoid Carcinoma 7 235867 -NCIT:C9238 Recurrent Rectal Carcinoma 7 235868 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 8 235869 -NCIT:C90506 Colorectal Cancer by AJCC v6 Stage 6 235870 -NCIT:C8513 Stage I Colorectal Cancer AJCC v6 and v7 7 235871 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 8 235872 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 8 235873 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 8 235874 -NCIT:C8514 Stage II Colorectal Cancer AJCC v6 7 235875 -NCIT:C3993 Stage II Colon Cancer AJCC v6 8 235876 -NCIT:C5015 Stage II Rectosigmoid Cancer AJCC v6 8 235877 -NCIT:C7791 Stage II Rectal Cancer AJCC v6 8 235878 -NCIT:C8515 Stage III Colorectal Cancer AJCC v6 7 235879 -NCIT:C7766 Stage III Colon Cancer AJCC v6 8 235880 -NCIT:C7792 Stage III Rectal Cancer AJCC v6 8 235881 -NCIT:C8635 Stage III Rectosigmoid Cancer AJCC v6 8 235882 -NCIT:C8516 Stage IV Colorectal Cancer AJCC v6 7 235883 -NCIT:C3994 Stage IV Colon Cancer AJCC v6 8 235884 -NCIT:C8412 Stage IV Rectal Cancer AJCC v6 8 235885 -NCIT:C8636 Stage IV Rectosigmoid Cancer AJCC v6 8 235886 -NCIT:C8932 Stage 0 Colorectal Cancer AJCC v6 and v7 7 235887 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 8 235888 -NCIT:C4594 Cecum Carcinoma In Situ 9 235889 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 8 235890 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 8 235891 -NCIT:C90507 Colon Cancer by AJCC v6 Stage 7 235892 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 8 235893 -NCIT:C4594 Cecum Carcinoma In Situ 9 235894 -NCIT:C3993 Stage II Colon Cancer AJCC v6 8 235895 -NCIT:C3994 Stage IV Colon Cancer AJCC v6 8 235896 -NCIT:C7766 Stage III Colon Cancer AJCC v6 8 235897 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 8 235898 -NCIT:C90508 Rectal Cancer by AJCC v6 Stage 7 235899 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 8 235900 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 8 235901 -NCIT:C7791 Stage II Rectal Cancer AJCC v6 8 235902 -NCIT:C7792 Stage III Rectal Cancer AJCC v6 8 235903 -NCIT:C8412 Stage IV Rectal Cancer AJCC v6 8 235904 -NCIT:C90509 Rectosigmoid Cancer by AJCC v6 Stage 7 235905 -NCIT:C5015 Stage II Rectosigmoid Cancer AJCC v6 8 235906 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 8 235907 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 8 235908 -NCIT:C8635 Stage III Rectosigmoid Cancer AJCC v6 8 235909 -NCIT:C8636 Stage IV Rectosigmoid Cancer AJCC v6 8 235910 -NCIT:C91223 Colorectal Cancer by AJCC v7 Stage 6 235911 -NCIT:C8513 Stage I Colorectal Cancer AJCC v6 and v7 7 235912 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 8 235913 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 8 235914 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 8 235915 -NCIT:C8932 Stage 0 Colorectal Cancer AJCC v6 and v7 7 235916 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 8 235917 -NCIT:C4594 Cecum Carcinoma In Situ 9 235918 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 8 235919 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 8 235920 -NCIT:C89989 Stage II Colorectal Cancer AJCC v7 7 235921 -NCIT:C87813 Stage IIA Colorectal Cancer AJCC v7 8 235922 -NCIT:C115041 Stage IIA Colon Cancer AJCC v7 9 235923 -NCIT:C115044 Stage IIA Rectal Cancer AJCC v7 9 235924 -NCIT:C87814 Stage IIB Colorectal Cancer AJCC v7 8 235925 -NCIT:C115042 Stage IIB Colon Cancer AJCC v7 9 235926 -NCIT:C115045 Stage IIB Rectal Cancer AJCC v7 9 235927 -NCIT:C87815 Stage IIC Colorectal Cancer AJCC v7 8 235928 -NCIT:C115043 Stage IIC Colon Cancer AJCC v7 9 235929 -NCIT:C115046 Stage IIC Rectal Cancer AJCC v7 9 235930 -NCIT:C89990 Stage II Colon Cancer AJCC v7 8 235931 -NCIT:C115041 Stage IIA Colon Cancer AJCC v7 9 235932 -NCIT:C115042 Stage IIB Colon Cancer AJCC v7 9 235933 -NCIT:C115043 Stage IIC Colon Cancer AJCC v7 9 235934 -NCIT:C89991 Stage II Rectal Cancer AJCC v7 8 235935 -NCIT:C115044 Stage IIA Rectal Cancer AJCC v7 9 235936 -NCIT:C115045 Stage IIB Rectal Cancer AJCC v7 9 235937 -NCIT:C115046 Stage IIC Rectal Cancer AJCC v7 9 235938 -NCIT:C89992 Stage II Rectosigmoid Cancer AJCC v7 8 235939 -NCIT:C89994 Stage III Colorectal Cancer AJCC v7 7 235940 -NCIT:C87816 Stage IIIA Colorectal Cancer AJCC v7 8 235941 -NCIT:C115047 Stage IIIA Colon Cancer AJCC v7 9 235942 -NCIT:C115050 Stage IIIA Rectal Cancer AJCC v7 9 235943 -NCIT:C87817 Stage IIIB Colorectal Cancer AJCC v7 8 235944 -NCIT:C115048 Stage IIIB Colon Cancer AJCC v7 9 235945 -NCIT:C115051 Stage IIIB Rectal Cancer AJCC v7 9 235946 -NCIT:C87818 Stage IIIC Colorectal Cancer AJCC v7 8 235947 -NCIT:C115049 Stage IIIC Colon Cancer AJCC v7 9 235948 -NCIT:C115052 Stage IIIC Rectal Cancer AJCC v7 9 235949 -NCIT:C89995 Stage III Colon Cancer AJCC v7 8 235950 -NCIT:C115047 Stage IIIA Colon Cancer AJCC v7 9 235951 -NCIT:C115048 Stage IIIB Colon Cancer AJCC v7 9 235952 -NCIT:C115049 Stage IIIC Colon Cancer AJCC v7 9 235953 -NCIT:C89996 Stage III Rectal Cancer AJCC v7 8 235954 -NCIT:C115050 Stage IIIA Rectal Cancer AJCC v7 9 235955 -NCIT:C115051 Stage IIIB Rectal Cancer AJCC v7 9 235956 -NCIT:C115052 Stage IIIC Rectal Cancer AJCC v7 9 235957 -NCIT:C89997 Stage III Rectosigmoid Cancer AJCC v7 8 235958 -NCIT:C89998 Stage IV Colorectal Cancer AJCC v7 7 235959 -NCIT:C87819 Stage IVA Colorectal Cancer AJCC v7 8 235960 -NCIT:C115053 Stage IVA Colon Cancer AJCC v7 9 235961 -NCIT:C115055 Stage IVA Rectal Cancer AJCC v7 9 235962 -NCIT:C87820 Stage IVB Colorectal Cancer AJCC v7 8 235963 -NCIT:C115054 Stage IVB Colon Cancer AJCC v7 9 235964 -NCIT:C115056 Stage IVB Rectal Cancer AJCC v7 9 235965 -NCIT:C89999 Stage IV Colon Cancer AJCC v7 8 235966 -NCIT:C115053 Stage IVA Colon Cancer AJCC v7 9 235967 -NCIT:C115054 Stage IVB Colon Cancer AJCC v7 9 235968 -NCIT:C90016 Stage IV Rectal Cancer AJCC v7 8 235969 -NCIT:C115055 Stage IVA Rectal Cancer AJCC v7 9 235970 -NCIT:C115056 Stage IVB Rectal Cancer AJCC v7 9 235971 -NCIT:C90019 Stage IV Rectosigmoid Cancer AJCC v7 8 235972 -NCIT:C91224 Colon Cancer by AJCC v7 Stage 7 235973 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 8 235974 -NCIT:C4594 Cecum Carcinoma In Situ 9 235975 -NCIT:C89990 Stage II Colon Cancer AJCC v7 8 235976 -NCIT:C115041 Stage IIA Colon Cancer AJCC v7 9 235977 -NCIT:C115042 Stage IIB Colon Cancer AJCC v7 9 235978 -NCIT:C115043 Stage IIC Colon Cancer AJCC v7 9 235979 -NCIT:C89995 Stage III Colon Cancer AJCC v7 8 235980 -NCIT:C115047 Stage IIIA Colon Cancer AJCC v7 9 235981 -NCIT:C115048 Stage IIIB Colon Cancer AJCC v7 9 235982 -NCIT:C115049 Stage IIIC Colon Cancer AJCC v7 9 235983 -NCIT:C89999 Stage IV Colon Cancer AJCC v7 8 235984 -NCIT:C115053 Stage IVA Colon Cancer AJCC v7 9 235985 -NCIT:C115054 Stage IVB Colon Cancer AJCC v7 9 235986 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 8 235987 -NCIT:C91225 Rectal Cancer by AJCC v7 Stage 7 235988 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 8 235989 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 8 235990 -NCIT:C89991 Stage II Rectal Cancer AJCC v7 8 235991 -NCIT:C115044 Stage IIA Rectal Cancer AJCC v7 9 235992 -NCIT:C115045 Stage IIB Rectal Cancer AJCC v7 9 235993 -NCIT:C115046 Stage IIC Rectal Cancer AJCC v7 9 235994 -NCIT:C89996 Stage III Rectal Cancer AJCC v7 8 235995 -NCIT:C115050 Stage IIIA Rectal Cancer AJCC v7 9 235996 -NCIT:C115051 Stage IIIB Rectal Cancer AJCC v7 9 235997 -NCIT:C115052 Stage IIIC Rectal Cancer AJCC v7 9 235998 -NCIT:C90016 Stage IV Rectal Cancer AJCC v7 8 235999 -NCIT:C115055 Stage IVA Rectal Cancer AJCC v7 9 236000 -NCIT:C115056 Stage IVB Rectal Cancer AJCC v7 9 236001 -NCIT:C91226 Rectosigmoid Cancer by AJCC v7 Stage 7 236002 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 8 236003 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 8 236004 -NCIT:C89992 Stage II Rectosigmoid Cancer AJCC v7 8 236005 -NCIT:C89997 Stage III Rectosigmoid Cancer AJCC v7 8 236006 -NCIT:C90019 Stage IV Rectosigmoid Cancer AJCC v7 8 236007 -NCIT:C9382 Rectal Carcinoma 6 236008 -NCIT:C118823 Childhood Rectal Carcinoma 7 236009 -NCIT:C134258 Rectal Cancer by AJCC v8 Stage 7 236010 -NCIT:C134291 Stage 0 Rectal Cancer AJCC v8 8 236011 -NCIT:C134292 Stage I Rectal Cancer AJCC v8 8 236012 -NCIT:C134293 Stage II Rectal Cancer AJCC v8 8 236013 -NCIT:C134294 Stage IIA Rectal Cancer AJCC v8 9 236014 -NCIT:C134295 Stage IIB Rectal Cancer AJCC v8 9 236015 -NCIT:C134296 Stage IIC Rectal Cancer AJCC v8 9 236016 -NCIT:C134297 Stage III Rectal Cancer AJCC v8 8 236017 -NCIT:C134298 Stage IIIA Rectal Cancer AJCC v8 9 236018 -NCIT:C134299 Stage IIIB Rectal Cancer AJCC v8 9 236019 -NCIT:C134300 Stage IIIC Rectal Cancer AJCC v8 9 236020 -NCIT:C134301 Stage IV Rectal Cancer AJCC v8 8 236021 -NCIT:C134302 Stage IVA Rectal Cancer AJCC v8 9 236022 -NCIT:C134303 Stage IVB Rectal Cancer AJCC v8 9 236023 -NCIT:C134304 Stage IVC Rectal Cancer AJCC v8 9 236024 -NCIT:C156098 Metastatic Rectal Carcinoma 7 236025 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 8 236026 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 8 236027 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 236028 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 236029 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 236030 -NCIT:C170777 Advanced Rectal Carcinoma 8 236031 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 236032 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 236033 -NCIT:C170778 Locally Advanced Rectal Carcinoma 8 236034 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 236035 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 236036 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 236037 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 8 236038 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 236039 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 236040 -NCIT:C162156 Refractory Rectal Carcinoma 7 236041 -NCIT:C162157 Refractory Rectal Adenocarcinoma 8 236042 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 8 236043 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 7 236044 -NCIT:C177776 Microsatellite Stable Rectal Carcinoma 7 236045 -NCIT:C43594 Rectal Adenosquamous Carcinoma 7 236046 -NCIT:C5554 Rectal Squamous Cell Carcinoma 7 236047 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 8 236048 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 236049 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 236050 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 8 236051 -NCIT:C5555 Rectal Cloacogenic Carcinoma 8 236052 -NCIT:C5556 Rectal Sarcomatoid Carcinoma 7 236053 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 7 236054 -NCIT:C7974 Rectal Undifferentiated Carcinoma 7 236055 -NCIT:C90508 Rectal Cancer by AJCC v6 Stage 7 236056 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 8 236057 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 8 236058 -NCIT:C7791 Stage II Rectal Cancer AJCC v6 8 236059 -NCIT:C7792 Stage III Rectal Cancer AJCC v6 8 236060 -NCIT:C8412 Stage IV Rectal Cancer AJCC v6 8 236061 -NCIT:C91225 Rectal Cancer by AJCC v7 Stage 7 236062 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 8 236063 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 8 236064 -NCIT:C89991 Stage II Rectal Cancer AJCC v7 8 236065 -NCIT:C115044 Stage IIA Rectal Cancer AJCC v7 9 236066 -NCIT:C115045 Stage IIB Rectal Cancer AJCC v7 9 236067 -NCIT:C115046 Stage IIC Rectal Cancer AJCC v7 9 236068 -NCIT:C89996 Stage III Rectal Cancer AJCC v7 8 236069 -NCIT:C115050 Stage IIIA Rectal Cancer AJCC v7 9 236070 -NCIT:C115051 Stage IIIB Rectal Cancer AJCC v7 9 236071 -NCIT:C115052 Stage IIIC Rectal Cancer AJCC v7 9 236072 -NCIT:C90016 Stage IV Rectal Cancer AJCC v7 8 236073 -NCIT:C115055 Stage IVA Rectal Cancer AJCC v7 9 236074 -NCIT:C115056 Stage IVB Rectal Cancer AJCC v7 9 236075 -NCIT:C9238 Recurrent Rectal Carcinoma 7 236076 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 8 236077 -NCIT:C9383 Rectal Adenocarcinoma 7 236078 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 8 236079 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 236080 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 236081 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 236082 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 8 236083 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 236084 -NCIT:C162157 Refractory Rectal Adenocarcinoma 8 236085 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 8 236086 -NCIT:C60640 Rectal Medullary Carcinoma 8 236087 -NCIT:C7973 Rectal Mucinous Adenocarcinoma 8 236088 -NCIT:C9168 Rectal Signet Ring Cell Adenocarcinoma 8 236089 -NCIT:C9449 Grade 3 Rectal Adenocarcinoma 8 236090 -NCIT:C9450 Grade 2 Rectal Adenocarcinoma 8 236091 -NCIT:C9451 Grade 1 Rectal Adenocarcinoma 8 236092 -NCIT:C96487 Rectal Serrated Adenocarcinoma 8 236093 -NCIT:C96490 Rectal Cribriform Comedo-Type Adenocarcinoma 8 236094 -NCIT:C96493 Rectal Micropapillary Adenocarcinoma 8 236095 -NCIT:C96156 Colorectal Neuroendocrine Carcinoma 6 236096 -NCIT:C43587 Colorectal Small Cell Neuroendocrine Carcinoma 7 236097 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 8 236098 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 8 236099 -NCIT:C96157 Colorectal Large Cell Neuroendocrine Carcinoma 7 236100 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 8 236101 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 8 236102 -NCIT:C96158 Colorectal Mixed Adenoneuroendocrine Carcinoma 6 236103 -NCIT:C96494 Colorectal Sarcomatoid Carcinoma 6 236104 -NCIT:C5556 Rectal Sarcomatoid Carcinoma 7 236105 -NCIT:C3513 Esophageal Carcinoma 5 236106 -NCIT:C118812 Childhood Esophageal Carcinoma 6 236107 -NCIT:C128563 Unresectable Esophageal Carcinoma 6 236108 -NCIT:C171608 Unresectable Esophageal Squamous Cell Carcinoma 7 236109 -NCIT:C173162 Unresectable Esophageal Adenocarcinoma 7 236110 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 236111 -NCIT:C172248 Unresectable Distal Esophagus Adenocarcinoma 8 236112 -NCIT:C133399 Esophageal Cancer by AJCC v8 Stage 6 236113 -NCIT:C133400 Esophageal Adenocarcinoma by AJCC v8 Stage 7 236114 -NCIT:C133401 Esophageal Adenocarcinoma by AJCC v8 Clinical Stage 8 236115 -NCIT:C133402 Clinical Stage 0 Esophageal Adenocarcinoma AJCC v8 9 236116 -NCIT:C133403 Clinical Stage I Esophageal Adenocarcinoma AJCC v8 9 236117 -NCIT:C133404 Clinical Stage II Esophageal Adenocarcinoma AJCC v8 9 236118 -NCIT:C133405 Clinical Stage IIA Esophageal Adenocarcinoma AJCC v8 10 236119 -NCIT:C133406 Clinical Stage IIB Esophageal Adenocarcinoma AJCC v8 10 236120 -NCIT:C133407 Clinical Stage III Esophageal Adenocarcinoma AJCC v8 9 236121 -NCIT:C133408 Clinical Stage IV Esophageal Adenocarcinoma AJCC v8 9 236122 -NCIT:C133409 Clinical Stage IVA Esophageal Adenocarcinoma AJCC v8 10 236123 -NCIT:C133410 Clinical Stage IVB Esophageal Adenocarcinoma AJCC v8 10 236124 -NCIT:C133412 Esophageal Adenocarcinoma by AJCC v8 Pathologic Stage 8 236125 -NCIT:C133413 Pathologic Stage 0 Esophageal Adenocarcinoma AJCC v8 9 236126 -NCIT:C133414 Pathologic Stage I Esophageal Adenocarcinoma AJCC v8 9 236127 -NCIT:C133415 Pathologic Stage IA Esophageal Adenocarcinoma AJCC v8 10 236128 -NCIT:C133416 Pathologic Stage IB Esophageal Adenocarcinoma AJCC v8 10 236129 -NCIT:C133417 Pathologic Stage IC Esophageal Adenocarcinoma AJCC v8 10 236130 -NCIT:C133418 Pathologic Stage II Esophageal Adenocarcinoma AJCC v8 9 236131 -NCIT:C133419 Pathologic Stage IIA Esophageal Adenocarcinoma AJCC v8 10 236132 -NCIT:C133420 Pathologic Stage IIB Esophageal Adenocarcinoma AJCC v8 10 236133 -NCIT:C133421 Pathologic Stage III Esophageal Adenocarcinoma AJCC v8 9 236134 -NCIT:C133422 Pathologic Stage IIIA Esophageal Adenocarcinoma AJCC v8 10 236135 -NCIT:C133423 Pathologic Stage IIIB Esophageal Adenocarcinoma AJCC v8 10 236136 -NCIT:C133424 Pathologic Stage IV Esophageal Adenocarcinoma AJCC v8 9 236137 -NCIT:C133425 Pathologic Stage IVA Esophageal Adenocarcinoma AJCC v8 10 236138 -NCIT:C133426 Pathologic Stage IVB Esophageal Adenocarcinoma AJCC v8 10 236139 -NCIT:C133432 Esophageal Adenocarcinoma by AJCC v8 Postneoadjuvant Therapy Stage 8 236140 -NCIT:C133433 Postneoadjuvant Therapy Stage I Esophageal Adenocarcinoma AJCC v8 9 236141 -NCIT:C133434 Postneoadjuvant Therapy Stage II Esophageal Adenocarcinoma AJCC v8 9 236142 -NCIT:C133435 Postneoadjuvant Therapy Stage III Esophageal Adenocarcinoma AJCC v8 9 236143 -NCIT:C133436 Postneoadjuvant Therapy Stage IIIA Esophageal Adenocarcinoma AJCC v8 10 236144 -NCIT:C133437 Postneoadjuvant Therapy Stage IIIB Esophageal Adenocarcinoma AJCC v8 10 236145 -NCIT:C133438 Postneoadjuvant Therapy Stage IV Esophageal Adenocarcinoma AJCC v8 9 236146 -NCIT:C133439 Postneoadjuvant Therapy Stage IVA Esophageal Adenocarcinoma AJCC v8 10 236147 -NCIT:C133440 Postneoadjuvant Therapy Stage IVB Esophageal Adenocarcinoma AJCC v8 10 236148 -NCIT:C133443 Esophageal Squamous Cell Carcinoma by AJCC v8 Stage 7 236149 -NCIT:C133444 Esophageal Squamous Cell Carcinoma by AJCC v8 Clinical Stage 8 236150 -NCIT:C133447 Clinical Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 9 236151 -NCIT:C133448 Clinical Stage I Esophageal Squamous Cell Carcinoma AJCC v8 9 236152 -NCIT:C133449 Clinical Stage II Esophageal Squamous Cell Carcinoma AJCC v8 9 236153 -NCIT:C133450 Clinical Stage III Esophageal Squamous Cell Carcinoma AJCC v8 9 236154 -NCIT:C133451 Clinical Stage IV Esophageal Squamous Cell Carcinoma AJCC v8 9 236155 -NCIT:C133452 Clinical Stage IVA Esophageal Squamous Cell Carcinoma AJCC v8 10 236156 -NCIT:C133453 Clinical Stage IVB Esophageal Squamous Cell Carcinoma AJCC v8 10 236157 -NCIT:C133445 Esophageal Squamous Cell Carcinoma by AJCC v8 Pathologic Stage 8 236158 -NCIT:C133519 Pathologic Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 9 236159 -NCIT:C133521 Pathologic Stage I Esophageal Squamous Cell Carcinoma AJCC v8 9 236160 -NCIT:C133525 Pathologic Stage IA Esophageal Squamous Cell Carcinoma AJCC v8 10 236161 -NCIT:C133530 Pathologic Stage IB Esophageal Squamous Cell Carcinoma AJCC v8 10 236162 -NCIT:C133532 Pathologic Stage II Esophageal Squamous Cell Carcinoma AJCC v8 9 236163 -NCIT:C133534 Pathologic Stage IIA Esophageal Squamous Cell Carcinoma AJCC v8 10 236164 -NCIT:C133535 Pathologic Stage IIB Esophageal Squamous Cell Carcinoma AJCC v8 10 236165 -NCIT:C133536 Pathologic Stage III Esophageal Squamous Cell Carcinoma AJCC v8 9 236166 -NCIT:C133537 Pathologic Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v8 10 236167 -NCIT:C133538 Pathologic Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v8 10 236168 -NCIT:C133539 Pathologic Stage IV Esophageal Squamous Cell Carcinoma AJCC v8 9 236169 -NCIT:C133541 Pathologic Stage IVA Esophageal Squamous Cell Carcinoma AJCC v8 10 236170 -NCIT:C133542 Pathologic Stage IVB Esophageal Squamous Cell Carcinoma AJCC v8 10 236171 -NCIT:C133446 Esophageal Squamous Cell Carcinoma by AJCC v8 Postneoadjuvant Therapy Stage 8 236172 -NCIT:C133454 Postneoadjuvant Therapy Stage I Esophageal Squamous Cell Carcinoma AJCC v8 9 236173 -NCIT:C133455 Postneoadjuvant Therapy Stage II Esophageal Squamous Cell Carcinoma AJCC v8 9 236174 -NCIT:C133456 Postneoadjuvant Therapy Stage III Esophageal Squamous Cell Carcinoma AJCC v8 9 236175 -NCIT:C133457 Postneoadjuvant Therapy Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v8 10 236176 -NCIT:C133458 Postneoadjuvant Therapy Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v8 10 236177 -NCIT:C133459 Postneoadjuvant Therapy Stage IV Esophageal Squamous Cell Carcinoma AJCC v8 9 236178 -NCIT:C133460 Postneoadjuvant Therapy Stage IVA Esophageal Squamous Cell Carcinoma AJCC v8 10 236179 -NCIT:C133461 Postneoadjuvant Therapy Stage IVB Esophageal Squamous Cell Carcinoma AJCC v8 10 236180 -NCIT:C156073 Metastatic Esophageal Carcinoma 6 236181 -NCIT:C156074 Metastatic Esophageal Adenocarcinoma 7 236182 -NCIT:C166120 Oligometastatic Esophageal Adenocarcinoma 8 236183 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 236184 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 236185 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 236186 -NCIT:C172249 Metastatic Distal Esophagus Adenocarcinoma 8 236187 -NCIT:C156075 Metastatic Esophageal Squamous Cell Carcinoma 7 236188 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 236189 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 236190 -NCIT:C160599 Advanced Esophageal Carcinoma 7 236191 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 236192 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 236193 -NCIT:C168976 Locally Advanced Esophageal Carcinoma 7 236194 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 236195 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 236196 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 236197 -NCIT:C166171 Localized Esophageal Carcinoma 6 236198 -NCIT:C171604 Refractory Esophageal Carcinoma 6 236199 -NCIT:C171606 Refractory Esophageal Squamous Cell Carcinoma 7 236200 -NCIT:C176892 Refractory Esophageal Adenocarcinoma 7 236201 -NCIT:C27421 Esophageal Adenosquamous Carcinoma 6 236202 -NCIT:C27422 Esophageal Undifferentiated Carcinoma 6 236203 -NCIT:C3999 Recurrent Esophageal Carcinoma 6 236204 -NCIT:C8627 Recurrent Esophageal Adenocarcinoma 7 236205 -NCIT:C8633 Recurrent Esophageal Squamous Cell Carcinoma 7 236206 -NCIT:C4024 Esophageal Squamous Cell Carcinoma 6 236207 -NCIT:C133442 Esophageal Squamous Cell Carcinoma by AJCC v7 Stage 7 236208 -NCIT:C5019 Stage IV Esophageal Squamous Cell Carcinoma AJCC v7 8 236209 -NCIT:C5020 Stage III Esophageal Squamous Cell Carcinoma AJCC v7 8 236210 -NCIT:C87787 Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v7 9 236211 -NCIT:C87788 Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v7 9 236212 -NCIT:C87789 Stage IIIC Esophageal Squamous Cell Carcinoma AJCC v7 9 236213 -NCIT:C5021 Stage II Esophageal Squamous Cell Carcinoma AJCC v7 8 236214 -NCIT:C6737 Stage IIB Esophageal Squamous Cell Carcinoma AJCC v7 9 236215 -NCIT:C6738 Stage IIA Esophageal Squamous Cell Carcinoma AJCC v7 9 236216 -NCIT:C5022 Stage I Esophageal Squamous Cell Carcinoma AJCC v7 8 236217 -NCIT:C87780 Stage IA Esophageal Squamous Cell Carcinoma AJCC v7 9 236218 -NCIT:C87781 Stage IB Esophageal Squamous Cell Carcinoma AJCC v7 9 236219 -NCIT:C5023 Stage 0 Esophageal Squamous Cell Carcinoma AJCC v7 8 236220 -NCIT:C133443 Esophageal Squamous Cell Carcinoma by AJCC v8 Stage 7 236221 -NCIT:C133444 Esophageal Squamous Cell Carcinoma by AJCC v8 Clinical Stage 8 236222 -NCIT:C133447 Clinical Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 9 236223 -NCIT:C133448 Clinical Stage I Esophageal Squamous Cell Carcinoma AJCC v8 9 236224 -NCIT:C133449 Clinical Stage II Esophageal Squamous Cell Carcinoma AJCC v8 9 236225 -NCIT:C133450 Clinical Stage III Esophageal Squamous Cell Carcinoma AJCC v8 9 236226 -NCIT:C133451 Clinical Stage IV Esophageal Squamous Cell Carcinoma AJCC v8 9 236227 -NCIT:C133452 Clinical Stage IVA Esophageal Squamous Cell Carcinoma AJCC v8 10 236228 -NCIT:C133453 Clinical Stage IVB Esophageal Squamous Cell Carcinoma AJCC v8 10 236229 -NCIT:C133445 Esophageal Squamous Cell Carcinoma by AJCC v8 Pathologic Stage 8 236230 -NCIT:C133519 Pathologic Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 9 236231 -NCIT:C133521 Pathologic Stage I Esophageal Squamous Cell Carcinoma AJCC v8 9 236232 -NCIT:C133525 Pathologic Stage IA Esophageal Squamous Cell Carcinoma AJCC v8 10 236233 -NCIT:C133530 Pathologic Stage IB Esophageal Squamous Cell Carcinoma AJCC v8 10 236234 -NCIT:C133532 Pathologic Stage II Esophageal Squamous Cell Carcinoma AJCC v8 9 236235 -NCIT:C133534 Pathologic Stage IIA Esophageal Squamous Cell Carcinoma AJCC v8 10 236236 -NCIT:C133535 Pathologic Stage IIB Esophageal Squamous Cell Carcinoma AJCC v8 10 236237 -NCIT:C133536 Pathologic Stage III Esophageal Squamous Cell Carcinoma AJCC v8 9 236238 -NCIT:C133537 Pathologic Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v8 10 236239 -NCIT:C133538 Pathologic Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v8 10 236240 -NCIT:C133539 Pathologic Stage IV Esophageal Squamous Cell Carcinoma AJCC v8 9 236241 -NCIT:C133541 Pathologic Stage IVA Esophageal Squamous Cell Carcinoma AJCC v8 10 236242 -NCIT:C133542 Pathologic Stage IVB Esophageal Squamous Cell Carcinoma AJCC v8 10 236243 -NCIT:C133446 Esophageal Squamous Cell Carcinoma by AJCC v8 Postneoadjuvant Therapy Stage 8 236244 -NCIT:C133454 Postneoadjuvant Therapy Stage I Esophageal Squamous Cell Carcinoma AJCC v8 9 236245 -NCIT:C133455 Postneoadjuvant Therapy Stage II Esophageal Squamous Cell Carcinoma AJCC v8 9 236246 -NCIT:C133456 Postneoadjuvant Therapy Stage III Esophageal Squamous Cell Carcinoma AJCC v8 9 236247 -NCIT:C133457 Postneoadjuvant Therapy Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v8 10 236248 -NCIT:C133458 Postneoadjuvant Therapy Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v8 10 236249 -NCIT:C133459 Postneoadjuvant Therapy Stage IV Esophageal Squamous Cell Carcinoma AJCC v8 9 236250 -NCIT:C133460 Postneoadjuvant Therapy Stage IVA Esophageal Squamous Cell Carcinoma AJCC v8 10 236251 -NCIT:C133461 Postneoadjuvant Therapy Stage IVB Esophageal Squamous Cell Carcinoma AJCC v8 10 236252 -NCIT:C150029 Thoracic Esophagus Squamous Cell Carcinoma 7 236253 -NCIT:C150032 Cervical Esophagus Squamous Cell Carcinoma 7 236254 -NCIT:C150037 Distal Esophagus Squamous Cell Carcinoma 7 236255 -NCIT:C156075 Metastatic Esophageal Squamous Cell Carcinoma 7 236256 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 236257 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 236258 -NCIT:C171606 Refractory Esophageal Squamous Cell Carcinoma 7 236259 -NCIT:C171608 Unresectable Esophageal Squamous Cell Carcinoma 7 236260 -NCIT:C27420 Esophageal Verrucous Carcinoma 7 236261 -NCIT:C27680 Human Papillomavirus-Related Esophageal Squamous Cell Carcinoma 7 236262 -NCIT:C27928 Alcohol-Related Esophageal Squamous Cell Carcinoma 7 236263 -NCIT:C7032 Esophageal Basaloid Carcinoma 7 236264 -NCIT:C8633 Recurrent Esophageal Squamous Cell Carcinoma 7 236265 -NCIT:C95608 Esophageal Spindle Cell Carcinoma 7 236266 -NCIT:C95610 Esophageal Well Differentiated Squamous Cell Carcinoma 7 236267 -NCIT:C179888 Esophageal Carcinoma Cuniculatum 8 236268 -NCIT:C95611 Esophageal Moderately Differentiated Squamous Cell Carcinoma 7 236269 -NCIT:C95612 Esophageal Poorly Differentiated Squamous Cell Carcinoma 7 236270 -NCIT:C4025 Esophageal Adenocarcinoma 6 236271 -NCIT:C133400 Esophageal Adenocarcinoma by AJCC v8 Stage 7 236272 -NCIT:C133401 Esophageal Adenocarcinoma by AJCC v8 Clinical Stage 8 236273 -NCIT:C133402 Clinical Stage 0 Esophageal Adenocarcinoma AJCC v8 9 236274 -NCIT:C133403 Clinical Stage I Esophageal Adenocarcinoma AJCC v8 9 236275 -NCIT:C133404 Clinical Stage II Esophageal Adenocarcinoma AJCC v8 9 236276 -NCIT:C133405 Clinical Stage IIA Esophageal Adenocarcinoma AJCC v8 10 236277 -NCIT:C133406 Clinical Stage IIB Esophageal Adenocarcinoma AJCC v8 10 236278 -NCIT:C133407 Clinical Stage III Esophageal Adenocarcinoma AJCC v8 9 236279 -NCIT:C133408 Clinical Stage IV Esophageal Adenocarcinoma AJCC v8 9 236280 -NCIT:C133409 Clinical Stage IVA Esophageal Adenocarcinoma AJCC v8 10 236281 -NCIT:C133410 Clinical Stage IVB Esophageal Adenocarcinoma AJCC v8 10 236282 -NCIT:C133412 Esophageal Adenocarcinoma by AJCC v8 Pathologic Stage 8 236283 -NCIT:C133413 Pathologic Stage 0 Esophageal Adenocarcinoma AJCC v8 9 236284 -NCIT:C133414 Pathologic Stage I Esophageal Adenocarcinoma AJCC v8 9 236285 -NCIT:C133415 Pathologic Stage IA Esophageal Adenocarcinoma AJCC v8 10 236286 -NCIT:C133416 Pathologic Stage IB Esophageal Adenocarcinoma AJCC v8 10 236287 -NCIT:C133417 Pathologic Stage IC Esophageal Adenocarcinoma AJCC v8 10 236288 -NCIT:C133418 Pathologic Stage II Esophageal Adenocarcinoma AJCC v8 9 236289 -NCIT:C133419 Pathologic Stage IIA Esophageal Adenocarcinoma AJCC v8 10 236290 -NCIT:C133420 Pathologic Stage IIB Esophageal Adenocarcinoma AJCC v8 10 236291 -NCIT:C133421 Pathologic Stage III Esophageal Adenocarcinoma AJCC v8 9 236292 -NCIT:C133422 Pathologic Stage IIIA Esophageal Adenocarcinoma AJCC v8 10 236293 -NCIT:C133423 Pathologic Stage IIIB Esophageal Adenocarcinoma AJCC v8 10 236294 -NCIT:C133424 Pathologic Stage IV Esophageal Adenocarcinoma AJCC v8 9 236295 -NCIT:C133425 Pathologic Stage IVA Esophageal Adenocarcinoma AJCC v8 10 236296 -NCIT:C133426 Pathologic Stage IVB Esophageal Adenocarcinoma AJCC v8 10 236297 -NCIT:C133432 Esophageal Adenocarcinoma by AJCC v8 Postneoadjuvant Therapy Stage 8 236298 -NCIT:C133433 Postneoadjuvant Therapy Stage I Esophageal Adenocarcinoma AJCC v8 9 236299 -NCIT:C133434 Postneoadjuvant Therapy Stage II Esophageal Adenocarcinoma AJCC v8 9 236300 -NCIT:C133435 Postneoadjuvant Therapy Stage III Esophageal Adenocarcinoma AJCC v8 9 236301 -NCIT:C133436 Postneoadjuvant Therapy Stage IIIA Esophageal Adenocarcinoma AJCC v8 10 236302 -NCIT:C133437 Postneoadjuvant Therapy Stage IIIB Esophageal Adenocarcinoma AJCC v8 10 236303 -NCIT:C133438 Postneoadjuvant Therapy Stage IV Esophageal Adenocarcinoma AJCC v8 9 236304 -NCIT:C133439 Postneoadjuvant Therapy Stage IVA Esophageal Adenocarcinoma AJCC v8 10 236305 -NCIT:C133440 Postneoadjuvant Therapy Stage IVB Esophageal Adenocarcinoma AJCC v8 10 236306 -NCIT:C133411 Esophageal Adenocarcinoma by AJCC v7 Stage 7 236307 -NCIT:C8628 Stage II Esophageal Adenocarcinoma AJCC v7 8 236308 -NCIT:C6731 Stage IIA Esophageal Adenocarcinoma AJCC v7 9 236309 -NCIT:C6732 Stage IIB Esophageal Adenocarcinoma AJCC v7 9 236310 -NCIT:C8629 Stage 0 Esophageal Adenocarcinoma AJCC v7 8 236311 -NCIT:C8630 Stage I Esophageal Adenocarcinoma AJCC v7 8 236312 -NCIT:C87782 Stage IA Esophageal Adenocarcinoma AJCC v7 9 236313 -NCIT:C87783 Stage IB Esophageal Adenocarcinoma AJCC v7 9 236314 -NCIT:C8631 Stage III Esophageal Adenocarcinoma AJCC v7 8 236315 -NCIT:C87784 Stage IIIA Esophageal Adenocarcinoma AJCC v7 9 236316 -NCIT:C87785 Stage IIIB Esophageal Adenocarcinoma AJCC v7 9 236317 -NCIT:C87786 Stage IIIC Esophageal Adenocarcinoma AJCC v7 9 236318 -NCIT:C8632 Stage IV Esophageal Adenocarcinoma AJCC v7 8 236319 -NCIT:C150027 Thoracic Esophagus Adenocarcinoma 7 236320 -NCIT:C150031 Cervical Esophagus Adenocarcinoma 7 236321 -NCIT:C152036 Distal Esophagus Adenocarcinoma 7 236322 -NCIT:C172248 Unresectable Distal Esophagus Adenocarcinoma 8 236323 -NCIT:C172249 Metastatic Distal Esophagus Adenocarcinoma 8 236324 -NCIT:C7027 Barrett Adenocarcinoma 8 236325 -NCIT:C156074 Metastatic Esophageal Adenocarcinoma 7 236326 -NCIT:C166120 Oligometastatic Esophageal Adenocarcinoma 8 236327 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 236328 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 236329 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 236330 -NCIT:C172249 Metastatic Distal Esophagus Adenocarcinoma 8 236331 -NCIT:C161906 Esophageal Intramucosal Adenocarcinoma 7 236332 -NCIT:C173162 Unresectable Esophageal Adenocarcinoma 7 236333 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 236334 -NCIT:C172248 Unresectable Distal Esophagus Adenocarcinoma 8 236335 -NCIT:C176892 Refractory Esophageal Adenocarcinoma 7 236336 -NCIT:C8627 Recurrent Esophageal Adenocarcinoma 7 236337 -NCIT:C5342 Esophageal Adenoid Cystic Carcinoma 6 236338 -NCIT:C5343 Esophageal Mucoepidermoid Carcinoma 6 236339 -NCIT:C90500 Esophageal Cancer by AJCC v6 Stage 6 236340 -NCIT:C3637 Stage 0 Esophageal Cancer AJCC v6 7 236341 -NCIT:C9210 Stage I Esophageal Cancer AJCC v6 7 236342 -NCIT:C9211 Stage II Esophageal Cancer AJCC v6 7 236343 -NCIT:C9212 Stage III Esophageal Cancer AJCC v6 7 236344 -NCIT:C9213 Stage IV Esophageal Cancer AJCC v6 7 236345 -NCIT:C91221 Esophageal Cancer by AJCC v7 Stage 6 236346 -NCIT:C133411 Esophageal Adenocarcinoma by AJCC v7 Stage 7 236347 -NCIT:C8628 Stage II Esophageal Adenocarcinoma AJCC v7 8 236348 -NCIT:C6731 Stage IIA Esophageal Adenocarcinoma AJCC v7 9 236349 -NCIT:C6732 Stage IIB Esophageal Adenocarcinoma AJCC v7 9 236350 -NCIT:C8629 Stage 0 Esophageal Adenocarcinoma AJCC v7 8 236351 -NCIT:C8630 Stage I Esophageal Adenocarcinoma AJCC v7 8 236352 -NCIT:C87782 Stage IA Esophageal Adenocarcinoma AJCC v7 9 236353 -NCIT:C87783 Stage IB Esophageal Adenocarcinoma AJCC v7 9 236354 -NCIT:C8631 Stage III Esophageal Adenocarcinoma AJCC v7 8 236355 -NCIT:C87784 Stage IIIA Esophageal Adenocarcinoma AJCC v7 9 236356 -NCIT:C87785 Stage IIIB Esophageal Adenocarcinoma AJCC v7 9 236357 -NCIT:C87786 Stage IIIC Esophageal Adenocarcinoma AJCC v7 9 236358 -NCIT:C8632 Stage IV Esophageal Adenocarcinoma AJCC v7 8 236359 -NCIT:C133442 Esophageal Squamous Cell Carcinoma by AJCC v7 Stage 7 236360 -NCIT:C5019 Stage IV Esophageal Squamous Cell Carcinoma AJCC v7 8 236361 -NCIT:C5020 Stage III Esophageal Squamous Cell Carcinoma AJCC v7 8 236362 -NCIT:C87787 Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v7 9 236363 -NCIT:C87788 Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v7 9 236364 -NCIT:C87789 Stage IIIC Esophageal Squamous Cell Carcinoma AJCC v7 9 236365 -NCIT:C5021 Stage II Esophageal Squamous Cell Carcinoma AJCC v7 8 236366 -NCIT:C6737 Stage IIB Esophageal Squamous Cell Carcinoma AJCC v7 9 236367 -NCIT:C6738 Stage IIA Esophageal Squamous Cell Carcinoma AJCC v7 9 236368 -NCIT:C5022 Stage I Esophageal Squamous Cell Carcinoma AJCC v7 8 236369 -NCIT:C87780 Stage IA Esophageal Squamous Cell Carcinoma AJCC v7 9 236370 -NCIT:C87781 Stage IB Esophageal Squamous Cell Carcinoma AJCC v7 9 236371 -NCIT:C5023 Stage 0 Esophageal Squamous Cell Carcinoma AJCC v7 8 236372 -NCIT:C89771 Stage 0 Esophageal Cancer AJCC v7 7 236373 -NCIT:C5023 Stage 0 Esophageal Squamous Cell Carcinoma AJCC v7 8 236374 -NCIT:C8629 Stage 0 Esophageal Adenocarcinoma AJCC v7 8 236375 -NCIT:C89793 Stage I Esophageal Cancer AJCC v7 7 236376 -NCIT:C115117 Stage IA Esophageal Cancer AJCC v7 8 236377 -NCIT:C87780 Stage IA Esophageal Squamous Cell Carcinoma AJCC v7 9 236378 -NCIT:C87782 Stage IA Esophageal Adenocarcinoma AJCC v7 9 236379 -NCIT:C115118 Stage IB Esophageal Cancer AJCC v7 8 236380 -NCIT:C87781 Stage IB Esophageal Squamous Cell Carcinoma AJCC v7 9 236381 -NCIT:C87783 Stage IB Esophageal Adenocarcinoma AJCC v7 9 236382 -NCIT:C5022 Stage I Esophageal Squamous Cell Carcinoma AJCC v7 8 236383 -NCIT:C87780 Stage IA Esophageal Squamous Cell Carcinoma AJCC v7 9 236384 -NCIT:C87781 Stage IB Esophageal Squamous Cell Carcinoma AJCC v7 9 236385 -NCIT:C8630 Stage I Esophageal Adenocarcinoma AJCC v7 8 236386 -NCIT:C87782 Stage IA Esophageal Adenocarcinoma AJCC v7 9 236387 -NCIT:C87783 Stage IB Esophageal Adenocarcinoma AJCC v7 9 236388 -NCIT:C89794 Stage II Esophageal Cancer AJCC v7 7 236389 -NCIT:C5021 Stage II Esophageal Squamous Cell Carcinoma AJCC v7 8 236390 -NCIT:C6737 Stage IIB Esophageal Squamous Cell Carcinoma AJCC v7 9 236391 -NCIT:C6738 Stage IIA Esophageal Squamous Cell Carcinoma AJCC v7 9 236392 -NCIT:C5691 Stage IIA Esophageal Cancer AJCC v7 8 236393 -NCIT:C6731 Stage IIA Esophageal Adenocarcinoma AJCC v7 9 236394 -NCIT:C6738 Stage IIA Esophageal Squamous Cell Carcinoma AJCC v7 9 236395 -NCIT:C5692 Stage IIB Esophageal Cancer AJCC v7 8 236396 -NCIT:C6732 Stage IIB Esophageal Adenocarcinoma AJCC v7 9 236397 -NCIT:C6737 Stage IIB Esophageal Squamous Cell Carcinoma AJCC v7 9 236398 -NCIT:C8628 Stage II Esophageal Adenocarcinoma AJCC v7 8 236399 -NCIT:C6731 Stage IIA Esophageal Adenocarcinoma AJCC v7 9 236400 -NCIT:C6732 Stage IIB Esophageal Adenocarcinoma AJCC v7 9 236401 -NCIT:C89795 Stage III Esophageal Cancer AJCC v7 7 236402 -NCIT:C115119 Stage IIIA Esophageal Cancer AJCC v7 8 236403 -NCIT:C87784 Stage IIIA Esophageal Adenocarcinoma AJCC v7 9 236404 -NCIT:C87787 Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v7 9 236405 -NCIT:C115120 Stage IIIB Esophageal Cancer AJCC v7 8 236406 -NCIT:C87785 Stage IIIB Esophageal Adenocarcinoma AJCC v7 9 236407 -NCIT:C87788 Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v7 9 236408 -NCIT:C115121 Stage IIIC Esophageal Cancer AJCC v7 8 236409 -NCIT:C87786 Stage IIIC Esophageal Adenocarcinoma AJCC v7 9 236410 -NCIT:C87789 Stage IIIC Esophageal Squamous Cell Carcinoma AJCC v7 9 236411 -NCIT:C5020 Stage III Esophageal Squamous Cell Carcinoma AJCC v7 8 236412 -NCIT:C87787 Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v7 9 236413 -NCIT:C87788 Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v7 9 236414 -NCIT:C87789 Stage IIIC Esophageal Squamous Cell Carcinoma AJCC v7 9 236415 -NCIT:C8631 Stage III Esophageal Adenocarcinoma AJCC v7 8 236416 -NCIT:C87784 Stage IIIA Esophageal Adenocarcinoma AJCC v7 9 236417 -NCIT:C87785 Stage IIIB Esophageal Adenocarcinoma AJCC v7 9 236418 -NCIT:C87786 Stage IIIC Esophageal Adenocarcinoma AJCC v7 9 236419 -NCIT:C89804 Stage IV Esophageal Cancer AJCC v7 7 236420 -NCIT:C5019 Stage IV Esophageal Squamous Cell Carcinoma AJCC v7 8 236421 -NCIT:C8632 Stage IV Esophageal Adenocarcinoma AJCC v7 8 236422 -NCIT:C95619 Esophageal Neuroendocrine Carcinoma 6 236423 -NCIT:C6762 Esophageal Small Cell Neuroendocrine Carcinoma 7 236424 -NCIT:C95620 Esophageal Large Cell Neuroendocrine Carcinoma 7 236425 -NCIT:C95621 Esophageal Mixed Adenoneuroendocrine Carcinoma 6 236426 -NCIT:C35180 Digestive System Carcinoma In Situ 5 236427 -NCIT:C133402 Clinical Stage 0 Esophageal Adenocarcinoma AJCC v8 6 236428 -NCIT:C133413 Pathologic Stage 0 Esophageal Adenocarcinoma AJCC v8 6 236429 -NCIT:C133447 Clinical Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 6 236430 -NCIT:C133519 Pathologic Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 6 236431 -NCIT:C133550 Clinical Stage 0 Gastroesophageal Junction Adenocarcinoma AJCC v8 6 236432 -NCIT:C133564 Pathologic Stage 0 Gastroesophageal Junction Adenocarcinoma AJCC v8 6 236433 -NCIT:C133647 Clinical Stage 0 Gastric Cancer AJCC v8 6 236434 -NCIT:C133654 Pathologic Stage 0 Gastric Cancer AJCC v8 6 236435 -NCIT:C133795 Stage 0 Anal Cancer AJCC v8 6 236436 -NCIT:C157575 Anal Intraepithelial Neoplasia 3 7 236437 -NCIT:C133894 Stage 0 Small Intestinal Adenocarcinoma AJCC v8 6 236438 -NCIT:C134118 Stage 0 Appendix Carcinoma AJCC v8 6 236439 -NCIT:C134182 Stage 0 Colorectal Cancer AJCC v8 6 236440 -NCIT:C134271 Stage 0 Colon Cancer AJCC v8 7 236441 -NCIT:C134291 Stage 0 Rectal Cancer AJCC v8 7 236442 -NCIT:C134663 Stage 0 Gallbladder Cancer AJCC v8 6 236443 -NCIT:C134865 Stage 0 Ampulla of Vater Cancer AJCC v8 6 236444 -NCIT:C134914 Stage 0 Pancreatic Cancer AJCC v8 6 236445 -NCIT:C3637 Stage 0 Esophageal Cancer AJCC v6 6 236446 -NCIT:C4439 Stage 0 Gallbladder Cancer AJCC v6 and v7 6 236447 -NCIT:C4444 Stage 0 Ampulla of Vater Cancer AJCC v7 6 236448 -NCIT:C4593 Stage 0 Appendix Carcinoma AJCC v7 6 236449 -NCIT:C4892 Stage 0 Small Intestinal Cancer AJCC v7 6 236450 -NCIT:C5729 Stage 0 Pancreatic Cancer AJCC v6 and v7 6 236451 -NCIT:C67493 High-Grade Biliary Intraepithelial Neoplasia 6 236452 -NCIT:C7788 Stage 0 Gastric Cancer AJCC v6 and v7 6 236453 -NCIT:C4428 Gastric Cardia Carcinoma In Situ AJCC v6 and v7 7 236454 -NCIT:C4429 Gastric Fundus Carcinoma In Situ AJCC v6 and v7 7 236455 -NCIT:C4430 Gastric Body Carcinoma In Situ AJCC v6 and v7 7 236456 -NCIT:C4431 Gastric Pylorus Carcinoma In Situ AJCC v6 and v7 7 236457 -NCIT:C8400 Gastric Antrum Carcinoma In Situ AJCC v6 and v7 8 236458 -NCIT:C7794 Stage 0 Anal Canal Cancer AJCC v6 and v7 6 236459 -NCIT:C27282 Stage 0 AIDS-Related Anal Canal Cancer AJCC v6 and v7 7 236460 -NCIT:C8932 Stage 0 Colorectal Cancer AJCC v6 and v7 6 236461 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 7 236462 -NCIT:C4594 Cecum Carcinoma In Situ 8 236463 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 7 236464 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 7 236465 -NCIT:C89771 Stage 0 Esophageal Cancer AJCC v7 6 236466 -NCIT:C5023 Stage 0 Esophageal Squamous Cell Carcinoma AJCC v7 7 236467 -NCIT:C8629 Stage 0 Esophageal Adenocarcinoma AJCC v7 7 236468 -NCIT:C4911 Gastric Carcinoma 5 236469 -NCIT:C118813 Childhood Gastric Carcinoma 6 236470 -NCIT:C133638 Gastric Cancer by AJCC v8 Stage 6 236471 -NCIT:C133639 Gastric Cancer by AJCC v8 Clinical Stage 7 236472 -NCIT:C133647 Clinical Stage 0 Gastric Cancer AJCC v8 8 236473 -NCIT:C133648 Clinical Stage I Gastric Cancer AJCC v8 8 236474 -NCIT:C133649 Clinical Stage II Gastric Cancer AJCC v8 8 236475 -NCIT:C133681 Clinical Stage IIA Gastric Cancer AJCC v8 9 236476 -NCIT:C133682 Clinical Stage IIB Gastric Cancer AJCC v8 9 236477 -NCIT:C133650 Clinical Stage III Gastric Cancer AJCC v8 8 236478 -NCIT:C133651 Clinical Stage IV Gastric Cancer AJCC v8 8 236479 -NCIT:C133652 Clinical Stage IVA Gastric Cancer AJCC v8 9 236480 -NCIT:C133653 Clinical Stage IVB Gastric Cancer AJCC v8 9 236481 -NCIT:C133640 Gastric Cancer by AJCC v8 Pathologic Stage 7 236482 -NCIT:C133654 Pathologic Stage 0 Gastric Cancer AJCC v8 8 236483 -NCIT:C133655 Pathologic Stage I Gastric Cancer AJCC v8 8 236484 -NCIT:C133656 Pathologic Stage IA Gastric Cancer AJCC v8 9 236485 -NCIT:C133657 Pathologic Stage IB Gastric Cancer AJCC v8 9 236486 -NCIT:C133659 Pathologic Stage II Gastric Cancer AJCC v8 8 236487 -NCIT:C133660 Pathologic Stage IIA Gastric Cancer AJCC v8 9 236488 -NCIT:C133662 Pathologic Stage IIB Gastric Cancer AJCC v8 9 236489 -NCIT:C133663 Pathologic Stage III Gastric Cancer AJCC v8 8 236490 -NCIT:C133665 Pathologic Stage IIIA Gastric Cancer AJCC v8 9 236491 -NCIT:C133666 Pathologic Stage IIIB Gastric Cancer AJCC v8 9 236492 -NCIT:C133667 Pathologic Stage IIIC Gastric Cancer AJCC v8 9 236493 -NCIT:C133668 Pathologic Stage IV Gastric Cancer AJCC v8 8 236494 -NCIT:C133641 Gastric Cancer by AJCC v8 Postneoadjuvant Therapy Stage 7 236495 -NCIT:C133670 Postneoadjuvant Therapy Stage I Gastric Cancer AJCC v8 8 236496 -NCIT:C133671 Postneoadjuvant Therapy Stage II Gastric Cancer AJCC v8 8 236497 -NCIT:C133672 Postneoadjuvant Therapy Stage III Gastric Cancer AJCC v8 8 236498 -NCIT:C133673 Postneoadjuvant Therapy Stage IV Gastric Cancer AJCC v8 8 236499 -NCIT:C147996 Refractory Gastric Carcinoma 6 236500 -NCIT:C167074 Refractory Gastric Adenocarcinoma 7 236501 -NCIT:C153320 Metastatic Gastric Carcinoma 6 236502 -NCIT:C153319 Metastatic Gastric Adenocarcinoma 7 236503 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 236504 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 236505 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 236506 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 236507 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 236508 -NCIT:C165630 Metastatic Proximal Gastric Adenocarcinoma 8 236509 -NCIT:C166121 Oligometastatic Gastric Adenocarcinoma 8 236510 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 236511 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 236512 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 7 236513 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 236514 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 236515 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 236516 -NCIT:C162772 Locally Advanced Gastric Carcinoma 7 236517 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 236518 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 236519 -NCIT:C165299 Advanced Gastric Carcinoma 7 236520 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 236521 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 236522 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 236523 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 236524 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 236525 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 7 236526 -NCIT:C156167 Localized Gastric Carcinoma 6 236527 -NCIT:C159775 Unresectable Gastric Carcinoma 6 236528 -NCIT:C154221 Unresectable Gastric Adenocarcinoma 7 236529 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 236530 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 236531 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 236532 -NCIT:C162304 EBV-Related Gastric Carcinoma 6 236533 -NCIT:C4004 Gastric Adenocarcinoma 6 236534 -NCIT:C153319 Metastatic Gastric Adenocarcinoma 7 236535 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 236536 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 236537 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 236538 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 236539 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 236540 -NCIT:C165630 Metastatic Proximal Gastric Adenocarcinoma 8 236541 -NCIT:C166121 Oligometastatic Gastric Adenocarcinoma 8 236542 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 236543 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 236544 -NCIT:C154221 Unresectable Gastric Adenocarcinoma 7 236545 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 236546 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 236547 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 236548 -NCIT:C154622 Recurrent Gastric Adenocarcinoma 7 236549 -NCIT:C165628 Proximal Gastric Adenocarcinoma 7 236550 -NCIT:C165630 Metastatic Proximal Gastric Adenocarcinoma 8 236551 -NCIT:C167074 Refractory Gastric Adenocarcinoma 7 236552 -NCIT:C43527 Sporadic Gastric Adenocarcinoma 7 236553 -NCIT:C27131 Early Gastric Cancer 8 236554 -NCIT:C95763 Gastric Intramucosal Adenocarcinoma 9 236555 -NCIT:C27765 Helicobacter Pylori-Related Gastric Adenocarcinoma 8 236556 -NCIT:C43529 Sporadic Gastric Diffuse Adenocarcinoma 8 236557 -NCIT:C5247 Gastric Cardia Adenocarcinoma 8 236558 -NCIT:C5248 Gastric Mucinous Adenocarcinoma 8 236559 -NCIT:C5472 Gastric Papillary Adenocarcinoma 8 236560 -NCIT:C5473 Gastric Tubular Adenocarcinoma 8 236561 -NCIT:C65194 Gastric Parietal Cell Adenocarcinoma 8 236562 -NCIT:C67526 Gastric Mixed Adenocarcinoma 8 236563 -NCIT:C9157 Gastric Intestinal-Type Adenocarcinoma 8 236564 -NCIT:C95743 Gastric Poorly Cohesive Adenocarcinoma 8 236565 -NCIT:C5250 Gastric Signet Ring Cell Adenocarcinoma 9 236566 -NCIT:C95747 Gastric Hepatoid Adenocarcinoma 8 236567 -NCIT:C95748 Gastric Carcinoma with Lymphoid Stroma 8 236568 -NCIT:C9159 Gastric Diffuse Adenocarcinoma 7 236569 -NCIT:C43295 Hereditary Gastric Diffuse Adenocarcinoma 8 236570 -NCIT:C43529 Sporadic Gastric Diffuse Adenocarcinoma 8 236571 -NCIT:C5474 Gastric Adenosquamous Carcinoma 6 236572 -NCIT:C5475 Gastric Squamous Cell Carcinoma 6 236573 -NCIT:C150034 Gastric Cardia Squamous Cell Carcinoma 7 236574 -NCIT:C5476 Gastric Undifferentiated Carcinoma 6 236575 -NCIT:C6794 Gastric Cardia Carcinoma 6 236576 -NCIT:C150034 Gastric Cardia Squamous Cell Carcinoma 7 236577 -NCIT:C4428 Gastric Cardia Carcinoma In Situ AJCC v6 and v7 7 236578 -NCIT:C5247 Gastric Cardia Adenocarcinoma 7 236579 -NCIT:C6795 Gastric Pylorus Carcinoma 6 236580 -NCIT:C4431 Gastric Pylorus Carcinoma In Situ AJCC v6 and v7 7 236581 -NCIT:C8400 Gastric Antrum Carcinoma In Situ AJCC v6 and v7 8 236582 -NCIT:C8398 Gastric Fundus Carcinoma 6 236583 -NCIT:C4429 Gastric Fundus Carcinoma In Situ AJCC v6 and v7 7 236584 -NCIT:C8399 Gastric Body Carcinoma 6 236585 -NCIT:C4430 Gastric Body Carcinoma In Situ AJCC v6 and v7 7 236586 -NCIT:C90503 Gastric Cancer by AJCC v6 Stage 6 236587 -NCIT:C7772 Stage I Gastric Cancer AJCC v6 7 236588 -NCIT:C7773 Stage II Gastric Cancer AJCC v6 7 236589 -NCIT:C7774 Stage III Gastric Cancer AJCC v6 7 236590 -NCIT:C7788 Stage 0 Gastric Cancer AJCC v6 and v7 7 236591 -NCIT:C4428 Gastric Cardia Carcinoma In Situ AJCC v6 and v7 8 236592 -NCIT:C4429 Gastric Fundus Carcinoma In Situ AJCC v6 and v7 8 236593 -NCIT:C4430 Gastric Body Carcinoma In Situ AJCC v6 and v7 8 236594 -NCIT:C4431 Gastric Pylorus Carcinoma In Situ AJCC v6 and v7 8 236595 -NCIT:C8400 Gastric Antrum Carcinoma In Situ AJCC v6 and v7 9 236596 -NCIT:C9036 Stage IV Gastric Cancer AJCC v6 7 236597 -NCIT:C91222 Gastric Cancer by AJCC v7 Stage 6 236598 -NCIT:C7788 Stage 0 Gastric Cancer AJCC v6 and v7 7 236599 -NCIT:C4428 Gastric Cardia Carcinoma In Situ AJCC v6 and v7 8 236600 -NCIT:C4429 Gastric Fundus Carcinoma In Situ AJCC v6 and v7 8 236601 -NCIT:C4430 Gastric Body Carcinoma In Situ AJCC v6 and v7 8 236602 -NCIT:C4431 Gastric Pylorus Carcinoma In Situ AJCC v6 and v7 8 236603 -NCIT:C8400 Gastric Antrum Carcinoma In Situ AJCC v6 and v7 9 236604 -NCIT:C89856 Stage I Gastric Cancer AJCC v7 7 236605 -NCIT:C5468 Stage IA Gastric Cancer AJCC v7 8 236606 -NCIT:C5469 Stage IB Gastric Cancer AJCC v7 8 236607 -NCIT:C89859 Stage II Gastric Cancer AJCC v7 7 236608 -NCIT:C87775 Stage IIA Gastric Cancer AJCC v7 8 236609 -NCIT:C87776 Stage IIB Gastric Cancer AJCC v7 8 236610 -NCIT:C89860 Stage III Gastric Cancer AJCC v7 7 236611 -NCIT:C5470 Stage IIIB Gastric Cancer AJCC v7 8 236612 -NCIT:C5471 Stage IIIA Gastric Cancer AJCC v7 8 236613 -NCIT:C87777 Stage IIIC Gastric Cancer AJCC v7 8 236614 -NCIT:C89861 Stage IV Gastric Cancer AJCC v7 7 236615 -NCIT:C9237 Recurrent Gastric Carcinoma 6 236616 -NCIT:C154622 Recurrent Gastric Adenocarcinoma 7 236617 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 7 236618 -NCIT:C190198 Locally Recurrent Gastric Carcinoma 7 236619 -NCIT:C95884 Gastric Neuroendocrine Carcinoma 6 236620 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 7 236621 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 236622 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 236623 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 236624 -NCIT:C6764 Gastric Small Cell Neuroendocrine Carcinoma 7 236625 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 236626 -NCIT:C95885 Gastric Large Cell Neuroendocrine Carcinoma 7 236627 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 236628 -NCIT:C95886 Gastric Mixed Adenoneuroendocrine Carcinoma 6 236629 -NCIT:C7622 Recurrent Digestive System Carcinoma 5 236630 -NCIT:C151905 Recurrent Metastatic Digestive System Carcinoma 6 236631 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 7 236632 -NCIT:C153359 Recurrent Gastroesophageal Junction Adenocarcinoma 6 236633 -NCIT:C153574 Recurrent Ampulla of Vater Adenocarcinoma 6 236634 -NCIT:C153575 Recurrent Anal Adenocarcinoma 6 236635 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 7 236636 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 7 236637 -NCIT:C153802 Recurrent Appendix Carcinoma 6 236638 -NCIT:C179174 Recurrent Appendix Adenocarcinoma 7 236639 -NCIT:C153579 Recurrent Appendix Mucinous Adenocarcinoma 8 236640 -NCIT:C155938 Recurrent Digestive System Neuroendocrine Carcinoma 6 236641 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 7 236642 -NCIT:C156782 Recurrent Biliary Tract Carcinoma 6 236643 -NCIT:C153360 Recurrent Bile Duct Carcinoma 7 236644 -NCIT:C27325 Recurrent Cholangiocarcinoma 8 236645 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 9 236646 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 9 236647 -NCIT:C7893 Recurrent Extrahepatic Bile Duct Carcinoma 8 236648 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 9 236649 -NCIT:C4008 Recurrent Gallbladder Carcinoma 7 236650 -NCIT:C169102 Recurrent Anal Squamous Cell Carcinoma 6 236651 -NCIT:C175360 Recurrent Anal Canal Squamous Cell Carcinoma 7 236652 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 8 236653 -NCIT:C3999 Recurrent Esophageal Carcinoma 6 236654 -NCIT:C8627 Recurrent Esophageal Adenocarcinoma 7 236655 -NCIT:C8633 Recurrent Esophageal Squamous Cell Carcinoma 7 236656 -NCIT:C7110 Recurrent Liver Carcinoma 6 236657 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 7 236658 -NCIT:C7880 Recurrent Adult Liver Carcinoma 7 236659 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 8 236660 -NCIT:C9264 Recurrent Hepatocellular Carcinoma 7 236661 -NCIT:C154082 Recurrent Fibrolamellar Carcinoma 8 236662 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 8 236663 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 8 236664 -NCIT:C7626 Recurrent Pancreatic Carcinoma 6 236665 -NCIT:C155742 Recurrent Pancreatic Adenocarcinoma 7 236666 -NCIT:C153569 Recurrent Pancreatic Acinar Cell Carcinoma 8 236667 -NCIT:C153619 Recurrent Pancreatic Ductal Adenocarcinoma 8 236668 -NCIT:C153620 Recurrent Pancreatic Cystadenocarcinoma 8 236669 -NCIT:C7793 Recurrent Anal Canal Carcinoma 6 236670 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 7 236671 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 7 236672 -NCIT:C175360 Recurrent Anal Canal Squamous Cell Carcinoma 7 236673 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 8 236674 -NCIT:C9249 Recurrent AIDS-Related Anal Canal Carcinoma 7 236675 -NCIT:C7894 Recurrent Small Intestinal Carcinoma 6 236676 -NCIT:C9352 Recurrent Duodenal Carcinoma 7 236677 -NCIT:C8625 Recurrent Colorectal Carcinoma 6 236678 -NCIT:C162441 Recurrent Colorectal Adenocarcinoma 7 236679 -NCIT:C162442 Recurrent Colon Adenocarcinoma 8 236680 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 8 236681 -NCIT:C190199 Locally Recurrent Colorectal Carcinoma 7 236682 -NCIT:C190679 Recurrent Microsatellite Stable Colorectal Carcinoma 7 236683 -NCIT:C3998 Recurrent Colon Carcinoma 7 236684 -NCIT:C162442 Recurrent Colon Adenocarcinoma 8 236685 -NCIT:C8634 Recurrent Rectosigmoid Carcinoma 7 236686 -NCIT:C9238 Recurrent Rectal Carcinoma 7 236687 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 8 236688 -NCIT:C9237 Recurrent Gastric Carcinoma 6 236689 -NCIT:C154622 Recurrent Gastric Adenocarcinoma 7 236690 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 7 236691 -NCIT:C190198 Locally Recurrent Gastric Carcinoma 7 236692 -NCIT:C7724 Small Intestinal Carcinoma 5 236693 -NCIT:C123933 Childhood Small Intestinal Carcinoma 6 236694 -NCIT:C133716 Small Intestinal Cancer by AJCC v7 Stage 6 236695 -NCIT:C4892 Stage 0 Small Intestinal Cancer AJCC v7 7 236696 -NCIT:C5807 Stage I Small Intestinal Cancer AJCC v7 7 236697 -NCIT:C5808 Stage II Small Intestinal Cancer AJCC v7 7 236698 -NCIT:C87791 Stage IIA Small Intestinal Cancer AJCC v7 8 236699 -NCIT:C87792 Stage IIB Small Intestinal Cancer AJCC v7 8 236700 -NCIT:C5809 Stage III Small Intestinal Cancer AJCC v7 7 236701 -NCIT:C87793 Stage IIIA Small Intestinal Cancer AJCC v7 8 236702 -NCIT:C87795 Stage IIIB Small Intestinal Cancer AJCC v7 8 236703 -NCIT:C5810 Stage IV Small Intestinal Cancer AJCC v7 7 236704 -NCIT:C153356 Refractory Small Intestinal Carcinoma 6 236705 -NCIT:C181157 Jejunal Carcinoma 6 236706 -NCIT:C181158 Jejunal Adenocarcinoma 7 236707 -NCIT:C43534 Small Intestinal Squamous Cell Carcinoma 6 236708 -NCIT:C43535 Small Intestinal Adenosquamous Carcinoma 6 236709 -NCIT:C43537 Small Intestinal Medullary Carcinoma 6 236710 -NCIT:C43538 Small Intestinal Undifferentiated Carcinoma 6 236711 -NCIT:C4803 Duodenal Carcinoma 6 236712 -NCIT:C27323 Resectable Duodenal Carcinoma 7 236713 -NCIT:C169108 Resectable Periampullary Adenocarcinoma 8 236714 -NCIT:C7889 Duodenal Adenocarcinoma 7 236715 -NCIT:C27322 Periampullary Adenocarcinoma 8 236716 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 9 236717 -NCIT:C169108 Resectable Periampullary Adenocarcinoma 9 236718 -NCIT:C9352 Recurrent Duodenal Carcinoma 7 236719 -NCIT:C7888 Small Intestinal Adenocarcinoma 6 236720 -NCIT:C133893 Small Intestinal Adenocarcinoma by AJCC v8 Stage 7 236721 -NCIT:C133894 Stage 0 Small Intestinal Adenocarcinoma AJCC v8 8 236722 -NCIT:C133895 Stage I Small Intestinal Adenocarcinoma AJCC v8 8 236723 -NCIT:C133896 Stage II Small Intestinal Adenocarcinoma AJCC v8 8 236724 -NCIT:C133897 Stage IIA Small Intestinal Adenocarcinoma AJCC v8 9 236725 -NCIT:C133898 Stage IIB Small Intestinal Adenocarcinoma AJCC v8 9 236726 -NCIT:C133899 Stage III Small Intestinal Adenocarcinoma AJCC v8 8 236727 -NCIT:C133900 Stage IIIA Small Intestinal Adenocarcinoma AJCC v8 9 236728 -NCIT:C133901 Stage IIIB Small Intestinal Adenocarcinoma AJCC v8 9 236729 -NCIT:C133902 Stage IV Small Intestinal Adenocarcinoma AJCC v8 8 236730 -NCIT:C175516 Unresectable Small Intestinal Adenocarcinoma 7 236731 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 8 236732 -NCIT:C181158 Jejunal Adenocarcinoma 7 236733 -NCIT:C43536 Small Intestinal Mucinous Adenocarcinoma 7 236734 -NCIT:C43543 Small Intestinal Signet Ring Cell Carcinoma 7 236735 -NCIT:C7889 Duodenal Adenocarcinoma 7 236736 -NCIT:C27322 Periampullary Adenocarcinoma 8 236737 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 9 236738 -NCIT:C169108 Resectable Periampullary Adenocarcinoma 9 236739 -NCIT:C8934 Metastatic Small Intestinal Adenocarcinoma 7 236740 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 236741 -NCIT:C7894 Recurrent Small Intestinal Carcinoma 6 236742 -NCIT:C9352 Recurrent Duodenal Carcinoma 7 236743 -NCIT:C8637 Metastatic Small Intestinal Carcinoma 6 236744 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 7 236745 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 236746 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 7 236747 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 236748 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 236749 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 236750 -NCIT:C8934 Metastatic Small Intestinal Adenocarcinoma 7 236751 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 236752 -NCIT:C8638 Unresectable Small Intestinal Carcinoma 6 236753 -NCIT:C175516 Unresectable Small Intestinal Adenocarcinoma 7 236754 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 8 236755 -NCIT:C8639 Resectable Small Intestinal Carcinoma 6 236756 -NCIT:C27323 Resectable Duodenal Carcinoma 7 236757 -NCIT:C169108 Resectable Periampullary Adenocarcinoma 8 236758 -NCIT:C96064 Small Intestinal Neuroendocrine Carcinoma 6 236759 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 7 236760 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 236761 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 236762 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 236763 -NCIT:C27449 Small Intestinal Small Cell Neuroendocrine Carcinoma 7 236764 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 236765 -NCIT:C96065 Small Intestinal Large Cell Neuroendocrine Carcinoma 7 236766 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 236767 -NCIT:C96066 Small Intestinal Mixed Adenoneuroendocrine Carcinoma 6 236768 -NCIT:C7927 Liver and Intrahepatic Bile Duct Carcinoma 5 236769 -NCIT:C118630 Liver Adenosquamous Carcinoma 6 236770 -NCIT:C134604 Intrahepatic Bile Duct Cancer by AJCC v8 Stage 6 236771 -NCIT:C134609 Stage 0 Intrahepatic Bile Duct Cancer AJCC v8 7 236772 -NCIT:C134756 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v8 8 236773 -NCIT:C134610 Stage I Intrahepatic Bile Duct Cancer AJCC v8 7 236774 -NCIT:C134611 Stage IA Intrahepatic Bile Duct Cancer AJCC v8 8 236775 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 9 236776 -NCIT:C134612 Stage IB Intrahepatic Bile Duct Cancer AJCC v8 8 236777 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 9 236778 -NCIT:C134757 Stage I Intrahepatic Cholangiocarcinoma AJCC v8 8 236779 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 9 236780 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 9 236781 -NCIT:C134614 Stage II Intrahepatic Bile Duct Cancer AJCC v8 7 236782 -NCIT:C134760 Stage II Intrahepatic Cholangiocarcinoma AJCC v8 8 236783 -NCIT:C134615 Stage III Intrahepatic Bile Duct Cancer AJCC v8 7 236784 -NCIT:C134616 Stage IIIA Intrahepatic Bile Duct Cancer AJCC v8 8 236785 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 9 236786 -NCIT:C134618 Stage IIIB Intrahepatic Bile Duct Cancer AJCC v8 8 236787 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 9 236788 -NCIT:C134761 Stage III Intrahepatic Cholangiocarcinoma AJCC v8 8 236789 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 9 236790 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 9 236791 -NCIT:C134619 Stage IV Intrahepatic Bile Duct Cancer AJCC v8 7 236792 -NCIT:C134764 Stage IV Intrahepatic Cholangiocarcinoma AJCC v8 8 236793 -NCIT:C134755 Intrahepatic Cholangiocarcinoma by AJCC v8 Stage 7 236794 -NCIT:C134756 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v8 8 236795 -NCIT:C134757 Stage I Intrahepatic Cholangiocarcinoma AJCC v8 8 236796 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 9 236797 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 9 236798 -NCIT:C134760 Stage II Intrahepatic Cholangiocarcinoma AJCC v8 8 236799 -NCIT:C134761 Stage III Intrahepatic Cholangiocarcinoma AJCC v8 8 236800 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 9 236801 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 9 236802 -NCIT:C134764 Stage IV Intrahepatic Cholangiocarcinoma AJCC v8 8 236803 -NCIT:C153352 Refractory Liver Carcinoma 6 236804 -NCIT:C162450 Refractory Hepatocellular Carcinoma 7 236805 -NCIT:C188887 Refractory Fibrolamellar Carcinoma 8 236806 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 7 236807 -NCIT:C154088 Metastatic Liver Carcinoma 6 236808 -NCIT:C154091 Metastatic Hepatocellular Carcinoma 7 236809 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 8 236810 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 236811 -NCIT:C167336 Advanced Hepatocellular Carcinoma 8 236812 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 236813 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 236814 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 236815 -NCIT:C171298 Locally Advanced Liver Carcinoma 7 236816 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 236817 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 8 236818 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 7 236819 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 8 236820 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 8 236821 -NCIT:C165171 Unresectable Liver and Intrahepatic Bile Duct Carcinoma 6 236822 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 7 236823 -NCIT:C27345 Unresectable Hepatocellular Carcinoma 7 236824 -NCIT:C162602 Unresectable Fibrolamellar Carcinoma 8 236825 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 8 236826 -NCIT:C7878 Localized Unresectable Adult Liver Carcinoma 7 236827 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 8 236828 -NCIT:C165293 Resectable Liver and Intrahepatic Bile Duct Carcinoma 6 236829 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 7 236830 -NCIT:C7691 Resectable Hepatocellular Carcinoma 7 236831 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 8 236832 -NCIT:C7877 Localized Resectable Adult Liver Carcinoma 7 236833 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 8 236834 -NCIT:C172718 Liver Mixed Adenoneuroendocrine Carcinoma 6 236835 -NCIT:C3099 Hepatocellular Carcinoma 6 236836 -NCIT:C115132 Hepatocellular Carcinoma by BCLC Stage 7 236837 -NCIT:C115133 BCLC Stage 0 Hepatocellular Carcinoma 8 236838 -NCIT:C115139 BCLC Stage 0 Adult Hepatocellular Carcinoma 9 236839 -NCIT:C115135 BCLC Stage A Hepatocellular Carcinoma 8 236840 -NCIT:C115140 BCLC Stage A Adult Hepatocellular Carcinoma 9 236841 -NCIT:C115136 BCLC Stage B Hepatocellular Carcinoma 8 236842 -NCIT:C115141 BCLC Stage B Adult Hepatocellular Carcinoma 9 236843 -NCIT:C115137 BCLC Stage C Hepatocellular Carcinoma 8 236844 -NCIT:C115143 BCLC Stage C Adult Hepatocellular Carcinoma 9 236845 -NCIT:C115138 BCLC Stage D Hepatocellular Carcinoma 8 236846 -NCIT:C115144 BCLC Stage D Adult Hepatocellular Carcinoma 9 236847 -NCIT:C134515 Hepatocellular Carcinoma by AJCC v8 Stage 7 236848 -NCIT:C134516 Stage I Hepatocellular Carcinoma AJCC v8 8 236849 -NCIT:C134517 Stage IA Hepatocellular Carcinoma AJCC v8 9 236850 -NCIT:C134518 Stage IB Hepatocellular Carcinoma AJCC v8 9 236851 -NCIT:C134519 Stage II Hepatocellular Carcinoma AJCC v8 8 236852 -NCIT:C134520 Stage III Hepatocellular Carcinoma AJCC v8 8 236853 -NCIT:C134521 Stage IIIA Hepatocellular Carcinoma AJCC v8 9 236854 -NCIT:C134522 Stage IIIB Hepatocellular Carcinoma AJCC v8 9 236855 -NCIT:C134523 Stage IV Hepatocellular Carcinoma AJCC v8 8 236856 -NCIT:C134524 Stage IVA Hepatocellular Carcinoma AJCC v8 9 236857 -NCIT:C134525 Stage IVB Hepatocellular Carcinoma AJCC v8 9 236858 -NCIT:C154091 Metastatic Hepatocellular Carcinoma 7 236859 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 8 236860 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 236861 -NCIT:C167336 Advanced Hepatocellular Carcinoma 8 236862 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 236863 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 236864 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 236865 -NCIT:C162450 Refractory Hepatocellular Carcinoma 7 236866 -NCIT:C188887 Refractory Fibrolamellar Carcinoma 8 236867 -NCIT:C172709 Steatohepatitic Hepatocellular Carcinoma 7 236868 -NCIT:C27924 Alcohol-Related Hepatocellular Carcinoma 8 236869 -NCIT:C172710 Macrotrabecular Massive Hepatocellular Carcinoma 7 236870 -NCIT:C172712 Chromophobe Hepatocellular Carcinoma 7 236871 -NCIT:C172713 Neutrophil-Rich Hepatocellular Carcinoma 7 236872 -NCIT:C172714 Small Hepatocellular Carcinoma 7 236873 -NCIT:C172716 Small Progressed Hepatocellular Carcinoma 8 236874 -NCIT:C96772 Early Hepatocellular Carcinoma 8 236875 -NCIT:C27345 Unresectable Hepatocellular Carcinoma 7 236876 -NCIT:C162602 Unresectable Fibrolamellar Carcinoma 8 236877 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 8 236878 -NCIT:C27388 Scirrhous Hepatocellular Carcinoma 7 236879 -NCIT:C27635 Transplant-Related Hepatocellular Carcinoma 7 236880 -NCIT:C27686 Hepatitis Virus-Related Hepatocellular Carcinoma 7 236881 -NCIT:C27687 Hepatitis B Virus-Related Hepatocellular Carcinoma 8 236882 -NCIT:C27688 Hepatitis C Virus-Related Hepatocellular Carcinoma 8 236883 -NCIT:C27922 Aflatoxins-Related Hepatocellular Carcinoma 7 236884 -NCIT:C4131 Fibrolamellar Carcinoma 7 236885 -NCIT:C114992 Adult Fibrolamellar Carcinoma 8 236886 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 8 236887 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 236888 -NCIT:C154082 Recurrent Fibrolamellar Carcinoma 8 236889 -NCIT:C162602 Unresectable Fibrolamellar Carcinoma 8 236890 -NCIT:C188887 Refractory Fibrolamellar Carcinoma 8 236891 -NCIT:C189932 Childhood Fibrolamellar Carcinoma 8 236892 -NCIT:C43625 Pleomorphic Hepatocellular Carcinoma 7 236893 -NCIT:C114993 Adult Pleomorphic Hepatocellular Carcinoma 8 236894 -NCIT:C43627 Sarcomatoid Hepatocellular Carcinoma 7 236895 -NCIT:C5754 Clear Cell Hepatocellular Carcinoma 7 236896 -NCIT:C7691 Resectable Hepatocellular Carcinoma 7 236897 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 8 236898 -NCIT:C7955 Childhood Hepatocellular Carcinoma 7 236899 -NCIT:C189932 Childhood Fibrolamellar Carcinoma 8 236900 -NCIT:C5708 Stage III Childhood Hepatocellular Carcinoma AJCC v7 8 236901 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 8 236902 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 8 236903 -NCIT:C7838 Stage IV Childhood Hepatocellular Carcinoma AJCC v7 8 236904 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 8 236905 -NCIT:C7956 Adult Hepatocellular Carcinoma 7 236906 -NCIT:C114992 Adult Fibrolamellar Carcinoma 8 236907 -NCIT:C114993 Adult Pleomorphic Hepatocellular Carcinoma 8 236908 -NCIT:C115139 BCLC Stage 0 Adult Hepatocellular Carcinoma 8 236909 -NCIT:C115140 BCLC Stage A Adult Hepatocellular Carcinoma 8 236910 -NCIT:C115141 BCLC Stage B Adult Hepatocellular Carcinoma 8 236911 -NCIT:C115143 BCLC Stage C Adult Hepatocellular Carcinoma 8 236912 -NCIT:C115144 BCLC Stage D Adult Hepatocellular Carcinoma 8 236913 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 8 236914 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 8 236915 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 8 236916 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 8 236917 -NCIT:C90510 Hepatocellular Carcinoma by AJCC v6 Stage 7 236918 -NCIT:C5758 Stage I Hepatocellular Carcinoma AJCC v6 and v7 8 236919 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 9 236920 -NCIT:C5759 Stage II Hepatocellular Carcinoma AJCC v6 and v7 8 236921 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 9 236922 -NCIT:C5760 Stage III Hepatocellular Carcinoma AJCC v6 8 236923 -NCIT:C5763 Stage IV Hepatocellular Carcinoma AJCC v6 8 236924 -NCIT:C91228 Hepatocellular Carcinoma by AJCC v7 Stage 7 236925 -NCIT:C5758 Stage I Hepatocellular Carcinoma AJCC v6 and v7 8 236926 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 9 236927 -NCIT:C5759 Stage II Hepatocellular Carcinoma AJCC v6 and v7 8 236928 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 9 236929 -NCIT:C90180 Stage III Hepatocellular Carcinoma AJCC v7 8 236930 -NCIT:C5708 Stage III Childhood Hepatocellular Carcinoma AJCC v7 9 236931 -NCIT:C5761 Stage IIIA Hepatocellular Carcinoma AJCC v7 9 236932 -NCIT:C5762 Stage IIIB Hepatocellular Carcinoma AJCC v7 9 236933 -NCIT:C88044 Stage IIIC Hepatocellular Carcinoma AJCC v7 9 236934 -NCIT:C90181 Stage IV Hepatocellular Carcinoma AJCC v7 8 236935 -NCIT:C5764 Stage IVA Hepatocellular Carcinoma AJCC v7 9 236936 -NCIT:C5765 Stage IVB Hepatocellular Carcinoma AJCC v7 9 236937 -NCIT:C7838 Stage IV Childhood Hepatocellular Carcinoma AJCC v7 9 236938 -NCIT:C9264 Recurrent Hepatocellular Carcinoma 7 236939 -NCIT:C154082 Recurrent Fibrolamellar Carcinoma 8 236940 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 8 236941 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 8 236942 -NCIT:C96788 Lymphocyte-Rich Hepatocellular Carcinoma 7 236943 -NCIT:C96789 Well Differentiated Hepatocellular Carcinoma 7 236944 -NCIT:C96790 Moderately Differentiated Hepatocellular Carcinoma 7 236945 -NCIT:C96791 Poorly Differentiated Hepatocellular Carcinoma 7 236946 -NCIT:C35417 Intrahepatic Cholangiocarcinoma 6 236947 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 7 236948 -NCIT:C134514 Intrahepatic Cholangiocarcinoma by AJCC v7 Stage 7 236949 -NCIT:C88049 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v7 8 236950 -NCIT:C88050 Stage I Intrahepatic Cholangiocarcinoma AJCC v7 8 236951 -NCIT:C88051 Stage II Intrahepatic Cholangiocarcinoma AJCC v7 8 236952 -NCIT:C88052 Stage III Intrahepatic Cholangiocarcinoma AJCC v7 8 236953 -NCIT:C88053 Stage IVA Intrahepatic Cholangiocarcinoma AJCC v7 8 236954 -NCIT:C88054 Stage IVB Intrahepatic Cholangiocarcinoma AJCC v7 8 236955 -NCIT:C134755 Intrahepatic Cholangiocarcinoma by AJCC v8 Stage 7 236956 -NCIT:C134756 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v8 8 236957 -NCIT:C134757 Stage I Intrahepatic Cholangiocarcinoma AJCC v8 8 236958 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 9 236959 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 9 236960 -NCIT:C134760 Stage II Intrahepatic Cholangiocarcinoma AJCC v8 8 236961 -NCIT:C134761 Stage III Intrahepatic Cholangiocarcinoma AJCC v8 8 236962 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 9 236963 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 9 236964 -NCIT:C134764 Stage IV Intrahepatic Cholangiocarcinoma AJCC v8 8 236965 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 7 236966 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 7 236967 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 7 236968 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 8 236969 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 8 236970 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 7 236971 -NCIT:C41617 Cholangiolocellular Carcinoma 7 236972 -NCIT:C41618 Mucin-Producing Intrahepatic Cholangiocarcinoma 7 236973 -NCIT:C41619 Signet Ring Cell Intrahepatic Cholangiocarcinoma 7 236974 -NCIT:C41620 Sarcomatoid Intrahepatic Cholangiocarcinoma 7 236975 -NCIT:C43848 Clear Cell Intrahepatic Cholangiocarcinoma 7 236976 -NCIT:C96804 Large Duct Intrahepatic Cholangiocarcinoma 7 236977 -NCIT:C96805 Small Duct Intrahepatic Cholangiocarcinoma 7 236978 -NCIT:C96949 Intrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 7 236979 -NCIT:C3828 Combined Hepatocellular Carcinoma and Cholangiocarcinoma 6 236980 -NCIT:C114987 Adult Combined Hepatocellular Carcinoma and Cholangiocarcinoma 7 236981 -NCIT:C7110 Recurrent Liver Carcinoma 6 236982 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 7 236983 -NCIT:C7880 Recurrent Adult Liver Carcinoma 7 236984 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 8 236985 -NCIT:C9264 Recurrent Hepatocellular Carcinoma 7 236986 -NCIT:C154082 Recurrent Fibrolamellar Carcinoma 8 236987 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 8 236988 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 8 236989 -NCIT:C7116 Stage I Liver Cancer 6 236990 -NCIT:C134516 Stage I Hepatocellular Carcinoma AJCC v8 7 236991 -NCIT:C134517 Stage IA Hepatocellular Carcinoma AJCC v8 8 236992 -NCIT:C134518 Stage IB Hepatocellular Carcinoma AJCC v8 8 236993 -NCIT:C134610 Stage I Intrahepatic Bile Duct Cancer AJCC v8 7 236994 -NCIT:C134611 Stage IA Intrahepatic Bile Duct Cancer AJCC v8 8 236995 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 9 236996 -NCIT:C134612 Stage IB Intrahepatic Bile Duct Cancer AJCC v8 8 236997 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 9 236998 -NCIT:C134757 Stage I Intrahepatic Cholangiocarcinoma AJCC v8 8 236999 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 9 237000 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 9 237001 -NCIT:C5758 Stage I Hepatocellular Carcinoma AJCC v6 and v7 7 237002 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 8 237003 -NCIT:C88050 Stage I Intrahepatic Cholangiocarcinoma AJCC v7 7 237004 -NCIT:C94775 Stage I Adult Liver Cancer AJCC v7 7 237005 -NCIT:C7117 Stage II Liver Cancer 6 237006 -NCIT:C134519 Stage II Hepatocellular Carcinoma AJCC v8 7 237007 -NCIT:C134614 Stage II Intrahepatic Bile Duct Cancer AJCC v8 7 237008 -NCIT:C134760 Stage II Intrahepatic Cholangiocarcinoma AJCC v8 8 237009 -NCIT:C5759 Stage II Hepatocellular Carcinoma AJCC v6 and v7 7 237010 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 8 237011 -NCIT:C88051 Stage II Intrahepatic Cholangiocarcinoma AJCC v7 7 237012 -NCIT:C94776 Stage II Adult Liver Cancer AJCC v7 7 237013 -NCIT:C7118 Stage III Liver Cancer 6 237014 -NCIT:C134520 Stage III Hepatocellular Carcinoma AJCC v8 7 237015 -NCIT:C134521 Stage IIIA Hepatocellular Carcinoma AJCC v8 8 237016 -NCIT:C134522 Stage IIIB Hepatocellular Carcinoma AJCC v8 8 237017 -NCIT:C134615 Stage III Intrahepatic Bile Duct Cancer AJCC v8 7 237018 -NCIT:C134616 Stage IIIA Intrahepatic Bile Duct Cancer AJCC v8 8 237019 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 9 237020 -NCIT:C134618 Stage IIIB Intrahepatic Bile Duct Cancer AJCC v8 8 237021 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 9 237022 -NCIT:C134761 Stage III Intrahepatic Cholangiocarcinoma AJCC v8 8 237023 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 9 237024 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 9 237025 -NCIT:C5760 Stage III Hepatocellular Carcinoma AJCC v6 7 237026 -NCIT:C88052 Stage III Intrahepatic Cholangiocarcinoma AJCC v7 7 237027 -NCIT:C90180 Stage III Hepatocellular Carcinoma AJCC v7 7 237028 -NCIT:C5708 Stage III Childhood Hepatocellular Carcinoma AJCC v7 8 237029 -NCIT:C5761 Stage IIIA Hepatocellular Carcinoma AJCC v7 8 237030 -NCIT:C5762 Stage IIIB Hepatocellular Carcinoma AJCC v7 8 237031 -NCIT:C88044 Stage IIIC Hepatocellular Carcinoma AJCC v7 8 237032 -NCIT:C94777 Stage III Adult Liver Cancer AJCC v7 7 237033 -NCIT:C94779 Stage IIIA Adult Liver Cancer AJCC v7 8 237034 -NCIT:C94780 Stage IIIB Adult Liver Cancer AJCC v7 8 237035 -NCIT:C94781 Stage IIIC Adult Liver Cancer AJCC v7 8 237036 -NCIT:C7121 Stage IV Liver Cancer 6 237037 -NCIT:C134523 Stage IV Hepatocellular Carcinoma AJCC v8 7 237038 -NCIT:C134524 Stage IVA Hepatocellular Carcinoma AJCC v8 8 237039 -NCIT:C134525 Stage IVB Hepatocellular Carcinoma AJCC v8 8 237040 -NCIT:C134619 Stage IV Intrahepatic Bile Duct Cancer AJCC v8 7 237041 -NCIT:C134764 Stage IV Intrahepatic Cholangiocarcinoma AJCC v8 8 237042 -NCIT:C5763 Stage IV Hepatocellular Carcinoma AJCC v6 7 237043 -NCIT:C7122 Stage IVA Liver Cancer 7 237044 -NCIT:C134524 Stage IVA Hepatocellular Carcinoma AJCC v8 8 237045 -NCIT:C5764 Stage IVA Hepatocellular Carcinoma AJCC v7 8 237046 -NCIT:C88053 Stage IVA Intrahepatic Cholangiocarcinoma AJCC v7 8 237047 -NCIT:C7123 Stage IVB Liver Cancer 7 237048 -NCIT:C134525 Stage IVB Hepatocellular Carcinoma AJCC v8 8 237049 -NCIT:C5765 Stage IVB Hepatocellular Carcinoma AJCC v7 8 237050 -NCIT:C88054 Stage IVB Intrahepatic Cholangiocarcinoma AJCC v7 8 237051 -NCIT:C90181 Stage IV Hepatocellular Carcinoma AJCC v7 7 237052 -NCIT:C5764 Stage IVA Hepatocellular Carcinoma AJCC v7 8 237053 -NCIT:C5765 Stage IVB Hepatocellular Carcinoma AJCC v7 8 237054 -NCIT:C7838 Stage IV Childhood Hepatocellular Carcinoma AJCC v7 8 237055 -NCIT:C94782 Stage IV Adult Liver Cancer AJCC v7 7 237056 -NCIT:C7711 Adult Liver Carcinoma 6 237057 -NCIT:C114987 Adult Combined Hepatocellular Carcinoma and Cholangiocarcinoma 7 237058 -NCIT:C7877 Localized Resectable Adult Liver Carcinoma 7 237059 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 8 237060 -NCIT:C7878 Localized Unresectable Adult Liver Carcinoma 7 237061 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 8 237062 -NCIT:C7880 Recurrent Adult Liver Carcinoma 7 237063 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 8 237064 -NCIT:C7956 Adult Hepatocellular Carcinoma 7 237065 -NCIT:C114992 Adult Fibrolamellar Carcinoma 8 237066 -NCIT:C114993 Adult Pleomorphic Hepatocellular Carcinoma 8 237067 -NCIT:C115139 BCLC Stage 0 Adult Hepatocellular Carcinoma 8 237068 -NCIT:C115140 BCLC Stage A Adult Hepatocellular Carcinoma 8 237069 -NCIT:C115141 BCLC Stage B Adult Hepatocellular Carcinoma 8 237070 -NCIT:C115143 BCLC Stage C Adult Hepatocellular Carcinoma 8 237071 -NCIT:C115144 BCLC Stage D Adult Hepatocellular Carcinoma 8 237072 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 8 237073 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 8 237074 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 8 237075 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 8 237076 -NCIT:C94775 Stage I Adult Liver Cancer AJCC v7 7 237077 -NCIT:C94776 Stage II Adult Liver Cancer AJCC v7 7 237078 -NCIT:C94777 Stage III Adult Liver Cancer AJCC v7 7 237079 -NCIT:C94779 Stage IIIA Adult Liver Cancer AJCC v7 8 237080 -NCIT:C94780 Stage IIIB Adult Liver Cancer AJCC v7 8 237081 -NCIT:C94781 Stage IIIC Adult Liver Cancer AJCC v7 8 237082 -NCIT:C94782 Stage IV Adult Liver Cancer AJCC v7 7 237083 -NCIT:C96787 Liver Neuroendocrine Carcinoma 6 237084 -NCIT:C172722 Liver Large Cell Neuroendocrine Carcinoma 7 237085 -NCIT:C172725 Liver Small Cell Neuroendocrine Carcinoma 7 237086 -NCIT:C96792 Liver Undifferentiated Carcinoma 6 237087 -NCIT:C96848 Liver Carcinosarcoma 6 237088 -NCIT:C96947 Intrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 6 237089 -NCIT:C9291 Anal Carcinoma 5 237090 -NCIT:C133794 Anal Cancer by AJCC v8 Stage 6 237091 -NCIT:C133795 Stage 0 Anal Cancer AJCC v8 7 237092 -NCIT:C157575 Anal Intraepithelial Neoplasia 3 8 237093 -NCIT:C133796 Stage I Anal Cancer AJCC v8 7 237094 -NCIT:C133797 Stage II Anal Cancer AJCC v8 7 237095 -NCIT:C133798 Stage IIA Anal Cancer AJCC v8 8 237096 -NCIT:C133799 Stage IIB Anal Cancer AJCC v8 8 237097 -NCIT:C133800 Stage III Anal Cancer AJCC v8 7 237098 -NCIT:C133801 Stage IIIA Anal Cancer AJCC v8 8 237099 -NCIT:C133802 Stage IIIB Anal Cancer AJCC v8 8 237100 -NCIT:C133803 Stage IIIC Anal Cancer AJCC v8 8 237101 -NCIT:C133804 Stage IV Anal Cancer AJCC v8 7 237102 -NCIT:C137857 Refractory Anal Carcinoma 6 237103 -NCIT:C173334 Refractory Anal Canal Squamous Cell Carcinoma 7 237104 -NCIT:C167354 Microinvasive Anal Carcinoma 6 237105 -NCIT:C170514 Metastatic Anal Carcinoma 6 237106 -NCIT:C168977 Locally Advanced Anal Carcinoma 7 237107 -NCIT:C169103 Metastatic Anal Squamous Cell Carcinoma 7 237108 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 237109 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 237110 -NCIT:C170515 Advanced Anal Carcinoma 7 237111 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 8 237112 -NCIT:C5612 Metastatic Anal Canal Carcinoma 7 237113 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 237114 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 237115 -NCIT:C5600 Anal Adenocarcinoma 6 237116 -NCIT:C153575 Recurrent Anal Adenocarcinoma 7 237117 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 8 237118 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 8 237119 -NCIT:C5598 Anal Paget Disease 7 237120 -NCIT:C7476 Anal Margin Paget Disease 8 237121 -NCIT:C7477 Anal Canal Paget Disease 8 237122 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 9 237123 -NCIT:C7471 Anal Canal Adenocarcinoma 7 237124 -NCIT:C5606 Anal Mucinous Adenocarcinoma 8 237125 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 9 237126 -NCIT:C7477 Anal Canal Paget Disease 8 237127 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 9 237128 -NCIT:C7474 Anal Extramucosal (Perianal) Adenocarcinoma 7 237129 -NCIT:C5609 Anal Glands Adenocarcinoma 8 237130 -NCIT:C7475 Anal Adenocarcinoma within Anorectal Fistula 8 237131 -NCIT:C7472 Anal Margin Carcinoma 6 237132 -NCIT:C6925 Anal Margin Squamous Cell Carcinoma 7 237133 -NCIT:C7473 Anal Margin Basal Cell Carcinoma 7 237134 -NCIT:C7476 Anal Margin Paget Disease 7 237135 -NCIT:C7489 Anal Canal Carcinoma 6 237136 -NCIT:C133095 AIDS-Related Anal Canal Carcinoma 7 237137 -NCIT:C27282 Stage 0 AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 237138 -NCIT:C27283 Stage I AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 237139 -NCIT:C27284 Stage II AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 237140 -NCIT:C27285 Stage III AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 237141 -NCIT:C27286 Stage IV AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 237142 -NCIT:C9249 Recurrent AIDS-Related Anal Canal Carcinoma 8 237143 -NCIT:C133787 Anal Canal Cancer by AJCC v6 and v7 Stage 7 237144 -NCIT:C6873 Stage IV Anal Canal Cancer AJCC v6 and v7 8 237145 -NCIT:C27286 Stage IV AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 237146 -NCIT:C7775 Stage II Anal Canal Cancer AJCC v6 and v7 8 237147 -NCIT:C27284 Stage II AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 237148 -NCIT:C7776 Stage III Anal Canal Cancer AJCC v6 and v7 8 237149 -NCIT:C27285 Stage III AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 237150 -NCIT:C5925 Stage IIIA Anal Canal Cancer AJCC v6 and v7 9 237151 -NCIT:C5926 Stage IIIB Anal Canal Cancer AJCC v6 and v7 9 237152 -NCIT:C7794 Stage 0 Anal Canal Cancer AJCC v6 and v7 8 237153 -NCIT:C27282 Stage 0 AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 237154 -NCIT:C9037 Stage I Anal Canal Cancer AJCC v6 and v7 8 237155 -NCIT:C27283 Stage I AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 237156 -NCIT:C5612 Metastatic Anal Canal Carcinoma 7 237157 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 237158 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 237159 -NCIT:C7469 Anal Canal Squamous Cell Carcinoma 7 237160 -NCIT:C173334 Refractory Anal Canal Squamous Cell Carcinoma 8 237161 -NCIT:C175360 Recurrent Anal Canal Squamous Cell Carcinoma 8 237162 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 9 237163 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 237164 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 237165 -NCIT:C175384 Unresectable Anal Canal Squamous Cell Carcinoma 8 237166 -NCIT:C7471 Anal Canal Adenocarcinoma 7 237167 -NCIT:C5606 Anal Mucinous Adenocarcinoma 8 237168 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 9 237169 -NCIT:C7477 Anal Canal Paget Disease 8 237170 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 9 237171 -NCIT:C7793 Recurrent Anal Canal Carcinoma 7 237172 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 8 237173 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 8 237174 -NCIT:C175360 Recurrent Anal Canal Squamous Cell Carcinoma 8 237175 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 9 237176 -NCIT:C9249 Recurrent AIDS-Related Anal Canal Carcinoma 8 237177 -NCIT:C8255 Anal Canal Cloacogenic Carcinoma 7 237178 -NCIT:C96529 Anal Canal Undifferentiated Carcinoma 7 237179 -NCIT:C96549 Anal Canal Neuroendocrine Carcinoma 7 237180 -NCIT:C96550 Anal Canal Large Cell Neuroendocrine Carcinoma 8 237181 -NCIT:C96551 Anal Canal Small Cell Neuroendocrine Carcinoma 8 237182 -NCIT:C96553 Anal Canal Mixed Adenoneuroendocrine Carcinoma 7 237183 -NCIT:C9161 Anal Squamous Cell Carcinoma 6 237184 -NCIT:C157575 Anal Intraepithelial Neoplasia 3 7 237185 -NCIT:C169102 Recurrent Anal Squamous Cell Carcinoma 7 237186 -NCIT:C175360 Recurrent Anal Canal Squamous Cell Carcinoma 8 237187 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 9 237188 -NCIT:C169103 Metastatic Anal Squamous Cell Carcinoma 7 237189 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 237190 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 237191 -NCIT:C173156 Unresectable Anal Squamous Cell Carcinoma 7 237192 -NCIT:C175384 Unresectable Anal Canal Squamous Cell Carcinoma 8 237193 -NCIT:C27681 Human Papillomavirus-Related Anal Squamous Cell Carcinoma 7 237194 -NCIT:C6925 Anal Margin Squamous Cell Carcinoma 7 237195 -NCIT:C7469 Anal Canal Squamous Cell Carcinoma 7 237196 -NCIT:C173334 Refractory Anal Canal Squamous Cell Carcinoma 8 237197 -NCIT:C175360 Recurrent Anal Canal Squamous Cell Carcinoma 8 237198 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 9 237199 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 237200 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 237201 -NCIT:C175384 Unresectable Anal Canal Squamous Cell Carcinoma 8 237202 -NCIT:C7470 Anal Verrucous Carcinoma 7 237203 -NCIT:C8256 Anal Basaloid Carcinoma 7 237204 -NCIT:C9278 AIDS-Related Anal Carcinoma 6 237205 -NCIT:C133095 AIDS-Related Anal Canal Carcinoma 7 237206 -NCIT:C27282 Stage 0 AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 237207 -NCIT:C27283 Stage I AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 237208 -NCIT:C27284 Stage II AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 237209 -NCIT:C27285 Stage III AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 237210 -NCIT:C27286 Stage IV AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 237211 -NCIT:C9249 Recurrent AIDS-Related Anal Canal Carcinoma 8 237212 -NCIT:C9296 Gastroesophageal Junction Adenocarcinoma 5 237213 -NCIT:C133548 Gastroesophageal Junction Adenocarcinoma by AJCC v8 Stage 6 237214 -NCIT:C133549 Gastroesophageal Junction Adenocarcinoma by AJCC v8 Clinical Stage 7 237215 -NCIT:C133550 Clinical Stage 0 Gastroesophageal Junction Adenocarcinoma AJCC v8 8 237216 -NCIT:C133552 Clinical Stage I Gastroesophageal Junction Adenocarcinoma AJCC v8 8 237217 -NCIT:C133553 Clinical Stage II Gastroesophageal Junction Adenocarcinoma AJCC v8 8 237218 -NCIT:C133554 Clinical Stage IIA Gastroesophageal Junction Adenocarcinoma AJCC v8 9 237219 -NCIT:C133555 Clinical Stage IIB Gastroesophageal Junction Adenocarcinoma AJCC v8 9 237220 -NCIT:C133556 Clinical Stage III Gastroesophageal Junction Adenocarcinoma AJCC v8 8 237221 -NCIT:C133557 Clinical Stage IV Gastroesophageal Junction Adenocarcinoma AJCC v8 8 237222 -NCIT:C133558 Clinical Stage IVA Gastroesophageal Junction Adenocarcinoma AJCC v8 9 237223 -NCIT:C133560 Clinical Stage IVB Gastroesophageal Junction Adenocarcinoma AJCC v8 9 237224 -NCIT:C133563 Gastroesophageal Junction Adenocarcinoma by AJCC v8 Pathologic Stage 7 237225 -NCIT:C133564 Pathologic Stage 0 Gastroesophageal Junction Adenocarcinoma AJCC v8 8 237226 -NCIT:C133565 Pathologic Stage I Gastroesophageal Junction Adenocarcinoma AJCC v8 8 237227 -NCIT:C133566 Pathologic Stage IA Gastroesophageal Junction Adenocarcinoma AJCC v8 9 237228 -NCIT:C133567 Pathologic Stage IB Gastroesophageal Junction Adenocarcinoma AJCC v8 9 237229 -NCIT:C133568 Pathologic Stage IC Gastroesophageal Junction Adenocarcinoma AJCC v8 9 237230 -NCIT:C133570 Pathologic Stage II Gastroesophageal Junction Adenocarcinoma AJCC v8 8 237231 -NCIT:C133572 Pathologic Stage IIA Gastroesophageal Junction Adenocarcinoma AJCC v8 9 237232 -NCIT:C133573 Pathologic Stage IIB Gastroesophageal Junction Adenocarcinoma AJCC v8 9 237233 -NCIT:C133575 Pathologic Stage III Gastroesophageal Junction Adenocarcinoma AJCC v8 8 237234 -NCIT:C133577 Pathologic Stage IIIA Gastroesophageal Junction Adenocarcinoma AJCC v8 9 237235 -NCIT:C133579 Pathologic Stage IIIB Gastroesophageal Junction Adenocarcinoma AJCC v8 9 237236 -NCIT:C133580 Pathologic Stage IV Gastroesophageal Junction Adenocarcinoma AJCC v8 8 237237 -NCIT:C133581 Pathologic Stage IVA Gastroesophageal Junction Adenocarcinoma AJCC v8 9 237238 -NCIT:C133582 Pathologic Stage IVB Gastroesophageal Junction Adenocarcinoma AJCC v8 9 237239 -NCIT:C133583 Gastroesophageal Junction Adenocarcinoma by AJCC v8 Postneoadjuvant Therapy Stage 7 237240 -NCIT:C133584 Postneoadjuvant Therapy Stage I Gastroesophageal Junction Adenocarcinoma AJCC v8 8 237241 -NCIT:C133585 Postneoadjuvant Therapy Stage II Gastroesophageal Junction Adenocarcinoma AJCC v8 8 237242 -NCIT:C133586 Postneoadjuvant Therapy Stage III Gastroesophageal Junction Adenocarcinoma AJCC v8 8 237243 -NCIT:C133587 Postneoadjuvant Therapy Stage IIIA Gastroesophageal Junction Adenocarcinoma AJCC v8 9 237244 -NCIT:C133588 Postneoadjuvant Therapy Stage IIIB Gastroesophageal Junction Adenocarcinoma AJCC v8 9 237245 -NCIT:C133589 Postneoadjuvant Therapy Stage IV Gastroesophageal Junction Adenocarcinoma AJCC v8 8 237246 -NCIT:C133590 Postneoadjuvant Therapy Stage IVA Gastroesophageal Junction Adenocarcinoma AJCC v8 9 237247 -NCIT:C133591 Postneoadjuvant Therapy Stage IVB Gastroesophageal Junction Adenocarcinoma AJCC v8 9 237248 -NCIT:C150577 Metastatic Gastroesophageal Junction Adenocarcinoma 6 237249 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 7 237250 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 7 237251 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 237252 -NCIT:C150578 Unresectable Gastroesophageal Junction Adenocarcinoma 6 237253 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 7 237254 -NCIT:C153359 Recurrent Gastroesophageal Junction Adenocarcinoma 6 237255 -NCIT:C156166 Localized Gastroesophageal Junction Adenocarcinoma 6 237256 -NCIT:C162538 Refractory Gastroesophageal Junction Adenocarcinoma 6 237257 -NCIT:C9330 Appendix Carcinoma 5 237258 -NCIT:C133733 Appendix Carcinoma by AJCC v7 Stage 6 237259 -NCIT:C4593 Stage 0 Appendix Carcinoma AJCC v7 7 237260 -NCIT:C87798 Stage I Appendix Carcinoma AJCC v7 7 237261 -NCIT:C87799 Stage IIA Appendix Carcinoma AJCC v7 7 237262 -NCIT:C87800 Stage IIB Appendix Carcinoma AJCC v7 7 237263 -NCIT:C87801 Stage IIC Appendix Carcinoma AJCC v7 7 237264 -NCIT:C87803 Stage IIIA Appendix Carcinoma AJCC v7 7 237265 -NCIT:C87804 Stage IIIB Appendix Carcinoma AJCC v7 7 237266 -NCIT:C87805 Stage IIIC Appendix Carcinoma AJCC v7 7 237267 -NCIT:C87806 Stage IVA Appendix Carcinoma AJCC v7 7 237268 -NCIT:C87807 Stage IVB Appendix Carcinoma AJCC v7 7 237269 -NCIT:C87808 Stage IVC Appendix Carcinoma AJCC v7 7 237270 -NCIT:C134117 Appendix Carcinoma by AJCC v8 Stage 6 237271 -NCIT:C134118 Stage 0 Appendix Carcinoma AJCC v8 7 237272 -NCIT:C134119 Stage 0 Low Grade Appendix Mucinous Neoplasm (LAMN) AJCC v8 7 237273 -NCIT:C134120 Stage I Appendix Carcinoma AJCC v8 7 237274 -NCIT:C134121 Stage II Appendix Carcinoma AJCC v8 7 237275 -NCIT:C134122 Stage IIA Appendix Carcinoma AJCC v8 8 237276 -NCIT:C134123 Stage IIB Appendix Carcinoma AJCC v8 8 237277 -NCIT:C134124 Stage IIC Appendix Carcinoma AJCC v8 8 237278 -NCIT:C134125 Stage III Appendix Carcinoma AJCC v8 7 237279 -NCIT:C134126 Stage IIIA Appendix Carcinoma AJCC v8 8 237280 -NCIT:C134127 Stage IIIB Appendix Carcinoma AJCC v8 8 237281 -NCIT:C134128 Stage IIIC Appendix Carcinoma AJCC v8 8 237282 -NCIT:C134129 Stage IV Appendix Carcinoma AJCC v8 7 237283 -NCIT:C134130 Stage IVA Appendix Carcinoma AJCC v8 8 237284 -NCIT:C134131 Stage IVB Appendix Carcinoma AJCC v8 8 237285 -NCIT:C134132 Stage IVC Appendix Carcinoma AJCC v8 8 237286 -NCIT:C153802 Recurrent Appendix Carcinoma 6 237287 -NCIT:C179174 Recurrent Appendix Adenocarcinoma 7 237288 -NCIT:C153579 Recurrent Appendix Mucinous Adenocarcinoma 8 237289 -NCIT:C162275 Metastatic Appendix Carcinoma 6 237290 -NCIT:C182104 Metastatic Appendix Adenocarcinoma 7 237291 -NCIT:C162274 Metastatic Appendix Mucinous Adenocarcinoma 8 237292 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 237293 -NCIT:C179177 Refractory Appendix Carcinoma 6 237294 -NCIT:C179178 Refractory Appendix Adenocarcinoma 7 237295 -NCIT:C43556 Appendix Undifferentiated Carcinoma 6 237296 -NCIT:C43564 Appendix Mixed Adenoneuroendocrine Carcinoma 6 237297 -NCIT:C3689 Appendix Goblet Cell Adenocarcinoma 7 237298 -NCIT:C7718 Appendix Adenocarcinoma 6 237299 -NCIT:C179174 Recurrent Appendix Adenocarcinoma 7 237300 -NCIT:C153579 Recurrent Appendix Mucinous Adenocarcinoma 8 237301 -NCIT:C179178 Refractory Appendix Adenocarcinoma 7 237302 -NCIT:C182104 Metastatic Appendix Adenocarcinoma 7 237303 -NCIT:C162274 Metastatic Appendix Mucinous Adenocarcinoma 8 237304 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 237305 -NCIT:C43554 Appendix Signet Ring Cell Carcinoma 7 237306 -NCIT:C43558 Appendix Mucinous Adenocarcinoma 7 237307 -NCIT:C153579 Recurrent Appendix Mucinous Adenocarcinoma 8 237308 -NCIT:C162274 Metastatic Appendix Mucinous Adenocarcinoma 8 237309 -NCIT:C5511 Appendix Mucinous Cystadenocarcinoma 8 237310 -NCIT:C96425 Appendix Neuroendocrine Carcinoma 6 237311 -NCIT:C43555 Appendix Small Cell Neuroendocrine Carcinoma 7 237312 -NCIT:C96426 Appendix Large Cell Neuroendocrine Carcinoma 7 237313 -NCIT:C95405 Digestive System Neuroendocrine Carcinoma 5 237314 -NCIT:C126324 Gastroesophageal Junction Neuroendocrine Carcinoma 6 237315 -NCIT:C126323 Gastroesophageal Junction Large Cell Neuroendocrine Carcinoma 7 237316 -NCIT:C126325 Gastroesophageal Junction Small Cell Neuroendocrine Carcinoma 7 237317 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 7 237318 -NCIT:C154617 Digestive System Large Cell Neuroendocrine Carcinoma 6 237319 -NCIT:C126323 Gastroesophageal Junction Large Cell Neuroendocrine Carcinoma 7 237320 -NCIT:C172722 Liver Large Cell Neuroendocrine Carcinoma 7 237321 -NCIT:C95582 Pancreatic Large Cell Neuroendocrine Carcinoma 7 237322 -NCIT:C95620 Esophageal Large Cell Neuroendocrine Carcinoma 7 237323 -NCIT:C95885 Gastric Large Cell Neuroendocrine Carcinoma 7 237324 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 237325 -NCIT:C95985 Ampulla of Vater Large Cell Neuroendocrine Carcinoma 7 237326 -NCIT:C96065 Small Intestinal Large Cell Neuroendocrine Carcinoma 7 237327 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 237328 -NCIT:C96157 Colorectal Large Cell Neuroendocrine Carcinoma 7 237329 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 8 237330 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 8 237331 -NCIT:C96426 Appendix Large Cell Neuroendocrine Carcinoma 7 237332 -NCIT:C96550 Anal Canal Large Cell Neuroendocrine Carcinoma 7 237333 -NCIT:C96921 Gallbladder Large Cell Neuroendocrine Carcinoma 7 237334 -NCIT:C96958 Extrahepatic Bile Duct Large Cell Neuroendocrine Carcinoma 7 237335 -NCIT:C154641 Digestive System Small Cell Neuroendocrine Carcinoma 6 237336 -NCIT:C126325 Gastroesophageal Junction Small Cell Neuroendocrine Carcinoma 7 237337 -NCIT:C172725 Liver Small Cell Neuroendocrine Carcinoma 7 237338 -NCIT:C27449 Small Intestinal Small Cell Neuroendocrine Carcinoma 7 237339 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 237340 -NCIT:C43555 Appendix Small Cell Neuroendocrine Carcinoma 7 237341 -NCIT:C43587 Colorectal Small Cell Neuroendocrine Carcinoma 7 237342 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 8 237343 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 8 237344 -NCIT:C5845 Extrahepatic Bile Duct Small Cell Neuroendocrine Carcinoma 7 237345 -NCIT:C6655 Ampulla of Vater Small Cell Neuroendocrine Carcinoma 7 237346 -NCIT:C6762 Esophageal Small Cell Neuroendocrine Carcinoma 7 237347 -NCIT:C6763 Gallbladder Small Cell Neuroendocrine Carcinoma 7 237348 -NCIT:C6764 Gastric Small Cell Neuroendocrine Carcinoma 7 237349 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 237350 -NCIT:C95583 Pancreatic Small Cell Neuroendocrine Carcinoma 7 237351 -NCIT:C96551 Anal Canal Small Cell Neuroendocrine Carcinoma 7 237352 -NCIT:C155935 Unresectable Digestive System Neuroendocrine Carcinoma 6 237353 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 7 237354 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 7 237355 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 6 237356 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 7 237357 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 237358 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 237359 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 237360 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 7 237361 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 237362 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 237363 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 237364 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 7 237365 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 237366 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 237367 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 237368 -NCIT:C155937 Refractory Digestive System Neuroendocrine Carcinoma 6 237369 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 7 237370 -NCIT:C155938 Recurrent Digestive System Neuroendocrine Carcinoma 6 237371 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 7 237372 -NCIT:C3770 Pancreatic Neuroendocrine Carcinoma 6 237373 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 7 237374 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 7 237375 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 7 237376 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 237377 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 7 237378 -NCIT:C95582 Pancreatic Large Cell Neuroendocrine Carcinoma 7 237379 -NCIT:C95583 Pancreatic Small Cell Neuroendocrine Carcinoma 7 237380 -NCIT:C95619 Esophageal Neuroendocrine Carcinoma 6 237381 -NCIT:C6762 Esophageal Small Cell Neuroendocrine Carcinoma 7 237382 -NCIT:C95620 Esophageal Large Cell Neuroendocrine Carcinoma 7 237383 -NCIT:C95884 Gastric Neuroendocrine Carcinoma 6 237384 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 7 237385 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 237386 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 237387 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 237388 -NCIT:C6764 Gastric Small Cell Neuroendocrine Carcinoma 7 237389 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 237390 -NCIT:C95885 Gastric Large Cell Neuroendocrine Carcinoma 7 237391 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 237392 -NCIT:C95984 Ampulla of Vater Neuroendocrine Carcinoma 6 237393 -NCIT:C6655 Ampulla of Vater Small Cell Neuroendocrine Carcinoma 7 237394 -NCIT:C95985 Ampulla of Vater Large Cell Neuroendocrine Carcinoma 7 237395 -NCIT:C96063 Intestinal Neuroendocrine Carcinoma 6 237396 -NCIT:C96064 Small Intestinal Neuroendocrine Carcinoma 7 237397 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 237398 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 237399 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 237400 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 237401 -NCIT:C27449 Small Intestinal Small Cell Neuroendocrine Carcinoma 8 237402 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 237403 -NCIT:C96065 Small Intestinal Large Cell Neuroendocrine Carcinoma 8 237404 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 237405 -NCIT:C96156 Colorectal Neuroendocrine Carcinoma 7 237406 -NCIT:C43587 Colorectal Small Cell Neuroendocrine Carcinoma 8 237407 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 9 237408 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 9 237409 -NCIT:C96157 Colorectal Large Cell Neuroendocrine Carcinoma 8 237410 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 9 237411 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 9 237412 -NCIT:C96425 Appendix Neuroendocrine Carcinoma 6 237413 -NCIT:C43555 Appendix Small Cell Neuroendocrine Carcinoma 7 237414 -NCIT:C96426 Appendix Large Cell Neuroendocrine Carcinoma 7 237415 -NCIT:C96549 Anal Canal Neuroendocrine Carcinoma 6 237416 -NCIT:C96550 Anal Canal Large Cell Neuroendocrine Carcinoma 7 237417 -NCIT:C96551 Anal Canal Small Cell Neuroendocrine Carcinoma 7 237418 -NCIT:C96787 Liver Neuroendocrine Carcinoma 6 237419 -NCIT:C172722 Liver Large Cell Neuroendocrine Carcinoma 7 237420 -NCIT:C172725 Liver Small Cell Neuroendocrine Carcinoma 7 237421 -NCIT:C96919 Gallbladder Neuroendocrine Carcinoma 6 237422 -NCIT:C6763 Gallbladder Small Cell Neuroendocrine Carcinoma 7 237423 -NCIT:C96921 Gallbladder Large Cell Neuroendocrine Carcinoma 7 237424 -NCIT:C96956 Extrahepatic Bile Duct Neuroendocrine Carcinoma 6 237425 -NCIT:C5845 Extrahepatic Bile Duct Small Cell Neuroendocrine Carcinoma 7 237426 -NCIT:C96958 Extrahepatic Bile Duct Large Cell Neuroendocrine Carcinoma 7 237427 -NCIT:C95406 Digestive System Mixed Adenoneuroendocrine Carcinoma 5 237428 -NCIT:C163967 Metastatic Digestive System Mixed Adenoneuroendocrine Carcinoma 6 237429 -NCIT:C172718 Liver Mixed Adenoneuroendocrine Carcinoma 6 237430 -NCIT:C172808 Unresectable Digestive System Mixed Adenoneuroendocrine Carcinoma 6 237431 -NCIT:C43564 Appendix Mixed Adenoneuroendocrine Carcinoma 6 237432 -NCIT:C3689 Appendix Goblet Cell Adenocarcinoma 7 237433 -NCIT:C45843 Pancreatic Mixed Adenoneuroendocrine Carcinoma 6 237434 -NCIT:C6878 Pancreatic Mixed Acinar-Neuroendocrine Carcinoma 7 237435 -NCIT:C6879 Pancreatic Mixed Ductal-Neuroendocrine Carcinoma 7 237436 -NCIT:C95460 Pancreatic Mixed Acinar-Ductal Neuroendocrine Carcinoma 7 237437 -NCIT:C95621 Esophageal Mixed Adenoneuroendocrine Carcinoma 6 237438 -NCIT:C95886 Gastric Mixed Adenoneuroendocrine Carcinoma 6 237439 -NCIT:C95986 Ampulla of Vater Mixed Adenoneuroendocrine Carcinoma 6 237440 -NCIT:C96066 Small Intestinal Mixed Adenoneuroendocrine Carcinoma 6 237441 -NCIT:C96158 Colorectal Mixed Adenoneuroendocrine Carcinoma 6 237442 -NCIT:C96553 Anal Canal Mixed Adenoneuroendocrine Carcinoma 6 237443 -NCIT:C96927 Gallbladder Mixed Adenoneuroendocrine Carcinoma 6 237444 -NCIT:C96928 Gallbladder Goblet Cell Carcinoid 7 237445 -NCIT:C96959 Extrahepatic Bile Duct Mixed Adenoneuroendocrine Carcinoma 6 237446 -NCIT:C2920 Malignant Skin Neoplasm 3 237447 -NCIT:C150545 Recurrent Malignant Skin Neoplasm 4 237448 -NCIT:C142876 Recurrent Primary Cutaneous Lymphoma 5 237449 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 6 237450 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 6 237451 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 7 237452 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 7 237453 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 7 237454 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 7 237455 -NCIT:C8686 Recurrent Mycosis Fungoides 7 237456 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 8 237457 -NCIT:C153626 Recurrent Skin Angiosarcoma 5 237458 -NCIT:C156103 Recurrent Blastic Plasmacytoid Dendritic Cell Neoplasm 5 237459 -NCIT:C179464 Recurrent Malignant Scrotal Neoplasm 5 237460 -NCIT:C7903 Recurrent Skin Carcinoma 5 237461 -NCIT:C115440 Recurrent Merkel Cell Carcinoma 6 237462 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 7 237463 -NCIT:C165740 Locally Recurrent Merkel Cell Carcinoma 7 237464 -NCIT:C143012 Recurrent Skin Squamous Cell Carcinoma 6 237465 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 237466 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 7 237467 -NCIT:C165737 Locally Recurrent Skin Squamous Cell Carcinoma 7 237468 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 6 237469 -NCIT:C9097 Recurrent Cutaneous Melanoma 5 237470 -NCIT:C155306 Recurrent Cutaneous Melanoma of the Extremity 6 237471 -NCIT:C175435 Recurrent Acral Lentiginous Melanoma 7 237472 -NCIT:C8785 Recurrent Lentigo Maligna Melanoma 6 237473 -NCIT:C150546 Refractory Malignant Skin Neoplasm 4 237474 -NCIT:C142877 Refractory Primary Cutaneous Lymphoma 5 237475 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 6 237476 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 6 237477 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 7 237478 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 7 237479 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 7 237480 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 7 237481 -NCIT:C8687 Refractory Mycosis Fungoides 7 237482 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 8 237483 -NCIT:C150544 Refractory Cutaneous Melanoma 5 237484 -NCIT:C156104 Refractory Blastic Plasmacytoid Dendritic Cell Neoplasm 5 237485 -NCIT:C165735 Refractory Skin Squamous Cell Carcinoma 5 237486 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 6 237487 -NCIT:C165741 Refractory Merkel Cell Carcinoma 5 237488 -NCIT:C170811 Metastatic Malignant Skin Neoplasm 4 237489 -NCIT:C143013 Metastatic Skin Squamous Cell Carcinoma 5 237490 -NCIT:C153182 Locally Advanced Skin Squamous Cell Carcinoma 6 237491 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 237492 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 6 237493 -NCIT:C168542 Advanced Skin Squamous Cell Carcinoma 6 237494 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 237495 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 6 237496 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 237497 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 237498 -NCIT:C156072 Metastatic Cutaneous Melanoma 5 237499 -NCIT:C171285 Locally Advanced Cutaneous Melanoma 6 237500 -NCIT:C171572 Advanced Cutaneous Melanoma 6 237501 -NCIT:C155311 Advanced Cutaneous Melanoma of the Extremity 7 237502 -NCIT:C179427 Metastatic Acral Lentiginous Melanoma 6 237503 -NCIT:C162572 Metastatic Merkel Cell Carcinoma 5 237504 -NCIT:C165300 Advanced Merkel Cell Carcinoma 6 237505 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 6 237506 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 6 237507 -NCIT:C170812 Advanced Malignant Skin Neoplasm 5 237508 -NCIT:C165300 Advanced Merkel Cell Carcinoma 6 237509 -NCIT:C168542 Advanced Skin Squamous Cell Carcinoma 6 237510 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 237511 -NCIT:C171572 Advanced Cutaneous Melanoma 6 237512 -NCIT:C155311 Advanced Cutaneous Melanoma of the Extremity 7 237513 -NCIT:C172442 Advanced Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 6 237514 -NCIT:C171284 Locally Advanced Malignant Skin Neoplasm 5 237515 -NCIT:C153182 Locally Advanced Skin Squamous Cell Carcinoma 6 237516 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 237517 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 6 237518 -NCIT:C171285 Locally Advanced Cutaneous Melanoma 6 237519 -NCIT:C180374 Early Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 6 237520 -NCIT:C171101 Cutaneous Lymphoma 4 237521 -NCIT:C168651 Cutaneous Burkitt Lymphoma 5 237522 -NCIT:C45266 Cutaneous Mantle Cell Lymphoma 5 237523 -NCIT:C45268 Cutaneous Nasal Type Extranodal NK/T-Cell Lymphoma 5 237524 -NCIT:C45271 Cutaneous Angioimmunoblastic T-Cell Lymphoma 5 237525 -NCIT:C45272 Cutaneous Adult T-Cell Leukemia/Lymphoma 5 237526 -NCIT:C7162 Primary Cutaneous Lymphoma 5 237527 -NCIT:C142876 Recurrent Primary Cutaneous Lymphoma 6 237528 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 7 237529 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 7 237530 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 8 237531 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 8 237532 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 8 237533 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 8 237534 -NCIT:C8686 Recurrent Mycosis Fungoides 8 237535 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 9 237536 -NCIT:C142877 Refractory Primary Cutaneous Lymphoma 6 237537 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 7 237538 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 7 237539 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 8 237540 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 8 237541 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 8 237542 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 8 237543 -NCIT:C8687 Refractory Mycosis Fungoides 8 237544 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 9 237545 -NCIT:C188114 Primary Cutaneous Non-Hodgkin Lymphoma 6 237546 -NCIT:C3467 Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 7 237547 -NCIT:C172442 Advanced Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 237548 -NCIT:C180374 Early Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 237549 -NCIT:C3246 Mycosis Fungoides 8 237550 -NCIT:C141143 Mycosis Fungoides by AJCC v7 Stage 9 237551 -NCIT:C7796 Stage I Mycosis Fungoides AJCC v7 10 237552 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 11 237553 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 11 237554 -NCIT:C7798 Stage II Mycosis Fungoides AJCC v7 10 237555 -NCIT:C7800 Stage III Mycosis Fungoides AJCC v7 10 237556 -NCIT:C7802 Stage IV Mycosis Fungoides AJCC v7 10 237557 -NCIT:C165783 Transformed Mycosis Fungoides 9 237558 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 237559 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 237560 -NCIT:C8686 Recurrent Mycosis Fungoides 9 237561 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 237562 -NCIT:C8687 Refractory Mycosis Fungoides 9 237563 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 237564 -NCIT:C39644 Mycosis Fungoides Variant 8 237565 -NCIT:C35464 Granulomatous Slack Skin Disease 9 237566 -NCIT:C35685 Folliculotropic Mycosis Fungoides 9 237567 -NCIT:C35794 Pagetoid Reticulosis 9 237568 -NCIT:C45332 Primary Cutaneous Peripheral T-Cell Lymphoma, Rare Subtype 8 237569 -NCIT:C139023 Primary Cutaneous Acral CD8-Positive T-Cell Lymphoma 9 237570 -NCIT:C45339 Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 237571 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 237572 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 237573 -NCIT:C45340 Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 237574 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 237575 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 237576 -NCIT:C6860 Primary Cutaneous Anaplastic Large Cell Lymphoma 8 237577 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 237578 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 237579 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 9 237580 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 9 237581 -NCIT:C6918 Subcutaneous Panniculitis-Like T-Cell Lymphoma 8 237582 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 237583 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 237584 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 237585 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 237586 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 237587 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 237588 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 237589 -NCIT:C8686 Recurrent Mycosis Fungoides 9 237590 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 237591 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 237592 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 237593 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 237594 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 237595 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 237596 -NCIT:C8687 Refractory Mycosis Fungoides 9 237597 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 237598 -NCIT:C6858 Primary Cutaneous B-Cell Non-Hodgkin Lymphoma 7 237599 -NCIT:C45193 Primary Cutaneous Diffuse Large B-Cell Lymphoma 8 237600 -NCIT:C45194 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 237601 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 237602 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 237603 -NCIT:C45213 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Other 9 237604 -NCIT:C45214 Primary Cutaneous Intravascular Large B-Cell Lymphoma 10 237605 -NCIT:C45215 Primary Cutaneous T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 10 237606 -NCIT:C45216 Primary Cutaneous Plasmablastic Lymphoma 10 237607 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 8 237608 -NCIT:C7230 Primary Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 237609 -NCIT:C45163 Borrelia Burgdoferi-Associated Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 237610 -NCIT:C7221 Primary Cutaneous Hodgkin Lymphoma 6 237611 -NCIT:C7218 Cutaneous Follicular Lymphoma 5 237612 -NCIT:C6859 Grade 3 Cutaneous Follicular Lymphoma 6 237613 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 6 237614 -NCIT:C7219 Grade 2 Cutaneous Follicular Lymphoma 6 237615 -NCIT:C7220 Grade 1 Cutaneous Follicular Lymphoma 6 237616 -NCIT:C185044 Cutaneous Plasmacytoma 4 237617 -NCIT:C190125 Childhood Malignant Skin Neoplasm 4 237618 -NCIT:C190280 Childhood Cutaneous Melanoma 5 237619 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 5 237620 -NCIT:C3510 Cutaneous Melanoma 4 237621 -NCIT:C137645 Cutaneous Melanoma by AJCC v8 Stage 5 237622 -NCIT:C137646 Cutaneous Melanoma by AJCC v8 Clinical Stage 6 237623 -NCIT:C137647 Clinical Stage 0 Cutaneous Melanoma AJCC v8 7 237624 -NCIT:C137648 Clinical Stage I Cutaneous Melanoma AJCC v8 7 237625 -NCIT:C137649 Clinical Stage IA Cutaneous Melanoma AJCC v8 8 237626 -NCIT:C137650 Clinical Stage IB Cutaneous Melanoma AJCC v8 8 237627 -NCIT:C137651 Clinical Stage II Cutaneous Melanoma AJCC v8 7 237628 -NCIT:C137652 Clinical Stage IIA Cutaneous Melanoma AJCC v8 8 237629 -NCIT:C137653 Clinical Stage IIB Cutaneous Melanoma AJCC v8 8 237630 -NCIT:C137654 Clinical Stage IIC Cutaneous Melanoma AJCC v8 8 237631 -NCIT:C137655 Clinical Stage III Cutaneous Melanoma AJCC v8 7 237632 -NCIT:C137656 Clinical Stage IV Cutaneous Melanoma AJCC v8 7 237633 -NCIT:C137657 Cutaneous Melanoma by AJCC v8 Pathologic Stage 6 237634 -NCIT:C137662 Pathologic Stage 0 Cutaneous Melanoma AJCC v8 7 237635 -NCIT:C137663 Pathologic Stage I Cutaneous Melanoma AJCC v8 7 237636 -NCIT:C137664 Pathologic Stage IA Cutaneous Melanoma AJCC v8 8 237637 -NCIT:C137665 Pathologic Stage IB Cutaneous Melanoma AJCC v8 8 237638 -NCIT:C137666 Pathologic Stage II Cutaneous Melanoma AJCC v8 7 237639 -NCIT:C137667 Pathologic Stage IIA Cutaneous Melanoma AJCC v8 8 237640 -NCIT:C137668 Pathologic Stage IIB Cutaneous Melanoma AJCC v8 8 237641 -NCIT:C137669 Pathologic Stage IIC Cutaneous Melanoma AJCC v8 8 237642 -NCIT:C137670 Pathologic Stage III Cutaneous Melanoma AJCC v8 7 237643 -NCIT:C137671 Pathologic Stage IIIA Cutaneous Melanoma AJCC v8 8 237644 -NCIT:C137672 Pathologic Stage IIIB Cutaneous Melanoma AJCC v8 8 237645 -NCIT:C137673 Pathologic Stage IIIC Cutaneous Melanoma AJCC v8 8 237646 -NCIT:C137675 Pathologic Stage IIID Cutaneous Melanoma AJCC v8 8 237647 -NCIT:C137677 Pathologic Stage IV Cutaneous Melanoma AJCC v8 7 237648 -NCIT:C148245 Unresectable Cutaneous Melanoma 5 237649 -NCIT:C165535 Unresectable Acral Lentiginous Melanoma 6 237650 -NCIT:C150544 Refractory Cutaneous Melanoma 5 237651 -NCIT:C155305 Cutaneous Melanoma of the Extremity 5 237652 -NCIT:C155306 Recurrent Cutaneous Melanoma of the Extremity 6 237653 -NCIT:C175435 Recurrent Acral Lentiginous Melanoma 7 237654 -NCIT:C155311 Advanced Cutaneous Melanoma of the Extremity 6 237655 -NCIT:C4022 Acral Lentiginous Melanoma 6 237656 -NCIT:C165535 Unresectable Acral Lentiginous Melanoma 7 237657 -NCIT:C175435 Recurrent Acral Lentiginous Melanoma 7 237658 -NCIT:C179427 Metastatic Acral Lentiginous Melanoma 7 237659 -NCIT:C8781 Stage I Acral Lentiginous Melanoma AJCC v7 7 237660 -NCIT:C8782 Stage II Acral Lentiginous Melanoma AJCC v6 and v7 7 237661 -NCIT:C8783 Stage III Acral Lentiginous Melanoma AJCC v7 7 237662 -NCIT:C8784 Stage IV Acral Lentiginous Melanoma AJCC v6 and v7 7 237663 -NCIT:C156072 Metastatic Cutaneous Melanoma 5 237664 -NCIT:C171285 Locally Advanced Cutaneous Melanoma 6 237665 -NCIT:C171572 Advanced Cutaneous Melanoma 6 237666 -NCIT:C155311 Advanced Cutaneous Melanoma of the Extremity 7 237667 -NCIT:C179427 Metastatic Acral Lentiginous Melanoma 6 237668 -NCIT:C165497 Spitz Melanoma 5 237669 -NCIT:C165659 High-CSD Melanoma 5 237670 -NCIT:C37257 Desmoplastic Melanoma 6 237671 -NCIT:C48614 Desmoplastic Neurotropic Melanoma 7 237672 -NCIT:C9151 Lentigo Maligna Melanoma 6 237673 -NCIT:C8785 Recurrent Lentigo Maligna Melanoma 7 237674 -NCIT:C8786 Stage I Lentigo Maligna Melanoma AJCC v7 7 237675 -NCIT:C8787 Stage II Lentigo Maligna Melanoma AJCC v6 and v7 7 237676 -NCIT:C8788 Stage III Lentigo Maligna Melanoma AJCC v7 7 237677 -NCIT:C8789 Stage IV Lentigo Maligna Melanoma AJCC v6 and v7 7 237678 -NCIT:C178518 Penile Cutaneous Melanoma 5 237679 -NCIT:C190240 Resectable Cutaneous Melanoma 5 237680 -NCIT:C190280 Childhood Cutaneous Melanoma 5 237681 -NCIT:C27919 Old Burn Scar-Related Cutaneous Melanoma 5 237682 -NCIT:C27920 Solar Radiation-Related Cutaneous Melanoma 5 237683 -NCIT:C4225 Cutaneous Nodular Melanoma 5 237684 -NCIT:C4227 Balloon Cell Melanoma 5 237685 -NCIT:C4232 Melanoma in Junctional Nevus 5 237686 -NCIT:C4240 Melanoma Arising from Blue Nevus 5 237687 -NCIT:C4633 Amelanotic Cutaneous Melanoma 5 237688 -NCIT:C48607 Invasive Cutaneous Melanoma 5 237689 -NCIT:C48612 Minimal Deviation Melanoma 5 237690 -NCIT:C48613 Melanoma in Congenital Melanocytic Nevus 5 237691 -NCIT:C4235 Melanoma Arising in Giant Congenital Nevus 6 237692 -NCIT:C54662 Nevoid Melanoma 5 237693 -NCIT:C54663 Signet Ring Melanoma 5 237694 -NCIT:C66753 Malignant Melanoma in Precancerous Melanosis 5 237695 -NCIT:C7089 Regressing Cutaneous Melanoma 5 237696 -NCIT:C7361 Scrotal Melanoma 5 237697 -NCIT:C8498 Hereditary Melanoma 5 237698 -NCIT:C128801 Cutaneous Malignant Melanoma 2 6 237699 -NCIT:C90514 Cutaneous Melanoma by AJCC v6 Stage 5 237700 -NCIT:C7916 Stage I Cutaneous Melanoma AJCC v6 6 237701 -NCIT:C7917 Stage II Cutaneous Melanoma AJCC v6 and v7 6 237702 -NCIT:C27742 Stage IIB Cutaneous Melanoma AJCC v6 and v7 7 237703 -NCIT:C86033 Stage IIA Cutaneous Melanoma AJCC v6 and v7 7 237704 -NCIT:C86034 Stage IIC Cutaneous Melanoma AJCC v6 and v7 7 237705 -NCIT:C8782 Stage II Acral Lentiginous Melanoma AJCC v6 and v7 7 237706 -NCIT:C8787 Stage II Lentigo Maligna Melanoma AJCC v6 and v7 7 237707 -NCIT:C8791 Stage II Low-CSD Melanoma AJCC v7 7 237708 -NCIT:C7918 Stage III Cutaneous Melanoma AJCC v6 6 237709 -NCIT:C8423 Stage 0 Cutaneous Melanoma AJCC v6 and v7 6 237710 -NCIT:C43372 Lentigo Maligna 7 237711 -NCIT:C9096 Stage IV Cutaneous Melanoma AJCC v6 and v7 6 237712 -NCIT:C8784 Stage IV Acral Lentiginous Melanoma AJCC v6 and v7 7 237713 -NCIT:C8789 Stage IV Lentigo Maligna Melanoma AJCC v6 and v7 7 237714 -NCIT:C8793 Stage IV Low-CSD Melanoma AJCC v7 7 237715 -NCIT:C9097 Recurrent Cutaneous Melanoma 5 237716 -NCIT:C155306 Recurrent Cutaneous Melanoma of the Extremity 6 237717 -NCIT:C175435 Recurrent Acral Lentiginous Melanoma 7 237718 -NCIT:C8785 Recurrent Lentigo Maligna Melanoma 6 237719 -NCIT:C91231 Cutaneous Melanoma by AJCC v7 Stage 5 237720 -NCIT:C7917 Stage II Cutaneous Melanoma AJCC v6 and v7 6 237721 -NCIT:C27742 Stage IIB Cutaneous Melanoma AJCC v6 and v7 7 237722 -NCIT:C86033 Stage IIA Cutaneous Melanoma AJCC v6 and v7 7 237723 -NCIT:C86034 Stage IIC Cutaneous Melanoma AJCC v6 and v7 7 237724 -NCIT:C8782 Stage II Acral Lentiginous Melanoma AJCC v6 and v7 7 237725 -NCIT:C8787 Stage II Lentigo Maligna Melanoma AJCC v6 and v7 7 237726 -NCIT:C8791 Stage II Low-CSD Melanoma AJCC v7 7 237727 -NCIT:C8423 Stage 0 Cutaneous Melanoma AJCC v6 and v7 6 237728 -NCIT:C43372 Lentigo Maligna 7 237729 -NCIT:C88414 Stage I Cutaneous Melanoma AJCC v7 6 237730 -NCIT:C86026 Stage IA Cutaneous Melanoma AJCC v7 7 237731 -NCIT:C86030 Stage IB Cutaneous Melanoma AJCC v7 7 237732 -NCIT:C8781 Stage I Acral Lentiginous Melanoma AJCC v7 7 237733 -NCIT:C8786 Stage I Lentigo Maligna Melanoma AJCC v7 7 237734 -NCIT:C8790 Stage I Low-CSD Melanoma AJCC v7 7 237735 -NCIT:C88415 Stage III Cutaneous Melanoma AJCC v7 6 237736 -NCIT:C86049 Stage IIIA Cutaneous Melanoma AJCC v7 7 237737 -NCIT:C86051 Stage IIIB Cutaneous Melanoma AJCC v7 7 237738 -NCIT:C86053 Stage IIIC Cutaneous Melanoma AJCC v7 7 237739 -NCIT:C8783 Stage III Acral Lentiginous Melanoma AJCC v7 7 237740 -NCIT:C8788 Stage III Lentigo Maligna Melanoma AJCC v7 7 237741 -NCIT:C8792 Stage III Low-CSD Melanoma AJCC v7 7 237742 -NCIT:C9096 Stage IV Cutaneous Melanoma AJCC v6 and v7 6 237743 -NCIT:C8784 Stage IV Acral Lentiginous Melanoma AJCC v6 and v7 7 237744 -NCIT:C8789 Stage IV Lentigo Maligna Melanoma AJCC v6 and v7 7 237745 -NCIT:C8793 Stage IV Low-CSD Melanoma AJCC v7 7 237746 -NCIT:C9152 Low-CSD Melanoma 5 237747 -NCIT:C8790 Stage I Low-CSD Melanoma AJCC v7 6 237748 -NCIT:C8791 Stage II Low-CSD Melanoma AJCC v7 6 237749 -NCIT:C8792 Stage III Low-CSD Melanoma AJCC v7 6 237750 -NCIT:C8793 Stage IV Low-CSD Melanoma AJCC v7 6 237751 -NCIT:C3560 Malignant Scrotal Neoplasm 4 237752 -NCIT:C156283 Scrotal Sarcoma 5 237753 -NCIT:C156282 Scrotal Liposarcoma 6 237754 -NCIT:C179464 Recurrent Malignant Scrotal Neoplasm 5 237755 -NCIT:C6389 Scrotal Carcinoma 5 237756 -NCIT:C4643 Scrotal Squamous Cell Carcinoma 6 237757 -NCIT:C6386 Scrotal Basal Cell Carcinoma 6 237758 -NCIT:C7728 Scrotal Paget Disease 6 237759 -NCIT:C7361 Scrotal Melanoma 5 237760 -NCIT:C45238 Cutaneous Precursor Lymphoid Neoplasm 4 237761 -NCIT:C45241 Cutaneous B Lymphoblastic Leukemia/Lymphoma 5 237762 -NCIT:C45242 Cutaneous T Lymphoblastic Leukemia/Lymphoma 5 237763 -NCIT:C5631 Aleukemic Acute Lymphoblastic Leukemia Cutis 5 237764 -NCIT:C4573 Malignant Skin Appendage Neoplasm 4 237765 -NCIT:C3775 Adnexal Carcinoma 5 237766 -NCIT:C167341 Adnexal Adenocarcinoma, Not Otherwise Specified 6 237767 -NCIT:C167366 Adnexal Cribriform Carcinoma 6 237768 -NCIT:C167368 Adnexal Secretory Carcinoma 6 237769 -NCIT:C167369 Signet Ring Cell/Histiocytoid Carcinoma 6 237770 -NCIT:C167381 Trichoblastic Carcinoma 6 237771 -NCIT:C40310 Sebaceous Carcinoma 6 237772 -NCIT:C160978 Head and Neck Sebaceous Carcinoma 7 237773 -NCIT:C173648 Salivary Gland Sebaceous Carcinoma 8 237774 -NCIT:C40369 Breast Sebaceous Carcinoma 7 237775 -NCIT:C43340 Eye Sebaceous Carcinoma 7 237776 -NCIT:C134831 Eyelid Sebaceous Gland Carcinoma 8 237777 -NCIT:C174404 Conjunctival Sebaceous Carcinoma 8 237778 -NCIT:C43341 Extraocular Cutaneous Sebaceous Carcinoma 7 237779 -NCIT:C40309 Vulvar Sebaceous Carcinoma 8 237780 -NCIT:C4114 Pilomatrical Carcinoma 6 237781 -NCIT:C43326 Trichilemmal Carcinoma 6 237782 -NCIT:C6938 Sweat Gland Carcinoma 6 237783 -NCIT:C128164 Vulvar Adenocarcinoma of Sweat Gland Origin 7 237784 -NCIT:C4027 Vulvar Paget Disease 8 237785 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 8 237786 -NCIT:C40306 Vulvar Porocarcinoma 9 237787 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 8 237788 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 8 237789 -NCIT:C167344 Spiradenocylindrocarcinoma 7 237790 -NCIT:C167364 Endocrine Mucin-Producing Sweat Gland Carcinoma 7 237791 -NCIT:C167365 Syringocystadenocarcinoma Papilliferum 7 237792 -NCIT:C27255 Eccrine Carcinoma 7 237793 -NCIT:C27254 Papillary Eccrine Carcinoma 8 237794 -NCIT:C27534 Digital Papillary Adenocarcinoma 9 237795 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 8 237796 -NCIT:C40306 Vulvar Porocarcinoma 9 237797 -NCIT:C43345 Ductal Eccrine Adenocarcinoma 8 237798 -NCIT:C43346 Ductal Eccrine Carcinoma with Spindle Cell Elements 9 237799 -NCIT:C43347 Squamoid Eccrine Ductal Carcinoma 9 237800 -NCIT:C43349 Ductal Eccrine Carcinoma with Abundant Fibromyxoid Stroma 9 237801 -NCIT:C5560 Porocarcinoma 8 237802 -NCIT:C40306 Vulvar Porocarcinoma 9 237803 -NCIT:C43354 Porocarcinoma In Situ 9 237804 -NCIT:C27533 Primary Cutaneous Mucinous Carcinoma 7 237805 -NCIT:C3682 Sweat Gland Tubular Carcinoma 7 237806 -NCIT:C4169 Apocrine Carcinoma 7 237807 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 8 237808 -NCIT:C4176 Ceruminous Adenocarcinoma 8 237809 -NCIT:C5141 Breast Apocrine Carcinoma 8 237810 -NCIT:C5140 Breast Apocrine Carcinoma In Situ 9 237811 -NCIT:C5457 Invasive Breast Apocrine Carcinoma 9 237812 -NCIT:C43344 Cylindrocarcinoma 7 237813 -NCIT:C4471 Adenoid Cystic Skin Carcinoma 7 237814 -NCIT:C4472 Mucoepidermoid Skin Carcinoma 7 237815 -NCIT:C5117 Spiradenocarcinoma 7 237816 -NCIT:C5180 Malignant Breast Spiradenoma 8 237817 -NCIT:C54664 Hidradenocarcinoma 7 237818 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 8 237819 -NCIT:C7581 Microcystic Adnexal Carcinoma 7 237820 -NCIT:C43310 Malignant Hair Follicle Neoplasm 5 237821 -NCIT:C43316 Malignant Outer Hair Sheath and Infundibulum Neoplasm 6 237822 -NCIT:C167381 Trichoblastic Carcinoma 7 237823 -NCIT:C167382 Trichoblastic Carcinosarcoma 7 237824 -NCIT:C43326 Trichilemmal Carcinoma 7 237825 -NCIT:C43327 Malignant Proliferating Pilar Tumor 7 237826 -NCIT:C43321 Malignant Germinative Follicular Epithelium Neoplasm 6 237827 -NCIT:C4114 Pilomatrical Carcinoma 7 237828 -NCIT:C4810 Malignant Sweat Gland Neoplasm 5 237829 -NCIT:C167346 Malignant Mixed Tumor of the Skin 6 237830 -NCIT:C40304 Malignant Vulvar Sweat Gland Neoplasm 6 237831 -NCIT:C128164 Vulvar Adenocarcinoma of Sweat Gland Origin 7 237832 -NCIT:C4027 Vulvar Paget Disease 8 237833 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 8 237834 -NCIT:C40306 Vulvar Porocarcinoma 9 237835 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 8 237836 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 8 237837 -NCIT:C5559 Malignant Eccrine Neoplasm 6 237838 -NCIT:C27255 Eccrine Carcinoma 7 237839 -NCIT:C27254 Papillary Eccrine Carcinoma 8 237840 -NCIT:C27534 Digital Papillary Adenocarcinoma 9 237841 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 8 237842 -NCIT:C40306 Vulvar Porocarcinoma 9 237843 -NCIT:C43345 Ductal Eccrine Adenocarcinoma 8 237844 -NCIT:C43346 Ductal Eccrine Carcinoma with Spindle Cell Elements 9 237845 -NCIT:C43347 Squamoid Eccrine Ductal Carcinoma 9 237846 -NCIT:C43349 Ductal Eccrine Carcinoma with Abundant Fibromyxoid Stroma 9 237847 -NCIT:C5560 Porocarcinoma 8 237848 -NCIT:C40306 Vulvar Porocarcinoma 9 237849 -NCIT:C43354 Porocarcinoma In Situ 9 237850 -NCIT:C6800 Malignant Apocrine Neoplasm 6 237851 -NCIT:C4169 Apocrine Carcinoma 7 237852 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 8 237853 -NCIT:C4176 Ceruminous Adenocarcinoma 8 237854 -NCIT:C5141 Breast Apocrine Carcinoma 8 237855 -NCIT:C5140 Breast Apocrine Carcinoma In Situ 9 237856 -NCIT:C5457 Invasive Breast Apocrine Carcinoma 9 237857 -NCIT:C6938 Sweat Gland Carcinoma 6 237858 -NCIT:C128164 Vulvar Adenocarcinoma of Sweat Gland Origin 7 237859 -NCIT:C4027 Vulvar Paget Disease 8 237860 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 8 237861 -NCIT:C40306 Vulvar Porocarcinoma 9 237862 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 8 237863 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 8 237864 -NCIT:C167344 Spiradenocylindrocarcinoma 7 237865 -NCIT:C167364 Endocrine Mucin-Producing Sweat Gland Carcinoma 7 237866 -NCIT:C167365 Syringocystadenocarcinoma Papilliferum 7 237867 -NCIT:C27255 Eccrine Carcinoma 7 237868 -NCIT:C27254 Papillary Eccrine Carcinoma 8 237869 -NCIT:C27534 Digital Papillary Adenocarcinoma 9 237870 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 8 237871 -NCIT:C40306 Vulvar Porocarcinoma 9 237872 -NCIT:C43345 Ductal Eccrine Adenocarcinoma 8 237873 -NCIT:C43346 Ductal Eccrine Carcinoma with Spindle Cell Elements 9 237874 -NCIT:C43347 Squamoid Eccrine Ductal Carcinoma 9 237875 -NCIT:C43349 Ductal Eccrine Carcinoma with Abundant Fibromyxoid Stroma 9 237876 -NCIT:C5560 Porocarcinoma 8 237877 -NCIT:C40306 Vulvar Porocarcinoma 9 237878 -NCIT:C43354 Porocarcinoma In Situ 9 237879 -NCIT:C27533 Primary Cutaneous Mucinous Carcinoma 7 237880 -NCIT:C3682 Sweat Gland Tubular Carcinoma 7 237881 -NCIT:C4169 Apocrine Carcinoma 7 237882 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 8 237883 -NCIT:C4176 Ceruminous Adenocarcinoma 8 237884 -NCIT:C5141 Breast Apocrine Carcinoma 8 237885 -NCIT:C5140 Breast Apocrine Carcinoma In Situ 9 237886 -NCIT:C5457 Invasive Breast Apocrine Carcinoma 9 237887 -NCIT:C43344 Cylindrocarcinoma 7 237888 -NCIT:C4471 Adenoid Cystic Skin Carcinoma 7 237889 -NCIT:C4472 Mucoepidermoid Skin Carcinoma 7 237890 -NCIT:C5117 Spiradenocarcinoma 7 237891 -NCIT:C5180 Malignant Breast Spiradenoma 8 237892 -NCIT:C54664 Hidradenocarcinoma 7 237893 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 8 237894 -NCIT:C7581 Microcystic Adnexal Carcinoma 7 237895 -NCIT:C8409 Malignant Sebaceous Neoplasm 5 237896 -NCIT:C40310 Sebaceous Carcinoma 6 237897 -NCIT:C160978 Head and Neck Sebaceous Carcinoma 7 237898 -NCIT:C173648 Salivary Gland Sebaceous Carcinoma 8 237899 -NCIT:C40369 Breast Sebaceous Carcinoma 7 237900 -NCIT:C43340 Eye Sebaceous Carcinoma 7 237901 -NCIT:C134831 Eyelid Sebaceous Gland Carcinoma 8 237902 -NCIT:C174404 Conjunctival Sebaceous Carcinoma 8 237903 -NCIT:C43341 Extraocular Cutaneous Sebaceous Carcinoma 7 237904 -NCIT:C40309 Vulvar Sebaceous Carcinoma 8 237905 -NCIT:C4574 Malignant Dermal Neoplasm 4 237906 -NCIT:C172624 Malignant Peripheral Nerve Sheath Tumor of the Skin 5 237907 -NCIT:C172625 Epithelioid Malignant Peripheral Nerve Sheath Tumor of the Skin 6 237908 -NCIT:C27529 Malignant Skin Vascular Neoplasm 5 237909 -NCIT:C3550 Skin Kaposi Sarcoma 6 237910 -NCIT:C9112 Classic Kaposi Sarcoma 7 237911 -NCIT:C4489 Skin Angiosarcoma 6 237912 -NCIT:C153626 Recurrent Skin Angiosarcoma 7 237913 -NCIT:C27719 Skin Radiation-Related Angiosarcoma 7 237914 -NCIT:C40379 Angiosarcoma of the Skin of the Arm after Radical Mastectomy followed by Lymphedema 7 237915 -NCIT:C4490 Skin Lymphangiosarcoma 6 237916 -NCIT:C5585 Skin Sarcoma 5 237917 -NCIT:C172632 Skin Myxofibrosarcoma 6 237918 -NCIT:C172634 Skin Ewing Sarcoma 6 237919 -NCIT:C3550 Skin Kaposi Sarcoma 6 237920 -NCIT:C9112 Classic Kaposi Sarcoma 7 237921 -NCIT:C4489 Skin Angiosarcoma 6 237922 -NCIT:C153626 Recurrent Skin Angiosarcoma 7 237923 -NCIT:C27719 Skin Radiation-Related Angiosarcoma 7 237924 -NCIT:C40379 Angiosarcoma of the Skin of the Arm after Radical Mastectomy followed by Lymphedema 7 237925 -NCIT:C4490 Skin Lymphangiosarcoma 6 237926 -NCIT:C49025 Myxoinflammatory Fibroblastic Sarcoma 6 237927 -NCIT:C5576 Skin Undifferentiated Pleomorphic Sarcoma 6 237928 -NCIT:C5615 Skin Liposarcoma 6 237929 -NCIT:C170473 Skin Pleomorphic Liposarcoma 7 237930 -NCIT:C5614 Malignant Cutaneous Granular Cell Tumor 5 237931 -NCIT:C9231 Merkel Cell Carcinoma 5 237932 -NCIT:C115440 Recurrent Merkel Cell Carcinoma 6 237933 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 7 237934 -NCIT:C165740 Locally Recurrent Merkel Cell Carcinoma 7 237935 -NCIT:C128247 Vulvar Merkel Cell Carcinoma 6 237936 -NCIT:C136869 Merkel Cell Carcinoma by AJCC v7 Stage 6 237937 -NCIT:C85887 Stage 0 Merkel Cell Carcinoma AJCC v7 7 237938 -NCIT:C85889 Stage I Merkel Cell Carcinoma AJCC v7 7 237939 -NCIT:C85890 Stage IA Merkel Cell Carcinoma AJCC v7 8 237940 -NCIT:C85892 Stage IB Merkel Cell Carcinoma AJCC v7 8 237941 -NCIT:C85893 Stage II Merkel Cell Carcinoma AJCC v7 7 237942 -NCIT:C85894 Stage IIA Merkel Cell Carcinoma AJCC v7 8 237943 -NCIT:C85895 Stage IIB Merkel Cell Carcinoma AJCC v7 8 237944 -NCIT:C85896 Stage IIC Merkel Cell Carcinoma AJCC v7 8 237945 -NCIT:C85897 Stage III Merkel Cell Carcinoma AJCC v7 7 237946 -NCIT:C85898 Stage IIIA Merkel Cell Carcinoma AJCC v7 8 237947 -NCIT:C85899 Stage IIIB Merkel Cell Carcinoma AJCC v7 8 237948 -NCIT:C85900 Stage IV Merkel Cell Carcinoma AJCC v7 7 237949 -NCIT:C136870 Merkel Cell Carcinoma by AJCC v8 Stage 6 237950 -NCIT:C136871 Merkel Cell Carcinoma by AJCC v8 Clinical Stage 7 237951 -NCIT:C136872 Clinical Stage 0 Merkel Cell Carcinoma AJCC v8 8 237952 -NCIT:C136873 Clinical Stage I Merkel Cell Carcinoma AJCC v8 8 237953 -NCIT:C136874 Clinical Stage II Merkel Cell Carcinoma AJCC v8 8 237954 -NCIT:C136875 Clinical Stage IIA Merkel Cell Carcinoma AJCC v8 9 237955 -NCIT:C136876 Clinical Stage IIB Merkel Cell Carcinoma AJCC v8 9 237956 -NCIT:C136877 Clinical Stage III Merkel Cell Carcinoma AJCC v8 8 237957 -NCIT:C136878 Clinical Stage IV Merkel Cell Carcinoma AJCC v8 8 237958 -NCIT:C136880 Merkel Cell Carcinoma by AJCC v8 Pathologic Stage 7 237959 -NCIT:C136881 Pathologic Stage 0 Merkel Cell Carcinoma AJCC v8 8 237960 -NCIT:C136882 Pathologic Stage I Merkel Cell Carcinoma AJCC v8 8 237961 -NCIT:C136883 Pathologic Stage II Merkel Cell Carcinoma AJCC v8 8 237962 -NCIT:C136884 Pathologic Stage IIA Merkel Cell Carcinoma AJCC v8 9 237963 -NCIT:C136885 Pathologic Stage IIB Merkel Cell Carcinoma AJCC v8 9 237964 -NCIT:C136886 Pathologic Stage III Merkel Cell Carcinoma AJCC v8 8 237965 -NCIT:C136887 Pathologic Stage IIIA Merkel Cell Carcinoma AJCC v8 9 237966 -NCIT:C136888 Pathologic Stage IIIB Merkel Cell Carcinoma AJCC v8 9 237967 -NCIT:C136889 Pathologic Stage IV Merkel Cell Carcinoma AJCC v8 8 237968 -NCIT:C162572 Metastatic Merkel Cell Carcinoma 6 237969 -NCIT:C165300 Advanced Merkel Cell Carcinoma 7 237970 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 7 237971 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 7 237972 -NCIT:C162786 Unresectable Merkel Cell Carcinoma 6 237973 -NCIT:C165741 Refractory Merkel Cell Carcinoma 6 237974 -NCIT:C4914 Skin Carcinoma 4 237975 -NCIT:C157324 Unresectable Skin Carcinoma 5 237976 -NCIT:C157320 Unresectable Skin Squamous Cell Carcinoma 6 237977 -NCIT:C157331 Unresectable Skin Basal Cell Carcinoma 6 237978 -NCIT:C162786 Unresectable Merkel Cell Carcinoma 6 237979 -NCIT:C170465 Resectable Skin Carcinoma 5 237980 -NCIT:C170464 Resectable Skin Squamous Cell Carcinoma 6 237981 -NCIT:C162943 Resectable Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 237982 -NCIT:C2921 Skin Basal Cell Carcinoma 5 237983 -NCIT:C157331 Unresectable Skin Basal Cell Carcinoma 6 237984 -NCIT:C181159 Eyelid Basal Cell Carcinoma 6 237985 -NCIT:C27182 Skin Sclerosing/Morphoeic Basal Cell Carcinoma 6 237986 -NCIT:C27535 Skin Adenoid Basal Cell Carcinoma 6 237987 -NCIT:C27536 Skin Clear Cell Basal Cell Carcinoma 6 237988 -NCIT:C27537 Skin Cystic Basal Cell Carcinoma 6 237989 -NCIT:C27539 Skin Infiltrating Basal Cell Carcinoma 6 237990 -NCIT:C27540 Skin Infundibulocystic Basal Cell Carcinoma 6 237991 -NCIT:C27541 Skin Micronodular Basal Cell Carcinoma 6 237992 -NCIT:C2922 Skin Basosquamous Cell Carcinoma 6 237993 -NCIT:C38109 Skin Basal Cell Carcinoma with Adnexal Differentiation 6 237994 -NCIT:C27538 Skin Follicular Basal Cell Carcinoma 7 237995 -NCIT:C4346 Skin Basal Cell Carcinoma with Sebaceous Differentiation 7 237996 -NCIT:C38110 Skin Signet Ring Cell Basal Cell Carcinoma 6 237997 -NCIT:C38111 Skin Basal Cell Carcinoma with Sarcomatoid Differentiation 6 237998 -NCIT:C39961 Penile Basal Cell Carcinoma 6 237999 -NCIT:C4109 Skin Fibroepithelial Basal Cell Carcinoma 6 238000 -NCIT:C54665 Skin Keratotic Basal Cell Carcinoma 6 238001 -NCIT:C6082 External Ear Basal Cell Carcinoma 6 238002 -NCIT:C62282 Skin Nodular Basal Cell Carcinoma 6 238003 -NCIT:C5568 Skin Nodulo-Ulcerative Basal Cell Carcinoma 7 238004 -NCIT:C5616 Skin Nodular Solid Basal Cell Carcinoma 7 238005 -NCIT:C62284 Superficial Basal Cell Carcinoma 6 238006 -NCIT:C4108 Superficial Multifocal Basal Cell Carcinoma 7 238007 -NCIT:C6381 Vulvar Basal Cell Carcinoma 6 238008 -NCIT:C6386 Scrotal Basal Cell Carcinoma 6 238009 -NCIT:C66903 Skin Metatypical Carcinoma 6 238010 -NCIT:C7473 Anal Margin Basal Cell Carcinoma 6 238011 -NCIT:C7585 Skin Adamantinoid Basal Cell Carcinoma 6 238012 -NCIT:C8014 Lip Basal Cell Carcinoma 6 238013 -NCIT:C5893 Stage 0 Lip Basal Cell Carcinoma AJCC v6 and v7 7 238014 -NCIT:C8197 Stage I Lip Basal Cell Carcinoma 7 238015 -NCIT:C8201 Stage II Lip Basal Cell Carcinoma 7 238016 -NCIT:C8205 Stage III Lip Basal Cell Carcinoma 7 238017 -NCIT:C8209 Stage IV Lip Basal Cell Carcinoma 7 238018 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 8 238019 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 8 238020 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 8 238021 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 7 238022 -NCIT:C9359 Skin Pigmented Basal Cell Carcinoma 6 238023 -NCIT:C3640 Stage 0 Skin Cancer 5 238024 -NCIT:C2906 Skin Squamous Cell Carcinoma In Situ 6 238025 -NCIT:C62571 Bowen Disease of the Skin 7 238026 -NCIT:C5893 Stage 0 Lip Basal Cell Carcinoma AJCC v6 and v7 6 238027 -NCIT:C3775 Adnexal Carcinoma 5 238028 -NCIT:C167341 Adnexal Adenocarcinoma, Not Otherwise Specified 6 238029 -NCIT:C167366 Adnexal Cribriform Carcinoma 6 238030 -NCIT:C167368 Adnexal Secretory Carcinoma 6 238031 -NCIT:C167369 Signet Ring Cell/Histiocytoid Carcinoma 6 238032 -NCIT:C167381 Trichoblastic Carcinoma 6 238033 -NCIT:C40310 Sebaceous Carcinoma 6 238034 -NCIT:C160978 Head and Neck Sebaceous Carcinoma 7 238035 -NCIT:C173648 Salivary Gland Sebaceous Carcinoma 8 238036 -NCIT:C40369 Breast Sebaceous Carcinoma 7 238037 -NCIT:C43340 Eye Sebaceous Carcinoma 7 238038 -NCIT:C134831 Eyelid Sebaceous Gland Carcinoma 8 238039 -NCIT:C174404 Conjunctival Sebaceous Carcinoma 8 238040 -NCIT:C43341 Extraocular Cutaneous Sebaceous Carcinoma 7 238041 -NCIT:C40309 Vulvar Sebaceous Carcinoma 8 238042 -NCIT:C4114 Pilomatrical Carcinoma 6 238043 -NCIT:C43326 Trichilemmal Carcinoma 6 238044 -NCIT:C6938 Sweat Gland Carcinoma 6 238045 -NCIT:C128164 Vulvar Adenocarcinoma of Sweat Gland Origin 7 238046 -NCIT:C4027 Vulvar Paget Disease 8 238047 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 8 238048 -NCIT:C40306 Vulvar Porocarcinoma 9 238049 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 8 238050 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 8 238051 -NCIT:C167344 Spiradenocylindrocarcinoma 7 238052 -NCIT:C167364 Endocrine Mucin-Producing Sweat Gland Carcinoma 7 238053 -NCIT:C167365 Syringocystadenocarcinoma Papilliferum 7 238054 -NCIT:C27255 Eccrine Carcinoma 7 238055 -NCIT:C27254 Papillary Eccrine Carcinoma 8 238056 -NCIT:C27534 Digital Papillary Adenocarcinoma 9 238057 -NCIT:C40305 Vulvar Eccrine Adenocarcinoma 8 238058 -NCIT:C40306 Vulvar Porocarcinoma 9 238059 -NCIT:C43345 Ductal Eccrine Adenocarcinoma 8 238060 -NCIT:C43346 Ductal Eccrine Carcinoma with Spindle Cell Elements 9 238061 -NCIT:C43347 Squamoid Eccrine Ductal Carcinoma 9 238062 -NCIT:C43349 Ductal Eccrine Carcinoma with Abundant Fibromyxoid Stroma 9 238063 -NCIT:C5560 Porocarcinoma 8 238064 -NCIT:C40306 Vulvar Porocarcinoma 9 238065 -NCIT:C43354 Porocarcinoma In Situ 9 238066 -NCIT:C27533 Primary Cutaneous Mucinous Carcinoma 7 238067 -NCIT:C3682 Sweat Gland Tubular Carcinoma 7 238068 -NCIT:C4169 Apocrine Carcinoma 7 238069 -NCIT:C40308 Vulvar Apocrine Adenocarcinoma 8 238070 -NCIT:C4176 Ceruminous Adenocarcinoma 8 238071 -NCIT:C5141 Breast Apocrine Carcinoma 8 238072 -NCIT:C5140 Breast Apocrine Carcinoma In Situ 9 238073 -NCIT:C5457 Invasive Breast Apocrine Carcinoma 9 238074 -NCIT:C43344 Cylindrocarcinoma 7 238075 -NCIT:C4471 Adenoid Cystic Skin Carcinoma 7 238076 -NCIT:C4472 Mucoepidermoid Skin Carcinoma 7 238077 -NCIT:C5117 Spiradenocarcinoma 7 238078 -NCIT:C5180 Malignant Breast Spiradenoma 8 238079 -NCIT:C54664 Hidradenocarcinoma 7 238080 -NCIT:C40307 Vulvar Clear Cell Hidradenocarcinoma 8 238081 -NCIT:C7581 Microcystic Adnexal Carcinoma 7 238082 -NCIT:C4819 Skin Squamous Cell Carcinoma 5 238083 -NCIT:C133252 Cutaneous Squamous Cell Carcinoma of the Head and Neck 6 238084 -NCIT:C133253 Cutaneous Squamous Cell Carcinoma of the Head and Neck by AJCC v8 Stage 7 238085 -NCIT:C133255 Stage 0 Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 238086 -NCIT:C133256 Stage I Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 238087 -NCIT:C133257 Stage II Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 238088 -NCIT:C133258 Stage III Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 238089 -NCIT:C133259 Stage IV Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 238090 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 238091 -NCIT:C162943 Resectable Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 238092 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 238093 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 238094 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 238095 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 238096 -NCIT:C6083 External Ear Squamous Cell Carcinoma 7 238097 -NCIT:C143012 Recurrent Skin Squamous Cell Carcinoma 6 238098 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 238099 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 7 238100 -NCIT:C165737 Locally Recurrent Skin Squamous Cell Carcinoma 7 238101 -NCIT:C143013 Metastatic Skin Squamous Cell Carcinoma 6 238102 -NCIT:C153182 Locally Advanced Skin Squamous Cell Carcinoma 7 238103 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 238104 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 7 238105 -NCIT:C168542 Advanced Skin Squamous Cell Carcinoma 7 238106 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 238107 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 238108 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 238109 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 238110 -NCIT:C157320 Unresectable Skin Squamous Cell Carcinoma 6 238111 -NCIT:C160666 Hematologic Malignancy-Associated Skin Squamous Cell Carcinoma 6 238112 -NCIT:C165465 Skin Verrucous Carcinoma 6 238113 -NCIT:C6811 Plantar Verrucous Carcinoma 7 238114 -NCIT:C165466 Skin Squamous Cell Carcinoma with Osteoclast-Like Giant Cells 6 238115 -NCIT:C165467 Skin Lymphoepithelioma-Like Carcinoma 6 238116 -NCIT:C165468 Skin Squamous Cell Carcinoma with Sarcomatoid Differentiation 6 238117 -NCIT:C165735 Refractory Skin Squamous Cell Carcinoma 6 238118 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 238119 -NCIT:C170464 Resectable Skin Squamous Cell Carcinoma 6 238120 -NCIT:C162943 Resectable Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 238121 -NCIT:C27542 Skin Pseudovascular Squamous Cell Carcinoma 6 238122 -NCIT:C27543 Skin Basaloid Carcinoma 6 238123 -NCIT:C27636 Transplant-Related Skin Squamous Cell Carcinoma 6 238124 -NCIT:C27918 Old Burn Scar-Related Skin Squamous Cell Carcinoma 6 238125 -NCIT:C27921 Solar Radiation-Related Skin Squamous Cell Carcinoma 6 238126 -NCIT:C2906 Skin Squamous Cell Carcinoma In Situ 6 238127 -NCIT:C62571 Bowen Disease of the Skin 7 238128 -NCIT:C3146 Keratoacanthoma 6 238129 -NCIT:C128167 Vulvar Keratoacanthoma 7 238130 -NCIT:C174390 Conjunctival Keratoacanthoma 7 238131 -NCIT:C4459 Skin Clear Cell Squamous Cell Carcinoma 6 238132 -NCIT:C4460 Skin Acantholytic Squamous Cell Carcinoma 6 238133 -NCIT:C4643 Scrotal Squamous Cell Carcinoma 6 238134 -NCIT:C4666 Skin Spindle Cell Squamous Cell Carcinoma 6 238135 -NCIT:C6925 Anal Margin Squamous Cell Carcinoma 6 238136 -NCIT:C54250 Skin Adenosquamous Carcinoma 5 238137 -NCIT:C5581 Stage I Skin Cancer 5 238138 -NCIT:C8197 Stage I Lip Basal Cell Carcinoma 6 238139 -NCIT:C5582 Stage II Skin Cancer 5 238140 -NCIT:C8201 Stage II Lip Basal Cell Carcinoma 6 238141 -NCIT:C5583 Stage III Skin Cancer 5 238142 -NCIT:C8205 Stage III Lip Basal Cell Carcinoma 6 238143 -NCIT:C5584 Stage IV Skin Cancer 5 238144 -NCIT:C8209 Stage IV Lip Basal Cell Carcinoma 6 238145 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 7 238146 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 7 238147 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 7 238148 -NCIT:C6389 Scrotal Carcinoma 5 238149 -NCIT:C4643 Scrotal Squamous Cell Carcinoma 6 238150 -NCIT:C6386 Scrotal Basal Cell Carcinoma 6 238151 -NCIT:C7728 Scrotal Paget Disease 6 238152 -NCIT:C7472 Anal Margin Carcinoma 5 238153 -NCIT:C6925 Anal Margin Squamous Cell Carcinoma 6 238154 -NCIT:C7473 Anal Margin Basal Cell Carcinoma 6 238155 -NCIT:C7476 Anal Margin Paget Disease 6 238156 -NCIT:C7903 Recurrent Skin Carcinoma 5 238157 -NCIT:C115440 Recurrent Merkel Cell Carcinoma 6 238158 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 7 238159 -NCIT:C165740 Locally Recurrent Merkel Cell Carcinoma 7 238160 -NCIT:C143012 Recurrent Skin Squamous Cell Carcinoma 6 238161 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 238162 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 7 238163 -NCIT:C165737 Locally Recurrent Skin Squamous Cell Carcinoma 7 238164 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 6 238165 -NCIT:C9231 Merkel Cell Carcinoma 5 238166 -NCIT:C115440 Recurrent Merkel Cell Carcinoma 6 238167 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 7 238168 -NCIT:C165740 Locally Recurrent Merkel Cell Carcinoma 7 238169 -NCIT:C128247 Vulvar Merkel Cell Carcinoma 6 238170 -NCIT:C136869 Merkel Cell Carcinoma by AJCC v7 Stage 6 238171 -NCIT:C85887 Stage 0 Merkel Cell Carcinoma AJCC v7 7 238172 -NCIT:C85889 Stage I Merkel Cell Carcinoma AJCC v7 7 238173 -NCIT:C85890 Stage IA Merkel Cell Carcinoma AJCC v7 8 238174 -NCIT:C85892 Stage IB Merkel Cell Carcinoma AJCC v7 8 238175 -NCIT:C85893 Stage II Merkel Cell Carcinoma AJCC v7 7 238176 -NCIT:C85894 Stage IIA Merkel Cell Carcinoma AJCC v7 8 238177 -NCIT:C85895 Stage IIB Merkel Cell Carcinoma AJCC v7 8 238178 -NCIT:C85896 Stage IIC Merkel Cell Carcinoma AJCC v7 8 238179 -NCIT:C85897 Stage III Merkel Cell Carcinoma AJCC v7 7 238180 -NCIT:C85898 Stage IIIA Merkel Cell Carcinoma AJCC v7 8 238181 -NCIT:C85899 Stage IIIB Merkel Cell Carcinoma AJCC v7 8 238182 -NCIT:C85900 Stage IV Merkel Cell Carcinoma AJCC v7 7 238183 -NCIT:C136870 Merkel Cell Carcinoma by AJCC v8 Stage 6 238184 -NCIT:C136871 Merkel Cell Carcinoma by AJCC v8 Clinical Stage 7 238185 -NCIT:C136872 Clinical Stage 0 Merkel Cell Carcinoma AJCC v8 8 238186 -NCIT:C136873 Clinical Stage I Merkel Cell Carcinoma AJCC v8 8 238187 -NCIT:C136874 Clinical Stage II Merkel Cell Carcinoma AJCC v8 8 238188 -NCIT:C136875 Clinical Stage IIA Merkel Cell Carcinoma AJCC v8 9 238189 -NCIT:C136876 Clinical Stage IIB Merkel Cell Carcinoma AJCC v8 9 238190 -NCIT:C136877 Clinical Stage III Merkel Cell Carcinoma AJCC v8 8 238191 -NCIT:C136878 Clinical Stage IV Merkel Cell Carcinoma AJCC v8 8 238192 -NCIT:C136880 Merkel Cell Carcinoma by AJCC v8 Pathologic Stage 7 238193 -NCIT:C136881 Pathologic Stage 0 Merkel Cell Carcinoma AJCC v8 8 238194 -NCIT:C136882 Pathologic Stage I Merkel Cell Carcinoma AJCC v8 8 238195 -NCIT:C136883 Pathologic Stage II Merkel Cell Carcinoma AJCC v8 8 238196 -NCIT:C136884 Pathologic Stage IIA Merkel Cell Carcinoma AJCC v8 9 238197 -NCIT:C136885 Pathologic Stage IIB Merkel Cell Carcinoma AJCC v8 9 238198 -NCIT:C136886 Pathologic Stage III Merkel Cell Carcinoma AJCC v8 8 238199 -NCIT:C136887 Pathologic Stage IIIA Merkel Cell Carcinoma AJCC v8 9 238200 -NCIT:C136888 Pathologic Stage IIIB Merkel Cell Carcinoma AJCC v8 9 238201 -NCIT:C136889 Pathologic Stage IV Merkel Cell Carcinoma AJCC v8 8 238202 -NCIT:C162572 Metastatic Merkel Cell Carcinoma 6 238203 -NCIT:C165300 Advanced Merkel Cell Carcinoma 7 238204 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 7 238205 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 7 238206 -NCIT:C162786 Unresectable Merkel Cell Carcinoma 6 238207 -NCIT:C165741 Refractory Merkel Cell Carcinoma 6 238208 -NCIT:C5629 Metastatic Malignant Neoplasm in the Skin 4 238209 -NCIT:C185155 Extramedullary Disease in Plasma Cell Myeloma Involving the Skin 5 238210 -NCIT:C5628 Metastatic Carcinoma in the Skin 5 238211 -NCIT:C188113 Metastatic Squamous Cell Carcinoma in the Skin 6 238212 -NCIT:C28311 Metastatic Breast Carcinoma in the Skin 6 238213 -NCIT:C7203 Blastic Plasmacytoid Dendritic Cell Neoplasm 4 238214 -NCIT:C156103 Recurrent Blastic Plasmacytoid Dendritic Cell Neoplasm 5 238215 -NCIT:C156104 Refractory Blastic Plasmacytoid Dendritic Cell Neoplasm 5 238216 -NCIT:C88156 Leukemia Cutis 4 238217 -NCIT:C45264 Cutaneous Chronic Lymphocytic Leukemia 5 238218 -NCIT:C4983 Aleukemic Leukemia Cutis 5 238219 -NCIT:C5630 Aleukemic Monocytic Leukemia Cutis 6 238220 -NCIT:C5631 Aleukemic Acute Lymphoblastic Leukemia Cutis 6 238221 -NCIT:C2948 Choriocarcinoma 3 238222 -NCIT:C123844 Childhood Choriocarcinoma 4 238223 -NCIT:C6206 Childhood Central Nervous System Choriocarcinoma 5 238224 -NCIT:C6544 Childhood Testicular Choriocarcinoma 5 238225 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 5 238226 -NCIT:C4515 Ovarian Choriocarcinoma 4 238227 -NCIT:C39991 Non-Gestational Ovarian Choriocarcinoma 5 238228 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 6 238229 -NCIT:C40442 Ovarian Gestational Choriocarcinoma 5 238230 -NCIT:C8730 Stage I Ovarian Choriocarcinoma 5 238231 -NCIT:C8731 Stage II Ovarian Choriocarcinoma 5 238232 -NCIT:C8732 Stage III Ovarian Choriocarcinoma 5 238233 -NCIT:C8733 Stage IV Ovarian Choriocarcinoma 5 238234 -NCIT:C4646 Gestational Choriocarcinoma 4 238235 -NCIT:C27246 Uterine Corpus Choriocarcinoma 5 238236 -NCIT:C40442 Ovarian Gestational Choriocarcinoma 5 238237 -NCIT:C6278 Fallopian Tube Gestational Choriocarcinoma 5 238238 -NCIT:C8893 Placental Choriocarcinoma 5 238239 -NCIT:C5381 Pulmonary Artery Choriocarcinoma 4 238240 -NCIT:C6440 Mediastinal Choriocarcinoma 4 238241 -NCIT:C7012 Central Nervous System Choriocarcinoma 4 238242 -NCIT:C155806 Sellar Choriocarcinoma 5 238243 -NCIT:C5793 Adult Central Nervous System Choriocarcinoma 5 238244 -NCIT:C6206 Childhood Central Nervous System Choriocarcinoma 5 238245 -NCIT:C6759 Pineal Region Choriocarcinoma 5 238246 -NCIT:C7733 Testicular Choriocarcinoma 4 238247 -NCIT:C39935 Testicular Monophasic Choriocarcinoma 5 238248 -NCIT:C6544 Childhood Testicular Choriocarcinoma 5 238249 -NCIT:C8606 Stage II Testicular Choriocarcinoma AJCC v6 and v7 5 238250 -NCIT:C8900 Stage III Testicular Choriocarcinoma AJCC v6 and v7 5 238251 -NCIT:C8907 Stage I Testicular Choriocarcinoma AJCC v6 and v7 5 238252 -NCIT:C95749 Gastric Choriocarcinoma 4 238253 -NCIT:C3161 Leukemia 3 238254 -NCIT:C148425 Recurrent Leukemia 4 238255 -NCIT:C148429 Recurrent Acute Leukemia 5 238256 -NCIT:C142810 Recurrent Acute Lymphoblastic Leukemia 6 238257 -NCIT:C142811 Recurrent B Acute Lymphoblastic Leukemia 7 238258 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 238259 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 238260 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 238261 -NCIT:C150131 Recurrent T Acute Lymphoblastic Leukemia 7 238262 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 238263 -NCIT:C7784 Recurrent Childhood Acute Lymphoblastic Leukemia 7 238264 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 238265 -NCIT:C7883 Recurrent Adult Acute Lymphoblastic Leukemia 7 238266 -NCIT:C148427 Recurrent Acute Myeloid Leukemia 6 238267 -NCIT:C125715 Recurrent Acute Myeloid Leukemia with Myelodysplasia-Related Changes 7 238268 -NCIT:C156720 Recurrent Acute Myeloid Leukemia with Multilineage Dysplasia 8 238269 -NCIT:C156716 Recurrent Acute Myeloid Leukemia Not Otherwise Specified 7 238270 -NCIT:C156717 Recurrent Acute Myelomonocytic Leukemia 8 238271 -NCIT:C156722 Recurrent Acute Monoblastic and Monocytic Leukemia 8 238272 -NCIT:C156723 Recurrent Acute Erythroid Leukemia 8 238273 -NCIT:C156731 Recurrent Acute Megakaryoblastic Leukemia 8 238274 -NCIT:C156718 Recurrent Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 7 238275 -NCIT:C156719 Recurrent Acute Myeloid Leukemia with t (9;11) (p21.3; q23.3); MLLT3-MLL 8 238276 -NCIT:C169107 Recurrent Acute Promyelocytic Leukemia with PML-RARA 8 238277 -NCIT:C7882 Recurrent Adult Acute Myeloid Leukemia 7 238278 -NCIT:C9068 Recurrent Childhood Acute Myeloid Leukemia 7 238279 -NCIT:C151976 Recurrent Burkitt Leukemia 6 238280 -NCIT:C172626 Recurrent Acute Leukemia of Ambiguous Lineage 6 238281 -NCIT:C141446 Recurrent Acute Undifferentiated Leukemia 7 238282 -NCIT:C148423 Recurrent Mixed Phenotype Acute Leukemia 7 238283 -NCIT:C141445 Recurrent Acute Biphenotypic Leukemia 8 238284 -NCIT:C179204 Recurrent Acute Bilineal Leukemia 8 238285 -NCIT:C150043 Recurrent Chronic Leukemia 5 238286 -NCIT:C142882 Recurrent Hairy Cell Leukemia 6 238287 -NCIT:C150048 Recurrent Chronic Myelomonocytic Leukemia 6 238288 -NCIT:C150133 Recurrent T-Cell Prolymphocytic Leukemia 6 238289 -NCIT:C157692 Recurrent Aggressive NK-Cell Leukemia 6 238290 -NCIT:C158081 Recurrent B-Cell Prolymphocytic Leukemia 6 238291 -NCIT:C171065 Recurrent Hairy Cell Leukemia Variant 6 238292 -NCIT:C176999 Recurrent Sezary Syndrome 6 238293 -NCIT:C180985 Recurrent T-Cell Large Granular Lymphocyte Leukemia 6 238294 -NCIT:C8645 Recurrent Chronic Lymphocytic Leukemia 6 238295 -NCIT:C158151 Recurrent Transformed Chronic Lymphocytic Leukemia 7 238296 -NCIT:C9070 Recurrent Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 238297 -NCIT:C190786 Recurrent Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 5 238298 -NCIT:C148426 Refractory Leukemia 4 238299 -NCIT:C148431 Refractory Acute Leukemia 5 238300 -NCIT:C134319 Refractory Acute Myeloid Leukemia 6 238301 -NCIT:C174486 Refractory Acute Myeloid Leukemia Not Otherwise Specified 7 238302 -NCIT:C174511 Refractory Acute Monoblastic and Monocytic Leukemia 8 238303 -NCIT:C174512 Refractory Acute Myelomonocytic Leukemia 8 238304 -NCIT:C180897 Refractory Acute Myeloid Leukemia with Myelodysplasia-Related Changes 7 238305 -NCIT:C187449 Refractory Childhood Acute Myeloid Leukemia 7 238306 -NCIT:C136488 Refractory Acute Lymphoblastic Leukemia 6 238307 -NCIT:C122624 Refractory Childhood Acute Lymphoblastic Leukemia 7 238308 -NCIT:C126309 Refractory Adult Acute Lymphoblastic Leukemia 7 238309 -NCIT:C142812 Refractory B Acute Lymphoblastic Leukemia 7 238310 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 238311 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 238312 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 238313 -NCIT:C150510 Refractory T Acute Lymphoblastic Leukemia 7 238314 -NCIT:C151977 Refractory Burkitt Leukemia 6 238315 -NCIT:C172630 Refractory Acute Leukemia of Ambiguous Lineage 6 238316 -NCIT:C148430 Refractory Mixed Phenotype Acute Leukemia 7 238317 -NCIT:C173683 Refractory Acute Biphenotypic Leukemia 8 238318 -NCIT:C179205 Refractory Acute Bilineal Leukemia 8 238319 -NCIT:C173503 Refractory Acute Undifferentiated Leukemia 7 238320 -NCIT:C150044 Refractory Chronic Leukemia 5 238321 -NCIT:C150049 Refractory Chronic Myelomonocytic Leukemia 6 238322 -NCIT:C157691 Refractory T-Cell Prolymphocytic Leukemia 6 238323 -NCIT:C157693 Refractory Aggressive NK-Cell Leukemia 6 238324 -NCIT:C157697 Refractory B-Cell Prolymphocytic Leukemia 6 238325 -NCIT:C171064 Refractory Hairy Cell Leukemia Variant 6 238326 -NCIT:C177000 Refractory Sezary Syndrome 6 238327 -NCIT:C180986 Refractory T-Cell Large Granular Lymphocyte Leukemia 6 238328 -NCIT:C7885 Refractory Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 238329 -NCIT:C7886 Refractory Chronic Lymphocytic Leukemia 6 238330 -NCIT:C158152 Refractory Transformed Chronic Lymphocytic Leukemia 7 238331 -NCIT:C8030 Refractory Hairy Cell Leukemia 6 238332 -NCIT:C190787 Refractory Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 5 238333 -NCIT:C26814 Radiation-Related Leukemia 4 238334 -NCIT:C3169 Mast Cell Leukemia 4 238335 -NCIT:C188031 Mast Cell Leukemia Associated with Another Hematological Neoplasm 5 238336 -NCIT:C3172 Myeloid Leukemia 4 238337 -NCIT:C3171 Acute Myeloid Leukemia 5 238338 -NCIT:C122687 Cytogenetically Normal Acute Myeloid Leukemia 6 238339 -NCIT:C186730 Therapy-Related Cytogenetically Normal Acute Myeloid Leukemia 7 238340 -NCIT:C134319 Refractory Acute Myeloid Leukemia 6 238341 -NCIT:C174486 Refractory Acute Myeloid Leukemia Not Otherwise Specified 7 238342 -NCIT:C174511 Refractory Acute Monoblastic and Monocytic Leukemia 8 238343 -NCIT:C174512 Refractory Acute Myelomonocytic Leukemia 8 238344 -NCIT:C180897 Refractory Acute Myeloid Leukemia with Myelodysplasia-Related Changes 7 238345 -NCIT:C187449 Refractory Childhood Acute Myeloid Leukemia 7 238346 -NCIT:C148427 Recurrent Acute Myeloid Leukemia 6 238347 -NCIT:C125715 Recurrent Acute Myeloid Leukemia with Myelodysplasia-Related Changes 7 238348 -NCIT:C156720 Recurrent Acute Myeloid Leukemia with Multilineage Dysplasia 8 238349 -NCIT:C156716 Recurrent Acute Myeloid Leukemia Not Otherwise Specified 7 238350 -NCIT:C156717 Recurrent Acute Myelomonocytic Leukemia 8 238351 -NCIT:C156722 Recurrent Acute Monoblastic and Monocytic Leukemia 8 238352 -NCIT:C156723 Recurrent Acute Erythroid Leukemia 8 238353 -NCIT:C156731 Recurrent Acute Megakaryoblastic Leukemia 8 238354 -NCIT:C156718 Recurrent Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 7 238355 -NCIT:C156719 Recurrent Acute Myeloid Leukemia with t (9;11) (p21.3; q23.3); MLLT3-MLL 8 238356 -NCIT:C169107 Recurrent Acute Promyelocytic Leukemia with PML-RARA 8 238357 -NCIT:C7882 Recurrent Adult Acute Myeloid Leukemia 7 238358 -NCIT:C9068 Recurrent Childhood Acute Myeloid Leukemia 7 238359 -NCIT:C25765 Secondary Acute Myeloid Leukemia 6 238360 -NCIT:C172129 Acute Myeloid Leukemia Arising from Previous Myeloproliferative Neoplasm 7 238361 -NCIT:C172130 Acute Myeloid Leukemia Arising from Previous Myelodysplastic/Myeloproliferative Neoplasm 7 238362 -NCIT:C27931 Benzene-Related Acute Myeloid Leukemia 7 238363 -NCIT:C4037 Acute Myeloid Leukemia Arising from Previous Myelodysplastic Syndrome 7 238364 -NCIT:C8252 Therapy-Related Acute Myeloid Leukemia 7 238365 -NCIT:C186730 Therapy-Related Cytogenetically Normal Acute Myeloid Leukemia 8 238366 -NCIT:C27754 Alkylating Agent-Related Acute Myeloid Leukemia 8 238367 -NCIT:C27755 Topoisomerase II Inhibitor-Related Acute Myeloid Leukemia 8 238368 -NCIT:C27753 Acute Myeloid Leukemia Not Otherwise Specified 6 238369 -NCIT:C122625 Childhood Acute Myeloid Leukemia Not Otherwise Specified 7 238370 -NCIT:C7940 Childhood Acute Monoblastic and Monocytic Leukemia 8 238371 -NCIT:C9162 Childhood Acute Monoblastic Leukemia 9 238372 -NCIT:C9163 Childhood Acute Monocytic Leukemia 9 238373 -NCIT:C7970 Childhood Acute Myelomonocytic Leukemia 8 238374 -NCIT:C7971 Childhood Acute Basophilic Leukemia 8 238375 -NCIT:C7972 Childhood Acute Megakaryoblastic Leukemia 8 238376 -NCIT:C8304 Childhood Acute Myeloid Leukemia with Minimal Differentiation 8 238377 -NCIT:C9158 Childhood Acute Myeloid Leukemia without Maturation 8 238378 -NCIT:C9164 Childhood Acute Erythroid Leukemia 8 238379 -NCIT:C9381 Childhood Acute Myeloid Leukemia with Maturation 8 238380 -NCIT:C156716 Recurrent Acute Myeloid Leukemia Not Otherwise Specified 7 238381 -NCIT:C156717 Recurrent Acute Myelomonocytic Leukemia 8 238382 -NCIT:C156722 Recurrent Acute Monoblastic and Monocytic Leukemia 8 238383 -NCIT:C156723 Recurrent Acute Erythroid Leukemia 8 238384 -NCIT:C156731 Recurrent Acute Megakaryoblastic Leukemia 8 238385 -NCIT:C174486 Refractory Acute Myeloid Leukemia Not Otherwise Specified 7 238386 -NCIT:C174511 Refractory Acute Monoblastic and Monocytic Leukemia 8 238387 -NCIT:C174512 Refractory Acute Myelomonocytic Leukemia 8 238388 -NCIT:C3164 Acute Basophilic Leukemia 7 238389 -NCIT:C7964 Adult Acute Basophilic Leukemia 8 238390 -NCIT:C7971 Childhood Acute Basophilic Leukemia 8 238391 -NCIT:C3170 Acute Megakaryoblastic Leukemia 7 238392 -NCIT:C156731 Recurrent Acute Megakaryoblastic Leukemia 8 238393 -NCIT:C7965 Adult Acute Megakaryoblastic Leukemia 8 238394 -NCIT:C7972 Childhood Acute Megakaryoblastic Leukemia 8 238395 -NCIT:C3249 Acute Myeloid Leukemia without Maturation 7 238396 -NCIT:C9158 Childhood Acute Myeloid Leukemia without Maturation 8 238397 -NCIT:C9380 Adult Acute Myeloid Leukemia without Maturation 8 238398 -NCIT:C3250 Acute Myeloid Leukemia with Maturation 7 238399 -NCIT:C7961 Adult Acute Myeloid Leukemia with Maturation 8 238400 -NCIT:C9381 Childhood Acute Myeloid Leukemia with Maturation 8 238401 -NCIT:C4344 Acute Panmyelosis with Myelofibrosis 7 238402 -NCIT:C7318 Acute Monoblastic and Monocytic Leukemia 7 238403 -NCIT:C156722 Recurrent Acute Monoblastic and Monocytic Leukemia 8 238404 -NCIT:C174511 Refractory Acute Monoblastic and Monocytic Leukemia 8 238405 -NCIT:C4861 Acute Monocytic Leukemia 8 238406 -NCIT:C5630 Aleukemic Monocytic Leukemia Cutis 9 238407 -NCIT:C8263 Adult Acute Monocytic Leukemia 9 238408 -NCIT:C9163 Childhood Acute Monocytic Leukemia 9 238409 -NCIT:C7171 Acute Monoblastic Leukemia 8 238410 -NCIT:C9156 Adult Acute Monoblastic Leukemia 9 238411 -NCIT:C9162 Childhood Acute Monoblastic Leukemia 9 238412 -NCIT:C7319 Adult Acute Monoblastic and Monocytic Leukemia 8 238413 -NCIT:C8263 Adult Acute Monocytic Leukemia 9 238414 -NCIT:C9156 Adult Acute Monoblastic Leukemia 9 238415 -NCIT:C7940 Childhood Acute Monoblastic and Monocytic Leukemia 8 238416 -NCIT:C9162 Childhood Acute Monoblastic Leukemia 9 238417 -NCIT:C9163 Childhood Acute Monocytic Leukemia 9 238418 -NCIT:C7463 Acute Myelomonocytic Leukemia 7 238419 -NCIT:C156717 Recurrent Acute Myelomonocytic Leukemia 8 238420 -NCIT:C174512 Refractory Acute Myelomonocytic Leukemia 8 238421 -NCIT:C42779 Acute Myelomonocytic Leukemia without Abnormal Eosinophils 8 238422 -NCIT:C7962 Adult Acute Myelomonocytic Leukemia 8 238423 -NCIT:C7970 Childhood Acute Myelomonocytic Leukemia 8 238424 -NCIT:C9020 Acute Myelomonocytic Leukemia with Abnormal Eosinophils 8 238425 -NCIT:C8460 Acute Myeloid Leukemia with Minimal Differentiation 7 238426 -NCIT:C8303 Adult Acute Myeloid Leukemia with Minimal Differentiation 8 238427 -NCIT:C8304 Childhood Acute Myeloid Leukemia with Minimal Differentiation 8 238428 -NCIT:C8923 Acute Erythroid Leukemia 7 238429 -NCIT:C156723 Recurrent Acute Erythroid Leukemia 8 238430 -NCIT:C7152 Erythroleukemia 8 238431 -NCIT:C68694 Adult Erythroleukemia 9 238432 -NCIT:C7467 Pure Erythroid Leukemia 8 238433 -NCIT:C68693 Adult Pure Erythroid Leukemia 9 238434 -NCIT:C9153 Adult Acute Erythroid Leukemia 8 238435 -NCIT:C68693 Adult Pure Erythroid Leukemia 9 238436 -NCIT:C68694 Adult Erythroleukemia 9 238437 -NCIT:C9164 Childhood Acute Erythroid Leukemia 8 238438 -NCIT:C7175 Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 6 238439 -NCIT:C122688 Core Binding Factor Acute Myeloid Leukemia 7 238440 -NCIT:C129785 Acute Myeloid Leukemia with BCR-ABL1 7 238441 -NCIT:C156718 Recurrent Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 7 238442 -NCIT:C156719 Recurrent Acute Myeloid Leukemia with t (9;11) (p21.3; q23.3); MLLT3-MLL 8 238443 -NCIT:C169107 Recurrent Acute Promyelocytic Leukemia with PML-RARA 8 238444 -NCIT:C162775 Acute Myeloid Leukemia with Trisomy 8 7 238445 -NCIT:C174129 Acute Myeloid Leukemia with MLL Rearrangement 7 238446 -NCIT:C132101 Acute Myeloid Leukemia with t(10;11)(p12;q23); MLLT10-MLL 8 238447 -NCIT:C132105 Acute Myeloid Leukemia with t(6;11)(q27;q23); MLLT4-MLL 8 238448 -NCIT:C6924 Acute Myeloid Leukemia with Variant MLL Translocations 8 238449 -NCIT:C82403 Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 8 238450 -NCIT:C156719 Recurrent Acute Myeloid Leukemia with t (9;11) (p21.3; q23.3); MLLT3-MLL 9 238451 -NCIT:C188451 Childhood Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 9 238452 -NCIT:C68696 Adult Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 9 238453 -NCIT:C3182 Acute Promyelocytic Leukemia with PML-RARA 7 238454 -NCIT:C169107 Recurrent Acute Promyelocytic Leukemia with PML-RARA 8 238455 -NCIT:C27756 Typical Acute Promyelocytic Leukemia 8 238456 -NCIT:C27757 Microgranular Acute Promyelocytic Leukemia 8 238457 -NCIT:C7968 Childhood Acute Promyelocytic Leukemia with PML-RARA 8 238458 -NCIT:C9155 Adult Acute Promyelocytic Leukemia with PML-RARA 8 238459 -NCIT:C36055 Acute Myeloid Leukemia with a Variant RARA Translocation 7 238460 -NCIT:C36056 Acute Myeloid Leukemia with t(11;17)(q23;q21) 8 238461 -NCIT:C36057 Acute Myeloid Leukemia with t(5;17)(q35;q21) 8 238462 -NCIT:C36058 Acute Myeloid Leukemia with t(11;17)(q13;q21) 8 238463 -NCIT:C38377 Acute Myeloid Leukemia with t(17;17)(q21;q21) 8 238464 -NCIT:C68700 Adult Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 7 238465 -NCIT:C68696 Adult Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 8 238466 -NCIT:C68697 Adult Acute Myeloid Leukemia with inv(16)(p13.1q22); CBFB-MYH11 8 238467 -NCIT:C68698 Adult Acute Myeloid Leukemia with t(16;16)(p13.1;q22); CBFB-MYH11 8 238468 -NCIT:C68699 Adult Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 8 238469 -NCIT:C9155 Adult Acute Promyelocytic Leukemia with PML-RARA 8 238470 -NCIT:C82423 Acute Myeloid Leukemia with t(6;9) (p23;q34.1); DEK-NUP214 7 238471 -NCIT:C82426 Acute Myeloid Leukemia with inv(3) (q21.3;q26.2) or t(3;3) (q21.3;q26.2); GATA2, MECOM 7 238472 -NCIT:C122716 Acute Myeloid Leukemia with inv(3) (q21.3;q26.2); GATA2, MECOM 8 238473 -NCIT:C122717 Acute Myeloid Leukemia with t(3;3) (q21.3;q26.2); GATA2, MECOM 8 238474 -NCIT:C82427 Acute Myeloid Leukemia (Megakaryoblastic) with t(1;22)(p13.3;q13.1); RBM15-MKL1 7 238475 -NCIT:C9287 Acute Myeloid Leukemia with inv(16)(p13.1q22) or t(16;16)(p13.1;q22); CBFB-MYH11 7 238476 -NCIT:C9018 Acute Myeloid Leukemia with inv(16)(p13.1q22); CBFB-MYH11 8 238477 -NCIT:C68697 Adult Acute Myeloid Leukemia with inv(16)(p13.1q22); CBFB-MYH11 9 238478 -NCIT:C9019 Acute Myeloid Leukemia with t(16;16)(p13.1;q22); CBFB-MYH11 8 238479 -NCIT:C68698 Adult Acute Myeloid Leukemia with t(16;16)(p13.1;q22); CBFB-MYH11 9 238480 -NCIT:C9288 Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 7 238481 -NCIT:C188450 Childhood Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 8 238482 -NCIT:C68699 Adult Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 8 238483 -NCIT:C7600 Acute Myeloid Leukemia with Myelodysplasia-Related Changes 6 238484 -NCIT:C125715 Recurrent Acute Myeloid Leukemia with Myelodysplasia-Related Changes 7 238485 -NCIT:C156720 Recurrent Acute Myeloid Leukemia with Multilineage Dysplasia 8 238486 -NCIT:C180897 Refractory Acute Myeloid Leukemia with Myelodysplasia-Related Changes 7 238487 -NCIT:C4037 Acute Myeloid Leukemia Arising from Previous Myelodysplastic Syndrome 7 238488 -NCIT:C9289 Acute Myeloid Leukemia with Multilineage Dysplasia 7 238489 -NCIT:C156720 Recurrent Acute Myeloid Leukemia with Multilineage Dysplasia 8 238490 -NCIT:C82430 Acute Myeloid Leukemia with Gene Mutations 6 238491 -NCIT:C126748 Acute Myeloid Leukemia with FLT3/ITD Mutation 7 238492 -NCIT:C129786 Acute Myeloid Leukemia with RUNX1 Mutation 7 238493 -NCIT:C151898 Acute Myeloid Leukemia with Germline CEBPA Mutation 7 238494 -NCIT:C82431 Acute Myeloid Leukemia with NPM1 Mutation 7 238495 -NCIT:C82433 Acute Myeloid Leukemia with CEBPA Mutation 7 238496 -NCIT:C129782 Acute Myeloid Leukemia with Biallelic Mutations of CEBPA 8 238497 -NCIT:C129783 Acute Myeloid Leukemia with Monoallelic Mutations of CEBPA 8 238498 -NCIT:C9154 Adult Acute Myeloid Leukemia 6 238499 -NCIT:C68700 Adult Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 7 238500 -NCIT:C68696 Adult Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 8 238501 -NCIT:C68697 Adult Acute Myeloid Leukemia with inv(16)(p13.1q22); CBFB-MYH11 8 238502 -NCIT:C68698 Adult Acute Myeloid Leukemia with t(16;16)(p13.1;q22); CBFB-MYH11 8 238503 -NCIT:C68699 Adult Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 8 238504 -NCIT:C9155 Adult Acute Promyelocytic Leukemia with PML-RARA 8 238505 -NCIT:C7319 Adult Acute Monoblastic and Monocytic Leukemia 7 238506 -NCIT:C8263 Adult Acute Monocytic Leukemia 8 238507 -NCIT:C9156 Adult Acute Monoblastic Leukemia 8 238508 -NCIT:C7882 Recurrent Adult Acute Myeloid Leukemia 7 238509 -NCIT:C7961 Adult Acute Myeloid Leukemia with Maturation 7 238510 -NCIT:C7962 Adult Acute Myelomonocytic Leukemia 7 238511 -NCIT:C7964 Adult Acute Basophilic Leukemia 7 238512 -NCIT:C7965 Adult Acute Megakaryoblastic Leukemia 7 238513 -NCIT:C8303 Adult Acute Myeloid Leukemia with Minimal Differentiation 7 238514 -NCIT:C9153 Adult Acute Erythroid Leukemia 7 238515 -NCIT:C68693 Adult Pure Erythroid Leukemia 8 238516 -NCIT:C68694 Adult Erythroleukemia 8 238517 -NCIT:C9380 Adult Acute Myeloid Leukemia without Maturation 7 238518 -NCIT:C9160 Childhood Acute Myeloid Leukemia 6 238519 -NCIT:C122625 Childhood Acute Myeloid Leukemia Not Otherwise Specified 7 238520 -NCIT:C7940 Childhood Acute Monoblastic and Monocytic Leukemia 8 238521 -NCIT:C9162 Childhood Acute Monoblastic Leukemia 9 238522 -NCIT:C9163 Childhood Acute Monocytic Leukemia 9 238523 -NCIT:C7970 Childhood Acute Myelomonocytic Leukemia 8 238524 -NCIT:C7971 Childhood Acute Basophilic Leukemia 8 238525 -NCIT:C7972 Childhood Acute Megakaryoblastic Leukemia 8 238526 -NCIT:C8304 Childhood Acute Myeloid Leukemia with Minimal Differentiation 8 238527 -NCIT:C9158 Childhood Acute Myeloid Leukemia without Maturation 8 238528 -NCIT:C9164 Childhood Acute Erythroid Leukemia 8 238529 -NCIT:C9381 Childhood Acute Myeloid Leukemia with Maturation 8 238530 -NCIT:C122690 Acute Myeloid Leukemia with t(7;12)(q36;p13); HLXB9-ETV6 7 238531 -NCIT:C122691 Childhood Acute Myeloid Leukemia with NUP98 Rearrangement 7 238532 -NCIT:C131502 Acute Myeloid Leukemia with t(5;11)(q35;p15); NUP98-NSD1 8 238533 -NCIT:C131504 Acute Myeloid Leukemia with t(11;15)(p15;q35); NUP98-JARID1A 8 238534 -NCIT:C132111 Acute Megakaryoblastic Leukemia with NUP98-KDM5A 8 238535 -NCIT:C122725 Childhood Acute Myeloid Leukemia with Abnormalities of Chromosome 5q 7 238536 -NCIT:C122726 Childhood Acute Myeloid Leukemia with Abnormalities of Chromosome 7 7 238537 -NCIT:C132101 Acute Myeloid Leukemia with t(10;11)(p12;q23); MLLT10-MLL 7 238538 -NCIT:C132105 Acute Myeloid Leukemia with t(6;11)(q27;q23); MLLT4-MLL 7 238539 -NCIT:C132109 Acute Megakaryoblastic Leukemia with CBFA2T3-GLIS2 7 238540 -NCIT:C167089 Acute Myeloid Leukemia with RAM Immunophenotype 7 238541 -NCIT:C187449 Refractory Childhood Acute Myeloid Leukemia 7 238542 -NCIT:C188450 Childhood Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 7 238543 -NCIT:C188451 Childhood Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 7 238544 -NCIT:C7968 Childhood Acute Promyelocytic Leukemia with PML-RARA 7 238545 -NCIT:C82431 Acute Myeloid Leukemia with NPM1 Mutation 7 238546 -NCIT:C82433 Acute Myeloid Leukemia with CEBPA Mutation 7 238547 -NCIT:C129782 Acute Myeloid Leukemia with Biallelic Mutations of CEBPA 8 238548 -NCIT:C129783 Acute Myeloid Leukemia with Monoallelic Mutations of CEBPA 8 238549 -NCIT:C9068 Recurrent Childhood Acute Myeloid Leukemia 7 238550 -NCIT:C3174 Chronic Myelogenous Leukemia, BCR-ABL1 Positive 5 238551 -NCIT:C3173 Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 238552 -NCIT:C190786 Recurrent Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 238553 -NCIT:C190787 Refractory Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 238554 -NCIT:C3175 Chronic Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 238555 -NCIT:C7303 Splenic Manifestation of Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 238556 -NCIT:C7320 Childhood Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 238557 -NCIT:C7885 Refractory Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 238558 -NCIT:C9070 Recurrent Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 238559 -NCIT:C9110 Blast Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 238560 -NCIT:C9111 Meningeal Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 238561 -NCIT:C9128 Philadelphia Chromosome Positive, BCR-ABL1 Positive Chronic Myelogenous Leukemia 6 238562 -NCIT:C9129 Philadelphia Chromosome Negative, BCR-ABL1 Positive Chronic Myelogenous Leukemia 6 238563 -NCIT:C3176 Philadelphia-Negative Myelogenous Leukemia 5 238564 -NCIT:C9129 Philadelphia Chromosome Negative, BCR-ABL1 Positive Chronic Myelogenous Leukemia 6 238565 -NCIT:C3177 Philadelphia-Positive Myelogenous Leukemia 5 238566 -NCIT:C9128 Philadelphia Chromosome Positive, BCR-ABL1 Positive Chronic Myelogenous Leukemia 6 238567 -NCIT:C3483 Chronic Leukemia 4 238568 -NCIT:C126351 Chronic Eosinophilic Leukemia with FIP1L1-PDGFRA 5 238569 -NCIT:C150043 Recurrent Chronic Leukemia 5 238570 -NCIT:C142882 Recurrent Hairy Cell Leukemia 6 238571 -NCIT:C150048 Recurrent Chronic Myelomonocytic Leukemia 6 238572 -NCIT:C150133 Recurrent T-Cell Prolymphocytic Leukemia 6 238573 -NCIT:C157692 Recurrent Aggressive NK-Cell Leukemia 6 238574 -NCIT:C158081 Recurrent B-Cell Prolymphocytic Leukemia 6 238575 -NCIT:C171065 Recurrent Hairy Cell Leukemia Variant 6 238576 -NCIT:C176999 Recurrent Sezary Syndrome 6 238577 -NCIT:C180985 Recurrent T-Cell Large Granular Lymphocyte Leukemia 6 238578 -NCIT:C8645 Recurrent Chronic Lymphocytic Leukemia 6 238579 -NCIT:C158151 Recurrent Transformed Chronic Lymphocytic Leukemia 7 238580 -NCIT:C9070 Recurrent Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 238581 -NCIT:C150044 Refractory Chronic Leukemia 5 238582 -NCIT:C150049 Refractory Chronic Myelomonocytic Leukemia 6 238583 -NCIT:C157691 Refractory T-Cell Prolymphocytic Leukemia 6 238584 -NCIT:C157693 Refractory Aggressive NK-Cell Leukemia 6 238585 -NCIT:C157697 Refractory B-Cell Prolymphocytic Leukemia 6 238586 -NCIT:C171064 Refractory Hairy Cell Leukemia Variant 6 238587 -NCIT:C177000 Refractory Sezary Syndrome 6 238588 -NCIT:C180986 Refractory T-Cell Large Granular Lymphocyte Leukemia 6 238589 -NCIT:C7885 Refractory Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 238590 -NCIT:C7886 Refractory Chronic Lymphocytic Leukemia 6 238591 -NCIT:C158152 Refractory Transformed Chronic Lymphocytic Leukemia 7 238592 -NCIT:C8030 Refractory Hairy Cell Leukemia 6 238593 -NCIT:C3163 Chronic Lymphocytic Leukemia 5 238594 -NCIT:C141206 Chronic Lymphocytic Leukemia- Modified Rai Staging System 6 238595 -NCIT:C7847 Stage 0 Chronic Lymphocytic Leukemia 7 238596 -NCIT:C7874 Stage I Chronic Lymphocytic Leukemia 7 238597 -NCIT:C7875 Stage II Chronic Lymphocytic Leukemia 7 238598 -NCIT:C7876 Stage III Chronic Lymphocytic Leukemia 7 238599 -NCIT:C8646 Stage IV Chronic Lymphocytic Leukemia 7 238600 -NCIT:C141208 Chronic Lymphocytic Leukemia- Binet Staging System 6 238601 -NCIT:C141209 Stage A Chronic Lymphocytic Leukemia 7 238602 -NCIT:C141210 Stage B Chronic Lymphocytic Leukemia 7 238603 -NCIT:C141211 Stage C Chronic Lymphocytic Leukemia 7 238604 -NCIT:C157624 Transformed Chronic Lymphocytic Leukemia to Diffuse Large B-Cell Lymphoma 6 238605 -NCIT:C158151 Recurrent Transformed Chronic Lymphocytic Leukemia 7 238606 -NCIT:C158152 Refractory Transformed Chronic Lymphocytic Leukemia 7 238607 -NCIT:C36272 Chronic Lymphocytic Leukemia with Plasmacytoid Differentiation 6 238608 -NCIT:C37202 Chronic Lymphocytic Leukemia with Immunoglobulin Heavy Chain Variable-Region Gene Somatic Hypermutation 6 238609 -NCIT:C37205 Chronic Lymphocytic Leukemia with Unmutated Immunoglobulin Heavy Chain Variable-Region Gene 6 238610 -NCIT:C45264 Cutaneous Chronic Lymphocytic Leukemia 6 238611 -NCIT:C7176 Aleukemic Chronic Lymphocytic Leukemia 6 238612 -NCIT:C7300 Splenic Manifestation of Chronic Lymphocytic Leukemia 6 238613 -NCIT:C7886 Refractory Chronic Lymphocytic Leukemia 6 238614 -NCIT:C158152 Refractory Transformed Chronic Lymphocytic Leukemia 7 238615 -NCIT:C8645 Recurrent Chronic Lymphocytic Leukemia 6 238616 -NCIT:C158151 Recurrent Transformed Chronic Lymphocytic Leukemia 7 238617 -NCIT:C3175 Chronic Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 5 238618 -NCIT:C3179 Chronic Neutrophilic Leukemia 5 238619 -NCIT:C3181 Prolymphocytic Leukemia 5 238620 -NCIT:C4752 T-Cell Prolymphocytic Leukemia 6 238621 -NCIT:C150133 Recurrent T-Cell Prolymphocytic Leukemia 7 238622 -NCIT:C157691 Refractory T-Cell Prolymphocytic Leukemia 7 238623 -NCIT:C36270 T-Cell Prolymphocytic Leukemia, Small Cell Variant 7 238624 -NCIT:C36271 T-Cell Prolymphocytic Leukemia, Cerebriform Cell Variant 7 238625 -NCIT:C7298 Splenic Manifestation of T-Cell Prolymphocytic Leukemia 7 238626 -NCIT:C4753 B-Cell Prolymphocytic Leukemia 6 238627 -NCIT:C157697 Refractory B-Cell Prolymphocytic Leukemia 7 238628 -NCIT:C158081 Recurrent B-Cell Prolymphocytic Leukemia 7 238629 -NCIT:C7299 Splenic Manifestation of B-Cell Prolymphocytic Leukemia 7 238630 -NCIT:C7297 Splenic Manifestation of Prolymphocytic Leukemia 6 238631 -NCIT:C7298 Splenic Manifestation of T-Cell Prolymphocytic Leukemia 7 238632 -NCIT:C7299 Splenic Manifestation of B-Cell Prolymphocytic Leukemia 7 238633 -NCIT:C4563 Chronic Eosinophilic Leukemia, Not Otherwise Specified 5 238634 -NCIT:C4664 T-Cell Large Granular Lymphocyte Leukemia 5 238635 -NCIT:C180985 Recurrent T-Cell Large Granular Lymphocyte Leukemia 6 238636 -NCIT:C180986 Refractory T-Cell Large Granular Lymphocyte Leukemia 6 238637 -NCIT:C39584 T-Cell Large Granular Lymphocyte Leukemia, Common Variant 6 238638 -NCIT:C39586 T-Cell Large Granular Lymphocyte Leukemia Expressing the T-Cell Receptor Gamma-Delta 6 238639 -NCIT:C7302 Splenic Manifestation of T-Cell Large Granular Lymphocyte Leukemia 6 238640 -NCIT:C7401 Hairy Cell Leukemia Variant 5 238641 -NCIT:C171064 Refractory Hairy Cell Leukemia Variant 6 238642 -NCIT:C171065 Recurrent Hairy Cell Leukemia Variant 6 238643 -NCIT:C7402 Hairy Cell Leukemia 5 238644 -NCIT:C142882 Recurrent Hairy Cell Leukemia 6 238645 -NCIT:C7301 Splenic Manifestation of Hairy Cell Leukemia 6 238646 -NCIT:C8029 Progressive Hairy Cell Leukemia Initial Treatment 6 238647 -NCIT:C8030 Refractory Hairy Cell Leukemia 6 238648 -NCIT:C8647 Aggressive NK-Cell Leukemia 5 238649 -NCIT:C157692 Recurrent Aggressive NK-Cell Leukemia 6 238650 -NCIT:C157693 Refractory Aggressive NK-Cell Leukemia 6 238651 -NCIT:C4982 Aleukemic Leukemia 4 238652 -NCIT:C4343 Aleukemic Lymphoid Leukemia 5 238653 -NCIT:C7176 Aleukemic Chronic Lymphocytic Leukemia 6 238654 -NCIT:C7177 Aleukemic Acute Lymphoblastic Leukemia 6 238655 -NCIT:C5631 Aleukemic Acute Lymphoblastic Leukemia Cutis 7 238656 -NCIT:C4983 Aleukemic Leukemia Cutis 5 238657 -NCIT:C5630 Aleukemic Monocytic Leukemia Cutis 6 238658 -NCIT:C5631 Aleukemic Acute Lymphoblastic Leukemia Cutis 6 238659 -NCIT:C4989 Childhood Leukemia 4 238660 -NCIT:C122603 Infant Leukemia 5 238661 -NCIT:C122614 Infant Acute Lymphoblastic Leukemia 6 238662 -NCIT:C122617 Infant Acute Lymphoblastic Leukemia with MLL Rearrangement 7 238663 -NCIT:C122621 Infant Acute Lymphoblastic Leukemia without MLL Gene Rearrangement 7 238664 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 7 238665 -NCIT:C122690 Acute Myeloid Leukemia with t(7;12)(q36;p13); HLXB9-ETV6 6 238666 -NCIT:C126110 Infant Acute Undifferentiated Leukemia 6 238667 -NCIT:C126111 Infant Acute Biphenotypic Leukemia 6 238668 -NCIT:C3845 Neonatal Leukemia 6 238669 -NCIT:C187056 Childhood Acute Leukemia 5 238670 -NCIT:C126110 Infant Acute Undifferentiated Leukemia 6 238671 -NCIT:C126111 Infant Acute Biphenotypic Leukemia 6 238672 -NCIT:C3168 Childhood Acute Lymphoblastic Leukemia 6 238673 -NCIT:C122614 Infant Acute Lymphoblastic Leukemia 7 238674 -NCIT:C122617 Infant Acute Lymphoblastic Leukemia with MLL Rearrangement 8 238675 -NCIT:C122621 Infant Acute Lymphoblastic Leukemia without MLL Gene Rearrangement 8 238676 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 8 238677 -NCIT:C122624 Refractory Childhood Acute Lymphoblastic Leukemia 7 238678 -NCIT:C7784 Recurrent Childhood Acute Lymphoblastic Leukemia 7 238679 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 238680 -NCIT:C7953 Childhood T Acute Lymphoblastic Leukemia 7 238681 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 8 238682 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 238683 -NCIT:C9140 Childhood B Acute Lymphoblastic Leukemia 7 238684 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 238685 -NCIT:C7952 Childhood Burkitt Leukemia 6 238686 -NCIT:C9160 Childhood Acute Myeloid Leukemia 6 238687 -NCIT:C122625 Childhood Acute Myeloid Leukemia Not Otherwise Specified 7 238688 -NCIT:C7940 Childhood Acute Monoblastic and Monocytic Leukemia 8 238689 -NCIT:C9162 Childhood Acute Monoblastic Leukemia 9 238690 -NCIT:C9163 Childhood Acute Monocytic Leukemia 9 238691 -NCIT:C7970 Childhood Acute Myelomonocytic Leukemia 8 238692 -NCIT:C7971 Childhood Acute Basophilic Leukemia 8 238693 -NCIT:C7972 Childhood Acute Megakaryoblastic Leukemia 8 238694 -NCIT:C8304 Childhood Acute Myeloid Leukemia with Minimal Differentiation 8 238695 -NCIT:C9158 Childhood Acute Myeloid Leukemia without Maturation 8 238696 -NCIT:C9164 Childhood Acute Erythroid Leukemia 8 238697 -NCIT:C9381 Childhood Acute Myeloid Leukemia with Maturation 8 238698 -NCIT:C122690 Acute Myeloid Leukemia with t(7;12)(q36;p13); HLXB9-ETV6 7 238699 -NCIT:C122691 Childhood Acute Myeloid Leukemia with NUP98 Rearrangement 7 238700 -NCIT:C131502 Acute Myeloid Leukemia with t(5;11)(q35;p15); NUP98-NSD1 8 238701 -NCIT:C131504 Acute Myeloid Leukemia with t(11;15)(p15;q35); NUP98-JARID1A 8 238702 -NCIT:C132111 Acute Megakaryoblastic Leukemia with NUP98-KDM5A 8 238703 -NCIT:C122725 Childhood Acute Myeloid Leukemia with Abnormalities of Chromosome 5q 7 238704 -NCIT:C122726 Childhood Acute Myeloid Leukemia with Abnormalities of Chromosome 7 7 238705 -NCIT:C132101 Acute Myeloid Leukemia with t(10;11)(p12;q23); MLLT10-MLL 7 238706 -NCIT:C132105 Acute Myeloid Leukemia with t(6;11)(q27;q23); MLLT4-MLL 7 238707 -NCIT:C132109 Acute Megakaryoblastic Leukemia with CBFA2T3-GLIS2 7 238708 -NCIT:C167089 Acute Myeloid Leukemia with RAM Immunophenotype 7 238709 -NCIT:C187449 Refractory Childhood Acute Myeloid Leukemia 7 238710 -NCIT:C188450 Childhood Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 7 238711 -NCIT:C188451 Childhood Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 7 238712 -NCIT:C7968 Childhood Acute Promyelocytic Leukemia with PML-RARA 7 238713 -NCIT:C82431 Acute Myeloid Leukemia with NPM1 Mutation 7 238714 -NCIT:C82433 Acute Myeloid Leukemia with CEBPA Mutation 7 238715 -NCIT:C129782 Acute Myeloid Leukemia with Biallelic Mutations of CEBPA 8 238716 -NCIT:C129783 Acute Myeloid Leukemia with Monoallelic Mutations of CEBPA 8 238717 -NCIT:C9068 Recurrent Childhood Acute Myeloid Leukemia 7 238718 -NCIT:C7320 Childhood Chronic Myelogenous Leukemia, BCR-ABL1 Positive 5 238719 -NCIT:C5440 Central Nervous System Leukemia 4 238720 -NCIT:C94754 Meningeal Leukemia 5 238721 -NCIT:C9111 Meningeal Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 238722 -NCIT:C7296 Splenic Manifestation of Leukemia 4 238723 -NCIT:C7297 Splenic Manifestation of Prolymphocytic Leukemia 5 238724 -NCIT:C7298 Splenic Manifestation of T-Cell Prolymphocytic Leukemia 6 238725 -NCIT:C7299 Splenic Manifestation of B-Cell Prolymphocytic Leukemia 6 238726 -NCIT:C7300 Splenic Manifestation of Chronic Lymphocytic Leukemia 5 238727 -NCIT:C7301 Splenic Manifestation of Hairy Cell Leukemia 5 238728 -NCIT:C7302 Splenic Manifestation of T-Cell Large Granular Lymphocyte Leukemia 5 238729 -NCIT:C7303 Splenic Manifestation of Chronic Myelogenous Leukemia, BCR-ABL1 Positive 5 238730 -NCIT:C7539 Lymphoid Leukemia 4 238731 -NCIT:C3163 Chronic Lymphocytic Leukemia 5 238732 -NCIT:C141206 Chronic Lymphocytic Leukemia- Modified Rai Staging System 6 238733 -NCIT:C7847 Stage 0 Chronic Lymphocytic Leukemia 7 238734 -NCIT:C7874 Stage I Chronic Lymphocytic Leukemia 7 238735 -NCIT:C7875 Stage II Chronic Lymphocytic Leukemia 7 238736 -NCIT:C7876 Stage III Chronic Lymphocytic Leukemia 7 238737 -NCIT:C8646 Stage IV Chronic Lymphocytic Leukemia 7 238738 -NCIT:C141208 Chronic Lymphocytic Leukemia- Binet Staging System 6 238739 -NCIT:C141209 Stage A Chronic Lymphocytic Leukemia 7 238740 -NCIT:C141210 Stage B Chronic Lymphocytic Leukemia 7 238741 -NCIT:C141211 Stage C Chronic Lymphocytic Leukemia 7 238742 -NCIT:C157624 Transformed Chronic Lymphocytic Leukemia to Diffuse Large B-Cell Lymphoma 6 238743 -NCIT:C158151 Recurrent Transformed Chronic Lymphocytic Leukemia 7 238744 -NCIT:C158152 Refractory Transformed Chronic Lymphocytic Leukemia 7 238745 -NCIT:C36272 Chronic Lymphocytic Leukemia with Plasmacytoid Differentiation 6 238746 -NCIT:C37202 Chronic Lymphocytic Leukemia with Immunoglobulin Heavy Chain Variable-Region Gene Somatic Hypermutation 6 238747 -NCIT:C37205 Chronic Lymphocytic Leukemia with Unmutated Immunoglobulin Heavy Chain Variable-Region Gene 6 238748 -NCIT:C45264 Cutaneous Chronic Lymphocytic Leukemia 6 238749 -NCIT:C7176 Aleukemic Chronic Lymphocytic Leukemia 6 238750 -NCIT:C7300 Splenic Manifestation of Chronic Lymphocytic Leukemia 6 238751 -NCIT:C7886 Refractory Chronic Lymphocytic Leukemia 6 238752 -NCIT:C158152 Refractory Transformed Chronic Lymphocytic Leukemia 7 238753 -NCIT:C8645 Recurrent Chronic Lymphocytic Leukemia 6 238754 -NCIT:C158151 Recurrent Transformed Chronic Lymphocytic Leukemia 7 238755 -NCIT:C3167 Acute Lymphoblastic Leukemia 5 238756 -NCIT:C121973 Acute Lymphoblastic Leukemia by Gene Expression Profile 6 238757 -NCIT:C121975 DDIT4L Acute Lymphoblastic Leukemia 7 238758 -NCIT:C121978 Acute Lymphoblastic Leukemia by ROSE Cluster 7 238759 -NCIT:C121980 ROSE Cluster 1 8 238760 -NCIT:C121981 ROSE Cluster 2 8 238761 -NCIT:C121982 ROSE Cluster 3 8 238762 -NCIT:C121983 ROSE Cluster 4 8 238763 -NCIT:C121984 ROSE Cluster 5 8 238764 -NCIT:C121985 ROSE Cluster 6 8 238765 -NCIT:C121986 ROSE Cluster 7 8 238766 -NCIT:C121988 ROSE Cluster 8 8 238767 -NCIT:C136488 Refractory Acute Lymphoblastic Leukemia 6 238768 -NCIT:C122624 Refractory Childhood Acute Lymphoblastic Leukemia 7 238769 -NCIT:C126309 Refractory Adult Acute Lymphoblastic Leukemia 7 238770 -NCIT:C142812 Refractory B Acute Lymphoblastic Leukemia 7 238771 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 238772 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 238773 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 238774 -NCIT:C150510 Refractory T Acute Lymphoblastic Leukemia 7 238775 -NCIT:C142810 Recurrent Acute Lymphoblastic Leukemia 6 238776 -NCIT:C142811 Recurrent B Acute Lymphoblastic Leukemia 7 238777 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 238778 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 238779 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 238780 -NCIT:C150131 Recurrent T Acute Lymphoblastic Leukemia 7 238781 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 238782 -NCIT:C7784 Recurrent Childhood Acute Lymphoblastic Leukemia 7 238783 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 238784 -NCIT:C7883 Recurrent Adult Acute Lymphoblastic Leukemia 7 238785 -NCIT:C3168 Childhood Acute Lymphoblastic Leukemia 6 238786 -NCIT:C122614 Infant Acute Lymphoblastic Leukemia 7 238787 -NCIT:C122617 Infant Acute Lymphoblastic Leukemia with MLL Rearrangement 8 238788 -NCIT:C122621 Infant Acute Lymphoblastic Leukemia without MLL Gene Rearrangement 8 238789 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 8 238790 -NCIT:C122624 Refractory Childhood Acute Lymphoblastic Leukemia 7 238791 -NCIT:C7784 Recurrent Childhood Acute Lymphoblastic Leukemia 7 238792 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 238793 -NCIT:C7953 Childhood T Acute Lymphoblastic Leukemia 7 238794 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 8 238795 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 238796 -NCIT:C9140 Childhood B Acute Lymphoblastic Leukemia 7 238797 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 238798 -NCIT:C3183 T Acute Lymphoblastic Leukemia 6 238799 -NCIT:C130043 Early T Acute Lymphoblastic Leukemia 7 238800 -NCIT:C150131 Recurrent T Acute Lymphoblastic Leukemia 7 238801 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 238802 -NCIT:C150510 Refractory T Acute Lymphoblastic Leukemia 7 238803 -NCIT:C45739 Mediastinal T Acute Lymphoblastic Leukemia 7 238804 -NCIT:C7953 Childhood T Acute Lymphoblastic Leukemia 7 238805 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 8 238806 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 238807 -NCIT:C9142 Adult T Acute Lymphoblastic Leukemia 7 238808 -NCIT:C4967 Adult Acute Lymphoblastic Leukemia 6 238809 -NCIT:C126309 Refractory Adult Acute Lymphoblastic Leukemia 7 238810 -NCIT:C7883 Recurrent Adult Acute Lymphoblastic Leukemia 7 238811 -NCIT:C9142 Adult T Acute Lymphoblastic Leukemia 7 238812 -NCIT:C9143 Adult B Acute Lymphoblastic Leukemia 7 238813 -NCIT:C114819 Adult B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 238814 -NCIT:C7177 Aleukemic Acute Lymphoblastic Leukemia 6 238815 -NCIT:C5631 Aleukemic Acute Lymphoblastic Leukemia Cutis 7 238816 -NCIT:C8644 B Acute Lymphoblastic Leukemia 6 238817 -NCIT:C121974 B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 7 238818 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 238819 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 238820 -NCIT:C128629 B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 7 238821 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 238822 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 238823 -NCIT:C130040 B Acute Lymphoblastic Leukemia with Intrachromosomal Amplification of Chromosome 21 7 238824 -NCIT:C142811 Recurrent B Acute Lymphoblastic Leukemia 7 238825 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 238826 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 238827 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 238828 -NCIT:C142812 Refractory B Acute Lymphoblastic Leukemia 7 238829 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 238830 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 238831 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 238832 -NCIT:C162776 B Acute Lymphoblastic Leukemia with t(4;11)(q21;23) 7 238833 -NCIT:C190847 B Acute Lymphoblastic Leukemia Associated with Down Syndrome 7 238834 -NCIT:C190957 B Acute Lymphoblastic Leukemia with ETV6-RUNX1-Like Features 7 238835 -NCIT:C36312 B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 7 238836 -NCIT:C114819 Adult B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 238837 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 238838 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 238839 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 238840 -NCIT:C80342 B Acute Lymphoblastic Leukemia with t(v;11q23.3); MLL Rearranged 7 238841 -NCIT:C80343 B Acute Lymphoblastic Leukemia with t(12;21)(p13.2;q22.1); ETV6-RUNX1 7 238842 -NCIT:C80344 Hyperdiploid B Acute Lymphoblastic Leukemia 7 238843 -NCIT:C80345 Hypodiploid B Acute Lymphoblastic Leukemia 7 238844 -NCIT:C80346 B Acute Lymphoblastic Leukemia with t(5;14)(q31.1;q32.3); IL3-IGH 7 238845 -NCIT:C80347 B Acute Lymphoblastic Leukemia with t(1;19)(q23;p13.3); E2A-PBX1 (TCF3-PBX1) 7 238846 -NCIT:C9140 Childhood B Acute Lymphoblastic Leukemia 7 238847 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 238848 -NCIT:C9143 Adult B Acute Lymphoblastic Leukemia 7 238849 -NCIT:C114819 Adult B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 238850 -NCIT:C3180 Plasma Cell Leukemia 5 238851 -NCIT:C191432 Secondary Plasma Cell Leukemia 6 238852 -NCIT:C3181 Prolymphocytic Leukemia 5 238853 -NCIT:C4752 T-Cell Prolymphocytic Leukemia 6 238854 -NCIT:C150133 Recurrent T-Cell Prolymphocytic Leukemia 7 238855 -NCIT:C157691 Refractory T-Cell Prolymphocytic Leukemia 7 238856 -NCIT:C36270 T-Cell Prolymphocytic Leukemia, Small Cell Variant 7 238857 -NCIT:C36271 T-Cell Prolymphocytic Leukemia, Cerebriform Cell Variant 7 238858 -NCIT:C7298 Splenic Manifestation of T-Cell Prolymphocytic Leukemia 7 238859 -NCIT:C4753 B-Cell Prolymphocytic Leukemia 6 238860 -NCIT:C157697 Refractory B-Cell Prolymphocytic Leukemia 7 238861 -NCIT:C158081 Recurrent B-Cell Prolymphocytic Leukemia 7 238862 -NCIT:C7299 Splenic Manifestation of B-Cell Prolymphocytic Leukemia 7 238863 -NCIT:C7297 Splenic Manifestation of Prolymphocytic Leukemia 6 238864 -NCIT:C7298 Splenic Manifestation of T-Cell Prolymphocytic Leukemia 7 238865 -NCIT:C7299 Splenic Manifestation of B-Cell Prolymphocytic Leukemia 7 238866 -NCIT:C4343 Aleukemic Lymphoid Leukemia 5 238867 -NCIT:C7176 Aleukemic Chronic Lymphocytic Leukemia 6 238868 -NCIT:C7177 Aleukemic Acute Lymphoblastic Leukemia 6 238869 -NCIT:C5631 Aleukemic Acute Lymphoblastic Leukemia Cutis 7 238870 -NCIT:C4664 T-Cell Large Granular Lymphocyte Leukemia 5 238871 -NCIT:C180985 Recurrent T-Cell Large Granular Lymphocyte Leukemia 6 238872 -NCIT:C180986 Refractory T-Cell Large Granular Lymphocyte Leukemia 6 238873 -NCIT:C39584 T-Cell Large Granular Lymphocyte Leukemia, Common Variant 6 238874 -NCIT:C39586 T-Cell Large Granular Lymphocyte Leukemia Expressing the T-Cell Receptor Gamma-Delta 6 238875 -NCIT:C7302 Splenic Manifestation of T-Cell Large Granular Lymphocyte Leukemia 6 238876 -NCIT:C7400 Burkitt Leukemia 5 238877 -NCIT:C151976 Recurrent Burkitt Leukemia 6 238878 -NCIT:C151977 Refractory Burkitt Leukemia 6 238879 -NCIT:C7952 Childhood Burkitt Leukemia 6 238880 -NCIT:C7954 Adult Burkitt Leukemia 6 238881 -NCIT:C7401 Hairy Cell Leukemia Variant 5 238882 -NCIT:C171064 Refractory Hairy Cell Leukemia Variant 6 238883 -NCIT:C171065 Recurrent Hairy Cell Leukemia Variant 6 238884 -NCIT:C7402 Hairy Cell Leukemia 5 238885 -NCIT:C142882 Recurrent Hairy Cell Leukemia 6 238886 -NCIT:C7301 Splenic Manifestation of Hairy Cell Leukemia 6 238887 -NCIT:C8029 Progressive Hairy Cell Leukemia Initial Treatment 6 238888 -NCIT:C8030 Refractory Hairy Cell Leukemia 6 238889 -NCIT:C8594 Leukemic Phase of Lymphoma 5 238890 -NCIT:C138192 Leukemic Nonnodal Mantle Cell Lymphoma 6 238891 -NCIT:C3366 Sezary Syndrome 6 238892 -NCIT:C176999 Recurrent Sezary Syndrome 7 238893 -NCIT:C177000 Refractory Sezary Syndrome 7 238894 -NCIT:C36265 Acute Adult T-Cell Leukemia/Lymphoma 6 238895 -NCIT:C7178 Smoldering Adult T-Cell Leukemia/Lymphoma 6 238896 -NCIT:C7179 Chronic Adult T-Cell Leukemia/Lymphoma 6 238897 -NCIT:C8647 Aggressive NK-Cell Leukemia 5 238898 -NCIT:C157692 Recurrent Aggressive NK-Cell Leukemia 6 238899 -NCIT:C157693 Refractory Aggressive NK-Cell Leukemia 6 238900 -NCIT:C80683 Therapy-Related Leukemia 4 238901 -NCIT:C80691 Chemotherapy-Related Leukemia 5 238902 -NCIT:C27754 Alkylating Agent-Related Acute Myeloid Leukemia 6 238903 -NCIT:C8252 Therapy-Related Acute Myeloid Leukemia 5 238904 -NCIT:C186730 Therapy-Related Cytogenetically Normal Acute Myeloid Leukemia 6 238905 -NCIT:C27754 Alkylating Agent-Related Acute Myeloid Leukemia 6 238906 -NCIT:C27755 Topoisomerase II Inhibitor-Related Acute Myeloid Leukemia 6 238907 -NCIT:C88156 Leukemia Cutis 4 238908 -NCIT:C45264 Cutaneous Chronic Lymphocytic Leukemia 5 238909 -NCIT:C4983 Aleukemic Leukemia Cutis 5 238910 -NCIT:C5630 Aleukemic Monocytic Leukemia Cutis 6 238911 -NCIT:C5631 Aleukemic Acute Lymphoblastic Leukemia Cutis 6 238912 -NCIT:C9277 Testicular Leukemia 4 238913 -NCIT:C9300 Acute Leukemia 4 238914 -NCIT:C148429 Recurrent Acute Leukemia 5 238915 -NCIT:C142810 Recurrent Acute Lymphoblastic Leukemia 6 238916 -NCIT:C142811 Recurrent B Acute Lymphoblastic Leukemia 7 238917 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 238918 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 238919 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 238920 -NCIT:C150131 Recurrent T Acute Lymphoblastic Leukemia 7 238921 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 238922 -NCIT:C7784 Recurrent Childhood Acute Lymphoblastic Leukemia 7 238923 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 238924 -NCIT:C7883 Recurrent Adult Acute Lymphoblastic Leukemia 7 238925 -NCIT:C148427 Recurrent Acute Myeloid Leukemia 6 238926 -NCIT:C125715 Recurrent Acute Myeloid Leukemia with Myelodysplasia-Related Changes 7 238927 -NCIT:C156720 Recurrent Acute Myeloid Leukemia with Multilineage Dysplasia 8 238928 -NCIT:C156716 Recurrent Acute Myeloid Leukemia Not Otherwise Specified 7 238929 -NCIT:C156717 Recurrent Acute Myelomonocytic Leukemia 8 238930 -NCIT:C156722 Recurrent Acute Monoblastic and Monocytic Leukemia 8 238931 -NCIT:C156723 Recurrent Acute Erythroid Leukemia 8 238932 -NCIT:C156731 Recurrent Acute Megakaryoblastic Leukemia 8 238933 -NCIT:C156718 Recurrent Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 7 238934 -NCIT:C156719 Recurrent Acute Myeloid Leukemia with t (9;11) (p21.3; q23.3); MLLT3-MLL 8 238935 -NCIT:C169107 Recurrent Acute Promyelocytic Leukemia with PML-RARA 8 238936 -NCIT:C7882 Recurrent Adult Acute Myeloid Leukemia 7 238937 -NCIT:C9068 Recurrent Childhood Acute Myeloid Leukemia 7 238938 -NCIT:C151976 Recurrent Burkitt Leukemia 6 238939 -NCIT:C172626 Recurrent Acute Leukemia of Ambiguous Lineage 6 238940 -NCIT:C141446 Recurrent Acute Undifferentiated Leukemia 7 238941 -NCIT:C148423 Recurrent Mixed Phenotype Acute Leukemia 7 238942 -NCIT:C141445 Recurrent Acute Biphenotypic Leukemia 8 238943 -NCIT:C179204 Recurrent Acute Bilineal Leukemia 8 238944 -NCIT:C148431 Refractory Acute Leukemia 5 238945 -NCIT:C134319 Refractory Acute Myeloid Leukemia 6 238946 -NCIT:C174486 Refractory Acute Myeloid Leukemia Not Otherwise Specified 7 238947 -NCIT:C174511 Refractory Acute Monoblastic and Monocytic Leukemia 8 238948 -NCIT:C174512 Refractory Acute Myelomonocytic Leukemia 8 238949 -NCIT:C180897 Refractory Acute Myeloid Leukemia with Myelodysplasia-Related Changes 7 238950 -NCIT:C187449 Refractory Childhood Acute Myeloid Leukemia 7 238951 -NCIT:C136488 Refractory Acute Lymphoblastic Leukemia 6 238952 -NCIT:C122624 Refractory Childhood Acute Lymphoblastic Leukemia 7 238953 -NCIT:C126309 Refractory Adult Acute Lymphoblastic Leukemia 7 238954 -NCIT:C142812 Refractory B Acute Lymphoblastic Leukemia 7 238955 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 238956 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 238957 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 238958 -NCIT:C150510 Refractory T Acute Lymphoblastic Leukemia 7 238959 -NCIT:C151977 Refractory Burkitt Leukemia 6 238960 -NCIT:C172630 Refractory Acute Leukemia of Ambiguous Lineage 6 238961 -NCIT:C148430 Refractory Mixed Phenotype Acute Leukemia 7 238962 -NCIT:C173683 Refractory Acute Biphenotypic Leukemia 8 238963 -NCIT:C179205 Refractory Acute Bilineal Leukemia 8 238964 -NCIT:C173503 Refractory Acute Undifferentiated Leukemia 7 238965 -NCIT:C187056 Childhood Acute Leukemia 5 238966 -NCIT:C126110 Infant Acute Undifferentiated Leukemia 6 238967 -NCIT:C126111 Infant Acute Biphenotypic Leukemia 6 238968 -NCIT:C3168 Childhood Acute Lymphoblastic Leukemia 6 238969 -NCIT:C122614 Infant Acute Lymphoblastic Leukemia 7 238970 -NCIT:C122617 Infant Acute Lymphoblastic Leukemia with MLL Rearrangement 8 238971 -NCIT:C122621 Infant Acute Lymphoblastic Leukemia without MLL Gene Rearrangement 8 238972 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 8 238973 -NCIT:C122624 Refractory Childhood Acute Lymphoblastic Leukemia 7 238974 -NCIT:C7784 Recurrent Childhood Acute Lymphoblastic Leukemia 7 238975 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 238976 -NCIT:C7953 Childhood T Acute Lymphoblastic Leukemia 7 238977 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 8 238978 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 238979 -NCIT:C9140 Childhood B Acute Lymphoblastic Leukemia 7 238980 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 238981 -NCIT:C7952 Childhood Burkitt Leukemia 6 238982 -NCIT:C9160 Childhood Acute Myeloid Leukemia 6 238983 -NCIT:C122625 Childhood Acute Myeloid Leukemia Not Otherwise Specified 7 238984 -NCIT:C7940 Childhood Acute Monoblastic and Monocytic Leukemia 8 238985 -NCIT:C9162 Childhood Acute Monoblastic Leukemia 9 238986 -NCIT:C9163 Childhood Acute Monocytic Leukemia 9 238987 -NCIT:C7970 Childhood Acute Myelomonocytic Leukemia 8 238988 -NCIT:C7971 Childhood Acute Basophilic Leukemia 8 238989 -NCIT:C7972 Childhood Acute Megakaryoblastic Leukemia 8 238990 -NCIT:C8304 Childhood Acute Myeloid Leukemia with Minimal Differentiation 8 238991 -NCIT:C9158 Childhood Acute Myeloid Leukemia without Maturation 8 238992 -NCIT:C9164 Childhood Acute Erythroid Leukemia 8 238993 -NCIT:C9381 Childhood Acute Myeloid Leukemia with Maturation 8 238994 -NCIT:C122690 Acute Myeloid Leukemia with t(7;12)(q36;p13); HLXB9-ETV6 7 238995 -NCIT:C122691 Childhood Acute Myeloid Leukemia with NUP98 Rearrangement 7 238996 -NCIT:C131502 Acute Myeloid Leukemia with t(5;11)(q35;p15); NUP98-NSD1 8 238997 -NCIT:C131504 Acute Myeloid Leukemia with t(11;15)(p15;q35); NUP98-JARID1A 8 238998 -NCIT:C132111 Acute Megakaryoblastic Leukemia with NUP98-KDM5A 8 238999 -NCIT:C122725 Childhood Acute Myeloid Leukemia with Abnormalities of Chromosome 5q 7 239000 -NCIT:C122726 Childhood Acute Myeloid Leukemia with Abnormalities of Chromosome 7 7 239001 -NCIT:C132101 Acute Myeloid Leukemia with t(10;11)(p12;q23); MLLT10-MLL 7 239002 -NCIT:C132105 Acute Myeloid Leukemia with t(6;11)(q27;q23); MLLT4-MLL 7 239003 -NCIT:C132109 Acute Megakaryoblastic Leukemia with CBFA2T3-GLIS2 7 239004 -NCIT:C167089 Acute Myeloid Leukemia with RAM Immunophenotype 7 239005 -NCIT:C187449 Refractory Childhood Acute Myeloid Leukemia 7 239006 -NCIT:C188450 Childhood Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 7 239007 -NCIT:C188451 Childhood Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 7 239008 -NCIT:C7968 Childhood Acute Promyelocytic Leukemia with PML-RARA 7 239009 -NCIT:C82431 Acute Myeloid Leukemia with NPM1 Mutation 7 239010 -NCIT:C82433 Acute Myeloid Leukemia with CEBPA Mutation 7 239011 -NCIT:C129782 Acute Myeloid Leukemia with Biallelic Mutations of CEBPA 8 239012 -NCIT:C129783 Acute Myeloid Leukemia with Monoallelic Mutations of CEBPA 8 239013 -NCIT:C9068 Recurrent Childhood Acute Myeloid Leukemia 7 239014 -NCIT:C3167 Acute Lymphoblastic Leukemia 5 239015 -NCIT:C121973 Acute Lymphoblastic Leukemia by Gene Expression Profile 6 239016 -NCIT:C121975 DDIT4L Acute Lymphoblastic Leukemia 7 239017 -NCIT:C121978 Acute Lymphoblastic Leukemia by ROSE Cluster 7 239018 -NCIT:C121980 ROSE Cluster 1 8 239019 -NCIT:C121981 ROSE Cluster 2 8 239020 -NCIT:C121982 ROSE Cluster 3 8 239021 -NCIT:C121983 ROSE Cluster 4 8 239022 -NCIT:C121984 ROSE Cluster 5 8 239023 -NCIT:C121985 ROSE Cluster 6 8 239024 -NCIT:C121986 ROSE Cluster 7 8 239025 -NCIT:C121988 ROSE Cluster 8 8 239026 -NCIT:C136488 Refractory Acute Lymphoblastic Leukemia 6 239027 -NCIT:C122624 Refractory Childhood Acute Lymphoblastic Leukemia 7 239028 -NCIT:C126309 Refractory Adult Acute Lymphoblastic Leukemia 7 239029 -NCIT:C142812 Refractory B Acute Lymphoblastic Leukemia 7 239030 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 239031 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 239032 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 239033 -NCIT:C150510 Refractory T Acute Lymphoblastic Leukemia 7 239034 -NCIT:C142810 Recurrent Acute Lymphoblastic Leukemia 6 239035 -NCIT:C142811 Recurrent B Acute Lymphoblastic Leukemia 7 239036 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 239037 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 239038 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 239039 -NCIT:C150131 Recurrent T Acute Lymphoblastic Leukemia 7 239040 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 239041 -NCIT:C7784 Recurrent Childhood Acute Lymphoblastic Leukemia 7 239042 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 239043 -NCIT:C7883 Recurrent Adult Acute Lymphoblastic Leukemia 7 239044 -NCIT:C3168 Childhood Acute Lymphoblastic Leukemia 6 239045 -NCIT:C122614 Infant Acute Lymphoblastic Leukemia 7 239046 -NCIT:C122617 Infant Acute Lymphoblastic Leukemia with MLL Rearrangement 8 239047 -NCIT:C122621 Infant Acute Lymphoblastic Leukemia without MLL Gene Rearrangement 8 239048 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 8 239049 -NCIT:C122624 Refractory Childhood Acute Lymphoblastic Leukemia 7 239050 -NCIT:C7784 Recurrent Childhood Acute Lymphoblastic Leukemia 7 239051 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 239052 -NCIT:C7953 Childhood T Acute Lymphoblastic Leukemia 7 239053 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 8 239054 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 239055 -NCIT:C9140 Childhood B Acute Lymphoblastic Leukemia 7 239056 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 239057 -NCIT:C3183 T Acute Lymphoblastic Leukemia 6 239058 -NCIT:C130043 Early T Acute Lymphoblastic Leukemia 7 239059 -NCIT:C150131 Recurrent T Acute Lymphoblastic Leukemia 7 239060 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 239061 -NCIT:C150510 Refractory T Acute Lymphoblastic Leukemia 7 239062 -NCIT:C45739 Mediastinal T Acute Lymphoblastic Leukemia 7 239063 -NCIT:C7953 Childhood T Acute Lymphoblastic Leukemia 7 239064 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 8 239065 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 239066 -NCIT:C9142 Adult T Acute Lymphoblastic Leukemia 7 239067 -NCIT:C4967 Adult Acute Lymphoblastic Leukemia 6 239068 -NCIT:C126309 Refractory Adult Acute Lymphoblastic Leukemia 7 239069 -NCIT:C7883 Recurrent Adult Acute Lymphoblastic Leukemia 7 239070 -NCIT:C9142 Adult T Acute Lymphoblastic Leukemia 7 239071 -NCIT:C9143 Adult B Acute Lymphoblastic Leukemia 7 239072 -NCIT:C114819 Adult B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 239073 -NCIT:C7177 Aleukemic Acute Lymphoblastic Leukemia 6 239074 -NCIT:C5631 Aleukemic Acute Lymphoblastic Leukemia Cutis 7 239075 -NCIT:C8644 B Acute Lymphoblastic Leukemia 6 239076 -NCIT:C121974 B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 7 239077 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 239078 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 239079 -NCIT:C128629 B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 7 239080 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 239081 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 239082 -NCIT:C130040 B Acute Lymphoblastic Leukemia with Intrachromosomal Amplification of Chromosome 21 7 239083 -NCIT:C142811 Recurrent B Acute Lymphoblastic Leukemia 7 239084 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 239085 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 239086 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 239087 -NCIT:C142812 Refractory B Acute Lymphoblastic Leukemia 7 239088 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 239089 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 239090 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 239091 -NCIT:C162776 B Acute Lymphoblastic Leukemia with t(4;11)(q21;23) 7 239092 -NCIT:C190847 B Acute Lymphoblastic Leukemia Associated with Down Syndrome 7 239093 -NCIT:C190957 B Acute Lymphoblastic Leukemia with ETV6-RUNX1-Like Features 7 239094 -NCIT:C36312 B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 7 239095 -NCIT:C114819 Adult B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 239096 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 239097 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 239098 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 239099 -NCIT:C80342 B Acute Lymphoblastic Leukemia with t(v;11q23.3); MLL Rearranged 7 239100 -NCIT:C80343 B Acute Lymphoblastic Leukemia with t(12;21)(p13.2;q22.1); ETV6-RUNX1 7 239101 -NCIT:C80344 Hyperdiploid B Acute Lymphoblastic Leukemia 7 239102 -NCIT:C80345 Hypodiploid B Acute Lymphoblastic Leukemia 7 239103 -NCIT:C80346 B Acute Lymphoblastic Leukemia with t(5;14)(q31.1;q32.3); IL3-IGH 7 239104 -NCIT:C80347 B Acute Lymphoblastic Leukemia with t(1;19)(q23;p13.3); E2A-PBX1 (TCF3-PBX1) 7 239105 -NCIT:C9140 Childhood B Acute Lymphoblastic Leukemia 7 239106 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 239107 -NCIT:C9143 Adult B Acute Lymphoblastic Leukemia 7 239108 -NCIT:C114819 Adult B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 239109 -NCIT:C3171 Acute Myeloid Leukemia 5 239110 -NCIT:C122687 Cytogenetically Normal Acute Myeloid Leukemia 6 239111 -NCIT:C186730 Therapy-Related Cytogenetically Normal Acute Myeloid Leukemia 7 239112 -NCIT:C134319 Refractory Acute Myeloid Leukemia 6 239113 -NCIT:C174486 Refractory Acute Myeloid Leukemia Not Otherwise Specified 7 239114 -NCIT:C174511 Refractory Acute Monoblastic and Monocytic Leukemia 8 239115 -NCIT:C174512 Refractory Acute Myelomonocytic Leukemia 8 239116 -NCIT:C180897 Refractory Acute Myeloid Leukemia with Myelodysplasia-Related Changes 7 239117 -NCIT:C187449 Refractory Childhood Acute Myeloid Leukemia 7 239118 -NCIT:C148427 Recurrent Acute Myeloid Leukemia 6 239119 -NCIT:C125715 Recurrent Acute Myeloid Leukemia with Myelodysplasia-Related Changes 7 239120 -NCIT:C156720 Recurrent Acute Myeloid Leukemia with Multilineage Dysplasia 8 239121 -NCIT:C156716 Recurrent Acute Myeloid Leukemia Not Otherwise Specified 7 239122 -NCIT:C156717 Recurrent Acute Myelomonocytic Leukemia 8 239123 -NCIT:C156722 Recurrent Acute Monoblastic and Monocytic Leukemia 8 239124 -NCIT:C156723 Recurrent Acute Erythroid Leukemia 8 239125 -NCIT:C156731 Recurrent Acute Megakaryoblastic Leukemia 8 239126 -NCIT:C156718 Recurrent Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 7 239127 -NCIT:C156719 Recurrent Acute Myeloid Leukemia with t (9;11) (p21.3; q23.3); MLLT3-MLL 8 239128 -NCIT:C169107 Recurrent Acute Promyelocytic Leukemia with PML-RARA 8 239129 -NCIT:C7882 Recurrent Adult Acute Myeloid Leukemia 7 239130 -NCIT:C9068 Recurrent Childhood Acute Myeloid Leukemia 7 239131 -NCIT:C25765 Secondary Acute Myeloid Leukemia 6 239132 -NCIT:C172129 Acute Myeloid Leukemia Arising from Previous Myeloproliferative Neoplasm 7 239133 -NCIT:C172130 Acute Myeloid Leukemia Arising from Previous Myelodysplastic/Myeloproliferative Neoplasm 7 239134 -NCIT:C27931 Benzene-Related Acute Myeloid Leukemia 7 239135 -NCIT:C4037 Acute Myeloid Leukemia Arising from Previous Myelodysplastic Syndrome 7 239136 -NCIT:C8252 Therapy-Related Acute Myeloid Leukemia 7 239137 -NCIT:C186730 Therapy-Related Cytogenetically Normal Acute Myeloid Leukemia 8 239138 -NCIT:C27754 Alkylating Agent-Related Acute Myeloid Leukemia 8 239139 -NCIT:C27755 Topoisomerase II Inhibitor-Related Acute Myeloid Leukemia 8 239140 -NCIT:C27753 Acute Myeloid Leukemia Not Otherwise Specified 6 239141 -NCIT:C122625 Childhood Acute Myeloid Leukemia Not Otherwise Specified 7 239142 -NCIT:C7940 Childhood Acute Monoblastic and Monocytic Leukemia 8 239143 -NCIT:C9162 Childhood Acute Monoblastic Leukemia 9 239144 -NCIT:C9163 Childhood Acute Monocytic Leukemia 9 239145 -NCIT:C7970 Childhood Acute Myelomonocytic Leukemia 8 239146 -NCIT:C7971 Childhood Acute Basophilic Leukemia 8 239147 -NCIT:C7972 Childhood Acute Megakaryoblastic Leukemia 8 239148 -NCIT:C8304 Childhood Acute Myeloid Leukemia with Minimal Differentiation 8 239149 -NCIT:C9158 Childhood Acute Myeloid Leukemia without Maturation 8 239150 -NCIT:C9164 Childhood Acute Erythroid Leukemia 8 239151 -NCIT:C9381 Childhood Acute Myeloid Leukemia with Maturation 8 239152 -NCIT:C156716 Recurrent Acute Myeloid Leukemia Not Otherwise Specified 7 239153 -NCIT:C156717 Recurrent Acute Myelomonocytic Leukemia 8 239154 -NCIT:C156722 Recurrent Acute Monoblastic and Monocytic Leukemia 8 239155 -NCIT:C156723 Recurrent Acute Erythroid Leukemia 8 239156 -NCIT:C156731 Recurrent Acute Megakaryoblastic Leukemia 8 239157 -NCIT:C174486 Refractory Acute Myeloid Leukemia Not Otherwise Specified 7 239158 -NCIT:C174511 Refractory Acute Monoblastic and Monocytic Leukemia 8 239159 -NCIT:C174512 Refractory Acute Myelomonocytic Leukemia 8 239160 -NCIT:C3164 Acute Basophilic Leukemia 7 239161 -NCIT:C7964 Adult Acute Basophilic Leukemia 8 239162 -NCIT:C7971 Childhood Acute Basophilic Leukemia 8 239163 -NCIT:C3170 Acute Megakaryoblastic Leukemia 7 239164 -NCIT:C156731 Recurrent Acute Megakaryoblastic Leukemia 8 239165 -NCIT:C7965 Adult Acute Megakaryoblastic Leukemia 8 239166 -NCIT:C7972 Childhood Acute Megakaryoblastic Leukemia 8 239167 -NCIT:C3249 Acute Myeloid Leukemia without Maturation 7 239168 -NCIT:C9158 Childhood Acute Myeloid Leukemia without Maturation 8 239169 -NCIT:C9380 Adult Acute Myeloid Leukemia without Maturation 8 239170 -NCIT:C3250 Acute Myeloid Leukemia with Maturation 7 239171 -NCIT:C7961 Adult Acute Myeloid Leukemia with Maturation 8 239172 -NCIT:C9381 Childhood Acute Myeloid Leukemia with Maturation 8 239173 -NCIT:C4344 Acute Panmyelosis with Myelofibrosis 7 239174 -NCIT:C7318 Acute Monoblastic and Monocytic Leukemia 7 239175 -NCIT:C156722 Recurrent Acute Monoblastic and Monocytic Leukemia 8 239176 -NCIT:C174511 Refractory Acute Monoblastic and Monocytic Leukemia 8 239177 -NCIT:C4861 Acute Monocytic Leukemia 8 239178 -NCIT:C5630 Aleukemic Monocytic Leukemia Cutis 9 239179 -NCIT:C8263 Adult Acute Monocytic Leukemia 9 239180 -NCIT:C9163 Childhood Acute Monocytic Leukemia 9 239181 -NCIT:C7171 Acute Monoblastic Leukemia 8 239182 -NCIT:C9156 Adult Acute Monoblastic Leukemia 9 239183 -NCIT:C9162 Childhood Acute Monoblastic Leukemia 9 239184 -NCIT:C7319 Adult Acute Monoblastic and Monocytic Leukemia 8 239185 -NCIT:C8263 Adult Acute Monocytic Leukemia 9 239186 -NCIT:C9156 Adult Acute Monoblastic Leukemia 9 239187 -NCIT:C7940 Childhood Acute Monoblastic and Monocytic Leukemia 8 239188 -NCIT:C9162 Childhood Acute Monoblastic Leukemia 9 239189 -NCIT:C9163 Childhood Acute Monocytic Leukemia 9 239190 -NCIT:C7463 Acute Myelomonocytic Leukemia 7 239191 -NCIT:C156717 Recurrent Acute Myelomonocytic Leukemia 8 239192 -NCIT:C174512 Refractory Acute Myelomonocytic Leukemia 8 239193 -NCIT:C42779 Acute Myelomonocytic Leukemia without Abnormal Eosinophils 8 239194 -NCIT:C7962 Adult Acute Myelomonocytic Leukemia 8 239195 -NCIT:C7970 Childhood Acute Myelomonocytic Leukemia 8 239196 -NCIT:C9020 Acute Myelomonocytic Leukemia with Abnormal Eosinophils 8 239197 -NCIT:C8460 Acute Myeloid Leukemia with Minimal Differentiation 7 239198 -NCIT:C8303 Adult Acute Myeloid Leukemia with Minimal Differentiation 8 239199 -NCIT:C8304 Childhood Acute Myeloid Leukemia with Minimal Differentiation 8 239200 -NCIT:C8923 Acute Erythroid Leukemia 7 239201 -NCIT:C156723 Recurrent Acute Erythroid Leukemia 8 239202 -NCIT:C7152 Erythroleukemia 8 239203 -NCIT:C68694 Adult Erythroleukemia 9 239204 -NCIT:C7467 Pure Erythroid Leukemia 8 239205 -NCIT:C68693 Adult Pure Erythroid Leukemia 9 239206 -NCIT:C9153 Adult Acute Erythroid Leukemia 8 239207 -NCIT:C68693 Adult Pure Erythroid Leukemia 9 239208 -NCIT:C68694 Adult Erythroleukemia 9 239209 -NCIT:C9164 Childhood Acute Erythroid Leukemia 8 239210 -NCIT:C7175 Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 6 239211 -NCIT:C122688 Core Binding Factor Acute Myeloid Leukemia 7 239212 -NCIT:C129785 Acute Myeloid Leukemia with BCR-ABL1 7 239213 -NCIT:C156718 Recurrent Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 7 239214 -NCIT:C156719 Recurrent Acute Myeloid Leukemia with t (9;11) (p21.3; q23.3); MLLT3-MLL 8 239215 -NCIT:C169107 Recurrent Acute Promyelocytic Leukemia with PML-RARA 8 239216 -NCIT:C162775 Acute Myeloid Leukemia with Trisomy 8 7 239217 -NCIT:C174129 Acute Myeloid Leukemia with MLL Rearrangement 7 239218 -NCIT:C132101 Acute Myeloid Leukemia with t(10;11)(p12;q23); MLLT10-MLL 8 239219 -NCIT:C132105 Acute Myeloid Leukemia with t(6;11)(q27;q23); MLLT4-MLL 8 239220 -NCIT:C6924 Acute Myeloid Leukemia with Variant MLL Translocations 8 239221 -NCIT:C82403 Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 8 239222 -NCIT:C156719 Recurrent Acute Myeloid Leukemia with t (9;11) (p21.3; q23.3); MLLT3-MLL 9 239223 -NCIT:C188451 Childhood Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 9 239224 -NCIT:C68696 Adult Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 9 239225 -NCIT:C3182 Acute Promyelocytic Leukemia with PML-RARA 7 239226 -NCIT:C169107 Recurrent Acute Promyelocytic Leukemia with PML-RARA 8 239227 -NCIT:C27756 Typical Acute Promyelocytic Leukemia 8 239228 -NCIT:C27757 Microgranular Acute Promyelocytic Leukemia 8 239229 -NCIT:C7968 Childhood Acute Promyelocytic Leukemia with PML-RARA 8 239230 -NCIT:C9155 Adult Acute Promyelocytic Leukemia with PML-RARA 8 239231 -NCIT:C36055 Acute Myeloid Leukemia with a Variant RARA Translocation 7 239232 -NCIT:C36056 Acute Myeloid Leukemia with t(11;17)(q23;q21) 8 239233 -NCIT:C36057 Acute Myeloid Leukemia with t(5;17)(q35;q21) 8 239234 -NCIT:C36058 Acute Myeloid Leukemia with t(11;17)(q13;q21) 8 239235 -NCIT:C38377 Acute Myeloid Leukemia with t(17;17)(q21;q21) 8 239236 -NCIT:C68700 Adult Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 7 239237 -NCIT:C68696 Adult Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 8 239238 -NCIT:C68697 Adult Acute Myeloid Leukemia with inv(16)(p13.1q22); CBFB-MYH11 8 239239 -NCIT:C68698 Adult Acute Myeloid Leukemia with t(16;16)(p13.1;q22); CBFB-MYH11 8 239240 -NCIT:C68699 Adult Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 8 239241 -NCIT:C9155 Adult Acute Promyelocytic Leukemia with PML-RARA 8 239242 -NCIT:C82423 Acute Myeloid Leukemia with t(6;9) (p23;q34.1); DEK-NUP214 7 239243 -NCIT:C82426 Acute Myeloid Leukemia with inv(3) (q21.3;q26.2) or t(3;3) (q21.3;q26.2); GATA2, MECOM 7 239244 -NCIT:C122716 Acute Myeloid Leukemia with inv(3) (q21.3;q26.2); GATA2, MECOM 8 239245 -NCIT:C122717 Acute Myeloid Leukemia with t(3;3) (q21.3;q26.2); GATA2, MECOM 8 239246 -NCIT:C82427 Acute Myeloid Leukemia (Megakaryoblastic) with t(1;22)(p13.3;q13.1); RBM15-MKL1 7 239247 -NCIT:C9287 Acute Myeloid Leukemia with inv(16)(p13.1q22) or t(16;16)(p13.1;q22); CBFB-MYH11 7 239248 -NCIT:C9018 Acute Myeloid Leukemia with inv(16)(p13.1q22); CBFB-MYH11 8 239249 -NCIT:C68697 Adult Acute Myeloid Leukemia with inv(16)(p13.1q22); CBFB-MYH11 9 239250 -NCIT:C9019 Acute Myeloid Leukemia with t(16;16)(p13.1;q22); CBFB-MYH11 8 239251 -NCIT:C68698 Adult Acute Myeloid Leukemia with t(16;16)(p13.1;q22); CBFB-MYH11 9 239252 -NCIT:C9288 Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 7 239253 -NCIT:C188450 Childhood Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 8 239254 -NCIT:C68699 Adult Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 8 239255 -NCIT:C7600 Acute Myeloid Leukemia with Myelodysplasia-Related Changes 6 239256 -NCIT:C125715 Recurrent Acute Myeloid Leukemia with Myelodysplasia-Related Changes 7 239257 -NCIT:C156720 Recurrent Acute Myeloid Leukemia with Multilineage Dysplasia 8 239258 -NCIT:C180897 Refractory Acute Myeloid Leukemia with Myelodysplasia-Related Changes 7 239259 -NCIT:C4037 Acute Myeloid Leukemia Arising from Previous Myelodysplastic Syndrome 7 239260 -NCIT:C9289 Acute Myeloid Leukemia with Multilineage Dysplasia 7 239261 -NCIT:C156720 Recurrent Acute Myeloid Leukemia with Multilineage Dysplasia 8 239262 -NCIT:C82430 Acute Myeloid Leukemia with Gene Mutations 6 239263 -NCIT:C126748 Acute Myeloid Leukemia with FLT3/ITD Mutation 7 239264 -NCIT:C129786 Acute Myeloid Leukemia with RUNX1 Mutation 7 239265 -NCIT:C151898 Acute Myeloid Leukemia with Germline CEBPA Mutation 7 239266 -NCIT:C82431 Acute Myeloid Leukemia with NPM1 Mutation 7 239267 -NCIT:C82433 Acute Myeloid Leukemia with CEBPA Mutation 7 239268 -NCIT:C129782 Acute Myeloid Leukemia with Biallelic Mutations of CEBPA 8 239269 -NCIT:C129783 Acute Myeloid Leukemia with Monoallelic Mutations of CEBPA 8 239270 -NCIT:C9154 Adult Acute Myeloid Leukemia 6 239271 -NCIT:C68700 Adult Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 7 239272 -NCIT:C68696 Adult Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 8 239273 -NCIT:C68697 Adult Acute Myeloid Leukemia with inv(16)(p13.1q22); CBFB-MYH11 8 239274 -NCIT:C68698 Adult Acute Myeloid Leukemia with t(16;16)(p13.1;q22); CBFB-MYH11 8 239275 -NCIT:C68699 Adult Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 8 239276 -NCIT:C9155 Adult Acute Promyelocytic Leukemia with PML-RARA 8 239277 -NCIT:C7319 Adult Acute Monoblastic and Monocytic Leukemia 7 239278 -NCIT:C8263 Adult Acute Monocytic Leukemia 8 239279 -NCIT:C9156 Adult Acute Monoblastic Leukemia 8 239280 -NCIT:C7882 Recurrent Adult Acute Myeloid Leukemia 7 239281 -NCIT:C7961 Adult Acute Myeloid Leukemia with Maturation 7 239282 -NCIT:C7962 Adult Acute Myelomonocytic Leukemia 7 239283 -NCIT:C7964 Adult Acute Basophilic Leukemia 7 239284 -NCIT:C7965 Adult Acute Megakaryoblastic Leukemia 7 239285 -NCIT:C8303 Adult Acute Myeloid Leukemia with Minimal Differentiation 7 239286 -NCIT:C9153 Adult Acute Erythroid Leukemia 7 239287 -NCIT:C68693 Adult Pure Erythroid Leukemia 8 239288 -NCIT:C68694 Adult Erythroleukemia 8 239289 -NCIT:C9380 Adult Acute Myeloid Leukemia without Maturation 7 239290 -NCIT:C9160 Childhood Acute Myeloid Leukemia 6 239291 -NCIT:C122625 Childhood Acute Myeloid Leukemia Not Otherwise Specified 7 239292 -NCIT:C7940 Childhood Acute Monoblastic and Monocytic Leukemia 8 239293 -NCIT:C9162 Childhood Acute Monoblastic Leukemia 9 239294 -NCIT:C9163 Childhood Acute Monocytic Leukemia 9 239295 -NCIT:C7970 Childhood Acute Myelomonocytic Leukemia 8 239296 -NCIT:C7971 Childhood Acute Basophilic Leukemia 8 239297 -NCIT:C7972 Childhood Acute Megakaryoblastic Leukemia 8 239298 -NCIT:C8304 Childhood Acute Myeloid Leukemia with Minimal Differentiation 8 239299 -NCIT:C9158 Childhood Acute Myeloid Leukemia without Maturation 8 239300 -NCIT:C9164 Childhood Acute Erythroid Leukemia 8 239301 -NCIT:C9381 Childhood Acute Myeloid Leukemia with Maturation 8 239302 -NCIT:C122690 Acute Myeloid Leukemia with t(7;12)(q36;p13); HLXB9-ETV6 7 239303 -NCIT:C122691 Childhood Acute Myeloid Leukemia with NUP98 Rearrangement 7 239304 -NCIT:C131502 Acute Myeloid Leukemia with t(5;11)(q35;p15); NUP98-NSD1 8 239305 -NCIT:C131504 Acute Myeloid Leukemia with t(11;15)(p15;q35); NUP98-JARID1A 8 239306 -NCIT:C132111 Acute Megakaryoblastic Leukemia with NUP98-KDM5A 8 239307 -NCIT:C122725 Childhood Acute Myeloid Leukemia with Abnormalities of Chromosome 5q 7 239308 -NCIT:C122726 Childhood Acute Myeloid Leukemia with Abnormalities of Chromosome 7 7 239309 -NCIT:C132101 Acute Myeloid Leukemia with t(10;11)(p12;q23); MLLT10-MLL 7 239310 -NCIT:C132105 Acute Myeloid Leukemia with t(6;11)(q27;q23); MLLT4-MLL 7 239311 -NCIT:C132109 Acute Megakaryoblastic Leukemia with CBFA2T3-GLIS2 7 239312 -NCIT:C167089 Acute Myeloid Leukemia with RAM Immunophenotype 7 239313 -NCIT:C187449 Refractory Childhood Acute Myeloid Leukemia 7 239314 -NCIT:C188450 Childhood Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 7 239315 -NCIT:C188451 Childhood Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 7 239316 -NCIT:C7968 Childhood Acute Promyelocytic Leukemia with PML-RARA 7 239317 -NCIT:C82431 Acute Myeloid Leukemia with NPM1 Mutation 7 239318 -NCIT:C82433 Acute Myeloid Leukemia with CEBPA Mutation 7 239319 -NCIT:C129782 Acute Myeloid Leukemia with Biallelic Mutations of CEBPA 8 239320 -NCIT:C129783 Acute Myeloid Leukemia with Monoallelic Mutations of CEBPA 8 239321 -NCIT:C9068 Recurrent Childhood Acute Myeloid Leukemia 7 239322 -NCIT:C7400 Burkitt Leukemia 5 239323 -NCIT:C151976 Recurrent Burkitt Leukemia 6 239324 -NCIT:C151977 Refractory Burkitt Leukemia 6 239325 -NCIT:C7952 Childhood Burkitt Leukemia 6 239326 -NCIT:C7954 Adult Burkitt Leukemia 6 239327 -NCIT:C7464 Acute Leukemia of Ambiguous Lineage 5 239328 -NCIT:C151975 Acute Leukemia of Ambiguous Lineage, Not Otherwise Specified 6 239329 -NCIT:C172626 Recurrent Acute Leukemia of Ambiguous Lineage 6 239330 -NCIT:C141446 Recurrent Acute Undifferentiated Leukemia 7 239331 -NCIT:C148423 Recurrent Mixed Phenotype Acute Leukemia 7 239332 -NCIT:C141445 Recurrent Acute Biphenotypic Leukemia 8 239333 -NCIT:C179204 Recurrent Acute Bilineal Leukemia 8 239334 -NCIT:C172630 Refractory Acute Leukemia of Ambiguous Lineage 6 239335 -NCIT:C148430 Refractory Mixed Phenotype Acute Leukemia 7 239336 -NCIT:C173683 Refractory Acute Biphenotypic Leukemia 8 239337 -NCIT:C179205 Refractory Acute Bilineal Leukemia 8 239338 -NCIT:C173503 Refractory Acute Undifferentiated Leukemia 7 239339 -NCIT:C82179 Mixed Phenotype Acute Leukemia 6 239340 -NCIT:C148423 Recurrent Mixed Phenotype Acute Leukemia 7 239341 -NCIT:C141445 Recurrent Acute Biphenotypic Leukemia 8 239342 -NCIT:C179204 Recurrent Acute Bilineal Leukemia 8 239343 -NCIT:C148430 Refractory Mixed Phenotype Acute Leukemia 7 239344 -NCIT:C173683 Refractory Acute Biphenotypic Leukemia 8 239345 -NCIT:C179205 Refractory Acute Bilineal Leukemia 8 239346 -NCIT:C151990 Mixed Phenotype Acute Leukemia, Not Otherwise Specified, Rare Subtypes 7 239347 -NCIT:C151991 Mixed Phenotype Acute Leukemia, B/T/Myeloid, Not Otherwise Specified 8 239348 -NCIT:C151992 Mixed Phenotype Acute Leukemia, B/T, Not Otherwise Specified 8 239349 -NCIT:C4673 Acute Biphenotypic Leukemia 7 239350 -NCIT:C126111 Infant Acute Biphenotypic Leukemia 8 239351 -NCIT:C141445 Recurrent Acute Biphenotypic Leukemia 8 239352 -NCIT:C173683 Refractory Acute Biphenotypic Leukemia 8 239353 -NCIT:C6923 Acute Bilineal Leukemia 7 239354 -NCIT:C179204 Recurrent Acute Bilineal Leukemia 8 239355 -NCIT:C179205 Refractory Acute Bilineal Leukemia 8 239356 -NCIT:C82192 Mixed Phenotype Acute Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 7 239357 -NCIT:C82203 Mixed Phenotype Acute Leukemia with t(v;11q23.3); MLL Rearranged 7 239358 -NCIT:C82212 Mixed Phenotype Acute Leukemia, B/Myeloid, Not Otherwise Specified 7 239359 -NCIT:C82213 Mixed Phenotype Acute Leukemia, T/Myeloid, Not Otherwise Specified 7 239360 -NCIT:C9298 Acute Undifferentiated Leukemia 6 239361 -NCIT:C126110 Infant Acute Undifferentiated Leukemia 7 239362 -NCIT:C141446 Recurrent Acute Undifferentiated Leukemia 7 239363 -NCIT:C173503 Refractory Acute Undifferentiated Leukemia 7 239364 -NCIT:C3208 Lymphoma 3 239365 -NCIT:C134154 Refractory Lymphoma 4 239366 -NCIT:C138014 Refractory B-Cell Lymphoma, Unclassifiable, with Features Intermediate between Diffuse Large B-Cell Lymphoma and Classic Hodgkin Lymphoma 5 239367 -NCIT:C138020 Refractory Central Nervous System Lymphoma 5 239368 -NCIT:C146989 Refractory Central Nervous System Non-Hodgkin Lymphoma 6 239369 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 7 239370 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 239371 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 7 239372 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 239373 -NCIT:C138022 Refractory Testicular Lymphoma 5 239374 -NCIT:C138024 Refractory Breast Lymphoma 5 239375 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 6 239376 -NCIT:C142877 Refractory Primary Cutaneous Lymphoma 5 239377 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 6 239378 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 6 239379 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 7 239380 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 7 239381 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 7 239382 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 7 239383 -NCIT:C8687 Refractory Mycosis Fungoides 7 239384 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 8 239385 -NCIT:C153177 Refractory Mediastinal Lymphoma 5 239386 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 6 239387 -NCIT:C157682 Refractory Primary Bone Lymphoma 5 239388 -NCIT:C160149 Refractory EBV-Related Lymphoma 5 239389 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 6 239390 -NCIT:C187197 Refractory Childhood Lymphoma 5 239391 -NCIT:C115458 Refractory Childhood Hodgkin Lymphoma 6 239392 -NCIT:C8701 Refractory Non-Hodgkin Lymphoma 5 239393 -NCIT:C140091 Refractory Transformed Non-Hodgkin Lymphoma 6 239394 -NCIT:C158150 Refractory Transformed B-Cell Non-Hodgkin Lymphoma 7 239395 -NCIT:C160240 Refractory Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 8 239396 -NCIT:C186484 Refractory Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 8 239397 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 9 239398 -NCIT:C165791 Refractory Transformed T-cell Non-Hodgkin Lymphoma 7 239399 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 8 239400 -NCIT:C146989 Refractory Central Nervous System Non-Hodgkin Lymphoma 6 239401 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 7 239402 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 239403 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 7 239404 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 239405 -NCIT:C151978 Refractory Lymphoblastic Lymphoma 6 239406 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 7 239407 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 7 239408 -NCIT:C156233 Refractory Aggressive Non-Hodgkin Lymphoma 6 239409 -NCIT:C178555 Refractory Aggressive B-Cell Non-Hodgkin Lymphoma 7 239410 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 8 239411 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 8 239412 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 8 239413 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 9 239414 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 9 239415 -NCIT:C8847 Refractory Burkitt Lymphoma 8 239416 -NCIT:C8862 Refractory Mantle Cell Lymphoma 8 239417 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 8 239418 -NCIT:C178556 Refractory Aggressive T-Cell Non-Hodgkin Lymphoma 7 239419 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 8 239420 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 8 239421 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 8 239422 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 8 239423 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 8 239424 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 8 239425 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 8 239426 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 8 239427 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 8 239428 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 8 239429 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 239430 -NCIT:C173046 Refractory Indolent Non-Hodgkin Lymphoma 6 239431 -NCIT:C148175 Refractory Indolent Adult Non-Hodgkin Lymphoma 7 239432 -NCIT:C183514 Refractory Indolent B-Cell Non-Hodgkin Lymphoma 7 239433 -NCIT:C143085 Refractory Marginal Zone Lymphoma 8 239434 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 9 239435 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 239436 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 9 239437 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 8 239438 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 8 239439 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 8 239440 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 9 239441 -NCIT:C183515 Refractory Indolent T-Cell Non-Hodgkin Lymphoma 7 239442 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 8 239443 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 8 239444 -NCIT:C8687 Refractory Mycosis Fungoides 8 239445 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 9 239446 -NCIT:C8664 Refractory T-Cell Non-Hodgkin Lymphoma 6 239447 -NCIT:C178556 Refractory Aggressive T-Cell Non-Hodgkin Lymphoma 7 239448 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 8 239449 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 8 239450 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 8 239451 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 8 239452 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 8 239453 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 8 239454 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 8 239455 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 8 239456 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 8 239457 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 8 239458 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 239459 -NCIT:C183515 Refractory Indolent T-Cell Non-Hodgkin Lymphoma 7 239460 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 8 239461 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 8 239462 -NCIT:C8687 Refractory Mycosis Fungoides 8 239463 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 9 239464 -NCIT:C8689 Refractory Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 7 239465 -NCIT:C148129 Refractory Mycosis Fungoides and Sezary Syndrome 8 239466 -NCIT:C177000 Refractory Sezary Syndrome 9 239467 -NCIT:C8687 Refractory Mycosis Fungoides 9 239468 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 239469 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 8 239470 -NCIT:C157690 Refractory NK-Cell Lymphoma, Unclassifiable 8 239471 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 8 239472 -NCIT:C165791 Refractory Transformed T-cell Non-Hodgkin Lymphoma 8 239473 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 9 239474 -NCIT:C168779 Refractory Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 8 239475 -NCIT:C168781 Refractory Follicular T-Cell Lymphoma 8 239476 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 8 239477 -NCIT:C8658 Refractory Anaplastic Large Cell Lymphoma 8 239478 -NCIT:C162689 Refractory Systemic Anaplastic Large Cell Lymphoma 9 239479 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 239480 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 239481 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 239482 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 8 239483 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 8 239484 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 8 239485 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 239486 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 239487 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 239488 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 239489 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 239490 -NCIT:C8687 Refractory Mycosis Fungoides 9 239491 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 239492 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 239493 -NCIT:C8842 Refractory B-Cell Non-Hodgkin Lymphoma 6 239494 -NCIT:C178555 Refractory Aggressive B-Cell Non-Hodgkin Lymphoma 7 239495 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 8 239496 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 8 239497 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 8 239498 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 9 239499 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 9 239500 -NCIT:C8847 Refractory Burkitt Lymphoma 8 239501 -NCIT:C8862 Refractory Mantle Cell Lymphoma 8 239502 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 8 239503 -NCIT:C183514 Refractory Indolent B-Cell Non-Hodgkin Lymphoma 7 239504 -NCIT:C143085 Refractory Marginal Zone Lymphoma 8 239505 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 9 239506 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 239507 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 9 239508 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 8 239509 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 8 239510 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 8 239511 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 9 239512 -NCIT:C7228 Refractory Mature B-Cell Non-Hodgkin Lymphoma 7 239513 -NCIT:C143085 Refractory Marginal Zone Lymphoma 8 239514 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 9 239515 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 239516 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 9 239517 -NCIT:C158150 Refractory Transformed B-Cell Non-Hodgkin Lymphoma 8 239518 -NCIT:C160240 Refractory Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 9 239519 -NCIT:C186484 Refractory Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 9 239520 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 10 239521 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 8 239522 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 9 239523 -NCIT:C8846 Refractory Small Lymphocytic Lymphoma 8 239524 -NCIT:C8847 Refractory Burkitt Lymphoma 8 239525 -NCIT:C8853 Refractory Diffuse Large B-Cell Lymphoma 8 239526 -NCIT:C138018 Refractory Extranodal Diffuse Large B-cell Lymphoma 9 239527 -NCIT:C138026 Refractory Intravascular Large B-Cell Lymphoma 9 239528 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 239529 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 239530 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 239531 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 239532 -NCIT:C157678 Refractory T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 9 239533 -NCIT:C157680 Refractory Primary Effusion Lymphoma 9 239534 -NCIT:C157684 Refractory Plasmablastic Lymphoma 9 239535 -NCIT:C160233 Refractory High Grade B-Cell Lymphoma 9 239536 -NCIT:C151979 Refractory High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 10 239537 -NCIT:C162453 Refractory High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 10 239538 -NCIT:C188789 Refractory High Grade B-Cell Lymphoma, Not Otherwise Specified 10 239539 -NCIT:C165241 Refractory Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 239540 -NCIT:C160238 Refractory Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 10 239541 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 239542 -NCIT:C182034 Refractory Immunoblastic Lymphoma 10 239543 -NCIT:C8927 Refractory Centroblastic Lymphoma 10 239544 -NCIT:C183142 Refractory Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 9 239545 -NCIT:C188791 Refractory ALK-Positive Large B-Cell Lymphoma 9 239546 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 239547 -NCIT:C8858 Refractory Follicular Lymphoma 8 239548 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 9 239549 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 9 239550 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 9 239551 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 10 239552 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 10 239553 -NCIT:C8862 Refractory Mantle Cell Lymphoma 8 239554 -NCIT:C8836 Refractory Hodgkin Lymphoma 5 239555 -NCIT:C115458 Refractory Childhood Hodgkin Lymphoma 6 239556 -NCIT:C133736 Refractory Classic Hodgkin Lymphoma 6 239557 -NCIT:C142982 Refractory Lymphocyte-Rich Classic Hodgkin Lymphoma 7 239558 -NCIT:C8650 Refractory Lymphocyte-Depleted Classic Hodgkin Lymphoma 7 239559 -NCIT:C8833 Refractory Mixed Cellularity Classic Hodgkin Lymphoma 7 239560 -NCIT:C8838 Refractory Nodular Sclerosis Classic Hodgkin Lymphoma 7 239561 -NCIT:C7260 Refractory Nodular Lymphocyte Predominant Hodgkin Lymphoma 6 239562 -NCIT:C134157 Recurrent Lymphoma 4 239563 -NCIT:C138013 Recurrent B-Cell Lymphoma, Unclassifiable, with Features Intermediate between Diffuse Large B-Cell Lymphoma and Classic Hodgkin Lymphoma 5 239564 -NCIT:C138019 Recurrent Central Nervous System Lymphoma 5 239565 -NCIT:C146990 Recurrent Central Nervous System Non-Hodgkin Lymphoma 6 239566 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 7 239567 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 239568 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 7 239569 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 239570 -NCIT:C138021 Recurrent Testicular Lymphoma 5 239571 -NCIT:C138023 Recurrent Breast Lymphoma 5 239572 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 6 239573 -NCIT:C142876 Recurrent Primary Cutaneous Lymphoma 5 239574 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 6 239575 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 6 239576 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 7 239577 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 7 239578 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 7 239579 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 7 239580 -NCIT:C8686 Recurrent Mycosis Fungoides 7 239581 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 8 239582 -NCIT:C147863 Recurrent EBV-Related Lymphoma 5 239583 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 6 239584 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 6 239585 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 7 239586 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 7 239587 -NCIT:C153175 Recurrent Mediastinal Lymphoma 5 239588 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 6 239589 -NCIT:C157681 Recurrent Primary Bone Lymphoma 5 239590 -NCIT:C187196 Recurrent Childhood Lymphoma 5 239591 -NCIT:C115369 Recurrent Childhood Non-Hodgkin Lymphoma 6 239592 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 7 239593 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 7 239594 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 7 239595 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 7 239596 -NCIT:C8059 Recurrent Childhood Hodgkin Lymphoma 6 239597 -NCIT:C4937 Recurrent Hodgkin Lymphoma 5 239598 -NCIT:C133592 Recurrent Classic Hodgkin Lymphoma 6 239599 -NCIT:C136971 Recurrent Lymphocyte-Rich Classic Hodgkin Lymphoma 7 239600 -NCIT:C8649 Recurrent Lymphocyte-Depleted Classic Hodgkin Lymphoma 7 239601 -NCIT:C8832 Recurrent Mixed Cellularity Classic Hodgkin Lymphoma 7 239602 -NCIT:C8837 Recurrent Nodular Sclerosis Classic Hodgkin Lymphoma 7 239603 -NCIT:C7259 Recurrent Nodular Lymphocyte Predominant Hodgkin Lymphoma 6 239604 -NCIT:C7789 Recurrent Adult Hodgkin Lymphoma 6 239605 -NCIT:C8059 Recurrent Childhood Hodgkin Lymphoma 6 239606 -NCIT:C9251 Recurrent Non-Hodgkin Lymphoma 5 239607 -NCIT:C115369 Recurrent Childhood Non-Hodgkin Lymphoma 6 239608 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 7 239609 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 7 239610 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 7 239611 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 7 239612 -NCIT:C146990 Recurrent Central Nervous System Non-Hodgkin Lymphoma 6 239613 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 7 239614 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 239615 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 7 239616 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 239617 -NCIT:C156232 Recurrent Aggressive Non-Hodgkin Lymphoma 6 239618 -NCIT:C178553 Recurrent Aggressive B-Cell Non-Hodgkin Lymphoma 7 239619 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 8 239620 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 8 239621 -NCIT:C5008 Recurrent Burkitt Lymphoma 8 239622 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 9 239623 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 9 239624 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 8 239625 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 9 239626 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 9 239627 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 8 239628 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 9 239629 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 9 239630 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 8 239631 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 8 239632 -NCIT:C178554 Recurrent Aggressive T-Cell Non-Hodgkin Lymphoma 7 239633 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 8 239634 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 8 239635 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 239636 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 8 239637 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 8 239638 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 8 239639 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 8 239640 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 8 239641 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 8 239642 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 8 239643 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 8 239644 -NCIT:C8490 Recurrent Aggressive Adult Non-Hodgkin Lymphoma 7 239645 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 8 239646 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 8 239647 -NCIT:C8164 Recurrent Adult Lymphoblastic Lymphoma 8 239648 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 8 239649 -NCIT:C181796 Recurrent Indolent Non-Hodgkin Lymphoma 6 239650 -NCIT:C183512 Recurrent Indolent B-Cell Non-Hodgkin Lymphoma 7 239651 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 8 239652 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 9 239653 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 239654 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 9 239655 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 8 239656 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 8 239657 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 8 239658 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 9 239659 -NCIT:C183513 Recurrent Indolent T-Cell Non-Hodgkin Lymphoma 7 239660 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 8 239661 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 8 239662 -NCIT:C8686 Recurrent Mycosis Fungoides 8 239663 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 9 239664 -NCIT:C8488 Recurrent Indolent Adult Non-Hodgkin Lymphoma 7 239665 -NCIT:C8098 Recurrent Adult Non-Hodgkin Lymphoma 6 239666 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 7 239667 -NCIT:C8488 Recurrent Indolent Adult Non-Hodgkin Lymphoma 7 239668 -NCIT:C8490 Recurrent Aggressive Adult Non-Hodgkin Lymphoma 7 239669 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 8 239670 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 8 239671 -NCIT:C8164 Recurrent Adult Lymphoblastic Lymphoma 8 239672 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 8 239673 -NCIT:C8663 Recurrent T-Cell Non-Hodgkin Lymphoma 6 239674 -NCIT:C178554 Recurrent Aggressive T-Cell Non-Hodgkin Lymphoma 7 239675 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 8 239676 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 8 239677 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 239678 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 8 239679 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 8 239680 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 8 239681 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 8 239682 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 8 239683 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 8 239684 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 8 239685 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 8 239686 -NCIT:C183513 Recurrent Indolent T-Cell Non-Hodgkin Lymphoma 7 239687 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 8 239688 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 8 239689 -NCIT:C8686 Recurrent Mycosis Fungoides 8 239690 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 9 239691 -NCIT:C8688 Recurrent Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 7 239692 -NCIT:C115439 Recurrent Mycosis Fungoides and Sezary Syndrome 8 239693 -NCIT:C176999 Recurrent Sezary Syndrome 9 239694 -NCIT:C8686 Recurrent Mycosis Fungoides 9 239695 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 239696 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 8 239697 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 8 239698 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 239699 -NCIT:C157689 Recurrent NK-Cell Lymphoma, Unclassifiable 8 239700 -NCIT:C165789 Recurrent Transformed T-cell Non-Hodgkin Lymphoma 8 239701 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 9 239702 -NCIT:C168778 Recurrent Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 8 239703 -NCIT:C168780 Recurrent Follicular T-Cell Lymphoma 8 239704 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 8 239705 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 239706 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 239707 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 239708 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 239709 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 239710 -NCIT:C8686 Recurrent Mycosis Fungoides 9 239711 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 239712 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 8 239713 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 8 239714 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 8 239715 -NCIT:C9250 Recurrent Anaplastic Large Cell Lymphoma 8 239716 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 9 239717 -NCIT:C162688 Recurrent Systemic Anaplastic Large Cell Lymphoma 9 239718 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 239719 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 239720 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 239721 -NCIT:C8702 Recurrent Transformed Non-Hodgkin Lymphoma 6 239722 -NCIT:C158149 Recurrent Transformed B-Cell Non-Hodgkin Lymphoma 7 239723 -NCIT:C160232 Recurrent Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 8 239724 -NCIT:C186483 Recurrent Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 8 239725 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 9 239726 -NCIT:C165789 Recurrent Transformed T-cell Non-Hodgkin Lymphoma 7 239727 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 8 239728 -NCIT:C8841 Recurrent B-Cell Non-Hodgkin Lymphoma 6 239729 -NCIT:C165799 Recurrent Mature B-Cell Non-Hodgkin Lymphoma 7 239730 -NCIT:C158149 Recurrent Transformed B-Cell Non-Hodgkin Lymphoma 8 239731 -NCIT:C160232 Recurrent Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 9 239732 -NCIT:C186483 Recurrent Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 9 239733 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 10 239734 -NCIT:C5007 Recurrent Follicular Lymphoma 8 239735 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 9 239736 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 9 239737 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 9 239738 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 10 239739 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 10 239740 -NCIT:C5008 Recurrent Burkitt Lymphoma 8 239741 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 9 239742 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 9 239743 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 8 239744 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 9 239745 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 239746 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 9 239747 -NCIT:C8154 Recurrent Small Lymphocytic Lymphoma 8 239748 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 8 239749 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 8 239750 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 9 239751 -NCIT:C8852 Recurrent Diffuse Large B-Cell Lymphoma 8 239752 -NCIT:C138015 Recurrent Extranodal Diffuse Large B-cell Lymphoma 9 239753 -NCIT:C138025 Recurrent Intravascular Large B-Cell Lymphoma 9 239754 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 239755 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 239756 -NCIT:C156696 Recurrent T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 9 239757 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 239758 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 239759 -NCIT:C157679 Recurrent Primary Effusion Lymphoma 9 239760 -NCIT:C157683 Recurrent Plasmablastic Lymphoma 9 239761 -NCIT:C160229 Recurrent High Grade B-Cell Lymphoma 9 239762 -NCIT:C151980 Recurrent High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 10 239763 -NCIT:C162451 Recurrent High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 10 239764 -NCIT:C188788 Recurrent High Grade B-Cell Lymphoma, Not Otherwise Specified 10 239765 -NCIT:C165240 Recurrent Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 239766 -NCIT:C160230 Recurrent Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 10 239767 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 239768 -NCIT:C182035 Recurrent Immunoblastic Lymphoma 10 239769 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 11 239770 -NCIT:C8926 Recurrent Centroblastic Lymphoma 10 239771 -NCIT:C183140 Recurrent Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 9 239772 -NCIT:C188790 Recurrent ALK-Positive Large B-Cell Lymphoma 9 239773 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 9 239774 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 239775 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 10 239776 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 239777 -NCIT:C178553 Recurrent Aggressive B-Cell Non-Hodgkin Lymphoma 7 239778 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 8 239779 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 8 239780 -NCIT:C5008 Recurrent Burkitt Lymphoma 8 239781 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 9 239782 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 9 239783 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 8 239784 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 9 239785 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 9 239786 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 8 239787 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 9 239788 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 9 239789 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 8 239790 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 8 239791 -NCIT:C183512 Recurrent Indolent B-Cell Non-Hodgkin Lymphoma 7 239792 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 8 239793 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 9 239794 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 239795 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 9 239796 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 8 239797 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 8 239798 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 8 239799 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 9 239800 -NCIT:C150678 Methotrexate-Associated Lymphoma 4 239801 -NCIT:C7252 Methotrexate-Associated Peripheral T-Cell Lymphoma 5 239802 -NCIT:C7253 Methotrexate-Associated Diffuse Large B-Cell Lymphoma 5 239803 -NCIT:C7254 Methotrexate-Associated Follicular Lymphoma 5 239804 -NCIT:C7255 Methotrexate-Related Burkitt Lymphoma 5 239805 -NCIT:C7256 Methotrexate-Associated Hodgkin Lymphoma 5 239806 -NCIT:C153172 Advanced Lymphoma 4 239807 -NCIT:C172371 Advanced Non-Hodgkin Lymphoma 5 239808 -NCIT:C166180 Advanced Anaplastic Large Cell Lymphoma 6 239809 -NCIT:C171264 Advanced Diffuse Large B-Cell Lymphoma 6 239810 -NCIT:C172359 Advanced Follicular Lymphoma 6 239811 -NCIT:C172360 Advanced Marginal Zone Lymphoma 6 239812 -NCIT:C172361 Advanced Transformed Non-Hodgkin Lymphoma 6 239813 -NCIT:C172442 Advanced Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 6 239814 -NCIT:C53283 Advanced Favorable Non-Hodgkin Lymphoma 6 239815 -NCIT:C53284 Advanced Unfavorable Non-Hodgkin Lymphoma 6 239816 -NCIT:C172373 Advanced Hodgkin Lymphoma 5 239817 -NCIT:C68662 Advanced Favorable Hodgkin Lymphoma 6 239818 -NCIT:C68665 Advanced Unfavorable Hodgkin Lymphoma 6 239819 -NCIT:C157657 Unresectable Lymphoma 4 239820 -NCIT:C176994 Locally Advanced Lymphoma 4 239821 -NCIT:C180374 Early Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 5 239822 -NCIT:C27268 Lymphoma by Stage 4 239823 -NCIT:C141139 Lymphoma by Ann Arbor Stage 5 239824 -NCIT:C141140 Non-Hodgkin Lymphoma by Ann Arbor Stage 6 239825 -NCIT:C141235 Adult Non-Hodgkin Lymphoma by Ann Arbor Stage 7 239826 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 8 239827 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 9 239828 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 9 239829 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 9 239830 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 9 239831 -NCIT:C8102 Ann Arbor Stage I Adult Non-Hodgkin Lymphoma 8 239832 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 9 239833 -NCIT:C8464 Ann Arbor Stage I Indolent Adult Non-Hodgkin Lymphoma 9 239834 -NCIT:C9252 Ann Arbor Stage I Aggressive Adult Non-Hodgkin Lymphoma 9 239835 -NCIT:C8079 Ann Arbor Stage I Adult Lymphoblastic Lymphoma 10 239836 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 10 239837 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 10 239838 -NCIT:C8103 Ann Arbor Stage II Adult Non-Hodgkin Lymphoma 8 239839 -NCIT:C68686 Ann Arbor Stage II Aggressive Adult Non-Hodgkin Lymphoma 9 239840 -NCIT:C8125 Ann Arbor Stage II Adult Lymphoblastic Lymphoma 10 239841 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 11 239842 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 11 239843 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 10 239844 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 11 239845 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 11 239846 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 10 239847 -NCIT:C8472 Ann Arbor Stage II Contiguous Adult Aggressive Non-Hodgkin Lymphoma 10 239848 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 11 239849 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 11 239850 -NCIT:C8479 Ann Arbor Stage II Non-Contiguous Aggressive Adult Non-Hodgkin Lymphoma 10 239851 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 11 239852 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 11 239853 -NCIT:C68688 Ann Arbor Stage II Indolent Adult Non-Hodgkin Lymphoma 9 239854 -NCIT:C8467 Ann Arbor Stage II Contiguous Adult Indolent Non-Hodgkin Lymphoma 10 239855 -NCIT:C8478 Ann Arbor Stage II Non-Contiguous Adult Indolent Non-Hodgkin Lymphoma 10 239856 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 9 239857 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 10 239858 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 10 239859 -NCIT:C8466 Ann Arbor Stage II Contiguous Adult Non-Hodgkin Lymphoma 9 239860 -NCIT:C8467 Ann Arbor Stage II Contiguous Adult Indolent Non-Hodgkin Lymphoma 10 239861 -NCIT:C8472 Ann Arbor Stage II Contiguous Adult Aggressive Non-Hodgkin Lymphoma 10 239862 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 11 239863 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 11 239864 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 10 239865 -NCIT:C8477 Ann Arbor Stage II Non-Contiguous Adult Non-Hodgkin Lymphoma 9 239866 -NCIT:C8478 Ann Arbor Stage II Non-Contiguous Adult Indolent Non-Hodgkin Lymphoma 10 239867 -NCIT:C8479 Ann Arbor Stage II Non-Contiguous Aggressive Adult Non-Hodgkin Lymphoma 10 239868 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 11 239869 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 11 239870 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 10 239871 -NCIT:C8104 Ann Arbor Stage III Adult Non-Hodgkin Lymphoma 8 239872 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 9 239873 -NCIT:C8482 Ann Arbor Stage III Indolent Adult Non-Hodgkin Lymphoma 9 239874 -NCIT:C8484 Ann Arbor Stage III Aggressive Adult Non-Hodgkin Lymphoma 9 239875 -NCIT:C8138 Ann Arbor Stage III Adult Lymphoblastic Lymphoma 10 239876 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 10 239877 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 10 239878 -NCIT:C8105 Ann Arbor Stage IV Adult Non-Hodgkin Lymphoma 8 239879 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 9 239880 -NCIT:C8485 Ann Arbor Stage IV Indolent Adult Non-Hodgkin Lymphoma 9 239881 -NCIT:C8487 Ann Arbor Stage IV Aggressive Adult Non-Hodgkin Lymphoma 9 239882 -NCIT:C8151 Ann Arbor Stage IV Adult Lymphoblastic Lymphoma 10 239883 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 10 239884 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 10 239885 -NCIT:C141236 Childhood Non-Hodgkin Lymphoma by Ann Arbor Stage 7 239886 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 8 239887 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 239888 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 239889 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 239890 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 239891 -NCIT:C94791 Ann Arbor Stage I Childhood Non-Hodgkin Lymphoma 8 239892 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 239893 -NCIT:C9056 Ann Arbor Stage I Childhood Lymphoblastic Lymphoma 9 239894 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 9 239895 -NCIT:C94792 Ann Arbor Stage II Childhood Non-Hodgkin Lymphoma 8 239896 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 239897 -NCIT:C9057 Ann Arbor Stage II Childhood Lymphoblastic Lymphoma 9 239898 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 9 239899 -NCIT:C94793 Ann Arbor Stage III Childhood Non-Hodgkin Lymphoma 8 239900 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 239901 -NCIT:C9058 Ann Arbor Stage III Childhood Lymphoblastic Lymphoma 9 239902 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 9 239903 -NCIT:C94794 Ann Arbor Stage IV Childhood Non-Hodgkin Lymphoma 8 239904 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 239905 -NCIT:C9059 Ann Arbor Stage IV Childhood Lymphoblastic Lymphoma 9 239906 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 9 239907 -NCIT:C141243 B-Cell Non-Hodgkin Lymphoma by Ann Arbor Stage 7 239908 -NCIT:C141250 B Lymphoblastic Lymphoma by Ann Arbor Stage 8 239909 -NCIT:C8871 Ann Arbor Stage I B Lymphoblastic Lymphoma 9 239910 -NCIT:C8872 Ann Arbor Stage III B Lymphoblastic Lymphoma 9 239911 -NCIT:C8873 Ann Arbor Stage IV B Lymphoblastic Lymphoma 9 239912 -NCIT:C8937 Ann Arbor Stage II B Lymphoblastic Lymphoma 9 239913 -NCIT:C141253 Burkitt Lymphoma by Ann Arbor Stage 8 239914 -NCIT:C5084 Ann Arbor Stage IV Burkitt Lymphoma 9 239915 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 10 239916 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 10 239917 -NCIT:C8848 Ann Arbor Stage I Burkitt Lymphoma 9 239918 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 10 239919 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 10 239920 -NCIT:C8849 Ann Arbor Stage II Burkitt Lymphoma 9 239921 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 10 239922 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 11 239923 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 11 239924 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 10 239925 -NCIT:C8850 Ann Arbor Stage III Burkitt Lymphoma 9 239926 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 10 239927 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 10 239928 -NCIT:C141254 Diffuse Large B-Cell Lymphoma by Ann Arbor Stage 8 239929 -NCIT:C141262 Primary Mediastinal (Thymic) Large B-Cell Lymphoma by Ann Arbor Stage 9 239930 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 239931 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 239932 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 239933 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 239934 -NCIT:C141263 Centroblastic Lymphoma by Ann Arbor Stage 9 239935 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 10 239936 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 10 239937 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 10 239938 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 10 239939 -NCIT:C8854 Ann Arbor Stage I Diffuse Large B-Cell Lymphoma 9 239940 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 10 239941 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 239942 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 10 239943 -NCIT:C8855 Ann Arbor Stage II Diffuse Large B-Cell Lymphoma 9 239944 -NCIT:C171158 Ann Arbor Stage IIX (Bulky) Diffuse Large B-Cell Lymphoma 10 239945 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 10 239946 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 11 239947 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 11 239948 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 239949 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 10 239950 -NCIT:C8856 Ann Arbor Stage III Diffuse Large B-Cell Lymphoma 9 239951 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 10 239952 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 239953 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 10 239954 -NCIT:C8857 Ann Arbor Stage IV Diffuse Large B-Cell Lymphoma 9 239955 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 10 239956 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 239957 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 10 239958 -NCIT:C141255 Follicular Lymphoma by Ann Arbor Stage 8 239959 -NCIT:C5006 Ann Arbor Stage IV Follicular Lymphoma 9 239960 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 10 239961 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 10 239962 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 10 239963 -NCIT:C8859 Ann Arbor Stage I Follicular Lymphoma 9 239964 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 10 239965 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 10 239966 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 10 239967 -NCIT:C8860 Ann Arbor Stage II Follicular Lymphoma 9 239968 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 10 239969 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 11 239970 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 11 239971 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 10 239972 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 11 239973 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 11 239974 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 10 239975 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 11 239976 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 11 239977 -NCIT:C8861 Ann Arbor Stage III Follicular Lymphoma 9 239978 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 10 239979 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 10 239980 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 10 239981 -NCIT:C141256 Lymphoplasmacytic Lymphoma by Ann Arbor Stage 8 239982 -NCIT:C8653 Ann Arbor Stage I Lymphoplasmacytic Lymphoma 9 239983 -NCIT:C8654 Ann Arbor Stage II Lymphoplasmacytic Lymphoma 9 239984 -NCIT:C8655 Ann Arbor Stage III Lymphoplasmacytic Lymphoma 9 239985 -NCIT:C8656 Ann Arbor Stage IV Lymphoplasmacytic Lymphoma 9 239986 -NCIT:C141257 Mantle Cell Lymphoma by Ann Arbor Stage 8 239987 -NCIT:C8465 Ann Arbor Stage I Mantle Cell Lymphoma 9 239988 -NCIT:C8483 Ann Arbor Stage III Mantle Cell Lymphoma 9 239989 -NCIT:C8486 Ann Arbor Stage IV Mantle Cell Lymphoma 9 239990 -NCIT:C9202 Ann Arbor Stage II Mantle Cell Lymphoma 9 239991 -NCIT:C8473 Ann Arbor Stage II Contiguous Mantle Cell Lymphoma 10 239992 -NCIT:C9198 Ann Arbor Stage II Non-Contiguous Mantle Cell Lymphoma 10 239993 -NCIT:C141258 Marginal Zone Lymphoma by Ann Arbor Stage 8 239994 -NCIT:C141260 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue by Ann Arbor Stage 9 239995 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 239996 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 239997 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 239998 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 239999 -NCIT:C141261 Nodal Marginal Zone Lymphoma by Ann Arbor Stage 9 240000 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 10 240001 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 10 240002 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 10 240003 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 10 240004 -NCIT:C68678 Ann Arbor Stage I Marginal Zone Lymphoma 9 240005 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 240006 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 10 240007 -NCIT:C68679 Ann Arbor Stage II Marginal Zone Lymphoma 9 240008 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 240009 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 10 240010 -NCIT:C68682 Ann Arbor Stage III Marginal Zone Lymphoma 9 240011 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 240012 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 10 240013 -NCIT:C68683 Ann Arbor Stage IV Marginal Zone Lymphoma 9 240014 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 240015 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 10 240016 -NCIT:C141259 Small Lymphocytic Lymphoma by Ann Arbor Stage 8 240017 -NCIT:C8070 Ann Arbor Stage I Small Lymphocytic Lymphoma 9 240018 -NCIT:C8115 Ann Arbor Stage II Small Lymphocytic Lymphoma 9 240019 -NCIT:C8128 Ann Arbor Stage III Small Lymphocytic Lymphoma 9 240020 -NCIT:C8141 Ann Arbor Stage IV Small Lymphocytic Lymphoma 9 240021 -NCIT:C27308 Ann Arbor Stage I B-Cell Non-Hodgkin Lymphoma 8 240022 -NCIT:C68678 Ann Arbor Stage I Marginal Zone Lymphoma 9 240023 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 240024 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 10 240025 -NCIT:C8070 Ann Arbor Stage I Small Lymphocytic Lymphoma 9 240026 -NCIT:C8465 Ann Arbor Stage I Mantle Cell Lymphoma 9 240027 -NCIT:C8653 Ann Arbor Stage I Lymphoplasmacytic Lymphoma 9 240028 -NCIT:C8848 Ann Arbor Stage I Burkitt Lymphoma 9 240029 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 10 240030 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 10 240031 -NCIT:C8854 Ann Arbor Stage I Diffuse Large B-Cell Lymphoma 9 240032 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 10 240033 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 240034 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 10 240035 -NCIT:C8859 Ann Arbor Stage I Follicular Lymphoma 9 240036 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 10 240037 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 10 240038 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 10 240039 -NCIT:C8871 Ann Arbor Stage I B Lymphoblastic Lymphoma 9 240040 -NCIT:C8843 Ann Arbor Stage II B-Cell Non-Hodgkin Lymphoma 8 240041 -NCIT:C68679 Ann Arbor Stage II Marginal Zone Lymphoma 9 240042 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 240043 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 10 240044 -NCIT:C8115 Ann Arbor Stage II Small Lymphocytic Lymphoma 9 240045 -NCIT:C8654 Ann Arbor Stage II Lymphoplasmacytic Lymphoma 9 240046 -NCIT:C8849 Ann Arbor Stage II Burkitt Lymphoma 9 240047 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 10 240048 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 11 240049 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 11 240050 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 10 240051 -NCIT:C8855 Ann Arbor Stage II Diffuse Large B-Cell Lymphoma 9 240052 -NCIT:C171158 Ann Arbor Stage IIX (Bulky) Diffuse Large B-Cell Lymphoma 10 240053 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 10 240054 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 11 240055 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 11 240056 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 240057 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 10 240058 -NCIT:C8860 Ann Arbor Stage II Follicular Lymphoma 9 240059 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 10 240060 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 11 240061 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 11 240062 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 10 240063 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 11 240064 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 11 240065 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 10 240066 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 11 240067 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 11 240068 -NCIT:C8937 Ann Arbor Stage II B Lymphoblastic Lymphoma 9 240069 -NCIT:C9202 Ann Arbor Stage II Mantle Cell Lymphoma 9 240070 -NCIT:C8473 Ann Arbor Stage II Contiguous Mantle Cell Lymphoma 10 240071 -NCIT:C9198 Ann Arbor Stage II Non-Contiguous Mantle Cell Lymphoma 10 240072 -NCIT:C8844 Ann Arbor Stage III B-Cell Non-Hodgkin Lymphoma 8 240073 -NCIT:C68682 Ann Arbor Stage III Marginal Zone Lymphoma 9 240074 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 240075 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 10 240076 -NCIT:C8128 Ann Arbor Stage III Small Lymphocytic Lymphoma 9 240077 -NCIT:C8483 Ann Arbor Stage III Mantle Cell Lymphoma 9 240078 -NCIT:C8655 Ann Arbor Stage III Lymphoplasmacytic Lymphoma 9 240079 -NCIT:C8850 Ann Arbor Stage III Burkitt Lymphoma 9 240080 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 10 240081 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 10 240082 -NCIT:C8856 Ann Arbor Stage III Diffuse Large B-Cell Lymphoma 9 240083 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 10 240084 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 240085 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 10 240086 -NCIT:C8861 Ann Arbor Stage III Follicular Lymphoma 9 240087 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 10 240088 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 10 240089 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 10 240090 -NCIT:C8872 Ann Arbor Stage III B Lymphoblastic Lymphoma 9 240091 -NCIT:C8845 Ann Arbor Stage IV B-Cell Non-Hodgkin Lymphoma 8 240092 -NCIT:C5006 Ann Arbor Stage IV Follicular Lymphoma 9 240093 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 10 240094 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 10 240095 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 10 240096 -NCIT:C5084 Ann Arbor Stage IV Burkitt Lymphoma 9 240097 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 10 240098 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 10 240099 -NCIT:C68683 Ann Arbor Stage IV Marginal Zone Lymphoma 9 240100 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 240101 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 10 240102 -NCIT:C8141 Ann Arbor Stage IV Small Lymphocytic Lymphoma 9 240103 -NCIT:C8486 Ann Arbor Stage IV Mantle Cell Lymphoma 9 240104 -NCIT:C8656 Ann Arbor Stage IV Lymphoplasmacytic Lymphoma 9 240105 -NCIT:C8857 Ann Arbor Stage IV Diffuse Large B-Cell Lymphoma 9 240106 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 10 240107 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 240108 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 10 240109 -NCIT:C8873 Ann Arbor Stage IV B Lymphoblastic Lymphoma 9 240110 -NCIT:C141247 T-Cell Non-Hodgkin Lymphoma by Ann Arbor Stage 7 240111 -NCIT:C141272 Mature T- and NK-Cell Lymphoma by Ann Arbor Stage 8 240112 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 9 240113 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 10 240114 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 10 240115 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 10 240116 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 10 240117 -NCIT:C141284 Noncutaneous Anaplastic Large Cell Lymphoma by Ann Arbor Stage 9 240118 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 10 240119 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 240120 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 240121 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 240122 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 240123 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 10 240124 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 240125 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 10 240126 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 240127 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 10 240128 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 240129 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 10 240130 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 240131 -NCIT:C141294 Angioimmunoblastic T-Cell Lymphoma by Ann Arbor Stage 9 240132 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 10 240133 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 10 240134 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 10 240135 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 10 240136 -NCIT:C141295 Enteropathy-Associated T-Cell Lymphoma by Ann Arbor Stage 9 240137 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 10 240138 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 10 240139 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 10 240140 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 10 240141 -NCIT:C141296 Nasal Type NK/T-Cell Lymphoma by Ann Arbor Stage 9 240142 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 10 240143 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 10 240144 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 10 240145 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 10 240146 -NCIT:C8690 Ann Arbor Stage I Mature T- and NK-Cell Lymphoma 9 240147 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 10 240148 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 10 240149 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 240150 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 10 240151 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 10 240152 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 10 240153 -NCIT:C8691 Ann Arbor Stage II Mature T- and NK-Cell Lymphoma 9 240154 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 10 240155 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 10 240156 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 240157 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 10 240158 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 10 240159 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 10 240160 -NCIT:C8692 Ann Arbor Stage III Mature T- and NK-Cell Lymphoma 9 240161 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 10 240162 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 10 240163 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 240164 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 10 240165 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 10 240166 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 10 240167 -NCIT:C8693 Ann Arbor Stage IV Mature T- and NK-Cell Lymphoma 9 240168 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 10 240169 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 10 240170 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 240171 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 10 240172 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 10 240173 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 10 240174 -NCIT:C8665 Ann Arbor Stage I T-Cell Non-Hodgkin Lymphoma 8 240175 -NCIT:C8690 Ann Arbor Stage I Mature T- and NK-Cell Lymphoma 9 240176 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 10 240177 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 10 240178 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 240179 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 10 240180 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 10 240181 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 10 240182 -NCIT:C8666 Ann Arbor Stage II T-Cell Non-Hodgkin Lymphoma 8 240183 -NCIT:C8691 Ann Arbor Stage II Mature T- and NK-Cell Lymphoma 9 240184 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 10 240185 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 10 240186 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 240187 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 10 240188 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 10 240189 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 10 240190 -NCIT:C8667 Ann Arbor Stage III T-Cell Non-Hodgkin Lymphoma 8 240191 -NCIT:C8692 Ann Arbor Stage III Mature T- and NK-Cell Lymphoma 9 240192 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 10 240193 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 10 240194 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 240195 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 10 240196 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 10 240197 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 10 240198 -NCIT:C8668 Ann Arbor Stage IV T-Cell Non-Hodgkin Lymphoma 8 240199 -NCIT:C8693 Ann Arbor Stage IV Mature T- and NK-Cell Lymphoma 9 240200 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 10 240201 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 10 240202 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 240203 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 10 240204 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 10 240205 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 10 240206 -NCIT:C8520 Ann Arbor Stage I Non-Hodgkin Lymphoma 7 240207 -NCIT:C27308 Ann Arbor Stage I B-Cell Non-Hodgkin Lymphoma 8 240208 -NCIT:C68678 Ann Arbor Stage I Marginal Zone Lymphoma 9 240209 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 240210 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 10 240211 -NCIT:C8070 Ann Arbor Stage I Small Lymphocytic Lymphoma 9 240212 -NCIT:C8465 Ann Arbor Stage I Mantle Cell Lymphoma 9 240213 -NCIT:C8653 Ann Arbor Stage I Lymphoplasmacytic Lymphoma 9 240214 -NCIT:C8848 Ann Arbor Stage I Burkitt Lymphoma 9 240215 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 10 240216 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 10 240217 -NCIT:C8854 Ann Arbor Stage I Diffuse Large B-Cell Lymphoma 9 240218 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 10 240219 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 240220 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 10 240221 -NCIT:C8859 Ann Arbor Stage I Follicular Lymphoma 9 240222 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 10 240223 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 10 240224 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 10 240225 -NCIT:C8871 Ann Arbor Stage I B Lymphoblastic Lymphoma 9 240226 -NCIT:C8102 Ann Arbor Stage I Adult Non-Hodgkin Lymphoma 8 240227 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 9 240228 -NCIT:C8464 Ann Arbor Stage I Indolent Adult Non-Hodgkin Lymphoma 9 240229 -NCIT:C9252 Ann Arbor Stage I Aggressive Adult Non-Hodgkin Lymphoma 9 240230 -NCIT:C8079 Ann Arbor Stage I Adult Lymphoblastic Lymphoma 10 240231 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 10 240232 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 10 240233 -NCIT:C8665 Ann Arbor Stage I T-Cell Non-Hodgkin Lymphoma 8 240234 -NCIT:C8690 Ann Arbor Stage I Mature T- and NK-Cell Lymphoma 9 240235 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 10 240236 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 10 240237 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 240238 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 10 240239 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 10 240240 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 10 240241 -NCIT:C94791 Ann Arbor Stage I Childhood Non-Hodgkin Lymphoma 8 240242 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 240243 -NCIT:C9056 Ann Arbor Stage I Childhood Lymphoblastic Lymphoma 9 240244 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 9 240245 -NCIT:C8521 Ann Arbor Stage II Non-Hodgkin Lymphoma 7 240246 -NCIT:C171159 Ann Arbor Stage IIX (Bulky) Non-Hodgkin Lymphoma 8 240247 -NCIT:C171158 Ann Arbor Stage IIX (Bulky) Diffuse Large B-Cell Lymphoma 9 240248 -NCIT:C8103 Ann Arbor Stage II Adult Non-Hodgkin Lymphoma 8 240249 -NCIT:C68686 Ann Arbor Stage II Aggressive Adult Non-Hodgkin Lymphoma 9 240250 -NCIT:C8125 Ann Arbor Stage II Adult Lymphoblastic Lymphoma 10 240251 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 11 240252 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 11 240253 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 10 240254 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 11 240255 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 11 240256 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 10 240257 -NCIT:C8472 Ann Arbor Stage II Contiguous Adult Aggressive Non-Hodgkin Lymphoma 10 240258 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 11 240259 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 11 240260 -NCIT:C8479 Ann Arbor Stage II Non-Contiguous Aggressive Adult Non-Hodgkin Lymphoma 10 240261 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 11 240262 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 11 240263 -NCIT:C68688 Ann Arbor Stage II Indolent Adult Non-Hodgkin Lymphoma 9 240264 -NCIT:C8467 Ann Arbor Stage II Contiguous Adult Indolent Non-Hodgkin Lymphoma 10 240265 -NCIT:C8478 Ann Arbor Stage II Non-Contiguous Adult Indolent Non-Hodgkin Lymphoma 10 240266 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 9 240267 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 10 240268 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 10 240269 -NCIT:C8466 Ann Arbor Stage II Contiguous Adult Non-Hodgkin Lymphoma 9 240270 -NCIT:C8467 Ann Arbor Stage II Contiguous Adult Indolent Non-Hodgkin Lymphoma 10 240271 -NCIT:C8472 Ann Arbor Stage II Contiguous Adult Aggressive Non-Hodgkin Lymphoma 10 240272 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 11 240273 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 11 240274 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 10 240275 -NCIT:C8477 Ann Arbor Stage II Non-Contiguous Adult Non-Hodgkin Lymphoma 9 240276 -NCIT:C8478 Ann Arbor Stage II Non-Contiguous Adult Indolent Non-Hodgkin Lymphoma 10 240277 -NCIT:C8479 Ann Arbor Stage II Non-Contiguous Aggressive Adult Non-Hodgkin Lymphoma 10 240278 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 11 240279 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 11 240280 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 10 240281 -NCIT:C8666 Ann Arbor Stage II T-Cell Non-Hodgkin Lymphoma 8 240282 -NCIT:C8691 Ann Arbor Stage II Mature T- and NK-Cell Lymphoma 9 240283 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 10 240284 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 10 240285 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 240286 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 10 240287 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 10 240288 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 10 240289 -NCIT:C8843 Ann Arbor Stage II B-Cell Non-Hodgkin Lymphoma 8 240290 -NCIT:C68679 Ann Arbor Stage II Marginal Zone Lymphoma 9 240291 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 240292 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 10 240293 -NCIT:C8115 Ann Arbor Stage II Small Lymphocytic Lymphoma 9 240294 -NCIT:C8654 Ann Arbor Stage II Lymphoplasmacytic Lymphoma 9 240295 -NCIT:C8849 Ann Arbor Stage II Burkitt Lymphoma 9 240296 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 10 240297 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 11 240298 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 11 240299 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 10 240300 -NCIT:C8855 Ann Arbor Stage II Diffuse Large B-Cell Lymphoma 9 240301 -NCIT:C171158 Ann Arbor Stage IIX (Bulky) Diffuse Large B-Cell Lymphoma 10 240302 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 10 240303 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 11 240304 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 11 240305 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 240306 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 10 240307 -NCIT:C8860 Ann Arbor Stage II Follicular Lymphoma 9 240308 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 10 240309 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 11 240310 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 11 240311 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 10 240312 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 11 240313 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 11 240314 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 10 240315 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 11 240316 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 11 240317 -NCIT:C8937 Ann Arbor Stage II B Lymphoblastic Lymphoma 9 240318 -NCIT:C9202 Ann Arbor Stage II Mantle Cell Lymphoma 9 240319 -NCIT:C8473 Ann Arbor Stage II Contiguous Mantle Cell Lymphoma 10 240320 -NCIT:C9198 Ann Arbor Stage II Non-Contiguous Mantle Cell Lymphoma 10 240321 -NCIT:C94792 Ann Arbor Stage II Childhood Non-Hodgkin Lymphoma 8 240322 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 240323 -NCIT:C9057 Ann Arbor Stage II Childhood Lymphoblastic Lymphoma 9 240324 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 9 240325 -NCIT:C8522 Ann Arbor Stage III Non-Hodgkin Lymphoma 7 240326 -NCIT:C8104 Ann Arbor Stage III Adult Non-Hodgkin Lymphoma 8 240327 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 9 240328 -NCIT:C8482 Ann Arbor Stage III Indolent Adult Non-Hodgkin Lymphoma 9 240329 -NCIT:C8484 Ann Arbor Stage III Aggressive Adult Non-Hodgkin Lymphoma 9 240330 -NCIT:C8138 Ann Arbor Stage III Adult Lymphoblastic Lymphoma 10 240331 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 10 240332 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 10 240333 -NCIT:C8667 Ann Arbor Stage III T-Cell Non-Hodgkin Lymphoma 8 240334 -NCIT:C8692 Ann Arbor Stage III Mature T- and NK-Cell Lymphoma 9 240335 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 10 240336 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 10 240337 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 240338 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 10 240339 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 10 240340 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 10 240341 -NCIT:C8844 Ann Arbor Stage III B-Cell Non-Hodgkin Lymphoma 8 240342 -NCIT:C68682 Ann Arbor Stage III Marginal Zone Lymphoma 9 240343 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 240344 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 10 240345 -NCIT:C8128 Ann Arbor Stage III Small Lymphocytic Lymphoma 9 240346 -NCIT:C8483 Ann Arbor Stage III Mantle Cell Lymphoma 9 240347 -NCIT:C8655 Ann Arbor Stage III Lymphoplasmacytic Lymphoma 9 240348 -NCIT:C8850 Ann Arbor Stage III Burkitt Lymphoma 9 240349 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 10 240350 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 10 240351 -NCIT:C8856 Ann Arbor Stage III Diffuse Large B-Cell Lymphoma 9 240352 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 10 240353 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 240354 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 10 240355 -NCIT:C8861 Ann Arbor Stage III Follicular Lymphoma 9 240356 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 10 240357 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 10 240358 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 10 240359 -NCIT:C8872 Ann Arbor Stage III B Lymphoblastic Lymphoma 9 240360 -NCIT:C94793 Ann Arbor Stage III Childhood Non-Hodgkin Lymphoma 8 240361 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 240362 -NCIT:C9058 Ann Arbor Stage III Childhood Lymphoblastic Lymphoma 9 240363 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 9 240364 -NCIT:C8523 Ann Arbor Stage IV Non-Hodgkin Lymphoma 7 240365 -NCIT:C8105 Ann Arbor Stage IV Adult Non-Hodgkin Lymphoma 8 240366 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 9 240367 -NCIT:C8485 Ann Arbor Stage IV Indolent Adult Non-Hodgkin Lymphoma 9 240368 -NCIT:C8487 Ann Arbor Stage IV Aggressive Adult Non-Hodgkin Lymphoma 9 240369 -NCIT:C8151 Ann Arbor Stage IV Adult Lymphoblastic Lymphoma 10 240370 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 10 240371 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 10 240372 -NCIT:C8668 Ann Arbor Stage IV T-Cell Non-Hodgkin Lymphoma 8 240373 -NCIT:C8693 Ann Arbor Stage IV Mature T- and NK-Cell Lymphoma 9 240374 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 10 240375 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 10 240376 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 240377 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 10 240378 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 10 240379 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 10 240380 -NCIT:C8845 Ann Arbor Stage IV B-Cell Non-Hodgkin Lymphoma 8 240381 -NCIT:C5006 Ann Arbor Stage IV Follicular Lymphoma 9 240382 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 10 240383 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 10 240384 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 10 240385 -NCIT:C5084 Ann Arbor Stage IV Burkitt Lymphoma 9 240386 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 10 240387 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 10 240388 -NCIT:C68683 Ann Arbor Stage IV Marginal Zone Lymphoma 9 240389 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 240390 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 10 240391 -NCIT:C8141 Ann Arbor Stage IV Small Lymphocytic Lymphoma 9 240392 -NCIT:C8486 Ann Arbor Stage IV Mantle Cell Lymphoma 9 240393 -NCIT:C8656 Ann Arbor Stage IV Lymphoplasmacytic Lymphoma 9 240394 -NCIT:C8857 Ann Arbor Stage IV Diffuse Large B-Cell Lymphoma 9 240395 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 10 240396 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 240397 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 10 240398 -NCIT:C8873 Ann Arbor Stage IV B Lymphoblastic Lymphoma 9 240399 -NCIT:C94794 Ann Arbor Stage IV Childhood Non-Hodgkin Lymphoma 8 240400 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 240401 -NCIT:C9059 Ann Arbor Stage IV Childhood Lymphoblastic Lymphoma 9 240402 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 9 240403 -NCIT:C141141 Hodgkin Lymphoma by Ann Arbor Stage 6 240404 -NCIT:C141222 Lymphocyte-Depleted Classic Hodgkin Lymphoma by Ann Arbor Stage 7 240405 -NCIT:C3583 Ann Arbor Stage III Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 240406 -NCIT:C5064 Ann Arbor Stage I Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 240407 -NCIT:C5065 Ann Arbor Stage I Subdiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 240408 -NCIT:C5066 Ann Arbor Stage I Supradiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 240409 -NCIT:C5067 Ann Arbor Stage II Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 240410 -NCIT:C5068 Ann Arbor Stage II Subdiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 240411 -NCIT:C5069 Ann Arbor Stage II Supradiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 240412 -NCIT:C8651 Ann Arbor Stage IV Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 240413 -NCIT:C141223 Nodular Sclerosis Classic Hodgkin Lymphoma by Ann Arbor Stage 7 240414 -NCIT:C3581 Ann Arbor Stage III Nodular Sclerosis Classic Hodgkin Lymphoma 8 240415 -NCIT:C5081 Ann Arbor Stage II Nodular Sclerosis Classic Hodgkin Lymphoma 8 240416 -NCIT:C5082 Ann Arbor Stage II Subdiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 9 240417 -NCIT:C5083 Ann Arbor Stage II Supradiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 9 240418 -NCIT:C8839 Ann Arbor Stage I Nodular Sclerosis Classic Hodgkin Lymphoma 8 240419 -NCIT:C5079 Ann Arbor Stage I Subdiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 9 240420 -NCIT:C5080 Ann Arbor Stage I Supradiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 9 240421 -NCIT:C8840 Ann Arbor Stage IV Nodular Sclerosis Classic Hodgkin Lymphoma 8 240422 -NCIT:C141224 Mixed Cellularity Classic Hodgkin Lymphoma by Ann Arbor Stage 7 240423 -NCIT:C3582 Ann Arbor Stage III Mixed Cellularity Classic Hodgkin Lymphoma 8 240424 -NCIT:C5077 Ann Arbor Stage II Mixed Cellularity Classic Hodgkin Lymphoma 8 240425 -NCIT:C5078 Ann Arbor Stage II Subdiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 9 240426 -NCIT:C5104 Ann Arbor Stage II Supradiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 9 240427 -NCIT:C8834 Ann Arbor Stage I Mixed Cellularity Classic Hodgkin Lymphoma 8 240428 -NCIT:C5075 Ann Arbor Stage I Subdiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 9 240429 -NCIT:C5076 Ann Arbor Stage I Supradiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 9 240430 -NCIT:C8835 Ann Arbor Stage IV Mixed Cellularity Classic Hodgkin Lymphoma 8 240431 -NCIT:C141225 Nodular Lymphocyte Predominant Hodgkin Lymphoma by Ann Arbor Stage 7 240432 -NCIT:C5070 Ann Arbor Stage II Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 240433 -NCIT:C5071 Ann Arbor Stage II Subdiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 240434 -NCIT:C5072 Ann Arbor Stage II Supradiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 240435 -NCIT:C5634 Ann Arbor Stage I Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 240436 -NCIT:C5073 Ann Arbor Stage I Subdiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 240437 -NCIT:C5074 Ann Arbor Stage I Supradiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 240438 -NCIT:C7261 Ann Arbor Stage IV Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 240439 -NCIT:C7262 Ann Arbor Stage III Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 240440 -NCIT:C141226 Adult Hodgkin Lymphoma by Ann Arbor Stage 7 240441 -NCIT:C9032 Ann Arbor Stage I Adult Hodgkin Lymphoma 8 240442 -NCIT:C9033 Ann Arbor Stage II Adult Hodgkin Lymphoma 8 240443 -NCIT:C9034 Ann Arbor Stage III Adult Hodgkin Lymphoma 8 240444 -NCIT:C9035 Ann Arbor Stage IV Adult Hodgkin Lymphoma 8 240445 -NCIT:C141227 Childhood Hodgkin Lymphoma by Ann Arbor Stage 7 240446 -NCIT:C8055 Ann Arbor Stage II Childhood Hodgkin Lymphoma 8 240447 -NCIT:C8056 Ann Arbor Stage I Childhood Hodgkin Lymphoma 8 240448 -NCIT:C8057 Ann Arbor Stage III Childhood Hodgkin Lymphoma 8 240449 -NCIT:C8058 Ann Arbor Stage IV Childhood Hodgkin Lymphoma 8 240450 -NCIT:C3584 Ann Arbor Stage III Hodgkin Lymphoma 7 240451 -NCIT:C3581 Ann Arbor Stage III Nodular Sclerosis Classic Hodgkin Lymphoma 8 240452 -NCIT:C3582 Ann Arbor Stage III Mixed Cellularity Classic Hodgkin Lymphoma 8 240453 -NCIT:C3583 Ann Arbor Stage III Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 240454 -NCIT:C3914 Ann Arbor Stage IIIA Hodgkin Lymphoma 8 240455 -NCIT:C4058 Ann Arbor Stage IIIB Hodgkin Lymphoma 8 240456 -NCIT:C7262 Ann Arbor Stage III Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 240457 -NCIT:C8057 Ann Arbor Stage III Childhood Hodgkin Lymphoma 8 240458 -NCIT:C9034 Ann Arbor Stage III Adult Hodgkin Lymphoma 8 240459 -NCIT:C8517 Ann Arbor Stage I Hodgkin Lymphoma 7 240460 -NCIT:C3911 Ann Arbor Stage IA Hodgkin Lymphoma 8 240461 -NCIT:C5011 Ann Arbor Stage I Supradiaphragmatic Hodgkin Lymphoma 8 240462 -NCIT:C5066 Ann Arbor Stage I Supradiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 240463 -NCIT:C5074 Ann Arbor Stage I Supradiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 240464 -NCIT:C5076 Ann Arbor Stage I Supradiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 9 240465 -NCIT:C5080 Ann Arbor Stage I Supradiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 9 240466 -NCIT:C5012 Ann Arbor Stage I Subdiaphragmatic Hodgkin Lymphoma 8 240467 -NCIT:C5065 Ann Arbor Stage I Subdiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 240468 -NCIT:C5073 Ann Arbor Stage I Subdiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 240469 -NCIT:C5075 Ann Arbor Stage I Subdiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 9 240470 -NCIT:C5079 Ann Arbor Stage I Subdiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 9 240471 -NCIT:C5064 Ann Arbor Stage I Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 240472 -NCIT:C5065 Ann Arbor Stage I Subdiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 240473 -NCIT:C5066 Ann Arbor Stage I Supradiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 240474 -NCIT:C5632 Ann Arbor Stage IB Hodgkin Lymphoma 8 240475 -NCIT:C5634 Ann Arbor Stage I Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 240476 -NCIT:C5073 Ann Arbor Stage I Subdiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 240477 -NCIT:C5074 Ann Arbor Stage I Supradiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 240478 -NCIT:C8056 Ann Arbor Stage I Childhood Hodgkin Lymphoma 8 240479 -NCIT:C8834 Ann Arbor Stage I Mixed Cellularity Classic Hodgkin Lymphoma 8 240480 -NCIT:C5075 Ann Arbor Stage I Subdiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 9 240481 -NCIT:C5076 Ann Arbor Stage I Supradiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 9 240482 -NCIT:C8839 Ann Arbor Stage I Nodular Sclerosis Classic Hodgkin Lymphoma 8 240483 -NCIT:C5079 Ann Arbor Stage I Subdiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 9 240484 -NCIT:C5080 Ann Arbor Stage I Supradiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 9 240485 -NCIT:C9032 Ann Arbor Stage I Adult Hodgkin Lymphoma 8 240486 -NCIT:C8518 Ann Arbor Stage II Hodgkin Lymphoma 7 240487 -NCIT:C3912 Ann Arbor Stage IIA Hodgkin Lymphoma 8 240488 -NCIT:C3913 Ann Arbor Stage IIB Hodgkin Lymphoma 8 240489 -NCIT:C5009 Ann Arbor Stage II Supradiaphragmatic Hodgkin Lymphoma 8 240490 -NCIT:C5069 Ann Arbor Stage II Supradiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 240491 -NCIT:C5072 Ann Arbor Stage II Supradiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 240492 -NCIT:C5083 Ann Arbor Stage II Supradiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 9 240493 -NCIT:C5104 Ann Arbor Stage II Supradiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 9 240494 -NCIT:C5010 Ann Arbor Stage II Subdiaphragmatic Hodgkin Lymphoma 8 240495 -NCIT:C5068 Ann Arbor Stage II Subdiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 240496 -NCIT:C5071 Ann Arbor Stage II Subdiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 240497 -NCIT:C5078 Ann Arbor Stage II Subdiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 9 240498 -NCIT:C5082 Ann Arbor Stage II Subdiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 9 240499 -NCIT:C5067 Ann Arbor Stage II Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 240500 -NCIT:C5068 Ann Arbor Stage II Subdiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 240501 -NCIT:C5069 Ann Arbor Stage II Supradiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 240502 -NCIT:C5070 Ann Arbor Stage II Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 240503 -NCIT:C5071 Ann Arbor Stage II Subdiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 240504 -NCIT:C5072 Ann Arbor Stage II Supradiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 240505 -NCIT:C5077 Ann Arbor Stage II Mixed Cellularity Classic Hodgkin Lymphoma 8 240506 -NCIT:C5078 Ann Arbor Stage II Subdiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 9 240507 -NCIT:C5104 Ann Arbor Stage II Supradiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 9 240508 -NCIT:C5081 Ann Arbor Stage II Nodular Sclerosis Classic Hodgkin Lymphoma 8 240509 -NCIT:C5082 Ann Arbor Stage II Subdiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 9 240510 -NCIT:C5083 Ann Arbor Stage II Supradiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 9 240511 -NCIT:C8055 Ann Arbor Stage II Childhood Hodgkin Lymphoma 8 240512 -NCIT:C9033 Ann Arbor Stage II Adult Hodgkin Lymphoma 8 240513 -NCIT:C8519 Ann Arbor Stage IV Hodgkin Lymphoma 7 240514 -NCIT:C4059 Ann Arbor Stage IVA Hodgkin Lymphoma 8 240515 -NCIT:C5633 Ann Arbor Stage IVB Hodgkin Lymphoma 8 240516 -NCIT:C7261 Ann Arbor Stage IV Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 240517 -NCIT:C8058 Ann Arbor Stage IV Childhood Hodgkin Lymphoma 8 240518 -NCIT:C8651 Ann Arbor Stage IV Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 240519 -NCIT:C8835 Ann Arbor Stage IV Mixed Cellularity Classic Hodgkin Lymphoma 8 240520 -NCIT:C8840 Ann Arbor Stage IV Nodular Sclerosis Classic Hodgkin Lymphoma 8 240521 -NCIT:C9035 Ann Arbor Stage IV Adult Hodgkin Lymphoma 8 240522 -NCIT:C8318 Ann Arbor Stage I Lymphoma 6 240523 -NCIT:C8517 Ann Arbor Stage I Hodgkin Lymphoma 7 240524 -NCIT:C3911 Ann Arbor Stage IA Hodgkin Lymphoma 8 240525 -NCIT:C5011 Ann Arbor Stage I Supradiaphragmatic Hodgkin Lymphoma 8 240526 -NCIT:C5066 Ann Arbor Stage I Supradiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 240527 -NCIT:C5074 Ann Arbor Stage I Supradiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 240528 -NCIT:C5076 Ann Arbor Stage I Supradiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 9 240529 -NCIT:C5080 Ann Arbor Stage I Supradiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 9 240530 -NCIT:C5012 Ann Arbor Stage I Subdiaphragmatic Hodgkin Lymphoma 8 240531 -NCIT:C5065 Ann Arbor Stage I Subdiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 240532 -NCIT:C5073 Ann Arbor Stage I Subdiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 240533 -NCIT:C5075 Ann Arbor Stage I Subdiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 9 240534 -NCIT:C5079 Ann Arbor Stage I Subdiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 9 240535 -NCIT:C5064 Ann Arbor Stage I Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 240536 -NCIT:C5065 Ann Arbor Stage I Subdiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 240537 -NCIT:C5066 Ann Arbor Stage I Supradiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 240538 -NCIT:C5632 Ann Arbor Stage IB Hodgkin Lymphoma 8 240539 -NCIT:C5634 Ann Arbor Stage I Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 240540 -NCIT:C5073 Ann Arbor Stage I Subdiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 240541 -NCIT:C5074 Ann Arbor Stage I Supradiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 240542 -NCIT:C8056 Ann Arbor Stage I Childhood Hodgkin Lymphoma 8 240543 -NCIT:C8834 Ann Arbor Stage I Mixed Cellularity Classic Hodgkin Lymphoma 8 240544 -NCIT:C5075 Ann Arbor Stage I Subdiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 9 240545 -NCIT:C5076 Ann Arbor Stage I Supradiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 9 240546 -NCIT:C8839 Ann Arbor Stage I Nodular Sclerosis Classic Hodgkin Lymphoma 8 240547 -NCIT:C5079 Ann Arbor Stage I Subdiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 9 240548 -NCIT:C5080 Ann Arbor Stage I Supradiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 9 240549 -NCIT:C9032 Ann Arbor Stage I Adult Hodgkin Lymphoma 8 240550 -NCIT:C8520 Ann Arbor Stage I Non-Hodgkin Lymphoma 7 240551 -NCIT:C27308 Ann Arbor Stage I B-Cell Non-Hodgkin Lymphoma 8 240552 -NCIT:C68678 Ann Arbor Stage I Marginal Zone Lymphoma 9 240553 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 240554 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 10 240555 -NCIT:C8070 Ann Arbor Stage I Small Lymphocytic Lymphoma 9 240556 -NCIT:C8465 Ann Arbor Stage I Mantle Cell Lymphoma 9 240557 -NCIT:C8653 Ann Arbor Stage I Lymphoplasmacytic Lymphoma 9 240558 -NCIT:C8848 Ann Arbor Stage I Burkitt Lymphoma 9 240559 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 10 240560 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 10 240561 -NCIT:C8854 Ann Arbor Stage I Diffuse Large B-Cell Lymphoma 9 240562 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 10 240563 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 240564 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 10 240565 -NCIT:C8859 Ann Arbor Stage I Follicular Lymphoma 9 240566 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 10 240567 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 10 240568 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 10 240569 -NCIT:C8871 Ann Arbor Stage I B Lymphoblastic Lymphoma 9 240570 -NCIT:C8102 Ann Arbor Stage I Adult Non-Hodgkin Lymphoma 8 240571 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 9 240572 -NCIT:C8464 Ann Arbor Stage I Indolent Adult Non-Hodgkin Lymphoma 9 240573 -NCIT:C9252 Ann Arbor Stage I Aggressive Adult Non-Hodgkin Lymphoma 9 240574 -NCIT:C8079 Ann Arbor Stage I Adult Lymphoblastic Lymphoma 10 240575 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 10 240576 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 10 240577 -NCIT:C8665 Ann Arbor Stage I T-Cell Non-Hodgkin Lymphoma 8 240578 -NCIT:C8690 Ann Arbor Stage I Mature T- and NK-Cell Lymphoma 9 240579 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 10 240580 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 10 240581 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 240582 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 10 240583 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 10 240584 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 10 240585 -NCIT:C94791 Ann Arbor Stage I Childhood Non-Hodgkin Lymphoma 8 240586 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 240587 -NCIT:C9056 Ann Arbor Stage I Childhood Lymphoblastic Lymphoma 9 240588 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 9 240589 -NCIT:C94797 Ann Arbor Stage I AIDS-Related Lymphoma 7 240590 -NCIT:C8319 Ann Arbor Stage II Lymphoma 6 240591 -NCIT:C8518 Ann Arbor Stage II Hodgkin Lymphoma 7 240592 -NCIT:C3912 Ann Arbor Stage IIA Hodgkin Lymphoma 8 240593 -NCIT:C3913 Ann Arbor Stage IIB Hodgkin Lymphoma 8 240594 -NCIT:C5009 Ann Arbor Stage II Supradiaphragmatic Hodgkin Lymphoma 8 240595 -NCIT:C5069 Ann Arbor Stage II Supradiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 240596 -NCIT:C5072 Ann Arbor Stage II Supradiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 240597 -NCIT:C5083 Ann Arbor Stage II Supradiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 9 240598 -NCIT:C5104 Ann Arbor Stage II Supradiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 9 240599 -NCIT:C5010 Ann Arbor Stage II Subdiaphragmatic Hodgkin Lymphoma 8 240600 -NCIT:C5068 Ann Arbor Stage II Subdiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 240601 -NCIT:C5071 Ann Arbor Stage II Subdiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 240602 -NCIT:C5078 Ann Arbor Stage II Subdiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 9 240603 -NCIT:C5082 Ann Arbor Stage II Subdiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 9 240604 -NCIT:C5067 Ann Arbor Stage II Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 240605 -NCIT:C5068 Ann Arbor Stage II Subdiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 240606 -NCIT:C5069 Ann Arbor Stage II Supradiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 240607 -NCIT:C5070 Ann Arbor Stage II Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 240608 -NCIT:C5071 Ann Arbor Stage II Subdiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 240609 -NCIT:C5072 Ann Arbor Stage II Supradiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 9 240610 -NCIT:C5077 Ann Arbor Stage II Mixed Cellularity Classic Hodgkin Lymphoma 8 240611 -NCIT:C5078 Ann Arbor Stage II Subdiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 9 240612 -NCIT:C5104 Ann Arbor Stage II Supradiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 9 240613 -NCIT:C5081 Ann Arbor Stage II Nodular Sclerosis Classic Hodgkin Lymphoma 8 240614 -NCIT:C5082 Ann Arbor Stage II Subdiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 9 240615 -NCIT:C5083 Ann Arbor Stage II Supradiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 9 240616 -NCIT:C8055 Ann Arbor Stage II Childhood Hodgkin Lymphoma 8 240617 -NCIT:C9033 Ann Arbor Stage II Adult Hodgkin Lymphoma 8 240618 -NCIT:C8521 Ann Arbor Stage II Non-Hodgkin Lymphoma 7 240619 -NCIT:C171159 Ann Arbor Stage IIX (Bulky) Non-Hodgkin Lymphoma 8 240620 -NCIT:C171158 Ann Arbor Stage IIX (Bulky) Diffuse Large B-Cell Lymphoma 9 240621 -NCIT:C8103 Ann Arbor Stage II Adult Non-Hodgkin Lymphoma 8 240622 -NCIT:C68686 Ann Arbor Stage II Aggressive Adult Non-Hodgkin Lymphoma 9 240623 -NCIT:C8125 Ann Arbor Stage II Adult Lymphoblastic Lymphoma 10 240624 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 11 240625 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 11 240626 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 10 240627 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 11 240628 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 11 240629 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 10 240630 -NCIT:C8472 Ann Arbor Stage II Contiguous Adult Aggressive Non-Hodgkin Lymphoma 10 240631 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 11 240632 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 11 240633 -NCIT:C8479 Ann Arbor Stage II Non-Contiguous Aggressive Adult Non-Hodgkin Lymphoma 10 240634 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 11 240635 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 11 240636 -NCIT:C68688 Ann Arbor Stage II Indolent Adult Non-Hodgkin Lymphoma 9 240637 -NCIT:C8467 Ann Arbor Stage II Contiguous Adult Indolent Non-Hodgkin Lymphoma 10 240638 -NCIT:C8478 Ann Arbor Stage II Non-Contiguous Adult Indolent Non-Hodgkin Lymphoma 10 240639 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 9 240640 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 10 240641 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 10 240642 -NCIT:C8466 Ann Arbor Stage II Contiguous Adult Non-Hodgkin Lymphoma 9 240643 -NCIT:C8467 Ann Arbor Stage II Contiguous Adult Indolent Non-Hodgkin Lymphoma 10 240644 -NCIT:C8472 Ann Arbor Stage II Contiguous Adult Aggressive Non-Hodgkin Lymphoma 10 240645 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 11 240646 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 11 240647 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 10 240648 -NCIT:C8477 Ann Arbor Stage II Non-Contiguous Adult Non-Hodgkin Lymphoma 9 240649 -NCIT:C8478 Ann Arbor Stage II Non-Contiguous Adult Indolent Non-Hodgkin Lymphoma 10 240650 -NCIT:C8479 Ann Arbor Stage II Non-Contiguous Aggressive Adult Non-Hodgkin Lymphoma 10 240651 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 11 240652 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 11 240653 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 10 240654 -NCIT:C8666 Ann Arbor Stage II T-Cell Non-Hodgkin Lymphoma 8 240655 -NCIT:C8691 Ann Arbor Stage II Mature T- and NK-Cell Lymphoma 9 240656 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 10 240657 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 10 240658 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 240659 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 10 240660 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 10 240661 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 10 240662 -NCIT:C8843 Ann Arbor Stage II B-Cell Non-Hodgkin Lymphoma 8 240663 -NCIT:C68679 Ann Arbor Stage II Marginal Zone Lymphoma 9 240664 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 240665 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 10 240666 -NCIT:C8115 Ann Arbor Stage II Small Lymphocytic Lymphoma 9 240667 -NCIT:C8654 Ann Arbor Stage II Lymphoplasmacytic Lymphoma 9 240668 -NCIT:C8849 Ann Arbor Stage II Burkitt Lymphoma 9 240669 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 10 240670 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 11 240671 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 11 240672 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 10 240673 -NCIT:C8855 Ann Arbor Stage II Diffuse Large B-Cell Lymphoma 9 240674 -NCIT:C171158 Ann Arbor Stage IIX (Bulky) Diffuse Large B-Cell Lymphoma 10 240675 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 10 240676 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 11 240677 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 11 240678 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 240679 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 10 240680 -NCIT:C8860 Ann Arbor Stage II Follicular Lymphoma 9 240681 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 10 240682 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 11 240683 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 11 240684 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 10 240685 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 11 240686 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 11 240687 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 10 240688 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 11 240689 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 11 240690 -NCIT:C8937 Ann Arbor Stage II B Lymphoblastic Lymphoma 9 240691 -NCIT:C9202 Ann Arbor Stage II Mantle Cell Lymphoma 9 240692 -NCIT:C8473 Ann Arbor Stage II Contiguous Mantle Cell Lymphoma 10 240693 -NCIT:C9198 Ann Arbor Stage II Non-Contiguous Mantle Cell Lymphoma 10 240694 -NCIT:C94792 Ann Arbor Stage II Childhood Non-Hodgkin Lymphoma 8 240695 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 240696 -NCIT:C9057 Ann Arbor Stage II Childhood Lymphoblastic Lymphoma 9 240697 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 9 240698 -NCIT:C94798 Ann Arbor Stage II AIDS-Related Lymphoma 7 240699 -NCIT:C8320 Ann Arbor Stage III Lymphoma 6 240700 -NCIT:C3584 Ann Arbor Stage III Hodgkin Lymphoma 7 240701 -NCIT:C3581 Ann Arbor Stage III Nodular Sclerosis Classic Hodgkin Lymphoma 8 240702 -NCIT:C3582 Ann Arbor Stage III Mixed Cellularity Classic Hodgkin Lymphoma 8 240703 -NCIT:C3583 Ann Arbor Stage III Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 240704 -NCIT:C3914 Ann Arbor Stage IIIA Hodgkin Lymphoma 8 240705 -NCIT:C4058 Ann Arbor Stage IIIB Hodgkin Lymphoma 8 240706 -NCIT:C7262 Ann Arbor Stage III Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 240707 -NCIT:C8057 Ann Arbor Stage III Childhood Hodgkin Lymphoma 8 240708 -NCIT:C9034 Ann Arbor Stage III Adult Hodgkin Lymphoma 8 240709 -NCIT:C8522 Ann Arbor Stage III Non-Hodgkin Lymphoma 7 240710 -NCIT:C8104 Ann Arbor Stage III Adult Non-Hodgkin Lymphoma 8 240711 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 9 240712 -NCIT:C8482 Ann Arbor Stage III Indolent Adult Non-Hodgkin Lymphoma 9 240713 -NCIT:C8484 Ann Arbor Stage III Aggressive Adult Non-Hodgkin Lymphoma 9 240714 -NCIT:C8138 Ann Arbor Stage III Adult Lymphoblastic Lymphoma 10 240715 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 10 240716 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 10 240717 -NCIT:C8667 Ann Arbor Stage III T-Cell Non-Hodgkin Lymphoma 8 240718 -NCIT:C8692 Ann Arbor Stage III Mature T- and NK-Cell Lymphoma 9 240719 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 10 240720 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 10 240721 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 240722 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 10 240723 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 10 240724 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 10 240725 -NCIT:C8844 Ann Arbor Stage III B-Cell Non-Hodgkin Lymphoma 8 240726 -NCIT:C68682 Ann Arbor Stage III Marginal Zone Lymphoma 9 240727 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 240728 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 10 240729 -NCIT:C8128 Ann Arbor Stage III Small Lymphocytic Lymphoma 9 240730 -NCIT:C8483 Ann Arbor Stage III Mantle Cell Lymphoma 9 240731 -NCIT:C8655 Ann Arbor Stage III Lymphoplasmacytic Lymphoma 9 240732 -NCIT:C8850 Ann Arbor Stage III Burkitt Lymphoma 9 240733 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 10 240734 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 10 240735 -NCIT:C8856 Ann Arbor Stage III Diffuse Large B-Cell Lymphoma 9 240736 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 10 240737 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 240738 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 10 240739 -NCIT:C8861 Ann Arbor Stage III Follicular Lymphoma 9 240740 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 10 240741 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 10 240742 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 10 240743 -NCIT:C8872 Ann Arbor Stage III B Lymphoblastic Lymphoma 9 240744 -NCIT:C94793 Ann Arbor Stage III Childhood Non-Hodgkin Lymphoma 8 240745 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 240746 -NCIT:C9058 Ann Arbor Stage III Childhood Lymphoblastic Lymphoma 9 240747 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 9 240748 -NCIT:C94799 Ann Arbor Stage III AIDS-Related Lymphoma 7 240749 -NCIT:C8321 Ann Arbor Stage IV Lymphoma 6 240750 -NCIT:C8519 Ann Arbor Stage IV Hodgkin Lymphoma 7 240751 -NCIT:C4059 Ann Arbor Stage IVA Hodgkin Lymphoma 8 240752 -NCIT:C5633 Ann Arbor Stage IVB Hodgkin Lymphoma 8 240753 -NCIT:C7261 Ann Arbor Stage IV Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 240754 -NCIT:C8058 Ann Arbor Stage IV Childhood Hodgkin Lymphoma 8 240755 -NCIT:C8651 Ann Arbor Stage IV Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 240756 -NCIT:C8835 Ann Arbor Stage IV Mixed Cellularity Classic Hodgkin Lymphoma 8 240757 -NCIT:C8840 Ann Arbor Stage IV Nodular Sclerosis Classic Hodgkin Lymphoma 8 240758 -NCIT:C9035 Ann Arbor Stage IV Adult Hodgkin Lymphoma 8 240759 -NCIT:C8523 Ann Arbor Stage IV Non-Hodgkin Lymphoma 7 240760 -NCIT:C8105 Ann Arbor Stage IV Adult Non-Hodgkin Lymphoma 8 240761 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 9 240762 -NCIT:C8485 Ann Arbor Stage IV Indolent Adult Non-Hodgkin Lymphoma 9 240763 -NCIT:C8487 Ann Arbor Stage IV Aggressive Adult Non-Hodgkin Lymphoma 9 240764 -NCIT:C8151 Ann Arbor Stage IV Adult Lymphoblastic Lymphoma 10 240765 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 10 240766 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 10 240767 -NCIT:C8668 Ann Arbor Stage IV T-Cell Non-Hodgkin Lymphoma 8 240768 -NCIT:C8693 Ann Arbor Stage IV Mature T- and NK-Cell Lymphoma 9 240769 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 10 240770 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 10 240771 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 11 240772 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 10 240773 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 10 240774 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 10 240775 -NCIT:C8845 Ann Arbor Stage IV B-Cell Non-Hodgkin Lymphoma 8 240776 -NCIT:C5006 Ann Arbor Stage IV Follicular Lymphoma 9 240777 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 10 240778 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 10 240779 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 10 240780 -NCIT:C5084 Ann Arbor Stage IV Burkitt Lymphoma 9 240781 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 10 240782 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 10 240783 -NCIT:C68683 Ann Arbor Stage IV Marginal Zone Lymphoma 9 240784 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 240785 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 10 240786 -NCIT:C8141 Ann Arbor Stage IV Small Lymphocytic Lymphoma 9 240787 -NCIT:C8486 Ann Arbor Stage IV Mantle Cell Lymphoma 9 240788 -NCIT:C8656 Ann Arbor Stage IV Lymphoplasmacytic Lymphoma 9 240789 -NCIT:C8857 Ann Arbor Stage IV Diffuse Large B-Cell Lymphoma 9 240790 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 10 240791 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 240792 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 10 240793 -NCIT:C8873 Ann Arbor Stage IV B Lymphoblastic Lymphoma 9 240794 -NCIT:C94794 Ann Arbor Stage IV Childhood Non-Hodgkin Lymphoma 8 240795 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 240796 -NCIT:C9059 Ann Arbor Stage IV Childhood Lymphoblastic Lymphoma 9 240797 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 9 240798 -NCIT:C94800 Ann Arbor Stage IV AIDS-Related Lymphoma 7 240799 -NCIT:C141205 Lymphoma by AJCC v8 Stage 5 240800 -NCIT:C141148 Lugano Classification Adult Lymphoma by AJCC v8 Stage 6 240801 -NCIT:C141149 Lugano Classification Limited Stage Adult Lymphoma AJCC v8 7 240802 -NCIT:C141150 Lugano Classification Stage I Adult Lymphoma AJCC v8 8 240803 -NCIT:C141160 Lugano Classification Stage I Adult Non-Hodgkin Lymphoma AJCC v8 9 240804 -NCIT:C141191 Lugano Classification Stage I Adult Hodgkin Lymphoma AJCC v8 9 240805 -NCIT:C141151 Lugano Classification Stage IE Adult Lymphoma AJCC v8 8 240806 -NCIT:C141161 Lugano Classification Stage IE Adult Non-Hodgkin Lymphoma AJCC v8 9 240807 -NCIT:C141192 Lugano Classification Stage IE Adult Hodgkin Lymphoma AJCC v8 9 240808 -NCIT:C141152 Lugano Classification Stage II Adult Lymphoma AJCC v8 8 240809 -NCIT:C141154 Lugano Classification Stage II Bulky Adult Lymphoma AJCC v8 9 240810 -NCIT:C141164 Lugano Classification Stage II Bulky Adult Non-Hodgkin Lymphoma AJCC v8 10 240811 -NCIT:C141195 Lugano Classification Stage II Bulky Adult Hodgkin Lymphoma AJCC v8 10 240812 -NCIT:C141162 Lugano Classification Stage II Adult Non-Hodgkin Lymphoma AJCC v8 9 240813 -NCIT:C141164 Lugano Classification Stage II Bulky Adult Non-Hodgkin Lymphoma AJCC v8 10 240814 -NCIT:C141193 Lugano Classification Stage II Adult Hodgkin Lymphoma AJCC v8 9 240815 -NCIT:C141195 Lugano Classification Stage II Bulky Adult Hodgkin Lymphoma AJCC v8 10 240816 -NCIT:C141153 Lugano Classification Stage IIE Adult Lymphoma AJCC v8 8 240817 -NCIT:C141163 Lugano Classification Stage IIE Adult Non-Hodgkin Lymphoma AJCC v8 9 240818 -NCIT:C141194 Lugano Classification Stage IIE Adult Hodgkin Lymphoma AJCC v8 9 240819 -NCIT:C141159 Lugano Classification Limited Stage Adult Non-Hodgkin Lymphoma AJCC v8 8 240820 -NCIT:C141160 Lugano Classification Stage I Adult Non-Hodgkin Lymphoma AJCC v8 9 240821 -NCIT:C141161 Lugano Classification Stage IE Adult Non-Hodgkin Lymphoma AJCC v8 9 240822 -NCIT:C141162 Lugano Classification Stage II Adult Non-Hodgkin Lymphoma AJCC v8 9 240823 -NCIT:C141164 Lugano Classification Stage II Bulky Adult Non-Hodgkin Lymphoma AJCC v8 10 240824 -NCIT:C141163 Lugano Classification Stage IIE Adult Non-Hodgkin Lymphoma AJCC v8 9 240825 -NCIT:C141190 Lugano Classification Limited Stage Adult Hodgkin Lymphoma AJCC v8 8 240826 -NCIT:C141191 Lugano Classification Stage I Adult Hodgkin Lymphoma AJCC v8 9 240827 -NCIT:C141192 Lugano Classification Stage IE Adult Hodgkin Lymphoma AJCC v8 9 240828 -NCIT:C141193 Lugano Classification Stage II Adult Hodgkin Lymphoma AJCC v8 9 240829 -NCIT:C141195 Lugano Classification Stage II Bulky Adult Hodgkin Lymphoma AJCC v8 10 240830 -NCIT:C141194 Lugano Classification Stage IIE Adult Hodgkin Lymphoma AJCC v8 9 240831 -NCIT:C141155 Lugano Classification Advanced Stage Adult Lymphoma AJCC v8 7 240832 -NCIT:C141156 Lugano Classification Stage III Adult Lymphoma AJCC v8 8 240833 -NCIT:C141166 Lugano Classification Stage III Adult Non-Hodgkin Lymphoma AJCC v8 9 240834 -NCIT:C141197 Lugano Classification Stage III Adult Hodgkin Lymphoma AJCC v8 9 240835 -NCIT:C141157 Lugano Classification Stage IV Adult Lymphoma AJCC v8 8 240836 -NCIT:C141167 Lugano Classification Stage IV Adult Non-Hodgkin Lymphoma AJCC v8 9 240837 -NCIT:C141198 Lugano Classification Stage IV Adult Hodgkin Lymphoma AJCC v8 9 240838 -NCIT:C141165 Lugano Classification Advanced Stage Adult Non-Hodgkin Lymphoma AJCC v8 8 240839 -NCIT:C141166 Lugano Classification Stage III Adult Non-Hodgkin Lymphoma AJCC v8 9 240840 -NCIT:C141167 Lugano Classification Stage IV Adult Non-Hodgkin Lymphoma AJCC v8 9 240841 -NCIT:C141196 Lugano Classification Advanced Stage Adult Hodgkin Lymphoma AJCC v8 8 240842 -NCIT:C141197 Lugano Classification Stage III Adult Hodgkin Lymphoma AJCC v8 9 240843 -NCIT:C141198 Lugano Classification Stage IV Adult Hodgkin Lymphoma AJCC v8 9 240844 -NCIT:C141158 Lugano Classification Adult Non-Hodgkin Lymphoma by AJCC v8 Stage 7 240845 -NCIT:C141159 Lugano Classification Limited Stage Adult Non-Hodgkin Lymphoma AJCC v8 8 240846 -NCIT:C141160 Lugano Classification Stage I Adult Non-Hodgkin Lymphoma AJCC v8 9 240847 -NCIT:C141161 Lugano Classification Stage IE Adult Non-Hodgkin Lymphoma AJCC v8 9 240848 -NCIT:C141162 Lugano Classification Stage II Adult Non-Hodgkin Lymphoma AJCC v8 9 240849 -NCIT:C141164 Lugano Classification Stage II Bulky Adult Non-Hodgkin Lymphoma AJCC v8 10 240850 -NCIT:C141163 Lugano Classification Stage IIE Adult Non-Hodgkin Lymphoma AJCC v8 9 240851 -NCIT:C141165 Lugano Classification Advanced Stage Adult Non-Hodgkin Lymphoma AJCC v8 8 240852 -NCIT:C141166 Lugano Classification Stage III Adult Non-Hodgkin Lymphoma AJCC v8 9 240853 -NCIT:C141167 Lugano Classification Stage IV Adult Non-Hodgkin Lymphoma AJCC v8 9 240854 -NCIT:C141189 Lugano Classification Adult Hodgkin Lymphoma by AJCC v8 Stage 7 240855 -NCIT:C141190 Lugano Classification Limited Stage Adult Hodgkin Lymphoma AJCC v8 8 240856 -NCIT:C141191 Lugano Classification Stage I Adult Hodgkin Lymphoma AJCC v8 9 240857 -NCIT:C141192 Lugano Classification Stage IE Adult Hodgkin Lymphoma AJCC v8 9 240858 -NCIT:C141193 Lugano Classification Stage II Adult Hodgkin Lymphoma AJCC v8 9 240859 -NCIT:C141195 Lugano Classification Stage II Bulky Adult Hodgkin Lymphoma AJCC v8 10 240860 -NCIT:C141194 Lugano Classification Stage IIE Adult Hodgkin Lymphoma AJCC v8 9 240861 -NCIT:C141196 Lugano Classification Advanced Stage Adult Hodgkin Lymphoma AJCC v8 8 240862 -NCIT:C141197 Lugano Classification Stage III Adult Hodgkin Lymphoma AJCC v8 9 240863 -NCIT:C141198 Lugano Classification Stage IV Adult Hodgkin Lymphoma AJCC v8 9 240864 -NCIT:C141168 Lugano Classification Hodgkin Lymphoma by AJCC v8 Stage 6 240865 -NCIT:C141169 Lugano Classification Limited Stage Hodgkin Lymphoma AJCC v8 7 240866 -NCIT:C141170 Lugano Classification Stage I Hodgkin Lymphoma AJCC v8 8 240867 -NCIT:C141180 Lugano Classification Stage I Childhood Hodgkin Lymphoma AJCC v8 9 240868 -NCIT:C141191 Lugano Classification Stage I Adult Hodgkin Lymphoma AJCC v8 9 240869 -NCIT:C141171 Lugano Classification Stage IE Hodgkin Lymphoma AJCC v8 8 240870 -NCIT:C141181 Lugano Classification Stage IE Childhood Hodgkin Lymphoma AJCC v8 9 240871 -NCIT:C141192 Lugano Classification Stage IE Adult Hodgkin Lymphoma AJCC v8 9 240872 -NCIT:C141172 Lugano Classification Stage II Hodgkin Lymphoma AJCC v8 8 240873 -NCIT:C141174 Lugano Classification Stage II Bulky Hodgkin Lymphoma AJCC v8 9 240874 -NCIT:C141184 Lugano Classification Stage II Bulky Childhood Hodgkin Lymphoma AJCC v8 10 240875 -NCIT:C141195 Lugano Classification Stage II Bulky Adult Hodgkin Lymphoma AJCC v8 10 240876 -NCIT:C141182 Lugano Classification Stage II Childhood Hodgkin Lymphoma AJCC v8 9 240877 -NCIT:C141184 Lugano Classification Stage II Bulky Childhood Hodgkin Lymphoma AJCC v8 10 240878 -NCIT:C141193 Lugano Classification Stage II Adult Hodgkin Lymphoma AJCC v8 9 240879 -NCIT:C141195 Lugano Classification Stage II Bulky Adult Hodgkin Lymphoma AJCC v8 10 240880 -NCIT:C141173 Lugano Classification Stage IIE Hodgkin Lymphoma AJCC v8 8 240881 -NCIT:C141183 Lugano Classification Stage IIE Childhood Hodgkin Lymphoma AJCC v8 9 240882 -NCIT:C141194 Lugano Classification Stage IIE Adult Hodgkin Lymphoma AJCC v8 9 240883 -NCIT:C141179 Lugano Classification Limited Stage Childhood Hodgkin Lymphoma AJCC v8 8 240884 -NCIT:C141180 Lugano Classification Stage I Childhood Hodgkin Lymphoma AJCC v8 9 240885 -NCIT:C141181 Lugano Classification Stage IE Childhood Hodgkin Lymphoma AJCC v8 9 240886 -NCIT:C141182 Lugano Classification Stage II Childhood Hodgkin Lymphoma AJCC v8 9 240887 -NCIT:C141184 Lugano Classification Stage II Bulky Childhood Hodgkin Lymphoma AJCC v8 10 240888 -NCIT:C141183 Lugano Classification Stage IIE Childhood Hodgkin Lymphoma AJCC v8 9 240889 -NCIT:C141190 Lugano Classification Limited Stage Adult Hodgkin Lymphoma AJCC v8 8 240890 -NCIT:C141191 Lugano Classification Stage I Adult Hodgkin Lymphoma AJCC v8 9 240891 -NCIT:C141192 Lugano Classification Stage IE Adult Hodgkin Lymphoma AJCC v8 9 240892 -NCIT:C141193 Lugano Classification Stage II Adult Hodgkin Lymphoma AJCC v8 9 240893 -NCIT:C141195 Lugano Classification Stage II Bulky Adult Hodgkin Lymphoma AJCC v8 10 240894 -NCIT:C141194 Lugano Classification Stage IIE Adult Hodgkin Lymphoma AJCC v8 9 240895 -NCIT:C141175 Lugano Classification Advanced Stage Hodgkin Lymphoma AJCC v8 7 240896 -NCIT:C141176 Lugano Classification Stage III Hodgkin Lymphoma AJCC v8 8 240897 -NCIT:C141186 Lugano Classification Stage III Childhood Hodgkin Lymphoma AJCC v8 9 240898 -NCIT:C141197 Lugano Classification Stage III Adult Hodgkin Lymphoma AJCC v8 9 240899 -NCIT:C141177 Lugano Classification Stage IV Hodgkin Lymphoma AJCC v8 8 240900 -NCIT:C141187 Lugano Classification Stage IV Childhood Hodgkin Lymphoma AJCC v8 9 240901 -NCIT:C141198 Lugano Classification Stage IV Adult Hodgkin Lymphoma AJCC v8 9 240902 -NCIT:C141185 Lugano Classification Advanced Stage Childhood Hodgkin Lymphoma AJCC v8 8 240903 -NCIT:C141186 Lugano Classification Stage III Childhood Hodgkin Lymphoma AJCC v8 9 240904 -NCIT:C141187 Lugano Classification Stage IV Childhood Hodgkin Lymphoma AJCC v8 9 240905 -NCIT:C141196 Lugano Classification Advanced Stage Adult Hodgkin Lymphoma AJCC v8 8 240906 -NCIT:C141197 Lugano Classification Stage III Adult Hodgkin Lymphoma AJCC v8 9 240907 -NCIT:C141198 Lugano Classification Stage IV Adult Hodgkin Lymphoma AJCC v8 9 240908 -NCIT:C141178 Lugano Classification Childhood Hodgkin Lymphoma by AJCC v8 Stage 7 240909 -NCIT:C141179 Lugano Classification Limited Stage Childhood Hodgkin Lymphoma AJCC v8 8 240910 -NCIT:C141180 Lugano Classification Stage I Childhood Hodgkin Lymphoma AJCC v8 9 240911 -NCIT:C141181 Lugano Classification Stage IE Childhood Hodgkin Lymphoma AJCC v8 9 240912 -NCIT:C141182 Lugano Classification Stage II Childhood Hodgkin Lymphoma AJCC v8 9 240913 -NCIT:C141184 Lugano Classification Stage II Bulky Childhood Hodgkin Lymphoma AJCC v8 10 240914 -NCIT:C141183 Lugano Classification Stage IIE Childhood Hodgkin Lymphoma AJCC v8 9 240915 -NCIT:C141185 Lugano Classification Advanced Stage Childhood Hodgkin Lymphoma AJCC v8 8 240916 -NCIT:C141186 Lugano Classification Stage III Childhood Hodgkin Lymphoma AJCC v8 9 240917 -NCIT:C141187 Lugano Classification Stage IV Childhood Hodgkin Lymphoma AJCC v8 9 240918 -NCIT:C141189 Lugano Classification Adult Hodgkin Lymphoma by AJCC v8 Stage 7 240919 -NCIT:C141190 Lugano Classification Limited Stage Adult Hodgkin Lymphoma AJCC v8 8 240920 -NCIT:C141191 Lugano Classification Stage I Adult Hodgkin Lymphoma AJCC v8 9 240921 -NCIT:C141192 Lugano Classification Stage IE Adult Hodgkin Lymphoma AJCC v8 9 240922 -NCIT:C141193 Lugano Classification Stage II Adult Hodgkin Lymphoma AJCC v8 9 240923 -NCIT:C141195 Lugano Classification Stage II Bulky Adult Hodgkin Lymphoma AJCC v8 10 240924 -NCIT:C141194 Lugano Classification Stage IIE Adult Hodgkin Lymphoma AJCC v8 9 240925 -NCIT:C141196 Lugano Classification Advanced Stage Adult Hodgkin Lymphoma AJCC v8 8 240926 -NCIT:C141197 Lugano Classification Stage III Adult Hodgkin Lymphoma AJCC v8 9 240927 -NCIT:C141198 Lugano Classification Stage IV Adult Hodgkin Lymphoma AJCC v8 9 240928 -NCIT:C141202 Childhood Lymphoma by AJCC v8 Stage 6 240929 -NCIT:C141178 Lugano Classification Childhood Hodgkin Lymphoma by AJCC v8 Stage 7 240930 -NCIT:C141179 Lugano Classification Limited Stage Childhood Hodgkin Lymphoma AJCC v8 8 240931 -NCIT:C141180 Lugano Classification Stage I Childhood Hodgkin Lymphoma AJCC v8 9 240932 -NCIT:C141181 Lugano Classification Stage IE Childhood Hodgkin Lymphoma AJCC v8 9 240933 -NCIT:C141182 Lugano Classification Stage II Childhood Hodgkin Lymphoma AJCC v8 9 240934 -NCIT:C141184 Lugano Classification Stage II Bulky Childhood Hodgkin Lymphoma AJCC v8 10 240935 -NCIT:C141183 Lugano Classification Stage IIE Childhood Hodgkin Lymphoma AJCC v8 9 240936 -NCIT:C141185 Lugano Classification Advanced Stage Childhood Hodgkin Lymphoma AJCC v8 8 240937 -NCIT:C141186 Lugano Classification Stage III Childhood Hodgkin Lymphoma AJCC v8 9 240938 -NCIT:C141187 Lugano Classification Stage IV Childhood Hodgkin Lymphoma AJCC v8 9 240939 -NCIT:C141217 St. Jude Childhood Non-Hodgkin Lymphoma by AJCC v8 Stage 7 240940 -NCIT:C141218 St. Jude Stage I Childhood Non-Hodgkin Lymphoma AJCC v8 8 240941 -NCIT:C141219 St. Jude Stage II Childhood Non-Hodgkin Lymphoma AJCC v8 8 240942 -NCIT:C141220 St. Jude Stage III Childhood Non-Hodgkin Lymphoma AJCC v8 8 240943 -NCIT:C141221 St. Jude Stage IV Childhood Non-Hodgkin Lymphoma AJCC v8 8 240944 -NCIT:C141346 Mycosis Fungoides and Sezary Syndrome by AJCC v8 Stage 6 240945 -NCIT:C141347 Stage I Mycosis Fungoides and Sezary Syndrome AJCC v8 7 240946 -NCIT:C141348 Stage IA Mycosis Fungoides and Sezary Syndrome AJCC v8 8 240947 -NCIT:C141349 Stage IB Mycosis Fungoides and Sezary Syndrome AJCC v8 8 240948 -NCIT:C141350 Stage II Mycosis Fungoides and Sezary Syndrome AJCC v8 7 240949 -NCIT:C141351 Stage IIA Mycosis Fungoides and Sezary Syndrome AJCC v8 8 240950 -NCIT:C141352 Stage IIB Mycosis Fungoides and Sezary Syndrome AJCC v8 8 240951 -NCIT:C141353 Stage III Mycosis Fungoides and Sezary Syndrome AJCC v8 7 240952 -NCIT:C141354 Stage IIIA Mycosis Fungoides and Sezary Syndrome AJCC v8 8 240953 -NCIT:C141355 Stage IIIB Mycosis Fungoides and Sezary Syndrome AJCC v8 8 240954 -NCIT:C141356 Stage IV Mycosis Fungoides and Sezary Syndrome AJCC v8 7 240955 -NCIT:C141357 Stage IVA1 Mycosis Fungoides and Sezary Syndrome AJCC v8 8 240956 -NCIT:C141358 Stage IVA2 Mycosis Fungoides and Sezary Syndrome AJCC v8 8 240957 -NCIT:C141359 Stage IVB Mycosis Fungoides and Sezary Syndrome AJCC v8 8 240958 -NCIT:C27699 Virus-Related Lymphoma 4 240959 -NCIT:C138320 HHV8-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 5 240960 -NCIT:C27691 EBV-Related Lymphoma 5 240961 -NCIT:C147863 Recurrent EBV-Related Lymphoma 6 240962 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 7 240963 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 7 240964 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 8 240965 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 8 240966 -NCIT:C160149 Refractory EBV-Related Lymphoma 6 240967 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 7 240968 -NCIT:C27692 EBV-Related Hodgkin Lymphoma 6 240969 -NCIT:C7243 Classic Hodgkin Lymphoma Type Post-Transplant Lymphoproliferative Disorder 7 240970 -NCIT:C27693 EBV-Related Non-Hodgkin Lymphoma 6 240971 -NCIT:C139288 Primary EBV-Positive Nodal T-Cell or NK-Cell Lymphoma 7 240972 -NCIT:C27694 EBV-Related Burkitt Lymphoma 7 240973 -NCIT:C27122 Endemic Burkitt Lymphoma 8 240974 -NCIT:C7933 Grade III Lymphomatoid Granulomatosis 7 240975 -NCIT:C115150 Adult Grade III Lymphomatoid Granulomatosis 8 240976 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 9 240977 -NCIT:C115204 Childhood Grade III Lymphomatoid Granulomatosis 8 240978 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 9 240979 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 8 240980 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 9 240981 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 9 240982 -NCIT:C80281 EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 7 240983 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 240984 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 240985 -NCIT:C188456 Childhood EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 240986 -NCIT:C188457 Adult EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 240987 -NCIT:C80374 Systemic EBV-Positive T-Cell Lymphoma of Childhood 7 240988 -NCIT:C27695 EBV-Related Clonal Post-Transplant Lymphoproliferative Disorder 6 240989 -NCIT:C7239 Hodgkin-Like Post-Transplant Lymphoproliferative Disorder 7 240990 -NCIT:C7243 Classic Hodgkin Lymphoma Type Post-Transplant Lymphoproliferative Disorder 7 240991 -NCIT:C27856 Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 5 240992 -NCIT:C27858 AIDS-Related Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 6 240993 -NCIT:C3184 Adult T-Cell Leukemia/Lymphoma 5 240994 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 6 240995 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 7 240996 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 7 240997 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 7 240998 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 7 240999 -NCIT:C36265 Acute Adult T-Cell Leukemia/Lymphoma 6 241000 -NCIT:C36266 Lymphomatous Adult T-Cell Leukemia/Lymphoma 6 241001 -NCIT:C36268 Hodgkin-Like Adult T-Cell Leukemia/Lymphoma 6 241002 -NCIT:C45272 Cutaneous Adult T-Cell Leukemia/Lymphoma 6 241003 -NCIT:C7178 Smoldering Adult T-Cell Leukemia/Lymphoma 6 241004 -NCIT:C7179 Chronic Adult T-Cell Leukemia/Lymphoma 6 241005 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 6 241006 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 6 241007 -NCIT:C3471 AIDS-Related Lymphoma 5 241008 -NCIT:C5051 AIDS-Related Non-Hodgkin Lymphoma 6 241009 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 7 241010 -NCIT:C7212 AIDS-Related Diffuse Large B-cell Lymphoma 7 241011 -NCIT:C27858 AIDS-Related Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 8 241012 -NCIT:C27859 AIDS-Related Plasmablastic Lymphoma 8 241013 -NCIT:C38160 AIDS-Related Plasmablastic Lymphoma of Mucosa Site 9 241014 -NCIT:C9016 AIDS-Related Plasmablastic Lymphoma of the Oral Mucosa 10 241015 -NCIT:C8285 AIDS-Related Immunoblastic Lymphoma 8 241016 -NCIT:C9017 AIDS-Related Primary Effusion Lymphoma 8 241017 -NCIT:C7434 AIDS-Related Non-Hodgkin Lymphoma of the Cervix 7 241018 -NCIT:C7465 AIDS-Related Anal Non-Hodgkin Lymphoma 7 241019 -NCIT:C8286 AIDS-Related Burkitt Lymphoma 7 241020 -NCIT:C27857 AIDS-Related Burkitt Lymphoma with Plasmacytoid Differentiation 8 241021 -NCIT:C8298 AIDS-Related Lymphoblastic Lymphoma 7 241022 -NCIT:C8284 AIDS-Related Primary Central Nervous System Lymphoma 6 241023 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 7 241024 -NCIT:C9279 AIDS-Related Hodgkin Lymphoma 6 241025 -NCIT:C94797 Ann Arbor Stage I AIDS-Related Lymphoma 6 241026 -NCIT:C94798 Ann Arbor Stage II AIDS-Related Lymphoma 6 241027 -NCIT:C94799 Ann Arbor Stage III AIDS-Related Lymphoma 6 241028 -NCIT:C94800 Ann Arbor Stage IV AIDS-Related Lymphoma 6 241029 -NCIT:C6915 Primary Effusion Lymphoma 5 241030 -NCIT:C150406 Extracavitary Primary Effusion Lymphoma 6 241031 -NCIT:C150407 Body Cavity Primary Effusion Lymphoma 6 241032 -NCIT:C183135 Pleural Primary Effusion Lymphoma 7 241033 -NCIT:C183136 Pericardial Primary Effusion Lymphoma 7 241034 -NCIT:C183137 Peritoneal Primary Effusion Lymphoma 7 241035 -NCIT:C157679 Recurrent Primary Effusion Lymphoma 6 241036 -NCIT:C157680 Refractory Primary Effusion Lymphoma 6 241037 -NCIT:C9017 AIDS-Related Primary Effusion Lymphoma 6 241038 -NCIT:C3211 Non-Hodgkin Lymphoma 4 241039 -NCIT:C114779 Central Nervous System Non-Hodgkin Lymphoma 5 241040 -NCIT:C146989 Refractory Central Nervous System Non-Hodgkin Lymphoma 6 241041 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 7 241042 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 241043 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 7 241044 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 241045 -NCIT:C146990 Recurrent Central Nervous System Non-Hodgkin Lymphoma 6 241046 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 7 241047 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 241048 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 7 241049 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 241050 -NCIT:C147948 Central Nervous System B-Cell Non-Hodgkin Lymphoma 6 241051 -NCIT:C71720 Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 7 241052 -NCIT:C129602 Central Nervous System Intravascular Large B-Cell Lymphoma 8 241053 -NCIT:C155797 Pituitary Gland Diffuse Large B-Cell Lymphoma 8 241054 -NCIT:C157067 Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 241055 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 241056 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 241057 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 241058 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 241059 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 241060 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 241061 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 241062 -NCIT:C95991 Dural Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 7 241063 -NCIT:C155796 Pituitary Gland Non-Hodgkin Lymphoma 6 241064 -NCIT:C155797 Pituitary Gland Diffuse Large B-Cell Lymphoma 7 241065 -NCIT:C157065 Primary Vitreoretinal Non-Hodgkin Lymphoma 6 241066 -NCIT:C157067 Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 7 241067 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 241068 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 241069 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 7 241070 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 241071 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 7 241072 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 241073 -NCIT:C4365 Primary Retinal Non-Hodgkin Lymphoma 7 241074 -NCIT:C5409 Central Nervous System T-Cell Non-Hodgkin Lymphoma 6 241075 -NCIT:C129600 Central Nervous System Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 7 241076 -NCIT:C5322 Central Nervous System Anaplastic Large Cell Lymphoma 8 241077 -NCIT:C129598 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Positive 9 241078 -NCIT:C129599 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Negative 9 241079 -NCIT:C7609 Cerebral Non-Hodgkin Lymphoma 6 241080 -NCIT:C114950 Secondary Central Nervous System Non-Hodgkin Lymphoma 5 241081 -NCIT:C121930 Primary Bone Non-Hodgkin Lymphoma 5 241082 -NCIT:C173811 Primary Bone Diffuse Large B-Cell Lymphoma 6 241083 -NCIT:C141140 Non-Hodgkin Lymphoma by Ann Arbor Stage 5 241084 -NCIT:C141235 Adult Non-Hodgkin Lymphoma by Ann Arbor Stage 6 241085 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 7 241086 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 8 241087 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 8 241088 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 8 241089 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 8 241090 -NCIT:C8102 Ann Arbor Stage I Adult Non-Hodgkin Lymphoma 7 241091 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 8 241092 -NCIT:C8464 Ann Arbor Stage I Indolent Adult Non-Hodgkin Lymphoma 8 241093 -NCIT:C9252 Ann Arbor Stage I Aggressive Adult Non-Hodgkin Lymphoma 8 241094 -NCIT:C8079 Ann Arbor Stage I Adult Lymphoblastic Lymphoma 9 241095 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 9 241096 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 9 241097 -NCIT:C8103 Ann Arbor Stage II Adult Non-Hodgkin Lymphoma 7 241098 -NCIT:C68686 Ann Arbor Stage II Aggressive Adult Non-Hodgkin Lymphoma 8 241099 -NCIT:C8125 Ann Arbor Stage II Adult Lymphoblastic Lymphoma 9 241100 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 10 241101 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 10 241102 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 9 241103 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 10 241104 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 10 241105 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 9 241106 -NCIT:C8472 Ann Arbor Stage II Contiguous Adult Aggressive Non-Hodgkin Lymphoma 9 241107 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 10 241108 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 10 241109 -NCIT:C8479 Ann Arbor Stage II Non-Contiguous Aggressive Adult Non-Hodgkin Lymphoma 9 241110 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 10 241111 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 10 241112 -NCIT:C68688 Ann Arbor Stage II Indolent Adult Non-Hodgkin Lymphoma 8 241113 -NCIT:C8467 Ann Arbor Stage II Contiguous Adult Indolent Non-Hodgkin Lymphoma 9 241114 -NCIT:C8478 Ann Arbor Stage II Non-Contiguous Adult Indolent Non-Hodgkin Lymphoma 9 241115 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 8 241116 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 9 241117 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 9 241118 -NCIT:C8466 Ann Arbor Stage II Contiguous Adult Non-Hodgkin Lymphoma 8 241119 -NCIT:C8467 Ann Arbor Stage II Contiguous Adult Indolent Non-Hodgkin Lymphoma 9 241120 -NCIT:C8472 Ann Arbor Stage II Contiguous Adult Aggressive Non-Hodgkin Lymphoma 9 241121 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 10 241122 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 10 241123 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 9 241124 -NCIT:C8477 Ann Arbor Stage II Non-Contiguous Adult Non-Hodgkin Lymphoma 8 241125 -NCIT:C8478 Ann Arbor Stage II Non-Contiguous Adult Indolent Non-Hodgkin Lymphoma 9 241126 -NCIT:C8479 Ann Arbor Stage II Non-Contiguous Aggressive Adult Non-Hodgkin Lymphoma 9 241127 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 10 241128 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 10 241129 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 9 241130 -NCIT:C8104 Ann Arbor Stage III Adult Non-Hodgkin Lymphoma 7 241131 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 8 241132 -NCIT:C8482 Ann Arbor Stage III Indolent Adult Non-Hodgkin Lymphoma 8 241133 -NCIT:C8484 Ann Arbor Stage III Aggressive Adult Non-Hodgkin Lymphoma 8 241134 -NCIT:C8138 Ann Arbor Stage III Adult Lymphoblastic Lymphoma 9 241135 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 9 241136 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 9 241137 -NCIT:C8105 Ann Arbor Stage IV Adult Non-Hodgkin Lymphoma 7 241138 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 8 241139 -NCIT:C8485 Ann Arbor Stage IV Indolent Adult Non-Hodgkin Lymphoma 8 241140 -NCIT:C8487 Ann Arbor Stage IV Aggressive Adult Non-Hodgkin Lymphoma 8 241141 -NCIT:C8151 Ann Arbor Stage IV Adult Lymphoblastic Lymphoma 9 241142 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 9 241143 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 9 241144 -NCIT:C141236 Childhood Non-Hodgkin Lymphoma by Ann Arbor Stage 6 241145 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 7 241146 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 241147 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 241148 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 241149 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 241150 -NCIT:C94791 Ann Arbor Stage I Childhood Non-Hodgkin Lymphoma 7 241151 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 241152 -NCIT:C9056 Ann Arbor Stage I Childhood Lymphoblastic Lymphoma 8 241153 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 8 241154 -NCIT:C94792 Ann Arbor Stage II Childhood Non-Hodgkin Lymphoma 7 241155 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 241156 -NCIT:C9057 Ann Arbor Stage II Childhood Lymphoblastic Lymphoma 8 241157 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 8 241158 -NCIT:C94793 Ann Arbor Stage III Childhood Non-Hodgkin Lymphoma 7 241159 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 241160 -NCIT:C9058 Ann Arbor Stage III Childhood Lymphoblastic Lymphoma 8 241161 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 8 241162 -NCIT:C94794 Ann Arbor Stage IV Childhood Non-Hodgkin Lymphoma 7 241163 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 241164 -NCIT:C9059 Ann Arbor Stage IV Childhood Lymphoblastic Lymphoma 8 241165 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 8 241166 -NCIT:C141243 B-Cell Non-Hodgkin Lymphoma by Ann Arbor Stage 6 241167 -NCIT:C141250 B Lymphoblastic Lymphoma by Ann Arbor Stage 7 241168 -NCIT:C8871 Ann Arbor Stage I B Lymphoblastic Lymphoma 8 241169 -NCIT:C8872 Ann Arbor Stage III B Lymphoblastic Lymphoma 8 241170 -NCIT:C8873 Ann Arbor Stage IV B Lymphoblastic Lymphoma 8 241171 -NCIT:C8937 Ann Arbor Stage II B Lymphoblastic Lymphoma 8 241172 -NCIT:C141253 Burkitt Lymphoma by Ann Arbor Stage 7 241173 -NCIT:C5084 Ann Arbor Stage IV Burkitt Lymphoma 8 241174 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 9 241175 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 9 241176 -NCIT:C8848 Ann Arbor Stage I Burkitt Lymphoma 8 241177 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 9 241178 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 9 241179 -NCIT:C8849 Ann Arbor Stage II Burkitt Lymphoma 8 241180 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 9 241181 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 10 241182 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 10 241183 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 9 241184 -NCIT:C8850 Ann Arbor Stage III Burkitt Lymphoma 8 241185 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 9 241186 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 9 241187 -NCIT:C141254 Diffuse Large B-Cell Lymphoma by Ann Arbor Stage 7 241188 -NCIT:C141262 Primary Mediastinal (Thymic) Large B-Cell Lymphoma by Ann Arbor Stage 8 241189 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 241190 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 241191 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 241192 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 241193 -NCIT:C141263 Centroblastic Lymphoma by Ann Arbor Stage 8 241194 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 9 241195 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 9 241196 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 9 241197 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 9 241198 -NCIT:C8854 Ann Arbor Stage I Diffuse Large B-Cell Lymphoma 8 241199 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 9 241200 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 241201 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 9 241202 -NCIT:C8855 Ann Arbor Stage II Diffuse Large B-Cell Lymphoma 8 241203 -NCIT:C171158 Ann Arbor Stage IIX (Bulky) Diffuse Large B-Cell Lymphoma 9 241204 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 9 241205 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 10 241206 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 10 241207 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 241208 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 9 241209 -NCIT:C8856 Ann Arbor Stage III Diffuse Large B-Cell Lymphoma 8 241210 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 9 241211 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 241212 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 9 241213 -NCIT:C8857 Ann Arbor Stage IV Diffuse Large B-Cell Lymphoma 8 241214 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 9 241215 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 241216 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 9 241217 -NCIT:C141255 Follicular Lymphoma by Ann Arbor Stage 7 241218 -NCIT:C5006 Ann Arbor Stage IV Follicular Lymphoma 8 241219 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 9 241220 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 9 241221 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 9 241222 -NCIT:C8859 Ann Arbor Stage I Follicular Lymphoma 8 241223 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 9 241224 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 9 241225 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 9 241226 -NCIT:C8860 Ann Arbor Stage II Follicular Lymphoma 8 241227 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 9 241228 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 10 241229 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 10 241230 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 9 241231 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 10 241232 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 10 241233 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 9 241234 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 10 241235 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 10 241236 -NCIT:C8861 Ann Arbor Stage III Follicular Lymphoma 8 241237 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 9 241238 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 9 241239 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 9 241240 -NCIT:C141256 Lymphoplasmacytic Lymphoma by Ann Arbor Stage 7 241241 -NCIT:C8653 Ann Arbor Stage I Lymphoplasmacytic Lymphoma 8 241242 -NCIT:C8654 Ann Arbor Stage II Lymphoplasmacytic Lymphoma 8 241243 -NCIT:C8655 Ann Arbor Stage III Lymphoplasmacytic Lymphoma 8 241244 -NCIT:C8656 Ann Arbor Stage IV Lymphoplasmacytic Lymphoma 8 241245 -NCIT:C141257 Mantle Cell Lymphoma by Ann Arbor Stage 7 241246 -NCIT:C8465 Ann Arbor Stage I Mantle Cell Lymphoma 8 241247 -NCIT:C8483 Ann Arbor Stage III Mantle Cell Lymphoma 8 241248 -NCIT:C8486 Ann Arbor Stage IV Mantle Cell Lymphoma 8 241249 -NCIT:C9202 Ann Arbor Stage II Mantle Cell Lymphoma 8 241250 -NCIT:C8473 Ann Arbor Stage II Contiguous Mantle Cell Lymphoma 9 241251 -NCIT:C9198 Ann Arbor Stage II Non-Contiguous Mantle Cell Lymphoma 9 241252 -NCIT:C141258 Marginal Zone Lymphoma by Ann Arbor Stage 7 241253 -NCIT:C141260 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue by Ann Arbor Stage 8 241254 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 241255 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 241256 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 241257 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 241258 -NCIT:C141261 Nodal Marginal Zone Lymphoma by Ann Arbor Stage 8 241259 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 9 241260 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 9 241261 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 9 241262 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 9 241263 -NCIT:C68678 Ann Arbor Stage I Marginal Zone Lymphoma 8 241264 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 241265 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 9 241266 -NCIT:C68679 Ann Arbor Stage II Marginal Zone Lymphoma 8 241267 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 241268 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 9 241269 -NCIT:C68682 Ann Arbor Stage III Marginal Zone Lymphoma 8 241270 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 241271 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 9 241272 -NCIT:C68683 Ann Arbor Stage IV Marginal Zone Lymphoma 8 241273 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 241274 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 9 241275 -NCIT:C141259 Small Lymphocytic Lymphoma by Ann Arbor Stage 7 241276 -NCIT:C8070 Ann Arbor Stage I Small Lymphocytic Lymphoma 8 241277 -NCIT:C8115 Ann Arbor Stage II Small Lymphocytic Lymphoma 8 241278 -NCIT:C8128 Ann Arbor Stage III Small Lymphocytic Lymphoma 8 241279 -NCIT:C8141 Ann Arbor Stage IV Small Lymphocytic Lymphoma 8 241280 -NCIT:C27308 Ann Arbor Stage I B-Cell Non-Hodgkin Lymphoma 7 241281 -NCIT:C68678 Ann Arbor Stage I Marginal Zone Lymphoma 8 241282 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 241283 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 9 241284 -NCIT:C8070 Ann Arbor Stage I Small Lymphocytic Lymphoma 8 241285 -NCIT:C8465 Ann Arbor Stage I Mantle Cell Lymphoma 8 241286 -NCIT:C8653 Ann Arbor Stage I Lymphoplasmacytic Lymphoma 8 241287 -NCIT:C8848 Ann Arbor Stage I Burkitt Lymphoma 8 241288 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 9 241289 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 9 241290 -NCIT:C8854 Ann Arbor Stage I Diffuse Large B-Cell Lymphoma 8 241291 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 9 241292 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 241293 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 9 241294 -NCIT:C8859 Ann Arbor Stage I Follicular Lymphoma 8 241295 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 9 241296 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 9 241297 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 9 241298 -NCIT:C8871 Ann Arbor Stage I B Lymphoblastic Lymphoma 8 241299 -NCIT:C8843 Ann Arbor Stage II B-Cell Non-Hodgkin Lymphoma 7 241300 -NCIT:C68679 Ann Arbor Stage II Marginal Zone Lymphoma 8 241301 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 241302 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 9 241303 -NCIT:C8115 Ann Arbor Stage II Small Lymphocytic Lymphoma 8 241304 -NCIT:C8654 Ann Arbor Stage II Lymphoplasmacytic Lymphoma 8 241305 -NCIT:C8849 Ann Arbor Stage II Burkitt Lymphoma 8 241306 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 9 241307 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 10 241308 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 10 241309 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 9 241310 -NCIT:C8855 Ann Arbor Stage II Diffuse Large B-Cell Lymphoma 8 241311 -NCIT:C171158 Ann Arbor Stage IIX (Bulky) Diffuse Large B-Cell Lymphoma 9 241312 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 9 241313 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 10 241314 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 10 241315 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 241316 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 9 241317 -NCIT:C8860 Ann Arbor Stage II Follicular Lymphoma 8 241318 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 9 241319 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 10 241320 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 10 241321 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 9 241322 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 10 241323 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 10 241324 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 9 241325 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 10 241326 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 10 241327 -NCIT:C8937 Ann Arbor Stage II B Lymphoblastic Lymphoma 8 241328 -NCIT:C9202 Ann Arbor Stage II Mantle Cell Lymphoma 8 241329 -NCIT:C8473 Ann Arbor Stage II Contiguous Mantle Cell Lymphoma 9 241330 -NCIT:C9198 Ann Arbor Stage II Non-Contiguous Mantle Cell Lymphoma 9 241331 -NCIT:C8844 Ann Arbor Stage III B-Cell Non-Hodgkin Lymphoma 7 241332 -NCIT:C68682 Ann Arbor Stage III Marginal Zone Lymphoma 8 241333 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 241334 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 9 241335 -NCIT:C8128 Ann Arbor Stage III Small Lymphocytic Lymphoma 8 241336 -NCIT:C8483 Ann Arbor Stage III Mantle Cell Lymphoma 8 241337 -NCIT:C8655 Ann Arbor Stage III Lymphoplasmacytic Lymphoma 8 241338 -NCIT:C8850 Ann Arbor Stage III Burkitt Lymphoma 8 241339 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 9 241340 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 9 241341 -NCIT:C8856 Ann Arbor Stage III Diffuse Large B-Cell Lymphoma 8 241342 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 9 241343 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 241344 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 9 241345 -NCIT:C8861 Ann Arbor Stage III Follicular Lymphoma 8 241346 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 9 241347 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 9 241348 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 9 241349 -NCIT:C8872 Ann Arbor Stage III B Lymphoblastic Lymphoma 8 241350 -NCIT:C8845 Ann Arbor Stage IV B-Cell Non-Hodgkin Lymphoma 7 241351 -NCIT:C5006 Ann Arbor Stage IV Follicular Lymphoma 8 241352 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 9 241353 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 9 241354 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 9 241355 -NCIT:C5084 Ann Arbor Stage IV Burkitt Lymphoma 8 241356 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 9 241357 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 9 241358 -NCIT:C68683 Ann Arbor Stage IV Marginal Zone Lymphoma 8 241359 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 241360 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 9 241361 -NCIT:C8141 Ann Arbor Stage IV Small Lymphocytic Lymphoma 8 241362 -NCIT:C8486 Ann Arbor Stage IV Mantle Cell Lymphoma 8 241363 -NCIT:C8656 Ann Arbor Stage IV Lymphoplasmacytic Lymphoma 8 241364 -NCIT:C8857 Ann Arbor Stage IV Diffuse Large B-Cell Lymphoma 8 241365 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 9 241366 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 241367 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 9 241368 -NCIT:C8873 Ann Arbor Stage IV B Lymphoblastic Lymphoma 8 241369 -NCIT:C141247 T-Cell Non-Hodgkin Lymphoma by Ann Arbor Stage 6 241370 -NCIT:C141272 Mature T- and NK-Cell Lymphoma by Ann Arbor Stage 7 241371 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 8 241372 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 9 241373 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 9 241374 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 9 241375 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 9 241376 -NCIT:C141284 Noncutaneous Anaplastic Large Cell Lymphoma by Ann Arbor Stage 8 241377 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 9 241378 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 241379 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 241380 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 241381 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 241382 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 9 241383 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 241384 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 9 241385 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 241386 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 9 241387 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 241388 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 9 241389 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 241390 -NCIT:C141294 Angioimmunoblastic T-Cell Lymphoma by Ann Arbor Stage 8 241391 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 9 241392 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 9 241393 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 9 241394 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 9 241395 -NCIT:C141295 Enteropathy-Associated T-Cell Lymphoma by Ann Arbor Stage 8 241396 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 9 241397 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 9 241398 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 9 241399 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 9 241400 -NCIT:C141296 Nasal Type NK/T-Cell Lymphoma by Ann Arbor Stage 8 241401 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 9 241402 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 9 241403 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 9 241404 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 9 241405 -NCIT:C8690 Ann Arbor Stage I Mature T- and NK-Cell Lymphoma 8 241406 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 9 241407 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 9 241408 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 241409 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 9 241410 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 9 241411 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 9 241412 -NCIT:C8691 Ann Arbor Stage II Mature T- and NK-Cell Lymphoma 8 241413 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 9 241414 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 9 241415 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 241416 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 9 241417 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 9 241418 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 9 241419 -NCIT:C8692 Ann Arbor Stage III Mature T- and NK-Cell Lymphoma 8 241420 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 9 241421 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 9 241422 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 241423 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 9 241424 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 9 241425 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 9 241426 -NCIT:C8693 Ann Arbor Stage IV Mature T- and NK-Cell Lymphoma 8 241427 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 9 241428 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 9 241429 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 241430 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 9 241431 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 9 241432 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 9 241433 -NCIT:C8665 Ann Arbor Stage I T-Cell Non-Hodgkin Lymphoma 7 241434 -NCIT:C8690 Ann Arbor Stage I Mature T- and NK-Cell Lymphoma 8 241435 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 9 241436 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 9 241437 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 241438 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 9 241439 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 9 241440 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 9 241441 -NCIT:C8666 Ann Arbor Stage II T-Cell Non-Hodgkin Lymphoma 7 241442 -NCIT:C8691 Ann Arbor Stage II Mature T- and NK-Cell Lymphoma 8 241443 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 9 241444 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 9 241445 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 241446 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 9 241447 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 9 241448 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 9 241449 -NCIT:C8667 Ann Arbor Stage III T-Cell Non-Hodgkin Lymphoma 7 241450 -NCIT:C8692 Ann Arbor Stage III Mature T- and NK-Cell Lymphoma 8 241451 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 9 241452 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 9 241453 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 241454 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 9 241455 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 9 241456 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 9 241457 -NCIT:C8668 Ann Arbor Stage IV T-Cell Non-Hodgkin Lymphoma 7 241458 -NCIT:C8693 Ann Arbor Stage IV Mature T- and NK-Cell Lymphoma 8 241459 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 9 241460 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 9 241461 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 241462 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 9 241463 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 9 241464 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 9 241465 -NCIT:C8520 Ann Arbor Stage I Non-Hodgkin Lymphoma 6 241466 -NCIT:C27308 Ann Arbor Stage I B-Cell Non-Hodgkin Lymphoma 7 241467 -NCIT:C68678 Ann Arbor Stage I Marginal Zone Lymphoma 8 241468 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 241469 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 9 241470 -NCIT:C8070 Ann Arbor Stage I Small Lymphocytic Lymphoma 8 241471 -NCIT:C8465 Ann Arbor Stage I Mantle Cell Lymphoma 8 241472 -NCIT:C8653 Ann Arbor Stage I Lymphoplasmacytic Lymphoma 8 241473 -NCIT:C8848 Ann Arbor Stage I Burkitt Lymphoma 8 241474 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 9 241475 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 9 241476 -NCIT:C8854 Ann Arbor Stage I Diffuse Large B-Cell Lymphoma 8 241477 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 9 241478 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 241479 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 9 241480 -NCIT:C8859 Ann Arbor Stage I Follicular Lymphoma 8 241481 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 9 241482 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 9 241483 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 9 241484 -NCIT:C8871 Ann Arbor Stage I B Lymphoblastic Lymphoma 8 241485 -NCIT:C8102 Ann Arbor Stage I Adult Non-Hodgkin Lymphoma 7 241486 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 8 241487 -NCIT:C8464 Ann Arbor Stage I Indolent Adult Non-Hodgkin Lymphoma 8 241488 -NCIT:C9252 Ann Arbor Stage I Aggressive Adult Non-Hodgkin Lymphoma 8 241489 -NCIT:C8079 Ann Arbor Stage I Adult Lymphoblastic Lymphoma 9 241490 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 9 241491 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 9 241492 -NCIT:C8665 Ann Arbor Stage I T-Cell Non-Hodgkin Lymphoma 7 241493 -NCIT:C8690 Ann Arbor Stage I Mature T- and NK-Cell Lymphoma 8 241494 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 9 241495 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 9 241496 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 241497 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 9 241498 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 9 241499 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 9 241500 -NCIT:C94791 Ann Arbor Stage I Childhood Non-Hodgkin Lymphoma 7 241501 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 241502 -NCIT:C9056 Ann Arbor Stage I Childhood Lymphoblastic Lymphoma 8 241503 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 8 241504 -NCIT:C8521 Ann Arbor Stage II Non-Hodgkin Lymphoma 6 241505 -NCIT:C171159 Ann Arbor Stage IIX (Bulky) Non-Hodgkin Lymphoma 7 241506 -NCIT:C171158 Ann Arbor Stage IIX (Bulky) Diffuse Large B-Cell Lymphoma 8 241507 -NCIT:C8103 Ann Arbor Stage II Adult Non-Hodgkin Lymphoma 7 241508 -NCIT:C68686 Ann Arbor Stage II Aggressive Adult Non-Hodgkin Lymphoma 8 241509 -NCIT:C8125 Ann Arbor Stage II Adult Lymphoblastic Lymphoma 9 241510 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 10 241511 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 10 241512 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 9 241513 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 10 241514 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 10 241515 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 9 241516 -NCIT:C8472 Ann Arbor Stage II Contiguous Adult Aggressive Non-Hodgkin Lymphoma 9 241517 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 10 241518 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 10 241519 -NCIT:C8479 Ann Arbor Stage II Non-Contiguous Aggressive Adult Non-Hodgkin Lymphoma 9 241520 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 10 241521 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 10 241522 -NCIT:C68688 Ann Arbor Stage II Indolent Adult Non-Hodgkin Lymphoma 8 241523 -NCIT:C8467 Ann Arbor Stage II Contiguous Adult Indolent Non-Hodgkin Lymphoma 9 241524 -NCIT:C8478 Ann Arbor Stage II Non-Contiguous Adult Indolent Non-Hodgkin Lymphoma 9 241525 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 8 241526 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 9 241527 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 9 241528 -NCIT:C8466 Ann Arbor Stage II Contiguous Adult Non-Hodgkin Lymphoma 8 241529 -NCIT:C8467 Ann Arbor Stage II Contiguous Adult Indolent Non-Hodgkin Lymphoma 9 241530 -NCIT:C8472 Ann Arbor Stage II Contiguous Adult Aggressive Non-Hodgkin Lymphoma 9 241531 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 10 241532 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 10 241533 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 9 241534 -NCIT:C8477 Ann Arbor Stage II Non-Contiguous Adult Non-Hodgkin Lymphoma 8 241535 -NCIT:C8478 Ann Arbor Stage II Non-Contiguous Adult Indolent Non-Hodgkin Lymphoma 9 241536 -NCIT:C8479 Ann Arbor Stage II Non-Contiguous Aggressive Adult Non-Hodgkin Lymphoma 9 241537 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 10 241538 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 10 241539 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 9 241540 -NCIT:C8666 Ann Arbor Stage II T-Cell Non-Hodgkin Lymphoma 7 241541 -NCIT:C8691 Ann Arbor Stage II Mature T- and NK-Cell Lymphoma 8 241542 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 9 241543 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 9 241544 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 241545 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 9 241546 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 9 241547 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 9 241548 -NCIT:C8843 Ann Arbor Stage II B-Cell Non-Hodgkin Lymphoma 7 241549 -NCIT:C68679 Ann Arbor Stage II Marginal Zone Lymphoma 8 241550 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 241551 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 9 241552 -NCIT:C8115 Ann Arbor Stage II Small Lymphocytic Lymphoma 8 241553 -NCIT:C8654 Ann Arbor Stage II Lymphoplasmacytic Lymphoma 8 241554 -NCIT:C8849 Ann Arbor Stage II Burkitt Lymphoma 8 241555 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 9 241556 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 10 241557 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 10 241558 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 9 241559 -NCIT:C8855 Ann Arbor Stage II Diffuse Large B-Cell Lymphoma 8 241560 -NCIT:C171158 Ann Arbor Stage IIX (Bulky) Diffuse Large B-Cell Lymphoma 9 241561 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 9 241562 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 10 241563 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 10 241564 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 241565 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 9 241566 -NCIT:C8860 Ann Arbor Stage II Follicular Lymphoma 8 241567 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 9 241568 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 10 241569 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 10 241570 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 9 241571 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 10 241572 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 10 241573 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 9 241574 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 10 241575 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 10 241576 -NCIT:C8937 Ann Arbor Stage II B Lymphoblastic Lymphoma 8 241577 -NCIT:C9202 Ann Arbor Stage II Mantle Cell Lymphoma 8 241578 -NCIT:C8473 Ann Arbor Stage II Contiguous Mantle Cell Lymphoma 9 241579 -NCIT:C9198 Ann Arbor Stage II Non-Contiguous Mantle Cell Lymphoma 9 241580 -NCIT:C94792 Ann Arbor Stage II Childhood Non-Hodgkin Lymphoma 7 241581 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 241582 -NCIT:C9057 Ann Arbor Stage II Childhood Lymphoblastic Lymphoma 8 241583 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 8 241584 -NCIT:C8522 Ann Arbor Stage III Non-Hodgkin Lymphoma 6 241585 -NCIT:C8104 Ann Arbor Stage III Adult Non-Hodgkin Lymphoma 7 241586 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 8 241587 -NCIT:C8482 Ann Arbor Stage III Indolent Adult Non-Hodgkin Lymphoma 8 241588 -NCIT:C8484 Ann Arbor Stage III Aggressive Adult Non-Hodgkin Lymphoma 8 241589 -NCIT:C8138 Ann Arbor Stage III Adult Lymphoblastic Lymphoma 9 241590 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 9 241591 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 9 241592 -NCIT:C8667 Ann Arbor Stage III T-Cell Non-Hodgkin Lymphoma 7 241593 -NCIT:C8692 Ann Arbor Stage III Mature T- and NK-Cell Lymphoma 8 241594 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 9 241595 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 9 241596 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 241597 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 9 241598 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 9 241599 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 9 241600 -NCIT:C8844 Ann Arbor Stage III B-Cell Non-Hodgkin Lymphoma 7 241601 -NCIT:C68682 Ann Arbor Stage III Marginal Zone Lymphoma 8 241602 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 241603 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 9 241604 -NCIT:C8128 Ann Arbor Stage III Small Lymphocytic Lymphoma 8 241605 -NCIT:C8483 Ann Arbor Stage III Mantle Cell Lymphoma 8 241606 -NCIT:C8655 Ann Arbor Stage III Lymphoplasmacytic Lymphoma 8 241607 -NCIT:C8850 Ann Arbor Stage III Burkitt Lymphoma 8 241608 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 9 241609 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 9 241610 -NCIT:C8856 Ann Arbor Stage III Diffuse Large B-Cell Lymphoma 8 241611 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 9 241612 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 241613 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 9 241614 -NCIT:C8861 Ann Arbor Stage III Follicular Lymphoma 8 241615 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 9 241616 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 9 241617 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 9 241618 -NCIT:C8872 Ann Arbor Stage III B Lymphoblastic Lymphoma 8 241619 -NCIT:C94793 Ann Arbor Stage III Childhood Non-Hodgkin Lymphoma 7 241620 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 241621 -NCIT:C9058 Ann Arbor Stage III Childhood Lymphoblastic Lymphoma 8 241622 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 8 241623 -NCIT:C8523 Ann Arbor Stage IV Non-Hodgkin Lymphoma 6 241624 -NCIT:C8105 Ann Arbor Stage IV Adult Non-Hodgkin Lymphoma 7 241625 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 8 241626 -NCIT:C8485 Ann Arbor Stage IV Indolent Adult Non-Hodgkin Lymphoma 8 241627 -NCIT:C8487 Ann Arbor Stage IV Aggressive Adult Non-Hodgkin Lymphoma 8 241628 -NCIT:C8151 Ann Arbor Stage IV Adult Lymphoblastic Lymphoma 9 241629 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 9 241630 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 9 241631 -NCIT:C8668 Ann Arbor Stage IV T-Cell Non-Hodgkin Lymphoma 7 241632 -NCIT:C8693 Ann Arbor Stage IV Mature T- and NK-Cell Lymphoma 8 241633 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 9 241634 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 9 241635 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 241636 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 9 241637 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 9 241638 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 9 241639 -NCIT:C8845 Ann Arbor Stage IV B-Cell Non-Hodgkin Lymphoma 7 241640 -NCIT:C5006 Ann Arbor Stage IV Follicular Lymphoma 8 241641 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 9 241642 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 9 241643 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 9 241644 -NCIT:C5084 Ann Arbor Stage IV Burkitt Lymphoma 8 241645 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 9 241646 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 9 241647 -NCIT:C68683 Ann Arbor Stage IV Marginal Zone Lymphoma 8 241648 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 241649 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 9 241650 -NCIT:C8141 Ann Arbor Stage IV Small Lymphocytic Lymphoma 8 241651 -NCIT:C8486 Ann Arbor Stage IV Mantle Cell Lymphoma 8 241652 -NCIT:C8656 Ann Arbor Stage IV Lymphoplasmacytic Lymphoma 8 241653 -NCIT:C8857 Ann Arbor Stage IV Diffuse Large B-Cell Lymphoma 8 241654 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 9 241655 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 241656 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 9 241657 -NCIT:C8873 Ann Arbor Stage IV B Lymphoblastic Lymphoma 8 241658 -NCIT:C94794 Ann Arbor Stage IV Childhood Non-Hodgkin Lymphoma 7 241659 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 241660 -NCIT:C9059 Ann Arbor Stage IV Childhood Lymphoblastic Lymphoma 8 241661 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 8 241662 -NCIT:C151957 Transformed Non-Hodgkin Lymphoma 5 241663 -NCIT:C139681 Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 6 241664 -NCIT:C160232 Recurrent Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 7 241665 -NCIT:C160240 Refractory Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 7 241666 -NCIT:C140091 Refractory Transformed Non-Hodgkin Lymphoma 6 241667 -NCIT:C158150 Refractory Transformed B-Cell Non-Hodgkin Lymphoma 7 241668 -NCIT:C160240 Refractory Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 8 241669 -NCIT:C186484 Refractory Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 8 241670 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 9 241671 -NCIT:C165791 Refractory Transformed T-cell Non-Hodgkin Lymphoma 7 241672 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 8 241673 -NCIT:C165783 Transformed Mycosis Fungoides 6 241674 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 7 241675 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 7 241676 -NCIT:C172361 Advanced Transformed Non-Hodgkin Lymphoma 6 241677 -NCIT:C179717 Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 6 241678 -NCIT:C156699 Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 7 241679 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 8 241680 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 8 241681 -NCIT:C157625 Transformed Small Lymphocytic Lymphoma to Diffuse Large B-Cell Lymphoma 7 241682 -NCIT:C185134 Transformed Lymphoplasmacytic Lymphoma to Diffuse Large B-Cell Lymphoma 7 241683 -NCIT:C185135 Transformed Waldenstrom Macroglobulinemia to Diffuse Large B-Cell Lymphoma 8 241684 -NCIT:C186483 Recurrent Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 7 241685 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 8 241686 -NCIT:C186484 Refractory Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 7 241687 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 8 241688 -NCIT:C179721 Transformed B-Cell Lymphoma, Unclassifiable, with Features Intermediate between Diffuse Large B-Cell Lymphoma and Classic Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 6 241689 -NCIT:C8702 Recurrent Transformed Non-Hodgkin Lymphoma 6 241690 -NCIT:C158149 Recurrent Transformed B-Cell Non-Hodgkin Lymphoma 7 241691 -NCIT:C160232 Recurrent Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 8 241692 -NCIT:C186483 Recurrent Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 8 241693 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 9 241694 -NCIT:C165789 Recurrent Transformed T-cell Non-Hodgkin Lymphoma 7 241695 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 8 241696 -NCIT:C171037 Mediastinal Non-Hodgkin Lymphoma 5 241697 -NCIT:C45380 Thymic Mucosa-Associated Lymphoid Tissue Lymphoma 6 241698 -NCIT:C45740 Mediastinal T Lymphoblastic Lymphoma 6 241699 -NCIT:C9280 Primary Mediastinal (Thymic) Large B-Cell Lymphoma 6 241700 -NCIT:C141262 Primary Mediastinal (Thymic) Large B-Cell Lymphoma by Ann Arbor Stage 7 241701 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 241702 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 241703 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 241704 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 241705 -NCIT:C188455 Childhood Primary Mediastinal (Thymic) Large B-Cell Lymphoma 7 241706 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 7 241707 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 7 241708 -NCIT:C172371 Advanced Non-Hodgkin Lymphoma 5 241709 -NCIT:C166180 Advanced Anaplastic Large Cell Lymphoma 6 241710 -NCIT:C171264 Advanced Diffuse Large B-Cell Lymphoma 6 241711 -NCIT:C172359 Advanced Follicular Lymphoma 6 241712 -NCIT:C172360 Advanced Marginal Zone Lymphoma 6 241713 -NCIT:C172361 Advanced Transformed Non-Hodgkin Lymphoma 6 241714 -NCIT:C172442 Advanced Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 6 241715 -NCIT:C53283 Advanced Favorable Non-Hodgkin Lymphoma 6 241716 -NCIT:C53284 Advanced Unfavorable Non-Hodgkin Lymphoma 6 241717 -NCIT:C173171 Sinonasal Non-Hodgkin Lymphoma 5 241718 -NCIT:C173172 Sinonasal Extranodal NK/T-Cell Lymphoma 6 241719 -NCIT:C173173 Nasal Cavity Extranodal NK/T-Cell Lymphoma 7 241720 -NCIT:C6069 Paranasal Sinus Non-Hodgkin Lymphoma 6 241721 -NCIT:C6073 Paranasal Sinus Diffuse Large B-Cell Lymphoma 7 241722 -NCIT:C6075 Nasal Cavity Non-Hodgkin Lymphoma 6 241723 -NCIT:C173173 Nasal Cavity Extranodal NK/T-Cell Lymphoma 7 241724 -NCIT:C188081 Nasal Cavity Diffuse Large B-Cell Lymphoma 7 241725 -NCIT:C173355 Pharyngeal Non-Hodgkin Lymphoma 5 241726 -NCIT:C173359 Nasopharyngeal Non-Hodgkin Lymphoma 6 241727 -NCIT:C173579 Oropharyngeal Non-Hodgkin Lymphoma 6 241728 -NCIT:C188072 Tonsillar Diffuse Large B-Cell Lymphoma 7 241729 -NCIT:C188080 Tonsillar Mantle Cell Lymphoma 7 241730 -NCIT:C173691 Salivary Gland Non-Hodgkin Lymphoma 5 241731 -NCIT:C173693 Salivary Gland Mucosa-Associated Lymphoid Tissue Lymphoma 6 241732 -NCIT:C35687 Parotid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 7 241733 -NCIT:C173715 Salivary Gland Follicular Lymphoma 6 241734 -NCIT:C173716 Parotid Gland Follicular Lymphoma 7 241735 -NCIT:C173717 Salivary Gland Diffuse Large B-Cell Lymphoma 6 241736 -NCIT:C173719 Parotid Gland Diffuse Large B-Cell Lymphoma 7 241737 -NCIT:C5981 Major Salivary Gland Non-Hodgkin Lymphoma 6 241738 -NCIT:C5951 Parotid Gland Non-Hodgkin Lymphoma 7 241739 -NCIT:C173716 Parotid Gland Follicular Lymphoma 8 241740 -NCIT:C173719 Parotid Gland Diffuse Large B-Cell Lymphoma 8 241741 -NCIT:C181210 Parotid Gland Mantle Cell Lymphoma 8 241742 -NCIT:C35687 Parotid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 8 241743 -NCIT:C175470 Secondary Choroidal Non-Hodgkin Lymphoma 5 241744 -NCIT:C185753 Extranodal Non-Hodgkin Lymphoma 5 241745 -NCIT:C188114 Primary Cutaneous Non-Hodgkin Lymphoma 6 241746 -NCIT:C3467 Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 7 241747 -NCIT:C172442 Advanced Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 241748 -NCIT:C180374 Early Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 241749 -NCIT:C3246 Mycosis Fungoides 8 241750 -NCIT:C141143 Mycosis Fungoides by AJCC v7 Stage 9 241751 -NCIT:C7796 Stage I Mycosis Fungoides AJCC v7 10 241752 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 11 241753 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 11 241754 -NCIT:C7798 Stage II Mycosis Fungoides AJCC v7 10 241755 -NCIT:C7800 Stage III Mycosis Fungoides AJCC v7 10 241756 -NCIT:C7802 Stage IV Mycosis Fungoides AJCC v7 10 241757 -NCIT:C165783 Transformed Mycosis Fungoides 9 241758 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 241759 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 241760 -NCIT:C8686 Recurrent Mycosis Fungoides 9 241761 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 241762 -NCIT:C8687 Refractory Mycosis Fungoides 9 241763 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 241764 -NCIT:C39644 Mycosis Fungoides Variant 8 241765 -NCIT:C35464 Granulomatous Slack Skin Disease 9 241766 -NCIT:C35685 Folliculotropic Mycosis Fungoides 9 241767 -NCIT:C35794 Pagetoid Reticulosis 9 241768 -NCIT:C45332 Primary Cutaneous Peripheral T-Cell Lymphoma, Rare Subtype 8 241769 -NCIT:C139023 Primary Cutaneous Acral CD8-Positive T-Cell Lymphoma 9 241770 -NCIT:C45339 Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 241771 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 241772 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 241773 -NCIT:C45340 Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 241774 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 241775 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 241776 -NCIT:C6860 Primary Cutaneous Anaplastic Large Cell Lymphoma 8 241777 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 241778 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 241779 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 9 241780 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 9 241781 -NCIT:C6918 Subcutaneous Panniculitis-Like T-Cell Lymphoma 8 241782 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 241783 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 241784 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 241785 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 241786 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 241787 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 241788 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 241789 -NCIT:C8686 Recurrent Mycosis Fungoides 9 241790 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 241791 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 241792 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 241793 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 241794 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 241795 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 241796 -NCIT:C8687 Refractory Mycosis Fungoides 9 241797 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 241798 -NCIT:C6858 Primary Cutaneous B-Cell Non-Hodgkin Lymphoma 7 241799 -NCIT:C45193 Primary Cutaneous Diffuse Large B-Cell Lymphoma 8 241800 -NCIT:C45194 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 241801 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 241802 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 241803 -NCIT:C45213 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Other 9 241804 -NCIT:C45214 Primary Cutaneous Intravascular Large B-Cell Lymphoma 10 241805 -NCIT:C45215 Primary Cutaneous T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 10 241806 -NCIT:C45216 Primary Cutaneous Plasmablastic Lymphoma 10 241807 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 8 241808 -NCIT:C7230 Primary Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 241809 -NCIT:C45163 Borrelia Burgdoferi-Associated Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 241810 -NCIT:C3898 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 6 241811 -NCIT:C123394 Childhood Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 7 241812 -NCIT:C141260 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue by Ann Arbor Stage 7 241813 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 241814 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 241815 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 241816 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 241817 -NCIT:C172844 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue Involving the Digestive System 7 241818 -NCIT:C5266 Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 8 241819 -NCIT:C27763 Helicobacter Pylori-Associated Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 9 241820 -NCIT:C5635 Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 8 241821 -NCIT:C45166 Campylobacter Jejuni-Associated Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 9 241822 -NCIT:C5768 Liver Mucosa-Associated Lymphoid Tissue Lymphoma 8 241823 -NCIT:C95626 Esophageal Mucosa-Associated Lymphoid Tissue Lymphoma 8 241824 -NCIT:C96506 Colorectal Mucosa-Associated Lymphoid Tissue Lymphoma 8 241825 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 9 241826 -NCIT:C173693 Salivary Gland Mucosa-Associated Lymphoid Tissue Lymphoma 7 241827 -NCIT:C35687 Parotid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 8 241828 -NCIT:C181910 Endometrial Mucosa-Associated Lymphoid Tissue Lymphoma 7 241829 -NCIT:C35688 Breast Mucosa-Associated Lymphoid Tissue Lymphoma 7 241830 -NCIT:C35689 Ocular Adnexal Mucosa-Associated Lymphoid Tissue Lymphoma 7 241831 -NCIT:C175431 Conjunctival Mucosa-Associated Lymphoid Tissue Lymphoma 8 241832 -NCIT:C175482 Lacrimal System Mucosa-Associated Lymphoid Tissue Lymphoma 8 241833 -NCIT:C175483 Lacrimal Gland Mucosa-Associated Lymphoid Tissue Lymphoma 9 241834 -NCIT:C175484 Lacrimal Drainage System Mucosa-Associated Lymphoid Tissue Lymphoma 9 241835 -NCIT:C182357 Diffusion Restriction 8 241836 -NCIT:C44960 Chlamydia Psittaci-Associated Ocular Adnexal Mucosa-Associated Lymphoid Tissue Lymphoma 8 241837 -NCIT:C39878 Bladder Mucosa-Associated Lymphoid Tissue Lymphoma 7 241838 -NCIT:C45380 Thymic Mucosa-Associated Lymphoid Tissue Lymphoma 7 241839 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 7 241840 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 7 241841 -NCIT:C5264 Lung Mucosa-Associated Lymphoid Tissue Lymphoma 7 241842 -NCIT:C7230 Primary Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 7 241843 -NCIT:C45163 Borrelia Burgdoferi-Associated Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 241844 -NCIT:C7601 Thyroid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 7 241845 -NCIT:C95991 Dural Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 7 241846 -NCIT:C4684 Nasal Type Extranodal NK/T-Cell Lymphoma 6 241847 -NCIT:C115154 Adult Nasal Type Extranodal NK/T-Cell Lymphoma 7 241848 -NCIT:C141296 Nasal Type NK/T-Cell Lymphoma by Ann Arbor Stage 7 241849 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 8 241850 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 8 241851 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 8 241852 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 8 241853 -NCIT:C162468 Testicular Nasal Type Extranodal NK/T-Cell Lymphoma 7 241854 -NCIT:C173172 Sinonasal Extranodal NK/T-Cell Lymphoma 7 241855 -NCIT:C173173 Nasal Cavity Extranodal NK/T-Cell Lymphoma 8 241856 -NCIT:C45268 Cutaneous Nasal Type Extranodal NK/T-Cell Lymphoma 7 241857 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 7 241858 -NCIT:C68692 Childhood Nasal Type Extranodal NK/T-Cell Lymphoma 7 241859 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 7 241860 -NCIT:C27693 EBV-Related Non-Hodgkin Lymphoma 5 241861 -NCIT:C139288 Primary EBV-Positive Nodal T-Cell or NK-Cell Lymphoma 6 241862 -NCIT:C27694 EBV-Related Burkitt Lymphoma 6 241863 -NCIT:C27122 Endemic Burkitt Lymphoma 7 241864 -NCIT:C7933 Grade III Lymphomatoid Granulomatosis 6 241865 -NCIT:C115150 Adult Grade III Lymphomatoid Granulomatosis 7 241866 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 8 241867 -NCIT:C115204 Childhood Grade III Lymphomatoid Granulomatosis 7 241868 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 8 241869 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 7 241870 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 8 241871 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 8 241872 -NCIT:C80281 EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 6 241873 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 7 241874 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 7 241875 -NCIT:C188456 Childhood EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 7 241876 -NCIT:C188457 Adult EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 7 241877 -NCIT:C80374 Systemic EBV-Positive T-Cell Lymphoma of Childhood 6 241878 -NCIT:C27762 Helicobacter Pylori-Related Non-Hodgkin Lymphoma 5 241879 -NCIT:C27763 Helicobacter Pylori-Associated Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 6 241880 -NCIT:C3457 B-Cell Non-Hodgkin Lymphoma 5 241881 -NCIT:C141243 B-Cell Non-Hodgkin Lymphoma by Ann Arbor Stage 6 241882 -NCIT:C141250 B Lymphoblastic Lymphoma by Ann Arbor Stage 7 241883 -NCIT:C8871 Ann Arbor Stage I B Lymphoblastic Lymphoma 8 241884 -NCIT:C8872 Ann Arbor Stage III B Lymphoblastic Lymphoma 8 241885 -NCIT:C8873 Ann Arbor Stage IV B Lymphoblastic Lymphoma 8 241886 -NCIT:C8937 Ann Arbor Stage II B Lymphoblastic Lymphoma 8 241887 -NCIT:C141253 Burkitt Lymphoma by Ann Arbor Stage 7 241888 -NCIT:C5084 Ann Arbor Stage IV Burkitt Lymphoma 8 241889 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 9 241890 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 9 241891 -NCIT:C8848 Ann Arbor Stage I Burkitt Lymphoma 8 241892 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 9 241893 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 9 241894 -NCIT:C8849 Ann Arbor Stage II Burkitt Lymphoma 8 241895 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 9 241896 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 10 241897 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 10 241898 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 9 241899 -NCIT:C8850 Ann Arbor Stage III Burkitt Lymphoma 8 241900 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 9 241901 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 9 241902 -NCIT:C141254 Diffuse Large B-Cell Lymphoma by Ann Arbor Stage 7 241903 -NCIT:C141262 Primary Mediastinal (Thymic) Large B-Cell Lymphoma by Ann Arbor Stage 8 241904 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 241905 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 241906 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 241907 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 241908 -NCIT:C141263 Centroblastic Lymphoma by Ann Arbor Stage 8 241909 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 9 241910 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 9 241911 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 9 241912 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 9 241913 -NCIT:C8854 Ann Arbor Stage I Diffuse Large B-Cell Lymphoma 8 241914 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 9 241915 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 241916 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 9 241917 -NCIT:C8855 Ann Arbor Stage II Diffuse Large B-Cell Lymphoma 8 241918 -NCIT:C171158 Ann Arbor Stage IIX (Bulky) Diffuse Large B-Cell Lymphoma 9 241919 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 9 241920 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 10 241921 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 10 241922 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 241923 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 9 241924 -NCIT:C8856 Ann Arbor Stage III Diffuse Large B-Cell Lymphoma 8 241925 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 9 241926 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 241927 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 9 241928 -NCIT:C8857 Ann Arbor Stage IV Diffuse Large B-Cell Lymphoma 8 241929 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 9 241930 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 241931 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 9 241932 -NCIT:C141255 Follicular Lymphoma by Ann Arbor Stage 7 241933 -NCIT:C5006 Ann Arbor Stage IV Follicular Lymphoma 8 241934 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 9 241935 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 9 241936 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 9 241937 -NCIT:C8859 Ann Arbor Stage I Follicular Lymphoma 8 241938 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 9 241939 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 9 241940 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 9 241941 -NCIT:C8860 Ann Arbor Stage II Follicular Lymphoma 8 241942 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 9 241943 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 10 241944 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 10 241945 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 9 241946 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 10 241947 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 10 241948 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 9 241949 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 10 241950 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 10 241951 -NCIT:C8861 Ann Arbor Stage III Follicular Lymphoma 8 241952 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 9 241953 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 9 241954 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 9 241955 -NCIT:C141256 Lymphoplasmacytic Lymphoma by Ann Arbor Stage 7 241956 -NCIT:C8653 Ann Arbor Stage I Lymphoplasmacytic Lymphoma 8 241957 -NCIT:C8654 Ann Arbor Stage II Lymphoplasmacytic Lymphoma 8 241958 -NCIT:C8655 Ann Arbor Stage III Lymphoplasmacytic Lymphoma 8 241959 -NCIT:C8656 Ann Arbor Stage IV Lymphoplasmacytic Lymphoma 8 241960 -NCIT:C141257 Mantle Cell Lymphoma by Ann Arbor Stage 7 241961 -NCIT:C8465 Ann Arbor Stage I Mantle Cell Lymphoma 8 241962 -NCIT:C8483 Ann Arbor Stage III Mantle Cell Lymphoma 8 241963 -NCIT:C8486 Ann Arbor Stage IV Mantle Cell Lymphoma 8 241964 -NCIT:C9202 Ann Arbor Stage II Mantle Cell Lymphoma 8 241965 -NCIT:C8473 Ann Arbor Stage II Contiguous Mantle Cell Lymphoma 9 241966 -NCIT:C9198 Ann Arbor Stage II Non-Contiguous Mantle Cell Lymphoma 9 241967 -NCIT:C141258 Marginal Zone Lymphoma by Ann Arbor Stage 7 241968 -NCIT:C141260 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue by Ann Arbor Stage 8 241969 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 241970 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 241971 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 241972 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 241973 -NCIT:C141261 Nodal Marginal Zone Lymphoma by Ann Arbor Stage 8 241974 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 9 241975 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 9 241976 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 9 241977 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 9 241978 -NCIT:C68678 Ann Arbor Stage I Marginal Zone Lymphoma 8 241979 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 241980 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 9 241981 -NCIT:C68679 Ann Arbor Stage II Marginal Zone Lymphoma 8 241982 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 241983 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 9 241984 -NCIT:C68682 Ann Arbor Stage III Marginal Zone Lymphoma 8 241985 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 241986 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 9 241987 -NCIT:C68683 Ann Arbor Stage IV Marginal Zone Lymphoma 8 241988 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 241989 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 9 241990 -NCIT:C141259 Small Lymphocytic Lymphoma by Ann Arbor Stage 7 241991 -NCIT:C8070 Ann Arbor Stage I Small Lymphocytic Lymphoma 8 241992 -NCIT:C8115 Ann Arbor Stage II Small Lymphocytic Lymphoma 8 241993 -NCIT:C8128 Ann Arbor Stage III Small Lymphocytic Lymphoma 8 241994 -NCIT:C8141 Ann Arbor Stage IV Small Lymphocytic Lymphoma 8 241995 -NCIT:C27308 Ann Arbor Stage I B-Cell Non-Hodgkin Lymphoma 7 241996 -NCIT:C68678 Ann Arbor Stage I Marginal Zone Lymphoma 8 241997 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 241998 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 9 241999 -NCIT:C8070 Ann Arbor Stage I Small Lymphocytic Lymphoma 8 242000 -NCIT:C8465 Ann Arbor Stage I Mantle Cell Lymphoma 8 242001 -NCIT:C8653 Ann Arbor Stage I Lymphoplasmacytic Lymphoma 8 242002 -NCIT:C8848 Ann Arbor Stage I Burkitt Lymphoma 8 242003 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 9 242004 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 9 242005 -NCIT:C8854 Ann Arbor Stage I Diffuse Large B-Cell Lymphoma 8 242006 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 9 242007 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 242008 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 9 242009 -NCIT:C8859 Ann Arbor Stage I Follicular Lymphoma 8 242010 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 9 242011 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 9 242012 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 9 242013 -NCIT:C8871 Ann Arbor Stage I B Lymphoblastic Lymphoma 8 242014 -NCIT:C8843 Ann Arbor Stage II B-Cell Non-Hodgkin Lymphoma 7 242015 -NCIT:C68679 Ann Arbor Stage II Marginal Zone Lymphoma 8 242016 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 242017 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 9 242018 -NCIT:C8115 Ann Arbor Stage II Small Lymphocytic Lymphoma 8 242019 -NCIT:C8654 Ann Arbor Stage II Lymphoplasmacytic Lymphoma 8 242020 -NCIT:C8849 Ann Arbor Stage II Burkitt Lymphoma 8 242021 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 9 242022 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 10 242023 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 10 242024 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 9 242025 -NCIT:C8855 Ann Arbor Stage II Diffuse Large B-Cell Lymphoma 8 242026 -NCIT:C171158 Ann Arbor Stage IIX (Bulky) Diffuse Large B-Cell Lymphoma 9 242027 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 9 242028 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 10 242029 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 10 242030 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 242031 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 9 242032 -NCIT:C8860 Ann Arbor Stage II Follicular Lymphoma 8 242033 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 9 242034 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 10 242035 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 10 242036 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 9 242037 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 10 242038 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 10 242039 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 9 242040 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 10 242041 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 10 242042 -NCIT:C8937 Ann Arbor Stage II B Lymphoblastic Lymphoma 8 242043 -NCIT:C9202 Ann Arbor Stage II Mantle Cell Lymphoma 8 242044 -NCIT:C8473 Ann Arbor Stage II Contiguous Mantle Cell Lymphoma 9 242045 -NCIT:C9198 Ann Arbor Stage II Non-Contiguous Mantle Cell Lymphoma 9 242046 -NCIT:C8844 Ann Arbor Stage III B-Cell Non-Hodgkin Lymphoma 7 242047 -NCIT:C68682 Ann Arbor Stage III Marginal Zone Lymphoma 8 242048 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 242049 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 9 242050 -NCIT:C8128 Ann Arbor Stage III Small Lymphocytic Lymphoma 8 242051 -NCIT:C8483 Ann Arbor Stage III Mantle Cell Lymphoma 8 242052 -NCIT:C8655 Ann Arbor Stage III Lymphoplasmacytic Lymphoma 8 242053 -NCIT:C8850 Ann Arbor Stage III Burkitt Lymphoma 8 242054 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 9 242055 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 9 242056 -NCIT:C8856 Ann Arbor Stage III Diffuse Large B-Cell Lymphoma 8 242057 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 9 242058 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 242059 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 9 242060 -NCIT:C8861 Ann Arbor Stage III Follicular Lymphoma 8 242061 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 9 242062 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 9 242063 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 9 242064 -NCIT:C8872 Ann Arbor Stage III B Lymphoblastic Lymphoma 8 242065 -NCIT:C8845 Ann Arbor Stage IV B-Cell Non-Hodgkin Lymphoma 7 242066 -NCIT:C5006 Ann Arbor Stage IV Follicular Lymphoma 8 242067 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 9 242068 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 9 242069 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 9 242070 -NCIT:C5084 Ann Arbor Stage IV Burkitt Lymphoma 8 242071 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 9 242072 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 9 242073 -NCIT:C68683 Ann Arbor Stage IV Marginal Zone Lymphoma 8 242074 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 242075 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 9 242076 -NCIT:C8141 Ann Arbor Stage IV Small Lymphocytic Lymphoma 8 242077 -NCIT:C8486 Ann Arbor Stage IV Mantle Cell Lymphoma 8 242078 -NCIT:C8656 Ann Arbor Stage IV Lymphoplasmacytic Lymphoma 8 242079 -NCIT:C8857 Ann Arbor Stage IV Diffuse Large B-Cell Lymphoma 8 242080 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 9 242081 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 242082 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 9 242083 -NCIT:C8873 Ann Arbor Stage IV B Lymphoblastic Lymphoma 8 242084 -NCIT:C147948 Central Nervous System B-Cell Non-Hodgkin Lymphoma 6 242085 -NCIT:C71720 Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 7 242086 -NCIT:C129602 Central Nervous System Intravascular Large B-Cell Lymphoma 8 242087 -NCIT:C155797 Pituitary Gland Diffuse Large B-Cell Lymphoma 8 242088 -NCIT:C157067 Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 242089 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 242090 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 242091 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 242092 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 242093 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 242094 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 242095 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 242096 -NCIT:C95991 Dural Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 7 242097 -NCIT:C178541 Aggressive B-Cell Non-Hodgkin Lymphoma 6 242098 -NCIT:C131911 Burkitt-Like Lymphoma with 11q Aberration 7 242099 -NCIT:C178553 Recurrent Aggressive B-Cell Non-Hodgkin Lymphoma 7 242100 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 8 242101 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 8 242102 -NCIT:C5008 Recurrent Burkitt Lymphoma 8 242103 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 9 242104 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 9 242105 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 8 242106 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 9 242107 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 9 242108 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 8 242109 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 9 242110 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 9 242111 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 8 242112 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 8 242113 -NCIT:C178555 Refractory Aggressive B-Cell Non-Hodgkin Lymphoma 7 242114 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 8 242115 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 8 242116 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 8 242117 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 9 242118 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 9 242119 -NCIT:C8847 Refractory Burkitt Lymphoma 8 242120 -NCIT:C8862 Refractory Mantle Cell Lymphoma 8 242121 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 8 242122 -NCIT:C2912 Burkitt Lymphoma 7 242123 -NCIT:C141253 Burkitt Lymphoma by Ann Arbor Stage 8 242124 -NCIT:C5084 Ann Arbor Stage IV Burkitt Lymphoma 9 242125 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 10 242126 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 10 242127 -NCIT:C8848 Ann Arbor Stage I Burkitt Lymphoma 9 242128 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 10 242129 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 10 242130 -NCIT:C8849 Ann Arbor Stage II Burkitt Lymphoma 9 242131 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 10 242132 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 11 242133 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 11 242134 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 10 242135 -NCIT:C8850 Ann Arbor Stage III Burkitt Lymphoma 9 242136 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 10 242137 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 10 242138 -NCIT:C168651 Cutaneous Burkitt Lymphoma 8 242139 -NCIT:C188075 Kidney Burkitt Lymphoma 8 242140 -NCIT:C27409 Small Intestinal Burkitt Lymphoma 8 242141 -NCIT:C27410 Small Intestinal Atypical Burkitt/Burkitt-Like Lymphoma 9 242142 -NCIT:C27694 EBV-Related Burkitt Lymphoma 8 242143 -NCIT:C27122 Endemic Burkitt Lymphoma 9 242144 -NCIT:C27914 Sporadic Burkitt Lymphoma 8 242145 -NCIT:C27915 Immunodeficiency-Related Burkitt Lymphoma 8 242146 -NCIT:C7244 Burkitt Lymphoma Post-Transplant Lymphoproliferative Disorder 9 242147 -NCIT:C7245 Burkitt-Like Lymphoma Post-Transplant Lymphoproliferative Disorder 10 242148 -NCIT:C7255 Methotrexate-Related Burkitt Lymphoma 9 242149 -NCIT:C8286 AIDS-Related Burkitt Lymphoma 9 242150 -NCIT:C27857 AIDS-Related Burkitt Lymphoma with Plasmacytoid Differentiation 10 242151 -NCIT:C40376 Breast Burkitt Lymphoma 8 242152 -NCIT:C5008 Recurrent Burkitt Lymphoma 8 242153 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 9 242154 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 9 242155 -NCIT:C5251 Gastric Burkitt Lymphoma 8 242156 -NCIT:C6917 Atypical Burkitt/Burkitt-Like Lymphoma 8 242157 -NCIT:C27410 Small Intestinal Atypical Burkitt/Burkitt-Like Lymphoma 9 242158 -NCIT:C7245 Burkitt-Like Lymphoma Post-Transplant Lymphoproliferative Disorder 9 242159 -NCIT:C7188 Classical Burkitt Lymphoma 8 242160 -NCIT:C7189 Burkitt Lymphoma with Plasmacytoid Differentiation 8 242161 -NCIT:C27857 AIDS-Related Burkitt Lymphoma with Plasmacytoid Differentiation 9 242162 -NCIT:C7309 Splenic Burkitt Lymphoma 8 242163 -NCIT:C8847 Refractory Burkitt Lymphoma 8 242164 -NCIT:C9062 Adult Burkitt Lymphoma 8 242165 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 9 242166 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 9 242167 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 10 242168 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 10 242169 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 9 242170 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 9 242171 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 9 242172 -NCIT:C9095 Childhood Burkitt Lymphoma 8 242173 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 9 242174 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 9 242175 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 9 242176 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 9 242177 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 9 242178 -NCIT:C96502 Colorectal Burkitt Lymphoma 8 242179 -NCIT:C27465 Colon Burkitt Lymphoma 9 242180 -NCIT:C3460 Grade 3 Follicular Lymphoma 7 242181 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 8 242182 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 9 242183 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 9 242184 -NCIT:C6859 Grade 3 Cutaneous Follicular Lymphoma 8 242185 -NCIT:C7191 Grade 3a Follicular Lymphoma 8 242186 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 9 242187 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 9 242188 -NCIT:C7192 Grade 3b Follicular Lymphoma 8 242189 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 9 242190 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 9 242191 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 8 242192 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 8 242193 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 9 242194 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 9 242195 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 8 242196 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 8 242197 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 8 242198 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 9 242199 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 9 242200 -NCIT:C36081 Diffuse Large B-Cell Lymphoma Activated B-Cell Type 7 242201 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 8 242202 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 8 242203 -NCIT:C4337 Mantle Cell Lymphoma 7 242204 -NCIT:C141257 Mantle Cell Lymphoma by Ann Arbor Stage 8 242205 -NCIT:C8465 Ann Arbor Stage I Mantle Cell Lymphoma 9 242206 -NCIT:C8483 Ann Arbor Stage III Mantle Cell Lymphoma 9 242207 -NCIT:C8486 Ann Arbor Stage IV Mantle Cell Lymphoma 9 242208 -NCIT:C9202 Ann Arbor Stage II Mantle Cell Lymphoma 9 242209 -NCIT:C8473 Ann Arbor Stage II Contiguous Mantle Cell Lymphoma 10 242210 -NCIT:C9198 Ann Arbor Stage II Non-Contiguous Mantle Cell Lymphoma 10 242211 -NCIT:C161604 Prostate Mantle Cell Lymphoma 8 242212 -NCIT:C181210 Parotid Gland Mantle Cell Lymphoma 8 242213 -NCIT:C188080 Tonsillar Mantle Cell Lymphoma 8 242214 -NCIT:C27440 Gastric Mantle Cell Lymphoma 8 242215 -NCIT:C27441 Small Intestinal Mantle Cell Lymphoma 8 242216 -NCIT:C39747 Pleomorphic Variant Mantle Cell Lymphoma 8 242217 -NCIT:C45266 Cutaneous Mantle Cell Lymphoma 8 242218 -NCIT:C7229 Blastoid Variant Mantle Cell Lymphoma 8 242219 -NCIT:C7306 Splenic Mantle Cell Lymphoma 8 242220 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 8 242221 -NCIT:C8862 Refractory Mantle Cell Lymphoma 8 242222 -NCIT:C96505 Colorectal Mantle Cell Lymphoma 8 242223 -NCIT:C27411 Colon Mantle Cell Lymphoma 9 242224 -NCIT:C45194 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 7 242225 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 8 242226 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 8 242227 -NCIT:C45231 Diffuse Large B-Cell Lymphoma Unclassifiable 7 242228 -NCIT:C7212 AIDS-Related Diffuse Large B-cell Lymphoma 7 242229 -NCIT:C27858 AIDS-Related Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 8 242230 -NCIT:C27859 AIDS-Related Plasmablastic Lymphoma 8 242231 -NCIT:C38160 AIDS-Related Plasmablastic Lymphoma of Mucosa Site 9 242232 -NCIT:C9016 AIDS-Related Plasmablastic Lymphoma of the Oral Mucosa 10 242233 -NCIT:C8285 AIDS-Related Immunoblastic Lymphoma 8 242234 -NCIT:C9017 AIDS-Related Primary Effusion Lymphoma 8 242235 -NCIT:C7246 Diffuse Large B-Cell Lymphoma Post-Transplant Lymphoproliferative Disorder 7 242236 -NCIT:C7247 Anaplastic Lymphoma Post-Transplant Lymphoproliferative Disorder 8 242237 -NCIT:C7248 Centroblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 8 242238 -NCIT:C7249 Immunoblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 8 242239 -NCIT:C7933 Grade III Lymphomatoid Granulomatosis 7 242240 -NCIT:C115150 Adult Grade III Lymphomatoid Granulomatosis 8 242241 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 9 242242 -NCIT:C115204 Childhood Grade III Lymphomatoid Granulomatosis 8 242243 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 9 242244 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 8 242245 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 9 242246 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 9 242247 -NCIT:C8868 B Lymphoblastic Lymphoma 7 242248 -NCIT:C141250 B Lymphoblastic Lymphoma by Ann Arbor Stage 8 242249 -NCIT:C8871 Ann Arbor Stage I B Lymphoblastic Lymphoma 9 242250 -NCIT:C8872 Ann Arbor Stage III B Lymphoblastic Lymphoma 9 242251 -NCIT:C8873 Ann Arbor Stage IV B Lymphoblastic Lymphoma 9 242252 -NCIT:C8937 Ann Arbor Stage II B Lymphoblastic Lymphoma 9 242253 -NCIT:C7209 Childhood B Lymphoblastic Lymphoma 8 242254 -NCIT:C7310 Splenic B Lymphoblastic Lymphoma 8 242255 -NCIT:C7338 Adult B Lymphoblastic Lymphoma 8 242256 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 8 242257 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 8 242258 -NCIT:C7056 Mature B-Cell Non-Hodgkin Lymphoma 6 242259 -NCIT:C131911 Burkitt-Like Lymphoma with 11q Aberration 7 242260 -NCIT:C133494 Large B-Cell Lymphoma with IRF4 Rearrangement 7 242261 -NCIT:C188458 Childhood Large B-Cell Lymphoma with IRF4 Rearrangement 8 242262 -NCIT:C139681 Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 7 242263 -NCIT:C160232 Recurrent Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 8 242264 -NCIT:C160240 Refractory Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 8 242265 -NCIT:C165799 Recurrent Mature B-Cell Non-Hodgkin Lymphoma 7 242266 -NCIT:C158149 Recurrent Transformed B-Cell Non-Hodgkin Lymphoma 8 242267 -NCIT:C160232 Recurrent Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 9 242268 -NCIT:C186483 Recurrent Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 9 242269 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 10 242270 -NCIT:C5007 Recurrent Follicular Lymphoma 8 242271 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 9 242272 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 9 242273 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 9 242274 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 10 242275 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 10 242276 -NCIT:C5008 Recurrent Burkitt Lymphoma 8 242277 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 9 242278 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 9 242279 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 8 242280 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 9 242281 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 242282 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 9 242283 -NCIT:C8154 Recurrent Small Lymphocytic Lymphoma 8 242284 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 8 242285 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 8 242286 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 9 242287 -NCIT:C8852 Recurrent Diffuse Large B-Cell Lymphoma 8 242288 -NCIT:C138015 Recurrent Extranodal Diffuse Large B-cell Lymphoma 9 242289 -NCIT:C138025 Recurrent Intravascular Large B-Cell Lymphoma 9 242290 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 242291 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 242292 -NCIT:C156696 Recurrent T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 9 242293 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 242294 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 242295 -NCIT:C157679 Recurrent Primary Effusion Lymphoma 9 242296 -NCIT:C157683 Recurrent Plasmablastic Lymphoma 9 242297 -NCIT:C160229 Recurrent High Grade B-Cell Lymphoma 9 242298 -NCIT:C151980 Recurrent High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 10 242299 -NCIT:C162451 Recurrent High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 10 242300 -NCIT:C188788 Recurrent High Grade B-Cell Lymphoma, Not Otherwise Specified 10 242301 -NCIT:C165240 Recurrent Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 242302 -NCIT:C160230 Recurrent Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 10 242303 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 242304 -NCIT:C182035 Recurrent Immunoblastic Lymphoma 10 242305 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 11 242306 -NCIT:C8926 Recurrent Centroblastic Lymphoma 10 242307 -NCIT:C183140 Recurrent Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 9 242308 -NCIT:C188790 Recurrent ALK-Positive Large B-Cell Lymphoma 9 242309 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 9 242310 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 242311 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 10 242312 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 242313 -NCIT:C171299 Indolent B-Cell Non-Hodgkin Lymphoma 7 242314 -NCIT:C175451 Primary Uveal Non-Hodgkin Lymphoma 8 242315 -NCIT:C175464 Primary Choroidal Non-Hodgkin Lymphoma 9 242316 -NCIT:C175466 Primary Ciliary Body Non-Hodgkin Lymphoma 9 242317 -NCIT:C175467 Primary Iris Non-Hodgkin Lymphoma 9 242318 -NCIT:C3212 Lymphoplasmacytic Lymphoma 8 242319 -NCIT:C141256 Lymphoplasmacytic Lymphoma by Ann Arbor Stage 9 242320 -NCIT:C8653 Ann Arbor Stage I Lymphoplasmacytic Lymphoma 10 242321 -NCIT:C8654 Ann Arbor Stage II Lymphoplasmacytic Lymphoma 10 242322 -NCIT:C8655 Ann Arbor Stage III Lymphoplasmacytic Lymphoma 10 242323 -NCIT:C8656 Ann Arbor Stage IV Lymphoplasmacytic Lymphoma 10 242324 -NCIT:C7305 Splenic Lymphoplasmacytic Lymphoma 9 242325 -NCIT:C80307 Waldenstrom Macroglobulinemia 9 242326 -NCIT:C115212 Familial Waldenstrom Macroglobulinemia 10 242327 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 10 242328 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 10 242329 -NCIT:C155910 Smoldering Waldenstrom Macroglobulinemia 10 242330 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 9 242331 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 10 242332 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 9 242333 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 10 242334 -NCIT:C3465 Grade 1 Follicular Lymphoma 8 242335 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 9 242336 -NCIT:C7220 Grade 1 Cutaneous Follicular Lymphoma 9 242337 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 9 242338 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 9 242339 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 10 242340 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 10 242341 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 9 242342 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 9 242343 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 9 242344 -NCIT:C37203 Small Lymphocytic Lymphoma with Immunoglobulin Heavy Chain Variable-Region Gene Somatic Hypermutation 8 242345 -NCIT:C4341 Marginal Zone Lymphoma 8 242346 -NCIT:C141258 Marginal Zone Lymphoma by Ann Arbor Stage 9 242347 -NCIT:C141260 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue by Ann Arbor Stage 10 242348 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 242349 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 242350 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 242351 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 242352 -NCIT:C141261 Nodal Marginal Zone Lymphoma by Ann Arbor Stage 10 242353 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 11 242354 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 11 242355 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 11 242356 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 11 242357 -NCIT:C68678 Ann Arbor Stage I Marginal Zone Lymphoma 10 242358 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 242359 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 11 242360 -NCIT:C68679 Ann Arbor Stage II Marginal Zone Lymphoma 10 242361 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 242362 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 11 242363 -NCIT:C68682 Ann Arbor Stage III Marginal Zone Lymphoma 10 242364 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 242365 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 11 242366 -NCIT:C68683 Ann Arbor Stage IV Marginal Zone Lymphoma 10 242367 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 242368 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 11 242369 -NCIT:C143085 Refractory Marginal Zone Lymphoma 9 242370 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 10 242371 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 242372 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 10 242373 -NCIT:C172360 Advanced Marginal Zone Lymphoma 9 242374 -NCIT:C3898 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 242375 -NCIT:C123394 Childhood Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 242376 -NCIT:C141260 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue by Ann Arbor Stage 10 242377 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 242378 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 242379 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 242380 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 242381 -NCIT:C172844 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue Involving the Digestive System 10 242382 -NCIT:C5266 Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 11 242383 -NCIT:C27763 Helicobacter Pylori-Associated Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 12 242384 -NCIT:C5635 Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 11 242385 -NCIT:C45166 Campylobacter Jejuni-Associated Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 12 242386 -NCIT:C5768 Liver Mucosa-Associated Lymphoid Tissue Lymphoma 11 242387 -NCIT:C95626 Esophageal Mucosa-Associated Lymphoid Tissue Lymphoma 11 242388 -NCIT:C96506 Colorectal Mucosa-Associated Lymphoid Tissue Lymphoma 11 242389 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 12 242390 -NCIT:C173693 Salivary Gland Mucosa-Associated Lymphoid Tissue Lymphoma 10 242391 -NCIT:C35687 Parotid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 11 242392 -NCIT:C181910 Endometrial Mucosa-Associated Lymphoid Tissue Lymphoma 10 242393 -NCIT:C35688 Breast Mucosa-Associated Lymphoid Tissue Lymphoma 10 242394 -NCIT:C35689 Ocular Adnexal Mucosa-Associated Lymphoid Tissue Lymphoma 10 242395 -NCIT:C175431 Conjunctival Mucosa-Associated Lymphoid Tissue Lymphoma 11 242396 -NCIT:C175482 Lacrimal System Mucosa-Associated Lymphoid Tissue Lymphoma 11 242397 -NCIT:C175483 Lacrimal Gland Mucosa-Associated Lymphoid Tissue Lymphoma 12 242398 -NCIT:C175484 Lacrimal Drainage System Mucosa-Associated Lymphoid Tissue Lymphoma 12 242399 -NCIT:C182357 Diffusion Restriction 11 242400 -NCIT:C44960 Chlamydia Psittaci-Associated Ocular Adnexal Mucosa-Associated Lymphoid Tissue Lymphoma 11 242401 -NCIT:C39878 Bladder Mucosa-Associated Lymphoid Tissue Lymphoma 10 242402 -NCIT:C45380 Thymic Mucosa-Associated Lymphoid Tissue Lymphoma 10 242403 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 242404 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 242405 -NCIT:C5264 Lung Mucosa-Associated Lymphoid Tissue Lymphoma 10 242406 -NCIT:C7230 Primary Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 242407 -NCIT:C45163 Borrelia Burgdoferi-Associated Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 242408 -NCIT:C7601 Thyroid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 10 242409 -NCIT:C95991 Dural Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 242410 -NCIT:C4663 Splenic Marginal Zone Lymphoma 9 242411 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 10 242412 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 10 242413 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 9 242414 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 10 242415 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 242416 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 10 242417 -NCIT:C8863 Nodal Marginal Zone Lymphoma 9 242418 -NCIT:C141261 Nodal Marginal Zone Lymphoma by Ann Arbor Stage 10 242419 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 11 242420 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 11 242421 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 11 242422 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 11 242423 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 10 242424 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 10 242425 -NCIT:C80299 Pediatric Nodal Marginal Zone Lymphoma 10 242426 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 8 242427 -NCIT:C7264 Diffuse Follicular Lymphoma 8 242428 -NCIT:C7194 Grade 2 Diffuse Follicular Lymphoma 9 242429 -NCIT:C9464 Grade 1 Diffuse Follicular Lymphoma 9 242430 -NCIT:C8968 Grade 2 Follicular Lymphoma 8 242431 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 9 242432 -NCIT:C7219 Grade 2 Cutaneous Follicular Lymphoma 9 242433 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 9 242434 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 9 242435 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 10 242436 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 10 242437 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 9 242438 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 9 242439 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 9 242440 -NCIT:C179717 Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 7 242441 -NCIT:C156699 Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 8 242442 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 9 242443 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 9 242444 -NCIT:C157625 Transformed Small Lymphocytic Lymphoma to Diffuse Large B-Cell Lymphoma 8 242445 -NCIT:C185134 Transformed Lymphoplasmacytic Lymphoma to Diffuse Large B-Cell Lymphoma 8 242446 -NCIT:C185135 Transformed Waldenstrom Macroglobulinemia to Diffuse Large B-Cell Lymphoma 9 242447 -NCIT:C186483 Recurrent Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 8 242448 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 9 242449 -NCIT:C186484 Refractory Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 8 242450 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 9 242451 -NCIT:C2912 Burkitt Lymphoma 7 242452 -NCIT:C141253 Burkitt Lymphoma by Ann Arbor Stage 8 242453 -NCIT:C5084 Ann Arbor Stage IV Burkitt Lymphoma 9 242454 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 10 242455 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 10 242456 -NCIT:C8848 Ann Arbor Stage I Burkitt Lymphoma 9 242457 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 10 242458 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 10 242459 -NCIT:C8849 Ann Arbor Stage II Burkitt Lymphoma 9 242460 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 10 242461 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 11 242462 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 11 242463 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 10 242464 -NCIT:C8850 Ann Arbor Stage III Burkitt Lymphoma 9 242465 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 10 242466 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 10 242467 -NCIT:C168651 Cutaneous Burkitt Lymphoma 8 242468 -NCIT:C188075 Kidney Burkitt Lymphoma 8 242469 -NCIT:C27409 Small Intestinal Burkitt Lymphoma 8 242470 -NCIT:C27410 Small Intestinal Atypical Burkitt/Burkitt-Like Lymphoma 9 242471 -NCIT:C27694 EBV-Related Burkitt Lymphoma 8 242472 -NCIT:C27122 Endemic Burkitt Lymphoma 9 242473 -NCIT:C27914 Sporadic Burkitt Lymphoma 8 242474 -NCIT:C27915 Immunodeficiency-Related Burkitt Lymphoma 8 242475 -NCIT:C7244 Burkitt Lymphoma Post-Transplant Lymphoproliferative Disorder 9 242476 -NCIT:C7245 Burkitt-Like Lymphoma Post-Transplant Lymphoproliferative Disorder 10 242477 -NCIT:C7255 Methotrexate-Related Burkitt Lymphoma 9 242478 -NCIT:C8286 AIDS-Related Burkitt Lymphoma 9 242479 -NCIT:C27857 AIDS-Related Burkitt Lymphoma with Plasmacytoid Differentiation 10 242480 -NCIT:C40376 Breast Burkitt Lymphoma 8 242481 -NCIT:C5008 Recurrent Burkitt Lymphoma 8 242482 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 9 242483 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 9 242484 -NCIT:C5251 Gastric Burkitt Lymphoma 8 242485 -NCIT:C6917 Atypical Burkitt/Burkitt-Like Lymphoma 8 242486 -NCIT:C27410 Small Intestinal Atypical Burkitt/Burkitt-Like Lymphoma 9 242487 -NCIT:C7245 Burkitt-Like Lymphoma Post-Transplant Lymphoproliferative Disorder 9 242488 -NCIT:C7188 Classical Burkitt Lymphoma 8 242489 -NCIT:C7189 Burkitt Lymphoma with Plasmacytoid Differentiation 8 242490 -NCIT:C27857 AIDS-Related Burkitt Lymphoma with Plasmacytoid Differentiation 9 242491 -NCIT:C7309 Splenic Burkitt Lymphoma 8 242492 -NCIT:C8847 Refractory Burkitt Lymphoma 8 242493 -NCIT:C9062 Adult Burkitt Lymphoma 8 242494 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 9 242495 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 9 242496 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 10 242497 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 10 242498 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 9 242499 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 9 242500 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 9 242501 -NCIT:C9095 Childhood Burkitt Lymphoma 8 242502 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 9 242503 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 9 242504 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 9 242505 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 9 242506 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 9 242507 -NCIT:C96502 Colorectal Burkitt Lymphoma 8 242508 -NCIT:C27465 Colon Burkitt Lymphoma 9 242509 -NCIT:C3082 Heavy Chain Disease 7 242510 -NCIT:C3083 Gamma Heavy Chain Disease 8 242511 -NCIT:C3132 Alpha Heavy Chain Disease 8 242512 -NCIT:C3892 Mu Heavy Chain Disease 8 242513 -NCIT:C3209 Follicular Lymphoma 7 242514 -NCIT:C138185 Duodenal-Type Follicular Lymphoma 8 242515 -NCIT:C138186 Predominantly Diffuse Follicular Lymphoma with 1p36 Deletion 8 242516 -NCIT:C141255 Follicular Lymphoma by Ann Arbor Stage 8 242517 -NCIT:C5006 Ann Arbor Stage IV Follicular Lymphoma 9 242518 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 10 242519 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 10 242520 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 10 242521 -NCIT:C8859 Ann Arbor Stage I Follicular Lymphoma 9 242522 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 10 242523 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 10 242524 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 10 242525 -NCIT:C8860 Ann Arbor Stage II Follicular Lymphoma 9 242526 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 10 242527 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 11 242528 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 11 242529 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 10 242530 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 11 242531 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 11 242532 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 10 242533 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 11 242534 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 11 242535 -NCIT:C8861 Ann Arbor Stage III Follicular Lymphoma 9 242536 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 10 242537 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 10 242538 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 10 242539 -NCIT:C150589 Testicular Follicular Lymphoma 8 242540 -NCIT:C156410 Thyroid Gland Follicular Lymphoma 8 242541 -NCIT:C161603 Prostate Follicular Lymphoma 8 242542 -NCIT:C172359 Advanced Follicular Lymphoma 8 242543 -NCIT:C173715 Salivary Gland Follicular Lymphoma 8 242544 -NCIT:C173716 Parotid Gland Follicular Lymphoma 9 242545 -NCIT:C175430 Conjunctival Follicular Lymphoma 8 242546 -NCIT:C175488 Lacrimal Gland Follicular Lymphoma 8 242547 -NCIT:C181211 Lung Follicular Lymphoma 8 242548 -NCIT:C3460 Grade 3 Follicular Lymphoma 8 242549 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 9 242550 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 10 242551 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 10 242552 -NCIT:C6859 Grade 3 Cutaneous Follicular Lymphoma 9 242553 -NCIT:C7191 Grade 3a Follicular Lymphoma 9 242554 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 10 242555 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 10 242556 -NCIT:C7192 Grade 3b Follicular Lymphoma 9 242557 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 10 242558 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 10 242559 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 9 242560 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 9 242561 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 10 242562 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 10 242563 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 9 242564 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 9 242565 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 9 242566 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 10 242567 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 10 242568 -NCIT:C3465 Grade 1 Follicular Lymphoma 8 242569 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 9 242570 -NCIT:C7220 Grade 1 Cutaneous Follicular Lymphoma 9 242571 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 9 242572 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 9 242573 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 10 242574 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 10 242575 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 9 242576 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 9 242577 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 9 242578 -NCIT:C37209 Diffuse Blastoid B-Cell Lymphoma 8 242579 -NCIT:C40377 Breast Follicular Lymphoma 8 242580 -NCIT:C5007 Recurrent Follicular Lymphoma 8 242581 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 9 242582 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 9 242583 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 9 242584 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 10 242585 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 10 242586 -NCIT:C7218 Cutaneous Follicular Lymphoma 8 242587 -NCIT:C6859 Grade 3 Cutaneous Follicular Lymphoma 9 242588 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 9 242589 -NCIT:C7219 Grade 2 Cutaneous Follicular Lymphoma 9 242590 -NCIT:C7220 Grade 1 Cutaneous Follicular Lymphoma 9 242591 -NCIT:C7254 Methotrexate-Associated Follicular Lymphoma 8 242592 -NCIT:C7264 Diffuse Follicular Lymphoma 8 242593 -NCIT:C7194 Grade 2 Diffuse Follicular Lymphoma 9 242594 -NCIT:C9464 Grade 1 Diffuse Follicular Lymphoma 9 242595 -NCIT:C7307 Splenic Follicular Lymphoma 8 242596 -NCIT:C80297 Pediatric-Type Follicular Lymphoma 8 242597 -NCIT:C80298 Intestinal Follicular Lymphoma 8 242598 -NCIT:C96056 Small Intestinal Follicular Lymphoma 9 242599 -NCIT:C8858 Refractory Follicular Lymphoma 8 242600 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 9 242601 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 9 242602 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 9 242603 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 10 242604 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 10 242605 -NCIT:C8968 Grade 2 Follicular Lymphoma 8 242606 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 9 242607 -NCIT:C7219 Grade 2 Cutaneous Follicular Lymphoma 9 242608 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 9 242609 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 9 242610 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 10 242611 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 10 242612 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 9 242613 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 9 242614 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 9 242615 -NCIT:C4337 Mantle Cell Lymphoma 7 242616 -NCIT:C141257 Mantle Cell Lymphoma by Ann Arbor Stage 8 242617 -NCIT:C8465 Ann Arbor Stage I Mantle Cell Lymphoma 9 242618 -NCIT:C8483 Ann Arbor Stage III Mantle Cell Lymphoma 9 242619 -NCIT:C8486 Ann Arbor Stage IV Mantle Cell Lymphoma 9 242620 -NCIT:C9202 Ann Arbor Stage II Mantle Cell Lymphoma 9 242621 -NCIT:C8473 Ann Arbor Stage II Contiguous Mantle Cell Lymphoma 10 242622 -NCIT:C9198 Ann Arbor Stage II Non-Contiguous Mantle Cell Lymphoma 10 242623 -NCIT:C161604 Prostate Mantle Cell Lymphoma 8 242624 -NCIT:C181210 Parotid Gland Mantle Cell Lymphoma 8 242625 -NCIT:C188080 Tonsillar Mantle Cell Lymphoma 8 242626 -NCIT:C27440 Gastric Mantle Cell Lymphoma 8 242627 -NCIT:C27441 Small Intestinal Mantle Cell Lymphoma 8 242628 -NCIT:C39747 Pleomorphic Variant Mantle Cell Lymphoma 8 242629 -NCIT:C45266 Cutaneous Mantle Cell Lymphoma 8 242630 -NCIT:C7229 Blastoid Variant Mantle Cell Lymphoma 8 242631 -NCIT:C7306 Splenic Mantle Cell Lymphoma 8 242632 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 8 242633 -NCIT:C8862 Refractory Mantle Cell Lymphoma 8 242634 -NCIT:C96505 Colorectal Mantle Cell Lymphoma 8 242635 -NCIT:C27411 Colon Mantle Cell Lymphoma 9 242636 -NCIT:C6858 Primary Cutaneous B-Cell Non-Hodgkin Lymphoma 7 242637 -NCIT:C45193 Primary Cutaneous Diffuse Large B-Cell Lymphoma 8 242638 -NCIT:C45194 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 242639 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 242640 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 242641 -NCIT:C45213 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Other 9 242642 -NCIT:C45214 Primary Cutaneous Intravascular Large B-Cell Lymphoma 10 242643 -NCIT:C45215 Primary Cutaneous T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 10 242644 -NCIT:C45216 Primary Cutaneous Plasmablastic Lymphoma 10 242645 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 8 242646 -NCIT:C7230 Primary Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 242647 -NCIT:C45163 Borrelia Burgdoferi-Associated Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 242648 -NCIT:C7228 Refractory Mature B-Cell Non-Hodgkin Lymphoma 7 242649 -NCIT:C143085 Refractory Marginal Zone Lymphoma 8 242650 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 9 242651 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 242652 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 9 242653 -NCIT:C158150 Refractory Transformed B-Cell Non-Hodgkin Lymphoma 8 242654 -NCIT:C160240 Refractory Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 9 242655 -NCIT:C186484 Refractory Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 9 242656 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 10 242657 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 8 242658 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 9 242659 -NCIT:C8846 Refractory Small Lymphocytic Lymphoma 8 242660 -NCIT:C8847 Refractory Burkitt Lymphoma 8 242661 -NCIT:C8853 Refractory Diffuse Large B-Cell Lymphoma 8 242662 -NCIT:C138018 Refractory Extranodal Diffuse Large B-cell Lymphoma 9 242663 -NCIT:C138026 Refractory Intravascular Large B-Cell Lymphoma 9 242664 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 242665 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 242666 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 242667 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 242668 -NCIT:C157678 Refractory T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 9 242669 -NCIT:C157680 Refractory Primary Effusion Lymphoma 9 242670 -NCIT:C157684 Refractory Plasmablastic Lymphoma 9 242671 -NCIT:C160233 Refractory High Grade B-Cell Lymphoma 9 242672 -NCIT:C151979 Refractory High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 10 242673 -NCIT:C162453 Refractory High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 10 242674 -NCIT:C188789 Refractory High Grade B-Cell Lymphoma, Not Otherwise Specified 10 242675 -NCIT:C165241 Refractory Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 242676 -NCIT:C160238 Refractory Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 10 242677 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 242678 -NCIT:C182034 Refractory Immunoblastic Lymphoma 10 242679 -NCIT:C8927 Refractory Centroblastic Lymphoma 10 242680 -NCIT:C183142 Refractory Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 9 242681 -NCIT:C188791 Refractory ALK-Positive Large B-Cell Lymphoma 9 242682 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 242683 -NCIT:C8858 Refractory Follicular Lymphoma 8 242684 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 9 242685 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 9 242686 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 9 242687 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 10 242688 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 10 242689 -NCIT:C8862 Refractory Mantle Cell Lymphoma 8 242690 -NCIT:C7540 Small Lymphocytic Lymphoma 7 242691 -NCIT:C141259 Small Lymphocytic Lymphoma by Ann Arbor Stage 8 242692 -NCIT:C8070 Ann Arbor Stage I Small Lymphocytic Lymphoma 9 242693 -NCIT:C8115 Ann Arbor Stage II Small Lymphocytic Lymphoma 9 242694 -NCIT:C8128 Ann Arbor Stage III Small Lymphocytic Lymphoma 9 242695 -NCIT:C8141 Ann Arbor Stage IV Small Lymphocytic Lymphoma 9 242696 -NCIT:C161605 Prostate Small Lymphocytic Lymphoma 8 242697 -NCIT:C36273 Small Lymphocytic Lymphoma with Plasmacytoid Differentiation 8 242698 -NCIT:C37203 Small Lymphocytic Lymphoma with Immunoglobulin Heavy Chain Variable-Region Gene Somatic Hypermutation 8 242699 -NCIT:C37206 Small Lymphocytic Lymphoma with Unmutated Immunoglobulin Heavy Chain Variable-Region Gene 8 242700 -NCIT:C7304 Splenic Small Lymphocytic Lymphoma 8 242701 -NCIT:C8154 Recurrent Small Lymphocytic Lymphoma 8 242702 -NCIT:C8846 Refractory Small Lymphocytic Lymphoma 8 242703 -NCIT:C80309 Splenic Diffuse Red Pulp Small B-Cell Lymphoma 7 242704 -NCIT:C8851 Diffuse Large B-Cell Lymphoma 7 242705 -NCIT:C138211 High Grade B-Cell Lymphoma 8 242706 -NCIT:C138195 High Grade B-Cell Lymphoma with MYC and BCL2 and/or BCL6 Rearrangements 9 242707 -NCIT:C125904 High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 10 242708 -NCIT:C151979 Refractory High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 11 242709 -NCIT:C151980 Recurrent High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 11 242710 -NCIT:C131913 High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 10 242711 -NCIT:C162451 Recurrent High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 11 242712 -NCIT:C162453 Refractory High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 11 242713 -NCIT:C160229 Recurrent High Grade B-Cell Lymphoma 9 242714 -NCIT:C151980 Recurrent High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 10 242715 -NCIT:C162451 Recurrent High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 10 242716 -NCIT:C188788 Recurrent High Grade B-Cell Lymphoma, Not Otherwise Specified 10 242717 -NCIT:C160233 Refractory High Grade B-Cell Lymphoma 9 242718 -NCIT:C151979 Refractory High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 10 242719 -NCIT:C162453 Refractory High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 10 242720 -NCIT:C188789 Refractory High Grade B-Cell Lymphoma, Not Otherwise Specified 10 242721 -NCIT:C80291 High Grade B-Cell Lymphoma, Not Otherwise Specified 9 242722 -NCIT:C188788 Recurrent High Grade B-Cell Lymphoma, Not Otherwise Specified 10 242723 -NCIT:C188789 Refractory High Grade B-Cell Lymphoma, Not Otherwise Specified 10 242724 -NCIT:C96057 Small Intestinal High Grade B-Cell Lymphoma, Not Otherwise Specified 10 242725 -NCIT:C96501 Colorectal High Grade B-Cell Lymphoma, Not Otherwise Specified 10 242726 -NCIT:C138320 HHV8-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 242727 -NCIT:C138899 Double-Expressor Lymphoma 8 242728 -NCIT:C141254 Diffuse Large B-Cell Lymphoma by Ann Arbor Stage 8 242729 -NCIT:C141262 Primary Mediastinal (Thymic) Large B-Cell Lymphoma by Ann Arbor Stage 9 242730 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 242731 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 242732 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 242733 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 242734 -NCIT:C141263 Centroblastic Lymphoma by Ann Arbor Stage 9 242735 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 10 242736 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 10 242737 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 10 242738 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 10 242739 -NCIT:C8854 Ann Arbor Stage I Diffuse Large B-Cell Lymphoma 9 242740 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 10 242741 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 242742 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 10 242743 -NCIT:C8855 Ann Arbor Stage II Diffuse Large B-Cell Lymphoma 9 242744 -NCIT:C171158 Ann Arbor Stage IIX (Bulky) Diffuse Large B-Cell Lymphoma 10 242745 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 10 242746 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 11 242747 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 11 242748 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 242749 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 10 242750 -NCIT:C8856 Ann Arbor Stage III Diffuse Large B-Cell Lymphoma 9 242751 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 10 242752 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 242753 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 10 242754 -NCIT:C8857 Ann Arbor Stage IV Diffuse Large B-Cell Lymphoma 9 242755 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 10 242756 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 242757 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 10 242758 -NCIT:C150396 Fibrin-Associated Diffuse Large B-Cell Lymphoma 8 242759 -NCIT:C183141 Cardiac Fibrin-Associated Diffuse Large B-Cell Lymphoma 9 242760 -NCIT:C161602 Prostate Diffuse Large B-Cell Lymphoma 8 242761 -NCIT:C162467 Testicular Diffuse Large B-Cell Lymphoma 8 242762 -NCIT:C171264 Advanced Diffuse Large B-Cell Lymphoma 8 242763 -NCIT:C172850 Digestive System Diffuse Large B-Cell Lymphoma 8 242764 -NCIT:C5253 Gastric Diffuse Large B-Cell Lymphoma 9 242765 -NCIT:C95625 Esophageal Diffuse Large B-Cell Lymphoma 9 242766 -NCIT:C96055 Small Intestinal Diffuse Large B-Cell Lymphoma 9 242767 -NCIT:C96057 Small Intestinal High Grade B-Cell Lymphoma, Not Otherwise Specified 10 242768 -NCIT:C96503 Colorectal Diffuse Large B-Cell Lymphoma 9 242769 -NCIT:C96501 Colorectal High Grade B-Cell Lymphoma, Not Otherwise Specified 10 242770 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 10 242771 -NCIT:C96843 Liver Diffuse Large B-Cell Lymphoma 9 242772 -NCIT:C173717 Salivary Gland Diffuse Large B-Cell Lymphoma 8 242773 -NCIT:C173719 Parotid Gland Diffuse Large B-Cell Lymphoma 9 242774 -NCIT:C173811 Primary Bone Diffuse Large B-Cell Lymphoma 8 242775 -NCIT:C175433 Conjunctival Diffuse Large B-Cell Lymphoma 8 242776 -NCIT:C175485 Lacrimal System Diffuse Large B-Cell Lymphoma 8 242777 -NCIT:C175486 Lacrimal Gland Diffuse Large B-Cell Lymphoma 9 242778 -NCIT:C175487 Lacrimal Drainage System Diffuse Large B-Cell Lymphoma 9 242779 -NCIT:C183146 Cardiac Diffuse Large B-Cell Lymphoma 8 242780 -NCIT:C183141 Cardiac Fibrin-Associated Diffuse Large B-Cell Lymphoma 9 242781 -NCIT:C188072 Tonsillar Diffuse Large B-Cell Lymphoma 8 242782 -NCIT:C188081 Nasal Cavity Diffuse Large B-Cell Lymphoma 8 242783 -NCIT:C27856 Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 8 242784 -NCIT:C27858 AIDS-Related Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 9 242785 -NCIT:C40375 Breast Diffuse Large B-Cell Lymphoma 8 242786 -NCIT:C4342 Intravascular Large B-Cell Lymphoma 8 242787 -NCIT:C129602 Central Nervous System Intravascular Large B-Cell Lymphoma 9 242788 -NCIT:C138025 Recurrent Intravascular Large B-Cell Lymphoma 9 242789 -NCIT:C138026 Refractory Intravascular Large B-Cell Lymphoma 9 242790 -NCIT:C183121 Lung Intravascular Large B-Cell Lymphoma 9 242791 -NCIT:C45214 Primary Cutaneous Intravascular Large B-Cell Lymphoma 9 242792 -NCIT:C45193 Primary Cutaneous Diffuse Large B-Cell Lymphoma 8 242793 -NCIT:C45194 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 242794 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 242795 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 242796 -NCIT:C45213 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Other 9 242797 -NCIT:C45214 Primary Cutaneous Intravascular Large B-Cell Lymphoma 10 242798 -NCIT:C45215 Primary Cutaneous T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 10 242799 -NCIT:C45216 Primary Cutaneous Plasmablastic Lymphoma 10 242800 -NCIT:C45605 Lung Diffuse Large B-Cell Lymphoma 8 242801 -NCIT:C183121 Lung Intravascular Large B-Cell Lymphoma 9 242802 -NCIT:C6046 Thyroid Gland Diffuse Large B-Cell Lymphoma 8 242803 -NCIT:C7263 Thyroid Gland Immunoblastic Lymphoma 9 242804 -NCIT:C6073 Paranasal Sinus Diffuse Large B-Cell Lymphoma 8 242805 -NCIT:C63533 Kidney Diffuse Large B-Cell Lymphoma 8 242806 -NCIT:C6915 Primary Effusion Lymphoma 8 242807 -NCIT:C150406 Extracavitary Primary Effusion Lymphoma 9 242808 -NCIT:C150407 Body Cavity Primary Effusion Lymphoma 9 242809 -NCIT:C183135 Pleural Primary Effusion Lymphoma 10 242810 -NCIT:C183136 Pericardial Primary Effusion Lymphoma 10 242811 -NCIT:C183137 Peritoneal Primary Effusion Lymphoma 10 242812 -NCIT:C157679 Recurrent Primary Effusion Lymphoma 9 242813 -NCIT:C157680 Refractory Primary Effusion Lymphoma 9 242814 -NCIT:C9017 AIDS-Related Primary Effusion Lymphoma 9 242815 -NCIT:C71720 Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 242816 -NCIT:C129602 Central Nervous System Intravascular Large B-Cell Lymphoma 9 242817 -NCIT:C155797 Pituitary Gland Diffuse Large B-Cell Lymphoma 9 242818 -NCIT:C157067 Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 242819 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 242820 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 242821 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 242822 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 242823 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 242824 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 242825 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 242826 -NCIT:C7212 AIDS-Related Diffuse Large B-cell Lymphoma 8 242827 -NCIT:C27858 AIDS-Related Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 9 242828 -NCIT:C27859 AIDS-Related Plasmablastic Lymphoma 9 242829 -NCIT:C38160 AIDS-Related Plasmablastic Lymphoma of Mucosa Site 10 242830 -NCIT:C9016 AIDS-Related Plasmablastic Lymphoma of the Oral Mucosa 11 242831 -NCIT:C8285 AIDS-Related Immunoblastic Lymphoma 9 242832 -NCIT:C9017 AIDS-Related Primary Effusion Lymphoma 9 242833 -NCIT:C7224 Plasmablastic Lymphoma 8 242834 -NCIT:C157683 Recurrent Plasmablastic Lymphoma 9 242835 -NCIT:C157684 Refractory Plasmablastic Lymphoma 9 242836 -NCIT:C27859 AIDS-Related Plasmablastic Lymphoma 9 242837 -NCIT:C38160 AIDS-Related Plasmablastic Lymphoma of Mucosa Site 10 242838 -NCIT:C9016 AIDS-Related Plasmablastic Lymphoma of the Oral Mucosa 11 242839 -NCIT:C38159 Plasmablastic Lymphoma of Mucosa Site 9 242840 -NCIT:C38160 AIDS-Related Plasmablastic Lymphoma of Mucosa Site 10 242841 -NCIT:C9016 AIDS-Related Plasmablastic Lymphoma of the Oral Mucosa 11 242842 -NCIT:C80290 Plasmablastic Lymphoma of the Oral Mucosa 10 242843 -NCIT:C9016 AIDS-Related Plasmablastic Lymphoma of the Oral Mucosa 11 242844 -NCIT:C45216 Primary Cutaneous Plasmablastic Lymphoma 9 242845 -NCIT:C7225 ALK-Positive Large B-Cell Lymphoma 8 242846 -NCIT:C188790 Recurrent ALK-Positive Large B-Cell Lymphoma 9 242847 -NCIT:C188791 Refractory ALK-Positive Large B-Cell Lymphoma 9 242848 -NCIT:C7246 Diffuse Large B-Cell Lymphoma Post-Transplant Lymphoproliferative Disorder 8 242849 -NCIT:C7247 Anaplastic Lymphoma Post-Transplant Lymphoproliferative Disorder 9 242850 -NCIT:C7248 Centroblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 9 242851 -NCIT:C7249 Immunoblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 9 242852 -NCIT:C7253 Methotrexate-Associated Diffuse Large B-Cell Lymphoma 8 242853 -NCIT:C7308 Splenic Diffuse Large B-Cell Lymphoma 8 242854 -NCIT:C7615 Adult Diffuse Large B-Cell Lymphoma 8 242855 -NCIT:C115150 Adult Grade III Lymphomatoid Granulomatosis 9 242856 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 242857 -NCIT:C188457 Adult EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 242858 -NCIT:C7873 Adult Immunoblastic Lymphoma 9 242859 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 10 242860 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 10 242861 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 11 242862 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 11 242863 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 10 242864 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 10 242865 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 10 242866 -NCIT:C7616 Childhood Diffuse Large B-Cell Lymphoma 8 242867 -NCIT:C115204 Childhood Grade III Lymphomatoid Granulomatosis 9 242868 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 10 242869 -NCIT:C188455 Childhood Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 242870 -NCIT:C188456 Childhood EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 242871 -NCIT:C9079 Childhood Immunoblastic Lymphoma 9 242872 -NCIT:C7933 Grade III Lymphomatoid Granulomatosis 8 242873 -NCIT:C115150 Adult Grade III Lymphomatoid Granulomatosis 9 242874 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 242875 -NCIT:C115204 Childhood Grade III Lymphomatoid Granulomatosis 9 242876 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 10 242877 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 9 242878 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 242879 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 10 242880 -NCIT:C80280 Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 242881 -NCIT:C148392 Diffuse Large B-Cell Lymphoma, Not Otherwise Specified Molecular Subtypes 9 242882 -NCIT:C148394 MCD Diffuse Large B-Cell Lymphoma 10 242883 -NCIT:C148395 BN2 Diffuse Large B-Cell Lymphoma 10 242884 -NCIT:C148396 N1 Diffuse Large B-Cell Lymphoma 10 242885 -NCIT:C148398 EZB Diffuse Large B-Cell Lymphoma 10 242886 -NCIT:C187445 ST2 Diffuse Large B-Cell Lymphoma 10 242887 -NCIT:C187447 A53 Diffuse Large B-Cell Lymphoma 10 242888 -NCIT:C165240 Recurrent Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 242889 -NCIT:C160230 Recurrent Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 10 242890 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 242891 -NCIT:C182035 Recurrent Immunoblastic Lymphoma 10 242892 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 11 242893 -NCIT:C8926 Recurrent Centroblastic Lymphoma 10 242894 -NCIT:C165241 Refractory Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 242895 -NCIT:C160238 Refractory Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 10 242896 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 242897 -NCIT:C182034 Refractory Immunoblastic Lymphoma 10 242898 -NCIT:C8927 Refractory Centroblastic Lymphoma 10 242899 -NCIT:C3461 Immunoblastic Lymphoma 9 242900 -NCIT:C182034 Refractory Immunoblastic Lymphoma 10 242901 -NCIT:C182035 Recurrent Immunoblastic Lymphoma 10 242902 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 11 242903 -NCIT:C7249 Immunoblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 10 242904 -NCIT:C7263 Thyroid Gland Immunoblastic Lymphoma 10 242905 -NCIT:C7873 Adult Immunoblastic Lymphoma 10 242906 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 11 242907 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 11 242908 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 12 242909 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 12 242910 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 11 242911 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 11 242912 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 11 242913 -NCIT:C8285 AIDS-Related Immunoblastic Lymphoma 10 242914 -NCIT:C9079 Childhood Immunoblastic Lymphoma 10 242915 -NCIT:C4074 Centroblastic Lymphoma 9 242916 -NCIT:C141263 Centroblastic Lymphoma by Ann Arbor Stage 10 242917 -NCIT:C8928 Ann Arbor Stage I Centroblastic Lymphoma 11 242918 -NCIT:C8929 Ann Arbor Stage II Centroblastic Lymphoma 11 242919 -NCIT:C8930 Ann Arbor Stage III Centroblastic Lymphoma 11 242920 -NCIT:C8931 Ann Arbor Stage IV Centroblastic Lymphoma 11 242921 -NCIT:C7248 Centroblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 10 242922 -NCIT:C8926 Recurrent Centroblastic Lymphoma 10 242923 -NCIT:C8927 Refractory Centroblastic Lymphoma 10 242924 -NCIT:C45219 Diffuse Large B-Cell Lymphoma, Not Otherwise Specified by Gene Expression Profile 9 242925 -NCIT:C36080 Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 10 242926 -NCIT:C160230 Recurrent Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 11 242927 -NCIT:C160238 Refractory Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 11 242928 -NCIT:C36081 Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 242929 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 11 242930 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 11 242931 -NCIT:C45231 Diffuse Large B-Cell Lymphoma Unclassifiable 10 242932 -NCIT:C6916 Anaplastic Lymphoma 9 242933 -NCIT:C7247 Anaplastic Lymphoma Post-Transplant Lymphoproliferative Disorder 10 242934 -NCIT:C80281 EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 242935 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 242936 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 242937 -NCIT:C188456 Childhood EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 242938 -NCIT:C188457 Adult EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 242939 -NCIT:C80289 Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 8 242940 -NCIT:C183140 Recurrent Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 9 242941 -NCIT:C183142 Refractory Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 9 242942 -NCIT:C45691 Pyothorax-Associated Lymphoma 9 242943 -NCIT:C8852 Recurrent Diffuse Large B-Cell Lymphoma 8 242944 -NCIT:C138015 Recurrent Extranodal Diffuse Large B-cell Lymphoma 9 242945 -NCIT:C138025 Recurrent Intravascular Large B-Cell Lymphoma 9 242946 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 242947 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 242948 -NCIT:C156696 Recurrent T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 9 242949 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 242950 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 242951 -NCIT:C157679 Recurrent Primary Effusion Lymphoma 9 242952 -NCIT:C157683 Recurrent Plasmablastic Lymphoma 9 242953 -NCIT:C160229 Recurrent High Grade B-Cell Lymphoma 9 242954 -NCIT:C151980 Recurrent High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 10 242955 -NCIT:C162451 Recurrent High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 10 242956 -NCIT:C188788 Recurrent High Grade B-Cell Lymphoma, Not Otherwise Specified 10 242957 -NCIT:C165240 Recurrent Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 242958 -NCIT:C160230 Recurrent Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 10 242959 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 242960 -NCIT:C182035 Recurrent Immunoblastic Lymphoma 10 242961 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 11 242962 -NCIT:C8926 Recurrent Centroblastic Lymphoma 10 242963 -NCIT:C183140 Recurrent Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 9 242964 -NCIT:C188790 Recurrent ALK-Positive Large B-Cell Lymphoma 9 242965 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 9 242966 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 242967 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 10 242968 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 242969 -NCIT:C8853 Refractory Diffuse Large B-Cell Lymphoma 8 242970 -NCIT:C138018 Refractory Extranodal Diffuse Large B-cell Lymphoma 9 242971 -NCIT:C138026 Refractory Intravascular Large B-Cell Lymphoma 9 242972 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 242973 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 242974 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 242975 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 242976 -NCIT:C157678 Refractory T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 9 242977 -NCIT:C157680 Refractory Primary Effusion Lymphoma 9 242978 -NCIT:C157684 Refractory Plasmablastic Lymphoma 9 242979 -NCIT:C160233 Refractory High Grade B-Cell Lymphoma 9 242980 -NCIT:C151979 Refractory High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 10 242981 -NCIT:C162453 Refractory High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 10 242982 -NCIT:C188789 Refractory High Grade B-Cell Lymphoma, Not Otherwise Specified 10 242983 -NCIT:C165241 Refractory Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 242984 -NCIT:C160238 Refractory Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 10 242985 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 242986 -NCIT:C182034 Refractory Immunoblastic Lymphoma 10 242987 -NCIT:C8927 Refractory Centroblastic Lymphoma 10 242988 -NCIT:C183142 Refractory Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 9 242989 -NCIT:C188791 Refractory ALK-Positive Large B-Cell Lymphoma 9 242990 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 242991 -NCIT:C9280 Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 242992 -NCIT:C141262 Primary Mediastinal (Thymic) Large B-Cell Lymphoma by Ann Arbor Stage 9 242993 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 242994 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 242995 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 242996 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 10 242997 -NCIT:C188455 Childhood Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 242998 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 242999 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 243000 -NCIT:C9496 T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 8 243001 -NCIT:C156696 Recurrent T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 9 243002 -NCIT:C157678 Refractory T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 9 243003 -NCIT:C45215 Primary Cutaneous T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 9 243004 -NCIT:C8841 Recurrent B-Cell Non-Hodgkin Lymphoma 6 243005 -NCIT:C165799 Recurrent Mature B-Cell Non-Hodgkin Lymphoma 7 243006 -NCIT:C158149 Recurrent Transformed B-Cell Non-Hodgkin Lymphoma 8 243007 -NCIT:C160232 Recurrent Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 9 243008 -NCIT:C186483 Recurrent Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 9 243009 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 10 243010 -NCIT:C5007 Recurrent Follicular Lymphoma 8 243011 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 9 243012 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 9 243013 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 9 243014 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 10 243015 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 10 243016 -NCIT:C5008 Recurrent Burkitt Lymphoma 8 243017 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 9 243018 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 9 243019 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 8 243020 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 9 243021 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 243022 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 9 243023 -NCIT:C8154 Recurrent Small Lymphocytic Lymphoma 8 243024 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 8 243025 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 8 243026 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 9 243027 -NCIT:C8852 Recurrent Diffuse Large B-Cell Lymphoma 8 243028 -NCIT:C138015 Recurrent Extranodal Diffuse Large B-cell Lymphoma 9 243029 -NCIT:C138025 Recurrent Intravascular Large B-Cell Lymphoma 9 243030 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 243031 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 243032 -NCIT:C156696 Recurrent T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 9 243033 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 243034 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 243035 -NCIT:C157679 Recurrent Primary Effusion Lymphoma 9 243036 -NCIT:C157683 Recurrent Plasmablastic Lymphoma 9 243037 -NCIT:C160229 Recurrent High Grade B-Cell Lymphoma 9 243038 -NCIT:C151980 Recurrent High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 10 243039 -NCIT:C162451 Recurrent High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 10 243040 -NCIT:C188788 Recurrent High Grade B-Cell Lymphoma, Not Otherwise Specified 10 243041 -NCIT:C165240 Recurrent Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 243042 -NCIT:C160230 Recurrent Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 10 243043 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 243044 -NCIT:C182035 Recurrent Immunoblastic Lymphoma 10 243045 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 11 243046 -NCIT:C8926 Recurrent Centroblastic Lymphoma 10 243047 -NCIT:C183140 Recurrent Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 9 243048 -NCIT:C188790 Recurrent ALK-Positive Large B-Cell Lymphoma 9 243049 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 9 243050 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 243051 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 10 243052 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 243053 -NCIT:C178553 Recurrent Aggressive B-Cell Non-Hodgkin Lymphoma 7 243054 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 8 243055 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 8 243056 -NCIT:C5008 Recurrent Burkitt Lymphoma 8 243057 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 9 243058 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 9 243059 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 8 243060 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 9 243061 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 9 243062 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 8 243063 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 9 243064 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 9 243065 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 8 243066 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 8 243067 -NCIT:C183512 Recurrent Indolent B-Cell Non-Hodgkin Lymphoma 7 243068 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 8 243069 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 9 243070 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 243071 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 9 243072 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 8 243073 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 8 243074 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 8 243075 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 9 243076 -NCIT:C8842 Refractory B-Cell Non-Hodgkin Lymphoma 6 243077 -NCIT:C178555 Refractory Aggressive B-Cell Non-Hodgkin Lymphoma 7 243078 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 8 243079 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 8 243080 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 8 243081 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 9 243082 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 9 243083 -NCIT:C8847 Refractory Burkitt Lymphoma 8 243084 -NCIT:C8862 Refractory Mantle Cell Lymphoma 8 243085 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 8 243086 -NCIT:C183514 Refractory Indolent B-Cell Non-Hodgkin Lymphoma 7 243087 -NCIT:C143085 Refractory Marginal Zone Lymphoma 8 243088 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 9 243089 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 243090 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 9 243091 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 8 243092 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 8 243093 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 8 243094 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 9 243095 -NCIT:C7228 Refractory Mature B-Cell Non-Hodgkin Lymphoma 7 243096 -NCIT:C143085 Refractory Marginal Zone Lymphoma 8 243097 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 9 243098 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 243099 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 9 243100 -NCIT:C158150 Refractory Transformed B-Cell Non-Hodgkin Lymphoma 8 243101 -NCIT:C160240 Refractory Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 9 243102 -NCIT:C186484 Refractory Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 9 243103 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 10 243104 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 8 243105 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 9 243106 -NCIT:C8846 Refractory Small Lymphocytic Lymphoma 8 243107 -NCIT:C8847 Refractory Burkitt Lymphoma 8 243108 -NCIT:C8853 Refractory Diffuse Large B-Cell Lymphoma 8 243109 -NCIT:C138018 Refractory Extranodal Diffuse Large B-cell Lymphoma 9 243110 -NCIT:C138026 Refractory Intravascular Large B-Cell Lymphoma 9 243111 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 243112 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 243113 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 243114 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 243115 -NCIT:C157678 Refractory T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 9 243116 -NCIT:C157680 Refractory Primary Effusion Lymphoma 9 243117 -NCIT:C157684 Refractory Plasmablastic Lymphoma 9 243118 -NCIT:C160233 Refractory High Grade B-Cell Lymphoma 9 243119 -NCIT:C151979 Refractory High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 10 243120 -NCIT:C162453 Refractory High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 10 243121 -NCIT:C188789 Refractory High Grade B-Cell Lymphoma, Not Otherwise Specified 10 243122 -NCIT:C165241 Refractory Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 243123 -NCIT:C160238 Refractory Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 10 243124 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 243125 -NCIT:C182034 Refractory Immunoblastic Lymphoma 10 243126 -NCIT:C8927 Refractory Centroblastic Lymphoma 10 243127 -NCIT:C183142 Refractory Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 9 243128 -NCIT:C188791 Refractory ALK-Positive Large B-Cell Lymphoma 9 243129 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 243130 -NCIT:C8858 Refractory Follicular Lymphoma 8 243131 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 9 243132 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 9 243133 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 9 243134 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 10 243135 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 10 243136 -NCIT:C8862 Refractory Mantle Cell Lymphoma 8 243137 -NCIT:C96053 Small Intestinal B-Cell Non-Hodgkin Lymphoma 6 243138 -NCIT:C27409 Small Intestinal Burkitt Lymphoma 7 243139 -NCIT:C27410 Small Intestinal Atypical Burkitt/Burkitt-Like Lymphoma 8 243140 -NCIT:C27441 Small Intestinal Mantle Cell Lymphoma 7 243141 -NCIT:C3132 Alpha Heavy Chain Disease 7 243142 -NCIT:C5635 Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 7 243143 -NCIT:C45166 Campylobacter Jejuni-Associated Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 8 243144 -NCIT:C96055 Small Intestinal Diffuse Large B-Cell Lymphoma 7 243145 -NCIT:C96057 Small Intestinal High Grade B-Cell Lymphoma, Not Otherwise Specified 8 243146 -NCIT:C96056 Small Intestinal Follicular Lymphoma 7 243147 -NCIT:C3466 T-Cell Non-Hodgkin Lymphoma 5 243148 -NCIT:C141247 T-Cell Non-Hodgkin Lymphoma by Ann Arbor Stage 6 243149 -NCIT:C141272 Mature T- and NK-Cell Lymphoma by Ann Arbor Stage 7 243150 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 8 243151 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 9 243152 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 9 243153 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 9 243154 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 9 243155 -NCIT:C141284 Noncutaneous Anaplastic Large Cell Lymphoma by Ann Arbor Stage 8 243156 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 9 243157 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 243158 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 243159 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 243160 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 243161 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 9 243162 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 243163 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 9 243164 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 243165 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 9 243166 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 243167 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 9 243168 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 243169 -NCIT:C141294 Angioimmunoblastic T-Cell Lymphoma by Ann Arbor Stage 8 243170 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 9 243171 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 9 243172 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 9 243173 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 9 243174 -NCIT:C141295 Enteropathy-Associated T-Cell Lymphoma by Ann Arbor Stage 8 243175 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 9 243176 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 9 243177 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 9 243178 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 9 243179 -NCIT:C141296 Nasal Type NK/T-Cell Lymphoma by Ann Arbor Stage 8 243180 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 9 243181 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 9 243182 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 9 243183 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 9 243184 -NCIT:C8690 Ann Arbor Stage I Mature T- and NK-Cell Lymphoma 8 243185 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 9 243186 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 9 243187 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 243188 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 9 243189 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 9 243190 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 9 243191 -NCIT:C8691 Ann Arbor Stage II Mature T- and NK-Cell Lymphoma 8 243192 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 9 243193 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 9 243194 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 243195 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 9 243196 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 9 243197 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 9 243198 -NCIT:C8692 Ann Arbor Stage III Mature T- and NK-Cell Lymphoma 8 243199 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 9 243200 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 9 243201 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 243202 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 9 243203 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 9 243204 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 9 243205 -NCIT:C8693 Ann Arbor Stage IV Mature T- and NK-Cell Lymphoma 8 243206 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 9 243207 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 9 243208 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 243209 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 9 243210 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 9 243211 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 9 243212 -NCIT:C8665 Ann Arbor Stage I T-Cell Non-Hodgkin Lymphoma 7 243213 -NCIT:C8690 Ann Arbor Stage I Mature T- and NK-Cell Lymphoma 8 243214 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 9 243215 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 9 243216 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 243217 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 9 243218 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 9 243219 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 9 243220 -NCIT:C8666 Ann Arbor Stage II T-Cell Non-Hodgkin Lymphoma 7 243221 -NCIT:C8691 Ann Arbor Stage II Mature T- and NK-Cell Lymphoma 8 243222 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 9 243223 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 9 243224 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 243225 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 9 243226 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 9 243227 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 9 243228 -NCIT:C8667 Ann Arbor Stage III T-Cell Non-Hodgkin Lymphoma 7 243229 -NCIT:C8692 Ann Arbor Stage III Mature T- and NK-Cell Lymphoma 8 243230 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 9 243231 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 9 243232 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 243233 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 9 243234 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 9 243235 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 9 243236 -NCIT:C8668 Ann Arbor Stage IV T-Cell Non-Hodgkin Lymphoma 7 243237 -NCIT:C8693 Ann Arbor Stage IV Mature T- and NK-Cell Lymphoma 8 243238 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 9 243239 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 9 243240 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 243241 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 9 243242 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 9 243243 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 9 243244 -NCIT:C178547 Aggressive T-Cell Non-Hodgkin Lymphoma 6 243245 -NCIT:C150495 Intestinal T-Cell Lymphoma 7 243246 -NCIT:C150505 Intestinal T-Cell Lymphoma, Not Otherwise Specified 8 243247 -NCIT:C4737 Enteropathy-Associated T-Cell Lymphoma 8 243248 -NCIT:C141295 Enteropathy-Associated T-Cell Lymphoma by Ann Arbor Stage 9 243249 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 10 243250 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 10 243251 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 10 243252 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 10 243253 -NCIT:C39610 Small Intestinal Enteropathy-Associated T-Cell Lymphoma 9 243254 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 9 243255 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 9 243256 -NCIT:C96058 Monomorphic Epitheliotropic Intestinal T-Cell Lymphoma 8 243257 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 243258 -NCIT:C150504 Small Intestinal Monomorphic Epitheliotropic T-Cell Lymphoma 9 243259 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 243260 -NCIT:C178554 Recurrent Aggressive T-Cell Non-Hodgkin Lymphoma 7 243261 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 8 243262 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 8 243263 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 243264 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 8 243265 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 8 243266 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 8 243267 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 8 243268 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 8 243269 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 8 243270 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 8 243271 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 8 243272 -NCIT:C178556 Refractory Aggressive T-Cell Non-Hodgkin Lymphoma 7 243273 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 8 243274 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 8 243275 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 8 243276 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 8 243277 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 8 243278 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 8 243279 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 8 243280 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 8 243281 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 8 243282 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 8 243283 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 243284 -NCIT:C3184 Adult T-Cell Leukemia/Lymphoma 7 243285 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 8 243286 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 9 243287 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 9 243288 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 9 243289 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 9 243290 -NCIT:C36265 Acute Adult T-Cell Leukemia/Lymphoma 8 243291 -NCIT:C36266 Lymphomatous Adult T-Cell Leukemia/Lymphoma 8 243292 -NCIT:C36268 Hodgkin-Like Adult T-Cell Leukemia/Lymphoma 8 243293 -NCIT:C45272 Cutaneous Adult T-Cell Leukemia/Lymphoma 8 243294 -NCIT:C7178 Smoldering Adult T-Cell Leukemia/Lymphoma 8 243295 -NCIT:C7179 Chronic Adult T-Cell Leukemia/Lymphoma 8 243296 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 8 243297 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 8 243298 -NCIT:C37194 Anaplastic Large Cell Lymphoma, ALK-Negative 7 243299 -NCIT:C129599 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Negative 8 243300 -NCIT:C139012 Breast Implant-Associated Anaplastic Large Cell Lymphoma 8 243301 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 243302 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 243303 -NCIT:C37196 Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Negative 8 243304 -NCIT:C4340 Peripheral T-Cell Lymphoma, Not Otherwise Specified 7 243305 -NCIT:C139288 Primary EBV-Positive Nodal T-Cell or NK-Cell Lymphoma 8 243306 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 243307 -NCIT:C188459 Childhood Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 243308 -NCIT:C7205 Lymphoepithelioid Variant Peripheral T-Cell Lymphoma 8 243309 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 243310 -NCIT:C45339 Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 7 243311 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 8 243312 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 8 243313 -NCIT:C45340 Primary Cutaneous Gamma-Delta T-Cell Lymphoma 7 243314 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 8 243315 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 8 243316 -NCIT:C4684 Nasal Type Extranodal NK/T-Cell Lymphoma 7 243317 -NCIT:C115154 Adult Nasal Type Extranodal NK/T-Cell Lymphoma 8 243318 -NCIT:C141296 Nasal Type NK/T-Cell Lymphoma by Ann Arbor Stage 8 243319 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 9 243320 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 9 243321 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 9 243322 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 9 243323 -NCIT:C162468 Testicular Nasal Type Extranodal NK/T-Cell Lymphoma 8 243324 -NCIT:C173172 Sinonasal Extranodal NK/T-Cell Lymphoma 8 243325 -NCIT:C173173 Nasal Cavity Extranodal NK/T-Cell Lymphoma 9 243326 -NCIT:C45268 Cutaneous Nasal Type Extranodal NK/T-Cell Lymphoma 8 243327 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 8 243328 -NCIT:C68692 Childhood Nasal Type Extranodal NK/T-Cell Lymphoma 8 243329 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 8 243330 -NCIT:C6919 T Lymphoblastic Lymphoma 7 243331 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 8 243332 -NCIT:C45740 Mediastinal T Lymphoblastic Lymphoma 8 243333 -NCIT:C7210 Childhood T Lymphoblastic Lymphoma 8 243334 -NCIT:C7226 Adult T Lymphoblastic Lymphoma 8 243335 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 8 243336 -NCIT:C7311 Splenic T Lymphoblastic Lymphoma 8 243337 -NCIT:C7528 Angioimmunoblastic T-Cell Lymphoma 7 243338 -NCIT:C141294 Angioimmunoblastic T-Cell Lymphoma by Ann Arbor Stage 8 243339 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 9 243340 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 9 243341 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 9 243342 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 9 243343 -NCIT:C45271 Cutaneous Angioimmunoblastic T-Cell Lymphoma 8 243344 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 8 243345 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 8 243346 -NCIT:C8459 Hepatosplenic T-Cell Lymphoma 7 243347 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 8 243348 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 8 243349 -NCIT:C3468 Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 6 243350 -NCIT:C128696 Peripheral T-Cell Lymphoma, Unclassifiable 7 243351 -NCIT:C128697 NK-Cell Lymphoma, Unclassifiable 7 243352 -NCIT:C157689 Recurrent NK-Cell Lymphoma, Unclassifiable 8 243353 -NCIT:C157690 Refractory NK-Cell Lymphoma, Unclassifiable 8 243354 -NCIT:C129600 Central Nervous System Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 7 243355 -NCIT:C5322 Central Nervous System Anaplastic Large Cell Lymphoma 8 243356 -NCIT:C129598 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Positive 9 243357 -NCIT:C129599 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Negative 9 243358 -NCIT:C139005 Nodal Peripheral T-Cell Lymphoma of T Follicular Helper Cell Origin 7 243359 -NCIT:C139011 Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 8 243360 -NCIT:C168778 Recurrent Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 9 243361 -NCIT:C168779 Refractory Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 9 243362 -NCIT:C7528 Angioimmunoblastic T-Cell Lymphoma 8 243363 -NCIT:C141294 Angioimmunoblastic T-Cell Lymphoma by Ann Arbor Stage 9 243364 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 10 243365 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 10 243366 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 10 243367 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 10 243368 -NCIT:C45271 Cutaneous Angioimmunoblastic T-Cell Lymphoma 9 243369 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 9 243370 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 9 243371 -NCIT:C80375 Follicular T-Cell Lymphoma 8 243372 -NCIT:C168780 Recurrent Follicular T-Cell Lymphoma 9 243373 -NCIT:C168781 Refractory Follicular T-Cell Lymphoma 9 243374 -NCIT:C141272 Mature T- and NK-Cell Lymphoma by Ann Arbor Stage 7 243375 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 8 243376 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 9 243377 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 9 243378 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 9 243379 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 9 243380 -NCIT:C141284 Noncutaneous Anaplastic Large Cell Lymphoma by Ann Arbor Stage 8 243381 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 9 243382 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 243383 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 243384 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 243385 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 243386 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 9 243387 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 243388 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 9 243389 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 243390 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 9 243391 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 243392 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 9 243393 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 243394 -NCIT:C141294 Angioimmunoblastic T-Cell Lymphoma by Ann Arbor Stage 8 243395 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 9 243396 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 9 243397 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 9 243398 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 9 243399 -NCIT:C141295 Enteropathy-Associated T-Cell Lymphoma by Ann Arbor Stage 8 243400 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 9 243401 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 9 243402 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 9 243403 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 9 243404 -NCIT:C141296 Nasal Type NK/T-Cell Lymphoma by Ann Arbor Stage 8 243405 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 9 243406 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 9 243407 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 9 243408 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 9 243409 -NCIT:C8690 Ann Arbor Stage I Mature T- and NK-Cell Lymphoma 8 243410 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 9 243411 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 9 243412 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 243413 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 9 243414 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 9 243415 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 9 243416 -NCIT:C8691 Ann Arbor Stage II Mature T- and NK-Cell Lymphoma 8 243417 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 9 243418 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 9 243419 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 243420 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 9 243421 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 9 243422 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 9 243423 -NCIT:C8692 Ann Arbor Stage III Mature T- and NK-Cell Lymphoma 8 243424 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 9 243425 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 9 243426 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 243427 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 9 243428 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 9 243429 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 9 243430 -NCIT:C8693 Ann Arbor Stage IV Mature T- and NK-Cell Lymphoma 8 243431 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 9 243432 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 9 243433 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 243434 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 9 243435 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 9 243436 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 9 243437 -NCIT:C150495 Intestinal T-Cell Lymphoma 7 243438 -NCIT:C150505 Intestinal T-Cell Lymphoma, Not Otherwise Specified 8 243439 -NCIT:C4737 Enteropathy-Associated T-Cell Lymphoma 8 243440 -NCIT:C141295 Enteropathy-Associated T-Cell Lymphoma by Ann Arbor Stage 9 243441 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 10 243442 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 10 243443 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 10 243444 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 10 243445 -NCIT:C39610 Small Intestinal Enteropathy-Associated T-Cell Lymphoma 9 243446 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 9 243447 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 9 243448 -NCIT:C96058 Monomorphic Epitheliotropic Intestinal T-Cell Lymphoma 8 243449 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 243450 -NCIT:C150504 Small Intestinal Monomorphic Epitheliotropic T-Cell Lymphoma 9 243451 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 243452 -NCIT:C171300 Indolent T-Cell Non-Hodgkin Lymphoma 7 243453 -NCIT:C3246 Mycosis Fungoides 8 243454 -NCIT:C141143 Mycosis Fungoides by AJCC v7 Stage 9 243455 -NCIT:C7796 Stage I Mycosis Fungoides AJCC v7 10 243456 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 11 243457 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 11 243458 -NCIT:C7798 Stage II Mycosis Fungoides AJCC v7 10 243459 -NCIT:C7800 Stage III Mycosis Fungoides AJCC v7 10 243460 -NCIT:C7802 Stage IV Mycosis Fungoides AJCC v7 10 243461 -NCIT:C165783 Transformed Mycosis Fungoides 9 243462 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 243463 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 243464 -NCIT:C8686 Recurrent Mycosis Fungoides 9 243465 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 243466 -NCIT:C8687 Refractory Mycosis Fungoides 9 243467 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 243468 -NCIT:C39644 Mycosis Fungoides Variant 8 243469 -NCIT:C35464 Granulomatous Slack Skin Disease 9 243470 -NCIT:C35685 Folliculotropic Mycosis Fungoides 9 243471 -NCIT:C35794 Pagetoid Reticulosis 9 243472 -NCIT:C6860 Primary Cutaneous Anaplastic Large Cell Lymphoma 8 243473 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 243474 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 243475 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 9 243476 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 9 243477 -NCIT:C6918 Subcutaneous Panniculitis-Like T-Cell Lymphoma 8 243478 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 243479 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 243480 -NCIT:C3184 Adult T-Cell Leukemia/Lymphoma 7 243481 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 8 243482 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 9 243483 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 9 243484 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 9 243485 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 9 243486 -NCIT:C36265 Acute Adult T-Cell Leukemia/Lymphoma 8 243487 -NCIT:C36266 Lymphomatous Adult T-Cell Leukemia/Lymphoma 8 243488 -NCIT:C36268 Hodgkin-Like Adult T-Cell Leukemia/Lymphoma 8 243489 -NCIT:C45272 Cutaneous Adult T-Cell Leukemia/Lymphoma 8 243490 -NCIT:C7178 Smoldering Adult T-Cell Leukemia/Lymphoma 8 243491 -NCIT:C7179 Chronic Adult T-Cell Leukemia/Lymphoma 8 243492 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 8 243493 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 8 243494 -NCIT:C3467 Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 7 243495 -NCIT:C172442 Advanced Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 243496 -NCIT:C180374 Early Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 243497 -NCIT:C3246 Mycosis Fungoides 8 243498 -NCIT:C141143 Mycosis Fungoides by AJCC v7 Stage 9 243499 -NCIT:C7796 Stage I Mycosis Fungoides AJCC v7 10 243500 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 11 243501 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 11 243502 -NCIT:C7798 Stage II Mycosis Fungoides AJCC v7 10 243503 -NCIT:C7800 Stage III Mycosis Fungoides AJCC v7 10 243504 -NCIT:C7802 Stage IV Mycosis Fungoides AJCC v7 10 243505 -NCIT:C165783 Transformed Mycosis Fungoides 9 243506 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 243507 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 243508 -NCIT:C8686 Recurrent Mycosis Fungoides 9 243509 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 243510 -NCIT:C8687 Refractory Mycosis Fungoides 9 243511 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 243512 -NCIT:C39644 Mycosis Fungoides Variant 8 243513 -NCIT:C35464 Granulomatous Slack Skin Disease 9 243514 -NCIT:C35685 Folliculotropic Mycosis Fungoides 9 243515 -NCIT:C35794 Pagetoid Reticulosis 9 243516 -NCIT:C45332 Primary Cutaneous Peripheral T-Cell Lymphoma, Rare Subtype 8 243517 -NCIT:C139023 Primary Cutaneous Acral CD8-Positive T-Cell Lymphoma 9 243518 -NCIT:C45339 Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 243519 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 243520 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 243521 -NCIT:C45340 Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 243522 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 243523 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 243524 -NCIT:C6860 Primary Cutaneous Anaplastic Large Cell Lymphoma 8 243525 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 243526 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 243527 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 9 243528 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 9 243529 -NCIT:C6918 Subcutaneous Panniculitis-Like T-Cell Lymphoma 8 243530 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 243531 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 243532 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 243533 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 243534 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 243535 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 243536 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 243537 -NCIT:C8686 Recurrent Mycosis Fungoides 9 243538 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 243539 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 243540 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 243541 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 243542 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 243543 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 243544 -NCIT:C8687 Refractory Mycosis Fungoides 9 243545 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 243546 -NCIT:C3720 Anaplastic Large Cell Lymphoma 7 243547 -NCIT:C141284 Noncutaneous Anaplastic Large Cell Lymphoma by Ann Arbor Stage 8 243548 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 9 243549 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 243550 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 243551 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 243552 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 243553 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 9 243554 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 243555 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 9 243556 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 243557 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 9 243558 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 243559 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 9 243560 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 243561 -NCIT:C166179 Localized Anaplastic Large Cell Lymphoma 8 243562 -NCIT:C166180 Advanced Anaplastic Large Cell Lymphoma 8 243563 -NCIT:C188082 Lung Anaplastic Large Cell Lymphoma 8 243564 -NCIT:C27367 Adult Anaplastic Large Cell Lymphoma 8 243565 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 9 243566 -NCIT:C27366 Adult Systemic Anaplastic Large Cell Lymphoma 9 243567 -NCIT:C37193 Anaplastic Large Cell Lymphoma, ALK-Positive 8 243568 -NCIT:C129598 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Positive 9 243569 -NCIT:C188460 Childhood Anaplastic Large Cell Lymphoma, ALK-Positive 9 243570 -NCIT:C37195 Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 9 243571 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 243572 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 243573 -NCIT:C37194 Anaplastic Large Cell Lymphoma, ALK-Negative 8 243574 -NCIT:C129599 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Negative 9 243575 -NCIT:C139012 Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 243576 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 243577 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 243578 -NCIT:C37196 Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Negative 9 243579 -NCIT:C39674 Anaplastic Large Cell Lymphoma, Giant Cell Rich Subtype 8 243580 -NCIT:C39675 Anaplastic Large Cell Lymphoma, Sarcomatoid Subtype 8 243581 -NCIT:C39676 Anaplastic Large Cell Lymphoma, Signet Ring-Like Subtype 8 243582 -NCIT:C5322 Central Nervous System Anaplastic Large Cell Lymphoma 8 243583 -NCIT:C129598 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Positive 9 243584 -NCIT:C129599 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Negative 9 243585 -NCIT:C5636 Childhood Anaplastic Large Cell Lymphoma 8 243586 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 9 243587 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 9 243588 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 243589 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 243590 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 243591 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 243592 -NCIT:C188460 Childhood Anaplastic Large Cell Lymphoma, ALK-Positive 9 243593 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 9 243594 -NCIT:C9471 Childhood Systemic Anaplastic Large Cell Lymphoma 9 243595 -NCIT:C6860 Primary Cutaneous Anaplastic Large Cell Lymphoma 8 243596 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 243597 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 243598 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 9 243599 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 9 243600 -NCIT:C7206 Common Variant Anaplastic Large Cell Lymphoma 8 243601 -NCIT:C7207 Lymphohistiocytic Variant Anaplastic Large Cell Lymphoma 8 243602 -NCIT:C7208 Small Cell Variant Anaplastic Large Cell Lymphoma 8 243603 -NCIT:C8658 Refractory Anaplastic Large Cell Lymphoma 8 243604 -NCIT:C162689 Refractory Systemic Anaplastic Large Cell Lymphoma 9 243605 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 243606 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 243607 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 243608 -NCIT:C9250 Recurrent Anaplastic Large Cell Lymphoma 8 243609 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 9 243610 -NCIT:C162688 Recurrent Systemic Anaplastic Large Cell Lymphoma 9 243611 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 243612 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 243613 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 243614 -NCIT:C9470 Systemic Anaplastic Large Cell Lymphoma 8 243615 -NCIT:C162688 Recurrent Systemic Anaplastic Large Cell Lymphoma 9 243616 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 243617 -NCIT:C162689 Refractory Systemic Anaplastic Large Cell Lymphoma 9 243618 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 243619 -NCIT:C27366 Adult Systemic Anaplastic Large Cell Lymphoma 9 243620 -NCIT:C37195 Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 9 243621 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 243622 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 243623 -NCIT:C37196 Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Negative 9 243624 -NCIT:C9471 Childhood Systemic Anaplastic Large Cell Lymphoma 9 243625 -NCIT:C4340 Peripheral T-Cell Lymphoma, Not Otherwise Specified 7 243626 -NCIT:C139288 Primary EBV-Positive Nodal T-Cell or NK-Cell Lymphoma 8 243627 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 243628 -NCIT:C188459 Childhood Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 243629 -NCIT:C7205 Lymphoepithelioid Variant Peripheral T-Cell Lymphoma 8 243630 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 243631 -NCIT:C4684 Nasal Type Extranodal NK/T-Cell Lymphoma 7 243632 -NCIT:C115154 Adult Nasal Type Extranodal NK/T-Cell Lymphoma 8 243633 -NCIT:C141296 Nasal Type NK/T-Cell Lymphoma by Ann Arbor Stage 8 243634 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 9 243635 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 9 243636 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 9 243637 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 9 243638 -NCIT:C162468 Testicular Nasal Type Extranodal NK/T-Cell Lymphoma 8 243639 -NCIT:C173172 Sinonasal Extranodal NK/T-Cell Lymphoma 8 243640 -NCIT:C173173 Nasal Cavity Extranodal NK/T-Cell Lymphoma 9 243641 -NCIT:C45268 Cutaneous Nasal Type Extranodal NK/T-Cell Lymphoma 8 243642 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 8 243643 -NCIT:C68692 Childhood Nasal Type Extranodal NK/T-Cell Lymphoma 8 243644 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 8 243645 -NCIT:C5637 Childhood Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 7 243646 -NCIT:C188459 Childhood Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 243647 -NCIT:C5636 Childhood Anaplastic Large Cell Lymphoma 8 243648 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 9 243649 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 9 243650 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 243651 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 243652 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 243653 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 10 243654 -NCIT:C188460 Childhood Anaplastic Large Cell Lymphoma, ALK-Positive 9 243655 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 9 243656 -NCIT:C9471 Childhood Systemic Anaplastic Large Cell Lymphoma 9 243657 -NCIT:C68692 Childhood Nasal Type Extranodal NK/T-Cell Lymphoma 8 243658 -NCIT:C80374 Systemic EBV-Positive T-Cell Lymphoma of Childhood 8 243659 -NCIT:C7252 Methotrexate-Associated Peripheral T-Cell Lymphoma 7 243660 -NCIT:C8459 Hepatosplenic T-Cell Lymphoma 7 243661 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 8 243662 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 8 243663 -NCIT:C8688 Recurrent Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 7 243664 -NCIT:C115439 Recurrent Mycosis Fungoides and Sezary Syndrome 8 243665 -NCIT:C176999 Recurrent Sezary Syndrome 9 243666 -NCIT:C8686 Recurrent Mycosis Fungoides 9 243667 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 243668 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 8 243669 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 8 243670 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 243671 -NCIT:C157689 Recurrent NK-Cell Lymphoma, Unclassifiable 8 243672 -NCIT:C165789 Recurrent Transformed T-cell Non-Hodgkin Lymphoma 8 243673 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 9 243674 -NCIT:C168778 Recurrent Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 8 243675 -NCIT:C168780 Recurrent Follicular T-Cell Lymphoma 8 243676 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 8 243677 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 243678 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 243679 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 243680 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 243681 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 243682 -NCIT:C8686 Recurrent Mycosis Fungoides 9 243683 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 243684 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 8 243685 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 8 243686 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 8 243687 -NCIT:C9250 Recurrent Anaplastic Large Cell Lymphoma 8 243688 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 9 243689 -NCIT:C162688 Recurrent Systemic Anaplastic Large Cell Lymphoma 9 243690 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 243691 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 243692 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 243693 -NCIT:C8689 Refractory Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 7 243694 -NCIT:C148129 Refractory Mycosis Fungoides and Sezary Syndrome 8 243695 -NCIT:C177000 Refractory Sezary Syndrome 9 243696 -NCIT:C8687 Refractory Mycosis Fungoides 9 243697 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 243698 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 8 243699 -NCIT:C157690 Refractory NK-Cell Lymphoma, Unclassifiable 8 243700 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 8 243701 -NCIT:C165791 Refractory Transformed T-cell Non-Hodgkin Lymphoma 8 243702 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 9 243703 -NCIT:C168779 Refractory Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 8 243704 -NCIT:C168781 Refractory Follicular T-Cell Lymphoma 8 243705 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 8 243706 -NCIT:C8658 Refractory Anaplastic Large Cell Lymphoma 8 243707 -NCIT:C162689 Refractory Systemic Anaplastic Large Cell Lymphoma 9 243708 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 243709 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 243710 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 243711 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 8 243712 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 8 243713 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 8 243714 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 243715 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 243716 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 243717 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 243718 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 243719 -NCIT:C8687 Refractory Mycosis Fungoides 9 243720 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 243721 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 243722 -NCIT:C9265 Mycosis Fungoides and Sezary Syndrome 7 243723 -NCIT:C115439 Recurrent Mycosis Fungoides and Sezary Syndrome 8 243724 -NCIT:C176999 Recurrent Sezary Syndrome 9 243725 -NCIT:C8686 Recurrent Mycosis Fungoides 9 243726 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 243727 -NCIT:C141142 Mycosis Fungoides and Sezary Syndrome by AJCC v7 Stage 8 243728 -NCIT:C141143 Mycosis Fungoides by AJCC v7 Stage 9 243729 -NCIT:C7796 Stage I Mycosis Fungoides AJCC v7 10 243730 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 11 243731 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 11 243732 -NCIT:C7798 Stage II Mycosis Fungoides AJCC v7 10 243733 -NCIT:C7800 Stage III Mycosis Fungoides AJCC v7 10 243734 -NCIT:C7802 Stage IV Mycosis Fungoides AJCC v7 10 243735 -NCIT:C88150 Stage I Mycosis Fungoides and Sezary Syndrome AJCC v7 9 243736 -NCIT:C7796 Stage I Mycosis Fungoides AJCC v7 10 243737 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 11 243738 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 11 243739 -NCIT:C88151 Stage IA Mycosis Fungoides and Sezary Syndrome AJCC v7 10 243740 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 11 243741 -NCIT:C88152 Stage IB Mycosis Fungoides and Sezary Syndrome AJCC v7 10 243742 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 11 243743 -NCIT:C88153 Stage II Mycosis Fungoides and Sezary Syndrome AJCC v7 9 243744 -NCIT:C7798 Stage II Mycosis Fungoides AJCC v7 10 243745 -NCIT:C88154 Stage IIA Mycosis Fungoides and Sezary Syndrome AJCC v7 10 243746 -NCIT:C88155 Stage IIB Mycosis Fungoides and Sezary Syndrome AJCC v7 10 243747 -NCIT:C88157 Stage III Mycosis Fungoides and Sezary Syndrome AJCC v7 9 243748 -NCIT:C7800 Stage III Mycosis Fungoides AJCC v7 10 243749 -NCIT:C88158 Stage IIIA Mycosis Fungoides and Sezary Syndrome AJCC v7 10 243750 -NCIT:C88159 Stage IIIB Mycosis Fungoides and Sezary Syndrome AJCC v7 10 243751 -NCIT:C88160 Stage IV Mycosis Fungoides and Sezary Syndrome AJCC v7 9 243752 -NCIT:C7802 Stage IV Mycosis Fungoides AJCC v7 10 243753 -NCIT:C88161 Stage IVA Mycosis Fungoides and Sezary Syndrome AJCC v7 10 243754 -NCIT:C88162 Stage IVB Mycosis Fungoides and Sezary Syndrome AJCC v7 10 243755 -NCIT:C141346 Mycosis Fungoides and Sezary Syndrome by AJCC v8 Stage 8 243756 -NCIT:C141347 Stage I Mycosis Fungoides and Sezary Syndrome AJCC v8 9 243757 -NCIT:C141348 Stage IA Mycosis Fungoides and Sezary Syndrome AJCC v8 10 243758 -NCIT:C141349 Stage IB Mycosis Fungoides and Sezary Syndrome AJCC v8 10 243759 -NCIT:C141350 Stage II Mycosis Fungoides and Sezary Syndrome AJCC v8 9 243760 -NCIT:C141351 Stage IIA Mycosis Fungoides and Sezary Syndrome AJCC v8 10 243761 -NCIT:C141352 Stage IIB Mycosis Fungoides and Sezary Syndrome AJCC v8 10 243762 -NCIT:C141353 Stage III Mycosis Fungoides and Sezary Syndrome AJCC v8 9 243763 -NCIT:C141354 Stage IIIA Mycosis Fungoides and Sezary Syndrome AJCC v8 10 243764 -NCIT:C141355 Stage IIIB Mycosis Fungoides and Sezary Syndrome AJCC v8 10 243765 -NCIT:C141356 Stage IV Mycosis Fungoides and Sezary Syndrome AJCC v8 9 243766 -NCIT:C141357 Stage IVA1 Mycosis Fungoides and Sezary Syndrome AJCC v8 10 243767 -NCIT:C141358 Stage IVA2 Mycosis Fungoides and Sezary Syndrome AJCC v8 10 243768 -NCIT:C141359 Stage IVB Mycosis Fungoides and Sezary Syndrome AJCC v8 10 243769 -NCIT:C148129 Refractory Mycosis Fungoides and Sezary Syndrome 8 243770 -NCIT:C177000 Refractory Sezary Syndrome 9 243771 -NCIT:C8687 Refractory Mycosis Fungoides 9 243772 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 243773 -NCIT:C3246 Mycosis Fungoides 8 243774 -NCIT:C141143 Mycosis Fungoides by AJCC v7 Stage 9 243775 -NCIT:C7796 Stage I Mycosis Fungoides AJCC v7 10 243776 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 11 243777 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 11 243778 -NCIT:C7798 Stage II Mycosis Fungoides AJCC v7 10 243779 -NCIT:C7800 Stage III Mycosis Fungoides AJCC v7 10 243780 -NCIT:C7802 Stage IV Mycosis Fungoides AJCC v7 10 243781 -NCIT:C165783 Transformed Mycosis Fungoides 9 243782 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 243783 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 243784 -NCIT:C8686 Recurrent Mycosis Fungoides 9 243785 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 243786 -NCIT:C8687 Refractory Mycosis Fungoides 9 243787 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 243788 -NCIT:C3366 Sezary Syndrome 8 243789 -NCIT:C176999 Recurrent Sezary Syndrome 9 243790 -NCIT:C177000 Refractory Sezary Syndrome 9 243791 -NCIT:C39644 Mycosis Fungoides Variant 8 243792 -NCIT:C35464 Granulomatous Slack Skin Disease 9 243793 -NCIT:C35685 Folliculotropic Mycosis Fungoides 9 243794 -NCIT:C35794 Pagetoid Reticulosis 9 243795 -NCIT:C5182 Breast T-Cell Non-Hodgkin Lymphoma 6 243796 -NCIT:C139012 Breast Implant-Associated Anaplastic Large Cell Lymphoma 7 243797 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 8 243798 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 8 243799 -NCIT:C5254 Gastric T-Cell Non-Hodgkin Lymphoma 6 243800 -NCIT:C5409 Central Nervous System T-Cell Non-Hodgkin Lymphoma 6 243801 -NCIT:C129600 Central Nervous System Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 7 243802 -NCIT:C5322 Central Nervous System Anaplastic Large Cell Lymphoma 8 243803 -NCIT:C129598 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Positive 9 243804 -NCIT:C129599 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Negative 9 243805 -NCIT:C8663 Recurrent T-Cell Non-Hodgkin Lymphoma 6 243806 -NCIT:C178554 Recurrent Aggressive T-Cell Non-Hodgkin Lymphoma 7 243807 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 8 243808 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 8 243809 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 243810 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 8 243811 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 8 243812 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 8 243813 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 8 243814 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 8 243815 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 8 243816 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 8 243817 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 8 243818 -NCIT:C183513 Recurrent Indolent T-Cell Non-Hodgkin Lymphoma 7 243819 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 8 243820 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 8 243821 -NCIT:C8686 Recurrent Mycosis Fungoides 8 243822 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 9 243823 -NCIT:C8688 Recurrent Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 7 243824 -NCIT:C115439 Recurrent Mycosis Fungoides and Sezary Syndrome 8 243825 -NCIT:C176999 Recurrent Sezary Syndrome 9 243826 -NCIT:C8686 Recurrent Mycosis Fungoides 9 243827 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 243828 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 8 243829 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 8 243830 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 243831 -NCIT:C157689 Recurrent NK-Cell Lymphoma, Unclassifiable 8 243832 -NCIT:C165789 Recurrent Transformed T-cell Non-Hodgkin Lymphoma 8 243833 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 9 243834 -NCIT:C168778 Recurrent Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 8 243835 -NCIT:C168780 Recurrent Follicular T-Cell Lymphoma 8 243836 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 8 243837 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 243838 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 243839 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 243840 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 243841 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 243842 -NCIT:C8686 Recurrent Mycosis Fungoides 9 243843 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 243844 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 8 243845 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 8 243846 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 8 243847 -NCIT:C9250 Recurrent Anaplastic Large Cell Lymphoma 8 243848 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 9 243849 -NCIT:C162688 Recurrent Systemic Anaplastic Large Cell Lymphoma 9 243850 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 243851 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 243852 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 243853 -NCIT:C8664 Refractory T-Cell Non-Hodgkin Lymphoma 6 243854 -NCIT:C178556 Refractory Aggressive T-Cell Non-Hodgkin Lymphoma 7 243855 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 8 243856 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 8 243857 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 8 243858 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 8 243859 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 8 243860 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 8 243861 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 8 243862 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 8 243863 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 8 243864 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 8 243865 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 243866 -NCIT:C183515 Refractory Indolent T-Cell Non-Hodgkin Lymphoma 7 243867 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 8 243868 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 8 243869 -NCIT:C8687 Refractory Mycosis Fungoides 8 243870 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 9 243871 -NCIT:C8689 Refractory Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 7 243872 -NCIT:C148129 Refractory Mycosis Fungoides and Sezary Syndrome 8 243873 -NCIT:C177000 Refractory Sezary Syndrome 9 243874 -NCIT:C8687 Refractory Mycosis Fungoides 9 243875 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 243876 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 8 243877 -NCIT:C157690 Refractory NK-Cell Lymphoma, Unclassifiable 8 243878 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 8 243879 -NCIT:C165791 Refractory Transformed T-cell Non-Hodgkin Lymphoma 8 243880 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 9 243881 -NCIT:C168779 Refractory Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 8 243882 -NCIT:C168781 Refractory Follicular T-Cell Lymphoma 8 243883 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 8 243884 -NCIT:C8658 Refractory Anaplastic Large Cell Lymphoma 8 243885 -NCIT:C162689 Refractory Systemic Anaplastic Large Cell Lymphoma 9 243886 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 243887 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 243888 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 243889 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 8 243890 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 8 243891 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 8 243892 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 243893 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 243894 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 243895 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 243896 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 243897 -NCIT:C8687 Refractory Mycosis Fungoides 9 243898 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 243899 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 243900 -NCIT:C96054 Small Intestinal T-Cell Non-Hodgkin Lymphoma 6 243901 -NCIT:C150504 Small Intestinal Monomorphic Epitheliotropic T-Cell Lymphoma 7 243902 -NCIT:C39610 Small Intestinal Enteropathy-Associated T-Cell Lymphoma 7 243903 -NCIT:C38161 Digestive System Non-Hodgkin Lymphoma 5 243904 -NCIT:C150495 Intestinal T-Cell Lymphoma 6 243905 -NCIT:C150505 Intestinal T-Cell Lymphoma, Not Otherwise Specified 7 243906 -NCIT:C4737 Enteropathy-Associated T-Cell Lymphoma 7 243907 -NCIT:C141295 Enteropathy-Associated T-Cell Lymphoma by Ann Arbor Stage 8 243908 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 9 243909 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 9 243910 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 9 243911 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 9 243912 -NCIT:C39610 Small Intestinal Enteropathy-Associated T-Cell Lymphoma 8 243913 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 8 243914 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 8 243915 -NCIT:C96058 Monomorphic Epitheliotropic Intestinal T-Cell Lymphoma 7 243916 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 8 243917 -NCIT:C150504 Small Intestinal Monomorphic Epitheliotropic T-Cell Lymphoma 8 243918 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 8 243919 -NCIT:C172844 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue Involving the Digestive System 6 243920 -NCIT:C5266 Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 7 243921 -NCIT:C27763 Helicobacter Pylori-Associated Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 8 243922 -NCIT:C5635 Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 7 243923 -NCIT:C45166 Campylobacter Jejuni-Associated Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 8 243924 -NCIT:C5768 Liver Mucosa-Associated Lymphoid Tissue Lymphoma 7 243925 -NCIT:C95626 Esophageal Mucosa-Associated Lymphoid Tissue Lymphoma 7 243926 -NCIT:C96506 Colorectal Mucosa-Associated Lymphoid Tissue Lymphoma 7 243927 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 8 243928 -NCIT:C172850 Digestive System Diffuse Large B-Cell Lymphoma 6 243929 -NCIT:C5253 Gastric Diffuse Large B-Cell Lymphoma 7 243930 -NCIT:C95625 Esophageal Diffuse Large B-Cell Lymphoma 7 243931 -NCIT:C96055 Small Intestinal Diffuse Large B-Cell Lymphoma 7 243932 -NCIT:C96057 Small Intestinal High Grade B-Cell Lymphoma, Not Otherwise Specified 8 243933 -NCIT:C96503 Colorectal Diffuse Large B-Cell Lymphoma 7 243934 -NCIT:C96501 Colorectal High Grade B-Cell Lymphoma, Not Otherwise Specified 8 243935 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 8 243936 -NCIT:C96843 Liver Diffuse Large B-Cell Lymphoma 7 243937 -NCIT:C27235 Gastric Non-Hodgkin Lymphoma 6 243938 -NCIT:C5251 Gastric Burkitt Lymphoma 7 243939 -NCIT:C5253 Gastric Diffuse Large B-Cell Lymphoma 7 243940 -NCIT:C5254 Gastric T-Cell Non-Hodgkin Lymphoma 7 243941 -NCIT:C5266 Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 7 243942 -NCIT:C27763 Helicobacter Pylori-Associated Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 8 243943 -NCIT:C4339 Multifocal Lymphomatous Polyposis 6 243944 -NCIT:C5688 Esophageal Non-Hodgkin Lymphoma 6 243945 -NCIT:C95625 Esophageal Diffuse Large B-Cell Lymphoma 7 243946 -NCIT:C95626 Esophageal Mucosa-Associated Lymphoid Tissue Lymphoma 7 243947 -NCIT:C5766 Liver Non-Hodgkin Lymphoma 6 243948 -NCIT:C5768 Liver Mucosa-Associated Lymphoid Tissue Lymphoma 7 243949 -NCIT:C8459 Hepatosplenic T-Cell Lymphoma 7 243950 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 8 243951 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 8 243952 -NCIT:C96843 Liver Diffuse Large B-Cell Lymphoma 7 243953 -NCIT:C5789 Pancreatic Non-Hodgkin Lymphoma 6 243954 -NCIT:C7231 Small Intestinal Non-Hodgkin Lymphoma 6 243955 -NCIT:C96053 Small Intestinal B-Cell Non-Hodgkin Lymphoma 7 243956 -NCIT:C27409 Small Intestinal Burkitt Lymphoma 8 243957 -NCIT:C27410 Small Intestinal Atypical Burkitt/Burkitt-Like Lymphoma 9 243958 -NCIT:C27441 Small Intestinal Mantle Cell Lymphoma 8 243959 -NCIT:C3132 Alpha Heavy Chain Disease 8 243960 -NCIT:C5635 Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 8 243961 -NCIT:C45166 Campylobacter Jejuni-Associated Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 9 243962 -NCIT:C96055 Small Intestinal Diffuse Large B-Cell Lymphoma 8 243963 -NCIT:C96057 Small Intestinal High Grade B-Cell Lymphoma, Not Otherwise Specified 9 243964 -NCIT:C96056 Small Intestinal Follicular Lymphoma 8 243965 -NCIT:C96054 Small Intestinal T-Cell Non-Hodgkin Lymphoma 7 243966 -NCIT:C150504 Small Intestinal Monomorphic Epitheliotropic T-Cell Lymphoma 8 243967 -NCIT:C39610 Small Intestinal Enteropathy-Associated T-Cell Lymphoma 8 243968 -NCIT:C7465 AIDS-Related Anal Non-Hodgkin Lymphoma 6 243969 -NCIT:C80298 Intestinal Follicular Lymphoma 6 243970 -NCIT:C96056 Small Intestinal Follicular Lymphoma 7 243971 -NCIT:C96499 Colorectal Non-Hodgkin Lymphoma 6 243972 -NCIT:C4950 Colon Non-Hodgkin Lymphoma 7 243973 -NCIT:C27411 Colon Mantle Cell Lymphoma 8 243974 -NCIT:C27465 Colon Burkitt Lymphoma 8 243975 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 8 243976 -NCIT:C5521 Cecum Non-Hodgkin Lymphoma 8 243977 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 8 243978 -NCIT:C96502 Colorectal Burkitt Lymphoma 7 243979 -NCIT:C27465 Colon Burkitt Lymphoma 8 243980 -NCIT:C96503 Colorectal Diffuse Large B-Cell Lymphoma 7 243981 -NCIT:C96501 Colorectal High Grade B-Cell Lymphoma, Not Otherwise Specified 8 243982 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 8 243983 -NCIT:C96505 Colorectal Mantle Cell Lymphoma 7 243984 -NCIT:C27411 Colon Mantle Cell Lymphoma 8 243985 -NCIT:C96506 Colorectal Mucosa-Associated Lymphoid Tissue Lymphoma 7 243986 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 8 243987 -NCIT:C5051 AIDS-Related Non-Hodgkin Lymphoma 5 243988 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 6 243989 -NCIT:C7212 AIDS-Related Diffuse Large B-cell Lymphoma 6 243990 -NCIT:C27858 AIDS-Related Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 7 243991 -NCIT:C27859 AIDS-Related Plasmablastic Lymphoma 7 243992 -NCIT:C38160 AIDS-Related Plasmablastic Lymphoma of Mucosa Site 8 243993 -NCIT:C9016 AIDS-Related Plasmablastic Lymphoma of the Oral Mucosa 9 243994 -NCIT:C8285 AIDS-Related Immunoblastic Lymphoma 7 243995 -NCIT:C9017 AIDS-Related Primary Effusion Lymphoma 7 243996 -NCIT:C7434 AIDS-Related Non-Hodgkin Lymphoma of the Cervix 6 243997 -NCIT:C7465 AIDS-Related Anal Non-Hodgkin Lymphoma 6 243998 -NCIT:C8286 AIDS-Related Burkitt Lymphoma 6 243999 -NCIT:C27857 AIDS-Related Burkitt Lymphoma with Plasmacytoid Differentiation 7 244000 -NCIT:C8298 AIDS-Related Lymphoblastic Lymphoma 6 244001 -NCIT:C5181 Breast Non-Hodgkin Lymphoma 5 244002 -NCIT:C35688 Breast Mucosa-Associated Lymphoid Tissue Lymphoma 6 244003 -NCIT:C40375 Breast Diffuse Large B-Cell Lymphoma 6 244004 -NCIT:C40376 Breast Burkitt Lymphoma 6 244005 -NCIT:C40377 Breast Follicular Lymphoma 6 244006 -NCIT:C5182 Breast T-Cell Non-Hodgkin Lymphoma 6 244007 -NCIT:C139012 Breast Implant-Associated Anaplastic Large Cell Lymphoma 7 244008 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 8 244009 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 8 244010 -NCIT:C5534 Prostate Non-Hodgkin Lymphoma 5 244011 -NCIT:C161602 Prostate Diffuse Large B-Cell Lymphoma 6 244012 -NCIT:C161603 Prostate Follicular Lymphoma 6 244013 -NCIT:C161604 Prostate Mantle Cell Lymphoma 6 244014 -NCIT:C161605 Prostate Small Lymphocytic Lymphoma 6 244015 -NCIT:C5684 Lung Non-Hodgkin Lymphoma 5 244016 -NCIT:C181211 Lung Follicular Lymphoma 6 244017 -NCIT:C188082 Lung Anaplastic Large Cell Lymphoma 6 244018 -NCIT:C45605 Lung Diffuse Large B-Cell Lymphoma 6 244019 -NCIT:C183121 Lung Intravascular Large B-Cell Lymphoma 7 244020 -NCIT:C5264 Lung Mucosa-Associated Lymphoid Tissue Lymphoma 6 244021 -NCIT:C6044 Thyroid Gland Non-Hodgkin Lymphoma 5 244022 -NCIT:C156410 Thyroid Gland Follicular Lymphoma 6 244023 -NCIT:C6046 Thyroid Gland Diffuse Large B-Cell Lymphoma 6 244024 -NCIT:C7263 Thyroid Gland Immunoblastic Lymphoma 7 244025 -NCIT:C7601 Thyroid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 6 244026 -NCIT:C7215 Non-Hodgkin Lymphoma by Clinical Course 5 244027 -NCIT:C68837 Favorable Non-Hodgkin Lymphoma 6 244028 -NCIT:C53280 Early Favorable Non-Hodgkin Lymphoma 7 244029 -NCIT:C53283 Advanced Favorable Non-Hodgkin Lymphoma 7 244030 -NCIT:C68838 Unfavorable Non-Hodgkin Lymphoma 6 244031 -NCIT:C53282 Early Unfavorable Non-Hodgkin Lymphoma 7 244032 -NCIT:C53284 Advanced Unfavorable Non-Hodgkin Lymphoma 7 244033 -NCIT:C7216 Non-Hodgkin Lymphoma with Variable Clinical Course 6 244034 -NCIT:C9280 Primary Mediastinal (Thymic) Large B-Cell Lymphoma 7 244035 -NCIT:C141262 Primary Mediastinal (Thymic) Large B-Cell Lymphoma by Ann Arbor Stage 8 244036 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 244037 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 244038 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 244039 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 244040 -NCIT:C188455 Childhood Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 244041 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 244042 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 244043 -NCIT:C8504 Indolent Non-Hodgkin Lymphoma 6 244044 -NCIT:C171299 Indolent B-Cell Non-Hodgkin Lymphoma 7 244045 -NCIT:C175451 Primary Uveal Non-Hodgkin Lymphoma 8 244046 -NCIT:C175464 Primary Choroidal Non-Hodgkin Lymphoma 9 244047 -NCIT:C175466 Primary Ciliary Body Non-Hodgkin Lymphoma 9 244048 -NCIT:C175467 Primary Iris Non-Hodgkin Lymphoma 9 244049 -NCIT:C3212 Lymphoplasmacytic Lymphoma 8 244050 -NCIT:C141256 Lymphoplasmacytic Lymphoma by Ann Arbor Stage 9 244051 -NCIT:C8653 Ann Arbor Stage I Lymphoplasmacytic Lymphoma 10 244052 -NCIT:C8654 Ann Arbor Stage II Lymphoplasmacytic Lymphoma 10 244053 -NCIT:C8655 Ann Arbor Stage III Lymphoplasmacytic Lymphoma 10 244054 -NCIT:C8656 Ann Arbor Stage IV Lymphoplasmacytic Lymphoma 10 244055 -NCIT:C7305 Splenic Lymphoplasmacytic Lymphoma 9 244056 -NCIT:C80307 Waldenstrom Macroglobulinemia 9 244057 -NCIT:C115212 Familial Waldenstrom Macroglobulinemia 10 244058 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 10 244059 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 10 244060 -NCIT:C155910 Smoldering Waldenstrom Macroglobulinemia 10 244061 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 9 244062 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 10 244063 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 9 244064 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 10 244065 -NCIT:C3465 Grade 1 Follicular Lymphoma 8 244066 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 9 244067 -NCIT:C7220 Grade 1 Cutaneous Follicular Lymphoma 9 244068 -NCIT:C8071 Ann Arbor Stage I Grade 1 Follicular Lymphoma 9 244069 -NCIT:C8116 Ann Arbor Stage II Grade 1 Follicular Lymphoma 9 244070 -NCIT:C8468 Ann Arbor Stage II Grade 1 Contiguous Follicular Lymphoma 10 244071 -NCIT:C9194 Ann Arbor Stage II Grade 1 Non-Contiguous Follicular Lymphoma 10 244072 -NCIT:C8129 Ann Arbor Stage III Grade 1 Follicular Lymphoma 9 244073 -NCIT:C8142 Ann Arbor Stage IV Grade 1 Follicular Lymphoma 9 244074 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 9 244075 -NCIT:C37203 Small Lymphocytic Lymphoma with Immunoglobulin Heavy Chain Variable-Region Gene Somatic Hypermutation 8 244076 -NCIT:C4341 Marginal Zone Lymphoma 8 244077 -NCIT:C141258 Marginal Zone Lymphoma by Ann Arbor Stage 9 244078 -NCIT:C141260 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue by Ann Arbor Stage 10 244079 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 244080 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 244081 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 244082 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 244083 -NCIT:C141261 Nodal Marginal Zone Lymphoma by Ann Arbor Stage 10 244084 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 11 244085 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 11 244086 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 11 244087 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 11 244088 -NCIT:C68678 Ann Arbor Stage I Marginal Zone Lymphoma 10 244089 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 244090 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 11 244091 -NCIT:C68679 Ann Arbor Stage II Marginal Zone Lymphoma 10 244092 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 244093 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 11 244094 -NCIT:C68682 Ann Arbor Stage III Marginal Zone Lymphoma 10 244095 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 244096 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 11 244097 -NCIT:C68683 Ann Arbor Stage IV Marginal Zone Lymphoma 10 244098 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 244099 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 11 244100 -NCIT:C143085 Refractory Marginal Zone Lymphoma 9 244101 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 10 244102 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 244103 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 10 244104 -NCIT:C172360 Advanced Marginal Zone Lymphoma 9 244105 -NCIT:C3898 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 244106 -NCIT:C123394 Childhood Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 244107 -NCIT:C141260 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue by Ann Arbor Stage 10 244108 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 244109 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 244110 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 244111 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 244112 -NCIT:C172844 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue Involving the Digestive System 10 244113 -NCIT:C5266 Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 11 244114 -NCIT:C27763 Helicobacter Pylori-Associated Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 12 244115 -NCIT:C5635 Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 11 244116 -NCIT:C45166 Campylobacter Jejuni-Associated Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 12 244117 -NCIT:C5768 Liver Mucosa-Associated Lymphoid Tissue Lymphoma 11 244118 -NCIT:C95626 Esophageal Mucosa-Associated Lymphoid Tissue Lymphoma 11 244119 -NCIT:C96506 Colorectal Mucosa-Associated Lymphoid Tissue Lymphoma 11 244120 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 12 244121 -NCIT:C173693 Salivary Gland Mucosa-Associated Lymphoid Tissue Lymphoma 10 244122 -NCIT:C35687 Parotid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 11 244123 -NCIT:C181910 Endometrial Mucosa-Associated Lymphoid Tissue Lymphoma 10 244124 -NCIT:C35688 Breast Mucosa-Associated Lymphoid Tissue Lymphoma 10 244125 -NCIT:C35689 Ocular Adnexal Mucosa-Associated Lymphoid Tissue Lymphoma 10 244126 -NCIT:C175431 Conjunctival Mucosa-Associated Lymphoid Tissue Lymphoma 11 244127 -NCIT:C175482 Lacrimal System Mucosa-Associated Lymphoid Tissue Lymphoma 11 244128 -NCIT:C175483 Lacrimal Gland Mucosa-Associated Lymphoid Tissue Lymphoma 12 244129 -NCIT:C175484 Lacrimal Drainage System Mucosa-Associated Lymphoid Tissue Lymphoma 12 244130 -NCIT:C182357 Diffusion Restriction 11 244131 -NCIT:C44960 Chlamydia Psittaci-Associated Ocular Adnexal Mucosa-Associated Lymphoid Tissue Lymphoma 11 244132 -NCIT:C39878 Bladder Mucosa-Associated Lymphoid Tissue Lymphoma 10 244133 -NCIT:C45380 Thymic Mucosa-Associated Lymphoid Tissue Lymphoma 10 244134 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 244135 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 244136 -NCIT:C5264 Lung Mucosa-Associated Lymphoid Tissue Lymphoma 10 244137 -NCIT:C7230 Primary Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 244138 -NCIT:C45163 Borrelia Burgdoferi-Associated Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 244139 -NCIT:C7601 Thyroid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 10 244140 -NCIT:C95991 Dural Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 244141 -NCIT:C4663 Splenic Marginal Zone Lymphoma 9 244142 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 10 244143 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 10 244144 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 9 244145 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 10 244146 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 244147 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 10 244148 -NCIT:C8863 Nodal Marginal Zone Lymphoma 9 244149 -NCIT:C141261 Nodal Marginal Zone Lymphoma by Ann Arbor Stage 10 244150 -NCIT:C8864 Ann Arbor Stage I Nodal Marginal Zone Lymphoma 11 244151 -NCIT:C8865 Ann Arbor Stage II Nodal Marginal Zone Lymphoma 11 244152 -NCIT:C8866 Ann Arbor Stage III Nodal Marginal Zone Lymphoma 11 244153 -NCIT:C8867 Ann Arbor Stage IV Nodal Marginal Zone Lymphoma 11 244154 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 10 244155 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 10 244156 -NCIT:C80299 Pediatric Nodal Marginal Zone Lymphoma 10 244157 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 8 244158 -NCIT:C7264 Diffuse Follicular Lymphoma 8 244159 -NCIT:C7194 Grade 2 Diffuse Follicular Lymphoma 9 244160 -NCIT:C9464 Grade 1 Diffuse Follicular Lymphoma 9 244161 -NCIT:C8968 Grade 2 Follicular Lymphoma 8 244162 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 9 244163 -NCIT:C7219 Grade 2 Cutaneous Follicular Lymphoma 9 244164 -NCIT:C8072 Ann Arbor Stage I Grade 2 Follicular Lymphoma 9 244165 -NCIT:C8117 Ann Arbor Stage II Grade 2 Follicular Lymphoma 9 244166 -NCIT:C8469 Ann Arbor Stage II Grade 2 Contiguous Follicular Lymphoma 10 244167 -NCIT:C9195 Ann Arbor Stage II Grade 2 Non-Contiguous Follicular Lymphoma 10 244168 -NCIT:C8130 Ann Arbor Stage III Grade 2 Follicular Lymphoma 9 244169 -NCIT:C8143 Ann Arbor Stage IV Grade 2 Follicular Lymphoma 9 244170 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 9 244171 -NCIT:C171300 Indolent T-Cell Non-Hodgkin Lymphoma 7 244172 -NCIT:C3246 Mycosis Fungoides 8 244173 -NCIT:C141143 Mycosis Fungoides by AJCC v7 Stage 9 244174 -NCIT:C7796 Stage I Mycosis Fungoides AJCC v7 10 244175 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 11 244176 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 11 244177 -NCIT:C7798 Stage II Mycosis Fungoides AJCC v7 10 244178 -NCIT:C7800 Stage III Mycosis Fungoides AJCC v7 10 244179 -NCIT:C7802 Stage IV Mycosis Fungoides AJCC v7 10 244180 -NCIT:C165783 Transformed Mycosis Fungoides 9 244181 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 244182 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 244183 -NCIT:C8686 Recurrent Mycosis Fungoides 9 244184 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 244185 -NCIT:C8687 Refractory Mycosis Fungoides 9 244186 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 244187 -NCIT:C39644 Mycosis Fungoides Variant 8 244188 -NCIT:C35464 Granulomatous Slack Skin Disease 9 244189 -NCIT:C35685 Folliculotropic Mycosis Fungoides 9 244190 -NCIT:C35794 Pagetoid Reticulosis 9 244191 -NCIT:C6860 Primary Cutaneous Anaplastic Large Cell Lymphoma 8 244192 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 244193 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 244194 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 9 244195 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 9 244196 -NCIT:C6918 Subcutaneous Panniculitis-Like T-Cell Lymphoma 8 244197 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 244198 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 244199 -NCIT:C173046 Refractory Indolent Non-Hodgkin Lymphoma 7 244200 -NCIT:C148175 Refractory Indolent Adult Non-Hodgkin Lymphoma 8 244201 -NCIT:C183514 Refractory Indolent B-Cell Non-Hodgkin Lymphoma 8 244202 -NCIT:C143085 Refractory Marginal Zone Lymphoma 9 244203 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 10 244204 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 244205 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 10 244206 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 9 244207 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 9 244208 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 9 244209 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 10 244210 -NCIT:C183515 Refractory Indolent T-Cell Non-Hodgkin Lymphoma 8 244211 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 244212 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 244213 -NCIT:C8687 Refractory Mycosis Fungoides 9 244214 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 244215 -NCIT:C181796 Recurrent Indolent Non-Hodgkin Lymphoma 7 244216 -NCIT:C183512 Recurrent Indolent B-Cell Non-Hodgkin Lymphoma 8 244217 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 9 244218 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 10 244219 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 244220 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 10 244221 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 9 244222 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 9 244223 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 9 244224 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 10 244225 -NCIT:C183513 Recurrent Indolent T-Cell Non-Hodgkin Lymphoma 8 244226 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 244227 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 244228 -NCIT:C8686 Recurrent Mycosis Fungoides 9 244229 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 244230 -NCIT:C8488 Recurrent Indolent Adult Non-Hodgkin Lymphoma 8 244231 -NCIT:C8491 Indolent Adult Non-Hodgkin Lymphoma 7 244232 -NCIT:C148175 Refractory Indolent Adult Non-Hodgkin Lymphoma 8 244233 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 8 244234 -NCIT:C68688 Ann Arbor Stage II Indolent Adult Non-Hodgkin Lymphoma 8 244235 -NCIT:C8467 Ann Arbor Stage II Contiguous Adult Indolent Non-Hodgkin Lymphoma 9 244236 -NCIT:C8478 Ann Arbor Stage II Non-Contiguous Adult Indolent Non-Hodgkin Lymphoma 9 244237 -NCIT:C8464 Ann Arbor Stage I Indolent Adult Non-Hodgkin Lymphoma 8 244238 -NCIT:C8482 Ann Arbor Stage III Indolent Adult Non-Hodgkin Lymphoma 8 244239 -NCIT:C8485 Ann Arbor Stage IV Indolent Adult Non-Hodgkin Lymphoma 8 244240 -NCIT:C8488 Recurrent Indolent Adult Non-Hodgkin Lymphoma 8 244241 -NCIT:C9244 Aggressive Non-Hodgkin Lymphoma 6 244242 -NCIT:C156232 Recurrent Aggressive Non-Hodgkin Lymphoma 7 244243 -NCIT:C178553 Recurrent Aggressive B-Cell Non-Hodgkin Lymphoma 8 244244 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 244245 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 9 244246 -NCIT:C5008 Recurrent Burkitt Lymphoma 9 244247 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 10 244248 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 10 244249 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 9 244250 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 244251 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 10 244252 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 9 244253 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 10 244254 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 10 244255 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 9 244256 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 9 244257 -NCIT:C178554 Recurrent Aggressive T-Cell Non-Hodgkin Lymphoma 8 244258 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 244259 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 9 244260 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 244261 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 244262 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 9 244263 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 244264 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 244265 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 9 244266 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 9 244267 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 9 244268 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 9 244269 -NCIT:C8490 Recurrent Aggressive Adult Non-Hodgkin Lymphoma 8 244270 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 9 244271 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 9 244272 -NCIT:C8164 Recurrent Adult Lymphoblastic Lymphoma 9 244273 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 9 244274 -NCIT:C156233 Refractory Aggressive Non-Hodgkin Lymphoma 7 244275 -NCIT:C178555 Refractory Aggressive B-Cell Non-Hodgkin Lymphoma 8 244276 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 244277 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 9 244278 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 9 244279 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 10 244280 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 10 244281 -NCIT:C8847 Refractory Burkitt Lymphoma 9 244282 -NCIT:C8862 Refractory Mantle Cell Lymphoma 9 244283 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 9 244284 -NCIT:C178556 Refractory Aggressive T-Cell Non-Hodgkin Lymphoma 8 244285 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 9 244286 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 244287 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 244288 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 244289 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 244290 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 9 244291 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 9 244292 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 9 244293 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 9 244294 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 9 244295 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 244296 -NCIT:C178541 Aggressive B-Cell Non-Hodgkin Lymphoma 7 244297 -NCIT:C131911 Burkitt-Like Lymphoma with 11q Aberration 8 244298 -NCIT:C178553 Recurrent Aggressive B-Cell Non-Hodgkin Lymphoma 8 244299 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 244300 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 9 244301 -NCIT:C5008 Recurrent Burkitt Lymphoma 9 244302 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 10 244303 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 10 244304 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 9 244305 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 244306 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 10 244307 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 9 244308 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 10 244309 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 10 244310 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 9 244311 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 9 244312 -NCIT:C178555 Refractory Aggressive B-Cell Non-Hodgkin Lymphoma 8 244313 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 244314 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 9 244315 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 9 244316 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 10 244317 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 10 244318 -NCIT:C8847 Refractory Burkitt Lymphoma 9 244319 -NCIT:C8862 Refractory Mantle Cell Lymphoma 9 244320 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 9 244321 -NCIT:C2912 Burkitt Lymphoma 8 244322 -NCIT:C141253 Burkitt Lymphoma by Ann Arbor Stage 9 244323 -NCIT:C5084 Ann Arbor Stage IV Burkitt Lymphoma 10 244324 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 11 244325 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 11 244326 -NCIT:C8848 Ann Arbor Stage I Burkitt Lymphoma 10 244327 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 11 244328 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 11 244329 -NCIT:C8849 Ann Arbor Stage II Burkitt Lymphoma 10 244330 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 11 244331 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 12 244332 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 12 244333 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 11 244334 -NCIT:C8850 Ann Arbor Stage III Burkitt Lymphoma 10 244335 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 11 244336 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 11 244337 -NCIT:C168651 Cutaneous Burkitt Lymphoma 9 244338 -NCIT:C188075 Kidney Burkitt Lymphoma 9 244339 -NCIT:C27409 Small Intestinal Burkitt Lymphoma 9 244340 -NCIT:C27410 Small Intestinal Atypical Burkitt/Burkitt-Like Lymphoma 10 244341 -NCIT:C27694 EBV-Related Burkitt Lymphoma 9 244342 -NCIT:C27122 Endemic Burkitt Lymphoma 10 244343 -NCIT:C27914 Sporadic Burkitt Lymphoma 9 244344 -NCIT:C27915 Immunodeficiency-Related Burkitt Lymphoma 9 244345 -NCIT:C7244 Burkitt Lymphoma Post-Transplant Lymphoproliferative Disorder 10 244346 -NCIT:C7245 Burkitt-Like Lymphoma Post-Transplant Lymphoproliferative Disorder 11 244347 -NCIT:C7255 Methotrexate-Related Burkitt Lymphoma 10 244348 -NCIT:C8286 AIDS-Related Burkitt Lymphoma 10 244349 -NCIT:C27857 AIDS-Related Burkitt Lymphoma with Plasmacytoid Differentiation 11 244350 -NCIT:C40376 Breast Burkitt Lymphoma 9 244351 -NCIT:C5008 Recurrent Burkitt Lymphoma 9 244352 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 10 244353 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 10 244354 -NCIT:C5251 Gastric Burkitt Lymphoma 9 244355 -NCIT:C6917 Atypical Burkitt/Burkitt-Like Lymphoma 9 244356 -NCIT:C27410 Small Intestinal Atypical Burkitt/Burkitt-Like Lymphoma 10 244357 -NCIT:C7245 Burkitt-Like Lymphoma Post-Transplant Lymphoproliferative Disorder 10 244358 -NCIT:C7188 Classical Burkitt Lymphoma 9 244359 -NCIT:C7189 Burkitt Lymphoma with Plasmacytoid Differentiation 9 244360 -NCIT:C27857 AIDS-Related Burkitt Lymphoma with Plasmacytoid Differentiation 10 244361 -NCIT:C7309 Splenic Burkitt Lymphoma 9 244362 -NCIT:C8847 Refractory Burkitt Lymphoma 9 244363 -NCIT:C9062 Adult Burkitt Lymphoma 9 244364 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 10 244365 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 10 244366 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 11 244367 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 11 244368 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 10 244369 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 10 244370 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 10 244371 -NCIT:C9095 Childhood Burkitt Lymphoma 9 244372 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 10 244373 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 10 244374 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 10 244375 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 10 244376 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 10 244377 -NCIT:C96502 Colorectal Burkitt Lymphoma 9 244378 -NCIT:C27465 Colon Burkitt Lymphoma 10 244379 -NCIT:C3460 Grade 3 Follicular Lymphoma 8 244380 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 9 244381 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 10 244382 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 10 244383 -NCIT:C6859 Grade 3 Cutaneous Follicular Lymphoma 9 244384 -NCIT:C7191 Grade 3a Follicular Lymphoma 9 244385 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 10 244386 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 10 244387 -NCIT:C7192 Grade 3b Follicular Lymphoma 9 244388 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 10 244389 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 10 244390 -NCIT:C8073 Ann Arbor Stage I Grade 3 Follicular Lymphoma 9 244391 -NCIT:C8119 Ann Arbor Stage II Grade 3 Follicular Lymphoma 9 244392 -NCIT:C8470 Ann Arbor Stage II Grade 3 Contiguous Follicular Lymphoma 10 244393 -NCIT:C9196 Ann Arbor Stage II Grade 3 Non-Contiguous Follicular Lymphoma 10 244394 -NCIT:C8132 Ann Arbor Stage III Grade 3 Follicular Lymphoma 9 244395 -NCIT:C8145 Ann Arbor Stage IV Grade 3 Follicular Lymphoma 9 244396 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 9 244397 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 10 244398 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 10 244399 -NCIT:C36081 Diffuse Large B-Cell Lymphoma Activated B-Cell Type 8 244400 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 9 244401 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 9 244402 -NCIT:C4337 Mantle Cell Lymphoma 8 244403 -NCIT:C141257 Mantle Cell Lymphoma by Ann Arbor Stage 9 244404 -NCIT:C8465 Ann Arbor Stage I Mantle Cell Lymphoma 10 244405 -NCIT:C8483 Ann Arbor Stage III Mantle Cell Lymphoma 10 244406 -NCIT:C8486 Ann Arbor Stage IV Mantle Cell Lymphoma 10 244407 -NCIT:C9202 Ann Arbor Stage II Mantle Cell Lymphoma 10 244408 -NCIT:C8473 Ann Arbor Stage II Contiguous Mantle Cell Lymphoma 11 244409 -NCIT:C9198 Ann Arbor Stage II Non-Contiguous Mantle Cell Lymphoma 11 244410 -NCIT:C161604 Prostate Mantle Cell Lymphoma 9 244411 -NCIT:C181210 Parotid Gland Mantle Cell Lymphoma 9 244412 -NCIT:C188080 Tonsillar Mantle Cell Lymphoma 9 244413 -NCIT:C27440 Gastric Mantle Cell Lymphoma 9 244414 -NCIT:C27441 Small Intestinal Mantle Cell Lymphoma 9 244415 -NCIT:C39747 Pleomorphic Variant Mantle Cell Lymphoma 9 244416 -NCIT:C45266 Cutaneous Mantle Cell Lymphoma 9 244417 -NCIT:C7229 Blastoid Variant Mantle Cell Lymphoma 9 244418 -NCIT:C7306 Splenic Mantle Cell Lymphoma 9 244419 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 9 244420 -NCIT:C8862 Refractory Mantle Cell Lymphoma 9 244421 -NCIT:C96505 Colorectal Mantle Cell Lymphoma 9 244422 -NCIT:C27411 Colon Mantle Cell Lymphoma 10 244423 -NCIT:C45194 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 8 244424 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 244425 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 244426 -NCIT:C45231 Diffuse Large B-Cell Lymphoma Unclassifiable 8 244427 -NCIT:C7212 AIDS-Related Diffuse Large B-cell Lymphoma 8 244428 -NCIT:C27858 AIDS-Related Diffuse Large B-Cell Lymphoma Arising in HHV8-Positive Multicentric Castleman Disease 9 244429 -NCIT:C27859 AIDS-Related Plasmablastic Lymphoma 9 244430 -NCIT:C38160 AIDS-Related Plasmablastic Lymphoma of Mucosa Site 10 244431 -NCIT:C9016 AIDS-Related Plasmablastic Lymphoma of the Oral Mucosa 11 244432 -NCIT:C8285 AIDS-Related Immunoblastic Lymphoma 9 244433 -NCIT:C9017 AIDS-Related Primary Effusion Lymphoma 9 244434 -NCIT:C7246 Diffuse Large B-Cell Lymphoma Post-Transplant Lymphoproliferative Disorder 8 244435 -NCIT:C7247 Anaplastic Lymphoma Post-Transplant Lymphoproliferative Disorder 9 244436 -NCIT:C7248 Centroblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 9 244437 -NCIT:C7249 Immunoblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 9 244438 -NCIT:C7933 Grade III Lymphomatoid Granulomatosis 8 244439 -NCIT:C115150 Adult Grade III Lymphomatoid Granulomatosis 9 244440 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 244441 -NCIT:C115204 Childhood Grade III Lymphomatoid Granulomatosis 9 244442 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 10 244443 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 9 244444 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 244445 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 10 244446 -NCIT:C8868 B Lymphoblastic Lymphoma 8 244447 -NCIT:C141250 B Lymphoblastic Lymphoma by Ann Arbor Stage 9 244448 -NCIT:C8871 Ann Arbor Stage I B Lymphoblastic Lymphoma 10 244449 -NCIT:C8872 Ann Arbor Stage III B Lymphoblastic Lymphoma 10 244450 -NCIT:C8873 Ann Arbor Stage IV B Lymphoblastic Lymphoma 10 244451 -NCIT:C8937 Ann Arbor Stage II B Lymphoblastic Lymphoma 10 244452 -NCIT:C7209 Childhood B Lymphoblastic Lymphoma 9 244453 -NCIT:C7310 Splenic B Lymphoblastic Lymphoma 9 244454 -NCIT:C7338 Adult B Lymphoblastic Lymphoma 9 244455 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 9 244456 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 9 244457 -NCIT:C178547 Aggressive T-Cell Non-Hodgkin Lymphoma 7 244458 -NCIT:C150495 Intestinal T-Cell Lymphoma 8 244459 -NCIT:C150505 Intestinal T-Cell Lymphoma, Not Otherwise Specified 9 244460 -NCIT:C4737 Enteropathy-Associated T-Cell Lymphoma 9 244461 -NCIT:C141295 Enteropathy-Associated T-Cell Lymphoma by Ann Arbor Stage 10 244462 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 11 244463 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 11 244464 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 11 244465 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 11 244466 -NCIT:C39610 Small Intestinal Enteropathy-Associated T-Cell Lymphoma 10 244467 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 10 244468 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 10 244469 -NCIT:C96058 Monomorphic Epitheliotropic Intestinal T-Cell Lymphoma 9 244470 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 244471 -NCIT:C150504 Small Intestinal Monomorphic Epitheliotropic T-Cell Lymphoma 10 244472 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 244473 -NCIT:C178554 Recurrent Aggressive T-Cell Non-Hodgkin Lymphoma 8 244474 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 244475 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 9 244476 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 244477 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 244478 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 9 244479 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 244480 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 244481 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 9 244482 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 9 244483 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 9 244484 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 9 244485 -NCIT:C178556 Refractory Aggressive T-Cell Non-Hodgkin Lymphoma 8 244486 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 9 244487 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 244488 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 244489 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 244490 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 244491 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 9 244492 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 9 244493 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 9 244494 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 9 244495 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 9 244496 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 244497 -NCIT:C3184 Adult T-Cell Leukemia/Lymphoma 8 244498 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 9 244499 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 10 244500 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 10 244501 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 10 244502 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 10 244503 -NCIT:C36265 Acute Adult T-Cell Leukemia/Lymphoma 9 244504 -NCIT:C36266 Lymphomatous Adult T-Cell Leukemia/Lymphoma 9 244505 -NCIT:C36268 Hodgkin-Like Adult T-Cell Leukemia/Lymphoma 9 244506 -NCIT:C45272 Cutaneous Adult T-Cell Leukemia/Lymphoma 9 244507 -NCIT:C7178 Smoldering Adult T-Cell Leukemia/Lymphoma 9 244508 -NCIT:C7179 Chronic Adult T-Cell Leukemia/Lymphoma 9 244509 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 9 244510 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 9 244511 -NCIT:C37194 Anaplastic Large Cell Lymphoma, ALK-Negative 8 244512 -NCIT:C129599 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Negative 9 244513 -NCIT:C139012 Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 244514 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 244515 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 244516 -NCIT:C37196 Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Negative 9 244517 -NCIT:C4340 Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 244518 -NCIT:C139288 Primary EBV-Positive Nodal T-Cell or NK-Cell Lymphoma 9 244519 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 244520 -NCIT:C188459 Childhood Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 244521 -NCIT:C7205 Lymphoepithelioid Variant Peripheral T-Cell Lymphoma 9 244522 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 9 244523 -NCIT:C45339 Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 8 244524 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 244525 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 244526 -NCIT:C45340 Primary Cutaneous Gamma-Delta T-Cell Lymphoma 8 244527 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 244528 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 244529 -NCIT:C4684 Nasal Type Extranodal NK/T-Cell Lymphoma 8 244530 -NCIT:C115154 Adult Nasal Type Extranodal NK/T-Cell Lymphoma 9 244531 -NCIT:C141296 Nasal Type NK/T-Cell Lymphoma by Ann Arbor Stage 9 244532 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 10 244533 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 10 244534 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 10 244535 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 10 244536 -NCIT:C162468 Testicular Nasal Type Extranodal NK/T-Cell Lymphoma 9 244537 -NCIT:C173172 Sinonasal Extranodal NK/T-Cell Lymphoma 9 244538 -NCIT:C173173 Nasal Cavity Extranodal NK/T-Cell Lymphoma 10 244539 -NCIT:C45268 Cutaneous Nasal Type Extranodal NK/T-Cell Lymphoma 9 244540 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 9 244541 -NCIT:C68692 Childhood Nasal Type Extranodal NK/T-Cell Lymphoma 9 244542 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 9 244543 -NCIT:C6919 T Lymphoblastic Lymphoma 8 244544 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 9 244545 -NCIT:C45740 Mediastinal T Lymphoblastic Lymphoma 9 244546 -NCIT:C7210 Childhood T Lymphoblastic Lymphoma 9 244547 -NCIT:C7226 Adult T Lymphoblastic Lymphoma 9 244548 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 9 244549 -NCIT:C7311 Splenic T Lymphoblastic Lymphoma 9 244550 -NCIT:C7528 Angioimmunoblastic T-Cell Lymphoma 8 244551 -NCIT:C141294 Angioimmunoblastic T-Cell Lymphoma by Ann Arbor Stage 9 244552 -NCIT:C8672 Ann Arbor Stage I Angioimmunoblastic T-Cell Lymphoma 10 244553 -NCIT:C8677 Ann Arbor Stage II Angioimmunoblastic T-Cell Lymphoma 10 244554 -NCIT:C8678 Ann Arbor Stage III Angioimmunoblastic T-Cell Lymphoma 10 244555 -NCIT:C8679 Ann Arbor Stage IV Angioimmunoblastic T-Cell Lymphoma 10 244556 -NCIT:C45271 Cutaneous Angioimmunoblastic T-Cell Lymphoma 9 244557 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 9 244558 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 9 244559 -NCIT:C8459 Hepatosplenic T-Cell Lymphoma 8 244560 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 9 244561 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 9 244562 -NCIT:C8492 Aggressive Adult Non-Hodgkin Lymphoma 7 244563 -NCIT:C115150 Adult Grade III Lymphomatoid Granulomatosis 8 244564 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 9 244565 -NCIT:C115154 Adult Nasal Type Extranodal NK/T-Cell Lymphoma 8 244566 -NCIT:C3184 Adult T-Cell Leukemia/Lymphoma 8 244567 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 9 244568 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 10 244569 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 10 244570 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 10 244571 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 10 244572 -NCIT:C36265 Acute Adult T-Cell Leukemia/Lymphoma 9 244573 -NCIT:C36266 Lymphomatous Adult T-Cell Leukemia/Lymphoma 9 244574 -NCIT:C36268 Hodgkin-Like Adult T-Cell Leukemia/Lymphoma 9 244575 -NCIT:C45272 Cutaneous Adult T-Cell Leukemia/Lymphoma 9 244576 -NCIT:C7178 Smoldering Adult T-Cell Leukemia/Lymphoma 9 244577 -NCIT:C7179 Chronic Adult T-Cell Leukemia/Lymphoma 9 244578 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 9 244579 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 9 244580 -NCIT:C68686 Ann Arbor Stage II Aggressive Adult Non-Hodgkin Lymphoma 8 244581 -NCIT:C8125 Ann Arbor Stage II Adult Lymphoblastic Lymphoma 9 244582 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 10 244583 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 10 244584 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 9 244585 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 10 244586 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 10 244587 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 9 244588 -NCIT:C8472 Ann Arbor Stage II Contiguous Adult Aggressive Non-Hodgkin Lymphoma 9 244589 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 10 244590 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 10 244591 -NCIT:C8479 Ann Arbor Stage II Non-Contiguous Aggressive Adult Non-Hodgkin Lymphoma 9 244592 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 10 244593 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 10 244594 -NCIT:C8484 Ann Arbor Stage III Aggressive Adult Non-Hodgkin Lymphoma 8 244595 -NCIT:C8138 Ann Arbor Stage III Adult Lymphoblastic Lymphoma 9 244596 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 9 244597 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 9 244598 -NCIT:C8487 Ann Arbor Stage IV Aggressive Adult Non-Hodgkin Lymphoma 8 244599 -NCIT:C8151 Ann Arbor Stage IV Adult Lymphoblastic Lymphoma 9 244600 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 9 244601 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 9 244602 -NCIT:C8490 Recurrent Aggressive Adult Non-Hodgkin Lymphoma 8 244603 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 9 244604 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 9 244605 -NCIT:C8164 Recurrent Adult Lymphoblastic Lymphoma 9 244606 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 9 244607 -NCIT:C9062 Adult Burkitt Lymphoma 8 244608 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 9 244609 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 9 244610 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 10 244611 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 10 244612 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 9 244613 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 9 244614 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 9 244615 -NCIT:C9252 Ann Arbor Stage I Aggressive Adult Non-Hodgkin Lymphoma 8 244616 -NCIT:C8079 Ann Arbor Stage I Adult Lymphoblastic Lymphoma 9 244617 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 9 244618 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 9 244619 -NCIT:C9361 Adult Lymphoblastic Lymphoma 8 244620 -NCIT:C7226 Adult T Lymphoblastic Lymphoma 9 244621 -NCIT:C7338 Adult B Lymphoblastic Lymphoma 9 244622 -NCIT:C8079 Ann Arbor Stage I Adult Lymphoblastic Lymphoma 9 244623 -NCIT:C8125 Ann Arbor Stage II Adult Lymphoblastic Lymphoma 9 244624 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 10 244625 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 10 244626 -NCIT:C8138 Ann Arbor Stage III Adult Lymphoblastic Lymphoma 9 244627 -NCIT:C8151 Ann Arbor Stage IV Adult Lymphoblastic Lymphoma 9 244628 -NCIT:C8164 Recurrent Adult Lymphoblastic Lymphoma 9 244629 -NCIT:C7294 Splenic Non-Hodgkin Lymphoma 5 244630 -NCIT:C4663 Splenic Marginal Zone Lymphoma 6 244631 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 7 244632 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 7 244633 -NCIT:C7307 Splenic Follicular Lymphoma 6 244634 -NCIT:C7308 Splenic Diffuse Large B-Cell Lymphoma 6 244635 -NCIT:C7309 Splenic Burkitt Lymphoma 6 244636 -NCIT:C80309 Splenic Diffuse Red Pulp Small B-Cell Lymphoma 6 244637 -NCIT:C8459 Hepatosplenic T-Cell Lymphoma 6 244638 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 7 244639 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 7 244640 -NCIT:C7704 Adult Non-Hodgkin Lymphoma 5 244641 -NCIT:C114784 Non-Hodgkin Lymphoma During Pregnancy 6 244642 -NCIT:C141158 Lugano Classification Adult Non-Hodgkin Lymphoma by AJCC v8 Stage 6 244643 -NCIT:C141159 Lugano Classification Limited Stage Adult Non-Hodgkin Lymphoma AJCC v8 7 244644 -NCIT:C141160 Lugano Classification Stage I Adult Non-Hodgkin Lymphoma AJCC v8 8 244645 -NCIT:C141161 Lugano Classification Stage IE Adult Non-Hodgkin Lymphoma AJCC v8 8 244646 -NCIT:C141162 Lugano Classification Stage II Adult Non-Hodgkin Lymphoma AJCC v8 8 244647 -NCIT:C141164 Lugano Classification Stage II Bulky Adult Non-Hodgkin Lymphoma AJCC v8 9 244648 -NCIT:C141163 Lugano Classification Stage IIE Adult Non-Hodgkin Lymphoma AJCC v8 8 244649 -NCIT:C141165 Lugano Classification Advanced Stage Adult Non-Hodgkin Lymphoma AJCC v8 7 244650 -NCIT:C141166 Lugano Classification Stage III Adult Non-Hodgkin Lymphoma AJCC v8 8 244651 -NCIT:C141167 Lugano Classification Stage IV Adult Non-Hodgkin Lymphoma AJCC v8 8 244652 -NCIT:C141235 Adult Non-Hodgkin Lymphoma by Ann Arbor Stage 6 244653 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 7 244654 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 8 244655 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 8 244656 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 8 244657 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 8 244658 -NCIT:C8102 Ann Arbor Stage I Adult Non-Hodgkin Lymphoma 7 244659 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 8 244660 -NCIT:C8464 Ann Arbor Stage I Indolent Adult Non-Hodgkin Lymphoma 8 244661 -NCIT:C9252 Ann Arbor Stage I Aggressive Adult Non-Hodgkin Lymphoma 8 244662 -NCIT:C8079 Ann Arbor Stage I Adult Lymphoblastic Lymphoma 9 244663 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 9 244664 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 9 244665 -NCIT:C8103 Ann Arbor Stage II Adult Non-Hodgkin Lymphoma 7 244666 -NCIT:C68686 Ann Arbor Stage II Aggressive Adult Non-Hodgkin Lymphoma 8 244667 -NCIT:C8125 Ann Arbor Stage II Adult Lymphoblastic Lymphoma 9 244668 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 10 244669 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 10 244670 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 9 244671 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 10 244672 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 10 244673 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 9 244674 -NCIT:C8472 Ann Arbor Stage II Contiguous Adult Aggressive Non-Hodgkin Lymphoma 9 244675 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 10 244676 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 10 244677 -NCIT:C8479 Ann Arbor Stage II Non-Contiguous Aggressive Adult Non-Hodgkin Lymphoma 9 244678 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 10 244679 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 10 244680 -NCIT:C68688 Ann Arbor Stage II Indolent Adult Non-Hodgkin Lymphoma 8 244681 -NCIT:C8467 Ann Arbor Stage II Contiguous Adult Indolent Non-Hodgkin Lymphoma 9 244682 -NCIT:C8478 Ann Arbor Stage II Non-Contiguous Adult Indolent Non-Hodgkin Lymphoma 9 244683 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 8 244684 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 9 244685 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 9 244686 -NCIT:C8466 Ann Arbor Stage II Contiguous Adult Non-Hodgkin Lymphoma 8 244687 -NCIT:C8467 Ann Arbor Stage II Contiguous Adult Indolent Non-Hodgkin Lymphoma 9 244688 -NCIT:C8472 Ann Arbor Stage II Contiguous Adult Aggressive Non-Hodgkin Lymphoma 9 244689 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 10 244690 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 10 244691 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 9 244692 -NCIT:C8477 Ann Arbor Stage II Non-Contiguous Adult Non-Hodgkin Lymphoma 8 244693 -NCIT:C8478 Ann Arbor Stage II Non-Contiguous Adult Indolent Non-Hodgkin Lymphoma 9 244694 -NCIT:C8479 Ann Arbor Stage II Non-Contiguous Aggressive Adult Non-Hodgkin Lymphoma 9 244695 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 10 244696 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 10 244697 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 9 244698 -NCIT:C8104 Ann Arbor Stage III Adult Non-Hodgkin Lymphoma 7 244699 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 8 244700 -NCIT:C8482 Ann Arbor Stage III Indolent Adult Non-Hodgkin Lymphoma 8 244701 -NCIT:C8484 Ann Arbor Stage III Aggressive Adult Non-Hodgkin Lymphoma 8 244702 -NCIT:C8138 Ann Arbor Stage III Adult Lymphoblastic Lymphoma 9 244703 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 9 244704 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 9 244705 -NCIT:C8105 Ann Arbor Stage IV Adult Non-Hodgkin Lymphoma 7 244706 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 8 244707 -NCIT:C8485 Ann Arbor Stage IV Indolent Adult Non-Hodgkin Lymphoma 8 244708 -NCIT:C8487 Ann Arbor Stage IV Aggressive Adult Non-Hodgkin Lymphoma 8 244709 -NCIT:C8151 Ann Arbor Stage IV Adult Lymphoblastic Lymphoma 9 244710 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 9 244711 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 9 244712 -NCIT:C27367 Adult Anaplastic Large Cell Lymphoma 6 244713 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 7 244714 -NCIT:C27366 Adult Systemic Anaplastic Large Cell Lymphoma 7 244715 -NCIT:C7615 Adult Diffuse Large B-Cell Lymphoma 6 244716 -NCIT:C115150 Adult Grade III Lymphomatoid Granulomatosis 7 244717 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 8 244718 -NCIT:C188457 Adult EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 7 244719 -NCIT:C7873 Adult Immunoblastic Lymphoma 7 244720 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 8 244721 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 8 244722 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 9 244723 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 9 244724 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 8 244725 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 8 244726 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 8 244727 -NCIT:C8098 Recurrent Adult Non-Hodgkin Lymphoma 6 244728 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 7 244729 -NCIT:C8488 Recurrent Indolent Adult Non-Hodgkin Lymphoma 7 244730 -NCIT:C8490 Recurrent Aggressive Adult Non-Hodgkin Lymphoma 7 244731 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 8 244732 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 8 244733 -NCIT:C8164 Recurrent Adult Lymphoblastic Lymphoma 8 244734 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 8 244735 -NCIT:C8491 Indolent Adult Non-Hodgkin Lymphoma 6 244736 -NCIT:C148175 Refractory Indolent Adult Non-Hodgkin Lymphoma 7 244737 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 7 244738 -NCIT:C68688 Ann Arbor Stage II Indolent Adult Non-Hodgkin Lymphoma 7 244739 -NCIT:C8467 Ann Arbor Stage II Contiguous Adult Indolent Non-Hodgkin Lymphoma 8 244740 -NCIT:C8478 Ann Arbor Stage II Non-Contiguous Adult Indolent Non-Hodgkin Lymphoma 8 244741 -NCIT:C8464 Ann Arbor Stage I Indolent Adult Non-Hodgkin Lymphoma 7 244742 -NCIT:C8482 Ann Arbor Stage III Indolent Adult Non-Hodgkin Lymphoma 7 244743 -NCIT:C8485 Ann Arbor Stage IV Indolent Adult Non-Hodgkin Lymphoma 7 244744 -NCIT:C8488 Recurrent Indolent Adult Non-Hodgkin Lymphoma 7 244745 -NCIT:C8492 Aggressive Adult Non-Hodgkin Lymphoma 6 244746 -NCIT:C115150 Adult Grade III Lymphomatoid Granulomatosis 7 244747 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 8 244748 -NCIT:C115154 Adult Nasal Type Extranodal NK/T-Cell Lymphoma 7 244749 -NCIT:C3184 Adult T-Cell Leukemia/Lymphoma 7 244750 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 8 244751 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 9 244752 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 9 244753 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 9 244754 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 9 244755 -NCIT:C36265 Acute Adult T-Cell Leukemia/Lymphoma 8 244756 -NCIT:C36266 Lymphomatous Adult T-Cell Leukemia/Lymphoma 8 244757 -NCIT:C36268 Hodgkin-Like Adult T-Cell Leukemia/Lymphoma 8 244758 -NCIT:C45272 Cutaneous Adult T-Cell Leukemia/Lymphoma 8 244759 -NCIT:C7178 Smoldering Adult T-Cell Leukemia/Lymphoma 8 244760 -NCIT:C7179 Chronic Adult T-Cell Leukemia/Lymphoma 8 244761 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 8 244762 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 8 244763 -NCIT:C68686 Ann Arbor Stage II Aggressive Adult Non-Hodgkin Lymphoma 7 244764 -NCIT:C8125 Ann Arbor Stage II Adult Lymphoblastic Lymphoma 8 244765 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 9 244766 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 9 244767 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 8 244768 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 9 244769 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 9 244770 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 8 244771 -NCIT:C8472 Ann Arbor Stage II Contiguous Adult Aggressive Non-Hodgkin Lymphoma 8 244772 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 9 244773 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 9 244774 -NCIT:C8479 Ann Arbor Stage II Non-Contiguous Aggressive Adult Non-Hodgkin Lymphoma 8 244775 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 9 244776 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 9 244777 -NCIT:C8484 Ann Arbor Stage III Aggressive Adult Non-Hodgkin Lymphoma 7 244778 -NCIT:C8138 Ann Arbor Stage III Adult Lymphoblastic Lymphoma 8 244779 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 8 244780 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 8 244781 -NCIT:C8487 Ann Arbor Stage IV Aggressive Adult Non-Hodgkin Lymphoma 7 244782 -NCIT:C8151 Ann Arbor Stage IV Adult Lymphoblastic Lymphoma 8 244783 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 8 244784 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 8 244785 -NCIT:C8490 Recurrent Aggressive Adult Non-Hodgkin Lymphoma 7 244786 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 8 244787 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 8 244788 -NCIT:C8164 Recurrent Adult Lymphoblastic Lymphoma 8 244789 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 8 244790 -NCIT:C9062 Adult Burkitt Lymphoma 7 244791 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 8 244792 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 8 244793 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 9 244794 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 9 244795 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 8 244796 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 8 244797 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 8 244798 -NCIT:C9252 Ann Arbor Stage I Aggressive Adult Non-Hodgkin Lymphoma 7 244799 -NCIT:C8079 Ann Arbor Stage I Adult Lymphoblastic Lymphoma 8 244800 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 8 244801 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 8 244802 -NCIT:C9361 Adult Lymphoblastic Lymphoma 7 244803 -NCIT:C7226 Adult T Lymphoblastic Lymphoma 8 244804 -NCIT:C7338 Adult B Lymphoblastic Lymphoma 8 244805 -NCIT:C8079 Ann Arbor Stage I Adult Lymphoblastic Lymphoma 8 244806 -NCIT:C8125 Ann Arbor Stage II Adult Lymphoblastic Lymphoma 8 244807 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 9 244808 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 9 244809 -NCIT:C8138 Ann Arbor Stage III Adult Lymphoblastic Lymphoma 8 244810 -NCIT:C8151 Ann Arbor Stage IV Adult Lymphoblastic Lymphoma 8 244811 -NCIT:C8164 Recurrent Adult Lymphoblastic Lymphoma 8 244812 -NCIT:C7706 Childhood Non-Hodgkin Lymphoma 5 244813 -NCIT:C115369 Recurrent Childhood Non-Hodgkin Lymphoma 6 244814 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 7 244815 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 7 244816 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 7 244817 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 7 244818 -NCIT:C123394 Childhood Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 6 244819 -NCIT:C141217 St. Jude Childhood Non-Hodgkin Lymphoma by AJCC v8 Stage 6 244820 -NCIT:C141218 St. Jude Stage I Childhood Non-Hodgkin Lymphoma AJCC v8 7 244821 -NCIT:C141219 St. Jude Stage II Childhood Non-Hodgkin Lymphoma AJCC v8 7 244822 -NCIT:C141220 St. Jude Stage III Childhood Non-Hodgkin Lymphoma AJCC v8 7 244823 -NCIT:C141221 St. Jude Stage IV Childhood Non-Hodgkin Lymphoma AJCC v8 7 244824 -NCIT:C141236 Childhood Non-Hodgkin Lymphoma by Ann Arbor Stage 6 244825 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 7 244826 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 244827 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 244828 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 244829 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 244830 -NCIT:C94791 Ann Arbor Stage I Childhood Non-Hodgkin Lymphoma 7 244831 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 244832 -NCIT:C9056 Ann Arbor Stage I Childhood Lymphoblastic Lymphoma 8 244833 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 8 244834 -NCIT:C94792 Ann Arbor Stage II Childhood Non-Hodgkin Lymphoma 7 244835 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 244836 -NCIT:C9057 Ann Arbor Stage II Childhood Lymphoblastic Lymphoma 8 244837 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 8 244838 -NCIT:C94793 Ann Arbor Stage III Childhood Non-Hodgkin Lymphoma 7 244839 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 244840 -NCIT:C9058 Ann Arbor Stage III Childhood Lymphoblastic Lymphoma 8 244841 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 8 244842 -NCIT:C94794 Ann Arbor Stage IV Childhood Non-Hodgkin Lymphoma 7 244843 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 244844 -NCIT:C9059 Ann Arbor Stage IV Childhood Lymphoblastic Lymphoma 8 244845 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 8 244846 -NCIT:C188458 Childhood Large B-Cell Lymphoma with IRF4 Rearrangement 6 244847 -NCIT:C5637 Childhood Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 6 244848 -NCIT:C188459 Childhood Peripheral T-Cell Lymphoma, Not Otherwise Specified 7 244849 -NCIT:C5636 Childhood Anaplastic Large Cell Lymphoma 7 244850 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 8 244851 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 8 244852 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 244853 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 244854 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 244855 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 244856 -NCIT:C188460 Childhood Anaplastic Large Cell Lymphoma, ALK-Positive 8 244857 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 8 244858 -NCIT:C9471 Childhood Systemic Anaplastic Large Cell Lymphoma 8 244859 -NCIT:C68692 Childhood Nasal Type Extranodal NK/T-Cell Lymphoma 7 244860 -NCIT:C80374 Systemic EBV-Positive T-Cell Lymphoma of Childhood 7 244861 -NCIT:C7616 Childhood Diffuse Large B-Cell Lymphoma 6 244862 -NCIT:C115204 Childhood Grade III Lymphomatoid Granulomatosis 7 244863 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 8 244864 -NCIT:C188455 Childhood Primary Mediastinal (Thymic) Large B-Cell Lymphoma 7 244865 -NCIT:C188456 Childhood EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 7 244866 -NCIT:C9079 Childhood Immunoblastic Lymphoma 7 244867 -NCIT:C80299 Pediatric Nodal Marginal Zone Lymphoma 6 244868 -NCIT:C9095 Childhood Burkitt Lymphoma 6 244869 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 7 244870 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 7 244871 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 7 244872 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 7 244873 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 7 244874 -NCIT:C9124 Childhood Lymphoblastic Lymphoma 6 244875 -NCIT:C7209 Childhood B Lymphoblastic Lymphoma 7 244876 -NCIT:C7210 Childhood T Lymphoblastic Lymphoma 7 244877 -NCIT:C9056 Ann Arbor Stage I Childhood Lymphoblastic Lymphoma 7 244878 -NCIT:C9057 Ann Arbor Stage II Childhood Lymphoblastic Lymphoma 7 244879 -NCIT:C9058 Ann Arbor Stage III Childhood Lymphoblastic Lymphoma 7 244880 -NCIT:C9059 Ann Arbor Stage IV Childhood Lymphoblastic Lymphoma 7 244881 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 7 244882 -NCIT:C8594 Leukemic Phase of Lymphoma 5 244883 -NCIT:C138192 Leukemic Nonnodal Mantle Cell Lymphoma 6 244884 -NCIT:C3366 Sezary Syndrome 6 244885 -NCIT:C176999 Recurrent Sezary Syndrome 7 244886 -NCIT:C177000 Refractory Sezary Syndrome 7 244887 -NCIT:C36265 Acute Adult T-Cell Leukemia/Lymphoma 6 244888 -NCIT:C7178 Smoldering Adult T-Cell Leukemia/Lymphoma 6 244889 -NCIT:C7179 Chronic Adult T-Cell Leukemia/Lymphoma 6 244890 -NCIT:C8701 Refractory Non-Hodgkin Lymphoma 5 244891 -NCIT:C140091 Refractory Transformed Non-Hodgkin Lymphoma 6 244892 -NCIT:C158150 Refractory Transformed B-Cell Non-Hodgkin Lymphoma 7 244893 -NCIT:C160240 Refractory Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 8 244894 -NCIT:C186484 Refractory Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 8 244895 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 9 244896 -NCIT:C165791 Refractory Transformed T-cell Non-Hodgkin Lymphoma 7 244897 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 8 244898 -NCIT:C146989 Refractory Central Nervous System Non-Hodgkin Lymphoma 6 244899 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 7 244900 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 244901 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 7 244902 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 244903 -NCIT:C151978 Refractory Lymphoblastic Lymphoma 6 244904 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 7 244905 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 7 244906 -NCIT:C156233 Refractory Aggressive Non-Hodgkin Lymphoma 6 244907 -NCIT:C178555 Refractory Aggressive B-Cell Non-Hodgkin Lymphoma 7 244908 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 8 244909 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 8 244910 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 8 244911 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 9 244912 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 9 244913 -NCIT:C8847 Refractory Burkitt Lymphoma 8 244914 -NCIT:C8862 Refractory Mantle Cell Lymphoma 8 244915 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 8 244916 -NCIT:C178556 Refractory Aggressive T-Cell Non-Hodgkin Lymphoma 7 244917 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 8 244918 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 8 244919 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 8 244920 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 8 244921 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 8 244922 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 8 244923 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 8 244924 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 8 244925 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 8 244926 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 8 244927 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 244928 -NCIT:C173046 Refractory Indolent Non-Hodgkin Lymphoma 6 244929 -NCIT:C148175 Refractory Indolent Adult Non-Hodgkin Lymphoma 7 244930 -NCIT:C183514 Refractory Indolent B-Cell Non-Hodgkin Lymphoma 7 244931 -NCIT:C143085 Refractory Marginal Zone Lymphoma 8 244932 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 9 244933 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 244934 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 9 244935 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 8 244936 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 8 244937 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 8 244938 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 9 244939 -NCIT:C183515 Refractory Indolent T-Cell Non-Hodgkin Lymphoma 7 244940 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 8 244941 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 8 244942 -NCIT:C8687 Refractory Mycosis Fungoides 8 244943 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 9 244944 -NCIT:C8664 Refractory T-Cell Non-Hodgkin Lymphoma 6 244945 -NCIT:C178556 Refractory Aggressive T-Cell Non-Hodgkin Lymphoma 7 244946 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 8 244947 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 8 244948 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 8 244949 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 8 244950 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 8 244951 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 8 244952 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 8 244953 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 8 244954 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 8 244955 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 8 244956 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 244957 -NCIT:C183515 Refractory Indolent T-Cell Non-Hodgkin Lymphoma 7 244958 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 8 244959 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 8 244960 -NCIT:C8687 Refractory Mycosis Fungoides 8 244961 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 9 244962 -NCIT:C8689 Refractory Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 7 244963 -NCIT:C148129 Refractory Mycosis Fungoides and Sezary Syndrome 8 244964 -NCIT:C177000 Refractory Sezary Syndrome 9 244965 -NCIT:C8687 Refractory Mycosis Fungoides 9 244966 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 244967 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 8 244968 -NCIT:C157690 Refractory NK-Cell Lymphoma, Unclassifiable 8 244969 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 8 244970 -NCIT:C165791 Refractory Transformed T-cell Non-Hodgkin Lymphoma 8 244971 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 9 244972 -NCIT:C168779 Refractory Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 8 244973 -NCIT:C168781 Refractory Follicular T-Cell Lymphoma 8 244974 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 8 244975 -NCIT:C8658 Refractory Anaplastic Large Cell Lymphoma 8 244976 -NCIT:C162689 Refractory Systemic Anaplastic Large Cell Lymphoma 9 244977 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 244978 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 244979 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 244980 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 8 244981 -NCIT:C8671 Refractory Angioimmunoblastic T-Cell Lymphoma 8 244982 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 8 244983 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 244984 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 244985 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 244986 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 244987 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 244988 -NCIT:C8687 Refractory Mycosis Fungoides 9 244989 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 244990 -NCIT:C9339 Refractory Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 244991 -NCIT:C8842 Refractory B-Cell Non-Hodgkin Lymphoma 6 244992 -NCIT:C178555 Refractory Aggressive B-Cell Non-Hodgkin Lymphoma 7 244993 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 8 244994 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 8 244995 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 8 244996 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 9 244997 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 9 244998 -NCIT:C8847 Refractory Burkitt Lymphoma 8 244999 -NCIT:C8862 Refractory Mantle Cell Lymphoma 8 245000 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 8 245001 -NCIT:C183514 Refractory Indolent B-Cell Non-Hodgkin Lymphoma 7 245002 -NCIT:C143085 Refractory Marginal Zone Lymphoma 8 245003 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 9 245004 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 245005 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 9 245006 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 8 245007 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 8 245008 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 8 245009 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 9 245010 -NCIT:C7228 Refractory Mature B-Cell Non-Hodgkin Lymphoma 7 245011 -NCIT:C143085 Refractory Marginal Zone Lymphoma 8 245012 -NCIT:C4997 Refractory Nodal Marginal Zone Lymphoma 9 245013 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 245014 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 9 245015 -NCIT:C158150 Refractory Transformed B-Cell Non-Hodgkin Lymphoma 8 245016 -NCIT:C160240 Refractory Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 9 245017 -NCIT:C186484 Refractory Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 9 245018 -NCIT:C175217 Refractory Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 10 245019 -NCIT:C8652 Refractory Lymphoplasmacytic Lymphoma 8 245020 -NCIT:C142149 Refractory Waldenstrom Macroglobulinemia 9 245021 -NCIT:C8846 Refractory Small Lymphocytic Lymphoma 8 245022 -NCIT:C8847 Refractory Burkitt Lymphoma 8 245023 -NCIT:C8853 Refractory Diffuse Large B-Cell Lymphoma 8 245024 -NCIT:C138018 Refractory Extranodal Diffuse Large B-cell Lymphoma 9 245025 -NCIT:C138026 Refractory Intravascular Large B-Cell Lymphoma 9 245026 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 245027 -NCIT:C153332 Refractory EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 245028 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 245029 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 245030 -NCIT:C157678 Refractory T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 9 245031 -NCIT:C157680 Refractory Primary Effusion Lymphoma 9 245032 -NCIT:C157684 Refractory Plasmablastic Lymphoma 9 245033 -NCIT:C160233 Refractory High Grade B-Cell Lymphoma 9 245034 -NCIT:C151979 Refractory High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 10 245035 -NCIT:C162453 Refractory High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 10 245036 -NCIT:C188789 Refractory High Grade B-Cell Lymphoma, Not Otherwise Specified 10 245037 -NCIT:C165241 Refractory Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 245038 -NCIT:C160238 Refractory Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 10 245039 -NCIT:C160239 Refractory Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 245040 -NCIT:C182034 Refractory Immunoblastic Lymphoma 10 245041 -NCIT:C8927 Refractory Centroblastic Lymphoma 10 245042 -NCIT:C183142 Refractory Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 9 245043 -NCIT:C188791 Refractory ALK-Positive Large B-Cell Lymphoma 9 245044 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 245045 -NCIT:C8858 Refractory Follicular Lymphoma 8 245046 -NCIT:C172309 Refractory Grade 1 Follicular Lymphoma 9 245047 -NCIT:C172312 Refractory Grade 2 Follicular Lymphoma 9 245048 -NCIT:C172314 Refractory Grade 3 Follicular Lymphoma 9 245049 -NCIT:C172315 Refractory Grade 3a Follicular Lymphoma 10 245050 -NCIT:C172318 Refractory Grade 3b Follicular Lymphoma 10 245051 -NCIT:C8862 Refractory Mantle Cell Lymphoma 8 245052 -NCIT:C88145 Ocular Adnexal Non-Hodgkin Lymphoma 5 245053 -NCIT:C175432 Conjunctival Non-Hodgkin Lymphoma 6 245054 -NCIT:C175430 Conjunctival Follicular Lymphoma 7 245055 -NCIT:C175431 Conjunctival Mucosa-Associated Lymphoid Tissue Lymphoma 7 245056 -NCIT:C175433 Conjunctival Diffuse Large B-Cell Lymphoma 7 245057 -NCIT:C175479 Lacrimal System Non-Hodgkin Lymphoma 6 245058 -NCIT:C175480 Lacrimal Gland Non-Hodgkin Lymphoma 7 245059 -NCIT:C175483 Lacrimal Gland Mucosa-Associated Lymphoid Tissue Lymphoma 8 245060 -NCIT:C175486 Lacrimal Gland Diffuse Large B-Cell Lymphoma 8 245061 -NCIT:C175488 Lacrimal Gland Follicular Lymphoma 8 245062 -NCIT:C175481 Lacrimal Drainage System Non-Hodgkin Lymphoma 7 245063 -NCIT:C175484 Lacrimal Drainage System Mucosa-Associated Lymphoid Tissue Lymphoma 8 245064 -NCIT:C175487 Lacrimal Drainage System Diffuse Large B-Cell Lymphoma 8 245065 -NCIT:C175482 Lacrimal System Mucosa-Associated Lymphoid Tissue Lymphoma 7 245066 -NCIT:C175483 Lacrimal Gland Mucosa-Associated Lymphoid Tissue Lymphoma 8 245067 -NCIT:C175484 Lacrimal Drainage System Mucosa-Associated Lymphoid Tissue Lymphoma 8 245068 -NCIT:C175485 Lacrimal System Diffuse Large B-Cell Lymphoma 7 245069 -NCIT:C175486 Lacrimal Gland Diffuse Large B-Cell Lymphoma 8 245070 -NCIT:C175487 Lacrimal Drainage System Diffuse Large B-Cell Lymphoma 8 245071 -NCIT:C35689 Ocular Adnexal Mucosa-Associated Lymphoid Tissue Lymphoma 6 245072 -NCIT:C175431 Conjunctival Mucosa-Associated Lymphoid Tissue Lymphoma 7 245073 -NCIT:C175482 Lacrimal System Mucosa-Associated Lymphoid Tissue Lymphoma 7 245074 -NCIT:C175483 Lacrimal Gland Mucosa-Associated Lymphoid Tissue Lymphoma 8 245075 -NCIT:C175484 Lacrimal Drainage System Mucosa-Associated Lymphoid Tissue Lymphoma 8 245076 -NCIT:C182357 Diffusion Restriction 7 245077 -NCIT:C44960 Chlamydia Psittaci-Associated Ocular Adnexal Mucosa-Associated Lymphoid Tissue Lymphoma 7 245078 -NCIT:C9184 Primary Intraocular Non-Hodgkin Lymphoma 5 245079 -NCIT:C157065 Primary Vitreoretinal Non-Hodgkin Lymphoma 6 245080 -NCIT:C157067 Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 7 245081 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 245082 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 245083 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 7 245084 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 245085 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 7 245086 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 245087 -NCIT:C4365 Primary Retinal Non-Hodgkin Lymphoma 7 245088 -NCIT:C175451 Primary Uveal Non-Hodgkin Lymphoma 6 245089 -NCIT:C175464 Primary Choroidal Non-Hodgkin Lymphoma 7 245090 -NCIT:C175466 Primary Ciliary Body Non-Hodgkin Lymphoma 7 245091 -NCIT:C175467 Primary Iris Non-Hodgkin Lymphoma 7 245092 -NCIT:C9251 Recurrent Non-Hodgkin Lymphoma 5 245093 -NCIT:C115369 Recurrent Childhood Non-Hodgkin Lymphoma 6 245094 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 7 245095 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 7 245096 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 7 245097 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 7 245098 -NCIT:C146990 Recurrent Central Nervous System Non-Hodgkin Lymphoma 6 245099 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 7 245100 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 245101 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 7 245102 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 245103 -NCIT:C156232 Recurrent Aggressive Non-Hodgkin Lymphoma 6 245104 -NCIT:C178553 Recurrent Aggressive B-Cell Non-Hodgkin Lymphoma 7 245105 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 8 245106 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 8 245107 -NCIT:C5008 Recurrent Burkitt Lymphoma 8 245108 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 9 245109 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 9 245110 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 8 245111 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 9 245112 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 9 245113 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 8 245114 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 9 245115 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 9 245116 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 8 245117 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 8 245118 -NCIT:C178554 Recurrent Aggressive T-Cell Non-Hodgkin Lymphoma 7 245119 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 8 245120 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 8 245121 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 245122 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 8 245123 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 8 245124 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 8 245125 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 8 245126 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 8 245127 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 8 245128 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 8 245129 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 8 245130 -NCIT:C8490 Recurrent Aggressive Adult Non-Hodgkin Lymphoma 7 245131 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 8 245132 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 8 245133 -NCIT:C8164 Recurrent Adult Lymphoblastic Lymphoma 8 245134 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 8 245135 -NCIT:C181796 Recurrent Indolent Non-Hodgkin Lymphoma 6 245136 -NCIT:C183512 Recurrent Indolent B-Cell Non-Hodgkin Lymphoma 7 245137 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 8 245138 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 9 245139 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 245140 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 9 245141 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 8 245142 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 8 245143 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 8 245144 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 9 245145 -NCIT:C183513 Recurrent Indolent T-Cell Non-Hodgkin Lymphoma 7 245146 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 8 245147 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 8 245148 -NCIT:C8686 Recurrent Mycosis Fungoides 8 245149 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 9 245150 -NCIT:C8488 Recurrent Indolent Adult Non-Hodgkin Lymphoma 7 245151 -NCIT:C8098 Recurrent Adult Non-Hodgkin Lymphoma 6 245152 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 7 245153 -NCIT:C8488 Recurrent Indolent Adult Non-Hodgkin Lymphoma 7 245154 -NCIT:C8490 Recurrent Aggressive Adult Non-Hodgkin Lymphoma 7 245155 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 8 245156 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 8 245157 -NCIT:C8164 Recurrent Adult Lymphoblastic Lymphoma 8 245158 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 8 245159 -NCIT:C8663 Recurrent T-Cell Non-Hodgkin Lymphoma 6 245160 -NCIT:C178554 Recurrent Aggressive T-Cell Non-Hodgkin Lymphoma 7 245161 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 8 245162 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 8 245163 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 245164 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 8 245165 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 8 245166 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 8 245167 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 8 245168 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 8 245169 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 8 245170 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 8 245171 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 8 245172 -NCIT:C183513 Recurrent Indolent T-Cell Non-Hodgkin Lymphoma 7 245173 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 8 245174 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 8 245175 -NCIT:C8686 Recurrent Mycosis Fungoides 8 245176 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 9 245177 -NCIT:C8688 Recurrent Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 7 245178 -NCIT:C115439 Recurrent Mycosis Fungoides and Sezary Syndrome 8 245179 -NCIT:C176999 Recurrent Sezary Syndrome 9 245180 -NCIT:C8686 Recurrent Mycosis Fungoides 9 245181 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 245182 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 8 245183 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 8 245184 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 245185 -NCIT:C157689 Recurrent NK-Cell Lymphoma, Unclassifiable 8 245186 -NCIT:C165789 Recurrent Transformed T-cell Non-Hodgkin Lymphoma 8 245187 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 9 245188 -NCIT:C168778 Recurrent Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 8 245189 -NCIT:C168780 Recurrent Follicular T-Cell Lymphoma 8 245190 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 8 245191 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 245192 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 245193 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 245194 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 245195 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 245196 -NCIT:C8686 Recurrent Mycosis Fungoides 9 245197 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 245198 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 8 245199 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 8 245200 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 8 245201 -NCIT:C9250 Recurrent Anaplastic Large Cell Lymphoma 8 245202 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 9 245203 -NCIT:C162688 Recurrent Systemic Anaplastic Large Cell Lymphoma 9 245204 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 245205 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 245206 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 245207 -NCIT:C8702 Recurrent Transformed Non-Hodgkin Lymphoma 6 245208 -NCIT:C158149 Recurrent Transformed B-Cell Non-Hodgkin Lymphoma 7 245209 -NCIT:C160232 Recurrent Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 8 245210 -NCIT:C186483 Recurrent Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 8 245211 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 9 245212 -NCIT:C165789 Recurrent Transformed T-cell Non-Hodgkin Lymphoma 7 245213 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 8 245214 -NCIT:C8841 Recurrent B-Cell Non-Hodgkin Lymphoma 6 245215 -NCIT:C165799 Recurrent Mature B-Cell Non-Hodgkin Lymphoma 7 245216 -NCIT:C158149 Recurrent Transformed B-Cell Non-Hodgkin Lymphoma 8 245217 -NCIT:C160232 Recurrent Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 9 245218 -NCIT:C186483 Recurrent Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 9 245219 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 10 245220 -NCIT:C5007 Recurrent Follicular Lymphoma 8 245221 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 9 245222 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 9 245223 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 9 245224 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 10 245225 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 10 245226 -NCIT:C5008 Recurrent Burkitt Lymphoma 8 245227 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 9 245228 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 9 245229 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 8 245230 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 9 245231 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 245232 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 9 245233 -NCIT:C8154 Recurrent Small Lymphocytic Lymphoma 8 245234 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 8 245235 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 8 245236 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 9 245237 -NCIT:C8852 Recurrent Diffuse Large B-Cell Lymphoma 8 245238 -NCIT:C138015 Recurrent Extranodal Diffuse Large B-cell Lymphoma 9 245239 -NCIT:C138025 Recurrent Intravascular Large B-Cell Lymphoma 9 245240 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 9 245241 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 245242 -NCIT:C156696 Recurrent T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 9 245243 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 245244 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 245245 -NCIT:C157679 Recurrent Primary Effusion Lymphoma 9 245246 -NCIT:C157683 Recurrent Plasmablastic Lymphoma 9 245247 -NCIT:C160229 Recurrent High Grade B-Cell Lymphoma 9 245248 -NCIT:C151980 Recurrent High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 10 245249 -NCIT:C162451 Recurrent High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 10 245250 -NCIT:C188788 Recurrent High Grade B-Cell Lymphoma, Not Otherwise Specified 10 245251 -NCIT:C165240 Recurrent Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 9 245252 -NCIT:C160230 Recurrent Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 10 245253 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 245254 -NCIT:C182035 Recurrent Immunoblastic Lymphoma 10 245255 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 11 245256 -NCIT:C8926 Recurrent Centroblastic Lymphoma 10 245257 -NCIT:C183140 Recurrent Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 9 245258 -NCIT:C188790 Recurrent ALK-Positive Large B-Cell Lymphoma 9 245259 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 9 245260 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 245261 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 10 245262 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 245263 -NCIT:C178553 Recurrent Aggressive B-Cell Non-Hodgkin Lymphoma 7 245264 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 8 245265 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 8 245266 -NCIT:C5008 Recurrent Burkitt Lymphoma 8 245267 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 9 245268 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 9 245269 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 8 245270 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 9 245271 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 9 245272 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 8 245273 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 9 245274 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 9 245275 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 8 245276 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 8 245277 -NCIT:C183512 Recurrent Indolent B-Cell Non-Hodgkin Lymphoma 7 245278 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 8 245279 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 9 245280 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 245281 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 9 245282 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 8 245283 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 8 245284 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 8 245285 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 9 245286 -NCIT:C9360 Lymphoblastic Lymphoma 5 245287 -NCIT:C151978 Refractory Lymphoblastic Lymphoma 6 245288 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 7 245289 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 7 245290 -NCIT:C6919 T Lymphoblastic Lymphoma 6 245291 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 7 245292 -NCIT:C45740 Mediastinal T Lymphoblastic Lymphoma 7 245293 -NCIT:C7210 Childhood T Lymphoblastic Lymphoma 7 245294 -NCIT:C7226 Adult T Lymphoblastic Lymphoma 7 245295 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 7 245296 -NCIT:C7311 Splenic T Lymphoblastic Lymphoma 7 245297 -NCIT:C7312 Splenic Lymphoblastic Lymphoma 6 245298 -NCIT:C7310 Splenic B Lymphoblastic Lymphoma 7 245299 -NCIT:C7311 Splenic T Lymphoblastic Lymphoma 7 245300 -NCIT:C8298 AIDS-Related Lymphoblastic Lymphoma 6 245301 -NCIT:C8868 B Lymphoblastic Lymphoma 6 245302 -NCIT:C141250 B Lymphoblastic Lymphoma by Ann Arbor Stage 7 245303 -NCIT:C8871 Ann Arbor Stage I B Lymphoblastic Lymphoma 8 245304 -NCIT:C8872 Ann Arbor Stage III B Lymphoblastic Lymphoma 8 245305 -NCIT:C8873 Ann Arbor Stage IV B Lymphoblastic Lymphoma 8 245306 -NCIT:C8937 Ann Arbor Stage II B Lymphoblastic Lymphoma 8 245307 -NCIT:C7209 Childhood B Lymphoblastic Lymphoma 7 245308 -NCIT:C7310 Splenic B Lymphoblastic Lymphoma 7 245309 -NCIT:C7338 Adult B Lymphoblastic Lymphoma 7 245310 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 7 245311 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 7 245312 -NCIT:C9124 Childhood Lymphoblastic Lymphoma 6 245313 -NCIT:C7209 Childhood B Lymphoblastic Lymphoma 7 245314 -NCIT:C7210 Childhood T Lymphoblastic Lymphoma 7 245315 -NCIT:C9056 Ann Arbor Stage I Childhood Lymphoblastic Lymphoma 7 245316 -NCIT:C9057 Ann Arbor Stage II Childhood Lymphoblastic Lymphoma 7 245317 -NCIT:C9058 Ann Arbor Stage III Childhood Lymphoblastic Lymphoma 7 245318 -NCIT:C9059 Ann Arbor Stage IV Childhood Lymphoblastic Lymphoma 7 245319 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 7 245320 -NCIT:C9361 Adult Lymphoblastic Lymphoma 6 245321 -NCIT:C7226 Adult T Lymphoblastic Lymphoma 7 245322 -NCIT:C7338 Adult B Lymphoblastic Lymphoma 7 245323 -NCIT:C8079 Ann Arbor Stage I Adult Lymphoblastic Lymphoma 7 245324 -NCIT:C8125 Ann Arbor Stage II Adult Lymphoblastic Lymphoma 7 245325 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 8 245326 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 8 245327 -NCIT:C8138 Ann Arbor Stage III Adult Lymphoblastic Lymphoma 7 245328 -NCIT:C8151 Ann Arbor Stage IV Adult Lymphoblastic Lymphoma 7 245329 -NCIT:C8164 Recurrent Adult Lymphoblastic Lymphoma 7 245330 -NCIT:C37869 B-Cell Lymphoma, Unclassifiable, with Features Intermediate between Diffuse Large B-Cell Lymphoma and Classic Hodgkin Lymphoma 4 245331 -NCIT:C138013 Recurrent B-Cell Lymphoma, Unclassifiable, with Features Intermediate between Diffuse Large B-Cell Lymphoma and Classic Hodgkin Lymphoma 5 245332 -NCIT:C138014 Refractory B-Cell Lymphoma, Unclassifiable, with Features Intermediate between Diffuse Large B-Cell Lymphoma and Classic Hodgkin Lymphoma 5 245333 -NCIT:C37870 Mediastinal B-Cell Lymphoma, Unclassifiable, with Features Intermediate between Diffuse Large B-Cell Lymphoma and Classic Hodgkin Lymphoma 5 245334 -NCIT:C38661 Composite Lymphoma 4 245335 -NCIT:C39578 Autoimmune Lymphoproliferative Syndrome-Related Lymphoma 4 245336 -NCIT:C4938 Localized Lymphoma 4 245337 -NCIT:C166179 Localized Anaplastic Large Cell Lymphoma 5 245338 -NCIT:C5165 Childhood Lymphoma 4 245339 -NCIT:C141202 Childhood Lymphoma by AJCC v8 Stage 5 245340 -NCIT:C141178 Lugano Classification Childhood Hodgkin Lymphoma by AJCC v8 Stage 6 245341 -NCIT:C141179 Lugano Classification Limited Stage Childhood Hodgkin Lymphoma AJCC v8 7 245342 -NCIT:C141180 Lugano Classification Stage I Childhood Hodgkin Lymphoma AJCC v8 8 245343 -NCIT:C141181 Lugano Classification Stage IE Childhood Hodgkin Lymphoma AJCC v8 8 245344 -NCIT:C141182 Lugano Classification Stage II Childhood Hodgkin Lymphoma AJCC v8 8 245345 -NCIT:C141184 Lugano Classification Stage II Bulky Childhood Hodgkin Lymphoma AJCC v8 9 245346 -NCIT:C141183 Lugano Classification Stage IIE Childhood Hodgkin Lymphoma AJCC v8 8 245347 -NCIT:C141185 Lugano Classification Advanced Stage Childhood Hodgkin Lymphoma AJCC v8 7 245348 -NCIT:C141186 Lugano Classification Stage III Childhood Hodgkin Lymphoma AJCC v8 8 245349 -NCIT:C141187 Lugano Classification Stage IV Childhood Hodgkin Lymphoma AJCC v8 8 245350 -NCIT:C141217 St. Jude Childhood Non-Hodgkin Lymphoma by AJCC v8 Stage 6 245351 -NCIT:C141218 St. Jude Stage I Childhood Non-Hodgkin Lymphoma AJCC v8 7 245352 -NCIT:C141219 St. Jude Stage II Childhood Non-Hodgkin Lymphoma AJCC v8 7 245353 -NCIT:C141220 St. Jude Stage III Childhood Non-Hodgkin Lymphoma AJCC v8 7 245354 -NCIT:C141221 St. Jude Stage IV Childhood Non-Hodgkin Lymphoma AJCC v8 7 245355 -NCIT:C187196 Recurrent Childhood Lymphoma 5 245356 -NCIT:C115369 Recurrent Childhood Non-Hodgkin Lymphoma 6 245357 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 7 245358 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 7 245359 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 7 245360 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 7 245361 -NCIT:C8059 Recurrent Childhood Hodgkin Lymphoma 6 245362 -NCIT:C187197 Refractory Childhood Lymphoma 5 245363 -NCIT:C115458 Refractory Childhood Hodgkin Lymphoma 6 245364 -NCIT:C7706 Childhood Non-Hodgkin Lymphoma 5 245365 -NCIT:C115369 Recurrent Childhood Non-Hodgkin Lymphoma 6 245366 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 7 245367 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 7 245368 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 7 245369 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 7 245370 -NCIT:C123394 Childhood Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 6 245371 -NCIT:C141217 St. Jude Childhood Non-Hodgkin Lymphoma by AJCC v8 Stage 6 245372 -NCIT:C141218 St. Jude Stage I Childhood Non-Hodgkin Lymphoma AJCC v8 7 245373 -NCIT:C141219 St. Jude Stage II Childhood Non-Hodgkin Lymphoma AJCC v8 7 245374 -NCIT:C141220 St. Jude Stage III Childhood Non-Hodgkin Lymphoma AJCC v8 7 245375 -NCIT:C141221 St. Jude Stage IV Childhood Non-Hodgkin Lymphoma AJCC v8 7 245376 -NCIT:C141236 Childhood Non-Hodgkin Lymphoma by Ann Arbor Stage 6 245377 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 7 245378 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 245379 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 245380 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 245381 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 245382 -NCIT:C94791 Ann Arbor Stage I Childhood Non-Hodgkin Lymphoma 7 245383 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 245384 -NCIT:C9056 Ann Arbor Stage I Childhood Lymphoblastic Lymphoma 8 245385 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 8 245386 -NCIT:C94792 Ann Arbor Stage II Childhood Non-Hodgkin Lymphoma 7 245387 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 245388 -NCIT:C9057 Ann Arbor Stage II Childhood Lymphoblastic Lymphoma 8 245389 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 8 245390 -NCIT:C94793 Ann Arbor Stage III Childhood Non-Hodgkin Lymphoma 7 245391 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 245392 -NCIT:C9058 Ann Arbor Stage III Childhood Lymphoblastic Lymphoma 8 245393 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 8 245394 -NCIT:C94794 Ann Arbor Stage IV Childhood Non-Hodgkin Lymphoma 7 245395 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 245396 -NCIT:C9059 Ann Arbor Stage IV Childhood Lymphoblastic Lymphoma 8 245397 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 8 245398 -NCIT:C188458 Childhood Large B-Cell Lymphoma with IRF4 Rearrangement 6 245399 -NCIT:C5637 Childhood Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 6 245400 -NCIT:C188459 Childhood Peripheral T-Cell Lymphoma, Not Otherwise Specified 7 245401 -NCIT:C5636 Childhood Anaplastic Large Cell Lymphoma 7 245402 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 8 245403 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 8 245404 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 245405 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 245406 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 245407 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 245408 -NCIT:C188460 Childhood Anaplastic Large Cell Lymphoma, ALK-Positive 8 245409 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 8 245410 -NCIT:C9471 Childhood Systemic Anaplastic Large Cell Lymphoma 8 245411 -NCIT:C68692 Childhood Nasal Type Extranodal NK/T-Cell Lymphoma 7 245412 -NCIT:C80374 Systemic EBV-Positive T-Cell Lymphoma of Childhood 7 245413 -NCIT:C7616 Childhood Diffuse Large B-Cell Lymphoma 6 245414 -NCIT:C115204 Childhood Grade III Lymphomatoid Granulomatosis 7 245415 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 8 245416 -NCIT:C188455 Childhood Primary Mediastinal (Thymic) Large B-Cell Lymphoma 7 245417 -NCIT:C188456 Childhood EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 7 245418 -NCIT:C9079 Childhood Immunoblastic Lymphoma 7 245419 -NCIT:C80299 Pediatric Nodal Marginal Zone Lymphoma 6 245420 -NCIT:C9095 Childhood Burkitt Lymphoma 6 245421 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 7 245422 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 7 245423 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 7 245424 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 7 245425 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 7 245426 -NCIT:C9124 Childhood Lymphoblastic Lymphoma 6 245427 -NCIT:C7209 Childhood B Lymphoblastic Lymphoma 7 245428 -NCIT:C7210 Childhood T Lymphoblastic Lymphoma 7 245429 -NCIT:C9056 Ann Arbor Stage I Childhood Lymphoblastic Lymphoma 7 245430 -NCIT:C9057 Ann Arbor Stage II Childhood Lymphoblastic Lymphoma 7 245431 -NCIT:C9058 Ann Arbor Stage III Childhood Lymphoblastic Lymphoma 7 245432 -NCIT:C9059 Ann Arbor Stage IV Childhood Lymphoblastic Lymphoma 7 245433 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 7 245434 -NCIT:C7714 Childhood Hodgkin Lymphoma 5 245435 -NCIT:C114806 Childhood Favorable Prognosis Hodgkin Lymphoma 6 245436 -NCIT:C114808 Childhood Unfavorable Prognosis Hodgkin Lymphoma 6 245437 -NCIT:C115458 Refractory Childhood Hodgkin Lymphoma 6 245438 -NCIT:C141178 Lugano Classification Childhood Hodgkin Lymphoma by AJCC v8 Stage 6 245439 -NCIT:C141179 Lugano Classification Limited Stage Childhood Hodgkin Lymphoma AJCC v8 7 245440 -NCIT:C141180 Lugano Classification Stage I Childhood Hodgkin Lymphoma AJCC v8 8 245441 -NCIT:C141181 Lugano Classification Stage IE Childhood Hodgkin Lymphoma AJCC v8 8 245442 -NCIT:C141182 Lugano Classification Stage II Childhood Hodgkin Lymphoma AJCC v8 8 245443 -NCIT:C141184 Lugano Classification Stage II Bulky Childhood Hodgkin Lymphoma AJCC v8 9 245444 -NCIT:C141183 Lugano Classification Stage IIE Childhood Hodgkin Lymphoma AJCC v8 8 245445 -NCIT:C141185 Lugano Classification Advanced Stage Childhood Hodgkin Lymphoma AJCC v8 7 245446 -NCIT:C141186 Lugano Classification Stage III Childhood Hodgkin Lymphoma AJCC v8 8 245447 -NCIT:C141187 Lugano Classification Stage IV Childhood Hodgkin Lymphoma AJCC v8 8 245448 -NCIT:C141227 Childhood Hodgkin Lymphoma by Ann Arbor Stage 6 245449 -NCIT:C8055 Ann Arbor Stage II Childhood Hodgkin Lymphoma 7 245450 -NCIT:C8056 Ann Arbor Stage I Childhood Hodgkin Lymphoma 7 245451 -NCIT:C8057 Ann Arbor Stage III Childhood Hodgkin Lymphoma 7 245452 -NCIT:C8058 Ann Arbor Stage IV Childhood Hodgkin Lymphoma 7 245453 -NCIT:C69142 Childhood Classic Hodgkin Lymphoma 6 245454 -NCIT:C7054 Childhood Lymphocyte-Rich Classic Hodgkin Lymphoma 7 245455 -NCIT:C8061 Childhood Lymphocyte-Depleted Classic Hodgkin Lymphoma 7 245456 -NCIT:C8062 Childhood Nodular Sclerosis Classic Hodgkin Lymphoma 7 245457 -NCIT:C8063 Childhood Mixed Cellularity Classic Hodgkin Lymphoma 7 245458 -NCIT:C8059 Recurrent Childhood Hodgkin Lymphoma 6 245459 -NCIT:C8060 Childhood Nodular Lymphocyte Predominant Hodgkin Lymphoma 6 245460 -NCIT:C7185 Lymphoma by Site 4 245461 -NCIT:C126464 Fallopian Tube Lymphoma 5 245462 -NCIT:C162548 Penile Lymphoma 5 245463 -NCIT:C171101 Cutaneous Lymphoma 5 245464 -NCIT:C168651 Cutaneous Burkitt Lymphoma 6 245465 -NCIT:C45266 Cutaneous Mantle Cell Lymphoma 6 245466 -NCIT:C45268 Cutaneous Nasal Type Extranodal NK/T-Cell Lymphoma 6 245467 -NCIT:C45271 Cutaneous Angioimmunoblastic T-Cell Lymphoma 6 245468 -NCIT:C45272 Cutaneous Adult T-Cell Leukemia/Lymphoma 6 245469 -NCIT:C7162 Primary Cutaneous Lymphoma 6 245470 -NCIT:C142876 Recurrent Primary Cutaneous Lymphoma 7 245471 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 8 245472 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 245473 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 245474 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 245475 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 245476 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 245477 -NCIT:C8686 Recurrent Mycosis Fungoides 9 245478 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 245479 -NCIT:C142877 Refractory Primary Cutaneous Lymphoma 7 245480 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 8 245481 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 245482 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 245483 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 9 245484 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 245485 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 245486 -NCIT:C8687 Refractory Mycosis Fungoides 9 245487 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 10 245488 -NCIT:C188114 Primary Cutaneous Non-Hodgkin Lymphoma 7 245489 -NCIT:C3467 Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 245490 -NCIT:C172442 Advanced Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 245491 -NCIT:C180374 Early Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 245492 -NCIT:C3246 Mycosis Fungoides 9 245493 -NCIT:C141143 Mycosis Fungoides by AJCC v7 Stage 10 245494 -NCIT:C7796 Stage I Mycosis Fungoides AJCC v7 11 245495 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 12 245496 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 12 245497 -NCIT:C7798 Stage II Mycosis Fungoides AJCC v7 11 245498 -NCIT:C7800 Stage III Mycosis Fungoides AJCC v7 11 245499 -NCIT:C7802 Stage IV Mycosis Fungoides AJCC v7 11 245500 -NCIT:C165783 Transformed Mycosis Fungoides 10 245501 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 245502 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 245503 -NCIT:C8686 Recurrent Mycosis Fungoides 10 245504 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 245505 -NCIT:C8687 Refractory Mycosis Fungoides 10 245506 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 245507 -NCIT:C39644 Mycosis Fungoides Variant 9 245508 -NCIT:C35464 Granulomatous Slack Skin Disease 10 245509 -NCIT:C35685 Folliculotropic Mycosis Fungoides 10 245510 -NCIT:C35794 Pagetoid Reticulosis 10 245511 -NCIT:C45332 Primary Cutaneous Peripheral T-Cell Lymphoma, Rare Subtype 9 245512 -NCIT:C139023 Primary Cutaneous Acral CD8-Positive T-Cell Lymphoma 10 245513 -NCIT:C45339 Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 245514 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 11 245515 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 11 245516 -NCIT:C45340 Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 245517 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 11 245518 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 11 245519 -NCIT:C6860 Primary Cutaneous Anaplastic Large Cell Lymphoma 9 245520 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 245521 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 245522 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 10 245523 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 10 245524 -NCIT:C6918 Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 245525 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 245526 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 245527 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 245528 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 245529 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 245530 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 245531 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 245532 -NCIT:C8686 Recurrent Mycosis Fungoides 10 245533 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 245534 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 245535 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 245536 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 245537 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 245538 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 245539 -NCIT:C8687 Refractory Mycosis Fungoides 10 245540 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 245541 -NCIT:C6858 Primary Cutaneous B-Cell Non-Hodgkin Lymphoma 8 245542 -NCIT:C45193 Primary Cutaneous Diffuse Large B-Cell Lymphoma 9 245543 -NCIT:C45194 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 245544 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 245545 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 245546 -NCIT:C45213 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Other 10 245547 -NCIT:C45214 Primary Cutaneous Intravascular Large B-Cell Lymphoma 11 245548 -NCIT:C45215 Primary Cutaneous T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 11 245549 -NCIT:C45216 Primary Cutaneous Plasmablastic Lymphoma 11 245550 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 9 245551 -NCIT:C7230 Primary Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 245552 -NCIT:C45163 Borrelia Burgdoferi-Associated Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 245553 -NCIT:C7221 Primary Cutaneous Hodgkin Lymphoma 7 245554 -NCIT:C7218 Cutaneous Follicular Lymphoma 6 245555 -NCIT:C6859 Grade 3 Cutaneous Follicular Lymphoma 7 245556 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 7 245557 -NCIT:C7219 Grade 2 Cutaneous Follicular Lymphoma 7 245558 -NCIT:C7220 Grade 1 Cutaneous Follicular Lymphoma 7 245559 -NCIT:C173170 Sinonasal Lymphoma 5 245560 -NCIT:C173171 Sinonasal Non-Hodgkin Lymphoma 6 245561 -NCIT:C173172 Sinonasal Extranodal NK/T-Cell Lymphoma 7 245562 -NCIT:C173173 Nasal Cavity Extranodal NK/T-Cell Lymphoma 8 245563 -NCIT:C6069 Paranasal Sinus Non-Hodgkin Lymphoma 7 245564 -NCIT:C6073 Paranasal Sinus Diffuse Large B-Cell Lymphoma 8 245565 -NCIT:C6075 Nasal Cavity Non-Hodgkin Lymphoma 7 245566 -NCIT:C173173 Nasal Cavity Extranodal NK/T-Cell Lymphoma 8 245567 -NCIT:C188081 Nasal Cavity Diffuse Large B-Cell Lymphoma 8 245568 -NCIT:C6068 Paranasal Sinus Lymphoma 6 245569 -NCIT:C6069 Paranasal Sinus Non-Hodgkin Lymphoma 7 245570 -NCIT:C6073 Paranasal Sinus Diffuse Large B-Cell Lymphoma 8 245571 -NCIT:C6074 Nasal Cavity Lymphoma 6 245572 -NCIT:C6075 Nasal Cavity Non-Hodgkin Lymphoma 7 245573 -NCIT:C173173 Nasal Cavity Extranodal NK/T-Cell Lymphoma 8 245574 -NCIT:C188081 Nasal Cavity Diffuse Large B-Cell Lymphoma 8 245575 -NCIT:C173354 Pharyngeal Lymphoma 5 245576 -NCIT:C173355 Pharyngeal Non-Hodgkin Lymphoma 6 245577 -NCIT:C173359 Nasopharyngeal Non-Hodgkin Lymphoma 7 245578 -NCIT:C173579 Oropharyngeal Non-Hodgkin Lymphoma 7 245579 -NCIT:C188072 Tonsillar Diffuse Large B-Cell Lymphoma 8 245580 -NCIT:C188080 Tonsillar Mantle Cell Lymphoma 8 245581 -NCIT:C173356 Pharyngeal Hodgkin Lymphoma 6 245582 -NCIT:C173361 Nasopharyngeal Hodgkin Lymphoma 7 245583 -NCIT:C173578 Oropharyngeal Hodgkin Lymphoma 7 245584 -NCIT:C173357 Nasopharyngeal Lymphoma 6 245585 -NCIT:C173359 Nasopharyngeal Non-Hodgkin Lymphoma 7 245586 -NCIT:C173361 Nasopharyngeal Hodgkin Lymphoma 7 245587 -NCIT:C173577 Oropharyngeal Lymphoma 6 245588 -NCIT:C173578 Oropharyngeal Hodgkin Lymphoma 7 245589 -NCIT:C173579 Oropharyngeal Non-Hodgkin Lymphoma 7 245590 -NCIT:C188072 Tonsillar Diffuse Large B-Cell Lymphoma 8 245591 -NCIT:C188080 Tonsillar Mantle Cell Lymphoma 8 245592 -NCIT:C5918 Tonsillar Lymphoma 7 245593 -NCIT:C188072 Tonsillar Diffuse Large B-Cell Lymphoma 8 245594 -NCIT:C188080 Tonsillar Mantle Cell Lymphoma 8 245595 -NCIT:C173690 Salivary Gland Lymphoma 5 245596 -NCIT:C173691 Salivary Gland Non-Hodgkin Lymphoma 6 245597 -NCIT:C173693 Salivary Gland Mucosa-Associated Lymphoid Tissue Lymphoma 7 245598 -NCIT:C35687 Parotid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 8 245599 -NCIT:C173715 Salivary Gland Follicular Lymphoma 7 245600 -NCIT:C173716 Parotid Gland Follicular Lymphoma 8 245601 -NCIT:C173717 Salivary Gland Diffuse Large B-Cell Lymphoma 7 245602 -NCIT:C173719 Parotid Gland Diffuse Large B-Cell Lymphoma 8 245603 -NCIT:C5981 Major Salivary Gland Non-Hodgkin Lymphoma 7 245604 -NCIT:C5951 Parotid Gland Non-Hodgkin Lymphoma 8 245605 -NCIT:C173716 Parotid Gland Follicular Lymphoma 9 245606 -NCIT:C173719 Parotid Gland Diffuse Large B-Cell Lymphoma 9 245607 -NCIT:C181210 Parotid Gland Mantle Cell Lymphoma 9 245608 -NCIT:C35687 Parotid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 9 245609 -NCIT:C173692 Salivary Gland Hodgkin Lymphoma 6 245610 -NCIT:C185752 Extranodal Lymphoma 5 245611 -NCIT:C185753 Extranodal Non-Hodgkin Lymphoma 6 245612 -NCIT:C188114 Primary Cutaneous Non-Hodgkin Lymphoma 7 245613 -NCIT:C3467 Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 245614 -NCIT:C172442 Advanced Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 245615 -NCIT:C180374 Early Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 245616 -NCIT:C3246 Mycosis Fungoides 9 245617 -NCIT:C141143 Mycosis Fungoides by AJCC v7 Stage 10 245618 -NCIT:C7796 Stage I Mycosis Fungoides AJCC v7 11 245619 -NCIT:C130237 Stage IB Mycosis Fungoides AJCC v7 12 245620 -NCIT:C130951 Stage IA Mycosis Fungoides AJCC v7 12 245621 -NCIT:C7798 Stage II Mycosis Fungoides AJCC v7 11 245622 -NCIT:C7800 Stage III Mycosis Fungoides AJCC v7 11 245623 -NCIT:C7802 Stage IV Mycosis Fungoides AJCC v7 11 245624 -NCIT:C165783 Transformed Mycosis Fungoides 10 245625 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 245626 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 245627 -NCIT:C8686 Recurrent Mycosis Fungoides 10 245628 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 245629 -NCIT:C8687 Refractory Mycosis Fungoides 10 245630 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 245631 -NCIT:C39644 Mycosis Fungoides Variant 9 245632 -NCIT:C35464 Granulomatous Slack Skin Disease 10 245633 -NCIT:C35685 Folliculotropic Mycosis Fungoides 10 245634 -NCIT:C35794 Pagetoid Reticulosis 10 245635 -NCIT:C45332 Primary Cutaneous Peripheral T-Cell Lymphoma, Rare Subtype 9 245636 -NCIT:C139023 Primary Cutaneous Acral CD8-Positive T-Cell Lymphoma 10 245637 -NCIT:C45339 Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 245638 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 11 245639 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 11 245640 -NCIT:C45340 Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 245641 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 11 245642 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 11 245643 -NCIT:C6860 Primary Cutaneous Anaplastic Large Cell Lymphoma 9 245644 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 245645 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 245646 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 10 245647 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 10 245648 -NCIT:C6918 Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 245649 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 245650 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 245651 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 245652 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 245653 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 245654 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 245655 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 245656 -NCIT:C8686 Recurrent Mycosis Fungoides 10 245657 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 245658 -NCIT:C8938 Refractory Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 9 245659 -NCIT:C157696 Refractory Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 245660 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 10 245661 -NCIT:C191820 Refractory Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 245662 -NCIT:C191824 Refractory Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 245663 -NCIT:C8687 Refractory Mycosis Fungoides 10 245664 -NCIT:C165785 Refractory Transformed Mycosis Fungoides 11 245665 -NCIT:C6858 Primary Cutaneous B-Cell Non-Hodgkin Lymphoma 8 245666 -NCIT:C45193 Primary Cutaneous Diffuse Large B-Cell Lymphoma 9 245667 -NCIT:C45194 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 245668 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 245669 -NCIT:C138028 Refractory Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 245670 -NCIT:C45213 Primary Cutaneous Diffuse Large B-Cell Lymphoma, Other 10 245671 -NCIT:C45214 Primary Cutaneous Intravascular Large B-Cell Lymphoma 11 245672 -NCIT:C45215 Primary Cutaneous T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 11 245673 -NCIT:C45216 Primary Cutaneous Plasmablastic Lymphoma 11 245674 -NCIT:C7217 Primary Cutaneous Follicle Center Lymphoma 9 245675 -NCIT:C7230 Primary Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 245676 -NCIT:C45163 Borrelia Burgdoferi-Associated Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 10 245677 -NCIT:C3898 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 7 245678 -NCIT:C123394 Childhood Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 245679 -NCIT:C141260 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue by Ann Arbor Stage 8 245680 -NCIT:C5085 Ann Arbor Stage I Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 245681 -NCIT:C5086 Ann Arbor Stage II Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 245682 -NCIT:C5087 Ann Arbor Stage III Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 245683 -NCIT:C5088 Ann Arbor Stage IV Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 245684 -NCIT:C172844 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue Involving the Digestive System 8 245685 -NCIT:C5266 Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 9 245686 -NCIT:C27763 Helicobacter Pylori-Associated Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 10 245687 -NCIT:C5635 Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 9 245688 -NCIT:C45166 Campylobacter Jejuni-Associated Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 10 245689 -NCIT:C5768 Liver Mucosa-Associated Lymphoid Tissue Lymphoma 9 245690 -NCIT:C95626 Esophageal Mucosa-Associated Lymphoid Tissue Lymphoma 9 245691 -NCIT:C96506 Colorectal Mucosa-Associated Lymphoid Tissue Lymphoma 9 245692 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 10 245693 -NCIT:C173693 Salivary Gland Mucosa-Associated Lymphoid Tissue Lymphoma 8 245694 -NCIT:C35687 Parotid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 9 245695 -NCIT:C181910 Endometrial Mucosa-Associated Lymphoid Tissue Lymphoma 8 245696 -NCIT:C35688 Breast Mucosa-Associated Lymphoid Tissue Lymphoma 8 245697 -NCIT:C35689 Ocular Adnexal Mucosa-Associated Lymphoid Tissue Lymphoma 8 245698 -NCIT:C175431 Conjunctival Mucosa-Associated Lymphoid Tissue Lymphoma 9 245699 -NCIT:C175482 Lacrimal System Mucosa-Associated Lymphoid Tissue Lymphoma 9 245700 -NCIT:C175483 Lacrimal Gland Mucosa-Associated Lymphoid Tissue Lymphoma 10 245701 -NCIT:C175484 Lacrimal Drainage System Mucosa-Associated Lymphoid Tissue Lymphoma 10 245702 -NCIT:C182357 Diffusion Restriction 9 245703 -NCIT:C44960 Chlamydia Psittaci-Associated Ocular Adnexal Mucosa-Associated Lymphoid Tissue Lymphoma 9 245704 -NCIT:C39878 Bladder Mucosa-Associated Lymphoid Tissue Lymphoma 8 245705 -NCIT:C45380 Thymic Mucosa-Associated Lymphoid Tissue Lymphoma 8 245706 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 245707 -NCIT:C5090 Refractory Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 245708 -NCIT:C5264 Lung Mucosa-Associated Lymphoid Tissue Lymphoma 8 245709 -NCIT:C7230 Primary Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 245710 -NCIT:C45163 Borrelia Burgdoferi-Associated Cutaneous Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 9 245711 -NCIT:C7601 Thyroid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 8 245712 -NCIT:C95991 Dural Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 245713 -NCIT:C4684 Nasal Type Extranodal NK/T-Cell Lymphoma 7 245714 -NCIT:C115154 Adult Nasal Type Extranodal NK/T-Cell Lymphoma 8 245715 -NCIT:C141296 Nasal Type NK/T-Cell Lymphoma by Ann Arbor Stage 8 245716 -NCIT:C8670 Ann Arbor Stage I Nasal Type NK/T-Cell Lymphoma 9 245717 -NCIT:C8673 Ann Arbor Stage II Nasal Type NK/T-Cell Lymphoma 9 245718 -NCIT:C8674 Ann Arbor Stage III Nasal Type NK/T-Cell Lymphoma 9 245719 -NCIT:C8675 Ann Arbor Stage IV Nasal Type NK/T-Cell Lymphoma 9 245720 -NCIT:C162468 Testicular Nasal Type Extranodal NK/T-Cell Lymphoma 8 245721 -NCIT:C173172 Sinonasal Extranodal NK/T-Cell Lymphoma 8 245722 -NCIT:C173173 Nasal Cavity Extranodal NK/T-Cell Lymphoma 9 245723 -NCIT:C45268 Cutaneous Nasal Type Extranodal NK/T-Cell Lymphoma 8 245724 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 8 245725 -NCIT:C68692 Childhood Nasal Type Extranodal NK/T-Cell Lymphoma 8 245726 -NCIT:C8669 Refractory Nasal Type Extranodal NK/T-Cell Lymphoma 8 245727 -NCIT:C35690 Eye Lymphoma 5 245728 -NCIT:C88145 Ocular Adnexal Non-Hodgkin Lymphoma 6 245729 -NCIT:C175432 Conjunctival Non-Hodgkin Lymphoma 7 245730 -NCIT:C175430 Conjunctival Follicular Lymphoma 8 245731 -NCIT:C175431 Conjunctival Mucosa-Associated Lymphoid Tissue Lymphoma 8 245732 -NCIT:C175433 Conjunctival Diffuse Large B-Cell Lymphoma 8 245733 -NCIT:C175479 Lacrimal System Non-Hodgkin Lymphoma 7 245734 -NCIT:C175480 Lacrimal Gland Non-Hodgkin Lymphoma 8 245735 -NCIT:C175483 Lacrimal Gland Mucosa-Associated Lymphoid Tissue Lymphoma 9 245736 -NCIT:C175486 Lacrimal Gland Diffuse Large B-Cell Lymphoma 9 245737 -NCIT:C175488 Lacrimal Gland Follicular Lymphoma 9 245738 -NCIT:C175481 Lacrimal Drainage System Non-Hodgkin Lymphoma 8 245739 -NCIT:C175484 Lacrimal Drainage System Mucosa-Associated Lymphoid Tissue Lymphoma 9 245740 -NCIT:C175487 Lacrimal Drainage System Diffuse Large B-Cell Lymphoma 9 245741 -NCIT:C175482 Lacrimal System Mucosa-Associated Lymphoid Tissue Lymphoma 8 245742 -NCIT:C175483 Lacrimal Gland Mucosa-Associated Lymphoid Tissue Lymphoma 9 245743 -NCIT:C175484 Lacrimal Drainage System Mucosa-Associated Lymphoid Tissue Lymphoma 9 245744 -NCIT:C175485 Lacrimal System Diffuse Large B-Cell Lymphoma 8 245745 -NCIT:C175486 Lacrimal Gland Diffuse Large B-Cell Lymphoma 9 245746 -NCIT:C175487 Lacrimal Drainage System Diffuse Large B-Cell Lymphoma 9 245747 -NCIT:C35689 Ocular Adnexal Mucosa-Associated Lymphoid Tissue Lymphoma 7 245748 -NCIT:C175431 Conjunctival Mucosa-Associated Lymphoid Tissue Lymphoma 8 245749 -NCIT:C175482 Lacrimal System Mucosa-Associated Lymphoid Tissue Lymphoma 8 245750 -NCIT:C175483 Lacrimal Gland Mucosa-Associated Lymphoid Tissue Lymphoma 9 245751 -NCIT:C175484 Lacrimal Drainage System Mucosa-Associated Lymphoid Tissue Lymphoma 9 245752 -NCIT:C182357 Diffusion Restriction 8 245753 -NCIT:C44960 Chlamydia Psittaci-Associated Ocular Adnexal Mucosa-Associated Lymphoid Tissue Lymphoma 8 245754 -NCIT:C9184 Primary Intraocular Non-Hodgkin Lymphoma 6 245755 -NCIT:C157065 Primary Vitreoretinal Non-Hodgkin Lymphoma 7 245756 -NCIT:C157067 Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 245757 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 245758 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 245759 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 8 245760 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 245761 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 8 245762 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 245763 -NCIT:C4365 Primary Retinal Non-Hodgkin Lymphoma 8 245764 -NCIT:C175451 Primary Uveal Non-Hodgkin Lymphoma 7 245765 -NCIT:C175464 Primary Choroidal Non-Hodgkin Lymphoma 8 245766 -NCIT:C175466 Primary Ciliary Body Non-Hodgkin Lymphoma 8 245767 -NCIT:C175467 Primary Iris Non-Hodgkin Lymphoma 8 245768 -NCIT:C38162 Digestive System Lymphoma 5 245769 -NCIT:C38161 Digestive System Non-Hodgkin Lymphoma 6 245770 -NCIT:C150495 Intestinal T-Cell Lymphoma 7 245771 -NCIT:C150505 Intestinal T-Cell Lymphoma, Not Otherwise Specified 8 245772 -NCIT:C4737 Enteropathy-Associated T-Cell Lymphoma 8 245773 -NCIT:C141295 Enteropathy-Associated T-Cell Lymphoma by Ann Arbor Stage 9 245774 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 10 245775 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 10 245776 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 10 245777 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 10 245778 -NCIT:C39610 Small Intestinal Enteropathy-Associated T-Cell Lymphoma 9 245779 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 9 245780 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 9 245781 -NCIT:C96058 Monomorphic Epitheliotropic Intestinal T-Cell Lymphoma 8 245782 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 245783 -NCIT:C150504 Small Intestinal Monomorphic Epitheliotropic T-Cell Lymphoma 9 245784 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 9 245785 -NCIT:C172844 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue Involving the Digestive System 7 245786 -NCIT:C5266 Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 8 245787 -NCIT:C27763 Helicobacter Pylori-Associated Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 9 245788 -NCIT:C5635 Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 8 245789 -NCIT:C45166 Campylobacter Jejuni-Associated Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 9 245790 -NCIT:C5768 Liver Mucosa-Associated Lymphoid Tissue Lymphoma 8 245791 -NCIT:C95626 Esophageal Mucosa-Associated Lymphoid Tissue Lymphoma 8 245792 -NCIT:C96506 Colorectal Mucosa-Associated Lymphoid Tissue Lymphoma 8 245793 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 9 245794 -NCIT:C172850 Digestive System Diffuse Large B-Cell Lymphoma 7 245795 -NCIT:C5253 Gastric Diffuse Large B-Cell Lymphoma 8 245796 -NCIT:C95625 Esophageal Diffuse Large B-Cell Lymphoma 8 245797 -NCIT:C96055 Small Intestinal Diffuse Large B-Cell Lymphoma 8 245798 -NCIT:C96057 Small Intestinal High Grade B-Cell Lymphoma, Not Otherwise Specified 9 245799 -NCIT:C96503 Colorectal Diffuse Large B-Cell Lymphoma 8 245800 -NCIT:C96501 Colorectal High Grade B-Cell Lymphoma, Not Otherwise Specified 9 245801 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 9 245802 -NCIT:C96843 Liver Diffuse Large B-Cell Lymphoma 8 245803 -NCIT:C27235 Gastric Non-Hodgkin Lymphoma 7 245804 -NCIT:C5251 Gastric Burkitt Lymphoma 8 245805 -NCIT:C5253 Gastric Diffuse Large B-Cell Lymphoma 8 245806 -NCIT:C5254 Gastric T-Cell Non-Hodgkin Lymphoma 8 245807 -NCIT:C5266 Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 8 245808 -NCIT:C27763 Helicobacter Pylori-Associated Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 9 245809 -NCIT:C4339 Multifocal Lymphomatous Polyposis 7 245810 -NCIT:C5688 Esophageal Non-Hodgkin Lymphoma 7 245811 -NCIT:C95625 Esophageal Diffuse Large B-Cell Lymphoma 8 245812 -NCIT:C95626 Esophageal Mucosa-Associated Lymphoid Tissue Lymphoma 8 245813 -NCIT:C5766 Liver Non-Hodgkin Lymphoma 7 245814 -NCIT:C5768 Liver Mucosa-Associated Lymphoid Tissue Lymphoma 8 245815 -NCIT:C8459 Hepatosplenic T-Cell Lymphoma 8 245816 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 9 245817 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 9 245818 -NCIT:C96843 Liver Diffuse Large B-Cell Lymphoma 8 245819 -NCIT:C5789 Pancreatic Non-Hodgkin Lymphoma 7 245820 -NCIT:C7231 Small Intestinal Non-Hodgkin Lymphoma 7 245821 -NCIT:C96053 Small Intestinal B-Cell Non-Hodgkin Lymphoma 8 245822 -NCIT:C27409 Small Intestinal Burkitt Lymphoma 9 245823 -NCIT:C27410 Small Intestinal Atypical Burkitt/Burkitt-Like Lymphoma 10 245824 -NCIT:C27441 Small Intestinal Mantle Cell Lymphoma 9 245825 -NCIT:C3132 Alpha Heavy Chain Disease 9 245826 -NCIT:C5635 Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 9 245827 -NCIT:C45166 Campylobacter Jejuni-Associated Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 10 245828 -NCIT:C96055 Small Intestinal Diffuse Large B-Cell Lymphoma 9 245829 -NCIT:C96057 Small Intestinal High Grade B-Cell Lymphoma, Not Otherwise Specified 10 245830 -NCIT:C96056 Small Intestinal Follicular Lymphoma 9 245831 -NCIT:C96054 Small Intestinal T-Cell Non-Hodgkin Lymphoma 8 245832 -NCIT:C150504 Small Intestinal Monomorphic Epitheliotropic T-Cell Lymphoma 9 245833 -NCIT:C39610 Small Intestinal Enteropathy-Associated T-Cell Lymphoma 9 245834 -NCIT:C7465 AIDS-Related Anal Non-Hodgkin Lymphoma 7 245835 -NCIT:C80298 Intestinal Follicular Lymphoma 7 245836 -NCIT:C96056 Small Intestinal Follicular Lymphoma 8 245837 -NCIT:C96499 Colorectal Non-Hodgkin Lymphoma 7 245838 -NCIT:C4950 Colon Non-Hodgkin Lymphoma 8 245839 -NCIT:C27411 Colon Mantle Cell Lymphoma 9 245840 -NCIT:C27465 Colon Burkitt Lymphoma 9 245841 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 9 245842 -NCIT:C5521 Cecum Non-Hodgkin Lymphoma 9 245843 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 9 245844 -NCIT:C96502 Colorectal Burkitt Lymphoma 8 245845 -NCIT:C27465 Colon Burkitt Lymphoma 9 245846 -NCIT:C96503 Colorectal Diffuse Large B-Cell Lymphoma 8 245847 -NCIT:C96501 Colorectal High Grade B-Cell Lymphoma, Not Otherwise Specified 9 245848 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 9 245849 -NCIT:C96505 Colorectal Mantle Cell Lymphoma 8 245850 -NCIT:C27411 Colon Mantle Cell Lymphoma 9 245851 -NCIT:C96506 Colorectal Mucosa-Associated Lymphoid Tissue Lymphoma 8 245852 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 9 245853 -NCIT:C38163 Digestive System Hodgkin Lymphoma 6 245854 -NCIT:C5337 Small Intestinal Hodgkin Lymphoma 7 245855 -NCIT:C5638 Gastric Hodgkin Lymphoma 7 245856 -NCIT:C5689 Esophageal Hodgkin Lymphoma 7 245857 -NCIT:C96500 Colorectal Hodgkin Lymphoma 7 245858 -NCIT:C5499 Colon Hodgkin Lymphoma 8 245859 -NCIT:C4007 Small Intestinal Lymphoma 6 245860 -NCIT:C5337 Small Intestinal Hodgkin Lymphoma 7 245861 -NCIT:C7231 Small Intestinal Non-Hodgkin Lymphoma 7 245862 -NCIT:C96053 Small Intestinal B-Cell Non-Hodgkin Lymphoma 8 245863 -NCIT:C27409 Small Intestinal Burkitt Lymphoma 9 245864 -NCIT:C27410 Small Intestinal Atypical Burkitt/Burkitt-Like Lymphoma 10 245865 -NCIT:C27441 Small Intestinal Mantle Cell Lymphoma 9 245866 -NCIT:C3132 Alpha Heavy Chain Disease 9 245867 -NCIT:C5635 Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 9 245868 -NCIT:C45166 Campylobacter Jejuni-Associated Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 10 245869 -NCIT:C96055 Small Intestinal Diffuse Large B-Cell Lymphoma 9 245870 -NCIT:C96057 Small Intestinal High Grade B-Cell Lymphoma, Not Otherwise Specified 10 245871 -NCIT:C96056 Small Intestinal Follicular Lymphoma 9 245872 -NCIT:C96054 Small Intestinal T-Cell Non-Hodgkin Lymphoma 8 245873 -NCIT:C150504 Small Intestinal Monomorphic Epitheliotropic T-Cell Lymphoma 9 245874 -NCIT:C39610 Small Intestinal Enteropathy-Associated T-Cell Lymphoma 9 245875 -NCIT:C4636 Gastric Lymphoma 6 245876 -NCIT:C27235 Gastric Non-Hodgkin Lymphoma 7 245877 -NCIT:C5251 Gastric Burkitt Lymphoma 8 245878 -NCIT:C5253 Gastric Diffuse Large B-Cell Lymphoma 8 245879 -NCIT:C5254 Gastric T-Cell Non-Hodgkin Lymphoma 8 245880 -NCIT:C5266 Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 8 245881 -NCIT:C27763 Helicobacter Pylori-Associated Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 9 245882 -NCIT:C5638 Gastric Hodgkin Lymphoma 7 245883 -NCIT:C4949 Liver Lymphoma 6 245884 -NCIT:C5766 Liver Non-Hodgkin Lymphoma 7 245885 -NCIT:C5768 Liver Mucosa-Associated Lymphoid Tissue Lymphoma 8 245886 -NCIT:C8459 Hepatosplenic T-Cell Lymphoma 8 245887 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 9 245888 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 9 245889 -NCIT:C96843 Liver Diffuse Large B-Cell Lymphoma 8 245890 -NCIT:C5513 Appendix Lymphoma 6 245891 -NCIT:C5601 Anal Lymphoma 6 245892 -NCIT:C7465 AIDS-Related Anal Non-Hodgkin Lymphoma 7 245893 -NCIT:C5687 Esophageal Lymphoma 6 245894 -NCIT:C5688 Esophageal Non-Hodgkin Lymphoma 7 245895 -NCIT:C95625 Esophageal Diffuse Large B-Cell Lymphoma 8 245896 -NCIT:C95626 Esophageal Mucosa-Associated Lymphoid Tissue Lymphoma 8 245897 -NCIT:C5689 Esophageal Hodgkin Lymphoma 7 245898 -NCIT:C5714 Pancreatic Lymphoma 6 245899 -NCIT:C5789 Pancreatic Non-Hodgkin Lymphoma 7 245900 -NCIT:C5734 Gallbladder Lymphoma 6 245901 -NCIT:C96498 Colorectal Lymphoma 6 245902 -NCIT:C4793 Colon Lymphoma 7 245903 -NCIT:C4950 Colon Non-Hodgkin Lymphoma 8 245904 -NCIT:C27411 Colon Mantle Cell Lymphoma 9 245905 -NCIT:C27465 Colon Burkitt Lymphoma 9 245906 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 9 245907 -NCIT:C5521 Cecum Non-Hodgkin Lymphoma 9 245908 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 9 245909 -NCIT:C5499 Colon Hodgkin Lymphoma 8 245910 -NCIT:C5515 Cecum Lymphoma 8 245911 -NCIT:C5521 Cecum Non-Hodgkin Lymphoma 9 245912 -NCIT:C5553 Rectal Lymphoma 7 245913 -NCIT:C96499 Colorectal Non-Hodgkin Lymphoma 7 245914 -NCIT:C4950 Colon Non-Hodgkin Lymphoma 8 245915 -NCIT:C27411 Colon Mantle Cell Lymphoma 9 245916 -NCIT:C27465 Colon Burkitt Lymphoma 9 245917 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 9 245918 -NCIT:C5521 Cecum Non-Hodgkin Lymphoma 9 245919 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 9 245920 -NCIT:C96502 Colorectal Burkitt Lymphoma 8 245921 -NCIT:C27465 Colon Burkitt Lymphoma 9 245922 -NCIT:C96503 Colorectal Diffuse Large B-Cell Lymphoma 8 245923 -NCIT:C96501 Colorectal High Grade B-Cell Lymphoma, Not Otherwise Specified 9 245924 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 9 245925 -NCIT:C96505 Colorectal Mantle Cell Lymphoma 8 245926 -NCIT:C27411 Colon Mantle Cell Lymphoma 9 245927 -NCIT:C96506 Colorectal Mucosa-Associated Lymphoid Tissue Lymphoma 8 245928 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 9 245929 -NCIT:C96500 Colorectal Hodgkin Lymphoma 7 245930 -NCIT:C5499 Colon Hodgkin Lymphoma 8 245931 -NCIT:C96952 Extrahepatic Bile Duct Lymphoma 6 245932 -NCIT:C40021 Ovarian Lymphoma 5 245933 -NCIT:C45687 Pleural Lymphoma 5 245934 -NCIT:C183135 Pleural Primary Effusion Lymphoma 6 245935 -NCIT:C45691 Pyothorax-Associated Lymphoma 6 245936 -NCIT:C4671 Breast Lymphoma 5 245937 -NCIT:C138023 Recurrent Breast Lymphoma 6 245938 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 7 245939 -NCIT:C138024 Refractory Breast Lymphoma 6 245940 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 7 245941 -NCIT:C5181 Breast Non-Hodgkin Lymphoma 6 245942 -NCIT:C35688 Breast Mucosa-Associated Lymphoid Tissue Lymphoma 7 245943 -NCIT:C40375 Breast Diffuse Large B-Cell Lymphoma 7 245944 -NCIT:C40376 Breast Burkitt Lymphoma 7 245945 -NCIT:C40377 Breast Follicular Lymphoma 7 245946 -NCIT:C5182 Breast T-Cell Non-Hodgkin Lymphoma 7 245947 -NCIT:C139012 Breast Implant-Associated Anaplastic Large Cell Lymphoma 8 245948 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 245949 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 245950 -NCIT:C4794 Lung Lymphoma 5 245951 -NCIT:C181205 Lung Hodgkin Lymphoma 6 245952 -NCIT:C5684 Lung Non-Hodgkin Lymphoma 6 245953 -NCIT:C181211 Lung Follicular Lymphoma 7 245954 -NCIT:C188082 Lung Anaplastic Large Cell Lymphoma 7 245955 -NCIT:C45605 Lung Diffuse Large B-Cell Lymphoma 7 245956 -NCIT:C183121 Lung Intravascular Large B-Cell Lymphoma 8 245957 -NCIT:C5264 Lung Mucosa-Associated Lymphoid Tissue Lymphoma 7 245958 -NCIT:C48873 Splenic Lymphoma 5 245959 -NCIT:C7294 Splenic Non-Hodgkin Lymphoma 6 245960 -NCIT:C4663 Splenic Marginal Zone Lymphoma 7 245961 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 8 245962 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 8 245963 -NCIT:C7307 Splenic Follicular Lymphoma 7 245964 -NCIT:C7308 Splenic Diffuse Large B-Cell Lymphoma 7 245965 -NCIT:C7309 Splenic Burkitt Lymphoma 7 245966 -NCIT:C80309 Splenic Diffuse Red Pulp Small B-Cell Lymphoma 7 245967 -NCIT:C8459 Hepatosplenic T-Cell Lymphoma 7 245968 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 8 245969 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 8 245970 -NCIT:C7295 Splenic Hodgkin Lymphoma 6 245971 -NCIT:C5265 Thyroid Gland Lymphoma 5 245972 -NCIT:C181209 Thyroid Gland Hodgkin Lymphoma 6 245973 -NCIT:C6044 Thyroid Gland Non-Hodgkin Lymphoma 6 245974 -NCIT:C156410 Thyroid Gland Follicular Lymphoma 7 245975 -NCIT:C6046 Thyroid Gland Diffuse Large B-Cell Lymphoma 7 245976 -NCIT:C7263 Thyroid Gland Immunoblastic Lymphoma 8 245977 -NCIT:C7601 Thyroid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 7 245978 -NCIT:C5368 Cardiac Lymphoma 5 245979 -NCIT:C183146 Cardiac Diffuse Large B-Cell Lymphoma 6 245980 -NCIT:C183141 Cardiac Fibrin-Associated Diffuse Large B-Cell Lymphoma 7 245981 -NCIT:C5369 Secondary Heart Lymphoma 5 245982 -NCIT:C5533 Prostate Lymphoma 5 245983 -NCIT:C5534 Prostate Non-Hodgkin Lymphoma 6 245984 -NCIT:C161602 Prostate Diffuse Large B-Cell Lymphoma 7 245985 -NCIT:C161603 Prostate Follicular Lymphoma 7 245986 -NCIT:C161604 Prostate Mantle Cell Lymphoma 7 245987 -NCIT:C161605 Prostate Small Lymphocytic Lymphoma 7 245988 -NCIT:C6164 Bladder Lymphoma 5 245989 -NCIT:C39878 Bladder Mucosa-Associated Lymphoid Tissue Lymphoma 6 245990 -NCIT:C6175 Ureter Lymphoma 5 245991 -NCIT:C6244 Orbit Lymphoma 5 245992 -NCIT:C6248 Tracheal Lymphoma 5 245993 -NCIT:C63532 Kidney Lymphoma 5 245994 -NCIT:C188075 Kidney Burkitt Lymphoma 6 245995 -NCIT:C63533 Kidney Diffuse Large B-Cell Lymphoma 6 245996 -NCIT:C6620 Primary Bone Lymphoma 5 245997 -NCIT:C121930 Primary Bone Non-Hodgkin Lymphoma 6 245998 -NCIT:C173811 Primary Bone Diffuse Large B-Cell Lymphoma 7 245999 -NCIT:C157681 Recurrent Primary Bone Lymphoma 6 246000 -NCIT:C157682 Refractory Primary Bone Lymphoma 6 246001 -NCIT:C181207 Primary Bone Hodgkin Lymphoma 6 246002 -NCIT:C6633 Mediastinal Lymphoma 5 246003 -NCIT:C153175 Recurrent Mediastinal Lymphoma 6 246004 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 7 246005 -NCIT:C153177 Refractory Mediastinal Lymphoma 6 246006 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 7 246007 -NCIT:C171037 Mediastinal Non-Hodgkin Lymphoma 6 246008 -NCIT:C45380 Thymic Mucosa-Associated Lymphoid Tissue Lymphoma 7 246009 -NCIT:C45740 Mediastinal T Lymphoblastic Lymphoma 7 246010 -NCIT:C9280 Primary Mediastinal (Thymic) Large B-Cell Lymphoma 7 246011 -NCIT:C141262 Primary Mediastinal (Thymic) Large B-Cell Lymphoma by Ann Arbor Stage 8 246012 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 246013 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 246014 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 246015 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 246016 -NCIT:C188455 Childhood Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 246017 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 246018 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 246019 -NCIT:C37870 Mediastinal B-Cell Lymphoma, Unclassifiable, with Features Intermediate between Diffuse Large B-Cell Lymphoma and Classic Hodgkin Lymphoma 6 246020 -NCIT:C6451 Thymic Lymphoma 6 246021 -NCIT:C45380 Thymic Mucosa-Associated Lymphoid Tissue Lymphoma 7 246022 -NCIT:C9280 Primary Mediastinal (Thymic) Large B-Cell Lymphoma 7 246023 -NCIT:C141262 Primary Mediastinal (Thymic) Large B-Cell Lymphoma by Ann Arbor Stage 8 246024 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 246025 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 246026 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 246027 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 246028 -NCIT:C188455 Childhood Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 246029 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 246030 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 246031 -NCIT:C95057 Thymic Hodgkin Lymphoma 7 246032 -NCIT:C6634 Mediastinal Hodgkin Lymphoma 6 246033 -NCIT:C95057 Thymic Hodgkin Lymphoma 7 246034 -NCIT:C6712 Chest Wall Lymphoma 5 246035 -NCIT:C6716 Sternal Lymphoma 6 246036 -NCIT:C6723 Chest Wall Hodgkin Lymphoma 6 246037 -NCIT:C6810 Testicular Lymphoma 5 246038 -NCIT:C138021 Recurrent Testicular Lymphoma 6 246039 -NCIT:C138022 Refractory Testicular Lymphoma 6 246040 -NCIT:C150589 Testicular Follicular Lymphoma 6 246041 -NCIT:C162467 Testicular Diffuse Large B-Cell Lymphoma 6 246042 -NCIT:C162468 Testicular Nasal Type Extranodal NK/T-Cell Lymphoma 6 246043 -NCIT:C7353 Retroperitoneal Lymphoma 5 246044 -NCIT:C156945 Adrenal Gland Lymphoma 6 246045 -NCIT:C87797 Secondary Central Nervous System Lymphoma 5 246046 -NCIT:C114949 Secondary Central Nervous System Hodgkin Lymphoma 6 246047 -NCIT:C5057 Secondary Cerebral Hodgkin Lymphoma 7 246048 -NCIT:C114950 Secondary Central Nervous System Non-Hodgkin Lymphoma 6 246049 -NCIT:C9301 Central Nervous System Lymphoma 5 246050 -NCIT:C114779 Central Nervous System Non-Hodgkin Lymphoma 6 246051 -NCIT:C146989 Refractory Central Nervous System Non-Hodgkin Lymphoma 7 246052 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 8 246053 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 246054 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 246055 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 246056 -NCIT:C146990 Recurrent Central Nervous System Non-Hodgkin Lymphoma 7 246057 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 8 246058 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 246059 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 246060 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 246061 -NCIT:C147948 Central Nervous System B-Cell Non-Hodgkin Lymphoma 7 246062 -NCIT:C71720 Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 246063 -NCIT:C129602 Central Nervous System Intravascular Large B-Cell Lymphoma 9 246064 -NCIT:C155797 Pituitary Gland Diffuse Large B-Cell Lymphoma 9 246065 -NCIT:C157067 Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 246066 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 246067 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 246068 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 246069 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 246070 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 246071 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 246072 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 246073 -NCIT:C95991 Dural Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 246074 -NCIT:C155796 Pituitary Gland Non-Hodgkin Lymphoma 7 246075 -NCIT:C155797 Pituitary Gland Diffuse Large B-Cell Lymphoma 8 246076 -NCIT:C157065 Primary Vitreoretinal Non-Hodgkin Lymphoma 7 246077 -NCIT:C157067 Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 246078 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 246079 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 246080 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 8 246081 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 246082 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 8 246083 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 246084 -NCIT:C4365 Primary Retinal Non-Hodgkin Lymphoma 8 246085 -NCIT:C5409 Central Nervous System T-Cell Non-Hodgkin Lymphoma 7 246086 -NCIT:C129600 Central Nervous System Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 8 246087 -NCIT:C5322 Central Nervous System Anaplastic Large Cell Lymphoma 9 246088 -NCIT:C129598 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Positive 10 246089 -NCIT:C129599 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Negative 10 246090 -NCIT:C7609 Cerebral Non-Hodgkin Lymphoma 7 246091 -NCIT:C114951 Central Nervous System Hodgkin Lymphoma 6 246092 -NCIT:C5055 Cerebral Hodgkin Lymphoma 7 246093 -NCIT:C138019 Recurrent Central Nervous System Lymphoma 6 246094 -NCIT:C146990 Recurrent Central Nervous System Non-Hodgkin Lymphoma 7 246095 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 8 246096 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 246097 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 246098 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 246099 -NCIT:C138020 Refractory Central Nervous System Lymphoma 6 246100 -NCIT:C146989 Refractory Central Nervous System Non-Hodgkin Lymphoma 7 246101 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 8 246102 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 246103 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 246104 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 246105 -NCIT:C186658 Immunodeficiency-Related Central Nervous System Lymphoma 6 246106 -NCIT:C8284 AIDS-Related Primary Central Nervous System Lymphoma 7 246107 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 246108 -NCIT:C5157 Spinal Cord Lymphoma 6 246109 -NCIT:C7611 Cerebral Lymphoma 6 246110 -NCIT:C5054 Cerebral Lymphoma in Immunocompetent Host 7 246111 -NCIT:C5055 Cerebral Hodgkin Lymphoma 7 246112 -NCIT:C7609 Cerebral Non-Hodgkin Lymphoma 7 246113 -NCIT:C94756 Meningeal Lymphoma 6 246114 -NCIT:C95991 Dural Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 7 246115 -NCIT:C7587 Adult Lymphoma 4 246116 -NCIT:C141148 Lugano Classification Adult Lymphoma by AJCC v8 Stage 5 246117 -NCIT:C141149 Lugano Classification Limited Stage Adult Lymphoma AJCC v8 6 246118 -NCIT:C141150 Lugano Classification Stage I Adult Lymphoma AJCC v8 7 246119 -NCIT:C141160 Lugano Classification Stage I Adult Non-Hodgkin Lymphoma AJCC v8 8 246120 -NCIT:C141191 Lugano Classification Stage I Adult Hodgkin Lymphoma AJCC v8 8 246121 -NCIT:C141151 Lugano Classification Stage IE Adult Lymphoma AJCC v8 7 246122 -NCIT:C141161 Lugano Classification Stage IE Adult Non-Hodgkin Lymphoma AJCC v8 8 246123 -NCIT:C141192 Lugano Classification Stage IE Adult Hodgkin Lymphoma AJCC v8 8 246124 -NCIT:C141152 Lugano Classification Stage II Adult Lymphoma AJCC v8 7 246125 -NCIT:C141154 Lugano Classification Stage II Bulky Adult Lymphoma AJCC v8 8 246126 -NCIT:C141164 Lugano Classification Stage II Bulky Adult Non-Hodgkin Lymphoma AJCC v8 9 246127 -NCIT:C141195 Lugano Classification Stage II Bulky Adult Hodgkin Lymphoma AJCC v8 9 246128 -NCIT:C141162 Lugano Classification Stage II Adult Non-Hodgkin Lymphoma AJCC v8 8 246129 -NCIT:C141164 Lugano Classification Stage II Bulky Adult Non-Hodgkin Lymphoma AJCC v8 9 246130 -NCIT:C141193 Lugano Classification Stage II Adult Hodgkin Lymphoma AJCC v8 8 246131 -NCIT:C141195 Lugano Classification Stage II Bulky Adult Hodgkin Lymphoma AJCC v8 9 246132 -NCIT:C141153 Lugano Classification Stage IIE Adult Lymphoma AJCC v8 7 246133 -NCIT:C141163 Lugano Classification Stage IIE Adult Non-Hodgkin Lymphoma AJCC v8 8 246134 -NCIT:C141194 Lugano Classification Stage IIE Adult Hodgkin Lymphoma AJCC v8 8 246135 -NCIT:C141159 Lugano Classification Limited Stage Adult Non-Hodgkin Lymphoma AJCC v8 7 246136 -NCIT:C141160 Lugano Classification Stage I Adult Non-Hodgkin Lymphoma AJCC v8 8 246137 -NCIT:C141161 Lugano Classification Stage IE Adult Non-Hodgkin Lymphoma AJCC v8 8 246138 -NCIT:C141162 Lugano Classification Stage II Adult Non-Hodgkin Lymphoma AJCC v8 8 246139 -NCIT:C141164 Lugano Classification Stage II Bulky Adult Non-Hodgkin Lymphoma AJCC v8 9 246140 -NCIT:C141163 Lugano Classification Stage IIE Adult Non-Hodgkin Lymphoma AJCC v8 8 246141 -NCIT:C141190 Lugano Classification Limited Stage Adult Hodgkin Lymphoma AJCC v8 7 246142 -NCIT:C141191 Lugano Classification Stage I Adult Hodgkin Lymphoma AJCC v8 8 246143 -NCIT:C141192 Lugano Classification Stage IE Adult Hodgkin Lymphoma AJCC v8 8 246144 -NCIT:C141193 Lugano Classification Stage II Adult Hodgkin Lymphoma AJCC v8 8 246145 -NCIT:C141195 Lugano Classification Stage II Bulky Adult Hodgkin Lymphoma AJCC v8 9 246146 -NCIT:C141194 Lugano Classification Stage IIE Adult Hodgkin Lymphoma AJCC v8 8 246147 -NCIT:C141155 Lugano Classification Advanced Stage Adult Lymphoma AJCC v8 6 246148 -NCIT:C141156 Lugano Classification Stage III Adult Lymphoma AJCC v8 7 246149 -NCIT:C141166 Lugano Classification Stage III Adult Non-Hodgkin Lymphoma AJCC v8 8 246150 -NCIT:C141197 Lugano Classification Stage III Adult Hodgkin Lymphoma AJCC v8 8 246151 -NCIT:C141157 Lugano Classification Stage IV Adult Lymphoma AJCC v8 7 246152 -NCIT:C141167 Lugano Classification Stage IV Adult Non-Hodgkin Lymphoma AJCC v8 8 246153 -NCIT:C141198 Lugano Classification Stage IV Adult Hodgkin Lymphoma AJCC v8 8 246154 -NCIT:C141165 Lugano Classification Advanced Stage Adult Non-Hodgkin Lymphoma AJCC v8 7 246155 -NCIT:C141166 Lugano Classification Stage III Adult Non-Hodgkin Lymphoma AJCC v8 8 246156 -NCIT:C141167 Lugano Classification Stage IV Adult Non-Hodgkin Lymphoma AJCC v8 8 246157 -NCIT:C141196 Lugano Classification Advanced Stage Adult Hodgkin Lymphoma AJCC v8 7 246158 -NCIT:C141197 Lugano Classification Stage III Adult Hodgkin Lymphoma AJCC v8 8 246159 -NCIT:C141198 Lugano Classification Stage IV Adult Hodgkin Lymphoma AJCC v8 8 246160 -NCIT:C141158 Lugano Classification Adult Non-Hodgkin Lymphoma by AJCC v8 Stage 6 246161 -NCIT:C141159 Lugano Classification Limited Stage Adult Non-Hodgkin Lymphoma AJCC v8 7 246162 -NCIT:C141160 Lugano Classification Stage I Adult Non-Hodgkin Lymphoma AJCC v8 8 246163 -NCIT:C141161 Lugano Classification Stage IE Adult Non-Hodgkin Lymphoma AJCC v8 8 246164 -NCIT:C141162 Lugano Classification Stage II Adult Non-Hodgkin Lymphoma AJCC v8 8 246165 -NCIT:C141164 Lugano Classification Stage II Bulky Adult Non-Hodgkin Lymphoma AJCC v8 9 246166 -NCIT:C141163 Lugano Classification Stage IIE Adult Non-Hodgkin Lymphoma AJCC v8 8 246167 -NCIT:C141165 Lugano Classification Advanced Stage Adult Non-Hodgkin Lymphoma AJCC v8 7 246168 -NCIT:C141166 Lugano Classification Stage III Adult Non-Hodgkin Lymphoma AJCC v8 8 246169 -NCIT:C141167 Lugano Classification Stage IV Adult Non-Hodgkin Lymphoma AJCC v8 8 246170 -NCIT:C141189 Lugano Classification Adult Hodgkin Lymphoma by AJCC v8 Stage 6 246171 -NCIT:C141190 Lugano Classification Limited Stage Adult Hodgkin Lymphoma AJCC v8 7 246172 -NCIT:C141191 Lugano Classification Stage I Adult Hodgkin Lymphoma AJCC v8 8 246173 -NCIT:C141192 Lugano Classification Stage IE Adult Hodgkin Lymphoma AJCC v8 8 246174 -NCIT:C141193 Lugano Classification Stage II Adult Hodgkin Lymphoma AJCC v8 8 246175 -NCIT:C141195 Lugano Classification Stage II Bulky Adult Hodgkin Lymphoma AJCC v8 9 246176 -NCIT:C141194 Lugano Classification Stage IIE Adult Hodgkin Lymphoma AJCC v8 8 246177 -NCIT:C141196 Lugano Classification Advanced Stage Adult Hodgkin Lymphoma AJCC v8 7 246178 -NCIT:C141197 Lugano Classification Stage III Adult Hodgkin Lymphoma AJCC v8 8 246179 -NCIT:C141198 Lugano Classification Stage IV Adult Hodgkin Lymphoma AJCC v8 8 246180 -NCIT:C7702 Adult Hodgkin Lymphoma 5 246181 -NCIT:C114783 Hodgkin Lymphoma During Pregnancy 6 246182 -NCIT:C114807 Adult Favorable Prognosis Hodgkin Lymphoma 6 246183 -NCIT:C114809 Adult Unfavorable Prognosis Hodgkin Lymphoma 6 246184 -NCIT:C141189 Lugano Classification Adult Hodgkin Lymphoma by AJCC v8 Stage 6 246185 -NCIT:C141190 Lugano Classification Limited Stage Adult Hodgkin Lymphoma AJCC v8 7 246186 -NCIT:C141191 Lugano Classification Stage I Adult Hodgkin Lymphoma AJCC v8 8 246187 -NCIT:C141192 Lugano Classification Stage IE Adult Hodgkin Lymphoma AJCC v8 8 246188 -NCIT:C141193 Lugano Classification Stage II Adult Hodgkin Lymphoma AJCC v8 8 246189 -NCIT:C141195 Lugano Classification Stage II Bulky Adult Hodgkin Lymphoma AJCC v8 9 246190 -NCIT:C141194 Lugano Classification Stage IIE Adult Hodgkin Lymphoma AJCC v8 8 246191 -NCIT:C141196 Lugano Classification Advanced Stage Adult Hodgkin Lymphoma AJCC v8 7 246192 -NCIT:C141197 Lugano Classification Stage III Adult Hodgkin Lymphoma AJCC v8 8 246193 -NCIT:C141198 Lugano Classification Stage IV Adult Hodgkin Lymphoma AJCC v8 8 246194 -NCIT:C141226 Adult Hodgkin Lymphoma by Ann Arbor Stage 6 246195 -NCIT:C9032 Ann Arbor Stage I Adult Hodgkin Lymphoma 7 246196 -NCIT:C9033 Ann Arbor Stage II Adult Hodgkin Lymphoma 7 246197 -NCIT:C9034 Ann Arbor Stage III Adult Hodgkin Lymphoma 7 246198 -NCIT:C9035 Ann Arbor Stage IV Adult Hodgkin Lymphoma 7 246199 -NCIT:C69138 Adult Classic Hodgkin Lymphoma 6 246200 -NCIT:C7223 Adult Lymphocyte-Rich Classic Hodgkin Lymphoma 7 246201 -NCIT:C9125 Adult Lymphocyte-Depleted Classic Hodgkin Lymphoma 7 246202 -NCIT:C9126 Adult Nodular Sclerosis Classic Hodgkin Lymphoma 7 246203 -NCIT:C9127 Adult Mixed Cellularity Classic Hodgkin Lymphoma 7 246204 -NCIT:C7789 Recurrent Adult Hodgkin Lymphoma 6 246205 -NCIT:C7942 Adult Nodular Lymphocyte Predominant Hodgkin Lymphoma 6 246206 -NCIT:C7704 Adult Non-Hodgkin Lymphoma 5 246207 -NCIT:C114784 Non-Hodgkin Lymphoma During Pregnancy 6 246208 -NCIT:C141158 Lugano Classification Adult Non-Hodgkin Lymphoma by AJCC v8 Stage 6 246209 -NCIT:C141159 Lugano Classification Limited Stage Adult Non-Hodgkin Lymphoma AJCC v8 7 246210 -NCIT:C141160 Lugano Classification Stage I Adult Non-Hodgkin Lymphoma AJCC v8 8 246211 -NCIT:C141161 Lugano Classification Stage IE Adult Non-Hodgkin Lymphoma AJCC v8 8 246212 -NCIT:C141162 Lugano Classification Stage II Adult Non-Hodgkin Lymphoma AJCC v8 8 246213 -NCIT:C141164 Lugano Classification Stage II Bulky Adult Non-Hodgkin Lymphoma AJCC v8 9 246214 -NCIT:C141163 Lugano Classification Stage IIE Adult Non-Hodgkin Lymphoma AJCC v8 8 246215 -NCIT:C141165 Lugano Classification Advanced Stage Adult Non-Hodgkin Lymphoma AJCC v8 7 246216 -NCIT:C141166 Lugano Classification Stage III Adult Non-Hodgkin Lymphoma AJCC v8 8 246217 -NCIT:C141167 Lugano Classification Stage IV Adult Non-Hodgkin Lymphoma AJCC v8 8 246218 -NCIT:C141235 Adult Non-Hodgkin Lymphoma by Ann Arbor Stage 6 246219 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 7 246220 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 8 246221 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 8 246222 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 8 246223 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 8 246224 -NCIT:C8102 Ann Arbor Stage I Adult Non-Hodgkin Lymphoma 7 246225 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 8 246226 -NCIT:C8464 Ann Arbor Stage I Indolent Adult Non-Hodgkin Lymphoma 8 246227 -NCIT:C9252 Ann Arbor Stage I Aggressive Adult Non-Hodgkin Lymphoma 8 246228 -NCIT:C8079 Ann Arbor Stage I Adult Lymphoblastic Lymphoma 9 246229 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 9 246230 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 9 246231 -NCIT:C8103 Ann Arbor Stage II Adult Non-Hodgkin Lymphoma 7 246232 -NCIT:C68686 Ann Arbor Stage II Aggressive Adult Non-Hodgkin Lymphoma 8 246233 -NCIT:C8125 Ann Arbor Stage II Adult Lymphoblastic Lymphoma 9 246234 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 10 246235 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 10 246236 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 9 246237 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 10 246238 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 10 246239 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 9 246240 -NCIT:C8472 Ann Arbor Stage II Contiguous Adult Aggressive Non-Hodgkin Lymphoma 9 246241 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 10 246242 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 10 246243 -NCIT:C8479 Ann Arbor Stage II Non-Contiguous Aggressive Adult Non-Hodgkin Lymphoma 9 246244 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 10 246245 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 10 246246 -NCIT:C68688 Ann Arbor Stage II Indolent Adult Non-Hodgkin Lymphoma 8 246247 -NCIT:C8467 Ann Arbor Stage II Contiguous Adult Indolent Non-Hodgkin Lymphoma 9 246248 -NCIT:C8478 Ann Arbor Stage II Non-Contiguous Adult Indolent Non-Hodgkin Lymphoma 9 246249 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 8 246250 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 9 246251 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 9 246252 -NCIT:C8466 Ann Arbor Stage II Contiguous Adult Non-Hodgkin Lymphoma 8 246253 -NCIT:C8467 Ann Arbor Stage II Contiguous Adult Indolent Non-Hodgkin Lymphoma 9 246254 -NCIT:C8472 Ann Arbor Stage II Contiguous Adult Aggressive Non-Hodgkin Lymphoma 9 246255 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 10 246256 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 10 246257 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 9 246258 -NCIT:C8477 Ann Arbor Stage II Non-Contiguous Adult Non-Hodgkin Lymphoma 8 246259 -NCIT:C8478 Ann Arbor Stage II Non-Contiguous Adult Indolent Non-Hodgkin Lymphoma 9 246260 -NCIT:C8479 Ann Arbor Stage II Non-Contiguous Aggressive Adult Non-Hodgkin Lymphoma 9 246261 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 10 246262 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 10 246263 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 9 246264 -NCIT:C8104 Ann Arbor Stage III Adult Non-Hodgkin Lymphoma 7 246265 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 8 246266 -NCIT:C8482 Ann Arbor Stage III Indolent Adult Non-Hodgkin Lymphoma 8 246267 -NCIT:C8484 Ann Arbor Stage III Aggressive Adult Non-Hodgkin Lymphoma 8 246268 -NCIT:C8138 Ann Arbor Stage III Adult Lymphoblastic Lymphoma 9 246269 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 9 246270 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 9 246271 -NCIT:C8105 Ann Arbor Stage IV Adult Non-Hodgkin Lymphoma 7 246272 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 8 246273 -NCIT:C8485 Ann Arbor Stage IV Indolent Adult Non-Hodgkin Lymphoma 8 246274 -NCIT:C8487 Ann Arbor Stage IV Aggressive Adult Non-Hodgkin Lymphoma 8 246275 -NCIT:C8151 Ann Arbor Stage IV Adult Lymphoblastic Lymphoma 9 246276 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 9 246277 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 9 246278 -NCIT:C27367 Adult Anaplastic Large Cell Lymphoma 6 246279 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 7 246280 -NCIT:C27366 Adult Systemic Anaplastic Large Cell Lymphoma 7 246281 -NCIT:C7615 Adult Diffuse Large B-Cell Lymphoma 6 246282 -NCIT:C115150 Adult Grade III Lymphomatoid Granulomatosis 7 246283 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 8 246284 -NCIT:C188457 Adult EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 7 246285 -NCIT:C7873 Adult Immunoblastic Lymphoma 7 246286 -NCIT:C8078 Ann Arbor Stage I Adult Immunoblastic Lymphoma 8 246287 -NCIT:C8124 Ann Arbor Stage II Adult Immunoblastic Lymphoma 8 246288 -NCIT:C8564 Ann Arbor Stage II Adult Contiguous Immunoblastic Lymphoma 9 246289 -NCIT:C8565 Ann Arbor Stage II Adult Non-Contiguous Immunoblastic Lymphoma 9 246290 -NCIT:C8137 Ann Arbor Stage III Adult Immunoblastic Lymphoma 8 246291 -NCIT:C8150 Ann Arbor Stage IV Adult Immunoblastic Lymphoma 8 246292 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 8 246293 -NCIT:C8098 Recurrent Adult Non-Hodgkin Lymphoma 6 246294 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 7 246295 -NCIT:C8488 Recurrent Indolent Adult Non-Hodgkin Lymphoma 7 246296 -NCIT:C8490 Recurrent Aggressive Adult Non-Hodgkin Lymphoma 7 246297 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 8 246298 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 8 246299 -NCIT:C8164 Recurrent Adult Lymphoblastic Lymphoma 8 246300 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 8 246301 -NCIT:C8491 Indolent Adult Non-Hodgkin Lymphoma 6 246302 -NCIT:C148175 Refractory Indolent Adult Non-Hodgkin Lymphoma 7 246303 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 7 246304 -NCIT:C68688 Ann Arbor Stage II Indolent Adult Non-Hodgkin Lymphoma 7 246305 -NCIT:C8467 Ann Arbor Stage II Contiguous Adult Indolent Non-Hodgkin Lymphoma 8 246306 -NCIT:C8478 Ann Arbor Stage II Non-Contiguous Adult Indolent Non-Hodgkin Lymphoma 8 246307 -NCIT:C8464 Ann Arbor Stage I Indolent Adult Non-Hodgkin Lymphoma 7 246308 -NCIT:C8482 Ann Arbor Stage III Indolent Adult Non-Hodgkin Lymphoma 7 246309 -NCIT:C8485 Ann Arbor Stage IV Indolent Adult Non-Hodgkin Lymphoma 7 246310 -NCIT:C8488 Recurrent Indolent Adult Non-Hodgkin Lymphoma 7 246311 -NCIT:C8492 Aggressive Adult Non-Hodgkin Lymphoma 6 246312 -NCIT:C115150 Adult Grade III Lymphomatoid Granulomatosis 7 246313 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 8 246314 -NCIT:C115154 Adult Nasal Type Extranodal NK/T-Cell Lymphoma 7 246315 -NCIT:C3184 Adult T-Cell Leukemia/Lymphoma 7 246316 -NCIT:C141283 Adult T-Cell Leukemia/Lymphoma by Ann Arbor Stage 8 246317 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 9 246318 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 9 246319 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 9 246320 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 9 246321 -NCIT:C36265 Acute Adult T-Cell Leukemia/Lymphoma 8 246322 -NCIT:C36266 Lymphomatous Adult T-Cell Leukemia/Lymphoma 8 246323 -NCIT:C36268 Hodgkin-Like Adult T-Cell Leukemia/Lymphoma 8 246324 -NCIT:C45272 Cutaneous Adult T-Cell Leukemia/Lymphoma 8 246325 -NCIT:C7178 Smoldering Adult T-Cell Leukemia/Lymphoma 8 246326 -NCIT:C7179 Chronic Adult T-Cell Leukemia/Lymphoma 8 246327 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 8 246328 -NCIT:C8657 Refractory Adult T-Cell Leukemia/Lymphoma 8 246329 -NCIT:C68686 Ann Arbor Stage II Aggressive Adult Non-Hodgkin Lymphoma 7 246330 -NCIT:C8125 Ann Arbor Stage II Adult Lymphoblastic Lymphoma 8 246331 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 9 246332 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 9 246333 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 8 246334 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 9 246335 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 9 246336 -NCIT:C8248 Ann Arbor Stage II Adult T-Cell Leukemia/Lymphoma 8 246337 -NCIT:C8472 Ann Arbor Stage II Contiguous Adult Aggressive Non-Hodgkin Lymphoma 8 246338 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 9 246339 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 9 246340 -NCIT:C8479 Ann Arbor Stage II Non-Contiguous Aggressive Adult Non-Hodgkin Lymphoma 8 246341 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 9 246342 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 9 246343 -NCIT:C8484 Ann Arbor Stage III Aggressive Adult Non-Hodgkin Lymphoma 7 246344 -NCIT:C8138 Ann Arbor Stage III Adult Lymphoblastic Lymphoma 8 246345 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 8 246346 -NCIT:C8249 Ann Arbor Stage III Adult T-Cell Leukemia/Lymphoma 8 246347 -NCIT:C8487 Ann Arbor Stage IV Aggressive Adult Non-Hodgkin Lymphoma 7 246348 -NCIT:C8151 Ann Arbor Stage IV Adult Lymphoblastic Lymphoma 8 246349 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 8 246350 -NCIT:C8250 Ann Arbor Stage IV Adult T-Cell Leukemia/Lymphoma 8 246351 -NCIT:C8490 Recurrent Aggressive Adult Non-Hodgkin Lymphoma 7 246352 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 8 246353 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 8 246354 -NCIT:C8164 Recurrent Adult Lymphoblastic Lymphoma 8 246355 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 8 246356 -NCIT:C9062 Adult Burkitt Lymphoma 7 246357 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 8 246358 -NCIT:C8126 Ann Arbor Stage II Adult Burkitt Lymphoma 8 246359 -NCIT:C9193 Ann Arbor Stage II Contiguous Adult Burkitt Lymphoma 9 246360 -NCIT:C9200 Ann Arbor Stage II Non-Contiguous Adult Burkitt Lymphoma 9 246361 -NCIT:C8139 Ann Arbor Stage III Adult Burkitt Lymphoma 8 246362 -NCIT:C8152 Ann Arbor Stage IV Adult Burkitt Lymphoma 8 246363 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 8 246364 -NCIT:C9252 Ann Arbor Stage I Aggressive Adult Non-Hodgkin Lymphoma 7 246365 -NCIT:C8079 Ann Arbor Stage I Adult Lymphoblastic Lymphoma 8 246366 -NCIT:C8080 Ann Arbor Stage I Adult Burkitt Lymphoma 8 246367 -NCIT:C8247 Ann Arbor Stage I Adult T-Cell Leukemia/Lymphoma 8 246368 -NCIT:C9361 Adult Lymphoblastic Lymphoma 7 246369 -NCIT:C7226 Adult T Lymphoblastic Lymphoma 8 246370 -NCIT:C7338 Adult B Lymphoblastic Lymphoma 8 246371 -NCIT:C8079 Ann Arbor Stage I Adult Lymphoblastic Lymphoma 8 246372 -NCIT:C8125 Ann Arbor Stage II Adult Lymphoblastic Lymphoma 8 246373 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 9 246374 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 9 246375 -NCIT:C8138 Ann Arbor Stage III Adult Lymphoblastic Lymphoma 8 246376 -NCIT:C8151 Ann Arbor Stage IV Adult Lymphoblastic Lymphoma 8 246377 -NCIT:C8164 Recurrent Adult Lymphoblastic Lymphoma 8 246378 -NCIT:C9357 Hodgkin Lymphoma 4 246379 -NCIT:C114949 Secondary Central Nervous System Hodgkin Lymphoma 5 246380 -NCIT:C5057 Secondary Cerebral Hodgkin Lymphoma 6 246381 -NCIT:C114951 Central Nervous System Hodgkin Lymphoma 5 246382 -NCIT:C5055 Cerebral Hodgkin Lymphoma 6 246383 -NCIT:C141141 Hodgkin Lymphoma by Ann Arbor Stage 5 246384 -NCIT:C141222 Lymphocyte-Depleted Classic Hodgkin Lymphoma by Ann Arbor Stage 6 246385 -NCIT:C3583 Ann Arbor Stage III Lymphocyte-Depleted Classic Hodgkin Lymphoma 7 246386 -NCIT:C5064 Ann Arbor Stage I Lymphocyte-Depleted Classic Hodgkin Lymphoma 7 246387 -NCIT:C5065 Ann Arbor Stage I Subdiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 246388 -NCIT:C5066 Ann Arbor Stage I Supradiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 246389 -NCIT:C5067 Ann Arbor Stage II Lymphocyte-Depleted Classic Hodgkin Lymphoma 7 246390 -NCIT:C5068 Ann Arbor Stage II Subdiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 246391 -NCIT:C5069 Ann Arbor Stage II Supradiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 246392 -NCIT:C8651 Ann Arbor Stage IV Lymphocyte-Depleted Classic Hodgkin Lymphoma 7 246393 -NCIT:C141223 Nodular Sclerosis Classic Hodgkin Lymphoma by Ann Arbor Stage 6 246394 -NCIT:C3581 Ann Arbor Stage III Nodular Sclerosis Classic Hodgkin Lymphoma 7 246395 -NCIT:C5081 Ann Arbor Stage II Nodular Sclerosis Classic Hodgkin Lymphoma 7 246396 -NCIT:C5082 Ann Arbor Stage II Subdiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 8 246397 -NCIT:C5083 Ann Arbor Stage II Supradiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 8 246398 -NCIT:C8839 Ann Arbor Stage I Nodular Sclerosis Classic Hodgkin Lymphoma 7 246399 -NCIT:C5079 Ann Arbor Stage I Subdiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 8 246400 -NCIT:C5080 Ann Arbor Stage I Supradiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 8 246401 -NCIT:C8840 Ann Arbor Stage IV Nodular Sclerosis Classic Hodgkin Lymphoma 7 246402 -NCIT:C141224 Mixed Cellularity Classic Hodgkin Lymphoma by Ann Arbor Stage 6 246403 -NCIT:C3582 Ann Arbor Stage III Mixed Cellularity Classic Hodgkin Lymphoma 7 246404 -NCIT:C5077 Ann Arbor Stage II Mixed Cellularity Classic Hodgkin Lymphoma 7 246405 -NCIT:C5078 Ann Arbor Stage II Subdiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 8 246406 -NCIT:C5104 Ann Arbor Stage II Supradiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 8 246407 -NCIT:C8834 Ann Arbor Stage I Mixed Cellularity Classic Hodgkin Lymphoma 7 246408 -NCIT:C5075 Ann Arbor Stage I Subdiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 8 246409 -NCIT:C5076 Ann Arbor Stage I Supradiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 8 246410 -NCIT:C8835 Ann Arbor Stage IV Mixed Cellularity Classic Hodgkin Lymphoma 7 246411 -NCIT:C141225 Nodular Lymphocyte Predominant Hodgkin Lymphoma by Ann Arbor Stage 6 246412 -NCIT:C5070 Ann Arbor Stage II Nodular Lymphocyte Predominant Hodgkin Lymphoma 7 246413 -NCIT:C5071 Ann Arbor Stage II Subdiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 246414 -NCIT:C5072 Ann Arbor Stage II Supradiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 246415 -NCIT:C5634 Ann Arbor Stage I Nodular Lymphocyte Predominant Hodgkin Lymphoma 7 246416 -NCIT:C5073 Ann Arbor Stage I Subdiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 246417 -NCIT:C5074 Ann Arbor Stage I Supradiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 246418 -NCIT:C7261 Ann Arbor Stage IV Nodular Lymphocyte Predominant Hodgkin Lymphoma 7 246419 -NCIT:C7262 Ann Arbor Stage III Nodular Lymphocyte Predominant Hodgkin Lymphoma 7 246420 -NCIT:C141226 Adult Hodgkin Lymphoma by Ann Arbor Stage 6 246421 -NCIT:C9032 Ann Arbor Stage I Adult Hodgkin Lymphoma 7 246422 -NCIT:C9033 Ann Arbor Stage II Adult Hodgkin Lymphoma 7 246423 -NCIT:C9034 Ann Arbor Stage III Adult Hodgkin Lymphoma 7 246424 -NCIT:C9035 Ann Arbor Stage IV Adult Hodgkin Lymphoma 7 246425 -NCIT:C141227 Childhood Hodgkin Lymphoma by Ann Arbor Stage 6 246426 -NCIT:C8055 Ann Arbor Stage II Childhood Hodgkin Lymphoma 7 246427 -NCIT:C8056 Ann Arbor Stage I Childhood Hodgkin Lymphoma 7 246428 -NCIT:C8057 Ann Arbor Stage III Childhood Hodgkin Lymphoma 7 246429 -NCIT:C8058 Ann Arbor Stage IV Childhood Hodgkin Lymphoma 7 246430 -NCIT:C3584 Ann Arbor Stage III Hodgkin Lymphoma 6 246431 -NCIT:C3581 Ann Arbor Stage III Nodular Sclerosis Classic Hodgkin Lymphoma 7 246432 -NCIT:C3582 Ann Arbor Stage III Mixed Cellularity Classic Hodgkin Lymphoma 7 246433 -NCIT:C3583 Ann Arbor Stage III Lymphocyte-Depleted Classic Hodgkin Lymphoma 7 246434 -NCIT:C3914 Ann Arbor Stage IIIA Hodgkin Lymphoma 7 246435 -NCIT:C4058 Ann Arbor Stage IIIB Hodgkin Lymphoma 7 246436 -NCIT:C7262 Ann Arbor Stage III Nodular Lymphocyte Predominant Hodgkin Lymphoma 7 246437 -NCIT:C8057 Ann Arbor Stage III Childhood Hodgkin Lymphoma 7 246438 -NCIT:C9034 Ann Arbor Stage III Adult Hodgkin Lymphoma 7 246439 -NCIT:C8517 Ann Arbor Stage I Hodgkin Lymphoma 6 246440 -NCIT:C3911 Ann Arbor Stage IA Hodgkin Lymphoma 7 246441 -NCIT:C5011 Ann Arbor Stage I Supradiaphragmatic Hodgkin Lymphoma 7 246442 -NCIT:C5066 Ann Arbor Stage I Supradiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 246443 -NCIT:C5074 Ann Arbor Stage I Supradiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 246444 -NCIT:C5076 Ann Arbor Stage I Supradiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 8 246445 -NCIT:C5080 Ann Arbor Stage I Supradiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 8 246446 -NCIT:C5012 Ann Arbor Stage I Subdiaphragmatic Hodgkin Lymphoma 7 246447 -NCIT:C5065 Ann Arbor Stage I Subdiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 246448 -NCIT:C5073 Ann Arbor Stage I Subdiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 246449 -NCIT:C5075 Ann Arbor Stage I Subdiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 8 246450 -NCIT:C5079 Ann Arbor Stage I Subdiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 8 246451 -NCIT:C5064 Ann Arbor Stage I Lymphocyte-Depleted Classic Hodgkin Lymphoma 7 246452 -NCIT:C5065 Ann Arbor Stage I Subdiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 246453 -NCIT:C5066 Ann Arbor Stage I Supradiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 246454 -NCIT:C5632 Ann Arbor Stage IB Hodgkin Lymphoma 7 246455 -NCIT:C5634 Ann Arbor Stage I Nodular Lymphocyte Predominant Hodgkin Lymphoma 7 246456 -NCIT:C5073 Ann Arbor Stage I Subdiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 246457 -NCIT:C5074 Ann Arbor Stage I Supradiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 246458 -NCIT:C8056 Ann Arbor Stage I Childhood Hodgkin Lymphoma 7 246459 -NCIT:C8834 Ann Arbor Stage I Mixed Cellularity Classic Hodgkin Lymphoma 7 246460 -NCIT:C5075 Ann Arbor Stage I Subdiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 8 246461 -NCIT:C5076 Ann Arbor Stage I Supradiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 8 246462 -NCIT:C8839 Ann Arbor Stage I Nodular Sclerosis Classic Hodgkin Lymphoma 7 246463 -NCIT:C5079 Ann Arbor Stage I Subdiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 8 246464 -NCIT:C5080 Ann Arbor Stage I Supradiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 8 246465 -NCIT:C9032 Ann Arbor Stage I Adult Hodgkin Lymphoma 7 246466 -NCIT:C8518 Ann Arbor Stage II Hodgkin Lymphoma 6 246467 -NCIT:C3912 Ann Arbor Stage IIA Hodgkin Lymphoma 7 246468 -NCIT:C3913 Ann Arbor Stage IIB Hodgkin Lymphoma 7 246469 -NCIT:C5009 Ann Arbor Stage II Supradiaphragmatic Hodgkin Lymphoma 7 246470 -NCIT:C5069 Ann Arbor Stage II Supradiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 246471 -NCIT:C5072 Ann Arbor Stage II Supradiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 246472 -NCIT:C5083 Ann Arbor Stage II Supradiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 8 246473 -NCIT:C5104 Ann Arbor Stage II Supradiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 8 246474 -NCIT:C5010 Ann Arbor Stage II Subdiaphragmatic Hodgkin Lymphoma 7 246475 -NCIT:C5068 Ann Arbor Stage II Subdiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 246476 -NCIT:C5071 Ann Arbor Stage II Subdiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 246477 -NCIT:C5078 Ann Arbor Stage II Subdiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 8 246478 -NCIT:C5082 Ann Arbor Stage II Subdiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 8 246479 -NCIT:C5067 Ann Arbor Stage II Lymphocyte-Depleted Classic Hodgkin Lymphoma 7 246480 -NCIT:C5068 Ann Arbor Stage II Subdiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 246481 -NCIT:C5069 Ann Arbor Stage II Supradiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 246482 -NCIT:C5070 Ann Arbor Stage II Nodular Lymphocyte Predominant Hodgkin Lymphoma 7 246483 -NCIT:C5071 Ann Arbor Stage II Subdiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 246484 -NCIT:C5072 Ann Arbor Stage II Supradiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 246485 -NCIT:C5077 Ann Arbor Stage II Mixed Cellularity Classic Hodgkin Lymphoma 7 246486 -NCIT:C5078 Ann Arbor Stage II Subdiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 8 246487 -NCIT:C5104 Ann Arbor Stage II Supradiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 8 246488 -NCIT:C5081 Ann Arbor Stage II Nodular Sclerosis Classic Hodgkin Lymphoma 7 246489 -NCIT:C5082 Ann Arbor Stage II Subdiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 8 246490 -NCIT:C5083 Ann Arbor Stage II Supradiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 8 246491 -NCIT:C8055 Ann Arbor Stage II Childhood Hodgkin Lymphoma 7 246492 -NCIT:C9033 Ann Arbor Stage II Adult Hodgkin Lymphoma 7 246493 -NCIT:C8519 Ann Arbor Stage IV Hodgkin Lymphoma 6 246494 -NCIT:C4059 Ann Arbor Stage IVA Hodgkin Lymphoma 7 246495 -NCIT:C5633 Ann Arbor Stage IVB Hodgkin Lymphoma 7 246496 -NCIT:C7261 Ann Arbor Stage IV Nodular Lymphocyte Predominant Hodgkin Lymphoma 7 246497 -NCIT:C8058 Ann Arbor Stage IV Childhood Hodgkin Lymphoma 7 246498 -NCIT:C8651 Ann Arbor Stage IV Lymphocyte-Depleted Classic Hodgkin Lymphoma 7 246499 -NCIT:C8835 Ann Arbor Stage IV Mixed Cellularity Classic Hodgkin Lymphoma 7 246500 -NCIT:C8840 Ann Arbor Stage IV Nodular Sclerosis Classic Hodgkin Lymphoma 7 246501 -NCIT:C9035 Ann Arbor Stage IV Adult Hodgkin Lymphoma 7 246502 -NCIT:C141168 Lugano Classification Hodgkin Lymphoma by AJCC v8 Stage 5 246503 -NCIT:C141169 Lugano Classification Limited Stage Hodgkin Lymphoma AJCC v8 6 246504 -NCIT:C141170 Lugano Classification Stage I Hodgkin Lymphoma AJCC v8 7 246505 -NCIT:C141180 Lugano Classification Stage I Childhood Hodgkin Lymphoma AJCC v8 8 246506 -NCIT:C141191 Lugano Classification Stage I Adult Hodgkin Lymphoma AJCC v8 8 246507 -NCIT:C141171 Lugano Classification Stage IE Hodgkin Lymphoma AJCC v8 7 246508 -NCIT:C141181 Lugano Classification Stage IE Childhood Hodgkin Lymphoma AJCC v8 8 246509 -NCIT:C141192 Lugano Classification Stage IE Adult Hodgkin Lymphoma AJCC v8 8 246510 -NCIT:C141172 Lugano Classification Stage II Hodgkin Lymphoma AJCC v8 7 246511 -NCIT:C141174 Lugano Classification Stage II Bulky Hodgkin Lymphoma AJCC v8 8 246512 -NCIT:C141184 Lugano Classification Stage II Bulky Childhood Hodgkin Lymphoma AJCC v8 9 246513 -NCIT:C141195 Lugano Classification Stage II Bulky Adult Hodgkin Lymphoma AJCC v8 9 246514 -NCIT:C141182 Lugano Classification Stage II Childhood Hodgkin Lymphoma AJCC v8 8 246515 -NCIT:C141184 Lugano Classification Stage II Bulky Childhood Hodgkin Lymphoma AJCC v8 9 246516 -NCIT:C141193 Lugano Classification Stage II Adult Hodgkin Lymphoma AJCC v8 8 246517 -NCIT:C141195 Lugano Classification Stage II Bulky Adult Hodgkin Lymphoma AJCC v8 9 246518 -NCIT:C141173 Lugano Classification Stage IIE Hodgkin Lymphoma AJCC v8 7 246519 -NCIT:C141183 Lugano Classification Stage IIE Childhood Hodgkin Lymphoma AJCC v8 8 246520 -NCIT:C141194 Lugano Classification Stage IIE Adult Hodgkin Lymphoma AJCC v8 8 246521 -NCIT:C141179 Lugano Classification Limited Stage Childhood Hodgkin Lymphoma AJCC v8 7 246522 -NCIT:C141180 Lugano Classification Stage I Childhood Hodgkin Lymphoma AJCC v8 8 246523 -NCIT:C141181 Lugano Classification Stage IE Childhood Hodgkin Lymphoma AJCC v8 8 246524 -NCIT:C141182 Lugano Classification Stage II Childhood Hodgkin Lymphoma AJCC v8 8 246525 -NCIT:C141184 Lugano Classification Stage II Bulky Childhood Hodgkin Lymphoma AJCC v8 9 246526 -NCIT:C141183 Lugano Classification Stage IIE Childhood Hodgkin Lymphoma AJCC v8 8 246527 -NCIT:C141190 Lugano Classification Limited Stage Adult Hodgkin Lymphoma AJCC v8 7 246528 -NCIT:C141191 Lugano Classification Stage I Adult Hodgkin Lymphoma AJCC v8 8 246529 -NCIT:C141192 Lugano Classification Stage IE Adult Hodgkin Lymphoma AJCC v8 8 246530 -NCIT:C141193 Lugano Classification Stage II Adult Hodgkin Lymphoma AJCC v8 8 246531 -NCIT:C141195 Lugano Classification Stage II Bulky Adult Hodgkin Lymphoma AJCC v8 9 246532 -NCIT:C141194 Lugano Classification Stage IIE Adult Hodgkin Lymphoma AJCC v8 8 246533 -NCIT:C141175 Lugano Classification Advanced Stage Hodgkin Lymphoma AJCC v8 6 246534 -NCIT:C141176 Lugano Classification Stage III Hodgkin Lymphoma AJCC v8 7 246535 -NCIT:C141186 Lugano Classification Stage III Childhood Hodgkin Lymphoma AJCC v8 8 246536 -NCIT:C141197 Lugano Classification Stage III Adult Hodgkin Lymphoma AJCC v8 8 246537 -NCIT:C141177 Lugano Classification Stage IV Hodgkin Lymphoma AJCC v8 7 246538 -NCIT:C141187 Lugano Classification Stage IV Childhood Hodgkin Lymphoma AJCC v8 8 246539 -NCIT:C141198 Lugano Classification Stage IV Adult Hodgkin Lymphoma AJCC v8 8 246540 -NCIT:C141185 Lugano Classification Advanced Stage Childhood Hodgkin Lymphoma AJCC v8 7 246541 -NCIT:C141186 Lugano Classification Stage III Childhood Hodgkin Lymphoma AJCC v8 8 246542 -NCIT:C141187 Lugano Classification Stage IV Childhood Hodgkin Lymphoma AJCC v8 8 246543 -NCIT:C141196 Lugano Classification Advanced Stage Adult Hodgkin Lymphoma AJCC v8 7 246544 -NCIT:C141197 Lugano Classification Stage III Adult Hodgkin Lymphoma AJCC v8 8 246545 -NCIT:C141198 Lugano Classification Stage IV Adult Hodgkin Lymphoma AJCC v8 8 246546 -NCIT:C141178 Lugano Classification Childhood Hodgkin Lymphoma by AJCC v8 Stage 6 246547 -NCIT:C141179 Lugano Classification Limited Stage Childhood Hodgkin Lymphoma AJCC v8 7 246548 -NCIT:C141180 Lugano Classification Stage I Childhood Hodgkin Lymphoma AJCC v8 8 246549 -NCIT:C141181 Lugano Classification Stage IE Childhood Hodgkin Lymphoma AJCC v8 8 246550 -NCIT:C141182 Lugano Classification Stage II Childhood Hodgkin Lymphoma AJCC v8 8 246551 -NCIT:C141184 Lugano Classification Stage II Bulky Childhood Hodgkin Lymphoma AJCC v8 9 246552 -NCIT:C141183 Lugano Classification Stage IIE Childhood Hodgkin Lymphoma AJCC v8 8 246553 -NCIT:C141185 Lugano Classification Advanced Stage Childhood Hodgkin Lymphoma AJCC v8 7 246554 -NCIT:C141186 Lugano Classification Stage III Childhood Hodgkin Lymphoma AJCC v8 8 246555 -NCIT:C141187 Lugano Classification Stage IV Childhood Hodgkin Lymphoma AJCC v8 8 246556 -NCIT:C141189 Lugano Classification Adult Hodgkin Lymphoma by AJCC v8 Stage 6 246557 -NCIT:C141190 Lugano Classification Limited Stage Adult Hodgkin Lymphoma AJCC v8 7 246558 -NCIT:C141191 Lugano Classification Stage I Adult Hodgkin Lymphoma AJCC v8 8 246559 -NCIT:C141192 Lugano Classification Stage IE Adult Hodgkin Lymphoma AJCC v8 8 246560 -NCIT:C141193 Lugano Classification Stage II Adult Hodgkin Lymphoma AJCC v8 8 246561 -NCIT:C141195 Lugano Classification Stage II Bulky Adult Hodgkin Lymphoma AJCC v8 9 246562 -NCIT:C141194 Lugano Classification Stage IIE Adult Hodgkin Lymphoma AJCC v8 8 246563 -NCIT:C141196 Lugano Classification Advanced Stage Adult Hodgkin Lymphoma AJCC v8 7 246564 -NCIT:C141197 Lugano Classification Stage III Adult Hodgkin Lymphoma AJCC v8 8 246565 -NCIT:C141198 Lugano Classification Stage IV Adult Hodgkin Lymphoma AJCC v8 8 246566 -NCIT:C172373 Advanced Hodgkin Lymphoma 5 246567 -NCIT:C68662 Advanced Favorable Hodgkin Lymphoma 6 246568 -NCIT:C68665 Advanced Unfavorable Hodgkin Lymphoma 6 246569 -NCIT:C173356 Pharyngeal Hodgkin Lymphoma 5 246570 -NCIT:C173361 Nasopharyngeal Hodgkin Lymphoma 6 246571 -NCIT:C173578 Oropharyngeal Hodgkin Lymphoma 6 246572 -NCIT:C173692 Salivary Gland Hodgkin Lymphoma 5 246573 -NCIT:C181205 Lung Hodgkin Lymphoma 5 246574 -NCIT:C181207 Primary Bone Hodgkin Lymphoma 5 246575 -NCIT:C181209 Thyroid Gland Hodgkin Lymphoma 5 246576 -NCIT:C27692 EBV-Related Hodgkin Lymphoma 5 246577 -NCIT:C7243 Classic Hodgkin Lymphoma Type Post-Transplant Lymphoproliferative Disorder 6 246578 -NCIT:C38163 Digestive System Hodgkin Lymphoma 5 246579 -NCIT:C5337 Small Intestinal Hodgkin Lymphoma 6 246580 -NCIT:C5638 Gastric Hodgkin Lymphoma 6 246581 -NCIT:C5689 Esophageal Hodgkin Lymphoma 6 246582 -NCIT:C96500 Colorectal Hodgkin Lymphoma 6 246583 -NCIT:C5499 Colon Hodgkin Lymphoma 7 246584 -NCIT:C4937 Recurrent Hodgkin Lymphoma 5 246585 -NCIT:C133592 Recurrent Classic Hodgkin Lymphoma 6 246586 -NCIT:C136971 Recurrent Lymphocyte-Rich Classic Hodgkin Lymphoma 7 246587 -NCIT:C8649 Recurrent Lymphocyte-Depleted Classic Hodgkin Lymphoma 7 246588 -NCIT:C8832 Recurrent Mixed Cellularity Classic Hodgkin Lymphoma 7 246589 -NCIT:C8837 Recurrent Nodular Sclerosis Classic Hodgkin Lymphoma 7 246590 -NCIT:C7259 Recurrent Nodular Lymphocyte Predominant Hodgkin Lymphoma 6 246591 -NCIT:C7789 Recurrent Adult Hodgkin Lymphoma 6 246592 -NCIT:C8059 Recurrent Childhood Hodgkin Lymphoma 6 246593 -NCIT:C6634 Mediastinal Hodgkin Lymphoma 5 246594 -NCIT:C95057 Thymic Hodgkin Lymphoma 6 246595 -NCIT:C6723 Chest Wall Hodgkin Lymphoma 5 246596 -NCIT:C68666 Hodgkin Lymphoma by Clinical Course 5 246597 -NCIT:C68660 Favorable Hodgkin Lymphoma 6 246598 -NCIT:C114806 Childhood Favorable Prognosis Hodgkin Lymphoma 7 246599 -NCIT:C114807 Adult Favorable Prognosis Hodgkin Lymphoma 7 246600 -NCIT:C68661 Early Favorable Hodgkin Lymphoma 7 246601 -NCIT:C68662 Advanced Favorable Hodgkin Lymphoma 7 246602 -NCIT:C68663 Unfavorable Hodgkin Lymphoma 6 246603 -NCIT:C114808 Childhood Unfavorable Prognosis Hodgkin Lymphoma 7 246604 -NCIT:C114809 Adult Unfavorable Prognosis Hodgkin Lymphoma 7 246605 -NCIT:C68664 Early Unfavorable Hodgkin Lymphoma 7 246606 -NCIT:C68665 Advanced Unfavorable Hodgkin Lymphoma 7 246607 -NCIT:C7164 Classic Hodgkin Lymphoma 5 246608 -NCIT:C133592 Recurrent Classic Hodgkin Lymphoma 6 246609 -NCIT:C136971 Recurrent Lymphocyte-Rich Classic Hodgkin Lymphoma 7 246610 -NCIT:C8649 Recurrent Lymphocyte-Depleted Classic Hodgkin Lymphoma 7 246611 -NCIT:C8832 Recurrent Mixed Cellularity Classic Hodgkin Lymphoma 7 246612 -NCIT:C8837 Recurrent Nodular Sclerosis Classic Hodgkin Lymphoma 7 246613 -NCIT:C133736 Refractory Classic Hodgkin Lymphoma 6 246614 -NCIT:C142982 Refractory Lymphocyte-Rich Classic Hodgkin Lymphoma 7 246615 -NCIT:C8650 Refractory Lymphocyte-Depleted Classic Hodgkin Lymphoma 7 246616 -NCIT:C8833 Refractory Mixed Cellularity Classic Hodgkin Lymphoma 7 246617 -NCIT:C8838 Refractory Nodular Sclerosis Classic Hodgkin Lymphoma 7 246618 -NCIT:C3517 Mixed Cellularity Classic Hodgkin Lymphoma 6 246619 -NCIT:C141224 Mixed Cellularity Classic Hodgkin Lymphoma by Ann Arbor Stage 7 246620 -NCIT:C3582 Ann Arbor Stage III Mixed Cellularity Classic Hodgkin Lymphoma 8 246621 -NCIT:C5077 Ann Arbor Stage II Mixed Cellularity Classic Hodgkin Lymphoma 8 246622 -NCIT:C5078 Ann Arbor Stage II Subdiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 9 246623 -NCIT:C5104 Ann Arbor Stage II Supradiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 9 246624 -NCIT:C8834 Ann Arbor Stage I Mixed Cellularity Classic Hodgkin Lymphoma 8 246625 -NCIT:C5075 Ann Arbor Stage I Subdiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 9 246626 -NCIT:C5076 Ann Arbor Stage I Supradiaphragmatic Mixed Cellularity Classic Hodgkin Lymphoma 9 246627 -NCIT:C8835 Ann Arbor Stage IV Mixed Cellularity Classic Hodgkin Lymphoma 8 246628 -NCIT:C8063 Childhood Mixed Cellularity Classic Hodgkin Lymphoma 7 246629 -NCIT:C8832 Recurrent Mixed Cellularity Classic Hodgkin Lymphoma 7 246630 -NCIT:C8833 Refractory Mixed Cellularity Classic Hodgkin Lymphoma 7 246631 -NCIT:C9127 Adult Mixed Cellularity Classic Hodgkin Lymphoma 7 246632 -NCIT:C3518 Nodular Sclerosis Classic Hodgkin Lymphoma 6 246633 -NCIT:C141223 Nodular Sclerosis Classic Hodgkin Lymphoma by Ann Arbor Stage 7 246634 -NCIT:C3581 Ann Arbor Stage III Nodular Sclerosis Classic Hodgkin Lymphoma 8 246635 -NCIT:C5081 Ann Arbor Stage II Nodular Sclerosis Classic Hodgkin Lymphoma 8 246636 -NCIT:C5082 Ann Arbor Stage II Subdiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 9 246637 -NCIT:C5083 Ann Arbor Stage II Supradiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 9 246638 -NCIT:C8839 Ann Arbor Stage I Nodular Sclerosis Classic Hodgkin Lymphoma 8 246639 -NCIT:C5079 Ann Arbor Stage I Subdiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 9 246640 -NCIT:C5080 Ann Arbor Stage I Supradiaphragmatic Nodular Sclerosis Classic Hodgkin Lymphoma 9 246641 -NCIT:C8840 Ann Arbor Stage IV Nodular Sclerosis Classic Hodgkin Lymphoma 8 246642 -NCIT:C27807 Nodular Sclerosis Classic Hodgkin Lymphoma, Syncytial Variant 7 246643 -NCIT:C67171 Nodular Sclerosis Classic Hodgkin Lymphoma, Cellular Phase 7 246644 -NCIT:C7165 Grade 1 Nodular Sclerosis Classic Hodgkin Lymphoma 7 246645 -NCIT:C7166 Grade 2 Nodular Sclerosis Classic Hodgkin Lymphoma 7 246646 -NCIT:C8062 Childhood Nodular Sclerosis Classic Hodgkin Lymphoma 7 246647 -NCIT:C8837 Recurrent Nodular Sclerosis Classic Hodgkin Lymphoma 7 246648 -NCIT:C8838 Refractory Nodular Sclerosis Classic Hodgkin Lymphoma 7 246649 -NCIT:C9126 Adult Nodular Sclerosis Classic Hodgkin Lymphoma 7 246650 -NCIT:C6913 Lymphocyte-Rich Classic Hodgkin Lymphoma 6 246651 -NCIT:C136971 Recurrent Lymphocyte-Rich Classic Hodgkin Lymphoma 7 246652 -NCIT:C142982 Refractory Lymphocyte-Rich Classic Hodgkin Lymphoma 7 246653 -NCIT:C7054 Childhood Lymphocyte-Rich Classic Hodgkin Lymphoma 7 246654 -NCIT:C7223 Adult Lymphocyte-Rich Classic Hodgkin Lymphoma 7 246655 -NCIT:C69138 Adult Classic Hodgkin Lymphoma 6 246656 -NCIT:C7223 Adult Lymphocyte-Rich Classic Hodgkin Lymphoma 7 246657 -NCIT:C9125 Adult Lymphocyte-Depleted Classic Hodgkin Lymphoma 7 246658 -NCIT:C9126 Adult Nodular Sclerosis Classic Hodgkin Lymphoma 7 246659 -NCIT:C9127 Adult Mixed Cellularity Classic Hodgkin Lymphoma 7 246660 -NCIT:C69142 Childhood Classic Hodgkin Lymphoma 6 246661 -NCIT:C7054 Childhood Lymphocyte-Rich Classic Hodgkin Lymphoma 7 246662 -NCIT:C8061 Childhood Lymphocyte-Depleted Classic Hodgkin Lymphoma 7 246663 -NCIT:C8062 Childhood Nodular Sclerosis Classic Hodgkin Lymphoma 7 246664 -NCIT:C8063 Childhood Mixed Cellularity Classic Hodgkin Lymphoma 7 246665 -NCIT:C9283 Lymphocyte-Depleted Classic Hodgkin Lymphoma 6 246666 -NCIT:C141222 Lymphocyte-Depleted Classic Hodgkin Lymphoma by Ann Arbor Stage 7 246667 -NCIT:C3583 Ann Arbor Stage III Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 246668 -NCIT:C5064 Ann Arbor Stage I Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 246669 -NCIT:C5065 Ann Arbor Stage I Subdiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 246670 -NCIT:C5066 Ann Arbor Stage I Supradiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 246671 -NCIT:C5067 Ann Arbor Stage II Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 246672 -NCIT:C5068 Ann Arbor Stage II Subdiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 246673 -NCIT:C5069 Ann Arbor Stage II Supradiaphragmatic Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 246674 -NCIT:C8651 Ann Arbor Stage IV Lymphocyte-Depleted Classic Hodgkin Lymphoma 8 246675 -NCIT:C8061 Childhood Lymphocyte-Depleted Classic Hodgkin Lymphoma 7 246676 -NCIT:C8649 Recurrent Lymphocyte-Depleted Classic Hodgkin Lymphoma 7 246677 -NCIT:C8650 Refractory Lymphocyte-Depleted Classic Hodgkin Lymphoma 7 246678 -NCIT:C9125 Adult Lymphocyte-Depleted Classic Hodgkin Lymphoma 7 246679 -NCIT:C7221 Primary Cutaneous Hodgkin Lymphoma 5 246680 -NCIT:C7256 Methotrexate-Associated Hodgkin Lymphoma 5 246681 -NCIT:C7258 Nodular Lymphocyte Predominant Hodgkin Lymphoma 5 246682 -NCIT:C141225 Nodular Lymphocyte Predominant Hodgkin Lymphoma by Ann Arbor Stage 6 246683 -NCIT:C5070 Ann Arbor Stage II Nodular Lymphocyte Predominant Hodgkin Lymphoma 7 246684 -NCIT:C5071 Ann Arbor Stage II Subdiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 246685 -NCIT:C5072 Ann Arbor Stage II Supradiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 246686 -NCIT:C5634 Ann Arbor Stage I Nodular Lymphocyte Predominant Hodgkin Lymphoma 7 246687 -NCIT:C5073 Ann Arbor Stage I Subdiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 246688 -NCIT:C5074 Ann Arbor Stage I Supradiaphragmatic Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 246689 -NCIT:C7261 Ann Arbor Stage IV Nodular Lymphocyte Predominant Hodgkin Lymphoma 7 246690 -NCIT:C7262 Ann Arbor Stage III Nodular Lymphocyte Predominant Hodgkin Lymphoma 7 246691 -NCIT:C7259 Recurrent Nodular Lymphocyte Predominant Hodgkin Lymphoma 6 246692 -NCIT:C7260 Refractory Nodular Lymphocyte Predominant Hodgkin Lymphoma 6 246693 -NCIT:C7942 Adult Nodular Lymphocyte Predominant Hodgkin Lymphoma 6 246694 -NCIT:C8060 Childhood Nodular Lymphocyte Predominant Hodgkin Lymphoma 6 246695 -NCIT:C7295 Splenic Hodgkin Lymphoma 5 246696 -NCIT:C7702 Adult Hodgkin Lymphoma 5 246697 -NCIT:C114783 Hodgkin Lymphoma During Pregnancy 6 246698 -NCIT:C114807 Adult Favorable Prognosis Hodgkin Lymphoma 6 246699 -NCIT:C114809 Adult Unfavorable Prognosis Hodgkin Lymphoma 6 246700 -NCIT:C141189 Lugano Classification Adult Hodgkin Lymphoma by AJCC v8 Stage 6 246701 -NCIT:C141190 Lugano Classification Limited Stage Adult Hodgkin Lymphoma AJCC v8 7 246702 -NCIT:C141191 Lugano Classification Stage I Adult Hodgkin Lymphoma AJCC v8 8 246703 -NCIT:C141192 Lugano Classification Stage IE Adult Hodgkin Lymphoma AJCC v8 8 246704 -NCIT:C141193 Lugano Classification Stage II Adult Hodgkin Lymphoma AJCC v8 8 246705 -NCIT:C141195 Lugano Classification Stage II Bulky Adult Hodgkin Lymphoma AJCC v8 9 246706 -NCIT:C141194 Lugano Classification Stage IIE Adult Hodgkin Lymphoma AJCC v8 8 246707 -NCIT:C141196 Lugano Classification Advanced Stage Adult Hodgkin Lymphoma AJCC v8 7 246708 -NCIT:C141197 Lugano Classification Stage III Adult Hodgkin Lymphoma AJCC v8 8 246709 -NCIT:C141198 Lugano Classification Stage IV Adult Hodgkin Lymphoma AJCC v8 8 246710 -NCIT:C141226 Adult Hodgkin Lymphoma by Ann Arbor Stage 6 246711 -NCIT:C9032 Ann Arbor Stage I Adult Hodgkin Lymphoma 7 246712 -NCIT:C9033 Ann Arbor Stage II Adult Hodgkin Lymphoma 7 246713 -NCIT:C9034 Ann Arbor Stage III Adult Hodgkin Lymphoma 7 246714 -NCIT:C9035 Ann Arbor Stage IV Adult Hodgkin Lymphoma 7 246715 -NCIT:C69138 Adult Classic Hodgkin Lymphoma 6 246716 -NCIT:C7223 Adult Lymphocyte-Rich Classic Hodgkin Lymphoma 7 246717 -NCIT:C9125 Adult Lymphocyte-Depleted Classic Hodgkin Lymphoma 7 246718 -NCIT:C9126 Adult Nodular Sclerosis Classic Hodgkin Lymphoma 7 246719 -NCIT:C9127 Adult Mixed Cellularity Classic Hodgkin Lymphoma 7 246720 -NCIT:C7789 Recurrent Adult Hodgkin Lymphoma 6 246721 -NCIT:C7942 Adult Nodular Lymphocyte Predominant Hodgkin Lymphoma 6 246722 -NCIT:C7714 Childhood Hodgkin Lymphoma 5 246723 -NCIT:C114806 Childhood Favorable Prognosis Hodgkin Lymphoma 6 246724 -NCIT:C114808 Childhood Unfavorable Prognosis Hodgkin Lymphoma 6 246725 -NCIT:C115458 Refractory Childhood Hodgkin Lymphoma 6 246726 -NCIT:C141178 Lugano Classification Childhood Hodgkin Lymphoma by AJCC v8 Stage 6 246727 -NCIT:C141179 Lugano Classification Limited Stage Childhood Hodgkin Lymphoma AJCC v8 7 246728 -NCIT:C141180 Lugano Classification Stage I Childhood Hodgkin Lymphoma AJCC v8 8 246729 -NCIT:C141181 Lugano Classification Stage IE Childhood Hodgkin Lymphoma AJCC v8 8 246730 -NCIT:C141182 Lugano Classification Stage II Childhood Hodgkin Lymphoma AJCC v8 8 246731 -NCIT:C141184 Lugano Classification Stage II Bulky Childhood Hodgkin Lymphoma AJCC v8 9 246732 -NCIT:C141183 Lugano Classification Stage IIE Childhood Hodgkin Lymphoma AJCC v8 8 246733 -NCIT:C141185 Lugano Classification Advanced Stage Childhood Hodgkin Lymphoma AJCC v8 7 246734 -NCIT:C141186 Lugano Classification Stage III Childhood Hodgkin Lymphoma AJCC v8 8 246735 -NCIT:C141187 Lugano Classification Stage IV Childhood Hodgkin Lymphoma AJCC v8 8 246736 -NCIT:C141227 Childhood Hodgkin Lymphoma by Ann Arbor Stage 6 246737 -NCIT:C8055 Ann Arbor Stage II Childhood Hodgkin Lymphoma 7 246738 -NCIT:C8056 Ann Arbor Stage I Childhood Hodgkin Lymphoma 7 246739 -NCIT:C8057 Ann Arbor Stage III Childhood Hodgkin Lymphoma 7 246740 -NCIT:C8058 Ann Arbor Stage IV Childhood Hodgkin Lymphoma 7 246741 -NCIT:C69142 Childhood Classic Hodgkin Lymphoma 6 246742 -NCIT:C7054 Childhood Lymphocyte-Rich Classic Hodgkin Lymphoma 7 246743 -NCIT:C8061 Childhood Lymphocyte-Depleted Classic Hodgkin Lymphoma 7 246744 -NCIT:C8062 Childhood Nodular Sclerosis Classic Hodgkin Lymphoma 7 246745 -NCIT:C8063 Childhood Mixed Cellularity Classic Hodgkin Lymphoma 7 246746 -NCIT:C8059 Recurrent Childhood Hodgkin Lymphoma 6 246747 -NCIT:C8060 Childhood Nodular Lymphocyte Predominant Hodgkin Lymphoma 6 246748 -NCIT:C8836 Refractory Hodgkin Lymphoma 5 246749 -NCIT:C115458 Refractory Childhood Hodgkin Lymphoma 6 246750 -NCIT:C133736 Refractory Classic Hodgkin Lymphoma 6 246751 -NCIT:C142982 Refractory Lymphocyte-Rich Classic Hodgkin Lymphoma 7 246752 -NCIT:C8650 Refractory Lymphocyte-Depleted Classic Hodgkin Lymphoma 7 246753 -NCIT:C8833 Refractory Mixed Cellularity Classic Hodgkin Lymphoma 7 246754 -NCIT:C8838 Refractory Nodular Sclerosis Classic Hodgkin Lymphoma 7 246755 -NCIT:C7260 Refractory Nodular Lymphocyte Predominant Hodgkin Lymphoma 6 246756 -NCIT:C9279 AIDS-Related Hodgkin Lymphoma 5 246757 -NCIT:C3224 Melanoma 3 246758 -NCIT:C118828 Orbital Melanoma 4 246759 -NCIT:C131506 Childhood Melanoma 4 246760 -NCIT:C147983 Refractory Melanoma 4 246761 -NCIT:C150544 Refractory Cutaneous Melanoma 5 246762 -NCIT:C173328 Refractory Non-Cutaneous Melanoma 5 246763 -NCIT:C173329 Refractory Ocular Melanoma 6 246764 -NCIT:C173335 Refractory Uveal Melanoma 7 246765 -NCIT:C180894 Refractory Mucosal Melanoma 6 246766 -NCIT:C182024 Refractory Metastatic Melanoma 5 246767 -NCIT:C148517 Unresectable Melanoma 4 246768 -NCIT:C148245 Unresectable Cutaneous Melanoma 5 246769 -NCIT:C165535 Unresectable Acral Lentiginous Melanoma 6 246770 -NCIT:C165536 Unresectable Mucosal Melanoma 5 246771 -NCIT:C172247 Unresectable Uveal Melanoma 5 246772 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 6 246773 -NCIT:C162547 Penile Melanoma 4 246774 -NCIT:C178517 Penile Mucosal Melanoma 5 246775 -NCIT:C178518 Penile Cutaneous Melanoma 5 246776 -NCIT:C190239 Resectable Melanoma 4 246777 -NCIT:C190240 Resectable Cutaneous Melanoma 5 246778 -NCIT:C3510 Cutaneous Melanoma 4 246779 -NCIT:C137645 Cutaneous Melanoma by AJCC v8 Stage 5 246780 -NCIT:C137646 Cutaneous Melanoma by AJCC v8 Clinical Stage 6 246781 -NCIT:C137647 Clinical Stage 0 Cutaneous Melanoma AJCC v8 7 246782 -NCIT:C137648 Clinical Stage I Cutaneous Melanoma AJCC v8 7 246783 -NCIT:C137649 Clinical Stage IA Cutaneous Melanoma AJCC v8 8 246784 -NCIT:C137650 Clinical Stage IB Cutaneous Melanoma AJCC v8 8 246785 -NCIT:C137651 Clinical Stage II Cutaneous Melanoma AJCC v8 7 246786 -NCIT:C137652 Clinical Stage IIA Cutaneous Melanoma AJCC v8 8 246787 -NCIT:C137653 Clinical Stage IIB Cutaneous Melanoma AJCC v8 8 246788 -NCIT:C137654 Clinical Stage IIC Cutaneous Melanoma AJCC v8 8 246789 -NCIT:C137655 Clinical Stage III Cutaneous Melanoma AJCC v8 7 246790 -NCIT:C137656 Clinical Stage IV Cutaneous Melanoma AJCC v8 7 246791 -NCIT:C137657 Cutaneous Melanoma by AJCC v8 Pathologic Stage 6 246792 -NCIT:C137662 Pathologic Stage 0 Cutaneous Melanoma AJCC v8 7 246793 -NCIT:C137663 Pathologic Stage I Cutaneous Melanoma AJCC v8 7 246794 -NCIT:C137664 Pathologic Stage IA Cutaneous Melanoma AJCC v8 8 246795 -NCIT:C137665 Pathologic Stage IB Cutaneous Melanoma AJCC v8 8 246796 -NCIT:C137666 Pathologic Stage II Cutaneous Melanoma AJCC v8 7 246797 -NCIT:C137667 Pathologic Stage IIA Cutaneous Melanoma AJCC v8 8 246798 -NCIT:C137668 Pathologic Stage IIB Cutaneous Melanoma AJCC v8 8 246799 -NCIT:C137669 Pathologic Stage IIC Cutaneous Melanoma AJCC v8 8 246800 -NCIT:C137670 Pathologic Stage III Cutaneous Melanoma AJCC v8 7 246801 -NCIT:C137671 Pathologic Stage IIIA Cutaneous Melanoma AJCC v8 8 246802 -NCIT:C137672 Pathologic Stage IIIB Cutaneous Melanoma AJCC v8 8 246803 -NCIT:C137673 Pathologic Stage IIIC Cutaneous Melanoma AJCC v8 8 246804 -NCIT:C137675 Pathologic Stage IIID Cutaneous Melanoma AJCC v8 8 246805 -NCIT:C137677 Pathologic Stage IV Cutaneous Melanoma AJCC v8 7 246806 -NCIT:C148245 Unresectable Cutaneous Melanoma 5 246807 -NCIT:C165535 Unresectable Acral Lentiginous Melanoma 6 246808 -NCIT:C150544 Refractory Cutaneous Melanoma 5 246809 -NCIT:C155305 Cutaneous Melanoma of the Extremity 5 246810 -NCIT:C155306 Recurrent Cutaneous Melanoma of the Extremity 6 246811 -NCIT:C175435 Recurrent Acral Lentiginous Melanoma 7 246812 -NCIT:C155311 Advanced Cutaneous Melanoma of the Extremity 6 246813 -NCIT:C4022 Acral Lentiginous Melanoma 6 246814 -NCIT:C165535 Unresectable Acral Lentiginous Melanoma 7 246815 -NCIT:C175435 Recurrent Acral Lentiginous Melanoma 7 246816 -NCIT:C179427 Metastatic Acral Lentiginous Melanoma 7 246817 -NCIT:C8781 Stage I Acral Lentiginous Melanoma AJCC v7 7 246818 -NCIT:C8782 Stage II Acral Lentiginous Melanoma AJCC v6 and v7 7 246819 -NCIT:C8783 Stage III Acral Lentiginous Melanoma AJCC v7 7 246820 -NCIT:C8784 Stage IV Acral Lentiginous Melanoma AJCC v6 and v7 7 246821 -NCIT:C156072 Metastatic Cutaneous Melanoma 5 246822 -NCIT:C171285 Locally Advanced Cutaneous Melanoma 6 246823 -NCIT:C171572 Advanced Cutaneous Melanoma 6 246824 -NCIT:C155311 Advanced Cutaneous Melanoma of the Extremity 7 246825 -NCIT:C179427 Metastatic Acral Lentiginous Melanoma 6 246826 -NCIT:C165497 Spitz Melanoma 5 246827 -NCIT:C165659 High-CSD Melanoma 5 246828 -NCIT:C37257 Desmoplastic Melanoma 6 246829 -NCIT:C48614 Desmoplastic Neurotropic Melanoma 7 246830 -NCIT:C9151 Lentigo Maligna Melanoma 6 246831 -NCIT:C8785 Recurrent Lentigo Maligna Melanoma 7 246832 -NCIT:C8786 Stage I Lentigo Maligna Melanoma AJCC v7 7 246833 -NCIT:C8787 Stage II Lentigo Maligna Melanoma AJCC v6 and v7 7 246834 -NCIT:C8788 Stage III Lentigo Maligna Melanoma AJCC v7 7 246835 -NCIT:C8789 Stage IV Lentigo Maligna Melanoma AJCC v6 and v7 7 246836 -NCIT:C178518 Penile Cutaneous Melanoma 5 246837 -NCIT:C190240 Resectable Cutaneous Melanoma 5 246838 -NCIT:C190280 Childhood Cutaneous Melanoma 5 246839 -NCIT:C27919 Old Burn Scar-Related Cutaneous Melanoma 5 246840 -NCIT:C27920 Solar Radiation-Related Cutaneous Melanoma 5 246841 -NCIT:C4225 Cutaneous Nodular Melanoma 5 246842 -NCIT:C4227 Balloon Cell Melanoma 5 246843 -NCIT:C4232 Melanoma in Junctional Nevus 5 246844 -NCIT:C4240 Melanoma Arising from Blue Nevus 5 246845 -NCIT:C4633 Amelanotic Cutaneous Melanoma 5 246846 -NCIT:C48607 Invasive Cutaneous Melanoma 5 246847 -NCIT:C48612 Minimal Deviation Melanoma 5 246848 -NCIT:C48613 Melanoma in Congenital Melanocytic Nevus 5 246849 -NCIT:C4235 Melanoma Arising in Giant Congenital Nevus 6 246850 -NCIT:C54662 Nevoid Melanoma 5 246851 -NCIT:C54663 Signet Ring Melanoma 5 246852 -NCIT:C66753 Malignant Melanoma in Precancerous Melanosis 5 246853 -NCIT:C7089 Regressing Cutaneous Melanoma 5 246854 -NCIT:C7361 Scrotal Melanoma 5 246855 -NCIT:C8498 Hereditary Melanoma 5 246856 -NCIT:C128801 Cutaneous Malignant Melanoma 2 6 246857 -NCIT:C90514 Cutaneous Melanoma by AJCC v6 Stage 5 246858 -NCIT:C7916 Stage I Cutaneous Melanoma AJCC v6 6 246859 -NCIT:C7917 Stage II Cutaneous Melanoma AJCC v6 and v7 6 246860 -NCIT:C27742 Stage IIB Cutaneous Melanoma AJCC v6 and v7 7 246861 -NCIT:C86033 Stage IIA Cutaneous Melanoma AJCC v6 and v7 7 246862 -NCIT:C86034 Stage IIC Cutaneous Melanoma AJCC v6 and v7 7 246863 -NCIT:C8782 Stage II Acral Lentiginous Melanoma AJCC v6 and v7 7 246864 -NCIT:C8787 Stage II Lentigo Maligna Melanoma AJCC v6 and v7 7 246865 -NCIT:C8791 Stage II Low-CSD Melanoma AJCC v7 7 246866 -NCIT:C7918 Stage III Cutaneous Melanoma AJCC v6 6 246867 -NCIT:C8423 Stage 0 Cutaneous Melanoma AJCC v6 and v7 6 246868 -NCIT:C43372 Lentigo Maligna 7 246869 -NCIT:C9096 Stage IV Cutaneous Melanoma AJCC v6 and v7 6 246870 -NCIT:C8784 Stage IV Acral Lentiginous Melanoma AJCC v6 and v7 7 246871 -NCIT:C8789 Stage IV Lentigo Maligna Melanoma AJCC v6 and v7 7 246872 -NCIT:C8793 Stage IV Low-CSD Melanoma AJCC v7 7 246873 -NCIT:C9097 Recurrent Cutaneous Melanoma 5 246874 -NCIT:C155306 Recurrent Cutaneous Melanoma of the Extremity 6 246875 -NCIT:C175435 Recurrent Acral Lentiginous Melanoma 7 246876 -NCIT:C8785 Recurrent Lentigo Maligna Melanoma 6 246877 -NCIT:C91231 Cutaneous Melanoma by AJCC v7 Stage 5 246878 -NCIT:C7917 Stage II Cutaneous Melanoma AJCC v6 and v7 6 246879 -NCIT:C27742 Stage IIB Cutaneous Melanoma AJCC v6 and v7 7 246880 -NCIT:C86033 Stage IIA Cutaneous Melanoma AJCC v6 and v7 7 246881 -NCIT:C86034 Stage IIC Cutaneous Melanoma AJCC v6 and v7 7 246882 -NCIT:C8782 Stage II Acral Lentiginous Melanoma AJCC v6 and v7 7 246883 -NCIT:C8787 Stage II Lentigo Maligna Melanoma AJCC v6 and v7 7 246884 -NCIT:C8791 Stage II Low-CSD Melanoma AJCC v7 7 246885 -NCIT:C8423 Stage 0 Cutaneous Melanoma AJCC v6 and v7 6 246886 -NCIT:C43372 Lentigo Maligna 7 246887 -NCIT:C88414 Stage I Cutaneous Melanoma AJCC v7 6 246888 -NCIT:C86026 Stage IA Cutaneous Melanoma AJCC v7 7 246889 -NCIT:C86030 Stage IB Cutaneous Melanoma AJCC v7 7 246890 -NCIT:C8781 Stage I Acral Lentiginous Melanoma AJCC v7 7 246891 -NCIT:C8786 Stage I Lentigo Maligna Melanoma AJCC v7 7 246892 -NCIT:C8790 Stage I Low-CSD Melanoma AJCC v7 7 246893 -NCIT:C88415 Stage III Cutaneous Melanoma AJCC v7 6 246894 -NCIT:C86049 Stage IIIA Cutaneous Melanoma AJCC v7 7 246895 -NCIT:C86051 Stage IIIB Cutaneous Melanoma AJCC v7 7 246896 -NCIT:C86053 Stage IIIC Cutaneous Melanoma AJCC v7 7 246897 -NCIT:C8783 Stage III Acral Lentiginous Melanoma AJCC v7 7 246898 -NCIT:C8788 Stage III Lentigo Maligna Melanoma AJCC v7 7 246899 -NCIT:C8792 Stage III Low-CSD Melanoma AJCC v7 7 246900 -NCIT:C9096 Stage IV Cutaneous Melanoma AJCC v6 and v7 6 246901 -NCIT:C8784 Stage IV Acral Lentiginous Melanoma AJCC v6 and v7 7 246902 -NCIT:C8789 Stage IV Lentigo Maligna Melanoma AJCC v6 and v7 7 246903 -NCIT:C8793 Stage IV Low-CSD Melanoma AJCC v7 7 246904 -NCIT:C9152 Low-CSD Melanoma 5 246905 -NCIT:C8790 Stage I Low-CSD Melanoma AJCC v7 6 246906 -NCIT:C8791 Stage II Low-CSD Melanoma AJCC v7 6 246907 -NCIT:C8792 Stage III Low-CSD Melanoma AJCC v7 6 246908 -NCIT:C8793 Stage IV Low-CSD Melanoma AJCC v7 6 246909 -NCIT:C3802 Amelanotic Melanoma 4 246910 -NCIT:C4633 Amelanotic Cutaneous Melanoma 5 246911 -NCIT:C4228 Regressing Melanoma 4 246912 -NCIT:C7089 Regressing Cutaneous Melanoma 5 246913 -NCIT:C7090 Regressing Non-Cutaneous Melanoma 5 246914 -NCIT:C4236 Epithelioid Cell Melanoma 4 246915 -NCIT:C188079 Rectal Epithelioid Cell Melanoma 5 246916 -NCIT:C35780 Uveal Epithelioid Cell Melanoma 5 246917 -NCIT:C174498 Iris Epithelioid Cell Melanoma 6 246918 -NCIT:C6102 Choroid Epithelioid Cell Melanoma 6 246919 -NCIT:C6119 Ciliary Body Epithelioid Cell Melanoma 6 246920 -NCIT:C4237 Spindle Cell Melanoma 4 246921 -NCIT:C37257 Desmoplastic Melanoma 5 246922 -NCIT:C48614 Desmoplastic Neurotropic Melanoma 6 246923 -NCIT:C4238 Type A Spindle Cell Melanoma 5 246924 -NCIT:C7987 Uveal Spindle Cell Type A Melanoma 6 246925 -NCIT:C6861 Choroid Spindle Cell Type A Melanoma 7 246926 -NCIT:C6864 Ciliary Body Spindle Cell Type A Melanoma 7 246927 -NCIT:C4239 Type B Spindle Cell Melanoma 5 246928 -NCIT:C7988 Uveal Spindle Cell Type B Melanoma 6 246929 -NCIT:C6862 Choroid Spindle Cell Type B Melanoma 7 246930 -NCIT:C6863 Ciliary Body Spindle Cell Type B Melanoma 7 246931 -NCIT:C7986 Uveal Spindle Cell Melanoma 5 246932 -NCIT:C6098 Iris Spindle Cell Melanoma 6 246933 -NCIT:C6099 Choroid Spindle Cell Melanoma 6 246934 -NCIT:C6861 Choroid Spindle Cell Type A Melanoma 7 246935 -NCIT:C6862 Choroid Spindle Cell Type B Melanoma 7 246936 -NCIT:C6117 Ciliary Body Spindle Cell Melanoma 6 246937 -NCIT:C6863 Ciliary Body Spindle Cell Type B Melanoma 7 246938 -NCIT:C6864 Ciliary Body Spindle Cell Type A Melanoma 7 246939 -NCIT:C7987 Uveal Spindle Cell Type A Melanoma 6 246940 -NCIT:C6861 Choroid Spindle Cell Type A Melanoma 7 246941 -NCIT:C6864 Ciliary Body Spindle Cell Type A Melanoma 7 246942 -NCIT:C7988 Uveal Spindle Cell Type B Melanoma 6 246943 -NCIT:C6862 Choroid Spindle Cell Type B Melanoma 7 246944 -NCIT:C6863 Ciliary Body Spindle Cell Type B Melanoma 7 246945 -NCIT:C66756 Mixed Epithelioid and Spindle Cell Melanoma 4 246946 -NCIT:C35781 Uveal Mixed Cell Melanoma 5 246947 -NCIT:C174506 Iris Mixed Cell Melanoma 6 246948 -NCIT:C35782 Choroid Mixed Cell Melanoma 6 246949 -NCIT:C35783 Ciliary Body Mixed Cell Melanoma 6 246950 -NCIT:C7087 Recurrent Melanoma 4 246951 -NCIT:C182020 Recurrent Metastatic Melanoma 5 246952 -NCIT:C7088 Recurrent Non-Cutaneous Melanoma 5 246953 -NCIT:C170954 Recurrent Mucosal Melanoma 6 246954 -NCIT:C171294 Recurrent Ocular Melanoma 6 246955 -NCIT:C7914 Recurrent Uveal Melanoma 7 246956 -NCIT:C9097 Recurrent Cutaneous Melanoma 5 246957 -NCIT:C155306 Recurrent Cutaneous Melanoma of the Extremity 6 246958 -NCIT:C175435 Recurrent Acral Lentiginous Melanoma 7 246959 -NCIT:C8785 Recurrent Lentigo Maligna Melanoma 6 246960 -NCIT:C8410 Breast Melanoma 4 246961 -NCIT:C8562 Ocular Melanoma 4 246962 -NCIT:C171294 Recurrent Ocular Melanoma 5 246963 -NCIT:C7914 Recurrent Uveal Melanoma 6 246964 -NCIT:C171295 Metastatic Ocular Melanoma 5 246965 -NCIT:C148514 Metastatic Uveal Melanoma 6 246966 -NCIT:C148515 Advanced Uveal Melanoma 7 246967 -NCIT:C150130 Uveal Melanoma Metastatic in the Liver 8 246968 -NCIT:C169085 Metastatic Choroid Melanoma 7 246969 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 7 246970 -NCIT:C171296 Locally Advanced Ocular Melanoma 6 246971 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 7 246972 -NCIT:C182127 Metastatic Conjunctival Melanoma 6 246973 -NCIT:C190137 Advanced Ocular Melanoma 6 246974 -NCIT:C148515 Advanced Uveal Melanoma 7 246975 -NCIT:C150130 Uveal Melanoma Metastatic in the Liver 8 246976 -NCIT:C173329 Refractory Ocular Melanoma 5 246977 -NCIT:C173335 Refractory Uveal Melanoma 6 246978 -NCIT:C175345 Lacrimal Drainage System Melanoma 5 246979 -NCIT:C4358 Eyelid Melanoma 5 246980 -NCIT:C4550 Conjunctival Melanoma 5 246981 -NCIT:C182127 Metastatic Conjunctival Melanoma 6 246982 -NCIT:C4553 Corneal Melanoma 5 246983 -NCIT:C7712 Uveal Melanoma 5 246984 -NCIT:C111030 Uveal Melanoma by Gene Expression Profile 6 246985 -NCIT:C111020 Uveal Class 1 Melanoma 7 246986 -NCIT:C111022 Uveal Class 1a Melanoma 8 246987 -NCIT:C111023 Uveal Class 1b Melanoma 8 246988 -NCIT:C111021 Uveal Class 2 Melanoma 7 246989 -NCIT:C140659 Choroidal and Ciliary Body Melanoma by AJCC v8 Stage 6 246990 -NCIT:C140660 Stage I Choroidal and Ciliary Body Melanoma AJCC v8 7 246991 -NCIT:C140661 Stage II Choroidal and Ciliary Body Melanoma AJCC v8 7 246992 -NCIT:C140662 Stage IIA Choroidal and Ciliary Body Melanoma AJCC v8 8 246993 -NCIT:C140663 Stage IIB Choroidal and Ciliary Body Melanoma AJCC v8 8 246994 -NCIT:C140664 Stage III Choroidal and Ciliary Body Melanoma AJCC v8 7 246995 -NCIT:C140665 Stage IIIA Choroidal and Ciliary Body Melanoma AJCC v8 8 246996 -NCIT:C140666 Stage IIIB Choroidal and Ciliary Body Melanoma AJCC v8 8 246997 -NCIT:C140667 Stage IIIC Choroidal and Ciliary Body Melanoma AJCC v8 8 246998 -NCIT:C140668 Stage IV Choroidal and Ciliary Body Melanoma AJCC v8 7 246999 -NCIT:C140672 Uveal Melanoma by AJCC v7 Stage 6 247000 -NCIT:C5577 Stage I Uveal Melanoma AJCC v7 7 247001 -NCIT:C5578 Stage II Uveal Melanoma AJCC v7 7 247002 -NCIT:C88135 Stage IIA Uveal Melanoma AJCC v7 8 247003 -NCIT:C88136 Stage IIB Uveal Melanoma AJCC v7 8 247004 -NCIT:C5579 Stage III Uveal Melanoma AJCC v7 7 247005 -NCIT:C88137 Stage IIIA Uveal Melanoma AJCC v7 8 247006 -NCIT:C88138 Stage IIIB Uveal Melanoma AJCC v7 8 247007 -NCIT:C88139 Stage IIIC Uveal Melanoma AJCC v7 8 247008 -NCIT:C5580 Stage IV Uveal Melanoma AJCC v7 7 247009 -NCIT:C148514 Metastatic Uveal Melanoma 6 247010 -NCIT:C148515 Advanced Uveal Melanoma 7 247011 -NCIT:C150130 Uveal Melanoma Metastatic in the Liver 8 247012 -NCIT:C169085 Metastatic Choroid Melanoma 7 247013 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 7 247014 -NCIT:C172247 Unresectable Uveal Melanoma 6 247015 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 7 247016 -NCIT:C173335 Refractory Uveal Melanoma 6 247017 -NCIT:C190746 Iridociliary Melanoma 6 247018 -NCIT:C35780 Uveal Epithelioid Cell Melanoma 6 247019 -NCIT:C174498 Iris Epithelioid Cell Melanoma 7 247020 -NCIT:C6102 Choroid Epithelioid Cell Melanoma 7 247021 -NCIT:C6119 Ciliary Body Epithelioid Cell Melanoma 7 247022 -NCIT:C35781 Uveal Mixed Cell Melanoma 6 247023 -NCIT:C174506 Iris Mixed Cell Melanoma 7 247024 -NCIT:C35782 Choroid Mixed Cell Melanoma 7 247025 -NCIT:C35783 Ciliary Body Mixed Cell Melanoma 7 247026 -NCIT:C4558 Ciliary Body Melanoma 6 247027 -NCIT:C35783 Ciliary Body Mixed Cell Melanoma 7 247028 -NCIT:C6117 Ciliary Body Spindle Cell Melanoma 7 247029 -NCIT:C6863 Ciliary Body Spindle Cell Type B Melanoma 8 247030 -NCIT:C6864 Ciliary Body Spindle Cell Type A Melanoma 8 247031 -NCIT:C6118 Ciliary Body Intermediate Cell Type Melanoma 7 247032 -NCIT:C6119 Ciliary Body Epithelioid Cell Melanoma 7 247033 -NCIT:C4561 Choroid Melanoma 6 247034 -NCIT:C169085 Metastatic Choroid Melanoma 7 247035 -NCIT:C35782 Choroid Mixed Cell Melanoma 7 247036 -NCIT:C6099 Choroid Spindle Cell Melanoma 7 247037 -NCIT:C6861 Choroid Spindle Cell Type A Melanoma 8 247038 -NCIT:C6862 Choroid Spindle Cell Type B Melanoma 8 247039 -NCIT:C6100 Choroid Intermediate Cell Type Melanoma 7 247040 -NCIT:C6102 Choroid Epithelioid Cell Melanoma 7 247041 -NCIT:C6865 Choroid Necrotic Melanoma 7 247042 -NCIT:C7914 Recurrent Uveal Melanoma 6 247043 -NCIT:C7986 Uveal Spindle Cell Melanoma 6 247044 -NCIT:C6098 Iris Spindle Cell Melanoma 7 247045 -NCIT:C6099 Choroid Spindle Cell Melanoma 7 247046 -NCIT:C6861 Choroid Spindle Cell Type A Melanoma 8 247047 -NCIT:C6862 Choroid Spindle Cell Type B Melanoma 8 247048 -NCIT:C6117 Ciliary Body Spindle Cell Melanoma 7 247049 -NCIT:C6863 Ciliary Body Spindle Cell Type B Melanoma 8 247050 -NCIT:C6864 Ciliary Body Spindle Cell Type A Melanoma 8 247051 -NCIT:C7987 Uveal Spindle Cell Type A Melanoma 7 247052 -NCIT:C6861 Choroid Spindle Cell Type A Melanoma 8 247053 -NCIT:C6864 Ciliary Body Spindle Cell Type A Melanoma 8 247054 -NCIT:C7988 Uveal Spindle Cell Type B Melanoma 7 247055 -NCIT:C6862 Choroid Spindle Cell Type B Melanoma 8 247056 -NCIT:C6863 Ciliary Body Spindle Cell Type B Melanoma 8 247057 -NCIT:C7989 Uveal Intermediate Cell Type Melanoma 6 247058 -NCIT:C6100 Choroid Intermediate Cell Type Melanoma 7 247059 -NCIT:C6101 Iris Intermediate Cell Type Melanoma 7 247060 -NCIT:C6118 Ciliary Body Intermediate Cell Type Melanoma 7 247061 -NCIT:C7990 Uveal Necrotic Melanoma 6 247062 -NCIT:C6865 Choroid Necrotic Melanoma 7 247063 -NCIT:C9088 Iris Melanoma 6 247064 -NCIT:C174498 Iris Epithelioid Cell Melanoma 7 247065 -NCIT:C174506 Iris Mixed Cell Melanoma 7 247066 -NCIT:C6098 Iris Spindle Cell Melanoma 7 247067 -NCIT:C6101 Iris Intermediate Cell Type Melanoma 7 247068 -NCIT:C9089 Small Size Posterior Uveal Melanoma 6 247069 -NCIT:C9090 Medium/Large Size Posterior Uveal Melanoma 6 247070 -NCIT:C7913 Ocular Melanoma with Extraocular Extension 5 247071 -NCIT:C8601 Retinal Melanoma 5 247072 -NCIT:C8711 Non-Cutaneous Melanoma 4 247073 -NCIT:C114828 Mucosal Melanoma 5 247074 -NCIT:C133187 Mucosal Melanoma of the Head and Neck 6 247075 -NCIT:C133186 Mucosal Melanoma of the Head and Neck by AJCC v7 Stage 7 247076 -NCIT:C87532 Stage III Mucosal Melanoma of the Head and Neck AJCC v7 8 247077 -NCIT:C87533 Stage IVA Mucosal Melanoma of the Head and Neck AJCC v7 8 247078 -NCIT:C87534 Stage IVB Mucosal Melanoma of the Head and Neck AJCC v7 8 247079 -NCIT:C87535 Stage IVC Mucosal Melanoma of the Head and Neck AJCC v7 8 247080 -NCIT:C166399 Sinonasal Mucosal Melanoma 7 247081 -NCIT:C178521 Pharyngeal Melanoma 7 247082 -NCIT:C178522 Nasopharyngeal Melanoma 8 247083 -NCIT:C5915 Oral Cavity Mucosal Melanoma 7 247084 -NCIT:C165536 Unresectable Mucosal Melanoma 6 247085 -NCIT:C166405 Mucosal Nodular Melanoma 6 247086 -NCIT:C169086 Metastatic Mucosal Melanoma 6 247087 -NCIT:C180896 Advanced Mucosal Melanoma 7 247088 -NCIT:C170954 Recurrent Mucosal Melanoma 6 247089 -NCIT:C178443 Mucosal Melanoma of the Genitourinary System 6 247090 -NCIT:C178437 Mucosal Melanoma of the Female Genital Tract 7 247091 -NCIT:C27394 Vaginal Melanoma 8 247092 -NCIT:C40239 Cervical Melanoma 8 247093 -NCIT:C40329 Vulvar Melanoma 8 247094 -NCIT:C178453 Mucosal Melanoma of the Urinary System 7 247095 -NCIT:C159663 Bladder Melanoma 8 247096 -NCIT:C159665 Urethral Melanoma 8 247097 -NCIT:C178517 Penile Mucosal Melanoma 7 247098 -NCIT:C180894 Refractory Mucosal Melanoma 6 247099 -NCIT:C48622 Mucosal Lentiginous Melanoma 6 247100 -NCIT:C7091 Mucosal Melanoma of the Digestive System 6 247101 -NCIT:C178519 Gastric Melanoma 7 247102 -NCIT:C188067 Jejunal Melanoma 7 247103 -NCIT:C4639 Anal Melanoma 7 247104 -NCIT:C4640 Rectal Melanoma 7 247105 -NCIT:C188079 Rectal Epithelioid Cell Melanoma 8 247106 -NCIT:C5707 Esophageal Melanoma 7 247107 -NCIT:C5735 Gallbladder Melanoma 7 247108 -NCIT:C161611 Prostate Melanoma 5 247109 -NCIT:C173328 Refractory Non-Cutaneous Melanoma 5 247110 -NCIT:C173329 Refractory Ocular Melanoma 6 247111 -NCIT:C173335 Refractory Uveal Melanoma 7 247112 -NCIT:C180894 Refractory Mucosal Melanoma 6 247113 -NCIT:C178441 Ovarian Melanoma 5 247114 -NCIT:C188185 Adrenal Cortical Melanoma 5 247115 -NCIT:C4550 Conjunctival Melanoma 5 247116 -NCIT:C182127 Metastatic Conjunctival Melanoma 6 247117 -NCIT:C4553 Corneal Melanoma 5 247118 -NCIT:C45652 Lung Melanoma 5 247119 -NCIT:C5505 Central Nervous System Melanoma 5 247120 -NCIT:C5158 Spinal Cord Melanoma 6 247121 -NCIT:C5317 Meningeal Melanoma 6 247122 -NCIT:C5318 Childhood Meningeal Melanoma 7 247123 -NCIT:C5319 Adult Meningeal Melanoma 7 247124 -NCIT:C6891 Meningeal Melanomatosis 7 247125 -NCIT:C5442 Intracranial Melanoma 6 247126 -NCIT:C7088 Recurrent Non-Cutaneous Melanoma 5 247127 -NCIT:C170954 Recurrent Mucosal Melanoma 6 247128 -NCIT:C171294 Recurrent Ocular Melanoma 6 247129 -NCIT:C7914 Recurrent Uveal Melanoma 7 247130 -NCIT:C7090 Regressing Non-Cutaneous Melanoma 5 247131 -NCIT:C7092 Metastatic Non-Cutaneous Melanoma 5 247132 -NCIT:C169086 Metastatic Mucosal Melanoma 6 247133 -NCIT:C180896 Advanced Mucosal Melanoma 7 247134 -NCIT:C171295 Metastatic Ocular Melanoma 6 247135 -NCIT:C148514 Metastatic Uveal Melanoma 7 247136 -NCIT:C148515 Advanced Uveal Melanoma 8 247137 -NCIT:C150130 Uveal Melanoma Metastatic in the Liver 9 247138 -NCIT:C169085 Metastatic Choroid Melanoma 8 247139 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 8 247140 -NCIT:C171296 Locally Advanced Ocular Melanoma 7 247141 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 8 247142 -NCIT:C182127 Metastatic Conjunctival Melanoma 7 247143 -NCIT:C190137 Advanced Ocular Melanoma 7 247144 -NCIT:C148515 Advanced Uveal Melanoma 8 247145 -NCIT:C150130 Uveal Melanoma Metastatic in the Liver 9 247146 -NCIT:C171297 Locally Advanced Non-Cutaneous Melanoma 6 247147 -NCIT:C171296 Locally Advanced Ocular Melanoma 7 247148 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 8 247149 -NCIT:C180895 Advanced Non-Cutaneous Melanoma 6 247150 -NCIT:C180896 Advanced Mucosal Melanoma 7 247151 -NCIT:C190137 Advanced Ocular Melanoma 7 247152 -NCIT:C148515 Advanced Uveal Melanoma 8 247153 -NCIT:C150130 Uveal Melanoma Metastatic in the Liver 9 247154 -NCIT:C7712 Uveal Melanoma 5 247155 -NCIT:C111030 Uveal Melanoma by Gene Expression Profile 6 247156 -NCIT:C111020 Uveal Class 1 Melanoma 7 247157 -NCIT:C111022 Uveal Class 1a Melanoma 8 247158 -NCIT:C111023 Uveal Class 1b Melanoma 8 247159 -NCIT:C111021 Uveal Class 2 Melanoma 7 247160 -NCIT:C140659 Choroidal and Ciliary Body Melanoma by AJCC v8 Stage 6 247161 -NCIT:C140660 Stage I Choroidal and Ciliary Body Melanoma AJCC v8 7 247162 -NCIT:C140661 Stage II Choroidal and Ciliary Body Melanoma AJCC v8 7 247163 -NCIT:C140662 Stage IIA Choroidal and Ciliary Body Melanoma AJCC v8 8 247164 -NCIT:C140663 Stage IIB Choroidal and Ciliary Body Melanoma AJCC v8 8 247165 -NCIT:C140664 Stage III Choroidal and Ciliary Body Melanoma AJCC v8 7 247166 -NCIT:C140665 Stage IIIA Choroidal and Ciliary Body Melanoma AJCC v8 8 247167 -NCIT:C140666 Stage IIIB Choroidal and Ciliary Body Melanoma AJCC v8 8 247168 -NCIT:C140667 Stage IIIC Choroidal and Ciliary Body Melanoma AJCC v8 8 247169 -NCIT:C140668 Stage IV Choroidal and Ciliary Body Melanoma AJCC v8 7 247170 -NCIT:C140672 Uveal Melanoma by AJCC v7 Stage 6 247171 -NCIT:C5577 Stage I Uveal Melanoma AJCC v7 7 247172 -NCIT:C5578 Stage II Uveal Melanoma AJCC v7 7 247173 -NCIT:C88135 Stage IIA Uveal Melanoma AJCC v7 8 247174 -NCIT:C88136 Stage IIB Uveal Melanoma AJCC v7 8 247175 -NCIT:C5579 Stage III Uveal Melanoma AJCC v7 7 247176 -NCIT:C88137 Stage IIIA Uveal Melanoma AJCC v7 8 247177 -NCIT:C88138 Stage IIIB Uveal Melanoma AJCC v7 8 247178 -NCIT:C88139 Stage IIIC Uveal Melanoma AJCC v7 8 247179 -NCIT:C5580 Stage IV Uveal Melanoma AJCC v7 7 247180 -NCIT:C148514 Metastatic Uveal Melanoma 6 247181 -NCIT:C148515 Advanced Uveal Melanoma 7 247182 -NCIT:C150130 Uveal Melanoma Metastatic in the Liver 8 247183 -NCIT:C169085 Metastatic Choroid Melanoma 7 247184 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 7 247185 -NCIT:C172247 Unresectable Uveal Melanoma 6 247186 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 7 247187 -NCIT:C173335 Refractory Uveal Melanoma 6 247188 -NCIT:C190746 Iridociliary Melanoma 6 247189 -NCIT:C35780 Uveal Epithelioid Cell Melanoma 6 247190 -NCIT:C174498 Iris Epithelioid Cell Melanoma 7 247191 -NCIT:C6102 Choroid Epithelioid Cell Melanoma 7 247192 -NCIT:C6119 Ciliary Body Epithelioid Cell Melanoma 7 247193 -NCIT:C35781 Uveal Mixed Cell Melanoma 6 247194 -NCIT:C174506 Iris Mixed Cell Melanoma 7 247195 -NCIT:C35782 Choroid Mixed Cell Melanoma 7 247196 -NCIT:C35783 Ciliary Body Mixed Cell Melanoma 7 247197 -NCIT:C4558 Ciliary Body Melanoma 6 247198 -NCIT:C35783 Ciliary Body Mixed Cell Melanoma 7 247199 -NCIT:C6117 Ciliary Body Spindle Cell Melanoma 7 247200 -NCIT:C6863 Ciliary Body Spindle Cell Type B Melanoma 8 247201 -NCIT:C6864 Ciliary Body Spindle Cell Type A Melanoma 8 247202 -NCIT:C6118 Ciliary Body Intermediate Cell Type Melanoma 7 247203 -NCIT:C6119 Ciliary Body Epithelioid Cell Melanoma 7 247204 -NCIT:C4561 Choroid Melanoma 6 247205 -NCIT:C169085 Metastatic Choroid Melanoma 7 247206 -NCIT:C35782 Choroid Mixed Cell Melanoma 7 247207 -NCIT:C6099 Choroid Spindle Cell Melanoma 7 247208 -NCIT:C6861 Choroid Spindle Cell Type A Melanoma 8 247209 -NCIT:C6862 Choroid Spindle Cell Type B Melanoma 8 247210 -NCIT:C6100 Choroid Intermediate Cell Type Melanoma 7 247211 -NCIT:C6102 Choroid Epithelioid Cell Melanoma 7 247212 -NCIT:C6865 Choroid Necrotic Melanoma 7 247213 -NCIT:C7914 Recurrent Uveal Melanoma 6 247214 -NCIT:C7986 Uveal Spindle Cell Melanoma 6 247215 -NCIT:C6098 Iris Spindle Cell Melanoma 7 247216 -NCIT:C6099 Choroid Spindle Cell Melanoma 7 247217 -NCIT:C6861 Choroid Spindle Cell Type A Melanoma 8 247218 -NCIT:C6862 Choroid Spindle Cell Type B Melanoma 8 247219 -NCIT:C6117 Ciliary Body Spindle Cell Melanoma 7 247220 -NCIT:C6863 Ciliary Body Spindle Cell Type B Melanoma 8 247221 -NCIT:C6864 Ciliary Body Spindle Cell Type A Melanoma 8 247222 -NCIT:C7987 Uveal Spindle Cell Type A Melanoma 7 247223 -NCIT:C6861 Choroid Spindle Cell Type A Melanoma 8 247224 -NCIT:C6864 Ciliary Body Spindle Cell Type A Melanoma 8 247225 -NCIT:C7988 Uveal Spindle Cell Type B Melanoma 7 247226 -NCIT:C6862 Choroid Spindle Cell Type B Melanoma 8 247227 -NCIT:C6863 Ciliary Body Spindle Cell Type B Melanoma 8 247228 -NCIT:C7989 Uveal Intermediate Cell Type Melanoma 6 247229 -NCIT:C6100 Choroid Intermediate Cell Type Melanoma 7 247230 -NCIT:C6101 Iris Intermediate Cell Type Melanoma 7 247231 -NCIT:C6118 Ciliary Body Intermediate Cell Type Melanoma 7 247232 -NCIT:C7990 Uveal Necrotic Melanoma 6 247233 -NCIT:C6865 Choroid Necrotic Melanoma 7 247234 -NCIT:C9088 Iris Melanoma 6 247235 -NCIT:C174498 Iris Epithelioid Cell Melanoma 7 247236 -NCIT:C174506 Iris Mixed Cell Melanoma 7 247237 -NCIT:C6098 Iris Spindle Cell Melanoma 7 247238 -NCIT:C6101 Iris Intermediate Cell Type Melanoma 7 247239 -NCIT:C9089 Small Size Posterior Uveal Melanoma 6 247240 -NCIT:C9090 Medium/Large Size Posterior Uveal Melanoma 6 247241 -NCIT:C8601 Retinal Melanoma 5 247242 -NCIT:C8925 Metastatic Melanoma 4 247243 -NCIT:C133504 Melanoma Metastatic in the Central Nervous System 5 247244 -NCIT:C179206 Melanoma Metastatic in the Brain 6 247245 -NCIT:C148494 Locally Advanced Melanoma 5 247246 -NCIT:C171285 Locally Advanced Cutaneous Melanoma 6 247247 -NCIT:C171297 Locally Advanced Non-Cutaneous Melanoma 6 247248 -NCIT:C171296 Locally Advanced Ocular Melanoma 7 247249 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 8 247250 -NCIT:C153169 Advanced Melanoma 5 247251 -NCIT:C171572 Advanced Cutaneous Melanoma 6 247252 -NCIT:C155311 Advanced Cutaneous Melanoma of the Extremity 7 247253 -NCIT:C180895 Advanced Non-Cutaneous Melanoma 6 247254 -NCIT:C180896 Advanced Mucosal Melanoma 7 247255 -NCIT:C190137 Advanced Ocular Melanoma 7 247256 -NCIT:C148515 Advanced Uveal Melanoma 8 247257 -NCIT:C150130 Uveal Melanoma Metastatic in the Liver 9 247258 -NCIT:C154473 Melanoma of Unknown Primary 5 247259 -NCIT:C156072 Metastatic Cutaneous Melanoma 5 247260 -NCIT:C171285 Locally Advanced Cutaneous Melanoma 6 247261 -NCIT:C171572 Advanced Cutaneous Melanoma 6 247262 -NCIT:C155311 Advanced Cutaneous Melanoma of the Extremity 7 247263 -NCIT:C179427 Metastatic Acral Lentiginous Melanoma 6 247264 -NCIT:C182020 Recurrent Metastatic Melanoma 5 247265 -NCIT:C182024 Refractory Metastatic Melanoma 5 247266 -NCIT:C7092 Metastatic Non-Cutaneous Melanoma 5 247267 -NCIT:C169086 Metastatic Mucosal Melanoma 6 247268 -NCIT:C180896 Advanced Mucosal Melanoma 7 247269 -NCIT:C171295 Metastatic Ocular Melanoma 6 247270 -NCIT:C148514 Metastatic Uveal Melanoma 7 247271 -NCIT:C148515 Advanced Uveal Melanoma 8 247272 -NCIT:C150130 Uveal Melanoma Metastatic in the Liver 9 247273 -NCIT:C169085 Metastatic Choroid Melanoma 8 247274 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 8 247275 -NCIT:C171296 Locally Advanced Ocular Melanoma 7 247276 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 8 247277 -NCIT:C182127 Metastatic Conjunctival Melanoma 7 247278 -NCIT:C190137 Advanced Ocular Melanoma 7 247279 -NCIT:C148515 Advanced Uveal Melanoma 8 247280 -NCIT:C150130 Uveal Melanoma Metastatic in the Liver 9 247281 -NCIT:C171297 Locally Advanced Non-Cutaneous Melanoma 6 247282 -NCIT:C171296 Locally Advanced Ocular Melanoma 7 247283 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 8 247284 -NCIT:C180895 Advanced Non-Cutaneous Melanoma 6 247285 -NCIT:C180896 Advanced Mucosal Melanoma 7 247286 -NCIT:C190137 Advanced Ocular Melanoma 7 247287 -NCIT:C148515 Advanced Uveal Melanoma 8 247288 -NCIT:C150130 Uveal Melanoma Metastatic in the Liver 9 247289 -NCIT:C9499 Melanomatosis 4 247290 -NCIT:C6891 Meningeal Melanomatosis 5 247291 -NCIT:C3520 Myeloid Sarcoma 3 247292 -NCIT:C132260 Small Intestinal Myeloid Sarcoma 4 247293 -NCIT:C162469 Testicular Myeloid Sarcoma 4 247294 -NCIT:C173489 Oral Cavity Myeloid Sarcoma 4 247295 -NCIT:C35815 Granulocytic Sarcoma 4 247296 -NCIT:C146883 Mediastinal Granulocytic Sarcoma 5 247297 -NCIT:C35817 Blastic Granulocytic Sarcoma 5 247298 -NCIT:C35818 Immature Granulocytic Sarcoma 5 247299 -NCIT:C35819 Differentiated Granulocytic Sarcoma 5 247300 -NCIT:C35816 Monoblastic Sarcoma 4 247301 -NCIT:C45741 Mediastinal Myeloid Sarcoma 4 247302 -NCIT:C146883 Mediastinal Granulocytic Sarcoma 5 247303 -NCIT:C5370 Cardiac Myeloid Sarcoma 4 247304 -NCIT:C5527 Prostate Myeloid Sarcoma 4 247305 -NCIT:C7008 Intracranial Myeloid Sarcoma 4 247306 -NCIT:C3539 Malignant Splenic Neoplasm 3 247307 -NCIT:C185041 Splenic Plasmacytoma 4 247308 -NCIT:C185151 Extramedullary Disease in Plasma Cell Myeloma Involving the Spleen 4 247309 -NCIT:C48873 Splenic Lymphoma 4 247310 -NCIT:C7294 Splenic Non-Hodgkin Lymphoma 5 247311 -NCIT:C4663 Splenic Marginal Zone Lymphoma 6 247312 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 7 247313 -NCIT:C5096 Refractory Splenic Marginal Zone Lymphoma 7 247314 -NCIT:C7307 Splenic Follicular Lymphoma 6 247315 -NCIT:C7308 Splenic Diffuse Large B-Cell Lymphoma 6 247316 -NCIT:C7309 Splenic Burkitt Lymphoma 6 247317 -NCIT:C80309 Splenic Diffuse Red Pulp Small B-Cell Lymphoma 6 247318 -NCIT:C8459 Hepatosplenic T-Cell Lymphoma 6 247319 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 7 247320 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 7 247321 -NCIT:C7295 Splenic Hodgkin Lymphoma 5 247322 -NCIT:C7292 Malignant Splenic Soft Tissue Neoplasm 4 247323 -NCIT:C4564 Splenic Angiosarcoma 5 247324 -NCIT:C7296 Splenic Manifestation of Leukemia 4 247325 -NCIT:C7297 Splenic Manifestation of Prolymphocytic Leukemia 5 247326 -NCIT:C7298 Splenic Manifestation of T-Cell Prolymphocytic Leukemia 6 247327 -NCIT:C7299 Splenic Manifestation of B-Cell Prolymphocytic Leukemia 6 247328 -NCIT:C7300 Splenic Manifestation of Chronic Lymphocytic Leukemia 5 247329 -NCIT:C7301 Splenic Manifestation of Hairy Cell Leukemia 5 247330 -NCIT:C7302 Splenic Manifestation of T-Cell Large Granular Lymphocyte Leukemia 5 247331 -NCIT:C7303 Splenic Manifestation of Chronic Myelogenous Leukemia, BCR-ABL1 Positive 5 247332 -NCIT:C80308 Splenic B-Cell Lymphoma/Leukemia, Unclassifiable 4 247333 -NCIT:C7401 Hairy Cell Leukemia Variant 5 247334 -NCIT:C171064 Refractory Hairy Cell Leukemia Variant 6 247335 -NCIT:C171065 Recurrent Hairy Cell Leukemia Variant 6 247336 -NCIT:C80309 Splenic Diffuse Red Pulp Small B-Cell Lymphoma 5 247337 -NCIT:C35427 Malignant Neoplasm of Multiple Primary Sites 3 247338 -NCIT:C139565 Malignant Neoplasm of Lung - Multiple Primary Sites 4 247339 -NCIT:C35501 Malignant Bone Marrow Neoplasm 3 247340 -NCIT:C27262 Myelodysplastic/Myeloproliferative Neoplasm 4 247341 -NCIT:C166143 Recurrent Myelodysplastic/Myeloproliferative Neoplasm 5 247342 -NCIT:C150048 Recurrent Chronic Myelomonocytic Leukemia 6 247343 -NCIT:C171339 Refractory Myelodysplastic/Myeloproliferative Neoplasm 5 247344 -NCIT:C150049 Refractory Chronic Myelomonocytic Leukemia 6 247345 -NCIT:C27780 Myelodysplastic/Myeloproliferative Neoplasm, Unclassifiable 5 247346 -NCIT:C3178 Chronic Myelomonocytic Leukemia 5 247347 -NCIT:C130035 Chronic Myelomonocytic Leukemia-0 6 247348 -NCIT:C150048 Recurrent Chronic Myelomonocytic Leukemia 6 247349 -NCIT:C150049 Refractory Chronic Myelomonocytic Leukemia 6 247350 -NCIT:C36060 Chronic Myelomonocytic Leukemia with Eosinophilia 6 247351 -NCIT:C36061 Chronic Myelomonocytic Leukemia-1 6 247352 -NCIT:C36062 Chronic Myelomonocytic Leukemia-2 6 247353 -NCIT:C3519 Atypical Chronic Myeloid Leukemia, BCR-ABL1 Negative 5 247354 -NCIT:C82397 Therapy-Related Myelodysplastic/Myeloproliferative Neoplasm 5 247355 -NCIT:C82616 Myelodysplastic/Myeloproliferative Neoplasm with Ring Sideroblasts and Thrombocytosis 5 247356 -NCIT:C9233 Juvenile Myelomonocytic Leukemia 5 247357 -NCIT:C27912 Therapy-Related Myeloid Neoplasm 4 247358 -NCIT:C27722 Therapy-Related Myelodysplastic Syndrome 5 247359 -NCIT:C7642 Epipodophyllotoxin-Related Myelodysplastic Syndrome 6 247360 -NCIT:C7643 Alkylating Agent-Related Myelodysplastic Syndrome 6 247361 -NCIT:C27913 Alkylating Agent-Related Acute Myeloid Leukemia and Myelodysplastic Syndrome 5 247362 -NCIT:C27754 Alkylating Agent-Related Acute Myeloid Leukemia 6 247363 -NCIT:C7643 Alkylating Agent-Related Myelodysplastic Syndrome 6 247364 -NCIT:C82397 Therapy-Related Myelodysplastic/Myeloproliferative Neoplasm 5 247365 -NCIT:C8252 Therapy-Related Acute Myeloid Leukemia 5 247366 -NCIT:C186730 Therapy-Related Cytogenetically Normal Acute Myeloid Leukemia 6 247367 -NCIT:C27754 Alkylating Agent-Related Acute Myeloid Leukemia 6 247368 -NCIT:C27755 Topoisomerase II Inhibitor-Related Acute Myeloid Leukemia 6 247369 -NCIT:C3172 Myeloid Leukemia 4 247370 -NCIT:C3171 Acute Myeloid Leukemia 5 247371 -NCIT:C122687 Cytogenetically Normal Acute Myeloid Leukemia 6 247372 -NCIT:C186730 Therapy-Related Cytogenetically Normal Acute Myeloid Leukemia 7 247373 -NCIT:C134319 Refractory Acute Myeloid Leukemia 6 247374 -NCIT:C174486 Refractory Acute Myeloid Leukemia Not Otherwise Specified 7 247375 -NCIT:C174511 Refractory Acute Monoblastic and Monocytic Leukemia 8 247376 -NCIT:C174512 Refractory Acute Myelomonocytic Leukemia 8 247377 -NCIT:C180897 Refractory Acute Myeloid Leukemia with Myelodysplasia-Related Changes 7 247378 -NCIT:C187449 Refractory Childhood Acute Myeloid Leukemia 7 247379 -NCIT:C148427 Recurrent Acute Myeloid Leukemia 6 247380 -NCIT:C125715 Recurrent Acute Myeloid Leukemia with Myelodysplasia-Related Changes 7 247381 -NCIT:C156720 Recurrent Acute Myeloid Leukemia with Multilineage Dysplasia 8 247382 -NCIT:C156716 Recurrent Acute Myeloid Leukemia Not Otherwise Specified 7 247383 -NCIT:C156717 Recurrent Acute Myelomonocytic Leukemia 8 247384 -NCIT:C156722 Recurrent Acute Monoblastic and Monocytic Leukemia 8 247385 -NCIT:C156723 Recurrent Acute Erythroid Leukemia 8 247386 -NCIT:C156731 Recurrent Acute Megakaryoblastic Leukemia 8 247387 -NCIT:C156718 Recurrent Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 7 247388 -NCIT:C156719 Recurrent Acute Myeloid Leukemia with t (9;11) (p21.3; q23.3); MLLT3-MLL 8 247389 -NCIT:C169107 Recurrent Acute Promyelocytic Leukemia with PML-RARA 8 247390 -NCIT:C7882 Recurrent Adult Acute Myeloid Leukemia 7 247391 -NCIT:C9068 Recurrent Childhood Acute Myeloid Leukemia 7 247392 -NCIT:C25765 Secondary Acute Myeloid Leukemia 6 247393 -NCIT:C172129 Acute Myeloid Leukemia Arising from Previous Myeloproliferative Neoplasm 7 247394 -NCIT:C172130 Acute Myeloid Leukemia Arising from Previous Myelodysplastic/Myeloproliferative Neoplasm 7 247395 -NCIT:C27931 Benzene-Related Acute Myeloid Leukemia 7 247396 -NCIT:C4037 Acute Myeloid Leukemia Arising from Previous Myelodysplastic Syndrome 7 247397 -NCIT:C8252 Therapy-Related Acute Myeloid Leukemia 7 247398 -NCIT:C186730 Therapy-Related Cytogenetically Normal Acute Myeloid Leukemia 8 247399 -NCIT:C27754 Alkylating Agent-Related Acute Myeloid Leukemia 8 247400 -NCIT:C27755 Topoisomerase II Inhibitor-Related Acute Myeloid Leukemia 8 247401 -NCIT:C27753 Acute Myeloid Leukemia Not Otherwise Specified 6 247402 -NCIT:C122625 Childhood Acute Myeloid Leukemia Not Otherwise Specified 7 247403 -NCIT:C7940 Childhood Acute Monoblastic and Monocytic Leukemia 8 247404 -NCIT:C9162 Childhood Acute Monoblastic Leukemia 9 247405 -NCIT:C9163 Childhood Acute Monocytic Leukemia 9 247406 -NCIT:C7970 Childhood Acute Myelomonocytic Leukemia 8 247407 -NCIT:C7971 Childhood Acute Basophilic Leukemia 8 247408 -NCIT:C7972 Childhood Acute Megakaryoblastic Leukemia 8 247409 -NCIT:C8304 Childhood Acute Myeloid Leukemia with Minimal Differentiation 8 247410 -NCIT:C9158 Childhood Acute Myeloid Leukemia without Maturation 8 247411 -NCIT:C9164 Childhood Acute Erythroid Leukemia 8 247412 -NCIT:C9381 Childhood Acute Myeloid Leukemia with Maturation 8 247413 -NCIT:C156716 Recurrent Acute Myeloid Leukemia Not Otherwise Specified 7 247414 -NCIT:C156717 Recurrent Acute Myelomonocytic Leukemia 8 247415 -NCIT:C156722 Recurrent Acute Monoblastic and Monocytic Leukemia 8 247416 -NCIT:C156723 Recurrent Acute Erythroid Leukemia 8 247417 -NCIT:C156731 Recurrent Acute Megakaryoblastic Leukemia 8 247418 -NCIT:C174486 Refractory Acute Myeloid Leukemia Not Otherwise Specified 7 247419 -NCIT:C174511 Refractory Acute Monoblastic and Monocytic Leukemia 8 247420 -NCIT:C174512 Refractory Acute Myelomonocytic Leukemia 8 247421 -NCIT:C3164 Acute Basophilic Leukemia 7 247422 -NCIT:C7964 Adult Acute Basophilic Leukemia 8 247423 -NCIT:C7971 Childhood Acute Basophilic Leukemia 8 247424 -NCIT:C3170 Acute Megakaryoblastic Leukemia 7 247425 -NCIT:C156731 Recurrent Acute Megakaryoblastic Leukemia 8 247426 -NCIT:C7965 Adult Acute Megakaryoblastic Leukemia 8 247427 -NCIT:C7972 Childhood Acute Megakaryoblastic Leukemia 8 247428 -NCIT:C3249 Acute Myeloid Leukemia without Maturation 7 247429 -NCIT:C9158 Childhood Acute Myeloid Leukemia without Maturation 8 247430 -NCIT:C9380 Adult Acute Myeloid Leukemia without Maturation 8 247431 -NCIT:C3250 Acute Myeloid Leukemia with Maturation 7 247432 -NCIT:C7961 Adult Acute Myeloid Leukemia with Maturation 8 247433 -NCIT:C9381 Childhood Acute Myeloid Leukemia with Maturation 8 247434 -NCIT:C4344 Acute Panmyelosis with Myelofibrosis 7 247435 -NCIT:C7318 Acute Monoblastic and Monocytic Leukemia 7 247436 -NCIT:C156722 Recurrent Acute Monoblastic and Monocytic Leukemia 8 247437 -NCIT:C174511 Refractory Acute Monoblastic and Monocytic Leukemia 8 247438 -NCIT:C4861 Acute Monocytic Leukemia 8 247439 -NCIT:C5630 Aleukemic Monocytic Leukemia Cutis 9 247440 -NCIT:C8263 Adult Acute Monocytic Leukemia 9 247441 -NCIT:C9163 Childhood Acute Monocytic Leukemia 9 247442 -NCIT:C7171 Acute Monoblastic Leukemia 8 247443 -NCIT:C9156 Adult Acute Monoblastic Leukemia 9 247444 -NCIT:C9162 Childhood Acute Monoblastic Leukemia 9 247445 -NCIT:C7319 Adult Acute Monoblastic and Monocytic Leukemia 8 247446 -NCIT:C8263 Adult Acute Monocytic Leukemia 9 247447 -NCIT:C9156 Adult Acute Monoblastic Leukemia 9 247448 -NCIT:C7940 Childhood Acute Monoblastic and Monocytic Leukemia 8 247449 -NCIT:C9162 Childhood Acute Monoblastic Leukemia 9 247450 -NCIT:C9163 Childhood Acute Monocytic Leukemia 9 247451 -NCIT:C7463 Acute Myelomonocytic Leukemia 7 247452 -NCIT:C156717 Recurrent Acute Myelomonocytic Leukemia 8 247453 -NCIT:C174512 Refractory Acute Myelomonocytic Leukemia 8 247454 -NCIT:C42779 Acute Myelomonocytic Leukemia without Abnormal Eosinophils 8 247455 -NCIT:C7962 Adult Acute Myelomonocytic Leukemia 8 247456 -NCIT:C7970 Childhood Acute Myelomonocytic Leukemia 8 247457 -NCIT:C9020 Acute Myelomonocytic Leukemia with Abnormal Eosinophils 8 247458 -NCIT:C8460 Acute Myeloid Leukemia with Minimal Differentiation 7 247459 -NCIT:C8303 Adult Acute Myeloid Leukemia with Minimal Differentiation 8 247460 -NCIT:C8304 Childhood Acute Myeloid Leukemia with Minimal Differentiation 8 247461 -NCIT:C8923 Acute Erythroid Leukemia 7 247462 -NCIT:C156723 Recurrent Acute Erythroid Leukemia 8 247463 -NCIT:C7152 Erythroleukemia 8 247464 -NCIT:C68694 Adult Erythroleukemia 9 247465 -NCIT:C7467 Pure Erythroid Leukemia 8 247466 -NCIT:C68693 Adult Pure Erythroid Leukemia 9 247467 -NCIT:C9153 Adult Acute Erythroid Leukemia 8 247468 -NCIT:C68693 Adult Pure Erythroid Leukemia 9 247469 -NCIT:C68694 Adult Erythroleukemia 9 247470 -NCIT:C9164 Childhood Acute Erythroid Leukemia 8 247471 -NCIT:C7175 Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 6 247472 -NCIT:C122688 Core Binding Factor Acute Myeloid Leukemia 7 247473 -NCIT:C129785 Acute Myeloid Leukemia with BCR-ABL1 7 247474 -NCIT:C156718 Recurrent Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 7 247475 -NCIT:C156719 Recurrent Acute Myeloid Leukemia with t (9;11) (p21.3; q23.3); MLLT3-MLL 8 247476 -NCIT:C169107 Recurrent Acute Promyelocytic Leukemia with PML-RARA 8 247477 -NCIT:C162775 Acute Myeloid Leukemia with Trisomy 8 7 247478 -NCIT:C174129 Acute Myeloid Leukemia with MLL Rearrangement 7 247479 -NCIT:C132101 Acute Myeloid Leukemia with t(10;11)(p12;q23); MLLT10-MLL 8 247480 -NCIT:C132105 Acute Myeloid Leukemia with t(6;11)(q27;q23); MLLT4-MLL 8 247481 -NCIT:C6924 Acute Myeloid Leukemia with Variant MLL Translocations 8 247482 -NCIT:C82403 Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 8 247483 -NCIT:C156719 Recurrent Acute Myeloid Leukemia with t (9;11) (p21.3; q23.3); MLLT3-MLL 9 247484 -NCIT:C188451 Childhood Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 9 247485 -NCIT:C68696 Adult Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 9 247486 -NCIT:C3182 Acute Promyelocytic Leukemia with PML-RARA 7 247487 -NCIT:C169107 Recurrent Acute Promyelocytic Leukemia with PML-RARA 8 247488 -NCIT:C27756 Typical Acute Promyelocytic Leukemia 8 247489 -NCIT:C27757 Microgranular Acute Promyelocytic Leukemia 8 247490 -NCIT:C7968 Childhood Acute Promyelocytic Leukemia with PML-RARA 8 247491 -NCIT:C9155 Adult Acute Promyelocytic Leukemia with PML-RARA 8 247492 -NCIT:C36055 Acute Myeloid Leukemia with a Variant RARA Translocation 7 247493 -NCIT:C36056 Acute Myeloid Leukemia with t(11;17)(q23;q21) 8 247494 -NCIT:C36057 Acute Myeloid Leukemia with t(5;17)(q35;q21) 8 247495 -NCIT:C36058 Acute Myeloid Leukemia with t(11;17)(q13;q21) 8 247496 -NCIT:C38377 Acute Myeloid Leukemia with t(17;17)(q21;q21) 8 247497 -NCIT:C68700 Adult Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 7 247498 -NCIT:C68696 Adult Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 8 247499 -NCIT:C68697 Adult Acute Myeloid Leukemia with inv(16)(p13.1q22); CBFB-MYH11 8 247500 -NCIT:C68698 Adult Acute Myeloid Leukemia with t(16;16)(p13.1;q22); CBFB-MYH11 8 247501 -NCIT:C68699 Adult Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 8 247502 -NCIT:C9155 Adult Acute Promyelocytic Leukemia with PML-RARA 8 247503 -NCIT:C82423 Acute Myeloid Leukemia with t(6;9) (p23;q34.1); DEK-NUP214 7 247504 -NCIT:C82426 Acute Myeloid Leukemia with inv(3) (q21.3;q26.2) or t(3;3) (q21.3;q26.2); GATA2, MECOM 7 247505 -NCIT:C122716 Acute Myeloid Leukemia with inv(3) (q21.3;q26.2); GATA2, MECOM 8 247506 -NCIT:C122717 Acute Myeloid Leukemia with t(3;3) (q21.3;q26.2); GATA2, MECOM 8 247507 -NCIT:C82427 Acute Myeloid Leukemia (Megakaryoblastic) with t(1;22)(p13.3;q13.1); RBM15-MKL1 7 247508 -NCIT:C9287 Acute Myeloid Leukemia with inv(16)(p13.1q22) or t(16;16)(p13.1;q22); CBFB-MYH11 7 247509 -NCIT:C9018 Acute Myeloid Leukemia with inv(16)(p13.1q22); CBFB-MYH11 8 247510 -NCIT:C68697 Adult Acute Myeloid Leukemia with inv(16)(p13.1q22); CBFB-MYH11 9 247511 -NCIT:C9019 Acute Myeloid Leukemia with t(16;16)(p13.1;q22); CBFB-MYH11 8 247512 -NCIT:C68698 Adult Acute Myeloid Leukemia with t(16;16)(p13.1;q22); CBFB-MYH11 9 247513 -NCIT:C9288 Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 7 247514 -NCIT:C188450 Childhood Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 8 247515 -NCIT:C68699 Adult Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 8 247516 -NCIT:C7600 Acute Myeloid Leukemia with Myelodysplasia-Related Changes 6 247517 -NCIT:C125715 Recurrent Acute Myeloid Leukemia with Myelodysplasia-Related Changes 7 247518 -NCIT:C156720 Recurrent Acute Myeloid Leukemia with Multilineage Dysplasia 8 247519 -NCIT:C180897 Refractory Acute Myeloid Leukemia with Myelodysplasia-Related Changes 7 247520 -NCIT:C4037 Acute Myeloid Leukemia Arising from Previous Myelodysplastic Syndrome 7 247521 -NCIT:C9289 Acute Myeloid Leukemia with Multilineage Dysplasia 7 247522 -NCIT:C156720 Recurrent Acute Myeloid Leukemia with Multilineage Dysplasia 8 247523 -NCIT:C82430 Acute Myeloid Leukemia with Gene Mutations 6 247524 -NCIT:C126748 Acute Myeloid Leukemia with FLT3/ITD Mutation 7 247525 -NCIT:C129786 Acute Myeloid Leukemia with RUNX1 Mutation 7 247526 -NCIT:C151898 Acute Myeloid Leukemia with Germline CEBPA Mutation 7 247527 -NCIT:C82431 Acute Myeloid Leukemia with NPM1 Mutation 7 247528 -NCIT:C82433 Acute Myeloid Leukemia with CEBPA Mutation 7 247529 -NCIT:C129782 Acute Myeloid Leukemia with Biallelic Mutations of CEBPA 8 247530 -NCIT:C129783 Acute Myeloid Leukemia with Monoallelic Mutations of CEBPA 8 247531 -NCIT:C9154 Adult Acute Myeloid Leukemia 6 247532 -NCIT:C68700 Adult Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 7 247533 -NCIT:C68696 Adult Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 8 247534 -NCIT:C68697 Adult Acute Myeloid Leukemia with inv(16)(p13.1q22); CBFB-MYH11 8 247535 -NCIT:C68698 Adult Acute Myeloid Leukemia with t(16;16)(p13.1;q22); CBFB-MYH11 8 247536 -NCIT:C68699 Adult Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 8 247537 -NCIT:C9155 Adult Acute Promyelocytic Leukemia with PML-RARA 8 247538 -NCIT:C7319 Adult Acute Monoblastic and Monocytic Leukemia 7 247539 -NCIT:C8263 Adult Acute Monocytic Leukemia 8 247540 -NCIT:C9156 Adult Acute Monoblastic Leukemia 8 247541 -NCIT:C7882 Recurrent Adult Acute Myeloid Leukemia 7 247542 -NCIT:C7961 Adult Acute Myeloid Leukemia with Maturation 7 247543 -NCIT:C7962 Adult Acute Myelomonocytic Leukemia 7 247544 -NCIT:C7964 Adult Acute Basophilic Leukemia 7 247545 -NCIT:C7965 Adult Acute Megakaryoblastic Leukemia 7 247546 -NCIT:C8303 Adult Acute Myeloid Leukemia with Minimal Differentiation 7 247547 -NCIT:C9153 Adult Acute Erythroid Leukemia 7 247548 -NCIT:C68693 Adult Pure Erythroid Leukemia 8 247549 -NCIT:C68694 Adult Erythroleukemia 8 247550 -NCIT:C9380 Adult Acute Myeloid Leukemia without Maturation 7 247551 -NCIT:C9160 Childhood Acute Myeloid Leukemia 6 247552 -NCIT:C122625 Childhood Acute Myeloid Leukemia Not Otherwise Specified 7 247553 -NCIT:C7940 Childhood Acute Monoblastic and Monocytic Leukemia 8 247554 -NCIT:C9162 Childhood Acute Monoblastic Leukemia 9 247555 -NCIT:C9163 Childhood Acute Monocytic Leukemia 9 247556 -NCIT:C7970 Childhood Acute Myelomonocytic Leukemia 8 247557 -NCIT:C7971 Childhood Acute Basophilic Leukemia 8 247558 -NCIT:C7972 Childhood Acute Megakaryoblastic Leukemia 8 247559 -NCIT:C8304 Childhood Acute Myeloid Leukemia with Minimal Differentiation 8 247560 -NCIT:C9158 Childhood Acute Myeloid Leukemia without Maturation 8 247561 -NCIT:C9164 Childhood Acute Erythroid Leukemia 8 247562 -NCIT:C9381 Childhood Acute Myeloid Leukemia with Maturation 8 247563 -NCIT:C122690 Acute Myeloid Leukemia with t(7;12)(q36;p13); HLXB9-ETV6 7 247564 -NCIT:C122691 Childhood Acute Myeloid Leukemia with NUP98 Rearrangement 7 247565 -NCIT:C131502 Acute Myeloid Leukemia with t(5;11)(q35;p15); NUP98-NSD1 8 247566 -NCIT:C131504 Acute Myeloid Leukemia with t(11;15)(p15;q35); NUP98-JARID1A 8 247567 -NCIT:C132111 Acute Megakaryoblastic Leukemia with NUP98-KDM5A 8 247568 -NCIT:C122725 Childhood Acute Myeloid Leukemia with Abnormalities of Chromosome 5q 7 247569 -NCIT:C122726 Childhood Acute Myeloid Leukemia with Abnormalities of Chromosome 7 7 247570 -NCIT:C132101 Acute Myeloid Leukemia with t(10;11)(p12;q23); MLLT10-MLL 7 247571 -NCIT:C132105 Acute Myeloid Leukemia with t(6;11)(q27;q23); MLLT4-MLL 7 247572 -NCIT:C132109 Acute Megakaryoblastic Leukemia with CBFA2T3-GLIS2 7 247573 -NCIT:C167089 Acute Myeloid Leukemia with RAM Immunophenotype 7 247574 -NCIT:C187449 Refractory Childhood Acute Myeloid Leukemia 7 247575 -NCIT:C188450 Childhood Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 7 247576 -NCIT:C188451 Childhood Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 7 247577 -NCIT:C7968 Childhood Acute Promyelocytic Leukemia with PML-RARA 7 247578 -NCIT:C82431 Acute Myeloid Leukemia with NPM1 Mutation 7 247579 -NCIT:C82433 Acute Myeloid Leukemia with CEBPA Mutation 7 247580 -NCIT:C129782 Acute Myeloid Leukemia with Biallelic Mutations of CEBPA 8 247581 -NCIT:C129783 Acute Myeloid Leukemia with Monoallelic Mutations of CEBPA 8 247582 -NCIT:C9068 Recurrent Childhood Acute Myeloid Leukemia 7 247583 -NCIT:C3174 Chronic Myelogenous Leukemia, BCR-ABL1 Positive 5 247584 -NCIT:C3173 Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 247585 -NCIT:C190786 Recurrent Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 247586 -NCIT:C190787 Refractory Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 247587 -NCIT:C3175 Chronic Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 247588 -NCIT:C7303 Splenic Manifestation of Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 247589 -NCIT:C7320 Childhood Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 247590 -NCIT:C7885 Refractory Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 247591 -NCIT:C9070 Recurrent Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 247592 -NCIT:C9110 Blast Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 247593 -NCIT:C9111 Meningeal Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 247594 -NCIT:C9128 Philadelphia Chromosome Positive, BCR-ABL1 Positive Chronic Myelogenous Leukemia 6 247595 -NCIT:C9129 Philadelphia Chromosome Negative, BCR-ABL1 Positive Chronic Myelogenous Leukemia 6 247596 -NCIT:C3176 Philadelphia-Negative Myelogenous Leukemia 5 247597 -NCIT:C9129 Philadelphia Chromosome Negative, BCR-ABL1 Positive Chronic Myelogenous Leukemia 6 247598 -NCIT:C3177 Philadelphia-Positive Myelogenous Leukemia 5 247599 -NCIT:C9128 Philadelphia Chromosome Positive, BCR-ABL1 Positive Chronic Myelogenous Leukemia 6 247600 -NCIT:C3247 Myelodysplastic Syndrome 4 247601 -NCIT:C115153 Adult Myelodysplastic Syndrome 5 247602 -NCIT:C122686 Hypocellular Myelodysplastic Syndrome 5 247603 -NCIT:C148362 Refractory Myelodysplastic Syndrome 5 247604 -NCIT:C148363 Recurrent Myelodysplastic Syndrome 5 247605 -NCIT:C168742 Hereditary Myelodysplastic Syndrome 5 247606 -NCIT:C168746 SAMD9-Associated Hereditary Myelodysplastic Syndrome 6 247607 -NCIT:C168747 SAMD9L-Associated Hereditary Myelodysplastic Syndrome 6 247608 -NCIT:C27280 Secondary Myelodysplastic Syndrome 5 247609 -NCIT:C27722 Therapy-Related Myelodysplastic Syndrome 6 247610 -NCIT:C7642 Epipodophyllotoxin-Related Myelodysplastic Syndrome 7 247611 -NCIT:C7643 Alkylating Agent-Related Myelodysplastic Syndrome 7 247612 -NCIT:C4036 Myelodysplastic Syndrome with Ring Sideroblasts 5 247613 -NCIT:C130037 Myelodysplastic Syndrome with Ring Sideroblasts and Single Lineage Dysplasia 6 247614 -NCIT:C27726 Myelodysplastic Syndrome with Ring Sideroblasts and Multilineage Dysplasia 6 247615 -NCIT:C6867 Myelodysplastic Syndrome with Isolated del(5q) 5 247616 -NCIT:C68744 Childhood Myelodysplastic Syndrome 5 247617 -NCIT:C188449 Childhood Myelodysplastic Syndrome with Excess Blasts 6 247618 -NCIT:C82596 Refractory Cytopenia of Childhood 6 247619 -NCIT:C7506 Myelodysplastic Syndrome with Excess Blasts 5 247620 -NCIT:C188449 Childhood Myelodysplastic Syndrome with Excess Blasts 6 247621 -NCIT:C7167 Myelodysplastic Syndrome with Excess Blasts-1 6 247622 -NCIT:C7168 Myelodysplastic Syndrome with Excess Blasts-2 6 247623 -NCIT:C82595 Myelodysplastic Syndrome with Excess Blasts and Fibrosis 6 247624 -NCIT:C8253 de novo Myelodysplastic Syndrome 5 247625 -NCIT:C82591 Myelodysplastic Syndrome with Single Lineage Dysplasia 5 247626 -NCIT:C2872 Refractory Anemia 6 247627 -NCIT:C82593 Refractory Neutropenia 6 247628 -NCIT:C82594 Refractory Thrombocytopenia 6 247629 -NCIT:C8574 Myelodysplastic Syndrome with Multilineage Dysplasia 5 247630 -NCIT:C8648 Myelodysplastic Syndrome, Unclassifiable 5 247631 -NCIT:C168677 Myelodysplastic Syndrome, Unclassifiable, With 1 Percent Blasts 6 247632 -NCIT:C168678 Myelodysplastic Syndrome, Unclassifiable, Based on Defining Cytogenetic Abnormality 6 247633 -NCIT:C168681 Myelodysplastic Syndrome, Unclassifiable, with Single Lineage Dysplasia 6 247634 -NCIT:C97310 Myelodysplastic Syndrome with Somatic Mutations 5 247635 -NCIT:C4345 Myeloproliferative Neoplasm 4 247636 -NCIT:C166142 Recurrent Myeloproliferative Neoplasm 5 247637 -NCIT:C179203 Recurrent Primary Myelofibrosis 6 247638 -NCIT:C190786 Recurrent Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 247639 -NCIT:C9070 Recurrent Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 247640 -NCIT:C170911 Refractory Myeloproliferative Neoplasm 5 247641 -NCIT:C171340 Refractory Primary Myelofibrosis 6 247642 -NCIT:C190787 Refractory Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 247643 -NCIT:C7885 Refractory Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 247644 -NCIT:C188315 Accelerated Phase Myeloproliferative Neoplasm 5 247645 -NCIT:C188317 Accelerated Phase Primary Myelofibrosis 6 247646 -NCIT:C3173 Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 247647 -NCIT:C190786 Recurrent Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 247648 -NCIT:C190787 Refractory Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 247649 -NCIT:C188316 Blast Phase Myeloproliferative Neoplasm 5 247650 -NCIT:C188318 Blast Phase Primary Myelofibrosis 6 247651 -NCIT:C9110 Blast Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 247652 -NCIT:C27350 Myeloproliferative Neoplasm, Unclassifiable 5 247653 -NCIT:C2862 Primary Myelofibrosis 5 247654 -NCIT:C171340 Refractory Primary Myelofibrosis 6 247655 -NCIT:C179203 Recurrent Primary Myelofibrosis 6 247656 -NCIT:C188314 Chronic Phase Primary Myelofibrosis 6 247657 -NCIT:C188317 Accelerated Phase Primary Myelofibrosis 6 247658 -NCIT:C188318 Blast Phase Primary Myelofibrosis 6 247659 -NCIT:C41237 Prefibrotic/Early Primary Myelofibrosis 6 247660 -NCIT:C41238 Overt Primary Myelofibrosis 6 247661 -NCIT:C3174 Chronic Myelogenous Leukemia, BCR-ABL1 Positive 5 247662 -NCIT:C3173 Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 247663 -NCIT:C190786 Recurrent Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 247664 -NCIT:C190787 Refractory Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 247665 -NCIT:C3175 Chronic Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 247666 -NCIT:C7303 Splenic Manifestation of Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 247667 -NCIT:C7320 Childhood Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 247668 -NCIT:C7885 Refractory Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 247669 -NCIT:C9070 Recurrent Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 247670 -NCIT:C9110 Blast Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 247671 -NCIT:C9111 Meningeal Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 247672 -NCIT:C9128 Philadelphia Chromosome Positive, BCR-ABL1 Positive Chronic Myelogenous Leukemia 6 247673 -NCIT:C9129 Philadelphia Chromosome Negative, BCR-ABL1 Positive Chronic Myelogenous Leukemia 6 247674 -NCIT:C3179 Chronic Neutrophilic Leukemia 5 247675 -NCIT:C3336 Polycythemia Vera 5 247676 -NCIT:C41232 Polycythemia Vera, Polycythemic Phase 6 247677 -NCIT:C41233 Polycythemia Vera, Post-Polycythemic Myelofibrosis Phase 6 247678 -NCIT:C3407 Essential Thrombocythemia 5 247679 -NCIT:C4563 Chronic Eosinophilic Leukemia, Not Otherwise Specified 5 247680 -NCIT:C4582 Metastatic Malignant Neoplasm in the Bone Marrow 4 247681 -NCIT:C7064 Erythroid Neoplasm 4 247682 -NCIT:C3336 Polycythemia Vera 5 247683 -NCIT:C41232 Polycythemia Vera, Polycythemic Phase 6 247684 -NCIT:C41233 Polycythemia Vera, Post-Polycythemic Myelofibrosis Phase 6 247685 -NCIT:C8923 Acute Erythroid Leukemia 5 247686 -NCIT:C156723 Recurrent Acute Erythroid Leukemia 6 247687 -NCIT:C7152 Erythroleukemia 6 247688 -NCIT:C68694 Adult Erythroleukemia 7 247689 -NCIT:C7467 Pure Erythroid Leukemia 6 247690 -NCIT:C68693 Adult Pure Erythroid Leukemia 7 247691 -NCIT:C9153 Adult Acute Erythroid Leukemia 6 247692 -NCIT:C68693 Adult Pure Erythroid Leukemia 7 247693 -NCIT:C68694 Adult Erythroleukemia 7 247694 -NCIT:C9164 Childhood Acute Erythroid Leukemia 6 247695 -NCIT:C7066 Megakaryocytic Neoplasm 4 247696 -NCIT:C3170 Acute Megakaryoblastic Leukemia 5 247697 -NCIT:C156731 Recurrent Acute Megakaryoblastic Leukemia 6 247698 -NCIT:C7965 Adult Acute Megakaryoblastic Leukemia 6 247699 -NCIT:C7972 Childhood Acute Megakaryoblastic Leukemia 6 247700 -NCIT:C3407 Essential Thrombocythemia 5 247701 -NCIT:C3575 Malignant Endocrine Neoplasm 3 247702 -NCIT:C150540 Recurrent Malignant Endocrine Neoplasm 4 247703 -NCIT:C165253 Recurrent Neuroendocrine Carcinoma 5 247704 -NCIT:C115440 Recurrent Merkel Cell Carcinoma 6 247705 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 7 247706 -NCIT:C165740 Locally Recurrent Merkel Cell Carcinoma 7 247707 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 6 247708 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 7 247709 -NCIT:C155938 Recurrent Digestive System Neuroendocrine Carcinoma 6 247710 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 7 247711 -NCIT:C183127 Recurrent Small Cell Neuroendocrine Carcinoma 6 247712 -NCIT:C183128 Recurrent Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 247713 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 8 247714 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 247715 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 7 247716 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 8 247717 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 5 247718 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 6 247719 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 6 247720 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 7 247721 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 5 247722 -NCIT:C6417 Recurrent Adrenal Cortical Carcinoma 5 247723 -NCIT:C7828 Recurrent Parathyroid Gland Carcinoma 5 247724 -NCIT:C150541 Refractory Malignant Endocrine Neoplasm 4 247725 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 5 247726 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 6 247727 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 6 247728 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 7 247729 -NCIT:C165742 Refractory Neuroendocrine Carcinoma 5 247730 -NCIT:C155937 Refractory Digestive System Neuroendocrine Carcinoma 6 247731 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 7 247732 -NCIT:C165741 Refractory Merkel Cell Carcinoma 6 247733 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 6 247734 -NCIT:C191853 Refractory Small Cell Neuroendocrine Carcinoma 6 247735 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 7 247736 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 8 247737 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 8 247738 -NCIT:C191854 Refractory Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 247739 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 8 247740 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 8 247741 -NCIT:C188036 Refractory Adrenal Cortical Carcinoma 5 247742 -NCIT:C27380 Thyroid Gland Adenocarcinoma 4 247743 -NCIT:C187645 Follicular-Derived Thyroid Gland Carcinoma, High Grade 5 247744 -NCIT:C187648 Differentiated High Grade Thyroid Gland Carcinoma 6 247745 -NCIT:C6040 Poorly Differentiated Thyroid Gland Carcinoma 6 247746 -NCIT:C174046 Metastatic Poorly Differentiated Thyroid Gland Carcinoma 7 247747 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 7 247748 -NCIT:C174569 Unresectable Poorly Differentiated Thyroid Gland Carcinoma 7 247749 -NCIT:C187994 Thyroid Gland Secretory Carcinoma 5 247750 -NCIT:C7153 Differentiated Thyroid Gland Carcinoma 5 247751 -NCIT:C118829 Hereditary Nonmedullary Thyroid Gland Carcinoma 6 247752 -NCIT:C140959 Differentiated Thyroid Gland Carcinoma by AJCC v7 Stage 6 247753 -NCIT:C140958 Thyroid Gland Follicular Carcinoma by AJCC v7 Stage 7 247754 -NCIT:C9084 Stage I Thyroid Gland Follicular Carcinoma AJCC v7 8 247755 -NCIT:C9085 Stage II Thyroid Gland Follicular Carcinoma AJCC v7 8 247756 -NCIT:C9086 Stage IV Thyroid Gland Follicular Carcinoma AJCC v7 8 247757 -NCIT:C115035 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v7 9 247758 -NCIT:C115036 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v7 9 247759 -NCIT:C115037 Stage IVC Thyroid Gland Follicular Carcinoma AJCC v7 9 247760 -NCIT:C9121 Stage III Thyroid Gland Follicular Carcinoma AJCC v7 8 247761 -NCIT:C140960 Thyroid Gland Papillary Carcinoma by AJCC v7 Stage 7 247762 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 8 247763 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 8 247764 -NCIT:C9083 Stage IV Thyroid Gland Papillary Carcinoma AJCC v7 8 247765 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 9 247766 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 9 247767 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 9 247768 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 8 247769 -NCIT:C87543 Stage I Differentiated Thyroid Gland Carcinoma AJCC v7 7 247770 -NCIT:C101539 Stage I Differentiated Thyroid Gland Carcinoma Under 45 Years AJCC v7 8 247771 -NCIT:C101540 Stage I Differentiated Thyroid Gland Carcinoma 45 Years and Older AJCC v7 8 247772 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 8 247773 -NCIT:C9084 Stage I Thyroid Gland Follicular Carcinoma AJCC v7 8 247774 -NCIT:C87544 Stage II Differentiated Thyroid Gland Carcinoma AJCC v7 7 247775 -NCIT:C101541 Stage II Differentiated Thyroid Gland Carcinoma Under 45 Years AJCC v7 8 247776 -NCIT:C101542 Stage II Differentiated Thyroid Gland Carcinoma 45 Years and Older AJCC v7 8 247777 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 8 247778 -NCIT:C9085 Stage II Thyroid Gland Follicular Carcinoma AJCC v7 8 247779 -NCIT:C87545 Stage III Differentiated Thyroid Gland Carcinoma AJCC v7 7 247780 -NCIT:C9121 Stage III Thyroid Gland Follicular Carcinoma AJCC v7 8 247781 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 8 247782 -NCIT:C87546 Stage IVA Differentiated Thyroid Gland Carcinoma AJCC v7 7 247783 -NCIT:C115035 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v7 8 247784 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 8 247785 -NCIT:C87547 Stage IVB Differentiated Thyroid Gland Carcinoma AJCC v7 7 247786 -NCIT:C115036 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v7 8 247787 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 8 247788 -NCIT:C87548 Stage IVC Differentiated Thyroid Gland Carcinoma AJCC v7 7 247789 -NCIT:C115037 Stage IVC Thyroid Gland Follicular Carcinoma AJCC v7 8 247790 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 8 247791 -NCIT:C140965 Differentiated Thyroid Gland Carcinoma by AJCC v8 Stage 6 247792 -NCIT:C140966 Stage I Differentiated Thyroid Gland Carcinoma AJCC v8 7 247793 -NCIT:C140967 Stage I Differentiated Thyroid Gland Carcinoma Under 55 Years AJCC v8 8 247794 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 9 247795 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 9 247796 -NCIT:C140968 Stage I Differentiated Thyroid Gland Carcinoma 55 Years and Older AJCC v8 8 247797 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 9 247798 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 9 247799 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 8 247800 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 9 247801 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 9 247802 -NCIT:C140988 Stage I Thyroid Gland Follicular Carcinoma AJCC v8 8 247803 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 9 247804 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 9 247805 -NCIT:C140969 Stage II Differentiated Thyroid Gland Carcinoma AJCC v8 7 247806 -NCIT:C140970 Stage II Differentiated Thyroid Gland Carcinoma Under 55 Years AJCC v8 8 247807 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 9 247808 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 9 247809 -NCIT:C140971 Stage II Differentiated Thyroid Gland Carcinoma 55 Years and Older AJCC v8 8 247810 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 9 247811 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 9 247812 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 8 247813 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 9 247814 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 9 247815 -NCIT:C140991 Stage II Thyroid Gland Follicular Carcinoma AJCC v8 8 247816 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 9 247817 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 9 247818 -NCIT:C140972 Stage III Differentiated Thyroid Gland Carcinoma AJCC v8 7 247819 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 8 247820 -NCIT:C140995 Stage III Thyroid Gland Follicular Carcinoma AJCC v8 8 247821 -NCIT:C140973 Stage IV Differentiated Thyroid Gland Carcinoma AJCC v8 7 247822 -NCIT:C140974 Stage IVA Differentiated Thyroid Gland Carcinoma AJCC v8 8 247823 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 9 247824 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 9 247825 -NCIT:C140975 Stage IVB Differentiated Thyroid Gland Carcinoma AJCC v8 8 247826 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 9 247827 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 9 247828 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 8 247829 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 9 247830 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 9 247831 -NCIT:C140996 Stage IV Thyroid Gland Follicular Carcinoma AJCC v8 8 247832 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 9 247833 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 9 247834 -NCIT:C140976 Thyroid Gland Papillary Carcinoma by AJCC v8 Stage 7 247835 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 8 247836 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 9 247837 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 9 247838 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 8 247839 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 9 247840 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 9 247841 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 8 247842 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 8 247843 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 9 247844 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 9 247845 -NCIT:C140987 Thyroid Gland Follicular Carcinoma by AJCC v8 Stage 7 247846 -NCIT:C140988 Stage I Thyroid Gland Follicular Carcinoma AJCC v8 8 247847 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 9 247848 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 9 247849 -NCIT:C140991 Stage II Thyroid Gland Follicular Carcinoma AJCC v8 8 247850 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 9 247851 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 9 247852 -NCIT:C140995 Stage III Thyroid Gland Follicular Carcinoma AJCC v8 8 247853 -NCIT:C140996 Stage IV Thyroid Gland Follicular Carcinoma AJCC v8 8 247854 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 9 247855 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 9 247856 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 6 247857 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 7 247858 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 7 247859 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 8 247860 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 6 247861 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 7 247862 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 7 247863 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 8 247864 -NCIT:C168572 Unresectable Differentiated Thyroid Gland Carcinoma 6 247865 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 7 247866 -NCIT:C174571 Unresectable Thyroid Gland Follicular Carcinoma 7 247867 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 8 247868 -NCIT:C173979 Metastatic Differentiated Thyroid Gland Carcinoma 6 247869 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 7 247870 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 8 247871 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 9 247872 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 7 247873 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 7 247874 -NCIT:C4035 Thyroid Gland Papillary Carcinoma 6 247875 -NCIT:C123903 Childhood Thyroid Gland Papillary Carcinoma 7 247876 -NCIT:C126409 Warthin-Like Variant Thyroid Gland Papillary Carcinoma 7 247877 -NCIT:C126410 Thyroid Gland Papillary Carcinoma with Fibromatosis/Fasciitis-Like/Desmoid-Type Stroma 7 247878 -NCIT:C126594 Follicular Variant Thyroid Gland Papillary Carcinoma 7 247879 -NCIT:C66850 Invasive Encapsulated Follicular Variant Thyroid Gland Papillary Carcinoma 8 247880 -NCIT:C7381 Invasive Follicular Variant Thyroid Gland Papillary Carcinoma 8 247881 -NCIT:C140960 Thyroid Gland Papillary Carcinoma by AJCC v7 Stage 7 247882 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 8 247883 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 8 247884 -NCIT:C9083 Stage IV Thyroid Gland Papillary Carcinoma AJCC v7 8 247885 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 9 247886 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 9 247887 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 9 247888 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 8 247889 -NCIT:C140976 Thyroid Gland Papillary Carcinoma by AJCC v8 Stage 7 247890 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 8 247891 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 9 247892 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 9 247893 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 8 247894 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 9 247895 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 9 247896 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 8 247897 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 8 247898 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 9 247899 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 9 247900 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 7 247901 -NCIT:C156034 Encapsulated Variant Thyroid Gland Papillary Carcinoma 7 247902 -NCIT:C156045 Spindle Cell Variant Thyroid Gland Papillary Carcinoma 7 247903 -NCIT:C156050 Hobnail Variant Thyroid Gland Papillary Carcinoma 7 247904 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 7 247905 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 7 247906 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 7 247907 -NCIT:C187644 Classic Thyroid Gland Papillary Carcinoma 7 247908 -NCIT:C35558 Tall Cell Variant Thyroid Gland Papillary Carcinoma 7 247909 -NCIT:C35830 Columnar Cell Variant Thyroid Gland Papillary Carcinoma 7 247910 -NCIT:C37304 Multicentric Thyroid Gland Papillary Carcinoma 7 247911 -NCIT:C46004 Thyroid Gland Papillary Microcarcinoma 7 247912 -NCIT:C46092 Macrofollicular Variant Thyroid Gland Papillary Carcinoma 7 247913 -NCIT:C46093 Oncocytic Variant Thyroid Gland Papillary Carcinoma 7 247914 -NCIT:C46094 Clear Cell Variant Thyroid Gland Papillary Carcinoma 7 247915 -NCIT:C46095 Solid/Trabecular Variant Thyroid Gland Papillary Carcinoma 7 247916 -NCIT:C7427 Diffuse Sclerosing Variant Thyroid Gland Papillary Carcinoma 7 247917 -NCIT:C8054 Thyroid Gland Follicular Carcinoma 6 247918 -NCIT:C123904 Childhood Thyroid Gland Follicular Carcinoma 7 247919 -NCIT:C140958 Thyroid Gland Follicular Carcinoma by AJCC v7 Stage 7 247920 -NCIT:C9084 Stage I Thyroid Gland Follicular Carcinoma AJCC v7 8 247921 -NCIT:C9085 Stage II Thyroid Gland Follicular Carcinoma AJCC v7 8 247922 -NCIT:C9086 Stage IV Thyroid Gland Follicular Carcinoma AJCC v7 8 247923 -NCIT:C115035 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v7 9 247924 -NCIT:C115036 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v7 9 247925 -NCIT:C115037 Stage IVC Thyroid Gland Follicular Carcinoma AJCC v7 9 247926 -NCIT:C9121 Stage III Thyroid Gland Follicular Carcinoma AJCC v7 8 247927 -NCIT:C140987 Thyroid Gland Follicular Carcinoma by AJCC v8 Stage 7 247928 -NCIT:C140988 Stage I Thyroid Gland Follicular Carcinoma AJCC v8 8 247929 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 9 247930 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 9 247931 -NCIT:C140991 Stage II Thyroid Gland Follicular Carcinoma AJCC v8 8 247932 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 9 247933 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 9 247934 -NCIT:C140995 Stage III Thyroid Gland Follicular Carcinoma AJCC v8 8 247935 -NCIT:C140996 Stage IV Thyroid Gland Follicular Carcinoma AJCC v8 8 247936 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 9 247937 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 9 247938 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 7 247939 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 8 247940 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 7 247941 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 8 247942 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 9 247943 -NCIT:C156122 Thyroid Gland Follicular Carcinoma, Encapsulated Angioinvasive 7 247944 -NCIT:C156123 Thyroid Gland Follicular Carcinoma, Widely Invasive 7 247945 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 7 247946 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 8 247947 -NCIT:C174571 Unresectable Thyroid Gland Follicular Carcinoma 7 247948 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 8 247949 -NCIT:C187643 Thyroid Gland Follicular Carcinoma, Signet Ring Cell Variant 7 247950 -NCIT:C46096 Thyroid Gland Follicular Carcinoma, Clear Cell Variant 7 247951 -NCIT:C4946 Thyroid Gland Oncocytic Carcinoma 7 247952 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 8 247953 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 8 247954 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 8 247955 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 8 247956 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 9 247957 -NCIT:C65200 Thyroid Gland Follicular Carcinoma, Minimally Invasive 7 247958 -NCIT:C3773 Neuroendocrine Carcinoma 4 247959 -NCIT:C155869 Metastatic Neuroendocrine Carcinoma 5 247960 -NCIT:C155870 Advanced Neuroendocrine Carcinoma 6 247961 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 7 247962 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 247963 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 247964 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 7 247965 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 247966 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 247967 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 247968 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 7 247969 -NCIT:C165300 Advanced Merkel Cell Carcinoma 7 247970 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 7 247971 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 247972 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 247973 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 247974 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 6 247975 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 7 247976 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 247977 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 247978 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 247979 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 7 247980 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 247981 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 247982 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 247983 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 7 247984 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 247985 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 247986 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 247987 -NCIT:C158908 Metastatic Large Cell Neuroendocrine Carcinoma 6 247988 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 7 247989 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 7 247990 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 247991 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 7 247992 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 247993 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 247994 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 7 247995 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 247996 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 247997 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 247998 -NCIT:C158909 Locally Advanced Neuroendocrine Carcinoma 6 247999 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 248000 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 248001 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 7 248002 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 248003 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 7 248004 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 7 248005 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 248006 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 7 248007 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 7 248008 -NCIT:C158911 Metastatic Small Cell Neuroendocrine Carcinoma 6 248009 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 7 248010 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 248011 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 248012 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 7 248013 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 248014 -NCIT:C191852 Metastatic Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 248015 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 248016 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 248017 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 8 248018 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 248019 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 6 248020 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 7 248021 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 7 248022 -NCIT:C162572 Metastatic Merkel Cell Carcinoma 6 248023 -NCIT:C165300 Advanced Merkel Cell Carcinoma 7 248024 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 7 248025 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 7 248026 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 6 248027 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 7 248028 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 7 248029 -NCIT:C163975 Neuroendocrine Carcinoma of Unknown Primary 6 248030 -NCIT:C160980 Head and Neck Neuroendocrine Carcinoma 5 248031 -NCIT:C160981 Head and Neck Small Cell Neuroendocrine Carcinoma 6 248032 -NCIT:C116318 Sinonasal Small Cell Neuroendocrine Carcinoma 7 248033 -NCIT:C35703 Salivary Gland Small Cell Neuroendocrine Carcinoma 7 248034 -NCIT:C5956 Minor Salivary Gland Small Cell Neuroendocrine Carcinoma 8 248035 -NCIT:C6025 Laryngeal Small Cell Neuroendocrine Carcinoma 7 248036 -NCIT:C160982 Head and Neck Large Cell Neuroendocrine Carcinoma 6 248037 -NCIT:C173091 Sinonasal Large Cell Neuroendocrine Carcinoma 7 248038 -NCIT:C173395 Laryngeal Large Cell Neuroendocrine Carcinoma 7 248039 -NCIT:C173650 Salivary Gland Large Cell Neuroendocrine Carcinoma 7 248040 -NCIT:C173089 Sinonasal Neuroendocrine Carcinoma 6 248041 -NCIT:C116318 Sinonasal Small Cell Neuroendocrine Carcinoma 7 248042 -NCIT:C173091 Sinonasal Large Cell Neuroendocrine Carcinoma 7 248043 -NCIT:C173390 Laryngeal Neuroendocrine Carcinoma 6 248044 -NCIT:C173395 Laryngeal Large Cell Neuroendocrine Carcinoma 7 248045 -NCIT:C6025 Laryngeal Small Cell Neuroendocrine Carcinoma 7 248046 -NCIT:C173587 Head and Neck Merkel Cell Carcinoma 6 248047 -NCIT:C173653 Salivary Gland Neuroendocrine Carcinoma 6 248048 -NCIT:C173650 Salivary Gland Large Cell Neuroendocrine Carcinoma 7 248049 -NCIT:C35703 Salivary Gland Small Cell Neuroendocrine Carcinoma 7 248050 -NCIT:C5956 Minor Salivary Gland Small Cell Neuroendocrine Carcinoma 8 248051 -NCIT:C3879 Thyroid Gland Medullary Carcinoma 6 248052 -NCIT:C123905 Childhood Thyroid Gland Medullary Carcinoma 7 248053 -NCIT:C141041 Thyroid Gland Medullary Carcinoma by AJCC v7 Stage 7 248054 -NCIT:C6133 Stage I Thyroid Gland Medullary Carcinoma AJCC v7 8 248055 -NCIT:C6134 Stage II Thyroid Gland Medullary Carcinoma AJCC v7 8 248056 -NCIT:C6135 Stage III Thyroid Gland Medullary Carcinoma AJCC v7 8 248057 -NCIT:C6136 Stage IV Thyroid Gland Medullary Carcinoma AJCC v7 8 248058 -NCIT:C87549 Stage IVA Thyroid Gland Medullary Carcinoma AJCC v7 9 248059 -NCIT:C87550 Stage IVB Thyroid Gland Medullary Carcinoma AJCC v7 9 248060 -NCIT:C87551 Stage IVC Thyroid Gland Medullary Carcinoma AJCC v7 9 248061 -NCIT:C141042 Thyroid Gland Medullary Carcinoma by AJCC v8 Stage 7 248062 -NCIT:C141043 Stage I Thyroid Gland Medullary Carcinoma AJCC v8 8 248063 -NCIT:C141044 Stage II Thyroid Gland Medullary Carcinoma AJCC v8 8 248064 -NCIT:C141045 Stage III Thyroid Gland Medullary Carcinoma AJCC v8 8 248065 -NCIT:C141046 Stage IV Thyroid Gland Medullary Carcinoma AJCC v8 8 248066 -NCIT:C141047 Stage IVA Thyroid Gland Medullary Carcinoma AJCC v8 9 248067 -NCIT:C141048 Stage IVB Thyroid Gland Medullary Carcinoma AJCC v8 9 248068 -NCIT:C141049 Stage IVC Thyroid Gland Medullary Carcinoma AJCC v8 9 248069 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 7 248070 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 8 248071 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 7 248072 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 248073 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 248074 -NCIT:C163974 Unresectable Thyroid Gland Medullary Carcinoma 7 248075 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 8 248076 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 7 248077 -NCIT:C4193 Thyroid Gland Medullary Carcinoma with Amyloid Stroma 7 248078 -NCIT:C46098 Sporadic Thyroid Gland Medullary Carcinoma 7 248079 -NCIT:C46103 Sporadic Thyroid Gland Micromedullary Carcinoma 8 248080 -NCIT:C46099 Hereditary Thyroid Gland Medullary Carcinoma 7 248081 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 8 248082 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 8 248083 -NCIT:C165253 Recurrent Neuroendocrine Carcinoma 5 248084 -NCIT:C115440 Recurrent Merkel Cell Carcinoma 6 248085 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 7 248086 -NCIT:C165740 Locally Recurrent Merkel Cell Carcinoma 7 248087 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 6 248088 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 7 248089 -NCIT:C155938 Recurrent Digestive System Neuroendocrine Carcinoma 6 248090 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 7 248091 -NCIT:C183127 Recurrent Small Cell Neuroendocrine Carcinoma 6 248092 -NCIT:C183128 Recurrent Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 248093 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 8 248094 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 248095 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 7 248096 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 8 248097 -NCIT:C165742 Refractory Neuroendocrine Carcinoma 5 248098 -NCIT:C155937 Refractory Digestive System Neuroendocrine Carcinoma 6 248099 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 7 248100 -NCIT:C165741 Refractory Merkel Cell Carcinoma 6 248101 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 6 248102 -NCIT:C191853 Refractory Small Cell Neuroendocrine Carcinoma 6 248103 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 7 248104 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 8 248105 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 8 248106 -NCIT:C191854 Refractory Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 248107 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 8 248108 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 8 248109 -NCIT:C172806 Unresectable Neuroendocrine Carcinoma 5 248110 -NCIT:C155935 Unresectable Digestive System Neuroendocrine Carcinoma 6 248111 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 7 248112 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 7 248113 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 6 248114 -NCIT:C162786 Unresectable Merkel Cell Carcinoma 6 248115 -NCIT:C163974 Unresectable Thyroid Gland Medullary Carcinoma 6 248116 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 7 248117 -NCIT:C172810 Unresectable Large Cell Neuroendocrine Carcinoma 6 248118 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 7 248119 -NCIT:C191855 Unresectable Extrapulmonary Small Cell Neuroendocrine Carcinoma 6 248120 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 7 248121 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 7 248122 -NCIT:C173385 Neuroendocrine Carcinoma, Excluding Head and Neck 5 248123 -NCIT:C128045 Cervical Neuroendocrine Carcinoma 6 248124 -NCIT:C40214 Cervical Large Cell Neuroendocrine Carcinoma 7 248125 -NCIT:C7982 Cervical Small Cell Neuroendocrine Carcinoma 7 248126 -NCIT:C128073 Vaginal Neuroendocrine Carcinoma 6 248127 -NCIT:C128075 Vaginal Large Cell Neuroendocrine Carcinoma 7 248128 -NCIT:C40263 Vaginal Small Cell Neuroendocrine Carcinoma 7 248129 -NCIT:C128243 Vulvar Neuroendocrine Carcinoma 6 248130 -NCIT:C128244 Vulvar Small Cell Neuroendocrine Carcinoma 7 248131 -NCIT:C40298 Bartholin Gland Small Cell Neuroendocrine Carcinoma 8 248132 -NCIT:C128245 Vulvar Large Cell Neuroendocrine Carcinoma 7 248133 -NCIT:C128247 Vulvar Merkel Cell Carcinoma 7 248134 -NCIT:C157759 Bladder Neuroendocrine Carcinoma 6 248135 -NCIT:C157760 Bladder Large Cell Neuroendocrine Carcinoma 7 248136 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 8 248137 -NCIT:C9461 Bladder Small Cell Neuroendocrine Carcinoma 7 248138 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 8 248139 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 8 248140 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 248141 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 8 248142 -NCIT:C158912 Prostate Neuroendocrine Carcinoma 6 248143 -NCIT:C158650 Prostate Large Cell Neuroendocrine Carcinoma 7 248144 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 7 248145 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 248146 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 248147 -NCIT:C6766 Prostate Small Cell Neuroendocrine Carcinoma 7 248148 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 248149 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 8 248150 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 8 248151 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 8 248152 -NCIT:C159224 Kidney Neuroendocrine Carcinoma 6 248153 -NCIT:C116317 Kidney Small Cell Neuroendocrine Carcinoma 7 248154 -NCIT:C159225 Kidney Large Cell Neuroendocrine Carcinoma 7 248155 -NCIT:C175581 Breast Neuroendocrine Carcinoma 6 248156 -NCIT:C40356 Breast Large Cell Neuroendocrine Carcinoma 7 248157 -NCIT:C6760 Breast Small Cell Neuroendocrine Carcinoma 7 248158 -NCIT:C45569 Lung Neuroendocrine Carcinoma 6 248159 -NCIT:C4917 Lung Small Cell Carcinoma 7 248160 -NCIT:C118815 Childhood Lung Small Cell Carcinoma 8 248161 -NCIT:C136496 Lung Small Cell Carcinoma by AJCC v7 Stage 8 248162 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 9 248163 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 10 248164 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 10 248165 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 9 248166 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 10 248167 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 10 248168 -NCIT:C6679 Stage III Lung Small Cell Carcinoma AJCC v7 9 248169 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 10 248170 -NCIT:C6681 Stage IIIB Lung Small Cell Carcinoma AJCC v7 10 248171 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 11 248172 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 11 248173 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 9 248174 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 8 248175 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 9 248176 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 9 248177 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 8 248178 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 9 248179 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 248180 -NCIT:C158495 Platinum-Sensitive Lung Small Cell Carcinoma 8 248181 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 8 248182 -NCIT:C188753 Lung Small Cell Carcinoma Neuroendocrine Subtype 8 248183 -NCIT:C188754 Lung Small Cell Carcinoma, Neuroendocrine-High Subtype 9 248184 -NCIT:C188755 Lung Small Cell Carcinoma, Neuroendocrine-Low Subtype 9 248185 -NCIT:C188756 Lung Small Cell Carcinoma Molecular Subtypes 8 248186 -NCIT:C188761 Lung Small Cell Carcinoma, A Subtype 9 248187 -NCIT:C188762 Lung Small Cell Carcinoma, N Subtype 9 248188 -NCIT:C188763 Lung Small Cell Carcinoma, P Subtype 9 248189 -NCIT:C188765 Lung Small Cell Carcinoma, I Subtype 9 248190 -NCIT:C188766 Lung Small Cell Carcinoma, Y Subtype 9 248191 -NCIT:C6683 Occult Lung Small Cell Carcinoma 8 248192 -NCIT:C7853 Limited Stage Lung Small Cell Carcinoma 8 248193 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 9 248194 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 9 248195 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 10 248196 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 10 248197 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 9 248198 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 10 248199 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 10 248200 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 9 248201 -NCIT:C9049 Extensive Stage Lung Small Cell Carcinoma 8 248202 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 9 248203 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 9 248204 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 9 248205 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 9 248206 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 8 248207 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 9 248208 -NCIT:C9137 Combined Lung Small Cell Carcinoma 8 248209 -NCIT:C9379 Combined Lung Small Cell Carcinoma and Lung Adenocarcinoma 9 248210 -NCIT:C9423 Combined Lung Small Cell and Squamous Cell Carcinoma 9 248211 -NCIT:C5672 Lung Large Cell Neuroendocrine Carcinoma 7 248212 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 8 248213 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 248214 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 248215 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 8 248216 -NCIT:C7267 Combined Lung Large Cell Neuroendocrine Carcinoma 8 248217 -NCIT:C7591 Combined Lung Carcinoma 7 248218 -NCIT:C7267 Combined Lung Large Cell Neuroendocrine Carcinoma 8 248219 -NCIT:C9137 Combined Lung Small Cell Carcinoma 8 248220 -NCIT:C9379 Combined Lung Small Cell Carcinoma and Lung Adenocarcinoma 9 248221 -NCIT:C9423 Combined Lung Small Cell and Squamous Cell Carcinoma 9 248222 -NCIT:C9231 Merkel Cell Carcinoma 6 248223 -NCIT:C115440 Recurrent Merkel Cell Carcinoma 7 248224 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 8 248225 -NCIT:C165740 Locally Recurrent Merkel Cell Carcinoma 8 248226 -NCIT:C128247 Vulvar Merkel Cell Carcinoma 7 248227 -NCIT:C136869 Merkel Cell Carcinoma by AJCC v7 Stage 7 248228 -NCIT:C85887 Stage 0 Merkel Cell Carcinoma AJCC v7 8 248229 -NCIT:C85889 Stage I Merkel Cell Carcinoma AJCC v7 8 248230 -NCIT:C85890 Stage IA Merkel Cell Carcinoma AJCC v7 9 248231 -NCIT:C85892 Stage IB Merkel Cell Carcinoma AJCC v7 9 248232 -NCIT:C85893 Stage II Merkel Cell Carcinoma AJCC v7 8 248233 -NCIT:C85894 Stage IIA Merkel Cell Carcinoma AJCC v7 9 248234 -NCIT:C85895 Stage IIB Merkel Cell Carcinoma AJCC v7 9 248235 -NCIT:C85896 Stage IIC Merkel Cell Carcinoma AJCC v7 9 248236 -NCIT:C85897 Stage III Merkel Cell Carcinoma AJCC v7 8 248237 -NCIT:C85898 Stage IIIA Merkel Cell Carcinoma AJCC v7 9 248238 -NCIT:C85899 Stage IIIB Merkel Cell Carcinoma AJCC v7 9 248239 -NCIT:C85900 Stage IV Merkel Cell Carcinoma AJCC v7 8 248240 -NCIT:C136870 Merkel Cell Carcinoma by AJCC v8 Stage 7 248241 -NCIT:C136871 Merkel Cell Carcinoma by AJCC v8 Clinical Stage 8 248242 -NCIT:C136872 Clinical Stage 0 Merkel Cell Carcinoma AJCC v8 9 248243 -NCIT:C136873 Clinical Stage I Merkel Cell Carcinoma AJCC v8 9 248244 -NCIT:C136874 Clinical Stage II Merkel Cell Carcinoma AJCC v8 9 248245 -NCIT:C136875 Clinical Stage IIA Merkel Cell Carcinoma AJCC v8 10 248246 -NCIT:C136876 Clinical Stage IIB Merkel Cell Carcinoma AJCC v8 10 248247 -NCIT:C136877 Clinical Stage III Merkel Cell Carcinoma AJCC v8 9 248248 -NCIT:C136878 Clinical Stage IV Merkel Cell Carcinoma AJCC v8 9 248249 -NCIT:C136880 Merkel Cell Carcinoma by AJCC v8 Pathologic Stage 8 248250 -NCIT:C136881 Pathologic Stage 0 Merkel Cell Carcinoma AJCC v8 9 248251 -NCIT:C136882 Pathologic Stage I Merkel Cell Carcinoma AJCC v8 9 248252 -NCIT:C136883 Pathologic Stage II Merkel Cell Carcinoma AJCC v8 9 248253 -NCIT:C136884 Pathologic Stage IIA Merkel Cell Carcinoma AJCC v8 10 248254 -NCIT:C136885 Pathologic Stage IIB Merkel Cell Carcinoma AJCC v8 10 248255 -NCIT:C136886 Pathologic Stage III Merkel Cell Carcinoma AJCC v8 9 248256 -NCIT:C136887 Pathologic Stage IIIA Merkel Cell Carcinoma AJCC v8 10 248257 -NCIT:C136888 Pathologic Stage IIIB Merkel Cell Carcinoma AJCC v8 10 248258 -NCIT:C136889 Pathologic Stage IV Merkel Cell Carcinoma AJCC v8 9 248259 -NCIT:C162572 Metastatic Merkel Cell Carcinoma 7 248260 -NCIT:C165300 Advanced Merkel Cell Carcinoma 8 248261 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 8 248262 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 8 248263 -NCIT:C162786 Unresectable Merkel Cell Carcinoma 7 248264 -NCIT:C165741 Refractory Merkel Cell Carcinoma 7 248265 -NCIT:C95405 Digestive System Neuroendocrine Carcinoma 6 248266 -NCIT:C126324 Gastroesophageal Junction Neuroendocrine Carcinoma 7 248267 -NCIT:C126323 Gastroesophageal Junction Large Cell Neuroendocrine Carcinoma 8 248268 -NCIT:C126325 Gastroesophageal Junction Small Cell Neuroendocrine Carcinoma 8 248269 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 8 248270 -NCIT:C154617 Digestive System Large Cell Neuroendocrine Carcinoma 7 248271 -NCIT:C126323 Gastroesophageal Junction Large Cell Neuroendocrine Carcinoma 8 248272 -NCIT:C172722 Liver Large Cell Neuroendocrine Carcinoma 8 248273 -NCIT:C95582 Pancreatic Large Cell Neuroendocrine Carcinoma 8 248274 -NCIT:C95620 Esophageal Large Cell Neuroendocrine Carcinoma 8 248275 -NCIT:C95885 Gastric Large Cell Neuroendocrine Carcinoma 8 248276 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 248277 -NCIT:C95985 Ampulla of Vater Large Cell Neuroendocrine Carcinoma 8 248278 -NCIT:C96065 Small Intestinal Large Cell Neuroendocrine Carcinoma 8 248279 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 248280 -NCIT:C96157 Colorectal Large Cell Neuroendocrine Carcinoma 8 248281 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 9 248282 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 9 248283 -NCIT:C96426 Appendix Large Cell Neuroendocrine Carcinoma 8 248284 -NCIT:C96550 Anal Canal Large Cell Neuroendocrine Carcinoma 8 248285 -NCIT:C96921 Gallbladder Large Cell Neuroendocrine Carcinoma 8 248286 -NCIT:C96958 Extrahepatic Bile Duct Large Cell Neuroendocrine Carcinoma 8 248287 -NCIT:C154641 Digestive System Small Cell Neuroendocrine Carcinoma 7 248288 -NCIT:C126325 Gastroesophageal Junction Small Cell Neuroendocrine Carcinoma 8 248289 -NCIT:C172725 Liver Small Cell Neuroendocrine Carcinoma 8 248290 -NCIT:C27449 Small Intestinal Small Cell Neuroendocrine Carcinoma 8 248291 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 248292 -NCIT:C43555 Appendix Small Cell Neuroendocrine Carcinoma 8 248293 -NCIT:C43587 Colorectal Small Cell Neuroendocrine Carcinoma 8 248294 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 9 248295 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 9 248296 -NCIT:C5845 Extrahepatic Bile Duct Small Cell Neuroendocrine Carcinoma 8 248297 -NCIT:C6655 Ampulla of Vater Small Cell Neuroendocrine Carcinoma 8 248298 -NCIT:C6762 Esophageal Small Cell Neuroendocrine Carcinoma 8 248299 -NCIT:C6763 Gallbladder Small Cell Neuroendocrine Carcinoma 8 248300 -NCIT:C6764 Gastric Small Cell Neuroendocrine Carcinoma 8 248301 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 248302 -NCIT:C95583 Pancreatic Small Cell Neuroendocrine Carcinoma 8 248303 -NCIT:C96551 Anal Canal Small Cell Neuroendocrine Carcinoma 8 248304 -NCIT:C155935 Unresectable Digestive System Neuroendocrine Carcinoma 7 248305 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 8 248306 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 8 248307 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 7 248308 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 8 248309 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 248310 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 248311 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 248312 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 8 248313 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 248314 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 248315 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 248316 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 248317 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 248318 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 248319 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 248320 -NCIT:C155937 Refractory Digestive System Neuroendocrine Carcinoma 7 248321 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 8 248322 -NCIT:C155938 Recurrent Digestive System Neuroendocrine Carcinoma 7 248323 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 8 248324 -NCIT:C3770 Pancreatic Neuroendocrine Carcinoma 7 248325 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 8 248326 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 8 248327 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 8 248328 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 248329 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 8 248330 -NCIT:C95582 Pancreatic Large Cell Neuroendocrine Carcinoma 8 248331 -NCIT:C95583 Pancreatic Small Cell Neuroendocrine Carcinoma 8 248332 -NCIT:C95619 Esophageal Neuroendocrine Carcinoma 7 248333 -NCIT:C6762 Esophageal Small Cell Neuroendocrine Carcinoma 8 248334 -NCIT:C95620 Esophageal Large Cell Neuroendocrine Carcinoma 8 248335 -NCIT:C95884 Gastric Neuroendocrine Carcinoma 7 248336 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 8 248337 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 248338 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 248339 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 248340 -NCIT:C6764 Gastric Small Cell Neuroendocrine Carcinoma 8 248341 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 248342 -NCIT:C95885 Gastric Large Cell Neuroendocrine Carcinoma 8 248343 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 248344 -NCIT:C95984 Ampulla of Vater Neuroendocrine Carcinoma 7 248345 -NCIT:C6655 Ampulla of Vater Small Cell Neuroendocrine Carcinoma 8 248346 -NCIT:C95985 Ampulla of Vater Large Cell Neuroendocrine Carcinoma 8 248347 -NCIT:C96063 Intestinal Neuroendocrine Carcinoma 7 248348 -NCIT:C96064 Small Intestinal Neuroendocrine Carcinoma 8 248349 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 9 248350 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 10 248351 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 11 248352 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 11 248353 -NCIT:C27449 Small Intestinal Small Cell Neuroendocrine Carcinoma 9 248354 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 248355 -NCIT:C96065 Small Intestinal Large Cell Neuroendocrine Carcinoma 9 248356 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 248357 -NCIT:C96156 Colorectal Neuroendocrine Carcinoma 8 248358 -NCIT:C43587 Colorectal Small Cell Neuroendocrine Carcinoma 9 248359 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 10 248360 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 10 248361 -NCIT:C96157 Colorectal Large Cell Neuroendocrine Carcinoma 9 248362 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 10 248363 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 10 248364 -NCIT:C96425 Appendix Neuroendocrine Carcinoma 7 248365 -NCIT:C43555 Appendix Small Cell Neuroendocrine Carcinoma 8 248366 -NCIT:C96426 Appendix Large Cell Neuroendocrine Carcinoma 8 248367 -NCIT:C96549 Anal Canal Neuroendocrine Carcinoma 7 248368 -NCIT:C96550 Anal Canal Large Cell Neuroendocrine Carcinoma 8 248369 -NCIT:C96551 Anal Canal Small Cell Neuroendocrine Carcinoma 8 248370 -NCIT:C96787 Liver Neuroendocrine Carcinoma 7 248371 -NCIT:C172722 Liver Large Cell Neuroendocrine Carcinoma 8 248372 -NCIT:C172725 Liver Small Cell Neuroendocrine Carcinoma 8 248373 -NCIT:C96919 Gallbladder Neuroendocrine Carcinoma 7 248374 -NCIT:C6763 Gallbladder Small Cell Neuroendocrine Carcinoma 8 248375 -NCIT:C96921 Gallbladder Large Cell Neuroendocrine Carcinoma 8 248376 -NCIT:C96956 Extrahepatic Bile Duct Neuroendocrine Carcinoma 7 248377 -NCIT:C5845 Extrahepatic Bile Duct Small Cell Neuroendocrine Carcinoma 8 248378 -NCIT:C96958 Extrahepatic Bile Duct Large Cell Neuroendocrine Carcinoma 8 248379 -NCIT:C173586 Extracutaneous Merkel Cell Carcinoma 5 248380 -NCIT:C173587 Head and Neck Merkel Cell Carcinoma 6 248381 -NCIT:C3915 Small Cell Neuroendocrine Carcinoma 5 248382 -NCIT:C156457 Extrapulmonary Small Cell Neuroendocrine Carcinoma 6 248383 -NCIT:C116317 Kidney Small Cell Neuroendocrine Carcinoma 7 248384 -NCIT:C128244 Vulvar Small Cell Neuroendocrine Carcinoma 7 248385 -NCIT:C40298 Bartholin Gland Small Cell Neuroendocrine Carcinoma 8 248386 -NCIT:C154641 Digestive System Small Cell Neuroendocrine Carcinoma 7 248387 -NCIT:C126325 Gastroesophageal Junction Small Cell Neuroendocrine Carcinoma 8 248388 -NCIT:C172725 Liver Small Cell Neuroendocrine Carcinoma 8 248389 -NCIT:C27449 Small Intestinal Small Cell Neuroendocrine Carcinoma 8 248390 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 248391 -NCIT:C43555 Appendix Small Cell Neuroendocrine Carcinoma 8 248392 -NCIT:C43587 Colorectal Small Cell Neuroendocrine Carcinoma 8 248393 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 9 248394 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 9 248395 -NCIT:C5845 Extrahepatic Bile Duct Small Cell Neuroendocrine Carcinoma 8 248396 -NCIT:C6655 Ampulla of Vater Small Cell Neuroendocrine Carcinoma 8 248397 -NCIT:C6762 Esophageal Small Cell Neuroendocrine Carcinoma 8 248398 -NCIT:C6763 Gallbladder Small Cell Neuroendocrine Carcinoma 8 248399 -NCIT:C6764 Gastric Small Cell Neuroendocrine Carcinoma 8 248400 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 248401 -NCIT:C95583 Pancreatic Small Cell Neuroendocrine Carcinoma 8 248402 -NCIT:C96551 Anal Canal Small Cell Neuroendocrine Carcinoma 8 248403 -NCIT:C160981 Head and Neck Small Cell Neuroendocrine Carcinoma 7 248404 -NCIT:C116318 Sinonasal Small Cell Neuroendocrine Carcinoma 8 248405 -NCIT:C35703 Salivary Gland Small Cell Neuroendocrine Carcinoma 8 248406 -NCIT:C5956 Minor Salivary Gland Small Cell Neuroendocrine Carcinoma 9 248407 -NCIT:C6025 Laryngeal Small Cell Neuroendocrine Carcinoma 8 248408 -NCIT:C183128 Recurrent Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 248409 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 8 248410 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 248411 -NCIT:C191852 Metastatic Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 248412 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 248413 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 248414 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 8 248415 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 248416 -NCIT:C191854 Refractory Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 248417 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 8 248418 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 8 248419 -NCIT:C191855 Unresectable Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 248420 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 8 248421 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 8 248422 -NCIT:C40155 Endometrial Small Cell Neuroendocrine Carcinoma 7 248423 -NCIT:C40263 Vaginal Small Cell Neuroendocrine Carcinoma 7 248424 -NCIT:C40440 Ovarian Small Cell Carcinoma, Pulmonary-Type 7 248425 -NCIT:C6176 Ureter Small Cell Neuroendocrine Carcinoma 7 248426 -NCIT:C6460 Thymic Small Cell Neuroendocrine Carcinoma 7 248427 -NCIT:C6760 Breast Small Cell Neuroendocrine Carcinoma 7 248428 -NCIT:C6766 Prostate Small Cell Neuroendocrine Carcinoma 7 248429 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 248430 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 8 248431 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 8 248432 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 8 248433 -NCIT:C7982 Cervical Small Cell Neuroendocrine Carcinoma 7 248434 -NCIT:C9461 Bladder Small Cell Neuroendocrine Carcinoma 7 248435 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 8 248436 -NCIT:C191857 Unresectable Bladder Small Cell Neuroendocrine Carcinoma 8 248437 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 248438 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 8 248439 -NCIT:C158911 Metastatic Small Cell Neuroendocrine Carcinoma 6 248440 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 7 248441 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 248442 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 248443 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 7 248444 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 248445 -NCIT:C191852 Metastatic Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 248446 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 248447 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 248448 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 8 248449 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 248450 -NCIT:C183127 Recurrent Small Cell Neuroendocrine Carcinoma 6 248451 -NCIT:C183128 Recurrent Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 248452 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 8 248453 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 248454 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 7 248455 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 8 248456 -NCIT:C191853 Refractory Small Cell Neuroendocrine Carcinoma 6 248457 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 7 248458 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 8 248459 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 8 248460 -NCIT:C191854 Refractory Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 248461 -NCIT:C191861 Refractory Bladder Small Cell Neuroendocrine Carcinoma 8 248462 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 8 248463 -NCIT:C4917 Lung Small Cell Carcinoma 6 248464 -NCIT:C118815 Childhood Lung Small Cell Carcinoma 7 248465 -NCIT:C136496 Lung Small Cell Carcinoma by AJCC v7 Stage 7 248466 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 8 248467 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 9 248468 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 9 248469 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 8 248470 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 9 248471 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 9 248472 -NCIT:C6679 Stage III Lung Small Cell Carcinoma AJCC v7 8 248473 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 9 248474 -NCIT:C6681 Stage IIIB Lung Small Cell Carcinoma AJCC v7 9 248475 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 10 248476 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 10 248477 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 8 248478 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 7 248479 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 8 248480 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 8 248481 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 7 248482 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 248483 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 248484 -NCIT:C158495 Platinum-Sensitive Lung Small Cell Carcinoma 7 248485 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 7 248486 -NCIT:C188753 Lung Small Cell Carcinoma Neuroendocrine Subtype 7 248487 -NCIT:C188754 Lung Small Cell Carcinoma, Neuroendocrine-High Subtype 8 248488 -NCIT:C188755 Lung Small Cell Carcinoma, Neuroendocrine-Low Subtype 8 248489 -NCIT:C188756 Lung Small Cell Carcinoma Molecular Subtypes 7 248490 -NCIT:C188761 Lung Small Cell Carcinoma, A Subtype 8 248491 -NCIT:C188762 Lung Small Cell Carcinoma, N Subtype 8 248492 -NCIT:C188763 Lung Small Cell Carcinoma, P Subtype 8 248493 -NCIT:C188765 Lung Small Cell Carcinoma, I Subtype 8 248494 -NCIT:C188766 Lung Small Cell Carcinoma, Y Subtype 8 248495 -NCIT:C6683 Occult Lung Small Cell Carcinoma 7 248496 -NCIT:C7853 Limited Stage Lung Small Cell Carcinoma 7 248497 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 8 248498 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 8 248499 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 9 248500 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 9 248501 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 8 248502 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 9 248503 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 9 248504 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 8 248505 -NCIT:C9049 Extensive Stage Lung Small Cell Carcinoma 7 248506 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 8 248507 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 8 248508 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 8 248509 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 8 248510 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 7 248511 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 8 248512 -NCIT:C9137 Combined Lung Small Cell Carcinoma 7 248513 -NCIT:C9379 Combined Lung Small Cell Carcinoma and Lung Adenocarcinoma 8 248514 -NCIT:C9423 Combined Lung Small Cell and Squamous Cell Carcinoma 8 248515 -NCIT:C6875 Large Cell Neuroendocrine Carcinoma 5 248516 -NCIT:C126772 Endometrial Large Cell Neuroendocrine Carcinoma 6 248517 -NCIT:C128075 Vaginal Large Cell Neuroendocrine Carcinoma 6 248518 -NCIT:C128245 Vulvar Large Cell Neuroendocrine Carcinoma 6 248519 -NCIT:C154617 Digestive System Large Cell Neuroendocrine Carcinoma 6 248520 -NCIT:C126323 Gastroesophageal Junction Large Cell Neuroendocrine Carcinoma 7 248521 -NCIT:C172722 Liver Large Cell Neuroendocrine Carcinoma 7 248522 -NCIT:C95582 Pancreatic Large Cell Neuroendocrine Carcinoma 7 248523 -NCIT:C95620 Esophageal Large Cell Neuroendocrine Carcinoma 7 248524 -NCIT:C95885 Gastric Large Cell Neuroendocrine Carcinoma 7 248525 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 248526 -NCIT:C95985 Ampulla of Vater Large Cell Neuroendocrine Carcinoma 7 248527 -NCIT:C96065 Small Intestinal Large Cell Neuroendocrine Carcinoma 7 248528 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 248529 -NCIT:C96157 Colorectal Large Cell Neuroendocrine Carcinoma 7 248530 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 8 248531 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 8 248532 -NCIT:C96426 Appendix Large Cell Neuroendocrine Carcinoma 7 248533 -NCIT:C96550 Anal Canal Large Cell Neuroendocrine Carcinoma 7 248534 -NCIT:C96921 Gallbladder Large Cell Neuroendocrine Carcinoma 7 248535 -NCIT:C96958 Extrahepatic Bile Duct Large Cell Neuroendocrine Carcinoma 7 248536 -NCIT:C157760 Bladder Large Cell Neuroendocrine Carcinoma 6 248537 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 7 248538 -NCIT:C158650 Prostate Large Cell Neuroendocrine Carcinoma 6 248539 -NCIT:C158908 Metastatic Large Cell Neuroendocrine Carcinoma 6 248540 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 7 248541 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 7 248542 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 248543 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 7 248544 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 248545 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 248546 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 7 248547 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 248548 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 248549 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 248550 -NCIT:C159225 Kidney Large Cell Neuroendocrine Carcinoma 6 248551 -NCIT:C160982 Head and Neck Large Cell Neuroendocrine Carcinoma 6 248552 -NCIT:C173091 Sinonasal Large Cell Neuroendocrine Carcinoma 7 248553 -NCIT:C173395 Laryngeal Large Cell Neuroendocrine Carcinoma 7 248554 -NCIT:C173650 Salivary Gland Large Cell Neuroendocrine Carcinoma 7 248555 -NCIT:C172810 Unresectable Large Cell Neuroendocrine Carcinoma 6 248556 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 7 248557 -NCIT:C40214 Cervical Large Cell Neuroendocrine Carcinoma 6 248558 -NCIT:C40356 Breast Large Cell Neuroendocrine Carcinoma 6 248559 -NCIT:C5238 Ovarian Large Cell Neuroendocrine Carcinoma 6 248560 -NCIT:C5672 Lung Large Cell Neuroendocrine Carcinoma 6 248561 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 7 248562 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 248563 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 248564 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 7 248565 -NCIT:C7267 Combined Lung Large Cell Neuroendocrine Carcinoma 7 248566 -NCIT:C6461 Thymic Large Cell Neuroendocrine Carcinoma 6 248567 -NCIT:C4536 Metastatic Pituitary Neuroendocrine Tumor 4 248568 -NCIT:C163956 Locally Advanced Pituitary Neuroendocrine Tumor 5 248569 -NCIT:C163959 Metastatic Unresectable Pituitary Neuroendocrine Tumor 5 248570 -NCIT:C5962 Metastatic Lactotroph Pituitary Neuroendocrine Tumor 5 248571 -NCIT:C5963 Metastatic Somatotroph Pituitary Neuroendocrine Tumor 5 248572 -NCIT:C5964 Metastatic Corticotroph Pituitary Neuroendocrine Tumor 5 248573 -NCIT:C5965 Metastatic Thyrotroph Pituitary Neuroendocrine Tumor 5 248574 -NCIT:C46104 Thyroid Gland Mixed Medullary and Follicular Cell-Derived Carcinoma 4 248575 -NCIT:C187992 Thyroid Gland Mixed Medullary and Follicular Carcinoma 5 248576 -NCIT:C187993 Thyroid Gland Mixed Medullary and Papillary Carcinoma 5 248577 -NCIT:C4906 Parathyroid Gland Carcinoma 4 248578 -NCIT:C118819 Childhood Parathyroid Gland Carcinoma 5 248579 -NCIT:C7826 Localized Parathyroid Gland Carcinoma 5 248580 -NCIT:C7828 Recurrent Parathyroid Gland Carcinoma 5 248581 -NCIT:C9044 Metastatic Parathyroid Gland Carcinoma 5 248582 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 6 248583 -NCIT:C8559 Metastatic Paraganglioma 4 248584 -NCIT:C133713 Locally Advanced Paraganglioma 5 248585 -NCIT:C157129 Locally Advanced Adrenal Gland Pheochromocytoma 6 248586 -NCIT:C160852 Advanced Paraganglioma 5 248587 -NCIT:C160853 Advanced Adrenal Gland Pheochromocytoma 6 248588 -NCIT:C4219 Metastatic Extra-Adrenal Paraganglioma 5 248589 -NCIT:C3574 Metastatic Carotid Body Paraganglioma 6 248590 -NCIT:C4623 Metastatic Jugulotympanic Paraganglioma 6 248591 -NCIT:C5392 Metastatic Cardiac Paraganglioma 6 248592 -NCIT:C6413 Metastatic Intrathoracic Paravertebral Paraganglioma 6 248593 -NCIT:C6416 Metastatic Bladder Paraganglioma 6 248594 -NCIT:C4220 Metastatic Adrenal Gland Pheochromocytoma 5 248595 -NCIT:C157129 Locally Advanced Adrenal Gland Pheochromocytoma 6 248596 -NCIT:C160853 Advanced Adrenal Gland Pheochromocytoma 6 248597 -NCIT:C92184 Metastatic Adrenal Gland Composite Pheochromocytoma 6 248598 -NCIT:C9325 Adrenal Cortical Carcinoma 4 248599 -NCIT:C104030 Adrenal Cortical Carcinoma by ENSAT Stage 5 248600 -NCIT:C104031 ENSAT Stage I Adrenal Cortical Carcinoma 6 248601 -NCIT:C104032 ENSAT Stage II Adrenal Cortical Carcinoma 6 248602 -NCIT:C104033 ENSAT Stage III Adrenal Cortical Carcinoma 6 248603 -NCIT:C104034 ENSAT Stage IV Adrenal Cortical Carcinoma 6 248604 -NCIT:C141098 Adrenal Cortical Carcinoma by AJCC v7 Stage 5 248605 -NCIT:C9214 Stage I Adrenal Cortical Carcinoma AJCC v7 6 248606 -NCIT:C9215 Stage II Adrenal Cortical Carcinoma AJCC v7 6 248607 -NCIT:C9216 Stage III Adrenal Cortical Carcinoma AJCC v7 6 248608 -NCIT:C9217 Stage IV Adrenal Cortical Carcinoma AJCC v7 6 248609 -NCIT:C141100 Adrenal Cortical Carcinoma by AJCC v8 Stage 5 248610 -NCIT:C141101 Stage I Adrenal Cortical Carcinoma AJCC v8 6 248611 -NCIT:C141102 Stage II Adrenal Cortical Carcinoma AJCC v8 6 248612 -NCIT:C141103 Stage III Adrenal Cortical Carcinoma AJCC v8 6 248613 -NCIT:C141104 Stage IV Adrenal Cortical Carcinoma AJCC v8 6 248614 -NCIT:C150580 Unresectable Adrenal Cortical Carcinoma 5 248615 -NCIT:C156070 Metastatic Adrenal Cortical Carcinoma 5 248616 -NCIT:C174443 Locally Advanced Adrenal Cortical Carcinoma 6 248617 -NCIT:C191863 Advanced Adrenal Cortical Carcinoma 6 248618 -NCIT:C188036 Refractory Adrenal Cortical Carcinoma 5 248619 -NCIT:C188181 Adrenal Cortical Oncocytic Carcinoma 5 248620 -NCIT:C188182 Adrenal Cortical Myxoid Carcinoma 5 248621 -NCIT:C188183 Adrenal Cortical High Grade Carcinoma 5 248622 -NCIT:C190069 Childhood Adrenal Cortical Carcinoma 5 248623 -NCIT:C6417 Recurrent Adrenal Cortical Carcinoma 5 248624 -NCIT:C68635 Adrenal Cortical Low Grade Carcinoma 5 248625 -NCIT:C68644 Adrenal Cortical Sarcomatoid Carcinoma 5 248626 -NCIT:C3576 Malignant Thoracic Neoplasm 3 248627 -NCIT:C142781 Thoracic NUT Carcinoma 4 248628 -NCIT:C146706 Mediastinal/Thymic NUT Carcinoma 5 248629 -NCIT:C155919 Metastatic Malignant Neoplasm in the Thoracic Cavity 4 248630 -NCIT:C35748 Metastatic Malignant Neoplasm in the Axilla 5 248631 -NCIT:C3577 Metastatic Malignant Neoplasm in the Lung 5 248632 -NCIT:C185321 Extramedullary Disease in Plasma Cell Myeloma Involving the Lung 6 248633 -NCIT:C27408 Metastatic Carcinoma in the Lung 6 248634 -NCIT:C153224 Colorectal Carcinoma Metastatic in the Lung 7 248635 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 8 248636 -NCIT:C36300 Breast Carcinoma Metastatic in the Lung 7 248637 -NCIT:C36307 Prostate Carcinoma Metastatic in the Lung 7 248638 -NCIT:C3578 Metastatic Malignant Neoplasm in the Mediastinum 5 248639 -NCIT:C3579 Metastatic Malignant Neoplasm in the Pleura 5 248640 -NCIT:C27384 Pleural Carcinomatosis 6 248641 -NCIT:C45762 Metastatic Malignant Neoplasm in the Pericardium 5 248642 -NCIT:C27385 Pericardial Carcinomatosis 6 248643 -NCIT:C4889 Metastatic Malignant Neoplasm in the Heart 5 248644 -NCIT:C5369 Secondary Heart Lymphoma 6 248645 -NCIT:C4903 Metastatic Malignant Neoplasm in the Thymus 5 248646 -NCIT:C8530 Metastatic Malignant Neoplasm in the Chest Wall 5 248647 -NCIT:C8527 Metastatic Malignant Neoplasm in the Sternum 6 248648 -NCIT:C176862 Metastatic Malignant Thoracic Neoplasm 4 248649 -NCIT:C148128 Metastatic Thymic Carcinoma 5 248650 -NCIT:C148126 Locally Advanced Thymic Carcinoma 6 248651 -NCIT:C159903 Advanced Thymic Carcinoma 6 248652 -NCIT:C153202 Metastatic Lung Carcinoma 5 248653 -NCIT:C133503 Lung Carcinoma Metastatic in the Central Nervous System 6 248654 -NCIT:C36304 Lung Carcinoma Metastatic in the Brain 7 248655 -NCIT:C153203 Advanced Lung Carcinoma 6 248656 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 248657 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 7 248658 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 248659 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 248660 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 248661 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 248662 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 8 248663 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 7 248664 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 248665 -NCIT:C180922 Advanced Bronchogenic Carcinoma 7 248666 -NCIT:C153206 Locally Advanced Lung Carcinoma 6 248667 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 7 248668 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 248669 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 248670 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 248671 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 248672 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 248673 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 8 248674 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 7 248675 -NCIT:C156092 Metastatic Lung Squamous Cell Carcinoma 6 248676 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 7 248677 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 248678 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 248679 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 248680 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 7 248681 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 248682 -NCIT:C156094 Metastatic Lung Non-Small Cell Carcinoma 6 248683 -NCIT:C128798 Metastatic Lung Non-Squamous Non-Small Cell Carcinoma 7 248684 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 248685 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 248686 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 248687 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 248688 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 248689 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 248690 -NCIT:C155908 Metastatic Lung Adenocarcinoma 8 248691 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 248692 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 248693 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 8 248694 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 248695 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 248696 -NCIT:C156093 Metastatic Lung Adenosquamous Carcinoma 7 248697 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 8 248698 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 8 248699 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 7 248700 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 248701 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 248702 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 248703 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 7 248704 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 248705 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 248706 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 248707 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 248708 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 248709 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 8 248710 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 7 248711 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 248712 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 248713 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 248714 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 248715 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 8 248716 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 6 248717 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 248718 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 7 248719 -NCIT:C187195 Oligometastatic Lung Carcinoma 6 248720 -NCIT:C36305 Lung Carcinoma Metastatic in the Bone 6 248721 -NCIT:C36306 Lung Carcinoma Metastatic in the Liver 6 248722 -NCIT:C176863 Advanced Malignant Thoracic Neoplasm 5 248723 -NCIT:C153203 Advanced Lung Carcinoma 6 248724 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 248725 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 7 248726 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 8 248727 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 248728 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 248729 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 248730 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 8 248731 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 7 248732 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 8 248733 -NCIT:C180922 Advanced Bronchogenic Carcinoma 7 248734 -NCIT:C159903 Advanced Thymic Carcinoma 6 248735 -NCIT:C165446 Advanced Lung Neuroendocrine Neoplasm 6 248736 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 248737 -NCIT:C177245 Advanced Lung Carcinoid Tumor 7 248738 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 7 248739 -NCIT:C8703 Advanced Pericardial Malignant Mesothelioma 6 248740 -NCIT:C8706 Advanced Pleural Malignant Mesothelioma 6 248741 -NCIT:C6413 Metastatic Intrathoracic Paravertebral Paraganglioma 5 248742 -NCIT:C179420 Unresectable Malignant Thoracic Neoplasm 4 248743 -NCIT:C148125 Unresectable Thymic Carcinoma 5 248744 -NCIT:C154444 Unresectable Pleural Malignant Mesothelioma 5 248745 -NCIT:C173616 Unresectable Pleural Epithelioid Mesothelioma 6 248746 -NCIT:C173617 Unresectable Pleural Sarcomatoid Mesothelioma 6 248747 -NCIT:C173618 Unresectable Pleural Biphasic Mesothelioma 6 248748 -NCIT:C155902 Unresectable Lung Carcinoma 5 248749 -NCIT:C155901 Unresectable Lung Non-Small Cell Carcinoma 6 248750 -NCIT:C162642 Unresectable Lung Non-Squamous Non-Small Cell Carcinoma 7 248751 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 8 248752 -NCIT:C171612 Unresectable Lung Non-Small Cell Squamous Carcinoma 7 248753 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 8 248754 -NCIT:C174510 Unresectable Lung Adenocarcinoma 7 248755 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 6 248756 -NCIT:C165454 Unresectable Lung Neuroendocrine Neoplasm 5 248757 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 6 248758 -NCIT:C177246 Unresectable Lung Carcinoid Tumor 6 248759 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 6 248760 -NCIT:C180872 Unresectable Thymic Neuroendocrine Neoplasm 5 248761 -NCIT:C183115 Thoracic SMARCA4-Deficient Undifferentiated Tumor 4 248762 -NCIT:C190098 Childhood Malignant Thoracic Neoplasm 4 248763 -NCIT:C188455 Childhood Primary Mediastinal (Thymic) Large B-Cell Lymphoma 5 248764 -NCIT:C190100 Childhood Malignant Lung Neoplasm 5 248765 -NCIT:C118814 Childhood Lung Non-Small Cell Carcinoma 6 248766 -NCIT:C118815 Childhood Lung Small Cell Carcinoma 6 248767 -NCIT:C5669 Pleuropulmonary Blastoma 5 248768 -NCIT:C45626 Type I Pleuropulmonary Blastoma 6 248769 -NCIT:C45627 Type II Pleuropulmonary Blastoma 6 248770 -NCIT:C45628 Type III Pleuropulmonary Blastoma 6 248771 -NCIT:C3547 Malignant Pleural Neoplasm 4 248772 -NCIT:C188055 Pleural Proximal-Type Epithelioid Sarcoma 5 248773 -NCIT:C188063 Pleural Leiomyosarcoma 5 248774 -NCIT:C3579 Metastatic Malignant Neoplasm in the Pleura 5 248775 -NCIT:C27384 Pleural Carcinomatosis 6 248776 -NCIT:C45687 Pleural Lymphoma 5 248777 -NCIT:C183135 Pleural Primary Effusion Lymphoma 6 248778 -NCIT:C45691 Pyothorax-Associated Lymphoma 6 248779 -NCIT:C45695 Pleural Epithelioid Hemangioendothelioma 5 248780 -NCIT:C45696 Pleural Synovial Sarcoma 5 248781 -NCIT:C45697 Pleural Monophasic Synovial Sarcoma 6 248782 -NCIT:C45698 Pleural Biphasic Synovial Sarcoma 6 248783 -NCIT:C7376 Pleural Malignant Mesothelioma 5 248784 -NCIT:C136374 Pleural Malignant Mesothelioma by AJCC v7 Stage 6 248785 -NCIT:C6646 Stage I Pleural Malignant Mesothelioma AJCC v7 7 248786 -NCIT:C87195 Stage IA Pleural Malignant Mesothelioma AJCC v7 8 248787 -NCIT:C87196 Stage IB Pleural Malignant Mesothelioma AJCC v7 8 248788 -NCIT:C6647 Stage II Pleural Malignant Mesothelioma AJCC v7 7 248789 -NCIT:C6648 Stage III Pleural Malignant Mesothelioma AJCC v7 7 248790 -NCIT:C6649 Stage IV Pleural Malignant Mesothelioma AJCC v7 7 248791 -NCIT:C136399 Pleural Malignant Mesothelioma by AJCC v8 Stage 6 248792 -NCIT:C136400 Stage I Pleural Malignant Mesothelioma AJCC v8 7 248793 -NCIT:C136401 Stage IB Pleural Malignant Mesothelioma AJCC v8 8 248794 -NCIT:C136409 Stage IA Pleural Malignant Mesothelioma AJCC v8 8 248795 -NCIT:C136402 Stage II Pleural Malignant Mesothelioma AJCC v8 7 248796 -NCIT:C136403 Stage III Pleural Malignant Mesothelioma AJCC v8 7 248797 -NCIT:C136404 Stage IIIA Pleural Malignant Mesothelioma AJCC v8 8 248798 -NCIT:C136405 Stage IIIB Pleural Malignant Mesothelioma AJCC v8 8 248799 -NCIT:C136406 Stage IV Pleural Malignant Mesothelioma AJCC v8 7 248800 -NCIT:C154441 Resectable Pleural Malignant Mesothelioma 6 248801 -NCIT:C154444 Unresectable Pleural Malignant Mesothelioma 6 248802 -NCIT:C173616 Unresectable Pleural Epithelioid Mesothelioma 7 248803 -NCIT:C173617 Unresectable Pleural Sarcomatoid Mesothelioma 7 248804 -NCIT:C173618 Unresectable Pleural Biphasic Mesothelioma 7 248805 -NCIT:C159675 Refractory Pleural Malignant Mesothelioma 6 248806 -NCIT:C168545 Metastatic Pleural Malignant Mesothelioma 6 248807 -NCIT:C175936 Locally Advanced Pleural Malignant Mesothelioma 7 248808 -NCIT:C8706 Advanced Pleural Malignant Mesothelioma 7 248809 -NCIT:C45662 Pleural Epithelioid Mesothelioma 6 248810 -NCIT:C173616 Unresectable Pleural Epithelioid Mesothelioma 7 248811 -NCIT:C45663 Pleural Sarcomatoid Mesothelioma 6 248812 -NCIT:C173617 Unresectable Pleural Sarcomatoid Mesothelioma 7 248813 -NCIT:C45664 Pleural Desmoplastic Mesothelioma 6 248814 -NCIT:C45665 Pleural Biphasic Mesothelioma 6 248815 -NCIT:C173618 Unresectable Pleural Biphasic Mesothelioma 7 248816 -NCIT:C45666 Localized Pleural Malignant Mesothelioma 6 248817 -NCIT:C8707 Recurrent Pleural Malignant Mesothelioma 6 248818 -NCIT:C3548 Malignant Cardiac Neoplasm 4 248819 -NCIT:C4568 Malignant Epicardial Neoplasm 5 248820 -NCIT:C4569 Malignant Myocardial Neoplasm 5 248821 -NCIT:C4570 Malignant Endocardial Neoplasm 5 248822 -NCIT:C4889 Metastatic Malignant Neoplasm in the Heart 5 248823 -NCIT:C5369 Secondary Heart Lymphoma 6 248824 -NCIT:C5362 Cardiac Epithelioid Hemangioendothelioma 5 248825 -NCIT:C5368 Cardiac Lymphoma 5 248826 -NCIT:C183146 Cardiac Diffuse Large B-Cell Lymphoma 6 248827 -NCIT:C183141 Cardiac Fibrin-Associated Diffuse Large B-Cell Lymphoma 7 248828 -NCIT:C5370 Cardiac Myeloid Sarcoma 5 248829 -NCIT:C5371 Malignant Cardiac Germ Cell Tumor 5 248830 -NCIT:C147006 Cardiac Yolk Sac Tumor 6 248831 -NCIT:C5392 Metastatic Cardiac Paraganglioma 5 248832 -NCIT:C7723 Cardiac Sarcoma 5 248833 -NCIT:C147003 Cardiac Extraskeletal Osteosarcoma 6 248834 -NCIT:C147097 Cardiac Angiosarcoma 6 248835 -NCIT:C45755 Cardiac Undifferentiated Pleomorphic Sarcoma 6 248836 -NCIT:C45756 Cardiac Synovial Sarcoma 6 248837 -NCIT:C45757 Cardiac Biphasic Synovial Sarcoma 7 248838 -NCIT:C45758 Cardiac Monophasic Synovial Sarcoma 7 248839 -NCIT:C45759 Cardiac Rhabdomyosarcoma 6 248840 -NCIT:C5361 Cardiac Fibrosarcoma 6 248841 -NCIT:C147004 Cardiac Myxofibrosarcoma 7 248842 -NCIT:C5363 Cardiac Kaposi Sarcoma 6 248843 -NCIT:C5364 Cardiac Leiomyosarcoma 6 248844 -NCIT:C5367 Cardiac Malignant Peripheral Nerve Sheath Tumor 6 248845 -NCIT:C3549 Malignant Mediastinal Neoplasm 4 248846 -NCIT:C183374 Mediastinal Follicular Dendritic Cell Sarcoma 5 248847 -NCIT:C3578 Metastatic Malignant Neoplasm in the Mediastinum 5 248848 -NCIT:C45738 Mediastinal T Lymphoblastic Leukemia/Lymphoma 5 248849 -NCIT:C45739 Mediastinal T Acute Lymphoblastic Leukemia 6 248850 -NCIT:C45740 Mediastinal T Lymphoblastic Lymphoma 6 248851 -NCIT:C45741 Mediastinal Myeloid Sarcoma 5 248852 -NCIT:C146883 Mediastinal Granulocytic Sarcoma 6 248853 -NCIT:C6446 Malignant Mediastinal Germ Cell Tumor 5 248854 -NCIT:C146848 Malignant Mediastinal Germ Cell Tumor Stage Grouping of the Pediatric Study Group 6 248855 -NCIT:C146849 Stage I Malignant Mediastinal Germ Cell Tumor 7 248856 -NCIT:C146850 Stage II Malignant Mediastinal Germ Cell Tumor 7 248857 -NCIT:C146851 Stage III Malignant Mediastinal Germ Cell Tumor 7 248858 -NCIT:C146852 Stage IV Malignant Mediastinal Germ Cell Tumor 7 248859 -NCIT:C146861 Mediastinal Mixed Germ Cell Tumor 6 248860 -NCIT:C6444 Mediastinal Mixed Nongerminomatous Germ Cell Tumor 7 248861 -NCIT:C6442 Mediastinal Mixed Embryonal Carcinoma and Teratoma 8 248862 -NCIT:C45732 Mediastinal Germ Cell Tumor with Somatic-Type Malignancy 6 248863 -NCIT:C6439 Malignant Mediastinal Nongerminomatous Germ Cell Tumor 6 248864 -NCIT:C45733 Malignant Mediastinal Germ Cell Tumor with Associated Hematologic Malignancy 7 248865 -NCIT:C6440 Mediastinal Choriocarcinoma 7 248866 -NCIT:C6441 Mediastinal Embryonal Carcinoma 7 248867 -NCIT:C6443 Mediastinal Yolk Sac Tumor 7 248868 -NCIT:C6444 Mediastinal Mixed Nongerminomatous Germ Cell Tumor 7 248869 -NCIT:C6442 Mediastinal Mixed Embryonal Carcinoma and Teratoma 8 248870 -NCIT:C6812 Mediastinal Seminoma 6 248871 -NCIT:C6627 Mediastinal Ganglioneuroblastoma 5 248872 -NCIT:C6628 Mediastinal Neuroblastoma 5 248873 -NCIT:C6633 Mediastinal Lymphoma 5 248874 -NCIT:C153175 Recurrent Mediastinal Lymphoma 6 248875 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 7 248876 -NCIT:C153177 Refractory Mediastinal Lymphoma 6 248877 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 7 248878 -NCIT:C171037 Mediastinal Non-Hodgkin Lymphoma 6 248879 -NCIT:C45380 Thymic Mucosa-Associated Lymphoid Tissue Lymphoma 7 248880 -NCIT:C45740 Mediastinal T Lymphoblastic Lymphoma 7 248881 -NCIT:C9280 Primary Mediastinal (Thymic) Large B-Cell Lymphoma 7 248882 -NCIT:C141262 Primary Mediastinal (Thymic) Large B-Cell Lymphoma by Ann Arbor Stage 8 248883 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 248884 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 248885 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 248886 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 248887 -NCIT:C188455 Childhood Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 248888 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 248889 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 248890 -NCIT:C37870 Mediastinal B-Cell Lymphoma, Unclassifiable, with Features Intermediate between Diffuse Large B-Cell Lymphoma and Classic Hodgkin Lymphoma 6 248891 -NCIT:C6451 Thymic Lymphoma 6 248892 -NCIT:C45380 Thymic Mucosa-Associated Lymphoid Tissue Lymphoma 7 248893 -NCIT:C9280 Primary Mediastinal (Thymic) Large B-Cell Lymphoma 7 248894 -NCIT:C141262 Primary Mediastinal (Thymic) Large B-Cell Lymphoma by Ann Arbor Stage 8 248895 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 248896 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 248897 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 248898 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 9 248899 -NCIT:C188455 Childhood Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 248900 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 248901 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 248902 -NCIT:C95057 Thymic Hodgkin Lymphoma 7 248903 -NCIT:C6634 Mediastinal Hodgkin Lymphoma 6 248904 -NCIT:C95057 Thymic Hodgkin Lymphoma 7 248905 -NCIT:C6642 Malignant Mediastinal Soft Tissue Neoplasm 5 248906 -NCIT:C146988 Mediastinal Epithelioid Hemangioendothelioma 6 248907 -NCIT:C6606 Mediastinal Sarcoma 6 248908 -NCIT:C6613 Mediastinal Angiosarcoma 7 248909 -NCIT:C6614 Mediastinal Liposarcoma 7 248910 -NCIT:C95038 Thymoliposarcoma 8 248911 -NCIT:C6615 Mediastinal Extraskeletal Osteosarcoma 7 248912 -NCIT:C6617 Mediastinal Rhabdomyosarcoma 7 248913 -NCIT:C6618 Mediastinal Synovial Sarcoma 7 248914 -NCIT:C6619 Mediastinal Leiomyosarcoma 7 248915 -NCIT:C6626 Mediastinal Malignant Peripheral Nerve Sheath Tumor 7 248916 -NCIT:C6630 Malignant Melanotic Peripheral Nerve Sheath Tumor of the Mediastinum 8 248917 -NCIT:C45625 Malignant Lung and Pleural Neoplasm 4 248918 -NCIT:C5669 Pleuropulmonary Blastoma 5 248919 -NCIT:C45626 Type I Pleuropulmonary Blastoma 6 248920 -NCIT:C45627 Type II Pleuropulmonary Blastoma 6 248921 -NCIT:C45628 Type III Pleuropulmonary Blastoma 6 248922 -NCIT:C4567 Malignant Pericardial Neoplasm 4 248923 -NCIT:C147098 Pericardial Sarcoma 5 248924 -NCIT:C147101 Pericardial Angiosarcoma 6 248925 -NCIT:C147102 Pericardial Synovial Sarcoma 6 248926 -NCIT:C147104 Malignant Pericardial Germ Cell Tumor 5 248927 -NCIT:C147105 Pericardial Yolk Sac Tumor 6 248928 -NCIT:C183136 Pericardial Primary Effusion Lymphoma 5 248929 -NCIT:C45762 Metastatic Malignant Neoplasm in the Pericardium 5 248930 -NCIT:C27385 Pericardial Carcinomatosis 6 248931 -NCIT:C7631 Pericardial Malignant Mesothelioma 5 248932 -NCIT:C8703 Advanced Pericardial Malignant Mesothelioma 6 248933 -NCIT:C9253 Recurrent Pericardial Malignant Mesothelioma 6 248934 -NCIT:C7753 Malignant Pericarditis 5 248935 -NCIT:C4580 Malignant Chest Wall Neoplasm 4 248936 -NCIT:C155873 Chest Wall Sarcoma 5 248937 -NCIT:C6711 Chest Wall Solitary Plasmacytoma 5 248938 -NCIT:C6712 Chest Wall Lymphoma 5 248939 -NCIT:C6716 Sternal Lymphoma 6 248940 -NCIT:C6723 Chest Wall Hodgkin Lymphoma 6 248941 -NCIT:C6724 Malignant Chest Wall Bone Neoplasm 5 248942 -NCIT:C8408 Malignant Sternal Neoplasm 5 248943 -NCIT:C6716 Sternal Lymphoma 6 248944 -NCIT:C8527 Metastatic Malignant Neoplasm in the Sternum 6 248945 -NCIT:C8530 Metastatic Malignant Neoplasm in the Chest Wall 5 248946 -NCIT:C8527 Metastatic Malignant Neoplasm in the Sternum 6 248947 -NCIT:C4962 Malignant Thymus Neoplasm 4 248948 -NCIT:C162461 Metastatic Thymic Neuroendocrine Neoplasm 5 248949 -NCIT:C180871 Advanced Thymic Neuroendocrine Neoplasm 6 248950 -NCIT:C180872 Unresectable Thymic Neuroendocrine Neoplasm 5 248951 -NCIT:C45722 Combined Thymic Epithelial Neoplasm 5 248952 -NCIT:C115444 Recurrent Combined Thymic Epithelial Neoplasm 6 248953 -NCIT:C4903 Metastatic Malignant Neoplasm in the Thymus 5 248954 -NCIT:C6451 Thymic Lymphoma 5 248955 -NCIT:C45380 Thymic Mucosa-Associated Lymphoid Tissue Lymphoma 6 248956 -NCIT:C9280 Primary Mediastinal (Thymic) Large B-Cell Lymphoma 6 248957 -NCIT:C141262 Primary Mediastinal (Thymic) Large B-Cell Lymphoma by Ann Arbor Stage 7 248958 -NCIT:C8876 Ann Arbor Stage I Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 248959 -NCIT:C8877 Ann Arbor Stage II Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 248960 -NCIT:C8878 Ann Arbor Stage III Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 248961 -NCIT:C8879 Ann Arbor Stage IV Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 248962 -NCIT:C188455 Childhood Primary Mediastinal (Thymic) Large B-Cell Lymphoma 7 248963 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 7 248964 -NCIT:C8875 Refractory Primary Mediastinal (Thymic) Large B-Cell Lymphoma 7 248965 -NCIT:C95057 Thymic Hodgkin Lymphoma 6 248966 -NCIT:C7569 Thymic Carcinoma 5 248967 -NCIT:C146706 Mediastinal/Thymic NUT Carcinoma 6 248968 -NCIT:C148125 Unresectable Thymic Carcinoma 6 248969 -NCIT:C148127 Recurrent Thymic Carcinoma 6 248970 -NCIT:C148128 Metastatic Thymic Carcinoma 6 248971 -NCIT:C148126 Locally Advanced Thymic Carcinoma 7 248972 -NCIT:C159903 Advanced Thymic Carcinoma 7 248973 -NCIT:C148173 Refractory Thymic Carcinoma 6 248974 -NCIT:C171031 Thymic Neuroendocrine Carcinoma 6 248975 -NCIT:C6460 Thymic Small Cell Neuroendocrine Carcinoma 7 248976 -NCIT:C6461 Thymic Large Cell Neuroendocrine Carcinoma 7 248977 -NCIT:C183313 Thymic Carcinoma with Adenoid Cystic Carcinoma-Like Features 6 248978 -NCIT:C183316 Thymic Carcinoma, Not Otherwise Specified 6 248979 -NCIT:C35718 Thymic Undifferentiated Carcinoma 6 248980 -NCIT:C6455 Thymic Squamous Cell Carcinoma 6 248981 -NCIT:C6456 Thymic Basaloid Carcinoma 7 248982 -NCIT:C6457 Thymic Mucoepidermoid Carcinoma 6 248983 -NCIT:C6458 Thymic Adenosquamous Carcinoma 6 248984 -NCIT:C6459 Thymic Adenocarcinoma 6 248985 -NCIT:C146717 Thymic Hepatoid Adenocarcinoma 7 248986 -NCIT:C183314 Thymic Enteric-Type Adenocarcinoma 7 248987 -NCIT:C183315 Thymic Adenocarcinoma, Not Otherwise Specified 7 248988 -NCIT:C27937 Thymic Low Grade Papillary Adenocarcinoma 7 248989 -NCIT:C6462 Thymic Clear Cell Carcinoma 6 248990 -NCIT:C6463 Thymic Sarcomatoid Carcinoma 6 248991 -NCIT:C7998 Thymic Lymphoepithelial Carcinoma 6 248992 -NCIT:C7612 Malignant Thymoma 5 248993 -NCIT:C148099 Refractory Malignant Thymoma 6 248994 -NCIT:C6886 Malignant Type AB Thymoma 6 248995 -NCIT:C6889 Malignant Type B2 Thymoma 6 248996 -NCIT:C7904 Invasive Malignant Thymoma 6 248997 -NCIT:C159904 Advanced Malignant Thymoma 7 248998 -NCIT:C7905 Recurrent Malignant Thymoma 6 248999 -NCIT:C7996 Malignant Type B1 Thymoma 6 249000 -NCIT:C7997 Thymoma Type B3 6 249001 -NCIT:C7999 Malignant Type A Thymoma 6 249002 -NCIT:C9080 Noninvasive Malignant Thymoma 6 249003 -NCIT:C95038 Thymoliposarcoma 5 249004 -NCIT:C7377 Malignant Lung Neoplasm 4 249005 -NCIT:C142785 Lung Malignant PEComa 5 249006 -NCIT:C157602 Metastatic Lung Neuroendocrine Neoplasm 5 249007 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 6 249008 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 249009 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 7 249010 -NCIT:C165446 Advanced Lung Neuroendocrine Neoplasm 6 249011 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 249012 -NCIT:C177245 Advanced Lung Carcinoid Tumor 7 249013 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 7 249014 -NCIT:C176715 Locally Advanced Lung Neuroendocrine Neoplasm 6 249015 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 7 249016 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 7 249017 -NCIT:C177243 Metastatic Lung Carcinoid Tumor 6 249018 -NCIT:C177245 Advanced Lung Carcinoid Tumor 7 249019 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 6 249020 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 7 249021 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 7 249022 -NCIT:C165454 Unresectable Lung Neuroendocrine Neoplasm 5 249023 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 6 249024 -NCIT:C177246 Unresectable Lung Carcinoid Tumor 6 249025 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 6 249026 -NCIT:C185043 Lung Plasmacytoma 5 249027 -NCIT:C190100 Childhood Malignant Lung Neoplasm 5 249028 -NCIT:C118814 Childhood Lung Non-Small Cell Carcinoma 6 249029 -NCIT:C118815 Childhood Lung Small Cell Carcinoma 6 249030 -NCIT:C3577 Metastatic Malignant Neoplasm in the Lung 5 249031 -NCIT:C185321 Extramedullary Disease in Plasma Cell Myeloma Involving the Lung 6 249032 -NCIT:C27408 Metastatic Carcinoma in the Lung 6 249033 -NCIT:C153224 Colorectal Carcinoma Metastatic in the Lung 7 249034 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 8 249035 -NCIT:C36300 Breast Carcinoma Metastatic in the Lung 7 249036 -NCIT:C36307 Prostate Carcinoma Metastatic in the Lung 7 249037 -NCIT:C4453 Lung Epithelioid Hemangioendothelioma 5 249038 -NCIT:C45652 Lung Melanoma 5 249039 -NCIT:C4566 Malignant Lung Hilum Neoplasm 5 249040 -NCIT:C7454 Lung Hilum Carcinoma 6 249041 -NCIT:C4794 Lung Lymphoma 5 249042 -NCIT:C181205 Lung Hodgkin Lymphoma 6 249043 -NCIT:C5684 Lung Non-Hodgkin Lymphoma 6 249044 -NCIT:C181211 Lung Follicular Lymphoma 7 249045 -NCIT:C188082 Lung Anaplastic Large Cell Lymphoma 7 249046 -NCIT:C45605 Lung Diffuse Large B-Cell Lymphoma 7 249047 -NCIT:C183121 Lung Intravascular Large B-Cell Lymphoma 8 249048 -NCIT:C5264 Lung Mucosa-Associated Lymphoid Tissue Lymphoma 7 249049 -NCIT:C4860 Lung Sarcoma 5 249050 -NCIT:C142825 Pulmonary Artery Intimal Sarcoma 6 249051 -NCIT:C142827 Primary Pulmonary Myxoid Sarcoma with EWSR1-CREB1 Fusion 6 249052 -NCIT:C173809 Lung Alveolar Soft Part Sarcoma 6 249053 -NCIT:C181201 Lung Rhabdomyosarcoma 6 249054 -NCIT:C188061 Lung Osteosarcoma 6 249055 -NCIT:C3551 Lung Kaposi Sarcoma 6 249056 -NCIT:C45631 Lung Synovial Sarcoma 6 249057 -NCIT:C45632 Lung Biphasic Synovial Sarcoma 7 249058 -NCIT:C45633 Lung Monophasic Synovial Sarcoma 7 249059 -NCIT:C5667 Lung Leiomyosarcoma 6 249060 -NCIT:C4878 Lung Carcinoma 5 249061 -NCIT:C136467 Lung Cancer by AJCC v8 Stage 6 249062 -NCIT:C136468 Occult Lung Cancer AJCC v8 7 249063 -NCIT:C136469 Stage 0 Lung Cancer AJCC v8 7 249064 -NCIT:C136470 Stage I Lung Cancer AJCC v8 7 249065 -NCIT:C136471 Stage IA1 Lung Cancer AJCC v8 8 249066 -NCIT:C136472 Stage IA2 Lung Cancer AJCC v8 8 249067 -NCIT:C136473 Stage IA3 Lung Cancer AJCC v8 8 249068 -NCIT:C136474 Stage IB Lung Cancer AJCC v8 8 249069 -NCIT:C136475 Stage II Lung Cancer AJCC v8 7 249070 -NCIT:C136476 Stage IIA Lung Cancer AJCC v8 8 249071 -NCIT:C136477 Stage IIB Lung Cancer AJCC v8 8 249072 -NCIT:C136478 Stage III Lung Cancer AJCC v8 7 249073 -NCIT:C136479 Stage IIIA Lung Cancer AJCC v8 8 249074 -NCIT:C136480 Stage IIIB Lung Cancer AJCC v8 8 249075 -NCIT:C136481 Stage IIIC Lung Cancer AJCC v8 8 249076 -NCIT:C136482 Stage IV Lung Cancer AJCC v8 7 249077 -NCIT:C136483 Stage IVA Lung Cancer AJCC v8 8 249078 -NCIT:C136484 Stage IVB Lung Cancer AJCC v8 8 249079 -NCIT:C141076 Refractory Lung Carcinoma 6 249080 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 7 249081 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 8 249082 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 8 249083 -NCIT:C153081 Refractory Lung Non-Small Cell Carcinoma 7 249084 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 8 249085 -NCIT:C176858 Refractory Lung Non-Squamous Non-Small Cell Carcinoma 8 249086 -NCIT:C179209 Refractory Lung Adenocarcinoma 8 249087 -NCIT:C173331 Refractory Lung Squamous Cell Carcinoma 7 249088 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 8 249089 -NCIT:C142830 Lung Myoepithelial Carcinoma 6 249090 -NCIT:C153202 Metastatic Lung Carcinoma 6 249091 -NCIT:C133503 Lung Carcinoma Metastatic in the Central Nervous System 7 249092 -NCIT:C36304 Lung Carcinoma Metastatic in the Brain 8 249093 -NCIT:C153203 Advanced Lung Carcinoma 7 249094 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 249095 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 8 249096 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 249097 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 249098 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 249099 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 249100 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 249101 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 249102 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 249103 -NCIT:C180922 Advanced Bronchogenic Carcinoma 8 249104 -NCIT:C153206 Locally Advanced Lung Carcinoma 7 249105 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 8 249106 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 249107 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 249108 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 249109 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 249110 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 249111 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 249112 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 249113 -NCIT:C156092 Metastatic Lung Squamous Cell Carcinoma 7 249114 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 249115 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 249116 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 249117 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 249118 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 249119 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 249120 -NCIT:C156094 Metastatic Lung Non-Small Cell Carcinoma 7 249121 -NCIT:C128798 Metastatic Lung Non-Squamous Non-Small Cell Carcinoma 8 249122 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 249123 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 249124 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 249125 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 249126 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 249127 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 249128 -NCIT:C155908 Metastatic Lung Adenocarcinoma 9 249129 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 249130 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 249131 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 9 249132 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 249133 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 249134 -NCIT:C156093 Metastatic Lung Adenosquamous Carcinoma 8 249135 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 249136 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 249137 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 249138 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 249139 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 249140 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 249141 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 8 249142 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 249143 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 249144 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 249145 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 249146 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 249147 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 249148 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 8 249149 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 249150 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 249151 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 249152 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 249153 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 249154 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 7 249155 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 249156 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 249157 -NCIT:C187195 Oligometastatic Lung Carcinoma 7 249158 -NCIT:C36305 Lung Carcinoma Metastatic in the Bone 7 249159 -NCIT:C36306 Lung Carcinoma Metastatic in the Liver 7 249160 -NCIT:C155902 Unresectable Lung Carcinoma 6 249161 -NCIT:C155901 Unresectable Lung Non-Small Cell Carcinoma 7 249162 -NCIT:C162642 Unresectable Lung Non-Squamous Non-Small Cell Carcinoma 8 249163 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 9 249164 -NCIT:C171612 Unresectable Lung Non-Small Cell Squamous Carcinoma 8 249165 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 249166 -NCIT:C174510 Unresectable Lung Adenocarcinoma 8 249167 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 7 249168 -NCIT:C162570 Localized Lung Carcinoma 6 249169 -NCIT:C183116 Lung Hyalinizing Clear Cell Carcinoma 6 249170 -NCIT:C188068 Lung Secretory Carcinoma 6 249171 -NCIT:C190952 Resectable Lung Carcinoma 6 249172 -NCIT:C165767 Resectable Lung Non-Small Cell Carcinoma 7 249173 -NCIT:C190954 Resectable Lung Adenocarcinoma 8 249174 -NCIT:C190953 Resectable Lung Squamous Cell Carcinoma 7 249175 -NCIT:C27637 Transplant-Related Lung Carcinoma 6 249176 -NCIT:C27925 Asbestos-Related Lung Carcinoma 6 249177 -NCIT:C2926 Lung Non-Small Cell Carcinoma 6 249178 -NCIT:C118814 Childhood Lung Non-Small Cell Carcinoma 7 249179 -NCIT:C133254 Lung Non-Small Cell Squamous Carcinoma 7 249180 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 249181 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 249182 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 249183 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 249184 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 8 249185 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 8 249186 -NCIT:C171612 Unresectable Lung Non-Small Cell Squamous Carcinoma 8 249187 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 249188 -NCIT:C45502 Lung Squamous Cell Carcinoma, Papillary Variant 8 249189 -NCIT:C45503 Lung Squamous Cell Carcinoma, Clear Cell Variant 8 249190 -NCIT:C135017 Lung Non-Squamous Non-Small Cell Carcinoma 7 249191 -NCIT:C128797 Recurrent Lung Non-Squamous Non-Small Cell Carcinoma 8 249192 -NCIT:C128798 Metastatic Lung Non-Squamous Non-Small Cell Carcinoma 8 249193 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 249194 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 249195 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 249196 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 249197 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 249198 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 249199 -NCIT:C155908 Metastatic Lung Adenocarcinoma 9 249200 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 249201 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 249202 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 9 249203 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 249204 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 249205 -NCIT:C162642 Unresectable Lung Non-Squamous Non-Small Cell Carcinoma 8 249206 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 9 249207 -NCIT:C176858 Refractory Lung Non-Squamous Non-Small Cell Carcinoma 8 249208 -NCIT:C136491 Lung Non-Small Cell Cancer by AJCC v7 Stage 7 249209 -NCIT:C136490 Lung Adenocarcinoma by AJCC v7 Stage 8 249210 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 9 249211 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 9 249212 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 249213 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 249214 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 9 249215 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 249216 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 249217 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 9 249218 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 249219 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 249220 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 9 249221 -NCIT:C136492 Lung Adenosquamous Carcinoma by AJCC v7 Stage 8 249222 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 9 249223 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 9 249224 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 249225 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 249226 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 9 249227 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 249228 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 249229 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 9 249230 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 249231 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 249232 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 9 249233 -NCIT:C136493 Lung Large Cell Carcinoma by AJCC v7 Stage 8 249234 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 9 249235 -NCIT:C6660 Stage II Lung Large Cell Carcinoma AJCC v7 9 249236 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 249237 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 249238 -NCIT:C8755 Stage I Lung Large Cell Carcinoma AJCC v7 9 249239 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 249240 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 249241 -NCIT:C8756 Stage IV Lung Large Cell Carcinoma AJCC v7 9 249242 -NCIT:C9257 Stage III Lung Large Cell Carcinoma AJCC v7 9 249243 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 249244 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 249245 -NCIT:C4012 Stage IV Lung Non-Small Cell Cancer AJCC v7 8 249246 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 9 249247 -NCIT:C8756 Stage IV Lung Large Cell Carcinoma AJCC v7 9 249248 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 9 249249 -NCIT:C6671 Stage I Lung Non-Small Cell Cancer AJCC v7 8 249250 -NCIT:C5652 Stage IA Lung Non-Small Cell Carcinoma AJCC v7 9 249251 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 249252 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 249253 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 249254 -NCIT:C5653 Stage IB Lung Non-Small Cell Carcinoma AJCC v7 9 249255 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 249256 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 249257 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 249258 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 9 249259 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 249260 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 249261 -NCIT:C8755 Stage I Lung Large Cell Carcinoma AJCC v7 9 249262 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 249263 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 249264 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 9 249265 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 249266 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 249267 -NCIT:C7777 Stage II Lung Non-Small Cell Cancer AJCC v7 8 249268 -NCIT:C5654 Stage IIB Lung Non-Small Cell Carcinoma AJCC v7 9 249269 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 249270 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 249271 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 249272 -NCIT:C5655 Stage IIA Lung Non-Small Cell Carcinoma AJCC v7 9 249273 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 249274 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 249275 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 249276 -NCIT:C6660 Stage II Lung Large Cell Carcinoma AJCC v7 9 249277 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 249278 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 249279 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 9 249280 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 249281 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 249282 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 9 249283 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 249284 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 249285 -NCIT:C7778 Stage III Lung Non-Small Cell Cancer AJCC v7 8 249286 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 9 249287 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 249288 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 249289 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 9 249290 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 249291 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 249292 -NCIT:C9102 Stage IIIA Lung Non-Small Cell Cancer AJCC v7 9 249293 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 249294 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 249295 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 249296 -NCIT:C9103 Stage IIIB Lung Non-Small Cell Cancer AJCC v7 9 249297 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 249298 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 249299 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 249300 -NCIT:C9257 Stage III Lung Large Cell Carcinoma AJCC v7 9 249301 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 249302 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 249303 -NCIT:C9104 Stage 0 Lung Non-Small Cell Cancer AJCC v6 and v7 8 249304 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 9 249305 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 9 249306 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 9 249307 -NCIT:C153081 Refractory Lung Non-Small Cell Carcinoma 7 249308 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 8 249309 -NCIT:C176858 Refractory Lung Non-Squamous Non-Small Cell Carcinoma 8 249310 -NCIT:C179209 Refractory Lung Adenocarcinoma 8 249311 -NCIT:C155901 Unresectable Lung Non-Small Cell Carcinoma 7 249312 -NCIT:C162642 Unresectable Lung Non-Squamous Non-Small Cell Carcinoma 8 249313 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 9 249314 -NCIT:C171612 Unresectable Lung Non-Small Cell Squamous Carcinoma 8 249315 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 249316 -NCIT:C174510 Unresectable Lung Adenocarcinoma 8 249317 -NCIT:C156094 Metastatic Lung Non-Small Cell Carcinoma 7 249318 -NCIT:C128798 Metastatic Lung Non-Squamous Non-Small Cell Carcinoma 8 249319 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 249320 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 249321 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 249322 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 249323 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 249324 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 249325 -NCIT:C155908 Metastatic Lung Adenocarcinoma 9 249326 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 249327 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 249328 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 9 249329 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 249330 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 249331 -NCIT:C156093 Metastatic Lung Adenosquamous Carcinoma 8 249332 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 249333 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 249334 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 249335 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 249336 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 249337 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 249338 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 8 249339 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 249340 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 249341 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 249342 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 249343 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 249344 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 249345 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 8 249346 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 249347 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 249348 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 249349 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 249350 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 249351 -NCIT:C165767 Resectable Lung Non-Small Cell Carcinoma 7 249352 -NCIT:C190954 Resectable Lung Adenocarcinoma 8 249353 -NCIT:C3512 Lung Adenocarcinoma 7 249354 -NCIT:C136486 Lung Adenocarcinoma In Situ 8 249355 -NCIT:C136716 Lung Non-Mucinous Adenocarcinoma In Situ 9 249356 -NCIT:C136717 Lung Mucinous Adenocarcinoma In Situ 9 249357 -NCIT:C136490 Lung Adenocarcinoma by AJCC v7 Stage 8 249358 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 9 249359 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 9 249360 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 249361 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 249362 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 9 249363 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 249364 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 249365 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 9 249366 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 249367 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 249368 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 9 249369 -NCIT:C136709 Invasive Lung Mucinous Adenocarcinoma 8 249370 -NCIT:C136710 Lung Enteric Adenocarcinoma 8 249371 -NCIT:C155908 Metastatic Lung Adenocarcinoma 8 249372 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 249373 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 249374 -NCIT:C174510 Unresectable Lung Adenocarcinoma 8 249375 -NCIT:C179209 Refractory Lung Adenocarcinoma 8 249376 -NCIT:C183109 Invasive Lung Non-Mucinous Adenocarcinoma 8 249377 -NCIT:C123160 Lepidic Adenocarcinoma 9 249378 -NCIT:C5649 Lung Acinar Adenocarcinoma 9 249379 -NCIT:C5650 Lung Papillary Adenocarcinoma 9 249380 -NCIT:C128847 Lung Micropapillary Adenocarcinoma 10 249381 -NCIT:C5651 Solid Lung Adenocarcinoma 9 249382 -NCIT:C190954 Resectable Lung Adenocarcinoma 8 249383 -NCIT:C2923 Minimally Invasive Lung Adenocarcinoma 8 249384 -NCIT:C7268 Minimally Invasive Lung Mucinous Adenocarcinoma 9 249385 -NCIT:C7269 Minimally Invasive Lung Non-Mucinous Adenocarcinoma 9 249386 -NCIT:C7270 Minimally Invasive Lung Mixed Non-Mucinous and Mucinous Adenocarcinoma 9 249387 -NCIT:C45509 Lung Fetal Adenocarcinoma 8 249388 -NCIT:C45512 Lung Colloid Adenocarcinoma 8 249389 -NCIT:C6699 Occult Lung Adenocarcinoma 8 249390 -NCIT:C8757 Recurrent Lung Adenocarcinoma 8 249391 -NCIT:C4450 Lung Large Cell Carcinoma 7 249392 -NCIT:C136493 Lung Large Cell Carcinoma by AJCC v7 Stage 8 249393 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 9 249394 -NCIT:C6660 Stage II Lung Large Cell Carcinoma AJCC v7 9 249395 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 249396 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 249397 -NCIT:C8755 Stage I Lung Large Cell Carcinoma AJCC v7 9 249398 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 249399 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 249400 -NCIT:C8756 Stage IV Lung Large Cell Carcinoma AJCC v7 9 249401 -NCIT:C9257 Stage III Lung Large Cell Carcinoma AJCC v7 9 249402 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 249403 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 249404 -NCIT:C4451 Lung Large Cell Carcinoma, Clear Cell Variant 8 249405 -NCIT:C6685 Occult Lung Large Cell Carcinoma 8 249406 -NCIT:C6876 Lung Large Cell Carcinoma with Rhabdoid Phenotype 8 249407 -NCIT:C7266 Lung Basaloid Large Cell Carcinoma 8 249408 -NCIT:C8753 Recurrent Lung Large Cell Carcinoma 8 249409 -NCIT:C45519 Lung Lymphoepithelial Carcinoma 7 249410 -NCIT:C45540 Lung Sarcomatoid Carcinoma 7 249411 -NCIT:C3732 Pulmonary Blastoma 8 249412 -NCIT:C4452 Lung Giant Cell Carcinoma 8 249413 -NCIT:C45541 Lung Spindle Cell Carcinoma 8 249414 -NCIT:C45542 Lung Pleomorphic Carcinoma 8 249415 -NCIT:C45543 Lung Carcinosarcoma 8 249416 -NCIT:C7783 Recurrent Lung Non-Small Cell Carcinoma 7 249417 -NCIT:C128797 Recurrent Lung Non-Squamous Non-Small Cell Carcinoma 8 249418 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 8 249419 -NCIT:C190195 Locally Recurrent Lung Non-Small Cell Carcinoma 8 249420 -NCIT:C8747 Recurrent Lung Adenosquamous Carcinoma 8 249421 -NCIT:C8753 Recurrent Lung Large Cell Carcinoma 8 249422 -NCIT:C8757 Recurrent Lung Adenocarcinoma 8 249423 -NCIT:C9038 Occult Lung Non-Small Cell Carcinoma 7 249424 -NCIT:C6684 Occult Lung Adenosquamous Carcinoma 8 249425 -NCIT:C6685 Occult Lung Large Cell Carcinoma 8 249426 -NCIT:C6699 Occult Lung Adenocarcinoma 8 249427 -NCIT:C9133 Lung Adenosquamous Carcinoma 7 249428 -NCIT:C136492 Lung Adenosquamous Carcinoma by AJCC v7 Stage 8 249429 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 9 249430 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 9 249431 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 249432 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 249433 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 9 249434 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 249435 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 249436 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 9 249437 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 249438 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 249439 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 9 249440 -NCIT:C156093 Metastatic Lung Adenosquamous Carcinoma 8 249441 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 249442 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 249443 -NCIT:C6684 Occult Lung Adenosquamous Carcinoma 8 249444 -NCIT:C8747 Recurrent Lung Adenosquamous Carcinoma 8 249445 -NCIT:C3493 Lung Squamous Cell Carcinoma 6 249446 -NCIT:C133254 Lung Non-Small Cell Squamous Carcinoma 7 249447 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 249448 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 249449 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 249450 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 249451 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 8 249452 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 8 249453 -NCIT:C171612 Unresectable Lung Non-Small Cell Squamous Carcinoma 8 249454 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 249455 -NCIT:C45502 Lung Squamous Cell Carcinoma, Papillary Variant 8 249456 -NCIT:C45503 Lung Squamous Cell Carcinoma, Clear Cell Variant 8 249457 -NCIT:C136494 Lung Squamous Cell Carcinoma by AJCC v7 Stage 7 249458 -NCIT:C8763 Stage 0 Lung Squamous Cell Carcinoma AJCC v6 and v7 8 249459 -NCIT:C8764 Stage I Lung Squamous Cell Carcinoma AJCC v7 8 249460 -NCIT:C6687 Stage IA Lung Squamous Cell Carcinoma AJCC v7 9 249461 -NCIT:C6692 Stage IB Lung Squamous Cell Carcinoma AJCC v7 9 249462 -NCIT:C8765 Stage II Lung Squamous Cell Carcinoma AJCC v7 8 249463 -NCIT:C6688 Stage IIA Lung Squamous Cell Carcinoma AJCC v7 9 249464 -NCIT:C6691 Stage IIB Lung Squamous Cell Carcinoma AJCC v7 9 249465 -NCIT:C8766 Stage III Lung Squamous Cell Carcinoma AJCC v7 8 249466 -NCIT:C6689 Stage IIIA Lung Squamous Cell Carcinoma AJCC v7 9 249467 -NCIT:C6690 Stage IIIB Lung Squamous Cell Carcinoma AJCC v7 9 249468 -NCIT:C8767 Stage IV Lung Squamous Cell Carcinoma AJCC v7 8 249469 -NCIT:C136713 Lung Keratinizing Squamous Cell Carcinoma 7 249470 -NCIT:C136714 Lung Non-Keratinizing Squamous Cell Carcinoma 7 249471 -NCIT:C136719 Lung Squamous Cell Carcinoma In Situ 7 249472 -NCIT:C8763 Stage 0 Lung Squamous Cell Carcinoma AJCC v6 and v7 8 249473 -NCIT:C156092 Metastatic Lung Squamous Cell Carcinoma 7 249474 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 249475 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 249476 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 249477 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 249478 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 249479 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 249480 -NCIT:C173331 Refractory Lung Squamous Cell Carcinoma 7 249481 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 8 249482 -NCIT:C190953 Resectable Lung Squamous Cell Carcinoma 7 249483 -NCIT:C45504 Lung Squamous Cell Carcinoma, Small Cell Variant 7 249484 -NCIT:C45507 Lung Basaloid Squamous Cell Carcinoma 7 249485 -NCIT:C5014 Recurrent Lung Squamous Cell Carcinoma 7 249486 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 8 249487 -NCIT:C6686 Occult Lung Squamous Cell Carcinoma 7 249488 -NCIT:C35875 Bronchogenic Carcinoma 6 249489 -NCIT:C180922 Advanced Bronchogenic Carcinoma 7 249490 -NCIT:C180923 Recurrent Bronchogenic Carcinoma 7 249491 -NCIT:C7779 Superior Sulcus Lung Carcinoma 7 249492 -NCIT:C45544 Lung Mucoepidermoid Carcinoma 6 249493 -NCIT:C45545 Lung Epithelial-Myoepithelial Carcinoma 6 249494 -NCIT:C45569 Lung Neuroendocrine Carcinoma 6 249495 -NCIT:C4917 Lung Small Cell Carcinoma 7 249496 -NCIT:C118815 Childhood Lung Small Cell Carcinoma 8 249497 -NCIT:C136496 Lung Small Cell Carcinoma by AJCC v7 Stage 8 249498 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 9 249499 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 10 249500 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 10 249501 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 9 249502 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 10 249503 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 10 249504 -NCIT:C6679 Stage III Lung Small Cell Carcinoma AJCC v7 9 249505 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 10 249506 -NCIT:C6681 Stage IIIB Lung Small Cell Carcinoma AJCC v7 10 249507 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 11 249508 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 11 249509 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 9 249510 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 8 249511 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 9 249512 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 9 249513 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 8 249514 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 9 249515 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 249516 -NCIT:C158495 Platinum-Sensitive Lung Small Cell Carcinoma 8 249517 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 8 249518 -NCIT:C188753 Lung Small Cell Carcinoma Neuroendocrine Subtype 8 249519 -NCIT:C188754 Lung Small Cell Carcinoma, Neuroendocrine-High Subtype 9 249520 -NCIT:C188755 Lung Small Cell Carcinoma, Neuroendocrine-Low Subtype 9 249521 -NCIT:C188756 Lung Small Cell Carcinoma Molecular Subtypes 8 249522 -NCIT:C188761 Lung Small Cell Carcinoma, A Subtype 9 249523 -NCIT:C188762 Lung Small Cell Carcinoma, N Subtype 9 249524 -NCIT:C188763 Lung Small Cell Carcinoma, P Subtype 9 249525 -NCIT:C188765 Lung Small Cell Carcinoma, I Subtype 9 249526 -NCIT:C188766 Lung Small Cell Carcinoma, Y Subtype 9 249527 -NCIT:C6683 Occult Lung Small Cell Carcinoma 8 249528 -NCIT:C7853 Limited Stage Lung Small Cell Carcinoma 8 249529 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 9 249530 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 9 249531 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 10 249532 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 10 249533 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 9 249534 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 10 249535 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 10 249536 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 9 249537 -NCIT:C9049 Extensive Stage Lung Small Cell Carcinoma 8 249538 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 9 249539 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 9 249540 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 9 249541 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 9 249542 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 8 249543 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 9 249544 -NCIT:C9137 Combined Lung Small Cell Carcinoma 8 249545 -NCIT:C9379 Combined Lung Small Cell Carcinoma and Lung Adenocarcinoma 9 249546 -NCIT:C9423 Combined Lung Small Cell and Squamous Cell Carcinoma 9 249547 -NCIT:C5672 Lung Large Cell Neuroendocrine Carcinoma 7 249548 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 8 249549 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 249550 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 249551 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 8 249552 -NCIT:C7267 Combined Lung Large Cell Neuroendocrine Carcinoma 8 249553 -NCIT:C7591 Combined Lung Carcinoma 7 249554 -NCIT:C7267 Combined Lung Large Cell Neuroendocrine Carcinoma 8 249555 -NCIT:C9137 Combined Lung Small Cell Carcinoma 8 249556 -NCIT:C9379 Combined Lung Small Cell Carcinoma and Lung Adenocarcinoma 9 249557 -NCIT:C9423 Combined Lung Small Cell and Squamous Cell Carcinoma 9 249558 -NCIT:C5641 Occult Lung Carcinoma 6 249559 -NCIT:C136468 Occult Lung Cancer AJCC v8 7 249560 -NCIT:C6683 Occult Lung Small Cell Carcinoma 7 249561 -NCIT:C6686 Occult Lung Squamous Cell Carcinoma 7 249562 -NCIT:C9038 Occult Lung Non-Small Cell Carcinoma 7 249563 -NCIT:C6684 Occult Lung Adenosquamous Carcinoma 8 249564 -NCIT:C6685 Occult Lung Large Cell Carcinoma 8 249565 -NCIT:C6699 Occult Lung Adenocarcinoma 8 249566 -NCIT:C5666 Lung Adenoid Cystic Carcinoma 6 249567 -NCIT:C7454 Lung Hilum Carcinoma 6 249568 -NCIT:C8953 Recurrent Lung Carcinoma 6 249569 -NCIT:C180923 Recurrent Bronchogenic Carcinoma 7 249570 -NCIT:C5014 Recurrent Lung Squamous Cell Carcinoma 7 249571 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 8 249572 -NCIT:C7783 Recurrent Lung Non-Small Cell Carcinoma 7 249573 -NCIT:C128797 Recurrent Lung Non-Squamous Non-Small Cell Carcinoma 8 249574 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 8 249575 -NCIT:C190195 Locally Recurrent Lung Non-Small Cell Carcinoma 8 249576 -NCIT:C8747 Recurrent Lung Adenosquamous Carcinoma 8 249577 -NCIT:C8753 Recurrent Lung Large Cell Carcinoma 8 249578 -NCIT:C8757 Recurrent Lung Adenocarcinoma 8 249579 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 7 249580 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 8 249581 -NCIT:C90519 Lung Cancer by AJCC v6 Stage 6 249582 -NCIT:C27467 Stage 0 Lung Cancer AJCC v6 and v7 7 249583 -NCIT:C9104 Stage 0 Lung Non-Small Cell Cancer AJCC v6 and v7 8 249584 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 9 249585 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 9 249586 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 9 249587 -NCIT:C8772 Stage I Lung Cancer AJCC v6 7 249588 -NCIT:C8773 Stage III Lung Cancer AJCC v6 7 249589 -NCIT:C8774 Stage IV Lung Cancer AJCC v6 7 249590 -NCIT:C8954 Stage II Lung Cancer AJCC v6 7 249591 -NCIT:C91232 Lung Cancer by AJCC v7 Stage 6 249592 -NCIT:C136491 Lung Non-Small Cell Cancer by AJCC v7 Stage 7 249593 -NCIT:C136490 Lung Adenocarcinoma by AJCC v7 Stage 8 249594 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 9 249595 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 9 249596 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 249597 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 249598 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 9 249599 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 249600 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 249601 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 9 249602 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 249603 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 249604 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 9 249605 -NCIT:C136492 Lung Adenosquamous Carcinoma by AJCC v7 Stage 8 249606 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 9 249607 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 9 249608 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 249609 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 249610 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 9 249611 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 249612 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 249613 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 9 249614 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 249615 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 249616 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 9 249617 -NCIT:C136493 Lung Large Cell Carcinoma by AJCC v7 Stage 8 249618 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 9 249619 -NCIT:C6660 Stage II Lung Large Cell Carcinoma AJCC v7 9 249620 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 249621 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 249622 -NCIT:C8755 Stage I Lung Large Cell Carcinoma AJCC v7 9 249623 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 249624 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 249625 -NCIT:C8756 Stage IV Lung Large Cell Carcinoma AJCC v7 9 249626 -NCIT:C9257 Stage III Lung Large Cell Carcinoma AJCC v7 9 249627 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 249628 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 249629 -NCIT:C4012 Stage IV Lung Non-Small Cell Cancer AJCC v7 8 249630 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 9 249631 -NCIT:C8756 Stage IV Lung Large Cell Carcinoma AJCC v7 9 249632 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 9 249633 -NCIT:C6671 Stage I Lung Non-Small Cell Cancer AJCC v7 8 249634 -NCIT:C5652 Stage IA Lung Non-Small Cell Carcinoma AJCC v7 9 249635 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 249636 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 249637 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 249638 -NCIT:C5653 Stage IB Lung Non-Small Cell Carcinoma AJCC v7 9 249639 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 249640 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 249641 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 249642 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 9 249643 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 249644 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 249645 -NCIT:C8755 Stage I Lung Large Cell Carcinoma AJCC v7 9 249646 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 249647 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 249648 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 9 249649 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 249650 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 249651 -NCIT:C7777 Stage II Lung Non-Small Cell Cancer AJCC v7 8 249652 -NCIT:C5654 Stage IIB Lung Non-Small Cell Carcinoma AJCC v7 9 249653 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 249654 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 249655 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 249656 -NCIT:C5655 Stage IIA Lung Non-Small Cell Carcinoma AJCC v7 9 249657 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 249658 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 249659 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 249660 -NCIT:C6660 Stage II Lung Large Cell Carcinoma AJCC v7 9 249661 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 249662 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 249663 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 9 249664 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 249665 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 249666 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 9 249667 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 249668 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 249669 -NCIT:C7778 Stage III Lung Non-Small Cell Cancer AJCC v7 8 249670 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 9 249671 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 249672 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 249673 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 9 249674 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 249675 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 249676 -NCIT:C9102 Stage IIIA Lung Non-Small Cell Cancer AJCC v7 9 249677 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 249678 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 249679 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 249680 -NCIT:C9103 Stage IIIB Lung Non-Small Cell Cancer AJCC v7 9 249681 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 249682 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 249683 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 249684 -NCIT:C9257 Stage III Lung Large Cell Carcinoma AJCC v7 9 249685 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 249686 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 249687 -NCIT:C9104 Stage 0 Lung Non-Small Cell Cancer AJCC v6 and v7 8 249688 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 9 249689 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 9 249690 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 9 249691 -NCIT:C136494 Lung Squamous Cell Carcinoma by AJCC v7 Stage 7 249692 -NCIT:C8763 Stage 0 Lung Squamous Cell Carcinoma AJCC v6 and v7 8 249693 -NCIT:C8764 Stage I Lung Squamous Cell Carcinoma AJCC v7 8 249694 -NCIT:C6687 Stage IA Lung Squamous Cell Carcinoma AJCC v7 9 249695 -NCIT:C6692 Stage IB Lung Squamous Cell Carcinoma AJCC v7 9 249696 -NCIT:C8765 Stage II Lung Squamous Cell Carcinoma AJCC v7 8 249697 -NCIT:C6688 Stage IIA Lung Squamous Cell Carcinoma AJCC v7 9 249698 -NCIT:C6691 Stage IIB Lung Squamous Cell Carcinoma AJCC v7 9 249699 -NCIT:C8766 Stage III Lung Squamous Cell Carcinoma AJCC v7 8 249700 -NCIT:C6689 Stage IIIA Lung Squamous Cell Carcinoma AJCC v7 9 249701 -NCIT:C6690 Stage IIIB Lung Squamous Cell Carcinoma AJCC v7 9 249702 -NCIT:C8767 Stage IV Lung Squamous Cell Carcinoma AJCC v7 8 249703 -NCIT:C136496 Lung Small Cell Carcinoma by AJCC v7 Stage 7 249704 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 8 249705 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 9 249706 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 9 249707 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 8 249708 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 9 249709 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 9 249710 -NCIT:C6679 Stage III Lung Small Cell Carcinoma AJCC v7 8 249711 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 9 249712 -NCIT:C6681 Stage IIIB Lung Small Cell Carcinoma AJCC v7 9 249713 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 10 249714 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 10 249715 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 8 249716 -NCIT:C27467 Stage 0 Lung Cancer AJCC v6 and v7 7 249717 -NCIT:C9104 Stage 0 Lung Non-Small Cell Cancer AJCC v6 and v7 8 249718 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 9 249719 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 9 249720 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 9 249721 -NCIT:C88888 Stage I Lung Cancer AJCC v7 7 249722 -NCIT:C5642 Stage IA Lung Cancer AJCC v7 8 249723 -NCIT:C5652 Stage IA Lung Non-Small Cell Carcinoma AJCC v7 9 249724 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 249725 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 249726 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 249727 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 9 249728 -NCIT:C6687 Stage IA Lung Squamous Cell Carcinoma AJCC v7 9 249729 -NCIT:C5643 Stage IB Lung Cancer AJCC v7 8 249730 -NCIT:C5653 Stage IB Lung Non-Small Cell Carcinoma AJCC v7 9 249731 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 249732 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 249733 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 249734 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 9 249735 -NCIT:C6692 Stage IB Lung Squamous Cell Carcinoma AJCC v7 9 249736 -NCIT:C6671 Stage I Lung Non-Small Cell Cancer AJCC v7 8 249737 -NCIT:C5652 Stage IA Lung Non-Small Cell Carcinoma AJCC v7 9 249738 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 249739 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 249740 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 249741 -NCIT:C5653 Stage IB Lung Non-Small Cell Carcinoma AJCC v7 9 249742 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 249743 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 249744 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 249745 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 9 249746 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 249747 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 249748 -NCIT:C8755 Stage I Lung Large Cell Carcinoma AJCC v7 9 249749 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 249750 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 249751 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 9 249752 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 249753 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 249754 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 8 249755 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 9 249756 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 9 249757 -NCIT:C8764 Stage I Lung Squamous Cell Carcinoma AJCC v7 8 249758 -NCIT:C6687 Stage IA Lung Squamous Cell Carcinoma AJCC v7 9 249759 -NCIT:C6692 Stage IB Lung Squamous Cell Carcinoma AJCC v7 9 249760 -NCIT:C88889 Stage II Lung Cancer AJCC v7 7 249761 -NCIT:C5644 Stage IIA Lung Cancer AJCC v7 8 249762 -NCIT:C5655 Stage IIA Lung Non-Small Cell Carcinoma AJCC v7 9 249763 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 249764 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 249765 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 249766 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 9 249767 -NCIT:C6688 Stage IIA Lung Squamous Cell Carcinoma AJCC v7 9 249768 -NCIT:C5645 Stage IIB Lung Cancer AJCC v7 8 249769 -NCIT:C5654 Stage IIB Lung Non-Small Cell Carcinoma AJCC v7 9 249770 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 249771 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 249772 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 249773 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 9 249774 -NCIT:C6691 Stage IIB Lung Squamous Cell Carcinoma AJCC v7 9 249775 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 8 249776 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 9 249777 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 9 249778 -NCIT:C7777 Stage II Lung Non-Small Cell Cancer AJCC v7 8 249779 -NCIT:C5654 Stage IIB Lung Non-Small Cell Carcinoma AJCC v7 9 249780 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 249781 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 249782 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 249783 -NCIT:C5655 Stage IIA Lung Non-Small Cell Carcinoma AJCC v7 9 249784 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 249785 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 249786 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 249787 -NCIT:C6660 Stage II Lung Large Cell Carcinoma AJCC v7 9 249788 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 249789 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 249790 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 9 249791 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 249792 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 249793 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 9 249794 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 249795 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 249796 -NCIT:C8765 Stage II Lung Squamous Cell Carcinoma AJCC v7 8 249797 -NCIT:C6688 Stage IIA Lung Squamous Cell Carcinoma AJCC v7 9 249798 -NCIT:C6691 Stage IIB Lung Squamous Cell Carcinoma AJCC v7 9 249799 -NCIT:C88890 Stage III Lung Cancer AJCC v7 7 249800 -NCIT:C5646 Stage IIIA Lung Cancer AJCC v7 8 249801 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 9 249802 -NCIT:C6689 Stage IIIA Lung Squamous Cell Carcinoma AJCC v7 9 249803 -NCIT:C9102 Stage IIIA Lung Non-Small Cell Cancer AJCC v7 9 249804 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 249805 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 249806 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 249807 -NCIT:C5647 Stage IIIB Lung Cancer AJCC v7 8 249808 -NCIT:C6681 Stage IIIB Lung Small Cell Carcinoma AJCC v7 9 249809 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 10 249810 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 10 249811 -NCIT:C6690 Stage IIIB Lung Squamous Cell Carcinoma AJCC v7 9 249812 -NCIT:C9103 Stage IIIB Lung Non-Small Cell Cancer AJCC v7 9 249813 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 249814 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 249815 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 249816 -NCIT:C6679 Stage III Lung Small Cell Carcinoma AJCC v7 8 249817 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 9 249818 -NCIT:C6681 Stage IIIB Lung Small Cell Carcinoma AJCC v7 9 249819 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 10 249820 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 10 249821 -NCIT:C7778 Stage III Lung Non-Small Cell Cancer AJCC v7 8 249822 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 9 249823 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 249824 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 249825 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 9 249826 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 249827 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 249828 -NCIT:C9102 Stage IIIA Lung Non-Small Cell Cancer AJCC v7 9 249829 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 249830 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 249831 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 249832 -NCIT:C9103 Stage IIIB Lung Non-Small Cell Cancer AJCC v7 9 249833 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 249834 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 249835 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 249836 -NCIT:C9257 Stage III Lung Large Cell Carcinoma AJCC v7 9 249837 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 249838 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 249839 -NCIT:C8766 Stage III Lung Squamous Cell Carcinoma AJCC v7 8 249840 -NCIT:C6689 Stage IIIA Lung Squamous Cell Carcinoma AJCC v7 9 249841 -NCIT:C6690 Stage IIIB Lung Squamous Cell Carcinoma AJCC v7 9 249842 -NCIT:C88891 Stage IV Lung Cancer AJCC v7 7 249843 -NCIT:C4012 Stage IV Lung Non-Small Cell Cancer AJCC v7 8 249844 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 9 249845 -NCIT:C8756 Stage IV Lung Large Cell Carcinoma AJCC v7 9 249846 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 9 249847 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 8 249848 -NCIT:C8767 Stage IV Lung Squamous Cell Carcinoma AJCC v7 8 249849 -NCIT:C7527 Malignant Superior Sulcus Neoplasm 5 249850 -NCIT:C7779 Superior Sulcus Lung Carcinoma 6 249851 -NCIT:C35812 Malignant Lymph Node Neoplasm 3 249852 -NCIT:C27500 Lymphadenopathic Kaposi Sarcoma 4 249853 -NCIT:C4904 Metastatic Malignant Neoplasm in the Lymph Nodes 4 249854 -NCIT:C153227 Breast Carcinoma Metastatic in the Lymph Nodes 5 249855 -NCIT:C157452 Metastatic Squamous Cell Carcinoma in the Cervical Lymph Nodes 5 249856 -NCIT:C161587 Prostate Carcinoma Metastatic in the Lymph Nodes 5 249857 -NCIT:C175222 Metastatic Malignant Neoplasm in the Regional Lymph Nodes 5 249858 -NCIT:C175934 Metastatic Malignant Neoplasm in the Supraclavicular Lymph Nodes 5 249859 -NCIT:C183510 Metastatic Malignant Neoplasm in the Mediastinal Lymph Nodes 5 249860 -NCIT:C36025 Anaplastic Malignant Neoplasm 3 249861 -NCIT:C118421 Anaplastic Plasmacytoma 4 249862 -NCIT:C129327 Anaplastic Pleomorphic Xanthoastrocytoma 4 249863 -NCIT:C160904 Recurrent Anaplastic Pleomorphic Xanthoastrocytoma 5 249864 -NCIT:C160905 Refractory Anaplastic Pleomorphic Xanthoastrocytoma 5 249865 -NCIT:C154496 Anaplastic Sarcoma of the Kidney 4 249866 -NCIT:C189260 Childhood Anaplastic Sarcoma of the Kidney 5 249867 -NCIT:C167335 Astrocytoma, IDH-Mutant, Grade 4 4 249868 -NCIT:C182018 Recurrent Astrocytoma, IDH-Mutant, Grade 4 5 249869 -NCIT:C27004 Sarcomatoid Carcinoma 4 249870 -NCIT:C27084 Spindle Cell Squamous Cell Carcinoma 5 249871 -NCIT:C129289 Gingival Spindle Cell Carcinoma 6 249872 -NCIT:C173079 Sinonasal Spindle Cell Squamous Cell Carcinoma 6 249873 -NCIT:C174398 Conjunctival Spindle Cell Carcinoma 6 249874 -NCIT:C40358 Breast Squamous Cell Carcinoma, Spindle Cell Variant 6 249875 -NCIT:C4666 Skin Spindle Cell Squamous Cell Carcinoma 6 249876 -NCIT:C54336 Laryngeal Squamous Cell Carcinoma, Spindle Cell Variant 6 249877 -NCIT:C6984 Sarcomatoid Carcinoma of the Penis 6 249878 -NCIT:C95608 Esophageal Spindle Cell Carcinoma 6 249879 -NCIT:C27893 Sarcomatoid Renal Cell Carcinoma 5 249880 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 6 249881 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 7 249882 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 7 249883 -NCIT:C183251 Unresectable Sarcomatoid Renal Cell Carcinoma 6 249884 -NCIT:C38111 Skin Basal Cell Carcinoma with Sarcomatoid Differentiation 5 249885 -NCIT:C4094 Pleomorphic Carcinoma 5 249886 -NCIT:C45542 Lung Pleomorphic Carcinoma 6 249887 -NCIT:C4120 Sarcomatoid Transitional Cell Carcinoma 5 249888 -NCIT:C164252 Invasive Sarcomatoid Urothelial Carcinoma 6 249889 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 7 249890 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 249891 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 7 249892 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 249893 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 8 249894 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 8 249895 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 7 249896 -NCIT:C45540 Lung Sarcomatoid Carcinoma 5 249897 -NCIT:C3732 Pulmonary Blastoma 6 249898 -NCIT:C4452 Lung Giant Cell Carcinoma 6 249899 -NCIT:C45541 Lung Spindle Cell Carcinoma 6 249900 -NCIT:C45542 Lung Pleomorphic Carcinoma 6 249901 -NCIT:C45543 Lung Carcinosarcoma 6 249902 -NCIT:C5530 Prostate Acinar Adenocarcinoma, Sarcomatoid Variant 5 249903 -NCIT:C6463 Thymic Sarcomatoid Carcinoma 5 249904 -NCIT:C68644 Adrenal Cortical Sarcomatoid Carcinoma 5 249905 -NCIT:C96494 Colorectal Sarcomatoid Carcinoma 5 249906 -NCIT:C5556 Rectal Sarcomatoid Carcinoma 6 249907 -NCIT:C3058 Glioblastoma 4 249908 -NCIT:C111691 Glioblastoma by Gene Expression Profile 5 249909 -NCIT:C111692 Proneural Glioblastoma 6 249910 -NCIT:C111693 Neural Glioblastoma 6 249911 -NCIT:C111694 Classical Glioblastoma 6 249912 -NCIT:C111695 Mesenchymal Glioblastoma 6 249913 -NCIT:C126306 Recurrent Glioblastoma 5 249914 -NCIT:C115364 Recurrent Childhood Glioblastoma 6 249915 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 7 249916 -NCIT:C115365 Recurrent Childhood Gliosarcoma 7 249917 -NCIT:C182019 Recurrent Glioblastoma, IDH-Wildtype 6 249918 -NCIT:C131209 Recurrent Gliosarcoma 7 249919 -NCIT:C115365 Recurrent Childhood Gliosarcoma 8 249920 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 7 249921 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 8 249922 -NCIT:C163961 Recurrent Small Cell Glioblastoma 7 249923 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 7 249924 -NCIT:C191198 Recurrent Brain Glioblastoma 6 249925 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 7 249926 -NCIT:C129295 Glioblastoma, Not Otherwise Specified 5 249927 -NCIT:C146734 Refractory Glioblastoma 5 249928 -NCIT:C163960 Refractory Small Cell Glioblastoma 6 249929 -NCIT:C163962 Refractory Gliosarcoma 6 249930 -NCIT:C176998 Refractory Giant Cell Glioblastoma 6 249931 -NCIT:C166156 Resectable Glioblastoma 5 249932 -NCIT:C170979 Metastatic Glioblastoma 5 249933 -NCIT:C170978 Advanced Glioblastoma 6 249934 -NCIT:C170980 Locally Advanced Glioblastoma 6 249935 -NCIT:C176890 Unresectable Glioblastoma 5 249936 -NCIT:C39750 Glioblastoma, IDH-Wildtype 5 249937 -NCIT:C125890 Small Cell Glioblastoma 6 249938 -NCIT:C163960 Refractory Small Cell Glioblastoma 7 249939 -NCIT:C163961 Recurrent Small Cell Glioblastoma 7 249940 -NCIT:C129293 Epithelioid Glioblastoma 6 249941 -NCIT:C129296 Glioblastoma with Primitive Neuronal Component 6 249942 -NCIT:C132902 MGMT-Unmethylated Glioblastoma 6 249943 -NCIT:C154335 MGMT-Methylated Glioblastoma 6 249944 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 7 249945 -NCIT:C182019 Recurrent Glioblastoma, IDH-Wildtype 6 249946 -NCIT:C131209 Recurrent Gliosarcoma 7 249947 -NCIT:C115365 Recurrent Childhood Gliosarcoma 8 249948 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 7 249949 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 8 249950 -NCIT:C163961 Recurrent Small Cell Glioblastoma 7 249951 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 7 249952 -NCIT:C185178 Granular Cell Glioblastoma 6 249953 -NCIT:C185180 Lipidized Glioblastoma 6 249954 -NCIT:C3796 Gliosarcoma 6 249955 -NCIT:C114968 Childhood Gliosarcoma 7 249956 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 8 249957 -NCIT:C115365 Recurrent Childhood Gliosarcoma 8 249958 -NCIT:C131209 Recurrent Gliosarcoma 7 249959 -NCIT:C115365 Recurrent Childhood Gliosarcoma 8 249960 -NCIT:C163962 Refractory Gliosarcoma 7 249961 -NCIT:C171013 Supratentorial Gliosarcoma 7 249962 -NCIT:C68701 Adult Gliosarcoma 7 249963 -NCIT:C9370 Adult Brain Stem Gliosarcoma 8 249964 -NCIT:C4325 Giant Cell Glioblastoma 6 249965 -NCIT:C114966 Childhood Giant Cell Glioblastoma 7 249966 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 8 249967 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 7 249968 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 8 249969 -NCIT:C176998 Refractory Giant Cell Glioblastoma 7 249970 -NCIT:C68702 Adult Giant Cell Glioblastoma 7 249971 -NCIT:C39751 Secondary Glioblastoma 5 249972 -NCIT:C4642 Brain Glioblastoma 5 249973 -NCIT:C147901 Childhood Brain Glioblastoma 6 249974 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 7 249975 -NCIT:C191198 Recurrent Brain Glioblastoma 6 249976 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 7 249977 -NCIT:C5148 Infratentorial Glioblastoma 6 249978 -NCIT:C5097 Brain Stem Glioblastoma 7 249979 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 8 249980 -NCIT:C9370 Adult Brain Stem Gliosarcoma 8 249981 -NCIT:C5150 Cerebellar Glioblastoma 7 249982 -NCIT:C5149 Supratentorial Glioblastoma 6 249983 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 7 249984 -NCIT:C5129 Diencephalic Glioblastoma 7 249985 -NCIT:C5151 Cerebral Glioblastoma 7 249986 -NCIT:C171013 Supratentorial Gliosarcoma 8 249987 -NCIT:C9375 Adult Brain Glioblastoma 6 249988 -NCIT:C9370 Adult Brain Stem Gliosarcoma 7 249989 -NCIT:C5136 Childhood Glioblastoma 5 249990 -NCIT:C114966 Childhood Giant Cell Glioblastoma 6 249991 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 7 249992 -NCIT:C114968 Childhood Gliosarcoma 6 249993 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 7 249994 -NCIT:C115365 Recurrent Childhood Gliosarcoma 7 249995 -NCIT:C115364 Recurrent Childhood Glioblastoma 6 249996 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 7 249997 -NCIT:C115365 Recurrent Childhood Gliosarcoma 7 249998 -NCIT:C147901 Childhood Brain Glioblastoma 6 249999 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 7 250000 -NCIT:C9094 Adult Glioblastoma 5 250001 -NCIT:C27183 Adult Spinal Cord Glioblastoma 6 250002 -NCIT:C68701 Adult Gliosarcoma 6 250003 -NCIT:C9370 Adult Brain Stem Gliosarcoma 7 250004 -NCIT:C68702 Adult Giant Cell Glioblastoma 6 250005 -NCIT:C9375 Adult Brain Glioblastoma 6 250006 -NCIT:C9370 Adult Brain Stem Gliosarcoma 7 250007 -NCIT:C92549 Multifocal Glioblastomas 5 250008 -NCIT:C35870 Conventional Osteosarcoma 4 250009 -NCIT:C179410 Giant Cell-Rich Osteosarcoma 5 250010 -NCIT:C4020 Fibroblastic Osteosarcoma 5 250011 -NCIT:C4021 Chondroblastic Osteosarcoma 5 250012 -NCIT:C53953 Osteoblastic Osteosarcoma 5 250013 -NCIT:C6590 Childhood Conventional Osteosarcoma 5 250014 -NCIT:C3720 Anaplastic Large Cell Lymphoma 4 250015 -NCIT:C141284 Noncutaneous Anaplastic Large Cell Lymphoma by Ann Arbor Stage 5 250016 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 6 250017 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 7 250018 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 7 250019 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 7 250020 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 7 250021 -NCIT:C8659 Ann Arbor Stage I Noncutaneous Anaplastic Large Cell Lymphoma 6 250022 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 7 250023 -NCIT:C8660 Ann Arbor Stage II Noncutaneous Anaplastic Large Cell Lymphoma 6 250024 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 7 250025 -NCIT:C8661 Ann Arbor Stage III Noncutaneous Anaplastic Large Cell Lymphoma 6 250026 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 7 250027 -NCIT:C8662 Ann Arbor Stage IV Noncutaneous Anaplastic Large Cell Lymphoma 6 250028 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 7 250029 -NCIT:C166179 Localized Anaplastic Large Cell Lymphoma 5 250030 -NCIT:C166180 Advanced Anaplastic Large Cell Lymphoma 5 250031 -NCIT:C188082 Lung Anaplastic Large Cell Lymphoma 5 250032 -NCIT:C27367 Adult Anaplastic Large Cell Lymphoma 5 250033 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 6 250034 -NCIT:C27366 Adult Systemic Anaplastic Large Cell Lymphoma 6 250035 -NCIT:C37193 Anaplastic Large Cell Lymphoma, ALK-Positive 5 250036 -NCIT:C129598 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Positive 6 250037 -NCIT:C188460 Childhood Anaplastic Large Cell Lymphoma, ALK-Positive 6 250038 -NCIT:C37195 Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 6 250039 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 7 250040 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 7 250041 -NCIT:C37194 Anaplastic Large Cell Lymphoma, ALK-Negative 5 250042 -NCIT:C129599 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Negative 6 250043 -NCIT:C139012 Breast Implant-Associated Anaplastic Large Cell Lymphoma 6 250044 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 7 250045 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 7 250046 -NCIT:C37196 Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Negative 6 250047 -NCIT:C39674 Anaplastic Large Cell Lymphoma, Giant Cell Rich Subtype 5 250048 -NCIT:C39675 Anaplastic Large Cell Lymphoma, Sarcomatoid Subtype 5 250049 -NCIT:C39676 Anaplastic Large Cell Lymphoma, Signet Ring-Like Subtype 5 250050 -NCIT:C5322 Central Nervous System Anaplastic Large Cell Lymphoma 5 250051 -NCIT:C129598 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Positive 6 250052 -NCIT:C129599 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Negative 6 250053 -NCIT:C5636 Childhood Anaplastic Large Cell Lymphoma 5 250054 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 6 250055 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 6 250056 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 7 250057 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 7 250058 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 7 250059 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 7 250060 -NCIT:C188460 Childhood Anaplastic Large Cell Lymphoma, ALK-Positive 6 250061 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 6 250062 -NCIT:C9471 Childhood Systemic Anaplastic Large Cell Lymphoma 6 250063 -NCIT:C6860 Primary Cutaneous Anaplastic Large Cell Lymphoma 5 250064 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 6 250065 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 6 250066 -NCIT:C27365 Adult Primary Cutaneous Anaplastic Large Cell Lymphoma 6 250067 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 6 250068 -NCIT:C7206 Common Variant Anaplastic Large Cell Lymphoma 5 250069 -NCIT:C7207 Lymphohistiocytic Variant Anaplastic Large Cell Lymphoma 5 250070 -NCIT:C7208 Small Cell Variant Anaplastic Large Cell Lymphoma 5 250071 -NCIT:C8658 Refractory Anaplastic Large Cell Lymphoma 5 250072 -NCIT:C162689 Refractory Systemic Anaplastic Large Cell Lymphoma 6 250073 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 7 250074 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 6 250075 -NCIT:C181045 Refractory Primary Cutaneous Anaplastic Large Cell Lymphoma 6 250076 -NCIT:C9250 Recurrent Anaplastic Large Cell Lymphoma 5 250077 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 6 250078 -NCIT:C162688 Recurrent Systemic Anaplastic Large Cell Lymphoma 6 250079 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 7 250080 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 6 250081 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 6 250082 -NCIT:C9470 Systemic Anaplastic Large Cell Lymphoma 5 250083 -NCIT:C162688 Recurrent Systemic Anaplastic Large Cell Lymphoma 6 250084 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 7 250085 -NCIT:C162689 Refractory Systemic Anaplastic Large Cell Lymphoma 6 250086 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 7 250087 -NCIT:C27366 Adult Systemic Anaplastic Large Cell Lymphoma 6 250088 -NCIT:C37195 Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 6 250089 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 7 250090 -NCIT:C181048 Refractory Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 7 250091 -NCIT:C37196 Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Negative 6 250092 -NCIT:C9471 Childhood Systemic Anaplastic Large Cell Lymphoma 6 250093 -NCIT:C39920 Testicular Seminoma with High Mitotic Index 4 250094 -NCIT:C4049 Anaplastic Ependymoma 4 250095 -NCIT:C124293 Childhood Anaplastic Ependymoma 5 250096 -NCIT:C160912 Recurrent Anaplastic Ependymoma 5 250097 -NCIT:C160913 Refractory Anaplastic Ependymoma 5 250098 -NCIT:C8269 Adult Anaplastic Ependymoma 5 250099 -NCIT:C4051 Anaplastic (Malignant) Meningioma 4 250100 -NCIT:C179223 Recurrent Anaplastic (Malignant) Meningioma 5 250101 -NCIT:C27307 Anaplastic (Malignant) Intracranial Meningioma 5 250102 -NCIT:C8275 Adult Anaplastic (Malignant) Meningioma 5 250103 -NCIT:C8605 Anaplastic (Malignant) Intraspinal Meningioma 5 250104 -NCIT:C4326 Anaplastic Oligodendroglioma 4 250105 -NCIT:C129321 Anaplastic Oligodendroglioma, IDH-Mutant and 1p/19q-Codeleted 5 250106 -NCIT:C129322 Anaplastic Oligodendroglioma, Not Otherwise Specified 5 250107 -NCIT:C142862 Recurrent Anaplastic Oligodendroglioma 5 250108 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 6 250109 -NCIT:C156120 Frontal Lobe Anaplastic Oligodendroglioma 5 250110 -NCIT:C169074 Refractory Anaplastic Oligodendroglioma 5 250111 -NCIT:C5447 Childhood Anaplastic Oligodendroglioma 5 250112 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 6 250113 -NCIT:C8270 Adult Anaplastic Oligodendroglioma 5 250114 -NCIT:C4717 Anaplastic Ganglioglioma 4 250115 -NCIT:C160914 Recurrent Anaplastic Ganglioglioma 5 250116 -NCIT:C160915 Refractory Anaplastic Ganglioglioma 5 250117 -NCIT:C53958 High Grade Surface Osteosarcoma 4 250118 -NCIT:C6952 Anaplastic Kidney Wilms Tumor 4 250119 -NCIT:C6959 Anaplastic Oligoastrocytoma 4 250120 -NCIT:C114973 Childhood Anaplastic Oligoastrocytoma 5 250121 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 6 250122 -NCIT:C129324 Anaplastic Oligoastrocytoma, Not Otherwise Specified 5 250123 -NCIT:C142861 Recurrent Anaplastic Oligoastrocytoma 5 250124 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 6 250125 -NCIT:C7446 Anaplastic Brain Stem Glioma 4 250126 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 5 250127 -NCIT:C9477 Anaplastic Astrocytoma 4 250128 -NCIT:C129290 Astrocytoma, IDH-Mutant, Grade 3 5 250129 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 6 250130 -NCIT:C129291 Anaplastic Astrocytoma, IDH-Wildtype 5 250131 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 6 250132 -NCIT:C129292 Anaplastic Astrocytoma, Not Otherwise Specified 5 250133 -NCIT:C136517 Recurrent Anaplastic Astrocytoma 5 250134 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 6 250135 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 6 250136 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 6 250137 -NCIT:C169075 Refractory Anaplastic Astrocytoma 5 250138 -NCIT:C185879 High Grade Astrocytoma with Piloid Features 5 250139 -NCIT:C5123 Hemispheric Anaplastic Astrocytoma 5 250140 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 6 250141 -NCIT:C156035 Frontal Lobe Anaplastic Astrocytoma 6 250142 -NCIT:C156036 Temporal Lobe Anaplastic Astrocytoma 6 250143 -NCIT:C171036 Parietal Lobe Anaplastic Astrocytoma 6 250144 -NCIT:C5124 Anaplastic Diencephalic Astrocytoma 5 250145 -NCIT:C5416 Secondary Supratentorial Anaplastic Astrocytoma 5 250146 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 5 250147 -NCIT:C6215 Childhood Anaplastic Astrocytoma 5 250148 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 6 250149 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 6 250150 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 7 250151 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 7 250152 -NCIT:C8257 Adult Anaplastic Astrocytoma 5 250153 -NCIT:C36041 Malignant Neoplasm by Grade 3 250154 -NCIT:C36039 Grade 1 Malignant Neoplasm 4 250155 -NCIT:C36040 Grade 2 Malignant Neoplasm 4 250156 -NCIT:C36042 Grade 3 Malignant Neoplasm 4 250157 -NCIT:C36043 Grade 3a Malignant Neoplasm 5 250158 -NCIT:C36044 Grade 3b Malignant Neoplasm 5 250159 -NCIT:C36045 Grade 4 Malignant Neoplasm 4 250160 -NCIT:C36046 High Grade Malignant Neoplasm 4 250161 -NCIT:C36047 Intermediate Grade Malignant Neoplasm 4 250162 -NCIT:C36048 Low Grade Malignant Neoplasm 4 250163 -NCIT:C36049 Moderately Differentiated Malignant Neoplasm 3 250164 -NCIT:C36050 Poorly Differentiated Malignant Neoplasm 3 250165 -NCIT:C36051 Undifferentiated Malignant Neoplasm 3 250166 -NCIT:C36052 Well Differentiated Malignant Neoplasm 3 250167 -NCIT:C3729 Malignant Mixed Neoplasm 3 250168 -NCIT:C121787 Malignant Mixed Tumor, Not Otherwise Specified 4 250169 -NCIT:C123848 Childhood Mixed Germ Cell Tumor 4 250170 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 5 250171 -NCIT:C27403 Childhood Central Nervous System Mixed Germ Cell Tumor 5 250172 -NCIT:C6542 Childhood Testicular Mixed Germ Cell Tumor 5 250173 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 6 250174 -NCIT:C146861 Mediastinal Mixed Germ Cell Tumor 4 250175 -NCIT:C6444 Mediastinal Mixed Nongerminomatous Germ Cell Tumor 5 250176 -NCIT:C6442 Mediastinal Mixed Embryonal Carcinoma and Teratoma 6 250177 -NCIT:C165723 Mixed Carcinoma 4 250178 -NCIT:C165716 Invasive Bladder Mixed Carcinoma 5 250179 -NCIT:C181079 Hybrid Salivary Gland Carcinoma 5 250180 -NCIT:C3727 Adenosquamous Carcinoma 5 250181 -NCIT:C114656 Endometrial Adenosquamous Carcinoma 6 250182 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 7 250183 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 7 250184 -NCIT:C118630 Liver Adenosquamous Carcinoma 6 250185 -NCIT:C159248 Adenosquamous Carcinoma of the Penis 6 250186 -NCIT:C173807 Tongue Adenosquamous Carcinoma 6 250187 -NCIT:C174402 Conjunctival Adenosquamous Carcinoma 6 250188 -NCIT:C27418 Ampulla of Vater Adenosquamous Carcinoma 6 250189 -NCIT:C27421 Esophageal Adenosquamous Carcinoma 6 250190 -NCIT:C35737 Salivary Gland Adenosquamous Carcinoma 6 250191 -NCIT:C40260 Vaginal Adenosquamous Carcinoma 6 250192 -NCIT:C181028 Metastatic Vaginal Adenosquamous Carcinoma 7 250193 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 8 250194 -NCIT:C40296 Bartholin Gland Adenosquamous Carcinoma 6 250195 -NCIT:C40361 Breast Adenosquamous Carcinoma 6 250196 -NCIT:C40362 Low Grade Breast Adenosquamous Carcinoma 7 250197 -NCIT:C43535 Small Intestinal Adenosquamous Carcinoma 6 250198 -NCIT:C43589 Colorectal Adenosquamous Carcinoma 6 250199 -NCIT:C43594 Rectal Adenosquamous Carcinoma 7 250200 -NCIT:C5491 Colon Adenosquamous Carcinoma 7 250201 -NCIT:C4519 Cervical Adenosquamous Carcinoma 6 250202 -NCIT:C136650 Recurrent Cervical Adenosquamous Carcinoma 7 250203 -NCIT:C153390 Metastatic Cervical Adenosquamous Carcinoma 7 250204 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 8 250205 -NCIT:C174027 Unresectable Cervical Adenosquamous Carcinoma 7 250206 -NCIT:C40212 Cervical Poorly Differentiated Adenosquamous Carcinoma 7 250207 -NCIT:C54250 Skin Adenosquamous Carcinoma 6 250208 -NCIT:C54338 Laryngeal Adenosquamous Carcinoma 6 250209 -NCIT:C5474 Gastric Adenosquamous Carcinoma 6 250210 -NCIT:C5538 Prostate Adenosquamous Carcinoma 6 250211 -NCIT:C5721 Pancreatic Adenosquamous Carcinoma 6 250212 -NCIT:C174566 Resectable Pancreatic Adenosquamous Carcinoma 7 250213 -NCIT:C190770 Metastatic Pancreatic Adenosquamous Carcinoma 7 250214 -NCIT:C5778 Extrahepatic Bile Duct Adenosquamous Carcinoma 6 250215 -NCIT:C6458 Thymic Adenosquamous Carcinoma 6 250216 -NCIT:C7356 Gallbladder Adenosquamous Carcinoma 6 250217 -NCIT:C9133 Lung Adenosquamous Carcinoma 6 250218 -NCIT:C136492 Lung Adenosquamous Carcinoma by AJCC v7 Stage 7 250219 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 8 250220 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 8 250221 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 9 250222 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 9 250223 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 8 250224 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 9 250225 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 9 250226 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 8 250227 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 9 250228 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 9 250229 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 8 250230 -NCIT:C156093 Metastatic Lung Adenosquamous Carcinoma 7 250231 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 8 250232 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 8 250233 -NCIT:C6684 Occult Lung Adenosquamous Carcinoma 7 250234 -NCIT:C8747 Recurrent Lung Adenosquamous Carcinoma 7 250235 -NCIT:C97046 Human Papillomavirus-Related Adenosquamous Carcinoma 6 250236 -NCIT:C40090 Ovarian Seromucinous Carcinoma 5 250237 -NCIT:C178669 Recurrent Ovarian Seromucinous Carcinoma 6 250238 -NCIT:C178671 Refractory Ovarian Seromucinous Carcinoma 6 250239 -NCIT:C40347 Breast Mixed Carcinoma 5 250240 -NCIT:C40361 Breast Adenosquamous Carcinoma 6 250241 -NCIT:C40362 Low Grade Breast Adenosquamous Carcinoma 7 250242 -NCIT:C6393 Invasive Breast Ductal Carcinoma and Invasive Lobular Carcinoma 6 250243 -NCIT:C7591 Combined Lung Carcinoma 5 250244 -NCIT:C7267 Combined Lung Large Cell Neuroendocrine Carcinoma 6 250245 -NCIT:C9137 Combined Lung Small Cell Carcinoma 6 250246 -NCIT:C9379 Combined Lung Small Cell Carcinoma and Lung Adenocarcinoma 7 250247 -NCIT:C9423 Combined Lung Small Cell and Squamous Cell Carcinoma 7 250248 -NCIT:C95406 Digestive System Mixed Adenoneuroendocrine Carcinoma 5 250249 -NCIT:C163967 Metastatic Digestive System Mixed Adenoneuroendocrine Carcinoma 6 250250 -NCIT:C172718 Liver Mixed Adenoneuroendocrine Carcinoma 6 250251 -NCIT:C172808 Unresectable Digestive System Mixed Adenoneuroendocrine Carcinoma 6 250252 -NCIT:C43564 Appendix Mixed Adenoneuroendocrine Carcinoma 6 250253 -NCIT:C3689 Appendix Goblet Cell Adenocarcinoma 7 250254 -NCIT:C45843 Pancreatic Mixed Adenoneuroendocrine Carcinoma 6 250255 -NCIT:C6878 Pancreatic Mixed Acinar-Neuroendocrine Carcinoma 7 250256 -NCIT:C6879 Pancreatic Mixed Ductal-Neuroendocrine Carcinoma 7 250257 -NCIT:C95460 Pancreatic Mixed Acinar-Ductal Neuroendocrine Carcinoma 7 250258 -NCIT:C95621 Esophageal Mixed Adenoneuroendocrine Carcinoma 6 250259 -NCIT:C95886 Gastric Mixed Adenoneuroendocrine Carcinoma 6 250260 -NCIT:C95986 Ampulla of Vater Mixed Adenoneuroendocrine Carcinoma 6 250261 -NCIT:C96066 Small Intestinal Mixed Adenoneuroendocrine Carcinoma 6 250262 -NCIT:C96158 Colorectal Mixed Adenoneuroendocrine Carcinoma 6 250263 -NCIT:C96553 Anal Canal Mixed Adenoneuroendocrine Carcinoma 6 250264 -NCIT:C96927 Gallbladder Mixed Adenoneuroendocrine Carcinoma 6 250265 -NCIT:C96928 Gallbladder Goblet Cell Carcinoid 7 250266 -NCIT:C96959 Extrahepatic Bile Duct Mixed Adenoneuroendocrine Carcinoma 6 250267 -NCIT:C167346 Malignant Mixed Tumor of the Skin 4 250268 -NCIT:C173094 Sinonasal Teratocarcinosarcoma 4 250269 -NCIT:C3267 Wilms Tumor 4 250270 -NCIT:C161607 Prostate Wilms Tumor 5 250271 -NCIT:C162489 Paratesticular Wilms Tumor 5 250272 -NCIT:C188038 Refractory Wilms Tumor 5 250273 -NCIT:C40236 Cervical Wilms Tumor 5 250274 -NCIT:C40407 Kidney Wilms Tumor 5 250275 -NCIT:C27730 Childhood Kidney Wilms Tumor 6 250276 -NCIT:C6897 Cystic Partially Differentiated Kidney Nephroblastoma 7 250277 -NCIT:C38158 Metachronous Kidney Wilms Tumor 6 250278 -NCIT:C6180 Adult Kidney Wilms Tumor 6 250279 -NCIT:C6951 Nonanaplastic Kidney Wilms Tumor 6 250280 -NCIT:C6952 Anaplastic Kidney Wilms Tumor 6 250281 -NCIT:C7840 Stage I Kidney Wilms Tumor 6 250282 -NCIT:C7841 Stage II Kidney Wilms Tumor 6 250283 -NCIT:C7842 Stage III Kidney Wilms Tumor 6 250284 -NCIT:C7843 Stage IV Kidney Wilms Tumor 6 250285 -NCIT:C7844 Stage V Kidney Wilms Tumor 6 250286 -NCIT:C7845 Recurrent Kidney Wilms Tumor 6 250287 -NCIT:C8496 Hereditary Kidney Wilms Tumor 6 250288 -NCIT:C9146 Epithelial Predominant Kidney Wilms Tumor 6 250289 -NCIT:C9147 Blastema Predominant Kidney Wilms Tumor 6 250290 -NCIT:C9148 Stromal Predominant Kidney Wilms Tumor 6 250291 -NCIT:C9149 Mixed Cell Type Kidney Wilms Tumor 6 250292 -NCIT:C40443 Ovarian Wilms Tumor 5 250293 -NCIT:C34448 Carcinosarcoma 4 250294 -NCIT:C165468 Skin Squamous Cell Carcinoma with Sarcomatoid Differentiation 5 250295 -NCIT:C167382 Trichoblastic Carcinosarcoma 5 250296 -NCIT:C170924 Metastatic Carcinosarcoma 5 250297 -NCIT:C170928 Advanced Carcinosarcoma 6 250298 -NCIT:C170930 Advanced Malignant Mixed Mesodermal (Mullerian) Tumor 7 250299 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 8 250300 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 8 250301 -NCIT:C170929 Metastatic Malignant Mixed Mesodermal (Mullerian) Tumor 6 250302 -NCIT:C170930 Advanced Malignant Mixed Mesodermal (Mullerian) Tumor 7 250303 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 8 250304 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 8 250305 -NCIT:C170931 Metastatic Uterine Corpus Carcinosarcoma 7 250306 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 8 250307 -NCIT:C170933 Metastatic Ovarian Carcinosarcoma 7 250308 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 8 250309 -NCIT:C173735 Odontogenic Carcinosarcoma 5 250310 -NCIT:C175279 Lacrimal Gland Carcinosarcoma 5 250311 -NCIT:C35831 Salivary Gland Carcinosarcoma 5 250312 -NCIT:C35832 Parotid Gland Carcinosarcoma 6 250313 -NCIT:C45543 Lung Carcinosarcoma 5 250314 -NCIT:C8975 Malignant Mixed Mesodermal (Mullerian) Tumor 5 250315 -NCIT:C159507 Primary Peritoneal Carcinosarcoma 6 250316 -NCIT:C170929 Metastatic Malignant Mixed Mesodermal (Mullerian) Tumor 6 250317 -NCIT:C170930 Advanced Malignant Mixed Mesodermal (Mullerian) Tumor 7 250318 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 8 250319 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 8 250320 -NCIT:C170931 Metastatic Uterine Corpus Carcinosarcoma 7 250321 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 8 250322 -NCIT:C170933 Metastatic Ovarian Carcinosarcoma 7 250323 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 8 250324 -NCIT:C40124 Fallopian Tube Carcinosarcoma 6 250325 -NCIT:C40278 Vaginal Carcinosarcoma 6 250326 -NCIT:C42700 Uterine Carcinosarcoma 6 250327 -NCIT:C113238 Uterine Carcinosarcoma, Homologous Type 7 250328 -NCIT:C113239 Uterine Carcinosarcoma, Heterologous Type 7 250329 -NCIT:C36097 Cervical Carcinosarcoma 7 250330 -NCIT:C9180 Uterine Corpus Carcinosarcoma 7 250331 -NCIT:C155818 Recurrent Uterine Corpus Carcinosarcoma 8 250332 -NCIT:C158381 Refractory Uterine Corpus Carcinosarcoma 8 250333 -NCIT:C170931 Metastatic Uterine Corpus Carcinosarcoma 8 250334 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 9 250335 -NCIT:C9192 Ovarian Carcinosarcoma 6 250336 -NCIT:C153347 Recurrent Ovarian Carcinosarcoma 7 250337 -NCIT:C170933 Metastatic Ovarian Carcinosarcoma 7 250338 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 8 250339 -NCIT:C96848 Liver Carcinosarcoma 5 250340 -NCIT:C96888 Gallbladder Carcinosarcoma 5 250341 -NCIT:C96939 Extrahepatic Bile Duct Carcinosarcoma 5 250342 -NCIT:C37265 Malignant Mixed Epithelial and Stromal Tumor of the Kidney 4 250343 -NCIT:C3756 Mixed Embryonal Carcinoma and Teratoma 4 250344 -NCIT:C6351 Testicular Mixed Embryonal Carcinoma and Teratoma 5 250345 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 6 250346 -NCIT:C6442 Mediastinal Mixed Embryonal Carcinoma and Teratoma 5 250347 -NCIT:C40035 Adenocarcinofibroma 4 250348 -NCIT:C40034 Ovarian Mucinous Adenocarcinofibroma 5 250349 -NCIT:C40079 Ovarian Clear Cell Adenocarcinofibroma 5 250350 -NCIT:C67092 Ovarian Serous Adenocarcinofibroma 5 250351 -NCIT:C40228 Malignant Mixed Epithelial and Mesenchymal Neoplasm of the Cervix 4 250352 -NCIT:C36097 Cervical Carcinosarcoma 5 250353 -NCIT:C40229 Cervical Adenosarcoma 5 250354 -NCIT:C40276 Malignant Vaginal Mixed Epithelial and Mesenchymal Neoplasm 4 250355 -NCIT:C40277 Vaginal Adenosarcoma 5 250356 -NCIT:C40278 Vaginal Carcinosarcoma 5 250357 -NCIT:C40279 Malignant Vaginal Mixed Tumor Resembling Synovial Sarcoma 5 250358 -NCIT:C4275 Malignant Phyllodes Tumor 4 250359 -NCIT:C128165 Malignant Vulvar Phyllodes Tumor 5 250360 -NCIT:C4504 Malignant Breast Phyllodes Tumor 5 250361 -NCIT:C5531 Malignant Prostate Phyllodes Tumor 5 250362 -NCIT:C4397 Carcinoma ex Pleomorphic Adenoma 4 250363 -NCIT:C40410 Salivary Gland Carcinoma ex Pleomorphic Adenoma 5 250364 -NCIT:C5975 Major Salivary Gland Carcinoma ex Pleomorphic Adenoma 6 250365 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 7 250366 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 250367 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 7 250368 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 250369 -NCIT:C5976 Minor Salivary Gland Carcinoma ex Pleomorphic Adenoma 6 250370 -NCIT:C6804 Lacrimal Gland Carcinoma ex Pleomorphic Adenoma 5 250371 -NCIT:C6311 Malignant Uterine Corpus Mixed Epithelial and Mesenchymal Neoplasm 4 250372 -NCIT:C40182 Uterine Corpus Carcinofibroma 5 250373 -NCIT:C6336 Uterine Corpus Adenosarcoma 5 250374 -NCIT:C139894 Uterine Corpus Adenosarcoma by AJCC v8 Stage 6 250375 -NCIT:C139895 Stage I Uterine Corpus Adenosarcoma AJCC v8 7 250376 -NCIT:C139896 Stage IA Uterine Corpus Adenosarcoma AJCC v8 8 250377 -NCIT:C139897 Stage IB Uterine Corpus Adenosarcoma AJCC v8 8 250378 -NCIT:C139898 Stage IC Uterine Corpus Adenosarcoma AJCC v8 8 250379 -NCIT:C139899 Stage II Uterine Corpus Adenosarcoma AJCC v8 7 250380 -NCIT:C139900 Stage III Uterine Corpus Adenosarcoma AJCC v8 7 250381 -NCIT:C139901 Stage IIIA Uterine Corpus Adenosarcoma AJCC v8 8 250382 -NCIT:C139902 Stage IIIB Uterine Corpus Adenosarcoma AJCC v8 8 250383 -NCIT:C139903 Stage IIIC Uterine Corpus Adenosarcoma AJCC v8 8 250384 -NCIT:C139904 Stage IV Uterine Corpus Adenosarcoma AJCC v8 7 250385 -NCIT:C139905 Stage IVA Uterine Corpus Adenosarcoma AJCC v8 8 250386 -NCIT:C139906 Stage IVB Uterine Corpus Adenosarcoma AJCC v8 8 250387 -NCIT:C9180 Uterine Corpus Carcinosarcoma 5 250388 -NCIT:C155818 Recurrent Uterine Corpus Carcinosarcoma 6 250389 -NCIT:C158381 Refractory Uterine Corpus Carcinosarcoma 6 250390 -NCIT:C170931 Metastatic Uterine Corpus Carcinosarcoma 6 250391 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 7 250392 -NCIT:C6347 Testicular Mixed Germ Cell Tumor 4 250393 -NCIT:C6348 Testicular Mixed Choriocarcinoma and Embryonal Carcinoma 5 250394 -NCIT:C6349 Testicular Mixed Choriocarcinoma and Teratoma 5 250395 -NCIT:C6350 Testicular Mixed Embryonal Carcinoma and Seminoma 5 250396 -NCIT:C6351 Testicular Mixed Embryonal Carcinoma and Teratoma 5 250397 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 6 250398 -NCIT:C6352 Testicular Mixed Embryonal Carcinoma and Teratoma with Seminoma 5 250399 -NCIT:C6542 Childhood Testicular Mixed Germ Cell Tumor 5 250400 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 6 250401 -NCIT:C67548 Testicular Mixed Choriocarcinoma and Yolk Sac Tumor 5 250402 -NCIT:C8001 Testicular Mixed Embryonal Carcinoma and Yolk Sac Tumor 5 250403 -NCIT:C8002 Testicular Mixed Yolk Sac Tumor and Teratoma 5 250404 -NCIT:C8003 Testicular Mixed Yolk Sac Tumor and Teratoma with Seminoma 5 250405 -NCIT:C8911 Stage II Testicular Mixed Germ Cell Tumor AJCC v6 and v7 5 250406 -NCIT:C8912 Stage I Testicular Mixed Germ Cell Tumor AJCC v6 and v7 5 250407 -NCIT:C8913 Stage III Testicular Mixed Germ Cell Tumor AJCC v6 and v7 5 250408 -NCIT:C9172 Testicular Mixed Embryonal Carcinoma and Yolk Sac Tumor with Seminoma 5 250409 -NCIT:C9173 Testicular Mixed Choriocarcinoma and Seminoma 5 250410 -NCIT:C66777 Choriocarcinoma Combined with Other Germ Cell Elements 4 250411 -NCIT:C6348 Testicular Mixed Choriocarcinoma and Embryonal Carcinoma 5 250412 -NCIT:C6349 Testicular Mixed Choriocarcinoma and Teratoma 5 250413 -NCIT:C67548 Testicular Mixed Choriocarcinoma and Yolk Sac Tumor 5 250414 -NCIT:C9173 Testicular Mixed Choriocarcinoma and Seminoma 5 250415 -NCIT:C6959 Anaplastic Oligoastrocytoma 4 250416 -NCIT:C114973 Childhood Anaplastic Oligoastrocytoma 5 250417 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 6 250418 -NCIT:C129324 Anaplastic Oligoastrocytoma, Not Otherwise Specified 5 250419 -NCIT:C142861 Recurrent Anaplastic Oligoastrocytoma 5 250420 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 6 250421 -NCIT:C7016 Central Nervous System Mixed Germ Cell Tumor 4 250422 -NCIT:C155811 Sellar Mixed Germ Cell Tumor 5 250423 -NCIT:C27402 Adult Central Nervous System Mixed Germ Cell Tumor 5 250424 -NCIT:C27403 Childhood Central Nervous System Mixed Germ Cell Tumor 5 250425 -NCIT:C7683 Adenocarcinoma with Cartilaginous and Osseous Metaplasia 4 250426 -NCIT:C7684 Adenocarcinoma with Osseous Metaplasia 5 250427 -NCIT:C7685 Adenocarcinoma with Cartilaginous Metaplasia 5 250428 -NCIT:C8025 Malignant Mixed Tumor of the Salivary Gland 4 250429 -NCIT:C35831 Salivary Gland Carcinosarcoma 5 250430 -NCIT:C35832 Parotid Gland Carcinosarcoma 6 250431 -NCIT:C40410 Salivary Gland Carcinoma ex Pleomorphic Adenoma 5 250432 -NCIT:C5975 Major Salivary Gland Carcinoma ex Pleomorphic Adenoma 6 250433 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 7 250434 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 250435 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 7 250436 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 250437 -NCIT:C5976 Minor Salivary Gland Carcinoma ex Pleomorphic Adenoma 6 250438 -NCIT:C5902 Malignant Mixed Tumor of the Major Salivary Gland 5 250439 -NCIT:C5944 Malignant Submandibular Gland Mixed Tumor 6 250440 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 7 250441 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 250442 -NCIT:C5945 Malignant Parotid Gland Mixed Tumor 6 250443 -NCIT:C35832 Parotid Gland Carcinosarcoma 7 250444 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 7 250445 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 250446 -NCIT:C5975 Major Salivary Gland Carcinoma ex Pleomorphic Adenoma 6 250447 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 7 250448 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 250449 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 7 250450 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 250451 -NCIT:C5955 Malignant Mixed Tumor of the Minor Salivary Gland 5 250452 -NCIT:C5976 Minor Salivary Gland Carcinoma ex Pleomorphic Adenoma 6 250453 -NCIT:C8114 Ovarian Mixed Germ Cell Tumor 4 250454 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 5 250455 -NCIT:C9010 Mixed Teratoma and Seminoma 4 250456 -NCIT:C9474 Adenosarcoma 4 250457 -NCIT:C102570 Broad Ligament Adenosarcoma 5 250458 -NCIT:C40125 Fallopian Tube Adenosarcoma 5 250459 -NCIT:C40229 Cervical Adenosarcoma 5 250460 -NCIT:C40277 Vaginal Adenosarcoma 5 250461 -NCIT:C6336 Uterine Corpus Adenosarcoma 5 250462 -NCIT:C139894 Uterine Corpus Adenosarcoma by AJCC v8 Stage 6 250463 -NCIT:C139895 Stage I Uterine Corpus Adenosarcoma AJCC v8 7 250464 -NCIT:C139896 Stage IA Uterine Corpus Adenosarcoma AJCC v8 8 250465 -NCIT:C139897 Stage IB Uterine Corpus Adenosarcoma AJCC v8 8 250466 -NCIT:C139898 Stage IC Uterine Corpus Adenosarcoma AJCC v8 8 250467 -NCIT:C139899 Stage II Uterine Corpus Adenosarcoma AJCC v8 7 250468 -NCIT:C139900 Stage III Uterine Corpus Adenosarcoma AJCC v8 7 250469 -NCIT:C139901 Stage IIIA Uterine Corpus Adenosarcoma AJCC v8 8 250470 -NCIT:C139902 Stage IIIB Uterine Corpus Adenosarcoma AJCC v8 8 250471 -NCIT:C139903 Stage IIIC Uterine Corpus Adenosarcoma AJCC v8 8 250472 -NCIT:C139904 Stage IV Uterine Corpus Adenosarcoma AJCC v8 7 250473 -NCIT:C139905 Stage IVA Uterine Corpus Adenosarcoma AJCC v8 8 250474 -NCIT:C139906 Stage IVB Uterine Corpus Adenosarcoma AJCC v8 8 250475 -NCIT:C7317 Ovarian Adenosarcoma 5 250476 -NCIT:C97058 Mixed Congenital Mesoblastic Nephroma 4 250477 -NCIT:C38156 Metachronous Malignant Neoplasm 3 250478 -NCIT:C38157 Metachronous Osteosarcoma 4 250479 -NCIT:C38158 Metachronous Kidney Wilms Tumor 4 250480 -NCIT:C3851 Aggravated Malignant Neoplasm 3 250481 -NCIT:C4005 Childhood Malignant Neoplasm 3 250482 -NCIT:C114451 Rare Childhood Malignant Neoplasm 4 250483 -NCIT:C118821 Childhood Malignant Penile Neoplasm 5 250484 -NCIT:C118826 Childhood Malignant Small Intestinal Neoplasm 5 250485 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 6 250486 -NCIT:C123933 Childhood Small Intestinal Carcinoma 6 250487 -NCIT:C131506 Childhood Melanoma 5 250488 -NCIT:C189261 Childhood Kidney Ewing Sarcoma 5 250489 -NCIT:C190275 Childhood Carcinoma 5 250490 -NCIT:C118808 Childhood Colorectal Carcinoma 6 250491 -NCIT:C118823 Childhood Rectal Carcinoma 7 250492 -NCIT:C118809 Childhood Breast Carcinoma 6 250493 -NCIT:C118811 Childhood Laryngeal Carcinoma 6 250494 -NCIT:C118812 Childhood Esophageal Carcinoma 6 250495 -NCIT:C118813 Childhood Gastric Carcinoma 6 250496 -NCIT:C118814 Childhood Lung Non-Small Cell Carcinoma 6 250497 -NCIT:C118815 Childhood Lung Small Cell Carcinoma 6 250498 -NCIT:C118816 Childhood Bladder Carcinoma 6 250499 -NCIT:C118817 Childhood Nasal Cavity Carcinoma 6 250500 -NCIT:C118818 Childhood Paranasal Sinus Carcinoma 6 250501 -NCIT:C118819 Childhood Parathyroid Gland Carcinoma 6 250502 -NCIT:C118824 Childhood Salivary Gland Carcinoma 6 250503 -NCIT:C190273 Childhood Salivary Gland Mucoepidermoid Carcinoma 7 250504 -NCIT:C190274 Childhood Salivary Gland Acinic Cell Carcinoma 7 250505 -NCIT:C118827 Childhood Thyroid Gland Carcinoma 6 250506 -NCIT:C123903 Childhood Thyroid Gland Papillary Carcinoma 7 250507 -NCIT:C123904 Childhood Thyroid Gland Follicular Carcinoma 7 250508 -NCIT:C123905 Childhood Thyroid Gland Medullary Carcinoma 7 250509 -NCIT:C190064 Childhood Thyroid Gland Spindle Epithelial Tumor with Thymus-Like Elements 7 250510 -NCIT:C123933 Childhood Small Intestinal Carcinoma 6 250511 -NCIT:C124292 Childhood Choroid Plexus Carcinoma 6 250512 -NCIT:C189244 Childhood Kidney Carcinoma 6 250513 -NCIT:C189248 Childhood SMARCB1-Deficient Kidney Medullary Carcinoma 7 250514 -NCIT:C6568 Childhood Renal Cell Carcinoma 7 250515 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 8 250516 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 8 250517 -NCIT:C189255 Childhood Eosinophilic Solid and Cystic Renal Cell Carcinoma 8 250518 -NCIT:C189334 Childhood Ovarian Small Cell Carcinoma, Hypercalcemic Type 6 250519 -NCIT:C190024 Childhood Pancreatic Acinar Cell Carcinoma 6 250520 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 7 250521 -NCIT:C190069 Childhood Adrenal Cortical Carcinoma 6 250522 -NCIT:C190272 Childhood Mucoepidermoid Carcinoma 6 250523 -NCIT:C190273 Childhood Salivary Gland Mucoepidermoid Carcinoma 7 250524 -NCIT:C190276 Childhood Nasopharyngeal Carcinoma 6 250525 -NCIT:C190277 Childhood NUT Carcinoma 6 250526 -NCIT:C190278 Childhood Head and Neck NUT Carcinoma 7 250527 -NCIT:C7955 Childhood Hepatocellular Carcinoma 6 250528 -NCIT:C189932 Childhood Fibrolamellar Carcinoma 7 250529 -NCIT:C5708 Stage III Childhood Hepatocellular Carcinoma AJCC v7 7 250530 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 7 250531 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 7 250532 -NCIT:C7838 Stage IV Childhood Hepatocellular Carcinoma AJCC v7 7 250533 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 7 250534 -NCIT:C114926 Childhood Epithelioid Hemangioendothelioma 4 250535 -NCIT:C148029 Childhood Malignant Solid Neoplasm 4 250536 -NCIT:C148026 Recurrent Childhood Malignant Solid Neoplasm 5 250537 -NCIT:C148027 Refractory Childhood Malignant Solid Neoplasm 5 250538 -NCIT:C187210 Advanced Childhood Malignant Solid Neoplasm 5 250539 -NCIT:C162702 Recurrent Childhood Malignant Neoplasm 4 250540 -NCIT:C114836 Recurrent Childhood Central Nervous System Embryonal Neoplasm 5 250541 -NCIT:C115374 Recurrent Childhood Pineoblastoma 6 250542 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 6 250543 -NCIT:C6774 Recurrent Childhood Medulloblastoma 6 250544 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 5 250545 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 5 250546 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 5 250547 -NCIT:C115364 Recurrent Childhood Glioblastoma 5 250548 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 6 250549 -NCIT:C115365 Recurrent Childhood Gliosarcoma 6 250550 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 5 250551 -NCIT:C115368 Recurrent Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 5 250552 -NCIT:C148026 Recurrent Childhood Malignant Solid Neoplasm 5 250553 -NCIT:C162730 Recurrent Rhabdoid Tumor of the Kidney 5 250554 -NCIT:C187189 Recurrent Childhood Osteosarcoma 5 250555 -NCIT:C187196 Recurrent Childhood Lymphoma 5 250556 -NCIT:C115369 Recurrent Childhood Non-Hodgkin Lymphoma 6 250557 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 7 250558 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 7 250559 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 7 250560 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 7 250561 -NCIT:C8059 Recurrent Childhood Hodgkin Lymphoma 6 250562 -NCIT:C188881 Recurrent Extrarenal Rhabdoid Tumor 5 250563 -NCIT:C171170 Recurrent Extrarenal Rhabdoid Tumor of the Ovary 6 250564 -NCIT:C7784 Recurrent Childhood Acute Lymphoblastic Leukemia 5 250565 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 6 250566 -NCIT:C7839 Recurrent Childhood Malignant Liver Neoplasm 5 250567 -NCIT:C8643 Recurrent Hepatoblastoma 6 250568 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 6 250569 -NCIT:C8067 Recurrent Childhood Soft Tissue Sarcoma 5 250570 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 6 250571 -NCIT:C9068 Recurrent Childhood Acute Myeloid Leukemia 5 250572 -NCIT:C9221 Recurrent Childhood Malignant Germ Cell Tumor 5 250573 -NCIT:C162703 Refractory Childhood Malignant Neoplasm 4 250574 -NCIT:C122624 Refractory Childhood Acute Lymphoblastic Leukemia 5 250575 -NCIT:C123737 Refractory Childhood Malignant Germ Cell Tumor 5 250576 -NCIT:C142854 Refractory Hepatoblastoma 5 250577 -NCIT:C148027 Refractory Childhood Malignant Solid Neoplasm 5 250578 -NCIT:C162731 Refractory Rhabdoid Tumor of the Kidney 5 250579 -NCIT:C187192 Refractory Childhood Osteosarcoma 5 250580 -NCIT:C187194 Refractory Childhood Soft Tissue Sarcoma 5 250581 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 6 250582 -NCIT:C187197 Refractory Childhood Lymphoma 5 250583 -NCIT:C115458 Refractory Childhood Hodgkin Lymphoma 6 250584 -NCIT:C187449 Refractory Childhood Acute Myeloid Leukemia 5 250585 -NCIT:C188884 Refractory Extrarenal Rhabdoid Tumor 5 250586 -NCIT:C171171 Refractory Extrarenal Rhabdoid Tumor of the Ovary 6 250587 -NCIT:C188453 Childhood B Lymphoblastic Leukemia/Lymphoma 4 250588 -NCIT:C7209 Childhood B Lymphoblastic Lymphoma 5 250589 -NCIT:C9140 Childhood B Acute Lymphoblastic Leukemia 5 250590 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 6 250591 -NCIT:C188981 Childhood Sarcoma 4 250592 -NCIT:C188984 Childhood Ectomesenchymoma 5 250593 -NCIT:C189002 Childhood Ewing Sarcoma 5 250594 -NCIT:C189261 Childhood Kidney Ewing Sarcoma 6 250595 -NCIT:C189003 Childhood Round Cell Sarcoma with EWSR1-non-ETS Fusion 5 250596 -NCIT:C189006 Childhood CIC-Rearranged Sarcoma 5 250597 -NCIT:C189007 Childhood Sarcoma with BCOR Genetic Alterations 5 250598 -NCIT:C189017 Childhood Bone Sarcoma 5 250599 -NCIT:C114750 Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 6 250600 -NCIT:C115368 Recurrent Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 7 250601 -NCIT:C115998 Localized Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 7 250602 -NCIT:C189022 Childhood Bone Osteosarcoma 6 250603 -NCIT:C123398 Childhood Periosteal Osteosarcoma 7 250604 -NCIT:C6589 Childhood Parosteal Osteosarcoma 7 250605 -NCIT:C6590 Childhood Conventional Osteosarcoma 7 250606 -NCIT:C189026 Childhood Primary Central Chondrosarcoma 6 250607 -NCIT:C189027 Childhood Chondrosarcoma 5 250608 -NCIT:C189026 Childhood Primary Central Chondrosarcoma 6 250609 -NCIT:C27374 Childhood Mesenchymal Chondrosarcoma 6 250610 -NCIT:C6585 Childhood Osteosarcoma 5 250611 -NCIT:C187189 Recurrent Childhood Osteosarcoma 6 250612 -NCIT:C187192 Refractory Childhood Osteosarcoma 6 250613 -NCIT:C189022 Childhood Bone Osteosarcoma 6 250614 -NCIT:C123398 Childhood Periosteal Osteosarcoma 7 250615 -NCIT:C6589 Childhood Parosteal Osteosarcoma 7 250616 -NCIT:C6590 Childhood Conventional Osteosarcoma 7 250617 -NCIT:C27376 Childhood Extraskeletal Osteosarcoma 6 250618 -NCIT:C7715 Childhood Soft Tissue Sarcoma 5 250619 -NCIT:C114749 Childhood Undifferentiated Pleomorphic Sarcoma 6 250620 -NCIT:C115292 Localized Childhood Soft Tissue Sarcoma 6 250621 -NCIT:C8065 Localized Childhood Rhabdomyosarcoma 7 250622 -NCIT:C187194 Refractory Childhood Soft Tissue Sarcoma 6 250623 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 7 250624 -NCIT:C188980 Childhood Kaposi Sarcoma 6 250625 -NCIT:C189260 Childhood Anaplastic Sarcoma of the Kidney 6 250626 -NCIT:C189261 Childhood Kidney Ewing Sarcoma 6 250627 -NCIT:C189934 Childhood Liver Embryonal Sarcoma 6 250628 -NCIT:C190020 Childhood Liver Angiosarcoma 6 250629 -NCIT:C27371 Childhood Clear Cell Sarcoma of Soft Tissue 6 250630 -NCIT:C27372 Childhood Desmoplastic Small Round Cell Tumor 6 250631 -NCIT:C27376 Childhood Extraskeletal Osteosarcoma 6 250632 -NCIT:C27377 Childhood Extraskeletal Myxoid Chondrosarcoma 6 250633 -NCIT:C4264 Clear Cell Sarcoma of the Kidney 6 250634 -NCIT:C7705 Childhood Rhabdomyosarcoma 6 250635 -NCIT:C123397 Childhood Spindle Cell Rhabdomyosarcoma 7 250636 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 7 250637 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 7 250638 -NCIT:C7957 Childhood Embryonal Rhabdomyosarcoma 7 250639 -NCIT:C35574 Childhood Botryoid-Type Embryonal Rhabdomyosarcoma 8 250640 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 9 250641 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 9 250642 -NCIT:C7958 Childhood Alveolar Rhabdomyosarcoma 7 250643 -NCIT:C7959 Childhood Pleomorphic Rhabdomyosarcoma 7 250644 -NCIT:C7960 Childhood Rhabdomyosarcoma with Mixed Embryonal and Alveolar Features 7 250645 -NCIT:C8065 Localized Childhood Rhabdomyosarcoma 7 250646 -NCIT:C8066 Metastatic Childhood Soft Tissue Sarcoma 6 250647 -NCIT:C8067 Recurrent Childhood Soft Tissue Sarcoma 6 250648 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 7 250649 -NCIT:C8089 Childhood Synovial Sarcoma 6 250650 -NCIT:C8092 Childhood Alveolar Soft Part Sarcoma 6 250651 -NCIT:C8093 Childhood Leiomyosarcoma 6 250652 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 7 250653 -NCIT:C8095 Childhood Epithelioid Sarcoma 6 250654 -NCIT:C8088 Childhood Fibrosarcoma 5 250655 -NCIT:C188970 Childhood Low Grade Fibromyxoid Sarcoma 6 250656 -NCIT:C188971 Childhood Sclerosing Epithelioid Fibrosarcoma 6 250657 -NCIT:C188973 Childhood Low Grade Myofibroblastic Sarcoma 6 250658 -NCIT:C4244 Infantile Fibrosarcoma 6 250659 -NCIT:C8091 Childhood Liposarcoma 5 250660 -NCIT:C8094 Childhood Malignant Peripheral Nerve Sheath Tumor 5 250661 -NCIT:C9174 Childhood Angiosarcoma 5 250662 -NCIT:C190020 Childhood Liver Angiosarcoma 6 250663 -NCIT:C189269 Childhood Malignant Genitourinary System Neoplasm 4 250664 -NCIT:C118816 Childhood Bladder Carcinoma 5 250665 -NCIT:C118821 Childhood Malignant Penile Neoplasm 5 250666 -NCIT:C123907 Childhood Malignant Kidney Neoplasm 5 250667 -NCIT:C189244 Childhood Kidney Carcinoma 6 250668 -NCIT:C189248 Childhood SMARCB1-Deficient Kidney Medullary Carcinoma 7 250669 -NCIT:C6568 Childhood Renal Cell Carcinoma 7 250670 -NCIT:C189242 Childhood Renal Cell Carcinoma with MiT Translocations 8 250671 -NCIT:C189250 Childhood ALK-Rearranged Renal Cell Carcinoma 8 250672 -NCIT:C189255 Childhood Eosinophilic Solid and Cystic Renal Cell Carcinoma 8 250673 -NCIT:C189260 Childhood Anaplastic Sarcoma of the Kidney 6 250674 -NCIT:C189261 Childhood Kidney Ewing Sarcoma 6 250675 -NCIT:C27730 Childhood Kidney Wilms Tumor 6 250676 -NCIT:C6897 Cystic Partially Differentiated Kidney Nephroblastoma 7 250677 -NCIT:C4264 Clear Cell Sarcoma of the Kidney 6 250678 -NCIT:C6569 Congenital Mesoblastic Nephroma 6 250679 -NCIT:C39814 Classic Congenital Mesoblastic Nephroma 7 250680 -NCIT:C39815 Cellular Congenital Mesoblastic Nephroma 7 250681 -NCIT:C97058 Mixed Congenital Mesoblastic Nephroma 7 250682 -NCIT:C8715 Rhabdoid Tumor of the Kidney 6 250683 -NCIT:C162730 Recurrent Rhabdoid Tumor of the Kidney 7 250684 -NCIT:C162731 Refractory Rhabdoid Tumor of the Kidney 7 250685 -NCIT:C188888 Unresectable Rhabdoid Tumor of the Kidney 7 250686 -NCIT:C161608 Extrarenal Rhabdoid Tumor of the Prostate 5 250687 -NCIT:C190659 Childhood Malignant Ovarian Neoplasm 5 250688 -NCIT:C171169 Extrarenal Rhabdoid Tumor of the Ovary 6 250689 -NCIT:C171170 Recurrent Extrarenal Rhabdoid Tumor of the Ovary 7 250690 -NCIT:C171171 Refractory Extrarenal Rhabdoid Tumor of the Ovary 7 250691 -NCIT:C189334 Childhood Ovarian Small Cell Carcinoma, Hypercalcemic Type 6 250692 -NCIT:C68629 Childhood Malignant Ovarian Germ Cell Tumor 6 250693 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 7 250694 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 7 250695 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 7 250696 -NCIT:C6550 Childhood Ovarian Dysgerminoma 7 250697 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 7 250698 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 5 250699 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 5 250700 -NCIT:C68628 Childhood Malignant Testicular Germ Cell Tumor 5 250701 -NCIT:C6542 Childhood Testicular Mixed Germ Cell Tumor 6 250702 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 7 250703 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 6 250704 -NCIT:C6544 Childhood Testicular Choriocarcinoma 6 250705 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 6 250706 -NCIT:C189870 Childhood Malignant Digestive System Neoplasm 4 250707 -NCIT:C118808 Childhood Colorectal Carcinoma 5 250708 -NCIT:C118823 Childhood Rectal Carcinoma 6 250709 -NCIT:C118812 Childhood Esophageal Carcinoma 5 250710 -NCIT:C118813 Childhood Gastric Carcinoma 5 250711 -NCIT:C118826 Childhood Malignant Small Intestinal Neoplasm 5 250712 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 6 250713 -NCIT:C123933 Childhood Small Intestinal Carcinoma 6 250714 -NCIT:C190023 Childhood Pancreatoblastoma 5 250715 -NCIT:C190024 Childhood Pancreatic Acinar Cell Carcinoma 5 250716 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 6 250717 -NCIT:C190027 Childhood Solid Pseudopapillary Neoplasm of the Pancreas 5 250718 -NCIT:C190028 Childhood Gastroblastoma 5 250719 -NCIT:C7708 Childhood Malignant Liver Neoplasm 5 250720 -NCIT:C189934 Childhood Liver Embryonal Sarcoma 6 250721 -NCIT:C190020 Childhood Liver Angiosarcoma 6 250722 -NCIT:C3728 Hepatoblastoma 6 250723 -NCIT:C142854 Refractory Hepatoblastoma 7 250724 -NCIT:C161838 Hepatocellular Malignant Neoplasm, Not Otherwise Specified 7 250725 -NCIT:C189923 Epithelial Hepatoblastoma 7 250726 -NCIT:C189924 Epithelial Hepatoblastoma with Pleomorphic Pattern 8 250727 -NCIT:C7093 Hepatoblastoma with Pure Fetal Epithelial Differentiation 8 250728 -NCIT:C7094 Hepatoblastoma with Combined Fetal and Embryonal Epithelial Differentiation 8 250729 -NCIT:C7095 Macrotrabecular Hepatoblastoma 8 250730 -NCIT:C7096 Small Cell Undifferentiated Hepatoblastoma 8 250731 -NCIT:C189927 Hepatoblastoma by PRETEXT Stage 7 250732 -NCIT:C7139 PRETEXT Stage 1 Hepatoblastoma 8 250733 -NCIT:C7140 PRETEXT Stage 2 Hepatoblastoma 8 250734 -NCIT:C7141 PRETEXT Stage 3 Hepatoblastoma 8 250735 -NCIT:C7142 PRETEXT Stage 4 Hepatoblastoma 8 250736 -NCIT:C189929 Hepatoblastoma by Postsurgical Stage 7 250737 -NCIT:C7143 Postsurgical Stage IV Hepatoblastoma 8 250738 -NCIT:C7144 Postsurgical Stage III Hepatoblastoma 8 250739 -NCIT:C7145 Postsurgical Stage II Hepatoblastoma 8 250740 -NCIT:C7146 Postsurgical Stage I Hepatoblastoma 8 250741 -NCIT:C7097 Mixed Epithelial and Mesenchymal Hepatoblastoma 7 250742 -NCIT:C189926 Non-Teratoid Hepatoblastoma 8 250743 -NCIT:C7098 Teratoid Hepatoblastoma 8 250744 -NCIT:C8641 Unresectable Hepatoblastoma 7 250745 -NCIT:C8642 Resectable Hepatoblastoma 7 250746 -NCIT:C8643 Recurrent Hepatoblastoma 7 250747 -NCIT:C7839 Recurrent Childhood Malignant Liver Neoplasm 6 250748 -NCIT:C8643 Recurrent Hepatoblastoma 7 250749 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 7 250750 -NCIT:C7955 Childhood Hepatocellular Carcinoma 6 250751 -NCIT:C189932 Childhood Fibrolamellar Carcinoma 7 250752 -NCIT:C5708 Stage III Childhood Hepatocellular Carcinoma AJCC v7 7 250753 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 7 250754 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 7 250755 -NCIT:C7838 Stage IV Childhood Hepatocellular Carcinoma AJCC v7 7 250756 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 7 250757 -NCIT:C96830 Calcifying Nested Stromal-Epithelial Tumor 6 250758 -NCIT:C96847 Extrarenal Rhabdoid Tumor of the Liver 6 250759 -NCIT:C190070 Childhood Malignant Endocrine Neoplasm 4 250760 -NCIT:C118815 Childhood Lung Small Cell Carcinoma 5 250761 -NCIT:C118819 Childhood Parathyroid Gland Carcinoma 5 250762 -NCIT:C123903 Childhood Thyroid Gland Papillary Carcinoma 5 250763 -NCIT:C123904 Childhood Thyroid Gland Follicular Carcinoma 5 250764 -NCIT:C123905 Childhood Thyroid Gland Medullary Carcinoma 5 250765 -NCIT:C190069 Childhood Adrenal Cortical Carcinoma 5 250766 -NCIT:C190098 Childhood Malignant Thoracic Neoplasm 4 250767 -NCIT:C188455 Childhood Primary Mediastinal (Thymic) Large B-Cell Lymphoma 5 250768 -NCIT:C190100 Childhood Malignant Lung Neoplasm 5 250769 -NCIT:C118814 Childhood Lung Non-Small Cell Carcinoma 6 250770 -NCIT:C118815 Childhood Lung Small Cell Carcinoma 6 250771 -NCIT:C5669 Pleuropulmonary Blastoma 5 250772 -NCIT:C45626 Type I Pleuropulmonary Blastoma 6 250773 -NCIT:C45627 Type II Pleuropulmonary Blastoma 6 250774 -NCIT:C45628 Type III Pleuropulmonary Blastoma 6 250775 -NCIT:C190121 Childhood Malignant Head and Neck Neoplasm 4 250776 -NCIT:C118811 Childhood Laryngeal Carcinoma 5 250777 -NCIT:C118817 Childhood Nasal Cavity Carcinoma 5 250778 -NCIT:C118818 Childhood Paranasal Sinus Carcinoma 5 250779 -NCIT:C118819 Childhood Parathyroid Gland Carcinoma 5 250780 -NCIT:C118824 Childhood Salivary Gland Carcinoma 5 250781 -NCIT:C190273 Childhood Salivary Gland Mucoepidermoid Carcinoma 6 250782 -NCIT:C190274 Childhood Salivary Gland Acinic Cell Carcinoma 6 250783 -NCIT:C118827 Childhood Thyroid Gland Carcinoma 5 250784 -NCIT:C123903 Childhood Thyroid Gland Papillary Carcinoma 6 250785 -NCIT:C123904 Childhood Thyroid Gland Follicular Carcinoma 6 250786 -NCIT:C123905 Childhood Thyroid Gland Medullary Carcinoma 6 250787 -NCIT:C190064 Childhood Thyroid Gland Spindle Epithelial Tumor with Thymus-Like Elements 6 250788 -NCIT:C190272 Childhood Mucoepidermoid Carcinoma 5 250789 -NCIT:C190273 Childhood Salivary Gland Mucoepidermoid Carcinoma 6 250790 -NCIT:C190276 Childhood Nasopharyngeal Carcinoma 5 250791 -NCIT:C190278 Childhood Head and Neck NUT Carcinoma 5 250792 -NCIT:C190125 Childhood Malignant Skin Neoplasm 4 250793 -NCIT:C190280 Childhood Cutaneous Melanoma 5 250794 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 5 250795 -NCIT:C190575 Childhood Malignant Breast Neoplasm 4 250796 -NCIT:C118809 Childhood Breast Carcinoma 5 250797 -NCIT:C190578 Childhood Malignant Bone Neoplasm 4 250798 -NCIT:C189017 Childhood Bone Sarcoma 5 250799 -NCIT:C114750 Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 6 250800 -NCIT:C115368 Recurrent Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 7 250801 -NCIT:C115998 Localized Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 7 250802 -NCIT:C189022 Childhood Bone Osteosarcoma 6 250803 -NCIT:C123398 Childhood Periosteal Osteosarcoma 7 250804 -NCIT:C6589 Childhood Parosteal Osteosarcoma 7 250805 -NCIT:C6590 Childhood Conventional Osteosarcoma 7 250806 -NCIT:C189026 Childhood Primary Central Chondrosarcoma 6 250807 -NCIT:C189032 Childhood Chordoma 5 250808 -NCIT:C190623 Childhood Malignant Nervous System Neoplasm 4 250809 -NCIT:C124270 Childhood Neuroblastoma 5 250810 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 6 250811 -NCIT:C124271 Childhood Ganglioneuroblastoma 5 250812 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 6 250813 -NCIT:C124273 Childhood Ganglioneuroblastoma, Intermixed 6 250814 -NCIT:C124274 Childhood Ganglioneuroblastoma, Nodular 6 250815 -NCIT:C5448 Childhood Malignant Central Nervous System Neoplasm 5 250816 -NCIT:C114833 Childhood Central Nervous System Embryonal Tumor 6 250817 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 7 250818 -NCIT:C114812 Childhood Pineoblastoma 7 250819 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 250820 -NCIT:C114836 Recurrent Childhood Central Nervous System Embryonal Neoplasm 7 250821 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 250822 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 250823 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 250824 -NCIT:C115203 Childhood Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 7 250825 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 250826 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 9 250827 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 250828 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 7 250829 -NCIT:C3997 Childhood Medulloblastoma 7 250830 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 250831 -NCIT:C5961 Childhood Central Nervous System Embryonal Tumor, Not Otherwise Specified 7 250832 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 250833 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 9 250834 -NCIT:C68634 Childhood Atypical Teratoid/Rhabdoid Tumor 7 250835 -NCIT:C114973 Childhood Anaplastic Oligoastrocytoma 6 250836 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 7 250837 -NCIT:C124293 Childhood Anaplastic Ependymoma 6 250838 -NCIT:C187207 Childhood Malignant Brain Neoplasm 6 250839 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 7 250840 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 250841 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 7 250842 -NCIT:C114812 Childhood Pineoblastoma 7 250843 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 250844 -NCIT:C114969 Childhood Gliomatosis Cerebri 7 250845 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 8 250846 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 7 250847 -NCIT:C124292 Childhood Choroid Plexus Carcinoma 7 250848 -NCIT:C147901 Childhood Brain Glioblastoma 7 250849 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 8 250850 -NCIT:C185471 Infant-Type Hemispheric Glioma 7 250851 -NCIT:C185472 Infant-Type Hemispheric Glioma, NTRK-Altered 8 250852 -NCIT:C185473 Infant-Type Hemispheric Glioma, ROS1-Altered 8 250853 -NCIT:C185474 Infant-Type Hemispheric Glioma, ALK-Altered 8 250854 -NCIT:C185475 Infant-Type Hemispheric Glioma, MET-Altered 8 250855 -NCIT:C187211 Metastatic Childhood Malignant Neoplasm in the Brain 7 250856 -NCIT:C187212 Metastatic Childhood Malignant Brain Neoplasm 7 250857 -NCIT:C187213 Advanced Childhood Malignant Brain Neoplasm 8 250858 -NCIT:C188922 Childhood Diffuse Midline Glioma, H3 K27-Altered 7 250859 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 7 250860 -NCIT:C188926 Childhood Diffuse Hemispheric Glioma, H3 G34-Mutant 7 250861 -NCIT:C188935 Childhood Supratentorial Ependymoma ZFTA Fusion-Positive 7 250862 -NCIT:C3997 Childhood Medulloblastoma 7 250863 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 250864 -NCIT:C6207 Childhood Brain Germinoma 7 250865 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 7 250866 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 8 250867 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 8 250868 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 7 250869 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 250870 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 7 250871 -NCIT:C27403 Childhood Central Nervous System Mixed Germ Cell Tumor 6 250872 -NCIT:C27406 Childhood Central Nervous System Germinoma 6 250873 -NCIT:C6207 Childhood Brain Germinoma 7 250874 -NCIT:C5136 Childhood Glioblastoma 6 250875 -NCIT:C114966 Childhood Giant Cell Glioblastoma 7 250876 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 8 250877 -NCIT:C114968 Childhood Gliosarcoma 7 250878 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 8 250879 -NCIT:C115365 Recurrent Childhood Gliosarcoma 8 250880 -NCIT:C115364 Recurrent Childhood Glioblastoma 7 250881 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 8 250882 -NCIT:C115365 Recurrent Childhood Gliosarcoma 8 250883 -NCIT:C147901 Childhood Brain Glioblastoma 7 250884 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 8 250885 -NCIT:C5318 Childhood Meningeal Melanoma 6 250886 -NCIT:C5447 Childhood Anaplastic Oligodendroglioma 6 250887 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 7 250888 -NCIT:C6206 Childhood Central Nervous System Choriocarcinoma 6 250889 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 6 250890 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 6 250891 -NCIT:C6215 Childhood Anaplastic Astrocytoma 6 250892 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 7 250893 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 7 250894 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 8 250895 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 8 250896 -NCIT:C71303 Childhood Grade 3 Meningioma 6 250897 -NCIT:C9047 Childhood Intraocular Retinoblastoma 6 250898 -NCIT:C9048 Childhood Extraocular Retinoblastoma 6 250899 -NCIT:C8094 Childhood Malignant Peripheral Nerve Sheath Tumor 5 250900 -NCIT:C43223 Myeloid Leukemia Associated with Down Syndrome 4 250901 -NCIT:C4989 Childhood Leukemia 4 250902 -NCIT:C122603 Infant Leukemia 5 250903 -NCIT:C122614 Infant Acute Lymphoblastic Leukemia 6 250904 -NCIT:C122617 Infant Acute Lymphoblastic Leukemia with MLL Rearrangement 7 250905 -NCIT:C122621 Infant Acute Lymphoblastic Leukemia without MLL Gene Rearrangement 7 250906 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 7 250907 -NCIT:C122690 Acute Myeloid Leukemia with t(7;12)(q36;p13); HLXB9-ETV6 6 250908 -NCIT:C126110 Infant Acute Undifferentiated Leukemia 6 250909 -NCIT:C126111 Infant Acute Biphenotypic Leukemia 6 250910 -NCIT:C3845 Neonatal Leukemia 6 250911 -NCIT:C187056 Childhood Acute Leukemia 5 250912 -NCIT:C126110 Infant Acute Undifferentiated Leukemia 6 250913 -NCIT:C126111 Infant Acute Biphenotypic Leukemia 6 250914 -NCIT:C3168 Childhood Acute Lymphoblastic Leukemia 6 250915 -NCIT:C122614 Infant Acute Lymphoblastic Leukemia 7 250916 -NCIT:C122617 Infant Acute Lymphoblastic Leukemia with MLL Rearrangement 8 250917 -NCIT:C122621 Infant Acute Lymphoblastic Leukemia without MLL Gene Rearrangement 8 250918 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 8 250919 -NCIT:C122624 Refractory Childhood Acute Lymphoblastic Leukemia 7 250920 -NCIT:C7784 Recurrent Childhood Acute Lymphoblastic Leukemia 7 250921 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 250922 -NCIT:C7953 Childhood T Acute Lymphoblastic Leukemia 7 250923 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 8 250924 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 250925 -NCIT:C9140 Childhood B Acute Lymphoblastic Leukemia 7 250926 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 250927 -NCIT:C7952 Childhood Burkitt Leukemia 6 250928 -NCIT:C9160 Childhood Acute Myeloid Leukemia 6 250929 -NCIT:C122625 Childhood Acute Myeloid Leukemia Not Otherwise Specified 7 250930 -NCIT:C7940 Childhood Acute Monoblastic and Monocytic Leukemia 8 250931 -NCIT:C9162 Childhood Acute Monoblastic Leukemia 9 250932 -NCIT:C9163 Childhood Acute Monocytic Leukemia 9 250933 -NCIT:C7970 Childhood Acute Myelomonocytic Leukemia 8 250934 -NCIT:C7971 Childhood Acute Basophilic Leukemia 8 250935 -NCIT:C7972 Childhood Acute Megakaryoblastic Leukemia 8 250936 -NCIT:C8304 Childhood Acute Myeloid Leukemia with Minimal Differentiation 8 250937 -NCIT:C9158 Childhood Acute Myeloid Leukemia without Maturation 8 250938 -NCIT:C9164 Childhood Acute Erythroid Leukemia 8 250939 -NCIT:C9381 Childhood Acute Myeloid Leukemia with Maturation 8 250940 -NCIT:C122690 Acute Myeloid Leukemia with t(7;12)(q36;p13); HLXB9-ETV6 7 250941 -NCIT:C122691 Childhood Acute Myeloid Leukemia with NUP98 Rearrangement 7 250942 -NCIT:C131502 Acute Myeloid Leukemia with t(5;11)(q35;p15); NUP98-NSD1 8 250943 -NCIT:C131504 Acute Myeloid Leukemia with t(11;15)(p15;q35); NUP98-JARID1A 8 250944 -NCIT:C132111 Acute Megakaryoblastic Leukemia with NUP98-KDM5A 8 250945 -NCIT:C122725 Childhood Acute Myeloid Leukemia with Abnormalities of Chromosome 5q 7 250946 -NCIT:C122726 Childhood Acute Myeloid Leukemia with Abnormalities of Chromosome 7 7 250947 -NCIT:C132101 Acute Myeloid Leukemia with t(10;11)(p12;q23); MLLT10-MLL 7 250948 -NCIT:C132105 Acute Myeloid Leukemia with t(6;11)(q27;q23); MLLT4-MLL 7 250949 -NCIT:C132109 Acute Megakaryoblastic Leukemia with CBFA2T3-GLIS2 7 250950 -NCIT:C167089 Acute Myeloid Leukemia with RAM Immunophenotype 7 250951 -NCIT:C187449 Refractory Childhood Acute Myeloid Leukemia 7 250952 -NCIT:C188450 Childhood Acute Myeloid Leukemia with t(8;21); (q22; q22.1); RUNX1-RUNX1T1 7 250953 -NCIT:C188451 Childhood Acute Myeloid Leukemia with t(9;11)(p21.3;q23.3); MLLT3-MLL 7 250954 -NCIT:C7968 Childhood Acute Promyelocytic Leukemia with PML-RARA 7 250955 -NCIT:C82431 Acute Myeloid Leukemia with NPM1 Mutation 7 250956 -NCIT:C82433 Acute Myeloid Leukemia with CEBPA Mutation 7 250957 -NCIT:C129782 Acute Myeloid Leukemia with Biallelic Mutations of CEBPA 8 250958 -NCIT:C129783 Acute Myeloid Leukemia with Monoallelic Mutations of CEBPA 8 250959 -NCIT:C9068 Recurrent Childhood Acute Myeloid Leukemia 7 250960 -NCIT:C7320 Childhood Chronic Myelogenous Leukemia, BCR-ABL1 Positive 5 250961 -NCIT:C5165 Childhood Lymphoma 4 250962 -NCIT:C141202 Childhood Lymphoma by AJCC v8 Stage 5 250963 -NCIT:C141178 Lugano Classification Childhood Hodgkin Lymphoma by AJCC v8 Stage 6 250964 -NCIT:C141179 Lugano Classification Limited Stage Childhood Hodgkin Lymphoma AJCC v8 7 250965 -NCIT:C141180 Lugano Classification Stage I Childhood Hodgkin Lymphoma AJCC v8 8 250966 -NCIT:C141181 Lugano Classification Stage IE Childhood Hodgkin Lymphoma AJCC v8 8 250967 -NCIT:C141182 Lugano Classification Stage II Childhood Hodgkin Lymphoma AJCC v8 8 250968 -NCIT:C141184 Lugano Classification Stage II Bulky Childhood Hodgkin Lymphoma AJCC v8 9 250969 -NCIT:C141183 Lugano Classification Stage IIE Childhood Hodgkin Lymphoma AJCC v8 8 250970 -NCIT:C141185 Lugano Classification Advanced Stage Childhood Hodgkin Lymphoma AJCC v8 7 250971 -NCIT:C141186 Lugano Classification Stage III Childhood Hodgkin Lymphoma AJCC v8 8 250972 -NCIT:C141187 Lugano Classification Stage IV Childhood Hodgkin Lymphoma AJCC v8 8 250973 -NCIT:C141217 St. Jude Childhood Non-Hodgkin Lymphoma by AJCC v8 Stage 6 250974 -NCIT:C141218 St. Jude Stage I Childhood Non-Hodgkin Lymphoma AJCC v8 7 250975 -NCIT:C141219 St. Jude Stage II Childhood Non-Hodgkin Lymphoma AJCC v8 7 250976 -NCIT:C141220 St. Jude Stage III Childhood Non-Hodgkin Lymphoma AJCC v8 7 250977 -NCIT:C141221 St. Jude Stage IV Childhood Non-Hodgkin Lymphoma AJCC v8 7 250978 -NCIT:C187196 Recurrent Childhood Lymphoma 5 250979 -NCIT:C115369 Recurrent Childhood Non-Hodgkin Lymphoma 6 250980 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 7 250981 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 7 250982 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 7 250983 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 7 250984 -NCIT:C8059 Recurrent Childhood Hodgkin Lymphoma 6 250985 -NCIT:C187197 Refractory Childhood Lymphoma 5 250986 -NCIT:C115458 Refractory Childhood Hodgkin Lymphoma 6 250987 -NCIT:C7706 Childhood Non-Hodgkin Lymphoma 5 250988 -NCIT:C115369 Recurrent Childhood Non-Hodgkin Lymphoma 6 250989 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 7 250990 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 7 250991 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 7 250992 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 7 250993 -NCIT:C123394 Childhood Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 6 250994 -NCIT:C141217 St. Jude Childhood Non-Hodgkin Lymphoma by AJCC v8 Stage 6 250995 -NCIT:C141218 St. Jude Stage I Childhood Non-Hodgkin Lymphoma AJCC v8 7 250996 -NCIT:C141219 St. Jude Stage II Childhood Non-Hodgkin Lymphoma AJCC v8 7 250997 -NCIT:C141220 St. Jude Stage III Childhood Non-Hodgkin Lymphoma AJCC v8 7 250998 -NCIT:C141221 St. Jude Stage IV Childhood Non-Hodgkin Lymphoma AJCC v8 7 250999 -NCIT:C141236 Childhood Non-Hodgkin Lymphoma by Ann Arbor Stage 6 251000 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 7 251001 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 251002 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 251003 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 251004 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 251005 -NCIT:C94791 Ann Arbor Stage I Childhood Non-Hodgkin Lymphoma 7 251006 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 251007 -NCIT:C9056 Ann Arbor Stage I Childhood Lymphoblastic Lymphoma 8 251008 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 8 251009 -NCIT:C94792 Ann Arbor Stage II Childhood Non-Hodgkin Lymphoma 7 251010 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 251011 -NCIT:C9057 Ann Arbor Stage II Childhood Lymphoblastic Lymphoma 8 251012 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 8 251013 -NCIT:C94793 Ann Arbor Stage III Childhood Non-Hodgkin Lymphoma 7 251014 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 251015 -NCIT:C9058 Ann Arbor Stage III Childhood Lymphoblastic Lymphoma 8 251016 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 8 251017 -NCIT:C94794 Ann Arbor Stage IV Childhood Non-Hodgkin Lymphoma 7 251018 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 8 251019 -NCIT:C9059 Ann Arbor Stage IV Childhood Lymphoblastic Lymphoma 8 251020 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 8 251021 -NCIT:C188458 Childhood Large B-Cell Lymphoma with IRF4 Rearrangement 6 251022 -NCIT:C5637 Childhood Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 6 251023 -NCIT:C188459 Childhood Peripheral T-Cell Lymphoma, Not Otherwise Specified 7 251024 -NCIT:C5636 Childhood Anaplastic Large Cell Lymphoma 7 251025 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 8 251026 -NCIT:C141292 Noncutaneous Childhood Anaplastic Large Cell Lymphoma by Ann Arbor Stage 8 251027 -NCIT:C115029 Ann Arbor Stage I Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 251028 -NCIT:C115030 Ann Arbor Stage II Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 251029 -NCIT:C115031 Ann Arbor Stage III Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 251030 -NCIT:C115032 Ann Arbor Stage IV Noncutaneous Childhood Anaplastic Large Cell Lymphoma 9 251031 -NCIT:C188460 Childhood Anaplastic Large Cell Lymphoma, ALK-Positive 8 251032 -NCIT:C7211 Childhood Primary Cutaneous Anaplastic Large Cell Lymphoma 8 251033 -NCIT:C9471 Childhood Systemic Anaplastic Large Cell Lymphoma 8 251034 -NCIT:C68692 Childhood Nasal Type Extranodal NK/T-Cell Lymphoma 7 251035 -NCIT:C80374 Systemic EBV-Positive T-Cell Lymphoma of Childhood 7 251036 -NCIT:C7616 Childhood Diffuse Large B-Cell Lymphoma 6 251037 -NCIT:C115204 Childhood Grade III Lymphomatoid Granulomatosis 7 251038 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 8 251039 -NCIT:C188455 Childhood Primary Mediastinal (Thymic) Large B-Cell Lymphoma 7 251040 -NCIT:C188456 Childhood EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 7 251041 -NCIT:C9079 Childhood Immunoblastic Lymphoma 7 251042 -NCIT:C80299 Pediatric Nodal Marginal Zone Lymphoma 6 251043 -NCIT:C9095 Childhood Burkitt Lymphoma 6 251044 -NCIT:C9185 Ann Arbor Stage I Childhood Burkitt Lymphoma 7 251045 -NCIT:C9186 Ann Arbor Stage II Childhood Burkitt Lymphoma 7 251046 -NCIT:C9187 Ann Arbor Stage III Childhood Burkitt Lymphoma 7 251047 -NCIT:C9188 Ann Arbor Stage IV Childhood Burkitt Lymphoma 7 251048 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 7 251049 -NCIT:C9124 Childhood Lymphoblastic Lymphoma 6 251050 -NCIT:C7209 Childhood B Lymphoblastic Lymphoma 7 251051 -NCIT:C7210 Childhood T Lymphoblastic Lymphoma 7 251052 -NCIT:C9056 Ann Arbor Stage I Childhood Lymphoblastic Lymphoma 7 251053 -NCIT:C9057 Ann Arbor Stage II Childhood Lymphoblastic Lymphoma 7 251054 -NCIT:C9058 Ann Arbor Stage III Childhood Lymphoblastic Lymphoma 7 251055 -NCIT:C9059 Ann Arbor Stage IV Childhood Lymphoblastic Lymphoma 7 251056 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 7 251057 -NCIT:C7714 Childhood Hodgkin Lymphoma 5 251058 -NCIT:C114806 Childhood Favorable Prognosis Hodgkin Lymphoma 6 251059 -NCIT:C114808 Childhood Unfavorable Prognosis Hodgkin Lymphoma 6 251060 -NCIT:C115458 Refractory Childhood Hodgkin Lymphoma 6 251061 -NCIT:C141178 Lugano Classification Childhood Hodgkin Lymphoma by AJCC v8 Stage 6 251062 -NCIT:C141179 Lugano Classification Limited Stage Childhood Hodgkin Lymphoma AJCC v8 7 251063 -NCIT:C141180 Lugano Classification Stage I Childhood Hodgkin Lymphoma AJCC v8 8 251064 -NCIT:C141181 Lugano Classification Stage IE Childhood Hodgkin Lymphoma AJCC v8 8 251065 -NCIT:C141182 Lugano Classification Stage II Childhood Hodgkin Lymphoma AJCC v8 8 251066 -NCIT:C141184 Lugano Classification Stage II Bulky Childhood Hodgkin Lymphoma AJCC v8 9 251067 -NCIT:C141183 Lugano Classification Stage IIE Childhood Hodgkin Lymphoma AJCC v8 8 251068 -NCIT:C141185 Lugano Classification Advanced Stage Childhood Hodgkin Lymphoma AJCC v8 7 251069 -NCIT:C141186 Lugano Classification Stage III Childhood Hodgkin Lymphoma AJCC v8 8 251070 -NCIT:C141187 Lugano Classification Stage IV Childhood Hodgkin Lymphoma AJCC v8 8 251071 -NCIT:C141227 Childhood Hodgkin Lymphoma by Ann Arbor Stage 6 251072 -NCIT:C8055 Ann Arbor Stage II Childhood Hodgkin Lymphoma 7 251073 -NCIT:C8056 Ann Arbor Stage I Childhood Hodgkin Lymphoma 7 251074 -NCIT:C8057 Ann Arbor Stage III Childhood Hodgkin Lymphoma 7 251075 -NCIT:C8058 Ann Arbor Stage IV Childhood Hodgkin Lymphoma 7 251076 -NCIT:C69142 Childhood Classic Hodgkin Lymphoma 6 251077 -NCIT:C7054 Childhood Lymphocyte-Rich Classic Hodgkin Lymphoma 7 251078 -NCIT:C8061 Childhood Lymphocyte-Depleted Classic Hodgkin Lymphoma 7 251079 -NCIT:C8062 Childhood Nodular Sclerosis Classic Hodgkin Lymphoma 7 251080 -NCIT:C8063 Childhood Mixed Cellularity Classic Hodgkin Lymphoma 7 251081 -NCIT:C8059 Recurrent Childhood Hodgkin Lymphoma 6 251082 -NCIT:C8060 Childhood Nodular Lymphocyte Predominant Hodgkin Lymphoma 6 251083 -NCIT:C5640 Childhood T Lymphoblastic Leukemia/Lymphoma 4 251084 -NCIT:C7210 Childhood T Lymphoblastic Lymphoma 5 251085 -NCIT:C7953 Childhood T Acute Lymphoblastic Leukemia 5 251086 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 6 251087 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 6 251088 -NCIT:C6541 Childhood Malignant Germ Cell Tumor 4 251089 -NCIT:C123737 Refractory Childhood Malignant Germ Cell Tumor 5 251090 -NCIT:C123840 Childhood Seminoma 5 251091 -NCIT:C123844 Childhood Choriocarcinoma 5 251092 -NCIT:C6206 Childhood Central Nervous System Choriocarcinoma 6 251093 -NCIT:C6544 Childhood Testicular Choriocarcinoma 6 251094 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 6 251095 -NCIT:C123847 Childhood Embryonal Carcinoma 5 251096 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 6 251097 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 6 251098 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 6 251099 -NCIT:C123848 Childhood Mixed Germ Cell Tumor 5 251100 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 6 251101 -NCIT:C27403 Childhood Central Nervous System Mixed Germ Cell Tumor 6 251102 -NCIT:C6542 Childhood Testicular Mixed Germ Cell Tumor 6 251103 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 7 251104 -NCIT:C27364 Childhood Yolk Sac Tumor 5 251105 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 6 251106 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 6 251107 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 6 251108 -NCIT:C68628 Childhood Malignant Testicular Germ Cell Tumor 5 251109 -NCIT:C6542 Childhood Testicular Mixed Germ Cell Tumor 6 251110 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 7 251111 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 6 251112 -NCIT:C6544 Childhood Testicular Choriocarcinoma 6 251113 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 6 251114 -NCIT:C68629 Childhood Malignant Ovarian Germ Cell Tumor 5 251115 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 6 251116 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 6 251117 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 6 251118 -NCIT:C6550 Childhood Ovarian Dysgerminoma 6 251119 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 6 251120 -NCIT:C68632 Childhood Extragonadal Malignant Germ Cell Tumor 5 251121 -NCIT:C27403 Childhood Central Nervous System Mixed Germ Cell Tumor 6 251122 -NCIT:C27406 Childhood Central Nervous System Germinoma 6 251123 -NCIT:C6207 Childhood Brain Germinoma 7 251124 -NCIT:C6206 Childhood Central Nervous System Choriocarcinoma 6 251125 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 6 251126 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 6 251127 -NCIT:C9221 Recurrent Childhood Malignant Germ Cell Tumor 5 251128 -NCIT:C6586 Extrarenal Rhabdoid Tumor 4 251129 -NCIT:C161608 Extrarenal Rhabdoid Tumor of the Prostate 5 251130 -NCIT:C171169 Extrarenal Rhabdoid Tumor of the Ovary 5 251131 -NCIT:C171170 Recurrent Extrarenal Rhabdoid Tumor of the Ovary 6 251132 -NCIT:C171171 Refractory Extrarenal Rhabdoid Tumor of the Ovary 6 251133 -NCIT:C188881 Recurrent Extrarenal Rhabdoid Tumor 5 251134 -NCIT:C171170 Recurrent Extrarenal Rhabdoid Tumor of the Ovary 6 251135 -NCIT:C188884 Refractory Extrarenal Rhabdoid Tumor 5 251136 -NCIT:C171171 Refractory Extrarenal Rhabdoid Tumor of the Ovary 6 251137 -NCIT:C188886 Unresectable Extrarenal Rhabdoid Tumor 5 251138 -NCIT:C96847 Extrarenal Rhabdoid Tumor of the Liver 5 251139 -NCIT:C68744 Childhood Myelodysplastic Syndrome 4 251140 -NCIT:C188449 Childhood Myelodysplastic Syndrome with Excess Blasts 5 251141 -NCIT:C82596 Refractory Cytopenia of Childhood 5 251142 -NCIT:C80373 EBV-Positive T-Cell Lymphoproliferative Disorder of Childhood 4 251143 -NCIT:C45327 Hydroa Vacciniforme-Like Lymphoproliferative Disorder 5 251144 -NCIT:C80374 Systemic EBV-Positive T-Cell Lymphoma of Childhood 5 251145 -NCIT:C82339 Transient Abnormal Myelopoiesis Associated with Down Syndrome 4 251146 -NCIT:C4013 Malignant Head and Neck Neoplasm 3 251147 -NCIT:C133187 Mucosal Melanoma of the Head and Neck 4 251148 -NCIT:C133186 Mucosal Melanoma of the Head and Neck by AJCC v7 Stage 5 251149 -NCIT:C87532 Stage III Mucosal Melanoma of the Head and Neck AJCC v7 6 251150 -NCIT:C87533 Stage IVA Mucosal Melanoma of the Head and Neck AJCC v7 6 251151 -NCIT:C87534 Stage IVB Mucosal Melanoma of the Head and Neck AJCC v7 6 251152 -NCIT:C87535 Stage IVC Mucosal Melanoma of the Head and Neck AJCC v7 6 251153 -NCIT:C166399 Sinonasal Mucosal Melanoma 5 251154 -NCIT:C178521 Pharyngeal Melanoma 5 251155 -NCIT:C178522 Nasopharyngeal Melanoma 6 251156 -NCIT:C5915 Oral Cavity Mucosal Melanoma 5 251157 -NCIT:C152077 Recurrent Malignant Head and Neck Neoplasm 4 251158 -NCIT:C150531 Recurrent Malignant Pharyngeal Neoplasm 5 251159 -NCIT:C5103 Recurrent Pharyngeal Carcinoma 6 251160 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 7 251161 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 251162 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 251163 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 251164 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 251165 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 251166 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 251167 -NCIT:C8051 Recurrent Oropharyngeal Carcinoma 7 251168 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 251169 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 251170 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 7 251171 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 251172 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 251173 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 251174 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 7 251175 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 251176 -NCIT:C9268 Recurrent Malignant Nasopharyngeal Neoplasm 6 251177 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 7 251178 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 251179 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 251180 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 251181 -NCIT:C9353 Recurrent Malignant Hypopharyngeal Neoplasm 6 251182 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 7 251183 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 251184 -NCIT:C150538 Recurrent Malignant Thyroid Gland Neoplasm 5 251185 -NCIT:C7908 Recurrent Thyroid Gland Carcinoma 6 251186 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 7 251187 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 8 251188 -NCIT:C153624 Recurrent Thyroid Gland Anaplastic Carcinoma 7 251189 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 7 251190 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 8 251191 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 8 251192 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 9 251193 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 7 251194 -NCIT:C35675 Recurrent Malignant Salivary Gland Neoplasm 5 251195 -NCIT:C7926 Recurrent Salivary Gland Carcinoma 6 251196 -NCIT:C153611 Recurrent Salivary Duct Carcinoma 7 251197 -NCIT:C153612 Recurrent Minor Salivary Gland Adenocarcinoma 7 251198 -NCIT:C153800 Recurrent Parotid Gland Carcinoma 7 251199 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 8 251200 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 8 251201 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 251202 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 8 251203 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 251204 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 8 251205 -NCIT:C153801 Recurrent Submandibular Gland Carcinoma 7 251206 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 8 251207 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 8 251208 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 251209 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 8 251210 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 251211 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 8 251212 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 251213 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 251214 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 251215 -NCIT:C7624 Recurrent Head and Neck Carcinoma 5 251216 -NCIT:C133709 Recurrent Head and Neck Squamous Cell Carcinoma 6 251217 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 251218 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 251219 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 251220 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 251221 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 251222 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 251223 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 251224 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 251225 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 251226 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 7 251227 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 251228 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 251229 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 251230 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 251231 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 251232 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 251233 -NCIT:C176682 Locally Recurrent Head and Neck Squamous Cell Carcinoma 7 251234 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 7 251235 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 251236 -NCIT:C4034 Recurrent Laryngeal Carcinoma 6 251237 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 7 251238 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 251239 -NCIT:C5103 Recurrent Pharyngeal Carcinoma 6 251240 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 7 251241 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 251242 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 251243 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 251244 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 251245 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 251246 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 251247 -NCIT:C8051 Recurrent Oropharyngeal Carcinoma 7 251248 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 251249 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 251250 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 7 251251 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 251252 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 251253 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 251254 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 7 251255 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 251256 -NCIT:C67558 Recurrent Sinonasal Carcinoma 6 251257 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 251258 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 251259 -NCIT:C7828 Recurrent Parathyroid Gland Carcinoma 6 251260 -NCIT:C7908 Recurrent Thyroid Gland Carcinoma 6 251261 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 7 251262 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 8 251263 -NCIT:C153624 Recurrent Thyroid Gland Anaplastic Carcinoma 7 251264 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 7 251265 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 8 251266 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 8 251267 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 9 251268 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 7 251269 -NCIT:C7926 Recurrent Salivary Gland Carcinoma 6 251270 -NCIT:C153611 Recurrent Salivary Duct Carcinoma 7 251271 -NCIT:C153612 Recurrent Minor Salivary Gland Adenocarcinoma 7 251272 -NCIT:C153800 Recurrent Parotid Gland Carcinoma 7 251273 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 8 251274 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 8 251275 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 251276 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 8 251277 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 251278 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 8 251279 -NCIT:C153801 Recurrent Submandibular Gland Carcinoma 7 251280 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 8 251281 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 8 251282 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 251283 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 8 251284 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 251285 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 8 251286 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 251287 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 251288 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 251289 -NCIT:C8037 Recurrent Lip and Oral Cavity Carcinoma 6 251290 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 251291 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 251292 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 251293 -NCIT:C6076 Recurrent Oral Cavity Carcinoma 7 251294 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 251295 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 251296 -NCIT:C8215 Recurrent Oral Cavity Mucoepidermoid Carcinoma 8 251297 -NCIT:C8216 Recurrent Oral Cavity Adenoid Cystic Carcinoma 8 251298 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 7 251299 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 5 251300 -NCIT:C9262 Recurrent Malignant Oral Neoplasm 5 251301 -NCIT:C8037 Recurrent Lip and Oral Cavity Carcinoma 6 251302 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 251303 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 251304 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 251305 -NCIT:C6076 Recurrent Oral Cavity Carcinoma 7 251306 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 251307 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 251308 -NCIT:C8215 Recurrent Oral Cavity Mucoepidermoid Carcinoma 8 251309 -NCIT:C8216 Recurrent Oral Cavity Adenoid Cystic Carcinoma 8 251310 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 7 251311 -NCIT:C152078 Refractory Malignant Head and Neck Neoplasm 4 251312 -NCIT:C150530 Refractory Malignant Oral Neoplasm 5 251313 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 6 251314 -NCIT:C150532 Refractory Malignant Pharyngeal Neoplasm 5 251315 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 6 251316 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 6 251317 -NCIT:C148434 Refractory Nasopharyngeal Carcinoma 6 251318 -NCIT:C150539 Refractory Malignant Thyroid Gland Neoplasm 5 251319 -NCIT:C142983 Refractory Thyroid Gland Carcinoma 6 251320 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 7 251321 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 8 251322 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 8 251323 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 9 251324 -NCIT:C170832 Refractory Thyroid Gland Anaplastic Carcinoma 7 251325 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 7 251326 -NCIT:C151907 Refractory Head and Neck Carcinoma 5 251327 -NCIT:C142983 Refractory Thyroid Gland Carcinoma 6 251328 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 7 251329 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 8 251330 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 8 251331 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 9 251332 -NCIT:C170832 Refractory Thyroid Gland Anaplastic Carcinoma 7 251333 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 7 251334 -NCIT:C148152 Refractory Head and Neck Squamous Cell Carcinoma 6 251335 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 7 251336 -NCIT:C148383 Refractory Laryngeal Squamous Cell Carcinoma 7 251337 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 7 251338 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 7 251339 -NCIT:C148401 Refractory Sinonasal Squamous Cell Carcinoma 7 251340 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 251341 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 251342 -NCIT:C148434 Refractory Nasopharyngeal Carcinoma 6 251343 -NCIT:C177722 Refractory Salivary Gland Carcinoma 6 251344 -NCIT:C179151 Platinum-Resistant Head and Neck Carcinoma 6 251345 -NCIT:C177721 Refractory Malignant Salivary Gland Neoplasm 5 251346 -NCIT:C177722 Refractory Salivary Gland Carcinoma 6 251347 -NCIT:C155790 Malignant Skull Neoplasm 4 251348 -NCIT:C155791 Malignant Skull Base Neoplasm 5 251349 -NCIT:C155772 Sellar Neuroblastoma 6 251350 -NCIT:C155786 Metastatic Malignant Neoplasm in the Sellar Region 6 251351 -NCIT:C6805 Metastatic Malignant Neoplasm in the Pituitary Gland 7 251352 -NCIT:C155802 Sellar Germinoma 6 251353 -NCIT:C155803 Suprasellar Germinoma 7 251354 -NCIT:C155804 Sellar Yolk Sac Tumor 6 251355 -NCIT:C155805 Sellar Embryonal Carcinoma 6 251356 -NCIT:C155806 Sellar Choriocarcinoma 6 251357 -NCIT:C155810 Sellar Teratoma with Malignant Transformation 6 251358 -NCIT:C155811 Sellar Mixed Germ Cell Tumor 6 251359 -NCIT:C4769 Malignant Pituitary Gland Neoplasm 6 251360 -NCIT:C155304 Pituitary Gland Blastoma 7 251361 -NCIT:C155796 Pituitary Gland Non-Hodgkin Lymphoma 7 251362 -NCIT:C155797 Pituitary Gland Diffuse Large B-Cell Lymphoma 8 251363 -NCIT:C4536 Metastatic Pituitary Neuroendocrine Tumor 7 251364 -NCIT:C163956 Locally Advanced Pituitary Neuroendocrine Tumor 8 251365 -NCIT:C163959 Metastatic Unresectable Pituitary Neuroendocrine Tumor 8 251366 -NCIT:C5962 Metastatic Lactotroph Pituitary Neuroendocrine Tumor 8 251367 -NCIT:C5963 Metastatic Somatotroph Pituitary Neuroendocrine Tumor 8 251368 -NCIT:C5964 Metastatic Corticotroph Pituitary Neuroendocrine Tumor 8 251369 -NCIT:C5965 Metastatic Thyrotroph Pituitary Neuroendocrine Tumor 8 251370 -NCIT:C6805 Metastatic Malignant Neoplasm in the Pituitary Gland 7 251371 -NCIT:C5453 Skull Base Chordoma 6 251372 -NCIT:C155781 Sellar Chordoma 7 251373 -NCIT:C155782 Sellar Chondroid Chordoma 8 251374 -NCIT:C155783 Sellar Dedifferentiated Chordoma 8 251375 -NCIT:C5412 Clivus Chordoma 7 251376 -NCIT:C5426 Clivus Chondroid Chordoma 8 251377 -NCIT:C173841 Maxillofacial Sarcoma 5 251378 -NCIT:C173842 Maxillofacial Chondrosarcoma 6 251379 -NCIT:C173843 Maxillofacial Mesenchymal Chondrosarcoma 7 251380 -NCIT:C173844 Maxillofacial Osteosarcoma 6 251381 -NCIT:C162594 Metastatic Malignant Neoplasm in the Head and Neck 4 251382 -NCIT:C155786 Metastatic Malignant Neoplasm in the Sellar Region 5 251383 -NCIT:C6805 Metastatic Malignant Neoplasm in the Pituitary Gland 6 251384 -NCIT:C162595 Head and Neck Carcinoma of Unknown Primary 5 251385 -NCIT:C173585 Neck Carcinoma of Unknown Primary 6 251386 -NCIT:C7713 Neck Squamous Cell Carcinoma of Unknown Primary 7 251387 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 8 251388 -NCIT:C187051 Human Papillomavirus-Related Head and Neck Squamous Cell Carcinoma of Unknown Primary 6 251389 -NCIT:C190149 Human Papillomavirus-Negative Head and Neck Squamous Cell Carcinoma of Unknown Primary 6 251390 -NCIT:C8528 Metastatic Malignant Neoplasm in the Neck 5 251391 -NCIT:C173585 Neck Carcinoma of Unknown Primary 6 251392 -NCIT:C7713 Neck Squamous Cell Carcinoma of Unknown Primary 7 251393 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 8 251394 -NCIT:C6031 Metastatic Malignant Neoplasm in the Larynx 6 251395 -NCIT:C7509 Metastatic Malignant Neoplasm in the Thyroid Gland 6 251396 -NCIT:C7546 Metastatic Malignant Neoplasm in the Pharynx 6 251397 -NCIT:C6028 Metastatic Malignant Neoplasm in the Hypopharynx 7 251398 -NCIT:C6029 Metastatic Malignant Neoplasm in the Oropharynx 7 251399 -NCIT:C6030 Metastatic Malignant Neoplasm in the Nasopharynx 7 251400 -NCIT:C8557 Metastatic Malignant Neoplasm in the Parathyroid Glands 6 251401 -NCIT:C8542 Metastatic Malignant Neoplasm in the Lip 5 251402 -NCIT:C8556 Metastatic Malignant Neoplasm in the Orbit 5 251403 -NCIT:C164198 Head and Neck Sarcoma 4 251404 -NCIT:C173118 Sinonasal Sarcoma 5 251405 -NCIT:C164205 Biphenotypic Sinonasal Sarcoma 6 251406 -NCIT:C173120 Sinonasal Fibrosarcoma 6 251407 -NCIT:C173121 Sinonasal Undifferentiated Pleomorphic Sarcoma 6 251408 -NCIT:C173123 Sinonasal Leiomyosarcoma 6 251409 -NCIT:C173124 Sinonasal Rhabdomyosarcoma 6 251410 -NCIT:C173125 Sinonasal Angiosarcoma 6 251411 -NCIT:C173127 Sinonasal Malignant Peripheral Nerve Sheath Tumor 6 251412 -NCIT:C173128 Sinonasal Synovial Sarcoma 6 251413 -NCIT:C6849 Paranasal Sinus Sarcoma 6 251414 -NCIT:C6850 High Grade Paranasal Sinus Sarcoma 7 251415 -NCIT:C6851 Low Grade Paranasal Sinus Sarcoma 7 251416 -NCIT:C173841 Maxillofacial Sarcoma 5 251417 -NCIT:C173842 Maxillofacial Chondrosarcoma 6 251418 -NCIT:C173843 Maxillofacial Mesenchymal Chondrosarcoma 7 251419 -NCIT:C173844 Maxillofacial Osteosarcoma 6 251420 -NCIT:C5916 Oral Cavity Sarcoma 5 251421 -NCIT:C173481 Oral Cavity Soft Tissue Sarcoma 6 251422 -NCIT:C156274 Tongue Sarcoma 7 251423 -NCIT:C156273 Tongue Alveolar Soft Part Sarcoma' 8 251424 -NCIT:C173404 Tongue Liposarcoma 8 251425 -NCIT:C173477 Oral Cavity Kaposi Sarcoma 7 251426 -NCIT:C6749 Palate Kaposi Sarcoma 8 251427 -NCIT:C173478 Oral Cavity Low Grade Myofibroblastic Sarcoma 7 251428 -NCIT:C173738 Odontogenic Sarcoma 6 251429 -NCIT:C173739 Ameloblastic Fibrodentinosarcoma 7 251430 -NCIT:C173740 Ameloblastic Fibroodontosarcoma 7 251431 -NCIT:C4317 Ameloblastic Fibrosarcoma 7 251432 -NCIT:C5983 Major Salivary Gland Sarcoma 5 251433 -NCIT:C156280 Parotid Gland Sarcoma 6 251434 -NCIT:C156281 Parotid Gland Liposarcoma 7 251435 -NCIT:C5952 Parotid Gland Kaposi Sarcoma 7 251436 -NCIT:C6020 Laryngeal Sarcoma 5 251437 -NCIT:C173407 Laryngeal Chondrosarcoma 6 251438 -NCIT:C173408 Laryngeal Soft Tissue Sarcoma 6 251439 -NCIT:C6021 Laryngeal Liposarcoma 7 251440 -NCIT:C6022 Laryngeal Leiomyosarcoma 7 251441 -NCIT:C6041 Thyroid Gland Sarcoma 5 251442 -NCIT:C156341 Thyroid Gland Malignant Peripheral Nerve Sheath Tumor 6 251443 -NCIT:C156347 Thyroid Gland Leiomyosarcoma 6 251444 -NCIT:C6043 Thyroid Gland Angiosarcoma 6 251445 -NCIT:C6095 Orbit Sarcoma 5 251446 -NCIT:C156276 Orbital Alveolar Soft Part Sarcoma 6 251447 -NCIT:C4543 Orbit Rhabdomyosarcoma 6 251448 -NCIT:C6246 Orbit Embryonal Rhabdomyosarcoma 7 251449 -NCIT:C6247 Orbit Alveolar Rhabdomyosarcoma 7 251450 -NCIT:C170467 Metastatic Malignant Head and Neck Neoplasm 4 251451 -NCIT:C126465 Metastatic Head and Neck Carcinoma 5 251452 -NCIT:C129861 Advanced Head and Neck Carcinoma 6 251453 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 7 251454 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 251455 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 251456 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 251457 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 251458 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 251459 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 251460 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 251461 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 7 251462 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 251463 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 8 251464 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 8 251465 -NCIT:C170784 Advanced Pharyngeal Carcinoma 7 251466 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 8 251467 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 251468 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 251469 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 251470 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 251471 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 251472 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 8 251473 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 251474 -NCIT:C177723 Advanced Salivary Gland Carcinoma 7 251475 -NCIT:C133193 Metastatic Thyroid Gland Carcinoma 6 251476 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 7 251477 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 251478 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 251479 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 7 251480 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 251481 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 8 251482 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 8 251483 -NCIT:C170831 Metastatic Thyroid Gland Anaplastic Carcinoma 7 251484 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 8 251485 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 8 251486 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 7 251487 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 251488 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 8 251489 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 8 251490 -NCIT:C173979 Metastatic Differentiated Thyroid Gland Carcinoma 7 251491 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 8 251492 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 9 251493 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 10 251494 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 8 251495 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 8 251496 -NCIT:C174046 Metastatic Poorly Differentiated Thyroid Gland Carcinoma 7 251497 -NCIT:C148153 Metastatic Head and Neck Squamous Cell Carcinoma 6 251498 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 7 251499 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 251500 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 251501 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 251502 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 251503 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 251504 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 251505 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 251506 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 7 251507 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 251508 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 251509 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 7 251510 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 251511 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 251512 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 7 251513 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 7 251514 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 251515 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 251516 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 251517 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 8 251518 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 9 251519 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 251520 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 251521 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 8 251522 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 251523 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 251524 -NCIT:C162882 Metastatic Sinonasal Squamous Cell Carcinoma 7 251525 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 251526 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 251527 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 251528 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 251529 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 251530 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 251531 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 251532 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 251533 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 251534 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 251535 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 7 251536 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 7 251537 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 8 251538 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 251539 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 251540 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 251541 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 8 251542 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 251543 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 251544 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 251545 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 251546 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 251547 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 8 251548 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 251549 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 251550 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 251551 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 251552 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 251553 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 251554 -NCIT:C153213 Locally Advanced Head and Neck Carcinoma 6 251555 -NCIT:C158464 Locally Advanced Salivary Gland Carcinoma 7 251556 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 7 251557 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 251558 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 251559 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 251560 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 8 251561 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 9 251562 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 251563 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 251564 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 8 251565 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 251566 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 251567 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 7 251568 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 7 251569 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 251570 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 7 251571 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 251572 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 8 251573 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 251574 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 251575 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 8 251576 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 251577 -NCIT:C165562 Locally Advanced Lip and Oral Cavity Carcinoma 7 251578 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 8 251579 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 251580 -NCIT:C165563 Locally Advanced Paranasal Sinus Carcinoma 7 251581 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 8 251582 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 7 251583 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 251584 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 8 251585 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 8 251586 -NCIT:C156080 Metastatic Pharyngeal Carcinoma 6 251587 -NCIT:C156079 Metastatic Nasopharyngeal Carcinoma 7 251588 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 8 251589 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 251590 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 251591 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 251592 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 251593 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 251594 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 8 251595 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 251596 -NCIT:C156081 Metastatic Hypopharyngeal Carcinoma 7 251597 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 8 251598 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 251599 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 251600 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 8 251601 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 251602 -NCIT:C156082 Metastatic Oropharyngeal Carcinoma 7 251603 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 8 251604 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 251605 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 251606 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 251607 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 8 251608 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 251609 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 251610 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 8 251611 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 251612 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 7 251613 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 251614 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 8 251615 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 251616 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 251617 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 8 251618 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 251619 -NCIT:C170784 Advanced Pharyngeal Carcinoma 7 251620 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 8 251621 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 251622 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 251623 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 251624 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 251625 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 251626 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 8 251627 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 251628 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 7 251629 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 8 251630 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 251631 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 251632 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 251633 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 8 251634 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 251635 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 251636 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 251637 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 251638 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 251639 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 8 251640 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 251641 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 251642 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 251643 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 251644 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 251645 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 251646 -NCIT:C156085 Metastatic Laryngeal Carcinoma 6 251647 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 7 251648 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 251649 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 251650 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 7 251651 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 251652 -NCIT:C156086 Metastatic Lip and Oral Cavity Carcinoma 6 251653 -NCIT:C156087 Metastatic Oral Cavity Carcinoma 7 251654 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 251655 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 251656 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 251657 -NCIT:C156089 Metastatic Oral Cavity Adenoid Cystic Carcinoma 8 251658 -NCIT:C156090 Metastatic Oral Cavity Mucoepidermoid Carcinoma 8 251659 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 8 251660 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 251661 -NCIT:C156088 Metastatic Lip Carcinoma 7 251662 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 251663 -NCIT:C165562 Locally Advanced Lip and Oral Cavity Carcinoma 7 251664 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 8 251665 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 251666 -NCIT:C158463 Metastatic Salivary Gland Carcinoma 6 251667 -NCIT:C158464 Locally Advanced Salivary Gland Carcinoma 7 251668 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 7 251669 -NCIT:C177723 Advanced Salivary Gland Carcinoma 7 251670 -NCIT:C5899 Stage IV Major Salivary Gland Carcinoma with Metastasis 7 251671 -NCIT:C9044 Metastatic Parathyroid Gland Carcinoma 6 251672 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 7 251673 -NCIT:C170469 Advanced Malignant Head and Neck Neoplasm 5 251674 -NCIT:C129861 Advanced Head and Neck Carcinoma 6 251675 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 7 251676 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 251677 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 251678 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 251679 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 251680 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 251681 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 251682 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 251683 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 7 251684 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 251685 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 8 251686 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 8 251687 -NCIT:C170784 Advanced Pharyngeal Carcinoma 7 251688 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 8 251689 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 251690 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 251691 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 251692 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 251693 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 251694 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 8 251695 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 251696 -NCIT:C177723 Advanced Salivary Gland Carcinoma 7 251697 -NCIT:C170470 Locally Advanced Malignant Head and Neck Neoplasm 5 251698 -NCIT:C153213 Locally Advanced Head and Neck Carcinoma 6 251699 -NCIT:C158464 Locally Advanced Salivary Gland Carcinoma 7 251700 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 7 251701 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 251702 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 251703 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 251704 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 8 251705 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 9 251706 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 251707 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 251708 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 8 251709 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 251710 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 251711 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 7 251712 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 7 251713 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 251714 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 7 251715 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 251716 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 8 251717 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 251718 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 251719 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 8 251720 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 251721 -NCIT:C165562 Locally Advanced Lip and Oral Cavity Carcinoma 7 251722 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 8 251723 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 251724 -NCIT:C165563 Locally Advanced Paranasal Sinus Carcinoma 7 251725 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 8 251726 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 7 251727 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 251728 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 8 251729 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 8 251730 -NCIT:C3574 Metastatic Carotid Body Paraganglioma 5 251731 -NCIT:C4623 Metastatic Jugulotympanic Paraganglioma 5 251732 -NCIT:C173097 Malignant Sinonasal Neoplasm 4 251733 -NCIT:C166399 Sinonasal Mucosal Melanoma 5 251734 -NCIT:C173094 Sinonasal Teratocarcinosarcoma 5 251735 -NCIT:C173169 Sinonasal Plasmacytoma 5 251736 -NCIT:C173170 Sinonasal Lymphoma 5 251737 -NCIT:C173171 Sinonasal Non-Hodgkin Lymphoma 6 251738 -NCIT:C173172 Sinonasal Extranodal NK/T-Cell Lymphoma 7 251739 -NCIT:C173173 Nasal Cavity Extranodal NK/T-Cell Lymphoma 8 251740 -NCIT:C6069 Paranasal Sinus Non-Hodgkin Lymphoma 7 251741 -NCIT:C6073 Paranasal Sinus Diffuse Large B-Cell Lymphoma 8 251742 -NCIT:C6075 Nasal Cavity Non-Hodgkin Lymphoma 7 251743 -NCIT:C173173 Nasal Cavity Extranodal NK/T-Cell Lymphoma 8 251744 -NCIT:C188081 Nasal Cavity Diffuse Large B-Cell Lymphoma 8 251745 -NCIT:C6068 Paranasal Sinus Lymphoma 6 251746 -NCIT:C6069 Paranasal Sinus Non-Hodgkin Lymphoma 7 251747 -NCIT:C6073 Paranasal Sinus Diffuse Large B-Cell Lymphoma 8 251748 -NCIT:C6074 Nasal Cavity Lymphoma 6 251749 -NCIT:C6075 Nasal Cavity Non-Hodgkin Lymphoma 7 251750 -NCIT:C173173 Nasal Cavity Extranodal NK/T-Cell Lymphoma 8 251751 -NCIT:C188081 Nasal Cavity Diffuse Large B-Cell Lymphoma 8 251752 -NCIT:C173174 Sinonasal Olfactory Neuroblastoma 5 251753 -NCIT:C6016 Paranasal Sinus Olfactory Neuroblastoma 6 251754 -NCIT:C173176 Malignant Sinonasal Soft Tissue Neoplasm 5 251755 -NCIT:C173118 Sinonasal Sarcoma 6 251756 -NCIT:C164205 Biphenotypic Sinonasal Sarcoma 7 251757 -NCIT:C173120 Sinonasal Fibrosarcoma 7 251758 -NCIT:C173121 Sinonasal Undifferentiated Pleomorphic Sarcoma 7 251759 -NCIT:C173123 Sinonasal Leiomyosarcoma 7 251760 -NCIT:C173124 Sinonasal Rhabdomyosarcoma 7 251761 -NCIT:C173125 Sinonasal Angiosarcoma 7 251762 -NCIT:C173127 Sinonasal Malignant Peripheral Nerve Sheath Tumor 7 251763 -NCIT:C173128 Sinonasal Synovial Sarcoma 7 251764 -NCIT:C6849 Paranasal Sinus Sarcoma 7 251765 -NCIT:C6850 High Grade Paranasal Sinus Sarcoma 8 251766 -NCIT:C6851 Low Grade Paranasal Sinus Sarcoma 8 251767 -NCIT:C173138 Sinonasal Epithelioid Hemangioendothelioma 6 251768 -NCIT:C173175 Sinonasal Ewing Sarcoma/Peripheral Primitive Neuroectodermal Tumor 6 251769 -NCIT:C4918 Malignant Nasal Cavity Neoplasm 5 251770 -NCIT:C6074 Nasal Cavity Lymphoma 6 251771 -NCIT:C6075 Nasal Cavity Non-Hodgkin Lymphoma 7 251772 -NCIT:C173173 Nasal Cavity Extranodal NK/T-Cell Lymphoma 8 251773 -NCIT:C188081 Nasal Cavity Diffuse Large B-Cell Lymphoma 8 251774 -NCIT:C7604 Nasal Cavity Olfactory Neuroblastoma 6 251775 -NCIT:C9336 Nasal Cavity Carcinoma 6 251776 -NCIT:C118817 Childhood Nasal Cavity Carcinoma 7 251777 -NCIT:C27389 Carcinoma Arising in Nasal Papillomatosis 7 251778 -NCIT:C4589 Stage 0 Nasal Cavity Cancer AJCC v6, v7, and v8 7 251779 -NCIT:C6010 Stage IV Nasal Cavity Cancer 7 251780 -NCIT:C6011 Stage III Nasal Cavity Cancer AJCC v6 and v7 7 251781 -NCIT:C6012 Stage II Nasal Cavity Cancer AJCC v6 and v7 7 251782 -NCIT:C6013 Stage I Nasal Cavity Cancer AJCC v6 and v7 7 251783 -NCIT:C6015 Nasal Cavity Adenocarcinoma 7 251784 -NCIT:C8192 Nasal Cavity Squamous Cell Carcinoma 7 251785 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 251786 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 251787 -NCIT:C176514 Unresectable Nasal Cavity Squamous Cell Carcinoma 8 251788 -NCIT:C54285 Nasal Cavity Keratinizing Squamous Cell Carcinoma 8 251789 -NCIT:C54293 Sinonasal Carcinoma 5 251790 -NCIT:C133074 Sinonasal Cancer by AJCC v8 Stage 6 251791 -NCIT:C133076 Stage I Sinonasal Cancer AJCC v8 7 251792 -NCIT:C133077 Stage II Sinonasal Cancer AJCC v8 7 251793 -NCIT:C133078 Stage III Sinonasal Cancer AJCC v8 7 251794 -NCIT:C133079 Stage IV Sinonasal Cancer AJCC v8 7 251795 -NCIT:C133080 Stage IVA Sinonasal Cancer AJCC v8 8 251796 -NCIT:C133081 Stage IVB Sinonasal Cancer AJCC v8 8 251797 -NCIT:C133082 Stage IVC Sinonasal Cancer AJCC v8 8 251798 -NCIT:C87498 Stage 0 Sinonasal Cancer AJCC v6, v7, and v8 7 251799 -NCIT:C4589 Stage 0 Nasal Cavity Cancer AJCC v6, v7, and v8 8 251800 -NCIT:C94768 Stage 0 Paranasal Sinus Cancer AJCC v6, v7, and v8 8 251801 -NCIT:C154324 Sinonasal Poorly Differentiated Carcinoma 6 251802 -NCIT:C173088 Sinonasal NUT Carcinoma 7 251803 -NCIT:C160976 Sinonasal Adenocarcinoma 6 251804 -NCIT:C161007 Sinonasal Adenocarcinoma, Salivary-Type 7 251805 -NCIT:C161008 Sinonasal Adenocarcinoma, Non-Salivary-Type 7 251806 -NCIT:C116316 Sinonasal Adenocarcinoma, Intestinal-Type 8 251807 -NCIT:C160984 Sinonasal Adenocarcinoma, Intestinal-Type with Papillary Pattern 9 251808 -NCIT:C160986 Sinonasal Adenocarcinoma, Intestinal-Type with Colonic Pattern 9 251809 -NCIT:C160987 Sinonasal Adenocarcinoma, Intestinal-Type with Solid Pattern 9 251810 -NCIT:C160995 Sinonasal Adenocarcinoma, Intestinal-Type with Mucinous Pattern 9 251811 -NCIT:C161000 Sinonasal Adenocarcinoma, Intestinal-Type with Mixed Pattern 9 251812 -NCIT:C160977 Sinonasal Adenocarcinoma, Non-Intestinal-Type 8 251813 -NCIT:C6015 Nasal Cavity Adenocarcinoma 7 251814 -NCIT:C6017 Paranasal Sinus Adenocarcinoma 7 251815 -NCIT:C6237 Ethmoid Sinus Adenocarcinoma 8 251816 -NCIT:C6240 Maxillary Sinus Adenocarcinoma 8 251817 -NCIT:C173089 Sinonasal Neuroendocrine Carcinoma 6 251818 -NCIT:C116318 Sinonasal Small Cell Neuroendocrine Carcinoma 7 251819 -NCIT:C173091 Sinonasal Large Cell Neuroendocrine Carcinoma 7 251820 -NCIT:C180670 Low Grade Papillary Schneiderian Carcinoma 6 251821 -NCIT:C54294 Sinonasal Undifferentiated Carcinoma 6 251822 -NCIT:C6014 Paranasal Sinus Carcinoma 6 251823 -NCIT:C118818 Childhood Paranasal Sinus Carcinoma 7 251824 -NCIT:C165563 Locally Advanced Paranasal Sinus Carcinoma 7 251825 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 8 251826 -NCIT:C6006 Stage I Paranasal Sinus Cancer 7 251827 -NCIT:C6007 Stage II Paranasal Sinus Cancer AJCC v6 and v7 7 251828 -NCIT:C6008 Stage III Paranasal Sinus Cancer AJCC v6 and v7 7 251829 -NCIT:C6009 Stage IV Paranasal Sinus Cancer AJCC v7 7 251830 -NCIT:C6070 Stage IVA Paranasal Sinus Cancer AJCC v7 8 251831 -NCIT:C6071 Stage IVB Paranasal Sinus Cancer AJCC v7 8 251832 -NCIT:C6072 Stage IVC Paranasal Sinus Cancer AJCC v7 8 251833 -NCIT:C6017 Paranasal Sinus Adenocarcinoma 7 251834 -NCIT:C6237 Ethmoid Sinus Adenocarcinoma 8 251835 -NCIT:C6240 Maxillary Sinus Adenocarcinoma 8 251836 -NCIT:C6018 Paranasal Sinus Mucoepidermoid Carcinoma 7 251837 -NCIT:C6019 Paranasal Sinus Adenoid Cystic Carcinoma 7 251838 -NCIT:C6238 Ethmoid Sinus Adenoid Cystic Carcinoma 8 251839 -NCIT:C6239 Maxillary Sinus Adenoid Cystic Carcinoma 8 251840 -NCIT:C8193 Paranasal Sinus Squamous Cell Carcinoma 7 251841 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 251842 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 251843 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 251844 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 251845 -NCIT:C172648 Unresectable Paranasal Sinus Squamous Cell Carcinoma 8 251846 -NCIT:C54284 Paranasal Sinus Keratinizing Squamous Cell Carcinoma 8 251847 -NCIT:C6064 Maxillary Sinus Squamous Cell Carcinoma 8 251848 -NCIT:C6065 Ethmoid Sinus Squamous Cell Carcinoma 8 251849 -NCIT:C6066 Sphenoid Sinus Squamous Cell Carcinoma 8 251850 -NCIT:C6067 Frontal Sinus Squamous Cell Carcinoma 8 251851 -NCIT:C9332 Maxillary Sinus Carcinoma 7 251852 -NCIT:C6064 Maxillary Sinus Squamous Cell Carcinoma 8 251853 -NCIT:C6239 Maxillary Sinus Adenoid Cystic Carcinoma 8 251854 -NCIT:C6240 Maxillary Sinus Adenocarcinoma 8 251855 -NCIT:C94768 Stage 0 Paranasal Sinus Cancer AJCC v6, v7, and v8 7 251856 -NCIT:C67558 Recurrent Sinonasal Carcinoma 6 251857 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 251858 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 251859 -NCIT:C68611 Sinonasal Squamous Cell Carcinoma 6 251860 -NCIT:C115070 Stage I Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 7 251861 -NCIT:C115071 Stage II Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 7 251862 -NCIT:C115072 Stage III Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 7 251863 -NCIT:C115073 Stage IV Sinonasal Squamous Cell Carcinoma AJCC v7 7 251864 -NCIT:C115074 Stage IVA Sinonasal Squamous Cell Carcinoma AJCC v7 8 251865 -NCIT:C115075 Stage IVB Sinonasal Squamous Cell Carcinoma AJCC v7 8 251866 -NCIT:C115076 Stage IVC Sinonasal Squamous Cell Carcinoma AJCC v7 8 251867 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 251868 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 251869 -NCIT:C148401 Refractory Sinonasal Squamous Cell Carcinoma 7 251870 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 251871 -NCIT:C162882 Metastatic Sinonasal Squamous Cell Carcinoma 7 251872 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 251873 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 251874 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 251875 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 251876 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 251877 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 251878 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 251879 -NCIT:C173077 Sinonasal Keratinizing Squamous Cell Carcinoma 7 251880 -NCIT:C54284 Paranasal Sinus Keratinizing Squamous Cell Carcinoma 8 251881 -NCIT:C54285 Nasal Cavity Keratinizing Squamous Cell Carcinoma 8 251882 -NCIT:C173079 Sinonasal Spindle Cell Squamous Cell Carcinoma 7 251883 -NCIT:C176513 Unresectable Sinonasal Squamous Cell Carcinoma 7 251884 -NCIT:C172648 Unresectable Paranasal Sinus Squamous Cell Carcinoma 8 251885 -NCIT:C176514 Unresectable Nasal Cavity Squamous Cell Carcinoma 8 251886 -NCIT:C54287 Sinonasal Non-Keratinizing Squamous Cell Carcinoma 7 251887 -NCIT:C173078 Sinonasal Human Papillomavirus-Related Carcinoma with Adenoid Cystic-Like Features 8 251888 -NCIT:C173080 Sinonasal Lymphoepithelial Carcinoma 8 251889 -NCIT:C8192 Nasal Cavity Squamous Cell Carcinoma 7 251890 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 251891 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 251892 -NCIT:C176514 Unresectable Nasal Cavity Squamous Cell Carcinoma 8 251893 -NCIT:C54285 Nasal Cavity Keratinizing Squamous Cell Carcinoma 8 251894 -NCIT:C8193 Paranasal Sinus Squamous Cell Carcinoma 7 251895 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 251896 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 251897 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 251898 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 251899 -NCIT:C172648 Unresectable Paranasal Sinus Squamous Cell Carcinoma 8 251900 -NCIT:C54284 Paranasal Sinus Keratinizing Squamous Cell Carcinoma 8 251901 -NCIT:C6064 Maxillary Sinus Squamous Cell Carcinoma 8 251902 -NCIT:C6065 Ethmoid Sinus Squamous Cell Carcinoma 8 251903 -NCIT:C6066 Sphenoid Sinus Squamous Cell Carcinoma 8 251904 -NCIT:C6067 Frontal Sinus Squamous Cell Carcinoma 8 251905 -NCIT:C90528 Sinonasal Cancer by AJCC v6 Stage 6 251906 -NCIT:C67554 Stage I Sinonasal Cancer AJCC v6 and v7 7 251907 -NCIT:C115070 Stage I Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 8 251908 -NCIT:C6006 Stage I Paranasal Sinus Cancer 8 251909 -NCIT:C6013 Stage I Nasal Cavity Cancer AJCC v6 and v7 8 251910 -NCIT:C67555 Stage II Sinonasal Cancer AJCC v6 and v7 7 251911 -NCIT:C115071 Stage II Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 8 251912 -NCIT:C6007 Stage II Paranasal Sinus Cancer AJCC v6 and v7 8 251913 -NCIT:C6012 Stage II Nasal Cavity Cancer AJCC v6 and v7 8 251914 -NCIT:C67556 Stage III Sinonasal Cancer AJCC v6 and v7 7 251915 -NCIT:C115072 Stage III Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 8 251916 -NCIT:C6008 Stage III Paranasal Sinus Cancer AJCC v6 and v7 8 251917 -NCIT:C6011 Stage III Nasal Cavity Cancer AJCC v6 and v7 8 251918 -NCIT:C67557 Stage IV Sinonasal Cancer AJCC v6 7 251919 -NCIT:C87498 Stage 0 Sinonasal Cancer AJCC v6, v7, and v8 7 251920 -NCIT:C4589 Stage 0 Nasal Cavity Cancer AJCC v6, v7, and v8 8 251921 -NCIT:C94768 Stage 0 Paranasal Sinus Cancer AJCC v6, v7, and v8 8 251922 -NCIT:C91255 Sinonasal Cancer by AJCC v7 Stage 6 251923 -NCIT:C67554 Stage I Sinonasal Cancer AJCC v6 and v7 7 251924 -NCIT:C115070 Stage I Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 8 251925 -NCIT:C6006 Stage I Paranasal Sinus Cancer 8 251926 -NCIT:C6013 Stage I Nasal Cavity Cancer AJCC v6 and v7 8 251927 -NCIT:C67555 Stage II Sinonasal Cancer AJCC v6 and v7 7 251928 -NCIT:C115071 Stage II Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 8 251929 -NCIT:C6007 Stage II Paranasal Sinus Cancer AJCC v6 and v7 8 251930 -NCIT:C6012 Stage II Nasal Cavity Cancer AJCC v6 and v7 8 251931 -NCIT:C67556 Stage III Sinonasal Cancer AJCC v6 and v7 7 251932 -NCIT:C115072 Stage III Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 8 251933 -NCIT:C6008 Stage III Paranasal Sinus Cancer AJCC v6 and v7 8 251934 -NCIT:C6011 Stage III Nasal Cavity Cancer AJCC v6 and v7 8 251935 -NCIT:C87498 Stage 0 Sinonasal Cancer AJCC v6, v7, and v8 7 251936 -NCIT:C4589 Stage 0 Nasal Cavity Cancer AJCC v6, v7, and v8 8 251937 -NCIT:C94768 Stage 0 Paranasal Sinus Cancer AJCC v6, v7, and v8 8 251938 -NCIT:C89117 Stage IV Sinonasal Cancer AJCC v7 7 251939 -NCIT:C115073 Stage IV Sinonasal Squamous Cell Carcinoma AJCC v7 8 251940 -NCIT:C115074 Stage IVA Sinonasal Squamous Cell Carcinoma AJCC v7 9 251941 -NCIT:C115075 Stage IVB Sinonasal Squamous Cell Carcinoma AJCC v7 9 251942 -NCIT:C115076 Stage IVC Sinonasal Squamous Cell Carcinoma AJCC v7 9 251943 -NCIT:C6009 Stage IV Paranasal Sinus Cancer AJCC v7 8 251944 -NCIT:C6070 Stage IVA Paranasal Sinus Cancer AJCC v7 9 251945 -NCIT:C6071 Stage IVB Paranasal Sinus Cancer AJCC v7 9 251946 -NCIT:C6072 Stage IVC Paranasal Sinus Cancer AJCC v7 9 251947 -NCIT:C6010 Stage IV Nasal Cavity Cancer 8 251948 -NCIT:C87501 Stage IVA Sinonasal Cancer AJCC v7 8 251949 -NCIT:C115074 Stage IVA Sinonasal Squamous Cell Carcinoma AJCC v7 9 251950 -NCIT:C6070 Stage IVA Paranasal Sinus Cancer AJCC v7 9 251951 -NCIT:C87502 Stage IVB Sinonasal Cancer AJCC v7 8 251952 -NCIT:C115075 Stage IVB Sinonasal Squamous Cell Carcinoma AJCC v7 9 251953 -NCIT:C6071 Stage IVB Paranasal Sinus Cancer AJCC v7 9 251954 -NCIT:C87503 Stage IVC Sinonasal Cancer AJCC v7 8 251955 -NCIT:C115076 Stage IVC Sinonasal Squamous Cell Carcinoma AJCC v7 9 251956 -NCIT:C6072 Stage IVC Paranasal Sinus Cancer AJCC v7 9 251957 -NCIT:C9336 Nasal Cavity Carcinoma 6 251958 -NCIT:C118817 Childhood Nasal Cavity Carcinoma 7 251959 -NCIT:C27389 Carcinoma Arising in Nasal Papillomatosis 7 251960 -NCIT:C4589 Stage 0 Nasal Cavity Cancer AJCC v6, v7, and v8 7 251961 -NCIT:C6010 Stage IV Nasal Cavity Cancer 7 251962 -NCIT:C6011 Stage III Nasal Cavity Cancer AJCC v6 and v7 7 251963 -NCIT:C6012 Stage II Nasal Cavity Cancer AJCC v6 and v7 7 251964 -NCIT:C6013 Stage I Nasal Cavity Cancer AJCC v6 and v7 7 251965 -NCIT:C6015 Nasal Cavity Adenocarcinoma 7 251966 -NCIT:C8192 Nasal Cavity Squamous Cell Carcinoma 7 251967 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 251968 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 251969 -NCIT:C176514 Unresectable Nasal Cavity Squamous Cell Carcinoma 8 251970 -NCIT:C54285 Nasal Cavity Keratinizing Squamous Cell Carcinoma 8 251971 -NCIT:C7487 Malignant Paranasal Sinus Neoplasm 5 251972 -NCIT:C3540 Malignant Maxillary Sinus Neoplasm 6 251973 -NCIT:C9332 Maxillary Sinus Carcinoma 7 251974 -NCIT:C6064 Maxillary Sinus Squamous Cell Carcinoma 8 251975 -NCIT:C6239 Maxillary Sinus Adenoid Cystic Carcinoma 8 251976 -NCIT:C6240 Maxillary Sinus Adenocarcinoma 8 251977 -NCIT:C3541 Malignant Ethmoid Sinus Neoplasm 6 251978 -NCIT:C6065 Ethmoid Sinus Squamous Cell Carcinoma 7 251979 -NCIT:C6237 Ethmoid Sinus Adenocarcinoma 7 251980 -NCIT:C6238 Ethmoid Sinus Adenoid Cystic Carcinoma 7 251981 -NCIT:C3542 Malignant Frontal Sinus Neoplasm 6 251982 -NCIT:C6067 Frontal Sinus Squamous Cell Carcinoma 7 251983 -NCIT:C3543 Malignant Sphenoid Sinus Neoplasm 6 251984 -NCIT:C6066 Sphenoid Sinus Squamous Cell Carcinoma 7 251985 -NCIT:C6014 Paranasal Sinus Carcinoma 6 251986 -NCIT:C118818 Childhood Paranasal Sinus Carcinoma 7 251987 -NCIT:C165563 Locally Advanced Paranasal Sinus Carcinoma 7 251988 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 8 251989 -NCIT:C6006 Stage I Paranasal Sinus Cancer 7 251990 -NCIT:C6007 Stage II Paranasal Sinus Cancer AJCC v6 and v7 7 251991 -NCIT:C6008 Stage III Paranasal Sinus Cancer AJCC v6 and v7 7 251992 -NCIT:C6009 Stage IV Paranasal Sinus Cancer AJCC v7 7 251993 -NCIT:C6070 Stage IVA Paranasal Sinus Cancer AJCC v7 8 251994 -NCIT:C6071 Stage IVB Paranasal Sinus Cancer AJCC v7 8 251995 -NCIT:C6072 Stage IVC Paranasal Sinus Cancer AJCC v7 8 251996 -NCIT:C6017 Paranasal Sinus Adenocarcinoma 7 251997 -NCIT:C6237 Ethmoid Sinus Adenocarcinoma 8 251998 -NCIT:C6240 Maxillary Sinus Adenocarcinoma 8 251999 -NCIT:C6018 Paranasal Sinus Mucoepidermoid Carcinoma 7 252000 -NCIT:C6019 Paranasal Sinus Adenoid Cystic Carcinoma 7 252001 -NCIT:C6238 Ethmoid Sinus Adenoid Cystic Carcinoma 8 252002 -NCIT:C6239 Maxillary Sinus Adenoid Cystic Carcinoma 8 252003 -NCIT:C8193 Paranasal Sinus Squamous Cell Carcinoma 7 252004 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 252005 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 252006 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 252007 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 252008 -NCIT:C172648 Unresectable Paranasal Sinus Squamous Cell Carcinoma 8 252009 -NCIT:C54284 Paranasal Sinus Keratinizing Squamous Cell Carcinoma 8 252010 -NCIT:C6064 Maxillary Sinus Squamous Cell Carcinoma 8 252011 -NCIT:C6065 Ethmoid Sinus Squamous Cell Carcinoma 8 252012 -NCIT:C6066 Sphenoid Sinus Squamous Cell Carcinoma 8 252013 -NCIT:C6067 Frontal Sinus Squamous Cell Carcinoma 8 252014 -NCIT:C9332 Maxillary Sinus Carcinoma 7 252015 -NCIT:C6064 Maxillary Sinus Squamous Cell Carcinoma 8 252016 -NCIT:C6239 Maxillary Sinus Adenoid Cystic Carcinoma 8 252017 -NCIT:C6240 Maxillary Sinus Adenocarcinoma 8 252018 -NCIT:C94768 Stage 0 Paranasal Sinus Cancer AJCC v6, v7, and v8 7 252019 -NCIT:C6016 Paranasal Sinus Olfactory Neuroblastoma 6 252020 -NCIT:C6068 Paranasal Sinus Lymphoma 6 252021 -NCIT:C6069 Paranasal Sinus Non-Hodgkin Lymphoma 7 252022 -NCIT:C6073 Paranasal Sinus Diffuse Large B-Cell Lymphoma 8 252023 -NCIT:C6849 Paranasal Sinus Sarcoma 6 252024 -NCIT:C6850 High Grade Paranasal Sinus Sarcoma 7 252025 -NCIT:C6851 Low Grade Paranasal Sinus Sarcoma 7 252026 -NCIT:C173580 Head and Neck Follicular Dendritic Cell Sarcoma 4 252027 -NCIT:C156408 Thyroid Gland Follicular Dendritic Cell Sarcoma 5 252028 -NCIT:C190121 Childhood Malignant Head and Neck Neoplasm 4 252029 -NCIT:C118811 Childhood Laryngeal Carcinoma 5 252030 -NCIT:C118817 Childhood Nasal Cavity Carcinoma 5 252031 -NCIT:C118818 Childhood Paranasal Sinus Carcinoma 5 252032 -NCIT:C118819 Childhood Parathyroid Gland Carcinoma 5 252033 -NCIT:C118824 Childhood Salivary Gland Carcinoma 5 252034 -NCIT:C190273 Childhood Salivary Gland Mucoepidermoid Carcinoma 6 252035 -NCIT:C190274 Childhood Salivary Gland Acinic Cell Carcinoma 6 252036 -NCIT:C118827 Childhood Thyroid Gland Carcinoma 5 252037 -NCIT:C123903 Childhood Thyroid Gland Papillary Carcinoma 6 252038 -NCIT:C123904 Childhood Thyroid Gland Follicular Carcinoma 6 252039 -NCIT:C123905 Childhood Thyroid Gland Medullary Carcinoma 6 252040 -NCIT:C190064 Childhood Thyroid Gland Spindle Epithelial Tumor with Thymus-Like Elements 6 252041 -NCIT:C190272 Childhood Mucoepidermoid Carcinoma 5 252042 -NCIT:C190273 Childhood Salivary Gland Mucoepidermoid Carcinoma 6 252043 -NCIT:C190276 Childhood Nasopharyngeal Carcinoma 5 252044 -NCIT:C190278 Childhood Head and Neck NUT Carcinoma 5 252045 -NCIT:C3562 Malignant Orbit Neoplasm 4 252046 -NCIT:C118828 Orbital Melanoma 5 252047 -NCIT:C6095 Orbit Sarcoma 5 252048 -NCIT:C156276 Orbital Alveolar Soft Part Sarcoma 6 252049 -NCIT:C4543 Orbit Rhabdomyosarcoma 6 252050 -NCIT:C6246 Orbit Embryonal Rhabdomyosarcoma 7 252051 -NCIT:C6247 Orbit Alveolar Rhabdomyosarcoma 7 252052 -NCIT:C6244 Orbit Lymphoma 5 252053 -NCIT:C8556 Metastatic Malignant Neoplasm in the Orbit 5 252054 -NCIT:C35850 Head and Neck Carcinoma 4 252055 -NCIT:C126465 Metastatic Head and Neck Carcinoma 5 252056 -NCIT:C129861 Advanced Head and Neck Carcinoma 6 252057 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 7 252058 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 252059 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 252060 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 252061 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 252062 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 252063 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 252064 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 252065 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 7 252066 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 252067 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 8 252068 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 8 252069 -NCIT:C170784 Advanced Pharyngeal Carcinoma 7 252070 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 8 252071 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 252072 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 252073 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 252074 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 252075 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 252076 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 8 252077 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 252078 -NCIT:C177723 Advanced Salivary Gland Carcinoma 7 252079 -NCIT:C133193 Metastatic Thyroid Gland Carcinoma 6 252080 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 7 252081 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 252082 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 252083 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 7 252084 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 252085 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 8 252086 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 8 252087 -NCIT:C170831 Metastatic Thyroid Gland Anaplastic Carcinoma 7 252088 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 8 252089 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 8 252090 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 7 252091 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 252092 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 8 252093 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 8 252094 -NCIT:C173979 Metastatic Differentiated Thyroid Gland Carcinoma 7 252095 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 8 252096 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 9 252097 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 10 252098 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 8 252099 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 8 252100 -NCIT:C174046 Metastatic Poorly Differentiated Thyroid Gland Carcinoma 7 252101 -NCIT:C148153 Metastatic Head and Neck Squamous Cell Carcinoma 6 252102 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 7 252103 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 252104 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 252105 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 252106 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 252107 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 252108 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 252109 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 252110 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 7 252111 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 252112 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 252113 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 7 252114 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 252115 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 252116 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 7 252117 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 7 252118 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 252119 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 252120 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 252121 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 8 252122 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 9 252123 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 252124 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 252125 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 8 252126 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 252127 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 252128 -NCIT:C162882 Metastatic Sinonasal Squamous Cell Carcinoma 7 252129 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 252130 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 252131 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 252132 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 252133 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 252134 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 252135 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 252136 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 252137 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 252138 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 252139 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 7 252140 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 7 252141 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 8 252142 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 252143 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 252144 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 252145 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 8 252146 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 252147 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 252148 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 252149 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 252150 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 252151 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 8 252152 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 252153 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 252154 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 252155 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 252156 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 252157 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 252158 -NCIT:C153213 Locally Advanced Head and Neck Carcinoma 6 252159 -NCIT:C158464 Locally Advanced Salivary Gland Carcinoma 7 252160 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 7 252161 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 252162 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 252163 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 252164 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 8 252165 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 9 252166 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 252167 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 252168 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 8 252169 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 252170 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 252171 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 7 252172 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 7 252173 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 252174 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 7 252175 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 252176 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 8 252177 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 252178 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 252179 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 8 252180 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 252181 -NCIT:C165562 Locally Advanced Lip and Oral Cavity Carcinoma 7 252182 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 8 252183 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 252184 -NCIT:C165563 Locally Advanced Paranasal Sinus Carcinoma 7 252185 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 8 252186 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 7 252187 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 252188 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 8 252189 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 8 252190 -NCIT:C156080 Metastatic Pharyngeal Carcinoma 6 252191 -NCIT:C156079 Metastatic Nasopharyngeal Carcinoma 7 252192 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 8 252193 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 252194 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 252195 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 252196 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 252197 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 252198 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 8 252199 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 252200 -NCIT:C156081 Metastatic Hypopharyngeal Carcinoma 7 252201 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 8 252202 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 252203 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 252204 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 8 252205 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 252206 -NCIT:C156082 Metastatic Oropharyngeal Carcinoma 7 252207 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 8 252208 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 252209 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 252210 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 252211 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 8 252212 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 252213 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 252214 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 8 252215 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 252216 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 7 252217 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 252218 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 8 252219 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 252220 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 252221 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 8 252222 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 252223 -NCIT:C170784 Advanced Pharyngeal Carcinoma 7 252224 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 8 252225 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 252226 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 252227 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 252228 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 252229 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 252230 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 8 252231 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 252232 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 7 252233 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 8 252234 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 252235 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 252236 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 252237 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 8 252238 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 252239 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 252240 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 252241 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 252242 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 252243 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 8 252244 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 252245 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 252246 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 252247 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 252248 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 252249 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 252250 -NCIT:C156085 Metastatic Laryngeal Carcinoma 6 252251 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 7 252252 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 252253 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 252254 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 7 252255 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 252256 -NCIT:C156086 Metastatic Lip and Oral Cavity Carcinoma 6 252257 -NCIT:C156087 Metastatic Oral Cavity Carcinoma 7 252258 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 252259 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 252260 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 252261 -NCIT:C156089 Metastatic Oral Cavity Adenoid Cystic Carcinoma 8 252262 -NCIT:C156090 Metastatic Oral Cavity Mucoepidermoid Carcinoma 8 252263 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 8 252264 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 252265 -NCIT:C156088 Metastatic Lip Carcinoma 7 252266 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 252267 -NCIT:C165562 Locally Advanced Lip and Oral Cavity Carcinoma 7 252268 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 8 252269 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 252270 -NCIT:C158463 Metastatic Salivary Gland Carcinoma 6 252271 -NCIT:C158464 Locally Advanced Salivary Gland Carcinoma 7 252272 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 7 252273 -NCIT:C177723 Advanced Salivary Gland Carcinoma 7 252274 -NCIT:C5899 Stage IV Major Salivary Gland Carcinoma with Metastasis 7 252275 -NCIT:C9044 Metastatic Parathyroid Gland Carcinoma 6 252276 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 7 252277 -NCIT:C151907 Refractory Head and Neck Carcinoma 5 252278 -NCIT:C142983 Refractory Thyroid Gland Carcinoma 6 252279 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 7 252280 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 8 252281 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 8 252282 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 9 252283 -NCIT:C170832 Refractory Thyroid Gland Anaplastic Carcinoma 7 252284 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 7 252285 -NCIT:C148152 Refractory Head and Neck Squamous Cell Carcinoma 6 252286 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 7 252287 -NCIT:C148383 Refractory Laryngeal Squamous Cell Carcinoma 7 252288 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 7 252289 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 7 252290 -NCIT:C148401 Refractory Sinonasal Squamous Cell Carcinoma 7 252291 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 252292 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 252293 -NCIT:C148434 Refractory Nasopharyngeal Carcinoma 6 252294 -NCIT:C177722 Refractory Salivary Gland Carcinoma 6 252295 -NCIT:C179151 Platinum-Resistant Head and Neck Carcinoma 6 252296 -NCIT:C160978 Head and Neck Sebaceous Carcinoma 5 252297 -NCIT:C173648 Salivary Gland Sebaceous Carcinoma 6 252298 -NCIT:C160980 Head and Neck Neuroendocrine Carcinoma 5 252299 -NCIT:C160981 Head and Neck Small Cell Neuroendocrine Carcinoma 6 252300 -NCIT:C116318 Sinonasal Small Cell Neuroendocrine Carcinoma 7 252301 -NCIT:C35703 Salivary Gland Small Cell Neuroendocrine Carcinoma 7 252302 -NCIT:C5956 Minor Salivary Gland Small Cell Neuroendocrine Carcinoma 8 252303 -NCIT:C6025 Laryngeal Small Cell Neuroendocrine Carcinoma 7 252304 -NCIT:C160982 Head and Neck Large Cell Neuroendocrine Carcinoma 6 252305 -NCIT:C173091 Sinonasal Large Cell Neuroendocrine Carcinoma 7 252306 -NCIT:C173395 Laryngeal Large Cell Neuroendocrine Carcinoma 7 252307 -NCIT:C173650 Salivary Gland Large Cell Neuroendocrine Carcinoma 7 252308 -NCIT:C173089 Sinonasal Neuroendocrine Carcinoma 6 252309 -NCIT:C116318 Sinonasal Small Cell Neuroendocrine Carcinoma 7 252310 -NCIT:C173091 Sinonasal Large Cell Neuroendocrine Carcinoma 7 252311 -NCIT:C173390 Laryngeal Neuroendocrine Carcinoma 6 252312 -NCIT:C173395 Laryngeal Large Cell Neuroendocrine Carcinoma 7 252313 -NCIT:C6025 Laryngeal Small Cell Neuroendocrine Carcinoma 7 252314 -NCIT:C173587 Head and Neck Merkel Cell Carcinoma 6 252315 -NCIT:C173653 Salivary Gland Neuroendocrine Carcinoma 6 252316 -NCIT:C173650 Salivary Gland Large Cell Neuroendocrine Carcinoma 7 252317 -NCIT:C35703 Salivary Gland Small Cell Neuroendocrine Carcinoma 7 252318 -NCIT:C5956 Minor Salivary Gland Small Cell Neuroendocrine Carcinoma 8 252319 -NCIT:C3879 Thyroid Gland Medullary Carcinoma 6 252320 -NCIT:C123905 Childhood Thyroid Gland Medullary Carcinoma 7 252321 -NCIT:C141041 Thyroid Gland Medullary Carcinoma by AJCC v7 Stage 7 252322 -NCIT:C6133 Stage I Thyroid Gland Medullary Carcinoma AJCC v7 8 252323 -NCIT:C6134 Stage II Thyroid Gland Medullary Carcinoma AJCC v7 8 252324 -NCIT:C6135 Stage III Thyroid Gland Medullary Carcinoma AJCC v7 8 252325 -NCIT:C6136 Stage IV Thyroid Gland Medullary Carcinoma AJCC v7 8 252326 -NCIT:C87549 Stage IVA Thyroid Gland Medullary Carcinoma AJCC v7 9 252327 -NCIT:C87550 Stage IVB Thyroid Gland Medullary Carcinoma AJCC v7 9 252328 -NCIT:C87551 Stage IVC Thyroid Gland Medullary Carcinoma AJCC v7 9 252329 -NCIT:C141042 Thyroid Gland Medullary Carcinoma by AJCC v8 Stage 7 252330 -NCIT:C141043 Stage I Thyroid Gland Medullary Carcinoma AJCC v8 8 252331 -NCIT:C141044 Stage II Thyroid Gland Medullary Carcinoma AJCC v8 8 252332 -NCIT:C141045 Stage III Thyroid Gland Medullary Carcinoma AJCC v8 8 252333 -NCIT:C141046 Stage IV Thyroid Gland Medullary Carcinoma AJCC v8 8 252334 -NCIT:C141047 Stage IVA Thyroid Gland Medullary Carcinoma AJCC v8 9 252335 -NCIT:C141048 Stage IVB Thyroid Gland Medullary Carcinoma AJCC v8 9 252336 -NCIT:C141049 Stage IVC Thyroid Gland Medullary Carcinoma AJCC v8 9 252337 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 7 252338 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 8 252339 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 7 252340 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 252341 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 252342 -NCIT:C163974 Unresectable Thyroid Gland Medullary Carcinoma 7 252343 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 8 252344 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 7 252345 -NCIT:C4193 Thyroid Gland Medullary Carcinoma with Amyloid Stroma 7 252346 -NCIT:C46098 Sporadic Thyroid Gland Medullary Carcinoma 7 252347 -NCIT:C46103 Sporadic Thyroid Gland Micromedullary Carcinoma 8 252348 -NCIT:C46099 Hereditary Thyroid Gland Medullary Carcinoma 7 252349 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 8 252350 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 8 252351 -NCIT:C162569 Localized Head and Neck Carcinoma 5 252352 -NCIT:C7826 Localized Parathyroid Gland Carcinoma 6 252353 -NCIT:C165174 Unresectable Head and Neck Carcinoma 5 252354 -NCIT:C129784 Unresectable Thyroid Gland Carcinoma 6 252355 -NCIT:C163974 Unresectable Thyroid Gland Medullary Carcinoma 7 252356 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 8 252357 -NCIT:C168572 Unresectable Differentiated Thyroid Gland Carcinoma 7 252358 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 8 252359 -NCIT:C174571 Unresectable Thyroid Gland Follicular Carcinoma 8 252360 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 9 252361 -NCIT:C170833 Unresectable Thyroid Gland Anaplastic Carcinoma 7 252362 -NCIT:C174569 Unresectable Poorly Differentiated Thyroid Gland Carcinoma 7 252363 -NCIT:C136427 Unresectable Head and Neck Squamous Cell Carcinoma 6 252364 -NCIT:C162833 Unresectable Oropharyngeal Squamous Cell Carcinoma 7 252365 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 8 252366 -NCIT:C172644 Unresectable Oral Cavity Squamous Cell Carcinoma 7 252367 -NCIT:C172645 Unresectable Laryngeal Squamous Cell Carcinoma 7 252368 -NCIT:C172646 Unresectable Hypopharyngeal Squamous Cell Carcinoma 7 252369 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 7 252370 -NCIT:C172651 Unresectable Salivary Gland Squamous Cell Carcinoma 7 252371 -NCIT:C176513 Unresectable Sinonasal Squamous Cell Carcinoma 7 252372 -NCIT:C172648 Unresectable Paranasal Sinus Squamous Cell Carcinoma 8 252373 -NCIT:C176514 Unresectable Nasal Cavity Squamous Cell Carcinoma 8 252374 -NCIT:C165176 Unresectable Nasopharyngeal Carcinoma 6 252375 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 7 252376 -NCIT:C174034 Unresectable Salivary Gland Carcinoma 6 252377 -NCIT:C172651 Unresectable Salivary Gland Squamous Cell Carcinoma 7 252378 -NCIT:C173087 Head and Neck NUT Carcinoma 5 252379 -NCIT:C173088 Sinonasal NUT Carcinoma 6 252380 -NCIT:C190278 Childhood Head and Neck NUT Carcinoma 6 252381 -NCIT:C173588 Head and Neck Heterotopia-Associated Carcinoma 5 252382 -NCIT:C34447 Head and Neck Squamous Cell Carcinoma 5 252383 -NCIT:C102872 Pharyngeal Squamous Cell Carcinoma 6 252384 -NCIT:C167265 Nasopharyngeal Squamous Cell Carcinoma 7 252385 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 8 252386 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 252387 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 252388 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 252389 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 252390 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 252391 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 252392 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 252393 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 252394 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 8 252395 -NCIT:C54360 Nasopharyngeal Basaloid Carcinoma 8 252396 -NCIT:C7373 Nasopharyngeal Nonkeratinizing Carcinoma 8 252397 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 252398 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 252399 -NCIT:C54389 Nasopharyngeal Differentiated Carcinoma 9 252400 -NCIT:C8023 Nasopharyngeal Undifferentiated Carcinoma 9 252401 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 252402 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 10 252403 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 252404 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 252405 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 252406 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 252407 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 252408 -NCIT:C7992 Nasopharyngeal Keratinizing Squamous Cell Carcinoma 8 252409 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 252410 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 9 252411 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 252412 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 252413 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 252414 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 252415 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 252416 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 252417 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 252418 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 252419 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 7 252420 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 8 252421 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 252422 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 252423 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 252424 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 8 252425 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 252426 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 252427 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 252428 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 252429 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 252430 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 8 252431 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 252432 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 252433 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 252434 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 252435 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 252436 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 252437 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 7 252438 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 252439 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 252440 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 252441 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 252442 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 252443 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 252444 -NCIT:C35693 Posterior Pharyngeal Wall Squamous Cell Carcinoma 7 252445 -NCIT:C4043 Hypopharyngeal Squamous Cell Carcinoma 7 252446 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 8 252447 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 8 252448 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 252449 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 252450 -NCIT:C172646 Unresectable Hypopharyngeal Squamous Cell Carcinoma 8 252451 -NCIT:C4943 Pyriform Fossa Squamous Cell Carcinoma 8 252452 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 8 252453 -NCIT:C8185 Postcricoid Squamous Cell Carcinoma 8 252454 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 8 252455 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 8 252456 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 8 252457 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 8 252458 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 252459 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 252460 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 252461 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 252462 -NCIT:C8181 Oropharyngeal Squamous Cell Carcinoma 7 252463 -NCIT:C126750 Oropharyngeal Poorly Differentiated Carcinoma 8 252464 -NCIT:C126751 Oropharyngeal Basaloid Carcinoma 8 252465 -NCIT:C147906 Oropharyngeal p16INK4a-Negative Squamous Cell Carcinoma 8 252466 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 8 252467 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 8 252468 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 252469 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 252470 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 252471 -NCIT:C162787 Resectable Oropharyngeal Squamous Cell Carcinoma 8 252472 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 9 252473 -NCIT:C162833 Unresectable Oropharyngeal Squamous Cell Carcinoma 8 252474 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 9 252475 -NCIT:C173414 Oropharyngeal Human Papillomavirus-Negative Squamous Cell Carcinoma 8 252476 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 8 252477 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 8 252478 -NCIT:C68610 Oropharyngeal Undifferentiated Carcinoma 8 252479 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 9 252480 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 9 252481 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 9 252482 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 9 252483 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 252484 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 252485 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 252486 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 252487 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 9 252488 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 9 252489 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 9 252490 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 9 252491 -NCIT:C8183 Tonsillar Squamous Cell Carcinoma 8 252492 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 9 252493 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 8 252494 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 9 252495 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 8 252496 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 9 252497 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 8 252498 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 9 252499 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 8 252500 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 9 252501 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 252502 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 252503 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 252504 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 9 252505 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 252506 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 9 252507 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 252508 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 9 252509 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 252510 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 252511 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 252512 -NCIT:C87055 Oropharyngeal Human Papillomavirus-Positive Squamous Cell Carcinoma 8 252513 -NCIT:C132012 Resectable Head and Neck Squamous Cell Carcinoma 6 252514 -NCIT:C162787 Resectable Oropharyngeal Squamous Cell Carcinoma 7 252515 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 8 252516 -NCIT:C162943 Resectable Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 252517 -NCIT:C133252 Cutaneous Squamous Cell Carcinoma of the Head and Neck 6 252518 -NCIT:C133253 Cutaneous Squamous Cell Carcinoma of the Head and Neck by AJCC v8 Stage 7 252519 -NCIT:C133255 Stage 0 Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 252520 -NCIT:C133256 Stage I Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 252521 -NCIT:C133257 Stage II Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 252522 -NCIT:C133258 Stage III Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 252523 -NCIT:C133259 Stage IV Cutaneous Squamous Cell Carcinoma of the Head and Neck AJCC v8 8 252524 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 252525 -NCIT:C162943 Resectable Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 252526 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 252527 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 252528 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 252529 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 252530 -NCIT:C6083 External Ear Squamous Cell Carcinoma 7 252531 -NCIT:C133709 Recurrent Head and Neck Squamous Cell Carcinoma 6 252532 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 252533 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 252534 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 252535 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 252536 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 252537 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 252538 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 252539 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 252540 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 252541 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 7 252542 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 252543 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 252544 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 252545 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 252546 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 252547 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 252548 -NCIT:C176682 Locally Recurrent Head and Neck Squamous Cell Carcinoma 7 252549 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 7 252550 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 252551 -NCIT:C136427 Unresectable Head and Neck Squamous Cell Carcinoma 6 252552 -NCIT:C162833 Unresectable Oropharyngeal Squamous Cell Carcinoma 7 252553 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 8 252554 -NCIT:C172644 Unresectable Oral Cavity Squamous Cell Carcinoma 7 252555 -NCIT:C172645 Unresectable Laryngeal Squamous Cell Carcinoma 7 252556 -NCIT:C172646 Unresectable Hypopharyngeal Squamous Cell Carcinoma 7 252557 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 7 252558 -NCIT:C172651 Unresectable Salivary Gland Squamous Cell Carcinoma 7 252559 -NCIT:C176513 Unresectable Sinonasal Squamous Cell Carcinoma 7 252560 -NCIT:C172648 Unresectable Paranasal Sinus Squamous Cell Carcinoma 8 252561 -NCIT:C176514 Unresectable Nasal Cavity Squamous Cell Carcinoma 8 252562 -NCIT:C148152 Refractory Head and Neck Squamous Cell Carcinoma 6 252563 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 7 252564 -NCIT:C148383 Refractory Laryngeal Squamous Cell Carcinoma 7 252565 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 7 252566 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 7 252567 -NCIT:C148401 Refractory Sinonasal Squamous Cell Carcinoma 7 252568 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 252569 -NCIT:C171575 Refractory Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 252570 -NCIT:C148153 Metastatic Head and Neck Squamous Cell Carcinoma 6 252571 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 7 252572 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 252573 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 252574 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 252575 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 252576 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 252577 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 252578 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 252579 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 7 252580 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 8 252581 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 252582 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 7 252583 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 252584 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 252585 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 7 252586 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 7 252587 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 252588 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 252589 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 252590 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 8 252591 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 9 252592 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 8 252593 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 252594 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 8 252595 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 8 252596 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 252597 -NCIT:C162882 Metastatic Sinonasal Squamous Cell Carcinoma 7 252598 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 252599 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 252600 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 252601 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 252602 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 252603 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 252604 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 252605 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 252606 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 252607 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 252608 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 7 252609 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 7 252610 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 8 252611 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 252612 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 252613 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 252614 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 8 252615 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 252616 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 252617 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 252618 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 9 252619 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 10 252620 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 8 252621 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 252622 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 252623 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 8 252624 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 9 252625 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 9 252626 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 9 252627 -NCIT:C162770 ASPH-Positive Head and Neck Squamous Cell Carcinoma 6 252628 -NCIT:C171023 Human Papillomavirus-Related Mucosal Head and Neck Squamous Cell Carcinoma 6 252629 -NCIT:C173078 Sinonasal Human Papillomavirus-Related Carcinoma with Adenoid Cystic-Like Features 7 252630 -NCIT:C87055 Oropharyngeal Human Papillomavirus-Positive Squamous Cell Carcinoma 7 252631 -NCIT:C37290 Head and Neck Basaloid Carcinoma 6 252632 -NCIT:C126751 Oropharyngeal Basaloid Carcinoma 7 252633 -NCIT:C129873 Floor of Mouth Basaloid Squamous Cell Carcinoma 7 252634 -NCIT:C54334 Laryngeal Basaloid Carcinoma 7 252635 -NCIT:C54360 Nasopharyngeal Basaloid Carcinoma 7 252636 -NCIT:C4044 Laryngeal Squamous Cell Carcinoma 6 252637 -NCIT:C148383 Refractory Laryngeal Squamous Cell Carcinoma 7 252638 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 7 252639 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 8 252640 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 8 252641 -NCIT:C172645 Unresectable Laryngeal Squamous Cell Carcinoma 7 252642 -NCIT:C4945 Supraglottic Squamous Cell Carcinoma 7 252643 -NCIT:C181714 Epiglottic Squamous Cell Carcinoma 8 252644 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 9 252645 -NCIT:C8191 Supraglottic Verrucous Carcinoma 8 252646 -NCIT:C54334 Laryngeal Basaloid Carcinoma 7 252647 -NCIT:C54335 Laryngeal Papillary Squamous Cell Carcinoma 7 252648 -NCIT:C54336 Laryngeal Squamous Cell Carcinoma, Spindle Cell Variant 7 252649 -NCIT:C54337 Laryngeal Acantholytic Squamous Cell Carcinoma 7 252650 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 7 252651 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 8 252652 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 8 252653 -NCIT:C8186 Glottic Squamous Cell Carcinoma 7 252654 -NCIT:C8189 Glottis Verrucous Carcinoma 8 252655 -NCIT:C8187 Subglottic Squamous Cell Carcinoma 7 252656 -NCIT:C8190 Subglottic Verrucous Carcinoma 8 252657 -NCIT:C8188 Laryngeal Verrucous Carcinoma 7 252658 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 8 252659 -NCIT:C8189 Glottis Verrucous Carcinoma 8 252660 -NCIT:C8190 Subglottic Verrucous Carcinoma 8 252661 -NCIT:C8191 Supraglottic Verrucous Carcinoma 8 252662 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 252663 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 252664 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 252665 -NCIT:C8244 Stage IV Laryngeal Verrucous Carcinoma AJCC v7 8 252666 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 9 252667 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 9 252668 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 9 252669 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 252670 -NCIT:C8237 Stage I Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 7 252671 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 252672 -NCIT:C8239 Stage II Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 7 252673 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 252674 -NCIT:C8241 Stage III Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 7 252675 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 8 252676 -NCIT:C8243 Stage IV Laryngeal Squamous Cell Carcinoma AJCC v7 7 252677 -NCIT:C6122 Stage IVA Laryngeal Squamous Cell Carcinoma AJCC v7 8 252678 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 9 252679 -NCIT:C6123 Stage IVB Laryngeal Squamous Cell Carcinoma AJCC v7 8 252680 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 9 252681 -NCIT:C6124 Stage IVC Laryngeal Squamous Cell Carcinoma AJCC v7 8 252682 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 9 252683 -NCIT:C8244 Stage IV Laryngeal Verrucous Carcinoma AJCC v7 8 252684 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 9 252685 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 9 252686 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 9 252687 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 7 252688 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 252689 -NCIT:C42690 Lip and Oral Cavity Squamous Cell Carcinoma 6 252690 -NCIT:C115057 Stage I Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 252691 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 252692 -NCIT:C115058 Stage II Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 252693 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 252694 -NCIT:C115059 Stage III Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 252695 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 252696 -NCIT:C115060 Stage IV Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 252697 -NCIT:C115061 Stage IVA Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 252698 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 252699 -NCIT:C115062 Stage IVB Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 252700 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 252701 -NCIT:C115063 Stage IVC Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 252702 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 252703 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 252704 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 252705 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 252706 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 252707 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 252708 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 252709 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 252710 -NCIT:C4042 Lip Squamous Cell Carcinoma 7 252711 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 252712 -NCIT:C4833 Oral Cavity Squamous Cell Carcinoma 7 252713 -NCIT:C129857 Gingival Squamous Cell Carcinoma 8 252714 -NCIT:C129289 Gingival Spindle Cell Carcinoma 9 252715 -NCIT:C8171 Lower Gingival Squamous Cell Carcinoma 9 252716 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 10 252717 -NCIT:C8172 Retromolar Trigone Squamous Cell Carcinoma 9 252718 -NCIT:C8173 Upper Gingival Squamous Cell Carcinoma 9 252719 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 10 252720 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 8 252721 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 252722 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 252723 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 252724 -NCIT:C170774 Alveolar Ridge Squamous Cell Carcinoma 8 252725 -NCIT:C170775 Upper Alveolar Ridge Squamous Cell Carcinoma 9 252726 -NCIT:C170776 Lower Alveolar Ridge Squamous Cell Carcinoma 9 252727 -NCIT:C172644 Unresectable Oral Cavity Squamous Cell Carcinoma 8 252728 -NCIT:C4040 Buccal Mucosa Squamous Cell Carcinoma 8 252729 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 9 252730 -NCIT:C4041 Floor of Mouth Squamous Cell Carcinoma 8 252731 -NCIT:C129873 Floor of Mouth Basaloid Squamous Cell Carcinoma 9 252732 -NCIT:C4648 Tongue Squamous Cell Carcinoma 8 252733 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 252734 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 252735 -NCIT:C4649 Palate Squamous Cell Carcinoma 8 252736 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 252737 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 252738 -NCIT:C54295 Primary Intraosseous Squamous Cell Carcinoma 8 252739 -NCIT:C54303 Primary Intraosseous Squamous Cell Carcinoma Derived From Keratocystic Odontogenic Tumor 9 252740 -NCIT:C7491 Primary Intraosseous Squamous Cell Carcinoma-Solid Type 9 252741 -NCIT:C7498 Keratinizing Primary Intraosseous Squamous Cell Carcinoma-Solid Type 10 252742 -NCIT:C7499 Non-Keratinizing Primary Intraosseous Squamous Cell Carcinoma -Solid Type 10 252743 -NCIT:C7500 Primary Intraosseous Squamous Cell Carcinoma Derived From Odontogenic Cyst 9 252744 -NCIT:C6052 Stage 0 Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 252745 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 252746 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 252747 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 252748 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 252749 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 252750 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 252751 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 252752 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 252753 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 252754 -NCIT:C8174 Oral Cavity Verrucous Carcinoma 8 252755 -NCIT:C179894 Oral Cavity Carcinoma Cuniculatum 9 252756 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 9 252757 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 9 252758 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 9 252759 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 252760 -NCIT:C54283 Head and Neck Keratinizing Squamous Cell Carcinoma 6 252761 -NCIT:C173077 Sinonasal Keratinizing Squamous Cell Carcinoma 7 252762 -NCIT:C54284 Paranasal Sinus Keratinizing Squamous Cell Carcinoma 8 252763 -NCIT:C54285 Nasal Cavity Keratinizing Squamous Cell Carcinoma 8 252764 -NCIT:C6083 External Ear Squamous Cell Carcinoma 7 252765 -NCIT:C6086 Middle Ear Squamous Cell Carcinoma 7 252766 -NCIT:C7498 Keratinizing Primary Intraosseous Squamous Cell Carcinoma-Solid Type 7 252767 -NCIT:C7992 Nasopharyngeal Keratinizing Squamous Cell Carcinoma 7 252768 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 8 252769 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 8 252770 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 8 252771 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 8 252772 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 8 252773 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 8 252774 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 252775 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 252776 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 252777 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 8 252778 -NCIT:C68611 Sinonasal Squamous Cell Carcinoma 6 252779 -NCIT:C115070 Stage I Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 7 252780 -NCIT:C115071 Stage II Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 7 252781 -NCIT:C115072 Stage III Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 7 252782 -NCIT:C115073 Stage IV Sinonasal Squamous Cell Carcinoma AJCC v7 7 252783 -NCIT:C115074 Stage IVA Sinonasal Squamous Cell Carcinoma AJCC v7 8 252784 -NCIT:C115075 Stage IVB Sinonasal Squamous Cell Carcinoma AJCC v7 8 252785 -NCIT:C115076 Stage IVC Sinonasal Squamous Cell Carcinoma AJCC v7 8 252786 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 252787 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 252788 -NCIT:C148401 Refractory Sinonasal Squamous Cell Carcinoma 7 252789 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 252790 -NCIT:C162882 Metastatic Sinonasal Squamous Cell Carcinoma 7 252791 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 252792 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 252793 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 252794 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 252795 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 252796 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 252797 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 252798 -NCIT:C173077 Sinonasal Keratinizing Squamous Cell Carcinoma 7 252799 -NCIT:C54284 Paranasal Sinus Keratinizing Squamous Cell Carcinoma 8 252800 -NCIT:C54285 Nasal Cavity Keratinizing Squamous Cell Carcinoma 8 252801 -NCIT:C173079 Sinonasal Spindle Cell Squamous Cell Carcinoma 7 252802 -NCIT:C176513 Unresectable Sinonasal Squamous Cell Carcinoma 7 252803 -NCIT:C172648 Unresectable Paranasal Sinus Squamous Cell Carcinoma 8 252804 -NCIT:C176514 Unresectable Nasal Cavity Squamous Cell Carcinoma 8 252805 -NCIT:C54287 Sinonasal Non-Keratinizing Squamous Cell Carcinoma 7 252806 -NCIT:C173078 Sinonasal Human Papillomavirus-Related Carcinoma with Adenoid Cystic-Like Features 8 252807 -NCIT:C173080 Sinonasal Lymphoepithelial Carcinoma 8 252808 -NCIT:C8192 Nasal Cavity Squamous Cell Carcinoma 7 252809 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 252810 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 252811 -NCIT:C176514 Unresectable Nasal Cavity Squamous Cell Carcinoma 8 252812 -NCIT:C54285 Nasal Cavity Keratinizing Squamous Cell Carcinoma 8 252813 -NCIT:C8193 Paranasal Sinus Squamous Cell Carcinoma 7 252814 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 252815 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 252816 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 252817 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 252818 -NCIT:C172648 Unresectable Paranasal Sinus Squamous Cell Carcinoma 8 252819 -NCIT:C54284 Paranasal Sinus Keratinizing Squamous Cell Carcinoma 8 252820 -NCIT:C6064 Maxillary Sinus Squamous Cell Carcinoma 8 252821 -NCIT:C6065 Ethmoid Sinus Squamous Cell Carcinoma 8 252822 -NCIT:C6066 Sphenoid Sinus Squamous Cell Carcinoma 8 252823 -NCIT:C6067 Frontal Sinus Squamous Cell Carcinoma 8 252824 -NCIT:C7991 Salivary Gland Squamous Cell Carcinoma 6 252825 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 7 252826 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 252827 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 252828 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 252829 -NCIT:C172651 Unresectable Salivary Gland Squamous Cell Carcinoma 7 252830 -NCIT:C181161 Major Salivary Gland Squamous Cell Carcinoma 7 252831 -NCIT:C5942 Parotid Gland Squamous Cell Carcinoma 8 252832 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 9 252833 -NCIT:C5943 Submandibular Gland Squamous Cell Carcinoma 8 252834 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 9 252835 -NCIT:C5959 Minor Salivary Gland Squamous Cell Carcinoma 7 252836 -NCIT:C8022 Salivary Gland Poorly Differentiated Squamous Cell Carcinoma 7 252837 -NCIT:C54262 Ear Carcinoma 5 252838 -NCIT:C6081 External Ear Carcinoma 6 252839 -NCIT:C4176 Ceruminous Adenocarcinoma 7 252840 -NCIT:C6082 External Ear Basal Cell Carcinoma 7 252841 -NCIT:C6083 External Ear Squamous Cell Carcinoma 7 252842 -NCIT:C6089 Middle Ear Carcinoma 6 252843 -NCIT:C6086 Middle Ear Squamous Cell Carcinoma 7 252844 -NCIT:C6848 Middle Ear Adenocarcinoma 7 252845 -NCIT:C91741 Middle Ear Carcinoma In Situ 7 252846 -NCIT:C54293 Sinonasal Carcinoma 5 252847 -NCIT:C133074 Sinonasal Cancer by AJCC v8 Stage 6 252848 -NCIT:C133076 Stage I Sinonasal Cancer AJCC v8 7 252849 -NCIT:C133077 Stage II Sinonasal Cancer AJCC v8 7 252850 -NCIT:C133078 Stage III Sinonasal Cancer AJCC v8 7 252851 -NCIT:C133079 Stage IV Sinonasal Cancer AJCC v8 7 252852 -NCIT:C133080 Stage IVA Sinonasal Cancer AJCC v8 8 252853 -NCIT:C133081 Stage IVB Sinonasal Cancer AJCC v8 8 252854 -NCIT:C133082 Stage IVC Sinonasal Cancer AJCC v8 8 252855 -NCIT:C87498 Stage 0 Sinonasal Cancer AJCC v6, v7, and v8 7 252856 -NCIT:C4589 Stage 0 Nasal Cavity Cancer AJCC v6, v7, and v8 8 252857 -NCIT:C94768 Stage 0 Paranasal Sinus Cancer AJCC v6, v7, and v8 8 252858 -NCIT:C154324 Sinonasal Poorly Differentiated Carcinoma 6 252859 -NCIT:C173088 Sinonasal NUT Carcinoma 7 252860 -NCIT:C160976 Sinonasal Adenocarcinoma 6 252861 -NCIT:C161007 Sinonasal Adenocarcinoma, Salivary-Type 7 252862 -NCIT:C161008 Sinonasal Adenocarcinoma, Non-Salivary-Type 7 252863 -NCIT:C116316 Sinonasal Adenocarcinoma, Intestinal-Type 8 252864 -NCIT:C160984 Sinonasal Adenocarcinoma, Intestinal-Type with Papillary Pattern 9 252865 -NCIT:C160986 Sinonasal Adenocarcinoma, Intestinal-Type with Colonic Pattern 9 252866 -NCIT:C160987 Sinonasal Adenocarcinoma, Intestinal-Type with Solid Pattern 9 252867 -NCIT:C160995 Sinonasal Adenocarcinoma, Intestinal-Type with Mucinous Pattern 9 252868 -NCIT:C161000 Sinonasal Adenocarcinoma, Intestinal-Type with Mixed Pattern 9 252869 -NCIT:C160977 Sinonasal Adenocarcinoma, Non-Intestinal-Type 8 252870 -NCIT:C6015 Nasal Cavity Adenocarcinoma 7 252871 -NCIT:C6017 Paranasal Sinus Adenocarcinoma 7 252872 -NCIT:C6237 Ethmoid Sinus Adenocarcinoma 8 252873 -NCIT:C6240 Maxillary Sinus Adenocarcinoma 8 252874 -NCIT:C173089 Sinonasal Neuroendocrine Carcinoma 6 252875 -NCIT:C116318 Sinonasal Small Cell Neuroendocrine Carcinoma 7 252876 -NCIT:C173091 Sinonasal Large Cell Neuroendocrine Carcinoma 7 252877 -NCIT:C180670 Low Grade Papillary Schneiderian Carcinoma 6 252878 -NCIT:C54294 Sinonasal Undifferentiated Carcinoma 6 252879 -NCIT:C6014 Paranasal Sinus Carcinoma 6 252880 -NCIT:C118818 Childhood Paranasal Sinus Carcinoma 7 252881 -NCIT:C165563 Locally Advanced Paranasal Sinus Carcinoma 7 252882 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 8 252883 -NCIT:C6006 Stage I Paranasal Sinus Cancer 7 252884 -NCIT:C6007 Stage II Paranasal Sinus Cancer AJCC v6 and v7 7 252885 -NCIT:C6008 Stage III Paranasal Sinus Cancer AJCC v6 and v7 7 252886 -NCIT:C6009 Stage IV Paranasal Sinus Cancer AJCC v7 7 252887 -NCIT:C6070 Stage IVA Paranasal Sinus Cancer AJCC v7 8 252888 -NCIT:C6071 Stage IVB Paranasal Sinus Cancer AJCC v7 8 252889 -NCIT:C6072 Stage IVC Paranasal Sinus Cancer AJCC v7 8 252890 -NCIT:C6017 Paranasal Sinus Adenocarcinoma 7 252891 -NCIT:C6237 Ethmoid Sinus Adenocarcinoma 8 252892 -NCIT:C6240 Maxillary Sinus Adenocarcinoma 8 252893 -NCIT:C6018 Paranasal Sinus Mucoepidermoid Carcinoma 7 252894 -NCIT:C6019 Paranasal Sinus Adenoid Cystic Carcinoma 7 252895 -NCIT:C6238 Ethmoid Sinus Adenoid Cystic Carcinoma 8 252896 -NCIT:C6239 Maxillary Sinus Adenoid Cystic Carcinoma 8 252897 -NCIT:C8193 Paranasal Sinus Squamous Cell Carcinoma 7 252898 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 252899 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 252900 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 252901 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 252902 -NCIT:C172648 Unresectable Paranasal Sinus Squamous Cell Carcinoma 8 252903 -NCIT:C54284 Paranasal Sinus Keratinizing Squamous Cell Carcinoma 8 252904 -NCIT:C6064 Maxillary Sinus Squamous Cell Carcinoma 8 252905 -NCIT:C6065 Ethmoid Sinus Squamous Cell Carcinoma 8 252906 -NCIT:C6066 Sphenoid Sinus Squamous Cell Carcinoma 8 252907 -NCIT:C6067 Frontal Sinus Squamous Cell Carcinoma 8 252908 -NCIT:C9332 Maxillary Sinus Carcinoma 7 252909 -NCIT:C6064 Maxillary Sinus Squamous Cell Carcinoma 8 252910 -NCIT:C6239 Maxillary Sinus Adenoid Cystic Carcinoma 8 252911 -NCIT:C6240 Maxillary Sinus Adenocarcinoma 8 252912 -NCIT:C94768 Stage 0 Paranasal Sinus Cancer AJCC v6, v7, and v8 7 252913 -NCIT:C67558 Recurrent Sinonasal Carcinoma 6 252914 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 252915 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 252916 -NCIT:C68611 Sinonasal Squamous Cell Carcinoma 6 252917 -NCIT:C115070 Stage I Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 7 252918 -NCIT:C115071 Stage II Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 7 252919 -NCIT:C115072 Stage III Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 7 252920 -NCIT:C115073 Stage IV Sinonasal Squamous Cell Carcinoma AJCC v7 7 252921 -NCIT:C115074 Stage IVA Sinonasal Squamous Cell Carcinoma AJCC v7 8 252922 -NCIT:C115075 Stage IVB Sinonasal Squamous Cell Carcinoma AJCC v7 8 252923 -NCIT:C115076 Stage IVC Sinonasal Squamous Cell Carcinoma AJCC v7 8 252924 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 252925 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 252926 -NCIT:C148401 Refractory Sinonasal Squamous Cell Carcinoma 7 252927 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 252928 -NCIT:C162882 Metastatic Sinonasal Squamous Cell Carcinoma 7 252929 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 8 252930 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 252931 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 252932 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 252933 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 252934 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 252935 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 252936 -NCIT:C173077 Sinonasal Keratinizing Squamous Cell Carcinoma 7 252937 -NCIT:C54284 Paranasal Sinus Keratinizing Squamous Cell Carcinoma 8 252938 -NCIT:C54285 Nasal Cavity Keratinizing Squamous Cell Carcinoma 8 252939 -NCIT:C173079 Sinonasal Spindle Cell Squamous Cell Carcinoma 7 252940 -NCIT:C176513 Unresectable Sinonasal Squamous Cell Carcinoma 7 252941 -NCIT:C172648 Unresectable Paranasal Sinus Squamous Cell Carcinoma 8 252942 -NCIT:C176514 Unresectable Nasal Cavity Squamous Cell Carcinoma 8 252943 -NCIT:C54287 Sinonasal Non-Keratinizing Squamous Cell Carcinoma 7 252944 -NCIT:C173078 Sinonasal Human Papillomavirus-Related Carcinoma with Adenoid Cystic-Like Features 8 252945 -NCIT:C173080 Sinonasal Lymphoepithelial Carcinoma 8 252946 -NCIT:C8192 Nasal Cavity Squamous Cell Carcinoma 7 252947 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 252948 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 252949 -NCIT:C176514 Unresectable Nasal Cavity Squamous Cell Carcinoma 8 252950 -NCIT:C54285 Nasal Cavity Keratinizing Squamous Cell Carcinoma 8 252951 -NCIT:C8193 Paranasal Sinus Squamous Cell Carcinoma 7 252952 -NCIT:C148386 Refractory Paranasal Sinus Squamous Cell Carcinoma 8 252953 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 252954 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 8 252955 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 252956 -NCIT:C172648 Unresectable Paranasal Sinus Squamous Cell Carcinoma 8 252957 -NCIT:C54284 Paranasal Sinus Keratinizing Squamous Cell Carcinoma 8 252958 -NCIT:C6064 Maxillary Sinus Squamous Cell Carcinoma 8 252959 -NCIT:C6065 Ethmoid Sinus Squamous Cell Carcinoma 8 252960 -NCIT:C6066 Sphenoid Sinus Squamous Cell Carcinoma 8 252961 -NCIT:C6067 Frontal Sinus Squamous Cell Carcinoma 8 252962 -NCIT:C90528 Sinonasal Cancer by AJCC v6 Stage 6 252963 -NCIT:C67554 Stage I Sinonasal Cancer AJCC v6 and v7 7 252964 -NCIT:C115070 Stage I Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 8 252965 -NCIT:C6006 Stage I Paranasal Sinus Cancer 8 252966 -NCIT:C6013 Stage I Nasal Cavity Cancer AJCC v6 and v7 8 252967 -NCIT:C67555 Stage II Sinonasal Cancer AJCC v6 and v7 7 252968 -NCIT:C115071 Stage II Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 8 252969 -NCIT:C6007 Stage II Paranasal Sinus Cancer AJCC v6 and v7 8 252970 -NCIT:C6012 Stage II Nasal Cavity Cancer AJCC v6 and v7 8 252971 -NCIT:C67556 Stage III Sinonasal Cancer AJCC v6 and v7 7 252972 -NCIT:C115072 Stage III Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 8 252973 -NCIT:C6008 Stage III Paranasal Sinus Cancer AJCC v6 and v7 8 252974 -NCIT:C6011 Stage III Nasal Cavity Cancer AJCC v6 and v7 8 252975 -NCIT:C67557 Stage IV Sinonasal Cancer AJCC v6 7 252976 -NCIT:C87498 Stage 0 Sinonasal Cancer AJCC v6, v7, and v8 7 252977 -NCIT:C4589 Stage 0 Nasal Cavity Cancer AJCC v6, v7, and v8 8 252978 -NCIT:C94768 Stage 0 Paranasal Sinus Cancer AJCC v6, v7, and v8 8 252979 -NCIT:C91255 Sinonasal Cancer by AJCC v7 Stage 6 252980 -NCIT:C67554 Stage I Sinonasal Cancer AJCC v6 and v7 7 252981 -NCIT:C115070 Stage I Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 8 252982 -NCIT:C6006 Stage I Paranasal Sinus Cancer 8 252983 -NCIT:C6013 Stage I Nasal Cavity Cancer AJCC v6 and v7 8 252984 -NCIT:C67555 Stage II Sinonasal Cancer AJCC v6 and v7 7 252985 -NCIT:C115071 Stage II Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 8 252986 -NCIT:C6007 Stage II Paranasal Sinus Cancer AJCC v6 and v7 8 252987 -NCIT:C6012 Stage II Nasal Cavity Cancer AJCC v6 and v7 8 252988 -NCIT:C67556 Stage III Sinonasal Cancer AJCC v6 and v7 7 252989 -NCIT:C115072 Stage III Sinonasal Squamous Cell Carcinoma AJCC v6 and v7 8 252990 -NCIT:C6008 Stage III Paranasal Sinus Cancer AJCC v6 and v7 8 252991 -NCIT:C6011 Stage III Nasal Cavity Cancer AJCC v6 and v7 8 252992 -NCIT:C87498 Stage 0 Sinonasal Cancer AJCC v6, v7, and v8 7 252993 -NCIT:C4589 Stage 0 Nasal Cavity Cancer AJCC v6, v7, and v8 8 252994 -NCIT:C94768 Stage 0 Paranasal Sinus Cancer AJCC v6, v7, and v8 8 252995 -NCIT:C89117 Stage IV Sinonasal Cancer AJCC v7 7 252996 -NCIT:C115073 Stage IV Sinonasal Squamous Cell Carcinoma AJCC v7 8 252997 -NCIT:C115074 Stage IVA Sinonasal Squamous Cell Carcinoma AJCC v7 9 252998 -NCIT:C115075 Stage IVB Sinonasal Squamous Cell Carcinoma AJCC v7 9 252999 -NCIT:C115076 Stage IVC Sinonasal Squamous Cell Carcinoma AJCC v7 9 253000 -NCIT:C6009 Stage IV Paranasal Sinus Cancer AJCC v7 8 253001 -NCIT:C6070 Stage IVA Paranasal Sinus Cancer AJCC v7 9 253002 -NCIT:C6071 Stage IVB Paranasal Sinus Cancer AJCC v7 9 253003 -NCIT:C6072 Stage IVC Paranasal Sinus Cancer AJCC v7 9 253004 -NCIT:C6010 Stage IV Nasal Cavity Cancer 8 253005 -NCIT:C87501 Stage IVA Sinonasal Cancer AJCC v7 8 253006 -NCIT:C115074 Stage IVA Sinonasal Squamous Cell Carcinoma AJCC v7 9 253007 -NCIT:C6070 Stage IVA Paranasal Sinus Cancer AJCC v7 9 253008 -NCIT:C87502 Stage IVB Sinonasal Cancer AJCC v7 8 253009 -NCIT:C115075 Stage IVB Sinonasal Squamous Cell Carcinoma AJCC v7 9 253010 -NCIT:C6071 Stage IVB Paranasal Sinus Cancer AJCC v7 9 253011 -NCIT:C87503 Stage IVC Sinonasal Cancer AJCC v7 8 253012 -NCIT:C115076 Stage IVC Sinonasal Squamous Cell Carcinoma AJCC v7 9 253013 -NCIT:C6072 Stage IVC Paranasal Sinus Cancer AJCC v7 9 253014 -NCIT:C9336 Nasal Cavity Carcinoma 6 253015 -NCIT:C118817 Childhood Nasal Cavity Carcinoma 7 253016 -NCIT:C27389 Carcinoma Arising in Nasal Papillomatosis 7 253017 -NCIT:C4589 Stage 0 Nasal Cavity Cancer AJCC v6, v7, and v8 7 253018 -NCIT:C6010 Stage IV Nasal Cavity Cancer 7 253019 -NCIT:C6011 Stage III Nasal Cavity Cancer AJCC v6 and v7 7 253020 -NCIT:C6012 Stage II Nasal Cavity Cancer AJCC v6 and v7 7 253021 -NCIT:C6013 Stage I Nasal Cavity Cancer AJCC v6 and v7 7 253022 -NCIT:C6015 Nasal Cavity Adenocarcinoma 7 253023 -NCIT:C8192 Nasal Cavity Squamous Cell Carcinoma 7 253024 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 8 253025 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 9 253026 -NCIT:C176514 Unresectable Nasal Cavity Squamous Cell Carcinoma 8 253027 -NCIT:C54285 Nasal Cavity Keratinizing Squamous Cell Carcinoma 8 253028 -NCIT:C6077 Neck Carcinoma 5 253029 -NCIT:C35506 Throat Carcinoma 6 253030 -NCIT:C4855 Laryngeal Carcinoma 7 253031 -NCIT:C118811 Childhood Laryngeal Carcinoma 8 253032 -NCIT:C133156 Laryngeal Cancer by AJCC v8 Stage 8 253033 -NCIT:C133158 Stage I Laryngeal Cancer AJCC v8 9 253034 -NCIT:C133159 Stage II Laryngeal Cancer AJCC v8 9 253035 -NCIT:C133160 Stage III Laryngeal Cancer AJCC v8 9 253036 -NCIT:C133161 Stage IV Laryngeal Cancer AJCC v8 9 253037 -NCIT:C133162 Stage IVA Laryngeal Cancer AJCC v8 10 253038 -NCIT:C133163 Stage IVB Laryngeal Cancer AJCC v8 10 253039 -NCIT:C133164 Stage IVC Laryngeal Cancer AJCC v8 10 253040 -NCIT:C9100 Stage 0 Laryngeal Cancer AJCC v6, v7, and V8 9 253041 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 253042 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 11 253043 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 11 253044 -NCIT:C156085 Metastatic Laryngeal Carcinoma 8 253045 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 9 253046 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 10 253047 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 10 253048 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 9 253049 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 10 253050 -NCIT:C173390 Laryngeal Neuroendocrine Carcinoma 8 253051 -NCIT:C173395 Laryngeal Large Cell Neuroendocrine Carcinoma 9 253052 -NCIT:C6025 Laryngeal Small Cell Neuroendocrine Carcinoma 9 253053 -NCIT:C27929 Alcohol-Related Laryngeal Carcinoma 8 253054 -NCIT:C4034 Recurrent Laryngeal Carcinoma 8 253055 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 9 253056 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 10 253057 -NCIT:C4044 Laryngeal Squamous Cell Carcinoma 8 253058 -NCIT:C148383 Refractory Laryngeal Squamous Cell Carcinoma 9 253059 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 9 253060 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 10 253061 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 10 253062 -NCIT:C172645 Unresectable Laryngeal Squamous Cell Carcinoma 9 253063 -NCIT:C4945 Supraglottic Squamous Cell Carcinoma 9 253064 -NCIT:C181714 Epiglottic Squamous Cell Carcinoma 10 253065 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 11 253066 -NCIT:C8191 Supraglottic Verrucous Carcinoma 10 253067 -NCIT:C54334 Laryngeal Basaloid Carcinoma 9 253068 -NCIT:C54335 Laryngeal Papillary Squamous Cell Carcinoma 9 253069 -NCIT:C54336 Laryngeal Squamous Cell Carcinoma, Spindle Cell Variant 9 253070 -NCIT:C54337 Laryngeal Acantholytic Squamous Cell Carcinoma 9 253071 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 9 253072 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 10 253073 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 10 253074 -NCIT:C8186 Glottic Squamous Cell Carcinoma 9 253075 -NCIT:C8189 Glottis Verrucous Carcinoma 10 253076 -NCIT:C8187 Subglottic Squamous Cell Carcinoma 9 253077 -NCIT:C8190 Subglottic Verrucous Carcinoma 10 253078 -NCIT:C8188 Laryngeal Verrucous Carcinoma 9 253079 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 10 253080 -NCIT:C8189 Glottis Verrucous Carcinoma 10 253081 -NCIT:C8190 Subglottic Verrucous Carcinoma 10 253082 -NCIT:C8191 Supraglottic Verrucous Carcinoma 10 253083 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 253084 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 253085 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 253086 -NCIT:C8244 Stage IV Laryngeal Verrucous Carcinoma AJCC v7 10 253087 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 11 253088 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 11 253089 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 11 253090 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 10 253091 -NCIT:C8237 Stage I Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 9 253092 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 253093 -NCIT:C8239 Stage II Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 9 253094 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 253095 -NCIT:C8241 Stage III Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 9 253096 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 253097 -NCIT:C8243 Stage IV Laryngeal Squamous Cell Carcinoma AJCC v7 9 253098 -NCIT:C6122 Stage IVA Laryngeal Squamous Cell Carcinoma AJCC v7 10 253099 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 11 253100 -NCIT:C6123 Stage IVB Laryngeal Squamous Cell Carcinoma AJCC v7 10 253101 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 11 253102 -NCIT:C6124 Stage IVC Laryngeal Squamous Cell Carcinoma AJCC v7 10 253103 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 11 253104 -NCIT:C8244 Stage IV Laryngeal Verrucous Carcinoma AJCC v7 10 253105 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 11 253106 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 11 253107 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 11 253108 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 9 253109 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 10 253110 -NCIT:C4923 Glottis Carcinoma 8 253111 -NCIT:C8186 Glottic Squamous Cell Carcinoma 9 253112 -NCIT:C8189 Glottis Verrucous Carcinoma 10 253113 -NCIT:C54338 Laryngeal Adenosquamous Carcinoma 8 253114 -NCIT:C54339 Laryngeal Undifferentiated Carcinoma 8 253115 -NCIT:C54341 Laryngeal Lymphoepithelial Carcinoma 9 253116 -NCIT:C54342 Laryngeal Giant Cell Carcinoma 9 253117 -NCIT:C5972 Subglottic Carcinoma 8 253118 -NCIT:C8187 Subglottic Squamous Cell Carcinoma 9 253119 -NCIT:C8190 Subglottic Verrucous Carcinoma 10 253120 -NCIT:C5973 Supraglottic Carcinoma 8 253121 -NCIT:C35697 Epiglottic Carcinoma 9 253122 -NCIT:C181714 Epiglottic Squamous Cell Carcinoma 10 253123 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 11 253124 -NCIT:C4945 Supraglottic Squamous Cell Carcinoma 9 253125 -NCIT:C181714 Epiglottic Squamous Cell Carcinoma 10 253126 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 11 253127 -NCIT:C8191 Supraglottic Verrucous Carcinoma 10 253128 -NCIT:C90527 Laryngeal Cancer by AJCC v6 Stage 8 253129 -NCIT:C6868 Stage IV Laryngeal Cancer AJCC v6 9 253130 -NCIT:C8041 Stage I Laryngeal Cancer AJCC v6 and v7 9 253131 -NCIT:C8237 Stage I Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 10 253132 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 11 253133 -NCIT:C8042 Stage II Laryngeal Cancer AJCC v6 and v7 9 253134 -NCIT:C8239 Stage II Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 10 253135 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 11 253136 -NCIT:C8043 Stage III Laryngeal Cancer AJCC v6 and v7 9 253137 -NCIT:C8241 Stage III Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 10 253138 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 11 253139 -NCIT:C9100 Stage 0 Laryngeal Cancer AJCC v6, v7, and V8 9 253140 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 253141 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 11 253142 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 11 253143 -NCIT:C91256 Laryngeal Cancer by AJCC v7 Stage 8 253144 -NCIT:C8041 Stage I Laryngeal Cancer AJCC v6 and v7 9 253145 -NCIT:C8237 Stage I Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 10 253146 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 11 253147 -NCIT:C8042 Stage II Laryngeal Cancer AJCC v6 and v7 9 253148 -NCIT:C8239 Stage II Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 10 253149 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 11 253150 -NCIT:C8043 Stage III Laryngeal Cancer AJCC v6 and v7 9 253151 -NCIT:C8241 Stage III Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 10 253152 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 11 253153 -NCIT:C89091 Stage IV Laryngeal Cancer AJCC v7 9 253154 -NCIT:C6003 Stage IVC Laryngeal Cancer AJCC v7 10 253155 -NCIT:C6124 Stage IVC Laryngeal Squamous Cell Carcinoma AJCC v7 11 253156 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 12 253157 -NCIT:C6004 Stage IVB Laryngeal Cancer AJCC v7 10 253158 -NCIT:C6123 Stage IVB Laryngeal Squamous Cell Carcinoma AJCC v7 11 253159 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 12 253160 -NCIT:C6005 Stage IVA Laryngeal Cancer AJCC v7 10 253161 -NCIT:C6122 Stage IVA Laryngeal Squamous Cell Carcinoma AJCC v7 11 253162 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 12 253163 -NCIT:C8243 Stage IV Laryngeal Squamous Cell Carcinoma AJCC v7 10 253164 -NCIT:C6122 Stage IVA Laryngeal Squamous Cell Carcinoma AJCC v7 11 253165 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 12 253166 -NCIT:C6123 Stage IVB Laryngeal Squamous Cell Carcinoma AJCC v7 11 253167 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 12 253168 -NCIT:C6124 Stage IVC Laryngeal Squamous Cell Carcinoma AJCC v7 11 253169 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 12 253170 -NCIT:C8244 Stage IV Laryngeal Verrucous Carcinoma AJCC v7 11 253171 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 12 253172 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 12 253173 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 12 253174 -NCIT:C9100 Stage 0 Laryngeal Cancer AJCC v6, v7, and V8 9 253175 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 253176 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 11 253177 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 11 253178 -NCIT:C9462 Laryngeal Adenoid Cystic Carcinoma 8 253179 -NCIT:C9463 Laryngeal Mucoepidermoid Carcinoma 8 253180 -NCIT:C9466 Pharyngeal Carcinoma 7 253181 -NCIT:C102872 Pharyngeal Squamous Cell Carcinoma 8 253182 -NCIT:C167265 Nasopharyngeal Squamous Cell Carcinoma 9 253183 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 10 253184 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 253185 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 253186 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 11 253187 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 11 253188 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 253189 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 10 253190 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 253191 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 11 253192 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 10 253193 -NCIT:C54360 Nasopharyngeal Basaloid Carcinoma 10 253194 -NCIT:C7373 Nasopharyngeal Nonkeratinizing Carcinoma 10 253195 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 11 253196 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 253197 -NCIT:C54389 Nasopharyngeal Differentiated Carcinoma 11 253198 -NCIT:C8023 Nasopharyngeal Undifferentiated Carcinoma 11 253199 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 253200 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 12 253201 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 12 253202 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 12 253203 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 12 253204 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 12 253205 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 12 253206 -NCIT:C7992 Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 253207 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 253208 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 11 253209 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 253210 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 253211 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 253212 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 253213 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 253214 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 253215 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 253216 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 253217 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 9 253218 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 10 253219 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 253220 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 253221 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 253222 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 10 253223 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 253224 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 253225 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 11 253226 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 11 253227 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 253228 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 10 253229 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 253230 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 253231 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 10 253232 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 253233 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 253234 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 253235 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 9 253236 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 10 253237 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 253238 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 11 253239 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 10 253240 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 11 253241 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 10 253242 -NCIT:C35693 Posterior Pharyngeal Wall Squamous Cell Carcinoma 9 253243 -NCIT:C4043 Hypopharyngeal Squamous Cell Carcinoma 9 253244 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 10 253245 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 10 253246 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 253247 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 253248 -NCIT:C172646 Unresectable Hypopharyngeal Squamous Cell Carcinoma 10 253249 -NCIT:C4943 Pyriform Fossa Squamous Cell Carcinoma 10 253250 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 253251 -NCIT:C8185 Postcricoid Squamous Cell Carcinoma 10 253252 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 253253 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 253254 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 253255 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 253256 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 253257 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 253258 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 253259 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 10 253260 -NCIT:C8181 Oropharyngeal Squamous Cell Carcinoma 9 253261 -NCIT:C126750 Oropharyngeal Poorly Differentiated Carcinoma 10 253262 -NCIT:C126751 Oropharyngeal Basaloid Carcinoma 10 253263 -NCIT:C147906 Oropharyngeal p16INK4a-Negative Squamous Cell Carcinoma 10 253264 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 10 253265 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 10 253266 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 253267 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 253268 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 253269 -NCIT:C162787 Resectable Oropharyngeal Squamous Cell Carcinoma 10 253270 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 11 253271 -NCIT:C162833 Unresectable Oropharyngeal Squamous Cell Carcinoma 10 253272 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 11 253273 -NCIT:C173414 Oropharyngeal Human Papillomavirus-Negative Squamous Cell Carcinoma 10 253274 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 10 253275 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 253276 -NCIT:C68610 Oropharyngeal Undifferentiated Carcinoma 10 253277 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 253278 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 253279 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 253280 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 253281 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 253282 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 253283 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 253284 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 11 253285 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 253286 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 11 253287 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 11 253288 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 11 253289 -NCIT:C8183 Tonsillar Squamous Cell Carcinoma 10 253290 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 11 253291 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 253292 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 253293 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 253294 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 253295 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 253296 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 253297 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 253298 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 253299 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 253300 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 253301 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 253302 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 253303 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 253304 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 253305 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 253306 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 253307 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 253308 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 10 253309 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 11 253310 -NCIT:C87055 Oropharyngeal Human Papillomavirus-Positive Squamous Cell Carcinoma 10 253311 -NCIT:C132814 Pharyngeal Carcinoma by AJCC v8 Stage 8 253312 -NCIT:C132816 Nasopharyngeal Carcinoma by AJCC v8 Stage 9 253313 -NCIT:C132817 Stage I Nasopharyngeal Carcinoma AJCC v8 10 253314 -NCIT:C132818 Stage II Nasopharyngeal Carcinoma AJCC v8 10 253315 -NCIT:C132819 Stage III Nasopharyngeal Carcinoma AJCC v8 10 253316 -NCIT:C132820 Stage IV Nasopharyngeal Carcinoma AJCC v8 10 253317 -NCIT:C132821 Stage IVA Nasopharyngeal Carcinoma AJCC v8 11 253318 -NCIT:C132822 Stage IVB Nasopharyngeal Carcinoma AJCC v8 11 253319 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 10 253320 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 11 253321 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 11 253322 -NCIT:C132882 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Stage 9 253323 -NCIT:C132883 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Clinical Stage 10 253324 -NCIT:C132885 Clinical Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 253325 -NCIT:C132886 Clinical Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 253326 -NCIT:C132891 Clinical Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 253327 -NCIT:C132893 Clinical Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 253328 -NCIT:C132884 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Pathologic Stage 10 253329 -NCIT:C132898 Pathologic Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 253330 -NCIT:C132899 Pathologic Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 253331 -NCIT:C132900 Pathologic Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 253332 -NCIT:C132901 Pathologic Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 253333 -NCIT:C132994 Oropharyngeal (p16-Negative) Carcinoma by AJCC v8 Stage 9 253334 -NCIT:C132995 Stage 0 Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 253335 -NCIT:C132996 Stage I Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 253336 -NCIT:C132997 Stage II Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 253337 -NCIT:C132998 Stage III Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 253338 -NCIT:C132999 Stage IV Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 253339 -NCIT:C133000 Stage IVA Oropharyngeal (p16-Negative) Carcinoma AJCC v8 11 253340 -NCIT:C133001 Stage IVB Oropharyngeal (p16-Negative) Carcinoma AJCC v8 11 253341 -NCIT:C133002 Stage IVC Oropharyngeal (p16-Negative) Carcinoma AJCC v8 11 253342 -NCIT:C133003 Hypopharyngeal Carcinoma by AJCC v8 Stage 9 253343 -NCIT:C133005 Stage I Hypopharyngeal Carcinoma AJCC v8 10 253344 -NCIT:C133006 Stage II Hypopharyngeal Carcinoma AJCC v8 10 253345 -NCIT:C133007 Stage III Hypopharyngeal Carcinoma AJCC v8 10 253346 -NCIT:C133008 Stage IV Hypopharyngeal Carcinoma AJCC v8 10 253347 -NCIT:C133009 Stage IVA Hypopharyngeal Carcinoma AJCC v8 11 253348 -NCIT:C133010 Stage IVB Hypopharyngeal Carcinoma AJCC v8 11 253349 -NCIT:C133011 Stage IVC Hypopharyngeal Carcinoma AJCC v8 11 253350 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 10 253351 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 11 253352 -NCIT:C156080 Metastatic Pharyngeal Carcinoma 8 253353 -NCIT:C156079 Metastatic Nasopharyngeal Carcinoma 9 253354 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 10 253355 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 253356 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 253357 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 11 253358 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 11 253359 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 253360 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 10 253361 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 253362 -NCIT:C156081 Metastatic Hypopharyngeal Carcinoma 9 253363 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 10 253364 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 253365 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 253366 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 10 253367 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 253368 -NCIT:C156082 Metastatic Oropharyngeal Carcinoma 9 253369 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 10 253370 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 253371 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 253372 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 253373 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 10 253374 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 253375 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 253376 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 10 253377 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 253378 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 9 253379 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 253380 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 10 253381 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 253382 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 253383 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 10 253384 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 253385 -NCIT:C170784 Advanced Pharyngeal Carcinoma 9 253386 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 10 253387 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 253388 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 10 253389 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 253390 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 253391 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 253392 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 10 253393 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 253394 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 9 253395 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 10 253396 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 253397 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 253398 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 253399 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 10 253400 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 253401 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 253402 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 11 253403 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 11 253404 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 253405 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 10 253406 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 253407 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 253408 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 10 253409 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 253410 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 253411 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 253412 -NCIT:C35692 Posterior Pharyngeal Wall Carcinoma 8 253413 -NCIT:C35693 Posterior Pharyngeal Wall Squamous Cell Carcinoma 9 253414 -NCIT:C3871 Nasopharyngeal Carcinoma 8 253415 -NCIT:C132816 Nasopharyngeal Carcinoma by AJCC v8 Stage 9 253416 -NCIT:C132817 Stage I Nasopharyngeal Carcinoma AJCC v8 10 253417 -NCIT:C132818 Stage II Nasopharyngeal Carcinoma AJCC v8 10 253418 -NCIT:C132819 Stage III Nasopharyngeal Carcinoma AJCC v8 10 253419 -NCIT:C132820 Stage IV Nasopharyngeal Carcinoma AJCC v8 10 253420 -NCIT:C132821 Stage IVA Nasopharyngeal Carcinoma AJCC v8 11 253421 -NCIT:C132822 Stage IVB Nasopharyngeal Carcinoma AJCC v8 11 253422 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 10 253423 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 11 253424 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 11 253425 -NCIT:C148434 Refractory Nasopharyngeal Carcinoma 9 253426 -NCIT:C156079 Metastatic Nasopharyngeal Carcinoma 9 253427 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 10 253428 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 253429 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 253430 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 11 253431 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 11 253432 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 253433 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 10 253434 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 253435 -NCIT:C165176 Unresectable Nasopharyngeal Carcinoma 9 253436 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 10 253437 -NCIT:C167265 Nasopharyngeal Squamous Cell Carcinoma 9 253438 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 10 253439 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 253440 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 253441 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 11 253442 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 11 253443 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 253444 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 10 253445 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 253446 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 11 253447 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 10 253448 -NCIT:C54360 Nasopharyngeal Basaloid Carcinoma 10 253449 -NCIT:C7373 Nasopharyngeal Nonkeratinizing Carcinoma 10 253450 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 11 253451 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 253452 -NCIT:C54389 Nasopharyngeal Differentiated Carcinoma 11 253453 -NCIT:C8023 Nasopharyngeal Undifferentiated Carcinoma 11 253454 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 253455 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 12 253456 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 12 253457 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 12 253458 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 12 253459 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 12 253460 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 12 253461 -NCIT:C7992 Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 253462 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 253463 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 11 253464 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 253465 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 253466 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 253467 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 253468 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 253469 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 253470 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 253471 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 253472 -NCIT:C173340 Nasopharyngeal Adenoid Cystic Carcinoma 9 253473 -NCIT:C190276 Childhood Nasopharyngeal Carcinoma 9 253474 -NCIT:C54400 Nasopharyngeal Papillary Adenocarcinoma 9 253475 -NCIT:C90522 Nasopharyngeal Carcinoma by AJCC v6 Stage 9 253476 -NCIT:C7395 Stage I Nasopharyngeal Carcinoma AJCC v6 10 253477 -NCIT:C7396 Stage III Nasopharyngeal Carcinoma AJCC v6 10 253478 -NCIT:C7397 Stage IV Nasopharyngeal Carcinoma AJCC v6 10 253479 -NCIT:C7920 Stage II Nasopharyngeal Carcinoma AJCC v6 10 253480 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 10 253481 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 11 253482 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 11 253483 -NCIT:C91244 Nasopharyngeal Carcinoma by AJCC v7 Stage 9 253484 -NCIT:C88981 Stage I Nasopharyngeal Carcinoma AJCC v7 10 253485 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 253486 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 253487 -NCIT:C88982 Stage II Nasopharyngeal Carcinoma AJCC v7 10 253488 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 253489 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 253490 -NCIT:C88983 Stage III Nasopharyngeal Carcinoma AJCC v7 10 253491 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 253492 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 253493 -NCIT:C88984 Stage IV Nasopharyngeal Carcinoma AJCC v7 10 253494 -NCIT:C5995 Stage IVC Nasopharyngeal Carcinoma AJCC v7 11 253495 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 253496 -NCIT:C5996 Stage IVB Nasopharyngeal Carcinoma AJCC v7 11 253497 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 253498 -NCIT:C5997 Stage IVA Nasopharyngeal Carcinoma AJCC v7 11 253499 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 253500 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 253501 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 253502 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 253503 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 253504 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 253505 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 10 253506 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 11 253507 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 11 253508 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 9 253509 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 10 253510 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 253511 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 11 253512 -NCIT:C4942 Stage 0 Pharyngeal Cancer 8 253513 -NCIT:C132995 Stage 0 Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 253514 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 9 253515 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 253516 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 9 253517 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 10 253518 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 253519 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 9 253520 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 253521 -NCIT:C5103 Recurrent Pharyngeal Carcinoma 8 253522 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 9 253523 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 10 253524 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 253525 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 11 253526 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 10 253527 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 11 253528 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 10 253529 -NCIT:C8051 Recurrent Oropharyngeal Carcinoma 9 253530 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 10 253531 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 11 253532 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 9 253533 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 10 253534 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 253535 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 11 253536 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 9 253537 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 10 253538 -NCIT:C5818 Pharyngeal Adenoid Cystic Carcinoma 8 253539 -NCIT:C173340 Nasopharyngeal Adenoid Cystic Carcinoma 9 253540 -NCIT:C6241 Oropharyngeal Adenoid Cystic Carcinoma 9 253541 -NCIT:C8768 Stage I Pharyngeal Cancer 8 253542 -NCIT:C132817 Stage I Nasopharyngeal Carcinoma AJCC v8 9 253543 -NCIT:C132885 Clinical Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 9 253544 -NCIT:C132898 Pathologic Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 9 253545 -NCIT:C132996 Stage I Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 253546 -NCIT:C133005 Stage I Hypopharyngeal Carcinoma AJCC v8 9 253547 -NCIT:C7395 Stage I Nasopharyngeal Carcinoma AJCC v6 9 253548 -NCIT:C8038 Stage I Hypopharyngeal Carcinoma AJCC v6 9 253549 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 9 253550 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 253551 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 253552 -NCIT:C88981 Stage I Nasopharyngeal Carcinoma AJCC v7 9 253553 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 253554 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 253555 -NCIT:C89045 Stage I Hypopharyngeal Carcinoma AJCC v7 9 253556 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 253557 -NCIT:C8769 Stage II Pharyngeal Cancer 8 253558 -NCIT:C132818 Stage II Nasopharyngeal Carcinoma AJCC v8 9 253559 -NCIT:C132886 Clinical Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 9 253560 -NCIT:C132899 Pathologic Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 9 253561 -NCIT:C132997 Stage II Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 253562 -NCIT:C133006 Stage II Hypopharyngeal Carcinoma AJCC v8 9 253563 -NCIT:C7920 Stage II Nasopharyngeal Carcinoma AJCC v6 9 253564 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 9 253565 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 253566 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 9 253567 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 253568 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 253569 -NCIT:C88982 Stage II Nasopharyngeal Carcinoma AJCC v7 9 253570 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 253571 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 253572 -NCIT:C8770 Stage III Pharyngeal Cancer 8 253573 -NCIT:C132819 Stage III Nasopharyngeal Carcinoma AJCC v8 9 253574 -NCIT:C132891 Clinical Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 9 253575 -NCIT:C132900 Pathologic Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 9 253576 -NCIT:C132998 Stage III Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 253577 -NCIT:C133007 Stage III Hypopharyngeal Carcinoma AJCC v8 9 253578 -NCIT:C7396 Stage III Nasopharyngeal Carcinoma AJCC v6 9 253579 -NCIT:C8040 Stage III Hypopharyngeal Carcinoma AJCC v6 9 253580 -NCIT:C8050 Stage III Oropharyngeal Carcinoma AJCC v6 9 253581 -NCIT:C88983 Stage III Nasopharyngeal Carcinoma AJCC v7 9 253582 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 253583 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 253584 -NCIT:C89021 Stage III Oropharyngeal Carcinoma AJCC v7 9 253585 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 253586 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 253587 -NCIT:C89046 Stage III Hypopharyngeal Carcinoma AJCC v7 9 253588 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 253589 -NCIT:C8771 Stage IV Pharyngeal Cancer 8 253590 -NCIT:C132820 Stage IV Nasopharyngeal Carcinoma AJCC v8 9 253591 -NCIT:C132821 Stage IVA Nasopharyngeal Carcinoma AJCC v8 10 253592 -NCIT:C132822 Stage IVB Nasopharyngeal Carcinoma AJCC v8 10 253593 -NCIT:C132893 Clinical Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 9 253594 -NCIT:C132901 Pathologic Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 9 253595 -NCIT:C132999 Stage IV Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 253596 -NCIT:C133000 Stage IVA Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 253597 -NCIT:C133001 Stage IVB Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 253598 -NCIT:C133002 Stage IVC Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 253599 -NCIT:C133008 Stage IV Hypopharyngeal Carcinoma AJCC v8 9 253600 -NCIT:C133009 Stage IVA Hypopharyngeal Carcinoma AJCC v8 10 253601 -NCIT:C133010 Stage IVB Hypopharyngeal Carcinoma AJCC v8 10 253602 -NCIT:C133011 Stage IVC Hypopharyngeal Carcinoma AJCC v8 10 253603 -NCIT:C6000 Stage IVA Pharyngeal Cancer 9 253604 -NCIT:C132821 Stage IVA Nasopharyngeal Carcinoma AJCC v8 10 253605 -NCIT:C133000 Stage IVA Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 253606 -NCIT:C133009 Stage IVA Hypopharyngeal Carcinoma AJCC v8 10 253607 -NCIT:C5985 Stage IVA Oropharyngeal Carcinoma AJCC v7 10 253608 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 253609 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 253610 -NCIT:C5992 Stage IVA Hypopharyngeal Carcinoma AJCC v7 10 253611 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 253612 -NCIT:C5997 Stage IVA Nasopharyngeal Carcinoma AJCC v7 10 253613 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 253614 -NCIT:C6001 Stage IVB Pharyngeal Cancer 9 253615 -NCIT:C132822 Stage IVB Nasopharyngeal Carcinoma AJCC v8 10 253616 -NCIT:C133001 Stage IVB Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 253617 -NCIT:C133010 Stage IVB Hypopharyngeal Carcinoma AJCC v8 10 253618 -NCIT:C5986 Stage IVB Oropharyngeal Carcinoma AJCC v7 10 253619 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 253620 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 253621 -NCIT:C5993 Stage IVB Hypopharyngeal Carcinoma AJCC v7 10 253622 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 253623 -NCIT:C5996 Stage IVB Nasopharyngeal Carcinoma AJCC v7 10 253624 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 253625 -NCIT:C6002 Stage IVC Pharyngeal Cancer 9 253626 -NCIT:C133002 Stage IVC Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 253627 -NCIT:C133011 Stage IVC Hypopharyngeal Carcinoma AJCC v8 10 253628 -NCIT:C5987 Stage IVC Oropharyngeal Carcinoma AJCC v7 10 253629 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 253630 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 253631 -NCIT:C5994 Stage IVC Hypopharyngeal Carcinoma AJCC v7 10 253632 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 253633 -NCIT:C5995 Stage IVC Nasopharyngeal Carcinoma AJCC v7 10 253634 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 253635 -NCIT:C7397 Stage IV Nasopharyngeal Carcinoma AJCC v6 9 253636 -NCIT:C8533 Stage IV Hypopharyngeal Carcinoma AJCC v6 9 253637 -NCIT:C88984 Stage IV Nasopharyngeal Carcinoma AJCC v7 9 253638 -NCIT:C5995 Stage IVC Nasopharyngeal Carcinoma AJCC v7 10 253639 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 253640 -NCIT:C5996 Stage IVB Nasopharyngeal Carcinoma AJCC v7 10 253641 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 253642 -NCIT:C5997 Stage IVA Nasopharyngeal Carcinoma AJCC v7 10 253643 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 253644 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 253645 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 253646 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 253647 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 253648 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 253649 -NCIT:C89023 Stage IV Oropharyngeal Carcinoma AJCC v7 9 253650 -NCIT:C5985 Stage IVA Oropharyngeal Carcinoma AJCC v7 10 253651 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 253652 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 253653 -NCIT:C5986 Stage IVB Oropharyngeal Carcinoma AJCC v7 10 253654 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 253655 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 253656 -NCIT:C5987 Stage IVC Oropharyngeal Carcinoma AJCC v7 10 253657 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 253658 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 253659 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 253660 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 253661 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 253662 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 253663 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 253664 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 253665 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 253666 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 253667 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 253668 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 253669 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 253670 -NCIT:C89047 Stage IV Hypopharyngeal Carcinoma AJCC v7 9 253671 -NCIT:C5992 Stage IVA Hypopharyngeal Carcinoma AJCC v7 10 253672 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 253673 -NCIT:C5993 Stage IVB Hypopharyngeal Carcinoma AJCC v7 10 253674 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 253675 -NCIT:C5994 Stage IVC Hypopharyngeal Carcinoma AJCC v7 10 253676 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 253677 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 253678 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 253679 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 253680 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 253681 -NCIT:C9218 Stage IV Oropharyngeal Carcinoma AJCC v6 9 253682 -NCIT:C90525 Pharyngeal Carcinoma by AJCC v6 Stage 8 253683 -NCIT:C90522 Nasopharyngeal Carcinoma by AJCC v6 Stage 9 253684 -NCIT:C7395 Stage I Nasopharyngeal Carcinoma AJCC v6 10 253685 -NCIT:C7396 Stage III Nasopharyngeal Carcinoma AJCC v6 10 253686 -NCIT:C7397 Stage IV Nasopharyngeal Carcinoma AJCC v6 10 253687 -NCIT:C7920 Stage II Nasopharyngeal Carcinoma AJCC v6 10 253688 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 10 253689 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 11 253690 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 11 253691 -NCIT:C90523 Oropharyngeal Carcinoma by AJCC v6 Stage 9 253692 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 10 253693 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 253694 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 10 253695 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 253696 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 12 253697 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 10 253698 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 253699 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 12 253700 -NCIT:C8050 Stage III Oropharyngeal Carcinoma AJCC v6 10 253701 -NCIT:C9218 Stage IV Oropharyngeal Carcinoma AJCC v6 10 253702 -NCIT:C90524 Hypopharyngeal Carcinoma by AJCC v6 Stage 9 253703 -NCIT:C8038 Stage I Hypopharyngeal Carcinoma AJCC v6 10 253704 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 10 253705 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 253706 -NCIT:C8040 Stage III Hypopharyngeal Carcinoma AJCC v6 10 253707 -NCIT:C8533 Stage IV Hypopharyngeal Carcinoma AJCC v6 10 253708 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 10 253709 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 11 253710 -NCIT:C9105 Oropharyngeal Carcinoma 8 253711 -NCIT:C132882 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Stage 9 253712 -NCIT:C132883 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Clinical Stage 10 253713 -NCIT:C132885 Clinical Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 253714 -NCIT:C132886 Clinical Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 253715 -NCIT:C132891 Clinical Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 253716 -NCIT:C132893 Clinical Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 253717 -NCIT:C132884 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Pathologic Stage 10 253718 -NCIT:C132898 Pathologic Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 253719 -NCIT:C132899 Pathologic Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 253720 -NCIT:C132900 Pathologic Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 253721 -NCIT:C132901 Pathologic Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 253722 -NCIT:C132994 Oropharyngeal (p16-Negative) Carcinoma by AJCC v8 Stage 9 253723 -NCIT:C132995 Stage 0 Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 253724 -NCIT:C132996 Stage I Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 253725 -NCIT:C132997 Stage II Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 253726 -NCIT:C132998 Stage III Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 253727 -NCIT:C132999 Stage IV Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 253728 -NCIT:C133000 Stage IVA Oropharyngeal (p16-Negative) Carcinoma AJCC v8 11 253729 -NCIT:C133001 Stage IVB Oropharyngeal (p16-Negative) Carcinoma AJCC v8 11 253730 -NCIT:C133002 Stage IVC Oropharyngeal (p16-Negative) Carcinoma AJCC v8 11 253731 -NCIT:C156082 Metastatic Oropharyngeal Carcinoma 9 253732 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 10 253733 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 253734 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 253735 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 253736 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 10 253737 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 253738 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 253739 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 10 253740 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 253741 -NCIT:C173576 Oropharyngeal Polymorphous Adenocarcinoma 9 253742 -NCIT:C4825 Tonsillar Carcinoma 9 253743 -NCIT:C8183 Tonsillar Squamous Cell Carcinoma 10 253744 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 11 253745 -NCIT:C6241 Oropharyngeal Adenoid Cystic Carcinoma 9 253746 -NCIT:C8051 Recurrent Oropharyngeal Carcinoma 9 253747 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 10 253748 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 11 253749 -NCIT:C8181 Oropharyngeal Squamous Cell Carcinoma 9 253750 -NCIT:C126750 Oropharyngeal Poorly Differentiated Carcinoma 10 253751 -NCIT:C126751 Oropharyngeal Basaloid Carcinoma 10 253752 -NCIT:C147906 Oropharyngeal p16INK4a-Negative Squamous Cell Carcinoma 10 253753 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 10 253754 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 10 253755 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 253756 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 253757 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 253758 -NCIT:C162787 Resectable Oropharyngeal Squamous Cell Carcinoma 10 253759 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 11 253760 -NCIT:C162833 Unresectable Oropharyngeal Squamous Cell Carcinoma 10 253761 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 11 253762 -NCIT:C173414 Oropharyngeal Human Papillomavirus-Negative Squamous Cell Carcinoma 10 253763 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 10 253764 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 253765 -NCIT:C68610 Oropharyngeal Undifferentiated Carcinoma 10 253766 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 253767 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 253768 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 253769 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 253770 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 253771 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 253772 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 253773 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 11 253774 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 253775 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 11 253776 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 11 253777 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 11 253778 -NCIT:C8183 Tonsillar Squamous Cell Carcinoma 10 253779 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 11 253780 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 253781 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 253782 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 253783 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 253784 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 253785 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 253786 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 253787 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 253788 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 253789 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 253790 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 253791 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 253792 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 253793 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 253794 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 253795 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 253796 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 253797 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 10 253798 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 11 253799 -NCIT:C87055 Oropharyngeal Human Papillomavirus-Positive Squamous Cell Carcinoma 10 253800 -NCIT:C8395 Soft Palate Carcinoma 9 253801 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 10 253802 -NCIT:C90523 Oropharyngeal Carcinoma by AJCC v6 Stage 9 253803 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 10 253804 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 253805 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 10 253806 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 253807 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 12 253808 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 10 253809 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 253810 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 12 253811 -NCIT:C8050 Stage III Oropharyngeal Carcinoma AJCC v6 10 253812 -NCIT:C9218 Stage IV Oropharyngeal Carcinoma AJCC v6 10 253813 -NCIT:C91248 Oropharyngeal Carcinoma by AJCC v7 Stage 9 253814 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 10 253815 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 253816 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 10 253817 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 253818 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 12 253819 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 10 253820 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 253821 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 12 253822 -NCIT:C89021 Stage III Oropharyngeal Carcinoma AJCC v7 10 253823 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 253824 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 253825 -NCIT:C89023 Stage IV Oropharyngeal Carcinoma AJCC v7 10 253826 -NCIT:C5985 Stage IVA Oropharyngeal Carcinoma AJCC v7 11 253827 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 253828 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 253829 -NCIT:C5986 Stage IVB Oropharyngeal Carcinoma AJCC v7 11 253830 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 253831 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 253832 -NCIT:C5987 Stage IVC Oropharyngeal Carcinoma AJCC v7 11 253833 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 253834 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 253835 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 253836 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 253837 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 253838 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 253839 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 253840 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 253841 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 253842 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 253843 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 253844 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 253845 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 253846 -NCIT:C91252 Pharyngeal Carcinoma by AJCC v7 Stage 8 253847 -NCIT:C91244 Nasopharyngeal Carcinoma by AJCC v7 Stage 9 253848 -NCIT:C88981 Stage I Nasopharyngeal Carcinoma AJCC v7 10 253849 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 253850 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 253851 -NCIT:C88982 Stage II Nasopharyngeal Carcinoma AJCC v7 10 253852 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 253853 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 253854 -NCIT:C88983 Stage III Nasopharyngeal Carcinoma AJCC v7 10 253855 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 253856 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 253857 -NCIT:C88984 Stage IV Nasopharyngeal Carcinoma AJCC v7 10 253858 -NCIT:C5995 Stage IVC Nasopharyngeal Carcinoma AJCC v7 11 253859 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 253860 -NCIT:C5996 Stage IVB Nasopharyngeal Carcinoma AJCC v7 11 253861 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 253862 -NCIT:C5997 Stage IVA Nasopharyngeal Carcinoma AJCC v7 11 253863 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 253864 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 253865 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 253866 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 253867 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 253868 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 253869 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 10 253870 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 11 253871 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 11 253872 -NCIT:C91248 Oropharyngeal Carcinoma by AJCC v7 Stage 9 253873 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 10 253874 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 253875 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 10 253876 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 253877 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 12 253878 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 10 253879 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 253880 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 12 253881 -NCIT:C89021 Stage III Oropharyngeal Carcinoma AJCC v7 10 253882 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 253883 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 253884 -NCIT:C89023 Stage IV Oropharyngeal Carcinoma AJCC v7 10 253885 -NCIT:C5985 Stage IVA Oropharyngeal Carcinoma AJCC v7 11 253886 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 253887 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 253888 -NCIT:C5986 Stage IVB Oropharyngeal Carcinoma AJCC v7 11 253889 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 253890 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 253891 -NCIT:C5987 Stage IVC Oropharyngeal Carcinoma AJCC v7 11 253892 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 253893 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 253894 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 253895 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 253896 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 253897 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 253898 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 253899 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 253900 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 253901 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 253902 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 253903 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 253904 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 253905 -NCIT:C91251 Hypopharyngeal Carcinoma by AJCC v7 Stage 9 253906 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 10 253907 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 253908 -NCIT:C89045 Stage I Hypopharyngeal Carcinoma AJCC v7 10 253909 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 253910 -NCIT:C89046 Stage III Hypopharyngeal Carcinoma AJCC v7 10 253911 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 253912 -NCIT:C89047 Stage IV Hypopharyngeal Carcinoma AJCC v7 10 253913 -NCIT:C5992 Stage IVA Hypopharyngeal Carcinoma AJCC v7 11 253914 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 253915 -NCIT:C5993 Stage IVB Hypopharyngeal Carcinoma AJCC v7 11 253916 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 253917 -NCIT:C5994 Stage IVC Hypopharyngeal Carcinoma AJCC v7 11 253918 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 253919 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 253920 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 253921 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 253922 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 253923 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 10 253924 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 11 253925 -NCIT:C9465 Hypopharyngeal Carcinoma 8 253926 -NCIT:C133003 Hypopharyngeal Carcinoma by AJCC v8 Stage 9 253927 -NCIT:C133005 Stage I Hypopharyngeal Carcinoma AJCC v8 10 253928 -NCIT:C133006 Stage II Hypopharyngeal Carcinoma AJCC v8 10 253929 -NCIT:C133007 Stage III Hypopharyngeal Carcinoma AJCC v8 10 253930 -NCIT:C133008 Stage IV Hypopharyngeal Carcinoma AJCC v8 10 253931 -NCIT:C133009 Stage IVA Hypopharyngeal Carcinoma AJCC v8 11 253932 -NCIT:C133010 Stage IVB Hypopharyngeal Carcinoma AJCC v8 11 253933 -NCIT:C133011 Stage IVC Hypopharyngeal Carcinoma AJCC v8 11 253934 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 10 253935 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 11 253936 -NCIT:C156081 Metastatic Hypopharyngeal Carcinoma 9 253937 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 10 253938 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 253939 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 253940 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 10 253941 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 253942 -NCIT:C4043 Hypopharyngeal Squamous Cell Carcinoma 9 253943 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 10 253944 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 10 253945 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 253946 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 253947 -NCIT:C172646 Unresectable Hypopharyngeal Squamous Cell Carcinoma 10 253948 -NCIT:C4943 Pyriform Fossa Squamous Cell Carcinoma 10 253949 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 253950 -NCIT:C8185 Postcricoid Squamous Cell Carcinoma 10 253951 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 253952 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 253953 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 253954 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 253955 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 253956 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 253957 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 253958 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 10 253959 -NCIT:C6700 Pyriform Fossa Carcinoma 9 253960 -NCIT:C4943 Pyriform Fossa Squamous Cell Carcinoma 10 253961 -NCIT:C8595 Postcricoid Carcinoma 9 253962 -NCIT:C8185 Postcricoid Squamous Cell Carcinoma 10 253963 -NCIT:C90524 Hypopharyngeal Carcinoma by AJCC v6 Stage 9 253964 -NCIT:C8038 Stage I Hypopharyngeal Carcinoma AJCC v6 10 253965 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 10 253966 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 253967 -NCIT:C8040 Stage III Hypopharyngeal Carcinoma AJCC v6 10 253968 -NCIT:C8533 Stage IV Hypopharyngeal Carcinoma AJCC v6 10 253969 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 10 253970 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 11 253971 -NCIT:C91251 Hypopharyngeal Carcinoma by AJCC v7 Stage 9 253972 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 10 253973 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 253974 -NCIT:C89045 Stage I Hypopharyngeal Carcinoma AJCC v7 10 253975 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 253976 -NCIT:C89046 Stage III Hypopharyngeal Carcinoma AJCC v7 10 253977 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 253978 -NCIT:C89047 Stage IV Hypopharyngeal Carcinoma AJCC v7 10 253979 -NCIT:C5992 Stage IVA Hypopharyngeal Carcinoma AJCC v7 11 253980 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 253981 -NCIT:C5993 Stage IVB Hypopharyngeal Carcinoma AJCC v7 11 253982 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 253983 -NCIT:C5994 Stage IVC Hypopharyngeal Carcinoma AJCC v7 11 253984 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 253985 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 253986 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 253987 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 253988 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 253989 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 10 253990 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 11 253991 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 9 253992 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 10 253993 -NCIT:C4815 Thyroid Gland Carcinoma 6 253994 -NCIT:C118827 Childhood Thyroid Gland Carcinoma 7 253995 -NCIT:C123903 Childhood Thyroid Gland Papillary Carcinoma 8 253996 -NCIT:C123904 Childhood Thyroid Gland Follicular Carcinoma 8 253997 -NCIT:C123905 Childhood Thyroid Gland Medullary Carcinoma 8 253998 -NCIT:C190064 Childhood Thyroid Gland Spindle Epithelial Tumor with Thymus-Like Elements 8 253999 -NCIT:C126408 Thyroid Gland Cribriform Morular Carcinoma 7 254000 -NCIT:C129784 Unresectable Thyroid Gland Carcinoma 7 254001 -NCIT:C163974 Unresectable Thyroid Gland Medullary Carcinoma 8 254002 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 9 254003 -NCIT:C168572 Unresectable Differentiated Thyroid Gland Carcinoma 8 254004 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 9 254005 -NCIT:C174571 Unresectable Thyroid Gland Follicular Carcinoma 9 254006 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 10 254007 -NCIT:C170833 Unresectable Thyroid Gland Anaplastic Carcinoma 8 254008 -NCIT:C174569 Unresectable Poorly Differentiated Thyroid Gland Carcinoma 8 254009 -NCIT:C133193 Metastatic Thyroid Gland Carcinoma 7 254010 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 8 254011 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 254012 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 254013 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 8 254014 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 254015 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 254016 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 254017 -NCIT:C170831 Metastatic Thyroid Gland Anaplastic Carcinoma 8 254018 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 254019 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 254020 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 8 254021 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 254022 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 9 254023 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 254024 -NCIT:C173979 Metastatic Differentiated Thyroid Gland Carcinoma 8 254025 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 9 254026 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 10 254027 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 11 254028 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 9 254029 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 254030 -NCIT:C174046 Metastatic Poorly Differentiated Thyroid Gland Carcinoma 8 254031 -NCIT:C142983 Refractory Thyroid Gland Carcinoma 7 254032 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 8 254033 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 9 254034 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 9 254035 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 10 254036 -NCIT:C170832 Refractory Thyroid Gland Anaplastic Carcinoma 8 254037 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 8 254038 -NCIT:C156267 Thyroid Gland Mucinous Carcinoma 7 254039 -NCIT:C27380 Thyroid Gland Adenocarcinoma 7 254040 -NCIT:C187645 Follicular-Derived Thyroid Gland Carcinoma, High Grade 8 254041 -NCIT:C187648 Differentiated High Grade Thyroid Gland Carcinoma 9 254042 -NCIT:C6040 Poorly Differentiated Thyroid Gland Carcinoma 9 254043 -NCIT:C174046 Metastatic Poorly Differentiated Thyroid Gland Carcinoma 10 254044 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 10 254045 -NCIT:C174569 Unresectable Poorly Differentiated Thyroid Gland Carcinoma 10 254046 -NCIT:C187994 Thyroid Gland Secretory Carcinoma 8 254047 -NCIT:C7153 Differentiated Thyroid Gland Carcinoma 8 254048 -NCIT:C118829 Hereditary Nonmedullary Thyroid Gland Carcinoma 9 254049 -NCIT:C140959 Differentiated Thyroid Gland Carcinoma by AJCC v7 Stage 9 254050 -NCIT:C140958 Thyroid Gland Follicular Carcinoma by AJCC v7 Stage 10 254051 -NCIT:C9084 Stage I Thyroid Gland Follicular Carcinoma AJCC v7 11 254052 -NCIT:C9085 Stage II Thyroid Gland Follicular Carcinoma AJCC v7 11 254053 -NCIT:C9086 Stage IV Thyroid Gland Follicular Carcinoma AJCC v7 11 254054 -NCIT:C115035 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v7 12 254055 -NCIT:C115036 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v7 12 254056 -NCIT:C115037 Stage IVC Thyroid Gland Follicular Carcinoma AJCC v7 12 254057 -NCIT:C9121 Stage III Thyroid Gland Follicular Carcinoma AJCC v7 11 254058 -NCIT:C140960 Thyroid Gland Papillary Carcinoma by AJCC v7 Stage 10 254059 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 11 254060 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 11 254061 -NCIT:C9083 Stage IV Thyroid Gland Papillary Carcinoma AJCC v7 11 254062 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 12 254063 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 12 254064 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 12 254065 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 11 254066 -NCIT:C87543 Stage I Differentiated Thyroid Gland Carcinoma AJCC v7 10 254067 -NCIT:C101539 Stage I Differentiated Thyroid Gland Carcinoma Under 45 Years AJCC v7 11 254068 -NCIT:C101540 Stage I Differentiated Thyroid Gland Carcinoma 45 Years and Older AJCC v7 11 254069 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 11 254070 -NCIT:C9084 Stage I Thyroid Gland Follicular Carcinoma AJCC v7 11 254071 -NCIT:C87544 Stage II Differentiated Thyroid Gland Carcinoma AJCC v7 10 254072 -NCIT:C101541 Stage II Differentiated Thyroid Gland Carcinoma Under 45 Years AJCC v7 11 254073 -NCIT:C101542 Stage II Differentiated Thyroid Gland Carcinoma 45 Years and Older AJCC v7 11 254074 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 11 254075 -NCIT:C9085 Stage II Thyroid Gland Follicular Carcinoma AJCC v7 11 254076 -NCIT:C87545 Stage III Differentiated Thyroid Gland Carcinoma AJCC v7 10 254077 -NCIT:C9121 Stage III Thyroid Gland Follicular Carcinoma AJCC v7 11 254078 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 11 254079 -NCIT:C87546 Stage IVA Differentiated Thyroid Gland Carcinoma AJCC v7 10 254080 -NCIT:C115035 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v7 11 254081 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 11 254082 -NCIT:C87547 Stage IVB Differentiated Thyroid Gland Carcinoma AJCC v7 10 254083 -NCIT:C115036 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v7 11 254084 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 11 254085 -NCIT:C87548 Stage IVC Differentiated Thyroid Gland Carcinoma AJCC v7 10 254086 -NCIT:C115037 Stage IVC Thyroid Gland Follicular Carcinoma AJCC v7 11 254087 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 11 254088 -NCIT:C140965 Differentiated Thyroid Gland Carcinoma by AJCC v8 Stage 9 254089 -NCIT:C140966 Stage I Differentiated Thyroid Gland Carcinoma AJCC v8 10 254090 -NCIT:C140967 Stage I Differentiated Thyroid Gland Carcinoma Under 55 Years AJCC v8 11 254091 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 254092 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 254093 -NCIT:C140968 Stage I Differentiated Thyroid Gland Carcinoma 55 Years and Older AJCC v8 11 254094 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 254095 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 254096 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 11 254097 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 254098 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 254099 -NCIT:C140988 Stage I Thyroid Gland Follicular Carcinoma AJCC v8 11 254100 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 254101 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 254102 -NCIT:C140969 Stage II Differentiated Thyroid Gland Carcinoma AJCC v8 10 254103 -NCIT:C140970 Stage II Differentiated Thyroid Gland Carcinoma Under 55 Years AJCC v8 11 254104 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 254105 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 254106 -NCIT:C140971 Stage II Differentiated Thyroid Gland Carcinoma 55 Years and Older AJCC v8 11 254107 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 254108 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 254109 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 11 254110 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 254111 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 254112 -NCIT:C140991 Stage II Thyroid Gland Follicular Carcinoma AJCC v8 11 254113 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 254114 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 254115 -NCIT:C140972 Stage III Differentiated Thyroid Gland Carcinoma AJCC v8 10 254116 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 11 254117 -NCIT:C140995 Stage III Thyroid Gland Follicular Carcinoma AJCC v8 11 254118 -NCIT:C140973 Stage IV Differentiated Thyroid Gland Carcinoma AJCC v8 10 254119 -NCIT:C140974 Stage IVA Differentiated Thyroid Gland Carcinoma AJCC v8 11 254120 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 12 254121 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 12 254122 -NCIT:C140975 Stage IVB Differentiated Thyroid Gland Carcinoma AJCC v8 11 254123 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 12 254124 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 12 254125 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 11 254126 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 12 254127 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 12 254128 -NCIT:C140996 Stage IV Thyroid Gland Follicular Carcinoma AJCC v8 11 254129 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 12 254130 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 12 254131 -NCIT:C140976 Thyroid Gland Papillary Carcinoma by AJCC v8 Stage 10 254132 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 11 254133 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 254134 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 254135 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 11 254136 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 254137 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 254138 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 11 254139 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 11 254140 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 12 254141 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 12 254142 -NCIT:C140987 Thyroid Gland Follicular Carcinoma by AJCC v8 Stage 10 254143 -NCIT:C140988 Stage I Thyroid Gland Follicular Carcinoma AJCC v8 11 254144 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 254145 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 254146 -NCIT:C140991 Stage II Thyroid Gland Follicular Carcinoma AJCC v8 11 254147 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 254148 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 254149 -NCIT:C140995 Stage III Thyroid Gland Follicular Carcinoma AJCC v8 11 254150 -NCIT:C140996 Stage IV Thyroid Gland Follicular Carcinoma AJCC v8 11 254151 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 12 254152 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 12 254153 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 9 254154 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 10 254155 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 10 254156 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 11 254157 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 9 254158 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 10 254159 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 10 254160 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 11 254161 -NCIT:C168572 Unresectable Differentiated Thyroid Gland Carcinoma 9 254162 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 10 254163 -NCIT:C174571 Unresectable Thyroid Gland Follicular Carcinoma 10 254164 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 11 254165 -NCIT:C173979 Metastatic Differentiated Thyroid Gland Carcinoma 9 254166 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 10 254167 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 11 254168 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 12 254169 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 10 254170 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 10 254171 -NCIT:C4035 Thyroid Gland Papillary Carcinoma 9 254172 -NCIT:C123903 Childhood Thyroid Gland Papillary Carcinoma 10 254173 -NCIT:C126409 Warthin-Like Variant Thyroid Gland Papillary Carcinoma 10 254174 -NCIT:C126410 Thyroid Gland Papillary Carcinoma with Fibromatosis/Fasciitis-Like/Desmoid-Type Stroma 10 254175 -NCIT:C126594 Follicular Variant Thyroid Gland Papillary Carcinoma 10 254176 -NCIT:C66850 Invasive Encapsulated Follicular Variant Thyroid Gland Papillary Carcinoma 11 254177 -NCIT:C7381 Invasive Follicular Variant Thyroid Gland Papillary Carcinoma 11 254178 -NCIT:C140960 Thyroid Gland Papillary Carcinoma by AJCC v7 Stage 10 254179 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 11 254180 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 11 254181 -NCIT:C9083 Stage IV Thyroid Gland Papillary Carcinoma AJCC v7 11 254182 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 12 254183 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 12 254184 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 12 254185 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 11 254186 -NCIT:C140976 Thyroid Gland Papillary Carcinoma by AJCC v8 Stage 10 254187 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 11 254188 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 254189 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 254190 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 11 254191 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 254192 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 254193 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 11 254194 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 11 254195 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 12 254196 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 12 254197 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 10 254198 -NCIT:C156034 Encapsulated Variant Thyroid Gland Papillary Carcinoma 10 254199 -NCIT:C156045 Spindle Cell Variant Thyroid Gland Papillary Carcinoma 10 254200 -NCIT:C156050 Hobnail Variant Thyroid Gland Papillary Carcinoma 10 254201 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 10 254202 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 10 254203 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 10 254204 -NCIT:C187644 Classic Thyroid Gland Papillary Carcinoma 10 254205 -NCIT:C35558 Tall Cell Variant Thyroid Gland Papillary Carcinoma 10 254206 -NCIT:C35830 Columnar Cell Variant Thyroid Gland Papillary Carcinoma 10 254207 -NCIT:C37304 Multicentric Thyroid Gland Papillary Carcinoma 10 254208 -NCIT:C46004 Thyroid Gland Papillary Microcarcinoma 10 254209 -NCIT:C46092 Macrofollicular Variant Thyroid Gland Papillary Carcinoma 10 254210 -NCIT:C46093 Oncocytic Variant Thyroid Gland Papillary Carcinoma 10 254211 -NCIT:C46094 Clear Cell Variant Thyroid Gland Papillary Carcinoma 10 254212 -NCIT:C46095 Solid/Trabecular Variant Thyroid Gland Papillary Carcinoma 10 254213 -NCIT:C7427 Diffuse Sclerosing Variant Thyroid Gland Papillary Carcinoma 10 254214 -NCIT:C8054 Thyroid Gland Follicular Carcinoma 9 254215 -NCIT:C123904 Childhood Thyroid Gland Follicular Carcinoma 10 254216 -NCIT:C140958 Thyroid Gland Follicular Carcinoma by AJCC v7 Stage 10 254217 -NCIT:C9084 Stage I Thyroid Gland Follicular Carcinoma AJCC v7 11 254218 -NCIT:C9085 Stage II Thyroid Gland Follicular Carcinoma AJCC v7 11 254219 -NCIT:C9086 Stage IV Thyroid Gland Follicular Carcinoma AJCC v7 11 254220 -NCIT:C115035 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v7 12 254221 -NCIT:C115036 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v7 12 254222 -NCIT:C115037 Stage IVC Thyroid Gland Follicular Carcinoma AJCC v7 12 254223 -NCIT:C9121 Stage III Thyroid Gland Follicular Carcinoma AJCC v7 11 254224 -NCIT:C140987 Thyroid Gland Follicular Carcinoma by AJCC v8 Stage 10 254225 -NCIT:C140988 Stage I Thyroid Gland Follicular Carcinoma AJCC v8 11 254226 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 254227 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 254228 -NCIT:C140991 Stage II Thyroid Gland Follicular Carcinoma AJCC v8 11 254229 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 254230 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 254231 -NCIT:C140995 Stage III Thyroid Gland Follicular Carcinoma AJCC v8 11 254232 -NCIT:C140996 Stage IV Thyroid Gland Follicular Carcinoma AJCC v8 11 254233 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 12 254234 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 12 254235 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 10 254236 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 11 254237 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 10 254238 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 11 254239 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 12 254240 -NCIT:C156122 Thyroid Gland Follicular Carcinoma, Encapsulated Angioinvasive 10 254241 -NCIT:C156123 Thyroid Gland Follicular Carcinoma, Widely Invasive 10 254242 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 10 254243 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 11 254244 -NCIT:C174571 Unresectable Thyroid Gland Follicular Carcinoma 10 254245 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 11 254246 -NCIT:C187643 Thyroid Gland Follicular Carcinoma, Signet Ring Cell Variant 10 254247 -NCIT:C46096 Thyroid Gland Follicular Carcinoma, Clear Cell Variant 10 254248 -NCIT:C4946 Thyroid Gland Oncocytic Carcinoma 10 254249 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 11 254250 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 11 254251 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 11 254252 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 11 254253 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 12 254254 -NCIT:C65200 Thyroid Gland Follicular Carcinoma, Minimally Invasive 10 254255 -NCIT:C38762 Thyroid Gland Mucoepidermoid Carcinoma 7 254256 -NCIT:C38763 Thyroid Gland Sclerosing Mucoepidermoid Carcinoma with Eosinophilia 8 254257 -NCIT:C3878 Thyroid Gland Anaplastic Carcinoma 7 254258 -NCIT:C140999 Thyroid Gland Anaplastic Carcinoma by AJCC v7 Stage 8 254259 -NCIT:C87552 Stage IVA Thyroid Gland Anaplastic Carcinoma AJCC v7 9 254260 -NCIT:C87553 Stage IVB Thyroid Gland Anaplastic Carcinoma AJCC v7 9 254261 -NCIT:C87554 Stage IVC Thyroid Gland Anaplastic Carcinoma AJCC v7 9 254262 -NCIT:C141000 Thyroid Gland Anaplastic Carcinoma by AJCC v8 Stage 8 254263 -NCIT:C141001 Stage IVA Thyroid Gland Anaplastic Carcinoma AJCC v8 9 254264 -NCIT:C141003 Stage IVB Thyroid Gland Anaplastic Carcinoma AJCC v8 9 254265 -NCIT:C141004 Stage IVC Thyroid Gland Anaplastic Carcinoma AJCC v8 9 254266 -NCIT:C153624 Recurrent Thyroid Gland Anaplastic Carcinoma 8 254267 -NCIT:C170831 Metastatic Thyroid Gland Anaplastic Carcinoma 8 254268 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 254269 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 254270 -NCIT:C170832 Refractory Thyroid Gland Anaplastic Carcinoma 8 254271 -NCIT:C170833 Unresectable Thyroid Gland Anaplastic Carcinoma 8 254272 -NCIT:C46008 Thyroid Gland Anaplastic Carcinoma, Squamous Cell Carcinoma Pattern 8 254273 -NCIT:C7906 Thyroid Gland Anaplastic Carcinoma, Osteoclastic Variant 8 254274 -NCIT:C3879 Thyroid Gland Medullary Carcinoma 7 254275 -NCIT:C123905 Childhood Thyroid Gland Medullary Carcinoma 8 254276 -NCIT:C141041 Thyroid Gland Medullary Carcinoma by AJCC v7 Stage 8 254277 -NCIT:C6133 Stage I Thyroid Gland Medullary Carcinoma AJCC v7 9 254278 -NCIT:C6134 Stage II Thyroid Gland Medullary Carcinoma AJCC v7 9 254279 -NCIT:C6135 Stage III Thyroid Gland Medullary Carcinoma AJCC v7 9 254280 -NCIT:C6136 Stage IV Thyroid Gland Medullary Carcinoma AJCC v7 9 254281 -NCIT:C87549 Stage IVA Thyroid Gland Medullary Carcinoma AJCC v7 10 254282 -NCIT:C87550 Stage IVB Thyroid Gland Medullary Carcinoma AJCC v7 10 254283 -NCIT:C87551 Stage IVC Thyroid Gland Medullary Carcinoma AJCC v7 10 254284 -NCIT:C141042 Thyroid Gland Medullary Carcinoma by AJCC v8 Stage 8 254285 -NCIT:C141043 Stage I Thyroid Gland Medullary Carcinoma AJCC v8 9 254286 -NCIT:C141044 Stage II Thyroid Gland Medullary Carcinoma AJCC v8 9 254287 -NCIT:C141045 Stage III Thyroid Gland Medullary Carcinoma AJCC v8 9 254288 -NCIT:C141046 Stage IV Thyroid Gland Medullary Carcinoma AJCC v8 9 254289 -NCIT:C141047 Stage IVA Thyroid Gland Medullary Carcinoma AJCC v8 10 254290 -NCIT:C141048 Stage IVB Thyroid Gland Medullary Carcinoma AJCC v8 10 254291 -NCIT:C141049 Stage IVC Thyroid Gland Medullary Carcinoma AJCC v8 10 254292 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 8 254293 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 9 254294 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 8 254295 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 254296 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 254297 -NCIT:C163974 Unresectable Thyroid Gland Medullary Carcinoma 8 254298 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 9 254299 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 8 254300 -NCIT:C4193 Thyroid Gland Medullary Carcinoma with Amyloid Stroma 8 254301 -NCIT:C46098 Sporadic Thyroid Gland Medullary Carcinoma 8 254302 -NCIT:C46103 Sporadic Thyroid Gland Micromedullary Carcinoma 9 254303 -NCIT:C46099 Hereditary Thyroid Gland Medullary Carcinoma 8 254304 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 9 254305 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 9 254306 -NCIT:C46104 Thyroid Gland Mixed Medullary and Follicular Cell-Derived Carcinoma 7 254307 -NCIT:C187992 Thyroid Gland Mixed Medullary and Follicular Carcinoma 8 254308 -NCIT:C187993 Thyroid Gland Mixed Medullary and Papillary Carcinoma 8 254309 -NCIT:C46105 Thyroid Gland Spindle Epithelial Tumor with Thymus-Like Elements 7 254310 -NCIT:C190064 Childhood Thyroid Gland Spindle Epithelial Tumor with Thymus-Like Elements 8 254311 -NCIT:C46106 Intrathyroid Thymic Carcinoma 7 254312 -NCIT:C7908 Recurrent Thyroid Gland Carcinoma 7 254313 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 8 254314 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 9 254315 -NCIT:C153624 Recurrent Thyroid Gland Anaplastic Carcinoma 8 254316 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 8 254317 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 9 254318 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 9 254319 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 10 254320 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 8 254321 -NCIT:C4906 Parathyroid Gland Carcinoma 6 254322 -NCIT:C118819 Childhood Parathyroid Gland Carcinoma 7 254323 -NCIT:C7826 Localized Parathyroid Gland Carcinoma 7 254324 -NCIT:C7828 Recurrent Parathyroid Gland Carcinoma 7 254325 -NCIT:C9044 Metastatic Parathyroid Gland Carcinoma 7 254326 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 254327 -NCIT:C7624 Recurrent Head and Neck Carcinoma 5 254328 -NCIT:C133709 Recurrent Head and Neck Squamous Cell Carcinoma 6 254329 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 254330 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 254331 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 254332 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 254333 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 254334 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 254335 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 254336 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 254337 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 254338 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 7 254339 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 254340 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 254341 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 254342 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 254343 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 254344 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 254345 -NCIT:C176682 Locally Recurrent Head and Neck Squamous Cell Carcinoma 7 254346 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 7 254347 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 254348 -NCIT:C4034 Recurrent Laryngeal Carcinoma 6 254349 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 7 254350 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 254351 -NCIT:C5103 Recurrent Pharyngeal Carcinoma 6 254352 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 7 254353 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 254354 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 254355 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 254356 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 254357 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 254358 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 254359 -NCIT:C8051 Recurrent Oropharyngeal Carcinoma 7 254360 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 254361 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 254362 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 7 254363 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 254364 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 254365 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 254366 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 7 254367 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 254368 -NCIT:C67558 Recurrent Sinonasal Carcinoma 6 254369 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 254370 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 254371 -NCIT:C7828 Recurrent Parathyroid Gland Carcinoma 6 254372 -NCIT:C7908 Recurrent Thyroid Gland Carcinoma 6 254373 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 7 254374 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 8 254375 -NCIT:C153624 Recurrent Thyroid Gland Anaplastic Carcinoma 7 254376 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 7 254377 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 8 254378 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 8 254379 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 9 254380 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 7 254381 -NCIT:C7926 Recurrent Salivary Gland Carcinoma 6 254382 -NCIT:C153611 Recurrent Salivary Duct Carcinoma 7 254383 -NCIT:C153612 Recurrent Minor Salivary Gland Adenocarcinoma 7 254384 -NCIT:C153800 Recurrent Parotid Gland Carcinoma 7 254385 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 8 254386 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 8 254387 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 254388 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 8 254389 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 254390 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 8 254391 -NCIT:C153801 Recurrent Submandibular Gland Carcinoma 7 254392 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 8 254393 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 8 254394 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 254395 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 8 254396 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 254397 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 8 254398 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 254399 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 254400 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 254401 -NCIT:C8037 Recurrent Lip and Oral Cavity Carcinoma 6 254402 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 254403 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 254404 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 254405 -NCIT:C6076 Recurrent Oral Cavity Carcinoma 7 254406 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 254407 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 254408 -NCIT:C8215 Recurrent Oral Cavity Mucoepidermoid Carcinoma 8 254409 -NCIT:C8216 Recurrent Oral Cavity Adenoid Cystic Carcinoma 8 254410 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 7 254411 -NCIT:C9272 Salivary Gland Carcinoma 5 254412 -NCIT:C118824 Childhood Salivary Gland Carcinoma 6 254413 -NCIT:C190273 Childhood Salivary Gland Mucoepidermoid Carcinoma 7 254414 -NCIT:C190274 Childhood Salivary Gland Acinic Cell Carcinoma 7 254415 -NCIT:C118825 Adult Salivary Gland Carcinoma 6 254416 -NCIT:C158463 Metastatic Salivary Gland Carcinoma 6 254417 -NCIT:C158464 Locally Advanced Salivary Gland Carcinoma 7 254418 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 7 254419 -NCIT:C177723 Advanced Salivary Gland Carcinoma 7 254420 -NCIT:C5899 Stage IV Major Salivary Gland Carcinoma with Metastasis 7 254421 -NCIT:C173649 Salivary Gland Poorly Differentiated Carcinoma 6 254422 -NCIT:C173653 Salivary Gland Neuroendocrine Carcinoma 7 254423 -NCIT:C173650 Salivary Gland Large Cell Neuroendocrine Carcinoma 8 254424 -NCIT:C35703 Salivary Gland Small Cell Neuroendocrine Carcinoma 8 254425 -NCIT:C5956 Minor Salivary Gland Small Cell Neuroendocrine Carcinoma 9 254426 -NCIT:C35735 Salivary Gland Large Cell Carcinoma 7 254427 -NCIT:C173650 Salivary Gland Large Cell Neuroendocrine Carcinoma 8 254428 -NCIT:C174034 Unresectable Salivary Gland Carcinoma 6 254429 -NCIT:C172651 Unresectable Salivary Gland Squamous Cell Carcinoma 7 254430 -NCIT:C177722 Refractory Salivary Gland Carcinoma 6 254431 -NCIT:C181079 Hybrid Salivary Gland Carcinoma 6 254432 -NCIT:C35700 Salivary Gland Myoepithelial Carcinoma 6 254433 -NCIT:C35701 Salivary Gland Epithelial-Myoepithelial Carcinoma 6 254434 -NCIT:C35736 Salivary Gland Lymphoepithelial Carcinoma 6 254435 -NCIT:C35737 Salivary Gland Adenosquamous Carcinoma 6 254436 -NCIT:C40410 Salivary Gland Carcinoma ex Pleomorphic Adenoma 6 254437 -NCIT:C5975 Major Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 254438 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 254439 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 254440 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 254441 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 254442 -NCIT:C5976 Minor Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 254443 -NCIT:C5907 Major Salivary Gland Carcinoma 6 254444 -NCIT:C132778 Major Salivary Gland Cancer by AJCC v7 Stage 7 254445 -NCIT:C5895 Stage I Major Salivary Gland Cancer AJCC v7 8 254446 -NCIT:C5896 Stage II Major Salivary Gland Cancer AJCC v7 8 254447 -NCIT:C5897 Stage III Major Salivary Gland Cancer AJCC v7 8 254448 -NCIT:C5898 Stage IV Major Salivary Gland Cancer AJCC v7 8 254449 -NCIT:C35694 Stage IVA Major Salivary Gland Cancer AJCC v7 9 254450 -NCIT:C35695 Stage IVB Major Salivary Gland Cancer AJCC v7 9 254451 -NCIT:C35696 Stage IVC Major Salivary Gland Cancer AJCC v7 9 254452 -NCIT:C5899 Stage IV Major Salivary Gland Carcinoma with Metastasis 9 254453 -NCIT:C5900 Stage IV Major Salivary Gland Carcinoma without Metastasis 9 254454 -NCIT:C132779 Major Salivary Gland Cancer by AJCC v8 Stage 7 254455 -NCIT:C132781 Stage I Major Salivary Gland Cancer AJCC v8 8 254456 -NCIT:C132783 Stage 0 Major Salivary Gland Cancer AJCC v8 8 254457 -NCIT:C132785 Stage II Major Salivary Gland Cancer AJCC v8 8 254458 -NCIT:C132786 Stage III Major Salivary Gland Cancer AJCC v8 8 254459 -NCIT:C132787 Stage IV Major Salivary Gland Cancer AJCC v8 8 254460 -NCIT:C132788 Stage IVA Major Salivary Gland Cancer AJCC v8 9 254461 -NCIT:C132789 Stage IVB Major Salivary Gland Cancer AJCC v8 9 254462 -NCIT:C132790 Stage IVC Major Salivary Gland Cancer AJCC v8 9 254463 -NCIT:C181161 Major Salivary Gland Squamous Cell Carcinoma 7 254464 -NCIT:C5942 Parotid Gland Squamous Cell Carcinoma 8 254465 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 9 254466 -NCIT:C5943 Submandibular Gland Squamous Cell Carcinoma 8 254467 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 9 254468 -NCIT:C5903 Major Salivary Gland Adenocarcinoma 7 254469 -NCIT:C5901 Major Salivary Gland Acinic Cell Carcinoma 8 254470 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 254471 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 254472 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 254473 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 254474 -NCIT:C5940 Submandibular Gland Adenocarcinoma 8 254475 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 254476 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 254477 -NCIT:C5941 Parotid Gland Adenocarcinoma 8 254478 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 254479 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 254480 -NCIT:C5958 Sublingual Gland Adenocarcinoma 8 254481 -NCIT:C5905 Major Salivary Gland Adenoid Cystic Carcinoma 7 254482 -NCIT:C5935 Submandibular Gland Adenoid Cystic Carcinoma 8 254483 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 9 254484 -NCIT:C5937 Parotid Gland Adenoid Cystic Carcinoma 8 254485 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 9 254486 -NCIT:C5906 Major Salivary Gland Mucoepidermoid Carcinoma 7 254487 -NCIT:C5938 Parotid Gland Mucoepidermoid Carcinoma 8 254488 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 9 254489 -NCIT:C5939 Submandibular Gland Mucoepidermoid Carcinoma 8 254490 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 9 254491 -NCIT:C5975 Major Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 254492 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 254493 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 254494 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 254495 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 254496 -NCIT:C6791 Parotid Gland Carcinoma 7 254497 -NCIT:C153800 Recurrent Parotid Gland Carcinoma 8 254498 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 9 254499 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 9 254500 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 254501 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 9 254502 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 9 254503 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 9 254504 -NCIT:C5937 Parotid Gland Adenoid Cystic Carcinoma 8 254505 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 9 254506 -NCIT:C5938 Parotid Gland Mucoepidermoid Carcinoma 8 254507 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 9 254508 -NCIT:C5941 Parotid Gland Adenocarcinoma 8 254509 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 254510 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 254511 -NCIT:C5942 Parotid Gland Squamous Cell Carcinoma 8 254512 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 9 254513 -NCIT:C5946 Parotid Gland Undifferentiated Carcinoma 8 254514 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 9 254515 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 254516 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 254517 -NCIT:C8396 Submandibular Gland Carcinoma 7 254518 -NCIT:C153801 Recurrent Submandibular Gland Carcinoma 8 254519 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 9 254520 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 9 254521 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 254522 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 9 254523 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 9 254524 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 9 254525 -NCIT:C5935 Submandibular Gland Adenoid Cystic Carcinoma 8 254526 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 9 254527 -NCIT:C5939 Submandibular Gland Mucoepidermoid Carcinoma 8 254528 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 9 254529 -NCIT:C5940 Submandibular Gland Adenocarcinoma 8 254530 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 254531 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 254532 -NCIT:C5943 Submandibular Gland Squamous Cell Carcinoma 8 254533 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 9 254534 -NCIT:C5947 Submandibular Gland Undifferentiated Carcinoma 8 254535 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 9 254536 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 254537 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 254538 -NCIT:C8397 Sublingual Gland Carcinoma 7 254539 -NCIT:C5958 Sublingual Gland Adenocarcinoma 8 254540 -NCIT:C5908 Salivary Gland Mucoepidermoid Carcinoma 6 254541 -NCIT:C190273 Childhood Salivary Gland Mucoepidermoid Carcinoma 7 254542 -NCIT:C5906 Major Salivary Gland Mucoepidermoid Carcinoma 7 254543 -NCIT:C5938 Parotid Gland Mucoepidermoid Carcinoma 8 254544 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 9 254545 -NCIT:C5939 Submandibular Gland Mucoepidermoid Carcinoma 8 254546 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 9 254547 -NCIT:C5953 Minor Salivary Gland Mucoepidermoid Carcinoma 7 254548 -NCIT:C8015 Low Grade Salivary Gland Mucoepidermoid Carcinoma 7 254549 -NCIT:C8017 Intermediate Grade Salivary Gland Mucoepidermoid Carcinoma 7 254550 -NCIT:C8019 High Grade Salivary Gland Mucoepidermoid Carcinoma 7 254551 -NCIT:C5957 Minor Salivary Gland Carcinoma 6 254552 -NCIT:C5936 Minor Salivary Gland Adenoid Cystic Carcinoma 7 254553 -NCIT:C5948 Minor Salivary Gland Adenocarcinoma 7 254554 -NCIT:C153612 Recurrent Minor Salivary Gland Adenocarcinoma 8 254555 -NCIT:C160974 Cribriform Adenocarcinoma of Minor Salivary Gland 8 254556 -NCIT:C6243 Minor Salivary Gland Acinic Cell Carcinoma 8 254557 -NCIT:C5953 Minor Salivary Gland Mucoepidermoid Carcinoma 7 254558 -NCIT:C5954 Minor Salivary Gland Undifferentiated Carcinoma 7 254559 -NCIT:C5956 Minor Salivary Gland Small Cell Neuroendocrine Carcinoma 7 254560 -NCIT:C5959 Minor Salivary Gland Squamous Cell Carcinoma 7 254561 -NCIT:C5976 Minor Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 254562 -NCIT:C62191 Salivary Gland Clear Cell Carcinoma 6 254563 -NCIT:C7926 Recurrent Salivary Gland Carcinoma 6 254564 -NCIT:C153611 Recurrent Salivary Duct Carcinoma 7 254565 -NCIT:C153612 Recurrent Minor Salivary Gland Adenocarcinoma 7 254566 -NCIT:C153800 Recurrent Parotid Gland Carcinoma 7 254567 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 8 254568 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 8 254569 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 254570 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 8 254571 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 254572 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 8 254573 -NCIT:C153801 Recurrent Submandibular Gland Carcinoma 7 254574 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 8 254575 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 8 254576 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 254577 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 8 254578 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 254579 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 8 254580 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 254581 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 254582 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 254583 -NCIT:C7991 Salivary Gland Squamous Cell Carcinoma 6 254584 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 7 254585 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 254586 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 254587 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 254588 -NCIT:C172651 Unresectable Salivary Gland Squamous Cell Carcinoma 7 254589 -NCIT:C181161 Major Salivary Gland Squamous Cell Carcinoma 7 254590 -NCIT:C5942 Parotid Gland Squamous Cell Carcinoma 8 254591 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 9 254592 -NCIT:C5943 Submandibular Gland Squamous Cell Carcinoma 8 254593 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 9 254594 -NCIT:C5959 Minor Salivary Gland Squamous Cell Carcinoma 7 254595 -NCIT:C8022 Salivary Gland Poorly Differentiated Squamous Cell Carcinoma 7 254596 -NCIT:C8012 Low Grade Salivary Gland Carcinoma 6 254597 -NCIT:C123384 Salivary Gland Secretory Carcinoma 7 254598 -NCIT:C35702 Salivary Gland Polymorphous Adenocarcinoma 7 254599 -NCIT:C173576 Oropharyngeal Polymorphous Adenocarcinoma 8 254600 -NCIT:C62192 Salivary Gland Intraductal Carcinoma 7 254601 -NCIT:C8015 Low Grade Salivary Gland Mucoepidermoid Carcinoma 7 254602 -NCIT:C8018 High Grade Salivary Gland Carcinoma 6 254603 -NCIT:C5904 Salivary Duct Carcinoma 7 254604 -NCIT:C153611 Recurrent Salivary Duct Carcinoma 8 254605 -NCIT:C62194 Salivary Gland Oncocytic Carcinoma 7 254606 -NCIT:C8019 High Grade Salivary Gland Mucoepidermoid Carcinoma 7 254607 -NCIT:C8021 Salivary Gland Adenocarcinoma 6 254608 -NCIT:C123384 Salivary Gland Secretory Carcinoma 7 254609 -NCIT:C173648 Salivary Gland Sebaceous Carcinoma 7 254610 -NCIT:C35702 Salivary Gland Polymorphous Adenocarcinoma 7 254611 -NCIT:C173576 Oropharyngeal Polymorphous Adenocarcinoma 8 254612 -NCIT:C3678 Salivary Gland Basal Cell Adenocarcinoma 7 254613 -NCIT:C5903 Major Salivary Gland Adenocarcinoma 7 254614 -NCIT:C5901 Major Salivary Gland Acinic Cell Carcinoma 8 254615 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 254616 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 254617 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 254618 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 254619 -NCIT:C5940 Submandibular Gland Adenocarcinoma 8 254620 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 254621 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 254622 -NCIT:C5941 Parotid Gland Adenocarcinoma 8 254623 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 254624 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 254625 -NCIT:C5958 Sublingual Gland Adenocarcinoma 8 254626 -NCIT:C5904 Salivary Duct Carcinoma 7 254627 -NCIT:C153611 Recurrent Salivary Duct Carcinoma 8 254628 -NCIT:C5948 Minor Salivary Gland Adenocarcinoma 7 254629 -NCIT:C153612 Recurrent Minor Salivary Gland Adenocarcinoma 8 254630 -NCIT:C160974 Cribriform Adenocarcinoma of Minor Salivary Gland 8 254631 -NCIT:C6243 Minor Salivary Gland Acinic Cell Carcinoma 8 254632 -NCIT:C5980 Salivary Gland Cystadenocarcinoma 7 254633 -NCIT:C62192 Salivary Gland Intraductal Carcinoma 7 254634 -NCIT:C62193 Salivary Gland Mucinous Adenocarcinoma 7 254635 -NCIT:C62194 Salivary Gland Oncocytic Carcinoma 7 254636 -NCIT:C62196 Salivary Gland Adenocarcinoma, Not Otherwise Specified 7 254637 -NCIT:C8013 Salivary Gland Acinic Cell Carcinoma 7 254638 -NCIT:C190274 Childhood Salivary Gland Acinic Cell Carcinoma 8 254639 -NCIT:C5901 Major Salivary Gland Acinic Cell Carcinoma 8 254640 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 254641 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 254642 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 254643 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 254644 -NCIT:C6243 Minor Salivary Gland Acinic Cell Carcinoma 8 254645 -NCIT:C8024 Salivary Gland Undifferentiated Carcinoma 6 254646 -NCIT:C5946 Parotid Gland Undifferentiated Carcinoma 7 254647 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 8 254648 -NCIT:C5947 Submandibular Gland Undifferentiated Carcinoma 7 254649 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 8 254650 -NCIT:C5954 Minor Salivary Gland Undifferentiated Carcinoma 7 254651 -NCIT:C8026 Salivary Gland Adenoid Cystic Carcinoma 6 254652 -NCIT:C5905 Major Salivary Gland Adenoid Cystic Carcinoma 7 254653 -NCIT:C5935 Submandibular Gland Adenoid Cystic Carcinoma 8 254654 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 9 254655 -NCIT:C5937 Parotid Gland Adenoid Cystic Carcinoma 8 254656 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 9 254657 -NCIT:C5936 Minor Salivary Gland Adenoid Cystic Carcinoma 7 254658 -NCIT:C9315 Lip and Oral Cavity Carcinoma 5 254659 -NCIT:C132728 Lip and Oral Cavity Cancer by AJCC v8 Stage 6 254660 -NCIT:C132729 Stage I Lip and Oral Cavity Cancer AJCC v8 7 254661 -NCIT:C132730 Stage II Lip and Oral Cavity Cancer AJCC v8 7 254662 -NCIT:C132731 Stage III Lip and Oral Cavity Cancer AJCC v8 7 254663 -NCIT:C132732 Stage IV Lip and Oral Cavity Cancer AJCC v8 7 254664 -NCIT:C132733 Stage IVA Lip and Oral Cavity Cancer AJCC v8 8 254665 -NCIT:C132734 Stage IVB Lip and Oral Cavity Cancer AJCC v8 8 254666 -NCIT:C132735 Stage IVC Lip and Oral Cavity Cancer AJCC v8 8 254667 -NCIT:C132736 Lip and Oral Cavity Cancer by AJCC v6 and v7 Stage 6 254668 -NCIT:C7939 Stage 0 Lip and Oral Cavity Cancer AJCC v6 and v7 7 254669 -NCIT:C4587 Stage 0 Oral Cavity Cancer AJCC v6 and v7 8 254670 -NCIT:C6052 Stage 0 Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 254671 -NCIT:C4588 Stage 0 Lip Cancer AJCC v6 and v7 8 254672 -NCIT:C5893 Stage 0 Lip Basal Cell Carcinoma AJCC v6 and v7 9 254673 -NCIT:C8033 Stage I Lip and Oral Cavity Cancer AJCC v6 and v7 7 254674 -NCIT:C115057 Stage I Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 254675 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 254676 -NCIT:C5876 Stage I Lip Cancer AJCC v6 and v7 8 254677 -NCIT:C8197 Stage I Lip Basal Cell Carcinoma 9 254678 -NCIT:C5883 Stage I Oral Cavity Cancer AJCC v6 and v7 8 254679 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 254680 -NCIT:C8199 Stage I Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 254681 -NCIT:C8200 Stage I Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 254682 -NCIT:C8034 Stage II Lip and Oral Cavity Cancer AJCC v6 and v7 7 254683 -NCIT:C115058 Stage II Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 254684 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 254685 -NCIT:C5877 Stage II Lip Cancer AJCC v6 and v7 8 254686 -NCIT:C8201 Stage II Lip Basal Cell Carcinoma 9 254687 -NCIT:C5884 Stage II Oral Cavity Cancer AJCC v6 and v7 8 254688 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 254689 -NCIT:C8203 Stage II Oral Cavity Mucoepidermoid Carcinoma 9 254690 -NCIT:C8204 Stage II Oral Cavity Adenoid Cystic Carcinoma 9 254691 -NCIT:C8035 Stage III Lip and Oral Cavity Cancer AJCC v6 and v7 7 254692 -NCIT:C115059 Stage III Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 254693 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 254694 -NCIT:C5878 Stage III Lip Cancer AJCC v6 and v7 8 254695 -NCIT:C8205 Stage III Lip Basal Cell Carcinoma 9 254696 -NCIT:C5885 Stage III Oral Cavity Cancer AJCC v6 and v7 8 254697 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 254698 -NCIT:C8207 Stage III Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 254699 -NCIT:C8208 Stage III Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 254700 -NCIT:C8036 Stage IV Lip and Oral Cavity Cancer AJCC v6 and v7 7 254701 -NCIT:C115060 Stage IV Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 254702 -NCIT:C115061 Stage IVA Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 254703 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 254704 -NCIT:C115062 Stage IVB Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 254705 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 254706 -NCIT:C115063 Stage IVC Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 254707 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 254708 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 254709 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 254710 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 254711 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 254712 -NCIT:C5879 Stage IV Lip Cancer AJCC v6 and v7 8 254713 -NCIT:C5880 Stage IVA Lip Cancer AJCC v6 and v7 9 254714 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 10 254715 -NCIT:C5881 Stage IVB Lip Cancer AJCC v6 and v7 9 254716 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 10 254717 -NCIT:C5882 Stage IVC Lip Cancer AJCC v6 and v7 9 254718 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 10 254719 -NCIT:C8209 Stage IV Lip Basal Cell Carcinoma 9 254720 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 10 254721 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 10 254722 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 10 254723 -NCIT:C5886 Stage IV Oral Cavity Cancer AJCC v6 and v7 8 254724 -NCIT:C5887 Stage IVA Oral Cavity Cancer AJCC v6 and v7 9 254725 -NCIT:C5863 Stage IVA Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 254726 -NCIT:C5868 Stage IVA Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 254727 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 254728 -NCIT:C5888 Stage IVB Oral Cavity Cancer AJCC v6 and v7 9 254729 -NCIT:C5864 Stage IVB Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 254730 -NCIT:C5867 Stage IVB Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 254731 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 254732 -NCIT:C5889 Stage IVC Oral Cavity Cancer AJCC v6 and v7 9 254733 -NCIT:C5865 Stage IVC Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 254734 -NCIT:C5866 Stage IVC Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 254735 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 254736 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 254737 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 254738 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 254739 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 254740 -NCIT:C8211 Stage IV Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 254741 -NCIT:C5866 Stage IVC Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 254742 -NCIT:C5867 Stage IVB Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 254743 -NCIT:C5868 Stage IVA Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 254744 -NCIT:C8212 Stage IV Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 254745 -NCIT:C5863 Stage IVA Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 254746 -NCIT:C5864 Stage IVB Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 254747 -NCIT:C5865 Stage IVC Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 254748 -NCIT:C87301 Stage IVA Lip and Oral Cavity Cancer AJCC v6 and v7 8 254749 -NCIT:C115061 Stage IVA Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 254750 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 254751 -NCIT:C5880 Stage IVA Lip Cancer AJCC v6 and v7 9 254752 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 10 254753 -NCIT:C5887 Stage IVA Oral Cavity Cancer AJCC v6 and v7 9 254754 -NCIT:C5863 Stage IVA Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 254755 -NCIT:C5868 Stage IVA Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 254756 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 254757 -NCIT:C87302 Stage IVB Lip and Oral Cavity Cancer AJCC v6 and v7 8 254758 -NCIT:C115062 Stage IVB Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 254759 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 254760 -NCIT:C5881 Stage IVB Lip Cancer AJCC v6 and v7 9 254761 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 10 254762 -NCIT:C5888 Stage IVB Oral Cavity Cancer AJCC v6 and v7 9 254763 -NCIT:C5864 Stage IVB Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 254764 -NCIT:C5867 Stage IVB Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 254765 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 254766 -NCIT:C87303 Stage IVC Lip and Oral Cavity Cancer AJCC v6 and v7 8 254767 -NCIT:C115063 Stage IVC Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 254768 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 254769 -NCIT:C5882 Stage IVC Lip Cancer AJCC v6 and v7 9 254770 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 10 254771 -NCIT:C5889 Stage IVC Oral Cavity Cancer AJCC v6 and v7 9 254772 -NCIT:C5865 Stage IVC Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 254773 -NCIT:C5866 Stage IVC Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 254774 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 254775 -NCIT:C156086 Metastatic Lip and Oral Cavity Carcinoma 6 254776 -NCIT:C156087 Metastatic Oral Cavity Carcinoma 7 254777 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 254778 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 254779 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 254780 -NCIT:C156089 Metastatic Oral Cavity Adenoid Cystic Carcinoma 8 254781 -NCIT:C156090 Metastatic Oral Cavity Mucoepidermoid Carcinoma 8 254782 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 8 254783 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 254784 -NCIT:C156088 Metastatic Lip Carcinoma 7 254785 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 254786 -NCIT:C165562 Locally Advanced Lip and Oral Cavity Carcinoma 7 254787 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 8 254788 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 254789 -NCIT:C3490 Lip Carcinoma 6 254790 -NCIT:C156088 Metastatic Lip Carcinoma 7 254791 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 254792 -NCIT:C4042 Lip Squamous Cell Carcinoma 7 254793 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 254794 -NCIT:C4588 Stage 0 Lip Cancer AJCC v6 and v7 7 254795 -NCIT:C5893 Stage 0 Lip Basal Cell Carcinoma AJCC v6 and v7 8 254796 -NCIT:C5876 Stage I Lip Cancer AJCC v6 and v7 7 254797 -NCIT:C8197 Stage I Lip Basal Cell Carcinoma 8 254798 -NCIT:C5877 Stage II Lip Cancer AJCC v6 and v7 7 254799 -NCIT:C8201 Stage II Lip Basal Cell Carcinoma 8 254800 -NCIT:C5878 Stage III Lip Cancer AJCC v6 and v7 7 254801 -NCIT:C8205 Stage III Lip Basal Cell Carcinoma 8 254802 -NCIT:C5879 Stage IV Lip Cancer AJCC v6 and v7 7 254803 -NCIT:C5880 Stage IVA Lip Cancer AJCC v6 and v7 8 254804 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 9 254805 -NCIT:C5881 Stage IVB Lip Cancer AJCC v6 and v7 8 254806 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 9 254807 -NCIT:C5882 Stage IVC Lip Cancer AJCC v6 and v7 8 254808 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 9 254809 -NCIT:C8209 Stage IV Lip Basal Cell Carcinoma 8 254810 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 9 254811 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 9 254812 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 9 254813 -NCIT:C8014 Lip Basal Cell Carcinoma 7 254814 -NCIT:C5893 Stage 0 Lip Basal Cell Carcinoma AJCC v6 and v7 8 254815 -NCIT:C8197 Stage I Lip Basal Cell Carcinoma 8 254816 -NCIT:C8201 Stage II Lip Basal Cell Carcinoma 8 254817 -NCIT:C8205 Stage III Lip Basal Cell Carcinoma 8 254818 -NCIT:C8209 Stage IV Lip Basal Cell Carcinoma 8 254819 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 9 254820 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 9 254821 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 9 254822 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 8 254823 -NCIT:C42690 Lip and Oral Cavity Squamous Cell Carcinoma 6 254824 -NCIT:C115057 Stage I Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 254825 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 254826 -NCIT:C115058 Stage II Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 254827 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 254828 -NCIT:C115059 Stage III Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 254829 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 254830 -NCIT:C115060 Stage IV Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 254831 -NCIT:C115061 Stage IVA Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 254832 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 254833 -NCIT:C115062 Stage IVB Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 254834 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 254835 -NCIT:C115063 Stage IVC Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 254836 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 254837 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 254838 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 254839 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 254840 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 254841 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 254842 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 254843 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 254844 -NCIT:C4042 Lip Squamous Cell Carcinoma 7 254845 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 254846 -NCIT:C4833 Oral Cavity Squamous Cell Carcinoma 7 254847 -NCIT:C129857 Gingival Squamous Cell Carcinoma 8 254848 -NCIT:C129289 Gingival Spindle Cell Carcinoma 9 254849 -NCIT:C8171 Lower Gingival Squamous Cell Carcinoma 9 254850 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 10 254851 -NCIT:C8172 Retromolar Trigone Squamous Cell Carcinoma 9 254852 -NCIT:C8173 Upper Gingival Squamous Cell Carcinoma 9 254853 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 10 254854 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 8 254855 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 254856 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 254857 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 254858 -NCIT:C170774 Alveolar Ridge Squamous Cell Carcinoma 8 254859 -NCIT:C170775 Upper Alveolar Ridge Squamous Cell Carcinoma 9 254860 -NCIT:C170776 Lower Alveolar Ridge Squamous Cell Carcinoma 9 254861 -NCIT:C172644 Unresectable Oral Cavity Squamous Cell Carcinoma 8 254862 -NCIT:C4040 Buccal Mucosa Squamous Cell Carcinoma 8 254863 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 9 254864 -NCIT:C4041 Floor of Mouth Squamous Cell Carcinoma 8 254865 -NCIT:C129873 Floor of Mouth Basaloid Squamous Cell Carcinoma 9 254866 -NCIT:C4648 Tongue Squamous Cell Carcinoma 8 254867 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 254868 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 254869 -NCIT:C4649 Palate Squamous Cell Carcinoma 8 254870 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 254871 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 254872 -NCIT:C54295 Primary Intraosseous Squamous Cell Carcinoma 8 254873 -NCIT:C54303 Primary Intraosseous Squamous Cell Carcinoma Derived From Keratocystic Odontogenic Tumor 9 254874 -NCIT:C7491 Primary Intraosseous Squamous Cell Carcinoma-Solid Type 9 254875 -NCIT:C7498 Keratinizing Primary Intraosseous Squamous Cell Carcinoma-Solid Type 10 254876 -NCIT:C7499 Non-Keratinizing Primary Intraosseous Squamous Cell Carcinoma -Solid Type 10 254877 -NCIT:C7500 Primary Intraosseous Squamous Cell Carcinoma Derived From Odontogenic Cyst 9 254878 -NCIT:C6052 Stage 0 Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 254879 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 254880 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 254881 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 254882 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 254883 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 254884 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 254885 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 254886 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 254887 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 254888 -NCIT:C8174 Oral Cavity Verrucous Carcinoma 8 254889 -NCIT:C179894 Oral Cavity Carcinoma Cuniculatum 9 254890 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 9 254891 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 9 254892 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 9 254893 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 254894 -NCIT:C8037 Recurrent Lip and Oral Cavity Carcinoma 6 254895 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 254896 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 254897 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 254898 -NCIT:C6076 Recurrent Oral Cavity Carcinoma 7 254899 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 254900 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 254901 -NCIT:C8215 Recurrent Oral Cavity Mucoepidermoid Carcinoma 8 254902 -NCIT:C8216 Recurrent Oral Cavity Adenoid Cystic Carcinoma 8 254903 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 7 254904 -NCIT:C8990 Oral Cavity Carcinoma 6 254905 -NCIT:C156087 Metastatic Oral Cavity Carcinoma 7 254906 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 254907 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 254908 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 254909 -NCIT:C156089 Metastatic Oral Cavity Adenoid Cystic Carcinoma 8 254910 -NCIT:C156090 Metastatic Oral Cavity Mucoepidermoid Carcinoma 8 254911 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 8 254912 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 254913 -NCIT:C173720 Odontogenic Carcinoma 7 254914 -NCIT:C173733 Sclerosing Odontogenic Carcinoma 8 254915 -NCIT:C4311 Ghost Cell Odontogenic Carcinoma 8 254916 -NCIT:C54295 Primary Intraosseous Squamous Cell Carcinoma 8 254917 -NCIT:C54303 Primary Intraosseous Squamous Cell Carcinoma Derived From Keratocystic Odontogenic Tumor 9 254918 -NCIT:C7491 Primary Intraosseous Squamous Cell Carcinoma-Solid Type 9 254919 -NCIT:C7498 Keratinizing Primary Intraosseous Squamous Cell Carcinoma-Solid Type 10 254920 -NCIT:C7499 Non-Keratinizing Primary Intraosseous Squamous Cell Carcinoma -Solid Type 10 254921 -NCIT:C7500 Primary Intraosseous Squamous Cell Carcinoma Derived From Odontogenic Cyst 9 254922 -NCIT:C54300 Clear Cell Odontogenic Carcinoma 8 254923 -NCIT:C7492 Ameloblastic Carcinoma 8 254924 -NCIT:C7493 Ameloblastic Carcinoma-Primary Type 9 254925 -NCIT:C7496 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated) 9 254926 -NCIT:C54298 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated), Intraosseous 10 254927 -NCIT:C54299 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated), Peripheral 10 254928 -NCIT:C7497 Ameloblastic Carcinoma Derived From Odontogenic Cyst 9 254929 -NCIT:C4587 Stage 0 Oral Cavity Cancer AJCC v6 and v7 7 254930 -NCIT:C6052 Stage 0 Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 254931 -NCIT:C4824 Tongue Carcinoma 7 254932 -NCIT:C171028 Tongue Adenoid Cystic Carcinoma 8 254933 -NCIT:C5991 Posterior Tongue Adenoid Cystic Carcinoma 9 254934 -NCIT:C6251 Anterior Tongue Adenoid Cystic Carcinoma 9 254935 -NCIT:C173807 Tongue Adenosquamous Carcinoma 8 254936 -NCIT:C181160 Tongue Mucoepidermoid Carcinoma 8 254937 -NCIT:C5990 Posterior Tongue Mucoepidermoid Carcinoma 9 254938 -NCIT:C6250 Anterior Tongue Mucoepidermoid Carcinoma 9 254939 -NCIT:C4648 Tongue Squamous Cell Carcinoma 8 254940 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 254941 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 254942 -NCIT:C6249 Anterior Tongue Carcinoma 8 254943 -NCIT:C6250 Anterior Tongue Mucoepidermoid Carcinoma 9 254944 -NCIT:C6251 Anterior Tongue Adenoid Cystic Carcinoma 9 254945 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 254946 -NCIT:C8407 Posterior Tongue Carcinoma 8 254947 -NCIT:C5990 Posterior Tongue Mucoepidermoid Carcinoma 9 254948 -NCIT:C5991 Posterior Tongue Adenoid Cystic Carcinoma 9 254949 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 254950 -NCIT:C4833 Oral Cavity Squamous Cell Carcinoma 7 254951 -NCIT:C129857 Gingival Squamous Cell Carcinoma 8 254952 -NCIT:C129289 Gingival Spindle Cell Carcinoma 9 254953 -NCIT:C8171 Lower Gingival Squamous Cell Carcinoma 9 254954 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 10 254955 -NCIT:C8172 Retromolar Trigone Squamous Cell Carcinoma 9 254956 -NCIT:C8173 Upper Gingival Squamous Cell Carcinoma 9 254957 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 10 254958 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 8 254959 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 254960 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 254961 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 254962 -NCIT:C170774 Alveolar Ridge Squamous Cell Carcinoma 8 254963 -NCIT:C170775 Upper Alveolar Ridge Squamous Cell Carcinoma 9 254964 -NCIT:C170776 Lower Alveolar Ridge Squamous Cell Carcinoma 9 254965 -NCIT:C172644 Unresectable Oral Cavity Squamous Cell Carcinoma 8 254966 -NCIT:C4040 Buccal Mucosa Squamous Cell Carcinoma 8 254967 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 9 254968 -NCIT:C4041 Floor of Mouth Squamous Cell Carcinoma 8 254969 -NCIT:C129873 Floor of Mouth Basaloid Squamous Cell Carcinoma 9 254970 -NCIT:C4648 Tongue Squamous Cell Carcinoma 8 254971 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 254972 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 254973 -NCIT:C4649 Palate Squamous Cell Carcinoma 8 254974 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 254975 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 254976 -NCIT:C54295 Primary Intraosseous Squamous Cell Carcinoma 8 254977 -NCIT:C54303 Primary Intraosseous Squamous Cell Carcinoma Derived From Keratocystic Odontogenic Tumor 9 254978 -NCIT:C7491 Primary Intraosseous Squamous Cell Carcinoma-Solid Type 9 254979 -NCIT:C7498 Keratinizing Primary Intraosseous Squamous Cell Carcinoma-Solid Type 10 254980 -NCIT:C7499 Non-Keratinizing Primary Intraosseous Squamous Cell Carcinoma -Solid Type 10 254981 -NCIT:C7500 Primary Intraosseous Squamous Cell Carcinoma Derived From Odontogenic Cyst 9 254982 -NCIT:C6052 Stage 0 Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 254983 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 254984 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 254985 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 254986 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 254987 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 254988 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 254989 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 254990 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 254991 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 254992 -NCIT:C8174 Oral Cavity Verrucous Carcinoma 8 254993 -NCIT:C179894 Oral Cavity Carcinoma Cuniculatum 9 254994 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 9 254995 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 9 254996 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 9 254997 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 254998 -NCIT:C5883 Stage I Oral Cavity Cancer AJCC v6 and v7 7 254999 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 255000 -NCIT:C8199 Stage I Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 255001 -NCIT:C8200 Stage I Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 255002 -NCIT:C5884 Stage II Oral Cavity Cancer AJCC v6 and v7 7 255003 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 255004 -NCIT:C8203 Stage II Oral Cavity Mucoepidermoid Carcinoma 8 255005 -NCIT:C8204 Stage II Oral Cavity Adenoid Cystic Carcinoma 8 255006 -NCIT:C5885 Stage III Oral Cavity Cancer AJCC v6 and v7 7 255007 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 255008 -NCIT:C8207 Stage III Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 255009 -NCIT:C8208 Stage III Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 255010 -NCIT:C5886 Stage IV Oral Cavity Cancer AJCC v6 and v7 7 255011 -NCIT:C5887 Stage IVA Oral Cavity Cancer AJCC v6 and v7 8 255012 -NCIT:C5863 Stage IVA Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 255013 -NCIT:C5868 Stage IVA Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 255014 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 255015 -NCIT:C5888 Stage IVB Oral Cavity Cancer AJCC v6 and v7 8 255016 -NCIT:C5864 Stage IVB Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 255017 -NCIT:C5867 Stage IVB Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 255018 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 255019 -NCIT:C5889 Stage IVC Oral Cavity Cancer AJCC v6 and v7 8 255020 -NCIT:C5865 Stage IVC Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 255021 -NCIT:C5866 Stage IVC Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 255022 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 255023 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 255024 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 255025 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 255026 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 255027 -NCIT:C8211 Stage IV Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 255028 -NCIT:C5866 Stage IVC Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 255029 -NCIT:C5867 Stage IVB Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 255030 -NCIT:C5868 Stage IVA Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 255031 -NCIT:C8212 Stage IV Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 255032 -NCIT:C5863 Stage IVA Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 255033 -NCIT:C5864 Stage IVB Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 255034 -NCIT:C5865 Stage IVC Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 255035 -NCIT:C5914 Oral Cavity Adenocarcinoma 7 255036 -NCIT:C6076 Recurrent Oral Cavity Carcinoma 7 255037 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 255038 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 255039 -NCIT:C8215 Recurrent Oral Cavity Mucoepidermoid Carcinoma 8 255040 -NCIT:C8216 Recurrent Oral Cavity Adenoid Cystic Carcinoma 8 255041 -NCIT:C7721 Gingival Carcinoma 7 255042 -NCIT:C129857 Gingival Squamous Cell Carcinoma 8 255043 -NCIT:C129289 Gingival Spindle Cell Carcinoma 9 255044 -NCIT:C8171 Lower Gingival Squamous Cell Carcinoma 9 255045 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 10 255046 -NCIT:C8172 Retromolar Trigone Squamous Cell Carcinoma 9 255047 -NCIT:C8173 Upper Gingival Squamous Cell Carcinoma 9 255048 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 10 255049 -NCIT:C8392 Upper Gingival Carcinoma 8 255050 -NCIT:C8173 Upper Gingival Squamous Cell Carcinoma 9 255051 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 10 255052 -NCIT:C8393 Lower Gingival Carcinoma 8 255053 -NCIT:C8171 Lower Gingival Squamous Cell Carcinoma 9 255054 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 10 255055 -NCIT:C8177 Oral Cavity Mucoepidermoid Carcinoma 7 255056 -NCIT:C156090 Metastatic Oral Cavity Mucoepidermoid Carcinoma 8 255057 -NCIT:C181160 Tongue Mucoepidermoid Carcinoma 8 255058 -NCIT:C5990 Posterior Tongue Mucoepidermoid Carcinoma 9 255059 -NCIT:C6250 Anterior Tongue Mucoepidermoid Carcinoma 9 255060 -NCIT:C6214 Hard Palate Mucoepidermoid Carcinoma 8 255061 -NCIT:C8178 Floor of Mouth Mucoepidermoid Carcinoma 8 255062 -NCIT:C8199 Stage I Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 255063 -NCIT:C8203 Stage II Oral Cavity Mucoepidermoid Carcinoma 8 255064 -NCIT:C8207 Stage III Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 255065 -NCIT:C8211 Stage IV Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 255066 -NCIT:C5866 Stage IVC Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 255067 -NCIT:C5867 Stage IVB Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 255068 -NCIT:C5868 Stage IVA Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 255069 -NCIT:C8215 Recurrent Oral Cavity Mucoepidermoid Carcinoma 8 255070 -NCIT:C8179 Oral Cavity Adenoid Cystic Carcinoma 7 255071 -NCIT:C156089 Metastatic Oral Cavity Adenoid Cystic Carcinoma 8 255072 -NCIT:C171028 Tongue Adenoid Cystic Carcinoma 8 255073 -NCIT:C5991 Posterior Tongue Adenoid Cystic Carcinoma 9 255074 -NCIT:C6251 Anterior Tongue Adenoid Cystic Carcinoma 9 255075 -NCIT:C6213 Hard Palate Adenoid Cystic Carcinoma 8 255076 -NCIT:C8180 Floor of Mouth Adenoid Cystic Carcinoma 8 255077 -NCIT:C8200 Stage I Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 255078 -NCIT:C8204 Stage II Oral Cavity Adenoid Cystic Carcinoma 8 255079 -NCIT:C8208 Stage III Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 255080 -NCIT:C8212 Stage IV Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 255081 -NCIT:C5863 Stage IVA Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 255082 -NCIT:C5864 Stage IVB Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 255083 -NCIT:C5865 Stage IVC Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 255084 -NCIT:C8216 Recurrent Oral Cavity Adenoid Cystic Carcinoma 8 255085 -NCIT:C8463 Palate Carcinoma 7 255086 -NCIT:C4649 Palate Squamous Cell Carcinoma 8 255087 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 255088 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 255089 -NCIT:C8394 Hard Palate Carcinoma 8 255090 -NCIT:C6213 Hard Palate Adenoid Cystic Carcinoma 9 255091 -NCIT:C6214 Hard Palate Mucoepidermoid Carcinoma 9 255092 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 255093 -NCIT:C8395 Soft Palate Carcinoma 8 255094 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 255095 -NCIT:C9319 Floor of the Mouth Carcinoma 7 255096 -NCIT:C4041 Floor of Mouth Squamous Cell Carcinoma 8 255097 -NCIT:C129873 Floor of Mouth Basaloid Squamous Cell Carcinoma 9 255098 -NCIT:C8178 Floor of Mouth Mucoepidermoid Carcinoma 8 255099 -NCIT:C8180 Floor of Mouth Adenoid Cystic Carcinoma 8 255100 -NCIT:C3811 Malignant Salivary Gland Neoplasm 4 255101 -NCIT:C173690 Salivary Gland Lymphoma 5 255102 -NCIT:C173691 Salivary Gland Non-Hodgkin Lymphoma 6 255103 -NCIT:C173693 Salivary Gland Mucosa-Associated Lymphoid Tissue Lymphoma 7 255104 -NCIT:C35687 Parotid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 8 255105 -NCIT:C173715 Salivary Gland Follicular Lymphoma 7 255106 -NCIT:C173716 Parotid Gland Follicular Lymphoma 8 255107 -NCIT:C173717 Salivary Gland Diffuse Large B-Cell Lymphoma 7 255108 -NCIT:C173719 Parotid Gland Diffuse Large B-Cell Lymphoma 8 255109 -NCIT:C5981 Major Salivary Gland Non-Hodgkin Lymphoma 7 255110 -NCIT:C5951 Parotid Gland Non-Hodgkin Lymphoma 8 255111 -NCIT:C173716 Parotid Gland Follicular Lymphoma 9 255112 -NCIT:C173719 Parotid Gland Diffuse Large B-Cell Lymphoma 9 255113 -NCIT:C181210 Parotid Gland Mantle Cell Lymphoma 9 255114 -NCIT:C35687 Parotid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 9 255115 -NCIT:C173692 Salivary Gland Hodgkin Lymphoma 6 255116 -NCIT:C177721 Refractory Malignant Salivary Gland Neoplasm 5 255117 -NCIT:C177722 Refractory Salivary Gland Carcinoma 6 255118 -NCIT:C35675 Recurrent Malignant Salivary Gland Neoplasm 5 255119 -NCIT:C7926 Recurrent Salivary Gland Carcinoma 6 255120 -NCIT:C153611 Recurrent Salivary Duct Carcinoma 7 255121 -NCIT:C153612 Recurrent Minor Salivary Gland Adenocarcinoma 7 255122 -NCIT:C153800 Recurrent Parotid Gland Carcinoma 7 255123 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 8 255124 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 8 255125 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 255126 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 8 255127 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 255128 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 8 255129 -NCIT:C153801 Recurrent Submandibular Gland Carcinoma 7 255130 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 8 255131 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 8 255132 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 255133 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 8 255134 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 255135 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 8 255136 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 255137 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 255138 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 255139 -NCIT:C4410 Malignant Minor Salivary Gland Neoplasm 5 255140 -NCIT:C5955 Malignant Mixed Tumor of the Minor Salivary Gland 6 255141 -NCIT:C5976 Minor Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 255142 -NCIT:C5957 Minor Salivary Gland Carcinoma 6 255143 -NCIT:C5936 Minor Salivary Gland Adenoid Cystic Carcinoma 7 255144 -NCIT:C5948 Minor Salivary Gland Adenocarcinoma 7 255145 -NCIT:C153612 Recurrent Minor Salivary Gland Adenocarcinoma 8 255146 -NCIT:C160974 Cribriform Adenocarcinoma of Minor Salivary Gland 8 255147 -NCIT:C6243 Minor Salivary Gland Acinic Cell Carcinoma 8 255148 -NCIT:C5953 Minor Salivary Gland Mucoepidermoid Carcinoma 7 255149 -NCIT:C5954 Minor Salivary Gland Undifferentiated Carcinoma 7 255150 -NCIT:C5956 Minor Salivary Gland Small Cell Neuroendocrine Carcinoma 7 255151 -NCIT:C5959 Minor Salivary Gland Squamous Cell Carcinoma 7 255152 -NCIT:C5976 Minor Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 255153 -NCIT:C4762 Malignant Major Salivary Gland Neoplasm 5 255154 -NCIT:C3525 Malignant Parotid Gland Neoplasm 6 255155 -NCIT:C156280 Parotid Gland Sarcoma 7 255156 -NCIT:C156281 Parotid Gland Liposarcoma 8 255157 -NCIT:C5952 Parotid Gland Kaposi Sarcoma 8 255158 -NCIT:C5945 Malignant Parotid Gland Mixed Tumor 7 255159 -NCIT:C35832 Parotid Gland Carcinosarcoma 8 255160 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 255161 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 255162 -NCIT:C5951 Parotid Gland Non-Hodgkin Lymphoma 7 255163 -NCIT:C173716 Parotid Gland Follicular Lymphoma 8 255164 -NCIT:C173719 Parotid Gland Diffuse Large B-Cell Lymphoma 8 255165 -NCIT:C181210 Parotid Gland Mantle Cell Lymphoma 8 255166 -NCIT:C35687 Parotid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 8 255167 -NCIT:C6791 Parotid Gland Carcinoma 7 255168 -NCIT:C153800 Recurrent Parotid Gland Carcinoma 8 255169 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 9 255170 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 9 255171 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 255172 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 9 255173 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 9 255174 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 9 255175 -NCIT:C5937 Parotid Gland Adenoid Cystic Carcinoma 8 255176 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 9 255177 -NCIT:C5938 Parotid Gland Mucoepidermoid Carcinoma 8 255178 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 9 255179 -NCIT:C5941 Parotid Gland Adenocarcinoma 8 255180 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 255181 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 255182 -NCIT:C5942 Parotid Gland Squamous Cell Carcinoma 8 255183 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 9 255184 -NCIT:C5946 Parotid Gland Undifferentiated Carcinoma 8 255185 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 9 255186 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 255187 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 255188 -NCIT:C3526 Malignant Submandibular Gland Neoplasm 6 255189 -NCIT:C5944 Malignant Submandibular Gland Mixed Tumor 7 255190 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 255191 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 255192 -NCIT:C8396 Submandibular Gland Carcinoma 7 255193 -NCIT:C153801 Recurrent Submandibular Gland Carcinoma 8 255194 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 9 255195 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 9 255196 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 255197 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 9 255198 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 9 255199 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 9 255200 -NCIT:C5935 Submandibular Gland Adenoid Cystic Carcinoma 8 255201 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 9 255202 -NCIT:C5939 Submandibular Gland Mucoepidermoid Carcinoma 8 255203 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 9 255204 -NCIT:C5940 Submandibular Gland Adenocarcinoma 8 255205 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 255206 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 255207 -NCIT:C5943 Submandibular Gland Squamous Cell Carcinoma 8 255208 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 9 255209 -NCIT:C5947 Submandibular Gland Undifferentiated Carcinoma 8 255210 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 9 255211 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 255212 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 255213 -NCIT:C3527 Malignant Sublingual Gland Neoplasm 6 255214 -NCIT:C8397 Sublingual Gland Carcinoma 7 255215 -NCIT:C5958 Sublingual Gland Adenocarcinoma 8 255216 -NCIT:C5902 Malignant Mixed Tumor of the Major Salivary Gland 6 255217 -NCIT:C5944 Malignant Submandibular Gland Mixed Tumor 7 255218 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 255219 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 255220 -NCIT:C5945 Malignant Parotid Gland Mixed Tumor 7 255221 -NCIT:C35832 Parotid Gland Carcinosarcoma 8 255222 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 255223 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 255224 -NCIT:C5975 Major Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 255225 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 255226 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 255227 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 255228 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 255229 -NCIT:C5907 Major Salivary Gland Carcinoma 6 255230 -NCIT:C132778 Major Salivary Gland Cancer by AJCC v7 Stage 7 255231 -NCIT:C5895 Stage I Major Salivary Gland Cancer AJCC v7 8 255232 -NCIT:C5896 Stage II Major Salivary Gland Cancer AJCC v7 8 255233 -NCIT:C5897 Stage III Major Salivary Gland Cancer AJCC v7 8 255234 -NCIT:C5898 Stage IV Major Salivary Gland Cancer AJCC v7 8 255235 -NCIT:C35694 Stage IVA Major Salivary Gland Cancer AJCC v7 9 255236 -NCIT:C35695 Stage IVB Major Salivary Gland Cancer AJCC v7 9 255237 -NCIT:C35696 Stage IVC Major Salivary Gland Cancer AJCC v7 9 255238 -NCIT:C5899 Stage IV Major Salivary Gland Carcinoma with Metastasis 9 255239 -NCIT:C5900 Stage IV Major Salivary Gland Carcinoma without Metastasis 9 255240 -NCIT:C132779 Major Salivary Gland Cancer by AJCC v8 Stage 7 255241 -NCIT:C132781 Stage I Major Salivary Gland Cancer AJCC v8 8 255242 -NCIT:C132783 Stage 0 Major Salivary Gland Cancer AJCC v8 8 255243 -NCIT:C132785 Stage II Major Salivary Gland Cancer AJCC v8 8 255244 -NCIT:C132786 Stage III Major Salivary Gland Cancer AJCC v8 8 255245 -NCIT:C132787 Stage IV Major Salivary Gland Cancer AJCC v8 8 255246 -NCIT:C132788 Stage IVA Major Salivary Gland Cancer AJCC v8 9 255247 -NCIT:C132789 Stage IVB Major Salivary Gland Cancer AJCC v8 9 255248 -NCIT:C132790 Stage IVC Major Salivary Gland Cancer AJCC v8 9 255249 -NCIT:C181161 Major Salivary Gland Squamous Cell Carcinoma 7 255250 -NCIT:C5942 Parotid Gland Squamous Cell Carcinoma 8 255251 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 9 255252 -NCIT:C5943 Submandibular Gland Squamous Cell Carcinoma 8 255253 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 9 255254 -NCIT:C5903 Major Salivary Gland Adenocarcinoma 7 255255 -NCIT:C5901 Major Salivary Gland Acinic Cell Carcinoma 8 255256 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 255257 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 255258 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 255259 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 255260 -NCIT:C5940 Submandibular Gland Adenocarcinoma 8 255261 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 255262 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 255263 -NCIT:C5941 Parotid Gland Adenocarcinoma 8 255264 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 255265 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 255266 -NCIT:C5958 Sublingual Gland Adenocarcinoma 8 255267 -NCIT:C5905 Major Salivary Gland Adenoid Cystic Carcinoma 7 255268 -NCIT:C5935 Submandibular Gland Adenoid Cystic Carcinoma 8 255269 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 9 255270 -NCIT:C5937 Parotid Gland Adenoid Cystic Carcinoma 8 255271 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 9 255272 -NCIT:C5906 Major Salivary Gland Mucoepidermoid Carcinoma 7 255273 -NCIT:C5938 Parotid Gland Mucoepidermoid Carcinoma 8 255274 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 9 255275 -NCIT:C5939 Submandibular Gland Mucoepidermoid Carcinoma 8 255276 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 9 255277 -NCIT:C5975 Major Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 255278 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 255279 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 255280 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 255281 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 255282 -NCIT:C6791 Parotid Gland Carcinoma 7 255283 -NCIT:C153800 Recurrent Parotid Gland Carcinoma 8 255284 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 9 255285 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 9 255286 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 255287 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 9 255288 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 9 255289 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 9 255290 -NCIT:C5937 Parotid Gland Adenoid Cystic Carcinoma 8 255291 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 9 255292 -NCIT:C5938 Parotid Gland Mucoepidermoid Carcinoma 8 255293 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 9 255294 -NCIT:C5941 Parotid Gland Adenocarcinoma 8 255295 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 255296 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 255297 -NCIT:C5942 Parotid Gland Squamous Cell Carcinoma 8 255298 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 9 255299 -NCIT:C5946 Parotid Gland Undifferentiated Carcinoma 8 255300 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 9 255301 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 255302 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 255303 -NCIT:C8396 Submandibular Gland Carcinoma 7 255304 -NCIT:C153801 Recurrent Submandibular Gland Carcinoma 8 255305 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 9 255306 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 9 255307 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 255308 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 9 255309 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 9 255310 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 9 255311 -NCIT:C5935 Submandibular Gland Adenoid Cystic Carcinoma 8 255312 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 9 255313 -NCIT:C5939 Submandibular Gland Mucoepidermoid Carcinoma 8 255314 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 9 255315 -NCIT:C5940 Submandibular Gland Adenocarcinoma 8 255316 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 255317 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 255318 -NCIT:C5943 Submandibular Gland Squamous Cell Carcinoma 8 255319 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 9 255320 -NCIT:C5947 Submandibular Gland Undifferentiated Carcinoma 8 255321 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 9 255322 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 255323 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 255324 -NCIT:C8397 Sublingual Gland Carcinoma 7 255325 -NCIT:C5958 Sublingual Gland Adenocarcinoma 8 255326 -NCIT:C5981 Major Salivary Gland Non-Hodgkin Lymphoma 6 255327 -NCIT:C5951 Parotid Gland Non-Hodgkin Lymphoma 7 255328 -NCIT:C173716 Parotid Gland Follicular Lymphoma 8 255329 -NCIT:C173719 Parotid Gland Diffuse Large B-Cell Lymphoma 8 255330 -NCIT:C181210 Parotid Gland Mantle Cell Lymphoma 8 255331 -NCIT:C35687 Parotid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 8 255332 -NCIT:C5983 Major Salivary Gland Sarcoma 6 255333 -NCIT:C156280 Parotid Gland Sarcoma 7 255334 -NCIT:C156281 Parotid Gland Liposarcoma 8 255335 -NCIT:C5952 Parotid Gland Kaposi Sarcoma 8 255336 -NCIT:C8025 Malignant Mixed Tumor of the Salivary Gland 5 255337 -NCIT:C35831 Salivary Gland Carcinosarcoma 6 255338 -NCIT:C35832 Parotid Gland Carcinosarcoma 7 255339 -NCIT:C40410 Salivary Gland Carcinoma ex Pleomorphic Adenoma 6 255340 -NCIT:C5975 Major Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 255341 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 255342 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 255343 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 255344 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 255345 -NCIT:C5976 Minor Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 255346 -NCIT:C5902 Malignant Mixed Tumor of the Major Salivary Gland 6 255347 -NCIT:C5944 Malignant Submandibular Gland Mixed Tumor 7 255348 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 255349 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 255350 -NCIT:C5945 Malignant Parotid Gland Mixed Tumor 7 255351 -NCIT:C35832 Parotid Gland Carcinosarcoma 8 255352 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 255353 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 255354 -NCIT:C5975 Major Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 255355 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 255356 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 255357 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 255358 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 255359 -NCIT:C5955 Malignant Mixed Tumor of the Minor Salivary Gland 6 255360 -NCIT:C5976 Minor Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 255361 -NCIT:C9272 Salivary Gland Carcinoma 5 255362 -NCIT:C118824 Childhood Salivary Gland Carcinoma 6 255363 -NCIT:C190273 Childhood Salivary Gland Mucoepidermoid Carcinoma 7 255364 -NCIT:C190274 Childhood Salivary Gland Acinic Cell Carcinoma 7 255365 -NCIT:C118825 Adult Salivary Gland Carcinoma 6 255366 -NCIT:C158463 Metastatic Salivary Gland Carcinoma 6 255367 -NCIT:C158464 Locally Advanced Salivary Gland Carcinoma 7 255368 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 7 255369 -NCIT:C177723 Advanced Salivary Gland Carcinoma 7 255370 -NCIT:C5899 Stage IV Major Salivary Gland Carcinoma with Metastasis 7 255371 -NCIT:C173649 Salivary Gland Poorly Differentiated Carcinoma 6 255372 -NCIT:C173653 Salivary Gland Neuroendocrine Carcinoma 7 255373 -NCIT:C173650 Salivary Gland Large Cell Neuroendocrine Carcinoma 8 255374 -NCIT:C35703 Salivary Gland Small Cell Neuroendocrine Carcinoma 8 255375 -NCIT:C5956 Minor Salivary Gland Small Cell Neuroendocrine Carcinoma 9 255376 -NCIT:C35735 Salivary Gland Large Cell Carcinoma 7 255377 -NCIT:C173650 Salivary Gland Large Cell Neuroendocrine Carcinoma 8 255378 -NCIT:C174034 Unresectable Salivary Gland Carcinoma 6 255379 -NCIT:C172651 Unresectable Salivary Gland Squamous Cell Carcinoma 7 255380 -NCIT:C177722 Refractory Salivary Gland Carcinoma 6 255381 -NCIT:C181079 Hybrid Salivary Gland Carcinoma 6 255382 -NCIT:C35700 Salivary Gland Myoepithelial Carcinoma 6 255383 -NCIT:C35701 Salivary Gland Epithelial-Myoepithelial Carcinoma 6 255384 -NCIT:C35736 Salivary Gland Lymphoepithelial Carcinoma 6 255385 -NCIT:C35737 Salivary Gland Adenosquamous Carcinoma 6 255386 -NCIT:C40410 Salivary Gland Carcinoma ex Pleomorphic Adenoma 6 255387 -NCIT:C5975 Major Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 255388 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 255389 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 255390 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 255391 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 255392 -NCIT:C5976 Minor Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 255393 -NCIT:C5907 Major Salivary Gland Carcinoma 6 255394 -NCIT:C132778 Major Salivary Gland Cancer by AJCC v7 Stage 7 255395 -NCIT:C5895 Stage I Major Salivary Gland Cancer AJCC v7 8 255396 -NCIT:C5896 Stage II Major Salivary Gland Cancer AJCC v7 8 255397 -NCIT:C5897 Stage III Major Salivary Gland Cancer AJCC v7 8 255398 -NCIT:C5898 Stage IV Major Salivary Gland Cancer AJCC v7 8 255399 -NCIT:C35694 Stage IVA Major Salivary Gland Cancer AJCC v7 9 255400 -NCIT:C35695 Stage IVB Major Salivary Gland Cancer AJCC v7 9 255401 -NCIT:C35696 Stage IVC Major Salivary Gland Cancer AJCC v7 9 255402 -NCIT:C5899 Stage IV Major Salivary Gland Carcinoma with Metastasis 9 255403 -NCIT:C5900 Stage IV Major Salivary Gland Carcinoma without Metastasis 9 255404 -NCIT:C132779 Major Salivary Gland Cancer by AJCC v8 Stage 7 255405 -NCIT:C132781 Stage I Major Salivary Gland Cancer AJCC v8 8 255406 -NCIT:C132783 Stage 0 Major Salivary Gland Cancer AJCC v8 8 255407 -NCIT:C132785 Stage II Major Salivary Gland Cancer AJCC v8 8 255408 -NCIT:C132786 Stage III Major Salivary Gland Cancer AJCC v8 8 255409 -NCIT:C132787 Stage IV Major Salivary Gland Cancer AJCC v8 8 255410 -NCIT:C132788 Stage IVA Major Salivary Gland Cancer AJCC v8 9 255411 -NCIT:C132789 Stage IVB Major Salivary Gland Cancer AJCC v8 9 255412 -NCIT:C132790 Stage IVC Major Salivary Gland Cancer AJCC v8 9 255413 -NCIT:C181161 Major Salivary Gland Squamous Cell Carcinoma 7 255414 -NCIT:C5942 Parotid Gland Squamous Cell Carcinoma 8 255415 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 9 255416 -NCIT:C5943 Submandibular Gland Squamous Cell Carcinoma 8 255417 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 9 255418 -NCIT:C5903 Major Salivary Gland Adenocarcinoma 7 255419 -NCIT:C5901 Major Salivary Gland Acinic Cell Carcinoma 8 255420 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 255421 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 255422 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 255423 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 255424 -NCIT:C5940 Submandibular Gland Adenocarcinoma 8 255425 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 255426 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 255427 -NCIT:C5941 Parotid Gland Adenocarcinoma 8 255428 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 255429 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 255430 -NCIT:C5958 Sublingual Gland Adenocarcinoma 8 255431 -NCIT:C5905 Major Salivary Gland Adenoid Cystic Carcinoma 7 255432 -NCIT:C5935 Submandibular Gland Adenoid Cystic Carcinoma 8 255433 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 9 255434 -NCIT:C5937 Parotid Gland Adenoid Cystic Carcinoma 8 255435 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 9 255436 -NCIT:C5906 Major Salivary Gland Mucoepidermoid Carcinoma 7 255437 -NCIT:C5938 Parotid Gland Mucoepidermoid Carcinoma 8 255438 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 9 255439 -NCIT:C5939 Submandibular Gland Mucoepidermoid Carcinoma 8 255440 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 9 255441 -NCIT:C5975 Major Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 255442 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 255443 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 255444 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 255445 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 255446 -NCIT:C6791 Parotid Gland Carcinoma 7 255447 -NCIT:C153800 Recurrent Parotid Gland Carcinoma 8 255448 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 9 255449 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 9 255450 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 255451 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 9 255452 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 9 255453 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 9 255454 -NCIT:C5937 Parotid Gland Adenoid Cystic Carcinoma 8 255455 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 9 255456 -NCIT:C5938 Parotid Gland Mucoepidermoid Carcinoma 8 255457 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 9 255458 -NCIT:C5941 Parotid Gland Adenocarcinoma 8 255459 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 255460 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 255461 -NCIT:C5942 Parotid Gland Squamous Cell Carcinoma 8 255462 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 9 255463 -NCIT:C5946 Parotid Gland Undifferentiated Carcinoma 8 255464 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 9 255465 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 255466 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 255467 -NCIT:C8396 Submandibular Gland Carcinoma 7 255468 -NCIT:C153801 Recurrent Submandibular Gland Carcinoma 8 255469 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 9 255470 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 9 255471 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 255472 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 9 255473 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 9 255474 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 9 255475 -NCIT:C5935 Submandibular Gland Adenoid Cystic Carcinoma 8 255476 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 9 255477 -NCIT:C5939 Submandibular Gland Mucoepidermoid Carcinoma 8 255478 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 9 255479 -NCIT:C5940 Submandibular Gland Adenocarcinoma 8 255480 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 255481 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 255482 -NCIT:C5943 Submandibular Gland Squamous Cell Carcinoma 8 255483 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 9 255484 -NCIT:C5947 Submandibular Gland Undifferentiated Carcinoma 8 255485 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 9 255486 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 255487 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 255488 -NCIT:C8397 Sublingual Gland Carcinoma 7 255489 -NCIT:C5958 Sublingual Gland Adenocarcinoma 8 255490 -NCIT:C5908 Salivary Gland Mucoepidermoid Carcinoma 6 255491 -NCIT:C190273 Childhood Salivary Gland Mucoepidermoid Carcinoma 7 255492 -NCIT:C5906 Major Salivary Gland Mucoepidermoid Carcinoma 7 255493 -NCIT:C5938 Parotid Gland Mucoepidermoid Carcinoma 8 255494 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 9 255495 -NCIT:C5939 Submandibular Gland Mucoepidermoid Carcinoma 8 255496 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 9 255497 -NCIT:C5953 Minor Salivary Gland Mucoepidermoid Carcinoma 7 255498 -NCIT:C8015 Low Grade Salivary Gland Mucoepidermoid Carcinoma 7 255499 -NCIT:C8017 Intermediate Grade Salivary Gland Mucoepidermoid Carcinoma 7 255500 -NCIT:C8019 High Grade Salivary Gland Mucoepidermoid Carcinoma 7 255501 -NCIT:C5957 Minor Salivary Gland Carcinoma 6 255502 -NCIT:C5936 Minor Salivary Gland Adenoid Cystic Carcinoma 7 255503 -NCIT:C5948 Minor Salivary Gland Adenocarcinoma 7 255504 -NCIT:C153612 Recurrent Minor Salivary Gland Adenocarcinoma 8 255505 -NCIT:C160974 Cribriform Adenocarcinoma of Minor Salivary Gland 8 255506 -NCIT:C6243 Minor Salivary Gland Acinic Cell Carcinoma 8 255507 -NCIT:C5953 Minor Salivary Gland Mucoepidermoid Carcinoma 7 255508 -NCIT:C5954 Minor Salivary Gland Undifferentiated Carcinoma 7 255509 -NCIT:C5956 Minor Salivary Gland Small Cell Neuroendocrine Carcinoma 7 255510 -NCIT:C5959 Minor Salivary Gland Squamous Cell Carcinoma 7 255511 -NCIT:C5976 Minor Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 255512 -NCIT:C62191 Salivary Gland Clear Cell Carcinoma 6 255513 -NCIT:C7926 Recurrent Salivary Gland Carcinoma 6 255514 -NCIT:C153611 Recurrent Salivary Duct Carcinoma 7 255515 -NCIT:C153612 Recurrent Minor Salivary Gland Adenocarcinoma 7 255516 -NCIT:C153800 Recurrent Parotid Gland Carcinoma 7 255517 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 8 255518 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 8 255519 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 255520 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 8 255521 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 255522 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 8 255523 -NCIT:C153801 Recurrent Submandibular Gland Carcinoma 7 255524 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 8 255525 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 8 255526 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 255527 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 8 255528 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 255529 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 8 255530 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 255531 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 255532 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 255533 -NCIT:C7991 Salivary Gland Squamous Cell Carcinoma 6 255534 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 7 255535 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 255536 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 255537 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 255538 -NCIT:C172651 Unresectable Salivary Gland Squamous Cell Carcinoma 7 255539 -NCIT:C181161 Major Salivary Gland Squamous Cell Carcinoma 7 255540 -NCIT:C5942 Parotid Gland Squamous Cell Carcinoma 8 255541 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 9 255542 -NCIT:C5943 Submandibular Gland Squamous Cell Carcinoma 8 255543 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 9 255544 -NCIT:C5959 Minor Salivary Gland Squamous Cell Carcinoma 7 255545 -NCIT:C8022 Salivary Gland Poorly Differentiated Squamous Cell Carcinoma 7 255546 -NCIT:C8012 Low Grade Salivary Gland Carcinoma 6 255547 -NCIT:C123384 Salivary Gland Secretory Carcinoma 7 255548 -NCIT:C35702 Salivary Gland Polymorphous Adenocarcinoma 7 255549 -NCIT:C173576 Oropharyngeal Polymorphous Adenocarcinoma 8 255550 -NCIT:C62192 Salivary Gland Intraductal Carcinoma 7 255551 -NCIT:C8015 Low Grade Salivary Gland Mucoepidermoid Carcinoma 7 255552 -NCIT:C8018 High Grade Salivary Gland Carcinoma 6 255553 -NCIT:C5904 Salivary Duct Carcinoma 7 255554 -NCIT:C153611 Recurrent Salivary Duct Carcinoma 8 255555 -NCIT:C62194 Salivary Gland Oncocytic Carcinoma 7 255556 -NCIT:C8019 High Grade Salivary Gland Mucoepidermoid Carcinoma 7 255557 -NCIT:C8021 Salivary Gland Adenocarcinoma 6 255558 -NCIT:C123384 Salivary Gland Secretory Carcinoma 7 255559 -NCIT:C173648 Salivary Gland Sebaceous Carcinoma 7 255560 -NCIT:C35702 Salivary Gland Polymorphous Adenocarcinoma 7 255561 -NCIT:C173576 Oropharyngeal Polymorphous Adenocarcinoma 8 255562 -NCIT:C3678 Salivary Gland Basal Cell Adenocarcinoma 7 255563 -NCIT:C5903 Major Salivary Gland Adenocarcinoma 7 255564 -NCIT:C5901 Major Salivary Gland Acinic Cell Carcinoma 8 255565 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 255566 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 255567 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 255568 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 255569 -NCIT:C5940 Submandibular Gland Adenocarcinoma 8 255570 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 255571 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 255572 -NCIT:C5941 Parotid Gland Adenocarcinoma 8 255573 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 255574 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 255575 -NCIT:C5958 Sublingual Gland Adenocarcinoma 8 255576 -NCIT:C5904 Salivary Duct Carcinoma 7 255577 -NCIT:C153611 Recurrent Salivary Duct Carcinoma 8 255578 -NCIT:C5948 Minor Salivary Gland Adenocarcinoma 7 255579 -NCIT:C153612 Recurrent Minor Salivary Gland Adenocarcinoma 8 255580 -NCIT:C160974 Cribriform Adenocarcinoma of Minor Salivary Gland 8 255581 -NCIT:C6243 Minor Salivary Gland Acinic Cell Carcinoma 8 255582 -NCIT:C5980 Salivary Gland Cystadenocarcinoma 7 255583 -NCIT:C62192 Salivary Gland Intraductal Carcinoma 7 255584 -NCIT:C62193 Salivary Gland Mucinous Adenocarcinoma 7 255585 -NCIT:C62194 Salivary Gland Oncocytic Carcinoma 7 255586 -NCIT:C62196 Salivary Gland Adenocarcinoma, Not Otherwise Specified 7 255587 -NCIT:C8013 Salivary Gland Acinic Cell Carcinoma 7 255588 -NCIT:C190274 Childhood Salivary Gland Acinic Cell Carcinoma 8 255589 -NCIT:C5901 Major Salivary Gland Acinic Cell Carcinoma 8 255590 -NCIT:C5933 Parotid Gland Acinic Cell Carcinoma 9 255591 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 10 255592 -NCIT:C5934 Submandibular Gland Acinic Cell Carcinoma 9 255593 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 10 255594 -NCIT:C6243 Minor Salivary Gland Acinic Cell Carcinoma 8 255595 -NCIT:C8024 Salivary Gland Undifferentiated Carcinoma 6 255596 -NCIT:C5946 Parotid Gland Undifferentiated Carcinoma 7 255597 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 8 255598 -NCIT:C5947 Submandibular Gland Undifferentiated Carcinoma 7 255599 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 8 255600 -NCIT:C5954 Minor Salivary Gland Undifferentiated Carcinoma 7 255601 -NCIT:C8026 Salivary Gland Adenoid Cystic Carcinoma 6 255602 -NCIT:C5905 Major Salivary Gland Adenoid Cystic Carcinoma 7 255603 -NCIT:C5935 Submandibular Gland Adenoid Cystic Carcinoma 8 255604 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 9 255605 -NCIT:C5937 Parotid Gland Adenoid Cystic Carcinoma 8 255606 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 9 255607 -NCIT:C5936 Minor Salivary Gland Adenoid Cystic Carcinoma 7 255608 -NCIT:C4940 Malignant Neck Neoplasm 4 255609 -NCIT:C162823 Malignant Parapharyngeal Neoplasm 5 255610 -NCIT:C162828 Malignant Retropharyngeal Neoplasm 5 255611 -NCIT:C6077 Neck Carcinoma 5 255612 -NCIT:C35506 Throat Carcinoma 6 255613 -NCIT:C4855 Laryngeal Carcinoma 7 255614 -NCIT:C118811 Childhood Laryngeal Carcinoma 8 255615 -NCIT:C133156 Laryngeal Cancer by AJCC v8 Stage 8 255616 -NCIT:C133158 Stage I Laryngeal Cancer AJCC v8 9 255617 -NCIT:C133159 Stage II Laryngeal Cancer AJCC v8 9 255618 -NCIT:C133160 Stage III Laryngeal Cancer AJCC v8 9 255619 -NCIT:C133161 Stage IV Laryngeal Cancer AJCC v8 9 255620 -NCIT:C133162 Stage IVA Laryngeal Cancer AJCC v8 10 255621 -NCIT:C133163 Stage IVB Laryngeal Cancer AJCC v8 10 255622 -NCIT:C133164 Stage IVC Laryngeal Cancer AJCC v8 10 255623 -NCIT:C9100 Stage 0 Laryngeal Cancer AJCC v6, v7, and V8 9 255624 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 255625 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 11 255626 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 11 255627 -NCIT:C156085 Metastatic Laryngeal Carcinoma 8 255628 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 9 255629 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 10 255630 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 10 255631 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 9 255632 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 10 255633 -NCIT:C173390 Laryngeal Neuroendocrine Carcinoma 8 255634 -NCIT:C173395 Laryngeal Large Cell Neuroendocrine Carcinoma 9 255635 -NCIT:C6025 Laryngeal Small Cell Neuroendocrine Carcinoma 9 255636 -NCIT:C27929 Alcohol-Related Laryngeal Carcinoma 8 255637 -NCIT:C4034 Recurrent Laryngeal Carcinoma 8 255638 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 9 255639 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 10 255640 -NCIT:C4044 Laryngeal Squamous Cell Carcinoma 8 255641 -NCIT:C148383 Refractory Laryngeal Squamous Cell Carcinoma 9 255642 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 9 255643 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 10 255644 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 10 255645 -NCIT:C172645 Unresectable Laryngeal Squamous Cell Carcinoma 9 255646 -NCIT:C4945 Supraglottic Squamous Cell Carcinoma 9 255647 -NCIT:C181714 Epiglottic Squamous Cell Carcinoma 10 255648 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 11 255649 -NCIT:C8191 Supraglottic Verrucous Carcinoma 10 255650 -NCIT:C54334 Laryngeal Basaloid Carcinoma 9 255651 -NCIT:C54335 Laryngeal Papillary Squamous Cell Carcinoma 9 255652 -NCIT:C54336 Laryngeal Squamous Cell Carcinoma, Spindle Cell Variant 9 255653 -NCIT:C54337 Laryngeal Acantholytic Squamous Cell Carcinoma 9 255654 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 9 255655 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 10 255656 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 10 255657 -NCIT:C8186 Glottic Squamous Cell Carcinoma 9 255658 -NCIT:C8189 Glottis Verrucous Carcinoma 10 255659 -NCIT:C8187 Subglottic Squamous Cell Carcinoma 9 255660 -NCIT:C8190 Subglottic Verrucous Carcinoma 10 255661 -NCIT:C8188 Laryngeal Verrucous Carcinoma 9 255662 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 10 255663 -NCIT:C8189 Glottis Verrucous Carcinoma 10 255664 -NCIT:C8190 Subglottic Verrucous Carcinoma 10 255665 -NCIT:C8191 Supraglottic Verrucous Carcinoma 10 255666 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 255667 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 255668 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 255669 -NCIT:C8244 Stage IV Laryngeal Verrucous Carcinoma AJCC v7 10 255670 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 11 255671 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 11 255672 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 11 255673 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 10 255674 -NCIT:C8237 Stage I Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 9 255675 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 255676 -NCIT:C8239 Stage II Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 9 255677 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 255678 -NCIT:C8241 Stage III Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 9 255679 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 255680 -NCIT:C8243 Stage IV Laryngeal Squamous Cell Carcinoma AJCC v7 9 255681 -NCIT:C6122 Stage IVA Laryngeal Squamous Cell Carcinoma AJCC v7 10 255682 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 11 255683 -NCIT:C6123 Stage IVB Laryngeal Squamous Cell Carcinoma AJCC v7 10 255684 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 11 255685 -NCIT:C6124 Stage IVC Laryngeal Squamous Cell Carcinoma AJCC v7 10 255686 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 11 255687 -NCIT:C8244 Stage IV Laryngeal Verrucous Carcinoma AJCC v7 10 255688 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 11 255689 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 11 255690 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 11 255691 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 9 255692 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 10 255693 -NCIT:C4923 Glottis Carcinoma 8 255694 -NCIT:C8186 Glottic Squamous Cell Carcinoma 9 255695 -NCIT:C8189 Glottis Verrucous Carcinoma 10 255696 -NCIT:C54338 Laryngeal Adenosquamous Carcinoma 8 255697 -NCIT:C54339 Laryngeal Undifferentiated Carcinoma 8 255698 -NCIT:C54341 Laryngeal Lymphoepithelial Carcinoma 9 255699 -NCIT:C54342 Laryngeal Giant Cell Carcinoma 9 255700 -NCIT:C5972 Subglottic Carcinoma 8 255701 -NCIT:C8187 Subglottic Squamous Cell Carcinoma 9 255702 -NCIT:C8190 Subglottic Verrucous Carcinoma 10 255703 -NCIT:C5973 Supraglottic Carcinoma 8 255704 -NCIT:C35697 Epiglottic Carcinoma 9 255705 -NCIT:C181714 Epiglottic Squamous Cell Carcinoma 10 255706 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 11 255707 -NCIT:C4945 Supraglottic Squamous Cell Carcinoma 9 255708 -NCIT:C181714 Epiglottic Squamous Cell Carcinoma 10 255709 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 11 255710 -NCIT:C8191 Supraglottic Verrucous Carcinoma 10 255711 -NCIT:C90527 Laryngeal Cancer by AJCC v6 Stage 8 255712 -NCIT:C6868 Stage IV Laryngeal Cancer AJCC v6 9 255713 -NCIT:C8041 Stage I Laryngeal Cancer AJCC v6 and v7 9 255714 -NCIT:C8237 Stage I Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 10 255715 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 11 255716 -NCIT:C8042 Stage II Laryngeal Cancer AJCC v6 and v7 9 255717 -NCIT:C8239 Stage II Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 10 255718 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 11 255719 -NCIT:C8043 Stage III Laryngeal Cancer AJCC v6 and v7 9 255720 -NCIT:C8241 Stage III Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 10 255721 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 11 255722 -NCIT:C9100 Stage 0 Laryngeal Cancer AJCC v6, v7, and V8 9 255723 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 255724 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 11 255725 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 11 255726 -NCIT:C91256 Laryngeal Cancer by AJCC v7 Stage 8 255727 -NCIT:C8041 Stage I Laryngeal Cancer AJCC v6 and v7 9 255728 -NCIT:C8237 Stage I Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 10 255729 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 11 255730 -NCIT:C8042 Stage II Laryngeal Cancer AJCC v6 and v7 9 255731 -NCIT:C8239 Stage II Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 10 255732 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 11 255733 -NCIT:C8043 Stage III Laryngeal Cancer AJCC v6 and v7 9 255734 -NCIT:C8241 Stage III Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 10 255735 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 11 255736 -NCIT:C89091 Stage IV Laryngeal Cancer AJCC v7 9 255737 -NCIT:C6003 Stage IVC Laryngeal Cancer AJCC v7 10 255738 -NCIT:C6124 Stage IVC Laryngeal Squamous Cell Carcinoma AJCC v7 11 255739 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 12 255740 -NCIT:C6004 Stage IVB Laryngeal Cancer AJCC v7 10 255741 -NCIT:C6123 Stage IVB Laryngeal Squamous Cell Carcinoma AJCC v7 11 255742 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 12 255743 -NCIT:C6005 Stage IVA Laryngeal Cancer AJCC v7 10 255744 -NCIT:C6122 Stage IVA Laryngeal Squamous Cell Carcinoma AJCC v7 11 255745 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 12 255746 -NCIT:C8243 Stage IV Laryngeal Squamous Cell Carcinoma AJCC v7 10 255747 -NCIT:C6122 Stage IVA Laryngeal Squamous Cell Carcinoma AJCC v7 11 255748 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 12 255749 -NCIT:C6123 Stage IVB Laryngeal Squamous Cell Carcinoma AJCC v7 11 255750 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 12 255751 -NCIT:C6124 Stage IVC Laryngeal Squamous Cell Carcinoma AJCC v7 11 255752 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 12 255753 -NCIT:C8244 Stage IV Laryngeal Verrucous Carcinoma AJCC v7 11 255754 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 12 255755 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 12 255756 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 12 255757 -NCIT:C9100 Stage 0 Laryngeal Cancer AJCC v6, v7, and V8 9 255758 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 255759 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 11 255760 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 11 255761 -NCIT:C9462 Laryngeal Adenoid Cystic Carcinoma 8 255762 -NCIT:C9463 Laryngeal Mucoepidermoid Carcinoma 8 255763 -NCIT:C9466 Pharyngeal Carcinoma 7 255764 -NCIT:C102872 Pharyngeal Squamous Cell Carcinoma 8 255765 -NCIT:C167265 Nasopharyngeal Squamous Cell Carcinoma 9 255766 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 10 255767 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 255768 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 255769 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 11 255770 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 11 255771 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 255772 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 10 255773 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 255774 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 11 255775 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 10 255776 -NCIT:C54360 Nasopharyngeal Basaloid Carcinoma 10 255777 -NCIT:C7373 Nasopharyngeal Nonkeratinizing Carcinoma 10 255778 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 11 255779 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 255780 -NCIT:C54389 Nasopharyngeal Differentiated Carcinoma 11 255781 -NCIT:C8023 Nasopharyngeal Undifferentiated Carcinoma 11 255782 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 255783 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 12 255784 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 12 255785 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 12 255786 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 12 255787 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 12 255788 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 12 255789 -NCIT:C7992 Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 255790 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 255791 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 11 255792 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 255793 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 255794 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 255795 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 255796 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 255797 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 255798 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 255799 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 255800 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 9 255801 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 10 255802 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 255803 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 255804 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 255805 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 10 255806 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 255807 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 255808 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 11 255809 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 11 255810 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 255811 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 10 255812 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 255813 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 255814 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 10 255815 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 255816 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 255817 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 255818 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 9 255819 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 10 255820 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 255821 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 11 255822 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 10 255823 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 11 255824 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 10 255825 -NCIT:C35693 Posterior Pharyngeal Wall Squamous Cell Carcinoma 9 255826 -NCIT:C4043 Hypopharyngeal Squamous Cell Carcinoma 9 255827 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 10 255828 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 10 255829 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 255830 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 255831 -NCIT:C172646 Unresectable Hypopharyngeal Squamous Cell Carcinoma 10 255832 -NCIT:C4943 Pyriform Fossa Squamous Cell Carcinoma 10 255833 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 255834 -NCIT:C8185 Postcricoid Squamous Cell Carcinoma 10 255835 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 255836 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 255837 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 255838 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 255839 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 255840 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 255841 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 255842 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 10 255843 -NCIT:C8181 Oropharyngeal Squamous Cell Carcinoma 9 255844 -NCIT:C126750 Oropharyngeal Poorly Differentiated Carcinoma 10 255845 -NCIT:C126751 Oropharyngeal Basaloid Carcinoma 10 255846 -NCIT:C147906 Oropharyngeal p16INK4a-Negative Squamous Cell Carcinoma 10 255847 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 10 255848 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 10 255849 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 255850 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 255851 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 255852 -NCIT:C162787 Resectable Oropharyngeal Squamous Cell Carcinoma 10 255853 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 11 255854 -NCIT:C162833 Unresectable Oropharyngeal Squamous Cell Carcinoma 10 255855 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 11 255856 -NCIT:C173414 Oropharyngeal Human Papillomavirus-Negative Squamous Cell Carcinoma 10 255857 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 10 255858 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 255859 -NCIT:C68610 Oropharyngeal Undifferentiated Carcinoma 10 255860 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 255861 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 255862 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 255863 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 255864 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 255865 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 255866 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 255867 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 11 255868 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 255869 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 11 255870 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 11 255871 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 11 255872 -NCIT:C8183 Tonsillar Squamous Cell Carcinoma 10 255873 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 11 255874 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 255875 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 255876 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 255877 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 255878 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 255879 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 255880 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 255881 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 255882 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 255883 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 255884 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 255885 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 255886 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 255887 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 255888 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 255889 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 255890 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 255891 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 10 255892 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 11 255893 -NCIT:C87055 Oropharyngeal Human Papillomavirus-Positive Squamous Cell Carcinoma 10 255894 -NCIT:C132814 Pharyngeal Carcinoma by AJCC v8 Stage 8 255895 -NCIT:C132816 Nasopharyngeal Carcinoma by AJCC v8 Stage 9 255896 -NCIT:C132817 Stage I Nasopharyngeal Carcinoma AJCC v8 10 255897 -NCIT:C132818 Stage II Nasopharyngeal Carcinoma AJCC v8 10 255898 -NCIT:C132819 Stage III Nasopharyngeal Carcinoma AJCC v8 10 255899 -NCIT:C132820 Stage IV Nasopharyngeal Carcinoma AJCC v8 10 255900 -NCIT:C132821 Stage IVA Nasopharyngeal Carcinoma AJCC v8 11 255901 -NCIT:C132822 Stage IVB Nasopharyngeal Carcinoma AJCC v8 11 255902 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 10 255903 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 11 255904 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 11 255905 -NCIT:C132882 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Stage 9 255906 -NCIT:C132883 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Clinical Stage 10 255907 -NCIT:C132885 Clinical Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 255908 -NCIT:C132886 Clinical Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 255909 -NCIT:C132891 Clinical Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 255910 -NCIT:C132893 Clinical Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 255911 -NCIT:C132884 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Pathologic Stage 10 255912 -NCIT:C132898 Pathologic Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 255913 -NCIT:C132899 Pathologic Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 255914 -NCIT:C132900 Pathologic Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 255915 -NCIT:C132901 Pathologic Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 255916 -NCIT:C132994 Oropharyngeal (p16-Negative) Carcinoma by AJCC v8 Stage 9 255917 -NCIT:C132995 Stage 0 Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 255918 -NCIT:C132996 Stage I Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 255919 -NCIT:C132997 Stage II Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 255920 -NCIT:C132998 Stage III Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 255921 -NCIT:C132999 Stage IV Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 255922 -NCIT:C133000 Stage IVA Oropharyngeal (p16-Negative) Carcinoma AJCC v8 11 255923 -NCIT:C133001 Stage IVB Oropharyngeal (p16-Negative) Carcinoma AJCC v8 11 255924 -NCIT:C133002 Stage IVC Oropharyngeal (p16-Negative) Carcinoma AJCC v8 11 255925 -NCIT:C133003 Hypopharyngeal Carcinoma by AJCC v8 Stage 9 255926 -NCIT:C133005 Stage I Hypopharyngeal Carcinoma AJCC v8 10 255927 -NCIT:C133006 Stage II Hypopharyngeal Carcinoma AJCC v8 10 255928 -NCIT:C133007 Stage III Hypopharyngeal Carcinoma AJCC v8 10 255929 -NCIT:C133008 Stage IV Hypopharyngeal Carcinoma AJCC v8 10 255930 -NCIT:C133009 Stage IVA Hypopharyngeal Carcinoma AJCC v8 11 255931 -NCIT:C133010 Stage IVB Hypopharyngeal Carcinoma AJCC v8 11 255932 -NCIT:C133011 Stage IVC Hypopharyngeal Carcinoma AJCC v8 11 255933 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 10 255934 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 11 255935 -NCIT:C156080 Metastatic Pharyngeal Carcinoma 8 255936 -NCIT:C156079 Metastatic Nasopharyngeal Carcinoma 9 255937 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 10 255938 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 255939 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 255940 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 11 255941 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 11 255942 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 255943 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 10 255944 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 255945 -NCIT:C156081 Metastatic Hypopharyngeal Carcinoma 9 255946 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 10 255947 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 255948 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 255949 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 10 255950 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 255951 -NCIT:C156082 Metastatic Oropharyngeal Carcinoma 9 255952 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 10 255953 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 255954 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 255955 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 255956 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 10 255957 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 255958 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 255959 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 10 255960 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 255961 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 9 255962 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 255963 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 10 255964 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 255965 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 255966 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 10 255967 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 255968 -NCIT:C170784 Advanced Pharyngeal Carcinoma 9 255969 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 10 255970 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 255971 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 10 255972 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 255973 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 255974 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 255975 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 10 255976 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 255977 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 9 255978 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 10 255979 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 255980 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 255981 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 255982 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 10 255983 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 255984 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 255985 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 11 255986 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 11 255987 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 255988 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 10 255989 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 255990 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 255991 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 10 255992 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 255993 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 255994 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 255995 -NCIT:C35692 Posterior Pharyngeal Wall Carcinoma 8 255996 -NCIT:C35693 Posterior Pharyngeal Wall Squamous Cell Carcinoma 9 255997 -NCIT:C3871 Nasopharyngeal Carcinoma 8 255998 -NCIT:C132816 Nasopharyngeal Carcinoma by AJCC v8 Stage 9 255999 -NCIT:C132817 Stage I Nasopharyngeal Carcinoma AJCC v8 10 256000 -NCIT:C132818 Stage II Nasopharyngeal Carcinoma AJCC v8 10 256001 -NCIT:C132819 Stage III Nasopharyngeal Carcinoma AJCC v8 10 256002 -NCIT:C132820 Stage IV Nasopharyngeal Carcinoma AJCC v8 10 256003 -NCIT:C132821 Stage IVA Nasopharyngeal Carcinoma AJCC v8 11 256004 -NCIT:C132822 Stage IVB Nasopharyngeal Carcinoma AJCC v8 11 256005 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 10 256006 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 11 256007 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 11 256008 -NCIT:C148434 Refractory Nasopharyngeal Carcinoma 9 256009 -NCIT:C156079 Metastatic Nasopharyngeal Carcinoma 9 256010 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 10 256011 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 256012 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 256013 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 11 256014 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 11 256015 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 256016 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 10 256017 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 256018 -NCIT:C165176 Unresectable Nasopharyngeal Carcinoma 9 256019 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 10 256020 -NCIT:C167265 Nasopharyngeal Squamous Cell Carcinoma 9 256021 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 10 256022 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 11 256023 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 256024 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 11 256025 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 11 256026 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 256027 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 10 256028 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 256029 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 11 256030 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 10 256031 -NCIT:C54360 Nasopharyngeal Basaloid Carcinoma 10 256032 -NCIT:C7373 Nasopharyngeal Nonkeratinizing Carcinoma 10 256033 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 11 256034 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 256035 -NCIT:C54389 Nasopharyngeal Differentiated Carcinoma 11 256036 -NCIT:C8023 Nasopharyngeal Undifferentiated Carcinoma 11 256037 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 12 256038 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 12 256039 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 12 256040 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 12 256041 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 12 256042 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 12 256043 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 12 256044 -NCIT:C7992 Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 256045 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 256046 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 11 256047 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 256048 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 256049 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 256050 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 256051 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 256052 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 256053 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 256054 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 256055 -NCIT:C173340 Nasopharyngeal Adenoid Cystic Carcinoma 9 256056 -NCIT:C190276 Childhood Nasopharyngeal Carcinoma 9 256057 -NCIT:C54400 Nasopharyngeal Papillary Adenocarcinoma 9 256058 -NCIT:C90522 Nasopharyngeal Carcinoma by AJCC v6 Stage 9 256059 -NCIT:C7395 Stage I Nasopharyngeal Carcinoma AJCC v6 10 256060 -NCIT:C7396 Stage III Nasopharyngeal Carcinoma AJCC v6 10 256061 -NCIT:C7397 Stage IV Nasopharyngeal Carcinoma AJCC v6 10 256062 -NCIT:C7920 Stage II Nasopharyngeal Carcinoma AJCC v6 10 256063 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 10 256064 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 11 256065 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 11 256066 -NCIT:C91244 Nasopharyngeal Carcinoma by AJCC v7 Stage 9 256067 -NCIT:C88981 Stage I Nasopharyngeal Carcinoma AJCC v7 10 256068 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 256069 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 256070 -NCIT:C88982 Stage II Nasopharyngeal Carcinoma AJCC v7 10 256071 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 256072 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 256073 -NCIT:C88983 Stage III Nasopharyngeal Carcinoma AJCC v7 10 256074 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 256075 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 256076 -NCIT:C88984 Stage IV Nasopharyngeal Carcinoma AJCC v7 10 256077 -NCIT:C5995 Stage IVC Nasopharyngeal Carcinoma AJCC v7 11 256078 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 256079 -NCIT:C5996 Stage IVB Nasopharyngeal Carcinoma AJCC v7 11 256080 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 256081 -NCIT:C5997 Stage IVA Nasopharyngeal Carcinoma AJCC v7 11 256082 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 256083 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 256084 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 256085 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 256086 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 256087 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 256088 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 10 256089 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 11 256090 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 11 256091 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 9 256092 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 10 256093 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 256094 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 11 256095 -NCIT:C4942 Stage 0 Pharyngeal Cancer 8 256096 -NCIT:C132995 Stage 0 Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 256097 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 9 256098 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 256099 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 9 256100 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 10 256101 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 256102 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 9 256103 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 256104 -NCIT:C5103 Recurrent Pharyngeal Carcinoma 8 256105 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 9 256106 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 10 256107 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 256108 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 11 256109 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 10 256110 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 11 256111 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 10 256112 -NCIT:C8051 Recurrent Oropharyngeal Carcinoma 9 256113 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 10 256114 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 11 256115 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 9 256116 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 10 256117 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 11 256118 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 11 256119 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 9 256120 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 10 256121 -NCIT:C5818 Pharyngeal Adenoid Cystic Carcinoma 8 256122 -NCIT:C173340 Nasopharyngeal Adenoid Cystic Carcinoma 9 256123 -NCIT:C6241 Oropharyngeal Adenoid Cystic Carcinoma 9 256124 -NCIT:C8768 Stage I Pharyngeal Cancer 8 256125 -NCIT:C132817 Stage I Nasopharyngeal Carcinoma AJCC v8 9 256126 -NCIT:C132885 Clinical Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 9 256127 -NCIT:C132898 Pathologic Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 9 256128 -NCIT:C132996 Stage I Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 256129 -NCIT:C133005 Stage I Hypopharyngeal Carcinoma AJCC v8 9 256130 -NCIT:C7395 Stage I Nasopharyngeal Carcinoma AJCC v6 9 256131 -NCIT:C8038 Stage I Hypopharyngeal Carcinoma AJCC v6 9 256132 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 9 256133 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 256134 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 256135 -NCIT:C88981 Stage I Nasopharyngeal Carcinoma AJCC v7 9 256136 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 256137 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 256138 -NCIT:C89045 Stage I Hypopharyngeal Carcinoma AJCC v7 9 256139 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 256140 -NCIT:C8769 Stage II Pharyngeal Cancer 8 256141 -NCIT:C132818 Stage II Nasopharyngeal Carcinoma AJCC v8 9 256142 -NCIT:C132886 Clinical Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 9 256143 -NCIT:C132899 Pathologic Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 9 256144 -NCIT:C132997 Stage II Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 256145 -NCIT:C133006 Stage II Hypopharyngeal Carcinoma AJCC v8 9 256146 -NCIT:C7920 Stage II Nasopharyngeal Carcinoma AJCC v6 9 256147 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 9 256148 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 256149 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 9 256150 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 256151 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 256152 -NCIT:C88982 Stage II Nasopharyngeal Carcinoma AJCC v7 9 256153 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 256154 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 256155 -NCIT:C8770 Stage III Pharyngeal Cancer 8 256156 -NCIT:C132819 Stage III Nasopharyngeal Carcinoma AJCC v8 9 256157 -NCIT:C132891 Clinical Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 9 256158 -NCIT:C132900 Pathologic Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 9 256159 -NCIT:C132998 Stage III Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 256160 -NCIT:C133007 Stage III Hypopharyngeal Carcinoma AJCC v8 9 256161 -NCIT:C7396 Stage III Nasopharyngeal Carcinoma AJCC v6 9 256162 -NCIT:C8040 Stage III Hypopharyngeal Carcinoma AJCC v6 9 256163 -NCIT:C8050 Stage III Oropharyngeal Carcinoma AJCC v6 9 256164 -NCIT:C88983 Stage III Nasopharyngeal Carcinoma AJCC v7 9 256165 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 256166 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 256167 -NCIT:C89021 Stage III Oropharyngeal Carcinoma AJCC v7 9 256168 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 256169 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 256170 -NCIT:C89046 Stage III Hypopharyngeal Carcinoma AJCC v7 9 256171 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 256172 -NCIT:C8771 Stage IV Pharyngeal Cancer 8 256173 -NCIT:C132820 Stage IV Nasopharyngeal Carcinoma AJCC v8 9 256174 -NCIT:C132821 Stage IVA Nasopharyngeal Carcinoma AJCC v8 10 256175 -NCIT:C132822 Stage IVB Nasopharyngeal Carcinoma AJCC v8 10 256176 -NCIT:C132893 Clinical Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 9 256177 -NCIT:C132901 Pathologic Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 9 256178 -NCIT:C132999 Stage IV Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 256179 -NCIT:C133000 Stage IVA Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 256180 -NCIT:C133001 Stage IVB Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 256181 -NCIT:C133002 Stage IVC Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 256182 -NCIT:C133008 Stage IV Hypopharyngeal Carcinoma AJCC v8 9 256183 -NCIT:C133009 Stage IVA Hypopharyngeal Carcinoma AJCC v8 10 256184 -NCIT:C133010 Stage IVB Hypopharyngeal Carcinoma AJCC v8 10 256185 -NCIT:C133011 Stage IVC Hypopharyngeal Carcinoma AJCC v8 10 256186 -NCIT:C6000 Stage IVA Pharyngeal Cancer 9 256187 -NCIT:C132821 Stage IVA Nasopharyngeal Carcinoma AJCC v8 10 256188 -NCIT:C133000 Stage IVA Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 256189 -NCIT:C133009 Stage IVA Hypopharyngeal Carcinoma AJCC v8 10 256190 -NCIT:C5985 Stage IVA Oropharyngeal Carcinoma AJCC v7 10 256191 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 256192 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 256193 -NCIT:C5992 Stage IVA Hypopharyngeal Carcinoma AJCC v7 10 256194 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 256195 -NCIT:C5997 Stage IVA Nasopharyngeal Carcinoma AJCC v7 10 256196 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 256197 -NCIT:C6001 Stage IVB Pharyngeal Cancer 9 256198 -NCIT:C132822 Stage IVB Nasopharyngeal Carcinoma AJCC v8 10 256199 -NCIT:C133001 Stage IVB Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 256200 -NCIT:C133010 Stage IVB Hypopharyngeal Carcinoma AJCC v8 10 256201 -NCIT:C5986 Stage IVB Oropharyngeal Carcinoma AJCC v7 10 256202 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 256203 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 256204 -NCIT:C5993 Stage IVB Hypopharyngeal Carcinoma AJCC v7 10 256205 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 256206 -NCIT:C5996 Stage IVB Nasopharyngeal Carcinoma AJCC v7 10 256207 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 256208 -NCIT:C6002 Stage IVC Pharyngeal Cancer 9 256209 -NCIT:C133002 Stage IVC Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 256210 -NCIT:C133011 Stage IVC Hypopharyngeal Carcinoma AJCC v8 10 256211 -NCIT:C5987 Stage IVC Oropharyngeal Carcinoma AJCC v7 10 256212 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 256213 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 256214 -NCIT:C5994 Stage IVC Hypopharyngeal Carcinoma AJCC v7 10 256215 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 256216 -NCIT:C5995 Stage IVC Nasopharyngeal Carcinoma AJCC v7 10 256217 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 256218 -NCIT:C7397 Stage IV Nasopharyngeal Carcinoma AJCC v6 9 256219 -NCIT:C8533 Stage IV Hypopharyngeal Carcinoma AJCC v6 9 256220 -NCIT:C88984 Stage IV Nasopharyngeal Carcinoma AJCC v7 9 256221 -NCIT:C5995 Stage IVC Nasopharyngeal Carcinoma AJCC v7 10 256222 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 256223 -NCIT:C5996 Stage IVB Nasopharyngeal Carcinoma AJCC v7 10 256224 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 256225 -NCIT:C5997 Stage IVA Nasopharyngeal Carcinoma AJCC v7 10 256226 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 256227 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 256228 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 256229 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 256230 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 256231 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 256232 -NCIT:C89023 Stage IV Oropharyngeal Carcinoma AJCC v7 9 256233 -NCIT:C5985 Stage IVA Oropharyngeal Carcinoma AJCC v7 10 256234 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 256235 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 256236 -NCIT:C5986 Stage IVB Oropharyngeal Carcinoma AJCC v7 10 256237 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 256238 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 256239 -NCIT:C5987 Stage IVC Oropharyngeal Carcinoma AJCC v7 10 256240 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 256241 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 256242 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 256243 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 256244 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 256245 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 256246 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 256247 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 256248 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 256249 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 256250 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 256251 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 256252 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 256253 -NCIT:C89047 Stage IV Hypopharyngeal Carcinoma AJCC v7 9 256254 -NCIT:C5992 Stage IVA Hypopharyngeal Carcinoma AJCC v7 10 256255 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 256256 -NCIT:C5993 Stage IVB Hypopharyngeal Carcinoma AJCC v7 10 256257 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 256258 -NCIT:C5994 Stage IVC Hypopharyngeal Carcinoma AJCC v7 10 256259 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 256260 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 256261 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 256262 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 256263 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 256264 -NCIT:C9218 Stage IV Oropharyngeal Carcinoma AJCC v6 9 256265 -NCIT:C90525 Pharyngeal Carcinoma by AJCC v6 Stage 8 256266 -NCIT:C90522 Nasopharyngeal Carcinoma by AJCC v6 Stage 9 256267 -NCIT:C7395 Stage I Nasopharyngeal Carcinoma AJCC v6 10 256268 -NCIT:C7396 Stage III Nasopharyngeal Carcinoma AJCC v6 10 256269 -NCIT:C7397 Stage IV Nasopharyngeal Carcinoma AJCC v6 10 256270 -NCIT:C7920 Stage II Nasopharyngeal Carcinoma AJCC v6 10 256271 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 10 256272 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 11 256273 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 11 256274 -NCIT:C90523 Oropharyngeal Carcinoma by AJCC v6 Stage 9 256275 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 10 256276 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 256277 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 10 256278 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 256279 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 12 256280 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 10 256281 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 256282 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 12 256283 -NCIT:C8050 Stage III Oropharyngeal Carcinoma AJCC v6 10 256284 -NCIT:C9218 Stage IV Oropharyngeal Carcinoma AJCC v6 10 256285 -NCIT:C90524 Hypopharyngeal Carcinoma by AJCC v6 Stage 9 256286 -NCIT:C8038 Stage I Hypopharyngeal Carcinoma AJCC v6 10 256287 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 10 256288 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 256289 -NCIT:C8040 Stage III Hypopharyngeal Carcinoma AJCC v6 10 256290 -NCIT:C8533 Stage IV Hypopharyngeal Carcinoma AJCC v6 10 256291 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 10 256292 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 11 256293 -NCIT:C9105 Oropharyngeal Carcinoma 8 256294 -NCIT:C132882 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Stage 9 256295 -NCIT:C132883 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Clinical Stage 10 256296 -NCIT:C132885 Clinical Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 256297 -NCIT:C132886 Clinical Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 256298 -NCIT:C132891 Clinical Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 256299 -NCIT:C132893 Clinical Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 256300 -NCIT:C132884 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Pathologic Stage 10 256301 -NCIT:C132898 Pathologic Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 256302 -NCIT:C132899 Pathologic Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 256303 -NCIT:C132900 Pathologic Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 256304 -NCIT:C132901 Pathologic Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 11 256305 -NCIT:C132994 Oropharyngeal (p16-Negative) Carcinoma by AJCC v8 Stage 9 256306 -NCIT:C132995 Stage 0 Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 256307 -NCIT:C132996 Stage I Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 256308 -NCIT:C132997 Stage II Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 256309 -NCIT:C132998 Stage III Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 256310 -NCIT:C132999 Stage IV Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 256311 -NCIT:C133000 Stage IVA Oropharyngeal (p16-Negative) Carcinoma AJCC v8 11 256312 -NCIT:C133001 Stage IVB Oropharyngeal (p16-Negative) Carcinoma AJCC v8 11 256313 -NCIT:C133002 Stage IVC Oropharyngeal (p16-Negative) Carcinoma AJCC v8 11 256314 -NCIT:C156082 Metastatic Oropharyngeal Carcinoma 9 256315 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 10 256316 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 256317 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 256318 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 256319 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 10 256320 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 256321 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 256322 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 10 256323 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 256324 -NCIT:C173576 Oropharyngeal Polymorphous Adenocarcinoma 9 256325 -NCIT:C4825 Tonsillar Carcinoma 9 256326 -NCIT:C8183 Tonsillar Squamous Cell Carcinoma 10 256327 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 11 256328 -NCIT:C6241 Oropharyngeal Adenoid Cystic Carcinoma 9 256329 -NCIT:C8051 Recurrent Oropharyngeal Carcinoma 9 256330 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 10 256331 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 11 256332 -NCIT:C8181 Oropharyngeal Squamous Cell Carcinoma 9 256333 -NCIT:C126750 Oropharyngeal Poorly Differentiated Carcinoma 10 256334 -NCIT:C126751 Oropharyngeal Basaloid Carcinoma 10 256335 -NCIT:C147906 Oropharyngeal p16INK4a-Negative Squamous Cell Carcinoma 10 256336 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 10 256337 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 10 256338 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 11 256339 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 11 256340 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 12 256341 -NCIT:C162787 Resectable Oropharyngeal Squamous Cell Carcinoma 10 256342 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 11 256343 -NCIT:C162833 Unresectable Oropharyngeal Squamous Cell Carcinoma 10 256344 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 11 256345 -NCIT:C173414 Oropharyngeal Human Papillomavirus-Negative Squamous Cell Carcinoma 10 256346 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 10 256347 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 256348 -NCIT:C68610 Oropharyngeal Undifferentiated Carcinoma 10 256349 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 256350 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 256351 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 256352 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 256353 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 256354 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 256355 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 256356 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 11 256357 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 256358 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 11 256359 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 11 256360 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 11 256361 -NCIT:C8183 Tonsillar Squamous Cell Carcinoma 10 256362 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 11 256363 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 256364 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 256365 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 256366 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 256367 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 256368 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 256369 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 256370 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 256371 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 256372 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 256373 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 256374 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 256375 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 256376 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 256377 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 256378 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 256379 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 256380 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 10 256381 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 11 256382 -NCIT:C87055 Oropharyngeal Human Papillomavirus-Positive Squamous Cell Carcinoma 10 256383 -NCIT:C8395 Soft Palate Carcinoma 9 256384 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 10 256385 -NCIT:C90523 Oropharyngeal Carcinoma by AJCC v6 Stage 9 256386 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 10 256387 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 256388 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 10 256389 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 256390 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 12 256391 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 10 256392 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 256393 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 12 256394 -NCIT:C8050 Stage III Oropharyngeal Carcinoma AJCC v6 10 256395 -NCIT:C9218 Stage IV Oropharyngeal Carcinoma AJCC v6 10 256396 -NCIT:C91248 Oropharyngeal Carcinoma by AJCC v7 Stage 9 256397 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 10 256398 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 256399 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 10 256400 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 256401 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 12 256402 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 10 256403 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 256404 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 12 256405 -NCIT:C89021 Stage III Oropharyngeal Carcinoma AJCC v7 10 256406 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 256407 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 256408 -NCIT:C89023 Stage IV Oropharyngeal Carcinoma AJCC v7 10 256409 -NCIT:C5985 Stage IVA Oropharyngeal Carcinoma AJCC v7 11 256410 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 256411 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 256412 -NCIT:C5986 Stage IVB Oropharyngeal Carcinoma AJCC v7 11 256413 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 256414 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 256415 -NCIT:C5987 Stage IVC Oropharyngeal Carcinoma AJCC v7 11 256416 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 256417 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 256418 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 256419 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 256420 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 256421 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 256422 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 256423 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 256424 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 256425 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 256426 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 256427 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 256428 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 256429 -NCIT:C91252 Pharyngeal Carcinoma by AJCC v7 Stage 8 256430 -NCIT:C91244 Nasopharyngeal Carcinoma by AJCC v7 Stage 9 256431 -NCIT:C88981 Stage I Nasopharyngeal Carcinoma AJCC v7 10 256432 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 256433 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 256434 -NCIT:C88982 Stage II Nasopharyngeal Carcinoma AJCC v7 10 256435 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 256436 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 256437 -NCIT:C88983 Stage III Nasopharyngeal Carcinoma AJCC v7 10 256438 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 256439 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 256440 -NCIT:C88984 Stage IV Nasopharyngeal Carcinoma AJCC v7 10 256441 -NCIT:C5995 Stage IVC Nasopharyngeal Carcinoma AJCC v7 11 256442 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 256443 -NCIT:C5996 Stage IVB Nasopharyngeal Carcinoma AJCC v7 11 256444 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 256445 -NCIT:C5997 Stage IVA Nasopharyngeal Carcinoma AJCC v7 11 256446 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 256447 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 256448 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 256449 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 256450 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 12 256451 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 256452 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 10 256453 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 11 256454 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 11 256455 -NCIT:C91248 Oropharyngeal Carcinoma by AJCC v7 Stage 9 256456 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 10 256457 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 256458 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 10 256459 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 256460 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 12 256461 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 10 256462 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 256463 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 12 256464 -NCIT:C89021 Stage III Oropharyngeal Carcinoma AJCC v7 10 256465 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 256466 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 256467 -NCIT:C89023 Stage IV Oropharyngeal Carcinoma AJCC v7 10 256468 -NCIT:C5985 Stage IVA Oropharyngeal Carcinoma AJCC v7 11 256469 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 256470 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 256471 -NCIT:C5986 Stage IVB Oropharyngeal Carcinoma AJCC v7 11 256472 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 256473 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 256474 -NCIT:C5987 Stage IVC Oropharyngeal Carcinoma AJCC v7 11 256475 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 256476 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 256477 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 256478 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 256479 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 256480 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 256481 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 256482 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 256483 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 256484 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 256485 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 256486 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 12 256487 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 13 256488 -NCIT:C91251 Hypopharyngeal Carcinoma by AJCC v7 Stage 9 256489 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 10 256490 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 256491 -NCIT:C89045 Stage I Hypopharyngeal Carcinoma AJCC v7 10 256492 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 256493 -NCIT:C89046 Stage III Hypopharyngeal Carcinoma AJCC v7 10 256494 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 256495 -NCIT:C89047 Stage IV Hypopharyngeal Carcinoma AJCC v7 10 256496 -NCIT:C5992 Stage IVA Hypopharyngeal Carcinoma AJCC v7 11 256497 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 256498 -NCIT:C5993 Stage IVB Hypopharyngeal Carcinoma AJCC v7 11 256499 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 256500 -NCIT:C5994 Stage IVC Hypopharyngeal Carcinoma AJCC v7 11 256501 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 256502 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 256503 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 256504 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 256505 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 256506 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 10 256507 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 11 256508 -NCIT:C9465 Hypopharyngeal Carcinoma 8 256509 -NCIT:C133003 Hypopharyngeal Carcinoma by AJCC v8 Stage 9 256510 -NCIT:C133005 Stage I Hypopharyngeal Carcinoma AJCC v8 10 256511 -NCIT:C133006 Stage II Hypopharyngeal Carcinoma AJCC v8 10 256512 -NCIT:C133007 Stage III Hypopharyngeal Carcinoma AJCC v8 10 256513 -NCIT:C133008 Stage IV Hypopharyngeal Carcinoma AJCC v8 10 256514 -NCIT:C133009 Stage IVA Hypopharyngeal Carcinoma AJCC v8 11 256515 -NCIT:C133010 Stage IVB Hypopharyngeal Carcinoma AJCC v8 11 256516 -NCIT:C133011 Stage IVC Hypopharyngeal Carcinoma AJCC v8 11 256517 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 10 256518 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 11 256519 -NCIT:C156081 Metastatic Hypopharyngeal Carcinoma 9 256520 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 10 256521 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 256522 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 256523 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 10 256524 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 256525 -NCIT:C4043 Hypopharyngeal Squamous Cell Carcinoma 9 256526 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 10 256527 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 10 256528 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 11 256529 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 11 256530 -NCIT:C172646 Unresectable Hypopharyngeal Squamous Cell Carcinoma 10 256531 -NCIT:C4943 Pyriform Fossa Squamous Cell Carcinoma 10 256532 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 256533 -NCIT:C8185 Postcricoid Squamous Cell Carcinoma 10 256534 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 256535 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 256536 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 256537 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 256538 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 256539 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 256540 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 256541 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 10 256542 -NCIT:C6700 Pyriform Fossa Carcinoma 9 256543 -NCIT:C4943 Pyriform Fossa Squamous Cell Carcinoma 10 256544 -NCIT:C8595 Postcricoid Carcinoma 9 256545 -NCIT:C8185 Postcricoid Squamous Cell Carcinoma 10 256546 -NCIT:C90524 Hypopharyngeal Carcinoma by AJCC v6 Stage 9 256547 -NCIT:C8038 Stage I Hypopharyngeal Carcinoma AJCC v6 10 256548 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 10 256549 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 256550 -NCIT:C8040 Stage III Hypopharyngeal Carcinoma AJCC v6 10 256551 -NCIT:C8533 Stage IV Hypopharyngeal Carcinoma AJCC v6 10 256552 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 10 256553 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 11 256554 -NCIT:C91251 Hypopharyngeal Carcinoma by AJCC v7 Stage 9 256555 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 10 256556 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 11 256557 -NCIT:C89045 Stage I Hypopharyngeal Carcinoma AJCC v7 10 256558 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 256559 -NCIT:C89046 Stage III Hypopharyngeal Carcinoma AJCC v7 10 256560 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 256561 -NCIT:C89047 Stage IV Hypopharyngeal Carcinoma AJCC v7 10 256562 -NCIT:C5992 Stage IVA Hypopharyngeal Carcinoma AJCC v7 11 256563 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 256564 -NCIT:C5993 Stage IVB Hypopharyngeal Carcinoma AJCC v7 11 256565 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 256566 -NCIT:C5994 Stage IVC Hypopharyngeal Carcinoma AJCC v7 11 256567 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 256568 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 256569 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 256570 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 256571 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 12 256572 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 10 256573 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 11 256574 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 9 256575 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 10 256576 -NCIT:C4815 Thyroid Gland Carcinoma 6 256577 -NCIT:C118827 Childhood Thyroid Gland Carcinoma 7 256578 -NCIT:C123903 Childhood Thyroid Gland Papillary Carcinoma 8 256579 -NCIT:C123904 Childhood Thyroid Gland Follicular Carcinoma 8 256580 -NCIT:C123905 Childhood Thyroid Gland Medullary Carcinoma 8 256581 -NCIT:C190064 Childhood Thyroid Gland Spindle Epithelial Tumor with Thymus-Like Elements 8 256582 -NCIT:C126408 Thyroid Gland Cribriform Morular Carcinoma 7 256583 -NCIT:C129784 Unresectable Thyroid Gland Carcinoma 7 256584 -NCIT:C163974 Unresectable Thyroid Gland Medullary Carcinoma 8 256585 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 9 256586 -NCIT:C168572 Unresectable Differentiated Thyroid Gland Carcinoma 8 256587 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 9 256588 -NCIT:C174571 Unresectable Thyroid Gland Follicular Carcinoma 9 256589 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 10 256590 -NCIT:C170833 Unresectable Thyroid Gland Anaplastic Carcinoma 8 256591 -NCIT:C174569 Unresectable Poorly Differentiated Thyroid Gland Carcinoma 8 256592 -NCIT:C133193 Metastatic Thyroid Gland Carcinoma 7 256593 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 8 256594 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 256595 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 256596 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 8 256597 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 256598 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 256599 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 256600 -NCIT:C170831 Metastatic Thyroid Gland Anaplastic Carcinoma 8 256601 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 256602 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 256603 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 8 256604 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 256605 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 9 256606 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 256607 -NCIT:C173979 Metastatic Differentiated Thyroid Gland Carcinoma 8 256608 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 9 256609 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 10 256610 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 11 256611 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 9 256612 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 256613 -NCIT:C174046 Metastatic Poorly Differentiated Thyroid Gland Carcinoma 8 256614 -NCIT:C142983 Refractory Thyroid Gland Carcinoma 7 256615 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 8 256616 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 9 256617 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 9 256618 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 10 256619 -NCIT:C170832 Refractory Thyroid Gland Anaplastic Carcinoma 8 256620 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 8 256621 -NCIT:C156267 Thyroid Gland Mucinous Carcinoma 7 256622 -NCIT:C27380 Thyroid Gland Adenocarcinoma 7 256623 -NCIT:C187645 Follicular-Derived Thyroid Gland Carcinoma, High Grade 8 256624 -NCIT:C187648 Differentiated High Grade Thyroid Gland Carcinoma 9 256625 -NCIT:C6040 Poorly Differentiated Thyroid Gland Carcinoma 9 256626 -NCIT:C174046 Metastatic Poorly Differentiated Thyroid Gland Carcinoma 10 256627 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 10 256628 -NCIT:C174569 Unresectable Poorly Differentiated Thyroid Gland Carcinoma 10 256629 -NCIT:C187994 Thyroid Gland Secretory Carcinoma 8 256630 -NCIT:C7153 Differentiated Thyroid Gland Carcinoma 8 256631 -NCIT:C118829 Hereditary Nonmedullary Thyroid Gland Carcinoma 9 256632 -NCIT:C140959 Differentiated Thyroid Gland Carcinoma by AJCC v7 Stage 9 256633 -NCIT:C140958 Thyroid Gland Follicular Carcinoma by AJCC v7 Stage 10 256634 -NCIT:C9084 Stage I Thyroid Gland Follicular Carcinoma AJCC v7 11 256635 -NCIT:C9085 Stage II Thyroid Gland Follicular Carcinoma AJCC v7 11 256636 -NCIT:C9086 Stage IV Thyroid Gland Follicular Carcinoma AJCC v7 11 256637 -NCIT:C115035 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v7 12 256638 -NCIT:C115036 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v7 12 256639 -NCIT:C115037 Stage IVC Thyroid Gland Follicular Carcinoma AJCC v7 12 256640 -NCIT:C9121 Stage III Thyroid Gland Follicular Carcinoma AJCC v7 11 256641 -NCIT:C140960 Thyroid Gland Papillary Carcinoma by AJCC v7 Stage 10 256642 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 11 256643 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 11 256644 -NCIT:C9083 Stage IV Thyroid Gland Papillary Carcinoma AJCC v7 11 256645 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 12 256646 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 12 256647 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 12 256648 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 11 256649 -NCIT:C87543 Stage I Differentiated Thyroid Gland Carcinoma AJCC v7 10 256650 -NCIT:C101539 Stage I Differentiated Thyroid Gland Carcinoma Under 45 Years AJCC v7 11 256651 -NCIT:C101540 Stage I Differentiated Thyroid Gland Carcinoma 45 Years and Older AJCC v7 11 256652 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 11 256653 -NCIT:C9084 Stage I Thyroid Gland Follicular Carcinoma AJCC v7 11 256654 -NCIT:C87544 Stage II Differentiated Thyroid Gland Carcinoma AJCC v7 10 256655 -NCIT:C101541 Stage II Differentiated Thyroid Gland Carcinoma Under 45 Years AJCC v7 11 256656 -NCIT:C101542 Stage II Differentiated Thyroid Gland Carcinoma 45 Years and Older AJCC v7 11 256657 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 11 256658 -NCIT:C9085 Stage II Thyroid Gland Follicular Carcinoma AJCC v7 11 256659 -NCIT:C87545 Stage III Differentiated Thyroid Gland Carcinoma AJCC v7 10 256660 -NCIT:C9121 Stage III Thyroid Gland Follicular Carcinoma AJCC v7 11 256661 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 11 256662 -NCIT:C87546 Stage IVA Differentiated Thyroid Gland Carcinoma AJCC v7 10 256663 -NCIT:C115035 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v7 11 256664 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 11 256665 -NCIT:C87547 Stage IVB Differentiated Thyroid Gland Carcinoma AJCC v7 10 256666 -NCIT:C115036 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v7 11 256667 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 11 256668 -NCIT:C87548 Stage IVC Differentiated Thyroid Gland Carcinoma AJCC v7 10 256669 -NCIT:C115037 Stage IVC Thyroid Gland Follicular Carcinoma AJCC v7 11 256670 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 11 256671 -NCIT:C140965 Differentiated Thyroid Gland Carcinoma by AJCC v8 Stage 9 256672 -NCIT:C140966 Stage I Differentiated Thyroid Gland Carcinoma AJCC v8 10 256673 -NCIT:C140967 Stage I Differentiated Thyroid Gland Carcinoma Under 55 Years AJCC v8 11 256674 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 256675 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 256676 -NCIT:C140968 Stage I Differentiated Thyroid Gland Carcinoma 55 Years and Older AJCC v8 11 256677 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 256678 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 256679 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 11 256680 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 256681 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 256682 -NCIT:C140988 Stage I Thyroid Gland Follicular Carcinoma AJCC v8 11 256683 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 256684 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 256685 -NCIT:C140969 Stage II Differentiated Thyroid Gland Carcinoma AJCC v8 10 256686 -NCIT:C140970 Stage II Differentiated Thyroid Gland Carcinoma Under 55 Years AJCC v8 11 256687 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 256688 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 256689 -NCIT:C140971 Stage II Differentiated Thyroid Gland Carcinoma 55 Years and Older AJCC v8 11 256690 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 256691 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 256692 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 11 256693 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 256694 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 256695 -NCIT:C140991 Stage II Thyroid Gland Follicular Carcinoma AJCC v8 11 256696 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 256697 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 256698 -NCIT:C140972 Stage III Differentiated Thyroid Gland Carcinoma AJCC v8 10 256699 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 11 256700 -NCIT:C140995 Stage III Thyroid Gland Follicular Carcinoma AJCC v8 11 256701 -NCIT:C140973 Stage IV Differentiated Thyroid Gland Carcinoma AJCC v8 10 256702 -NCIT:C140974 Stage IVA Differentiated Thyroid Gland Carcinoma AJCC v8 11 256703 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 12 256704 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 12 256705 -NCIT:C140975 Stage IVB Differentiated Thyroid Gland Carcinoma AJCC v8 11 256706 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 12 256707 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 12 256708 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 11 256709 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 12 256710 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 12 256711 -NCIT:C140996 Stage IV Thyroid Gland Follicular Carcinoma AJCC v8 11 256712 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 12 256713 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 12 256714 -NCIT:C140976 Thyroid Gland Papillary Carcinoma by AJCC v8 Stage 10 256715 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 11 256716 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 256717 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 256718 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 11 256719 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 256720 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 256721 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 11 256722 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 11 256723 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 12 256724 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 12 256725 -NCIT:C140987 Thyroid Gland Follicular Carcinoma by AJCC v8 Stage 10 256726 -NCIT:C140988 Stage I Thyroid Gland Follicular Carcinoma AJCC v8 11 256727 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 256728 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 256729 -NCIT:C140991 Stage II Thyroid Gland Follicular Carcinoma AJCC v8 11 256730 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 256731 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 256732 -NCIT:C140995 Stage III Thyroid Gland Follicular Carcinoma AJCC v8 11 256733 -NCIT:C140996 Stage IV Thyroid Gland Follicular Carcinoma AJCC v8 11 256734 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 12 256735 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 12 256736 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 9 256737 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 10 256738 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 10 256739 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 11 256740 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 9 256741 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 10 256742 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 10 256743 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 11 256744 -NCIT:C168572 Unresectable Differentiated Thyroid Gland Carcinoma 9 256745 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 10 256746 -NCIT:C174571 Unresectable Thyroid Gland Follicular Carcinoma 10 256747 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 11 256748 -NCIT:C173979 Metastatic Differentiated Thyroid Gland Carcinoma 9 256749 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 10 256750 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 11 256751 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 12 256752 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 10 256753 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 10 256754 -NCIT:C4035 Thyroid Gland Papillary Carcinoma 9 256755 -NCIT:C123903 Childhood Thyroid Gland Papillary Carcinoma 10 256756 -NCIT:C126409 Warthin-Like Variant Thyroid Gland Papillary Carcinoma 10 256757 -NCIT:C126410 Thyroid Gland Papillary Carcinoma with Fibromatosis/Fasciitis-Like/Desmoid-Type Stroma 10 256758 -NCIT:C126594 Follicular Variant Thyroid Gland Papillary Carcinoma 10 256759 -NCIT:C66850 Invasive Encapsulated Follicular Variant Thyroid Gland Papillary Carcinoma 11 256760 -NCIT:C7381 Invasive Follicular Variant Thyroid Gland Papillary Carcinoma 11 256761 -NCIT:C140960 Thyroid Gland Papillary Carcinoma by AJCC v7 Stage 10 256762 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 11 256763 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 11 256764 -NCIT:C9083 Stage IV Thyroid Gland Papillary Carcinoma AJCC v7 11 256765 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 12 256766 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 12 256767 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 12 256768 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 11 256769 -NCIT:C140976 Thyroid Gland Papillary Carcinoma by AJCC v8 Stage 10 256770 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 11 256771 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 256772 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 256773 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 11 256774 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 256775 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 256776 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 11 256777 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 11 256778 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 12 256779 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 12 256780 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 10 256781 -NCIT:C156034 Encapsulated Variant Thyroid Gland Papillary Carcinoma 10 256782 -NCIT:C156045 Spindle Cell Variant Thyroid Gland Papillary Carcinoma 10 256783 -NCIT:C156050 Hobnail Variant Thyroid Gland Papillary Carcinoma 10 256784 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 10 256785 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 10 256786 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 10 256787 -NCIT:C187644 Classic Thyroid Gland Papillary Carcinoma 10 256788 -NCIT:C35558 Tall Cell Variant Thyroid Gland Papillary Carcinoma 10 256789 -NCIT:C35830 Columnar Cell Variant Thyroid Gland Papillary Carcinoma 10 256790 -NCIT:C37304 Multicentric Thyroid Gland Papillary Carcinoma 10 256791 -NCIT:C46004 Thyroid Gland Papillary Microcarcinoma 10 256792 -NCIT:C46092 Macrofollicular Variant Thyroid Gland Papillary Carcinoma 10 256793 -NCIT:C46093 Oncocytic Variant Thyroid Gland Papillary Carcinoma 10 256794 -NCIT:C46094 Clear Cell Variant Thyroid Gland Papillary Carcinoma 10 256795 -NCIT:C46095 Solid/Trabecular Variant Thyroid Gland Papillary Carcinoma 10 256796 -NCIT:C7427 Diffuse Sclerosing Variant Thyroid Gland Papillary Carcinoma 10 256797 -NCIT:C8054 Thyroid Gland Follicular Carcinoma 9 256798 -NCIT:C123904 Childhood Thyroid Gland Follicular Carcinoma 10 256799 -NCIT:C140958 Thyroid Gland Follicular Carcinoma by AJCC v7 Stage 10 256800 -NCIT:C9084 Stage I Thyroid Gland Follicular Carcinoma AJCC v7 11 256801 -NCIT:C9085 Stage II Thyroid Gland Follicular Carcinoma AJCC v7 11 256802 -NCIT:C9086 Stage IV Thyroid Gland Follicular Carcinoma AJCC v7 11 256803 -NCIT:C115035 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v7 12 256804 -NCIT:C115036 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v7 12 256805 -NCIT:C115037 Stage IVC Thyroid Gland Follicular Carcinoma AJCC v7 12 256806 -NCIT:C9121 Stage III Thyroid Gland Follicular Carcinoma AJCC v7 11 256807 -NCIT:C140987 Thyroid Gland Follicular Carcinoma by AJCC v8 Stage 10 256808 -NCIT:C140988 Stage I Thyroid Gland Follicular Carcinoma AJCC v8 11 256809 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 256810 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 256811 -NCIT:C140991 Stage II Thyroid Gland Follicular Carcinoma AJCC v8 11 256812 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 256813 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 256814 -NCIT:C140995 Stage III Thyroid Gland Follicular Carcinoma AJCC v8 11 256815 -NCIT:C140996 Stage IV Thyroid Gland Follicular Carcinoma AJCC v8 11 256816 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 12 256817 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 12 256818 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 10 256819 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 11 256820 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 10 256821 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 11 256822 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 12 256823 -NCIT:C156122 Thyroid Gland Follicular Carcinoma, Encapsulated Angioinvasive 10 256824 -NCIT:C156123 Thyroid Gland Follicular Carcinoma, Widely Invasive 10 256825 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 10 256826 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 11 256827 -NCIT:C174571 Unresectable Thyroid Gland Follicular Carcinoma 10 256828 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 11 256829 -NCIT:C187643 Thyroid Gland Follicular Carcinoma, Signet Ring Cell Variant 10 256830 -NCIT:C46096 Thyroid Gland Follicular Carcinoma, Clear Cell Variant 10 256831 -NCIT:C4946 Thyroid Gland Oncocytic Carcinoma 10 256832 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 11 256833 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 11 256834 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 11 256835 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 11 256836 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 12 256837 -NCIT:C65200 Thyroid Gland Follicular Carcinoma, Minimally Invasive 10 256838 -NCIT:C38762 Thyroid Gland Mucoepidermoid Carcinoma 7 256839 -NCIT:C38763 Thyroid Gland Sclerosing Mucoepidermoid Carcinoma with Eosinophilia 8 256840 -NCIT:C3878 Thyroid Gland Anaplastic Carcinoma 7 256841 -NCIT:C140999 Thyroid Gland Anaplastic Carcinoma by AJCC v7 Stage 8 256842 -NCIT:C87552 Stage IVA Thyroid Gland Anaplastic Carcinoma AJCC v7 9 256843 -NCIT:C87553 Stage IVB Thyroid Gland Anaplastic Carcinoma AJCC v7 9 256844 -NCIT:C87554 Stage IVC Thyroid Gland Anaplastic Carcinoma AJCC v7 9 256845 -NCIT:C141000 Thyroid Gland Anaplastic Carcinoma by AJCC v8 Stage 8 256846 -NCIT:C141001 Stage IVA Thyroid Gland Anaplastic Carcinoma AJCC v8 9 256847 -NCIT:C141003 Stage IVB Thyroid Gland Anaplastic Carcinoma AJCC v8 9 256848 -NCIT:C141004 Stage IVC Thyroid Gland Anaplastic Carcinoma AJCC v8 9 256849 -NCIT:C153624 Recurrent Thyroid Gland Anaplastic Carcinoma 8 256850 -NCIT:C170831 Metastatic Thyroid Gland Anaplastic Carcinoma 8 256851 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 256852 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 256853 -NCIT:C170832 Refractory Thyroid Gland Anaplastic Carcinoma 8 256854 -NCIT:C170833 Unresectable Thyroid Gland Anaplastic Carcinoma 8 256855 -NCIT:C46008 Thyroid Gland Anaplastic Carcinoma, Squamous Cell Carcinoma Pattern 8 256856 -NCIT:C7906 Thyroid Gland Anaplastic Carcinoma, Osteoclastic Variant 8 256857 -NCIT:C3879 Thyroid Gland Medullary Carcinoma 7 256858 -NCIT:C123905 Childhood Thyroid Gland Medullary Carcinoma 8 256859 -NCIT:C141041 Thyroid Gland Medullary Carcinoma by AJCC v7 Stage 8 256860 -NCIT:C6133 Stage I Thyroid Gland Medullary Carcinoma AJCC v7 9 256861 -NCIT:C6134 Stage II Thyroid Gland Medullary Carcinoma AJCC v7 9 256862 -NCIT:C6135 Stage III Thyroid Gland Medullary Carcinoma AJCC v7 9 256863 -NCIT:C6136 Stage IV Thyroid Gland Medullary Carcinoma AJCC v7 9 256864 -NCIT:C87549 Stage IVA Thyroid Gland Medullary Carcinoma AJCC v7 10 256865 -NCIT:C87550 Stage IVB Thyroid Gland Medullary Carcinoma AJCC v7 10 256866 -NCIT:C87551 Stage IVC Thyroid Gland Medullary Carcinoma AJCC v7 10 256867 -NCIT:C141042 Thyroid Gland Medullary Carcinoma by AJCC v8 Stage 8 256868 -NCIT:C141043 Stage I Thyroid Gland Medullary Carcinoma AJCC v8 9 256869 -NCIT:C141044 Stage II Thyroid Gland Medullary Carcinoma AJCC v8 9 256870 -NCIT:C141045 Stage III Thyroid Gland Medullary Carcinoma AJCC v8 9 256871 -NCIT:C141046 Stage IV Thyroid Gland Medullary Carcinoma AJCC v8 9 256872 -NCIT:C141047 Stage IVA Thyroid Gland Medullary Carcinoma AJCC v8 10 256873 -NCIT:C141048 Stage IVB Thyroid Gland Medullary Carcinoma AJCC v8 10 256874 -NCIT:C141049 Stage IVC Thyroid Gland Medullary Carcinoma AJCC v8 10 256875 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 8 256876 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 9 256877 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 8 256878 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 256879 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 256880 -NCIT:C163974 Unresectable Thyroid Gland Medullary Carcinoma 8 256881 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 9 256882 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 8 256883 -NCIT:C4193 Thyroid Gland Medullary Carcinoma with Amyloid Stroma 8 256884 -NCIT:C46098 Sporadic Thyroid Gland Medullary Carcinoma 8 256885 -NCIT:C46103 Sporadic Thyroid Gland Micromedullary Carcinoma 9 256886 -NCIT:C46099 Hereditary Thyroid Gland Medullary Carcinoma 8 256887 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 9 256888 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 9 256889 -NCIT:C46104 Thyroid Gland Mixed Medullary and Follicular Cell-Derived Carcinoma 7 256890 -NCIT:C187992 Thyroid Gland Mixed Medullary and Follicular Carcinoma 8 256891 -NCIT:C187993 Thyroid Gland Mixed Medullary and Papillary Carcinoma 8 256892 -NCIT:C46105 Thyroid Gland Spindle Epithelial Tumor with Thymus-Like Elements 7 256893 -NCIT:C190064 Childhood Thyroid Gland Spindle Epithelial Tumor with Thymus-Like Elements 8 256894 -NCIT:C46106 Intrathyroid Thymic Carcinoma 7 256895 -NCIT:C7908 Recurrent Thyroid Gland Carcinoma 7 256896 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 8 256897 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 9 256898 -NCIT:C153624 Recurrent Thyroid Gland Anaplastic Carcinoma 8 256899 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 8 256900 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 9 256901 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 9 256902 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 10 256903 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 8 256904 -NCIT:C4906 Parathyroid Gland Carcinoma 6 256905 -NCIT:C118819 Childhood Parathyroid Gland Carcinoma 7 256906 -NCIT:C7826 Localized Parathyroid Gland Carcinoma 7 256907 -NCIT:C7828 Recurrent Parathyroid Gland Carcinoma 7 256908 -NCIT:C9044 Metastatic Parathyroid Gland Carcinoma 7 256909 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 256910 -NCIT:C7484 Malignant Laryngeal Neoplasm 5 256911 -NCIT:C173400 Malignant Laryngeal Soft Tissue Neoplasm 6 256912 -NCIT:C173408 Laryngeal Soft Tissue Sarcoma 7 256913 -NCIT:C6021 Laryngeal Liposarcoma 8 256914 -NCIT:C6022 Laryngeal Leiomyosarcoma 8 256915 -NCIT:C3544 Malignant Glottis Neoplasm 6 256916 -NCIT:C4923 Glottis Carcinoma 7 256917 -NCIT:C8186 Glottic Squamous Cell Carcinoma 8 256918 -NCIT:C8189 Glottis Verrucous Carcinoma 9 256919 -NCIT:C3545 Malignant Supraglottis Neoplasm 6 256920 -NCIT:C4836 Malignant Epiglottis Neoplasm 7 256921 -NCIT:C35697 Epiglottic Carcinoma 8 256922 -NCIT:C181714 Epiglottic Squamous Cell Carcinoma 9 256923 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 10 256924 -NCIT:C5973 Supraglottic Carcinoma 7 256925 -NCIT:C35697 Epiglottic Carcinoma 8 256926 -NCIT:C181714 Epiglottic Squamous Cell Carcinoma 9 256927 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 10 256928 -NCIT:C4945 Supraglottic Squamous Cell Carcinoma 8 256929 -NCIT:C181714 Epiglottic Squamous Cell Carcinoma 9 256930 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 10 256931 -NCIT:C8191 Supraglottic Verrucous Carcinoma 9 256932 -NCIT:C3546 Malignant Subglottis Neoplasm 6 256933 -NCIT:C5972 Subglottic Carcinoma 7 256934 -NCIT:C8187 Subglottic Squamous Cell Carcinoma 8 256935 -NCIT:C8190 Subglottic Verrucous Carcinoma 9 256936 -NCIT:C4855 Laryngeal Carcinoma 6 256937 -NCIT:C118811 Childhood Laryngeal Carcinoma 7 256938 -NCIT:C133156 Laryngeal Cancer by AJCC v8 Stage 7 256939 -NCIT:C133158 Stage I Laryngeal Cancer AJCC v8 8 256940 -NCIT:C133159 Stage II Laryngeal Cancer AJCC v8 8 256941 -NCIT:C133160 Stage III Laryngeal Cancer AJCC v8 8 256942 -NCIT:C133161 Stage IV Laryngeal Cancer AJCC v8 8 256943 -NCIT:C133162 Stage IVA Laryngeal Cancer AJCC v8 9 256944 -NCIT:C133163 Stage IVB Laryngeal Cancer AJCC v8 9 256945 -NCIT:C133164 Stage IVC Laryngeal Cancer AJCC v8 9 256946 -NCIT:C9100 Stage 0 Laryngeal Cancer AJCC v6, v7, and V8 8 256947 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 9 256948 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 10 256949 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 10 256950 -NCIT:C156085 Metastatic Laryngeal Carcinoma 7 256951 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 8 256952 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 256953 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 256954 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 8 256955 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 256956 -NCIT:C173390 Laryngeal Neuroendocrine Carcinoma 7 256957 -NCIT:C173395 Laryngeal Large Cell Neuroendocrine Carcinoma 8 256958 -NCIT:C6025 Laryngeal Small Cell Neuroendocrine Carcinoma 8 256959 -NCIT:C27929 Alcohol-Related Laryngeal Carcinoma 7 256960 -NCIT:C4034 Recurrent Laryngeal Carcinoma 7 256961 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 8 256962 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 9 256963 -NCIT:C4044 Laryngeal Squamous Cell Carcinoma 7 256964 -NCIT:C148383 Refractory Laryngeal Squamous Cell Carcinoma 8 256965 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 8 256966 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 256967 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 256968 -NCIT:C172645 Unresectable Laryngeal Squamous Cell Carcinoma 8 256969 -NCIT:C4945 Supraglottic Squamous Cell Carcinoma 8 256970 -NCIT:C181714 Epiglottic Squamous Cell Carcinoma 9 256971 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 10 256972 -NCIT:C8191 Supraglottic Verrucous Carcinoma 9 256973 -NCIT:C54334 Laryngeal Basaloid Carcinoma 8 256974 -NCIT:C54335 Laryngeal Papillary Squamous Cell Carcinoma 8 256975 -NCIT:C54336 Laryngeal Squamous Cell Carcinoma, Spindle Cell Variant 8 256976 -NCIT:C54337 Laryngeal Acantholytic Squamous Cell Carcinoma 8 256977 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 8 256978 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 9 256979 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 9 256980 -NCIT:C8186 Glottic Squamous Cell Carcinoma 8 256981 -NCIT:C8189 Glottis Verrucous Carcinoma 9 256982 -NCIT:C8187 Subglottic Squamous Cell Carcinoma 8 256983 -NCIT:C8190 Subglottic Verrucous Carcinoma 9 256984 -NCIT:C8188 Laryngeal Verrucous Carcinoma 8 256985 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 9 256986 -NCIT:C8189 Glottis Verrucous Carcinoma 9 256987 -NCIT:C8190 Subglottic Verrucous Carcinoma 9 256988 -NCIT:C8191 Supraglottic Verrucous Carcinoma 9 256989 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 9 256990 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 9 256991 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 9 256992 -NCIT:C8244 Stage IV Laryngeal Verrucous Carcinoma AJCC v7 9 256993 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 10 256994 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 10 256995 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 10 256996 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 9 256997 -NCIT:C8237 Stage I Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 8 256998 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 9 256999 -NCIT:C8239 Stage II Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 8 257000 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 9 257001 -NCIT:C8241 Stage III Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 8 257002 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 9 257003 -NCIT:C8243 Stage IV Laryngeal Squamous Cell Carcinoma AJCC v7 8 257004 -NCIT:C6122 Stage IVA Laryngeal Squamous Cell Carcinoma AJCC v7 9 257005 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 10 257006 -NCIT:C6123 Stage IVB Laryngeal Squamous Cell Carcinoma AJCC v7 9 257007 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 10 257008 -NCIT:C6124 Stage IVC Laryngeal Squamous Cell Carcinoma AJCC v7 9 257009 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 10 257010 -NCIT:C8244 Stage IV Laryngeal Verrucous Carcinoma AJCC v7 9 257011 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 10 257012 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 10 257013 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 10 257014 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 8 257015 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 9 257016 -NCIT:C4923 Glottis Carcinoma 7 257017 -NCIT:C8186 Glottic Squamous Cell Carcinoma 8 257018 -NCIT:C8189 Glottis Verrucous Carcinoma 9 257019 -NCIT:C54338 Laryngeal Adenosquamous Carcinoma 7 257020 -NCIT:C54339 Laryngeal Undifferentiated Carcinoma 7 257021 -NCIT:C54341 Laryngeal Lymphoepithelial Carcinoma 8 257022 -NCIT:C54342 Laryngeal Giant Cell Carcinoma 8 257023 -NCIT:C5972 Subglottic Carcinoma 7 257024 -NCIT:C8187 Subglottic Squamous Cell Carcinoma 8 257025 -NCIT:C8190 Subglottic Verrucous Carcinoma 9 257026 -NCIT:C5973 Supraglottic Carcinoma 7 257027 -NCIT:C35697 Epiglottic Carcinoma 8 257028 -NCIT:C181714 Epiglottic Squamous Cell Carcinoma 9 257029 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 10 257030 -NCIT:C4945 Supraglottic Squamous Cell Carcinoma 8 257031 -NCIT:C181714 Epiglottic Squamous Cell Carcinoma 9 257032 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 10 257033 -NCIT:C8191 Supraglottic Verrucous Carcinoma 9 257034 -NCIT:C90527 Laryngeal Cancer by AJCC v6 Stage 7 257035 -NCIT:C6868 Stage IV Laryngeal Cancer AJCC v6 8 257036 -NCIT:C8041 Stage I Laryngeal Cancer AJCC v6 and v7 8 257037 -NCIT:C8237 Stage I Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 9 257038 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 257039 -NCIT:C8042 Stage II Laryngeal Cancer AJCC v6 and v7 8 257040 -NCIT:C8239 Stage II Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 9 257041 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 257042 -NCIT:C8043 Stage III Laryngeal Cancer AJCC v6 and v7 8 257043 -NCIT:C8241 Stage III Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 9 257044 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 257045 -NCIT:C9100 Stage 0 Laryngeal Cancer AJCC v6, v7, and V8 8 257046 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 9 257047 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 10 257048 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 10 257049 -NCIT:C91256 Laryngeal Cancer by AJCC v7 Stage 7 257050 -NCIT:C8041 Stage I Laryngeal Cancer AJCC v6 and v7 8 257051 -NCIT:C8237 Stage I Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 9 257052 -NCIT:C8238 Stage I Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 257053 -NCIT:C8042 Stage II Laryngeal Cancer AJCC v6 and v7 8 257054 -NCIT:C8239 Stage II Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 9 257055 -NCIT:C8240 Stage II Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 257056 -NCIT:C8043 Stage III Laryngeal Cancer AJCC v6 and v7 8 257057 -NCIT:C8241 Stage III Laryngeal Squamous Cell Carcinoma AJCC v6 and v7 9 257058 -NCIT:C8242 Stage III Laryngeal Verrucous Carcinoma AJCC v6 and v7 10 257059 -NCIT:C89091 Stage IV Laryngeal Cancer AJCC v7 8 257060 -NCIT:C6003 Stage IVC Laryngeal Cancer AJCC v7 9 257061 -NCIT:C6124 Stage IVC Laryngeal Squamous Cell Carcinoma AJCC v7 10 257062 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 11 257063 -NCIT:C6004 Stage IVB Laryngeal Cancer AJCC v7 9 257064 -NCIT:C6123 Stage IVB Laryngeal Squamous Cell Carcinoma AJCC v7 10 257065 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 11 257066 -NCIT:C6005 Stage IVA Laryngeal Cancer AJCC v7 9 257067 -NCIT:C6122 Stage IVA Laryngeal Squamous Cell Carcinoma AJCC v7 10 257068 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 11 257069 -NCIT:C8243 Stage IV Laryngeal Squamous Cell Carcinoma AJCC v7 9 257070 -NCIT:C6122 Stage IVA Laryngeal Squamous Cell Carcinoma AJCC v7 10 257071 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 11 257072 -NCIT:C6123 Stage IVB Laryngeal Squamous Cell Carcinoma AJCC v7 10 257073 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 11 257074 -NCIT:C6124 Stage IVC Laryngeal Squamous Cell Carcinoma AJCC v7 10 257075 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 11 257076 -NCIT:C8244 Stage IV Laryngeal Verrucous Carcinoma AJCC v7 10 257077 -NCIT:C6125 Stage IVC Laryngeal Verrucous Carcinoma AJCC v7 11 257078 -NCIT:C6126 Stage IVB Laryngeal Verrucous Carcinoma AJCC v7 11 257079 -NCIT:C6127 Stage IVA Laryngeal Verrucous Carcinoma AJCC v7 11 257080 -NCIT:C9100 Stage 0 Laryngeal Cancer AJCC v6, v7, and V8 8 257081 -NCIT:C6121 Stage 0 Laryngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 9 257082 -NCIT:C4592 Stage 0 Epiglottic Carcinoma AJCC v6, v7, and v8 10 257083 -NCIT:C6128 Stage 0 Laryngeal Verrucous Carcinoma AJCC v6, v7, and v8 10 257084 -NCIT:C9462 Laryngeal Adenoid Cystic Carcinoma 7 257085 -NCIT:C9463 Laryngeal Mucoepidermoid Carcinoma 7 257086 -NCIT:C6020 Laryngeal Sarcoma 6 257087 -NCIT:C173407 Laryngeal Chondrosarcoma 7 257088 -NCIT:C173408 Laryngeal Soft Tissue Sarcoma 7 257089 -NCIT:C6021 Laryngeal Liposarcoma 8 257090 -NCIT:C6022 Laryngeal Leiomyosarcoma 8 257091 -NCIT:C6031 Metastatic Malignant Neoplasm in the Larynx 6 257092 -NCIT:C7510 Malignant Thyroid Gland Neoplasm 5 257093 -NCIT:C150538 Recurrent Malignant Thyroid Gland Neoplasm 6 257094 -NCIT:C7908 Recurrent Thyroid Gland Carcinoma 7 257095 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 8 257096 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 9 257097 -NCIT:C153624 Recurrent Thyroid Gland Anaplastic Carcinoma 8 257098 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 8 257099 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 9 257100 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 9 257101 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 10 257102 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 8 257103 -NCIT:C150539 Refractory Malignant Thyroid Gland Neoplasm 6 257104 -NCIT:C142983 Refractory Thyroid Gland Carcinoma 7 257105 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 8 257106 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 9 257107 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 9 257108 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 10 257109 -NCIT:C170832 Refractory Thyroid Gland Anaplastic Carcinoma 8 257110 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 8 257111 -NCIT:C156408 Thyroid Gland Follicular Dendritic Cell Sarcoma 6 257112 -NCIT:C187995 Thyroblastoma 6 257113 -NCIT:C4815 Thyroid Gland Carcinoma 6 257114 -NCIT:C118827 Childhood Thyroid Gland Carcinoma 7 257115 -NCIT:C123903 Childhood Thyroid Gland Papillary Carcinoma 8 257116 -NCIT:C123904 Childhood Thyroid Gland Follicular Carcinoma 8 257117 -NCIT:C123905 Childhood Thyroid Gland Medullary Carcinoma 8 257118 -NCIT:C190064 Childhood Thyroid Gland Spindle Epithelial Tumor with Thymus-Like Elements 8 257119 -NCIT:C126408 Thyroid Gland Cribriform Morular Carcinoma 7 257120 -NCIT:C129784 Unresectable Thyroid Gland Carcinoma 7 257121 -NCIT:C163974 Unresectable Thyroid Gland Medullary Carcinoma 8 257122 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 9 257123 -NCIT:C168572 Unresectable Differentiated Thyroid Gland Carcinoma 8 257124 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 9 257125 -NCIT:C174571 Unresectable Thyroid Gland Follicular Carcinoma 9 257126 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 10 257127 -NCIT:C170833 Unresectable Thyroid Gland Anaplastic Carcinoma 8 257128 -NCIT:C174569 Unresectable Poorly Differentiated Thyroid Gland Carcinoma 8 257129 -NCIT:C133193 Metastatic Thyroid Gland Carcinoma 7 257130 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 8 257131 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 257132 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 257133 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 8 257134 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 257135 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 257136 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 257137 -NCIT:C170831 Metastatic Thyroid Gland Anaplastic Carcinoma 8 257138 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 257139 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 257140 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 8 257141 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 257142 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 9 257143 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 257144 -NCIT:C173979 Metastatic Differentiated Thyroid Gland Carcinoma 8 257145 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 9 257146 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 10 257147 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 11 257148 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 9 257149 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 257150 -NCIT:C174046 Metastatic Poorly Differentiated Thyroid Gland Carcinoma 8 257151 -NCIT:C142983 Refractory Thyroid Gland Carcinoma 7 257152 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 8 257153 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 9 257154 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 9 257155 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 10 257156 -NCIT:C170832 Refractory Thyroid Gland Anaplastic Carcinoma 8 257157 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 8 257158 -NCIT:C156267 Thyroid Gland Mucinous Carcinoma 7 257159 -NCIT:C27380 Thyroid Gland Adenocarcinoma 7 257160 -NCIT:C187645 Follicular-Derived Thyroid Gland Carcinoma, High Grade 8 257161 -NCIT:C187648 Differentiated High Grade Thyroid Gland Carcinoma 9 257162 -NCIT:C6040 Poorly Differentiated Thyroid Gland Carcinoma 9 257163 -NCIT:C174046 Metastatic Poorly Differentiated Thyroid Gland Carcinoma 10 257164 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 10 257165 -NCIT:C174569 Unresectable Poorly Differentiated Thyroid Gland Carcinoma 10 257166 -NCIT:C187994 Thyroid Gland Secretory Carcinoma 8 257167 -NCIT:C7153 Differentiated Thyroid Gland Carcinoma 8 257168 -NCIT:C118829 Hereditary Nonmedullary Thyroid Gland Carcinoma 9 257169 -NCIT:C140959 Differentiated Thyroid Gland Carcinoma by AJCC v7 Stage 9 257170 -NCIT:C140958 Thyroid Gland Follicular Carcinoma by AJCC v7 Stage 10 257171 -NCIT:C9084 Stage I Thyroid Gland Follicular Carcinoma AJCC v7 11 257172 -NCIT:C9085 Stage II Thyroid Gland Follicular Carcinoma AJCC v7 11 257173 -NCIT:C9086 Stage IV Thyroid Gland Follicular Carcinoma AJCC v7 11 257174 -NCIT:C115035 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v7 12 257175 -NCIT:C115036 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v7 12 257176 -NCIT:C115037 Stage IVC Thyroid Gland Follicular Carcinoma AJCC v7 12 257177 -NCIT:C9121 Stage III Thyroid Gland Follicular Carcinoma AJCC v7 11 257178 -NCIT:C140960 Thyroid Gland Papillary Carcinoma by AJCC v7 Stage 10 257179 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 11 257180 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 11 257181 -NCIT:C9083 Stage IV Thyroid Gland Papillary Carcinoma AJCC v7 11 257182 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 12 257183 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 12 257184 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 12 257185 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 11 257186 -NCIT:C87543 Stage I Differentiated Thyroid Gland Carcinoma AJCC v7 10 257187 -NCIT:C101539 Stage I Differentiated Thyroid Gland Carcinoma Under 45 Years AJCC v7 11 257188 -NCIT:C101540 Stage I Differentiated Thyroid Gland Carcinoma 45 Years and Older AJCC v7 11 257189 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 11 257190 -NCIT:C9084 Stage I Thyroid Gland Follicular Carcinoma AJCC v7 11 257191 -NCIT:C87544 Stage II Differentiated Thyroid Gland Carcinoma AJCC v7 10 257192 -NCIT:C101541 Stage II Differentiated Thyroid Gland Carcinoma Under 45 Years AJCC v7 11 257193 -NCIT:C101542 Stage II Differentiated Thyroid Gland Carcinoma 45 Years and Older AJCC v7 11 257194 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 11 257195 -NCIT:C9085 Stage II Thyroid Gland Follicular Carcinoma AJCC v7 11 257196 -NCIT:C87545 Stage III Differentiated Thyroid Gland Carcinoma AJCC v7 10 257197 -NCIT:C9121 Stage III Thyroid Gland Follicular Carcinoma AJCC v7 11 257198 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 11 257199 -NCIT:C87546 Stage IVA Differentiated Thyroid Gland Carcinoma AJCC v7 10 257200 -NCIT:C115035 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v7 11 257201 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 11 257202 -NCIT:C87547 Stage IVB Differentiated Thyroid Gland Carcinoma AJCC v7 10 257203 -NCIT:C115036 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v7 11 257204 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 11 257205 -NCIT:C87548 Stage IVC Differentiated Thyroid Gland Carcinoma AJCC v7 10 257206 -NCIT:C115037 Stage IVC Thyroid Gland Follicular Carcinoma AJCC v7 11 257207 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 11 257208 -NCIT:C140965 Differentiated Thyroid Gland Carcinoma by AJCC v8 Stage 9 257209 -NCIT:C140966 Stage I Differentiated Thyroid Gland Carcinoma AJCC v8 10 257210 -NCIT:C140967 Stage I Differentiated Thyroid Gland Carcinoma Under 55 Years AJCC v8 11 257211 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 257212 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 257213 -NCIT:C140968 Stage I Differentiated Thyroid Gland Carcinoma 55 Years and Older AJCC v8 11 257214 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 257215 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 257216 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 11 257217 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 257218 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 257219 -NCIT:C140988 Stage I Thyroid Gland Follicular Carcinoma AJCC v8 11 257220 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 257221 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 257222 -NCIT:C140969 Stage II Differentiated Thyroid Gland Carcinoma AJCC v8 10 257223 -NCIT:C140970 Stage II Differentiated Thyroid Gland Carcinoma Under 55 Years AJCC v8 11 257224 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 257225 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 257226 -NCIT:C140971 Stage II Differentiated Thyroid Gland Carcinoma 55 Years and Older AJCC v8 11 257227 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 257228 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 257229 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 11 257230 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 257231 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 257232 -NCIT:C140991 Stage II Thyroid Gland Follicular Carcinoma AJCC v8 11 257233 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 257234 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 257235 -NCIT:C140972 Stage III Differentiated Thyroid Gland Carcinoma AJCC v8 10 257236 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 11 257237 -NCIT:C140995 Stage III Thyroid Gland Follicular Carcinoma AJCC v8 11 257238 -NCIT:C140973 Stage IV Differentiated Thyroid Gland Carcinoma AJCC v8 10 257239 -NCIT:C140974 Stage IVA Differentiated Thyroid Gland Carcinoma AJCC v8 11 257240 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 12 257241 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 12 257242 -NCIT:C140975 Stage IVB Differentiated Thyroid Gland Carcinoma AJCC v8 11 257243 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 12 257244 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 12 257245 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 11 257246 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 12 257247 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 12 257248 -NCIT:C140996 Stage IV Thyroid Gland Follicular Carcinoma AJCC v8 11 257249 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 12 257250 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 12 257251 -NCIT:C140976 Thyroid Gland Papillary Carcinoma by AJCC v8 Stage 10 257252 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 11 257253 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 257254 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 257255 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 11 257256 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 257257 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 257258 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 11 257259 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 11 257260 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 12 257261 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 12 257262 -NCIT:C140987 Thyroid Gland Follicular Carcinoma by AJCC v8 Stage 10 257263 -NCIT:C140988 Stage I Thyroid Gland Follicular Carcinoma AJCC v8 11 257264 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 257265 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 257266 -NCIT:C140991 Stage II Thyroid Gland Follicular Carcinoma AJCC v8 11 257267 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 257268 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 257269 -NCIT:C140995 Stage III Thyroid Gland Follicular Carcinoma AJCC v8 11 257270 -NCIT:C140996 Stage IV Thyroid Gland Follicular Carcinoma AJCC v8 11 257271 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 12 257272 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 12 257273 -NCIT:C165607 Refractory Differentiated Thyroid Gland Carcinoma 9 257274 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 10 257275 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 10 257276 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 11 257277 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 9 257278 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 10 257279 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 10 257280 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 11 257281 -NCIT:C168572 Unresectable Differentiated Thyroid Gland Carcinoma 9 257282 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 10 257283 -NCIT:C174571 Unresectable Thyroid Gland Follicular Carcinoma 10 257284 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 11 257285 -NCIT:C173979 Metastatic Differentiated Thyroid Gland Carcinoma 9 257286 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 10 257287 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 11 257288 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 12 257289 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 10 257290 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 10 257291 -NCIT:C4035 Thyroid Gland Papillary Carcinoma 9 257292 -NCIT:C123903 Childhood Thyroid Gland Papillary Carcinoma 10 257293 -NCIT:C126409 Warthin-Like Variant Thyroid Gland Papillary Carcinoma 10 257294 -NCIT:C126410 Thyroid Gland Papillary Carcinoma with Fibromatosis/Fasciitis-Like/Desmoid-Type Stroma 10 257295 -NCIT:C126594 Follicular Variant Thyroid Gland Papillary Carcinoma 10 257296 -NCIT:C66850 Invasive Encapsulated Follicular Variant Thyroid Gland Papillary Carcinoma 11 257297 -NCIT:C7381 Invasive Follicular Variant Thyroid Gland Papillary Carcinoma 11 257298 -NCIT:C140960 Thyroid Gland Papillary Carcinoma by AJCC v7 Stage 10 257299 -NCIT:C9081 Stage I Thyroid Gland Papillary Carcinoma AJCC v7 11 257300 -NCIT:C9082 Stage II Thyroid Gland Papillary Carcinoma AJCC v7 11 257301 -NCIT:C9083 Stage IV Thyroid Gland Papillary Carcinoma AJCC v7 11 257302 -NCIT:C115038 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v7 12 257303 -NCIT:C115039 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v7 12 257304 -NCIT:C115040 Stage IVC Thyroid Gland Papillary Carcinoma AJCC v7 12 257305 -NCIT:C9122 Stage III Thyroid Gland Papillary Carcinoma AJCC v7 11 257306 -NCIT:C140976 Thyroid Gland Papillary Carcinoma by AJCC v8 Stage 10 257307 -NCIT:C140977 Stage I Thyroid Gland Papillary Carcinoma AJCC v8 11 257308 -NCIT:C140978 Stage I Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 257309 -NCIT:C140979 Stage I Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 257310 -NCIT:C140980 Stage II Thyroid Gland Papillary Carcinoma AJCC v8 11 257311 -NCIT:C140981 Stage II Thyroid Gland Papillary Carcinoma Under 55 Years AJCC v8 12 257312 -NCIT:C140982 Stage II Thyroid Gland Papillary Carcinoma 55 Years and Older AJCC v8 12 257313 -NCIT:C140983 Stage III Thyroid Gland Papillary Carcinoma AJCC v8 11 257314 -NCIT:C140984 Stage IV Thyroid Gland Papillary Carcinoma AJCC v8 11 257315 -NCIT:C140985 Stage IVA Thyroid Gland Papillary Carcinoma AJCC v8 12 257316 -NCIT:C140986 Stage IVB Thyroid Gland Papillary Carcinoma AJCC v8 12 257317 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 10 257318 -NCIT:C156034 Encapsulated Variant Thyroid Gland Papillary Carcinoma 10 257319 -NCIT:C156045 Spindle Cell Variant Thyroid Gland Papillary Carcinoma 10 257320 -NCIT:C156050 Hobnail Variant Thyroid Gland Papillary Carcinoma 10 257321 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 10 257322 -NCIT:C165608 Refractory Thyroid Gland Papillary Carcinoma 10 257323 -NCIT:C174570 Unresectable Thyroid Gland Papillary Carcinoma 10 257324 -NCIT:C187644 Classic Thyroid Gland Papillary Carcinoma 10 257325 -NCIT:C35558 Tall Cell Variant Thyroid Gland Papillary Carcinoma 10 257326 -NCIT:C35830 Columnar Cell Variant Thyroid Gland Papillary Carcinoma 10 257327 -NCIT:C37304 Multicentric Thyroid Gland Papillary Carcinoma 10 257328 -NCIT:C46004 Thyroid Gland Papillary Microcarcinoma 10 257329 -NCIT:C46092 Macrofollicular Variant Thyroid Gland Papillary Carcinoma 10 257330 -NCIT:C46093 Oncocytic Variant Thyroid Gland Papillary Carcinoma 10 257331 -NCIT:C46094 Clear Cell Variant Thyroid Gland Papillary Carcinoma 10 257332 -NCIT:C46095 Solid/Trabecular Variant Thyroid Gland Papillary Carcinoma 10 257333 -NCIT:C7427 Diffuse Sclerosing Variant Thyroid Gland Papillary Carcinoma 10 257334 -NCIT:C8054 Thyroid Gland Follicular Carcinoma 9 257335 -NCIT:C123904 Childhood Thyroid Gland Follicular Carcinoma 10 257336 -NCIT:C140958 Thyroid Gland Follicular Carcinoma by AJCC v7 Stage 10 257337 -NCIT:C9084 Stage I Thyroid Gland Follicular Carcinoma AJCC v7 11 257338 -NCIT:C9085 Stage II Thyroid Gland Follicular Carcinoma AJCC v7 11 257339 -NCIT:C9086 Stage IV Thyroid Gland Follicular Carcinoma AJCC v7 11 257340 -NCIT:C115035 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v7 12 257341 -NCIT:C115036 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v7 12 257342 -NCIT:C115037 Stage IVC Thyroid Gland Follicular Carcinoma AJCC v7 12 257343 -NCIT:C9121 Stage III Thyroid Gland Follicular Carcinoma AJCC v7 11 257344 -NCIT:C140987 Thyroid Gland Follicular Carcinoma by AJCC v8 Stage 10 257345 -NCIT:C140988 Stage I Thyroid Gland Follicular Carcinoma AJCC v8 11 257346 -NCIT:C140989 Stage I Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 257347 -NCIT:C140990 Stage I Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 257348 -NCIT:C140991 Stage II Thyroid Gland Follicular Carcinoma AJCC v8 11 257349 -NCIT:C140992 Stage II Thyroid Gland Follicular Carcinoma Under 55 Years AJCC v8 12 257350 -NCIT:C140993 Stage II Thyroid Gland Follicular Carcinoma 55 Years and Older AJCC v8 12 257351 -NCIT:C140995 Stage III Thyroid Gland Follicular Carcinoma AJCC v8 11 257352 -NCIT:C140996 Stage IV Thyroid Gland Follicular Carcinoma AJCC v8 11 257353 -NCIT:C140997 Stage IVA Thyroid Gland Follicular Carcinoma AJCC v8 12 257354 -NCIT:C140998 Stage IVB Thyroid Gland Follicular Carcinoma AJCC v8 12 257355 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 10 257356 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 11 257357 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 10 257358 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 11 257359 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 12 257360 -NCIT:C156122 Thyroid Gland Follicular Carcinoma, Encapsulated Angioinvasive 10 257361 -NCIT:C156123 Thyroid Gland Follicular Carcinoma, Widely Invasive 10 257362 -NCIT:C165609 Refractory Thyroid Gland Follicular Carcinoma 10 257363 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 11 257364 -NCIT:C174571 Unresectable Thyroid Gland Follicular Carcinoma 10 257365 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 11 257366 -NCIT:C187643 Thyroid Gland Follicular Carcinoma, Signet Ring Cell Variant 10 257367 -NCIT:C46096 Thyroid Gland Follicular Carcinoma, Clear Cell Variant 10 257368 -NCIT:C4946 Thyroid Gland Oncocytic Carcinoma 10 257369 -NCIT:C165610 Refractory Thyroid Gland Oncocytic Carcinoma 11 257370 -NCIT:C174572 Unresectable Thyroid Gland Oncocytic Carcinoma 11 257371 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 11 257372 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 11 257373 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 12 257374 -NCIT:C65200 Thyroid Gland Follicular Carcinoma, Minimally Invasive 10 257375 -NCIT:C38762 Thyroid Gland Mucoepidermoid Carcinoma 7 257376 -NCIT:C38763 Thyroid Gland Sclerosing Mucoepidermoid Carcinoma with Eosinophilia 8 257377 -NCIT:C3878 Thyroid Gland Anaplastic Carcinoma 7 257378 -NCIT:C140999 Thyroid Gland Anaplastic Carcinoma by AJCC v7 Stage 8 257379 -NCIT:C87552 Stage IVA Thyroid Gland Anaplastic Carcinoma AJCC v7 9 257380 -NCIT:C87553 Stage IVB Thyroid Gland Anaplastic Carcinoma AJCC v7 9 257381 -NCIT:C87554 Stage IVC Thyroid Gland Anaplastic Carcinoma AJCC v7 9 257382 -NCIT:C141000 Thyroid Gland Anaplastic Carcinoma by AJCC v8 Stage 8 257383 -NCIT:C141001 Stage IVA Thyroid Gland Anaplastic Carcinoma AJCC v8 9 257384 -NCIT:C141003 Stage IVB Thyroid Gland Anaplastic Carcinoma AJCC v8 9 257385 -NCIT:C141004 Stage IVC Thyroid Gland Anaplastic Carcinoma AJCC v8 9 257386 -NCIT:C153624 Recurrent Thyroid Gland Anaplastic Carcinoma 8 257387 -NCIT:C170831 Metastatic Thyroid Gland Anaplastic Carcinoma 8 257388 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 257389 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 257390 -NCIT:C170832 Refractory Thyroid Gland Anaplastic Carcinoma 8 257391 -NCIT:C170833 Unresectable Thyroid Gland Anaplastic Carcinoma 8 257392 -NCIT:C46008 Thyroid Gland Anaplastic Carcinoma, Squamous Cell Carcinoma Pattern 8 257393 -NCIT:C7906 Thyroid Gland Anaplastic Carcinoma, Osteoclastic Variant 8 257394 -NCIT:C3879 Thyroid Gland Medullary Carcinoma 7 257395 -NCIT:C123905 Childhood Thyroid Gland Medullary Carcinoma 8 257396 -NCIT:C141041 Thyroid Gland Medullary Carcinoma by AJCC v7 Stage 8 257397 -NCIT:C6133 Stage I Thyroid Gland Medullary Carcinoma AJCC v7 9 257398 -NCIT:C6134 Stage II Thyroid Gland Medullary Carcinoma AJCC v7 9 257399 -NCIT:C6135 Stage III Thyroid Gland Medullary Carcinoma AJCC v7 9 257400 -NCIT:C6136 Stage IV Thyroid Gland Medullary Carcinoma AJCC v7 9 257401 -NCIT:C87549 Stage IVA Thyroid Gland Medullary Carcinoma AJCC v7 10 257402 -NCIT:C87550 Stage IVB Thyroid Gland Medullary Carcinoma AJCC v7 10 257403 -NCIT:C87551 Stage IVC Thyroid Gland Medullary Carcinoma AJCC v7 10 257404 -NCIT:C141042 Thyroid Gland Medullary Carcinoma by AJCC v8 Stage 8 257405 -NCIT:C141043 Stage I Thyroid Gland Medullary Carcinoma AJCC v8 9 257406 -NCIT:C141044 Stage II Thyroid Gland Medullary Carcinoma AJCC v8 9 257407 -NCIT:C141045 Stage III Thyroid Gland Medullary Carcinoma AJCC v8 9 257408 -NCIT:C141046 Stage IV Thyroid Gland Medullary Carcinoma AJCC v8 9 257409 -NCIT:C141047 Stage IVA Thyroid Gland Medullary Carcinoma AJCC v8 10 257410 -NCIT:C141048 Stage IVB Thyroid Gland Medullary Carcinoma AJCC v8 10 257411 -NCIT:C141049 Stage IVC Thyroid Gland Medullary Carcinoma AJCC v8 10 257412 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 8 257413 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 9 257414 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 8 257415 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 257416 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 257417 -NCIT:C163974 Unresectable Thyroid Gland Medullary Carcinoma 8 257418 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 9 257419 -NCIT:C180404 Refractory Thyroid Gland Medullary Carcinoma 8 257420 -NCIT:C4193 Thyroid Gland Medullary Carcinoma with Amyloid Stroma 8 257421 -NCIT:C46098 Sporadic Thyroid Gland Medullary Carcinoma 8 257422 -NCIT:C46103 Sporadic Thyroid Gland Micromedullary Carcinoma 9 257423 -NCIT:C46099 Hereditary Thyroid Gland Medullary Carcinoma 8 257424 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 9 257425 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 9 257426 -NCIT:C46104 Thyroid Gland Mixed Medullary and Follicular Cell-Derived Carcinoma 7 257427 -NCIT:C187992 Thyroid Gland Mixed Medullary and Follicular Carcinoma 8 257428 -NCIT:C187993 Thyroid Gland Mixed Medullary and Papillary Carcinoma 8 257429 -NCIT:C46105 Thyroid Gland Spindle Epithelial Tumor with Thymus-Like Elements 7 257430 -NCIT:C190064 Childhood Thyroid Gland Spindle Epithelial Tumor with Thymus-Like Elements 8 257431 -NCIT:C46106 Intrathyroid Thymic Carcinoma 7 257432 -NCIT:C7908 Recurrent Thyroid Gland Carcinoma 7 257433 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 8 257434 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 9 257435 -NCIT:C153624 Recurrent Thyroid Gland Anaplastic Carcinoma 8 257436 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 8 257437 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 9 257438 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 9 257439 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 10 257440 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 8 257441 -NCIT:C5265 Thyroid Gland Lymphoma 6 257442 -NCIT:C181209 Thyroid Gland Hodgkin Lymphoma 7 257443 -NCIT:C6044 Thyroid Gland Non-Hodgkin Lymphoma 7 257444 -NCIT:C156410 Thyroid Gland Follicular Lymphoma 8 257445 -NCIT:C6046 Thyroid Gland Diffuse Large B-Cell Lymphoma 8 257446 -NCIT:C7263 Thyroid Gland Immunoblastic Lymphoma 9 257447 -NCIT:C7601 Thyroid Gland Mucosa-Associated Lymphoid Tissue Lymphoma 8 257448 -NCIT:C6041 Thyroid Gland Sarcoma 6 257449 -NCIT:C156341 Thyroid Gland Malignant Peripheral Nerve Sheath Tumor 7 257450 -NCIT:C156347 Thyroid Gland Leiomyosarcoma 7 257451 -NCIT:C6043 Thyroid Gland Angiosarcoma 7 257452 -NCIT:C7509 Metastatic Malignant Neoplasm in the Thyroid Gland 6 257453 -NCIT:C7545 Malignant Pharyngeal Neoplasm 5 257454 -NCIT:C150531 Recurrent Malignant Pharyngeal Neoplasm 6 257455 -NCIT:C5103 Recurrent Pharyngeal Carcinoma 7 257456 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 8 257457 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 9 257458 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 257459 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 257460 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 9 257461 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 10 257462 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 9 257463 -NCIT:C8051 Recurrent Oropharyngeal Carcinoma 8 257464 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 9 257465 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 10 257466 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 8 257467 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 9 257468 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 257469 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 257470 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 8 257471 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 9 257472 -NCIT:C9268 Recurrent Malignant Nasopharyngeal Neoplasm 7 257473 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 8 257474 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 9 257475 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 257476 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 257477 -NCIT:C9353 Recurrent Malignant Hypopharyngeal Neoplasm 7 257478 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 8 257479 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 9 257480 -NCIT:C150532 Refractory Malignant Pharyngeal Neoplasm 6 257481 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 7 257482 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 7 257483 -NCIT:C148434 Refractory Nasopharyngeal Carcinoma 7 257484 -NCIT:C173354 Pharyngeal Lymphoma 6 257485 -NCIT:C173355 Pharyngeal Non-Hodgkin Lymphoma 7 257486 -NCIT:C173359 Nasopharyngeal Non-Hodgkin Lymphoma 8 257487 -NCIT:C173579 Oropharyngeal Non-Hodgkin Lymphoma 8 257488 -NCIT:C188072 Tonsillar Diffuse Large B-Cell Lymphoma 9 257489 -NCIT:C188080 Tonsillar Mantle Cell Lymphoma 9 257490 -NCIT:C173356 Pharyngeal Hodgkin Lymphoma 7 257491 -NCIT:C173361 Nasopharyngeal Hodgkin Lymphoma 8 257492 -NCIT:C173578 Oropharyngeal Hodgkin Lymphoma 8 257493 -NCIT:C173357 Nasopharyngeal Lymphoma 7 257494 -NCIT:C173359 Nasopharyngeal Non-Hodgkin Lymphoma 8 257495 -NCIT:C173361 Nasopharyngeal Hodgkin Lymphoma 8 257496 -NCIT:C173577 Oropharyngeal Lymphoma 7 257497 -NCIT:C173578 Oropharyngeal Hodgkin Lymphoma 8 257498 -NCIT:C173579 Oropharyngeal Non-Hodgkin Lymphoma 8 257499 -NCIT:C188072 Tonsillar Diffuse Large B-Cell Lymphoma 9 257500 -NCIT:C188080 Tonsillar Mantle Cell Lymphoma 9 257501 -NCIT:C5918 Tonsillar Lymphoma 8 257502 -NCIT:C188072 Tonsillar Diffuse Large B-Cell Lymphoma 9 257503 -NCIT:C188080 Tonsillar Mantle Cell Lymphoma 9 257504 -NCIT:C178521 Pharyngeal Melanoma 6 257505 -NCIT:C178522 Nasopharyngeal Melanoma 7 257506 -NCIT:C7190 Malignant Hypopharyngeal Neoplasm 6 257507 -NCIT:C3531 Malignant Pyriform Fossa Neoplasm 7 257508 -NCIT:C6028 Metastatic Malignant Neoplasm in the Hypopharynx 7 257509 -NCIT:C9323 Malignant Postcricoid Neoplasm 7 257510 -NCIT:C8595 Postcricoid Carcinoma 8 257511 -NCIT:C8185 Postcricoid Squamous Cell Carcinoma 9 257512 -NCIT:C9353 Recurrent Malignant Hypopharyngeal Neoplasm 7 257513 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 8 257514 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 9 257515 -NCIT:C9465 Hypopharyngeal Carcinoma 7 257516 -NCIT:C133003 Hypopharyngeal Carcinoma by AJCC v8 Stage 8 257517 -NCIT:C133005 Stage I Hypopharyngeal Carcinoma AJCC v8 9 257518 -NCIT:C133006 Stage II Hypopharyngeal Carcinoma AJCC v8 9 257519 -NCIT:C133007 Stage III Hypopharyngeal Carcinoma AJCC v8 9 257520 -NCIT:C133008 Stage IV Hypopharyngeal Carcinoma AJCC v8 9 257521 -NCIT:C133009 Stage IVA Hypopharyngeal Carcinoma AJCC v8 10 257522 -NCIT:C133010 Stage IVB Hypopharyngeal Carcinoma AJCC v8 10 257523 -NCIT:C133011 Stage IVC Hypopharyngeal Carcinoma AJCC v8 10 257524 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 9 257525 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 257526 -NCIT:C156081 Metastatic Hypopharyngeal Carcinoma 8 257527 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 257528 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 257529 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 257530 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 9 257531 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 257532 -NCIT:C4043 Hypopharyngeal Squamous Cell Carcinoma 8 257533 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 9 257534 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 257535 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 257536 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 257537 -NCIT:C172646 Unresectable Hypopharyngeal Squamous Cell Carcinoma 9 257538 -NCIT:C4943 Pyriform Fossa Squamous Cell Carcinoma 9 257539 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 9 257540 -NCIT:C8185 Postcricoid Squamous Cell Carcinoma 9 257541 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 257542 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 257543 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 257544 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 257545 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 257546 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 257547 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 257548 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 9 257549 -NCIT:C6700 Pyriform Fossa Carcinoma 8 257550 -NCIT:C4943 Pyriform Fossa Squamous Cell Carcinoma 9 257551 -NCIT:C8595 Postcricoid Carcinoma 8 257552 -NCIT:C8185 Postcricoid Squamous Cell Carcinoma 9 257553 -NCIT:C90524 Hypopharyngeal Carcinoma by AJCC v6 Stage 8 257554 -NCIT:C8038 Stage I Hypopharyngeal Carcinoma AJCC v6 9 257555 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 9 257556 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 257557 -NCIT:C8040 Stage III Hypopharyngeal Carcinoma AJCC v6 9 257558 -NCIT:C8533 Stage IV Hypopharyngeal Carcinoma AJCC v6 9 257559 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 9 257560 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 257561 -NCIT:C91251 Hypopharyngeal Carcinoma by AJCC v7 Stage 8 257562 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 9 257563 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 257564 -NCIT:C89045 Stage I Hypopharyngeal Carcinoma AJCC v7 9 257565 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 257566 -NCIT:C89046 Stage III Hypopharyngeal Carcinoma AJCC v7 9 257567 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 257568 -NCIT:C89047 Stage IV Hypopharyngeal Carcinoma AJCC v7 9 257569 -NCIT:C5992 Stage IVA Hypopharyngeal Carcinoma AJCC v7 10 257570 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 257571 -NCIT:C5993 Stage IVB Hypopharyngeal Carcinoma AJCC v7 10 257572 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 257573 -NCIT:C5994 Stage IVC Hypopharyngeal Carcinoma AJCC v7 10 257574 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 257575 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 257576 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 257577 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 257578 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 257579 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 9 257580 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 257581 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 8 257582 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 9 257583 -NCIT:C7398 Malignant Oropharyngeal Neoplasm 6 257584 -NCIT:C173577 Oropharyngeal Lymphoma 7 257585 -NCIT:C173578 Oropharyngeal Hodgkin Lymphoma 8 257586 -NCIT:C173579 Oropharyngeal Non-Hodgkin Lymphoma 8 257587 -NCIT:C188072 Tonsillar Diffuse Large B-Cell Lymphoma 9 257588 -NCIT:C188080 Tonsillar Mantle Cell Lymphoma 9 257589 -NCIT:C5918 Tonsillar Lymphoma 8 257590 -NCIT:C188072 Tonsillar Diffuse Large B-Cell Lymphoma 9 257591 -NCIT:C188080 Tonsillar Mantle Cell Lymphoma 9 257592 -NCIT:C3529 Malignant Soft Palate Neoplasm 7 257593 -NCIT:C35177 Malignant Uvula Neoplasm 8 257594 -NCIT:C8395 Soft Palate Carcinoma 8 257595 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 257596 -NCIT:C6029 Metastatic Malignant Neoplasm in the Oropharynx 7 257597 -NCIT:C9105 Oropharyngeal Carcinoma 7 257598 -NCIT:C132882 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Stage 8 257599 -NCIT:C132883 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Clinical Stage 9 257600 -NCIT:C132885 Clinical Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 257601 -NCIT:C132886 Clinical Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 257602 -NCIT:C132891 Clinical Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 257603 -NCIT:C132893 Clinical Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 257604 -NCIT:C132884 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Pathologic Stage 9 257605 -NCIT:C132898 Pathologic Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 257606 -NCIT:C132899 Pathologic Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 257607 -NCIT:C132900 Pathologic Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 257608 -NCIT:C132901 Pathologic Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 257609 -NCIT:C132994 Oropharyngeal (p16-Negative) Carcinoma by AJCC v8 Stage 8 257610 -NCIT:C132995 Stage 0 Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 257611 -NCIT:C132996 Stage I Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 257612 -NCIT:C132997 Stage II Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 257613 -NCIT:C132998 Stage III Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 257614 -NCIT:C132999 Stage IV Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 257615 -NCIT:C133000 Stage IVA Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 257616 -NCIT:C133001 Stage IVB Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 257617 -NCIT:C133002 Stage IVC Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 257618 -NCIT:C156082 Metastatic Oropharyngeal Carcinoma 8 257619 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 257620 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 257621 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 257622 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 257623 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 9 257624 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 257625 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 257626 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 9 257627 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 257628 -NCIT:C173576 Oropharyngeal Polymorphous Adenocarcinoma 8 257629 -NCIT:C4825 Tonsillar Carcinoma 8 257630 -NCIT:C8183 Tonsillar Squamous Cell Carcinoma 9 257631 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 10 257632 -NCIT:C6241 Oropharyngeal Adenoid Cystic Carcinoma 8 257633 -NCIT:C8051 Recurrent Oropharyngeal Carcinoma 8 257634 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 9 257635 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 10 257636 -NCIT:C8181 Oropharyngeal Squamous Cell Carcinoma 8 257637 -NCIT:C126750 Oropharyngeal Poorly Differentiated Carcinoma 9 257638 -NCIT:C126751 Oropharyngeal Basaloid Carcinoma 9 257639 -NCIT:C147906 Oropharyngeal p16INK4a-Negative Squamous Cell Carcinoma 9 257640 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 9 257641 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 257642 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 257643 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 257644 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 257645 -NCIT:C162787 Resectable Oropharyngeal Squamous Cell Carcinoma 9 257646 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 10 257647 -NCIT:C162833 Unresectable Oropharyngeal Squamous Cell Carcinoma 9 257648 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 10 257649 -NCIT:C173414 Oropharyngeal Human Papillomavirus-Negative Squamous Cell Carcinoma 9 257650 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 257651 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 257652 -NCIT:C68610 Oropharyngeal Undifferentiated Carcinoma 9 257653 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 257654 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 257655 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 257656 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 257657 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 257658 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 257659 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 257660 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 10 257661 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 257662 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 10 257663 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 10 257664 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 10 257665 -NCIT:C8183 Tonsillar Squamous Cell Carcinoma 9 257666 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 10 257667 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 257668 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 257669 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 257670 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 257671 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 9 257672 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 257673 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 9 257674 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 257675 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 257676 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 257677 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 257678 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 257679 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 257680 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 257681 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 257682 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 257683 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 257684 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 9 257685 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 10 257686 -NCIT:C87055 Oropharyngeal Human Papillomavirus-Positive Squamous Cell Carcinoma 9 257687 -NCIT:C8395 Soft Palate Carcinoma 8 257688 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 257689 -NCIT:C90523 Oropharyngeal Carcinoma by AJCC v6 Stage 8 257690 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 9 257691 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 257692 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 9 257693 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 257694 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 257695 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 9 257696 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 257697 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 257698 -NCIT:C8050 Stage III Oropharyngeal Carcinoma AJCC v6 9 257699 -NCIT:C9218 Stage IV Oropharyngeal Carcinoma AJCC v6 9 257700 -NCIT:C91248 Oropharyngeal Carcinoma by AJCC v7 Stage 8 257701 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 9 257702 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 257703 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 9 257704 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 257705 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 257706 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 9 257707 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 257708 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 257709 -NCIT:C89021 Stage III Oropharyngeal Carcinoma AJCC v7 9 257710 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 257711 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 257712 -NCIT:C89023 Stage IV Oropharyngeal Carcinoma AJCC v7 9 257713 -NCIT:C5985 Stage IVA Oropharyngeal Carcinoma AJCC v7 10 257714 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 257715 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 257716 -NCIT:C5986 Stage IVB Oropharyngeal Carcinoma AJCC v7 10 257717 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 257718 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 257719 -NCIT:C5987 Stage IVC Oropharyngeal Carcinoma AJCC v7 10 257720 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 257721 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 257722 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 257723 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 257724 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 257725 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 257726 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 257727 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 257728 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 257729 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 257730 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 257731 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 257732 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 257733 -NCIT:C7546 Metastatic Malignant Neoplasm in the Pharynx 6 257734 -NCIT:C6028 Metastatic Malignant Neoplasm in the Hypopharynx 7 257735 -NCIT:C6029 Metastatic Malignant Neoplasm in the Oropharynx 7 257736 -NCIT:C6030 Metastatic Malignant Neoplasm in the Nasopharynx 7 257737 -NCIT:C9321 Malignant Nasopharyngeal Neoplasm 6 257738 -NCIT:C173357 Nasopharyngeal Lymphoma 7 257739 -NCIT:C173359 Nasopharyngeal Non-Hodgkin Lymphoma 8 257740 -NCIT:C173361 Nasopharyngeal Hodgkin Lymphoma 8 257741 -NCIT:C178522 Nasopharyngeal Melanoma 7 257742 -NCIT:C3871 Nasopharyngeal Carcinoma 7 257743 -NCIT:C132816 Nasopharyngeal Carcinoma by AJCC v8 Stage 8 257744 -NCIT:C132817 Stage I Nasopharyngeal Carcinoma AJCC v8 9 257745 -NCIT:C132818 Stage II Nasopharyngeal Carcinoma AJCC v8 9 257746 -NCIT:C132819 Stage III Nasopharyngeal Carcinoma AJCC v8 9 257747 -NCIT:C132820 Stage IV Nasopharyngeal Carcinoma AJCC v8 9 257748 -NCIT:C132821 Stage IVA Nasopharyngeal Carcinoma AJCC v8 10 257749 -NCIT:C132822 Stage IVB Nasopharyngeal Carcinoma AJCC v8 10 257750 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 9 257751 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 10 257752 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 257753 -NCIT:C148434 Refractory Nasopharyngeal Carcinoma 8 257754 -NCIT:C156079 Metastatic Nasopharyngeal Carcinoma 8 257755 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 257756 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 257757 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 257758 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 257759 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 257760 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 257761 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 9 257762 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 257763 -NCIT:C165176 Unresectable Nasopharyngeal Carcinoma 8 257764 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 9 257765 -NCIT:C167265 Nasopharyngeal Squamous Cell Carcinoma 8 257766 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 257767 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 257768 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 257769 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 257770 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 257771 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 257772 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 9 257773 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 257774 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 257775 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 9 257776 -NCIT:C54360 Nasopharyngeal Basaloid Carcinoma 9 257777 -NCIT:C7373 Nasopharyngeal Nonkeratinizing Carcinoma 9 257778 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 257779 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 257780 -NCIT:C54389 Nasopharyngeal Differentiated Carcinoma 10 257781 -NCIT:C8023 Nasopharyngeal Undifferentiated Carcinoma 10 257782 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 257783 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 11 257784 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 257785 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 257786 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 257787 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 257788 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 11 257789 -NCIT:C7992 Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 257790 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 257791 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 257792 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 257793 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 257794 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 257795 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 257796 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 257797 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 257798 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 257799 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 257800 -NCIT:C173340 Nasopharyngeal Adenoid Cystic Carcinoma 8 257801 -NCIT:C190276 Childhood Nasopharyngeal Carcinoma 8 257802 -NCIT:C54400 Nasopharyngeal Papillary Adenocarcinoma 8 257803 -NCIT:C90522 Nasopharyngeal Carcinoma by AJCC v6 Stage 8 257804 -NCIT:C7395 Stage I Nasopharyngeal Carcinoma AJCC v6 9 257805 -NCIT:C7396 Stage III Nasopharyngeal Carcinoma AJCC v6 9 257806 -NCIT:C7397 Stage IV Nasopharyngeal Carcinoma AJCC v6 9 257807 -NCIT:C7920 Stage II Nasopharyngeal Carcinoma AJCC v6 9 257808 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 9 257809 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 10 257810 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 257811 -NCIT:C91244 Nasopharyngeal Carcinoma by AJCC v7 Stage 8 257812 -NCIT:C88981 Stage I Nasopharyngeal Carcinoma AJCC v7 9 257813 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 257814 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 257815 -NCIT:C88982 Stage II Nasopharyngeal Carcinoma AJCC v7 9 257816 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 257817 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 257818 -NCIT:C88983 Stage III Nasopharyngeal Carcinoma AJCC v7 9 257819 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 257820 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 257821 -NCIT:C88984 Stage IV Nasopharyngeal Carcinoma AJCC v7 9 257822 -NCIT:C5995 Stage IVC Nasopharyngeal Carcinoma AJCC v7 10 257823 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 257824 -NCIT:C5996 Stage IVB Nasopharyngeal Carcinoma AJCC v7 10 257825 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 257826 -NCIT:C5997 Stage IVA Nasopharyngeal Carcinoma AJCC v7 10 257827 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 257828 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 257829 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 257830 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 257831 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 257832 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 257833 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 9 257834 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 10 257835 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 257836 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 8 257837 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 9 257838 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 257839 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 257840 -NCIT:C6030 Metastatic Malignant Neoplasm in the Nasopharynx 7 257841 -NCIT:C9268 Recurrent Malignant Nasopharyngeal Neoplasm 7 257842 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 8 257843 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 9 257844 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 257845 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 257846 -NCIT:C9466 Pharyngeal Carcinoma 6 257847 -NCIT:C102872 Pharyngeal Squamous Cell Carcinoma 7 257848 -NCIT:C167265 Nasopharyngeal Squamous Cell Carcinoma 8 257849 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 257850 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 257851 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 257852 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 257853 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 257854 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 257855 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 9 257856 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 257857 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 257858 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 9 257859 -NCIT:C54360 Nasopharyngeal Basaloid Carcinoma 9 257860 -NCIT:C7373 Nasopharyngeal Nonkeratinizing Carcinoma 9 257861 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 257862 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 257863 -NCIT:C54389 Nasopharyngeal Differentiated Carcinoma 10 257864 -NCIT:C8023 Nasopharyngeal Undifferentiated Carcinoma 10 257865 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 257866 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 11 257867 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 257868 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 257869 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 257870 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 257871 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 11 257872 -NCIT:C7992 Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 257873 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 257874 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 257875 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 257876 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 257877 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 257878 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 257879 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 257880 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 257881 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 257882 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 257883 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 8 257884 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 257885 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 257886 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 257887 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 257888 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 257889 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 257890 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 257891 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 257892 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 257893 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 257894 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 257895 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 257896 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 257897 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 257898 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 257899 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 257900 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 257901 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 8 257902 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 9 257903 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 257904 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 257905 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 9 257906 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 10 257907 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 9 257908 -NCIT:C35693 Posterior Pharyngeal Wall Squamous Cell Carcinoma 8 257909 -NCIT:C4043 Hypopharyngeal Squamous Cell Carcinoma 8 257910 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 9 257911 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 257912 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 257913 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 257914 -NCIT:C172646 Unresectable Hypopharyngeal Squamous Cell Carcinoma 9 257915 -NCIT:C4943 Pyriform Fossa Squamous Cell Carcinoma 9 257916 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 9 257917 -NCIT:C8185 Postcricoid Squamous Cell Carcinoma 9 257918 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 257919 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 257920 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 257921 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 257922 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 257923 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 257924 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 257925 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 9 257926 -NCIT:C8181 Oropharyngeal Squamous Cell Carcinoma 8 257927 -NCIT:C126750 Oropharyngeal Poorly Differentiated Carcinoma 9 257928 -NCIT:C126751 Oropharyngeal Basaloid Carcinoma 9 257929 -NCIT:C147906 Oropharyngeal p16INK4a-Negative Squamous Cell Carcinoma 9 257930 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 9 257931 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 257932 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 257933 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 257934 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 257935 -NCIT:C162787 Resectable Oropharyngeal Squamous Cell Carcinoma 9 257936 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 10 257937 -NCIT:C162833 Unresectable Oropharyngeal Squamous Cell Carcinoma 9 257938 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 10 257939 -NCIT:C173414 Oropharyngeal Human Papillomavirus-Negative Squamous Cell Carcinoma 9 257940 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 257941 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 257942 -NCIT:C68610 Oropharyngeal Undifferentiated Carcinoma 9 257943 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 257944 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 257945 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 257946 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 257947 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 257948 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 257949 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 257950 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 10 257951 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 257952 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 10 257953 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 10 257954 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 10 257955 -NCIT:C8183 Tonsillar Squamous Cell Carcinoma 9 257956 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 10 257957 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 257958 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 257959 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 257960 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 257961 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 9 257962 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 257963 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 9 257964 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 257965 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 257966 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 257967 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 257968 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 257969 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 257970 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 257971 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 257972 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 257973 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 257974 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 9 257975 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 10 257976 -NCIT:C87055 Oropharyngeal Human Papillomavirus-Positive Squamous Cell Carcinoma 9 257977 -NCIT:C132814 Pharyngeal Carcinoma by AJCC v8 Stage 7 257978 -NCIT:C132816 Nasopharyngeal Carcinoma by AJCC v8 Stage 8 257979 -NCIT:C132817 Stage I Nasopharyngeal Carcinoma AJCC v8 9 257980 -NCIT:C132818 Stage II Nasopharyngeal Carcinoma AJCC v8 9 257981 -NCIT:C132819 Stage III Nasopharyngeal Carcinoma AJCC v8 9 257982 -NCIT:C132820 Stage IV Nasopharyngeal Carcinoma AJCC v8 9 257983 -NCIT:C132821 Stage IVA Nasopharyngeal Carcinoma AJCC v8 10 257984 -NCIT:C132822 Stage IVB Nasopharyngeal Carcinoma AJCC v8 10 257985 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 9 257986 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 10 257987 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 257988 -NCIT:C132882 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Stage 8 257989 -NCIT:C132883 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Clinical Stage 9 257990 -NCIT:C132885 Clinical Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 257991 -NCIT:C132886 Clinical Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 257992 -NCIT:C132891 Clinical Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 257993 -NCIT:C132893 Clinical Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 257994 -NCIT:C132884 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Pathologic Stage 9 257995 -NCIT:C132898 Pathologic Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 257996 -NCIT:C132899 Pathologic Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 257997 -NCIT:C132900 Pathologic Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 257998 -NCIT:C132901 Pathologic Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 257999 -NCIT:C132994 Oropharyngeal (p16-Negative) Carcinoma by AJCC v8 Stage 8 258000 -NCIT:C132995 Stage 0 Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 258001 -NCIT:C132996 Stage I Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 258002 -NCIT:C132997 Stage II Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 258003 -NCIT:C132998 Stage III Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 258004 -NCIT:C132999 Stage IV Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 258005 -NCIT:C133000 Stage IVA Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 258006 -NCIT:C133001 Stage IVB Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 258007 -NCIT:C133002 Stage IVC Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 258008 -NCIT:C133003 Hypopharyngeal Carcinoma by AJCC v8 Stage 8 258009 -NCIT:C133005 Stage I Hypopharyngeal Carcinoma AJCC v8 9 258010 -NCIT:C133006 Stage II Hypopharyngeal Carcinoma AJCC v8 9 258011 -NCIT:C133007 Stage III Hypopharyngeal Carcinoma AJCC v8 9 258012 -NCIT:C133008 Stage IV Hypopharyngeal Carcinoma AJCC v8 9 258013 -NCIT:C133009 Stage IVA Hypopharyngeal Carcinoma AJCC v8 10 258014 -NCIT:C133010 Stage IVB Hypopharyngeal Carcinoma AJCC v8 10 258015 -NCIT:C133011 Stage IVC Hypopharyngeal Carcinoma AJCC v8 10 258016 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 9 258017 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 258018 -NCIT:C156080 Metastatic Pharyngeal Carcinoma 7 258019 -NCIT:C156079 Metastatic Nasopharyngeal Carcinoma 8 258020 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 258021 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 258022 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 258023 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 258024 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 258025 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 258026 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 9 258027 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 258028 -NCIT:C156081 Metastatic Hypopharyngeal Carcinoma 8 258029 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 258030 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 258031 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 258032 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 9 258033 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 258034 -NCIT:C156082 Metastatic Oropharyngeal Carcinoma 8 258035 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 258036 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 258037 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 258038 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 258039 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 9 258040 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 258041 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 258042 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 9 258043 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 258044 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 8 258045 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 258046 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 9 258047 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 258048 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 258049 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 9 258050 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 258051 -NCIT:C170784 Advanced Pharyngeal Carcinoma 8 258052 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 9 258053 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 258054 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 258055 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 258056 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 258057 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 258058 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 9 258059 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 258060 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 8 258061 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 258062 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 258063 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 258064 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 258065 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 258066 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 258067 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 258068 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 258069 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 258070 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 258071 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 258072 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 258073 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 258074 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 258075 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 258076 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 258077 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 258078 -NCIT:C35692 Posterior Pharyngeal Wall Carcinoma 7 258079 -NCIT:C35693 Posterior Pharyngeal Wall Squamous Cell Carcinoma 8 258080 -NCIT:C3871 Nasopharyngeal Carcinoma 7 258081 -NCIT:C132816 Nasopharyngeal Carcinoma by AJCC v8 Stage 8 258082 -NCIT:C132817 Stage I Nasopharyngeal Carcinoma AJCC v8 9 258083 -NCIT:C132818 Stage II Nasopharyngeal Carcinoma AJCC v8 9 258084 -NCIT:C132819 Stage III Nasopharyngeal Carcinoma AJCC v8 9 258085 -NCIT:C132820 Stage IV Nasopharyngeal Carcinoma AJCC v8 9 258086 -NCIT:C132821 Stage IVA Nasopharyngeal Carcinoma AJCC v8 10 258087 -NCIT:C132822 Stage IVB Nasopharyngeal Carcinoma AJCC v8 10 258088 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 9 258089 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 10 258090 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 258091 -NCIT:C148434 Refractory Nasopharyngeal Carcinoma 8 258092 -NCIT:C156079 Metastatic Nasopharyngeal Carcinoma 8 258093 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 258094 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 258095 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 258096 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 258097 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 258098 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 258099 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 9 258100 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 258101 -NCIT:C165176 Unresectable Nasopharyngeal Carcinoma 8 258102 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 9 258103 -NCIT:C167265 Nasopharyngeal Squamous Cell Carcinoma 8 258104 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 258105 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 258106 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 258107 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 258108 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 258109 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 258110 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 9 258111 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 258112 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 258113 -NCIT:C172647 Unresectable Nasopharyngeal Squamous Cell Carcinoma 9 258114 -NCIT:C54360 Nasopharyngeal Basaloid Carcinoma 9 258115 -NCIT:C7373 Nasopharyngeal Nonkeratinizing Carcinoma 9 258116 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 258117 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 258118 -NCIT:C54389 Nasopharyngeal Differentiated Carcinoma 10 258119 -NCIT:C8023 Nasopharyngeal Undifferentiated Carcinoma 10 258120 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 258121 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 11 258122 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 258123 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 258124 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 258125 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 11 258126 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 11 258127 -NCIT:C7992 Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 258128 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 258129 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 258130 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 258131 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 258132 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 258133 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 258134 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 258135 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 258136 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 258137 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 258138 -NCIT:C173340 Nasopharyngeal Adenoid Cystic Carcinoma 8 258139 -NCIT:C190276 Childhood Nasopharyngeal Carcinoma 8 258140 -NCIT:C54400 Nasopharyngeal Papillary Adenocarcinoma 8 258141 -NCIT:C90522 Nasopharyngeal Carcinoma by AJCC v6 Stage 8 258142 -NCIT:C7395 Stage I Nasopharyngeal Carcinoma AJCC v6 9 258143 -NCIT:C7396 Stage III Nasopharyngeal Carcinoma AJCC v6 9 258144 -NCIT:C7397 Stage IV Nasopharyngeal Carcinoma AJCC v6 9 258145 -NCIT:C7920 Stage II Nasopharyngeal Carcinoma AJCC v6 9 258146 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 9 258147 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 10 258148 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 258149 -NCIT:C91244 Nasopharyngeal Carcinoma by AJCC v7 Stage 8 258150 -NCIT:C88981 Stage I Nasopharyngeal Carcinoma AJCC v7 9 258151 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 258152 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 258153 -NCIT:C88982 Stage II Nasopharyngeal Carcinoma AJCC v7 9 258154 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 258155 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 258156 -NCIT:C88983 Stage III Nasopharyngeal Carcinoma AJCC v7 9 258157 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 258158 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 258159 -NCIT:C88984 Stage IV Nasopharyngeal Carcinoma AJCC v7 9 258160 -NCIT:C5995 Stage IVC Nasopharyngeal Carcinoma AJCC v7 10 258161 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 258162 -NCIT:C5996 Stage IVB Nasopharyngeal Carcinoma AJCC v7 10 258163 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 258164 -NCIT:C5997 Stage IVA Nasopharyngeal Carcinoma AJCC v7 10 258165 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 258166 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 258167 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 258168 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 258169 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 258170 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 258171 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 9 258172 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 10 258173 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 258174 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 8 258175 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 9 258176 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 258177 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 258178 -NCIT:C4942 Stage 0 Pharyngeal Cancer 7 258179 -NCIT:C132995 Stage 0 Oropharyngeal (p16-Negative) Carcinoma AJCC v8 8 258180 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 8 258181 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 258182 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 8 258183 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 9 258184 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 9 258185 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 8 258186 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 9 258187 -NCIT:C5103 Recurrent Pharyngeal Carcinoma 7 258188 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 8 258189 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 9 258190 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 258191 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 258192 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 9 258193 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 10 258194 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 9 258195 -NCIT:C8051 Recurrent Oropharyngeal Carcinoma 8 258196 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 9 258197 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 10 258198 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 8 258199 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 9 258200 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 258201 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 10 258202 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 8 258203 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 9 258204 -NCIT:C5818 Pharyngeal Adenoid Cystic Carcinoma 7 258205 -NCIT:C173340 Nasopharyngeal Adenoid Cystic Carcinoma 8 258206 -NCIT:C6241 Oropharyngeal Adenoid Cystic Carcinoma 8 258207 -NCIT:C8768 Stage I Pharyngeal Cancer 7 258208 -NCIT:C132817 Stage I Nasopharyngeal Carcinoma AJCC v8 8 258209 -NCIT:C132885 Clinical Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 8 258210 -NCIT:C132898 Pathologic Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 8 258211 -NCIT:C132996 Stage I Oropharyngeal (p16-Negative) Carcinoma AJCC v8 8 258212 -NCIT:C133005 Stage I Hypopharyngeal Carcinoma AJCC v8 8 258213 -NCIT:C7395 Stage I Nasopharyngeal Carcinoma AJCC v6 8 258214 -NCIT:C8038 Stage I Hypopharyngeal Carcinoma AJCC v6 8 258215 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 8 258216 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 258217 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 258218 -NCIT:C88981 Stage I Nasopharyngeal Carcinoma AJCC v7 8 258219 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 258220 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 9 258221 -NCIT:C89045 Stage I Hypopharyngeal Carcinoma AJCC v7 8 258222 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 258223 -NCIT:C8769 Stage II Pharyngeal Cancer 7 258224 -NCIT:C132818 Stage II Nasopharyngeal Carcinoma AJCC v8 8 258225 -NCIT:C132886 Clinical Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 8 258226 -NCIT:C132899 Pathologic Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 8 258227 -NCIT:C132997 Stage II Oropharyngeal (p16-Negative) Carcinoma AJCC v8 8 258228 -NCIT:C133006 Stage II Hypopharyngeal Carcinoma AJCC v8 8 258229 -NCIT:C7920 Stage II Nasopharyngeal Carcinoma AJCC v6 8 258230 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 8 258231 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 258232 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 8 258233 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 258234 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 258235 -NCIT:C88982 Stage II Nasopharyngeal Carcinoma AJCC v7 8 258236 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 258237 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 9 258238 -NCIT:C8770 Stage III Pharyngeal Cancer 7 258239 -NCIT:C132819 Stage III Nasopharyngeal Carcinoma AJCC v8 8 258240 -NCIT:C132891 Clinical Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 8 258241 -NCIT:C132900 Pathologic Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 8 258242 -NCIT:C132998 Stage III Oropharyngeal (p16-Negative) Carcinoma AJCC v8 8 258243 -NCIT:C133007 Stage III Hypopharyngeal Carcinoma AJCC v8 8 258244 -NCIT:C7396 Stage III Nasopharyngeal Carcinoma AJCC v6 8 258245 -NCIT:C8040 Stage III Hypopharyngeal Carcinoma AJCC v6 8 258246 -NCIT:C8050 Stage III Oropharyngeal Carcinoma AJCC v6 8 258247 -NCIT:C88983 Stage III Nasopharyngeal Carcinoma AJCC v7 8 258248 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 258249 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 9 258250 -NCIT:C89021 Stage III Oropharyngeal Carcinoma AJCC v7 8 258251 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 9 258252 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 258253 -NCIT:C89046 Stage III Hypopharyngeal Carcinoma AJCC v7 8 258254 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 258255 -NCIT:C8771 Stage IV Pharyngeal Cancer 7 258256 -NCIT:C132820 Stage IV Nasopharyngeal Carcinoma AJCC v8 8 258257 -NCIT:C132821 Stage IVA Nasopharyngeal Carcinoma AJCC v8 9 258258 -NCIT:C132822 Stage IVB Nasopharyngeal Carcinoma AJCC v8 9 258259 -NCIT:C132893 Clinical Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 8 258260 -NCIT:C132901 Pathologic Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 8 258261 -NCIT:C132999 Stage IV Oropharyngeal (p16-Negative) Carcinoma AJCC v8 8 258262 -NCIT:C133000 Stage IVA Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 258263 -NCIT:C133001 Stage IVB Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 258264 -NCIT:C133002 Stage IVC Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 258265 -NCIT:C133008 Stage IV Hypopharyngeal Carcinoma AJCC v8 8 258266 -NCIT:C133009 Stage IVA Hypopharyngeal Carcinoma AJCC v8 9 258267 -NCIT:C133010 Stage IVB Hypopharyngeal Carcinoma AJCC v8 9 258268 -NCIT:C133011 Stage IVC Hypopharyngeal Carcinoma AJCC v8 9 258269 -NCIT:C6000 Stage IVA Pharyngeal Cancer 8 258270 -NCIT:C132821 Stage IVA Nasopharyngeal Carcinoma AJCC v8 9 258271 -NCIT:C133000 Stage IVA Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 258272 -NCIT:C133009 Stage IVA Hypopharyngeal Carcinoma AJCC v8 9 258273 -NCIT:C5985 Stage IVA Oropharyngeal Carcinoma AJCC v7 9 258274 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 258275 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 258276 -NCIT:C5992 Stage IVA Hypopharyngeal Carcinoma AJCC v7 9 258277 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 258278 -NCIT:C5997 Stage IVA Nasopharyngeal Carcinoma AJCC v7 9 258279 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 258280 -NCIT:C6001 Stage IVB Pharyngeal Cancer 8 258281 -NCIT:C132822 Stage IVB Nasopharyngeal Carcinoma AJCC v8 9 258282 -NCIT:C133001 Stage IVB Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 258283 -NCIT:C133010 Stage IVB Hypopharyngeal Carcinoma AJCC v8 9 258284 -NCIT:C5986 Stage IVB Oropharyngeal Carcinoma AJCC v7 9 258285 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 258286 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 258287 -NCIT:C5993 Stage IVB Hypopharyngeal Carcinoma AJCC v7 9 258288 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 258289 -NCIT:C5996 Stage IVB Nasopharyngeal Carcinoma AJCC v7 9 258290 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 258291 -NCIT:C6002 Stage IVC Pharyngeal Cancer 8 258292 -NCIT:C133002 Stage IVC Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 258293 -NCIT:C133011 Stage IVC Hypopharyngeal Carcinoma AJCC v8 9 258294 -NCIT:C5987 Stage IVC Oropharyngeal Carcinoma AJCC v7 9 258295 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 258296 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 258297 -NCIT:C5994 Stage IVC Hypopharyngeal Carcinoma AJCC v7 9 258298 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 258299 -NCIT:C5995 Stage IVC Nasopharyngeal Carcinoma AJCC v7 9 258300 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 258301 -NCIT:C7397 Stage IV Nasopharyngeal Carcinoma AJCC v6 8 258302 -NCIT:C8533 Stage IV Hypopharyngeal Carcinoma AJCC v6 8 258303 -NCIT:C88984 Stage IV Nasopharyngeal Carcinoma AJCC v7 8 258304 -NCIT:C5995 Stage IVC Nasopharyngeal Carcinoma AJCC v7 9 258305 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 258306 -NCIT:C5996 Stage IVB Nasopharyngeal Carcinoma AJCC v7 9 258307 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 258308 -NCIT:C5997 Stage IVA Nasopharyngeal Carcinoma AJCC v7 9 258309 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 258310 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 9 258311 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 258312 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 258313 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 258314 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 9 258315 -NCIT:C89023 Stage IV Oropharyngeal Carcinoma AJCC v7 8 258316 -NCIT:C5985 Stage IVA Oropharyngeal Carcinoma AJCC v7 9 258317 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 258318 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 258319 -NCIT:C5986 Stage IVB Oropharyngeal Carcinoma AJCC v7 9 258320 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 258321 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 258322 -NCIT:C5987 Stage IVC Oropharyngeal Carcinoma AJCC v7 9 258323 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 258324 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 258325 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 9 258326 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 258327 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 258328 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 258329 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 258330 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 258331 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 258332 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 258333 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 258334 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 258335 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 258336 -NCIT:C89047 Stage IV Hypopharyngeal Carcinoma AJCC v7 8 258337 -NCIT:C5992 Stage IVA Hypopharyngeal Carcinoma AJCC v7 9 258338 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 258339 -NCIT:C5993 Stage IVB Hypopharyngeal Carcinoma AJCC v7 9 258340 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 258341 -NCIT:C5994 Stage IVC Hypopharyngeal Carcinoma AJCC v7 9 258342 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 258343 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 258344 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 258345 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 258346 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 258347 -NCIT:C9218 Stage IV Oropharyngeal Carcinoma AJCC v6 8 258348 -NCIT:C90525 Pharyngeal Carcinoma by AJCC v6 Stage 7 258349 -NCIT:C90522 Nasopharyngeal Carcinoma by AJCC v6 Stage 8 258350 -NCIT:C7395 Stage I Nasopharyngeal Carcinoma AJCC v6 9 258351 -NCIT:C7396 Stage III Nasopharyngeal Carcinoma AJCC v6 9 258352 -NCIT:C7397 Stage IV Nasopharyngeal Carcinoma AJCC v6 9 258353 -NCIT:C7920 Stage II Nasopharyngeal Carcinoma AJCC v6 9 258354 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 9 258355 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 10 258356 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 258357 -NCIT:C90523 Oropharyngeal Carcinoma by AJCC v6 Stage 8 258358 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 9 258359 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 258360 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 9 258361 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 258362 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 258363 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 9 258364 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 258365 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 258366 -NCIT:C8050 Stage III Oropharyngeal Carcinoma AJCC v6 9 258367 -NCIT:C9218 Stage IV Oropharyngeal Carcinoma AJCC v6 9 258368 -NCIT:C90524 Hypopharyngeal Carcinoma by AJCC v6 Stage 8 258369 -NCIT:C8038 Stage I Hypopharyngeal Carcinoma AJCC v6 9 258370 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 9 258371 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 258372 -NCIT:C8040 Stage III Hypopharyngeal Carcinoma AJCC v6 9 258373 -NCIT:C8533 Stage IV Hypopharyngeal Carcinoma AJCC v6 9 258374 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 9 258375 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 258376 -NCIT:C9105 Oropharyngeal Carcinoma 7 258377 -NCIT:C132882 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Stage 8 258378 -NCIT:C132883 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Clinical Stage 9 258379 -NCIT:C132885 Clinical Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 258380 -NCIT:C132886 Clinical Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 258381 -NCIT:C132891 Clinical Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 258382 -NCIT:C132893 Clinical Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 258383 -NCIT:C132884 HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma by AJCC v8 Pathologic Stage 9 258384 -NCIT:C132898 Pathologic Stage I HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 258385 -NCIT:C132899 Pathologic Stage II HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 258386 -NCIT:C132900 Pathologic Stage III HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 258387 -NCIT:C132901 Pathologic Stage IV HPV-Mediated (p16-Positive) Oropharyngeal Carcinoma AJCC v8 10 258388 -NCIT:C132994 Oropharyngeal (p16-Negative) Carcinoma by AJCC v8 Stage 8 258389 -NCIT:C132995 Stage 0 Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 258390 -NCIT:C132996 Stage I Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 258391 -NCIT:C132997 Stage II Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 258392 -NCIT:C132998 Stage III Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 258393 -NCIT:C132999 Stage IV Oropharyngeal (p16-Negative) Carcinoma AJCC v8 9 258394 -NCIT:C133000 Stage IVA Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 258395 -NCIT:C133001 Stage IVB Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 258396 -NCIT:C133002 Stage IVC Oropharyngeal (p16-Negative) Carcinoma AJCC v8 10 258397 -NCIT:C156082 Metastatic Oropharyngeal Carcinoma 8 258398 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 258399 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 258400 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 258401 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 258402 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 9 258403 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 258404 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 258405 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 9 258406 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 258407 -NCIT:C173576 Oropharyngeal Polymorphous Adenocarcinoma 8 258408 -NCIT:C4825 Tonsillar Carcinoma 8 258409 -NCIT:C8183 Tonsillar Squamous Cell Carcinoma 9 258410 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 10 258411 -NCIT:C6241 Oropharyngeal Adenoid Cystic Carcinoma 8 258412 -NCIT:C8051 Recurrent Oropharyngeal Carcinoma 8 258413 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 9 258414 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 10 258415 -NCIT:C8181 Oropharyngeal Squamous Cell Carcinoma 8 258416 -NCIT:C126750 Oropharyngeal Poorly Differentiated Carcinoma 9 258417 -NCIT:C126751 Oropharyngeal Basaloid Carcinoma 9 258418 -NCIT:C147906 Oropharyngeal p16INK4a-Negative Squamous Cell Carcinoma 9 258419 -NCIT:C148385 Refractory Oropharyngeal Squamous Cell Carcinoma 9 258420 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 258421 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 258422 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 258423 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 258424 -NCIT:C162787 Resectable Oropharyngeal Squamous Cell Carcinoma 9 258425 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 10 258426 -NCIT:C162833 Unresectable Oropharyngeal Squamous Cell Carcinoma 9 258427 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 10 258428 -NCIT:C173414 Oropharyngeal Human Papillomavirus-Negative Squamous Cell Carcinoma 9 258429 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 258430 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 258431 -NCIT:C68610 Oropharyngeal Undifferentiated Carcinoma 9 258432 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 258433 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 258434 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 258435 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 258436 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 258437 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 258438 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 258439 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 10 258440 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 258441 -NCIT:C190632 Unresectable Oropharyngeal Undifferentiated Carcinoma 10 258442 -NCIT:C190769 Resectable Oropharyngeal Undifferentiated Carcinoma 10 258443 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 10 258444 -NCIT:C8183 Tonsillar Squamous Cell Carcinoma 9 258445 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 10 258446 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 258447 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 258448 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 258449 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 10 258450 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 9 258451 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 258452 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 9 258453 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 10 258454 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 258455 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 258456 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 258457 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 258458 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 258459 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 258460 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 258461 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 258462 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 258463 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 9 258464 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 10 258465 -NCIT:C87055 Oropharyngeal Human Papillomavirus-Positive Squamous Cell Carcinoma 9 258466 -NCIT:C8395 Soft Palate Carcinoma 8 258467 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 258468 -NCIT:C90523 Oropharyngeal Carcinoma by AJCC v6 Stage 8 258469 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 9 258470 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 258471 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 9 258472 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 258473 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 258474 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 9 258475 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 258476 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 258477 -NCIT:C8050 Stage III Oropharyngeal Carcinoma AJCC v6 9 258478 -NCIT:C9218 Stage IV Oropharyngeal Carcinoma AJCC v6 9 258479 -NCIT:C91248 Oropharyngeal Carcinoma by AJCC v7 Stage 8 258480 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 9 258481 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 258482 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 9 258483 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 258484 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 258485 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 9 258486 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 258487 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 258488 -NCIT:C89021 Stage III Oropharyngeal Carcinoma AJCC v7 9 258489 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 258490 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 258491 -NCIT:C89023 Stage IV Oropharyngeal Carcinoma AJCC v7 9 258492 -NCIT:C5985 Stage IVA Oropharyngeal Carcinoma AJCC v7 10 258493 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 258494 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 258495 -NCIT:C5986 Stage IVB Oropharyngeal Carcinoma AJCC v7 10 258496 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 258497 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 258498 -NCIT:C5987 Stage IVC Oropharyngeal Carcinoma AJCC v7 10 258499 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 258500 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 258501 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 258502 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 258503 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 258504 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 258505 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 258506 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 258507 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 258508 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 258509 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 258510 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 258511 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 258512 -NCIT:C91252 Pharyngeal Carcinoma by AJCC v7 Stage 7 258513 -NCIT:C91244 Nasopharyngeal Carcinoma by AJCC v7 Stage 8 258514 -NCIT:C88981 Stage I Nasopharyngeal Carcinoma AJCC v7 9 258515 -NCIT:C8222 Stage I Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 258516 -NCIT:C8223 Stage I Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 258517 -NCIT:C88982 Stage II Nasopharyngeal Carcinoma AJCC v7 9 258518 -NCIT:C8224 Stage II Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 258519 -NCIT:C8225 Stage II Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 258520 -NCIT:C88983 Stage III Nasopharyngeal Carcinoma AJCC v7 9 258521 -NCIT:C8226 Stage III Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 258522 -NCIT:C8227 Stage III Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 258523 -NCIT:C88984 Stage IV Nasopharyngeal Carcinoma AJCC v7 9 258524 -NCIT:C5995 Stage IVC Nasopharyngeal Carcinoma AJCC v7 10 258525 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 258526 -NCIT:C5996 Stage IVB Nasopharyngeal Carcinoma AJCC v7 10 258527 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 258528 -NCIT:C5997 Stage IVA Nasopharyngeal Carcinoma AJCC v7 10 258529 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 258530 -NCIT:C8228 Stage IV Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 10 258531 -NCIT:C6137 Stage IVA Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 258532 -NCIT:C6138 Stage IVB Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 258533 -NCIT:C6236 Stage IVC Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v7 11 258534 -NCIT:C8229 Stage IV Nasopharyngeal Undifferentiated Carcinoma AJCC v7 10 258535 -NCIT:C9099 Stage 0 Nasopharyngeal Carcinoma AJCC v6, v7, and v8 9 258536 -NCIT:C6035 Stage 0 Nasopharyngeal Undifferentiated Carcinoma AJCC v6, v7, and v8 10 258537 -NCIT:C6036 Stage 0 Nasopharyngeal Keratinizing Squamous Cell Carcinoma AJCC v6, v7, and v8 10 258538 -NCIT:C91248 Oropharyngeal Carcinoma by AJCC v7 Stage 8 258539 -NCIT:C4590 Stage 0 Oropharyngeal Carcinoma AJCC v6 and v7 9 258540 -NCIT:C6039 Stage 0 Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 258541 -NCIT:C8048 Stage I Oropharyngeal Carcinoma AJCC v6 and v7 9 258542 -NCIT:C8217 Stage I Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 258543 -NCIT:C115086 Stage I Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 258544 -NCIT:C8049 Stage II Oropharyngeal Carcinoma AJCC v6 and v7 9 258545 -NCIT:C8218 Stage II Oropharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 258546 -NCIT:C115087 Stage II Oropharyngeal Undifferentiated Carcinoma AJCC v6 and v7 11 258547 -NCIT:C89021 Stage III Oropharyngeal Carcinoma AJCC v7 9 258548 -NCIT:C8219 Stage III Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 258549 -NCIT:C115088 Stage III Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 258550 -NCIT:C89023 Stage IV Oropharyngeal Carcinoma AJCC v7 9 258551 -NCIT:C5985 Stage IVA Oropharyngeal Carcinoma AJCC v7 10 258552 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 258553 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 258554 -NCIT:C5986 Stage IVB Oropharyngeal Carcinoma AJCC v7 10 258555 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 258556 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 258557 -NCIT:C5987 Stage IVC Oropharyngeal Carcinoma AJCC v7 10 258558 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 258559 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 258560 -NCIT:C8220 Stage IV Oropharyngeal Squamous Cell Carcinoma AJCC v7 10 258561 -NCIT:C115089 Stage IV Oropharyngeal Undifferentiated Carcinoma AJCC v7 11 258562 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 258563 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 258564 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 258565 -NCIT:C6139 Stage IVB Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 258566 -NCIT:C115091 Stage IVB Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 258567 -NCIT:C6140 Stage IVC Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 258568 -NCIT:C115092 Stage IVC Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 258569 -NCIT:C6141 Stage IVA Oropharyngeal Squamous Cell Carcinoma AJCC v7 11 258570 -NCIT:C115090 Stage IVA Oropharyngeal Undifferentiated Carcinoma AJCC v7 12 258571 -NCIT:C91251 Hypopharyngeal Carcinoma by AJCC v7 Stage 8 258572 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 9 258573 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 258574 -NCIT:C89045 Stage I Hypopharyngeal Carcinoma AJCC v7 9 258575 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 258576 -NCIT:C89046 Stage III Hypopharyngeal Carcinoma AJCC v7 9 258577 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 258578 -NCIT:C89047 Stage IV Hypopharyngeal Carcinoma AJCC v7 9 258579 -NCIT:C5992 Stage IVA Hypopharyngeal Carcinoma AJCC v7 10 258580 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 258581 -NCIT:C5993 Stage IVB Hypopharyngeal Carcinoma AJCC v7 10 258582 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 258583 -NCIT:C5994 Stage IVC Hypopharyngeal Carcinoma AJCC v7 10 258584 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 258585 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 258586 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 258587 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 258588 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 258589 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 9 258590 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 258591 -NCIT:C9465 Hypopharyngeal Carcinoma 7 258592 -NCIT:C133003 Hypopharyngeal Carcinoma by AJCC v8 Stage 8 258593 -NCIT:C133005 Stage I Hypopharyngeal Carcinoma AJCC v8 9 258594 -NCIT:C133006 Stage II Hypopharyngeal Carcinoma AJCC v8 9 258595 -NCIT:C133007 Stage III Hypopharyngeal Carcinoma AJCC v8 9 258596 -NCIT:C133008 Stage IV Hypopharyngeal Carcinoma AJCC v8 9 258597 -NCIT:C133009 Stage IVA Hypopharyngeal Carcinoma AJCC v8 10 258598 -NCIT:C133010 Stage IVB Hypopharyngeal Carcinoma AJCC v8 10 258599 -NCIT:C133011 Stage IVC Hypopharyngeal Carcinoma AJCC v8 10 258600 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 9 258601 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 258602 -NCIT:C156081 Metastatic Hypopharyngeal Carcinoma 8 258603 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 258604 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 258605 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 258606 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 9 258607 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 258608 -NCIT:C4043 Hypopharyngeal Squamous Cell Carcinoma 8 258609 -NCIT:C148382 Refractory Hypopharyngeal Squamous Cell Carcinoma 9 258610 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 258611 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 258612 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 258613 -NCIT:C172646 Unresectable Hypopharyngeal Squamous Cell Carcinoma 9 258614 -NCIT:C4943 Pyriform Fossa Squamous Cell Carcinoma 9 258615 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 9 258616 -NCIT:C8185 Postcricoid Squamous Cell Carcinoma 9 258617 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 258618 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 9 258619 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 258620 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 9 258621 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 258622 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 258623 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 258624 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 9 258625 -NCIT:C6700 Pyriform Fossa Carcinoma 8 258626 -NCIT:C4943 Pyriform Fossa Squamous Cell Carcinoma 9 258627 -NCIT:C8595 Postcricoid Carcinoma 8 258628 -NCIT:C8185 Postcricoid Squamous Cell Carcinoma 9 258629 -NCIT:C90524 Hypopharyngeal Carcinoma by AJCC v6 Stage 8 258630 -NCIT:C8038 Stage I Hypopharyngeal Carcinoma AJCC v6 9 258631 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 9 258632 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 258633 -NCIT:C8040 Stage III Hypopharyngeal Carcinoma AJCC v6 9 258634 -NCIT:C8533 Stage IV Hypopharyngeal Carcinoma AJCC v6 9 258635 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 9 258636 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 258637 -NCIT:C91251 Hypopharyngeal Carcinoma by AJCC v7 Stage 8 258638 -NCIT:C8039 Stage II Hypopharyngeal Carcinoma AJCC v6 and v7 9 258639 -NCIT:C8233 Stage II Hypopharyngeal Squamous Cell Carcinoma AJCC v6 and v7 10 258640 -NCIT:C89045 Stage I Hypopharyngeal Carcinoma AJCC v7 9 258641 -NCIT:C8232 Stage I Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 258642 -NCIT:C89046 Stage III Hypopharyngeal Carcinoma AJCC v7 9 258643 -NCIT:C8234 Stage III Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 258644 -NCIT:C89047 Stage IV Hypopharyngeal Carcinoma AJCC v7 9 258645 -NCIT:C5992 Stage IVA Hypopharyngeal Carcinoma AJCC v7 10 258646 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 258647 -NCIT:C5993 Stage IVB Hypopharyngeal Carcinoma AJCC v7 10 258648 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 258649 -NCIT:C5994 Stage IVC Hypopharyngeal Carcinoma AJCC v7 10 258650 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 258651 -NCIT:C8235 Stage IV Hypopharyngeal Squamous Cell Carcinoma AJCC v7 10 258652 -NCIT:C6130 Stage IVC Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 258653 -NCIT:C6131 Stage IVB Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 258654 -NCIT:C6132 Stage IVA Hypopharyngeal Squamous Cell Carcinoma AJCC v7 11 258655 -NCIT:C9101 Stage 0 Hypopharyngeal Carcinoma AJCC v6, v7, and v8 9 258656 -NCIT:C6048 Stage 0 Hypopharyngeal Squamous Cell Carcinoma AJCC v6, v7, and v8 10 258657 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 8 258658 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 9 258659 -NCIT:C8528 Metastatic Malignant Neoplasm in the Neck 5 258660 -NCIT:C173585 Neck Carcinoma of Unknown Primary 6 258661 -NCIT:C7713 Neck Squamous Cell Carcinoma of Unknown Primary 7 258662 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 8 258663 -NCIT:C6031 Metastatic Malignant Neoplasm in the Larynx 6 258664 -NCIT:C7509 Metastatic Malignant Neoplasm in the Thyroid Gland 6 258665 -NCIT:C7546 Metastatic Malignant Neoplasm in the Pharynx 6 258666 -NCIT:C6028 Metastatic Malignant Neoplasm in the Hypopharynx 7 258667 -NCIT:C6029 Metastatic Malignant Neoplasm in the Oropharynx 7 258668 -NCIT:C6030 Metastatic Malignant Neoplasm in the Nasopharynx 7 258669 -NCIT:C8557 Metastatic Malignant Neoplasm in the Parathyroid Glands 6 258670 -NCIT:C9322 Malignant Parathyroid Gland Neoplasm 5 258671 -NCIT:C4906 Parathyroid Gland Carcinoma 6 258672 -NCIT:C118819 Childhood Parathyroid Gland Carcinoma 7 258673 -NCIT:C7826 Localized Parathyroid Gland Carcinoma 7 258674 -NCIT:C7828 Recurrent Parathyroid Gland Carcinoma 7 258675 -NCIT:C9044 Metastatic Parathyroid Gland Carcinoma 7 258676 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 258677 -NCIT:C8557 Metastatic Malignant Neoplasm in the Parathyroid Glands 6 258678 -NCIT:C9316 Malignant Oral Neoplasm 4 258679 -NCIT:C150530 Refractory Malignant Oral Neoplasm 5 258680 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 6 258681 -NCIT:C7485 Malignant Lip Neoplasm 5 258682 -NCIT:C3490 Lip Carcinoma 6 258683 -NCIT:C156088 Metastatic Lip Carcinoma 7 258684 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 258685 -NCIT:C4042 Lip Squamous Cell Carcinoma 7 258686 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 258687 -NCIT:C4588 Stage 0 Lip Cancer AJCC v6 and v7 7 258688 -NCIT:C5893 Stage 0 Lip Basal Cell Carcinoma AJCC v6 and v7 8 258689 -NCIT:C5876 Stage I Lip Cancer AJCC v6 and v7 7 258690 -NCIT:C8197 Stage I Lip Basal Cell Carcinoma 8 258691 -NCIT:C5877 Stage II Lip Cancer AJCC v6 and v7 7 258692 -NCIT:C8201 Stage II Lip Basal Cell Carcinoma 8 258693 -NCIT:C5878 Stage III Lip Cancer AJCC v6 and v7 7 258694 -NCIT:C8205 Stage III Lip Basal Cell Carcinoma 8 258695 -NCIT:C5879 Stage IV Lip Cancer AJCC v6 and v7 7 258696 -NCIT:C5880 Stage IVA Lip Cancer AJCC v6 and v7 8 258697 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 9 258698 -NCIT:C5881 Stage IVB Lip Cancer AJCC v6 and v7 8 258699 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 9 258700 -NCIT:C5882 Stage IVC Lip Cancer AJCC v6 and v7 8 258701 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 9 258702 -NCIT:C8209 Stage IV Lip Basal Cell Carcinoma 8 258703 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 9 258704 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 9 258705 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 9 258706 -NCIT:C8014 Lip Basal Cell Carcinoma 7 258707 -NCIT:C5893 Stage 0 Lip Basal Cell Carcinoma AJCC v6 and v7 8 258708 -NCIT:C8197 Stage I Lip Basal Cell Carcinoma 8 258709 -NCIT:C8201 Stage II Lip Basal Cell Carcinoma 8 258710 -NCIT:C8205 Stage III Lip Basal Cell Carcinoma 8 258711 -NCIT:C8209 Stage IV Lip Basal Cell Carcinoma 8 258712 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 9 258713 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 9 258714 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 9 258715 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 8 258716 -NCIT:C8542 Metastatic Malignant Neoplasm in the Lip 6 258717 -NCIT:C9262 Recurrent Malignant Oral Neoplasm 5 258718 -NCIT:C8037 Recurrent Lip and Oral Cavity Carcinoma 6 258719 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 258720 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 258721 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 258722 -NCIT:C6076 Recurrent Oral Cavity Carcinoma 7 258723 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 258724 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 258725 -NCIT:C8215 Recurrent Oral Cavity Mucoepidermoid Carcinoma 8 258726 -NCIT:C8216 Recurrent Oral Cavity Adenoid Cystic Carcinoma 8 258727 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 7 258728 -NCIT:C9314 Malignant Oral Cavity Neoplasm 5 258729 -NCIT:C173489 Oral Cavity Myeloid Sarcoma 6 258730 -NCIT:C3530 Malignant Palate Neoplasm 6 258731 -NCIT:C3528 Malignant Hard Palate Neoplasm 7 258732 -NCIT:C8394 Hard Palate Carcinoma 8 258733 -NCIT:C6213 Hard Palate Adenoid Cystic Carcinoma 9 258734 -NCIT:C6214 Hard Palate Mucoepidermoid Carcinoma 9 258735 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 258736 -NCIT:C3529 Malignant Soft Palate Neoplasm 7 258737 -NCIT:C35177 Malignant Uvula Neoplasm 8 258738 -NCIT:C8395 Soft Palate Carcinoma 8 258739 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 258740 -NCIT:C6749 Palate Kaposi Sarcoma 7 258741 -NCIT:C8463 Palate Carcinoma 7 258742 -NCIT:C4649 Palate Squamous Cell Carcinoma 8 258743 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 258744 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 258745 -NCIT:C8394 Hard Palate Carcinoma 8 258746 -NCIT:C6213 Hard Palate Adenoid Cystic Carcinoma 9 258747 -NCIT:C6214 Hard Palate Mucoepidermoid Carcinoma 9 258748 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 258749 -NCIT:C8395 Soft Palate Carcinoma 8 258750 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 258751 -NCIT:C4812 Malignant Odontogenic Neoplasm 6 258752 -NCIT:C173720 Odontogenic Carcinoma 7 258753 -NCIT:C173733 Sclerosing Odontogenic Carcinoma 8 258754 -NCIT:C4311 Ghost Cell Odontogenic Carcinoma 8 258755 -NCIT:C54295 Primary Intraosseous Squamous Cell Carcinoma 8 258756 -NCIT:C54303 Primary Intraosseous Squamous Cell Carcinoma Derived From Keratocystic Odontogenic Tumor 9 258757 -NCIT:C7491 Primary Intraosseous Squamous Cell Carcinoma-Solid Type 9 258758 -NCIT:C7498 Keratinizing Primary Intraosseous Squamous Cell Carcinoma-Solid Type 10 258759 -NCIT:C7499 Non-Keratinizing Primary Intraosseous Squamous Cell Carcinoma -Solid Type 10 258760 -NCIT:C7500 Primary Intraosseous Squamous Cell Carcinoma Derived From Odontogenic Cyst 9 258761 -NCIT:C54300 Clear Cell Odontogenic Carcinoma 8 258762 -NCIT:C7492 Ameloblastic Carcinoma 8 258763 -NCIT:C7493 Ameloblastic Carcinoma-Primary Type 9 258764 -NCIT:C7496 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated) 9 258765 -NCIT:C54298 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated), Intraosseous 10 258766 -NCIT:C54299 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated), Peripheral 10 258767 -NCIT:C7497 Ameloblastic Carcinoma Derived From Odontogenic Cyst 9 258768 -NCIT:C173735 Odontogenic Carcinosarcoma 7 258769 -NCIT:C173738 Odontogenic Sarcoma 7 258770 -NCIT:C173739 Ameloblastic Fibrodentinosarcoma 8 258771 -NCIT:C173740 Ameloblastic Fibroodontosarcoma 8 258772 -NCIT:C4317 Ameloblastic Fibrosarcoma 8 258773 -NCIT:C5915 Oral Cavity Mucosal Melanoma 6 258774 -NCIT:C5916 Oral Cavity Sarcoma 6 258775 -NCIT:C173481 Oral Cavity Soft Tissue Sarcoma 7 258776 -NCIT:C156274 Tongue Sarcoma 8 258777 -NCIT:C156273 Tongue Alveolar Soft Part Sarcoma' 9 258778 -NCIT:C173404 Tongue Liposarcoma 9 258779 -NCIT:C173477 Oral Cavity Kaposi Sarcoma 8 258780 -NCIT:C6749 Palate Kaposi Sarcoma 9 258781 -NCIT:C173478 Oral Cavity Low Grade Myofibroblastic Sarcoma 8 258782 -NCIT:C173738 Odontogenic Sarcoma 7 258783 -NCIT:C173739 Ameloblastic Fibrodentinosarcoma 8 258784 -NCIT:C173740 Ameloblastic Fibroodontosarcoma 8 258785 -NCIT:C4317 Ameloblastic Fibrosarcoma 8 258786 -NCIT:C7404 Malignant Tonsillar Neoplasm 6 258787 -NCIT:C4825 Tonsillar Carcinoma 7 258788 -NCIT:C8183 Tonsillar Squamous Cell Carcinoma 8 258789 -NCIT:C8184 Tonsillar Undifferentiated Carcinoma 9 258790 -NCIT:C5918 Tonsillar Lymphoma 7 258791 -NCIT:C188072 Tonsillar Diffuse Large B-Cell Lymphoma 8 258792 -NCIT:C188080 Tonsillar Mantle Cell Lymphoma 8 258793 -NCIT:C8990 Oral Cavity Carcinoma 6 258794 -NCIT:C156087 Metastatic Oral Cavity Carcinoma 7 258795 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 258796 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 258797 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 258798 -NCIT:C156089 Metastatic Oral Cavity Adenoid Cystic Carcinoma 8 258799 -NCIT:C156090 Metastatic Oral Cavity Mucoepidermoid Carcinoma 8 258800 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 8 258801 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 258802 -NCIT:C173720 Odontogenic Carcinoma 7 258803 -NCIT:C173733 Sclerosing Odontogenic Carcinoma 8 258804 -NCIT:C4311 Ghost Cell Odontogenic Carcinoma 8 258805 -NCIT:C54295 Primary Intraosseous Squamous Cell Carcinoma 8 258806 -NCIT:C54303 Primary Intraosseous Squamous Cell Carcinoma Derived From Keratocystic Odontogenic Tumor 9 258807 -NCIT:C7491 Primary Intraosseous Squamous Cell Carcinoma-Solid Type 9 258808 -NCIT:C7498 Keratinizing Primary Intraosseous Squamous Cell Carcinoma-Solid Type 10 258809 -NCIT:C7499 Non-Keratinizing Primary Intraosseous Squamous Cell Carcinoma -Solid Type 10 258810 -NCIT:C7500 Primary Intraosseous Squamous Cell Carcinoma Derived From Odontogenic Cyst 9 258811 -NCIT:C54300 Clear Cell Odontogenic Carcinoma 8 258812 -NCIT:C7492 Ameloblastic Carcinoma 8 258813 -NCIT:C7493 Ameloblastic Carcinoma-Primary Type 9 258814 -NCIT:C7496 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated) 9 258815 -NCIT:C54298 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated), Intraosseous 10 258816 -NCIT:C54299 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated), Peripheral 10 258817 -NCIT:C7497 Ameloblastic Carcinoma Derived From Odontogenic Cyst 9 258818 -NCIT:C4587 Stage 0 Oral Cavity Cancer AJCC v6 and v7 7 258819 -NCIT:C6052 Stage 0 Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 258820 -NCIT:C4824 Tongue Carcinoma 7 258821 -NCIT:C171028 Tongue Adenoid Cystic Carcinoma 8 258822 -NCIT:C5991 Posterior Tongue Adenoid Cystic Carcinoma 9 258823 -NCIT:C6251 Anterior Tongue Adenoid Cystic Carcinoma 9 258824 -NCIT:C173807 Tongue Adenosquamous Carcinoma 8 258825 -NCIT:C181160 Tongue Mucoepidermoid Carcinoma 8 258826 -NCIT:C5990 Posterior Tongue Mucoepidermoid Carcinoma 9 258827 -NCIT:C6250 Anterior Tongue Mucoepidermoid Carcinoma 9 258828 -NCIT:C4648 Tongue Squamous Cell Carcinoma 8 258829 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 258830 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 258831 -NCIT:C6249 Anterior Tongue Carcinoma 8 258832 -NCIT:C6250 Anterior Tongue Mucoepidermoid Carcinoma 9 258833 -NCIT:C6251 Anterior Tongue Adenoid Cystic Carcinoma 9 258834 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 258835 -NCIT:C8407 Posterior Tongue Carcinoma 8 258836 -NCIT:C5990 Posterior Tongue Mucoepidermoid Carcinoma 9 258837 -NCIT:C5991 Posterior Tongue Adenoid Cystic Carcinoma 9 258838 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 258839 -NCIT:C4833 Oral Cavity Squamous Cell Carcinoma 7 258840 -NCIT:C129857 Gingival Squamous Cell Carcinoma 8 258841 -NCIT:C129289 Gingival Spindle Cell Carcinoma 9 258842 -NCIT:C8171 Lower Gingival Squamous Cell Carcinoma 9 258843 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 10 258844 -NCIT:C8172 Retromolar Trigone Squamous Cell Carcinoma 9 258845 -NCIT:C8173 Upper Gingival Squamous Cell Carcinoma 9 258846 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 10 258847 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 8 258848 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 258849 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 258850 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 258851 -NCIT:C170774 Alveolar Ridge Squamous Cell Carcinoma 8 258852 -NCIT:C170775 Upper Alveolar Ridge Squamous Cell Carcinoma 9 258853 -NCIT:C170776 Lower Alveolar Ridge Squamous Cell Carcinoma 9 258854 -NCIT:C172644 Unresectable Oral Cavity Squamous Cell Carcinoma 8 258855 -NCIT:C4040 Buccal Mucosa Squamous Cell Carcinoma 8 258856 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 9 258857 -NCIT:C4041 Floor of Mouth Squamous Cell Carcinoma 8 258858 -NCIT:C129873 Floor of Mouth Basaloid Squamous Cell Carcinoma 9 258859 -NCIT:C4648 Tongue Squamous Cell Carcinoma 8 258860 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 258861 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 258862 -NCIT:C4649 Palate Squamous Cell Carcinoma 8 258863 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 258864 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 258865 -NCIT:C54295 Primary Intraosseous Squamous Cell Carcinoma 8 258866 -NCIT:C54303 Primary Intraosseous Squamous Cell Carcinoma Derived From Keratocystic Odontogenic Tumor 9 258867 -NCIT:C7491 Primary Intraosseous Squamous Cell Carcinoma-Solid Type 9 258868 -NCIT:C7498 Keratinizing Primary Intraosseous Squamous Cell Carcinoma-Solid Type 10 258869 -NCIT:C7499 Non-Keratinizing Primary Intraosseous Squamous Cell Carcinoma -Solid Type 10 258870 -NCIT:C7500 Primary Intraosseous Squamous Cell Carcinoma Derived From Odontogenic Cyst 9 258871 -NCIT:C6052 Stage 0 Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 258872 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 258873 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 258874 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 258875 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 258876 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 258877 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 258878 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 258879 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 258880 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 258881 -NCIT:C8174 Oral Cavity Verrucous Carcinoma 8 258882 -NCIT:C179894 Oral Cavity Carcinoma Cuniculatum 9 258883 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 9 258884 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 9 258885 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 9 258886 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 258887 -NCIT:C5883 Stage I Oral Cavity Cancer AJCC v6 and v7 7 258888 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 258889 -NCIT:C8199 Stage I Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 258890 -NCIT:C8200 Stage I Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 258891 -NCIT:C5884 Stage II Oral Cavity Cancer AJCC v6 and v7 7 258892 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 258893 -NCIT:C8203 Stage II Oral Cavity Mucoepidermoid Carcinoma 8 258894 -NCIT:C8204 Stage II Oral Cavity Adenoid Cystic Carcinoma 8 258895 -NCIT:C5885 Stage III Oral Cavity Cancer AJCC v6 and v7 7 258896 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 258897 -NCIT:C8207 Stage III Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 258898 -NCIT:C8208 Stage III Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 258899 -NCIT:C5886 Stage IV Oral Cavity Cancer AJCC v6 and v7 7 258900 -NCIT:C5887 Stage IVA Oral Cavity Cancer AJCC v6 and v7 8 258901 -NCIT:C5863 Stage IVA Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 258902 -NCIT:C5868 Stage IVA Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 258903 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 258904 -NCIT:C5888 Stage IVB Oral Cavity Cancer AJCC v6 and v7 8 258905 -NCIT:C5864 Stage IVB Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 258906 -NCIT:C5867 Stage IVB Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 258907 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 258908 -NCIT:C5889 Stage IVC Oral Cavity Cancer AJCC v6 and v7 8 258909 -NCIT:C5865 Stage IVC Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 258910 -NCIT:C5866 Stage IVC Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 258911 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 258912 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 258913 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 258914 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 258915 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 258916 -NCIT:C8211 Stage IV Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 258917 -NCIT:C5866 Stage IVC Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 258918 -NCIT:C5867 Stage IVB Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 258919 -NCIT:C5868 Stage IVA Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 258920 -NCIT:C8212 Stage IV Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 258921 -NCIT:C5863 Stage IVA Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 258922 -NCIT:C5864 Stage IVB Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 258923 -NCIT:C5865 Stage IVC Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 258924 -NCIT:C5914 Oral Cavity Adenocarcinoma 7 258925 -NCIT:C6076 Recurrent Oral Cavity Carcinoma 7 258926 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 258927 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 258928 -NCIT:C8215 Recurrent Oral Cavity Mucoepidermoid Carcinoma 8 258929 -NCIT:C8216 Recurrent Oral Cavity Adenoid Cystic Carcinoma 8 258930 -NCIT:C7721 Gingival Carcinoma 7 258931 -NCIT:C129857 Gingival Squamous Cell Carcinoma 8 258932 -NCIT:C129289 Gingival Spindle Cell Carcinoma 9 258933 -NCIT:C8171 Lower Gingival Squamous Cell Carcinoma 9 258934 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 10 258935 -NCIT:C8172 Retromolar Trigone Squamous Cell Carcinoma 9 258936 -NCIT:C8173 Upper Gingival Squamous Cell Carcinoma 9 258937 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 10 258938 -NCIT:C8392 Upper Gingival Carcinoma 8 258939 -NCIT:C8173 Upper Gingival Squamous Cell Carcinoma 9 258940 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 10 258941 -NCIT:C8393 Lower Gingival Carcinoma 8 258942 -NCIT:C8171 Lower Gingival Squamous Cell Carcinoma 9 258943 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 10 258944 -NCIT:C8177 Oral Cavity Mucoepidermoid Carcinoma 7 258945 -NCIT:C156090 Metastatic Oral Cavity Mucoepidermoid Carcinoma 8 258946 -NCIT:C181160 Tongue Mucoepidermoid Carcinoma 8 258947 -NCIT:C5990 Posterior Tongue Mucoepidermoid Carcinoma 9 258948 -NCIT:C6250 Anterior Tongue Mucoepidermoid Carcinoma 9 258949 -NCIT:C6214 Hard Palate Mucoepidermoid Carcinoma 8 258950 -NCIT:C8178 Floor of Mouth Mucoepidermoid Carcinoma 8 258951 -NCIT:C8199 Stage I Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 258952 -NCIT:C8203 Stage II Oral Cavity Mucoepidermoid Carcinoma 8 258953 -NCIT:C8207 Stage III Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 258954 -NCIT:C8211 Stage IV Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 258955 -NCIT:C5866 Stage IVC Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 258956 -NCIT:C5867 Stage IVB Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 258957 -NCIT:C5868 Stage IVA Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 258958 -NCIT:C8215 Recurrent Oral Cavity Mucoepidermoid Carcinoma 8 258959 -NCIT:C8179 Oral Cavity Adenoid Cystic Carcinoma 7 258960 -NCIT:C156089 Metastatic Oral Cavity Adenoid Cystic Carcinoma 8 258961 -NCIT:C171028 Tongue Adenoid Cystic Carcinoma 8 258962 -NCIT:C5991 Posterior Tongue Adenoid Cystic Carcinoma 9 258963 -NCIT:C6251 Anterior Tongue Adenoid Cystic Carcinoma 9 258964 -NCIT:C6213 Hard Palate Adenoid Cystic Carcinoma 8 258965 -NCIT:C8180 Floor of Mouth Adenoid Cystic Carcinoma 8 258966 -NCIT:C8200 Stage I Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 258967 -NCIT:C8204 Stage II Oral Cavity Adenoid Cystic Carcinoma 8 258968 -NCIT:C8208 Stage III Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 258969 -NCIT:C8212 Stage IV Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 258970 -NCIT:C5863 Stage IVA Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 258971 -NCIT:C5864 Stage IVB Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 258972 -NCIT:C5865 Stage IVC Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 258973 -NCIT:C8216 Recurrent Oral Cavity Adenoid Cystic Carcinoma 8 258974 -NCIT:C8463 Palate Carcinoma 7 258975 -NCIT:C4649 Palate Squamous Cell Carcinoma 8 258976 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 258977 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 258978 -NCIT:C8394 Hard Palate Carcinoma 8 258979 -NCIT:C6213 Hard Palate Adenoid Cystic Carcinoma 9 258980 -NCIT:C6214 Hard Palate Mucoepidermoid Carcinoma 9 258981 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 258982 -NCIT:C8395 Soft Palate Carcinoma 8 258983 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 258984 -NCIT:C9319 Floor of the Mouth Carcinoma 7 258985 -NCIT:C4041 Floor of Mouth Squamous Cell Carcinoma 8 258986 -NCIT:C129873 Floor of Mouth Basaloid Squamous Cell Carcinoma 9 258987 -NCIT:C8178 Floor of Mouth Mucoepidermoid Carcinoma 8 258988 -NCIT:C8180 Floor of Mouth Adenoid Cystic Carcinoma 8 258989 -NCIT:C9317 Malignant Gingival Neoplasm 6 258990 -NCIT:C7721 Gingival Carcinoma 7 258991 -NCIT:C129857 Gingival Squamous Cell Carcinoma 8 258992 -NCIT:C129289 Gingival Spindle Cell Carcinoma 9 258993 -NCIT:C8171 Lower Gingival Squamous Cell Carcinoma 9 258994 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 10 258995 -NCIT:C8172 Retromolar Trigone Squamous Cell Carcinoma 9 258996 -NCIT:C8173 Upper Gingival Squamous Cell Carcinoma 9 258997 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 10 258998 -NCIT:C8392 Upper Gingival Carcinoma 8 258999 -NCIT:C8173 Upper Gingival Squamous Cell Carcinoma 9 259000 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 10 259001 -NCIT:C8393 Lower Gingival Carcinoma 8 259002 -NCIT:C8171 Lower Gingival Squamous Cell Carcinoma 9 259003 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 10 259004 -NCIT:C9318 Malignant Floor of the Mouth Neoplasm 6 259005 -NCIT:C9319 Floor of the Mouth Carcinoma 7 259006 -NCIT:C4041 Floor of Mouth Squamous Cell Carcinoma 8 259007 -NCIT:C129873 Floor of Mouth Basaloid Squamous Cell Carcinoma 9 259008 -NCIT:C8178 Floor of Mouth Mucoepidermoid Carcinoma 8 259009 -NCIT:C8180 Floor of Mouth Adenoid Cystic Carcinoma 8 259010 -NCIT:C9320 Malignant Buccal Mucosa Neoplasm 6 259011 -NCIT:C4040 Buccal Mucosa Squamous Cell Carcinoma 7 259012 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 8 259013 -NCIT:C9345 Malignant Tongue Neoplasm 6 259014 -NCIT:C156274 Tongue Sarcoma 7 259015 -NCIT:C156273 Tongue Alveolar Soft Part Sarcoma' 8 259016 -NCIT:C173404 Tongue Liposarcoma 8 259017 -NCIT:C3524 Malignant Posterior Tongue Neoplasm 7 259018 -NCIT:C8407 Posterior Tongue Carcinoma 8 259019 -NCIT:C5990 Posterior Tongue Mucoepidermoid Carcinoma 9 259020 -NCIT:C5991 Posterior Tongue Adenoid Cystic Carcinoma 9 259021 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 259022 -NCIT:C4824 Tongue Carcinoma 7 259023 -NCIT:C171028 Tongue Adenoid Cystic Carcinoma 8 259024 -NCIT:C5991 Posterior Tongue Adenoid Cystic Carcinoma 9 259025 -NCIT:C6251 Anterior Tongue Adenoid Cystic Carcinoma 9 259026 -NCIT:C173807 Tongue Adenosquamous Carcinoma 8 259027 -NCIT:C181160 Tongue Mucoepidermoid Carcinoma 8 259028 -NCIT:C5990 Posterior Tongue Mucoepidermoid Carcinoma 9 259029 -NCIT:C6250 Anterior Tongue Mucoepidermoid Carcinoma 9 259030 -NCIT:C4648 Tongue Squamous Cell Carcinoma 8 259031 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 259032 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 259033 -NCIT:C6249 Anterior Tongue Carcinoma 8 259034 -NCIT:C6250 Anterior Tongue Mucoepidermoid Carcinoma 9 259035 -NCIT:C6251 Anterior Tongue Adenoid Cystic Carcinoma 9 259036 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 259037 -NCIT:C8407 Posterior Tongue Carcinoma 8 259038 -NCIT:C5990 Posterior Tongue Mucoepidermoid Carcinoma 9 259039 -NCIT:C5991 Posterior Tongue Adenoid Cystic Carcinoma 9 259040 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 259041 -NCIT:C6061 Malignant Anterior Tongue Neoplasm 7 259042 -NCIT:C6249 Anterior Tongue Carcinoma 8 259043 -NCIT:C6250 Anterior Tongue Mucoepidermoid Carcinoma 9 259044 -NCIT:C6251 Anterior Tongue Adenoid Cystic Carcinoma 9 259045 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 259046 -NCIT:C9315 Lip and Oral Cavity Carcinoma 5 259047 -NCIT:C132728 Lip and Oral Cavity Cancer by AJCC v8 Stage 6 259048 -NCIT:C132729 Stage I Lip and Oral Cavity Cancer AJCC v8 7 259049 -NCIT:C132730 Stage II Lip and Oral Cavity Cancer AJCC v8 7 259050 -NCIT:C132731 Stage III Lip and Oral Cavity Cancer AJCC v8 7 259051 -NCIT:C132732 Stage IV Lip and Oral Cavity Cancer AJCC v8 7 259052 -NCIT:C132733 Stage IVA Lip and Oral Cavity Cancer AJCC v8 8 259053 -NCIT:C132734 Stage IVB Lip and Oral Cavity Cancer AJCC v8 8 259054 -NCIT:C132735 Stage IVC Lip and Oral Cavity Cancer AJCC v8 8 259055 -NCIT:C132736 Lip and Oral Cavity Cancer by AJCC v6 and v7 Stage 6 259056 -NCIT:C7939 Stage 0 Lip and Oral Cavity Cancer AJCC v6 and v7 7 259057 -NCIT:C4587 Stage 0 Oral Cavity Cancer AJCC v6 and v7 8 259058 -NCIT:C6052 Stage 0 Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 259059 -NCIT:C4588 Stage 0 Lip Cancer AJCC v6 and v7 8 259060 -NCIT:C5893 Stage 0 Lip Basal Cell Carcinoma AJCC v6 and v7 9 259061 -NCIT:C8033 Stage I Lip and Oral Cavity Cancer AJCC v6 and v7 7 259062 -NCIT:C115057 Stage I Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 259063 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 259064 -NCIT:C5876 Stage I Lip Cancer AJCC v6 and v7 8 259065 -NCIT:C8197 Stage I Lip Basal Cell Carcinoma 9 259066 -NCIT:C5883 Stage I Oral Cavity Cancer AJCC v6 and v7 8 259067 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 259068 -NCIT:C8199 Stage I Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 259069 -NCIT:C8200 Stage I Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 259070 -NCIT:C8034 Stage II Lip and Oral Cavity Cancer AJCC v6 and v7 7 259071 -NCIT:C115058 Stage II Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 259072 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 259073 -NCIT:C5877 Stage II Lip Cancer AJCC v6 and v7 8 259074 -NCIT:C8201 Stage II Lip Basal Cell Carcinoma 9 259075 -NCIT:C5884 Stage II Oral Cavity Cancer AJCC v6 and v7 8 259076 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 259077 -NCIT:C8203 Stage II Oral Cavity Mucoepidermoid Carcinoma 9 259078 -NCIT:C8204 Stage II Oral Cavity Adenoid Cystic Carcinoma 9 259079 -NCIT:C8035 Stage III Lip and Oral Cavity Cancer AJCC v6 and v7 7 259080 -NCIT:C115059 Stage III Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 259081 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 259082 -NCIT:C5878 Stage III Lip Cancer AJCC v6 and v7 8 259083 -NCIT:C8205 Stage III Lip Basal Cell Carcinoma 9 259084 -NCIT:C5885 Stage III Oral Cavity Cancer AJCC v6 and v7 8 259085 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 259086 -NCIT:C8207 Stage III Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 259087 -NCIT:C8208 Stage III Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 259088 -NCIT:C8036 Stage IV Lip and Oral Cavity Cancer AJCC v6 and v7 7 259089 -NCIT:C115060 Stage IV Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 259090 -NCIT:C115061 Stage IVA Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 259091 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 259092 -NCIT:C115062 Stage IVB Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 259093 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 259094 -NCIT:C115063 Stage IVC Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 259095 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 259096 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 259097 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 259098 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 259099 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 259100 -NCIT:C5879 Stage IV Lip Cancer AJCC v6 and v7 8 259101 -NCIT:C5880 Stage IVA Lip Cancer AJCC v6 and v7 9 259102 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 10 259103 -NCIT:C5881 Stage IVB Lip Cancer AJCC v6 and v7 9 259104 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 10 259105 -NCIT:C5882 Stage IVC Lip Cancer AJCC v6 and v7 9 259106 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 10 259107 -NCIT:C8209 Stage IV Lip Basal Cell Carcinoma 9 259108 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 10 259109 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 10 259110 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 10 259111 -NCIT:C5886 Stage IV Oral Cavity Cancer AJCC v6 and v7 8 259112 -NCIT:C5887 Stage IVA Oral Cavity Cancer AJCC v6 and v7 9 259113 -NCIT:C5863 Stage IVA Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 259114 -NCIT:C5868 Stage IVA Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 259115 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 259116 -NCIT:C5888 Stage IVB Oral Cavity Cancer AJCC v6 and v7 9 259117 -NCIT:C5864 Stage IVB Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 259118 -NCIT:C5867 Stage IVB Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 259119 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 259120 -NCIT:C5889 Stage IVC Oral Cavity Cancer AJCC v6 and v7 9 259121 -NCIT:C5865 Stage IVC Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 259122 -NCIT:C5866 Stage IVC Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 259123 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 259124 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 259125 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 259126 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 259127 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 259128 -NCIT:C8211 Stage IV Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 259129 -NCIT:C5866 Stage IVC Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 259130 -NCIT:C5867 Stage IVB Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 259131 -NCIT:C5868 Stage IVA Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 259132 -NCIT:C8212 Stage IV Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 259133 -NCIT:C5863 Stage IVA Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 259134 -NCIT:C5864 Stage IVB Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 259135 -NCIT:C5865 Stage IVC Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 259136 -NCIT:C87301 Stage IVA Lip and Oral Cavity Cancer AJCC v6 and v7 8 259137 -NCIT:C115061 Stage IVA Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 259138 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 259139 -NCIT:C5880 Stage IVA Lip Cancer AJCC v6 and v7 9 259140 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 10 259141 -NCIT:C5887 Stage IVA Oral Cavity Cancer AJCC v6 and v7 9 259142 -NCIT:C5863 Stage IVA Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 259143 -NCIT:C5868 Stage IVA Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 259144 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 259145 -NCIT:C87302 Stage IVB Lip and Oral Cavity Cancer AJCC v6 and v7 8 259146 -NCIT:C115062 Stage IVB Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 259147 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 259148 -NCIT:C5881 Stage IVB Lip Cancer AJCC v6 and v7 9 259149 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 10 259150 -NCIT:C5888 Stage IVB Oral Cavity Cancer AJCC v6 and v7 9 259151 -NCIT:C5864 Stage IVB Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 259152 -NCIT:C5867 Stage IVB Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 259153 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 259154 -NCIT:C87303 Stage IVC Lip and Oral Cavity Cancer AJCC v6 and v7 8 259155 -NCIT:C115063 Stage IVC Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 259156 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 259157 -NCIT:C5882 Stage IVC Lip Cancer AJCC v6 and v7 9 259158 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 10 259159 -NCIT:C5889 Stage IVC Oral Cavity Cancer AJCC v6 and v7 9 259160 -NCIT:C5865 Stage IVC Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 10 259161 -NCIT:C5866 Stage IVC Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 10 259162 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 10 259163 -NCIT:C156086 Metastatic Lip and Oral Cavity Carcinoma 6 259164 -NCIT:C156087 Metastatic Oral Cavity Carcinoma 7 259165 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 259166 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 259167 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 259168 -NCIT:C156089 Metastatic Oral Cavity Adenoid Cystic Carcinoma 8 259169 -NCIT:C156090 Metastatic Oral Cavity Mucoepidermoid Carcinoma 8 259170 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 8 259171 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 259172 -NCIT:C156088 Metastatic Lip Carcinoma 7 259173 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 259174 -NCIT:C165562 Locally Advanced Lip and Oral Cavity Carcinoma 7 259175 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 8 259176 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 259177 -NCIT:C3490 Lip Carcinoma 6 259178 -NCIT:C156088 Metastatic Lip Carcinoma 7 259179 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 259180 -NCIT:C4042 Lip Squamous Cell Carcinoma 7 259181 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 259182 -NCIT:C4588 Stage 0 Lip Cancer AJCC v6 and v7 7 259183 -NCIT:C5893 Stage 0 Lip Basal Cell Carcinoma AJCC v6 and v7 8 259184 -NCIT:C5876 Stage I Lip Cancer AJCC v6 and v7 7 259185 -NCIT:C8197 Stage I Lip Basal Cell Carcinoma 8 259186 -NCIT:C5877 Stage II Lip Cancer AJCC v6 and v7 7 259187 -NCIT:C8201 Stage II Lip Basal Cell Carcinoma 8 259188 -NCIT:C5878 Stage III Lip Cancer AJCC v6 and v7 7 259189 -NCIT:C8205 Stage III Lip Basal Cell Carcinoma 8 259190 -NCIT:C5879 Stage IV Lip Cancer AJCC v6 and v7 7 259191 -NCIT:C5880 Stage IVA Lip Cancer AJCC v6 and v7 8 259192 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 9 259193 -NCIT:C5881 Stage IVB Lip Cancer AJCC v6 and v7 8 259194 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 9 259195 -NCIT:C5882 Stage IVC Lip Cancer AJCC v6 and v7 8 259196 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 9 259197 -NCIT:C8209 Stage IV Lip Basal Cell Carcinoma 8 259198 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 9 259199 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 9 259200 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 9 259201 -NCIT:C8014 Lip Basal Cell Carcinoma 7 259202 -NCIT:C5893 Stage 0 Lip Basal Cell Carcinoma AJCC v6 and v7 8 259203 -NCIT:C8197 Stage I Lip Basal Cell Carcinoma 8 259204 -NCIT:C8201 Stage II Lip Basal Cell Carcinoma 8 259205 -NCIT:C8205 Stage III Lip Basal Cell Carcinoma 8 259206 -NCIT:C8209 Stage IV Lip Basal Cell Carcinoma 8 259207 -NCIT:C5872 Stage IVC Basal Cell Lip Carcinoma 9 259208 -NCIT:C5873 Stage IVB Basal Cell Lip Carcinoma 9 259209 -NCIT:C5874 Stage IVA Basal Cell Lip Carcinoma 9 259210 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 8 259211 -NCIT:C42690 Lip and Oral Cavity Squamous Cell Carcinoma 6 259212 -NCIT:C115057 Stage I Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 259213 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 259214 -NCIT:C115058 Stage II Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 259215 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 259216 -NCIT:C115059 Stage III Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 259217 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 259218 -NCIT:C115060 Stage IV Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 7 259219 -NCIT:C115061 Stage IVA Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 259220 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 259221 -NCIT:C115062 Stage IVB Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 259222 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 259223 -NCIT:C115063 Stage IVC Lip and Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 259224 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 259225 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 259226 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 259227 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 259228 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 259229 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 259230 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 259231 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 259232 -NCIT:C4042 Lip Squamous Cell Carcinoma 7 259233 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 259234 -NCIT:C4833 Oral Cavity Squamous Cell Carcinoma 7 259235 -NCIT:C129857 Gingival Squamous Cell Carcinoma 8 259236 -NCIT:C129289 Gingival Spindle Cell Carcinoma 9 259237 -NCIT:C8171 Lower Gingival Squamous Cell Carcinoma 9 259238 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 10 259239 -NCIT:C8172 Retromolar Trigone Squamous Cell Carcinoma 9 259240 -NCIT:C8173 Upper Gingival Squamous Cell Carcinoma 9 259241 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 10 259242 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 8 259243 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 259244 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 259245 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 259246 -NCIT:C170774 Alveolar Ridge Squamous Cell Carcinoma 8 259247 -NCIT:C170775 Upper Alveolar Ridge Squamous Cell Carcinoma 9 259248 -NCIT:C170776 Lower Alveolar Ridge Squamous Cell Carcinoma 9 259249 -NCIT:C172644 Unresectable Oral Cavity Squamous Cell Carcinoma 8 259250 -NCIT:C4040 Buccal Mucosa Squamous Cell Carcinoma 8 259251 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 9 259252 -NCIT:C4041 Floor of Mouth Squamous Cell Carcinoma 8 259253 -NCIT:C129873 Floor of Mouth Basaloid Squamous Cell Carcinoma 9 259254 -NCIT:C4648 Tongue Squamous Cell Carcinoma 8 259255 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 259256 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 259257 -NCIT:C4649 Palate Squamous Cell Carcinoma 8 259258 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 259259 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 259260 -NCIT:C54295 Primary Intraosseous Squamous Cell Carcinoma 8 259261 -NCIT:C54303 Primary Intraosseous Squamous Cell Carcinoma Derived From Keratocystic Odontogenic Tumor 9 259262 -NCIT:C7491 Primary Intraosseous Squamous Cell Carcinoma-Solid Type 9 259263 -NCIT:C7498 Keratinizing Primary Intraosseous Squamous Cell Carcinoma-Solid Type 10 259264 -NCIT:C7499 Non-Keratinizing Primary Intraosseous Squamous Cell Carcinoma -Solid Type 10 259265 -NCIT:C7500 Primary Intraosseous Squamous Cell Carcinoma Derived From Odontogenic Cyst 9 259266 -NCIT:C6052 Stage 0 Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 259267 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 259268 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 259269 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 259270 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 259271 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 259272 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 259273 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 259274 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 259275 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 259276 -NCIT:C8174 Oral Cavity Verrucous Carcinoma 8 259277 -NCIT:C179894 Oral Cavity Carcinoma Cuniculatum 9 259278 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 9 259279 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 9 259280 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 9 259281 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 259282 -NCIT:C8037 Recurrent Lip and Oral Cavity Carcinoma 6 259283 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 259284 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 259285 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 259286 -NCIT:C6076 Recurrent Oral Cavity Carcinoma 7 259287 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 259288 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 259289 -NCIT:C8215 Recurrent Oral Cavity Mucoepidermoid Carcinoma 8 259290 -NCIT:C8216 Recurrent Oral Cavity Adenoid Cystic Carcinoma 8 259291 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 7 259292 -NCIT:C8990 Oral Cavity Carcinoma 6 259293 -NCIT:C156087 Metastatic Oral Cavity Carcinoma 7 259294 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 259295 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 259296 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 259297 -NCIT:C156089 Metastatic Oral Cavity Adenoid Cystic Carcinoma 8 259298 -NCIT:C156090 Metastatic Oral Cavity Mucoepidermoid Carcinoma 8 259299 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 8 259300 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 259301 -NCIT:C173720 Odontogenic Carcinoma 7 259302 -NCIT:C173733 Sclerosing Odontogenic Carcinoma 8 259303 -NCIT:C4311 Ghost Cell Odontogenic Carcinoma 8 259304 -NCIT:C54295 Primary Intraosseous Squamous Cell Carcinoma 8 259305 -NCIT:C54303 Primary Intraosseous Squamous Cell Carcinoma Derived From Keratocystic Odontogenic Tumor 9 259306 -NCIT:C7491 Primary Intraosseous Squamous Cell Carcinoma-Solid Type 9 259307 -NCIT:C7498 Keratinizing Primary Intraosseous Squamous Cell Carcinoma-Solid Type 10 259308 -NCIT:C7499 Non-Keratinizing Primary Intraosseous Squamous Cell Carcinoma -Solid Type 10 259309 -NCIT:C7500 Primary Intraosseous Squamous Cell Carcinoma Derived From Odontogenic Cyst 9 259310 -NCIT:C54300 Clear Cell Odontogenic Carcinoma 8 259311 -NCIT:C7492 Ameloblastic Carcinoma 8 259312 -NCIT:C7493 Ameloblastic Carcinoma-Primary Type 9 259313 -NCIT:C7496 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated) 9 259314 -NCIT:C54298 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated), Intraosseous 10 259315 -NCIT:C54299 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated), Peripheral 10 259316 -NCIT:C7497 Ameloblastic Carcinoma Derived From Odontogenic Cyst 9 259317 -NCIT:C4587 Stage 0 Oral Cavity Cancer AJCC v6 and v7 7 259318 -NCIT:C6052 Stage 0 Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 259319 -NCIT:C4824 Tongue Carcinoma 7 259320 -NCIT:C171028 Tongue Adenoid Cystic Carcinoma 8 259321 -NCIT:C5991 Posterior Tongue Adenoid Cystic Carcinoma 9 259322 -NCIT:C6251 Anterior Tongue Adenoid Cystic Carcinoma 9 259323 -NCIT:C173807 Tongue Adenosquamous Carcinoma 8 259324 -NCIT:C181160 Tongue Mucoepidermoid Carcinoma 8 259325 -NCIT:C5990 Posterior Tongue Mucoepidermoid Carcinoma 9 259326 -NCIT:C6250 Anterior Tongue Mucoepidermoid Carcinoma 9 259327 -NCIT:C4648 Tongue Squamous Cell Carcinoma 8 259328 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 259329 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 259330 -NCIT:C6249 Anterior Tongue Carcinoma 8 259331 -NCIT:C6250 Anterior Tongue Mucoepidermoid Carcinoma 9 259332 -NCIT:C6251 Anterior Tongue Adenoid Cystic Carcinoma 9 259333 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 259334 -NCIT:C8407 Posterior Tongue Carcinoma 8 259335 -NCIT:C5990 Posterior Tongue Mucoepidermoid Carcinoma 9 259336 -NCIT:C5991 Posterior Tongue Adenoid Cystic Carcinoma 9 259337 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 259338 -NCIT:C4833 Oral Cavity Squamous Cell Carcinoma 7 259339 -NCIT:C129857 Gingival Squamous Cell Carcinoma 8 259340 -NCIT:C129289 Gingival Spindle Cell Carcinoma 9 259341 -NCIT:C8171 Lower Gingival Squamous Cell Carcinoma 9 259342 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 10 259343 -NCIT:C8172 Retromolar Trigone Squamous Cell Carcinoma 9 259344 -NCIT:C8173 Upper Gingival Squamous Cell Carcinoma 9 259345 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 10 259346 -NCIT:C148384 Refractory Oral Cavity Squamous Cell Carcinoma 8 259347 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 259348 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 259349 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 259350 -NCIT:C170774 Alveolar Ridge Squamous Cell Carcinoma 8 259351 -NCIT:C170775 Upper Alveolar Ridge Squamous Cell Carcinoma 9 259352 -NCIT:C170776 Lower Alveolar Ridge Squamous Cell Carcinoma 9 259353 -NCIT:C172644 Unresectable Oral Cavity Squamous Cell Carcinoma 8 259354 -NCIT:C4040 Buccal Mucosa Squamous Cell Carcinoma 8 259355 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 9 259356 -NCIT:C4041 Floor of Mouth Squamous Cell Carcinoma 8 259357 -NCIT:C129873 Floor of Mouth Basaloid Squamous Cell Carcinoma 9 259358 -NCIT:C4648 Tongue Squamous Cell Carcinoma 8 259359 -NCIT:C8169 Anterior Tongue Squamous Cell Carcinoma 9 259360 -NCIT:C8182 Posterior Tongue Squamous Cell Carcinoma 9 259361 -NCIT:C4649 Palate Squamous Cell Carcinoma 8 259362 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 259363 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 259364 -NCIT:C54295 Primary Intraosseous Squamous Cell Carcinoma 8 259365 -NCIT:C54303 Primary Intraosseous Squamous Cell Carcinoma Derived From Keratocystic Odontogenic Tumor 9 259366 -NCIT:C7491 Primary Intraosseous Squamous Cell Carcinoma-Solid Type 9 259367 -NCIT:C7498 Keratinizing Primary Intraosseous Squamous Cell Carcinoma-Solid Type 10 259368 -NCIT:C7499 Non-Keratinizing Primary Intraosseous Squamous Cell Carcinoma -Solid Type 10 259369 -NCIT:C7500 Primary Intraosseous Squamous Cell Carcinoma Derived From Odontogenic Cyst 9 259370 -NCIT:C6052 Stage 0 Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 259371 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 259372 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 259373 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 259374 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 259375 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 259376 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 259377 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 259378 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 259379 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 259380 -NCIT:C8174 Oral Cavity Verrucous Carcinoma 8 259381 -NCIT:C179894 Oral Cavity Carcinoma Cuniculatum 9 259382 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 9 259383 -NCIT:C8175 Buccal Mucosa Verrucous Carcinoma 9 259384 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 9 259385 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 259386 -NCIT:C5883 Stage I Oral Cavity Cancer AJCC v6 and v7 7 259387 -NCIT:C6053 Stage I Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 259388 -NCIT:C8199 Stage I Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 259389 -NCIT:C8200 Stage I Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 259390 -NCIT:C5884 Stage II Oral Cavity Cancer AJCC v6 and v7 7 259391 -NCIT:C6054 Stage II Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 259392 -NCIT:C8203 Stage II Oral Cavity Mucoepidermoid Carcinoma 8 259393 -NCIT:C8204 Stage II Oral Cavity Adenoid Cystic Carcinoma 8 259394 -NCIT:C5885 Stage III Oral Cavity Cancer AJCC v6 and v7 7 259395 -NCIT:C6055 Stage III Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 259396 -NCIT:C8207 Stage III Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 259397 -NCIT:C8208 Stage III Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 259398 -NCIT:C5886 Stage IV Oral Cavity Cancer AJCC v6 and v7 7 259399 -NCIT:C5887 Stage IVA Oral Cavity Cancer AJCC v6 and v7 8 259400 -NCIT:C5863 Stage IVA Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 259401 -NCIT:C5868 Stage IVA Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 259402 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 259403 -NCIT:C5888 Stage IVB Oral Cavity Cancer AJCC v6 and v7 8 259404 -NCIT:C5864 Stage IVB Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 259405 -NCIT:C5867 Stage IVB Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 259406 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 259407 -NCIT:C5889 Stage IVC Oral Cavity Cancer AJCC v6 and v7 8 259408 -NCIT:C5865 Stage IVC Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 259409 -NCIT:C5866 Stage IVC Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 259410 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 259411 -NCIT:C6056 Stage IV Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 8 259412 -NCIT:C6057 Stage IVA Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 259413 -NCIT:C6058 Stage IVB Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 259414 -NCIT:C6059 Stage IVC Oral Cavity Squamous Cell Carcinoma AJCC v6 and v7 9 259415 -NCIT:C8211 Stage IV Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 259416 -NCIT:C5866 Stage IVC Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 259417 -NCIT:C5867 Stage IVB Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 259418 -NCIT:C5868 Stage IVA Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 259419 -NCIT:C8212 Stage IV Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 259420 -NCIT:C5863 Stage IVA Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 259421 -NCIT:C5864 Stage IVB Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 259422 -NCIT:C5865 Stage IVC Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 259423 -NCIT:C5914 Oral Cavity Adenocarcinoma 7 259424 -NCIT:C6076 Recurrent Oral Cavity Carcinoma 7 259425 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 259426 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 259427 -NCIT:C8215 Recurrent Oral Cavity Mucoepidermoid Carcinoma 8 259428 -NCIT:C8216 Recurrent Oral Cavity Adenoid Cystic Carcinoma 8 259429 -NCIT:C7721 Gingival Carcinoma 7 259430 -NCIT:C129857 Gingival Squamous Cell Carcinoma 8 259431 -NCIT:C129289 Gingival Spindle Cell Carcinoma 9 259432 -NCIT:C8171 Lower Gingival Squamous Cell Carcinoma 9 259433 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 10 259434 -NCIT:C8172 Retromolar Trigone Squamous Cell Carcinoma 9 259435 -NCIT:C8173 Upper Gingival Squamous Cell Carcinoma 9 259436 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 10 259437 -NCIT:C8392 Upper Gingival Carcinoma 8 259438 -NCIT:C8173 Upper Gingival Squamous Cell Carcinoma 9 259439 -NCIT:C5917 Upper Gingival Verrucous Carcinoma 10 259440 -NCIT:C8393 Lower Gingival Carcinoma 8 259441 -NCIT:C8171 Lower Gingival Squamous Cell Carcinoma 9 259442 -NCIT:C8176 Lower Gingival Verrucous Carcinoma 10 259443 -NCIT:C8177 Oral Cavity Mucoepidermoid Carcinoma 7 259444 -NCIT:C156090 Metastatic Oral Cavity Mucoepidermoid Carcinoma 8 259445 -NCIT:C181160 Tongue Mucoepidermoid Carcinoma 8 259446 -NCIT:C5990 Posterior Tongue Mucoepidermoid Carcinoma 9 259447 -NCIT:C6250 Anterior Tongue Mucoepidermoid Carcinoma 9 259448 -NCIT:C6214 Hard Palate Mucoepidermoid Carcinoma 8 259449 -NCIT:C8178 Floor of Mouth Mucoepidermoid Carcinoma 8 259450 -NCIT:C8199 Stage I Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 259451 -NCIT:C8203 Stage II Oral Cavity Mucoepidermoid Carcinoma 8 259452 -NCIT:C8207 Stage III Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 259453 -NCIT:C8211 Stage IV Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 8 259454 -NCIT:C5866 Stage IVC Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 259455 -NCIT:C5867 Stage IVB Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 259456 -NCIT:C5868 Stage IVA Oral Cavity Mucoepidermoid Carcinoma AJCC v6 and v7 9 259457 -NCIT:C8215 Recurrent Oral Cavity Mucoepidermoid Carcinoma 8 259458 -NCIT:C8179 Oral Cavity Adenoid Cystic Carcinoma 7 259459 -NCIT:C156089 Metastatic Oral Cavity Adenoid Cystic Carcinoma 8 259460 -NCIT:C171028 Tongue Adenoid Cystic Carcinoma 8 259461 -NCIT:C5991 Posterior Tongue Adenoid Cystic Carcinoma 9 259462 -NCIT:C6251 Anterior Tongue Adenoid Cystic Carcinoma 9 259463 -NCIT:C6213 Hard Palate Adenoid Cystic Carcinoma 8 259464 -NCIT:C8180 Floor of Mouth Adenoid Cystic Carcinoma 8 259465 -NCIT:C8200 Stage I Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 259466 -NCIT:C8204 Stage II Oral Cavity Adenoid Cystic Carcinoma 8 259467 -NCIT:C8208 Stage III Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 259468 -NCIT:C8212 Stage IV Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 8 259469 -NCIT:C5863 Stage IVA Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 259470 -NCIT:C5864 Stage IVB Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 259471 -NCIT:C5865 Stage IVC Oral Cavity Adenoid Cystic Carcinoma AJCC v6 and v7 9 259472 -NCIT:C8216 Recurrent Oral Cavity Adenoid Cystic Carcinoma 8 259473 -NCIT:C8463 Palate Carcinoma 7 259474 -NCIT:C4649 Palate Squamous Cell Carcinoma 8 259475 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 259476 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 259477 -NCIT:C8394 Hard Palate Carcinoma 8 259478 -NCIT:C6213 Hard Palate Adenoid Cystic Carcinoma 9 259479 -NCIT:C6214 Hard Palate Mucoepidermoid Carcinoma 9 259480 -NCIT:C8170 Hard Palate Squamous Cell Carcinoma 9 259481 -NCIT:C8395 Soft Palate Carcinoma 8 259482 -NCIT:C4941 Soft Palate Squamous Cell Carcinoma 9 259483 -NCIT:C9319 Floor of the Mouth Carcinoma 7 259484 -NCIT:C4041 Floor of Mouth Squamous Cell Carcinoma 8 259485 -NCIT:C129873 Floor of Mouth Basaloid Squamous Cell Carcinoma 9 259486 -NCIT:C8178 Floor of Mouth Mucoepidermoid Carcinoma 8 259487 -NCIT:C8180 Floor of Mouth Adenoid Cystic Carcinoma 8 259488 -NCIT:C9337 Malignant Ear Neoplasm 4 259489 -NCIT:C174026 Malignant Inner Ear Neoplasm 5 259490 -NCIT:C67560 Endolymphatic Sac Tumor 6 259491 -NCIT:C4653 Malignant External Ear Neoplasm 5 259492 -NCIT:C6081 External Ear Carcinoma 6 259493 -NCIT:C4176 Ceruminous Adenocarcinoma 7 259494 -NCIT:C6082 External Ear Basal Cell Carcinoma 7 259495 -NCIT:C6083 External Ear Squamous Cell Carcinoma 7 259496 -NCIT:C4765 Malignant Middle Ear Neoplasm 5 259497 -NCIT:C188115 Middle Ear Embryonal Rhabdomyosarcoma 6 259498 -NCIT:C6089 Middle Ear Carcinoma 6 259499 -NCIT:C6086 Middle Ear Squamous Cell Carcinoma 7 259500 -NCIT:C6848 Middle Ear Adenocarcinoma 7 259501 -NCIT:C91741 Middle Ear Carcinoma In Situ 7 259502 -NCIT:C54262 Ear Carcinoma 5 259503 -NCIT:C6081 External Ear Carcinoma 6 259504 -NCIT:C4176 Ceruminous Adenocarcinoma 7 259505 -NCIT:C6082 External Ear Basal Cell Carcinoma 7 259506 -NCIT:C6083 External Ear Squamous Cell Carcinoma 7 259507 -NCIT:C6089 Middle Ear Carcinoma 6 259508 -NCIT:C6086 Middle Ear Squamous Cell Carcinoma 7 259509 -NCIT:C6848 Middle Ear Adenocarcinoma 7 259510 -NCIT:C91741 Middle Ear Carcinoma In Situ 7 259511 -NCIT:C4090 Malignant Giant Cell Neoplasm 3 259512 -NCIT:C121933 Malignant Osteoclastic Giant Cell-Rich Tumor of Bone 4 259513 -NCIT:C4304 Malignancy in Giant Cell Tumor of Bone 5 259514 -NCIT:C3779 Giant Cell Carcinoma 4 259515 -NCIT:C4452 Lung Giant Cell Carcinoma 5 259516 -NCIT:C54342 Laryngeal Giant Cell Carcinoma 5 259517 -NCIT:C5838 Gallbladder Undifferentiated Carcinoma, Spindle and Giant Cell Type 5 259518 -NCIT:C4325 Giant Cell Glioblastoma 4 259519 -NCIT:C114966 Childhood Giant Cell Glioblastoma 5 259520 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 6 259521 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 5 259522 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 6 259523 -NCIT:C176998 Refractory Giant Cell Glioblastoma 5 259524 -NCIT:C68702 Adult Giant Cell Glioblastoma 5 259525 -NCIT:C6535 Malignant Tenosynovial Giant Cell Tumor 4 259526 -NCIT:C8380 Undifferentiated Pleomorphic Sarcoma with Osteoclast-Like Giant Cells 4 259527 -NCIT:C4456 Malignant Mesothelioma 3 259528 -NCIT:C150535 Refractory Malignant Mesothelioma 4 259529 -NCIT:C159675 Refractory Pleural Malignant Mesothelioma 5 259530 -NCIT:C154442 Resectable Malignant Mesothelioma 4 259531 -NCIT:C154441 Resectable Pleural Malignant Mesothelioma 5 259532 -NCIT:C154443 Unresectable Malignant Mesothelioma 4 259533 -NCIT:C154444 Unresectable Pleural Malignant Mesothelioma 5 259534 -NCIT:C173616 Unresectable Pleural Epithelioid Mesothelioma 6 259535 -NCIT:C173617 Unresectable Pleural Sarcomatoid Mesothelioma 6 259536 -NCIT:C173618 Unresectable Pleural Biphasic Mesothelioma 6 259537 -NCIT:C173608 Unresectable Paratesticular Malignant Mesothelioma 5 259538 -NCIT:C173609 Unresectable Paratesticular Epithelioid Mesothelioma 6 259539 -NCIT:C173610 Unresectable Paratesticular Sarcomatoid Mesothelioma 6 259540 -NCIT:C173611 Unresectable Paratesticular Biphasic Mesothelioma 6 259541 -NCIT:C173612 Unresectable Peritoneal Malignant Mesothelioma 5 259542 -NCIT:C173613 Unresectable Peritoneal Epithelioid Mesothelioma 6 259543 -NCIT:C173614 Unresectable Peritoneal Sarcomatoid Mesothelioma 6 259544 -NCIT:C173615 Unresectable Peritoneal Biphasic Mesothelioma 6 259545 -NCIT:C162477 Paratesticular Malignant Mesothelioma 4 259546 -NCIT:C173605 Paratesticular Epithelioid Mesothelioma 5 259547 -NCIT:C173609 Unresectable Paratesticular Epithelioid Mesothelioma 6 259548 -NCIT:C173606 Paratesticular Sarcomatoid Mesothelioma 5 259549 -NCIT:C173610 Unresectable Paratesticular Sarcomatoid Mesothelioma 6 259550 -NCIT:C173607 Paratesticular Biphasic Mesothelioma 5 259551 -NCIT:C173611 Unresectable Paratesticular Biphasic Mesothelioma 6 259552 -NCIT:C173608 Unresectable Paratesticular Malignant Mesothelioma 5 259553 -NCIT:C173609 Unresectable Paratesticular Epithelioid Mesothelioma 6 259554 -NCIT:C173610 Unresectable Paratesticular Sarcomatoid Mesothelioma 6 259555 -NCIT:C173611 Unresectable Paratesticular Biphasic Mesothelioma 6 259556 -NCIT:C165252 Metastatic Malignant Mesothelioma 4 259557 -NCIT:C168545 Metastatic Pleural Malignant Mesothelioma 5 259558 -NCIT:C175936 Locally Advanced Pleural Malignant Mesothelioma 6 259559 -NCIT:C8706 Advanced Pleural Malignant Mesothelioma 6 259560 -NCIT:C175935 Locally Advanced Malignant Mesothelioma 5 259561 -NCIT:C175936 Locally Advanced Pleural Malignant Mesothelioma 6 259562 -NCIT:C179462 Metastatic Peritoneal Malignant Mesothelioma 5 259563 -NCIT:C8704 Advanced Peritoneal Malignant Mesothelioma 6 259564 -NCIT:C7865 Advanced Malignant Mesothelioma 5 259565 -NCIT:C175937 Advanced Epithelioid Mesothelioma 6 259566 -NCIT:C8703 Advanced Pericardial Malignant Mesothelioma 6 259567 -NCIT:C8704 Advanced Peritoneal Malignant Mesothelioma 6 259568 -NCIT:C8706 Advanced Pleural Malignant Mesothelioma 6 259569 -NCIT:C27926 Asbestos-Related Malignant Mesothelioma 4 259570 -NCIT:C40444 Ovarian Malignant Mesothelioma 4 259571 -NCIT:C7376 Pleural Malignant Mesothelioma 4 259572 -NCIT:C136374 Pleural Malignant Mesothelioma by AJCC v7 Stage 5 259573 -NCIT:C6646 Stage I Pleural Malignant Mesothelioma AJCC v7 6 259574 -NCIT:C87195 Stage IA Pleural Malignant Mesothelioma AJCC v7 7 259575 -NCIT:C87196 Stage IB Pleural Malignant Mesothelioma AJCC v7 7 259576 -NCIT:C6647 Stage II Pleural Malignant Mesothelioma AJCC v7 6 259577 -NCIT:C6648 Stage III Pleural Malignant Mesothelioma AJCC v7 6 259578 -NCIT:C6649 Stage IV Pleural Malignant Mesothelioma AJCC v7 6 259579 -NCIT:C136399 Pleural Malignant Mesothelioma by AJCC v8 Stage 5 259580 -NCIT:C136400 Stage I Pleural Malignant Mesothelioma AJCC v8 6 259581 -NCIT:C136401 Stage IB Pleural Malignant Mesothelioma AJCC v8 7 259582 -NCIT:C136409 Stage IA Pleural Malignant Mesothelioma AJCC v8 7 259583 -NCIT:C136402 Stage II Pleural Malignant Mesothelioma AJCC v8 6 259584 -NCIT:C136403 Stage III Pleural Malignant Mesothelioma AJCC v8 6 259585 -NCIT:C136404 Stage IIIA Pleural Malignant Mesothelioma AJCC v8 7 259586 -NCIT:C136405 Stage IIIB Pleural Malignant Mesothelioma AJCC v8 7 259587 -NCIT:C136406 Stage IV Pleural Malignant Mesothelioma AJCC v8 6 259588 -NCIT:C154441 Resectable Pleural Malignant Mesothelioma 5 259589 -NCIT:C154444 Unresectable Pleural Malignant Mesothelioma 5 259590 -NCIT:C173616 Unresectable Pleural Epithelioid Mesothelioma 6 259591 -NCIT:C173617 Unresectable Pleural Sarcomatoid Mesothelioma 6 259592 -NCIT:C173618 Unresectable Pleural Biphasic Mesothelioma 6 259593 -NCIT:C159675 Refractory Pleural Malignant Mesothelioma 5 259594 -NCIT:C168545 Metastatic Pleural Malignant Mesothelioma 5 259595 -NCIT:C175936 Locally Advanced Pleural Malignant Mesothelioma 6 259596 -NCIT:C8706 Advanced Pleural Malignant Mesothelioma 6 259597 -NCIT:C45662 Pleural Epithelioid Mesothelioma 5 259598 -NCIT:C173616 Unresectable Pleural Epithelioid Mesothelioma 6 259599 -NCIT:C45663 Pleural Sarcomatoid Mesothelioma 5 259600 -NCIT:C173617 Unresectable Pleural Sarcomatoid Mesothelioma 6 259601 -NCIT:C45664 Pleural Desmoplastic Mesothelioma 5 259602 -NCIT:C45665 Pleural Biphasic Mesothelioma 5 259603 -NCIT:C173618 Unresectable Pleural Biphasic Mesothelioma 6 259604 -NCIT:C45666 Localized Pleural Malignant Mesothelioma 5 259605 -NCIT:C8707 Recurrent Pleural Malignant Mesothelioma 5 259606 -NCIT:C7631 Pericardial Malignant Mesothelioma 4 259607 -NCIT:C8703 Advanced Pericardial Malignant Mesothelioma 5 259608 -NCIT:C9253 Recurrent Pericardial Malignant Mesothelioma 5 259609 -NCIT:C7866 Recurrent Malignant Mesothelioma 4 259610 -NCIT:C175938 Recurrent Epithelioid Mesothelioma 5 259611 -NCIT:C8705 Recurrent Peritoneal Malignant Mesothelioma 5 259612 -NCIT:C8707 Recurrent Pleural Malignant Mesothelioma 5 259613 -NCIT:C9253 Recurrent Pericardial Malignant Mesothelioma 5 259614 -NCIT:C8420 Diffuse Malignant Mesothelioma 4 259615 -NCIT:C4282 Biphasic Mesothelioma 5 259616 -NCIT:C168805 Peritoneal Biphasic Mesothelioma 6 259617 -NCIT:C173615 Unresectable Peritoneal Biphasic Mesothelioma 7 259618 -NCIT:C173607 Paratesticular Biphasic Mesothelioma 6 259619 -NCIT:C173611 Unresectable Paratesticular Biphasic Mesothelioma 7 259620 -NCIT:C45665 Pleural Biphasic Mesothelioma 6 259621 -NCIT:C173618 Unresectable Pleural Biphasic Mesothelioma 7 259622 -NCIT:C45655 Sarcomatoid Mesothelioma 5 259623 -NCIT:C168804 Peritoneal Sarcomatoid Mesothelioma 6 259624 -NCIT:C173614 Unresectable Peritoneal Sarcomatoid Mesothelioma 7 259625 -NCIT:C173606 Paratesticular Sarcomatoid Mesothelioma 6 259626 -NCIT:C173610 Unresectable Paratesticular Sarcomatoid Mesothelioma 7 259627 -NCIT:C27779 Lymphohistiocytoid Mesothelioma 6 259628 -NCIT:C45663 Pleural Sarcomatoid Mesothelioma 6 259629 -NCIT:C173617 Unresectable Pleural Sarcomatoid Mesothelioma 7 259630 -NCIT:C6747 Desmoplastic Mesothelioma 5 259631 -NCIT:C45664 Pleural Desmoplastic Mesothelioma 6 259632 -NCIT:C7985 Epithelioid Mesothelioma 5 259633 -NCIT:C162940 Peritoneal Epithelioid Mesothelioma 6 259634 -NCIT:C173613 Unresectable Peritoneal Epithelioid Mesothelioma 7 259635 -NCIT:C173605 Paratesticular Epithelioid Mesothelioma 6 259636 -NCIT:C173609 Unresectable Paratesticular Epithelioid Mesothelioma 7 259637 -NCIT:C175937 Advanced Epithelioid Mesothelioma 6 259638 -NCIT:C175938 Recurrent Epithelioid Mesothelioma 6 259639 -NCIT:C45662 Pleural Epithelioid Mesothelioma 6 259640 -NCIT:C173616 Unresectable Pleural Epithelioid Mesothelioma 7 259641 -NCIT:C9239 Localized Malignant Mesothelioma 4 259642 -NCIT:C45666 Localized Pleural Malignant Mesothelioma 5 259643 -NCIT:C9350 Peritoneal Malignant Mesothelioma 4 259644 -NCIT:C162940 Peritoneal Epithelioid Mesothelioma 5 259645 -NCIT:C173613 Unresectable Peritoneal Epithelioid Mesothelioma 6 259646 -NCIT:C168804 Peritoneal Sarcomatoid Mesothelioma 5 259647 -NCIT:C173614 Unresectable Peritoneal Sarcomatoid Mesothelioma 6 259648 -NCIT:C168805 Peritoneal Biphasic Mesothelioma 5 259649 -NCIT:C173615 Unresectable Peritoneal Biphasic Mesothelioma 6 259650 -NCIT:C173612 Unresectable Peritoneal Malignant Mesothelioma 5 259651 -NCIT:C173613 Unresectable Peritoneal Epithelioid Mesothelioma 6 259652 -NCIT:C173614 Unresectable Peritoneal Sarcomatoid Mesothelioma 6 259653 -NCIT:C173615 Unresectable Peritoneal Biphasic Mesothelioma 6 259654 -NCIT:C179462 Metastatic Peritoneal Malignant Mesothelioma 5 259655 -NCIT:C8704 Advanced Peritoneal Malignant Mesothelioma 6 259656 -NCIT:C8705 Recurrent Peritoneal Malignant Mesothelioma 5 259657 -NCIT:C4571 Malignant Respiratory System Neoplasm 3 259658 -NCIT:C156885 Malignant Bronchial Neoplasm 4 259659 -NCIT:C35875 Bronchogenic Carcinoma 5 259660 -NCIT:C180922 Advanced Bronchogenic Carcinoma 6 259661 -NCIT:C180923 Recurrent Bronchogenic Carcinoma 6 259662 -NCIT:C7779 Superior Sulcus Lung Carcinoma 6 259663 -NCIT:C5264 Lung Mucosa-Associated Lymphoid Tissue Lymphoma 5 259664 -NCIT:C7377 Malignant Lung Neoplasm 4 259665 -NCIT:C142785 Lung Malignant PEComa 5 259666 -NCIT:C157602 Metastatic Lung Neuroendocrine Neoplasm 5 259667 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 6 259668 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 259669 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 7 259670 -NCIT:C165446 Advanced Lung Neuroendocrine Neoplasm 6 259671 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 7 259672 -NCIT:C177245 Advanced Lung Carcinoid Tumor 7 259673 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 7 259674 -NCIT:C176715 Locally Advanced Lung Neuroendocrine Neoplasm 6 259675 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 7 259676 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 7 259677 -NCIT:C177243 Metastatic Lung Carcinoid Tumor 6 259678 -NCIT:C177245 Advanced Lung Carcinoid Tumor 7 259679 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 6 259680 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 7 259681 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 7 259682 -NCIT:C165454 Unresectable Lung Neuroendocrine Neoplasm 5 259683 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 6 259684 -NCIT:C177246 Unresectable Lung Carcinoid Tumor 6 259685 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 6 259686 -NCIT:C185043 Lung Plasmacytoma 5 259687 -NCIT:C190100 Childhood Malignant Lung Neoplasm 5 259688 -NCIT:C118814 Childhood Lung Non-Small Cell Carcinoma 6 259689 -NCIT:C118815 Childhood Lung Small Cell Carcinoma 6 259690 -NCIT:C3577 Metastatic Malignant Neoplasm in the Lung 5 259691 -NCIT:C185321 Extramedullary Disease in Plasma Cell Myeloma Involving the Lung 6 259692 -NCIT:C27408 Metastatic Carcinoma in the Lung 6 259693 -NCIT:C153224 Colorectal Carcinoma Metastatic in the Lung 7 259694 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 8 259695 -NCIT:C36300 Breast Carcinoma Metastatic in the Lung 7 259696 -NCIT:C36307 Prostate Carcinoma Metastatic in the Lung 7 259697 -NCIT:C4453 Lung Epithelioid Hemangioendothelioma 5 259698 -NCIT:C45652 Lung Melanoma 5 259699 -NCIT:C4566 Malignant Lung Hilum Neoplasm 5 259700 -NCIT:C7454 Lung Hilum Carcinoma 6 259701 -NCIT:C4794 Lung Lymphoma 5 259702 -NCIT:C181205 Lung Hodgkin Lymphoma 6 259703 -NCIT:C5684 Lung Non-Hodgkin Lymphoma 6 259704 -NCIT:C181211 Lung Follicular Lymphoma 7 259705 -NCIT:C188082 Lung Anaplastic Large Cell Lymphoma 7 259706 -NCIT:C45605 Lung Diffuse Large B-Cell Lymphoma 7 259707 -NCIT:C183121 Lung Intravascular Large B-Cell Lymphoma 8 259708 -NCIT:C5264 Lung Mucosa-Associated Lymphoid Tissue Lymphoma 7 259709 -NCIT:C4860 Lung Sarcoma 5 259710 -NCIT:C142825 Pulmonary Artery Intimal Sarcoma 6 259711 -NCIT:C142827 Primary Pulmonary Myxoid Sarcoma with EWSR1-CREB1 Fusion 6 259712 -NCIT:C173809 Lung Alveolar Soft Part Sarcoma 6 259713 -NCIT:C181201 Lung Rhabdomyosarcoma 6 259714 -NCIT:C188061 Lung Osteosarcoma 6 259715 -NCIT:C3551 Lung Kaposi Sarcoma 6 259716 -NCIT:C45631 Lung Synovial Sarcoma 6 259717 -NCIT:C45632 Lung Biphasic Synovial Sarcoma 7 259718 -NCIT:C45633 Lung Monophasic Synovial Sarcoma 7 259719 -NCIT:C5667 Lung Leiomyosarcoma 6 259720 -NCIT:C4878 Lung Carcinoma 5 259721 -NCIT:C136467 Lung Cancer by AJCC v8 Stage 6 259722 -NCIT:C136468 Occult Lung Cancer AJCC v8 7 259723 -NCIT:C136469 Stage 0 Lung Cancer AJCC v8 7 259724 -NCIT:C136470 Stage I Lung Cancer AJCC v8 7 259725 -NCIT:C136471 Stage IA1 Lung Cancer AJCC v8 8 259726 -NCIT:C136472 Stage IA2 Lung Cancer AJCC v8 8 259727 -NCIT:C136473 Stage IA3 Lung Cancer AJCC v8 8 259728 -NCIT:C136474 Stage IB Lung Cancer AJCC v8 8 259729 -NCIT:C136475 Stage II Lung Cancer AJCC v8 7 259730 -NCIT:C136476 Stage IIA Lung Cancer AJCC v8 8 259731 -NCIT:C136477 Stage IIB Lung Cancer AJCC v8 8 259732 -NCIT:C136478 Stage III Lung Cancer AJCC v8 7 259733 -NCIT:C136479 Stage IIIA Lung Cancer AJCC v8 8 259734 -NCIT:C136480 Stage IIIB Lung Cancer AJCC v8 8 259735 -NCIT:C136481 Stage IIIC Lung Cancer AJCC v8 8 259736 -NCIT:C136482 Stage IV Lung Cancer AJCC v8 7 259737 -NCIT:C136483 Stage IVA Lung Cancer AJCC v8 8 259738 -NCIT:C136484 Stage IVB Lung Cancer AJCC v8 8 259739 -NCIT:C141076 Refractory Lung Carcinoma 6 259740 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 7 259741 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 8 259742 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 8 259743 -NCIT:C153081 Refractory Lung Non-Small Cell Carcinoma 7 259744 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 8 259745 -NCIT:C176858 Refractory Lung Non-Squamous Non-Small Cell Carcinoma 8 259746 -NCIT:C179209 Refractory Lung Adenocarcinoma 8 259747 -NCIT:C173331 Refractory Lung Squamous Cell Carcinoma 7 259748 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 8 259749 -NCIT:C142830 Lung Myoepithelial Carcinoma 6 259750 -NCIT:C153202 Metastatic Lung Carcinoma 6 259751 -NCIT:C133503 Lung Carcinoma Metastatic in the Central Nervous System 7 259752 -NCIT:C36304 Lung Carcinoma Metastatic in the Brain 8 259753 -NCIT:C153203 Advanced Lung Carcinoma 7 259754 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 259755 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 8 259756 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 259757 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 259758 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 259759 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 259760 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 259761 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 259762 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 259763 -NCIT:C180922 Advanced Bronchogenic Carcinoma 8 259764 -NCIT:C153206 Locally Advanced Lung Carcinoma 7 259765 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 8 259766 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 259767 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 259768 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 259769 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 259770 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 259771 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 259772 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 259773 -NCIT:C156092 Metastatic Lung Squamous Cell Carcinoma 7 259774 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 259775 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 259776 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 259777 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 259778 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 259779 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 259780 -NCIT:C156094 Metastatic Lung Non-Small Cell Carcinoma 7 259781 -NCIT:C128798 Metastatic Lung Non-Squamous Non-Small Cell Carcinoma 8 259782 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 259783 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 259784 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 259785 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 259786 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 259787 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 259788 -NCIT:C155908 Metastatic Lung Adenocarcinoma 9 259789 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 259790 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 259791 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 9 259792 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 259793 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 259794 -NCIT:C156093 Metastatic Lung Adenosquamous Carcinoma 8 259795 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 259796 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 259797 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 259798 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 259799 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 259800 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 259801 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 8 259802 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 259803 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 259804 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 259805 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 259806 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 259807 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 259808 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 8 259809 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 259810 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 259811 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 259812 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 259813 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 259814 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 7 259815 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 259816 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 259817 -NCIT:C187195 Oligometastatic Lung Carcinoma 7 259818 -NCIT:C36305 Lung Carcinoma Metastatic in the Bone 7 259819 -NCIT:C36306 Lung Carcinoma Metastatic in the Liver 7 259820 -NCIT:C155902 Unresectable Lung Carcinoma 6 259821 -NCIT:C155901 Unresectable Lung Non-Small Cell Carcinoma 7 259822 -NCIT:C162642 Unresectable Lung Non-Squamous Non-Small Cell Carcinoma 8 259823 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 9 259824 -NCIT:C171612 Unresectable Lung Non-Small Cell Squamous Carcinoma 8 259825 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 259826 -NCIT:C174510 Unresectable Lung Adenocarcinoma 8 259827 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 7 259828 -NCIT:C162570 Localized Lung Carcinoma 6 259829 -NCIT:C183116 Lung Hyalinizing Clear Cell Carcinoma 6 259830 -NCIT:C188068 Lung Secretory Carcinoma 6 259831 -NCIT:C190952 Resectable Lung Carcinoma 6 259832 -NCIT:C165767 Resectable Lung Non-Small Cell Carcinoma 7 259833 -NCIT:C190954 Resectable Lung Adenocarcinoma 8 259834 -NCIT:C190953 Resectable Lung Squamous Cell Carcinoma 7 259835 -NCIT:C27637 Transplant-Related Lung Carcinoma 6 259836 -NCIT:C27925 Asbestos-Related Lung Carcinoma 6 259837 -NCIT:C2926 Lung Non-Small Cell Carcinoma 6 259838 -NCIT:C118814 Childhood Lung Non-Small Cell Carcinoma 7 259839 -NCIT:C133254 Lung Non-Small Cell Squamous Carcinoma 7 259840 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 259841 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 259842 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 259843 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 259844 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 8 259845 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 8 259846 -NCIT:C171612 Unresectable Lung Non-Small Cell Squamous Carcinoma 8 259847 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 259848 -NCIT:C45502 Lung Squamous Cell Carcinoma, Papillary Variant 8 259849 -NCIT:C45503 Lung Squamous Cell Carcinoma, Clear Cell Variant 8 259850 -NCIT:C135017 Lung Non-Squamous Non-Small Cell Carcinoma 7 259851 -NCIT:C128797 Recurrent Lung Non-Squamous Non-Small Cell Carcinoma 8 259852 -NCIT:C128798 Metastatic Lung Non-Squamous Non-Small Cell Carcinoma 8 259853 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 259854 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 259855 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 259856 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 259857 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 259858 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 259859 -NCIT:C155908 Metastatic Lung Adenocarcinoma 9 259860 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 259861 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 259862 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 9 259863 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 259864 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 259865 -NCIT:C162642 Unresectable Lung Non-Squamous Non-Small Cell Carcinoma 8 259866 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 9 259867 -NCIT:C176858 Refractory Lung Non-Squamous Non-Small Cell Carcinoma 8 259868 -NCIT:C136491 Lung Non-Small Cell Cancer by AJCC v7 Stage 7 259869 -NCIT:C136490 Lung Adenocarcinoma by AJCC v7 Stage 8 259870 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 9 259871 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 9 259872 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 259873 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 259874 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 9 259875 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 259876 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 259877 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 9 259878 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 259879 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 259880 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 9 259881 -NCIT:C136492 Lung Adenosquamous Carcinoma by AJCC v7 Stage 8 259882 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 9 259883 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 9 259884 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 259885 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 259886 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 9 259887 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 259888 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 259889 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 9 259890 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 259891 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 259892 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 9 259893 -NCIT:C136493 Lung Large Cell Carcinoma by AJCC v7 Stage 8 259894 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 9 259895 -NCIT:C6660 Stage II Lung Large Cell Carcinoma AJCC v7 9 259896 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 259897 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 259898 -NCIT:C8755 Stage I Lung Large Cell Carcinoma AJCC v7 9 259899 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 259900 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 259901 -NCIT:C8756 Stage IV Lung Large Cell Carcinoma AJCC v7 9 259902 -NCIT:C9257 Stage III Lung Large Cell Carcinoma AJCC v7 9 259903 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 259904 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 259905 -NCIT:C4012 Stage IV Lung Non-Small Cell Cancer AJCC v7 8 259906 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 9 259907 -NCIT:C8756 Stage IV Lung Large Cell Carcinoma AJCC v7 9 259908 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 9 259909 -NCIT:C6671 Stage I Lung Non-Small Cell Cancer AJCC v7 8 259910 -NCIT:C5652 Stage IA Lung Non-Small Cell Carcinoma AJCC v7 9 259911 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 259912 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 259913 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 259914 -NCIT:C5653 Stage IB Lung Non-Small Cell Carcinoma AJCC v7 9 259915 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 259916 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 259917 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 259918 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 9 259919 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 259920 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 259921 -NCIT:C8755 Stage I Lung Large Cell Carcinoma AJCC v7 9 259922 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 259923 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 259924 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 9 259925 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 259926 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 259927 -NCIT:C7777 Stage II Lung Non-Small Cell Cancer AJCC v7 8 259928 -NCIT:C5654 Stage IIB Lung Non-Small Cell Carcinoma AJCC v7 9 259929 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 259930 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 259931 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 259932 -NCIT:C5655 Stage IIA Lung Non-Small Cell Carcinoma AJCC v7 9 259933 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 259934 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 259935 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 259936 -NCIT:C6660 Stage II Lung Large Cell Carcinoma AJCC v7 9 259937 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 259938 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 259939 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 9 259940 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 259941 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 259942 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 9 259943 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 259944 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 259945 -NCIT:C7778 Stage III Lung Non-Small Cell Cancer AJCC v7 8 259946 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 9 259947 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 259948 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 259949 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 9 259950 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 259951 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 259952 -NCIT:C9102 Stage IIIA Lung Non-Small Cell Cancer AJCC v7 9 259953 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 259954 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 259955 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 259956 -NCIT:C9103 Stage IIIB Lung Non-Small Cell Cancer AJCC v7 9 259957 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 259958 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 259959 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 259960 -NCIT:C9257 Stage III Lung Large Cell Carcinoma AJCC v7 9 259961 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 259962 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 259963 -NCIT:C9104 Stage 0 Lung Non-Small Cell Cancer AJCC v6 and v7 8 259964 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 9 259965 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 9 259966 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 9 259967 -NCIT:C153081 Refractory Lung Non-Small Cell Carcinoma 7 259968 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 8 259969 -NCIT:C176858 Refractory Lung Non-Squamous Non-Small Cell Carcinoma 8 259970 -NCIT:C179209 Refractory Lung Adenocarcinoma 8 259971 -NCIT:C155901 Unresectable Lung Non-Small Cell Carcinoma 7 259972 -NCIT:C162642 Unresectable Lung Non-Squamous Non-Small Cell Carcinoma 8 259973 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 9 259974 -NCIT:C171612 Unresectable Lung Non-Small Cell Squamous Carcinoma 8 259975 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 259976 -NCIT:C174510 Unresectable Lung Adenocarcinoma 8 259977 -NCIT:C156094 Metastatic Lung Non-Small Cell Carcinoma 7 259978 -NCIT:C128798 Metastatic Lung Non-Squamous Non-Small Cell Carcinoma 8 259979 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 259980 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 259981 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 259982 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 259983 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 259984 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 259985 -NCIT:C155908 Metastatic Lung Adenocarcinoma 9 259986 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 259987 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 259988 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 9 259989 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 259990 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 259991 -NCIT:C156093 Metastatic Lung Adenosquamous Carcinoma 8 259992 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 259993 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 259994 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 259995 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 259996 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 259997 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 259998 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 8 259999 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 260000 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 260001 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 260002 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 260003 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 260004 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 260005 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 8 260006 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 260007 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 260008 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 260009 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 260010 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 260011 -NCIT:C165767 Resectable Lung Non-Small Cell Carcinoma 7 260012 -NCIT:C190954 Resectable Lung Adenocarcinoma 8 260013 -NCIT:C3512 Lung Adenocarcinoma 7 260014 -NCIT:C136486 Lung Adenocarcinoma In Situ 8 260015 -NCIT:C136716 Lung Non-Mucinous Adenocarcinoma In Situ 9 260016 -NCIT:C136717 Lung Mucinous Adenocarcinoma In Situ 9 260017 -NCIT:C136490 Lung Adenocarcinoma by AJCC v7 Stage 8 260018 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 9 260019 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 9 260020 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 260021 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 260022 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 9 260023 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 260024 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 260025 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 9 260026 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 260027 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 260028 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 9 260029 -NCIT:C136709 Invasive Lung Mucinous Adenocarcinoma 8 260030 -NCIT:C136710 Lung Enteric Adenocarcinoma 8 260031 -NCIT:C155908 Metastatic Lung Adenocarcinoma 8 260032 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 9 260033 -NCIT:C176727 Advanced Lung Adenocarcinoma 9 260034 -NCIT:C174510 Unresectable Lung Adenocarcinoma 8 260035 -NCIT:C179209 Refractory Lung Adenocarcinoma 8 260036 -NCIT:C183109 Invasive Lung Non-Mucinous Adenocarcinoma 8 260037 -NCIT:C123160 Lepidic Adenocarcinoma 9 260038 -NCIT:C5649 Lung Acinar Adenocarcinoma 9 260039 -NCIT:C5650 Lung Papillary Adenocarcinoma 9 260040 -NCIT:C128847 Lung Micropapillary Adenocarcinoma 10 260041 -NCIT:C5651 Solid Lung Adenocarcinoma 9 260042 -NCIT:C190954 Resectable Lung Adenocarcinoma 8 260043 -NCIT:C2923 Minimally Invasive Lung Adenocarcinoma 8 260044 -NCIT:C7268 Minimally Invasive Lung Mucinous Adenocarcinoma 9 260045 -NCIT:C7269 Minimally Invasive Lung Non-Mucinous Adenocarcinoma 9 260046 -NCIT:C7270 Minimally Invasive Lung Mixed Non-Mucinous and Mucinous Adenocarcinoma 9 260047 -NCIT:C45509 Lung Fetal Adenocarcinoma 8 260048 -NCIT:C45512 Lung Colloid Adenocarcinoma 8 260049 -NCIT:C6699 Occult Lung Adenocarcinoma 8 260050 -NCIT:C8757 Recurrent Lung Adenocarcinoma 8 260051 -NCIT:C4450 Lung Large Cell Carcinoma 7 260052 -NCIT:C136493 Lung Large Cell Carcinoma by AJCC v7 Stage 8 260053 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 9 260054 -NCIT:C6660 Stage II Lung Large Cell Carcinoma AJCC v7 9 260055 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 260056 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 260057 -NCIT:C8755 Stage I Lung Large Cell Carcinoma AJCC v7 9 260058 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 260059 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 260060 -NCIT:C8756 Stage IV Lung Large Cell Carcinoma AJCC v7 9 260061 -NCIT:C9257 Stage III Lung Large Cell Carcinoma AJCC v7 9 260062 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 260063 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 260064 -NCIT:C4451 Lung Large Cell Carcinoma, Clear Cell Variant 8 260065 -NCIT:C6685 Occult Lung Large Cell Carcinoma 8 260066 -NCIT:C6876 Lung Large Cell Carcinoma with Rhabdoid Phenotype 8 260067 -NCIT:C7266 Lung Basaloid Large Cell Carcinoma 8 260068 -NCIT:C8753 Recurrent Lung Large Cell Carcinoma 8 260069 -NCIT:C45519 Lung Lymphoepithelial Carcinoma 7 260070 -NCIT:C45540 Lung Sarcomatoid Carcinoma 7 260071 -NCIT:C3732 Pulmonary Blastoma 8 260072 -NCIT:C4452 Lung Giant Cell Carcinoma 8 260073 -NCIT:C45541 Lung Spindle Cell Carcinoma 8 260074 -NCIT:C45542 Lung Pleomorphic Carcinoma 8 260075 -NCIT:C45543 Lung Carcinosarcoma 8 260076 -NCIT:C7783 Recurrent Lung Non-Small Cell Carcinoma 7 260077 -NCIT:C128797 Recurrent Lung Non-Squamous Non-Small Cell Carcinoma 8 260078 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 8 260079 -NCIT:C190195 Locally Recurrent Lung Non-Small Cell Carcinoma 8 260080 -NCIT:C8747 Recurrent Lung Adenosquamous Carcinoma 8 260081 -NCIT:C8753 Recurrent Lung Large Cell Carcinoma 8 260082 -NCIT:C8757 Recurrent Lung Adenocarcinoma 8 260083 -NCIT:C9038 Occult Lung Non-Small Cell Carcinoma 7 260084 -NCIT:C6684 Occult Lung Adenosquamous Carcinoma 8 260085 -NCIT:C6685 Occult Lung Large Cell Carcinoma 8 260086 -NCIT:C6699 Occult Lung Adenocarcinoma 8 260087 -NCIT:C9133 Lung Adenosquamous Carcinoma 7 260088 -NCIT:C136492 Lung Adenosquamous Carcinoma by AJCC v7 Stage 8 260089 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 9 260090 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 9 260091 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 260092 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 260093 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 9 260094 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 260095 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 260096 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 9 260097 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 260098 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 260099 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 9 260100 -NCIT:C156093 Metastatic Lung Adenosquamous Carcinoma 8 260101 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 260102 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 260103 -NCIT:C6684 Occult Lung Adenosquamous Carcinoma 8 260104 -NCIT:C8747 Recurrent Lung Adenosquamous Carcinoma 8 260105 -NCIT:C3493 Lung Squamous Cell Carcinoma 6 260106 -NCIT:C133254 Lung Non-Small Cell Squamous Carcinoma 7 260107 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 260108 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 260109 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 260110 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 260111 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 8 260112 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 8 260113 -NCIT:C171612 Unresectable Lung Non-Small Cell Squamous Carcinoma 8 260114 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 260115 -NCIT:C45502 Lung Squamous Cell Carcinoma, Papillary Variant 8 260116 -NCIT:C45503 Lung Squamous Cell Carcinoma, Clear Cell Variant 8 260117 -NCIT:C136494 Lung Squamous Cell Carcinoma by AJCC v7 Stage 7 260118 -NCIT:C8763 Stage 0 Lung Squamous Cell Carcinoma AJCC v6 and v7 8 260119 -NCIT:C8764 Stage I Lung Squamous Cell Carcinoma AJCC v7 8 260120 -NCIT:C6687 Stage IA Lung Squamous Cell Carcinoma AJCC v7 9 260121 -NCIT:C6692 Stage IB Lung Squamous Cell Carcinoma AJCC v7 9 260122 -NCIT:C8765 Stage II Lung Squamous Cell Carcinoma AJCC v7 8 260123 -NCIT:C6688 Stage IIA Lung Squamous Cell Carcinoma AJCC v7 9 260124 -NCIT:C6691 Stage IIB Lung Squamous Cell Carcinoma AJCC v7 9 260125 -NCIT:C8766 Stage III Lung Squamous Cell Carcinoma AJCC v7 8 260126 -NCIT:C6689 Stage IIIA Lung Squamous Cell Carcinoma AJCC v7 9 260127 -NCIT:C6690 Stage IIIB Lung Squamous Cell Carcinoma AJCC v7 9 260128 -NCIT:C8767 Stage IV Lung Squamous Cell Carcinoma AJCC v7 8 260129 -NCIT:C136713 Lung Keratinizing Squamous Cell Carcinoma 7 260130 -NCIT:C136714 Lung Non-Keratinizing Squamous Cell Carcinoma 7 260131 -NCIT:C136719 Lung Squamous Cell Carcinoma In Situ 7 260132 -NCIT:C8763 Stage 0 Lung Squamous Cell Carcinoma AJCC v6 and v7 8 260133 -NCIT:C156092 Metastatic Lung Squamous Cell Carcinoma 7 260134 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 260135 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 260136 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 260137 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 260138 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 260139 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 260140 -NCIT:C173331 Refractory Lung Squamous Cell Carcinoma 7 260141 -NCIT:C171609 Refractory Lung Non-Small Cell Squamous Carcinoma 8 260142 -NCIT:C190953 Resectable Lung Squamous Cell Carcinoma 7 260143 -NCIT:C45504 Lung Squamous Cell Carcinoma, Small Cell Variant 7 260144 -NCIT:C45507 Lung Basaloid Squamous Cell Carcinoma 7 260145 -NCIT:C5014 Recurrent Lung Squamous Cell Carcinoma 7 260146 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 8 260147 -NCIT:C6686 Occult Lung Squamous Cell Carcinoma 7 260148 -NCIT:C35875 Bronchogenic Carcinoma 6 260149 -NCIT:C180922 Advanced Bronchogenic Carcinoma 7 260150 -NCIT:C180923 Recurrent Bronchogenic Carcinoma 7 260151 -NCIT:C7779 Superior Sulcus Lung Carcinoma 7 260152 -NCIT:C45544 Lung Mucoepidermoid Carcinoma 6 260153 -NCIT:C45545 Lung Epithelial-Myoepithelial Carcinoma 6 260154 -NCIT:C45569 Lung Neuroendocrine Carcinoma 6 260155 -NCIT:C4917 Lung Small Cell Carcinoma 7 260156 -NCIT:C118815 Childhood Lung Small Cell Carcinoma 8 260157 -NCIT:C136496 Lung Small Cell Carcinoma by AJCC v7 Stage 8 260158 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 9 260159 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 10 260160 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 10 260161 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 9 260162 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 10 260163 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 10 260164 -NCIT:C6679 Stage III Lung Small Cell Carcinoma AJCC v7 9 260165 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 10 260166 -NCIT:C6681 Stage IIIB Lung Small Cell Carcinoma AJCC v7 10 260167 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 11 260168 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 11 260169 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 9 260170 -NCIT:C150581 Refractory Lung Small Cell Carcinoma 8 260171 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 9 260172 -NCIT:C158493 Platinum-Resistant Lung Small Cell Carcinoma 9 260173 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 8 260174 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 9 260175 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 260176 -NCIT:C158495 Platinum-Sensitive Lung Small Cell Carcinoma 8 260177 -NCIT:C160295 Unresectable Lung Small Cell Carcinoma 8 260178 -NCIT:C188753 Lung Small Cell Carcinoma Neuroendocrine Subtype 8 260179 -NCIT:C188754 Lung Small Cell Carcinoma, Neuroendocrine-High Subtype 9 260180 -NCIT:C188755 Lung Small Cell Carcinoma, Neuroendocrine-Low Subtype 9 260181 -NCIT:C188756 Lung Small Cell Carcinoma Molecular Subtypes 8 260182 -NCIT:C188761 Lung Small Cell Carcinoma, A Subtype 9 260183 -NCIT:C188762 Lung Small Cell Carcinoma, N Subtype 9 260184 -NCIT:C188763 Lung Small Cell Carcinoma, P Subtype 9 260185 -NCIT:C188765 Lung Small Cell Carcinoma, I Subtype 9 260186 -NCIT:C188766 Lung Small Cell Carcinoma, Y Subtype 9 260187 -NCIT:C6683 Occult Lung Small Cell Carcinoma 8 260188 -NCIT:C7853 Limited Stage Lung Small Cell Carcinoma 8 260189 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 9 260190 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 9 260191 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 10 260192 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 10 260193 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 9 260194 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 10 260195 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 10 260196 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 9 260197 -NCIT:C9049 Extensive Stage Lung Small Cell Carcinoma 8 260198 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 9 260199 -NCIT:C141078 Refractory Extensive Stage Lung Small Cell Carcinoma 9 260200 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 9 260201 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 9 260202 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 8 260203 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 9 260204 -NCIT:C9137 Combined Lung Small Cell Carcinoma 8 260205 -NCIT:C9379 Combined Lung Small Cell Carcinoma and Lung Adenocarcinoma 9 260206 -NCIT:C9423 Combined Lung Small Cell and Squamous Cell Carcinoma 9 260207 -NCIT:C5672 Lung Large Cell Neuroendocrine Carcinoma 7 260208 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 8 260209 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 260210 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 260211 -NCIT:C187162 Unresectable Lung Large Cell Neuroendocrine Carcinoma 8 260212 -NCIT:C7267 Combined Lung Large Cell Neuroendocrine Carcinoma 8 260213 -NCIT:C7591 Combined Lung Carcinoma 7 260214 -NCIT:C7267 Combined Lung Large Cell Neuroendocrine Carcinoma 8 260215 -NCIT:C9137 Combined Lung Small Cell Carcinoma 8 260216 -NCIT:C9379 Combined Lung Small Cell Carcinoma and Lung Adenocarcinoma 9 260217 -NCIT:C9423 Combined Lung Small Cell and Squamous Cell Carcinoma 9 260218 -NCIT:C5641 Occult Lung Carcinoma 6 260219 -NCIT:C136468 Occult Lung Cancer AJCC v8 7 260220 -NCIT:C6683 Occult Lung Small Cell Carcinoma 7 260221 -NCIT:C6686 Occult Lung Squamous Cell Carcinoma 7 260222 -NCIT:C9038 Occult Lung Non-Small Cell Carcinoma 7 260223 -NCIT:C6684 Occult Lung Adenosquamous Carcinoma 8 260224 -NCIT:C6685 Occult Lung Large Cell Carcinoma 8 260225 -NCIT:C6699 Occult Lung Adenocarcinoma 8 260226 -NCIT:C5666 Lung Adenoid Cystic Carcinoma 6 260227 -NCIT:C7454 Lung Hilum Carcinoma 6 260228 -NCIT:C8953 Recurrent Lung Carcinoma 6 260229 -NCIT:C180923 Recurrent Bronchogenic Carcinoma 7 260230 -NCIT:C5014 Recurrent Lung Squamous Cell Carcinoma 7 260231 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 8 260232 -NCIT:C7783 Recurrent Lung Non-Small Cell Carcinoma 7 260233 -NCIT:C128797 Recurrent Lung Non-Squamous Non-Small Cell Carcinoma 8 260234 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 8 260235 -NCIT:C190195 Locally Recurrent Lung Non-Small Cell Carcinoma 8 260236 -NCIT:C8747 Recurrent Lung Adenosquamous Carcinoma 8 260237 -NCIT:C8753 Recurrent Lung Large Cell Carcinoma 8 260238 -NCIT:C8757 Recurrent Lung Adenocarcinoma 8 260239 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 7 260240 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 8 260241 -NCIT:C90519 Lung Cancer by AJCC v6 Stage 6 260242 -NCIT:C27467 Stage 0 Lung Cancer AJCC v6 and v7 7 260243 -NCIT:C9104 Stage 0 Lung Non-Small Cell Cancer AJCC v6 and v7 8 260244 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 9 260245 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 9 260246 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 9 260247 -NCIT:C8772 Stage I Lung Cancer AJCC v6 7 260248 -NCIT:C8773 Stage III Lung Cancer AJCC v6 7 260249 -NCIT:C8774 Stage IV Lung Cancer AJCC v6 7 260250 -NCIT:C8954 Stage II Lung Cancer AJCC v6 7 260251 -NCIT:C91232 Lung Cancer by AJCC v7 Stage 6 260252 -NCIT:C136491 Lung Non-Small Cell Cancer by AJCC v7 Stage 7 260253 -NCIT:C136490 Lung Adenocarcinoma by AJCC v7 Stage 8 260254 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 9 260255 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 9 260256 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 260257 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 260258 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 9 260259 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 260260 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 260261 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 9 260262 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 260263 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 260264 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 9 260265 -NCIT:C136492 Lung Adenosquamous Carcinoma by AJCC v7 Stage 8 260266 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 9 260267 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 9 260268 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 260269 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 260270 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 9 260271 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 260272 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 260273 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 9 260274 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 260275 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 260276 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 9 260277 -NCIT:C136493 Lung Large Cell Carcinoma by AJCC v7 Stage 8 260278 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 9 260279 -NCIT:C6660 Stage II Lung Large Cell Carcinoma AJCC v7 9 260280 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 260281 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 260282 -NCIT:C8755 Stage I Lung Large Cell Carcinoma AJCC v7 9 260283 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 260284 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 260285 -NCIT:C8756 Stage IV Lung Large Cell Carcinoma AJCC v7 9 260286 -NCIT:C9257 Stage III Lung Large Cell Carcinoma AJCC v7 9 260287 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 260288 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 260289 -NCIT:C4012 Stage IV Lung Non-Small Cell Cancer AJCC v7 8 260290 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 9 260291 -NCIT:C8756 Stage IV Lung Large Cell Carcinoma AJCC v7 9 260292 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 9 260293 -NCIT:C6671 Stage I Lung Non-Small Cell Cancer AJCC v7 8 260294 -NCIT:C5652 Stage IA Lung Non-Small Cell Carcinoma AJCC v7 9 260295 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 260296 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 260297 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 260298 -NCIT:C5653 Stage IB Lung Non-Small Cell Carcinoma AJCC v7 9 260299 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 260300 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 260301 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 260302 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 9 260303 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 260304 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 260305 -NCIT:C8755 Stage I Lung Large Cell Carcinoma AJCC v7 9 260306 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 260307 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 260308 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 9 260309 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 260310 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 260311 -NCIT:C7777 Stage II Lung Non-Small Cell Cancer AJCC v7 8 260312 -NCIT:C5654 Stage IIB Lung Non-Small Cell Carcinoma AJCC v7 9 260313 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 260314 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 260315 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 260316 -NCIT:C5655 Stage IIA Lung Non-Small Cell Carcinoma AJCC v7 9 260317 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 260318 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 260319 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 260320 -NCIT:C6660 Stage II Lung Large Cell Carcinoma AJCC v7 9 260321 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 260322 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 260323 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 9 260324 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 260325 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 260326 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 9 260327 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 260328 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 260329 -NCIT:C7778 Stage III Lung Non-Small Cell Cancer AJCC v7 8 260330 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 9 260331 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 260332 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 260333 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 9 260334 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 260335 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 260336 -NCIT:C9102 Stage IIIA Lung Non-Small Cell Cancer AJCC v7 9 260337 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 260338 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 260339 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 260340 -NCIT:C9103 Stage IIIB Lung Non-Small Cell Cancer AJCC v7 9 260341 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 260342 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 260343 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 260344 -NCIT:C9257 Stage III Lung Large Cell Carcinoma AJCC v7 9 260345 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 260346 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 260347 -NCIT:C9104 Stage 0 Lung Non-Small Cell Cancer AJCC v6 and v7 8 260348 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 9 260349 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 9 260350 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 9 260351 -NCIT:C136494 Lung Squamous Cell Carcinoma by AJCC v7 Stage 7 260352 -NCIT:C8763 Stage 0 Lung Squamous Cell Carcinoma AJCC v6 and v7 8 260353 -NCIT:C8764 Stage I Lung Squamous Cell Carcinoma AJCC v7 8 260354 -NCIT:C6687 Stage IA Lung Squamous Cell Carcinoma AJCC v7 9 260355 -NCIT:C6692 Stage IB Lung Squamous Cell Carcinoma AJCC v7 9 260356 -NCIT:C8765 Stage II Lung Squamous Cell Carcinoma AJCC v7 8 260357 -NCIT:C6688 Stage IIA Lung Squamous Cell Carcinoma AJCC v7 9 260358 -NCIT:C6691 Stage IIB Lung Squamous Cell Carcinoma AJCC v7 9 260359 -NCIT:C8766 Stage III Lung Squamous Cell Carcinoma AJCC v7 8 260360 -NCIT:C6689 Stage IIIA Lung Squamous Cell Carcinoma AJCC v7 9 260361 -NCIT:C6690 Stage IIIB Lung Squamous Cell Carcinoma AJCC v7 9 260362 -NCIT:C8767 Stage IV Lung Squamous Cell Carcinoma AJCC v7 8 260363 -NCIT:C136496 Lung Small Cell Carcinoma by AJCC v7 Stage 7 260364 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 8 260365 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 9 260366 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 9 260367 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 8 260368 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 9 260369 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 9 260370 -NCIT:C6679 Stage III Lung Small Cell Carcinoma AJCC v7 8 260371 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 9 260372 -NCIT:C6681 Stage IIIB Lung Small Cell Carcinoma AJCC v7 9 260373 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 10 260374 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 10 260375 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 8 260376 -NCIT:C27467 Stage 0 Lung Cancer AJCC v6 and v7 7 260377 -NCIT:C9104 Stage 0 Lung Non-Small Cell Cancer AJCC v6 and v7 8 260378 -NCIT:C35758 Stage 0 Lung Large Cell Carcinoma AJCC v6 and v7 9 260379 -NCIT:C8748 Stage 0 Lung Adenosquamous Carcinoma AJCC v6 and v7 9 260380 -NCIT:C8758 Stage 0 Lung Adenocarcinoma AJCC v6 and v7 9 260381 -NCIT:C88888 Stage I Lung Cancer AJCC v7 7 260382 -NCIT:C5642 Stage IA Lung Cancer AJCC v7 8 260383 -NCIT:C5652 Stage IA Lung Non-Small Cell Carcinoma AJCC v7 9 260384 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 260385 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 260386 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 260387 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 9 260388 -NCIT:C6687 Stage IA Lung Squamous Cell Carcinoma AJCC v7 9 260389 -NCIT:C5643 Stage IB Lung Cancer AJCC v7 8 260390 -NCIT:C5653 Stage IB Lung Non-Small Cell Carcinoma AJCC v7 9 260391 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 260392 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 260393 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 260394 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 9 260395 -NCIT:C6692 Stage IB Lung Squamous Cell Carcinoma AJCC v7 9 260396 -NCIT:C6671 Stage I Lung Non-Small Cell Cancer AJCC v7 8 260397 -NCIT:C5652 Stage IA Lung Non-Small Cell Carcinoma AJCC v7 9 260398 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 260399 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 260400 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 260401 -NCIT:C5653 Stage IB Lung Non-Small Cell Carcinoma AJCC v7 9 260402 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 260403 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 260404 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 260405 -NCIT:C8749 Stage I Lung Adenosquamous Carcinoma AJCC v7 9 260406 -NCIT:C6668 Stage IA Lung Adenosquamous Carcinoma AJCC v7 10 260407 -NCIT:C6669 Stage IB Lung Adenosquamous Carcinoma AJCC v7 10 260408 -NCIT:C8755 Stage I Lung Large Cell Carcinoma AJCC v7 9 260409 -NCIT:C6661 Stage IA Lung Large Cell Carcinoma AJCC v7 10 260410 -NCIT:C6662 Stage IB Lung Large Cell Carcinoma AJCC v7 10 260411 -NCIT:C8759 Stage I Lung Adenocarcinoma AJCC v7 9 260412 -NCIT:C6693 Stage IB Lung Adenocarcinoma AJCC v7 10 260413 -NCIT:C6694 Stage IA Lung Adenocarcinoma AJCC v7 10 260414 -NCIT:C6673 Stage I Lung Small Cell Carcinoma AJCC v7 8 260415 -NCIT:C6674 Stage IA Lung Small Cell Carcinoma AJCC v7 9 260416 -NCIT:C6675 Stage IB Lung Small Cell Carcinoma AJCC v7 9 260417 -NCIT:C8764 Stage I Lung Squamous Cell Carcinoma AJCC v7 8 260418 -NCIT:C6687 Stage IA Lung Squamous Cell Carcinoma AJCC v7 9 260419 -NCIT:C6692 Stage IB Lung Squamous Cell Carcinoma AJCC v7 9 260420 -NCIT:C88889 Stage II Lung Cancer AJCC v7 7 260421 -NCIT:C5644 Stage IIA Lung Cancer AJCC v7 8 260422 -NCIT:C5655 Stage IIA Lung Non-Small Cell Carcinoma AJCC v7 9 260423 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 260424 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 260425 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 260426 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 9 260427 -NCIT:C6688 Stage IIA Lung Squamous Cell Carcinoma AJCC v7 9 260428 -NCIT:C5645 Stage IIB Lung Cancer AJCC v7 8 260429 -NCIT:C5654 Stage IIB Lung Non-Small Cell Carcinoma AJCC v7 9 260430 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 260431 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 260432 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 260433 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 9 260434 -NCIT:C6691 Stage IIB Lung Squamous Cell Carcinoma AJCC v7 9 260435 -NCIT:C6678 Stage II Lung Small Cell Carcinoma AJCC v7 8 260436 -NCIT:C6676 Stage IIB Lung Small Cell Carcinoma AJCC v7 9 260437 -NCIT:C6677 Stage IIA Lung Small Cell Carcinoma AJCC v7 9 260438 -NCIT:C7777 Stage II Lung Non-Small Cell Cancer AJCC v7 8 260439 -NCIT:C5654 Stage IIB Lung Non-Small Cell Carcinoma AJCC v7 9 260440 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 260441 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 260442 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 260443 -NCIT:C5655 Stage IIA Lung Non-Small Cell Carcinoma AJCC v7 9 260444 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 260445 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 260446 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 260447 -NCIT:C6660 Stage II Lung Large Cell Carcinoma AJCC v7 9 260448 -NCIT:C6663 Stage IIB Lung Large Cell Carcinoma AJCC v7 10 260449 -NCIT:C6666 Stage IIA Lung Large Cell Carcinoma AJCC v7 10 260450 -NCIT:C8750 Stage II Lung Adenosquamous Carcinoma AJCC v7 9 260451 -NCIT:C6667 Stage IIA Lung Adenosquamous Carcinoma AJCC v7 10 260452 -NCIT:C6670 Stage IIB Lung Adenosquamous Carcinoma AJCC v7 10 260453 -NCIT:C8760 Stage II Lung Adenocarcinoma AJCC v7 9 260454 -NCIT:C6695 Stage IIA Lung Adenocarcinoma AJCC v7 10 260455 -NCIT:C6696 Stage IIB Lung Adenocarcinoma AJCC v7 10 260456 -NCIT:C8765 Stage II Lung Squamous Cell Carcinoma AJCC v7 8 260457 -NCIT:C6688 Stage IIA Lung Squamous Cell Carcinoma AJCC v7 9 260458 -NCIT:C6691 Stage IIB Lung Squamous Cell Carcinoma AJCC v7 9 260459 -NCIT:C88890 Stage III Lung Cancer AJCC v7 7 260460 -NCIT:C5646 Stage IIIA Lung Cancer AJCC v7 8 260461 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 9 260462 -NCIT:C6689 Stage IIIA Lung Squamous Cell Carcinoma AJCC v7 9 260463 -NCIT:C9102 Stage IIIA Lung Non-Small Cell Cancer AJCC v7 9 260464 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 260465 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 260466 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 260467 -NCIT:C5647 Stage IIIB Lung Cancer AJCC v7 8 260468 -NCIT:C6681 Stage IIIB Lung Small Cell Carcinoma AJCC v7 9 260469 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 10 260470 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 10 260471 -NCIT:C6690 Stage IIIB Lung Squamous Cell Carcinoma AJCC v7 9 260472 -NCIT:C9103 Stage IIIB Lung Non-Small Cell Cancer AJCC v7 9 260473 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 260474 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 260475 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 260476 -NCIT:C6679 Stage III Lung Small Cell Carcinoma AJCC v7 8 260477 -NCIT:C6680 Stage IIIA Lung Small Cell Carcinoma AJCC v7 9 260478 -NCIT:C6681 Stage IIIB Lung Small Cell Carcinoma AJCC v7 9 260479 -NCIT:C35756 Stage IIIB Lung Small Cell Carcinoma with Pleural Effusion AJCC v7 10 260480 -NCIT:C35757 Stage IIIB Lung Small Cell Carcinoma without Pleural Effusion AJCC v7 10 260481 -NCIT:C7778 Stage III Lung Non-Small Cell Cancer AJCC v7 8 260482 -NCIT:C8751 Stage III Lung Adenosquamous Carcinoma AJCC v7 9 260483 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 260484 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 260485 -NCIT:C8761 Stage III Lung Adenocarcinoma AJCC v7 9 260486 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 260487 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 260488 -NCIT:C9102 Stage IIIA Lung Non-Small Cell Cancer AJCC v7 9 260489 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 260490 -NCIT:C6698 Stage IIIA Lung Adenocarcinoma AJCC v7 10 260491 -NCIT:C8951 Stage IIIA Lung Adenosquamous Carcinoma AJCC v7 10 260492 -NCIT:C9103 Stage IIIB Lung Non-Small Cell Cancer AJCC v7 9 260493 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 260494 -NCIT:C6697 Stage IIIB Lung Adenocarcinoma AJCC v7 10 260495 -NCIT:C8952 Stage IIIB Lung Adenosquamous Carcinoma AJCC v7 10 260496 -NCIT:C9257 Stage III Lung Large Cell Carcinoma AJCC v7 9 260497 -NCIT:C6664 Stage IIIB Lung Large Cell Carcinoma AJCC v7 10 260498 -NCIT:C6665 Stage IIIA Lung Large Cell Carcinoma AJCC v7 10 260499 -NCIT:C8766 Stage III Lung Squamous Cell Carcinoma AJCC v7 8 260500 -NCIT:C6689 Stage IIIA Lung Squamous Cell Carcinoma AJCC v7 9 260501 -NCIT:C6690 Stage IIIB Lung Squamous Cell Carcinoma AJCC v7 9 260502 -NCIT:C88891 Stage IV Lung Cancer AJCC v7 7 260503 -NCIT:C4012 Stage IV Lung Non-Small Cell Cancer AJCC v7 8 260504 -NCIT:C8752 Stage IV Lung Adenosquamous Carcinoma AJCC v7 9 260505 -NCIT:C8756 Stage IV Lung Large Cell Carcinoma AJCC v7 9 260506 -NCIT:C8762 Stage IV Lung Adenocarcinoma AJCC v7 9 260507 -NCIT:C6682 Stage IV Lung Small Cell Carcinoma AJCC v7 8 260508 -NCIT:C8767 Stage IV Lung Squamous Cell Carcinoma AJCC v7 8 260509 -NCIT:C7527 Malignant Superior Sulcus Neoplasm 5 260510 -NCIT:C7779 Superior Sulcus Lung Carcinoma 6 260511 -NCIT:C9346 Malignant Tracheal Neoplasm 4 260512 -NCIT:C4887 Metastatic Malignant Neoplasm in the Trachea 5 260513 -NCIT:C6050 Tracheal Sarcoma 5 260514 -NCIT:C6248 Tracheal Lymphoma 5 260515 -NCIT:C9347 Tracheal Carcinoma 5 260516 -NCIT:C4448 Tracheal Squamous Cell Carcinoma 6 260517 -NCIT:C3639 Tracheal Carcinoma In Situ 7 260518 -NCIT:C6051 Tracheal Adenoid Cystic Carcinoma 6 260519 -NCIT:C46080 Nonestrogen-Dependent Malignant Neoplasm 3 260520 -NCIT:C4767 Malignant Eye Neoplasm 3 260521 -NCIT:C175308 Malignant Lacrimal System Neoplasm 4 260522 -NCIT:C175319 Malignant Lacrimal Drainage System Neoplasm 5 260523 -NCIT:C175330 Metastatic Malignant Neoplasm in the Lacrimal Drainage System 6 260524 -NCIT:C175337 Lacrimal Drainage System Carcinoma 6 260525 -NCIT:C175336 Lacrimal Drainage System Adenocarcinoma 7 260526 -NCIT:C175339 Lacrimal Drainage System Mucoepidermoid Carcinoma 7 260527 -NCIT:C175340 Lacrimal Drainage System Adenoid Cystic Carcinoma 7 260528 -NCIT:C175344 Lacrimal Drainage System Lymphoepithelial Carcinoma 7 260529 -NCIT:C6092 Lacrimal Drainage System Squamous Cell Carcinoma 7 260530 -NCIT:C175335 Lacrimal Drainage System Non-Keratinizing Squamous Cell Carcinoma 8 260531 -NCIT:C175345 Lacrimal Drainage System Melanoma 6 260532 -NCIT:C175481 Lacrimal Drainage System Non-Hodgkin Lymphoma 6 260533 -NCIT:C175484 Lacrimal Drainage System Mucosa-Associated Lymphoid Tissue Lymphoma 7 260534 -NCIT:C175487 Lacrimal Drainage System Diffuse Large B-Cell Lymphoma 7 260535 -NCIT:C3567 Malignant Nasolacrimal Duct Neoplasm 6 260536 -NCIT:C175327 Metastatic Malignant Neoplasm in the Lacrimal System 5 260537 -NCIT:C175329 Metastatic Malignant Neoplasm in the Lacrimal Gland 6 260538 -NCIT:C175330 Metastatic Malignant Neoplasm in the Lacrimal Drainage System 6 260539 -NCIT:C175348 Lacrimal System Carcinoma 5 260540 -NCIT:C175337 Lacrimal Drainage System Carcinoma 6 260541 -NCIT:C175336 Lacrimal Drainage System Adenocarcinoma 7 260542 -NCIT:C175339 Lacrimal Drainage System Mucoepidermoid Carcinoma 7 260543 -NCIT:C175340 Lacrimal Drainage System Adenoid Cystic Carcinoma 7 260544 -NCIT:C175344 Lacrimal Drainage System Lymphoepithelial Carcinoma 7 260545 -NCIT:C6092 Lacrimal Drainage System Squamous Cell Carcinoma 7 260546 -NCIT:C175335 Lacrimal Drainage System Non-Keratinizing Squamous Cell Carcinoma 8 260547 -NCIT:C6129 Lacrimal Gland Carcinoma 6 260548 -NCIT:C175274 Lacrimal Gland Myoepithelial Carcinoma 7 260549 -NCIT:C175288 Lacrimal Gland Epithelial-Myoepithelial Carcinoma 7 260550 -NCIT:C4540 Lacrimal Gland Adenoid Cystic Carcinoma 7 260551 -NCIT:C4541 Lacrimal Gland Adenocarcinoma 7 260552 -NCIT:C175267 Lacrimal Gland Oncocytic Adenocarcinoma 8 260553 -NCIT:C175290 Lacrimal Gland Acinic Cell Carcinoma 8 260554 -NCIT:C6091 Lacrimal Gland Mucoepidermoid Carcinoma 7 260555 -NCIT:C6804 Lacrimal Gland Carcinoma ex Pleomorphic Adenoma 7 260556 -NCIT:C175479 Lacrimal System Non-Hodgkin Lymphoma 5 260557 -NCIT:C175480 Lacrimal Gland Non-Hodgkin Lymphoma 6 260558 -NCIT:C175483 Lacrimal Gland Mucosa-Associated Lymphoid Tissue Lymphoma 7 260559 -NCIT:C175486 Lacrimal Gland Diffuse Large B-Cell Lymphoma 7 260560 -NCIT:C175488 Lacrimal Gland Follicular Lymphoma 7 260561 -NCIT:C175481 Lacrimal Drainage System Non-Hodgkin Lymphoma 6 260562 -NCIT:C175484 Lacrimal Drainage System Mucosa-Associated Lymphoid Tissue Lymphoma 7 260563 -NCIT:C175487 Lacrimal Drainage System Diffuse Large B-Cell Lymphoma 7 260564 -NCIT:C175482 Lacrimal System Mucosa-Associated Lymphoid Tissue Lymphoma 6 260565 -NCIT:C175483 Lacrimal Gland Mucosa-Associated Lymphoid Tissue Lymphoma 7 260566 -NCIT:C175484 Lacrimal Drainage System Mucosa-Associated Lymphoid Tissue Lymphoma 7 260567 -NCIT:C175485 Lacrimal System Diffuse Large B-Cell Lymphoma 6 260568 -NCIT:C175486 Lacrimal Gland Diffuse Large B-Cell Lymphoma 7 260569 -NCIT:C175487 Lacrimal Drainage System Diffuse Large B-Cell Lymphoma 7 260570 -NCIT:C3563 Malignant Lacrimal Gland Neoplasm 5 260571 -NCIT:C175279 Lacrimal Gland Carcinosarcoma 6 260572 -NCIT:C175329 Metastatic Malignant Neoplasm in the Lacrimal Gland 6 260573 -NCIT:C175480 Lacrimal Gland Non-Hodgkin Lymphoma 6 260574 -NCIT:C175483 Lacrimal Gland Mucosa-Associated Lymphoid Tissue Lymphoma 7 260575 -NCIT:C175486 Lacrimal Gland Diffuse Large B-Cell Lymphoma 7 260576 -NCIT:C175488 Lacrimal Gland Follicular Lymphoma 7 260577 -NCIT:C6129 Lacrimal Gland Carcinoma 6 260578 -NCIT:C175274 Lacrimal Gland Myoepithelial Carcinoma 7 260579 -NCIT:C175288 Lacrimal Gland Epithelial-Myoepithelial Carcinoma 7 260580 -NCIT:C4540 Lacrimal Gland Adenoid Cystic Carcinoma 7 260581 -NCIT:C4541 Lacrimal Gland Adenocarcinoma 7 260582 -NCIT:C175267 Lacrimal Gland Oncocytic Adenocarcinoma 8 260583 -NCIT:C175290 Lacrimal Gland Acinic Cell Carcinoma 8 260584 -NCIT:C6091 Lacrimal Gland Mucoepidermoid Carcinoma 7 260585 -NCIT:C6804 Lacrimal Gland Carcinoma ex Pleomorphic Adenoma 7 260586 -NCIT:C3216 Malignant Retinal Neoplasm 4 260587 -NCIT:C174551 Retinal Pigment Epithelium Adenocarcinoma 5 260588 -NCIT:C4365 Primary Retinal Non-Hodgkin Lymphoma 5 260589 -NCIT:C7541 Retinoblastoma 5 260590 -NCIT:C140750 Retinoblastoma by AJCC v8 Stage 6 260591 -NCIT:C140751 Retinoblastoma by AJCC v8 Clinical Stage 7 260592 -NCIT:C140752 Clinical Stage I Retinoblastoma AJCC v8 8 260593 -NCIT:C140753 Clinical Stage II Retinoblastoma AJCC v8 8 260594 -NCIT:C140754 Clinical Stage III Retinoblastoma AJCC v8 8 260595 -NCIT:C140755 Clinical Stage IV Retinoblastoma AJCC v8 8 260596 -NCIT:C140756 Retinoblastoma by AJCC v8 Pathologic Stage 7 260597 -NCIT:C140757 Pathologic Stage I Retinoblastoma AJCC v8 8 260598 -NCIT:C140758 Pathologic Stage II Retinoblastoma AJCC v8 8 260599 -NCIT:C140759 Pathologic Stage III Retinoblastoma AJCC v8 8 260600 -NCIT:C140760 Pathologic Stage IV Retinoblastoma AJCC v8 8 260601 -NCIT:C42596 Sporadic Retinoblastoma 6 260602 -NCIT:C66813 Differentiated Retinoblastoma 6 260603 -NCIT:C66814 Undifferentiated Retinoblastoma 6 260604 -NCIT:C66815 Diffuse Retinoblastoma 6 260605 -NCIT:C7019 Trilateral Retinoblastoma 6 260606 -NCIT:C7846 Intraocular Retinoblastoma 6 260607 -NCIT:C9047 Childhood Intraocular Retinoblastoma 7 260608 -NCIT:C7848 Extraocular Retinoblastoma 6 260609 -NCIT:C9048 Childhood Extraocular Retinoblastoma 7 260610 -NCIT:C7849 Recurrent Retinoblastoma 6 260611 -NCIT:C8495 Hereditary Retinoblastoma 6 260612 -NCIT:C8713 Bilateral Retinoblastoma 6 260613 -NCIT:C8714 Unilateral Retinoblastoma 6 260614 -NCIT:C8555 Metastatic Malignant Neoplasm in the Retina 5 260615 -NCIT:C8601 Retinal Melanoma 5 260616 -NCIT:C3564 Malignant Conjunctival Neoplasm 4 260617 -NCIT:C174403 Conjunctival Carcinoma 5 260618 -NCIT:C174402 Conjunctival Adenosquamous Carcinoma 6 260619 -NCIT:C174404 Conjunctival Sebaceous Carcinoma 6 260620 -NCIT:C4549 Conjunctival Squamous Cell Carcinoma 6 260621 -NCIT:C174390 Conjunctival Keratoacanthoma 7 260622 -NCIT:C174398 Conjunctival Spindle Cell Carcinoma 7 260623 -NCIT:C174496 Metastatic Malignant Neoplasm in the Conjunctiva 5 260624 -NCIT:C175432 Conjunctival Non-Hodgkin Lymphoma 5 260625 -NCIT:C175430 Conjunctival Follicular Lymphoma 6 260626 -NCIT:C175431 Conjunctival Mucosa-Associated Lymphoid Tissue Lymphoma 6 260627 -NCIT:C175433 Conjunctival Diffuse Large B-Cell Lymphoma 6 260628 -NCIT:C175502 Conjunctival Sarcoma 5 260629 -NCIT:C175499 Conjunctival Angiosarcoma 6 260630 -NCIT:C175500 Conjunctival Leiomyosarcoma 6 260631 -NCIT:C175501 Conjunctival Rhabdomyosarcoma 6 260632 -NCIT:C4578 Conjunctival Kaposi Sarcoma 6 260633 -NCIT:C4550 Conjunctival Melanoma 5 260634 -NCIT:C182127 Metastatic Conjunctival Melanoma 6 260635 -NCIT:C3565 Malignant Corneal Neoplasm 4 260636 -NCIT:C4552 Corneal Squamous Cell Carcinoma 5 260637 -NCIT:C4553 Corneal Melanoma 5 260638 -NCIT:C4579 Corneal Kaposi Sarcoma 5 260639 -NCIT:C35690 Eye Lymphoma 4 260640 -NCIT:C88145 Ocular Adnexal Non-Hodgkin Lymphoma 5 260641 -NCIT:C175432 Conjunctival Non-Hodgkin Lymphoma 6 260642 -NCIT:C175430 Conjunctival Follicular Lymphoma 7 260643 -NCIT:C175431 Conjunctival Mucosa-Associated Lymphoid Tissue Lymphoma 7 260644 -NCIT:C175433 Conjunctival Diffuse Large B-Cell Lymphoma 7 260645 -NCIT:C175479 Lacrimal System Non-Hodgkin Lymphoma 6 260646 -NCIT:C175480 Lacrimal Gland Non-Hodgkin Lymphoma 7 260647 -NCIT:C175483 Lacrimal Gland Mucosa-Associated Lymphoid Tissue Lymphoma 8 260648 -NCIT:C175486 Lacrimal Gland Diffuse Large B-Cell Lymphoma 8 260649 -NCIT:C175488 Lacrimal Gland Follicular Lymphoma 8 260650 -NCIT:C175481 Lacrimal Drainage System Non-Hodgkin Lymphoma 7 260651 -NCIT:C175484 Lacrimal Drainage System Mucosa-Associated Lymphoid Tissue Lymphoma 8 260652 -NCIT:C175487 Lacrimal Drainage System Diffuse Large B-Cell Lymphoma 8 260653 -NCIT:C175482 Lacrimal System Mucosa-Associated Lymphoid Tissue Lymphoma 7 260654 -NCIT:C175483 Lacrimal Gland Mucosa-Associated Lymphoid Tissue Lymphoma 8 260655 -NCIT:C175484 Lacrimal Drainage System Mucosa-Associated Lymphoid Tissue Lymphoma 8 260656 -NCIT:C175485 Lacrimal System Diffuse Large B-Cell Lymphoma 7 260657 -NCIT:C175486 Lacrimal Gland Diffuse Large B-Cell Lymphoma 8 260658 -NCIT:C175487 Lacrimal Drainage System Diffuse Large B-Cell Lymphoma 8 260659 -NCIT:C35689 Ocular Adnexal Mucosa-Associated Lymphoid Tissue Lymphoma 6 260660 -NCIT:C175431 Conjunctival Mucosa-Associated Lymphoid Tissue Lymphoma 7 260661 -NCIT:C175482 Lacrimal System Mucosa-Associated Lymphoid Tissue Lymphoma 7 260662 -NCIT:C175483 Lacrimal Gland Mucosa-Associated Lymphoid Tissue Lymphoma 8 260663 -NCIT:C175484 Lacrimal Drainage System Mucosa-Associated Lymphoid Tissue Lymphoma 8 260664 -NCIT:C182357 Diffusion Restriction 7 260665 -NCIT:C44960 Chlamydia Psittaci-Associated Ocular Adnexal Mucosa-Associated Lymphoid Tissue Lymphoma 7 260666 -NCIT:C9184 Primary Intraocular Non-Hodgkin Lymphoma 5 260667 -NCIT:C157065 Primary Vitreoretinal Non-Hodgkin Lymphoma 6 260668 -NCIT:C157067 Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 7 260669 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 260670 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 260671 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 7 260672 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 260673 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 7 260674 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 260675 -NCIT:C4365 Primary Retinal Non-Hodgkin Lymphoma 7 260676 -NCIT:C175451 Primary Uveal Non-Hodgkin Lymphoma 6 260677 -NCIT:C175464 Primary Choroidal Non-Hodgkin Lymphoma 7 260678 -NCIT:C175466 Primary Ciliary Body Non-Hodgkin Lymphoma 7 260679 -NCIT:C175467 Primary Iris Non-Hodgkin Lymphoma 7 260680 -NCIT:C4586 Metastatic Malignant Neoplasm in the Eye 4 260681 -NCIT:C174496 Metastatic Malignant Neoplasm in the Conjunctiva 5 260682 -NCIT:C174507 Metastatic Malignant Neoplasm in the Uvea 5 260683 -NCIT:C6103 Metastatic Malignant Neoplasm in the Iris 6 260684 -NCIT:C8553 Metastatic Malignant Neoplasm in the Ciliary Body 6 260685 -NCIT:C8554 Metastatic Malignant Neoplasm in the Choroid 6 260686 -NCIT:C175470 Secondary Choroidal Non-Hodgkin Lymphoma 7 260687 -NCIT:C175327 Metastatic Malignant Neoplasm in the Lacrimal System 5 260688 -NCIT:C175329 Metastatic Malignant Neoplasm in the Lacrimal Gland 6 260689 -NCIT:C175330 Metastatic Malignant Neoplasm in the Lacrimal Drainage System 6 260690 -NCIT:C8555 Metastatic Malignant Neoplasm in the Retina 5 260691 -NCIT:C6079 Eye Carcinoma 4 260692 -NCIT:C174403 Conjunctival Carcinoma 5 260693 -NCIT:C174402 Conjunctival Adenosquamous Carcinoma 6 260694 -NCIT:C174404 Conjunctival Sebaceous Carcinoma 6 260695 -NCIT:C4549 Conjunctival Squamous Cell Carcinoma 6 260696 -NCIT:C174390 Conjunctival Keratoacanthoma 7 260697 -NCIT:C174398 Conjunctival Spindle Cell Carcinoma 7 260698 -NCIT:C174551 Retinal Pigment Epithelium Adenocarcinoma 5 260699 -NCIT:C174561 Ciliary Body Adenocarcinoma 5 260700 -NCIT:C175348 Lacrimal System Carcinoma 5 260701 -NCIT:C175337 Lacrimal Drainage System Carcinoma 6 260702 -NCIT:C175336 Lacrimal Drainage System Adenocarcinoma 7 260703 -NCIT:C175339 Lacrimal Drainage System Mucoepidermoid Carcinoma 7 260704 -NCIT:C175340 Lacrimal Drainage System Adenoid Cystic Carcinoma 7 260705 -NCIT:C175344 Lacrimal Drainage System Lymphoepithelial Carcinoma 7 260706 -NCIT:C6092 Lacrimal Drainage System Squamous Cell Carcinoma 7 260707 -NCIT:C175335 Lacrimal Drainage System Non-Keratinizing Squamous Cell Carcinoma 8 260708 -NCIT:C6129 Lacrimal Gland Carcinoma 6 260709 -NCIT:C175274 Lacrimal Gland Myoepithelial Carcinoma 7 260710 -NCIT:C175288 Lacrimal Gland Epithelial-Myoepithelial Carcinoma 7 260711 -NCIT:C4540 Lacrimal Gland Adenoid Cystic Carcinoma 7 260712 -NCIT:C4541 Lacrimal Gland Adenocarcinoma 7 260713 -NCIT:C175267 Lacrimal Gland Oncocytic Adenocarcinoma 8 260714 -NCIT:C175290 Lacrimal Gland Acinic Cell Carcinoma 8 260715 -NCIT:C6091 Lacrimal Gland Mucoepidermoid Carcinoma 7 260716 -NCIT:C6804 Lacrimal Gland Carcinoma ex Pleomorphic Adenoma 7 260717 -NCIT:C43340 Eye Sebaceous Carcinoma 5 260718 -NCIT:C134831 Eyelid Sebaceous Gland Carcinoma 6 260719 -NCIT:C174404 Conjunctival Sebaceous Carcinoma 6 260720 -NCIT:C4552 Corneal Squamous Cell Carcinoma 5 260721 -NCIT:C6078 Eyelid Carcinoma 5 260722 -NCIT:C134831 Eyelid Sebaceous Gland Carcinoma 6 260723 -NCIT:C140511 Eyelid Carcinoma by AJCC v7 Stage 6 260724 -NCIT:C88120 Stage 0 Eyelid Carcinoma AJCC v7 7 260725 -NCIT:C88121 Stage IA Eyelid Carcinoma AJCC v7 7 260726 -NCIT:C88122 Stage IB Eyelid Carcinoma AJCC v7 7 260727 -NCIT:C88125 Stage IC Eyelid Carcinoma AJCC v7 7 260728 -NCIT:C88127 Stage II Eyelid Carcinoma AJCC v7 7 260729 -NCIT:C88129 Stage IIIA Eyelid Carcinoma AJCC v7 7 260730 -NCIT:C88131 Stage IIIB Eyelid Carcinoma AJCC v7 7 260731 -NCIT:C88132 Stage IIIC Eyelid Carcinoma AJCC v7 7 260732 -NCIT:C88133 Stage IV Eyelid Carcinoma AJCC v7 7 260733 -NCIT:C140513 Eyelid Carcinoma by AJCC v8 Stage 6 260734 -NCIT:C140515 Stage 0 Eyelid Carcinoma AJCC v8 7 260735 -NCIT:C140516 Stage I Eyelid Carcinoma AJCC v8 7 260736 -NCIT:C140517 Stage IA Eyelid Carcinoma AJCC v8 8 260737 -NCIT:C140518 Stage IB Eyelid Carcinoma AJCC v8 8 260738 -NCIT:C140519 Stage II Eyelid Carcinoma AJCC v8 7 260739 -NCIT:C140520 Stage IIA Eyelid Carcinoma AJCC v8 8 260740 -NCIT:C140521 Stage IIB Eyelid Carcinoma AJCC v8 8 260741 -NCIT:C140522 Stage III Eyelid Carcinoma AJCC v8 7 260742 -NCIT:C140523 Stage IIIA Eyelid Carcinoma AJCC v8 8 260743 -NCIT:C140524 Stage IIIB Eyelid Carcinoma AJCC v8 8 260744 -NCIT:C140525 Stage IV Eyelid Carcinoma AJCC v8 7 260745 -NCIT:C181159 Eyelid Basal Cell Carcinoma 6 260746 -NCIT:C6105 Malignant Uveal Neoplasm 4 260747 -NCIT:C174507 Metastatic Malignant Neoplasm in the Uvea 5 260748 -NCIT:C6103 Metastatic Malignant Neoplasm in the Iris 6 260749 -NCIT:C8553 Metastatic Malignant Neoplasm in the Ciliary Body 6 260750 -NCIT:C8554 Metastatic Malignant Neoplasm in the Choroid 6 260751 -NCIT:C175470 Secondary Choroidal Non-Hodgkin Lymphoma 7 260752 -NCIT:C175451 Primary Uveal Non-Hodgkin Lymphoma 5 260753 -NCIT:C175464 Primary Choroidal Non-Hodgkin Lymphoma 6 260754 -NCIT:C175466 Primary Ciliary Body Non-Hodgkin Lymphoma 6 260755 -NCIT:C175467 Primary Iris Non-Hodgkin Lymphoma 6 260756 -NCIT:C3566 Malignant Choroid Neoplasm 5 260757 -NCIT:C175464 Primary Choroidal Non-Hodgkin Lymphoma 6 260758 -NCIT:C4561 Choroid Melanoma 6 260759 -NCIT:C169085 Metastatic Choroid Melanoma 7 260760 -NCIT:C35782 Choroid Mixed Cell Melanoma 7 260761 -NCIT:C6099 Choroid Spindle Cell Melanoma 7 260762 -NCIT:C6861 Choroid Spindle Cell Type A Melanoma 8 260763 -NCIT:C6862 Choroid Spindle Cell Type B Melanoma 8 260764 -NCIT:C6100 Choroid Intermediate Cell Type Melanoma 7 260765 -NCIT:C6102 Choroid Epithelioid Cell Melanoma 7 260766 -NCIT:C6865 Choroid Necrotic Melanoma 7 260767 -NCIT:C8554 Metastatic Malignant Neoplasm in the Choroid 6 260768 -NCIT:C175470 Secondary Choroidal Non-Hodgkin Lymphoma 7 260769 -NCIT:C4554 Malignant Iris Neoplasm 5 260770 -NCIT:C175467 Primary Iris Non-Hodgkin Lymphoma 6 260771 -NCIT:C6103 Metastatic Malignant Neoplasm in the Iris 6 260772 -NCIT:C9088 Iris Melanoma 6 260773 -NCIT:C174498 Iris Epithelioid Cell Melanoma 7 260774 -NCIT:C174506 Iris Mixed Cell Melanoma 7 260775 -NCIT:C6098 Iris Spindle Cell Melanoma 7 260776 -NCIT:C6101 Iris Intermediate Cell Type Melanoma 7 260777 -NCIT:C4766 Malignant Ciliary Body Neoplasm 5 260778 -NCIT:C174561 Ciliary Body Adenocarcinoma 6 260779 -NCIT:C175466 Primary Ciliary Body Non-Hodgkin Lymphoma 6 260780 -NCIT:C4557 Ciliary Body Malignant Medulloepithelioma 6 260781 -NCIT:C4558 Ciliary Body Melanoma 6 260782 -NCIT:C35783 Ciliary Body Mixed Cell Melanoma 7 260783 -NCIT:C6117 Ciliary Body Spindle Cell Melanoma 7 260784 -NCIT:C6863 Ciliary Body Spindle Cell Type B Melanoma 8 260785 -NCIT:C6864 Ciliary Body Spindle Cell Type A Melanoma 8 260786 -NCIT:C6118 Ciliary Body Intermediate Cell Type Melanoma 7 260787 -NCIT:C6119 Ciliary Body Epithelioid Cell Melanoma 7 260788 -NCIT:C8553 Metastatic Malignant Neoplasm in the Ciliary Body 6 260789 -NCIT:C7712 Uveal Melanoma 5 260790 -NCIT:C111030 Uveal Melanoma by Gene Expression Profile 6 260791 -NCIT:C111020 Uveal Class 1 Melanoma 7 260792 -NCIT:C111022 Uveal Class 1a Melanoma 8 260793 -NCIT:C111023 Uveal Class 1b Melanoma 8 260794 -NCIT:C111021 Uveal Class 2 Melanoma 7 260795 -NCIT:C140659 Choroidal and Ciliary Body Melanoma by AJCC v8 Stage 6 260796 -NCIT:C140660 Stage I Choroidal and Ciliary Body Melanoma AJCC v8 7 260797 -NCIT:C140661 Stage II Choroidal and Ciliary Body Melanoma AJCC v8 7 260798 -NCIT:C140662 Stage IIA Choroidal and Ciliary Body Melanoma AJCC v8 8 260799 -NCIT:C140663 Stage IIB Choroidal and Ciliary Body Melanoma AJCC v8 8 260800 -NCIT:C140664 Stage III Choroidal and Ciliary Body Melanoma AJCC v8 7 260801 -NCIT:C140665 Stage IIIA Choroidal and Ciliary Body Melanoma AJCC v8 8 260802 -NCIT:C140666 Stage IIIB Choroidal and Ciliary Body Melanoma AJCC v8 8 260803 -NCIT:C140667 Stage IIIC Choroidal and Ciliary Body Melanoma AJCC v8 8 260804 -NCIT:C140668 Stage IV Choroidal and Ciliary Body Melanoma AJCC v8 7 260805 -NCIT:C140672 Uveal Melanoma by AJCC v7 Stage 6 260806 -NCIT:C5577 Stage I Uveal Melanoma AJCC v7 7 260807 -NCIT:C5578 Stage II Uveal Melanoma AJCC v7 7 260808 -NCIT:C88135 Stage IIA Uveal Melanoma AJCC v7 8 260809 -NCIT:C88136 Stage IIB Uveal Melanoma AJCC v7 8 260810 -NCIT:C5579 Stage III Uveal Melanoma AJCC v7 7 260811 -NCIT:C88137 Stage IIIA Uveal Melanoma AJCC v7 8 260812 -NCIT:C88138 Stage IIIB Uveal Melanoma AJCC v7 8 260813 -NCIT:C88139 Stage IIIC Uveal Melanoma AJCC v7 8 260814 -NCIT:C5580 Stage IV Uveal Melanoma AJCC v7 7 260815 -NCIT:C148514 Metastatic Uveal Melanoma 6 260816 -NCIT:C148515 Advanced Uveal Melanoma 7 260817 -NCIT:C150130 Uveal Melanoma Metastatic in the Liver 8 260818 -NCIT:C169085 Metastatic Choroid Melanoma 7 260819 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 7 260820 -NCIT:C172247 Unresectable Uveal Melanoma 6 260821 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 7 260822 -NCIT:C173335 Refractory Uveal Melanoma 6 260823 -NCIT:C190746 Iridociliary Melanoma 6 260824 -NCIT:C35780 Uveal Epithelioid Cell Melanoma 6 260825 -NCIT:C174498 Iris Epithelioid Cell Melanoma 7 260826 -NCIT:C6102 Choroid Epithelioid Cell Melanoma 7 260827 -NCIT:C6119 Ciliary Body Epithelioid Cell Melanoma 7 260828 -NCIT:C35781 Uveal Mixed Cell Melanoma 6 260829 -NCIT:C174506 Iris Mixed Cell Melanoma 7 260830 -NCIT:C35782 Choroid Mixed Cell Melanoma 7 260831 -NCIT:C35783 Ciliary Body Mixed Cell Melanoma 7 260832 -NCIT:C4558 Ciliary Body Melanoma 6 260833 -NCIT:C35783 Ciliary Body Mixed Cell Melanoma 7 260834 -NCIT:C6117 Ciliary Body Spindle Cell Melanoma 7 260835 -NCIT:C6863 Ciliary Body Spindle Cell Type B Melanoma 8 260836 -NCIT:C6864 Ciliary Body Spindle Cell Type A Melanoma 8 260837 -NCIT:C6118 Ciliary Body Intermediate Cell Type Melanoma 7 260838 -NCIT:C6119 Ciliary Body Epithelioid Cell Melanoma 7 260839 -NCIT:C4561 Choroid Melanoma 6 260840 -NCIT:C169085 Metastatic Choroid Melanoma 7 260841 -NCIT:C35782 Choroid Mixed Cell Melanoma 7 260842 -NCIT:C6099 Choroid Spindle Cell Melanoma 7 260843 -NCIT:C6861 Choroid Spindle Cell Type A Melanoma 8 260844 -NCIT:C6862 Choroid Spindle Cell Type B Melanoma 8 260845 -NCIT:C6100 Choroid Intermediate Cell Type Melanoma 7 260846 -NCIT:C6102 Choroid Epithelioid Cell Melanoma 7 260847 -NCIT:C6865 Choroid Necrotic Melanoma 7 260848 -NCIT:C7914 Recurrent Uveal Melanoma 6 260849 -NCIT:C7986 Uveal Spindle Cell Melanoma 6 260850 -NCIT:C6098 Iris Spindle Cell Melanoma 7 260851 -NCIT:C6099 Choroid Spindle Cell Melanoma 7 260852 -NCIT:C6861 Choroid Spindle Cell Type A Melanoma 8 260853 -NCIT:C6862 Choroid Spindle Cell Type B Melanoma 8 260854 -NCIT:C6117 Ciliary Body Spindle Cell Melanoma 7 260855 -NCIT:C6863 Ciliary Body Spindle Cell Type B Melanoma 8 260856 -NCIT:C6864 Ciliary Body Spindle Cell Type A Melanoma 8 260857 -NCIT:C7987 Uveal Spindle Cell Type A Melanoma 7 260858 -NCIT:C6861 Choroid Spindle Cell Type A Melanoma 8 260859 -NCIT:C6864 Ciliary Body Spindle Cell Type A Melanoma 8 260860 -NCIT:C7988 Uveal Spindle Cell Type B Melanoma 7 260861 -NCIT:C6862 Choroid Spindle Cell Type B Melanoma 8 260862 -NCIT:C6863 Ciliary Body Spindle Cell Type B Melanoma 8 260863 -NCIT:C7989 Uveal Intermediate Cell Type Melanoma 6 260864 -NCIT:C6100 Choroid Intermediate Cell Type Melanoma 7 260865 -NCIT:C6101 Iris Intermediate Cell Type Melanoma 7 260866 -NCIT:C6118 Ciliary Body Intermediate Cell Type Melanoma 7 260867 -NCIT:C7990 Uveal Necrotic Melanoma 6 260868 -NCIT:C6865 Choroid Necrotic Melanoma 7 260869 -NCIT:C9088 Iris Melanoma 6 260870 -NCIT:C174498 Iris Epithelioid Cell Melanoma 7 260871 -NCIT:C174506 Iris Mixed Cell Melanoma 7 260872 -NCIT:C6098 Iris Spindle Cell Melanoma 7 260873 -NCIT:C6101 Iris Intermediate Cell Type Melanoma 7 260874 -NCIT:C9089 Small Size Posterior Uveal Melanoma 6 260875 -NCIT:C9090 Medium/Large Size Posterior Uveal Melanoma 6 260876 -NCIT:C6786 Malignant Eyelid Neoplasm 4 260877 -NCIT:C4358 Eyelid Melanoma 5 260878 -NCIT:C6078 Eyelid Carcinoma 5 260879 -NCIT:C134831 Eyelid Sebaceous Gland Carcinoma 6 260880 -NCIT:C140511 Eyelid Carcinoma by AJCC v7 Stage 6 260881 -NCIT:C88120 Stage 0 Eyelid Carcinoma AJCC v7 7 260882 -NCIT:C88121 Stage IA Eyelid Carcinoma AJCC v7 7 260883 -NCIT:C88122 Stage IB Eyelid Carcinoma AJCC v7 7 260884 -NCIT:C88125 Stage IC Eyelid Carcinoma AJCC v7 7 260885 -NCIT:C88127 Stage II Eyelid Carcinoma AJCC v7 7 260886 -NCIT:C88129 Stage IIIA Eyelid Carcinoma AJCC v7 7 260887 -NCIT:C88131 Stage IIIB Eyelid Carcinoma AJCC v7 7 260888 -NCIT:C88132 Stage IIIC Eyelid Carcinoma AJCC v7 7 260889 -NCIT:C88133 Stage IV Eyelid Carcinoma AJCC v7 7 260890 -NCIT:C140513 Eyelid Carcinoma by AJCC v8 Stage 6 260891 -NCIT:C140515 Stage 0 Eyelid Carcinoma AJCC v8 7 260892 -NCIT:C140516 Stage I Eyelid Carcinoma AJCC v8 7 260893 -NCIT:C140517 Stage IA Eyelid Carcinoma AJCC v8 8 260894 -NCIT:C140518 Stage IB Eyelid Carcinoma AJCC v8 8 260895 -NCIT:C140519 Stage II Eyelid Carcinoma AJCC v8 7 260896 -NCIT:C140520 Stage IIA Eyelid Carcinoma AJCC v8 8 260897 -NCIT:C140521 Stage IIB Eyelid Carcinoma AJCC v8 8 260898 -NCIT:C140522 Stage III Eyelid Carcinoma AJCC v8 7 260899 -NCIT:C140523 Stage IIIA Eyelid Carcinoma AJCC v8 8 260900 -NCIT:C140524 Stage IIIB Eyelid Carcinoma AJCC v8 8 260901 -NCIT:C140525 Stage IV Eyelid Carcinoma AJCC v8 7 260902 -NCIT:C181159 Eyelid Basal Cell Carcinoma 6 260903 -NCIT:C8562 Ocular Melanoma 4 260904 -NCIT:C171294 Recurrent Ocular Melanoma 5 260905 -NCIT:C7914 Recurrent Uveal Melanoma 6 260906 -NCIT:C171295 Metastatic Ocular Melanoma 5 260907 -NCIT:C148514 Metastatic Uveal Melanoma 6 260908 -NCIT:C148515 Advanced Uveal Melanoma 7 260909 -NCIT:C150130 Uveal Melanoma Metastatic in the Liver 8 260910 -NCIT:C169085 Metastatic Choroid Melanoma 7 260911 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 7 260912 -NCIT:C171296 Locally Advanced Ocular Melanoma 6 260913 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 7 260914 -NCIT:C182127 Metastatic Conjunctival Melanoma 6 260915 -NCIT:C190137 Advanced Ocular Melanoma 6 260916 -NCIT:C148515 Advanced Uveal Melanoma 7 260917 -NCIT:C150130 Uveal Melanoma Metastatic in the Liver 8 260918 -NCIT:C173329 Refractory Ocular Melanoma 5 260919 -NCIT:C173335 Refractory Uveal Melanoma 6 260920 -NCIT:C175345 Lacrimal Drainage System Melanoma 5 260921 -NCIT:C4358 Eyelid Melanoma 5 260922 -NCIT:C4550 Conjunctival Melanoma 5 260923 -NCIT:C182127 Metastatic Conjunctival Melanoma 6 260924 -NCIT:C4553 Corneal Melanoma 5 260925 -NCIT:C7712 Uveal Melanoma 5 260926 -NCIT:C111030 Uveal Melanoma by Gene Expression Profile 6 260927 -NCIT:C111020 Uveal Class 1 Melanoma 7 260928 -NCIT:C111022 Uveal Class 1a Melanoma 8 260929 -NCIT:C111023 Uveal Class 1b Melanoma 8 260930 -NCIT:C111021 Uveal Class 2 Melanoma 7 260931 -NCIT:C140659 Choroidal and Ciliary Body Melanoma by AJCC v8 Stage 6 260932 -NCIT:C140660 Stage I Choroidal and Ciliary Body Melanoma AJCC v8 7 260933 -NCIT:C140661 Stage II Choroidal and Ciliary Body Melanoma AJCC v8 7 260934 -NCIT:C140662 Stage IIA Choroidal and Ciliary Body Melanoma AJCC v8 8 260935 -NCIT:C140663 Stage IIB Choroidal and Ciliary Body Melanoma AJCC v8 8 260936 -NCIT:C140664 Stage III Choroidal and Ciliary Body Melanoma AJCC v8 7 260937 -NCIT:C140665 Stage IIIA Choroidal and Ciliary Body Melanoma AJCC v8 8 260938 -NCIT:C140666 Stage IIIB Choroidal and Ciliary Body Melanoma AJCC v8 8 260939 -NCIT:C140667 Stage IIIC Choroidal and Ciliary Body Melanoma AJCC v8 8 260940 -NCIT:C140668 Stage IV Choroidal and Ciliary Body Melanoma AJCC v8 7 260941 -NCIT:C140672 Uveal Melanoma by AJCC v7 Stage 6 260942 -NCIT:C5577 Stage I Uveal Melanoma AJCC v7 7 260943 -NCIT:C5578 Stage II Uveal Melanoma AJCC v7 7 260944 -NCIT:C88135 Stage IIA Uveal Melanoma AJCC v7 8 260945 -NCIT:C88136 Stage IIB Uveal Melanoma AJCC v7 8 260946 -NCIT:C5579 Stage III Uveal Melanoma AJCC v7 7 260947 -NCIT:C88137 Stage IIIA Uveal Melanoma AJCC v7 8 260948 -NCIT:C88138 Stage IIIB Uveal Melanoma AJCC v7 8 260949 -NCIT:C88139 Stage IIIC Uveal Melanoma AJCC v7 8 260950 -NCIT:C5580 Stage IV Uveal Melanoma AJCC v7 7 260951 -NCIT:C148514 Metastatic Uveal Melanoma 6 260952 -NCIT:C148515 Advanced Uveal Melanoma 7 260953 -NCIT:C150130 Uveal Melanoma Metastatic in the Liver 8 260954 -NCIT:C169085 Metastatic Choroid Melanoma 7 260955 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 7 260956 -NCIT:C172247 Unresectable Uveal Melanoma 6 260957 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 7 260958 -NCIT:C173335 Refractory Uveal Melanoma 6 260959 -NCIT:C190746 Iridociliary Melanoma 6 260960 -NCIT:C35780 Uveal Epithelioid Cell Melanoma 6 260961 -NCIT:C174498 Iris Epithelioid Cell Melanoma 7 260962 -NCIT:C6102 Choroid Epithelioid Cell Melanoma 7 260963 -NCIT:C6119 Ciliary Body Epithelioid Cell Melanoma 7 260964 -NCIT:C35781 Uveal Mixed Cell Melanoma 6 260965 -NCIT:C174506 Iris Mixed Cell Melanoma 7 260966 -NCIT:C35782 Choroid Mixed Cell Melanoma 7 260967 -NCIT:C35783 Ciliary Body Mixed Cell Melanoma 7 260968 -NCIT:C4558 Ciliary Body Melanoma 6 260969 -NCIT:C35783 Ciliary Body Mixed Cell Melanoma 7 260970 -NCIT:C6117 Ciliary Body Spindle Cell Melanoma 7 260971 -NCIT:C6863 Ciliary Body Spindle Cell Type B Melanoma 8 260972 -NCIT:C6864 Ciliary Body Spindle Cell Type A Melanoma 8 260973 -NCIT:C6118 Ciliary Body Intermediate Cell Type Melanoma 7 260974 -NCIT:C6119 Ciliary Body Epithelioid Cell Melanoma 7 260975 -NCIT:C4561 Choroid Melanoma 6 260976 -NCIT:C169085 Metastatic Choroid Melanoma 7 260977 -NCIT:C35782 Choroid Mixed Cell Melanoma 7 260978 -NCIT:C6099 Choroid Spindle Cell Melanoma 7 260979 -NCIT:C6861 Choroid Spindle Cell Type A Melanoma 8 260980 -NCIT:C6862 Choroid Spindle Cell Type B Melanoma 8 260981 -NCIT:C6100 Choroid Intermediate Cell Type Melanoma 7 260982 -NCIT:C6102 Choroid Epithelioid Cell Melanoma 7 260983 -NCIT:C6865 Choroid Necrotic Melanoma 7 260984 -NCIT:C7914 Recurrent Uveal Melanoma 6 260985 -NCIT:C7986 Uveal Spindle Cell Melanoma 6 260986 -NCIT:C6098 Iris Spindle Cell Melanoma 7 260987 -NCIT:C6099 Choroid Spindle Cell Melanoma 7 260988 -NCIT:C6861 Choroid Spindle Cell Type A Melanoma 8 260989 -NCIT:C6862 Choroid Spindle Cell Type B Melanoma 8 260990 -NCIT:C6117 Ciliary Body Spindle Cell Melanoma 7 260991 -NCIT:C6863 Ciliary Body Spindle Cell Type B Melanoma 8 260992 -NCIT:C6864 Ciliary Body Spindle Cell Type A Melanoma 8 260993 -NCIT:C7987 Uveal Spindle Cell Type A Melanoma 7 260994 -NCIT:C6861 Choroid Spindle Cell Type A Melanoma 8 260995 -NCIT:C6864 Ciliary Body Spindle Cell Type A Melanoma 8 260996 -NCIT:C7988 Uveal Spindle Cell Type B Melanoma 7 260997 -NCIT:C6862 Choroid Spindle Cell Type B Melanoma 8 260998 -NCIT:C6863 Ciliary Body Spindle Cell Type B Melanoma 8 260999 -NCIT:C7989 Uveal Intermediate Cell Type Melanoma 6 261000 -NCIT:C6100 Choroid Intermediate Cell Type Melanoma 7 261001 -NCIT:C6101 Iris Intermediate Cell Type Melanoma 7 261002 -NCIT:C6118 Ciliary Body Intermediate Cell Type Melanoma 7 261003 -NCIT:C7990 Uveal Necrotic Melanoma 6 261004 -NCIT:C6865 Choroid Necrotic Melanoma 7 261005 -NCIT:C9088 Iris Melanoma 6 261006 -NCIT:C174498 Iris Epithelioid Cell Melanoma 7 261007 -NCIT:C174506 Iris Mixed Cell Melanoma 7 261008 -NCIT:C6098 Iris Spindle Cell Melanoma 7 261009 -NCIT:C6101 Iris Intermediate Cell Type Melanoma 7 261010 -NCIT:C9089 Small Size Posterior Uveal Melanoma 6 261011 -NCIT:C9090 Medium/Large Size Posterior Uveal Melanoma 6 261012 -NCIT:C7913 Ocular Melanoma with Extraocular Extension 5 261013 -NCIT:C8601 Retinal Melanoma 5 261014 -NCIT:C92186 Intraocular Malignant Peripheral Nerve Sheath Tumor 4 261015 -NCIT:C4788 Malignant Nervous System Neoplasm 3 261016 -NCIT:C190623 Childhood Malignant Nervous System Neoplasm 4 261017 -NCIT:C124270 Childhood Neuroblastoma 5 261018 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 6 261019 -NCIT:C124271 Childhood Ganglioneuroblastoma 5 261020 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 6 261021 -NCIT:C124273 Childhood Ganglioneuroblastoma, Intermixed 6 261022 -NCIT:C124274 Childhood Ganglioneuroblastoma, Nodular 6 261023 -NCIT:C5448 Childhood Malignant Central Nervous System Neoplasm 5 261024 -NCIT:C114833 Childhood Central Nervous System Embryonal Tumor 6 261025 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 7 261026 -NCIT:C114812 Childhood Pineoblastoma 7 261027 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 261028 -NCIT:C114836 Recurrent Childhood Central Nervous System Embryonal Neoplasm 7 261029 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 261030 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 261031 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 261032 -NCIT:C115203 Childhood Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 7 261033 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 261034 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 9 261035 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 261036 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 7 261037 -NCIT:C3997 Childhood Medulloblastoma 7 261038 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 261039 -NCIT:C5961 Childhood Central Nervous System Embryonal Tumor, Not Otherwise Specified 7 261040 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 261041 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 9 261042 -NCIT:C68634 Childhood Atypical Teratoid/Rhabdoid Tumor 7 261043 -NCIT:C114973 Childhood Anaplastic Oligoastrocytoma 6 261044 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 7 261045 -NCIT:C124293 Childhood Anaplastic Ependymoma 6 261046 -NCIT:C187207 Childhood Malignant Brain Neoplasm 6 261047 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 7 261048 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 261049 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 7 261050 -NCIT:C114812 Childhood Pineoblastoma 7 261051 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 261052 -NCIT:C114969 Childhood Gliomatosis Cerebri 7 261053 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 8 261054 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 7 261055 -NCIT:C124292 Childhood Choroid Plexus Carcinoma 7 261056 -NCIT:C147901 Childhood Brain Glioblastoma 7 261057 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 8 261058 -NCIT:C185471 Infant-Type Hemispheric Glioma 7 261059 -NCIT:C185472 Infant-Type Hemispheric Glioma, NTRK-Altered 8 261060 -NCIT:C185473 Infant-Type Hemispheric Glioma, ROS1-Altered 8 261061 -NCIT:C185474 Infant-Type Hemispheric Glioma, ALK-Altered 8 261062 -NCIT:C185475 Infant-Type Hemispheric Glioma, MET-Altered 8 261063 -NCIT:C187211 Metastatic Childhood Malignant Neoplasm in the Brain 7 261064 -NCIT:C187212 Metastatic Childhood Malignant Brain Neoplasm 7 261065 -NCIT:C187213 Advanced Childhood Malignant Brain Neoplasm 8 261066 -NCIT:C188922 Childhood Diffuse Midline Glioma, H3 K27-Altered 7 261067 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 7 261068 -NCIT:C188926 Childhood Diffuse Hemispheric Glioma, H3 G34-Mutant 7 261069 -NCIT:C188935 Childhood Supratentorial Ependymoma ZFTA Fusion-Positive 7 261070 -NCIT:C3997 Childhood Medulloblastoma 7 261071 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 261072 -NCIT:C6207 Childhood Brain Germinoma 7 261073 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 7 261074 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 8 261075 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 8 261076 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 7 261077 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 261078 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 7 261079 -NCIT:C27403 Childhood Central Nervous System Mixed Germ Cell Tumor 6 261080 -NCIT:C27406 Childhood Central Nervous System Germinoma 6 261081 -NCIT:C6207 Childhood Brain Germinoma 7 261082 -NCIT:C5136 Childhood Glioblastoma 6 261083 -NCIT:C114966 Childhood Giant Cell Glioblastoma 7 261084 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 8 261085 -NCIT:C114968 Childhood Gliosarcoma 7 261086 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 8 261087 -NCIT:C115365 Recurrent Childhood Gliosarcoma 8 261088 -NCIT:C115364 Recurrent Childhood Glioblastoma 7 261089 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 8 261090 -NCIT:C115365 Recurrent Childhood Gliosarcoma 8 261091 -NCIT:C147901 Childhood Brain Glioblastoma 7 261092 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 8 261093 -NCIT:C5318 Childhood Meningeal Melanoma 6 261094 -NCIT:C5447 Childhood Anaplastic Oligodendroglioma 6 261095 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 7 261096 -NCIT:C6206 Childhood Central Nervous System Choriocarcinoma 6 261097 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 6 261098 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 6 261099 -NCIT:C6215 Childhood Anaplastic Astrocytoma 6 261100 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 7 261101 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 7 261102 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 8 261103 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 8 261104 -NCIT:C71303 Childhood Grade 3 Meningioma 6 261105 -NCIT:C9047 Childhood Intraocular Retinoblastoma 6 261106 -NCIT:C9048 Childhood Extraocular Retinoblastoma 6 261107 -NCIT:C8094 Childhood Malignant Peripheral Nerve Sheath Tumor 5 261108 -NCIT:C3571 Malignant Cranial Nerve Neoplasm 4 261109 -NCIT:C170941 Malignant Optic Nerve Neoplasm 5 261110 -NCIT:C4539 Malignant Vestibulocochlear Nerve Neoplasm 5 261111 -NCIT:C4768 Malignant Olfactory Nerve Neoplasm 5 261112 -NCIT:C3789 Olfactory Neuroblastoma 6 261113 -NCIT:C115384 Recurrent Olfactory Neuroblastoma 7 261114 -NCIT:C173174 Sinonasal Olfactory Neuroblastoma 7 261115 -NCIT:C6016 Paranasal Sinus Olfactory Neuroblastoma 8 261116 -NCIT:C5435 Kadish Stage C Olfactory Neuroblastoma 7 261117 -NCIT:C6853 Kadish Stage A Olfactory Neuroblastoma 7 261118 -NCIT:C6854 Kadish Stage B Olfactory Neuroblastoma 7 261119 -NCIT:C7604 Nasal Cavity Olfactory Neuroblastoma 7 261120 -NCIT:C6995 Malignant Oculomotor Nerve Neoplasm 5 261121 -NCIT:C3716 Primitive Neuroectodermal Tumor 4 261122 -NCIT:C173565 Refractory Primitive Neuroectodermal Tumor 5 261123 -NCIT:C134153 Refractory Neuroblastoma 6 261124 -NCIT:C142850 Refractory Peripheral Primitive Neuroectodermal Tumor 6 261125 -NCIT:C173530 Refractory Ganglioneuroblastoma 6 261126 -NCIT:C27294 Localized Primitive Neuroectodermal Tumor 5 261127 -NCIT:C27903 Localized Peripheral Primitive Neuroectodermal Tumor 6 261128 -NCIT:C27353 Localized Peripheral Primitive Neuroectodermal Tumor of Bone 7 261129 -NCIT:C27902 Localized Askin Tumor 7 261130 -NCIT:C7835 Localized Resectable Neuroblastoma 6 261131 -NCIT:C8277 Localized Unresectable Neuroblastoma 6 261132 -NCIT:C27295 Recurrent Primitive Neuroectodermal Tumor 5 261133 -NCIT:C173531 Recurrent Ganglioneuroblastoma 6 261134 -NCIT:C27899 Recurrent Peripheral Primitive Neuroectodermal Tumor 6 261135 -NCIT:C27354 Recurrent Peripheral Primitive Neuroectodermal Tumor of Bone 7 261136 -NCIT:C27900 Recurrent Askin Tumor 7 261137 -NCIT:C7837 Recurrent Neuroblastoma 6 261138 -NCIT:C115384 Recurrent Olfactory Neuroblastoma 7 261139 -NCIT:C6963 Neuroblastic Tumor 5 261140 -NCIT:C3270 Neuroblastoma 6 261141 -NCIT:C115225 Hereditary Neuroblastoma 7 261142 -NCIT:C124270 Childhood Neuroblastoma 7 261143 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 8 261144 -NCIT:C134153 Refractory Neuroblastoma 7 261145 -NCIT:C150281 High Risk Neuroblastoma 7 261146 -NCIT:C150620 Resectable Neuroblastoma 7 261147 -NCIT:C7835 Localized Resectable Neuroblastoma 8 261148 -NCIT:C150622 Unresectable Neuroblastoma 7 261149 -NCIT:C8277 Localized Unresectable Neuroblastoma 8 261150 -NCIT:C155772 Sellar Neuroblastoma 7 261151 -NCIT:C156101 Metastatic Neuroblastoma 7 261152 -NCIT:C42046 Undifferentiated Neuroblastoma 7 261153 -NCIT:C42047 Poorly Differentiated Neuroblastoma 7 261154 -NCIT:C42048 Differentiating Neuroblastoma 7 261155 -NCIT:C4826 Central Nervous System Neuroblastoma 7 261156 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 8 261157 -NCIT:C186547 Central Nervous System Neuroblastoma, FOXR2-Activated 8 261158 -NCIT:C5437 Extracranial Neuroblastoma 7 261159 -NCIT:C3789 Olfactory Neuroblastoma 8 261160 -NCIT:C115384 Recurrent Olfactory Neuroblastoma 9 261161 -NCIT:C173174 Sinonasal Olfactory Neuroblastoma 9 261162 -NCIT:C6016 Paranasal Sinus Olfactory Neuroblastoma 10 261163 -NCIT:C5435 Kadish Stage C Olfactory Neuroblastoma 9 261164 -NCIT:C6853 Kadish Stage A Olfactory Neuroblastoma 9 261165 -NCIT:C6854 Kadish Stage B Olfactory Neuroblastoma 9 261166 -NCIT:C7604 Nasal Cavity Olfactory Neuroblastoma 9 261167 -NCIT:C5155 Spinal Cord Neuroblastoma 8 261168 -NCIT:C6591 Peripheral Neuroblastoma 8 261169 -NCIT:C6628 Mediastinal Neuroblastoma 9 261170 -NCIT:C6964 Neuroblastoma of the Adrenal Gland and Sympathetic Nervous System 9 261171 -NCIT:C4827 Adrenal Gland Neuroblastoma 10 261172 -NCIT:C6638 Stage 1 Neuroblastoma 7 261173 -NCIT:C6639 Stage 2 Neuroblastoma 7 261174 -NCIT:C102845 Stage 2A Neuroblastoma 8 261175 -NCIT:C102846 Stage 2B Neuroblastoma 8 261176 -NCIT:C6640 Stage 3 Neuroblastoma 7 261177 -NCIT:C6641 Stage 4 Neuroblastoma 7 261178 -NCIT:C9504 Stage 4S Neuroblastoma 8 261179 -NCIT:C6956 Retinal Neuroblastoma 7 261180 -NCIT:C7836 Regional Neuroblastoma 7 261181 -NCIT:C7837 Recurrent Neuroblastoma 7 261182 -NCIT:C115384 Recurrent Olfactory Neuroblastoma 8 261183 -NCIT:C3790 Ganglioneuroblastoma 6 261184 -NCIT:C124271 Childhood Ganglioneuroblastoma 7 261185 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 8 261186 -NCIT:C124273 Childhood Ganglioneuroblastoma, Intermixed 8 261187 -NCIT:C124274 Childhood Ganglioneuroblastoma, Nodular 8 261188 -NCIT:C173530 Refractory Ganglioneuroblastoma 7 261189 -NCIT:C173531 Recurrent Ganglioneuroblastoma 7 261190 -NCIT:C42057 Ganglioneuroblastoma, Intermixed 7 261191 -NCIT:C124273 Childhood Ganglioneuroblastoma, Intermixed 8 261192 -NCIT:C157243 Adrenal Gland Ganglioneuroblastoma, Intermixed 8 261193 -NCIT:C42058 Ganglioneuroblastoma, Nodular 7 261194 -NCIT:C124274 Childhood Ganglioneuroblastoma, Nodular 8 261195 -NCIT:C157244 Adrenal Gland Ganglioneuroblastoma, Nodular 8 261196 -NCIT:C42059 Composite Ganglioneuroblastoma, Schwannian Stroma-Rich and Stroma-Poor 8 261197 -NCIT:C42060 Composite Ganglioneuroblastoma, Stroma-Dominant and Stroma-Poor 8 261198 -NCIT:C6594 Peripheral Ganglioneuroblastoma 7 261199 -NCIT:C6627 Mediastinal Ganglioneuroblastoma 8 261200 -NCIT:C7646 Adrenal Gland Ganglioneuroblastoma 8 261201 -NCIT:C157243 Adrenal Gland Ganglioneuroblastoma, Intermixed 9 261202 -NCIT:C157244 Adrenal Gland Ganglioneuroblastoma, Nodular 9 261203 -NCIT:C92629 Central Nervous System Ganglioneuroblastoma 7 261204 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 8 261205 -NCIT:C9341 Peripheral Primitive Neuroectodermal Tumor 5 261206 -NCIT:C142850 Refractory Peripheral Primitive Neuroectodermal Tumor 6 261207 -NCIT:C27471 Peripheral Primitive Neuroectodermal Tumor of Soft Tissues 6 261208 -NCIT:C27899 Recurrent Peripheral Primitive Neuroectodermal Tumor 6 261209 -NCIT:C27354 Recurrent Peripheral Primitive Neuroectodermal Tumor of Bone 7 261210 -NCIT:C27900 Recurrent Askin Tumor 7 261211 -NCIT:C27903 Localized Peripheral Primitive Neuroectodermal Tumor 6 261212 -NCIT:C27353 Localized Peripheral Primitive Neuroectodermal Tumor of Bone 7 261213 -NCIT:C27902 Localized Askin Tumor 7 261214 -NCIT:C67214 Peripheral Primitive Neuroectodermal Tumor of the Kidney 6 261215 -NCIT:C7542 Askin Tumor 6 261216 -NCIT:C27900 Recurrent Askin Tumor 7 261217 -NCIT:C27902 Localized Askin Tumor 7 261218 -NCIT:C8776 Peripheral Primitive Neuroectodermal Tumor of Bone 6 261219 -NCIT:C27353 Localized Peripheral Primitive Neuroectodermal Tumor of Bone 7 261220 -NCIT:C27354 Recurrent Peripheral Primitive Neuroectodermal Tumor of Bone 7 261221 -NCIT:C36074 Metastatic Peripheral Primitive Neuroectodermal Tumor of Bone 7 261222 -NCIT:C4627 Malignant Central Nervous System Neoplasm 4 261223 -NCIT:C129807 Central Nervous System Histiocytic Sarcoma 5 261224 -NCIT:C153823 Recurrent Primary Malignant Central Nervous System Neoplasm 5 261225 -NCIT:C114836 Recurrent Childhood Central Nervous System Embryonal Neoplasm 6 261226 -NCIT:C115374 Recurrent Childhood Pineoblastoma 7 261227 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 7 261228 -NCIT:C6774 Recurrent Childhood Medulloblastoma 7 261229 -NCIT:C133499 Recurrent Atypical Teratoid/Rhabdoid Tumor 6 261230 -NCIT:C138019 Recurrent Central Nervous System Lymphoma 6 261231 -NCIT:C146990 Recurrent Central Nervous System Non-Hodgkin Lymphoma 7 261232 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 8 261233 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 261234 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 261235 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 261236 -NCIT:C142848 Recurrent Malignant Glioma 6 261237 -NCIT:C126306 Recurrent Glioblastoma 7 261238 -NCIT:C115364 Recurrent Childhood Glioblastoma 8 261239 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 9 261240 -NCIT:C115365 Recurrent Childhood Gliosarcoma 9 261241 -NCIT:C182019 Recurrent Glioblastoma, IDH-Wildtype 8 261242 -NCIT:C131209 Recurrent Gliosarcoma 9 261243 -NCIT:C115365 Recurrent Childhood Gliosarcoma 10 261244 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 9 261245 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 10 261246 -NCIT:C163961 Recurrent Small Cell Glioblastoma 9 261247 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 9 261248 -NCIT:C191198 Recurrent Brain Glioblastoma 8 261249 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 9 261250 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 7 261251 -NCIT:C148038 Recurrent WHO Grade 3 Glioma 7 261252 -NCIT:C136517 Recurrent Anaplastic Astrocytoma 8 261253 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 9 261254 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 9 261255 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 9 261256 -NCIT:C142861 Recurrent Anaplastic Oligoastrocytoma 8 261257 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 9 261258 -NCIT:C142862 Recurrent Anaplastic Oligodendroglioma 8 261259 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 9 261260 -NCIT:C160904 Recurrent Anaplastic Pleomorphic Xanthoastrocytoma 8 261261 -NCIT:C160912 Recurrent Anaplastic Ependymoma 8 261262 -NCIT:C179222 Recurrent Diffuse Midline Glioma, H3 K27M-Mutant 7 261263 -NCIT:C182018 Recurrent Astrocytoma, IDH-Mutant, Grade 4 7 261264 -NCIT:C153837 Recurrent Malignant Brain Neoplasm 6 261265 -NCIT:C115374 Recurrent Childhood Pineoblastoma 7 261266 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 7 261267 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 7 261268 -NCIT:C179221 Recurrent Gliomatosis Cerebri 7 261269 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 8 261270 -NCIT:C179226 Recurrent Malignant Choroid Plexus Neoplasm 7 261271 -NCIT:C191198 Recurrent Brain Glioblastoma 7 261272 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 8 261273 -NCIT:C5588 Recurrent Medulloblastoma 7 261274 -NCIT:C147109 Recurrent Medulloblastoma, SHH-Activated 8 261275 -NCIT:C180893 Recurrent Medulloblastoma, WNT-Activated 8 261276 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 261277 -NCIT:C160914 Recurrent Anaplastic Ganglioglioma 6 261278 -NCIT:C179223 Recurrent Anaplastic (Malignant) Meningioma 6 261279 -NCIT:C7849 Recurrent Retinoblastoma 6 261280 -NCIT:C153842 Refractory Primary Malignant Central Nervous System Neoplasm 5 261281 -NCIT:C138020 Refractory Central Nervous System Lymphoma 6 261282 -NCIT:C146989 Refractory Central Nervous System Non-Hodgkin Lymphoma 7 261283 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 8 261284 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 261285 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 261286 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 261287 -NCIT:C142855 Refractory Malignant Glioma 6 261288 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 7 261289 -NCIT:C146734 Refractory Glioblastoma 7 261290 -NCIT:C163960 Refractory Small Cell Glioblastoma 8 261291 -NCIT:C163962 Refractory Gliosarcoma 8 261292 -NCIT:C176998 Refractory Giant Cell Glioblastoma 8 261293 -NCIT:C153865 Refractory WHO Grade 3 Glioma 7 261294 -NCIT:C160905 Refractory Anaplastic Pleomorphic Xanthoastrocytoma 8 261295 -NCIT:C160913 Refractory Anaplastic Ependymoma 8 261296 -NCIT:C169074 Refractory Anaplastic Oligodendroglioma 8 261297 -NCIT:C169075 Refractory Anaplastic Astrocytoma 8 261298 -NCIT:C153845 Refractory Malignant Brain Neoplasm 6 261299 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 7 261300 -NCIT:C142856 Refractory Medulloblastoma 7 261301 -NCIT:C147110 Refractory Medulloblastoma, SHH-Activated 8 261302 -NCIT:C180892 Refractory Medulloblastoma, WNT-Activated 8 261303 -NCIT:C160915 Refractory Anaplastic Ganglioglioma 6 261304 -NCIT:C162723 Refractory Atypical Teratoid/Rhabdoid Tumor 6 261305 -NCIT:C183152 Refractory Malignant Leptomeningeal Neoplasm 6 261306 -NCIT:C185037 Extramedullary Disease in Plasma Cell Myeloma Involving the Central Nervous System 5 261307 -NCIT:C185039 Extramedullary Disease in Plasma Cell Myeloma Involving the Leptomeninges 6 261308 -NCIT:C3572 Malignant Spinal Cord Neoplasm 5 261309 -NCIT:C4585 Metastatic Malignant Neoplasm in the Spinal Cord 6 261310 -NCIT:C5439 Drop Metastasis in the Spinal Cord 7 261311 -NCIT:C5152 Spinal Cord Sarcoma 6 261312 -NCIT:C5155 Spinal Cord Neuroblastoma 6 261313 -NCIT:C5157 Spinal Cord Lymphoma 6 261314 -NCIT:C5158 Spinal Cord Melanoma 6 261315 -NCIT:C5406 Spinal Cord Embryonal Tumor, Not Otherwise Specified 6 261316 -NCIT:C4015 Metastatic Malignant Neoplasm in the Central Nervous System 5 261317 -NCIT:C133501 Breast Carcinoma Metastatic in the Central Nervous System 6 261318 -NCIT:C36301 Breast Carcinoma Metastatic in the Brain 7 261319 -NCIT:C133503 Lung Carcinoma Metastatic in the Central Nervous System 6 261320 -NCIT:C36304 Lung Carcinoma Metastatic in the Brain 7 261321 -NCIT:C133504 Melanoma Metastatic in the Central Nervous System 6 261322 -NCIT:C179206 Melanoma Metastatic in the Brain 7 261323 -NCIT:C155786 Metastatic Malignant Neoplasm in the Sellar Region 6 261324 -NCIT:C6805 Metastatic Malignant Neoplasm in the Pituitary Gland 7 261325 -NCIT:C175220 Metastatic Malignant Neoplasm in the Visual Pathway 6 261326 -NCIT:C3813 Metastatic Malignant Neoplasm in the Brain 6 261327 -NCIT:C179206 Melanoma Metastatic in the Brain 7 261328 -NCIT:C187211 Metastatic Childhood Malignant Neoplasm in the Brain 7 261329 -NCIT:C36301 Breast Carcinoma Metastatic in the Brain 7 261330 -NCIT:C36304 Lung Carcinoma Metastatic in the Brain 7 261331 -NCIT:C5057 Secondary Cerebral Hodgkin Lymphoma 7 261332 -NCIT:C5816 Metastatic Adult Malignant Neoplasm in the Brain 7 261333 -NCIT:C8550 Metastatic Malignant Neoplasm in the Brain Stem 7 261334 -NCIT:C3814 Metastatic Malignant Neoplasm in the Leptomeninges 6 261335 -NCIT:C173916 Recurrent Metastatic Malignant Neoplasm in the Leptomeninges 7 261336 -NCIT:C185039 Extramedullary Disease in Plasma Cell Myeloma Involving the Leptomeninges 7 261337 -NCIT:C5399 Medulloblastoma with Leptomeningeal Spread 7 261338 -NCIT:C5400 Central Nervous System Embryonal Tumor, Not Otherwise Specified with Leptomeningeal Spread 7 261339 -NCIT:C94754 Meningeal Leukemia 7 261340 -NCIT:C9111 Meningeal Chronic Myelogenous Leukemia, BCR-ABL1 Positive 8 261341 -NCIT:C4585 Metastatic Malignant Neoplasm in the Spinal Cord 6 261342 -NCIT:C5439 Drop Metastasis in the Spinal Cord 7 261343 -NCIT:C87797 Secondary Central Nervous System Lymphoma 6 261344 -NCIT:C114949 Secondary Central Nervous System Hodgkin Lymphoma 7 261345 -NCIT:C5057 Secondary Cerebral Hodgkin Lymphoma 8 261346 -NCIT:C114950 Secondary Central Nervous System Non-Hodgkin Lymphoma 7 261347 -NCIT:C4628 Malignant Meningeal Neoplasm 5 261348 -NCIT:C27383 Meningeal Carcinomatosis 6 261349 -NCIT:C38938 Grade 3 Meningioma 6 261350 -NCIT:C3904 Papillary Meningioma 7 261351 -NCIT:C5270 Cerebellar Papillary Meningioma 8 261352 -NCIT:C8293 Adult Papillary Meningioma 8 261353 -NCIT:C4051 Anaplastic (Malignant) Meningioma 7 261354 -NCIT:C179223 Recurrent Anaplastic (Malignant) Meningioma 8 261355 -NCIT:C27307 Anaplastic (Malignant) Intracranial Meningioma 8 261356 -NCIT:C8275 Adult Anaplastic (Malignant) Meningioma 8 261357 -NCIT:C8605 Anaplastic (Malignant) Intraspinal Meningioma 8 261358 -NCIT:C6909 Rhabdoid Meningioma 7 261359 -NCIT:C71303 Childhood Grade 3 Meningioma 7 261360 -NCIT:C71305 Adult Grade 3 Meningioma 7 261361 -NCIT:C8275 Adult Anaplastic (Malignant) Meningioma 8 261362 -NCIT:C8293 Adult Papillary Meningioma 8 261363 -NCIT:C4073 Meningeal Sarcoma 6 261364 -NCIT:C4334 Meningeal Sarcomatosis 7 261365 -NCIT:C8312 Leptomeningeal Sarcoma 7 261366 -NCIT:C5446 Meningeal Gliomatosis 6 261367 -NCIT:C8506 Malignant Leptomeningeal Neoplasm 6 261368 -NCIT:C183152 Refractory Malignant Leptomeningeal Neoplasm 7 261369 -NCIT:C3814 Metastatic Malignant Neoplasm in the Leptomeninges 7 261370 -NCIT:C173916 Recurrent Metastatic Malignant Neoplasm in the Leptomeninges 8 261371 -NCIT:C185039 Extramedullary Disease in Plasma Cell Myeloma Involving the Leptomeninges 8 261372 -NCIT:C5399 Medulloblastoma with Leptomeningeal Spread 8 261373 -NCIT:C5400 Central Nervous System Embryonal Tumor, Not Otherwise Specified with Leptomeningeal Spread 8 261374 -NCIT:C94754 Meningeal Leukemia 8 261375 -NCIT:C9111 Meningeal Chronic Myelogenous Leukemia, BCR-ABL1 Positive 9 261376 -NCIT:C5317 Meningeal Melanoma 7 261377 -NCIT:C5318 Childhood Meningeal Melanoma 8 261378 -NCIT:C5319 Adult Meningeal Melanoma 8 261379 -NCIT:C6891 Meningeal Melanomatosis 8 261380 -NCIT:C8312 Leptomeningeal Sarcoma 7 261381 -NCIT:C92652 Meningeal Central Nervous System Solitary Fibrous Tumor, Grade 3 6 261382 -NCIT:C94756 Meningeal Lymphoma 6 261383 -NCIT:C95991 Dural Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 7 261384 -NCIT:C4717 Anaplastic Ganglioglioma 5 261385 -NCIT:C160914 Recurrent Anaplastic Ganglioglioma 6 261386 -NCIT:C160915 Refractory Anaplastic Ganglioglioma 6 261387 -NCIT:C4822 Malignant Glioma 5 261388 -NCIT:C102897 High Grade Astrocytic Tumor 6 261389 -NCIT:C167335 Astrocytoma, IDH-Mutant, Grade 4 7 261390 -NCIT:C182018 Recurrent Astrocytoma, IDH-Mutant, Grade 4 8 261391 -NCIT:C3058 Glioblastoma 7 261392 -NCIT:C111691 Glioblastoma by Gene Expression Profile 8 261393 -NCIT:C111692 Proneural Glioblastoma 9 261394 -NCIT:C111693 Neural Glioblastoma 9 261395 -NCIT:C111694 Classical Glioblastoma 9 261396 -NCIT:C111695 Mesenchymal Glioblastoma 9 261397 -NCIT:C126306 Recurrent Glioblastoma 8 261398 -NCIT:C115364 Recurrent Childhood Glioblastoma 9 261399 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 10 261400 -NCIT:C115365 Recurrent Childhood Gliosarcoma 10 261401 -NCIT:C182019 Recurrent Glioblastoma, IDH-Wildtype 9 261402 -NCIT:C131209 Recurrent Gliosarcoma 10 261403 -NCIT:C115365 Recurrent Childhood Gliosarcoma 11 261404 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 10 261405 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 11 261406 -NCIT:C163961 Recurrent Small Cell Glioblastoma 10 261407 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 10 261408 -NCIT:C191198 Recurrent Brain Glioblastoma 9 261409 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 10 261410 -NCIT:C129295 Glioblastoma, Not Otherwise Specified 8 261411 -NCIT:C146734 Refractory Glioblastoma 8 261412 -NCIT:C163960 Refractory Small Cell Glioblastoma 9 261413 -NCIT:C163962 Refractory Gliosarcoma 9 261414 -NCIT:C176998 Refractory Giant Cell Glioblastoma 9 261415 -NCIT:C166156 Resectable Glioblastoma 8 261416 -NCIT:C170979 Metastatic Glioblastoma 8 261417 -NCIT:C170978 Advanced Glioblastoma 9 261418 -NCIT:C170980 Locally Advanced Glioblastoma 9 261419 -NCIT:C176890 Unresectable Glioblastoma 8 261420 -NCIT:C39750 Glioblastoma, IDH-Wildtype 8 261421 -NCIT:C125890 Small Cell Glioblastoma 9 261422 -NCIT:C163960 Refractory Small Cell Glioblastoma 10 261423 -NCIT:C163961 Recurrent Small Cell Glioblastoma 10 261424 -NCIT:C129293 Epithelioid Glioblastoma 9 261425 -NCIT:C129296 Glioblastoma with Primitive Neuronal Component 9 261426 -NCIT:C132902 MGMT-Unmethylated Glioblastoma 9 261427 -NCIT:C154335 MGMT-Methylated Glioblastoma 9 261428 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 10 261429 -NCIT:C182019 Recurrent Glioblastoma, IDH-Wildtype 9 261430 -NCIT:C131209 Recurrent Gliosarcoma 10 261431 -NCIT:C115365 Recurrent Childhood Gliosarcoma 11 261432 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 10 261433 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 11 261434 -NCIT:C163961 Recurrent Small Cell Glioblastoma 10 261435 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 10 261436 -NCIT:C185178 Granular Cell Glioblastoma 9 261437 -NCIT:C185180 Lipidized Glioblastoma 9 261438 -NCIT:C3796 Gliosarcoma 9 261439 -NCIT:C114968 Childhood Gliosarcoma 10 261440 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 11 261441 -NCIT:C115365 Recurrent Childhood Gliosarcoma 11 261442 -NCIT:C131209 Recurrent Gliosarcoma 10 261443 -NCIT:C115365 Recurrent Childhood Gliosarcoma 11 261444 -NCIT:C163962 Refractory Gliosarcoma 10 261445 -NCIT:C171013 Supratentorial Gliosarcoma 10 261446 -NCIT:C68701 Adult Gliosarcoma 10 261447 -NCIT:C9370 Adult Brain Stem Gliosarcoma 11 261448 -NCIT:C4325 Giant Cell Glioblastoma 9 261449 -NCIT:C114966 Childhood Giant Cell Glioblastoma 10 261450 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 11 261451 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 10 261452 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 11 261453 -NCIT:C176998 Refractory Giant Cell Glioblastoma 10 261454 -NCIT:C68702 Adult Giant Cell Glioblastoma 10 261455 -NCIT:C39751 Secondary Glioblastoma 8 261456 -NCIT:C4642 Brain Glioblastoma 8 261457 -NCIT:C147901 Childhood Brain Glioblastoma 9 261458 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 261459 -NCIT:C191198 Recurrent Brain Glioblastoma 9 261460 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 10 261461 -NCIT:C5148 Infratentorial Glioblastoma 9 261462 -NCIT:C5097 Brain Stem Glioblastoma 10 261463 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 11 261464 -NCIT:C9370 Adult Brain Stem Gliosarcoma 11 261465 -NCIT:C5150 Cerebellar Glioblastoma 10 261466 -NCIT:C5149 Supratentorial Glioblastoma 9 261467 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 10 261468 -NCIT:C5129 Diencephalic Glioblastoma 10 261469 -NCIT:C5151 Cerebral Glioblastoma 10 261470 -NCIT:C171013 Supratentorial Gliosarcoma 11 261471 -NCIT:C9375 Adult Brain Glioblastoma 9 261472 -NCIT:C9370 Adult Brain Stem Gliosarcoma 10 261473 -NCIT:C5136 Childhood Glioblastoma 8 261474 -NCIT:C114966 Childhood Giant Cell Glioblastoma 9 261475 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 10 261476 -NCIT:C114968 Childhood Gliosarcoma 9 261477 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 261478 -NCIT:C115365 Recurrent Childhood Gliosarcoma 10 261479 -NCIT:C115364 Recurrent Childhood Glioblastoma 9 261480 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 10 261481 -NCIT:C115365 Recurrent Childhood Gliosarcoma 10 261482 -NCIT:C147901 Childhood Brain Glioblastoma 9 261483 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 261484 -NCIT:C9094 Adult Glioblastoma 8 261485 -NCIT:C27183 Adult Spinal Cord Glioblastoma 9 261486 -NCIT:C68701 Adult Gliosarcoma 9 261487 -NCIT:C9370 Adult Brain Stem Gliosarcoma 10 261488 -NCIT:C68702 Adult Giant Cell Glioblastoma 9 261489 -NCIT:C9375 Adult Brain Glioblastoma 9 261490 -NCIT:C9370 Adult Brain Stem Gliosarcoma 10 261491 -NCIT:C92549 Multifocal Glioblastomas 8 261492 -NCIT:C9477 Anaplastic Astrocytoma 7 261493 -NCIT:C129290 Astrocytoma, IDH-Mutant, Grade 3 8 261494 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 9 261495 -NCIT:C129291 Anaplastic Astrocytoma, IDH-Wildtype 8 261496 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 9 261497 -NCIT:C129292 Anaplastic Astrocytoma, Not Otherwise Specified 8 261498 -NCIT:C136517 Recurrent Anaplastic Astrocytoma 8 261499 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 9 261500 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 9 261501 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 9 261502 -NCIT:C169075 Refractory Anaplastic Astrocytoma 8 261503 -NCIT:C185879 High Grade Astrocytoma with Piloid Features 8 261504 -NCIT:C5123 Hemispheric Anaplastic Astrocytoma 8 261505 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 9 261506 -NCIT:C156035 Frontal Lobe Anaplastic Astrocytoma 9 261507 -NCIT:C156036 Temporal Lobe Anaplastic Astrocytoma 9 261508 -NCIT:C171036 Parietal Lobe Anaplastic Astrocytoma 9 261509 -NCIT:C5124 Anaplastic Diencephalic Astrocytoma 8 261510 -NCIT:C5416 Secondary Supratentorial Anaplastic Astrocytoma 8 261511 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 8 261512 -NCIT:C6215 Childhood Anaplastic Astrocytoma 8 261513 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 9 261514 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 9 261515 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 10 261516 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 10 261517 -NCIT:C8257 Adult Anaplastic Astrocytoma 8 261518 -NCIT:C127816 WHO Grade 3 Glioma 6 261519 -NCIT:C129327 Anaplastic Pleomorphic Xanthoastrocytoma 7 261520 -NCIT:C160904 Recurrent Anaplastic Pleomorphic Xanthoastrocytoma 8 261521 -NCIT:C160905 Refractory Anaplastic Pleomorphic Xanthoastrocytoma 8 261522 -NCIT:C148038 Recurrent WHO Grade 3 Glioma 7 261523 -NCIT:C136517 Recurrent Anaplastic Astrocytoma 8 261524 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 9 261525 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 9 261526 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 9 261527 -NCIT:C142861 Recurrent Anaplastic Oligoastrocytoma 8 261528 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 9 261529 -NCIT:C142862 Recurrent Anaplastic Oligodendroglioma 8 261530 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 9 261531 -NCIT:C160904 Recurrent Anaplastic Pleomorphic Xanthoastrocytoma 8 261532 -NCIT:C160912 Recurrent Anaplastic Ependymoma 8 261533 -NCIT:C153865 Refractory WHO Grade 3 Glioma 7 261534 -NCIT:C160905 Refractory Anaplastic Pleomorphic Xanthoastrocytoma 8 261535 -NCIT:C160913 Refractory Anaplastic Ependymoma 8 261536 -NCIT:C169074 Refractory Anaplastic Oligodendroglioma 8 261537 -NCIT:C169075 Refractory Anaplastic Astrocytoma 8 261538 -NCIT:C4049 Anaplastic Ependymoma 7 261539 -NCIT:C124293 Childhood Anaplastic Ependymoma 8 261540 -NCIT:C160912 Recurrent Anaplastic Ependymoma 8 261541 -NCIT:C160913 Refractory Anaplastic Ependymoma 8 261542 -NCIT:C8269 Adult Anaplastic Ependymoma 8 261543 -NCIT:C4326 Anaplastic Oligodendroglioma 7 261544 -NCIT:C129321 Anaplastic Oligodendroglioma, IDH-Mutant and 1p/19q-Codeleted 8 261545 -NCIT:C129322 Anaplastic Oligodendroglioma, Not Otherwise Specified 8 261546 -NCIT:C142862 Recurrent Anaplastic Oligodendroglioma 8 261547 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 9 261548 -NCIT:C156120 Frontal Lobe Anaplastic Oligodendroglioma 8 261549 -NCIT:C169074 Refractory Anaplastic Oligodendroglioma 8 261550 -NCIT:C5447 Childhood Anaplastic Oligodendroglioma 8 261551 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 9 261552 -NCIT:C8270 Adult Anaplastic Oligodendroglioma 8 261553 -NCIT:C6959 Anaplastic Oligoastrocytoma 7 261554 -NCIT:C114973 Childhood Anaplastic Oligoastrocytoma 8 261555 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 9 261556 -NCIT:C129324 Anaplastic Oligoastrocytoma, Not Otherwise Specified 8 261557 -NCIT:C142861 Recurrent Anaplastic Oligoastrocytoma 8 261558 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 9 261559 -NCIT:C7446 Anaplastic Brain Stem Glioma 7 261560 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 8 261561 -NCIT:C9477 Anaplastic Astrocytoma 7 261562 -NCIT:C129290 Astrocytoma, IDH-Mutant, Grade 3 8 261563 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 9 261564 -NCIT:C129291 Anaplastic Astrocytoma, IDH-Wildtype 8 261565 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 9 261566 -NCIT:C129292 Anaplastic Astrocytoma, Not Otherwise Specified 8 261567 -NCIT:C136517 Recurrent Anaplastic Astrocytoma 8 261568 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 9 261569 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 9 261570 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 9 261571 -NCIT:C169075 Refractory Anaplastic Astrocytoma 8 261572 -NCIT:C185879 High Grade Astrocytoma with Piloid Features 8 261573 -NCIT:C5123 Hemispheric Anaplastic Astrocytoma 8 261574 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 9 261575 -NCIT:C156035 Frontal Lobe Anaplastic Astrocytoma 9 261576 -NCIT:C156036 Temporal Lobe Anaplastic Astrocytoma 9 261577 -NCIT:C171036 Parietal Lobe Anaplastic Astrocytoma 9 261578 -NCIT:C5124 Anaplastic Diencephalic Astrocytoma 8 261579 -NCIT:C5416 Secondary Supratentorial Anaplastic Astrocytoma 8 261580 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 8 261581 -NCIT:C6215 Childhood Anaplastic Astrocytoma 8 261582 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 9 261583 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 9 261584 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 10 261585 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 10 261586 -NCIT:C8257 Adult Anaplastic Astrocytoma 8 261587 -NCIT:C142848 Recurrent Malignant Glioma 6 261588 -NCIT:C126306 Recurrent Glioblastoma 7 261589 -NCIT:C115364 Recurrent Childhood Glioblastoma 8 261590 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 9 261591 -NCIT:C115365 Recurrent Childhood Gliosarcoma 9 261592 -NCIT:C182019 Recurrent Glioblastoma, IDH-Wildtype 8 261593 -NCIT:C131209 Recurrent Gliosarcoma 9 261594 -NCIT:C115365 Recurrent Childhood Gliosarcoma 10 261595 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 9 261596 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 10 261597 -NCIT:C163961 Recurrent Small Cell Glioblastoma 9 261598 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 9 261599 -NCIT:C191198 Recurrent Brain Glioblastoma 8 261600 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 9 261601 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 7 261602 -NCIT:C148038 Recurrent WHO Grade 3 Glioma 7 261603 -NCIT:C136517 Recurrent Anaplastic Astrocytoma 8 261604 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 9 261605 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 9 261606 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 9 261607 -NCIT:C142861 Recurrent Anaplastic Oligoastrocytoma 8 261608 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 9 261609 -NCIT:C142862 Recurrent Anaplastic Oligodendroglioma 8 261610 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 9 261611 -NCIT:C160904 Recurrent Anaplastic Pleomorphic Xanthoastrocytoma 8 261612 -NCIT:C160912 Recurrent Anaplastic Ependymoma 8 261613 -NCIT:C179222 Recurrent Diffuse Midline Glioma, H3 K27M-Mutant 7 261614 -NCIT:C182018 Recurrent Astrocytoma, IDH-Mutant, Grade 4 7 261615 -NCIT:C142855 Refractory Malignant Glioma 6 261616 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 7 261617 -NCIT:C146734 Refractory Glioblastoma 7 261618 -NCIT:C163960 Refractory Small Cell Glioblastoma 8 261619 -NCIT:C163962 Refractory Gliosarcoma 8 261620 -NCIT:C176998 Refractory Giant Cell Glioblastoma 8 261621 -NCIT:C153865 Refractory WHO Grade 3 Glioma 7 261622 -NCIT:C160905 Refractory Anaplastic Pleomorphic Xanthoastrocytoma 8 261623 -NCIT:C160913 Refractory Anaplastic Ependymoma 8 261624 -NCIT:C169074 Refractory Anaplastic Oligodendroglioma 8 261625 -NCIT:C169075 Refractory Anaplastic Astrocytoma 8 261626 -NCIT:C162993 Malignant Brain Glioma 6 261627 -NCIT:C156120 Frontal Lobe Anaplastic Oligodendroglioma 7 261628 -NCIT:C185371 Diffuse Hemispheric Glioma, H3 G34-Mutant 7 261629 -NCIT:C188926 Childhood Diffuse Hemispheric Glioma, H3 G34-Mutant 8 261630 -NCIT:C188927 Adult Diffuse Hemispheric Glioma, H3 G34-Mutant 8 261631 -NCIT:C185467 Diffuse Pediatric-Type High Grade Glioma, H3-Wildtype and IDH-Wildtype 7 261632 -NCIT:C185468 Diffuse Pediatric-Type High Grade Glioma RTK2 8 261633 -NCIT:C185469 Diffuse Pediatric-Type High Grade Glioma RTK1 8 261634 -NCIT:C185470 Diffuse Pediatric-Type High Grade Glioma MYCN 8 261635 -NCIT:C185471 Infant-Type Hemispheric Glioma 7 261636 -NCIT:C185472 Infant-Type Hemispheric Glioma, NTRK-Altered 8 261637 -NCIT:C185473 Infant-Type Hemispheric Glioma, ROS1-Altered 8 261638 -NCIT:C185474 Infant-Type Hemispheric Glioma, ALK-Altered 8 261639 -NCIT:C185475 Infant-Type Hemispheric Glioma, MET-Altered 8 261640 -NCIT:C4642 Brain Glioblastoma 7 261641 -NCIT:C147901 Childhood Brain Glioblastoma 8 261642 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 9 261643 -NCIT:C191198 Recurrent Brain Glioblastoma 8 261644 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 9 261645 -NCIT:C5148 Infratentorial Glioblastoma 8 261646 -NCIT:C5097 Brain Stem Glioblastoma 9 261647 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 261648 -NCIT:C9370 Adult Brain Stem Gliosarcoma 10 261649 -NCIT:C5150 Cerebellar Glioblastoma 9 261650 -NCIT:C5149 Supratentorial Glioblastoma 8 261651 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 9 261652 -NCIT:C5129 Diencephalic Glioblastoma 9 261653 -NCIT:C5151 Cerebral Glioblastoma 9 261654 -NCIT:C171013 Supratentorial Gliosarcoma 10 261655 -NCIT:C9375 Adult Brain Glioblastoma 8 261656 -NCIT:C9370 Adult Brain Stem Gliosarcoma 9 261657 -NCIT:C5123 Hemispheric Anaplastic Astrocytoma 7 261658 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 8 261659 -NCIT:C156035 Frontal Lobe Anaplastic Astrocytoma 8 261660 -NCIT:C156036 Temporal Lobe Anaplastic Astrocytoma 8 261661 -NCIT:C171036 Parietal Lobe Anaplastic Astrocytoma 8 261662 -NCIT:C5124 Anaplastic Diencephalic Astrocytoma 7 261663 -NCIT:C5416 Secondary Supratentorial Anaplastic Astrocytoma 7 261664 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 7 261665 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 8 261666 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 8 261667 -NCIT:C7446 Anaplastic Brain Stem Glioma 7 261668 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 8 261669 -NCIT:C94764 Diffuse Intrinsic Pontine Glioma 7 261670 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 8 261671 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 8 261672 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 8 261673 -NCIT:C188925 Adult Diffuse Intrinsic Pontine Glioma 8 261674 -NCIT:C180877 Metastatic Glioma 6 261675 -NCIT:C170979 Metastatic Glioblastoma 7 261676 -NCIT:C170978 Advanced Glioblastoma 8 261677 -NCIT:C170980 Locally Advanced Glioblastoma 8 261678 -NCIT:C178558 Metastatic Low Grade Glioma 7 261679 -NCIT:C178559 Metastatic Low Grade Astrocytoma 8 261680 -NCIT:C180876 Locally Advanced Glioma 7 261681 -NCIT:C170980 Locally Advanced Glioblastoma 8 261682 -NCIT:C182151 Diffuse Midline Glioma 6 261683 -NCIT:C182436 Diffuse Non-Pontine Midline Glioma 7 261684 -NCIT:C185368 Diffuse Midline Glioma, H3 K27-Altered 7 261685 -NCIT:C129309 Diffuse Midline Glioma, H3 K27M-Mutant 8 261686 -NCIT:C179222 Recurrent Diffuse Midline Glioma, H3 K27M-Mutant 9 261687 -NCIT:C185369 Diffuse Midline Glioma, EGFR-Mutant 8 261688 -NCIT:C185370 Diffuse Midline Glioma with EZHIP Overexpression 8 261689 -NCIT:C188922 Childhood Diffuse Midline Glioma, H3 K27-Altered 8 261690 -NCIT:C188923 Adult Diffuse Midline Glioma, H3 K27-Altered 8 261691 -NCIT:C94764 Diffuse Intrinsic Pontine Glioma 7 261692 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 8 261693 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 8 261694 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 8 261695 -NCIT:C188925 Adult Diffuse Intrinsic Pontine Glioma 8 261696 -NCIT:C5446 Meningeal Gliomatosis 6 261697 -NCIT:C5114 Malignant Intracranial Neoplasm 5 261698 -NCIT:C155791 Malignant Skull Base Neoplasm 6 261699 -NCIT:C155772 Sellar Neuroblastoma 7 261700 -NCIT:C155786 Metastatic Malignant Neoplasm in the Sellar Region 7 261701 -NCIT:C6805 Metastatic Malignant Neoplasm in the Pituitary Gland 8 261702 -NCIT:C155802 Sellar Germinoma 7 261703 -NCIT:C155803 Suprasellar Germinoma 8 261704 -NCIT:C155804 Sellar Yolk Sac Tumor 7 261705 -NCIT:C155805 Sellar Embryonal Carcinoma 7 261706 -NCIT:C155806 Sellar Choriocarcinoma 7 261707 -NCIT:C155810 Sellar Teratoma with Malignant Transformation 7 261708 -NCIT:C155811 Sellar Mixed Germ Cell Tumor 7 261709 -NCIT:C4769 Malignant Pituitary Gland Neoplasm 7 261710 -NCIT:C155304 Pituitary Gland Blastoma 8 261711 -NCIT:C155796 Pituitary Gland Non-Hodgkin Lymphoma 8 261712 -NCIT:C155797 Pituitary Gland Diffuse Large B-Cell Lymphoma 9 261713 -NCIT:C4536 Metastatic Pituitary Neuroendocrine Tumor 8 261714 -NCIT:C163956 Locally Advanced Pituitary Neuroendocrine Tumor 9 261715 -NCIT:C163959 Metastatic Unresectable Pituitary Neuroendocrine Tumor 9 261716 -NCIT:C5962 Metastatic Lactotroph Pituitary Neuroendocrine Tumor 9 261717 -NCIT:C5963 Metastatic Somatotroph Pituitary Neuroendocrine Tumor 9 261718 -NCIT:C5964 Metastatic Corticotroph Pituitary Neuroendocrine Tumor 9 261719 -NCIT:C5965 Metastatic Thyrotroph Pituitary Neuroendocrine Tumor 9 261720 -NCIT:C6805 Metastatic Malignant Neoplasm in the Pituitary Gland 8 261721 -NCIT:C5453 Skull Base Chordoma 7 261722 -NCIT:C155781 Sellar Chordoma 8 261723 -NCIT:C155782 Sellar Chondroid Chordoma 9 261724 -NCIT:C155783 Sellar Dedifferentiated Chordoma 9 261725 -NCIT:C5412 Clivus Chordoma 8 261726 -NCIT:C5426 Clivus Chondroid Chordoma 9 261727 -NCIT:C175221 Malignant Visual Pathway Neoplasm 6 261728 -NCIT:C170941 Malignant Optic Nerve Neoplasm 7 261729 -NCIT:C175220 Metastatic Malignant Neoplasm in the Visual Pathway 7 261730 -NCIT:C3568 Malignant Brain Neoplasm 6 261731 -NCIT:C153837 Recurrent Malignant Brain Neoplasm 7 261732 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 261733 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 261734 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 8 261735 -NCIT:C179221 Recurrent Gliomatosis Cerebri 8 261736 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 9 261737 -NCIT:C179226 Recurrent Malignant Choroid Plexus Neoplasm 8 261738 -NCIT:C191198 Recurrent Brain Glioblastoma 8 261739 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 9 261740 -NCIT:C5588 Recurrent Medulloblastoma 8 261741 -NCIT:C147109 Recurrent Medulloblastoma, SHH-Activated 9 261742 -NCIT:C180893 Recurrent Medulloblastoma, WNT-Activated 9 261743 -NCIT:C6774 Recurrent Childhood Medulloblastoma 9 261744 -NCIT:C153845 Refractory Malignant Brain Neoplasm 7 261745 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 8 261746 -NCIT:C142856 Refractory Medulloblastoma 8 261747 -NCIT:C147110 Refractory Medulloblastoma, SHH-Activated 9 261748 -NCIT:C180892 Refractory Medulloblastoma, WNT-Activated 9 261749 -NCIT:C162993 Malignant Brain Glioma 7 261750 -NCIT:C156120 Frontal Lobe Anaplastic Oligodendroglioma 8 261751 -NCIT:C185371 Diffuse Hemispheric Glioma, H3 G34-Mutant 8 261752 -NCIT:C188926 Childhood Diffuse Hemispheric Glioma, H3 G34-Mutant 9 261753 -NCIT:C188927 Adult Diffuse Hemispheric Glioma, H3 G34-Mutant 9 261754 -NCIT:C185467 Diffuse Pediatric-Type High Grade Glioma, H3-Wildtype and IDH-Wildtype 8 261755 -NCIT:C185468 Diffuse Pediatric-Type High Grade Glioma RTK2 9 261756 -NCIT:C185469 Diffuse Pediatric-Type High Grade Glioma RTK1 9 261757 -NCIT:C185470 Diffuse Pediatric-Type High Grade Glioma MYCN 9 261758 -NCIT:C185471 Infant-Type Hemispheric Glioma 8 261759 -NCIT:C185472 Infant-Type Hemispheric Glioma, NTRK-Altered 9 261760 -NCIT:C185473 Infant-Type Hemispheric Glioma, ROS1-Altered 9 261761 -NCIT:C185474 Infant-Type Hemispheric Glioma, ALK-Altered 9 261762 -NCIT:C185475 Infant-Type Hemispheric Glioma, MET-Altered 9 261763 -NCIT:C4642 Brain Glioblastoma 8 261764 -NCIT:C147901 Childhood Brain Glioblastoma 9 261765 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 261766 -NCIT:C191198 Recurrent Brain Glioblastoma 9 261767 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 10 261768 -NCIT:C5148 Infratentorial Glioblastoma 9 261769 -NCIT:C5097 Brain Stem Glioblastoma 10 261770 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 11 261771 -NCIT:C9370 Adult Brain Stem Gliosarcoma 11 261772 -NCIT:C5150 Cerebellar Glioblastoma 10 261773 -NCIT:C5149 Supratentorial Glioblastoma 9 261774 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 10 261775 -NCIT:C5129 Diencephalic Glioblastoma 10 261776 -NCIT:C5151 Cerebral Glioblastoma 10 261777 -NCIT:C171013 Supratentorial Gliosarcoma 11 261778 -NCIT:C9375 Adult Brain Glioblastoma 9 261779 -NCIT:C9370 Adult Brain Stem Gliosarcoma 10 261780 -NCIT:C5123 Hemispheric Anaplastic Astrocytoma 8 261781 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 9 261782 -NCIT:C156035 Frontal Lobe Anaplastic Astrocytoma 9 261783 -NCIT:C156036 Temporal Lobe Anaplastic Astrocytoma 9 261784 -NCIT:C171036 Parietal Lobe Anaplastic Astrocytoma 9 261785 -NCIT:C5124 Anaplastic Diencephalic Astrocytoma 8 261786 -NCIT:C5416 Secondary Supratentorial Anaplastic Astrocytoma 8 261787 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 8 261788 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 9 261789 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 9 261790 -NCIT:C7446 Anaplastic Brain Stem Glioma 8 261791 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 9 261792 -NCIT:C94764 Diffuse Intrinsic Pontine Glioma 8 261793 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 9 261794 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 9 261795 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 9 261796 -NCIT:C188925 Adult Diffuse Intrinsic Pontine Glioma 9 261797 -NCIT:C175550 Metastatic Primary Malignant Brain Neoplasm 7 261798 -NCIT:C175549 Advanced Primary Malignant Brain Neoplasm 8 261799 -NCIT:C187213 Advanced Childhood Malignant Brain Neoplasm 9 261800 -NCIT:C177725 Metastatic Medulloblastoma 8 261801 -NCIT:C5399 Medulloblastoma with Leptomeningeal Spread 9 261802 -NCIT:C180874 Locally Advanced Primary Malignant Brain Neoplasm 8 261803 -NCIT:C187212 Metastatic Childhood Malignant Brain Neoplasm 8 261804 -NCIT:C187213 Advanced Childhood Malignant Brain Neoplasm 9 261805 -NCIT:C187207 Childhood Malignant Brain Neoplasm 7 261806 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 261807 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 9 261808 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 8 261809 -NCIT:C114812 Childhood Pineoblastoma 8 261810 -NCIT:C115374 Recurrent Childhood Pineoblastoma 9 261811 -NCIT:C114969 Childhood Gliomatosis Cerebri 8 261812 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 9 261813 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 8 261814 -NCIT:C124292 Childhood Choroid Plexus Carcinoma 8 261815 -NCIT:C147901 Childhood Brain Glioblastoma 8 261816 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 9 261817 -NCIT:C185471 Infant-Type Hemispheric Glioma 8 261818 -NCIT:C185472 Infant-Type Hemispheric Glioma, NTRK-Altered 9 261819 -NCIT:C185473 Infant-Type Hemispheric Glioma, ROS1-Altered 9 261820 -NCIT:C185474 Infant-Type Hemispheric Glioma, ALK-Altered 9 261821 -NCIT:C185475 Infant-Type Hemispheric Glioma, MET-Altered 9 261822 -NCIT:C187211 Metastatic Childhood Malignant Neoplasm in the Brain 8 261823 -NCIT:C187212 Metastatic Childhood Malignant Brain Neoplasm 8 261824 -NCIT:C187213 Advanced Childhood Malignant Brain Neoplasm 9 261825 -NCIT:C188922 Childhood Diffuse Midline Glioma, H3 K27-Altered 8 261826 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 8 261827 -NCIT:C188926 Childhood Diffuse Hemispheric Glioma, H3 G34-Mutant 8 261828 -NCIT:C188935 Childhood Supratentorial Ependymoma ZFTA Fusion-Positive 8 261829 -NCIT:C3997 Childhood Medulloblastoma 8 261830 -NCIT:C6774 Recurrent Childhood Medulloblastoma 9 261831 -NCIT:C6207 Childhood Brain Germinoma 8 261832 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 8 261833 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 9 261834 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 9 261835 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 261836 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 9 261837 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 261838 -NCIT:C3813 Metastatic Malignant Neoplasm in the Brain 7 261839 -NCIT:C179206 Melanoma Metastatic in the Brain 8 261840 -NCIT:C187211 Metastatic Childhood Malignant Neoplasm in the Brain 8 261841 -NCIT:C36301 Breast Carcinoma Metastatic in the Brain 8 261842 -NCIT:C36304 Lung Carcinoma Metastatic in the Brain 8 261843 -NCIT:C5057 Secondary Cerebral Hodgkin Lymphoma 8 261844 -NCIT:C5816 Metastatic Adult Malignant Neoplasm in the Brain 8 261845 -NCIT:C8550 Metastatic Malignant Neoplasm in the Brain Stem 8 261846 -NCIT:C4318 Gliomatosis Cerebri 7 261847 -NCIT:C114969 Childhood Gliomatosis Cerebri 8 261848 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 9 261849 -NCIT:C179221 Recurrent Gliomatosis Cerebri 8 261850 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 9 261851 -NCIT:C41842 Gliomatosis Cerebri Type I 8 261852 -NCIT:C41843 Gliomatosis Cerebri Type II 8 261853 -NCIT:C4533 Malignant Choroid Plexus Neoplasm 7 261854 -NCIT:C179226 Recurrent Malignant Choroid Plexus Neoplasm 8 261855 -NCIT:C4715 Choroid Plexus Carcinoma 8 261856 -NCIT:C124292 Childhood Choroid Plexus Carcinoma 9 261857 -NCIT:C4954 Localized Malignant Brain Neoplasm 7 261858 -NCIT:C4964 Malignant Supratentorial Neoplasm 7 261859 -NCIT:C124292 Childhood Choroid Plexus Carcinoma 8 261860 -NCIT:C186350 Supratentorial Ependymoma ZFTA Fusion-Positive 8 261861 -NCIT:C129351 Supratentorial Ependymoma, ZFTA-RELA Fusion-Positive 9 261862 -NCIT:C188935 Childhood Supratentorial Ependymoma ZFTA Fusion-Positive 9 261863 -NCIT:C188938 Adult Supratentorial Ependymoma ZFTA Fusion-Positive 9 261864 -NCIT:C3573 Malignant Pineal Region Neoplasm 8 261865 -NCIT:C6767 Malignant Pineal Region Germ Cell Tumor 9 261866 -NCIT:C6752 Pineal Region Yolk Sac Tumor 10 261867 -NCIT:C6759 Pineal Region Choriocarcinoma 10 261868 -NCIT:C8712 Pineal Region Germinoma 10 261869 -NCIT:C9344 Pineoblastoma 9 261870 -NCIT:C114812 Childhood Pineoblastoma 10 261871 -NCIT:C115374 Recurrent Childhood Pineoblastoma 11 261872 -NCIT:C8292 Adult Pineoblastoma 10 261873 -NCIT:C4577 Malignant Cerebral Neoplasm 8 261874 -NCIT:C185371 Diffuse Hemispheric Glioma, H3 G34-Mutant 9 261875 -NCIT:C188926 Childhood Diffuse Hemispheric Glioma, H3 G34-Mutant 10 261876 -NCIT:C188927 Adult Diffuse Hemispheric Glioma, H3 G34-Mutant 10 261877 -NCIT:C185471 Infant-Type Hemispheric Glioma 9 261878 -NCIT:C185472 Infant-Type Hemispheric Glioma, NTRK-Altered 10 261879 -NCIT:C185473 Infant-Type Hemispheric Glioma, ROS1-Altered 10 261880 -NCIT:C185474 Infant-Type Hemispheric Glioma, ALK-Altered 10 261881 -NCIT:C185475 Infant-Type Hemispheric Glioma, MET-Altered 10 261882 -NCIT:C4826 Central Nervous System Neuroblastoma 9 261883 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 10 261884 -NCIT:C186547 Central Nervous System Neuroblastoma, FOXR2-Activated 10 261885 -NCIT:C4970 Cerebral Embryonal Tumor, Not Otherwise Specified 9 261886 -NCIT:C5123 Hemispheric Anaplastic Astrocytoma 9 261887 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 10 261888 -NCIT:C156035 Frontal Lobe Anaplastic Astrocytoma 10 261889 -NCIT:C156036 Temporal Lobe Anaplastic Astrocytoma 10 261890 -NCIT:C171036 Parietal Lobe Anaplastic Astrocytoma 10 261891 -NCIT:C5151 Cerebral Glioblastoma 9 261892 -NCIT:C171013 Supratentorial Gliosarcoma 10 261893 -NCIT:C7611 Cerebral Lymphoma 9 261894 -NCIT:C5054 Cerebral Lymphoma in Immunocompetent Host 10 261895 -NCIT:C5055 Cerebral Hodgkin Lymphoma 10 261896 -NCIT:C7609 Cerebral Non-Hodgkin Lymphoma 10 261897 -NCIT:C92629 Central Nervous System Ganglioneuroblastoma 9 261898 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 10 261899 -NCIT:C5126 Malignant Diencephalic Neoplasm 8 261900 -NCIT:C175539 Malignant Hypothalamic Neoplasm 9 261901 -NCIT:C4576 Malignant Thalamic Neoplasm 9 261902 -NCIT:C5124 Anaplastic Diencephalic Astrocytoma 9 261903 -NCIT:C5129 Diencephalic Glioblastoma 9 261904 -NCIT:C5149 Supratentorial Glioblastoma 8 261905 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 9 261906 -NCIT:C5129 Diencephalic Glioblastoma 9 261907 -NCIT:C5151 Cerebral Glioblastoma 9 261908 -NCIT:C171013 Supratentorial Gliosarcoma 10 261909 -NCIT:C5416 Secondary Supratentorial Anaplastic Astrocytoma 8 261910 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 261911 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 9 261912 -NCIT:C6968 Supratentorial Embryonal Tumor, Not Otherwise Specified 8 261913 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 9 261914 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 10 261915 -NCIT:C4970 Cerebral Embryonal Tumor, Not Otherwise Specified 9 261916 -NCIT:C68703 Adult Supratentorial Embryonal Tumor, Not Otherwise Specified 9 261917 -NCIT:C4966 Malignant Infratentorial Neoplasm 7 261918 -NCIT:C3569 Malignant Cerebellar Neoplasm 8 261919 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 9 261920 -NCIT:C3222 Medulloblastoma 9 261921 -NCIT:C129436 Large Cell/Anaplastic Medulloblastoma 10 261922 -NCIT:C129439 Medulloblastoma Molecular Subtypes 10 261923 -NCIT:C129440 Medulloblastoma, WNT-Activated 11 261924 -NCIT:C180892 Refractory Medulloblastoma, WNT-Activated 12 261925 -NCIT:C180893 Recurrent Medulloblastoma, WNT-Activated 12 261926 -NCIT:C129441 Medulloblastoma, SHH-Activated 11 261927 -NCIT:C129442 Medulloblastoma, SHH-Activated, TP53-Mutant 12 261928 -NCIT:C129443 Medulloblastoma, SHH-Activated, TP53-Wildtype 12 261929 -NCIT:C186591 ELP1-Associated Medulloblastoma 13 261930 -NCIT:C147109 Recurrent Medulloblastoma, SHH-Activated 12 261931 -NCIT:C147110 Refractory Medulloblastoma, SHH-Activated 12 261932 -NCIT:C189841 Medulloblastoma, SHH-1 12 261933 -NCIT:C189844 Medulloblastoma, SHH-2 12 261934 -NCIT:C189845 Medulloblastoma, SHH-3 12 261935 -NCIT:C189846 Medulloblastoma, SHH-4 12 261936 -NCIT:C129444 Medulloblastoma, Non-WNT/Non-SHH 11 261937 -NCIT:C129445 Medulloblastoma, Non-WNT/Non-SHH, Group 3 12 261938 -NCIT:C129446 Medulloblastoma, Non-WNT/Non-SHH, Group 4 12 261939 -NCIT:C129447 Medulloblastoma, Not Otherwise Specified 10 261940 -NCIT:C142856 Refractory Medulloblastoma 10 261941 -NCIT:C147110 Refractory Medulloblastoma, SHH-Activated 11 261942 -NCIT:C180892 Refractory Medulloblastoma, WNT-Activated 11 261943 -NCIT:C156039 Fourth Ventricle Medulloblastoma 10 261944 -NCIT:C177725 Metastatic Medulloblastoma 10 261945 -NCIT:C5399 Medulloblastoma with Leptomeningeal Spread 11 261946 -NCIT:C27237 Familial Adenomatous Polyposis Associated Medulloblastoma 10 261947 -NCIT:C3706 Medullomyoblastoma 10 261948 -NCIT:C3997 Childhood Medulloblastoma 10 261949 -NCIT:C6774 Recurrent Childhood Medulloblastoma 11 261950 -NCIT:C4011 Adult Medulloblastoma 10 261951 -NCIT:C4956 Desmoplastic/Nodular Medulloblastoma 10 261952 -NCIT:C5401 Cerebellar Vermis Medulloblastoma 10 261953 -NCIT:C5402 Region 17p13 Allelic Loss Associated Medulloblastoma 10 261954 -NCIT:C54039 Classic Medulloblastoma 10 261955 -NCIT:C5405 Nevoid Basal Cell Carcinoma Syndrome Associated Medulloblastoma 10 261956 -NCIT:C5407 Medulloblastoma with Extensive Nodularity 10 261957 -NCIT:C5588 Recurrent Medulloblastoma 10 261958 -NCIT:C147109 Recurrent Medulloblastoma, SHH-Activated 11 261959 -NCIT:C180893 Recurrent Medulloblastoma, WNT-Activated 11 261960 -NCIT:C6774 Recurrent Childhood Medulloblastoma 11 261961 -NCIT:C6904 Large Cell Medulloblastoma 10 261962 -NCIT:C92625 Anaplastic Medulloblastoma 10 261963 -NCIT:C9497 Melanocytic Medulloblastoma 10 261964 -NCIT:C5270 Cerebellar Papillary Meningioma 9 261965 -NCIT:C3570 Malignant Brain Stem Neoplasm 8 261966 -NCIT:C5097 Brain Stem Glioblastoma 9 261967 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 261968 -NCIT:C9370 Adult Brain Stem Gliosarcoma 10 261969 -NCIT:C7446 Anaplastic Brain Stem Glioma 9 261970 -NCIT:C5966 Anaplastic Brain Stem Astrocytoma 10 261971 -NCIT:C8550 Metastatic Malignant Neoplasm in the Brain Stem 9 261972 -NCIT:C94764 Diffuse Intrinsic Pontine Glioma 9 261973 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 10 261974 -NCIT:C136519 Refractory Diffuse Intrinsic Pontine Glioma 10 261975 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 10 261976 -NCIT:C188925 Adult Diffuse Intrinsic Pontine Glioma 10 261977 -NCIT:C5148 Infratentorial Glioblastoma 8 261978 -NCIT:C5097 Brain Stem Glioblastoma 9 261979 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 10 261980 -NCIT:C9370 Adult Brain Stem Gliosarcoma 10 261981 -NCIT:C5150 Cerebellar Glioblastoma 9 261982 -NCIT:C5436 Cerebellopontine Angle Embryonal Tumor, Not Otherwise Specified 8 261983 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 261984 -NCIT:C5115 Adult Malignant Brain Neoplasm 7 261985 -NCIT:C188923 Adult Diffuse Midline Glioma, H3 K27-Altered 8 261986 -NCIT:C188925 Adult Diffuse Intrinsic Pontine Glioma 8 261987 -NCIT:C188927 Adult Diffuse Hemispheric Glioma, H3 G34-Mutant 8 261988 -NCIT:C188938 Adult Supratentorial Ependymoma ZFTA Fusion-Positive 8 261989 -NCIT:C4011 Adult Medulloblastoma 8 261990 -NCIT:C5816 Metastatic Adult Malignant Neoplasm in the Brain 8 261991 -NCIT:C68703 Adult Supratentorial Embryonal Tumor, Not Otherwise Specified 8 261992 -NCIT:C8292 Adult Pineoblastoma 8 261993 -NCIT:C9183 Adult Central Nervous System Solitary Fibrous Tumor, Grade 3 8 261994 -NCIT:C9375 Adult Brain Glioblastoma 8 261995 -NCIT:C9370 Adult Brain Stem Gliosarcoma 9 261996 -NCIT:C5154 Brain Sarcoma 7 261997 -NCIT:C186610 Primary Intracranial Sarcoma, DICER1-Mutant 8 261998 -NCIT:C5462 Brain Extraskeletal Myxoid Chondrosarcoma 8 261999 -NCIT:C6973 Brain Liposarcoma 8 262000 -NCIT:C5817 Intracranial Embryonal Tumor, Not Otherwise Specified 7 262001 -NCIT:C5436 Cerebellopontine Angle Embryonal Tumor, Not Otherwise Specified 8 262002 -NCIT:C6968 Supratentorial Embryonal Tumor, Not Otherwise Specified 8 262003 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 9 262004 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 10 262005 -NCIT:C4970 Cerebral Embryonal Tumor, Not Otherwise Specified 9 262006 -NCIT:C68703 Adult Supratentorial Embryonal Tumor, Not Otherwise Specified 9 262007 -NCIT:C6284 Brain Germinoma 7 262008 -NCIT:C156040 Third Ventricle Germinoma 8 262009 -NCIT:C6207 Childhood Brain Germinoma 8 262010 -NCIT:C8712 Pineal Region Germinoma 8 262011 -NCIT:C7045 Malignant Intracranial Neoplasm by Morphology 6 262012 -NCIT:C27307 Anaplastic (Malignant) Intracranial Meningioma 7 262013 -NCIT:C5403 Malignant Intracranial Germ Cell Tumor 7 262014 -NCIT:C155804 Sellar Yolk Sac Tumor 8 262015 -NCIT:C155805 Sellar Embryonal Carcinoma 8 262016 -NCIT:C155806 Sellar Choriocarcinoma 8 262017 -NCIT:C155810 Sellar Teratoma with Malignant Transformation 8 262018 -NCIT:C155811 Sellar Mixed Germ Cell Tumor 8 262019 -NCIT:C5430 Intracranial Germinoma 8 262020 -NCIT:C155802 Sellar Germinoma 9 262021 -NCIT:C155803 Suprasellar Germinoma 10 262022 -NCIT:C6284 Brain Germinoma 9 262023 -NCIT:C156040 Third Ventricle Germinoma 10 262024 -NCIT:C6207 Childhood Brain Germinoma 10 262025 -NCIT:C8712 Pineal Region Germinoma 10 262026 -NCIT:C6767 Malignant Pineal Region Germ Cell Tumor 8 262027 -NCIT:C6752 Pineal Region Yolk Sac Tumor 9 262028 -NCIT:C6759 Pineal Region Choriocarcinoma 9 262029 -NCIT:C8712 Pineal Region Germinoma 9 262030 -NCIT:C5442 Intracranial Melanoma 7 262031 -NCIT:C5462 Brain Extraskeletal Myxoid Chondrosarcoma 7 262032 -NCIT:C6973 Brain Liposarcoma 7 262033 -NCIT:C7008 Intracranial Myeloid Sarcoma 7 262034 -NCIT:C9183 Adult Central Nervous System Solitary Fibrous Tumor, Grade 3 7 262035 -NCIT:C54099 Malignant Central Nervous System Germ Cell Tumor 5 262036 -NCIT:C5403 Malignant Intracranial Germ Cell Tumor 6 262037 -NCIT:C155804 Sellar Yolk Sac Tumor 7 262038 -NCIT:C155805 Sellar Embryonal Carcinoma 7 262039 -NCIT:C155806 Sellar Choriocarcinoma 7 262040 -NCIT:C155810 Sellar Teratoma with Malignant Transformation 7 262041 -NCIT:C155811 Sellar Mixed Germ Cell Tumor 7 262042 -NCIT:C5430 Intracranial Germinoma 7 262043 -NCIT:C155802 Sellar Germinoma 8 262044 -NCIT:C155803 Suprasellar Germinoma 9 262045 -NCIT:C6284 Brain Germinoma 8 262046 -NCIT:C156040 Third Ventricle Germinoma 9 262047 -NCIT:C6207 Childhood Brain Germinoma 9 262048 -NCIT:C8712 Pineal Region Germinoma 9 262049 -NCIT:C6767 Malignant Pineal Region Germ Cell Tumor 7 262050 -NCIT:C6752 Pineal Region Yolk Sac Tumor 8 262051 -NCIT:C6759 Pineal Region Choriocarcinoma 8 262052 -NCIT:C8712 Pineal Region Germinoma 8 262053 -NCIT:C7009 Central Nervous System Germinoma 6 262054 -NCIT:C27406 Childhood Central Nervous System Germinoma 7 262055 -NCIT:C6207 Childhood Brain Germinoma 8 262056 -NCIT:C5430 Intracranial Germinoma 7 262057 -NCIT:C155802 Sellar Germinoma 8 262058 -NCIT:C155803 Suprasellar Germinoma 9 262059 -NCIT:C6284 Brain Germinoma 8 262060 -NCIT:C156040 Third Ventricle Germinoma 9 262061 -NCIT:C6207 Childhood Brain Germinoma 9 262062 -NCIT:C8712 Pineal Region Germinoma 9 262063 -NCIT:C5792 Adult Central Nervous System Germinoma 7 262064 -NCIT:C7010 Central Nervous System Embryonal Carcinoma 6 262065 -NCIT:C155805 Sellar Embryonal Carcinoma 7 262066 -NCIT:C5790 Adult Central Nervous System Embryonal Carcinoma 7 262067 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 7 262068 -NCIT:C7011 Central Nervous System Yolk Sac Tumor 6 262069 -NCIT:C155804 Sellar Yolk Sac Tumor 7 262070 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 7 262071 -NCIT:C6752 Pineal Region Yolk Sac Tumor 7 262072 -NCIT:C7012 Central Nervous System Choriocarcinoma 6 262073 -NCIT:C155806 Sellar Choriocarcinoma 7 262074 -NCIT:C5793 Adult Central Nervous System Choriocarcinoma 7 262075 -NCIT:C6206 Childhood Central Nervous System Choriocarcinoma 7 262076 -NCIT:C6759 Pineal Region Choriocarcinoma 7 262077 -NCIT:C7015 Central Nervous System Teratoma with Malignant Transformation 6 262078 -NCIT:C155810 Sellar Teratoma with Malignant Transformation 7 262079 -NCIT:C7016 Central Nervous System Mixed Germ Cell Tumor 6 262080 -NCIT:C155811 Sellar Mixed Germ Cell Tumor 7 262081 -NCIT:C27402 Adult Central Nervous System Mixed Germ Cell Tumor 7 262082 -NCIT:C27403 Childhood Central Nervous System Mixed Germ Cell Tumor 7 262083 -NCIT:C5440 Central Nervous System Leukemia 5 262084 -NCIT:C94754 Meningeal Leukemia 6 262085 -NCIT:C9111 Meningeal Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 262086 -NCIT:C5448 Childhood Malignant Central Nervous System Neoplasm 5 262087 -NCIT:C114833 Childhood Central Nervous System Embryonal Tumor 6 262088 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 7 262089 -NCIT:C114812 Childhood Pineoblastoma 7 262090 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 262091 -NCIT:C114836 Recurrent Childhood Central Nervous System Embryonal Neoplasm 7 262092 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 262093 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 262094 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 262095 -NCIT:C115203 Childhood Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 7 262096 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 262097 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 9 262098 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 262099 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 7 262100 -NCIT:C3997 Childhood Medulloblastoma 7 262101 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 262102 -NCIT:C5961 Childhood Central Nervous System Embryonal Tumor, Not Otherwise Specified 7 262103 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 262104 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 9 262105 -NCIT:C68634 Childhood Atypical Teratoid/Rhabdoid Tumor 7 262106 -NCIT:C114973 Childhood Anaplastic Oligoastrocytoma 6 262107 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 7 262108 -NCIT:C124293 Childhood Anaplastic Ependymoma 6 262109 -NCIT:C187207 Childhood Malignant Brain Neoplasm 6 262110 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 7 262111 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 262112 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 7 262113 -NCIT:C114812 Childhood Pineoblastoma 7 262114 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 262115 -NCIT:C114969 Childhood Gliomatosis Cerebri 7 262116 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 8 262117 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 7 262118 -NCIT:C124292 Childhood Choroid Plexus Carcinoma 7 262119 -NCIT:C147901 Childhood Brain Glioblastoma 7 262120 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 8 262121 -NCIT:C185471 Infant-Type Hemispheric Glioma 7 262122 -NCIT:C185472 Infant-Type Hemispheric Glioma, NTRK-Altered 8 262123 -NCIT:C185473 Infant-Type Hemispheric Glioma, ROS1-Altered 8 262124 -NCIT:C185474 Infant-Type Hemispheric Glioma, ALK-Altered 8 262125 -NCIT:C185475 Infant-Type Hemispheric Glioma, MET-Altered 8 262126 -NCIT:C187211 Metastatic Childhood Malignant Neoplasm in the Brain 7 262127 -NCIT:C187212 Metastatic Childhood Malignant Brain Neoplasm 7 262128 -NCIT:C187213 Advanced Childhood Malignant Brain Neoplasm 8 262129 -NCIT:C188922 Childhood Diffuse Midline Glioma, H3 K27-Altered 7 262130 -NCIT:C188924 Childhood Diffuse Intrinsic Pontine Glioma 7 262131 -NCIT:C188926 Childhood Diffuse Hemispheric Glioma, H3 G34-Mutant 7 262132 -NCIT:C188935 Childhood Supratentorial Ependymoma ZFTA Fusion-Positive 7 262133 -NCIT:C3997 Childhood Medulloblastoma 7 262134 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 262135 -NCIT:C6207 Childhood Brain Germinoma 7 262136 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 7 262137 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 8 262138 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 8 262139 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 7 262140 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 262141 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 7 262142 -NCIT:C27403 Childhood Central Nervous System Mixed Germ Cell Tumor 6 262143 -NCIT:C27406 Childhood Central Nervous System Germinoma 6 262144 -NCIT:C6207 Childhood Brain Germinoma 7 262145 -NCIT:C5136 Childhood Glioblastoma 6 262146 -NCIT:C114966 Childhood Giant Cell Glioblastoma 7 262147 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 8 262148 -NCIT:C114968 Childhood Gliosarcoma 7 262149 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 8 262150 -NCIT:C115365 Recurrent Childhood Gliosarcoma 8 262151 -NCIT:C115364 Recurrent Childhood Glioblastoma 7 262152 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 8 262153 -NCIT:C115365 Recurrent Childhood Gliosarcoma 8 262154 -NCIT:C147901 Childhood Brain Glioblastoma 7 262155 -NCIT:C114759 Childhood Brain Stem Gliosarcoma 8 262156 -NCIT:C5318 Childhood Meningeal Melanoma 6 262157 -NCIT:C5447 Childhood Anaplastic Oligodendroglioma 6 262158 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 7 262159 -NCIT:C6206 Childhood Central Nervous System Choriocarcinoma 6 262160 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 6 262161 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 6 262162 -NCIT:C6215 Childhood Anaplastic Astrocytoma 6 262163 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 7 262164 -NCIT:C6252 Childhood Brain Anaplastic Astrocytoma 7 262165 -NCIT:C115201 Childhood Cerebellar Anaplastic Astrocytoma 8 262166 -NCIT:C115202 Childhood Cerebral Anaplastic Astrocytoma 8 262167 -NCIT:C71303 Childhood Grade 3 Meningioma 6 262168 -NCIT:C9047 Childhood Intraocular Retinoblastoma 6 262169 -NCIT:C9048 Childhood Extraocular Retinoblastoma 6 262170 -NCIT:C5505 Central Nervous System Melanoma 5 262171 -NCIT:C5158 Spinal Cord Melanoma 6 262172 -NCIT:C5317 Meningeal Melanoma 6 262173 -NCIT:C5318 Childhood Meningeal Melanoma 7 262174 -NCIT:C5319 Adult Meningeal Melanoma 7 262175 -NCIT:C6891 Meningeal Melanomatosis 7 262176 -NCIT:C5442 Intracranial Melanoma 6 262177 -NCIT:C62332 Central Nervous System Carcinoma 5 262178 -NCIT:C4715 Choroid Plexus Carcinoma 6 262179 -NCIT:C124292 Childhood Choroid Plexus Carcinoma 7 262180 -NCIT:C6758 Malignant Central Nervous System Mesenchymal, Non-Meningothelial Neoplasm 5 262181 -NCIT:C129527 Central Nervous System Solitary Fibrous Tumor, Grade 3 6 262182 -NCIT:C186603 Central Nervous System Dedifferentiated Solitary Fibrous Tumor 7 262183 -NCIT:C9183 Adult Central Nervous System Solitary Fibrous Tumor, Grade 3 7 262184 -NCIT:C92652 Meningeal Central Nervous System Solitary Fibrous Tumor, Grade 3 7 262185 -NCIT:C129536 Central Nervous System Epithelioid Hemangioendothelioma 6 262186 -NCIT:C5153 Central Nervous System Sarcoma 6 262187 -NCIT:C129534 Central Nervous System Mesenchymal Chondrosarcoma 7 262188 -NCIT:C129566 Central Nervous System Undifferentiated Pleomorphic Sarcoma 7 262189 -NCIT:C186607 Central Nervous System CIC-Rearranged Sarcoma 7 262190 -NCIT:C186611 Central Nervous System Ewing Sarcoma 7 262191 -NCIT:C4073 Meningeal Sarcoma 7 262192 -NCIT:C4334 Meningeal Sarcomatosis 8 262193 -NCIT:C8312 Leptomeningeal Sarcoma 8 262194 -NCIT:C5152 Spinal Cord Sarcoma 7 262195 -NCIT:C5154 Brain Sarcoma 7 262196 -NCIT:C186610 Primary Intracranial Sarcoma, DICER1-Mutant 8 262197 -NCIT:C5462 Brain Extraskeletal Myxoid Chondrosarcoma 8 262198 -NCIT:C6973 Brain Liposarcoma 8 262199 -NCIT:C5450 Central Nervous System Angiosarcoma 7 262200 -NCIT:C5464 Central Nervous System Rhabdomyosarcoma 7 262201 -NCIT:C5465 Central Nervous System Fibrosarcoma 7 262202 -NCIT:C6999 Central Nervous System Leiomyosarcoma 7 262203 -NCIT:C7002 Central Nervous System Extraskeletal Osteosarcoma 7 262204 -NCIT:C7006 Central Nervous System Kaposi Sarcoma 7 262205 -NCIT:C6990 Central Nervous System Embryonal Tumor 5 262206 -NCIT:C114833 Childhood Central Nervous System Embryonal Tumor 6 262207 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 7 262208 -NCIT:C114812 Childhood Pineoblastoma 7 262209 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 262210 -NCIT:C114836 Recurrent Childhood Central Nervous System Embryonal Neoplasm 7 262211 -NCIT:C115374 Recurrent Childhood Pineoblastoma 8 262212 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 262213 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 262214 -NCIT:C115203 Childhood Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 7 262215 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 262216 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 9 262217 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 262218 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 7 262219 -NCIT:C3997 Childhood Medulloblastoma 7 262220 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 262221 -NCIT:C5961 Childhood Central Nervous System Embryonal Tumor, Not Otherwise Specified 7 262222 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 262223 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 9 262224 -NCIT:C68634 Childhood Atypical Teratoid/Rhabdoid Tumor 7 262225 -NCIT:C121963 Cribriform Neuroepithelial Tumor 6 262226 -NCIT:C129501 Central Nervous System Embryonal Tumor with Rhabdoid Features 6 262227 -NCIT:C129537 Central Nervous System Ewing Sarcoma/Peripheral Primitive Neuroectodermal Tumor 6 262228 -NCIT:C186611 Central Nervous System Ewing Sarcoma 7 262229 -NCIT:C186534 Embryonal Tumor with Multilayered Rosettes 6 262230 -NCIT:C129499 Embryonal Tumor with Multilayered Rosettes without C19MC Alteration 7 262231 -NCIT:C186535 Embryonal Tumor with Multilayered Rosettes, DICER1-Mutated 7 262232 -NCIT:C4915 Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 7 262233 -NCIT:C115203 Childhood Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 262234 -NCIT:C6772 Childhood Supratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 9 262235 -NCIT:C6957 Childhood Cerebral Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 10 262236 -NCIT:C6773 Childhood Infratentorial Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 9 262237 -NCIT:C8290 Adult Embryonal Tumor with Multilayered Rosettes, C19MC-Altered 8 262238 -NCIT:C186542 Central Nervous System Embryonal Tumor, Not Elsewhere Classified 6 262239 -NCIT:C186556 Central Nervous System Tumor with BCOR Internal Tandem Duplication 6 262240 -NCIT:C3222 Medulloblastoma 6 262241 -NCIT:C129436 Large Cell/Anaplastic Medulloblastoma 7 262242 -NCIT:C129439 Medulloblastoma Molecular Subtypes 7 262243 -NCIT:C129440 Medulloblastoma, WNT-Activated 8 262244 -NCIT:C180892 Refractory Medulloblastoma, WNT-Activated 9 262245 -NCIT:C180893 Recurrent Medulloblastoma, WNT-Activated 9 262246 -NCIT:C129441 Medulloblastoma, SHH-Activated 8 262247 -NCIT:C129442 Medulloblastoma, SHH-Activated, TP53-Mutant 9 262248 -NCIT:C129443 Medulloblastoma, SHH-Activated, TP53-Wildtype 9 262249 -NCIT:C186591 ELP1-Associated Medulloblastoma 10 262250 -NCIT:C147109 Recurrent Medulloblastoma, SHH-Activated 9 262251 -NCIT:C147110 Refractory Medulloblastoma, SHH-Activated 9 262252 -NCIT:C189841 Medulloblastoma, SHH-1 9 262253 -NCIT:C189844 Medulloblastoma, SHH-2 9 262254 -NCIT:C189845 Medulloblastoma, SHH-3 9 262255 -NCIT:C189846 Medulloblastoma, SHH-4 9 262256 -NCIT:C129444 Medulloblastoma, Non-WNT/Non-SHH 8 262257 -NCIT:C129445 Medulloblastoma, Non-WNT/Non-SHH, Group 3 9 262258 -NCIT:C129446 Medulloblastoma, Non-WNT/Non-SHH, Group 4 9 262259 -NCIT:C129447 Medulloblastoma, Not Otherwise Specified 7 262260 -NCIT:C142856 Refractory Medulloblastoma 7 262261 -NCIT:C147110 Refractory Medulloblastoma, SHH-Activated 8 262262 -NCIT:C180892 Refractory Medulloblastoma, WNT-Activated 8 262263 -NCIT:C156039 Fourth Ventricle Medulloblastoma 7 262264 -NCIT:C177725 Metastatic Medulloblastoma 7 262265 -NCIT:C5399 Medulloblastoma with Leptomeningeal Spread 8 262266 -NCIT:C27237 Familial Adenomatous Polyposis Associated Medulloblastoma 7 262267 -NCIT:C3706 Medullomyoblastoma 7 262268 -NCIT:C3997 Childhood Medulloblastoma 7 262269 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 262270 -NCIT:C4011 Adult Medulloblastoma 7 262271 -NCIT:C4956 Desmoplastic/Nodular Medulloblastoma 7 262272 -NCIT:C5401 Cerebellar Vermis Medulloblastoma 7 262273 -NCIT:C5402 Region 17p13 Allelic Loss Associated Medulloblastoma 7 262274 -NCIT:C54039 Classic Medulloblastoma 7 262275 -NCIT:C5405 Nevoid Basal Cell Carcinoma Syndrome Associated Medulloblastoma 7 262276 -NCIT:C5407 Medulloblastoma with Extensive Nodularity 7 262277 -NCIT:C5588 Recurrent Medulloblastoma 7 262278 -NCIT:C147109 Recurrent Medulloblastoma, SHH-Activated 8 262279 -NCIT:C180893 Recurrent Medulloblastoma, WNT-Activated 8 262280 -NCIT:C6774 Recurrent Childhood Medulloblastoma 8 262281 -NCIT:C6904 Large Cell Medulloblastoma 7 262282 -NCIT:C92625 Anaplastic Medulloblastoma 7 262283 -NCIT:C9497 Melanocytic Medulloblastoma 7 262284 -NCIT:C4327 Central Nervous System Medulloepithelioma 6 262285 -NCIT:C4826 Central Nervous System Neuroblastoma 6 262286 -NCIT:C114775 Childhood Central Nervous System Neuroblastoma 7 262287 -NCIT:C186547 Central Nervous System Neuroblastoma, FOXR2-Activated 7 262288 -NCIT:C5398 Central Nervous System Embryonal Tumor, Not Otherwise Specified 6 262289 -NCIT:C5400 Central Nervous System Embryonal Tumor, Not Otherwise Specified with Leptomeningeal Spread 7 262290 -NCIT:C5406 Spinal Cord Embryonal Tumor, Not Otherwise Specified 7 262291 -NCIT:C5411 Adult Central Nervous System Embryonal Tumor, Not Otherwise Specified 7 262292 -NCIT:C68703 Adult Supratentorial Embryonal Tumor, Not Otherwise Specified 8 262293 -NCIT:C5817 Intracranial Embryonal Tumor, Not Otherwise Specified 7 262294 -NCIT:C5436 Cerebellopontine Angle Embryonal Tumor, Not Otherwise Specified 8 262295 -NCIT:C6968 Supratentorial Embryonal Tumor, Not Otherwise Specified 8 262296 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 9 262297 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 10 262298 -NCIT:C4970 Cerebral Embryonal Tumor, Not Otherwise Specified 9 262299 -NCIT:C68703 Adult Supratentorial Embryonal Tumor, Not Otherwise Specified 9 262300 -NCIT:C5961 Childhood Central Nervous System Embryonal Tumor, Not Otherwise Specified 7 262301 -NCIT:C114774 Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 8 262302 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 9 262303 -NCIT:C6906 Atypical Teratoid/Rhabdoid Tumor 6 262304 -NCIT:C133499 Recurrent Atypical Teratoid/Rhabdoid Tumor 7 262305 -NCIT:C162723 Refractory Atypical Teratoid/Rhabdoid Tumor 7 262306 -NCIT:C68634 Childhood Atypical Teratoid/Rhabdoid Tumor 7 262307 -NCIT:C92629 Central Nervous System Ganglioneuroblastoma 6 262308 -NCIT:C124272 Childhood Central Nervous System Ganglioneuroblastoma 7 262309 -NCIT:C7541 Retinoblastoma 5 262310 -NCIT:C140750 Retinoblastoma by AJCC v8 Stage 6 262311 -NCIT:C140751 Retinoblastoma by AJCC v8 Clinical Stage 7 262312 -NCIT:C140752 Clinical Stage I Retinoblastoma AJCC v8 8 262313 -NCIT:C140753 Clinical Stage II Retinoblastoma AJCC v8 8 262314 -NCIT:C140754 Clinical Stage III Retinoblastoma AJCC v8 8 262315 -NCIT:C140755 Clinical Stage IV Retinoblastoma AJCC v8 8 262316 -NCIT:C140756 Retinoblastoma by AJCC v8 Pathologic Stage 7 262317 -NCIT:C140757 Pathologic Stage I Retinoblastoma AJCC v8 8 262318 -NCIT:C140758 Pathologic Stage II Retinoblastoma AJCC v8 8 262319 -NCIT:C140759 Pathologic Stage III Retinoblastoma AJCC v8 8 262320 -NCIT:C140760 Pathologic Stage IV Retinoblastoma AJCC v8 8 262321 -NCIT:C42596 Sporadic Retinoblastoma 6 262322 -NCIT:C66813 Differentiated Retinoblastoma 6 262323 -NCIT:C66814 Undifferentiated Retinoblastoma 6 262324 -NCIT:C66815 Diffuse Retinoblastoma 6 262325 -NCIT:C7019 Trilateral Retinoblastoma 6 262326 -NCIT:C7846 Intraocular Retinoblastoma 6 262327 -NCIT:C9047 Childhood Intraocular Retinoblastoma 7 262328 -NCIT:C7848 Extraocular Retinoblastoma 6 262329 -NCIT:C9048 Childhood Extraocular Retinoblastoma 7 262330 -NCIT:C7849 Recurrent Retinoblastoma 6 262331 -NCIT:C8495 Hereditary Retinoblastoma 6 262332 -NCIT:C8713 Bilateral Retinoblastoma 6 262333 -NCIT:C8714 Unilateral Retinoblastoma 6 262334 -NCIT:C9301 Central Nervous System Lymphoma 5 262335 -NCIT:C114779 Central Nervous System Non-Hodgkin Lymphoma 6 262336 -NCIT:C146989 Refractory Central Nervous System Non-Hodgkin Lymphoma 7 262337 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 8 262338 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 262339 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 262340 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 262341 -NCIT:C146990 Recurrent Central Nervous System Non-Hodgkin Lymphoma 7 262342 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 8 262343 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 262344 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 262345 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 262346 -NCIT:C147948 Central Nervous System B-Cell Non-Hodgkin Lymphoma 7 262347 -NCIT:C71720 Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 262348 -NCIT:C129602 Central Nervous System Intravascular Large B-Cell Lymphoma 9 262349 -NCIT:C155797 Pituitary Gland Diffuse Large B-Cell Lymphoma 9 262350 -NCIT:C157067 Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 262351 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 262352 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 262353 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 262354 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 262355 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 262356 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 262357 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 262358 -NCIT:C95991 Dural Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 8 262359 -NCIT:C155796 Pituitary Gland Non-Hodgkin Lymphoma 7 262360 -NCIT:C155797 Pituitary Gland Diffuse Large B-Cell Lymphoma 8 262361 -NCIT:C157065 Primary Vitreoretinal Non-Hodgkin Lymphoma 7 262362 -NCIT:C157067 Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 262363 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 262364 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 262365 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 8 262366 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 262367 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 8 262368 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 262369 -NCIT:C4365 Primary Retinal Non-Hodgkin Lymphoma 8 262370 -NCIT:C5409 Central Nervous System T-Cell Non-Hodgkin Lymphoma 7 262371 -NCIT:C129600 Central Nervous System Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 8 262372 -NCIT:C5322 Central Nervous System Anaplastic Large Cell Lymphoma 9 262373 -NCIT:C129598 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Positive 10 262374 -NCIT:C129599 Central Nervous System Anaplastic Large Cell Lymphoma, ALK-Negative 10 262375 -NCIT:C7609 Cerebral Non-Hodgkin Lymphoma 7 262376 -NCIT:C114951 Central Nervous System Hodgkin Lymphoma 6 262377 -NCIT:C5055 Cerebral Hodgkin Lymphoma 7 262378 -NCIT:C138019 Recurrent Central Nervous System Lymphoma 6 262379 -NCIT:C146990 Recurrent Central Nervous System Non-Hodgkin Lymphoma 7 262380 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 8 262381 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 262382 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 262383 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 262384 -NCIT:C138020 Refractory Central Nervous System Lymphoma 6 262385 -NCIT:C146989 Refractory Central Nervous System Non-Hodgkin Lymphoma 7 262386 -NCIT:C157069 Refractory Primary Vitreoretinal Non-Hodgkin Lymphoma 8 262387 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 262388 -NCIT:C157074 Refractory Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 262389 -NCIT:C157071 Refractory Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 9 262390 -NCIT:C186658 Immunodeficiency-Related Central Nervous System Lymphoma 6 262391 -NCIT:C8284 AIDS-Related Primary Central Nervous System Lymphoma 7 262392 -NCIT:C186660 AIDS-Related Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 8 262393 -NCIT:C5157 Spinal Cord Lymphoma 6 262394 -NCIT:C7611 Cerebral Lymphoma 6 262395 -NCIT:C5054 Cerebral Lymphoma in Immunocompetent Host 7 262396 -NCIT:C5055 Cerebral Hodgkin Lymphoma 7 262397 -NCIT:C7609 Cerebral Non-Hodgkin Lymphoma 7 262398 -NCIT:C94756 Meningeal Lymphoma 6 262399 -NCIT:C95991 Dural Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 7 262400 -NCIT:C4961 Malignant Peripheral Nervous System Neoplasm 4 262401 -NCIT:C3798 Malignant Peripheral Nerve Sheath Tumor 5 262402 -NCIT:C128050 Cervical Malignant Peripheral Nerve Sheath Tumor 6 262403 -NCIT:C155987 Refractory Malignant Peripheral Nerve Sheath Tumor 6 262404 -NCIT:C162725 Refractory Epithelioid Malignant Peripheral Nerve Sheath Tumor 7 262405 -NCIT:C156341 Thyroid Gland Malignant Peripheral Nerve Sheath Tumor 6 262406 -NCIT:C162584 Penile Malignant Peripheral Nerve Sheath Tumor 6 262407 -NCIT:C164312 Unresectable Malignant Peripheral Nerve Sheath Tumor 6 262408 -NCIT:C164313 NF1-Associated Malignant Peripheral Nerve Sheath Tumor 6 262409 -NCIT:C164314 Sporadic Malignant Peripheral Nerve Sheath Tumor 6 262410 -NCIT:C164316 Radiation-Induced Malignant Peripheral Nerve Sheath Tumor 6 262411 -NCIT:C172624 Malignant Peripheral Nerve Sheath Tumor of the Skin 6 262412 -NCIT:C172625 Epithelioid Malignant Peripheral Nerve Sheath Tumor of the Skin 7 262413 -NCIT:C173127 Sinonasal Malignant Peripheral Nerve Sheath Tumor 6 262414 -NCIT:C188064 Bone Malignant Peripheral Nerve Sheath Tumor 6 262415 -NCIT:C188073 Retroperitoneal Malignant Peripheral Nerve Sheath Tumor 6 262416 -NCIT:C4748 Malignant Melanotic Peripheral Nerve Sheath Tumor 6 262417 -NCIT:C6630 Malignant Melanotic Peripheral Nerve Sheath Tumor of the Mediastinum 7 262418 -NCIT:C6910 Malignant Melanotic Psammomatous Peripheral Nerve Sheath Tumor 7 262419 -NCIT:C5367 Cardiac Malignant Peripheral Nerve Sheath Tumor 6 262420 -NCIT:C6560 Glandular Malignant Peripheral Nerve Sheath Tumor 6 262421 -NCIT:C6561 Epithelioid Malignant Peripheral Nerve Sheath Tumor 6 262422 -NCIT:C162724 Recurrent Epithelioid Malignant Peripheral Nerve Sheath Tumor 7 262423 -NCIT:C162725 Refractory Epithelioid Malignant Peripheral Nerve Sheath Tumor 7 262424 -NCIT:C172625 Epithelioid Malignant Peripheral Nerve Sheath Tumor of the Skin 7 262425 -NCIT:C6626 Mediastinal Malignant Peripheral Nerve Sheath Tumor 6 262426 -NCIT:C6630 Malignant Melanotic Peripheral Nerve Sheath Tumor of the Mediastinum 7 262427 -NCIT:C66845 Malignant Peripheral Nerve Sheath Tumor with Perineurial Differentiation 6 262428 -NCIT:C7814 Adult Malignant Peripheral Nerve Sheath Tumor 6 262429 -NCIT:C8094 Childhood Malignant Peripheral Nerve Sheath Tumor 6 262430 -NCIT:C8822 Metastatic Malignant Peripheral Nerve Sheath Tumor 6 262431 -NCIT:C164074 Locally Advanced Malignant Peripheral Nerve Sheath Tumor 7 262432 -NCIT:C168714 Advanced Malignant Peripheral Nerve Sheath Tumor 7 262433 -NCIT:C8823 Recurrent Malignant Peripheral Nerve Sheath Tumor 6 262434 -NCIT:C162724 Recurrent Epithelioid Malignant Peripheral Nerve Sheath Tumor 7 262435 -NCIT:C9026 Low Grade Malignant Peripheral Nerve Sheath Tumor 6 262436 -NCIT:C9030 High Grade Malignant Peripheral Nerve Sheath Tumor 6 262437 -NCIT:C92185 Esophageal Malignant Peripheral Nerve Sheath Tumor 6 262438 -NCIT:C92186 Intraocular Malignant Peripheral Nerve Sheath Tumor 6 262439 -NCIT:C92647 Malignant Peripheral Nerve Sheath Tumor with Mesenchymal Differentiation 6 262440 -NCIT:C4335 Malignant Triton Tumor 7 262441 -NCIT:C4336 Malignant Granular Cell Tumor 5 262442 -NCIT:C5484 Malignant Gastric Granular Cell Tumor 6 262443 -NCIT:C5614 Malignant Cutaneous Granular Cell Tumor 6 262444 -NCIT:C6591 Peripheral Neuroblastoma 5 262445 -NCIT:C6628 Mediastinal Neuroblastoma 6 262446 -NCIT:C6964 Neuroblastoma of the Adrenal Gland and Sympathetic Nervous System 6 262447 -NCIT:C4827 Adrenal Gland Neuroblastoma 7 262448 -NCIT:C6594 Peripheral Ganglioneuroblastoma 5 262449 -NCIT:C6627 Mediastinal Ganglioneuroblastoma 6 262450 -NCIT:C7646 Adrenal Gland Ganglioneuroblastoma 6 262451 -NCIT:C157243 Adrenal Gland Ganglioneuroblastoma, Intermixed 7 262452 -NCIT:C157244 Adrenal Gland Ganglioneuroblastoma, Nodular 7 262453 -NCIT:C8559 Metastatic Paraganglioma 5 262454 -NCIT:C133713 Locally Advanced Paraganglioma 6 262455 -NCIT:C157129 Locally Advanced Adrenal Gland Pheochromocytoma 7 262456 -NCIT:C160852 Advanced Paraganglioma 6 262457 -NCIT:C160853 Advanced Adrenal Gland Pheochromocytoma 7 262458 -NCIT:C4219 Metastatic Extra-Adrenal Paraganglioma 6 262459 -NCIT:C3574 Metastatic Carotid Body Paraganglioma 7 262460 -NCIT:C4623 Metastatic Jugulotympanic Paraganglioma 7 262461 -NCIT:C5392 Metastatic Cardiac Paraganglioma 7 262462 -NCIT:C6413 Metastatic Intrathoracic Paravertebral Paraganglioma 7 262463 -NCIT:C6416 Metastatic Bladder Paraganglioma 7 262464 -NCIT:C4220 Metastatic Adrenal Gland Pheochromocytoma 6 262465 -NCIT:C157129 Locally Advanced Adrenal Gland Pheochromocytoma 7 262466 -NCIT:C160853 Advanced Adrenal Gland Pheochromocytoma 7 262467 -NCIT:C92184 Metastatic Adrenal Gland Composite Pheochromocytoma 7 262468 -NCIT:C9341 Peripheral Primitive Neuroectodermal Tumor 5 262469 -NCIT:C142850 Refractory Peripheral Primitive Neuroectodermal Tumor 6 262470 -NCIT:C27471 Peripheral Primitive Neuroectodermal Tumor of Soft Tissues 6 262471 -NCIT:C27899 Recurrent Peripheral Primitive Neuroectodermal Tumor 6 262472 -NCIT:C27354 Recurrent Peripheral Primitive Neuroectodermal Tumor of Bone 7 262473 -NCIT:C27900 Recurrent Askin Tumor 7 262474 -NCIT:C27903 Localized Peripheral Primitive Neuroectodermal Tumor 6 262475 -NCIT:C27353 Localized Peripheral Primitive Neuroectodermal Tumor of Bone 7 262476 -NCIT:C27902 Localized Askin Tumor 7 262477 -NCIT:C67214 Peripheral Primitive Neuroectodermal Tumor of the Kidney 6 262478 -NCIT:C7542 Askin Tumor 6 262479 -NCIT:C27900 Recurrent Askin Tumor 7 262480 -NCIT:C27902 Localized Askin Tumor 7 262481 -NCIT:C8776 Peripheral Primitive Neuroectodermal Tumor of Bone 6 262482 -NCIT:C27353 Localized Peripheral Primitive Neuroectodermal Tumor of Bone 7 262483 -NCIT:C27354 Recurrent Peripheral Primitive Neuroectodermal Tumor of Bone 7 262484 -NCIT:C36074 Metastatic Peripheral Primitive Neuroectodermal Tumor of Bone 7 262485 -NCIT:C8547 Metastatic Malignant Neoplasm in the Nervous System 4 262486 -NCIT:C4015 Metastatic Malignant Neoplasm in the Central Nervous System 5 262487 -NCIT:C133501 Breast Carcinoma Metastatic in the Central Nervous System 6 262488 -NCIT:C36301 Breast Carcinoma Metastatic in the Brain 7 262489 -NCIT:C133503 Lung Carcinoma Metastatic in the Central Nervous System 6 262490 -NCIT:C36304 Lung Carcinoma Metastatic in the Brain 7 262491 -NCIT:C133504 Melanoma Metastatic in the Central Nervous System 6 262492 -NCIT:C179206 Melanoma Metastatic in the Brain 7 262493 -NCIT:C155786 Metastatic Malignant Neoplasm in the Sellar Region 6 262494 -NCIT:C6805 Metastatic Malignant Neoplasm in the Pituitary Gland 7 262495 -NCIT:C175220 Metastatic Malignant Neoplasm in the Visual Pathway 6 262496 -NCIT:C3813 Metastatic Malignant Neoplasm in the Brain 6 262497 -NCIT:C179206 Melanoma Metastatic in the Brain 7 262498 -NCIT:C187211 Metastatic Childhood Malignant Neoplasm in the Brain 7 262499 -NCIT:C36301 Breast Carcinoma Metastatic in the Brain 7 262500 -NCIT:C36304 Lung Carcinoma Metastatic in the Brain 7 262501 -NCIT:C5057 Secondary Cerebral Hodgkin Lymphoma 7 262502 -NCIT:C5816 Metastatic Adult Malignant Neoplasm in the Brain 7 262503 -NCIT:C8550 Metastatic Malignant Neoplasm in the Brain Stem 7 262504 -NCIT:C3814 Metastatic Malignant Neoplasm in the Leptomeninges 6 262505 -NCIT:C173916 Recurrent Metastatic Malignant Neoplasm in the Leptomeninges 7 262506 -NCIT:C185039 Extramedullary Disease in Plasma Cell Myeloma Involving the Leptomeninges 7 262507 -NCIT:C5399 Medulloblastoma with Leptomeningeal Spread 7 262508 -NCIT:C5400 Central Nervous System Embryonal Tumor, Not Otherwise Specified with Leptomeningeal Spread 7 262509 -NCIT:C94754 Meningeal Leukemia 7 262510 -NCIT:C9111 Meningeal Chronic Myelogenous Leukemia, BCR-ABL1 Positive 8 262511 -NCIT:C4585 Metastatic Malignant Neoplasm in the Spinal Cord 6 262512 -NCIT:C5439 Drop Metastasis in the Spinal Cord 7 262513 -NCIT:C87797 Secondary Central Nervous System Lymphoma 6 262514 -NCIT:C114949 Secondary Central Nervous System Hodgkin Lymphoma 7 262515 -NCIT:C5057 Secondary Cerebral Hodgkin Lymphoma 8 262516 -NCIT:C114950 Secondary Central Nervous System Non-Hodgkin Lymphoma 7 262517 -NCIT:C4813 Recurrent Malignant Neoplasm 3 262518 -NCIT:C127153 Recurrent Malignant Solid Neoplasm 4 262519 -NCIT:C148026 Recurrent Childhood Malignant Solid Neoplasm 5 262520 -NCIT:C170830 Recurrent Extracranial Malignant Solid Neoplasm 5 262521 -NCIT:C131500 Recurrent Primary Malignant Neoplasm 4 262522 -NCIT:C114836 Recurrent Childhood Central Nervous System Embryonal Neoplasm 5 262523 -NCIT:C115374 Recurrent Childhood Pineoblastoma 6 262524 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 6 262525 -NCIT:C6774 Recurrent Childhood Medulloblastoma 6 262526 -NCIT:C115441 Recurrent Primary Peritoneal Carcinoma 5 262527 -NCIT:C170751 Recurrent Platinum-Resistant Primary Peritoneal Carcinoma 6 262528 -NCIT:C170756 Recurrent Primary Peritoneal Undifferentiated Carcinoma 6 262529 -NCIT:C170759 Recurrent Primary Peritoneal Transitional Cell Carcinoma 6 262530 -NCIT:C170767 Recurrent Primary Peritoneal Adenocarcinoma 6 262531 -NCIT:C156453 Recurrent Primary Peritoneal Serous Adenocarcinoma 7 262532 -NCIT:C156454 Recurrent Primary Peritoneal Low Grade Serous Adenocarcinoma 8 262533 -NCIT:C165268 Recurrent Primary Peritoneal High Grade Serous Adenocarcinoma 8 262534 -NCIT:C165269 Recurrent Primary Peritoneal Endometrioid Adenocarcinoma 7 262535 -NCIT:C170761 Recurrent Primary Peritoneal Clear Cell Adenocarcinoma 7 262536 -NCIT:C191407 Recurrent Platinum-Sensitive Primary Peritoneal Carcinoma 6 262537 -NCIT:C115444 Recurrent Combined Thymic Epithelial Neoplasm 5 262538 -NCIT:C133732 Recurrent Primary Amyloidosis 5 262539 -NCIT:C174054 Recurrent AL Amyloidosis 6 262540 -NCIT:C138021 Recurrent Testicular Lymphoma 5 262541 -NCIT:C138023 Recurrent Breast Lymphoma 5 262542 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 6 262543 -NCIT:C142848 Recurrent Malignant Glioma 5 262544 -NCIT:C126306 Recurrent Glioblastoma 6 262545 -NCIT:C115364 Recurrent Childhood Glioblastoma 7 262546 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 8 262547 -NCIT:C115365 Recurrent Childhood Gliosarcoma 8 262548 -NCIT:C182019 Recurrent Glioblastoma, IDH-Wildtype 7 262549 -NCIT:C131209 Recurrent Gliosarcoma 8 262550 -NCIT:C115365 Recurrent Childhood Gliosarcoma 9 262551 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 8 262552 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 9 262553 -NCIT:C163961 Recurrent Small Cell Glioblastoma 8 262554 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 8 262555 -NCIT:C191198 Recurrent Brain Glioblastoma 7 262556 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 8 262557 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 6 262558 -NCIT:C148038 Recurrent WHO Grade 3 Glioma 6 262559 -NCIT:C136517 Recurrent Anaplastic Astrocytoma 7 262560 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 8 262561 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 8 262562 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 8 262563 -NCIT:C142861 Recurrent Anaplastic Oligoastrocytoma 7 262564 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 8 262565 -NCIT:C142862 Recurrent Anaplastic Oligodendroglioma 7 262566 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 8 262567 -NCIT:C160904 Recurrent Anaplastic Pleomorphic Xanthoastrocytoma 7 262568 -NCIT:C160912 Recurrent Anaplastic Ependymoma 7 262569 -NCIT:C179222 Recurrent Diffuse Midline Glioma, H3 K27M-Mutant 6 262570 -NCIT:C182018 Recurrent Astrocytoma, IDH-Mutant, Grade 4 6 262571 -NCIT:C142876 Recurrent Primary Cutaneous Lymphoma 5 262572 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 6 262573 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 6 262574 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 7 262575 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 7 262576 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 7 262577 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 7 262578 -NCIT:C8686 Recurrent Mycosis Fungoides 7 262579 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 8 262580 -NCIT:C150528 Recurrent Malignant Neoplasm of Multiple Primary Sites 5 262581 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 5 262582 -NCIT:C157679 Recurrent Primary Effusion Lymphoma 5 262583 -NCIT:C157681 Recurrent Primary Bone Lymphoma 5 262584 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 5 262585 -NCIT:C27295 Recurrent Primitive Neuroectodermal Tumor 5 262586 -NCIT:C173531 Recurrent Ganglioneuroblastoma 6 262587 -NCIT:C27899 Recurrent Peripheral Primitive Neuroectodermal Tumor 6 262588 -NCIT:C27354 Recurrent Peripheral Primitive Neuroectodermal Tumor of Bone 7 262589 -NCIT:C27900 Recurrent Askin Tumor 7 262590 -NCIT:C7837 Recurrent Neuroblastoma 6 262591 -NCIT:C115384 Recurrent Olfactory Neuroblastoma 7 262592 -NCIT:C27898 Recurrent Ewing Sarcoma/Peripheral Primitive Neuroectodermal Tumor 5 262593 -NCIT:C27899 Recurrent Peripheral Primitive Neuroectodermal Tumor 6 262594 -NCIT:C27354 Recurrent Peripheral Primitive Neuroectodermal Tumor of Bone 7 262595 -NCIT:C27900 Recurrent Askin Tumor 7 262596 -NCIT:C7808 Recurrent Ewing Sarcoma 6 262597 -NCIT:C6622 Recurrent Bone Ewing Sarcoma 7 262598 -NCIT:C8803 Recurrent Extraskeletal Ewing Sarcoma 7 262599 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 5 262600 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 5 262601 -NCIT:C5588 Recurrent Medulloblastoma 5 262602 -NCIT:C147109 Recurrent Medulloblastoma, SHH-Activated 6 262603 -NCIT:C180893 Recurrent Medulloblastoma, WNT-Activated 6 262604 -NCIT:C6774 Recurrent Childhood Medulloblastoma 6 262605 -NCIT:C7087 Recurrent Melanoma 5 262606 -NCIT:C182020 Recurrent Metastatic Melanoma 6 262607 -NCIT:C7088 Recurrent Non-Cutaneous Melanoma 6 262608 -NCIT:C170954 Recurrent Mucosal Melanoma 7 262609 -NCIT:C171294 Recurrent Ocular Melanoma 7 262610 -NCIT:C7914 Recurrent Uveal Melanoma 8 262611 -NCIT:C9097 Recurrent Cutaneous Melanoma 6 262612 -NCIT:C155306 Recurrent Cutaneous Melanoma of the Extremity 7 262613 -NCIT:C175435 Recurrent Acral Lentiginous Melanoma 8 262614 -NCIT:C8785 Recurrent Lentigo Maligna Melanoma 7 262615 -NCIT:C7845 Recurrent Kidney Wilms Tumor 5 262616 -NCIT:C7880 Recurrent Adult Liver Carcinoma 5 262617 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 6 262618 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 5 262619 -NCIT:C9264 Recurrent Hepatocellular Carcinoma 5 262620 -NCIT:C154082 Recurrent Fibrolamellar Carcinoma 6 262621 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 6 262622 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 6 262623 -NCIT:C131501 Recurrent Subsequent Malignant Neoplasm 4 262624 -NCIT:C132853 Recurrent Malignant Germ Cell Tumor 4 262625 -NCIT:C115385 Recurrent Malignant Extragonadal Germ Cell Tumor 5 262626 -NCIT:C115427 Recurrent Malignant Extragonadal Nongerminomatous Germ Cell Tumor 6 262627 -NCIT:C115428 Recurrent Extragonadal Seminoma 6 262628 -NCIT:C177771 Recurrent Malignant Nongerminomatous Germ Cell Tumor 5 262629 -NCIT:C115427 Recurrent Malignant Extragonadal Nongerminomatous Germ Cell Tumor 6 262630 -NCIT:C8087 Recurrent Ovarian Germ Cell Tumor 5 262631 -NCIT:C9221 Recurrent Childhood Malignant Germ Cell Tumor 5 262632 -NCIT:C9369 Recurrent Malignant Testicular Germ Cell Tumor 5 262633 -NCIT:C142849 Recurrent Rhabdoid Tumor 4 262634 -NCIT:C133499 Recurrent Atypical Teratoid/Rhabdoid Tumor 5 262635 -NCIT:C162730 Recurrent Rhabdoid Tumor of the Kidney 5 262636 -NCIT:C188881 Recurrent Extrarenal Rhabdoid Tumor 5 262637 -NCIT:C171170 Recurrent Extrarenal Rhabdoid Tumor of the Ovary 6 262638 -NCIT:C148302 Recurrent Sarcoma 4 262639 -NCIT:C115351 Recurrent Adult Undifferentiated High Grade Pleomorphic Sarcoma of Bone 5 262640 -NCIT:C115368 Recurrent Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 5 262641 -NCIT:C139002 Recurrent Soft Tissue Sarcoma 5 262642 -NCIT:C153626 Recurrent Skin Angiosarcoma 6 262643 -NCIT:C158426 Recurrent Desmoplastic Small Round Cell Tumor 6 262644 -NCIT:C169050 Recurrent Soft Tissue Sarcoma of the Trunk and Extremities 6 262645 -NCIT:C170727 Recurrent Breast Sarcoma 6 262646 -NCIT:C133092 Recurrent Breast Angiosarcoma 7 262647 -NCIT:C180980 Recurrent Clear Cell Sarcoma of Soft Tissue 6 262648 -NCIT:C5059 Recurrent Epithelioid Sarcoma 6 262649 -NCIT:C7822 Recurrent Adult Soft Tissue Sarcoma 6 262650 -NCIT:C7935 Recurrent Kaposi Sarcoma 6 262651 -NCIT:C8067 Recurrent Childhood Soft Tissue Sarcoma 6 262652 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 7 262653 -NCIT:C8261 Recurrent Uterine Corpus Sarcoma 6 262654 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 7 262655 -NCIT:C8795 Recurrent Undifferentiated Pleomorphic Sarcoma 6 262656 -NCIT:C8798 Recurrent Alveolar Soft Part Sarcoma 6 262657 -NCIT:C8803 Recurrent Extraskeletal Ewing Sarcoma 6 262658 -NCIT:C8807 Recurrent Extraskeletal Myxoid Chondrosarcoma 6 262659 -NCIT:C8811 Recurrent Extraskeletal Osteosarcoma 6 262660 -NCIT:C8824 Recurrent Rhabdomyosarcoma 6 262661 -NCIT:C142881 Recurrent Alveolar Rhabdomyosarcoma 7 262662 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 7 262663 -NCIT:C8827 Recurrent Synovial Sarcoma 6 262664 -NCIT:C155648 Recurrent Sarcoma of the Extremity 5 262665 -NCIT:C158428 Recurrent Fibrosarcoma 5 262666 -NCIT:C158430 Recurrent Spindle Cell Sarcoma 5 262667 -NCIT:C173815 Recurrent Ectomesenchymoma 5 262668 -NCIT:C5384 Recurrent Angiosarcoma 5 262669 -NCIT:C133092 Recurrent Breast Angiosarcoma 6 262670 -NCIT:C153626 Recurrent Skin Angiosarcoma 6 262671 -NCIT:C7808 Recurrent Ewing Sarcoma 5 262672 -NCIT:C6622 Recurrent Bone Ewing Sarcoma 6 262673 -NCIT:C8803 Recurrent Extraskeletal Ewing Sarcoma 6 262674 -NCIT:C7881 Recurrent Osteosarcoma 5 262675 -NCIT:C187189 Recurrent Childhood Osteosarcoma 6 262676 -NCIT:C8811 Recurrent Extraskeletal Osteosarcoma 6 262677 -NCIT:C8780 Recurrent Chondrosarcoma 5 262678 -NCIT:C8815 Recurrent Leiomyosarcoma 5 262679 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 6 262680 -NCIT:C8818 Recurrent Liposarcoma 5 262681 -NCIT:C150579 Recurrent Myxoid Liposarcoma 6 262682 -NCIT:C150592 Recurrent Dedifferentiated Liposarcoma 6 262683 -NCIT:C8823 Recurrent Malignant Peripheral Nerve Sheath Tumor 5 262684 -NCIT:C162724 Recurrent Epithelioid Malignant Peripheral Nerve Sheath Tumor 6 262685 -NCIT:C148510 Recurrent Human Papillomavirus-Related Malignant Neoplasm 4 262686 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 5 262687 -NCIT:C150524 Recurrent Malignant Bone Neoplasm 4 262688 -NCIT:C115351 Recurrent Adult Undifferentiated High Grade Pleomorphic Sarcoma of Bone 5 262689 -NCIT:C115368 Recurrent Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 5 262690 -NCIT:C155973 Recurrent Chordoma 5 262691 -NCIT:C162728 Recurrent Dedifferentiated Chordoma 6 262692 -NCIT:C185073 Locally Recurrent Chordoma 6 262693 -NCIT:C157681 Recurrent Primary Bone Lymphoma 5 262694 -NCIT:C27354 Recurrent Peripheral Primitive Neuroectodermal Tumor of Bone 5 262695 -NCIT:C6622 Recurrent Bone Ewing Sarcoma 5 262696 -NCIT:C150536 Recurrent Malignant Soft Tissue Neoplasm 4 262697 -NCIT:C139002 Recurrent Soft Tissue Sarcoma 5 262698 -NCIT:C153626 Recurrent Skin Angiosarcoma 6 262699 -NCIT:C158426 Recurrent Desmoplastic Small Round Cell Tumor 6 262700 -NCIT:C169050 Recurrent Soft Tissue Sarcoma of the Trunk and Extremities 6 262701 -NCIT:C170727 Recurrent Breast Sarcoma 6 262702 -NCIT:C133092 Recurrent Breast Angiosarcoma 7 262703 -NCIT:C180980 Recurrent Clear Cell Sarcoma of Soft Tissue 6 262704 -NCIT:C5059 Recurrent Epithelioid Sarcoma 6 262705 -NCIT:C7822 Recurrent Adult Soft Tissue Sarcoma 6 262706 -NCIT:C7935 Recurrent Kaposi Sarcoma 6 262707 -NCIT:C8067 Recurrent Childhood Soft Tissue Sarcoma 6 262708 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 7 262709 -NCIT:C8261 Recurrent Uterine Corpus Sarcoma 6 262710 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 7 262711 -NCIT:C8795 Recurrent Undifferentiated Pleomorphic Sarcoma 6 262712 -NCIT:C8798 Recurrent Alveolar Soft Part Sarcoma 6 262713 -NCIT:C8803 Recurrent Extraskeletal Ewing Sarcoma 6 262714 -NCIT:C8807 Recurrent Extraskeletal Myxoid Chondrosarcoma 6 262715 -NCIT:C8811 Recurrent Extraskeletal Osteosarcoma 6 262716 -NCIT:C8824 Recurrent Rhabdomyosarcoma 6 262717 -NCIT:C142881 Recurrent Alveolar Rhabdomyosarcoma 7 262718 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 7 262719 -NCIT:C8827 Recurrent Synovial Sarcoma 6 262720 -NCIT:C188881 Recurrent Extrarenal Rhabdoid Tumor 5 262721 -NCIT:C171170 Recurrent Extrarenal Rhabdoid Tumor of the Ovary 6 262722 -NCIT:C150540 Recurrent Malignant Endocrine Neoplasm 4 262723 -NCIT:C165253 Recurrent Neuroendocrine Carcinoma 5 262724 -NCIT:C115440 Recurrent Merkel Cell Carcinoma 6 262725 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 7 262726 -NCIT:C165740 Locally Recurrent Merkel Cell Carcinoma 7 262727 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 6 262728 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 7 262729 -NCIT:C155938 Recurrent Digestive System Neuroendocrine Carcinoma 6 262730 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 7 262731 -NCIT:C183127 Recurrent Small Cell Neuroendocrine Carcinoma 6 262732 -NCIT:C183128 Recurrent Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 262733 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 8 262734 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 262735 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 7 262736 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 8 262737 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 5 262738 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 6 262739 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 6 262740 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 7 262741 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 5 262742 -NCIT:C6417 Recurrent Adrenal Cortical Carcinoma 5 262743 -NCIT:C7828 Recurrent Parathyroid Gland Carcinoma 5 262744 -NCIT:C150545 Recurrent Malignant Skin Neoplasm 4 262745 -NCIT:C142876 Recurrent Primary Cutaneous Lymphoma 5 262746 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 6 262747 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 6 262748 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 7 262749 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 7 262750 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 7 262751 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 7 262752 -NCIT:C8686 Recurrent Mycosis Fungoides 7 262753 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 8 262754 -NCIT:C153626 Recurrent Skin Angiosarcoma 5 262755 -NCIT:C156103 Recurrent Blastic Plasmacytoid Dendritic Cell Neoplasm 5 262756 -NCIT:C179464 Recurrent Malignant Scrotal Neoplasm 5 262757 -NCIT:C7903 Recurrent Skin Carcinoma 5 262758 -NCIT:C115440 Recurrent Merkel Cell Carcinoma 6 262759 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 7 262760 -NCIT:C165740 Locally Recurrent Merkel Cell Carcinoma 7 262761 -NCIT:C143012 Recurrent Skin Squamous Cell Carcinoma 6 262762 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 262763 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 7 262764 -NCIT:C165737 Locally Recurrent Skin Squamous Cell Carcinoma 7 262765 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 6 262766 -NCIT:C9097 Recurrent Cutaneous Melanoma 5 262767 -NCIT:C155306 Recurrent Cutaneous Melanoma of the Extremity 6 262768 -NCIT:C175435 Recurrent Acral Lentiginous Melanoma 7 262769 -NCIT:C8785 Recurrent Lentigo Maligna Melanoma 6 262770 -NCIT:C152077 Recurrent Malignant Head and Neck Neoplasm 4 262771 -NCIT:C150531 Recurrent Malignant Pharyngeal Neoplasm 5 262772 -NCIT:C5103 Recurrent Pharyngeal Carcinoma 6 262773 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 7 262774 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 262775 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 262776 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 262777 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 262778 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 262779 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 262780 -NCIT:C8051 Recurrent Oropharyngeal Carcinoma 7 262781 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 262782 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 262783 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 7 262784 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 262785 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 262786 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 262787 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 7 262788 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 262789 -NCIT:C9268 Recurrent Malignant Nasopharyngeal Neoplasm 6 262790 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 7 262791 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 262792 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 262793 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 262794 -NCIT:C9353 Recurrent Malignant Hypopharyngeal Neoplasm 6 262795 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 7 262796 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 262797 -NCIT:C150538 Recurrent Malignant Thyroid Gland Neoplasm 5 262798 -NCIT:C7908 Recurrent Thyroid Gland Carcinoma 6 262799 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 7 262800 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 8 262801 -NCIT:C153624 Recurrent Thyroid Gland Anaplastic Carcinoma 7 262802 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 7 262803 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 8 262804 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 8 262805 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 9 262806 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 7 262807 -NCIT:C35675 Recurrent Malignant Salivary Gland Neoplasm 5 262808 -NCIT:C7926 Recurrent Salivary Gland Carcinoma 6 262809 -NCIT:C153611 Recurrent Salivary Duct Carcinoma 7 262810 -NCIT:C153612 Recurrent Minor Salivary Gland Adenocarcinoma 7 262811 -NCIT:C153800 Recurrent Parotid Gland Carcinoma 7 262812 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 8 262813 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 8 262814 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 262815 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 8 262816 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 262817 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 8 262818 -NCIT:C153801 Recurrent Submandibular Gland Carcinoma 7 262819 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 8 262820 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 8 262821 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 262822 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 8 262823 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 262824 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 8 262825 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 262826 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 262827 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 262828 -NCIT:C7624 Recurrent Head and Neck Carcinoma 5 262829 -NCIT:C133709 Recurrent Head and Neck Squamous Cell Carcinoma 6 262830 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 262831 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 262832 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 262833 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 262834 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 262835 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 262836 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 262837 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 262838 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 262839 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 7 262840 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 262841 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 262842 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 262843 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 262844 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 262845 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 262846 -NCIT:C176682 Locally Recurrent Head and Neck Squamous Cell Carcinoma 7 262847 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 7 262848 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 262849 -NCIT:C4034 Recurrent Laryngeal Carcinoma 6 262850 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 7 262851 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 262852 -NCIT:C5103 Recurrent Pharyngeal Carcinoma 6 262853 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 7 262854 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 262855 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 262856 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 262857 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 262858 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 262859 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 262860 -NCIT:C8051 Recurrent Oropharyngeal Carcinoma 7 262861 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 262862 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 262863 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 7 262864 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 262865 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 262866 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 262867 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 7 262868 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 262869 -NCIT:C67558 Recurrent Sinonasal Carcinoma 6 262870 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 262871 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 262872 -NCIT:C7828 Recurrent Parathyroid Gland Carcinoma 6 262873 -NCIT:C7908 Recurrent Thyroid Gland Carcinoma 6 262874 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 7 262875 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 8 262876 -NCIT:C153624 Recurrent Thyroid Gland Anaplastic Carcinoma 7 262877 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 7 262878 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 8 262879 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 8 262880 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 9 262881 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 7 262882 -NCIT:C7926 Recurrent Salivary Gland Carcinoma 6 262883 -NCIT:C153611 Recurrent Salivary Duct Carcinoma 7 262884 -NCIT:C153612 Recurrent Minor Salivary Gland Adenocarcinoma 7 262885 -NCIT:C153800 Recurrent Parotid Gland Carcinoma 7 262886 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 8 262887 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 8 262888 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 262889 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 8 262890 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 262891 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 8 262892 -NCIT:C153801 Recurrent Submandibular Gland Carcinoma 7 262893 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 8 262894 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 8 262895 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 262896 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 8 262897 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 262898 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 8 262899 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 262900 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 262901 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 262902 -NCIT:C8037 Recurrent Lip and Oral Cavity Carcinoma 6 262903 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 262904 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 262905 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 262906 -NCIT:C6076 Recurrent Oral Cavity Carcinoma 7 262907 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 262908 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 262909 -NCIT:C8215 Recurrent Oral Cavity Mucoepidermoid Carcinoma 8 262910 -NCIT:C8216 Recurrent Oral Cavity Adenoid Cystic Carcinoma 8 262911 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 7 262912 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 5 262913 -NCIT:C9262 Recurrent Malignant Oral Neoplasm 5 262914 -NCIT:C8037 Recurrent Lip and Oral Cavity Carcinoma 6 262915 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 262916 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 262917 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 262918 -NCIT:C6076 Recurrent Oral Cavity Carcinoma 7 262919 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 262920 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 262921 -NCIT:C8215 Recurrent Oral Cavity Mucoepidermoid Carcinoma 8 262922 -NCIT:C8216 Recurrent Oral Cavity Adenoid Cystic Carcinoma 8 262923 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 7 262924 -NCIT:C153823 Recurrent Primary Malignant Central Nervous System Neoplasm 4 262925 -NCIT:C114836 Recurrent Childhood Central Nervous System Embryonal Neoplasm 5 262926 -NCIT:C115374 Recurrent Childhood Pineoblastoma 6 262927 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 6 262928 -NCIT:C6774 Recurrent Childhood Medulloblastoma 6 262929 -NCIT:C133499 Recurrent Atypical Teratoid/Rhabdoid Tumor 5 262930 -NCIT:C138019 Recurrent Central Nervous System Lymphoma 5 262931 -NCIT:C146990 Recurrent Central Nervous System Non-Hodgkin Lymphoma 6 262932 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 7 262933 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 262934 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 7 262935 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 8 262936 -NCIT:C142848 Recurrent Malignant Glioma 5 262937 -NCIT:C126306 Recurrent Glioblastoma 6 262938 -NCIT:C115364 Recurrent Childhood Glioblastoma 7 262939 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 8 262940 -NCIT:C115365 Recurrent Childhood Gliosarcoma 8 262941 -NCIT:C182019 Recurrent Glioblastoma, IDH-Wildtype 7 262942 -NCIT:C131209 Recurrent Gliosarcoma 8 262943 -NCIT:C115365 Recurrent Childhood Gliosarcoma 9 262944 -NCIT:C157600 Recurrent Giant Cell Glioblastoma 8 262945 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 9 262946 -NCIT:C163961 Recurrent Small Cell Glioblastoma 8 262947 -NCIT:C190775 Recurrent MGMT-Methylated Glioblastoma 8 262948 -NCIT:C191198 Recurrent Brain Glioblastoma 7 262949 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 8 262950 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 6 262951 -NCIT:C148038 Recurrent WHO Grade 3 Glioma 6 262952 -NCIT:C136517 Recurrent Anaplastic Astrocytoma 7 262953 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 8 262954 -NCIT:C188691 Recurrent Anaplastic Astrocytoma, IDH-Wildtype 8 262955 -NCIT:C191197 Recurrent Astrocytoma, IDH-Mutant, Grade 3 8 262956 -NCIT:C142861 Recurrent Anaplastic Oligoastrocytoma 7 262957 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 8 262958 -NCIT:C142862 Recurrent Anaplastic Oligodendroglioma 7 262959 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 8 262960 -NCIT:C160904 Recurrent Anaplastic Pleomorphic Xanthoastrocytoma 7 262961 -NCIT:C160912 Recurrent Anaplastic Ependymoma 7 262962 -NCIT:C179222 Recurrent Diffuse Midline Glioma, H3 K27M-Mutant 6 262963 -NCIT:C182018 Recurrent Astrocytoma, IDH-Mutant, Grade 4 6 262964 -NCIT:C153837 Recurrent Malignant Brain Neoplasm 5 262965 -NCIT:C115374 Recurrent Childhood Pineoblastoma 6 262966 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 6 262967 -NCIT:C136518 Recurrent Diffuse Intrinsic Pontine Glioma 6 262968 -NCIT:C179221 Recurrent Gliomatosis Cerebri 6 262969 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 7 262970 -NCIT:C179226 Recurrent Malignant Choroid Plexus Neoplasm 6 262971 -NCIT:C191198 Recurrent Brain Glioblastoma 6 262972 -NCIT:C174202 Recurrent Supratentorial Glioblastoma 7 262973 -NCIT:C5588 Recurrent Medulloblastoma 6 262974 -NCIT:C147109 Recurrent Medulloblastoma, SHH-Activated 7 262975 -NCIT:C180893 Recurrent Medulloblastoma, WNT-Activated 7 262976 -NCIT:C6774 Recurrent Childhood Medulloblastoma 7 262977 -NCIT:C160914 Recurrent Anaplastic Ganglioglioma 5 262978 -NCIT:C179223 Recurrent Anaplastic (Malignant) Meningioma 5 262979 -NCIT:C7849 Recurrent Retinoblastoma 5 262980 -NCIT:C154608 Recurrent Metastatic Malignant Neoplasm 4 262981 -NCIT:C151905 Recurrent Metastatic Digestive System Carcinoma 5 262982 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 6 262983 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 5 262984 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 5 262985 -NCIT:C173916 Recurrent Metastatic Malignant Neoplasm in the Leptomeninges 5 262986 -NCIT:C179179 Recurrent Pseudomyxoma Peritonei 5 262987 -NCIT:C182020 Recurrent Metastatic Melanoma 5 262988 -NCIT:C9181 Recurrent Carcinoma of Unknown Primary 5 262989 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 6 262990 -NCIT:C162702 Recurrent Childhood Malignant Neoplasm 4 262991 -NCIT:C114836 Recurrent Childhood Central Nervous System Embryonal Neoplasm 5 262992 -NCIT:C115374 Recurrent Childhood Pineoblastoma 6 262993 -NCIT:C115381 Recurrent Childhood Supratentorial Embryonal Tumor, Not Otherwise Specified 6 262994 -NCIT:C6774 Recurrent Childhood Medulloblastoma 6 262995 -NCIT:C115356 Recurrent Childhood Anaplastic Astrocytoma 5 262996 -NCIT:C115358 Recurrent Childhood Anaplastic Oligoastrocytoma 5 262997 -NCIT:C115359 Recurrent Childhood Anaplastic Oligodendroglioma 5 262998 -NCIT:C115364 Recurrent Childhood Glioblastoma 5 262999 -NCIT:C115363 Recurrent Childhood Giant Cell Glioblastoma 6 263000 -NCIT:C115365 Recurrent Childhood Gliosarcoma 6 263001 -NCIT:C115366 Recurrent Childhood Gliomatosis Cerebri 5 263002 -NCIT:C115368 Recurrent Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 5 263003 -NCIT:C148026 Recurrent Childhood Malignant Solid Neoplasm 5 263004 -NCIT:C162730 Recurrent Rhabdoid Tumor of the Kidney 5 263005 -NCIT:C187189 Recurrent Childhood Osteosarcoma 5 263006 -NCIT:C187196 Recurrent Childhood Lymphoma 5 263007 -NCIT:C115369 Recurrent Childhood Non-Hodgkin Lymphoma 6 263008 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 7 263009 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 7 263010 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 7 263011 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 7 263012 -NCIT:C8059 Recurrent Childhood Hodgkin Lymphoma 6 263013 -NCIT:C188881 Recurrent Extrarenal Rhabdoid Tumor 5 263014 -NCIT:C171170 Recurrent Extrarenal Rhabdoid Tumor of the Ovary 6 263015 -NCIT:C7784 Recurrent Childhood Acute Lymphoblastic Leukemia 5 263016 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 6 263017 -NCIT:C7839 Recurrent Childhood Malignant Liver Neoplasm 5 263018 -NCIT:C8643 Recurrent Hepatoblastoma 6 263019 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 6 263020 -NCIT:C8067 Recurrent Childhood Soft Tissue Sarcoma 5 263021 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 6 263022 -NCIT:C9068 Recurrent Childhood Acute Myeloid Leukemia 5 263023 -NCIT:C9221 Recurrent Childhood Malignant Germ Cell Tumor 5 263024 -NCIT:C170726 Recurrent Malignant Breast Neoplasm 4 263025 -NCIT:C138023 Recurrent Breast Lymphoma 5 263026 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 6 263027 -NCIT:C170727 Recurrent Breast Sarcoma 5 263028 -NCIT:C133092 Recurrent Breast Angiosarcoma 6 263029 -NCIT:C7771 Recurrent Breast Carcinoma 5 263030 -NCIT:C175588 Recurrent Breast Adenocarcinoma 6 263031 -NCIT:C153568 Recurrent Breast Acinic Cell Carcinoma 7 263032 -NCIT:C153584 Recurrent Lobular Breast Carcinoma 7 263033 -NCIT:C153587 Recurrent Invasive Breast Carcinoma of No Special Type 7 263034 -NCIT:C153588 Recurrent Breast Paget Disease 7 263035 -NCIT:C168783 Recurrent HER2-Negative Breast Carcinoma 7 263036 -NCIT:C171014 Recurrent Triple-Negative Breast Carcinoma 7 263037 -NCIT:C182108 Recurrent HER2-Positive Breast Carcinoma 7 263038 -NCIT:C185157 Recurrent Hormone Receptor-Positive Breast Carcinoma 7 263039 -NCIT:C8607 Recurrent Breast Inflammatory Carcinoma 7 263040 -NCIT:C190196 Locally Recurrent Breast Carcinoma 6 263041 -NCIT:C177724 Recurrent Malignant Genitourinary System Neoplasm 4 263042 -NCIT:C150526 Recurrent Malignant Female Reproductive System Neoplasm 5 263043 -NCIT:C153347 Recurrent Ovarian Carcinosarcoma 6 263044 -NCIT:C160619 Recurrent Malignant Ovarian Granulosa Cell Tumor 6 263045 -NCIT:C171170 Recurrent Extrarenal Rhabdoid Tumor of the Ovary 6 263046 -NCIT:C7620 Recurrent Female Reproductive System Carcinoma 6 263047 -NCIT:C115429 Recurrent Fallopian Tube Carcinoma 7 263048 -NCIT:C170750 Recurrent Platinum-Resistant Fallopian Tube Carcinoma 8 263049 -NCIT:C170755 Recurrent Fallopian Tube Undifferentiated Carcinoma 8 263050 -NCIT:C170757 Recurrent Fallopian Tube Transitional Cell Carcinoma 8 263051 -NCIT:C170766 Recurrent Fallopian Tube Adenocarcinoma 8 263052 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 9 263053 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 9 263054 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 9 263055 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 9 263056 -NCIT:C191395 Recurrent Platinum-Sensitive Fallopian Tube Carcinoma 8 263057 -NCIT:C150094 Recurrent Endometrial Carcinoma 7 263058 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 8 263059 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 8 263060 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 9 263061 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 9 263062 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 9 263063 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 9 263064 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 9 263065 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 8 263066 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 8 263067 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 8 263068 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 8 263069 -NCIT:C190200 Locally Recurrent Endometrial Carcinoma 8 263070 -NCIT:C7804 Recurrent Cervical Carcinoma 7 263071 -NCIT:C136649 Recurrent Cervical Squamous Cell Carcinoma 8 263072 -NCIT:C136650 Recurrent Cervical Adenosquamous Carcinoma 8 263073 -NCIT:C136651 Recurrent Cervical Adenocarcinoma 8 263074 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 9 263075 -NCIT:C7833 Recurrent Ovarian Carcinoma 7 263076 -NCIT:C148025 Recurrent BRCA- Associated Ovarian Carcinoma 8 263077 -NCIT:C153614 Recurrent Ovarian Adenocarcinoma 8 263078 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 9 263079 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 9 263080 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 10 263081 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 10 263082 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 10 263083 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 9 263084 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 9 263085 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 10 263086 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 9 263087 -NCIT:C153818 Recurrent Malignant Ovarian Brenner Tumor 8 263088 -NCIT:C153819 Recurrent Ovarian Transitional Cell Carcinoma 8 263089 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 8 263090 -NCIT:C170754 Recurrent Ovarian Undifferentiated Carcinoma 8 263091 -NCIT:C178669 Recurrent Ovarian Seromucinous Carcinoma 8 263092 -NCIT:C188391 Recurrent Platinum-Sensitive Ovarian Carcinoma 8 263093 -NCIT:C190201 Locally Recurrent Ovarian Carcinoma 8 263094 -NCIT:C7860 Recurrent Vaginal Carcinoma 7 263095 -NCIT:C185302 Recurrent Vaginal Squamous Cell Carcinoma 8 263096 -NCIT:C9054 Recurrent Vulvar Carcinoma 7 263097 -NCIT:C174200 Recurrent Vulvar Squamous Cell Carcinoma 8 263098 -NCIT:C8087 Recurrent Ovarian Germ Cell Tumor 6 263099 -NCIT:C8261 Recurrent Uterine Corpus Sarcoma 6 263100 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 7 263101 -NCIT:C9072 Recurrent Uterine Corpus Cancer 6 263102 -NCIT:C150094 Recurrent Endometrial Carcinoma 7 263103 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 8 263104 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 8 263105 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 9 263106 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 9 263107 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 9 263108 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 9 263109 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 9 263110 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 8 263111 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 8 263112 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 8 263113 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 8 263114 -NCIT:C190200 Locally Recurrent Endometrial Carcinoma 8 263115 -NCIT:C155818 Recurrent Uterine Corpus Carcinosarcoma 7 263116 -NCIT:C9269 Recurrent Malignant Endocervical Neoplasm 6 263117 -NCIT:C150533 Recurrent Malignant Male Reproductive System Neoplasm 5 263118 -NCIT:C138021 Recurrent Testicular Lymphoma 6 263119 -NCIT:C179466 Recurrent Malignant Spermatic Cord Neoplasm 6 263120 -NCIT:C7621 Recurrent Male Reproductive System Carcinoma 6 263121 -NCIT:C7870 Recurrent Penile Carcinoma 7 263122 -NCIT:C7902 Recurrent Prostate Carcinoma 7 263123 -NCIT:C156771 Biochemically Recurrent Prostate Carcinoma 8 263124 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 8 263125 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 9 263126 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 8 263127 -NCIT:C9369 Recurrent Malignant Testicular Germ Cell Tumor 6 263128 -NCIT:C150542 Recurrent Malignant Urinary System Neoplasm 5 263129 -NCIT:C162730 Recurrent Rhabdoid Tumor of the Kidney 6 263130 -NCIT:C7623 Recurrent Urinary System Carcinoma 6 263131 -NCIT:C157631 Recurrent Urothelial Carcinoma 7 263132 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 263133 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 263134 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 263135 -NCIT:C8254 Recurrent Renal Pelvis and Ureter Urothelial Carcinoma 8 263136 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 9 263137 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 9 263138 -NCIT:C172622 Recurrent Kidney Carcinoma 7 263139 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 8 263140 -NCIT:C162726 Recurrent Kidney Medullary Carcinoma 8 263141 -NCIT:C7825 Recurrent Renal Cell Carcinoma 8 263142 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 9 263143 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 10 263144 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 9 263145 -NCIT:C7508 Recurrent Urethral Carcinoma 7 263146 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 8 263147 -NCIT:C7899 Recurrent Bladder Carcinoma 7 263148 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 263149 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 263150 -NCIT:C190774 Recurrent Non-Muscle Invasive Bladder Carcinoma 8 263151 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 263152 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 263153 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 8 263154 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 8 263155 -NCIT:C9255 Recurrent Ureter Carcinoma 7 263156 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 8 263157 -NCIT:C7845 Recurrent Kidney Wilms Tumor 6 263158 -NCIT:C9266 Recurrent Malignant Bladder Neoplasm 6 263159 -NCIT:C7899 Recurrent Bladder Carcinoma 7 263160 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 8 263161 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 263162 -NCIT:C190774 Recurrent Non-Muscle Invasive Bladder Carcinoma 8 263163 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 9 263164 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 263165 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 8 263166 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 8 263167 -NCIT:C179463 Recurrent Malignant Retroperitoneal Neoplasm 4 263168 -NCIT:C6417 Recurrent Adrenal Cortical Carcinoma 5 263169 -NCIT:C179465 Recurrent Malignant Abdominal Neoplasm 4 263170 -NCIT:C179179 Recurrent Pseudomyxoma Peritonei 5 263171 -NCIT:C27358 Recurrent Hematologic Malignancy 4 263172 -NCIT:C148425 Recurrent Leukemia 5 263173 -NCIT:C148429 Recurrent Acute Leukemia 6 263174 -NCIT:C142810 Recurrent Acute Lymphoblastic Leukemia 7 263175 -NCIT:C142811 Recurrent B Acute Lymphoblastic Leukemia 8 263176 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 9 263177 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 9 263178 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 9 263179 -NCIT:C150131 Recurrent T Acute Lymphoblastic Leukemia 8 263180 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 9 263181 -NCIT:C7784 Recurrent Childhood Acute Lymphoblastic Leukemia 8 263182 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 9 263183 -NCIT:C7883 Recurrent Adult Acute Lymphoblastic Leukemia 8 263184 -NCIT:C148427 Recurrent Acute Myeloid Leukemia 7 263185 -NCIT:C125715 Recurrent Acute Myeloid Leukemia with Myelodysplasia-Related Changes 8 263186 -NCIT:C156720 Recurrent Acute Myeloid Leukemia with Multilineage Dysplasia 9 263187 -NCIT:C156716 Recurrent Acute Myeloid Leukemia Not Otherwise Specified 8 263188 -NCIT:C156717 Recurrent Acute Myelomonocytic Leukemia 9 263189 -NCIT:C156722 Recurrent Acute Monoblastic and Monocytic Leukemia 9 263190 -NCIT:C156723 Recurrent Acute Erythroid Leukemia 9 263191 -NCIT:C156731 Recurrent Acute Megakaryoblastic Leukemia 9 263192 -NCIT:C156718 Recurrent Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 8 263193 -NCIT:C156719 Recurrent Acute Myeloid Leukemia with t (9;11) (p21.3; q23.3); MLLT3-MLL 9 263194 -NCIT:C169107 Recurrent Acute Promyelocytic Leukemia with PML-RARA 9 263195 -NCIT:C7882 Recurrent Adult Acute Myeloid Leukemia 8 263196 -NCIT:C9068 Recurrent Childhood Acute Myeloid Leukemia 8 263197 -NCIT:C151976 Recurrent Burkitt Leukemia 7 263198 -NCIT:C172626 Recurrent Acute Leukemia of Ambiguous Lineage 7 263199 -NCIT:C141446 Recurrent Acute Undifferentiated Leukemia 8 263200 -NCIT:C148423 Recurrent Mixed Phenotype Acute Leukemia 8 263201 -NCIT:C141445 Recurrent Acute Biphenotypic Leukemia 9 263202 -NCIT:C179204 Recurrent Acute Bilineal Leukemia 9 263203 -NCIT:C150043 Recurrent Chronic Leukemia 6 263204 -NCIT:C142882 Recurrent Hairy Cell Leukemia 7 263205 -NCIT:C150048 Recurrent Chronic Myelomonocytic Leukemia 7 263206 -NCIT:C150133 Recurrent T-Cell Prolymphocytic Leukemia 7 263207 -NCIT:C157692 Recurrent Aggressive NK-Cell Leukemia 7 263208 -NCIT:C158081 Recurrent B-Cell Prolymphocytic Leukemia 7 263209 -NCIT:C171065 Recurrent Hairy Cell Leukemia Variant 7 263210 -NCIT:C176999 Recurrent Sezary Syndrome 7 263211 -NCIT:C180985 Recurrent T-Cell Large Granular Lymphocyte Leukemia 7 263212 -NCIT:C8645 Recurrent Chronic Lymphocytic Leukemia 7 263213 -NCIT:C158151 Recurrent Transformed Chronic Lymphocytic Leukemia 8 263214 -NCIT:C9070 Recurrent Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 263215 -NCIT:C190786 Recurrent Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 6 263216 -NCIT:C172132 Recurrent Myeloid Neoplasm 5 263217 -NCIT:C148363 Recurrent Myelodysplastic Syndrome 6 263218 -NCIT:C148427 Recurrent Acute Myeloid Leukemia 6 263219 -NCIT:C125715 Recurrent Acute Myeloid Leukemia with Myelodysplasia-Related Changes 7 263220 -NCIT:C156720 Recurrent Acute Myeloid Leukemia with Multilineage Dysplasia 8 263221 -NCIT:C156716 Recurrent Acute Myeloid Leukemia Not Otherwise Specified 7 263222 -NCIT:C156717 Recurrent Acute Myelomonocytic Leukemia 8 263223 -NCIT:C156722 Recurrent Acute Monoblastic and Monocytic Leukemia 8 263224 -NCIT:C156723 Recurrent Acute Erythroid Leukemia 8 263225 -NCIT:C156731 Recurrent Acute Megakaryoblastic Leukemia 8 263226 -NCIT:C156718 Recurrent Acute Myeloid Leukemia with Recurrent Genetic Abnormalities 7 263227 -NCIT:C156719 Recurrent Acute Myeloid Leukemia with t (9;11) (p21.3; q23.3); MLLT3-MLL 8 263228 -NCIT:C169107 Recurrent Acute Promyelocytic Leukemia with PML-RARA 8 263229 -NCIT:C7882 Recurrent Adult Acute Myeloid Leukemia 7 263230 -NCIT:C9068 Recurrent Childhood Acute Myeloid Leukemia 7 263231 -NCIT:C156103 Recurrent Blastic Plasmacytoid Dendritic Cell Neoplasm 6 263232 -NCIT:C166142 Recurrent Myeloproliferative Neoplasm 6 263233 -NCIT:C179203 Recurrent Primary Myelofibrosis 7 263234 -NCIT:C190786 Recurrent Accelerated Phase Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 263235 -NCIT:C9070 Recurrent Chronic Myelogenous Leukemia, BCR-ABL1 Positive 7 263236 -NCIT:C166143 Recurrent Myelodysplastic/Myeloproliferative Neoplasm 6 263237 -NCIT:C150048 Recurrent Chronic Myelomonocytic Leukemia 7 263238 -NCIT:C170817 Recurrent Malignant Mastocytosis 6 263239 -NCIT:C172133 Recurrent Malignant Lymphoid Neoplasm 5 263240 -NCIT:C131873 Recurrent Chronic Lymphocytic Leukemia/Small Lymphocytic Lymphoma 6 263241 -NCIT:C8154 Recurrent Small Lymphocytic Lymphoma 7 263242 -NCIT:C8645 Recurrent Chronic Lymphocytic Leukemia 7 263243 -NCIT:C158151 Recurrent Transformed Chronic Lymphocytic Leukemia 8 263244 -NCIT:C134157 Recurrent Lymphoma 6 263245 -NCIT:C138013 Recurrent B-Cell Lymphoma, Unclassifiable, with Features Intermediate between Diffuse Large B-Cell Lymphoma and Classic Hodgkin Lymphoma 7 263246 -NCIT:C138019 Recurrent Central Nervous System Lymphoma 7 263247 -NCIT:C146990 Recurrent Central Nervous System Non-Hodgkin Lymphoma 8 263248 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 9 263249 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 263250 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 263251 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 263252 -NCIT:C138021 Recurrent Testicular Lymphoma 7 263253 -NCIT:C138023 Recurrent Breast Lymphoma 7 263254 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 8 263255 -NCIT:C142876 Recurrent Primary Cutaneous Lymphoma 7 263256 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 8 263257 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 263258 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 263259 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 263260 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 263261 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 263262 -NCIT:C8686 Recurrent Mycosis Fungoides 9 263263 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 263264 -NCIT:C147863 Recurrent EBV-Related Lymphoma 7 263265 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 8 263266 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 8 263267 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 9 263268 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 9 263269 -NCIT:C153175 Recurrent Mediastinal Lymphoma 7 263270 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 8 263271 -NCIT:C157681 Recurrent Primary Bone Lymphoma 7 263272 -NCIT:C187196 Recurrent Childhood Lymphoma 7 263273 -NCIT:C115369 Recurrent Childhood Non-Hodgkin Lymphoma 8 263274 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 9 263275 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 9 263276 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 9 263277 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 9 263278 -NCIT:C8059 Recurrent Childhood Hodgkin Lymphoma 8 263279 -NCIT:C4937 Recurrent Hodgkin Lymphoma 7 263280 -NCIT:C133592 Recurrent Classic Hodgkin Lymphoma 8 263281 -NCIT:C136971 Recurrent Lymphocyte-Rich Classic Hodgkin Lymphoma 9 263282 -NCIT:C8649 Recurrent Lymphocyte-Depleted Classic Hodgkin Lymphoma 9 263283 -NCIT:C8832 Recurrent Mixed Cellularity Classic Hodgkin Lymphoma 9 263284 -NCIT:C8837 Recurrent Nodular Sclerosis Classic Hodgkin Lymphoma 9 263285 -NCIT:C7259 Recurrent Nodular Lymphocyte Predominant Hodgkin Lymphoma 8 263286 -NCIT:C7789 Recurrent Adult Hodgkin Lymphoma 8 263287 -NCIT:C8059 Recurrent Childhood Hodgkin Lymphoma 8 263288 -NCIT:C9251 Recurrent Non-Hodgkin Lymphoma 7 263289 -NCIT:C115369 Recurrent Childhood Non-Hodgkin Lymphoma 8 263290 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 9 263291 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 9 263292 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 9 263293 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 9 263294 -NCIT:C146990 Recurrent Central Nervous System Non-Hodgkin Lymphoma 8 263295 -NCIT:C157068 Recurrent Primary Vitreoretinal Non-Hodgkin Lymphoma 9 263296 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 263297 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 9 263298 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 10 263299 -NCIT:C156232 Recurrent Aggressive Non-Hodgkin Lymphoma 8 263300 -NCIT:C178553 Recurrent Aggressive B-Cell Non-Hodgkin Lymphoma 9 263301 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 263302 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 263303 -NCIT:C5008 Recurrent Burkitt Lymphoma 10 263304 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 11 263305 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 11 263306 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 10 263307 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 11 263308 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 11 263309 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 10 263310 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 11 263311 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 11 263312 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 10 263313 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 10 263314 -NCIT:C178554 Recurrent Aggressive T-Cell Non-Hodgkin Lymphoma 9 263315 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 263316 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 10 263317 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 263318 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 263319 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 10 263320 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 263321 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 263322 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 10 263323 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 10 263324 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 10 263325 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 10 263326 -NCIT:C8490 Recurrent Aggressive Adult Non-Hodgkin Lymphoma 9 263327 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 263328 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 10 263329 -NCIT:C8164 Recurrent Adult Lymphoblastic Lymphoma 10 263330 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 10 263331 -NCIT:C181796 Recurrent Indolent Non-Hodgkin Lymphoma 8 263332 -NCIT:C183512 Recurrent Indolent B-Cell Non-Hodgkin Lymphoma 9 263333 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 10 263334 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 11 263335 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 263336 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 11 263337 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 10 263338 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 10 263339 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 10 263340 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 11 263341 -NCIT:C183513 Recurrent Indolent T-Cell Non-Hodgkin Lymphoma 9 263342 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 263343 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 263344 -NCIT:C8686 Recurrent Mycosis Fungoides 10 263345 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 263346 -NCIT:C8488 Recurrent Indolent Adult Non-Hodgkin Lymphoma 9 263347 -NCIT:C8098 Recurrent Adult Non-Hodgkin Lymphoma 8 263348 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 9 263349 -NCIT:C8488 Recurrent Indolent Adult Non-Hodgkin Lymphoma 9 263350 -NCIT:C8490 Recurrent Aggressive Adult Non-Hodgkin Lymphoma 9 263351 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 10 263352 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 10 263353 -NCIT:C8164 Recurrent Adult Lymphoblastic Lymphoma 10 263354 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 10 263355 -NCIT:C8663 Recurrent T-Cell Non-Hodgkin Lymphoma 8 263356 -NCIT:C178554 Recurrent Aggressive T-Cell Non-Hodgkin Lymphoma 9 263357 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 263358 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 10 263359 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 263360 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 10 263361 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 10 263362 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 10 263363 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 10 263364 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 10 263365 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 10 263366 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 10 263367 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 10 263368 -NCIT:C183513 Recurrent Indolent T-Cell Non-Hodgkin Lymphoma 9 263369 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 10 263370 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 10 263371 -NCIT:C8686 Recurrent Mycosis Fungoides 10 263372 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 263373 -NCIT:C8688 Recurrent Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 9 263374 -NCIT:C115439 Recurrent Mycosis Fungoides and Sezary Syndrome 10 263375 -NCIT:C176999 Recurrent Sezary Syndrome 11 263376 -NCIT:C8686 Recurrent Mycosis Fungoides 11 263377 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 12 263378 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 10 263379 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 10 263380 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 10 263381 -NCIT:C157689 Recurrent NK-Cell Lymphoma, Unclassifiable 10 263382 -NCIT:C165789 Recurrent Transformed T-cell Non-Hodgkin Lymphoma 10 263383 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 11 263384 -NCIT:C168778 Recurrent Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 10 263385 -NCIT:C168780 Recurrent Follicular T-Cell Lymphoma 10 263386 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 10 263387 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 10 263388 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 11 263389 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 11 263390 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 11 263391 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 11 263392 -NCIT:C8686 Recurrent Mycosis Fungoides 11 263393 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 12 263394 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 10 263395 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 10 263396 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 10 263397 -NCIT:C9250 Recurrent Anaplastic Large Cell Lymphoma 10 263398 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 11 263399 -NCIT:C162688 Recurrent Systemic Anaplastic Large Cell Lymphoma 11 263400 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 12 263401 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 11 263402 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 11 263403 -NCIT:C8702 Recurrent Transformed Non-Hodgkin Lymphoma 8 263404 -NCIT:C158149 Recurrent Transformed B-Cell Non-Hodgkin Lymphoma 9 263405 -NCIT:C160232 Recurrent Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 10 263406 -NCIT:C186483 Recurrent Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 10 263407 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 11 263408 -NCIT:C165789 Recurrent Transformed T-cell Non-Hodgkin Lymphoma 9 263409 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 263410 -NCIT:C8841 Recurrent B-Cell Non-Hodgkin Lymphoma 8 263411 -NCIT:C165799 Recurrent Mature B-Cell Non-Hodgkin Lymphoma 9 263412 -NCIT:C158149 Recurrent Transformed B-Cell Non-Hodgkin Lymphoma 10 263413 -NCIT:C160232 Recurrent Transformed Follicular Lymphoma to Diffuse Large B-Cell Lymphoma 11 263414 -NCIT:C186483 Recurrent Transformed Indolent B-Cell Non-Hodgkin Lymphoma to Diffuse Large B-Cell Lymphoma 11 263415 -NCIT:C175216 Recurrent Transformed Marginal Zone Lymphoma to Diffuse Large B-Cell Lymphoma 12 263416 -NCIT:C5007 Recurrent Follicular Lymphoma 10 263417 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 11 263418 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 11 263419 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 11 263420 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 12 263421 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 12 263422 -NCIT:C5008 Recurrent Burkitt Lymphoma 10 263423 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 11 263424 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 11 263425 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 10 263426 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 11 263427 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 263428 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 11 263429 -NCIT:C8154 Recurrent Small Lymphocytic Lymphoma 10 263430 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 10 263431 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 10 263432 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 11 263433 -NCIT:C8852 Recurrent Diffuse Large B-Cell Lymphoma 10 263434 -NCIT:C138015 Recurrent Extranodal Diffuse Large B-cell Lymphoma 11 263435 -NCIT:C138025 Recurrent Intravascular Large B-Cell Lymphoma 11 263436 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 11 263437 -NCIT:C153331 Recurrent EBV-Positive Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 263438 -NCIT:C156696 Recurrent T-Cell/Histiocyte-Rich Large B-Cell Lymphoma 11 263439 -NCIT:C157073 Recurrent Primary Diffuse Large B-Cell Lymphoma of the Central Nervous System 11 263440 -NCIT:C157070 Recurrent Primary Vitreoretinal Diffuse Large B-Cell Lymphoma 12 263441 -NCIT:C157679 Recurrent Primary Effusion Lymphoma 11 263442 -NCIT:C157683 Recurrent Plasmablastic Lymphoma 11 263443 -NCIT:C160229 Recurrent High Grade B-Cell Lymphoma 11 263444 -NCIT:C151980 Recurrent High Grade B-Cell Lymphoma with MYC and BCL2 or BCL6 Rearrangements 12 263445 -NCIT:C162451 Recurrent High Grade B-Cell Lymphoma with MYC, BCL2, and BCL6 Rearrangements 12 263446 -NCIT:C188788 Recurrent High Grade B-Cell Lymphoma, Not Otherwise Specified 12 263447 -NCIT:C165240 Recurrent Diffuse Large B-Cell Lymphoma, Not Otherwise Specified 11 263448 -NCIT:C160230 Recurrent Diffuse Large B-Cell Lymphoma Germinal Center B-Cell Type 12 263449 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 12 263450 -NCIT:C182035 Recurrent Immunoblastic Lymphoma 12 263451 -NCIT:C8163 Recurrent Adult Immunoblastic Lymphoma 13 263452 -NCIT:C8926 Recurrent Centroblastic Lymphoma 12 263453 -NCIT:C183140 Recurrent Diffuse Large B-Cell Lymphoma Associated with Chronic Inflammation 11 263454 -NCIT:C188790 Recurrent ALK-Positive Large B-Cell Lymphoma 11 263455 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 11 263456 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 12 263457 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 12 263458 -NCIT:C8874 Recurrent Primary Mediastinal (Thymic) Large B-Cell Lymphoma 11 263459 -NCIT:C178553 Recurrent Aggressive B-Cell Non-Hodgkin Lymphoma 9 263460 -NCIT:C138027 Recurrent Primary Cutaneous Diffuse Large B-Cell Lymphoma, Leg Type 10 263461 -NCIT:C160231 Recurrent Diffuse Large B-Cell Lymphoma Activated B-Cell Type 10 263462 -NCIT:C5008 Recurrent Burkitt Lymphoma 10 263463 -NCIT:C8159 Recurrent Adult Burkitt Lymphoma 11 263464 -NCIT:C9189 Recurrent Childhood Burkitt Lymphoma 11 263465 -NCIT:C69144 Recurrent Grade III Lymphomatoid Granulomatosis 10 263466 -NCIT:C115349 Recurrent Adult Grade III Lymphomatoid Granulomatosis 11 263467 -NCIT:C115367 Recurrent Childhood Grade III Lymphomatoid Granulomatosis 11 263468 -NCIT:C8158 Recurrent Grade 3 Follicular Lymphoma 10 263469 -NCIT:C148244 Recurrent Grade 3a Follicular Lymphoma 11 263470 -NCIT:C172323 Recurrent Grade 3b Follicular Lymphoma 11 263471 -NCIT:C8489 Recurrent Mantle Cell Lymphoma 10 263472 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 10 263473 -NCIT:C183512 Recurrent Indolent B-Cell Non-Hodgkin Lymphoma 9 263474 -NCIT:C68684 Recurrent Marginal Zone Lymphoma 10 263475 -NCIT:C4998 Recurrent Nodal Marginal Zone Lymphoma 11 263476 -NCIT:C5089 Recurrent Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue 11 263477 -NCIT:C5095 Recurrent Splenic Marginal Zone Lymphoma 11 263478 -NCIT:C8155 Recurrent Grade 1 Follicular Lymphoma 10 263479 -NCIT:C8156 Recurrent Grade 2 Follicular Lymphoma 10 263480 -NCIT:C8604 Recurrent Lymphoplasmacytic Lymphoma 10 263481 -NCIT:C127840 Recurrent Waldenstrom Macroglobulinemia 11 263482 -NCIT:C142810 Recurrent Acute Lymphoblastic Leukemia 6 263483 -NCIT:C142811 Recurrent B Acute Lymphoblastic Leukemia 7 263484 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 263485 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 263486 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 8 263487 -NCIT:C150131 Recurrent T Acute Lymphoblastic Leukemia 7 263488 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 263489 -NCIT:C7784 Recurrent Childhood Acute Lymphoblastic Leukemia 7 263490 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 263491 -NCIT:C7883 Recurrent Adult Acute Lymphoblastic Leukemia 7 263492 -NCIT:C142882 Recurrent Hairy Cell Leukemia 6 263493 -NCIT:C151976 Recurrent Burkitt Leukemia 6 263494 -NCIT:C157474 Recurrent Monomorphic Post-Transplant Lymphoproliferative Disorder 6 263495 -NCIT:C158081 Recurrent B-Cell Prolymphocytic Leukemia 6 263496 -NCIT:C171065 Recurrent Hairy Cell Leukemia Variant 6 263497 -NCIT:C172289 Recurrent Plasma Cell Neoplasm 6 263498 -NCIT:C133732 Recurrent Primary Amyloidosis 7 263499 -NCIT:C174054 Recurrent AL Amyloidosis 8 263500 -NCIT:C7025 Recurrent Plasma Cell Myeloma 7 263501 -NCIT:C173409 Recurrent Mature T-Cell and NK-Cell Neoplasm 6 263502 -NCIT:C150133 Recurrent T-Cell Prolymphocytic Leukemia 7 263503 -NCIT:C157692 Recurrent Aggressive NK-Cell Leukemia 7 263504 -NCIT:C180985 Recurrent T-Cell Large Granular Lymphocyte Leukemia 7 263505 -NCIT:C8688 Recurrent Mature T-Cell and NK-Cell Non-Hodgkin Lymphoma 7 263506 -NCIT:C115439 Recurrent Mycosis Fungoides and Sezary Syndrome 8 263507 -NCIT:C176999 Recurrent Sezary Syndrome 9 263508 -NCIT:C8686 Recurrent Mycosis Fungoides 9 263509 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 263510 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 8 263511 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 8 263512 -NCIT:C154333 Recurrent Peripheral T-Cell Lymphoma, Not Otherwise Specified 8 263513 -NCIT:C157689 Recurrent NK-Cell Lymphoma, Unclassifiable 8 263514 -NCIT:C165789 Recurrent Transformed T-cell Non-Hodgkin Lymphoma 8 263515 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 9 263516 -NCIT:C168778 Recurrent Nodal Peripheral T-Cell Lymphoma with TFH Phenotype 8 263517 -NCIT:C168780 Recurrent Follicular T-Cell Lymphoma 8 263518 -NCIT:C5026 Recurrent Nasal Type Extranodal NK/T-Cell Lymphoma 8 263519 -NCIT:C7805 Recurrent Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 263520 -NCIT:C157695 Recurrent Subcutaneous Panniculitis-Like T-Cell Lymphoma 9 263521 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 263522 -NCIT:C191818 Recurrent Primary Cutaneous Gamma-Delta T-Cell Lymphoma 9 263523 -NCIT:C191823 Recurrent Primary Cutaneous CD8-Positive Aggressive Epidermotropic Cytotoxic T-Cell Lymphoma 9 263524 -NCIT:C8686 Recurrent Mycosis Fungoides 9 263525 -NCIT:C165784 Recurrent Transformed Mycosis Fungoides 10 263526 -NCIT:C8251 Recurrent Adult T-Cell Leukemia/Lymphoma 8 263527 -NCIT:C8676 Recurrent Angioimmunoblastic T-Cell Lymphoma 8 263528 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 8 263529 -NCIT:C9250 Recurrent Anaplastic Large Cell Lymphoma 8 263530 -NCIT:C115357 Recurrent Childhood Anaplastic Large Cell Lymphoma 9 263531 -NCIT:C162688 Recurrent Systemic Anaplastic Large Cell Lymphoma 9 263532 -NCIT:C181047 Recurrent Primary Systemic Anaplastic Large Cell Lymphoma, ALK-Positive 10 263533 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 9 263534 -NCIT:C181044 Recurrent Primary Cutaneous Anaplastic Large Cell Lymphoma 9 263535 -NCIT:C8695 Recurrent T Lymphoblastic Leukemia/Lymphoma 6 263536 -NCIT:C150131 Recurrent T Acute Lymphoblastic Leukemia 7 263537 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 8 263538 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 7 263539 -NCIT:C7619 Recurrent Carcinoma 4 263540 -NCIT:C115441 Recurrent Primary Peritoneal Carcinoma 5 263541 -NCIT:C170751 Recurrent Platinum-Resistant Primary Peritoneal Carcinoma 6 263542 -NCIT:C170756 Recurrent Primary Peritoneal Undifferentiated Carcinoma 6 263543 -NCIT:C170759 Recurrent Primary Peritoneal Transitional Cell Carcinoma 6 263544 -NCIT:C170767 Recurrent Primary Peritoneal Adenocarcinoma 6 263545 -NCIT:C156453 Recurrent Primary Peritoneal Serous Adenocarcinoma 7 263546 -NCIT:C156454 Recurrent Primary Peritoneal Low Grade Serous Adenocarcinoma 8 263547 -NCIT:C165268 Recurrent Primary Peritoneal High Grade Serous Adenocarcinoma 8 263548 -NCIT:C165269 Recurrent Primary Peritoneal Endometrioid Adenocarcinoma 7 263549 -NCIT:C170761 Recurrent Primary Peritoneal Clear Cell Adenocarcinoma 7 263550 -NCIT:C191407 Recurrent Platinum-Sensitive Primary Peritoneal Carcinoma 6 263551 -NCIT:C148127 Recurrent Thymic Carcinoma 5 263552 -NCIT:C157639 Recurrent Adenoid Cystic Carcinoma 5 263553 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 6 263554 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 6 263555 -NCIT:C8216 Recurrent Oral Cavity Adenoid Cystic Carcinoma 6 263556 -NCIT:C159565 Recurrent Adenocarcinoma 5 263557 -NCIT:C136651 Recurrent Cervical Adenocarcinoma 6 263558 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 7 263559 -NCIT:C153359 Recurrent Gastroesophageal Junction Adenocarcinoma 6 263560 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 6 263561 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 6 263562 -NCIT:C153574 Recurrent Ampulla of Vater Adenocarcinoma 6 263563 -NCIT:C153575 Recurrent Anal Adenocarcinoma 6 263564 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 7 263565 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 7 263566 -NCIT:C153611 Recurrent Salivary Duct Carcinoma 6 263567 -NCIT:C153612 Recurrent Minor Salivary Gland Adenocarcinoma 6 263568 -NCIT:C153614 Recurrent Ovarian Adenocarcinoma 6 263569 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 7 263570 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 7 263571 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 8 263572 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 8 263573 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 8 263574 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 7 263575 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 7 263576 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 8 263577 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 7 263578 -NCIT:C154622 Recurrent Gastric Adenocarcinoma 6 263579 -NCIT:C155742 Recurrent Pancreatic Adenocarcinoma 6 263580 -NCIT:C153569 Recurrent Pancreatic Acinar Cell Carcinoma 7 263581 -NCIT:C153619 Recurrent Pancreatic Ductal Adenocarcinoma 7 263582 -NCIT:C153620 Recurrent Pancreatic Cystadenocarcinoma 7 263583 -NCIT:C158421 Recurrent Endometrioid Adenocarcinoma 6 263584 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 7 263585 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 7 263586 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 7 263587 -NCIT:C165269 Recurrent Primary Peritoneal Endometrioid Adenocarcinoma 7 263588 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 6 263589 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 7 263590 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 7 263591 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 7 263592 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 7 263593 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 7 263594 -NCIT:C162441 Recurrent Colorectal Adenocarcinoma 6 263595 -NCIT:C162442 Recurrent Colon Adenocarcinoma 7 263596 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 7 263597 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 6 263598 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 7 263599 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 7 263600 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 8 263601 -NCIT:C170766 Recurrent Fallopian Tube Adenocarcinoma 6 263602 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 7 263603 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 7 263604 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 7 263605 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 7 263606 -NCIT:C170767 Recurrent Primary Peritoneal Adenocarcinoma 6 263607 -NCIT:C156453 Recurrent Primary Peritoneal Serous Adenocarcinoma 7 263608 -NCIT:C156454 Recurrent Primary Peritoneal Low Grade Serous Adenocarcinoma 8 263609 -NCIT:C165268 Recurrent Primary Peritoneal High Grade Serous Adenocarcinoma 8 263610 -NCIT:C165269 Recurrent Primary Peritoneal Endometrioid Adenocarcinoma 7 263611 -NCIT:C170761 Recurrent Primary Peritoneal Clear Cell Adenocarcinoma 7 263612 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 6 263613 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 7 263614 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 6 263615 -NCIT:C175588 Recurrent Breast Adenocarcinoma 6 263616 -NCIT:C153568 Recurrent Breast Acinic Cell Carcinoma 7 263617 -NCIT:C153584 Recurrent Lobular Breast Carcinoma 7 263618 -NCIT:C153587 Recurrent Invasive Breast Carcinoma of No Special Type 7 263619 -NCIT:C153588 Recurrent Breast Paget Disease 7 263620 -NCIT:C168783 Recurrent HER2-Negative Breast Carcinoma 7 263621 -NCIT:C171014 Recurrent Triple-Negative Breast Carcinoma 7 263622 -NCIT:C182108 Recurrent HER2-Positive Breast Carcinoma 7 263623 -NCIT:C185157 Recurrent Hormone Receptor-Positive Breast Carcinoma 7 263624 -NCIT:C8607 Recurrent Breast Inflammatory Carcinoma 7 263625 -NCIT:C179174 Recurrent Appendix Adenocarcinoma 6 263626 -NCIT:C153579 Recurrent Appendix Mucinous Adenocarcinoma 7 263627 -NCIT:C179179 Recurrent Pseudomyxoma Peritonei 6 263628 -NCIT:C27325 Recurrent Cholangiocarcinoma 6 263629 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 7 263630 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 7 263631 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 6 263632 -NCIT:C6417 Recurrent Adrenal Cortical Carcinoma 6 263633 -NCIT:C7825 Recurrent Renal Cell Carcinoma 6 263634 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 7 263635 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 8 263636 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 7 263637 -NCIT:C7828 Recurrent Parathyroid Gland Carcinoma 6 263638 -NCIT:C8627 Recurrent Esophageal Adenocarcinoma 6 263639 -NCIT:C8757 Recurrent Lung Adenocarcinoma 6 263640 -NCIT:C9264 Recurrent Hepatocellular Carcinoma 6 263641 -NCIT:C154082 Recurrent Fibrolamellar Carcinoma 7 263642 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 7 263643 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 7 263644 -NCIT:C162652 Recurrent Squamous Cell Carcinoma 5 263645 -NCIT:C133709 Recurrent Head and Neck Squamous Cell Carcinoma 6 263646 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 263647 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 263648 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 263649 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 263650 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 263651 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 263652 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 263653 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 263654 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 263655 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 7 263656 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 263657 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 263658 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 263659 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 263660 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 263661 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 263662 -NCIT:C176682 Locally Recurrent Head and Neck Squamous Cell Carcinoma 7 263663 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 7 263664 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 263665 -NCIT:C136649 Recurrent Cervical Squamous Cell Carcinoma 6 263666 -NCIT:C143012 Recurrent Skin Squamous Cell Carcinoma 6 263667 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 263668 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 7 263669 -NCIT:C165737 Locally Recurrent Skin Squamous Cell Carcinoma 7 263670 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 6 263671 -NCIT:C169102 Recurrent Anal Squamous Cell Carcinoma 6 263672 -NCIT:C175360 Recurrent Anal Canal Squamous Cell Carcinoma 7 263673 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 8 263674 -NCIT:C174200 Recurrent Vulvar Squamous Cell Carcinoma 6 263675 -NCIT:C185302 Recurrent Vaginal Squamous Cell Carcinoma 6 263676 -NCIT:C5014 Recurrent Lung Squamous Cell Carcinoma 6 263677 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 7 263678 -NCIT:C8633 Recurrent Esophageal Squamous Cell Carcinoma 6 263679 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 6 263680 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 6 263681 -NCIT:C162732 Recurrent Malignant Myoepithelioma 5 263682 -NCIT:C165253 Recurrent Neuroendocrine Carcinoma 5 263683 -NCIT:C115440 Recurrent Merkel Cell Carcinoma 6 263684 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 7 263685 -NCIT:C165740 Locally Recurrent Merkel Cell Carcinoma 7 263686 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 6 263687 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 7 263688 -NCIT:C155938 Recurrent Digestive System Neuroendocrine Carcinoma 6 263689 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 7 263690 -NCIT:C183127 Recurrent Small Cell Neuroendocrine Carcinoma 6 263691 -NCIT:C183128 Recurrent Extrapulmonary Small Cell Neuroendocrine Carcinoma 7 263692 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 8 263693 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 8 263694 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 7 263695 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 8 263696 -NCIT:C190194 Locally Recurrent Carcinoma 5 263697 -NCIT:C165737 Locally Recurrent Skin Squamous Cell Carcinoma 6 263698 -NCIT:C165740 Locally Recurrent Merkel Cell Carcinoma 6 263699 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 6 263700 -NCIT:C176682 Locally Recurrent Head and Neck Squamous Cell Carcinoma 6 263701 -NCIT:C190195 Locally Recurrent Lung Non-Small Cell Carcinoma 6 263702 -NCIT:C190196 Locally Recurrent Breast Carcinoma 6 263703 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 6 263704 -NCIT:C190198 Locally Recurrent Gastric Carcinoma 6 263705 -NCIT:C190199 Locally Recurrent Colorectal Carcinoma 6 263706 -NCIT:C190200 Locally Recurrent Endometrial Carcinoma 6 263707 -NCIT:C190201 Locally Recurrent Ovarian Carcinoma 6 263708 -NCIT:C190776 Recurrent Basal Cell Carcinoma 5 263709 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 6 263710 -NCIT:C7620 Recurrent Female Reproductive System Carcinoma 5 263711 -NCIT:C115429 Recurrent Fallopian Tube Carcinoma 6 263712 -NCIT:C170750 Recurrent Platinum-Resistant Fallopian Tube Carcinoma 7 263713 -NCIT:C170755 Recurrent Fallopian Tube Undifferentiated Carcinoma 7 263714 -NCIT:C170757 Recurrent Fallopian Tube Transitional Cell Carcinoma 7 263715 -NCIT:C170766 Recurrent Fallopian Tube Adenocarcinoma 7 263716 -NCIT:C165265 Recurrent Fallopian Tube Endometrioid Adenocarcinoma 8 263717 -NCIT:C165267 Recurrent Fallopian Tube High Grade Serous Adenocarcinoma 8 263718 -NCIT:C170760 Recurrent Fallopian Tube Clear Cell Adenocarcinoma 8 263719 -NCIT:C178668 Recurrent Fallopian Tube Mucinous Adenocarcinoma 8 263720 -NCIT:C191395 Recurrent Platinum-Sensitive Fallopian Tube Carcinoma 7 263721 -NCIT:C150094 Recurrent Endometrial Carcinoma 6 263722 -NCIT:C155817 Recurrent Endometrial Undifferentiated Carcinoma 7 263723 -NCIT:C158437 Recurrent Endometrial Adenocarcinoma 7 263724 -NCIT:C132294 Recurrent Endometrial Serous Adenocarcinoma 8 263725 -NCIT:C150097 Recurrent Endometrial Endometrioid Adenocarcinoma 8 263726 -NCIT:C155816 Recurrent Endometrial Clear Cell Adenocarcinoma 8 263727 -NCIT:C155819 Recurrent Endometrial Mixed Cell Adenocarcinoma 8 263728 -NCIT:C165291 Recurrent Endometrial Mucinous Adenocarcinoma 8 263729 -NCIT:C165282 Recurrent Endometrial Dedifferentiated Carcinoma 7 263730 -NCIT:C165283 Recurrent Endometrial Squamous Cell Carcinoma 7 263731 -NCIT:C165284 Recurrent Endometrial Transitional Cell Carcinoma 7 263732 -NCIT:C175598 Recurrent Endometrial Adenosquamous Carcinoma 7 263733 -NCIT:C190200 Locally Recurrent Endometrial Carcinoma 7 263734 -NCIT:C7804 Recurrent Cervical Carcinoma 6 263735 -NCIT:C136649 Recurrent Cervical Squamous Cell Carcinoma 7 263736 -NCIT:C136650 Recurrent Cervical Adenosquamous Carcinoma 7 263737 -NCIT:C136651 Recurrent Cervical Adenocarcinoma 7 263738 -NCIT:C153573 Recurrent Endocervical Adenocarcinoma, Usual-Type 8 263739 -NCIT:C7833 Recurrent Ovarian Carcinoma 6 263740 -NCIT:C148025 Recurrent BRCA- Associated Ovarian Carcinoma 7 263741 -NCIT:C153614 Recurrent Ovarian Adenocarcinoma 7 263742 -NCIT:C150095 Recurrent Ovarian Endometrioid Adenocarcinoma 8 263743 -NCIT:C153615 Recurrent Ovarian Serous Adenocarcinoma 8 263744 -NCIT:C156455 Recurrent Ovarian Low Grade Serous Adenocarcinoma 9 263745 -NCIT:C165262 Recurrent Ovarian High Grade Serous Adenocarcinoma 9 263746 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 9 263747 -NCIT:C153616 Recurrent Ovarian Mucinous Adenocarcinoma 8 263748 -NCIT:C153617 Recurrent Ovarian Cystadenocarcinoma 8 263749 -NCIT:C187241 Recurrent Ovarian Serous Cystadenocarcinoma 9 263750 -NCIT:C153618 Recurrent Ovarian Clear Cell Adenocarcinoma 8 263751 -NCIT:C153818 Recurrent Malignant Ovarian Brenner Tumor 7 263752 -NCIT:C153819 Recurrent Ovarian Transitional Cell Carcinoma 7 263753 -NCIT:C170748 Recurrent Platinum-Resistant Ovarian Carcinoma 7 263754 -NCIT:C170754 Recurrent Ovarian Undifferentiated Carcinoma 7 263755 -NCIT:C178669 Recurrent Ovarian Seromucinous Carcinoma 7 263756 -NCIT:C188391 Recurrent Platinum-Sensitive Ovarian Carcinoma 7 263757 -NCIT:C190201 Locally Recurrent Ovarian Carcinoma 7 263758 -NCIT:C7860 Recurrent Vaginal Carcinoma 6 263759 -NCIT:C185302 Recurrent Vaginal Squamous Cell Carcinoma 7 263760 -NCIT:C9054 Recurrent Vulvar Carcinoma 6 263761 -NCIT:C174200 Recurrent Vulvar Squamous Cell Carcinoma 7 263762 -NCIT:C7621 Recurrent Male Reproductive System Carcinoma 5 263763 -NCIT:C7870 Recurrent Penile Carcinoma 6 263764 -NCIT:C7902 Recurrent Prostate Carcinoma 6 263765 -NCIT:C156771 Biochemically Recurrent Prostate Carcinoma 7 263766 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 7 263767 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 8 263768 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 7 263769 -NCIT:C7622 Recurrent Digestive System Carcinoma 5 263770 -NCIT:C151905 Recurrent Metastatic Digestive System Carcinoma 6 263771 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 7 263772 -NCIT:C153359 Recurrent Gastroesophageal Junction Adenocarcinoma 6 263773 -NCIT:C153574 Recurrent Ampulla of Vater Adenocarcinoma 6 263774 -NCIT:C153575 Recurrent Anal Adenocarcinoma 6 263775 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 7 263776 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 7 263777 -NCIT:C153802 Recurrent Appendix Carcinoma 6 263778 -NCIT:C179174 Recurrent Appendix Adenocarcinoma 7 263779 -NCIT:C153579 Recurrent Appendix Mucinous Adenocarcinoma 8 263780 -NCIT:C155938 Recurrent Digestive System Neuroendocrine Carcinoma 6 263781 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 7 263782 -NCIT:C156782 Recurrent Biliary Tract Carcinoma 6 263783 -NCIT:C153360 Recurrent Bile Duct Carcinoma 7 263784 -NCIT:C27325 Recurrent Cholangiocarcinoma 8 263785 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 9 263786 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 9 263787 -NCIT:C7893 Recurrent Extrahepatic Bile Duct Carcinoma 8 263788 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 9 263789 -NCIT:C4008 Recurrent Gallbladder Carcinoma 7 263790 -NCIT:C169102 Recurrent Anal Squamous Cell Carcinoma 6 263791 -NCIT:C175360 Recurrent Anal Canal Squamous Cell Carcinoma 7 263792 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 8 263793 -NCIT:C3999 Recurrent Esophageal Carcinoma 6 263794 -NCIT:C8627 Recurrent Esophageal Adenocarcinoma 7 263795 -NCIT:C8633 Recurrent Esophageal Squamous Cell Carcinoma 7 263796 -NCIT:C7110 Recurrent Liver Carcinoma 6 263797 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 7 263798 -NCIT:C7880 Recurrent Adult Liver Carcinoma 7 263799 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 8 263800 -NCIT:C9264 Recurrent Hepatocellular Carcinoma 7 263801 -NCIT:C154082 Recurrent Fibrolamellar Carcinoma 8 263802 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 8 263803 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 8 263804 -NCIT:C7626 Recurrent Pancreatic Carcinoma 6 263805 -NCIT:C155742 Recurrent Pancreatic Adenocarcinoma 7 263806 -NCIT:C153569 Recurrent Pancreatic Acinar Cell Carcinoma 8 263807 -NCIT:C153619 Recurrent Pancreatic Ductal Adenocarcinoma 8 263808 -NCIT:C153620 Recurrent Pancreatic Cystadenocarcinoma 8 263809 -NCIT:C7793 Recurrent Anal Canal Carcinoma 6 263810 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 7 263811 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 7 263812 -NCIT:C175360 Recurrent Anal Canal Squamous Cell Carcinoma 7 263813 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 8 263814 -NCIT:C9249 Recurrent AIDS-Related Anal Canal Carcinoma 7 263815 -NCIT:C7894 Recurrent Small Intestinal Carcinoma 6 263816 -NCIT:C9352 Recurrent Duodenal Carcinoma 7 263817 -NCIT:C8625 Recurrent Colorectal Carcinoma 6 263818 -NCIT:C162441 Recurrent Colorectal Adenocarcinoma 7 263819 -NCIT:C162442 Recurrent Colon Adenocarcinoma 8 263820 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 8 263821 -NCIT:C190199 Locally Recurrent Colorectal Carcinoma 7 263822 -NCIT:C190679 Recurrent Microsatellite Stable Colorectal Carcinoma 7 263823 -NCIT:C3998 Recurrent Colon Carcinoma 7 263824 -NCIT:C162442 Recurrent Colon Adenocarcinoma 8 263825 -NCIT:C8634 Recurrent Rectosigmoid Carcinoma 7 263826 -NCIT:C9238 Recurrent Rectal Carcinoma 7 263827 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 8 263828 -NCIT:C9237 Recurrent Gastric Carcinoma 6 263829 -NCIT:C154622 Recurrent Gastric Adenocarcinoma 7 263830 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 7 263831 -NCIT:C190198 Locally Recurrent Gastric Carcinoma 7 263832 -NCIT:C7623 Recurrent Urinary System Carcinoma 5 263833 -NCIT:C157631 Recurrent Urothelial Carcinoma 6 263834 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 7 263835 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 8 263836 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 7 263837 -NCIT:C8254 Recurrent Renal Pelvis and Ureter Urothelial Carcinoma 7 263838 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 8 263839 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 8 263840 -NCIT:C172622 Recurrent Kidney Carcinoma 6 263841 -NCIT:C150519 Recurrent Renal Pelvis Urothelial Carcinoma 7 263842 -NCIT:C162726 Recurrent Kidney Medullary Carcinoma 7 263843 -NCIT:C7825 Recurrent Renal Cell Carcinoma 7 263844 -NCIT:C153590 Recurrent Clear Cell Renal Cell Carcinoma 8 263845 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 9 263846 -NCIT:C153595 Recurrent Chromophobe Renal Cell Carcinoma 8 263847 -NCIT:C7508 Recurrent Urethral Carcinoma 6 263848 -NCIT:C131218 Recurrent Urethral Urothelial Carcinoma 7 263849 -NCIT:C7899 Recurrent Bladder Carcinoma 6 263850 -NCIT:C126307 Recurrent Bladder Urothelial Carcinoma 7 263851 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 8 263852 -NCIT:C190774 Recurrent Non-Muscle Invasive Bladder Carcinoma 7 263853 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 8 263854 -NCIT:C191860 Recurrent Bladder Small Cell Neuroendocrine Carcinoma 7 263855 -NCIT:C4995 Recurrent Bladder Adenocarcinoma 7 263856 -NCIT:C8902 Recurrent Bladder Squamous Cell Carcinoma 7 263857 -NCIT:C9255 Recurrent Ureter Carcinoma 6 263858 -NCIT:C150516 Recurrent Ureter Urothelial Carcinoma 7 263859 -NCIT:C7624 Recurrent Head and Neck Carcinoma 5 263860 -NCIT:C133709 Recurrent Head and Neck Squamous Cell Carcinoma 6 263861 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 263862 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 263863 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 263864 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 263865 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 263866 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 263867 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 263868 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 263869 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 263870 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 7 263871 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 263872 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 263873 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 263874 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 263875 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 263876 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 263877 -NCIT:C176682 Locally Recurrent Head and Neck Squamous Cell Carcinoma 7 263878 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 7 263879 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 263880 -NCIT:C4034 Recurrent Laryngeal Carcinoma 6 263881 -NCIT:C8245 Recurrent Laryngeal Squamous Cell Carcinoma 7 263882 -NCIT:C8246 Recurrent Laryngeal Verrucous Carcinoma 8 263883 -NCIT:C5103 Recurrent Pharyngeal Carcinoma 6 263884 -NCIT:C173689 Recurrent Pharyngeal Squamous Cell Carcinoma 7 263885 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 263886 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 263887 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 263888 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 263889 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 263890 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 263891 -NCIT:C8051 Recurrent Oropharyngeal Carcinoma 7 263892 -NCIT:C8221 Recurrent Oropharyngeal Squamous Cell Carcinoma 8 263893 -NCIT:C115093 Recurrent Oropharyngeal Undifferentiated Carcinoma 9 263894 -NCIT:C9240 Recurrent Nasopharyngeal Carcinoma 7 263895 -NCIT:C167266 Recurrent Nasopharyngeal Squamous Cell Carcinoma 8 263896 -NCIT:C8230 Recurrent Nasopharyngeal Keratinizing Squamous Cell Carcinoma 9 263897 -NCIT:C8231 Recurrent Nasopharyngeal Undifferentiated Carcinoma 9 263898 -NCIT:C9241 Recurrent Hypopharyngeal Carcinoma 7 263899 -NCIT:C8236 Recurrent Hypopharyngeal Squamous Cell Carcinoma 8 263900 -NCIT:C67558 Recurrent Sinonasal Carcinoma 6 263901 -NCIT:C115443 Recurrent Sinonasal Squamous Cell Carcinoma 7 263902 -NCIT:C148387 Recurrent Paranasal Sinus Squamous Cell Carcinoma 8 263903 -NCIT:C7828 Recurrent Parathyroid Gland Carcinoma 6 263904 -NCIT:C7908 Recurrent Thyroid Gland Carcinoma 6 263905 -NCIT:C153623 Recurrent Thyroid Gland Medullary Carcinoma 7 263906 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 8 263907 -NCIT:C153624 Recurrent Thyroid Gland Anaplastic Carcinoma 7 263908 -NCIT:C165611 Recurrent Differentiated Thyroid Gland Carcinoma 7 263909 -NCIT:C153621 Recurrent Thyroid Gland Papillary Carcinoma 8 263910 -NCIT:C153622 Recurrent Thyroid Gland Follicular Carcinoma 8 263911 -NCIT:C174573 Recurrent Thyroid Gland Oncocytic Carcinoma 9 263912 -NCIT:C174047 Recurrent Poorly Differentiated Thyroid Gland Carcinoma 7 263913 -NCIT:C7926 Recurrent Salivary Gland Carcinoma 6 263914 -NCIT:C153611 Recurrent Salivary Duct Carcinoma 7 263915 -NCIT:C153612 Recurrent Minor Salivary Gland Adenocarcinoma 7 263916 -NCIT:C153800 Recurrent Parotid Gland Carcinoma 7 263917 -NCIT:C153571 Recurrent Parotid Gland Acinic Cell Carcinoma 8 263918 -NCIT:C153804 Recurrent Parotid Gland Adenoid Cystic Carcinoma 8 263919 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 263920 -NCIT:C153806 Recurrent Parotid Gland Mucoepidermoid Carcinoma 8 263921 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 263922 -NCIT:C153813 Recurrent Parotid Gland Undifferentiated Carcinoma 8 263923 -NCIT:C153801 Recurrent Submandibular Gland Carcinoma 7 263924 -NCIT:C153572 Recurrent Submandibular Gland Acinic Cell Carcinoma 8 263925 -NCIT:C153807 Recurrent Submandibular Gland Mucoepidermoid Carcinoma 8 263926 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 263927 -NCIT:C153809 Recurrent Submandibular Gland Adenoid Cystic Carcinoma 8 263928 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 263929 -NCIT:C153812 Recurrent Submandibular Gland Undifferentiated Carcinoma 8 263930 -NCIT:C172650 Recurrent Salivary Gland Squamous Cell Carcinoma 7 263931 -NCIT:C153810 Recurrent Parotid Gland Squamous Cell Carcinoma 8 263932 -NCIT:C153811 Recurrent Submandibular Gland Squamous Cell Carcinoma 8 263933 -NCIT:C8037 Recurrent Lip and Oral Cavity Carcinoma 6 263934 -NCIT:C115442 Recurrent Lip and Oral Cavity Squamous Cell Carcinoma 7 263935 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 263936 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 263937 -NCIT:C6076 Recurrent Oral Cavity Carcinoma 7 263938 -NCIT:C6060 Recurrent Oral Cavity Squamous Cell Carcinoma 8 263939 -NCIT:C8214 Recurrent Oral Cavity Verrucous Carcinoma 9 263940 -NCIT:C8215 Recurrent Oral Cavity Mucoepidermoid Carcinoma 8 263941 -NCIT:C8216 Recurrent Oral Cavity Adenoid Cystic Carcinoma 8 263942 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 7 263943 -NCIT:C7771 Recurrent Breast Carcinoma 5 263944 -NCIT:C175588 Recurrent Breast Adenocarcinoma 6 263945 -NCIT:C153568 Recurrent Breast Acinic Cell Carcinoma 7 263946 -NCIT:C153584 Recurrent Lobular Breast Carcinoma 7 263947 -NCIT:C153587 Recurrent Invasive Breast Carcinoma of No Special Type 7 263948 -NCIT:C153588 Recurrent Breast Paget Disease 7 263949 -NCIT:C168783 Recurrent HER2-Negative Breast Carcinoma 7 263950 -NCIT:C171014 Recurrent Triple-Negative Breast Carcinoma 7 263951 -NCIT:C182108 Recurrent HER2-Positive Breast Carcinoma 7 263952 -NCIT:C185157 Recurrent Hormone Receptor-Positive Breast Carcinoma 7 263953 -NCIT:C8607 Recurrent Breast Inflammatory Carcinoma 7 263954 -NCIT:C190196 Locally Recurrent Breast Carcinoma 6 263955 -NCIT:C7903 Recurrent Skin Carcinoma 5 263956 -NCIT:C115440 Recurrent Merkel Cell Carcinoma 6 263957 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 7 263958 -NCIT:C165740 Locally Recurrent Merkel Cell Carcinoma 7 263959 -NCIT:C143012 Recurrent Skin Squamous Cell Carcinoma 6 263960 -NCIT:C162942 Recurrent Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 263961 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 7 263962 -NCIT:C165737 Locally Recurrent Skin Squamous Cell Carcinoma 7 263963 -NCIT:C8213 Recurrent Lip Basal Cell Carcinoma 6 263964 -NCIT:C8953 Recurrent Lung Carcinoma 5 263965 -NCIT:C180923 Recurrent Bronchogenic Carcinoma 6 263966 -NCIT:C5014 Recurrent Lung Squamous Cell Carcinoma 6 263967 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 7 263968 -NCIT:C7783 Recurrent Lung Non-Small Cell Carcinoma 6 263969 -NCIT:C128797 Recurrent Lung Non-Squamous Non-Small Cell Carcinoma 7 263970 -NCIT:C171286 Recurrent Lung Non-Small Cell Squamous Carcinoma 7 263971 -NCIT:C190195 Locally Recurrent Lung Non-Small Cell Carcinoma 7 263972 -NCIT:C8747 Recurrent Lung Adenosquamous Carcinoma 7 263973 -NCIT:C8753 Recurrent Lung Large Cell Carcinoma 7 263974 -NCIT:C8757 Recurrent Lung Adenocarcinoma 7 263975 -NCIT:C9050 Recurrent Lung Small Cell Carcinoma 6 263976 -NCIT:C141077 Recurrent Extensive Stage Lung Small Cell Carcinoma 7 263977 -NCIT:C9181 Recurrent Carcinoma of Unknown Primary 5 263978 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 6 263979 -NCIT:C7866 Recurrent Malignant Mesothelioma 4 263980 -NCIT:C175938 Recurrent Epithelioid Mesothelioma 5 263981 -NCIT:C8705 Recurrent Peritoneal Malignant Mesothelioma 5 263982 -NCIT:C8707 Recurrent Pleural Malignant Mesothelioma 5 263983 -NCIT:C9253 Recurrent Pericardial Malignant Mesothelioma 5 263984 -NCIT:C7905 Recurrent Malignant Thymoma 4 263985 -NCIT:C9263 Recurrent Malignant Duodenal Neoplasm 4 263986 -NCIT:C9352 Recurrent Duodenal Carcinoma 5 263987 -NCIT:C9354 Recurrent Malignant Gastric Neoplasm 4 263988 -NCIT:C9237 Recurrent Gastric Carcinoma 5 263989 -NCIT:C154622 Recurrent Gastric Adenocarcinoma 6 263990 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 6 263991 -NCIT:C190198 Locally Recurrent Gastric Carcinoma 6 263992 -NCIT:C94796 Locally Recurrent Malignant Neoplasm 4 263993 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 5 263994 -NCIT:C185073 Locally Recurrent Chordoma 5 263995 -NCIT:C190194 Locally Recurrent Carcinoma 5 263996 -NCIT:C165737 Locally Recurrent Skin Squamous Cell Carcinoma 6 263997 -NCIT:C165740 Locally Recurrent Merkel Cell Carcinoma 6 263998 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 6 263999 -NCIT:C176682 Locally Recurrent Head and Neck Squamous Cell Carcinoma 6 264000 -NCIT:C190195 Locally Recurrent Lung Non-Small Cell Carcinoma 6 264001 -NCIT:C190196 Locally Recurrent Breast Carcinoma 6 264002 -NCIT:C190197 Locally Recurrent Clear Cell Renal Cell Carcinoma 6 264003 -NCIT:C190198 Locally Recurrent Gastric Carcinoma 6 264004 -NCIT:C190199 Locally Recurrent Colorectal Carcinoma 6 264005 -NCIT:C190200 Locally Recurrent Endometrial Carcinoma 6 264006 -NCIT:C190201 Locally Recurrent Ovarian Carcinoma 6 264007 -NCIT:C4867 Malignant Soft Tissue Neoplasm 3 264008 -NCIT:C128054 Malignant Cervical Soft Tissue Neoplasm 4 264009 -NCIT:C128047 Cervical Leiomyosarcoma 5 264010 -NCIT:C128048 Cervical Rhabdomyosarcoma 5 264011 -NCIT:C128049 Cervical Angiosarcoma 5 264012 -NCIT:C128050 Cervical Malignant Peripheral Nerve Sheath Tumor 5 264013 -NCIT:C40222 Cervical Low Grade Endometrioid Stromal Sarcoma 5 264014 -NCIT:C40224 Endocervical Undifferentiated Sarcoma 5 264015 -NCIT:C40225 Cervical Alveolar Soft Part Sarcoma 5 264016 -NCIT:C40229 Cervical Adenosarcoma 5 264017 -NCIT:C7433 AIDS-Related Cervical Kaposi Sarcoma 5 264018 -NCIT:C150536 Recurrent Malignant Soft Tissue Neoplasm 4 264019 -NCIT:C139002 Recurrent Soft Tissue Sarcoma 5 264020 -NCIT:C153626 Recurrent Skin Angiosarcoma 6 264021 -NCIT:C158426 Recurrent Desmoplastic Small Round Cell Tumor 6 264022 -NCIT:C169050 Recurrent Soft Tissue Sarcoma of the Trunk and Extremities 6 264023 -NCIT:C170727 Recurrent Breast Sarcoma 6 264024 -NCIT:C133092 Recurrent Breast Angiosarcoma 7 264025 -NCIT:C180980 Recurrent Clear Cell Sarcoma of Soft Tissue 6 264026 -NCIT:C5059 Recurrent Epithelioid Sarcoma 6 264027 -NCIT:C7822 Recurrent Adult Soft Tissue Sarcoma 6 264028 -NCIT:C7935 Recurrent Kaposi Sarcoma 6 264029 -NCIT:C8067 Recurrent Childhood Soft Tissue Sarcoma 6 264030 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 7 264031 -NCIT:C8261 Recurrent Uterine Corpus Sarcoma 6 264032 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 7 264033 -NCIT:C8795 Recurrent Undifferentiated Pleomorphic Sarcoma 6 264034 -NCIT:C8798 Recurrent Alveolar Soft Part Sarcoma 6 264035 -NCIT:C8803 Recurrent Extraskeletal Ewing Sarcoma 6 264036 -NCIT:C8807 Recurrent Extraskeletal Myxoid Chondrosarcoma 6 264037 -NCIT:C8811 Recurrent Extraskeletal Osteosarcoma 6 264038 -NCIT:C8824 Recurrent Rhabdomyosarcoma 6 264039 -NCIT:C142881 Recurrent Alveolar Rhabdomyosarcoma 7 264040 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 7 264041 -NCIT:C8827 Recurrent Synovial Sarcoma 6 264042 -NCIT:C188881 Recurrent Extrarenal Rhabdoid Tumor 5 264043 -NCIT:C171170 Recurrent Extrarenal Rhabdoid Tumor of the Ovary 6 264044 -NCIT:C150537 Refractory Malignant Soft Tissue Neoplasm 4 264045 -NCIT:C139001 Refractory Soft Tissue Sarcoma 5 264046 -NCIT:C142851 Refractory Rhabdomyosarcoma 6 264047 -NCIT:C142880 Refractory Alveolar Rhabdomyosarcoma 7 264048 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 7 264049 -NCIT:C148295 Refractory Undifferentiated Pleomorphic Sarcoma 6 264050 -NCIT:C148296 Refractory Synovial Sarcoma 6 264051 -NCIT:C156474 Refractory Kaposi Sarcoma 6 264052 -NCIT:C158427 Refractory Desmoplastic Small Round Cell Tumor 6 264053 -NCIT:C162722 Refractory Epithelioid Sarcoma 6 264054 -NCIT:C171168 Refractory Extraskeletal Myxoid Chondrosarcoma 6 264055 -NCIT:C180979 Refractory Clear Cell Sarcoma of Soft Tissue 6 264056 -NCIT:C185882 Refractory Malignant Gastrointestinal Stromal Tumor 6 264057 -NCIT:C187194 Refractory Childhood Soft Tissue Sarcoma 6 264058 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 7 264059 -NCIT:C188034 Refractory Alveolar Soft Part Sarcoma 6 264060 -NCIT:C175664 Refractory Malignant Glomus Tumor 5 264061 -NCIT:C188884 Refractory Extrarenal Rhabdoid Tumor 5 264062 -NCIT:C171171 Refractory Extrarenal Rhabdoid Tumor of the Ovary 6 264063 -NCIT:C162581 Penile Epithelioid Hemangioendothelioma 4 264064 -NCIT:C173176 Malignant Sinonasal Soft Tissue Neoplasm 4 264065 -NCIT:C173118 Sinonasal Sarcoma 5 264066 -NCIT:C164205 Biphenotypic Sinonasal Sarcoma 6 264067 -NCIT:C173120 Sinonasal Fibrosarcoma 6 264068 -NCIT:C173121 Sinonasal Undifferentiated Pleomorphic Sarcoma 6 264069 -NCIT:C173123 Sinonasal Leiomyosarcoma 6 264070 -NCIT:C173124 Sinonasal Rhabdomyosarcoma 6 264071 -NCIT:C173125 Sinonasal Angiosarcoma 6 264072 -NCIT:C173127 Sinonasal Malignant Peripheral Nerve Sheath Tumor 6 264073 -NCIT:C173128 Sinonasal Synovial Sarcoma 6 264074 -NCIT:C6849 Paranasal Sinus Sarcoma 6 264075 -NCIT:C6850 High Grade Paranasal Sinus Sarcoma 7 264076 -NCIT:C6851 Low Grade Paranasal Sinus Sarcoma 7 264077 -NCIT:C173138 Sinonasal Epithelioid Hemangioendothelioma 5 264078 -NCIT:C173175 Sinonasal Ewing Sarcoma/Peripheral Primitive Neuroectodermal Tumor 5 264079 -NCIT:C173400 Malignant Laryngeal Soft Tissue Neoplasm 4 264080 -NCIT:C173408 Laryngeal Soft Tissue Sarcoma 5 264081 -NCIT:C6021 Laryngeal Liposarcoma 6 264082 -NCIT:C6022 Laryngeal Leiomyosarcoma 6 264083 -NCIT:C27293 Extraskeletal Ewing Sarcoma/Peripheral Primitive Neuroectodermal Tumor 4 264084 -NCIT:C173175 Sinonasal Ewing Sarcoma/Peripheral Primitive Neuroectodermal Tumor 5 264085 -NCIT:C27471 Peripheral Primitive Neuroectodermal Tumor of Soft Tissues 5 264086 -NCIT:C7135 Extraskeletal Ewing Sarcoma 5 264087 -NCIT:C159208 Kidney Ewing Sarcoma 6 264088 -NCIT:C189261 Childhood Kidney Ewing Sarcoma 7 264089 -NCIT:C172634 Skin Ewing Sarcoma 6 264090 -NCIT:C181977 Vulvar Ewing Sarcoma 6 264091 -NCIT:C186611 Central Nervous System Ewing Sarcoma 6 264092 -NCIT:C8801 Metastatic Extraskeletal Ewing Sarcoma 6 264093 -NCIT:C8802 Localized Extraskeletal Ewing Sarcoma 6 264094 -NCIT:C8803 Recurrent Extraskeletal Ewing Sarcoma 6 264095 -NCIT:C6530 Malignant Pericytic Neoplasm 4 264096 -NCIT:C4221 Malignant Glomus Tumor 5 264097 -NCIT:C175661 Unresectable Malignant Glomus Tumor 6 264098 -NCIT:C175662 Metastatic Malignant Glomus Tumor 6 264099 -NCIT:C175663 Locally Advanced Malignant Glomus Tumor 7 264100 -NCIT:C175664 Refractory Malignant Glomus Tumor 6 264101 -NCIT:C6531 Malignant Synovial Neoplasm 4 264102 -NCIT:C176467 Synovial Chondrosarcoma 5 264103 -NCIT:C6535 Malignant Tenosynovial Giant Cell Tumor 5 264104 -NCIT:C6588 Malignant Soft Tissue Tumor of Uncertain Differentiation 4 264105 -NCIT:C121774 Malignant Ossifying Fibromyxoid Tumor 5 264106 -NCIT:C121792 Malignant PEComa 5 264107 -NCIT:C127072 Uterine Corpus Malignant PEComa 6 264108 -NCIT:C142785 Lung Malignant PEComa 6 264109 -NCIT:C159677 Bladder Malignant PEComa 6 264110 -NCIT:C164245 Metastatic Malignant PEComa 6 264111 -NCIT:C164246 Advanced Malignant PEComa 7 264112 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 7 264113 -NCIT:C27502 Extraskeletal Myxoid Chondrosarcoma 5 264114 -NCIT:C171168 Refractory Extraskeletal Myxoid Chondrosarcoma 6 264115 -NCIT:C27377 Childhood Extraskeletal Myxoid Chondrosarcoma 6 264116 -NCIT:C27501 Conventional Extraskeletal Myxoid Chondrosarcoma 6 264117 -NCIT:C5462 Brain Extraskeletal Myxoid Chondrosarcoma 6 264118 -NCIT:C7924 Adult Extraskeletal Myxoid Chondrosarcoma 6 264119 -NCIT:C8804 Metastatic Extraskeletal Myxoid Chondrosarcoma 6 264120 -NCIT:C8807 Recurrent Extraskeletal Myxoid Chondrosarcoma 6 264121 -NCIT:C3400 Synovial Sarcoma 5 264122 -NCIT:C147102 Pericardial Synovial Sarcoma 6 264123 -NCIT:C148296 Refractory Synovial Sarcoma 6 264124 -NCIT:C153074 Unresectable Synovial Sarcoma 6 264125 -NCIT:C157737 Kidney Synovial Sarcoma 6 264126 -NCIT:C161034 Prostate Synovial Sarcoma 6 264127 -NCIT:C173128 Sinonasal Synovial Sarcoma 6 264128 -NCIT:C4279 Biphasic Synovial Sarcoma 6 264129 -NCIT:C45632 Lung Biphasic Synovial Sarcoma 7 264130 -NCIT:C45698 Pleural Biphasic Synovial Sarcoma 7 264131 -NCIT:C45757 Cardiac Biphasic Synovial Sarcoma 7 264132 -NCIT:C45631 Lung Synovial Sarcoma 6 264133 -NCIT:C45632 Lung Biphasic Synovial Sarcoma 7 264134 -NCIT:C45633 Lung Monophasic Synovial Sarcoma 7 264135 -NCIT:C45696 Pleural Synovial Sarcoma 6 264136 -NCIT:C45697 Pleural Monophasic Synovial Sarcoma 7 264137 -NCIT:C45698 Pleural Biphasic Synovial Sarcoma 7 264138 -NCIT:C45756 Cardiac Synovial Sarcoma 6 264139 -NCIT:C45757 Cardiac Biphasic Synovial Sarcoma 7 264140 -NCIT:C45758 Cardiac Monophasic Synovial Sarcoma 7 264141 -NCIT:C6534 Monophasic Synovial Sarcoma 6 264142 -NCIT:C4277 Spindle Cell Synovial Sarcoma 7 264143 -NCIT:C4278 Epithelial Synovial Sarcoma 7 264144 -NCIT:C45633 Lung Monophasic Synovial Sarcoma 7 264145 -NCIT:C45697 Pleural Monophasic Synovial Sarcoma 7 264146 -NCIT:C45758 Cardiac Monophasic Synovial Sarcoma 7 264147 -NCIT:C6618 Mediastinal Synovial Sarcoma 6 264148 -NCIT:C7817 Adult Synovial Sarcoma 6 264149 -NCIT:C8089 Childhood Synovial Sarcoma 6 264150 -NCIT:C8825 Metastatic Synovial Sarcoma 6 264151 -NCIT:C153184 Advanced Synovial Sarcoma 7 264152 -NCIT:C171399 Locally Advanced Synovial Sarcoma 7 264153 -NCIT:C8826 Localized Synovial Sarcoma 6 264154 -NCIT:C8827 Recurrent Synovial Sarcoma 6 264155 -NCIT:C95624 Esophageal Synovial Sarcoma 6 264156 -NCIT:C95899 Gastric Synovial Sarcoma 6 264157 -NCIT:C96845 Liver Synovial Sarcoma 6 264158 -NCIT:C3714 Epithelioid Sarcoma 5 264159 -NCIT:C162722 Refractory Epithelioid Sarcoma 6 264160 -NCIT:C167379 Unresectable Epithelioid Sarcoma 6 264161 -NCIT:C181971 Vulvar Epithelioid Sarcoma 6 264162 -NCIT:C181973 Vulvar Distal-Type Epithelioid Sarcoma 7 264163 -NCIT:C40319 Vulvar Proximal-Type Epithelioid Sarcoma 7 264164 -NCIT:C27472 Proximal-Type Epithelioid Sarcoma 6 264165 -NCIT:C188055 Pleural Proximal-Type Epithelioid Sarcoma 7 264166 -NCIT:C40319 Vulvar Proximal-Type Epithelioid Sarcoma 7 264167 -NCIT:C27473 Distal-Type Epithelioid Sarcoma 6 264168 -NCIT:C181973 Vulvar Distal-Type Epithelioid Sarcoma 7 264169 -NCIT:C5059 Recurrent Epithelioid Sarcoma 6 264170 -NCIT:C7944 Adult Epithelioid Sarcoma 6 264171 -NCIT:C8095 Childhood Epithelioid Sarcoma 6 264172 -NCIT:C8799 Metastatic Epithelioid Sarcoma 6 264173 -NCIT:C167378 Locally Advanced Epithelioid Sarcoma 7 264174 -NCIT:C167380 Advanced Epithelioid Sarcoma 7 264175 -NCIT:C8800 Localized Epithelioid Sarcoma 6 264176 -NCIT:C9409 Epithelioid Sarcoma NCI Grade 2 6 264177 -NCIT:C9410 Epithelioid Sarcoma NCI Grade 3 6 264178 -NCIT:C3745 Clear Cell Sarcoma of Soft Tissue 5 264179 -NCIT:C161585 Metastatic Clear Cell Sarcoma of Soft Tissue 6 264180 -NCIT:C161586 Advanced Clear Cell Sarcoma of Soft Tissue 7 264181 -NCIT:C180979 Refractory Clear Cell Sarcoma of Soft Tissue 6 264182 -NCIT:C180980 Recurrent Clear Cell Sarcoma of Soft Tissue 6 264183 -NCIT:C27370 Adult Clear Cell Sarcoma of Soft Tissue 6 264184 -NCIT:C27371 Childhood Clear Cell Sarcoma of Soft Tissue 6 264185 -NCIT:C3750 Alveolar Soft Part Sarcoma 5 264186 -NCIT:C156273 Tongue Alveolar Soft Part Sarcoma' 6 264187 -NCIT:C156276 Orbital Alveolar Soft Part Sarcoma 6 264188 -NCIT:C156277 Bladder Alveolar Soft Part Sarcoma 6 264189 -NCIT:C164078 Unresectable Alveolar Soft Part Sarcoma 6 264190 -NCIT:C173809 Lung Alveolar Soft Part Sarcoma 6 264191 -NCIT:C188034 Refractory Alveolar Soft Part Sarcoma 6 264192 -NCIT:C40225 Cervical Alveolar Soft Part Sarcoma 6 264193 -NCIT:C40320 Vulvar Alveolar Soft Part Sarcoma 6 264194 -NCIT:C7943 Adult Alveolar Soft Part Sarcoma 6 264195 -NCIT:C8092 Childhood Alveolar Soft Part Sarcoma 6 264196 -NCIT:C8796 Metastatic Alveolar Soft Part Sarcoma 6 264197 -NCIT:C164076 Locally Advanced Alveolar Soft Part Sarcoma 7 264198 -NCIT:C188198 Advanced Alveolar Soft Part Sarcoma 7 264199 -NCIT:C8797 Localized Alveolar Soft Part Sarcoma 6 264200 -NCIT:C8798 Recurrent Alveolar Soft Part Sarcoma 6 264201 -NCIT:C53677 Intimal Sarcoma 5 264202 -NCIT:C142825 Pulmonary Artery Intimal Sarcoma 6 264203 -NCIT:C6586 Extrarenal Rhabdoid Tumor 5 264204 -NCIT:C161608 Extrarenal Rhabdoid Tumor of the Prostate 6 264205 -NCIT:C171169 Extrarenal Rhabdoid Tumor of the Ovary 6 264206 -NCIT:C171170 Recurrent Extrarenal Rhabdoid Tumor of the Ovary 7 264207 -NCIT:C171171 Refractory Extrarenal Rhabdoid Tumor of the Ovary 7 264208 -NCIT:C188881 Recurrent Extrarenal Rhabdoid Tumor 6 264209 -NCIT:C171170 Recurrent Extrarenal Rhabdoid Tumor of the Ovary 7 264210 -NCIT:C188884 Refractory Extrarenal Rhabdoid Tumor 6 264211 -NCIT:C171171 Refractory Extrarenal Rhabdoid Tumor of the Ovary 7 264212 -NCIT:C188886 Unresectable Extrarenal Rhabdoid Tumor 6 264213 -NCIT:C96847 Extrarenal Rhabdoid Tumor of the Liver 6 264214 -NCIT:C7135 Extraskeletal Ewing Sarcoma 5 264215 -NCIT:C159208 Kidney Ewing Sarcoma 6 264216 -NCIT:C189261 Childhood Kidney Ewing Sarcoma 7 264217 -NCIT:C172634 Skin Ewing Sarcoma 6 264218 -NCIT:C181977 Vulvar Ewing Sarcoma 6 264219 -NCIT:C186611 Central Nervous System Ewing Sarcoma 6 264220 -NCIT:C8801 Metastatic Extraskeletal Ewing Sarcoma 6 264221 -NCIT:C8802 Localized Extraskeletal Ewing Sarcoma 6 264222 -NCIT:C8803 Recurrent Extraskeletal Ewing Sarcoma 6 264223 -NCIT:C8300 Desmoplastic Small Round Cell Tumor 5 264224 -NCIT:C126356 Peritoneal Desmoplastic Small Round Cell Tumor 6 264225 -NCIT:C158426 Recurrent Desmoplastic Small Round Cell Tumor 6 264226 -NCIT:C158427 Refractory Desmoplastic Small Round Cell Tumor 6 264227 -NCIT:C170826 Unresectable Desmoplastic Small Round Cell Tumor 6 264228 -NCIT:C170827 Metastatic Desmoplastic Small Round Cell Tumor 6 264229 -NCIT:C180875 Locally Advanced Desmoplastic Small Round Cell Tumor 7 264230 -NCIT:C27372 Childhood Desmoplastic Small Round Cell Tumor 6 264231 -NCIT:C27373 Adult Desmoplastic Small Round Cell Tumor 6 264232 -NCIT:C6642 Malignant Mediastinal Soft Tissue Neoplasm 4 264233 -NCIT:C146988 Mediastinal Epithelioid Hemangioendothelioma 5 264234 -NCIT:C6606 Mediastinal Sarcoma 5 264235 -NCIT:C6613 Mediastinal Angiosarcoma 6 264236 -NCIT:C6614 Mediastinal Liposarcoma 6 264237 -NCIT:C95038 Thymoliposarcoma 7 264238 -NCIT:C6615 Mediastinal Extraskeletal Osteosarcoma 6 264239 -NCIT:C6617 Mediastinal Rhabdomyosarcoma 6 264240 -NCIT:C6618 Mediastinal Synovial Sarcoma 6 264241 -NCIT:C6619 Mediastinal Leiomyosarcoma 6 264242 -NCIT:C6626 Mediastinal Malignant Peripheral Nerve Sheath Tumor 6 264243 -NCIT:C6630 Malignant Melanotic Peripheral Nerve Sheath Tumor of the Mediastinum 7 264244 -NCIT:C6758 Malignant Central Nervous System Mesenchymal, Non-Meningothelial Neoplasm 4 264245 -NCIT:C129527 Central Nervous System Solitary Fibrous Tumor, Grade 3 5 264246 -NCIT:C186603 Central Nervous System Dedifferentiated Solitary Fibrous Tumor 6 264247 -NCIT:C9183 Adult Central Nervous System Solitary Fibrous Tumor, Grade 3 6 264248 -NCIT:C92652 Meningeal Central Nervous System Solitary Fibrous Tumor, Grade 3 6 264249 -NCIT:C129536 Central Nervous System Epithelioid Hemangioendothelioma 5 264250 -NCIT:C5153 Central Nervous System Sarcoma 5 264251 -NCIT:C129534 Central Nervous System Mesenchymal Chondrosarcoma 6 264252 -NCIT:C129566 Central Nervous System Undifferentiated Pleomorphic Sarcoma 6 264253 -NCIT:C186607 Central Nervous System CIC-Rearranged Sarcoma 6 264254 -NCIT:C186611 Central Nervous System Ewing Sarcoma 6 264255 -NCIT:C4073 Meningeal Sarcoma 6 264256 -NCIT:C4334 Meningeal Sarcomatosis 7 264257 -NCIT:C8312 Leptomeningeal Sarcoma 7 264258 -NCIT:C5152 Spinal Cord Sarcoma 6 264259 -NCIT:C5154 Brain Sarcoma 6 264260 -NCIT:C186610 Primary Intracranial Sarcoma, DICER1-Mutant 7 264261 -NCIT:C5462 Brain Extraskeletal Myxoid Chondrosarcoma 7 264262 -NCIT:C6973 Brain Liposarcoma 7 264263 -NCIT:C5450 Central Nervous System Angiosarcoma 6 264264 -NCIT:C5464 Central Nervous System Rhabdomyosarcoma 6 264265 -NCIT:C5465 Central Nervous System Fibrosarcoma 6 264266 -NCIT:C6999 Central Nervous System Leiomyosarcoma 6 264267 -NCIT:C7002 Central Nervous System Extraskeletal Osteosarcoma 6 264268 -NCIT:C7006 Central Nervous System Kaposi Sarcoma 6 264269 -NCIT:C7292 Malignant Splenic Soft Tissue Neoplasm 4 264270 -NCIT:C4564 Splenic Angiosarcoma 5 264271 -NCIT:C81855 Malignant Epithelioid Cell Type Gastrointestinal Stromal Tumor 4 264272 -NCIT:C9306 Soft Tissue Sarcoma 4 264273 -NCIT:C121571 Leiomyosarcoma of Deep Soft Tissue 5 264274 -NCIT:C27904 Retroperitoneal Leiomyosarcoma 6 264275 -NCIT:C121671 Soft Tissue Angiosarcoma 5 264276 -NCIT:C162578 Penile Angiosarcoma 6 264277 -NCIT:C171026 Visceral Angiosarcoma 6 264278 -NCIT:C147097 Cardiac Angiosarcoma 7 264279 -NCIT:C147101 Pericardial Angiosarcoma 7 264280 -NCIT:C159205 Kidney Angiosarcoma 7 264281 -NCIT:C159671 Bladder Angiosarcoma 7 264282 -NCIT:C161642 Seminal Vesicle Angiosarcoma 7 264283 -NCIT:C4438 Liver Angiosarcoma 7 264284 -NCIT:C190020 Childhood Liver Angiosarcoma 8 264285 -NCIT:C4564 Splenic Angiosarcoma 7 264286 -NCIT:C48320 Adrenal Gland Angiosarcoma 7 264287 -NCIT:C5232 Ovarian Angiosarcoma 7 264288 -NCIT:C5376 Aortic Angiosarcoma 7 264289 -NCIT:C5378 Superior Vena Cava Angiosarcoma 7 264290 -NCIT:C5385 Uterine Angiosarcoma 7 264291 -NCIT:C128049 Cervical Angiosarcoma 8 264292 -NCIT:C5528 Prostate Angiosarcoma 7 264293 -NCIT:C5840 Gallbladder Angiosarcoma 7 264294 -NCIT:C6043 Thyroid Gland Angiosarcoma 7 264295 -NCIT:C6613 Mediastinal Angiosarcoma 7 264296 -NCIT:C6746 Pulmonary Artery Angiosarcoma 7 264297 -NCIT:C96060 Small Intestinal Angiosarcoma 7 264298 -NCIT:C96511 Colorectal Angiosarcoma 7 264299 -NCIT:C173125 Sinonasal Angiosarcoma 6 264300 -NCIT:C176515 Vulvar Angiosarcoma 6 264301 -NCIT:C4489 Skin Angiosarcoma 6 264302 -NCIT:C153626 Recurrent Skin Angiosarcoma 7 264303 -NCIT:C27719 Skin Radiation-Related Angiosarcoma 7 264304 -NCIT:C40379 Angiosarcoma of the Skin of the Arm after Radical Mastectomy followed by Lymphedema 7 264305 -NCIT:C5184 Breast Angiosarcoma 6 264306 -NCIT:C133092 Recurrent Breast Angiosarcoma 7 264307 -NCIT:C176251 Primary Breast Angiosarcoma 7 264308 -NCIT:C40378 Postradiation Breast Angiosarcoma 7 264309 -NCIT:C5320 Peripheral Intraneural Angiosarcoma 6 264310 -NCIT:C5450 Central Nervous System Angiosarcoma 6 264311 -NCIT:C121793 Undifferentiated Soft Tissue Sarcoma 5 264312 -NCIT:C121797 Undifferentiated Spindle Cell Sarcoma 6 264313 -NCIT:C121799 Undifferentiated Round Cell Sarcoma 6 264314 -NCIT:C121802 Undifferentiated Epithelioid Sarcoma 6 264315 -NCIT:C121804 Undifferentiated Sarcoma, Not Otherwise Specified 6 264316 -NCIT:C4247 Undifferentiated Pleomorphic Sarcoma 6 264317 -NCIT:C114541 Adult Undifferentiated Pleomorphic Sarcoma 7 264318 -NCIT:C114749 Childhood Undifferentiated Pleomorphic Sarcoma 7 264319 -NCIT:C129566 Central Nervous System Undifferentiated Pleomorphic Sarcoma 7 264320 -NCIT:C148295 Refractory Undifferentiated Pleomorphic Sarcoma 7 264321 -NCIT:C150610 Unresectable Undifferentiated Pleomorphic Sarcoma 7 264322 -NCIT:C150611 Resectable Undifferentiated Pleomorphic Sarcoma 7 264323 -NCIT:C151985 Abdominal Undifferentiated Pleomorphic Sarcoma 7 264324 -NCIT:C161038 Prostate Undifferentiated Pleomorphic Sarcoma 7 264325 -NCIT:C162589 Penile Undifferentiated Pleomorphic Sarcoma 7 264326 -NCIT:C173121 Sinonasal Undifferentiated Pleomorphic Sarcoma 7 264327 -NCIT:C173808 Retroperitoneal Undifferentiated Pleomorphic Sarcoma 7 264328 -NCIT:C45755 Cardiac Undifferentiated Pleomorphic Sarcoma 7 264329 -NCIT:C4926 Metastatic Undifferentiated Pleomorphic Sarcoma 7 264330 -NCIT:C160919 Locally Advanced Undifferentiated Pleomorphic Sarcoma 8 264331 -NCIT:C165781 Advanced Undifferentiated Pleomorphic Sarcoma 8 264332 -NCIT:C5576 Skin Undifferentiated Pleomorphic Sarcoma 7 264333 -NCIT:C6497 Undifferentiated Pleomorphic Sarcoma, Inflammatory Variant 7 264334 -NCIT:C8380 Undifferentiated Pleomorphic Sarcoma with Osteoclast-Like Giant Cells 7 264335 -NCIT:C8795 Recurrent Undifferentiated Pleomorphic Sarcoma 7 264336 -NCIT:C128047 Cervical Leiomyosarcoma 5 264337 -NCIT:C128048 Cervical Rhabdomyosarcoma 5 264338 -NCIT:C128050 Cervical Malignant Peripheral Nerve Sheath Tumor 5 264339 -NCIT:C136693 Soft Tissue Sarcoma by AJCC v8 Stage 5 264340 -NCIT:C136694 Soft Tissue Sarcoma of the Trunk and Extremities by AJCC v8 Stage 6 264341 -NCIT:C136696 Stage I Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 7 264342 -NCIT:C136698 Stage IA Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 8 264343 -NCIT:C136700 Stage IB Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 8 264344 -NCIT:C136701 Stage II Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 7 264345 -NCIT:C136702 Stage III Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 7 264346 -NCIT:C136703 Stage IIIA Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 8 264347 -NCIT:C136705 Stage IIIB Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 8 264348 -NCIT:C136706 Stage IV Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 7 264349 -NCIT:C136767 Gastrointestinal Stromal Tumor by AJCC v8 Stage 6 264350 -NCIT:C136768 Gastric and Omental Gastrointestinal Stromal Tumor by AJCC v8 Stage 7 264351 -NCIT:C136770 Stage I Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 8 264352 -NCIT:C136771 Stage IA Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 9 264353 -NCIT:C136772 Stage IB Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 9 264354 -NCIT:C136773 Stage II Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 8 264355 -NCIT:C136774 Stage III Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 8 264356 -NCIT:C136775 Stage IIIA Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 9 264357 -NCIT:C136777 Stage IIIB Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 9 264358 -NCIT:C136778 Stage IV Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 8 264359 -NCIT:C136769 Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor by AJCC v8 Stage 7 264360 -NCIT:C136780 Stage I Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 8 264361 -NCIT:C136781 Stage II Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 8 264362 -NCIT:C136783 Stage III Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 8 264363 -NCIT:C136784 Stage IIIA Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 9 264364 -NCIT:C136785 Stage IIIB Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 9 264365 -NCIT:C136786 Stage IV Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 8 264366 -NCIT:C136811 Retroperitoneal Sarcoma by AJCC v8 Stage 6 264367 -NCIT:C136812 Stage I Retroperitoneal Sarcoma AJCC v8 7 264368 -NCIT:C136813 Stage IA Retroperitoneal Sarcoma AJCC v8 8 264369 -NCIT:C136814 Stage IB Retroperitoneal Sarcoma AJCC v8 8 264370 -NCIT:C136815 Stage II Retroperitoneal Sarcoma AJCC v8 7 264371 -NCIT:C136816 Stage III Retroperitoneal Sarcoma AJCC v8 7 264372 -NCIT:C136817 Stage IIIA Retroperitoneal Sarcoma AJCC v8 8 264373 -NCIT:C136818 Stage IIIB Retroperitoneal Sarcoma AJCC v8 8 264374 -NCIT:C136819 Stage IV Retroperitoneal Sarcoma AJCC v8 7 264375 -NCIT:C136707 Soft Tissue Sarcoma by AJCC v7 Stage 5 264376 -NCIT:C6537 Stage I Soft Tissue Sarcoma AJCC v7 6 264377 -NCIT:C7818 Stage I Adult Soft Tissue Sarcoma AJCC v7 7 264378 -NCIT:C8569 Stage IA Adult Soft Tissue Sarcoma AJCC v7 8 264379 -NCIT:C8570 Stage IB Adult Soft Tissue Sarcoma AJCC v7 8 264380 -NCIT:C8580 Stage IB Soft Tissue Sarcoma AJCC v7 7 264381 -NCIT:C8570 Stage IB Adult Soft Tissue Sarcoma AJCC v7 8 264382 -NCIT:C8583 Stage IA Soft Tissue Sarcoma AJCC v7 7 264383 -NCIT:C8569 Stage IA Adult Soft Tissue Sarcoma AJCC v7 8 264384 -NCIT:C6538 Stage II Soft Tissue Sarcoma AJCC v7 6 264385 -NCIT:C7819 Stage II Adult Soft Tissue Sarcoma AJCC v7 7 264386 -NCIT:C8571 Stage IIA Adult Soft Tissue Sarcoma AJCC v7 8 264387 -NCIT:C8572 Stage IIB Adult Soft Tissue Sarcoma AJCC v7 8 264388 -NCIT:C8581 Stage IIA Soft Tissue Sarcoma AJCC v7 7 264389 -NCIT:C8571 Stage IIA Adult Soft Tissue Sarcoma AJCC v7 8 264390 -NCIT:C8582 Stage IIB Soft Tissue Sarcoma AJCC v7 7 264391 -NCIT:C8572 Stage IIB Adult Soft Tissue Sarcoma AJCC v7 8 264392 -NCIT:C8585 Stage III Soft Tissue Sarcoma AJCC v7 6 264393 -NCIT:C7820 Stage III Adult Soft Tissue Sarcoma AJCC v7 7 264394 -NCIT:C8586 Stage IV Soft Tissue Sarcoma AJCC v7 6 264395 -NCIT:C4243 Sarcomatosis 7 264396 -NCIT:C4334 Meningeal Sarcomatosis 8 264397 -NCIT:C7821 Stage IV Adult Soft Tissue Sarcoma AJCC v7 7 264398 -NCIT:C139001 Refractory Soft Tissue Sarcoma 5 264399 -NCIT:C142851 Refractory Rhabdomyosarcoma 6 264400 -NCIT:C142880 Refractory Alveolar Rhabdomyosarcoma 7 264401 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 7 264402 -NCIT:C148295 Refractory Undifferentiated Pleomorphic Sarcoma 6 264403 -NCIT:C148296 Refractory Synovial Sarcoma 6 264404 -NCIT:C156474 Refractory Kaposi Sarcoma 6 264405 -NCIT:C158427 Refractory Desmoplastic Small Round Cell Tumor 6 264406 -NCIT:C162722 Refractory Epithelioid Sarcoma 6 264407 -NCIT:C171168 Refractory Extraskeletal Myxoid Chondrosarcoma 6 264408 -NCIT:C180979 Refractory Clear Cell Sarcoma of Soft Tissue 6 264409 -NCIT:C185882 Refractory Malignant Gastrointestinal Stromal Tumor 6 264410 -NCIT:C187194 Refractory Childhood Soft Tissue Sarcoma 6 264411 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 7 264412 -NCIT:C188034 Refractory Alveolar Soft Part Sarcoma 6 264413 -NCIT:C139002 Recurrent Soft Tissue Sarcoma 5 264414 -NCIT:C153626 Recurrent Skin Angiosarcoma 6 264415 -NCIT:C158426 Recurrent Desmoplastic Small Round Cell Tumor 6 264416 -NCIT:C169050 Recurrent Soft Tissue Sarcoma of the Trunk and Extremities 6 264417 -NCIT:C170727 Recurrent Breast Sarcoma 6 264418 -NCIT:C133092 Recurrent Breast Angiosarcoma 7 264419 -NCIT:C180980 Recurrent Clear Cell Sarcoma of Soft Tissue 6 264420 -NCIT:C5059 Recurrent Epithelioid Sarcoma 6 264421 -NCIT:C7822 Recurrent Adult Soft Tissue Sarcoma 6 264422 -NCIT:C7935 Recurrent Kaposi Sarcoma 6 264423 -NCIT:C8067 Recurrent Childhood Soft Tissue Sarcoma 6 264424 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 7 264425 -NCIT:C8261 Recurrent Uterine Corpus Sarcoma 6 264426 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 7 264427 -NCIT:C8795 Recurrent Undifferentiated Pleomorphic Sarcoma 6 264428 -NCIT:C8798 Recurrent Alveolar Soft Part Sarcoma 6 264429 -NCIT:C8803 Recurrent Extraskeletal Ewing Sarcoma 6 264430 -NCIT:C8807 Recurrent Extraskeletal Myxoid Chondrosarcoma 6 264431 -NCIT:C8811 Recurrent Extraskeletal Osteosarcoma 6 264432 -NCIT:C8824 Recurrent Rhabdomyosarcoma 6 264433 -NCIT:C142881 Recurrent Alveolar Rhabdomyosarcoma 7 264434 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 7 264435 -NCIT:C8827 Recurrent Synovial Sarcoma 6 264436 -NCIT:C147098 Pericardial Sarcoma 5 264437 -NCIT:C147101 Pericardial Angiosarcoma 6 264438 -NCIT:C147102 Pericardial Synovial Sarcoma 6 264439 -NCIT:C153068 Unresectable Soft Tissue Sarcoma 5 264440 -NCIT:C150610 Unresectable Undifferentiated Pleomorphic Sarcoma 6 264441 -NCIT:C150741 Unresectable Malignant Gastrointestinal Stromal Tumor 6 264442 -NCIT:C151983 Unresectable Rhabdomyosarcoma 6 264443 -NCIT:C153074 Unresectable Synovial Sarcoma 6 264444 -NCIT:C153476 Locally Advanced Unresectable Soft Tissue Sarcoma 6 264445 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 7 264446 -NCIT:C164078 Unresectable Alveolar Soft Part Sarcoma 6 264447 -NCIT:C167379 Unresectable Epithelioid Sarcoma 6 264448 -NCIT:C168728 Unresectable Soft Tissue Leiomyosarcoma 6 264449 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 7 264450 -NCIT:C170826 Unresectable Desmoplastic Small Round Cell Tumor 6 264451 -NCIT:C178372 Unresectable Myxofibrosarcoma 6 264452 -NCIT:C190016 Unresectable Uterine Corpus Sarcoma 6 264453 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 7 264454 -NCIT:C153069 Metastatic Soft Tissue Sarcoma 5 264455 -NCIT:C150738 Metastatic Gastrointestinal Stromal Tumor 6 264456 -NCIT:C150739 Locally Advanced Gastrointestinal Stromal Tumor 7 264457 -NCIT:C173502 Advanced Gastrointestinal Stromal Tumor 7 264458 -NCIT:C153066 Locally Advanced Soft Tissue Sarcoma 6 264459 -NCIT:C150739 Locally Advanced Gastrointestinal Stromal Tumor 7 264460 -NCIT:C153476 Locally Advanced Unresectable Soft Tissue Sarcoma 7 264461 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 8 264462 -NCIT:C160919 Locally Advanced Undifferentiated Pleomorphic Sarcoma 7 264463 -NCIT:C164076 Locally Advanced Alveolar Soft Part Sarcoma 7 264464 -NCIT:C166415 Locally Advanced Rhabdomyosarcoma 7 264465 -NCIT:C167378 Locally Advanced Epithelioid Sarcoma 7 264466 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 7 264467 -NCIT:C171399 Locally Advanced Synovial Sarcoma 7 264468 -NCIT:C180875 Locally Advanced Desmoplastic Small Round Cell Tumor 7 264469 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 7 264470 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 264471 -NCIT:C156071 Metastatic Adult Soft Tissue Sarcoma 6 264472 -NCIT:C156475 Metastatic Kaposi Sarcoma 6 264473 -NCIT:C156476 Advanced Kaposi Sarcoma 7 264474 -NCIT:C161585 Metastatic Clear Cell Sarcoma of Soft Tissue 6 264475 -NCIT:C161586 Advanced Clear Cell Sarcoma of Soft Tissue 7 264476 -NCIT:C162194 Advanced Soft Tissue Sarcoma 6 264477 -NCIT:C153184 Advanced Synovial Sarcoma 7 264478 -NCIT:C156476 Advanced Kaposi Sarcoma 7 264479 -NCIT:C161586 Advanced Clear Cell Sarcoma of Soft Tissue 7 264480 -NCIT:C164246 Advanced Malignant PEComa 7 264481 -NCIT:C165781 Advanced Undifferentiated Pleomorphic Sarcoma 7 264482 -NCIT:C167380 Advanced Epithelioid Sarcoma 7 264483 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 7 264484 -NCIT:C171304 Advanced Myxofibrosarcoma 7 264485 -NCIT:C173502 Advanced Gastrointestinal Stromal Tumor 7 264486 -NCIT:C188198 Advanced Alveolar Soft Part Sarcoma 7 264487 -NCIT:C164245 Metastatic Malignant PEComa 6 264488 -NCIT:C164246 Advanced Malignant PEComa 7 264489 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 7 264490 -NCIT:C166414 Metastatic Rhabdomyosarcoma 6 264491 -NCIT:C166415 Locally Advanced Rhabdomyosarcoma 7 264492 -NCIT:C183250 Metastatic Embryonal Rhabdomyosarcoma 7 264493 -NCIT:C168670 Metastatic Myxofibrosarcoma 6 264494 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 7 264495 -NCIT:C171304 Advanced Myxofibrosarcoma 7 264496 -NCIT:C168725 Metastatic Soft Tissue Leiomyosarcoma 6 264497 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 7 264498 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 7 264499 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 264500 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 7 264501 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 264502 -NCIT:C170827 Metastatic Desmoplastic Small Round Cell Tumor 6 264503 -NCIT:C180875 Locally Advanced Desmoplastic Small Round Cell Tumor 7 264504 -NCIT:C190009 Metastatic Uterine Corpus Sarcoma 6 264505 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 7 264506 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 264507 -NCIT:C4926 Metastatic Undifferentiated Pleomorphic Sarcoma 6 264508 -NCIT:C160919 Locally Advanced Undifferentiated Pleomorphic Sarcoma 7 264509 -NCIT:C165781 Advanced Undifferentiated Pleomorphic Sarcoma 7 264510 -NCIT:C8066 Metastatic Childhood Soft Tissue Sarcoma 6 264511 -NCIT:C8796 Metastatic Alveolar Soft Part Sarcoma 6 264512 -NCIT:C164076 Locally Advanced Alveolar Soft Part Sarcoma 7 264513 -NCIT:C188198 Advanced Alveolar Soft Part Sarcoma 7 264514 -NCIT:C8799 Metastatic Epithelioid Sarcoma 6 264515 -NCIT:C167378 Locally Advanced Epithelioid Sarcoma 7 264516 -NCIT:C167380 Advanced Epithelioid Sarcoma 7 264517 -NCIT:C8801 Metastatic Extraskeletal Ewing Sarcoma 6 264518 -NCIT:C8804 Metastatic Extraskeletal Myxoid Chondrosarcoma 6 264519 -NCIT:C8808 Metastatic Extraskeletal Osteosarcoma 6 264520 -NCIT:C8825 Metastatic Synovial Sarcoma 6 264521 -NCIT:C153184 Advanced Synovial Sarcoma 7 264522 -NCIT:C171399 Locally Advanced Synovial Sarcoma 7 264523 -NCIT:C153086 Resectable Soft Tissue Sarcoma 5 264524 -NCIT:C150611 Resectable Undifferentiated Pleomorphic Sarcoma 6 264525 -NCIT:C156283 Scrotal Sarcoma 5 264526 -NCIT:C156282 Scrotal Liposarcoma 6 264527 -NCIT:C162493 Paratesticular Liposarcoma 5 264528 -NCIT:C162495 Paratesticular Leiomyosarcoma 5 264529 -NCIT:C161641 Seminal Vesicle Leiomyosarcoma 6 264530 -NCIT:C162497 Paratesticular Rhabdomyosarcoma 5 264531 -NCIT:C165190 Soft Tissue Sarcoma of the Trunk and Extremities 5 264532 -NCIT:C136694 Soft Tissue Sarcoma of the Trunk and Extremities by AJCC v8 Stage 6 264533 -NCIT:C136696 Stage I Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 7 264534 -NCIT:C136698 Stage IA Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 8 264535 -NCIT:C136700 Stage IB Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 8 264536 -NCIT:C136701 Stage II Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 7 264537 -NCIT:C136702 Stage III Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 7 264538 -NCIT:C136703 Stage IIIA Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 8 264539 -NCIT:C136705 Stage IIIB Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 8 264540 -NCIT:C136706 Stage IV Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 7 264541 -NCIT:C169050 Recurrent Soft Tissue Sarcoma of the Trunk and Extremities 6 264542 -NCIT:C172849 Digestive System Sarcoma 5 264543 -NCIT:C150704 EBV-Positive Inflammatory Follicular Dendritic Cell Sarcoma of the Digestive System 6 264544 -NCIT:C172951 Digestive System Leiomyosarcoma 6 264545 -NCIT:C188065 Pancreatic Leiomyosarcoma 7 264546 -NCIT:C27200 Gastric Leiomyosarcoma 7 264547 -NCIT:C5334 Esophageal Leiomyosarcoma 7 264548 -NCIT:C5599 Anal Leiomyosarcoma 7 264549 -NCIT:C5756 Liver Leiomyosarcoma 7 264550 -NCIT:C5841 Gallbladder Leiomyosarcoma 7 264551 -NCIT:C5848 Extrahepatic Bile Duct Leiomyosarcoma 7 264552 -NCIT:C7085 Small Intestinal Leiomyosarcoma 7 264553 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 8 264554 -NCIT:C96435 Appendix Leiomyosarcoma 7 264555 -NCIT:C96509 Colorectal Leiomyosarcoma 7 264556 -NCIT:C5494 Colon Leiomyosarcoma 8 264557 -NCIT:C5549 Rectal Leiomyosarcoma 8 264558 -NCIT:C172952 Digestive System Rhabdomyosarcoma 6 264559 -NCIT:C5610 Anal Rhabdomyosarcoma 7 264560 -NCIT:C5627 Rectal Rhabdomyosarcoma 7 264561 -NCIT:C5834 Liver Rhabdomyosarcoma 7 264562 -NCIT:C5839 Gallbladder Rhabdomyosarcoma 7 264563 -NCIT:C5860 Extrahepatic Bile Duct Rhabdomyosarcoma 7 264564 -NCIT:C5847 Extrahepatic Bile Duct Embryonal Rhabdomyosarcoma 8 264565 -NCIT:C95623 Esophageal Rhabdomyosarcoma 7 264566 -NCIT:C172955 Digestive System Kaposi Sarcoma 6 264567 -NCIT:C5529 Gastric Kaposi Sarcoma 7 264568 -NCIT:C5624 AIDS-Related Gastric Kaposi Sarcoma 8 264569 -NCIT:C5602 Anal Kaposi Sarcoma 7 264570 -NCIT:C5706 Esophageal Kaposi Sarcoma 7 264571 -NCIT:C5842 Gallbladder Kaposi Sarcoma 7 264572 -NCIT:C96059 Small Intestinal Kaposi Sarcoma 7 264573 -NCIT:C96434 Appendix Kaposi Sarcoma 7 264574 -NCIT:C96510 Colorectal Kaposi Sarcoma 7 264575 -NCIT:C5516 Colon Kaposi Sarcoma 8 264576 -NCIT:C5550 Rectal Kaposi Sarcoma 8 264577 -NCIT:C96844 Liver Kaposi Sarcoma 7 264578 -NCIT:C96951 Extrahepatic Bile Duct Kaposi Sarcoma 7 264579 -NCIT:C172980 Gastrointestinal Clear Cell Sarcoma/Malignant Gastrointestinal Neuroectodermal Tumor 6 264580 -NCIT:C27439 Gastric Sarcoma 6 264581 -NCIT:C27200 Gastric Leiomyosarcoma 7 264582 -NCIT:C5488 Gastric Liposarcoma 7 264583 -NCIT:C5529 Gastric Kaposi Sarcoma 7 264584 -NCIT:C5624 AIDS-Related Gastric Kaposi Sarcoma 8 264585 -NCIT:C95897 Gastric Malignant Gastrointestinal Stromal Tumor 7 264586 -NCIT:C95899 Gastric Synovial Sarcoma 7 264587 -NCIT:C4437 Liver Sarcoma 6 264588 -NCIT:C27096 Liver Embryonal Sarcoma 7 264589 -NCIT:C189934 Childhood Liver Embryonal Sarcoma 8 264590 -NCIT:C189935 Adult Liver Embryonal Sarcoma 8 264591 -NCIT:C4438 Liver Angiosarcoma 7 264592 -NCIT:C190020 Childhood Liver Angiosarcoma 8 264593 -NCIT:C5756 Liver Leiomyosarcoma 7 264594 -NCIT:C5832 Liver Fibrosarcoma 7 264595 -NCIT:C5833 Liver Extraskeletal Osteosarcoma 7 264596 -NCIT:C5834 Liver Rhabdomyosarcoma 7 264597 -NCIT:C96844 Liver Kaposi Sarcoma 7 264598 -NCIT:C96845 Liver Synovial Sarcoma 7 264599 -NCIT:C5029 Extrahepatic Bile Duct Sarcoma 6 264600 -NCIT:C5848 Extrahepatic Bile Duct Leiomyosarcoma 7 264601 -NCIT:C5860 Extrahepatic Bile Duct Rhabdomyosarcoma 7 264602 -NCIT:C5847 Extrahepatic Bile Duct Embryonal Rhabdomyosarcoma 8 264603 -NCIT:C96951 Extrahepatic Bile Duct Kaposi Sarcoma 7 264604 -NCIT:C5335 Small Intestinal Sarcoma 6 264605 -NCIT:C5336 Small Intestinal Fibrosarcoma 7 264606 -NCIT:C7085 Small Intestinal Leiomyosarcoma 7 264607 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 8 264608 -NCIT:C82972 Duodenal Extraskeletal Osteosarcoma 7 264609 -NCIT:C96059 Small Intestinal Kaposi Sarcoma 7 264610 -NCIT:C96060 Small Intestinal Angiosarcoma 7 264611 -NCIT:C5341 Esophageal Sarcoma 6 264612 -NCIT:C5334 Esophageal Leiomyosarcoma 7 264613 -NCIT:C5705 Esophageal Liposarcoma 7 264614 -NCIT:C5706 Esophageal Kaposi Sarcoma 7 264615 -NCIT:C92185 Esophageal Malignant Peripheral Nerve Sheath Tumor 7 264616 -NCIT:C95623 Esophageal Rhabdomyosarcoma 7 264617 -NCIT:C95624 Esophageal Synovial Sarcoma 7 264618 -NCIT:C5611 Anal Sarcoma 6 264619 -NCIT:C5599 Anal Leiomyosarcoma 7 264620 -NCIT:C5602 Anal Kaposi Sarcoma 7 264621 -NCIT:C5610 Anal Rhabdomyosarcoma 7 264622 -NCIT:C5715 Pancreatic Sarcoma 6 264623 -NCIT:C188065 Pancreatic Leiomyosarcoma 7 264624 -NCIT:C5736 Gallbladder Sarcoma 6 264625 -NCIT:C5839 Gallbladder Rhabdomyosarcoma 7 264626 -NCIT:C5840 Gallbladder Angiosarcoma 7 264627 -NCIT:C5841 Gallbladder Leiomyosarcoma 7 264628 -NCIT:C5842 Gallbladder Kaposi Sarcoma 7 264629 -NCIT:C96508 Colorectal Sarcoma 6 264630 -NCIT:C5495 Colon Sarcoma 7 264631 -NCIT:C156279 Colon Liposarcoma 8 264632 -NCIT:C5494 Colon Leiomyosarcoma 8 264633 -NCIT:C5516 Colon Kaposi Sarcoma 8 264634 -NCIT:C5548 Rectal Sarcoma 7 264635 -NCIT:C5549 Rectal Leiomyosarcoma 8 264636 -NCIT:C5550 Rectal Kaposi Sarcoma 8 264637 -NCIT:C5627 Rectal Rhabdomyosarcoma 8 264638 -NCIT:C96509 Colorectal Leiomyosarcoma 7 264639 -NCIT:C5494 Colon Leiomyosarcoma 8 264640 -NCIT:C5549 Rectal Leiomyosarcoma 8 264641 -NCIT:C96510 Colorectal Kaposi Sarcoma 7 264642 -NCIT:C5516 Colon Kaposi Sarcoma 8 264643 -NCIT:C5550 Rectal Kaposi Sarcoma 8 264644 -NCIT:C96511 Colorectal Angiosarcoma 7 264645 -NCIT:C173118 Sinonasal Sarcoma 5 264646 -NCIT:C164205 Biphenotypic Sinonasal Sarcoma 6 264647 -NCIT:C173120 Sinonasal Fibrosarcoma 6 264648 -NCIT:C173121 Sinonasal Undifferentiated Pleomorphic Sarcoma 6 264649 -NCIT:C173123 Sinonasal Leiomyosarcoma 6 264650 -NCIT:C173124 Sinonasal Rhabdomyosarcoma 6 264651 -NCIT:C173125 Sinonasal Angiosarcoma 6 264652 -NCIT:C173127 Sinonasal Malignant Peripheral Nerve Sheath Tumor 6 264653 -NCIT:C173128 Sinonasal Synovial Sarcoma 6 264654 -NCIT:C6849 Paranasal Sinus Sarcoma 6 264655 -NCIT:C6850 High Grade Paranasal Sinus Sarcoma 7 264656 -NCIT:C6851 Low Grade Paranasal Sinus Sarcoma 7 264657 -NCIT:C173408 Laryngeal Soft Tissue Sarcoma 5 264658 -NCIT:C6021 Laryngeal Liposarcoma 6 264659 -NCIT:C6022 Laryngeal Leiomyosarcoma 6 264660 -NCIT:C173481 Oral Cavity Soft Tissue Sarcoma 5 264661 -NCIT:C156274 Tongue Sarcoma 6 264662 -NCIT:C156273 Tongue Alveolar Soft Part Sarcoma' 7 264663 -NCIT:C173404 Tongue Liposarcoma 7 264664 -NCIT:C173477 Oral Cavity Kaposi Sarcoma 6 264665 -NCIT:C6749 Palate Kaposi Sarcoma 7 264666 -NCIT:C173478 Oral Cavity Low Grade Myofibroblastic Sarcoma 6 264667 -NCIT:C175502 Conjunctival Sarcoma 5 264668 -NCIT:C175499 Conjunctival Angiosarcoma 6 264669 -NCIT:C175500 Conjunctival Leiomyosarcoma 6 264670 -NCIT:C175501 Conjunctival Rhabdomyosarcoma 6 264671 -NCIT:C4578 Conjunctival Kaposi Sarcoma 6 264672 -NCIT:C176467 Synovial Chondrosarcoma 5 264673 -NCIT:C189240 Localized Soft Tissue Sarcoma 5 264674 -NCIT:C115292 Localized Childhood Soft Tissue Sarcoma 6 264675 -NCIT:C8065 Localized Childhood Rhabdomyosarcoma 7 264676 -NCIT:C8797 Localized Alveolar Soft Part Sarcoma 6 264677 -NCIT:C8800 Localized Epithelioid Sarcoma 6 264678 -NCIT:C8802 Localized Extraskeletal Ewing Sarcoma 6 264679 -NCIT:C8809 Localized Extraskeletal Osteosarcoma 6 264680 -NCIT:C8826 Localized Synovial Sarcoma 6 264681 -NCIT:C27502 Extraskeletal Myxoid Chondrosarcoma 5 264682 -NCIT:C171168 Refractory Extraskeletal Myxoid Chondrosarcoma 6 264683 -NCIT:C27377 Childhood Extraskeletal Myxoid Chondrosarcoma 6 264684 -NCIT:C27501 Conventional Extraskeletal Myxoid Chondrosarcoma 6 264685 -NCIT:C5462 Brain Extraskeletal Myxoid Chondrosarcoma 6 264686 -NCIT:C7924 Adult Extraskeletal Myxoid Chondrosarcoma 6 264687 -NCIT:C8804 Metastatic Extraskeletal Myxoid Chondrosarcoma 6 264688 -NCIT:C8807 Recurrent Extraskeletal Myxoid Chondrosarcoma 6 264689 -NCIT:C27707 Virus-Related Sarcoma 5 264690 -NCIT:C162305 EBV-Related Sarcoma 6 264691 -NCIT:C162306 EBV-Related Leiomyosarcoma 7 264692 -NCIT:C172847 EBV-Positive Inflammatory Follicular Dendritic Cell Sarcoma 7 264693 -NCIT:C150704 EBV-Positive Inflammatory Follicular Dendritic Cell Sarcoma of the Digestive System 8 264694 -NCIT:C9087 Kaposi Sarcoma 6 264695 -NCIT:C156474 Refractory Kaposi Sarcoma 7 264696 -NCIT:C156475 Metastatic Kaposi Sarcoma 7 264697 -NCIT:C156476 Advanced Kaposi Sarcoma 8 264698 -NCIT:C172955 Digestive System Kaposi Sarcoma 7 264699 -NCIT:C5529 Gastric Kaposi Sarcoma 8 264700 -NCIT:C5624 AIDS-Related Gastric Kaposi Sarcoma 9 264701 -NCIT:C5602 Anal Kaposi Sarcoma 8 264702 -NCIT:C5706 Esophageal Kaposi Sarcoma 8 264703 -NCIT:C5842 Gallbladder Kaposi Sarcoma 8 264704 -NCIT:C96059 Small Intestinal Kaposi Sarcoma 8 264705 -NCIT:C96434 Appendix Kaposi Sarcoma 8 264706 -NCIT:C96510 Colorectal Kaposi Sarcoma 8 264707 -NCIT:C5516 Colon Kaposi Sarcoma 9 264708 -NCIT:C5550 Rectal Kaposi Sarcoma 9 264709 -NCIT:C96844 Liver Kaposi Sarcoma 8 264710 -NCIT:C96951 Extrahepatic Bile Duct Kaposi Sarcoma 8 264711 -NCIT:C173477 Oral Cavity Kaposi Sarcoma 7 264712 -NCIT:C6749 Palate Kaposi Sarcoma 8 264713 -NCIT:C181938 Vulvar Kaposi Sarcoma 7 264714 -NCIT:C188980 Childhood Kaposi Sarcoma 7 264715 -NCIT:C27500 Lymphadenopathic Kaposi Sarcoma 7 264716 -NCIT:C3550 Skin Kaposi Sarcoma 7 264717 -NCIT:C9112 Classic Kaposi Sarcoma 8 264718 -NCIT:C3551 Lung Kaposi Sarcoma 7 264719 -NCIT:C35873 Iatrogenic Kaposi Sarcoma 7 264720 -NCIT:C9113 Kaposi Sarcoma Related to Immunosuppressive Treatment 8 264721 -NCIT:C27640 Transplant-Related Kaposi Sarcoma 9 264722 -NCIT:C35874 Endemic African Kaposi Sarcoma 7 264723 -NCIT:C3992 AIDS-Related Kaposi Sarcoma 7 264724 -NCIT:C5624 AIDS-Related Gastric Kaposi Sarcoma 8 264725 -NCIT:C7433 AIDS-Related Cervical Kaposi Sarcoma 8 264726 -NCIT:C4578 Conjunctival Kaposi Sarcoma 7 264727 -NCIT:C4579 Corneal Kaposi Sarcoma 7 264728 -NCIT:C5363 Cardiac Kaposi Sarcoma 7 264729 -NCIT:C5523 Prostate Kaposi Sarcoma 7 264730 -NCIT:C5952 Parotid Gland Kaposi Sarcoma 7 264731 -NCIT:C6377 Penile Kaposi Sarcoma 7 264732 -NCIT:C7006 Central Nervous System Kaposi Sarcoma 7 264733 -NCIT:C7935 Recurrent Kaposi Sarcoma 7 264734 -NCIT:C9413 Kaposi Sarcoma NCI Grade 2 7 264735 -NCIT:C9414 Kaposi Sarcoma NCI Grade 3 7 264736 -NCIT:C3255 Myxosarcoma 5 264737 -NCIT:C3400 Synovial Sarcoma 5 264738 -NCIT:C147102 Pericardial Synovial Sarcoma 6 264739 -NCIT:C148296 Refractory Synovial Sarcoma 6 264740 -NCIT:C153074 Unresectable Synovial Sarcoma 6 264741 -NCIT:C157737 Kidney Synovial Sarcoma 6 264742 -NCIT:C161034 Prostate Synovial Sarcoma 6 264743 -NCIT:C173128 Sinonasal Synovial Sarcoma 6 264744 -NCIT:C4279 Biphasic Synovial Sarcoma 6 264745 -NCIT:C45632 Lung Biphasic Synovial Sarcoma 7 264746 -NCIT:C45698 Pleural Biphasic Synovial Sarcoma 7 264747 -NCIT:C45757 Cardiac Biphasic Synovial Sarcoma 7 264748 -NCIT:C45631 Lung Synovial Sarcoma 6 264749 -NCIT:C45632 Lung Biphasic Synovial Sarcoma 7 264750 -NCIT:C45633 Lung Monophasic Synovial Sarcoma 7 264751 -NCIT:C45696 Pleural Synovial Sarcoma 6 264752 -NCIT:C45697 Pleural Monophasic Synovial Sarcoma 7 264753 -NCIT:C45698 Pleural Biphasic Synovial Sarcoma 7 264754 -NCIT:C45756 Cardiac Synovial Sarcoma 6 264755 -NCIT:C45757 Cardiac Biphasic Synovial Sarcoma 7 264756 -NCIT:C45758 Cardiac Monophasic Synovial Sarcoma 7 264757 -NCIT:C6534 Monophasic Synovial Sarcoma 6 264758 -NCIT:C4277 Spindle Cell Synovial Sarcoma 7 264759 -NCIT:C4278 Epithelial Synovial Sarcoma 7 264760 -NCIT:C45633 Lung Monophasic Synovial Sarcoma 7 264761 -NCIT:C45697 Pleural Monophasic Synovial Sarcoma 7 264762 -NCIT:C45758 Cardiac Monophasic Synovial Sarcoma 7 264763 -NCIT:C6618 Mediastinal Synovial Sarcoma 6 264764 -NCIT:C7817 Adult Synovial Sarcoma 6 264765 -NCIT:C8089 Childhood Synovial Sarcoma 6 264766 -NCIT:C8825 Metastatic Synovial Sarcoma 6 264767 -NCIT:C153184 Advanced Synovial Sarcoma 7 264768 -NCIT:C171399 Locally Advanced Synovial Sarcoma 7 264769 -NCIT:C8826 Localized Synovial Sarcoma 6 264770 -NCIT:C8827 Recurrent Synovial Sarcoma 6 264771 -NCIT:C95624 Esophageal Synovial Sarcoma 6 264772 -NCIT:C95899 Gastric Synovial Sarcoma 6 264773 -NCIT:C96845 Liver Synovial Sarcoma 6 264774 -NCIT:C3714 Epithelioid Sarcoma 5 264775 -NCIT:C162722 Refractory Epithelioid Sarcoma 6 264776 -NCIT:C167379 Unresectable Epithelioid Sarcoma 6 264777 -NCIT:C181971 Vulvar Epithelioid Sarcoma 6 264778 -NCIT:C181973 Vulvar Distal-Type Epithelioid Sarcoma 7 264779 -NCIT:C40319 Vulvar Proximal-Type Epithelioid Sarcoma 7 264780 -NCIT:C27472 Proximal-Type Epithelioid Sarcoma 6 264781 -NCIT:C188055 Pleural Proximal-Type Epithelioid Sarcoma 7 264782 -NCIT:C40319 Vulvar Proximal-Type Epithelioid Sarcoma 7 264783 -NCIT:C27473 Distal-Type Epithelioid Sarcoma 6 264784 -NCIT:C181973 Vulvar Distal-Type Epithelioid Sarcoma 7 264785 -NCIT:C5059 Recurrent Epithelioid Sarcoma 6 264786 -NCIT:C7944 Adult Epithelioid Sarcoma 6 264787 -NCIT:C8095 Childhood Epithelioid Sarcoma 6 264788 -NCIT:C8799 Metastatic Epithelioid Sarcoma 6 264789 -NCIT:C167378 Locally Advanced Epithelioid Sarcoma 7 264790 -NCIT:C167380 Advanced Epithelioid Sarcoma 7 264791 -NCIT:C8800 Localized Epithelioid Sarcoma 6 264792 -NCIT:C9409 Epithelioid Sarcoma NCI Grade 2 6 264793 -NCIT:C9410 Epithelioid Sarcoma NCI Grade 3 6 264794 -NCIT:C3745 Clear Cell Sarcoma of Soft Tissue 5 264795 -NCIT:C161585 Metastatic Clear Cell Sarcoma of Soft Tissue 6 264796 -NCIT:C161586 Advanced Clear Cell Sarcoma of Soft Tissue 7 264797 -NCIT:C180979 Refractory Clear Cell Sarcoma of Soft Tissue 6 264798 -NCIT:C180980 Recurrent Clear Cell Sarcoma of Soft Tissue 6 264799 -NCIT:C27370 Adult Clear Cell Sarcoma of Soft Tissue 6 264800 -NCIT:C27371 Childhood Clear Cell Sarcoma of Soft Tissue 6 264801 -NCIT:C3750 Alveolar Soft Part Sarcoma 5 264802 -NCIT:C156273 Tongue Alveolar Soft Part Sarcoma' 6 264803 -NCIT:C156276 Orbital Alveolar Soft Part Sarcoma 6 264804 -NCIT:C156277 Bladder Alveolar Soft Part Sarcoma 6 264805 -NCIT:C164078 Unresectable Alveolar Soft Part Sarcoma 6 264806 -NCIT:C173809 Lung Alveolar Soft Part Sarcoma 6 264807 -NCIT:C188034 Refractory Alveolar Soft Part Sarcoma 6 264808 -NCIT:C40225 Cervical Alveolar Soft Part Sarcoma 6 264809 -NCIT:C40320 Vulvar Alveolar Soft Part Sarcoma 6 264810 -NCIT:C7943 Adult Alveolar Soft Part Sarcoma 6 264811 -NCIT:C8092 Childhood Alveolar Soft Part Sarcoma 6 264812 -NCIT:C8796 Metastatic Alveolar Soft Part Sarcoma 6 264813 -NCIT:C164076 Locally Advanced Alveolar Soft Part Sarcoma 7 264814 -NCIT:C188198 Advanced Alveolar Soft Part Sarcoma 7 264815 -NCIT:C8797 Localized Alveolar Soft Part Sarcoma 6 264816 -NCIT:C8798 Recurrent Alveolar Soft Part Sarcoma 6 264817 -NCIT:C40128 Fallopian Tube Leiomyosarcoma 5 264818 -NCIT:C40317 Vulvar Sarcoma 5 264819 -NCIT:C176515 Vulvar Angiosarcoma 6 264820 -NCIT:C181938 Vulvar Kaposi Sarcoma 6 264821 -NCIT:C181944 Vulvar Rhabdomyosarcoma 6 264822 -NCIT:C128273 Vulvar Alveolar Rhabdomyosarcoma 7 264823 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 7 264824 -NCIT:C181971 Vulvar Epithelioid Sarcoma 6 264825 -NCIT:C181973 Vulvar Distal-Type Epithelioid Sarcoma 7 264826 -NCIT:C40319 Vulvar Proximal-Type Epithelioid Sarcoma 7 264827 -NCIT:C181977 Vulvar Ewing Sarcoma 6 264828 -NCIT:C40318 Vulvar Leiomyosarcoma 6 264829 -NCIT:C40320 Vulvar Alveolar Soft Part Sarcoma 6 264830 -NCIT:C40321 Vulvar Liposarcoma 6 264831 -NCIT:C4525 Kidney Sarcoma 5 264832 -NCIT:C154496 Anaplastic Sarcoma of the Kidney 6 264833 -NCIT:C189260 Childhood Anaplastic Sarcoma of the Kidney 7 264834 -NCIT:C157737 Kidney Synovial Sarcoma 6 264835 -NCIT:C159205 Kidney Angiosarcoma 6 264836 -NCIT:C159206 Kidney Rhabdomyosarcoma 6 264837 -NCIT:C159208 Kidney Ewing Sarcoma 6 264838 -NCIT:C189261 Childhood Kidney Ewing Sarcoma 7 264839 -NCIT:C4264 Clear Cell Sarcoma of the Kidney 6 264840 -NCIT:C6181 Kidney Extraskeletal Osteosarcoma 6 264841 -NCIT:C6183 Kidney Leiomyosarcoma 6 264842 -NCIT:C6185 Kidney Liposarcoma 6 264843 -NCIT:C7726 Kidney Fibrosarcoma 6 264844 -NCIT:C4669 Bladder Sarcoma 5 264845 -NCIT:C156277 Bladder Alveolar Soft Part Sarcoma 6 264846 -NCIT:C159667 Bladder Rhabdomyosarcoma 6 264847 -NCIT:C159668 Bladder Embryonal Rhabdomyosarcoma 7 264848 -NCIT:C159669 Bladder Alveolar Rhabdomyosarcoma 7 264849 -NCIT:C159670 Bladder Leiomyosarcoma 6 264850 -NCIT:C159671 Bladder Angiosarcoma 6 264851 -NCIT:C4670 Breast Sarcoma 5 264852 -NCIT:C170727 Recurrent Breast Sarcoma 6 264853 -NCIT:C133092 Recurrent Breast Angiosarcoma 7 264854 -NCIT:C5184 Breast Angiosarcoma 6 264855 -NCIT:C133092 Recurrent Breast Angiosarcoma 7 264856 -NCIT:C176251 Primary Breast Angiosarcoma 7 264857 -NCIT:C40378 Postradiation Breast Angiosarcoma 7 264858 -NCIT:C5185 Breast Fibrosarcoma 6 264859 -NCIT:C5186 Breast Leiomyosarcoma 6 264860 -NCIT:C5187 Breast Liposarcoma 6 264861 -NCIT:C5189 Breast Extraskeletal Osteosarcoma 6 264862 -NCIT:C5190 Breast Rhabdomyosarcoma 6 264863 -NCIT:C4832 Retroperitoneal Sarcoma 5 264864 -NCIT:C136811 Retroperitoneal Sarcoma by AJCC v8 Stage 6 264865 -NCIT:C136812 Stage I Retroperitoneal Sarcoma AJCC v8 7 264866 -NCIT:C136813 Stage IA Retroperitoneal Sarcoma AJCC v8 8 264867 -NCIT:C136814 Stage IB Retroperitoneal Sarcoma AJCC v8 8 264868 -NCIT:C136815 Stage II Retroperitoneal Sarcoma AJCC v8 7 264869 -NCIT:C136816 Stage III Retroperitoneal Sarcoma AJCC v8 7 264870 -NCIT:C136817 Stage IIIA Retroperitoneal Sarcoma AJCC v8 8 264871 -NCIT:C136818 Stage IIIB Retroperitoneal Sarcoma AJCC v8 8 264872 -NCIT:C136819 Stage IV Retroperitoneal Sarcoma AJCC v8 7 264873 -NCIT:C156956 Adrenal Gland Sarcoma 6 264874 -NCIT:C188254 Adrenal Gland Leiomyosarcoma 7 264875 -NCIT:C48320 Adrenal Gland Angiosarcoma 7 264876 -NCIT:C173808 Retroperitoneal Undifferentiated Pleomorphic Sarcoma 6 264877 -NCIT:C188071 Retroperitoneal Rhabdomyosarcoma 6 264878 -NCIT:C188073 Retroperitoneal Malignant Peripheral Nerve Sheath Tumor 6 264879 -NCIT:C27904 Retroperitoneal Leiomyosarcoma 6 264880 -NCIT:C4860 Lung Sarcoma 5 264881 -NCIT:C142825 Pulmonary Artery Intimal Sarcoma 6 264882 -NCIT:C142827 Primary Pulmonary Myxoid Sarcoma with EWSR1-CREB1 Fusion 6 264883 -NCIT:C173809 Lung Alveolar Soft Part Sarcoma 6 264884 -NCIT:C181201 Lung Rhabdomyosarcoma 6 264885 -NCIT:C188061 Lung Osteosarcoma 6 264886 -NCIT:C3551 Lung Kaposi Sarcoma 6 264887 -NCIT:C45631 Lung Synovial Sarcoma 6 264888 -NCIT:C45632 Lung Biphasic Synovial Sarcoma 7 264889 -NCIT:C45633 Lung Monophasic Synovial Sarcoma 7 264890 -NCIT:C5667 Lung Leiomyosarcoma 6 264891 -NCIT:C5153 Central Nervous System Sarcoma 5 264892 -NCIT:C129534 Central Nervous System Mesenchymal Chondrosarcoma 6 264893 -NCIT:C129566 Central Nervous System Undifferentiated Pleomorphic Sarcoma 6 264894 -NCIT:C186607 Central Nervous System CIC-Rearranged Sarcoma 6 264895 -NCIT:C186611 Central Nervous System Ewing Sarcoma 6 264896 -NCIT:C4073 Meningeal Sarcoma 6 264897 -NCIT:C4334 Meningeal Sarcomatosis 7 264898 -NCIT:C8312 Leptomeningeal Sarcoma 7 264899 -NCIT:C5152 Spinal Cord Sarcoma 6 264900 -NCIT:C5154 Brain Sarcoma 6 264901 -NCIT:C186610 Primary Intracranial Sarcoma, DICER1-Mutant 7 264902 -NCIT:C5462 Brain Extraskeletal Myxoid Chondrosarcoma 7 264903 -NCIT:C6973 Brain Liposarcoma 7 264904 -NCIT:C5450 Central Nervous System Angiosarcoma 6 264905 -NCIT:C5464 Central Nervous System Rhabdomyosarcoma 6 264906 -NCIT:C5465 Central Nervous System Fibrosarcoma 6 264907 -NCIT:C6999 Central Nervous System Leiomyosarcoma 6 264908 -NCIT:C7002 Central Nervous System Extraskeletal Osteosarcoma 6 264909 -NCIT:C7006 Central Nervous System Kaposi Sarcoma 6 264910 -NCIT:C53677 Intimal Sarcoma 5 264911 -NCIT:C142825 Pulmonary Artery Intimal Sarcoma 6 264912 -NCIT:C5585 Skin Sarcoma 5 264913 -NCIT:C172632 Skin Myxofibrosarcoma 6 264914 -NCIT:C172634 Skin Ewing Sarcoma 6 264915 -NCIT:C3550 Skin Kaposi Sarcoma 6 264916 -NCIT:C9112 Classic Kaposi Sarcoma 7 264917 -NCIT:C4489 Skin Angiosarcoma 6 264918 -NCIT:C153626 Recurrent Skin Angiosarcoma 7 264919 -NCIT:C27719 Skin Radiation-Related Angiosarcoma 7 264920 -NCIT:C40379 Angiosarcoma of the Skin of the Arm after Radical Mastectomy followed by Lymphedema 7 264921 -NCIT:C4490 Skin Lymphangiosarcoma 6 264922 -NCIT:C49025 Myxoinflammatory Fibroblastic Sarcoma 6 264923 -NCIT:C5576 Skin Undifferentiated Pleomorphic Sarcoma 6 264924 -NCIT:C5615 Skin Liposarcoma 6 264925 -NCIT:C170473 Skin Pleomorphic Liposarcoma 7 264926 -NCIT:C5983 Major Salivary Gland Sarcoma 5 264927 -NCIT:C156280 Parotid Gland Sarcoma 6 264928 -NCIT:C156281 Parotid Gland Liposarcoma 7 264929 -NCIT:C5952 Parotid Gland Kaposi Sarcoma 7 264930 -NCIT:C6041 Thyroid Gland Sarcoma 5 264931 -NCIT:C156341 Thyroid Gland Malignant Peripheral Nerve Sheath Tumor 6 264932 -NCIT:C156347 Thyroid Gland Leiomyosarcoma 6 264933 -NCIT:C6043 Thyroid Gland Angiosarcoma 6 264934 -NCIT:C6050 Tracheal Sarcoma 5 264935 -NCIT:C6095 Orbit Sarcoma 5 264936 -NCIT:C156276 Orbital Alveolar Soft Part Sarcoma 6 264937 -NCIT:C4543 Orbit Rhabdomyosarcoma 6 264938 -NCIT:C6246 Orbit Embryonal Rhabdomyosarcoma 7 264939 -NCIT:C6247 Orbit Alveolar Rhabdomyosarcoma 7 264940 -NCIT:C6339 Uterine Corpus Sarcoma 5 264941 -NCIT:C127058 Uterine Corpus Rhabdomyosarcoma 6 264942 -NCIT:C136708 Uterine Corpus Sarcoma by AJCC v7 Stage 6 264943 -NCIT:C8258 Stage I Uterine Sarcoma AJCC v7 7 264944 -NCIT:C87132 Stage IA Uterine Sarcoma AJCC v7 8 264945 -NCIT:C87133 Stage IB Uterine Sarcoma AJCC v7 8 264946 -NCIT:C87134 Stage IC Uterine Sarcoma AJCC v7 8 264947 -NCIT:C8259 Stage II Uterine Sarcoma AJCC v7 7 264948 -NCIT:C115130 Stage IIA Uterine Sarcoma AJCC v7 8 264949 -NCIT:C115131 Stage IIB Uterine Sarcoma AJCC v7 8 264950 -NCIT:C8260 Stage III Uterine Sarcoma AJCC v7 7 264951 -NCIT:C87135 Stage IIIA Uterine Sarcoma AJCC v7 8 264952 -NCIT:C87137 Stage IIIB Uterine Sarcoma AJCC v7 8 264953 -NCIT:C87138 Stage IIIC Uterine Sarcoma AJCC v7 8 264954 -NCIT:C9179 Stage IV Uterine Sarcoma AJCC v7 7 264955 -NCIT:C87140 Stage IVA Uterine Sarcoma AJCC v7 8 264956 -NCIT:C87144 Stage IVB Uterine Sarcoma AJCC v7 8 264957 -NCIT:C139869 Uterine Corpus Sarcoma by AJCC v8 Stage 6 264958 -NCIT:C139870 Uterine Corpus Leiomyosarcoma by AJCC v8 Stage 7 264959 -NCIT:C139871 Stage I Uterine Corpus Leiomyosarcoma AJCC v8 8 264960 -NCIT:C139872 Stage IA Uterine Corpus Leiomyosarcoma AJCC v8 9 264961 -NCIT:C139873 Stage IB Uterine Corpus Leiomyosarcoma AJCC v8 9 264962 -NCIT:C139874 Stage II Uterine Corpus Leiomyosarcoma AJCC v8 8 264963 -NCIT:C139875 Stage III Uterine Corpus Leiomyosarcoma AJCC v8 8 264964 -NCIT:C139876 Stage IIIA Uterine Corpus Leiomyosarcoma AJCC v8 9 264965 -NCIT:C139877 Stage IIIB Uterine Corpus Leiomyosarcoma AJCC v8 9 264966 -NCIT:C139878 Stage IIIC Uterine Corpus Leiomyosarcoma AJCC v8 9 264967 -NCIT:C139879 Stage IV Uterine Corpus Leiomyosarcoma AJCC v8 8 264968 -NCIT:C139880 Stage IVA Uterine Corpus Leiomyosarcoma AJCC v8 9 264969 -NCIT:C139881 Stage IVB Uterine Corpus Leiomyosarcoma AJCC v8 9 264970 -NCIT:C139882 Uterine Corpus Endometrial Stromal Sarcoma by AJCC v8 Stage 7 264971 -NCIT:C139883 Stage I Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 8 264972 -NCIT:C139884 Stage IA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 264973 -NCIT:C139885 Stage IB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 264974 -NCIT:C139886 Stage II Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 8 264975 -NCIT:C139887 Stage III Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 8 264976 -NCIT:C139888 Stage IIIA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 264977 -NCIT:C139889 Stage IIIB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 264978 -NCIT:C139890 Stage IIIC Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 264979 -NCIT:C139891 Stage IV Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 8 264980 -NCIT:C139892 Stage IVA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 264981 -NCIT:C139893 Stage IVB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 264982 -NCIT:C139894 Uterine Corpus Adenosarcoma by AJCC v8 Stage 7 264983 -NCIT:C139895 Stage I Uterine Corpus Adenosarcoma AJCC v8 8 264984 -NCIT:C139896 Stage IA Uterine Corpus Adenosarcoma AJCC v8 9 264985 -NCIT:C139897 Stage IB Uterine Corpus Adenosarcoma AJCC v8 9 264986 -NCIT:C139898 Stage IC Uterine Corpus Adenosarcoma AJCC v8 9 264987 -NCIT:C139899 Stage II Uterine Corpus Adenosarcoma AJCC v8 8 264988 -NCIT:C139900 Stage III Uterine Corpus Adenosarcoma AJCC v8 8 264989 -NCIT:C139901 Stage IIIA Uterine Corpus Adenosarcoma AJCC v8 9 264990 -NCIT:C139902 Stage IIIB Uterine Corpus Adenosarcoma AJCC v8 9 264991 -NCIT:C139903 Stage IIIC Uterine Corpus Adenosarcoma AJCC v8 9 264992 -NCIT:C139904 Stage IV Uterine Corpus Adenosarcoma AJCC v8 8 264993 -NCIT:C139905 Stage IVA Uterine Corpus Adenosarcoma AJCC v8 9 264994 -NCIT:C139906 Stage IVB Uterine Corpus Adenosarcoma AJCC v8 9 264995 -NCIT:C180546 Uterine Corpus Central Primitive Neuroectodermal Tumor 6 264996 -NCIT:C190009 Metastatic Uterine Corpus Sarcoma 6 264997 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 7 264998 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 264999 -NCIT:C190016 Unresectable Uterine Corpus Sarcoma 6 265000 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 7 265001 -NCIT:C40219 Uterine Corpus Endometrial Stromal Sarcoma 6 265002 -NCIT:C126998 Uterine Corpus High Grade Endometrial Stromal Sarcoma 7 265003 -NCIT:C139882 Uterine Corpus Endometrial Stromal Sarcoma by AJCC v8 Stage 7 265004 -NCIT:C139883 Stage I Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 8 265005 -NCIT:C139884 Stage IA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 265006 -NCIT:C139885 Stage IB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 265007 -NCIT:C139886 Stage II Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 8 265008 -NCIT:C139887 Stage III Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 8 265009 -NCIT:C139888 Stage IIIA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 265010 -NCIT:C139889 Stage IIIB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 265011 -NCIT:C139890 Stage IIIC Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 265012 -NCIT:C139891 Stage IV Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 8 265013 -NCIT:C139892 Stage IVA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 265014 -NCIT:C139893 Stage IVB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 265015 -NCIT:C40223 Uterine Corpus Low Grade Endometrial Stromal Sarcoma 7 265016 -NCIT:C6336 Uterine Corpus Adenosarcoma 6 265017 -NCIT:C139894 Uterine Corpus Adenosarcoma by AJCC v8 Stage 7 265018 -NCIT:C139895 Stage I Uterine Corpus Adenosarcoma AJCC v8 8 265019 -NCIT:C139896 Stage IA Uterine Corpus Adenosarcoma AJCC v8 9 265020 -NCIT:C139897 Stage IB Uterine Corpus Adenosarcoma AJCC v8 9 265021 -NCIT:C139898 Stage IC Uterine Corpus Adenosarcoma AJCC v8 9 265022 -NCIT:C139899 Stage II Uterine Corpus Adenosarcoma AJCC v8 8 265023 -NCIT:C139900 Stage III Uterine Corpus Adenosarcoma AJCC v8 8 265024 -NCIT:C139901 Stage IIIA Uterine Corpus Adenosarcoma AJCC v8 9 265025 -NCIT:C139902 Stage IIIB Uterine Corpus Adenosarcoma AJCC v8 9 265026 -NCIT:C139903 Stage IIIC Uterine Corpus Adenosarcoma AJCC v8 9 265027 -NCIT:C139904 Stage IV Uterine Corpus Adenosarcoma AJCC v8 8 265028 -NCIT:C139905 Stage IVA Uterine Corpus Adenosarcoma AJCC v8 9 265029 -NCIT:C139906 Stage IVB Uterine Corpus Adenosarcoma AJCC v8 9 265030 -NCIT:C6340 Uterine Corpus Leiomyosarcoma 6 265031 -NCIT:C139870 Uterine Corpus Leiomyosarcoma by AJCC v8 Stage 7 265032 -NCIT:C139871 Stage I Uterine Corpus Leiomyosarcoma AJCC v8 8 265033 -NCIT:C139872 Stage IA Uterine Corpus Leiomyosarcoma AJCC v8 9 265034 -NCIT:C139873 Stage IB Uterine Corpus Leiomyosarcoma AJCC v8 9 265035 -NCIT:C139874 Stage II Uterine Corpus Leiomyosarcoma AJCC v8 8 265036 -NCIT:C139875 Stage III Uterine Corpus Leiomyosarcoma AJCC v8 8 265037 -NCIT:C139876 Stage IIIA Uterine Corpus Leiomyosarcoma AJCC v8 9 265038 -NCIT:C139877 Stage IIIB Uterine Corpus Leiomyosarcoma AJCC v8 9 265039 -NCIT:C139878 Stage IIIC Uterine Corpus Leiomyosarcoma AJCC v8 9 265040 -NCIT:C139879 Stage IV Uterine Corpus Leiomyosarcoma AJCC v8 8 265041 -NCIT:C139880 Stage IVA Uterine Corpus Leiomyosarcoma AJCC v8 9 265042 -NCIT:C139881 Stage IVB Uterine Corpus Leiomyosarcoma AJCC v8 9 265043 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 7 265044 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 7 265045 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 265046 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 7 265047 -NCIT:C40174 Uterine Corpus Epithelioid Leiomyosarcoma 7 265048 -NCIT:C40175 Uterine Corpus Myxoid Leiomyosarcoma 7 265049 -NCIT:C8261 Recurrent Uterine Corpus Sarcoma 6 265050 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 7 265051 -NCIT:C8972 Uterine Corpus Undifferentiated Sarcoma 6 265052 -NCIT:C6359 Testicular Sarcoma 5 265053 -NCIT:C6378 Testicular Rhabdomyosarcoma 6 265054 -NCIT:C6605 Soft Tissue Fibrosarcoma 5 265055 -NCIT:C173120 Sinonasal Fibrosarcoma 6 265056 -NCIT:C173478 Oral Cavity Low Grade Myofibroblastic Sarcoma 6 265057 -NCIT:C49025 Myxoinflammatory Fibroblastic Sarcoma 6 265058 -NCIT:C5185 Breast Fibrosarcoma 6 265059 -NCIT:C5233 Ovarian Fibrosarcoma 6 265060 -NCIT:C5336 Small Intestinal Fibrosarcoma 6 265061 -NCIT:C5361 Cardiac Fibrosarcoma 6 265062 -NCIT:C147004 Cardiac Myxofibrosarcoma 7 265063 -NCIT:C5465 Central Nervous System Fibrosarcoma 6 265064 -NCIT:C5832 Liver Fibrosarcoma 6 265065 -NCIT:C6496 Myxofibrosarcoma 6 265066 -NCIT:C147004 Cardiac Myxofibrosarcoma 7 265067 -NCIT:C168670 Metastatic Myxofibrosarcoma 7 265068 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 8 265069 -NCIT:C171304 Advanced Myxofibrosarcoma 8 265070 -NCIT:C172632 Skin Myxofibrosarcoma 7 265071 -NCIT:C177414 Epithelioid Myxofibrosarcoma 7 265072 -NCIT:C178372 Unresectable Myxofibrosarcoma 7 265073 -NCIT:C7726 Kidney Fibrosarcoma 6 265074 -NCIT:C6606 Mediastinal Sarcoma 5 265075 -NCIT:C6613 Mediastinal Angiosarcoma 6 265076 -NCIT:C6614 Mediastinal Liposarcoma 6 265077 -NCIT:C95038 Thymoliposarcoma 7 265078 -NCIT:C6615 Mediastinal Extraskeletal Osteosarcoma 6 265079 -NCIT:C6617 Mediastinal Rhabdomyosarcoma 6 265080 -NCIT:C6618 Mediastinal Synovial Sarcoma 6 265081 -NCIT:C6619 Mediastinal Leiomyosarcoma 6 265082 -NCIT:C6626 Mediastinal Malignant Peripheral Nerve Sheath Tumor 6 265083 -NCIT:C6630 Malignant Melanotic Peripheral Nerve Sheath Tumor of the Mediastinum 7 265084 -NCIT:C6926 Stromal Sarcoma 5 265085 -NCIT:C53994 Undifferentiated Stromal Sarcoma 6 265086 -NCIT:C40066 Ovarian Undifferentiated Sarcoma 7 265087 -NCIT:C40224 Endocervical Undifferentiated Sarcoma 7 265088 -NCIT:C40272 Vaginal Undifferentiated Sarcoma 7 265089 -NCIT:C8972 Uterine Corpus Undifferentiated Sarcoma 7 265090 -NCIT:C53999 Malignant Gastrointestinal Stromal Tumor 6 265091 -NCIT:C136767 Gastrointestinal Stromal Tumor by AJCC v8 Stage 7 265092 -NCIT:C136768 Gastric and Omental Gastrointestinal Stromal Tumor by AJCC v8 Stage 8 265093 -NCIT:C136770 Stage I Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 9 265094 -NCIT:C136771 Stage IA Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 10 265095 -NCIT:C136772 Stage IB Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 10 265096 -NCIT:C136773 Stage II Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 9 265097 -NCIT:C136774 Stage III Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 9 265098 -NCIT:C136775 Stage IIIA Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 10 265099 -NCIT:C136777 Stage IIIB Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 10 265100 -NCIT:C136778 Stage IV Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 9 265101 -NCIT:C136769 Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor by AJCC v8 Stage 8 265102 -NCIT:C136780 Stage I Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 9 265103 -NCIT:C136781 Stage II Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 9 265104 -NCIT:C136783 Stage III Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 9 265105 -NCIT:C136784 Stage IIIA Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 10 265106 -NCIT:C136785 Stage IIIB Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 10 265107 -NCIT:C136786 Stage IV Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 9 265108 -NCIT:C150738 Metastatic Gastrointestinal Stromal Tumor 7 265109 -NCIT:C150739 Locally Advanced Gastrointestinal Stromal Tumor 8 265110 -NCIT:C173502 Advanced Gastrointestinal Stromal Tumor 8 265111 -NCIT:C150741 Unresectable Malignant Gastrointestinal Stromal Tumor 7 265112 -NCIT:C179932 Dedifferentiated Gastrointestinal Stromal Tumor 7 265113 -NCIT:C185882 Refractory Malignant Gastrointestinal Stromal Tumor 7 265114 -NCIT:C95897 Gastric Malignant Gastrointestinal Stromal Tumor 7 265115 -NCIT:C5524 Prostate Stromal Sarcoma 6 265116 -NCIT:C8973 Endometrioid Stromal Sarcoma 6 265117 -NCIT:C40219 Uterine Corpus Endometrial Stromal Sarcoma 7 265118 -NCIT:C126998 Uterine Corpus High Grade Endometrial Stromal Sarcoma 8 265119 -NCIT:C139882 Uterine Corpus Endometrial Stromal Sarcoma by AJCC v8 Stage 8 265120 -NCIT:C139883 Stage I Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 265121 -NCIT:C139884 Stage IA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 265122 -NCIT:C139885 Stage IB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 265123 -NCIT:C139886 Stage II Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 265124 -NCIT:C139887 Stage III Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 265125 -NCIT:C139888 Stage IIIA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 265126 -NCIT:C139889 Stage IIIB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 265127 -NCIT:C139890 Stage IIIC Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 265128 -NCIT:C139891 Stage IV Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 265129 -NCIT:C139892 Stage IVA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 265130 -NCIT:C139893 Stage IVB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 265131 -NCIT:C40223 Uterine Corpus Low Grade Endometrial Stromal Sarcoma 8 265132 -NCIT:C4263 Low Grade Endometrioid Stromal Sarcoma 7 265133 -NCIT:C179562 Peritoneal Low Grade Endometrioid Stromal Sarcoma 8 265134 -NCIT:C40063 Ovarian Low Grade Endometrioid Stromal Sarcoma 8 265135 -NCIT:C40222 Cervical Low Grade Endometrioid Stromal Sarcoma 8 265136 -NCIT:C40223 Uterine Corpus Low Grade Endometrial Stromal Sarcoma 8 265137 -NCIT:C40271 Vaginal Low Grade Endometrioid Stromal Sarcoma 8 265138 -NCIT:C9474 Adenosarcoma 6 265139 -NCIT:C102570 Broad Ligament Adenosarcoma 7 265140 -NCIT:C40125 Fallopian Tube Adenosarcoma 7 265141 -NCIT:C40229 Cervical Adenosarcoma 7 265142 -NCIT:C40277 Vaginal Adenosarcoma 7 265143 -NCIT:C6336 Uterine Corpus Adenosarcoma 7 265144 -NCIT:C139894 Uterine Corpus Adenosarcoma by AJCC v8 Stage 8 265145 -NCIT:C139895 Stage I Uterine Corpus Adenosarcoma AJCC v8 9 265146 -NCIT:C139896 Stage IA Uterine Corpus Adenosarcoma AJCC v8 10 265147 -NCIT:C139897 Stage IB Uterine Corpus Adenosarcoma AJCC v8 10 265148 -NCIT:C139898 Stage IC Uterine Corpus Adenosarcoma AJCC v8 10 265149 -NCIT:C139899 Stage II Uterine Corpus Adenosarcoma AJCC v8 9 265150 -NCIT:C139900 Stage III Uterine Corpus Adenosarcoma AJCC v8 9 265151 -NCIT:C139901 Stage IIIA Uterine Corpus Adenosarcoma AJCC v8 10 265152 -NCIT:C139902 Stage IIIB Uterine Corpus Adenosarcoma AJCC v8 10 265153 -NCIT:C139903 Stage IIIC Uterine Corpus Adenosarcoma AJCC v8 10 265154 -NCIT:C139904 Stage IV Uterine Corpus Adenosarcoma AJCC v8 9 265155 -NCIT:C139905 Stage IVA Uterine Corpus Adenosarcoma AJCC v8 10 265156 -NCIT:C139906 Stage IVB Uterine Corpus Adenosarcoma AJCC v8 10 265157 -NCIT:C7317 Ovarian Adenosarcoma 7 265158 -NCIT:C7135 Extraskeletal Ewing Sarcoma 5 265159 -NCIT:C159208 Kidney Ewing Sarcoma 6 265160 -NCIT:C189261 Childhood Kidney Ewing Sarcoma 7 265161 -NCIT:C172634 Skin Ewing Sarcoma 6 265162 -NCIT:C181977 Vulvar Ewing Sarcoma 6 265163 -NCIT:C186611 Central Nervous System Ewing Sarcoma 6 265164 -NCIT:C8801 Metastatic Extraskeletal Ewing Sarcoma 6 265165 -NCIT:C8802 Localized Extraskeletal Ewing Sarcoma 6 265166 -NCIT:C8803 Recurrent Extraskeletal Ewing Sarcoma 6 265167 -NCIT:C7707 Adult Soft Tissue Sarcoma 5 265168 -NCIT:C114541 Adult Undifferentiated Pleomorphic Sarcoma 6 265169 -NCIT:C156071 Metastatic Adult Soft Tissue Sarcoma 6 265170 -NCIT:C189935 Adult Liver Embryonal Sarcoma 6 265171 -NCIT:C27370 Adult Clear Cell Sarcoma of Soft Tissue 6 265172 -NCIT:C27373 Adult Desmoplastic Small Round Cell Tumor 6 265173 -NCIT:C27375 Adult Mesenchymal Chondrosarcoma 6 265174 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 6 265175 -NCIT:C7817 Adult Synovial Sarcoma 6 265176 -NCIT:C7818 Stage I Adult Soft Tissue Sarcoma AJCC v7 6 265177 -NCIT:C8569 Stage IA Adult Soft Tissue Sarcoma AJCC v7 7 265178 -NCIT:C8570 Stage IB Adult Soft Tissue Sarcoma AJCC v7 7 265179 -NCIT:C7819 Stage II Adult Soft Tissue Sarcoma AJCC v7 6 265180 -NCIT:C8571 Stage IIA Adult Soft Tissue Sarcoma AJCC v7 7 265181 -NCIT:C8572 Stage IIB Adult Soft Tissue Sarcoma AJCC v7 7 265182 -NCIT:C7820 Stage III Adult Soft Tissue Sarcoma AJCC v7 6 265183 -NCIT:C7821 Stage IV Adult Soft Tissue Sarcoma AJCC v7 6 265184 -NCIT:C7822 Recurrent Adult Soft Tissue Sarcoma 6 265185 -NCIT:C7924 Adult Extraskeletal Myxoid Chondrosarcoma 6 265186 -NCIT:C7925 Adult Extraskeletal Osteosarcoma 6 265187 -NCIT:C7943 Adult Alveolar Soft Part Sarcoma 6 265188 -NCIT:C7944 Adult Epithelioid Sarcoma 6 265189 -NCIT:C7715 Childhood Soft Tissue Sarcoma 5 265190 -NCIT:C114749 Childhood Undifferentiated Pleomorphic Sarcoma 6 265191 -NCIT:C115292 Localized Childhood Soft Tissue Sarcoma 6 265192 -NCIT:C8065 Localized Childhood Rhabdomyosarcoma 7 265193 -NCIT:C187194 Refractory Childhood Soft Tissue Sarcoma 6 265194 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 7 265195 -NCIT:C188980 Childhood Kaposi Sarcoma 6 265196 -NCIT:C189260 Childhood Anaplastic Sarcoma of the Kidney 6 265197 -NCIT:C189261 Childhood Kidney Ewing Sarcoma 6 265198 -NCIT:C189934 Childhood Liver Embryonal Sarcoma 6 265199 -NCIT:C190020 Childhood Liver Angiosarcoma 6 265200 -NCIT:C27371 Childhood Clear Cell Sarcoma of Soft Tissue 6 265201 -NCIT:C27372 Childhood Desmoplastic Small Round Cell Tumor 6 265202 -NCIT:C27376 Childhood Extraskeletal Osteosarcoma 6 265203 -NCIT:C27377 Childhood Extraskeletal Myxoid Chondrosarcoma 6 265204 -NCIT:C4264 Clear Cell Sarcoma of the Kidney 6 265205 -NCIT:C7705 Childhood Rhabdomyosarcoma 6 265206 -NCIT:C123397 Childhood Spindle Cell Rhabdomyosarcoma 7 265207 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 7 265208 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 7 265209 -NCIT:C7957 Childhood Embryonal Rhabdomyosarcoma 7 265210 -NCIT:C35574 Childhood Botryoid-Type Embryonal Rhabdomyosarcoma 8 265211 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 9 265212 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 9 265213 -NCIT:C7958 Childhood Alveolar Rhabdomyosarcoma 7 265214 -NCIT:C7959 Childhood Pleomorphic Rhabdomyosarcoma 7 265215 -NCIT:C7960 Childhood Rhabdomyosarcoma with Mixed Embryonal and Alveolar Features 7 265216 -NCIT:C8065 Localized Childhood Rhabdomyosarcoma 7 265217 -NCIT:C8066 Metastatic Childhood Soft Tissue Sarcoma 6 265218 -NCIT:C8067 Recurrent Childhood Soft Tissue Sarcoma 6 265219 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 7 265220 -NCIT:C8089 Childhood Synovial Sarcoma 6 265221 -NCIT:C8092 Childhood Alveolar Soft Part Sarcoma 6 265222 -NCIT:C8093 Childhood Leiomyosarcoma 6 265223 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 7 265224 -NCIT:C8095 Childhood Epithelioid Sarcoma 6 265225 -NCIT:C7723 Cardiac Sarcoma 5 265226 -NCIT:C147003 Cardiac Extraskeletal Osteosarcoma 6 265227 -NCIT:C147097 Cardiac Angiosarcoma 6 265228 -NCIT:C45755 Cardiac Undifferentiated Pleomorphic Sarcoma 6 265229 -NCIT:C45756 Cardiac Synovial Sarcoma 6 265230 -NCIT:C45757 Cardiac Biphasic Synovial Sarcoma 7 265231 -NCIT:C45758 Cardiac Monophasic Synovial Sarcoma 7 265232 -NCIT:C45759 Cardiac Rhabdomyosarcoma 6 265233 -NCIT:C5361 Cardiac Fibrosarcoma 6 265234 -NCIT:C147004 Cardiac Myxofibrosarcoma 7 265235 -NCIT:C5363 Cardiac Kaposi Sarcoma 6 265236 -NCIT:C5364 Cardiac Leiomyosarcoma 6 265237 -NCIT:C5367 Cardiac Malignant Peripheral Nerve Sheath Tumor 6 265238 -NCIT:C7730 Penile Sarcoma 5 265239 -NCIT:C162578 Penile Angiosarcoma 6 265240 -NCIT:C162584 Penile Malignant Peripheral Nerve Sheath Tumor 6 265241 -NCIT:C162585 Penile Leiomyosarcoma 6 265242 -NCIT:C162588 Penile Rhabdomyosarcoma 6 265243 -NCIT:C162589 Penile Undifferentiated Pleomorphic Sarcoma 6 265244 -NCIT:C6377 Penile Kaposi Sarcoma 6 265245 -NCIT:C7731 Prostate Sarcoma 5 265246 -NCIT:C161034 Prostate Synovial Sarcoma 6 265247 -NCIT:C161035 Prostate Osteosarcoma 6 265248 -NCIT:C161038 Prostate Undifferentiated Pleomorphic Sarcoma 6 265249 -NCIT:C5522 Prostate Rhabdomyosarcoma 6 265250 -NCIT:C188070 Prostate Alveolar Rhabdomyosarcoma 7 265251 -NCIT:C5525 Prostate Embryonal Rhabdomyosarcoma 7 265252 -NCIT:C5523 Prostate Kaposi Sarcoma 6 265253 -NCIT:C5524 Prostate Stromal Sarcoma 6 265254 -NCIT:C5526 Prostate Leiomyosarcoma 6 265255 -NCIT:C5528 Prostate Angiosarcoma 6 265256 -NCIT:C7737 Vaginal Sarcoma 5 265257 -NCIT:C128080 Vaginal Rhabdomyosarcoma 6 265258 -NCIT:C40268 Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 7 265259 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 8 265260 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 8 265261 -NCIT:C40271 Vaginal Low Grade Endometrioid Stromal Sarcoma 6 265262 -NCIT:C40272 Vaginal Undifferentiated Sarcoma 6 265263 -NCIT:C40277 Vaginal Adenosarcoma 6 265264 -NCIT:C6326 Vaginal Leiomyosarcoma 6 265265 -NCIT:C8267 Ovarian Sarcoma 5 265266 -NCIT:C40063 Ovarian Low Grade Endometrioid Stromal Sarcoma 6 265267 -NCIT:C40066 Ovarian Undifferentiated Sarcoma 6 265268 -NCIT:C5232 Ovarian Angiosarcoma 6 265269 -NCIT:C5233 Ovarian Fibrosarcoma 6 265270 -NCIT:C5234 Ovarian Leiomyosarcoma 6 265271 -NCIT:C5236 Ovarian Rhabdomyosarcoma 6 265272 -NCIT:C6419 Ovarian Liposarcoma 6 265273 -NCIT:C5235 Ovarian Myxoid Liposarcoma 7 265274 -NCIT:C7317 Ovarian Adenosarcoma 6 265275 -NCIT:C8300 Desmoplastic Small Round Cell Tumor 5 265276 -NCIT:C126356 Peritoneal Desmoplastic Small Round Cell Tumor 6 265277 -NCIT:C158426 Recurrent Desmoplastic Small Round Cell Tumor 6 265278 -NCIT:C158427 Refractory Desmoplastic Small Round Cell Tumor 6 265279 -NCIT:C170826 Unresectable Desmoplastic Small Round Cell Tumor 6 265280 -NCIT:C170827 Metastatic Desmoplastic Small Round Cell Tumor 6 265281 -NCIT:C180875 Locally Advanced Desmoplastic Small Round Cell Tumor 7 265282 -NCIT:C27372 Childhood Desmoplastic Small Round Cell Tumor 6 265283 -NCIT:C27373 Adult Desmoplastic Small Round Cell Tumor 6 265284 -NCIT:C8810 Extraskeletal Osteosarcoma 5 265285 -NCIT:C147003 Cardiac Extraskeletal Osteosarcoma 6 265286 -NCIT:C161035 Prostate Osteosarcoma 6 265287 -NCIT:C188061 Lung Osteosarcoma 6 265288 -NCIT:C27376 Childhood Extraskeletal Osteosarcoma 6 265289 -NCIT:C5189 Breast Extraskeletal Osteosarcoma 6 265290 -NCIT:C5833 Liver Extraskeletal Osteosarcoma 6 265291 -NCIT:C6181 Kidney Extraskeletal Osteosarcoma 6 265292 -NCIT:C6615 Mediastinal Extraskeletal Osteosarcoma 6 265293 -NCIT:C7002 Central Nervous System Extraskeletal Osteosarcoma 6 265294 -NCIT:C7925 Adult Extraskeletal Osteosarcoma 6 265295 -NCIT:C82972 Duodenal Extraskeletal Osteosarcoma 6 265296 -NCIT:C8808 Metastatic Extraskeletal Osteosarcoma 6 265297 -NCIT:C8809 Localized Extraskeletal Osteosarcoma 6 265298 -NCIT:C8811 Recurrent Extraskeletal Osteosarcoma 6 265299 -NCIT:C4890 Malignant Digestive System Neoplasm 3 265300 -NCIT:C162255 Metastatic Malignant Digestive System Neoplasm 4 265301 -NCIT:C133839 Metastatic Digestive System Carcinoma 5 265302 -NCIT:C150577 Metastatic Gastroesophageal Junction Adenocarcinoma 6 265303 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 7 265304 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 7 265305 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 265306 -NCIT:C151904 Refractory Metastatic Digestive System Carcinoma 6 265307 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 7 265308 -NCIT:C151905 Recurrent Metastatic Digestive System Carcinoma 6 265309 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 7 265310 -NCIT:C153320 Metastatic Gastric Carcinoma 6 265311 -NCIT:C153319 Metastatic Gastric Adenocarcinoma 7 265312 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 265313 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 265314 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 265315 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 265316 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 265317 -NCIT:C165630 Metastatic Proximal Gastric Adenocarcinoma 8 265318 -NCIT:C166121 Oligometastatic Gastric Adenocarcinoma 8 265319 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 265320 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 265321 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 7 265322 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 265323 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 265324 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 265325 -NCIT:C162772 Locally Advanced Gastric Carcinoma 7 265326 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 265327 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 265328 -NCIT:C165299 Advanced Gastric Carcinoma 7 265329 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 265330 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 265331 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 265332 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 265333 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 265334 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 7 265335 -NCIT:C153358 Locally Advanced Digestive System Carcinoma 6 265336 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 7 265337 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 265338 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 265339 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 265340 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 7 265341 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 265342 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 7 265343 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 8 265344 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 265345 -NCIT:C170778 Locally Advanced Rectal Carcinoma 8 265346 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 265347 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 265348 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 265349 -NCIT:C170910 Locally Advanced Colon Carcinoma 8 265350 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 265351 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 265352 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 265353 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 265354 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 265355 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 265356 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 265357 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 265358 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 265359 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 265360 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 265361 -NCIT:C162772 Locally Advanced Gastric Carcinoma 7 265362 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 265363 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 265364 -NCIT:C168976 Locally Advanced Esophageal Carcinoma 7 265365 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 265366 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 265367 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 265368 -NCIT:C168977 Locally Advanced Anal Carcinoma 7 265369 -NCIT:C170459 Locally Advanced Pancreatobiliary Carcinoma 7 265370 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 8 265371 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 265372 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 265373 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 265374 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 265375 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 265376 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 265377 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 265378 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 265379 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 8 265380 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 265381 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 265382 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 265383 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 8 265384 -NCIT:C171298 Locally Advanced Liver Carcinoma 7 265385 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 265386 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 8 265387 -NCIT:C154088 Metastatic Liver Carcinoma 6 265388 -NCIT:C154091 Metastatic Hepatocellular Carcinoma 7 265389 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 8 265390 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 265391 -NCIT:C167336 Advanced Hepatocellular Carcinoma 8 265392 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 265393 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 265394 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 265395 -NCIT:C171298 Locally Advanced Liver Carcinoma 7 265396 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 265397 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 8 265398 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 7 265399 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 8 265400 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 8 265401 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 6 265402 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 7 265403 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 265404 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 265405 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 265406 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 7 265407 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 265408 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 265409 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 265410 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 7 265411 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 265412 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 265413 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 265414 -NCIT:C156073 Metastatic Esophageal Carcinoma 6 265415 -NCIT:C156074 Metastatic Esophageal Adenocarcinoma 7 265416 -NCIT:C166120 Oligometastatic Esophageal Adenocarcinoma 8 265417 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 265418 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 265419 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 265420 -NCIT:C172249 Metastatic Distal Esophagus Adenocarcinoma 8 265421 -NCIT:C156075 Metastatic Esophageal Squamous Cell Carcinoma 7 265422 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 265423 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 265424 -NCIT:C160599 Advanced Esophageal Carcinoma 7 265425 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 265426 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 265427 -NCIT:C168976 Locally Advanced Esophageal Carcinoma 7 265428 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 265429 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 265430 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 265431 -NCIT:C156096 Metastatic Colorectal Carcinoma 6 265432 -NCIT:C142867 Metastatic Microsatellite Stable Colorectal Carcinoma 7 265433 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 8 265434 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 8 265435 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 265436 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 8 265437 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 265438 -NCIT:C153224 Colorectal Carcinoma Metastatic in the Lung 7 265439 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 8 265440 -NCIT:C156097 Metastatic Colon Carcinoma 7 265441 -NCIT:C160819 Metastatic Colon Adenocarcinoma 8 265442 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 265443 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 265444 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 265445 -NCIT:C167238 Advanced Colon Carcinoma 8 265446 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 265447 -NCIT:C170910 Locally Advanced Colon Carcinoma 8 265448 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 265449 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 265450 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 265451 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 8 265452 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 265453 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 8 265454 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 8 265455 -NCIT:C156098 Metastatic Rectal Carcinoma 7 265456 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 8 265457 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 8 265458 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 265459 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 265460 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 265461 -NCIT:C170777 Advanced Rectal Carcinoma 8 265462 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 265463 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 265464 -NCIT:C170778 Locally Advanced Rectal Carcinoma 8 265465 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 265466 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 265467 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 265468 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 8 265469 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 265470 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 265471 -NCIT:C157366 Colorectal Carcinoma Metastatic in the Liver 7 265472 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 8 265473 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 8 265474 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 8 265475 -NCIT:C161048 Metastatic Colorectal Adenocarcinoma 7 265476 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 8 265477 -NCIT:C160819 Metastatic Colon Adenocarcinoma 8 265478 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 265479 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 265480 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 265481 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 8 265482 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 265483 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 265484 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 265485 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 8 265486 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 265487 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 265488 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 265489 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 265490 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 265491 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 265492 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 265493 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 265494 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 265495 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 265496 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 265497 -NCIT:C162475 Advanced Colorectal Carcinoma 7 265498 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 8 265499 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 265500 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 265501 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 265502 -NCIT:C167238 Advanced Colon Carcinoma 8 265503 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 265504 -NCIT:C170777 Advanced Rectal Carcinoma 8 265505 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 265506 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 265507 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 7 265508 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 8 265509 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 265510 -NCIT:C170778 Locally Advanced Rectal Carcinoma 8 265511 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 265512 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 265513 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 265514 -NCIT:C170910 Locally Advanced Colon Carcinoma 8 265515 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 265516 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 265517 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 265518 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 265519 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 265520 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 265521 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 265522 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 265523 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 265524 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 265525 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 265526 -NCIT:C185165 Oligometastatic Colorectal Carcinoma 7 265527 -NCIT:C156746 Advanced Digestive System Carcinoma 6 265528 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 7 265529 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 265530 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 265531 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 7 265532 -NCIT:C160599 Advanced Esophageal Carcinoma 7 265533 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 265534 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 265535 -NCIT:C162475 Advanced Colorectal Carcinoma 7 265536 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 8 265537 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 265538 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 265539 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 265540 -NCIT:C167238 Advanced Colon Carcinoma 8 265541 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 265542 -NCIT:C170777 Advanced Rectal Carcinoma 8 265543 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 265544 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 265545 -NCIT:C165299 Advanced Gastric Carcinoma 7 265546 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 265547 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 265548 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 265549 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 265550 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 265551 -NCIT:C167336 Advanced Hepatocellular Carcinoma 7 265552 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 8 265553 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 8 265554 -NCIT:C170515 Advanced Anal Carcinoma 7 265555 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 8 265556 -NCIT:C171330 Advanced Pancreatobiliary Carcinoma 7 265557 -NCIT:C165452 Advanced Pancreatic Carcinoma 8 265558 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 265559 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 265560 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 8 265561 -NCIT:C171331 Advanced Biliary Tract Carcinoma 8 265562 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 265563 -NCIT:C162752 Advanced Cholangiocarcinoma 10 265564 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 265565 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 265566 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 265567 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 265568 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 265569 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 265570 -NCIT:C182105 Advanced Appendix Adenocarcinoma 7 265571 -NCIT:C162275 Metastatic Appendix Carcinoma 6 265572 -NCIT:C182104 Metastatic Appendix Adenocarcinoma 7 265573 -NCIT:C162274 Metastatic Appendix Mucinous Adenocarcinoma 8 265574 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 265575 -NCIT:C163967 Metastatic Digestive System Mixed Adenoneuroendocrine Carcinoma 6 265576 -NCIT:C170458 Metastatic Pancreatobiliary Carcinoma 6 265577 -NCIT:C156069 Metastatic Pancreatic Carcinoma 7 265578 -NCIT:C165452 Advanced Pancreatic Carcinoma 8 265579 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 265580 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 265581 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 8 265582 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 265583 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 265584 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 265585 -NCIT:C190770 Metastatic Pancreatic Adenosquamous Carcinoma 8 265586 -NCIT:C190771 Metastatic Pancreatic Squamous Cell Carcinoma 8 265587 -NCIT:C8933 Metastatic Pancreatic Adenocarcinoma 8 265588 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 265589 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 265590 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 265591 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 9 265592 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 265593 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 265594 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 10 265595 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 265596 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 265597 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 9 265598 -NCIT:C162751 Metastatic Biliary Tract Carcinoma 7 265599 -NCIT:C142869 Metastatic Bile Duct Carcinoma 8 265600 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 265601 -NCIT:C162752 Advanced Cholangiocarcinoma 10 265602 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 265603 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 265604 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 265605 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 265606 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 265607 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 265608 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 265609 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 265610 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 265611 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 265612 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 265613 -NCIT:C157623 Metastatic Cholangiocarcinoma 9 265614 -NCIT:C162752 Advanced Cholangiocarcinoma 10 265615 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 265616 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 265617 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 265618 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 265619 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 265620 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 265621 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 10 265622 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 265623 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 10 265624 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 265625 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 265626 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 10 265627 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 265628 -NCIT:C185071 Metastatic Extrahepatic Bile Duct Carcinoma 9 265629 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 10 265630 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 11 265631 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 265632 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 265633 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 265634 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 265635 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 265636 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 265637 -NCIT:C162754 Metastatic Gallbladder Carcinoma 8 265638 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 265639 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 265640 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 265641 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 8 265642 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 265643 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 265644 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 265645 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 265646 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 265647 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 265648 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 265649 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 265650 -NCIT:C171331 Advanced Biliary Tract Carcinoma 8 265651 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 265652 -NCIT:C162752 Advanced Cholangiocarcinoma 10 265653 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 265654 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 265655 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 265656 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 265657 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 265658 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 265659 -NCIT:C170459 Locally Advanced Pancreatobiliary Carcinoma 7 265660 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 8 265661 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 265662 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 265663 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 265664 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 265665 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 265666 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 265667 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 265668 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 265669 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 8 265670 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 265671 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 265672 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 265673 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 8 265674 -NCIT:C171326 Metastatic Ampulla of Vater Carcinoma 7 265675 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 8 265676 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 8 265677 -NCIT:C171330 Advanced Pancreatobiliary Carcinoma 7 265678 -NCIT:C165452 Advanced Pancreatic Carcinoma 8 265679 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 265680 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 265681 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 8 265682 -NCIT:C171331 Advanced Biliary Tract Carcinoma 8 265683 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 265684 -NCIT:C162752 Advanced Cholangiocarcinoma 10 265685 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 265686 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 265687 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 265688 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 265689 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 265690 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 265691 -NCIT:C170514 Metastatic Anal Carcinoma 6 265692 -NCIT:C168977 Locally Advanced Anal Carcinoma 7 265693 -NCIT:C169103 Metastatic Anal Squamous Cell Carcinoma 7 265694 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 265695 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 265696 -NCIT:C170515 Advanced Anal Carcinoma 7 265697 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 8 265698 -NCIT:C5612 Metastatic Anal Canal Carcinoma 7 265699 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 265700 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 265701 -NCIT:C8637 Metastatic Small Intestinal Carcinoma 6 265702 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 7 265703 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 265704 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 7 265705 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 265706 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 265707 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 265708 -NCIT:C8934 Metastatic Small Intestinal Adenocarcinoma 7 265709 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 265710 -NCIT:C156492 Metastatic Digestive System Neuroendocrine Neoplasm 5 265711 -NCIT:C115245 Metastatic Digestive System Neuroendocrine Tumor G1 6 265712 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 7 265713 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 265714 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 7 265715 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 7 265716 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 265717 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 6 265718 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 7 265719 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 265720 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 265721 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 265722 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 7 265723 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 265724 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 265725 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 265726 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 7 265727 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 265728 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 265729 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 265730 -NCIT:C158089 Advanced Digestive System Neuroendocrine Neoplasm 6 265731 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 7 265732 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 265733 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 265734 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 7 265735 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 265736 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 265737 -NCIT:C165448 Advanced Pancreatic Neuroendocrine Neoplasm 7 265738 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 8 265739 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 265740 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 265741 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 7 265742 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 265743 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 7 265744 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 265745 -NCIT:C165447 Metastatic Pancreatic Neuroendocrine Neoplasm 6 265746 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 7 265747 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 265748 -NCIT:C156488 Metastatic Pancreatic Neuroendocrine Tumor 7 265749 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 8 265750 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 265751 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 265752 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 8 265753 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 8 265754 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 265755 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 8 265756 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 265757 -NCIT:C165448 Advanced Pancreatic Neuroendocrine Neoplasm 7 265758 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 8 265759 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 265760 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 265761 -NCIT:C167329 Metastatic Midgut Neuroendocrine Tumor 6 265762 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 7 265763 -NCIT:C178271 Locally Advanced Digestive System Neuroendocrine Neoplasm 6 265764 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 265765 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 265766 -NCIT:C158090 Locally Advanced Unresectable Digestive System Neuroendocrine Neoplasm 7 265767 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 7 265768 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 7 265769 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 7 265770 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 7 265771 -NCIT:C179415 Metastatic Digestive System Neuroendocrine Tumor G2 6 265772 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 7 265773 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 7 265774 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 265775 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 7 265776 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 265777 -NCIT:C162780 Metastatic Malignant Colorectal Neoplasm 5 265778 -NCIT:C156096 Metastatic Colorectal Carcinoma 6 265779 -NCIT:C142867 Metastatic Microsatellite Stable Colorectal Carcinoma 7 265780 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 8 265781 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 8 265782 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 265783 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 8 265784 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 265785 -NCIT:C153224 Colorectal Carcinoma Metastatic in the Lung 7 265786 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 8 265787 -NCIT:C156097 Metastatic Colon Carcinoma 7 265788 -NCIT:C160819 Metastatic Colon Adenocarcinoma 8 265789 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 265790 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 265791 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 265792 -NCIT:C167238 Advanced Colon Carcinoma 8 265793 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 265794 -NCIT:C170910 Locally Advanced Colon Carcinoma 8 265795 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 265796 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 265797 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 265798 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 8 265799 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 265800 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 8 265801 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 8 265802 -NCIT:C156098 Metastatic Rectal Carcinoma 7 265803 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 8 265804 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 8 265805 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 265806 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 265807 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 265808 -NCIT:C170777 Advanced Rectal Carcinoma 8 265809 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 265810 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 265811 -NCIT:C170778 Locally Advanced Rectal Carcinoma 8 265812 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 265813 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 265814 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 265815 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 8 265816 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 265817 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 265818 -NCIT:C157366 Colorectal Carcinoma Metastatic in the Liver 7 265819 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 8 265820 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 8 265821 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 8 265822 -NCIT:C161048 Metastatic Colorectal Adenocarcinoma 7 265823 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 8 265824 -NCIT:C160819 Metastatic Colon Adenocarcinoma 8 265825 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 265826 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 265827 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 265828 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 8 265829 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 265830 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 265831 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 265832 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 8 265833 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 265834 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 265835 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 265836 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 265837 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 265838 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 265839 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 265840 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 265841 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 265842 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 265843 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 265844 -NCIT:C162475 Advanced Colorectal Carcinoma 7 265845 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 8 265846 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 265847 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 265848 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 265849 -NCIT:C167238 Advanced Colon Carcinoma 8 265850 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 265851 -NCIT:C170777 Advanced Rectal Carcinoma 8 265852 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 265853 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 265854 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 7 265855 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 8 265856 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 265857 -NCIT:C170778 Locally Advanced Rectal Carcinoma 8 265858 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 265859 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 265860 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 265861 -NCIT:C170910 Locally Advanced Colon Carcinoma 8 265862 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 265863 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 265864 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 265865 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 265866 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 265867 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 265868 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 265869 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 265870 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 265871 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 265872 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 265873 -NCIT:C185165 Oligometastatic Colorectal Carcinoma 7 265874 -NCIT:C175547 Advanced Malignant Digestive System Neoplasm 5 265875 -NCIT:C156746 Advanced Digestive System Carcinoma 6 265876 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 7 265877 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 265878 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 265879 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 7 265880 -NCIT:C160599 Advanced Esophageal Carcinoma 7 265881 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 265882 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 265883 -NCIT:C162475 Advanced Colorectal Carcinoma 7 265884 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 8 265885 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 265886 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 265887 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 265888 -NCIT:C167238 Advanced Colon Carcinoma 8 265889 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 265890 -NCIT:C170777 Advanced Rectal Carcinoma 8 265891 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 265892 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 265893 -NCIT:C165299 Advanced Gastric Carcinoma 7 265894 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 265895 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 265896 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 265897 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 265898 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 265899 -NCIT:C167336 Advanced Hepatocellular Carcinoma 7 265900 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 8 265901 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 8 265902 -NCIT:C170515 Advanced Anal Carcinoma 7 265903 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 8 265904 -NCIT:C171330 Advanced Pancreatobiliary Carcinoma 7 265905 -NCIT:C165452 Advanced Pancreatic Carcinoma 8 265906 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 265907 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 265908 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 8 265909 -NCIT:C171331 Advanced Biliary Tract Carcinoma 8 265910 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 265911 -NCIT:C162752 Advanced Cholangiocarcinoma 10 265912 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 265913 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 265914 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 265915 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 265916 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 265917 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 265918 -NCIT:C182105 Advanced Appendix Adenocarcinoma 7 265919 -NCIT:C158089 Advanced Digestive System Neuroendocrine Neoplasm 6 265920 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 7 265921 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 265922 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 265923 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 7 265924 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 265925 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 265926 -NCIT:C165448 Advanced Pancreatic Neuroendocrine Neoplasm 7 265927 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 8 265928 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 265929 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 265930 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 7 265931 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 8 265932 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 7 265933 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 8 265934 -NCIT:C176679 Advanced Malignant Small Intestinal Neoplasm 6 265935 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 7 265936 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 265937 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 265938 -NCIT:C176678 Metastatic Malignant Small Intestinal Neoplasm 5 265939 -NCIT:C176679 Advanced Malignant Small Intestinal Neoplasm 6 265940 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 7 265941 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 265942 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 265943 -NCIT:C8637 Metastatic Small Intestinal Carcinoma 6 265944 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 7 265945 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 265946 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 7 265947 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 265948 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 265949 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 265950 -NCIT:C8934 Metastatic Small Intestinal Adenocarcinoma 7 265951 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 265952 -NCIT:C179181 Locally Advanced Malignant Digestive System Neoplasm 5 265953 -NCIT:C153358 Locally Advanced Digestive System Carcinoma 6 265954 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 7 265955 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 265956 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 265957 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 265958 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 7 265959 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 265960 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 7 265961 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 8 265962 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 265963 -NCIT:C170778 Locally Advanced Rectal Carcinoma 8 265964 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 265965 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 265966 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 265967 -NCIT:C170910 Locally Advanced Colon Carcinoma 8 265968 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 265969 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 265970 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 265971 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 265972 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 265973 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 265974 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 265975 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 265976 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 265977 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 265978 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 265979 -NCIT:C162772 Locally Advanced Gastric Carcinoma 7 265980 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 265981 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 265982 -NCIT:C168976 Locally Advanced Esophageal Carcinoma 7 265983 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 265984 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 265985 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 265986 -NCIT:C168977 Locally Advanced Anal Carcinoma 7 265987 -NCIT:C170459 Locally Advanced Pancreatobiliary Carcinoma 7 265988 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 8 265989 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 265990 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 265991 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 265992 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 265993 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 265994 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 265995 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 265996 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 265997 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 8 265998 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 265999 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 266000 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 266001 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 8 266002 -NCIT:C171298 Locally Advanced Liver Carcinoma 7 266003 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 266004 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 8 266005 -NCIT:C178271 Locally Advanced Digestive System Neuroendocrine Neoplasm 6 266006 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 266007 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 266008 -NCIT:C158090 Locally Advanced Unresectable Digestive System Neuroendocrine Neoplasm 7 266009 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 7 266010 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 7 266011 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 7 266012 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 7 266013 -NCIT:C162845 Unresectable Malignant Digestive System Neoplasm 4 266014 -NCIT:C155903 Unresectable Digestive System Carcinoma 5 266015 -NCIT:C128563 Unresectable Esophageal Carcinoma 6 266016 -NCIT:C171608 Unresectable Esophageal Squamous Cell Carcinoma 7 266017 -NCIT:C173162 Unresectable Esophageal Adenocarcinoma 7 266018 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 266019 -NCIT:C172248 Unresectable Distal Esophagus Adenocarcinoma 8 266020 -NCIT:C129654 Unresectable Digestive System Adenocarcinoma 6 266021 -NCIT:C150578 Unresectable Gastroesophageal Junction Adenocarcinoma 7 266022 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 266023 -NCIT:C154221 Unresectable Gastric Adenocarcinoma 7 266024 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 266025 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 266026 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 266027 -NCIT:C162016 Unresectable Pancreatic Adenocarcinoma 7 266028 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 8 266029 -NCIT:C172245 Unresectable Pancreatic Ductal Adenocarcinoma 8 266030 -NCIT:C165171 Unresectable Liver and Intrahepatic Bile Duct Carcinoma 7 266031 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 8 266032 -NCIT:C27345 Unresectable Hepatocellular Carcinoma 8 266033 -NCIT:C162602 Unresectable Fibrolamellar Carcinoma 9 266034 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 9 266035 -NCIT:C7878 Localized Unresectable Adult Liver Carcinoma 8 266036 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 9 266037 -NCIT:C171585 Unresectable Colorectal Adenocarcinoma 7 266038 -NCIT:C162116 Unresectable Colon Adenocarcinoma 8 266039 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 266040 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 8 266041 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 266042 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 266043 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 266044 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 266045 -NCIT:C173162 Unresectable Esophageal Adenocarcinoma 7 266046 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 266047 -NCIT:C172248 Unresectable Distal Esophagus Adenocarcinoma 8 266048 -NCIT:C175516 Unresectable Small Intestinal Adenocarcinoma 7 266049 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 8 266050 -NCIT:C189064 Unresectable Gallbladder Adenocarcinoma 7 266051 -NCIT:C189065 Unresectable Ampulla of Vater Adenocarcinoma 7 266052 -NCIT:C27324 Unresectable Cholangiocarcinoma 7 266053 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 8 266054 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 8 266055 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 8 266056 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 8 266057 -NCIT:C155935 Unresectable Digestive System Neuroendocrine Carcinoma 6 266058 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 7 266059 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 7 266060 -NCIT:C159775 Unresectable Gastric Carcinoma 6 266061 -NCIT:C154221 Unresectable Gastric Adenocarcinoma 7 266062 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 266063 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 266064 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 266065 -NCIT:C162600 Unresectable Colorectal Carcinoma 6 266066 -NCIT:C171585 Unresectable Colorectal Adenocarcinoma 7 266067 -NCIT:C162116 Unresectable Colon Adenocarcinoma 8 266068 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 266069 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 8 266070 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 266071 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 266072 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 266073 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 266074 -NCIT:C180406 Unresectable Colon Carcinoma 7 266075 -NCIT:C162116 Unresectable Colon Adenocarcinoma 8 266076 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 266077 -NCIT:C165172 Unresectable Ampulla of Vater Carcinoma 6 266078 -NCIT:C189065 Unresectable Ampulla of Vater Adenocarcinoma 7 266079 -NCIT:C172808 Unresectable Digestive System Mixed Adenoneuroendocrine Carcinoma 6 266080 -NCIT:C173156 Unresectable Anal Squamous Cell Carcinoma 6 266081 -NCIT:C175384 Unresectable Anal Canal Squamous Cell Carcinoma 7 266082 -NCIT:C176042 Unresectable Biliary Tract Carcinoma 6 266083 -NCIT:C171322 Unresectable Bile Duct Carcinoma 7 266084 -NCIT:C27324 Unresectable Cholangiocarcinoma 8 266085 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 9 266086 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 9 266087 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 9 266088 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 9 266089 -NCIT:C7892 Unresectable Extrahepatic Bile Duct Carcinoma 8 266090 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 9 266091 -NCIT:C7890 Unresectable Gallbladder Carcinoma 7 266092 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 8 266093 -NCIT:C189064 Unresectable Gallbladder Adenocarcinoma 8 266094 -NCIT:C5018 Unresectable Pancreatic Carcinoma 6 266095 -NCIT:C162016 Unresectable Pancreatic Adenocarcinoma 7 266096 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 8 266097 -NCIT:C172245 Unresectable Pancreatic Ductal Adenocarcinoma 8 266098 -NCIT:C8638 Unresectable Small Intestinal Carcinoma 6 266099 -NCIT:C175516 Unresectable Small Intestinal Adenocarcinoma 7 266100 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 8 266101 -NCIT:C165455 Unresectable Digestive System Neuroendocrine Neoplasm 5 266102 -NCIT:C155935 Unresectable Digestive System Neuroendocrine Carcinoma 6 266103 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 7 266104 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 7 266105 -NCIT:C158090 Locally Advanced Unresectable Digestive System Neuroendocrine Neoplasm 6 266106 -NCIT:C165456 Unresectable Pancreatic Neuroendocrine Neoplasm 6 266107 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 7 266108 -NCIT:C190782 Unresectable Pancreatic Neuroendocrine Tumor 7 266109 -NCIT:C167331 Unresectable Midgut Neuroendocrine Tumor 6 266110 -NCIT:C179419 Unresectable Digestive System Neuroendocrine Tumor G1 6 266111 -NCIT:C187345 Unresectable Digestive System Neuroendocrine Tumor G2 6 266112 -NCIT:C175304 Unresectable Malignant Gastric Neoplasm 5 266113 -NCIT:C159775 Unresectable Gastric Carcinoma 6 266114 -NCIT:C154221 Unresectable Gastric Adenocarcinoma 7 266115 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 266116 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 266117 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 266118 -NCIT:C35648 Unresectable Malignant Liver Neoplasm 5 266119 -NCIT:C165171 Unresectable Liver and Intrahepatic Bile Duct Carcinoma 6 266120 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 7 266121 -NCIT:C27345 Unresectable Hepatocellular Carcinoma 7 266122 -NCIT:C162602 Unresectable Fibrolamellar Carcinoma 8 266123 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 8 266124 -NCIT:C7878 Localized Unresectable Adult Liver Carcinoma 7 266125 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 8 266126 -NCIT:C8641 Unresectable Hepatoblastoma 6 266127 -NCIT:C168669 Metastatic Malignant Neoplasm in the Digestive System 4 266128 -NCIT:C168666 Gastrointestinal Carcinomatosis 5 266129 -NCIT:C4581 Metastatic Malignant Neoplasm in the Large Intestine 5 266130 -NCIT:C7426 Metastatic Malignant Neoplasm in the Rectum 6 266131 -NCIT:C188076 Metastatic Carcinoma in the Rectum 7 266132 -NCIT:C8411 Metastatic Malignant Neoplasm in the Colon 6 266133 -NCIT:C4758 Metastatic Malignant Neoplasm in the Liver 5 266134 -NCIT:C150130 Uveal Melanoma Metastatic in the Liver 6 266135 -NCIT:C185152 Extramedullary Disease in Plasma Cell Myeloma Involving the Liver 6 266136 -NCIT:C96767 Metastatic Carcinoma in the Liver 6 266137 -NCIT:C157366 Colorectal Carcinoma Metastatic in the Liver 7 266138 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 8 266139 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 8 266140 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 8 266141 -NCIT:C36302 Breast Carcinoma Metastatic in the Liver 7 266142 -NCIT:C36306 Lung Carcinoma Metastatic in the Liver 7 266143 -NCIT:C7460 Metastatic Malignant Neoplasm in the Anus 5 266144 -NCIT:C7479 Metastatic Malignant Neoplasm in the Esophagus 5 266145 -NCIT:C7482 Metastatic Malignant Neoplasm in the Gallbladder 5 266146 -NCIT:C7524 Metastatic Malignant Neoplasm in the Small Intestine 5 266147 -NCIT:C8543 Metastatic Malignant Neoplasm in the Pancreas 5 266148 -NCIT:C188077 Metastatic Carcinoma in the Pancreas 6 266149 -NCIT:C95903 Metastatic Malignant Neoplasm in the Stomach 5 266150 -NCIT:C96953 Metastatic Malignant Neoplasm in the Extrahepatic Bile Ducts 5 266151 -NCIT:C172849 Digestive System Sarcoma 4 266152 -NCIT:C150704 EBV-Positive Inflammatory Follicular Dendritic Cell Sarcoma of the Digestive System 5 266153 -NCIT:C172951 Digestive System Leiomyosarcoma 5 266154 -NCIT:C188065 Pancreatic Leiomyosarcoma 6 266155 -NCIT:C27200 Gastric Leiomyosarcoma 6 266156 -NCIT:C5334 Esophageal Leiomyosarcoma 6 266157 -NCIT:C5599 Anal Leiomyosarcoma 6 266158 -NCIT:C5756 Liver Leiomyosarcoma 6 266159 -NCIT:C5841 Gallbladder Leiomyosarcoma 6 266160 -NCIT:C5848 Extrahepatic Bile Duct Leiomyosarcoma 6 266161 -NCIT:C7085 Small Intestinal Leiomyosarcoma 6 266162 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 7 266163 -NCIT:C96435 Appendix Leiomyosarcoma 6 266164 -NCIT:C96509 Colorectal Leiomyosarcoma 6 266165 -NCIT:C5494 Colon Leiomyosarcoma 7 266166 -NCIT:C5549 Rectal Leiomyosarcoma 7 266167 -NCIT:C172952 Digestive System Rhabdomyosarcoma 5 266168 -NCIT:C5610 Anal Rhabdomyosarcoma 6 266169 -NCIT:C5627 Rectal Rhabdomyosarcoma 6 266170 -NCIT:C5834 Liver Rhabdomyosarcoma 6 266171 -NCIT:C5839 Gallbladder Rhabdomyosarcoma 6 266172 -NCIT:C5860 Extrahepatic Bile Duct Rhabdomyosarcoma 6 266173 -NCIT:C5847 Extrahepatic Bile Duct Embryonal Rhabdomyosarcoma 7 266174 -NCIT:C95623 Esophageal Rhabdomyosarcoma 6 266175 -NCIT:C172955 Digestive System Kaposi Sarcoma 5 266176 -NCIT:C5529 Gastric Kaposi Sarcoma 6 266177 -NCIT:C5624 AIDS-Related Gastric Kaposi Sarcoma 7 266178 -NCIT:C5602 Anal Kaposi Sarcoma 6 266179 -NCIT:C5706 Esophageal Kaposi Sarcoma 6 266180 -NCIT:C5842 Gallbladder Kaposi Sarcoma 6 266181 -NCIT:C96059 Small Intestinal Kaposi Sarcoma 6 266182 -NCIT:C96434 Appendix Kaposi Sarcoma 6 266183 -NCIT:C96510 Colorectal Kaposi Sarcoma 6 266184 -NCIT:C5516 Colon Kaposi Sarcoma 7 266185 -NCIT:C5550 Rectal Kaposi Sarcoma 7 266186 -NCIT:C96844 Liver Kaposi Sarcoma 6 266187 -NCIT:C96951 Extrahepatic Bile Duct Kaposi Sarcoma 6 266188 -NCIT:C172980 Gastrointestinal Clear Cell Sarcoma/Malignant Gastrointestinal Neuroectodermal Tumor 5 266189 -NCIT:C27439 Gastric Sarcoma 5 266190 -NCIT:C27200 Gastric Leiomyosarcoma 6 266191 -NCIT:C5488 Gastric Liposarcoma 6 266192 -NCIT:C5529 Gastric Kaposi Sarcoma 6 266193 -NCIT:C5624 AIDS-Related Gastric Kaposi Sarcoma 7 266194 -NCIT:C95897 Gastric Malignant Gastrointestinal Stromal Tumor 6 266195 -NCIT:C95899 Gastric Synovial Sarcoma 6 266196 -NCIT:C4437 Liver Sarcoma 5 266197 -NCIT:C27096 Liver Embryonal Sarcoma 6 266198 -NCIT:C189934 Childhood Liver Embryonal Sarcoma 7 266199 -NCIT:C189935 Adult Liver Embryonal Sarcoma 7 266200 -NCIT:C4438 Liver Angiosarcoma 6 266201 -NCIT:C190020 Childhood Liver Angiosarcoma 7 266202 -NCIT:C5756 Liver Leiomyosarcoma 6 266203 -NCIT:C5832 Liver Fibrosarcoma 6 266204 -NCIT:C5833 Liver Extraskeletal Osteosarcoma 6 266205 -NCIT:C5834 Liver Rhabdomyosarcoma 6 266206 -NCIT:C96844 Liver Kaposi Sarcoma 6 266207 -NCIT:C96845 Liver Synovial Sarcoma 6 266208 -NCIT:C5029 Extrahepatic Bile Duct Sarcoma 5 266209 -NCIT:C5848 Extrahepatic Bile Duct Leiomyosarcoma 6 266210 -NCIT:C5860 Extrahepatic Bile Duct Rhabdomyosarcoma 6 266211 -NCIT:C5847 Extrahepatic Bile Duct Embryonal Rhabdomyosarcoma 7 266212 -NCIT:C96951 Extrahepatic Bile Duct Kaposi Sarcoma 6 266213 -NCIT:C5335 Small Intestinal Sarcoma 5 266214 -NCIT:C5336 Small Intestinal Fibrosarcoma 6 266215 -NCIT:C7085 Small Intestinal Leiomyosarcoma 6 266216 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 7 266217 -NCIT:C82972 Duodenal Extraskeletal Osteosarcoma 6 266218 -NCIT:C96059 Small Intestinal Kaposi Sarcoma 6 266219 -NCIT:C96060 Small Intestinal Angiosarcoma 6 266220 -NCIT:C5341 Esophageal Sarcoma 5 266221 -NCIT:C5334 Esophageal Leiomyosarcoma 6 266222 -NCIT:C5705 Esophageal Liposarcoma 6 266223 -NCIT:C5706 Esophageal Kaposi Sarcoma 6 266224 -NCIT:C92185 Esophageal Malignant Peripheral Nerve Sheath Tumor 6 266225 -NCIT:C95623 Esophageal Rhabdomyosarcoma 6 266226 -NCIT:C95624 Esophageal Synovial Sarcoma 6 266227 -NCIT:C5611 Anal Sarcoma 5 266228 -NCIT:C5599 Anal Leiomyosarcoma 6 266229 -NCIT:C5602 Anal Kaposi Sarcoma 6 266230 -NCIT:C5610 Anal Rhabdomyosarcoma 6 266231 -NCIT:C5715 Pancreatic Sarcoma 5 266232 -NCIT:C188065 Pancreatic Leiomyosarcoma 6 266233 -NCIT:C5736 Gallbladder Sarcoma 5 266234 -NCIT:C5839 Gallbladder Rhabdomyosarcoma 6 266235 -NCIT:C5840 Gallbladder Angiosarcoma 6 266236 -NCIT:C5841 Gallbladder Leiomyosarcoma 6 266237 -NCIT:C5842 Gallbladder Kaposi Sarcoma 6 266238 -NCIT:C96508 Colorectal Sarcoma 5 266239 -NCIT:C5495 Colon Sarcoma 6 266240 -NCIT:C156279 Colon Liposarcoma 7 266241 -NCIT:C5494 Colon Leiomyosarcoma 7 266242 -NCIT:C5516 Colon Kaposi Sarcoma 7 266243 -NCIT:C5548 Rectal Sarcoma 6 266244 -NCIT:C5549 Rectal Leiomyosarcoma 7 266245 -NCIT:C5550 Rectal Kaposi Sarcoma 7 266246 -NCIT:C5627 Rectal Rhabdomyosarcoma 7 266247 -NCIT:C96509 Colorectal Leiomyosarcoma 6 266248 -NCIT:C5494 Colon Leiomyosarcoma 7 266249 -NCIT:C5549 Rectal Leiomyosarcoma 7 266250 -NCIT:C96510 Colorectal Kaposi Sarcoma 6 266251 -NCIT:C5516 Colon Kaposi Sarcoma 7 266252 -NCIT:C5550 Rectal Kaposi Sarcoma 7 266253 -NCIT:C96511 Colorectal Angiosarcoma 6 266254 -NCIT:C189870 Childhood Malignant Digestive System Neoplasm 4 266255 -NCIT:C118808 Childhood Colorectal Carcinoma 5 266256 -NCIT:C118823 Childhood Rectal Carcinoma 6 266257 -NCIT:C118812 Childhood Esophageal Carcinoma 5 266258 -NCIT:C118813 Childhood Gastric Carcinoma 5 266259 -NCIT:C118826 Childhood Malignant Small Intestinal Neoplasm 5 266260 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 6 266261 -NCIT:C123933 Childhood Small Intestinal Carcinoma 6 266262 -NCIT:C190023 Childhood Pancreatoblastoma 5 266263 -NCIT:C190024 Childhood Pancreatic Acinar Cell Carcinoma 5 266264 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 6 266265 -NCIT:C190027 Childhood Solid Pseudopapillary Neoplasm of the Pancreas 5 266266 -NCIT:C190028 Childhood Gastroblastoma 5 266267 -NCIT:C7708 Childhood Malignant Liver Neoplasm 5 266268 -NCIT:C189934 Childhood Liver Embryonal Sarcoma 6 266269 -NCIT:C190020 Childhood Liver Angiosarcoma 6 266270 -NCIT:C3728 Hepatoblastoma 6 266271 -NCIT:C142854 Refractory Hepatoblastoma 7 266272 -NCIT:C161838 Hepatocellular Malignant Neoplasm, Not Otherwise Specified 7 266273 -NCIT:C189923 Epithelial Hepatoblastoma 7 266274 -NCIT:C189924 Epithelial Hepatoblastoma with Pleomorphic Pattern 8 266275 -NCIT:C7093 Hepatoblastoma with Pure Fetal Epithelial Differentiation 8 266276 -NCIT:C7094 Hepatoblastoma with Combined Fetal and Embryonal Epithelial Differentiation 8 266277 -NCIT:C7095 Macrotrabecular Hepatoblastoma 8 266278 -NCIT:C7096 Small Cell Undifferentiated Hepatoblastoma 8 266279 -NCIT:C189927 Hepatoblastoma by PRETEXT Stage 7 266280 -NCIT:C7139 PRETEXT Stage 1 Hepatoblastoma 8 266281 -NCIT:C7140 PRETEXT Stage 2 Hepatoblastoma 8 266282 -NCIT:C7141 PRETEXT Stage 3 Hepatoblastoma 8 266283 -NCIT:C7142 PRETEXT Stage 4 Hepatoblastoma 8 266284 -NCIT:C189929 Hepatoblastoma by Postsurgical Stage 7 266285 -NCIT:C7143 Postsurgical Stage IV Hepatoblastoma 8 266286 -NCIT:C7144 Postsurgical Stage III Hepatoblastoma 8 266287 -NCIT:C7145 Postsurgical Stage II Hepatoblastoma 8 266288 -NCIT:C7146 Postsurgical Stage I Hepatoblastoma 8 266289 -NCIT:C7097 Mixed Epithelial and Mesenchymal Hepatoblastoma 7 266290 -NCIT:C189926 Non-Teratoid Hepatoblastoma 8 266291 -NCIT:C7098 Teratoid Hepatoblastoma 8 266292 -NCIT:C8641 Unresectable Hepatoblastoma 7 266293 -NCIT:C8642 Resectable Hepatoblastoma 7 266294 -NCIT:C8643 Recurrent Hepatoblastoma 7 266295 -NCIT:C7839 Recurrent Childhood Malignant Liver Neoplasm 6 266296 -NCIT:C8643 Recurrent Hepatoblastoma 7 266297 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 7 266298 -NCIT:C7955 Childhood Hepatocellular Carcinoma 6 266299 -NCIT:C189932 Childhood Fibrolamellar Carcinoma 7 266300 -NCIT:C5708 Stage III Childhood Hepatocellular Carcinoma AJCC v7 7 266301 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 7 266302 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 7 266303 -NCIT:C7838 Stage IV Childhood Hepatocellular Carcinoma AJCC v7 7 266304 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 7 266305 -NCIT:C96830 Calcifying Nested Stromal-Epithelial Tumor 6 266306 -NCIT:C96847 Extrarenal Rhabdoid Tumor of the Liver 6 266307 -NCIT:C3536 Malignant Ampulla of Vater Neoplasm 4 266308 -NCIT:C3908 Ampulla of Vater Carcinoma 5 266309 -NCIT:C134863 Ampulla of Vater Cancer by AJCC v7 Stage 6 266310 -NCIT:C4444 Stage 0 Ampulla of Vater Cancer AJCC v7 7 266311 -NCIT:C6651 Stage I Ampulla of Vater Cancer AJCC v7 7 266312 -NCIT:C88096 Stage IA Ampulla of Vater Cancer AJCC v7 8 266313 -NCIT:C88097 Stage IB Ampulla of Vater Cancer AJCC v7 8 266314 -NCIT:C6652 Stage II Ampulla of Vater Cancer AJCC v7 7 266315 -NCIT:C88098 Stage IIA Ampulla of Vater Cancer AJCC v7 8 266316 -NCIT:C88099 Stage IIB Ampulla of Vater Cancer AJCC v7 8 266317 -NCIT:C6653 Stage III Ampulla of Vater Cancer AJCC v7 7 266318 -NCIT:C6654 Stage IV Ampulla of Vater Cancer AJCC v7 7 266319 -NCIT:C134864 Ampulla of Vater Cancer by AJCC v8 Stage 6 266320 -NCIT:C134865 Stage 0 Ampulla of Vater Cancer AJCC v8 7 266321 -NCIT:C134866 Stage I Ampulla of Vater Cancer AJCC v8 7 266322 -NCIT:C134867 Stage IA Ampulla of Vater Cancer AJCC v8 8 266323 -NCIT:C134868 Stage IB Ampulla of Vater Cancer AJCC v8 8 266324 -NCIT:C134869 Stage II Ampulla of Vater Cancer AJCC v8 7 266325 -NCIT:C134870 Stage IIA Ampulla of Vater Cancer AJCC v8 8 266326 -NCIT:C134871 Stage IIB Ampulla of Vater Cancer AJCC v8 8 266327 -NCIT:C134872 Stage III Ampulla of Vater Cancer AJCC v8 7 266328 -NCIT:C134873 Stage IIIA Ampulla of Vater Cancer AJCC v8 8 266329 -NCIT:C134874 Stage IIIB Ampulla of Vater Cancer AJCC v8 8 266330 -NCIT:C134875 Stage IV Ampulla of Vater Cancer AJCC v8 7 266331 -NCIT:C165172 Unresectable Ampulla of Vater Carcinoma 6 266332 -NCIT:C189065 Unresectable Ampulla of Vater Adenocarcinoma 7 266333 -NCIT:C171326 Metastatic Ampulla of Vater Carcinoma 6 266334 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 7 266335 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 7 266336 -NCIT:C175436 Refractory Ampulla of Vater Carcinoma 6 266337 -NCIT:C27417 Ampulla of Vater Squamous Cell Carcinoma 6 266338 -NCIT:C27418 Ampulla of Vater Adenosquamous Carcinoma 6 266339 -NCIT:C27419 Ampulla of Vater Undifferentiated Carcinoma 6 266340 -NCIT:C95965 Ampulla of Vater Undifferentiated Carcinoma with Osteoclast-Like Giant Cells 7 266341 -NCIT:C6650 Ampulla of Vater Adenocarcinoma 6 266342 -NCIT:C153574 Recurrent Ampulla of Vater Adenocarcinoma 7 266343 -NCIT:C189065 Unresectable Ampulla of Vater Adenocarcinoma 7 266344 -NCIT:C27414 Ampulla of Vater Clear Cell Adenocarcinoma 7 266345 -NCIT:C27415 Ampulla of Vater Intestinal-Type Adenocarcinoma 7 266346 -NCIT:C27416 Ampulla of Vater Mucinous Adenocarcinoma 7 266347 -NCIT:C6656 Ampulla of Vater Signet Ring Cell Carcinoma 7 266348 -NCIT:C95963 Ampulla of Vater Pancreatobiliary Type Adenocarcinoma 7 266349 -NCIT:C95966 Ampulla of Vater Hepatoid Adenocarcinoma 7 266350 -NCIT:C95967 Ampulla of Vater Invasive Papillary Adenocarcinoma 7 266351 -NCIT:C95984 Ampulla of Vater Neuroendocrine Carcinoma 6 266352 -NCIT:C6655 Ampulla of Vater Small Cell Neuroendocrine Carcinoma 7 266353 -NCIT:C95985 Ampulla of Vater Large Cell Neuroendocrine Carcinoma 7 266354 -NCIT:C95986 Ampulla of Vater Mixed Adenoneuroendocrine Carcinoma 6 266355 -NCIT:C38162 Digestive System Lymphoma 4 266356 -NCIT:C38161 Digestive System Non-Hodgkin Lymphoma 5 266357 -NCIT:C150495 Intestinal T-Cell Lymphoma 6 266358 -NCIT:C150505 Intestinal T-Cell Lymphoma, Not Otherwise Specified 7 266359 -NCIT:C4737 Enteropathy-Associated T-Cell Lymphoma 7 266360 -NCIT:C141295 Enteropathy-Associated T-Cell Lymphoma by Ann Arbor Stage 8 266361 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 9 266362 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 9 266363 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 9 266364 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 9 266365 -NCIT:C39610 Small Intestinal Enteropathy-Associated T-Cell Lymphoma 8 266366 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 8 266367 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 8 266368 -NCIT:C96058 Monomorphic Epitheliotropic Intestinal T-Cell Lymphoma 7 266369 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 8 266370 -NCIT:C150504 Small Intestinal Monomorphic Epitheliotropic T-Cell Lymphoma 8 266371 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 8 266372 -NCIT:C172844 Extranodal Marginal Zone Lymphoma of Mucosa-Associated Lymphoid Tissue Involving the Digestive System 6 266373 -NCIT:C5266 Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 7 266374 -NCIT:C27763 Helicobacter Pylori-Associated Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 8 266375 -NCIT:C5635 Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 7 266376 -NCIT:C45166 Campylobacter Jejuni-Associated Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 8 266377 -NCIT:C5768 Liver Mucosa-Associated Lymphoid Tissue Lymphoma 7 266378 -NCIT:C95626 Esophageal Mucosa-Associated Lymphoid Tissue Lymphoma 7 266379 -NCIT:C96506 Colorectal Mucosa-Associated Lymphoid Tissue Lymphoma 7 266380 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 8 266381 -NCIT:C172850 Digestive System Diffuse Large B-Cell Lymphoma 6 266382 -NCIT:C5253 Gastric Diffuse Large B-Cell Lymphoma 7 266383 -NCIT:C95625 Esophageal Diffuse Large B-Cell Lymphoma 7 266384 -NCIT:C96055 Small Intestinal Diffuse Large B-Cell Lymphoma 7 266385 -NCIT:C96057 Small Intestinal High Grade B-Cell Lymphoma, Not Otherwise Specified 8 266386 -NCIT:C96503 Colorectal Diffuse Large B-Cell Lymphoma 7 266387 -NCIT:C96501 Colorectal High Grade B-Cell Lymphoma, Not Otherwise Specified 8 266388 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 8 266389 -NCIT:C96843 Liver Diffuse Large B-Cell Lymphoma 7 266390 -NCIT:C27235 Gastric Non-Hodgkin Lymphoma 6 266391 -NCIT:C5251 Gastric Burkitt Lymphoma 7 266392 -NCIT:C5253 Gastric Diffuse Large B-Cell Lymphoma 7 266393 -NCIT:C5254 Gastric T-Cell Non-Hodgkin Lymphoma 7 266394 -NCIT:C5266 Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 7 266395 -NCIT:C27763 Helicobacter Pylori-Associated Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 8 266396 -NCIT:C4339 Multifocal Lymphomatous Polyposis 6 266397 -NCIT:C5688 Esophageal Non-Hodgkin Lymphoma 6 266398 -NCIT:C95625 Esophageal Diffuse Large B-Cell Lymphoma 7 266399 -NCIT:C95626 Esophageal Mucosa-Associated Lymphoid Tissue Lymphoma 7 266400 -NCIT:C5766 Liver Non-Hodgkin Lymphoma 6 266401 -NCIT:C5768 Liver Mucosa-Associated Lymphoid Tissue Lymphoma 7 266402 -NCIT:C8459 Hepatosplenic T-Cell Lymphoma 7 266403 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 8 266404 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 8 266405 -NCIT:C96843 Liver Diffuse Large B-Cell Lymphoma 7 266406 -NCIT:C5789 Pancreatic Non-Hodgkin Lymphoma 6 266407 -NCIT:C7231 Small Intestinal Non-Hodgkin Lymphoma 6 266408 -NCIT:C96053 Small Intestinal B-Cell Non-Hodgkin Lymphoma 7 266409 -NCIT:C27409 Small Intestinal Burkitt Lymphoma 8 266410 -NCIT:C27410 Small Intestinal Atypical Burkitt/Burkitt-Like Lymphoma 9 266411 -NCIT:C27441 Small Intestinal Mantle Cell Lymphoma 8 266412 -NCIT:C3132 Alpha Heavy Chain Disease 8 266413 -NCIT:C5635 Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 8 266414 -NCIT:C45166 Campylobacter Jejuni-Associated Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 9 266415 -NCIT:C96055 Small Intestinal Diffuse Large B-Cell Lymphoma 8 266416 -NCIT:C96057 Small Intestinal High Grade B-Cell Lymphoma, Not Otherwise Specified 9 266417 -NCIT:C96056 Small Intestinal Follicular Lymphoma 8 266418 -NCIT:C96054 Small Intestinal T-Cell Non-Hodgkin Lymphoma 7 266419 -NCIT:C150504 Small Intestinal Monomorphic Epitheliotropic T-Cell Lymphoma 8 266420 -NCIT:C39610 Small Intestinal Enteropathy-Associated T-Cell Lymphoma 8 266421 -NCIT:C7465 AIDS-Related Anal Non-Hodgkin Lymphoma 6 266422 -NCIT:C80298 Intestinal Follicular Lymphoma 6 266423 -NCIT:C96056 Small Intestinal Follicular Lymphoma 7 266424 -NCIT:C96499 Colorectal Non-Hodgkin Lymphoma 6 266425 -NCIT:C4950 Colon Non-Hodgkin Lymphoma 7 266426 -NCIT:C27411 Colon Mantle Cell Lymphoma 8 266427 -NCIT:C27465 Colon Burkitt Lymphoma 8 266428 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 8 266429 -NCIT:C5521 Cecum Non-Hodgkin Lymphoma 8 266430 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 8 266431 -NCIT:C96502 Colorectal Burkitt Lymphoma 7 266432 -NCIT:C27465 Colon Burkitt Lymphoma 8 266433 -NCIT:C96503 Colorectal Diffuse Large B-Cell Lymphoma 7 266434 -NCIT:C96501 Colorectal High Grade B-Cell Lymphoma, Not Otherwise Specified 8 266435 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 8 266436 -NCIT:C96505 Colorectal Mantle Cell Lymphoma 7 266437 -NCIT:C27411 Colon Mantle Cell Lymphoma 8 266438 -NCIT:C96506 Colorectal Mucosa-Associated Lymphoid Tissue Lymphoma 7 266439 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 8 266440 -NCIT:C38163 Digestive System Hodgkin Lymphoma 5 266441 -NCIT:C5337 Small Intestinal Hodgkin Lymphoma 6 266442 -NCIT:C5638 Gastric Hodgkin Lymphoma 6 266443 -NCIT:C5689 Esophageal Hodgkin Lymphoma 6 266444 -NCIT:C96500 Colorectal Hodgkin Lymphoma 6 266445 -NCIT:C5499 Colon Hodgkin Lymphoma 7 266446 -NCIT:C4007 Small Intestinal Lymphoma 5 266447 -NCIT:C5337 Small Intestinal Hodgkin Lymphoma 6 266448 -NCIT:C7231 Small Intestinal Non-Hodgkin Lymphoma 6 266449 -NCIT:C96053 Small Intestinal B-Cell Non-Hodgkin Lymphoma 7 266450 -NCIT:C27409 Small Intestinal Burkitt Lymphoma 8 266451 -NCIT:C27410 Small Intestinal Atypical Burkitt/Burkitt-Like Lymphoma 9 266452 -NCIT:C27441 Small Intestinal Mantle Cell Lymphoma 8 266453 -NCIT:C3132 Alpha Heavy Chain Disease 8 266454 -NCIT:C5635 Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 8 266455 -NCIT:C45166 Campylobacter Jejuni-Associated Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 9 266456 -NCIT:C96055 Small Intestinal Diffuse Large B-Cell Lymphoma 8 266457 -NCIT:C96057 Small Intestinal High Grade B-Cell Lymphoma, Not Otherwise Specified 9 266458 -NCIT:C96056 Small Intestinal Follicular Lymphoma 8 266459 -NCIT:C96054 Small Intestinal T-Cell Non-Hodgkin Lymphoma 7 266460 -NCIT:C150504 Small Intestinal Monomorphic Epitheliotropic T-Cell Lymphoma 8 266461 -NCIT:C39610 Small Intestinal Enteropathy-Associated T-Cell Lymphoma 8 266462 -NCIT:C4636 Gastric Lymphoma 5 266463 -NCIT:C27235 Gastric Non-Hodgkin Lymphoma 6 266464 -NCIT:C5251 Gastric Burkitt Lymphoma 7 266465 -NCIT:C5253 Gastric Diffuse Large B-Cell Lymphoma 7 266466 -NCIT:C5254 Gastric T-Cell Non-Hodgkin Lymphoma 7 266467 -NCIT:C5266 Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 7 266468 -NCIT:C27763 Helicobacter Pylori-Associated Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 8 266469 -NCIT:C5638 Gastric Hodgkin Lymphoma 6 266470 -NCIT:C4949 Liver Lymphoma 5 266471 -NCIT:C5766 Liver Non-Hodgkin Lymphoma 6 266472 -NCIT:C5768 Liver Mucosa-Associated Lymphoid Tissue Lymphoma 7 266473 -NCIT:C8459 Hepatosplenic T-Cell Lymphoma 7 266474 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 8 266475 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 8 266476 -NCIT:C96843 Liver Diffuse Large B-Cell Lymphoma 7 266477 -NCIT:C5513 Appendix Lymphoma 5 266478 -NCIT:C5601 Anal Lymphoma 5 266479 -NCIT:C7465 AIDS-Related Anal Non-Hodgkin Lymphoma 6 266480 -NCIT:C5687 Esophageal Lymphoma 5 266481 -NCIT:C5688 Esophageal Non-Hodgkin Lymphoma 6 266482 -NCIT:C95625 Esophageal Diffuse Large B-Cell Lymphoma 7 266483 -NCIT:C95626 Esophageal Mucosa-Associated Lymphoid Tissue Lymphoma 7 266484 -NCIT:C5689 Esophageal Hodgkin Lymphoma 6 266485 -NCIT:C5714 Pancreatic Lymphoma 5 266486 -NCIT:C5789 Pancreatic Non-Hodgkin Lymphoma 6 266487 -NCIT:C5734 Gallbladder Lymphoma 5 266488 -NCIT:C96498 Colorectal Lymphoma 5 266489 -NCIT:C4793 Colon Lymphoma 6 266490 -NCIT:C4950 Colon Non-Hodgkin Lymphoma 7 266491 -NCIT:C27411 Colon Mantle Cell Lymphoma 8 266492 -NCIT:C27465 Colon Burkitt Lymphoma 8 266493 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 8 266494 -NCIT:C5521 Cecum Non-Hodgkin Lymphoma 8 266495 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 8 266496 -NCIT:C5499 Colon Hodgkin Lymphoma 7 266497 -NCIT:C5515 Cecum Lymphoma 7 266498 -NCIT:C5521 Cecum Non-Hodgkin Lymphoma 8 266499 -NCIT:C5553 Rectal Lymphoma 6 266500 -NCIT:C96499 Colorectal Non-Hodgkin Lymphoma 6 266501 -NCIT:C4950 Colon Non-Hodgkin Lymphoma 7 266502 -NCIT:C27411 Colon Mantle Cell Lymphoma 8 266503 -NCIT:C27465 Colon Burkitt Lymphoma 8 266504 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 8 266505 -NCIT:C5521 Cecum Non-Hodgkin Lymphoma 8 266506 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 8 266507 -NCIT:C96502 Colorectal Burkitt Lymphoma 7 266508 -NCIT:C27465 Colon Burkitt Lymphoma 8 266509 -NCIT:C96503 Colorectal Diffuse Large B-Cell Lymphoma 7 266510 -NCIT:C96501 Colorectal High Grade B-Cell Lymphoma, Not Otherwise Specified 8 266511 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 8 266512 -NCIT:C96505 Colorectal Mantle Cell Lymphoma 7 266513 -NCIT:C27411 Colon Mantle Cell Lymphoma 8 266514 -NCIT:C96506 Colorectal Mucosa-Associated Lymphoid Tissue Lymphoma 7 266515 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 8 266516 -NCIT:C96500 Colorectal Hodgkin Lymphoma 6 266517 -NCIT:C5499 Colon Hodgkin Lymphoma 7 266518 -NCIT:C96952 Extrahepatic Bile Duct Lymphoma 5 266519 -NCIT:C4572 Malignant Intestinal Neoplasm 4 266520 -NCIT:C150495 Intestinal T-Cell Lymphoma 5 266521 -NCIT:C150505 Intestinal T-Cell Lymphoma, Not Otherwise Specified 6 266522 -NCIT:C4737 Enteropathy-Associated T-Cell Lymphoma 6 266523 -NCIT:C141295 Enteropathy-Associated T-Cell Lymphoma by Ann Arbor Stage 7 266524 -NCIT:C8682 Ann Arbor Stage I Enteropathy-Associated T-Cell Lymphoma 8 266525 -NCIT:C8683 Ann Arbor Stage II Enteropathy-Associated T-Cell Lymphoma 8 266526 -NCIT:C8684 Ann Arbor Stage III Enteropathy-Associated T-Cell Lymphoma 8 266527 -NCIT:C8685 Ann Arbor Stage IV Enteropathy-Associated T-Cell Lymphoma 8 266528 -NCIT:C39610 Small Intestinal Enteropathy-Associated T-Cell Lymphoma 7 266529 -NCIT:C8680 Recurrent Enteropathy-Associated T-Cell Lymphoma 7 266530 -NCIT:C8681 Refractory Enteropathy-Associated T-Cell Lymphoma 7 266531 -NCIT:C96058 Monomorphic Epitheliotropic Intestinal T-Cell Lymphoma 6 266532 -NCIT:C150132 Recurrent Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 7 266533 -NCIT:C150504 Small Intestinal Monomorphic Epitheliotropic T-Cell Lymphoma 7 266534 -NCIT:C157694 Refractory Monomorphic Epitheliotropic Intestinal T-cell Lymphoma 7 266535 -NCIT:C4978 Malignant Colorectal Neoplasm 5 266536 -NCIT:C162780 Metastatic Malignant Colorectal Neoplasm 6 266537 -NCIT:C156096 Metastatic Colorectal Carcinoma 7 266538 -NCIT:C142867 Metastatic Microsatellite Stable Colorectal Carcinoma 8 266539 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 266540 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 266541 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 266542 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 266543 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 266544 -NCIT:C153224 Colorectal Carcinoma Metastatic in the Lung 8 266545 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 9 266546 -NCIT:C156097 Metastatic Colon Carcinoma 8 266547 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 266548 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 266549 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 266550 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 266551 -NCIT:C167238 Advanced Colon Carcinoma 9 266552 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 266553 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 266554 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 266555 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 266556 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 266557 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 266558 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 266559 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 9 266560 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 9 266561 -NCIT:C156098 Metastatic Rectal Carcinoma 8 266562 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 9 266563 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 266564 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 266565 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 266566 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 266567 -NCIT:C170777 Advanced Rectal Carcinoma 9 266568 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 266569 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 266570 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 266571 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 266572 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 266573 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 266574 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 9 266575 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 266576 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 266577 -NCIT:C157366 Colorectal Carcinoma Metastatic in the Liver 8 266578 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 9 266579 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 9 266580 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 9 266581 -NCIT:C161048 Metastatic Colorectal Adenocarcinoma 8 266582 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 9 266583 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 266584 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 266585 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 266586 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 266587 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 266588 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 266589 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 266590 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 266591 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 9 266592 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 266593 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 266594 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 266595 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 266596 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 266597 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 266598 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 266599 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 266600 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 266601 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 266602 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 266603 -NCIT:C162475 Advanced Colorectal Carcinoma 8 266604 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 266605 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 266606 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 266607 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 266608 -NCIT:C167238 Advanced Colon Carcinoma 9 266609 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 266610 -NCIT:C170777 Advanced Rectal Carcinoma 9 266611 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 266612 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 266613 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 8 266614 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 266615 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 266616 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 266617 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 266618 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 266619 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 266620 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 266621 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 266622 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 266623 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 266624 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 266625 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 266626 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 266627 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 266628 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 266629 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 266630 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 266631 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 266632 -NCIT:C185165 Oligometastatic Colorectal Carcinoma 8 266633 -NCIT:C2955 Colorectal Carcinoma 6 266634 -NCIT:C118808 Childhood Colorectal Carcinoma 7 266635 -NCIT:C118823 Childhood Rectal Carcinoma 8 266636 -NCIT:C134180 Colorectal Cancer by AJCC v8 Stage 7 266637 -NCIT:C134182 Stage 0 Colorectal Cancer AJCC v8 8 266638 -NCIT:C134271 Stage 0 Colon Cancer AJCC v8 9 266639 -NCIT:C134291 Stage 0 Rectal Cancer AJCC v8 9 266640 -NCIT:C134185 Stage I Colorectal Cancer AJCC v8 8 266641 -NCIT:C134273 Stage I Colon Cancer AJCC v8 9 266642 -NCIT:C134292 Stage I Rectal Cancer AJCC v8 9 266643 -NCIT:C134186 Stage II Colorectal Cancer AJCC v8 8 266644 -NCIT:C134187 Stage IIA Colorectal Cancer AJCC v8 9 266645 -NCIT:C134280 Stage IIA Colon Cancer AJCC v8 10 266646 -NCIT:C134294 Stage IIA Rectal Cancer AJCC v8 10 266647 -NCIT:C134188 Stage IIB Colorectal Cancer AJCC v8 9 266648 -NCIT:C134281 Stage IIB Colon Cancer AJCC v8 10 266649 -NCIT:C134295 Stage IIB Rectal Cancer AJCC v8 10 266650 -NCIT:C134190 Stage IIC Colorectal Cancer AJCC v8 9 266651 -NCIT:C134282 Stage IIC Colon Cancer AJCC v8 10 266652 -NCIT:C134296 Stage IIC Rectal Cancer AJCC v8 10 266653 -NCIT:C134274 Stage II Colon Cancer AJCC v8 9 266654 -NCIT:C134280 Stage IIA Colon Cancer AJCC v8 10 266655 -NCIT:C134281 Stage IIB Colon Cancer AJCC v8 10 266656 -NCIT:C134282 Stage IIC Colon Cancer AJCC v8 10 266657 -NCIT:C134293 Stage II Rectal Cancer AJCC v8 9 266658 -NCIT:C134294 Stage IIA Rectal Cancer AJCC v8 10 266659 -NCIT:C134295 Stage IIB Rectal Cancer AJCC v8 10 266660 -NCIT:C134296 Stage IIC Rectal Cancer AJCC v8 10 266661 -NCIT:C134191 Stage III Colorectal Cancer AJCC v8 8 266662 -NCIT:C134192 Stage IIIA Colorectal Cancer AJCC v8 9 266663 -NCIT:C134284 Stage IIIA Colon Cancer AJCC v8 10 266664 -NCIT:C134298 Stage IIIA Rectal Cancer AJCC v8 10 266665 -NCIT:C134193 Stage IIIB Colorectal Cancer AJCC v8 9 266666 -NCIT:C134285 Stage IIIB Colon Cancer AJCC v8 10 266667 -NCIT:C134299 Stage IIIB Rectal Cancer AJCC v8 10 266668 -NCIT:C134194 Stage IIIC Colorectal Cancer AJCC v8 9 266669 -NCIT:C134286 Stage IIIC Colon Cancer AJCC v8 10 266670 -NCIT:C134300 Stage IIIC Rectal Cancer AJCC v8 10 266671 -NCIT:C134283 Stage III Colon Cancer AJCC v8 9 266672 -NCIT:C134284 Stage IIIA Colon Cancer AJCC v8 10 266673 -NCIT:C134285 Stage IIIB Colon Cancer AJCC v8 10 266674 -NCIT:C134286 Stage IIIC Colon Cancer AJCC v8 10 266675 -NCIT:C134297 Stage III Rectal Cancer AJCC v8 9 266676 -NCIT:C134298 Stage IIIA Rectal Cancer AJCC v8 10 266677 -NCIT:C134299 Stage IIIB Rectal Cancer AJCC v8 10 266678 -NCIT:C134300 Stage IIIC Rectal Cancer AJCC v8 10 266679 -NCIT:C134195 Stage IV Colorectal Cancer AJCC v8 8 266680 -NCIT:C134196 Stage IVA Colorectal Cancer AJCC v8 9 266681 -NCIT:C134288 Stage IVA Colon Cancer AJCC v8 10 266682 -NCIT:C134302 Stage IVA Rectal Cancer AJCC v8 10 266683 -NCIT:C134197 Stage IVB Colorectal Cancer AJCC v8 9 266684 -NCIT:C134289 Stage IVB Colon Cancer AJCC v8 10 266685 -NCIT:C134303 Stage IVB Rectal Cancer AJCC v8 10 266686 -NCIT:C134198 Stage IVC Colorectal Cancer AJCC v8 9 266687 -NCIT:C134290 Stage IVC Colon Cancer AJCC v8 10 266688 -NCIT:C134304 Stage IVC Rectal Cancer AJCC v8 10 266689 -NCIT:C134287 Stage IV Colon Cancer AJCC v8 9 266690 -NCIT:C134288 Stage IVA Colon Cancer AJCC v8 10 266691 -NCIT:C134289 Stage IVB Colon Cancer AJCC v8 10 266692 -NCIT:C134290 Stage IVC Colon Cancer AJCC v8 10 266693 -NCIT:C134301 Stage IV Rectal Cancer AJCC v8 9 266694 -NCIT:C134302 Stage IVA Rectal Cancer AJCC v8 10 266695 -NCIT:C134303 Stage IVB Rectal Cancer AJCC v8 10 266696 -NCIT:C134304 Stage IVC Rectal Cancer AJCC v8 10 266697 -NCIT:C134251 Colon Cancer by AJCC v8 Stage 8 266698 -NCIT:C134271 Stage 0 Colon Cancer AJCC v8 9 266699 -NCIT:C134273 Stage I Colon Cancer AJCC v8 9 266700 -NCIT:C134274 Stage II Colon Cancer AJCC v8 9 266701 -NCIT:C134280 Stage IIA Colon Cancer AJCC v8 10 266702 -NCIT:C134281 Stage IIB Colon Cancer AJCC v8 10 266703 -NCIT:C134282 Stage IIC Colon Cancer AJCC v8 10 266704 -NCIT:C134283 Stage III Colon Cancer AJCC v8 9 266705 -NCIT:C134284 Stage IIIA Colon Cancer AJCC v8 10 266706 -NCIT:C134285 Stage IIIB Colon Cancer AJCC v8 10 266707 -NCIT:C134286 Stage IIIC Colon Cancer AJCC v8 10 266708 -NCIT:C134287 Stage IV Colon Cancer AJCC v8 9 266709 -NCIT:C134288 Stage IVA Colon Cancer AJCC v8 10 266710 -NCIT:C134289 Stage IVB Colon Cancer AJCC v8 10 266711 -NCIT:C134290 Stage IVC Colon Cancer AJCC v8 10 266712 -NCIT:C134258 Rectal Cancer by AJCC v8 Stage 8 266713 -NCIT:C134291 Stage 0 Rectal Cancer AJCC v8 9 266714 -NCIT:C134292 Stage I Rectal Cancer AJCC v8 9 266715 -NCIT:C134293 Stage II Rectal Cancer AJCC v8 9 266716 -NCIT:C134294 Stage IIA Rectal Cancer AJCC v8 10 266717 -NCIT:C134295 Stage IIB Rectal Cancer AJCC v8 10 266718 -NCIT:C134296 Stage IIC Rectal Cancer AJCC v8 10 266719 -NCIT:C134297 Stage III Rectal Cancer AJCC v8 9 266720 -NCIT:C134298 Stage IIIA Rectal Cancer AJCC v8 10 266721 -NCIT:C134299 Stage IIIB Rectal Cancer AJCC v8 10 266722 -NCIT:C134300 Stage IIIC Rectal Cancer AJCC v8 10 266723 -NCIT:C134301 Stage IV Rectal Cancer AJCC v8 9 266724 -NCIT:C134302 Stage IVA Rectal Cancer AJCC v8 10 266725 -NCIT:C134303 Stage IVB Rectal Cancer AJCC v8 10 266726 -NCIT:C134304 Stage IVC Rectal Cancer AJCC v8 10 266727 -NCIT:C147982 Refractory Colorectal Carcinoma 7 266728 -NCIT:C153351 Refractory Colon Carcinoma 8 266729 -NCIT:C162155 Refractory Colon Adenocarcinoma 9 266730 -NCIT:C162154 Refractory Colorectal Adenocarcinoma 8 266731 -NCIT:C162155 Refractory Colon Adenocarcinoma 9 266732 -NCIT:C162157 Refractory Rectal Adenocarcinoma 9 266733 -NCIT:C162156 Refractory Rectal Carcinoma 8 266734 -NCIT:C162157 Refractory Rectal Adenocarcinoma 9 266735 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 9 266736 -NCIT:C173332 Refractory Microsatellite Stable Colorectal Carcinoma 8 266737 -NCIT:C156096 Metastatic Colorectal Carcinoma 7 266738 -NCIT:C142867 Metastatic Microsatellite Stable Colorectal Carcinoma 8 266739 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 266740 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 266741 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 266742 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 266743 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 266744 -NCIT:C153224 Colorectal Carcinoma Metastatic in the Lung 8 266745 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 9 266746 -NCIT:C156097 Metastatic Colon Carcinoma 8 266747 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 266748 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 266749 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 266750 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 266751 -NCIT:C167238 Advanced Colon Carcinoma 9 266752 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 266753 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 266754 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 266755 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 266756 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 266757 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 266758 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 266759 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 9 266760 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 9 266761 -NCIT:C156098 Metastatic Rectal Carcinoma 8 266762 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 9 266763 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 266764 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 266765 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 266766 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 266767 -NCIT:C170777 Advanced Rectal Carcinoma 9 266768 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 266769 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 266770 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 266771 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 266772 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 266773 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 266774 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 9 266775 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 266776 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 266777 -NCIT:C157366 Colorectal Carcinoma Metastatic in the Liver 8 266778 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 9 266779 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 9 266780 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 9 266781 -NCIT:C161048 Metastatic Colorectal Adenocarcinoma 8 266782 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 9 266783 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 266784 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 266785 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 266786 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 266787 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 266788 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 266789 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 266790 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 266791 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 9 266792 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 266793 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 266794 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 266795 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 266796 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 266797 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 266798 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 266799 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 266800 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 266801 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 266802 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 266803 -NCIT:C162475 Advanced Colorectal Carcinoma 8 266804 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 266805 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 266806 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 266807 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 266808 -NCIT:C167238 Advanced Colon Carcinoma 9 266809 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 266810 -NCIT:C170777 Advanced Rectal Carcinoma 9 266811 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 266812 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 266813 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 8 266814 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 266815 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 266816 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 266817 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 266818 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 266819 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 266820 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 266821 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 266822 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 266823 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 266824 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 266825 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 266826 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 266827 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 266828 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 266829 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 266830 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 266831 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 266832 -NCIT:C185165 Oligometastatic Colorectal Carcinoma 8 266833 -NCIT:C162256 Hypermutated Colorectal Carcinoma 7 266834 -NCIT:C162257 Resectable Colorectal Carcinoma 7 266835 -NCIT:C167237 Resectable Colon Carcinoma 8 266836 -NCIT:C162600 Unresectable Colorectal Carcinoma 7 266837 -NCIT:C171585 Unresectable Colorectal Adenocarcinoma 8 266838 -NCIT:C162116 Unresectable Colon Adenocarcinoma 9 266839 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 266840 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 9 266841 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 266842 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 266843 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 266844 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 266845 -NCIT:C180406 Unresectable Colon Carcinoma 8 266846 -NCIT:C162116 Unresectable Colon Adenocarcinoma 9 266847 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 266848 -NCIT:C173324 Microsatellite Stable Colorectal Carcinoma 7 266849 -NCIT:C142867 Metastatic Microsatellite Stable Colorectal Carcinoma 8 266850 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 266851 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 266852 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 266853 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 266854 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 266855 -NCIT:C173332 Refractory Microsatellite Stable Colorectal Carcinoma 8 266856 -NCIT:C177776 Microsatellite Stable Rectal Carcinoma 8 266857 -NCIT:C177777 Microsatellite Stable Colon Carcinoma 8 266858 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 266859 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 266860 -NCIT:C190679 Recurrent Microsatellite Stable Colorectal Carcinoma 8 266861 -NCIT:C43588 Colorectal Squamous Cell Carcinoma 7 266862 -NCIT:C5490 Colon Squamous Cell Carcinoma 8 266863 -NCIT:C5554 Rectal Squamous Cell Carcinoma 8 266864 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 9 266865 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 266866 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 266867 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 9 266868 -NCIT:C5555 Rectal Cloacogenic Carcinoma 9 266869 -NCIT:C43589 Colorectal Adenosquamous Carcinoma 7 266870 -NCIT:C43594 Rectal Adenosquamous Carcinoma 8 266871 -NCIT:C5491 Colon Adenosquamous Carcinoma 8 266872 -NCIT:C43591 Colorectal Undifferentiated Carcinoma 7 266873 -NCIT:C7100 Colon Undifferentiated Carcinoma 8 266874 -NCIT:C7974 Rectal Undifferentiated Carcinoma 8 266875 -NCIT:C4910 Colon Carcinoma 7 266876 -NCIT:C134251 Colon Cancer by AJCC v8 Stage 8 266877 -NCIT:C134271 Stage 0 Colon Cancer AJCC v8 9 266878 -NCIT:C134273 Stage I Colon Cancer AJCC v8 9 266879 -NCIT:C134274 Stage II Colon Cancer AJCC v8 9 266880 -NCIT:C134280 Stage IIA Colon Cancer AJCC v8 10 266881 -NCIT:C134281 Stage IIB Colon Cancer AJCC v8 10 266882 -NCIT:C134282 Stage IIC Colon Cancer AJCC v8 10 266883 -NCIT:C134283 Stage III Colon Cancer AJCC v8 9 266884 -NCIT:C134284 Stage IIIA Colon Cancer AJCC v8 10 266885 -NCIT:C134285 Stage IIIB Colon Cancer AJCC v8 10 266886 -NCIT:C134286 Stage IIIC Colon Cancer AJCC v8 10 266887 -NCIT:C134287 Stage IV Colon Cancer AJCC v8 9 266888 -NCIT:C134288 Stage IVA Colon Cancer AJCC v8 10 266889 -NCIT:C134289 Stage IVB Colon Cancer AJCC v8 10 266890 -NCIT:C134290 Stage IVC Colon Cancer AJCC v8 10 266891 -NCIT:C153351 Refractory Colon Carcinoma 8 266892 -NCIT:C162155 Refractory Colon Adenocarcinoma 9 266893 -NCIT:C156097 Metastatic Colon Carcinoma 8 266894 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 266895 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 266896 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 266897 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 266898 -NCIT:C167238 Advanced Colon Carcinoma 9 266899 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 266900 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 266901 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 266902 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 266903 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 266904 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 266905 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 266906 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 9 266907 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 9 266908 -NCIT:C164228 Hereditary Colon Carcinoma 8 266909 -NCIT:C167237 Resectable Colon Carcinoma 8 266910 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 8 266911 -NCIT:C177680 Sigmoid Colon Carcinoma 8 266912 -NCIT:C177777 Microsatellite Stable Colon Carcinoma 8 266913 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 266914 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 266915 -NCIT:C180406 Unresectable Colon Carcinoma 8 266916 -NCIT:C162116 Unresectable Colon Adenocarcinoma 9 266917 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 266918 -NCIT:C3491 Cecum Carcinoma 8 266919 -NCIT:C4594 Cecum Carcinoma In Situ 9 266920 -NCIT:C5543 Cecum Adenocarcinoma 9 266921 -NCIT:C3998 Recurrent Colon Carcinoma 8 266922 -NCIT:C162442 Recurrent Colon Adenocarcinoma 9 266923 -NCIT:C4349 Colon Adenocarcinoma 8 266924 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 266925 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 266926 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 266927 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 266928 -NCIT:C162116 Unresectable Colon Adenocarcinoma 9 266929 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 266930 -NCIT:C162155 Refractory Colon Adenocarcinoma 9 266931 -NCIT:C162442 Recurrent Colon Adenocarcinoma 9 266932 -NCIT:C38760 Submucosal Invasive Colon Adenocarcinoma 9 266933 -NCIT:C45429 Colon Intramucosal Adenocarcinoma 9 266934 -NCIT:C27413 Adenoma of the Colon with Intramucosal Adenocarcinoma 10 266935 -NCIT:C5543 Cecum Adenocarcinoma 9 266936 -NCIT:C60641 Colon Medullary Carcinoma 9 266937 -NCIT:C7966 Colon Mucinous Adenocarcinoma 9 266938 -NCIT:C7967 Colon Signet Ring Cell Adenocarcinoma 9 266939 -NCIT:C9452 Grade 1 Colon Adenocarcinoma 9 266940 -NCIT:C9453 Grade 2 Colon Adenocarcinoma 9 266941 -NCIT:C9454 Grade 3 Colon Adenocarcinoma 9 266942 -NCIT:C96486 Colon Serrated Adenocarcinoma 9 266943 -NCIT:C96489 Colon Cribriform Comedo-Type Adenocarcinoma 9 266944 -NCIT:C96492 Colon Micropapillary Adenocarcinoma 9 266945 -NCIT:C5490 Colon Squamous Cell Carcinoma 8 266946 -NCIT:C5491 Colon Adenosquamous Carcinoma 8 266947 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 8 266948 -NCIT:C7100 Colon Undifferentiated Carcinoma 8 266949 -NCIT:C90507 Colon Cancer by AJCC v6 Stage 8 266950 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 9 266951 -NCIT:C4594 Cecum Carcinoma In Situ 10 266952 -NCIT:C3993 Stage II Colon Cancer AJCC v6 9 266953 -NCIT:C3994 Stage IV Colon Cancer AJCC v6 9 266954 -NCIT:C7766 Stage III Colon Cancer AJCC v6 9 266955 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 9 266956 -NCIT:C91224 Colon Cancer by AJCC v7 Stage 8 266957 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 9 266958 -NCIT:C4594 Cecum Carcinoma In Situ 10 266959 -NCIT:C89990 Stage II Colon Cancer AJCC v7 9 266960 -NCIT:C115041 Stage IIA Colon Cancer AJCC v7 10 266961 -NCIT:C115042 Stage IIB Colon Cancer AJCC v7 10 266962 -NCIT:C115043 Stage IIC Colon Cancer AJCC v7 10 266963 -NCIT:C89995 Stage III Colon Cancer AJCC v7 9 266964 -NCIT:C115047 Stage IIIA Colon Cancer AJCC v7 10 266965 -NCIT:C115048 Stage IIIB Colon Cancer AJCC v7 10 266966 -NCIT:C115049 Stage IIIC Colon Cancer AJCC v7 10 266967 -NCIT:C89999 Stage IV Colon Cancer AJCC v7 9 266968 -NCIT:C115053 Stage IVA Colon Cancer AJCC v7 10 266969 -NCIT:C115054 Stage IVB Colon Cancer AJCC v7 10 266970 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 9 266971 -NCIT:C5105 Colorectal Adenocarcinoma 7 266972 -NCIT:C161048 Metastatic Colorectal Adenocarcinoma 8 266973 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 9 266974 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 266975 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 266976 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 266977 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 266978 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 266979 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 266980 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 266981 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 266982 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 9 266983 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 266984 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 266985 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 266986 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 266987 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 266988 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 266989 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 266990 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 266991 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 266992 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 266993 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 266994 -NCIT:C162154 Refractory Colorectal Adenocarcinoma 8 266995 -NCIT:C162155 Refractory Colon Adenocarcinoma 9 266996 -NCIT:C162157 Refractory Rectal Adenocarcinoma 9 266997 -NCIT:C162441 Recurrent Colorectal Adenocarcinoma 8 266998 -NCIT:C162442 Recurrent Colon Adenocarcinoma 9 266999 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 9 267000 -NCIT:C171585 Unresectable Colorectal Adenocarcinoma 8 267001 -NCIT:C162116 Unresectable Colon Adenocarcinoma 9 267002 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 267003 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 9 267004 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 267005 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 267006 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 267007 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 267008 -NCIT:C172694 Colorectal Poorly Cohesive Adenocarcinoma 8 267009 -NCIT:C43586 Colorectal Signet Ring Cell Carcinoma 9 267010 -NCIT:C43593 Rectosigmoid Signet Ring Cell Carcinoma 10 267011 -NCIT:C7967 Colon Signet Ring Cell Adenocarcinoma 10 267012 -NCIT:C9168 Rectal Signet Ring Cell Adenocarcinoma 10 267013 -NCIT:C172699 Colorectal Adenoma-Like Adenocarcinoma 8 267014 -NCIT:C172700 Inflammatory Bowel Disease-Associated Colorectal Adenocarcinoma 8 267015 -NCIT:C96496 Ulcerative Colitis-Associated Colorectal Adenocarcinoma 9 267016 -NCIT:C96497 Crohn Disease-Associated Colorectal Adenocarcinoma 9 267017 -NCIT:C4349 Colon Adenocarcinoma 8 267018 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 267019 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 267020 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 267021 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 267022 -NCIT:C162116 Unresectable Colon Adenocarcinoma 9 267023 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 267024 -NCIT:C162155 Refractory Colon Adenocarcinoma 9 267025 -NCIT:C162442 Recurrent Colon Adenocarcinoma 9 267026 -NCIT:C38760 Submucosal Invasive Colon Adenocarcinoma 9 267027 -NCIT:C45429 Colon Intramucosal Adenocarcinoma 9 267028 -NCIT:C27413 Adenoma of the Colon with Intramucosal Adenocarcinoma 10 267029 -NCIT:C5543 Cecum Adenocarcinoma 9 267030 -NCIT:C60641 Colon Medullary Carcinoma 9 267031 -NCIT:C7966 Colon Mucinous Adenocarcinoma 9 267032 -NCIT:C7967 Colon Signet Ring Cell Adenocarcinoma 9 267033 -NCIT:C9452 Grade 1 Colon Adenocarcinoma 9 267034 -NCIT:C9453 Grade 2 Colon Adenocarcinoma 9 267035 -NCIT:C9454 Grade 3 Colon Adenocarcinoma 9 267036 -NCIT:C96486 Colon Serrated Adenocarcinoma 9 267037 -NCIT:C96489 Colon Cribriform Comedo-Type Adenocarcinoma 9 267038 -NCIT:C96492 Colon Micropapillary Adenocarcinoma 9 267039 -NCIT:C43584 Rectosigmoid Adenocarcinoma 8 267040 -NCIT:C43592 Rectosigmoid Mucinous Adenocarcinoma 9 267041 -NCIT:C43593 Rectosigmoid Signet Ring Cell Carcinoma 9 267042 -NCIT:C43585 Colorectal Mucinous Adenocarcinoma 8 267043 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 9 267044 -NCIT:C43592 Rectosigmoid Mucinous Adenocarcinoma 9 267045 -NCIT:C7966 Colon Mucinous Adenocarcinoma 9 267046 -NCIT:C7973 Rectal Mucinous Adenocarcinoma 9 267047 -NCIT:C43590 Colorectal Medullary Carcinoma 8 267048 -NCIT:C60640 Rectal Medullary Carcinoma 9 267049 -NCIT:C60641 Colon Medullary Carcinoma 9 267050 -NCIT:C9383 Rectal Adenocarcinoma 8 267051 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 267052 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 267053 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 267054 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 267055 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 9 267056 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 267057 -NCIT:C162157 Refractory Rectal Adenocarcinoma 9 267058 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 9 267059 -NCIT:C60640 Rectal Medullary Carcinoma 9 267060 -NCIT:C7973 Rectal Mucinous Adenocarcinoma 9 267061 -NCIT:C9168 Rectal Signet Ring Cell Adenocarcinoma 9 267062 -NCIT:C9449 Grade 3 Rectal Adenocarcinoma 9 267063 -NCIT:C9450 Grade 2 Rectal Adenocarcinoma 9 267064 -NCIT:C9451 Grade 1 Rectal Adenocarcinoma 9 267065 -NCIT:C96487 Rectal Serrated Adenocarcinoma 9 267066 -NCIT:C96490 Rectal Cribriform Comedo-Type Adenocarcinoma 9 267067 -NCIT:C96493 Rectal Micropapillary Adenocarcinoma 9 267068 -NCIT:C9446 Grade 1 Colorectal Adenocarcinoma 8 267069 -NCIT:C9451 Grade 1 Rectal Adenocarcinoma 9 267070 -NCIT:C9452 Grade 1 Colon Adenocarcinoma 9 267071 -NCIT:C9447 Grade 2 Colorectal Adenocarcinoma 8 267072 -NCIT:C9450 Grade 2 Rectal Adenocarcinoma 9 267073 -NCIT:C9453 Grade 2 Colon Adenocarcinoma 9 267074 -NCIT:C9448 Grade 3 Colorectal Adenocarcinoma 8 267075 -NCIT:C9449 Grade 3 Rectal Adenocarcinoma 9 267076 -NCIT:C9454 Grade 3 Colon Adenocarcinoma 9 267077 -NCIT:C96485 Colorectal Serrated Adenocarcinoma 8 267078 -NCIT:C96486 Colon Serrated Adenocarcinoma 9 267079 -NCIT:C96487 Rectal Serrated Adenocarcinoma 9 267080 -NCIT:C96488 Colorectal Cribriform Comedo-Type Adenocarcinoma 8 267081 -NCIT:C96489 Colon Cribriform Comedo-Type Adenocarcinoma 9 267082 -NCIT:C96490 Rectal Cribriform Comedo-Type Adenocarcinoma 9 267083 -NCIT:C96491 Colorectal Micropapillary Adenocarcinoma 8 267084 -NCIT:C96492 Colon Micropapillary Adenocarcinoma 9 267085 -NCIT:C96493 Rectal Micropapillary Adenocarcinoma 9 267086 -NCIT:C7421 Rectosigmoid Carcinoma 7 267087 -NCIT:C43584 Rectosigmoid Adenocarcinoma 8 267088 -NCIT:C43592 Rectosigmoid Mucinous Adenocarcinoma 9 267089 -NCIT:C43593 Rectosigmoid Signet Ring Cell Carcinoma 9 267090 -NCIT:C8634 Recurrent Rectosigmoid Carcinoma 8 267091 -NCIT:C90509 Rectosigmoid Cancer by AJCC v6 Stage 8 267092 -NCIT:C5015 Stage II Rectosigmoid Cancer AJCC v6 9 267093 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 9 267094 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 9 267095 -NCIT:C8635 Stage III Rectosigmoid Cancer AJCC v6 9 267096 -NCIT:C8636 Stage IV Rectosigmoid Cancer AJCC v6 9 267097 -NCIT:C91226 Rectosigmoid Cancer by AJCC v7 Stage 8 267098 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 9 267099 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 9 267100 -NCIT:C89992 Stage II Rectosigmoid Cancer AJCC v7 9 267101 -NCIT:C89997 Stage III Rectosigmoid Cancer AJCC v7 9 267102 -NCIT:C90019 Stage IV Rectosigmoid Cancer AJCC v7 9 267103 -NCIT:C8625 Recurrent Colorectal Carcinoma 7 267104 -NCIT:C162441 Recurrent Colorectal Adenocarcinoma 8 267105 -NCIT:C162442 Recurrent Colon Adenocarcinoma 9 267106 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 9 267107 -NCIT:C190199 Locally Recurrent Colorectal Carcinoma 8 267108 -NCIT:C190679 Recurrent Microsatellite Stable Colorectal Carcinoma 8 267109 -NCIT:C3998 Recurrent Colon Carcinoma 8 267110 -NCIT:C162442 Recurrent Colon Adenocarcinoma 9 267111 -NCIT:C8634 Recurrent Rectosigmoid Carcinoma 8 267112 -NCIT:C9238 Recurrent Rectal Carcinoma 8 267113 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 9 267114 -NCIT:C90506 Colorectal Cancer by AJCC v6 Stage 7 267115 -NCIT:C8513 Stage I Colorectal Cancer AJCC v6 and v7 8 267116 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 9 267117 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 9 267118 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 9 267119 -NCIT:C8514 Stage II Colorectal Cancer AJCC v6 8 267120 -NCIT:C3993 Stage II Colon Cancer AJCC v6 9 267121 -NCIT:C5015 Stage II Rectosigmoid Cancer AJCC v6 9 267122 -NCIT:C7791 Stage II Rectal Cancer AJCC v6 9 267123 -NCIT:C8515 Stage III Colorectal Cancer AJCC v6 8 267124 -NCIT:C7766 Stage III Colon Cancer AJCC v6 9 267125 -NCIT:C7792 Stage III Rectal Cancer AJCC v6 9 267126 -NCIT:C8635 Stage III Rectosigmoid Cancer AJCC v6 9 267127 -NCIT:C8516 Stage IV Colorectal Cancer AJCC v6 8 267128 -NCIT:C3994 Stage IV Colon Cancer AJCC v6 9 267129 -NCIT:C8412 Stage IV Rectal Cancer AJCC v6 9 267130 -NCIT:C8636 Stage IV Rectosigmoid Cancer AJCC v6 9 267131 -NCIT:C8932 Stage 0 Colorectal Cancer AJCC v6 and v7 8 267132 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 9 267133 -NCIT:C4594 Cecum Carcinoma In Situ 10 267134 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 9 267135 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 9 267136 -NCIT:C90507 Colon Cancer by AJCC v6 Stage 8 267137 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 9 267138 -NCIT:C4594 Cecum Carcinoma In Situ 10 267139 -NCIT:C3993 Stage II Colon Cancer AJCC v6 9 267140 -NCIT:C3994 Stage IV Colon Cancer AJCC v6 9 267141 -NCIT:C7766 Stage III Colon Cancer AJCC v6 9 267142 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 9 267143 -NCIT:C90508 Rectal Cancer by AJCC v6 Stage 8 267144 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 9 267145 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 9 267146 -NCIT:C7791 Stage II Rectal Cancer AJCC v6 9 267147 -NCIT:C7792 Stage III Rectal Cancer AJCC v6 9 267148 -NCIT:C8412 Stage IV Rectal Cancer AJCC v6 9 267149 -NCIT:C90509 Rectosigmoid Cancer by AJCC v6 Stage 8 267150 -NCIT:C5015 Stage II Rectosigmoid Cancer AJCC v6 9 267151 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 9 267152 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 9 267153 -NCIT:C8635 Stage III Rectosigmoid Cancer AJCC v6 9 267154 -NCIT:C8636 Stage IV Rectosigmoid Cancer AJCC v6 9 267155 -NCIT:C91223 Colorectal Cancer by AJCC v7 Stage 7 267156 -NCIT:C8513 Stage I Colorectal Cancer AJCC v6 and v7 8 267157 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 9 267158 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 9 267159 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 9 267160 -NCIT:C8932 Stage 0 Colorectal Cancer AJCC v6 and v7 8 267161 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 9 267162 -NCIT:C4594 Cecum Carcinoma In Situ 10 267163 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 9 267164 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 9 267165 -NCIT:C89989 Stage II Colorectal Cancer AJCC v7 8 267166 -NCIT:C87813 Stage IIA Colorectal Cancer AJCC v7 9 267167 -NCIT:C115041 Stage IIA Colon Cancer AJCC v7 10 267168 -NCIT:C115044 Stage IIA Rectal Cancer AJCC v7 10 267169 -NCIT:C87814 Stage IIB Colorectal Cancer AJCC v7 9 267170 -NCIT:C115042 Stage IIB Colon Cancer AJCC v7 10 267171 -NCIT:C115045 Stage IIB Rectal Cancer AJCC v7 10 267172 -NCIT:C87815 Stage IIC Colorectal Cancer AJCC v7 9 267173 -NCIT:C115043 Stage IIC Colon Cancer AJCC v7 10 267174 -NCIT:C115046 Stage IIC Rectal Cancer AJCC v7 10 267175 -NCIT:C89990 Stage II Colon Cancer AJCC v7 9 267176 -NCIT:C115041 Stage IIA Colon Cancer AJCC v7 10 267177 -NCIT:C115042 Stage IIB Colon Cancer AJCC v7 10 267178 -NCIT:C115043 Stage IIC Colon Cancer AJCC v7 10 267179 -NCIT:C89991 Stage II Rectal Cancer AJCC v7 9 267180 -NCIT:C115044 Stage IIA Rectal Cancer AJCC v7 10 267181 -NCIT:C115045 Stage IIB Rectal Cancer AJCC v7 10 267182 -NCIT:C115046 Stage IIC Rectal Cancer AJCC v7 10 267183 -NCIT:C89992 Stage II Rectosigmoid Cancer AJCC v7 9 267184 -NCIT:C89994 Stage III Colorectal Cancer AJCC v7 8 267185 -NCIT:C87816 Stage IIIA Colorectal Cancer AJCC v7 9 267186 -NCIT:C115047 Stage IIIA Colon Cancer AJCC v7 10 267187 -NCIT:C115050 Stage IIIA Rectal Cancer AJCC v7 10 267188 -NCIT:C87817 Stage IIIB Colorectal Cancer AJCC v7 9 267189 -NCIT:C115048 Stage IIIB Colon Cancer AJCC v7 10 267190 -NCIT:C115051 Stage IIIB Rectal Cancer AJCC v7 10 267191 -NCIT:C87818 Stage IIIC Colorectal Cancer AJCC v7 9 267192 -NCIT:C115049 Stage IIIC Colon Cancer AJCC v7 10 267193 -NCIT:C115052 Stage IIIC Rectal Cancer AJCC v7 10 267194 -NCIT:C89995 Stage III Colon Cancer AJCC v7 9 267195 -NCIT:C115047 Stage IIIA Colon Cancer AJCC v7 10 267196 -NCIT:C115048 Stage IIIB Colon Cancer AJCC v7 10 267197 -NCIT:C115049 Stage IIIC Colon Cancer AJCC v7 10 267198 -NCIT:C89996 Stage III Rectal Cancer AJCC v7 9 267199 -NCIT:C115050 Stage IIIA Rectal Cancer AJCC v7 10 267200 -NCIT:C115051 Stage IIIB Rectal Cancer AJCC v7 10 267201 -NCIT:C115052 Stage IIIC Rectal Cancer AJCC v7 10 267202 -NCIT:C89997 Stage III Rectosigmoid Cancer AJCC v7 9 267203 -NCIT:C89998 Stage IV Colorectal Cancer AJCC v7 8 267204 -NCIT:C87819 Stage IVA Colorectal Cancer AJCC v7 9 267205 -NCIT:C115053 Stage IVA Colon Cancer AJCC v7 10 267206 -NCIT:C115055 Stage IVA Rectal Cancer AJCC v7 10 267207 -NCIT:C87820 Stage IVB Colorectal Cancer AJCC v7 9 267208 -NCIT:C115054 Stage IVB Colon Cancer AJCC v7 10 267209 -NCIT:C115056 Stage IVB Rectal Cancer AJCC v7 10 267210 -NCIT:C89999 Stage IV Colon Cancer AJCC v7 9 267211 -NCIT:C115053 Stage IVA Colon Cancer AJCC v7 10 267212 -NCIT:C115054 Stage IVB Colon Cancer AJCC v7 10 267213 -NCIT:C90016 Stage IV Rectal Cancer AJCC v7 9 267214 -NCIT:C115055 Stage IVA Rectal Cancer AJCC v7 10 267215 -NCIT:C115056 Stage IVB Rectal Cancer AJCC v7 10 267216 -NCIT:C90019 Stage IV Rectosigmoid Cancer AJCC v7 9 267217 -NCIT:C91224 Colon Cancer by AJCC v7 Stage 8 267218 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 9 267219 -NCIT:C4594 Cecum Carcinoma In Situ 10 267220 -NCIT:C89990 Stage II Colon Cancer AJCC v7 9 267221 -NCIT:C115041 Stage IIA Colon Cancer AJCC v7 10 267222 -NCIT:C115042 Stage IIB Colon Cancer AJCC v7 10 267223 -NCIT:C115043 Stage IIC Colon Cancer AJCC v7 10 267224 -NCIT:C89995 Stage III Colon Cancer AJCC v7 9 267225 -NCIT:C115047 Stage IIIA Colon Cancer AJCC v7 10 267226 -NCIT:C115048 Stage IIIB Colon Cancer AJCC v7 10 267227 -NCIT:C115049 Stage IIIC Colon Cancer AJCC v7 10 267228 -NCIT:C89999 Stage IV Colon Cancer AJCC v7 9 267229 -NCIT:C115053 Stage IVA Colon Cancer AJCC v7 10 267230 -NCIT:C115054 Stage IVB Colon Cancer AJCC v7 10 267231 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 9 267232 -NCIT:C91225 Rectal Cancer by AJCC v7 Stage 8 267233 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 9 267234 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 9 267235 -NCIT:C89991 Stage II Rectal Cancer AJCC v7 9 267236 -NCIT:C115044 Stage IIA Rectal Cancer AJCC v7 10 267237 -NCIT:C115045 Stage IIB Rectal Cancer AJCC v7 10 267238 -NCIT:C115046 Stage IIC Rectal Cancer AJCC v7 10 267239 -NCIT:C89996 Stage III Rectal Cancer AJCC v7 9 267240 -NCIT:C115050 Stage IIIA Rectal Cancer AJCC v7 10 267241 -NCIT:C115051 Stage IIIB Rectal Cancer AJCC v7 10 267242 -NCIT:C115052 Stage IIIC Rectal Cancer AJCC v7 10 267243 -NCIT:C90016 Stage IV Rectal Cancer AJCC v7 9 267244 -NCIT:C115055 Stage IVA Rectal Cancer AJCC v7 10 267245 -NCIT:C115056 Stage IVB Rectal Cancer AJCC v7 10 267246 -NCIT:C91226 Rectosigmoid Cancer by AJCC v7 Stage 8 267247 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 9 267248 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 9 267249 -NCIT:C89992 Stage II Rectosigmoid Cancer AJCC v7 9 267250 -NCIT:C89997 Stage III Rectosigmoid Cancer AJCC v7 9 267251 -NCIT:C90019 Stage IV Rectosigmoid Cancer AJCC v7 9 267252 -NCIT:C9382 Rectal Carcinoma 7 267253 -NCIT:C118823 Childhood Rectal Carcinoma 8 267254 -NCIT:C134258 Rectal Cancer by AJCC v8 Stage 8 267255 -NCIT:C134291 Stage 0 Rectal Cancer AJCC v8 9 267256 -NCIT:C134292 Stage I Rectal Cancer AJCC v8 9 267257 -NCIT:C134293 Stage II Rectal Cancer AJCC v8 9 267258 -NCIT:C134294 Stage IIA Rectal Cancer AJCC v8 10 267259 -NCIT:C134295 Stage IIB Rectal Cancer AJCC v8 10 267260 -NCIT:C134296 Stage IIC Rectal Cancer AJCC v8 10 267261 -NCIT:C134297 Stage III Rectal Cancer AJCC v8 9 267262 -NCIT:C134298 Stage IIIA Rectal Cancer AJCC v8 10 267263 -NCIT:C134299 Stage IIIB Rectal Cancer AJCC v8 10 267264 -NCIT:C134300 Stage IIIC Rectal Cancer AJCC v8 10 267265 -NCIT:C134301 Stage IV Rectal Cancer AJCC v8 9 267266 -NCIT:C134302 Stage IVA Rectal Cancer AJCC v8 10 267267 -NCIT:C134303 Stage IVB Rectal Cancer AJCC v8 10 267268 -NCIT:C134304 Stage IVC Rectal Cancer AJCC v8 10 267269 -NCIT:C156098 Metastatic Rectal Carcinoma 8 267270 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 9 267271 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 267272 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 267273 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 267274 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 267275 -NCIT:C170777 Advanced Rectal Carcinoma 9 267276 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 267277 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 267278 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 267279 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 267280 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 267281 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 267282 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 9 267283 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 267284 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 267285 -NCIT:C162156 Refractory Rectal Carcinoma 8 267286 -NCIT:C162157 Refractory Rectal Adenocarcinoma 9 267287 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 9 267288 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 8 267289 -NCIT:C177776 Microsatellite Stable Rectal Carcinoma 8 267290 -NCIT:C43594 Rectal Adenosquamous Carcinoma 8 267291 -NCIT:C5554 Rectal Squamous Cell Carcinoma 8 267292 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 9 267293 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 267294 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 267295 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 9 267296 -NCIT:C5555 Rectal Cloacogenic Carcinoma 9 267297 -NCIT:C5556 Rectal Sarcomatoid Carcinoma 8 267298 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 8 267299 -NCIT:C7974 Rectal Undifferentiated Carcinoma 8 267300 -NCIT:C90508 Rectal Cancer by AJCC v6 Stage 8 267301 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 9 267302 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 9 267303 -NCIT:C7791 Stage II Rectal Cancer AJCC v6 9 267304 -NCIT:C7792 Stage III Rectal Cancer AJCC v6 9 267305 -NCIT:C8412 Stage IV Rectal Cancer AJCC v6 9 267306 -NCIT:C91225 Rectal Cancer by AJCC v7 Stage 8 267307 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 9 267308 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 9 267309 -NCIT:C89991 Stage II Rectal Cancer AJCC v7 9 267310 -NCIT:C115044 Stage IIA Rectal Cancer AJCC v7 10 267311 -NCIT:C115045 Stage IIB Rectal Cancer AJCC v7 10 267312 -NCIT:C115046 Stage IIC Rectal Cancer AJCC v7 10 267313 -NCIT:C89996 Stage III Rectal Cancer AJCC v7 9 267314 -NCIT:C115050 Stage IIIA Rectal Cancer AJCC v7 10 267315 -NCIT:C115051 Stage IIIB Rectal Cancer AJCC v7 10 267316 -NCIT:C115052 Stage IIIC Rectal Cancer AJCC v7 10 267317 -NCIT:C90016 Stage IV Rectal Cancer AJCC v7 9 267318 -NCIT:C115055 Stage IVA Rectal Cancer AJCC v7 10 267319 -NCIT:C115056 Stage IVB Rectal Cancer AJCC v7 10 267320 -NCIT:C9238 Recurrent Rectal Carcinoma 8 267321 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 9 267322 -NCIT:C9383 Rectal Adenocarcinoma 8 267323 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 267324 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 267325 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 267326 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 267327 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 9 267328 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 267329 -NCIT:C162157 Refractory Rectal Adenocarcinoma 9 267330 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 9 267331 -NCIT:C60640 Rectal Medullary Carcinoma 9 267332 -NCIT:C7973 Rectal Mucinous Adenocarcinoma 9 267333 -NCIT:C9168 Rectal Signet Ring Cell Adenocarcinoma 9 267334 -NCIT:C9449 Grade 3 Rectal Adenocarcinoma 9 267335 -NCIT:C9450 Grade 2 Rectal Adenocarcinoma 9 267336 -NCIT:C9451 Grade 1 Rectal Adenocarcinoma 9 267337 -NCIT:C96487 Rectal Serrated Adenocarcinoma 9 267338 -NCIT:C96490 Rectal Cribriform Comedo-Type Adenocarcinoma 9 267339 -NCIT:C96493 Rectal Micropapillary Adenocarcinoma 9 267340 -NCIT:C96156 Colorectal Neuroendocrine Carcinoma 7 267341 -NCIT:C43587 Colorectal Small Cell Neuroendocrine Carcinoma 8 267342 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 9 267343 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 9 267344 -NCIT:C96157 Colorectal Large Cell Neuroendocrine Carcinoma 8 267345 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 9 267346 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 9 267347 -NCIT:C96158 Colorectal Mixed Adenoneuroendocrine Carcinoma 7 267348 -NCIT:C96494 Colorectal Sarcomatoid Carcinoma 7 267349 -NCIT:C5556 Rectal Sarcomatoid Carcinoma 8 267350 -NCIT:C4581 Metastatic Malignant Neoplasm in the Large Intestine 6 267351 -NCIT:C7426 Metastatic Malignant Neoplasm in the Rectum 7 267352 -NCIT:C188076 Metastatic Carcinoma in the Rectum 8 267353 -NCIT:C8411 Metastatic Malignant Neoplasm in the Colon 7 267354 -NCIT:C7418 Malignant Rectal Neoplasm 6 267355 -NCIT:C4640 Rectal Melanoma 7 267356 -NCIT:C188079 Rectal Epithelioid Cell Melanoma 8 267357 -NCIT:C5548 Rectal Sarcoma 7 267358 -NCIT:C5549 Rectal Leiomyosarcoma 8 267359 -NCIT:C5550 Rectal Kaposi Sarcoma 8 267360 -NCIT:C5627 Rectal Rhabdomyosarcoma 8 267361 -NCIT:C5553 Rectal Lymphoma 7 267362 -NCIT:C7426 Metastatic Malignant Neoplasm in the Rectum 7 267363 -NCIT:C188076 Metastatic Carcinoma in the Rectum 8 267364 -NCIT:C9382 Rectal Carcinoma 7 267365 -NCIT:C118823 Childhood Rectal Carcinoma 8 267366 -NCIT:C134258 Rectal Cancer by AJCC v8 Stage 8 267367 -NCIT:C134291 Stage 0 Rectal Cancer AJCC v8 9 267368 -NCIT:C134292 Stage I Rectal Cancer AJCC v8 9 267369 -NCIT:C134293 Stage II Rectal Cancer AJCC v8 9 267370 -NCIT:C134294 Stage IIA Rectal Cancer AJCC v8 10 267371 -NCIT:C134295 Stage IIB Rectal Cancer AJCC v8 10 267372 -NCIT:C134296 Stage IIC Rectal Cancer AJCC v8 10 267373 -NCIT:C134297 Stage III Rectal Cancer AJCC v8 9 267374 -NCIT:C134298 Stage IIIA Rectal Cancer AJCC v8 10 267375 -NCIT:C134299 Stage IIIB Rectal Cancer AJCC v8 10 267376 -NCIT:C134300 Stage IIIC Rectal Cancer AJCC v8 10 267377 -NCIT:C134301 Stage IV Rectal Cancer AJCC v8 9 267378 -NCIT:C134302 Stage IVA Rectal Cancer AJCC v8 10 267379 -NCIT:C134303 Stage IVB Rectal Cancer AJCC v8 10 267380 -NCIT:C134304 Stage IVC Rectal Cancer AJCC v8 10 267381 -NCIT:C156098 Metastatic Rectal Carcinoma 8 267382 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 9 267383 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 267384 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 267385 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 267386 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 267387 -NCIT:C170777 Advanced Rectal Carcinoma 9 267388 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 267389 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 267390 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 267391 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 267392 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 267393 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 267394 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 9 267395 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 267396 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 267397 -NCIT:C162156 Refractory Rectal Carcinoma 8 267398 -NCIT:C162157 Refractory Rectal Adenocarcinoma 9 267399 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 9 267400 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 8 267401 -NCIT:C177776 Microsatellite Stable Rectal Carcinoma 8 267402 -NCIT:C43594 Rectal Adenosquamous Carcinoma 8 267403 -NCIT:C5554 Rectal Squamous Cell Carcinoma 8 267404 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 9 267405 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 267406 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 267407 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 9 267408 -NCIT:C5555 Rectal Cloacogenic Carcinoma 9 267409 -NCIT:C5556 Rectal Sarcomatoid Carcinoma 8 267410 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 8 267411 -NCIT:C7974 Rectal Undifferentiated Carcinoma 8 267412 -NCIT:C90508 Rectal Cancer by AJCC v6 Stage 8 267413 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 9 267414 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 9 267415 -NCIT:C7791 Stage II Rectal Cancer AJCC v6 9 267416 -NCIT:C7792 Stage III Rectal Cancer AJCC v6 9 267417 -NCIT:C8412 Stage IV Rectal Cancer AJCC v6 9 267418 -NCIT:C91225 Rectal Cancer by AJCC v7 Stage 8 267419 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 9 267420 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 9 267421 -NCIT:C89991 Stage II Rectal Cancer AJCC v7 9 267422 -NCIT:C115044 Stage IIA Rectal Cancer AJCC v7 10 267423 -NCIT:C115045 Stage IIB Rectal Cancer AJCC v7 10 267424 -NCIT:C115046 Stage IIC Rectal Cancer AJCC v7 10 267425 -NCIT:C89996 Stage III Rectal Cancer AJCC v7 9 267426 -NCIT:C115050 Stage IIIA Rectal Cancer AJCC v7 10 267427 -NCIT:C115051 Stage IIIB Rectal Cancer AJCC v7 10 267428 -NCIT:C115052 Stage IIIC Rectal Cancer AJCC v7 10 267429 -NCIT:C90016 Stage IV Rectal Cancer AJCC v7 9 267430 -NCIT:C115055 Stage IVA Rectal Cancer AJCC v7 10 267431 -NCIT:C115056 Stage IVB Rectal Cancer AJCC v7 10 267432 -NCIT:C9238 Recurrent Rectal Carcinoma 8 267433 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 9 267434 -NCIT:C9383 Rectal Adenocarcinoma 8 267435 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 267436 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 267437 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 267438 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 267439 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 9 267440 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 267441 -NCIT:C162157 Refractory Rectal Adenocarcinoma 9 267442 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 9 267443 -NCIT:C60640 Rectal Medullary Carcinoma 9 267444 -NCIT:C7973 Rectal Mucinous Adenocarcinoma 9 267445 -NCIT:C9168 Rectal Signet Ring Cell Adenocarcinoma 9 267446 -NCIT:C9449 Grade 3 Rectal Adenocarcinoma 9 267447 -NCIT:C9450 Grade 2 Rectal Adenocarcinoma 9 267448 -NCIT:C9451 Grade 1 Rectal Adenocarcinoma 9 267449 -NCIT:C96487 Rectal Serrated Adenocarcinoma 9 267450 -NCIT:C96490 Rectal Cribriform Comedo-Type Adenocarcinoma 9 267451 -NCIT:C96493 Rectal Micropapillary Adenocarcinoma 9 267452 -NCIT:C7420 Malignant Rectosigmoid Neoplasm 6 267453 -NCIT:C7421 Rectosigmoid Carcinoma 7 267454 -NCIT:C43584 Rectosigmoid Adenocarcinoma 8 267455 -NCIT:C43592 Rectosigmoid Mucinous Adenocarcinoma 9 267456 -NCIT:C43593 Rectosigmoid Signet Ring Cell Carcinoma 9 267457 -NCIT:C8634 Recurrent Rectosigmoid Carcinoma 8 267458 -NCIT:C90509 Rectosigmoid Cancer by AJCC v6 Stage 8 267459 -NCIT:C5015 Stage II Rectosigmoid Cancer AJCC v6 9 267460 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 9 267461 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 9 267462 -NCIT:C8635 Stage III Rectosigmoid Cancer AJCC v6 9 267463 -NCIT:C8636 Stage IV Rectosigmoid Cancer AJCC v6 9 267464 -NCIT:C91226 Rectosigmoid Cancer by AJCC v7 Stage 8 267465 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 9 267466 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 9 267467 -NCIT:C89992 Stage II Rectosigmoid Cancer AJCC v7 9 267468 -NCIT:C89997 Stage III Rectosigmoid Cancer AJCC v7 9 267469 -NCIT:C90019 Stage IV Rectosigmoid Cancer AJCC v7 9 267470 -NCIT:C9242 Malignant Colon Neoplasm 6 267471 -NCIT:C4793 Colon Lymphoma 7 267472 -NCIT:C4950 Colon Non-Hodgkin Lymphoma 8 267473 -NCIT:C27411 Colon Mantle Cell Lymphoma 9 267474 -NCIT:C27465 Colon Burkitt Lymphoma 9 267475 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 9 267476 -NCIT:C5521 Cecum Non-Hodgkin Lymphoma 9 267477 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 9 267478 -NCIT:C5499 Colon Hodgkin Lymphoma 8 267479 -NCIT:C5515 Cecum Lymphoma 8 267480 -NCIT:C5521 Cecum Non-Hodgkin Lymphoma 9 267481 -NCIT:C4910 Colon Carcinoma 7 267482 -NCIT:C134251 Colon Cancer by AJCC v8 Stage 8 267483 -NCIT:C134271 Stage 0 Colon Cancer AJCC v8 9 267484 -NCIT:C134273 Stage I Colon Cancer AJCC v8 9 267485 -NCIT:C134274 Stage II Colon Cancer AJCC v8 9 267486 -NCIT:C134280 Stage IIA Colon Cancer AJCC v8 10 267487 -NCIT:C134281 Stage IIB Colon Cancer AJCC v8 10 267488 -NCIT:C134282 Stage IIC Colon Cancer AJCC v8 10 267489 -NCIT:C134283 Stage III Colon Cancer AJCC v8 9 267490 -NCIT:C134284 Stage IIIA Colon Cancer AJCC v8 10 267491 -NCIT:C134285 Stage IIIB Colon Cancer AJCC v8 10 267492 -NCIT:C134286 Stage IIIC Colon Cancer AJCC v8 10 267493 -NCIT:C134287 Stage IV Colon Cancer AJCC v8 9 267494 -NCIT:C134288 Stage IVA Colon Cancer AJCC v8 10 267495 -NCIT:C134289 Stage IVB Colon Cancer AJCC v8 10 267496 -NCIT:C134290 Stage IVC Colon Cancer AJCC v8 10 267497 -NCIT:C153351 Refractory Colon Carcinoma 8 267498 -NCIT:C162155 Refractory Colon Adenocarcinoma 9 267499 -NCIT:C156097 Metastatic Colon Carcinoma 8 267500 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 267501 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 267502 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 267503 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 267504 -NCIT:C167238 Advanced Colon Carcinoma 9 267505 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 267506 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 267507 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 267508 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 267509 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 267510 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 267511 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 267512 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 9 267513 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 9 267514 -NCIT:C164228 Hereditary Colon Carcinoma 8 267515 -NCIT:C167237 Resectable Colon Carcinoma 8 267516 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 8 267517 -NCIT:C177680 Sigmoid Colon Carcinoma 8 267518 -NCIT:C177777 Microsatellite Stable Colon Carcinoma 8 267519 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 267520 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 267521 -NCIT:C180406 Unresectable Colon Carcinoma 8 267522 -NCIT:C162116 Unresectable Colon Adenocarcinoma 9 267523 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 267524 -NCIT:C3491 Cecum Carcinoma 8 267525 -NCIT:C4594 Cecum Carcinoma In Situ 9 267526 -NCIT:C5543 Cecum Adenocarcinoma 9 267527 -NCIT:C3998 Recurrent Colon Carcinoma 8 267528 -NCIT:C162442 Recurrent Colon Adenocarcinoma 9 267529 -NCIT:C4349 Colon Adenocarcinoma 8 267530 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 267531 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 267532 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 267533 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 267534 -NCIT:C162116 Unresectable Colon Adenocarcinoma 9 267535 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 267536 -NCIT:C162155 Refractory Colon Adenocarcinoma 9 267537 -NCIT:C162442 Recurrent Colon Adenocarcinoma 9 267538 -NCIT:C38760 Submucosal Invasive Colon Adenocarcinoma 9 267539 -NCIT:C45429 Colon Intramucosal Adenocarcinoma 9 267540 -NCIT:C27413 Adenoma of the Colon with Intramucosal Adenocarcinoma 10 267541 -NCIT:C5543 Cecum Adenocarcinoma 9 267542 -NCIT:C60641 Colon Medullary Carcinoma 9 267543 -NCIT:C7966 Colon Mucinous Adenocarcinoma 9 267544 -NCIT:C7967 Colon Signet Ring Cell Adenocarcinoma 9 267545 -NCIT:C9452 Grade 1 Colon Adenocarcinoma 9 267546 -NCIT:C9453 Grade 2 Colon Adenocarcinoma 9 267547 -NCIT:C9454 Grade 3 Colon Adenocarcinoma 9 267548 -NCIT:C96486 Colon Serrated Adenocarcinoma 9 267549 -NCIT:C96489 Colon Cribriform Comedo-Type Adenocarcinoma 9 267550 -NCIT:C96492 Colon Micropapillary Adenocarcinoma 9 267551 -NCIT:C5490 Colon Squamous Cell Carcinoma 8 267552 -NCIT:C5491 Colon Adenosquamous Carcinoma 8 267553 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 8 267554 -NCIT:C7100 Colon Undifferentiated Carcinoma 8 267555 -NCIT:C90507 Colon Cancer by AJCC v6 Stage 8 267556 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 9 267557 -NCIT:C4594 Cecum Carcinoma In Situ 10 267558 -NCIT:C3993 Stage II Colon Cancer AJCC v6 9 267559 -NCIT:C3994 Stage IV Colon Cancer AJCC v6 9 267560 -NCIT:C7766 Stage III Colon Cancer AJCC v6 9 267561 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 9 267562 -NCIT:C91224 Colon Cancer by AJCC v7 Stage 8 267563 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 9 267564 -NCIT:C4594 Cecum Carcinoma In Situ 10 267565 -NCIT:C89990 Stage II Colon Cancer AJCC v7 9 267566 -NCIT:C115041 Stage IIA Colon Cancer AJCC v7 10 267567 -NCIT:C115042 Stage IIB Colon Cancer AJCC v7 10 267568 -NCIT:C115043 Stage IIC Colon Cancer AJCC v7 10 267569 -NCIT:C89995 Stage III Colon Cancer AJCC v7 9 267570 -NCIT:C115047 Stage IIIA Colon Cancer AJCC v7 10 267571 -NCIT:C115048 Stage IIIB Colon Cancer AJCC v7 10 267572 -NCIT:C115049 Stage IIIC Colon Cancer AJCC v7 10 267573 -NCIT:C89999 Stage IV Colon Cancer AJCC v7 9 267574 -NCIT:C115053 Stage IVA Colon Cancer AJCC v7 10 267575 -NCIT:C115054 Stage IVB Colon Cancer AJCC v7 10 267576 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 9 267577 -NCIT:C5495 Colon Sarcoma 7 267578 -NCIT:C156279 Colon Liposarcoma 8 267579 -NCIT:C5494 Colon Leiomyosarcoma 8 267580 -NCIT:C5516 Colon Kaposi Sarcoma 8 267581 -NCIT:C8411 Metastatic Malignant Neoplasm in the Colon 7 267582 -NCIT:C9329 Malignant Cecum Neoplasm 7 267583 -NCIT:C3491 Cecum Carcinoma 8 267584 -NCIT:C4594 Cecum Carcinoma In Situ 9 267585 -NCIT:C5543 Cecum Adenocarcinoma 9 267586 -NCIT:C5515 Cecum Lymphoma 8 267587 -NCIT:C5521 Cecum Non-Hodgkin Lymphoma 9 267588 -NCIT:C96498 Colorectal Lymphoma 6 267589 -NCIT:C4793 Colon Lymphoma 7 267590 -NCIT:C4950 Colon Non-Hodgkin Lymphoma 8 267591 -NCIT:C27411 Colon Mantle Cell Lymphoma 9 267592 -NCIT:C27465 Colon Burkitt Lymphoma 9 267593 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 9 267594 -NCIT:C5521 Cecum Non-Hodgkin Lymphoma 9 267595 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 9 267596 -NCIT:C5499 Colon Hodgkin Lymphoma 8 267597 -NCIT:C5515 Cecum Lymphoma 8 267598 -NCIT:C5521 Cecum Non-Hodgkin Lymphoma 9 267599 -NCIT:C5553 Rectal Lymphoma 7 267600 -NCIT:C96499 Colorectal Non-Hodgkin Lymphoma 7 267601 -NCIT:C4950 Colon Non-Hodgkin Lymphoma 8 267602 -NCIT:C27411 Colon Mantle Cell Lymphoma 9 267603 -NCIT:C27465 Colon Burkitt Lymphoma 9 267604 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 9 267605 -NCIT:C5521 Cecum Non-Hodgkin Lymphoma 9 267606 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 9 267607 -NCIT:C96502 Colorectal Burkitt Lymphoma 8 267608 -NCIT:C27465 Colon Burkitt Lymphoma 9 267609 -NCIT:C96503 Colorectal Diffuse Large B-Cell Lymphoma 8 267610 -NCIT:C96501 Colorectal High Grade B-Cell Lymphoma, Not Otherwise Specified 9 267611 -NCIT:C96504 Colon Diffuse Large B-Cell Lymphoma 9 267612 -NCIT:C96505 Colorectal Mantle Cell Lymphoma 8 267613 -NCIT:C27411 Colon Mantle Cell Lymphoma 9 267614 -NCIT:C96506 Colorectal Mucosa-Associated Lymphoid Tissue Lymphoma 8 267615 -NCIT:C5498 Colon Mucosa-Associated Lymphoid Tissue Lymphoma 9 267616 -NCIT:C96500 Colorectal Hodgkin Lymphoma 7 267617 -NCIT:C5499 Colon Hodgkin Lymphoma 8 267618 -NCIT:C96508 Colorectal Sarcoma 6 267619 -NCIT:C5495 Colon Sarcoma 7 267620 -NCIT:C156279 Colon Liposarcoma 8 267621 -NCIT:C5494 Colon Leiomyosarcoma 8 267622 -NCIT:C5516 Colon Kaposi Sarcoma 8 267623 -NCIT:C5548 Rectal Sarcoma 7 267624 -NCIT:C5549 Rectal Leiomyosarcoma 8 267625 -NCIT:C5550 Rectal Kaposi Sarcoma 8 267626 -NCIT:C5627 Rectal Rhabdomyosarcoma 8 267627 -NCIT:C96509 Colorectal Leiomyosarcoma 7 267628 -NCIT:C5494 Colon Leiomyosarcoma 8 267629 -NCIT:C5549 Rectal Leiomyosarcoma 8 267630 -NCIT:C96510 Colorectal Kaposi Sarcoma 7 267631 -NCIT:C5516 Colon Kaposi Sarcoma 8 267632 -NCIT:C5550 Rectal Kaposi Sarcoma 8 267633 -NCIT:C96511 Colorectal Angiosarcoma 7 267634 -NCIT:C7523 Malignant Small Intestinal Neoplasm 5 267635 -NCIT:C118826 Childhood Malignant Small Intestinal Neoplasm 6 267636 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 7 267637 -NCIT:C123933 Childhood Small Intestinal Carcinoma 7 267638 -NCIT:C132260 Small Intestinal Myeloid Sarcoma 6 267639 -NCIT:C170919 Malignant Jejunal Neoplasm 6 267640 -NCIT:C181157 Jejunal Carcinoma 7 267641 -NCIT:C181158 Jejunal Adenocarcinoma 8 267642 -NCIT:C188067 Jejunal Melanoma 7 267643 -NCIT:C176678 Metastatic Malignant Small Intestinal Neoplasm 6 267644 -NCIT:C176679 Advanced Malignant Small Intestinal Neoplasm 7 267645 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 267646 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 267647 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 267648 -NCIT:C8637 Metastatic Small Intestinal Carcinoma 7 267649 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 8 267650 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 267651 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 267652 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 267653 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 267654 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 267655 -NCIT:C8934 Metastatic Small Intestinal Adenocarcinoma 8 267656 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 267657 -NCIT:C4007 Small Intestinal Lymphoma 6 267658 -NCIT:C5337 Small Intestinal Hodgkin Lymphoma 7 267659 -NCIT:C7231 Small Intestinal Non-Hodgkin Lymphoma 7 267660 -NCIT:C96053 Small Intestinal B-Cell Non-Hodgkin Lymphoma 8 267661 -NCIT:C27409 Small Intestinal Burkitt Lymphoma 9 267662 -NCIT:C27410 Small Intestinal Atypical Burkitt/Burkitt-Like Lymphoma 10 267663 -NCIT:C27441 Small Intestinal Mantle Cell Lymphoma 9 267664 -NCIT:C3132 Alpha Heavy Chain Disease 9 267665 -NCIT:C5635 Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 9 267666 -NCIT:C45166 Campylobacter Jejuni-Associated Small Intestinal Mucosa-Associated Lymphoid Tissue Lymphoma 10 267667 -NCIT:C96055 Small Intestinal Diffuse Large B-Cell Lymphoma 9 267668 -NCIT:C96057 Small Intestinal High Grade B-Cell Lymphoma, Not Otherwise Specified 10 267669 -NCIT:C96056 Small Intestinal Follicular Lymphoma 9 267670 -NCIT:C96054 Small Intestinal T-Cell Non-Hodgkin Lymphoma 8 267671 -NCIT:C150504 Small Intestinal Monomorphic Epitheliotropic T-Cell Lymphoma 9 267672 -NCIT:C39610 Small Intestinal Enteropathy-Associated T-Cell Lymphoma 9 267673 -NCIT:C5335 Small Intestinal Sarcoma 6 267674 -NCIT:C5336 Small Intestinal Fibrosarcoma 7 267675 -NCIT:C7085 Small Intestinal Leiomyosarcoma 7 267676 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 8 267677 -NCIT:C82972 Duodenal Extraskeletal Osteosarcoma 7 267678 -NCIT:C96059 Small Intestinal Kaposi Sarcoma 7 267679 -NCIT:C96060 Small Intestinal Angiosarcoma 7 267680 -NCIT:C7524 Metastatic Malignant Neoplasm in the Small Intestine 6 267681 -NCIT:C7724 Small Intestinal Carcinoma 6 267682 -NCIT:C123933 Childhood Small Intestinal Carcinoma 7 267683 -NCIT:C133716 Small Intestinal Cancer by AJCC v7 Stage 7 267684 -NCIT:C4892 Stage 0 Small Intestinal Cancer AJCC v7 8 267685 -NCIT:C5807 Stage I Small Intestinal Cancer AJCC v7 8 267686 -NCIT:C5808 Stage II Small Intestinal Cancer AJCC v7 8 267687 -NCIT:C87791 Stage IIA Small Intestinal Cancer AJCC v7 9 267688 -NCIT:C87792 Stage IIB Small Intestinal Cancer AJCC v7 9 267689 -NCIT:C5809 Stage III Small Intestinal Cancer AJCC v7 8 267690 -NCIT:C87793 Stage IIIA Small Intestinal Cancer AJCC v7 9 267691 -NCIT:C87795 Stage IIIB Small Intestinal Cancer AJCC v7 9 267692 -NCIT:C5810 Stage IV Small Intestinal Cancer AJCC v7 8 267693 -NCIT:C153356 Refractory Small Intestinal Carcinoma 7 267694 -NCIT:C181157 Jejunal Carcinoma 7 267695 -NCIT:C181158 Jejunal Adenocarcinoma 8 267696 -NCIT:C43534 Small Intestinal Squamous Cell Carcinoma 7 267697 -NCIT:C43535 Small Intestinal Adenosquamous Carcinoma 7 267698 -NCIT:C43537 Small Intestinal Medullary Carcinoma 7 267699 -NCIT:C43538 Small Intestinal Undifferentiated Carcinoma 7 267700 -NCIT:C4803 Duodenal Carcinoma 7 267701 -NCIT:C27323 Resectable Duodenal Carcinoma 8 267702 -NCIT:C169108 Resectable Periampullary Adenocarcinoma 9 267703 -NCIT:C7889 Duodenal Adenocarcinoma 8 267704 -NCIT:C27322 Periampullary Adenocarcinoma 9 267705 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 10 267706 -NCIT:C169108 Resectable Periampullary Adenocarcinoma 10 267707 -NCIT:C9352 Recurrent Duodenal Carcinoma 8 267708 -NCIT:C7888 Small Intestinal Adenocarcinoma 7 267709 -NCIT:C133893 Small Intestinal Adenocarcinoma by AJCC v8 Stage 8 267710 -NCIT:C133894 Stage 0 Small Intestinal Adenocarcinoma AJCC v8 9 267711 -NCIT:C133895 Stage I Small Intestinal Adenocarcinoma AJCC v8 9 267712 -NCIT:C133896 Stage II Small Intestinal Adenocarcinoma AJCC v8 9 267713 -NCIT:C133897 Stage IIA Small Intestinal Adenocarcinoma AJCC v8 10 267714 -NCIT:C133898 Stage IIB Small Intestinal Adenocarcinoma AJCC v8 10 267715 -NCIT:C133899 Stage III Small Intestinal Adenocarcinoma AJCC v8 9 267716 -NCIT:C133900 Stage IIIA Small Intestinal Adenocarcinoma AJCC v8 10 267717 -NCIT:C133901 Stage IIIB Small Intestinal Adenocarcinoma AJCC v8 10 267718 -NCIT:C133902 Stage IV Small Intestinal Adenocarcinoma AJCC v8 9 267719 -NCIT:C175516 Unresectable Small Intestinal Adenocarcinoma 8 267720 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 9 267721 -NCIT:C181158 Jejunal Adenocarcinoma 8 267722 -NCIT:C43536 Small Intestinal Mucinous Adenocarcinoma 8 267723 -NCIT:C43543 Small Intestinal Signet Ring Cell Carcinoma 8 267724 -NCIT:C7889 Duodenal Adenocarcinoma 8 267725 -NCIT:C27322 Periampullary Adenocarcinoma 9 267726 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 10 267727 -NCIT:C169108 Resectable Periampullary Adenocarcinoma 10 267728 -NCIT:C8934 Metastatic Small Intestinal Adenocarcinoma 8 267729 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 267730 -NCIT:C7894 Recurrent Small Intestinal Carcinoma 7 267731 -NCIT:C9352 Recurrent Duodenal Carcinoma 8 267732 -NCIT:C8637 Metastatic Small Intestinal Carcinoma 7 267733 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 8 267734 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 267735 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 267736 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 267737 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 267738 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 267739 -NCIT:C8934 Metastatic Small Intestinal Adenocarcinoma 8 267740 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 267741 -NCIT:C8638 Unresectable Small Intestinal Carcinoma 7 267742 -NCIT:C175516 Unresectable Small Intestinal Adenocarcinoma 8 267743 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 9 267744 -NCIT:C8639 Resectable Small Intestinal Carcinoma 7 267745 -NCIT:C27323 Resectable Duodenal Carcinoma 8 267746 -NCIT:C169108 Resectable Periampullary Adenocarcinoma 9 267747 -NCIT:C96064 Small Intestinal Neuroendocrine Carcinoma 7 267748 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 267749 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 267750 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 267751 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 267752 -NCIT:C27449 Small Intestinal Small Cell Neuroendocrine Carcinoma 8 267753 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 267754 -NCIT:C96065 Small Intestinal Large Cell Neuroendocrine Carcinoma 8 267755 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 267756 -NCIT:C96066 Small Intestinal Mixed Adenoneuroendocrine Carcinoma 7 267757 -NCIT:C9328 Malignant Duodenal Neoplasm 6 267758 -NCIT:C4803 Duodenal Carcinoma 7 267759 -NCIT:C27323 Resectable Duodenal Carcinoma 8 267760 -NCIT:C169108 Resectable Periampullary Adenocarcinoma 9 267761 -NCIT:C7889 Duodenal Adenocarcinoma 8 267762 -NCIT:C27322 Periampullary Adenocarcinoma 9 267763 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 10 267764 -NCIT:C169108 Resectable Periampullary Adenocarcinoma 10 267765 -NCIT:C9352 Recurrent Duodenal Carcinoma 8 267766 -NCIT:C82972 Duodenal Extraskeletal Osteosarcoma 7 267767 -NCIT:C9263 Recurrent Malignant Duodenal Neoplasm 7 267768 -NCIT:C9352 Recurrent Duodenal Carcinoma 8 267769 -NCIT:C96063 Intestinal Neuroendocrine Carcinoma 5 267770 -NCIT:C96064 Small Intestinal Neuroendocrine Carcinoma 6 267771 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 7 267772 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 267773 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 267774 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 267775 -NCIT:C27449 Small Intestinal Small Cell Neuroendocrine Carcinoma 7 267776 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 267777 -NCIT:C96065 Small Intestinal Large Cell Neuroendocrine Carcinoma 7 267778 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 267779 -NCIT:C96156 Colorectal Neuroendocrine Carcinoma 6 267780 -NCIT:C43587 Colorectal Small Cell Neuroendocrine Carcinoma 7 267781 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 8 267782 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 8 267783 -NCIT:C96157 Colorectal Large Cell Neuroendocrine Carcinoma 7 267784 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 8 267785 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 8 267786 -NCIT:C7091 Mucosal Melanoma of the Digestive System 4 267787 -NCIT:C178519 Gastric Melanoma 5 267788 -NCIT:C188067 Jejunal Melanoma 5 267789 -NCIT:C4639 Anal Melanoma 5 267790 -NCIT:C4640 Rectal Melanoma 5 267791 -NCIT:C188079 Rectal Epithelioid Cell Melanoma 6 267792 -NCIT:C5707 Esophageal Melanoma 5 267793 -NCIT:C5735 Gallbladder Melanoma 5 267794 -NCIT:C7379 Malignant Anal Neoplasm 4 267795 -NCIT:C4639 Anal Melanoma 5 267796 -NCIT:C5047 AIDS-Related Malignant Anal Neoplasm 5 267797 -NCIT:C7465 AIDS-Related Anal Non-Hodgkin Lymphoma 6 267798 -NCIT:C9278 AIDS-Related Anal Carcinoma 6 267799 -NCIT:C133095 AIDS-Related Anal Canal Carcinoma 7 267800 -NCIT:C27282 Stage 0 AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 267801 -NCIT:C27283 Stage I AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 267802 -NCIT:C27284 Stage II AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 267803 -NCIT:C27285 Stage III AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 267804 -NCIT:C27286 Stage IV AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 267805 -NCIT:C9249 Recurrent AIDS-Related Anal Canal Carcinoma 8 267806 -NCIT:C5601 Anal Lymphoma 5 267807 -NCIT:C7465 AIDS-Related Anal Non-Hodgkin Lymphoma 6 267808 -NCIT:C5611 Anal Sarcoma 5 267809 -NCIT:C5599 Anal Leiomyosarcoma 6 267810 -NCIT:C5602 Anal Kaposi Sarcoma 6 267811 -NCIT:C5610 Anal Rhabdomyosarcoma 6 267812 -NCIT:C7460 Metastatic Malignant Neoplasm in the Anus 5 267813 -NCIT:C9291 Anal Carcinoma 5 267814 -NCIT:C133794 Anal Cancer by AJCC v8 Stage 6 267815 -NCIT:C133795 Stage 0 Anal Cancer AJCC v8 7 267816 -NCIT:C157575 Anal Intraepithelial Neoplasia 3 8 267817 -NCIT:C133796 Stage I Anal Cancer AJCC v8 7 267818 -NCIT:C133797 Stage II Anal Cancer AJCC v8 7 267819 -NCIT:C133798 Stage IIA Anal Cancer AJCC v8 8 267820 -NCIT:C133799 Stage IIB Anal Cancer AJCC v8 8 267821 -NCIT:C133800 Stage III Anal Cancer AJCC v8 7 267822 -NCIT:C133801 Stage IIIA Anal Cancer AJCC v8 8 267823 -NCIT:C133802 Stage IIIB Anal Cancer AJCC v8 8 267824 -NCIT:C133803 Stage IIIC Anal Cancer AJCC v8 8 267825 -NCIT:C133804 Stage IV Anal Cancer AJCC v8 7 267826 -NCIT:C137857 Refractory Anal Carcinoma 6 267827 -NCIT:C173334 Refractory Anal Canal Squamous Cell Carcinoma 7 267828 -NCIT:C167354 Microinvasive Anal Carcinoma 6 267829 -NCIT:C170514 Metastatic Anal Carcinoma 6 267830 -NCIT:C168977 Locally Advanced Anal Carcinoma 7 267831 -NCIT:C169103 Metastatic Anal Squamous Cell Carcinoma 7 267832 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 267833 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 267834 -NCIT:C170515 Advanced Anal Carcinoma 7 267835 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 8 267836 -NCIT:C5612 Metastatic Anal Canal Carcinoma 7 267837 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 267838 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 267839 -NCIT:C5600 Anal Adenocarcinoma 6 267840 -NCIT:C153575 Recurrent Anal Adenocarcinoma 7 267841 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 8 267842 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 8 267843 -NCIT:C5598 Anal Paget Disease 7 267844 -NCIT:C7476 Anal Margin Paget Disease 8 267845 -NCIT:C7477 Anal Canal Paget Disease 8 267846 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 9 267847 -NCIT:C7471 Anal Canal Adenocarcinoma 7 267848 -NCIT:C5606 Anal Mucinous Adenocarcinoma 8 267849 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 9 267850 -NCIT:C7477 Anal Canal Paget Disease 8 267851 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 9 267852 -NCIT:C7474 Anal Extramucosal (Perianal) Adenocarcinoma 7 267853 -NCIT:C5609 Anal Glands Adenocarcinoma 8 267854 -NCIT:C7475 Anal Adenocarcinoma within Anorectal Fistula 8 267855 -NCIT:C7472 Anal Margin Carcinoma 6 267856 -NCIT:C6925 Anal Margin Squamous Cell Carcinoma 7 267857 -NCIT:C7473 Anal Margin Basal Cell Carcinoma 7 267858 -NCIT:C7476 Anal Margin Paget Disease 7 267859 -NCIT:C7489 Anal Canal Carcinoma 6 267860 -NCIT:C133095 AIDS-Related Anal Canal Carcinoma 7 267861 -NCIT:C27282 Stage 0 AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 267862 -NCIT:C27283 Stage I AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 267863 -NCIT:C27284 Stage II AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 267864 -NCIT:C27285 Stage III AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 267865 -NCIT:C27286 Stage IV AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 267866 -NCIT:C9249 Recurrent AIDS-Related Anal Canal Carcinoma 8 267867 -NCIT:C133787 Anal Canal Cancer by AJCC v6 and v7 Stage 7 267868 -NCIT:C6873 Stage IV Anal Canal Cancer AJCC v6 and v7 8 267869 -NCIT:C27286 Stage IV AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 267870 -NCIT:C7775 Stage II Anal Canal Cancer AJCC v6 and v7 8 267871 -NCIT:C27284 Stage II AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 267872 -NCIT:C7776 Stage III Anal Canal Cancer AJCC v6 and v7 8 267873 -NCIT:C27285 Stage III AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 267874 -NCIT:C5925 Stage IIIA Anal Canal Cancer AJCC v6 and v7 9 267875 -NCIT:C5926 Stage IIIB Anal Canal Cancer AJCC v6 and v7 9 267876 -NCIT:C7794 Stage 0 Anal Canal Cancer AJCC v6 and v7 8 267877 -NCIT:C27282 Stage 0 AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 267878 -NCIT:C9037 Stage I Anal Canal Cancer AJCC v6 and v7 8 267879 -NCIT:C27283 Stage I AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 267880 -NCIT:C5612 Metastatic Anal Canal Carcinoma 7 267881 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 267882 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 267883 -NCIT:C7469 Anal Canal Squamous Cell Carcinoma 7 267884 -NCIT:C173334 Refractory Anal Canal Squamous Cell Carcinoma 8 267885 -NCIT:C175360 Recurrent Anal Canal Squamous Cell Carcinoma 8 267886 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 9 267887 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 267888 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 267889 -NCIT:C175384 Unresectable Anal Canal Squamous Cell Carcinoma 8 267890 -NCIT:C7471 Anal Canal Adenocarcinoma 7 267891 -NCIT:C5606 Anal Mucinous Adenocarcinoma 8 267892 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 9 267893 -NCIT:C7477 Anal Canal Paget Disease 8 267894 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 9 267895 -NCIT:C7793 Recurrent Anal Canal Carcinoma 7 267896 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 8 267897 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 8 267898 -NCIT:C175360 Recurrent Anal Canal Squamous Cell Carcinoma 8 267899 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 9 267900 -NCIT:C9249 Recurrent AIDS-Related Anal Canal Carcinoma 8 267901 -NCIT:C8255 Anal Canal Cloacogenic Carcinoma 7 267902 -NCIT:C96529 Anal Canal Undifferentiated Carcinoma 7 267903 -NCIT:C96549 Anal Canal Neuroendocrine Carcinoma 7 267904 -NCIT:C96550 Anal Canal Large Cell Neuroendocrine Carcinoma 8 267905 -NCIT:C96551 Anal Canal Small Cell Neuroendocrine Carcinoma 8 267906 -NCIT:C96553 Anal Canal Mixed Adenoneuroendocrine Carcinoma 7 267907 -NCIT:C9161 Anal Squamous Cell Carcinoma 6 267908 -NCIT:C157575 Anal Intraepithelial Neoplasia 3 7 267909 -NCIT:C169102 Recurrent Anal Squamous Cell Carcinoma 7 267910 -NCIT:C175360 Recurrent Anal Canal Squamous Cell Carcinoma 8 267911 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 9 267912 -NCIT:C169103 Metastatic Anal Squamous Cell Carcinoma 7 267913 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 267914 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 267915 -NCIT:C173156 Unresectable Anal Squamous Cell Carcinoma 7 267916 -NCIT:C175384 Unresectable Anal Canal Squamous Cell Carcinoma 8 267917 -NCIT:C27681 Human Papillomavirus-Related Anal Squamous Cell Carcinoma 7 267918 -NCIT:C6925 Anal Margin Squamous Cell Carcinoma 7 267919 -NCIT:C7469 Anal Canal Squamous Cell Carcinoma 7 267920 -NCIT:C173334 Refractory Anal Canal Squamous Cell Carcinoma 8 267921 -NCIT:C175360 Recurrent Anal Canal Squamous Cell Carcinoma 8 267922 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 9 267923 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 267924 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 267925 -NCIT:C175384 Unresectable Anal Canal Squamous Cell Carcinoma 8 267926 -NCIT:C7470 Anal Verrucous Carcinoma 7 267927 -NCIT:C8256 Anal Basaloid Carcinoma 7 267928 -NCIT:C9278 AIDS-Related Anal Carcinoma 6 267929 -NCIT:C133095 AIDS-Related Anal Canal Carcinoma 7 267930 -NCIT:C27282 Stage 0 AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 267931 -NCIT:C27283 Stage I AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 267932 -NCIT:C27284 Stage II AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 267933 -NCIT:C27285 Stage III AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 267934 -NCIT:C27286 Stage IV AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 267935 -NCIT:C9249 Recurrent AIDS-Related Anal Canal Carcinoma 8 267936 -NCIT:C7478 Malignant Esophageal Neoplasm 4 267937 -NCIT:C3513 Esophageal Carcinoma 5 267938 -NCIT:C118812 Childhood Esophageal Carcinoma 6 267939 -NCIT:C128563 Unresectable Esophageal Carcinoma 6 267940 -NCIT:C171608 Unresectable Esophageal Squamous Cell Carcinoma 7 267941 -NCIT:C173162 Unresectable Esophageal Adenocarcinoma 7 267942 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 267943 -NCIT:C172248 Unresectable Distal Esophagus Adenocarcinoma 8 267944 -NCIT:C133399 Esophageal Cancer by AJCC v8 Stage 6 267945 -NCIT:C133400 Esophageal Adenocarcinoma by AJCC v8 Stage 7 267946 -NCIT:C133401 Esophageal Adenocarcinoma by AJCC v8 Clinical Stage 8 267947 -NCIT:C133402 Clinical Stage 0 Esophageal Adenocarcinoma AJCC v8 9 267948 -NCIT:C133403 Clinical Stage I Esophageal Adenocarcinoma AJCC v8 9 267949 -NCIT:C133404 Clinical Stage II Esophageal Adenocarcinoma AJCC v8 9 267950 -NCIT:C133405 Clinical Stage IIA Esophageal Adenocarcinoma AJCC v8 10 267951 -NCIT:C133406 Clinical Stage IIB Esophageal Adenocarcinoma AJCC v8 10 267952 -NCIT:C133407 Clinical Stage III Esophageal Adenocarcinoma AJCC v8 9 267953 -NCIT:C133408 Clinical Stage IV Esophageal Adenocarcinoma AJCC v8 9 267954 -NCIT:C133409 Clinical Stage IVA Esophageal Adenocarcinoma AJCC v8 10 267955 -NCIT:C133410 Clinical Stage IVB Esophageal Adenocarcinoma AJCC v8 10 267956 -NCIT:C133412 Esophageal Adenocarcinoma by AJCC v8 Pathologic Stage 8 267957 -NCIT:C133413 Pathologic Stage 0 Esophageal Adenocarcinoma AJCC v8 9 267958 -NCIT:C133414 Pathologic Stage I Esophageal Adenocarcinoma AJCC v8 9 267959 -NCIT:C133415 Pathologic Stage IA Esophageal Adenocarcinoma AJCC v8 10 267960 -NCIT:C133416 Pathologic Stage IB Esophageal Adenocarcinoma AJCC v8 10 267961 -NCIT:C133417 Pathologic Stage IC Esophageal Adenocarcinoma AJCC v8 10 267962 -NCIT:C133418 Pathologic Stage II Esophageal Adenocarcinoma AJCC v8 9 267963 -NCIT:C133419 Pathologic Stage IIA Esophageal Adenocarcinoma AJCC v8 10 267964 -NCIT:C133420 Pathologic Stage IIB Esophageal Adenocarcinoma AJCC v8 10 267965 -NCIT:C133421 Pathologic Stage III Esophageal Adenocarcinoma AJCC v8 9 267966 -NCIT:C133422 Pathologic Stage IIIA Esophageal Adenocarcinoma AJCC v8 10 267967 -NCIT:C133423 Pathologic Stage IIIB Esophageal Adenocarcinoma AJCC v8 10 267968 -NCIT:C133424 Pathologic Stage IV Esophageal Adenocarcinoma AJCC v8 9 267969 -NCIT:C133425 Pathologic Stage IVA Esophageal Adenocarcinoma AJCC v8 10 267970 -NCIT:C133426 Pathologic Stage IVB Esophageal Adenocarcinoma AJCC v8 10 267971 -NCIT:C133432 Esophageal Adenocarcinoma by AJCC v8 Postneoadjuvant Therapy Stage 8 267972 -NCIT:C133433 Postneoadjuvant Therapy Stage I Esophageal Adenocarcinoma AJCC v8 9 267973 -NCIT:C133434 Postneoadjuvant Therapy Stage II Esophageal Adenocarcinoma AJCC v8 9 267974 -NCIT:C133435 Postneoadjuvant Therapy Stage III Esophageal Adenocarcinoma AJCC v8 9 267975 -NCIT:C133436 Postneoadjuvant Therapy Stage IIIA Esophageal Adenocarcinoma AJCC v8 10 267976 -NCIT:C133437 Postneoadjuvant Therapy Stage IIIB Esophageal Adenocarcinoma AJCC v8 10 267977 -NCIT:C133438 Postneoadjuvant Therapy Stage IV Esophageal Adenocarcinoma AJCC v8 9 267978 -NCIT:C133439 Postneoadjuvant Therapy Stage IVA Esophageal Adenocarcinoma AJCC v8 10 267979 -NCIT:C133440 Postneoadjuvant Therapy Stage IVB Esophageal Adenocarcinoma AJCC v8 10 267980 -NCIT:C133443 Esophageal Squamous Cell Carcinoma by AJCC v8 Stage 7 267981 -NCIT:C133444 Esophageal Squamous Cell Carcinoma by AJCC v8 Clinical Stage 8 267982 -NCIT:C133447 Clinical Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 9 267983 -NCIT:C133448 Clinical Stage I Esophageal Squamous Cell Carcinoma AJCC v8 9 267984 -NCIT:C133449 Clinical Stage II Esophageal Squamous Cell Carcinoma AJCC v8 9 267985 -NCIT:C133450 Clinical Stage III Esophageal Squamous Cell Carcinoma AJCC v8 9 267986 -NCIT:C133451 Clinical Stage IV Esophageal Squamous Cell Carcinoma AJCC v8 9 267987 -NCIT:C133452 Clinical Stage IVA Esophageal Squamous Cell Carcinoma AJCC v8 10 267988 -NCIT:C133453 Clinical Stage IVB Esophageal Squamous Cell Carcinoma AJCC v8 10 267989 -NCIT:C133445 Esophageal Squamous Cell Carcinoma by AJCC v8 Pathologic Stage 8 267990 -NCIT:C133519 Pathologic Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 9 267991 -NCIT:C133521 Pathologic Stage I Esophageal Squamous Cell Carcinoma AJCC v8 9 267992 -NCIT:C133525 Pathologic Stage IA Esophageal Squamous Cell Carcinoma AJCC v8 10 267993 -NCIT:C133530 Pathologic Stage IB Esophageal Squamous Cell Carcinoma AJCC v8 10 267994 -NCIT:C133532 Pathologic Stage II Esophageal Squamous Cell Carcinoma AJCC v8 9 267995 -NCIT:C133534 Pathologic Stage IIA Esophageal Squamous Cell Carcinoma AJCC v8 10 267996 -NCIT:C133535 Pathologic Stage IIB Esophageal Squamous Cell Carcinoma AJCC v8 10 267997 -NCIT:C133536 Pathologic Stage III Esophageal Squamous Cell Carcinoma AJCC v8 9 267998 -NCIT:C133537 Pathologic Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v8 10 267999 -NCIT:C133538 Pathologic Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v8 10 268000 -NCIT:C133539 Pathologic Stage IV Esophageal Squamous Cell Carcinoma AJCC v8 9 268001 -NCIT:C133541 Pathologic Stage IVA Esophageal Squamous Cell Carcinoma AJCC v8 10 268002 -NCIT:C133542 Pathologic Stage IVB Esophageal Squamous Cell Carcinoma AJCC v8 10 268003 -NCIT:C133446 Esophageal Squamous Cell Carcinoma by AJCC v8 Postneoadjuvant Therapy Stage 8 268004 -NCIT:C133454 Postneoadjuvant Therapy Stage I Esophageal Squamous Cell Carcinoma AJCC v8 9 268005 -NCIT:C133455 Postneoadjuvant Therapy Stage II Esophageal Squamous Cell Carcinoma AJCC v8 9 268006 -NCIT:C133456 Postneoadjuvant Therapy Stage III Esophageal Squamous Cell Carcinoma AJCC v8 9 268007 -NCIT:C133457 Postneoadjuvant Therapy Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v8 10 268008 -NCIT:C133458 Postneoadjuvant Therapy Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v8 10 268009 -NCIT:C133459 Postneoadjuvant Therapy Stage IV Esophageal Squamous Cell Carcinoma AJCC v8 9 268010 -NCIT:C133460 Postneoadjuvant Therapy Stage IVA Esophageal Squamous Cell Carcinoma AJCC v8 10 268011 -NCIT:C133461 Postneoadjuvant Therapy Stage IVB Esophageal Squamous Cell Carcinoma AJCC v8 10 268012 -NCIT:C156073 Metastatic Esophageal Carcinoma 6 268013 -NCIT:C156074 Metastatic Esophageal Adenocarcinoma 7 268014 -NCIT:C166120 Oligometastatic Esophageal Adenocarcinoma 8 268015 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 268016 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 268017 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 268018 -NCIT:C172249 Metastatic Distal Esophagus Adenocarcinoma 8 268019 -NCIT:C156075 Metastatic Esophageal Squamous Cell Carcinoma 7 268020 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 268021 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 268022 -NCIT:C160599 Advanced Esophageal Carcinoma 7 268023 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 268024 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 268025 -NCIT:C168976 Locally Advanced Esophageal Carcinoma 7 268026 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 268027 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 268028 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 268029 -NCIT:C166171 Localized Esophageal Carcinoma 6 268030 -NCIT:C171604 Refractory Esophageal Carcinoma 6 268031 -NCIT:C171606 Refractory Esophageal Squamous Cell Carcinoma 7 268032 -NCIT:C176892 Refractory Esophageal Adenocarcinoma 7 268033 -NCIT:C27421 Esophageal Adenosquamous Carcinoma 6 268034 -NCIT:C27422 Esophageal Undifferentiated Carcinoma 6 268035 -NCIT:C3999 Recurrent Esophageal Carcinoma 6 268036 -NCIT:C8627 Recurrent Esophageal Adenocarcinoma 7 268037 -NCIT:C8633 Recurrent Esophageal Squamous Cell Carcinoma 7 268038 -NCIT:C4024 Esophageal Squamous Cell Carcinoma 6 268039 -NCIT:C133442 Esophageal Squamous Cell Carcinoma by AJCC v7 Stage 7 268040 -NCIT:C5019 Stage IV Esophageal Squamous Cell Carcinoma AJCC v7 8 268041 -NCIT:C5020 Stage III Esophageal Squamous Cell Carcinoma AJCC v7 8 268042 -NCIT:C87787 Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v7 9 268043 -NCIT:C87788 Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v7 9 268044 -NCIT:C87789 Stage IIIC Esophageal Squamous Cell Carcinoma AJCC v7 9 268045 -NCIT:C5021 Stage II Esophageal Squamous Cell Carcinoma AJCC v7 8 268046 -NCIT:C6737 Stage IIB Esophageal Squamous Cell Carcinoma AJCC v7 9 268047 -NCIT:C6738 Stage IIA Esophageal Squamous Cell Carcinoma AJCC v7 9 268048 -NCIT:C5022 Stage I Esophageal Squamous Cell Carcinoma AJCC v7 8 268049 -NCIT:C87780 Stage IA Esophageal Squamous Cell Carcinoma AJCC v7 9 268050 -NCIT:C87781 Stage IB Esophageal Squamous Cell Carcinoma AJCC v7 9 268051 -NCIT:C5023 Stage 0 Esophageal Squamous Cell Carcinoma AJCC v7 8 268052 -NCIT:C133443 Esophageal Squamous Cell Carcinoma by AJCC v8 Stage 7 268053 -NCIT:C133444 Esophageal Squamous Cell Carcinoma by AJCC v8 Clinical Stage 8 268054 -NCIT:C133447 Clinical Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 9 268055 -NCIT:C133448 Clinical Stage I Esophageal Squamous Cell Carcinoma AJCC v8 9 268056 -NCIT:C133449 Clinical Stage II Esophageal Squamous Cell Carcinoma AJCC v8 9 268057 -NCIT:C133450 Clinical Stage III Esophageal Squamous Cell Carcinoma AJCC v8 9 268058 -NCIT:C133451 Clinical Stage IV Esophageal Squamous Cell Carcinoma AJCC v8 9 268059 -NCIT:C133452 Clinical Stage IVA Esophageal Squamous Cell Carcinoma AJCC v8 10 268060 -NCIT:C133453 Clinical Stage IVB Esophageal Squamous Cell Carcinoma AJCC v8 10 268061 -NCIT:C133445 Esophageal Squamous Cell Carcinoma by AJCC v8 Pathologic Stage 8 268062 -NCIT:C133519 Pathologic Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 9 268063 -NCIT:C133521 Pathologic Stage I Esophageal Squamous Cell Carcinoma AJCC v8 9 268064 -NCIT:C133525 Pathologic Stage IA Esophageal Squamous Cell Carcinoma AJCC v8 10 268065 -NCIT:C133530 Pathologic Stage IB Esophageal Squamous Cell Carcinoma AJCC v8 10 268066 -NCIT:C133532 Pathologic Stage II Esophageal Squamous Cell Carcinoma AJCC v8 9 268067 -NCIT:C133534 Pathologic Stage IIA Esophageal Squamous Cell Carcinoma AJCC v8 10 268068 -NCIT:C133535 Pathologic Stage IIB Esophageal Squamous Cell Carcinoma AJCC v8 10 268069 -NCIT:C133536 Pathologic Stage III Esophageal Squamous Cell Carcinoma AJCC v8 9 268070 -NCIT:C133537 Pathologic Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v8 10 268071 -NCIT:C133538 Pathologic Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v8 10 268072 -NCIT:C133539 Pathologic Stage IV Esophageal Squamous Cell Carcinoma AJCC v8 9 268073 -NCIT:C133541 Pathologic Stage IVA Esophageal Squamous Cell Carcinoma AJCC v8 10 268074 -NCIT:C133542 Pathologic Stage IVB Esophageal Squamous Cell Carcinoma AJCC v8 10 268075 -NCIT:C133446 Esophageal Squamous Cell Carcinoma by AJCC v8 Postneoadjuvant Therapy Stage 8 268076 -NCIT:C133454 Postneoadjuvant Therapy Stage I Esophageal Squamous Cell Carcinoma AJCC v8 9 268077 -NCIT:C133455 Postneoadjuvant Therapy Stage II Esophageal Squamous Cell Carcinoma AJCC v8 9 268078 -NCIT:C133456 Postneoadjuvant Therapy Stage III Esophageal Squamous Cell Carcinoma AJCC v8 9 268079 -NCIT:C133457 Postneoadjuvant Therapy Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v8 10 268080 -NCIT:C133458 Postneoadjuvant Therapy Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v8 10 268081 -NCIT:C133459 Postneoadjuvant Therapy Stage IV Esophageal Squamous Cell Carcinoma AJCC v8 9 268082 -NCIT:C133460 Postneoadjuvant Therapy Stage IVA Esophageal Squamous Cell Carcinoma AJCC v8 10 268083 -NCIT:C133461 Postneoadjuvant Therapy Stage IVB Esophageal Squamous Cell Carcinoma AJCC v8 10 268084 -NCIT:C150029 Thoracic Esophagus Squamous Cell Carcinoma 7 268085 -NCIT:C150032 Cervical Esophagus Squamous Cell Carcinoma 7 268086 -NCIT:C150037 Distal Esophagus Squamous Cell Carcinoma 7 268087 -NCIT:C156075 Metastatic Esophageal Squamous Cell Carcinoma 7 268088 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 268089 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 268090 -NCIT:C171606 Refractory Esophageal Squamous Cell Carcinoma 7 268091 -NCIT:C171608 Unresectable Esophageal Squamous Cell Carcinoma 7 268092 -NCIT:C27420 Esophageal Verrucous Carcinoma 7 268093 -NCIT:C27680 Human Papillomavirus-Related Esophageal Squamous Cell Carcinoma 7 268094 -NCIT:C27928 Alcohol-Related Esophageal Squamous Cell Carcinoma 7 268095 -NCIT:C7032 Esophageal Basaloid Carcinoma 7 268096 -NCIT:C8633 Recurrent Esophageal Squamous Cell Carcinoma 7 268097 -NCIT:C95608 Esophageal Spindle Cell Carcinoma 7 268098 -NCIT:C95610 Esophageal Well Differentiated Squamous Cell Carcinoma 7 268099 -NCIT:C179888 Esophageal Carcinoma Cuniculatum 8 268100 -NCIT:C95611 Esophageal Moderately Differentiated Squamous Cell Carcinoma 7 268101 -NCIT:C95612 Esophageal Poorly Differentiated Squamous Cell Carcinoma 7 268102 -NCIT:C4025 Esophageal Adenocarcinoma 6 268103 -NCIT:C133400 Esophageal Adenocarcinoma by AJCC v8 Stage 7 268104 -NCIT:C133401 Esophageal Adenocarcinoma by AJCC v8 Clinical Stage 8 268105 -NCIT:C133402 Clinical Stage 0 Esophageal Adenocarcinoma AJCC v8 9 268106 -NCIT:C133403 Clinical Stage I Esophageal Adenocarcinoma AJCC v8 9 268107 -NCIT:C133404 Clinical Stage II Esophageal Adenocarcinoma AJCC v8 9 268108 -NCIT:C133405 Clinical Stage IIA Esophageal Adenocarcinoma AJCC v8 10 268109 -NCIT:C133406 Clinical Stage IIB Esophageal Adenocarcinoma AJCC v8 10 268110 -NCIT:C133407 Clinical Stage III Esophageal Adenocarcinoma AJCC v8 9 268111 -NCIT:C133408 Clinical Stage IV Esophageal Adenocarcinoma AJCC v8 9 268112 -NCIT:C133409 Clinical Stage IVA Esophageal Adenocarcinoma AJCC v8 10 268113 -NCIT:C133410 Clinical Stage IVB Esophageal Adenocarcinoma AJCC v8 10 268114 -NCIT:C133412 Esophageal Adenocarcinoma by AJCC v8 Pathologic Stage 8 268115 -NCIT:C133413 Pathologic Stage 0 Esophageal Adenocarcinoma AJCC v8 9 268116 -NCIT:C133414 Pathologic Stage I Esophageal Adenocarcinoma AJCC v8 9 268117 -NCIT:C133415 Pathologic Stage IA Esophageal Adenocarcinoma AJCC v8 10 268118 -NCIT:C133416 Pathologic Stage IB Esophageal Adenocarcinoma AJCC v8 10 268119 -NCIT:C133417 Pathologic Stage IC Esophageal Adenocarcinoma AJCC v8 10 268120 -NCIT:C133418 Pathologic Stage II Esophageal Adenocarcinoma AJCC v8 9 268121 -NCIT:C133419 Pathologic Stage IIA Esophageal Adenocarcinoma AJCC v8 10 268122 -NCIT:C133420 Pathologic Stage IIB Esophageal Adenocarcinoma AJCC v8 10 268123 -NCIT:C133421 Pathologic Stage III Esophageal Adenocarcinoma AJCC v8 9 268124 -NCIT:C133422 Pathologic Stage IIIA Esophageal Adenocarcinoma AJCC v8 10 268125 -NCIT:C133423 Pathologic Stage IIIB Esophageal Adenocarcinoma AJCC v8 10 268126 -NCIT:C133424 Pathologic Stage IV Esophageal Adenocarcinoma AJCC v8 9 268127 -NCIT:C133425 Pathologic Stage IVA Esophageal Adenocarcinoma AJCC v8 10 268128 -NCIT:C133426 Pathologic Stage IVB Esophageal Adenocarcinoma AJCC v8 10 268129 -NCIT:C133432 Esophageal Adenocarcinoma by AJCC v8 Postneoadjuvant Therapy Stage 8 268130 -NCIT:C133433 Postneoadjuvant Therapy Stage I Esophageal Adenocarcinoma AJCC v8 9 268131 -NCIT:C133434 Postneoadjuvant Therapy Stage II Esophageal Adenocarcinoma AJCC v8 9 268132 -NCIT:C133435 Postneoadjuvant Therapy Stage III Esophageal Adenocarcinoma AJCC v8 9 268133 -NCIT:C133436 Postneoadjuvant Therapy Stage IIIA Esophageal Adenocarcinoma AJCC v8 10 268134 -NCIT:C133437 Postneoadjuvant Therapy Stage IIIB Esophageal Adenocarcinoma AJCC v8 10 268135 -NCIT:C133438 Postneoadjuvant Therapy Stage IV Esophageal Adenocarcinoma AJCC v8 9 268136 -NCIT:C133439 Postneoadjuvant Therapy Stage IVA Esophageal Adenocarcinoma AJCC v8 10 268137 -NCIT:C133440 Postneoadjuvant Therapy Stage IVB Esophageal Adenocarcinoma AJCC v8 10 268138 -NCIT:C133411 Esophageal Adenocarcinoma by AJCC v7 Stage 7 268139 -NCIT:C8628 Stage II Esophageal Adenocarcinoma AJCC v7 8 268140 -NCIT:C6731 Stage IIA Esophageal Adenocarcinoma AJCC v7 9 268141 -NCIT:C6732 Stage IIB Esophageal Adenocarcinoma AJCC v7 9 268142 -NCIT:C8629 Stage 0 Esophageal Adenocarcinoma AJCC v7 8 268143 -NCIT:C8630 Stage I Esophageal Adenocarcinoma AJCC v7 8 268144 -NCIT:C87782 Stage IA Esophageal Adenocarcinoma AJCC v7 9 268145 -NCIT:C87783 Stage IB Esophageal Adenocarcinoma AJCC v7 9 268146 -NCIT:C8631 Stage III Esophageal Adenocarcinoma AJCC v7 8 268147 -NCIT:C87784 Stage IIIA Esophageal Adenocarcinoma AJCC v7 9 268148 -NCIT:C87785 Stage IIIB Esophageal Adenocarcinoma AJCC v7 9 268149 -NCIT:C87786 Stage IIIC Esophageal Adenocarcinoma AJCC v7 9 268150 -NCIT:C8632 Stage IV Esophageal Adenocarcinoma AJCC v7 8 268151 -NCIT:C150027 Thoracic Esophagus Adenocarcinoma 7 268152 -NCIT:C150031 Cervical Esophagus Adenocarcinoma 7 268153 -NCIT:C152036 Distal Esophagus Adenocarcinoma 7 268154 -NCIT:C172248 Unresectable Distal Esophagus Adenocarcinoma 8 268155 -NCIT:C172249 Metastatic Distal Esophagus Adenocarcinoma 8 268156 -NCIT:C7027 Barrett Adenocarcinoma 8 268157 -NCIT:C156074 Metastatic Esophageal Adenocarcinoma 7 268158 -NCIT:C166120 Oligometastatic Esophageal Adenocarcinoma 8 268159 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 268160 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 268161 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 268162 -NCIT:C172249 Metastatic Distal Esophagus Adenocarcinoma 8 268163 -NCIT:C161906 Esophageal Intramucosal Adenocarcinoma 7 268164 -NCIT:C173162 Unresectable Esophageal Adenocarcinoma 7 268165 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 268166 -NCIT:C172248 Unresectable Distal Esophagus Adenocarcinoma 8 268167 -NCIT:C176892 Refractory Esophageal Adenocarcinoma 7 268168 -NCIT:C8627 Recurrent Esophageal Adenocarcinoma 7 268169 -NCIT:C5342 Esophageal Adenoid Cystic Carcinoma 6 268170 -NCIT:C5343 Esophageal Mucoepidermoid Carcinoma 6 268171 -NCIT:C90500 Esophageal Cancer by AJCC v6 Stage 6 268172 -NCIT:C3637 Stage 0 Esophageal Cancer AJCC v6 7 268173 -NCIT:C9210 Stage I Esophageal Cancer AJCC v6 7 268174 -NCIT:C9211 Stage II Esophageal Cancer AJCC v6 7 268175 -NCIT:C9212 Stage III Esophageal Cancer AJCC v6 7 268176 -NCIT:C9213 Stage IV Esophageal Cancer AJCC v6 7 268177 -NCIT:C91221 Esophageal Cancer by AJCC v7 Stage 6 268178 -NCIT:C133411 Esophageal Adenocarcinoma by AJCC v7 Stage 7 268179 -NCIT:C8628 Stage II Esophageal Adenocarcinoma AJCC v7 8 268180 -NCIT:C6731 Stage IIA Esophageal Adenocarcinoma AJCC v7 9 268181 -NCIT:C6732 Stage IIB Esophageal Adenocarcinoma AJCC v7 9 268182 -NCIT:C8629 Stage 0 Esophageal Adenocarcinoma AJCC v7 8 268183 -NCIT:C8630 Stage I Esophageal Adenocarcinoma AJCC v7 8 268184 -NCIT:C87782 Stage IA Esophageal Adenocarcinoma AJCC v7 9 268185 -NCIT:C87783 Stage IB Esophageal Adenocarcinoma AJCC v7 9 268186 -NCIT:C8631 Stage III Esophageal Adenocarcinoma AJCC v7 8 268187 -NCIT:C87784 Stage IIIA Esophageal Adenocarcinoma AJCC v7 9 268188 -NCIT:C87785 Stage IIIB Esophageal Adenocarcinoma AJCC v7 9 268189 -NCIT:C87786 Stage IIIC Esophageal Adenocarcinoma AJCC v7 9 268190 -NCIT:C8632 Stage IV Esophageal Adenocarcinoma AJCC v7 8 268191 -NCIT:C133442 Esophageal Squamous Cell Carcinoma by AJCC v7 Stage 7 268192 -NCIT:C5019 Stage IV Esophageal Squamous Cell Carcinoma AJCC v7 8 268193 -NCIT:C5020 Stage III Esophageal Squamous Cell Carcinoma AJCC v7 8 268194 -NCIT:C87787 Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v7 9 268195 -NCIT:C87788 Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v7 9 268196 -NCIT:C87789 Stage IIIC Esophageal Squamous Cell Carcinoma AJCC v7 9 268197 -NCIT:C5021 Stage II Esophageal Squamous Cell Carcinoma AJCC v7 8 268198 -NCIT:C6737 Stage IIB Esophageal Squamous Cell Carcinoma AJCC v7 9 268199 -NCIT:C6738 Stage IIA Esophageal Squamous Cell Carcinoma AJCC v7 9 268200 -NCIT:C5022 Stage I Esophageal Squamous Cell Carcinoma AJCC v7 8 268201 -NCIT:C87780 Stage IA Esophageal Squamous Cell Carcinoma AJCC v7 9 268202 -NCIT:C87781 Stage IB Esophageal Squamous Cell Carcinoma AJCC v7 9 268203 -NCIT:C5023 Stage 0 Esophageal Squamous Cell Carcinoma AJCC v7 8 268204 -NCIT:C89771 Stage 0 Esophageal Cancer AJCC v7 7 268205 -NCIT:C5023 Stage 0 Esophageal Squamous Cell Carcinoma AJCC v7 8 268206 -NCIT:C8629 Stage 0 Esophageal Adenocarcinoma AJCC v7 8 268207 -NCIT:C89793 Stage I Esophageal Cancer AJCC v7 7 268208 -NCIT:C115117 Stage IA Esophageal Cancer AJCC v7 8 268209 -NCIT:C87780 Stage IA Esophageal Squamous Cell Carcinoma AJCC v7 9 268210 -NCIT:C87782 Stage IA Esophageal Adenocarcinoma AJCC v7 9 268211 -NCIT:C115118 Stage IB Esophageal Cancer AJCC v7 8 268212 -NCIT:C87781 Stage IB Esophageal Squamous Cell Carcinoma AJCC v7 9 268213 -NCIT:C87783 Stage IB Esophageal Adenocarcinoma AJCC v7 9 268214 -NCIT:C5022 Stage I Esophageal Squamous Cell Carcinoma AJCC v7 8 268215 -NCIT:C87780 Stage IA Esophageal Squamous Cell Carcinoma AJCC v7 9 268216 -NCIT:C87781 Stage IB Esophageal Squamous Cell Carcinoma AJCC v7 9 268217 -NCIT:C8630 Stage I Esophageal Adenocarcinoma AJCC v7 8 268218 -NCIT:C87782 Stage IA Esophageal Adenocarcinoma AJCC v7 9 268219 -NCIT:C87783 Stage IB Esophageal Adenocarcinoma AJCC v7 9 268220 -NCIT:C89794 Stage II Esophageal Cancer AJCC v7 7 268221 -NCIT:C5021 Stage II Esophageal Squamous Cell Carcinoma AJCC v7 8 268222 -NCIT:C6737 Stage IIB Esophageal Squamous Cell Carcinoma AJCC v7 9 268223 -NCIT:C6738 Stage IIA Esophageal Squamous Cell Carcinoma AJCC v7 9 268224 -NCIT:C5691 Stage IIA Esophageal Cancer AJCC v7 8 268225 -NCIT:C6731 Stage IIA Esophageal Adenocarcinoma AJCC v7 9 268226 -NCIT:C6738 Stage IIA Esophageal Squamous Cell Carcinoma AJCC v7 9 268227 -NCIT:C5692 Stage IIB Esophageal Cancer AJCC v7 8 268228 -NCIT:C6732 Stage IIB Esophageal Adenocarcinoma AJCC v7 9 268229 -NCIT:C6737 Stage IIB Esophageal Squamous Cell Carcinoma AJCC v7 9 268230 -NCIT:C8628 Stage II Esophageal Adenocarcinoma AJCC v7 8 268231 -NCIT:C6731 Stage IIA Esophageal Adenocarcinoma AJCC v7 9 268232 -NCIT:C6732 Stage IIB Esophageal Adenocarcinoma AJCC v7 9 268233 -NCIT:C89795 Stage III Esophageal Cancer AJCC v7 7 268234 -NCIT:C115119 Stage IIIA Esophageal Cancer AJCC v7 8 268235 -NCIT:C87784 Stage IIIA Esophageal Adenocarcinoma AJCC v7 9 268236 -NCIT:C87787 Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v7 9 268237 -NCIT:C115120 Stage IIIB Esophageal Cancer AJCC v7 8 268238 -NCIT:C87785 Stage IIIB Esophageal Adenocarcinoma AJCC v7 9 268239 -NCIT:C87788 Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v7 9 268240 -NCIT:C115121 Stage IIIC Esophageal Cancer AJCC v7 8 268241 -NCIT:C87786 Stage IIIC Esophageal Adenocarcinoma AJCC v7 9 268242 -NCIT:C87789 Stage IIIC Esophageal Squamous Cell Carcinoma AJCC v7 9 268243 -NCIT:C5020 Stage III Esophageal Squamous Cell Carcinoma AJCC v7 8 268244 -NCIT:C87787 Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v7 9 268245 -NCIT:C87788 Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v7 9 268246 -NCIT:C87789 Stage IIIC Esophageal Squamous Cell Carcinoma AJCC v7 9 268247 -NCIT:C8631 Stage III Esophageal Adenocarcinoma AJCC v7 8 268248 -NCIT:C87784 Stage IIIA Esophageal Adenocarcinoma AJCC v7 9 268249 -NCIT:C87785 Stage IIIB Esophageal Adenocarcinoma AJCC v7 9 268250 -NCIT:C87786 Stage IIIC Esophageal Adenocarcinoma AJCC v7 9 268251 -NCIT:C89804 Stage IV Esophageal Cancer AJCC v7 7 268252 -NCIT:C5019 Stage IV Esophageal Squamous Cell Carcinoma AJCC v7 8 268253 -NCIT:C8632 Stage IV Esophageal Adenocarcinoma AJCC v7 8 268254 -NCIT:C95619 Esophageal Neuroendocrine Carcinoma 6 268255 -NCIT:C6762 Esophageal Small Cell Neuroendocrine Carcinoma 7 268256 -NCIT:C95620 Esophageal Large Cell Neuroendocrine Carcinoma 7 268257 -NCIT:C95621 Esophageal Mixed Adenoneuroendocrine Carcinoma 6 268258 -NCIT:C5341 Esophageal Sarcoma 5 268259 -NCIT:C5334 Esophageal Leiomyosarcoma 6 268260 -NCIT:C5705 Esophageal Liposarcoma 6 268261 -NCIT:C5706 Esophageal Kaposi Sarcoma 6 268262 -NCIT:C92185 Esophageal Malignant Peripheral Nerve Sheath Tumor 6 268263 -NCIT:C95623 Esophageal Rhabdomyosarcoma 6 268264 -NCIT:C95624 Esophageal Synovial Sarcoma 6 268265 -NCIT:C5687 Esophageal Lymphoma 5 268266 -NCIT:C5688 Esophageal Non-Hodgkin Lymphoma 6 268267 -NCIT:C95625 Esophageal Diffuse Large B-Cell Lymphoma 7 268268 -NCIT:C95626 Esophageal Mucosa-Associated Lymphoid Tissue Lymphoma 7 268269 -NCIT:C5689 Esophageal Hodgkin Lymphoma 6 268270 -NCIT:C5707 Esophageal Melanoma 5 268271 -NCIT:C7479 Metastatic Malignant Neoplasm in the Esophagus 5 268272 -NCIT:C7512 Malignant Esophageal Neoplasm by Anatomic Region 5 268273 -NCIT:C3532 Malignant Neoplasm of the Thoracic Esophagus 6 268274 -NCIT:C150027 Thoracic Esophagus Adenocarcinoma 7 268275 -NCIT:C150029 Thoracic Esophagus Squamous Cell Carcinoma 7 268276 -NCIT:C3534 Malignant Neoplasm of the Middle Third of the Esophagus 7 268277 -NCIT:C4763 Malignant Neoplasm of the Cervical Esophagus 6 268278 -NCIT:C150031 Cervical Esophagus Adenocarcinoma 7 268279 -NCIT:C150032 Cervical Esophagus Squamous Cell Carcinoma 7 268280 -NCIT:C4764 Malignant Neoplasm of the Abdominal Esophagus 6 268281 -NCIT:C7513 Malignant Esophageal Neoplasm by Topographic Region 5 268282 -NCIT:C3533 Malignant Neoplasm of the Upper Third of the Esophagus 6 268283 -NCIT:C4763 Malignant Neoplasm of the Cervical Esophagus 7 268284 -NCIT:C150031 Cervical Esophagus Adenocarcinoma 8 268285 -NCIT:C150032 Cervical Esophagus Squamous Cell Carcinoma 8 268286 -NCIT:C3534 Malignant Neoplasm of the Middle Third of the Esophagus 6 268287 -NCIT:C3535 Malignant Neoplasm of the Lower Third of the Esophagus 6 268288 -NCIT:C150037 Distal Esophagus Squamous Cell Carcinoma 7 268289 -NCIT:C152036 Distal Esophagus Adenocarcinoma 7 268290 -NCIT:C172248 Unresectable Distal Esophagus Adenocarcinoma 8 268291 -NCIT:C172249 Metastatic Distal Esophagus Adenocarcinoma 8 268292 -NCIT:C7027 Barrett Adenocarcinoma 8 268293 -NCIT:C4764 Malignant Neoplasm of the Abdominal Esophagus 7 268294 -NCIT:C8609 Malignant Hepatobiliary Neoplasm 4 268295 -NCIT:C156781 Biliary Tract Carcinoma 5 268296 -NCIT:C156782 Recurrent Biliary Tract Carcinoma 6 268297 -NCIT:C153360 Recurrent Bile Duct Carcinoma 7 268298 -NCIT:C27325 Recurrent Cholangiocarcinoma 8 268299 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 9 268300 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 9 268301 -NCIT:C7893 Recurrent Extrahepatic Bile Duct Carcinoma 8 268302 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 9 268303 -NCIT:C4008 Recurrent Gallbladder Carcinoma 7 268304 -NCIT:C162750 Refractory Biliary Tract Carcinoma 6 268305 -NCIT:C153355 Refractory Bile Duct Carcinoma 7 268306 -NCIT:C158101 Refractory Cholangiocarcinoma 8 268307 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 9 268308 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 9 268309 -NCIT:C175437 Refractory Extrahepatic Bile Duct Carcinoma 8 268310 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 9 268311 -NCIT:C162753 Refractory Gallbladder Carcinoma 7 268312 -NCIT:C162751 Metastatic Biliary Tract Carcinoma 6 268313 -NCIT:C142869 Metastatic Bile Duct Carcinoma 7 268314 -NCIT:C142870 Advanced Bile Duct Carcinoma 8 268315 -NCIT:C162752 Advanced Cholangiocarcinoma 9 268316 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 268317 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 10 268318 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 10 268319 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 9 268320 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 268321 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 8 268322 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 9 268323 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 10 268324 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 10 268325 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 9 268326 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 10 268327 -NCIT:C157623 Metastatic Cholangiocarcinoma 8 268328 -NCIT:C162752 Advanced Cholangiocarcinoma 9 268329 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 268330 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 10 268331 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 10 268332 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 9 268333 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 10 268334 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 10 268335 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 9 268336 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 268337 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 9 268338 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 10 268339 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 10 268340 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 9 268341 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 10 268342 -NCIT:C185071 Metastatic Extrahepatic Bile Duct Carcinoma 8 268343 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 9 268344 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 10 268345 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 268346 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 10 268347 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 9 268348 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 268349 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 9 268350 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 10 268351 -NCIT:C162754 Metastatic Gallbladder Carcinoma 7 268352 -NCIT:C162755 Advanced Gallbladder Carcinoma 8 268353 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 8 268354 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 9 268355 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 7 268356 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 8 268357 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 9 268358 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 10 268359 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 10 268360 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 9 268361 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 10 268362 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 8 268363 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 9 268364 -NCIT:C171331 Advanced Biliary Tract Carcinoma 7 268365 -NCIT:C142870 Advanced Bile Duct Carcinoma 8 268366 -NCIT:C162752 Advanced Cholangiocarcinoma 9 268367 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 268368 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 10 268369 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 10 268370 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 9 268371 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 268372 -NCIT:C162755 Advanced Gallbladder Carcinoma 8 268373 -NCIT:C176042 Unresectable Biliary Tract Carcinoma 6 268374 -NCIT:C171322 Unresectable Bile Duct Carcinoma 7 268375 -NCIT:C27324 Unresectable Cholangiocarcinoma 8 268376 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 9 268377 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 9 268378 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 9 268379 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 9 268380 -NCIT:C7892 Unresectable Extrahepatic Bile Duct Carcinoma 8 268381 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 9 268382 -NCIT:C7890 Unresectable Gallbladder Carcinoma 7 268383 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 8 268384 -NCIT:C189064 Unresectable Gallbladder Adenocarcinoma 8 268385 -NCIT:C27814 Bile Duct Carcinoma 6 268386 -NCIT:C142869 Metastatic Bile Duct Carcinoma 7 268387 -NCIT:C142870 Advanced Bile Duct Carcinoma 8 268388 -NCIT:C162752 Advanced Cholangiocarcinoma 9 268389 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 268390 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 10 268391 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 10 268392 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 9 268393 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 268394 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 8 268395 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 9 268396 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 10 268397 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 10 268398 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 9 268399 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 10 268400 -NCIT:C157623 Metastatic Cholangiocarcinoma 8 268401 -NCIT:C162752 Advanced Cholangiocarcinoma 9 268402 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 268403 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 10 268404 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 10 268405 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 9 268406 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 10 268407 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 10 268408 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 9 268409 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 268410 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 9 268411 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 10 268412 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 10 268413 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 9 268414 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 10 268415 -NCIT:C185071 Metastatic Extrahepatic Bile Duct Carcinoma 8 268416 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 9 268417 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 10 268418 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 268419 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 10 268420 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 9 268421 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 268422 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 9 268423 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 10 268424 -NCIT:C153355 Refractory Bile Duct Carcinoma 7 268425 -NCIT:C158101 Refractory Cholangiocarcinoma 8 268426 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 9 268427 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 9 268428 -NCIT:C175437 Refractory Extrahepatic Bile Duct Carcinoma 8 268429 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 9 268430 -NCIT:C153360 Recurrent Bile Duct Carcinoma 7 268431 -NCIT:C27325 Recurrent Cholangiocarcinoma 8 268432 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 9 268433 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 9 268434 -NCIT:C7893 Recurrent Extrahepatic Bile Duct Carcinoma 8 268435 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 9 268436 -NCIT:C171322 Unresectable Bile Duct Carcinoma 7 268437 -NCIT:C27324 Unresectable Cholangiocarcinoma 8 268438 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 9 268439 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 9 268440 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 9 268441 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 9 268442 -NCIT:C7892 Unresectable Extrahepatic Bile Duct Carcinoma 8 268443 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 9 268444 -NCIT:C27813 Bile Duct Adenocarcinoma 7 268445 -NCIT:C156910 Resectable Bile Duct Adenocarcinoma 8 268446 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 9 268447 -NCIT:C27326 Resectable Cholangiocarcinoma 9 268448 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 10 268449 -NCIT:C4130 Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 8 268450 -NCIT:C96946 Extrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 9 268451 -NCIT:C96947 Intrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 9 268452 -NCIT:C4436 Cholangiocarcinoma 8 268453 -NCIT:C157623 Metastatic Cholangiocarcinoma 9 268454 -NCIT:C162752 Advanced Cholangiocarcinoma 10 268455 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 268456 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 268457 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 268458 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 268459 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 268460 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 268461 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 10 268462 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 268463 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 10 268464 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 268465 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 268466 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 10 268467 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 268468 -NCIT:C158101 Refractory Cholangiocarcinoma 9 268469 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 10 268470 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 268471 -NCIT:C27324 Unresectable Cholangiocarcinoma 9 268472 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 10 268473 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 10 268474 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 10 268475 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 10 268476 -NCIT:C27325 Recurrent Cholangiocarcinoma 9 268477 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 10 268478 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 10 268479 -NCIT:C27326 Resectable Cholangiocarcinoma 9 268480 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 10 268481 -NCIT:C27769 Opisthorchis Viverrini-Related Cholangiocarcinoma 9 268482 -NCIT:C35417 Intrahepatic Cholangiocarcinoma 9 268483 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 10 268484 -NCIT:C134514 Intrahepatic Cholangiocarcinoma by AJCC v7 Stage 10 268485 -NCIT:C88049 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v7 11 268486 -NCIT:C88050 Stage I Intrahepatic Cholangiocarcinoma AJCC v7 11 268487 -NCIT:C88051 Stage II Intrahepatic Cholangiocarcinoma AJCC v7 11 268488 -NCIT:C88052 Stage III Intrahepatic Cholangiocarcinoma AJCC v7 11 268489 -NCIT:C88053 Stage IVA Intrahepatic Cholangiocarcinoma AJCC v7 11 268490 -NCIT:C88054 Stage IVB Intrahepatic Cholangiocarcinoma AJCC v7 11 268491 -NCIT:C134755 Intrahepatic Cholangiocarcinoma by AJCC v8 Stage 10 268492 -NCIT:C134756 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v8 11 268493 -NCIT:C134757 Stage I Intrahepatic Cholangiocarcinoma AJCC v8 11 268494 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 12 268495 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 12 268496 -NCIT:C134760 Stage II Intrahepatic Cholangiocarcinoma AJCC v8 11 268497 -NCIT:C134761 Stage III Intrahepatic Cholangiocarcinoma AJCC v8 11 268498 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 12 268499 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 12 268500 -NCIT:C134764 Stage IV Intrahepatic Cholangiocarcinoma AJCC v8 11 268501 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 10 268502 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 10 268503 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 10 268504 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 268505 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 268506 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 10 268507 -NCIT:C41617 Cholangiolocellular Carcinoma 10 268508 -NCIT:C41618 Mucin-Producing Intrahepatic Cholangiocarcinoma 10 268509 -NCIT:C41619 Signet Ring Cell Intrahepatic Cholangiocarcinoma 10 268510 -NCIT:C41620 Sarcomatoid Intrahepatic Cholangiocarcinoma 10 268511 -NCIT:C43848 Clear Cell Intrahepatic Cholangiocarcinoma 10 268512 -NCIT:C96804 Large Duct Intrahepatic Cholangiocarcinoma 10 268513 -NCIT:C96805 Small Duct Intrahepatic Cholangiocarcinoma 10 268514 -NCIT:C96949 Intrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 10 268515 -NCIT:C36077 Hilar Cholangiocarcinoma 9 268516 -NCIT:C134742 Hilar Cholangiocarcinoma by AJCC v7 Stage 10 268517 -NCIT:C88058 Stage 0 Hilar Cholangiocarcinoma AJCC v7 11 268518 -NCIT:C88059 Stage I Hilar Cholangiocarcinoma AJCC v7 11 268519 -NCIT:C88060 Stage II Hilar Cholangiocarcinoma AJCC v7 11 268520 -NCIT:C88061 Stage IIIA Hilar Cholangiocarcinoma AJCC v7 11 268521 -NCIT:C88062 Stage IIIB Hilar Cholangiocarcinoma AJCC v7 11 268522 -NCIT:C88063 Stage IVA Hilar Cholangiocarcinoma AJCC v7 11 268523 -NCIT:C88064 Stage IVB Hilar Cholangiocarcinoma AJCC v7 11 268524 -NCIT:C134743 Hilar Cholangiocarcinoma by AJCC v8 Stage 10 268525 -NCIT:C134744 Stage 0 Hilar Cholangiocarcinoma AJCC v8 11 268526 -NCIT:C134745 Stage I Hilar Cholangiocarcinoma AJCC v8 11 268527 -NCIT:C134746 Stage II Hilar Cholangiocarcinoma AJCC v8 11 268528 -NCIT:C134747 Stage III Hilar Cholangiocarcinoma AJCC v8 11 268529 -NCIT:C134748 Stage IIIA Hilar Cholangiocarcinoma AJCC v8 12 268530 -NCIT:C134749 Stage IIIB Hilar Cholangiocarcinoma AJCC v8 12 268531 -NCIT:C134750 Stage IIIC Hilar Cholangiocarcinoma AJCC v8 12 268532 -NCIT:C134751 Stage IV Hilar Cholangiocarcinoma AJCC v8 11 268533 -NCIT:C134752 Stage IVA Hilar Cholangiocarcinoma AJCC v8 12 268534 -NCIT:C134753 Stage IVB Hilar Cholangiocarcinoma AJCC v8 12 268535 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 10 268536 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 10 268537 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 268538 -NCIT:C7976 Distal Bile Duct Adenocarcinoma 9 268539 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 10 268540 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 10 268541 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 268542 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 268543 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 10 268544 -NCIT:C8265 Adult Cholangiocarcinoma 9 268545 -NCIT:C7975 Extrahepatic Bile Duct Adenocarcinoma 8 268546 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 9 268547 -NCIT:C5775 Extrahepatic Bile Duct Clear Cell Adenocarcinoma 9 268548 -NCIT:C5776 Extrahepatic Bile Duct Signet Ring Cell Carcinoma 9 268549 -NCIT:C5846 Extrahepatic Bile Duct Mucinous Adenocarcinoma 9 268550 -NCIT:C7976 Distal Bile Duct Adenocarcinoma 9 268551 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 10 268552 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 10 268553 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 268554 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 268555 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 10 268556 -NCIT:C96936 Extrahepatic Bile Duct Adenocarcinoma, Biliary Type 9 268557 -NCIT:C96937 Extrahepatic Bile Duct Adenocarcinoma, Gastric Foveolar Type 9 268558 -NCIT:C96938 Extrahepatic Bile Duct Adenocarcinoma, Intestinal Type 9 268559 -NCIT:C96946 Extrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 9 268560 -NCIT:C96948 Extrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 9 268561 -NCIT:C96810 Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 8 268562 -NCIT:C96948 Extrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 9 268563 -NCIT:C96949 Intrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 9 268564 -NCIT:C3860 Extrahepatic Bile Duct Carcinoma 7 268565 -NCIT:C175437 Refractory Extrahepatic Bile Duct Carcinoma 8 268566 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 9 268567 -NCIT:C185071 Metastatic Extrahepatic Bile Duct Carcinoma 8 268568 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 9 268569 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 10 268570 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 268571 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 10 268572 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 9 268573 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 268574 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 9 268575 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 10 268576 -NCIT:C5777 Extrahepatic Bile Duct Squamous Cell Carcinoma 8 268577 -NCIT:C5778 Extrahepatic Bile Duct Adenosquamous Carcinoma 8 268578 -NCIT:C5780 Extrahepatic Bile Duct Undifferentiated Carcinoma 8 268579 -NCIT:C5862 Extrahepatic Bile Duct Mucoepidermoid Carcinoma 8 268580 -NCIT:C7109 Distal Bile Duct Carcinoma 8 268581 -NCIT:C134810 Distal Bile Duct Cancer by AJCC v7 Stage 9 268582 -NCIT:C88089 Stage 0 Distal Bile Duct Cancer AJCC v7 10 268583 -NCIT:C88090 Stage IA Distal Bile Duct Cancer AJCC v7 10 268584 -NCIT:C88091 Stage IB Distal Bile Duct Cancer AJCC v7 10 268585 -NCIT:C88092 Stage IIA Distal Bile Duct Cancer AJCC v7 10 268586 -NCIT:C88093 Stage IIB Distal Bile Duct Cancer AJCC v7 10 268587 -NCIT:C88094 Stage III Distal Bile Duct Cancer AJCC v7 10 268588 -NCIT:C88095 Stage IV Distal Bile Duct Cancer AJCC v7 10 268589 -NCIT:C134811 Distal Bile Duct Cancer by AJCC v8 Stage 9 268590 -NCIT:C134812 Stage 0 Distal Bile Duct Cancer AJCC v8 10 268591 -NCIT:C134813 Stage I Distal Bile Duct Cancer AJCC v8 10 268592 -NCIT:C134814 Stage II Distal Bile Duct Cancer AJCC v8 10 268593 -NCIT:C134815 Stage IIA Distal Bile Duct Cancer AJCC v8 11 268594 -NCIT:C134816 Stage IIB Distal Bile Duct Cancer AJCC v8 11 268595 -NCIT:C134817 Stage III Distal Bile Duct Cancer AJCC v8 10 268596 -NCIT:C134818 Stage IIIA Distal Bile Duct Cancer AJCC v8 11 268597 -NCIT:C134819 Stage IIIB Distal Bile Duct Cancer AJCC v8 11 268598 -NCIT:C134820 Stage IV Distal Bile Duct Cancer AJCC v8 10 268599 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 9 268600 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 10 268601 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 268602 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 10 268603 -NCIT:C7976 Distal Bile Duct Adenocarcinoma 9 268604 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 10 268605 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 10 268606 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 268607 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 268608 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 10 268609 -NCIT:C7891 Localized Extrahepatic Bile Duct Carcinoma 8 268610 -NCIT:C7892 Unresectable Extrahepatic Bile Duct Carcinoma 8 268611 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 9 268612 -NCIT:C7893 Recurrent Extrahepatic Bile Duct Carcinoma 8 268613 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 9 268614 -NCIT:C7975 Extrahepatic Bile Duct Adenocarcinoma 8 268615 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 9 268616 -NCIT:C5775 Extrahepatic Bile Duct Clear Cell Adenocarcinoma 9 268617 -NCIT:C5776 Extrahepatic Bile Duct Signet Ring Cell Carcinoma 9 268618 -NCIT:C5846 Extrahepatic Bile Duct Mucinous Adenocarcinoma 9 268619 -NCIT:C7976 Distal Bile Duct Adenocarcinoma 9 268620 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 10 268621 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 10 268622 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 268623 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 268624 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 10 268625 -NCIT:C96936 Extrahepatic Bile Duct Adenocarcinoma, Biliary Type 9 268626 -NCIT:C96937 Extrahepatic Bile Duct Adenocarcinoma, Gastric Foveolar Type 9 268627 -NCIT:C96938 Extrahepatic Bile Duct Adenocarcinoma, Intestinal Type 9 268628 -NCIT:C96946 Extrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 9 268629 -NCIT:C96948 Extrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 9 268630 -NCIT:C8640 Resectable Extrahepatic Bile Duct Carcinoma 8 268631 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 9 268632 -NCIT:C96939 Extrahepatic Bile Duct Carcinosarcoma 8 268633 -NCIT:C96956 Extrahepatic Bile Duct Neuroendocrine Carcinoma 8 268634 -NCIT:C5845 Extrahepatic Bile Duct Small Cell Neuroendocrine Carcinoma 9 268635 -NCIT:C96958 Extrahepatic Bile Duct Large Cell Neuroendocrine Carcinoma 9 268636 -NCIT:C96959 Extrahepatic Bile Duct Mixed Adenoneuroendocrine Carcinoma 8 268637 -NCIT:C3844 Gallbladder Carcinoma 6 268638 -NCIT:C134660 Gallbladder Cancer by AJCC v8 Stage 7 268639 -NCIT:C134663 Stage 0 Gallbladder Cancer AJCC v8 8 268640 -NCIT:C134665 Stage I Gallbladder Cancer AJCC v8 8 268641 -NCIT:C134667 Stage II Gallbladder Cancer AJCC v8 8 268642 -NCIT:C134670 Stage IIA Gallbladder Cancer AJCC v8 9 268643 -NCIT:C134671 Stage IIB Gallbladder Cancer AJCC v8 9 268644 -NCIT:C134672 Stage III Gallbladder Cancer AJCC v8 8 268645 -NCIT:C134673 Stage IIIA Gallbladder Cancer AJCC v8 9 268646 -NCIT:C134674 Stage IIIB Gallbladder Cancer AJCC v8 9 268647 -NCIT:C134675 Stage IV Gallbladder Cancer AJCC v8 8 268648 -NCIT:C134676 Stage IVA Gallbladder Cancer AJCC v8 9 268649 -NCIT:C134678 Stage IVB Gallbladder Cancer AJCC v8 9 268650 -NCIT:C162753 Refractory Gallbladder Carcinoma 7 268651 -NCIT:C162754 Metastatic Gallbladder Carcinoma 7 268652 -NCIT:C162755 Advanced Gallbladder Carcinoma 8 268653 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 8 268654 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 9 268655 -NCIT:C175214 Incidental Gallbladder Carcinoma 7 268656 -NCIT:C4008 Recurrent Gallbladder Carcinoma 7 268657 -NCIT:C7356 Gallbladder Adenosquamous Carcinoma 7 268658 -NCIT:C7649 Localized Gallbladder Carcinoma 7 268659 -NCIT:C7890 Unresectable Gallbladder Carcinoma 7 268660 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 8 268661 -NCIT:C189064 Unresectable Gallbladder Adenocarcinoma 8 268662 -NCIT:C90512 Gallbladder Cancer by AJCC v6 Stage 7 268663 -NCIT:C4439 Stage 0 Gallbladder Cancer AJCC v6 and v7 8 268664 -NCIT:C5737 Stage I Gallbladder Cancer AJCC v6 8 268665 -NCIT:C5738 Stage II Gallbladder Cancer AJCC v6 8 268666 -NCIT:C5739 Stage III Gallbladder Cancer AJCC v6 8 268667 -NCIT:C5740 Stage IV Gallbladder Cancer AJCC v6 8 268668 -NCIT:C91229 Gallbladder Cancer by AJCC v7 Stage 7 268669 -NCIT:C4439 Stage 0 Gallbladder Cancer AJCC v6 and v7 8 268670 -NCIT:C90216 Stage I Gallbladder Cancer AJCC v7 8 268671 -NCIT:C90217 Stage II Gallbladder Cancer AJCC v7 8 268672 -NCIT:C90218 Stage III Gallbladder Cancer AJCC v7 8 268673 -NCIT:C88056 Stage IIIA Gallbladder Cancer AJCC v7 9 268674 -NCIT:C88057 Stage IIIB Gallbladder Cancer AJCC v7 9 268675 -NCIT:C90219 Stage IV Gallbladder Cancer AJCC v7 8 268676 -NCIT:C5741 Stage IVA Gallbladder Cancer AJCC v7 9 268677 -NCIT:C5742 Stage IVB Gallbladder Cancer AJCC v7 9 268678 -NCIT:C9166 Gallbladder Adenocarcinoma 7 268679 -NCIT:C189064 Unresectable Gallbladder Adenocarcinoma 8 268680 -NCIT:C43604 Gallbladder Adenocarcinoma, Intestinal-Type 8 268681 -NCIT:C43605 Gallbladder Clear Cell Adenocarcinoma 8 268682 -NCIT:C5743 Gallbladder Intracholecystic Papillary Neoplasm with an Associated Invasive Carcinoma 8 268683 -NCIT:C5744 Gallbladder Mucinous Adenocarcinoma 8 268684 -NCIT:C5745 Gallbladder Signet Ring Cell Carcinoma 8 268685 -NCIT:C9169 Gallbladder Adenocarcinoma with Squamous Metaplasia 8 268686 -NCIT:C96887 Gallbladder Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 8 268687 -NCIT:C96890 Gallbladder Hepatoid Adenocarcinoma 8 268688 -NCIT:C96891 Gallbladder Cribriform Carcinoma 8 268689 -NCIT:C96915 Gallbladder Adenocarcinoma, Biliary Type 8 268690 -NCIT:C96916 Gallbladder Adenocarcinoma, Gastric Foveolar Type 8 268691 -NCIT:C9167 Gallbladder Undifferentiated Carcinoma 7 268692 -NCIT:C5838 Gallbladder Undifferentiated Carcinoma, Spindle and Giant Cell Type 8 268693 -NCIT:C9170 Gallbladder Squamous Cell Carcinoma 7 268694 -NCIT:C96888 Gallbladder Carcinosarcoma 7 268695 -NCIT:C96919 Gallbladder Neuroendocrine Carcinoma 7 268696 -NCIT:C6763 Gallbladder Small Cell Neuroendocrine Carcinoma 8 268697 -NCIT:C96921 Gallbladder Large Cell Neuroendocrine Carcinoma 8 268698 -NCIT:C96927 Gallbladder Mixed Adenoneuroendocrine Carcinoma 7 268699 -NCIT:C96928 Gallbladder Goblet Cell Carcinoid 8 268700 -NCIT:C67493 High-Grade Biliary Intraepithelial Neoplasia 6 268701 -NCIT:C190593 Malignant Liver Neoplasm 5 268702 -NCIT:C34803 Primary Malignant Liver Neoplasm 6 268703 -NCIT:C185042 Liver Plasmacytoma 7 268704 -NCIT:C4437 Liver Sarcoma 7 268705 -NCIT:C27096 Liver Embryonal Sarcoma 8 268706 -NCIT:C189934 Childhood Liver Embryonal Sarcoma 9 268707 -NCIT:C189935 Adult Liver Embryonal Sarcoma 9 268708 -NCIT:C4438 Liver Angiosarcoma 8 268709 -NCIT:C190020 Childhood Liver Angiosarcoma 9 268710 -NCIT:C5756 Liver Leiomyosarcoma 8 268711 -NCIT:C5832 Liver Fibrosarcoma 8 268712 -NCIT:C5833 Liver Extraskeletal Osteosarcoma 8 268713 -NCIT:C5834 Liver Rhabdomyosarcoma 8 268714 -NCIT:C96844 Liver Kaposi Sarcoma 8 268715 -NCIT:C96845 Liver Synovial Sarcoma 8 268716 -NCIT:C4949 Liver Lymphoma 7 268717 -NCIT:C5766 Liver Non-Hodgkin Lymphoma 8 268718 -NCIT:C5768 Liver Mucosa-Associated Lymphoid Tissue Lymphoma 9 268719 -NCIT:C8459 Hepatosplenic T-Cell Lymphoma 9 268720 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 10 268721 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 10 268722 -NCIT:C96843 Liver Diffuse Large B-Cell Lymphoma 9 268723 -NCIT:C7927 Liver and Intrahepatic Bile Duct Carcinoma 7 268724 -NCIT:C118630 Liver Adenosquamous Carcinoma 8 268725 -NCIT:C134604 Intrahepatic Bile Duct Cancer by AJCC v8 Stage 8 268726 -NCIT:C134609 Stage 0 Intrahepatic Bile Duct Cancer AJCC v8 9 268727 -NCIT:C134756 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v8 10 268728 -NCIT:C134610 Stage I Intrahepatic Bile Duct Cancer AJCC v8 9 268729 -NCIT:C134611 Stage IA Intrahepatic Bile Duct Cancer AJCC v8 10 268730 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 11 268731 -NCIT:C134612 Stage IB Intrahepatic Bile Duct Cancer AJCC v8 10 268732 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 11 268733 -NCIT:C134757 Stage I Intrahepatic Cholangiocarcinoma AJCC v8 10 268734 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 11 268735 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 11 268736 -NCIT:C134614 Stage II Intrahepatic Bile Duct Cancer AJCC v8 9 268737 -NCIT:C134760 Stage II Intrahepatic Cholangiocarcinoma AJCC v8 10 268738 -NCIT:C134615 Stage III Intrahepatic Bile Duct Cancer AJCC v8 9 268739 -NCIT:C134616 Stage IIIA Intrahepatic Bile Duct Cancer AJCC v8 10 268740 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 11 268741 -NCIT:C134618 Stage IIIB Intrahepatic Bile Duct Cancer AJCC v8 10 268742 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 11 268743 -NCIT:C134761 Stage III Intrahepatic Cholangiocarcinoma AJCC v8 10 268744 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 11 268745 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 11 268746 -NCIT:C134619 Stage IV Intrahepatic Bile Duct Cancer AJCC v8 9 268747 -NCIT:C134764 Stage IV Intrahepatic Cholangiocarcinoma AJCC v8 10 268748 -NCIT:C134755 Intrahepatic Cholangiocarcinoma by AJCC v8 Stage 9 268749 -NCIT:C134756 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v8 10 268750 -NCIT:C134757 Stage I Intrahepatic Cholangiocarcinoma AJCC v8 10 268751 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 11 268752 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 11 268753 -NCIT:C134760 Stage II Intrahepatic Cholangiocarcinoma AJCC v8 10 268754 -NCIT:C134761 Stage III Intrahepatic Cholangiocarcinoma AJCC v8 10 268755 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 11 268756 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 11 268757 -NCIT:C134764 Stage IV Intrahepatic Cholangiocarcinoma AJCC v8 10 268758 -NCIT:C153352 Refractory Liver Carcinoma 8 268759 -NCIT:C162450 Refractory Hepatocellular Carcinoma 9 268760 -NCIT:C188887 Refractory Fibrolamellar Carcinoma 10 268761 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 9 268762 -NCIT:C154088 Metastatic Liver Carcinoma 8 268763 -NCIT:C154091 Metastatic Hepatocellular Carcinoma 9 268764 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 10 268765 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 11 268766 -NCIT:C167336 Advanced Hepatocellular Carcinoma 10 268767 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 11 268768 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 11 268769 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 10 268770 -NCIT:C171298 Locally Advanced Liver Carcinoma 9 268771 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 10 268772 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 10 268773 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 9 268774 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 10 268775 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 10 268776 -NCIT:C165171 Unresectable Liver and Intrahepatic Bile Duct Carcinoma 8 268777 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 9 268778 -NCIT:C27345 Unresectable Hepatocellular Carcinoma 9 268779 -NCIT:C162602 Unresectable Fibrolamellar Carcinoma 10 268780 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 10 268781 -NCIT:C7878 Localized Unresectable Adult Liver Carcinoma 9 268782 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 10 268783 -NCIT:C165293 Resectable Liver and Intrahepatic Bile Duct Carcinoma 8 268784 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 9 268785 -NCIT:C7691 Resectable Hepatocellular Carcinoma 9 268786 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 10 268787 -NCIT:C7877 Localized Resectable Adult Liver Carcinoma 9 268788 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 10 268789 -NCIT:C172718 Liver Mixed Adenoneuroendocrine Carcinoma 8 268790 -NCIT:C3099 Hepatocellular Carcinoma 8 268791 -NCIT:C115132 Hepatocellular Carcinoma by BCLC Stage 9 268792 -NCIT:C115133 BCLC Stage 0 Hepatocellular Carcinoma 10 268793 -NCIT:C115139 BCLC Stage 0 Adult Hepatocellular Carcinoma 11 268794 -NCIT:C115135 BCLC Stage A Hepatocellular Carcinoma 10 268795 -NCIT:C115140 BCLC Stage A Adult Hepatocellular Carcinoma 11 268796 -NCIT:C115136 BCLC Stage B Hepatocellular Carcinoma 10 268797 -NCIT:C115141 BCLC Stage B Adult Hepatocellular Carcinoma 11 268798 -NCIT:C115137 BCLC Stage C Hepatocellular Carcinoma 10 268799 -NCIT:C115143 BCLC Stage C Adult Hepatocellular Carcinoma 11 268800 -NCIT:C115138 BCLC Stage D Hepatocellular Carcinoma 10 268801 -NCIT:C115144 BCLC Stage D Adult Hepatocellular Carcinoma 11 268802 -NCIT:C134515 Hepatocellular Carcinoma by AJCC v8 Stage 9 268803 -NCIT:C134516 Stage I Hepatocellular Carcinoma AJCC v8 10 268804 -NCIT:C134517 Stage IA Hepatocellular Carcinoma AJCC v8 11 268805 -NCIT:C134518 Stage IB Hepatocellular Carcinoma AJCC v8 11 268806 -NCIT:C134519 Stage II Hepatocellular Carcinoma AJCC v8 10 268807 -NCIT:C134520 Stage III Hepatocellular Carcinoma AJCC v8 10 268808 -NCIT:C134521 Stage IIIA Hepatocellular Carcinoma AJCC v8 11 268809 -NCIT:C134522 Stage IIIB Hepatocellular Carcinoma AJCC v8 11 268810 -NCIT:C134523 Stage IV Hepatocellular Carcinoma AJCC v8 10 268811 -NCIT:C134524 Stage IVA Hepatocellular Carcinoma AJCC v8 11 268812 -NCIT:C134525 Stage IVB Hepatocellular Carcinoma AJCC v8 11 268813 -NCIT:C154091 Metastatic Hepatocellular Carcinoma 9 268814 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 10 268815 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 11 268816 -NCIT:C167336 Advanced Hepatocellular Carcinoma 10 268817 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 11 268818 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 11 268819 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 10 268820 -NCIT:C162450 Refractory Hepatocellular Carcinoma 9 268821 -NCIT:C188887 Refractory Fibrolamellar Carcinoma 10 268822 -NCIT:C172709 Steatohepatitic Hepatocellular Carcinoma 9 268823 -NCIT:C27924 Alcohol-Related Hepatocellular Carcinoma 10 268824 -NCIT:C172710 Macrotrabecular Massive Hepatocellular Carcinoma 9 268825 -NCIT:C172712 Chromophobe Hepatocellular Carcinoma 9 268826 -NCIT:C172713 Neutrophil-Rich Hepatocellular Carcinoma 9 268827 -NCIT:C172714 Small Hepatocellular Carcinoma 9 268828 -NCIT:C172716 Small Progressed Hepatocellular Carcinoma 10 268829 -NCIT:C96772 Early Hepatocellular Carcinoma 10 268830 -NCIT:C27345 Unresectable Hepatocellular Carcinoma 9 268831 -NCIT:C162602 Unresectable Fibrolamellar Carcinoma 10 268832 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 10 268833 -NCIT:C27388 Scirrhous Hepatocellular Carcinoma 9 268834 -NCIT:C27635 Transplant-Related Hepatocellular Carcinoma 9 268835 -NCIT:C27686 Hepatitis Virus-Related Hepatocellular Carcinoma 9 268836 -NCIT:C27687 Hepatitis B Virus-Related Hepatocellular Carcinoma 10 268837 -NCIT:C27688 Hepatitis C Virus-Related Hepatocellular Carcinoma 10 268838 -NCIT:C27922 Aflatoxins-Related Hepatocellular Carcinoma 9 268839 -NCIT:C4131 Fibrolamellar Carcinoma 9 268840 -NCIT:C114992 Adult Fibrolamellar Carcinoma 10 268841 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 10 268842 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 11 268843 -NCIT:C154082 Recurrent Fibrolamellar Carcinoma 10 268844 -NCIT:C162602 Unresectable Fibrolamellar Carcinoma 10 268845 -NCIT:C188887 Refractory Fibrolamellar Carcinoma 10 268846 -NCIT:C189932 Childhood Fibrolamellar Carcinoma 10 268847 -NCIT:C43625 Pleomorphic Hepatocellular Carcinoma 9 268848 -NCIT:C114993 Adult Pleomorphic Hepatocellular Carcinoma 10 268849 -NCIT:C43627 Sarcomatoid Hepatocellular Carcinoma 9 268850 -NCIT:C5754 Clear Cell Hepatocellular Carcinoma 9 268851 -NCIT:C7691 Resectable Hepatocellular Carcinoma 9 268852 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 10 268853 -NCIT:C7955 Childhood Hepatocellular Carcinoma 9 268854 -NCIT:C189932 Childhood Fibrolamellar Carcinoma 10 268855 -NCIT:C5708 Stage III Childhood Hepatocellular Carcinoma AJCC v7 10 268856 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 10 268857 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 10 268858 -NCIT:C7838 Stage IV Childhood Hepatocellular Carcinoma AJCC v7 10 268859 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 10 268860 -NCIT:C7956 Adult Hepatocellular Carcinoma 9 268861 -NCIT:C114992 Adult Fibrolamellar Carcinoma 10 268862 -NCIT:C114993 Adult Pleomorphic Hepatocellular Carcinoma 10 268863 -NCIT:C115139 BCLC Stage 0 Adult Hepatocellular Carcinoma 10 268864 -NCIT:C115140 BCLC Stage A Adult Hepatocellular Carcinoma 10 268865 -NCIT:C115141 BCLC Stage B Adult Hepatocellular Carcinoma 10 268866 -NCIT:C115143 BCLC Stage C Adult Hepatocellular Carcinoma 10 268867 -NCIT:C115144 BCLC Stage D Adult Hepatocellular Carcinoma 10 268868 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 10 268869 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 10 268870 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 10 268871 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 10 268872 -NCIT:C90510 Hepatocellular Carcinoma by AJCC v6 Stage 9 268873 -NCIT:C5758 Stage I Hepatocellular Carcinoma AJCC v6 and v7 10 268874 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 11 268875 -NCIT:C5759 Stage II Hepatocellular Carcinoma AJCC v6 and v7 10 268876 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 11 268877 -NCIT:C5760 Stage III Hepatocellular Carcinoma AJCC v6 10 268878 -NCIT:C5763 Stage IV Hepatocellular Carcinoma AJCC v6 10 268879 -NCIT:C91228 Hepatocellular Carcinoma by AJCC v7 Stage 9 268880 -NCIT:C5758 Stage I Hepatocellular Carcinoma AJCC v6 and v7 10 268881 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 11 268882 -NCIT:C5759 Stage II Hepatocellular Carcinoma AJCC v6 and v7 10 268883 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 11 268884 -NCIT:C90180 Stage III Hepatocellular Carcinoma AJCC v7 10 268885 -NCIT:C5708 Stage III Childhood Hepatocellular Carcinoma AJCC v7 11 268886 -NCIT:C5761 Stage IIIA Hepatocellular Carcinoma AJCC v7 11 268887 -NCIT:C5762 Stage IIIB Hepatocellular Carcinoma AJCC v7 11 268888 -NCIT:C88044 Stage IIIC Hepatocellular Carcinoma AJCC v7 11 268889 -NCIT:C90181 Stage IV Hepatocellular Carcinoma AJCC v7 10 268890 -NCIT:C5764 Stage IVA Hepatocellular Carcinoma AJCC v7 11 268891 -NCIT:C5765 Stage IVB Hepatocellular Carcinoma AJCC v7 11 268892 -NCIT:C7838 Stage IV Childhood Hepatocellular Carcinoma AJCC v7 11 268893 -NCIT:C9264 Recurrent Hepatocellular Carcinoma 9 268894 -NCIT:C154082 Recurrent Fibrolamellar Carcinoma 10 268895 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 10 268896 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 10 268897 -NCIT:C96788 Lymphocyte-Rich Hepatocellular Carcinoma 9 268898 -NCIT:C96789 Well Differentiated Hepatocellular Carcinoma 9 268899 -NCIT:C96790 Moderately Differentiated Hepatocellular Carcinoma 9 268900 -NCIT:C96791 Poorly Differentiated Hepatocellular Carcinoma 9 268901 -NCIT:C35417 Intrahepatic Cholangiocarcinoma 8 268902 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 9 268903 -NCIT:C134514 Intrahepatic Cholangiocarcinoma by AJCC v7 Stage 9 268904 -NCIT:C88049 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v7 10 268905 -NCIT:C88050 Stage I Intrahepatic Cholangiocarcinoma AJCC v7 10 268906 -NCIT:C88051 Stage II Intrahepatic Cholangiocarcinoma AJCC v7 10 268907 -NCIT:C88052 Stage III Intrahepatic Cholangiocarcinoma AJCC v7 10 268908 -NCIT:C88053 Stage IVA Intrahepatic Cholangiocarcinoma AJCC v7 10 268909 -NCIT:C88054 Stage IVB Intrahepatic Cholangiocarcinoma AJCC v7 10 268910 -NCIT:C134755 Intrahepatic Cholangiocarcinoma by AJCC v8 Stage 9 268911 -NCIT:C134756 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v8 10 268912 -NCIT:C134757 Stage I Intrahepatic Cholangiocarcinoma AJCC v8 10 268913 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 11 268914 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 11 268915 -NCIT:C134760 Stage II Intrahepatic Cholangiocarcinoma AJCC v8 10 268916 -NCIT:C134761 Stage III Intrahepatic Cholangiocarcinoma AJCC v8 10 268917 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 11 268918 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 11 268919 -NCIT:C134764 Stage IV Intrahepatic Cholangiocarcinoma AJCC v8 10 268920 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 9 268921 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 9 268922 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 9 268923 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 10 268924 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 10 268925 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 9 268926 -NCIT:C41617 Cholangiolocellular Carcinoma 9 268927 -NCIT:C41618 Mucin-Producing Intrahepatic Cholangiocarcinoma 9 268928 -NCIT:C41619 Signet Ring Cell Intrahepatic Cholangiocarcinoma 9 268929 -NCIT:C41620 Sarcomatoid Intrahepatic Cholangiocarcinoma 9 268930 -NCIT:C43848 Clear Cell Intrahepatic Cholangiocarcinoma 9 268931 -NCIT:C96804 Large Duct Intrahepatic Cholangiocarcinoma 9 268932 -NCIT:C96805 Small Duct Intrahepatic Cholangiocarcinoma 9 268933 -NCIT:C96949 Intrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 9 268934 -NCIT:C3828 Combined Hepatocellular Carcinoma and Cholangiocarcinoma 8 268935 -NCIT:C114987 Adult Combined Hepatocellular Carcinoma and Cholangiocarcinoma 9 268936 -NCIT:C7110 Recurrent Liver Carcinoma 8 268937 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 9 268938 -NCIT:C7880 Recurrent Adult Liver Carcinoma 9 268939 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 10 268940 -NCIT:C9264 Recurrent Hepatocellular Carcinoma 9 268941 -NCIT:C154082 Recurrent Fibrolamellar Carcinoma 10 268942 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 10 268943 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 10 268944 -NCIT:C7116 Stage I Liver Cancer 8 268945 -NCIT:C134516 Stage I Hepatocellular Carcinoma AJCC v8 9 268946 -NCIT:C134517 Stage IA Hepatocellular Carcinoma AJCC v8 10 268947 -NCIT:C134518 Stage IB Hepatocellular Carcinoma AJCC v8 10 268948 -NCIT:C134610 Stage I Intrahepatic Bile Duct Cancer AJCC v8 9 268949 -NCIT:C134611 Stage IA Intrahepatic Bile Duct Cancer AJCC v8 10 268950 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 11 268951 -NCIT:C134612 Stage IB Intrahepatic Bile Duct Cancer AJCC v8 10 268952 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 11 268953 -NCIT:C134757 Stage I Intrahepatic Cholangiocarcinoma AJCC v8 10 268954 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 11 268955 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 11 268956 -NCIT:C5758 Stage I Hepatocellular Carcinoma AJCC v6 and v7 9 268957 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 10 268958 -NCIT:C88050 Stage I Intrahepatic Cholangiocarcinoma AJCC v7 9 268959 -NCIT:C94775 Stage I Adult Liver Cancer AJCC v7 9 268960 -NCIT:C7117 Stage II Liver Cancer 8 268961 -NCIT:C134519 Stage II Hepatocellular Carcinoma AJCC v8 9 268962 -NCIT:C134614 Stage II Intrahepatic Bile Duct Cancer AJCC v8 9 268963 -NCIT:C134760 Stage II Intrahepatic Cholangiocarcinoma AJCC v8 10 268964 -NCIT:C5759 Stage II Hepatocellular Carcinoma AJCC v6 and v7 9 268965 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 10 268966 -NCIT:C88051 Stage II Intrahepatic Cholangiocarcinoma AJCC v7 9 268967 -NCIT:C94776 Stage II Adult Liver Cancer AJCC v7 9 268968 -NCIT:C7118 Stage III Liver Cancer 8 268969 -NCIT:C134520 Stage III Hepatocellular Carcinoma AJCC v8 9 268970 -NCIT:C134521 Stage IIIA Hepatocellular Carcinoma AJCC v8 10 268971 -NCIT:C134522 Stage IIIB Hepatocellular Carcinoma AJCC v8 10 268972 -NCIT:C134615 Stage III Intrahepatic Bile Duct Cancer AJCC v8 9 268973 -NCIT:C134616 Stage IIIA Intrahepatic Bile Duct Cancer AJCC v8 10 268974 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 11 268975 -NCIT:C134618 Stage IIIB Intrahepatic Bile Duct Cancer AJCC v8 10 268976 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 11 268977 -NCIT:C134761 Stage III Intrahepatic Cholangiocarcinoma AJCC v8 10 268978 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 11 268979 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 11 268980 -NCIT:C5760 Stage III Hepatocellular Carcinoma AJCC v6 9 268981 -NCIT:C88052 Stage III Intrahepatic Cholangiocarcinoma AJCC v7 9 268982 -NCIT:C90180 Stage III Hepatocellular Carcinoma AJCC v7 9 268983 -NCIT:C5708 Stage III Childhood Hepatocellular Carcinoma AJCC v7 10 268984 -NCIT:C5761 Stage IIIA Hepatocellular Carcinoma AJCC v7 10 268985 -NCIT:C5762 Stage IIIB Hepatocellular Carcinoma AJCC v7 10 268986 -NCIT:C88044 Stage IIIC Hepatocellular Carcinoma AJCC v7 10 268987 -NCIT:C94777 Stage III Adult Liver Cancer AJCC v7 9 268988 -NCIT:C94779 Stage IIIA Adult Liver Cancer AJCC v7 10 268989 -NCIT:C94780 Stage IIIB Adult Liver Cancer AJCC v7 10 268990 -NCIT:C94781 Stage IIIC Adult Liver Cancer AJCC v7 10 268991 -NCIT:C7121 Stage IV Liver Cancer 8 268992 -NCIT:C134523 Stage IV Hepatocellular Carcinoma AJCC v8 9 268993 -NCIT:C134524 Stage IVA Hepatocellular Carcinoma AJCC v8 10 268994 -NCIT:C134525 Stage IVB Hepatocellular Carcinoma AJCC v8 10 268995 -NCIT:C134619 Stage IV Intrahepatic Bile Duct Cancer AJCC v8 9 268996 -NCIT:C134764 Stage IV Intrahepatic Cholangiocarcinoma AJCC v8 10 268997 -NCIT:C5763 Stage IV Hepatocellular Carcinoma AJCC v6 9 268998 -NCIT:C7122 Stage IVA Liver Cancer 9 268999 -NCIT:C134524 Stage IVA Hepatocellular Carcinoma AJCC v8 10 269000 -NCIT:C5764 Stage IVA Hepatocellular Carcinoma AJCC v7 10 269001 -NCIT:C88053 Stage IVA Intrahepatic Cholangiocarcinoma AJCC v7 10 269002 -NCIT:C7123 Stage IVB Liver Cancer 9 269003 -NCIT:C134525 Stage IVB Hepatocellular Carcinoma AJCC v8 10 269004 -NCIT:C5765 Stage IVB Hepatocellular Carcinoma AJCC v7 10 269005 -NCIT:C88054 Stage IVB Intrahepatic Cholangiocarcinoma AJCC v7 10 269006 -NCIT:C90181 Stage IV Hepatocellular Carcinoma AJCC v7 9 269007 -NCIT:C5764 Stage IVA Hepatocellular Carcinoma AJCC v7 10 269008 -NCIT:C5765 Stage IVB Hepatocellular Carcinoma AJCC v7 10 269009 -NCIT:C7838 Stage IV Childhood Hepatocellular Carcinoma AJCC v7 10 269010 -NCIT:C94782 Stage IV Adult Liver Cancer AJCC v7 9 269011 -NCIT:C7711 Adult Liver Carcinoma 8 269012 -NCIT:C114987 Adult Combined Hepatocellular Carcinoma and Cholangiocarcinoma 9 269013 -NCIT:C7877 Localized Resectable Adult Liver Carcinoma 9 269014 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 10 269015 -NCIT:C7878 Localized Unresectable Adult Liver Carcinoma 9 269016 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 10 269017 -NCIT:C7880 Recurrent Adult Liver Carcinoma 9 269018 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 10 269019 -NCIT:C7956 Adult Hepatocellular Carcinoma 9 269020 -NCIT:C114992 Adult Fibrolamellar Carcinoma 10 269021 -NCIT:C114993 Adult Pleomorphic Hepatocellular Carcinoma 10 269022 -NCIT:C115139 BCLC Stage 0 Adult Hepatocellular Carcinoma 10 269023 -NCIT:C115140 BCLC Stage A Adult Hepatocellular Carcinoma 10 269024 -NCIT:C115141 BCLC Stage B Adult Hepatocellular Carcinoma 10 269025 -NCIT:C115143 BCLC Stage C Adult Hepatocellular Carcinoma 10 269026 -NCIT:C115144 BCLC Stage D Adult Hepatocellular Carcinoma 10 269027 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 10 269028 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 10 269029 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 10 269030 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 10 269031 -NCIT:C94775 Stage I Adult Liver Cancer AJCC v7 9 269032 -NCIT:C94776 Stage II Adult Liver Cancer AJCC v7 9 269033 -NCIT:C94777 Stage III Adult Liver Cancer AJCC v7 9 269034 -NCIT:C94779 Stage IIIA Adult Liver Cancer AJCC v7 10 269035 -NCIT:C94780 Stage IIIB Adult Liver Cancer AJCC v7 10 269036 -NCIT:C94781 Stage IIIC Adult Liver Cancer AJCC v7 10 269037 -NCIT:C94782 Stage IV Adult Liver Cancer AJCC v7 9 269038 -NCIT:C96787 Liver Neuroendocrine Carcinoma 8 269039 -NCIT:C172722 Liver Large Cell Neuroendocrine Carcinoma 9 269040 -NCIT:C172725 Liver Small Cell Neuroendocrine Carcinoma 9 269041 -NCIT:C96792 Liver Undifferentiated Carcinoma 8 269042 -NCIT:C96848 Liver Carcinosarcoma 8 269043 -NCIT:C96947 Intrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 8 269044 -NCIT:C96846 Liver Epithelioid Hemangioendothelioma 7 269045 -NCIT:C96847 Extrarenal Rhabdoid Tumor of the Liver 7 269046 -NCIT:C96851 Liver Yolk Sac Tumor 7 269047 -NCIT:C35648 Unresectable Malignant Liver Neoplasm 6 269048 -NCIT:C165171 Unresectable Liver and Intrahepatic Bile Duct Carcinoma 7 269049 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 8 269050 -NCIT:C27345 Unresectable Hepatocellular Carcinoma 8 269051 -NCIT:C162602 Unresectable Fibrolamellar Carcinoma 9 269052 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 9 269053 -NCIT:C7878 Localized Unresectable Adult Liver Carcinoma 8 269054 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 9 269055 -NCIT:C8641 Unresectable Hepatoblastoma 7 269056 -NCIT:C4758 Metastatic Malignant Neoplasm in the Liver 6 269057 -NCIT:C150130 Uveal Melanoma Metastatic in the Liver 7 269058 -NCIT:C185152 Extramedullary Disease in Plasma Cell Myeloma Involving the Liver 7 269059 -NCIT:C96767 Metastatic Carcinoma in the Liver 7 269060 -NCIT:C157366 Colorectal Carcinoma Metastatic in the Liver 8 269061 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 9 269062 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 9 269063 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 9 269064 -NCIT:C36302 Breast Carcinoma Metastatic in the Liver 8 269065 -NCIT:C36306 Lung Carcinoma Metastatic in the Liver 8 269066 -NCIT:C7115 Malignant Liver Non-Epithelial Neoplasm 6 269067 -NCIT:C185042 Liver Plasmacytoma 7 269068 -NCIT:C4437 Liver Sarcoma 7 269069 -NCIT:C27096 Liver Embryonal Sarcoma 8 269070 -NCIT:C189934 Childhood Liver Embryonal Sarcoma 9 269071 -NCIT:C189935 Adult Liver Embryonal Sarcoma 9 269072 -NCIT:C4438 Liver Angiosarcoma 8 269073 -NCIT:C190020 Childhood Liver Angiosarcoma 9 269074 -NCIT:C5756 Liver Leiomyosarcoma 8 269075 -NCIT:C5832 Liver Fibrosarcoma 8 269076 -NCIT:C5833 Liver Extraskeletal Osteosarcoma 8 269077 -NCIT:C5834 Liver Rhabdomyosarcoma 8 269078 -NCIT:C96844 Liver Kaposi Sarcoma 8 269079 -NCIT:C96845 Liver Synovial Sarcoma 8 269080 -NCIT:C4949 Liver Lymphoma 7 269081 -NCIT:C5766 Liver Non-Hodgkin Lymphoma 8 269082 -NCIT:C5768 Liver Mucosa-Associated Lymphoid Tissue Lymphoma 9 269083 -NCIT:C8459 Hepatosplenic T-Cell Lymphoma 9 269084 -NCIT:C153160 Recurrent Hepatosplenic T-Cell Lymphoma 10 269085 -NCIT:C153161 Refractory Hepatosplenic T-Cell Lymphoma 10 269086 -NCIT:C96843 Liver Diffuse Large B-Cell Lymphoma 9 269087 -NCIT:C96846 Liver Epithelioid Hemangioendothelioma 7 269088 -NCIT:C96847 Extrarenal Rhabdoid Tumor of the Liver 7 269089 -NCIT:C96851 Liver Yolk Sac Tumor 7 269090 -NCIT:C7692 Resectable Malignant Liver Neoplasm 6 269091 -NCIT:C165293 Resectable Liver and Intrahepatic Bile Duct Carcinoma 7 269092 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 8 269093 -NCIT:C7691 Resectable Hepatocellular Carcinoma 8 269094 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 9 269095 -NCIT:C7877 Localized Resectable Adult Liver Carcinoma 8 269096 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 9 269097 -NCIT:C8642 Resectable Hepatoblastoma 7 269098 -NCIT:C7708 Childhood Malignant Liver Neoplasm 6 269099 -NCIT:C189934 Childhood Liver Embryonal Sarcoma 7 269100 -NCIT:C190020 Childhood Liver Angiosarcoma 7 269101 -NCIT:C3728 Hepatoblastoma 7 269102 -NCIT:C142854 Refractory Hepatoblastoma 8 269103 -NCIT:C161838 Hepatocellular Malignant Neoplasm, Not Otherwise Specified 8 269104 -NCIT:C189923 Epithelial Hepatoblastoma 8 269105 -NCIT:C189924 Epithelial Hepatoblastoma with Pleomorphic Pattern 9 269106 -NCIT:C7093 Hepatoblastoma with Pure Fetal Epithelial Differentiation 9 269107 -NCIT:C7094 Hepatoblastoma with Combined Fetal and Embryonal Epithelial Differentiation 9 269108 -NCIT:C7095 Macrotrabecular Hepatoblastoma 9 269109 -NCIT:C7096 Small Cell Undifferentiated Hepatoblastoma 9 269110 -NCIT:C189927 Hepatoblastoma by PRETEXT Stage 8 269111 -NCIT:C7139 PRETEXT Stage 1 Hepatoblastoma 9 269112 -NCIT:C7140 PRETEXT Stage 2 Hepatoblastoma 9 269113 -NCIT:C7141 PRETEXT Stage 3 Hepatoblastoma 9 269114 -NCIT:C7142 PRETEXT Stage 4 Hepatoblastoma 9 269115 -NCIT:C189929 Hepatoblastoma by Postsurgical Stage 8 269116 -NCIT:C7143 Postsurgical Stage IV Hepatoblastoma 9 269117 -NCIT:C7144 Postsurgical Stage III Hepatoblastoma 9 269118 -NCIT:C7145 Postsurgical Stage II Hepatoblastoma 9 269119 -NCIT:C7146 Postsurgical Stage I Hepatoblastoma 9 269120 -NCIT:C7097 Mixed Epithelial and Mesenchymal Hepatoblastoma 8 269121 -NCIT:C189926 Non-Teratoid Hepatoblastoma 9 269122 -NCIT:C7098 Teratoid Hepatoblastoma 9 269123 -NCIT:C8641 Unresectable Hepatoblastoma 8 269124 -NCIT:C8642 Resectable Hepatoblastoma 8 269125 -NCIT:C8643 Recurrent Hepatoblastoma 8 269126 -NCIT:C7839 Recurrent Childhood Malignant Liver Neoplasm 7 269127 -NCIT:C8643 Recurrent Hepatoblastoma 8 269128 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 8 269129 -NCIT:C7955 Childhood Hepatocellular Carcinoma 7 269130 -NCIT:C189932 Childhood Fibrolamellar Carcinoma 8 269131 -NCIT:C5708 Stage III Childhood Hepatocellular Carcinoma AJCC v7 8 269132 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 8 269133 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 8 269134 -NCIT:C7838 Stage IV Childhood Hepatocellular Carcinoma AJCC v7 8 269135 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 8 269136 -NCIT:C96830 Calcifying Nested Stromal-Epithelial Tumor 7 269137 -NCIT:C96847 Extrarenal Rhabdoid Tumor of the Liver 7 269138 -NCIT:C7481 Gallbladder Malignant Neoplasm 5 269139 -NCIT:C35676 Localized Malignant Gallbladder Neoplasm 6 269140 -NCIT:C7649 Localized Gallbladder Carcinoma 7 269141 -NCIT:C3844 Gallbladder Carcinoma 6 269142 -NCIT:C134660 Gallbladder Cancer by AJCC v8 Stage 7 269143 -NCIT:C134663 Stage 0 Gallbladder Cancer AJCC v8 8 269144 -NCIT:C134665 Stage I Gallbladder Cancer AJCC v8 8 269145 -NCIT:C134667 Stage II Gallbladder Cancer AJCC v8 8 269146 -NCIT:C134670 Stage IIA Gallbladder Cancer AJCC v8 9 269147 -NCIT:C134671 Stage IIB Gallbladder Cancer AJCC v8 9 269148 -NCIT:C134672 Stage III Gallbladder Cancer AJCC v8 8 269149 -NCIT:C134673 Stage IIIA Gallbladder Cancer AJCC v8 9 269150 -NCIT:C134674 Stage IIIB Gallbladder Cancer AJCC v8 9 269151 -NCIT:C134675 Stage IV Gallbladder Cancer AJCC v8 8 269152 -NCIT:C134676 Stage IVA Gallbladder Cancer AJCC v8 9 269153 -NCIT:C134678 Stage IVB Gallbladder Cancer AJCC v8 9 269154 -NCIT:C162753 Refractory Gallbladder Carcinoma 7 269155 -NCIT:C162754 Metastatic Gallbladder Carcinoma 7 269156 -NCIT:C162755 Advanced Gallbladder Carcinoma 8 269157 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 8 269158 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 9 269159 -NCIT:C175214 Incidental Gallbladder Carcinoma 7 269160 -NCIT:C4008 Recurrent Gallbladder Carcinoma 7 269161 -NCIT:C7356 Gallbladder Adenosquamous Carcinoma 7 269162 -NCIT:C7649 Localized Gallbladder Carcinoma 7 269163 -NCIT:C7890 Unresectable Gallbladder Carcinoma 7 269164 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 8 269165 -NCIT:C189064 Unresectable Gallbladder Adenocarcinoma 8 269166 -NCIT:C90512 Gallbladder Cancer by AJCC v6 Stage 7 269167 -NCIT:C4439 Stage 0 Gallbladder Cancer AJCC v6 and v7 8 269168 -NCIT:C5737 Stage I Gallbladder Cancer AJCC v6 8 269169 -NCIT:C5738 Stage II Gallbladder Cancer AJCC v6 8 269170 -NCIT:C5739 Stage III Gallbladder Cancer AJCC v6 8 269171 -NCIT:C5740 Stage IV Gallbladder Cancer AJCC v6 8 269172 -NCIT:C91229 Gallbladder Cancer by AJCC v7 Stage 7 269173 -NCIT:C4439 Stage 0 Gallbladder Cancer AJCC v6 and v7 8 269174 -NCIT:C90216 Stage I Gallbladder Cancer AJCC v7 8 269175 -NCIT:C90217 Stage II Gallbladder Cancer AJCC v7 8 269176 -NCIT:C90218 Stage III Gallbladder Cancer AJCC v7 8 269177 -NCIT:C88056 Stage IIIA Gallbladder Cancer AJCC v7 9 269178 -NCIT:C88057 Stage IIIB Gallbladder Cancer AJCC v7 9 269179 -NCIT:C90219 Stage IV Gallbladder Cancer AJCC v7 8 269180 -NCIT:C5741 Stage IVA Gallbladder Cancer AJCC v7 9 269181 -NCIT:C5742 Stage IVB Gallbladder Cancer AJCC v7 9 269182 -NCIT:C9166 Gallbladder Adenocarcinoma 7 269183 -NCIT:C189064 Unresectable Gallbladder Adenocarcinoma 8 269184 -NCIT:C43604 Gallbladder Adenocarcinoma, Intestinal-Type 8 269185 -NCIT:C43605 Gallbladder Clear Cell Adenocarcinoma 8 269186 -NCIT:C5743 Gallbladder Intracholecystic Papillary Neoplasm with an Associated Invasive Carcinoma 8 269187 -NCIT:C5744 Gallbladder Mucinous Adenocarcinoma 8 269188 -NCIT:C5745 Gallbladder Signet Ring Cell Carcinoma 8 269189 -NCIT:C9169 Gallbladder Adenocarcinoma with Squamous Metaplasia 8 269190 -NCIT:C96887 Gallbladder Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 8 269191 -NCIT:C96890 Gallbladder Hepatoid Adenocarcinoma 8 269192 -NCIT:C96891 Gallbladder Cribriform Carcinoma 8 269193 -NCIT:C96915 Gallbladder Adenocarcinoma, Biliary Type 8 269194 -NCIT:C96916 Gallbladder Adenocarcinoma, Gastric Foveolar Type 8 269195 -NCIT:C9167 Gallbladder Undifferentiated Carcinoma 7 269196 -NCIT:C5838 Gallbladder Undifferentiated Carcinoma, Spindle and Giant Cell Type 8 269197 -NCIT:C9170 Gallbladder Squamous Cell Carcinoma 7 269198 -NCIT:C96888 Gallbladder Carcinosarcoma 7 269199 -NCIT:C96919 Gallbladder Neuroendocrine Carcinoma 7 269200 -NCIT:C6763 Gallbladder Small Cell Neuroendocrine Carcinoma 8 269201 -NCIT:C96921 Gallbladder Large Cell Neuroendocrine Carcinoma 8 269202 -NCIT:C96927 Gallbladder Mixed Adenoneuroendocrine Carcinoma 7 269203 -NCIT:C96928 Gallbladder Goblet Cell Carcinoid 8 269204 -NCIT:C5734 Gallbladder Lymphoma 6 269205 -NCIT:C5735 Gallbladder Melanoma 6 269206 -NCIT:C5736 Gallbladder Sarcoma 6 269207 -NCIT:C5839 Gallbladder Rhabdomyosarcoma 7 269208 -NCIT:C5840 Gallbladder Angiosarcoma 7 269209 -NCIT:C5841 Gallbladder Leiomyosarcoma 7 269210 -NCIT:C5842 Gallbladder Kaposi Sarcoma 7 269211 -NCIT:C7482 Metastatic Malignant Neoplasm in the Gallbladder 6 269212 -NCIT:C7483 Malignant Extrahepatic Bile Duct Neoplasm 5 269213 -NCIT:C3860 Extrahepatic Bile Duct Carcinoma 6 269214 -NCIT:C175437 Refractory Extrahepatic Bile Duct Carcinoma 7 269215 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 8 269216 -NCIT:C185071 Metastatic Extrahepatic Bile Duct Carcinoma 7 269217 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 8 269218 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 9 269219 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 269220 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 9 269221 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 8 269222 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 9 269223 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 8 269224 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 9 269225 -NCIT:C5777 Extrahepatic Bile Duct Squamous Cell Carcinoma 7 269226 -NCIT:C5778 Extrahepatic Bile Duct Adenosquamous Carcinoma 7 269227 -NCIT:C5780 Extrahepatic Bile Duct Undifferentiated Carcinoma 7 269228 -NCIT:C5862 Extrahepatic Bile Duct Mucoepidermoid Carcinoma 7 269229 -NCIT:C7109 Distal Bile Duct Carcinoma 7 269230 -NCIT:C134810 Distal Bile Duct Cancer by AJCC v7 Stage 8 269231 -NCIT:C88089 Stage 0 Distal Bile Duct Cancer AJCC v7 9 269232 -NCIT:C88090 Stage IA Distal Bile Duct Cancer AJCC v7 9 269233 -NCIT:C88091 Stage IB Distal Bile Duct Cancer AJCC v7 9 269234 -NCIT:C88092 Stage IIA Distal Bile Duct Cancer AJCC v7 9 269235 -NCIT:C88093 Stage IIB Distal Bile Duct Cancer AJCC v7 9 269236 -NCIT:C88094 Stage III Distal Bile Duct Cancer AJCC v7 9 269237 -NCIT:C88095 Stage IV Distal Bile Duct Cancer AJCC v7 9 269238 -NCIT:C134811 Distal Bile Duct Cancer by AJCC v8 Stage 8 269239 -NCIT:C134812 Stage 0 Distal Bile Duct Cancer AJCC v8 9 269240 -NCIT:C134813 Stage I Distal Bile Duct Cancer AJCC v8 9 269241 -NCIT:C134814 Stage II Distal Bile Duct Cancer AJCC v8 9 269242 -NCIT:C134815 Stage IIA Distal Bile Duct Cancer AJCC v8 10 269243 -NCIT:C134816 Stage IIB Distal Bile Duct Cancer AJCC v8 10 269244 -NCIT:C134817 Stage III Distal Bile Duct Cancer AJCC v8 9 269245 -NCIT:C134818 Stage IIIA Distal Bile Duct Cancer AJCC v8 10 269246 -NCIT:C134819 Stage IIIB Distal Bile Duct Cancer AJCC v8 10 269247 -NCIT:C134820 Stage IV Distal Bile Duct Cancer AJCC v8 9 269248 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 8 269249 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 9 269250 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 269251 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 9 269252 -NCIT:C7976 Distal Bile Duct Adenocarcinoma 8 269253 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 9 269254 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 9 269255 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 269256 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 9 269257 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 9 269258 -NCIT:C7891 Localized Extrahepatic Bile Duct Carcinoma 7 269259 -NCIT:C7892 Unresectable Extrahepatic Bile Duct Carcinoma 7 269260 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 8 269261 -NCIT:C7893 Recurrent Extrahepatic Bile Duct Carcinoma 7 269262 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 8 269263 -NCIT:C7975 Extrahepatic Bile Duct Adenocarcinoma 7 269264 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 8 269265 -NCIT:C5775 Extrahepatic Bile Duct Clear Cell Adenocarcinoma 8 269266 -NCIT:C5776 Extrahepatic Bile Duct Signet Ring Cell Carcinoma 8 269267 -NCIT:C5846 Extrahepatic Bile Duct Mucinous Adenocarcinoma 8 269268 -NCIT:C7976 Distal Bile Duct Adenocarcinoma 8 269269 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 9 269270 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 9 269271 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 10 269272 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 9 269273 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 9 269274 -NCIT:C96936 Extrahepatic Bile Duct Adenocarcinoma, Biliary Type 8 269275 -NCIT:C96937 Extrahepatic Bile Duct Adenocarcinoma, Gastric Foveolar Type 8 269276 -NCIT:C96938 Extrahepatic Bile Duct Adenocarcinoma, Intestinal Type 8 269277 -NCIT:C96946 Extrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 8 269278 -NCIT:C96948 Extrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 8 269279 -NCIT:C8640 Resectable Extrahepatic Bile Duct Carcinoma 7 269280 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 8 269281 -NCIT:C96939 Extrahepatic Bile Duct Carcinosarcoma 7 269282 -NCIT:C96956 Extrahepatic Bile Duct Neuroendocrine Carcinoma 7 269283 -NCIT:C5845 Extrahepatic Bile Duct Small Cell Neuroendocrine Carcinoma 8 269284 -NCIT:C96958 Extrahepatic Bile Duct Large Cell Neuroendocrine Carcinoma 8 269285 -NCIT:C96959 Extrahepatic Bile Duct Mixed Adenoneuroendocrine Carcinoma 7 269286 -NCIT:C5029 Extrahepatic Bile Duct Sarcoma 6 269287 -NCIT:C5848 Extrahepatic Bile Duct Leiomyosarcoma 7 269288 -NCIT:C5860 Extrahepatic Bile Duct Rhabdomyosarcoma 7 269289 -NCIT:C5847 Extrahepatic Bile Duct Embryonal Rhabdomyosarcoma 8 269290 -NCIT:C96951 Extrahepatic Bile Duct Kaposi Sarcoma 7 269291 -NCIT:C96952 Extrahepatic Bile Duct Lymphoma 6 269292 -NCIT:C96953 Metastatic Malignant Neoplasm in the Extrahepatic Bile Ducts 6 269293 -NCIT:C9005 Malignant Pancreatic Neoplasm 4 269294 -NCIT:C155852 Metastatic Malignant Pancreatic Neoplasm 5 269295 -NCIT:C156069 Metastatic Pancreatic Carcinoma 6 269296 -NCIT:C165452 Advanced Pancreatic Carcinoma 7 269297 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 8 269298 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 9 269299 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 7 269300 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 8 269301 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 9 269302 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 9 269303 -NCIT:C190770 Metastatic Pancreatic Adenosquamous Carcinoma 7 269304 -NCIT:C190771 Metastatic Pancreatic Squamous Cell Carcinoma 7 269305 -NCIT:C8933 Metastatic Pancreatic Adenocarcinoma 7 269306 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 8 269307 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 9 269308 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 9 269309 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 8 269310 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 9 269311 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 9 269312 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 9 269313 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 8 269314 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 9 269315 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 8 269316 -NCIT:C165447 Metastatic Pancreatic Neuroendocrine Neoplasm 6 269317 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 7 269318 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 269319 -NCIT:C156488 Metastatic Pancreatic Neuroendocrine Tumor 7 269320 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 8 269321 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 269322 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 269323 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 8 269324 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 8 269325 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 269326 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 8 269327 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 269328 -NCIT:C165448 Advanced Pancreatic Neuroendocrine Neoplasm 7 269329 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 8 269330 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 269331 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 269332 -NCIT:C165456 Unresectable Pancreatic Neuroendocrine Neoplasm 5 269333 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 6 269334 -NCIT:C190782 Unresectable Pancreatic Neuroendocrine Tumor 6 269335 -NCIT:C165631 Localized Malignant Pancreatic Neoplasm 5 269336 -NCIT:C169041 Localized Pancreatic Adenocarcinoma 6 269337 -NCIT:C189009 Localized Pancreatic Ductal Adenocarcinoma 7 269338 -NCIT:C188217 Pancreatic Mixed Ductal-Neuroendocrine Neoplasm 5 269339 -NCIT:C6879 Pancreatic Mixed Ductal-Neuroendocrine Carcinoma 6 269340 -NCIT:C3770 Pancreatic Neuroendocrine Carcinoma 5 269341 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 6 269342 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 6 269343 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 6 269344 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 7 269345 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 6 269346 -NCIT:C95582 Pancreatic Large Cell Neuroendocrine Carcinoma 6 269347 -NCIT:C95583 Pancreatic Small Cell Neuroendocrine Carcinoma 6 269348 -NCIT:C5714 Pancreatic Lymphoma 5 269349 -NCIT:C5789 Pancreatic Non-Hodgkin Lymphoma 6 269350 -NCIT:C5715 Pancreatic Sarcoma 5 269351 -NCIT:C188065 Pancreatic Leiomyosarcoma 6 269352 -NCIT:C7430 Malignant Exocrine Pancreas Neoplasm 5 269353 -NCIT:C37212 Solid Pseudopapillary Neoplasm of the Pancreas 6 269354 -NCIT:C190027 Childhood Solid Pseudopapillary Neoplasm of the Pancreas 7 269355 -NCIT:C3850 Pancreatic Carcinoma 6 269356 -NCIT:C134902 Pancreatic Cancer by AJCC v6 and v7 Stage 7 269357 -NCIT:C5711 Stage IV Pancreatic Cancer AJCC v6 and v7 8 269358 -NCIT:C5729 Stage 0 Pancreatic Cancer AJCC v6 and v7 8 269359 -NCIT:C7785 Stage I Pancreatic Cancer AJCC v6 and v7 8 269360 -NCIT:C88100 Stage IA Pancreatic Cancer AJCC v6 and v7 9 269361 -NCIT:C88101 Stage IB Pancreatic Cancer AJCC v6 and v7 9 269362 -NCIT:C7786 Stage II Pancreatic Cancer AJCC v6 and v7 8 269363 -NCIT:C88102 Stage IIA Pancreatic Cancer AJCC v6 and v7 9 269364 -NCIT:C88103 Stage IIB Pancreatic Cancer AJCC v6 and v7 9 269365 -NCIT:C7787 Stage III Pancreatic Cancer AJCC v6 and v7 8 269366 -NCIT:C134909 Pancreatic Cancer by AJCC v8 Stage 7 269367 -NCIT:C134914 Stage 0 Pancreatic Cancer AJCC v8 8 269368 -NCIT:C134915 Stage I Pancreatic Cancer AJCC v8 8 269369 -NCIT:C134917 Stage IA Pancreatic Cancer AJCC v8 9 269370 -NCIT:C134920 Stage IB Pancreatic Cancer AJCC v8 9 269371 -NCIT:C134921 Stage II Pancreatic Cancer AJCC v8 8 269372 -NCIT:C134925 Stage IIA Pancreatic Cancer AJCC v8 9 269373 -NCIT:C134927 Stage IIB Pancreatic Cancer AJCC v8 9 269374 -NCIT:C134928 Stage III Pancreatic Cancer AJCC v8 8 269375 -NCIT:C134930 Stage IV Pancreatic Cancer AJCC v8 8 269376 -NCIT:C142808 Refractory Pancreatic Carcinoma 7 269377 -NCIT:C162015 Refractory Pancreatic Adenocarcinoma 8 269378 -NCIT:C165450 Refractory Pancreatic Ductal Adenocarcinoma 9 269379 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 9 269380 -NCIT:C156069 Metastatic Pancreatic Carcinoma 7 269381 -NCIT:C165452 Advanced Pancreatic Carcinoma 8 269382 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 269383 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 269384 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 8 269385 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 269386 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 269387 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 269388 -NCIT:C190770 Metastatic Pancreatic Adenosquamous Carcinoma 8 269389 -NCIT:C190771 Metastatic Pancreatic Squamous Cell Carcinoma 8 269390 -NCIT:C8933 Metastatic Pancreatic Adenocarcinoma 8 269391 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 269392 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 269393 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 269394 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 9 269395 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 269396 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 269397 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 10 269398 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 269399 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 269400 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 9 269401 -NCIT:C173813 Pancreatic Squamous Cell Carcinoma 7 269402 -NCIT:C190771 Metastatic Pancreatic Squamous Cell Carcinoma 8 269403 -NCIT:C43298 Hereditary Pancreatic Carcinoma 7 269404 -NCIT:C45843 Pancreatic Mixed Adenoneuroendocrine Carcinoma 7 269405 -NCIT:C6878 Pancreatic Mixed Acinar-Neuroendocrine Carcinoma 8 269406 -NCIT:C6879 Pancreatic Mixed Ductal-Neuroendocrine Carcinoma 8 269407 -NCIT:C95460 Pancreatic Mixed Acinar-Ductal Neuroendocrine Carcinoma 8 269408 -NCIT:C5018 Unresectable Pancreatic Carcinoma 7 269409 -NCIT:C162016 Unresectable Pancreatic Adenocarcinoma 8 269410 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 9 269411 -NCIT:C172245 Unresectable Pancreatic Ductal Adenocarcinoma 9 269412 -NCIT:C5099 Resectable Pancreatic Carcinoma 7 269413 -NCIT:C156906 Resectable Pancreatic Adenocarcinoma 8 269414 -NCIT:C151995 Resectable Pancreatic Ductal Adenocarcinoma 9 269415 -NCIT:C156907 Resectable Pancreatic Acinar Cell Carcinoma 9 269416 -NCIT:C157350 Borderline Resectable Pancreatic Adenocarcinoma 9 269417 -NCIT:C157348 Borderline Resectable Pancreatic Carcinoma 8 269418 -NCIT:C157350 Borderline Resectable Pancreatic Adenocarcinoma 9 269419 -NCIT:C174566 Resectable Pancreatic Adenosquamous Carcinoma 8 269420 -NCIT:C5721 Pancreatic Adenosquamous Carcinoma 7 269421 -NCIT:C174566 Resectable Pancreatic Adenosquamous Carcinoma 8 269422 -NCIT:C190770 Metastatic Pancreatic Adenosquamous Carcinoma 8 269423 -NCIT:C7626 Recurrent Pancreatic Carcinoma 7 269424 -NCIT:C155742 Recurrent Pancreatic Adenocarcinoma 8 269425 -NCIT:C153569 Recurrent Pancreatic Acinar Cell Carcinoma 9 269426 -NCIT:C153619 Recurrent Pancreatic Ductal Adenocarcinoma 9 269427 -NCIT:C153620 Recurrent Pancreatic Cystadenocarcinoma 9 269428 -NCIT:C8294 Pancreatic Adenocarcinoma 7 269429 -NCIT:C155742 Recurrent Pancreatic Adenocarcinoma 8 269430 -NCIT:C153569 Recurrent Pancreatic Acinar Cell Carcinoma 9 269431 -NCIT:C153619 Recurrent Pancreatic Ductal Adenocarcinoma 9 269432 -NCIT:C153620 Recurrent Pancreatic Cystadenocarcinoma 9 269433 -NCIT:C156906 Resectable Pancreatic Adenocarcinoma 8 269434 -NCIT:C151995 Resectable Pancreatic Ductal Adenocarcinoma 9 269435 -NCIT:C156907 Resectable Pancreatic Acinar Cell Carcinoma 9 269436 -NCIT:C157350 Borderline Resectable Pancreatic Adenocarcinoma 9 269437 -NCIT:C162015 Refractory Pancreatic Adenocarcinoma 8 269438 -NCIT:C165450 Refractory Pancreatic Ductal Adenocarcinoma 9 269439 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 9 269440 -NCIT:C162016 Unresectable Pancreatic Adenocarcinoma 8 269441 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 9 269442 -NCIT:C172245 Unresectable Pancreatic Ductal Adenocarcinoma 9 269443 -NCIT:C169041 Localized Pancreatic Adenocarcinoma 8 269444 -NCIT:C189009 Localized Pancreatic Ductal Adenocarcinoma 9 269445 -NCIT:C172813 Invasive Pancreatic Micropapillary Adenocarcinoma 8 269446 -NCIT:C3874 Pancreatic Cystadenocarcinoma 8 269447 -NCIT:C153620 Recurrent Pancreatic Cystadenocarcinoma 9 269448 -NCIT:C5724 Pancreatic Serous Cystadenocarcinoma 9 269449 -NCIT:C5727 Pancreatic Acinar Cell Cystadenocarcinoma 9 269450 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 10 269451 -NCIT:C5726 Pancreatic Intraductal Papillary-Mucinous Neoplasm with an Associated Invasive Carcinoma 8 269452 -NCIT:C7977 Pancreatic Acinar Cell Carcinoma 8 269453 -NCIT:C153569 Recurrent Pancreatic Acinar Cell Carcinoma 9 269454 -NCIT:C156907 Resectable Pancreatic Acinar Cell Carcinoma 9 269455 -NCIT:C190024 Childhood Pancreatic Acinar Cell Carcinoma 9 269456 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 10 269457 -NCIT:C5727 Pancreatic Acinar Cell Cystadenocarcinoma 9 269458 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 10 269459 -NCIT:C8933 Metastatic Pancreatic Adenocarcinoma 8 269460 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 269461 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 269462 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 269463 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 9 269464 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 269465 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 269466 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 10 269467 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 269468 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 269469 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 9 269470 -NCIT:C9120 Pancreatic Ductal Adenocarcinoma 8 269471 -NCIT:C151995 Resectable Pancreatic Ductal Adenocarcinoma 9 269472 -NCIT:C153619 Recurrent Pancreatic Ductal Adenocarcinoma 9 269473 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 9 269474 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 269475 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 269476 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 10 269477 -NCIT:C158961 Early Stage Pancreatic Ductal Adenocarcinoma 9 269478 -NCIT:C165450 Refractory Pancreatic Ductal Adenocarcinoma 9 269479 -NCIT:C172245 Unresectable Pancreatic Ductal Adenocarcinoma 9 269480 -NCIT:C172811 Pancreatic Poorly Cohesive Adenocarcinoma 9 269481 -NCIT:C5720 Pancreatic Signet Ring Cell Carcinoma 10 269482 -NCIT:C189009 Localized Pancreatic Ductal Adenocarcinoma 9 269483 -NCIT:C37214 Pancreatic Colloid Carcinoma 9 269484 -NCIT:C37256 Pancreatic Foamy Gland Adenocarcinoma 9 269485 -NCIT:C5722 Pancreatic Undifferentiated Carcinoma 9 269486 -NCIT:C172812 Pancreatic Undifferentiated Carcinoma with Rhabdoid Cells 10 269487 -NCIT:C5723 Pancreatic Undifferentiated Carcinoma with Osteoclast-Like Giant Cells 10 269488 -NCIT:C95426 Pancreatic Well Differentiated Ductal Adenocarcinoma 9 269489 -NCIT:C95427 Pancreatic Moderately Differentiated Ductal Adenocarcinoma 9 269490 -NCIT:C95428 Pancreatic Poorly Differentiated Ductal Adenocarcinoma 9 269491 -NCIT:C95465 Pancreatic Hepatoid Adenocarcinoma 9 269492 -NCIT:C95466 Pancreatic Medullary Carcinoma 9 269493 -NCIT:C95458 Pancreatic Mixed Acinar-Ductal Carcinoma 8 269494 -NCIT:C95507 Pancreatic Intraductal Tubulopapillary Neoplasm with an Associated Invasive Carcinoma 8 269495 -NCIT:C41246 Pancreatic Mucinous-Cystic Neoplasm with an Associated Invasive Carcinoma 6 269496 -NCIT:C4265 Pancreatoblastoma 6 269497 -NCIT:C190023 Childhood Pancreatoblastoma 7 269498 -NCIT:C8543 Metastatic Malignant Neoplasm in the Pancreas 5 269499 -NCIT:C188077 Metastatic Carcinoma in the Pancreas 6 269500 -NCIT:C9331 Malignant Gastric Neoplasm 4 269501 -NCIT:C170940 Malignant Fundus Neoplasm 5 269502 -NCIT:C8398 Gastric Fundus Carcinoma 6 269503 -NCIT:C4429 Gastric Fundus Carcinoma In Situ AJCC v6 and v7 7 269504 -NCIT:C172659 Gastroblastoma 5 269505 -NCIT:C190028 Childhood Gastroblastoma 6 269506 -NCIT:C175304 Unresectable Malignant Gastric Neoplasm 5 269507 -NCIT:C159775 Unresectable Gastric Carcinoma 6 269508 -NCIT:C154221 Unresectable Gastric Adenocarcinoma 7 269509 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 269510 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 269511 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 269512 -NCIT:C178519 Gastric Melanoma 5 269513 -NCIT:C188051 Malignant Pylorus Neoplasm 5 269514 -NCIT:C6795 Gastric Pylorus Carcinoma 6 269515 -NCIT:C4431 Gastric Pylorus Carcinoma In Situ AJCC v6 and v7 7 269516 -NCIT:C8400 Gastric Antrum Carcinoma In Situ AJCC v6 and v7 8 269517 -NCIT:C27439 Gastric Sarcoma 5 269518 -NCIT:C27200 Gastric Leiomyosarcoma 6 269519 -NCIT:C5488 Gastric Liposarcoma 6 269520 -NCIT:C5529 Gastric Kaposi Sarcoma 6 269521 -NCIT:C5624 AIDS-Related Gastric Kaposi Sarcoma 7 269522 -NCIT:C95897 Gastric Malignant Gastrointestinal Stromal Tumor 6 269523 -NCIT:C95899 Gastric Synovial Sarcoma 6 269524 -NCIT:C4636 Gastric Lymphoma 5 269525 -NCIT:C27235 Gastric Non-Hodgkin Lymphoma 6 269526 -NCIT:C5251 Gastric Burkitt Lymphoma 7 269527 -NCIT:C5253 Gastric Diffuse Large B-Cell Lymphoma 7 269528 -NCIT:C5254 Gastric T-Cell Non-Hodgkin Lymphoma 7 269529 -NCIT:C5266 Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 7 269530 -NCIT:C27763 Helicobacter Pylori-Associated Gastric Mucosa-Associated Lymphoid Tissue Lymphoma 8 269531 -NCIT:C5638 Gastric Hodgkin Lymphoma 6 269532 -NCIT:C4911 Gastric Carcinoma 5 269533 -NCIT:C118813 Childhood Gastric Carcinoma 6 269534 -NCIT:C133638 Gastric Cancer by AJCC v8 Stage 6 269535 -NCIT:C133639 Gastric Cancer by AJCC v8 Clinical Stage 7 269536 -NCIT:C133647 Clinical Stage 0 Gastric Cancer AJCC v8 8 269537 -NCIT:C133648 Clinical Stage I Gastric Cancer AJCC v8 8 269538 -NCIT:C133649 Clinical Stage II Gastric Cancer AJCC v8 8 269539 -NCIT:C133681 Clinical Stage IIA Gastric Cancer AJCC v8 9 269540 -NCIT:C133682 Clinical Stage IIB Gastric Cancer AJCC v8 9 269541 -NCIT:C133650 Clinical Stage III Gastric Cancer AJCC v8 8 269542 -NCIT:C133651 Clinical Stage IV Gastric Cancer AJCC v8 8 269543 -NCIT:C133652 Clinical Stage IVA Gastric Cancer AJCC v8 9 269544 -NCIT:C133653 Clinical Stage IVB Gastric Cancer AJCC v8 9 269545 -NCIT:C133640 Gastric Cancer by AJCC v8 Pathologic Stage 7 269546 -NCIT:C133654 Pathologic Stage 0 Gastric Cancer AJCC v8 8 269547 -NCIT:C133655 Pathologic Stage I Gastric Cancer AJCC v8 8 269548 -NCIT:C133656 Pathologic Stage IA Gastric Cancer AJCC v8 9 269549 -NCIT:C133657 Pathologic Stage IB Gastric Cancer AJCC v8 9 269550 -NCIT:C133659 Pathologic Stage II Gastric Cancer AJCC v8 8 269551 -NCIT:C133660 Pathologic Stage IIA Gastric Cancer AJCC v8 9 269552 -NCIT:C133662 Pathologic Stage IIB Gastric Cancer AJCC v8 9 269553 -NCIT:C133663 Pathologic Stage III Gastric Cancer AJCC v8 8 269554 -NCIT:C133665 Pathologic Stage IIIA Gastric Cancer AJCC v8 9 269555 -NCIT:C133666 Pathologic Stage IIIB Gastric Cancer AJCC v8 9 269556 -NCIT:C133667 Pathologic Stage IIIC Gastric Cancer AJCC v8 9 269557 -NCIT:C133668 Pathologic Stage IV Gastric Cancer AJCC v8 8 269558 -NCIT:C133641 Gastric Cancer by AJCC v8 Postneoadjuvant Therapy Stage 7 269559 -NCIT:C133670 Postneoadjuvant Therapy Stage I Gastric Cancer AJCC v8 8 269560 -NCIT:C133671 Postneoadjuvant Therapy Stage II Gastric Cancer AJCC v8 8 269561 -NCIT:C133672 Postneoadjuvant Therapy Stage III Gastric Cancer AJCC v8 8 269562 -NCIT:C133673 Postneoadjuvant Therapy Stage IV Gastric Cancer AJCC v8 8 269563 -NCIT:C147996 Refractory Gastric Carcinoma 6 269564 -NCIT:C167074 Refractory Gastric Adenocarcinoma 7 269565 -NCIT:C153320 Metastatic Gastric Carcinoma 6 269566 -NCIT:C153319 Metastatic Gastric Adenocarcinoma 7 269567 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 269568 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 269569 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 269570 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 269571 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 269572 -NCIT:C165630 Metastatic Proximal Gastric Adenocarcinoma 8 269573 -NCIT:C166121 Oligometastatic Gastric Adenocarcinoma 8 269574 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 269575 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 269576 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 7 269577 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 269578 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 269579 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 269580 -NCIT:C162772 Locally Advanced Gastric Carcinoma 7 269581 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 269582 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 269583 -NCIT:C165299 Advanced Gastric Carcinoma 7 269584 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 269585 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 269586 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 269587 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 269588 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 269589 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 7 269590 -NCIT:C156167 Localized Gastric Carcinoma 6 269591 -NCIT:C159775 Unresectable Gastric Carcinoma 6 269592 -NCIT:C154221 Unresectable Gastric Adenocarcinoma 7 269593 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 269594 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 269595 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 269596 -NCIT:C162304 EBV-Related Gastric Carcinoma 6 269597 -NCIT:C4004 Gastric Adenocarcinoma 6 269598 -NCIT:C153319 Metastatic Gastric Adenocarcinoma 7 269599 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 269600 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 269601 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 269602 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 269603 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 269604 -NCIT:C165630 Metastatic Proximal Gastric Adenocarcinoma 8 269605 -NCIT:C166121 Oligometastatic Gastric Adenocarcinoma 8 269606 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 269607 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 269608 -NCIT:C154221 Unresectable Gastric Adenocarcinoma 7 269609 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 269610 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 269611 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 269612 -NCIT:C154622 Recurrent Gastric Adenocarcinoma 7 269613 -NCIT:C165628 Proximal Gastric Adenocarcinoma 7 269614 -NCIT:C165630 Metastatic Proximal Gastric Adenocarcinoma 8 269615 -NCIT:C167074 Refractory Gastric Adenocarcinoma 7 269616 -NCIT:C43527 Sporadic Gastric Adenocarcinoma 7 269617 -NCIT:C27131 Early Gastric Cancer 8 269618 -NCIT:C95763 Gastric Intramucosal Adenocarcinoma 9 269619 -NCIT:C27765 Helicobacter Pylori-Related Gastric Adenocarcinoma 8 269620 -NCIT:C43529 Sporadic Gastric Diffuse Adenocarcinoma 8 269621 -NCIT:C5247 Gastric Cardia Adenocarcinoma 8 269622 -NCIT:C5248 Gastric Mucinous Adenocarcinoma 8 269623 -NCIT:C5472 Gastric Papillary Adenocarcinoma 8 269624 -NCIT:C5473 Gastric Tubular Adenocarcinoma 8 269625 -NCIT:C65194 Gastric Parietal Cell Adenocarcinoma 8 269626 -NCIT:C67526 Gastric Mixed Adenocarcinoma 8 269627 -NCIT:C9157 Gastric Intestinal-Type Adenocarcinoma 8 269628 -NCIT:C95743 Gastric Poorly Cohesive Adenocarcinoma 8 269629 -NCIT:C5250 Gastric Signet Ring Cell Adenocarcinoma 9 269630 -NCIT:C95747 Gastric Hepatoid Adenocarcinoma 8 269631 -NCIT:C95748 Gastric Carcinoma with Lymphoid Stroma 8 269632 -NCIT:C9159 Gastric Diffuse Adenocarcinoma 7 269633 -NCIT:C43295 Hereditary Gastric Diffuse Adenocarcinoma 8 269634 -NCIT:C43529 Sporadic Gastric Diffuse Adenocarcinoma 8 269635 -NCIT:C5474 Gastric Adenosquamous Carcinoma 6 269636 -NCIT:C5475 Gastric Squamous Cell Carcinoma 6 269637 -NCIT:C150034 Gastric Cardia Squamous Cell Carcinoma 7 269638 -NCIT:C5476 Gastric Undifferentiated Carcinoma 6 269639 -NCIT:C6794 Gastric Cardia Carcinoma 6 269640 -NCIT:C150034 Gastric Cardia Squamous Cell Carcinoma 7 269641 -NCIT:C4428 Gastric Cardia Carcinoma In Situ AJCC v6 and v7 7 269642 -NCIT:C5247 Gastric Cardia Adenocarcinoma 7 269643 -NCIT:C6795 Gastric Pylorus Carcinoma 6 269644 -NCIT:C4431 Gastric Pylorus Carcinoma In Situ AJCC v6 and v7 7 269645 -NCIT:C8400 Gastric Antrum Carcinoma In Situ AJCC v6 and v7 8 269646 -NCIT:C8398 Gastric Fundus Carcinoma 6 269647 -NCIT:C4429 Gastric Fundus Carcinoma In Situ AJCC v6 and v7 7 269648 -NCIT:C8399 Gastric Body Carcinoma 6 269649 -NCIT:C4430 Gastric Body Carcinoma In Situ AJCC v6 and v7 7 269650 -NCIT:C90503 Gastric Cancer by AJCC v6 Stage 6 269651 -NCIT:C7772 Stage I Gastric Cancer AJCC v6 7 269652 -NCIT:C7773 Stage II Gastric Cancer AJCC v6 7 269653 -NCIT:C7774 Stage III Gastric Cancer AJCC v6 7 269654 -NCIT:C7788 Stage 0 Gastric Cancer AJCC v6 and v7 7 269655 -NCIT:C4428 Gastric Cardia Carcinoma In Situ AJCC v6 and v7 8 269656 -NCIT:C4429 Gastric Fundus Carcinoma In Situ AJCC v6 and v7 8 269657 -NCIT:C4430 Gastric Body Carcinoma In Situ AJCC v6 and v7 8 269658 -NCIT:C4431 Gastric Pylorus Carcinoma In Situ AJCC v6 and v7 8 269659 -NCIT:C8400 Gastric Antrum Carcinoma In Situ AJCC v6 and v7 9 269660 -NCIT:C9036 Stage IV Gastric Cancer AJCC v6 7 269661 -NCIT:C91222 Gastric Cancer by AJCC v7 Stage 6 269662 -NCIT:C7788 Stage 0 Gastric Cancer AJCC v6 and v7 7 269663 -NCIT:C4428 Gastric Cardia Carcinoma In Situ AJCC v6 and v7 8 269664 -NCIT:C4429 Gastric Fundus Carcinoma In Situ AJCC v6 and v7 8 269665 -NCIT:C4430 Gastric Body Carcinoma In Situ AJCC v6 and v7 8 269666 -NCIT:C4431 Gastric Pylorus Carcinoma In Situ AJCC v6 and v7 8 269667 -NCIT:C8400 Gastric Antrum Carcinoma In Situ AJCC v6 and v7 9 269668 -NCIT:C89856 Stage I Gastric Cancer AJCC v7 7 269669 -NCIT:C5468 Stage IA Gastric Cancer AJCC v7 8 269670 -NCIT:C5469 Stage IB Gastric Cancer AJCC v7 8 269671 -NCIT:C89859 Stage II Gastric Cancer AJCC v7 7 269672 -NCIT:C87775 Stage IIA Gastric Cancer AJCC v7 8 269673 -NCIT:C87776 Stage IIB Gastric Cancer AJCC v7 8 269674 -NCIT:C89860 Stage III Gastric Cancer AJCC v7 7 269675 -NCIT:C5470 Stage IIIB Gastric Cancer AJCC v7 8 269676 -NCIT:C5471 Stage IIIA Gastric Cancer AJCC v7 8 269677 -NCIT:C87777 Stage IIIC Gastric Cancer AJCC v7 8 269678 -NCIT:C89861 Stage IV Gastric Cancer AJCC v7 7 269679 -NCIT:C9237 Recurrent Gastric Carcinoma 6 269680 -NCIT:C154622 Recurrent Gastric Adenocarcinoma 7 269681 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 7 269682 -NCIT:C190198 Locally Recurrent Gastric Carcinoma 7 269683 -NCIT:C95884 Gastric Neuroendocrine Carcinoma 6 269684 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 7 269685 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 269686 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 269687 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 269688 -NCIT:C6764 Gastric Small Cell Neuroendocrine Carcinoma 7 269689 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 269690 -NCIT:C95885 Gastric Large Cell Neuroendocrine Carcinoma 7 269691 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 269692 -NCIT:C95886 Gastric Mixed Adenoneuroendocrine Carcinoma 6 269693 -NCIT:C5484 Malignant Gastric Granular Cell Tumor 5 269694 -NCIT:C5486 Malignant Gastric Germ Cell Tumor 5 269695 -NCIT:C95749 Gastric Choriocarcinoma 6 269696 -NCIT:C9354 Recurrent Malignant Gastric Neoplasm 5 269697 -NCIT:C9237 Recurrent Gastric Carcinoma 6 269698 -NCIT:C154622 Recurrent Gastric Adenocarcinoma 7 269699 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 7 269700 -NCIT:C190198 Locally Recurrent Gastric Carcinoma 7 269701 -NCIT:C95903 Metastatic Malignant Neoplasm in the Stomach 5 269702 -NCIT:C9333 Malignant Appendix Neoplasm 4 269703 -NCIT:C5513 Appendix Lymphoma 5 269704 -NCIT:C9330 Appendix Carcinoma 5 269705 -NCIT:C133733 Appendix Carcinoma by AJCC v7 Stage 6 269706 -NCIT:C4593 Stage 0 Appendix Carcinoma AJCC v7 7 269707 -NCIT:C87798 Stage I Appendix Carcinoma AJCC v7 7 269708 -NCIT:C87799 Stage IIA Appendix Carcinoma AJCC v7 7 269709 -NCIT:C87800 Stage IIB Appendix Carcinoma AJCC v7 7 269710 -NCIT:C87801 Stage IIC Appendix Carcinoma AJCC v7 7 269711 -NCIT:C87803 Stage IIIA Appendix Carcinoma AJCC v7 7 269712 -NCIT:C87804 Stage IIIB Appendix Carcinoma AJCC v7 7 269713 -NCIT:C87805 Stage IIIC Appendix Carcinoma AJCC v7 7 269714 -NCIT:C87806 Stage IVA Appendix Carcinoma AJCC v7 7 269715 -NCIT:C87807 Stage IVB Appendix Carcinoma AJCC v7 7 269716 -NCIT:C87808 Stage IVC Appendix Carcinoma AJCC v7 7 269717 -NCIT:C134117 Appendix Carcinoma by AJCC v8 Stage 6 269718 -NCIT:C134118 Stage 0 Appendix Carcinoma AJCC v8 7 269719 -NCIT:C134119 Stage 0 Low Grade Appendix Mucinous Neoplasm (LAMN) AJCC v8 7 269720 -NCIT:C134120 Stage I Appendix Carcinoma AJCC v8 7 269721 -NCIT:C134121 Stage II Appendix Carcinoma AJCC v8 7 269722 -NCIT:C134122 Stage IIA Appendix Carcinoma AJCC v8 8 269723 -NCIT:C134123 Stage IIB Appendix Carcinoma AJCC v8 8 269724 -NCIT:C134124 Stage IIC Appendix Carcinoma AJCC v8 8 269725 -NCIT:C134125 Stage III Appendix Carcinoma AJCC v8 7 269726 -NCIT:C134126 Stage IIIA Appendix Carcinoma AJCC v8 8 269727 -NCIT:C134127 Stage IIIB Appendix Carcinoma AJCC v8 8 269728 -NCIT:C134128 Stage IIIC Appendix Carcinoma AJCC v8 8 269729 -NCIT:C134129 Stage IV Appendix Carcinoma AJCC v8 7 269730 -NCIT:C134130 Stage IVA Appendix Carcinoma AJCC v8 8 269731 -NCIT:C134131 Stage IVB Appendix Carcinoma AJCC v8 8 269732 -NCIT:C134132 Stage IVC Appendix Carcinoma AJCC v8 8 269733 -NCIT:C153802 Recurrent Appendix Carcinoma 6 269734 -NCIT:C179174 Recurrent Appendix Adenocarcinoma 7 269735 -NCIT:C153579 Recurrent Appendix Mucinous Adenocarcinoma 8 269736 -NCIT:C162275 Metastatic Appendix Carcinoma 6 269737 -NCIT:C182104 Metastatic Appendix Adenocarcinoma 7 269738 -NCIT:C162274 Metastatic Appendix Mucinous Adenocarcinoma 8 269739 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 269740 -NCIT:C179177 Refractory Appendix Carcinoma 6 269741 -NCIT:C179178 Refractory Appendix Adenocarcinoma 7 269742 -NCIT:C43556 Appendix Undifferentiated Carcinoma 6 269743 -NCIT:C43564 Appendix Mixed Adenoneuroendocrine Carcinoma 6 269744 -NCIT:C3689 Appendix Goblet Cell Adenocarcinoma 7 269745 -NCIT:C7718 Appendix Adenocarcinoma 6 269746 -NCIT:C179174 Recurrent Appendix Adenocarcinoma 7 269747 -NCIT:C153579 Recurrent Appendix Mucinous Adenocarcinoma 8 269748 -NCIT:C179178 Refractory Appendix Adenocarcinoma 7 269749 -NCIT:C182104 Metastatic Appendix Adenocarcinoma 7 269750 -NCIT:C162274 Metastatic Appendix Mucinous Adenocarcinoma 8 269751 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 269752 -NCIT:C43554 Appendix Signet Ring Cell Carcinoma 7 269753 -NCIT:C43558 Appendix Mucinous Adenocarcinoma 7 269754 -NCIT:C153579 Recurrent Appendix Mucinous Adenocarcinoma 8 269755 -NCIT:C162274 Metastatic Appendix Mucinous Adenocarcinoma 8 269756 -NCIT:C5511 Appendix Mucinous Cystadenocarcinoma 8 269757 -NCIT:C96425 Appendix Neuroendocrine Carcinoma 6 269758 -NCIT:C43555 Appendix Small Cell Neuroendocrine Carcinoma 7 269759 -NCIT:C96426 Appendix Large Cell Neuroendocrine Carcinoma 7 269760 -NCIT:C96434 Appendix Kaposi Sarcoma 5 269761 -NCIT:C96435 Appendix Leiomyosarcoma 5 269762 -NCIT:C96963 Digestive System Carcinoma 4 269763 -NCIT:C133839 Metastatic Digestive System Carcinoma 5 269764 -NCIT:C150577 Metastatic Gastroesophageal Junction Adenocarcinoma 6 269765 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 7 269766 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 7 269767 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 269768 -NCIT:C151904 Refractory Metastatic Digestive System Carcinoma 6 269769 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 7 269770 -NCIT:C151905 Recurrent Metastatic Digestive System Carcinoma 6 269771 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 7 269772 -NCIT:C153320 Metastatic Gastric Carcinoma 6 269773 -NCIT:C153319 Metastatic Gastric Adenocarcinoma 7 269774 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 269775 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 269776 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 269777 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 269778 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 269779 -NCIT:C165630 Metastatic Proximal Gastric Adenocarcinoma 8 269780 -NCIT:C166121 Oligometastatic Gastric Adenocarcinoma 8 269781 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 269782 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 269783 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 7 269784 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 269785 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 269786 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 269787 -NCIT:C162772 Locally Advanced Gastric Carcinoma 7 269788 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 269789 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 269790 -NCIT:C165299 Advanced Gastric Carcinoma 7 269791 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 269792 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 269793 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 269794 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 269795 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 269796 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 7 269797 -NCIT:C153358 Locally Advanced Digestive System Carcinoma 6 269798 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 7 269799 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 269800 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 269801 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 269802 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 7 269803 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 269804 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 7 269805 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 8 269806 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 269807 -NCIT:C170778 Locally Advanced Rectal Carcinoma 8 269808 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 269809 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 269810 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 269811 -NCIT:C170910 Locally Advanced Colon Carcinoma 8 269812 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 269813 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 269814 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 269815 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 269816 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 269817 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 269818 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 269819 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 269820 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 269821 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 269822 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 269823 -NCIT:C162772 Locally Advanced Gastric Carcinoma 7 269824 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 269825 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 269826 -NCIT:C168976 Locally Advanced Esophageal Carcinoma 7 269827 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 269828 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 269829 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 269830 -NCIT:C168977 Locally Advanced Anal Carcinoma 7 269831 -NCIT:C170459 Locally Advanced Pancreatobiliary Carcinoma 7 269832 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 8 269833 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 269834 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 269835 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 269836 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 269837 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 269838 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 269839 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 269840 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 269841 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 8 269842 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 269843 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 269844 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 269845 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 8 269846 -NCIT:C171298 Locally Advanced Liver Carcinoma 7 269847 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 269848 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 8 269849 -NCIT:C154088 Metastatic Liver Carcinoma 6 269850 -NCIT:C154091 Metastatic Hepatocellular Carcinoma 7 269851 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 8 269852 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 269853 -NCIT:C167336 Advanced Hepatocellular Carcinoma 8 269854 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 269855 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 269856 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 269857 -NCIT:C171298 Locally Advanced Liver Carcinoma 7 269858 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 269859 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 8 269860 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 7 269861 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 8 269862 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 8 269863 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 6 269864 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 7 269865 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 269866 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 269867 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 269868 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 7 269869 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 269870 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 269871 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 269872 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 7 269873 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 269874 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 269875 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 269876 -NCIT:C156073 Metastatic Esophageal Carcinoma 6 269877 -NCIT:C156074 Metastatic Esophageal Adenocarcinoma 7 269878 -NCIT:C166120 Oligometastatic Esophageal Adenocarcinoma 8 269879 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 269880 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 269881 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 269882 -NCIT:C172249 Metastatic Distal Esophagus Adenocarcinoma 8 269883 -NCIT:C156075 Metastatic Esophageal Squamous Cell Carcinoma 7 269884 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 269885 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 269886 -NCIT:C160599 Advanced Esophageal Carcinoma 7 269887 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 269888 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 269889 -NCIT:C168976 Locally Advanced Esophageal Carcinoma 7 269890 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 269891 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 269892 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 269893 -NCIT:C156096 Metastatic Colorectal Carcinoma 6 269894 -NCIT:C142867 Metastatic Microsatellite Stable Colorectal Carcinoma 7 269895 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 8 269896 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 8 269897 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 269898 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 8 269899 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 269900 -NCIT:C153224 Colorectal Carcinoma Metastatic in the Lung 7 269901 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 8 269902 -NCIT:C156097 Metastatic Colon Carcinoma 7 269903 -NCIT:C160819 Metastatic Colon Adenocarcinoma 8 269904 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 269905 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 269906 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 269907 -NCIT:C167238 Advanced Colon Carcinoma 8 269908 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 269909 -NCIT:C170910 Locally Advanced Colon Carcinoma 8 269910 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 269911 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 269912 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 269913 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 8 269914 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 269915 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 8 269916 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 8 269917 -NCIT:C156098 Metastatic Rectal Carcinoma 7 269918 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 8 269919 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 8 269920 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 269921 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 269922 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 269923 -NCIT:C170777 Advanced Rectal Carcinoma 8 269924 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 269925 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 269926 -NCIT:C170778 Locally Advanced Rectal Carcinoma 8 269927 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 269928 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 269929 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 269930 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 8 269931 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 269932 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 269933 -NCIT:C157366 Colorectal Carcinoma Metastatic in the Liver 7 269934 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 8 269935 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 8 269936 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 8 269937 -NCIT:C161048 Metastatic Colorectal Adenocarcinoma 7 269938 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 8 269939 -NCIT:C160819 Metastatic Colon Adenocarcinoma 8 269940 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 269941 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 269942 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 269943 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 8 269944 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 269945 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 269946 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 269947 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 8 269948 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 269949 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 269950 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 269951 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 269952 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 269953 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 269954 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 269955 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 269956 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 269957 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 269958 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 269959 -NCIT:C162475 Advanced Colorectal Carcinoma 7 269960 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 8 269961 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 269962 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 269963 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 269964 -NCIT:C167238 Advanced Colon Carcinoma 8 269965 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 269966 -NCIT:C170777 Advanced Rectal Carcinoma 8 269967 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 269968 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 269969 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 7 269970 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 8 269971 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 269972 -NCIT:C170778 Locally Advanced Rectal Carcinoma 8 269973 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 269974 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 269975 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 269976 -NCIT:C170910 Locally Advanced Colon Carcinoma 8 269977 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 269978 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 269979 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 269980 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 269981 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 269982 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 269983 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 269984 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 269985 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 269986 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 269987 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 269988 -NCIT:C185165 Oligometastatic Colorectal Carcinoma 7 269989 -NCIT:C156746 Advanced Digestive System Carcinoma 6 269990 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 7 269991 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 269992 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 269993 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 7 269994 -NCIT:C160599 Advanced Esophageal Carcinoma 7 269995 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 269996 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 269997 -NCIT:C162475 Advanced Colorectal Carcinoma 7 269998 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 8 269999 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 270000 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 270001 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 270002 -NCIT:C167238 Advanced Colon Carcinoma 8 270003 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 270004 -NCIT:C170777 Advanced Rectal Carcinoma 8 270005 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 270006 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 270007 -NCIT:C165299 Advanced Gastric Carcinoma 7 270008 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 270009 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 270010 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 270011 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 270012 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 270013 -NCIT:C167336 Advanced Hepatocellular Carcinoma 7 270014 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 8 270015 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 8 270016 -NCIT:C170515 Advanced Anal Carcinoma 7 270017 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 8 270018 -NCIT:C171330 Advanced Pancreatobiliary Carcinoma 7 270019 -NCIT:C165452 Advanced Pancreatic Carcinoma 8 270020 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 270021 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 270022 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 8 270023 -NCIT:C171331 Advanced Biliary Tract Carcinoma 8 270024 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 270025 -NCIT:C162752 Advanced Cholangiocarcinoma 10 270026 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 270027 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 270028 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 270029 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 270030 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 270031 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 270032 -NCIT:C182105 Advanced Appendix Adenocarcinoma 7 270033 -NCIT:C162275 Metastatic Appendix Carcinoma 6 270034 -NCIT:C182104 Metastatic Appendix Adenocarcinoma 7 270035 -NCIT:C162274 Metastatic Appendix Mucinous Adenocarcinoma 8 270036 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 270037 -NCIT:C163967 Metastatic Digestive System Mixed Adenoneuroendocrine Carcinoma 6 270038 -NCIT:C170458 Metastatic Pancreatobiliary Carcinoma 6 270039 -NCIT:C156069 Metastatic Pancreatic Carcinoma 7 270040 -NCIT:C165452 Advanced Pancreatic Carcinoma 8 270041 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 270042 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 270043 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 8 270044 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 270045 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 270046 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 270047 -NCIT:C190770 Metastatic Pancreatic Adenosquamous Carcinoma 8 270048 -NCIT:C190771 Metastatic Pancreatic Squamous Cell Carcinoma 8 270049 -NCIT:C8933 Metastatic Pancreatic Adenocarcinoma 8 270050 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 270051 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 270052 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 270053 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 9 270054 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 270055 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 270056 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 10 270057 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 270058 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 270059 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 9 270060 -NCIT:C162751 Metastatic Biliary Tract Carcinoma 7 270061 -NCIT:C142869 Metastatic Bile Duct Carcinoma 8 270062 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 270063 -NCIT:C162752 Advanced Cholangiocarcinoma 10 270064 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 270065 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 270066 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 270067 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 270068 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 270069 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 270070 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 270071 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 270072 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 270073 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 270074 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 270075 -NCIT:C157623 Metastatic Cholangiocarcinoma 9 270076 -NCIT:C162752 Advanced Cholangiocarcinoma 10 270077 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 270078 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 270079 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 270080 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 270081 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 270082 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 270083 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 10 270084 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 270085 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 10 270086 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 270087 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 270088 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 10 270089 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 270090 -NCIT:C185071 Metastatic Extrahepatic Bile Duct Carcinoma 9 270091 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 10 270092 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 11 270093 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 270094 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 270095 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 270096 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 270097 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 270098 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 270099 -NCIT:C162754 Metastatic Gallbladder Carcinoma 8 270100 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 270101 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 270102 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 270103 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 8 270104 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 270105 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 270106 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 270107 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 270108 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 270109 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 270110 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 270111 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 270112 -NCIT:C171331 Advanced Biliary Tract Carcinoma 8 270113 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 270114 -NCIT:C162752 Advanced Cholangiocarcinoma 10 270115 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 270116 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 270117 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 270118 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 270119 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 270120 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 270121 -NCIT:C170459 Locally Advanced Pancreatobiliary Carcinoma 7 270122 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 8 270123 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 270124 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 270125 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 270126 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 270127 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 270128 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 270129 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 270130 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 270131 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 8 270132 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 270133 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 270134 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 270135 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 8 270136 -NCIT:C171326 Metastatic Ampulla of Vater Carcinoma 7 270137 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 8 270138 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 8 270139 -NCIT:C171330 Advanced Pancreatobiliary Carcinoma 7 270140 -NCIT:C165452 Advanced Pancreatic Carcinoma 8 270141 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 270142 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 270143 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 8 270144 -NCIT:C171331 Advanced Biliary Tract Carcinoma 8 270145 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 270146 -NCIT:C162752 Advanced Cholangiocarcinoma 10 270147 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 270148 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 270149 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 270150 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 270151 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 270152 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 270153 -NCIT:C170514 Metastatic Anal Carcinoma 6 270154 -NCIT:C168977 Locally Advanced Anal Carcinoma 7 270155 -NCIT:C169103 Metastatic Anal Squamous Cell Carcinoma 7 270156 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 270157 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 270158 -NCIT:C170515 Advanced Anal Carcinoma 7 270159 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 8 270160 -NCIT:C5612 Metastatic Anal Canal Carcinoma 7 270161 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 270162 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 270163 -NCIT:C8637 Metastatic Small Intestinal Carcinoma 6 270164 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 7 270165 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 270166 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 7 270167 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 270168 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 270169 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 270170 -NCIT:C8934 Metastatic Small Intestinal Adenocarcinoma 7 270171 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 270172 -NCIT:C151906 Refractory Digestive System Carcinoma 5 270173 -NCIT:C137857 Refractory Anal Carcinoma 6 270174 -NCIT:C173334 Refractory Anal Canal Squamous Cell Carcinoma 7 270175 -NCIT:C147982 Refractory Colorectal Carcinoma 6 270176 -NCIT:C153351 Refractory Colon Carcinoma 7 270177 -NCIT:C162155 Refractory Colon Adenocarcinoma 8 270178 -NCIT:C162154 Refractory Colorectal Adenocarcinoma 7 270179 -NCIT:C162155 Refractory Colon Adenocarcinoma 8 270180 -NCIT:C162157 Refractory Rectal Adenocarcinoma 8 270181 -NCIT:C162156 Refractory Rectal Carcinoma 7 270182 -NCIT:C162157 Refractory Rectal Adenocarcinoma 8 270183 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 8 270184 -NCIT:C173332 Refractory Microsatellite Stable Colorectal Carcinoma 7 270185 -NCIT:C147996 Refractory Gastric Carcinoma 6 270186 -NCIT:C167074 Refractory Gastric Adenocarcinoma 7 270187 -NCIT:C151904 Refractory Metastatic Digestive System Carcinoma 6 270188 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 7 270189 -NCIT:C153352 Refractory Liver Carcinoma 6 270190 -NCIT:C162450 Refractory Hepatocellular Carcinoma 7 270191 -NCIT:C188887 Refractory Fibrolamellar Carcinoma 8 270192 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 7 270193 -NCIT:C153356 Refractory Small Intestinal Carcinoma 6 270194 -NCIT:C155937 Refractory Digestive System Neuroendocrine Carcinoma 6 270195 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 7 270196 -NCIT:C162538 Refractory Gastroesophageal Junction Adenocarcinoma 6 270197 -NCIT:C171604 Refractory Esophageal Carcinoma 6 270198 -NCIT:C171606 Refractory Esophageal Squamous Cell Carcinoma 7 270199 -NCIT:C176892 Refractory Esophageal Adenocarcinoma 7 270200 -NCIT:C179177 Refractory Appendix Carcinoma 6 270201 -NCIT:C179178 Refractory Appendix Adenocarcinoma 7 270202 -NCIT:C185305 Refractory Pancreatobiliary Carcinoma 6 270203 -NCIT:C142808 Refractory Pancreatic Carcinoma 7 270204 -NCIT:C162015 Refractory Pancreatic Adenocarcinoma 8 270205 -NCIT:C165450 Refractory Pancreatic Ductal Adenocarcinoma 9 270206 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 9 270207 -NCIT:C162750 Refractory Biliary Tract Carcinoma 7 270208 -NCIT:C153355 Refractory Bile Duct Carcinoma 8 270209 -NCIT:C158101 Refractory Cholangiocarcinoma 9 270210 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 10 270211 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 270212 -NCIT:C175437 Refractory Extrahepatic Bile Duct Carcinoma 9 270213 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 270214 -NCIT:C162753 Refractory Gallbladder Carcinoma 8 270215 -NCIT:C175436 Refractory Ampulla of Vater Carcinoma 7 270216 -NCIT:C155903 Unresectable Digestive System Carcinoma 5 270217 -NCIT:C128563 Unresectable Esophageal Carcinoma 6 270218 -NCIT:C171608 Unresectable Esophageal Squamous Cell Carcinoma 7 270219 -NCIT:C173162 Unresectable Esophageal Adenocarcinoma 7 270220 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 270221 -NCIT:C172248 Unresectable Distal Esophagus Adenocarcinoma 8 270222 -NCIT:C129654 Unresectable Digestive System Adenocarcinoma 6 270223 -NCIT:C150578 Unresectable Gastroesophageal Junction Adenocarcinoma 7 270224 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 270225 -NCIT:C154221 Unresectable Gastric Adenocarcinoma 7 270226 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 270227 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 270228 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 270229 -NCIT:C162016 Unresectable Pancreatic Adenocarcinoma 7 270230 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 8 270231 -NCIT:C172245 Unresectable Pancreatic Ductal Adenocarcinoma 8 270232 -NCIT:C165171 Unresectable Liver and Intrahepatic Bile Duct Carcinoma 7 270233 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 8 270234 -NCIT:C27345 Unresectable Hepatocellular Carcinoma 8 270235 -NCIT:C162602 Unresectable Fibrolamellar Carcinoma 9 270236 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 9 270237 -NCIT:C7878 Localized Unresectable Adult Liver Carcinoma 8 270238 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 9 270239 -NCIT:C171585 Unresectable Colorectal Adenocarcinoma 7 270240 -NCIT:C162116 Unresectable Colon Adenocarcinoma 8 270241 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 270242 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 8 270243 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 270244 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 270245 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 270246 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 270247 -NCIT:C173162 Unresectable Esophageal Adenocarcinoma 7 270248 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 270249 -NCIT:C172248 Unresectable Distal Esophagus Adenocarcinoma 8 270250 -NCIT:C175516 Unresectable Small Intestinal Adenocarcinoma 7 270251 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 8 270252 -NCIT:C189064 Unresectable Gallbladder Adenocarcinoma 7 270253 -NCIT:C189065 Unresectable Ampulla of Vater Adenocarcinoma 7 270254 -NCIT:C27324 Unresectable Cholangiocarcinoma 7 270255 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 8 270256 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 8 270257 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 8 270258 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 8 270259 -NCIT:C155935 Unresectable Digestive System Neuroendocrine Carcinoma 6 270260 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 7 270261 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 7 270262 -NCIT:C159775 Unresectable Gastric Carcinoma 6 270263 -NCIT:C154221 Unresectable Gastric Adenocarcinoma 7 270264 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 270265 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 270266 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 270267 -NCIT:C162600 Unresectable Colorectal Carcinoma 6 270268 -NCIT:C171585 Unresectable Colorectal Adenocarcinoma 7 270269 -NCIT:C162116 Unresectable Colon Adenocarcinoma 8 270270 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 270271 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 8 270272 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 270273 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 270274 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 270275 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 270276 -NCIT:C180406 Unresectable Colon Carcinoma 7 270277 -NCIT:C162116 Unresectable Colon Adenocarcinoma 8 270278 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 270279 -NCIT:C165172 Unresectable Ampulla of Vater Carcinoma 6 270280 -NCIT:C189065 Unresectable Ampulla of Vater Adenocarcinoma 7 270281 -NCIT:C172808 Unresectable Digestive System Mixed Adenoneuroendocrine Carcinoma 6 270282 -NCIT:C173156 Unresectable Anal Squamous Cell Carcinoma 6 270283 -NCIT:C175384 Unresectable Anal Canal Squamous Cell Carcinoma 7 270284 -NCIT:C176042 Unresectable Biliary Tract Carcinoma 6 270285 -NCIT:C171322 Unresectable Bile Duct Carcinoma 7 270286 -NCIT:C27324 Unresectable Cholangiocarcinoma 8 270287 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 9 270288 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 9 270289 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 9 270290 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 9 270291 -NCIT:C7892 Unresectable Extrahepatic Bile Duct Carcinoma 8 270292 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 9 270293 -NCIT:C7890 Unresectable Gallbladder Carcinoma 7 270294 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 8 270295 -NCIT:C189064 Unresectable Gallbladder Adenocarcinoma 8 270296 -NCIT:C5018 Unresectable Pancreatic Carcinoma 6 270297 -NCIT:C162016 Unresectable Pancreatic Adenocarcinoma 7 270298 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 8 270299 -NCIT:C172245 Unresectable Pancreatic Ductal Adenocarcinoma 8 270300 -NCIT:C8638 Unresectable Small Intestinal Carcinoma 6 270301 -NCIT:C175516 Unresectable Small Intestinal Adenocarcinoma 7 270302 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 8 270303 -NCIT:C156909 Resectable Digestive System Carcinoma 5 270304 -NCIT:C156910 Resectable Bile Duct Adenocarcinoma 6 270305 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 7 270306 -NCIT:C27326 Resectable Cholangiocarcinoma 7 270307 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 8 270308 -NCIT:C162257 Resectable Colorectal Carcinoma 6 270309 -NCIT:C167237 Resectable Colon Carcinoma 7 270310 -NCIT:C165293 Resectable Liver and Intrahepatic Bile Duct Carcinoma 6 270311 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 7 270312 -NCIT:C7691 Resectable Hepatocellular Carcinoma 7 270313 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 8 270314 -NCIT:C7877 Localized Resectable Adult Liver Carcinoma 7 270315 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 8 270316 -NCIT:C5099 Resectable Pancreatic Carcinoma 6 270317 -NCIT:C156906 Resectable Pancreatic Adenocarcinoma 7 270318 -NCIT:C151995 Resectable Pancreatic Ductal Adenocarcinoma 8 270319 -NCIT:C156907 Resectable Pancreatic Acinar Cell Carcinoma 8 270320 -NCIT:C157350 Borderline Resectable Pancreatic Adenocarcinoma 8 270321 -NCIT:C157348 Borderline Resectable Pancreatic Carcinoma 7 270322 -NCIT:C157350 Borderline Resectable Pancreatic Adenocarcinoma 8 270323 -NCIT:C174566 Resectable Pancreatic Adenosquamous Carcinoma 7 270324 -NCIT:C8639 Resectable Small Intestinal Carcinoma 6 270325 -NCIT:C27323 Resectable Duodenal Carcinoma 7 270326 -NCIT:C169108 Resectable Periampullary Adenocarcinoma 8 270327 -NCIT:C8640 Resectable Extrahepatic Bile Duct Carcinoma 6 270328 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 7 270329 -NCIT:C166418 Pancreatobiliary Carcinoma 5 270330 -NCIT:C156781 Biliary Tract Carcinoma 6 270331 -NCIT:C156782 Recurrent Biliary Tract Carcinoma 7 270332 -NCIT:C153360 Recurrent Bile Duct Carcinoma 8 270333 -NCIT:C27325 Recurrent Cholangiocarcinoma 9 270334 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 10 270335 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 10 270336 -NCIT:C7893 Recurrent Extrahepatic Bile Duct Carcinoma 9 270337 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 10 270338 -NCIT:C4008 Recurrent Gallbladder Carcinoma 8 270339 -NCIT:C162750 Refractory Biliary Tract Carcinoma 7 270340 -NCIT:C153355 Refractory Bile Duct Carcinoma 8 270341 -NCIT:C158101 Refractory Cholangiocarcinoma 9 270342 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 10 270343 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 270344 -NCIT:C175437 Refractory Extrahepatic Bile Duct Carcinoma 9 270345 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 270346 -NCIT:C162753 Refractory Gallbladder Carcinoma 8 270347 -NCIT:C162751 Metastatic Biliary Tract Carcinoma 7 270348 -NCIT:C142869 Metastatic Bile Duct Carcinoma 8 270349 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 270350 -NCIT:C162752 Advanced Cholangiocarcinoma 10 270351 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 270352 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 270353 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 270354 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 270355 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 270356 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 270357 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 270358 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 270359 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 270360 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 270361 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 270362 -NCIT:C157623 Metastatic Cholangiocarcinoma 9 270363 -NCIT:C162752 Advanced Cholangiocarcinoma 10 270364 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 270365 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 270366 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 270367 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 270368 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 270369 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 270370 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 10 270371 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 270372 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 10 270373 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 270374 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 270375 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 10 270376 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 270377 -NCIT:C185071 Metastatic Extrahepatic Bile Duct Carcinoma 9 270378 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 10 270379 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 11 270380 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 270381 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 270382 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 270383 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 270384 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 270385 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 270386 -NCIT:C162754 Metastatic Gallbladder Carcinoma 8 270387 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 270388 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 270389 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 270390 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 8 270391 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 270392 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 270393 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 270394 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 270395 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 270396 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 270397 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 270398 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 270399 -NCIT:C171331 Advanced Biliary Tract Carcinoma 8 270400 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 270401 -NCIT:C162752 Advanced Cholangiocarcinoma 10 270402 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 270403 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 270404 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 270405 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 270406 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 270407 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 270408 -NCIT:C176042 Unresectable Biliary Tract Carcinoma 7 270409 -NCIT:C171322 Unresectable Bile Duct Carcinoma 8 270410 -NCIT:C27324 Unresectable Cholangiocarcinoma 9 270411 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 10 270412 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 10 270413 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 10 270414 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 10 270415 -NCIT:C7892 Unresectable Extrahepatic Bile Duct Carcinoma 9 270416 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 10 270417 -NCIT:C7890 Unresectable Gallbladder Carcinoma 8 270418 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 9 270419 -NCIT:C189064 Unresectable Gallbladder Adenocarcinoma 9 270420 -NCIT:C27814 Bile Duct Carcinoma 7 270421 -NCIT:C142869 Metastatic Bile Duct Carcinoma 8 270422 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 270423 -NCIT:C162752 Advanced Cholangiocarcinoma 10 270424 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 270425 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 270426 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 270427 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 270428 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 270429 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 270430 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 270431 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 270432 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 270433 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 270434 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 270435 -NCIT:C157623 Metastatic Cholangiocarcinoma 9 270436 -NCIT:C162752 Advanced Cholangiocarcinoma 10 270437 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 270438 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 270439 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 270440 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 270441 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 270442 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 270443 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 10 270444 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 270445 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 10 270446 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 270447 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 270448 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 10 270449 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 270450 -NCIT:C185071 Metastatic Extrahepatic Bile Duct Carcinoma 9 270451 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 10 270452 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 11 270453 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 270454 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 270455 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 270456 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 270457 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 270458 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 270459 -NCIT:C153355 Refractory Bile Duct Carcinoma 8 270460 -NCIT:C158101 Refractory Cholangiocarcinoma 9 270461 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 10 270462 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 270463 -NCIT:C175437 Refractory Extrahepatic Bile Duct Carcinoma 9 270464 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 270465 -NCIT:C153360 Recurrent Bile Duct Carcinoma 8 270466 -NCIT:C27325 Recurrent Cholangiocarcinoma 9 270467 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 10 270468 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 10 270469 -NCIT:C7893 Recurrent Extrahepatic Bile Duct Carcinoma 9 270470 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 10 270471 -NCIT:C171322 Unresectable Bile Duct Carcinoma 8 270472 -NCIT:C27324 Unresectable Cholangiocarcinoma 9 270473 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 10 270474 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 10 270475 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 10 270476 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 10 270477 -NCIT:C7892 Unresectable Extrahepatic Bile Duct Carcinoma 9 270478 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 10 270479 -NCIT:C27813 Bile Duct Adenocarcinoma 8 270480 -NCIT:C156910 Resectable Bile Duct Adenocarcinoma 9 270481 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 10 270482 -NCIT:C27326 Resectable Cholangiocarcinoma 10 270483 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 11 270484 -NCIT:C4130 Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 9 270485 -NCIT:C96946 Extrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 10 270486 -NCIT:C96947 Intrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 10 270487 -NCIT:C4436 Cholangiocarcinoma 9 270488 -NCIT:C157623 Metastatic Cholangiocarcinoma 10 270489 -NCIT:C162752 Advanced Cholangiocarcinoma 11 270490 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 270491 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 270492 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 270493 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 11 270494 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 270495 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 12 270496 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 11 270497 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 270498 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 11 270499 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 270500 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 270501 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 11 270502 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 270503 -NCIT:C158101 Refractory Cholangiocarcinoma 10 270504 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 11 270505 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 11 270506 -NCIT:C27324 Unresectable Cholangiocarcinoma 10 270507 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 11 270508 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 11 270509 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 11 270510 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 270511 -NCIT:C27325 Recurrent Cholangiocarcinoma 10 270512 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 11 270513 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 11 270514 -NCIT:C27326 Resectable Cholangiocarcinoma 10 270515 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 11 270516 -NCIT:C27769 Opisthorchis Viverrini-Related Cholangiocarcinoma 10 270517 -NCIT:C35417 Intrahepatic Cholangiocarcinoma 10 270518 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 11 270519 -NCIT:C134514 Intrahepatic Cholangiocarcinoma by AJCC v7 Stage 11 270520 -NCIT:C88049 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v7 12 270521 -NCIT:C88050 Stage I Intrahepatic Cholangiocarcinoma AJCC v7 12 270522 -NCIT:C88051 Stage II Intrahepatic Cholangiocarcinoma AJCC v7 12 270523 -NCIT:C88052 Stage III Intrahepatic Cholangiocarcinoma AJCC v7 12 270524 -NCIT:C88053 Stage IVA Intrahepatic Cholangiocarcinoma AJCC v7 12 270525 -NCIT:C88054 Stage IVB Intrahepatic Cholangiocarcinoma AJCC v7 12 270526 -NCIT:C134755 Intrahepatic Cholangiocarcinoma by AJCC v8 Stage 11 270527 -NCIT:C134756 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v8 12 270528 -NCIT:C134757 Stage I Intrahepatic Cholangiocarcinoma AJCC v8 12 270529 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 13 270530 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 13 270531 -NCIT:C134760 Stage II Intrahepatic Cholangiocarcinoma AJCC v8 12 270532 -NCIT:C134761 Stage III Intrahepatic Cholangiocarcinoma AJCC v8 12 270533 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 13 270534 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 13 270535 -NCIT:C134764 Stage IV Intrahepatic Cholangiocarcinoma AJCC v8 12 270536 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 11 270537 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 11 270538 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 11 270539 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 270540 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 270541 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 11 270542 -NCIT:C41617 Cholangiolocellular Carcinoma 11 270543 -NCIT:C41618 Mucin-Producing Intrahepatic Cholangiocarcinoma 11 270544 -NCIT:C41619 Signet Ring Cell Intrahepatic Cholangiocarcinoma 11 270545 -NCIT:C41620 Sarcomatoid Intrahepatic Cholangiocarcinoma 11 270546 -NCIT:C43848 Clear Cell Intrahepatic Cholangiocarcinoma 11 270547 -NCIT:C96804 Large Duct Intrahepatic Cholangiocarcinoma 11 270548 -NCIT:C96805 Small Duct Intrahepatic Cholangiocarcinoma 11 270549 -NCIT:C96949 Intrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 11 270550 -NCIT:C36077 Hilar Cholangiocarcinoma 10 270551 -NCIT:C134742 Hilar Cholangiocarcinoma by AJCC v7 Stage 11 270552 -NCIT:C88058 Stage 0 Hilar Cholangiocarcinoma AJCC v7 12 270553 -NCIT:C88059 Stage I Hilar Cholangiocarcinoma AJCC v7 12 270554 -NCIT:C88060 Stage II Hilar Cholangiocarcinoma AJCC v7 12 270555 -NCIT:C88061 Stage IIIA Hilar Cholangiocarcinoma AJCC v7 12 270556 -NCIT:C88062 Stage IIIB Hilar Cholangiocarcinoma AJCC v7 12 270557 -NCIT:C88063 Stage IVA Hilar Cholangiocarcinoma AJCC v7 12 270558 -NCIT:C88064 Stage IVB Hilar Cholangiocarcinoma AJCC v7 12 270559 -NCIT:C134743 Hilar Cholangiocarcinoma by AJCC v8 Stage 11 270560 -NCIT:C134744 Stage 0 Hilar Cholangiocarcinoma AJCC v8 12 270561 -NCIT:C134745 Stage I Hilar Cholangiocarcinoma AJCC v8 12 270562 -NCIT:C134746 Stage II Hilar Cholangiocarcinoma AJCC v8 12 270563 -NCIT:C134747 Stage III Hilar Cholangiocarcinoma AJCC v8 12 270564 -NCIT:C134748 Stage IIIA Hilar Cholangiocarcinoma AJCC v8 13 270565 -NCIT:C134749 Stage IIIB Hilar Cholangiocarcinoma AJCC v8 13 270566 -NCIT:C134750 Stage IIIC Hilar Cholangiocarcinoma AJCC v8 13 270567 -NCIT:C134751 Stage IV Hilar Cholangiocarcinoma AJCC v8 12 270568 -NCIT:C134752 Stage IVA Hilar Cholangiocarcinoma AJCC v8 13 270569 -NCIT:C134753 Stage IVB Hilar Cholangiocarcinoma AJCC v8 13 270570 -NCIT:C185068 Unresectable Hilar Cholangiocarcinoma 11 270571 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 11 270572 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 270573 -NCIT:C7976 Distal Bile Duct Adenocarcinoma 10 270574 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 11 270575 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 11 270576 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 270577 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 11 270578 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 11 270579 -NCIT:C8265 Adult Cholangiocarcinoma 10 270580 -NCIT:C7975 Extrahepatic Bile Duct Adenocarcinoma 9 270581 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 10 270582 -NCIT:C5775 Extrahepatic Bile Duct Clear Cell Adenocarcinoma 10 270583 -NCIT:C5776 Extrahepatic Bile Duct Signet Ring Cell Carcinoma 10 270584 -NCIT:C5846 Extrahepatic Bile Duct Mucinous Adenocarcinoma 10 270585 -NCIT:C7976 Distal Bile Duct Adenocarcinoma 10 270586 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 11 270587 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 11 270588 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 270589 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 11 270590 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 11 270591 -NCIT:C96936 Extrahepatic Bile Duct Adenocarcinoma, Biliary Type 10 270592 -NCIT:C96937 Extrahepatic Bile Duct Adenocarcinoma, Gastric Foveolar Type 10 270593 -NCIT:C96938 Extrahepatic Bile Duct Adenocarcinoma, Intestinal Type 10 270594 -NCIT:C96946 Extrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 10 270595 -NCIT:C96948 Extrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 10 270596 -NCIT:C96810 Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 9 270597 -NCIT:C96948 Extrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 10 270598 -NCIT:C96949 Intrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 10 270599 -NCIT:C3860 Extrahepatic Bile Duct Carcinoma 8 270600 -NCIT:C175437 Refractory Extrahepatic Bile Duct Carcinoma 9 270601 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 270602 -NCIT:C185071 Metastatic Extrahepatic Bile Duct Carcinoma 9 270603 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 10 270604 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 11 270605 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 270606 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 270607 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 270608 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 270609 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 270610 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 270611 -NCIT:C5777 Extrahepatic Bile Duct Squamous Cell Carcinoma 9 270612 -NCIT:C5778 Extrahepatic Bile Duct Adenosquamous Carcinoma 9 270613 -NCIT:C5780 Extrahepatic Bile Duct Undifferentiated Carcinoma 9 270614 -NCIT:C5862 Extrahepatic Bile Duct Mucoepidermoid Carcinoma 9 270615 -NCIT:C7109 Distal Bile Duct Carcinoma 9 270616 -NCIT:C134810 Distal Bile Duct Cancer by AJCC v7 Stage 10 270617 -NCIT:C88089 Stage 0 Distal Bile Duct Cancer AJCC v7 11 270618 -NCIT:C88090 Stage IA Distal Bile Duct Cancer AJCC v7 11 270619 -NCIT:C88091 Stage IB Distal Bile Duct Cancer AJCC v7 11 270620 -NCIT:C88092 Stage IIA Distal Bile Duct Cancer AJCC v7 11 270621 -NCIT:C88093 Stage IIB Distal Bile Duct Cancer AJCC v7 11 270622 -NCIT:C88094 Stage III Distal Bile Duct Cancer AJCC v7 11 270623 -NCIT:C88095 Stage IV Distal Bile Duct Cancer AJCC v7 11 270624 -NCIT:C134811 Distal Bile Duct Cancer by AJCC v8 Stage 10 270625 -NCIT:C134812 Stage 0 Distal Bile Duct Cancer AJCC v8 11 270626 -NCIT:C134813 Stage I Distal Bile Duct Cancer AJCC v8 11 270627 -NCIT:C134814 Stage II Distal Bile Duct Cancer AJCC v8 11 270628 -NCIT:C134815 Stage IIA Distal Bile Duct Cancer AJCC v8 12 270629 -NCIT:C134816 Stage IIB Distal Bile Duct Cancer AJCC v8 12 270630 -NCIT:C134817 Stage III Distal Bile Duct Cancer AJCC v8 11 270631 -NCIT:C134818 Stage IIIA Distal Bile Duct Cancer AJCC v8 12 270632 -NCIT:C134819 Stage IIIB Distal Bile Duct Cancer AJCC v8 12 270633 -NCIT:C134820 Stage IV Distal Bile Duct Cancer AJCC v8 11 270634 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 10 270635 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 11 270636 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 270637 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 270638 -NCIT:C7976 Distal Bile Duct Adenocarcinoma 10 270639 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 11 270640 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 11 270641 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 270642 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 11 270643 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 11 270644 -NCIT:C7891 Localized Extrahepatic Bile Duct Carcinoma 9 270645 -NCIT:C7892 Unresectable Extrahepatic Bile Duct Carcinoma 9 270646 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 10 270647 -NCIT:C7893 Recurrent Extrahepatic Bile Duct Carcinoma 9 270648 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 10 270649 -NCIT:C7975 Extrahepatic Bile Duct Adenocarcinoma 9 270650 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 10 270651 -NCIT:C5775 Extrahepatic Bile Duct Clear Cell Adenocarcinoma 10 270652 -NCIT:C5776 Extrahepatic Bile Duct Signet Ring Cell Carcinoma 10 270653 -NCIT:C5846 Extrahepatic Bile Duct Mucinous Adenocarcinoma 10 270654 -NCIT:C7976 Distal Bile Duct Adenocarcinoma 10 270655 -NCIT:C172241 Unresectable Distal Bile Duct Adenocarcinoma 11 270656 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 11 270657 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 270658 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 11 270659 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 11 270660 -NCIT:C96936 Extrahepatic Bile Duct Adenocarcinoma, Biliary Type 10 270661 -NCIT:C96937 Extrahepatic Bile Duct Adenocarcinoma, Gastric Foveolar Type 10 270662 -NCIT:C96938 Extrahepatic Bile Duct Adenocarcinoma, Intestinal Type 10 270663 -NCIT:C96946 Extrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 10 270664 -NCIT:C96948 Extrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 10 270665 -NCIT:C8640 Resectable Extrahepatic Bile Duct Carcinoma 9 270666 -NCIT:C156911 Resectable Extrahepatic Bile Duct Adenocarcinoma 10 270667 -NCIT:C96939 Extrahepatic Bile Duct Carcinosarcoma 9 270668 -NCIT:C96956 Extrahepatic Bile Duct Neuroendocrine Carcinoma 9 270669 -NCIT:C5845 Extrahepatic Bile Duct Small Cell Neuroendocrine Carcinoma 10 270670 -NCIT:C96958 Extrahepatic Bile Duct Large Cell Neuroendocrine Carcinoma 10 270671 -NCIT:C96959 Extrahepatic Bile Duct Mixed Adenoneuroendocrine Carcinoma 9 270672 -NCIT:C3844 Gallbladder Carcinoma 7 270673 -NCIT:C134660 Gallbladder Cancer by AJCC v8 Stage 8 270674 -NCIT:C134663 Stage 0 Gallbladder Cancer AJCC v8 9 270675 -NCIT:C134665 Stage I Gallbladder Cancer AJCC v8 9 270676 -NCIT:C134667 Stage II Gallbladder Cancer AJCC v8 9 270677 -NCIT:C134670 Stage IIA Gallbladder Cancer AJCC v8 10 270678 -NCIT:C134671 Stage IIB Gallbladder Cancer AJCC v8 10 270679 -NCIT:C134672 Stage III Gallbladder Cancer AJCC v8 9 270680 -NCIT:C134673 Stage IIIA Gallbladder Cancer AJCC v8 10 270681 -NCIT:C134674 Stage IIIB Gallbladder Cancer AJCC v8 10 270682 -NCIT:C134675 Stage IV Gallbladder Cancer AJCC v8 9 270683 -NCIT:C134676 Stage IVA Gallbladder Cancer AJCC v8 10 270684 -NCIT:C134678 Stage IVB Gallbladder Cancer AJCC v8 10 270685 -NCIT:C162753 Refractory Gallbladder Carcinoma 8 270686 -NCIT:C162754 Metastatic Gallbladder Carcinoma 8 270687 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 270688 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 270689 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 270690 -NCIT:C175214 Incidental Gallbladder Carcinoma 8 270691 -NCIT:C4008 Recurrent Gallbladder Carcinoma 8 270692 -NCIT:C7356 Gallbladder Adenosquamous Carcinoma 8 270693 -NCIT:C7649 Localized Gallbladder Carcinoma 8 270694 -NCIT:C7890 Unresectable Gallbladder Carcinoma 8 270695 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 9 270696 -NCIT:C189064 Unresectable Gallbladder Adenocarcinoma 9 270697 -NCIT:C90512 Gallbladder Cancer by AJCC v6 Stage 8 270698 -NCIT:C4439 Stage 0 Gallbladder Cancer AJCC v6 and v7 9 270699 -NCIT:C5737 Stage I Gallbladder Cancer AJCC v6 9 270700 -NCIT:C5738 Stage II Gallbladder Cancer AJCC v6 9 270701 -NCIT:C5739 Stage III Gallbladder Cancer AJCC v6 9 270702 -NCIT:C5740 Stage IV Gallbladder Cancer AJCC v6 9 270703 -NCIT:C91229 Gallbladder Cancer by AJCC v7 Stage 8 270704 -NCIT:C4439 Stage 0 Gallbladder Cancer AJCC v6 and v7 9 270705 -NCIT:C90216 Stage I Gallbladder Cancer AJCC v7 9 270706 -NCIT:C90217 Stage II Gallbladder Cancer AJCC v7 9 270707 -NCIT:C90218 Stage III Gallbladder Cancer AJCC v7 9 270708 -NCIT:C88056 Stage IIIA Gallbladder Cancer AJCC v7 10 270709 -NCIT:C88057 Stage IIIB Gallbladder Cancer AJCC v7 10 270710 -NCIT:C90219 Stage IV Gallbladder Cancer AJCC v7 9 270711 -NCIT:C5741 Stage IVA Gallbladder Cancer AJCC v7 10 270712 -NCIT:C5742 Stage IVB Gallbladder Cancer AJCC v7 10 270713 -NCIT:C9166 Gallbladder Adenocarcinoma 8 270714 -NCIT:C189064 Unresectable Gallbladder Adenocarcinoma 9 270715 -NCIT:C43604 Gallbladder Adenocarcinoma, Intestinal-Type 9 270716 -NCIT:C43605 Gallbladder Clear Cell Adenocarcinoma 9 270717 -NCIT:C5743 Gallbladder Intracholecystic Papillary Neoplasm with an Associated Invasive Carcinoma 9 270718 -NCIT:C5744 Gallbladder Mucinous Adenocarcinoma 9 270719 -NCIT:C5745 Gallbladder Signet Ring Cell Carcinoma 9 270720 -NCIT:C9169 Gallbladder Adenocarcinoma with Squamous Metaplasia 9 270721 -NCIT:C96887 Gallbladder Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 9 270722 -NCIT:C96890 Gallbladder Hepatoid Adenocarcinoma 9 270723 -NCIT:C96891 Gallbladder Cribriform Carcinoma 9 270724 -NCIT:C96915 Gallbladder Adenocarcinoma, Biliary Type 9 270725 -NCIT:C96916 Gallbladder Adenocarcinoma, Gastric Foveolar Type 9 270726 -NCIT:C9167 Gallbladder Undifferentiated Carcinoma 8 270727 -NCIT:C5838 Gallbladder Undifferentiated Carcinoma, Spindle and Giant Cell Type 9 270728 -NCIT:C9170 Gallbladder Squamous Cell Carcinoma 8 270729 -NCIT:C96888 Gallbladder Carcinosarcoma 8 270730 -NCIT:C96919 Gallbladder Neuroendocrine Carcinoma 8 270731 -NCIT:C6763 Gallbladder Small Cell Neuroendocrine Carcinoma 9 270732 -NCIT:C96921 Gallbladder Large Cell Neuroendocrine Carcinoma 9 270733 -NCIT:C96927 Gallbladder Mixed Adenoneuroendocrine Carcinoma 8 270734 -NCIT:C96928 Gallbladder Goblet Cell Carcinoid 9 270735 -NCIT:C67493 High-Grade Biliary Intraepithelial Neoplasia 7 270736 -NCIT:C170458 Metastatic Pancreatobiliary Carcinoma 6 270737 -NCIT:C156069 Metastatic Pancreatic Carcinoma 7 270738 -NCIT:C165452 Advanced Pancreatic Carcinoma 8 270739 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 270740 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 270741 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 8 270742 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 270743 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 270744 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 270745 -NCIT:C190770 Metastatic Pancreatic Adenosquamous Carcinoma 8 270746 -NCIT:C190771 Metastatic Pancreatic Squamous Cell Carcinoma 8 270747 -NCIT:C8933 Metastatic Pancreatic Adenocarcinoma 8 270748 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 270749 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 270750 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 270751 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 9 270752 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 270753 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 270754 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 10 270755 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 270756 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 270757 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 9 270758 -NCIT:C162751 Metastatic Biliary Tract Carcinoma 7 270759 -NCIT:C142869 Metastatic Bile Duct Carcinoma 8 270760 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 270761 -NCIT:C162752 Advanced Cholangiocarcinoma 10 270762 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 270763 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 270764 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 270765 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 270766 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 270767 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 270768 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 270769 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 270770 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 270771 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 270772 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 270773 -NCIT:C157623 Metastatic Cholangiocarcinoma 9 270774 -NCIT:C162752 Advanced Cholangiocarcinoma 10 270775 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 270776 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 270777 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 270778 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 270779 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 270780 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 270781 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 10 270782 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 270783 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 10 270784 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 270785 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 270786 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 10 270787 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 270788 -NCIT:C185071 Metastatic Extrahepatic Bile Duct Carcinoma 9 270789 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 10 270790 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 11 270791 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 270792 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 270793 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 270794 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 270795 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 270796 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 270797 -NCIT:C162754 Metastatic Gallbladder Carcinoma 8 270798 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 270799 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 270800 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 270801 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 8 270802 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 270803 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 270804 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 270805 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 270806 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 270807 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 270808 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 270809 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 270810 -NCIT:C171331 Advanced Biliary Tract Carcinoma 8 270811 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 270812 -NCIT:C162752 Advanced Cholangiocarcinoma 10 270813 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 270814 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 270815 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 270816 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 270817 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 270818 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 270819 -NCIT:C170459 Locally Advanced Pancreatobiliary Carcinoma 7 270820 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 8 270821 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 9 270822 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 10 270823 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 11 270824 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 11 270825 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 10 270826 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 11 270827 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 9 270828 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 10 270829 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 8 270830 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 270831 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 270832 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 270833 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 8 270834 -NCIT:C171326 Metastatic Ampulla of Vater Carcinoma 7 270835 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 8 270836 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 8 270837 -NCIT:C171330 Advanced Pancreatobiliary Carcinoma 7 270838 -NCIT:C165452 Advanced Pancreatic Carcinoma 8 270839 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 270840 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 270841 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 8 270842 -NCIT:C171331 Advanced Biliary Tract Carcinoma 8 270843 -NCIT:C142870 Advanced Bile Duct Carcinoma 9 270844 -NCIT:C162752 Advanced Cholangiocarcinoma 10 270845 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 270846 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 11 270847 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 11 270848 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 10 270849 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 11 270850 -NCIT:C162755 Advanced Gallbladder Carcinoma 9 270851 -NCIT:C185305 Refractory Pancreatobiliary Carcinoma 6 270852 -NCIT:C142808 Refractory Pancreatic Carcinoma 7 270853 -NCIT:C162015 Refractory Pancreatic Adenocarcinoma 8 270854 -NCIT:C165450 Refractory Pancreatic Ductal Adenocarcinoma 9 270855 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 9 270856 -NCIT:C162750 Refractory Biliary Tract Carcinoma 7 270857 -NCIT:C153355 Refractory Bile Duct Carcinoma 8 270858 -NCIT:C158101 Refractory Cholangiocarcinoma 9 270859 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 10 270860 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 270861 -NCIT:C175437 Refractory Extrahepatic Bile Duct Carcinoma 9 270862 -NCIT:C175438 Refractory Distal Bile Duct Adenocarcinoma 10 270863 -NCIT:C162753 Refractory Gallbladder Carcinoma 8 270864 -NCIT:C175436 Refractory Ampulla of Vater Carcinoma 7 270865 -NCIT:C3850 Pancreatic Carcinoma 6 270866 -NCIT:C134902 Pancreatic Cancer by AJCC v6 and v7 Stage 7 270867 -NCIT:C5711 Stage IV Pancreatic Cancer AJCC v6 and v7 8 270868 -NCIT:C5729 Stage 0 Pancreatic Cancer AJCC v6 and v7 8 270869 -NCIT:C7785 Stage I Pancreatic Cancer AJCC v6 and v7 8 270870 -NCIT:C88100 Stage IA Pancreatic Cancer AJCC v6 and v7 9 270871 -NCIT:C88101 Stage IB Pancreatic Cancer AJCC v6 and v7 9 270872 -NCIT:C7786 Stage II Pancreatic Cancer AJCC v6 and v7 8 270873 -NCIT:C88102 Stage IIA Pancreatic Cancer AJCC v6 and v7 9 270874 -NCIT:C88103 Stage IIB Pancreatic Cancer AJCC v6 and v7 9 270875 -NCIT:C7787 Stage III Pancreatic Cancer AJCC v6 and v7 8 270876 -NCIT:C134909 Pancreatic Cancer by AJCC v8 Stage 7 270877 -NCIT:C134914 Stage 0 Pancreatic Cancer AJCC v8 8 270878 -NCIT:C134915 Stage I Pancreatic Cancer AJCC v8 8 270879 -NCIT:C134917 Stage IA Pancreatic Cancer AJCC v8 9 270880 -NCIT:C134920 Stage IB Pancreatic Cancer AJCC v8 9 270881 -NCIT:C134921 Stage II Pancreatic Cancer AJCC v8 8 270882 -NCIT:C134925 Stage IIA Pancreatic Cancer AJCC v8 9 270883 -NCIT:C134927 Stage IIB Pancreatic Cancer AJCC v8 9 270884 -NCIT:C134928 Stage III Pancreatic Cancer AJCC v8 8 270885 -NCIT:C134930 Stage IV Pancreatic Cancer AJCC v8 8 270886 -NCIT:C142808 Refractory Pancreatic Carcinoma 7 270887 -NCIT:C162015 Refractory Pancreatic Adenocarcinoma 8 270888 -NCIT:C165450 Refractory Pancreatic Ductal Adenocarcinoma 9 270889 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 9 270890 -NCIT:C156069 Metastatic Pancreatic Carcinoma 7 270891 -NCIT:C165452 Advanced Pancreatic Carcinoma 8 270892 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 270893 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 270894 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 8 270895 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 270896 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 270897 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 270898 -NCIT:C190770 Metastatic Pancreatic Adenosquamous Carcinoma 8 270899 -NCIT:C190771 Metastatic Pancreatic Squamous Cell Carcinoma 8 270900 -NCIT:C8933 Metastatic Pancreatic Adenocarcinoma 8 270901 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 270902 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 270903 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 270904 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 9 270905 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 270906 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 270907 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 10 270908 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 270909 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 270910 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 9 270911 -NCIT:C173813 Pancreatic Squamous Cell Carcinoma 7 270912 -NCIT:C190771 Metastatic Pancreatic Squamous Cell Carcinoma 8 270913 -NCIT:C43298 Hereditary Pancreatic Carcinoma 7 270914 -NCIT:C45843 Pancreatic Mixed Adenoneuroendocrine Carcinoma 7 270915 -NCIT:C6878 Pancreatic Mixed Acinar-Neuroendocrine Carcinoma 8 270916 -NCIT:C6879 Pancreatic Mixed Ductal-Neuroendocrine Carcinoma 8 270917 -NCIT:C95460 Pancreatic Mixed Acinar-Ductal Neuroendocrine Carcinoma 8 270918 -NCIT:C5018 Unresectable Pancreatic Carcinoma 7 270919 -NCIT:C162016 Unresectable Pancreatic Adenocarcinoma 8 270920 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 9 270921 -NCIT:C172245 Unresectable Pancreatic Ductal Adenocarcinoma 9 270922 -NCIT:C5099 Resectable Pancreatic Carcinoma 7 270923 -NCIT:C156906 Resectable Pancreatic Adenocarcinoma 8 270924 -NCIT:C151995 Resectable Pancreatic Ductal Adenocarcinoma 9 270925 -NCIT:C156907 Resectable Pancreatic Acinar Cell Carcinoma 9 270926 -NCIT:C157350 Borderline Resectable Pancreatic Adenocarcinoma 9 270927 -NCIT:C157348 Borderline Resectable Pancreatic Carcinoma 8 270928 -NCIT:C157350 Borderline Resectable Pancreatic Adenocarcinoma 9 270929 -NCIT:C174566 Resectable Pancreatic Adenosquamous Carcinoma 8 270930 -NCIT:C5721 Pancreatic Adenosquamous Carcinoma 7 270931 -NCIT:C174566 Resectable Pancreatic Adenosquamous Carcinoma 8 270932 -NCIT:C190770 Metastatic Pancreatic Adenosquamous Carcinoma 8 270933 -NCIT:C7626 Recurrent Pancreatic Carcinoma 7 270934 -NCIT:C155742 Recurrent Pancreatic Adenocarcinoma 8 270935 -NCIT:C153569 Recurrent Pancreatic Acinar Cell Carcinoma 9 270936 -NCIT:C153619 Recurrent Pancreatic Ductal Adenocarcinoma 9 270937 -NCIT:C153620 Recurrent Pancreatic Cystadenocarcinoma 9 270938 -NCIT:C8294 Pancreatic Adenocarcinoma 7 270939 -NCIT:C155742 Recurrent Pancreatic Adenocarcinoma 8 270940 -NCIT:C153569 Recurrent Pancreatic Acinar Cell Carcinoma 9 270941 -NCIT:C153619 Recurrent Pancreatic Ductal Adenocarcinoma 9 270942 -NCIT:C153620 Recurrent Pancreatic Cystadenocarcinoma 9 270943 -NCIT:C156906 Resectable Pancreatic Adenocarcinoma 8 270944 -NCIT:C151995 Resectable Pancreatic Ductal Adenocarcinoma 9 270945 -NCIT:C156907 Resectable Pancreatic Acinar Cell Carcinoma 9 270946 -NCIT:C157350 Borderline Resectable Pancreatic Adenocarcinoma 9 270947 -NCIT:C162015 Refractory Pancreatic Adenocarcinoma 8 270948 -NCIT:C165450 Refractory Pancreatic Ductal Adenocarcinoma 9 270949 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 9 270950 -NCIT:C162016 Unresectable Pancreatic Adenocarcinoma 8 270951 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 9 270952 -NCIT:C172245 Unresectable Pancreatic Ductal Adenocarcinoma 9 270953 -NCIT:C169041 Localized Pancreatic Adenocarcinoma 8 270954 -NCIT:C189009 Localized Pancreatic Ductal Adenocarcinoma 9 270955 -NCIT:C172813 Invasive Pancreatic Micropapillary Adenocarcinoma 8 270956 -NCIT:C3874 Pancreatic Cystadenocarcinoma 8 270957 -NCIT:C153620 Recurrent Pancreatic Cystadenocarcinoma 9 270958 -NCIT:C5724 Pancreatic Serous Cystadenocarcinoma 9 270959 -NCIT:C5727 Pancreatic Acinar Cell Cystadenocarcinoma 9 270960 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 10 270961 -NCIT:C5726 Pancreatic Intraductal Papillary-Mucinous Neoplasm with an Associated Invasive Carcinoma 8 270962 -NCIT:C7977 Pancreatic Acinar Cell Carcinoma 8 270963 -NCIT:C153569 Recurrent Pancreatic Acinar Cell Carcinoma 9 270964 -NCIT:C156907 Resectable Pancreatic Acinar Cell Carcinoma 9 270965 -NCIT:C190024 Childhood Pancreatic Acinar Cell Carcinoma 9 270966 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 10 270967 -NCIT:C5727 Pancreatic Acinar Cell Cystadenocarcinoma 9 270968 -NCIT:C190026 Childhood Pancreatic Acinar Cell Cystadenocarcinoma 10 270969 -NCIT:C8933 Metastatic Pancreatic Adenocarcinoma 8 270970 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 9 270971 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 270972 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 10 270973 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 9 270974 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 270975 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 270976 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 10 270977 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 9 270978 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 270979 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 9 270980 -NCIT:C9120 Pancreatic Ductal Adenocarcinoma 8 270981 -NCIT:C151995 Resectable Pancreatic Ductal Adenocarcinoma 9 270982 -NCIT:C153619 Recurrent Pancreatic Ductal Adenocarcinoma 9 270983 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 9 270984 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 10 270985 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 10 270986 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 10 270987 -NCIT:C158961 Early Stage Pancreatic Ductal Adenocarcinoma 9 270988 -NCIT:C165450 Refractory Pancreatic Ductal Adenocarcinoma 9 270989 -NCIT:C172245 Unresectable Pancreatic Ductal Adenocarcinoma 9 270990 -NCIT:C172811 Pancreatic Poorly Cohesive Adenocarcinoma 9 270991 -NCIT:C5720 Pancreatic Signet Ring Cell Carcinoma 10 270992 -NCIT:C189009 Localized Pancreatic Ductal Adenocarcinoma 9 270993 -NCIT:C37214 Pancreatic Colloid Carcinoma 9 270994 -NCIT:C37256 Pancreatic Foamy Gland Adenocarcinoma 9 270995 -NCIT:C5722 Pancreatic Undifferentiated Carcinoma 9 270996 -NCIT:C172812 Pancreatic Undifferentiated Carcinoma with Rhabdoid Cells 10 270997 -NCIT:C5723 Pancreatic Undifferentiated Carcinoma with Osteoclast-Like Giant Cells 10 270998 -NCIT:C95426 Pancreatic Well Differentiated Ductal Adenocarcinoma 9 270999 -NCIT:C95427 Pancreatic Moderately Differentiated Ductal Adenocarcinoma 9 271000 -NCIT:C95428 Pancreatic Poorly Differentiated Ductal Adenocarcinoma 9 271001 -NCIT:C95465 Pancreatic Hepatoid Adenocarcinoma 9 271002 -NCIT:C95466 Pancreatic Medullary Carcinoma 9 271003 -NCIT:C95458 Pancreatic Mixed Acinar-Ductal Carcinoma 8 271004 -NCIT:C95507 Pancreatic Intraductal Tubulopapillary Neoplasm with an Associated Invasive Carcinoma 8 271005 -NCIT:C3908 Ampulla of Vater Carcinoma 6 271006 -NCIT:C134863 Ampulla of Vater Cancer by AJCC v7 Stage 7 271007 -NCIT:C4444 Stage 0 Ampulla of Vater Cancer AJCC v7 8 271008 -NCIT:C6651 Stage I Ampulla of Vater Cancer AJCC v7 8 271009 -NCIT:C88096 Stage IA Ampulla of Vater Cancer AJCC v7 9 271010 -NCIT:C88097 Stage IB Ampulla of Vater Cancer AJCC v7 9 271011 -NCIT:C6652 Stage II Ampulla of Vater Cancer AJCC v7 8 271012 -NCIT:C88098 Stage IIA Ampulla of Vater Cancer AJCC v7 9 271013 -NCIT:C88099 Stage IIB Ampulla of Vater Cancer AJCC v7 9 271014 -NCIT:C6653 Stage III Ampulla of Vater Cancer AJCC v7 8 271015 -NCIT:C6654 Stage IV Ampulla of Vater Cancer AJCC v7 8 271016 -NCIT:C134864 Ampulla of Vater Cancer by AJCC v8 Stage 7 271017 -NCIT:C134865 Stage 0 Ampulla of Vater Cancer AJCC v8 8 271018 -NCIT:C134866 Stage I Ampulla of Vater Cancer AJCC v8 8 271019 -NCIT:C134867 Stage IA Ampulla of Vater Cancer AJCC v8 9 271020 -NCIT:C134868 Stage IB Ampulla of Vater Cancer AJCC v8 9 271021 -NCIT:C134869 Stage II Ampulla of Vater Cancer AJCC v8 8 271022 -NCIT:C134870 Stage IIA Ampulla of Vater Cancer AJCC v8 9 271023 -NCIT:C134871 Stage IIB Ampulla of Vater Cancer AJCC v8 9 271024 -NCIT:C134872 Stage III Ampulla of Vater Cancer AJCC v8 8 271025 -NCIT:C134873 Stage IIIA Ampulla of Vater Cancer AJCC v8 9 271026 -NCIT:C134874 Stage IIIB Ampulla of Vater Cancer AJCC v8 9 271027 -NCIT:C134875 Stage IV Ampulla of Vater Cancer AJCC v8 8 271028 -NCIT:C165172 Unresectable Ampulla of Vater Carcinoma 7 271029 -NCIT:C189065 Unresectable Ampulla of Vater Adenocarcinoma 8 271030 -NCIT:C171326 Metastatic Ampulla of Vater Carcinoma 7 271031 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 8 271032 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 8 271033 -NCIT:C175436 Refractory Ampulla of Vater Carcinoma 7 271034 -NCIT:C27417 Ampulla of Vater Squamous Cell Carcinoma 7 271035 -NCIT:C27418 Ampulla of Vater Adenosquamous Carcinoma 7 271036 -NCIT:C27419 Ampulla of Vater Undifferentiated Carcinoma 7 271037 -NCIT:C95965 Ampulla of Vater Undifferentiated Carcinoma with Osteoclast-Like Giant Cells 8 271038 -NCIT:C6650 Ampulla of Vater Adenocarcinoma 7 271039 -NCIT:C153574 Recurrent Ampulla of Vater Adenocarcinoma 8 271040 -NCIT:C189065 Unresectable Ampulla of Vater Adenocarcinoma 8 271041 -NCIT:C27414 Ampulla of Vater Clear Cell Adenocarcinoma 8 271042 -NCIT:C27415 Ampulla of Vater Intestinal-Type Adenocarcinoma 8 271043 -NCIT:C27416 Ampulla of Vater Mucinous Adenocarcinoma 8 271044 -NCIT:C6656 Ampulla of Vater Signet Ring Cell Carcinoma 8 271045 -NCIT:C95963 Ampulla of Vater Pancreatobiliary Type Adenocarcinoma 8 271046 -NCIT:C95966 Ampulla of Vater Hepatoid Adenocarcinoma 8 271047 -NCIT:C95967 Ampulla of Vater Invasive Papillary Adenocarcinoma 8 271048 -NCIT:C95984 Ampulla of Vater Neuroendocrine Carcinoma 7 271049 -NCIT:C6655 Ampulla of Vater Small Cell Neuroendocrine Carcinoma 8 271050 -NCIT:C95985 Ampulla of Vater Large Cell Neuroendocrine Carcinoma 8 271051 -NCIT:C95986 Ampulla of Vater Mixed Adenoneuroendocrine Carcinoma 7 271052 -NCIT:C2955 Colorectal Carcinoma 5 271053 -NCIT:C118808 Childhood Colorectal Carcinoma 6 271054 -NCIT:C118823 Childhood Rectal Carcinoma 7 271055 -NCIT:C134180 Colorectal Cancer by AJCC v8 Stage 6 271056 -NCIT:C134182 Stage 0 Colorectal Cancer AJCC v8 7 271057 -NCIT:C134271 Stage 0 Colon Cancer AJCC v8 8 271058 -NCIT:C134291 Stage 0 Rectal Cancer AJCC v8 8 271059 -NCIT:C134185 Stage I Colorectal Cancer AJCC v8 7 271060 -NCIT:C134273 Stage I Colon Cancer AJCC v8 8 271061 -NCIT:C134292 Stage I Rectal Cancer AJCC v8 8 271062 -NCIT:C134186 Stage II Colorectal Cancer AJCC v8 7 271063 -NCIT:C134187 Stage IIA Colorectal Cancer AJCC v8 8 271064 -NCIT:C134280 Stage IIA Colon Cancer AJCC v8 9 271065 -NCIT:C134294 Stage IIA Rectal Cancer AJCC v8 9 271066 -NCIT:C134188 Stage IIB Colorectal Cancer AJCC v8 8 271067 -NCIT:C134281 Stage IIB Colon Cancer AJCC v8 9 271068 -NCIT:C134295 Stage IIB Rectal Cancer AJCC v8 9 271069 -NCIT:C134190 Stage IIC Colorectal Cancer AJCC v8 8 271070 -NCIT:C134282 Stage IIC Colon Cancer AJCC v8 9 271071 -NCIT:C134296 Stage IIC Rectal Cancer AJCC v8 9 271072 -NCIT:C134274 Stage II Colon Cancer AJCC v8 8 271073 -NCIT:C134280 Stage IIA Colon Cancer AJCC v8 9 271074 -NCIT:C134281 Stage IIB Colon Cancer AJCC v8 9 271075 -NCIT:C134282 Stage IIC Colon Cancer AJCC v8 9 271076 -NCIT:C134293 Stage II Rectal Cancer AJCC v8 8 271077 -NCIT:C134294 Stage IIA Rectal Cancer AJCC v8 9 271078 -NCIT:C134295 Stage IIB Rectal Cancer AJCC v8 9 271079 -NCIT:C134296 Stage IIC Rectal Cancer AJCC v8 9 271080 -NCIT:C134191 Stage III Colorectal Cancer AJCC v8 7 271081 -NCIT:C134192 Stage IIIA Colorectal Cancer AJCC v8 8 271082 -NCIT:C134284 Stage IIIA Colon Cancer AJCC v8 9 271083 -NCIT:C134298 Stage IIIA Rectal Cancer AJCC v8 9 271084 -NCIT:C134193 Stage IIIB Colorectal Cancer AJCC v8 8 271085 -NCIT:C134285 Stage IIIB Colon Cancer AJCC v8 9 271086 -NCIT:C134299 Stage IIIB Rectal Cancer AJCC v8 9 271087 -NCIT:C134194 Stage IIIC Colorectal Cancer AJCC v8 8 271088 -NCIT:C134286 Stage IIIC Colon Cancer AJCC v8 9 271089 -NCIT:C134300 Stage IIIC Rectal Cancer AJCC v8 9 271090 -NCIT:C134283 Stage III Colon Cancer AJCC v8 8 271091 -NCIT:C134284 Stage IIIA Colon Cancer AJCC v8 9 271092 -NCIT:C134285 Stage IIIB Colon Cancer AJCC v8 9 271093 -NCIT:C134286 Stage IIIC Colon Cancer AJCC v8 9 271094 -NCIT:C134297 Stage III Rectal Cancer AJCC v8 8 271095 -NCIT:C134298 Stage IIIA Rectal Cancer AJCC v8 9 271096 -NCIT:C134299 Stage IIIB Rectal Cancer AJCC v8 9 271097 -NCIT:C134300 Stage IIIC Rectal Cancer AJCC v8 9 271098 -NCIT:C134195 Stage IV Colorectal Cancer AJCC v8 7 271099 -NCIT:C134196 Stage IVA Colorectal Cancer AJCC v8 8 271100 -NCIT:C134288 Stage IVA Colon Cancer AJCC v8 9 271101 -NCIT:C134302 Stage IVA Rectal Cancer AJCC v8 9 271102 -NCIT:C134197 Stage IVB Colorectal Cancer AJCC v8 8 271103 -NCIT:C134289 Stage IVB Colon Cancer AJCC v8 9 271104 -NCIT:C134303 Stage IVB Rectal Cancer AJCC v8 9 271105 -NCIT:C134198 Stage IVC Colorectal Cancer AJCC v8 8 271106 -NCIT:C134290 Stage IVC Colon Cancer AJCC v8 9 271107 -NCIT:C134304 Stage IVC Rectal Cancer AJCC v8 9 271108 -NCIT:C134287 Stage IV Colon Cancer AJCC v8 8 271109 -NCIT:C134288 Stage IVA Colon Cancer AJCC v8 9 271110 -NCIT:C134289 Stage IVB Colon Cancer AJCC v8 9 271111 -NCIT:C134290 Stage IVC Colon Cancer AJCC v8 9 271112 -NCIT:C134301 Stage IV Rectal Cancer AJCC v8 8 271113 -NCIT:C134302 Stage IVA Rectal Cancer AJCC v8 9 271114 -NCIT:C134303 Stage IVB Rectal Cancer AJCC v8 9 271115 -NCIT:C134304 Stage IVC Rectal Cancer AJCC v8 9 271116 -NCIT:C134251 Colon Cancer by AJCC v8 Stage 7 271117 -NCIT:C134271 Stage 0 Colon Cancer AJCC v8 8 271118 -NCIT:C134273 Stage I Colon Cancer AJCC v8 8 271119 -NCIT:C134274 Stage II Colon Cancer AJCC v8 8 271120 -NCIT:C134280 Stage IIA Colon Cancer AJCC v8 9 271121 -NCIT:C134281 Stage IIB Colon Cancer AJCC v8 9 271122 -NCIT:C134282 Stage IIC Colon Cancer AJCC v8 9 271123 -NCIT:C134283 Stage III Colon Cancer AJCC v8 8 271124 -NCIT:C134284 Stage IIIA Colon Cancer AJCC v8 9 271125 -NCIT:C134285 Stage IIIB Colon Cancer AJCC v8 9 271126 -NCIT:C134286 Stage IIIC Colon Cancer AJCC v8 9 271127 -NCIT:C134287 Stage IV Colon Cancer AJCC v8 8 271128 -NCIT:C134288 Stage IVA Colon Cancer AJCC v8 9 271129 -NCIT:C134289 Stage IVB Colon Cancer AJCC v8 9 271130 -NCIT:C134290 Stage IVC Colon Cancer AJCC v8 9 271131 -NCIT:C134258 Rectal Cancer by AJCC v8 Stage 7 271132 -NCIT:C134291 Stage 0 Rectal Cancer AJCC v8 8 271133 -NCIT:C134292 Stage I Rectal Cancer AJCC v8 8 271134 -NCIT:C134293 Stage II Rectal Cancer AJCC v8 8 271135 -NCIT:C134294 Stage IIA Rectal Cancer AJCC v8 9 271136 -NCIT:C134295 Stage IIB Rectal Cancer AJCC v8 9 271137 -NCIT:C134296 Stage IIC Rectal Cancer AJCC v8 9 271138 -NCIT:C134297 Stage III Rectal Cancer AJCC v8 8 271139 -NCIT:C134298 Stage IIIA Rectal Cancer AJCC v8 9 271140 -NCIT:C134299 Stage IIIB Rectal Cancer AJCC v8 9 271141 -NCIT:C134300 Stage IIIC Rectal Cancer AJCC v8 9 271142 -NCIT:C134301 Stage IV Rectal Cancer AJCC v8 8 271143 -NCIT:C134302 Stage IVA Rectal Cancer AJCC v8 9 271144 -NCIT:C134303 Stage IVB Rectal Cancer AJCC v8 9 271145 -NCIT:C134304 Stage IVC Rectal Cancer AJCC v8 9 271146 -NCIT:C147982 Refractory Colorectal Carcinoma 6 271147 -NCIT:C153351 Refractory Colon Carcinoma 7 271148 -NCIT:C162155 Refractory Colon Adenocarcinoma 8 271149 -NCIT:C162154 Refractory Colorectal Adenocarcinoma 7 271150 -NCIT:C162155 Refractory Colon Adenocarcinoma 8 271151 -NCIT:C162157 Refractory Rectal Adenocarcinoma 8 271152 -NCIT:C162156 Refractory Rectal Carcinoma 7 271153 -NCIT:C162157 Refractory Rectal Adenocarcinoma 8 271154 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 8 271155 -NCIT:C173332 Refractory Microsatellite Stable Colorectal Carcinoma 7 271156 -NCIT:C156096 Metastatic Colorectal Carcinoma 6 271157 -NCIT:C142867 Metastatic Microsatellite Stable Colorectal Carcinoma 7 271158 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 8 271159 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 8 271160 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 271161 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 8 271162 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 271163 -NCIT:C153224 Colorectal Carcinoma Metastatic in the Lung 7 271164 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 8 271165 -NCIT:C156097 Metastatic Colon Carcinoma 7 271166 -NCIT:C160819 Metastatic Colon Adenocarcinoma 8 271167 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 271168 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 271169 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 271170 -NCIT:C167238 Advanced Colon Carcinoma 8 271171 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 271172 -NCIT:C170910 Locally Advanced Colon Carcinoma 8 271173 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 271174 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 271175 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 271176 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 8 271177 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 271178 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 8 271179 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 8 271180 -NCIT:C156098 Metastatic Rectal Carcinoma 7 271181 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 8 271182 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 8 271183 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 271184 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 271185 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 271186 -NCIT:C170777 Advanced Rectal Carcinoma 8 271187 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 271188 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 271189 -NCIT:C170778 Locally Advanced Rectal Carcinoma 8 271190 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 271191 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 271192 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 271193 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 8 271194 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 271195 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 271196 -NCIT:C157366 Colorectal Carcinoma Metastatic in the Liver 7 271197 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 8 271198 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 8 271199 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 8 271200 -NCIT:C161048 Metastatic Colorectal Adenocarcinoma 7 271201 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 8 271202 -NCIT:C160819 Metastatic Colon Adenocarcinoma 8 271203 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 271204 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 271205 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 271206 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 8 271207 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 271208 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 271209 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 271210 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 8 271211 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 271212 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 271213 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 271214 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 271215 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 271216 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 271217 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 271218 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 271219 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 271220 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 271221 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 271222 -NCIT:C162475 Advanced Colorectal Carcinoma 7 271223 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 8 271224 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 271225 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 271226 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 271227 -NCIT:C167238 Advanced Colon Carcinoma 8 271228 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 271229 -NCIT:C170777 Advanced Rectal Carcinoma 8 271230 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 271231 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 271232 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 7 271233 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 8 271234 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 271235 -NCIT:C170778 Locally Advanced Rectal Carcinoma 8 271236 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 271237 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 271238 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 271239 -NCIT:C170910 Locally Advanced Colon Carcinoma 8 271240 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 271241 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 271242 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 271243 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 271244 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 271245 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 271246 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 271247 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 271248 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 271249 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 271250 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 271251 -NCIT:C185165 Oligometastatic Colorectal Carcinoma 7 271252 -NCIT:C162256 Hypermutated Colorectal Carcinoma 6 271253 -NCIT:C162257 Resectable Colorectal Carcinoma 6 271254 -NCIT:C167237 Resectable Colon Carcinoma 7 271255 -NCIT:C162600 Unresectable Colorectal Carcinoma 6 271256 -NCIT:C171585 Unresectable Colorectal Adenocarcinoma 7 271257 -NCIT:C162116 Unresectable Colon Adenocarcinoma 8 271258 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 271259 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 8 271260 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 271261 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 271262 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 271263 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 271264 -NCIT:C180406 Unresectable Colon Carcinoma 7 271265 -NCIT:C162116 Unresectable Colon Adenocarcinoma 8 271266 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 271267 -NCIT:C173324 Microsatellite Stable Colorectal Carcinoma 6 271268 -NCIT:C142867 Metastatic Microsatellite Stable Colorectal Carcinoma 7 271269 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 8 271270 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 8 271271 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 271272 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 8 271273 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 271274 -NCIT:C173332 Refractory Microsatellite Stable Colorectal Carcinoma 7 271275 -NCIT:C177776 Microsatellite Stable Rectal Carcinoma 7 271276 -NCIT:C177777 Microsatellite Stable Colon Carcinoma 7 271277 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 8 271278 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 271279 -NCIT:C190679 Recurrent Microsatellite Stable Colorectal Carcinoma 7 271280 -NCIT:C43588 Colorectal Squamous Cell Carcinoma 6 271281 -NCIT:C5490 Colon Squamous Cell Carcinoma 7 271282 -NCIT:C5554 Rectal Squamous Cell Carcinoma 7 271283 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 8 271284 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 271285 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 271286 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 8 271287 -NCIT:C5555 Rectal Cloacogenic Carcinoma 8 271288 -NCIT:C43589 Colorectal Adenosquamous Carcinoma 6 271289 -NCIT:C43594 Rectal Adenosquamous Carcinoma 7 271290 -NCIT:C5491 Colon Adenosquamous Carcinoma 7 271291 -NCIT:C43591 Colorectal Undifferentiated Carcinoma 6 271292 -NCIT:C7100 Colon Undifferentiated Carcinoma 7 271293 -NCIT:C7974 Rectal Undifferentiated Carcinoma 7 271294 -NCIT:C4910 Colon Carcinoma 6 271295 -NCIT:C134251 Colon Cancer by AJCC v8 Stage 7 271296 -NCIT:C134271 Stage 0 Colon Cancer AJCC v8 8 271297 -NCIT:C134273 Stage I Colon Cancer AJCC v8 8 271298 -NCIT:C134274 Stage II Colon Cancer AJCC v8 8 271299 -NCIT:C134280 Stage IIA Colon Cancer AJCC v8 9 271300 -NCIT:C134281 Stage IIB Colon Cancer AJCC v8 9 271301 -NCIT:C134282 Stage IIC Colon Cancer AJCC v8 9 271302 -NCIT:C134283 Stage III Colon Cancer AJCC v8 8 271303 -NCIT:C134284 Stage IIIA Colon Cancer AJCC v8 9 271304 -NCIT:C134285 Stage IIIB Colon Cancer AJCC v8 9 271305 -NCIT:C134286 Stage IIIC Colon Cancer AJCC v8 9 271306 -NCIT:C134287 Stage IV Colon Cancer AJCC v8 8 271307 -NCIT:C134288 Stage IVA Colon Cancer AJCC v8 9 271308 -NCIT:C134289 Stage IVB Colon Cancer AJCC v8 9 271309 -NCIT:C134290 Stage IVC Colon Cancer AJCC v8 9 271310 -NCIT:C153351 Refractory Colon Carcinoma 7 271311 -NCIT:C162155 Refractory Colon Adenocarcinoma 8 271312 -NCIT:C156097 Metastatic Colon Carcinoma 7 271313 -NCIT:C160819 Metastatic Colon Adenocarcinoma 8 271314 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 271315 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 271316 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 271317 -NCIT:C167238 Advanced Colon Carcinoma 8 271318 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 271319 -NCIT:C170910 Locally Advanced Colon Carcinoma 8 271320 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 271321 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 271322 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 271323 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 8 271324 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 271325 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 8 271326 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 8 271327 -NCIT:C164228 Hereditary Colon Carcinoma 7 271328 -NCIT:C167237 Resectable Colon Carcinoma 7 271329 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 7 271330 -NCIT:C177680 Sigmoid Colon Carcinoma 7 271331 -NCIT:C177777 Microsatellite Stable Colon Carcinoma 7 271332 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 8 271333 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 9 271334 -NCIT:C180406 Unresectable Colon Carcinoma 7 271335 -NCIT:C162116 Unresectable Colon Adenocarcinoma 8 271336 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 271337 -NCIT:C3491 Cecum Carcinoma 7 271338 -NCIT:C4594 Cecum Carcinoma In Situ 8 271339 -NCIT:C5543 Cecum Adenocarcinoma 8 271340 -NCIT:C3998 Recurrent Colon Carcinoma 7 271341 -NCIT:C162442 Recurrent Colon Adenocarcinoma 8 271342 -NCIT:C4349 Colon Adenocarcinoma 7 271343 -NCIT:C160819 Metastatic Colon Adenocarcinoma 8 271344 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 271345 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 271346 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 271347 -NCIT:C162116 Unresectable Colon Adenocarcinoma 8 271348 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 271349 -NCIT:C162155 Refractory Colon Adenocarcinoma 8 271350 -NCIT:C162442 Recurrent Colon Adenocarcinoma 8 271351 -NCIT:C38760 Submucosal Invasive Colon Adenocarcinoma 8 271352 -NCIT:C45429 Colon Intramucosal Adenocarcinoma 8 271353 -NCIT:C27413 Adenoma of the Colon with Intramucosal Adenocarcinoma 9 271354 -NCIT:C5543 Cecum Adenocarcinoma 8 271355 -NCIT:C60641 Colon Medullary Carcinoma 8 271356 -NCIT:C7966 Colon Mucinous Adenocarcinoma 8 271357 -NCIT:C7967 Colon Signet Ring Cell Adenocarcinoma 8 271358 -NCIT:C9452 Grade 1 Colon Adenocarcinoma 8 271359 -NCIT:C9453 Grade 2 Colon Adenocarcinoma 8 271360 -NCIT:C9454 Grade 3 Colon Adenocarcinoma 8 271361 -NCIT:C96486 Colon Serrated Adenocarcinoma 8 271362 -NCIT:C96489 Colon Cribriform Comedo-Type Adenocarcinoma 8 271363 -NCIT:C96492 Colon Micropapillary Adenocarcinoma 8 271364 -NCIT:C5490 Colon Squamous Cell Carcinoma 7 271365 -NCIT:C5491 Colon Adenosquamous Carcinoma 7 271366 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 7 271367 -NCIT:C7100 Colon Undifferentiated Carcinoma 7 271368 -NCIT:C90507 Colon Cancer by AJCC v6 Stage 7 271369 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 8 271370 -NCIT:C4594 Cecum Carcinoma In Situ 9 271371 -NCIT:C3993 Stage II Colon Cancer AJCC v6 8 271372 -NCIT:C3994 Stage IV Colon Cancer AJCC v6 8 271373 -NCIT:C7766 Stage III Colon Cancer AJCC v6 8 271374 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 8 271375 -NCIT:C91224 Colon Cancer by AJCC v7 Stage 7 271376 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 8 271377 -NCIT:C4594 Cecum Carcinoma In Situ 9 271378 -NCIT:C89990 Stage II Colon Cancer AJCC v7 8 271379 -NCIT:C115041 Stage IIA Colon Cancer AJCC v7 9 271380 -NCIT:C115042 Stage IIB Colon Cancer AJCC v7 9 271381 -NCIT:C115043 Stage IIC Colon Cancer AJCC v7 9 271382 -NCIT:C89995 Stage III Colon Cancer AJCC v7 8 271383 -NCIT:C115047 Stage IIIA Colon Cancer AJCC v7 9 271384 -NCIT:C115048 Stage IIIB Colon Cancer AJCC v7 9 271385 -NCIT:C115049 Stage IIIC Colon Cancer AJCC v7 9 271386 -NCIT:C89999 Stage IV Colon Cancer AJCC v7 8 271387 -NCIT:C115053 Stage IVA Colon Cancer AJCC v7 9 271388 -NCIT:C115054 Stage IVB Colon Cancer AJCC v7 9 271389 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 8 271390 -NCIT:C5105 Colorectal Adenocarcinoma 6 271391 -NCIT:C161048 Metastatic Colorectal Adenocarcinoma 7 271392 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 8 271393 -NCIT:C160819 Metastatic Colon Adenocarcinoma 8 271394 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 271395 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 271396 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 271397 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 8 271398 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 271399 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 271400 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 271401 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 8 271402 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 271403 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 271404 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 271405 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 271406 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 271407 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 271408 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 271409 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 271410 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 271411 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 271412 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 271413 -NCIT:C162154 Refractory Colorectal Adenocarcinoma 7 271414 -NCIT:C162155 Refractory Colon Adenocarcinoma 8 271415 -NCIT:C162157 Refractory Rectal Adenocarcinoma 8 271416 -NCIT:C162441 Recurrent Colorectal Adenocarcinoma 7 271417 -NCIT:C162442 Recurrent Colon Adenocarcinoma 8 271418 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 8 271419 -NCIT:C171585 Unresectable Colorectal Adenocarcinoma 7 271420 -NCIT:C162116 Unresectable Colon Adenocarcinoma 8 271421 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 271422 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 8 271423 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 271424 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 271425 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 271426 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 271427 -NCIT:C172694 Colorectal Poorly Cohesive Adenocarcinoma 7 271428 -NCIT:C43586 Colorectal Signet Ring Cell Carcinoma 8 271429 -NCIT:C43593 Rectosigmoid Signet Ring Cell Carcinoma 9 271430 -NCIT:C7967 Colon Signet Ring Cell Adenocarcinoma 9 271431 -NCIT:C9168 Rectal Signet Ring Cell Adenocarcinoma 9 271432 -NCIT:C172699 Colorectal Adenoma-Like Adenocarcinoma 7 271433 -NCIT:C172700 Inflammatory Bowel Disease-Associated Colorectal Adenocarcinoma 7 271434 -NCIT:C96496 Ulcerative Colitis-Associated Colorectal Adenocarcinoma 8 271435 -NCIT:C96497 Crohn Disease-Associated Colorectal Adenocarcinoma 8 271436 -NCIT:C4349 Colon Adenocarcinoma 7 271437 -NCIT:C160819 Metastatic Colon Adenocarcinoma 8 271438 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 271439 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 271440 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 271441 -NCIT:C162116 Unresectable Colon Adenocarcinoma 8 271442 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 271443 -NCIT:C162155 Refractory Colon Adenocarcinoma 8 271444 -NCIT:C162442 Recurrent Colon Adenocarcinoma 8 271445 -NCIT:C38760 Submucosal Invasive Colon Adenocarcinoma 8 271446 -NCIT:C45429 Colon Intramucosal Adenocarcinoma 8 271447 -NCIT:C27413 Adenoma of the Colon with Intramucosal Adenocarcinoma 9 271448 -NCIT:C5543 Cecum Adenocarcinoma 8 271449 -NCIT:C60641 Colon Medullary Carcinoma 8 271450 -NCIT:C7966 Colon Mucinous Adenocarcinoma 8 271451 -NCIT:C7967 Colon Signet Ring Cell Adenocarcinoma 8 271452 -NCIT:C9452 Grade 1 Colon Adenocarcinoma 8 271453 -NCIT:C9453 Grade 2 Colon Adenocarcinoma 8 271454 -NCIT:C9454 Grade 3 Colon Adenocarcinoma 8 271455 -NCIT:C96486 Colon Serrated Adenocarcinoma 8 271456 -NCIT:C96489 Colon Cribriform Comedo-Type Adenocarcinoma 8 271457 -NCIT:C96492 Colon Micropapillary Adenocarcinoma 8 271458 -NCIT:C43584 Rectosigmoid Adenocarcinoma 7 271459 -NCIT:C43592 Rectosigmoid Mucinous Adenocarcinoma 8 271460 -NCIT:C43593 Rectosigmoid Signet Ring Cell Carcinoma 8 271461 -NCIT:C43585 Colorectal Mucinous Adenocarcinoma 7 271462 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 8 271463 -NCIT:C43592 Rectosigmoid Mucinous Adenocarcinoma 8 271464 -NCIT:C7966 Colon Mucinous Adenocarcinoma 8 271465 -NCIT:C7973 Rectal Mucinous Adenocarcinoma 8 271466 -NCIT:C43590 Colorectal Medullary Carcinoma 7 271467 -NCIT:C60640 Rectal Medullary Carcinoma 8 271468 -NCIT:C60641 Colon Medullary Carcinoma 8 271469 -NCIT:C9383 Rectal Adenocarcinoma 7 271470 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 8 271471 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 271472 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 271473 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 271474 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 8 271475 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 271476 -NCIT:C162157 Refractory Rectal Adenocarcinoma 8 271477 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 8 271478 -NCIT:C60640 Rectal Medullary Carcinoma 8 271479 -NCIT:C7973 Rectal Mucinous Adenocarcinoma 8 271480 -NCIT:C9168 Rectal Signet Ring Cell Adenocarcinoma 8 271481 -NCIT:C9449 Grade 3 Rectal Adenocarcinoma 8 271482 -NCIT:C9450 Grade 2 Rectal Adenocarcinoma 8 271483 -NCIT:C9451 Grade 1 Rectal Adenocarcinoma 8 271484 -NCIT:C96487 Rectal Serrated Adenocarcinoma 8 271485 -NCIT:C96490 Rectal Cribriform Comedo-Type Adenocarcinoma 8 271486 -NCIT:C96493 Rectal Micropapillary Adenocarcinoma 8 271487 -NCIT:C9446 Grade 1 Colorectal Adenocarcinoma 7 271488 -NCIT:C9451 Grade 1 Rectal Adenocarcinoma 8 271489 -NCIT:C9452 Grade 1 Colon Adenocarcinoma 8 271490 -NCIT:C9447 Grade 2 Colorectal Adenocarcinoma 7 271491 -NCIT:C9450 Grade 2 Rectal Adenocarcinoma 8 271492 -NCIT:C9453 Grade 2 Colon Adenocarcinoma 8 271493 -NCIT:C9448 Grade 3 Colorectal Adenocarcinoma 7 271494 -NCIT:C9449 Grade 3 Rectal Adenocarcinoma 8 271495 -NCIT:C9454 Grade 3 Colon Adenocarcinoma 8 271496 -NCIT:C96485 Colorectal Serrated Adenocarcinoma 7 271497 -NCIT:C96486 Colon Serrated Adenocarcinoma 8 271498 -NCIT:C96487 Rectal Serrated Adenocarcinoma 8 271499 -NCIT:C96488 Colorectal Cribriform Comedo-Type Adenocarcinoma 7 271500 -NCIT:C96489 Colon Cribriform Comedo-Type Adenocarcinoma 8 271501 -NCIT:C96490 Rectal Cribriform Comedo-Type Adenocarcinoma 8 271502 -NCIT:C96491 Colorectal Micropapillary Adenocarcinoma 7 271503 -NCIT:C96492 Colon Micropapillary Adenocarcinoma 8 271504 -NCIT:C96493 Rectal Micropapillary Adenocarcinoma 8 271505 -NCIT:C7421 Rectosigmoid Carcinoma 6 271506 -NCIT:C43584 Rectosigmoid Adenocarcinoma 7 271507 -NCIT:C43592 Rectosigmoid Mucinous Adenocarcinoma 8 271508 -NCIT:C43593 Rectosigmoid Signet Ring Cell Carcinoma 8 271509 -NCIT:C8634 Recurrent Rectosigmoid Carcinoma 7 271510 -NCIT:C90509 Rectosigmoid Cancer by AJCC v6 Stage 7 271511 -NCIT:C5015 Stage II Rectosigmoid Cancer AJCC v6 8 271512 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 8 271513 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 8 271514 -NCIT:C8635 Stage III Rectosigmoid Cancer AJCC v6 8 271515 -NCIT:C8636 Stage IV Rectosigmoid Cancer AJCC v6 8 271516 -NCIT:C91226 Rectosigmoid Cancer by AJCC v7 Stage 7 271517 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 8 271518 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 8 271519 -NCIT:C89992 Stage II Rectosigmoid Cancer AJCC v7 8 271520 -NCIT:C89997 Stage III Rectosigmoid Cancer AJCC v7 8 271521 -NCIT:C90019 Stage IV Rectosigmoid Cancer AJCC v7 8 271522 -NCIT:C8625 Recurrent Colorectal Carcinoma 6 271523 -NCIT:C162441 Recurrent Colorectal Adenocarcinoma 7 271524 -NCIT:C162442 Recurrent Colon Adenocarcinoma 8 271525 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 8 271526 -NCIT:C190199 Locally Recurrent Colorectal Carcinoma 7 271527 -NCIT:C190679 Recurrent Microsatellite Stable Colorectal Carcinoma 7 271528 -NCIT:C3998 Recurrent Colon Carcinoma 7 271529 -NCIT:C162442 Recurrent Colon Adenocarcinoma 8 271530 -NCIT:C8634 Recurrent Rectosigmoid Carcinoma 7 271531 -NCIT:C9238 Recurrent Rectal Carcinoma 7 271532 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 8 271533 -NCIT:C90506 Colorectal Cancer by AJCC v6 Stage 6 271534 -NCIT:C8513 Stage I Colorectal Cancer AJCC v6 and v7 7 271535 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 8 271536 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 8 271537 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 8 271538 -NCIT:C8514 Stage II Colorectal Cancer AJCC v6 7 271539 -NCIT:C3993 Stage II Colon Cancer AJCC v6 8 271540 -NCIT:C5015 Stage II Rectosigmoid Cancer AJCC v6 8 271541 -NCIT:C7791 Stage II Rectal Cancer AJCC v6 8 271542 -NCIT:C8515 Stage III Colorectal Cancer AJCC v6 7 271543 -NCIT:C7766 Stage III Colon Cancer AJCC v6 8 271544 -NCIT:C7792 Stage III Rectal Cancer AJCC v6 8 271545 -NCIT:C8635 Stage III Rectosigmoid Cancer AJCC v6 8 271546 -NCIT:C8516 Stage IV Colorectal Cancer AJCC v6 7 271547 -NCIT:C3994 Stage IV Colon Cancer AJCC v6 8 271548 -NCIT:C8412 Stage IV Rectal Cancer AJCC v6 8 271549 -NCIT:C8636 Stage IV Rectosigmoid Cancer AJCC v6 8 271550 -NCIT:C8932 Stage 0 Colorectal Cancer AJCC v6 and v7 7 271551 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 8 271552 -NCIT:C4594 Cecum Carcinoma In Situ 9 271553 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 8 271554 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 8 271555 -NCIT:C90507 Colon Cancer by AJCC v6 Stage 7 271556 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 8 271557 -NCIT:C4594 Cecum Carcinoma In Situ 9 271558 -NCIT:C3993 Stage II Colon Cancer AJCC v6 8 271559 -NCIT:C3994 Stage IV Colon Cancer AJCC v6 8 271560 -NCIT:C7766 Stage III Colon Cancer AJCC v6 8 271561 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 8 271562 -NCIT:C90508 Rectal Cancer by AJCC v6 Stage 7 271563 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 8 271564 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 8 271565 -NCIT:C7791 Stage II Rectal Cancer AJCC v6 8 271566 -NCIT:C7792 Stage III Rectal Cancer AJCC v6 8 271567 -NCIT:C8412 Stage IV Rectal Cancer AJCC v6 8 271568 -NCIT:C90509 Rectosigmoid Cancer by AJCC v6 Stage 7 271569 -NCIT:C5015 Stage II Rectosigmoid Cancer AJCC v6 8 271570 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 8 271571 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 8 271572 -NCIT:C8635 Stage III Rectosigmoid Cancer AJCC v6 8 271573 -NCIT:C8636 Stage IV Rectosigmoid Cancer AJCC v6 8 271574 -NCIT:C91223 Colorectal Cancer by AJCC v7 Stage 6 271575 -NCIT:C8513 Stage I Colorectal Cancer AJCC v6 and v7 7 271576 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 8 271577 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 8 271578 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 8 271579 -NCIT:C8932 Stage 0 Colorectal Cancer AJCC v6 and v7 7 271580 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 8 271581 -NCIT:C4594 Cecum Carcinoma In Situ 9 271582 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 8 271583 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 8 271584 -NCIT:C89989 Stage II Colorectal Cancer AJCC v7 7 271585 -NCIT:C87813 Stage IIA Colorectal Cancer AJCC v7 8 271586 -NCIT:C115041 Stage IIA Colon Cancer AJCC v7 9 271587 -NCIT:C115044 Stage IIA Rectal Cancer AJCC v7 9 271588 -NCIT:C87814 Stage IIB Colorectal Cancer AJCC v7 8 271589 -NCIT:C115042 Stage IIB Colon Cancer AJCC v7 9 271590 -NCIT:C115045 Stage IIB Rectal Cancer AJCC v7 9 271591 -NCIT:C87815 Stage IIC Colorectal Cancer AJCC v7 8 271592 -NCIT:C115043 Stage IIC Colon Cancer AJCC v7 9 271593 -NCIT:C115046 Stage IIC Rectal Cancer AJCC v7 9 271594 -NCIT:C89990 Stage II Colon Cancer AJCC v7 8 271595 -NCIT:C115041 Stage IIA Colon Cancer AJCC v7 9 271596 -NCIT:C115042 Stage IIB Colon Cancer AJCC v7 9 271597 -NCIT:C115043 Stage IIC Colon Cancer AJCC v7 9 271598 -NCIT:C89991 Stage II Rectal Cancer AJCC v7 8 271599 -NCIT:C115044 Stage IIA Rectal Cancer AJCC v7 9 271600 -NCIT:C115045 Stage IIB Rectal Cancer AJCC v7 9 271601 -NCIT:C115046 Stage IIC Rectal Cancer AJCC v7 9 271602 -NCIT:C89992 Stage II Rectosigmoid Cancer AJCC v7 8 271603 -NCIT:C89994 Stage III Colorectal Cancer AJCC v7 7 271604 -NCIT:C87816 Stage IIIA Colorectal Cancer AJCC v7 8 271605 -NCIT:C115047 Stage IIIA Colon Cancer AJCC v7 9 271606 -NCIT:C115050 Stage IIIA Rectal Cancer AJCC v7 9 271607 -NCIT:C87817 Stage IIIB Colorectal Cancer AJCC v7 8 271608 -NCIT:C115048 Stage IIIB Colon Cancer AJCC v7 9 271609 -NCIT:C115051 Stage IIIB Rectal Cancer AJCC v7 9 271610 -NCIT:C87818 Stage IIIC Colorectal Cancer AJCC v7 8 271611 -NCIT:C115049 Stage IIIC Colon Cancer AJCC v7 9 271612 -NCIT:C115052 Stage IIIC Rectal Cancer AJCC v7 9 271613 -NCIT:C89995 Stage III Colon Cancer AJCC v7 8 271614 -NCIT:C115047 Stage IIIA Colon Cancer AJCC v7 9 271615 -NCIT:C115048 Stage IIIB Colon Cancer AJCC v7 9 271616 -NCIT:C115049 Stage IIIC Colon Cancer AJCC v7 9 271617 -NCIT:C89996 Stage III Rectal Cancer AJCC v7 8 271618 -NCIT:C115050 Stage IIIA Rectal Cancer AJCC v7 9 271619 -NCIT:C115051 Stage IIIB Rectal Cancer AJCC v7 9 271620 -NCIT:C115052 Stage IIIC Rectal Cancer AJCC v7 9 271621 -NCIT:C89997 Stage III Rectosigmoid Cancer AJCC v7 8 271622 -NCIT:C89998 Stage IV Colorectal Cancer AJCC v7 7 271623 -NCIT:C87819 Stage IVA Colorectal Cancer AJCC v7 8 271624 -NCIT:C115053 Stage IVA Colon Cancer AJCC v7 9 271625 -NCIT:C115055 Stage IVA Rectal Cancer AJCC v7 9 271626 -NCIT:C87820 Stage IVB Colorectal Cancer AJCC v7 8 271627 -NCIT:C115054 Stage IVB Colon Cancer AJCC v7 9 271628 -NCIT:C115056 Stage IVB Rectal Cancer AJCC v7 9 271629 -NCIT:C89999 Stage IV Colon Cancer AJCC v7 8 271630 -NCIT:C115053 Stage IVA Colon Cancer AJCC v7 9 271631 -NCIT:C115054 Stage IVB Colon Cancer AJCC v7 9 271632 -NCIT:C90016 Stage IV Rectal Cancer AJCC v7 8 271633 -NCIT:C115055 Stage IVA Rectal Cancer AJCC v7 9 271634 -NCIT:C115056 Stage IVB Rectal Cancer AJCC v7 9 271635 -NCIT:C90019 Stage IV Rectosigmoid Cancer AJCC v7 8 271636 -NCIT:C91224 Colon Cancer by AJCC v7 Stage 7 271637 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 8 271638 -NCIT:C4594 Cecum Carcinoma In Situ 9 271639 -NCIT:C89990 Stage II Colon Cancer AJCC v7 8 271640 -NCIT:C115041 Stage IIA Colon Cancer AJCC v7 9 271641 -NCIT:C115042 Stage IIB Colon Cancer AJCC v7 9 271642 -NCIT:C115043 Stage IIC Colon Cancer AJCC v7 9 271643 -NCIT:C89995 Stage III Colon Cancer AJCC v7 8 271644 -NCIT:C115047 Stage IIIA Colon Cancer AJCC v7 9 271645 -NCIT:C115048 Stage IIIB Colon Cancer AJCC v7 9 271646 -NCIT:C115049 Stage IIIC Colon Cancer AJCC v7 9 271647 -NCIT:C89999 Stage IV Colon Cancer AJCC v7 8 271648 -NCIT:C115053 Stage IVA Colon Cancer AJCC v7 9 271649 -NCIT:C115054 Stage IVB Colon Cancer AJCC v7 9 271650 -NCIT:C9358 Stage I Colon Cancer AJCC v6 and v7 8 271651 -NCIT:C91225 Rectal Cancer by AJCC v7 Stage 7 271652 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 8 271653 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 8 271654 -NCIT:C89991 Stage II Rectal Cancer AJCC v7 8 271655 -NCIT:C115044 Stage IIA Rectal Cancer AJCC v7 9 271656 -NCIT:C115045 Stage IIB Rectal Cancer AJCC v7 9 271657 -NCIT:C115046 Stage IIC Rectal Cancer AJCC v7 9 271658 -NCIT:C89996 Stage III Rectal Cancer AJCC v7 8 271659 -NCIT:C115050 Stage IIIA Rectal Cancer AJCC v7 9 271660 -NCIT:C115051 Stage IIIB Rectal Cancer AJCC v7 9 271661 -NCIT:C115052 Stage IIIC Rectal Cancer AJCC v7 9 271662 -NCIT:C90016 Stage IV Rectal Cancer AJCC v7 8 271663 -NCIT:C115055 Stage IVA Rectal Cancer AJCC v7 9 271664 -NCIT:C115056 Stage IVB Rectal Cancer AJCC v7 9 271665 -NCIT:C91226 Rectosigmoid Cancer by AJCC v7 Stage 7 271666 -NCIT:C5016 Stage I Rectosigmoid Cancer AJCC v6 and v7 8 271667 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 8 271668 -NCIT:C89992 Stage II Rectosigmoid Cancer AJCC v7 8 271669 -NCIT:C89997 Stage III Rectosigmoid Cancer AJCC v7 8 271670 -NCIT:C90019 Stage IV Rectosigmoid Cancer AJCC v7 8 271671 -NCIT:C9382 Rectal Carcinoma 6 271672 -NCIT:C118823 Childhood Rectal Carcinoma 7 271673 -NCIT:C134258 Rectal Cancer by AJCC v8 Stage 7 271674 -NCIT:C134291 Stage 0 Rectal Cancer AJCC v8 8 271675 -NCIT:C134292 Stage I Rectal Cancer AJCC v8 8 271676 -NCIT:C134293 Stage II Rectal Cancer AJCC v8 8 271677 -NCIT:C134294 Stage IIA Rectal Cancer AJCC v8 9 271678 -NCIT:C134295 Stage IIB Rectal Cancer AJCC v8 9 271679 -NCIT:C134296 Stage IIC Rectal Cancer AJCC v8 9 271680 -NCIT:C134297 Stage III Rectal Cancer AJCC v8 8 271681 -NCIT:C134298 Stage IIIA Rectal Cancer AJCC v8 9 271682 -NCIT:C134299 Stage IIIB Rectal Cancer AJCC v8 9 271683 -NCIT:C134300 Stage IIIC Rectal Cancer AJCC v8 9 271684 -NCIT:C134301 Stage IV Rectal Cancer AJCC v8 8 271685 -NCIT:C134302 Stage IVA Rectal Cancer AJCC v8 9 271686 -NCIT:C134303 Stage IVB Rectal Cancer AJCC v8 9 271687 -NCIT:C134304 Stage IVC Rectal Cancer AJCC v8 9 271688 -NCIT:C156098 Metastatic Rectal Carcinoma 7 271689 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 8 271690 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 8 271691 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 271692 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 271693 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 271694 -NCIT:C170777 Advanced Rectal Carcinoma 8 271695 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 271696 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 271697 -NCIT:C170778 Locally Advanced Rectal Carcinoma 8 271698 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 271699 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 271700 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 271701 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 8 271702 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 271703 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 271704 -NCIT:C162156 Refractory Rectal Carcinoma 7 271705 -NCIT:C162157 Refractory Rectal Adenocarcinoma 8 271706 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 8 271707 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 7 271708 -NCIT:C177776 Microsatellite Stable Rectal Carcinoma 7 271709 -NCIT:C43594 Rectal Adenosquamous Carcinoma 7 271710 -NCIT:C5554 Rectal Squamous Cell Carcinoma 7 271711 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 8 271712 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 9 271713 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 9 271714 -NCIT:C177151 Refractory Rectal Squamous Cell Carcinoma 8 271715 -NCIT:C5555 Rectal Cloacogenic Carcinoma 8 271716 -NCIT:C5556 Rectal Sarcomatoid Carcinoma 7 271717 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 7 271718 -NCIT:C7974 Rectal Undifferentiated Carcinoma 7 271719 -NCIT:C90508 Rectal Cancer by AJCC v6 Stage 7 271720 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 8 271721 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 8 271722 -NCIT:C7791 Stage II Rectal Cancer AJCC v6 8 271723 -NCIT:C7792 Stage III Rectal Cancer AJCC v6 8 271724 -NCIT:C8412 Stage IV Rectal Cancer AJCC v6 8 271725 -NCIT:C91225 Rectal Cancer by AJCC v7 Stage 7 271726 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 8 271727 -NCIT:C7790 Stage I Rectal Cancer AJCC v6 and v7 8 271728 -NCIT:C89991 Stage II Rectal Cancer AJCC v7 8 271729 -NCIT:C115044 Stage IIA Rectal Cancer AJCC v7 9 271730 -NCIT:C115045 Stage IIB Rectal Cancer AJCC v7 9 271731 -NCIT:C115046 Stage IIC Rectal Cancer AJCC v7 9 271732 -NCIT:C89996 Stage III Rectal Cancer AJCC v7 8 271733 -NCIT:C115050 Stage IIIA Rectal Cancer AJCC v7 9 271734 -NCIT:C115051 Stage IIIB Rectal Cancer AJCC v7 9 271735 -NCIT:C115052 Stage IIIC Rectal Cancer AJCC v7 9 271736 -NCIT:C90016 Stage IV Rectal Cancer AJCC v7 8 271737 -NCIT:C115055 Stage IVA Rectal Cancer AJCC v7 9 271738 -NCIT:C115056 Stage IVB Rectal Cancer AJCC v7 9 271739 -NCIT:C9238 Recurrent Rectal Carcinoma 7 271740 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 8 271741 -NCIT:C9383 Rectal Adenocarcinoma 7 271742 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 8 271743 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 271744 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 271745 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 271746 -NCIT:C162117 Unresectable Rectal Adenocarcinoma 8 271747 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 271748 -NCIT:C162157 Refractory Rectal Adenocarcinoma 8 271749 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 8 271750 -NCIT:C60640 Rectal Medullary Carcinoma 8 271751 -NCIT:C7973 Rectal Mucinous Adenocarcinoma 8 271752 -NCIT:C9168 Rectal Signet Ring Cell Adenocarcinoma 8 271753 -NCIT:C9449 Grade 3 Rectal Adenocarcinoma 8 271754 -NCIT:C9450 Grade 2 Rectal Adenocarcinoma 8 271755 -NCIT:C9451 Grade 1 Rectal Adenocarcinoma 8 271756 -NCIT:C96487 Rectal Serrated Adenocarcinoma 8 271757 -NCIT:C96490 Rectal Cribriform Comedo-Type Adenocarcinoma 8 271758 -NCIT:C96493 Rectal Micropapillary Adenocarcinoma 8 271759 -NCIT:C96156 Colorectal Neuroendocrine Carcinoma 6 271760 -NCIT:C43587 Colorectal Small Cell Neuroendocrine Carcinoma 7 271761 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 8 271762 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 8 271763 -NCIT:C96157 Colorectal Large Cell Neuroendocrine Carcinoma 7 271764 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 8 271765 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 8 271766 -NCIT:C96158 Colorectal Mixed Adenoneuroendocrine Carcinoma 6 271767 -NCIT:C96494 Colorectal Sarcomatoid Carcinoma 6 271768 -NCIT:C5556 Rectal Sarcomatoid Carcinoma 7 271769 -NCIT:C3513 Esophageal Carcinoma 5 271770 -NCIT:C118812 Childhood Esophageal Carcinoma 6 271771 -NCIT:C128563 Unresectable Esophageal Carcinoma 6 271772 -NCIT:C171608 Unresectable Esophageal Squamous Cell Carcinoma 7 271773 -NCIT:C173162 Unresectable Esophageal Adenocarcinoma 7 271774 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 271775 -NCIT:C172248 Unresectable Distal Esophagus Adenocarcinoma 8 271776 -NCIT:C133399 Esophageal Cancer by AJCC v8 Stage 6 271777 -NCIT:C133400 Esophageal Adenocarcinoma by AJCC v8 Stage 7 271778 -NCIT:C133401 Esophageal Adenocarcinoma by AJCC v8 Clinical Stage 8 271779 -NCIT:C133402 Clinical Stage 0 Esophageal Adenocarcinoma AJCC v8 9 271780 -NCIT:C133403 Clinical Stage I Esophageal Adenocarcinoma AJCC v8 9 271781 -NCIT:C133404 Clinical Stage II Esophageal Adenocarcinoma AJCC v8 9 271782 -NCIT:C133405 Clinical Stage IIA Esophageal Adenocarcinoma AJCC v8 10 271783 -NCIT:C133406 Clinical Stage IIB Esophageal Adenocarcinoma AJCC v8 10 271784 -NCIT:C133407 Clinical Stage III Esophageal Adenocarcinoma AJCC v8 9 271785 -NCIT:C133408 Clinical Stage IV Esophageal Adenocarcinoma AJCC v8 9 271786 -NCIT:C133409 Clinical Stage IVA Esophageal Adenocarcinoma AJCC v8 10 271787 -NCIT:C133410 Clinical Stage IVB Esophageal Adenocarcinoma AJCC v8 10 271788 -NCIT:C133412 Esophageal Adenocarcinoma by AJCC v8 Pathologic Stage 8 271789 -NCIT:C133413 Pathologic Stage 0 Esophageal Adenocarcinoma AJCC v8 9 271790 -NCIT:C133414 Pathologic Stage I Esophageal Adenocarcinoma AJCC v8 9 271791 -NCIT:C133415 Pathologic Stage IA Esophageal Adenocarcinoma AJCC v8 10 271792 -NCIT:C133416 Pathologic Stage IB Esophageal Adenocarcinoma AJCC v8 10 271793 -NCIT:C133417 Pathologic Stage IC Esophageal Adenocarcinoma AJCC v8 10 271794 -NCIT:C133418 Pathologic Stage II Esophageal Adenocarcinoma AJCC v8 9 271795 -NCIT:C133419 Pathologic Stage IIA Esophageal Adenocarcinoma AJCC v8 10 271796 -NCIT:C133420 Pathologic Stage IIB Esophageal Adenocarcinoma AJCC v8 10 271797 -NCIT:C133421 Pathologic Stage III Esophageal Adenocarcinoma AJCC v8 9 271798 -NCIT:C133422 Pathologic Stage IIIA Esophageal Adenocarcinoma AJCC v8 10 271799 -NCIT:C133423 Pathologic Stage IIIB Esophageal Adenocarcinoma AJCC v8 10 271800 -NCIT:C133424 Pathologic Stage IV Esophageal Adenocarcinoma AJCC v8 9 271801 -NCIT:C133425 Pathologic Stage IVA Esophageal Adenocarcinoma AJCC v8 10 271802 -NCIT:C133426 Pathologic Stage IVB Esophageal Adenocarcinoma AJCC v8 10 271803 -NCIT:C133432 Esophageal Adenocarcinoma by AJCC v8 Postneoadjuvant Therapy Stage 8 271804 -NCIT:C133433 Postneoadjuvant Therapy Stage I Esophageal Adenocarcinoma AJCC v8 9 271805 -NCIT:C133434 Postneoadjuvant Therapy Stage II Esophageal Adenocarcinoma AJCC v8 9 271806 -NCIT:C133435 Postneoadjuvant Therapy Stage III Esophageal Adenocarcinoma AJCC v8 9 271807 -NCIT:C133436 Postneoadjuvant Therapy Stage IIIA Esophageal Adenocarcinoma AJCC v8 10 271808 -NCIT:C133437 Postneoadjuvant Therapy Stage IIIB Esophageal Adenocarcinoma AJCC v8 10 271809 -NCIT:C133438 Postneoadjuvant Therapy Stage IV Esophageal Adenocarcinoma AJCC v8 9 271810 -NCIT:C133439 Postneoadjuvant Therapy Stage IVA Esophageal Adenocarcinoma AJCC v8 10 271811 -NCIT:C133440 Postneoadjuvant Therapy Stage IVB Esophageal Adenocarcinoma AJCC v8 10 271812 -NCIT:C133443 Esophageal Squamous Cell Carcinoma by AJCC v8 Stage 7 271813 -NCIT:C133444 Esophageal Squamous Cell Carcinoma by AJCC v8 Clinical Stage 8 271814 -NCIT:C133447 Clinical Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 9 271815 -NCIT:C133448 Clinical Stage I Esophageal Squamous Cell Carcinoma AJCC v8 9 271816 -NCIT:C133449 Clinical Stage II Esophageal Squamous Cell Carcinoma AJCC v8 9 271817 -NCIT:C133450 Clinical Stage III Esophageal Squamous Cell Carcinoma AJCC v8 9 271818 -NCIT:C133451 Clinical Stage IV Esophageal Squamous Cell Carcinoma AJCC v8 9 271819 -NCIT:C133452 Clinical Stage IVA Esophageal Squamous Cell Carcinoma AJCC v8 10 271820 -NCIT:C133453 Clinical Stage IVB Esophageal Squamous Cell Carcinoma AJCC v8 10 271821 -NCIT:C133445 Esophageal Squamous Cell Carcinoma by AJCC v8 Pathologic Stage 8 271822 -NCIT:C133519 Pathologic Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 9 271823 -NCIT:C133521 Pathologic Stage I Esophageal Squamous Cell Carcinoma AJCC v8 9 271824 -NCIT:C133525 Pathologic Stage IA Esophageal Squamous Cell Carcinoma AJCC v8 10 271825 -NCIT:C133530 Pathologic Stage IB Esophageal Squamous Cell Carcinoma AJCC v8 10 271826 -NCIT:C133532 Pathologic Stage II Esophageal Squamous Cell Carcinoma AJCC v8 9 271827 -NCIT:C133534 Pathologic Stage IIA Esophageal Squamous Cell Carcinoma AJCC v8 10 271828 -NCIT:C133535 Pathologic Stage IIB Esophageal Squamous Cell Carcinoma AJCC v8 10 271829 -NCIT:C133536 Pathologic Stage III Esophageal Squamous Cell Carcinoma AJCC v8 9 271830 -NCIT:C133537 Pathologic Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v8 10 271831 -NCIT:C133538 Pathologic Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v8 10 271832 -NCIT:C133539 Pathologic Stage IV Esophageal Squamous Cell Carcinoma AJCC v8 9 271833 -NCIT:C133541 Pathologic Stage IVA Esophageal Squamous Cell Carcinoma AJCC v8 10 271834 -NCIT:C133542 Pathologic Stage IVB Esophageal Squamous Cell Carcinoma AJCC v8 10 271835 -NCIT:C133446 Esophageal Squamous Cell Carcinoma by AJCC v8 Postneoadjuvant Therapy Stage 8 271836 -NCIT:C133454 Postneoadjuvant Therapy Stage I Esophageal Squamous Cell Carcinoma AJCC v8 9 271837 -NCIT:C133455 Postneoadjuvant Therapy Stage II Esophageal Squamous Cell Carcinoma AJCC v8 9 271838 -NCIT:C133456 Postneoadjuvant Therapy Stage III Esophageal Squamous Cell Carcinoma AJCC v8 9 271839 -NCIT:C133457 Postneoadjuvant Therapy Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v8 10 271840 -NCIT:C133458 Postneoadjuvant Therapy Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v8 10 271841 -NCIT:C133459 Postneoadjuvant Therapy Stage IV Esophageal Squamous Cell Carcinoma AJCC v8 9 271842 -NCIT:C133460 Postneoadjuvant Therapy Stage IVA Esophageal Squamous Cell Carcinoma AJCC v8 10 271843 -NCIT:C133461 Postneoadjuvant Therapy Stage IVB Esophageal Squamous Cell Carcinoma AJCC v8 10 271844 -NCIT:C156073 Metastatic Esophageal Carcinoma 6 271845 -NCIT:C156074 Metastatic Esophageal Adenocarcinoma 7 271846 -NCIT:C166120 Oligometastatic Esophageal Adenocarcinoma 8 271847 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 271848 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 271849 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 271850 -NCIT:C172249 Metastatic Distal Esophagus Adenocarcinoma 8 271851 -NCIT:C156075 Metastatic Esophageal Squamous Cell Carcinoma 7 271852 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 271853 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 271854 -NCIT:C160599 Advanced Esophageal Carcinoma 7 271855 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 271856 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 271857 -NCIT:C168976 Locally Advanced Esophageal Carcinoma 7 271858 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 271859 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 271860 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 271861 -NCIT:C166171 Localized Esophageal Carcinoma 6 271862 -NCIT:C171604 Refractory Esophageal Carcinoma 6 271863 -NCIT:C171606 Refractory Esophageal Squamous Cell Carcinoma 7 271864 -NCIT:C176892 Refractory Esophageal Adenocarcinoma 7 271865 -NCIT:C27421 Esophageal Adenosquamous Carcinoma 6 271866 -NCIT:C27422 Esophageal Undifferentiated Carcinoma 6 271867 -NCIT:C3999 Recurrent Esophageal Carcinoma 6 271868 -NCIT:C8627 Recurrent Esophageal Adenocarcinoma 7 271869 -NCIT:C8633 Recurrent Esophageal Squamous Cell Carcinoma 7 271870 -NCIT:C4024 Esophageal Squamous Cell Carcinoma 6 271871 -NCIT:C133442 Esophageal Squamous Cell Carcinoma by AJCC v7 Stage 7 271872 -NCIT:C5019 Stage IV Esophageal Squamous Cell Carcinoma AJCC v7 8 271873 -NCIT:C5020 Stage III Esophageal Squamous Cell Carcinoma AJCC v7 8 271874 -NCIT:C87787 Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v7 9 271875 -NCIT:C87788 Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v7 9 271876 -NCIT:C87789 Stage IIIC Esophageal Squamous Cell Carcinoma AJCC v7 9 271877 -NCIT:C5021 Stage II Esophageal Squamous Cell Carcinoma AJCC v7 8 271878 -NCIT:C6737 Stage IIB Esophageal Squamous Cell Carcinoma AJCC v7 9 271879 -NCIT:C6738 Stage IIA Esophageal Squamous Cell Carcinoma AJCC v7 9 271880 -NCIT:C5022 Stage I Esophageal Squamous Cell Carcinoma AJCC v7 8 271881 -NCIT:C87780 Stage IA Esophageal Squamous Cell Carcinoma AJCC v7 9 271882 -NCIT:C87781 Stage IB Esophageal Squamous Cell Carcinoma AJCC v7 9 271883 -NCIT:C5023 Stage 0 Esophageal Squamous Cell Carcinoma AJCC v7 8 271884 -NCIT:C133443 Esophageal Squamous Cell Carcinoma by AJCC v8 Stage 7 271885 -NCIT:C133444 Esophageal Squamous Cell Carcinoma by AJCC v8 Clinical Stage 8 271886 -NCIT:C133447 Clinical Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 9 271887 -NCIT:C133448 Clinical Stage I Esophageal Squamous Cell Carcinoma AJCC v8 9 271888 -NCIT:C133449 Clinical Stage II Esophageal Squamous Cell Carcinoma AJCC v8 9 271889 -NCIT:C133450 Clinical Stage III Esophageal Squamous Cell Carcinoma AJCC v8 9 271890 -NCIT:C133451 Clinical Stage IV Esophageal Squamous Cell Carcinoma AJCC v8 9 271891 -NCIT:C133452 Clinical Stage IVA Esophageal Squamous Cell Carcinoma AJCC v8 10 271892 -NCIT:C133453 Clinical Stage IVB Esophageal Squamous Cell Carcinoma AJCC v8 10 271893 -NCIT:C133445 Esophageal Squamous Cell Carcinoma by AJCC v8 Pathologic Stage 8 271894 -NCIT:C133519 Pathologic Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 9 271895 -NCIT:C133521 Pathologic Stage I Esophageal Squamous Cell Carcinoma AJCC v8 9 271896 -NCIT:C133525 Pathologic Stage IA Esophageal Squamous Cell Carcinoma AJCC v8 10 271897 -NCIT:C133530 Pathologic Stage IB Esophageal Squamous Cell Carcinoma AJCC v8 10 271898 -NCIT:C133532 Pathologic Stage II Esophageal Squamous Cell Carcinoma AJCC v8 9 271899 -NCIT:C133534 Pathologic Stage IIA Esophageal Squamous Cell Carcinoma AJCC v8 10 271900 -NCIT:C133535 Pathologic Stage IIB Esophageal Squamous Cell Carcinoma AJCC v8 10 271901 -NCIT:C133536 Pathologic Stage III Esophageal Squamous Cell Carcinoma AJCC v8 9 271902 -NCIT:C133537 Pathologic Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v8 10 271903 -NCIT:C133538 Pathologic Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v8 10 271904 -NCIT:C133539 Pathologic Stage IV Esophageal Squamous Cell Carcinoma AJCC v8 9 271905 -NCIT:C133541 Pathologic Stage IVA Esophageal Squamous Cell Carcinoma AJCC v8 10 271906 -NCIT:C133542 Pathologic Stage IVB Esophageal Squamous Cell Carcinoma AJCC v8 10 271907 -NCIT:C133446 Esophageal Squamous Cell Carcinoma by AJCC v8 Postneoadjuvant Therapy Stage 8 271908 -NCIT:C133454 Postneoadjuvant Therapy Stage I Esophageal Squamous Cell Carcinoma AJCC v8 9 271909 -NCIT:C133455 Postneoadjuvant Therapy Stage II Esophageal Squamous Cell Carcinoma AJCC v8 9 271910 -NCIT:C133456 Postneoadjuvant Therapy Stage III Esophageal Squamous Cell Carcinoma AJCC v8 9 271911 -NCIT:C133457 Postneoadjuvant Therapy Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v8 10 271912 -NCIT:C133458 Postneoadjuvant Therapy Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v8 10 271913 -NCIT:C133459 Postneoadjuvant Therapy Stage IV Esophageal Squamous Cell Carcinoma AJCC v8 9 271914 -NCIT:C133460 Postneoadjuvant Therapy Stage IVA Esophageal Squamous Cell Carcinoma AJCC v8 10 271915 -NCIT:C133461 Postneoadjuvant Therapy Stage IVB Esophageal Squamous Cell Carcinoma AJCC v8 10 271916 -NCIT:C150029 Thoracic Esophagus Squamous Cell Carcinoma 7 271917 -NCIT:C150032 Cervical Esophagus Squamous Cell Carcinoma 7 271918 -NCIT:C150037 Distal Esophagus Squamous Cell Carcinoma 7 271919 -NCIT:C156075 Metastatic Esophageal Squamous Cell Carcinoma 7 271920 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 271921 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 271922 -NCIT:C171606 Refractory Esophageal Squamous Cell Carcinoma 7 271923 -NCIT:C171608 Unresectable Esophageal Squamous Cell Carcinoma 7 271924 -NCIT:C27420 Esophageal Verrucous Carcinoma 7 271925 -NCIT:C27680 Human Papillomavirus-Related Esophageal Squamous Cell Carcinoma 7 271926 -NCIT:C27928 Alcohol-Related Esophageal Squamous Cell Carcinoma 7 271927 -NCIT:C7032 Esophageal Basaloid Carcinoma 7 271928 -NCIT:C8633 Recurrent Esophageal Squamous Cell Carcinoma 7 271929 -NCIT:C95608 Esophageal Spindle Cell Carcinoma 7 271930 -NCIT:C95610 Esophageal Well Differentiated Squamous Cell Carcinoma 7 271931 -NCIT:C179888 Esophageal Carcinoma Cuniculatum 8 271932 -NCIT:C95611 Esophageal Moderately Differentiated Squamous Cell Carcinoma 7 271933 -NCIT:C95612 Esophageal Poorly Differentiated Squamous Cell Carcinoma 7 271934 -NCIT:C4025 Esophageal Adenocarcinoma 6 271935 -NCIT:C133400 Esophageal Adenocarcinoma by AJCC v8 Stage 7 271936 -NCIT:C133401 Esophageal Adenocarcinoma by AJCC v8 Clinical Stage 8 271937 -NCIT:C133402 Clinical Stage 0 Esophageal Adenocarcinoma AJCC v8 9 271938 -NCIT:C133403 Clinical Stage I Esophageal Adenocarcinoma AJCC v8 9 271939 -NCIT:C133404 Clinical Stage II Esophageal Adenocarcinoma AJCC v8 9 271940 -NCIT:C133405 Clinical Stage IIA Esophageal Adenocarcinoma AJCC v8 10 271941 -NCIT:C133406 Clinical Stage IIB Esophageal Adenocarcinoma AJCC v8 10 271942 -NCIT:C133407 Clinical Stage III Esophageal Adenocarcinoma AJCC v8 9 271943 -NCIT:C133408 Clinical Stage IV Esophageal Adenocarcinoma AJCC v8 9 271944 -NCIT:C133409 Clinical Stage IVA Esophageal Adenocarcinoma AJCC v8 10 271945 -NCIT:C133410 Clinical Stage IVB Esophageal Adenocarcinoma AJCC v8 10 271946 -NCIT:C133412 Esophageal Adenocarcinoma by AJCC v8 Pathologic Stage 8 271947 -NCIT:C133413 Pathologic Stage 0 Esophageal Adenocarcinoma AJCC v8 9 271948 -NCIT:C133414 Pathologic Stage I Esophageal Adenocarcinoma AJCC v8 9 271949 -NCIT:C133415 Pathologic Stage IA Esophageal Adenocarcinoma AJCC v8 10 271950 -NCIT:C133416 Pathologic Stage IB Esophageal Adenocarcinoma AJCC v8 10 271951 -NCIT:C133417 Pathologic Stage IC Esophageal Adenocarcinoma AJCC v8 10 271952 -NCIT:C133418 Pathologic Stage II Esophageal Adenocarcinoma AJCC v8 9 271953 -NCIT:C133419 Pathologic Stage IIA Esophageal Adenocarcinoma AJCC v8 10 271954 -NCIT:C133420 Pathologic Stage IIB Esophageal Adenocarcinoma AJCC v8 10 271955 -NCIT:C133421 Pathologic Stage III Esophageal Adenocarcinoma AJCC v8 9 271956 -NCIT:C133422 Pathologic Stage IIIA Esophageal Adenocarcinoma AJCC v8 10 271957 -NCIT:C133423 Pathologic Stage IIIB Esophageal Adenocarcinoma AJCC v8 10 271958 -NCIT:C133424 Pathologic Stage IV Esophageal Adenocarcinoma AJCC v8 9 271959 -NCIT:C133425 Pathologic Stage IVA Esophageal Adenocarcinoma AJCC v8 10 271960 -NCIT:C133426 Pathologic Stage IVB Esophageal Adenocarcinoma AJCC v8 10 271961 -NCIT:C133432 Esophageal Adenocarcinoma by AJCC v8 Postneoadjuvant Therapy Stage 8 271962 -NCIT:C133433 Postneoadjuvant Therapy Stage I Esophageal Adenocarcinoma AJCC v8 9 271963 -NCIT:C133434 Postneoadjuvant Therapy Stage II Esophageal Adenocarcinoma AJCC v8 9 271964 -NCIT:C133435 Postneoadjuvant Therapy Stage III Esophageal Adenocarcinoma AJCC v8 9 271965 -NCIT:C133436 Postneoadjuvant Therapy Stage IIIA Esophageal Adenocarcinoma AJCC v8 10 271966 -NCIT:C133437 Postneoadjuvant Therapy Stage IIIB Esophageal Adenocarcinoma AJCC v8 10 271967 -NCIT:C133438 Postneoadjuvant Therapy Stage IV Esophageal Adenocarcinoma AJCC v8 9 271968 -NCIT:C133439 Postneoadjuvant Therapy Stage IVA Esophageal Adenocarcinoma AJCC v8 10 271969 -NCIT:C133440 Postneoadjuvant Therapy Stage IVB Esophageal Adenocarcinoma AJCC v8 10 271970 -NCIT:C133411 Esophageal Adenocarcinoma by AJCC v7 Stage 7 271971 -NCIT:C8628 Stage II Esophageal Adenocarcinoma AJCC v7 8 271972 -NCIT:C6731 Stage IIA Esophageal Adenocarcinoma AJCC v7 9 271973 -NCIT:C6732 Stage IIB Esophageal Adenocarcinoma AJCC v7 9 271974 -NCIT:C8629 Stage 0 Esophageal Adenocarcinoma AJCC v7 8 271975 -NCIT:C8630 Stage I Esophageal Adenocarcinoma AJCC v7 8 271976 -NCIT:C87782 Stage IA Esophageal Adenocarcinoma AJCC v7 9 271977 -NCIT:C87783 Stage IB Esophageal Adenocarcinoma AJCC v7 9 271978 -NCIT:C8631 Stage III Esophageal Adenocarcinoma AJCC v7 8 271979 -NCIT:C87784 Stage IIIA Esophageal Adenocarcinoma AJCC v7 9 271980 -NCIT:C87785 Stage IIIB Esophageal Adenocarcinoma AJCC v7 9 271981 -NCIT:C87786 Stage IIIC Esophageal Adenocarcinoma AJCC v7 9 271982 -NCIT:C8632 Stage IV Esophageal Adenocarcinoma AJCC v7 8 271983 -NCIT:C150027 Thoracic Esophagus Adenocarcinoma 7 271984 -NCIT:C150031 Cervical Esophagus Adenocarcinoma 7 271985 -NCIT:C152036 Distal Esophagus Adenocarcinoma 7 271986 -NCIT:C172248 Unresectable Distal Esophagus Adenocarcinoma 8 271987 -NCIT:C172249 Metastatic Distal Esophagus Adenocarcinoma 8 271988 -NCIT:C7027 Barrett Adenocarcinoma 8 271989 -NCIT:C156074 Metastatic Esophageal Adenocarcinoma 7 271990 -NCIT:C166120 Oligometastatic Esophageal Adenocarcinoma 8 271991 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 271992 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 271993 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 271994 -NCIT:C172249 Metastatic Distal Esophagus Adenocarcinoma 8 271995 -NCIT:C161906 Esophageal Intramucosal Adenocarcinoma 7 271996 -NCIT:C173162 Unresectable Esophageal Adenocarcinoma 7 271997 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 271998 -NCIT:C172248 Unresectable Distal Esophagus Adenocarcinoma 8 271999 -NCIT:C176892 Refractory Esophageal Adenocarcinoma 7 272000 -NCIT:C8627 Recurrent Esophageal Adenocarcinoma 7 272001 -NCIT:C5342 Esophageal Adenoid Cystic Carcinoma 6 272002 -NCIT:C5343 Esophageal Mucoepidermoid Carcinoma 6 272003 -NCIT:C90500 Esophageal Cancer by AJCC v6 Stage 6 272004 -NCIT:C3637 Stage 0 Esophageal Cancer AJCC v6 7 272005 -NCIT:C9210 Stage I Esophageal Cancer AJCC v6 7 272006 -NCIT:C9211 Stage II Esophageal Cancer AJCC v6 7 272007 -NCIT:C9212 Stage III Esophageal Cancer AJCC v6 7 272008 -NCIT:C9213 Stage IV Esophageal Cancer AJCC v6 7 272009 -NCIT:C91221 Esophageal Cancer by AJCC v7 Stage 6 272010 -NCIT:C133411 Esophageal Adenocarcinoma by AJCC v7 Stage 7 272011 -NCIT:C8628 Stage II Esophageal Adenocarcinoma AJCC v7 8 272012 -NCIT:C6731 Stage IIA Esophageal Adenocarcinoma AJCC v7 9 272013 -NCIT:C6732 Stage IIB Esophageal Adenocarcinoma AJCC v7 9 272014 -NCIT:C8629 Stage 0 Esophageal Adenocarcinoma AJCC v7 8 272015 -NCIT:C8630 Stage I Esophageal Adenocarcinoma AJCC v7 8 272016 -NCIT:C87782 Stage IA Esophageal Adenocarcinoma AJCC v7 9 272017 -NCIT:C87783 Stage IB Esophageal Adenocarcinoma AJCC v7 9 272018 -NCIT:C8631 Stage III Esophageal Adenocarcinoma AJCC v7 8 272019 -NCIT:C87784 Stage IIIA Esophageal Adenocarcinoma AJCC v7 9 272020 -NCIT:C87785 Stage IIIB Esophageal Adenocarcinoma AJCC v7 9 272021 -NCIT:C87786 Stage IIIC Esophageal Adenocarcinoma AJCC v7 9 272022 -NCIT:C8632 Stage IV Esophageal Adenocarcinoma AJCC v7 8 272023 -NCIT:C133442 Esophageal Squamous Cell Carcinoma by AJCC v7 Stage 7 272024 -NCIT:C5019 Stage IV Esophageal Squamous Cell Carcinoma AJCC v7 8 272025 -NCIT:C5020 Stage III Esophageal Squamous Cell Carcinoma AJCC v7 8 272026 -NCIT:C87787 Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v7 9 272027 -NCIT:C87788 Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v7 9 272028 -NCIT:C87789 Stage IIIC Esophageal Squamous Cell Carcinoma AJCC v7 9 272029 -NCIT:C5021 Stage II Esophageal Squamous Cell Carcinoma AJCC v7 8 272030 -NCIT:C6737 Stage IIB Esophageal Squamous Cell Carcinoma AJCC v7 9 272031 -NCIT:C6738 Stage IIA Esophageal Squamous Cell Carcinoma AJCC v7 9 272032 -NCIT:C5022 Stage I Esophageal Squamous Cell Carcinoma AJCC v7 8 272033 -NCIT:C87780 Stage IA Esophageal Squamous Cell Carcinoma AJCC v7 9 272034 -NCIT:C87781 Stage IB Esophageal Squamous Cell Carcinoma AJCC v7 9 272035 -NCIT:C5023 Stage 0 Esophageal Squamous Cell Carcinoma AJCC v7 8 272036 -NCIT:C89771 Stage 0 Esophageal Cancer AJCC v7 7 272037 -NCIT:C5023 Stage 0 Esophageal Squamous Cell Carcinoma AJCC v7 8 272038 -NCIT:C8629 Stage 0 Esophageal Adenocarcinoma AJCC v7 8 272039 -NCIT:C89793 Stage I Esophageal Cancer AJCC v7 7 272040 -NCIT:C115117 Stage IA Esophageal Cancer AJCC v7 8 272041 -NCIT:C87780 Stage IA Esophageal Squamous Cell Carcinoma AJCC v7 9 272042 -NCIT:C87782 Stage IA Esophageal Adenocarcinoma AJCC v7 9 272043 -NCIT:C115118 Stage IB Esophageal Cancer AJCC v7 8 272044 -NCIT:C87781 Stage IB Esophageal Squamous Cell Carcinoma AJCC v7 9 272045 -NCIT:C87783 Stage IB Esophageal Adenocarcinoma AJCC v7 9 272046 -NCIT:C5022 Stage I Esophageal Squamous Cell Carcinoma AJCC v7 8 272047 -NCIT:C87780 Stage IA Esophageal Squamous Cell Carcinoma AJCC v7 9 272048 -NCIT:C87781 Stage IB Esophageal Squamous Cell Carcinoma AJCC v7 9 272049 -NCIT:C8630 Stage I Esophageal Adenocarcinoma AJCC v7 8 272050 -NCIT:C87782 Stage IA Esophageal Adenocarcinoma AJCC v7 9 272051 -NCIT:C87783 Stage IB Esophageal Adenocarcinoma AJCC v7 9 272052 -NCIT:C89794 Stage II Esophageal Cancer AJCC v7 7 272053 -NCIT:C5021 Stage II Esophageal Squamous Cell Carcinoma AJCC v7 8 272054 -NCIT:C6737 Stage IIB Esophageal Squamous Cell Carcinoma AJCC v7 9 272055 -NCIT:C6738 Stage IIA Esophageal Squamous Cell Carcinoma AJCC v7 9 272056 -NCIT:C5691 Stage IIA Esophageal Cancer AJCC v7 8 272057 -NCIT:C6731 Stage IIA Esophageal Adenocarcinoma AJCC v7 9 272058 -NCIT:C6738 Stage IIA Esophageal Squamous Cell Carcinoma AJCC v7 9 272059 -NCIT:C5692 Stage IIB Esophageal Cancer AJCC v7 8 272060 -NCIT:C6732 Stage IIB Esophageal Adenocarcinoma AJCC v7 9 272061 -NCIT:C6737 Stage IIB Esophageal Squamous Cell Carcinoma AJCC v7 9 272062 -NCIT:C8628 Stage II Esophageal Adenocarcinoma AJCC v7 8 272063 -NCIT:C6731 Stage IIA Esophageal Adenocarcinoma AJCC v7 9 272064 -NCIT:C6732 Stage IIB Esophageal Adenocarcinoma AJCC v7 9 272065 -NCIT:C89795 Stage III Esophageal Cancer AJCC v7 7 272066 -NCIT:C115119 Stage IIIA Esophageal Cancer AJCC v7 8 272067 -NCIT:C87784 Stage IIIA Esophageal Adenocarcinoma AJCC v7 9 272068 -NCIT:C87787 Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v7 9 272069 -NCIT:C115120 Stage IIIB Esophageal Cancer AJCC v7 8 272070 -NCIT:C87785 Stage IIIB Esophageal Adenocarcinoma AJCC v7 9 272071 -NCIT:C87788 Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v7 9 272072 -NCIT:C115121 Stage IIIC Esophageal Cancer AJCC v7 8 272073 -NCIT:C87786 Stage IIIC Esophageal Adenocarcinoma AJCC v7 9 272074 -NCIT:C87789 Stage IIIC Esophageal Squamous Cell Carcinoma AJCC v7 9 272075 -NCIT:C5020 Stage III Esophageal Squamous Cell Carcinoma AJCC v7 8 272076 -NCIT:C87787 Stage IIIA Esophageal Squamous Cell Carcinoma AJCC v7 9 272077 -NCIT:C87788 Stage IIIB Esophageal Squamous Cell Carcinoma AJCC v7 9 272078 -NCIT:C87789 Stage IIIC Esophageal Squamous Cell Carcinoma AJCC v7 9 272079 -NCIT:C8631 Stage III Esophageal Adenocarcinoma AJCC v7 8 272080 -NCIT:C87784 Stage IIIA Esophageal Adenocarcinoma AJCC v7 9 272081 -NCIT:C87785 Stage IIIB Esophageal Adenocarcinoma AJCC v7 9 272082 -NCIT:C87786 Stage IIIC Esophageal Adenocarcinoma AJCC v7 9 272083 -NCIT:C89804 Stage IV Esophageal Cancer AJCC v7 7 272084 -NCIT:C5019 Stage IV Esophageal Squamous Cell Carcinoma AJCC v7 8 272085 -NCIT:C8632 Stage IV Esophageal Adenocarcinoma AJCC v7 8 272086 -NCIT:C95619 Esophageal Neuroendocrine Carcinoma 6 272087 -NCIT:C6762 Esophageal Small Cell Neuroendocrine Carcinoma 7 272088 -NCIT:C95620 Esophageal Large Cell Neuroendocrine Carcinoma 7 272089 -NCIT:C95621 Esophageal Mixed Adenoneuroendocrine Carcinoma 6 272090 -NCIT:C35180 Digestive System Carcinoma In Situ 5 272091 -NCIT:C133402 Clinical Stage 0 Esophageal Adenocarcinoma AJCC v8 6 272092 -NCIT:C133413 Pathologic Stage 0 Esophageal Adenocarcinoma AJCC v8 6 272093 -NCIT:C133447 Clinical Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 6 272094 -NCIT:C133519 Pathologic Stage 0 Esophageal Squamous Cell Carcinoma AJCC v8 6 272095 -NCIT:C133550 Clinical Stage 0 Gastroesophageal Junction Adenocarcinoma AJCC v8 6 272096 -NCIT:C133564 Pathologic Stage 0 Gastroesophageal Junction Adenocarcinoma AJCC v8 6 272097 -NCIT:C133647 Clinical Stage 0 Gastric Cancer AJCC v8 6 272098 -NCIT:C133654 Pathologic Stage 0 Gastric Cancer AJCC v8 6 272099 -NCIT:C133795 Stage 0 Anal Cancer AJCC v8 6 272100 -NCIT:C157575 Anal Intraepithelial Neoplasia 3 7 272101 -NCIT:C133894 Stage 0 Small Intestinal Adenocarcinoma AJCC v8 6 272102 -NCIT:C134118 Stage 0 Appendix Carcinoma AJCC v8 6 272103 -NCIT:C134182 Stage 0 Colorectal Cancer AJCC v8 6 272104 -NCIT:C134271 Stage 0 Colon Cancer AJCC v8 7 272105 -NCIT:C134291 Stage 0 Rectal Cancer AJCC v8 7 272106 -NCIT:C134663 Stage 0 Gallbladder Cancer AJCC v8 6 272107 -NCIT:C134865 Stage 0 Ampulla of Vater Cancer AJCC v8 6 272108 -NCIT:C134914 Stage 0 Pancreatic Cancer AJCC v8 6 272109 -NCIT:C3637 Stage 0 Esophageal Cancer AJCC v6 6 272110 -NCIT:C4439 Stage 0 Gallbladder Cancer AJCC v6 and v7 6 272111 -NCIT:C4444 Stage 0 Ampulla of Vater Cancer AJCC v7 6 272112 -NCIT:C4593 Stage 0 Appendix Carcinoma AJCC v7 6 272113 -NCIT:C4892 Stage 0 Small Intestinal Cancer AJCC v7 6 272114 -NCIT:C5729 Stage 0 Pancreatic Cancer AJCC v6 and v7 6 272115 -NCIT:C67493 High-Grade Biliary Intraepithelial Neoplasia 6 272116 -NCIT:C7788 Stage 0 Gastric Cancer AJCC v6 and v7 6 272117 -NCIT:C4428 Gastric Cardia Carcinoma In Situ AJCC v6 and v7 7 272118 -NCIT:C4429 Gastric Fundus Carcinoma In Situ AJCC v6 and v7 7 272119 -NCIT:C4430 Gastric Body Carcinoma In Situ AJCC v6 and v7 7 272120 -NCIT:C4431 Gastric Pylorus Carcinoma In Situ AJCC v6 and v7 7 272121 -NCIT:C8400 Gastric Antrum Carcinoma In Situ AJCC v6 and v7 8 272122 -NCIT:C7794 Stage 0 Anal Canal Cancer AJCC v6 and v7 6 272123 -NCIT:C27282 Stage 0 AIDS-Related Anal Canal Cancer AJCC v6 and v7 7 272124 -NCIT:C8932 Stage 0 Colorectal Cancer AJCC v6 and v7 6 272125 -NCIT:C3638 Stage 0 Colon Cancer AJCC v6 and v7 7 272126 -NCIT:C4594 Cecum Carcinoma In Situ 8 272127 -NCIT:C4853 Stage 0 Rectal Cancer AJCC v6 and v7 7 272128 -NCIT:C5017 Stage 0 Rectosigmoid Cancer AJCC v6 and v7 7 272129 -NCIT:C89771 Stage 0 Esophageal Cancer AJCC v7 6 272130 -NCIT:C5023 Stage 0 Esophageal Squamous Cell Carcinoma AJCC v7 7 272131 -NCIT:C8629 Stage 0 Esophageal Adenocarcinoma AJCC v7 7 272132 -NCIT:C4911 Gastric Carcinoma 5 272133 -NCIT:C118813 Childhood Gastric Carcinoma 6 272134 -NCIT:C133638 Gastric Cancer by AJCC v8 Stage 6 272135 -NCIT:C133639 Gastric Cancer by AJCC v8 Clinical Stage 7 272136 -NCIT:C133647 Clinical Stage 0 Gastric Cancer AJCC v8 8 272137 -NCIT:C133648 Clinical Stage I Gastric Cancer AJCC v8 8 272138 -NCIT:C133649 Clinical Stage II Gastric Cancer AJCC v8 8 272139 -NCIT:C133681 Clinical Stage IIA Gastric Cancer AJCC v8 9 272140 -NCIT:C133682 Clinical Stage IIB Gastric Cancer AJCC v8 9 272141 -NCIT:C133650 Clinical Stage III Gastric Cancer AJCC v8 8 272142 -NCIT:C133651 Clinical Stage IV Gastric Cancer AJCC v8 8 272143 -NCIT:C133652 Clinical Stage IVA Gastric Cancer AJCC v8 9 272144 -NCIT:C133653 Clinical Stage IVB Gastric Cancer AJCC v8 9 272145 -NCIT:C133640 Gastric Cancer by AJCC v8 Pathologic Stage 7 272146 -NCIT:C133654 Pathologic Stage 0 Gastric Cancer AJCC v8 8 272147 -NCIT:C133655 Pathologic Stage I Gastric Cancer AJCC v8 8 272148 -NCIT:C133656 Pathologic Stage IA Gastric Cancer AJCC v8 9 272149 -NCIT:C133657 Pathologic Stage IB Gastric Cancer AJCC v8 9 272150 -NCIT:C133659 Pathologic Stage II Gastric Cancer AJCC v8 8 272151 -NCIT:C133660 Pathologic Stage IIA Gastric Cancer AJCC v8 9 272152 -NCIT:C133662 Pathologic Stage IIB Gastric Cancer AJCC v8 9 272153 -NCIT:C133663 Pathologic Stage III Gastric Cancer AJCC v8 8 272154 -NCIT:C133665 Pathologic Stage IIIA Gastric Cancer AJCC v8 9 272155 -NCIT:C133666 Pathologic Stage IIIB Gastric Cancer AJCC v8 9 272156 -NCIT:C133667 Pathologic Stage IIIC Gastric Cancer AJCC v8 9 272157 -NCIT:C133668 Pathologic Stage IV Gastric Cancer AJCC v8 8 272158 -NCIT:C133641 Gastric Cancer by AJCC v8 Postneoadjuvant Therapy Stage 7 272159 -NCIT:C133670 Postneoadjuvant Therapy Stage I Gastric Cancer AJCC v8 8 272160 -NCIT:C133671 Postneoadjuvant Therapy Stage II Gastric Cancer AJCC v8 8 272161 -NCIT:C133672 Postneoadjuvant Therapy Stage III Gastric Cancer AJCC v8 8 272162 -NCIT:C133673 Postneoadjuvant Therapy Stage IV Gastric Cancer AJCC v8 8 272163 -NCIT:C147996 Refractory Gastric Carcinoma 6 272164 -NCIT:C167074 Refractory Gastric Adenocarcinoma 7 272165 -NCIT:C153320 Metastatic Gastric Carcinoma 6 272166 -NCIT:C153319 Metastatic Gastric Adenocarcinoma 7 272167 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 272168 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 272169 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 272170 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 272171 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 272172 -NCIT:C165630 Metastatic Proximal Gastric Adenocarcinoma 8 272173 -NCIT:C166121 Oligometastatic Gastric Adenocarcinoma 8 272174 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 272175 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 272176 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 7 272177 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 272178 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 272179 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 272180 -NCIT:C162772 Locally Advanced Gastric Carcinoma 7 272181 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 272182 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 272183 -NCIT:C165299 Advanced Gastric Carcinoma 7 272184 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 272185 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 272186 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 272187 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 272188 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 272189 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 7 272190 -NCIT:C156167 Localized Gastric Carcinoma 6 272191 -NCIT:C159775 Unresectable Gastric Carcinoma 6 272192 -NCIT:C154221 Unresectable Gastric Adenocarcinoma 7 272193 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 272194 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 272195 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 272196 -NCIT:C162304 EBV-Related Gastric Carcinoma 6 272197 -NCIT:C4004 Gastric Adenocarcinoma 6 272198 -NCIT:C153319 Metastatic Gastric Adenocarcinoma 7 272199 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 272200 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 272201 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 272202 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 272203 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 272204 -NCIT:C165630 Metastatic Proximal Gastric Adenocarcinoma 8 272205 -NCIT:C166121 Oligometastatic Gastric Adenocarcinoma 8 272206 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 272207 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 272208 -NCIT:C154221 Unresectable Gastric Adenocarcinoma 7 272209 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 272210 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 272211 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 272212 -NCIT:C154622 Recurrent Gastric Adenocarcinoma 7 272213 -NCIT:C165628 Proximal Gastric Adenocarcinoma 7 272214 -NCIT:C165630 Metastatic Proximal Gastric Adenocarcinoma 8 272215 -NCIT:C167074 Refractory Gastric Adenocarcinoma 7 272216 -NCIT:C43527 Sporadic Gastric Adenocarcinoma 7 272217 -NCIT:C27131 Early Gastric Cancer 8 272218 -NCIT:C95763 Gastric Intramucosal Adenocarcinoma 9 272219 -NCIT:C27765 Helicobacter Pylori-Related Gastric Adenocarcinoma 8 272220 -NCIT:C43529 Sporadic Gastric Diffuse Adenocarcinoma 8 272221 -NCIT:C5247 Gastric Cardia Adenocarcinoma 8 272222 -NCIT:C5248 Gastric Mucinous Adenocarcinoma 8 272223 -NCIT:C5472 Gastric Papillary Adenocarcinoma 8 272224 -NCIT:C5473 Gastric Tubular Adenocarcinoma 8 272225 -NCIT:C65194 Gastric Parietal Cell Adenocarcinoma 8 272226 -NCIT:C67526 Gastric Mixed Adenocarcinoma 8 272227 -NCIT:C9157 Gastric Intestinal-Type Adenocarcinoma 8 272228 -NCIT:C95743 Gastric Poorly Cohesive Adenocarcinoma 8 272229 -NCIT:C5250 Gastric Signet Ring Cell Adenocarcinoma 9 272230 -NCIT:C95747 Gastric Hepatoid Adenocarcinoma 8 272231 -NCIT:C95748 Gastric Carcinoma with Lymphoid Stroma 8 272232 -NCIT:C9159 Gastric Diffuse Adenocarcinoma 7 272233 -NCIT:C43295 Hereditary Gastric Diffuse Adenocarcinoma 8 272234 -NCIT:C43529 Sporadic Gastric Diffuse Adenocarcinoma 8 272235 -NCIT:C5474 Gastric Adenosquamous Carcinoma 6 272236 -NCIT:C5475 Gastric Squamous Cell Carcinoma 6 272237 -NCIT:C150034 Gastric Cardia Squamous Cell Carcinoma 7 272238 -NCIT:C5476 Gastric Undifferentiated Carcinoma 6 272239 -NCIT:C6794 Gastric Cardia Carcinoma 6 272240 -NCIT:C150034 Gastric Cardia Squamous Cell Carcinoma 7 272241 -NCIT:C4428 Gastric Cardia Carcinoma In Situ AJCC v6 and v7 7 272242 -NCIT:C5247 Gastric Cardia Adenocarcinoma 7 272243 -NCIT:C6795 Gastric Pylorus Carcinoma 6 272244 -NCIT:C4431 Gastric Pylorus Carcinoma In Situ AJCC v6 and v7 7 272245 -NCIT:C8400 Gastric Antrum Carcinoma In Situ AJCC v6 and v7 8 272246 -NCIT:C8398 Gastric Fundus Carcinoma 6 272247 -NCIT:C4429 Gastric Fundus Carcinoma In Situ AJCC v6 and v7 7 272248 -NCIT:C8399 Gastric Body Carcinoma 6 272249 -NCIT:C4430 Gastric Body Carcinoma In Situ AJCC v6 and v7 7 272250 -NCIT:C90503 Gastric Cancer by AJCC v6 Stage 6 272251 -NCIT:C7772 Stage I Gastric Cancer AJCC v6 7 272252 -NCIT:C7773 Stage II Gastric Cancer AJCC v6 7 272253 -NCIT:C7774 Stage III Gastric Cancer AJCC v6 7 272254 -NCIT:C7788 Stage 0 Gastric Cancer AJCC v6 and v7 7 272255 -NCIT:C4428 Gastric Cardia Carcinoma In Situ AJCC v6 and v7 8 272256 -NCIT:C4429 Gastric Fundus Carcinoma In Situ AJCC v6 and v7 8 272257 -NCIT:C4430 Gastric Body Carcinoma In Situ AJCC v6 and v7 8 272258 -NCIT:C4431 Gastric Pylorus Carcinoma In Situ AJCC v6 and v7 8 272259 -NCIT:C8400 Gastric Antrum Carcinoma In Situ AJCC v6 and v7 9 272260 -NCIT:C9036 Stage IV Gastric Cancer AJCC v6 7 272261 -NCIT:C91222 Gastric Cancer by AJCC v7 Stage 6 272262 -NCIT:C7788 Stage 0 Gastric Cancer AJCC v6 and v7 7 272263 -NCIT:C4428 Gastric Cardia Carcinoma In Situ AJCC v6 and v7 8 272264 -NCIT:C4429 Gastric Fundus Carcinoma In Situ AJCC v6 and v7 8 272265 -NCIT:C4430 Gastric Body Carcinoma In Situ AJCC v6 and v7 8 272266 -NCIT:C4431 Gastric Pylorus Carcinoma In Situ AJCC v6 and v7 8 272267 -NCIT:C8400 Gastric Antrum Carcinoma In Situ AJCC v6 and v7 9 272268 -NCIT:C89856 Stage I Gastric Cancer AJCC v7 7 272269 -NCIT:C5468 Stage IA Gastric Cancer AJCC v7 8 272270 -NCIT:C5469 Stage IB Gastric Cancer AJCC v7 8 272271 -NCIT:C89859 Stage II Gastric Cancer AJCC v7 7 272272 -NCIT:C87775 Stage IIA Gastric Cancer AJCC v7 8 272273 -NCIT:C87776 Stage IIB Gastric Cancer AJCC v7 8 272274 -NCIT:C89860 Stage III Gastric Cancer AJCC v7 7 272275 -NCIT:C5470 Stage IIIB Gastric Cancer AJCC v7 8 272276 -NCIT:C5471 Stage IIIA Gastric Cancer AJCC v7 8 272277 -NCIT:C87777 Stage IIIC Gastric Cancer AJCC v7 8 272278 -NCIT:C89861 Stage IV Gastric Cancer AJCC v7 7 272279 -NCIT:C9237 Recurrent Gastric Carcinoma 6 272280 -NCIT:C154622 Recurrent Gastric Adenocarcinoma 7 272281 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 7 272282 -NCIT:C190198 Locally Recurrent Gastric Carcinoma 7 272283 -NCIT:C95884 Gastric Neuroendocrine Carcinoma 6 272284 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 7 272285 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 272286 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 272287 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 272288 -NCIT:C6764 Gastric Small Cell Neuroendocrine Carcinoma 7 272289 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 272290 -NCIT:C95885 Gastric Large Cell Neuroendocrine Carcinoma 7 272291 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 272292 -NCIT:C95886 Gastric Mixed Adenoneuroendocrine Carcinoma 6 272293 -NCIT:C7622 Recurrent Digestive System Carcinoma 5 272294 -NCIT:C151905 Recurrent Metastatic Digestive System Carcinoma 6 272295 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 7 272296 -NCIT:C153359 Recurrent Gastroesophageal Junction Adenocarcinoma 6 272297 -NCIT:C153574 Recurrent Ampulla of Vater Adenocarcinoma 6 272298 -NCIT:C153575 Recurrent Anal Adenocarcinoma 6 272299 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 7 272300 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 7 272301 -NCIT:C153802 Recurrent Appendix Carcinoma 6 272302 -NCIT:C179174 Recurrent Appendix Adenocarcinoma 7 272303 -NCIT:C153579 Recurrent Appendix Mucinous Adenocarcinoma 8 272304 -NCIT:C155938 Recurrent Digestive System Neuroendocrine Carcinoma 6 272305 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 7 272306 -NCIT:C156782 Recurrent Biliary Tract Carcinoma 6 272307 -NCIT:C153360 Recurrent Bile Duct Carcinoma 7 272308 -NCIT:C27325 Recurrent Cholangiocarcinoma 8 272309 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 9 272310 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 9 272311 -NCIT:C7893 Recurrent Extrahepatic Bile Duct Carcinoma 8 272312 -NCIT:C181966 Recurrent Distal Bile Duct Adenocarcinoma 9 272313 -NCIT:C4008 Recurrent Gallbladder Carcinoma 7 272314 -NCIT:C169102 Recurrent Anal Squamous Cell Carcinoma 6 272315 -NCIT:C175360 Recurrent Anal Canal Squamous Cell Carcinoma 7 272316 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 8 272317 -NCIT:C3999 Recurrent Esophageal Carcinoma 6 272318 -NCIT:C8627 Recurrent Esophageal Adenocarcinoma 7 272319 -NCIT:C8633 Recurrent Esophageal Squamous Cell Carcinoma 7 272320 -NCIT:C7110 Recurrent Liver Carcinoma 6 272321 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 7 272322 -NCIT:C7880 Recurrent Adult Liver Carcinoma 7 272323 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 8 272324 -NCIT:C9264 Recurrent Hepatocellular Carcinoma 7 272325 -NCIT:C154082 Recurrent Fibrolamellar Carcinoma 8 272326 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 8 272327 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 8 272328 -NCIT:C7626 Recurrent Pancreatic Carcinoma 6 272329 -NCIT:C155742 Recurrent Pancreatic Adenocarcinoma 7 272330 -NCIT:C153569 Recurrent Pancreatic Acinar Cell Carcinoma 8 272331 -NCIT:C153619 Recurrent Pancreatic Ductal Adenocarcinoma 8 272332 -NCIT:C153620 Recurrent Pancreatic Cystadenocarcinoma 8 272333 -NCIT:C7793 Recurrent Anal Canal Carcinoma 6 272334 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 7 272335 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 7 272336 -NCIT:C175360 Recurrent Anal Canal Squamous Cell Carcinoma 7 272337 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 8 272338 -NCIT:C9249 Recurrent AIDS-Related Anal Canal Carcinoma 7 272339 -NCIT:C7894 Recurrent Small Intestinal Carcinoma 6 272340 -NCIT:C9352 Recurrent Duodenal Carcinoma 7 272341 -NCIT:C8625 Recurrent Colorectal Carcinoma 6 272342 -NCIT:C162441 Recurrent Colorectal Adenocarcinoma 7 272343 -NCIT:C162442 Recurrent Colon Adenocarcinoma 8 272344 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 8 272345 -NCIT:C190199 Locally Recurrent Colorectal Carcinoma 7 272346 -NCIT:C190679 Recurrent Microsatellite Stable Colorectal Carcinoma 7 272347 -NCIT:C3998 Recurrent Colon Carcinoma 7 272348 -NCIT:C162442 Recurrent Colon Adenocarcinoma 8 272349 -NCIT:C8634 Recurrent Rectosigmoid Carcinoma 7 272350 -NCIT:C9238 Recurrent Rectal Carcinoma 7 272351 -NCIT:C162443 Recurrent Rectal Adenocarcinoma 8 272352 -NCIT:C9237 Recurrent Gastric Carcinoma 6 272353 -NCIT:C154622 Recurrent Gastric Adenocarcinoma 7 272354 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 7 272355 -NCIT:C190198 Locally Recurrent Gastric Carcinoma 7 272356 -NCIT:C7724 Small Intestinal Carcinoma 5 272357 -NCIT:C123933 Childhood Small Intestinal Carcinoma 6 272358 -NCIT:C133716 Small Intestinal Cancer by AJCC v7 Stage 6 272359 -NCIT:C4892 Stage 0 Small Intestinal Cancer AJCC v7 7 272360 -NCIT:C5807 Stage I Small Intestinal Cancer AJCC v7 7 272361 -NCIT:C5808 Stage II Small Intestinal Cancer AJCC v7 7 272362 -NCIT:C87791 Stage IIA Small Intestinal Cancer AJCC v7 8 272363 -NCIT:C87792 Stage IIB Small Intestinal Cancer AJCC v7 8 272364 -NCIT:C5809 Stage III Small Intestinal Cancer AJCC v7 7 272365 -NCIT:C87793 Stage IIIA Small Intestinal Cancer AJCC v7 8 272366 -NCIT:C87795 Stage IIIB Small Intestinal Cancer AJCC v7 8 272367 -NCIT:C5810 Stage IV Small Intestinal Cancer AJCC v7 7 272368 -NCIT:C153356 Refractory Small Intestinal Carcinoma 6 272369 -NCIT:C181157 Jejunal Carcinoma 6 272370 -NCIT:C181158 Jejunal Adenocarcinoma 7 272371 -NCIT:C43534 Small Intestinal Squamous Cell Carcinoma 6 272372 -NCIT:C43535 Small Intestinal Adenosquamous Carcinoma 6 272373 -NCIT:C43537 Small Intestinal Medullary Carcinoma 6 272374 -NCIT:C43538 Small Intestinal Undifferentiated Carcinoma 6 272375 -NCIT:C4803 Duodenal Carcinoma 6 272376 -NCIT:C27323 Resectable Duodenal Carcinoma 7 272377 -NCIT:C169108 Resectable Periampullary Adenocarcinoma 8 272378 -NCIT:C7889 Duodenal Adenocarcinoma 7 272379 -NCIT:C27322 Periampullary Adenocarcinoma 8 272380 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 9 272381 -NCIT:C169108 Resectable Periampullary Adenocarcinoma 9 272382 -NCIT:C9352 Recurrent Duodenal Carcinoma 7 272383 -NCIT:C7888 Small Intestinal Adenocarcinoma 6 272384 -NCIT:C133893 Small Intestinal Adenocarcinoma by AJCC v8 Stage 7 272385 -NCIT:C133894 Stage 0 Small Intestinal Adenocarcinoma AJCC v8 8 272386 -NCIT:C133895 Stage I Small Intestinal Adenocarcinoma AJCC v8 8 272387 -NCIT:C133896 Stage II Small Intestinal Adenocarcinoma AJCC v8 8 272388 -NCIT:C133897 Stage IIA Small Intestinal Adenocarcinoma AJCC v8 9 272389 -NCIT:C133898 Stage IIB Small Intestinal Adenocarcinoma AJCC v8 9 272390 -NCIT:C133899 Stage III Small Intestinal Adenocarcinoma AJCC v8 8 272391 -NCIT:C133900 Stage IIIA Small Intestinal Adenocarcinoma AJCC v8 9 272392 -NCIT:C133901 Stage IIIB Small Intestinal Adenocarcinoma AJCC v8 9 272393 -NCIT:C133902 Stage IV Small Intestinal Adenocarcinoma AJCC v8 8 272394 -NCIT:C175516 Unresectable Small Intestinal Adenocarcinoma 7 272395 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 8 272396 -NCIT:C181158 Jejunal Adenocarcinoma 7 272397 -NCIT:C43536 Small Intestinal Mucinous Adenocarcinoma 7 272398 -NCIT:C43543 Small Intestinal Signet Ring Cell Carcinoma 7 272399 -NCIT:C7889 Duodenal Adenocarcinoma 7 272400 -NCIT:C27322 Periampullary Adenocarcinoma 8 272401 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 9 272402 -NCIT:C169108 Resectable Periampullary Adenocarcinoma 9 272403 -NCIT:C8934 Metastatic Small Intestinal Adenocarcinoma 7 272404 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 272405 -NCIT:C7894 Recurrent Small Intestinal Carcinoma 6 272406 -NCIT:C9352 Recurrent Duodenal Carcinoma 7 272407 -NCIT:C8637 Metastatic Small Intestinal Carcinoma 6 272408 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 7 272409 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 272410 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 7 272411 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 272412 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 272413 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 272414 -NCIT:C8934 Metastatic Small Intestinal Adenocarcinoma 7 272415 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 272416 -NCIT:C8638 Unresectable Small Intestinal Carcinoma 6 272417 -NCIT:C175516 Unresectable Small Intestinal Adenocarcinoma 7 272418 -NCIT:C165173 Unresectable Periampullary Adenocarcinoma 8 272419 -NCIT:C8639 Resectable Small Intestinal Carcinoma 6 272420 -NCIT:C27323 Resectable Duodenal Carcinoma 7 272421 -NCIT:C169108 Resectable Periampullary Adenocarcinoma 8 272422 -NCIT:C96064 Small Intestinal Neuroendocrine Carcinoma 6 272423 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 7 272424 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 272425 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 272426 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 272427 -NCIT:C27449 Small Intestinal Small Cell Neuroendocrine Carcinoma 7 272428 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 272429 -NCIT:C96065 Small Intestinal Large Cell Neuroendocrine Carcinoma 7 272430 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 272431 -NCIT:C96066 Small Intestinal Mixed Adenoneuroendocrine Carcinoma 6 272432 -NCIT:C7927 Liver and Intrahepatic Bile Duct Carcinoma 5 272433 -NCIT:C118630 Liver Adenosquamous Carcinoma 6 272434 -NCIT:C134604 Intrahepatic Bile Duct Cancer by AJCC v8 Stage 6 272435 -NCIT:C134609 Stage 0 Intrahepatic Bile Duct Cancer AJCC v8 7 272436 -NCIT:C134756 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v8 8 272437 -NCIT:C134610 Stage I Intrahepatic Bile Duct Cancer AJCC v8 7 272438 -NCIT:C134611 Stage IA Intrahepatic Bile Duct Cancer AJCC v8 8 272439 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 9 272440 -NCIT:C134612 Stage IB Intrahepatic Bile Duct Cancer AJCC v8 8 272441 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 9 272442 -NCIT:C134757 Stage I Intrahepatic Cholangiocarcinoma AJCC v8 8 272443 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 9 272444 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 9 272445 -NCIT:C134614 Stage II Intrahepatic Bile Duct Cancer AJCC v8 7 272446 -NCIT:C134760 Stage II Intrahepatic Cholangiocarcinoma AJCC v8 8 272447 -NCIT:C134615 Stage III Intrahepatic Bile Duct Cancer AJCC v8 7 272448 -NCIT:C134616 Stage IIIA Intrahepatic Bile Duct Cancer AJCC v8 8 272449 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 9 272450 -NCIT:C134618 Stage IIIB Intrahepatic Bile Duct Cancer AJCC v8 8 272451 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 9 272452 -NCIT:C134761 Stage III Intrahepatic Cholangiocarcinoma AJCC v8 8 272453 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 9 272454 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 9 272455 -NCIT:C134619 Stage IV Intrahepatic Bile Duct Cancer AJCC v8 7 272456 -NCIT:C134764 Stage IV Intrahepatic Cholangiocarcinoma AJCC v8 8 272457 -NCIT:C134755 Intrahepatic Cholangiocarcinoma by AJCC v8 Stage 7 272458 -NCIT:C134756 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v8 8 272459 -NCIT:C134757 Stage I Intrahepatic Cholangiocarcinoma AJCC v8 8 272460 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 9 272461 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 9 272462 -NCIT:C134760 Stage II Intrahepatic Cholangiocarcinoma AJCC v8 8 272463 -NCIT:C134761 Stage III Intrahepatic Cholangiocarcinoma AJCC v8 8 272464 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 9 272465 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 9 272466 -NCIT:C134764 Stage IV Intrahepatic Cholangiocarcinoma AJCC v8 8 272467 -NCIT:C153352 Refractory Liver Carcinoma 6 272468 -NCIT:C162450 Refractory Hepatocellular Carcinoma 7 272469 -NCIT:C188887 Refractory Fibrolamellar Carcinoma 8 272470 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 7 272471 -NCIT:C154088 Metastatic Liver Carcinoma 6 272472 -NCIT:C154091 Metastatic Hepatocellular Carcinoma 7 272473 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 8 272474 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 272475 -NCIT:C167336 Advanced Hepatocellular Carcinoma 8 272476 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 272477 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 272478 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 272479 -NCIT:C171298 Locally Advanced Liver Carcinoma 7 272480 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 272481 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 8 272482 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 7 272483 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 8 272484 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 8 272485 -NCIT:C165171 Unresectable Liver and Intrahepatic Bile Duct Carcinoma 6 272486 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 7 272487 -NCIT:C27345 Unresectable Hepatocellular Carcinoma 7 272488 -NCIT:C162602 Unresectable Fibrolamellar Carcinoma 8 272489 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 8 272490 -NCIT:C7878 Localized Unresectable Adult Liver Carcinoma 7 272491 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 8 272492 -NCIT:C165293 Resectable Liver and Intrahepatic Bile Duct Carcinoma 6 272493 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 7 272494 -NCIT:C7691 Resectable Hepatocellular Carcinoma 7 272495 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 8 272496 -NCIT:C7877 Localized Resectable Adult Liver Carcinoma 7 272497 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 8 272498 -NCIT:C172718 Liver Mixed Adenoneuroendocrine Carcinoma 6 272499 -NCIT:C3099 Hepatocellular Carcinoma 6 272500 -NCIT:C115132 Hepatocellular Carcinoma by BCLC Stage 7 272501 -NCIT:C115133 BCLC Stage 0 Hepatocellular Carcinoma 8 272502 -NCIT:C115139 BCLC Stage 0 Adult Hepatocellular Carcinoma 9 272503 -NCIT:C115135 BCLC Stage A Hepatocellular Carcinoma 8 272504 -NCIT:C115140 BCLC Stage A Adult Hepatocellular Carcinoma 9 272505 -NCIT:C115136 BCLC Stage B Hepatocellular Carcinoma 8 272506 -NCIT:C115141 BCLC Stage B Adult Hepatocellular Carcinoma 9 272507 -NCIT:C115137 BCLC Stage C Hepatocellular Carcinoma 8 272508 -NCIT:C115143 BCLC Stage C Adult Hepatocellular Carcinoma 9 272509 -NCIT:C115138 BCLC Stage D Hepatocellular Carcinoma 8 272510 -NCIT:C115144 BCLC Stage D Adult Hepatocellular Carcinoma 9 272511 -NCIT:C134515 Hepatocellular Carcinoma by AJCC v8 Stage 7 272512 -NCIT:C134516 Stage I Hepatocellular Carcinoma AJCC v8 8 272513 -NCIT:C134517 Stage IA Hepatocellular Carcinoma AJCC v8 9 272514 -NCIT:C134518 Stage IB Hepatocellular Carcinoma AJCC v8 9 272515 -NCIT:C134519 Stage II Hepatocellular Carcinoma AJCC v8 8 272516 -NCIT:C134520 Stage III Hepatocellular Carcinoma AJCC v8 8 272517 -NCIT:C134521 Stage IIIA Hepatocellular Carcinoma AJCC v8 9 272518 -NCIT:C134522 Stage IIIB Hepatocellular Carcinoma AJCC v8 9 272519 -NCIT:C134523 Stage IV Hepatocellular Carcinoma AJCC v8 8 272520 -NCIT:C134524 Stage IVA Hepatocellular Carcinoma AJCC v8 9 272521 -NCIT:C134525 Stage IVB Hepatocellular Carcinoma AJCC v8 9 272522 -NCIT:C154091 Metastatic Hepatocellular Carcinoma 7 272523 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 8 272524 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 272525 -NCIT:C167336 Advanced Hepatocellular Carcinoma 8 272526 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 272527 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 272528 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 272529 -NCIT:C162450 Refractory Hepatocellular Carcinoma 7 272530 -NCIT:C188887 Refractory Fibrolamellar Carcinoma 8 272531 -NCIT:C172709 Steatohepatitic Hepatocellular Carcinoma 7 272532 -NCIT:C27924 Alcohol-Related Hepatocellular Carcinoma 8 272533 -NCIT:C172710 Macrotrabecular Massive Hepatocellular Carcinoma 7 272534 -NCIT:C172712 Chromophobe Hepatocellular Carcinoma 7 272535 -NCIT:C172713 Neutrophil-Rich Hepatocellular Carcinoma 7 272536 -NCIT:C172714 Small Hepatocellular Carcinoma 7 272537 -NCIT:C172716 Small Progressed Hepatocellular Carcinoma 8 272538 -NCIT:C96772 Early Hepatocellular Carcinoma 8 272539 -NCIT:C27345 Unresectable Hepatocellular Carcinoma 7 272540 -NCIT:C162602 Unresectable Fibrolamellar Carcinoma 8 272541 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 8 272542 -NCIT:C27388 Scirrhous Hepatocellular Carcinoma 7 272543 -NCIT:C27635 Transplant-Related Hepatocellular Carcinoma 7 272544 -NCIT:C27686 Hepatitis Virus-Related Hepatocellular Carcinoma 7 272545 -NCIT:C27687 Hepatitis B Virus-Related Hepatocellular Carcinoma 8 272546 -NCIT:C27688 Hepatitis C Virus-Related Hepatocellular Carcinoma 8 272547 -NCIT:C27922 Aflatoxins-Related Hepatocellular Carcinoma 7 272548 -NCIT:C4131 Fibrolamellar Carcinoma 7 272549 -NCIT:C114992 Adult Fibrolamellar Carcinoma 8 272550 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 8 272551 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 272552 -NCIT:C154082 Recurrent Fibrolamellar Carcinoma 8 272553 -NCIT:C162602 Unresectable Fibrolamellar Carcinoma 8 272554 -NCIT:C188887 Refractory Fibrolamellar Carcinoma 8 272555 -NCIT:C189932 Childhood Fibrolamellar Carcinoma 8 272556 -NCIT:C43625 Pleomorphic Hepatocellular Carcinoma 7 272557 -NCIT:C114993 Adult Pleomorphic Hepatocellular Carcinoma 8 272558 -NCIT:C43627 Sarcomatoid Hepatocellular Carcinoma 7 272559 -NCIT:C5754 Clear Cell Hepatocellular Carcinoma 7 272560 -NCIT:C7691 Resectable Hepatocellular Carcinoma 7 272561 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 8 272562 -NCIT:C7955 Childhood Hepatocellular Carcinoma 7 272563 -NCIT:C189932 Childhood Fibrolamellar Carcinoma 8 272564 -NCIT:C5708 Stage III Childhood Hepatocellular Carcinoma AJCC v7 8 272565 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 8 272566 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 8 272567 -NCIT:C7838 Stage IV Childhood Hepatocellular Carcinoma AJCC v7 8 272568 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 8 272569 -NCIT:C7956 Adult Hepatocellular Carcinoma 7 272570 -NCIT:C114992 Adult Fibrolamellar Carcinoma 8 272571 -NCIT:C114993 Adult Pleomorphic Hepatocellular Carcinoma 8 272572 -NCIT:C115139 BCLC Stage 0 Adult Hepatocellular Carcinoma 8 272573 -NCIT:C115140 BCLC Stage A Adult Hepatocellular Carcinoma 8 272574 -NCIT:C115141 BCLC Stage B Adult Hepatocellular Carcinoma 8 272575 -NCIT:C115143 BCLC Stage C Adult Hepatocellular Carcinoma 8 272576 -NCIT:C115144 BCLC Stage D Adult Hepatocellular Carcinoma 8 272577 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 8 272578 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 8 272579 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 8 272580 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 8 272581 -NCIT:C90510 Hepatocellular Carcinoma by AJCC v6 Stage 7 272582 -NCIT:C5758 Stage I Hepatocellular Carcinoma AJCC v6 and v7 8 272583 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 9 272584 -NCIT:C5759 Stage II Hepatocellular Carcinoma AJCC v6 and v7 8 272585 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 9 272586 -NCIT:C5760 Stage III Hepatocellular Carcinoma AJCC v6 8 272587 -NCIT:C5763 Stage IV Hepatocellular Carcinoma AJCC v6 8 272588 -NCIT:C91228 Hepatocellular Carcinoma by AJCC v7 Stage 7 272589 -NCIT:C5758 Stage I Hepatocellular Carcinoma AJCC v6 and v7 8 272590 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 9 272591 -NCIT:C5759 Stage II Hepatocellular Carcinoma AJCC v6 and v7 8 272592 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 9 272593 -NCIT:C90180 Stage III Hepatocellular Carcinoma AJCC v7 8 272594 -NCIT:C5708 Stage III Childhood Hepatocellular Carcinoma AJCC v7 9 272595 -NCIT:C5761 Stage IIIA Hepatocellular Carcinoma AJCC v7 9 272596 -NCIT:C5762 Stage IIIB Hepatocellular Carcinoma AJCC v7 9 272597 -NCIT:C88044 Stage IIIC Hepatocellular Carcinoma AJCC v7 9 272598 -NCIT:C90181 Stage IV Hepatocellular Carcinoma AJCC v7 8 272599 -NCIT:C5764 Stage IVA Hepatocellular Carcinoma AJCC v7 9 272600 -NCIT:C5765 Stage IVB Hepatocellular Carcinoma AJCC v7 9 272601 -NCIT:C7838 Stage IV Childhood Hepatocellular Carcinoma AJCC v7 9 272602 -NCIT:C9264 Recurrent Hepatocellular Carcinoma 7 272603 -NCIT:C154082 Recurrent Fibrolamellar Carcinoma 8 272604 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 8 272605 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 8 272606 -NCIT:C96788 Lymphocyte-Rich Hepatocellular Carcinoma 7 272607 -NCIT:C96789 Well Differentiated Hepatocellular Carcinoma 7 272608 -NCIT:C96790 Moderately Differentiated Hepatocellular Carcinoma 7 272609 -NCIT:C96791 Poorly Differentiated Hepatocellular Carcinoma 7 272610 -NCIT:C35417 Intrahepatic Cholangiocarcinoma 6 272611 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 7 272612 -NCIT:C134514 Intrahepatic Cholangiocarcinoma by AJCC v7 Stage 7 272613 -NCIT:C88049 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v7 8 272614 -NCIT:C88050 Stage I Intrahepatic Cholangiocarcinoma AJCC v7 8 272615 -NCIT:C88051 Stage II Intrahepatic Cholangiocarcinoma AJCC v7 8 272616 -NCIT:C88052 Stage III Intrahepatic Cholangiocarcinoma AJCC v7 8 272617 -NCIT:C88053 Stage IVA Intrahepatic Cholangiocarcinoma AJCC v7 8 272618 -NCIT:C88054 Stage IVB Intrahepatic Cholangiocarcinoma AJCC v7 8 272619 -NCIT:C134755 Intrahepatic Cholangiocarcinoma by AJCC v8 Stage 7 272620 -NCIT:C134756 Stage 0 Intrahepatic Cholangiocarcinoma AJCC v8 8 272621 -NCIT:C134757 Stage I Intrahepatic Cholangiocarcinoma AJCC v8 8 272622 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 9 272623 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 9 272624 -NCIT:C134760 Stage II Intrahepatic Cholangiocarcinoma AJCC v8 8 272625 -NCIT:C134761 Stage III Intrahepatic Cholangiocarcinoma AJCC v8 8 272626 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 9 272627 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 9 272628 -NCIT:C134764 Stage IV Intrahepatic Cholangiocarcinoma AJCC v8 8 272629 -NCIT:C148432 Unresectable Intrahepatic Cholangiocarcinoma 7 272630 -NCIT:C156908 Resectable Intrahepatic Cholangiocarcinoma 7 272631 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 7 272632 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 8 272633 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 8 272634 -NCIT:C174247 Refractory Intrahepatic Cholangiocarcinoma 7 272635 -NCIT:C41617 Cholangiolocellular Carcinoma 7 272636 -NCIT:C41618 Mucin-Producing Intrahepatic Cholangiocarcinoma 7 272637 -NCIT:C41619 Signet Ring Cell Intrahepatic Cholangiocarcinoma 7 272638 -NCIT:C41620 Sarcomatoid Intrahepatic Cholangiocarcinoma 7 272639 -NCIT:C43848 Clear Cell Intrahepatic Cholangiocarcinoma 7 272640 -NCIT:C96804 Large Duct Intrahepatic Cholangiocarcinoma 7 272641 -NCIT:C96805 Small Duct Intrahepatic Cholangiocarcinoma 7 272642 -NCIT:C96949 Intrahepatic Bile Duct Intraductal Papillary Neoplasm with an Associated Invasive Carcinoma 7 272643 -NCIT:C3828 Combined Hepatocellular Carcinoma and Cholangiocarcinoma 6 272644 -NCIT:C114987 Adult Combined Hepatocellular Carcinoma and Cholangiocarcinoma 7 272645 -NCIT:C7110 Recurrent Liver Carcinoma 6 272646 -NCIT:C128807 Recurrent Intrahepatic Cholangiocarcinoma 7 272647 -NCIT:C7880 Recurrent Adult Liver Carcinoma 7 272648 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 8 272649 -NCIT:C9264 Recurrent Hepatocellular Carcinoma 7 272650 -NCIT:C154082 Recurrent Fibrolamellar Carcinoma 8 272651 -NCIT:C9046 Recurrent Childhood Hepatocellular Carcinoma 8 272652 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 8 272653 -NCIT:C7116 Stage I Liver Cancer 6 272654 -NCIT:C134516 Stage I Hepatocellular Carcinoma AJCC v8 7 272655 -NCIT:C134517 Stage IA Hepatocellular Carcinoma AJCC v8 8 272656 -NCIT:C134518 Stage IB Hepatocellular Carcinoma AJCC v8 8 272657 -NCIT:C134610 Stage I Intrahepatic Bile Duct Cancer AJCC v8 7 272658 -NCIT:C134611 Stage IA Intrahepatic Bile Duct Cancer AJCC v8 8 272659 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 9 272660 -NCIT:C134612 Stage IB Intrahepatic Bile Duct Cancer AJCC v8 8 272661 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 9 272662 -NCIT:C134757 Stage I Intrahepatic Cholangiocarcinoma AJCC v8 8 272663 -NCIT:C134758 Stage IA Intrahepatic Cholangiocarcinoma AJCC v8 9 272664 -NCIT:C134759 Stage IB Intrahepatic Cholangiocarcinoma AJCC v8 9 272665 -NCIT:C5758 Stage I Hepatocellular Carcinoma AJCC v6 and v7 7 272666 -NCIT:C5710 Stage I Childhood Hepatocellular Carcinoma AJCC v6 and v7 8 272667 -NCIT:C88050 Stage I Intrahepatic Cholangiocarcinoma AJCC v7 7 272668 -NCIT:C94775 Stage I Adult Liver Cancer AJCC v7 7 272669 -NCIT:C7117 Stage II Liver Cancer 6 272670 -NCIT:C134519 Stage II Hepatocellular Carcinoma AJCC v8 7 272671 -NCIT:C134614 Stage II Intrahepatic Bile Duct Cancer AJCC v8 7 272672 -NCIT:C134760 Stage II Intrahepatic Cholangiocarcinoma AJCC v8 8 272673 -NCIT:C5759 Stage II Hepatocellular Carcinoma AJCC v6 and v7 7 272674 -NCIT:C5709 Stage II Childhood Hepatocellular Carcinoma AJCC v6 and v7 8 272675 -NCIT:C88051 Stage II Intrahepatic Cholangiocarcinoma AJCC v7 7 272676 -NCIT:C94776 Stage II Adult Liver Cancer AJCC v7 7 272677 -NCIT:C7118 Stage III Liver Cancer 6 272678 -NCIT:C134520 Stage III Hepatocellular Carcinoma AJCC v8 7 272679 -NCIT:C134521 Stage IIIA Hepatocellular Carcinoma AJCC v8 8 272680 -NCIT:C134522 Stage IIIB Hepatocellular Carcinoma AJCC v8 8 272681 -NCIT:C134615 Stage III Intrahepatic Bile Duct Cancer AJCC v8 7 272682 -NCIT:C134616 Stage IIIA Intrahepatic Bile Duct Cancer AJCC v8 8 272683 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 9 272684 -NCIT:C134618 Stage IIIB Intrahepatic Bile Duct Cancer AJCC v8 8 272685 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 9 272686 -NCIT:C134761 Stage III Intrahepatic Cholangiocarcinoma AJCC v8 8 272687 -NCIT:C134762 Stage IIIA Intrahepatic Cholangiocarcinoma AJCC v8 9 272688 -NCIT:C134763 Stage IIIB Intrahepatic Cholangiocarcinoma AJCC v8 9 272689 -NCIT:C5760 Stage III Hepatocellular Carcinoma AJCC v6 7 272690 -NCIT:C88052 Stage III Intrahepatic Cholangiocarcinoma AJCC v7 7 272691 -NCIT:C90180 Stage III Hepatocellular Carcinoma AJCC v7 7 272692 -NCIT:C5708 Stage III Childhood Hepatocellular Carcinoma AJCC v7 8 272693 -NCIT:C5761 Stage IIIA Hepatocellular Carcinoma AJCC v7 8 272694 -NCIT:C5762 Stage IIIB Hepatocellular Carcinoma AJCC v7 8 272695 -NCIT:C88044 Stage IIIC Hepatocellular Carcinoma AJCC v7 8 272696 -NCIT:C94777 Stage III Adult Liver Cancer AJCC v7 7 272697 -NCIT:C94779 Stage IIIA Adult Liver Cancer AJCC v7 8 272698 -NCIT:C94780 Stage IIIB Adult Liver Cancer AJCC v7 8 272699 -NCIT:C94781 Stage IIIC Adult Liver Cancer AJCC v7 8 272700 -NCIT:C7121 Stage IV Liver Cancer 6 272701 -NCIT:C134523 Stage IV Hepatocellular Carcinoma AJCC v8 7 272702 -NCIT:C134524 Stage IVA Hepatocellular Carcinoma AJCC v8 8 272703 -NCIT:C134525 Stage IVB Hepatocellular Carcinoma AJCC v8 8 272704 -NCIT:C134619 Stage IV Intrahepatic Bile Duct Cancer AJCC v8 7 272705 -NCIT:C134764 Stage IV Intrahepatic Cholangiocarcinoma AJCC v8 8 272706 -NCIT:C5763 Stage IV Hepatocellular Carcinoma AJCC v6 7 272707 -NCIT:C7122 Stage IVA Liver Cancer 7 272708 -NCIT:C134524 Stage IVA Hepatocellular Carcinoma AJCC v8 8 272709 -NCIT:C5764 Stage IVA Hepatocellular Carcinoma AJCC v7 8 272710 -NCIT:C88053 Stage IVA Intrahepatic Cholangiocarcinoma AJCC v7 8 272711 -NCIT:C7123 Stage IVB Liver Cancer 7 272712 -NCIT:C134525 Stage IVB Hepatocellular Carcinoma AJCC v8 8 272713 -NCIT:C5765 Stage IVB Hepatocellular Carcinoma AJCC v7 8 272714 -NCIT:C88054 Stage IVB Intrahepatic Cholangiocarcinoma AJCC v7 8 272715 -NCIT:C90181 Stage IV Hepatocellular Carcinoma AJCC v7 7 272716 -NCIT:C5764 Stage IVA Hepatocellular Carcinoma AJCC v7 8 272717 -NCIT:C5765 Stage IVB Hepatocellular Carcinoma AJCC v7 8 272718 -NCIT:C7838 Stage IV Childhood Hepatocellular Carcinoma AJCC v7 8 272719 -NCIT:C94782 Stage IV Adult Liver Cancer AJCC v7 7 272720 -NCIT:C7711 Adult Liver Carcinoma 6 272721 -NCIT:C114987 Adult Combined Hepatocellular Carcinoma and Cholangiocarcinoma 7 272722 -NCIT:C7877 Localized Resectable Adult Liver Carcinoma 7 272723 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 8 272724 -NCIT:C7878 Localized Unresectable Adult Liver Carcinoma 7 272725 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 8 272726 -NCIT:C7880 Recurrent Adult Liver Carcinoma 7 272727 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 8 272728 -NCIT:C7956 Adult Hepatocellular Carcinoma 7 272729 -NCIT:C114992 Adult Fibrolamellar Carcinoma 8 272730 -NCIT:C114993 Adult Pleomorphic Hepatocellular Carcinoma 8 272731 -NCIT:C115139 BCLC Stage 0 Adult Hepatocellular Carcinoma 8 272732 -NCIT:C115140 BCLC Stage A Adult Hepatocellular Carcinoma 8 272733 -NCIT:C115141 BCLC Stage B Adult Hepatocellular Carcinoma 8 272734 -NCIT:C115143 BCLC Stage C Adult Hepatocellular Carcinoma 8 272735 -NCIT:C115144 BCLC Stage D Adult Hepatocellular Carcinoma 8 272736 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 8 272737 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 8 272738 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 8 272739 -NCIT:C9067 Recurrent Adult Hepatocellular Carcinoma 8 272740 -NCIT:C94775 Stage I Adult Liver Cancer AJCC v7 7 272741 -NCIT:C94776 Stage II Adult Liver Cancer AJCC v7 7 272742 -NCIT:C94777 Stage III Adult Liver Cancer AJCC v7 7 272743 -NCIT:C94779 Stage IIIA Adult Liver Cancer AJCC v7 8 272744 -NCIT:C94780 Stage IIIB Adult Liver Cancer AJCC v7 8 272745 -NCIT:C94781 Stage IIIC Adult Liver Cancer AJCC v7 8 272746 -NCIT:C94782 Stage IV Adult Liver Cancer AJCC v7 7 272747 -NCIT:C96787 Liver Neuroendocrine Carcinoma 6 272748 -NCIT:C172722 Liver Large Cell Neuroendocrine Carcinoma 7 272749 -NCIT:C172725 Liver Small Cell Neuroendocrine Carcinoma 7 272750 -NCIT:C96792 Liver Undifferentiated Carcinoma 6 272751 -NCIT:C96848 Liver Carcinosarcoma 6 272752 -NCIT:C96947 Intrahepatic Bile Duct Mucinous Cystic Neoplasm with an Associated Invasive Carcinoma 6 272753 -NCIT:C9291 Anal Carcinoma 5 272754 -NCIT:C133794 Anal Cancer by AJCC v8 Stage 6 272755 -NCIT:C133795 Stage 0 Anal Cancer AJCC v8 7 272756 -NCIT:C157575 Anal Intraepithelial Neoplasia 3 8 272757 -NCIT:C133796 Stage I Anal Cancer AJCC v8 7 272758 -NCIT:C133797 Stage II Anal Cancer AJCC v8 7 272759 -NCIT:C133798 Stage IIA Anal Cancer AJCC v8 8 272760 -NCIT:C133799 Stage IIB Anal Cancer AJCC v8 8 272761 -NCIT:C133800 Stage III Anal Cancer AJCC v8 7 272762 -NCIT:C133801 Stage IIIA Anal Cancer AJCC v8 8 272763 -NCIT:C133802 Stage IIIB Anal Cancer AJCC v8 8 272764 -NCIT:C133803 Stage IIIC Anal Cancer AJCC v8 8 272765 -NCIT:C133804 Stage IV Anal Cancer AJCC v8 7 272766 -NCIT:C137857 Refractory Anal Carcinoma 6 272767 -NCIT:C173334 Refractory Anal Canal Squamous Cell Carcinoma 7 272768 -NCIT:C167354 Microinvasive Anal Carcinoma 6 272769 -NCIT:C170514 Metastatic Anal Carcinoma 6 272770 -NCIT:C168977 Locally Advanced Anal Carcinoma 7 272771 -NCIT:C169103 Metastatic Anal Squamous Cell Carcinoma 7 272772 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 272773 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 272774 -NCIT:C170515 Advanced Anal Carcinoma 7 272775 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 8 272776 -NCIT:C5612 Metastatic Anal Canal Carcinoma 7 272777 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 272778 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 272779 -NCIT:C5600 Anal Adenocarcinoma 6 272780 -NCIT:C153575 Recurrent Anal Adenocarcinoma 7 272781 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 8 272782 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 8 272783 -NCIT:C5598 Anal Paget Disease 7 272784 -NCIT:C7476 Anal Margin Paget Disease 8 272785 -NCIT:C7477 Anal Canal Paget Disease 8 272786 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 9 272787 -NCIT:C7471 Anal Canal Adenocarcinoma 7 272788 -NCIT:C5606 Anal Mucinous Adenocarcinoma 8 272789 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 9 272790 -NCIT:C7477 Anal Canal Paget Disease 8 272791 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 9 272792 -NCIT:C7474 Anal Extramucosal (Perianal) Adenocarcinoma 7 272793 -NCIT:C5609 Anal Glands Adenocarcinoma 8 272794 -NCIT:C7475 Anal Adenocarcinoma within Anorectal Fistula 8 272795 -NCIT:C7472 Anal Margin Carcinoma 6 272796 -NCIT:C6925 Anal Margin Squamous Cell Carcinoma 7 272797 -NCIT:C7473 Anal Margin Basal Cell Carcinoma 7 272798 -NCIT:C7476 Anal Margin Paget Disease 7 272799 -NCIT:C7489 Anal Canal Carcinoma 6 272800 -NCIT:C133095 AIDS-Related Anal Canal Carcinoma 7 272801 -NCIT:C27282 Stage 0 AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 272802 -NCIT:C27283 Stage I AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 272803 -NCIT:C27284 Stage II AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 272804 -NCIT:C27285 Stage III AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 272805 -NCIT:C27286 Stage IV AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 272806 -NCIT:C9249 Recurrent AIDS-Related Anal Canal Carcinoma 8 272807 -NCIT:C133787 Anal Canal Cancer by AJCC v6 and v7 Stage 7 272808 -NCIT:C6873 Stage IV Anal Canal Cancer AJCC v6 and v7 8 272809 -NCIT:C27286 Stage IV AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 272810 -NCIT:C7775 Stage II Anal Canal Cancer AJCC v6 and v7 8 272811 -NCIT:C27284 Stage II AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 272812 -NCIT:C7776 Stage III Anal Canal Cancer AJCC v6 and v7 8 272813 -NCIT:C27285 Stage III AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 272814 -NCIT:C5925 Stage IIIA Anal Canal Cancer AJCC v6 and v7 9 272815 -NCIT:C5926 Stage IIIB Anal Canal Cancer AJCC v6 and v7 9 272816 -NCIT:C7794 Stage 0 Anal Canal Cancer AJCC v6 and v7 8 272817 -NCIT:C27282 Stage 0 AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 272818 -NCIT:C9037 Stage I Anal Canal Cancer AJCC v6 and v7 8 272819 -NCIT:C27283 Stage I AIDS-Related Anal Canal Cancer AJCC v6 and v7 9 272820 -NCIT:C5612 Metastatic Anal Canal Carcinoma 7 272821 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 272822 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 272823 -NCIT:C7469 Anal Canal Squamous Cell Carcinoma 7 272824 -NCIT:C173334 Refractory Anal Canal Squamous Cell Carcinoma 8 272825 -NCIT:C175360 Recurrent Anal Canal Squamous Cell Carcinoma 8 272826 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 9 272827 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 272828 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 272829 -NCIT:C175384 Unresectable Anal Canal Squamous Cell Carcinoma 8 272830 -NCIT:C7471 Anal Canal Adenocarcinoma 7 272831 -NCIT:C5606 Anal Mucinous Adenocarcinoma 8 272832 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 9 272833 -NCIT:C7477 Anal Canal Paget Disease 8 272834 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 9 272835 -NCIT:C7793 Recurrent Anal Canal Carcinoma 7 272836 -NCIT:C153576 Recurrent Anal Mucinous Adenocarcinoma 8 272837 -NCIT:C153577 Recurrent Paget Disease of the Anal Canal 8 272838 -NCIT:C175360 Recurrent Anal Canal Squamous Cell Carcinoma 8 272839 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 9 272840 -NCIT:C9249 Recurrent AIDS-Related Anal Canal Carcinoma 8 272841 -NCIT:C8255 Anal Canal Cloacogenic Carcinoma 7 272842 -NCIT:C96529 Anal Canal Undifferentiated Carcinoma 7 272843 -NCIT:C96549 Anal Canal Neuroendocrine Carcinoma 7 272844 -NCIT:C96550 Anal Canal Large Cell Neuroendocrine Carcinoma 8 272845 -NCIT:C96551 Anal Canal Small Cell Neuroendocrine Carcinoma 8 272846 -NCIT:C96553 Anal Canal Mixed Adenoneuroendocrine Carcinoma 7 272847 -NCIT:C9161 Anal Squamous Cell Carcinoma 6 272848 -NCIT:C157575 Anal Intraepithelial Neoplasia 3 7 272849 -NCIT:C169102 Recurrent Anal Squamous Cell Carcinoma 7 272850 -NCIT:C175360 Recurrent Anal Canal Squamous Cell Carcinoma 8 272851 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 9 272852 -NCIT:C169103 Metastatic Anal Squamous Cell Carcinoma 7 272853 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 272854 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 272855 -NCIT:C173156 Unresectable Anal Squamous Cell Carcinoma 7 272856 -NCIT:C175384 Unresectable Anal Canal Squamous Cell Carcinoma 8 272857 -NCIT:C27681 Human Papillomavirus-Related Anal Squamous Cell Carcinoma 7 272858 -NCIT:C6925 Anal Margin Squamous Cell Carcinoma 7 272859 -NCIT:C7469 Anal Canal Squamous Cell Carcinoma 7 272860 -NCIT:C173334 Refractory Anal Canal Squamous Cell Carcinoma 8 272861 -NCIT:C175360 Recurrent Anal Canal Squamous Cell Carcinoma 8 272862 -NCIT:C175364 Locally Recurrent Anal Canal Squamous Cell Carcinoma 9 272863 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 272864 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 272865 -NCIT:C175384 Unresectable Anal Canal Squamous Cell Carcinoma 8 272866 -NCIT:C7470 Anal Verrucous Carcinoma 7 272867 -NCIT:C8256 Anal Basaloid Carcinoma 7 272868 -NCIT:C9278 AIDS-Related Anal Carcinoma 6 272869 -NCIT:C133095 AIDS-Related Anal Canal Carcinoma 7 272870 -NCIT:C27282 Stage 0 AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 272871 -NCIT:C27283 Stage I AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 272872 -NCIT:C27284 Stage II AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 272873 -NCIT:C27285 Stage III AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 272874 -NCIT:C27286 Stage IV AIDS-Related Anal Canal Cancer AJCC v6 and v7 8 272875 -NCIT:C9249 Recurrent AIDS-Related Anal Canal Carcinoma 8 272876 -NCIT:C9296 Gastroesophageal Junction Adenocarcinoma 5 272877 -NCIT:C133548 Gastroesophageal Junction Adenocarcinoma by AJCC v8 Stage 6 272878 -NCIT:C133549 Gastroesophageal Junction Adenocarcinoma by AJCC v8 Clinical Stage 7 272879 -NCIT:C133550 Clinical Stage 0 Gastroesophageal Junction Adenocarcinoma AJCC v8 8 272880 -NCIT:C133552 Clinical Stage I Gastroesophageal Junction Adenocarcinoma AJCC v8 8 272881 -NCIT:C133553 Clinical Stage II Gastroesophageal Junction Adenocarcinoma AJCC v8 8 272882 -NCIT:C133554 Clinical Stage IIA Gastroesophageal Junction Adenocarcinoma AJCC v8 9 272883 -NCIT:C133555 Clinical Stage IIB Gastroesophageal Junction Adenocarcinoma AJCC v8 9 272884 -NCIT:C133556 Clinical Stage III Gastroesophageal Junction Adenocarcinoma AJCC v8 8 272885 -NCIT:C133557 Clinical Stage IV Gastroesophageal Junction Adenocarcinoma AJCC v8 8 272886 -NCIT:C133558 Clinical Stage IVA Gastroesophageal Junction Adenocarcinoma AJCC v8 9 272887 -NCIT:C133560 Clinical Stage IVB Gastroesophageal Junction Adenocarcinoma AJCC v8 9 272888 -NCIT:C133563 Gastroesophageal Junction Adenocarcinoma by AJCC v8 Pathologic Stage 7 272889 -NCIT:C133564 Pathologic Stage 0 Gastroesophageal Junction Adenocarcinoma AJCC v8 8 272890 -NCIT:C133565 Pathologic Stage I Gastroesophageal Junction Adenocarcinoma AJCC v8 8 272891 -NCIT:C133566 Pathologic Stage IA Gastroesophageal Junction Adenocarcinoma AJCC v8 9 272892 -NCIT:C133567 Pathologic Stage IB Gastroesophageal Junction Adenocarcinoma AJCC v8 9 272893 -NCIT:C133568 Pathologic Stage IC Gastroesophageal Junction Adenocarcinoma AJCC v8 9 272894 -NCIT:C133570 Pathologic Stage II Gastroesophageal Junction Adenocarcinoma AJCC v8 8 272895 -NCIT:C133572 Pathologic Stage IIA Gastroesophageal Junction Adenocarcinoma AJCC v8 9 272896 -NCIT:C133573 Pathologic Stage IIB Gastroesophageal Junction Adenocarcinoma AJCC v8 9 272897 -NCIT:C133575 Pathologic Stage III Gastroesophageal Junction Adenocarcinoma AJCC v8 8 272898 -NCIT:C133577 Pathologic Stage IIIA Gastroesophageal Junction Adenocarcinoma AJCC v8 9 272899 -NCIT:C133579 Pathologic Stage IIIB Gastroesophageal Junction Adenocarcinoma AJCC v8 9 272900 -NCIT:C133580 Pathologic Stage IV Gastroesophageal Junction Adenocarcinoma AJCC v8 8 272901 -NCIT:C133581 Pathologic Stage IVA Gastroesophageal Junction Adenocarcinoma AJCC v8 9 272902 -NCIT:C133582 Pathologic Stage IVB Gastroesophageal Junction Adenocarcinoma AJCC v8 9 272903 -NCIT:C133583 Gastroesophageal Junction Adenocarcinoma by AJCC v8 Postneoadjuvant Therapy Stage 7 272904 -NCIT:C133584 Postneoadjuvant Therapy Stage I Gastroesophageal Junction Adenocarcinoma AJCC v8 8 272905 -NCIT:C133585 Postneoadjuvant Therapy Stage II Gastroesophageal Junction Adenocarcinoma AJCC v8 8 272906 -NCIT:C133586 Postneoadjuvant Therapy Stage III Gastroesophageal Junction Adenocarcinoma AJCC v8 8 272907 -NCIT:C133587 Postneoadjuvant Therapy Stage IIIA Gastroesophageal Junction Adenocarcinoma AJCC v8 9 272908 -NCIT:C133588 Postneoadjuvant Therapy Stage IIIB Gastroesophageal Junction Adenocarcinoma AJCC v8 9 272909 -NCIT:C133589 Postneoadjuvant Therapy Stage IV Gastroesophageal Junction Adenocarcinoma AJCC v8 8 272910 -NCIT:C133590 Postneoadjuvant Therapy Stage IVA Gastroesophageal Junction Adenocarcinoma AJCC v8 9 272911 -NCIT:C133591 Postneoadjuvant Therapy Stage IVB Gastroesophageal Junction Adenocarcinoma AJCC v8 9 272912 -NCIT:C150577 Metastatic Gastroesophageal Junction Adenocarcinoma 6 272913 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 7 272914 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 7 272915 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 272916 -NCIT:C150578 Unresectable Gastroesophageal Junction Adenocarcinoma 6 272917 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 7 272918 -NCIT:C153359 Recurrent Gastroesophageal Junction Adenocarcinoma 6 272919 -NCIT:C156166 Localized Gastroesophageal Junction Adenocarcinoma 6 272920 -NCIT:C162538 Refractory Gastroesophageal Junction Adenocarcinoma 6 272921 -NCIT:C9330 Appendix Carcinoma 5 272922 -NCIT:C133733 Appendix Carcinoma by AJCC v7 Stage 6 272923 -NCIT:C4593 Stage 0 Appendix Carcinoma AJCC v7 7 272924 -NCIT:C87798 Stage I Appendix Carcinoma AJCC v7 7 272925 -NCIT:C87799 Stage IIA Appendix Carcinoma AJCC v7 7 272926 -NCIT:C87800 Stage IIB Appendix Carcinoma AJCC v7 7 272927 -NCIT:C87801 Stage IIC Appendix Carcinoma AJCC v7 7 272928 -NCIT:C87803 Stage IIIA Appendix Carcinoma AJCC v7 7 272929 -NCIT:C87804 Stage IIIB Appendix Carcinoma AJCC v7 7 272930 -NCIT:C87805 Stage IIIC Appendix Carcinoma AJCC v7 7 272931 -NCIT:C87806 Stage IVA Appendix Carcinoma AJCC v7 7 272932 -NCIT:C87807 Stage IVB Appendix Carcinoma AJCC v7 7 272933 -NCIT:C87808 Stage IVC Appendix Carcinoma AJCC v7 7 272934 -NCIT:C134117 Appendix Carcinoma by AJCC v8 Stage 6 272935 -NCIT:C134118 Stage 0 Appendix Carcinoma AJCC v8 7 272936 -NCIT:C134119 Stage 0 Low Grade Appendix Mucinous Neoplasm (LAMN) AJCC v8 7 272937 -NCIT:C134120 Stage I Appendix Carcinoma AJCC v8 7 272938 -NCIT:C134121 Stage II Appendix Carcinoma AJCC v8 7 272939 -NCIT:C134122 Stage IIA Appendix Carcinoma AJCC v8 8 272940 -NCIT:C134123 Stage IIB Appendix Carcinoma AJCC v8 8 272941 -NCIT:C134124 Stage IIC Appendix Carcinoma AJCC v8 8 272942 -NCIT:C134125 Stage III Appendix Carcinoma AJCC v8 7 272943 -NCIT:C134126 Stage IIIA Appendix Carcinoma AJCC v8 8 272944 -NCIT:C134127 Stage IIIB Appendix Carcinoma AJCC v8 8 272945 -NCIT:C134128 Stage IIIC Appendix Carcinoma AJCC v8 8 272946 -NCIT:C134129 Stage IV Appendix Carcinoma AJCC v8 7 272947 -NCIT:C134130 Stage IVA Appendix Carcinoma AJCC v8 8 272948 -NCIT:C134131 Stage IVB Appendix Carcinoma AJCC v8 8 272949 -NCIT:C134132 Stage IVC Appendix Carcinoma AJCC v8 8 272950 -NCIT:C153802 Recurrent Appendix Carcinoma 6 272951 -NCIT:C179174 Recurrent Appendix Adenocarcinoma 7 272952 -NCIT:C153579 Recurrent Appendix Mucinous Adenocarcinoma 8 272953 -NCIT:C162275 Metastatic Appendix Carcinoma 6 272954 -NCIT:C182104 Metastatic Appendix Adenocarcinoma 7 272955 -NCIT:C162274 Metastatic Appendix Mucinous Adenocarcinoma 8 272956 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 272957 -NCIT:C179177 Refractory Appendix Carcinoma 6 272958 -NCIT:C179178 Refractory Appendix Adenocarcinoma 7 272959 -NCIT:C43556 Appendix Undifferentiated Carcinoma 6 272960 -NCIT:C43564 Appendix Mixed Adenoneuroendocrine Carcinoma 6 272961 -NCIT:C3689 Appendix Goblet Cell Adenocarcinoma 7 272962 -NCIT:C7718 Appendix Adenocarcinoma 6 272963 -NCIT:C179174 Recurrent Appendix Adenocarcinoma 7 272964 -NCIT:C153579 Recurrent Appendix Mucinous Adenocarcinoma 8 272965 -NCIT:C179178 Refractory Appendix Adenocarcinoma 7 272966 -NCIT:C182104 Metastatic Appendix Adenocarcinoma 7 272967 -NCIT:C162274 Metastatic Appendix Mucinous Adenocarcinoma 8 272968 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 272969 -NCIT:C43554 Appendix Signet Ring Cell Carcinoma 7 272970 -NCIT:C43558 Appendix Mucinous Adenocarcinoma 7 272971 -NCIT:C153579 Recurrent Appendix Mucinous Adenocarcinoma 8 272972 -NCIT:C162274 Metastatic Appendix Mucinous Adenocarcinoma 8 272973 -NCIT:C5511 Appendix Mucinous Cystadenocarcinoma 8 272974 -NCIT:C96425 Appendix Neuroendocrine Carcinoma 6 272975 -NCIT:C43555 Appendix Small Cell Neuroendocrine Carcinoma 7 272976 -NCIT:C96426 Appendix Large Cell Neuroendocrine Carcinoma 7 272977 -NCIT:C95405 Digestive System Neuroendocrine Carcinoma 5 272978 -NCIT:C126324 Gastroesophageal Junction Neuroendocrine Carcinoma 6 272979 -NCIT:C126323 Gastroesophageal Junction Large Cell Neuroendocrine Carcinoma 7 272980 -NCIT:C126325 Gastroesophageal Junction Small Cell Neuroendocrine Carcinoma 7 272981 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 7 272982 -NCIT:C154617 Digestive System Large Cell Neuroendocrine Carcinoma 6 272983 -NCIT:C126323 Gastroesophageal Junction Large Cell Neuroendocrine Carcinoma 7 272984 -NCIT:C172722 Liver Large Cell Neuroendocrine Carcinoma 7 272985 -NCIT:C95582 Pancreatic Large Cell Neuroendocrine Carcinoma 7 272986 -NCIT:C95620 Esophageal Large Cell Neuroendocrine Carcinoma 7 272987 -NCIT:C95885 Gastric Large Cell Neuroendocrine Carcinoma 7 272988 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 272989 -NCIT:C95985 Ampulla of Vater Large Cell Neuroendocrine Carcinoma 7 272990 -NCIT:C96065 Small Intestinal Large Cell Neuroendocrine Carcinoma 7 272991 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 8 272992 -NCIT:C96157 Colorectal Large Cell Neuroendocrine Carcinoma 7 272993 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 8 272994 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 8 272995 -NCIT:C96426 Appendix Large Cell Neuroendocrine Carcinoma 7 272996 -NCIT:C96550 Anal Canal Large Cell Neuroendocrine Carcinoma 7 272997 -NCIT:C96921 Gallbladder Large Cell Neuroendocrine Carcinoma 7 272998 -NCIT:C96958 Extrahepatic Bile Duct Large Cell Neuroendocrine Carcinoma 7 272999 -NCIT:C154641 Digestive System Small Cell Neuroendocrine Carcinoma 6 273000 -NCIT:C126325 Gastroesophageal Junction Small Cell Neuroendocrine Carcinoma 7 273001 -NCIT:C172725 Liver Small Cell Neuroendocrine Carcinoma 7 273002 -NCIT:C27449 Small Intestinal Small Cell Neuroendocrine Carcinoma 7 273003 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 8 273004 -NCIT:C43555 Appendix Small Cell Neuroendocrine Carcinoma 7 273005 -NCIT:C43587 Colorectal Small Cell Neuroendocrine Carcinoma 7 273006 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 8 273007 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 8 273008 -NCIT:C5845 Extrahepatic Bile Duct Small Cell Neuroendocrine Carcinoma 7 273009 -NCIT:C6655 Ampulla of Vater Small Cell Neuroendocrine Carcinoma 7 273010 -NCIT:C6762 Esophageal Small Cell Neuroendocrine Carcinoma 7 273011 -NCIT:C6763 Gallbladder Small Cell Neuroendocrine Carcinoma 7 273012 -NCIT:C6764 Gastric Small Cell Neuroendocrine Carcinoma 7 273013 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 273014 -NCIT:C95583 Pancreatic Small Cell Neuroendocrine Carcinoma 7 273015 -NCIT:C96551 Anal Canal Small Cell Neuroendocrine Carcinoma 7 273016 -NCIT:C155935 Unresectable Digestive System Neuroendocrine Carcinoma 6 273017 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 7 273018 -NCIT:C180885 Unresectable Gastroesophageal Junction Neuroendocrine Carcinoma 7 273019 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 6 273020 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 7 273021 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 273022 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 7 273023 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 273024 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 7 273025 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 273026 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 273027 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 273028 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 7 273029 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 273030 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 273031 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 273032 -NCIT:C155937 Refractory Digestive System Neuroendocrine Carcinoma 6 273033 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 7 273034 -NCIT:C155938 Recurrent Digestive System Neuroendocrine Carcinoma 6 273035 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 7 273036 -NCIT:C3770 Pancreatic Neuroendocrine Carcinoma 6 273037 -NCIT:C115433 Recurrent Pancreatic Neuroendocrine Carcinoma 7 273038 -NCIT:C137862 Refractory Pancreatic Neuroendocrine Carcinoma 7 273039 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 7 273040 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 273041 -NCIT:C153079 Unresectable Pancreatic Neuroendocrine Carcinoma 7 273042 -NCIT:C95582 Pancreatic Large Cell Neuroendocrine Carcinoma 7 273043 -NCIT:C95583 Pancreatic Small Cell Neuroendocrine Carcinoma 7 273044 -NCIT:C95619 Esophageal Neuroendocrine Carcinoma 6 273045 -NCIT:C6762 Esophageal Small Cell Neuroendocrine Carcinoma 7 273046 -NCIT:C95620 Esophageal Large Cell Neuroendocrine Carcinoma 7 273047 -NCIT:C95884 Gastric Neuroendocrine Carcinoma 6 273048 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 7 273049 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 273050 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 273051 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 273052 -NCIT:C6764 Gastric Small Cell Neuroendocrine Carcinoma 7 273053 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 8 273054 -NCIT:C95885 Gastric Large Cell Neuroendocrine Carcinoma 7 273055 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 8 273056 -NCIT:C95984 Ampulla of Vater Neuroendocrine Carcinoma 6 273057 -NCIT:C6655 Ampulla of Vater Small Cell Neuroendocrine Carcinoma 7 273058 -NCIT:C95985 Ampulla of Vater Large Cell Neuroendocrine Carcinoma 7 273059 -NCIT:C96063 Intestinal Neuroendocrine Carcinoma 6 273060 -NCIT:C96064 Small Intestinal Neuroendocrine Carcinoma 7 273061 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 273062 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 273063 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 273064 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 273065 -NCIT:C27449 Small Intestinal Small Cell Neuroendocrine Carcinoma 8 273066 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 273067 -NCIT:C96065 Small Intestinal Large Cell Neuroendocrine Carcinoma 8 273068 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 273069 -NCIT:C96156 Colorectal Neuroendocrine Carcinoma 7 273070 -NCIT:C43587 Colorectal Small Cell Neuroendocrine Carcinoma 8 273071 -NCIT:C60639 Rectal Small Cell Neuroendocrine Carcinoma 9 273072 -NCIT:C6761 Colon Small Cell Neuroendocrine Carcinoma 9 273073 -NCIT:C96157 Colorectal Large Cell Neuroendocrine Carcinoma 8 273074 -NCIT:C170977 Colon Large Cell Neuroendocrine Carcinoma 9 273075 -NCIT:C176697 Rectal Large Cell Neuroendocrine Carcinoma 9 273076 -NCIT:C96425 Appendix Neuroendocrine Carcinoma 6 273077 -NCIT:C43555 Appendix Small Cell Neuroendocrine Carcinoma 7 273078 -NCIT:C96426 Appendix Large Cell Neuroendocrine Carcinoma 7 273079 -NCIT:C96549 Anal Canal Neuroendocrine Carcinoma 6 273080 -NCIT:C96550 Anal Canal Large Cell Neuroendocrine Carcinoma 7 273081 -NCIT:C96551 Anal Canal Small Cell Neuroendocrine Carcinoma 7 273082 -NCIT:C96787 Liver Neuroendocrine Carcinoma 6 273083 -NCIT:C172722 Liver Large Cell Neuroendocrine Carcinoma 7 273084 -NCIT:C172725 Liver Small Cell Neuroendocrine Carcinoma 7 273085 -NCIT:C96919 Gallbladder Neuroendocrine Carcinoma 6 273086 -NCIT:C6763 Gallbladder Small Cell Neuroendocrine Carcinoma 7 273087 -NCIT:C96921 Gallbladder Large Cell Neuroendocrine Carcinoma 7 273088 -NCIT:C96956 Extrahepatic Bile Duct Neuroendocrine Carcinoma 6 273089 -NCIT:C5845 Extrahepatic Bile Duct Small Cell Neuroendocrine Carcinoma 7 273090 -NCIT:C96958 Extrahepatic Bile Duct Large Cell Neuroendocrine Carcinoma 7 273091 -NCIT:C95406 Digestive System Mixed Adenoneuroendocrine Carcinoma 5 273092 -NCIT:C163967 Metastatic Digestive System Mixed Adenoneuroendocrine Carcinoma 6 273093 -NCIT:C172718 Liver Mixed Adenoneuroendocrine Carcinoma 6 273094 -NCIT:C172808 Unresectable Digestive System Mixed Adenoneuroendocrine Carcinoma 6 273095 -NCIT:C43564 Appendix Mixed Adenoneuroendocrine Carcinoma 6 273096 -NCIT:C3689 Appendix Goblet Cell Adenocarcinoma 7 273097 -NCIT:C45843 Pancreatic Mixed Adenoneuroendocrine Carcinoma 6 273098 -NCIT:C6878 Pancreatic Mixed Acinar-Neuroendocrine Carcinoma 7 273099 -NCIT:C6879 Pancreatic Mixed Ductal-Neuroendocrine Carcinoma 7 273100 -NCIT:C95460 Pancreatic Mixed Acinar-Ductal Neuroendocrine Carcinoma 7 273101 -NCIT:C95621 Esophageal Mixed Adenoneuroendocrine Carcinoma 6 273102 -NCIT:C95886 Gastric Mixed Adenoneuroendocrine Carcinoma 6 273103 -NCIT:C95986 Ampulla of Vater Mixed Adenoneuroendocrine Carcinoma 6 273104 -NCIT:C96066 Small Intestinal Mixed Adenoneuroendocrine Carcinoma 6 273105 -NCIT:C96158 Colorectal Mixed Adenoneuroendocrine Carcinoma 6 273106 -NCIT:C96553 Anal Canal Mixed Adenoneuroendocrine Carcinoma 6 273107 -NCIT:C96927 Gallbladder Mixed Adenoneuroendocrine Carcinoma 6 273108 -NCIT:C96928 Gallbladder Goblet Cell Carcinoid 7 273109 -NCIT:C96959 Extrahepatic Bile Duct Mixed Adenoneuroendocrine Carcinoma 6 273110 -NCIT:C4925 Malignant Germ Cell Tumor 3 273111 -NCIT:C123739 Refractory Malignant Germ Cell Tumor 4 273112 -NCIT:C123737 Refractory Childhood Malignant Germ Cell Tumor 5 273113 -NCIT:C170955 Platinum-Resistant Malignant Germ Cell Tumor 5 273114 -NCIT:C170956 Resectable Platinum-Resistant Malignant Germ Cell Tumor 6 273115 -NCIT:C170957 Metastatic Platinum-Resistant Malignant Germ Cell Tumor 6 273116 -NCIT:C170958 Advanced Platinum-Resistant Malignant Germ Cell Tumor 7 273117 -NCIT:C191408 Refractory Malignant Nongerminomatous Germ Cell Tumor 5 273118 -NCIT:C9077 Refractory Malignant Testicular Germ Cell Tumor 5 273119 -NCIT:C132853 Recurrent Malignant Germ Cell Tumor 4 273120 -NCIT:C115385 Recurrent Malignant Extragonadal Germ Cell Tumor 5 273121 -NCIT:C115427 Recurrent Malignant Extragonadal Nongerminomatous Germ Cell Tumor 6 273122 -NCIT:C115428 Recurrent Extragonadal Seminoma 6 273123 -NCIT:C177771 Recurrent Malignant Nongerminomatous Germ Cell Tumor 5 273124 -NCIT:C115427 Recurrent Malignant Extragonadal Nongerminomatous Germ Cell Tumor 6 273125 -NCIT:C8087 Recurrent Ovarian Germ Cell Tumor 5 273126 -NCIT:C9221 Recurrent Childhood Malignant Germ Cell Tumor 5 273127 -NCIT:C9369 Recurrent Malignant Testicular Germ Cell Tumor 5 273128 -NCIT:C132854 Metastatic Malignant Germ Cell Tumor 4 273129 -NCIT:C170957 Metastatic Platinum-Resistant Malignant Germ Cell Tumor 5 273130 -NCIT:C170958 Advanced Platinum-Resistant Malignant Germ Cell Tumor 6 273131 -NCIT:C170967 Advanced Malignant Germ Cell Tumor 5 273132 -NCIT:C170958 Advanced Platinum-Resistant Malignant Germ Cell Tumor 6 273133 -NCIT:C187316 Advanced Malignant Testicular Germ Cell Tumor 6 273134 -NCIT:C177770 Metastatic Malignant Nongerminomatous Germ Cell Tumor 5 273135 -NCIT:C25771 Metastatic Malignant Testicular Germ Cell Tumor 5 273136 -NCIT:C187316 Advanced Malignant Testicular Germ Cell Tumor 6 273137 -NCIT:C3011 Yolk Sac Tumor 4 273138 -NCIT:C128055 Cervical Yolk Sac Tumor 5 273139 -NCIT:C128295 Vulvar Yolk Sac Tumor 5 273140 -NCIT:C147006 Cardiac Yolk Sac Tumor 5 273141 -NCIT:C147105 Pericardial Yolk Sac Tumor 5 273142 -NCIT:C178523 Yolk Sac Tumor with Somatic-Type Malignancy 5 273143 -NCIT:C27241 Adult Yolk Sac Tumor 5 273144 -NCIT:C27364 Childhood Yolk Sac Tumor 5 273145 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 6 273146 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 6 273147 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 6 273148 -NCIT:C6379 Vaginal Yolk Sac Tumor 5 273149 -NCIT:C6443 Mediastinal Yolk Sac Tumor 5 273150 -NCIT:C7011 Central Nervous System Yolk Sac Tumor 5 273151 -NCIT:C155804 Sellar Yolk Sac Tumor 6 273152 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 6 273153 -NCIT:C6752 Pineal Region Yolk Sac Tumor 6 273154 -NCIT:C8000 Testicular Yolk Sac Tumor 5 273155 -NCIT:C39923 Testicular Yolk Sac Tumor, Microcystic Pattern 6 273156 -NCIT:C39924 Testicular Yolk Sac Tumor, Macrocystic Pattern 6 273157 -NCIT:C39925 Testicular Yolk Sac Tumor, Solid Pattern 6 273158 -NCIT:C39926 Testicular Yolk Sac Tumor, Glandular-Alveolar Pattern 6 273159 -NCIT:C39927 Testicular Yolk Sac Tumor, Endodermal Sinus/Perivascular Pattern 6 273160 -NCIT:C39928 Testicular Yolk Sac Tumor, Papillary Pattern 6 273161 -NCIT:C39929 Testicular Yolk Sac Tumor, Myxomatous Pattern 6 273162 -NCIT:C39930 Testicular Yolk Sac Tumor, Polyvesicular Vitelline Pattern 6 273163 -NCIT:C39931 Testicular Yolk Sac Tumor, Hepatoid Pattern 6 273164 -NCIT:C39932 Testicular Yolk Sac Tumor, Enteric Pattern 6 273165 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 6 273166 -NCIT:C8920 Stage I Testicular Yolk Sac Tumor AJCC v6 and v7 6 273167 -NCIT:C8921 Stage II Testicular Yolk Sac Tumor AJCC v6 and v7 6 273168 -NCIT:C8922 Stage III Testicular Yolk Sac Tumor AJCC v6 and v7 6 273169 -NCIT:C8107 Ovarian Yolk Sac Tumor 5 273170 -NCIT:C39987 Ovarian Yolk Sac Tumor, Polyvesicular Vitelline Pattern 6 273171 -NCIT:C39988 Ovarian Yolk Sac Tumor, Glandular Pattern 6 273172 -NCIT:C39989 Ovarian Yolk Sac Tumor, Hepatoid Pattern 6 273173 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 6 273174 -NCIT:C8735 Stage I Ovarian Yolk Sac Tumor AJCC v6 and v7 6 273175 -NCIT:C8736 Stage II Ovarian Yolk Sac Tumor AJCC v6 and v7 6 273176 -NCIT:C8737 Stage III Ovarian Yolk Sac Tumor AJCC v6 and v7 6 273177 -NCIT:C8738 Stage IV Ovarian Yolk Sac Tumor AJCC v6 and v7 6 273178 -NCIT:C96851 Liver Yolk Sac Tumor 5 273179 -NCIT:C3752 Embryonal Carcinoma 4 273180 -NCIT:C123847 Childhood Embryonal Carcinoma 5 273181 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 6 273182 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 6 273183 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 6 273184 -NCIT:C6341 Testicular Embryonal Carcinoma 5 273185 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 6 273186 -NCIT:C7325 Intratubular Non-Seminoma 6 273187 -NCIT:C8908 Stage I Testicular Embryonal Carcinoma AJCC v6 and v7 6 273188 -NCIT:C8909 Stage II Testicular Embryonal Carcinoma AJCC v6 and v7 6 273189 -NCIT:C8910 Stage III Testicular Embryonal Carcinoma AJCC v6 and v7 6 273190 -NCIT:C8108 Ovarian Embryonal Carcinoma 5 273191 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 6 273192 -NCIT:C8725 Stage II Ovarian Embryonal Carcinoma AJCC v6 and v7 6 273193 -NCIT:C8728 Stage III Ovarian Embryonal Carcinoma AJCC v6 and v7 6 273194 -NCIT:C8729 Stage IV Ovarian Embryonal Carcinoma AJCC v6 and v7 6 273195 -NCIT:C8734 Stage I Ovarian Embryonal Carcinoma AJCC v6 and v7 6 273196 -NCIT:C8880 Extragonadal Embryonal Carcinoma 5 273197 -NCIT:C6441 Mediastinal Embryonal Carcinoma 6 273198 -NCIT:C7010 Central Nervous System Embryonal Carcinoma 6 273199 -NCIT:C155805 Sellar Embryonal Carcinoma 7 273200 -NCIT:C5790 Adult Central Nervous System Embryonal Carcinoma 7 273201 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 7 273202 -NCIT:C4287 Malignant Teratoma 4 273203 -NCIT:C189055 Postpubertal-Type Teratoma 5 273204 -NCIT:C189057 Postpubertal-Type Testicular Teratoma 6 273205 -NCIT:C39995 Malignant Ovarian Teratoma 5 273206 -NCIT:C4290 Mixed Germ Cell Tumor 4 273207 -NCIT:C123848 Childhood Mixed Germ Cell Tumor 5 273208 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 6 273209 -NCIT:C27403 Childhood Central Nervous System Mixed Germ Cell Tumor 6 273210 -NCIT:C6542 Childhood Testicular Mixed Germ Cell Tumor 6 273211 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 7 273212 -NCIT:C146861 Mediastinal Mixed Germ Cell Tumor 5 273213 -NCIT:C6444 Mediastinal Mixed Nongerminomatous Germ Cell Tumor 6 273214 -NCIT:C6442 Mediastinal Mixed Embryonal Carcinoma and Teratoma 7 273215 -NCIT:C3756 Mixed Embryonal Carcinoma and Teratoma 5 273216 -NCIT:C6351 Testicular Mixed Embryonal Carcinoma and Teratoma 6 273217 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 7 273218 -NCIT:C6442 Mediastinal Mixed Embryonal Carcinoma and Teratoma 6 273219 -NCIT:C6347 Testicular Mixed Germ Cell Tumor 5 273220 -NCIT:C6348 Testicular Mixed Choriocarcinoma and Embryonal Carcinoma 6 273221 -NCIT:C6349 Testicular Mixed Choriocarcinoma and Teratoma 6 273222 -NCIT:C6350 Testicular Mixed Embryonal Carcinoma and Seminoma 6 273223 -NCIT:C6351 Testicular Mixed Embryonal Carcinoma and Teratoma 6 273224 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 7 273225 -NCIT:C6352 Testicular Mixed Embryonal Carcinoma and Teratoma with Seminoma 6 273226 -NCIT:C6542 Childhood Testicular Mixed Germ Cell Tumor 6 273227 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 7 273228 -NCIT:C67548 Testicular Mixed Choriocarcinoma and Yolk Sac Tumor 6 273229 -NCIT:C8001 Testicular Mixed Embryonal Carcinoma and Yolk Sac Tumor 6 273230 -NCIT:C8002 Testicular Mixed Yolk Sac Tumor and Teratoma 6 273231 -NCIT:C8003 Testicular Mixed Yolk Sac Tumor and Teratoma with Seminoma 6 273232 -NCIT:C8911 Stage II Testicular Mixed Germ Cell Tumor AJCC v6 and v7 6 273233 -NCIT:C8912 Stage I Testicular Mixed Germ Cell Tumor AJCC v6 and v7 6 273234 -NCIT:C8913 Stage III Testicular Mixed Germ Cell Tumor AJCC v6 and v7 6 273235 -NCIT:C9172 Testicular Mixed Embryonal Carcinoma and Yolk Sac Tumor with Seminoma 6 273236 -NCIT:C9173 Testicular Mixed Choriocarcinoma and Seminoma 6 273237 -NCIT:C66777 Choriocarcinoma Combined with Other Germ Cell Elements 5 273238 -NCIT:C6348 Testicular Mixed Choriocarcinoma and Embryonal Carcinoma 6 273239 -NCIT:C6349 Testicular Mixed Choriocarcinoma and Teratoma 6 273240 -NCIT:C67548 Testicular Mixed Choriocarcinoma and Yolk Sac Tumor 6 273241 -NCIT:C9173 Testicular Mixed Choriocarcinoma and Seminoma 6 273242 -NCIT:C7016 Central Nervous System Mixed Germ Cell Tumor 5 273243 -NCIT:C155811 Sellar Mixed Germ Cell Tumor 6 273244 -NCIT:C27402 Adult Central Nervous System Mixed Germ Cell Tumor 6 273245 -NCIT:C27403 Childhood Central Nervous System Mixed Germ Cell Tumor 6 273246 -NCIT:C8114 Ovarian Mixed Germ Cell Tumor 5 273247 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 6 273248 -NCIT:C9010 Mixed Teratoma and Seminoma 5 273249 -NCIT:C4514 Malignant Ovarian Germ Cell Tumor 4 273250 -NCIT:C39986 Ovarian Primitive Germ Cell Tumor 5 273251 -NCIT:C102870 Ovarian Non-Dysgerminomatous Germ Cell Tumor 6 273252 -NCIT:C39990 Ovarian Polyembryoma 7 273253 -NCIT:C8739 Stage I Ovarian Polyembryoma AJCC v6 and v7 8 273254 -NCIT:C8740 Stage II Ovarian Polyembryoma AJCC v6 and v7 8 273255 -NCIT:C8741 Stage III Ovarian Polyembryoma AJCC v6 and v7 8 273256 -NCIT:C8742 Stage IV Ovarian Polyembryoma AJCC v6 and v7 8 273257 -NCIT:C39991 Non-Gestational Ovarian Choriocarcinoma 7 273258 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 8 273259 -NCIT:C8107 Ovarian Yolk Sac Tumor 7 273260 -NCIT:C39987 Ovarian Yolk Sac Tumor, Polyvesicular Vitelline Pattern 8 273261 -NCIT:C39988 Ovarian Yolk Sac Tumor, Glandular Pattern 8 273262 -NCIT:C39989 Ovarian Yolk Sac Tumor, Hepatoid Pattern 8 273263 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 8 273264 -NCIT:C8735 Stage I Ovarian Yolk Sac Tumor AJCC v6 and v7 8 273265 -NCIT:C8736 Stage II Ovarian Yolk Sac Tumor AJCC v6 and v7 8 273266 -NCIT:C8737 Stage III Ovarian Yolk Sac Tumor AJCC v6 and v7 8 273267 -NCIT:C8738 Stage IV Ovarian Yolk Sac Tumor AJCC v6 and v7 8 273268 -NCIT:C8108 Ovarian Embryonal Carcinoma 7 273269 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 8 273270 -NCIT:C8725 Stage II Ovarian Embryonal Carcinoma AJCC v6 and v7 8 273271 -NCIT:C8728 Stage III Ovarian Embryonal Carcinoma AJCC v6 and v7 8 273272 -NCIT:C8729 Stage IV Ovarian Embryonal Carcinoma AJCC v6 and v7 8 273273 -NCIT:C8734 Stage I Ovarian Embryonal Carcinoma AJCC v6 and v7 8 273274 -NCIT:C8106 Ovarian Dysgerminoma 6 273275 -NCIT:C6550 Childhood Ovarian Dysgerminoma 7 273276 -NCIT:C8723 Stage I Ovarian Dysgerminoma AJCC v6 and v7 7 273277 -NCIT:C8724 Stage II Ovarian Dysgerminoma AJCC v6 and v7 7 273278 -NCIT:C8726 Stage III Ovarian Dysgerminoma AJCC v6 and v7 7 273279 -NCIT:C8727 Stage IV Ovarian Dysgerminoma AJCC v6 and v7 7 273280 -NCIT:C8114 Ovarian Mixed Germ Cell Tumor 6 273281 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 7 273282 -NCIT:C39995 Malignant Ovarian Teratoma 5 273283 -NCIT:C4291 Thyroid Carcinoma Arising in Struma Ovarii 5 273284 -NCIT:C68629 Childhood Malignant Ovarian Germ Cell Tumor 5 273285 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 6 273286 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 6 273287 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 6 273288 -NCIT:C6550 Childhood Ovarian Dysgerminoma 6 273289 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 6 273290 -NCIT:C8083 Stage I Ovarian Germ Cell Tumor AJCC v6 and v7 5 273291 -NCIT:C6291 Stage IA Ovarian Germ Cell Tumor AJCC v6 and v7 6 273292 -NCIT:C6292 Stage IB Ovarian Germ Cell Tumor AJCC v6 and v7 6 273293 -NCIT:C6293 Stage IC Ovarian Germ Cell Tumor AJCC v6 and v7 6 273294 -NCIT:C8723 Stage I Ovarian Dysgerminoma AJCC v6 and v7 6 273295 -NCIT:C8734 Stage I Ovarian Embryonal Carcinoma AJCC v6 and v7 6 273296 -NCIT:C8735 Stage I Ovarian Yolk Sac Tumor AJCC v6 and v7 6 273297 -NCIT:C8739 Stage I Ovarian Polyembryoma AJCC v6 and v7 6 273298 -NCIT:C8743 Stage I Ovarian Teratoma AJCC v6 and v7 6 273299 -NCIT:C8084 Stage II Ovarian Germ Cell Tumor AJCC v6 and v7 5 273300 -NCIT:C6294 Stage IIC Ovarian Germ Cell Tumor AJCC v6 and v7 6 273301 -NCIT:C6295 Stage IIB Ovarian Germ Cell Tumor AJCC v6 and v7 6 273302 -NCIT:C6296 Stage IIA Ovarian Germ Cell Tumor AJCC v6 and v7 6 273303 -NCIT:C8724 Stage II Ovarian Dysgerminoma AJCC v6 and v7 6 273304 -NCIT:C8725 Stage II Ovarian Embryonal Carcinoma AJCC v6 and v7 6 273305 -NCIT:C8736 Stage II Ovarian Yolk Sac Tumor AJCC v6 and v7 6 273306 -NCIT:C8740 Stage II Ovarian Polyembryoma AJCC v6 and v7 6 273307 -NCIT:C8744 Stage II Ovarian Teratoma AJCC v6 and v7 6 273308 -NCIT:C8085 Stage III Ovarian Germ Cell Tumor AJCC v6 and v7 5 273309 -NCIT:C6297 Stage IIIA Ovarian Germ Cell Tumor AJCC v6 and v7 6 273310 -NCIT:C6298 Stage IIIB Ovarian Germ Cell Tumor AJCC v6 and v7 6 273311 -NCIT:C6299 Stage IIIC Ovarian Germ Cell Tumor AJCC v6 and v7 6 273312 -NCIT:C8726 Stage III Ovarian Dysgerminoma AJCC v6 and v7 6 273313 -NCIT:C8728 Stage III Ovarian Embryonal Carcinoma AJCC v6 and v7 6 273314 -NCIT:C8737 Stage III Ovarian Yolk Sac Tumor AJCC v6 and v7 6 273315 -NCIT:C8741 Stage III Ovarian Polyembryoma AJCC v6 and v7 6 273316 -NCIT:C8745 Stage III Ovarian Teratoma AJCC v6 and v7 6 273317 -NCIT:C8086 Stage IV Ovarian Germ Cell Tumor AJCC v6 and v7 5 273318 -NCIT:C8727 Stage IV Ovarian Dysgerminoma AJCC v6 and v7 6 273319 -NCIT:C8729 Stage IV Ovarian Embryonal Carcinoma AJCC v6 and v7 6 273320 -NCIT:C8738 Stage IV Ovarian Yolk Sac Tumor AJCC v6 and v7 6 273321 -NCIT:C8742 Stage IV Ovarian Polyembryoma AJCC v6 and v7 6 273322 -NCIT:C8746 Stage IV Ovarian Teratoma AJCC v6 and v7 6 273323 -NCIT:C8087 Recurrent Ovarian Germ Cell Tumor 5 273324 -NCIT:C5381 Pulmonary Artery Choriocarcinoma 4 273325 -NCIT:C6541 Childhood Malignant Germ Cell Tumor 4 273326 -NCIT:C123737 Refractory Childhood Malignant Germ Cell Tumor 5 273327 -NCIT:C123840 Childhood Seminoma 5 273328 -NCIT:C123844 Childhood Choriocarcinoma 5 273329 -NCIT:C6206 Childhood Central Nervous System Choriocarcinoma 6 273330 -NCIT:C6544 Childhood Testicular Choriocarcinoma 6 273331 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 6 273332 -NCIT:C123847 Childhood Embryonal Carcinoma 5 273333 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 6 273334 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 6 273335 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 6 273336 -NCIT:C123848 Childhood Mixed Germ Cell Tumor 5 273337 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 6 273338 -NCIT:C27403 Childhood Central Nervous System Mixed Germ Cell Tumor 6 273339 -NCIT:C6542 Childhood Testicular Mixed Germ Cell Tumor 6 273340 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 7 273341 -NCIT:C27364 Childhood Yolk Sac Tumor 5 273342 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 6 273343 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 6 273344 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 6 273345 -NCIT:C68628 Childhood Malignant Testicular Germ Cell Tumor 5 273346 -NCIT:C6542 Childhood Testicular Mixed Germ Cell Tumor 6 273347 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 7 273348 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 6 273349 -NCIT:C6544 Childhood Testicular Choriocarcinoma 6 273350 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 6 273351 -NCIT:C68629 Childhood Malignant Ovarian Germ Cell Tumor 5 273352 -NCIT:C123849 Childhood Ovarian Mixed Germ Cell Tumor 6 273353 -NCIT:C6546 Childhood Ovarian Embryonal Carcinoma 6 273354 -NCIT:C6549 Childhood Ovarian Choriocarcinoma 6 273355 -NCIT:C6550 Childhood Ovarian Dysgerminoma 6 273356 -NCIT:C6551 Childhood Ovarian Yolk Sac Tumor 6 273357 -NCIT:C68632 Childhood Extragonadal Malignant Germ Cell Tumor 5 273358 -NCIT:C27403 Childhood Central Nervous System Mixed Germ Cell Tumor 6 273359 -NCIT:C27406 Childhood Central Nervous System Germinoma 6 273360 -NCIT:C6207 Childhood Brain Germinoma 7 273361 -NCIT:C6206 Childhood Central Nervous System Choriocarcinoma 6 273362 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 6 273363 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 6 273364 -NCIT:C9221 Recurrent Childhood Malignant Germ Cell Tumor 5 273365 -NCIT:C66776 Gonadal Polyembryoma 4 273366 -NCIT:C39990 Ovarian Polyembryoma 5 273367 -NCIT:C8739 Stage I Ovarian Polyembryoma AJCC v6 and v7 6 273368 -NCIT:C8740 Stage II Ovarian Polyembryoma AJCC v6 and v7 6 273369 -NCIT:C8741 Stage III Ovarian Polyembryoma AJCC v6 and v7 6 273370 -NCIT:C8742 Stage IV Ovarian Polyembryoma AJCC v6 and v7 6 273371 -NCIT:C40962 Testicular Polyembryoma 5 273372 -NCIT:C8881 Malignant Extragonadal Germ Cell Tumor 4 273373 -NCIT:C115385 Recurrent Malignant Extragonadal Germ Cell Tumor 5 273374 -NCIT:C115427 Recurrent Malignant Extragonadal Nongerminomatous Germ Cell Tumor 6 273375 -NCIT:C115428 Recurrent Extragonadal Seminoma 6 273376 -NCIT:C136410 Malignant Peritoneal Germ Cell Tumor 5 273377 -NCIT:C147104 Malignant Pericardial Germ Cell Tumor 5 273378 -NCIT:C147105 Pericardial Yolk Sac Tumor 6 273379 -NCIT:C5371 Malignant Cardiac Germ Cell Tumor 5 273380 -NCIT:C147006 Cardiac Yolk Sac Tumor 6 273381 -NCIT:C54099 Malignant Central Nervous System Germ Cell Tumor 5 273382 -NCIT:C5403 Malignant Intracranial Germ Cell Tumor 6 273383 -NCIT:C155804 Sellar Yolk Sac Tumor 7 273384 -NCIT:C155805 Sellar Embryonal Carcinoma 7 273385 -NCIT:C155806 Sellar Choriocarcinoma 7 273386 -NCIT:C155810 Sellar Teratoma with Malignant Transformation 7 273387 -NCIT:C155811 Sellar Mixed Germ Cell Tumor 7 273388 -NCIT:C5430 Intracranial Germinoma 7 273389 -NCIT:C155802 Sellar Germinoma 8 273390 -NCIT:C155803 Suprasellar Germinoma 9 273391 -NCIT:C6284 Brain Germinoma 8 273392 -NCIT:C156040 Third Ventricle Germinoma 9 273393 -NCIT:C6207 Childhood Brain Germinoma 9 273394 -NCIT:C8712 Pineal Region Germinoma 9 273395 -NCIT:C6767 Malignant Pineal Region Germ Cell Tumor 7 273396 -NCIT:C6752 Pineal Region Yolk Sac Tumor 8 273397 -NCIT:C6759 Pineal Region Choriocarcinoma 8 273398 -NCIT:C8712 Pineal Region Germinoma 8 273399 -NCIT:C7009 Central Nervous System Germinoma 6 273400 -NCIT:C27406 Childhood Central Nervous System Germinoma 7 273401 -NCIT:C6207 Childhood Brain Germinoma 8 273402 -NCIT:C5430 Intracranial Germinoma 7 273403 -NCIT:C155802 Sellar Germinoma 8 273404 -NCIT:C155803 Suprasellar Germinoma 9 273405 -NCIT:C6284 Brain Germinoma 8 273406 -NCIT:C156040 Third Ventricle Germinoma 9 273407 -NCIT:C6207 Childhood Brain Germinoma 9 273408 -NCIT:C8712 Pineal Region Germinoma 9 273409 -NCIT:C5792 Adult Central Nervous System Germinoma 7 273410 -NCIT:C7010 Central Nervous System Embryonal Carcinoma 6 273411 -NCIT:C155805 Sellar Embryonal Carcinoma 7 273412 -NCIT:C5790 Adult Central Nervous System Embryonal Carcinoma 7 273413 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 7 273414 -NCIT:C7011 Central Nervous System Yolk Sac Tumor 6 273415 -NCIT:C155804 Sellar Yolk Sac Tumor 7 273416 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 7 273417 -NCIT:C6752 Pineal Region Yolk Sac Tumor 7 273418 -NCIT:C7012 Central Nervous System Choriocarcinoma 6 273419 -NCIT:C155806 Sellar Choriocarcinoma 7 273420 -NCIT:C5793 Adult Central Nervous System Choriocarcinoma 7 273421 -NCIT:C6206 Childhood Central Nervous System Choriocarcinoma 7 273422 -NCIT:C6759 Pineal Region Choriocarcinoma 7 273423 -NCIT:C7015 Central Nervous System Teratoma with Malignant Transformation 6 273424 -NCIT:C155810 Sellar Teratoma with Malignant Transformation 7 273425 -NCIT:C7016 Central Nervous System Mixed Germ Cell Tumor 6 273426 -NCIT:C155811 Sellar Mixed Germ Cell Tumor 7 273427 -NCIT:C27402 Adult Central Nervous System Mixed Germ Cell Tumor 7 273428 -NCIT:C27403 Childhood Central Nervous System Mixed Germ Cell Tumor 7 273429 -NCIT:C5486 Malignant Gastric Germ Cell Tumor 5 273430 -NCIT:C95749 Gastric Choriocarcinoma 6 273431 -NCIT:C6446 Malignant Mediastinal Germ Cell Tumor 5 273432 -NCIT:C146848 Malignant Mediastinal Germ Cell Tumor Stage Grouping of the Pediatric Study Group 6 273433 -NCIT:C146849 Stage I Malignant Mediastinal Germ Cell Tumor 7 273434 -NCIT:C146850 Stage II Malignant Mediastinal Germ Cell Tumor 7 273435 -NCIT:C146851 Stage III Malignant Mediastinal Germ Cell Tumor 7 273436 -NCIT:C146852 Stage IV Malignant Mediastinal Germ Cell Tumor 7 273437 -NCIT:C146861 Mediastinal Mixed Germ Cell Tumor 6 273438 -NCIT:C6444 Mediastinal Mixed Nongerminomatous Germ Cell Tumor 7 273439 -NCIT:C6442 Mediastinal Mixed Embryonal Carcinoma and Teratoma 8 273440 -NCIT:C45732 Mediastinal Germ Cell Tumor with Somatic-Type Malignancy 6 273441 -NCIT:C6439 Malignant Mediastinal Nongerminomatous Germ Cell Tumor 6 273442 -NCIT:C45733 Malignant Mediastinal Germ Cell Tumor with Associated Hematologic Malignancy 7 273443 -NCIT:C6440 Mediastinal Choriocarcinoma 7 273444 -NCIT:C6441 Mediastinal Embryonal Carcinoma 7 273445 -NCIT:C6443 Mediastinal Yolk Sac Tumor 7 273446 -NCIT:C6444 Mediastinal Mixed Nongerminomatous Germ Cell Tumor 7 273447 -NCIT:C6442 Mediastinal Mixed Embryonal Carcinoma and Teratoma 8 273448 -NCIT:C6812 Mediastinal Seminoma 6 273449 -NCIT:C68632 Childhood Extragonadal Malignant Germ Cell Tumor 5 273450 -NCIT:C27403 Childhood Central Nervous System Mixed Germ Cell Tumor 6 273451 -NCIT:C27406 Childhood Central Nervous System Germinoma 6 273452 -NCIT:C6207 Childhood Brain Germinoma 7 273453 -NCIT:C6206 Childhood Central Nervous System Choriocarcinoma 6 273454 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 6 273455 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 6 273456 -NCIT:C7327 Extragonadal Seminoma 5 273457 -NCIT:C115428 Recurrent Extragonadal Seminoma 6 273458 -NCIT:C6812 Mediastinal Seminoma 6 273459 -NCIT:C8885 Malignant Extragonadal Nongerminomatous Germ Cell Tumor 5 273460 -NCIT:C115427 Recurrent Malignant Extragonadal Nongerminomatous Germ Cell Tumor 6 273461 -NCIT:C6439 Malignant Mediastinal Nongerminomatous Germ Cell Tumor 6 273462 -NCIT:C45733 Malignant Mediastinal Germ Cell Tumor with Associated Hematologic Malignancy 7 273463 -NCIT:C6440 Mediastinal Choriocarcinoma 7 273464 -NCIT:C6441 Mediastinal Embryonal Carcinoma 7 273465 -NCIT:C6443 Mediastinal Yolk Sac Tumor 7 273466 -NCIT:C6444 Mediastinal Mixed Nongerminomatous Germ Cell Tumor 7 273467 -NCIT:C6442 Mediastinal Mixed Embryonal Carcinoma and Teratoma 8 273468 -NCIT:C7011 Central Nervous System Yolk Sac Tumor 6 273469 -NCIT:C155804 Sellar Yolk Sac Tumor 7 273470 -NCIT:C6209 Childhood Central Nervous System Yolk Sac Tumor 7 273471 -NCIT:C6752 Pineal Region Yolk Sac Tumor 7 273472 -NCIT:C7012 Central Nervous System Choriocarcinoma 6 273473 -NCIT:C155806 Sellar Choriocarcinoma 7 273474 -NCIT:C5793 Adult Central Nervous System Choriocarcinoma 7 273475 -NCIT:C6206 Childhood Central Nervous System Choriocarcinoma 7 273476 -NCIT:C6759 Pineal Region Choriocarcinoma 7 273477 -NCIT:C7015 Central Nervous System Teratoma with Malignant Transformation 6 273478 -NCIT:C155810 Sellar Teratoma with Malignant Transformation 7 273479 -NCIT:C8880 Extragonadal Embryonal Carcinoma 6 273480 -NCIT:C6441 Mediastinal Embryonal Carcinoma 7 273481 -NCIT:C7010 Central Nervous System Embryonal Carcinoma 7 273482 -NCIT:C155805 Sellar Embryonal Carcinoma 8 273483 -NCIT:C5790 Adult Central Nervous System Embryonal Carcinoma 8 273484 -NCIT:C6208 Childhood Central Nervous System Embryonal Carcinoma 8 273485 -NCIT:C95749 Gastric Choriocarcinoma 6 273486 -NCIT:C96851 Liver Yolk Sac Tumor 5 273487 -NCIT:C9063 Malignant Testicular Germ Cell Tumor 4 273488 -NCIT:C189057 Postpubertal-Type Testicular Teratoma 5 273489 -NCIT:C25771 Metastatic Malignant Testicular Germ Cell Tumor 5 273490 -NCIT:C187316 Advanced Malignant Testicular Germ Cell Tumor 6 273491 -NCIT:C39921 Testicular Spermatocytic Tumor 5 273492 -NCIT:C39922 Testicular Spermatocytic Tumor with Sarcoma 6 273493 -NCIT:C40962 Testicular Polyembryoma 5 273494 -NCIT:C5027 Malignant Testicular Non-Seminomatous Germ Cell Tumor 5 273495 -NCIT:C27785 Stage I Testicular Non-Seminomatous Germ Cell Tumor AJCC v6 and v7 6 273496 -NCIT:C8907 Stage I Testicular Choriocarcinoma AJCC v6 and v7 7 273497 -NCIT:C8908 Stage I Testicular Embryonal Carcinoma AJCC v6 and v7 7 273498 -NCIT:C8914 Stage I Immature Testicular Teratoma AJCC v6 and v7 7 273499 -NCIT:C8920 Stage I Testicular Yolk Sac Tumor AJCC v6 and v7 7 273500 -NCIT:C27786 Stage II Testicular Non-Seminomatous Germ Cell Tumor AJCC v6 and v7 6 273501 -NCIT:C8606 Stage II Testicular Choriocarcinoma AJCC v6 and v7 7 273502 -NCIT:C8909 Stage II Testicular Embryonal Carcinoma AJCC v6 and v7 7 273503 -NCIT:C8915 Stage II Immature Testicular Teratoma AJCC v6 and v7 7 273504 -NCIT:C8921 Stage II Testicular Yolk Sac Tumor AJCC v6 and v7 7 273505 -NCIT:C27787 Stage III Testicular Non-Seminomatous Germ Cell Tumor AJCC v6 and v7 6 273506 -NCIT:C8900 Stage III Testicular Choriocarcinoma AJCC v6 and v7 7 273507 -NCIT:C8910 Stage III Testicular Embryonal Carcinoma AJCC v6 and v7 7 273508 -NCIT:C8916 Stage III Immature Testicular Teratoma AJCC v6 and v7 7 273509 -NCIT:C8922 Stage III Testicular Yolk Sac Tumor AJCC v6 and v7 7 273510 -NCIT:C35711 Testicular Teratoma with Somatic-Type Malignancy 6 273511 -NCIT:C6341 Testicular Embryonal Carcinoma 6 273512 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 7 273513 -NCIT:C7325 Intratubular Non-Seminoma 7 273514 -NCIT:C8908 Stage I Testicular Embryonal Carcinoma AJCC v6 and v7 7 273515 -NCIT:C8909 Stage II Testicular Embryonal Carcinoma AJCC v6 and v7 7 273516 -NCIT:C8910 Stage III Testicular Embryonal Carcinoma AJCC v6 and v7 7 273517 -NCIT:C6351 Testicular Mixed Embryonal Carcinoma and Teratoma 6 273518 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 7 273519 -NCIT:C7733 Testicular Choriocarcinoma 6 273520 -NCIT:C39935 Testicular Monophasic Choriocarcinoma 7 273521 -NCIT:C6544 Childhood Testicular Choriocarcinoma 7 273522 -NCIT:C8606 Stage II Testicular Choriocarcinoma AJCC v6 and v7 7 273523 -NCIT:C8900 Stage III Testicular Choriocarcinoma AJCC v6 and v7 7 273524 -NCIT:C8907 Stage I Testicular Choriocarcinoma AJCC v6 and v7 7 273525 -NCIT:C8000 Testicular Yolk Sac Tumor 6 273526 -NCIT:C39923 Testicular Yolk Sac Tumor, Microcystic Pattern 7 273527 -NCIT:C39924 Testicular Yolk Sac Tumor, Macrocystic Pattern 7 273528 -NCIT:C39925 Testicular Yolk Sac Tumor, Solid Pattern 7 273529 -NCIT:C39926 Testicular Yolk Sac Tumor, Glandular-Alveolar Pattern 7 273530 -NCIT:C39927 Testicular Yolk Sac Tumor, Endodermal Sinus/Perivascular Pattern 7 273531 -NCIT:C39928 Testicular Yolk Sac Tumor, Papillary Pattern 7 273532 -NCIT:C39929 Testicular Yolk Sac Tumor, Myxomatous Pattern 7 273533 -NCIT:C39930 Testicular Yolk Sac Tumor, Polyvesicular Vitelline Pattern 7 273534 -NCIT:C39931 Testicular Yolk Sac Tumor, Hepatoid Pattern 7 273535 -NCIT:C39932 Testicular Yolk Sac Tumor, Enteric Pattern 7 273536 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 7 273537 -NCIT:C8920 Stage I Testicular Yolk Sac Tumor AJCC v6 and v7 7 273538 -NCIT:C8921 Stage II Testicular Yolk Sac Tumor AJCC v6 and v7 7 273539 -NCIT:C8922 Stage III Testicular Yolk Sac Tumor AJCC v6 and v7 7 273540 -NCIT:C8001 Testicular Mixed Embryonal Carcinoma and Yolk Sac Tumor 6 273541 -NCIT:C8002 Testicular Mixed Yolk Sac Tumor and Teratoma 6 273542 -NCIT:C6347 Testicular Mixed Germ Cell Tumor 5 273543 -NCIT:C6348 Testicular Mixed Choriocarcinoma and Embryonal Carcinoma 6 273544 -NCIT:C6349 Testicular Mixed Choriocarcinoma and Teratoma 6 273545 -NCIT:C6350 Testicular Mixed Embryonal Carcinoma and Seminoma 6 273546 -NCIT:C6351 Testicular Mixed Embryonal Carcinoma and Teratoma 6 273547 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 7 273548 -NCIT:C6352 Testicular Mixed Embryonal Carcinoma and Teratoma with Seminoma 6 273549 -NCIT:C6542 Childhood Testicular Mixed Germ Cell Tumor 6 273550 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 7 273551 -NCIT:C67548 Testicular Mixed Choriocarcinoma and Yolk Sac Tumor 6 273552 -NCIT:C8001 Testicular Mixed Embryonal Carcinoma and Yolk Sac Tumor 6 273553 -NCIT:C8002 Testicular Mixed Yolk Sac Tumor and Teratoma 6 273554 -NCIT:C8003 Testicular Mixed Yolk Sac Tumor and Teratoma with Seminoma 6 273555 -NCIT:C8911 Stage II Testicular Mixed Germ Cell Tumor AJCC v6 and v7 6 273556 -NCIT:C8912 Stage I Testicular Mixed Germ Cell Tumor AJCC v6 and v7 6 273557 -NCIT:C8913 Stage III Testicular Mixed Germ Cell Tumor AJCC v6 and v7 6 273558 -NCIT:C9172 Testicular Mixed Embryonal Carcinoma and Yolk Sac Tumor with Seminoma 6 273559 -NCIT:C9173 Testicular Mixed Choriocarcinoma and Seminoma 6 273560 -NCIT:C68628 Childhood Malignant Testicular Germ Cell Tumor 5 273561 -NCIT:C6542 Childhood Testicular Mixed Germ Cell Tumor 6 273562 -NCIT:C6539 Childhood Testicular Mixed Embryonal Carcinoma and Teratoma 7 273563 -NCIT:C6543 Childhood Testicular Yolk Sac Tumor 6 273564 -NCIT:C6544 Childhood Testicular Choriocarcinoma 6 273565 -NCIT:C6545 Childhood Testicular Embryonal Carcinoma 6 273566 -NCIT:C7326 Testicular Germ Cell Neoplasia In Situ with Extratubular Extension 5 273567 -NCIT:C7328 Testicular Seminoma 5 273568 -NCIT:C39919 Testicular Seminoma with Syncytiotrophoblastic Cells 6 273569 -NCIT:C39920 Testicular Seminoma with High Mitotic Index 6 273570 -NCIT:C40957 Testicular Seminoma, Cribriform Variant 6 273571 -NCIT:C40958 Testicular Seminoma, Pseudoglandular Variant 6 273572 -NCIT:C40959 Testicular Seminoma, Tubular Variant 6 273573 -NCIT:C61383 Testicular Typical Seminoma 6 273574 -NCIT:C7329 Intratubular Seminoma 6 273575 -NCIT:C8917 Stage I Testicular Seminoma AJCC v6 and v7 6 273576 -NCIT:C8918 Stage II Testicular Seminoma AJCC v6 and v7 6 273577 -NCIT:C8919 Stage III Testicular Seminoma AJCC v6 and v7 6 273578 -NCIT:C9077 Refractory Malignant Testicular Germ Cell Tumor 5 273579 -NCIT:C9369 Recurrent Malignant Testicular Germ Cell Tumor 5 273580 -NCIT:C9309 Seminoma 4 273581 -NCIT:C123840 Childhood Seminoma 5 273582 -NCIT:C7327 Extragonadal Seminoma 5 273583 -NCIT:C115428 Recurrent Extragonadal Seminoma 6 273584 -NCIT:C6812 Mediastinal Seminoma 6 273585 -NCIT:C7328 Testicular Seminoma 5 273586 -NCIT:C39919 Testicular Seminoma with Syncytiotrophoblastic Cells 6 273587 -NCIT:C39920 Testicular Seminoma with High Mitotic Index 6 273588 -NCIT:C40957 Testicular Seminoma, Cribriform Variant 6 273589 -NCIT:C40958 Testicular Seminoma, Pseudoglandular Variant 6 273590 -NCIT:C40959 Testicular Seminoma, Tubular Variant 6 273591 -NCIT:C61383 Testicular Typical Seminoma 6 273592 -NCIT:C7329 Intratubular Seminoma 6 273593 -NCIT:C8917 Stage I Testicular Seminoma AJCC v6 and v7 6 273594 -NCIT:C8918 Stage II Testicular Seminoma AJCC v6 and v7 6 273595 -NCIT:C8919 Stage III Testicular Seminoma AJCC v6 and v7 6 273596 -NCIT:C4968 Secondary Malignant Neoplasm 3 273597 -NCIT:C178480 Secondary Peripheral Atypical Cartilaginous Tumor/Chondrosarcoma, Grade 1 4 273598 -NCIT:C178481 Secondary Peripheral Chondrosarcoma, Grade 1 5 273599 -NCIT:C178482 Secondary Peripheral Atypical Cartilaginous Tumor 5 273600 -NCIT:C191432 Secondary Plasma Cell Leukemia 4 273601 -NCIT:C25765 Secondary Acute Myeloid Leukemia 4 273602 -NCIT:C172129 Acute Myeloid Leukemia Arising from Previous Myeloproliferative Neoplasm 5 273603 -NCIT:C172130 Acute Myeloid Leukemia Arising from Previous Myelodysplastic/Myeloproliferative Neoplasm 5 273604 -NCIT:C27931 Benzene-Related Acute Myeloid Leukemia 5 273605 -NCIT:C4037 Acute Myeloid Leukemia Arising from Previous Myelodysplastic Syndrome 5 273606 -NCIT:C8252 Therapy-Related Acute Myeloid Leukemia 5 273607 -NCIT:C186730 Therapy-Related Cytogenetically Normal Acute Myeloid Leukemia 6 273608 -NCIT:C27754 Alkylating Agent-Related Acute Myeloid Leukemia 6 273609 -NCIT:C27755 Topoisomerase II Inhibitor-Related Acute Myeloid Leukemia 6 273610 -NCIT:C27280 Secondary Myelodysplastic Syndrome 4 273611 -NCIT:C27722 Therapy-Related Myelodysplastic Syndrome 5 273612 -NCIT:C7642 Epipodophyllotoxin-Related Myelodysplastic Syndrome 6 273613 -NCIT:C7643 Alkylating Agent-Related Myelodysplastic Syndrome 6 273614 -NCIT:C27482 Secondary Chondrosarcoma 4 273615 -NCIT:C121881 Secondary Central Chondrosarcoma 5 273616 -NCIT:C178477 Secondary Central Atypical Cartilaginous Tumor/Chondrosarcoma, Grade 1 6 273617 -NCIT:C121882 Secondary Peripheral Chondrosarcoma 5 273618 -NCIT:C178481 Secondary Peripheral Chondrosarcoma, Grade 1 6 273619 -NCIT:C178492 Secondary Peripheral Chondrosarcoma, Grade 2 6 273620 -NCIT:C178494 Secondary Peripheral Chondrosarcoma, Grade 3 6 273621 -NCIT:C27912 Therapy-Related Myeloid Neoplasm 4 273622 -NCIT:C27722 Therapy-Related Myelodysplastic Syndrome 5 273623 -NCIT:C7642 Epipodophyllotoxin-Related Myelodysplastic Syndrome 6 273624 -NCIT:C7643 Alkylating Agent-Related Myelodysplastic Syndrome 6 273625 -NCIT:C27913 Alkylating Agent-Related Acute Myeloid Leukemia and Myelodysplastic Syndrome 5 273626 -NCIT:C27754 Alkylating Agent-Related Acute Myeloid Leukemia 6 273627 -NCIT:C7643 Alkylating Agent-Related Myelodysplastic Syndrome 6 273628 -NCIT:C82397 Therapy-Related Myelodysplastic/Myeloproliferative Neoplasm 5 273629 -NCIT:C8252 Therapy-Related Acute Myeloid Leukemia 5 273630 -NCIT:C186730 Therapy-Related Cytogenetically Normal Acute Myeloid Leukemia 6 273631 -NCIT:C27754 Alkylating Agent-Related Acute Myeloid Leukemia 6 273632 -NCIT:C27755 Topoisomerase II Inhibitor-Related Acute Myeloid Leukemia 6 273633 -NCIT:C36263 Metastatic Malignant Neoplasm 4 273634 -NCIT:C114831 Metastatic Malignant Neoplasm in the Soft Tissues 5 273635 -NCIT:C132881 Prostate Carcinoma Metastatic in the Soft Tissue 6 273636 -NCIT:C127155 Metastatic Malignant Solid Neoplasm 5 273637 -NCIT:C129707 Advanced Malignant Solid Neoplasm 6 273638 -NCIT:C157335 Advanced Extracranial Malignant Solid Neoplasm 7 273639 -NCIT:C187210 Advanced Childhood Malignant Solid Neoplasm 7 273640 -NCIT:C133093 Locally Advanced Malignant Solid Neoplasm 6 273641 -NCIT:C157334 Metastatic Extracranial Malignant Solid Neoplasm 6 273642 -NCIT:C157335 Advanced Extracranial Malignant Solid Neoplasm 7 273643 -NCIT:C161019 Oligometastatic Malignant Solid Neoplasm 6 273644 -NCIT:C132854 Metastatic Malignant Germ Cell Tumor 5 273645 -NCIT:C170957 Metastatic Platinum-Resistant Malignant Germ Cell Tumor 6 273646 -NCIT:C170958 Advanced Platinum-Resistant Malignant Germ Cell Tumor 7 273647 -NCIT:C170967 Advanced Malignant Germ Cell Tumor 6 273648 -NCIT:C170958 Advanced Platinum-Resistant Malignant Germ Cell Tumor 7 273649 -NCIT:C187316 Advanced Malignant Testicular Germ Cell Tumor 7 273650 -NCIT:C177770 Metastatic Malignant Nongerminomatous Germ Cell Tumor 6 273651 -NCIT:C25771 Metastatic Malignant Testicular Germ Cell Tumor 6 273652 -NCIT:C187316 Advanced Malignant Testicular Germ Cell Tumor 7 273653 -NCIT:C146858 Metastatic Epithelioid Hemangioendothelioma 5 273654 -NCIT:C146857 Locally Advanced Epithelioid Hemangioendothelioma 6 273655 -NCIT:C168721 Advanced Epithelioid Hemangioendothelioma 6 273656 -NCIT:C150597 Metastatic Malignant Neoplasm in the Viscera 5 273657 -NCIT:C152076 Metastatic Sarcoma 5 273658 -NCIT:C152074 Metastatic Unresectable Sarcoma 6 273659 -NCIT:C153477 Locally Advanced Unresectable Sarcoma 7 273660 -NCIT:C153475 Locally Advanced Unresectable Bone Sarcoma 8 273661 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 9 273662 -NCIT:C153476 Locally Advanced Unresectable Soft Tissue Sarcoma 8 273663 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 9 273664 -NCIT:C153069 Metastatic Soft Tissue Sarcoma 6 273665 -NCIT:C150738 Metastatic Gastrointestinal Stromal Tumor 7 273666 -NCIT:C150739 Locally Advanced Gastrointestinal Stromal Tumor 8 273667 -NCIT:C173502 Advanced Gastrointestinal Stromal Tumor 8 273668 -NCIT:C153066 Locally Advanced Soft Tissue Sarcoma 7 273669 -NCIT:C150739 Locally Advanced Gastrointestinal Stromal Tumor 8 273670 -NCIT:C153476 Locally Advanced Unresectable Soft Tissue Sarcoma 8 273671 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 9 273672 -NCIT:C160919 Locally Advanced Undifferentiated Pleomorphic Sarcoma 8 273673 -NCIT:C164076 Locally Advanced Alveolar Soft Part Sarcoma 8 273674 -NCIT:C166415 Locally Advanced Rhabdomyosarcoma 8 273675 -NCIT:C167378 Locally Advanced Epithelioid Sarcoma 8 273676 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 8 273677 -NCIT:C171399 Locally Advanced Synovial Sarcoma 8 273678 -NCIT:C180875 Locally Advanced Desmoplastic Small Round Cell Tumor 8 273679 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 8 273680 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 9 273681 -NCIT:C156071 Metastatic Adult Soft Tissue Sarcoma 7 273682 -NCIT:C156475 Metastatic Kaposi Sarcoma 7 273683 -NCIT:C156476 Advanced Kaposi Sarcoma 8 273684 -NCIT:C161585 Metastatic Clear Cell Sarcoma of Soft Tissue 7 273685 -NCIT:C161586 Advanced Clear Cell Sarcoma of Soft Tissue 8 273686 -NCIT:C162194 Advanced Soft Tissue Sarcoma 7 273687 -NCIT:C153184 Advanced Synovial Sarcoma 8 273688 -NCIT:C156476 Advanced Kaposi Sarcoma 8 273689 -NCIT:C161586 Advanced Clear Cell Sarcoma of Soft Tissue 8 273690 -NCIT:C164246 Advanced Malignant PEComa 8 273691 -NCIT:C165781 Advanced Undifferentiated Pleomorphic Sarcoma 8 273692 -NCIT:C167380 Advanced Epithelioid Sarcoma 8 273693 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 8 273694 -NCIT:C171304 Advanced Myxofibrosarcoma 8 273695 -NCIT:C173502 Advanced Gastrointestinal Stromal Tumor 8 273696 -NCIT:C188198 Advanced Alveolar Soft Part Sarcoma 8 273697 -NCIT:C164245 Metastatic Malignant PEComa 7 273698 -NCIT:C164246 Advanced Malignant PEComa 8 273699 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 8 273700 -NCIT:C166414 Metastatic Rhabdomyosarcoma 7 273701 -NCIT:C166415 Locally Advanced Rhabdomyosarcoma 8 273702 -NCIT:C183250 Metastatic Embryonal Rhabdomyosarcoma 8 273703 -NCIT:C168670 Metastatic Myxofibrosarcoma 7 273704 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 8 273705 -NCIT:C171304 Advanced Myxofibrosarcoma 8 273706 -NCIT:C168725 Metastatic Soft Tissue Leiomyosarcoma 7 273707 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 8 273708 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 8 273709 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 9 273710 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 8 273711 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 9 273712 -NCIT:C170827 Metastatic Desmoplastic Small Round Cell Tumor 7 273713 -NCIT:C180875 Locally Advanced Desmoplastic Small Round Cell Tumor 8 273714 -NCIT:C190009 Metastatic Uterine Corpus Sarcoma 7 273715 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 8 273716 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 9 273717 -NCIT:C4926 Metastatic Undifferentiated Pleomorphic Sarcoma 7 273718 -NCIT:C160919 Locally Advanced Undifferentiated Pleomorphic Sarcoma 8 273719 -NCIT:C165781 Advanced Undifferentiated Pleomorphic Sarcoma 8 273720 -NCIT:C8066 Metastatic Childhood Soft Tissue Sarcoma 7 273721 -NCIT:C8796 Metastatic Alveolar Soft Part Sarcoma 7 273722 -NCIT:C164076 Locally Advanced Alveolar Soft Part Sarcoma 8 273723 -NCIT:C188198 Advanced Alveolar Soft Part Sarcoma 8 273724 -NCIT:C8799 Metastatic Epithelioid Sarcoma 7 273725 -NCIT:C167378 Locally Advanced Epithelioid Sarcoma 8 273726 -NCIT:C167380 Advanced Epithelioid Sarcoma 8 273727 -NCIT:C8801 Metastatic Extraskeletal Ewing Sarcoma 7 273728 -NCIT:C8804 Metastatic Extraskeletal Myxoid Chondrosarcoma 7 273729 -NCIT:C8808 Metastatic Extraskeletal Osteosarcoma 7 273730 -NCIT:C8825 Metastatic Synovial Sarcoma 7 273731 -NCIT:C153184 Advanced Synovial Sarcoma 8 273732 -NCIT:C171399 Locally Advanced Synovial Sarcoma 8 273733 -NCIT:C153071 Locally Advanced Sarcoma 6 273734 -NCIT:C146856 Locally Advanced Angiosarcoma 7 273735 -NCIT:C153066 Locally Advanced Soft Tissue Sarcoma 7 273736 -NCIT:C150739 Locally Advanced Gastrointestinal Stromal Tumor 8 273737 -NCIT:C153476 Locally Advanced Unresectable Soft Tissue Sarcoma 8 273738 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 9 273739 -NCIT:C160919 Locally Advanced Undifferentiated Pleomorphic Sarcoma 8 273740 -NCIT:C164076 Locally Advanced Alveolar Soft Part Sarcoma 8 273741 -NCIT:C166415 Locally Advanced Rhabdomyosarcoma 8 273742 -NCIT:C167378 Locally Advanced Epithelioid Sarcoma 8 273743 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 8 273744 -NCIT:C171399 Locally Advanced Synovial Sarcoma 8 273745 -NCIT:C180875 Locally Advanced Desmoplastic Small Round Cell Tumor 8 273746 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 8 273747 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 9 273748 -NCIT:C153070 Locally Advanced Bone Sarcoma 7 273749 -NCIT:C153475 Locally Advanced Unresectable Bone Sarcoma 8 273750 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 9 273751 -NCIT:C153477 Locally Advanced Unresectable Sarcoma 7 273752 -NCIT:C153475 Locally Advanced Unresectable Bone Sarcoma 8 273753 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 9 273754 -NCIT:C153476 Locally Advanced Unresectable Soft Tissue Sarcoma 8 273755 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 9 273756 -NCIT:C160916 Locally Advanced Liposarcoma 7 273757 -NCIT:C164071 Locally Advanced Dedifferentiated Liposarcoma 8 273758 -NCIT:C160917 Locally Advanced Leiomyosarcoma 7 273759 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 8 273760 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 9 273761 -NCIT:C164074 Locally Advanced Malignant Peripheral Nerve Sheath Tumor 7 273762 -NCIT:C164080 Locally Advanced Ewing Sarcoma 7 273763 -NCIT:C168668 Locally Advanced High Grade Sarcoma 7 273764 -NCIT:C170953 Locally Advanced Chondrosarcoma 7 273765 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 8 273766 -NCIT:C171317 Locally Advanced Fibrosarcoma 7 273767 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 8 273768 -NCIT:C175665 Locally Advanced Osteosarcoma 7 273769 -NCIT:C153073 Metastatic Bone Sarcoma 6 273770 -NCIT:C153070 Locally Advanced Bone Sarcoma 7 273771 -NCIT:C153475 Locally Advanced Unresectable Bone Sarcoma 8 273772 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 9 273773 -NCIT:C162762 Advanced Bone Sarcoma 7 273774 -NCIT:C171072 Metastatic Primary Central Chondrosarcoma 7 273775 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 8 273776 -NCIT:C38157 Metachronous Osteosarcoma 7 273777 -NCIT:C6621 Metastatic Bone Ewing Sarcoma 7 273778 -NCIT:C153185 Advanced Sarcoma 6 273779 -NCIT:C155649 Advanced Sarcoma of the Extremity 7 273780 -NCIT:C162194 Advanced Soft Tissue Sarcoma 7 273781 -NCIT:C153184 Advanced Synovial Sarcoma 8 273782 -NCIT:C156476 Advanced Kaposi Sarcoma 8 273783 -NCIT:C161586 Advanced Clear Cell Sarcoma of Soft Tissue 8 273784 -NCIT:C164246 Advanced Malignant PEComa 8 273785 -NCIT:C165781 Advanced Undifferentiated Pleomorphic Sarcoma 8 273786 -NCIT:C167380 Advanced Epithelioid Sarcoma 8 273787 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 8 273788 -NCIT:C171304 Advanced Myxofibrosarcoma 8 273789 -NCIT:C173502 Advanced Gastrointestinal Stromal Tumor 8 273790 -NCIT:C188198 Advanced Alveolar Soft Part Sarcoma 8 273791 -NCIT:C162762 Advanced Bone Sarcoma 7 273792 -NCIT:C165780 Advanced Leiomyosarcoma 7 273793 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 8 273794 -NCIT:C168701 Advanced Liposarcoma 7 273795 -NCIT:C162763 Advanced Myxoid Liposarcoma 8 273796 -NCIT:C168715 Advanced Dedifferentiated Liposarcoma 8 273797 -NCIT:C182026 Advanced Pleomorphic Liposarcoma 8 273798 -NCIT:C168714 Advanced Malignant Peripheral Nerve Sheath Tumor 7 273799 -NCIT:C168716 Advanced Fibrosarcoma 7 273800 -NCIT:C171304 Advanced Myxofibrosarcoma 8 273801 -NCIT:C168720 Advanced Angiosarcoma 7 273802 -NCIT:C168667 Metastatic High Grade Sarcoma 6 273803 -NCIT:C168668 Locally Advanced High Grade Sarcoma 7 273804 -NCIT:C179657 Metastatic Sarcoma in the Peritoneum 6 273805 -NCIT:C179656 Peritoneal Sarcomatosis 7 273806 -NCIT:C7781 Metastatic Osteosarcoma 6 273807 -NCIT:C175665 Locally Advanced Osteosarcoma 7 273808 -NCIT:C38157 Metachronous Osteosarcoma 7 273809 -NCIT:C8808 Metastatic Extraskeletal Osteosarcoma 7 273810 -NCIT:C7807 Metastatic Ewing Sarcoma 6 273811 -NCIT:C164080 Locally Advanced Ewing Sarcoma 7 273812 -NCIT:C6621 Metastatic Bone Ewing Sarcoma 7 273813 -NCIT:C8801 Metastatic Extraskeletal Ewing Sarcoma 7 273814 -NCIT:C8708 Metastatic Angiosarcoma 6 273815 -NCIT:C146856 Locally Advanced Angiosarcoma 7 273816 -NCIT:C168720 Advanced Angiosarcoma 7 273817 -NCIT:C8779 Metastatic Chondrosarcoma 6 273818 -NCIT:C170953 Locally Advanced Chondrosarcoma 7 273819 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 8 273820 -NCIT:C171072 Metastatic Primary Central Chondrosarcoma 7 273821 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 8 273822 -NCIT:C8812 Metastatic Fibrosarcoma 6 273823 -NCIT:C168670 Metastatic Myxofibrosarcoma 7 273824 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 8 273825 -NCIT:C171304 Advanced Myxofibrosarcoma 8 273826 -NCIT:C168716 Advanced Fibrosarcoma 7 273827 -NCIT:C171304 Advanced Myxofibrosarcoma 8 273828 -NCIT:C171317 Locally Advanced Fibrosarcoma 7 273829 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 8 273830 -NCIT:C8813 Metastatic Leiomyosarcoma 6 273831 -NCIT:C160917 Locally Advanced Leiomyosarcoma 7 273832 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 8 273833 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 9 273834 -NCIT:C165780 Advanced Leiomyosarcoma 7 273835 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 8 273836 -NCIT:C168725 Metastatic Soft Tissue Leiomyosarcoma 7 273837 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 8 273838 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 8 273839 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 9 273840 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 8 273841 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 9 273842 -NCIT:C8816 Metastatic Liposarcoma 6 273843 -NCIT:C148298 Metastatic Myxoid Liposarcoma 7 273844 -NCIT:C162763 Advanced Myxoid Liposarcoma 8 273845 -NCIT:C160916 Locally Advanced Liposarcoma 7 273846 -NCIT:C164071 Locally Advanced Dedifferentiated Liposarcoma 8 273847 -NCIT:C164070 Metastatic Dedifferentiated Liposarcoma 7 273848 -NCIT:C164071 Locally Advanced Dedifferentiated Liposarcoma 8 273849 -NCIT:C168715 Advanced Dedifferentiated Liposarcoma 8 273850 -NCIT:C168701 Advanced Liposarcoma 7 273851 -NCIT:C162763 Advanced Myxoid Liposarcoma 8 273852 -NCIT:C168715 Advanced Dedifferentiated Liposarcoma 8 273853 -NCIT:C182026 Advanced Pleomorphic Liposarcoma 8 273854 -NCIT:C182025 Metastatic Pleomorphic Liposarcoma 7 273855 -NCIT:C182026 Advanced Pleomorphic Liposarcoma 8 273856 -NCIT:C8822 Metastatic Malignant Peripheral Nerve Sheath Tumor 6 273857 -NCIT:C164074 Locally Advanced Malignant Peripheral Nerve Sheath Tumor 7 273858 -NCIT:C168714 Advanced Malignant Peripheral Nerve Sheath Tumor 7 273859 -NCIT:C153279 Metastatic Unresectable Malignant Neoplasm 5 273860 -NCIT:C152074 Metastatic Unresectable Sarcoma 6 273861 -NCIT:C153477 Locally Advanced Unresectable Sarcoma 7 273862 -NCIT:C153475 Locally Advanced Unresectable Bone Sarcoma 8 273863 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 9 273864 -NCIT:C153476 Locally Advanced Unresectable Soft Tissue Sarcoma 8 273865 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 9 273866 -NCIT:C153278 Locally Advanced Unresectable Malignant Neoplasm 6 273867 -NCIT:C153477 Locally Advanced Unresectable Sarcoma 7 273868 -NCIT:C153475 Locally Advanced Unresectable Bone Sarcoma 8 273869 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 9 273870 -NCIT:C153476 Locally Advanced Unresectable Soft Tissue Sarcoma 8 273871 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 9 273872 -NCIT:C155698 Locally Advanced Unresectable Carcinoma 7 273873 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 8 273874 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 8 273875 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 8 273876 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 8 273877 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 273878 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 8 273879 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 273880 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 8 273881 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 273882 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 273883 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 8 273884 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 273885 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 273886 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 273887 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 273888 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 273889 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 273890 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 273891 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 8 273892 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 8 273893 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 8 273894 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 8 273895 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 8 273896 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 8 273897 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 8 273898 -NCIT:C158090 Locally Advanced Unresectable Digestive System Neuroendocrine Neoplasm 7 273899 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 7 273900 -NCIT:C153315 Metastatic Unresectable Carcinoma 6 273901 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 7 273902 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 8 273903 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 8 273904 -NCIT:C155698 Locally Advanced Unresectable Carcinoma 7 273905 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 8 273906 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 8 273907 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 8 273908 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 8 273909 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 273910 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 8 273911 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 273912 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 8 273913 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 273914 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 273915 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 8 273916 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 273917 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 273918 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 273919 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 273920 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 273921 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 273922 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 273923 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 8 273924 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 8 273925 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 8 273926 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 8 273927 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 8 273928 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 8 273929 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 8 273930 -NCIT:C156788 Metastatic Unresectable Basal Cell Carcinoma 7 273931 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 8 273932 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 7 273933 -NCIT:C163959 Metastatic Unresectable Pituitary Neuroendocrine Tumor 6 273934 -NCIT:C153323 Metastatic Chordoma 5 273935 -NCIT:C153324 Locally Advanced Chordoma 6 273936 -NCIT:C173333 Advanced Chordoma 6 273937 -NCIT:C154608 Recurrent Metastatic Malignant Neoplasm 5 273938 -NCIT:C151905 Recurrent Metastatic Digestive System Carcinoma 6 273939 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 7 273940 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 6 273941 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 6 273942 -NCIT:C173916 Recurrent Metastatic Malignant Neoplasm in the Leptomeninges 6 273943 -NCIT:C179179 Recurrent Pseudomyxoma Peritonei 6 273944 -NCIT:C182020 Recurrent Metastatic Melanoma 6 273945 -NCIT:C9181 Recurrent Carcinoma of Unknown Primary 6 273946 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 7 273947 -NCIT:C155852 Metastatic Malignant Pancreatic Neoplasm 5 273948 -NCIT:C156069 Metastatic Pancreatic Carcinoma 6 273949 -NCIT:C165452 Advanced Pancreatic Carcinoma 7 273950 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 8 273951 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 9 273952 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 7 273953 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 8 273954 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 9 273955 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 9 273956 -NCIT:C190770 Metastatic Pancreatic Adenosquamous Carcinoma 7 273957 -NCIT:C190771 Metastatic Pancreatic Squamous Cell Carcinoma 7 273958 -NCIT:C8933 Metastatic Pancreatic Adenocarcinoma 7 273959 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 8 273960 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 9 273961 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 9 273962 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 8 273963 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 9 273964 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 9 273965 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 9 273966 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 8 273967 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 9 273968 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 8 273969 -NCIT:C165447 Metastatic Pancreatic Neuroendocrine Neoplasm 6 273970 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 7 273971 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 8 273972 -NCIT:C156488 Metastatic Pancreatic Neuroendocrine Tumor 7 273973 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 8 273974 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 273975 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 273976 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 8 273977 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 8 273978 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 273979 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 8 273980 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 273981 -NCIT:C165448 Advanced Pancreatic Neuroendocrine Neoplasm 7 273982 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 8 273983 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 273984 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 273985 -NCIT:C155919 Metastatic Malignant Neoplasm in the Thoracic Cavity 5 273986 -NCIT:C35748 Metastatic Malignant Neoplasm in the Axilla 6 273987 -NCIT:C3577 Metastatic Malignant Neoplasm in the Lung 6 273988 -NCIT:C185321 Extramedullary Disease in Plasma Cell Myeloma Involving the Lung 7 273989 -NCIT:C27408 Metastatic Carcinoma in the Lung 7 273990 -NCIT:C153224 Colorectal Carcinoma Metastatic in the Lung 8 273991 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 9 273992 -NCIT:C36300 Breast Carcinoma Metastatic in the Lung 8 273993 -NCIT:C36307 Prostate Carcinoma Metastatic in the Lung 8 273994 -NCIT:C3578 Metastatic Malignant Neoplasm in the Mediastinum 6 273995 -NCIT:C3579 Metastatic Malignant Neoplasm in the Pleura 6 273996 -NCIT:C27384 Pleural Carcinomatosis 7 273997 -NCIT:C45762 Metastatic Malignant Neoplasm in the Pericardium 6 273998 -NCIT:C27385 Pericardial Carcinomatosis 7 273999 -NCIT:C4889 Metastatic Malignant Neoplasm in the Heart 6 274000 -NCIT:C5369 Secondary Heart Lymphoma 7 274001 -NCIT:C4903 Metastatic Malignant Neoplasm in the Thymus 6 274002 -NCIT:C8530 Metastatic Malignant Neoplasm in the Chest Wall 6 274003 -NCIT:C8527 Metastatic Malignant Neoplasm in the Sternum 7 274004 -NCIT:C156101 Metastatic Neuroblastoma 5 274005 -NCIT:C156485 Metastatic Neuroendocrine Neoplasm 5 274006 -NCIT:C147065 Metastatic Neuroendocrine Tumor 6 274007 -NCIT:C140329 Metastatic Non-Functioning Neuroendocrine Tumor 7 274008 -NCIT:C140328 Advanced Non-Functioning Neuroendocrine Tumor 8 274009 -NCIT:C154621 Advanced Neuroendocrine Tumor 7 274010 -NCIT:C140328 Advanced Non-Functioning Neuroendocrine Tumor 8 274011 -NCIT:C156487 Advanced Carcinoid Tumor 8 274012 -NCIT:C177245 Advanced Lung Carcinoid Tumor 9 274013 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 9 274014 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 274015 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 8 274016 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 274017 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 274018 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 8 274019 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 274020 -NCIT:C156488 Metastatic Pancreatic Neuroendocrine Tumor 7 274021 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 8 274022 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 274023 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 274024 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 8 274025 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 8 274026 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 274027 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 8 274028 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 274029 -NCIT:C167329 Metastatic Midgut Neuroendocrine Tumor 7 274030 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 8 274031 -NCIT:C167333 Locally Advanced Neuroendocrine Tumor 7 274032 -NCIT:C163956 Locally Advanced Pituitary Neuroendocrine Tumor 8 274033 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 8 274034 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 8 274035 -NCIT:C187328 Locally Advanced Carcinoid Tumor 8 274036 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 9 274037 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 8 274038 -NCIT:C179415 Metastatic Digestive System Neuroendocrine Tumor G2 7 274039 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 8 274040 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 8 274041 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 274042 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 8 274043 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 274044 -NCIT:C4536 Metastatic Pituitary Neuroendocrine Tumor 7 274045 -NCIT:C163956 Locally Advanced Pituitary Neuroendocrine Tumor 8 274046 -NCIT:C163959 Metastatic Unresectable Pituitary Neuroendocrine Tumor 8 274047 -NCIT:C5962 Metastatic Lactotroph Pituitary Neuroendocrine Tumor 8 274048 -NCIT:C5963 Metastatic Somatotroph Pituitary Neuroendocrine Tumor 8 274049 -NCIT:C5964 Metastatic Corticotroph Pituitary Neuroendocrine Tumor 8 274050 -NCIT:C5965 Metastatic Thyrotroph Pituitary Neuroendocrine Tumor 8 274051 -NCIT:C6431 Metastatic Carcinoid Tumor 7 274052 -NCIT:C115245 Metastatic Digestive System Neuroendocrine Tumor G1 8 274053 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 9 274054 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 274055 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 9 274056 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 9 274057 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 274058 -NCIT:C156487 Advanced Carcinoid Tumor 8 274059 -NCIT:C177245 Advanced Lung Carcinoid Tumor 9 274060 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 9 274061 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 274062 -NCIT:C177243 Metastatic Lung Carcinoid Tumor 8 274063 -NCIT:C177245 Advanced Lung Carcinoid Tumor 9 274064 -NCIT:C187328 Locally Advanced Carcinoid Tumor 8 274065 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 9 274066 -NCIT:C5171 Metastatic Breast Neuroendocrine Tumor G1 8 274067 -NCIT:C155869 Metastatic Neuroendocrine Carcinoma 6 274068 -NCIT:C155870 Advanced Neuroendocrine Carcinoma 7 274069 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 274070 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 274071 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 274072 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 274073 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 274074 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 274075 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 274076 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 274077 -NCIT:C165300 Advanced Merkel Cell Carcinoma 8 274078 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 8 274079 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 274080 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 274081 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 274082 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 7 274083 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 8 274084 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 274085 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 274086 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 274087 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 8 274088 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 274089 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 274090 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 274091 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 274092 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 274093 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 274094 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 274095 -NCIT:C158908 Metastatic Large Cell Neuroendocrine Carcinoma 7 274096 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 8 274097 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 8 274098 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 274099 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 8 274100 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 274101 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 274102 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 8 274103 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 274104 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 274105 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 274106 -NCIT:C158909 Locally Advanced Neuroendocrine Carcinoma 7 274107 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 274108 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 274109 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 8 274110 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 274111 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 274112 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 8 274113 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 274114 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 8 274115 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 274116 -NCIT:C158911 Metastatic Small Cell Neuroendocrine Carcinoma 7 274117 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 8 274118 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 9 274119 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 274120 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 8 274121 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 274122 -NCIT:C191852 Metastatic Extrapulmonary Small Cell Neuroendocrine Carcinoma 8 274123 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 274124 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 274125 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 9 274126 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 9 274127 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 7 274128 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 274129 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 274130 -NCIT:C162572 Metastatic Merkel Cell Carcinoma 7 274131 -NCIT:C165300 Advanced Merkel Cell Carcinoma 8 274132 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 8 274133 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 8 274134 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 7 274135 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 274136 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 274137 -NCIT:C163975 Neuroendocrine Carcinoma of Unknown Primary 7 274138 -NCIT:C156486 Advanced Neuroendocrine Neoplasm 6 274139 -NCIT:C154621 Advanced Neuroendocrine Tumor 7 274140 -NCIT:C140328 Advanced Non-Functioning Neuroendocrine Tumor 8 274141 -NCIT:C156487 Advanced Carcinoid Tumor 8 274142 -NCIT:C177245 Advanced Lung Carcinoid Tumor 9 274143 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 9 274144 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 274145 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 8 274146 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 274147 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 274148 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 8 274149 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 274150 -NCIT:C155870 Advanced Neuroendocrine Carcinoma 7 274151 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 274152 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 274153 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 274154 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 274155 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 274156 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 274157 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 274158 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 274159 -NCIT:C165300 Advanced Merkel Cell Carcinoma 8 274160 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 8 274161 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 274162 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 274163 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 274164 -NCIT:C158089 Advanced Digestive System Neuroendocrine Neoplasm 7 274165 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 274166 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 274167 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 274168 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 274169 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 274170 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 274171 -NCIT:C165448 Advanced Pancreatic Neuroendocrine Neoplasm 8 274172 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 9 274173 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 274174 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 10 274175 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 8 274176 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 274177 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 8 274178 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 274179 -NCIT:C160852 Advanced Paraganglioma 7 274180 -NCIT:C160853 Advanced Adrenal Gland Pheochromocytoma 8 274181 -NCIT:C165446 Advanced Lung Neuroendocrine Neoplasm 7 274182 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 274183 -NCIT:C177245 Advanced Lung Carcinoid Tumor 8 274184 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 274185 -NCIT:C180871 Advanced Thymic Neuroendocrine Neoplasm 7 274186 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 7 274187 -NCIT:C156492 Metastatic Digestive System Neuroendocrine Neoplasm 6 274188 -NCIT:C115245 Metastatic Digestive System Neuroendocrine Tumor G1 7 274189 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 8 274190 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 274191 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 8 274192 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 8 274193 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 274194 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 7 274195 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 8 274196 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 274197 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 274198 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 274199 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 8 274200 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 274201 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 274202 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 274203 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 274204 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 274205 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 274206 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 274207 -NCIT:C158089 Advanced Digestive System Neuroendocrine Neoplasm 7 274208 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 274209 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 274210 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 274211 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 274212 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 274213 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 274214 -NCIT:C165448 Advanced Pancreatic Neuroendocrine Neoplasm 8 274215 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 9 274216 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 274217 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 10 274218 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 8 274219 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 274220 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 8 274221 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 274222 -NCIT:C165447 Metastatic Pancreatic Neuroendocrine Neoplasm 7 274223 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 8 274224 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 274225 -NCIT:C156488 Metastatic Pancreatic Neuroendocrine Tumor 8 274226 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 9 274227 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 274228 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 10 274229 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 9 274230 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 9 274231 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 274232 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 9 274233 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 10 274234 -NCIT:C165448 Advanced Pancreatic Neuroendocrine Neoplasm 8 274235 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 9 274236 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 274237 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 10 274238 -NCIT:C167329 Metastatic Midgut Neuroendocrine Tumor 7 274239 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 8 274240 -NCIT:C178271 Locally Advanced Digestive System Neuroendocrine Neoplasm 7 274241 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 274242 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 274243 -NCIT:C158090 Locally Advanced Unresectable Digestive System Neuroendocrine Neoplasm 8 274244 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 8 274245 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 8 274246 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 8 274247 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 8 274248 -NCIT:C179415 Metastatic Digestive System Neuroendocrine Tumor G2 7 274249 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 8 274250 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 8 274251 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 274252 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 8 274253 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 274254 -NCIT:C156493 Metastatic Breast Neuroendocrine Neoplasm 6 274255 -NCIT:C5171 Metastatic Breast Neuroendocrine Tumor G1 7 274256 -NCIT:C157602 Metastatic Lung Neuroendocrine Neoplasm 6 274257 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 7 274258 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 274259 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 274260 -NCIT:C165446 Advanced Lung Neuroendocrine Neoplasm 7 274261 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 274262 -NCIT:C177245 Advanced Lung Carcinoid Tumor 8 274263 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 274264 -NCIT:C176715 Locally Advanced Lung Neuroendocrine Neoplasm 7 274265 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 274266 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 274267 -NCIT:C177243 Metastatic Lung Carcinoid Tumor 7 274268 -NCIT:C177245 Advanced Lung Carcinoid Tumor 8 274269 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 7 274270 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 274271 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 274272 -NCIT:C162461 Metastatic Thymic Neuroendocrine Neoplasm 6 274273 -NCIT:C180871 Advanced Thymic Neuroendocrine Neoplasm 7 274274 -NCIT:C167332 Locally Advanced Neuroendocrine Neoplasm 6 274275 -NCIT:C133713 Locally Advanced Paraganglioma 7 274276 -NCIT:C157129 Locally Advanced Adrenal Gland Pheochromocytoma 8 274277 -NCIT:C158909 Locally Advanced Neuroendocrine Carcinoma 7 274278 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 274279 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 274280 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 8 274281 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 274282 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 274283 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 8 274284 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 274285 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 8 274286 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 274287 -NCIT:C167333 Locally Advanced Neuroendocrine Tumor 7 274288 -NCIT:C163956 Locally Advanced Pituitary Neuroendocrine Tumor 8 274289 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 8 274290 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 8 274291 -NCIT:C187328 Locally Advanced Carcinoid Tumor 8 274292 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 9 274293 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 8 274294 -NCIT:C176715 Locally Advanced Lung Neuroendocrine Neoplasm 7 274295 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 274296 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 274297 -NCIT:C178271 Locally Advanced Digestive System Neuroendocrine Neoplasm 7 274298 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 274299 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 274300 -NCIT:C158090 Locally Advanced Unresectable Digestive System Neuroendocrine Neoplasm 8 274301 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 8 274302 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 8 274303 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 8 274304 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 8 274305 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 6 274306 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 7 274307 -NCIT:C8559 Metastatic Paraganglioma 6 274308 -NCIT:C133713 Locally Advanced Paraganglioma 7 274309 -NCIT:C157129 Locally Advanced Adrenal Gland Pheochromocytoma 8 274310 -NCIT:C160852 Advanced Paraganglioma 7 274311 -NCIT:C160853 Advanced Adrenal Gland Pheochromocytoma 8 274312 -NCIT:C4219 Metastatic Extra-Adrenal Paraganglioma 7 274313 -NCIT:C3574 Metastatic Carotid Body Paraganglioma 8 274314 -NCIT:C4623 Metastatic Jugulotympanic Paraganglioma 8 274315 -NCIT:C5392 Metastatic Cardiac Paraganglioma 8 274316 -NCIT:C6413 Metastatic Intrathoracic Paravertebral Paraganglioma 8 274317 -NCIT:C6416 Metastatic Bladder Paraganglioma 8 274318 -NCIT:C4220 Metastatic Adrenal Gland Pheochromocytoma 7 274319 -NCIT:C157129 Locally Advanced Adrenal Gland Pheochromocytoma 8 274320 -NCIT:C160853 Advanced Adrenal Gland Pheochromocytoma 8 274321 -NCIT:C92184 Metastatic Adrenal Gland Composite Pheochromocytoma 8 274322 -NCIT:C156793 Metastatic Human Papillomavirus-Related Malignant Neoplasm 5 274323 -NCIT:C187051 Human Papillomavirus-Related Head and Neck Squamous Cell Carcinoma of Unknown Primary 6 274324 -NCIT:C157774 Metastatic Malignant Genitourinary System Neoplasm 5 274325 -NCIT:C146893 Metastatic Genitourinary System Carcinoma 6 274326 -NCIT:C126109 Metastatic Urothelial Carcinoma 7 274327 -NCIT:C148493 Advanced Urothelial Carcinoma 8 274328 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 274329 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 274330 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 274331 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 274332 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 274333 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 274334 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 274335 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 274336 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 274337 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 274338 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 274339 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 274340 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 274341 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 274342 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 274343 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 274344 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 274345 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 274346 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 274347 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 8 274348 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 274349 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 274350 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 274351 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 274352 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 274353 -NCIT:C191692 Metastatic Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 274354 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 274355 -NCIT:C191693 Metastatic Giant Cell Urothelial Carcinoma 8 274356 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 274357 -NCIT:C191694 Metastatic Lipid-Rich Urothelial Carcinoma 8 274358 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 274359 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 8 274360 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 274361 -NCIT:C191696 Metastatic Nested Urothelial Carcinoma 8 274362 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 274363 -NCIT:C191697 Metastatic Plasmacytoid Urothelial Carcinoma 8 274364 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 274365 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 8 274366 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 274367 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 8 274368 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 274369 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 274370 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 274371 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 9 274372 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 274373 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 274374 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 274375 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 274376 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 274377 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 274378 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 274379 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 274380 -NCIT:C153387 Metastatic Cervical Carcinoma 7 274381 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 8 274382 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 274383 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 274384 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 8 274385 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 274386 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 274387 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 274388 -NCIT:C153390 Metastatic Cervical Adenosquamous Carcinoma 8 274389 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 274390 -NCIT:C156294 Advanced Cervical Carcinoma 8 274391 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 274392 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 274393 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 274394 -NCIT:C156295 Locally Advanced Cervical Carcinoma 8 274395 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 274396 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 274397 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 9 274398 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 274399 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 274400 -NCIT:C156062 Metastatic Bladder Carcinoma 7 274401 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 274402 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 274403 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 274404 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 274405 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 274406 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 274407 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 274408 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 274409 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 274410 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 274411 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 274412 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 8 274413 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 8 274414 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 8 274415 -NCIT:C167071 Locally Advanced Bladder Carcinoma 8 274416 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 274417 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 9 274418 -NCIT:C167338 Advanced Bladder Carcinoma 8 274419 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 274420 -NCIT:C190772 Metastatic Non-Muscle Invasive Bladder Carcinoma 8 274421 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 9 274422 -NCIT:C156063 Metastatic Fallopian Tube Carcinoma 7 274423 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 8 274424 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 9 274425 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 8 274426 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 8 274427 -NCIT:C156064 Metastatic Ovarian Carcinoma 7 274428 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 8 274429 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 274430 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 274431 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 274432 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 9 274433 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 274434 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 274435 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 9 274436 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 274437 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 274438 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 274439 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 274440 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 274441 -NCIT:C165458 Advanced Ovarian Carcinoma 8 274442 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 274443 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 274444 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 274445 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 274446 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 274447 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 274448 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 274449 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 8 274450 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 274451 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 274452 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 274453 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 274454 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 8 274455 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 274456 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 8 274457 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 274458 -NCIT:C172234 Metastatic Ovarian Undifferentiated Carcinoma 8 274459 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 8 274460 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 274461 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 274462 -NCIT:C180333 Metastatic Microsatellite Stable Ovarian Carcinoma 8 274463 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 274464 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 8 274465 -NCIT:C27391 Metastatic Ovarian Small Cell Carcinoma, Hypercalcemic Type 8 274466 -NCIT:C156065 Metastatic Vaginal Carcinoma 7 274467 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 8 274468 -NCIT:C170788 Advanced Vaginal Carcinoma 8 274469 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 274470 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 274471 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 274472 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 274473 -NCIT:C181028 Metastatic Vaginal Adenosquamous Carcinoma 8 274474 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 274475 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 8 274476 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 274477 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 274478 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 8 274479 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 274480 -NCIT:C156066 Metastatic Vulvar Carcinoma 7 274481 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 8 274482 -NCIT:C170786 Advanced Vulvar Carcinoma 8 274483 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 8 274484 -NCIT:C156068 Metastatic Endometrial Carcinoma 7 274485 -NCIT:C159676 Advanced Endometrial Carcinoma 8 274486 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 274487 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 274488 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 274489 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 274490 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 8 274491 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 274492 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 274493 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 9 274494 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 8 274495 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 8 274496 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 274497 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 8 274498 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 9 274499 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 274500 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 274501 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 274502 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 274503 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 9 274504 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 274505 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 274506 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 274507 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 274508 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 9 274509 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 9 274510 -NCIT:C164143 Advanced Genitourinary System Carcinoma 7 274511 -NCIT:C148493 Advanced Urothelial Carcinoma 8 274512 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 274513 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 274514 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 274515 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 274516 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 274517 -NCIT:C156284 Advanced Prostate Carcinoma 8 274518 -NCIT:C156286 Advanced Prostate Adenocarcinoma 9 274519 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 274520 -NCIT:C156294 Advanced Cervical Carcinoma 8 274521 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 274522 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 274523 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 274524 -NCIT:C159676 Advanced Endometrial Carcinoma 8 274525 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 274526 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 274527 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 274528 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 274529 -NCIT:C165458 Advanced Ovarian Carcinoma 8 274530 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 274531 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 274532 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 274533 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 274534 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 274535 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 274536 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 274537 -NCIT:C167338 Advanced Bladder Carcinoma 8 274538 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 274539 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 8 274540 -NCIT:C170786 Advanced Vulvar Carcinoma 8 274541 -NCIT:C170788 Advanced Vaginal Carcinoma 8 274542 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 274543 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 274544 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 274545 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 274546 -NCIT:C170790 Advanced Penile Carcinoma 8 274547 -NCIT:C172617 Advanced Kidney Carcinoma 8 274548 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 274549 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 274550 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 274551 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 274552 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 274553 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 274554 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 274555 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 274556 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 274557 -NCIT:C167069 Locally Advanced Genitourinary System Carcinoma 7 274558 -NCIT:C156285 Locally Advanced Prostate Carcinoma 8 274559 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 9 274560 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 274561 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 9 274562 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 274563 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 9 274564 -NCIT:C156295 Locally Advanced Cervical Carcinoma 8 274565 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 274566 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 274567 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 9 274568 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 274569 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 274570 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 8 274571 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 274572 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 274573 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 274574 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 274575 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 274576 -NCIT:C167071 Locally Advanced Bladder Carcinoma 8 274577 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 274578 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 9 274579 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 8 274580 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 274581 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 274582 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 274583 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 274584 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 8 274585 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 9 274586 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 8 274587 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 274588 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 274589 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 9 274590 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 8 274591 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 8 274592 -NCIT:C170789 Locally Advanced Penile Carcinoma 8 274593 -NCIT:C172618 Locally Advanced Kidney Carcinoma 8 274594 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 274595 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 274596 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 274597 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 274598 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 274599 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 274600 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 274601 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 274602 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 274603 -NCIT:C185381 Metastatic Mesonephric Adenocarcinoma 7 274604 -NCIT:C27784 Metastatic Penile Carcinoma 7 274605 -NCIT:C170789 Locally Advanced Penile Carcinoma 8 274606 -NCIT:C170790 Advanced Penile Carcinoma 8 274607 -NCIT:C182111 Metastatic Squamous Cell Carcinoma of the Penis 8 274608 -NCIT:C27806 Metastatic Kidney Carcinoma 7 274609 -NCIT:C150595 Metastatic Renal Cell Carcinoma 8 274610 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 274611 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 274612 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 274613 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 274614 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 274615 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 274616 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 9 274617 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 274618 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 274619 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 9 274620 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 274621 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 274622 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 9 274623 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 274624 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 274625 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 274626 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 274627 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 274628 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 274629 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 274630 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 274631 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 274632 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 9 274633 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 274634 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 274635 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 9 274636 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 274637 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 274638 -NCIT:C157755 Metastatic Kidney Medullary Carcinoma 8 274639 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 274640 -NCIT:C163965 Metastatic Renal Pelvis Carcinoma 8 274641 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 274642 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 274643 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 274644 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 274645 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 274646 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 274647 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 274648 -NCIT:C172617 Advanced Kidney Carcinoma 8 274649 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 274650 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 274651 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 274652 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 274653 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 274654 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 274655 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 274656 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 274657 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 274658 -NCIT:C172618 Locally Advanced Kidney Carcinoma 8 274659 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 274660 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 274661 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 274662 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 274663 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 274664 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 274665 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 274666 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 274667 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 274668 -NCIT:C27818 Metastatic Ureter Carcinoma 7 274669 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 8 274670 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 274671 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 274672 -NCIT:C27819 Metastatic Urethral Carcinoma 7 274673 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 274674 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 274675 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 274676 -NCIT:C8946 Metastatic Prostate Carcinoma 7 274677 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 8 274678 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 9 274679 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 9 274680 -NCIT:C161609 Double-Negative Prostate Carcinoma 9 274681 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 9 274682 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 9 274683 -NCIT:C132881 Prostate Carcinoma Metastatic in the Soft Tissue 8 274684 -NCIT:C148536 Castration-Naive Prostate Carcinoma 8 274685 -NCIT:C153336 Castration-Sensitive Prostate Carcinoma 8 274686 -NCIT:C156284 Advanced Prostate Carcinoma 8 274687 -NCIT:C156286 Advanced Prostate Adenocarcinoma 9 274688 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 274689 -NCIT:C156285 Locally Advanced Prostate Carcinoma 8 274690 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 9 274691 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 274692 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 9 274693 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 274694 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 9 274695 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 8 274696 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 9 274697 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 9 274698 -NCIT:C161584 Prostate Carcinoma Metastatic in the Pelvic Cavity 8 274699 -NCIT:C161587 Prostate Carcinoma Metastatic in the Lymph Nodes 8 274700 -NCIT:C171265 Oligometastatic Prostate Carcinoma 8 274701 -NCIT:C36307 Prostate Carcinoma Metastatic in the Lung 8 274702 -NCIT:C36308 Prostate Carcinoma Metastatic in the Bone 8 274703 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 8 274704 -NCIT:C156286 Advanced Prostate Adenocarcinoma 9 274705 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 274706 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 9 274707 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 274708 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 274709 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 274710 -NCIT:C162254 Metastatic Malignant Female Reproductive System Neoplasm 6 274711 -NCIT:C153387 Metastatic Cervical Carcinoma 7 274712 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 8 274713 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 274714 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 274715 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 8 274716 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 274717 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 274718 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 274719 -NCIT:C153390 Metastatic Cervical Adenosquamous Carcinoma 8 274720 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 274721 -NCIT:C156294 Advanced Cervical Carcinoma 8 274722 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 274723 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 274724 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 274725 -NCIT:C156295 Locally Advanced Cervical Carcinoma 8 274726 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 274727 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 274728 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 9 274729 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 274730 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 274731 -NCIT:C156063 Metastatic Fallopian Tube Carcinoma 7 274732 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 8 274733 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 9 274734 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 8 274735 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 8 274736 -NCIT:C156064 Metastatic Ovarian Carcinoma 7 274737 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 8 274738 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 274739 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 274740 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 274741 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 9 274742 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 274743 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 274744 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 9 274745 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 274746 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 274747 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 274748 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 274749 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 274750 -NCIT:C165458 Advanced Ovarian Carcinoma 8 274751 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 274752 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 274753 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 274754 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 274755 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 274756 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 274757 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 274758 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 8 274759 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 274760 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 274761 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 274762 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 274763 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 8 274764 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 274765 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 8 274766 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 274767 -NCIT:C172234 Metastatic Ovarian Undifferentiated Carcinoma 8 274768 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 8 274769 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 274770 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 274771 -NCIT:C180333 Metastatic Microsatellite Stable Ovarian Carcinoma 8 274772 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 274773 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 8 274774 -NCIT:C27391 Metastatic Ovarian Small Cell Carcinoma, Hypercalcemic Type 8 274775 -NCIT:C156065 Metastatic Vaginal Carcinoma 7 274776 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 8 274777 -NCIT:C170788 Advanced Vaginal Carcinoma 8 274778 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 274779 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 274780 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 274781 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 274782 -NCIT:C181028 Metastatic Vaginal Adenosquamous Carcinoma 8 274783 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 274784 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 8 274785 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 274786 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 274787 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 8 274788 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 274789 -NCIT:C156066 Metastatic Vulvar Carcinoma 7 274790 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 8 274791 -NCIT:C170786 Advanced Vulvar Carcinoma 8 274792 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 8 274793 -NCIT:C156068 Metastatic Endometrial Carcinoma 7 274794 -NCIT:C159676 Advanced Endometrial Carcinoma 8 274795 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 274796 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 274797 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 274798 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 274799 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 8 274800 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 274801 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 274802 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 9 274803 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 8 274804 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 8 274805 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 274806 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 8 274807 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 9 274808 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 274809 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 274810 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 274811 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 274812 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 9 274813 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 274814 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 274815 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 274816 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 274817 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 9 274818 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 9 274819 -NCIT:C167260 Advanced Malignant Female Reproductive System Neoplasm 7 274820 -NCIT:C156294 Advanced Cervical Carcinoma 8 274821 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 274822 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 274823 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 274824 -NCIT:C165458 Advanced Ovarian Carcinoma 8 274825 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 274826 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 274827 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 274828 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 274829 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 274830 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 274831 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 274832 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 8 274833 -NCIT:C170786 Advanced Vulvar Carcinoma 8 274834 -NCIT:C170788 Advanced Vaginal Carcinoma 8 274835 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 274836 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 274837 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 274838 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 274839 -NCIT:C170930 Advanced Malignant Mixed Mesodermal (Mullerian) Tumor 8 274840 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 9 274841 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 9 274842 -NCIT:C172450 Advanced Uterine Corpus Cancer 8 274843 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 9 274844 -NCIT:C159676 Advanced Endometrial Carcinoma 9 274845 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 10 274846 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 11 274847 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 11 274848 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 10 274849 -NCIT:C170460 Locally Advanced Malignant Female Reproductive System Neoplasm 7 274850 -NCIT:C156295 Locally Advanced Cervical Carcinoma 8 274851 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 274852 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 274853 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 9 274854 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 274855 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 274856 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 8 274857 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 274858 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 274859 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 274860 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 274861 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 8 274862 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 9 274863 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 8 274864 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 274865 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 274866 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 9 274867 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 8 274868 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 8 274869 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 274870 -NCIT:C185381 Metastatic Mesonephric Adenocarcinoma 7 274871 -NCIT:C190009 Metastatic Uterine Corpus Sarcoma 7 274872 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 8 274873 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 9 274874 -NCIT:C176859 Advanced Malignant Genitourinary System Neoplasm 6 274875 -NCIT:C164143 Advanced Genitourinary System Carcinoma 7 274876 -NCIT:C148493 Advanced Urothelial Carcinoma 8 274877 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 274878 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 274879 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 274880 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 274881 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 274882 -NCIT:C156284 Advanced Prostate Carcinoma 8 274883 -NCIT:C156286 Advanced Prostate Adenocarcinoma 9 274884 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 274885 -NCIT:C156294 Advanced Cervical Carcinoma 8 274886 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 274887 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 274888 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 274889 -NCIT:C159676 Advanced Endometrial Carcinoma 8 274890 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 274891 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 274892 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 274893 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 274894 -NCIT:C165458 Advanced Ovarian Carcinoma 8 274895 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 274896 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 274897 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 274898 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 274899 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 274900 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 274901 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 274902 -NCIT:C167338 Advanced Bladder Carcinoma 8 274903 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 274904 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 8 274905 -NCIT:C170786 Advanced Vulvar Carcinoma 8 274906 -NCIT:C170788 Advanced Vaginal Carcinoma 8 274907 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 274908 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 274909 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 274910 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 274911 -NCIT:C170790 Advanced Penile Carcinoma 8 274912 -NCIT:C172617 Advanced Kidney Carcinoma 8 274913 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 274914 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 274915 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 274916 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 274917 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 274918 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 274919 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 274920 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 274921 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 274922 -NCIT:C167260 Advanced Malignant Female Reproductive System Neoplasm 7 274923 -NCIT:C156294 Advanced Cervical Carcinoma 8 274924 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 274925 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 274926 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 274927 -NCIT:C165458 Advanced Ovarian Carcinoma 8 274928 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 274929 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 274930 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 274931 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 274932 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 274933 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 274934 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 274935 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 8 274936 -NCIT:C170786 Advanced Vulvar Carcinoma 8 274937 -NCIT:C170788 Advanced Vaginal Carcinoma 8 274938 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 274939 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 274940 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 274941 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 274942 -NCIT:C170930 Advanced Malignant Mixed Mesodermal (Mullerian) Tumor 8 274943 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 9 274944 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 9 274945 -NCIT:C172450 Advanced Uterine Corpus Cancer 8 274946 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 9 274947 -NCIT:C159676 Advanced Endometrial Carcinoma 9 274948 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 10 274949 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 11 274950 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 11 274951 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 10 274952 -NCIT:C187316 Advanced Malignant Testicular Germ Cell Tumor 7 274953 -NCIT:C161583 Metastatic Malignant Neoplasm in the Pelvic Cavity 5 274954 -NCIT:C161584 Prostate Carcinoma Metastatic in the Pelvic Cavity 6 274955 -NCIT:C161649 Metastatic Malignant Neoplasm in the Seminal Vesicle 5 274956 -NCIT:C162255 Metastatic Malignant Digestive System Neoplasm 5 274957 -NCIT:C133839 Metastatic Digestive System Carcinoma 6 274958 -NCIT:C150577 Metastatic Gastroesophageal Junction Adenocarcinoma 7 274959 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 8 274960 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 8 274961 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 9 274962 -NCIT:C151904 Refractory Metastatic Digestive System Carcinoma 7 274963 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 8 274964 -NCIT:C151905 Recurrent Metastatic Digestive System Carcinoma 7 274965 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 8 274966 -NCIT:C153320 Metastatic Gastric Carcinoma 7 274967 -NCIT:C153319 Metastatic Gastric Adenocarcinoma 8 274968 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 9 274969 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 10 274970 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 10 274971 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 9 274972 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 10 274973 -NCIT:C165630 Metastatic Proximal Gastric Adenocarcinoma 9 274974 -NCIT:C166121 Oligometastatic Gastric Adenocarcinoma 9 274975 -NCIT:C166255 Advanced Gastric Adenocarcinoma 9 274976 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 10 274977 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 8 274978 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 274979 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 274980 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 274981 -NCIT:C162772 Locally Advanced Gastric Carcinoma 8 274982 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 9 274983 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 10 274984 -NCIT:C165299 Advanced Gastric Carcinoma 8 274985 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 274986 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 274987 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 274988 -NCIT:C166255 Advanced Gastric Adenocarcinoma 9 274989 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 10 274990 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 8 274991 -NCIT:C153358 Locally Advanced Digestive System Carcinoma 7 274992 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 8 274993 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 274994 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 274995 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 274996 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 8 274997 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 9 274998 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 8 274999 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 275000 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 275001 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 275002 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 275003 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 275004 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 275005 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 275006 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 275007 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 275008 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 275009 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 275010 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 275011 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 275012 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 275013 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 275014 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 275015 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 275016 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 275017 -NCIT:C162772 Locally Advanced Gastric Carcinoma 8 275018 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 9 275019 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 10 275020 -NCIT:C168976 Locally Advanced Esophageal Carcinoma 8 275021 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 9 275022 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 10 275023 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 9 275024 -NCIT:C168977 Locally Advanced Anal Carcinoma 8 275025 -NCIT:C170459 Locally Advanced Pancreatobiliary Carcinoma 8 275026 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 9 275027 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 10 275028 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 11 275029 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 275030 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 12 275031 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 11 275032 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 275033 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 10 275034 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 11 275035 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 9 275036 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 10 275037 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 11 275038 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 11 275039 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 9 275040 -NCIT:C171298 Locally Advanced Liver Carcinoma 8 275041 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 9 275042 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 275043 -NCIT:C154088 Metastatic Liver Carcinoma 7 275044 -NCIT:C154091 Metastatic Hepatocellular Carcinoma 8 275045 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 9 275046 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 10 275047 -NCIT:C167336 Advanced Hepatocellular Carcinoma 9 275048 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 10 275049 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 10 275050 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 9 275051 -NCIT:C171298 Locally Advanced Liver Carcinoma 8 275052 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 9 275053 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 275054 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 8 275055 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 275056 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 9 275057 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 7 275058 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 8 275059 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 275060 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 275061 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 275062 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 8 275063 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 275064 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 275065 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 275066 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 275067 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 275068 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 275069 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 275070 -NCIT:C156073 Metastatic Esophageal Carcinoma 7 275071 -NCIT:C156074 Metastatic Esophageal Adenocarcinoma 8 275072 -NCIT:C166120 Oligometastatic Esophageal Adenocarcinoma 9 275073 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 9 275074 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 9 275075 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 10 275076 -NCIT:C172249 Metastatic Distal Esophagus Adenocarcinoma 9 275077 -NCIT:C156075 Metastatic Esophageal Squamous Cell Carcinoma 8 275078 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 9 275079 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 9 275080 -NCIT:C160599 Advanced Esophageal Carcinoma 8 275081 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 9 275082 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 9 275083 -NCIT:C168976 Locally Advanced Esophageal Carcinoma 8 275084 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 9 275085 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 10 275086 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 9 275087 -NCIT:C156096 Metastatic Colorectal Carcinoma 7 275088 -NCIT:C142867 Metastatic Microsatellite Stable Colorectal Carcinoma 8 275089 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 275090 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 275091 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 275092 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 275093 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 275094 -NCIT:C153224 Colorectal Carcinoma Metastatic in the Lung 8 275095 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 9 275096 -NCIT:C156097 Metastatic Colon Carcinoma 8 275097 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 275098 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 275099 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 275100 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 275101 -NCIT:C167238 Advanced Colon Carcinoma 9 275102 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 275103 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 275104 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 275105 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 275106 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 275107 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 275108 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 275109 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 9 275110 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 9 275111 -NCIT:C156098 Metastatic Rectal Carcinoma 8 275112 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 9 275113 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 275114 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 275115 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 275116 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 275117 -NCIT:C170777 Advanced Rectal Carcinoma 9 275118 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 275119 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 275120 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 275121 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 275122 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 275123 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 275124 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 9 275125 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 275126 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 275127 -NCIT:C157366 Colorectal Carcinoma Metastatic in the Liver 8 275128 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 9 275129 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 9 275130 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 9 275131 -NCIT:C161048 Metastatic Colorectal Adenocarcinoma 8 275132 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 9 275133 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 275134 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 275135 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 275136 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 275137 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 275138 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 275139 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 275140 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 275141 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 9 275142 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 275143 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 275144 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 275145 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 275146 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 275147 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 275148 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 275149 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 275150 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 275151 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 275152 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 275153 -NCIT:C162475 Advanced Colorectal Carcinoma 8 275154 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 275155 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 275156 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 275157 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 275158 -NCIT:C167238 Advanced Colon Carcinoma 9 275159 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 275160 -NCIT:C170777 Advanced Rectal Carcinoma 9 275161 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 275162 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 275163 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 8 275164 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 275165 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 275166 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 275167 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 275168 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 275169 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 275170 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 275171 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 275172 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 275173 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 275174 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 275175 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 275176 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 275177 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 275178 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 275179 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 275180 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 275181 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 275182 -NCIT:C185165 Oligometastatic Colorectal Carcinoma 8 275183 -NCIT:C156746 Advanced Digestive System Carcinoma 7 275184 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 275185 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 275186 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 275187 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 8 275188 -NCIT:C160599 Advanced Esophageal Carcinoma 8 275189 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 9 275190 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 9 275191 -NCIT:C162475 Advanced Colorectal Carcinoma 8 275192 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 275193 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 275194 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 275195 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 275196 -NCIT:C167238 Advanced Colon Carcinoma 9 275197 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 275198 -NCIT:C170777 Advanced Rectal Carcinoma 9 275199 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 275200 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 275201 -NCIT:C165299 Advanced Gastric Carcinoma 8 275202 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 275203 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 275204 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 275205 -NCIT:C166255 Advanced Gastric Adenocarcinoma 9 275206 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 10 275207 -NCIT:C167336 Advanced Hepatocellular Carcinoma 8 275208 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 275209 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 275210 -NCIT:C170515 Advanced Anal Carcinoma 8 275211 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 275212 -NCIT:C171330 Advanced Pancreatobiliary Carcinoma 8 275213 -NCIT:C165452 Advanced Pancreatic Carcinoma 9 275214 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 10 275215 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 11 275216 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 9 275217 -NCIT:C171331 Advanced Biliary Tract Carcinoma 9 275218 -NCIT:C142870 Advanced Bile Duct Carcinoma 10 275219 -NCIT:C162752 Advanced Cholangiocarcinoma 11 275220 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 275221 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 275222 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 275223 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 11 275224 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 275225 -NCIT:C162755 Advanced Gallbladder Carcinoma 10 275226 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 275227 -NCIT:C162275 Metastatic Appendix Carcinoma 7 275228 -NCIT:C182104 Metastatic Appendix Adenocarcinoma 8 275229 -NCIT:C162274 Metastatic Appendix Mucinous Adenocarcinoma 9 275230 -NCIT:C182105 Advanced Appendix Adenocarcinoma 9 275231 -NCIT:C163967 Metastatic Digestive System Mixed Adenoneuroendocrine Carcinoma 7 275232 -NCIT:C170458 Metastatic Pancreatobiliary Carcinoma 7 275233 -NCIT:C156069 Metastatic Pancreatic Carcinoma 8 275234 -NCIT:C165452 Advanced Pancreatic Carcinoma 9 275235 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 10 275236 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 11 275237 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 9 275238 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 10 275239 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 11 275240 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 11 275241 -NCIT:C190770 Metastatic Pancreatic Adenosquamous Carcinoma 9 275242 -NCIT:C190771 Metastatic Pancreatic Squamous Cell Carcinoma 9 275243 -NCIT:C8933 Metastatic Pancreatic Adenocarcinoma 9 275244 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 10 275245 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 11 275246 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 11 275247 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 10 275248 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 11 275249 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 11 275250 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 11 275251 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 10 275252 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 11 275253 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 10 275254 -NCIT:C162751 Metastatic Biliary Tract Carcinoma 8 275255 -NCIT:C142869 Metastatic Bile Duct Carcinoma 9 275256 -NCIT:C142870 Advanced Bile Duct Carcinoma 10 275257 -NCIT:C162752 Advanced Cholangiocarcinoma 11 275258 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 275259 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 275260 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 275261 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 11 275262 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 275263 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 10 275264 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 11 275265 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 275266 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 12 275267 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 11 275268 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 275269 -NCIT:C157623 Metastatic Cholangiocarcinoma 10 275270 -NCIT:C162752 Advanced Cholangiocarcinoma 11 275271 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 275272 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 275273 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 275274 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 11 275275 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 275276 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 12 275277 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 11 275278 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 275279 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 11 275280 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 275281 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 275282 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 11 275283 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 275284 -NCIT:C185071 Metastatic Extrahepatic Bile Duct Carcinoma 10 275285 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 11 275286 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 12 275287 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 13 275288 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 275289 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 11 275290 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 275291 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 11 275292 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 275293 -NCIT:C162754 Metastatic Gallbladder Carcinoma 9 275294 -NCIT:C162755 Advanced Gallbladder Carcinoma 10 275295 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 10 275296 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 11 275297 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 9 275298 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 10 275299 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 11 275300 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 275301 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 12 275302 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 11 275303 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 275304 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 10 275305 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 11 275306 -NCIT:C171331 Advanced Biliary Tract Carcinoma 9 275307 -NCIT:C142870 Advanced Bile Duct Carcinoma 10 275308 -NCIT:C162752 Advanced Cholangiocarcinoma 11 275309 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 275310 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 275311 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 275312 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 11 275313 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 275314 -NCIT:C162755 Advanced Gallbladder Carcinoma 10 275315 -NCIT:C170459 Locally Advanced Pancreatobiliary Carcinoma 8 275316 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 9 275317 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 10 275318 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 11 275319 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 275320 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 12 275321 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 11 275322 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 275323 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 10 275324 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 11 275325 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 9 275326 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 10 275327 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 11 275328 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 11 275329 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 9 275330 -NCIT:C171326 Metastatic Ampulla of Vater Carcinoma 8 275331 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 9 275332 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 9 275333 -NCIT:C171330 Advanced Pancreatobiliary Carcinoma 8 275334 -NCIT:C165452 Advanced Pancreatic Carcinoma 9 275335 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 10 275336 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 11 275337 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 9 275338 -NCIT:C171331 Advanced Biliary Tract Carcinoma 9 275339 -NCIT:C142870 Advanced Bile Duct Carcinoma 10 275340 -NCIT:C162752 Advanced Cholangiocarcinoma 11 275341 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 275342 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 275343 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 275344 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 11 275345 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 275346 -NCIT:C162755 Advanced Gallbladder Carcinoma 10 275347 -NCIT:C170514 Metastatic Anal Carcinoma 7 275348 -NCIT:C168977 Locally Advanced Anal Carcinoma 8 275349 -NCIT:C169103 Metastatic Anal Squamous Cell Carcinoma 8 275350 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 9 275351 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 10 275352 -NCIT:C170515 Advanced Anal Carcinoma 8 275353 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 275354 -NCIT:C5612 Metastatic Anal Canal Carcinoma 8 275355 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 9 275356 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 10 275357 -NCIT:C8637 Metastatic Small Intestinal Carcinoma 7 275358 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 8 275359 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 275360 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 275361 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 275362 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 275363 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 275364 -NCIT:C8934 Metastatic Small Intestinal Adenocarcinoma 8 275365 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 275366 -NCIT:C156492 Metastatic Digestive System Neuroendocrine Neoplasm 6 275367 -NCIT:C115245 Metastatic Digestive System Neuroendocrine Tumor G1 7 275368 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 8 275369 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 275370 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 8 275371 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 8 275372 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 275373 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 7 275374 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 8 275375 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 275376 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 275377 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 275378 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 8 275379 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 275380 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 275381 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 275382 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 275383 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 275384 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 275385 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 275386 -NCIT:C158089 Advanced Digestive System Neuroendocrine Neoplasm 7 275387 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 275388 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 275389 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 275390 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 275391 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 275392 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 275393 -NCIT:C165448 Advanced Pancreatic Neuroendocrine Neoplasm 8 275394 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 9 275395 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 275396 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 10 275397 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 8 275398 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 275399 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 8 275400 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 275401 -NCIT:C165447 Metastatic Pancreatic Neuroendocrine Neoplasm 7 275402 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 8 275403 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 275404 -NCIT:C156488 Metastatic Pancreatic Neuroendocrine Tumor 8 275405 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 9 275406 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 275407 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 10 275408 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 9 275409 -NCIT:C190712 Metastatic Pancreatic Neuroendocrine Tumor G1 9 275410 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 275411 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 9 275412 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 10 275413 -NCIT:C165448 Advanced Pancreatic Neuroendocrine Neoplasm 8 275414 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 9 275415 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 275416 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 10 275417 -NCIT:C167329 Metastatic Midgut Neuroendocrine Tumor 7 275418 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 8 275419 -NCIT:C178271 Locally Advanced Digestive System Neuroendocrine Neoplasm 7 275420 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 275421 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 275422 -NCIT:C158090 Locally Advanced Unresectable Digestive System Neuroendocrine Neoplasm 8 275423 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 8 275424 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 8 275425 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 8 275426 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 8 275427 -NCIT:C179415 Metastatic Digestive System Neuroendocrine Tumor G2 7 275428 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 8 275429 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 8 275430 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 275431 -NCIT:C190714 Metastatic Pancreatic Neuroendocrine Tumor G2 8 275432 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 275433 -NCIT:C162780 Metastatic Malignant Colorectal Neoplasm 6 275434 -NCIT:C156096 Metastatic Colorectal Carcinoma 7 275435 -NCIT:C142867 Metastatic Microsatellite Stable Colorectal Carcinoma 8 275436 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 275437 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 275438 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 275439 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 275440 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 275441 -NCIT:C153224 Colorectal Carcinoma Metastatic in the Lung 8 275442 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 9 275443 -NCIT:C156097 Metastatic Colon Carcinoma 8 275444 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 275445 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 275446 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 275447 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 275448 -NCIT:C167238 Advanced Colon Carcinoma 9 275449 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 275450 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 275451 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 275452 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 275453 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 275454 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 275455 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 275456 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 9 275457 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 9 275458 -NCIT:C156098 Metastatic Rectal Carcinoma 8 275459 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 9 275460 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 275461 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 275462 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 275463 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 275464 -NCIT:C170777 Advanced Rectal Carcinoma 9 275465 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 275466 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 275467 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 275468 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 275469 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 275470 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 275471 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 9 275472 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 275473 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 275474 -NCIT:C157366 Colorectal Carcinoma Metastatic in the Liver 8 275475 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 9 275476 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 9 275477 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 9 275478 -NCIT:C161048 Metastatic Colorectal Adenocarcinoma 8 275479 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 9 275480 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 275481 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 275482 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 275483 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 275484 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 275485 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 275486 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 275487 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 275488 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 9 275489 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 275490 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 275491 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 275492 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 275493 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 275494 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 275495 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 275496 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 275497 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 275498 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 275499 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 275500 -NCIT:C162475 Advanced Colorectal Carcinoma 8 275501 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 275502 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 275503 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 275504 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 275505 -NCIT:C167238 Advanced Colon Carcinoma 9 275506 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 275507 -NCIT:C170777 Advanced Rectal Carcinoma 9 275508 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 275509 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 275510 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 8 275511 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 275512 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 275513 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 275514 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 275515 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 275516 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 275517 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 275518 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 275519 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 275520 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 275521 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 275522 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 275523 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 275524 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 275525 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 275526 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 275527 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 275528 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 275529 -NCIT:C185165 Oligometastatic Colorectal Carcinoma 8 275530 -NCIT:C175547 Advanced Malignant Digestive System Neoplasm 6 275531 -NCIT:C156746 Advanced Digestive System Carcinoma 7 275532 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 275533 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 275534 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 275535 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 8 275536 -NCIT:C160599 Advanced Esophageal Carcinoma 8 275537 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 9 275538 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 9 275539 -NCIT:C162475 Advanced Colorectal Carcinoma 8 275540 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 275541 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 275542 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 275543 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 275544 -NCIT:C167238 Advanced Colon Carcinoma 9 275545 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 275546 -NCIT:C170777 Advanced Rectal Carcinoma 9 275547 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 275548 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 275549 -NCIT:C165299 Advanced Gastric Carcinoma 8 275550 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 275551 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 275552 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 275553 -NCIT:C166255 Advanced Gastric Adenocarcinoma 9 275554 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 10 275555 -NCIT:C167336 Advanced Hepatocellular Carcinoma 8 275556 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 275557 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 275558 -NCIT:C170515 Advanced Anal Carcinoma 8 275559 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 275560 -NCIT:C171330 Advanced Pancreatobiliary Carcinoma 8 275561 -NCIT:C165452 Advanced Pancreatic Carcinoma 9 275562 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 10 275563 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 11 275564 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 9 275565 -NCIT:C171331 Advanced Biliary Tract Carcinoma 9 275566 -NCIT:C142870 Advanced Bile Duct Carcinoma 10 275567 -NCIT:C162752 Advanced Cholangiocarcinoma 11 275568 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 275569 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 275570 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 275571 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 11 275572 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 275573 -NCIT:C162755 Advanced Gallbladder Carcinoma 10 275574 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 275575 -NCIT:C158089 Advanced Digestive System Neuroendocrine Neoplasm 7 275576 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 275577 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 275578 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 275579 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 275580 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 275581 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 275582 -NCIT:C165448 Advanced Pancreatic Neuroendocrine Neoplasm 8 275583 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 9 275584 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 275585 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 10 275586 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 8 275587 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 275588 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 8 275589 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 275590 -NCIT:C176679 Advanced Malignant Small Intestinal Neoplasm 7 275591 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 275592 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 275593 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 275594 -NCIT:C176678 Metastatic Malignant Small Intestinal Neoplasm 6 275595 -NCIT:C176679 Advanced Malignant Small Intestinal Neoplasm 7 275596 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 275597 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 275598 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 275599 -NCIT:C8637 Metastatic Small Intestinal Carcinoma 7 275600 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 8 275601 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 275602 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 275603 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 275604 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 275605 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 275606 -NCIT:C8934 Metastatic Small Intestinal Adenocarcinoma 8 275607 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 275608 -NCIT:C179181 Locally Advanced Malignant Digestive System Neoplasm 6 275609 -NCIT:C153358 Locally Advanced Digestive System Carcinoma 7 275610 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 8 275611 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 275612 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 275613 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 275614 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 8 275615 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 9 275616 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 8 275617 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 275618 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 275619 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 275620 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 275621 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 275622 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 275623 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 275624 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 275625 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 275626 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 275627 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 275628 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 275629 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 275630 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 275631 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 275632 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 275633 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 275634 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 275635 -NCIT:C162772 Locally Advanced Gastric Carcinoma 8 275636 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 9 275637 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 10 275638 -NCIT:C168976 Locally Advanced Esophageal Carcinoma 8 275639 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 9 275640 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 10 275641 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 9 275642 -NCIT:C168977 Locally Advanced Anal Carcinoma 8 275643 -NCIT:C170459 Locally Advanced Pancreatobiliary Carcinoma 8 275644 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 9 275645 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 10 275646 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 11 275647 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 275648 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 12 275649 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 11 275650 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 275651 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 10 275652 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 11 275653 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 9 275654 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 10 275655 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 11 275656 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 11 275657 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 9 275658 -NCIT:C171298 Locally Advanced Liver Carcinoma 8 275659 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 9 275660 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 275661 -NCIT:C178271 Locally Advanced Digestive System Neuroendocrine Neoplasm 7 275662 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 275663 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 275664 -NCIT:C158090 Locally Advanced Unresectable Digestive System Neuroendocrine Neoplasm 8 275665 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 8 275666 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 8 275667 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 8 275668 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 8 275669 -NCIT:C162549 Metastatic Malignant Neoplasm in the Penis 5 275670 -NCIT:C162594 Metastatic Malignant Neoplasm in the Head and Neck 5 275671 -NCIT:C155786 Metastatic Malignant Neoplasm in the Sellar Region 6 275672 -NCIT:C6805 Metastatic Malignant Neoplasm in the Pituitary Gland 7 275673 -NCIT:C162595 Head and Neck Carcinoma of Unknown Primary 6 275674 -NCIT:C173585 Neck Carcinoma of Unknown Primary 7 275675 -NCIT:C7713 Neck Squamous Cell Carcinoma of Unknown Primary 8 275676 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 9 275677 -NCIT:C187051 Human Papillomavirus-Related Head and Neck Squamous Cell Carcinoma of Unknown Primary 7 275678 -NCIT:C190149 Human Papillomavirus-Negative Head and Neck Squamous Cell Carcinoma of Unknown Primary 7 275679 -NCIT:C8528 Metastatic Malignant Neoplasm in the Neck 6 275680 -NCIT:C173585 Neck Carcinoma of Unknown Primary 7 275681 -NCIT:C7713 Neck Squamous Cell Carcinoma of Unknown Primary 8 275682 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 9 275683 -NCIT:C6031 Metastatic Malignant Neoplasm in the Larynx 7 275684 -NCIT:C7509 Metastatic Malignant Neoplasm in the Thyroid Gland 7 275685 -NCIT:C7546 Metastatic Malignant Neoplasm in the Pharynx 7 275686 -NCIT:C6028 Metastatic Malignant Neoplasm in the Hypopharynx 8 275687 -NCIT:C6029 Metastatic Malignant Neoplasm in the Oropharynx 8 275688 -NCIT:C6030 Metastatic Malignant Neoplasm in the Nasopharynx 8 275689 -NCIT:C8557 Metastatic Malignant Neoplasm in the Parathyroid Glands 7 275690 -NCIT:C8542 Metastatic Malignant Neoplasm in the Lip 6 275691 -NCIT:C8556 Metastatic Malignant Neoplasm in the Orbit 6 275692 -NCIT:C165252 Metastatic Malignant Mesothelioma 5 275693 -NCIT:C168545 Metastatic Pleural Malignant Mesothelioma 6 275694 -NCIT:C175936 Locally Advanced Pleural Malignant Mesothelioma 7 275695 -NCIT:C8706 Advanced Pleural Malignant Mesothelioma 7 275696 -NCIT:C175935 Locally Advanced Malignant Mesothelioma 6 275697 -NCIT:C175936 Locally Advanced Pleural Malignant Mesothelioma 7 275698 -NCIT:C179462 Metastatic Peritoneal Malignant Mesothelioma 6 275699 -NCIT:C8704 Advanced Peritoneal Malignant Mesothelioma 7 275700 -NCIT:C7865 Advanced Malignant Mesothelioma 6 275701 -NCIT:C175937 Advanced Epithelioid Mesothelioma 7 275702 -NCIT:C8703 Advanced Pericardial Malignant Mesothelioma 7 275703 -NCIT:C8704 Advanced Peritoneal Malignant Mesothelioma 7 275704 -NCIT:C8706 Advanced Pleural Malignant Mesothelioma 7 275705 -NCIT:C166181 Metastatic Primary Malignant Central Nervous System Neoplasm 5 275706 -NCIT:C166182 Locally Advanced Primary Malignant Central Nervous System Neoplasm 6 275707 -NCIT:C180874 Locally Advanced Primary Malignant Brain Neoplasm 7 275708 -NCIT:C180876 Locally Advanced Glioma 7 275709 -NCIT:C170980 Locally Advanced Glioblastoma 8 275710 -NCIT:C170966 Advanced Primary Malignant Central Nervous System Neoplasm 6 275711 -NCIT:C170978 Advanced Glioblastoma 7 275712 -NCIT:C175549 Advanced Primary Malignant Brain Neoplasm 7 275713 -NCIT:C187213 Advanced Childhood Malignant Brain Neoplasm 8 275714 -NCIT:C173155 Metastatic Intracranial Malignant Neoplasm 6 275715 -NCIT:C175550 Metastatic Primary Malignant Brain Neoplasm 7 275716 -NCIT:C175549 Advanced Primary Malignant Brain Neoplasm 8 275717 -NCIT:C187213 Advanced Childhood Malignant Brain Neoplasm 9 275718 -NCIT:C177725 Metastatic Medulloblastoma 8 275719 -NCIT:C5399 Medulloblastoma with Leptomeningeal Spread 9 275720 -NCIT:C180874 Locally Advanced Primary Malignant Brain Neoplasm 8 275721 -NCIT:C187212 Metastatic Childhood Malignant Brain Neoplasm 8 275722 -NCIT:C187213 Advanced Childhood Malignant Brain Neoplasm 9 275723 -NCIT:C180877 Metastatic Glioma 6 275724 -NCIT:C170979 Metastatic Glioblastoma 7 275725 -NCIT:C170978 Advanced Glioblastoma 8 275726 -NCIT:C170980 Locally Advanced Glioblastoma 8 275727 -NCIT:C178558 Metastatic Low Grade Glioma 7 275728 -NCIT:C178559 Metastatic Low Grade Astrocytoma 8 275729 -NCIT:C180876 Locally Advanced Glioma 7 275730 -NCIT:C170980 Locally Advanced Glioblastoma 8 275731 -NCIT:C5274 Metastatic Meningioma 6 275732 -NCIT:C5400 Central Nervous System Embryonal Tumor, Not Otherwise Specified with Leptomeningeal Spread 6 275733 -NCIT:C168669 Metastatic Malignant Neoplasm in the Digestive System 5 275734 -NCIT:C168666 Gastrointestinal Carcinomatosis 6 275735 -NCIT:C4581 Metastatic Malignant Neoplasm in the Large Intestine 6 275736 -NCIT:C7426 Metastatic Malignant Neoplasm in the Rectum 7 275737 -NCIT:C188076 Metastatic Carcinoma in the Rectum 8 275738 -NCIT:C8411 Metastatic Malignant Neoplasm in the Colon 7 275739 -NCIT:C4758 Metastatic Malignant Neoplasm in the Liver 6 275740 -NCIT:C150130 Uveal Melanoma Metastatic in the Liver 7 275741 -NCIT:C185152 Extramedullary Disease in Plasma Cell Myeloma Involving the Liver 7 275742 -NCIT:C96767 Metastatic Carcinoma in the Liver 7 275743 -NCIT:C157366 Colorectal Carcinoma Metastatic in the Liver 8 275744 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 9 275745 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 9 275746 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 9 275747 -NCIT:C36302 Breast Carcinoma Metastatic in the Liver 8 275748 -NCIT:C36306 Lung Carcinoma Metastatic in the Liver 8 275749 -NCIT:C7460 Metastatic Malignant Neoplasm in the Anus 6 275750 -NCIT:C7479 Metastatic Malignant Neoplasm in the Esophagus 6 275751 -NCIT:C7482 Metastatic Malignant Neoplasm in the Gallbladder 6 275752 -NCIT:C7524 Metastatic Malignant Neoplasm in the Small Intestine 6 275753 -NCIT:C8543 Metastatic Malignant Neoplasm in the Pancreas 6 275754 -NCIT:C188077 Metastatic Carcinoma in the Pancreas 7 275755 -NCIT:C95903 Metastatic Malignant Neoplasm in the Stomach 6 275756 -NCIT:C96953 Metastatic Malignant Neoplasm in the Extrahepatic Bile Ducts 6 275757 -NCIT:C170467 Metastatic Malignant Head and Neck Neoplasm 5 275758 -NCIT:C126465 Metastatic Head and Neck Carcinoma 6 275759 -NCIT:C129861 Advanced Head and Neck Carcinoma 7 275760 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 8 275761 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 275762 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 275763 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 275764 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 275765 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 275766 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 275767 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 275768 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 8 275769 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 275770 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 275771 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 275772 -NCIT:C170784 Advanced Pharyngeal Carcinoma 8 275773 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 9 275774 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 275775 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 275776 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 275777 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 275778 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 275779 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 9 275780 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 275781 -NCIT:C177723 Advanced Salivary Gland Carcinoma 8 275782 -NCIT:C133193 Metastatic Thyroid Gland Carcinoma 7 275783 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 8 275784 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 275785 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 275786 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 8 275787 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 275788 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 275789 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 275790 -NCIT:C170831 Metastatic Thyroid Gland Anaplastic Carcinoma 8 275791 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 275792 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 275793 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 8 275794 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 275795 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 9 275796 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 275797 -NCIT:C173979 Metastatic Differentiated Thyroid Gland Carcinoma 8 275798 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 9 275799 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 10 275800 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 11 275801 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 9 275802 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 275803 -NCIT:C174046 Metastatic Poorly Differentiated Thyroid Gland Carcinoma 8 275804 -NCIT:C148153 Metastatic Head and Neck Squamous Cell Carcinoma 7 275805 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 8 275806 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 275807 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 275808 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 275809 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 275810 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 275811 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 275812 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 275813 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 275814 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 275815 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 275816 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 8 275817 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 275818 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 275819 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 275820 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 8 275821 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 275822 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 275823 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 275824 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 275825 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 275826 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 275827 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 275828 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 275829 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 275830 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 275831 -NCIT:C162882 Metastatic Sinonasal Squamous Cell Carcinoma 8 275832 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 275833 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 275834 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 275835 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 9 275836 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 275837 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 9 275838 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 275839 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 275840 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 275841 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 275842 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 8 275843 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 8 275844 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 275845 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 275846 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 275847 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 275848 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 275849 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 275850 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 275851 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 275852 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 275853 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 275854 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 275855 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 275856 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 275857 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 275858 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 275859 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 275860 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 275861 -NCIT:C153213 Locally Advanced Head and Neck Carcinoma 7 275862 -NCIT:C158464 Locally Advanced Salivary Gland Carcinoma 8 275863 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 8 275864 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 275865 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 275866 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 275867 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 275868 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 275869 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 275870 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 275871 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 275872 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 275873 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 275874 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 275875 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 8 275876 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 275877 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 8 275878 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 275879 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 9 275880 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 275881 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 275882 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 9 275883 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 275884 -NCIT:C165562 Locally Advanced Lip and Oral Cavity Carcinoma 8 275885 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 9 275886 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 10 275887 -NCIT:C165563 Locally Advanced Paranasal Sinus Carcinoma 8 275888 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 275889 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 8 275890 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 275891 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 9 275892 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 275893 -NCIT:C156080 Metastatic Pharyngeal Carcinoma 7 275894 -NCIT:C156079 Metastatic Nasopharyngeal Carcinoma 8 275895 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 275896 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 275897 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 275898 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 275899 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 275900 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 275901 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 9 275902 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 275903 -NCIT:C156081 Metastatic Hypopharyngeal Carcinoma 8 275904 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 275905 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 275906 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 275907 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 9 275908 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 275909 -NCIT:C156082 Metastatic Oropharyngeal Carcinoma 8 275910 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 275911 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 275912 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 275913 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 275914 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 9 275915 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 275916 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 275917 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 9 275918 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 275919 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 8 275920 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 275921 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 9 275922 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 275923 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 275924 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 9 275925 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 275926 -NCIT:C170784 Advanced Pharyngeal Carcinoma 8 275927 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 9 275928 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 275929 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 275930 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 275931 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 275932 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 275933 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 9 275934 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 275935 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 8 275936 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 275937 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 275938 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 275939 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 275940 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 275941 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 275942 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 275943 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 275944 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 275945 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 275946 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 275947 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 275948 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 275949 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 275950 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 275951 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 275952 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 275953 -NCIT:C156085 Metastatic Laryngeal Carcinoma 7 275954 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 8 275955 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 275956 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 275957 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 8 275958 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 275959 -NCIT:C156086 Metastatic Lip and Oral Cavity Carcinoma 7 275960 -NCIT:C156087 Metastatic Oral Cavity Carcinoma 8 275961 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 9 275962 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 10 275963 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 10 275964 -NCIT:C156089 Metastatic Oral Cavity Adenoid Cystic Carcinoma 9 275965 -NCIT:C156090 Metastatic Oral Cavity Mucoepidermoid Carcinoma 9 275966 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 9 275967 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 10 275968 -NCIT:C156088 Metastatic Lip Carcinoma 8 275969 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 9 275970 -NCIT:C165562 Locally Advanced Lip and Oral Cavity Carcinoma 8 275971 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 9 275972 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 10 275973 -NCIT:C158463 Metastatic Salivary Gland Carcinoma 7 275974 -NCIT:C158464 Locally Advanced Salivary Gland Carcinoma 8 275975 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 8 275976 -NCIT:C177723 Advanced Salivary Gland Carcinoma 8 275977 -NCIT:C5899 Stage IV Major Salivary Gland Carcinoma with Metastasis 8 275978 -NCIT:C9044 Metastatic Parathyroid Gland Carcinoma 7 275979 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 275980 -NCIT:C170469 Advanced Malignant Head and Neck Neoplasm 6 275981 -NCIT:C129861 Advanced Head and Neck Carcinoma 7 275982 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 8 275983 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 275984 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 275985 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 275986 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 275987 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 275988 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 275989 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 275990 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 8 275991 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 275992 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 275993 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 275994 -NCIT:C170784 Advanced Pharyngeal Carcinoma 8 275995 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 9 275996 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 275997 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 275998 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 275999 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 276000 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 276001 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 9 276002 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 276003 -NCIT:C177723 Advanced Salivary Gland Carcinoma 8 276004 -NCIT:C170470 Locally Advanced Malignant Head and Neck Neoplasm 6 276005 -NCIT:C153213 Locally Advanced Head and Neck Carcinoma 7 276006 -NCIT:C158464 Locally Advanced Salivary Gland Carcinoma 8 276007 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 8 276008 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 276009 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 276010 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 276011 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 276012 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 276013 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 276014 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 276015 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 276016 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 276017 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 276018 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 276019 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 8 276020 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 276021 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 8 276022 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 276023 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 9 276024 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 276025 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 276026 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 9 276027 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 276028 -NCIT:C165562 Locally Advanced Lip and Oral Cavity Carcinoma 8 276029 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 9 276030 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 10 276031 -NCIT:C165563 Locally Advanced Paranasal Sinus Carcinoma 8 276032 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 276033 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 8 276034 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 276035 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 9 276036 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 276037 -NCIT:C3574 Metastatic Carotid Body Paraganglioma 6 276038 -NCIT:C4623 Metastatic Jugulotympanic Paraganglioma 6 276039 -NCIT:C170728 Metastatic Malignant Breast Neoplasm 5 276040 -NCIT:C153238 Metastatic Breast Carcinoma 6 276041 -NCIT:C133501 Breast Carcinoma Metastatic in the Central Nervous System 7 276042 -NCIT:C36301 Breast Carcinoma Metastatic in the Brain 8 276043 -NCIT:C153227 Breast Carcinoma Metastatic in the Lymph Nodes 7 276044 -NCIT:C160920 Locally Advanced Breast Carcinoma 7 276045 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 8 276046 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 276047 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 276048 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 276049 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 276050 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 8 276051 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 276052 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 276053 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 276054 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 276055 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 276056 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 276057 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 276058 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 276059 -NCIT:C161830 Metastatic BRCA-Associated Breast Carcinoma 7 276060 -NCIT:C162648 Advanced Breast Carcinoma 7 276061 -NCIT:C165700 Advanced Breast Adenocarcinoma 8 276062 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 276063 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 276064 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 276065 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 276066 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 276067 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 276068 -NCIT:C165698 Metastatic Breast Adenocarcinoma 7 276069 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 8 276070 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 276071 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 276072 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 276073 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 276074 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 276075 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 276076 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 276077 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 276078 -NCIT:C165700 Advanced Breast Adenocarcinoma 8 276079 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 276080 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 276081 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 276082 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 276083 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 276084 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 276085 -NCIT:C168777 Metastatic HER2-Negative Breast Carcinoma 8 276086 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 276087 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 276088 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 276089 -NCIT:C179554 Metastatic HER2-Low Breast Carcinoma 8 276090 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 276091 -NCIT:C180924 Metastatic HER2-Positive Breast Carcinoma 8 276092 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 276093 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 276094 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 276095 -NCIT:C181787 Metastatic Breast Inflammatory Carcinoma 8 276096 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 9 276097 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 9 276098 -NCIT:C9246 Stage IIIB Breast Inflammatory Carcinoma 9 276099 -NCIT:C185880 Metastatic Hormone Receptor-Positive Breast Carcinoma 8 276100 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 276101 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 276102 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 276103 -NCIT:C190852 Metastatic Androgen Receptor-Positive Breast Carcinoma 9 276104 -NCIT:C190856 Metastatic Estrogen Receptor-Positive Breast Carcinoma 9 276105 -NCIT:C190677 Metastatic Hormone Receptor-Negative Breast Carcinoma 8 276106 -NCIT:C153348 Metastatic Triple-Negative Breast Carcinoma 9 276107 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 276108 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 10 276109 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 11 276110 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 10 276111 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 276112 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 276113 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 8 276114 -NCIT:C76326 Metastatic Breast Ductal Carcinoma 8 276115 -NCIT:C76328 Metastatic Breast Lobular Carcinoma 8 276116 -NCIT:C179515 Oligometastatic Breast Carcinoma 7 276117 -NCIT:C28311 Metastatic Breast Carcinoma in the Skin 7 276118 -NCIT:C36300 Breast Carcinoma Metastatic in the Lung 7 276119 -NCIT:C36302 Breast Carcinoma Metastatic in the Liver 7 276120 -NCIT:C36303 Breast Carcinoma Metastatic in the Bone 7 276121 -NCIT:C153226 Breast Carcinoma Metastatic in the Spine 8 276122 -NCIT:C5178 Metastatic Breast Squamous Cell Carcinoma 7 276123 -NCIT:C156493 Metastatic Breast Neuroendocrine Neoplasm 6 276124 -NCIT:C5171 Metastatic Breast Neuroendocrine Tumor G1 7 276125 -NCIT:C170811 Metastatic Malignant Skin Neoplasm 5 276126 -NCIT:C143013 Metastatic Skin Squamous Cell Carcinoma 6 276127 -NCIT:C153182 Locally Advanced Skin Squamous Cell Carcinoma 7 276128 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 276129 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 7 276130 -NCIT:C168542 Advanced Skin Squamous Cell Carcinoma 7 276131 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 276132 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 7 276133 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 276134 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 276135 -NCIT:C156072 Metastatic Cutaneous Melanoma 6 276136 -NCIT:C171285 Locally Advanced Cutaneous Melanoma 7 276137 -NCIT:C171572 Advanced Cutaneous Melanoma 7 276138 -NCIT:C155311 Advanced Cutaneous Melanoma of the Extremity 8 276139 -NCIT:C179427 Metastatic Acral Lentiginous Melanoma 7 276140 -NCIT:C162572 Metastatic Merkel Cell Carcinoma 6 276141 -NCIT:C165300 Advanced Merkel Cell Carcinoma 7 276142 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 7 276143 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 7 276144 -NCIT:C170812 Advanced Malignant Skin Neoplasm 6 276145 -NCIT:C165300 Advanced Merkel Cell Carcinoma 7 276146 -NCIT:C168542 Advanced Skin Squamous Cell Carcinoma 7 276147 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 276148 -NCIT:C171572 Advanced Cutaneous Melanoma 7 276149 -NCIT:C155311 Advanced Cutaneous Melanoma of the Extremity 8 276150 -NCIT:C172442 Advanced Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 7 276151 -NCIT:C171284 Locally Advanced Malignant Skin Neoplasm 6 276152 -NCIT:C153182 Locally Advanced Skin Squamous Cell Carcinoma 7 276153 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 276154 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 7 276155 -NCIT:C171285 Locally Advanced Cutaneous Melanoma 7 276156 -NCIT:C180374 Early Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 7 276157 -NCIT:C170828 Metastatic Rhabdoid Tumor 5 276158 -NCIT:C174568 Advanced Rhabdoid Tumor 6 276159 -NCIT:C170924 Metastatic Carcinosarcoma 5 276160 -NCIT:C170928 Advanced Carcinosarcoma 6 276161 -NCIT:C170930 Advanced Malignant Mixed Mesodermal (Mullerian) Tumor 7 276162 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 8 276163 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 8 276164 -NCIT:C170929 Metastatic Malignant Mixed Mesodermal (Mullerian) Tumor 6 276165 -NCIT:C170930 Advanced Malignant Mixed Mesodermal (Mullerian) Tumor 7 276166 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 8 276167 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 8 276168 -NCIT:C170931 Metastatic Uterine Corpus Carcinosarcoma 7 276169 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 8 276170 -NCIT:C170933 Metastatic Ovarian Carcinosarcoma 7 276171 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 8 276172 -NCIT:C170943 Metastatic Malignant Neoplasm in the Urinary System 5 276173 -NCIT:C7544 Metastatic Malignant Neoplasm in the Ureter 6 276174 -NCIT:C7549 Metastatic Malignant Neoplasm in the Kidney 6 276175 -NCIT:C185153 Extramedullary Disease in Plasma Cell Myeloma Involving the Kidney 7 276176 -NCIT:C7573 Metastatic Malignant Neoplasm in the Urethra 6 276177 -NCIT:C7650 Metastatic Malignant Neoplasm in the Bladder 6 276178 -NCIT:C175662 Metastatic Malignant Glomus Tumor 5 276179 -NCIT:C175663 Locally Advanced Malignant Glomus Tumor 6 276180 -NCIT:C176862 Metastatic Malignant Thoracic Neoplasm 5 276181 -NCIT:C148128 Metastatic Thymic Carcinoma 6 276182 -NCIT:C148126 Locally Advanced Thymic Carcinoma 7 276183 -NCIT:C159903 Advanced Thymic Carcinoma 7 276184 -NCIT:C153202 Metastatic Lung Carcinoma 6 276185 -NCIT:C133503 Lung Carcinoma Metastatic in the Central Nervous System 7 276186 -NCIT:C36304 Lung Carcinoma Metastatic in the Brain 8 276187 -NCIT:C153203 Advanced Lung Carcinoma 7 276188 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 276189 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 8 276190 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 276191 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 276192 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 276193 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 276194 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 276195 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 276196 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 276197 -NCIT:C180922 Advanced Bronchogenic Carcinoma 8 276198 -NCIT:C153206 Locally Advanced Lung Carcinoma 7 276199 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 8 276200 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 276201 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 276202 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 276203 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 276204 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 276205 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 276206 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 276207 -NCIT:C156092 Metastatic Lung Squamous Cell Carcinoma 7 276208 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 276209 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 276210 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 276211 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 276212 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 276213 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 276214 -NCIT:C156094 Metastatic Lung Non-Small Cell Carcinoma 7 276215 -NCIT:C128798 Metastatic Lung Non-Squamous Non-Small Cell Carcinoma 8 276216 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 276217 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 276218 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 276219 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 276220 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 276221 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 276222 -NCIT:C155908 Metastatic Lung Adenocarcinoma 9 276223 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 276224 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 276225 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 9 276226 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 276227 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 276228 -NCIT:C156093 Metastatic Lung Adenosquamous Carcinoma 8 276229 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 276230 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 276231 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 276232 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 276233 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 276234 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 276235 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 8 276236 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 276237 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 276238 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 276239 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 276240 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 276241 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 276242 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 8 276243 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 276244 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 276245 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 276246 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 276247 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 276248 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 7 276249 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 276250 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 276251 -NCIT:C187195 Oligometastatic Lung Carcinoma 7 276252 -NCIT:C36305 Lung Carcinoma Metastatic in the Bone 7 276253 -NCIT:C36306 Lung Carcinoma Metastatic in the Liver 7 276254 -NCIT:C176863 Advanced Malignant Thoracic Neoplasm 6 276255 -NCIT:C153203 Advanced Lung Carcinoma 7 276256 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 276257 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 8 276258 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 276259 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 276260 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 276261 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 276262 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 276263 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 276264 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 276265 -NCIT:C180922 Advanced Bronchogenic Carcinoma 8 276266 -NCIT:C159903 Advanced Thymic Carcinoma 7 276267 -NCIT:C165446 Advanced Lung Neuroendocrine Neoplasm 7 276268 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 276269 -NCIT:C177245 Advanced Lung Carcinoid Tumor 8 276270 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 276271 -NCIT:C8703 Advanced Pericardial Malignant Mesothelioma 7 276272 -NCIT:C8706 Advanced Pleural Malignant Mesothelioma 7 276273 -NCIT:C6413 Metastatic Intrathoracic Paravertebral Paraganglioma 6 276274 -NCIT:C183304 Metastatic Malignant Abdominal Neoplasm 5 276275 -NCIT:C183305 Advanced Malignant Abdominal Neoplasm 6 276276 -NCIT:C27292 Metastatic Ewing Sarcoma/Peripheral Primitive Neuroectodermal Tumor 5 276277 -NCIT:C36074 Metastatic Peripheral Primitive Neuroectodermal Tumor of Bone 6 276278 -NCIT:C7807 Metastatic Ewing Sarcoma 6 276279 -NCIT:C164080 Locally Advanced Ewing Sarcoma 7 276280 -NCIT:C6621 Metastatic Bone Ewing Sarcoma 7 276281 -NCIT:C8801 Metastatic Extraskeletal Ewing Sarcoma 7 276282 -NCIT:C27470 Disseminated Malignant Neoplasm 5 276283 -NCIT:C27469 Disseminated Carcinoma 6 276284 -NCIT:C27185 Disseminated Adenocarcinoma 7 276285 -NCIT:C4829 Disseminated Squamous Cell Carcinoma 7 276286 -NCIT:C3482 Metastatic Carcinoma 5 276287 -NCIT:C126465 Metastatic Head and Neck Carcinoma 6 276288 -NCIT:C129861 Advanced Head and Neck Carcinoma 7 276289 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 8 276290 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 276291 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 276292 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 276293 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 276294 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 276295 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 276296 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 276297 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 8 276298 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 276299 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 276300 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 276301 -NCIT:C170784 Advanced Pharyngeal Carcinoma 8 276302 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 9 276303 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 276304 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 276305 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 276306 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 276307 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 276308 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 9 276309 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 276310 -NCIT:C177723 Advanced Salivary Gland Carcinoma 8 276311 -NCIT:C133193 Metastatic Thyroid Gland Carcinoma 7 276312 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 8 276313 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 276314 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 276315 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 8 276316 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 276317 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 276318 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 276319 -NCIT:C170831 Metastatic Thyroid Gland Anaplastic Carcinoma 8 276320 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 276321 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 276322 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 8 276323 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 276324 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 9 276325 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 276326 -NCIT:C173979 Metastatic Differentiated Thyroid Gland Carcinoma 8 276327 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 9 276328 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 10 276329 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 11 276330 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 9 276331 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 276332 -NCIT:C174046 Metastatic Poorly Differentiated Thyroid Gland Carcinoma 8 276333 -NCIT:C148153 Metastatic Head and Neck Squamous Cell Carcinoma 7 276334 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 8 276335 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 276336 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 276337 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 276338 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 276339 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 276340 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 276341 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 276342 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 276343 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 276344 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 276345 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 8 276346 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 276347 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 276348 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 276349 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 8 276350 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 276351 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 276352 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 276353 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 276354 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 276355 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 276356 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 276357 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 276358 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 276359 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 276360 -NCIT:C162882 Metastatic Sinonasal Squamous Cell Carcinoma 8 276361 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 276362 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 276363 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 276364 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 9 276365 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 276366 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 9 276367 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 276368 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 276369 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 276370 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 276371 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 8 276372 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 8 276373 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 276374 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 276375 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 276376 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 276377 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 276378 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 276379 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 276380 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 276381 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 276382 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 276383 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 276384 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 276385 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 276386 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 276387 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 276388 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 276389 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 276390 -NCIT:C153213 Locally Advanced Head and Neck Carcinoma 7 276391 -NCIT:C158464 Locally Advanced Salivary Gland Carcinoma 8 276392 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 8 276393 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 276394 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 276395 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 276396 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 276397 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 276398 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 276399 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 276400 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 276401 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 276402 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 276403 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 276404 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 8 276405 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 276406 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 8 276407 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 276408 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 9 276409 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 276410 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 276411 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 9 276412 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 276413 -NCIT:C165562 Locally Advanced Lip and Oral Cavity Carcinoma 8 276414 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 9 276415 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 10 276416 -NCIT:C165563 Locally Advanced Paranasal Sinus Carcinoma 8 276417 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 276418 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 8 276419 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 276420 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 9 276421 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 276422 -NCIT:C156080 Metastatic Pharyngeal Carcinoma 7 276423 -NCIT:C156079 Metastatic Nasopharyngeal Carcinoma 8 276424 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 276425 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 276426 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 276427 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 276428 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 276429 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 276430 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 9 276431 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 276432 -NCIT:C156081 Metastatic Hypopharyngeal Carcinoma 8 276433 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 276434 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 276435 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 276436 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 9 276437 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 276438 -NCIT:C156082 Metastatic Oropharyngeal Carcinoma 8 276439 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 276440 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 276441 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 276442 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 276443 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 9 276444 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 276445 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 276446 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 9 276447 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 276448 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 8 276449 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 276450 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 9 276451 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 276452 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 276453 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 9 276454 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 276455 -NCIT:C170784 Advanced Pharyngeal Carcinoma 8 276456 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 9 276457 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 276458 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 276459 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 276460 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 276461 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 276462 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 9 276463 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 276464 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 8 276465 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 276466 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 276467 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 276468 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 276469 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 276470 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 276471 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 276472 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 276473 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 276474 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 276475 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 276476 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 276477 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 276478 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 276479 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 276480 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 276481 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 276482 -NCIT:C156085 Metastatic Laryngeal Carcinoma 7 276483 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 8 276484 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 276485 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 276486 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 8 276487 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 276488 -NCIT:C156086 Metastatic Lip and Oral Cavity Carcinoma 7 276489 -NCIT:C156087 Metastatic Oral Cavity Carcinoma 8 276490 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 9 276491 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 10 276492 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 10 276493 -NCIT:C156089 Metastatic Oral Cavity Adenoid Cystic Carcinoma 9 276494 -NCIT:C156090 Metastatic Oral Cavity Mucoepidermoid Carcinoma 9 276495 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 9 276496 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 10 276497 -NCIT:C156088 Metastatic Lip Carcinoma 8 276498 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 9 276499 -NCIT:C165562 Locally Advanced Lip and Oral Cavity Carcinoma 8 276500 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 9 276501 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 10 276502 -NCIT:C158463 Metastatic Salivary Gland Carcinoma 7 276503 -NCIT:C158464 Locally Advanced Salivary Gland Carcinoma 8 276504 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 8 276505 -NCIT:C177723 Advanced Salivary Gland Carcinoma 8 276506 -NCIT:C5899 Stage IV Major Salivary Gland Carcinoma with Metastasis 8 276507 -NCIT:C9044 Metastatic Parathyroid Gland Carcinoma 7 276508 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 276509 -NCIT:C129828 Metastatic Transitional Cell Carcinoma 6 276510 -NCIT:C126109 Metastatic Urothelial Carcinoma 7 276511 -NCIT:C148493 Advanced Urothelial Carcinoma 8 276512 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 276513 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 276514 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 276515 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 276516 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 276517 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 276518 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 276519 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 276520 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 276521 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 276522 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 276523 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 276524 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 276525 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 276526 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 276527 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 276528 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 276529 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 276530 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 276531 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 8 276532 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 276533 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 276534 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 276535 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 276536 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 276537 -NCIT:C191692 Metastatic Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 276538 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 276539 -NCIT:C191693 Metastatic Giant Cell Urothelial Carcinoma 8 276540 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 276541 -NCIT:C191694 Metastatic Lipid-Rich Urothelial Carcinoma 8 276542 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 276543 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 8 276544 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 276545 -NCIT:C191696 Metastatic Nested Urothelial Carcinoma 8 276546 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 276547 -NCIT:C191697 Metastatic Plasmacytoid Urothelial Carcinoma 8 276548 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 276549 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 8 276550 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 276551 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 8 276552 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 276553 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 276554 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 276555 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 9 276556 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 276557 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 276558 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 276559 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 276560 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 276561 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 276562 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 276563 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 276564 -NCIT:C172091 Advanced Transitional Cell Carcinoma 7 276565 -NCIT:C148493 Advanced Urothelial Carcinoma 8 276566 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 276567 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 276568 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 276569 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 276570 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 276571 -NCIT:C175493 Locally Advanced Transitional Cell Carcinoma 7 276572 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 8 276573 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 276574 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 276575 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 276576 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 276577 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 276578 -NCIT:C133839 Metastatic Digestive System Carcinoma 6 276579 -NCIT:C150577 Metastatic Gastroesophageal Junction Adenocarcinoma 7 276580 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 8 276581 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 8 276582 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 9 276583 -NCIT:C151904 Refractory Metastatic Digestive System Carcinoma 7 276584 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 8 276585 -NCIT:C151905 Recurrent Metastatic Digestive System Carcinoma 7 276586 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 8 276587 -NCIT:C153320 Metastatic Gastric Carcinoma 7 276588 -NCIT:C153319 Metastatic Gastric Adenocarcinoma 8 276589 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 9 276590 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 10 276591 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 10 276592 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 9 276593 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 10 276594 -NCIT:C165630 Metastatic Proximal Gastric Adenocarcinoma 9 276595 -NCIT:C166121 Oligometastatic Gastric Adenocarcinoma 9 276596 -NCIT:C166255 Advanced Gastric Adenocarcinoma 9 276597 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 10 276598 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 8 276599 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 276600 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 276601 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 276602 -NCIT:C162772 Locally Advanced Gastric Carcinoma 8 276603 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 9 276604 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 10 276605 -NCIT:C165299 Advanced Gastric Carcinoma 8 276606 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 276607 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 276608 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 276609 -NCIT:C166255 Advanced Gastric Adenocarcinoma 9 276610 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 10 276611 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 8 276612 -NCIT:C153358 Locally Advanced Digestive System Carcinoma 7 276613 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 8 276614 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 276615 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 276616 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 276617 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 8 276618 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 9 276619 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 8 276620 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 276621 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 276622 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 276623 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 276624 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 276625 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 276626 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 276627 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 276628 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 276629 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 276630 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 276631 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 276632 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 276633 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 276634 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 276635 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 276636 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 276637 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 276638 -NCIT:C162772 Locally Advanced Gastric Carcinoma 8 276639 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 9 276640 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 10 276641 -NCIT:C168976 Locally Advanced Esophageal Carcinoma 8 276642 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 9 276643 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 10 276644 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 9 276645 -NCIT:C168977 Locally Advanced Anal Carcinoma 8 276646 -NCIT:C170459 Locally Advanced Pancreatobiliary Carcinoma 8 276647 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 9 276648 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 10 276649 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 11 276650 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 276651 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 12 276652 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 11 276653 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 276654 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 10 276655 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 11 276656 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 9 276657 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 10 276658 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 11 276659 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 11 276660 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 9 276661 -NCIT:C171298 Locally Advanced Liver Carcinoma 8 276662 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 9 276663 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 276664 -NCIT:C154088 Metastatic Liver Carcinoma 7 276665 -NCIT:C154091 Metastatic Hepatocellular Carcinoma 8 276666 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 9 276667 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 10 276668 -NCIT:C167336 Advanced Hepatocellular Carcinoma 9 276669 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 10 276670 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 10 276671 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 9 276672 -NCIT:C171298 Locally Advanced Liver Carcinoma 8 276673 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 9 276674 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 276675 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 8 276676 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 276677 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 9 276678 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 7 276679 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 8 276680 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 276681 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 276682 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 276683 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 8 276684 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 276685 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 276686 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 276687 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 276688 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 276689 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 276690 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 276691 -NCIT:C156073 Metastatic Esophageal Carcinoma 7 276692 -NCIT:C156074 Metastatic Esophageal Adenocarcinoma 8 276693 -NCIT:C166120 Oligometastatic Esophageal Adenocarcinoma 9 276694 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 9 276695 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 9 276696 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 10 276697 -NCIT:C172249 Metastatic Distal Esophagus Adenocarcinoma 9 276698 -NCIT:C156075 Metastatic Esophageal Squamous Cell Carcinoma 8 276699 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 9 276700 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 9 276701 -NCIT:C160599 Advanced Esophageal Carcinoma 8 276702 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 9 276703 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 9 276704 -NCIT:C168976 Locally Advanced Esophageal Carcinoma 8 276705 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 9 276706 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 10 276707 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 9 276708 -NCIT:C156096 Metastatic Colorectal Carcinoma 7 276709 -NCIT:C142867 Metastatic Microsatellite Stable Colorectal Carcinoma 8 276710 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 276711 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 276712 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 276713 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 276714 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 276715 -NCIT:C153224 Colorectal Carcinoma Metastatic in the Lung 8 276716 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 9 276717 -NCIT:C156097 Metastatic Colon Carcinoma 8 276718 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 276719 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 276720 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 276721 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 276722 -NCIT:C167238 Advanced Colon Carcinoma 9 276723 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 276724 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 276725 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 276726 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 276727 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 276728 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 276729 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 276730 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 9 276731 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 9 276732 -NCIT:C156098 Metastatic Rectal Carcinoma 8 276733 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 9 276734 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 276735 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 276736 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 276737 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 276738 -NCIT:C170777 Advanced Rectal Carcinoma 9 276739 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 276740 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 276741 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 276742 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 276743 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 276744 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 276745 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 9 276746 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 276747 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 276748 -NCIT:C157366 Colorectal Carcinoma Metastatic in the Liver 8 276749 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 9 276750 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 9 276751 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 9 276752 -NCIT:C161048 Metastatic Colorectal Adenocarcinoma 8 276753 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 9 276754 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 276755 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 276756 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 276757 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 276758 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 276759 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 276760 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 276761 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 276762 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 9 276763 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 276764 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 276765 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 276766 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 276767 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 276768 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 276769 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 276770 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 276771 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 276772 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 276773 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 276774 -NCIT:C162475 Advanced Colorectal Carcinoma 8 276775 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 276776 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 276777 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 276778 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 276779 -NCIT:C167238 Advanced Colon Carcinoma 9 276780 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 276781 -NCIT:C170777 Advanced Rectal Carcinoma 9 276782 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 276783 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 276784 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 8 276785 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 276786 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 276787 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 276788 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 276789 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 276790 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 276791 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 276792 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 276793 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 276794 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 276795 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 276796 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 276797 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 276798 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 276799 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 276800 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 276801 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 276802 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 276803 -NCIT:C185165 Oligometastatic Colorectal Carcinoma 8 276804 -NCIT:C156746 Advanced Digestive System Carcinoma 7 276805 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 276806 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 276807 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 276808 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 8 276809 -NCIT:C160599 Advanced Esophageal Carcinoma 8 276810 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 9 276811 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 9 276812 -NCIT:C162475 Advanced Colorectal Carcinoma 8 276813 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 276814 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 276815 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 276816 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 276817 -NCIT:C167238 Advanced Colon Carcinoma 9 276818 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 276819 -NCIT:C170777 Advanced Rectal Carcinoma 9 276820 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 276821 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 276822 -NCIT:C165299 Advanced Gastric Carcinoma 8 276823 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 276824 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 276825 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 276826 -NCIT:C166255 Advanced Gastric Adenocarcinoma 9 276827 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 10 276828 -NCIT:C167336 Advanced Hepatocellular Carcinoma 8 276829 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 276830 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 276831 -NCIT:C170515 Advanced Anal Carcinoma 8 276832 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 276833 -NCIT:C171330 Advanced Pancreatobiliary Carcinoma 8 276834 -NCIT:C165452 Advanced Pancreatic Carcinoma 9 276835 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 10 276836 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 11 276837 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 9 276838 -NCIT:C171331 Advanced Biliary Tract Carcinoma 9 276839 -NCIT:C142870 Advanced Bile Duct Carcinoma 10 276840 -NCIT:C162752 Advanced Cholangiocarcinoma 11 276841 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 276842 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 276843 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 276844 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 11 276845 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 276846 -NCIT:C162755 Advanced Gallbladder Carcinoma 10 276847 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 276848 -NCIT:C162275 Metastatic Appendix Carcinoma 7 276849 -NCIT:C182104 Metastatic Appendix Adenocarcinoma 8 276850 -NCIT:C162274 Metastatic Appendix Mucinous Adenocarcinoma 9 276851 -NCIT:C182105 Advanced Appendix Adenocarcinoma 9 276852 -NCIT:C163967 Metastatic Digestive System Mixed Adenoneuroendocrine Carcinoma 7 276853 -NCIT:C170458 Metastatic Pancreatobiliary Carcinoma 7 276854 -NCIT:C156069 Metastatic Pancreatic Carcinoma 8 276855 -NCIT:C165452 Advanced Pancreatic Carcinoma 9 276856 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 10 276857 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 11 276858 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 9 276859 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 10 276860 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 11 276861 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 11 276862 -NCIT:C190770 Metastatic Pancreatic Adenosquamous Carcinoma 9 276863 -NCIT:C190771 Metastatic Pancreatic Squamous Cell Carcinoma 9 276864 -NCIT:C8933 Metastatic Pancreatic Adenocarcinoma 9 276865 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 10 276866 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 11 276867 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 11 276868 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 10 276869 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 11 276870 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 11 276871 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 11 276872 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 10 276873 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 11 276874 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 10 276875 -NCIT:C162751 Metastatic Biliary Tract Carcinoma 8 276876 -NCIT:C142869 Metastatic Bile Duct Carcinoma 9 276877 -NCIT:C142870 Advanced Bile Duct Carcinoma 10 276878 -NCIT:C162752 Advanced Cholangiocarcinoma 11 276879 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 276880 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 276881 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 276882 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 11 276883 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 276884 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 10 276885 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 11 276886 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 276887 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 12 276888 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 11 276889 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 276890 -NCIT:C157623 Metastatic Cholangiocarcinoma 10 276891 -NCIT:C162752 Advanced Cholangiocarcinoma 11 276892 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 276893 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 276894 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 276895 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 11 276896 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 276897 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 12 276898 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 11 276899 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 276900 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 11 276901 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 276902 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 276903 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 11 276904 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 276905 -NCIT:C185071 Metastatic Extrahepatic Bile Duct Carcinoma 10 276906 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 11 276907 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 12 276908 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 13 276909 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 276910 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 11 276911 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 276912 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 11 276913 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 276914 -NCIT:C162754 Metastatic Gallbladder Carcinoma 9 276915 -NCIT:C162755 Advanced Gallbladder Carcinoma 10 276916 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 10 276917 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 11 276918 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 9 276919 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 10 276920 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 11 276921 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 276922 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 12 276923 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 11 276924 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 276925 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 10 276926 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 11 276927 -NCIT:C171331 Advanced Biliary Tract Carcinoma 9 276928 -NCIT:C142870 Advanced Bile Duct Carcinoma 10 276929 -NCIT:C162752 Advanced Cholangiocarcinoma 11 276930 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 276931 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 276932 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 276933 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 11 276934 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 276935 -NCIT:C162755 Advanced Gallbladder Carcinoma 10 276936 -NCIT:C170459 Locally Advanced Pancreatobiliary Carcinoma 8 276937 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 9 276938 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 10 276939 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 11 276940 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 276941 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 12 276942 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 11 276943 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 276944 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 10 276945 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 11 276946 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 9 276947 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 10 276948 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 11 276949 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 11 276950 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 9 276951 -NCIT:C171326 Metastatic Ampulla of Vater Carcinoma 8 276952 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 9 276953 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 9 276954 -NCIT:C171330 Advanced Pancreatobiliary Carcinoma 8 276955 -NCIT:C165452 Advanced Pancreatic Carcinoma 9 276956 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 10 276957 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 11 276958 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 9 276959 -NCIT:C171331 Advanced Biliary Tract Carcinoma 9 276960 -NCIT:C142870 Advanced Bile Duct Carcinoma 10 276961 -NCIT:C162752 Advanced Cholangiocarcinoma 11 276962 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 276963 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 276964 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 276965 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 11 276966 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 276967 -NCIT:C162755 Advanced Gallbladder Carcinoma 10 276968 -NCIT:C170514 Metastatic Anal Carcinoma 7 276969 -NCIT:C168977 Locally Advanced Anal Carcinoma 8 276970 -NCIT:C169103 Metastatic Anal Squamous Cell Carcinoma 8 276971 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 9 276972 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 10 276973 -NCIT:C170515 Advanced Anal Carcinoma 8 276974 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 276975 -NCIT:C5612 Metastatic Anal Canal Carcinoma 8 276976 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 9 276977 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 10 276978 -NCIT:C8637 Metastatic Small Intestinal Carcinoma 7 276979 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 8 276980 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 276981 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 276982 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 276983 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 276984 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 276985 -NCIT:C8934 Metastatic Small Intestinal Adenocarcinoma 8 276986 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 276987 -NCIT:C146893 Metastatic Genitourinary System Carcinoma 6 276988 -NCIT:C126109 Metastatic Urothelial Carcinoma 7 276989 -NCIT:C148493 Advanced Urothelial Carcinoma 8 276990 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 276991 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 276992 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 276993 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 276994 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 276995 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 276996 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 276997 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 276998 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 276999 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 277000 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 277001 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 277002 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 277003 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 277004 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 277005 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 277006 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 277007 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 277008 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 277009 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 8 277010 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 277011 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 277012 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 277013 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 277014 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 277015 -NCIT:C191692 Metastatic Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 277016 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 277017 -NCIT:C191693 Metastatic Giant Cell Urothelial Carcinoma 8 277018 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 277019 -NCIT:C191694 Metastatic Lipid-Rich Urothelial Carcinoma 8 277020 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 277021 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 8 277022 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 277023 -NCIT:C191696 Metastatic Nested Urothelial Carcinoma 8 277024 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 277025 -NCIT:C191697 Metastatic Plasmacytoid Urothelial Carcinoma 8 277026 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 277027 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 8 277028 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 277029 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 8 277030 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 277031 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 277032 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 277033 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 9 277034 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 277035 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 277036 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 277037 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 277038 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 277039 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 277040 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 277041 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 277042 -NCIT:C153387 Metastatic Cervical Carcinoma 7 277043 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 8 277044 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 277045 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 277046 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 8 277047 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 277048 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 277049 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 277050 -NCIT:C153390 Metastatic Cervical Adenosquamous Carcinoma 8 277051 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 277052 -NCIT:C156294 Advanced Cervical Carcinoma 8 277053 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 277054 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 277055 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 277056 -NCIT:C156295 Locally Advanced Cervical Carcinoma 8 277057 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 277058 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 277059 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 9 277060 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 277061 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 277062 -NCIT:C156062 Metastatic Bladder Carcinoma 7 277063 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 277064 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 277065 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 277066 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 277067 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 277068 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 277069 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 277070 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 277071 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 277072 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 277073 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 277074 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 8 277075 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 8 277076 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 8 277077 -NCIT:C167071 Locally Advanced Bladder Carcinoma 8 277078 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 277079 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 9 277080 -NCIT:C167338 Advanced Bladder Carcinoma 8 277081 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 277082 -NCIT:C190772 Metastatic Non-Muscle Invasive Bladder Carcinoma 8 277083 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 9 277084 -NCIT:C156063 Metastatic Fallopian Tube Carcinoma 7 277085 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 8 277086 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 9 277087 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 8 277088 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 8 277089 -NCIT:C156064 Metastatic Ovarian Carcinoma 7 277090 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 8 277091 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 277092 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 277093 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 277094 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 9 277095 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 277096 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 277097 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 9 277098 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 277099 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 277100 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 277101 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 277102 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 277103 -NCIT:C165458 Advanced Ovarian Carcinoma 8 277104 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 277105 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 277106 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 277107 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 277108 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 277109 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 277110 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 277111 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 8 277112 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 277113 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 277114 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 277115 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 277116 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 8 277117 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 277118 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 8 277119 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 277120 -NCIT:C172234 Metastatic Ovarian Undifferentiated Carcinoma 8 277121 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 8 277122 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 277123 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 277124 -NCIT:C180333 Metastatic Microsatellite Stable Ovarian Carcinoma 8 277125 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 277126 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 8 277127 -NCIT:C27391 Metastatic Ovarian Small Cell Carcinoma, Hypercalcemic Type 8 277128 -NCIT:C156065 Metastatic Vaginal Carcinoma 7 277129 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 8 277130 -NCIT:C170788 Advanced Vaginal Carcinoma 8 277131 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 277132 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 277133 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 277134 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 277135 -NCIT:C181028 Metastatic Vaginal Adenosquamous Carcinoma 8 277136 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 277137 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 8 277138 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 277139 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 277140 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 8 277141 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 277142 -NCIT:C156066 Metastatic Vulvar Carcinoma 7 277143 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 8 277144 -NCIT:C170786 Advanced Vulvar Carcinoma 8 277145 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 8 277146 -NCIT:C156068 Metastatic Endometrial Carcinoma 7 277147 -NCIT:C159676 Advanced Endometrial Carcinoma 8 277148 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 277149 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 277150 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 277151 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 277152 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 8 277153 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 277154 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 277155 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 9 277156 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 8 277157 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 8 277158 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 277159 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 8 277160 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 9 277161 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 277162 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 277163 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 277164 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 277165 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 9 277166 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 277167 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 277168 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 277169 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 277170 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 9 277171 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 9 277172 -NCIT:C164143 Advanced Genitourinary System Carcinoma 7 277173 -NCIT:C148493 Advanced Urothelial Carcinoma 8 277174 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 277175 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 277176 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 277177 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 277178 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 277179 -NCIT:C156284 Advanced Prostate Carcinoma 8 277180 -NCIT:C156286 Advanced Prostate Adenocarcinoma 9 277181 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 277182 -NCIT:C156294 Advanced Cervical Carcinoma 8 277183 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 277184 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 277185 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 277186 -NCIT:C159676 Advanced Endometrial Carcinoma 8 277187 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 277188 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 277189 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 277190 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 277191 -NCIT:C165458 Advanced Ovarian Carcinoma 8 277192 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 277193 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 277194 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 277195 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 277196 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 277197 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 277198 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 277199 -NCIT:C167338 Advanced Bladder Carcinoma 8 277200 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 277201 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 8 277202 -NCIT:C170786 Advanced Vulvar Carcinoma 8 277203 -NCIT:C170788 Advanced Vaginal Carcinoma 8 277204 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 277205 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 277206 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 277207 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 277208 -NCIT:C170790 Advanced Penile Carcinoma 8 277209 -NCIT:C172617 Advanced Kidney Carcinoma 8 277210 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 277211 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 277212 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 277213 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 277214 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 277215 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 277216 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 277217 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 277218 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 277219 -NCIT:C167069 Locally Advanced Genitourinary System Carcinoma 7 277220 -NCIT:C156285 Locally Advanced Prostate Carcinoma 8 277221 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 9 277222 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 277223 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 9 277224 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 277225 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 9 277226 -NCIT:C156295 Locally Advanced Cervical Carcinoma 8 277227 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 277228 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 277229 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 9 277230 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 277231 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 277232 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 8 277233 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 277234 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 277235 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 277236 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 277237 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 277238 -NCIT:C167071 Locally Advanced Bladder Carcinoma 8 277239 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 277240 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 9 277241 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 8 277242 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 277243 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 277244 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 277245 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 277246 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 8 277247 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 9 277248 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 8 277249 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 277250 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 277251 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 9 277252 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 8 277253 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 8 277254 -NCIT:C170789 Locally Advanced Penile Carcinoma 8 277255 -NCIT:C172618 Locally Advanced Kidney Carcinoma 8 277256 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 277257 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 277258 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 277259 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 277260 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 277261 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 277262 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 277263 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 277264 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 277265 -NCIT:C185381 Metastatic Mesonephric Adenocarcinoma 7 277266 -NCIT:C27784 Metastatic Penile Carcinoma 7 277267 -NCIT:C170789 Locally Advanced Penile Carcinoma 8 277268 -NCIT:C170790 Advanced Penile Carcinoma 8 277269 -NCIT:C182111 Metastatic Squamous Cell Carcinoma of the Penis 8 277270 -NCIT:C27806 Metastatic Kidney Carcinoma 7 277271 -NCIT:C150595 Metastatic Renal Cell Carcinoma 8 277272 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 277273 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 277274 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 277275 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 277276 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 277277 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 277278 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 9 277279 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 277280 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 277281 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 9 277282 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 277283 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 277284 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 9 277285 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 277286 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 277287 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 277288 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 277289 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 277290 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 277291 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 277292 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 277293 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 277294 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 9 277295 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 277296 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 277297 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 9 277298 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 277299 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 277300 -NCIT:C157755 Metastatic Kidney Medullary Carcinoma 8 277301 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 277302 -NCIT:C163965 Metastatic Renal Pelvis Carcinoma 8 277303 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 277304 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 277305 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 277306 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 277307 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 277308 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 277309 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 277310 -NCIT:C172617 Advanced Kidney Carcinoma 8 277311 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 277312 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 277313 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 277314 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 277315 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 277316 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 277317 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 277318 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 277319 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 277320 -NCIT:C172618 Locally Advanced Kidney Carcinoma 8 277321 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 277322 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 277323 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 277324 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 277325 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 277326 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 277327 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 277328 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 277329 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 277330 -NCIT:C27818 Metastatic Ureter Carcinoma 7 277331 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 8 277332 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 277333 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 277334 -NCIT:C27819 Metastatic Urethral Carcinoma 7 277335 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 277336 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 277337 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 277338 -NCIT:C8946 Metastatic Prostate Carcinoma 7 277339 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 8 277340 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 9 277341 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 9 277342 -NCIT:C161609 Double-Negative Prostate Carcinoma 9 277343 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 9 277344 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 9 277345 -NCIT:C132881 Prostate Carcinoma Metastatic in the Soft Tissue 8 277346 -NCIT:C148536 Castration-Naive Prostate Carcinoma 8 277347 -NCIT:C153336 Castration-Sensitive Prostate Carcinoma 8 277348 -NCIT:C156284 Advanced Prostate Carcinoma 8 277349 -NCIT:C156286 Advanced Prostate Adenocarcinoma 9 277350 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 277351 -NCIT:C156285 Locally Advanced Prostate Carcinoma 8 277352 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 9 277353 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 277354 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 9 277355 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 277356 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 9 277357 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 8 277358 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 9 277359 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 9 277360 -NCIT:C161584 Prostate Carcinoma Metastatic in the Pelvic Cavity 8 277361 -NCIT:C161587 Prostate Carcinoma Metastatic in the Lymph Nodes 8 277362 -NCIT:C171265 Oligometastatic Prostate Carcinoma 8 277363 -NCIT:C36307 Prostate Carcinoma Metastatic in the Lung 8 277364 -NCIT:C36308 Prostate Carcinoma Metastatic in the Bone 8 277365 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 8 277366 -NCIT:C156286 Advanced Prostate Adenocarcinoma 9 277367 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 277368 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 9 277369 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 277370 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 277371 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 277372 -NCIT:C148128 Metastatic Thymic Carcinoma 6 277373 -NCIT:C148126 Locally Advanced Thymic Carcinoma 7 277374 -NCIT:C159903 Advanced Thymic Carcinoma 7 277375 -NCIT:C148130 Locally Advanced Carcinoma 6 277376 -NCIT:C148126 Locally Advanced Thymic Carcinoma 7 277377 -NCIT:C153206 Locally Advanced Lung Carcinoma 7 277378 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 8 277379 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 277380 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 277381 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 277382 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 277383 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 277384 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 277385 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 277386 -NCIT:C153213 Locally Advanced Head and Neck Carcinoma 7 277387 -NCIT:C158464 Locally Advanced Salivary Gland Carcinoma 8 277388 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 8 277389 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 277390 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 277391 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 277392 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 277393 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 277394 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 277395 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 277396 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 277397 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 277398 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 277399 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 277400 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 8 277401 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 277402 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 8 277403 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 277404 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 9 277405 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 277406 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 277407 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 9 277408 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 277409 -NCIT:C165562 Locally Advanced Lip and Oral Cavity Carcinoma 8 277410 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 9 277411 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 10 277412 -NCIT:C165563 Locally Advanced Paranasal Sinus Carcinoma 8 277413 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 277414 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 8 277415 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 277416 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 9 277417 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 277418 -NCIT:C153358 Locally Advanced Digestive System Carcinoma 7 277419 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 8 277420 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 277421 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 277422 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 277423 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 8 277424 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 9 277425 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 8 277426 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 277427 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 277428 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 277429 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 277430 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 277431 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 277432 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 277433 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 277434 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 277435 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 277436 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 277437 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 277438 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 277439 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 277440 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 277441 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 277442 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 277443 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 277444 -NCIT:C162772 Locally Advanced Gastric Carcinoma 8 277445 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 9 277446 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 10 277447 -NCIT:C168976 Locally Advanced Esophageal Carcinoma 8 277448 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 9 277449 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 10 277450 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 9 277451 -NCIT:C168977 Locally Advanced Anal Carcinoma 8 277452 -NCIT:C170459 Locally Advanced Pancreatobiliary Carcinoma 8 277453 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 9 277454 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 10 277455 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 11 277456 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 277457 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 12 277458 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 11 277459 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 277460 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 10 277461 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 11 277462 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 9 277463 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 10 277464 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 11 277465 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 11 277466 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 9 277467 -NCIT:C171298 Locally Advanced Liver Carcinoma 8 277468 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 9 277469 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 277470 -NCIT:C154321 Locally Advanced Squamous Cell Carcinoma 7 277471 -NCIT:C153182 Locally Advanced Skin Squamous Cell Carcinoma 8 277472 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 277473 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 277474 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 277475 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 8 277476 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 277477 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 277478 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 277479 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 277480 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 277481 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 277482 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 277483 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 277484 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 277485 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 277486 -NCIT:C165474 Locally Advanced Squamous Cell Carcinoma of Unknown Primary 8 277487 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 8 277488 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 277489 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 8 277490 -NCIT:C155698 Locally Advanced Unresectable Carcinoma 7 277491 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 8 277492 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 8 277493 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 8 277494 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 8 277495 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 277496 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 8 277497 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 277498 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 8 277499 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 277500 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 277501 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 8 277502 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 277503 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 277504 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 277505 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 277506 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 277507 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 277508 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 277509 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 8 277510 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 8 277511 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 8 277512 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 8 277513 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 8 277514 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 8 277515 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 8 277516 -NCIT:C156770 Locally Advanced Basal Cell Carcinoma 7 277517 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 8 277518 -NCIT:C158909 Locally Advanced Neuroendocrine Carcinoma 7 277519 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 277520 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 277521 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 8 277522 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 277523 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 277524 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 8 277525 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 277526 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 8 277527 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 277528 -NCIT:C160920 Locally Advanced Breast Carcinoma 7 277529 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 8 277530 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 277531 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 277532 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 277533 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 277534 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 8 277535 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 277536 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 277537 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 277538 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 277539 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 277540 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 277541 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 277542 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 277543 -NCIT:C167069 Locally Advanced Genitourinary System Carcinoma 7 277544 -NCIT:C156285 Locally Advanced Prostate Carcinoma 8 277545 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 9 277546 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 277547 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 9 277548 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 277549 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 9 277550 -NCIT:C156295 Locally Advanced Cervical Carcinoma 8 277551 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 277552 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 277553 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 9 277554 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 277555 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 277556 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 8 277557 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 277558 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 277559 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 277560 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 277561 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 277562 -NCIT:C167071 Locally Advanced Bladder Carcinoma 8 277563 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 277564 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 9 277565 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 8 277566 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 277567 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 277568 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 277569 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 277570 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 8 277571 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 9 277572 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 8 277573 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 277574 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 277575 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 9 277576 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 8 277577 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 8 277578 -NCIT:C170789 Locally Advanced Penile Carcinoma 8 277579 -NCIT:C172618 Locally Advanced Kidney Carcinoma 8 277580 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 277581 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 277582 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 277583 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 277584 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 277585 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 277586 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 277587 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 277588 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 277589 -NCIT:C167204 Locally Advanced Primary Peritoneal Carcinoma 7 277590 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 8 277591 -NCIT:C168978 Locally Advanced Adenocarcinoma 7 277592 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 8 277593 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 9 277594 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 9 277595 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 8 277596 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 277597 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 8 277598 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 277599 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 8 277600 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 9 277601 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 277602 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 277603 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 277604 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 8 277605 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 277606 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 277607 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 277608 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 277609 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 277610 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 277611 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 277612 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 277613 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 277614 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 8 277615 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 277616 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 9 277617 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 8 277618 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 277619 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 277620 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 277621 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 277622 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 277623 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 277624 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 277625 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 277626 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 8 277627 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 277628 -NCIT:C174045 Locally Advanced Endometrioid Adenocarcinoma 8 277629 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 277630 -NCIT:C174443 Locally Advanced Adrenal Cortical Carcinoma 8 277631 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 8 277632 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 8 277633 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 277634 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 277635 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 277636 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 277637 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 277638 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 277639 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 277640 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 277641 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 277642 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 277643 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 277644 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 277645 -NCIT:C175493 Locally Advanced Transitional Cell Carcinoma 7 277646 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 8 277647 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 277648 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 277649 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 277650 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 277651 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 277652 -NCIT:C175669 Locally Advanced Adenoid Cystic Carcinoma 7 277653 -NCIT:C153171 Advanced Carcinoma 6 277654 -NCIT:C129861 Advanced Head and Neck Carcinoma 7 277655 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 8 277656 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 277657 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 277658 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 277659 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 277660 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 277661 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 277662 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 277663 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 8 277664 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 277665 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 277666 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 277667 -NCIT:C170784 Advanced Pharyngeal Carcinoma 8 277668 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 9 277669 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 277670 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 277671 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 277672 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 277673 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 277674 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 9 277675 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 277676 -NCIT:C177723 Advanced Salivary Gland Carcinoma 8 277677 -NCIT:C153203 Advanced Lung Carcinoma 7 277678 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 277679 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 8 277680 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 277681 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 277682 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 277683 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 277684 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 277685 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 277686 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 277687 -NCIT:C180922 Advanced Bronchogenic Carcinoma 8 277688 -NCIT:C155870 Advanced Neuroendocrine Carcinoma 7 277689 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 277690 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 277691 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 277692 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 277693 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 277694 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 277695 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 277696 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 277697 -NCIT:C165300 Advanced Merkel Cell Carcinoma 8 277698 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 8 277699 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 277700 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 277701 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 277702 -NCIT:C156746 Advanced Digestive System Carcinoma 7 277703 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 277704 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 277705 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 277706 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 8 277707 -NCIT:C160599 Advanced Esophageal Carcinoma 8 277708 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 9 277709 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 9 277710 -NCIT:C162475 Advanced Colorectal Carcinoma 8 277711 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 277712 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 277713 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 277714 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 277715 -NCIT:C167238 Advanced Colon Carcinoma 9 277716 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 277717 -NCIT:C170777 Advanced Rectal Carcinoma 9 277718 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 277719 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 277720 -NCIT:C165299 Advanced Gastric Carcinoma 8 277721 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 277722 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 277723 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 277724 -NCIT:C166255 Advanced Gastric Adenocarcinoma 9 277725 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 10 277726 -NCIT:C167336 Advanced Hepatocellular Carcinoma 8 277727 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 277728 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 277729 -NCIT:C170515 Advanced Anal Carcinoma 8 277730 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 277731 -NCIT:C171330 Advanced Pancreatobiliary Carcinoma 8 277732 -NCIT:C165452 Advanced Pancreatic Carcinoma 9 277733 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 10 277734 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 11 277735 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 9 277736 -NCIT:C171331 Advanced Biliary Tract Carcinoma 9 277737 -NCIT:C142870 Advanced Bile Duct Carcinoma 10 277738 -NCIT:C162752 Advanced Cholangiocarcinoma 11 277739 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 277740 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 277741 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 277742 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 11 277743 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 277744 -NCIT:C162755 Advanced Gallbladder Carcinoma 10 277745 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 277746 -NCIT:C159556 Advanced Adenocarcinoma 7 277747 -NCIT:C153170 Advanced Renal Cell Carcinoma 8 277748 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 277749 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 277750 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 277751 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 277752 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 277753 -NCIT:C156286 Advanced Prostate Adenocarcinoma 8 277754 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 277755 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 277756 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 8 277757 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 8 277758 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 9 277759 -NCIT:C162752 Advanced Cholangiocarcinoma 8 277760 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 9 277761 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 9 277762 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 9 277763 -NCIT:C165700 Advanced Breast Adenocarcinoma 8 277764 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 277765 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 277766 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 277767 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 277768 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 277769 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 277770 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 277771 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 277772 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 277773 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 277774 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 277775 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 277776 -NCIT:C167336 Advanced Hepatocellular Carcinoma 8 277777 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 277778 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 277779 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 8 277780 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 277781 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 277782 -NCIT:C170807 Advanced Endometrioid Adenocarcinoma 8 277783 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 277784 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 277785 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 277786 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 277787 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 277788 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 277789 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 8 277790 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 8 277791 -NCIT:C176727 Advanced Lung Adenocarcinoma 8 277792 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 277793 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 277794 -NCIT:C191863 Advanced Adrenal Cortical Carcinoma 8 277795 -NCIT:C159903 Advanced Thymic Carcinoma 7 277796 -NCIT:C160298 Advanced NUT Carcinoma 7 277797 -NCIT:C162648 Advanced Breast Carcinoma 7 277798 -NCIT:C165700 Advanced Breast Adenocarcinoma 8 277799 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 277800 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 277801 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 277802 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 277803 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 277804 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 277805 -NCIT:C162653 Advanced Squamous Cell Carcinoma 7 277806 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 8 277807 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 277808 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 277809 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 277810 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 277811 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 277812 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 277813 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 277814 -NCIT:C168542 Advanced Skin Squamous Cell Carcinoma 8 277815 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 277816 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 8 277817 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 277818 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 277819 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 277820 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 8 277821 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 277822 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 277823 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 277824 -NCIT:C164012 Advanced Adenoid Cystic Carcinoma 7 277825 -NCIT:C164143 Advanced Genitourinary System Carcinoma 7 277826 -NCIT:C148493 Advanced Urothelial Carcinoma 8 277827 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 277828 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 277829 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 277830 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 277831 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 277832 -NCIT:C156284 Advanced Prostate Carcinoma 8 277833 -NCIT:C156286 Advanced Prostate Adenocarcinoma 9 277834 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 277835 -NCIT:C156294 Advanced Cervical Carcinoma 8 277836 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 277837 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 277838 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 277839 -NCIT:C159676 Advanced Endometrial Carcinoma 8 277840 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 277841 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 277842 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 277843 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 277844 -NCIT:C165458 Advanced Ovarian Carcinoma 8 277845 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 277846 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 277847 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 277848 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 277849 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 277850 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 277851 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 277852 -NCIT:C167338 Advanced Bladder Carcinoma 8 277853 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 277854 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 8 277855 -NCIT:C170786 Advanced Vulvar Carcinoma 8 277856 -NCIT:C170788 Advanced Vaginal Carcinoma 8 277857 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 277858 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 277859 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 277860 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 277861 -NCIT:C170790 Advanced Penile Carcinoma 8 277862 -NCIT:C172617 Advanced Kidney Carcinoma 8 277863 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 277864 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 277865 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 277866 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 277867 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 277868 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 277869 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 277870 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 277871 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 277872 -NCIT:C167396 Advanced Primary Peritoneal Carcinoma 7 277873 -NCIT:C170960 Advanced Carcinoma Of Unknown Primary 7 277874 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 8 277875 -NCIT:C172091 Advanced Transitional Cell Carcinoma 7 277876 -NCIT:C148493 Advanced Urothelial Carcinoma 8 277877 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 277878 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 277879 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 277880 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 277881 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 277882 -NCIT:C172362 Advanced Basal Cell Carcinoma 7 277883 -NCIT:C153202 Metastatic Lung Carcinoma 6 277884 -NCIT:C133503 Lung Carcinoma Metastatic in the Central Nervous System 7 277885 -NCIT:C36304 Lung Carcinoma Metastatic in the Brain 8 277886 -NCIT:C153203 Advanced Lung Carcinoma 7 277887 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 277888 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 8 277889 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 277890 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 277891 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 277892 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 277893 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 277894 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 277895 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 277896 -NCIT:C180922 Advanced Bronchogenic Carcinoma 8 277897 -NCIT:C153206 Locally Advanced Lung Carcinoma 7 277898 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 8 277899 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 277900 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 277901 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 277902 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 277903 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 277904 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 277905 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 277906 -NCIT:C156092 Metastatic Lung Squamous Cell Carcinoma 7 277907 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 277908 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 277909 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 277910 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 277911 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 277912 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 277913 -NCIT:C156094 Metastatic Lung Non-Small Cell Carcinoma 7 277914 -NCIT:C128798 Metastatic Lung Non-Squamous Non-Small Cell Carcinoma 8 277915 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 277916 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 277917 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 277918 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 277919 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 277920 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 277921 -NCIT:C155908 Metastatic Lung Adenocarcinoma 9 277922 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 277923 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 277924 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 9 277925 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 277926 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 277927 -NCIT:C156093 Metastatic Lung Adenosquamous Carcinoma 8 277928 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 277929 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 277930 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 277931 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 277932 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 277933 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 277934 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 8 277935 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 277936 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 277937 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 277938 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 277939 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 277940 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 277941 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 8 277942 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 277943 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 277944 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 277945 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 277946 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 277947 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 7 277948 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 277949 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 277950 -NCIT:C187195 Oligometastatic Lung Carcinoma 7 277951 -NCIT:C36305 Lung Carcinoma Metastatic in the Bone 7 277952 -NCIT:C36306 Lung Carcinoma Metastatic in the Liver 7 277953 -NCIT:C153238 Metastatic Breast Carcinoma 6 277954 -NCIT:C133501 Breast Carcinoma Metastatic in the Central Nervous System 7 277955 -NCIT:C36301 Breast Carcinoma Metastatic in the Brain 8 277956 -NCIT:C153227 Breast Carcinoma Metastatic in the Lymph Nodes 7 277957 -NCIT:C160920 Locally Advanced Breast Carcinoma 7 277958 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 8 277959 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 277960 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 277961 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 277962 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 277963 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 8 277964 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 277965 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 277966 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 277967 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 277968 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 277969 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 277970 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 277971 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 277972 -NCIT:C161830 Metastatic BRCA-Associated Breast Carcinoma 7 277973 -NCIT:C162648 Advanced Breast Carcinoma 7 277974 -NCIT:C165700 Advanced Breast Adenocarcinoma 8 277975 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 277976 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 277977 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 277978 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 277979 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 277980 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 277981 -NCIT:C165698 Metastatic Breast Adenocarcinoma 7 277982 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 8 277983 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 277984 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 277985 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 277986 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 277987 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 277988 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 277989 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 277990 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 277991 -NCIT:C165700 Advanced Breast Adenocarcinoma 8 277992 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 277993 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 277994 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 277995 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 277996 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 277997 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 277998 -NCIT:C168777 Metastatic HER2-Negative Breast Carcinoma 8 277999 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 278000 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 278001 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 278002 -NCIT:C179554 Metastatic HER2-Low Breast Carcinoma 8 278003 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 278004 -NCIT:C180924 Metastatic HER2-Positive Breast Carcinoma 8 278005 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 278006 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 278007 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 278008 -NCIT:C181787 Metastatic Breast Inflammatory Carcinoma 8 278009 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 9 278010 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 9 278011 -NCIT:C9246 Stage IIIB Breast Inflammatory Carcinoma 9 278012 -NCIT:C185880 Metastatic Hormone Receptor-Positive Breast Carcinoma 8 278013 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 278014 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 278015 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 278016 -NCIT:C190852 Metastatic Androgen Receptor-Positive Breast Carcinoma 9 278017 -NCIT:C190856 Metastatic Estrogen Receptor-Positive Breast Carcinoma 9 278018 -NCIT:C190677 Metastatic Hormone Receptor-Negative Breast Carcinoma 8 278019 -NCIT:C153348 Metastatic Triple-Negative Breast Carcinoma 9 278020 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 278021 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 10 278022 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 11 278023 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 10 278024 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 278025 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 278026 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 8 278027 -NCIT:C76326 Metastatic Breast Ductal Carcinoma 8 278028 -NCIT:C76328 Metastatic Breast Lobular Carcinoma 8 278029 -NCIT:C179515 Oligometastatic Breast Carcinoma 7 278030 -NCIT:C28311 Metastatic Breast Carcinoma in the Skin 7 278031 -NCIT:C36300 Breast Carcinoma Metastatic in the Lung 7 278032 -NCIT:C36302 Breast Carcinoma Metastatic in the Liver 7 278033 -NCIT:C36303 Breast Carcinoma Metastatic in the Bone 7 278034 -NCIT:C153226 Breast Carcinoma Metastatic in the Spine 8 278035 -NCIT:C5178 Metastatic Breast Squamous Cell Carcinoma 7 278036 -NCIT:C153315 Metastatic Unresectable Carcinoma 6 278037 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 7 278038 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 8 278039 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 8 278040 -NCIT:C155698 Locally Advanced Unresectable Carcinoma 7 278041 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 8 278042 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 8 278043 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 8 278044 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 8 278045 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 278046 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 8 278047 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 278048 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 8 278049 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 278050 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 278051 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 8 278052 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 278053 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 278054 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 278055 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 278056 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 278057 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 278058 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 278059 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 8 278060 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 8 278061 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 8 278062 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 8 278063 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 8 278064 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 8 278065 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 8 278066 -NCIT:C156788 Metastatic Unresectable Basal Cell Carcinoma 7 278067 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 8 278068 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 7 278069 -NCIT:C155869 Metastatic Neuroendocrine Carcinoma 6 278070 -NCIT:C155870 Advanced Neuroendocrine Carcinoma 7 278071 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 278072 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 278073 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 278074 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 278075 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 278076 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 278077 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 278078 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 278079 -NCIT:C165300 Advanced Merkel Cell Carcinoma 8 278080 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 8 278081 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 278082 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 278083 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 278084 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 7 278085 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 8 278086 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 278087 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 278088 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 278089 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 8 278090 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 278091 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 278092 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 278093 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 278094 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 278095 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 278096 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 278097 -NCIT:C158908 Metastatic Large Cell Neuroendocrine Carcinoma 7 278098 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 8 278099 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 8 278100 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 278101 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 8 278102 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 278103 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 278104 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 8 278105 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 278106 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 278107 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 278108 -NCIT:C158909 Locally Advanced Neuroendocrine Carcinoma 7 278109 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 278110 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 278111 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 8 278112 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 278113 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 278114 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 8 278115 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 278116 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 8 278117 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 278118 -NCIT:C158911 Metastatic Small Cell Neuroendocrine Carcinoma 7 278119 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 8 278120 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 9 278121 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 278122 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 8 278123 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 278124 -NCIT:C191852 Metastatic Extrapulmonary Small Cell Neuroendocrine Carcinoma 8 278125 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 278126 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 278127 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 9 278128 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 9 278129 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 7 278130 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 278131 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 278132 -NCIT:C162572 Metastatic Merkel Cell Carcinoma 7 278133 -NCIT:C165300 Advanced Merkel Cell Carcinoma 8 278134 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 8 278135 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 8 278136 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 7 278137 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 278138 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 278139 -NCIT:C163975 Neuroendocrine Carcinoma of Unknown Primary 7 278140 -NCIT:C156769 Metastatic Basal Cell Carcinoma 6 278141 -NCIT:C156770 Locally Advanced Basal Cell Carcinoma 7 278142 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 8 278143 -NCIT:C156788 Metastatic Unresectable Basal Cell Carcinoma 7 278144 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 8 278145 -NCIT:C172362 Advanced Basal Cell Carcinoma 7 278146 -NCIT:C157638 Metastatic Adenoid Cystic Carcinoma 6 278147 -NCIT:C156089 Metastatic Oral Cavity Adenoid Cystic Carcinoma 7 278148 -NCIT:C164012 Advanced Adenoid Cystic Carcinoma 7 278149 -NCIT:C175669 Locally Advanced Adenoid Cystic Carcinoma 7 278150 -NCIT:C160297 Metastatic NUT Carcinoma 6 278151 -NCIT:C160298 Advanced NUT Carcinoma 7 278152 -NCIT:C165537 Metastatic Non-Small Cell Carcinoma 6 278153 -NCIT:C156094 Metastatic Lung Non-Small Cell Carcinoma 7 278154 -NCIT:C128798 Metastatic Lung Non-Squamous Non-Small Cell Carcinoma 8 278155 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 278156 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 278157 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 278158 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 278159 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 278160 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 278161 -NCIT:C155908 Metastatic Lung Adenocarcinoma 9 278162 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 278163 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 278164 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 9 278165 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 278166 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 278167 -NCIT:C156093 Metastatic Lung Adenosquamous Carcinoma 8 278168 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 278169 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 278170 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 278171 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 278172 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 278173 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 278174 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 8 278175 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 278176 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 278177 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 278178 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 278179 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 278180 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 278181 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 8 278182 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 278183 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 278184 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 278185 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 278186 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 278187 -NCIT:C167203 Metastatic Primary Peritoneal Carcinoma 6 278188 -NCIT:C167204 Locally Advanced Primary Peritoneal Carcinoma 7 278189 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 8 278190 -NCIT:C167396 Advanced Primary Peritoneal Carcinoma 7 278191 -NCIT:C170972 Metastatic Primary Peritoneal Adenocarcinoma 7 278192 -NCIT:C171019 Metastatic Primary Peritoneal Serous Adenocarcinoma 8 278193 -NCIT:C186453 Metastatic Primary Peritoneal High Grade Serous Adenocarcinoma 9 278194 -NCIT:C179654 Metastatic Carcinoma in the Peritoneum 6 278195 -NCIT:C27382 Peritoneal Carcinomatosis 7 278196 -NCIT:C3345 Pseudomyxoma Peritonei 8 278197 -NCIT:C179179 Recurrent Pseudomyxoma Peritonei 9 278198 -NCIT:C179180 Refractory Pseudomyxoma Peritonei 9 278199 -NCIT:C188076 Metastatic Carcinoma in the Rectum 6 278200 -NCIT:C188077 Metastatic Carcinoma in the Pancreas 6 278201 -NCIT:C27381 Metastatic Carcinoma in the Adrenal Cortex 6 278202 -NCIT:C27408 Metastatic Carcinoma in the Lung 6 278203 -NCIT:C153224 Colorectal Carcinoma Metastatic in the Lung 7 278204 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 8 278205 -NCIT:C36300 Breast Carcinoma Metastatic in the Lung 7 278206 -NCIT:C36307 Prostate Carcinoma Metastatic in the Lung 7 278207 -NCIT:C27469 Disseminated Carcinoma 6 278208 -NCIT:C27185 Disseminated Adenocarcinoma 7 278209 -NCIT:C4829 Disseminated Squamous Cell Carcinoma 7 278210 -NCIT:C36082 Metastatic Carcinoma in the Bone 6 278211 -NCIT:C36303 Breast Carcinoma Metastatic in the Bone 7 278212 -NCIT:C153226 Breast Carcinoma Metastatic in the Spine 8 278213 -NCIT:C36305 Lung Carcinoma Metastatic in the Bone 7 278214 -NCIT:C36308 Prostate Carcinoma Metastatic in the Bone 7 278215 -NCIT:C3693 Carcinomatosis 6 278216 -NCIT:C168666 Gastrointestinal Carcinomatosis 7 278217 -NCIT:C27382 Peritoneal Carcinomatosis 7 278218 -NCIT:C3345 Pseudomyxoma Peritonei 8 278219 -NCIT:C179179 Recurrent Pseudomyxoma Peritonei 9 278220 -NCIT:C179180 Refractory Pseudomyxoma Peritonei 9 278221 -NCIT:C27383 Meningeal Carcinomatosis 7 278222 -NCIT:C27384 Pleural Carcinomatosis 7 278223 -NCIT:C27385 Pericardial Carcinomatosis 7 278224 -NCIT:C3870 Lymphangitic Carcinomatosis 7 278225 -NCIT:C3812 Carcinoma of Unknown Primary 6 278226 -NCIT:C162595 Head and Neck Carcinoma of Unknown Primary 7 278227 -NCIT:C173585 Neck Carcinoma of Unknown Primary 8 278228 -NCIT:C7713 Neck Squamous Cell Carcinoma of Unknown Primary 9 278229 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 10 278230 -NCIT:C187051 Human Papillomavirus-Related Head and Neck Squamous Cell Carcinoma of Unknown Primary 8 278231 -NCIT:C190149 Human Papillomavirus-Negative Head and Neck Squamous Cell Carcinoma of Unknown Primary 8 278232 -NCIT:C163975 Neuroendocrine Carcinoma of Unknown Primary 7 278233 -NCIT:C170960 Advanced Carcinoma Of Unknown Primary 7 278234 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 8 278235 -NCIT:C170961 Resectable Carcinoma of Unknown Primary 7 278236 -NCIT:C170962 Resectable Adenocarcinoma of Unknown Primary 8 278237 -NCIT:C4039 Adenocarcinoma of Unknown Primary 7 278238 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 8 278239 -NCIT:C170962 Resectable Adenocarcinoma of Unknown Primary 8 278240 -NCIT:C8099 Squamous Cell Carcinoma of Unknown Primary 7 278241 -NCIT:C165474 Locally Advanced Squamous Cell Carcinoma of Unknown Primary 8 278242 -NCIT:C187051 Human Papillomavirus-Related Head and Neck Squamous Cell Carcinoma of Unknown Primary 8 278243 -NCIT:C190149 Human Papillomavirus-Negative Head and Neck Squamous Cell Carcinoma of Unknown Primary 8 278244 -NCIT:C7713 Neck Squamous Cell Carcinoma of Unknown Primary 8 278245 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 9 278246 -NCIT:C8100 Undifferentiated Carcinoma of Unknown Primary 7 278247 -NCIT:C9181 Recurrent Carcinoma of Unknown Primary 7 278248 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 8 278249 -NCIT:C4104 Metastatic Squamous Cell Carcinoma 6 278250 -NCIT:C143013 Metastatic Skin Squamous Cell Carcinoma 7 278251 -NCIT:C153182 Locally Advanced Skin Squamous Cell Carcinoma 8 278252 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 278253 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 8 278254 -NCIT:C168542 Advanced Skin Squamous Cell Carcinoma 8 278255 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 278256 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 278257 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 278258 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 278259 -NCIT:C148153 Metastatic Head and Neck Squamous Cell Carcinoma 7 278260 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 8 278261 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 278262 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 278263 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 278264 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 278265 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 278266 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 278267 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 278268 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 278269 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 278270 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 278271 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 8 278272 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 278273 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 278274 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 278275 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 8 278276 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 278277 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 278278 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 278279 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 278280 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 278281 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 278282 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 278283 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 278284 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 278285 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 278286 -NCIT:C162882 Metastatic Sinonasal Squamous Cell Carcinoma 8 278287 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 278288 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 278289 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 278290 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 9 278291 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 278292 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 9 278293 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 278294 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 278295 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 278296 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 278297 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 8 278298 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 8 278299 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 278300 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 278301 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 278302 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 278303 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 278304 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 278305 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 278306 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 278307 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 278308 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 278309 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 278310 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 278311 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 278312 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 278313 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 278314 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 278315 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 278316 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 7 278317 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 278318 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 8 278319 -NCIT:C154321 Locally Advanced Squamous Cell Carcinoma 7 278320 -NCIT:C153182 Locally Advanced Skin Squamous Cell Carcinoma 8 278321 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 278322 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 278323 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 278324 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 8 278325 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 278326 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 278327 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 278328 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 278329 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 278330 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 278331 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 278332 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 278333 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 278334 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 278335 -NCIT:C165474 Locally Advanced Squamous Cell Carcinoma of Unknown Primary 8 278336 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 8 278337 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 278338 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 8 278339 -NCIT:C156075 Metastatic Esophageal Squamous Cell Carcinoma 7 278340 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 278341 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 278342 -NCIT:C156092 Metastatic Lung Squamous Cell Carcinoma 7 278343 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 278344 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 278345 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 278346 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 278347 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 278348 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 278349 -NCIT:C157452 Metastatic Squamous Cell Carcinoma in the Cervical Lymph Nodes 7 278350 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 7 278351 -NCIT:C162653 Advanced Squamous Cell Carcinoma 7 278352 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 8 278353 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 278354 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 278355 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 278356 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 278357 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 278358 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 278359 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 278360 -NCIT:C168542 Advanced Skin Squamous Cell Carcinoma 8 278361 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 278362 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 8 278363 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 278364 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 278365 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 278366 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 8 278367 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 278368 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 278369 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 278370 -NCIT:C169103 Metastatic Anal Squamous Cell Carcinoma 7 278371 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 278372 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 278373 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 7 278374 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 8 278375 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 8 278376 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 7 278377 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 7 278378 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 278379 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 278380 -NCIT:C182111 Metastatic Squamous Cell Carcinoma of the Penis 7 278381 -NCIT:C188112 Metastatic Squamous Cell Carcinoma in the Breast 7 278382 -NCIT:C188113 Metastatic Squamous Cell Carcinoma in the Skin 7 278383 -NCIT:C190771 Metastatic Pancreatic Squamous Cell Carcinoma 7 278384 -NCIT:C4829 Disseminated Squamous Cell Carcinoma 7 278385 -NCIT:C5178 Metastatic Breast Squamous Cell Carcinoma 7 278386 -NCIT:C8099 Squamous Cell Carcinoma of Unknown Primary 7 278387 -NCIT:C165474 Locally Advanced Squamous Cell Carcinoma of Unknown Primary 8 278388 -NCIT:C187051 Human Papillomavirus-Related Head and Neck Squamous Cell Carcinoma of Unknown Primary 8 278389 -NCIT:C190149 Human Papillomavirus-Negative Head and Neck Squamous Cell Carcinoma of Unknown Primary 8 278390 -NCIT:C7713 Neck Squamous Cell Carcinoma of Unknown Primary 8 278391 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 9 278392 -NCIT:C4124 Metastatic Adenocarcinoma 6 278393 -NCIT:C150577 Metastatic Gastroesophageal Junction Adenocarcinoma 7 278394 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 8 278395 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 8 278396 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 9 278397 -NCIT:C150595 Metastatic Renal Cell Carcinoma 7 278398 -NCIT:C153170 Advanced Renal Cell Carcinoma 8 278399 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 278400 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 278401 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 278402 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 278403 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 278404 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 8 278405 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 278406 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 278407 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 8 278408 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 278409 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 278410 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 8 278411 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 278412 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 278413 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 8 278414 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 278415 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 278416 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 278417 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 278418 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 278419 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 278420 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 8 278421 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 278422 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 278423 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 8 278424 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 278425 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 278426 -NCIT:C153319 Metastatic Gastric Adenocarcinoma 7 278427 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 278428 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 278429 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 278430 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 278431 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 278432 -NCIT:C165630 Metastatic Proximal Gastric Adenocarcinoma 8 278433 -NCIT:C166121 Oligometastatic Gastric Adenocarcinoma 8 278434 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 278435 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 278436 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 7 278437 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 8 278438 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 278439 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 278440 -NCIT:C154091 Metastatic Hepatocellular Carcinoma 7 278441 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 8 278442 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 278443 -NCIT:C167336 Advanced Hepatocellular Carcinoma 8 278444 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 278445 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 278446 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 278447 -NCIT:C155908 Metastatic Lung Adenocarcinoma 7 278448 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 8 278449 -NCIT:C176727 Advanced Lung Adenocarcinoma 8 278450 -NCIT:C156070 Metastatic Adrenal Cortical Carcinoma 7 278451 -NCIT:C174443 Locally Advanced Adrenal Cortical Carcinoma 8 278452 -NCIT:C191863 Advanced Adrenal Cortical Carcinoma 8 278453 -NCIT:C156074 Metastatic Esophageal Adenocarcinoma 7 278454 -NCIT:C166120 Oligometastatic Esophageal Adenocarcinoma 8 278455 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 278456 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 278457 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 278458 -NCIT:C172249 Metastatic Distal Esophagus Adenocarcinoma 8 278459 -NCIT:C157623 Metastatic Cholangiocarcinoma 7 278460 -NCIT:C162752 Advanced Cholangiocarcinoma 8 278461 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 9 278462 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 9 278463 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 9 278464 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 8 278465 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 278466 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 9 278467 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 8 278468 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 9 278469 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 8 278470 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 278471 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 9 278472 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 8 278473 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 9 278474 -NCIT:C159556 Advanced Adenocarcinoma 7 278475 -NCIT:C153170 Advanced Renal Cell Carcinoma 8 278476 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 278477 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 278478 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 278479 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 278480 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 278481 -NCIT:C156286 Advanced Prostate Adenocarcinoma 8 278482 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 278483 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 278484 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 8 278485 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 8 278486 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 9 278487 -NCIT:C162752 Advanced Cholangiocarcinoma 8 278488 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 9 278489 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 9 278490 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 9 278491 -NCIT:C165700 Advanced Breast Adenocarcinoma 8 278492 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 278493 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 278494 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 278495 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 278496 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 278497 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 278498 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 278499 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 278500 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 278501 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 278502 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 278503 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 278504 -NCIT:C167336 Advanced Hepatocellular Carcinoma 8 278505 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 278506 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 278507 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 8 278508 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 278509 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 278510 -NCIT:C170807 Advanced Endometrioid Adenocarcinoma 8 278511 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 278512 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 278513 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 278514 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 278515 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 278516 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 278517 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 8 278518 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 8 278519 -NCIT:C176727 Advanced Lung Adenocarcinoma 8 278520 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 278521 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 278522 -NCIT:C191863 Advanced Adrenal Cortical Carcinoma 8 278523 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 7 278524 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 278525 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 278526 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 278527 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 8 278528 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 278529 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 278530 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 8 278531 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 278532 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 278533 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 278534 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 278535 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 278536 -NCIT:C161048 Metastatic Colorectal Adenocarcinoma 7 278537 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 8 278538 -NCIT:C160819 Metastatic Colon Adenocarcinoma 8 278539 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 278540 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 278541 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 278542 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 8 278543 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 278544 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 278545 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 278546 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 8 278547 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 278548 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 278549 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 278550 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 278551 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 278552 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 278553 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 278554 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 278555 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 278556 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 278557 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 278558 -NCIT:C165698 Metastatic Breast Adenocarcinoma 7 278559 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 8 278560 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 278561 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 278562 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 278563 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 278564 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 278565 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 278566 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 278567 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 278568 -NCIT:C165700 Advanced Breast Adenocarcinoma 8 278569 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 278570 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 278571 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 278572 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 278573 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 278574 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 278575 -NCIT:C168777 Metastatic HER2-Negative Breast Carcinoma 8 278576 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 278577 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 278578 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 278579 -NCIT:C179554 Metastatic HER2-Low Breast Carcinoma 8 278580 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 278581 -NCIT:C180924 Metastatic HER2-Positive Breast Carcinoma 8 278582 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 278583 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 278584 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 278585 -NCIT:C181787 Metastatic Breast Inflammatory Carcinoma 8 278586 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 9 278587 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 9 278588 -NCIT:C9246 Stage IIIB Breast Inflammatory Carcinoma 9 278589 -NCIT:C185880 Metastatic Hormone Receptor-Positive Breast Carcinoma 8 278590 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 278591 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 278592 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 278593 -NCIT:C190852 Metastatic Androgen Receptor-Positive Breast Carcinoma 9 278594 -NCIT:C190856 Metastatic Estrogen Receptor-Positive Breast Carcinoma 9 278595 -NCIT:C190677 Metastatic Hormone Receptor-Negative Breast Carcinoma 8 278596 -NCIT:C153348 Metastatic Triple-Negative Breast Carcinoma 9 278597 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 278598 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 10 278599 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 11 278600 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 10 278601 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 278602 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 278603 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 8 278604 -NCIT:C76326 Metastatic Breast Ductal Carcinoma 8 278605 -NCIT:C76328 Metastatic Breast Lobular Carcinoma 8 278606 -NCIT:C168978 Locally Advanced Adenocarcinoma 7 278607 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 8 278608 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 9 278609 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 9 278610 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 8 278611 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 278612 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 8 278613 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 278614 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 8 278615 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 9 278616 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 278617 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 278618 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 278619 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 8 278620 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 278621 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 278622 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 278623 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 278624 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 278625 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 278626 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 278627 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 278628 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 278629 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 8 278630 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 278631 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 9 278632 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 8 278633 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 278634 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 278635 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 278636 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 278637 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 278638 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 278639 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 278640 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 278641 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 8 278642 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 278643 -NCIT:C174045 Locally Advanced Endometrioid Adenocarcinoma 8 278644 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 278645 -NCIT:C174443 Locally Advanced Adrenal Cortical Carcinoma 8 278646 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 8 278647 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 8 278648 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 278649 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 278650 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 278651 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 278652 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 278653 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 278654 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 278655 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 278656 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 278657 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 278658 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 278659 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 278660 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 7 278661 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 278662 -NCIT:C170972 Metastatic Primary Peritoneal Adenocarcinoma 7 278663 -NCIT:C171019 Metastatic Primary Peritoneal Serous Adenocarcinoma 8 278664 -NCIT:C186453 Metastatic Primary Peritoneal High Grade Serous Adenocarcinoma 9 278665 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 7 278666 -NCIT:C173979 Metastatic Differentiated Thyroid Gland Carcinoma 7 278667 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 8 278668 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 9 278669 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 10 278670 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 8 278671 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 8 278672 -NCIT:C174046 Metastatic Poorly Differentiated Thyroid Gland Carcinoma 7 278673 -NCIT:C182104 Metastatic Appendix Adenocarcinoma 7 278674 -NCIT:C162274 Metastatic Appendix Mucinous Adenocarcinoma 8 278675 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 278676 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 7 278677 -NCIT:C185381 Metastatic Mesonephric Adenocarcinoma 7 278678 -NCIT:C27185 Disseminated Adenocarcinoma 7 278679 -NCIT:C3345 Pseudomyxoma Peritonei 7 278680 -NCIT:C179179 Recurrent Pseudomyxoma Peritonei 8 278681 -NCIT:C179180 Refractory Pseudomyxoma Peritonei 8 278682 -NCIT:C4039 Adenocarcinoma of Unknown Primary 7 278683 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 8 278684 -NCIT:C170962 Resectable Adenocarcinoma of Unknown Primary 8 278685 -NCIT:C66717 Metastatic Signet Ring Cell Carcinoma 7 278686 -NCIT:C3153 Krukenberg Tumor 8 278687 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 8 278688 -NCIT:C8933 Metastatic Pancreatic Adenocarcinoma 7 278689 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 8 278690 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 9 278691 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 9 278692 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 8 278693 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 9 278694 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 9 278695 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 9 278696 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 8 278697 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 9 278698 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 8 278699 -NCIT:C8934 Metastatic Small Intestinal Adenocarcinoma 7 278700 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 278701 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 7 278702 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 8 278703 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 278704 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 8 278705 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 278706 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 278707 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 8 278708 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 278709 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 278710 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 8 278711 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 278712 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 8 278713 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 8 278714 -NCIT:C8943 Metastatic Endometrioid Adenocarcinoma 7 278715 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 8 278716 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 278717 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 278718 -NCIT:C170807 Advanced Endometrioid Adenocarcinoma 8 278719 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 278720 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 278721 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 8 278722 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 278723 -NCIT:C174045 Locally Advanced Endometrioid Adenocarcinoma 8 278724 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 278725 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 7 278726 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 278727 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 7 278728 -NCIT:C156286 Advanced Prostate Adenocarcinoma 8 278729 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 278730 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 8 278731 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 278732 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 8 278733 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 278734 -NCIT:C9044 Metastatic Parathyroid Gland Carcinoma 7 278735 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 278736 -NCIT:C5628 Metastatic Carcinoma in the Skin 6 278737 -NCIT:C188113 Metastatic Squamous Cell Carcinoma in the Skin 7 278738 -NCIT:C28311 Metastatic Breast Carcinoma in the Skin 7 278739 -NCIT:C6334 Metastatic Carcinoma in the Uterine Cervix 6 278740 -NCIT:C9276 Metastatic Carcinoma in the Adrenal Medulla 6 278741 -NCIT:C96767 Metastatic Carcinoma in the Liver 6 278742 -NCIT:C157366 Colorectal Carcinoma Metastatic in the Liver 7 278743 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 8 278744 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 8 278745 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 8 278746 -NCIT:C36302 Breast Carcinoma Metastatic in the Liver 7 278747 -NCIT:C36306 Lung Carcinoma Metastatic in the Liver 7 278748 -NCIT:C3580 Metastatic Malignant Neoplasm in the Bone 5 278749 -NCIT:C185156 Plasma Cell Myeloma-Induced Bone Disease 6 278750 -NCIT:C36082 Metastatic Carcinoma in the Bone 6 278751 -NCIT:C36303 Breast Carcinoma Metastatic in the Bone 7 278752 -NCIT:C153226 Breast Carcinoma Metastatic in the Spine 8 278753 -NCIT:C36305 Lung Carcinoma Metastatic in the Bone 7 278754 -NCIT:C36308 Prostate Carcinoma Metastatic in the Bone 7 278755 -NCIT:C4881 Metastatic Malignant Neoplasm in the Spine 6 278756 -NCIT:C153226 Breast Carcinoma Metastatic in the Spine 7 278757 -NCIT:C35933 Distantly Metastatic Malignant Neoplasm 5 278758 -NCIT:C4582 Metastatic Malignant Neoplasm in the Bone Marrow 5 278759 -NCIT:C4584 Metastatic Malignant Neoplasm in the Testis 5 278760 -NCIT:C4586 Metastatic Malignant Neoplasm in the Eye 5 278761 -NCIT:C174496 Metastatic Malignant Neoplasm in the Conjunctiva 6 278762 -NCIT:C174507 Metastatic Malignant Neoplasm in the Uvea 6 278763 -NCIT:C6103 Metastatic Malignant Neoplasm in the Iris 7 278764 -NCIT:C8553 Metastatic Malignant Neoplasm in the Ciliary Body 7 278765 -NCIT:C8554 Metastatic Malignant Neoplasm in the Choroid 7 278766 -NCIT:C175470 Secondary Choroidal Non-Hodgkin Lymphoma 8 278767 -NCIT:C175327 Metastatic Malignant Neoplasm in the Lacrimal System 6 278768 -NCIT:C175329 Metastatic Malignant Neoplasm in the Lacrimal Gland 7 278769 -NCIT:C175330 Metastatic Malignant Neoplasm in the Lacrimal Drainage System 7 278770 -NCIT:C8555 Metastatic Malignant Neoplasm in the Retina 6 278771 -NCIT:C4887 Metastatic Malignant Neoplasm in the Trachea 5 278772 -NCIT:C4904 Metastatic Malignant Neoplasm in the Lymph Nodes 5 278773 -NCIT:C153227 Breast Carcinoma Metastatic in the Lymph Nodes 6 278774 -NCIT:C157452 Metastatic Squamous Cell Carcinoma in the Cervical Lymph Nodes 6 278775 -NCIT:C161587 Prostate Carcinoma Metastatic in the Lymph Nodes 6 278776 -NCIT:C175222 Metastatic Malignant Neoplasm in the Regional Lymph Nodes 6 278777 -NCIT:C175934 Metastatic Malignant Neoplasm in the Supraclavicular Lymph Nodes 6 278778 -NCIT:C183510 Metastatic Malignant Neoplasm in the Mediastinal Lymph Nodes 6 278779 -NCIT:C5629 Metastatic Malignant Neoplasm in the Skin 5 278780 -NCIT:C185155 Extramedullary Disease in Plasma Cell Myeloma Involving the Skin 6 278781 -NCIT:C5628 Metastatic Carcinoma in the Skin 6 278782 -NCIT:C188113 Metastatic Squamous Cell Carcinoma in the Skin 7 278783 -NCIT:C28311 Metastatic Breast Carcinoma in the Skin 7 278784 -NCIT:C6332 Metastatic Malignant Neoplasm in the Vulva 5 278785 -NCIT:C6333 Metastatic Malignant Neoplasm in the Vagina 5 278786 -NCIT:C6385 Metastatic Malignant Neoplasm in the Uterine Cervix 5 278787 -NCIT:C6334 Metastatic Carcinoma in the Uterine Cervix 6 278788 -NCIT:C7080 Metastatic Malignant Neoplasm in the Prostate Gland 5 278789 -NCIT:C39899 Secondary Prostate Urothelial Carcinoma 6 278790 -NCIT:C7456 Metastatic Malignant Neoplasm in the Ovary 5 278791 -NCIT:C3153 Krukenberg Tumor 6 278792 -NCIT:C7511 Metastatic Malignant Neoplasm in the Breast 5 278793 -NCIT:C188112 Metastatic Squamous Cell Carcinoma in the Breast 6 278794 -NCIT:C8524 Locally Advanced Malignant Neoplasm 5 278795 -NCIT:C133093 Locally Advanced Malignant Solid Neoplasm 6 278796 -NCIT:C146857 Locally Advanced Epithelioid Hemangioendothelioma 6 278797 -NCIT:C148130 Locally Advanced Carcinoma 6 278798 -NCIT:C148126 Locally Advanced Thymic Carcinoma 7 278799 -NCIT:C153206 Locally Advanced Lung Carcinoma 7 278800 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 8 278801 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 278802 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 278803 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 278804 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 278805 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 278806 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 278807 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 278808 -NCIT:C153213 Locally Advanced Head and Neck Carcinoma 7 278809 -NCIT:C158464 Locally Advanced Salivary Gland Carcinoma 8 278810 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 8 278811 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 278812 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 278813 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 278814 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 278815 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 278816 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 278817 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 278818 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 278819 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 278820 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 278821 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 278822 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 8 278823 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 278824 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 8 278825 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 278826 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 9 278827 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 278828 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 278829 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 9 278830 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 278831 -NCIT:C165562 Locally Advanced Lip and Oral Cavity Carcinoma 8 278832 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 9 278833 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 10 278834 -NCIT:C165563 Locally Advanced Paranasal Sinus Carcinoma 8 278835 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 278836 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 8 278837 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 278838 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 9 278839 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 278840 -NCIT:C153358 Locally Advanced Digestive System Carcinoma 7 278841 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 8 278842 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 278843 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 278844 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 278845 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 8 278846 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 9 278847 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 8 278848 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 278849 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 278850 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 278851 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 278852 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 278853 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 278854 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 278855 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 278856 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 278857 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 278858 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 278859 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 278860 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 278861 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 278862 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 278863 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 278864 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 278865 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 278866 -NCIT:C162772 Locally Advanced Gastric Carcinoma 8 278867 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 9 278868 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 10 278869 -NCIT:C168976 Locally Advanced Esophageal Carcinoma 8 278870 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 9 278871 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 10 278872 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 9 278873 -NCIT:C168977 Locally Advanced Anal Carcinoma 8 278874 -NCIT:C170459 Locally Advanced Pancreatobiliary Carcinoma 8 278875 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 9 278876 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 10 278877 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 11 278878 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 278879 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 12 278880 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 11 278881 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 278882 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 10 278883 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 11 278884 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 9 278885 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 10 278886 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 11 278887 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 11 278888 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 9 278889 -NCIT:C171298 Locally Advanced Liver Carcinoma 8 278890 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 9 278891 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 278892 -NCIT:C154321 Locally Advanced Squamous Cell Carcinoma 7 278893 -NCIT:C153182 Locally Advanced Skin Squamous Cell Carcinoma 8 278894 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 278895 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 278896 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 278897 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 8 278898 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 278899 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 278900 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 278901 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 278902 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 278903 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 278904 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 278905 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 278906 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 278907 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 278908 -NCIT:C165474 Locally Advanced Squamous Cell Carcinoma of Unknown Primary 8 278909 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 8 278910 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 278911 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 8 278912 -NCIT:C155698 Locally Advanced Unresectable Carcinoma 7 278913 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 8 278914 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 8 278915 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 8 278916 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 8 278917 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 278918 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 8 278919 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 278920 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 8 278921 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 278922 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 278923 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 8 278924 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 278925 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 278926 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 278927 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 278928 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 278929 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 278930 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 278931 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 8 278932 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 8 278933 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 8 278934 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 8 278935 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 8 278936 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 8 278937 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 8 278938 -NCIT:C156770 Locally Advanced Basal Cell Carcinoma 7 278939 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 8 278940 -NCIT:C158909 Locally Advanced Neuroendocrine Carcinoma 7 278941 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 278942 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 278943 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 8 278944 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 278945 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 278946 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 8 278947 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 278948 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 8 278949 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 278950 -NCIT:C160920 Locally Advanced Breast Carcinoma 7 278951 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 8 278952 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 278953 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 278954 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 278955 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 278956 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 8 278957 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 278958 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 278959 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 278960 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 278961 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 278962 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 278963 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 278964 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 278965 -NCIT:C167069 Locally Advanced Genitourinary System Carcinoma 7 278966 -NCIT:C156285 Locally Advanced Prostate Carcinoma 8 278967 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 9 278968 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 278969 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 9 278970 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 278971 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 9 278972 -NCIT:C156295 Locally Advanced Cervical Carcinoma 8 278973 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 278974 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 278975 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 9 278976 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 278977 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 278978 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 8 278979 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 278980 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 278981 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 278982 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 278983 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 278984 -NCIT:C167071 Locally Advanced Bladder Carcinoma 8 278985 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 278986 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 9 278987 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 8 278988 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 278989 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 278990 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 278991 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 278992 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 8 278993 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 9 278994 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 8 278995 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 278996 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 278997 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 9 278998 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 8 278999 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 8 279000 -NCIT:C170789 Locally Advanced Penile Carcinoma 8 279001 -NCIT:C172618 Locally Advanced Kidney Carcinoma 8 279002 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 279003 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 279004 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 279005 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 279006 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 279007 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 279008 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 279009 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 279010 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 279011 -NCIT:C167204 Locally Advanced Primary Peritoneal Carcinoma 7 279012 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 8 279013 -NCIT:C168978 Locally Advanced Adenocarcinoma 7 279014 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 8 279015 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 9 279016 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 9 279017 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 8 279018 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 279019 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 8 279020 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 279021 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 8 279022 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 9 279023 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 279024 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 279025 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 279026 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 8 279027 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 279028 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 279029 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 279030 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 279031 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 279032 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 279033 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 279034 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 279035 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 279036 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 8 279037 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 279038 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 9 279039 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 8 279040 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 279041 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 279042 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 279043 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 279044 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 279045 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 279046 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 279047 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 279048 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 8 279049 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 279050 -NCIT:C174045 Locally Advanced Endometrioid Adenocarcinoma 8 279051 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 279052 -NCIT:C174443 Locally Advanced Adrenal Cortical Carcinoma 8 279053 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 8 279054 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 8 279055 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 279056 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 279057 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 279058 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 279059 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 279060 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 279061 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 279062 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 279063 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 279064 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 279065 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 279066 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 279067 -NCIT:C175493 Locally Advanced Transitional Cell Carcinoma 7 279068 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 8 279069 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 279070 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 279071 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 279072 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 279073 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 279074 -NCIT:C175669 Locally Advanced Adenoid Cystic Carcinoma 7 279075 -NCIT:C148494 Locally Advanced Melanoma 6 279076 -NCIT:C171285 Locally Advanced Cutaneous Melanoma 7 279077 -NCIT:C171297 Locally Advanced Non-Cutaneous Melanoma 7 279078 -NCIT:C171296 Locally Advanced Ocular Melanoma 8 279079 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 9 279080 -NCIT:C153071 Locally Advanced Sarcoma 6 279081 -NCIT:C146856 Locally Advanced Angiosarcoma 7 279082 -NCIT:C153066 Locally Advanced Soft Tissue Sarcoma 7 279083 -NCIT:C150739 Locally Advanced Gastrointestinal Stromal Tumor 8 279084 -NCIT:C153476 Locally Advanced Unresectable Soft Tissue Sarcoma 8 279085 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 9 279086 -NCIT:C160919 Locally Advanced Undifferentiated Pleomorphic Sarcoma 8 279087 -NCIT:C164076 Locally Advanced Alveolar Soft Part Sarcoma 8 279088 -NCIT:C166415 Locally Advanced Rhabdomyosarcoma 8 279089 -NCIT:C167378 Locally Advanced Epithelioid Sarcoma 8 279090 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 8 279091 -NCIT:C171399 Locally Advanced Synovial Sarcoma 8 279092 -NCIT:C180875 Locally Advanced Desmoplastic Small Round Cell Tumor 8 279093 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 8 279094 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 9 279095 -NCIT:C153070 Locally Advanced Bone Sarcoma 7 279096 -NCIT:C153475 Locally Advanced Unresectable Bone Sarcoma 8 279097 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 9 279098 -NCIT:C153477 Locally Advanced Unresectable Sarcoma 7 279099 -NCIT:C153475 Locally Advanced Unresectable Bone Sarcoma 8 279100 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 9 279101 -NCIT:C153476 Locally Advanced Unresectable Soft Tissue Sarcoma 8 279102 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 9 279103 -NCIT:C160916 Locally Advanced Liposarcoma 7 279104 -NCIT:C164071 Locally Advanced Dedifferentiated Liposarcoma 8 279105 -NCIT:C160917 Locally Advanced Leiomyosarcoma 7 279106 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 8 279107 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 9 279108 -NCIT:C164074 Locally Advanced Malignant Peripheral Nerve Sheath Tumor 7 279109 -NCIT:C164080 Locally Advanced Ewing Sarcoma 7 279110 -NCIT:C168668 Locally Advanced High Grade Sarcoma 7 279111 -NCIT:C170953 Locally Advanced Chondrosarcoma 7 279112 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 8 279113 -NCIT:C171317 Locally Advanced Fibrosarcoma 7 279114 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 8 279115 -NCIT:C175665 Locally Advanced Osteosarcoma 7 279116 -NCIT:C153278 Locally Advanced Unresectable Malignant Neoplasm 6 279117 -NCIT:C153477 Locally Advanced Unresectable Sarcoma 7 279118 -NCIT:C153475 Locally Advanced Unresectable Bone Sarcoma 8 279119 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 9 279120 -NCIT:C153476 Locally Advanced Unresectable Soft Tissue Sarcoma 8 279121 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 9 279122 -NCIT:C155698 Locally Advanced Unresectable Carcinoma 7 279123 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 8 279124 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 8 279125 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 8 279126 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 8 279127 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 279128 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 8 279129 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 279130 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 8 279131 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 279132 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 279133 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 8 279134 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 279135 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 279136 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 279137 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 279138 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 279139 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 279140 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 279141 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 8 279142 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 8 279143 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 8 279144 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 8 279145 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 8 279146 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 8 279147 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 8 279148 -NCIT:C158090 Locally Advanced Unresectable Digestive System Neuroendocrine Neoplasm 7 279149 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 7 279150 -NCIT:C153324 Locally Advanced Chordoma 6 279151 -NCIT:C166182 Locally Advanced Primary Malignant Central Nervous System Neoplasm 6 279152 -NCIT:C180874 Locally Advanced Primary Malignant Brain Neoplasm 7 279153 -NCIT:C180876 Locally Advanced Glioma 7 279154 -NCIT:C170980 Locally Advanced Glioblastoma 8 279155 -NCIT:C167332 Locally Advanced Neuroendocrine Neoplasm 6 279156 -NCIT:C133713 Locally Advanced Paraganglioma 7 279157 -NCIT:C157129 Locally Advanced Adrenal Gland Pheochromocytoma 8 279158 -NCIT:C158909 Locally Advanced Neuroendocrine Carcinoma 7 279159 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 279160 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 279161 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 8 279162 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 279163 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 279164 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 8 279165 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 279166 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 8 279167 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 279168 -NCIT:C167333 Locally Advanced Neuroendocrine Tumor 7 279169 -NCIT:C163956 Locally Advanced Pituitary Neuroendocrine Tumor 8 279170 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 8 279171 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 8 279172 -NCIT:C187328 Locally Advanced Carcinoid Tumor 8 279173 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 9 279174 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 8 279175 -NCIT:C176715 Locally Advanced Lung Neuroendocrine Neoplasm 7 279176 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 279177 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 8 279178 -NCIT:C178271 Locally Advanced Digestive System Neuroendocrine Neoplasm 7 279179 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 279180 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 279181 -NCIT:C158090 Locally Advanced Unresectable Digestive System Neuroendocrine Neoplasm 8 279182 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 8 279183 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 8 279184 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 8 279185 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 8 279186 -NCIT:C170460 Locally Advanced Malignant Female Reproductive System Neoplasm 6 279187 -NCIT:C156295 Locally Advanced Cervical Carcinoma 7 279188 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 8 279189 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 279190 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 8 279191 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 279192 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 8 279193 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 7 279194 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 279195 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 279196 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 279197 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 8 279198 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 7 279199 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 8 279200 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 7 279201 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 8 279202 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 279203 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 8 279204 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 7 279205 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 7 279206 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 7 279207 -NCIT:C170470 Locally Advanced Malignant Head and Neck Neoplasm 6 279208 -NCIT:C153213 Locally Advanced Head and Neck Carcinoma 7 279209 -NCIT:C158464 Locally Advanced Salivary Gland Carcinoma 8 279210 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 8 279211 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 279212 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 279213 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 279214 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 279215 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 279216 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 279217 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 279218 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 279219 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 279220 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 279221 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 279222 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 8 279223 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 279224 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 8 279225 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 279226 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 9 279227 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 279228 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 279229 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 9 279230 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 279231 -NCIT:C165562 Locally Advanced Lip and Oral Cavity Carcinoma 8 279232 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 9 279233 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 10 279234 -NCIT:C165563 Locally Advanced Paranasal Sinus Carcinoma 8 279235 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 279236 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 8 279237 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 279238 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 9 279239 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 279240 -NCIT:C171284 Locally Advanced Malignant Skin Neoplasm 6 279241 -NCIT:C153182 Locally Advanced Skin Squamous Cell Carcinoma 7 279242 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 279243 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 7 279244 -NCIT:C171285 Locally Advanced Cutaneous Melanoma 7 279245 -NCIT:C180374 Early Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 7 279246 -NCIT:C175663 Locally Advanced Malignant Glomus Tumor 6 279247 -NCIT:C175935 Locally Advanced Malignant Mesothelioma 6 279248 -NCIT:C175936 Locally Advanced Pleural Malignant Mesothelioma 7 279249 -NCIT:C176994 Locally Advanced Lymphoma 6 279250 -NCIT:C180374 Early Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 7 279251 -NCIT:C179181 Locally Advanced Malignant Digestive System Neoplasm 6 279252 -NCIT:C153358 Locally Advanced Digestive System Carcinoma 7 279253 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 8 279254 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 279255 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 279256 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 279257 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 8 279258 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 9 279259 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 8 279260 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 279261 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 279262 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 279263 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 279264 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 279265 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 279266 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 279267 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 279268 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 279269 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 279270 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 279271 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 279272 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 279273 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 279274 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 279275 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 279276 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 279277 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 279278 -NCIT:C162772 Locally Advanced Gastric Carcinoma 8 279279 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 9 279280 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 10 279281 -NCIT:C168976 Locally Advanced Esophageal Carcinoma 8 279282 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 9 279283 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 10 279284 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 9 279285 -NCIT:C168977 Locally Advanced Anal Carcinoma 8 279286 -NCIT:C170459 Locally Advanced Pancreatobiliary Carcinoma 8 279287 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 9 279288 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 10 279289 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 11 279290 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 279291 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 12 279292 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 11 279293 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 279294 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 10 279295 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 11 279296 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 9 279297 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 10 279298 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 11 279299 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 11 279300 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 9 279301 -NCIT:C171298 Locally Advanced Liver Carcinoma 8 279302 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 9 279303 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 279304 -NCIT:C178271 Locally Advanced Digestive System Neuroendocrine Neoplasm 7 279305 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 279306 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 279307 -NCIT:C158090 Locally Advanced Unresectable Digestive System Neuroendocrine Neoplasm 8 279308 -NCIT:C167324 Locally Advanced Pancreatic Neuroendocrine Tumor 8 279309 -NCIT:C167330 Locally Advanced Midgut Neuroendocrine Tumor 8 279310 -NCIT:C187332 Locally Advanced Digestive System Neuroendocrine Tumor G1 8 279311 -NCIT:C187341 Locally Advanced Digestive System Neuroendocrine Tumor G2 8 279312 -NCIT:C8512 Malignant Neoplasm with Regional Lymph Node Involvement 6 279313 -NCIT:C8544 Metastatic Malignant Neoplasm in the Epididymis 5 279314 -NCIT:C8546 Metastatic Malignant Neoplasm in the Placenta 5 279315 -NCIT:C8547 Metastatic Malignant Neoplasm in the Nervous System 5 279316 -NCIT:C4015 Metastatic Malignant Neoplasm in the Central Nervous System 6 279317 -NCIT:C133501 Breast Carcinoma Metastatic in the Central Nervous System 7 279318 -NCIT:C36301 Breast Carcinoma Metastatic in the Brain 8 279319 -NCIT:C133503 Lung Carcinoma Metastatic in the Central Nervous System 7 279320 -NCIT:C36304 Lung Carcinoma Metastatic in the Brain 8 279321 -NCIT:C133504 Melanoma Metastatic in the Central Nervous System 7 279322 -NCIT:C179206 Melanoma Metastatic in the Brain 8 279323 -NCIT:C155786 Metastatic Malignant Neoplasm in the Sellar Region 7 279324 -NCIT:C6805 Metastatic Malignant Neoplasm in the Pituitary Gland 8 279325 -NCIT:C175220 Metastatic Malignant Neoplasm in the Visual Pathway 7 279326 -NCIT:C3813 Metastatic Malignant Neoplasm in the Brain 7 279327 -NCIT:C179206 Melanoma Metastatic in the Brain 8 279328 -NCIT:C187211 Metastatic Childhood Malignant Neoplasm in the Brain 8 279329 -NCIT:C36301 Breast Carcinoma Metastatic in the Brain 8 279330 -NCIT:C36304 Lung Carcinoma Metastatic in the Brain 8 279331 -NCIT:C5057 Secondary Cerebral Hodgkin Lymphoma 8 279332 -NCIT:C5816 Metastatic Adult Malignant Neoplasm in the Brain 8 279333 -NCIT:C8550 Metastatic Malignant Neoplasm in the Brain Stem 8 279334 -NCIT:C3814 Metastatic Malignant Neoplasm in the Leptomeninges 7 279335 -NCIT:C173916 Recurrent Metastatic Malignant Neoplasm in the Leptomeninges 8 279336 -NCIT:C185039 Extramedullary Disease in Plasma Cell Myeloma Involving the Leptomeninges 8 279337 -NCIT:C5399 Medulloblastoma with Leptomeningeal Spread 8 279338 -NCIT:C5400 Central Nervous System Embryonal Tumor, Not Otherwise Specified with Leptomeningeal Spread 8 279339 -NCIT:C94754 Meningeal Leukemia 8 279340 -NCIT:C9111 Meningeal Chronic Myelogenous Leukemia, BCR-ABL1 Positive 9 279341 -NCIT:C4585 Metastatic Malignant Neoplasm in the Spinal Cord 7 279342 -NCIT:C5439 Drop Metastasis in the Spinal Cord 8 279343 -NCIT:C87797 Secondary Central Nervous System Lymphoma 7 279344 -NCIT:C114949 Secondary Central Nervous System Hodgkin Lymphoma 8 279345 -NCIT:C5057 Secondary Cerebral Hodgkin Lymphoma 9 279346 -NCIT:C114950 Secondary Central Nervous System Non-Hodgkin Lymphoma 8 279347 -NCIT:C8566 Metastatic Malignant Neoplasm of Unknown Primary 5 279348 -NCIT:C132676 Unknown Primary Tumor (Except for EBV-Related and HPV-Related Tumors) and Metastatic Cervical Adenopathy by AJCC v8 Stage 6 279349 -NCIT:C132677 Stage III Unknown Primary Tumor (Except for EBV-Related and HPV-Related Tumors) and Metastatic Cervical Adenopathy AJCC v8 7 279350 -NCIT:C132678 Stage IVA Unknown Primary Tumor (Except for EBV-Related and HPV-Related Tumors) and Metastatic Cervical Adenopathy AJCC v8 7 279351 -NCIT:C132679 Stage IVB Unknown Primary Tumor (Except for EBV-Related and HPV-Related Tumors) and Metastatic Cervical Adenopathy AJCC v8 7 279352 -NCIT:C132680 Stage IVC Unknown Primary Tumor (Except for EBV-Related and HPV-Related Tumors) and Metastatic Cervical Adenopathy AJCC v8 7 279353 -NCIT:C154473 Melanoma of Unknown Primary 6 279354 -NCIT:C3812 Carcinoma of Unknown Primary 6 279355 -NCIT:C162595 Head and Neck Carcinoma of Unknown Primary 7 279356 -NCIT:C173585 Neck Carcinoma of Unknown Primary 8 279357 -NCIT:C7713 Neck Squamous Cell Carcinoma of Unknown Primary 9 279358 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 10 279359 -NCIT:C187051 Human Papillomavirus-Related Head and Neck Squamous Cell Carcinoma of Unknown Primary 8 279360 -NCIT:C190149 Human Papillomavirus-Negative Head and Neck Squamous Cell Carcinoma of Unknown Primary 8 279361 -NCIT:C163975 Neuroendocrine Carcinoma of Unknown Primary 7 279362 -NCIT:C170960 Advanced Carcinoma Of Unknown Primary 7 279363 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 8 279364 -NCIT:C170961 Resectable Carcinoma of Unknown Primary 7 279365 -NCIT:C170962 Resectable Adenocarcinoma of Unknown Primary 8 279366 -NCIT:C4039 Adenocarcinoma of Unknown Primary 7 279367 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 8 279368 -NCIT:C170962 Resectable Adenocarcinoma of Unknown Primary 8 279369 -NCIT:C8099 Squamous Cell Carcinoma of Unknown Primary 7 279370 -NCIT:C165474 Locally Advanced Squamous Cell Carcinoma of Unknown Primary 8 279371 -NCIT:C187051 Human Papillomavirus-Related Head and Neck Squamous Cell Carcinoma of Unknown Primary 8 279372 -NCIT:C190149 Human Papillomavirus-Negative Head and Neck Squamous Cell Carcinoma of Unknown Primary 8 279373 -NCIT:C7713 Neck Squamous Cell Carcinoma of Unknown Primary 8 279374 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 9 279375 -NCIT:C8100 Undifferentiated Carcinoma of Unknown Primary 7 279376 -NCIT:C9181 Recurrent Carcinoma of Unknown Primary 7 279377 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 8 279378 -NCIT:C8610 Metastatic Malignant Neoplasm in the Adrenal Gland 5 279379 -NCIT:C27381 Metastatic Carcinoma in the Adrenal Cortex 6 279380 -NCIT:C9276 Metastatic Carcinoma in the Adrenal Medulla 6 279381 -NCIT:C8615 Metastatic Malignant Neoplasm in the Abdominal Cavity 5 279382 -NCIT:C4583 Metastatic Malignant Neoplasm in the Peritoneum 6 279383 -NCIT:C179654 Metastatic Carcinoma in the Peritoneum 7 279384 -NCIT:C27382 Peritoneal Carcinomatosis 8 279385 -NCIT:C3345 Pseudomyxoma Peritonei 9 279386 -NCIT:C179179 Recurrent Pseudomyxoma Peritonei 10 279387 -NCIT:C179180 Refractory Pseudomyxoma Peritonei 10 279388 -NCIT:C179657 Metastatic Sarcoma in the Peritoneum 7 279389 -NCIT:C179656 Peritoneal Sarcomatosis 8 279390 -NCIT:C8925 Metastatic Melanoma 5 279391 -NCIT:C133504 Melanoma Metastatic in the Central Nervous System 6 279392 -NCIT:C179206 Melanoma Metastatic in the Brain 7 279393 -NCIT:C148494 Locally Advanced Melanoma 6 279394 -NCIT:C171285 Locally Advanced Cutaneous Melanoma 7 279395 -NCIT:C171297 Locally Advanced Non-Cutaneous Melanoma 7 279396 -NCIT:C171296 Locally Advanced Ocular Melanoma 8 279397 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 9 279398 -NCIT:C153169 Advanced Melanoma 6 279399 -NCIT:C171572 Advanced Cutaneous Melanoma 7 279400 -NCIT:C155311 Advanced Cutaneous Melanoma of the Extremity 8 279401 -NCIT:C180895 Advanced Non-Cutaneous Melanoma 7 279402 -NCIT:C180896 Advanced Mucosal Melanoma 8 279403 -NCIT:C190137 Advanced Ocular Melanoma 8 279404 -NCIT:C148515 Advanced Uveal Melanoma 9 279405 -NCIT:C150130 Uveal Melanoma Metastatic in the Liver 10 279406 -NCIT:C154473 Melanoma of Unknown Primary 6 279407 -NCIT:C156072 Metastatic Cutaneous Melanoma 6 279408 -NCIT:C171285 Locally Advanced Cutaneous Melanoma 7 279409 -NCIT:C171572 Advanced Cutaneous Melanoma 7 279410 -NCIT:C155311 Advanced Cutaneous Melanoma of the Extremity 8 279411 -NCIT:C179427 Metastatic Acral Lentiginous Melanoma 7 279412 -NCIT:C182020 Recurrent Metastatic Melanoma 6 279413 -NCIT:C182024 Refractory Metastatic Melanoma 6 279414 -NCIT:C7092 Metastatic Non-Cutaneous Melanoma 6 279415 -NCIT:C169086 Metastatic Mucosal Melanoma 7 279416 -NCIT:C180896 Advanced Mucosal Melanoma 8 279417 -NCIT:C171295 Metastatic Ocular Melanoma 7 279418 -NCIT:C148514 Metastatic Uveal Melanoma 8 279419 -NCIT:C148515 Advanced Uveal Melanoma 9 279420 -NCIT:C150130 Uveal Melanoma Metastatic in the Liver 10 279421 -NCIT:C169085 Metastatic Choroid Melanoma 9 279422 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 9 279423 -NCIT:C171296 Locally Advanced Ocular Melanoma 8 279424 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 9 279425 -NCIT:C182127 Metastatic Conjunctival Melanoma 8 279426 -NCIT:C190137 Advanced Ocular Melanoma 8 279427 -NCIT:C148515 Advanced Uveal Melanoma 9 279428 -NCIT:C150130 Uveal Melanoma Metastatic in the Liver 10 279429 -NCIT:C171297 Locally Advanced Non-Cutaneous Melanoma 7 279430 -NCIT:C171296 Locally Advanced Ocular Melanoma 8 279431 -NCIT:C190138 Locally Advanced Unresectable Uveal Melanoma 9 279432 -NCIT:C180895 Advanced Non-Cutaneous Melanoma 7 279433 -NCIT:C180896 Advanced Mucosal Melanoma 8 279434 -NCIT:C190137 Advanced Ocular Melanoma 8 279435 -NCIT:C148515 Advanced Uveal Melanoma 9 279436 -NCIT:C150130 Uveal Melanoma Metastatic in the Liver 10 279437 -NCIT:C9270 Advanced Malignant Neoplasm 5 279438 -NCIT:C129707 Advanced Malignant Solid Neoplasm 6 279439 -NCIT:C157335 Advanced Extracranial Malignant Solid Neoplasm 7 279440 -NCIT:C187210 Advanced Childhood Malignant Solid Neoplasm 7 279441 -NCIT:C148065 Advanced B-Cell Malignant Neoplasm 6 279442 -NCIT:C171264 Advanced Diffuse Large B-Cell Lymphoma 7 279443 -NCIT:C172359 Advanced Follicular Lymphoma 7 279444 -NCIT:C172360 Advanced Marginal Zone Lymphoma 7 279445 -NCIT:C153169 Advanced Melanoma 6 279446 -NCIT:C171572 Advanced Cutaneous Melanoma 7 279447 -NCIT:C155311 Advanced Cutaneous Melanoma of the Extremity 8 279448 -NCIT:C180895 Advanced Non-Cutaneous Melanoma 7 279449 -NCIT:C180896 Advanced Mucosal Melanoma 8 279450 -NCIT:C190137 Advanced Ocular Melanoma 8 279451 -NCIT:C148515 Advanced Uveal Melanoma 9 279452 -NCIT:C150130 Uveal Melanoma Metastatic in the Liver 10 279453 -NCIT:C153171 Advanced Carcinoma 6 279454 -NCIT:C129861 Advanced Head and Neck Carcinoma 7 279455 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 8 279456 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 279457 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 279458 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 279459 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 279460 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 279461 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 279462 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 279463 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 8 279464 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 279465 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 279466 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 279467 -NCIT:C170784 Advanced Pharyngeal Carcinoma 8 279468 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 9 279469 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 279470 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 279471 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 279472 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 279473 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 279474 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 9 279475 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 279476 -NCIT:C177723 Advanced Salivary Gland Carcinoma 8 279477 -NCIT:C153203 Advanced Lung Carcinoma 7 279478 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 279479 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 8 279480 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 279481 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 279482 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 279483 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 279484 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 279485 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 279486 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 279487 -NCIT:C180922 Advanced Bronchogenic Carcinoma 8 279488 -NCIT:C155870 Advanced Neuroendocrine Carcinoma 7 279489 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 279490 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 279491 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 279492 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 279493 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 279494 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 279495 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 279496 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 279497 -NCIT:C165300 Advanced Merkel Cell Carcinoma 8 279498 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 8 279499 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 279500 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 279501 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 279502 -NCIT:C156746 Advanced Digestive System Carcinoma 7 279503 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 279504 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 279505 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 279506 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 8 279507 -NCIT:C160599 Advanced Esophageal Carcinoma 8 279508 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 9 279509 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 9 279510 -NCIT:C162475 Advanced Colorectal Carcinoma 8 279511 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 279512 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 279513 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 279514 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 279515 -NCIT:C167238 Advanced Colon Carcinoma 9 279516 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 279517 -NCIT:C170777 Advanced Rectal Carcinoma 9 279518 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 279519 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 279520 -NCIT:C165299 Advanced Gastric Carcinoma 8 279521 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 279522 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 279523 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 279524 -NCIT:C166255 Advanced Gastric Adenocarcinoma 9 279525 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 10 279526 -NCIT:C167336 Advanced Hepatocellular Carcinoma 8 279527 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 279528 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 279529 -NCIT:C170515 Advanced Anal Carcinoma 8 279530 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 279531 -NCIT:C171330 Advanced Pancreatobiliary Carcinoma 8 279532 -NCIT:C165452 Advanced Pancreatic Carcinoma 9 279533 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 10 279534 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 11 279535 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 9 279536 -NCIT:C171331 Advanced Biliary Tract Carcinoma 9 279537 -NCIT:C142870 Advanced Bile Duct Carcinoma 10 279538 -NCIT:C162752 Advanced Cholangiocarcinoma 11 279539 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 279540 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 279541 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 279542 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 11 279543 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 279544 -NCIT:C162755 Advanced Gallbladder Carcinoma 10 279545 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 279546 -NCIT:C159556 Advanced Adenocarcinoma 7 279547 -NCIT:C153170 Advanced Renal Cell Carcinoma 8 279548 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 279549 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 279550 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 279551 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 279552 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 279553 -NCIT:C156286 Advanced Prostate Adenocarcinoma 8 279554 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 279555 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 279556 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 8 279557 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 8 279558 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 9 279559 -NCIT:C162752 Advanced Cholangiocarcinoma 8 279560 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 9 279561 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 9 279562 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 9 279563 -NCIT:C165700 Advanced Breast Adenocarcinoma 8 279564 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 279565 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 279566 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 279567 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 279568 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 279569 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 279570 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 279571 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 279572 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 279573 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 279574 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 279575 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 279576 -NCIT:C167336 Advanced Hepatocellular Carcinoma 8 279577 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 279578 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 279579 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 8 279580 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 279581 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 279582 -NCIT:C170807 Advanced Endometrioid Adenocarcinoma 8 279583 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 279584 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 279585 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 279586 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 279587 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 279588 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 279589 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 8 279590 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 8 279591 -NCIT:C176727 Advanced Lung Adenocarcinoma 8 279592 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 279593 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 279594 -NCIT:C191863 Advanced Adrenal Cortical Carcinoma 8 279595 -NCIT:C159903 Advanced Thymic Carcinoma 7 279596 -NCIT:C160298 Advanced NUT Carcinoma 7 279597 -NCIT:C162648 Advanced Breast Carcinoma 7 279598 -NCIT:C165700 Advanced Breast Adenocarcinoma 8 279599 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 279600 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 279601 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 279602 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 279603 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 279604 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 279605 -NCIT:C162653 Advanced Squamous Cell Carcinoma 7 279606 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 8 279607 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 279608 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 279609 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 279610 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 279611 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 279612 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 279613 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 279614 -NCIT:C168542 Advanced Skin Squamous Cell Carcinoma 8 279615 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 279616 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 8 279617 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 279618 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 279619 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 279620 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 8 279621 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 279622 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 279623 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 279624 -NCIT:C164012 Advanced Adenoid Cystic Carcinoma 7 279625 -NCIT:C164143 Advanced Genitourinary System Carcinoma 7 279626 -NCIT:C148493 Advanced Urothelial Carcinoma 8 279627 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 279628 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 279629 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 279630 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 279631 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 279632 -NCIT:C156284 Advanced Prostate Carcinoma 8 279633 -NCIT:C156286 Advanced Prostate Adenocarcinoma 9 279634 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 279635 -NCIT:C156294 Advanced Cervical Carcinoma 8 279636 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 279637 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 279638 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 279639 -NCIT:C159676 Advanced Endometrial Carcinoma 8 279640 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 279641 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 279642 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 279643 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 279644 -NCIT:C165458 Advanced Ovarian Carcinoma 8 279645 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 279646 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 279647 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 279648 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 279649 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 279650 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 279651 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 279652 -NCIT:C167338 Advanced Bladder Carcinoma 8 279653 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 279654 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 8 279655 -NCIT:C170786 Advanced Vulvar Carcinoma 8 279656 -NCIT:C170788 Advanced Vaginal Carcinoma 8 279657 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 279658 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 279659 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 279660 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 279661 -NCIT:C170790 Advanced Penile Carcinoma 8 279662 -NCIT:C172617 Advanced Kidney Carcinoma 8 279663 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 279664 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 279665 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 279666 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 279667 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 279668 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 279669 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 279670 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 279671 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 279672 -NCIT:C167396 Advanced Primary Peritoneal Carcinoma 7 279673 -NCIT:C170960 Advanced Carcinoma Of Unknown Primary 7 279674 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 8 279675 -NCIT:C172091 Advanced Transitional Cell Carcinoma 7 279676 -NCIT:C148493 Advanced Urothelial Carcinoma 8 279677 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 279678 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 279679 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 279680 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 279681 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 279682 -NCIT:C172362 Advanced Basal Cell Carcinoma 7 279683 -NCIT:C153172 Advanced Lymphoma 6 279684 -NCIT:C172371 Advanced Non-Hodgkin Lymphoma 7 279685 -NCIT:C166180 Advanced Anaplastic Large Cell Lymphoma 8 279686 -NCIT:C171264 Advanced Diffuse Large B-Cell Lymphoma 8 279687 -NCIT:C172359 Advanced Follicular Lymphoma 8 279688 -NCIT:C172360 Advanced Marginal Zone Lymphoma 8 279689 -NCIT:C172361 Advanced Transformed Non-Hodgkin Lymphoma 8 279690 -NCIT:C172442 Advanced Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 8 279691 -NCIT:C53283 Advanced Favorable Non-Hodgkin Lymphoma 8 279692 -NCIT:C53284 Advanced Unfavorable Non-Hodgkin Lymphoma 8 279693 -NCIT:C172373 Advanced Hodgkin Lymphoma 7 279694 -NCIT:C68662 Advanced Favorable Hodgkin Lymphoma 8 279695 -NCIT:C68665 Advanced Unfavorable Hodgkin Lymphoma 8 279696 -NCIT:C153185 Advanced Sarcoma 6 279697 -NCIT:C155649 Advanced Sarcoma of the Extremity 7 279698 -NCIT:C162194 Advanced Soft Tissue Sarcoma 7 279699 -NCIT:C153184 Advanced Synovial Sarcoma 8 279700 -NCIT:C156476 Advanced Kaposi Sarcoma 8 279701 -NCIT:C161586 Advanced Clear Cell Sarcoma of Soft Tissue 8 279702 -NCIT:C164246 Advanced Malignant PEComa 8 279703 -NCIT:C165781 Advanced Undifferentiated Pleomorphic Sarcoma 8 279704 -NCIT:C167380 Advanced Epithelioid Sarcoma 8 279705 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 8 279706 -NCIT:C171304 Advanced Myxofibrosarcoma 8 279707 -NCIT:C173502 Advanced Gastrointestinal Stromal Tumor 8 279708 -NCIT:C188198 Advanced Alveolar Soft Part Sarcoma 8 279709 -NCIT:C162762 Advanced Bone Sarcoma 7 279710 -NCIT:C165780 Advanced Leiomyosarcoma 7 279711 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 8 279712 -NCIT:C168701 Advanced Liposarcoma 7 279713 -NCIT:C162763 Advanced Myxoid Liposarcoma 8 279714 -NCIT:C168715 Advanced Dedifferentiated Liposarcoma 8 279715 -NCIT:C182026 Advanced Pleomorphic Liposarcoma 8 279716 -NCIT:C168714 Advanced Malignant Peripheral Nerve Sheath Tumor 7 279717 -NCIT:C168716 Advanced Fibrosarcoma 7 279718 -NCIT:C171304 Advanced Myxofibrosarcoma 8 279719 -NCIT:C168720 Advanced Angiosarcoma 7 279720 -NCIT:C156486 Advanced Neuroendocrine Neoplasm 6 279721 -NCIT:C154621 Advanced Neuroendocrine Tumor 7 279722 -NCIT:C140328 Advanced Non-Functioning Neuroendocrine Tumor 8 279723 -NCIT:C156487 Advanced Carcinoid Tumor 8 279724 -NCIT:C177245 Advanced Lung Carcinoid Tumor 9 279725 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 9 279726 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 279727 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 8 279728 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 279729 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 279730 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 8 279731 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 279732 -NCIT:C155870 Advanced Neuroendocrine Carcinoma 7 279733 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 279734 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 279735 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 279736 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 279737 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 279738 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 279739 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 279740 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 279741 -NCIT:C165300 Advanced Merkel Cell Carcinoma 8 279742 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 8 279743 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 279744 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 279745 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 279746 -NCIT:C158089 Advanced Digestive System Neuroendocrine Neoplasm 7 279747 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 279748 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 279749 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 279750 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 279751 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 279752 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 279753 -NCIT:C165448 Advanced Pancreatic Neuroendocrine Neoplasm 8 279754 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 9 279755 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 279756 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 10 279757 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 8 279758 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 279759 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 8 279760 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 279761 -NCIT:C160852 Advanced Paraganglioma 7 279762 -NCIT:C160853 Advanced Adrenal Gland Pheochromocytoma 8 279763 -NCIT:C165446 Advanced Lung Neuroendocrine Neoplasm 7 279764 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 279765 -NCIT:C177245 Advanced Lung Carcinoid Tumor 8 279766 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 279767 -NCIT:C180871 Advanced Thymic Neuroendocrine Neoplasm 7 279768 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 7 279769 -NCIT:C159904 Advanced Malignant Thymoma 6 279770 -NCIT:C168721 Advanced Epithelioid Hemangioendothelioma 6 279771 -NCIT:C170469 Advanced Malignant Head and Neck Neoplasm 6 279772 -NCIT:C129861 Advanced Head and Neck Carcinoma 7 279773 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 8 279774 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 279775 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 279776 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 279777 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 279778 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 279779 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 279780 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 279781 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 8 279782 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 279783 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 279784 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 279785 -NCIT:C170784 Advanced Pharyngeal Carcinoma 8 279786 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 9 279787 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 279788 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 279789 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 279790 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 279791 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 279792 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 9 279793 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 279794 -NCIT:C177723 Advanced Salivary Gland Carcinoma 8 279795 -NCIT:C170812 Advanced Malignant Skin Neoplasm 6 279796 -NCIT:C165300 Advanced Merkel Cell Carcinoma 7 279797 -NCIT:C168542 Advanced Skin Squamous Cell Carcinoma 7 279798 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 279799 -NCIT:C171572 Advanced Cutaneous Melanoma 7 279800 -NCIT:C155311 Advanced Cutaneous Melanoma of the Extremity 8 279801 -NCIT:C172442 Advanced Primary Cutaneous T-Cell Non-Hodgkin Lymphoma 7 279802 -NCIT:C170928 Advanced Carcinosarcoma 6 279803 -NCIT:C170930 Advanced Malignant Mixed Mesodermal (Mullerian) Tumor 7 279804 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 8 279805 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 8 279806 -NCIT:C170966 Advanced Primary Malignant Central Nervous System Neoplasm 6 279807 -NCIT:C170978 Advanced Glioblastoma 7 279808 -NCIT:C175549 Advanced Primary Malignant Brain Neoplasm 7 279809 -NCIT:C187213 Advanced Childhood Malignant Brain Neoplasm 8 279810 -NCIT:C170967 Advanced Malignant Germ Cell Tumor 6 279811 -NCIT:C170958 Advanced Platinum-Resistant Malignant Germ Cell Tumor 7 279812 -NCIT:C187316 Advanced Malignant Testicular Germ Cell Tumor 7 279813 -NCIT:C173333 Advanced Chordoma 6 279814 -NCIT:C174568 Advanced Rhabdoid Tumor 6 279815 -NCIT:C175547 Advanced Malignant Digestive System Neoplasm 6 279816 -NCIT:C156746 Advanced Digestive System Carcinoma 7 279817 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 279818 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 279819 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 279820 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 8 279821 -NCIT:C160599 Advanced Esophageal Carcinoma 8 279822 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 9 279823 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 9 279824 -NCIT:C162475 Advanced Colorectal Carcinoma 8 279825 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 279826 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 279827 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 279828 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 279829 -NCIT:C167238 Advanced Colon Carcinoma 9 279830 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 279831 -NCIT:C170777 Advanced Rectal Carcinoma 9 279832 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 279833 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 279834 -NCIT:C165299 Advanced Gastric Carcinoma 8 279835 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 279836 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 279837 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 279838 -NCIT:C166255 Advanced Gastric Adenocarcinoma 9 279839 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 10 279840 -NCIT:C167336 Advanced Hepatocellular Carcinoma 8 279841 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 279842 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 279843 -NCIT:C170515 Advanced Anal Carcinoma 8 279844 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 279845 -NCIT:C171330 Advanced Pancreatobiliary Carcinoma 8 279846 -NCIT:C165452 Advanced Pancreatic Carcinoma 9 279847 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 10 279848 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 11 279849 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 9 279850 -NCIT:C171331 Advanced Biliary Tract Carcinoma 9 279851 -NCIT:C142870 Advanced Bile Duct Carcinoma 10 279852 -NCIT:C162752 Advanced Cholangiocarcinoma 11 279853 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 279854 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 279855 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 279856 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 11 279857 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 279858 -NCIT:C162755 Advanced Gallbladder Carcinoma 10 279859 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 279860 -NCIT:C158089 Advanced Digestive System Neuroendocrine Neoplasm 7 279861 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 279862 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 279863 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 279864 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 279865 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 279866 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 279867 -NCIT:C165448 Advanced Pancreatic Neuroendocrine Neoplasm 8 279868 -NCIT:C156489 Advanced Pancreatic Neuroendocrine Tumor 9 279869 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 10 279870 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 10 279871 -NCIT:C179418 Advanced Digestive System Neuroendocrine Tumor G1 8 279872 -NCIT:C190713 Advanced Pancreatic Neuroendocrine Tumor G1 9 279873 -NCIT:C190711 Advanced Digestive System Neuroendocrine Tumor G2 8 279874 -NCIT:C190715 Advanced Pancreatic Neuroendocrine Tumor G2 9 279875 -NCIT:C176679 Advanced Malignant Small Intestinal Neoplasm 7 279876 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 279877 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 279878 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 279879 -NCIT:C176859 Advanced Malignant Genitourinary System Neoplasm 6 279880 -NCIT:C164143 Advanced Genitourinary System Carcinoma 7 279881 -NCIT:C148493 Advanced Urothelial Carcinoma 8 279882 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 279883 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 279884 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 279885 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 279886 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 279887 -NCIT:C156284 Advanced Prostate Carcinoma 8 279888 -NCIT:C156286 Advanced Prostate Adenocarcinoma 9 279889 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 279890 -NCIT:C156294 Advanced Cervical Carcinoma 8 279891 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 279892 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 279893 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 279894 -NCIT:C159676 Advanced Endometrial Carcinoma 8 279895 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 279896 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 279897 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 279898 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 279899 -NCIT:C165458 Advanced Ovarian Carcinoma 8 279900 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 279901 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 279902 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 279903 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 279904 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 279905 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 279906 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 279907 -NCIT:C167338 Advanced Bladder Carcinoma 8 279908 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 279909 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 8 279910 -NCIT:C170786 Advanced Vulvar Carcinoma 8 279911 -NCIT:C170788 Advanced Vaginal Carcinoma 8 279912 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 279913 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 279914 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 279915 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 279916 -NCIT:C170790 Advanced Penile Carcinoma 8 279917 -NCIT:C172617 Advanced Kidney Carcinoma 8 279918 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 279919 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 279920 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 279921 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 279922 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 279923 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 279924 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 279925 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 279926 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 279927 -NCIT:C167260 Advanced Malignant Female Reproductive System Neoplasm 7 279928 -NCIT:C156294 Advanced Cervical Carcinoma 8 279929 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 279930 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 279931 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 279932 -NCIT:C165458 Advanced Ovarian Carcinoma 8 279933 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 279934 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 279935 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 279936 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 279937 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 279938 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 279939 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 279940 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 8 279941 -NCIT:C170786 Advanced Vulvar Carcinoma 8 279942 -NCIT:C170788 Advanced Vaginal Carcinoma 8 279943 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 279944 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 279945 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 279946 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 279947 -NCIT:C170930 Advanced Malignant Mixed Mesodermal (Mullerian) Tumor 8 279948 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 9 279949 -NCIT:C170934 Advanced Ovarian Carcinosarcoma 9 279950 -NCIT:C172450 Advanced Uterine Corpus Cancer 8 279951 -NCIT:C158383 Advanced Uterine Corpus Carcinosarcoma 9 279952 -NCIT:C159676 Advanced Endometrial Carcinoma 9 279953 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 10 279954 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 11 279955 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 11 279956 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 10 279957 -NCIT:C187316 Advanced Malignant Testicular Germ Cell Tumor 7 279958 -NCIT:C176863 Advanced Malignant Thoracic Neoplasm 6 279959 -NCIT:C153203 Advanced Lung Carcinoma 7 279960 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 279961 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 8 279962 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 279963 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 279964 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 279965 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 279966 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 279967 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 279968 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 279969 -NCIT:C180922 Advanced Bronchogenic Carcinoma 8 279970 -NCIT:C159903 Advanced Thymic Carcinoma 7 279971 -NCIT:C165446 Advanced Lung Neuroendocrine Neoplasm 7 279972 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 279973 -NCIT:C177245 Advanced Lung Carcinoid Tumor 8 279974 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 8 279975 -NCIT:C8703 Advanced Pericardial Malignant Mesothelioma 7 279976 -NCIT:C8706 Advanced Pleural Malignant Mesothelioma 7 279977 -NCIT:C183305 Advanced Malignant Abdominal Neoplasm 6 279978 -NCIT:C7865 Advanced Malignant Mesothelioma 6 279979 -NCIT:C175937 Advanced Epithelioid Mesothelioma 7 279980 -NCIT:C8703 Advanced Pericardial Malignant Mesothelioma 7 279981 -NCIT:C8704 Advanced Peritoneal Malignant Mesothelioma 7 279982 -NCIT:C8706 Advanced Pleural Malignant Mesothelioma 7 279983 -NCIT:C36310 Secondary Carcinoma 4 279984 -NCIT:C167344 Spiradenocylindrocarcinoma 5 279985 -NCIT:C3482 Metastatic Carcinoma 5 279986 -NCIT:C126465 Metastatic Head and Neck Carcinoma 6 279987 -NCIT:C129861 Advanced Head and Neck Carcinoma 7 279988 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 8 279989 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 279990 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 279991 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 279992 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 279993 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 279994 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 279995 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 279996 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 8 279997 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 279998 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 279999 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 280000 -NCIT:C170784 Advanced Pharyngeal Carcinoma 8 280001 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 9 280002 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 280003 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 280004 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 280005 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 280006 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 280007 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 9 280008 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 280009 -NCIT:C177723 Advanced Salivary Gland Carcinoma 8 280010 -NCIT:C133193 Metastatic Thyroid Gland Carcinoma 7 280011 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 8 280012 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 280013 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 280014 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 8 280015 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 280016 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 280017 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 280018 -NCIT:C170831 Metastatic Thyroid Gland Anaplastic Carcinoma 8 280019 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 280020 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 280021 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 8 280022 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 280023 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 9 280024 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 280025 -NCIT:C173979 Metastatic Differentiated Thyroid Gland Carcinoma 8 280026 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 9 280027 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 10 280028 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 11 280029 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 9 280030 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 280031 -NCIT:C174046 Metastatic Poorly Differentiated Thyroid Gland Carcinoma 8 280032 -NCIT:C148153 Metastatic Head and Neck Squamous Cell Carcinoma 7 280033 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 8 280034 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 280035 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 280036 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 280037 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 280038 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 280039 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 280040 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 280041 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 280042 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 280043 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 280044 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 8 280045 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 280046 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 280047 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 280048 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 8 280049 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 280050 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 280051 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 280052 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 280053 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 280054 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 280055 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 280056 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 280057 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 280058 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 280059 -NCIT:C162882 Metastatic Sinonasal Squamous Cell Carcinoma 8 280060 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 280061 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 280062 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 280063 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 9 280064 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 280065 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 9 280066 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 280067 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 280068 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 280069 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 280070 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 8 280071 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 8 280072 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 280073 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 280074 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 280075 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 280076 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 280077 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 280078 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 280079 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 280080 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 280081 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 280082 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 280083 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 280084 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 280085 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 280086 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 280087 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 280088 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 280089 -NCIT:C153213 Locally Advanced Head and Neck Carcinoma 7 280090 -NCIT:C158464 Locally Advanced Salivary Gland Carcinoma 8 280091 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 8 280092 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 280093 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 280094 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 280095 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 280096 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 280097 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 280098 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 280099 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 280100 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 280101 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 280102 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 280103 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 8 280104 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 280105 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 8 280106 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 280107 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 9 280108 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 280109 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 280110 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 9 280111 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 280112 -NCIT:C165562 Locally Advanced Lip and Oral Cavity Carcinoma 8 280113 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 9 280114 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 10 280115 -NCIT:C165563 Locally Advanced Paranasal Sinus Carcinoma 8 280116 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 280117 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 8 280118 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 280119 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 9 280120 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 280121 -NCIT:C156080 Metastatic Pharyngeal Carcinoma 7 280122 -NCIT:C156079 Metastatic Nasopharyngeal Carcinoma 8 280123 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 280124 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 280125 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 280126 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 280127 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 280128 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 280129 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 9 280130 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 280131 -NCIT:C156081 Metastatic Hypopharyngeal Carcinoma 8 280132 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 280133 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 280134 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 280135 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 9 280136 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 280137 -NCIT:C156082 Metastatic Oropharyngeal Carcinoma 8 280138 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 280139 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 280140 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 280141 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 280142 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 9 280143 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 280144 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 280145 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 9 280146 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 280147 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 8 280148 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 280149 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 9 280150 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 280151 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 280152 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 9 280153 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 280154 -NCIT:C170784 Advanced Pharyngeal Carcinoma 8 280155 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 9 280156 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 280157 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 280158 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 280159 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 280160 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 280161 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 9 280162 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 280163 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 8 280164 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 280165 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 280166 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 280167 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 280168 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 280169 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 280170 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 280171 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 280172 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 280173 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 280174 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 280175 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 280176 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 280177 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 280178 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 280179 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 280180 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 280181 -NCIT:C156085 Metastatic Laryngeal Carcinoma 7 280182 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 8 280183 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 280184 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 280185 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 8 280186 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 280187 -NCIT:C156086 Metastatic Lip and Oral Cavity Carcinoma 7 280188 -NCIT:C156087 Metastatic Oral Cavity Carcinoma 8 280189 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 9 280190 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 10 280191 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 10 280192 -NCIT:C156089 Metastatic Oral Cavity Adenoid Cystic Carcinoma 9 280193 -NCIT:C156090 Metastatic Oral Cavity Mucoepidermoid Carcinoma 9 280194 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 9 280195 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 10 280196 -NCIT:C156088 Metastatic Lip Carcinoma 8 280197 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 9 280198 -NCIT:C165562 Locally Advanced Lip and Oral Cavity Carcinoma 8 280199 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 9 280200 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 10 280201 -NCIT:C158463 Metastatic Salivary Gland Carcinoma 7 280202 -NCIT:C158464 Locally Advanced Salivary Gland Carcinoma 8 280203 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 8 280204 -NCIT:C177723 Advanced Salivary Gland Carcinoma 8 280205 -NCIT:C5899 Stage IV Major Salivary Gland Carcinoma with Metastasis 8 280206 -NCIT:C9044 Metastatic Parathyroid Gland Carcinoma 7 280207 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 280208 -NCIT:C129828 Metastatic Transitional Cell Carcinoma 6 280209 -NCIT:C126109 Metastatic Urothelial Carcinoma 7 280210 -NCIT:C148493 Advanced Urothelial Carcinoma 8 280211 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 280212 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 280213 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 280214 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 280215 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 280216 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 280217 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 280218 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 280219 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 280220 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 280221 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 280222 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 280223 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 280224 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 280225 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 280226 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 280227 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 280228 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 280229 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 280230 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 8 280231 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 280232 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 280233 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 280234 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 280235 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 280236 -NCIT:C191692 Metastatic Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 280237 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 280238 -NCIT:C191693 Metastatic Giant Cell Urothelial Carcinoma 8 280239 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 280240 -NCIT:C191694 Metastatic Lipid-Rich Urothelial Carcinoma 8 280241 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 280242 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 8 280243 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 280244 -NCIT:C191696 Metastatic Nested Urothelial Carcinoma 8 280245 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 280246 -NCIT:C191697 Metastatic Plasmacytoid Urothelial Carcinoma 8 280247 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 280248 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 8 280249 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 280250 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 8 280251 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 280252 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 280253 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 280254 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 9 280255 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 280256 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 280257 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 280258 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 280259 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 280260 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 280261 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 280262 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 280263 -NCIT:C172091 Advanced Transitional Cell Carcinoma 7 280264 -NCIT:C148493 Advanced Urothelial Carcinoma 8 280265 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 280266 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 280267 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 280268 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 280269 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 280270 -NCIT:C175493 Locally Advanced Transitional Cell Carcinoma 7 280271 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 8 280272 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 280273 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 280274 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 280275 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 280276 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 280277 -NCIT:C133839 Metastatic Digestive System Carcinoma 6 280278 -NCIT:C150577 Metastatic Gastroesophageal Junction Adenocarcinoma 7 280279 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 8 280280 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 8 280281 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 9 280282 -NCIT:C151904 Refractory Metastatic Digestive System Carcinoma 7 280283 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 8 280284 -NCIT:C151905 Recurrent Metastatic Digestive System Carcinoma 7 280285 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 8 280286 -NCIT:C153320 Metastatic Gastric Carcinoma 7 280287 -NCIT:C153319 Metastatic Gastric Adenocarcinoma 8 280288 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 9 280289 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 10 280290 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 10 280291 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 9 280292 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 10 280293 -NCIT:C165630 Metastatic Proximal Gastric Adenocarcinoma 9 280294 -NCIT:C166121 Oligometastatic Gastric Adenocarcinoma 9 280295 -NCIT:C166255 Advanced Gastric Adenocarcinoma 9 280296 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 10 280297 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 8 280298 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 280299 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 280300 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 280301 -NCIT:C162772 Locally Advanced Gastric Carcinoma 8 280302 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 9 280303 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 10 280304 -NCIT:C165299 Advanced Gastric Carcinoma 8 280305 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 280306 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 280307 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 280308 -NCIT:C166255 Advanced Gastric Adenocarcinoma 9 280309 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 10 280310 -NCIT:C181856 Recurrent Metastatic Gastric Carcinoma 8 280311 -NCIT:C153358 Locally Advanced Digestive System Carcinoma 7 280312 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 8 280313 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 280314 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 280315 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 280316 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 8 280317 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 9 280318 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 8 280319 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 280320 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 280321 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 280322 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 280323 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 280324 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 280325 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 280326 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 280327 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 280328 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 280329 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 280330 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 280331 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 280332 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 280333 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 280334 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 280335 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 280336 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 280337 -NCIT:C162772 Locally Advanced Gastric Carcinoma 8 280338 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 9 280339 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 10 280340 -NCIT:C168976 Locally Advanced Esophageal Carcinoma 8 280341 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 9 280342 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 10 280343 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 9 280344 -NCIT:C168977 Locally Advanced Anal Carcinoma 8 280345 -NCIT:C170459 Locally Advanced Pancreatobiliary Carcinoma 8 280346 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 9 280347 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 10 280348 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 11 280349 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 280350 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 12 280351 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 11 280352 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 280353 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 10 280354 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 11 280355 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 9 280356 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 10 280357 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 11 280358 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 11 280359 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 9 280360 -NCIT:C171298 Locally Advanced Liver Carcinoma 8 280361 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 9 280362 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 280363 -NCIT:C154088 Metastatic Liver Carcinoma 7 280364 -NCIT:C154091 Metastatic Hepatocellular Carcinoma 8 280365 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 9 280366 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 10 280367 -NCIT:C167336 Advanced Hepatocellular Carcinoma 9 280368 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 10 280369 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 10 280370 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 9 280371 -NCIT:C171298 Locally Advanced Liver Carcinoma 8 280372 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 9 280373 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 280374 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 8 280375 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 280376 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 9 280377 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 7 280378 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 8 280379 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 280380 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 280381 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 280382 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 8 280383 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 280384 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 280385 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 280386 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 280387 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 280388 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 280389 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 280390 -NCIT:C156073 Metastatic Esophageal Carcinoma 7 280391 -NCIT:C156074 Metastatic Esophageal Adenocarcinoma 8 280392 -NCIT:C166120 Oligometastatic Esophageal Adenocarcinoma 9 280393 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 9 280394 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 9 280395 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 10 280396 -NCIT:C172249 Metastatic Distal Esophagus Adenocarcinoma 9 280397 -NCIT:C156075 Metastatic Esophageal Squamous Cell Carcinoma 8 280398 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 9 280399 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 9 280400 -NCIT:C160599 Advanced Esophageal Carcinoma 8 280401 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 9 280402 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 9 280403 -NCIT:C168976 Locally Advanced Esophageal Carcinoma 8 280404 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 9 280405 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 10 280406 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 9 280407 -NCIT:C156096 Metastatic Colorectal Carcinoma 7 280408 -NCIT:C142867 Metastatic Microsatellite Stable Colorectal Carcinoma 8 280409 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 280410 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 280411 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 280412 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 280413 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 280414 -NCIT:C153224 Colorectal Carcinoma Metastatic in the Lung 8 280415 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 9 280416 -NCIT:C156097 Metastatic Colon Carcinoma 8 280417 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 280418 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 280419 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 280420 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 280421 -NCIT:C167238 Advanced Colon Carcinoma 9 280422 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 280423 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 280424 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 280425 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 280426 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 280427 -NCIT:C178268 Metastatic Microsatellite Stable Colon Carcinoma 9 280428 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 280429 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 9 280430 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 9 280431 -NCIT:C156098 Metastatic Rectal Carcinoma 8 280432 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 9 280433 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 280434 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 280435 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 280436 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 280437 -NCIT:C170777 Advanced Rectal Carcinoma 9 280438 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 280439 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 280440 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 280441 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 280442 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 280443 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 280444 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 9 280445 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 280446 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 280447 -NCIT:C157366 Colorectal Carcinoma Metastatic in the Liver 8 280448 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 9 280449 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 9 280450 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 9 280451 -NCIT:C161048 Metastatic Colorectal Adenocarcinoma 8 280452 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 9 280453 -NCIT:C160819 Metastatic Colon Adenocarcinoma 9 280454 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 280455 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 280456 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 280457 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 9 280458 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 280459 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 280460 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 280461 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 9 280462 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 280463 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 280464 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 280465 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 280466 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 280467 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 280468 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 280469 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 280470 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 280471 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 280472 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 280473 -NCIT:C162475 Advanced Colorectal Carcinoma 8 280474 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 280475 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 280476 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 280477 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 280478 -NCIT:C167238 Advanced Colon Carcinoma 9 280479 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 280480 -NCIT:C170777 Advanced Rectal Carcinoma 9 280481 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 280482 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 280483 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 8 280484 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 280485 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 280486 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 280487 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 280488 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 280489 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 280490 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 280491 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 280492 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 280493 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 280494 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 280495 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 280496 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 280497 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 280498 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 280499 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 280500 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 280501 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 280502 -NCIT:C185165 Oligometastatic Colorectal Carcinoma 8 280503 -NCIT:C156746 Advanced Digestive System Carcinoma 7 280504 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 280505 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 280506 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 280507 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 8 280508 -NCIT:C160599 Advanced Esophageal Carcinoma 8 280509 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 9 280510 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 9 280511 -NCIT:C162475 Advanced Colorectal Carcinoma 8 280512 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 280513 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 280514 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 280515 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 280516 -NCIT:C167238 Advanced Colon Carcinoma 9 280517 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 280518 -NCIT:C170777 Advanced Rectal Carcinoma 9 280519 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 280520 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 280521 -NCIT:C165299 Advanced Gastric Carcinoma 8 280522 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 280523 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 280524 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 280525 -NCIT:C166255 Advanced Gastric Adenocarcinoma 9 280526 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 10 280527 -NCIT:C167336 Advanced Hepatocellular Carcinoma 8 280528 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 280529 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 280530 -NCIT:C170515 Advanced Anal Carcinoma 8 280531 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 280532 -NCIT:C171330 Advanced Pancreatobiliary Carcinoma 8 280533 -NCIT:C165452 Advanced Pancreatic Carcinoma 9 280534 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 10 280535 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 11 280536 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 9 280537 -NCIT:C171331 Advanced Biliary Tract Carcinoma 9 280538 -NCIT:C142870 Advanced Bile Duct Carcinoma 10 280539 -NCIT:C162752 Advanced Cholangiocarcinoma 11 280540 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 280541 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 280542 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 280543 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 11 280544 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 280545 -NCIT:C162755 Advanced Gallbladder Carcinoma 10 280546 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 280547 -NCIT:C162275 Metastatic Appendix Carcinoma 7 280548 -NCIT:C182104 Metastatic Appendix Adenocarcinoma 8 280549 -NCIT:C162274 Metastatic Appendix Mucinous Adenocarcinoma 9 280550 -NCIT:C182105 Advanced Appendix Adenocarcinoma 9 280551 -NCIT:C163967 Metastatic Digestive System Mixed Adenoneuroendocrine Carcinoma 7 280552 -NCIT:C170458 Metastatic Pancreatobiliary Carcinoma 7 280553 -NCIT:C156069 Metastatic Pancreatic Carcinoma 8 280554 -NCIT:C165452 Advanced Pancreatic Carcinoma 9 280555 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 10 280556 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 11 280557 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 9 280558 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 10 280559 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 11 280560 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 11 280561 -NCIT:C190770 Metastatic Pancreatic Adenosquamous Carcinoma 9 280562 -NCIT:C190771 Metastatic Pancreatic Squamous Cell Carcinoma 9 280563 -NCIT:C8933 Metastatic Pancreatic Adenocarcinoma 9 280564 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 10 280565 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 11 280566 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 11 280567 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 10 280568 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 11 280569 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 11 280570 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 11 280571 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 10 280572 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 11 280573 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 10 280574 -NCIT:C162751 Metastatic Biliary Tract Carcinoma 8 280575 -NCIT:C142869 Metastatic Bile Duct Carcinoma 9 280576 -NCIT:C142870 Advanced Bile Duct Carcinoma 10 280577 -NCIT:C162752 Advanced Cholangiocarcinoma 11 280578 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 280579 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 280580 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 280581 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 11 280582 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 280583 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 10 280584 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 11 280585 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 280586 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 12 280587 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 11 280588 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 280589 -NCIT:C157623 Metastatic Cholangiocarcinoma 10 280590 -NCIT:C162752 Advanced Cholangiocarcinoma 11 280591 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 280592 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 280593 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 280594 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 11 280595 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 280596 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 12 280597 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 11 280598 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 280599 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 11 280600 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 280601 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 280602 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 11 280603 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 280604 -NCIT:C185071 Metastatic Extrahepatic Bile Duct Carcinoma 10 280605 -NCIT:C175503 Metastatic Distal Bile Duct Carcinoma 11 280606 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 12 280607 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 13 280608 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 280609 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 11 280610 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 280611 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 11 280612 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 280613 -NCIT:C162754 Metastatic Gallbladder Carcinoma 9 280614 -NCIT:C162755 Advanced Gallbladder Carcinoma 10 280615 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 10 280616 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 11 280617 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 9 280618 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 10 280619 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 11 280620 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 280621 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 12 280622 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 11 280623 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 280624 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 10 280625 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 11 280626 -NCIT:C171331 Advanced Biliary Tract Carcinoma 9 280627 -NCIT:C142870 Advanced Bile Duct Carcinoma 10 280628 -NCIT:C162752 Advanced Cholangiocarcinoma 11 280629 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 280630 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 280631 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 280632 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 11 280633 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 280634 -NCIT:C162755 Advanced Gallbladder Carcinoma 10 280635 -NCIT:C170459 Locally Advanced Pancreatobiliary Carcinoma 8 280636 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 9 280637 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 10 280638 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 11 280639 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 280640 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 12 280641 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 11 280642 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 280643 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 10 280644 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 11 280645 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 9 280646 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 10 280647 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 11 280648 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 11 280649 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 9 280650 -NCIT:C171326 Metastatic Ampulla of Vater Carcinoma 8 280651 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 9 280652 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 9 280653 -NCIT:C171330 Advanced Pancreatobiliary Carcinoma 8 280654 -NCIT:C165452 Advanced Pancreatic Carcinoma 9 280655 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 10 280656 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 11 280657 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 9 280658 -NCIT:C171331 Advanced Biliary Tract Carcinoma 9 280659 -NCIT:C142870 Advanced Bile Duct Carcinoma 10 280660 -NCIT:C162752 Advanced Cholangiocarcinoma 11 280661 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 280662 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 280663 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 280664 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 11 280665 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 280666 -NCIT:C162755 Advanced Gallbladder Carcinoma 10 280667 -NCIT:C170514 Metastatic Anal Carcinoma 7 280668 -NCIT:C168977 Locally Advanced Anal Carcinoma 8 280669 -NCIT:C169103 Metastatic Anal Squamous Cell Carcinoma 8 280670 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 9 280671 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 10 280672 -NCIT:C170515 Advanced Anal Carcinoma 8 280673 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 280674 -NCIT:C5612 Metastatic Anal Canal Carcinoma 8 280675 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 9 280676 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 10 280677 -NCIT:C8637 Metastatic Small Intestinal Carcinoma 7 280678 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 8 280679 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 280680 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 280681 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 280682 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 280683 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 280684 -NCIT:C8934 Metastatic Small Intestinal Adenocarcinoma 8 280685 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 280686 -NCIT:C146893 Metastatic Genitourinary System Carcinoma 6 280687 -NCIT:C126109 Metastatic Urothelial Carcinoma 7 280688 -NCIT:C148493 Advanced Urothelial Carcinoma 8 280689 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 280690 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 280691 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 280692 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 280693 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 280694 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 280695 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 280696 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 280697 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 280698 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 280699 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 280700 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 280701 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 280702 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 280703 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 280704 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 280705 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 280706 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 280707 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 280708 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 8 280709 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 280710 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 280711 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 280712 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 280713 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 280714 -NCIT:C191692 Metastatic Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 280715 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 280716 -NCIT:C191693 Metastatic Giant Cell Urothelial Carcinoma 8 280717 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 280718 -NCIT:C191694 Metastatic Lipid-Rich Urothelial Carcinoma 8 280719 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 280720 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 8 280721 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 280722 -NCIT:C191696 Metastatic Nested Urothelial Carcinoma 8 280723 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 280724 -NCIT:C191697 Metastatic Plasmacytoid Urothelial Carcinoma 8 280725 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 280726 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 8 280727 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 280728 -NCIT:C8064 Metastatic Renal Pelvis and Ureter Urothelial Carcinoma 8 280729 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 280730 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 280731 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 280732 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 9 280733 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 280734 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 280735 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 280736 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 280737 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 280738 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 280739 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 280740 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 280741 -NCIT:C153387 Metastatic Cervical Carcinoma 7 280742 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 8 280743 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 280744 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 280745 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 8 280746 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 280747 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 280748 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 280749 -NCIT:C153390 Metastatic Cervical Adenosquamous Carcinoma 8 280750 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 280751 -NCIT:C156294 Advanced Cervical Carcinoma 8 280752 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 280753 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 280754 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 280755 -NCIT:C156295 Locally Advanced Cervical Carcinoma 8 280756 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 280757 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 280758 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 9 280759 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 280760 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 280761 -NCIT:C156062 Metastatic Bladder Carcinoma 7 280762 -NCIT:C150513 Metastatic Bladder Urothelial Carcinoma 8 280763 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 9 280764 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 9 280765 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 9 280766 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 9 280767 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 9 280768 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 9 280769 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 9 280770 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 280771 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 280772 -NCIT:C169043 Metastatic Urachal Urothelial Carcinoma 9 280773 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 8 280774 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 8 280775 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 8 280776 -NCIT:C167071 Locally Advanced Bladder Carcinoma 8 280777 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 280778 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 9 280779 -NCIT:C167338 Advanced Bladder Carcinoma 8 280780 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 280781 -NCIT:C190772 Metastatic Non-Muscle Invasive Bladder Carcinoma 8 280782 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 9 280783 -NCIT:C156063 Metastatic Fallopian Tube Carcinoma 7 280784 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 8 280785 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 9 280786 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 8 280787 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 8 280788 -NCIT:C156064 Metastatic Ovarian Carcinoma 7 280789 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 8 280790 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 280791 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 280792 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 280793 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 9 280794 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 280795 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 280796 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 9 280797 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 280798 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 280799 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 280800 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 280801 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 280802 -NCIT:C165458 Advanced Ovarian Carcinoma 8 280803 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 280804 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 280805 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 280806 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 280807 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 280808 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 280809 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 280810 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 8 280811 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 280812 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 280813 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 280814 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 280815 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 8 280816 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 280817 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 8 280818 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 280819 -NCIT:C172234 Metastatic Ovarian Undifferentiated Carcinoma 8 280820 -NCIT:C179460 Metastatic Platinum-Resistant Ovarian Carcinoma 8 280821 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 280822 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 280823 -NCIT:C180333 Metastatic Microsatellite Stable Ovarian Carcinoma 8 280824 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 280825 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 8 280826 -NCIT:C27391 Metastatic Ovarian Small Cell Carcinoma, Hypercalcemic Type 8 280827 -NCIT:C156065 Metastatic Vaginal Carcinoma 7 280828 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 8 280829 -NCIT:C170788 Advanced Vaginal Carcinoma 8 280830 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 280831 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 280832 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 280833 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 280834 -NCIT:C181028 Metastatic Vaginal Adenosquamous Carcinoma 8 280835 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 280836 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 8 280837 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 280838 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 280839 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 8 280840 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 280841 -NCIT:C156066 Metastatic Vulvar Carcinoma 7 280842 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 8 280843 -NCIT:C170786 Advanced Vulvar Carcinoma 8 280844 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 8 280845 -NCIT:C156068 Metastatic Endometrial Carcinoma 7 280846 -NCIT:C159676 Advanced Endometrial Carcinoma 8 280847 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 280848 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 280849 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 280850 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 280851 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 8 280852 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 280853 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 280854 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 9 280855 -NCIT:C175597 Metastatic Endometrial Adenosquamous Carcinoma 8 280856 -NCIT:C180336 Metastatic Microsatellite Stable Endometrial Carcinoma 8 280857 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 280858 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 8 280859 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 9 280860 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 280861 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 280862 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 280863 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 280864 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 9 280865 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 280866 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 280867 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 280868 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 280869 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 9 280870 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 9 280871 -NCIT:C164143 Advanced Genitourinary System Carcinoma 7 280872 -NCIT:C148493 Advanced Urothelial Carcinoma 8 280873 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 280874 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 280875 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 280876 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 280877 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 280878 -NCIT:C156284 Advanced Prostate Carcinoma 8 280879 -NCIT:C156286 Advanced Prostate Adenocarcinoma 9 280880 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 280881 -NCIT:C156294 Advanced Cervical Carcinoma 8 280882 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 280883 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 280884 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 280885 -NCIT:C159676 Advanced Endometrial Carcinoma 8 280886 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 280887 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 280888 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 280889 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 280890 -NCIT:C165458 Advanced Ovarian Carcinoma 8 280891 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 280892 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 280893 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 280894 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 280895 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 280896 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 280897 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 280898 -NCIT:C167338 Advanced Bladder Carcinoma 8 280899 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 280900 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 8 280901 -NCIT:C170786 Advanced Vulvar Carcinoma 8 280902 -NCIT:C170788 Advanced Vaginal Carcinoma 8 280903 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 280904 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 280905 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 280906 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 280907 -NCIT:C170790 Advanced Penile Carcinoma 8 280908 -NCIT:C172617 Advanced Kidney Carcinoma 8 280909 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 280910 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 280911 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 280912 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 280913 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 280914 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 280915 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 280916 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 280917 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 280918 -NCIT:C167069 Locally Advanced Genitourinary System Carcinoma 7 280919 -NCIT:C156285 Locally Advanced Prostate Carcinoma 8 280920 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 9 280921 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 280922 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 9 280923 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 280924 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 9 280925 -NCIT:C156295 Locally Advanced Cervical Carcinoma 8 280926 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 280927 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 280928 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 9 280929 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 280930 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 280931 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 8 280932 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 280933 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 280934 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 280935 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 280936 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 280937 -NCIT:C167071 Locally Advanced Bladder Carcinoma 8 280938 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 280939 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 9 280940 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 8 280941 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 280942 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 280943 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 280944 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 280945 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 8 280946 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 9 280947 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 8 280948 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 280949 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 280950 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 9 280951 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 8 280952 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 8 280953 -NCIT:C170789 Locally Advanced Penile Carcinoma 8 280954 -NCIT:C172618 Locally Advanced Kidney Carcinoma 8 280955 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 280956 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 280957 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 280958 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 280959 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 280960 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 280961 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 280962 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 280963 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 280964 -NCIT:C185381 Metastatic Mesonephric Adenocarcinoma 7 280965 -NCIT:C27784 Metastatic Penile Carcinoma 7 280966 -NCIT:C170789 Locally Advanced Penile Carcinoma 8 280967 -NCIT:C170790 Advanced Penile Carcinoma 8 280968 -NCIT:C182111 Metastatic Squamous Cell Carcinoma of the Penis 8 280969 -NCIT:C27806 Metastatic Kidney Carcinoma 7 280970 -NCIT:C150595 Metastatic Renal Cell Carcinoma 8 280971 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 280972 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 280973 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 280974 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 280975 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 280976 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 280977 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 9 280978 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 280979 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 280980 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 9 280981 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 280982 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 280983 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 9 280984 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 280985 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 280986 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 280987 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 280988 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 280989 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 280990 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 280991 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 280992 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 280993 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 9 280994 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 280995 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 280996 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 9 280997 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 280998 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 280999 -NCIT:C157755 Metastatic Kidney Medullary Carcinoma 8 281000 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 281001 -NCIT:C163965 Metastatic Renal Pelvis Carcinoma 8 281002 -NCIT:C150514 Metastatic Renal Pelvis Urothelial Carcinoma 9 281003 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 281004 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 281005 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 281006 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 281007 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 281008 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 281009 -NCIT:C172617 Advanced Kidney Carcinoma 8 281010 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 281011 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 281012 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 281013 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 281014 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 281015 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 281016 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 281017 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 281018 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 281019 -NCIT:C172618 Locally Advanced Kidney Carcinoma 8 281020 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 281021 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 281022 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 281023 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 281024 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 281025 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 281026 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 281027 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 281028 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 281029 -NCIT:C27818 Metastatic Ureter Carcinoma 7 281030 -NCIT:C150515 Metastatic Ureter Urothelial Carcinoma 8 281031 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 9 281032 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 9 281033 -NCIT:C27819 Metastatic Urethral Carcinoma 7 281034 -NCIT:C150512 Metastatic Urethral Urothelial Carcinoma 8 281035 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 281036 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 281037 -NCIT:C8946 Metastatic Prostate Carcinoma 7 281038 -NCIT:C130234 Castration-Resistant Prostate Carcinoma 8 281039 -NCIT:C136972 Intermediate Atypical Prostate Carcinoma 9 281040 -NCIT:C157497 Castration-Resistant Prostate Carcinoma Refractory to Second-Generation Androgen Receptor Axis-Targeted Agents 9 281041 -NCIT:C161609 Double-Negative Prostate Carcinoma 9 281042 -NCIT:C171576 Aggressive Variant Prostate Carcinoma 9 281043 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 9 281044 -NCIT:C132881 Prostate Carcinoma Metastatic in the Soft Tissue 8 281045 -NCIT:C148536 Castration-Naive Prostate Carcinoma 8 281046 -NCIT:C153336 Castration-Sensitive Prostate Carcinoma 8 281047 -NCIT:C156284 Advanced Prostate Carcinoma 8 281048 -NCIT:C156286 Advanced Prostate Adenocarcinoma 9 281049 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 281050 -NCIT:C156285 Locally Advanced Prostate Carcinoma 8 281051 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 9 281052 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 281053 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 9 281054 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 281055 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 9 281056 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 8 281057 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 9 281058 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 9 281059 -NCIT:C161584 Prostate Carcinoma Metastatic in the Pelvic Cavity 8 281060 -NCIT:C161587 Prostate Carcinoma Metastatic in the Lymph Nodes 8 281061 -NCIT:C171265 Oligometastatic Prostate Carcinoma 8 281062 -NCIT:C36307 Prostate Carcinoma Metastatic in the Lung 8 281063 -NCIT:C36308 Prostate Carcinoma Metastatic in the Bone 8 281064 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 8 281065 -NCIT:C156286 Advanced Prostate Adenocarcinoma 9 281066 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 281067 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 9 281068 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 281069 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 281070 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 281071 -NCIT:C148128 Metastatic Thymic Carcinoma 6 281072 -NCIT:C148126 Locally Advanced Thymic Carcinoma 7 281073 -NCIT:C159903 Advanced Thymic Carcinoma 7 281074 -NCIT:C148130 Locally Advanced Carcinoma 6 281075 -NCIT:C148126 Locally Advanced Thymic Carcinoma 7 281076 -NCIT:C153206 Locally Advanced Lung Carcinoma 7 281077 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 8 281078 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 281079 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 281080 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 281081 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 281082 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 281083 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 281084 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 281085 -NCIT:C153213 Locally Advanced Head and Neck Carcinoma 7 281086 -NCIT:C158464 Locally Advanced Salivary Gland Carcinoma 8 281087 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 8 281088 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 281089 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 281090 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 281091 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 281092 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 281093 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 281094 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 281095 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 281096 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 281097 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 281098 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 281099 -NCIT:C165560 Locally Advanced Laryngeal Carcinoma 8 281100 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 281101 -NCIT:C165561 Locally Advanced Pharyngeal Carcinoma 8 281102 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 281103 -NCIT:C170782 Locally Advanced Oropharyngeal Carcinoma 9 281104 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 281105 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 281106 -NCIT:C171280 Locally Advanced Hypopharyngeal Carcinoma 9 281107 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 281108 -NCIT:C165562 Locally Advanced Lip and Oral Cavity Carcinoma 8 281109 -NCIT:C171281 Locally Advanced Oral Cavity Carcinoma 9 281110 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 10 281111 -NCIT:C165563 Locally Advanced Paranasal Sinus Carcinoma 8 281112 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 9 281113 -NCIT:C170965 Locally Advanced Thyroid Gland Carcinoma 8 281114 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 9 281115 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 9 281116 -NCIT:C188128 Locally Advanced Thyroid Gland Anaplastic Carcinoma 9 281117 -NCIT:C153358 Locally Advanced Digestive System Carcinoma 7 281118 -NCIT:C153357 Locally Advanced Small Intestinal Carcinoma 8 281119 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 9 281120 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 281121 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 281122 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 8 281123 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 9 281124 -NCIT:C162766 Locally Advanced Colorectal Carcinoma 8 281125 -NCIT:C156745 Locally Advanced Microsatellite Stable Colorectal Carcinoma 9 281126 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 281127 -NCIT:C170778 Locally Advanced Rectal Carcinoma 9 281128 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 10 281129 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 281130 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 281131 -NCIT:C170910 Locally Advanced Colon Carcinoma 9 281132 -NCIT:C178269 Locally Advanced Microsatellite Stable Colon Carcinoma 10 281133 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 281134 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 281135 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 9 281136 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 10 281137 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 281138 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 281139 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 10 281140 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 11 281141 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 10 281142 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 11 281143 -NCIT:C162772 Locally Advanced Gastric Carcinoma 8 281144 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 9 281145 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 10 281146 -NCIT:C168976 Locally Advanced Esophageal Carcinoma 8 281147 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 9 281148 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 10 281149 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 9 281150 -NCIT:C168977 Locally Advanced Anal Carcinoma 8 281151 -NCIT:C170459 Locally Advanced Pancreatobiliary Carcinoma 8 281152 -NCIT:C168981 Locally Advanced Biliary Tract Carcinoma 9 281153 -NCIT:C151971 Locally Advanced Bile Duct Carcinoma 10 281154 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 11 281155 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 12 281156 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 12 281157 -NCIT:C187244 Locally Advanced Extrahepatic Bile Duct Carcinoma 11 281158 -NCIT:C175506 Locally Advanced Distal Bile Duct Carcinoma 12 281159 -NCIT:C170462 Locally Advanced Gallbladder Carcinoma 10 281160 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 11 281161 -NCIT:C168985 Locally Advanced Pancreatic Carcinoma 9 281162 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 10 281163 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 11 281164 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 11 281165 -NCIT:C171327 Locally Advanced Ampulla of Vater Carcinoma 9 281166 -NCIT:C171298 Locally Advanced Liver Carcinoma 8 281167 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 9 281168 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 281169 -NCIT:C154321 Locally Advanced Squamous Cell Carcinoma 7 281170 -NCIT:C153182 Locally Advanced Skin Squamous Cell Carcinoma 8 281171 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 281172 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 281173 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 281174 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 8 281175 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 281176 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 281177 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 281178 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 281179 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 281180 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 281181 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 281182 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 281183 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 281184 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 281185 -NCIT:C165474 Locally Advanced Squamous Cell Carcinoma of Unknown Primary 8 281186 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 8 281187 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 281188 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 8 281189 -NCIT:C155698 Locally Advanced Unresectable Carcinoma 7 281190 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 8 281191 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 8 281192 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 8 281193 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 8 281194 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 281195 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 8 281196 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 281197 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 8 281198 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 281199 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 281200 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 8 281201 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 281202 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 281203 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 281204 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 281205 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 281206 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 281207 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 281208 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 8 281209 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 8 281210 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 8 281211 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 8 281212 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 8 281213 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 8 281214 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 8 281215 -NCIT:C156770 Locally Advanced Basal Cell Carcinoma 7 281216 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 8 281217 -NCIT:C158909 Locally Advanced Neuroendocrine Carcinoma 7 281218 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 281219 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 281220 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 8 281221 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 281222 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 281223 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 8 281224 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 281225 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 8 281226 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 281227 -NCIT:C160920 Locally Advanced Breast Carcinoma 7 281228 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 8 281229 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 281230 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 281231 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 281232 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 281233 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 8 281234 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 281235 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 281236 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 281237 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 281238 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 281239 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 281240 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 281241 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 281242 -NCIT:C167069 Locally Advanced Genitourinary System Carcinoma 7 281243 -NCIT:C156285 Locally Advanced Prostate Carcinoma 8 281244 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 9 281245 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 281246 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 9 281247 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 10 281248 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 9 281249 -NCIT:C156295 Locally Advanced Cervical Carcinoma 8 281250 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 9 281251 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 281252 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 9 281253 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 10 281254 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 9 281255 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 8 281256 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 281257 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 281258 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 281259 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 281260 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 281261 -NCIT:C167071 Locally Advanced Bladder Carcinoma 8 281262 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 281263 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 9 281264 -NCIT:C167072 Locally Advanced Ovarian Carcinoma 8 281265 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 9 281266 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 10 281267 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 10 281268 -NCIT:C189978 Locally Advanced Platinum-Resistant Ovarian Carcinoma 9 281269 -NCIT:C167202 Locally Advanced Fallopian Tube Carcinoma 8 281270 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 9 281271 -NCIT:C170461 Locally Advanced Endometrial Carcinoma 8 281272 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 9 281273 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 10 281274 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 9 281275 -NCIT:C170785 Locally Advanced Vulvar Carcinoma 8 281276 -NCIT:C170787 Locally Advanced Vaginal Carcinoma 8 281277 -NCIT:C170789 Locally Advanced Penile Carcinoma 8 281278 -NCIT:C172618 Locally Advanced Kidney Carcinoma 8 281279 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 9 281280 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 10 281281 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 10 281282 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 10 281283 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 10 281284 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 10 281285 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 10 281286 -NCIT:C172277 Locally Advanced Renal Pelvis Carcinoma 9 281287 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 281288 -NCIT:C167204 Locally Advanced Primary Peritoneal Carcinoma 7 281289 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 8 281290 -NCIT:C168978 Locally Advanced Adenocarcinoma 7 281291 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 8 281292 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 9 281293 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 9 281294 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 8 281295 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 281296 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 8 281297 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 281298 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 8 281299 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 9 281300 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 281301 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 281302 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 281303 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 8 281304 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 281305 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 281306 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 281307 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 281308 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 281309 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 281310 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 281311 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 281312 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 281313 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 8 281314 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 281315 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 9 281316 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 8 281317 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 281318 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 281319 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 281320 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 281321 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 281322 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 281323 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 281324 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 281325 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 8 281326 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 281327 -NCIT:C174045 Locally Advanced Endometrioid Adenocarcinoma 8 281328 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 281329 -NCIT:C174443 Locally Advanced Adrenal Cortical Carcinoma 8 281330 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 8 281331 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 8 281332 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 281333 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 281334 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 281335 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 281336 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 281337 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 281338 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 281339 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 281340 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 281341 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 281342 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 281343 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 281344 -NCIT:C175493 Locally Advanced Transitional Cell Carcinoma 7 281345 -NCIT:C157636 Locally Advanced Urothelial Carcinoma 8 281346 -NCIT:C162618 Locally Advanced Bladder Urothelial Carcinoma 9 281347 -NCIT:C162619 Locally Advanced Urethral Urothelial Carcinoma 9 281348 -NCIT:C164159 Locally Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 281349 -NCIT:C162616 Locally Advanced Ureter Urothelial Carcinoma 10 281350 -NCIT:C162617 Locally Advanced Renal Pelvis Urothelial Carcinoma 10 281351 -NCIT:C175669 Locally Advanced Adenoid Cystic Carcinoma 7 281352 -NCIT:C153171 Advanced Carcinoma 6 281353 -NCIT:C129861 Advanced Head and Neck Carcinoma 7 281354 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 8 281355 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 281356 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 281357 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 281358 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 281359 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 281360 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 281361 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 281362 -NCIT:C170517 Advanced Thyroid Gland Carcinoma 8 281363 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 9 281364 -NCIT:C173336 Advanced Thyroid Gland Anaplastic Carcinoma 9 281365 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 9 281366 -NCIT:C170784 Advanced Pharyngeal Carcinoma 8 281367 -NCIT:C170783 Advanced Oropharyngeal Carcinoma 9 281368 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 281369 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 281370 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 281371 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 281372 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 281373 -NCIT:C175491 Advanced Nasopharyngeal Carcinoma 9 281374 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 281375 -NCIT:C177723 Advanced Salivary Gland Carcinoma 8 281376 -NCIT:C153203 Advanced Lung Carcinoma 7 281377 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 281378 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 8 281379 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 281380 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 281381 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 281382 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 281383 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 281384 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 281385 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 281386 -NCIT:C180922 Advanced Bronchogenic Carcinoma 8 281387 -NCIT:C155870 Advanced Neuroendocrine Carcinoma 7 281388 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 281389 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 281390 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 281391 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 281392 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 281393 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 281394 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 281395 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 281396 -NCIT:C165300 Advanced Merkel Cell Carcinoma 8 281397 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 8 281398 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 281399 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 281400 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 281401 -NCIT:C156746 Advanced Digestive System Carcinoma 7 281402 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 281403 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 281404 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 281405 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 8 281406 -NCIT:C160599 Advanced Esophageal Carcinoma 8 281407 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 9 281408 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 9 281409 -NCIT:C162475 Advanced Colorectal Carcinoma 8 281410 -NCIT:C142868 Advanced Microsatellite Stable Colorectal Carcinoma 9 281411 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 9 281412 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 281413 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 281414 -NCIT:C167238 Advanced Colon Carcinoma 9 281415 -NCIT:C162152 Advanced Colon Adenocarcinoma 10 281416 -NCIT:C170777 Advanced Rectal Carcinoma 9 281417 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 10 281418 -NCIT:C175363 Advanced Rectal Adenocarcinoma 10 281419 -NCIT:C165299 Advanced Gastric Carcinoma 8 281420 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 281421 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 281422 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 281423 -NCIT:C166255 Advanced Gastric Adenocarcinoma 9 281424 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 10 281425 -NCIT:C167336 Advanced Hepatocellular Carcinoma 8 281426 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 281427 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 281428 -NCIT:C170515 Advanced Anal Carcinoma 8 281429 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 281430 -NCIT:C171330 Advanced Pancreatobiliary Carcinoma 8 281431 -NCIT:C165452 Advanced Pancreatic Carcinoma 9 281432 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 10 281433 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 11 281434 -NCIT:C171329 Advanced Ampulla of Vater Carcinoma 9 281435 -NCIT:C171331 Advanced Biliary Tract Carcinoma 9 281436 -NCIT:C142870 Advanced Bile Duct Carcinoma 10 281437 -NCIT:C162752 Advanced Cholangiocarcinoma 11 281438 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 281439 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 12 281440 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 12 281441 -NCIT:C185072 Advanced Extrahepatic Bile Duct Carcinoma 11 281442 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 12 281443 -NCIT:C162755 Advanced Gallbladder Carcinoma 10 281444 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 281445 -NCIT:C159556 Advanced Adenocarcinoma 7 281446 -NCIT:C153170 Advanced Renal Cell Carcinoma 8 281447 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 281448 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 281449 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 281450 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 281451 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 281452 -NCIT:C156286 Advanced Prostate Adenocarcinoma 8 281453 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 281454 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 281455 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 8 281456 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 8 281457 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 9 281458 -NCIT:C162752 Advanced Cholangiocarcinoma 8 281459 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 9 281460 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 9 281461 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 9 281462 -NCIT:C165700 Advanced Breast Adenocarcinoma 8 281463 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 281464 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 281465 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 281466 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 281467 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 281468 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 281469 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 281470 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 281471 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 281472 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 281473 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 281474 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 281475 -NCIT:C167336 Advanced Hepatocellular Carcinoma 8 281476 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 281477 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 281478 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 8 281479 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 281480 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 281481 -NCIT:C170807 Advanced Endometrioid Adenocarcinoma 8 281482 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 281483 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 281484 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 281485 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 281486 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 281487 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 281488 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 8 281489 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 8 281490 -NCIT:C176727 Advanced Lung Adenocarcinoma 8 281491 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 281492 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 281493 -NCIT:C191863 Advanced Adrenal Cortical Carcinoma 8 281494 -NCIT:C159903 Advanced Thymic Carcinoma 7 281495 -NCIT:C160298 Advanced NUT Carcinoma 7 281496 -NCIT:C162648 Advanced Breast Carcinoma 7 281497 -NCIT:C165700 Advanced Breast Adenocarcinoma 8 281498 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 281499 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 281500 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 281501 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 281502 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 281503 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 281504 -NCIT:C162653 Advanced Squamous Cell Carcinoma 7 281505 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 8 281506 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 281507 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 281508 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 281509 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 281510 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 281511 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 281512 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 281513 -NCIT:C168542 Advanced Skin Squamous Cell Carcinoma 8 281514 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 281515 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 8 281516 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 281517 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 281518 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 281519 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 8 281520 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 281521 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 281522 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 281523 -NCIT:C164012 Advanced Adenoid Cystic Carcinoma 7 281524 -NCIT:C164143 Advanced Genitourinary System Carcinoma 7 281525 -NCIT:C148493 Advanced Urothelial Carcinoma 8 281526 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 281527 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 281528 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 281529 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 281530 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 281531 -NCIT:C156284 Advanced Prostate Carcinoma 8 281532 -NCIT:C156286 Advanced Prostate Adenocarcinoma 9 281533 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 10 281534 -NCIT:C156294 Advanced Cervical Carcinoma 8 281535 -NCIT:C156304 Advanced Cervical Adenocarcinoma 9 281536 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 9 281537 -NCIT:C174032 Advanced Cervical Adenosquamous Carcinoma 9 281538 -NCIT:C159676 Advanced Endometrial Carcinoma 8 281539 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 9 281540 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 10 281541 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 10 281542 -NCIT:C180337 Advanced Microsatellite Stable Endometrial Carcinoma 9 281543 -NCIT:C165458 Advanced Ovarian Carcinoma 8 281544 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 9 281545 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 10 281546 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 10 281547 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 281548 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 9 281549 -NCIT:C180334 Advanced Microsatellite Stable Ovarian Carcinoma 9 281550 -NCIT:C189977 Advanced Platinum-Resistant Ovarian Carcinoma 9 281551 -NCIT:C167338 Advanced Bladder Carcinoma 8 281552 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 281553 -NCIT:C167395 Advanced Fallopian Tube Carcinoma 8 281554 -NCIT:C170786 Advanced Vulvar Carcinoma 8 281555 -NCIT:C170788 Advanced Vaginal Carcinoma 8 281556 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 9 281557 -NCIT:C181029 Advanced Vaginal Adenosquamous Carcinoma 9 281558 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 9 281559 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 10 281560 -NCIT:C170790 Advanced Penile Carcinoma 8 281561 -NCIT:C172617 Advanced Kidney Carcinoma 8 281562 -NCIT:C153170 Advanced Renal Cell Carcinoma 9 281563 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 10 281564 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 10 281565 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 10 281566 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 10 281567 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 10 281568 -NCIT:C163966 Advanced Renal Pelvis Carcinoma 9 281569 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 281570 -NCIT:C172620 Advanced Kidney Medullary Carcinoma 9 281571 -NCIT:C167396 Advanced Primary Peritoneal Carcinoma 7 281572 -NCIT:C170960 Advanced Carcinoma Of Unknown Primary 7 281573 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 8 281574 -NCIT:C172091 Advanced Transitional Cell Carcinoma 7 281575 -NCIT:C148493 Advanced Urothelial Carcinoma 8 281576 -NCIT:C163954 Advanced Bladder Urothelial Carcinoma 9 281577 -NCIT:C163963 Advanced Urethral Urothelial Carcinoma 9 281578 -NCIT:C172276 Advanced Renal Pelvis and Ureter Urothelial Carcinoma 9 281579 -NCIT:C163955 Advanced Ureter Urothelial Carcinoma 10 281580 -NCIT:C172278 Advanced Renal Pelvis Urothelial Carcinoma 10 281581 -NCIT:C172362 Advanced Basal Cell Carcinoma 7 281582 -NCIT:C153202 Metastatic Lung Carcinoma 6 281583 -NCIT:C133503 Lung Carcinoma Metastatic in the Central Nervous System 7 281584 -NCIT:C36304 Lung Carcinoma Metastatic in the Brain 8 281585 -NCIT:C153203 Advanced Lung Carcinoma 7 281586 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 281587 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 8 281588 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 281589 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 281590 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 281591 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 281592 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 281593 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 281594 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 281595 -NCIT:C180922 Advanced Bronchogenic Carcinoma 8 281596 -NCIT:C153206 Locally Advanced Lung Carcinoma 7 281597 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 8 281598 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 281599 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 281600 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 281601 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 281602 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 281603 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 281604 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 281605 -NCIT:C156092 Metastatic Lung Squamous Cell Carcinoma 7 281606 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 281607 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 281608 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 281609 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 281610 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 281611 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 281612 -NCIT:C156094 Metastatic Lung Non-Small Cell Carcinoma 7 281613 -NCIT:C128798 Metastatic Lung Non-Squamous Non-Small Cell Carcinoma 8 281614 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 281615 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 281616 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 281617 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 281618 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 281619 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 281620 -NCIT:C155908 Metastatic Lung Adenocarcinoma 9 281621 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 281622 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 281623 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 9 281624 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 281625 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 281626 -NCIT:C156093 Metastatic Lung Adenosquamous Carcinoma 8 281627 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 281628 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 281629 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 281630 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 281631 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 281632 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 281633 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 8 281634 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 281635 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 281636 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 281637 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 281638 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 281639 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 281640 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 8 281641 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 281642 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 281643 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 281644 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 281645 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 281646 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 7 281647 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 281648 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 8 281649 -NCIT:C187195 Oligometastatic Lung Carcinoma 7 281650 -NCIT:C36305 Lung Carcinoma Metastatic in the Bone 7 281651 -NCIT:C36306 Lung Carcinoma Metastatic in the Liver 7 281652 -NCIT:C153238 Metastatic Breast Carcinoma 6 281653 -NCIT:C133501 Breast Carcinoma Metastatic in the Central Nervous System 7 281654 -NCIT:C36301 Breast Carcinoma Metastatic in the Brain 8 281655 -NCIT:C153227 Breast Carcinoma Metastatic in the Lymph Nodes 7 281656 -NCIT:C160920 Locally Advanced Breast Carcinoma 7 281657 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 8 281658 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 281659 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 281660 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 281661 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 281662 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 8 281663 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 281664 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 281665 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 281666 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 281667 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 281668 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 281669 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 281670 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 281671 -NCIT:C161830 Metastatic BRCA-Associated Breast Carcinoma 7 281672 -NCIT:C162648 Advanced Breast Carcinoma 7 281673 -NCIT:C165700 Advanced Breast Adenocarcinoma 8 281674 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 281675 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 281676 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 281677 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 281678 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 281679 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 281680 -NCIT:C165698 Metastatic Breast Adenocarcinoma 7 281681 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 8 281682 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 281683 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 281684 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 281685 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 281686 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 281687 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 281688 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 281689 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 281690 -NCIT:C165700 Advanced Breast Adenocarcinoma 8 281691 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 281692 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 281693 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 281694 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 281695 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 281696 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 281697 -NCIT:C168777 Metastatic HER2-Negative Breast Carcinoma 8 281698 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 281699 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 281700 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 281701 -NCIT:C179554 Metastatic HER2-Low Breast Carcinoma 8 281702 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 281703 -NCIT:C180924 Metastatic HER2-Positive Breast Carcinoma 8 281704 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 281705 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 281706 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 281707 -NCIT:C181787 Metastatic Breast Inflammatory Carcinoma 8 281708 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 9 281709 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 9 281710 -NCIT:C9246 Stage IIIB Breast Inflammatory Carcinoma 9 281711 -NCIT:C185880 Metastatic Hormone Receptor-Positive Breast Carcinoma 8 281712 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 281713 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 281714 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 281715 -NCIT:C190852 Metastatic Androgen Receptor-Positive Breast Carcinoma 9 281716 -NCIT:C190856 Metastatic Estrogen Receptor-Positive Breast Carcinoma 9 281717 -NCIT:C190677 Metastatic Hormone Receptor-Negative Breast Carcinoma 8 281718 -NCIT:C153348 Metastatic Triple-Negative Breast Carcinoma 9 281719 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 281720 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 10 281721 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 11 281722 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 10 281723 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 281724 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 281725 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 8 281726 -NCIT:C76326 Metastatic Breast Ductal Carcinoma 8 281727 -NCIT:C76328 Metastatic Breast Lobular Carcinoma 8 281728 -NCIT:C179515 Oligometastatic Breast Carcinoma 7 281729 -NCIT:C28311 Metastatic Breast Carcinoma in the Skin 7 281730 -NCIT:C36300 Breast Carcinoma Metastatic in the Lung 7 281731 -NCIT:C36302 Breast Carcinoma Metastatic in the Liver 7 281732 -NCIT:C36303 Breast Carcinoma Metastatic in the Bone 7 281733 -NCIT:C153226 Breast Carcinoma Metastatic in the Spine 8 281734 -NCIT:C5178 Metastatic Breast Squamous Cell Carcinoma 7 281735 -NCIT:C153315 Metastatic Unresectable Carcinoma 6 281736 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 7 281737 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 8 281738 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 8 281739 -NCIT:C155698 Locally Advanced Unresectable Carcinoma 7 281740 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 8 281741 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 8 281742 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 8 281743 -NCIT:C156288 Locally Advanced Unresectable Prostate Carcinoma 8 281744 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 281745 -NCIT:C156300 Locally Advanced Unresectable Cervical Carcinoma 8 281746 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 281747 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 8 281748 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 8 281749 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 8 281750 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 8 281751 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 281752 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 281753 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 281754 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 281755 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 8 281756 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 9 281757 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 9 281758 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 8 281759 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 8 281760 -NCIT:C187394 Locally Advanced Unresectable Fallopian Tube Carcinoma 8 281761 -NCIT:C187406 Locally Advanced Unresectable Endometrial Carcinoma 8 281762 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 8 281763 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 8 281764 -NCIT:C187413 Locally Advanced Unresectable Gallbladder Carcinoma 8 281765 -NCIT:C156788 Metastatic Unresectable Basal Cell Carcinoma 7 281766 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 8 281767 -NCIT:C179461 Unresectable Castration-Resistant Prostate Carcinoma 7 281768 -NCIT:C155869 Metastatic Neuroendocrine Carcinoma 6 281769 -NCIT:C155870 Advanced Neuroendocrine Carcinoma 7 281770 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 8 281771 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 281772 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 281773 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 8 281774 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 281775 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 281776 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 8 281777 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 281778 -NCIT:C165300 Advanced Merkel Cell Carcinoma 8 281779 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 8 281780 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 281781 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 281782 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 281783 -NCIT:C155936 Metastatic Digestive System Neuroendocrine Carcinoma 7 281784 -NCIT:C153075 Metastatic Pancreatic Neuroendocrine Carcinoma 8 281785 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 281786 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 281787 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 281788 -NCIT:C156682 Metastatic Gastric Neuroendocrine Carcinoma 8 281789 -NCIT:C156683 Advanced Gastric Neuroendocrine Carcinoma 9 281790 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 10 281791 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 10 281792 -NCIT:C156686 Metastatic Small Intestinal Neuroendocrine Carcinoma 8 281793 -NCIT:C156687 Advanced Small Intestinal Neuroendocrine Carcinoma 9 281794 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 10 281795 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 10 281796 -NCIT:C158908 Metastatic Large Cell Neuroendocrine Carcinoma 7 281797 -NCIT:C157762 Metastatic Bladder Large Cell Neuroendocrine Carcinoma 8 281798 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 8 281799 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 281800 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 8 281801 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 281802 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 281803 -NCIT:C177802 Advanced Large Cell Neuroendocrine Carcinoma 8 281804 -NCIT:C156684 Advanced Gastric Large Cell Neuroendocrine Carcinoma 9 281805 -NCIT:C156689 Advanced Small Intestinal Large Cell Neuroendocrine Carcinoma 9 281806 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 9 281807 -NCIT:C158909 Locally Advanced Neuroendocrine Carcinoma 7 281808 -NCIT:C155934 Locally Advanced Digestive System Neuroendocrine Carcinoma 8 281809 -NCIT:C155933 Locally Advanced Pancreatic Neuroendocrine Carcinoma 9 281810 -NCIT:C158910 Locally Advanced Large Cell Neuroendocrine Carcinoma 8 281811 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 9 281812 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 281813 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 8 281814 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 281815 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 8 281816 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 281817 -NCIT:C158911 Metastatic Small Cell Neuroendocrine Carcinoma 7 281818 -NCIT:C156095 Metastatic Lung Small Cell Carcinoma 8 281819 -NCIT:C160296 Advanced Lung Small Cell Carcinoma 9 281820 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 281821 -NCIT:C158915 Locally Advanced Small Cell Neuroendocrine Carcinoma 8 281822 -NCIT:C176857 Locally Advanced Lung Small Cell Carcinoma 9 281823 -NCIT:C191852 Metastatic Extrapulmonary Small Cell Neuroendocrine Carcinoma 8 281824 -NCIT:C156685 Advanced Gastric Small Cell Neuroendocrine Carcinoma 9 281825 -NCIT:C156688 Advanced Small Intestinal Small Cell Neuroendocrine Carcinoma 9 281826 -NCIT:C157763 Metastatic Bladder Small Cell Neuroendocrine Carcinoma 9 281827 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 9 281828 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 7 281829 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 281830 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 281831 -NCIT:C162572 Metastatic Merkel Cell Carcinoma 7 281832 -NCIT:C165300 Advanced Merkel Cell Carcinoma 8 281833 -NCIT:C165738 Locally Advanced Merkel Cell Carcinoma 8 281834 -NCIT:C165739 Recurrent Metastatic Merkel Cell Carcinoma 8 281835 -NCIT:C162706 Metastatic Thyroid Gland Medullary Carcinoma 7 281836 -NCIT:C163964 Advanced Thyroid Gland Medullary Carcinoma 8 281837 -NCIT:C168543 Locally Advanced Thyroid Gland Medullary Carcinoma 8 281838 -NCIT:C163975 Neuroendocrine Carcinoma of Unknown Primary 7 281839 -NCIT:C156769 Metastatic Basal Cell Carcinoma 6 281840 -NCIT:C156770 Locally Advanced Basal Cell Carcinoma 7 281841 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 8 281842 -NCIT:C156788 Metastatic Unresectable Basal Cell Carcinoma 7 281843 -NCIT:C156789 Locally Advanced Unresectable Basal Cell Carcinoma 8 281844 -NCIT:C172362 Advanced Basal Cell Carcinoma 7 281845 -NCIT:C157638 Metastatic Adenoid Cystic Carcinoma 6 281846 -NCIT:C156089 Metastatic Oral Cavity Adenoid Cystic Carcinoma 7 281847 -NCIT:C164012 Advanced Adenoid Cystic Carcinoma 7 281848 -NCIT:C175669 Locally Advanced Adenoid Cystic Carcinoma 7 281849 -NCIT:C160297 Metastatic NUT Carcinoma 6 281850 -NCIT:C160298 Advanced NUT Carcinoma 7 281851 -NCIT:C165537 Metastatic Non-Small Cell Carcinoma 6 281852 -NCIT:C156094 Metastatic Lung Non-Small Cell Carcinoma 7 281853 -NCIT:C128798 Metastatic Lung Non-Squamous Non-Small Cell Carcinoma 8 281854 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 281855 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 281856 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 281857 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 281858 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 281859 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 281860 -NCIT:C155908 Metastatic Lung Adenocarcinoma 9 281861 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 281862 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 281863 -NCIT:C177799 Metastatic Lung Large Cell Neuroendocrine Carcinoma 9 281864 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 281865 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 281866 -NCIT:C156093 Metastatic Lung Adenosquamous Carcinoma 8 281867 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 281868 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 281869 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 281870 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 281871 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 281872 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 281873 -NCIT:C160783 Locally Advanced Lung Non-Small Cell Carcinoma 8 281874 -NCIT:C153200 Locally Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 281875 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 10 281876 -NCIT:C177801 Locally Advanced Lung Large Cell Neuroendocrine Carcinoma 10 281877 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 281878 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 281879 -NCIT:C175218 Locally Advanced Lung Adenosquamous Carcinoma 9 281880 -NCIT:C162158 Advanced Lung Non-Small Cell Carcinoma 8 281881 -NCIT:C147924 Advanced Lung Non-Squamous Non-Small Cell Carcinoma 9 281882 -NCIT:C176727 Advanced Lung Adenocarcinoma 10 281883 -NCIT:C187163 Advanced Lung Large Cell Neuroendocrine Carcinoma 10 281884 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 281885 -NCIT:C181967 Advanced Lung Adenosquamous Carcinoma 9 281886 -NCIT:C167203 Metastatic Primary Peritoneal Carcinoma 6 281887 -NCIT:C167204 Locally Advanced Primary Peritoneal Carcinoma 7 281888 -NCIT:C187389 Locally Advanced Unresectable Primary Peritoneal Carcinoma 8 281889 -NCIT:C167396 Advanced Primary Peritoneal Carcinoma 7 281890 -NCIT:C170972 Metastatic Primary Peritoneal Adenocarcinoma 7 281891 -NCIT:C171019 Metastatic Primary Peritoneal Serous Adenocarcinoma 8 281892 -NCIT:C186453 Metastatic Primary Peritoneal High Grade Serous Adenocarcinoma 9 281893 -NCIT:C179654 Metastatic Carcinoma in the Peritoneum 6 281894 -NCIT:C27382 Peritoneal Carcinomatosis 7 281895 -NCIT:C3345 Pseudomyxoma Peritonei 8 281896 -NCIT:C179179 Recurrent Pseudomyxoma Peritonei 9 281897 -NCIT:C179180 Refractory Pseudomyxoma Peritonei 9 281898 -NCIT:C188076 Metastatic Carcinoma in the Rectum 6 281899 -NCIT:C188077 Metastatic Carcinoma in the Pancreas 6 281900 -NCIT:C27381 Metastatic Carcinoma in the Adrenal Cortex 6 281901 -NCIT:C27408 Metastatic Carcinoma in the Lung 6 281902 -NCIT:C153224 Colorectal Carcinoma Metastatic in the Lung 7 281903 -NCIT:C89815 Colon Carcinoma Metastatic in the Lung 8 281904 -NCIT:C36300 Breast Carcinoma Metastatic in the Lung 7 281905 -NCIT:C36307 Prostate Carcinoma Metastatic in the Lung 7 281906 -NCIT:C27469 Disseminated Carcinoma 6 281907 -NCIT:C27185 Disseminated Adenocarcinoma 7 281908 -NCIT:C4829 Disseminated Squamous Cell Carcinoma 7 281909 -NCIT:C36082 Metastatic Carcinoma in the Bone 6 281910 -NCIT:C36303 Breast Carcinoma Metastatic in the Bone 7 281911 -NCIT:C153226 Breast Carcinoma Metastatic in the Spine 8 281912 -NCIT:C36305 Lung Carcinoma Metastatic in the Bone 7 281913 -NCIT:C36308 Prostate Carcinoma Metastatic in the Bone 7 281914 -NCIT:C3693 Carcinomatosis 6 281915 -NCIT:C168666 Gastrointestinal Carcinomatosis 7 281916 -NCIT:C27382 Peritoneal Carcinomatosis 7 281917 -NCIT:C3345 Pseudomyxoma Peritonei 8 281918 -NCIT:C179179 Recurrent Pseudomyxoma Peritonei 9 281919 -NCIT:C179180 Refractory Pseudomyxoma Peritonei 9 281920 -NCIT:C27383 Meningeal Carcinomatosis 7 281921 -NCIT:C27384 Pleural Carcinomatosis 7 281922 -NCIT:C27385 Pericardial Carcinomatosis 7 281923 -NCIT:C3870 Lymphangitic Carcinomatosis 7 281924 -NCIT:C3812 Carcinoma of Unknown Primary 6 281925 -NCIT:C162595 Head and Neck Carcinoma of Unknown Primary 7 281926 -NCIT:C173585 Neck Carcinoma of Unknown Primary 8 281927 -NCIT:C7713 Neck Squamous Cell Carcinoma of Unknown Primary 9 281928 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 10 281929 -NCIT:C187051 Human Papillomavirus-Related Head and Neck Squamous Cell Carcinoma of Unknown Primary 8 281930 -NCIT:C190149 Human Papillomavirus-Negative Head and Neck Squamous Cell Carcinoma of Unknown Primary 8 281931 -NCIT:C163975 Neuroendocrine Carcinoma of Unknown Primary 7 281932 -NCIT:C170960 Advanced Carcinoma Of Unknown Primary 7 281933 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 8 281934 -NCIT:C170961 Resectable Carcinoma of Unknown Primary 7 281935 -NCIT:C170962 Resectable Adenocarcinoma of Unknown Primary 8 281936 -NCIT:C4039 Adenocarcinoma of Unknown Primary 7 281937 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 8 281938 -NCIT:C170962 Resectable Adenocarcinoma of Unknown Primary 8 281939 -NCIT:C8099 Squamous Cell Carcinoma of Unknown Primary 7 281940 -NCIT:C165474 Locally Advanced Squamous Cell Carcinoma of Unknown Primary 8 281941 -NCIT:C187051 Human Papillomavirus-Related Head and Neck Squamous Cell Carcinoma of Unknown Primary 8 281942 -NCIT:C190149 Human Papillomavirus-Negative Head and Neck Squamous Cell Carcinoma of Unknown Primary 8 281943 -NCIT:C7713 Neck Squamous Cell Carcinoma of Unknown Primary 8 281944 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 9 281945 -NCIT:C8100 Undifferentiated Carcinoma of Unknown Primary 7 281946 -NCIT:C9181 Recurrent Carcinoma of Unknown Primary 7 281947 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 8 281948 -NCIT:C4104 Metastatic Squamous Cell Carcinoma 6 281949 -NCIT:C143013 Metastatic Skin Squamous Cell Carcinoma 7 281950 -NCIT:C153182 Locally Advanced Skin Squamous Cell Carcinoma 8 281951 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 281952 -NCIT:C165736 Recurrent Metastatic Skin Squamous Cell Carcinoma 8 281953 -NCIT:C168542 Advanced Skin Squamous Cell Carcinoma 8 281954 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 281955 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 281956 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 281957 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 281958 -NCIT:C148153 Metastatic Head and Neck Squamous Cell Carcinoma 7 281959 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 8 281960 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 281961 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 281962 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 281963 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 281964 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 281965 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 281966 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 281967 -NCIT:C150206 Metastatic Oral Cavity Squamous Cell Carcinoma 8 281968 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 281969 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 281970 -NCIT:C150213 Metastatic Laryngeal Squamous Cell Carcinoma 8 281971 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 281972 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 281973 -NCIT:C156091 Metastatic Lip Squamous Cell Carcinoma 8 281974 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 8 281975 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 281976 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 281977 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 281978 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 281979 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 281980 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 281981 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 281982 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 281983 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 281984 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 281985 -NCIT:C162882 Metastatic Sinonasal Squamous Cell Carcinoma 8 281986 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 281987 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 281988 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 281989 -NCIT:C162876 Metastatic Paranasal Sinus Squamous Cell Carcinoma 9 281990 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 281991 -NCIT:C167236 Metastatic Nasal Cavity Squamous Cell Carcinoma 9 281992 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 281993 -NCIT:C171573 Metastatic Cutaneous Squamous Cell Carcinoma of the Head and Neck 8 281994 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 281995 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 281996 -NCIT:C172649 Metastatic Salivary Gland Squamous Cell Carcinoma 8 281997 -NCIT:C173685 Metastatic Pharyngeal Squamous Cell Carcinoma 8 281998 -NCIT:C150202 Metastatic Oropharyngeal Squamous Cell Carcinoma 9 281999 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 282000 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 10 282001 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 11 282002 -NCIT:C150209 Metastatic Nasopharyngeal Squamous Cell Carcinoma 9 282003 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 282004 -NCIT:C156077 Metastatic Nasopharyngeal Keratinizing Squamous Cell Carcinoma 10 282005 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 10 282006 -NCIT:C177153 Metastatic Nasopharyngeal Nonkeratinizing Carcinoma 10 282007 -NCIT:C156078 Metastatic Nasopharyngeal Undifferentiated Carcinoma 11 282008 -NCIT:C150212 Metastatic Hypopharyngeal Squamous Cell Carcinoma 9 282009 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 282010 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 10 282011 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 282012 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 282013 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 282014 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 282015 -NCIT:C153388 Metastatic Cervical Squamous Cell Carcinoma 7 282016 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 282017 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 8 282018 -NCIT:C154321 Locally Advanced Squamous Cell Carcinoma 7 282019 -NCIT:C153182 Locally Advanced Skin Squamous Cell Carcinoma 8 282020 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 282021 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 8 282022 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 9 282023 -NCIT:C162758 Locally Advanced Head and Neck Squamous Cell Carcinoma 8 282024 -NCIT:C154322 Locally Advanced Sinonasal Squamous Cell Carcinoma 9 282025 -NCIT:C185350 Locally Advanced Nasal Cavity Squamous Cell Carcinoma 10 282026 -NCIT:C185351 Locally Advanced Paranasal Sinus Squamous Cell Carcinoma 10 282027 -NCIT:C162881 Locally Advanced Oropharyngeal Squamous Cell Carcinoma 9 282028 -NCIT:C190631 Locally Advanced Oropharyngeal Undifferentiated Carcinoma 10 282029 -NCIT:C165472 Locally Advanced Oral Cavity Squamous Cell Carcinoma 9 282030 -NCIT:C165473 Locally Advanced Laryngeal Squamous Cell Carcinoma 9 282031 -NCIT:C165701 Locally Advanced Hypopharyngeal Squamous Cell Carcinoma 9 282032 -NCIT:C167352 Locally Advanced Nasopharyngeal Squamous Cell Carcinoma 9 282033 -NCIT:C180891 Locally Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 282034 -NCIT:C165474 Locally Advanced Squamous Cell Carcinoma of Unknown Primary 8 282035 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 8 282036 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 282037 -NCIT:C174505 Locally Advanced Cervical Squamous Cell Carcinoma 8 282038 -NCIT:C156075 Metastatic Esophageal Squamous Cell Carcinoma 7 282039 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 282040 -NCIT:C172358 Locally Advanced Esophageal Squamous Cell Carcinoma 8 282041 -NCIT:C156092 Metastatic Lung Squamous Cell Carcinoma 7 282042 -NCIT:C157364 Metastatic Lung Non-Small Cell Squamous Carcinoma 8 282043 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 282044 -NCIT:C157365 Locally Advanced Lung Non-Small Cell Squamous Carcinoma 9 282045 -NCIT:C187411 Locally Advanced Unresectable Lung Non-Small Cell Squamous Carcinoma 10 282046 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 282047 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 282048 -NCIT:C157452 Metastatic Squamous Cell Carcinoma in the Cervical Lymph Nodes 7 282049 -NCIT:C157750 Metastatic Bladder Squamous Cell Carcinoma 7 282050 -NCIT:C162653 Advanced Squamous Cell Carcinoma 7 282051 -NCIT:C139291 Advanced Head and Neck Squamous Cell Carcinoma 8 282052 -NCIT:C150204 Advanced Oral Cavity Squamous Cell Carcinoma 9 282053 -NCIT:C150211 Advanced Laryngeal Squamous Cell Carcinoma 9 282054 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 282055 -NCIT:C173694 Advanced Pharyngeal Squamous Cell Carcinoma 9 282056 -NCIT:C150201 Advanced Oropharyngeal Squamous Cell Carcinoma 10 282057 -NCIT:C150207 Advanced Nasopharyngeal Squamous Cell Carcinoma 10 282058 -NCIT:C150210 Advanced Hypopharyngeal Squamous Cell Carcinoma 10 282059 -NCIT:C168542 Advanced Skin Squamous Cell Carcinoma 8 282060 -NCIT:C171574 Advanced Cutaneous Squamous Cell Carcinoma of the Head and Neck 9 282061 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 8 282062 -NCIT:C171607 Advanced Esophageal Squamous Cell Carcinoma 8 282063 -NCIT:C173330 Advanced Lung Squamous Cell Carcinoma 8 282064 -NCIT:C153201 Advanced Lung Non-Small Cell Squamous Carcinoma 9 282065 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 8 282066 -NCIT:C174030 Advanced Cervical Squamous Cell Carcinoma 8 282067 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 282068 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 282069 -NCIT:C169103 Metastatic Anal Squamous Cell Carcinoma 7 282070 -NCIT:C175383 Metastatic Anal Canal Squamous Cell Carcinoma 8 282071 -NCIT:C173338 Advanced Anal Canal Squamous Cell Carcinoma 9 282072 -NCIT:C170779 Metastatic Rectal Squamous Cell Carcinoma 7 282073 -NCIT:C170780 Advanced Rectal Squamous Cell Carcinoma 8 282074 -NCIT:C170781 Locally Advanced Rectal Squamous Cell Carcinoma 8 282075 -NCIT:C174201 Metastatic Vulvar Squamous Cell Carcinoma 7 282076 -NCIT:C181031 Metastatic Vaginal Squamous Cell Carcinoma 7 282077 -NCIT:C181032 Advanced Vaginal Squamous Cell Carcinoma 8 282078 -NCIT:C180921 Advanced Vaginal Squamous Cell Carcinoma, Not Otherwise Specified 9 282079 -NCIT:C182111 Metastatic Squamous Cell Carcinoma of the Penis 7 282080 -NCIT:C188112 Metastatic Squamous Cell Carcinoma in the Breast 7 282081 -NCIT:C188113 Metastatic Squamous Cell Carcinoma in the Skin 7 282082 -NCIT:C190771 Metastatic Pancreatic Squamous Cell Carcinoma 7 282083 -NCIT:C4829 Disseminated Squamous Cell Carcinoma 7 282084 -NCIT:C5178 Metastatic Breast Squamous Cell Carcinoma 7 282085 -NCIT:C8099 Squamous Cell Carcinoma of Unknown Primary 7 282086 -NCIT:C165474 Locally Advanced Squamous Cell Carcinoma of Unknown Primary 8 282087 -NCIT:C187051 Human Papillomavirus-Related Head and Neck Squamous Cell Carcinoma of Unknown Primary 8 282088 -NCIT:C190149 Human Papillomavirus-Negative Head and Neck Squamous Cell Carcinoma of Unknown Primary 8 282089 -NCIT:C7713 Neck Squamous Cell Carcinoma of Unknown Primary 8 282090 -NCIT:C9117 Recurrent Neck Squamous Cell Carcinoma of Unknown Primary 9 282091 -NCIT:C4124 Metastatic Adenocarcinoma 6 282092 -NCIT:C150577 Metastatic Gastroesophageal Junction Adenocarcinoma 7 282093 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 8 282094 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 8 282095 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 9 282096 -NCIT:C150595 Metastatic Renal Cell Carcinoma 7 282097 -NCIT:C153170 Advanced Renal Cell Carcinoma 8 282098 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 282099 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 282100 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 282101 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 282102 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 282103 -NCIT:C157757 Metastatic Sarcomatoid Renal Cell Carcinoma 8 282104 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 282105 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 282106 -NCIT:C162760 Metastatic Papillary Renal Cell Carcinoma 8 282107 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 282108 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 282109 -NCIT:C162768 Metastatic Clear Cell Renal Cell Carcinoma 8 282110 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 282111 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 282112 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 8 282113 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 282114 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 282115 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 282116 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 282117 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 282118 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 282119 -NCIT:C171580 Metastatic Chromophobe Renal Cell Carcinoma 8 282120 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 282121 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 282122 -NCIT:C171583 Metastatic Unclassified Renal Cell Carcinoma 8 282123 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 282124 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 282125 -NCIT:C153319 Metastatic Gastric Adenocarcinoma 7 282126 -NCIT:C153316 Metastatic Unresectable Gastric Adenocarcinoma 8 282127 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 282128 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 282129 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 282130 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 282131 -NCIT:C165630 Metastatic Proximal Gastric Adenocarcinoma 8 282132 -NCIT:C166121 Oligometastatic Gastric Adenocarcinoma 8 282133 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 282134 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 282135 -NCIT:C153389 Metastatic Cervical Adenocarcinoma 7 282136 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 8 282137 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 282138 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 282139 -NCIT:C154091 Metastatic Hepatocellular Carcinoma 7 282140 -NCIT:C154078 Metastatic Fibrolamellar Carcinoma 8 282141 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 282142 -NCIT:C167336 Advanced Hepatocellular Carcinoma 8 282143 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 282144 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 282145 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 282146 -NCIT:C155908 Metastatic Lung Adenocarcinoma 7 282147 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 8 282148 -NCIT:C176727 Advanced Lung Adenocarcinoma 8 282149 -NCIT:C156070 Metastatic Adrenal Cortical Carcinoma 7 282150 -NCIT:C174443 Locally Advanced Adrenal Cortical Carcinoma 8 282151 -NCIT:C191863 Advanced Adrenal Cortical Carcinoma 8 282152 -NCIT:C156074 Metastatic Esophageal Adenocarcinoma 7 282153 -NCIT:C166120 Oligometastatic Esophageal Adenocarcinoma 8 282154 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 282155 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 282156 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 282157 -NCIT:C172249 Metastatic Distal Esophagus Adenocarcinoma 8 282158 -NCIT:C157623 Metastatic Cholangiocarcinoma 7 282159 -NCIT:C162752 Advanced Cholangiocarcinoma 8 282160 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 9 282161 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 9 282162 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 9 282163 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 8 282164 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 282165 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 9 282166 -NCIT:C172242 Metastatic Distal Bile Duct Adenocarcinoma 8 282167 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 9 282168 -NCIT:C172252 Metastatic Intrahepatic Cholangiocarcinoma 8 282169 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 282170 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 9 282171 -NCIT:C185069 Metastatic Hilar Cholangiocarcinoma 8 282172 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 9 282173 -NCIT:C159556 Advanced Adenocarcinoma 7 282174 -NCIT:C153170 Advanced Renal Cell Carcinoma 8 282175 -NCIT:C159562 Advanced Clear Cell Renal Cell Carcinoma 9 282176 -NCIT:C162761 Advanced Papillary Renal Cell Carcinoma 9 282177 -NCIT:C171579 Advanced Chromophobe Renal Cell Carcinoma 9 282178 -NCIT:C171581 Advanced Sarcomatoid Renal Cell Carcinoma 9 282179 -NCIT:C171582 Advanced Unclassified Renal Cell Carcinoma 9 282180 -NCIT:C156286 Advanced Prostate Adenocarcinoma 8 282181 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 282182 -NCIT:C156304 Advanced Cervical Adenocarcinoma 8 282183 -NCIT:C159548 Advanced Gastroesophageal Junction Adenocarcinoma 8 282184 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 8 282185 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 9 282186 -NCIT:C162752 Advanced Cholangiocarcinoma 8 282187 -NCIT:C176888 Advanced Distal Bile Duct Adenocarcinoma 9 282188 -NCIT:C176891 Advanced Intrahepatic Cholangiocarcinoma 9 282189 -NCIT:C185070 Advanced Hilar Cholangiocarcinoma 9 282190 -NCIT:C165700 Advanced Breast Adenocarcinoma 8 282191 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 282192 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 282193 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 282194 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 282195 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 282196 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 282197 -NCIT:C166255 Advanced Gastric Adenocarcinoma 8 282198 -NCIT:C153317 Advanced Unresectable Gastric Adenocarcinoma 9 282199 -NCIT:C166256 Advanced Esophageal Adenocarcinoma 8 282200 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 282201 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 282202 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 282203 -NCIT:C167336 Advanced Hepatocellular Carcinoma 8 282204 -NCIT:C185067 Advanced Fibrolamellar Carcinoma 9 282205 -NCIT:C28302 Advanced Adult Hepatocellular Carcinoma 9 282206 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 8 282207 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 282208 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 282209 -NCIT:C170807 Advanced Endometrioid Adenocarcinoma 8 282210 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 282211 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 282212 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 282213 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 282214 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 282215 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 282216 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 8 282217 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 8 282218 -NCIT:C176727 Advanced Lung Adenocarcinoma 8 282219 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 282220 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 282221 -NCIT:C191863 Advanced Adrenal Cortical Carcinoma 8 282222 -NCIT:C160782 Metastatic Ovarian Serous Adenocarcinoma 7 282223 -NCIT:C170937 Advanced Ovarian Serous Adenocarcinoma 8 282224 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 282225 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 282226 -NCIT:C186454 Metastatic Ovarian High Grade Serous Adenocarcinoma 8 282227 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 282228 -NCIT:C190633 Advanced Ovarian High Grade Serous Adenocarcinoma 9 282229 -NCIT:C187234 Metastatic Ovarian Serous Cystadenocarcinoma 8 282230 -NCIT:C187235 Advanced Ovarian Serous Cystadenocarcinoma 9 282231 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 282232 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 282233 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 282234 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 282235 -NCIT:C161048 Metastatic Colorectal Adenocarcinoma 7 282236 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 8 282237 -NCIT:C160819 Metastatic Colon Adenocarcinoma 8 282238 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 282239 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 282240 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 282241 -NCIT:C160820 Metastatic Rectal Adenocarcinoma 8 282242 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 282243 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 282244 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 282245 -NCIT:C162273 Metastatic Colorectal Mucinous Adenocarcinoma 8 282246 -NCIT:C166257 Advanced Colorectal Adenocarcinoma 8 282247 -NCIT:C162152 Advanced Colon Adenocarcinoma 9 282248 -NCIT:C175363 Advanced Rectal Adenocarcinoma 9 282249 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 282250 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 282251 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 282252 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 282253 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 282254 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 282255 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 282256 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 282257 -NCIT:C165698 Metastatic Breast Adenocarcinoma 7 282258 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 8 282259 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 282260 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 282261 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 282262 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 282263 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 282264 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 282265 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 282266 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 282267 -NCIT:C165700 Advanced Breast Adenocarcinoma 8 282268 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 282269 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 282270 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 282271 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 282272 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 282273 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 282274 -NCIT:C168777 Metastatic HER2-Negative Breast Carcinoma 8 282275 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 9 282276 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 282277 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 282278 -NCIT:C179554 Metastatic HER2-Low Breast Carcinoma 8 282279 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 9 282280 -NCIT:C180924 Metastatic HER2-Positive Breast Carcinoma 8 282281 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 282282 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 282283 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 282284 -NCIT:C181787 Metastatic Breast Inflammatory Carcinoma 8 282285 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 9 282286 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 9 282287 -NCIT:C9246 Stage IIIB Breast Inflammatory Carcinoma 9 282288 -NCIT:C185880 Metastatic Hormone Receptor-Positive Breast Carcinoma 8 282289 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 9 282290 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 282291 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 282292 -NCIT:C190852 Metastatic Androgen Receptor-Positive Breast Carcinoma 9 282293 -NCIT:C190856 Metastatic Estrogen Receptor-Positive Breast Carcinoma 9 282294 -NCIT:C190677 Metastatic Hormone Receptor-Negative Breast Carcinoma 8 282295 -NCIT:C153348 Metastatic Triple-Negative Breast Carcinoma 9 282296 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 282297 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 10 282298 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 11 282299 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 10 282300 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 9 282301 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 10 282302 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 8 282303 -NCIT:C76326 Metastatic Breast Ductal Carcinoma 8 282304 -NCIT:C76328 Metastatic Breast Lobular Carcinoma 8 282305 -NCIT:C168978 Locally Advanced Adenocarcinoma 7 282306 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 8 282307 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 9 282308 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 9 282309 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 8 282310 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 282311 -NCIT:C156297 Locally Advanced Cervical Adenocarcinoma 8 282312 -NCIT:C156299 Locally Advanced Unresectable Cervical Adenocarcinoma 9 282313 -NCIT:C162759 Locally Advanced Gastroesophageal Junction Adenocarcinoma 8 282314 -NCIT:C162114 Locally Advanced Unresectable Gastroesophageal Junction Adenocarcinoma 9 282315 -NCIT:C162767 Locally Advanced Gastric Adenocarcinoma 8 282316 -NCIT:C155874 Locally Advanced Unresectable Gastric Adenocarcinoma 9 282317 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 282318 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 8 282319 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 282320 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 282321 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 9 282322 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 10 282323 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 282324 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 282325 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 9 282326 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 10 282327 -NCIT:C168979 Locally Advanced Hepatocellular Carcinoma 8 282328 -NCIT:C168994 Locally Advanced Cholangiocarcinoma 8 282329 -NCIT:C173814 Locally Advanced Intrahepatic Cholangiocarcinoma 9 282330 -NCIT:C187412 Locally Advanced Unresectable Cholangiocarcinoma 9 282331 -NCIT:C168995 Locally Advanced Renal Cell Carcinoma 8 282332 -NCIT:C155699 Locally Advanced Unresectable Renal Cell Carcinoma 9 282333 -NCIT:C169099 Locally Advanced Clear Cell Renal Cell Carcinoma 9 282334 -NCIT:C172218 Locally Advanced Papillary Renal Cell Carcinoma 9 282335 -NCIT:C172219 Locally Advanced Sarcomatoid Renal Cell Carcinoma 9 282336 -NCIT:C172222 Locally Advanced Unclassified Renal Cell Carcinoma 9 282337 -NCIT:C179677 Locally Advanced Chromophobe Renal Cell Carcinoma 9 282338 -NCIT:C172227 Locally Advanced Esophageal Adenocarcinoma 8 282339 -NCIT:C162113 Locally Advanced Unresectable Esophageal Adenocarcinoma 9 282340 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 8 282341 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 282342 -NCIT:C174045 Locally Advanced Endometrioid Adenocarcinoma 8 282343 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 282344 -NCIT:C174443 Locally Advanced Adrenal Cortical Carcinoma 8 282345 -NCIT:C175219 Locally Advanced Lung Adenocarcinoma 8 282346 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 8 282347 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 282348 -NCIT:C187243 Locally Advanced Ovarian Serous Adenocarcinoma 8 282349 -NCIT:C187242 Locally Advanced Ovarian Serous Cystadenocarcinoma 9 282350 -NCIT:C187393 Locally Advanced Unresectable Ovarian High Grade Serous Adenocarcinoma 9 282351 -NCIT:C190413 Locally Advanced Colorectal Adenocarcinoma 8 282352 -NCIT:C162270 Locally Advanced Unresectable Colorectal Adenocarcinoma 9 282353 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 282354 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 282355 -NCIT:C174122 Locally Advanced Rectal Adenocarcinoma 9 282356 -NCIT:C162272 Locally Advanced Unresectable Rectal Adenocarcinoma 10 282357 -NCIT:C190415 Locally Advanced Colon Adenocarcinoma 9 282358 -NCIT:C162271 Locally Advanced Unresectable Colon Adenocarcinoma 10 282359 -NCIT:C170944 Metastatic Ovarian Clear Cell Adenocarcinoma 7 282360 -NCIT:C170945 Advanced Ovarian Clear Cell Adenocarcinoma 8 282361 -NCIT:C170972 Metastatic Primary Peritoneal Adenocarcinoma 7 282362 -NCIT:C171019 Metastatic Primary Peritoneal Serous Adenocarcinoma 8 282363 -NCIT:C186453 Metastatic Primary Peritoneal High Grade Serous Adenocarcinoma 9 282364 -NCIT:C171016 Metastatic Fallopian Tube High Grade Serous Adenocarcinoma 7 282365 -NCIT:C173979 Metastatic Differentiated Thyroid Gland Carcinoma 7 282366 -NCIT:C156099 Metastatic Thyroid Gland Follicular Carcinoma 8 282367 -NCIT:C174574 Metastatic Thyroid Gland Oncocytic Carcinoma 9 282368 -NCIT:C175507 Locally Advanced Thyroid Gland Oncocytic Carcinoma 10 282369 -NCIT:C156100 Metastatic Thyroid Gland Papillary Carcinoma 8 282370 -NCIT:C173980 Advanced Differentiated Thyroid Gland Carcinoma 8 282371 -NCIT:C174046 Metastatic Poorly Differentiated Thyroid Gland Carcinoma 7 282372 -NCIT:C182104 Metastatic Appendix Adenocarcinoma 7 282373 -NCIT:C162274 Metastatic Appendix Mucinous Adenocarcinoma 8 282374 -NCIT:C182105 Advanced Appendix Adenocarcinoma 8 282375 -NCIT:C183244 Metastatic Ovarian Mucinous Adenocarcinoma 7 282376 -NCIT:C185381 Metastatic Mesonephric Adenocarcinoma 7 282377 -NCIT:C27185 Disseminated Adenocarcinoma 7 282378 -NCIT:C3345 Pseudomyxoma Peritonei 7 282379 -NCIT:C179179 Recurrent Pseudomyxoma Peritonei 8 282380 -NCIT:C179180 Refractory Pseudomyxoma Peritonei 8 282381 -NCIT:C4039 Adenocarcinoma of Unknown Primary 7 282382 -NCIT:C170959 Advanced Adenocarcinoma of Unknown Primary 8 282383 -NCIT:C170962 Resectable Adenocarcinoma of Unknown Primary 8 282384 -NCIT:C66717 Metastatic Signet Ring Cell Carcinoma 7 282385 -NCIT:C3153 Krukenberg Tumor 8 282386 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 8 282387 -NCIT:C8933 Metastatic Pancreatic Adenocarcinoma 7 282388 -NCIT:C156269 Locally Advanced Pancreatic Adenocarcinoma 8 282389 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 9 282390 -NCIT:C155743 Locally Advanced Unresectable Pancreatic Adenocarcinoma 9 282391 -NCIT:C158960 Metastatic Pancreatic Ductal Adenocarcinoma 8 282392 -NCIT:C151993 Locally Advanced Pancreatic Ductal Adenocarcinoma 9 282393 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 9 282394 -NCIT:C187450 Oligometastatic Pancreatic Ductal Adenocarcinoma 9 282395 -NCIT:C162153 Advanced Pancreatic Adenocarcinoma 8 282396 -NCIT:C164214 Advanced Pancreatic Ductal Adenocarcinoma 9 282397 -NCIT:C168583 Refractory Metastatic Pancreatic Adenocarcinoma 8 282398 -NCIT:C8934 Metastatic Small Intestinal Adenocarcinoma 7 282399 -NCIT:C175515 Locally Advanced Small Intestinal Adenocarcinoma 8 282400 -NCIT:C8942 Metastatic Endometrial Adenocarcinoma 7 282401 -NCIT:C170804 Metastatic Endometrial Serous Adenocarcinoma 8 282402 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 282403 -NCIT:C170805 Advanced Endometrial Adenocarcinoma 8 282404 -NCIT:C170809 Advanced Endometrial Serous Adenocarcinoma 9 282405 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 282406 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 8 282407 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 282408 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 282409 -NCIT:C174043 Locally Advanced Endometrial Adenocarcinoma 8 282410 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 282411 -NCIT:C175596 Metastatic Endometrial Clear Cell Adenocarcinoma 8 282412 -NCIT:C175599 Metastatic Endometrial Mixed Cell Adenocarcinoma 8 282413 -NCIT:C8943 Metastatic Endometrioid Adenocarcinoma 7 282414 -NCIT:C170806 Metastatic Endometrial Endometrioid Adenocarcinoma 8 282415 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 282416 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 282417 -NCIT:C170807 Advanced Endometrioid Adenocarcinoma 8 282418 -NCIT:C170810 Advanced Endometrial Endometrioid Adenocarcinoma 9 282419 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 282420 -NCIT:C170938 Metastatic Ovarian Endometrioid Adenocarcinoma 8 282421 -NCIT:C170942 Advanced Ovarian Endometrioid Adenocarcinoma 9 282422 -NCIT:C174045 Locally Advanced Endometrioid Adenocarcinoma 8 282423 -NCIT:C174044 Locally Advanced Endometrial Endometrioid Adenocarcinoma 9 282424 -NCIT:C8944 Metastatic Vaginal Adenocarcinoma 7 282425 -NCIT:C180920 Advanced Vaginal Adenocarcinoma 8 282426 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 7 282427 -NCIT:C156286 Advanced Prostate Adenocarcinoma 8 282428 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 282429 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 8 282430 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 282431 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 8 282432 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 282433 -NCIT:C9044 Metastatic Parathyroid Gland Carcinoma 7 282434 -NCIT:C163958 Locally Advanced Parathyroid Gland Carcinoma 8 282435 -NCIT:C5628 Metastatic Carcinoma in the Skin 6 282436 -NCIT:C188113 Metastatic Squamous Cell Carcinoma in the Skin 7 282437 -NCIT:C28311 Metastatic Breast Carcinoma in the Skin 7 282438 -NCIT:C6334 Metastatic Carcinoma in the Uterine Cervix 6 282439 -NCIT:C9276 Metastatic Carcinoma in the Adrenal Medulla 6 282440 -NCIT:C96767 Metastatic Carcinoma in the Liver 6 282441 -NCIT:C157366 Colorectal Carcinoma Metastatic in the Liver 7 282442 -NCIT:C136240 Rectal Carcinoma Metastatic in the Liver 8 282443 -NCIT:C157355 Colorectal Adenocarcinoma Metastatic in the Liver 8 282444 -NCIT:C36309 Colon Carcinoma Metastatic in the Liver 8 282445 -NCIT:C36302 Breast Carcinoma Metastatic in the Liver 7 282446 -NCIT:C36306 Lung Carcinoma Metastatic in the Liver 7 282447 -NCIT:C43344 Cylindrocarcinoma 5 282448 -NCIT:C4397 Carcinoma ex Pleomorphic Adenoma 5 282449 -NCIT:C40410 Salivary Gland Carcinoma ex Pleomorphic Adenoma 6 282450 -NCIT:C5975 Major Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 282451 -NCIT:C5974 Parotid Gland Carcinoma ex Pleomorphic Adenoma 8 282452 -NCIT:C153805 Recurrent Parotid Gland Carcinoma ex Pleomorphic Adenoma 9 282453 -NCIT:C5977 Submandibular Gland Carcinoma ex Pleomorphic Adenoma 8 282454 -NCIT:C153808 Recurrent Submandibular Gland Carcinoma ex Pleomorphic Adenoma 9 282455 -NCIT:C5976 Minor Salivary Gland Carcinoma ex Pleomorphic Adenoma 7 282456 -NCIT:C6804 Lacrimal Gland Carcinoma ex Pleomorphic Adenoma 6 282457 -NCIT:C5117 Spiradenocarcinoma 5 282458 -NCIT:C5180 Malignant Breast Spiradenoma 6 282459 -NCIT:C54303 Primary Intraosseous Squamous Cell Carcinoma Derived From Keratocystic Odontogenic Tumor 5 282460 -NCIT:C7496 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated) 5 282461 -NCIT:C54298 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated), Intraosseous 6 282462 -NCIT:C54299 Ameloblastic Carcinoma-Secondary Type (Dedifferentiated), Peripheral 6 282463 -NCIT:C7497 Ameloblastic Carcinoma Derived From Odontogenic Cyst 5 282464 -NCIT:C7500 Primary Intraosseous Squamous Cell Carcinoma Derived From Odontogenic Cyst 5 282465 -NCIT:C79949 Carcinoma Arising from Craniopharyngioma 5 282466 -NCIT:C53704 Secondary Osteosarcoma 4 282467 -NCIT:C53706 Radiation-Related Osteosarcoma 5 282468 -NCIT:C6469 Osteosarcoma Arising in Paget Disease of Bone 5 282469 -NCIT:C5416 Secondary Supratentorial Anaplastic Astrocytoma 4 282470 -NCIT:C80683 Therapy-Related Leukemia 4 282471 -NCIT:C80691 Chemotherapy-Related Leukemia 5 282472 -NCIT:C27754 Alkylating Agent-Related Acute Myeloid Leukemia 6 282473 -NCIT:C8252 Therapy-Related Acute Myeloid Leukemia 5 282474 -NCIT:C186730 Therapy-Related Cytogenetically Normal Acute Myeloid Leukemia 6 282475 -NCIT:C27754 Alkylating Agent-Related Acute Myeloid Leukemia 6 282476 -NCIT:C27755 Topoisomerase II Inhibitor-Related Acute Myeloid Leukemia 6 282477 -NCIT:C4969 Therapy-Related Malignant Neoplasm 3 282478 -NCIT:C150678 Methotrexate-Associated Lymphoma 4 282479 -NCIT:C7252 Methotrexate-Associated Peripheral T-Cell Lymphoma 5 282480 -NCIT:C7253 Methotrexate-Associated Diffuse Large B-Cell Lymphoma 5 282481 -NCIT:C7254 Methotrexate-Associated Follicular Lymphoma 5 282482 -NCIT:C7255 Methotrexate-Related Burkitt Lymphoma 5 282483 -NCIT:C7256 Methotrexate-Associated Hodgkin Lymphoma 5 282484 -NCIT:C27632 Transplant-Related Malignant Neoplasm 4 282485 -NCIT:C27633 Transplant-Related Carcinoma 5 282486 -NCIT:C154700 Transplant-Related Squamous Cell Carcinoma 6 282487 -NCIT:C27636 Transplant-Related Skin Squamous Cell Carcinoma 7 282488 -NCIT:C27634 Transplant-Related Bladder Urothelial Carcinoma 6 282489 -NCIT:C27635 Transplant-Related Hepatocellular Carcinoma 6 282490 -NCIT:C27637 Transplant-Related Lung Carcinoma 6 282491 -NCIT:C27638 Transplant-Related Renal Cell Carcinoma 6 282492 -NCIT:C27639 Transplant-Related Hematologic Malignancy 5 282493 -NCIT:C27695 EBV-Related Clonal Post-Transplant Lymphoproliferative Disorder 6 282494 -NCIT:C7239 Hodgkin-Like Post-Transplant Lymphoproliferative Disorder 7 282495 -NCIT:C7243 Classic Hodgkin Lymphoma Type Post-Transplant Lymphoproliferative Disorder 7 282496 -NCIT:C7233 Monomorphic Post-Transplant Lymphoproliferative Disorder 6 282497 -NCIT:C157474 Recurrent Monomorphic Post-Transplant Lymphoproliferative Disorder 7 282498 -NCIT:C157475 Refractory Monomorphic Post-Transplant Lymphoproliferative Disorder 7 282499 -NCIT:C7237 Monomorphic B-Cell Post-Transplant Lymphoproliferative Disorder 7 282500 -NCIT:C7240 Plasma Cell Post-Transplant Lymphoproliferative Disorder 8 282501 -NCIT:C7241 Plasmacytoma-Like Post-Transplant Lymphoproliferative Disorder 9 282502 -NCIT:C7242 Plasma Cell Myeloma Post-Transplant Lymphoproliferative Disorder 9 282503 -NCIT:C7244 Burkitt Lymphoma Post-Transplant Lymphoproliferative Disorder 8 282504 -NCIT:C7245 Burkitt-Like Lymphoma Post-Transplant Lymphoproliferative Disorder 9 282505 -NCIT:C7246 Diffuse Large B-Cell Lymphoma Post-Transplant Lymphoproliferative Disorder 8 282506 -NCIT:C7247 Anaplastic Lymphoma Post-Transplant Lymphoproliferative Disorder 9 282507 -NCIT:C7248 Centroblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 9 282508 -NCIT:C7249 Immunoblastic Lymphoma Post-Transplant Lymphoproliferative Disorder 9 282509 -NCIT:C7238 Monomorphic T/NK-Cell Post-Transplant Lymphoproliferative Disorder 7 282510 -NCIT:C27640 Transplant-Related Kaposi Sarcoma 5 282511 -NCIT:C27912 Therapy-Related Myeloid Neoplasm 4 282512 -NCIT:C27722 Therapy-Related Myelodysplastic Syndrome 5 282513 -NCIT:C7642 Epipodophyllotoxin-Related Myelodysplastic Syndrome 6 282514 -NCIT:C7643 Alkylating Agent-Related Myelodysplastic Syndrome 6 282515 -NCIT:C27913 Alkylating Agent-Related Acute Myeloid Leukemia and Myelodysplastic Syndrome 5 282516 -NCIT:C27754 Alkylating Agent-Related Acute Myeloid Leukemia 6 282517 -NCIT:C7643 Alkylating Agent-Related Myelodysplastic Syndrome 6 282518 -NCIT:C82397 Therapy-Related Myelodysplastic/Myeloproliferative Neoplasm 5 282519 -NCIT:C8252 Therapy-Related Acute Myeloid Leukemia 5 282520 -NCIT:C186730 Therapy-Related Cytogenetically Normal Acute Myeloid Leukemia 6 282521 -NCIT:C27754 Alkylating Agent-Related Acute Myeloid Leukemia 6 282522 -NCIT:C27755 Topoisomerase II Inhibitor-Related Acute Myeloid Leukemia 6 282523 -NCIT:C35873 Iatrogenic Kaposi Sarcoma 4 282524 -NCIT:C9113 Kaposi Sarcoma Related to Immunosuppressive Treatment 5 282525 -NCIT:C27640 Transplant-Related Kaposi Sarcoma 6 282526 -NCIT:C80683 Therapy-Related Leukemia 4 282527 -NCIT:C80691 Chemotherapy-Related Leukemia 5 282528 -NCIT:C27754 Alkylating Agent-Related Acute Myeloid Leukemia 6 282529 -NCIT:C8252 Therapy-Related Acute Myeloid Leukemia 5 282530 -NCIT:C186730 Therapy-Related Cytogenetically Normal Acute Myeloid Leukemia 6 282531 -NCIT:C27754 Alkylating Agent-Related Acute Myeloid Leukemia 6 282532 -NCIT:C27755 Topoisomerase II Inhibitor-Related Acute Myeloid Leukemia 6 282533 -NCIT:C93125 Radiation-Related Sarcoma 4 282534 -NCIT:C27513 Radiation-Related Angiosarcoma 5 282535 -NCIT:C27719 Skin Radiation-Related Angiosarcoma 6 282536 -NCIT:C53706 Radiation-Related Osteosarcoma 5 282537 -NCIT:C4992 Environment-Related Malignant Neoplasm 3 282538 -NCIT:C27776 Solar Radiation-Related Malignant Neoplasm 4 282539 -NCIT:C27920 Solar Radiation-Related Cutaneous Melanoma 5 282540 -NCIT:C27921 Solar Radiation-Related Skin Squamous Cell Carcinoma 5 282541 -NCIT:C27922 Aflatoxins-Related Hepatocellular Carcinoma 4 282542 -NCIT:C4993 Occupational Malignant Neoplasm 3 282543 -NCIT:C27774 Asbestos-Related Malignant Neoplasm 4 282544 -NCIT:C27925 Asbestos-Related Lung Carcinoma 5 282545 -NCIT:C27926 Asbestos-Related Malignant Mesothelioma 5 282546 -NCIT:C27775 Aromatic Dyes-Related Malignant Neoplasm 4 282547 -NCIT:C27930 Ionizing Radiation-Related Malignant Neoplasm 4 282548 -NCIT:C27931 Benzene-Related Acute Myeloid Leukemia 4 282549 -NCIT:C65153 Malignant Neoplasm, Uncertain Whether Primary or Metastatic 3 282550 -NCIT:C6894 Malignant Solitary Fibrous Tumor 3 282551 -NCIT:C129527 Central Nervous System Solitary Fibrous Tumor, Grade 3 4 282552 -NCIT:C186603 Central Nervous System Dedifferentiated Solitary Fibrous Tumor 5 282553 -NCIT:C9183 Adult Central Nervous System Solitary Fibrous Tumor, Grade 3 5 282554 -NCIT:C92652 Meningeal Central Nervous System Solitary Fibrous Tumor, Grade 3 5 282555 -NCIT:C161580 Prostate Malignant Solitary Fibrous Tumor 4 282556 -NCIT:C79948 Dedifferentiated Solitary Fibrous Tumor 4 282557 -NCIT:C186603 Central Nervous System Dedifferentiated Solitary Fibrous Tumor 5 282558 -NCIT:C7055 Precursor Lymphoid Neoplasm 3 282559 -NCIT:C3167 Acute Lymphoblastic Leukemia 4 282560 -NCIT:C121973 Acute Lymphoblastic Leukemia by Gene Expression Profile 5 282561 -NCIT:C121975 DDIT4L Acute Lymphoblastic Leukemia 6 282562 -NCIT:C121978 Acute Lymphoblastic Leukemia by ROSE Cluster 6 282563 -NCIT:C121980 ROSE Cluster 1 7 282564 -NCIT:C121981 ROSE Cluster 2 7 282565 -NCIT:C121982 ROSE Cluster 3 7 282566 -NCIT:C121983 ROSE Cluster 4 7 282567 -NCIT:C121984 ROSE Cluster 5 7 282568 -NCIT:C121985 ROSE Cluster 6 7 282569 -NCIT:C121986 ROSE Cluster 7 7 282570 -NCIT:C121988 ROSE Cluster 8 7 282571 -NCIT:C136488 Refractory Acute Lymphoblastic Leukemia 5 282572 -NCIT:C122624 Refractory Childhood Acute Lymphoblastic Leukemia 6 282573 -NCIT:C126309 Refractory Adult Acute Lymphoblastic Leukemia 6 282574 -NCIT:C142812 Refractory B Acute Lymphoblastic Leukemia 6 282575 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 7 282576 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 7 282577 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 7 282578 -NCIT:C150510 Refractory T Acute Lymphoblastic Leukemia 6 282579 -NCIT:C142810 Recurrent Acute Lymphoblastic Leukemia 5 282580 -NCIT:C142811 Recurrent B Acute Lymphoblastic Leukemia 6 282581 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 7 282582 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 7 282583 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 7 282584 -NCIT:C150131 Recurrent T Acute Lymphoblastic Leukemia 6 282585 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 7 282586 -NCIT:C7784 Recurrent Childhood Acute Lymphoblastic Leukemia 6 282587 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 7 282588 -NCIT:C7883 Recurrent Adult Acute Lymphoblastic Leukemia 6 282589 -NCIT:C3168 Childhood Acute Lymphoblastic Leukemia 5 282590 -NCIT:C122614 Infant Acute Lymphoblastic Leukemia 6 282591 -NCIT:C122617 Infant Acute Lymphoblastic Leukemia with MLL Rearrangement 7 282592 -NCIT:C122621 Infant Acute Lymphoblastic Leukemia without MLL Gene Rearrangement 7 282593 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 7 282594 -NCIT:C122624 Refractory Childhood Acute Lymphoblastic Leukemia 6 282595 -NCIT:C7784 Recurrent Childhood Acute Lymphoblastic Leukemia 6 282596 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 7 282597 -NCIT:C7953 Childhood T Acute Lymphoblastic Leukemia 6 282598 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 7 282599 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 7 282600 -NCIT:C9140 Childhood B Acute Lymphoblastic Leukemia 6 282601 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 7 282602 -NCIT:C3183 T Acute Lymphoblastic Leukemia 5 282603 -NCIT:C130043 Early T Acute Lymphoblastic Leukemia 6 282604 -NCIT:C150131 Recurrent T Acute Lymphoblastic Leukemia 6 282605 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 7 282606 -NCIT:C150510 Refractory T Acute Lymphoblastic Leukemia 6 282607 -NCIT:C45739 Mediastinal T Acute Lymphoblastic Leukemia 6 282608 -NCIT:C7953 Childhood T Acute Lymphoblastic Leukemia 6 282609 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 7 282610 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 7 282611 -NCIT:C9142 Adult T Acute Lymphoblastic Leukemia 6 282612 -NCIT:C4967 Adult Acute Lymphoblastic Leukemia 5 282613 -NCIT:C126309 Refractory Adult Acute Lymphoblastic Leukemia 6 282614 -NCIT:C7883 Recurrent Adult Acute Lymphoblastic Leukemia 6 282615 -NCIT:C9142 Adult T Acute Lymphoblastic Leukemia 6 282616 -NCIT:C9143 Adult B Acute Lymphoblastic Leukemia 6 282617 -NCIT:C114819 Adult B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 7 282618 -NCIT:C7177 Aleukemic Acute Lymphoblastic Leukemia 5 282619 -NCIT:C5631 Aleukemic Acute Lymphoblastic Leukemia Cutis 6 282620 -NCIT:C8644 B Acute Lymphoblastic Leukemia 5 282621 -NCIT:C121974 B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 6 282622 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 7 282623 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 7 282624 -NCIT:C128629 B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 6 282625 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 7 282626 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 7 282627 -NCIT:C130040 B Acute Lymphoblastic Leukemia with Intrachromosomal Amplification of Chromosome 21 6 282628 -NCIT:C142811 Recurrent B Acute Lymphoblastic Leukemia 6 282629 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 7 282630 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 7 282631 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 7 282632 -NCIT:C142812 Refractory B Acute Lymphoblastic Leukemia 6 282633 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 7 282634 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 7 282635 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 7 282636 -NCIT:C162776 B Acute Lymphoblastic Leukemia with t(4;11)(q21;23) 6 282637 -NCIT:C190847 B Acute Lymphoblastic Leukemia Associated with Down Syndrome 6 282638 -NCIT:C190957 B Acute Lymphoblastic Leukemia with ETV6-RUNX1-Like Features 6 282639 -NCIT:C36312 B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 6 282640 -NCIT:C114819 Adult B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 7 282641 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 7 282642 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 7 282643 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 7 282644 -NCIT:C80342 B Acute Lymphoblastic Leukemia with t(v;11q23.3); MLL Rearranged 6 282645 -NCIT:C80343 B Acute Lymphoblastic Leukemia with t(12;21)(p13.2;q22.1); ETV6-RUNX1 6 282646 -NCIT:C80344 Hyperdiploid B Acute Lymphoblastic Leukemia 6 282647 -NCIT:C80345 Hypodiploid B Acute Lymphoblastic Leukemia 6 282648 -NCIT:C80346 B Acute Lymphoblastic Leukemia with t(5;14)(q31.1;q32.3); IL3-IGH 6 282649 -NCIT:C80347 B Acute Lymphoblastic Leukemia with t(1;19)(q23;p13.3); E2A-PBX1 (TCF3-PBX1) 6 282650 -NCIT:C9140 Childhood B Acute Lymphoblastic Leukemia 6 282651 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 7 282652 -NCIT:C9143 Adult B Acute Lymphoblastic Leukemia 6 282653 -NCIT:C114819 Adult B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 7 282654 -NCIT:C45238 Cutaneous Precursor Lymphoid Neoplasm 4 282655 -NCIT:C45241 Cutaneous B Lymphoblastic Leukemia/Lymphoma 5 282656 -NCIT:C45242 Cutaneous T Lymphoblastic Leukemia/Lymphoma 5 282657 -NCIT:C5631 Aleukemic Acute Lymphoblastic Leukemia Cutis 5 282658 -NCIT:C82217 Natural Killer Cell Lymphoblastic Leukemia/Lymphoma 4 282659 -NCIT:C8694 T Lymphoblastic Leukemia/Lymphoma 4 282660 -NCIT:C3183 T Acute Lymphoblastic Leukemia 5 282661 -NCIT:C130043 Early T Acute Lymphoblastic Leukemia 6 282662 -NCIT:C150131 Recurrent T Acute Lymphoblastic Leukemia 6 282663 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 7 282664 -NCIT:C150510 Refractory T Acute Lymphoblastic Leukemia 6 282665 -NCIT:C45739 Mediastinal T Acute Lymphoblastic Leukemia 6 282666 -NCIT:C7953 Childhood T Acute Lymphoblastic Leukemia 6 282667 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 7 282668 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 7 282669 -NCIT:C9142 Adult T Acute Lymphoblastic Leukemia 6 282670 -NCIT:C45242 Cutaneous T Lymphoblastic Leukemia/Lymphoma 5 282671 -NCIT:C45738 Mediastinal T Lymphoblastic Leukemia/Lymphoma 5 282672 -NCIT:C45739 Mediastinal T Acute Lymphoblastic Leukemia 6 282673 -NCIT:C45740 Mediastinal T Lymphoblastic Lymphoma 6 282674 -NCIT:C5640 Childhood T Lymphoblastic Leukemia/Lymphoma 5 282675 -NCIT:C7210 Childhood T Lymphoblastic Lymphoma 6 282676 -NCIT:C7953 Childhood T Acute Lymphoblastic Leukemia 6 282677 -NCIT:C126112 Infant T Acute Lymphoblastic Leukemia 7 282678 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 7 282679 -NCIT:C6919 T Lymphoblastic Lymphoma 5 282680 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 6 282681 -NCIT:C45740 Mediastinal T Lymphoblastic Lymphoma 6 282682 -NCIT:C7210 Childhood T Lymphoblastic Lymphoma 6 282683 -NCIT:C7226 Adult T Lymphoblastic Lymphoma 6 282684 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 6 282685 -NCIT:C7311 Splenic T Lymphoblastic Lymphoma 6 282686 -NCIT:C8695 Recurrent T Lymphoblastic Leukemia/Lymphoma 5 282687 -NCIT:C150131 Recurrent T Acute Lymphoblastic Leukemia 6 282688 -NCIT:C131875 Recurrent Childhood T Acute Lymphoblastic Leukemia 7 282689 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 6 282690 -NCIT:C8696 Refractory T Lymphoblastic Leukemia/Lymphoma 5 282691 -NCIT:C150510 Refractory T Acute Lymphoblastic Leukemia 6 282692 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 6 282693 -NCIT:C8697 Stage I T Lymphoblastic Leukemia/Lymphoma 5 282694 -NCIT:C8698 Stage II T Lymphoblastic Leukemia/Lymphoma 5 282695 -NCIT:C8699 Stage III T Lymphoblastic Leukemia/Lymphoma 5 282696 -NCIT:C8700 Stage IV T Lymphoblastic Leukemia/Lymphoma 5 282697 -NCIT:C8936 B Lymphoblastic Leukemia/Lymphoma 4 282698 -NCIT:C188453 Childhood B Lymphoblastic Leukemia/Lymphoma 5 282699 -NCIT:C7209 Childhood B Lymphoblastic Lymphoma 6 282700 -NCIT:C9140 Childhood B Acute Lymphoblastic Leukemia 6 282701 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 7 282702 -NCIT:C45241 Cutaneous B Lymphoblastic Leukemia/Lymphoma 5 282703 -NCIT:C80326 B Lymphoblastic Leukemia/Lymphoma, Not Otherwise Specified 5 282704 -NCIT:C80328 B Lymphoblastic Leukemia/Lymphoma with Recurrent Genetic Abnormalities 5 282705 -NCIT:C129787 B Lymphoblastic Leukemia/Lymphoma with BCR-ABL1-Like Features 6 282706 -NCIT:C121974 B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 7 282707 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 282708 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 8 282709 -NCIT:C130039 B-Lymphoblastic Leukemia/Lymphoma with Intrachromosomal Amplification of Chromosome 21 6 282710 -NCIT:C130040 B Acute Lymphoblastic Leukemia with Intrachromosomal Amplification of Chromosome 21 7 282711 -NCIT:C190956 B Lymphoblastic Leukemia/Lymphoma with ETV6-RUNX1-Like Features 6 282712 -NCIT:C190957 B Acute Lymphoblastic Leukemia with ETV6-RUNX1-Like Features 7 282713 -NCIT:C80331 B Lymphoblastic Leukemia/Lymphoma with t(9;22)(q34.1;q11.2); BCR-ABL1 6 282714 -NCIT:C36312 B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 7 282715 -NCIT:C114819 Adult B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 282716 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 282717 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 282718 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 8 282719 -NCIT:C80332 B Lymphoblastic Leukemia/Lymphoma with t(v;11q23.3); MLL Rearranged 6 282720 -NCIT:C80342 B Acute Lymphoblastic Leukemia with t(v;11q23.3); MLL Rearranged 7 282721 -NCIT:C80334 B Lymphoblastic Leukemia/Lymphoma with t(12;21)(p13.2;q22.1); ETV6-RUNX1 6 282722 -NCIT:C80343 B Acute Lymphoblastic Leukemia with t(12;21)(p13.2;q22.1); ETV6-RUNX1 7 282723 -NCIT:C80335 B Lymphoblastic Leukemia/Lymphoma with Hyperdiploidy 6 282724 -NCIT:C80344 Hyperdiploid B Acute Lymphoblastic Leukemia 7 282725 -NCIT:C80338 B Lymphoblastic Leukemia/Lymphoma with Hypodiploidy 6 282726 -NCIT:C80345 Hypodiploid B Acute Lymphoblastic Leukemia 7 282727 -NCIT:C80340 B Lymphoblastic Leukemia/Lymphoma with t(5;14)(q31.1;q32.3); IL3-IGH 6 282728 -NCIT:C80346 B Acute Lymphoblastic Leukemia with t(5;14)(q31.1;q32.3); IL3-IGH 7 282729 -NCIT:C80341 B Lymphoblastic Leukemia/Lymphoma with t(1;19)(q23;p13.3); E2A-PBX1 (TCF3-PBX1) 6 282730 -NCIT:C80347 B Acute Lymphoblastic Leukemia with t(1;19)(q23;p13.3); E2A-PBX1 (TCF3-PBX1) 7 282731 -NCIT:C8644 B Acute Lymphoblastic Leukemia 5 282732 -NCIT:C121974 B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 6 282733 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 7 282734 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 7 282735 -NCIT:C128629 B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 6 282736 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 7 282737 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 7 282738 -NCIT:C130040 B Acute Lymphoblastic Leukemia with Intrachromosomal Amplification of Chromosome 21 6 282739 -NCIT:C142811 Recurrent B Acute Lymphoblastic Leukemia 6 282740 -NCIT:C134834 Recurrent B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 7 282741 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 7 282742 -NCIT:C189042 Recurrent B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 7 282743 -NCIT:C142812 Refractory B Acute Lymphoblastic Leukemia 6 282744 -NCIT:C134835 Refractory B Acute Lymphoblastic Leukemia with BCR-ABL1-Like Features 7 282745 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 7 282746 -NCIT:C189043 Refractory B Acute Lymphoblastic Leukemia, Philadelphia Chromosome Negative 7 282747 -NCIT:C162776 B Acute Lymphoblastic Leukemia with t(4;11)(q21;23) 6 282748 -NCIT:C190847 B Acute Lymphoblastic Leukemia Associated with Down Syndrome 6 282749 -NCIT:C190957 B Acute Lymphoblastic Leukemia with ETV6-RUNX1-Like Features 6 282750 -NCIT:C36312 B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 6 282751 -NCIT:C114819 Adult B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 7 282752 -NCIT:C177895 Recurrent B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 7 282753 -NCIT:C179429 Refractory B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 7 282754 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 7 282755 -NCIT:C80342 B Acute Lymphoblastic Leukemia with t(v;11q23.3); MLL Rearranged 6 282756 -NCIT:C80343 B Acute Lymphoblastic Leukemia with t(12;21)(p13.2;q22.1); ETV6-RUNX1 6 282757 -NCIT:C80344 Hyperdiploid B Acute Lymphoblastic Leukemia 6 282758 -NCIT:C80345 Hypodiploid B Acute Lymphoblastic Leukemia 6 282759 -NCIT:C80346 B Acute Lymphoblastic Leukemia with t(5;14)(q31.1;q32.3); IL3-IGH 6 282760 -NCIT:C80347 B Acute Lymphoblastic Leukemia with t(1;19)(q23;p13.3); E2A-PBX1 (TCF3-PBX1) 6 282761 -NCIT:C9140 Childhood B Acute Lymphoblastic Leukemia 6 282762 -NCIT:C68659 Childhood B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 7 282763 -NCIT:C9143 Adult B Acute Lymphoblastic Leukemia 6 282764 -NCIT:C114819 Adult B Acute Lymphoblastic Leukemia with t(9;22)(q34.1;q11.2); BCR-ABL1 7 282765 -NCIT:C8868 B Lymphoblastic Lymphoma 5 282766 -NCIT:C141250 B Lymphoblastic Lymphoma by Ann Arbor Stage 6 282767 -NCIT:C8871 Ann Arbor Stage I B Lymphoblastic Lymphoma 7 282768 -NCIT:C8872 Ann Arbor Stage III B Lymphoblastic Lymphoma 7 282769 -NCIT:C8873 Ann Arbor Stage IV B Lymphoblastic Lymphoma 7 282770 -NCIT:C8937 Ann Arbor Stage II B Lymphoblastic Lymphoma 7 282771 -NCIT:C7209 Childhood B Lymphoblastic Lymphoma 6 282772 -NCIT:C7310 Splenic B Lymphoblastic Lymphoma 6 282773 -NCIT:C7338 Adult B Lymphoblastic Lymphoma 6 282774 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 6 282775 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 6 282776 -NCIT:C9360 Lymphoblastic Lymphoma 4 282777 -NCIT:C151978 Refractory Lymphoblastic Lymphoma 5 282778 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 6 282779 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 6 282780 -NCIT:C6919 T Lymphoblastic Lymphoma 5 282781 -NCIT:C186511 Recurrent T Lymphoblastic Lymphoma 6 282782 -NCIT:C45740 Mediastinal T Lymphoblastic Lymphoma 6 282783 -NCIT:C7210 Childhood T Lymphoblastic Lymphoma 6 282784 -NCIT:C7226 Adult T Lymphoblastic Lymphoma 6 282785 -NCIT:C7227 Refractory T Lymphoblastic Lymphoma 6 282786 -NCIT:C7311 Splenic T Lymphoblastic Lymphoma 6 282787 -NCIT:C7312 Splenic Lymphoblastic Lymphoma 5 282788 -NCIT:C7310 Splenic B Lymphoblastic Lymphoma 6 282789 -NCIT:C7311 Splenic T Lymphoblastic Lymphoma 6 282790 -NCIT:C8298 AIDS-Related Lymphoblastic Lymphoma 5 282791 -NCIT:C8868 B Lymphoblastic Lymphoma 5 282792 -NCIT:C141250 B Lymphoblastic Lymphoma by Ann Arbor Stage 6 282793 -NCIT:C8871 Ann Arbor Stage I B Lymphoblastic Lymphoma 7 282794 -NCIT:C8872 Ann Arbor Stage III B Lymphoblastic Lymphoma 7 282795 -NCIT:C8873 Ann Arbor Stage IV B Lymphoblastic Lymphoma 7 282796 -NCIT:C8937 Ann Arbor Stage II B Lymphoblastic Lymphoma 7 282797 -NCIT:C7209 Childhood B Lymphoblastic Lymphoma 6 282798 -NCIT:C7310 Splenic B Lymphoblastic Lymphoma 6 282799 -NCIT:C7338 Adult B Lymphoblastic Lymphoma 6 282800 -NCIT:C8869 Recurrent B Lymphoblastic Lymphoma 6 282801 -NCIT:C8870 Refractory B Lymphoblastic Lymphoma 6 282802 -NCIT:C9124 Childhood Lymphoblastic Lymphoma 5 282803 -NCIT:C7209 Childhood B Lymphoblastic Lymphoma 6 282804 -NCIT:C7210 Childhood T Lymphoblastic Lymphoma 6 282805 -NCIT:C9056 Ann Arbor Stage I Childhood Lymphoblastic Lymphoma 6 282806 -NCIT:C9057 Ann Arbor Stage II Childhood Lymphoblastic Lymphoma 6 282807 -NCIT:C9058 Ann Arbor Stage III Childhood Lymphoblastic Lymphoma 6 282808 -NCIT:C9059 Ann Arbor Stage IV Childhood Lymphoblastic Lymphoma 6 282809 -NCIT:C9060 Recurrent Childhood Lymphoblastic Lymphoma 6 282810 -NCIT:C9361 Adult Lymphoblastic Lymphoma 5 282811 -NCIT:C7226 Adult T Lymphoblastic Lymphoma 6 282812 -NCIT:C7338 Adult B Lymphoblastic Lymphoma 6 282813 -NCIT:C8079 Ann Arbor Stage I Adult Lymphoblastic Lymphoma 6 282814 -NCIT:C8125 Ann Arbor Stage II Adult Lymphoblastic Lymphoma 6 282815 -NCIT:C8476 Ann Arbor Stage II Contiguous Adult Lymphoblastic Lymphoma 7 282816 -NCIT:C8481 Ann Arbor Stage II Non-Contiguous Adult Lymphoblastic Lymphoma 7 282817 -NCIT:C8138 Ann Arbor Stage III Adult Lymphoblastic Lymphoma 6 282818 -NCIT:C8151 Ann Arbor Stage IV Adult Lymphoblastic Lymphoma 6 282819 -NCIT:C8164 Recurrent Adult Lymphoblastic Lymphoma 6 282820 -NCIT:C7151 Monoclonal Immunoglobulin Deposition Disease 3 282821 -NCIT:C158965 Light and Heavy Chain Deposition Disease 4 282822 -NCIT:C3819 Primary Amyloidosis 4 282823 -NCIT:C133731 Refractory Primary Amyloidosis 5 282824 -NCIT:C174055 Refractory AL Amyloidosis 6 282825 -NCIT:C133732 Recurrent Primary Amyloidosis 5 282826 -NCIT:C174054 Recurrent AL Amyloidosis 6 282827 -NCIT:C189282 Familial Primary Localized Cutaneous Amyloidosis-1 5 282828 -NCIT:C8299 Primary Systemic Amyloidosis 5 282829 -NCIT:C158962 AH Amyloidosis 6 282830 -NCIT:C158963 AL Amyloidosis 6 282831 -NCIT:C174054 Recurrent AL Amyloidosis 7 282832 -NCIT:C174055 Refractory AL Amyloidosis 7 282833 -NCIT:C158964 AHL Amyloidosis 6 282834 -NCIT:C7339 Heavy Chain Deposition Disease 4 282835 -NCIT:C7727 Light Chain Deposition Disease 4 282836 -NCIT:C7627 Bilateral Malignant Neoplasm 3 282837 -NCIT:C8500 Bilateral Carcinoma 4 282838 -NCIT:C150359 Bilateral Synchronous Sporadic Renal Cell Carcinoma 5 282839 -NCIT:C8287 Bilateral Breast Carcinoma 5 282840 -NCIT:C40370 Synchronous Bilateral Breast Carcinoma 6 282841 -NCIT:C99390 Contralateral Breast Carcinoma 6 282842 -NCIT:C8713 Bilateral Retinoblastoma 4 282843 -NCIT:C81758 Fibroblastic Reticular Cell Tumor 3 282844 -NCIT:C84270 Myeloid/Lymphoid Neoplasms with Eosinophilia and Rearrangement of PDGFRA, PDGFRB, or FGFR1, or with PCM1-JAK2 3 282845 -NCIT:C129853 Myeloid/Lymphoid Neoplasms with PCM1-JAK2 4 282846 -NCIT:C84275 Myeloid/Lymphoid Neoplasms with PDGFRA Rearrangement 4 282847 -NCIT:C126351 Chronic Eosinophilic Leukemia with FIP1L1-PDGFRA 5 282848 -NCIT:C84276 Myeloid/Lymphoid Neoplasms with PDGFRB Rearrangement 4 282849 -NCIT:C129852 Chronic Myelomonocytic Leukemia with Eosinophilia Associated with t(5;12)(q31;p12) 5 282850 -NCIT:C84277 Myeloid/Lymphoid Neoplasms with FGFR1 Rearrangement 4 282851 -NCIT:C84509 Primary Malignant Neoplasm 3 282852 -NCIT:C95606 Second Primary Malignant Neoplasm 4 282853 -NCIT:C8505 Invasive Malignant Neoplasm 3 282854 -NCIT:C36028 Microinvasive Malignant Neoplasm 4 282855 -NCIT:C167354 Microinvasive Anal Carcinoma 5 282856 -NCIT:C40374 Microinvasive Breast Carcinoma 5 282857 -NCIT:C65178 Microinvasive Squamous Cell Carcinoma 5 282858 -NCIT:C7326 Testicular Germ Cell Neoplasia In Situ with Extratubular Extension 5 282859 -NCIT:C48607 Invasive Cutaneous Melanoma 4 282860 -NCIT:C7904 Invasive Malignant Thymoma 4 282861 -NCIT:C159904 Advanced Malignant Thymoma 5 282862 -NCIT:C9480 Invasive Carcinoma 4 282863 -NCIT:C136709 Invasive Lung Mucinous Adenocarcinoma 5 282864 -NCIT:C150570 Invasive Bladder Carcinoma 5 282865 -NCIT:C150572 Muscle Invasive Bladder Carcinoma 6 282866 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 7 282867 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 8 282868 -NCIT:C165716 Invasive Bladder Mixed Carcinoma 6 282869 -NCIT:C27474 Non-Muscle Invasive Bladder Carcinoma 6 282870 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 7 282871 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 8 282872 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 8 282873 -NCIT:C190772 Metastatic Non-Muscle Invasive Bladder Carcinoma 7 282874 -NCIT:C190773 Locally Advanced Non-Muscle Invasive Bladder Carcinoma 8 282875 -NCIT:C190774 Recurrent Non-Muscle Invasive Bladder Carcinoma 7 282876 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 8 282877 -NCIT:C27885 Invasive Bladder Urothelial Carcinoma 6 282878 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 7 282879 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 8 282880 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 8 282881 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 7 282882 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 8 282883 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 7 282884 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 7 282885 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 7 282886 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 7 282887 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 7 282888 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 282889 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 7 282890 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 7 282891 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 7 282892 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 7 282893 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 282894 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 7 282895 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 7 282896 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 7 282897 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 282898 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 7 282899 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 282900 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 8 282901 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 8 282902 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 7 282903 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 282904 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 7 282905 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 282906 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 7 282907 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 282908 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 7 282909 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 7 282910 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 7 282911 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 7 282912 -NCIT:C156123 Thyroid Gland Follicular Carcinoma, Widely Invasive 5 282913 -NCIT:C162531 Invasive Adenocarcinoma in Adenomatous Polyp 5 282914 -NCIT:C167354 Microinvasive Anal Carcinoma 5 282915 -NCIT:C183109 Invasive Lung Non-Mucinous Adenocarcinoma 5 282916 -NCIT:C123160 Lepidic Adenocarcinoma 6 282917 -NCIT:C5649 Lung Acinar Adenocarcinoma 6 282918 -NCIT:C5650 Lung Papillary Adenocarcinoma 6 282919 -NCIT:C128847 Lung Micropapillary Adenocarcinoma 7 282920 -NCIT:C5651 Solid Lung Adenocarcinoma 6 282921 -NCIT:C38760 Submucosal Invasive Colon Adenocarcinoma 5 282922 -NCIT:C39853 Invasive Urothelial Carcinoma 5 282923 -NCIT:C115966 Invasive Bladder Urothelial Carcinoma Associated with Urethral Carcinoma 6 282924 -NCIT:C164252 Invasive Sarcomatoid Urothelial Carcinoma 6 282925 -NCIT:C191736 Metastatic Sarcomatoid Urothelial Carcinoma 7 282926 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 282927 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 7 282928 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 282929 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 8 282930 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 8 282931 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 7 282932 -NCIT:C191678 Invasive Lymphoepithelioma-Like Urothelial Carcinoma 6 282933 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 7 282934 -NCIT:C191679 Invasive Giant Cell Urothelial Carcinoma 6 282935 -NCIT:C191693 Metastatic Giant Cell Urothelial Carcinoma 7 282936 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 282937 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 7 282938 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 282939 -NCIT:C191680 Invasive Urothelial Carcinoma with Glandular Differentiation 6 282940 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 7 282941 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 7 282942 -NCIT:C191681 Invasive Urothelial Carcinoma with Squamous Differentiation 6 282943 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 7 282944 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 7 282945 -NCIT:C191682 Invasive Urothelial Carcinoma with Trophoblastic Differentiation 6 282946 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 7 282947 -NCIT:C191683 Invasive Clear Cell (Glycogen-Rich) Urothelial Carcinoma 6 282948 -NCIT:C191692 Metastatic Clear Cell (Glycogen-Rich) Urothelial Carcinoma 7 282949 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 282950 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 7 282951 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 282952 -NCIT:C191684 Invasive Lipid-Rich Urothelial Carcinoma 6 282953 -NCIT:C191694 Metastatic Lipid-Rich Urothelial Carcinoma 7 282954 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 282955 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 7 282956 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 282957 -NCIT:C191685 Invasive Microcystic Urothelial Carcinoma 6 282958 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 7 282959 -NCIT:C191686 Invasive Micropapillary Urothelial Carcinoma 6 282960 -NCIT:C191695 Metastatic Micropapillary Urothelial Carcinoma 7 282961 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 282962 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 7 282963 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 282964 -NCIT:C191687 Invasive Nested Urothelial Carcinoma 6 282965 -NCIT:C191696 Metastatic Nested Urothelial Carcinoma 7 282966 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 282967 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 7 282968 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 282969 -NCIT:C191688 Invasive Plasmacytoid Urothelial Carcinoma 6 282970 -NCIT:C191697 Metastatic Plasmacytoid Urothelial Carcinoma 7 282971 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 282972 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 7 282973 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 282974 -NCIT:C191725 Invasive Large Nested Urothelial Carcinoma 6 282975 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 7 282976 -NCIT:C191728 Invasive Tubular Urothelial Carcinoma 6 282977 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 7 282978 -NCIT:C191730 Invasive Poorly Differentiated Urothelial Carcinoma 6 282979 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 7 282980 -NCIT:C191734 Invasive Conventional Urothelial Carcinoma 6 282981 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 7 282982 -NCIT:C27885 Invasive Bladder Urothelial Carcinoma 6 282983 -NCIT:C170772 Non-Muscle Invasive Bladder Urothelial Carcinoma 7 282984 -NCIT:C170773 Recurrent Non-Muscle Invasive Bladder Urothelial Carcinoma 8 282985 -NCIT:C180530 Refractory Non-Muscle Invasive Bladder Urothelial Carcinoma 8 282986 -NCIT:C180604 Muscle Invasive Bladder Urothelial Carcinoma 7 282987 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 8 282988 -NCIT:C191726 Invasive Bladder Large Nested Urothelial Carcinoma 7 282989 -NCIT:C191729 Invasive Bladder Tubular Urothelial Carcinoma 7 282990 -NCIT:C191731 Invasive Bladder Poorly Differentiated Urothelial Carcinoma 7 282991 -NCIT:C191735 Invasive Bladder Conventional Urothelial Carcinoma 7 282992 -NCIT:C27202 Invasive Bladder Micropapillary Urothelial Carcinoma 7 282993 -NCIT:C157767 Metastatic Bladder Micropapillary Urothelial Carcinoma 8 282994 -NCIT:C39816 Invasive Bladder Urothelial Carcinoma with Squamous Differentiation 7 282995 -NCIT:C39817 Invasive Bladder Urothelial Carcinoma with Glandular Differentiation 7 282996 -NCIT:C39818 Invasive Bladder Urothelial Carcinoma with Trophoblastic Differentiation 7 282997 -NCIT:C39819 Invasive Bladder Nested Urothelial Carcinoma 7 282998 -NCIT:C157770 Metastatic Bladder Nested Urothelial Carcinoma 8 282999 -NCIT:C39820 Invasive Bladder Microcystic Urothelial Carcinoma 7 283000 -NCIT:C39821 Invasive Bladder Lymphoepithelioma-Like Carcinoma 7 283001 -NCIT:C39823 Invasive Bladder Plasmacytoid Urothelial Carcinoma 7 283002 -NCIT:C157751 Metastatic Bladder Plasmacytoid Urothelial Carcinoma 8 283003 -NCIT:C39824 Invasive Bladder Sarcomatoid Urothelial Carcinoma 7 283004 -NCIT:C157766 Metastatic Bladder Sarcomatoid Urothelial Carcinoma 8 283005 -NCIT:C39825 Invasive Bladder Sarcomatoid Urothelial Carcinoma with Heterologous Elements 8 283006 -NCIT:C39826 Invasive Bladder Sarcomatoid Urothelial Carcinoma without Heterologous Elements 8 283007 -NCIT:C39827 Invasive Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 7 283008 -NCIT:C157768 Metastatic Bladder Clear Cell (Glycogen-Rich) Urothelial Carcinoma 8 283009 -NCIT:C39828 Invasive Bladder Lipid-Rich Urothelial Carcinoma 7 283010 -NCIT:C157754 Metastatic Bladder Lipid-Rich Urothelial Carcinoma 8 283011 -NCIT:C39829 Invasive Bladder Giant Cell Urothelial Carcinoma 7 283012 -NCIT:C157769 Metastatic Bladder Giant Cell Urothelial Carcinoma 8 283013 -NCIT:C6191 Stage I Bladder Urothelial Carcinoma AJCC v6 and v7 7 283014 -NCIT:C8939 Stage II Bladder Urothelial Carcinoma AJCC v6 and v7 7 283015 -NCIT:C8940 Stage III Bladder Urothelial Carcinoma AJCC v6 and v7 7 283016 -NCIT:C8941 Stage IV Bladder Urothelial Carcinoma AJCC v7 7 283017 -NCIT:C39879 Invasive Renal Pelvis and Ureter Urothelial Carcinoma 6 283018 -NCIT:C6156 Invasive Ureter Urothelial Carcinoma with Squamous Differentiation 7 283019 -NCIT:C6157 Invasive Ureter Urothelial Carcinoma with Glandular Differentiation 7 283020 -NCIT:C6186 Invasive Renal Pelvis Sarcomatoid Urothelial Carcinoma 7 283021 -NCIT:C41246 Pancreatic Mucinous-Cystic Neoplasm with an Associated Invasive Carcinoma 5 283022 -NCIT:C48596 Invasive Prostate Carcinoma 5 283023 -NCIT:C158912 Prostate Neuroendocrine Carcinoma 6 283024 -NCIT:C158650 Prostate Large Cell Neuroendocrine Carcinoma 7 283025 -NCIT:C158913 Metastatic Prostate Neuroendocrine Carcinoma 7 283026 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 283027 -NCIT:C158914 Locally Advanced Prostate Neuroendocrine Carcinoma 8 283028 -NCIT:C6766 Prostate Small Cell Neuroendocrine Carcinoma 7 283029 -NCIT:C157764 Metastatic Prostate Small Cell Neuroendocrine Carcinoma 8 283030 -NCIT:C191856 Unresectable Prostate Small Cell Neuroendocrine Carcinoma 8 283031 -NCIT:C191859 Recurrent Prostate Small Cell Neuroendocrine Carcinoma 8 283032 -NCIT:C191862 Refractory Prostate Small Cell Neuroendocrine Carcinoma 8 283033 -NCIT:C2919 Prostate Adenocarcinoma 6 283034 -NCIT:C150557 Prostate Adenocarcinoma without Neuroendocrine Differentiation 7 283035 -NCIT:C164185 Aggressive Prostate Adenocarcinoma 7 283036 -NCIT:C164186 Prostate Adenocarcinoma by AJCC v7 Stage 7 283037 -NCIT:C8947 Stage I Prostate Adenocarcinoma AJCC v7 8 283038 -NCIT:C8948 Stage II Prostate Adenocarcinoma AJCC v7 8 283039 -NCIT:C8949 Stage III Prostate Adenocarcinoma AJCC v7 8 283040 -NCIT:C8950 Stage IV Prostate Adenocarcinoma AJCC v7 8 283041 -NCIT:C167256 Refractory Prostate Adenocarcinoma 7 283042 -NCIT:C171012 Recurrent Prostate Adenocarcinoma 7 283043 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 8 283044 -NCIT:C27905 Well Differentiated Prostate Adenocarcinoma 7 283045 -NCIT:C39896 Prostate Ductal Adenocarcinoma, Papillary Pattern 8 283046 -NCIT:C27906 Moderately Differentiated Prostate Adenocarcinoma 7 283047 -NCIT:C27916 Poorly Differentiated Prostate Adenocarcinoma 7 283048 -NCIT:C5530 Prostate Acinar Adenocarcinoma, Sarcomatoid Variant 8 283049 -NCIT:C39903 Prostate Adenocarcinoma with Neuroendocrine Differentiation 7 283050 -NCIT:C158656 Usual Prostate Adenocarcinoma with Neuroendocrine Differentiation 8 283051 -NCIT:C158664 Prostate Adenocarcinoma with Paneth Cell-Like Neuroendocrine Differentiation 8 283052 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 8 283053 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 283054 -NCIT:C5596 Prostate Acinar Adenocarcinoma 7 283055 -NCIT:C153570 Recurrent Prostate Acinar Adenocarcinoma 8 283056 -NCIT:C158656 Usual Prostate Adenocarcinoma with Neuroendocrine Differentiation 8 283057 -NCIT:C160817 Prostate Acinar Adenocarcinoma, Microcystic Variant 8 283058 -NCIT:C160818 Prostate Acinar Adenocarcinoma, Pleomorphic Giant Cell Variant 8 283059 -NCIT:C39880 Prostate Acinar Adenocarcinoma, Atrophic Variant 8 283060 -NCIT:C39881 Prostate Acinar Adenocarcinoma, Pseudohyperplastic Variant 8 283061 -NCIT:C39882 Prostate Acinar Adenocarcinoma, Foamy Gland Variant 8 283062 -NCIT:C39884 Prostate Acinar Adenocarcinoma, Oncocytic Variant 8 283063 -NCIT:C39885 Prostate Acinar Adenocarcinoma, Lymphoepithelioma-Like Variant 8 283064 -NCIT:C5530 Prostate Acinar Adenocarcinoma, Sarcomatoid Variant 8 283065 -NCIT:C5535 Prostate Acinar Adenocarcinoma, Signet Ring-Like Cell Variant 8 283066 -NCIT:C5537 Prostate Acinar Mucinous Adenocarcinoma 8 283067 -NCIT:C6813 Prostate Ductal Adenocarcinoma 7 283068 -NCIT:C39895 Prostate Ductal Adenocarcinoma, Cribriform Pattern 8 283069 -NCIT:C39896 Prostate Ductal Adenocarcinoma, Papillary Pattern 8 283070 -NCIT:C39897 Prostate Ductal Adenocarcinoma, Solid Pattern 8 283071 -NCIT:C8945 Metastatic Prostate Adenocarcinoma 7 283072 -NCIT:C156286 Advanced Prostate Adenocarcinoma 8 283073 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 283074 -NCIT:C156287 Locally Advanced Prostate Adenocarcinoma 8 283075 -NCIT:C156289 Locally Advanced Unresectable Prostate Adenocarcinoma 9 283076 -NCIT:C186455 Metastatic Prostate Adenocarcinoma with Neuroendocrine Differentiation 8 283077 -NCIT:C186456 Advanced Prostate Adenocarcinoma with Neuroendocrine Differentiation 9 283078 -NCIT:C39902 Prostate Basal Cell Carcinoma 6 283079 -NCIT:C5536 Prostate Squamous Cell Carcinoma 6 283080 -NCIT:C5538 Prostate Adenosquamous Carcinoma 6 283081 -NCIT:C5539 Prostate Adenoid Cystic Carcinoma 6 283082 -NCIT:C5597 Prostate Undifferentiated Carcinoma 6 283083 -NCIT:C65178 Microinvasive Squamous Cell Carcinoma 5 283084 -NCIT:C65200 Thyroid Gland Follicular Carcinoma, Minimally Invasive 5 283085 -NCIT:C7438 Invasive Papillary Adenocarcinoma 5 283086 -NCIT:C36085 Invasive Breast Papillary Carcinoma 6 283087 -NCIT:C176010 Encapsulated Breast Papillary Carcinoma with Invasion 7 283088 -NCIT:C176012 Invasive Breast Solid Papillary Carcinoma 7 283089 -NCIT:C36084 Invasive Breast Micropapillary Carcinoma 7 283090 -NCIT:C7439 Breast Papillary Ductal Carcinoma In Situ with Invasion 7 283091 -NCIT:C39896 Prostate Ductal Adenocarcinoma, Papillary Pattern 6 283092 -NCIT:C5650 Lung Papillary Adenocarcinoma 6 283093 -NCIT:C128847 Lung Micropapillary Adenocarcinoma 7 283094 -NCIT:C7381 Invasive Follicular Variant Thyroid Gland Papillary Carcinoma 6 283095 -NCIT:C95967 Ampulla of Vater Invasive Papillary Adenocarcinoma 6 283096 -NCIT:C8577 Invasive Cervical Carcinoma 5 283097 -NCIT:C9245 Invasive Breast Carcinoma 5 283098 -NCIT:C175581 Breast Neuroendocrine Carcinoma 6 283099 -NCIT:C40356 Breast Large Cell Neuroendocrine Carcinoma 7 283100 -NCIT:C6760 Breast Small Cell Neuroendocrine Carcinoma 7 283101 -NCIT:C175604 Breast Polymorphous Adenocarcinoma 6 283102 -NCIT:C175607 Breast Tall Cell Carcinoma with Reversed Polarity 6 283103 -NCIT:C176504 Invasive Male Breast Carcinoma 6 283104 -NCIT:C176579 Invasive Female Breast Carcinoma 6 283105 -NCIT:C27829 Invasive Breast Carcinoma by Histologic Grade 6 283106 -NCIT:C27830 Grade 1 Invasive Breast Carcinoma 7 283107 -NCIT:C27831 Grade 2 Invasive Breast Carcinoma 7 283108 -NCIT:C27832 Grade 3 Invasive Breast Carcinoma 7 283109 -NCIT:C5161 Breast Pleomorphic Carcinoma 8 283110 -NCIT:C36085 Invasive Breast Papillary Carcinoma 6 283111 -NCIT:C176010 Encapsulated Breast Papillary Carcinoma with Invasion 7 283112 -NCIT:C176012 Invasive Breast Solid Papillary Carcinoma 7 283113 -NCIT:C36084 Invasive Breast Micropapillary Carcinoma 7 283114 -NCIT:C7439 Breast Papillary Ductal Carcinoma In Situ with Invasion 7 283115 -NCIT:C4001 Breast Inflammatory Carcinoma 6 283116 -NCIT:C158751 Unresectable Breast Inflammatory Carcinoma 7 283117 -NCIT:C181787 Metastatic Breast Inflammatory Carcinoma 7 283118 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 8 283119 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 8 283120 -NCIT:C9246 Stage IIIB Breast Inflammatory Carcinoma 8 283121 -NCIT:C8607 Recurrent Breast Inflammatory Carcinoma 7 283122 -NCIT:C40347 Breast Mixed Carcinoma 6 283123 -NCIT:C40361 Breast Adenosquamous Carcinoma 7 283124 -NCIT:C40362 Low Grade Breast Adenosquamous Carcinoma 8 283125 -NCIT:C6393 Invasive Breast Ductal Carcinoma and Invasive Lobular Carcinoma 7 283126 -NCIT:C40354 Breast Mucinous Cystadenocarcinoma 6 283127 -NCIT:C40367 Breast Acinic Cell Carcinoma 6 283128 -NCIT:C153568 Recurrent Breast Acinic Cell Carcinoma 7 283129 -NCIT:C40374 Microinvasive Breast Carcinoma 6 283130 -NCIT:C40395 Breast Malignant Myoepithelioma 6 283131 -NCIT:C4189 Breast Secretory Carcinoma 6 283132 -NCIT:C4194 Invasive Breast Carcinoma of No Special Type 6 283133 -NCIT:C153587 Recurrent Invasive Breast Carcinoma of No Special Type 7 283134 -NCIT:C175585 Breast Carcinoma with Neuroendocrine Differentiation 7 283135 -NCIT:C40349 Breast Carcinoma with Osteoclast-Like Stromal Giant Cells 7 283136 -NCIT:C40350 Breast Carcinoma with Choriocarcinomatous Features 7 283137 -NCIT:C40351 Breast Carcinoma with Melanotic Features 7 283138 -NCIT:C40365 Breast Lipid-Rich Carcinoma 7 283139 -NCIT:C40366 Breast Oncocytic Carcinoma 7 283140 -NCIT:C40368 Glycogen-Rich, Clear Cell Breast Carcinoma 7 283141 -NCIT:C40369 Breast Sebaceous Carcinoma 7 283142 -NCIT:C5161 Breast Pleomorphic Carcinoma 7 283143 -NCIT:C66719 Breast Atypical Medullary Carcinoma 7 283144 -NCIT:C6987 Breast Ductal Carcinoma with Squamous Metaplasia 7 283145 -NCIT:C7362 Breast Scirrhous Carcinoma 7 283146 -NCIT:C9119 Breast Medullary Carcinoma 7 283147 -NCIT:C9132 Invasive Breast Carcinoma of No Special Type with Predominant Intraductal Component 7 283148 -NCIT:C5130 Breast Adenoid Cystic Carcinoma 6 283149 -NCIT:C5142 Invasive Breast Cribriform Carcinoma 6 283150 -NCIT:C5164 Breast Metaplastic Carcinoma 6 283151 -NCIT:C40360 Breast Adenocarcinoma with Spindle Cell Metaplasia 7 283152 -NCIT:C40364 Breast Mixed Epithelial/Mesenchymal Metaplastic Carcinoma 7 283153 -NCIT:C47847 Breast Carcinoma with Chondroid Metaplasia 8 283154 -NCIT:C47848 Breast Carcinoma with Osseous Metaplasia 8 283155 -NCIT:C5163 Breast Adenocarcinoma with Squamous Metaplasia 7 283156 -NCIT:C6987 Breast Ductal Carcinoma with Squamous Metaplasia 8 283157 -NCIT:C5166 Breast Mucoepidermoid Carcinoma 6 283158 -NCIT:C5167 High Grade Breast Mucoepidermoid Carcinoma 7 283159 -NCIT:C5168 Low Grade Breast Mucoepidermoid Carcinoma 7 283160 -NCIT:C5175 Breast Signet Ring Cell Carcinoma 6 283161 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 7 283162 -NCIT:C54691 Invasive Breast Lobular Carcinoma, Signet Ring Variant 7 283163 -NCIT:C5177 Breast Squamous Cell Carcinoma 6 283164 -NCIT:C40357 Breast Squamous Cell Carcinoma, Large Cell Keratinizing Variant 7 283165 -NCIT:C40358 Breast Squamous Cell Carcinoma, Spindle Cell Variant 7 283166 -NCIT:C40359 Breast Squamous Cell Carcinoma, Acantholytic Variant 7 283167 -NCIT:C5178 Metastatic Breast Squamous Cell Carcinoma 7 283168 -NCIT:C5457 Invasive Breast Apocrine Carcinoma 6 283169 -NCIT:C7950 Invasive Breast Lobular Carcinoma 6 283170 -NCIT:C157235 Breast Histiocytoid Carcinoma 7 283171 -NCIT:C187405 Invasive Breast Lobular Carcinoma with Extracellular Mucin 7 283172 -NCIT:C54691 Invasive Breast Lobular Carcinoma, Signet Ring Variant 7 283173 -NCIT:C9136 Invasive Breast Lobular Carcinoma with Predominant In Situ Component 7 283174 -NCIT:C97049 Invasive Breast Lobular Carcinoma, Alveolar Variant 7 283175 -NCIT:C97051 Invasive Breast Lobular Carcinoma, Pleomorphic Variant 7 283176 -NCIT:C97052 Invasive Breast Lobular Carcinoma, Solid Variant 7 283177 -NCIT:C97053 Invasive Breast Lobular Carcinoma, Tubulolobular Variant 7 283178 -NCIT:C7951 Breast Paget Disease with Invasive Ductal Carcinoma 6 283179 -NCIT:C9131 Breast Mucinous Carcinoma 6 283180 -NCIT:C40355 Breast Columnar Cell Mucinous Carcinoma 7 283181 -NCIT:C9135 Breast Tubular Carcinoma 6 283182 -NCIT:C8576 Localized Malignant Neoplasm 3 283183 -NCIT:C165631 Localized Malignant Pancreatic Neoplasm 4 283184 -NCIT:C169041 Localized Pancreatic Adenocarcinoma 5 283185 -NCIT:C189009 Localized Pancreatic Ductal Adenocarcinoma 6 283186 -NCIT:C176558 Localized Sarcoma 4 283187 -NCIT:C115997 Localized Adult Undifferentiated High Grade Pleomorphic Sarcoma of Bone 5 283188 -NCIT:C115998 Localized Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 5 283189 -NCIT:C189240 Localized Soft Tissue Sarcoma 5 283190 -NCIT:C115292 Localized Childhood Soft Tissue Sarcoma 6 283191 -NCIT:C8065 Localized Childhood Rhabdomyosarcoma 7 283192 -NCIT:C8797 Localized Alveolar Soft Part Sarcoma 6 283193 -NCIT:C8800 Localized Epithelioid Sarcoma 6 283194 -NCIT:C8802 Localized Extraskeletal Ewing Sarcoma 6 283195 -NCIT:C8809 Localized Extraskeletal Osteosarcoma 6 283196 -NCIT:C8826 Localized Synovial Sarcoma 6 283197 -NCIT:C5060 Localized Fibrosarcoma 5 283198 -NCIT:C7780 Localized Osteosarcoma 5 283199 -NCIT:C8809 Localized Extraskeletal Osteosarcoma 6 283200 -NCIT:C7806 Localized Ewing Sarcoma 5 283201 -NCIT:C6623 Localized Bone Ewing Sarcoma 6 283202 -NCIT:C8802 Localized Extraskeletal Ewing Sarcoma 6 283203 -NCIT:C8814 Localized Leiomyosarcoma 5 283204 -NCIT:C8817 Localized Liposarcoma 5 283205 -NCIT:C9275 Localized Angiosarcoma 5 283206 -NCIT:C190685 Localized Malignant Solid Neoplasm 4 283207 -NCIT:C27294 Localized Primitive Neuroectodermal Tumor 4 283208 -NCIT:C27903 Localized Peripheral Primitive Neuroectodermal Tumor 5 283209 -NCIT:C27353 Localized Peripheral Primitive Neuroectodermal Tumor of Bone 6 283210 -NCIT:C27902 Localized Askin Tumor 6 283211 -NCIT:C7835 Localized Resectable Neuroblastoma 5 283212 -NCIT:C8277 Localized Unresectable Neuroblastoma 5 283213 -NCIT:C27901 Localized Ewing Sarcoma/Peripheral Primitive Neuroectodermal Tumor 4 283214 -NCIT:C27903 Localized Peripheral Primitive Neuroectodermal Tumor 5 283215 -NCIT:C27353 Localized Peripheral Primitive Neuroectodermal Tumor of Bone 6 283216 -NCIT:C27902 Localized Askin Tumor 6 283217 -NCIT:C7806 Localized Ewing Sarcoma 5 283218 -NCIT:C6623 Localized Bone Ewing Sarcoma 6 283219 -NCIT:C8802 Localized Extraskeletal Ewing Sarcoma 6 283220 -NCIT:C35676 Localized Malignant Gallbladder Neoplasm 4 283221 -NCIT:C7649 Localized Gallbladder Carcinoma 5 283222 -NCIT:C4938 Localized Lymphoma 4 283223 -NCIT:C166179 Localized Anaplastic Large Cell Lymphoma 5 283224 -NCIT:C4954 Localized Malignant Brain Neoplasm 4 283225 -NCIT:C7625 Localized Carcinoma 4 283226 -NCIT:C156166 Localized Gastroesophageal Junction Adenocarcinoma 5 283227 -NCIT:C156167 Localized Gastric Carcinoma 5 283228 -NCIT:C162569 Localized Head and Neck Carcinoma 5 283229 -NCIT:C7826 Localized Parathyroid Gland Carcinoma 6 283230 -NCIT:C162570 Localized Lung Carcinoma 5 283231 -NCIT:C162782 Localized Breast Carcinoma 5 283232 -NCIT:C166171 Localized Esophageal Carcinoma 5 283233 -NCIT:C169041 Localized Pancreatic Adenocarcinoma 5 283234 -NCIT:C189009 Localized Pancreatic Ductal Adenocarcinoma 6 283235 -NCIT:C176517 Localized Prostate Carcinoma 5 283236 -NCIT:C180605 Localized Muscle Invasive Bladder Urothelial Carcinoma 5 283237 -NCIT:C7649 Localized Gallbladder Carcinoma 5 283238 -NCIT:C7877 Localized Resectable Adult Liver Carcinoma 5 283239 -NCIT:C9064 Localized Resectable Adult Hepatocellular Carcinoma 6 283240 -NCIT:C7878 Localized Unresectable Adult Liver Carcinoma 5 283241 -NCIT:C9065 Localized Unresectable Adult Hepatocellular Carcinoma 6 283242 -NCIT:C7891 Localized Extrahepatic Bile Duct Carcinoma 5 283243 -NCIT:C8167 Localized Renal Pelvis and Ureter Urothelial Carcinoma 5 283244 -NCIT:C9239 Localized Malignant Mesothelioma 4 283245 -NCIT:C45666 Localized Pleural Malignant Mesothelioma 5 283246 -NCIT:C8991 Malignant Mastocytosis 3 283247 -NCIT:C170816 Refractory Malignant Mastocytosis 4 283248 -NCIT:C170817 Recurrent Malignant Mastocytosis 4 283249 -NCIT:C186735 Systemic Mastocytosis Associated with Germ Cell Tumor 4 283250 -NCIT:C186732 Aggressive Systemic Mastocytosis Associated with Germ Cell Tumor 5 283251 -NCIT:C3169 Mast Cell Leukemia 4 283252 -NCIT:C188031 Mast Cell Leukemia Associated with Another Hematological Neoplasm 5 283253 -NCIT:C9284 Systemic Mastocytosis with an Associated Hematological Neoplasm 4 283254 -NCIT:C188031 Mast Cell Leukemia Associated with Another Hematological Neoplasm 5 283255 -NCIT:C188041 Smoldering Systemic Mastocytosis with an Associated Hematological Neoplasm 5 283256 -NCIT:C9285 Aggressive Systemic Mastocytosis 4 283257 -NCIT:C186732 Aggressive Systemic Mastocytosis Associated with Germ Cell Tumor 5 283258 -NCIT:C9348 Mast Cell Sarcoma 4 283259 -NCIT:C9118 Sarcoma 3 283260 -NCIT:C148301 Refractory Sarcoma 4 283261 -NCIT:C139001 Refractory Soft Tissue Sarcoma 5 283262 -NCIT:C142851 Refractory Rhabdomyosarcoma 6 283263 -NCIT:C142880 Refractory Alveolar Rhabdomyosarcoma 7 283264 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 7 283265 -NCIT:C148295 Refractory Undifferentiated Pleomorphic Sarcoma 6 283266 -NCIT:C148296 Refractory Synovial Sarcoma 6 283267 -NCIT:C156474 Refractory Kaposi Sarcoma 6 283268 -NCIT:C158427 Refractory Desmoplastic Small Round Cell Tumor 6 283269 -NCIT:C162722 Refractory Epithelioid Sarcoma 6 283270 -NCIT:C171168 Refractory Extraskeletal Myxoid Chondrosarcoma 6 283271 -NCIT:C180979 Refractory Clear Cell Sarcoma of Soft Tissue 6 283272 -NCIT:C185882 Refractory Malignant Gastrointestinal Stromal Tumor 6 283273 -NCIT:C187194 Refractory Childhood Soft Tissue Sarcoma 6 283274 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 7 283275 -NCIT:C188034 Refractory Alveolar Soft Part Sarcoma 6 283276 -NCIT:C142853 Refractory Ewing Sarcoma 5 283277 -NCIT:C142857 Refractory Osteosarcoma 5 283278 -NCIT:C187192 Refractory Childhood Osteosarcoma 6 283279 -NCIT:C148294 Refractory Leiomyosarcoma 5 283280 -NCIT:C150594 Refractory Liposarcoma 5 283281 -NCIT:C148297 Refractory Myxoid Liposarcoma 6 283282 -NCIT:C150593 Refractory Dedifferentiated Liposarcoma 6 283283 -NCIT:C155987 Refractory Malignant Peripheral Nerve Sheath Tumor 5 283284 -NCIT:C162725 Refractory Epithelioid Malignant Peripheral Nerve Sheath Tumor 6 283285 -NCIT:C158429 Refractory Fibrosarcoma 5 283286 -NCIT:C158431 Refractory Spindle Cell Sarcoma 5 283287 -NCIT:C148302 Recurrent Sarcoma 4 283288 -NCIT:C115351 Recurrent Adult Undifferentiated High Grade Pleomorphic Sarcoma of Bone 5 283289 -NCIT:C115368 Recurrent Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 5 283290 -NCIT:C139002 Recurrent Soft Tissue Sarcoma 5 283291 -NCIT:C153626 Recurrent Skin Angiosarcoma 6 283292 -NCIT:C158426 Recurrent Desmoplastic Small Round Cell Tumor 6 283293 -NCIT:C169050 Recurrent Soft Tissue Sarcoma of the Trunk and Extremities 6 283294 -NCIT:C170727 Recurrent Breast Sarcoma 6 283295 -NCIT:C133092 Recurrent Breast Angiosarcoma 7 283296 -NCIT:C180980 Recurrent Clear Cell Sarcoma of Soft Tissue 6 283297 -NCIT:C5059 Recurrent Epithelioid Sarcoma 6 283298 -NCIT:C7822 Recurrent Adult Soft Tissue Sarcoma 6 283299 -NCIT:C7935 Recurrent Kaposi Sarcoma 6 283300 -NCIT:C8067 Recurrent Childhood Soft Tissue Sarcoma 6 283301 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 7 283302 -NCIT:C8261 Recurrent Uterine Corpus Sarcoma 6 283303 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 7 283304 -NCIT:C8795 Recurrent Undifferentiated Pleomorphic Sarcoma 6 283305 -NCIT:C8798 Recurrent Alveolar Soft Part Sarcoma 6 283306 -NCIT:C8803 Recurrent Extraskeletal Ewing Sarcoma 6 283307 -NCIT:C8807 Recurrent Extraskeletal Myxoid Chondrosarcoma 6 283308 -NCIT:C8811 Recurrent Extraskeletal Osteosarcoma 6 283309 -NCIT:C8824 Recurrent Rhabdomyosarcoma 6 283310 -NCIT:C142881 Recurrent Alveolar Rhabdomyosarcoma 7 283311 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 7 283312 -NCIT:C8827 Recurrent Synovial Sarcoma 6 283313 -NCIT:C155648 Recurrent Sarcoma of the Extremity 5 283314 -NCIT:C158428 Recurrent Fibrosarcoma 5 283315 -NCIT:C158430 Recurrent Spindle Cell Sarcoma 5 283316 -NCIT:C173815 Recurrent Ectomesenchymoma 5 283317 -NCIT:C5384 Recurrent Angiosarcoma 5 283318 -NCIT:C133092 Recurrent Breast Angiosarcoma 6 283319 -NCIT:C153626 Recurrent Skin Angiosarcoma 6 283320 -NCIT:C7808 Recurrent Ewing Sarcoma 5 283321 -NCIT:C6622 Recurrent Bone Ewing Sarcoma 6 283322 -NCIT:C8803 Recurrent Extraskeletal Ewing Sarcoma 6 283323 -NCIT:C7881 Recurrent Osteosarcoma 5 283324 -NCIT:C187189 Recurrent Childhood Osteosarcoma 6 283325 -NCIT:C8811 Recurrent Extraskeletal Osteosarcoma 6 283326 -NCIT:C8780 Recurrent Chondrosarcoma 5 283327 -NCIT:C8815 Recurrent Leiomyosarcoma 5 283328 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 6 283329 -NCIT:C8818 Recurrent Liposarcoma 5 283330 -NCIT:C150579 Recurrent Myxoid Liposarcoma 6 283331 -NCIT:C150592 Recurrent Dedifferentiated Liposarcoma 6 283332 -NCIT:C8823 Recurrent Malignant Peripheral Nerve Sheath Tumor 5 283333 -NCIT:C162724 Recurrent Epithelioid Malignant Peripheral Nerve Sheath Tumor 6 283334 -NCIT:C148331 Unresectable Sarcoma 4 283335 -NCIT:C132147 Unresectable Leiomyosarcoma 5 283336 -NCIT:C168728 Unresectable Soft Tissue Leiomyosarcoma 6 283337 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 7 283338 -NCIT:C132148 Unresectable Liposarcoma 5 283339 -NCIT:C150598 Unresectable Dedifferentiated Liposarcoma 6 283340 -NCIT:C168719 Unresectable Myxoid Liposarcoma 6 283341 -NCIT:C182028 Unresectable Pleomorphic Liposarcoma 6 283342 -NCIT:C132849 Unresectable Ewing Sarcoma 5 283343 -NCIT:C132850 Unresectable Osteosarcoma 5 283344 -NCIT:C152074 Metastatic Unresectable Sarcoma 5 283345 -NCIT:C153477 Locally Advanced Unresectable Sarcoma 6 283346 -NCIT:C153475 Locally Advanced Unresectable Bone Sarcoma 7 283347 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 8 283348 -NCIT:C153476 Locally Advanced Unresectable Soft Tissue Sarcoma 7 283349 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 8 283350 -NCIT:C153068 Unresectable Soft Tissue Sarcoma 5 283351 -NCIT:C150610 Unresectable Undifferentiated Pleomorphic Sarcoma 6 283352 -NCIT:C150741 Unresectable Malignant Gastrointestinal Stromal Tumor 6 283353 -NCIT:C151983 Unresectable Rhabdomyosarcoma 6 283354 -NCIT:C153074 Unresectable Synovial Sarcoma 6 283355 -NCIT:C153476 Locally Advanced Unresectable Soft Tissue Sarcoma 6 283356 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 7 283357 -NCIT:C164078 Unresectable Alveolar Soft Part Sarcoma 6 283358 -NCIT:C167379 Unresectable Epithelioid Sarcoma 6 283359 -NCIT:C168728 Unresectable Soft Tissue Leiomyosarcoma 6 283360 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 7 283361 -NCIT:C170826 Unresectable Desmoplastic Small Round Cell Tumor 6 283362 -NCIT:C178372 Unresectable Myxofibrosarcoma 6 283363 -NCIT:C190016 Unresectable Uterine Corpus Sarcoma 6 283364 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 7 283365 -NCIT:C153072 Unresectable Bone Sarcoma 5 283366 -NCIT:C153475 Locally Advanced Unresectable Bone Sarcoma 6 283367 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 7 283368 -NCIT:C171070 Unresectable Primary Central Chondrosarcoma 6 283369 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 7 283370 -NCIT:C164312 Unresectable Malignant Peripheral Nerve Sheath Tumor 5 283371 -NCIT:C168717 Unresectable Fibrosarcoma 5 283372 -NCIT:C178372 Unresectable Myxofibrosarcoma 6 283373 -NCIT:C168718 Unresectable Angiosarcoma 5 283374 -NCIT:C150605 Resectable Sarcoma 4 283375 -NCIT:C150606 Resectable Liposarcoma 5 283376 -NCIT:C150607 Resectable Dedifferentiated Liposarcoma 6 283377 -NCIT:C153086 Resectable Soft Tissue Sarcoma 5 283378 -NCIT:C150611 Resectable Undifferentiated Pleomorphic Sarcoma 6 283379 -NCIT:C162661 Resectable Osteosarcoma 5 283380 -NCIT:C175505 Resectable Leiomyosarcoma 5 283381 -NCIT:C152076 Metastatic Sarcoma 4 283382 -NCIT:C152074 Metastatic Unresectable Sarcoma 5 283383 -NCIT:C153477 Locally Advanced Unresectable Sarcoma 6 283384 -NCIT:C153475 Locally Advanced Unresectable Bone Sarcoma 7 283385 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 8 283386 -NCIT:C153476 Locally Advanced Unresectable Soft Tissue Sarcoma 7 283387 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 8 283388 -NCIT:C153069 Metastatic Soft Tissue Sarcoma 5 283389 -NCIT:C150738 Metastatic Gastrointestinal Stromal Tumor 6 283390 -NCIT:C150739 Locally Advanced Gastrointestinal Stromal Tumor 7 283391 -NCIT:C173502 Advanced Gastrointestinal Stromal Tumor 7 283392 -NCIT:C153066 Locally Advanced Soft Tissue Sarcoma 6 283393 -NCIT:C150739 Locally Advanced Gastrointestinal Stromal Tumor 7 283394 -NCIT:C153476 Locally Advanced Unresectable Soft Tissue Sarcoma 7 283395 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 8 283396 -NCIT:C160919 Locally Advanced Undifferentiated Pleomorphic Sarcoma 7 283397 -NCIT:C164076 Locally Advanced Alveolar Soft Part Sarcoma 7 283398 -NCIT:C166415 Locally Advanced Rhabdomyosarcoma 7 283399 -NCIT:C167378 Locally Advanced Epithelioid Sarcoma 7 283400 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 7 283401 -NCIT:C171399 Locally Advanced Synovial Sarcoma 7 283402 -NCIT:C180875 Locally Advanced Desmoplastic Small Round Cell Tumor 7 283403 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 7 283404 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 283405 -NCIT:C156071 Metastatic Adult Soft Tissue Sarcoma 6 283406 -NCIT:C156475 Metastatic Kaposi Sarcoma 6 283407 -NCIT:C156476 Advanced Kaposi Sarcoma 7 283408 -NCIT:C161585 Metastatic Clear Cell Sarcoma of Soft Tissue 6 283409 -NCIT:C161586 Advanced Clear Cell Sarcoma of Soft Tissue 7 283410 -NCIT:C162194 Advanced Soft Tissue Sarcoma 6 283411 -NCIT:C153184 Advanced Synovial Sarcoma 7 283412 -NCIT:C156476 Advanced Kaposi Sarcoma 7 283413 -NCIT:C161586 Advanced Clear Cell Sarcoma of Soft Tissue 7 283414 -NCIT:C164246 Advanced Malignant PEComa 7 283415 -NCIT:C165781 Advanced Undifferentiated Pleomorphic Sarcoma 7 283416 -NCIT:C167380 Advanced Epithelioid Sarcoma 7 283417 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 7 283418 -NCIT:C171304 Advanced Myxofibrosarcoma 7 283419 -NCIT:C173502 Advanced Gastrointestinal Stromal Tumor 7 283420 -NCIT:C188198 Advanced Alveolar Soft Part Sarcoma 7 283421 -NCIT:C164245 Metastatic Malignant PEComa 6 283422 -NCIT:C164246 Advanced Malignant PEComa 7 283423 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 7 283424 -NCIT:C166414 Metastatic Rhabdomyosarcoma 6 283425 -NCIT:C166415 Locally Advanced Rhabdomyosarcoma 7 283426 -NCIT:C183250 Metastatic Embryonal Rhabdomyosarcoma 7 283427 -NCIT:C168670 Metastatic Myxofibrosarcoma 6 283428 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 7 283429 -NCIT:C171304 Advanced Myxofibrosarcoma 7 283430 -NCIT:C168725 Metastatic Soft Tissue Leiomyosarcoma 6 283431 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 7 283432 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 7 283433 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 283434 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 7 283435 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 283436 -NCIT:C170827 Metastatic Desmoplastic Small Round Cell Tumor 6 283437 -NCIT:C180875 Locally Advanced Desmoplastic Small Round Cell Tumor 7 283438 -NCIT:C190009 Metastatic Uterine Corpus Sarcoma 6 283439 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 7 283440 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 283441 -NCIT:C4926 Metastatic Undifferentiated Pleomorphic Sarcoma 6 283442 -NCIT:C160919 Locally Advanced Undifferentiated Pleomorphic Sarcoma 7 283443 -NCIT:C165781 Advanced Undifferentiated Pleomorphic Sarcoma 7 283444 -NCIT:C8066 Metastatic Childhood Soft Tissue Sarcoma 6 283445 -NCIT:C8796 Metastatic Alveolar Soft Part Sarcoma 6 283446 -NCIT:C164076 Locally Advanced Alveolar Soft Part Sarcoma 7 283447 -NCIT:C188198 Advanced Alveolar Soft Part Sarcoma 7 283448 -NCIT:C8799 Metastatic Epithelioid Sarcoma 6 283449 -NCIT:C167378 Locally Advanced Epithelioid Sarcoma 7 283450 -NCIT:C167380 Advanced Epithelioid Sarcoma 7 283451 -NCIT:C8801 Metastatic Extraskeletal Ewing Sarcoma 6 283452 -NCIT:C8804 Metastatic Extraskeletal Myxoid Chondrosarcoma 6 283453 -NCIT:C8808 Metastatic Extraskeletal Osteosarcoma 6 283454 -NCIT:C8825 Metastatic Synovial Sarcoma 6 283455 -NCIT:C153184 Advanced Synovial Sarcoma 7 283456 -NCIT:C171399 Locally Advanced Synovial Sarcoma 7 283457 -NCIT:C153071 Locally Advanced Sarcoma 5 283458 -NCIT:C146856 Locally Advanced Angiosarcoma 6 283459 -NCIT:C153066 Locally Advanced Soft Tissue Sarcoma 6 283460 -NCIT:C150739 Locally Advanced Gastrointestinal Stromal Tumor 7 283461 -NCIT:C153476 Locally Advanced Unresectable Soft Tissue Sarcoma 7 283462 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 8 283463 -NCIT:C160919 Locally Advanced Undifferentiated Pleomorphic Sarcoma 7 283464 -NCIT:C164076 Locally Advanced Alveolar Soft Part Sarcoma 7 283465 -NCIT:C166415 Locally Advanced Rhabdomyosarcoma 7 283466 -NCIT:C167378 Locally Advanced Epithelioid Sarcoma 7 283467 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 7 283468 -NCIT:C171399 Locally Advanced Synovial Sarcoma 7 283469 -NCIT:C180875 Locally Advanced Desmoplastic Small Round Cell Tumor 7 283470 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 7 283471 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 283472 -NCIT:C153070 Locally Advanced Bone Sarcoma 6 283473 -NCIT:C153475 Locally Advanced Unresectable Bone Sarcoma 7 283474 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 8 283475 -NCIT:C153477 Locally Advanced Unresectable Sarcoma 6 283476 -NCIT:C153475 Locally Advanced Unresectable Bone Sarcoma 7 283477 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 8 283478 -NCIT:C153476 Locally Advanced Unresectable Soft Tissue Sarcoma 7 283479 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 8 283480 -NCIT:C160916 Locally Advanced Liposarcoma 6 283481 -NCIT:C164071 Locally Advanced Dedifferentiated Liposarcoma 7 283482 -NCIT:C160917 Locally Advanced Leiomyosarcoma 6 283483 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 7 283484 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 283485 -NCIT:C164074 Locally Advanced Malignant Peripheral Nerve Sheath Tumor 6 283486 -NCIT:C164080 Locally Advanced Ewing Sarcoma 6 283487 -NCIT:C168668 Locally Advanced High Grade Sarcoma 6 283488 -NCIT:C170953 Locally Advanced Chondrosarcoma 6 283489 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 7 283490 -NCIT:C171317 Locally Advanced Fibrosarcoma 6 283491 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 7 283492 -NCIT:C175665 Locally Advanced Osteosarcoma 6 283493 -NCIT:C153073 Metastatic Bone Sarcoma 5 283494 -NCIT:C153070 Locally Advanced Bone Sarcoma 6 283495 -NCIT:C153475 Locally Advanced Unresectable Bone Sarcoma 7 283496 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 8 283497 -NCIT:C162762 Advanced Bone Sarcoma 6 283498 -NCIT:C171072 Metastatic Primary Central Chondrosarcoma 6 283499 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 7 283500 -NCIT:C38157 Metachronous Osteosarcoma 6 283501 -NCIT:C6621 Metastatic Bone Ewing Sarcoma 6 283502 -NCIT:C153185 Advanced Sarcoma 5 283503 -NCIT:C155649 Advanced Sarcoma of the Extremity 6 283504 -NCIT:C162194 Advanced Soft Tissue Sarcoma 6 283505 -NCIT:C153184 Advanced Synovial Sarcoma 7 283506 -NCIT:C156476 Advanced Kaposi Sarcoma 7 283507 -NCIT:C161586 Advanced Clear Cell Sarcoma of Soft Tissue 7 283508 -NCIT:C164246 Advanced Malignant PEComa 7 283509 -NCIT:C165781 Advanced Undifferentiated Pleomorphic Sarcoma 7 283510 -NCIT:C167380 Advanced Epithelioid Sarcoma 7 283511 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 7 283512 -NCIT:C171304 Advanced Myxofibrosarcoma 7 283513 -NCIT:C173502 Advanced Gastrointestinal Stromal Tumor 7 283514 -NCIT:C188198 Advanced Alveolar Soft Part Sarcoma 7 283515 -NCIT:C162762 Advanced Bone Sarcoma 6 283516 -NCIT:C165780 Advanced Leiomyosarcoma 6 283517 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 7 283518 -NCIT:C168701 Advanced Liposarcoma 6 283519 -NCIT:C162763 Advanced Myxoid Liposarcoma 7 283520 -NCIT:C168715 Advanced Dedifferentiated Liposarcoma 7 283521 -NCIT:C182026 Advanced Pleomorphic Liposarcoma 7 283522 -NCIT:C168714 Advanced Malignant Peripheral Nerve Sheath Tumor 6 283523 -NCIT:C168716 Advanced Fibrosarcoma 6 283524 -NCIT:C171304 Advanced Myxofibrosarcoma 7 283525 -NCIT:C168720 Advanced Angiosarcoma 6 283526 -NCIT:C168667 Metastatic High Grade Sarcoma 5 283527 -NCIT:C168668 Locally Advanced High Grade Sarcoma 6 283528 -NCIT:C179657 Metastatic Sarcoma in the Peritoneum 5 283529 -NCIT:C179656 Peritoneal Sarcomatosis 6 283530 -NCIT:C7781 Metastatic Osteosarcoma 5 283531 -NCIT:C175665 Locally Advanced Osteosarcoma 6 283532 -NCIT:C38157 Metachronous Osteosarcoma 6 283533 -NCIT:C8808 Metastatic Extraskeletal Osteosarcoma 6 283534 -NCIT:C7807 Metastatic Ewing Sarcoma 5 283535 -NCIT:C164080 Locally Advanced Ewing Sarcoma 6 283536 -NCIT:C6621 Metastatic Bone Ewing Sarcoma 6 283537 -NCIT:C8801 Metastatic Extraskeletal Ewing Sarcoma 6 283538 -NCIT:C8708 Metastatic Angiosarcoma 5 283539 -NCIT:C146856 Locally Advanced Angiosarcoma 6 283540 -NCIT:C168720 Advanced Angiosarcoma 6 283541 -NCIT:C8779 Metastatic Chondrosarcoma 5 283542 -NCIT:C170953 Locally Advanced Chondrosarcoma 6 283543 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 7 283544 -NCIT:C171072 Metastatic Primary Central Chondrosarcoma 6 283545 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 7 283546 -NCIT:C8812 Metastatic Fibrosarcoma 5 283547 -NCIT:C168670 Metastatic Myxofibrosarcoma 6 283548 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 7 283549 -NCIT:C171304 Advanced Myxofibrosarcoma 7 283550 -NCIT:C168716 Advanced Fibrosarcoma 6 283551 -NCIT:C171304 Advanced Myxofibrosarcoma 7 283552 -NCIT:C171317 Locally Advanced Fibrosarcoma 6 283553 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 7 283554 -NCIT:C8813 Metastatic Leiomyosarcoma 5 283555 -NCIT:C160917 Locally Advanced Leiomyosarcoma 6 283556 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 7 283557 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 283558 -NCIT:C165780 Advanced Leiomyosarcoma 6 283559 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 7 283560 -NCIT:C168725 Metastatic Soft Tissue Leiomyosarcoma 6 283561 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 7 283562 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 7 283563 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 283564 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 7 283565 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 283566 -NCIT:C8816 Metastatic Liposarcoma 5 283567 -NCIT:C148298 Metastatic Myxoid Liposarcoma 6 283568 -NCIT:C162763 Advanced Myxoid Liposarcoma 7 283569 -NCIT:C160916 Locally Advanced Liposarcoma 6 283570 -NCIT:C164071 Locally Advanced Dedifferentiated Liposarcoma 7 283571 -NCIT:C164070 Metastatic Dedifferentiated Liposarcoma 6 283572 -NCIT:C164071 Locally Advanced Dedifferentiated Liposarcoma 7 283573 -NCIT:C168715 Advanced Dedifferentiated Liposarcoma 7 283574 -NCIT:C168701 Advanced Liposarcoma 6 283575 -NCIT:C162763 Advanced Myxoid Liposarcoma 7 283576 -NCIT:C168715 Advanced Dedifferentiated Liposarcoma 7 283577 -NCIT:C182026 Advanced Pleomorphic Liposarcoma 7 283578 -NCIT:C182025 Metastatic Pleomorphic Liposarcoma 6 283579 -NCIT:C182026 Advanced Pleomorphic Liposarcoma 7 283580 -NCIT:C8822 Metastatic Malignant Peripheral Nerve Sheath Tumor 5 283581 -NCIT:C164074 Locally Advanced Malignant Peripheral Nerve Sheath Tumor 6 283582 -NCIT:C168714 Advanced Malignant Peripheral Nerve Sheath Tumor 6 283583 -NCIT:C155647 Sarcoma of the Extremity 4 283584 -NCIT:C155648 Recurrent Sarcoma of the Extremity 5 283585 -NCIT:C155649 Advanced Sarcoma of the Extremity 5 283586 -NCIT:C155873 Chest Wall Sarcoma 4 283587 -NCIT:C157652 Pelvic Sarcoma 4 283588 -NCIT:C151981 Pelvic Rhabdomyosarcoma 5 283589 -NCIT:C151984 Pelvic Undifferentiated High Grade Pleomorphic Sarcoma 5 283590 -NCIT:C164198 Head and Neck Sarcoma 4 283591 -NCIT:C173118 Sinonasal Sarcoma 5 283592 -NCIT:C164205 Biphenotypic Sinonasal Sarcoma 6 283593 -NCIT:C173120 Sinonasal Fibrosarcoma 6 283594 -NCIT:C173121 Sinonasal Undifferentiated Pleomorphic Sarcoma 6 283595 -NCIT:C173123 Sinonasal Leiomyosarcoma 6 283596 -NCIT:C173124 Sinonasal Rhabdomyosarcoma 6 283597 -NCIT:C173125 Sinonasal Angiosarcoma 6 283598 -NCIT:C173127 Sinonasal Malignant Peripheral Nerve Sheath Tumor 6 283599 -NCIT:C173128 Sinonasal Synovial Sarcoma 6 283600 -NCIT:C6849 Paranasal Sinus Sarcoma 6 283601 -NCIT:C6850 High Grade Paranasal Sinus Sarcoma 7 283602 -NCIT:C6851 Low Grade Paranasal Sinus Sarcoma 7 283603 -NCIT:C173841 Maxillofacial Sarcoma 5 283604 -NCIT:C173842 Maxillofacial Chondrosarcoma 6 283605 -NCIT:C173843 Maxillofacial Mesenchymal Chondrosarcoma 7 283606 -NCIT:C173844 Maxillofacial Osteosarcoma 6 283607 -NCIT:C5916 Oral Cavity Sarcoma 5 283608 -NCIT:C173481 Oral Cavity Soft Tissue Sarcoma 6 283609 -NCIT:C156274 Tongue Sarcoma 7 283610 -NCIT:C156273 Tongue Alveolar Soft Part Sarcoma' 8 283611 -NCIT:C173404 Tongue Liposarcoma 8 283612 -NCIT:C173477 Oral Cavity Kaposi Sarcoma 7 283613 -NCIT:C6749 Palate Kaposi Sarcoma 8 283614 -NCIT:C173478 Oral Cavity Low Grade Myofibroblastic Sarcoma 7 283615 -NCIT:C173738 Odontogenic Sarcoma 6 283616 -NCIT:C173739 Ameloblastic Fibrodentinosarcoma 7 283617 -NCIT:C173740 Ameloblastic Fibroodontosarcoma 7 283618 -NCIT:C4317 Ameloblastic Fibrosarcoma 7 283619 -NCIT:C5983 Major Salivary Gland Sarcoma 5 283620 -NCIT:C156280 Parotid Gland Sarcoma 6 283621 -NCIT:C156281 Parotid Gland Liposarcoma 7 283622 -NCIT:C5952 Parotid Gland Kaposi Sarcoma 7 283623 -NCIT:C6020 Laryngeal Sarcoma 5 283624 -NCIT:C173407 Laryngeal Chondrosarcoma 6 283625 -NCIT:C173408 Laryngeal Soft Tissue Sarcoma 6 283626 -NCIT:C6021 Laryngeal Liposarcoma 7 283627 -NCIT:C6022 Laryngeal Leiomyosarcoma 7 283628 -NCIT:C6041 Thyroid Gland Sarcoma 5 283629 -NCIT:C156341 Thyroid Gland Malignant Peripheral Nerve Sheath Tumor 6 283630 -NCIT:C156347 Thyroid Gland Leiomyosarcoma 6 283631 -NCIT:C6043 Thyroid Gland Angiosarcoma 6 283632 -NCIT:C6095 Orbit Sarcoma 5 283633 -NCIT:C156276 Orbital Alveolar Soft Part Sarcoma 6 283634 -NCIT:C4543 Orbit Rhabdomyosarcoma 6 283635 -NCIT:C6246 Orbit Embryonal Rhabdomyosarcoma 7 283636 -NCIT:C6247 Orbit Alveolar Rhabdomyosarcoma 7 283637 -NCIT:C176558 Localized Sarcoma 4 283638 -NCIT:C115997 Localized Adult Undifferentiated High Grade Pleomorphic Sarcoma of Bone 5 283639 -NCIT:C115998 Localized Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 5 283640 -NCIT:C189240 Localized Soft Tissue Sarcoma 5 283641 -NCIT:C115292 Localized Childhood Soft Tissue Sarcoma 6 283642 -NCIT:C8065 Localized Childhood Rhabdomyosarcoma 7 283643 -NCIT:C8797 Localized Alveolar Soft Part Sarcoma 6 283644 -NCIT:C8800 Localized Epithelioid Sarcoma 6 283645 -NCIT:C8802 Localized Extraskeletal Ewing Sarcoma 6 283646 -NCIT:C8809 Localized Extraskeletal Osteosarcoma 6 283647 -NCIT:C8826 Localized Synovial Sarcoma 6 283648 -NCIT:C5060 Localized Fibrosarcoma 5 283649 -NCIT:C7780 Localized Osteosarcoma 5 283650 -NCIT:C8809 Localized Extraskeletal Osteosarcoma 6 283651 -NCIT:C7806 Localized Ewing Sarcoma 5 283652 -NCIT:C6623 Localized Bone Ewing Sarcoma 6 283653 -NCIT:C8802 Localized Extraskeletal Ewing Sarcoma 6 283654 -NCIT:C8814 Localized Leiomyosarcoma 5 283655 -NCIT:C8817 Localized Liposarcoma 5 283656 -NCIT:C9275 Localized Angiosarcoma 5 283657 -NCIT:C188981 Childhood Sarcoma 4 283658 -NCIT:C188984 Childhood Ectomesenchymoma 5 283659 -NCIT:C189002 Childhood Ewing Sarcoma 5 283660 -NCIT:C189261 Childhood Kidney Ewing Sarcoma 6 283661 -NCIT:C189003 Childhood Round Cell Sarcoma with EWSR1-non-ETS Fusion 5 283662 -NCIT:C189006 Childhood CIC-Rearranged Sarcoma 5 283663 -NCIT:C189007 Childhood Sarcoma with BCOR Genetic Alterations 5 283664 -NCIT:C189017 Childhood Bone Sarcoma 5 283665 -NCIT:C114750 Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 6 283666 -NCIT:C115368 Recurrent Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 7 283667 -NCIT:C115998 Localized Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 7 283668 -NCIT:C189022 Childhood Bone Osteosarcoma 6 283669 -NCIT:C123398 Childhood Periosteal Osteosarcoma 7 283670 -NCIT:C6589 Childhood Parosteal Osteosarcoma 7 283671 -NCIT:C6590 Childhood Conventional Osteosarcoma 7 283672 -NCIT:C189026 Childhood Primary Central Chondrosarcoma 6 283673 -NCIT:C189027 Childhood Chondrosarcoma 5 283674 -NCIT:C189026 Childhood Primary Central Chondrosarcoma 6 283675 -NCIT:C27374 Childhood Mesenchymal Chondrosarcoma 6 283676 -NCIT:C6585 Childhood Osteosarcoma 5 283677 -NCIT:C187189 Recurrent Childhood Osteosarcoma 6 283678 -NCIT:C187192 Refractory Childhood Osteosarcoma 6 283679 -NCIT:C189022 Childhood Bone Osteosarcoma 6 283680 -NCIT:C123398 Childhood Periosteal Osteosarcoma 7 283681 -NCIT:C6589 Childhood Parosteal Osteosarcoma 7 283682 -NCIT:C6590 Childhood Conventional Osteosarcoma 7 283683 -NCIT:C27376 Childhood Extraskeletal Osteosarcoma 6 283684 -NCIT:C7715 Childhood Soft Tissue Sarcoma 5 283685 -NCIT:C114749 Childhood Undifferentiated Pleomorphic Sarcoma 6 283686 -NCIT:C115292 Localized Childhood Soft Tissue Sarcoma 6 283687 -NCIT:C8065 Localized Childhood Rhabdomyosarcoma 7 283688 -NCIT:C187194 Refractory Childhood Soft Tissue Sarcoma 6 283689 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 7 283690 -NCIT:C188980 Childhood Kaposi Sarcoma 6 283691 -NCIT:C189260 Childhood Anaplastic Sarcoma of the Kidney 6 283692 -NCIT:C189261 Childhood Kidney Ewing Sarcoma 6 283693 -NCIT:C189934 Childhood Liver Embryonal Sarcoma 6 283694 -NCIT:C190020 Childhood Liver Angiosarcoma 6 283695 -NCIT:C27371 Childhood Clear Cell Sarcoma of Soft Tissue 6 283696 -NCIT:C27372 Childhood Desmoplastic Small Round Cell Tumor 6 283697 -NCIT:C27376 Childhood Extraskeletal Osteosarcoma 6 283698 -NCIT:C27377 Childhood Extraskeletal Myxoid Chondrosarcoma 6 283699 -NCIT:C4264 Clear Cell Sarcoma of the Kidney 6 283700 -NCIT:C7705 Childhood Rhabdomyosarcoma 6 283701 -NCIT:C123397 Childhood Spindle Cell Rhabdomyosarcoma 7 283702 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 7 283703 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 7 283704 -NCIT:C7957 Childhood Embryonal Rhabdomyosarcoma 7 283705 -NCIT:C35574 Childhood Botryoid-Type Embryonal Rhabdomyosarcoma 8 283706 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 9 283707 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 9 283708 -NCIT:C7958 Childhood Alveolar Rhabdomyosarcoma 7 283709 -NCIT:C7959 Childhood Pleomorphic Rhabdomyosarcoma 7 283710 -NCIT:C7960 Childhood Rhabdomyosarcoma with Mixed Embryonal and Alveolar Features 7 283711 -NCIT:C8065 Localized Childhood Rhabdomyosarcoma 7 283712 -NCIT:C8066 Metastatic Childhood Soft Tissue Sarcoma 6 283713 -NCIT:C8067 Recurrent Childhood Soft Tissue Sarcoma 6 283714 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 7 283715 -NCIT:C8089 Childhood Synovial Sarcoma 6 283716 -NCIT:C8092 Childhood Alveolar Soft Part Sarcoma 6 283717 -NCIT:C8093 Childhood Leiomyosarcoma 6 283718 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 7 283719 -NCIT:C8095 Childhood Epithelioid Sarcoma 6 283720 -NCIT:C8088 Childhood Fibrosarcoma 5 283721 -NCIT:C188970 Childhood Low Grade Fibromyxoid Sarcoma 6 283722 -NCIT:C188971 Childhood Sclerosing Epithelioid Fibrosarcoma 6 283723 -NCIT:C188973 Childhood Low Grade Myofibroblastic Sarcoma 6 283724 -NCIT:C4244 Infantile Fibrosarcoma 6 283725 -NCIT:C8091 Childhood Liposarcoma 5 283726 -NCIT:C8094 Childhood Malignant Peripheral Nerve Sheath Tumor 5 283727 -NCIT:C9174 Childhood Angiosarcoma 5 283728 -NCIT:C190020 Childhood Liver Angiosarcoma 6 283729 -NCIT:C27005 Spindle Cell Sarcoma 4 283730 -NCIT:C121789 Malignant Phosphaturic Mesenchymal Tumor 5 283731 -NCIT:C121797 Undifferentiated Spindle Cell Sarcoma 5 283732 -NCIT:C158430 Recurrent Spindle Cell Sarcoma 5 283733 -NCIT:C158431 Refractory Spindle Cell Sarcoma 5 283734 -NCIT:C164205 Biphenotypic Sinonasal Sarcoma 5 283735 -NCIT:C53677 Intimal Sarcoma 5 283736 -NCIT:C142825 Pulmonary Artery Intimal Sarcoma 6 283737 -NCIT:C27349 Histiocytic Sarcoma 4 283738 -NCIT:C129807 Central Nervous System Histiocytic Sarcoma 5 283739 -NCIT:C2946 Chondrosarcoma 4 283740 -NCIT:C121870 Chondrosarcoma, Grade 2 5 283741 -NCIT:C178491 Central Chondrosarcoma, Grade 2 6 283742 -NCIT:C178492 Secondary Peripheral Chondrosarcoma, Grade 2 6 283743 -NCIT:C121871 Chondrosarcoma, Grade 3 5 283744 -NCIT:C178493 Central Chondrosarcoma, Grade 3 6 283745 -NCIT:C178494 Secondary Peripheral Chondrosarcoma, Grade 3 6 283746 -NCIT:C173407 Laryngeal Chondrosarcoma 5 283747 -NCIT:C173842 Maxillofacial Chondrosarcoma 5 283748 -NCIT:C173843 Maxillofacial Mesenchymal Chondrosarcoma 6 283749 -NCIT:C176467 Synovial Chondrosarcoma 5 283750 -NCIT:C189027 Childhood Chondrosarcoma 5 283751 -NCIT:C189026 Childhood Primary Central Chondrosarcoma 6 283752 -NCIT:C27374 Childhood Mesenchymal Chondrosarcoma 6 283753 -NCIT:C27482 Secondary Chondrosarcoma 5 283754 -NCIT:C121881 Secondary Central Chondrosarcoma 6 283755 -NCIT:C178477 Secondary Central Atypical Cartilaginous Tumor/Chondrosarcoma, Grade 1 7 283756 -NCIT:C121882 Secondary Peripheral Chondrosarcoma 6 283757 -NCIT:C178481 Secondary Peripheral Chondrosarcoma, Grade 1 7 283758 -NCIT:C178492 Secondary Peripheral Chondrosarcoma, Grade 2 7 283759 -NCIT:C178494 Secondary Peripheral Chondrosarcoma, Grade 3 7 283760 -NCIT:C3737 Mesenchymal Chondrosarcoma 5 283761 -NCIT:C129534 Central Nervous System Mesenchymal Chondrosarcoma 6 283762 -NCIT:C27374 Childhood Mesenchymal Chondrosarcoma 6 283763 -NCIT:C27375 Adult Mesenchymal Chondrosarcoma 6 283764 -NCIT:C53493 Mesenchymal Chondrosarcoma of Bone 6 283765 -NCIT:C173843 Maxillofacial Mesenchymal Chondrosarcoma 7 283766 -NCIT:C6475 Clear Cell Chondrosarcoma 5 283767 -NCIT:C6476 Dedifferentiated Chondrosarcoma 5 283768 -NCIT:C7155 Primary Central Chondrosarcoma 5 283769 -NCIT:C171070 Unresectable Primary Central Chondrosarcoma 6 283770 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 7 283771 -NCIT:C171072 Metastatic Primary Central Chondrosarcoma 6 283772 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 7 283773 -NCIT:C178476 Primary Central Atypical Cartilaginous Tumor/Chondrosarcoma, Grade 1 6 283774 -NCIT:C189026 Childhood Primary Central Chondrosarcoma 6 283775 -NCIT:C7357 Periosteal Chondrosarcoma 5 283776 -NCIT:C8778 Localized Chondrosarcoma 5 283777 -NCIT:C8779 Metastatic Chondrosarcoma 5 283778 -NCIT:C170953 Locally Advanced Chondrosarcoma 6 283779 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 7 283780 -NCIT:C171072 Metastatic Primary Central Chondrosarcoma 6 283781 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 7 283782 -NCIT:C8780 Recurrent Chondrosarcoma 5 283783 -NCIT:C9027 Atypical Cartilaginous Tumor/Chondrosarcoma, Grade 1 5 283784 -NCIT:C178473 Central Atypical Cartilaginous Tumor/Chondrosarcoma, Grade 1 6 283785 -NCIT:C178476 Primary Central Atypical Cartilaginous Tumor/Chondrosarcoma, Grade 1 7 283786 -NCIT:C178477 Secondary Central Atypical Cartilaginous Tumor/Chondrosarcoma, Grade 1 7 283787 -NCIT:C178478 Central Atypical Cartilaginous Tumor 7 283788 -NCIT:C178479 Central Chondrosarcoma, Grade 1 7 283789 -NCIT:C178480 Secondary Peripheral Atypical Cartilaginous Tumor/Chondrosarcoma, Grade 1 6 283790 -NCIT:C178481 Secondary Peripheral Chondrosarcoma, Grade 1 7 283791 -NCIT:C178482 Secondary Peripheral Atypical Cartilaginous Tumor 7 283792 -NCIT:C178483 Atypical Cartilaginous Tumor 6 283793 -NCIT:C178478 Central Atypical Cartilaginous Tumor 7 283794 -NCIT:C178482 Secondary Peripheral Atypical Cartilaginous Tumor 7 283795 -NCIT:C178484 Chondrosarcoma, Grade 1 6 283796 -NCIT:C178479 Central Chondrosarcoma, Grade 1 7 283797 -NCIT:C178481 Secondary Peripheral Chondrosarcoma, Grade 1 7 283798 -NCIT:C3043 Fibrosarcoma 4 283799 -NCIT:C158428 Recurrent Fibrosarcoma 5 283800 -NCIT:C158429 Refractory Fibrosarcoma 5 283801 -NCIT:C168717 Unresectable Fibrosarcoma 5 283802 -NCIT:C178372 Unresectable Myxofibrosarcoma 6 283803 -NCIT:C4317 Ameloblastic Fibrosarcoma 5 283804 -NCIT:C45202 Low Grade Fibromyxoid Sarcoma 5 283805 -NCIT:C188970 Childhood Low Grade Fibromyxoid Sarcoma 6 283806 -NCIT:C45203 Low Grade Fibromyxoid Sarcoma with Giant Collagen Rosettes 6 283807 -NCIT:C45210 Classical Low Grade Fibromyxoid Sarcoma 6 283808 -NCIT:C49024 Low Grade Myofibroblastic Sarcoma 5 283809 -NCIT:C173478 Oral Cavity Low Grade Myofibroblastic Sarcoma 6 283810 -NCIT:C188973 Childhood Low Grade Myofibroblastic Sarcoma 6 283811 -NCIT:C49027 Sclerosing Epithelioid Fibrosarcoma 5 283812 -NCIT:C188971 Childhood Sclerosing Epithelioid Fibrosarcoma 6 283813 -NCIT:C5060 Localized Fibrosarcoma 5 283814 -NCIT:C6604 Bone Fibrosarcoma 5 283815 -NCIT:C6605 Soft Tissue Fibrosarcoma 5 283816 -NCIT:C173120 Sinonasal Fibrosarcoma 6 283817 -NCIT:C173478 Oral Cavity Low Grade Myofibroblastic Sarcoma 6 283818 -NCIT:C49025 Myxoinflammatory Fibroblastic Sarcoma 6 283819 -NCIT:C5185 Breast Fibrosarcoma 6 283820 -NCIT:C5233 Ovarian Fibrosarcoma 6 283821 -NCIT:C5336 Small Intestinal Fibrosarcoma 6 283822 -NCIT:C5361 Cardiac Fibrosarcoma 6 283823 -NCIT:C147004 Cardiac Myxofibrosarcoma 7 283824 -NCIT:C5465 Central Nervous System Fibrosarcoma 6 283825 -NCIT:C5832 Liver Fibrosarcoma 6 283826 -NCIT:C6496 Myxofibrosarcoma 6 283827 -NCIT:C147004 Cardiac Myxofibrosarcoma 7 283828 -NCIT:C168670 Metastatic Myxofibrosarcoma 7 283829 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 8 283830 -NCIT:C171304 Advanced Myxofibrosarcoma 8 283831 -NCIT:C172632 Skin Myxofibrosarcoma 7 283832 -NCIT:C177414 Epithelioid Myxofibrosarcoma 7 283833 -NCIT:C178372 Unresectable Myxofibrosarcoma 7 283834 -NCIT:C7726 Kidney Fibrosarcoma 6 283835 -NCIT:C66765 Fascial Fibrosarcoma 5 283836 -NCIT:C7809 Adult Fibrosarcoma 5 283837 -NCIT:C8088 Childhood Fibrosarcoma 5 283838 -NCIT:C188970 Childhood Low Grade Fibromyxoid Sarcoma 6 283839 -NCIT:C188971 Childhood Sclerosing Epithelioid Fibrosarcoma 6 283840 -NCIT:C188973 Childhood Low Grade Myofibroblastic Sarcoma 6 283841 -NCIT:C4244 Infantile Fibrosarcoma 6 283842 -NCIT:C8812 Metastatic Fibrosarcoma 5 283843 -NCIT:C168670 Metastatic Myxofibrosarcoma 6 283844 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 7 283845 -NCIT:C171304 Advanced Myxofibrosarcoma 7 283846 -NCIT:C168716 Advanced Fibrosarcoma 6 283847 -NCIT:C171304 Advanced Myxofibrosarcoma 7 283848 -NCIT:C171317 Locally Advanced Fibrosarcoma 6 283849 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 7 283850 -NCIT:C9025 Well Differentiated Fibrosarcoma 5 283851 -NCIT:C9404 Poorly Differentiated Fibrosarcoma 5 283852 -NCIT:C9429 Conventional Fibrosarcoma 5 283853 -NCIT:C3088 Angiosarcoma 4 283854 -NCIT:C121671 Soft Tissue Angiosarcoma 5 283855 -NCIT:C162578 Penile Angiosarcoma 6 283856 -NCIT:C171026 Visceral Angiosarcoma 6 283857 -NCIT:C147097 Cardiac Angiosarcoma 7 283858 -NCIT:C147101 Pericardial Angiosarcoma 7 283859 -NCIT:C159205 Kidney Angiosarcoma 7 283860 -NCIT:C159671 Bladder Angiosarcoma 7 283861 -NCIT:C161642 Seminal Vesicle Angiosarcoma 7 283862 -NCIT:C4438 Liver Angiosarcoma 7 283863 -NCIT:C190020 Childhood Liver Angiosarcoma 8 283864 -NCIT:C4564 Splenic Angiosarcoma 7 283865 -NCIT:C48320 Adrenal Gland Angiosarcoma 7 283866 -NCIT:C5232 Ovarian Angiosarcoma 7 283867 -NCIT:C5376 Aortic Angiosarcoma 7 283868 -NCIT:C5378 Superior Vena Cava Angiosarcoma 7 283869 -NCIT:C5385 Uterine Angiosarcoma 7 283870 -NCIT:C128049 Cervical Angiosarcoma 8 283871 -NCIT:C5528 Prostate Angiosarcoma 7 283872 -NCIT:C5840 Gallbladder Angiosarcoma 7 283873 -NCIT:C6043 Thyroid Gland Angiosarcoma 7 283874 -NCIT:C6613 Mediastinal Angiosarcoma 7 283875 -NCIT:C6746 Pulmonary Artery Angiosarcoma 7 283876 -NCIT:C96060 Small Intestinal Angiosarcoma 7 283877 -NCIT:C96511 Colorectal Angiosarcoma 7 283878 -NCIT:C173125 Sinonasal Angiosarcoma 6 283879 -NCIT:C176515 Vulvar Angiosarcoma 6 283880 -NCIT:C4489 Skin Angiosarcoma 6 283881 -NCIT:C153626 Recurrent Skin Angiosarcoma 7 283882 -NCIT:C27719 Skin Radiation-Related Angiosarcoma 7 283883 -NCIT:C40379 Angiosarcoma of the Skin of the Arm after Radical Mastectomy followed by Lymphedema 7 283884 -NCIT:C5184 Breast Angiosarcoma 6 283885 -NCIT:C133092 Recurrent Breast Angiosarcoma 7 283886 -NCIT:C176251 Primary Breast Angiosarcoma 7 283887 -NCIT:C40378 Postradiation Breast Angiosarcoma 7 283888 -NCIT:C5320 Peripheral Intraneural Angiosarcoma 6 283889 -NCIT:C5450 Central Nervous System Angiosarcoma 6 283890 -NCIT:C168718 Unresectable Angiosarcoma 5 283891 -NCIT:C175499 Conjunctival Angiosarcoma 5 283892 -NCIT:C27512 Angiosarcoma Associated with Lymphedema 5 283893 -NCIT:C40379 Angiosarcoma of the Skin of the Arm after Radical Mastectomy followed by Lymphedema 6 283894 -NCIT:C27513 Radiation-Related Angiosarcoma 5 283895 -NCIT:C27719 Skin Radiation-Related Angiosarcoma 6 283896 -NCIT:C5384 Recurrent Angiosarcoma 5 283897 -NCIT:C133092 Recurrent Breast Angiosarcoma 6 283898 -NCIT:C153626 Recurrent Skin Angiosarcoma 6 283899 -NCIT:C6479 Bone Angiosarcoma 5 283900 -NCIT:C8708 Metastatic Angiosarcoma 5 283901 -NCIT:C146856 Locally Advanced Angiosarcoma 6 283902 -NCIT:C168720 Advanced Angiosarcoma 6 283903 -NCIT:C9031 Poorly Differentiated Angiosarcoma 5 283904 -NCIT:C9040 Adult Angiosarcoma 5 283905 -NCIT:C9174 Childhood Angiosarcoma 5 283906 -NCIT:C190020 Childhood Liver Angiosarcoma 6 283907 -NCIT:C9275 Localized Angiosarcoma 5 283908 -NCIT:C9411 Angiosarcoma NCI Grade 2 5 283909 -NCIT:C9412 Angiosarcoma NCI Grade 3 5 283910 -NCIT:C9426 Conventional Angiosarcoma 5 283911 -NCIT:C3158 Leiomyosarcoma 4 283912 -NCIT:C121571 Leiomyosarcoma of Deep Soft Tissue 5 283913 -NCIT:C27904 Retroperitoneal Leiomyosarcoma 6 283914 -NCIT:C128047 Cervical Leiomyosarcoma 5 283915 -NCIT:C132147 Unresectable Leiomyosarcoma 5 283916 -NCIT:C168728 Unresectable Soft Tissue Leiomyosarcoma 6 283917 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 7 283918 -NCIT:C148294 Refractory Leiomyosarcoma 5 283919 -NCIT:C156347 Thyroid Gland Leiomyosarcoma 5 283920 -NCIT:C159670 Bladder Leiomyosarcoma 5 283921 -NCIT:C162306 EBV-Related Leiomyosarcoma 5 283922 -NCIT:C162495 Paratesticular Leiomyosarcoma 5 283923 -NCIT:C161641 Seminal Vesicle Leiomyosarcoma 6 283924 -NCIT:C162585 Penile Leiomyosarcoma 5 283925 -NCIT:C172951 Digestive System Leiomyosarcoma 5 283926 -NCIT:C188065 Pancreatic Leiomyosarcoma 6 283927 -NCIT:C27200 Gastric Leiomyosarcoma 6 283928 -NCIT:C5334 Esophageal Leiomyosarcoma 6 283929 -NCIT:C5599 Anal Leiomyosarcoma 6 283930 -NCIT:C5756 Liver Leiomyosarcoma 6 283931 -NCIT:C5841 Gallbladder Leiomyosarcoma 6 283932 -NCIT:C5848 Extrahepatic Bile Duct Leiomyosarcoma 6 283933 -NCIT:C7085 Small Intestinal Leiomyosarcoma 6 283934 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 7 283935 -NCIT:C96435 Appendix Leiomyosarcoma 6 283936 -NCIT:C96509 Colorectal Leiomyosarcoma 6 283937 -NCIT:C5494 Colon Leiomyosarcoma 7 283938 -NCIT:C5549 Rectal Leiomyosarcoma 7 283939 -NCIT:C173123 Sinonasal Leiomyosarcoma 5 283940 -NCIT:C175500 Conjunctival Leiomyosarcoma 5 283941 -NCIT:C175505 Resectable Leiomyosarcoma 5 283942 -NCIT:C178220 Pleomorphic Leiomyosarcoma 5 283943 -NCIT:C178222 Dedifferentiated Leiomyosarcoma 6 283944 -NCIT:C179926 Broad Ligament Leiomyosarcoma 5 283945 -NCIT:C188063 Pleural Leiomyosarcoma 5 283946 -NCIT:C188254 Adrenal Gland Leiomyosarcoma 5 283947 -NCIT:C27494 Granular Cell Leiomyosarcoma 5 283948 -NCIT:C27495 Inflammatory Leiomyosarcoma 5 283949 -NCIT:C3700 Epithelioid Leiomyosarcoma 5 283950 -NCIT:C40174 Uterine Corpus Epithelioid Leiomyosarcoma 6 283951 -NCIT:C3701 Myxoid Leiomyosarcoma 5 283952 -NCIT:C40175 Uterine Corpus Myxoid Leiomyosarcoma 6 283953 -NCIT:C40128 Fallopian Tube Leiomyosarcoma 5 283954 -NCIT:C40318 Vulvar Leiomyosarcoma 5 283955 -NCIT:C5186 Breast Leiomyosarcoma 5 283956 -NCIT:C5234 Ovarian Leiomyosarcoma 5 283957 -NCIT:C5364 Cardiac Leiomyosarcoma 5 283958 -NCIT:C5387 Leiomyosarcoma of Vessels 5 283959 -NCIT:C5372 Inferior Vena Cava Leiomyosarcoma 6 283960 -NCIT:C5373 Pulmonary Artery Leiomyosarcoma 6 283961 -NCIT:C5374 Pulmonary Vein Leiomyosarcoma 6 283962 -NCIT:C5388 Renal Vein Leiomyosarcoma 6 283963 -NCIT:C6745 Superior Vena Cava Leiomyosarcoma 6 283964 -NCIT:C5526 Prostate Leiomyosarcoma 5 283965 -NCIT:C5667 Lung Leiomyosarcoma 5 283966 -NCIT:C6022 Laryngeal Leiomyosarcoma 5 283967 -NCIT:C6183 Kidney Leiomyosarcoma 5 283968 -NCIT:C6326 Vaginal Leiomyosarcoma 5 283969 -NCIT:C6340 Uterine Corpus Leiomyosarcoma 5 283970 -NCIT:C139870 Uterine Corpus Leiomyosarcoma by AJCC v8 Stage 6 283971 -NCIT:C139871 Stage I Uterine Corpus Leiomyosarcoma AJCC v8 7 283972 -NCIT:C139872 Stage IA Uterine Corpus Leiomyosarcoma AJCC v8 8 283973 -NCIT:C139873 Stage IB Uterine Corpus Leiomyosarcoma AJCC v8 8 283974 -NCIT:C139874 Stage II Uterine Corpus Leiomyosarcoma AJCC v8 7 283975 -NCIT:C139875 Stage III Uterine Corpus Leiomyosarcoma AJCC v8 7 283976 -NCIT:C139876 Stage IIIA Uterine Corpus Leiomyosarcoma AJCC v8 8 283977 -NCIT:C139877 Stage IIIB Uterine Corpus Leiomyosarcoma AJCC v8 8 283978 -NCIT:C139878 Stage IIIC Uterine Corpus Leiomyosarcoma AJCC v8 8 283979 -NCIT:C139879 Stage IV Uterine Corpus Leiomyosarcoma AJCC v8 7 283980 -NCIT:C139880 Stage IVA Uterine Corpus Leiomyosarcoma AJCC v8 8 283981 -NCIT:C139881 Stage IVB Uterine Corpus Leiomyosarcoma AJCC v8 8 283982 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 6 283983 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 6 283984 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 7 283985 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 6 283986 -NCIT:C40174 Uterine Corpus Epithelioid Leiomyosarcoma 6 283987 -NCIT:C40175 Uterine Corpus Myxoid Leiomyosarcoma 6 283988 -NCIT:C6619 Mediastinal Leiomyosarcoma 5 283989 -NCIT:C6999 Central Nervous System Leiomyosarcoma 5 283990 -NCIT:C7154 Bone Leiomyosarcoma 5 283991 -NCIT:C7810 Adult Leiomyosarcoma 5 283992 -NCIT:C8093 Childhood Leiomyosarcoma 5 283993 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 6 283994 -NCIT:C8813 Metastatic Leiomyosarcoma 5 283995 -NCIT:C160917 Locally Advanced Leiomyosarcoma 6 283996 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 7 283997 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 283998 -NCIT:C165780 Advanced Leiomyosarcoma 6 283999 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 7 284000 -NCIT:C168725 Metastatic Soft Tissue Leiomyosarcoma 6 284001 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 7 284002 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 7 284003 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 284004 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 7 284005 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 284006 -NCIT:C8814 Localized Leiomyosarcoma 5 284007 -NCIT:C8815 Recurrent Leiomyosarcoma 5 284008 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 6 284009 -NCIT:C9389 Well Differentiated Leiomyosarcoma 5 284010 -NCIT:C9390 Leiomyosarcoma NCI Grade 3 5 284011 -NCIT:C9391 Leiomyosarcoma NCI Grade 2 5 284012 -NCIT:C9428 Conventional Leiomyosarcoma 5 284013 -NCIT:C3194 Liposarcoma 4 284014 -NCIT:C132148 Unresectable Liposarcoma 5 284015 -NCIT:C150598 Unresectable Dedifferentiated Liposarcoma 6 284016 -NCIT:C168719 Unresectable Myxoid Liposarcoma 6 284017 -NCIT:C182028 Unresectable Pleomorphic Liposarcoma 6 284018 -NCIT:C150594 Refractory Liposarcoma 5 284019 -NCIT:C148297 Refractory Myxoid Liposarcoma 6 284020 -NCIT:C150593 Refractory Dedifferentiated Liposarcoma 6 284021 -NCIT:C150606 Resectable Liposarcoma 5 284022 -NCIT:C150607 Resectable Dedifferentiated Liposarcoma 6 284023 -NCIT:C156279 Colon Liposarcoma 5 284024 -NCIT:C156281 Parotid Gland Liposarcoma 5 284025 -NCIT:C156282 Scrotal Liposarcoma 5 284026 -NCIT:C162493 Paratesticular Liposarcoma 5 284027 -NCIT:C173404 Tongue Liposarcoma 5 284028 -NCIT:C176989 Myxoid Pleomorphic Liposarcoma 5 284029 -NCIT:C27781 Myxoid Liposarcoma 5 284030 -NCIT:C148297 Refractory Myxoid Liposarcoma 6 284031 -NCIT:C148298 Metastatic Myxoid Liposarcoma 6 284032 -NCIT:C162763 Advanced Myxoid Liposarcoma 7 284033 -NCIT:C150579 Recurrent Myxoid Liposarcoma 6 284034 -NCIT:C168719 Unresectable Myxoid Liposarcoma 6 284035 -NCIT:C5235 Ovarian Myxoid Liposarcoma 6 284036 -NCIT:C3704 Dedifferentiated Liposarcoma 5 284037 -NCIT:C150592 Recurrent Dedifferentiated Liposarcoma 6 284038 -NCIT:C150593 Refractory Dedifferentiated Liposarcoma 6 284039 -NCIT:C150598 Unresectable Dedifferentiated Liposarcoma 6 284040 -NCIT:C150607 Resectable Dedifferentiated Liposarcoma 6 284041 -NCIT:C164070 Metastatic Dedifferentiated Liposarcoma 6 284042 -NCIT:C164071 Locally Advanced Dedifferentiated Liposarcoma 7 284043 -NCIT:C168715 Advanced Dedifferentiated Liposarcoma 7 284044 -NCIT:C3705 Pleomorphic Liposarcoma 5 284045 -NCIT:C170473 Skin Pleomorphic Liposarcoma 6 284046 -NCIT:C182025 Metastatic Pleomorphic Liposarcoma 6 284047 -NCIT:C182026 Advanced Pleomorphic Liposarcoma 7 284048 -NCIT:C182028 Unresectable Pleomorphic Liposarcoma 6 284049 -NCIT:C40321 Vulvar Liposarcoma 5 284050 -NCIT:C4253 Mixed Liposarcoma 5 284051 -NCIT:C5187 Breast Liposarcoma 5 284052 -NCIT:C5488 Gastric Liposarcoma 5 284053 -NCIT:C5615 Skin Liposarcoma 5 284054 -NCIT:C170473 Skin Pleomorphic Liposarcoma 6 284055 -NCIT:C5705 Esophageal Liposarcoma 5 284056 -NCIT:C6021 Laryngeal Liposarcoma 5 284057 -NCIT:C6185 Kidney Liposarcoma 5 284058 -NCIT:C6419 Ovarian Liposarcoma 5 284059 -NCIT:C5235 Ovarian Myxoid Liposarcoma 6 284060 -NCIT:C6614 Mediastinal Liposarcoma 5 284061 -NCIT:C95038 Thymoliposarcoma 6 284062 -NCIT:C6973 Brain Liposarcoma 5 284063 -NCIT:C7598 Bone Liposarcoma 5 284064 -NCIT:C7811 Adult Liposarcoma 5 284065 -NCIT:C8091 Childhood Liposarcoma 5 284066 -NCIT:C8816 Metastatic Liposarcoma 5 284067 -NCIT:C148298 Metastatic Myxoid Liposarcoma 6 284068 -NCIT:C162763 Advanced Myxoid Liposarcoma 7 284069 -NCIT:C160916 Locally Advanced Liposarcoma 6 284070 -NCIT:C164071 Locally Advanced Dedifferentiated Liposarcoma 7 284071 -NCIT:C164070 Metastatic Dedifferentiated Liposarcoma 6 284072 -NCIT:C164071 Locally Advanced Dedifferentiated Liposarcoma 7 284073 -NCIT:C168715 Advanced Dedifferentiated Liposarcoma 7 284074 -NCIT:C168701 Advanced Liposarcoma 6 284075 -NCIT:C162763 Advanced Myxoid Liposarcoma 7 284076 -NCIT:C168715 Advanced Dedifferentiated Liposarcoma 7 284077 -NCIT:C182026 Advanced Pleomorphic Liposarcoma 7 284078 -NCIT:C182025 Metastatic Pleomorphic Liposarcoma 6 284079 -NCIT:C182026 Advanced Pleomorphic Liposarcoma 7 284080 -NCIT:C8817 Localized Liposarcoma 5 284081 -NCIT:C8818 Recurrent Liposarcoma 5 284082 -NCIT:C150579 Recurrent Myxoid Liposarcoma 6 284083 -NCIT:C150592 Recurrent Dedifferentiated Liposarcoma 6 284084 -NCIT:C3746 Small Cell Sarcoma 4 284085 -NCIT:C165671 EWSR1-Negative Small Round Cell Tumor 5 284086 -NCIT:C120224 CIC-Rearranged Sarcoma 6 284087 -NCIT:C165663 CIC-DUX4 Sarcoma 7 284088 -NCIT:C165665 CIC-DUX4L Sarcoma 7 284089 -NCIT:C186607 Central Nervous System CIC-Rearranged Sarcoma 7 284090 -NCIT:C189006 Childhood CIC-Rearranged Sarcoma 7 284091 -NCIT:C178459 Round Cell Sarcoma with EWSR1-non-ETS Fusion 5 284092 -NCIT:C178460 Round Cell Sarcoma with EWSR1-NFATC2 Gene Fusion 6 284093 -NCIT:C178461 Round Cell Sarcoma with EWSR1-PATZ1 Gene Fusion 6 284094 -NCIT:C178462 Round Cell Sarcoma with FUS-NFATC2 Gene Fusion 6 284095 -NCIT:C189003 Childhood Round Cell Sarcoma with EWSR1-non-ETS Fusion 6 284096 -NCIT:C178465 Sarcoma with BCOR Genetic Alterations 5 284097 -NCIT:C178466 BCOR-CCNB3 Sarcoma 6 284098 -NCIT:C178468 BCOR ITD Sarcoma 6 284099 -NCIT:C189007 Childhood Sarcoma with BCOR Genetic Alterations 6 284100 -NCIT:C180546 Uterine Corpus Central Primitive Neuroectodermal Tumor 5 284101 -NCIT:C3737 Mesenchymal Chondrosarcoma 5 284102 -NCIT:C129534 Central Nervous System Mesenchymal Chondrosarcoma 6 284103 -NCIT:C27374 Childhood Mesenchymal Chondrosarcoma 6 284104 -NCIT:C27375 Adult Mesenchymal Chondrosarcoma 6 284105 -NCIT:C53493 Mesenchymal Chondrosarcoma of Bone 6 284106 -NCIT:C173843 Maxillofacial Mesenchymal Chondrosarcoma 7 284107 -NCIT:C4023 Small Cell Osteosarcoma 5 284108 -NCIT:C8300 Desmoplastic Small Round Cell Tumor 5 284109 -NCIT:C126356 Peritoneal Desmoplastic Small Round Cell Tumor 6 284110 -NCIT:C158426 Recurrent Desmoplastic Small Round Cell Tumor 6 284111 -NCIT:C158427 Refractory Desmoplastic Small Round Cell Tumor 6 284112 -NCIT:C170826 Unresectable Desmoplastic Small Round Cell Tumor 6 284113 -NCIT:C170827 Metastatic Desmoplastic Small Round Cell Tumor 6 284114 -NCIT:C180875 Locally Advanced Desmoplastic Small Round Cell Tumor 7 284115 -NCIT:C27372 Childhood Desmoplastic Small Round Cell Tumor 6 284116 -NCIT:C27373 Adult Desmoplastic Small Round Cell Tumor 6 284117 -NCIT:C3798 Malignant Peripheral Nerve Sheath Tumor 4 284118 -NCIT:C128050 Cervical Malignant Peripheral Nerve Sheath Tumor 5 284119 -NCIT:C155987 Refractory Malignant Peripheral Nerve Sheath Tumor 5 284120 -NCIT:C162725 Refractory Epithelioid Malignant Peripheral Nerve Sheath Tumor 6 284121 -NCIT:C156341 Thyroid Gland Malignant Peripheral Nerve Sheath Tumor 5 284122 -NCIT:C162584 Penile Malignant Peripheral Nerve Sheath Tumor 5 284123 -NCIT:C164312 Unresectable Malignant Peripheral Nerve Sheath Tumor 5 284124 -NCIT:C164313 NF1-Associated Malignant Peripheral Nerve Sheath Tumor 5 284125 -NCIT:C164314 Sporadic Malignant Peripheral Nerve Sheath Tumor 5 284126 -NCIT:C164316 Radiation-Induced Malignant Peripheral Nerve Sheath Tumor 5 284127 -NCIT:C172624 Malignant Peripheral Nerve Sheath Tumor of the Skin 5 284128 -NCIT:C172625 Epithelioid Malignant Peripheral Nerve Sheath Tumor of the Skin 6 284129 -NCIT:C173127 Sinonasal Malignant Peripheral Nerve Sheath Tumor 5 284130 -NCIT:C188064 Bone Malignant Peripheral Nerve Sheath Tumor 5 284131 -NCIT:C188073 Retroperitoneal Malignant Peripheral Nerve Sheath Tumor 5 284132 -NCIT:C4748 Malignant Melanotic Peripheral Nerve Sheath Tumor 5 284133 -NCIT:C6630 Malignant Melanotic Peripheral Nerve Sheath Tumor of the Mediastinum 6 284134 -NCIT:C6910 Malignant Melanotic Psammomatous Peripheral Nerve Sheath Tumor 6 284135 -NCIT:C5367 Cardiac Malignant Peripheral Nerve Sheath Tumor 5 284136 -NCIT:C6560 Glandular Malignant Peripheral Nerve Sheath Tumor 5 284137 -NCIT:C6561 Epithelioid Malignant Peripheral Nerve Sheath Tumor 5 284138 -NCIT:C162724 Recurrent Epithelioid Malignant Peripheral Nerve Sheath Tumor 6 284139 -NCIT:C162725 Refractory Epithelioid Malignant Peripheral Nerve Sheath Tumor 6 284140 -NCIT:C172625 Epithelioid Malignant Peripheral Nerve Sheath Tumor of the Skin 6 284141 -NCIT:C6626 Mediastinal Malignant Peripheral Nerve Sheath Tumor 5 284142 -NCIT:C6630 Malignant Melanotic Peripheral Nerve Sheath Tumor of the Mediastinum 6 284143 -NCIT:C66845 Malignant Peripheral Nerve Sheath Tumor with Perineurial Differentiation 5 284144 -NCIT:C7814 Adult Malignant Peripheral Nerve Sheath Tumor 5 284145 -NCIT:C8094 Childhood Malignant Peripheral Nerve Sheath Tumor 5 284146 -NCIT:C8822 Metastatic Malignant Peripheral Nerve Sheath Tumor 5 284147 -NCIT:C164074 Locally Advanced Malignant Peripheral Nerve Sheath Tumor 6 284148 -NCIT:C168714 Advanced Malignant Peripheral Nerve Sheath Tumor 6 284149 -NCIT:C8823 Recurrent Malignant Peripheral Nerve Sheath Tumor 5 284150 -NCIT:C162724 Recurrent Epithelioid Malignant Peripheral Nerve Sheath Tumor 6 284151 -NCIT:C9026 Low Grade Malignant Peripheral Nerve Sheath Tumor 5 284152 -NCIT:C9030 High Grade Malignant Peripheral Nerve Sheath Tumor 5 284153 -NCIT:C92185 Esophageal Malignant Peripheral Nerve Sheath Tumor 5 284154 -NCIT:C92186 Intraocular Malignant Peripheral Nerve Sheath Tumor 5 284155 -NCIT:C92647 Malignant Peripheral Nerve Sheath Tumor with Mesenchymal Differentiation 5 284156 -NCIT:C4335 Malignant Triton Tumor 6 284157 -NCIT:C4817 Ewing Sarcoma 4 284158 -NCIT:C132849 Unresectable Ewing Sarcoma 5 284159 -NCIT:C142853 Refractory Ewing Sarcoma 5 284160 -NCIT:C174456 Atypical Ewing Sarcoma 5 284161 -NCIT:C189002 Childhood Ewing Sarcoma 5 284162 -NCIT:C189261 Childhood Kidney Ewing Sarcoma 6 284163 -NCIT:C4835 Ewing Sarcoma of Bone 5 284164 -NCIT:C6621 Metastatic Bone Ewing Sarcoma 6 284165 -NCIT:C6622 Recurrent Bone Ewing Sarcoma 6 284166 -NCIT:C6623 Localized Bone Ewing Sarcoma 6 284167 -NCIT:C7135 Extraskeletal Ewing Sarcoma 5 284168 -NCIT:C159208 Kidney Ewing Sarcoma 6 284169 -NCIT:C189261 Childhood Kidney Ewing Sarcoma 7 284170 -NCIT:C172634 Skin Ewing Sarcoma 6 284171 -NCIT:C181977 Vulvar Ewing Sarcoma 6 284172 -NCIT:C186611 Central Nervous System Ewing Sarcoma 6 284173 -NCIT:C8801 Metastatic Extraskeletal Ewing Sarcoma 6 284174 -NCIT:C8802 Localized Extraskeletal Ewing Sarcoma 6 284175 -NCIT:C8803 Recurrent Extraskeletal Ewing Sarcoma 6 284176 -NCIT:C7806 Localized Ewing Sarcoma 5 284177 -NCIT:C6623 Localized Bone Ewing Sarcoma 6 284178 -NCIT:C8802 Localized Extraskeletal Ewing Sarcoma 6 284179 -NCIT:C7807 Metastatic Ewing Sarcoma 5 284180 -NCIT:C164080 Locally Advanced Ewing Sarcoma 6 284181 -NCIT:C6621 Metastatic Bone Ewing Sarcoma 6 284182 -NCIT:C8801 Metastatic Extraskeletal Ewing Sarcoma 6 284183 -NCIT:C7808 Recurrent Ewing Sarcoma 5 284184 -NCIT:C6622 Recurrent Bone Ewing Sarcoma 6 284185 -NCIT:C8803 Recurrent Extraskeletal Ewing Sarcoma 6 284186 -NCIT:C6921 Langerhans Cell Sarcoma 4 284187 -NCIT:C9023 Sarcoma by FNCLCC Grade 4 284188 -NCIT:C9024 FNCLCC Sarcoma Grade 1 5 284189 -NCIT:C9025 Well Differentiated Fibrosarcoma 6 284190 -NCIT:C9389 Well Differentiated Leiomyosarcoma 6 284191 -NCIT:C9028 FNCLCC Sarcoma Grade 2 5 284192 -NCIT:C6496 Myxofibrosarcoma 6 284193 -NCIT:C147004 Cardiac Myxofibrosarcoma 7 284194 -NCIT:C168670 Metastatic Myxofibrosarcoma 7 284195 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 8 284196 -NCIT:C171304 Advanced Myxofibrosarcoma 8 284197 -NCIT:C172632 Skin Myxofibrosarcoma 7 284198 -NCIT:C177414 Epithelioid Myxofibrosarcoma 7 284199 -NCIT:C178372 Unresectable Myxofibrosarcoma 7 284200 -NCIT:C9426 Conventional Angiosarcoma 6 284201 -NCIT:C9428 Conventional Leiomyosarcoma 6 284202 -NCIT:C9429 Conventional Fibrosarcoma 6 284203 -NCIT:C9029 FNCLCC Sarcoma Grade 3 5 284204 -NCIT:C27096 Liver Embryonal Sarcoma 6 284205 -NCIT:C189934 Childhood Liver Embryonal Sarcoma 7 284206 -NCIT:C189935 Adult Liver Embryonal Sarcoma 7 284207 -NCIT:C3700 Epithelioid Leiomyosarcoma 6 284208 -NCIT:C40174 Uterine Corpus Epithelioid Leiomyosarcoma 7 284209 -NCIT:C3704 Dedifferentiated Liposarcoma 6 284210 -NCIT:C150592 Recurrent Dedifferentiated Liposarcoma 7 284211 -NCIT:C150593 Refractory Dedifferentiated Liposarcoma 7 284212 -NCIT:C150598 Unresectable Dedifferentiated Liposarcoma 7 284213 -NCIT:C150607 Resectable Dedifferentiated Liposarcoma 7 284214 -NCIT:C164070 Metastatic Dedifferentiated Liposarcoma 7 284215 -NCIT:C164071 Locally Advanced Dedifferentiated Liposarcoma 8 284216 -NCIT:C168715 Advanced Dedifferentiated Liposarcoma 8 284217 -NCIT:C3705 Pleomorphic Liposarcoma 6 284218 -NCIT:C170473 Skin Pleomorphic Liposarcoma 7 284219 -NCIT:C182025 Metastatic Pleomorphic Liposarcoma 7 284220 -NCIT:C182026 Advanced Pleomorphic Liposarcoma 8 284221 -NCIT:C182028 Unresectable Pleomorphic Liposarcoma 7 284222 -NCIT:C3714 Epithelioid Sarcoma 6 284223 -NCIT:C162722 Refractory Epithelioid Sarcoma 7 284224 -NCIT:C167379 Unresectable Epithelioid Sarcoma 7 284225 -NCIT:C181971 Vulvar Epithelioid Sarcoma 7 284226 -NCIT:C181973 Vulvar Distal-Type Epithelioid Sarcoma 8 284227 -NCIT:C40319 Vulvar Proximal-Type Epithelioid Sarcoma 8 284228 -NCIT:C27472 Proximal-Type Epithelioid Sarcoma 7 284229 -NCIT:C188055 Pleural Proximal-Type Epithelioid Sarcoma 8 284230 -NCIT:C40319 Vulvar Proximal-Type Epithelioid Sarcoma 8 284231 -NCIT:C27473 Distal-Type Epithelioid Sarcoma 7 284232 -NCIT:C181973 Vulvar Distal-Type Epithelioid Sarcoma 8 284233 -NCIT:C5059 Recurrent Epithelioid Sarcoma 7 284234 -NCIT:C7944 Adult Epithelioid Sarcoma 7 284235 -NCIT:C8095 Childhood Epithelioid Sarcoma 7 284236 -NCIT:C8799 Metastatic Epithelioid Sarcoma 7 284237 -NCIT:C167378 Locally Advanced Epithelioid Sarcoma 8 284238 -NCIT:C167380 Advanced Epithelioid Sarcoma 8 284239 -NCIT:C8800 Localized Epithelioid Sarcoma 7 284240 -NCIT:C9409 Epithelioid Sarcoma NCI Grade 2 7 284241 -NCIT:C9410 Epithelioid Sarcoma NCI Grade 3 7 284242 -NCIT:C3749 Alveolar Rhabdomyosarcoma 6 284243 -NCIT:C123731 Fusion-Positive Alveolar Rhabdomyosarcoma 7 284244 -NCIT:C123732 Fusion-Negative Alveolar Rhabdomyosarcoma 7 284245 -NCIT:C128273 Vulvar Alveolar Rhabdomyosarcoma 7 284246 -NCIT:C142880 Refractory Alveolar Rhabdomyosarcoma 7 284247 -NCIT:C142881 Recurrent Alveolar Rhabdomyosarcoma 7 284248 -NCIT:C159669 Bladder Alveolar Rhabdomyosarcoma 7 284249 -NCIT:C188070 Prostate Alveolar Rhabdomyosarcoma 7 284250 -NCIT:C27492 Conventional Alveolar Rhabdomyosarcoma 7 284251 -NCIT:C27493 Solid Alveolar Rhabdomyosarcoma 7 284252 -NCIT:C6247 Orbit Alveolar Rhabdomyosarcoma 7 284253 -NCIT:C7958 Childhood Alveolar Rhabdomyosarcoma 7 284254 -NCIT:C3750 Alveolar Soft Part Sarcoma 6 284255 -NCIT:C156273 Tongue Alveolar Soft Part Sarcoma' 7 284256 -NCIT:C156276 Orbital Alveolar Soft Part Sarcoma 7 284257 -NCIT:C156277 Bladder Alveolar Soft Part Sarcoma 7 284258 -NCIT:C164078 Unresectable Alveolar Soft Part Sarcoma 7 284259 -NCIT:C173809 Lung Alveolar Soft Part Sarcoma 7 284260 -NCIT:C188034 Refractory Alveolar Soft Part Sarcoma 7 284261 -NCIT:C40225 Cervical Alveolar Soft Part Sarcoma 7 284262 -NCIT:C40320 Vulvar Alveolar Soft Part Sarcoma 7 284263 -NCIT:C7943 Adult Alveolar Soft Part Sarcoma 7 284264 -NCIT:C8092 Childhood Alveolar Soft Part Sarcoma 7 284265 -NCIT:C8796 Metastatic Alveolar Soft Part Sarcoma 7 284266 -NCIT:C164076 Locally Advanced Alveolar Soft Part Sarcoma 8 284267 -NCIT:C188198 Advanced Alveolar Soft Part Sarcoma 8 284268 -NCIT:C8797 Localized Alveolar Soft Part Sarcoma 7 284269 -NCIT:C8798 Recurrent Alveolar Soft Part Sarcoma 7 284270 -NCIT:C4279 Biphasic Synovial Sarcoma 6 284271 -NCIT:C45632 Lung Biphasic Synovial Sarcoma 7 284272 -NCIT:C45698 Pleural Biphasic Synovial Sarcoma 7 284273 -NCIT:C45757 Cardiac Biphasic Synovial Sarcoma 7 284274 -NCIT:C6497 Undifferentiated Pleomorphic Sarcoma, Inflammatory Variant 6 284275 -NCIT:C6534 Monophasic Synovial Sarcoma 6 284276 -NCIT:C4277 Spindle Cell Synovial Sarcoma 7 284277 -NCIT:C4278 Epithelial Synovial Sarcoma 7 284278 -NCIT:C45633 Lung Monophasic Synovial Sarcoma 7 284279 -NCIT:C45697 Pleural Monophasic Synovial Sarcoma 7 284280 -NCIT:C45758 Cardiac Monophasic Synovial Sarcoma 7 284281 -NCIT:C8380 Undifferentiated Pleomorphic Sarcoma with Osteoclast-Like Giant Cells 6 284282 -NCIT:C8971 Embryonal Rhabdomyosarcoma 6 284283 -NCIT:C159668 Bladder Embryonal Rhabdomyosarcoma 7 284284 -NCIT:C183250 Metastatic Embryonal Rhabdomyosarcoma 7 284285 -NCIT:C188115 Middle Ear Embryonal Rhabdomyosarcoma 7 284286 -NCIT:C49204 Anaplastic Embryonal Rhabdomyosarcoma 7 284287 -NCIT:C5525 Prostate Embryonal Rhabdomyosarcoma 7 284288 -NCIT:C5847 Extrahepatic Bile Duct Embryonal Rhabdomyosarcoma 7 284289 -NCIT:C6246 Orbit Embryonal Rhabdomyosarcoma 7 284290 -NCIT:C7957 Childhood Embryonal Rhabdomyosarcoma 7 284291 -NCIT:C35574 Childhood Botryoid-Type Embryonal Rhabdomyosarcoma 8 284292 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 9 284293 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 9 284294 -NCIT:C9150 Botryoid-Type Embryonal Rhabdomyosarcoma 7 284295 -NCIT:C35574 Childhood Botryoid-Type Embryonal Rhabdomyosarcoma 8 284296 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 9 284297 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 9 284298 -NCIT:C36099 Adult Botryoid-Type Embryonal Rhabdomyosarcoma 8 284299 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 9 284300 -NCIT:C40268 Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 8 284301 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 9 284302 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 9 284303 -NCIT:C9031 Poorly Differentiated Angiosarcoma 6 284304 -NCIT:C9404 Poorly Differentiated Fibrosarcoma 6 284305 -NCIT:C9145 Osteosarcoma 4 284306 -NCIT:C132850 Unresectable Osteosarcoma 5 284307 -NCIT:C142857 Refractory Osteosarcoma 5 284308 -NCIT:C187192 Refractory Childhood Osteosarcoma 6 284309 -NCIT:C162661 Resectable Osteosarcoma 5 284310 -NCIT:C53707 Bone Osteosarcoma 5 284311 -NCIT:C173844 Maxillofacial Osteosarcoma 6 284312 -NCIT:C189022 Childhood Bone Osteosarcoma 6 284313 -NCIT:C123398 Childhood Periosteal Osteosarcoma 7 284314 -NCIT:C6589 Childhood Parosteal Osteosarcoma 7 284315 -NCIT:C6590 Childhood Conventional Osteosarcoma 7 284316 -NCIT:C38157 Metachronous Osteosarcoma 6 284317 -NCIT:C4834 Primary Bone Osteosarcoma 6 284318 -NCIT:C136633 Osteosarcoma by AJCC v7 Stage 7 284319 -NCIT:C6612 Stage III Osteosarcoma AJCC v7 8 284320 -NCIT:C6701 Stage IV Osteosarcoma AJCC v7 8 284321 -NCIT:C6702 Stage IVA Osteosarcoma AJCC v7 9 284322 -NCIT:C6703 Stage IVB Osteosarcoma AJCC v7 9 284323 -NCIT:C6709 Stage I Osteosarcoma AJCC v7 8 284324 -NCIT:C6607 Stage IA Osteosarcoma AJCC v7 9 284325 -NCIT:C6609 Stage IB Osteosarcoma AJCC v7 9 284326 -NCIT:C6710 Stage II Osteosarcoma AJCC v7 8 284327 -NCIT:C6610 Stage IIA Osteosarcoma AJCC v7 9 284328 -NCIT:C6611 Stage IIB Osteosarcoma AJCC v7 9 284329 -NCIT:C35870 Conventional Osteosarcoma 7 284330 -NCIT:C179410 Giant Cell-Rich Osteosarcoma 8 284331 -NCIT:C4020 Fibroblastic Osteosarcoma 8 284332 -NCIT:C4021 Chondroblastic Osteosarcoma 8 284333 -NCIT:C53953 Osteoblastic Osteosarcoma 8 284334 -NCIT:C6590 Childhood Conventional Osteosarcoma 8 284335 -NCIT:C3902 Telangiectatic Osteosarcoma 7 284336 -NCIT:C4023 Small Cell Osteosarcoma 7 284337 -NCIT:C6470 Multifocal Osteosarcoma 7 284338 -NCIT:C6471 Synchronous Multifocal Osteosarcoma 8 284339 -NCIT:C6472 Asynchronous Multifocal Osteosarcoma 8 284340 -NCIT:C6474 Low Grade Central Osteosarcoma 7 284341 -NCIT:C7134 Bone Surface (Peripheral) Osteosarcoma 7 284342 -NCIT:C53958 High Grade Surface Osteosarcoma 8 284343 -NCIT:C8969 Parosteal Osteosarcoma 8 284344 -NCIT:C6589 Childhood Parosteal Osteosarcoma 9 284345 -NCIT:C8970 Periosteal Osteosarcoma 8 284346 -NCIT:C123398 Childhood Periosteal Osteosarcoma 9 284347 -NCIT:C53704 Secondary Osteosarcoma 6 284348 -NCIT:C53706 Radiation-Related Osteosarcoma 7 284349 -NCIT:C6469 Osteosarcoma Arising in Paget Disease of Bone 7 284350 -NCIT:C6585 Childhood Osteosarcoma 5 284351 -NCIT:C187189 Recurrent Childhood Osteosarcoma 6 284352 -NCIT:C187192 Refractory Childhood Osteosarcoma 6 284353 -NCIT:C189022 Childhood Bone Osteosarcoma 6 284354 -NCIT:C123398 Childhood Periosteal Osteosarcoma 7 284355 -NCIT:C6589 Childhood Parosteal Osteosarcoma 7 284356 -NCIT:C6590 Childhood Conventional Osteosarcoma 7 284357 -NCIT:C27376 Childhood Extraskeletal Osteosarcoma 6 284358 -NCIT:C7780 Localized Osteosarcoma 5 284359 -NCIT:C8809 Localized Extraskeletal Osteosarcoma 6 284360 -NCIT:C7781 Metastatic Osteosarcoma 5 284361 -NCIT:C175665 Locally Advanced Osteosarcoma 6 284362 -NCIT:C38157 Metachronous Osteosarcoma 6 284363 -NCIT:C8808 Metastatic Extraskeletal Osteosarcoma 6 284364 -NCIT:C7881 Recurrent Osteosarcoma 5 284365 -NCIT:C187189 Recurrent Childhood Osteosarcoma 6 284366 -NCIT:C8811 Recurrent Extraskeletal Osteosarcoma 6 284367 -NCIT:C8810 Extraskeletal Osteosarcoma 5 284368 -NCIT:C147003 Cardiac Extraskeletal Osteosarcoma 6 284369 -NCIT:C161035 Prostate Osteosarcoma 6 284370 -NCIT:C188061 Lung Osteosarcoma 6 284371 -NCIT:C27376 Childhood Extraskeletal Osteosarcoma 6 284372 -NCIT:C5189 Breast Extraskeletal Osteosarcoma 6 284373 -NCIT:C5833 Liver Extraskeletal Osteosarcoma 6 284374 -NCIT:C6181 Kidney Extraskeletal Osteosarcoma 6 284375 -NCIT:C6615 Mediastinal Extraskeletal Osteosarcoma 6 284376 -NCIT:C7002 Central Nervous System Extraskeletal Osteosarcoma 6 284377 -NCIT:C7925 Adult Extraskeletal Osteosarcoma 6 284378 -NCIT:C82972 Duodenal Extraskeletal Osteosarcoma 6 284379 -NCIT:C8808 Metastatic Extraskeletal Osteosarcoma 6 284380 -NCIT:C8809 Localized Extraskeletal Osteosarcoma 6 284381 -NCIT:C8811 Recurrent Extraskeletal Osteosarcoma 6 284382 -NCIT:C9281 Follicular Dendritic Cell Sarcoma 4 284383 -NCIT:C172846 Conventional Follicular Dendritic Cell Sarcoma 5 284384 -NCIT:C172847 EBV-Positive Inflammatory Follicular Dendritic Cell Sarcoma 5 284385 -NCIT:C150704 EBV-Positive Inflammatory Follicular Dendritic Cell Sarcoma of the Digestive System 6 284386 -NCIT:C173580 Head and Neck Follicular Dendritic Cell Sarcoma 5 284387 -NCIT:C156408 Thyroid Gland Follicular Dendritic Cell Sarcoma 6 284388 -NCIT:C183374 Mediastinal Follicular Dendritic Cell Sarcoma 5 284389 -NCIT:C9282 Interdigitating Dendritic Cell Sarcoma 4 284390 -NCIT:C9306 Soft Tissue Sarcoma 4 284391 -NCIT:C121571 Leiomyosarcoma of Deep Soft Tissue 5 284392 -NCIT:C27904 Retroperitoneal Leiomyosarcoma 6 284393 -NCIT:C121671 Soft Tissue Angiosarcoma 5 284394 -NCIT:C162578 Penile Angiosarcoma 6 284395 -NCIT:C171026 Visceral Angiosarcoma 6 284396 -NCIT:C147097 Cardiac Angiosarcoma 7 284397 -NCIT:C147101 Pericardial Angiosarcoma 7 284398 -NCIT:C159205 Kidney Angiosarcoma 7 284399 -NCIT:C159671 Bladder Angiosarcoma 7 284400 -NCIT:C161642 Seminal Vesicle Angiosarcoma 7 284401 -NCIT:C4438 Liver Angiosarcoma 7 284402 -NCIT:C190020 Childhood Liver Angiosarcoma 8 284403 -NCIT:C4564 Splenic Angiosarcoma 7 284404 -NCIT:C48320 Adrenal Gland Angiosarcoma 7 284405 -NCIT:C5232 Ovarian Angiosarcoma 7 284406 -NCIT:C5376 Aortic Angiosarcoma 7 284407 -NCIT:C5378 Superior Vena Cava Angiosarcoma 7 284408 -NCIT:C5385 Uterine Angiosarcoma 7 284409 -NCIT:C128049 Cervical Angiosarcoma 8 284410 -NCIT:C5528 Prostate Angiosarcoma 7 284411 -NCIT:C5840 Gallbladder Angiosarcoma 7 284412 -NCIT:C6043 Thyroid Gland Angiosarcoma 7 284413 -NCIT:C6613 Mediastinal Angiosarcoma 7 284414 -NCIT:C6746 Pulmonary Artery Angiosarcoma 7 284415 -NCIT:C96060 Small Intestinal Angiosarcoma 7 284416 -NCIT:C96511 Colorectal Angiosarcoma 7 284417 -NCIT:C173125 Sinonasal Angiosarcoma 6 284418 -NCIT:C176515 Vulvar Angiosarcoma 6 284419 -NCIT:C4489 Skin Angiosarcoma 6 284420 -NCIT:C153626 Recurrent Skin Angiosarcoma 7 284421 -NCIT:C27719 Skin Radiation-Related Angiosarcoma 7 284422 -NCIT:C40379 Angiosarcoma of the Skin of the Arm after Radical Mastectomy followed by Lymphedema 7 284423 -NCIT:C5184 Breast Angiosarcoma 6 284424 -NCIT:C133092 Recurrent Breast Angiosarcoma 7 284425 -NCIT:C176251 Primary Breast Angiosarcoma 7 284426 -NCIT:C40378 Postradiation Breast Angiosarcoma 7 284427 -NCIT:C5320 Peripheral Intraneural Angiosarcoma 6 284428 -NCIT:C5450 Central Nervous System Angiosarcoma 6 284429 -NCIT:C121793 Undifferentiated Soft Tissue Sarcoma 5 284430 -NCIT:C121797 Undifferentiated Spindle Cell Sarcoma 6 284431 -NCIT:C121799 Undifferentiated Round Cell Sarcoma 6 284432 -NCIT:C121802 Undifferentiated Epithelioid Sarcoma 6 284433 -NCIT:C121804 Undifferentiated Sarcoma, Not Otherwise Specified 6 284434 -NCIT:C4247 Undifferentiated Pleomorphic Sarcoma 6 284435 -NCIT:C114541 Adult Undifferentiated Pleomorphic Sarcoma 7 284436 -NCIT:C114749 Childhood Undifferentiated Pleomorphic Sarcoma 7 284437 -NCIT:C129566 Central Nervous System Undifferentiated Pleomorphic Sarcoma 7 284438 -NCIT:C148295 Refractory Undifferentiated Pleomorphic Sarcoma 7 284439 -NCIT:C150610 Unresectable Undifferentiated Pleomorphic Sarcoma 7 284440 -NCIT:C150611 Resectable Undifferentiated Pleomorphic Sarcoma 7 284441 -NCIT:C151985 Abdominal Undifferentiated Pleomorphic Sarcoma 7 284442 -NCIT:C161038 Prostate Undifferentiated Pleomorphic Sarcoma 7 284443 -NCIT:C162589 Penile Undifferentiated Pleomorphic Sarcoma 7 284444 -NCIT:C173121 Sinonasal Undifferentiated Pleomorphic Sarcoma 7 284445 -NCIT:C173808 Retroperitoneal Undifferentiated Pleomorphic Sarcoma 7 284446 -NCIT:C45755 Cardiac Undifferentiated Pleomorphic Sarcoma 7 284447 -NCIT:C4926 Metastatic Undifferentiated Pleomorphic Sarcoma 7 284448 -NCIT:C160919 Locally Advanced Undifferentiated Pleomorphic Sarcoma 8 284449 -NCIT:C165781 Advanced Undifferentiated Pleomorphic Sarcoma 8 284450 -NCIT:C5576 Skin Undifferentiated Pleomorphic Sarcoma 7 284451 -NCIT:C6497 Undifferentiated Pleomorphic Sarcoma, Inflammatory Variant 7 284452 -NCIT:C8380 Undifferentiated Pleomorphic Sarcoma with Osteoclast-Like Giant Cells 7 284453 -NCIT:C8795 Recurrent Undifferentiated Pleomorphic Sarcoma 7 284454 -NCIT:C128047 Cervical Leiomyosarcoma 5 284455 -NCIT:C128048 Cervical Rhabdomyosarcoma 5 284456 -NCIT:C128050 Cervical Malignant Peripheral Nerve Sheath Tumor 5 284457 -NCIT:C136693 Soft Tissue Sarcoma by AJCC v8 Stage 5 284458 -NCIT:C136694 Soft Tissue Sarcoma of the Trunk and Extremities by AJCC v8 Stage 6 284459 -NCIT:C136696 Stage I Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 7 284460 -NCIT:C136698 Stage IA Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 8 284461 -NCIT:C136700 Stage IB Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 8 284462 -NCIT:C136701 Stage II Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 7 284463 -NCIT:C136702 Stage III Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 7 284464 -NCIT:C136703 Stage IIIA Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 8 284465 -NCIT:C136705 Stage IIIB Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 8 284466 -NCIT:C136706 Stage IV Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 7 284467 -NCIT:C136767 Gastrointestinal Stromal Tumor by AJCC v8 Stage 6 284468 -NCIT:C136768 Gastric and Omental Gastrointestinal Stromal Tumor by AJCC v8 Stage 7 284469 -NCIT:C136770 Stage I Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 8 284470 -NCIT:C136771 Stage IA Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 9 284471 -NCIT:C136772 Stage IB Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 9 284472 -NCIT:C136773 Stage II Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 8 284473 -NCIT:C136774 Stage III Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 8 284474 -NCIT:C136775 Stage IIIA Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 9 284475 -NCIT:C136777 Stage IIIB Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 9 284476 -NCIT:C136778 Stage IV Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 8 284477 -NCIT:C136769 Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor by AJCC v8 Stage 7 284478 -NCIT:C136780 Stage I Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 8 284479 -NCIT:C136781 Stage II Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 8 284480 -NCIT:C136783 Stage III Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 8 284481 -NCIT:C136784 Stage IIIA Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 9 284482 -NCIT:C136785 Stage IIIB Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 9 284483 -NCIT:C136786 Stage IV Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 8 284484 -NCIT:C136811 Retroperitoneal Sarcoma by AJCC v8 Stage 6 284485 -NCIT:C136812 Stage I Retroperitoneal Sarcoma AJCC v8 7 284486 -NCIT:C136813 Stage IA Retroperitoneal Sarcoma AJCC v8 8 284487 -NCIT:C136814 Stage IB Retroperitoneal Sarcoma AJCC v8 8 284488 -NCIT:C136815 Stage II Retroperitoneal Sarcoma AJCC v8 7 284489 -NCIT:C136816 Stage III Retroperitoneal Sarcoma AJCC v8 7 284490 -NCIT:C136817 Stage IIIA Retroperitoneal Sarcoma AJCC v8 8 284491 -NCIT:C136818 Stage IIIB Retroperitoneal Sarcoma AJCC v8 8 284492 -NCIT:C136819 Stage IV Retroperitoneal Sarcoma AJCC v8 7 284493 -NCIT:C136707 Soft Tissue Sarcoma by AJCC v7 Stage 5 284494 -NCIT:C6537 Stage I Soft Tissue Sarcoma AJCC v7 6 284495 -NCIT:C7818 Stage I Adult Soft Tissue Sarcoma AJCC v7 7 284496 -NCIT:C8569 Stage IA Adult Soft Tissue Sarcoma AJCC v7 8 284497 -NCIT:C8570 Stage IB Adult Soft Tissue Sarcoma AJCC v7 8 284498 -NCIT:C8580 Stage IB Soft Tissue Sarcoma AJCC v7 7 284499 -NCIT:C8570 Stage IB Adult Soft Tissue Sarcoma AJCC v7 8 284500 -NCIT:C8583 Stage IA Soft Tissue Sarcoma AJCC v7 7 284501 -NCIT:C8569 Stage IA Adult Soft Tissue Sarcoma AJCC v7 8 284502 -NCIT:C6538 Stage II Soft Tissue Sarcoma AJCC v7 6 284503 -NCIT:C7819 Stage II Adult Soft Tissue Sarcoma AJCC v7 7 284504 -NCIT:C8571 Stage IIA Adult Soft Tissue Sarcoma AJCC v7 8 284505 -NCIT:C8572 Stage IIB Adult Soft Tissue Sarcoma AJCC v7 8 284506 -NCIT:C8581 Stage IIA Soft Tissue Sarcoma AJCC v7 7 284507 -NCIT:C8571 Stage IIA Adult Soft Tissue Sarcoma AJCC v7 8 284508 -NCIT:C8582 Stage IIB Soft Tissue Sarcoma AJCC v7 7 284509 -NCIT:C8572 Stage IIB Adult Soft Tissue Sarcoma AJCC v7 8 284510 -NCIT:C8585 Stage III Soft Tissue Sarcoma AJCC v7 6 284511 -NCIT:C7820 Stage III Adult Soft Tissue Sarcoma AJCC v7 7 284512 -NCIT:C8586 Stage IV Soft Tissue Sarcoma AJCC v7 6 284513 -NCIT:C4243 Sarcomatosis 7 284514 -NCIT:C4334 Meningeal Sarcomatosis 8 284515 -NCIT:C7821 Stage IV Adult Soft Tissue Sarcoma AJCC v7 7 284516 -NCIT:C139001 Refractory Soft Tissue Sarcoma 5 284517 -NCIT:C142851 Refractory Rhabdomyosarcoma 6 284518 -NCIT:C142880 Refractory Alveolar Rhabdomyosarcoma 7 284519 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 7 284520 -NCIT:C148295 Refractory Undifferentiated Pleomorphic Sarcoma 6 284521 -NCIT:C148296 Refractory Synovial Sarcoma 6 284522 -NCIT:C156474 Refractory Kaposi Sarcoma 6 284523 -NCIT:C158427 Refractory Desmoplastic Small Round Cell Tumor 6 284524 -NCIT:C162722 Refractory Epithelioid Sarcoma 6 284525 -NCIT:C171168 Refractory Extraskeletal Myxoid Chondrosarcoma 6 284526 -NCIT:C180979 Refractory Clear Cell Sarcoma of Soft Tissue 6 284527 -NCIT:C185882 Refractory Malignant Gastrointestinal Stromal Tumor 6 284528 -NCIT:C187194 Refractory Childhood Soft Tissue Sarcoma 6 284529 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 7 284530 -NCIT:C188034 Refractory Alveolar Soft Part Sarcoma 6 284531 -NCIT:C139002 Recurrent Soft Tissue Sarcoma 5 284532 -NCIT:C153626 Recurrent Skin Angiosarcoma 6 284533 -NCIT:C158426 Recurrent Desmoplastic Small Round Cell Tumor 6 284534 -NCIT:C169050 Recurrent Soft Tissue Sarcoma of the Trunk and Extremities 6 284535 -NCIT:C170727 Recurrent Breast Sarcoma 6 284536 -NCIT:C133092 Recurrent Breast Angiosarcoma 7 284537 -NCIT:C180980 Recurrent Clear Cell Sarcoma of Soft Tissue 6 284538 -NCIT:C5059 Recurrent Epithelioid Sarcoma 6 284539 -NCIT:C7822 Recurrent Adult Soft Tissue Sarcoma 6 284540 -NCIT:C7935 Recurrent Kaposi Sarcoma 6 284541 -NCIT:C8067 Recurrent Childhood Soft Tissue Sarcoma 6 284542 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 7 284543 -NCIT:C8261 Recurrent Uterine Corpus Sarcoma 6 284544 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 7 284545 -NCIT:C8795 Recurrent Undifferentiated Pleomorphic Sarcoma 6 284546 -NCIT:C8798 Recurrent Alveolar Soft Part Sarcoma 6 284547 -NCIT:C8803 Recurrent Extraskeletal Ewing Sarcoma 6 284548 -NCIT:C8807 Recurrent Extraskeletal Myxoid Chondrosarcoma 6 284549 -NCIT:C8811 Recurrent Extraskeletal Osteosarcoma 6 284550 -NCIT:C8824 Recurrent Rhabdomyosarcoma 6 284551 -NCIT:C142881 Recurrent Alveolar Rhabdomyosarcoma 7 284552 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 7 284553 -NCIT:C8827 Recurrent Synovial Sarcoma 6 284554 -NCIT:C147098 Pericardial Sarcoma 5 284555 -NCIT:C147101 Pericardial Angiosarcoma 6 284556 -NCIT:C147102 Pericardial Synovial Sarcoma 6 284557 -NCIT:C153068 Unresectable Soft Tissue Sarcoma 5 284558 -NCIT:C150610 Unresectable Undifferentiated Pleomorphic Sarcoma 6 284559 -NCIT:C150741 Unresectable Malignant Gastrointestinal Stromal Tumor 6 284560 -NCIT:C151983 Unresectable Rhabdomyosarcoma 6 284561 -NCIT:C153074 Unresectable Synovial Sarcoma 6 284562 -NCIT:C153476 Locally Advanced Unresectable Soft Tissue Sarcoma 6 284563 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 7 284564 -NCIT:C164078 Unresectable Alveolar Soft Part Sarcoma 6 284565 -NCIT:C167379 Unresectable Epithelioid Sarcoma 6 284566 -NCIT:C168728 Unresectable Soft Tissue Leiomyosarcoma 6 284567 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 7 284568 -NCIT:C170826 Unresectable Desmoplastic Small Round Cell Tumor 6 284569 -NCIT:C178372 Unresectable Myxofibrosarcoma 6 284570 -NCIT:C190016 Unresectable Uterine Corpus Sarcoma 6 284571 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 7 284572 -NCIT:C153069 Metastatic Soft Tissue Sarcoma 5 284573 -NCIT:C150738 Metastatic Gastrointestinal Stromal Tumor 6 284574 -NCIT:C150739 Locally Advanced Gastrointestinal Stromal Tumor 7 284575 -NCIT:C173502 Advanced Gastrointestinal Stromal Tumor 7 284576 -NCIT:C153066 Locally Advanced Soft Tissue Sarcoma 6 284577 -NCIT:C150739 Locally Advanced Gastrointestinal Stromal Tumor 7 284578 -NCIT:C153476 Locally Advanced Unresectable Soft Tissue Sarcoma 7 284579 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 8 284580 -NCIT:C160919 Locally Advanced Undifferentiated Pleomorphic Sarcoma 7 284581 -NCIT:C164076 Locally Advanced Alveolar Soft Part Sarcoma 7 284582 -NCIT:C166415 Locally Advanced Rhabdomyosarcoma 7 284583 -NCIT:C167378 Locally Advanced Epithelioid Sarcoma 7 284584 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 7 284585 -NCIT:C171399 Locally Advanced Synovial Sarcoma 7 284586 -NCIT:C180875 Locally Advanced Desmoplastic Small Round Cell Tumor 7 284587 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 7 284588 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 284589 -NCIT:C156071 Metastatic Adult Soft Tissue Sarcoma 6 284590 -NCIT:C156475 Metastatic Kaposi Sarcoma 6 284591 -NCIT:C156476 Advanced Kaposi Sarcoma 7 284592 -NCIT:C161585 Metastatic Clear Cell Sarcoma of Soft Tissue 6 284593 -NCIT:C161586 Advanced Clear Cell Sarcoma of Soft Tissue 7 284594 -NCIT:C162194 Advanced Soft Tissue Sarcoma 6 284595 -NCIT:C153184 Advanced Synovial Sarcoma 7 284596 -NCIT:C156476 Advanced Kaposi Sarcoma 7 284597 -NCIT:C161586 Advanced Clear Cell Sarcoma of Soft Tissue 7 284598 -NCIT:C164246 Advanced Malignant PEComa 7 284599 -NCIT:C165781 Advanced Undifferentiated Pleomorphic Sarcoma 7 284600 -NCIT:C167380 Advanced Epithelioid Sarcoma 7 284601 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 7 284602 -NCIT:C171304 Advanced Myxofibrosarcoma 7 284603 -NCIT:C173502 Advanced Gastrointestinal Stromal Tumor 7 284604 -NCIT:C188198 Advanced Alveolar Soft Part Sarcoma 7 284605 -NCIT:C164245 Metastatic Malignant PEComa 6 284606 -NCIT:C164246 Advanced Malignant PEComa 7 284607 -NCIT:C164247 Locally Advanced Unresectable Malignant PEComa 7 284608 -NCIT:C166414 Metastatic Rhabdomyosarcoma 6 284609 -NCIT:C166415 Locally Advanced Rhabdomyosarcoma 7 284610 -NCIT:C183250 Metastatic Embryonal Rhabdomyosarcoma 7 284611 -NCIT:C168670 Metastatic Myxofibrosarcoma 6 284612 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 7 284613 -NCIT:C171304 Advanced Myxofibrosarcoma 7 284614 -NCIT:C168725 Metastatic Soft Tissue Leiomyosarcoma 6 284615 -NCIT:C168727 Advanced Soft Tissue Leiomyosarcoma 7 284616 -NCIT:C188205 Locally Advanced Soft Tissue Leiomyosarcoma 7 284617 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 284618 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 7 284619 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 284620 -NCIT:C170827 Metastatic Desmoplastic Small Round Cell Tumor 6 284621 -NCIT:C180875 Locally Advanced Desmoplastic Small Round Cell Tumor 7 284622 -NCIT:C190009 Metastatic Uterine Corpus Sarcoma 6 284623 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 7 284624 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 284625 -NCIT:C4926 Metastatic Undifferentiated Pleomorphic Sarcoma 6 284626 -NCIT:C160919 Locally Advanced Undifferentiated Pleomorphic Sarcoma 7 284627 -NCIT:C165781 Advanced Undifferentiated Pleomorphic Sarcoma 7 284628 -NCIT:C8066 Metastatic Childhood Soft Tissue Sarcoma 6 284629 -NCIT:C8796 Metastatic Alveolar Soft Part Sarcoma 6 284630 -NCIT:C164076 Locally Advanced Alveolar Soft Part Sarcoma 7 284631 -NCIT:C188198 Advanced Alveolar Soft Part Sarcoma 7 284632 -NCIT:C8799 Metastatic Epithelioid Sarcoma 6 284633 -NCIT:C167378 Locally Advanced Epithelioid Sarcoma 7 284634 -NCIT:C167380 Advanced Epithelioid Sarcoma 7 284635 -NCIT:C8801 Metastatic Extraskeletal Ewing Sarcoma 6 284636 -NCIT:C8804 Metastatic Extraskeletal Myxoid Chondrosarcoma 6 284637 -NCIT:C8808 Metastatic Extraskeletal Osteosarcoma 6 284638 -NCIT:C8825 Metastatic Synovial Sarcoma 6 284639 -NCIT:C153184 Advanced Synovial Sarcoma 7 284640 -NCIT:C171399 Locally Advanced Synovial Sarcoma 7 284641 -NCIT:C153086 Resectable Soft Tissue Sarcoma 5 284642 -NCIT:C150611 Resectable Undifferentiated Pleomorphic Sarcoma 6 284643 -NCIT:C156283 Scrotal Sarcoma 5 284644 -NCIT:C156282 Scrotal Liposarcoma 6 284645 -NCIT:C162493 Paratesticular Liposarcoma 5 284646 -NCIT:C162495 Paratesticular Leiomyosarcoma 5 284647 -NCIT:C161641 Seminal Vesicle Leiomyosarcoma 6 284648 -NCIT:C162497 Paratesticular Rhabdomyosarcoma 5 284649 -NCIT:C165190 Soft Tissue Sarcoma of the Trunk and Extremities 5 284650 -NCIT:C136694 Soft Tissue Sarcoma of the Trunk and Extremities by AJCC v8 Stage 6 284651 -NCIT:C136696 Stage I Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 7 284652 -NCIT:C136698 Stage IA Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 8 284653 -NCIT:C136700 Stage IB Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 8 284654 -NCIT:C136701 Stage II Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 7 284655 -NCIT:C136702 Stage III Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 7 284656 -NCIT:C136703 Stage IIIA Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 8 284657 -NCIT:C136705 Stage IIIB Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 8 284658 -NCIT:C136706 Stage IV Soft Tissue Sarcoma of the Trunk and Extremities AJCC v8 7 284659 -NCIT:C169050 Recurrent Soft Tissue Sarcoma of the Trunk and Extremities 6 284660 -NCIT:C172849 Digestive System Sarcoma 5 284661 -NCIT:C150704 EBV-Positive Inflammatory Follicular Dendritic Cell Sarcoma of the Digestive System 6 284662 -NCIT:C172951 Digestive System Leiomyosarcoma 6 284663 -NCIT:C188065 Pancreatic Leiomyosarcoma 7 284664 -NCIT:C27200 Gastric Leiomyosarcoma 7 284665 -NCIT:C5334 Esophageal Leiomyosarcoma 7 284666 -NCIT:C5599 Anal Leiomyosarcoma 7 284667 -NCIT:C5756 Liver Leiomyosarcoma 7 284668 -NCIT:C5841 Gallbladder Leiomyosarcoma 7 284669 -NCIT:C5848 Extrahepatic Bile Duct Leiomyosarcoma 7 284670 -NCIT:C7085 Small Intestinal Leiomyosarcoma 7 284671 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 8 284672 -NCIT:C96435 Appendix Leiomyosarcoma 7 284673 -NCIT:C96509 Colorectal Leiomyosarcoma 7 284674 -NCIT:C5494 Colon Leiomyosarcoma 8 284675 -NCIT:C5549 Rectal Leiomyosarcoma 8 284676 -NCIT:C172952 Digestive System Rhabdomyosarcoma 6 284677 -NCIT:C5610 Anal Rhabdomyosarcoma 7 284678 -NCIT:C5627 Rectal Rhabdomyosarcoma 7 284679 -NCIT:C5834 Liver Rhabdomyosarcoma 7 284680 -NCIT:C5839 Gallbladder Rhabdomyosarcoma 7 284681 -NCIT:C5860 Extrahepatic Bile Duct Rhabdomyosarcoma 7 284682 -NCIT:C5847 Extrahepatic Bile Duct Embryonal Rhabdomyosarcoma 8 284683 -NCIT:C95623 Esophageal Rhabdomyosarcoma 7 284684 -NCIT:C172955 Digestive System Kaposi Sarcoma 6 284685 -NCIT:C5529 Gastric Kaposi Sarcoma 7 284686 -NCIT:C5624 AIDS-Related Gastric Kaposi Sarcoma 8 284687 -NCIT:C5602 Anal Kaposi Sarcoma 7 284688 -NCIT:C5706 Esophageal Kaposi Sarcoma 7 284689 -NCIT:C5842 Gallbladder Kaposi Sarcoma 7 284690 -NCIT:C96059 Small Intestinal Kaposi Sarcoma 7 284691 -NCIT:C96434 Appendix Kaposi Sarcoma 7 284692 -NCIT:C96510 Colorectal Kaposi Sarcoma 7 284693 -NCIT:C5516 Colon Kaposi Sarcoma 8 284694 -NCIT:C5550 Rectal Kaposi Sarcoma 8 284695 -NCIT:C96844 Liver Kaposi Sarcoma 7 284696 -NCIT:C96951 Extrahepatic Bile Duct Kaposi Sarcoma 7 284697 -NCIT:C172980 Gastrointestinal Clear Cell Sarcoma/Malignant Gastrointestinal Neuroectodermal Tumor 6 284698 -NCIT:C27439 Gastric Sarcoma 6 284699 -NCIT:C27200 Gastric Leiomyosarcoma 7 284700 -NCIT:C5488 Gastric Liposarcoma 7 284701 -NCIT:C5529 Gastric Kaposi Sarcoma 7 284702 -NCIT:C5624 AIDS-Related Gastric Kaposi Sarcoma 8 284703 -NCIT:C95897 Gastric Malignant Gastrointestinal Stromal Tumor 7 284704 -NCIT:C95899 Gastric Synovial Sarcoma 7 284705 -NCIT:C4437 Liver Sarcoma 6 284706 -NCIT:C27096 Liver Embryonal Sarcoma 7 284707 -NCIT:C189934 Childhood Liver Embryonal Sarcoma 8 284708 -NCIT:C189935 Adult Liver Embryonal Sarcoma 8 284709 -NCIT:C4438 Liver Angiosarcoma 7 284710 -NCIT:C190020 Childhood Liver Angiosarcoma 8 284711 -NCIT:C5756 Liver Leiomyosarcoma 7 284712 -NCIT:C5832 Liver Fibrosarcoma 7 284713 -NCIT:C5833 Liver Extraskeletal Osteosarcoma 7 284714 -NCIT:C5834 Liver Rhabdomyosarcoma 7 284715 -NCIT:C96844 Liver Kaposi Sarcoma 7 284716 -NCIT:C96845 Liver Synovial Sarcoma 7 284717 -NCIT:C5029 Extrahepatic Bile Duct Sarcoma 6 284718 -NCIT:C5848 Extrahepatic Bile Duct Leiomyosarcoma 7 284719 -NCIT:C5860 Extrahepatic Bile Duct Rhabdomyosarcoma 7 284720 -NCIT:C5847 Extrahepatic Bile Duct Embryonal Rhabdomyosarcoma 8 284721 -NCIT:C96951 Extrahepatic Bile Duct Kaposi Sarcoma 7 284722 -NCIT:C5335 Small Intestinal Sarcoma 6 284723 -NCIT:C5336 Small Intestinal Fibrosarcoma 7 284724 -NCIT:C7085 Small Intestinal Leiomyosarcoma 7 284725 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 8 284726 -NCIT:C82972 Duodenal Extraskeletal Osteosarcoma 7 284727 -NCIT:C96059 Small Intestinal Kaposi Sarcoma 7 284728 -NCIT:C96060 Small Intestinal Angiosarcoma 7 284729 -NCIT:C5341 Esophageal Sarcoma 6 284730 -NCIT:C5334 Esophageal Leiomyosarcoma 7 284731 -NCIT:C5705 Esophageal Liposarcoma 7 284732 -NCIT:C5706 Esophageal Kaposi Sarcoma 7 284733 -NCIT:C92185 Esophageal Malignant Peripheral Nerve Sheath Tumor 7 284734 -NCIT:C95623 Esophageal Rhabdomyosarcoma 7 284735 -NCIT:C95624 Esophageal Synovial Sarcoma 7 284736 -NCIT:C5611 Anal Sarcoma 6 284737 -NCIT:C5599 Anal Leiomyosarcoma 7 284738 -NCIT:C5602 Anal Kaposi Sarcoma 7 284739 -NCIT:C5610 Anal Rhabdomyosarcoma 7 284740 -NCIT:C5715 Pancreatic Sarcoma 6 284741 -NCIT:C188065 Pancreatic Leiomyosarcoma 7 284742 -NCIT:C5736 Gallbladder Sarcoma 6 284743 -NCIT:C5839 Gallbladder Rhabdomyosarcoma 7 284744 -NCIT:C5840 Gallbladder Angiosarcoma 7 284745 -NCIT:C5841 Gallbladder Leiomyosarcoma 7 284746 -NCIT:C5842 Gallbladder Kaposi Sarcoma 7 284747 -NCIT:C96508 Colorectal Sarcoma 6 284748 -NCIT:C5495 Colon Sarcoma 7 284749 -NCIT:C156279 Colon Liposarcoma 8 284750 -NCIT:C5494 Colon Leiomyosarcoma 8 284751 -NCIT:C5516 Colon Kaposi Sarcoma 8 284752 -NCIT:C5548 Rectal Sarcoma 7 284753 -NCIT:C5549 Rectal Leiomyosarcoma 8 284754 -NCIT:C5550 Rectal Kaposi Sarcoma 8 284755 -NCIT:C5627 Rectal Rhabdomyosarcoma 8 284756 -NCIT:C96509 Colorectal Leiomyosarcoma 7 284757 -NCIT:C5494 Colon Leiomyosarcoma 8 284758 -NCIT:C5549 Rectal Leiomyosarcoma 8 284759 -NCIT:C96510 Colorectal Kaposi Sarcoma 7 284760 -NCIT:C5516 Colon Kaposi Sarcoma 8 284761 -NCIT:C5550 Rectal Kaposi Sarcoma 8 284762 -NCIT:C96511 Colorectal Angiosarcoma 7 284763 -NCIT:C173118 Sinonasal Sarcoma 5 284764 -NCIT:C164205 Biphenotypic Sinonasal Sarcoma 6 284765 -NCIT:C173120 Sinonasal Fibrosarcoma 6 284766 -NCIT:C173121 Sinonasal Undifferentiated Pleomorphic Sarcoma 6 284767 -NCIT:C173123 Sinonasal Leiomyosarcoma 6 284768 -NCIT:C173124 Sinonasal Rhabdomyosarcoma 6 284769 -NCIT:C173125 Sinonasal Angiosarcoma 6 284770 -NCIT:C173127 Sinonasal Malignant Peripheral Nerve Sheath Tumor 6 284771 -NCIT:C173128 Sinonasal Synovial Sarcoma 6 284772 -NCIT:C6849 Paranasal Sinus Sarcoma 6 284773 -NCIT:C6850 High Grade Paranasal Sinus Sarcoma 7 284774 -NCIT:C6851 Low Grade Paranasal Sinus Sarcoma 7 284775 -NCIT:C173408 Laryngeal Soft Tissue Sarcoma 5 284776 -NCIT:C6021 Laryngeal Liposarcoma 6 284777 -NCIT:C6022 Laryngeal Leiomyosarcoma 6 284778 -NCIT:C173481 Oral Cavity Soft Tissue Sarcoma 5 284779 -NCIT:C156274 Tongue Sarcoma 6 284780 -NCIT:C156273 Tongue Alveolar Soft Part Sarcoma' 7 284781 -NCIT:C173404 Tongue Liposarcoma 7 284782 -NCIT:C173477 Oral Cavity Kaposi Sarcoma 6 284783 -NCIT:C6749 Palate Kaposi Sarcoma 7 284784 -NCIT:C173478 Oral Cavity Low Grade Myofibroblastic Sarcoma 6 284785 -NCIT:C175502 Conjunctival Sarcoma 5 284786 -NCIT:C175499 Conjunctival Angiosarcoma 6 284787 -NCIT:C175500 Conjunctival Leiomyosarcoma 6 284788 -NCIT:C175501 Conjunctival Rhabdomyosarcoma 6 284789 -NCIT:C4578 Conjunctival Kaposi Sarcoma 6 284790 -NCIT:C176467 Synovial Chondrosarcoma 5 284791 -NCIT:C189240 Localized Soft Tissue Sarcoma 5 284792 -NCIT:C115292 Localized Childhood Soft Tissue Sarcoma 6 284793 -NCIT:C8065 Localized Childhood Rhabdomyosarcoma 7 284794 -NCIT:C8797 Localized Alveolar Soft Part Sarcoma 6 284795 -NCIT:C8800 Localized Epithelioid Sarcoma 6 284796 -NCIT:C8802 Localized Extraskeletal Ewing Sarcoma 6 284797 -NCIT:C8809 Localized Extraskeletal Osteosarcoma 6 284798 -NCIT:C8826 Localized Synovial Sarcoma 6 284799 -NCIT:C27502 Extraskeletal Myxoid Chondrosarcoma 5 284800 -NCIT:C171168 Refractory Extraskeletal Myxoid Chondrosarcoma 6 284801 -NCIT:C27377 Childhood Extraskeletal Myxoid Chondrosarcoma 6 284802 -NCIT:C27501 Conventional Extraskeletal Myxoid Chondrosarcoma 6 284803 -NCIT:C5462 Brain Extraskeletal Myxoid Chondrosarcoma 6 284804 -NCIT:C7924 Adult Extraskeletal Myxoid Chondrosarcoma 6 284805 -NCIT:C8804 Metastatic Extraskeletal Myxoid Chondrosarcoma 6 284806 -NCIT:C8807 Recurrent Extraskeletal Myxoid Chondrosarcoma 6 284807 -NCIT:C27707 Virus-Related Sarcoma 5 284808 -NCIT:C162305 EBV-Related Sarcoma 6 284809 -NCIT:C162306 EBV-Related Leiomyosarcoma 7 284810 -NCIT:C172847 EBV-Positive Inflammatory Follicular Dendritic Cell Sarcoma 7 284811 -NCIT:C150704 EBV-Positive Inflammatory Follicular Dendritic Cell Sarcoma of the Digestive System 8 284812 -NCIT:C9087 Kaposi Sarcoma 6 284813 -NCIT:C156474 Refractory Kaposi Sarcoma 7 284814 -NCIT:C156475 Metastatic Kaposi Sarcoma 7 284815 -NCIT:C156476 Advanced Kaposi Sarcoma 8 284816 -NCIT:C172955 Digestive System Kaposi Sarcoma 7 284817 -NCIT:C5529 Gastric Kaposi Sarcoma 8 284818 -NCIT:C5624 AIDS-Related Gastric Kaposi Sarcoma 9 284819 -NCIT:C5602 Anal Kaposi Sarcoma 8 284820 -NCIT:C5706 Esophageal Kaposi Sarcoma 8 284821 -NCIT:C5842 Gallbladder Kaposi Sarcoma 8 284822 -NCIT:C96059 Small Intestinal Kaposi Sarcoma 8 284823 -NCIT:C96434 Appendix Kaposi Sarcoma 8 284824 -NCIT:C96510 Colorectal Kaposi Sarcoma 8 284825 -NCIT:C5516 Colon Kaposi Sarcoma 9 284826 -NCIT:C5550 Rectal Kaposi Sarcoma 9 284827 -NCIT:C96844 Liver Kaposi Sarcoma 8 284828 -NCIT:C96951 Extrahepatic Bile Duct Kaposi Sarcoma 8 284829 -NCIT:C173477 Oral Cavity Kaposi Sarcoma 7 284830 -NCIT:C6749 Palate Kaposi Sarcoma 8 284831 -NCIT:C181938 Vulvar Kaposi Sarcoma 7 284832 -NCIT:C188980 Childhood Kaposi Sarcoma 7 284833 -NCIT:C27500 Lymphadenopathic Kaposi Sarcoma 7 284834 -NCIT:C3550 Skin Kaposi Sarcoma 7 284835 -NCIT:C9112 Classic Kaposi Sarcoma 8 284836 -NCIT:C3551 Lung Kaposi Sarcoma 7 284837 -NCIT:C35873 Iatrogenic Kaposi Sarcoma 7 284838 -NCIT:C9113 Kaposi Sarcoma Related to Immunosuppressive Treatment 8 284839 -NCIT:C27640 Transplant-Related Kaposi Sarcoma 9 284840 -NCIT:C35874 Endemic African Kaposi Sarcoma 7 284841 -NCIT:C3992 AIDS-Related Kaposi Sarcoma 7 284842 -NCIT:C5624 AIDS-Related Gastric Kaposi Sarcoma 8 284843 -NCIT:C7433 AIDS-Related Cervical Kaposi Sarcoma 8 284844 -NCIT:C4578 Conjunctival Kaposi Sarcoma 7 284845 -NCIT:C4579 Corneal Kaposi Sarcoma 7 284846 -NCIT:C5363 Cardiac Kaposi Sarcoma 7 284847 -NCIT:C5523 Prostate Kaposi Sarcoma 7 284848 -NCIT:C5952 Parotid Gland Kaposi Sarcoma 7 284849 -NCIT:C6377 Penile Kaposi Sarcoma 7 284850 -NCIT:C7006 Central Nervous System Kaposi Sarcoma 7 284851 -NCIT:C7935 Recurrent Kaposi Sarcoma 7 284852 -NCIT:C9413 Kaposi Sarcoma NCI Grade 2 7 284853 -NCIT:C9414 Kaposi Sarcoma NCI Grade 3 7 284854 -NCIT:C3255 Myxosarcoma 5 284855 -NCIT:C3400 Synovial Sarcoma 5 284856 -NCIT:C147102 Pericardial Synovial Sarcoma 6 284857 -NCIT:C148296 Refractory Synovial Sarcoma 6 284858 -NCIT:C153074 Unresectable Synovial Sarcoma 6 284859 -NCIT:C157737 Kidney Synovial Sarcoma 6 284860 -NCIT:C161034 Prostate Synovial Sarcoma 6 284861 -NCIT:C173128 Sinonasal Synovial Sarcoma 6 284862 -NCIT:C4279 Biphasic Synovial Sarcoma 6 284863 -NCIT:C45632 Lung Biphasic Synovial Sarcoma 7 284864 -NCIT:C45698 Pleural Biphasic Synovial Sarcoma 7 284865 -NCIT:C45757 Cardiac Biphasic Synovial Sarcoma 7 284866 -NCIT:C45631 Lung Synovial Sarcoma 6 284867 -NCIT:C45632 Lung Biphasic Synovial Sarcoma 7 284868 -NCIT:C45633 Lung Monophasic Synovial Sarcoma 7 284869 -NCIT:C45696 Pleural Synovial Sarcoma 6 284870 -NCIT:C45697 Pleural Monophasic Synovial Sarcoma 7 284871 -NCIT:C45698 Pleural Biphasic Synovial Sarcoma 7 284872 -NCIT:C45756 Cardiac Synovial Sarcoma 6 284873 -NCIT:C45757 Cardiac Biphasic Synovial Sarcoma 7 284874 -NCIT:C45758 Cardiac Monophasic Synovial Sarcoma 7 284875 -NCIT:C6534 Monophasic Synovial Sarcoma 6 284876 -NCIT:C4277 Spindle Cell Synovial Sarcoma 7 284877 -NCIT:C4278 Epithelial Synovial Sarcoma 7 284878 -NCIT:C45633 Lung Monophasic Synovial Sarcoma 7 284879 -NCIT:C45697 Pleural Monophasic Synovial Sarcoma 7 284880 -NCIT:C45758 Cardiac Monophasic Synovial Sarcoma 7 284881 -NCIT:C6618 Mediastinal Synovial Sarcoma 6 284882 -NCIT:C7817 Adult Synovial Sarcoma 6 284883 -NCIT:C8089 Childhood Synovial Sarcoma 6 284884 -NCIT:C8825 Metastatic Synovial Sarcoma 6 284885 -NCIT:C153184 Advanced Synovial Sarcoma 7 284886 -NCIT:C171399 Locally Advanced Synovial Sarcoma 7 284887 -NCIT:C8826 Localized Synovial Sarcoma 6 284888 -NCIT:C8827 Recurrent Synovial Sarcoma 6 284889 -NCIT:C95624 Esophageal Synovial Sarcoma 6 284890 -NCIT:C95899 Gastric Synovial Sarcoma 6 284891 -NCIT:C96845 Liver Synovial Sarcoma 6 284892 -NCIT:C3714 Epithelioid Sarcoma 5 284893 -NCIT:C162722 Refractory Epithelioid Sarcoma 6 284894 -NCIT:C167379 Unresectable Epithelioid Sarcoma 6 284895 -NCIT:C181971 Vulvar Epithelioid Sarcoma 6 284896 -NCIT:C181973 Vulvar Distal-Type Epithelioid Sarcoma 7 284897 -NCIT:C40319 Vulvar Proximal-Type Epithelioid Sarcoma 7 284898 -NCIT:C27472 Proximal-Type Epithelioid Sarcoma 6 284899 -NCIT:C188055 Pleural Proximal-Type Epithelioid Sarcoma 7 284900 -NCIT:C40319 Vulvar Proximal-Type Epithelioid Sarcoma 7 284901 -NCIT:C27473 Distal-Type Epithelioid Sarcoma 6 284902 -NCIT:C181973 Vulvar Distal-Type Epithelioid Sarcoma 7 284903 -NCIT:C5059 Recurrent Epithelioid Sarcoma 6 284904 -NCIT:C7944 Adult Epithelioid Sarcoma 6 284905 -NCIT:C8095 Childhood Epithelioid Sarcoma 6 284906 -NCIT:C8799 Metastatic Epithelioid Sarcoma 6 284907 -NCIT:C167378 Locally Advanced Epithelioid Sarcoma 7 284908 -NCIT:C167380 Advanced Epithelioid Sarcoma 7 284909 -NCIT:C8800 Localized Epithelioid Sarcoma 6 284910 -NCIT:C9409 Epithelioid Sarcoma NCI Grade 2 6 284911 -NCIT:C9410 Epithelioid Sarcoma NCI Grade 3 6 284912 -NCIT:C3745 Clear Cell Sarcoma of Soft Tissue 5 284913 -NCIT:C161585 Metastatic Clear Cell Sarcoma of Soft Tissue 6 284914 -NCIT:C161586 Advanced Clear Cell Sarcoma of Soft Tissue 7 284915 -NCIT:C180979 Refractory Clear Cell Sarcoma of Soft Tissue 6 284916 -NCIT:C180980 Recurrent Clear Cell Sarcoma of Soft Tissue 6 284917 -NCIT:C27370 Adult Clear Cell Sarcoma of Soft Tissue 6 284918 -NCIT:C27371 Childhood Clear Cell Sarcoma of Soft Tissue 6 284919 -NCIT:C3750 Alveolar Soft Part Sarcoma 5 284920 -NCIT:C156273 Tongue Alveolar Soft Part Sarcoma' 6 284921 -NCIT:C156276 Orbital Alveolar Soft Part Sarcoma 6 284922 -NCIT:C156277 Bladder Alveolar Soft Part Sarcoma 6 284923 -NCIT:C164078 Unresectable Alveolar Soft Part Sarcoma 6 284924 -NCIT:C173809 Lung Alveolar Soft Part Sarcoma 6 284925 -NCIT:C188034 Refractory Alveolar Soft Part Sarcoma 6 284926 -NCIT:C40225 Cervical Alveolar Soft Part Sarcoma 6 284927 -NCIT:C40320 Vulvar Alveolar Soft Part Sarcoma 6 284928 -NCIT:C7943 Adult Alveolar Soft Part Sarcoma 6 284929 -NCIT:C8092 Childhood Alveolar Soft Part Sarcoma 6 284930 -NCIT:C8796 Metastatic Alveolar Soft Part Sarcoma 6 284931 -NCIT:C164076 Locally Advanced Alveolar Soft Part Sarcoma 7 284932 -NCIT:C188198 Advanced Alveolar Soft Part Sarcoma 7 284933 -NCIT:C8797 Localized Alveolar Soft Part Sarcoma 6 284934 -NCIT:C8798 Recurrent Alveolar Soft Part Sarcoma 6 284935 -NCIT:C40128 Fallopian Tube Leiomyosarcoma 5 284936 -NCIT:C40317 Vulvar Sarcoma 5 284937 -NCIT:C176515 Vulvar Angiosarcoma 6 284938 -NCIT:C181938 Vulvar Kaposi Sarcoma 6 284939 -NCIT:C181944 Vulvar Rhabdomyosarcoma 6 284940 -NCIT:C128273 Vulvar Alveolar Rhabdomyosarcoma 7 284941 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 7 284942 -NCIT:C181971 Vulvar Epithelioid Sarcoma 6 284943 -NCIT:C181973 Vulvar Distal-Type Epithelioid Sarcoma 7 284944 -NCIT:C40319 Vulvar Proximal-Type Epithelioid Sarcoma 7 284945 -NCIT:C181977 Vulvar Ewing Sarcoma 6 284946 -NCIT:C40318 Vulvar Leiomyosarcoma 6 284947 -NCIT:C40320 Vulvar Alveolar Soft Part Sarcoma 6 284948 -NCIT:C40321 Vulvar Liposarcoma 6 284949 -NCIT:C4525 Kidney Sarcoma 5 284950 -NCIT:C154496 Anaplastic Sarcoma of the Kidney 6 284951 -NCIT:C189260 Childhood Anaplastic Sarcoma of the Kidney 7 284952 -NCIT:C157737 Kidney Synovial Sarcoma 6 284953 -NCIT:C159205 Kidney Angiosarcoma 6 284954 -NCIT:C159206 Kidney Rhabdomyosarcoma 6 284955 -NCIT:C159208 Kidney Ewing Sarcoma 6 284956 -NCIT:C189261 Childhood Kidney Ewing Sarcoma 7 284957 -NCIT:C4264 Clear Cell Sarcoma of the Kidney 6 284958 -NCIT:C6181 Kidney Extraskeletal Osteosarcoma 6 284959 -NCIT:C6183 Kidney Leiomyosarcoma 6 284960 -NCIT:C6185 Kidney Liposarcoma 6 284961 -NCIT:C7726 Kidney Fibrosarcoma 6 284962 -NCIT:C4669 Bladder Sarcoma 5 284963 -NCIT:C156277 Bladder Alveolar Soft Part Sarcoma 6 284964 -NCIT:C159667 Bladder Rhabdomyosarcoma 6 284965 -NCIT:C159668 Bladder Embryonal Rhabdomyosarcoma 7 284966 -NCIT:C159669 Bladder Alveolar Rhabdomyosarcoma 7 284967 -NCIT:C159670 Bladder Leiomyosarcoma 6 284968 -NCIT:C159671 Bladder Angiosarcoma 6 284969 -NCIT:C4670 Breast Sarcoma 5 284970 -NCIT:C170727 Recurrent Breast Sarcoma 6 284971 -NCIT:C133092 Recurrent Breast Angiosarcoma 7 284972 -NCIT:C5184 Breast Angiosarcoma 6 284973 -NCIT:C133092 Recurrent Breast Angiosarcoma 7 284974 -NCIT:C176251 Primary Breast Angiosarcoma 7 284975 -NCIT:C40378 Postradiation Breast Angiosarcoma 7 284976 -NCIT:C5185 Breast Fibrosarcoma 6 284977 -NCIT:C5186 Breast Leiomyosarcoma 6 284978 -NCIT:C5187 Breast Liposarcoma 6 284979 -NCIT:C5189 Breast Extraskeletal Osteosarcoma 6 284980 -NCIT:C5190 Breast Rhabdomyosarcoma 6 284981 -NCIT:C4832 Retroperitoneal Sarcoma 5 284982 -NCIT:C136811 Retroperitoneal Sarcoma by AJCC v8 Stage 6 284983 -NCIT:C136812 Stage I Retroperitoneal Sarcoma AJCC v8 7 284984 -NCIT:C136813 Stage IA Retroperitoneal Sarcoma AJCC v8 8 284985 -NCIT:C136814 Stage IB Retroperitoneal Sarcoma AJCC v8 8 284986 -NCIT:C136815 Stage II Retroperitoneal Sarcoma AJCC v8 7 284987 -NCIT:C136816 Stage III Retroperitoneal Sarcoma AJCC v8 7 284988 -NCIT:C136817 Stage IIIA Retroperitoneal Sarcoma AJCC v8 8 284989 -NCIT:C136818 Stage IIIB Retroperitoneal Sarcoma AJCC v8 8 284990 -NCIT:C136819 Stage IV Retroperitoneal Sarcoma AJCC v8 7 284991 -NCIT:C156956 Adrenal Gland Sarcoma 6 284992 -NCIT:C188254 Adrenal Gland Leiomyosarcoma 7 284993 -NCIT:C48320 Adrenal Gland Angiosarcoma 7 284994 -NCIT:C173808 Retroperitoneal Undifferentiated Pleomorphic Sarcoma 6 284995 -NCIT:C188071 Retroperitoneal Rhabdomyosarcoma 6 284996 -NCIT:C188073 Retroperitoneal Malignant Peripheral Nerve Sheath Tumor 6 284997 -NCIT:C27904 Retroperitoneal Leiomyosarcoma 6 284998 -NCIT:C4860 Lung Sarcoma 5 284999 -NCIT:C142825 Pulmonary Artery Intimal Sarcoma 6 285000 -NCIT:C142827 Primary Pulmonary Myxoid Sarcoma with EWSR1-CREB1 Fusion 6 285001 -NCIT:C173809 Lung Alveolar Soft Part Sarcoma 6 285002 -NCIT:C181201 Lung Rhabdomyosarcoma 6 285003 -NCIT:C188061 Lung Osteosarcoma 6 285004 -NCIT:C3551 Lung Kaposi Sarcoma 6 285005 -NCIT:C45631 Lung Synovial Sarcoma 6 285006 -NCIT:C45632 Lung Biphasic Synovial Sarcoma 7 285007 -NCIT:C45633 Lung Monophasic Synovial Sarcoma 7 285008 -NCIT:C5667 Lung Leiomyosarcoma 6 285009 -NCIT:C5153 Central Nervous System Sarcoma 5 285010 -NCIT:C129534 Central Nervous System Mesenchymal Chondrosarcoma 6 285011 -NCIT:C129566 Central Nervous System Undifferentiated Pleomorphic Sarcoma 6 285012 -NCIT:C186607 Central Nervous System CIC-Rearranged Sarcoma 6 285013 -NCIT:C186611 Central Nervous System Ewing Sarcoma 6 285014 -NCIT:C4073 Meningeal Sarcoma 6 285015 -NCIT:C4334 Meningeal Sarcomatosis 7 285016 -NCIT:C8312 Leptomeningeal Sarcoma 7 285017 -NCIT:C5152 Spinal Cord Sarcoma 6 285018 -NCIT:C5154 Brain Sarcoma 6 285019 -NCIT:C186610 Primary Intracranial Sarcoma, DICER1-Mutant 7 285020 -NCIT:C5462 Brain Extraskeletal Myxoid Chondrosarcoma 7 285021 -NCIT:C6973 Brain Liposarcoma 7 285022 -NCIT:C5450 Central Nervous System Angiosarcoma 6 285023 -NCIT:C5464 Central Nervous System Rhabdomyosarcoma 6 285024 -NCIT:C5465 Central Nervous System Fibrosarcoma 6 285025 -NCIT:C6999 Central Nervous System Leiomyosarcoma 6 285026 -NCIT:C7002 Central Nervous System Extraskeletal Osteosarcoma 6 285027 -NCIT:C7006 Central Nervous System Kaposi Sarcoma 6 285028 -NCIT:C53677 Intimal Sarcoma 5 285029 -NCIT:C142825 Pulmonary Artery Intimal Sarcoma 6 285030 -NCIT:C5585 Skin Sarcoma 5 285031 -NCIT:C172632 Skin Myxofibrosarcoma 6 285032 -NCIT:C172634 Skin Ewing Sarcoma 6 285033 -NCIT:C3550 Skin Kaposi Sarcoma 6 285034 -NCIT:C9112 Classic Kaposi Sarcoma 7 285035 -NCIT:C4489 Skin Angiosarcoma 6 285036 -NCIT:C153626 Recurrent Skin Angiosarcoma 7 285037 -NCIT:C27719 Skin Radiation-Related Angiosarcoma 7 285038 -NCIT:C40379 Angiosarcoma of the Skin of the Arm after Radical Mastectomy followed by Lymphedema 7 285039 -NCIT:C4490 Skin Lymphangiosarcoma 6 285040 -NCIT:C49025 Myxoinflammatory Fibroblastic Sarcoma 6 285041 -NCIT:C5576 Skin Undifferentiated Pleomorphic Sarcoma 6 285042 -NCIT:C5615 Skin Liposarcoma 6 285043 -NCIT:C170473 Skin Pleomorphic Liposarcoma 7 285044 -NCIT:C5983 Major Salivary Gland Sarcoma 5 285045 -NCIT:C156280 Parotid Gland Sarcoma 6 285046 -NCIT:C156281 Parotid Gland Liposarcoma 7 285047 -NCIT:C5952 Parotid Gland Kaposi Sarcoma 7 285048 -NCIT:C6041 Thyroid Gland Sarcoma 5 285049 -NCIT:C156341 Thyroid Gland Malignant Peripheral Nerve Sheath Tumor 6 285050 -NCIT:C156347 Thyroid Gland Leiomyosarcoma 6 285051 -NCIT:C6043 Thyroid Gland Angiosarcoma 6 285052 -NCIT:C6050 Tracheal Sarcoma 5 285053 -NCIT:C6095 Orbit Sarcoma 5 285054 -NCIT:C156276 Orbital Alveolar Soft Part Sarcoma 6 285055 -NCIT:C4543 Orbit Rhabdomyosarcoma 6 285056 -NCIT:C6246 Orbit Embryonal Rhabdomyosarcoma 7 285057 -NCIT:C6247 Orbit Alveolar Rhabdomyosarcoma 7 285058 -NCIT:C6339 Uterine Corpus Sarcoma 5 285059 -NCIT:C127058 Uterine Corpus Rhabdomyosarcoma 6 285060 -NCIT:C136708 Uterine Corpus Sarcoma by AJCC v7 Stage 6 285061 -NCIT:C8258 Stage I Uterine Sarcoma AJCC v7 7 285062 -NCIT:C87132 Stage IA Uterine Sarcoma AJCC v7 8 285063 -NCIT:C87133 Stage IB Uterine Sarcoma AJCC v7 8 285064 -NCIT:C87134 Stage IC Uterine Sarcoma AJCC v7 8 285065 -NCIT:C8259 Stage II Uterine Sarcoma AJCC v7 7 285066 -NCIT:C115130 Stage IIA Uterine Sarcoma AJCC v7 8 285067 -NCIT:C115131 Stage IIB Uterine Sarcoma AJCC v7 8 285068 -NCIT:C8260 Stage III Uterine Sarcoma AJCC v7 7 285069 -NCIT:C87135 Stage IIIA Uterine Sarcoma AJCC v7 8 285070 -NCIT:C87137 Stage IIIB Uterine Sarcoma AJCC v7 8 285071 -NCIT:C87138 Stage IIIC Uterine Sarcoma AJCC v7 8 285072 -NCIT:C9179 Stage IV Uterine Sarcoma AJCC v7 7 285073 -NCIT:C87140 Stage IVA Uterine Sarcoma AJCC v7 8 285074 -NCIT:C87144 Stage IVB Uterine Sarcoma AJCC v7 8 285075 -NCIT:C139869 Uterine Corpus Sarcoma by AJCC v8 Stage 6 285076 -NCIT:C139870 Uterine Corpus Leiomyosarcoma by AJCC v8 Stage 7 285077 -NCIT:C139871 Stage I Uterine Corpus Leiomyosarcoma AJCC v8 8 285078 -NCIT:C139872 Stage IA Uterine Corpus Leiomyosarcoma AJCC v8 9 285079 -NCIT:C139873 Stage IB Uterine Corpus Leiomyosarcoma AJCC v8 9 285080 -NCIT:C139874 Stage II Uterine Corpus Leiomyosarcoma AJCC v8 8 285081 -NCIT:C139875 Stage III Uterine Corpus Leiomyosarcoma AJCC v8 8 285082 -NCIT:C139876 Stage IIIA Uterine Corpus Leiomyosarcoma AJCC v8 9 285083 -NCIT:C139877 Stage IIIB Uterine Corpus Leiomyosarcoma AJCC v8 9 285084 -NCIT:C139878 Stage IIIC Uterine Corpus Leiomyosarcoma AJCC v8 9 285085 -NCIT:C139879 Stage IV Uterine Corpus Leiomyosarcoma AJCC v8 8 285086 -NCIT:C139880 Stage IVA Uterine Corpus Leiomyosarcoma AJCC v8 9 285087 -NCIT:C139881 Stage IVB Uterine Corpus Leiomyosarcoma AJCC v8 9 285088 -NCIT:C139882 Uterine Corpus Endometrial Stromal Sarcoma by AJCC v8 Stage 7 285089 -NCIT:C139883 Stage I Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 8 285090 -NCIT:C139884 Stage IA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 285091 -NCIT:C139885 Stage IB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 285092 -NCIT:C139886 Stage II Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 8 285093 -NCIT:C139887 Stage III Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 8 285094 -NCIT:C139888 Stage IIIA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 285095 -NCIT:C139889 Stage IIIB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 285096 -NCIT:C139890 Stage IIIC Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 285097 -NCIT:C139891 Stage IV Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 8 285098 -NCIT:C139892 Stage IVA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 285099 -NCIT:C139893 Stage IVB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 285100 -NCIT:C139894 Uterine Corpus Adenosarcoma by AJCC v8 Stage 7 285101 -NCIT:C139895 Stage I Uterine Corpus Adenosarcoma AJCC v8 8 285102 -NCIT:C139896 Stage IA Uterine Corpus Adenosarcoma AJCC v8 9 285103 -NCIT:C139897 Stage IB Uterine Corpus Adenosarcoma AJCC v8 9 285104 -NCIT:C139898 Stage IC Uterine Corpus Adenosarcoma AJCC v8 9 285105 -NCIT:C139899 Stage II Uterine Corpus Adenosarcoma AJCC v8 8 285106 -NCIT:C139900 Stage III Uterine Corpus Adenosarcoma AJCC v8 8 285107 -NCIT:C139901 Stage IIIA Uterine Corpus Adenosarcoma AJCC v8 9 285108 -NCIT:C139902 Stage IIIB Uterine Corpus Adenosarcoma AJCC v8 9 285109 -NCIT:C139903 Stage IIIC Uterine Corpus Adenosarcoma AJCC v8 9 285110 -NCIT:C139904 Stage IV Uterine Corpus Adenosarcoma AJCC v8 8 285111 -NCIT:C139905 Stage IVA Uterine Corpus Adenosarcoma AJCC v8 9 285112 -NCIT:C139906 Stage IVB Uterine Corpus Adenosarcoma AJCC v8 9 285113 -NCIT:C180546 Uterine Corpus Central Primitive Neuroectodermal Tumor 6 285114 -NCIT:C190009 Metastatic Uterine Corpus Sarcoma 6 285115 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 7 285116 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 285117 -NCIT:C190016 Unresectable Uterine Corpus Sarcoma 6 285118 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 7 285119 -NCIT:C40219 Uterine Corpus Endometrial Stromal Sarcoma 6 285120 -NCIT:C126998 Uterine Corpus High Grade Endometrial Stromal Sarcoma 7 285121 -NCIT:C139882 Uterine Corpus Endometrial Stromal Sarcoma by AJCC v8 Stage 7 285122 -NCIT:C139883 Stage I Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 8 285123 -NCIT:C139884 Stage IA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 285124 -NCIT:C139885 Stage IB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 285125 -NCIT:C139886 Stage II Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 8 285126 -NCIT:C139887 Stage III Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 8 285127 -NCIT:C139888 Stage IIIA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 285128 -NCIT:C139889 Stage IIIB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 285129 -NCIT:C139890 Stage IIIC Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 285130 -NCIT:C139891 Stage IV Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 8 285131 -NCIT:C139892 Stage IVA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 285132 -NCIT:C139893 Stage IVB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 285133 -NCIT:C40223 Uterine Corpus Low Grade Endometrial Stromal Sarcoma 7 285134 -NCIT:C6336 Uterine Corpus Adenosarcoma 6 285135 -NCIT:C139894 Uterine Corpus Adenosarcoma by AJCC v8 Stage 7 285136 -NCIT:C139895 Stage I Uterine Corpus Adenosarcoma AJCC v8 8 285137 -NCIT:C139896 Stage IA Uterine Corpus Adenosarcoma AJCC v8 9 285138 -NCIT:C139897 Stage IB Uterine Corpus Adenosarcoma AJCC v8 9 285139 -NCIT:C139898 Stage IC Uterine Corpus Adenosarcoma AJCC v8 9 285140 -NCIT:C139899 Stage II Uterine Corpus Adenosarcoma AJCC v8 8 285141 -NCIT:C139900 Stage III Uterine Corpus Adenosarcoma AJCC v8 8 285142 -NCIT:C139901 Stage IIIA Uterine Corpus Adenosarcoma AJCC v8 9 285143 -NCIT:C139902 Stage IIIB Uterine Corpus Adenosarcoma AJCC v8 9 285144 -NCIT:C139903 Stage IIIC Uterine Corpus Adenosarcoma AJCC v8 9 285145 -NCIT:C139904 Stage IV Uterine Corpus Adenosarcoma AJCC v8 8 285146 -NCIT:C139905 Stage IVA Uterine Corpus Adenosarcoma AJCC v8 9 285147 -NCIT:C139906 Stage IVB Uterine Corpus Adenosarcoma AJCC v8 9 285148 -NCIT:C6340 Uterine Corpus Leiomyosarcoma 6 285149 -NCIT:C139870 Uterine Corpus Leiomyosarcoma by AJCC v8 Stage 7 285150 -NCIT:C139871 Stage I Uterine Corpus Leiomyosarcoma AJCC v8 8 285151 -NCIT:C139872 Stage IA Uterine Corpus Leiomyosarcoma AJCC v8 9 285152 -NCIT:C139873 Stage IB Uterine Corpus Leiomyosarcoma AJCC v8 9 285153 -NCIT:C139874 Stage II Uterine Corpus Leiomyosarcoma AJCC v8 8 285154 -NCIT:C139875 Stage III Uterine Corpus Leiomyosarcoma AJCC v8 8 285155 -NCIT:C139876 Stage IIIA Uterine Corpus Leiomyosarcoma AJCC v8 9 285156 -NCIT:C139877 Stage IIIB Uterine Corpus Leiomyosarcoma AJCC v8 9 285157 -NCIT:C139878 Stage IIIC Uterine Corpus Leiomyosarcoma AJCC v8 9 285158 -NCIT:C139879 Stage IV Uterine Corpus Leiomyosarcoma AJCC v8 8 285159 -NCIT:C139880 Stage IVA Uterine Corpus Leiomyosarcoma AJCC v8 9 285160 -NCIT:C139881 Stage IVB Uterine Corpus Leiomyosarcoma AJCC v8 9 285161 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 7 285162 -NCIT:C188207 Metastatic Uterine Corpus Leiomyosarcoma 7 285163 -NCIT:C188208 Locally Advanced Uterine Corpus Leiomyosarcoma 8 285164 -NCIT:C188209 Unresectable Uterine Corpus Leiomyosarcoma 7 285165 -NCIT:C40174 Uterine Corpus Epithelioid Leiomyosarcoma 7 285166 -NCIT:C40175 Uterine Corpus Myxoid Leiomyosarcoma 7 285167 -NCIT:C8261 Recurrent Uterine Corpus Sarcoma 6 285168 -NCIT:C179182 Locally Recurrent Uterine Corpus Leiomyosarcoma 7 285169 -NCIT:C8972 Uterine Corpus Undifferentiated Sarcoma 6 285170 -NCIT:C6359 Testicular Sarcoma 5 285171 -NCIT:C6378 Testicular Rhabdomyosarcoma 6 285172 -NCIT:C6605 Soft Tissue Fibrosarcoma 5 285173 -NCIT:C173120 Sinonasal Fibrosarcoma 6 285174 -NCIT:C173478 Oral Cavity Low Grade Myofibroblastic Sarcoma 6 285175 -NCIT:C49025 Myxoinflammatory Fibroblastic Sarcoma 6 285176 -NCIT:C5185 Breast Fibrosarcoma 6 285177 -NCIT:C5233 Ovarian Fibrosarcoma 6 285178 -NCIT:C5336 Small Intestinal Fibrosarcoma 6 285179 -NCIT:C5361 Cardiac Fibrosarcoma 6 285180 -NCIT:C147004 Cardiac Myxofibrosarcoma 7 285181 -NCIT:C5465 Central Nervous System Fibrosarcoma 6 285182 -NCIT:C5832 Liver Fibrosarcoma 6 285183 -NCIT:C6496 Myxofibrosarcoma 6 285184 -NCIT:C147004 Cardiac Myxofibrosarcoma 7 285185 -NCIT:C168670 Metastatic Myxofibrosarcoma 7 285186 -NCIT:C168671 Locally Advanced Myxofibrosarcoma 8 285187 -NCIT:C171304 Advanced Myxofibrosarcoma 8 285188 -NCIT:C172632 Skin Myxofibrosarcoma 7 285189 -NCIT:C177414 Epithelioid Myxofibrosarcoma 7 285190 -NCIT:C178372 Unresectable Myxofibrosarcoma 7 285191 -NCIT:C7726 Kidney Fibrosarcoma 6 285192 -NCIT:C6606 Mediastinal Sarcoma 5 285193 -NCIT:C6613 Mediastinal Angiosarcoma 6 285194 -NCIT:C6614 Mediastinal Liposarcoma 6 285195 -NCIT:C95038 Thymoliposarcoma 7 285196 -NCIT:C6615 Mediastinal Extraskeletal Osteosarcoma 6 285197 -NCIT:C6617 Mediastinal Rhabdomyosarcoma 6 285198 -NCIT:C6618 Mediastinal Synovial Sarcoma 6 285199 -NCIT:C6619 Mediastinal Leiomyosarcoma 6 285200 -NCIT:C6626 Mediastinal Malignant Peripheral Nerve Sheath Tumor 6 285201 -NCIT:C6630 Malignant Melanotic Peripheral Nerve Sheath Tumor of the Mediastinum 7 285202 -NCIT:C6926 Stromal Sarcoma 5 285203 -NCIT:C53994 Undifferentiated Stromal Sarcoma 6 285204 -NCIT:C40066 Ovarian Undifferentiated Sarcoma 7 285205 -NCIT:C40224 Endocervical Undifferentiated Sarcoma 7 285206 -NCIT:C40272 Vaginal Undifferentiated Sarcoma 7 285207 -NCIT:C8972 Uterine Corpus Undifferentiated Sarcoma 7 285208 -NCIT:C53999 Malignant Gastrointestinal Stromal Tumor 6 285209 -NCIT:C136767 Gastrointestinal Stromal Tumor by AJCC v8 Stage 7 285210 -NCIT:C136768 Gastric and Omental Gastrointestinal Stromal Tumor by AJCC v8 Stage 8 285211 -NCIT:C136770 Stage I Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 9 285212 -NCIT:C136771 Stage IA Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 10 285213 -NCIT:C136772 Stage IB Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 10 285214 -NCIT:C136773 Stage II Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 9 285215 -NCIT:C136774 Stage III Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 9 285216 -NCIT:C136775 Stage IIIA Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 10 285217 -NCIT:C136777 Stage IIIB Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 10 285218 -NCIT:C136778 Stage IV Gastric and Omental Gastrointestinal Stromal Tumor AJCC v8 9 285219 -NCIT:C136769 Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor by AJCC v8 Stage 8 285220 -NCIT:C136780 Stage I Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 9 285221 -NCIT:C136781 Stage II Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 9 285222 -NCIT:C136783 Stage III Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 9 285223 -NCIT:C136784 Stage IIIA Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 10 285224 -NCIT:C136785 Stage IIIB Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 10 285225 -NCIT:C136786 Stage IV Small Intestinal, Esophageal, Colorectal, Mesenteric, and Peritoneal Gastrointestinal Stromal Tumor AJCC v8 9 285226 -NCIT:C150738 Metastatic Gastrointestinal Stromal Tumor 7 285227 -NCIT:C150739 Locally Advanced Gastrointestinal Stromal Tumor 8 285228 -NCIT:C173502 Advanced Gastrointestinal Stromal Tumor 8 285229 -NCIT:C150741 Unresectable Malignant Gastrointestinal Stromal Tumor 7 285230 -NCIT:C179932 Dedifferentiated Gastrointestinal Stromal Tumor 7 285231 -NCIT:C185882 Refractory Malignant Gastrointestinal Stromal Tumor 7 285232 -NCIT:C95897 Gastric Malignant Gastrointestinal Stromal Tumor 7 285233 -NCIT:C5524 Prostate Stromal Sarcoma 6 285234 -NCIT:C8973 Endometrioid Stromal Sarcoma 6 285235 -NCIT:C40219 Uterine Corpus Endometrial Stromal Sarcoma 7 285236 -NCIT:C126998 Uterine Corpus High Grade Endometrial Stromal Sarcoma 8 285237 -NCIT:C139882 Uterine Corpus Endometrial Stromal Sarcoma by AJCC v8 Stage 8 285238 -NCIT:C139883 Stage I Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 285239 -NCIT:C139884 Stage IA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 285240 -NCIT:C139885 Stage IB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 285241 -NCIT:C139886 Stage II Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 285242 -NCIT:C139887 Stage III Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 285243 -NCIT:C139888 Stage IIIA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 285244 -NCIT:C139889 Stage IIIB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 285245 -NCIT:C139890 Stage IIIC Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 285246 -NCIT:C139891 Stage IV Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 9 285247 -NCIT:C139892 Stage IVA Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 285248 -NCIT:C139893 Stage IVB Uterine Corpus Endometrial Stromal Sarcoma AJCC v8 10 285249 -NCIT:C40223 Uterine Corpus Low Grade Endometrial Stromal Sarcoma 8 285250 -NCIT:C4263 Low Grade Endometrioid Stromal Sarcoma 7 285251 -NCIT:C179562 Peritoneal Low Grade Endometrioid Stromal Sarcoma 8 285252 -NCIT:C40063 Ovarian Low Grade Endometrioid Stromal Sarcoma 8 285253 -NCIT:C40222 Cervical Low Grade Endometrioid Stromal Sarcoma 8 285254 -NCIT:C40223 Uterine Corpus Low Grade Endometrial Stromal Sarcoma 8 285255 -NCIT:C40271 Vaginal Low Grade Endometrioid Stromal Sarcoma 8 285256 -NCIT:C9474 Adenosarcoma 6 285257 -NCIT:C102570 Broad Ligament Adenosarcoma 7 285258 -NCIT:C40125 Fallopian Tube Adenosarcoma 7 285259 -NCIT:C40229 Cervical Adenosarcoma 7 285260 -NCIT:C40277 Vaginal Adenosarcoma 7 285261 -NCIT:C6336 Uterine Corpus Adenosarcoma 7 285262 -NCIT:C139894 Uterine Corpus Adenosarcoma by AJCC v8 Stage 8 285263 -NCIT:C139895 Stage I Uterine Corpus Adenosarcoma AJCC v8 9 285264 -NCIT:C139896 Stage IA Uterine Corpus Adenosarcoma AJCC v8 10 285265 -NCIT:C139897 Stage IB Uterine Corpus Adenosarcoma AJCC v8 10 285266 -NCIT:C139898 Stage IC Uterine Corpus Adenosarcoma AJCC v8 10 285267 -NCIT:C139899 Stage II Uterine Corpus Adenosarcoma AJCC v8 9 285268 -NCIT:C139900 Stage III Uterine Corpus Adenosarcoma AJCC v8 9 285269 -NCIT:C139901 Stage IIIA Uterine Corpus Adenosarcoma AJCC v8 10 285270 -NCIT:C139902 Stage IIIB Uterine Corpus Adenosarcoma AJCC v8 10 285271 -NCIT:C139903 Stage IIIC Uterine Corpus Adenosarcoma AJCC v8 10 285272 -NCIT:C139904 Stage IV Uterine Corpus Adenosarcoma AJCC v8 9 285273 -NCIT:C139905 Stage IVA Uterine Corpus Adenosarcoma AJCC v8 10 285274 -NCIT:C139906 Stage IVB Uterine Corpus Adenosarcoma AJCC v8 10 285275 -NCIT:C7317 Ovarian Adenosarcoma 7 285276 -NCIT:C7135 Extraskeletal Ewing Sarcoma 5 285277 -NCIT:C159208 Kidney Ewing Sarcoma 6 285278 -NCIT:C189261 Childhood Kidney Ewing Sarcoma 7 285279 -NCIT:C172634 Skin Ewing Sarcoma 6 285280 -NCIT:C181977 Vulvar Ewing Sarcoma 6 285281 -NCIT:C186611 Central Nervous System Ewing Sarcoma 6 285282 -NCIT:C8801 Metastatic Extraskeletal Ewing Sarcoma 6 285283 -NCIT:C8802 Localized Extraskeletal Ewing Sarcoma 6 285284 -NCIT:C8803 Recurrent Extraskeletal Ewing Sarcoma 6 285285 -NCIT:C7707 Adult Soft Tissue Sarcoma 5 285286 -NCIT:C114541 Adult Undifferentiated Pleomorphic Sarcoma 6 285287 -NCIT:C156071 Metastatic Adult Soft Tissue Sarcoma 6 285288 -NCIT:C189935 Adult Liver Embryonal Sarcoma 6 285289 -NCIT:C27370 Adult Clear Cell Sarcoma of Soft Tissue 6 285290 -NCIT:C27373 Adult Desmoplastic Small Round Cell Tumor 6 285291 -NCIT:C27375 Adult Mesenchymal Chondrosarcoma 6 285292 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 6 285293 -NCIT:C7817 Adult Synovial Sarcoma 6 285294 -NCIT:C7818 Stage I Adult Soft Tissue Sarcoma AJCC v7 6 285295 -NCIT:C8569 Stage IA Adult Soft Tissue Sarcoma AJCC v7 7 285296 -NCIT:C8570 Stage IB Adult Soft Tissue Sarcoma AJCC v7 7 285297 -NCIT:C7819 Stage II Adult Soft Tissue Sarcoma AJCC v7 6 285298 -NCIT:C8571 Stage IIA Adult Soft Tissue Sarcoma AJCC v7 7 285299 -NCIT:C8572 Stage IIB Adult Soft Tissue Sarcoma AJCC v7 7 285300 -NCIT:C7820 Stage III Adult Soft Tissue Sarcoma AJCC v7 6 285301 -NCIT:C7821 Stage IV Adult Soft Tissue Sarcoma AJCC v7 6 285302 -NCIT:C7822 Recurrent Adult Soft Tissue Sarcoma 6 285303 -NCIT:C7924 Adult Extraskeletal Myxoid Chondrosarcoma 6 285304 -NCIT:C7925 Adult Extraskeletal Osteosarcoma 6 285305 -NCIT:C7943 Adult Alveolar Soft Part Sarcoma 6 285306 -NCIT:C7944 Adult Epithelioid Sarcoma 6 285307 -NCIT:C7715 Childhood Soft Tissue Sarcoma 5 285308 -NCIT:C114749 Childhood Undifferentiated Pleomorphic Sarcoma 6 285309 -NCIT:C115292 Localized Childhood Soft Tissue Sarcoma 6 285310 -NCIT:C8065 Localized Childhood Rhabdomyosarcoma 7 285311 -NCIT:C187194 Refractory Childhood Soft Tissue Sarcoma 6 285312 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 7 285313 -NCIT:C188980 Childhood Kaposi Sarcoma 6 285314 -NCIT:C189260 Childhood Anaplastic Sarcoma of the Kidney 6 285315 -NCIT:C189261 Childhood Kidney Ewing Sarcoma 6 285316 -NCIT:C189934 Childhood Liver Embryonal Sarcoma 6 285317 -NCIT:C190020 Childhood Liver Angiosarcoma 6 285318 -NCIT:C27371 Childhood Clear Cell Sarcoma of Soft Tissue 6 285319 -NCIT:C27372 Childhood Desmoplastic Small Round Cell Tumor 6 285320 -NCIT:C27376 Childhood Extraskeletal Osteosarcoma 6 285321 -NCIT:C27377 Childhood Extraskeletal Myxoid Chondrosarcoma 6 285322 -NCIT:C4264 Clear Cell Sarcoma of the Kidney 6 285323 -NCIT:C7705 Childhood Rhabdomyosarcoma 6 285324 -NCIT:C123397 Childhood Spindle Cell Rhabdomyosarcoma 7 285325 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 7 285326 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 7 285327 -NCIT:C7957 Childhood Embryonal Rhabdomyosarcoma 7 285328 -NCIT:C35574 Childhood Botryoid-Type Embryonal Rhabdomyosarcoma 8 285329 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 9 285330 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 9 285331 -NCIT:C7958 Childhood Alveolar Rhabdomyosarcoma 7 285332 -NCIT:C7959 Childhood Pleomorphic Rhabdomyosarcoma 7 285333 -NCIT:C7960 Childhood Rhabdomyosarcoma with Mixed Embryonal and Alveolar Features 7 285334 -NCIT:C8065 Localized Childhood Rhabdomyosarcoma 7 285335 -NCIT:C8066 Metastatic Childhood Soft Tissue Sarcoma 6 285336 -NCIT:C8067 Recurrent Childhood Soft Tissue Sarcoma 6 285337 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 7 285338 -NCIT:C8089 Childhood Synovial Sarcoma 6 285339 -NCIT:C8092 Childhood Alveolar Soft Part Sarcoma 6 285340 -NCIT:C8093 Childhood Leiomyosarcoma 6 285341 -NCIT:C123932 Childhood Small Intestinal Leiomyosarcoma 7 285342 -NCIT:C8095 Childhood Epithelioid Sarcoma 6 285343 -NCIT:C7723 Cardiac Sarcoma 5 285344 -NCIT:C147003 Cardiac Extraskeletal Osteosarcoma 6 285345 -NCIT:C147097 Cardiac Angiosarcoma 6 285346 -NCIT:C45755 Cardiac Undifferentiated Pleomorphic Sarcoma 6 285347 -NCIT:C45756 Cardiac Synovial Sarcoma 6 285348 -NCIT:C45757 Cardiac Biphasic Synovial Sarcoma 7 285349 -NCIT:C45758 Cardiac Monophasic Synovial Sarcoma 7 285350 -NCIT:C45759 Cardiac Rhabdomyosarcoma 6 285351 -NCIT:C5361 Cardiac Fibrosarcoma 6 285352 -NCIT:C147004 Cardiac Myxofibrosarcoma 7 285353 -NCIT:C5363 Cardiac Kaposi Sarcoma 6 285354 -NCIT:C5364 Cardiac Leiomyosarcoma 6 285355 -NCIT:C5367 Cardiac Malignant Peripheral Nerve Sheath Tumor 6 285356 -NCIT:C7730 Penile Sarcoma 5 285357 -NCIT:C162578 Penile Angiosarcoma 6 285358 -NCIT:C162584 Penile Malignant Peripheral Nerve Sheath Tumor 6 285359 -NCIT:C162585 Penile Leiomyosarcoma 6 285360 -NCIT:C162588 Penile Rhabdomyosarcoma 6 285361 -NCIT:C162589 Penile Undifferentiated Pleomorphic Sarcoma 6 285362 -NCIT:C6377 Penile Kaposi Sarcoma 6 285363 -NCIT:C7731 Prostate Sarcoma 5 285364 -NCIT:C161034 Prostate Synovial Sarcoma 6 285365 -NCIT:C161035 Prostate Osteosarcoma 6 285366 -NCIT:C161038 Prostate Undifferentiated Pleomorphic Sarcoma 6 285367 -NCIT:C5522 Prostate Rhabdomyosarcoma 6 285368 -NCIT:C188070 Prostate Alveolar Rhabdomyosarcoma 7 285369 -NCIT:C5525 Prostate Embryonal Rhabdomyosarcoma 7 285370 -NCIT:C5523 Prostate Kaposi Sarcoma 6 285371 -NCIT:C5524 Prostate Stromal Sarcoma 6 285372 -NCIT:C5526 Prostate Leiomyosarcoma 6 285373 -NCIT:C5528 Prostate Angiosarcoma 6 285374 -NCIT:C7737 Vaginal Sarcoma 5 285375 -NCIT:C128080 Vaginal Rhabdomyosarcoma 6 285376 -NCIT:C40268 Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 7 285377 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 8 285378 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 8 285379 -NCIT:C40271 Vaginal Low Grade Endometrioid Stromal Sarcoma 6 285380 -NCIT:C40272 Vaginal Undifferentiated Sarcoma 6 285381 -NCIT:C40277 Vaginal Adenosarcoma 6 285382 -NCIT:C6326 Vaginal Leiomyosarcoma 6 285383 -NCIT:C8267 Ovarian Sarcoma 5 285384 -NCIT:C40063 Ovarian Low Grade Endometrioid Stromal Sarcoma 6 285385 -NCIT:C40066 Ovarian Undifferentiated Sarcoma 6 285386 -NCIT:C5232 Ovarian Angiosarcoma 6 285387 -NCIT:C5233 Ovarian Fibrosarcoma 6 285388 -NCIT:C5234 Ovarian Leiomyosarcoma 6 285389 -NCIT:C5236 Ovarian Rhabdomyosarcoma 6 285390 -NCIT:C6419 Ovarian Liposarcoma 6 285391 -NCIT:C5235 Ovarian Myxoid Liposarcoma 7 285392 -NCIT:C7317 Ovarian Adenosarcoma 6 285393 -NCIT:C8300 Desmoplastic Small Round Cell Tumor 5 285394 -NCIT:C126356 Peritoneal Desmoplastic Small Round Cell Tumor 6 285395 -NCIT:C158426 Recurrent Desmoplastic Small Round Cell Tumor 6 285396 -NCIT:C158427 Refractory Desmoplastic Small Round Cell Tumor 6 285397 -NCIT:C170826 Unresectable Desmoplastic Small Round Cell Tumor 6 285398 -NCIT:C170827 Metastatic Desmoplastic Small Round Cell Tumor 6 285399 -NCIT:C180875 Locally Advanced Desmoplastic Small Round Cell Tumor 7 285400 -NCIT:C27372 Childhood Desmoplastic Small Round Cell Tumor 6 285401 -NCIT:C27373 Adult Desmoplastic Small Round Cell Tumor 6 285402 -NCIT:C8810 Extraskeletal Osteosarcoma 5 285403 -NCIT:C147003 Cardiac Extraskeletal Osteosarcoma 6 285404 -NCIT:C161035 Prostate Osteosarcoma 6 285405 -NCIT:C188061 Lung Osteosarcoma 6 285406 -NCIT:C27376 Childhood Extraskeletal Osteosarcoma 6 285407 -NCIT:C5189 Breast Extraskeletal Osteosarcoma 6 285408 -NCIT:C5833 Liver Extraskeletal Osteosarcoma 6 285409 -NCIT:C6181 Kidney Extraskeletal Osteosarcoma 6 285410 -NCIT:C6615 Mediastinal Extraskeletal Osteosarcoma 6 285411 -NCIT:C7002 Central Nervous System Extraskeletal Osteosarcoma 6 285412 -NCIT:C7925 Adult Extraskeletal Osteosarcoma 6 285413 -NCIT:C82972 Duodenal Extraskeletal Osteosarcoma 6 285414 -NCIT:C8808 Metastatic Extraskeletal Osteosarcoma 6 285415 -NCIT:C8809 Localized Extraskeletal Osteosarcoma 6 285416 -NCIT:C8811 Recurrent Extraskeletal Osteosarcoma 6 285417 -NCIT:C9312 Bone Sarcoma 4 285418 -NCIT:C136632 Bone Sarcoma by AJCC v7 Stage 5 285419 -NCIT:C136633 Osteosarcoma by AJCC v7 Stage 6 285420 -NCIT:C6612 Stage III Osteosarcoma AJCC v7 7 285421 -NCIT:C6701 Stage IV Osteosarcoma AJCC v7 7 285422 -NCIT:C6702 Stage IVA Osteosarcoma AJCC v7 8 285423 -NCIT:C6703 Stage IVB Osteosarcoma AJCC v7 8 285424 -NCIT:C6709 Stage I Osteosarcoma AJCC v7 7 285425 -NCIT:C6607 Stage IA Osteosarcoma AJCC v7 8 285426 -NCIT:C6609 Stage IB Osteosarcoma AJCC v7 8 285427 -NCIT:C6710 Stage II Osteosarcoma AJCC v7 7 285428 -NCIT:C6610 Stage IIA Osteosarcoma AJCC v7 8 285429 -NCIT:C6611 Stage IIB Osteosarcoma AJCC v7 8 285430 -NCIT:C6468 Stage III Bone Sarcoma AJCC v7 6 285431 -NCIT:C6612 Stage III Osteosarcoma AJCC v7 7 285432 -NCIT:C6704 Stage I Bone Sarcoma AJCC v7 6 285433 -NCIT:C6464 Stage IA Bone Sarcoma AJCC v7 7 285434 -NCIT:C6607 Stage IA Osteosarcoma AJCC v7 8 285435 -NCIT:C6465 Stage IB Bone Sarcoma AJCC v7 7 285436 -NCIT:C6609 Stage IB Osteosarcoma AJCC v7 8 285437 -NCIT:C6709 Stage I Osteosarcoma AJCC v7 7 285438 -NCIT:C6607 Stage IA Osteosarcoma AJCC v7 8 285439 -NCIT:C6609 Stage IB Osteosarcoma AJCC v7 8 285440 -NCIT:C6705 Stage II Bone Sarcoma AJCC v7 6 285441 -NCIT:C6466 Stage IIB Bone Sarcoma AJCC v7 7 285442 -NCIT:C6611 Stage IIB Osteosarcoma AJCC v7 8 285443 -NCIT:C6467 Stage IIA Bone Sarcoma AJCC v7 7 285444 -NCIT:C6610 Stage IIA Osteosarcoma AJCC v7 8 285445 -NCIT:C6710 Stage II Osteosarcoma AJCC v7 7 285446 -NCIT:C6610 Stage IIA Osteosarcoma AJCC v7 8 285447 -NCIT:C6611 Stage IIB Osteosarcoma AJCC v7 8 285448 -NCIT:C6706 Stage IV Bone Sarcoma AJCC v7 6 285449 -NCIT:C6701 Stage IV Osteosarcoma AJCC v7 7 285450 -NCIT:C6702 Stage IVA Osteosarcoma AJCC v7 8 285451 -NCIT:C6703 Stage IVB Osteosarcoma AJCC v7 8 285452 -NCIT:C6707 Stage IVA Bone Sarcoma AJCC v7 7 285453 -NCIT:C6702 Stage IVA Osteosarcoma AJCC v7 8 285454 -NCIT:C6708 Stage IVB Bone Sarcoma AJCC v7 7 285455 -NCIT:C6703 Stage IVB Osteosarcoma AJCC v7 8 285456 -NCIT:C153072 Unresectable Bone Sarcoma 5 285457 -NCIT:C153475 Locally Advanced Unresectable Bone Sarcoma 6 285458 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 7 285459 -NCIT:C171070 Unresectable Primary Central Chondrosarcoma 6 285460 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 7 285461 -NCIT:C153073 Metastatic Bone Sarcoma 5 285462 -NCIT:C153070 Locally Advanced Bone Sarcoma 6 285463 -NCIT:C153475 Locally Advanced Unresectable Bone Sarcoma 7 285464 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 8 285465 -NCIT:C162762 Advanced Bone Sarcoma 6 285466 -NCIT:C171072 Metastatic Primary Central Chondrosarcoma 6 285467 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 7 285468 -NCIT:C38157 Metachronous Osteosarcoma 6 285469 -NCIT:C6621 Metastatic Bone Ewing Sarcoma 6 285470 -NCIT:C173841 Maxillofacial Sarcoma 5 285471 -NCIT:C173842 Maxillofacial Chondrosarcoma 6 285472 -NCIT:C173843 Maxillofacial Mesenchymal Chondrosarcoma 7 285473 -NCIT:C173844 Maxillofacial Osteosarcoma 6 285474 -NCIT:C188064 Bone Malignant Peripheral Nerve Sheath Tumor 5 285475 -NCIT:C189017 Childhood Bone Sarcoma 5 285476 -NCIT:C114750 Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 6 285477 -NCIT:C115368 Recurrent Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 7 285478 -NCIT:C115998 Localized Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 7 285479 -NCIT:C189022 Childhood Bone Osteosarcoma 6 285480 -NCIT:C123398 Childhood Periosteal Osteosarcoma 7 285481 -NCIT:C6589 Childhood Parosteal Osteosarcoma 7 285482 -NCIT:C6590 Childhood Conventional Osteosarcoma 7 285483 -NCIT:C189026 Childhood Primary Central Chondrosarcoma 6 285484 -NCIT:C27482 Secondary Chondrosarcoma 5 285485 -NCIT:C121881 Secondary Central Chondrosarcoma 6 285486 -NCIT:C178477 Secondary Central Atypical Cartilaginous Tumor/Chondrosarcoma, Grade 1 7 285487 -NCIT:C121882 Secondary Peripheral Chondrosarcoma 6 285488 -NCIT:C178481 Secondary Peripheral Chondrosarcoma, Grade 1 7 285489 -NCIT:C178492 Secondary Peripheral Chondrosarcoma, Grade 2 7 285490 -NCIT:C178494 Secondary Peripheral Chondrosarcoma, Grade 3 7 285491 -NCIT:C4304 Malignancy in Giant Cell Tumor of Bone 5 285492 -NCIT:C4835 Ewing Sarcoma of Bone 5 285493 -NCIT:C6621 Metastatic Bone Ewing Sarcoma 6 285494 -NCIT:C6622 Recurrent Bone Ewing Sarcoma 6 285495 -NCIT:C6623 Localized Bone Ewing Sarcoma 6 285496 -NCIT:C53493 Mesenchymal Chondrosarcoma of Bone 5 285497 -NCIT:C173843 Maxillofacial Mesenchymal Chondrosarcoma 6 285498 -NCIT:C53707 Bone Osteosarcoma 5 285499 -NCIT:C173844 Maxillofacial Osteosarcoma 6 285500 -NCIT:C189022 Childhood Bone Osteosarcoma 6 285501 -NCIT:C123398 Childhood Periosteal Osteosarcoma 7 285502 -NCIT:C6589 Childhood Parosteal Osteosarcoma 7 285503 -NCIT:C6590 Childhood Conventional Osteosarcoma 7 285504 -NCIT:C38157 Metachronous Osteosarcoma 6 285505 -NCIT:C4834 Primary Bone Osteosarcoma 6 285506 -NCIT:C136633 Osteosarcoma by AJCC v7 Stage 7 285507 -NCIT:C6612 Stage III Osteosarcoma AJCC v7 8 285508 -NCIT:C6701 Stage IV Osteosarcoma AJCC v7 8 285509 -NCIT:C6702 Stage IVA Osteosarcoma AJCC v7 9 285510 -NCIT:C6703 Stage IVB Osteosarcoma AJCC v7 9 285511 -NCIT:C6709 Stage I Osteosarcoma AJCC v7 8 285512 -NCIT:C6607 Stage IA Osteosarcoma AJCC v7 9 285513 -NCIT:C6609 Stage IB Osteosarcoma AJCC v7 9 285514 -NCIT:C6710 Stage II Osteosarcoma AJCC v7 8 285515 -NCIT:C6610 Stage IIA Osteosarcoma AJCC v7 9 285516 -NCIT:C6611 Stage IIB Osteosarcoma AJCC v7 9 285517 -NCIT:C35870 Conventional Osteosarcoma 7 285518 -NCIT:C179410 Giant Cell-Rich Osteosarcoma 8 285519 -NCIT:C4020 Fibroblastic Osteosarcoma 8 285520 -NCIT:C4021 Chondroblastic Osteosarcoma 8 285521 -NCIT:C53953 Osteoblastic Osteosarcoma 8 285522 -NCIT:C6590 Childhood Conventional Osteosarcoma 8 285523 -NCIT:C3902 Telangiectatic Osteosarcoma 7 285524 -NCIT:C4023 Small Cell Osteosarcoma 7 285525 -NCIT:C6470 Multifocal Osteosarcoma 7 285526 -NCIT:C6471 Synchronous Multifocal Osteosarcoma 8 285527 -NCIT:C6472 Asynchronous Multifocal Osteosarcoma 8 285528 -NCIT:C6474 Low Grade Central Osteosarcoma 7 285529 -NCIT:C7134 Bone Surface (Peripheral) Osteosarcoma 7 285530 -NCIT:C53958 High Grade Surface Osteosarcoma 8 285531 -NCIT:C8969 Parosteal Osteosarcoma 8 285532 -NCIT:C6589 Childhood Parosteal Osteosarcoma 9 285533 -NCIT:C8970 Periosteal Osteosarcoma 8 285534 -NCIT:C123398 Childhood Periosteal Osteosarcoma 9 285535 -NCIT:C53704 Secondary Osteosarcoma 6 285536 -NCIT:C53706 Radiation-Related Osteosarcoma 7 285537 -NCIT:C6469 Osteosarcoma Arising in Paget Disease of Bone 7 285538 -NCIT:C6475 Clear Cell Chondrosarcoma 5 285539 -NCIT:C6476 Dedifferentiated Chondrosarcoma 5 285540 -NCIT:C6479 Bone Angiosarcoma 5 285541 -NCIT:C6604 Bone Fibrosarcoma 5 285542 -NCIT:C7154 Bone Leiomyosarcoma 5 285543 -NCIT:C7155 Primary Central Chondrosarcoma 5 285544 -NCIT:C171070 Unresectable Primary Central Chondrosarcoma 6 285545 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 7 285546 -NCIT:C171072 Metastatic Primary Central Chondrosarcoma 6 285547 -NCIT:C176728 Locally Advanced Unresectable Primary Central Chondrosarcoma 7 285548 -NCIT:C178476 Primary Central Atypical Cartilaginous Tumor/Chondrosarcoma, Grade 1 6 285549 -NCIT:C189026 Childhood Primary Central Chondrosarcoma 6 285550 -NCIT:C7357 Periosteal Chondrosarcoma 5 285551 -NCIT:C7598 Bone Liposarcoma 5 285552 -NCIT:C8563 Undifferentiated High Grade Pleomorphic Sarcoma of Bone 5 285553 -NCIT:C114750 Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 6 285554 -NCIT:C115368 Recurrent Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 7 285555 -NCIT:C115998 Localized Childhood Undifferentiated High Grade Pleomorphic Sarcoma of Bone 7 285556 -NCIT:C114782 Adult Undifferentiated High Grade Pleomorphic Sarcoma of Bone 6 285557 -NCIT:C115351 Recurrent Adult Undifferentiated High Grade Pleomorphic Sarcoma of Bone 7 285558 -NCIT:C115997 Localized Adult Undifferentiated High Grade Pleomorphic Sarcoma of Bone 7 285559 -NCIT:C151984 Pelvic Undifferentiated High Grade Pleomorphic Sarcoma 6 285560 -NCIT:C93125 Radiation-Related Sarcoma 4 285561 -NCIT:C27513 Radiation-Related Angiosarcoma 5 285562 -NCIT:C27719 Skin Radiation-Related Angiosarcoma 6 285563 -NCIT:C53706 Radiation-Related Osteosarcoma 5 285564 -NCIT:C9387 Sarcoma by NCI Grade 4 285565 -NCIT:C9388 Sarcoma NCI Grade 1 5 285566 -NCIT:C9025 Well Differentiated Fibrosarcoma 6 285567 -NCIT:C9389 Well Differentiated Leiomyosarcoma 6 285568 -NCIT:C9400 Sarcoma NCI Grade 2 5 285569 -NCIT:C9391 Leiomyosarcoma NCI Grade 2 6 285570 -NCIT:C9409 Epithelioid Sarcoma NCI Grade 2 6 285571 -NCIT:C9411 Angiosarcoma NCI Grade 2 6 285572 -NCIT:C9413 Kaposi Sarcoma NCI Grade 2 6 285573 -NCIT:C9415 Sarcoma NCI Grade 3 5 285574 -NCIT:C3359 Rhabdomyosarcoma 6 285575 -NCIT:C121654 Spindle Cell/Sclerosing Rhabdomyosarcoma 7 285576 -NCIT:C121655 Sclerosing Rhabdomyosarcoma 8 285577 -NCIT:C178235 MYOD1-Mutant Spindle Cell/Sclerosing Rhabdomyosarcoma 8 285578 -NCIT:C6519 Spindle Cell Rhabdomyosarcoma 8 285579 -NCIT:C123397 Childhood Spindle Cell Rhabdomyosarcoma 9 285580 -NCIT:C178232 Congenital/Infantile Spindle Cell Rhabdomyosarcoma with VGLL2/NCOA2/CITED2 Rearrangements 9 285581 -NCIT:C178236 Intraosseous Spindle Cell Rhabdomyosarcoma with TFCP2/NCOA2 Rearrangements 9 285582 -NCIT:C123735 Fusion-Positive Rhabdomyosarcoma 7 285583 -NCIT:C123731 Fusion-Positive Alveolar Rhabdomyosarcoma 8 285584 -NCIT:C123736 Fusion-Negative Rhabdomyosarcoma 7 285585 -NCIT:C123732 Fusion-Negative Alveolar Rhabdomyosarcoma 8 285586 -NCIT:C127058 Uterine Corpus Rhabdomyosarcoma 7 285587 -NCIT:C128048 Cervical Rhabdomyosarcoma 7 285588 -NCIT:C128080 Vaginal Rhabdomyosarcoma 7 285589 -NCIT:C40268 Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 8 285590 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 9 285591 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 9 285592 -NCIT:C142851 Refractory Rhabdomyosarcoma 7 285593 -NCIT:C142880 Refractory Alveolar Rhabdomyosarcoma 8 285594 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 8 285595 -NCIT:C151981 Pelvic Rhabdomyosarcoma 7 285596 -NCIT:C151982 Abdominal Rhabdomyosarcoma 7 285597 -NCIT:C151983 Unresectable Rhabdomyosarcoma 7 285598 -NCIT:C159206 Kidney Rhabdomyosarcoma 7 285599 -NCIT:C159667 Bladder Rhabdomyosarcoma 7 285600 -NCIT:C159668 Bladder Embryonal Rhabdomyosarcoma 8 285601 -NCIT:C159669 Bladder Alveolar Rhabdomyosarcoma 8 285602 -NCIT:C162497 Paratesticular Rhabdomyosarcoma 7 285603 -NCIT:C162588 Penile Rhabdomyosarcoma 7 285604 -NCIT:C166414 Metastatic Rhabdomyosarcoma 7 285605 -NCIT:C166415 Locally Advanced Rhabdomyosarcoma 8 285606 -NCIT:C183250 Metastatic Embryonal Rhabdomyosarcoma 8 285607 -NCIT:C172952 Digestive System Rhabdomyosarcoma 7 285608 -NCIT:C5610 Anal Rhabdomyosarcoma 8 285609 -NCIT:C5627 Rectal Rhabdomyosarcoma 8 285610 -NCIT:C5834 Liver Rhabdomyosarcoma 8 285611 -NCIT:C5839 Gallbladder Rhabdomyosarcoma 8 285612 -NCIT:C5860 Extrahepatic Bile Duct Rhabdomyosarcoma 8 285613 -NCIT:C5847 Extrahepatic Bile Duct Embryonal Rhabdomyosarcoma 9 285614 -NCIT:C95623 Esophageal Rhabdomyosarcoma 8 285615 -NCIT:C173124 Sinonasal Rhabdomyosarcoma 7 285616 -NCIT:C175501 Conjunctival Rhabdomyosarcoma 7 285617 -NCIT:C181201 Lung Rhabdomyosarcoma 7 285618 -NCIT:C181944 Vulvar Rhabdomyosarcoma 7 285619 -NCIT:C128273 Vulvar Alveolar Rhabdomyosarcoma 8 285620 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 8 285621 -NCIT:C188071 Retroperitoneal Rhabdomyosarcoma 7 285622 -NCIT:C3749 Alveolar Rhabdomyosarcoma 7 285623 -NCIT:C123731 Fusion-Positive Alveolar Rhabdomyosarcoma 8 285624 -NCIT:C123732 Fusion-Negative Alveolar Rhabdomyosarcoma 8 285625 -NCIT:C128273 Vulvar Alveolar Rhabdomyosarcoma 8 285626 -NCIT:C142880 Refractory Alveolar Rhabdomyosarcoma 8 285627 -NCIT:C142881 Recurrent Alveolar Rhabdomyosarcoma 8 285628 -NCIT:C159669 Bladder Alveolar Rhabdomyosarcoma 8 285629 -NCIT:C188070 Prostate Alveolar Rhabdomyosarcoma 8 285630 -NCIT:C27492 Conventional Alveolar Rhabdomyosarcoma 8 285631 -NCIT:C27493 Solid Alveolar Rhabdomyosarcoma 8 285632 -NCIT:C6247 Orbit Alveolar Rhabdomyosarcoma 8 285633 -NCIT:C7958 Childhood Alveolar Rhabdomyosarcoma 8 285634 -NCIT:C4258 Pleomorphic Rhabdomyosarcoma 7 285635 -NCIT:C27369 Adult Pleomorphic Rhabdomyosarcoma 8 285636 -NCIT:C7959 Childhood Pleomorphic Rhabdomyosarcoma 8 285637 -NCIT:C4259 Rhabdomyosarcoma with Mixed Embryonal and Alveolar Features 7 285638 -NCIT:C7960 Childhood Rhabdomyosarcoma with Mixed Embryonal and Alveolar Features 8 285639 -NCIT:C4543 Orbit Rhabdomyosarcoma 7 285640 -NCIT:C6246 Orbit Embryonal Rhabdomyosarcoma 8 285641 -NCIT:C6247 Orbit Alveolar Rhabdomyosarcoma 8 285642 -NCIT:C45759 Cardiac Rhabdomyosarcoma 7 285643 -NCIT:C5190 Breast Rhabdomyosarcoma 7 285644 -NCIT:C5236 Ovarian Rhabdomyosarcoma 7 285645 -NCIT:C5464 Central Nervous System Rhabdomyosarcoma 7 285646 -NCIT:C5522 Prostate Rhabdomyosarcoma 7 285647 -NCIT:C188070 Prostate Alveolar Rhabdomyosarcoma 8 285648 -NCIT:C5525 Prostate Embryonal Rhabdomyosarcoma 8 285649 -NCIT:C6378 Testicular Rhabdomyosarcoma 7 285650 -NCIT:C6617 Mediastinal Rhabdomyosarcoma 7 285651 -NCIT:C7705 Childhood Rhabdomyosarcoma 7 285652 -NCIT:C123397 Childhood Spindle Cell Rhabdomyosarcoma 8 285653 -NCIT:C187193 Refractory Childhood Rhabdomyosarcoma 8 285654 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 8 285655 -NCIT:C7957 Childhood Embryonal Rhabdomyosarcoma 8 285656 -NCIT:C35574 Childhood Botryoid-Type Embryonal Rhabdomyosarcoma 9 285657 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 285658 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 10 285659 -NCIT:C7958 Childhood Alveolar Rhabdomyosarcoma 8 285660 -NCIT:C7959 Childhood Pleomorphic Rhabdomyosarcoma 8 285661 -NCIT:C7960 Childhood Rhabdomyosarcoma with Mixed Embryonal and Alveolar Features 8 285662 -NCIT:C8065 Localized Childhood Rhabdomyosarcoma 8 285663 -NCIT:C8824 Recurrent Rhabdomyosarcoma 7 285664 -NCIT:C142881 Recurrent Alveolar Rhabdomyosarcoma 8 285665 -NCIT:C7815 Recurrent Childhood Rhabdomyosarcoma 8 285666 -NCIT:C8971 Embryonal Rhabdomyosarcoma 7 285667 -NCIT:C159668 Bladder Embryonal Rhabdomyosarcoma 8 285668 -NCIT:C183250 Metastatic Embryonal Rhabdomyosarcoma 8 285669 -NCIT:C188115 Middle Ear Embryonal Rhabdomyosarcoma 8 285670 -NCIT:C49204 Anaplastic Embryonal Rhabdomyosarcoma 8 285671 -NCIT:C5525 Prostate Embryonal Rhabdomyosarcoma 8 285672 -NCIT:C5847 Extrahepatic Bile Duct Embryonal Rhabdomyosarcoma 8 285673 -NCIT:C6246 Orbit Embryonal Rhabdomyosarcoma 8 285674 -NCIT:C7957 Childhood Embryonal Rhabdomyosarcoma 8 285675 -NCIT:C35574 Childhood Botryoid-Type Embryonal Rhabdomyosarcoma 9 285676 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 285677 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 10 285678 -NCIT:C9150 Botryoid-Type Embryonal Rhabdomyosarcoma 8 285679 -NCIT:C35574 Childhood Botryoid-Type Embryonal Rhabdomyosarcoma 9 285680 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 285681 -NCIT:C36098 Childhood Vulvar Botryoid-Type Embryonal Rhabdomyosarcoma 10 285682 -NCIT:C36099 Adult Botryoid-Type Embryonal Rhabdomyosarcoma 9 285683 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 285684 -NCIT:C40268 Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 9 285685 -NCIT:C35556 Childhood Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 285686 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 10 285687 -NCIT:C9130 Adult Rhabdomyosarcoma 7 285688 -NCIT:C27369 Adult Pleomorphic Rhabdomyosarcoma 8 285689 -NCIT:C36099 Adult Botryoid-Type Embryonal Rhabdomyosarcoma 8 285690 -NCIT:C40267 Adult Vaginal Botryoid-Type Embryonal Rhabdomyosarcoma 9 285691 -NCIT:C3400 Synovial Sarcoma 6 285692 -NCIT:C147102 Pericardial Synovial Sarcoma 7 285693 -NCIT:C148296 Refractory Synovial Sarcoma 7 285694 -NCIT:C153074 Unresectable Synovial Sarcoma 7 285695 -NCIT:C157737 Kidney Synovial Sarcoma 7 285696 -NCIT:C161034 Prostate Synovial Sarcoma 7 285697 -NCIT:C173128 Sinonasal Synovial Sarcoma 7 285698 -NCIT:C4279 Biphasic Synovial Sarcoma 7 285699 -NCIT:C45632 Lung Biphasic Synovial Sarcoma 8 285700 -NCIT:C45698 Pleural Biphasic Synovial Sarcoma 8 285701 -NCIT:C45757 Cardiac Biphasic Synovial Sarcoma 8 285702 -NCIT:C45631 Lung Synovial Sarcoma 7 285703 -NCIT:C45632 Lung Biphasic Synovial Sarcoma 8 285704 -NCIT:C45633 Lung Monophasic Synovial Sarcoma 8 285705 -NCIT:C45696 Pleural Synovial Sarcoma 7 285706 -NCIT:C45697 Pleural Monophasic Synovial Sarcoma 8 285707 -NCIT:C45698 Pleural Biphasic Synovial Sarcoma 8 285708 -NCIT:C45756 Cardiac Synovial Sarcoma 7 285709 -NCIT:C45757 Cardiac Biphasic Synovial Sarcoma 8 285710 -NCIT:C45758 Cardiac Monophasic Synovial Sarcoma 8 285711 -NCIT:C6534 Monophasic Synovial Sarcoma 7 285712 -NCIT:C4277 Spindle Cell Synovial Sarcoma 8 285713 -NCIT:C4278 Epithelial Synovial Sarcoma 8 285714 -NCIT:C45633 Lung Monophasic Synovial Sarcoma 8 285715 -NCIT:C45697 Pleural Monophasic Synovial Sarcoma 8 285716 -NCIT:C45758 Cardiac Monophasic Synovial Sarcoma 8 285717 -NCIT:C6618 Mediastinal Synovial Sarcoma 7 285718 -NCIT:C7817 Adult Synovial Sarcoma 7 285719 -NCIT:C8089 Childhood Synovial Sarcoma 7 285720 -NCIT:C8825 Metastatic Synovial Sarcoma 7 285721 -NCIT:C153184 Advanced Synovial Sarcoma 8 285722 -NCIT:C171399 Locally Advanced Synovial Sarcoma 8 285723 -NCIT:C8826 Localized Synovial Sarcoma 7 285724 -NCIT:C8827 Recurrent Synovial Sarcoma 7 285725 -NCIT:C95624 Esophageal Synovial Sarcoma 7 285726 -NCIT:C95899 Gastric Synovial Sarcoma 7 285727 -NCIT:C96845 Liver Synovial Sarcoma 7 285728 -NCIT:C3705 Pleomorphic Liposarcoma 6 285729 -NCIT:C170473 Skin Pleomorphic Liposarcoma 7 285730 -NCIT:C182025 Metastatic Pleomorphic Liposarcoma 7 285731 -NCIT:C182026 Advanced Pleomorphic Liposarcoma 8 285732 -NCIT:C182028 Unresectable Pleomorphic Liposarcoma 7 285733 -NCIT:C3750 Alveolar Soft Part Sarcoma 6 285734 -NCIT:C156273 Tongue Alveolar Soft Part Sarcoma' 7 285735 -NCIT:C156276 Orbital Alveolar Soft Part Sarcoma 7 285736 -NCIT:C156277 Bladder Alveolar Soft Part Sarcoma 7 285737 -NCIT:C164078 Unresectable Alveolar Soft Part Sarcoma 7 285738 -NCIT:C173809 Lung Alveolar Soft Part Sarcoma 7 285739 -NCIT:C188034 Refractory Alveolar Soft Part Sarcoma 7 285740 -NCIT:C40225 Cervical Alveolar Soft Part Sarcoma 7 285741 -NCIT:C40320 Vulvar Alveolar Soft Part Sarcoma 7 285742 -NCIT:C7943 Adult Alveolar Soft Part Sarcoma 7 285743 -NCIT:C8092 Childhood Alveolar Soft Part Sarcoma 7 285744 -NCIT:C8796 Metastatic Alveolar Soft Part Sarcoma 7 285745 -NCIT:C164076 Locally Advanced Alveolar Soft Part Sarcoma 8 285746 -NCIT:C188198 Advanced Alveolar Soft Part Sarcoma 8 285747 -NCIT:C8797 Localized Alveolar Soft Part Sarcoma 7 285748 -NCIT:C8798 Recurrent Alveolar Soft Part Sarcoma 7 285749 -NCIT:C4716 Ectomesenchymoma 6 285750 -NCIT:C173815 Recurrent Ectomesenchymoma 7 285751 -NCIT:C188984 Childhood Ectomesenchymoma 7 285752 -NCIT:C9390 Leiomyosarcoma NCI Grade 3 6 285753 -NCIT:C9404 Poorly Differentiated Fibrosarcoma 6 285754 -NCIT:C9410 Epithelioid Sarcoma NCI Grade 3 6 285755 -NCIT:C9412 Angiosarcoma NCI Grade 3 6 285756 -NCIT:C9414 Kaposi Sarcoma NCI Grade 3 6 285757 -NCIT:C9416 Sarcoma by AJCC Grade 4 285758 -NCIT:C9417 Low Grade Sarcoma 5 285759 -NCIT:C9419 AJCC Grade 1 Sarcoma 6 285760 -NCIT:C9420 AJCC Grade 2 Sarcoma 6 285761 -NCIT:C9418 High Grade Sarcoma 5 285762 -NCIT:C168667 Metastatic High Grade Sarcoma 6 285763 -NCIT:C168668 Locally Advanced High Grade Sarcoma 7 285764 -NCIT:C9421 AJCC Grade 3 Sarcoma 6 285765 -NCIT:C9422 AJCC Grade 4 Sarcoma 6 285766 -NCIT:C9226 Non-Hematologic Malignancy 3 285767 -NCIT:C9335 Malignant Breast Neoplasm 3 285768 -NCIT:C170726 Recurrent Malignant Breast Neoplasm 4 285769 -NCIT:C138023 Recurrent Breast Lymphoma 5 285770 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 6 285771 -NCIT:C170727 Recurrent Breast Sarcoma 5 285772 -NCIT:C133092 Recurrent Breast Angiosarcoma 6 285773 -NCIT:C7771 Recurrent Breast Carcinoma 5 285774 -NCIT:C175588 Recurrent Breast Adenocarcinoma 6 285775 -NCIT:C153568 Recurrent Breast Acinic Cell Carcinoma 7 285776 -NCIT:C153584 Recurrent Lobular Breast Carcinoma 7 285777 -NCIT:C153587 Recurrent Invasive Breast Carcinoma of No Special Type 7 285778 -NCIT:C153588 Recurrent Breast Paget Disease 7 285779 -NCIT:C168783 Recurrent HER2-Negative Breast Carcinoma 7 285780 -NCIT:C171014 Recurrent Triple-Negative Breast Carcinoma 7 285781 -NCIT:C182108 Recurrent HER2-Positive Breast Carcinoma 7 285782 -NCIT:C185157 Recurrent Hormone Receptor-Positive Breast Carcinoma 7 285783 -NCIT:C8607 Recurrent Breast Inflammatory Carcinoma 7 285784 -NCIT:C190196 Locally Recurrent Breast Carcinoma 6 285785 -NCIT:C170728 Metastatic Malignant Breast Neoplasm 4 285786 -NCIT:C153238 Metastatic Breast Carcinoma 5 285787 -NCIT:C133501 Breast Carcinoma Metastatic in the Central Nervous System 6 285788 -NCIT:C36301 Breast Carcinoma Metastatic in the Brain 7 285789 -NCIT:C153227 Breast Carcinoma Metastatic in the Lymph Nodes 6 285790 -NCIT:C160920 Locally Advanced Breast Carcinoma 6 285791 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 7 285792 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 8 285793 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 8 285794 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 8 285795 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 8 285796 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 7 285797 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 8 285798 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 285799 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 285800 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 285801 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 8 285802 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 285803 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 285804 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 285805 -NCIT:C161830 Metastatic BRCA-Associated Breast Carcinoma 6 285806 -NCIT:C162648 Advanced Breast Carcinoma 6 285807 -NCIT:C165700 Advanced Breast Adenocarcinoma 7 285808 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 285809 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 285810 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 8 285811 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 285812 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 285813 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 285814 -NCIT:C165698 Metastatic Breast Adenocarcinoma 6 285815 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 7 285816 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 8 285817 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 285818 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 285819 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 285820 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 8 285821 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 285822 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 285823 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 285824 -NCIT:C165700 Advanced Breast Adenocarcinoma 7 285825 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 285826 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 285827 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 8 285828 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 285829 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 285830 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 285831 -NCIT:C168777 Metastatic HER2-Negative Breast Carcinoma 7 285832 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 285833 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 285834 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 285835 -NCIT:C179554 Metastatic HER2-Low Breast Carcinoma 7 285836 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 285837 -NCIT:C180924 Metastatic HER2-Positive Breast Carcinoma 7 285838 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 8 285839 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 8 285840 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 285841 -NCIT:C181787 Metastatic Breast Inflammatory Carcinoma 7 285842 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 8 285843 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 8 285844 -NCIT:C9246 Stage IIIB Breast Inflammatory Carcinoma 8 285845 -NCIT:C185880 Metastatic Hormone Receptor-Positive Breast Carcinoma 7 285846 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 285847 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 285848 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 285849 -NCIT:C190852 Metastatic Androgen Receptor-Positive Breast Carcinoma 8 285850 -NCIT:C190856 Metastatic Estrogen Receptor-Positive Breast Carcinoma 8 285851 -NCIT:C190677 Metastatic Hormone Receptor-Negative Breast Carcinoma 7 285852 -NCIT:C153348 Metastatic Triple-Negative Breast Carcinoma 8 285853 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 285854 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 285855 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 285856 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 9 285857 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 285858 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 285859 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 7 285860 -NCIT:C76326 Metastatic Breast Ductal Carcinoma 7 285861 -NCIT:C76328 Metastatic Breast Lobular Carcinoma 7 285862 -NCIT:C179515 Oligometastatic Breast Carcinoma 6 285863 -NCIT:C28311 Metastatic Breast Carcinoma in the Skin 6 285864 -NCIT:C36300 Breast Carcinoma Metastatic in the Lung 6 285865 -NCIT:C36302 Breast Carcinoma Metastatic in the Liver 6 285866 -NCIT:C36303 Breast Carcinoma Metastatic in the Bone 6 285867 -NCIT:C153226 Breast Carcinoma Metastatic in the Spine 7 285868 -NCIT:C5178 Metastatic Breast Squamous Cell Carcinoma 6 285869 -NCIT:C156493 Metastatic Breast Neuroendocrine Neoplasm 5 285870 -NCIT:C5171 Metastatic Breast Neuroendocrine Tumor G1 6 285871 -NCIT:C179218 Breast Periductal Stromal Tumor 4 285872 -NCIT:C190575 Childhood Malignant Breast Neoplasm 4 285873 -NCIT:C118809 Childhood Breast Carcinoma 5 285874 -NCIT:C4504 Malignant Breast Phyllodes Tumor 4 285875 -NCIT:C4670 Breast Sarcoma 4 285876 -NCIT:C170727 Recurrent Breast Sarcoma 5 285877 -NCIT:C133092 Recurrent Breast Angiosarcoma 6 285878 -NCIT:C5184 Breast Angiosarcoma 5 285879 -NCIT:C133092 Recurrent Breast Angiosarcoma 6 285880 -NCIT:C176251 Primary Breast Angiosarcoma 6 285881 -NCIT:C40378 Postradiation Breast Angiosarcoma 6 285882 -NCIT:C5185 Breast Fibrosarcoma 5 285883 -NCIT:C5186 Breast Leiomyosarcoma 5 285884 -NCIT:C5187 Breast Liposarcoma 5 285885 -NCIT:C5189 Breast Extraskeletal Osteosarcoma 5 285886 -NCIT:C5190 Breast Rhabdomyosarcoma 5 285887 -NCIT:C4671 Breast Lymphoma 4 285888 -NCIT:C138023 Recurrent Breast Lymphoma 5 285889 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 6 285890 -NCIT:C138024 Refractory Breast Lymphoma 5 285891 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 6 285892 -NCIT:C5181 Breast Non-Hodgkin Lymphoma 5 285893 -NCIT:C35688 Breast Mucosa-Associated Lymphoid Tissue Lymphoma 6 285894 -NCIT:C40375 Breast Diffuse Large B-Cell Lymphoma 6 285895 -NCIT:C40376 Breast Burkitt Lymphoma 6 285896 -NCIT:C40377 Breast Follicular Lymphoma 6 285897 -NCIT:C5182 Breast T-Cell Non-Hodgkin Lymphoma 6 285898 -NCIT:C139012 Breast Implant-Associated Anaplastic Large Cell Lymphoma 7 285899 -NCIT:C176680 Recurrent Breast Implant-Associated Anaplastic Large Cell Lymphoma 8 285900 -NCIT:C176681 Refractory Breast Implant-Associated Anaplastic Large Cell Lymphoma 8 285901 -NCIT:C4872 Breast Carcinoma 4 285902 -NCIT:C118809 Childhood Breast Carcinoma 5 285903 -NCIT:C137674 Occult Breast Carcinoma 5 285904 -NCIT:C139532 Breast Cancer by AJCC v8 Stage 5 285905 -NCIT:C139533 Breast Cancer by AJCC v8 Anatomic Stage 6 285906 -NCIT:C139534 Anatomic Stage 0 Breast Cancer AJCC v8 7 285907 -NCIT:C2924 Breast Ductal Carcinoma In Situ 8 285908 -NCIT:C176005 Breast Ductal Carcinoma In Situ, Comedo Type 9 285909 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 9 285910 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 10 285911 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 10 285912 -NCIT:C5137 Breast Ductal Carcinoma In Situ, Non-Comedo Type 9 285913 -NCIT:C5138 Breast Ductal Carcinoma In Situ, Cribriform Pattern 9 285914 -NCIT:C66933 Breast Ductal Carcinoma In Situ, Solid Type 9 285915 -NCIT:C7949 Breast Ductal Carcinoma In Situ, High Grade 9 285916 -NCIT:C9456 Breast Ductal Carcinoma In Situ, Intermediate Grade 9 285917 -NCIT:C9457 Breast Ductal Carcinoma In Situ, Low Grade 9 285918 -NCIT:C139535 Anatomic Stage I Breast Cancer AJCC v8 7 285919 -NCIT:C139536 Anatomic Stage IA Breast Cancer AJCC v8 8 285920 -NCIT:C139537 Anatomic Stage IB Breast Cancer AJCC v8 8 285921 -NCIT:C139538 Anatomic Stage II Breast Cancer AJCC v8 7 285922 -NCIT:C139539 Anatomic Stage IIA Breast Cancer AJCC v8 8 285923 -NCIT:C139540 Anatomic Stage IIB Breast Cancer AJCC v8 8 285924 -NCIT:C139541 Anatomic Stage III Breast Cancer AJCC v8 7 285925 -NCIT:C139542 Anatomic Stage IIIA Breast Cancer AJCC v8 8 285926 -NCIT:C139543 Anatomic Stage IIIB Breast Cancer AJCC v8 8 285927 -NCIT:C9246 Stage IIIB Breast Inflammatory Carcinoma 9 285928 -NCIT:C139544 Anatomic Stage IIIC Breast Cancer AJCC v8 8 285929 -NCIT:C139545 Anatomic Stage IV Breast Cancer AJCC v8 7 285930 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 8 285931 -NCIT:C139554 Breast Cancer by AJCC v8 Prognostic Stage 6 285932 -NCIT:C139555 Prognostic Stage 0 Breast Cancer AJCC v8 7 285933 -NCIT:C139556 Prognostic Stage I Breast Cancer AJCC v8 7 285934 -NCIT:C139557 Prognostic Stage IA Breast Cancer AJCC v8 8 285935 -NCIT:C139558 Prognostic Stage IB Breast Cancer AJCC v8 8 285936 -NCIT:C139569 Prognostic Stage II Breast Cancer AJCC v8 7 285937 -NCIT:C139571 Prognostic Stage IIA Breast Cancer AJCC v8 8 285938 -NCIT:C139572 Prognostic Stage IIB Breast Cancer AJCC v8 8 285939 -NCIT:C139582 Prognostic Stage III Breast Cancer AJCC v8 7 285940 -NCIT:C139583 Prognostic Stage IIIA Breast Cancer AJCC v8 8 285941 -NCIT:C139584 Prognostic Stage IIIB Breast Cancer AJCC v8 8 285942 -NCIT:C139585 Prognostic Stage IIIC Breast Cancer AJCC v8 8 285943 -NCIT:C139587 Prognostic Stage IV Breast Cancer AJCC v8 7 285944 -NCIT:C147965 Refractory Breast Carcinoma 5 285945 -NCIT:C165703 Refractory Breast Adenocarcinoma 6 285946 -NCIT:C157057 Refractory Hormone Receptor-Positive Breast Carcinoma 7 285947 -NCIT:C167076 Refractory Triple-Negative Breast Carcinoma 7 285948 -NCIT:C168784 Refractory HER2-Negative Breast Carcinoma 7 285949 -NCIT:C182110 Refractory HER2-Positive Breast Carcinoma 7 285950 -NCIT:C153238 Metastatic Breast Carcinoma 5 285951 -NCIT:C133501 Breast Carcinoma Metastatic in the Central Nervous System 6 285952 -NCIT:C36301 Breast Carcinoma Metastatic in the Brain 7 285953 -NCIT:C153227 Breast Carcinoma Metastatic in the Lymph Nodes 6 285954 -NCIT:C160920 Locally Advanced Breast Carcinoma 6 285955 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 7 285956 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 8 285957 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 8 285958 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 8 285959 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 8 285960 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 7 285961 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 8 285962 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 285963 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 285964 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 285965 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 8 285966 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 285967 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 285968 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 285969 -NCIT:C161830 Metastatic BRCA-Associated Breast Carcinoma 6 285970 -NCIT:C162648 Advanced Breast Carcinoma 6 285971 -NCIT:C165700 Advanced Breast Adenocarcinoma 7 285972 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 285973 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 285974 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 8 285975 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 285976 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 285977 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 285978 -NCIT:C165698 Metastatic Breast Adenocarcinoma 6 285979 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 7 285980 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 8 285981 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 285982 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 285983 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 285984 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 8 285985 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 285986 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 285987 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 285988 -NCIT:C165700 Advanced Breast Adenocarcinoma 7 285989 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 285990 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 285991 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 8 285992 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 285993 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 285994 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 285995 -NCIT:C168777 Metastatic HER2-Negative Breast Carcinoma 7 285996 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 285997 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 285998 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 285999 -NCIT:C179554 Metastatic HER2-Low Breast Carcinoma 7 286000 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 286001 -NCIT:C180924 Metastatic HER2-Positive Breast Carcinoma 7 286002 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 8 286003 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 8 286004 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 286005 -NCIT:C181787 Metastatic Breast Inflammatory Carcinoma 7 286006 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 8 286007 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 8 286008 -NCIT:C9246 Stage IIIB Breast Inflammatory Carcinoma 8 286009 -NCIT:C185880 Metastatic Hormone Receptor-Positive Breast Carcinoma 7 286010 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 286011 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 286012 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 286013 -NCIT:C190852 Metastatic Androgen Receptor-Positive Breast Carcinoma 8 286014 -NCIT:C190856 Metastatic Estrogen Receptor-Positive Breast Carcinoma 8 286015 -NCIT:C190677 Metastatic Hormone Receptor-Negative Breast Carcinoma 7 286016 -NCIT:C153348 Metastatic Triple-Negative Breast Carcinoma 8 286017 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 286018 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 286019 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 286020 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 9 286021 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 286022 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 286023 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 7 286024 -NCIT:C76326 Metastatic Breast Ductal Carcinoma 7 286025 -NCIT:C76328 Metastatic Breast Lobular Carcinoma 7 286026 -NCIT:C179515 Oligometastatic Breast Carcinoma 6 286027 -NCIT:C28311 Metastatic Breast Carcinoma in the Skin 6 286028 -NCIT:C36300 Breast Carcinoma Metastatic in the Lung 6 286029 -NCIT:C36302 Breast Carcinoma Metastatic in the Liver 6 286030 -NCIT:C36303 Breast Carcinoma Metastatic in the Bone 6 286031 -NCIT:C153226 Breast Carcinoma Metastatic in the Spine 7 286032 -NCIT:C5178 Metastatic Breast Squamous Cell Carcinoma 6 286033 -NCIT:C158752 Unresectable Breast Carcinoma 5 286034 -NCIT:C158751 Unresectable Breast Inflammatory Carcinoma 6 286035 -NCIT:C162182 Locally Advanced Unresectable Breast Carcinoma 6 286036 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 7 286037 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 7 286038 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 7 286039 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 7 286040 -NCIT:C186284 Unresectable HER2-Positive Breast Carcinoma 6 286041 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 7 286042 -NCIT:C187160 Unresectable Hormone Receptor-Positive Breast Carcinoma 6 286043 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 7 286044 -NCIT:C187161 Unresectable HER2-Negative Breast Carcinoma 6 286045 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 7 286046 -NCIT:C190676 Unresectable Hormone Receptor-Negative Breast Carcinoma 6 286047 -NCIT:C165491 Unresectable Triple-Negative Breast Carcinoma 7 286048 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 8 286049 -NCIT:C162782 Localized Breast Carcinoma 5 286050 -NCIT:C188035 Resectable Breast Carcinoma 5 286051 -NCIT:C28432 Nipple Carcinoma 5 286052 -NCIT:C28292 Squamous Cell Carcinoma In Situ of the Nipple 6 286053 -NCIT:C3301 Nipple Paget Disease 6 286054 -NCIT:C2918 Female Breast Carcinoma 5 286055 -NCIT:C176579 Invasive Female Breast Carcinoma 6 286056 -NCIT:C176580 Female Breast Carcinoma In Situ 6 286057 -NCIT:C36107 Hereditary Female Breast Carcinoma 6 286058 -NCIT:C3862 Male Breast Carcinoma 5 286059 -NCIT:C176503 Male Breast Carcinoma In Situ 6 286060 -NCIT:C176504 Invasive Male Breast Carcinoma 6 286061 -NCIT:C36106 Hereditary Male Breast Carcinoma 6 286062 -NCIT:C4503 Hereditary Breast Carcinoma 5 286063 -NCIT:C167189 BRCA-Associated Breast Carcinoma 6 286064 -NCIT:C161830 Metastatic BRCA-Associated Breast Carcinoma 7 286065 -NCIT:C167193 PALB2-Associated Breast Carcinoma 6 286066 -NCIT:C36106 Hereditary Male Breast Carcinoma 6 286067 -NCIT:C36107 Hereditary Female Breast Carcinoma 6 286068 -NCIT:C46073 Unilateral Breast Carcinoma 5 286069 -NCIT:C5214 Breast Adenocarcinoma 5 286070 -NCIT:C114932 Hormone-Resistant Breast Carcinoma 6 286071 -NCIT:C157056 Hormone Receptor-Positive Breast Carcinoma 6 286072 -NCIT:C157057 Refractory Hormone Receptor-Positive Breast Carcinoma 7 286073 -NCIT:C185157 Recurrent Hormone Receptor-Positive Breast Carcinoma 7 286074 -NCIT:C185880 Metastatic Hormone Receptor-Positive Breast Carcinoma 7 286075 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 286076 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 286077 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 286078 -NCIT:C190852 Metastatic Androgen Receptor-Positive Breast Carcinoma 8 286079 -NCIT:C190856 Metastatic Estrogen Receptor-Positive Breast Carcinoma 8 286080 -NCIT:C187160 Unresectable Hormone Receptor-Positive Breast Carcinoma 7 286081 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 8 286082 -NCIT:C188366 Estrogen Receptor-Positive Breast Carcinoma 7 286083 -NCIT:C190856 Metastatic Estrogen Receptor-Positive Breast Carcinoma 8 286084 -NCIT:C190851 Androgen Receptor-Positive Breast Carcinoma 7 286085 -NCIT:C190852 Metastatic Androgen Receptor-Positive Breast Carcinoma 8 286086 -NCIT:C165698 Metastatic Breast Adenocarcinoma 6 286087 -NCIT:C165699 Locally Advanced Breast Adenocarcinoma 7 286088 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 8 286089 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 286090 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 286091 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 286092 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 8 286093 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 286094 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 286095 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 286096 -NCIT:C165700 Advanced Breast Adenocarcinoma 7 286097 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 286098 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 286099 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 8 286100 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 286101 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 286102 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 286103 -NCIT:C168777 Metastatic HER2-Negative Breast Carcinoma 7 286104 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 286105 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 286106 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 286107 -NCIT:C179554 Metastatic HER2-Low Breast Carcinoma 7 286108 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 286109 -NCIT:C180924 Metastatic HER2-Positive Breast Carcinoma 7 286110 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 8 286111 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 8 286112 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 286113 -NCIT:C181787 Metastatic Breast Inflammatory Carcinoma 7 286114 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 8 286115 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 8 286116 -NCIT:C9246 Stage IIIB Breast Inflammatory Carcinoma 8 286117 -NCIT:C185880 Metastatic Hormone Receptor-Positive Breast Carcinoma 7 286118 -NCIT:C185881 Advanced Hormone Receptor-Positive Breast Carcinoma 8 286119 -NCIT:C187399 Locally Advanced Hormone Receptor-Positive Breast Carcinoma 8 286120 -NCIT:C187400 Locally Advanced Unresectable Hormone Receptor-Positive Breast Carcinoma 9 286121 -NCIT:C190852 Metastatic Androgen Receptor-Positive Breast Carcinoma 8 286122 -NCIT:C190856 Metastatic Estrogen Receptor-Positive Breast Carcinoma 8 286123 -NCIT:C190677 Metastatic Hormone Receptor-Negative Breast Carcinoma 7 286124 -NCIT:C153348 Metastatic Triple-Negative Breast Carcinoma 8 286125 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 286126 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 286127 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 286128 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 9 286129 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 286130 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 286131 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 7 286132 -NCIT:C76326 Metastatic Breast Ductal Carcinoma 7 286133 -NCIT:C76328 Metastatic Breast Lobular Carcinoma 7 286134 -NCIT:C165703 Refractory Breast Adenocarcinoma 6 286135 -NCIT:C157057 Refractory Hormone Receptor-Positive Breast Carcinoma 7 286136 -NCIT:C167076 Refractory Triple-Negative Breast Carcinoma 7 286137 -NCIT:C168784 Refractory HER2-Negative Breast Carcinoma 7 286138 -NCIT:C182110 Refractory HER2-Positive Breast Carcinoma 7 286139 -NCIT:C165743 Hormone Receptor-Negative Breast Carcinoma 6 286140 -NCIT:C190676 Unresectable Hormone Receptor-Negative Breast Carcinoma 7 286141 -NCIT:C165491 Unresectable Triple-Negative Breast Carcinoma 8 286142 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 286143 -NCIT:C190677 Metastatic Hormone Receptor-Negative Breast Carcinoma 7 286144 -NCIT:C153348 Metastatic Triple-Negative Breast Carcinoma 8 286145 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 286146 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 286147 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 286148 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 9 286149 -NCIT:C190678 Advanced Hormone Receptor-Negative Breast Carcinoma 8 286150 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 286151 -NCIT:C71732 Triple-Negative Breast Carcinoma 7 286152 -NCIT:C153348 Metastatic Triple-Negative Breast Carcinoma 8 286153 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 286154 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 286155 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 286156 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 9 286157 -NCIT:C165491 Unresectable Triple-Negative Breast Carcinoma 8 286158 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 286159 -NCIT:C167076 Refractory Triple-Negative Breast Carcinoma 8 286160 -NCIT:C171014 Recurrent Triple-Negative Breast Carcinoma 8 286161 -NCIT:C181081 Early Stage Triple-Negative Breast Carcinoma 8 286162 -NCIT:C168519 HER2-Negative Breast Carcinoma 6 286163 -NCIT:C168777 Metastatic HER2-Negative Breast Carcinoma 7 286164 -NCIT:C168782 Advanced HER2-Negative Breast Carcinoma 8 286165 -NCIT:C178348 Locally Advanced HER2-Negative Breast Carcinoma 8 286166 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 9 286167 -NCIT:C168783 Recurrent HER2-Negative Breast Carcinoma 7 286168 -NCIT:C168784 Refractory HER2-Negative Breast Carcinoma 7 286169 -NCIT:C187161 Unresectable HER2-Negative Breast Carcinoma 7 286170 -NCIT:C187398 Locally Advanced Unresectable HER2-Negative Breast Carcinoma 8 286171 -NCIT:C190215 Early Stage HER2-Negative Breast Carcinoma 7 286172 -NCIT:C175588 Recurrent Breast Adenocarcinoma 6 286173 -NCIT:C153568 Recurrent Breast Acinic Cell Carcinoma 7 286174 -NCIT:C153584 Recurrent Lobular Breast Carcinoma 7 286175 -NCIT:C153587 Recurrent Invasive Breast Carcinoma of No Special Type 7 286176 -NCIT:C153588 Recurrent Breast Paget Disease 7 286177 -NCIT:C168783 Recurrent HER2-Negative Breast Carcinoma 7 286178 -NCIT:C171014 Recurrent Triple-Negative Breast Carcinoma 7 286179 -NCIT:C182108 Recurrent HER2-Positive Breast Carcinoma 7 286180 -NCIT:C185157 Recurrent Hormone Receptor-Positive Breast Carcinoma 7 286181 -NCIT:C8607 Recurrent Breast Inflammatory Carcinoma 7 286182 -NCIT:C179553 HER2-Low Breast Carcinoma 6 286183 -NCIT:C179554 Metastatic HER2-Low Breast Carcinoma 7 286184 -NCIT:C179555 Advanced HER2-Low Breast Carcinoma 8 286185 -NCIT:C3771 Breast Lobular Carcinoma 6 286186 -NCIT:C153584 Recurrent Lobular Breast Carcinoma 7 286187 -NCIT:C4018 Breast Lobular Carcinoma In Situ 7 286188 -NCIT:C137839 Breast Pleomorphic Lobular Carcinoma In Situ 8 286189 -NCIT:C175949 Breast Classic Lobular Carcinoma In Situ 8 286190 -NCIT:C83170 Breast Classic Lobular Carcinoma In Situ Type A 9 286191 -NCIT:C83171 Breast Classic Lobular Carcinoma In Situ Type B 9 286192 -NCIT:C175950 Breast Florid Lobular Carcinoma In Situ 8 286193 -NCIT:C76328 Metastatic Breast Lobular Carcinoma 7 286194 -NCIT:C7950 Invasive Breast Lobular Carcinoma 7 286195 -NCIT:C157235 Breast Histiocytoid Carcinoma 8 286196 -NCIT:C187405 Invasive Breast Lobular Carcinoma with Extracellular Mucin 8 286197 -NCIT:C54691 Invasive Breast Lobular Carcinoma, Signet Ring Variant 8 286198 -NCIT:C9136 Invasive Breast Lobular Carcinoma with Predominant In Situ Component 8 286199 -NCIT:C97049 Invasive Breast Lobular Carcinoma, Alveolar Variant 8 286200 -NCIT:C97051 Invasive Breast Lobular Carcinoma, Pleomorphic Variant 8 286201 -NCIT:C97052 Invasive Breast Lobular Carcinoma, Solid Variant 8 286202 -NCIT:C97053 Invasive Breast Lobular Carcinoma, Tubulolobular Variant 8 286203 -NCIT:C4001 Breast Inflammatory Carcinoma 6 286204 -NCIT:C158751 Unresectable Breast Inflammatory Carcinoma 7 286205 -NCIT:C181787 Metastatic Breast Inflammatory Carcinoma 7 286206 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 8 286207 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 8 286208 -NCIT:C9246 Stage IIIB Breast Inflammatory Carcinoma 8 286209 -NCIT:C8607 Recurrent Breast Inflammatory Carcinoma 7 286210 -NCIT:C4017 Breast Ductal Carcinoma 6 286211 -NCIT:C2924 Breast Ductal Carcinoma In Situ 7 286212 -NCIT:C176005 Breast Ductal Carcinoma In Situ, Comedo Type 8 286213 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 8 286214 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 9 286215 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 9 286216 -NCIT:C5137 Breast Ductal Carcinoma In Situ, Non-Comedo Type 8 286217 -NCIT:C5138 Breast Ductal Carcinoma In Situ, Cribriform Pattern 8 286218 -NCIT:C66933 Breast Ductal Carcinoma In Situ, Solid Type 8 286219 -NCIT:C7949 Breast Ductal Carcinoma In Situ, High Grade 8 286220 -NCIT:C9456 Breast Ductal Carcinoma In Situ, Intermediate Grade 8 286221 -NCIT:C9457 Breast Ductal Carcinoma In Situ, Low Grade 8 286222 -NCIT:C4194 Invasive Breast Carcinoma of No Special Type 7 286223 -NCIT:C153587 Recurrent Invasive Breast Carcinoma of No Special Type 8 286224 -NCIT:C175585 Breast Carcinoma with Neuroendocrine Differentiation 8 286225 -NCIT:C40349 Breast Carcinoma with Osteoclast-Like Stromal Giant Cells 8 286226 -NCIT:C40350 Breast Carcinoma with Choriocarcinomatous Features 8 286227 -NCIT:C40351 Breast Carcinoma with Melanotic Features 8 286228 -NCIT:C40365 Breast Lipid-Rich Carcinoma 8 286229 -NCIT:C40366 Breast Oncocytic Carcinoma 8 286230 -NCIT:C40368 Glycogen-Rich, Clear Cell Breast Carcinoma 8 286231 -NCIT:C40369 Breast Sebaceous Carcinoma 8 286232 -NCIT:C5161 Breast Pleomorphic Carcinoma 8 286233 -NCIT:C66719 Breast Atypical Medullary Carcinoma 8 286234 -NCIT:C6987 Breast Ductal Carcinoma with Squamous Metaplasia 8 286235 -NCIT:C7362 Breast Scirrhous Carcinoma 8 286236 -NCIT:C9119 Breast Medullary Carcinoma 8 286237 -NCIT:C9132 Invasive Breast Carcinoma of No Special Type with Predominant Intraductal Component 8 286238 -NCIT:C76326 Metastatic Breast Ductal Carcinoma 7 286239 -NCIT:C40354 Breast Mucinous Cystadenocarcinoma 6 286240 -NCIT:C40360 Breast Adenocarcinoma with Spindle Cell Metaplasia 6 286241 -NCIT:C40367 Breast Acinic Cell Carcinoma 6 286242 -NCIT:C153568 Recurrent Breast Acinic Cell Carcinoma 7 286243 -NCIT:C47857 Breast Paget Disease 6 286244 -NCIT:C153588 Recurrent Breast Paget Disease 7 286245 -NCIT:C3301 Nipple Paget Disease 7 286246 -NCIT:C47858 Breast Paget Disease without Invasive Carcinoma 7 286247 -NCIT:C4019 Breast Paget Disease and Intraductal Carcinoma 8 286248 -NCIT:C7951 Breast Paget Disease with Invasive Ductal Carcinoma 7 286249 -NCIT:C5141 Breast Apocrine Carcinoma 6 286250 -NCIT:C5140 Breast Apocrine Carcinoma In Situ 7 286251 -NCIT:C5457 Invasive Breast Apocrine Carcinoma 7 286252 -NCIT:C5142 Invasive Breast Cribriform Carcinoma 6 286253 -NCIT:C5160 Breast Mixed Ductal and Lobular Carcinoma 6 286254 -NCIT:C7688 Invasive Breast Ductal Carcinoma and Lobular Carcinoma 7 286255 -NCIT:C6393 Invasive Breast Ductal Carcinoma and Invasive Lobular Carcinoma 8 286256 -NCIT:C7689 Invasive Breast Ductal Carcinoma and Lobular Carcinoma In Situ 8 286257 -NCIT:C7690 Breast Ductal Carcinoma In Situ and Lobular Carcinoma 7 286258 -NCIT:C4195 Breast Ductal Carcinoma In Situ and Lobular Carcinoma In Situ 8 286259 -NCIT:C6939 Breast Ductal Carcinoma In Situ and Invasive Lobular Carcinoma 8 286260 -NCIT:C5163 Breast Adenocarcinoma with Squamous Metaplasia 6 286261 -NCIT:C6987 Breast Ductal Carcinoma with Squamous Metaplasia 7 286262 -NCIT:C5175 Breast Signet Ring Cell Carcinoma 6 286263 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 7 286264 -NCIT:C54691 Invasive Breast Lobular Carcinoma, Signet Ring Variant 7 286265 -NCIT:C53553 Breast Carcinoma by Gene Expression Profile 6 286266 -NCIT:C53554 Luminal A Breast Carcinoma 7 286267 -NCIT:C53555 Luminal B Breast Carcinoma 7 286268 -NCIT:C53556 HER2-Positive Breast Carcinoma 7 286269 -NCIT:C180924 Metastatic HER2-Positive Breast Carcinoma 8 286270 -NCIT:C180925 Advanced HER2-Positive Breast Carcinoma 9 286271 -NCIT:C181793 Locally Advanced HER2-Positive Breast Carcinoma 9 286272 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 10 286273 -NCIT:C182108 Recurrent HER2-Positive Breast Carcinoma 8 286274 -NCIT:C182110 Refractory HER2-Positive Breast Carcinoma 8 286275 -NCIT:C186284 Unresectable HER2-Positive Breast Carcinoma 8 286276 -NCIT:C186283 Locally Advanced Unresectable HER2-Positive Breast Carcinoma 9 286277 -NCIT:C53557 Normal Breast-Like Subtype of Breast Carcinoma 7 286278 -NCIT:C53558 Basal-Like Breast Carcinoma 7 286279 -NCIT:C71732 Triple-Negative Breast Carcinoma 7 286280 -NCIT:C153348 Metastatic Triple-Negative Breast Carcinoma 8 286281 -NCIT:C175236 Advanced Triple-Negative Breast Carcinoma 9 286282 -NCIT:C175237 Locally Advanced Triple-Negative Breast Carcinoma 9 286283 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 10 286284 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 9 286285 -NCIT:C165491 Unresectable Triple-Negative Breast Carcinoma 8 286286 -NCIT:C187402 Locally Advanced Unresectable Triple-Negative Breast Carcinoma 9 286287 -NCIT:C167076 Refractory Triple-Negative Breast Carcinoma 8 286288 -NCIT:C171014 Recurrent Triple-Negative Breast Carcinoma 8 286289 -NCIT:C181081 Early Stage Triple-Negative Breast Carcinoma 8 286290 -NCIT:C9131 Breast Mucinous Carcinoma 6 286291 -NCIT:C40355 Breast Columnar Cell Mucinous Carcinoma 7 286292 -NCIT:C9134 Breast Papillary Carcinoma 6 286293 -NCIT:C176009 Encapsulated Breast Papillary Carcinoma 7 286294 -NCIT:C176010 Encapsulated Breast Papillary Carcinoma with Invasion 8 286295 -NCIT:C36085 Invasive Breast Papillary Carcinoma 7 286296 -NCIT:C176010 Encapsulated Breast Papillary Carcinoma with Invasion 8 286297 -NCIT:C176012 Invasive Breast Solid Papillary Carcinoma 8 286298 -NCIT:C36084 Invasive Breast Micropapillary Carcinoma 8 286299 -NCIT:C7439 Breast Papillary Ductal Carcinoma In Situ with Invasion 8 286300 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 7 286301 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 8 286302 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 8 286303 -NCIT:C6870 Breast Solid Papillary Carcinoma 7 286304 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 8 286305 -NCIT:C176012 Invasive Breast Solid Papillary Carcinoma 8 286306 -NCIT:C9135 Breast Tubular Carcinoma 6 286307 -NCIT:C7566 Sporadic Breast Carcinoma 5 286308 -NCIT:C7771 Recurrent Breast Carcinoma 5 286309 -NCIT:C175588 Recurrent Breast Adenocarcinoma 6 286310 -NCIT:C153568 Recurrent Breast Acinic Cell Carcinoma 7 286311 -NCIT:C153584 Recurrent Lobular Breast Carcinoma 7 286312 -NCIT:C153587 Recurrent Invasive Breast Carcinoma of No Special Type 7 286313 -NCIT:C153588 Recurrent Breast Paget Disease 7 286314 -NCIT:C168783 Recurrent HER2-Negative Breast Carcinoma 7 286315 -NCIT:C171014 Recurrent Triple-Negative Breast Carcinoma 7 286316 -NCIT:C182108 Recurrent HER2-Positive Breast Carcinoma 7 286317 -NCIT:C185157 Recurrent Hormone Receptor-Positive Breast Carcinoma 7 286318 -NCIT:C8607 Recurrent Breast Inflammatory Carcinoma 7 286319 -NCIT:C190196 Locally Recurrent Breast Carcinoma 6 286320 -NCIT:C8287 Bilateral Breast Carcinoma 5 286321 -NCIT:C40370 Synchronous Bilateral Breast Carcinoma 6 286322 -NCIT:C99390 Contralateral Breast Carcinoma 6 286323 -NCIT:C90513 Breast Cancer by AJCC v6 Stage 5 286324 -NCIT:C3641 Stage 0 Breast Cancer AJCC v6 and v7 6 286325 -NCIT:C176503 Male Breast Carcinoma In Situ 7 286326 -NCIT:C176580 Female Breast Carcinoma In Situ 7 286327 -NCIT:C2924 Breast Ductal Carcinoma In Situ 7 286328 -NCIT:C176005 Breast Ductal Carcinoma In Situ, Comedo Type 8 286329 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 8 286330 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 9 286331 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 9 286332 -NCIT:C5137 Breast Ductal Carcinoma In Situ, Non-Comedo Type 8 286333 -NCIT:C5138 Breast Ductal Carcinoma In Situ, Cribriform Pattern 8 286334 -NCIT:C66933 Breast Ductal Carcinoma In Situ, Solid Type 8 286335 -NCIT:C7949 Breast Ductal Carcinoma In Situ, High Grade 8 286336 -NCIT:C9456 Breast Ductal Carcinoma In Situ, Intermediate Grade 8 286337 -NCIT:C9457 Breast Ductal Carcinoma In Situ, Low Grade 8 286338 -NCIT:C4018 Breast Lobular Carcinoma In Situ 7 286339 -NCIT:C137839 Breast Pleomorphic Lobular Carcinoma In Situ 8 286340 -NCIT:C175949 Breast Classic Lobular Carcinoma In Situ 8 286341 -NCIT:C83170 Breast Classic Lobular Carcinoma In Situ Type A 9 286342 -NCIT:C83171 Breast Classic Lobular Carcinoma In Situ Type B 9 286343 -NCIT:C175950 Breast Florid Lobular Carcinoma In Situ 8 286344 -NCIT:C4195 Breast Ductal Carcinoma In Situ and Lobular Carcinoma In Situ 7 286345 -NCIT:C3995 Stage IV Breast Cancer AJCC v6 and v7 6 286346 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 7 286347 -NCIT:C7767 Stage I Breast Cancer AJCC v6 6 286348 -NCIT:C7768 Stage II Breast Cancer AJCC v6 and v7 6 286349 -NCIT:C5454 Stage IIA Breast Cancer AJCC v6 and v7 7 286350 -NCIT:C5455 Stage IIB Breast Cancer AJCC v6 and v7 7 286351 -NCIT:C7769 Stage III Breast Cancer AJCC v6 6 286352 -NCIT:C27828 Stage IIIC Breast Cancer AJCC v6 7 286353 -NCIT:C91230 Breast Cancer by AJCC v7 Stage 5 286354 -NCIT:C3641 Stage 0 Breast Cancer AJCC v6 and v7 6 286355 -NCIT:C176503 Male Breast Carcinoma In Situ 7 286356 -NCIT:C176580 Female Breast Carcinoma In Situ 7 286357 -NCIT:C2924 Breast Ductal Carcinoma In Situ 7 286358 -NCIT:C176005 Breast Ductal Carcinoma In Situ, Comedo Type 8 286359 -NCIT:C4190 Breast Papillary Ductal Carcinoma In Situ 8 286360 -NCIT:C176011 Breast Solid Papillary Carcinoma In Situ 9 286361 -NCIT:C5139 Breast Micropapillary Ductal Carcinoma In Situ 9 286362 -NCIT:C5137 Breast Ductal Carcinoma In Situ, Non-Comedo Type 8 286363 -NCIT:C5138 Breast Ductal Carcinoma In Situ, Cribriform Pattern 8 286364 -NCIT:C66933 Breast Ductal Carcinoma In Situ, Solid Type 8 286365 -NCIT:C7949 Breast Ductal Carcinoma In Situ, High Grade 8 286366 -NCIT:C9456 Breast Ductal Carcinoma In Situ, Intermediate Grade 8 286367 -NCIT:C9457 Breast Ductal Carcinoma In Situ, Low Grade 8 286368 -NCIT:C4018 Breast Lobular Carcinoma In Situ 7 286369 -NCIT:C137839 Breast Pleomorphic Lobular Carcinoma In Situ 8 286370 -NCIT:C175949 Breast Classic Lobular Carcinoma In Situ 8 286371 -NCIT:C83170 Breast Classic Lobular Carcinoma In Situ Type A 9 286372 -NCIT:C83171 Breast Classic Lobular Carcinoma In Situ Type B 9 286373 -NCIT:C175950 Breast Florid Lobular Carcinoma In Situ 8 286374 -NCIT:C4195 Breast Ductal Carcinoma In Situ and Lobular Carcinoma In Situ 7 286375 -NCIT:C3995 Stage IV Breast Cancer AJCC v6 and v7 6 286376 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 7 286377 -NCIT:C7768 Stage II Breast Cancer AJCC v6 and v7 6 286378 -NCIT:C5454 Stage IIA Breast Cancer AJCC v6 and v7 7 286379 -NCIT:C5455 Stage IIB Breast Cancer AJCC v6 and v7 7 286380 -NCIT:C88375 Stage I Breast Cancer AJCC v7 6 286381 -NCIT:C85835 Stage IA Breast Cancer AJCC v7 7 286382 -NCIT:C85836 Stage IB Breast Cancer AJCC v7 7 286383 -NCIT:C88376 Stage III Breast Cancer AJCC v7 6 286384 -NCIT:C7770 Stage IIIA Breast Cancer AJCC v7 7 286385 -NCIT:C7782 Stage IIIB Breast Cancer AJCC v7 7 286386 -NCIT:C9246 Stage IIIB Breast Inflammatory Carcinoma 8 286387 -NCIT:C88377 Stage IIIC Breast Cancer AJCC v7 7 286388 -NCIT:C9245 Invasive Breast Carcinoma 5 286389 -NCIT:C175581 Breast Neuroendocrine Carcinoma 6 286390 -NCIT:C40356 Breast Large Cell Neuroendocrine Carcinoma 7 286391 -NCIT:C6760 Breast Small Cell Neuroendocrine Carcinoma 7 286392 -NCIT:C175604 Breast Polymorphous Adenocarcinoma 6 286393 -NCIT:C175607 Breast Tall Cell Carcinoma with Reversed Polarity 6 286394 -NCIT:C176504 Invasive Male Breast Carcinoma 6 286395 -NCIT:C176579 Invasive Female Breast Carcinoma 6 286396 -NCIT:C27829 Invasive Breast Carcinoma by Histologic Grade 6 286397 -NCIT:C27830 Grade 1 Invasive Breast Carcinoma 7 286398 -NCIT:C27831 Grade 2 Invasive Breast Carcinoma 7 286399 -NCIT:C27832 Grade 3 Invasive Breast Carcinoma 7 286400 -NCIT:C5161 Breast Pleomorphic Carcinoma 8 286401 -NCIT:C36085 Invasive Breast Papillary Carcinoma 6 286402 -NCIT:C176010 Encapsulated Breast Papillary Carcinoma with Invasion 7 286403 -NCIT:C176012 Invasive Breast Solid Papillary Carcinoma 7 286404 -NCIT:C36084 Invasive Breast Micropapillary Carcinoma 7 286405 -NCIT:C7439 Breast Papillary Ductal Carcinoma In Situ with Invasion 7 286406 -NCIT:C4001 Breast Inflammatory Carcinoma 6 286407 -NCIT:C158751 Unresectable Breast Inflammatory Carcinoma 7 286408 -NCIT:C181787 Metastatic Breast Inflammatory Carcinoma 7 286409 -NCIT:C185954 Metastatic Triple-Negative Breast Inflammatory Carcinoma 8 286410 -NCIT:C7696 Stage IV Breast Inflammatory Carcinoma 8 286411 -NCIT:C9246 Stage IIIB Breast Inflammatory Carcinoma 8 286412 -NCIT:C8607 Recurrent Breast Inflammatory Carcinoma 7 286413 -NCIT:C40347 Breast Mixed Carcinoma 6 286414 -NCIT:C40361 Breast Adenosquamous Carcinoma 7 286415 -NCIT:C40362 Low Grade Breast Adenosquamous Carcinoma 8 286416 -NCIT:C6393 Invasive Breast Ductal Carcinoma and Invasive Lobular Carcinoma 7 286417 -NCIT:C40354 Breast Mucinous Cystadenocarcinoma 6 286418 -NCIT:C40367 Breast Acinic Cell Carcinoma 6 286419 -NCIT:C153568 Recurrent Breast Acinic Cell Carcinoma 7 286420 -NCIT:C40374 Microinvasive Breast Carcinoma 6 286421 -NCIT:C40395 Breast Malignant Myoepithelioma 6 286422 -NCIT:C4189 Breast Secretory Carcinoma 6 286423 -NCIT:C4194 Invasive Breast Carcinoma of No Special Type 6 286424 -NCIT:C153587 Recurrent Invasive Breast Carcinoma of No Special Type 7 286425 -NCIT:C175585 Breast Carcinoma with Neuroendocrine Differentiation 7 286426 -NCIT:C40349 Breast Carcinoma with Osteoclast-Like Stromal Giant Cells 7 286427 -NCIT:C40350 Breast Carcinoma with Choriocarcinomatous Features 7 286428 -NCIT:C40351 Breast Carcinoma with Melanotic Features 7 286429 -NCIT:C40365 Breast Lipid-Rich Carcinoma 7 286430 -NCIT:C40366 Breast Oncocytic Carcinoma 7 286431 -NCIT:C40368 Glycogen-Rich, Clear Cell Breast Carcinoma 7 286432 -NCIT:C40369 Breast Sebaceous Carcinoma 7 286433 -NCIT:C5161 Breast Pleomorphic Carcinoma 7 286434 -NCIT:C66719 Breast Atypical Medullary Carcinoma 7 286435 -NCIT:C6987 Breast Ductal Carcinoma with Squamous Metaplasia 7 286436 -NCIT:C7362 Breast Scirrhous Carcinoma 7 286437 -NCIT:C9119 Breast Medullary Carcinoma 7 286438 -NCIT:C9132 Invasive Breast Carcinoma of No Special Type with Predominant Intraductal Component 7 286439 -NCIT:C5130 Breast Adenoid Cystic Carcinoma 6 286440 -NCIT:C5142 Invasive Breast Cribriform Carcinoma 6 286441 -NCIT:C5164 Breast Metaplastic Carcinoma 6 286442 -NCIT:C40360 Breast Adenocarcinoma with Spindle Cell Metaplasia 7 286443 -NCIT:C40364 Breast Mixed Epithelial/Mesenchymal Metaplastic Carcinoma 7 286444 -NCIT:C47847 Breast Carcinoma with Chondroid Metaplasia 8 286445 -NCIT:C47848 Breast Carcinoma with Osseous Metaplasia 8 286446 -NCIT:C5163 Breast Adenocarcinoma with Squamous Metaplasia 7 286447 -NCIT:C6987 Breast Ductal Carcinoma with Squamous Metaplasia 8 286448 -NCIT:C5166 Breast Mucoepidermoid Carcinoma 6 286449 -NCIT:C5167 High Grade Breast Mucoepidermoid Carcinoma 7 286450 -NCIT:C5168 Low Grade Breast Mucoepidermoid Carcinoma 7 286451 -NCIT:C5175 Breast Signet Ring Cell Carcinoma 6 286452 -NCIT:C5176 Metastatic Breast Signet Ring Cell Carcinoma 7 286453 -NCIT:C54691 Invasive Breast Lobular Carcinoma, Signet Ring Variant 7 286454 -NCIT:C5177 Breast Squamous Cell Carcinoma 6 286455 -NCIT:C40357 Breast Squamous Cell Carcinoma, Large Cell Keratinizing Variant 7 286456 -NCIT:C40358 Breast Squamous Cell Carcinoma, Spindle Cell Variant 7 286457 -NCIT:C40359 Breast Squamous Cell Carcinoma, Acantholytic Variant 7 286458 -NCIT:C5178 Metastatic Breast Squamous Cell Carcinoma 7 286459 -NCIT:C5457 Invasive Breast Apocrine Carcinoma 6 286460 -NCIT:C7950 Invasive Breast Lobular Carcinoma 6 286461 -NCIT:C157235 Breast Histiocytoid Carcinoma 7 286462 -NCIT:C187405 Invasive Breast Lobular Carcinoma with Extracellular Mucin 7 286463 -NCIT:C54691 Invasive Breast Lobular Carcinoma, Signet Ring Variant 7 286464 -NCIT:C9136 Invasive Breast Lobular Carcinoma with Predominant In Situ Component 7 286465 -NCIT:C97049 Invasive Breast Lobular Carcinoma, Alveolar Variant 7 286466 -NCIT:C97051 Invasive Breast Lobular Carcinoma, Pleomorphic Variant 7 286467 -NCIT:C97052 Invasive Breast Lobular Carcinoma, Solid Variant 7 286468 -NCIT:C97053 Invasive Breast Lobular Carcinoma, Tubulolobular Variant 7 286469 -NCIT:C7951 Breast Paget Disease with Invasive Ductal Carcinoma 6 286470 -NCIT:C9131 Breast Mucinous Carcinoma 6 286471 -NCIT:C40355 Breast Columnar Cell Mucinous Carcinoma 7 286472 -NCIT:C9135 Breast Tubular Carcinoma 6 286473 -NCIT:C94770 Multifocal Breast Carcinoma 5 286474 -NCIT:C94772 Multicentric Breast Carcinoma 5 286475 -NCIT:C94774 Early Stage Breast Carcinoma 5 286476 -NCIT:C181081 Early Stage Triple-Negative Breast Carcinoma 6 286477 -NCIT:C190215 Early Stage HER2-Negative Breast Carcinoma 6 286478 -NCIT:C5143 Malignant Breast Adenomyoepithelioma 4 286479 -NCIT:C5180 Malignant Breast Spiradenoma 4 286480 -NCIT:C5213 Malignant Nipple Neoplasm 4 286481 -NCIT:C120454 Male Malignant Nipple Neoplasm 5 286482 -NCIT:C120455 Female Malignant Nipple Neoplasm 5 286483 -NCIT:C28432 Nipple Carcinoma 5 286484 -NCIT:C28292 Squamous Cell Carcinoma In Situ of the Nipple 6 286485 -NCIT:C3301 Nipple Paget Disease 6 286486 -NCIT:C7511 Metastatic Malignant Neoplasm in the Breast 4 286487 -NCIT:C188112 Metastatic Squamous Cell Carcinoma in the Breast 5 286488 -NCIT:C8410 Breast Melanoma 4 286489 -NCIT:C9479 Hereditary Malignant Neoplasm 3 286490 -NCIT:C103817 Hereditary Prostate Carcinoma 4 286491 -NCIT:C115212 Familial Waldenstrom Macroglobulinemia 4 286492 -NCIT:C115225 Hereditary Neuroblastoma 4 286493 -NCIT:C118829 Hereditary Nonmedullary Thyroid Gland Carcinoma 4 286494 -NCIT:C130038 Myeloid Neoplasms with Germline Predisposition 4 286495 -NCIT:C151897 Myeloid Neoplasms with Germline Predisposition without a Preexisting Disorder or Organ Dysfunction 5 286496 -NCIT:C151898 Acute Myeloid Leukemia with Germline CEBPA Mutation 6 286497 -NCIT:C151901 Myeloid Neoplasms with Germline DDX41 Mutation 6 286498 -NCIT:C151902 Myeloid Neoplasms with Germline Predisposition and Preexisting Platelet Disorders 5 286499 -NCIT:C151903 Myeloid Neoplasms with Germline RUNX1 Mutation 6 286500 -NCIT:C151908 Myeloid Neoplasms with Germline ANKRD26 Mutation 6 286501 -NCIT:C151911 Myeloid Neoplasms with Germline ETV6 Mutation 6 286502 -NCIT:C151910 Myeloid Neoplasms with Germline Predisposition Associated with Other Organ Dysfunction 5 286503 -NCIT:C151912 Myeloid Neoplasms with Germline GATA2 Mutation 6 286504 -NCIT:C151921 Myeloid Neoplasms with Germline Predisposition Associated with Telomerase Biology Disorders 6 286505 -NCIT:C151922 Myeloid Neoplasms with Germline Predisposition Associated with Inherited Bone Marrow Failure Syndromes 6 286506 -NCIT:C185293 Myeloid Neoplasms with Germline SAMD9 Mutation 6 286507 -NCIT:C168746 SAMD9-Associated Hereditary Myelodysplastic Syndrome 7 286508 -NCIT:C185294 Myeloid Neoplasms with Germline SAMD9L Mutation 6 286509 -NCIT:C168747 SAMD9L-Associated Hereditary Myelodysplastic Syndrome 7 286510 -NCIT:C155950 Hereditary Malignant Urinary System Neoplasm 4 286511 -NCIT:C39789 Hereditary Renal Cell Carcinoma 5 286512 -NCIT:C36260 Hereditary Clear Cell Renal Cell Carcinoma 6 286513 -NCIT:C39790 Renal Cell Carcinoma with Constitutional Chromosome 3 Translocations 6 286514 -NCIT:C51302 Hereditary Leiomyomatosis and Renal Cell Carcinoma 6 286515 -NCIT:C9222 Hereditary Papillary Renal Cell Carcinoma 6 286516 -NCIT:C8496 Hereditary Kidney Wilms Tumor 5 286517 -NCIT:C164228 Hereditary Colon Carcinoma 4 286518 -NCIT:C167179 BRCA-Associated Malignant Neoplasm 4 286519 -NCIT:C148024 BRCA-Associated Ovarian Carcinoma 5 286520 -NCIT:C148025 Recurrent BRCA- Associated Ovarian Carcinoma 6 286521 -NCIT:C167189 BRCA-Associated Breast Carcinoma 5 286522 -NCIT:C161830 Metastatic BRCA-Associated Breast Carcinoma 6 286523 -NCIT:C168742 Hereditary Myelodysplastic Syndrome 4 286524 -NCIT:C168746 SAMD9-Associated Hereditary Myelodysplastic Syndrome 5 286525 -NCIT:C168747 SAMD9L-Associated Hereditary Myelodysplastic Syndrome 5 286526 -NCIT:C176729 PALB2-Associated Malignant Neoplasm 4 286527 -NCIT:C167193 PALB2-Associated Breast Carcinoma 5 286528 -NCIT:C36102 Hereditary Ovarian Carcinoma 4 286529 -NCIT:C148024 BRCA-Associated Ovarian Carcinoma 5 286530 -NCIT:C148025 Recurrent BRCA- Associated Ovarian Carcinoma 6 286531 -NCIT:C40455 Hereditary Fallopian Tube Carcinoma 4 286532 -NCIT:C43295 Hereditary Gastric Diffuse Adenocarcinoma 4 286533 -NCIT:C43298 Hereditary Pancreatic Carcinoma 4 286534 -NCIT:C4503 Hereditary Breast Carcinoma 4 286535 -NCIT:C167189 BRCA-Associated Breast Carcinoma 5 286536 -NCIT:C161830 Metastatic BRCA-Associated Breast Carcinoma 6 286537 -NCIT:C167193 PALB2-Associated Breast Carcinoma 5 286538 -NCIT:C36106 Hereditary Male Breast Carcinoma 5 286539 -NCIT:C36107 Hereditary Female Breast Carcinoma 5 286540 -NCIT:C46099 Hereditary Thyroid Gland Medullary Carcinoma 4 286541 -NCIT:C173637 Unresectable Hereditary Thyroid Gland Medullary Carcinoma 5 286542 -NCIT:C173638 Recurrent Hereditary Thyroid Gland Medullary Carcinoma 5 286543 -NCIT:C8495 Hereditary Retinoblastoma 4 286544 -NCIT:C8498 Hereditary Melanoma 4 286545 -NCIT:C128801 Cutaneous Malignant Melanoma 2 5 286546 diff --git a/rsrc/classificationTrees/NCITgrade/numbered_hierarchies.tsv b/rsrc/classificationTrees/NCITgrade/numbered_hierarchies.tsv deleted file mode 100644 index cd44e039..00000000 --- a/rsrc/classificationTrees/NCITgrade/numbered_hierarchies.tsv +++ /dev/null @@ -1,117 +0,0 @@ -NCIT:C28076 Disease Grade Qualifier 0 1 -NCIT:C113399 Scarff-Bloom-Richardson Grading System 1 2 -NCIT:C119570 Batts-Ludwig Fibrosis Score 1 3 -NCIT:C119571 Knodell Fibrosis Score 1 4 -NCIT:C119572 METAVIR Fibrosis Score 1 5 -NCIT:C119573 Scheuer Fibrosis Score 1 6 -NCIT:C121169 LRMSC Grade 0, Skin 1 7 -NCIT:C121170 LRMSC Grade 1, Skin 1 8 -NCIT:C121171 LRMSC Grade 2, Skin 1 9 -NCIT:C121172 LRMSC Grade 3, Skin 1 10 -NCIT:C121173 LRMSC Grade 4, Skin 1 11 -NCIT:C121174 LRMSC Grade 5, Skin 1 12 -NCIT:C121175 LRMSC Grade 0, Subcutaneous Tissue 1 13 -NCIT:C121176 LRMSC Grade 1, Subcutaneous Tissue 1 14 -NCIT:C121177 LRMSC Grade 2, Subcutaneous Tissue 1 15 -NCIT:C121178 LRMSC Grade 3, Subcutaneous Tissue 1 16 -NCIT:C121179 LRMSC Grade 4, Subcutaneous Tissue 1 17 -NCIT:C121180 LRMSC Grade 5, Subcutaneous Tissue 1 18 -NCIT:C124785 Oral Mucositis WHO Grading Scale 1 19 -NCIT:C124786 Oral Mucositis WHO Grade 0 2 20 -NCIT:C124787 Oral Mucositis WHO Grade I 2 21 -NCIT:C124788 Oral Mucositis WHO Grade II 2 22 -NCIT:C124789 Oral Mucositis WHO Grade III 2 23 -NCIT:C124790 Oral Mucositis WHO Grade IV 2 24 -NCIT:C132429 Enhanced Liver Fibrosis Score 1 25 -NCIT:C132432 Hyperemia Grade 1 26 -NCIT:C135461 AJCC Tumor Grade 1 27 -NCIT:C135462 Banff Renal Quantitative Criteria Score 1 28 -NCIT:C142346 International Society of Urological Pathology Gleason Grade Group 1 29 -NCIT:C162654 ISUP Grade Pattern 1 2 30 -NCIT:C162655 ISUP Grade Pattern 2 2 31 -NCIT:C162656 ISUP Grade Pattern 3 2 32 -NCIT:C162657 ISUP Grade Pattern 4 2 33 -NCIT:C162658 ISUP Grade Pattern 5 2 34 -NCIT:C154808 Bauermeister Score 1 35 -NCIT:C154809 European Consensus Score For Bone Marrow Fibrosis 1 36 -NCIT:C155941 Tumor Regression Score 0 1 37 -NCIT:C155942 Tumor Regression Score 1 1 38 -NCIT:C155943 Tumor Regression Score 2 1 39 -NCIT:C155944 Tumor Regression Score 3 1 40 -NCIT:C160731 GIST Histologic Grade 1 41 -NCIT:C160732 GIST Grade 1 2 42 -NCIT:C160733 GIST Grade 2 2 43 -NCIT:C168575 European Consensus on Grading of Bone Marrow Fibrosis 1 44 -NCIT:C168576 Marrow Fibrosis Grade 0 2 45 -NCIT:C168577 Marrow Fibrosis Grade 1 2 46 -NCIT:C168578 Marrow Fibrosis Grade 2 2 47 -NCIT:C168579 Marrow Fibrosis Grade 3 2 48 -NCIT:C168872 Adverse Event Grading System 1 49 -NCIT:C18000 Histologic Grade 1 50 -NCIT:C113729 Grade B 2 51 -NCIT:C113730 Grade X 2 52 -NCIT:C14158 High Grade 2 53 -NCIT:C14161 Low Grade 2 54 -NCIT:C14162 Moderately Differentiated 2 55 -NCIT:C14167 Poorly Differentiated 2 56 -NCIT:C14171 Well Differentiated 2 57 -NCIT:C14176 Undifferentiated 2 58 -NCIT:C162674 Highest Grade 2 59 -NCIT:C28083 Intermediate Grade 2 60 -NCIT:C18314 Cellular Differentiation 1 61 -NCIT:C18513 Nuclear Grade 1 62 -NCIT:C104011 Nuclear Grade III or IV 2 63 -NCIT:C62411 Fuhrman Nuclear Grade 2 64 -NCIT:C62428 Fuhrman Grade 1 3 65 -NCIT:C62429 Fuhrman Grade 2 3 66 -NCIT:C62430 Fuhrman Grade 3 3 67 -NCIT:C62431 Fuhrman Grade 4 3 68 -NCIT:C25595 Nottingham Score 1 69 -NCIT:C48934 Total Nottingham Score 2 70 -NCIT:C28077 Grade 1 1 71 -NCIT:C62394 WHO Central Nervous System Grade I 2 72 -NCIT:C28078 Grade 2 1 73 -NCIT:C62395 WHO Central Nervous System Grade II 2 74 -NCIT:C28079 Grade 3 1 75 -NCIT:C28080 Grade 3a 2 76 -NCIT:C28081 Grade 3b 2 77 -NCIT:C62396 WHO Central Nervous System Grade III 2 78 -NCIT:C28082 Grade 4 1 79 -NCIT:C62397 WHO Central Nervous System Grade IV 2 80 -NCIT:C28084 Gleason Score for Prostate Cancer 1 81 -NCIT:C28090 Gleason Score 6 2 82 -NCIT:C28091 Gleason Score 7 2 83 -NCIT:C28092 Gleason Score 8 2 84 -NCIT:C28093 Gleason Score 9 2 85 -NCIT:C28094 Gleason Score 10 2 86 -NCIT:C28095 Gleason Score 2 2 87 -NCIT:C28096 Gleason Score 3 2 88 -NCIT:C28097 Gleason Score 4 2 89 -NCIT:C28098 Gleason Score 5 2 90 -NCIT:C48602 Total Gleason Score for Prostate Cancer 2 91 -NCIT:C28107 Gleason Grading System 1 92 -NCIT:C137992 Gleason Grade Group 1 2 93 -NCIT:C137993 Gleason Grade Group 2 2 94 -NCIT:C137994 Gleason Grade Group 3 2 95 -NCIT:C137995 Gleason Grade Group 4 2 96 -NCIT:C137996 Gleason Grade Group 5 2 97 -NCIT:C28085 Gleason Pattern 1 2 98 -NCIT:C28086 Gleason Pattern 2 2 99 -NCIT:C28087 Gleason Pattern 3 2 100 -NCIT:C28088 Gleason Pattern 4 2 101 -NCIT:C28089 Gleason Pattern 5 2 102 -NCIT:C48603 Primary Gleason Pattern 2 103 -NCIT:C48604 Secondary Gleason Pattern 2 104 -NCIT:C48605 Tertiary Gleason Pattern 2 105 -NCIT:C94678 Grade 2/3 1 106 -NCIT:C95149 Ishak Score 1 107 -NCIT:C157159 Ishak Score 1-2 2 108 -NCIT:C157161 Ishak Score 3-4 2 109 -NCIT:C159868 Ishak Score Unknown 2 110 -NCIT:C95150 Ishak Score 0 2 111 -NCIT:C95151 Ishak Score 1 2 112 -NCIT:C95152 Ishak Score 2 2 113 -NCIT:C95153 Ishak Score 3 2 114 -NCIT:C95154 Ishak Score 4 2 115 -NCIT:C95155 Ishak Score 5 2 116 -NCIT:C95156 Ishak Score 6 2 117 diff --git a/rsrc/classificationTrees/NCITsex/numbered_hierarchies.tsv b/rsrc/classificationTrees/NCITsex/numbered_hierarchies.tsv deleted file mode 100644 index 24daadeb..00000000 --- a/rsrc/classificationTrees/NCITsex/numbered_hierarchies.tsv +++ /dev/null @@ -1,2 +0,0 @@ -NCIT:C20197 male 1 2 -NCIT:C16576 female 1 3 diff --git a/rsrc/classificationTrees/NCITstage/numbered_hierarchies.tsv b/rsrc/classificationTrees/NCITstage/numbered_hierarchies.tsv deleted file mode 100644 index 6e666fa4..00000000 --- a/rsrc/classificationTrees/NCITstage/numbered_hierarchies.tsv +++ /dev/null @@ -1,164 +0,0 @@ -NCIT:C28108 Disease Stage Qualifier 0 1 -NCIT:C115134 BCLC Stage 1 2 -NCIT:C116832 CNS Leukemia at Diagnosis 1 3 -NCIT:C116833 CNS1 2 4 -NCIT:C116834 CNS2 2 5 -NCIT:C116836 CNS 2a 3 6 -NCIT:C116837 CNS 2b 3 7 -NCIT:C116838 CNS 2c 3 8 -NCIT:C116835 CNS3 2 9 -NCIT:C116840 CNS 3a 3 10 -NCIT:C116841 CNS 3b 3 11 -NCIT:C116843 CNS 3c 3 12 -NCIT:C125738 FIGO Stage 1 13 -NCIT:C96243 FIGO Stage 0 2 14 -NCIT:C96244 FIGO Stage I 2 15 -NCIT:C96245 FIGO Stage IA 3 16 -NCIT:C96246 FIGO Stage IA1 4 17 -NCIT:C96247 FIGO Stage IA2 4 18 -NCIT:C96248 FIGO Stage IB 3 19 -NCIT:C162222 FIGO Stage IB3 4 20 -NCIT:C96249 FIGO Stage IB1 4 21 -NCIT:C96250 FIGO Stage IB2 4 22 -NCIT:C96251 FIGO Stage IC 3 23 -NCIT:C128099 FIGO Stage IC1 4 24 -NCIT:C128100 FIGO Stage IC2 4 25 -NCIT:C128101 FIGO Stage IC3 4 26 -NCIT:C96252 FIGO Stage II 2 27 -NCIT:C96253 FIGO Stage IIA 3 28 -NCIT:C162223 FIGO Stage IIA1 4 29 -NCIT:C162224 FIGO Stage IIA2 4 30 -NCIT:C96254 FIGO Stage IIB 3 31 -NCIT:C96255 FIGO Stage III 2 32 -NCIT:C96256 FIGO Stage IIIA 3 33 -NCIT:C128102 FIGO Stage IIIA1 4 34 -NCIT:C128103 FIGO Stage IIIA1(i) 5 35 -NCIT:C128104 FIGO Stage IIIA1(ii) 5 36 -NCIT:C128105 FIGO Stage IIIA2 4 37 -NCIT:C96257 FIGO Stage IIIB 3 38 -NCIT:C96258 FIGO Stage IIIC 3 39 -NCIT:C96259 FIGO Stage IIIC1 4 40 -NCIT:C96260 FIGO Stage IIIC2 4 41 -NCIT:C96261 FIGO Stage IV 2 42 -NCIT:C96262 FIGO Stage IVA 3 43 -NCIT:C96263 FIGO Stage IVB 3 44 -NCIT:C132248 AJCC v8 Stage 1 45 -NCIT:C140962 Differentiated Thyroid Gland Carcinoma Under 55 Years AJCC v8 Stage 2 46 -NCIT:C140964 Differentiated Thyroid Gland Carcinoma 55 Years and Older AJCC v8 Stage 2 47 -NCIT:C134969 AIDS-Related Kaposi Sarcoma Stage 1 48 -NCIT:C134970 AIDS-Related Kaposi Sarcoma T (Tumor) Status 2 49 -NCIT:C134971 AIDS-Related Kaposi Sarcoma T0 (Good Risk): Localized Tumor 3 50 -NCIT:C169109 AIDS-Related Kaposi Sarcoma T0 (Good Risk): Skin and/or Lymph Nodes 4 51 -NCIT:C169110 AIDS-Related Kaposi Sarcoma T0 (Good Risk): Minimal Oral Disease 4 52 -NCIT:C134972 AIDS-Related Kaposi Sarcoma T1 (Poor Risk): Widespread Tumor 3 53 -NCIT:C134973 AIDS-Related Kaposi Sarcoma T1 (Poor Risk): Edema or Ulceration 4 54 -NCIT:C134974 AIDS-Related Kaposi Sarcoma T1 (Poor Risk): Extensive Oral Involvement 4 55 -NCIT:C134975 AIDS-Related Kaposi Sarcoma T1 (Poor Risk): Gastrointestinal Tract Involvement 4 56 -NCIT:C134976 AIDS-Related Kaposi Sarcoma T1 (Poor Risk): Pulmonary Involvement 4 57 -NCIT:C134977 AIDS-Related Kaposi Sarcoma T1 (Poor Risk): Other Non-Nodal Viscera Involvement 4 58 -NCIT:C134978 AIDS-Related Kaposi Sarcoma I (Immune System) Status 2 59 -NCIT:C134979 AIDS-Related Kaposi Sarcoma I0 (Good Risk) 3 60 -NCIT:C134980 AIDS-Related Kaposi Sarcoma I1 (Poor Risk) 3 61 -NCIT:C134981 AIDS-Related Kaposi Sarcoma S (Systemic Illness) Status 2 62 -NCIT:C134982 AIDS-Related Kaposi Sarcoma S0 (Good Risk) 3 63 -NCIT:C134983 AIDS-Related Kaposi Sarcoma S1 (Poor Risk) 3 64 -NCIT:C134984 AIDS-Related Kaposi Sarcoma Overall Risk Group 2 65 -NCIT:C134985 AIDS-Related Kaposi Sarcoma Good Risk 3 66 -NCIT:C134986 AIDS-Related Kaposi Sarcoma Poor Risk 3 67 -NCIT:C139006 Durie/Salmon Stage 1 68 -NCIT:C139007 International Staging System Stage 1 69 -NCIT:C139445 Breast Cancer Anatomic Stage 1 70 -NCIT:C139446 Breast Cancer Prognostic Stage 1 71 -NCIT:C139577 Stage R 1 72 -NCIT:C139578 Stage R0 2 73 -NCIT:C139579 Stage R1 2 74 -NCIT:C139580 Stage R2 2 75 -NCIT:C139581 Stage RX 2 76 -NCIT:C140161 Whitmore-Jewett Stage 1 77 -NCIT:C141099 ENSAT Stage 1 78 -NCIT:C141138 Ann Arbor Stage 1 79 -NCIT:C141147 Lugano Stage 1 80 -NCIT:C141199 Stage IE 1 81 -NCIT:C141200 Stage IIE 1 82 -NCIT:C141207 Rai Stage 1 83 -NCIT:C141212 Binet Stage 1 84 -NCIT:C80134 Binet Stage A 2 85 -NCIT:C80135 Binet Stage B 2 86 -NCIT:C80136 Binet Stage C 2 87 -NCIT:C141216 St. Jude Stage 1 88 -NCIT:C141392 RISS Stage 1 89 -NCIT:C141461 Occult Stage 1 90 -NCIT:C143151 Masaoka-Koga Stage 1 91 -NCIT:C146847 Mediastinal Malignant Germ Cell Tumor Stage 1 92 -NCIT:C159243 Staging Incomplete 1 93 -NCIT:C159723 Incomplete Staging (cM) 2 94 -NCIT:C159724 Incomplete Staging (pM) 2 95 -NCIT:C27966 Stage I 1 96 -NCIT:C27975 Stage IA 2 97 -NCIT:C136485 Stage IA3 3 98 -NCIT:C27983 Stage IA1 3 99 -NCIT:C27984 Stage IA2 3 100 -NCIT:C27976 Stage IB 2 101 -NCIT:C96240 Stage IB Cervix 3 102 -NCIT:C28052 Stage IB1 4 103 -NCIT:C28053 Stage IB2 4 104 -NCIT:C27981 Stage IC 2 105 -NCIT:C27970 Stage III 1 106 -NCIT:C137676 Stage IIID 2 107 -NCIT:C27977 Stage IIIA 2 108 -NCIT:C139980 Stage IIIA1 3 109 -NCIT:C139981 Stage IIIA2 3 110 -NCIT:C27978 Stage IIIB 2 111 -NCIT:C27982 Stage IIIC 2 112 -NCIT:C95179 Stage IIIC1 3 113 -NCIT:C95180 Stage IIIC2 3 114 -NCIT:C27971 Stage IV 1 115 -NCIT:C27972 Stage IVS 2 116 -NCIT:C27979 Stage IVA 2 117 -NCIT:C141344 Stage IVA1 3 118 -NCIT:C141345 Stage IVA2 3 119 -NCIT:C27980 Stage IVB 2 120 -NCIT:C28055 Stage IVC 2 121 -NCIT:C27973 Stage V 1 122 -NCIT:C28051 Stage 0 1 123 -NCIT:C27964 Stage 0a 2 124 -NCIT:C27965 Stage 0is 2 125 -NCIT:C28054 Stage II 1 126 -NCIT:C27967 Stage IIA 2 127 -NCIT:C96242 Stage IIA Cervix 3 128 -NCIT:C95177 Stage IIA1 4 129 -NCIT:C95178 Stage IIA2 4 130 -NCIT:C27968 Stage IIB 2 131 -NCIT:C27969 Stage IIC 2 132 -NCIT:C96241 Stage II Cervix 2 133 -NCIT:C96242 Stage IIA Cervix 3 134 -NCIT:C95177 Stage IIA1 4 135 -NCIT:C95178 Stage IIA2 4 136 -NCIT:C28056 Stage A 1 137 -NCIT:C28057 Stage B 1 138 -NCIT:C28058 Stage B1 2 139 -NCIT:C28059 Stage B2 2 140 -NCIT:C28060 Stage C 1 141 -NCIT:C28061 Stage D 1 142 -NCIT:C28062 Stage D1 2 143 -NCIT:C28063 Stage D2 2 144 -NCIT:C28064 Extensive Stage 1 145 -NCIT:C28065 Limited Stage 1 146 -NCIT:C28066 Stage Unspecified 1 147 -NCIT:C28067 Hepatoblastoma Stage 1 148 -NCIT:C28068 Postsurgical Stage I 2 149 -NCIT:C28069 Postsurgical Stage II 2 150 -NCIT:C28070 Postsurgical Stage III 2 151 -NCIT:C28071 Postsurgical Stage IV 2 152 -NCIT:C28072 PRETEXT Stage 1 2 153 -NCIT:C28073 PRETEXT Stage 2 2 154 -NCIT:C28074 PRETEXT Stage 3 2 155 -NCIT:C28075 PRETEXT Stage 4 2 156 -NCIT:C28285 Stage Is 1 157 -NCIT:C90529 AJCC v6 Stage 1 158 -NCIT:C90530 AJCC v7 Stage 1 159 -NCIT:C140961 Differentiated Thyroid Gland Carcinoma Under 45 Years AJCC v7 Stage 2 160 -NCIT:C140963 Differentiated Thyroid Gland Carcinoma 45 Years and Older AJCC v7 Stage 2 161 -NCIT:C92207 Stage Unknown 1 162 -NCIT:C93281 Advanced Stage 1 163 -NCIT:C95957 Stage X 1 164 diff --git a/rsrc/classificationTrees/NCITtnm/numbered_hierarchies.tsv b/rsrc/classificationTrees/NCITtnm/numbered_hierarchies.tsv deleted file mode 100644 index de0b6817..00000000 --- a/rsrc/classificationTrees/NCITtnm/numbered_hierarchies.tsv +++ /dev/null @@ -1,117 +0,0 @@ -NCIT:C48698 Cancer TNM Finding Category 0 1 -NCIT:C133398 Postneoadjuvant Therapy Pathologic TNM Finding 1 2 -NCIT:C143081 Posttherapy Clinical TNM Finding 1 3 -NCIT:C48739 Pathologic TNM Finding 1 4 -NCIT:C48886 Pathologic Distant Metastasis TNM Finding 2 5 -NCIT:C48740 pM0 Stage Finding 3 6 -NCIT:C48741 pM1 Stage Finding 3 7 -NCIT:C48742 pM1a Stage Finding 4 8 -NCIT:C48743 pM1b Stage Finding 4 9 -NCIT:C48744 pM1c Stage Finding 4 10 -NCIT:C48887 Pathologic Regional Lymph Nodes TNM Finding 2 11 -NCIT:C48745 pN0 Stage Finding 3 12 -NCIT:C48746 pN1 Stage Finding 3 13 -NCIT:C48747 pN1a Stage Finding 4 14 -NCIT:C48748 pN1b Stage Finding 4 15 -NCIT:C48749 pN1c Stage Finding 4 16 -NCIT:C48750 pN2 Stage Finding 3 17 -NCIT:C48751 pN2a Stage Finding 4 18 -NCIT:C48752 pN2b Stage Finding 4 19 -NCIT:C48753 pN2c Stage Finding 4 20 -NCIT:C48754 pN3 Stage Finding 3 21 -NCIT:C48755 pN3a Stage Finding 4 22 -NCIT:C48756 pN3b Stage Finding 4 23 -NCIT:C48757 pN3c Stage Finding 4 24 -NCIT:C48888 Pathologic Primary Tumor TNM Finding 2 25 -NCIT:C48758 pT0 Stage Finding 3 26 -NCIT:C48759 pT1 Stage Finding 3 27 -NCIT:C48760 pT1a Stage Finding 4 28 -NCIT:C48761 pT1b Stage Finding 4 29 -NCIT:C48763 pT1c Stage Finding 4 30 -NCIT:C48764 pT2 Stage Finding 3 31 -NCIT:C48765 pT2a Stage Finding 4 32 -NCIT:C48766 pT2b Stage Finding 4 33 -NCIT:C48767 pT2c Stage Finding 4 34 -NCIT:C48768 pT3 Stage Finding 3 35 -NCIT:C48769 pT3a Stage Finding 4 36 -NCIT:C48770 pT3b Stage Finding 4 37 -NCIT:C48771 pT3c Stage Finding 4 38 -NCIT:C48772 pT4 Stage Finding 3 39 -NCIT:C48773 pT4a Stage Finding 4 40 -NCIT:C48774 pT4b Stage Finding 4 41 -NCIT:C48775 pT4c Stage Finding 4 42 -NCIT:C48776 pT4d Stage Finding 4 43 -NCIT:C48879 Generic TNM Finding 1 44 -NCIT:C48777 Cancer TNM Vessel Invasion Finding Category 2 45 -NCIT:C147091 Lymphovascular Invasion 0 3 46 -NCIT:C147092 Lymphovascular Invasion 1 3 47 -NCIT:C147093 Lymphovascular Invasion 9 3 48 -NCIT:C147094 Lymphovascular Invasion 2 3 49 -NCIT:C147095 Lymphovascular Invasion 3 3 50 -NCIT:C147096 Lymphovascular Invasion 4 3 51 -NCIT:C48883 Generic Distant Metastasis TNM Finding 2 52 -NCIT:C48699 M0 Stage Finding 3 53 -NCIT:C95956 cM0 (i+) Stage Finding 4 54 -NCIT:C48700 M1 Stage Finding 3 55 -NCIT:C48701 M1a Stage Finding 4 56 -NCIT:C48702 M1b Stage Finding 4 57 -NCIT:C48703 M1c Stage Finding 4 58 -NCIT:C48704 MX Stage Finding 3 59 -NCIT:C48884 Generic Regional Lymph Nodes TNM Finding 2 60 -NCIT:C48705 N0 Stage Finding 3 61 -NCIT:C95921 N0 (i-) Stage Finding 4 62 -NCIT:C95922 N0 (i+) Stage Finding 4 63 -NCIT:C95923 N0 (mol-) Stage Finding 4 64 -NCIT:C95925 N0 (mol+) Stage Finding 4 65 -NCIT:C48706 N1 Stage Finding 3 66 -NCIT:C48707 N1a Stage Finding 4 67 -NCIT:C48708 N1b Stage Finding 4 68 -NCIT:C95929 N1bI Stage Finding 5 69 -NCIT:C95935 N1bII Stage Finding 5 70 -NCIT:C95936 N1bIII Stage Finding 5 71 -NCIT:C95937 N1bIV Stage Finding 5 72 -NCIT:C48709 N1c Stage Finding 4 73 -NCIT:C95955 N1mi Stage Finding 4 74 -NCIT:C48714 N3 Stage Finding 3 75 -NCIT:C48715 N3a Stage Finding 4 76 -NCIT:C48716 N3b Stage Finding 4 77 -NCIT:C48717 N3c Stage Finding 4 78 -NCIT:C48718 NX Stage Finding 3 79 -NCIT:C48786 N2 Stage Finding 3 80 -NCIT:C48711 N2a Stage Finding 4 81 -NCIT:C48712 N2b Stage Finding 4 82 -NCIT:C48713 N2c Stage Finding 4 83 -NCIT:C96026 N4 Stage Finding 3 84 -NCIT:C48885 Generic Primary Tumor TNM Finding 2 85 -NCIT:C106299 Any T 3 86 -NCIT:C132010 T5 Stage Finding 3 87 -NCIT:C48719 T0 Stage Finding 3 88 -NCIT:C48720 T1 Stage Finding 3 89 -NCIT:C48721 T1a Stage Finding 4 90 -NCIT:C48722 T1b Stage Finding 4 91 -NCIT:C48723 T1c Stage Finding 4 92 -NCIT:C95805 T1mi Stage Finding 4 93 -NCIT:C48724 T2 Stage Finding 3 94 -NCIT:C148411 T2d Stage Finding 4 95 -NCIT:C48725 T2a Stage Finding 4 96 -NCIT:C48726 T2b Stage Finding 4 97 -NCIT:C48727 T2c Stage Finding 4 98 -NCIT:C48728 T3 Stage Finding 3 99 -NCIT:C148412 T3d Stage Finding 4 100 -NCIT:C48729 T3a Stage Finding 4 101 -NCIT:C48730 T3b Stage Finding 4 102 -NCIT:C48731 T3c Stage Finding 4 103 -NCIT:C48732 T4 Stage Finding 3 104 -NCIT:C48733 T4a Stage Finding 4 105 -NCIT:C48734 T4b Stage Finding 4 106 -NCIT:C48735 T4c Stage Finding 4 107 -NCIT:C48736 T4d Stage Finding 4 108 -NCIT:C48737 TX Stage Finding 3 109 -NCIT:C48738 Tis Stage Finding 3 110 -NCIT:C96025 Ta Stage Finding 4 111 -NCIT:C48880 Recurrent Cancer TNM Finding 1 112 -NCIT:C48881 Clinical TNM Finding 1 113 -NCIT:C161009 Clinical Primary Tumor TNM Finding 2 114 -NCIT:C162609 Clinical Regional Lymph Nodes TNM Finding 2 115 -NCIT:C162610 Clinical Distant Metastasis TNM Finding 2 116 -NCIT:C48882 Autopsy TNM Finding 1 117 diff --git a/rsrc/classificationTrees/NCITtnm/tnm-NCIT-matching.tsv b/rsrc/classificationTrees/NCITtnm/tnm-NCIT-matching.tsv deleted file mode 100644 index 1e1ff182..00000000 --- a/rsrc/classificationTrees/NCITtnm/tnm-NCIT-matching.tsv +++ /dev/null @@ -1,96 +0,0 @@ -# This table is for matching TNM parts to NCIT terms. Process in ascending -# specificity; i.e. a general code like M1 can be overridden later by pM1b -tnm_particle id label hierarchy_depth -M0 NCIT:C48699 M0 Stage Finding 3 -M1 NCIT:C48700 M1 Stage Finding 3 -MX NCIT:C48704 MX Stage Finding 3 -N0 NCIT:C48705 N0 Stage Finding 3 -N1 NCIT:C48706 N1 Stage Finding 3 -N2 NCIT:C48786 N2 Stage Finding 3 -N3 NCIT:C48714 N3 Stage Finding 3 -N4 NCIT:C96026 N4 Stage Finding 3 -NX NCIT:C48718 NX Stage Finding 3 -T0 NCIT:C48719 T0 Stage Finding 3 -T1 NCIT:C48720 T1 Stage Finding 3 -T2 NCIT:C48724 T2 Stage Finding 3 -T3 NCIT:C48728 T3 Stage Finding 3 -T4 NCIT:C48732 T4 Stage Finding 3 -T5 NCIT:C132010 T5 Stage Finding 3 -Tis NCIT:C48738 Tis Stage Finding 3 -TX NCIT:C48737 TX Stage Finding 3 -cM0 (i+) NCIT:C95956 cM0 (i+) Stage Finding 4 -M1a NCIT:C48701 M1a Stage Finding 4 -M1b NCIT:C48702 M1b Stage Finding 4 -M1c NCIT:C48703 M1c Stage Finding 4 -N0 NCIT:C48705 N0 Stage Finding 3 -N0 (i-) NCIT:C95921 N0 (i-) Stage Finding 4 -N0 (i+) NCIT:C95922 N0 (i+) Stage Finding 4 -N0 (mol-) NCIT:C95923 N0 (mol-) Stage Finding 4 -N0 (mol+) NCIT:C95925 N0 (mol+) Stage Finding 4 -N1a NCIT:C48707 N1a Stage Finding 4 -N1b NCIT:C48708 N1b Stage Finding 4 -N1c NCIT:C48709 N1c Stage Finding 4 -N1mi NCIT:C95955 N1mi Stage Finding 4 -N2a NCIT:C48711 N2a Stage Finding 4 -N2b NCIT:C48712 N2b Stage Finding 4 -N2c NCIT:C48713 N2c Stage Finding 4 -N3a NCIT:C48715 N3a Stage Finding 4 -N3b NCIT:C48716 N3b Stage Finding 4 -N3c NCIT:C48717 N3c Stage Finding 4 -T1a NCIT:C48721 T1a Stage Finding 4 -T1b NCIT:C48722 T1b Stage Finding 4 -T1c NCIT:C48723 T1c Stage Finding 4 -T1mi NCIT:C95805 T1mi Stage Finding 4 -T2a NCIT:C48725 T2a Stage Finding 4 -T2b NCIT:C48726 T2b Stage Finding 4 -T2c NCIT:C48727 T2c Stage Finding 4 -T2d NCIT:C148411 T2d Stage Finding 4 -T3a NCIT:C48729 T3a Stage Finding 4 -T3b NCIT:C48730 T3b Stage Finding 4 -T3c NCIT:C48731 T3c Stage Finding 4 -T3d NCIT:C148412 T3d Stage Finding 4 -T4a NCIT:C48733 T4a Stage Finding 4 -T4b NCIT:C48734 T4b Stage Finding 4 -T4c NCIT:C48735 T4c Stage Finding 4 -T4d NCIT:C48736 T4d Stage Finding 4 -Ta NCIT:C96025 Ta Stage Finding 4 -N1bI NCIT:C95929 N1bI Stage Finding 5 -N1bII NCIT:C95935 N1bII Stage Finding 5 -N1bIII NCIT:C95936 N1bIII Stage Finding 5 -N1bIV NCIT:C95937 N1bIV Stage Finding 5 -pM0 NCIT:C48740 pM0 Stage Finding 3 -pM1 NCIT:C48741 pM1 Stage Finding 3 -pN0 NCIT:C48745 pN0 Stage Finding 3 -pN1 NCIT:C48746 pN1 Stage Finding 3 -pN2 NCIT:C48750 pN2 Stage Finding 3 -pN3 NCIT:C48754 pN3 Stage Finding 3 -pT0 NCIT:C48758 pT0 Stage Finding 3 -pT1 NCIT:C48759 pT1 Stage Finding 3 -pT2 NCIT:C48764 pT2 Stage Finding 3 -pT3 NCIT:C48768 pT3 Stage Finding 3 -pT4 NCIT:C48772 pT4 Stage Finding 3 -pM1a NCIT:C48742 pM1a Stage Finding 4 -pM1b NCIT:C48743 pM1b Stage Finding 4 -pM1c NCIT:C48744 pM1c Stage Finding 4 -pN1a NCIT:C48747 pN1a Stage Finding 4 -pN1b NCIT:C48748 pN1b Stage Finding 4 -pN1c NCIT:C48749 pN1c Stage Finding 4 -pN2a NCIT:C48751 pN2a Stage Finding 4 -pN2b NCIT:C48752 pN2b Stage Finding 4 -pN2c NCIT:C48753 pN2c Stage Finding 4 -pN3a NCIT:C48755 pN3a Stage Finding 4 -pN3b NCIT:C48756 pN3b Stage Finding 4 -pN3c NCIT:C48757 pN3c Stage Finding 4 -pT1a NCIT:C48760 pT1a Stage Finding 4 -pT1b NCIT:C48761 pT1b Stage Finding 4 -pT1c NCIT:C48763 pT1c Stage Finding 4 -pT2a NCIT:C48765 pT2a Stage Finding 4 -pT2b NCIT:C48766 pT2b Stage Finding 4 -pT2c NCIT:C48767 pT2c Stage Finding 4 -pT3a NCIT:C48769 pT3a Stage Finding 4 -pT3b NCIT:C48770 pT3b Stage Finding 4 -pT3c NCIT:C48771 pT3c Stage Finding 4 -pT4a NCIT:C48773 pT4a Stage Finding 4 -pT4b NCIT:C48774 pT4b Stage Finding 4 -pT4c NCIT:C48775 pT4c Stage Finding 4 -pT4d NCIT:C48776 pT4d Stage Finding 4 diff --git a/rsrc/classificationTrees/UBERON/numbered_hierarchies.tsv b/rsrc/classificationTrees/UBERON/numbered_hierarchies.tsv deleted file mode 100644 index e0e0e3e1..00000000 --- a/rsrc/classificationTrees/UBERON/numbered_hierarchies.tsv +++ /dev/null @@ -1,52401 +0,0 @@ -UBERON:0000000 processual entity 0 1 -UBERON:0000104 life cycle 1 2 -UBERON:0000105 life cycle stage 1 3 -UBERON:0000066 fully formed stage 2 4 -UBERON:0000068 embryo stage 2 5 -UBERON:0000069 larval stage 2 6 -UBERON:0004728 amphibian larval stage 3 7 -UBERON:0009849 tadpole stage 4 8 -UBERON:0004729 nematode larval stage 3 9 -UBERON:0004730 instar larval stage 3 10 -UBERON:0008264 echinopluteus larval stage 3 11 -UBERON:0014405 nymph stage 3 12 -UBERON:0014864 caterpillar stage 3 13 -UBERON:0018378 crustacean larval stage 3 14 -UBERON:0000070 pupal stage 2 15 -UBERON:0000071 death stage 2 16 -UBERON:0000092 post-embryonic stage 2 17 -UBERON:0000106 zygote stage 2 18 -UBERON:0000107 cleavage stage 2 19 -UBERON:0000108 blastula stage 2 20 -UBERON:0000109 gastrula stage 2 21 -UBERON:0000110 neurula stage 2 22 -UBERON:0000111 organogenesis stage 2 23 -UBERON:0000112 sexually immature stage 2 24 -UBERON:0000113 post-juvenile adult stage 2 25 -UBERON:0004707 pharyngula stage 2 26 -UBERON:0007220 late embryonic stage 2 27 -UBERON:0007221 neonate stage 2 28 -UBERON:0007222 late adult stage 2 29 -UBERON:0007232 2 cell stage 2 30 -UBERON:0007233 4 cell stage 2 31 -UBERON:0007236 8 cell stage 2 32 -UBERON:0012101 perinatal stage 2 33 -UBERON:0014406 nauplius stage 2 34 -UBERON:0014856 cysticercus stage 2 35 -UBERON:0014857 zoea stage 2 36 -UBERON:0014858 crustacean post-larval stage 2 37 -UBERON:0014859 megalopa stage 3 38 -UBERON:0014860 copepodite stage 2 39 -UBERON:0014861 glaucothoe stage 2 40 -UBERON:0014862 trochophore stage 2 41 -UBERON:0014863 veliger stage 2 42 -UBERON:0018241 prime adult stage 2 43 -UBERON:0018685 nursing stage 2 44 -UBERON:0034919 juvenile stage 2 45 -UBERON:0034920 infant stage 2 46 -UBERON:0035943 life cycle temporal boundary 1 47 -UBERON:0035944 life-death temporal boundary 2 48 -UBERON:0035945 start of life cycle 2 49 -UBERON:0035946 start of neonate stage 2 50 -UBERON:0001062 anatomical entity 0 51 -UBERON:0000465 material anatomical entity 1 52 -UBERON:0000061 anatomical structure 2 53 -UBERON:0000345 myelin 3 54 -UBERON:0000363 reticuloendothelial system 3 55 -UBERON:0014779 liver reticuloendothelial system 4 56 -UBERON:0000467 anatomical system 3 57 -UBERON:0000949 endocrine system 4 58 -UBERON:0000990 reproductive system 4 59 -UBERON:0000079 male reproductive system 5 60 -UBERON:0000474 female reproductive system 5 61 -UBERON:0001004 respiratory system 4 62 -UBERON:0005155 open tracheal system 5 63 -UBERON:0001007 digestive system 4 64 -UBERON:6001842 insect embryonic/larval digestive system 5 65 -UBERON:0001008 renal system 4 66 -UBERON:0001009 circulatory system 4 67 -UBERON:0009054 open circulatory system 5 68 -UBERON:0009055 closed circulatory system 5 69 -UBERON:0009056 two-pass circulatory system 6 70 -UBERON:0009057 one-pass circulatory system 6 71 -UBERON:6001664 embryonic/larval circulatory system 5 72 -UBERON:0001016 nervous system 4 73 -UBERON:6001911 insect embryonic/larval nervous system 5 74 -UBERON:6003559 adult nervous system 5 75 -UBERON:0001032 sensory system 4 76 -UBERON:0002104 visual system 5 77 -UBERON:0002105 vestibulo-auditory system 5 78 -UBERON:0002540 lateral line system 5 79 -UBERON:2001468 anterior lateral line system 6 80 -UBERON:2001471 posterior lateral line system 6 81 -UBERON:2001872 trunk sensory canal system 6 82 -UBERON:2001873 head sensory canal system 6 83 -UBERON:2005114 middle lateral line system 6 84 -UBERON:0003942 somatic sensory system 5 85 -UBERON:0004681 vestibular system 5 86 -UBERON:0005726 chemosensory system 5 87 -UBERON:0005725 olfactory system 6 88 -UBERON:0007037 mechanosensory system 5 89 -UBERON:0016490 auditory system 6 90 -UBERON:0009954 vomeronasal system 5 91 -UBERON:0036255 interoceptive system 5 92 -UBERON:3000428 perilymphatic system 5 93 -UBERON:0001033 gustatory system 4 94 -UBERON:0001750 lacrimal apparatus 4 95 -UBERON:0002193 hemolymphoid system 4 96 -UBERON:0002204 musculoskeletal system 4 97 -UBERON:0002330 exocrine system 4 98 -UBERON:0002390 hematopoietic system 4 99 -UBERON:0002405 immune system 4 100 -UBERON:0002416 integumental system 4 101 -UBERON:6005393 embryonic/larval integumentary system 5 102 -UBERON:6005396 adult integumentary system 5 103 -UBERON:0002465 lymphoid system 4 104 -UBERON:0003956 aqueous drainage system 4 105 -UBERON:0004092 hypothalamus-pituitary axis 4 106 -UBERON:0004100 renal collecting system 4 107 -UBERON:0004122 genitourinary system 4 108 -UBERON:0004456 entire sense organ system 4 109 -UBERON:0004535 cardiovascular system 4 110 -UBERON:0011695 embryonic cardiovascular system 5 111 -UBERON:0004892 lobar bronchus alveolar system 4 112 -UBERON:0005281 ventricular system of central nervous system 4 113 -UBERON:0005282 ventricular system of brain 4 114 -UBERON:0005409 alimentary part of gastrointestinal system 4 115 -UBERON:0007798 vascular system 4 116 -UBERON:0004571 systemic arterial system 5 117 -UBERON:0004572 arterial system 5 118 -UBERON:0004582 venous system 5 119 -UBERON:0005720 hindbrain venous system 6 120 -UBERON:0014699 extraembryonic venous system 6 121 -UBERON:0008886 pulmonary vascular system 5 122 -UBERON:0013146 venous system of brain 5 123 -UBERON:0014701 extraembryonic vascular system 5 124 -UBERON:0014699 extraembryonic venous system 6 125 -UBERON:0008251 water vascular system 4 126 -UBERON:0012125 dermatological-muscosal system 4 127 -UBERON:0015203 non-connected functional system 4 128 -UBERON:0015204 glandular system 5 129 -UBERON:0023943 molecular system 4 130 -UBERON:0025588 histaminergic system 5 131 -UBERON:0025589 catecholamine system 5 132 -UBERON:0027221 adrenergic system 6 133 -UBERON:0027225 noradrenergic system 6 134 -UBERON:0027239 dopaminergic system 6 135 -UBERON:0025591 gABAergic system 5 136 -UBERON:0025592 glutamatergic system 5 137 -UBERON:0025593 serotonergic system 5 138 -UBERON:0025595 cholinergic system 5 139 -UBERON:0036145 glymphatic system 4 140 -UBERON:2001371 pancreatic system 4 141 -UBERON:3000141 endolymphatic system 4 142 -UBERON:3011048 genital system 4 143 -UBERON:4300126 tectorial restraint system 4 144 -UBERON:0000476 acellular anatomical structure 3 145 -UBERON:0000086 zona pellucida 4 146 -UBERON:0000207 compound eye corneal lens 4 147 -UBERON:0000920 egg chorion 4 148 -UBERON:0001002 cuticle 4 149 -UBERON:0001001 chitin-based cuticle 5 150 -UBERON:0018656 puparium 6 151 -UBERON:6004983 embryonic/larval cuticle 6 152 -UBERON:6004986 third instar larval cuticle 7 153 -UBERON:0003049 collagen and cuticulin-based cuticle 5 154 -UBERON:0002280 otolith 4 155 -UBERON:2000315 asteriscus 5 156 -UBERON:2000530 lapillus 5 157 -UBERON:2000676 sagitta 5 158 -UBERON:0003194 imaginal disc-derived wing vein 4 159 -UBERON:0003201 exocuticle 4 160 -UBERON:0003202 endocuticle 4 161 -UBERON:0003957 Bruch's membrane 4 162 -UBERON:0004034 cutaneous microfibril 4 163 -UBERON:0005079 eggshell 4 164 -UBERON:0005307 chorion-containing eggshell 5 165 -UBERON:0005746 primary vitreous 4 166 -UBERON:0005764 acellular membrane 4 167 -UBERON:0000482 basal lamina of epithelium 5 168 -UBERON:0004798 respiratory system basal lamina 6 169 -UBERON:0004799 trachea basal lamina 7 170 -UBERON:0004800 bronchus basal lamina 8 171 -UBERON:0001804 capsule of lens 5 172 -UBERON:0001967 reticular lamina of epithelium 5 173 -UBERON:0003490 respiratory system reticular lamina 6 174 -UBERON:0003492 bronchus reticular lamina 7 175 -UBERON:0003493 trachea reticular lamina 7 176 -UBERON:0007825 reticular membrane of spiral organ 6 177 -UBERON:0002226 basilar membrane of cochlea 5 178 -UBERON:0002233 tectorial membrane of cochlea 5 179 -UBERON:0002519 otolithic part of statoconial membrane 5 180 -UBERON:0003125 vitelline membrane 5 181 -UBERON:0005769 basement membrane of epithelium 5 182 -UBERON:0004367 Descemet's membrane 6 183 -UBERON:0004370 anterior limiting lamina of cornea 6 184 -UBERON:0005777 glomerular basement membrane 6 185 -UBERON:0007307 pronephric glomerular basement membrane 7 186 -UBERON:0008877 epidermal-dermal junction 6 187 -UBERON:0009651 nephron tubule basement membrane 6 188 -UBERON:0011922 cochlear basement membrane 6 189 -UBERON:0015329 respiratory system basement membrane 6 190 -UBERON:0009652 bronchus basement membrane 7 191 -UBERON:0009653 trachea basement membrane 7 192 -UBERON:0005787 lamina densa of glomerular basement membrane 5 193 -UBERON:0016567 statoconial membrane 5 194 -UBERON:0016914 lamina lucida 5 195 -UBERON:0035806 Hensen stripe 5 196 -UBERON:0035941 Kimura membrane 5 197 -UBERON:0036250 zone of basilar membrane of cochlea 5 198 -UBERON:0002820 zona arcuata of basilar membrane of cochlea 6 199 -UBERON:0036249 zona pectinata of basilar membrane of cochlea 6 200 -UBERON:0005788 lamina rara interna 4 201 -UBERON:0005789 lamina rara externa 4 202 -UBERON:0006582 statolith 4 203 -UBERON:0006844 cusp of tooth 4 204 -UBERON:0016929 lingual cusp of tooth 5 205 -UBERON:0018279 hypoconid 5 206 -UBERON:0018287 premolar 1 hypoconoid 6 207 -UBERON:0018288 paracone 5 208 -UBERON:0018298 stylocone 5 209 -UBERON:0018344 parastyle 5 210 -UBERON:0007490 keratin-based acellular structure 4 211 -UBERON:0007491 chitin-based acellular structure 4 212 -UBERON:0001001 chitin-based cuticle 5 213 -UBERON:0018656 puparium 6 214 -UBERON:6004983 embryonic/larval cuticle 6 215 -UBERON:6004986 third instar larval cuticle 7 216 -UBERON:0011357 Reissner's fiber 4 217 -UBERON:0011860 collection of collagen fibrils 4 218 -UBERON:0011861 aorta collagen fibril 5 219 -UBERON:0011862 pulmonary collagen fibril 5 220 -UBERON:0011863 bone collagen fibril 5 221 -UBERON:0011864 tendon collagen fibril 5 222 -UBERON:0011865 corneal stroma collagen fibril 5 223 -UBERON:0011904 gastrolith 4 224 -UBERON:0016568 gelatinous layer of statoconial membrane 4 225 -UBERON:0016569 subcupular meshwork of statoconial membrane 4 226 -UBERON:0017631 calcified structure of brain 4 227 -UBERON:0017632 pineal corpora arenacea 5 228 -UBERON:0017633 choroid plexus corpora arenacea 5 229 -UBERON:0018657 pupal case 4 230 -UBERON:0013198 cocoon 5 231 -UBERON:0018656 puparium 5 232 -UBERON:2001089 myoseptum 4 233 -UBERON:2000610 vertical myoseptum 5 234 -UBERON:2001186 collagenous dermal stroma 4 235 -UBERON:3010636 egg capsule 4 236 -UBERON:6007245 cuticular specialization 4 237 -UBERON:6001845 cephalopharyngeal skeleton 5 238 -UBERON:6001848 epipharyngeal sclerite 5 239 -UBERON:6004979 trichome 5 240 -UBERON:6004340 wing hair 6 241 -UBERON:6005913 arista lateral 6 242 -UBERON:6007248 chorionic specialization 4 243 -UBERON:6000046 dorsal appendage 5 244 -UBERON:0000480 anatomical group 3 245 -UBERON:6040003 non-connected developing system 4 246 -UBERON:6007116 presumptive embryonic/larval system 5 247 -UBERON:6001055 presumptive embryonic/larval nervous system 6 248 -UBERON:6001056 presumptive embryonic/larval central nervous system 6 249 -UBERON:6005569 presumptive embryonic/larval tracheal system 6 250 -UBERON:6040005 synaptic neuropil 4 251 -UBERON:6041000 synaptic neuropil block 4 252 -UBERON:6003632 adult central complex 5 253 -UBERON:0001999 iliopsoas 3 254 -UBERON:0003037 septum 3 255 -UBERON:0001706 nasal septum 4 256 -UBERON:0001822 orbital septum 4 257 -UBERON:0002099 cardiac septum 4 258 -UBERON:0002085 interatrial septum 5 259 -UBERON:0004154 atrial septum primum 6 260 -UBERON:0004155 atrial septum secundum 6 261 -UBERON:0004159 atrial septum intermedium 6 262 -UBERON:0002094 interventricular septum 5 263 -UBERON:0004153 ventricular septum intermedium 6 264 -UBERON:0004142 outflow tract septum 5 265 -UBERON:0006207 aortico-pulmonary spiral septum 6 266 -UBERON:0005989 atrioventricular septum 5 267 -UBERON:0015226 bulbar spiral septum 5 268 -UBERON:0003218 ovary septum 4 269 -UBERON:0003219 shell septum 4 270 -UBERON:0003901 horizontal septum 4 271 -UBERON:0004893 interalveolar septum 4 272 -UBERON:0005760 urorectal septum 4 273 -UBERON:0006211 buccopharyngeal membrane 4 274 -UBERON:0014790 lingual septum 4 275 -UBERON:0036070 tracheoesophageal septum 4 276 -UBERON:2002120 orbitosphenoid septum 4 277 -UBERON:3000560 septum semicircularium anterior 4 278 -UBERON:3000561 septum semicircularium laterale 4 279 -UBERON:3000562 septum semircularium posterior 4 280 -UBERON:0003102 surface structure 3 281 -UBERON:0000964 cornea 4 282 -UBERON:0001833 lip 4 283 -UBERON:0001834 upper lip 5 284 -UBERON:0001835 lower lip 5 285 -UBERON:2001935 oral disk 5 286 -UBERON:0002542 scale 4 287 -UBERON:0007380 dermal scale 5 288 -UBERON:0000041 odontode scale 6 289 -UBERON:0018310 cephalic dermal scale 6 290 -UBERON:2001824 lateral line scale 6 291 -UBERON:4300238 pored lateral line scale 7 292 -UBERON:4300242 lateral line scale 6 7 293 -UBERON:2002122 pouch scale 6 294 -UBERON:2002273 ctenoid scale 6 295 -UBERON:2002274 transforming ctenoid scale 7 296 -UBERON:2002285 cycloid scale 6 297 -UBERON:4300235 spinoid scale 7 298 -UBERON:4000052 ganoid scale 6 299 -UBERON:4000051 lepidosteoid scale 7 300 -UBERON:4000055 polypteroid scale 7 301 -UBERON:4000074 palaeoniscoid scale 7 302 -UBERON:4000070 elasmoid scale 6 303 -UBERON:4000080 keratin-based scale 6 304 -UBERON:4000081 cosmoid scale 6 305 -UBERON:4300102 postcleithral scale 6 306 -UBERON:4300188 terminal scale 6 307 -UBERON:4300222 axilar scale 6 308 -UBERON:4500003 predorsal scale 6 309 -UBERON:0007381 epidermal scale 5 310 -UBERON:0008201 scute 6 311 -UBERON:0011673 plastron scute 7 312 -UBERON:0018317 dorsal osteoderm 7 313 -UBERON:0011674 carapace scute 8 314 -UBERON:4200165 basal scute 7 315 -UBERON:0018312 cheek scale 5 316 -UBERON:4200093 guard scale 5 317 -UBERON:0004357 paired limb/fin bud 4 318 -UBERON:0002531 paired fin bud 5 319 -UBERON:4300172 pectoral fin bud 6 320 -UBERON:4300173 pelvic fin bud 6 321 -UBERON:0004347 limb bud 5 322 -UBERON:0005417 forelimb bud 6 323 -UBERON:4300230 forelimb wing bud 7 324 -UBERON:0005418 hindlimb bud 6 325 -UBERON:0005419 pectoral appendage bud 5 326 -UBERON:0005417 forelimb bud 6 327 -UBERON:4300230 forelimb wing bud 7 328 -UBERON:4300172 pectoral fin bud 6 329 -UBERON:0005420 pelvic appendage bud 5 330 -UBERON:0005418 hindlimb bud 6 331 -UBERON:0005094 beak 4 332 -UBERON:0005928 external naris 4 333 -UBERON:0010893 median external naris 5 334 -UBERON:0013477 blowhole 5 335 -UBERON:2001426 posterior naris 5 336 -UBERON:2001427 anterior naris 5 337 -UBERON:0006846 surface groove 4 338 -UBERON:0005402 philtrum 5 339 -UBERON:0005412 optic fissure 5 340 -UBERON:0005455 interventricular groove 5 341 -UBERON:0005489 anterior interventricular sulcus 6 342 -UBERON:0005490 posterior interventricular sulcus 6 343 -UBERON:0005478 sulcus limitans of neural tube 5 344 -UBERON:0009570 spinal cord sulcus limitans 6 345 -UBERON:0009576 medulla oblongata sulcus limitans 6 346 -UBERON:0009577 metencephalon sulcus limitans 6 347 -UBERON:0009578 myelencephalon sulcus limitans 6 348 -UBERON:0005879 pharyngeal cleft 5 349 -UBERON:0005872 1st arch pharyngeal cleft 6 350 -UBERON:0005873 2nd arch pharyngeal cleft 6 351 -UBERON:0005874 3rd arch pharyngeal cleft 6 352 -UBERON:0005875 4th arch pharyngeal cleft 6 353 -UBERON:0013157 1st arch maxillary-mandibular cleft 6 354 -UBERON:0006257 laryngotracheal groove 5 355 -UBERON:0006270 optic pit 5 356 -UBERON:0006870 endostyle 5 357 -UBERON:0009865 Hatschek's pit 5 358 -UBERON:0009957 ciliated pit 5 359 -UBERON:0010229 ruminant esophageal groove 5 360 -UBERON:0016620 ventral throat pleat 5 361 -UBERON:0018314 choanal groove 5 362 -UBERON:0018339 metotic fissure 5 363 -UBERON:0018409 infra-orbital groove of maxilla 5 364 -UBERON:0019243 skin crease 5 365 -UBERON:0019246 palmar skin crease 6 366 -UBERON:0019247 plantar skin crease 6 367 -UBERON:0036212 intertragic incisure 5 368 -UBERON:2000305 ventral sulcus 5 369 -UBERON:2000589 sulcus ypsiloniformis 5 370 -UBERON:3010235 nuchal groove 5 371 -UBERON:3010242 nasolabial groove 5 372 -UBERON:3010829 sulcus intermedius 5 373 -UBERON:0006906 ala of nose 4 374 -UBERON:0007376 outer epithelium 4 375 -UBERON:0001003 skin epidermis 5 376 -UBERON:0005083 nipple sheath 6 377 -UBERON:0009200 limb epidermis 6 378 -UBERON:0015484 epidermis of metapodial pad 7 379 -UBERON:0008341 columella nasi 4 380 -UBERON:0008891 external gill 4 381 -UBERON:0010012 upper beak 4 382 -UBERON:0010013 lower beak 4 383 -UBERON:0010019 spiracle (sensu Vertebrata) 4 384 -UBERON:0011154 gular region 4 385 -UBERON:0011256 rhinarium 4 386 -UBERON:0011302 tunicate tunic 4 387 -UBERON:0018306 bulge 4 388 -UBERON:0018342 nuchal hump 4 389 -UBERON:2000040 median fin fold 4 390 -UBERON:2000178 caudal peduncle 4 391 -UBERON:2000298 vent 4 392 -UBERON:2000555 opercular flap 4 393 -UBERON:2001118 urogenital papilla 4 394 -UBERON:2001593 caudal fin upper lobe 4 395 -UBERON:2001594 caudal fin lower lobe 4 396 -UBERON:2001921 adipose eyelid 4 397 -UBERON:2001995 papilla 4 398 -UBERON:0016622 lunge feeding organ papilla 5 399 -UBERON:0036265 conjunctival papilla 5 400 -UBERON:2002108 buccal papilla 5 401 -UBERON:2002124 nuptial tubercle 4 402 -UBERON:2002133 dorsal organ 4 403 -UBERON:2005119 barbel primordium 4 404 -UBERON:3000961 external integument structure 4 405 -UBERON:0001003 skin epidermis 5 406 -UBERON:0005083 nipple sheath 6 407 -UBERON:0009200 limb epidermis 6 408 -UBERON:0015484 epidermis of metapodial pad 7 409 -UBERON:0007380 dermal scale 5 410 -UBERON:0000041 odontode scale 6 411 -UBERON:0018310 cephalic dermal scale 6 412 -UBERON:2001824 lateral line scale 6 413 -UBERON:4300238 pored lateral line scale 7 414 -UBERON:4300242 lateral line scale 6 7 415 -UBERON:2002122 pouch scale 6 416 -UBERON:2002273 ctenoid scale 6 417 -UBERON:2002274 transforming ctenoid scale 7 418 -UBERON:2002285 cycloid scale 6 419 -UBERON:4300235 spinoid scale 7 420 -UBERON:4000052 ganoid scale 6 421 -UBERON:4000051 lepidosteoid scale 7 422 -UBERON:4000055 polypteroid scale 7 423 -UBERON:4000074 palaeoniscoid scale 7 424 -UBERON:4000070 elasmoid scale 6 425 -UBERON:4000080 keratin-based scale 6 426 -UBERON:4000081 cosmoid scale 6 427 -UBERON:4300102 postcleithral scale 6 428 -UBERON:4300188 terminal scale 6 429 -UBERON:4300222 axilar scale 6 430 -UBERON:4500003 predorsal scale 6 431 -UBERON:0007381 epidermal scale 5 432 -UBERON:0008201 scute 6 433 -UBERON:0011673 plastron scute 7 434 -UBERON:0018317 dorsal osteoderm 7 435 -UBERON:0011674 carapace scute 8 436 -UBERON:4200165 basal scute 7 437 -UBERON:0019243 skin crease 5 438 -UBERON:0019246 palmar skin crease 6 439 -UBERON:0019247 plantar skin crease 6 440 -UBERON:2001951 skin flap 5 441 -UBERON:4300004 scale pocket 6 442 -UBERON:2001977 pad 5 443 -UBERON:2002284 body marking 5 444 -UBERON:2001463 melanophore stripe 6 445 -UBERON:2005220 larval melanophore stripe 7 446 -UBERON:2005221 dorsal larval melanophore stripe 8 447 -UBERON:2005222 ventral larval melanophore stripe 8 448 -UBERON:2005223 lateral larval melanophore stripe 8 449 -UBERON:2005224 yolk larval melanophore stripe 8 450 -UBERON:2002283 melanophore spot 6 451 -UBERON:0018308 caudal melanophore spot 7 452 -UBERON:0018340 midbody melanophore spot 7 453 -UBERON:3000972 head external integument structure 5 454 -UBERON:0007330 rhamphotheca 6 455 -UBERON:0007331 maxillary rhamphotheca 7 456 -UBERON:0007332 mandibular rhamphotheca 7 457 -UBERON:0018310 cephalic dermal scale 6 458 -UBERON:2000622 barbel 6 459 -UBERON:2001936 posterior nasal barbel 7 460 -UBERON:2001937 anterior nasal barbel 7 461 -UBERON:2001938 maxillary barbel 7 462 -UBERON:2002024 mental barbel 7 463 -UBERON:2001968 outer mental barbel 8 464 -UBERON:2001969 inner mental barbel 8 465 -UBERON:3010071 cranial crest 6 466 -UBERON:3010075 tympanic fold 6 467 -UBERON:3010079 upper eyelid protuberances 6 468 -UBERON:3010080 snout protuberances 6 469 -UBERON:3010081 interorbital fold 6 470 -UBERON:3010085 postrictal protuberances 6 471 -UBERON:3010091 upper lip protuberances 6 472 -UBERON:3010096 vocal sac 6 473 -UBERON:3010106 tympanic papilla 6 474 -UBERON:3010235 nuchal groove 6 475 -UBERON:3010239 subocular groove 6 476 -UBERON:3010241 labial fold 6 477 -UBERON:3010242 nasolabial groove 6 478 -UBERON:3010604 cranial glands 6 479 -UBERON:3010100 mental gland 7 480 -UBERON:3010103 vocal sac glands 7 481 -UBERON:3010802 courtship gland 7 482 -UBERON:3000977 body external integument structure 5 483 -UBERON:3000989 pectoral fold 6 484 -UBERON:3000991 dorsal folds 6 485 -UBERON:3000994 longitudinal dorsal folds 7 486 -UBERON:3000995 transversal dorsal folds 7 487 -UBERON:3000999 dorsal pouch 6 488 -UBERON:3001003 cloacal fold 6 489 -UBERON:3001005 dorsolateral fold 6 490 -UBERON:3001007 body granules 6 491 -UBERON:3001008 body wart 6 492 -UBERON:3001009 body spicule 6 493 -UBERON:3001010 body tubercle 6 494 -UBERON:3010006 dorsal skin texture 6 495 -UBERON:3010010 ventral skin texture 6 496 -UBERON:3010044 dorsal crest 6 497 -UBERON:3010058 dermal annular fold 6 498 -UBERON:3010227 costal protuberances 6 499 -UBERON:3010229 costal grooves 6 500 -UBERON:3010231 costal folds 6 501 -UBERON:3010603 body gland 6 502 -UBERON:3010011 axillary glands 7 503 -UBERON:3010014 inguinal glands 7 504 -UBERON:3010021 dorsal glands 7 505 -UBERON:3010031 ventral glands 7 506 -UBERON:3010104 pectoral glands 7 507 -UBERON:3010226 postiliac glands 7 508 -UBERON:3010813 vent glands 7 509 -UBERON:3000981 limb external integument structure 5 510 -UBERON:0009200 limb epidermis 6 511 -UBERON:0015484 epidermis of metapodial pad 7 512 -UBERON:0012243 nuptial pad 6 513 -UBERON:0012447 podotheca 6 514 -UBERON:0013487 epidermal ridge of digit 6 515 -UBERON:0019246 palmar skin crease 6 516 -UBERON:0019247 plantar skin crease 6 517 -UBERON:3010123 finger fringes 6 518 -UBERON:3010127 fringe on postaxial edge of finger IV 7 519 -UBERON:3010124 toe fringes 6 520 -UBERON:3010166 fringe on postaxial edge of toe V 7 521 -UBERON:3010163 metacarpal fold 6 522 -UBERON:3010164 ulnar fold 6 523 -UBERON:3010167 metatarsal fold 6 524 -UBERON:3010168 tarsal fringe 6 525 -UBERON:3010170 ungual flap 6 526 -UBERON:3010175 circumferential groove 6 527 -UBERON:3010189 ulnar protuberances 6 528 -UBERON:3010190 tibial protuberances 6 529 -UBERON:3010191 calcar anterior 6 530 -UBERON:3010192 calcar posterior 6 531 -UBERON:3010193 prepollical protuberances 6 532 -UBERON:3010209 keratinous claw 6 533 -UBERON:3010606 limb gland 6 534 -UBERON:3010178 finger glands 7 535 -UBERON:3010179 web glands 7 536 -UBERON:3010181 humeral glands 7 537 -UBERON:3010182 tibial glands 7 538 -UBERON:3010183 femoral glands 7 539 -UBERON:3010721 limb villosities 6 540 -UBERON:4200151 toe disc 6 541 -UBERON:4200188 manual toe disc 7 542 -UBERON:4200189 pedal toe disc 7 543 -UBERON:3000982 tail external integument structure 5 544 -UBERON:3010201 dorsal tail tubercle 6 545 -UBERON:3010202 tail base gland 6 546 -UBERON:3010203 dorsal tail fin 6 547 -UBERON:3010204 ventral tail fin 6 548 -UBERON:3010377 unicellular gland 4 549 -UBERON:4300197 Westoll line 4 550 -UBERON:0004119 endoderm-derived structure 3 551 -UBERON:0000006 islet of Langerhans 4 552 -UBERON:0000016 endocrine pancreas 4 553 -UBERON:0000017 exocrine pancreas 4 554 -UBERON:0000065 respiratory tract 4 555 -UBERON:0000072 proximo-distal subdivision of respiratory tract 4 556 -UBERON:0001557 upper respiratory tract 5 557 -UBERON:0001558 lower respiratory tract 5 558 -UBERON:0001728 nasopharynx 5 559 -UBERON:0001737 larynx 5 560 -UBERON:0036068 subglottis 5 561 -UBERON:0036263 supraglottic part of larynx 5 562 -UBERON:0000077 mixed endoderm/mesoderm-derived structure 4 563 -UBERON:0000078 mixed ectoderm/mesoderm/endoderm-derived structure 5 564 -UBERON:0000114 lung connective tissue 5 565 -UBERON:0003591 lobar bronchus connective tissue 6 566 -UBERON:0003615 lung elastic tissue 6 567 -UBERON:0000428 prostate epithelium 5 568 -UBERON:0000977 pleura 5 569 -UBERON:0001247 falciform ligament 5 570 -UBERON:0001254 urothelium of ureter 5 571 -UBERON:0005912 transitional epithelium of major calyx 6 572 -UBERON:0001328 lobe of prostate 5 573 -UBERON:0001329 prostate gland anterior lobe 6 574 -UBERON:0007615 prostate gland ventral lobe 6 575 -UBERON:0008808 prostate gland dorsolateral lobe 6 576 -UBERON:0013637 prostate gland lateral lobe 6 577 -UBERON:0015792 prostate gland dorsal lobe 6 578 -UBERON:0035341 posterior lobe of prostate 6 579 -UBERON:0035766 median lobe of prostate 6 580 -UBERON:0002122 capsule of thymus 5 581 -UBERON:0002123 cortex of thymus 5 582 -UBERON:0002124 medulla of thymus 5 583 -UBERON:0002125 thymus lobule 5 584 -UBERON:0002325 epithelium of urethra 5 585 -UBERON:0004787 urethra urothelium 6 586 -UBERON:0015777 transitional epithelium of prostatic urethra 7 587 -UBERON:0016510 epithelium of male urethra 6 588 -UBERON:0015777 transitional epithelium of prostatic urethra 7 589 -UBERON:0034770 bulbourethral gland epithelium 7 590 -UBERON:0016520 epithelium of female urethra 6 591 -UBERON:0002367 prostate gland 5 592 -UBERON:0002370 thymus 5 593 -UBERON:0009114 cervical thymus 6 594 -UBERON:0018244 superficial cervical thymus 7 595 -UBERON:0018245 deep cervical thymus 7 596 -UBERON:0009115 thoracic thymus 6 597 -UBERON:0002400 parietal pleura 5 598 -UBERON:0002401 visceral pleura 5 599 -UBERON:0002485 prostate duct 5 600 -UBERON:0003279 endothelium of trachea 5 601 -UBERON:0003280 endothelium of main bronchus 5 602 -UBERON:0003483 thymus lymphoid tissue 5 603 -UBERON:0003505 trachea blood vessel 5 604 -UBERON:0003512 lung blood vessel 5 605 -UBERON:0016405 pulmonary capillary 6 606 -UBERON:0003518 main bronchus blood vessel 5 607 -UBERON:0003846 thymus epithelium 5 608 -UBERON:0006936 thymus subcapsular epithelium 6 609 -UBERON:0003987 Hassall's corpuscle 5 610 -UBERON:0003988 thymus corticomedullary boundary 5 611 -UBERON:0004179 prostate glandular acinus 5 612 -UBERON:0004184 prostate gland stroma 5 613 -UBERON:0004233 lower respiratory tract smooth muscle 5 614 -UBERON:0003387 smooth muscle of trachea 6 615 -UBERON:0006680 trachealis 7 616 -UBERON:0004242 bronchus smooth muscle 6 617 -UBERON:0004241 main bronchus smooth muscle 7 618 -UBERON:0004515 smooth muscle tissue of bronchiole 7 619 -UBERON:0004516 smooth muscle tissue of terminal bronchiole 8 620 -UBERON:0004517 smooth muscle tissue of respiratory bronchiole 8 621 -UBERON:0004895 alveolar smooth muscle 6 622 -UBERON:0004240 gall bladder smooth muscle 5 623 -UBERON:0004645 urinary bladder urothelium 5 624 -UBERON:0004783 gall bladder serosa 5 625 -UBERON:0004791 thymus trabecula 5 626 -UBERON:0004834 hepatic duct smooth muscle 5 627 -UBERON:0004883 lung mesenchyme 5 628 -UBERON:0004884 lobar bronchus mesenchyme 6 629 -UBERON:0004901 right lung lobar bronchus mesenchyme 7 630 -UBERON:0004897 right lung accessory lobe lobar bronchus mesenchyme 8 631 -UBERON:0004899 right lung cranial lobe lobar bronchus mesenchyme 8 632 -UBERON:0004900 right lung middle lobe lobar bronchus mesenchyme 8 633 -UBERON:0009602 left lung associated mesenchyme 6 634 -UBERON:0009603 right lung associated mesenchyme 6 635 -UBERON:0004901 right lung lobar bronchus mesenchyme 7 636 -UBERON:0004897 right lung accessory lobe lobar bronchus mesenchyme 8 637 -UBERON:0004899 right lung cranial lobe lobar bronchus mesenchyme 8 638 -UBERON:0004900 right lung middle lobe lobar bronchus mesenchyme 8 639 -UBERON:0004902 urogenital sinus epithelium 5 640 -UBERON:0003820 prostate bud 6 641 -UBERON:0005483 thymus lobe 5 642 -UBERON:0005457 left thymus lobe 6 643 -UBERON:0005469 right thymus lobe 6 644 -UBERON:0005672 right lung endothelium 5 645 -UBERON:0005674 right lung cranial lobe endothelium 6 646 -UBERON:0005675 right lung caudal lobe endothelium 6 647 -UBERON:0005676 right lung accessory lobe endothelium 6 648 -UBERON:0005673 left lung endothelium 5 649 -UBERON:0006588 round ligament of liver 5 650 -UBERON:0008715 muscle tissue of prostate 5 651 -UBERON:0004243 prostate gland smooth muscle 6 652 -UBERON:0004520 striated muscle tissue of prostate 6 653 -UBERON:0008807 coagulating gland 5 654 -UBERON:0009847 prostate field 5 655 -UBERON:0013138 coronary ligament of liver 5 656 -UBERON:0013479 lung endothelium 5 657 -UBERON:0015130 connective tissue of prostate gland 5 658 -UBERON:0015131 subepithelial connective tissue of prostatic gland 6 659 -UBERON:0015142 falciform fat 5 660 -UBERON:0015796 liver blood vessel 5 661 -UBERON:0001143 hepatic vein 6 662 -UBERON:0011955 left hepatic vein 7 663 -UBERON:0011956 right hepatic vein 7 664 -UBERON:0011957 middle hepatic vein 7 665 -UBERON:0015455 accessory hepatic vein 7 666 -UBERON:0001281 hepatic sinusoid 6 667 -UBERON:0009548 hepatic sinusoid of left of lobe of liver 7 668 -UBERON:0011737 caudate lobe hepatic sinusoid 8 669 -UBERON:0009549 hepatic sinusoid of right of lobe of liver 7 670 -UBERON:0011737 caudate lobe hepatic sinusoid 8 671 -UBERON:0011738 quadrate lobe hepatic sinusoid 8 672 -UBERON:0006841 central vein of liver 6 673 -UBERON:0015481 left hepatic artery 6 674 -UBERON:0015482 right hepatic artery 6 675 -UBERON:0016890 intrahepatic branch of portal vein 6 676 -UBERON:3010404 capillary system of liver 6 677 -UBERON:0035316 prostatic capsule 5 678 -UBERON:0035331 base of prostate 5 679 -UBERON:0035431 mediastinal pleura 5 680 -UBERON:0036073 respiratory primordium mesenchyme 5 681 -UBERON:2001857 hyoidean artery 5 682 -UBERON:2005015 afferent lamellar arteriole 5 683 -UBERON:2005019 efferent lamellar arteriole 5 684 -UBERON:0000101 lobe of lung 4 685 -UBERON:0006518 right lung lobe 5 686 -UBERON:0002170 upper lobe of right lung 6 687 -UBERON:0002171 lower lobe of right lung 6 688 -UBERON:0002174 middle lobe of right lung 6 689 -UBERON:0004890 right lung accessory lobe 6 690 -UBERON:0008950 azygous lobe of lung 7 691 -UBERON:0008948 upper lobe of lung 5 692 -UBERON:0002170 upper lobe of right lung 6 693 -UBERON:0008952 upper lobe of left lung 6 694 -UBERON:0008949 lower lobe of lung 5 695 -UBERON:0002171 lower lobe of right lung 6 696 -UBERON:0008953 lower lobe of left lung 6 697 -UBERON:0008951 left lung lobe 5 698 -UBERON:0008952 upper lobe of left lung 6 699 -UBERON:0008953 lower lobe of left lung 6 700 -UBERON:0008955 middle lobe of lung 5 701 -UBERON:0002174 middle lobe of right lung 6 702 -UBERON:0000116 lung saccule 4 703 -UBERON:0000117 respiratory tube 4 704 -UBERON:0002169 alveolar sac 5 705 -UBERON:0002173 pulmonary alveolar duct 5 706 -UBERON:0003536 right lung alveolar duct 6 707 -UBERON:0003537 left lung alveolar duct 6 708 -UBERON:0002185 bronchus 5 709 -UBERON:0002041 terminal bronchus 6 710 -UBERON:0002182 main bronchus 6 711 -UBERON:0002177 right main bronchus 7 712 -UBERON:0002178 left main bronchus 7 713 -UBERON:0009071 mesobronchus 7 714 -UBERON:0012088 lateroobronchus 6 715 -UBERON:0035767 intrapulmonary bronchus 6 716 -UBERON:0002183 lobar bronchus 7 717 -UBERON:0003404 lobar bronchus of right lung 8 718 -UBERON:0004896 right lung accessory lobe lobar bronchus 9 719 -UBERON:0005244 lobar bronchus of right lung cranial lobe 9 720 -UBERON:0005245 lobar bronchus of right lung caudal lobe 9 721 -UBERON:0012063 lobar bronchus of right lung middle lobe 9 722 -UBERON:0003405 lobar bronchus of left lung 8 723 -UBERON:0012065 lobar bronchus of left lung upper lobe 9 724 -UBERON:0012066 lobar bronchus of left lung lower lobe 9 725 -UBERON:0009073 dorsobronchus 8 726 -UBERON:0002184 segmental bronchus 7 727 -UBERON:0005678 right lung cranial lobe segmental bronchus 8 728 -UBERON:0005679 right lung caudal lobe segmental bronchus 8 729 -UBERON:0005680 right lung accessory lobe segmental bronchus 8 730 -UBERON:0008961 parabronchus 8 731 -UBERON:0009071 mesobronchus 7 732 -UBERON:0009072 ventrobronchus 7 733 -UBERON:0002186 bronchiole 5 734 -UBERON:0002187 terminal bronchiole 6 735 -UBERON:0003540 right lung terminal bronchiole 7 736 -UBERON:0003541 left lung terminal bronchiole 7 737 -UBERON:0002188 respiratory bronchiole 6 738 -UBERON:0003542 right lung respiratory bronchiole 7 739 -UBERON:0003543 left lung respiratory bronchiole 7 740 -UBERON:0003538 right lung bronchiole 6 741 -UBERON:0003540 right lung terminal bronchiole 7 742 -UBERON:0003542 right lung respiratory bronchiole 7 743 -UBERON:0005681 right lung upper lobe bronchiole 7 744 -UBERON:0005682 right lung accessory lobe bronchiole 7 745 -UBERON:0012059 right lung lower lobe bronchiole 7 746 -UBERON:0012068 right lung middle lobe bronchiole 7 747 -UBERON:0003539 left lung bronchiole 6 748 -UBERON:0003541 left lung terminal bronchiole 7 749 -UBERON:0003543 left lung respiratory bronchiole 7 750 -UBERON:0012055 left lung lower lobe bronchiole 7 751 -UBERON:0012056 left lung upper lobe bronchiole 7 752 -UBERON:0012067 primary bronchiole 6 753 -UBERON:0003126 trachea 5 754 -UBERON:0000410 bronchial mucosa 4 755 -UBERON:0005036 mucosa of main bronchus 5 756 -UBERON:0005034 mucosa of right main bronchus 6 757 -UBERON:0005035 mucosa of left main bronchus 6 758 -UBERON:0005037 mucosa of lobar bronchus 5 759 -UBERON:0005038 mucosa of segmental bronchus 5 760 -UBERON:0005039 mucosa of bronchiole 5 761 -UBERON:0005040 mucosa of terminal bronchiole 6 762 -UBERON:0005041 mucosa of respiratory bronchiole 6 763 -UBERON:0001069 head of pancreas 4 764 -UBERON:0001113 lobe of liver 4 765 -UBERON:0001114 right lobe of liver 5 766 -UBERON:0001116 quadrate lobe of liver 6 767 -UBERON:0001117 caudate lobe of liver 6 768 -UBERON:0001115 left lobe of liver 5 769 -UBERON:0006727 liver left lateral lobe 6 770 -UBERON:0006728 liver left medial lobe 6 771 -UBERON:0001151 tail of pancreas 4 772 -UBERON:0001171 portal lobule 4 773 -UBERON:0001172 hepatic acinus 4 774 -UBERON:0001173 biliary tree 4 775 -UBERON:0001263 pancreatic acinus 4 776 -UBERON:0001279 portal triad 4 777 -UBERON:0001280 liver parenchyma 4 778 -UBERON:0005221 liver right lobe parenchyma 5 779 -UBERON:0010704 parenchyma of quadrate lobe of liver 6 780 -UBERON:0010706 parenchyma of caudate lobe of liver 6 781 -UBERON:0005222 liver left lobe parenchyma 5 782 -UBERON:0010706 parenchyma of caudate lobe of liver 6 783 -UBERON:0001352 external acoustic meatus 4 784 -UBERON:0001568 muscle of larynx 4 785 -UBERON:0006327 laryngeal extrinsic muscle 5 786 -UBERON:0006328 laryngeal intrinsic muscle 5 787 -UBERON:0001566 cricothyroid muscle 6 788 -UBERON:0001570 inferior pharyngeal constrictor 7 789 -UBERON:0008576 thyro-arytenoid 6 790 -UBERON:0008577 vocalis muscle 6 791 -UBERON:0010932 crico-arytenoid muscle 6 792 -UBERON:0008572 posterior crico-arytenoid 7 793 -UBERON:0008573 lateral crico-arytenoid 7 794 -UBERON:0010958 arytenoid muscle 6 795 -UBERON:0008574 transverse arytenoid 7 796 -UBERON:0008575 oblique arytenoid 7 797 -UBERON:0010927 thyroepiglotticus muscle 5 798 -UBERON:0011025 aryepiglotticus muscle 5 799 -UBERON:0011312 hyoepiglottic muscle 5 800 -UBERON:0001609 isthmus of thyroid gland 4 801 -UBERON:0001687 stapes bone 4 802 -UBERON:0001727 taste bud 4 803 -UBERON:0014451 tongue taste bud 5 804 -UBERON:0034717 integumental taste bud 5 805 -UBERON:0034718 barbel taste bud 6 806 -UBERON:0034719 lip taste bud 6 807 -UBERON:0034720 head taste bud 6 808 -UBERON:0034726 trunk taste bud 6 809 -UBERON:0034721 pharyngeal taste bud 5 810 -UBERON:0034722 mouth roof taste bud 5 811 -UBERON:0034670 palatal taste bud 6 812 -UBERON:0034723 fin taste bud 5 813 -UBERON:0034724 esophageal taste bud 5 814 -UBERON:0001729 oropharynx 4 815 -UBERON:0001739 laryngeal cartilage 4 816 -UBERON:0001738 thyroid cartilage 5 817 -UBERON:0001740 arytenoid cartilage 5 818 -UBERON:0001742 epiglottic cartilage 5 819 -UBERON:0002375 cricoid cartilage 5 820 -UBERON:0011157 cuneiform cartilage 5 821 -UBERON:0001743 ligament of larynx 4 822 -UBERON:0001730 extrinsic ligament of larynx 5 823 -UBERON:0011311 hyoepiglottic ligament 6 824 -UBERON:0013167 cricopharyngeal ligament 6 825 -UBERON:0013170 cricoarytenoid ligament 6 826 -UBERON:0013172 cricotracheal ligament 6 827 -UBERON:0006325 laryngeal intrinsic ligament 5 828 -UBERON:0013168 thyroepiglottic ligament 6 829 -UBERON:0013169 vestibular ligament 6 830 -UBERON:0013171 cricothyroid ligament 5 831 -UBERON:0001746 capsule of thyroid gland 4 832 -UBERON:0001747 parenchyma of thyroid gland 4 833 -UBERON:0001755 distal part of styloid process of temporal bone 4 834 -UBERON:0001824 mucosa of larynx 4 835 -UBERON:0005047 mucosa of vocal fold 5 836 -UBERON:0001826 nasal cavity mucosa 4 837 -UBERON:0005386 olfactory segment of nasal mucosa 5 838 -UBERON:0015786 respiratory segment of nasal mucosa 5 839 -UBERON:0001865 cartilaginous external acoustic tube 4 840 -UBERON:0001957 submucosa of bronchus 4 841 -UBERON:0004949 submucosa of main bronchus 5 842 -UBERON:0004947 submucosa of right main bronchus 6 843 -UBERON:0004948 submucosa of left main bronchus 6 844 -UBERON:0004950 submucosa of lobar bronchus 5 845 -UBERON:0004951 submucosa of segmental bronchus 5 846 -UBERON:0004952 submucosa of bronchiole 5 847 -UBERON:0001963 bronchial-associated lymphoid tissue 4 848 -UBERON:0002046 thyroid gland 4 849 -UBERON:0002048 lung 4 850 -UBERON:0002167 right lung 5 851 -UBERON:0002168 left lung 5 852 -UBERON:0002107 liver 4 853 -UBERON:0002110 gall bladder 4 854 -UBERON:0002172 alveolar atrium 4 855 -UBERON:0002202 submucosa of trachea 4 856 -UBERON:0002254 thyroglossal duct 4 857 -UBERON:0002299 alveolus of lung 4 858 -UBERON:0004861 right lung alveolus 5 859 -UBERON:0004862 left lung alveolus 5 860 -UBERON:0002338 lamina propria of bronchus 4 861 -UBERON:0002373 palatine tonsil 4 862 -UBERON:0002394 bile duct 4 863 -UBERON:0003703 extrahepatic bile duct 5 864 -UBERON:0001152 cystic duct 6 865 -UBERON:0001174 common bile duct 6 866 -UBERON:0001175 common hepatic duct 6 867 -UBERON:0001176 right hepatic duct 6 868 -UBERON:0001177 left hepatic duct 6 869 -UBERON:0010081 future common hepatic duct 6 870 -UBERON:0003704 intrahepatic bile duct 5 871 -UBERON:0001246 interlobular bile duct 6 872 -UBERON:0001282 intralobular bile duct 6 873 -UBERON:0005605 intrahepatic part of hepatic duct 6 874 -UBERON:0004913 hepatopancreatic ampulla 5 875 -UBERON:0005171 hepatic duct 5 876 -UBERON:0015423 hilar portion of hepatic duct 6 877 -UBERON:0005604 extrahepatic part of hepatic duct 5 878 -UBERON:2005170 extrahepatic duct 5 879 -UBERON:0002496 stapes base 4 880 -UBERON:0003091 thyroid primordium 4 881 -UBERON:0003092 ultimobranchial body 4 882 -UBERON:0003261 thyroid primordium endoderm 4 883 -UBERON:0003410 oropharyngeal gland 4 884 -UBERON:0003492 bronchus reticular lamina 4 885 -UBERON:0003493 trachea reticular lamina 4 886 -UBERON:0003580 lower respiratory tract connective tissue 4 887 -UBERON:0000114 lung connective tissue 5 888 -UBERON:0003591 lobar bronchus connective tissue 6 889 -UBERON:0003615 lung elastic tissue 6 890 -UBERON:0003571 trachea connective tissue 5 891 -UBERON:0003617 trachea elastic tissue 6 892 -UBERON:0009644 trachea non-cartilage connective tissue 6 893 -UBERON:0003592 bronchus connective tissue 5 894 -UBERON:0003590 main bronchus connective tissue 6 895 -UBERON:0003591 lobar bronchus connective tissue 6 896 -UBERON:0003616 bronchus elastic tissue 6 897 -UBERON:0003582 nasopharynx connective tissue 4 898 -UBERON:0003583 larynx connective tissue 4 899 -UBERON:0001741 corniculate cartilage 5 900 -UBERON:0006326 base of arytenoid 5 901 -UBERON:0006494 apex of arytenoid 5 902 -UBERON:0011157 cuneiform cartilage 5 903 -UBERON:0003603 lower respiratory tract cartilage 4 904 -UBERON:0001956 cartilage of bronchus 5 905 -UBERON:0001102 cartilage of main bronchus 6 906 -UBERON:0003604 trachea cartilage 5 907 -UBERON:0006679 carina of trachea 6 908 -UBERON:0009078 pessulus 6 909 -UBERON:0003706 laryngeal vocal fold 4 910 -UBERON:0003948 blood-air barrier 4 911 -UBERON:0003960 styloid process of temporal bone 4 912 -UBERON:0003998 hyoid bone lesser horn 4 913 -UBERON:0004058 biliary ductule 4 914 -UBERON:0004185 endodermal part of digestive tract 4 915 -UBERON:0004912 biliary bud 5 916 -UBERON:0008835 hepatic diverticulum 5 917 -UBERON:0008836 liver bud 5 918 -UBERON:0036072 respiratory primordium epithelium 5 919 -UBERON:0004361 stylohyoid ligament 4 920 -UBERON:0004368 Reichert's cartilage 4 921 -UBERON:0004478 musculature of larynx 4 922 -UBERON:0004647 liver lobule 4 923 -UBERON:0004778 larynx submucosa 4 924 -UBERON:0004781 gall bladder lamina propria 4 925 -UBERON:0004789 larynx mucous gland 4 926 -UBERON:0004800 bronchus basal lamina 4 927 -UBERON:0004827 thyroid gland medulla 4 928 -UBERON:0004877 visceral endoderm 4 929 -UBERON:0004044 anterior visceral endoderm 5 930 -UBERON:0004878 distal visceral endoderm 5 931 -UBERON:0004892 lobar bronchus alveolar system 4 932 -UBERON:0004893 interalveolar septum 4 933 -UBERON:0004894 alveolar wall 4 934 -UBERON:0004915 sphincter of hepatopancreatic ampulla 4 935 -UBERON:0004938 submucosa of biliary tree 4 936 -UBERON:0004926 submucosa of cystic duct 5 937 -UBERON:0004939 submucosa of common bile duct 5 938 -UBERON:0004940 submucosa of common hepatic duct 5 939 -UBERON:0004941 submucosa of right hepatic duct 5 940 -UBERON:0004942 submucosa of left hepatic duct 5 941 -UBERON:0004999 mucosa of biliary tree 4 942 -UBERON:0004988 mucosa of cystic duct 5 943 -UBERON:0005000 mucosa of common bile duct 5 944 -UBERON:0005001 mucosa of common hepatic duct 5 945 -UBERON:0005002 mucosa of right hepatic duct 5 946 -UBERON:0005003 mucosa of left hepatic duct 5 947 -UBERON:0005022 mucosa of nasopharynx 4 948 -UBERON:0005023 mucosa of oropharynx 4 949 -UBERON:0005033 mucosa of gallbladder 4 950 -UBERON:0005050 liver papillary process 4 951 -UBERON:0005203 trachea gland 4 952 -UBERON:0005204 larynx submucosa gland 4 953 -UBERON:0005220 pancreas head parenchyma 4 954 -UBERON:0005224 pancreas tail parenchyma 4 955 -UBERON:0005305 thyroid follicle 4 956 -UBERON:0005452 hepatic cord 4 957 -UBERON:0005911 endo-epithelium 4 958 -UBERON:0000118 lung bud 5 959 -UBERON:0000365 urothelium 5 960 -UBERON:0001254 urothelium of ureter 6 961 -UBERON:0005912 transitional epithelium of major calyx 7 962 -UBERON:0004645 urinary bladder urothelium 6 963 -UBERON:0004787 urethra urothelium 6 964 -UBERON:0015777 transitional epithelium of prostatic urethra 7 965 -UBERON:0004788 kidney pelvis urothelium 6 966 -UBERON:0005912 transitional epithelium of major calyx 7 967 -UBERON:0000428 prostate epithelium 5 968 -UBERON:0001281 hepatic sinusoid 5 969 -UBERON:0009548 hepatic sinusoid of left of lobe of liver 6 970 -UBERON:0011737 caudate lobe hepatic sinusoid 7 971 -UBERON:0009549 hepatic sinusoid of right of lobe of liver 6 972 -UBERON:0011737 caudate lobe hepatic sinusoid 7 973 -UBERON:0011738 quadrate lobe hepatic sinusoid 7 974 -UBERON:0002029 epithelium of gall bladder 5 975 -UBERON:0002325 epithelium of urethra 5 976 -UBERON:0004787 urethra urothelium 6 977 -UBERON:0015777 transitional epithelium of prostatic urethra 7 978 -UBERON:0016510 epithelium of male urethra 6 979 -UBERON:0015777 transitional epithelium of prostatic urethra 7 980 -UBERON:0034770 bulbourethral gland epithelium 7 981 -UBERON:0016520 epithelium of female urethra 6 982 -UBERON:0003257 yolk sac endoderm 5 983 -UBERON:0003258 endoderm of foregut 5 984 -UBERON:0004117 pharyngeal pouch 6 985 -UBERON:0007122 pharyngeal pouch 1 7 986 -UBERON:0007123 pharyngeal pouch 2 7 987 -UBERON:0007124 pharyngeal pouch 3 7 988 -UBERON:0007125 pharyngeal pouch 4 7 989 -UBERON:0007126 pharyngeal pouch 5 7 990 -UBERON:0007127 pharyngeal pouch 6 7 991 -UBERON:2001129 pharyngeal pouches 2-6 7 992 -UBERON:0007690 early pharyngeal endoderm 6 993 -UBERON:0010021 dorsal part of pharyngeal pouch 1 6 994 -UBERON:0010022 ventral part of pharyngeal pouch 1 6 995 -UBERON:0010023 dorsal part of pharyngeal pouch 2 6 996 -UBERON:0010024 ventral part of pharyngeal pouch 2 6 997 -UBERON:0010025 dorsal part of pharyngeal pouch 3 6 998 -UBERON:0010026 ventral part of pharyngeal pouch 3 6 999 -UBERON:0010027 dorsal part of pharyngeal pouch 4 6 1000 -UBERON:0010028 ventral part of pharyngeal pouch 4 6 1001 -UBERON:0010029 dorsal part of pharyngeal pouch 5 6 1002 -UBERON:0010030 ventral part of pharyngeal pouch 5 6 1003 -UBERON:0013154 1st arch maxillary endoderm 6 1004 -UBERON:0013156 1st arch mandibular endoderm 6 1005 -UBERON:0013157 1st arch maxillary-mandibular cleft 6 1006 -UBERON:0003259 endoderm of midgut 5 1007 -UBERON:0003260 endoderm of hindgut 5 1008 -UBERON:0003351 pharyngeal epithelium 5 1009 -UBERON:0001951 epithelium of nasopharynx 6 1010 -UBERON:0001952 epithelium of oropharynx 6 1011 -UBERON:0005562 thymus primordium 6 1012 -UBERON:0009695 epithelium of laryngopharynx 6 1013 -UBERON:0013696 tonsil epithelium 6 1014 -UBERON:0012181 tonsil crypt 7 1015 -UBERON:0016545 pharyngeal ectoderm 6 1016 -UBERON:0005879 pharyngeal cleft 7 1017 -UBERON:0005872 1st arch pharyngeal cleft 8 1018 -UBERON:0005873 2nd arch pharyngeal cleft 8 1019 -UBERON:0005874 3rd arch pharyngeal cleft 8 1020 -UBERON:0005875 4th arch pharyngeal cleft 8 1021 -UBERON:0013157 1st arch maxillary-mandibular cleft 8 1022 -UBERON:0003367 epithelium of vomeronasal organ 5 1023 -UBERON:0003846 thymus epithelium 5 1024 -UBERON:0006936 thymus subcapsular epithelium 6 1025 -UBERON:0003922 pancreatic epithelial bud 5 1026 -UBERON:0003923 dorsal pancreatic bud 6 1027 -UBERON:0003924 ventral pancreatic bud 6 1028 -UBERON:0004802 respiratory tract epithelium 5 1029 -UBERON:0004814 upper respiratory tract epithelium 6 1030 -UBERON:0001951 epithelium of nasopharynx 7 1031 -UBERON:0005384 nasal cavity epithelium 7 1032 -UBERON:0001997 olfactory epithelium 8 1033 -UBERON:0005385 nasal cavity respiratory epithelium 8 1034 -UBERON:0009671 nasal fin 8 1035 -UBERON:0004815 lower respiratory tract epithelium 6 1036 -UBERON:0000115 lung epithelium 7 1037 -UBERON:0002051 epithelium of bronchiole 8 1038 -UBERON:0001955 epithelium of respiratory bronchiole 9 1039 -UBERON:0001958 terminal bronchiole epithelium 9 1040 -UBERON:0002169 alveolar sac 8 1041 -UBERON:0002339 epithelium of lobar bronchus 8 1042 -UBERON:0015794 left lung lobar bronchus epithelium 9 1043 -UBERON:0015795 right lung lobar bronchus epitheium 9 1044 -UBERON:0002341 epithelium of segmental bronchus 8 1045 -UBERON:0003364 epithelium of right lung 8 1046 -UBERON:0005639 right lung cranial lobe epithelium 9 1047 -UBERON:0005674 right lung cranial lobe endothelium 10 1048 -UBERON:0005640 right lung caudal lobe epithelium 9 1049 -UBERON:0005675 right lung caudal lobe endothelium 10 1050 -UBERON:0005655 right lung accessory lobe epithelium 9 1051 -UBERON:0005676 right lung accessory lobe endothelium 10 1052 -UBERON:0005672 right lung endothelium 9 1053 -UBERON:0005674 right lung cranial lobe endothelium 10 1054 -UBERON:0005675 right lung caudal lobe endothelium 10 1055 -UBERON:0005676 right lung accessory lobe endothelium 10 1056 -UBERON:0015795 right lung lobar bronchus epitheium 9 1057 -UBERON:0003365 epithelium of left lung 8 1058 -UBERON:0005673 left lung endothelium 9 1059 -UBERON:0015794 left lung lobar bronchus epithelium 9 1060 -UBERON:0004821 pulmonary alveolus epithelium 8 1061 -UBERON:0005314 alveolar primary septum 9 1062 -UBERON:0005315 alveolar secondary septum 9 1063 -UBERON:0013479 lung endothelium 8 1064 -UBERON:0008397 tracheobronchial epithelium 7 1065 -UBERON:0001901 epithelium of trachea 8 1066 -UBERON:0003279 endothelium of trachea 9 1067 -UBERON:0002031 epithelium of bronchus 8 1068 -UBERON:0002051 epithelium of bronchiole 9 1069 -UBERON:0001955 epithelium of respiratory bronchiole 10 1070 -UBERON:0001958 terminal bronchiole epithelium 10 1071 -UBERON:0002339 epithelium of lobar bronchus 9 1072 -UBERON:0015794 left lung lobar bronchus epithelium 10 1073 -UBERON:0015795 right lung lobar bronchus epitheium 10 1074 -UBERON:0002340 epithelium of main bronchus 9 1075 -UBERON:0003280 endothelium of main bronchus 10 1076 -UBERON:0002341 epithelium of segmental bronchus 9 1077 -UBERON:0004818 terminal bronchus epithelium 9 1078 -UBERON:0004816 larynx epithelium 6 1079 -UBERON:0004820 bile duct epithelium 5 1080 -UBERON:0004822 extrahepatic bile duct epithelium 6 1081 -UBERON:0004823 intrahepatic bile duct epithelium 6 1082 -UBERON:0005042 inner epithelial layer of tympanic membrane 5 1083 -UBERON:0005642 ultimobranchial body epithelium 5 1084 -UBERON:0009495 extrahepatic part of biliary bud 5 1085 -UBERON:0009496 intrahepatic part of biliary bud 5 1086 -UBERON:0009497 epithelium of foregut-midgut junction 5 1087 -UBERON:0003894 liver primordium 6 1088 -UBERON:0004912 biliary bud 6 1089 -UBERON:0008835 hepatic diverticulum 6 1090 -UBERON:0008836 liver bud 6 1091 -UBERON:0009521 anal membrane endodermal component 5 1092 -UBERON:0009846 embryonic cloacal epithelium 6 1093 -UBERON:0004902 urogenital sinus epithelium 7 1094 -UBERON:0003820 prostate bud 8 1095 -UBERON:0009722 entire pharyngeal arch endoderm 5 1096 -UBERON:0010020 tubotympanic recess epithelium 5 1097 -UBERON:0010062 pharyngotympanic tube epithelium 5 1098 -UBERON:0010063 tympanic cavity epithelium 5 1099 -UBERON:0010065 auditory meatus epithelium 5 1100 -UBERON:0010069 outer epithelial layer of tympanic membrane 5 1101 -UBERON:0010081 future common hepatic duct 5 1102 -UBERON:0011197 parathyroid epithelium 5 1103 -UBERON:0011195 inferior parathyroid epithelium 6 1104 -UBERON:0011196 superior parathyroid epithelium 6 1105 -UBERON:0012363 thyroid follicle epithelium 5 1106 -UBERON:0012481 cloacal epithelium 5 1107 -UBERON:0009846 embryonic cloacal epithelium 6 1108 -UBERON:0004902 urogenital sinus epithelium 7 1109 -UBERON:0003820 prostate bud 8 1110 -UBERON:0012925 bronchial bud 5 1111 -UBERON:0013697 exocrine pancreas epithelium 5 1112 -UBERON:0009970 epithelium of pancreatic duct 6 1113 -UBERON:0014705 median lingual swelling epithelium 5 1114 -UBERON:0016547 lower foregut region endoderm 5 1115 -UBERON:0036072 respiratory primordium epithelium 5 1116 -UBERON:0006081 fundus of gallbladder 4 1117 -UBERON:0006257 laryngotracheal groove 4 1118 -UBERON:0006496 external acoustic meatus osseus part 4 1119 -UBERON:0006524 alveolar system 4 1120 -UBERON:0006525 left lung alveolar system 4 1121 -UBERON:0006526 right lung alveolar system 4 1122 -UBERON:0006699 foramen cecum of tongue 4 1123 -UBERON:0006755 inferior parathyroid gland 4 1124 -UBERON:0007179 basal cell layer of urothelium 4 1125 -UBERON:0007196 tracheobronchial tree 4 1126 -UBERON:0007324 pancreatic lobule 4 1127 -UBERON:0015280 pancreas left lobe 5 1128 -UBERON:0015281 pancreas right lobe 5 1129 -UBERON:0007329 pancreatic duct 4 1130 -UBERON:0001064 ventral pancreatic duct 5 1131 -UBERON:0005429 dorsal pancreatic duct 5 1132 -UBERON:0007691 gustatory pore 4 1133 -UBERON:0008310 nasopharyngeal gland 4 1134 -UBERON:0008815 pharyngeal slit 4 1135 -UBERON:0008817 thymus primordium endoderm 4 1136 -UBERON:0008873 alveolar pore 4 1137 -UBERON:0008946 lung parenchyma 4 1138 -UBERON:0008870 pulmonary alveolar parenchyma 5 1139 -UBERON:0008954 lingula of left lung 4 1140 -UBERON:0009058 faveolus 4 1141 -UBERON:0009074 syrinx organ 4 1142 -UBERON:0009075 membrana tympaniformis 4 1143 -UBERON:0009076 membrana tympaniformis lateralis 5 1144 -UBERON:0009077 membrana tympaniformis medialis 5 1145 -UBERON:0009504 mesenchyme of main bronchus 4 1146 -UBERON:0009505 mesenchyme of trachea 4 1147 -UBERON:0007267 trachea pre-cartilage rings 5 1148 -UBERON:0009652 bronchus basement membrane 4 1149 -UBERON:0009653 trachea basement membrane 4 1150 -UBERON:0009672 oronasal membrane 4 1151 -UBERON:0009708 dorsal pancreas 4 1152 -UBERON:0009709 ventral pancreas 4 1153 -UBERON:0009778 pleural sac 4 1154 -UBERON:0010002 pulmonary neuroendocrine body 4 1155 -UBERON:0010017 spiral valve of cystic duct 4 1156 -UBERON:0010183 liver trabecula 4 1157 -UBERON:0010212 laryngeal apparatus 4 1158 -UBERON:0010213 laryngeal pre-cartilage condensation 4 1159 -UBERON:0010214 cricoid pre-cartilage condensation 5 1160 -UBERON:0010219 thyroid pre-cartilage condensation 5 1161 -UBERON:0010220 arytenoid pre-cartilage condensation 5 1162 -UBERON:0010215 arytenoid swellings 4 1163 -UBERON:0010221 laryngeal associated mesenchyme 4 1164 -UBERON:0010233 stroma of thyroid gland 4 1165 -UBERON:0010368 pulmonary lobule 4 1166 -UBERON:0008874 pulmonary acinus 5 1167 -UBERON:0010369 secondary pulmonary lobule 5 1168 -UBERON:0010373 uncinate process of pancreas 4 1169 -UBERON:0010928 cricopharyngeus muscle 4 1170 -UBERON:0010936 thyropharyngeus muscle 4 1171 -UBERON:0011150 pharyngeal arch derived gill 4 1172 -UBERON:0011623 horn of thyroid cartilage 4 1173 -UBERON:0011624 superior horn of thyroid cartilage 5 1174 -UBERON:0011625 inferior horn of thyroid cartilage 5 1175 -UBERON:0011862 pulmonary collagen fibril 4 1176 -UBERON:0012278 gland of nasal mucosa 4 1177 -UBERON:0002232 olfactory gland 5 1178 -UBERON:0013233 supraorbital gland 5 1179 -UBERON:0035077 lateral nasal gland 5 1180 -UBERON:0012330 nasal-associated lymphoid tissue 4 1181 -UBERON:0001732 pharyngeal tonsil 5 1182 -UBERON:0013139 ligament of liver 4 1183 -UBERON:0001247 falciform ligament 5 1184 -UBERON:0006588 round ligament of liver 5 1185 -UBERON:0013138 coronary ligament of liver 5 1186 -UBERON:0014372 fibroelastic membrane of larynx 4 1187 -UBERON:0014385 aryepiglottic fold 4 1188 -UBERON:0014779 liver reticuloendothelial system 4 1189 -UBERON:0015139 infundibulum of gallbladder 4 1190 -UBERON:0015246 septal organ of Masera 4 1191 -UBERON:0015247 bifurcation of trachea 4 1192 -UBERON:0015472 tracheobronchial lymph node 4 1193 -UBERON:0015784 duct of olfactory gland 4 1194 -UBERON:0015785 acinus of olfactory gland 4 1195 -UBERON:0015787 upper respiratory conduit 4 1196 -UBERON:0015788 olfactory apparatus chamber 5 1197 -UBERON:0016478 liver stroma 4 1198 -UBERON:0016480 interlobular stroma of liver 5 1199 -UBERON:0016479 capsule of liver 4 1200 -UBERON:0016481 bronchial lymph node 4 1201 -UBERON:0018226 pulmonary part of lymphatic system 4 1202 -UBERON:0018227 pulmonary lymphatic vessel 4 1203 -UBERON:0019190 mucous gland of lung 4 1204 -UBERON:0022361 lung field 4 1205 -UBERON:0034680 laryngeal prominence 4 1206 -UBERON:0035075 thymus subunit 4 1207 -UBERON:0001118 lobe of thyroid gland 5 1208 -UBERON:0001119 right lobe of thyroid gland 6 1209 -UBERON:0001120 left lobe of thyroid gland 6 1210 -UBERON:0035120 fauces 4 1211 -UBERON:0035240 posterior wall of oropharynx 4 1212 -UBERON:0035267 neck of gallbladder 4 1213 -UBERON:0035270 roof of nasopharynx 4 1214 -UBERON:0035286 lateral wall of oropharynx 4 1215 -UBERON:0035383 lateral wall of nasopharynx 4 1216 -UBERON:0035401 posterior wall of nasopharynx 4 1217 -UBERON:0035444 triangular ligament of liver 4 1218 -UBERON:0035453 laryngeal ventricle 4 1219 -UBERON:0035536 body of gallbladder 4 1220 -UBERON:0035606 cartilage of external acoustic meatus 4 1221 -UBERON:0036343 wall of gallbladder 4 1222 -UBERON:2000211 gill lamella 4 1223 -UBERON:2000319 branchiostegal membrane 4 1224 -UBERON:2005174 ventral liver lobe 4 1225 -UBERON:2005346 extrapancreatic duct 4 1226 -UBERON:3000676 bronchial process 4 1227 -UBERON:3000677 lateral process of cricoid cartilage 4 1228 -UBERON:3000678 esophageal process 4 1229 -UBERON:3000688 prominentia apicalis dorsalis 4 1230 -UBERON:3000689 prominentia apicalis ventralis 4 1231 -UBERON:3000948 articular process 4 1232 -UBERON:3010437 post-anal gut 4 1233 -UBERON:0004120 mesoderm-derived structure 3 1234 -UBERON:0000042 serous membrane 4 1235 -UBERON:0000977 pleura 5 1236 -UBERON:0001260 serosa of urinary bladder 5 1237 -UBERON:0001297 serosa of uterus 5 1238 -UBERON:0003885 mesometrium 6 1239 -UBERON:0010391 parametrium 7 1240 -UBERON:0001975 serosa of esophagus 5 1241 -UBERON:0003283 mesentery of oesophagus 6 1242 -UBERON:0002095 mesentery 5 1243 -UBERON:0001342 mesovarium 6 1244 -UBERON:0003282 mesentery of heart 6 1245 -UBERON:0003283 mesentery of oesophagus 6 1246 -UBERON:0003284 mesentery of midgut 6 1247 -UBERON:0005712 midgut duodenum mesentery 7 1248 -UBERON:0003393 mesentery of urinary system 6 1249 -UBERON:0003394 mesentery of hindgut 6 1250 -UBERON:0003885 mesometrium 6 1251 -UBERON:0010391 parametrium 7 1252 -UBERON:0004854 gastrointestinal system mesentery 6 1253 -UBERON:0001170 mesentery of small intestine 7 1254 -UBERON:0003397 mesentery of duodenum 8 1255 -UBERON:0005711 foregut duodenum mesentery 9 1256 -UBERON:0005712 midgut duodenum mesentery 9 1257 -UBERON:0003398 mesentery of jejunum 8 1258 -UBERON:0006359 mesoduodenum 8 1259 -UBERON:0022357 mesentery of ileum 8 1260 -UBERON:0003281 mesentery of stomach 7 1261 -UBERON:0005602 dorsal mesogastrium 8 1262 -UBERON:0005626 ventral mesogastrium 8 1263 -UBERON:0003395 mesentery of rectum 7 1264 -UBERON:0003396 mesentery of colon 7 1265 -UBERON:0005677 caecum mesentery 8 1266 -UBERON:0007826 peritoneal mesentery 6 1267 -UBERON:0001170 mesentery of small intestine 7 1268 -UBERON:0003397 mesentery of duodenum 8 1269 -UBERON:0005711 foregut duodenum mesentery 9 1270 -UBERON:0005712 midgut duodenum mesentery 9 1271 -UBERON:0003398 mesentery of jejunum 8 1272 -UBERON:0006359 mesoduodenum 8 1273 -UBERON:0022357 mesentery of ileum 8 1274 -UBERON:0003396 mesentery of colon 7 1275 -UBERON:0005677 caecum mesentery 8 1276 -UBERON:0009483 mesentery of foregut-midgut junction 6 1277 -UBERON:0009484 dorsal mesentery of mesentery of foregut-midgut junction 7 1278 -UBERON:0009502 ventral mesentery of mesentery of foregut-midgut junction 7 1279 -UBERON:0009664 gut mesentery 6 1280 -UBERON:0012331 mesosalpinx 6 1281 -UBERON:0002357 serous pericardium 5 1282 -UBERON:0002358 peritoneum 5 1283 -UBERON:0007826 peritoneal mesentery 6 1284 -UBERON:0001170 mesentery of small intestine 7 1285 -UBERON:0003397 mesentery of duodenum 8 1286 -UBERON:0005711 foregut duodenum mesentery 9 1287 -UBERON:0005712 midgut duodenum mesentery 9 1288 -UBERON:0003398 mesentery of jejunum 8 1289 -UBERON:0006359 mesoduodenum 8 1290 -UBERON:0022357 mesentery of ileum 8 1291 -UBERON:0003396 mesentery of colon 7 1292 -UBERON:0005677 caecum mesentery 8 1293 -UBERON:0034696 fold of peritoneum 6 1294 -UBERON:0005344 peritoneal vaginal process 7 1295 -UBERON:0007111 Douglas' pouch 7 1296 -UBERON:0011049 uterovesical pouch 7 1297 -UBERON:0012333 ovarian bursa 7 1298 -UBERON:0035201 gastrocolic ligament 7 1299 -UBERON:3010818 hepatic peritoneum 6 1300 -UBERON:3010819 gastrointestinal peritoneum 6 1301 -UBERON:0004782 gastrointestinal system serosa 5 1302 -UBERON:0001201 serosa of stomach 6 1303 -UBERON:0012503 serosa of fundus of stomach 7 1304 -UBERON:0001243 serosa of intestine 6 1305 -UBERON:0001206 serosa of small intestine 7 1306 -UBERON:0001170 mesentery of small intestine 8 1307 -UBERON:0003397 mesentery of duodenum 9 1308 -UBERON:0005711 foregut duodenum mesentery 10 1309 -UBERON:0005712 midgut duodenum mesentery 10 1310 -UBERON:0003398 mesentery of jejunum 9 1311 -UBERON:0006359 mesoduodenum 9 1312 -UBERON:0022357 mesentery of ileum 9 1313 -UBERON:0003336 serosa of duodenum 8 1314 -UBERON:0003397 mesentery of duodenum 9 1315 -UBERON:0005711 foregut duodenum mesentery 10 1316 -UBERON:0005712 midgut duodenum mesentery 10 1317 -UBERON:0003337 serosa of jejunum 8 1318 -UBERON:0003398 mesentery of jejunum 9 1319 -UBERON:0001209 serosa of large intestine 7 1320 -UBERON:0003334 serosa of rectum 8 1321 -UBERON:0003395 mesentery of rectum 9 1322 -UBERON:0003335 serosa of colon 8 1323 -UBERON:0003396 mesentery of colon 9 1324 -UBERON:0005677 caecum mesentery 10 1325 -UBERON:0012498 serosa of appendix 9 1326 -UBERON:0004854 gastrointestinal system mesentery 6 1327 -UBERON:0001170 mesentery of small intestine 7 1328 -UBERON:0003397 mesentery of duodenum 8 1329 -UBERON:0005711 foregut duodenum mesentery 9 1330 -UBERON:0005712 midgut duodenum mesentery 9 1331 -UBERON:0003398 mesentery of jejunum 8 1332 -UBERON:0006359 mesoduodenum 8 1333 -UBERON:0022357 mesentery of ileum 8 1334 -UBERON:0003281 mesentery of stomach 7 1335 -UBERON:0005602 dorsal mesogastrium 8 1336 -UBERON:0005626 ventral mesogastrium 8 1337 -UBERON:0003395 mesentery of rectum 7 1338 -UBERON:0003396 mesentery of colon 7 1339 -UBERON:0005677 caecum mesentery 8 1340 -UBERON:0004783 gall bladder serosa 5 1341 -UBERON:0007181 serosa of infundibulum of uterine tube 5 1342 -UBERON:0007616 layer of synovial tissue 5 1343 -UBERON:0002018 synovial membrane of synovial joint 6 1344 -UBERON:0011233 synovial membrane of synovial tendon sheath 6 1345 -UBERON:0012483 serosa of cloaca 5 1346 -UBERON:0012499 serosa of uterine tube 5 1347 -UBERON:0036553 wall of synovial tendon sheath 5 1348 -UBERON:0000056 ureter 4 1349 -UBERON:0001222 right ureter 5 1350 -UBERON:0001223 left ureter 5 1351 -UBERON:0000057 urethra 4 1352 -UBERON:0001333 male urethra 5 1353 -UBERON:0001334 female urethra 5 1354 -UBERON:0000074 renal glomerulus 4 1355 -UBERON:0004736 metanephric glomerulus 5 1356 -UBERON:0004739 pronephric glomerulus 5 1357 -UBERON:0005325 mesonephric glomerulus 5 1358 -UBERON:0000077 mixed endoderm/mesoderm-derived structure 4 1359 -UBERON:0000078 mixed ectoderm/mesoderm/endoderm-derived structure 5 1360 -UBERON:0000114 lung connective tissue 5 1361 -UBERON:0003591 lobar bronchus connective tissue 6 1362 -UBERON:0003615 lung elastic tissue 6 1363 -UBERON:0000428 prostate epithelium 5 1364 -UBERON:0000977 pleura 5 1365 -UBERON:0001247 falciform ligament 5 1366 -UBERON:0001254 urothelium of ureter 5 1367 -UBERON:0005912 transitional epithelium of major calyx 6 1368 -UBERON:0001328 lobe of prostate 5 1369 -UBERON:0001329 prostate gland anterior lobe 6 1370 -UBERON:0007615 prostate gland ventral lobe 6 1371 -UBERON:0008808 prostate gland dorsolateral lobe 6 1372 -UBERON:0013637 prostate gland lateral lobe 6 1373 -UBERON:0015792 prostate gland dorsal lobe 6 1374 -UBERON:0035341 posterior lobe of prostate 6 1375 -UBERON:0035766 median lobe of prostate 6 1376 -UBERON:0002122 capsule of thymus 5 1377 -UBERON:0002123 cortex of thymus 5 1378 -UBERON:0002124 medulla of thymus 5 1379 -UBERON:0002125 thymus lobule 5 1380 -UBERON:0002325 epithelium of urethra 5 1381 -UBERON:0004787 urethra urothelium 6 1382 -UBERON:0015777 transitional epithelium of prostatic urethra 7 1383 -UBERON:0016510 epithelium of male urethra 6 1384 -UBERON:0015777 transitional epithelium of prostatic urethra 7 1385 -UBERON:0034770 bulbourethral gland epithelium 7 1386 -UBERON:0016520 epithelium of female urethra 6 1387 -UBERON:0002367 prostate gland 5 1388 -UBERON:0002370 thymus 5 1389 -UBERON:0009114 cervical thymus 6 1390 -UBERON:0018244 superficial cervical thymus 7 1391 -UBERON:0018245 deep cervical thymus 7 1392 -UBERON:0009115 thoracic thymus 6 1393 -UBERON:0002400 parietal pleura 5 1394 -UBERON:0002401 visceral pleura 5 1395 -UBERON:0002485 prostate duct 5 1396 -UBERON:0003279 endothelium of trachea 5 1397 -UBERON:0003280 endothelium of main bronchus 5 1398 -UBERON:0003483 thymus lymphoid tissue 5 1399 -UBERON:0003505 trachea blood vessel 5 1400 -UBERON:0003512 lung blood vessel 5 1401 -UBERON:0016405 pulmonary capillary 6 1402 -UBERON:0003518 main bronchus blood vessel 5 1403 -UBERON:0003846 thymus epithelium 5 1404 -UBERON:0006936 thymus subcapsular epithelium 6 1405 -UBERON:0003987 Hassall's corpuscle 5 1406 -UBERON:0003988 thymus corticomedullary boundary 5 1407 -UBERON:0004179 prostate glandular acinus 5 1408 -UBERON:0004184 prostate gland stroma 5 1409 -UBERON:0004233 lower respiratory tract smooth muscle 5 1410 -UBERON:0003387 smooth muscle of trachea 6 1411 -UBERON:0006680 trachealis 7 1412 -UBERON:0004242 bronchus smooth muscle 6 1413 -UBERON:0004241 main bronchus smooth muscle 7 1414 -UBERON:0004515 smooth muscle tissue of bronchiole 7 1415 -UBERON:0004516 smooth muscle tissue of terminal bronchiole 8 1416 -UBERON:0004517 smooth muscle tissue of respiratory bronchiole 8 1417 -UBERON:0004895 alveolar smooth muscle 6 1418 -UBERON:0004240 gall bladder smooth muscle 5 1419 -UBERON:0004645 urinary bladder urothelium 5 1420 -UBERON:0004783 gall bladder serosa 5 1421 -UBERON:0004791 thymus trabecula 5 1422 -UBERON:0004834 hepatic duct smooth muscle 5 1423 -UBERON:0004883 lung mesenchyme 5 1424 -UBERON:0004884 lobar bronchus mesenchyme 6 1425 -UBERON:0004901 right lung lobar bronchus mesenchyme 7 1426 -UBERON:0004897 right lung accessory lobe lobar bronchus mesenchyme 8 1427 -UBERON:0004899 right lung cranial lobe lobar bronchus mesenchyme 8 1428 -UBERON:0004900 right lung middle lobe lobar bronchus mesenchyme 8 1429 -UBERON:0009602 left lung associated mesenchyme 6 1430 -UBERON:0009603 right lung associated mesenchyme 6 1431 -UBERON:0004901 right lung lobar bronchus mesenchyme 7 1432 -UBERON:0004897 right lung accessory lobe lobar bronchus mesenchyme 8 1433 -UBERON:0004899 right lung cranial lobe lobar bronchus mesenchyme 8 1434 -UBERON:0004900 right lung middle lobe lobar bronchus mesenchyme 8 1435 -UBERON:0004902 urogenital sinus epithelium 5 1436 -UBERON:0003820 prostate bud 6 1437 -UBERON:0005483 thymus lobe 5 1438 -UBERON:0005457 left thymus lobe 6 1439 -UBERON:0005469 right thymus lobe 6 1440 -UBERON:0005672 right lung endothelium 5 1441 -UBERON:0005674 right lung cranial lobe endothelium 6 1442 -UBERON:0005675 right lung caudal lobe endothelium 6 1443 -UBERON:0005676 right lung accessory lobe endothelium 6 1444 -UBERON:0005673 left lung endothelium 5 1445 -UBERON:0006588 round ligament of liver 5 1446 -UBERON:0008715 muscle tissue of prostate 5 1447 -UBERON:0004243 prostate gland smooth muscle 6 1448 -UBERON:0004520 striated muscle tissue of prostate 6 1449 -UBERON:0008807 coagulating gland 5 1450 -UBERON:0009847 prostate field 5 1451 -UBERON:0013138 coronary ligament of liver 5 1452 -UBERON:0013479 lung endothelium 5 1453 -UBERON:0015130 connective tissue of prostate gland 5 1454 -UBERON:0015131 subepithelial connective tissue of prostatic gland 6 1455 -UBERON:0015142 falciform fat 5 1456 -UBERON:0015796 liver blood vessel 5 1457 -UBERON:0001143 hepatic vein 6 1458 -UBERON:0011955 left hepatic vein 7 1459 -UBERON:0011956 right hepatic vein 7 1460 -UBERON:0011957 middle hepatic vein 7 1461 -UBERON:0015455 accessory hepatic vein 7 1462 -UBERON:0001281 hepatic sinusoid 6 1463 -UBERON:0009548 hepatic sinusoid of left of lobe of liver 7 1464 -UBERON:0011737 caudate lobe hepatic sinusoid 8 1465 -UBERON:0009549 hepatic sinusoid of right of lobe of liver 7 1466 -UBERON:0011737 caudate lobe hepatic sinusoid 8 1467 -UBERON:0011738 quadrate lobe hepatic sinusoid 8 1468 -UBERON:0006841 central vein of liver 6 1469 -UBERON:0015481 left hepatic artery 6 1470 -UBERON:0015482 right hepatic artery 6 1471 -UBERON:0016890 intrahepatic branch of portal vein 6 1472 -UBERON:3010404 capillary system of liver 6 1473 -UBERON:0035316 prostatic capsule 5 1474 -UBERON:0035331 base of prostate 5 1475 -UBERON:0035431 mediastinal pleura 5 1476 -UBERON:0036073 respiratory primordium mesenchyme 5 1477 -UBERON:2001857 hyoidean artery 5 1478 -UBERON:2005015 afferent lamellar arteriole 5 1479 -UBERON:2005019 efferent lamellar arteriole 5 1480 -UBERON:0000080 mesonephros 4 1481 -UBERON:0000081 metanephros 4 1482 -UBERON:0000082 adult mammalian kidney 4 1483 -UBERON:0000144 trochlea of humerus 4 1484 -UBERON:0000155 theca cell layer 4 1485 -UBERON:0000156 theca externa 4 1486 -UBERON:0000157 theca interna 4 1487 -UBERON:0000199 neck of radius 4 1488 -UBERON:0000305 amnion 4 1489 -UBERON:0000437 arachnoid barrier layer 4 1490 -UBERON:0000460 major vestibular gland 4 1491 -UBERON:0000946 cardial valve 4 1492 -UBERON:0002086 sinoatrial valve 5 1493 -UBERON:0002133 atrioventricular valve 5 1494 -UBERON:0002134 tricuspid valve 6 1495 -UBERON:0002135 mitral valve 6 1496 -UBERON:0004149 ventriculo bulbo valve 5 1497 -UBERON:0004150 coronary sinus valve 5 1498 -UBERON:0005485 valve of inferior vena cava 5 1499 -UBERON:0005623 semi-lunar valve 5 1500 -UBERON:0002137 aortic valve 6 1501 -UBERON:0002146 pulmonary valve 6 1502 -UBERON:0000948 heart 4 1503 -UBERON:0000980 trochanter 4 1504 -UBERON:0002503 greater trochanter 5 1505 -UBERON:0002504 lesser trochanter 5 1506 -UBERON:0008786 third trochanter 5 1507 -UBERON:0008787 fourth trochanter 5 1508 -UBERON:0000989 penis 4 1509 -UBERON:0000996 vagina 4 1510 -UBERON:0013523 lateral vaginal canal 5 1511 -UBERON:0013524 median vaginal canal 5 1512 -UBERON:0000998 seminal vesicle 4 1513 -UBERON:0001010 diaphysis of ulna 4 1514 -UBERON:0001012 head of radius 4 1515 -UBERON:0001028 diaphysis of radius 4 1516 -UBERON:0001112 latissimus dorsi muscle 4 1517 -UBERON:0001128 sternocleidomastoid 4 1518 -UBERON:0001129 subscapularis muscle 4 1519 -UBERON:0001235 adrenal cortex 4 1520 -UBERON:0035825 left adrenal gland cortex 5 1521 -UBERON:0035827 right adrenal gland cortex 5 1522 -UBERON:0001236 adrenal medulla 4 1523 -UBERON:0035826 left adrenal gland medulla 5 1524 -UBERON:0035828 right adrenal gland medulla 5 1525 -UBERON:0001249 spleen lymphoid follicle 4 1526 -UBERON:0004041 spleen primary B follicle 5 1527 -UBERON:0004042 spleen secondary B follicle 5 1528 -UBERON:0001251 marginal zone of spleen 4 1529 -UBERON:0001252 adventitia of ureter 4 1530 -UBERON:0001253 lamina propria of ureter 4 1531 -UBERON:0001255 urinary bladder 4 1532 -UBERON:0001256 wall of urinary bladder 4 1533 -UBERON:0001257 trigone of urinary bladder 4 1534 -UBERON:0001258 neck of urinary bladder 4 1535 -UBERON:0001259 mucosa of urinary bladder 4 1536 -UBERON:0005009 mucosa of trigone of urinary bladder 5 1537 -UBERON:0005010 mucosa of neck of urinary bladder 5 1538 -UBERON:0001261 lamina propria of urinary bladder 4 1539 -UBERON:0001265 trabecula of spleen 4 1540 -UBERON:0001266 splenic cord 4 1541 -UBERON:0001269 acetabular part of hip bone 4 1542 -UBERON:0001300 scrotum 4 1543 -UBERON:0001301 epididymis 4 1544 -UBERON:0001305 ovarian follicle 4 1545 -UBERON:0000035 primary ovarian follicle 5 1546 -UBERON:0000036 secondary ovarian follicle 5 1547 -UBERON:0000037 tertiary ovarian follicle 5 1548 -UBERON:0003981 primordial ovarian follicle 5 1549 -UBERON:0003982 mature ovarian follicle 5 1550 -UBERON:0000450 corpus albicans 6 1551 -UBERON:0007180 atretic follicle of ovary 5 1552 -UBERON:0012186 ovary growing follicle 5 1553 -UBERON:2001263 ovarian follicle stage I 5 1554 -UBERON:2001265 ovarian follicle stage II 5 1555 -UBERON:2001266 ovarian follicle stage III 5 1556 -UBERON:2001571 postovulatory follicle 5 1557 -UBERON:0001306 cumulus oophorus 4 1558 -UBERON:0001331 skin of penis 4 1559 -UBERON:0001471 skin of prepuce of penis 5 1560 -UBERON:0001335 prostatic urethra 4 1561 -UBERON:0001336 membranous urethra of male or female 4 1562 -UBERON:0012301 female membranous urethra 5 1563 -UBERON:0012302 male membranous urethra 5 1564 -UBERON:0001337 spongiose part of urethra 4 1565 -UBERON:0001338 urethral gland 4 1566 -UBERON:0010186 male urethral gland 5 1567 -UBERON:0002366 bulbo-urethral gland 6 1568 -UBERON:0010187 female urethral gland 5 1569 -UBERON:0000461 minor vestibular gland 6 1570 -UBERON:0001343 seminiferous tubule of testis 4 1571 -UBERON:0001346 vaginal hymen 4 1572 -UBERON:0001476 deltoid 4 1573 -UBERON:0001478 teres major muscle 4 1574 -UBERON:0001495 pectoral muscle 4 1575 -UBERON:0001100 pectoralis minor 5 1576 -UBERON:0002381 pectoralis major 5 1577 -UBERON:0008779 subclavius 5 1578 -UBERON:0014837 pectoantebrachialis 5 1579 -UBERON:0014838 xiphihumeralis 5 1580 -UBERON:0001571 genioglossus muscle 4 1581 -UBERON:0001576 intrinsic muscle of tongue 4 1582 -UBERON:0008582 superior longitudinal muscle of tongue 5 1583 -UBERON:0008583 transverse muscle of tongue 5 1584 -UBERON:0008584 vertical muscle of tongue 5 1585 -UBERON:0001601 extra-ocular muscle 4 1586 -UBERON:0001604 levator palpebrae superioris 5 1587 -UBERON:0006531 oculomotor muscle 5 1588 -UBERON:0006532 oblique extraocular muscle 6 1589 -UBERON:0006320 inferior oblique extraocular muscle 7 1590 -UBERON:0006321 superior oblique extraocular muscle 7 1591 -UBERON:0006533 rectus extraocular muscle 6 1592 -UBERON:0001602 medial rectus extraocular muscle 7 1593 -UBERON:0001603 lateral rectus extra-ocular muscle 7 1594 -UBERON:0006322 inferior rectus extraocular muscle 7 1595 -UBERON:0006323 superior rectus extraocular muscle 7 1596 -UBERON:0010271 musculus retractor bulbi 5 1597 -UBERON:3010125 musculus levator bulbi 5 1598 -UBERON:0001629 carotid body 4 1599 -UBERON:0001631 thoracic duct 4 1600 -UBERON:0001981 blood vessel 4 1601 -UBERON:0001982 capillary 5 1602 -UBERON:0003526 respiratory system capillary 6 1603 -UBERON:0016405 pulmonary capillary 7 1604 -UBERON:0003527 kidney capillary 6 1605 -UBERON:0004212 glomerular capillary 7 1606 -UBERON:0005144 metanephric glomerular capillary 8 1607 -UBERON:0006183 mesonephric glomerular capillary 8 1608 -UBERON:0007306 pronephric glomerular capillary 8 1609 -UBERON:0005272 peritubular capillary 7 1610 -UBERON:0006341 outer renal medulla peritubular capillary 8 1611 -UBERON:0006851 renal cortex peritubular capillary 8 1612 -UBERON:0006966 coronary capillary 6 1613 -UBERON:2005259 continuous capillary 6 1614 -UBERON:2005260 fenestrated capillary 6 1615 -UBERON:0003909 sinusoid 7 1616 -UBERON:0001281 hepatic sinusoid 8 1617 -UBERON:0009548 hepatic sinusoid of left of lobe of liver 9 1618 -UBERON:0011737 caudate lobe hepatic sinusoid 10 1619 -UBERON:0009549 hepatic sinusoid of right of lobe of liver 9 1620 -UBERON:0011737 caudate lobe hepatic sinusoid 10 1621 -UBERON:0011738 quadrate lobe hepatic sinusoid 10 1622 -UBERON:0003910 splenic sinusoid 8 1623 -UBERON:3010404 capillary system of liver 6 1624 -UBERON:0003496 head blood vessel 5 1625 -UBERON:0000457 cavernous artery 6 1626 -UBERON:0001532 internal carotid artery 6 1627 -UBERON:0007142 left internal carotid artery 7 1628 -UBERON:0007143 right internal carotid artery 7 1629 -UBERON:0001610 lingual artery 6 1630 -UBERON:0001611 sublingual artery 6 1631 -UBERON:0001615 transverse facial artery 6 1632 -UBERON:0001617 mental artery 6 1633 -UBERON:0001619 ophthalmic artery 6 1634 -UBERON:0001622 lacrimal artery 6 1635 -UBERON:0001624 anterior cerebral artery 6 1636 -UBERON:0001627 middle cerebral artery 6 1637 -UBERON:0001628 posterior communicating artery 6 1638 -UBERON:0001632 temporal artery 6 1639 -UBERON:0001614 superficial temporal artery 7 1640 -UBERON:0035041 deep temporal artery 7 1641 -UBERON:0035042 middle temporal artery 7 1642 -UBERON:0035043 temporal branch of lateral pretrosal artery 7 1643 -UBERON:0035225 anterior temporal artery 7 1644 -UBERON:0035261 posterior temporal artery 7 1645 -UBERON:0001633 basilar artery 6 1646 -UBERON:0001653 facial vein 6 1647 -UBERON:0001656 retromandibular vein 7 1648 -UBERON:0001655 submental vein 6 1649 -UBERON:0001659 transverse facial vein 6 1650 -UBERON:0001660 maxillary vein 6 1651 -UBERON:0001671 temporal vein 6 1652 -UBERON:0001657 superficial temporal vein 7 1653 -UBERON:0001658 middle temporal vein 7 1654 -UBERON:0001661 deep temporal vein 7 1655 -UBERON:0001673 central retinal vein 6 1656 -UBERON:0002443 choroidal blood vessel 6 1657 -UBERON:0002505 spiral modiolar artery 6 1658 -UBERON:0003470 artery of upper lip 6 1659 -UBERON:0003471 artery of lower lip 6 1660 -UBERON:0003472 cerebellar artery 6 1661 -UBERON:0001635 superior cerebellar artery 7 1662 -UBERON:0009689 anterior inferior cerebellar artery 7 1663 -UBERON:0003500 corneal blood vessel 6 1664 -UBERON:0003501 retina blood vessel 6 1665 -UBERON:0001620 central retinal artery 7 1666 -UBERON:0003510 eyelid blood vessel 6 1667 -UBERON:0003511 iris blood vessel 6 1668 -UBERON:0004029 canal of Schlemm 6 1669 -UBERON:0004030 aqueous vein 6 1670 -UBERON:0004115 blood vessel of tympanic cavity 6 1671 -UBERON:0004363 pharyngeal arch artery 6 1672 -UBERON:0003118 pharyngeal arch artery 1 7 1673 -UBERON:0003119 pharyngeal arch artery 2 7 1674 -UBERON:0003120 pharyngeal arch artery 3 7 1675 -UBERON:0003121 pharyngeal arch artery 4 7 1676 -UBERON:0003122 pharyngeal arch artery 5 7 1677 -UBERON:0003123 pharyngeal arch artery 6 7 1678 -UBERON:0005193 ethmoidal artery 6 1679 -UBERON:0012318 anterior ethmoidal artery 7 1680 -UBERON:0012319 posterior ethmoidal artery 7 1681 -UBERON:0005492 hyaloid vessel 6 1682 -UBERON:0002270 hyaloid artery 7 1683 -UBERON:0006011 hyaloid vein 7 1684 -UBERON:0005973 blood-inner ear barrier 6 1685 -UBERON:0006197 auricular vein 6 1686 -UBERON:0001662 anterior auricular vein 7 1687 -UBERON:0006199 posterior auricular vein 7 1688 -UBERON:0006345 stapedial artery 6 1689 -UBERON:0007693 caroticotympanic artery 6 1690 -UBERON:0009654 alveolar artery 6 1691 -UBERON:0014693 inferior alveolar artery 7 1692 -UBERON:0010251 anterior meningeal artery 6 1693 -UBERON:0010367 conjunctival vein 6 1694 -UBERON:0013136 vein of lip 6 1695 -UBERON:0003477 vein of upper lip 7 1696 -UBERON:0003478 vein of lower lip 7 1697 -UBERON:0014686 angular vein 6 1698 -UBERON:0014696 anterior choroidal artery 6 1699 -UBERON:0014769 palpebral vein 6 1700 -UBERON:0002459 inferior palpebral vein 7 1701 -UBERON:0014768 superior palpebral vein 7 1702 -UBERON:0001654 supraorbital vein 8 1703 -UBERON:0014770 palpebral artery 6 1704 -UBERON:0014772 lateral palpebral artery 7 1705 -UBERON:0014773 medial palpebral artery 7 1706 -UBERON:0035043 temporal branch of lateral pretrosal artery 7 1707 -UBERON:0015156 terminal branch of ophthalmic artery 6 1708 -UBERON:0001623 dorsal nasal artery 7 1709 -UBERON:0012187 frontal artery 7 1710 -UBERON:0015157 zygomatico-orbital artery 6 1711 -UBERON:0015158 ophthalmotemporal branch of external ophthalmic artery 6 1712 -UBERON:0015160 supraorbital artery 6 1713 -UBERON:0015161 inferior branch of oculomotor nerve 6 1714 -UBERON:0015162 superior branch of oculomotor nerve 6 1715 -UBERON:0017616 afferent spiracular artery 6 1716 -UBERON:0017617 efferent spiracular artery 6 1717 -UBERON:0017635 paired venous dural sinus 6 1718 -UBERON:0001641 transverse sinus 7 1719 -UBERON:0005475 sigmoid sinus 7 1720 -UBERON:0007160 inferior petrosal sinus 7 1721 -UBERON:0017637 marginal venous sinus 7 1722 -UBERON:0017638 primitive marginal sinus 7 1723 -UBERON:0035338 sphenoparietal sinus 7 1724 -UBERON:0018231 labyrinthine artery 6 1725 -UBERON:0035237 branch of internal carotid artery 6 1726 -UBERON:0035350 branch of middle cerebral artery 6 1727 -UBERON:0035222 posterior parietal artery 7 1728 -UBERON:0035225 anterior temporal artery 7 1729 -UBERON:0035261 posterior temporal artery 7 1730 -UBERON:0035462 anterior parietal artery 7 1731 -UBERON:0035380 branch of anterior cerebral artery 6 1732 -UBERON:0006764 anterior communicating artery 7 1733 -UBERON:0035404 superior hypophysial artery 6 1734 -UBERON:0035489 branch of basilar artery 6 1735 -UBERON:0001635 superior cerebellar artery 7 1736 -UBERON:0001636 posterior cerebral artery 7 1737 -UBERON:0009689 anterior inferior cerebellar artery 7 1738 -UBERON:0035492 inferior hypophysial artery 6 1739 -UBERON:0035508 branch of posterior cerebral artery 6 1740 -UBERON:0014697 posterior choroidal artery 7 1741 -UBERON:0035659 deep facial vein 6 1742 -UBERON:0035662 parotid vein 6 1743 -UBERON:0035675 anterior facial vein 6 1744 -UBERON:0036074 vein of vestibular aqueduct 6 1745 -UBERON:0036300 tributary of central retinal vein 6 1746 -UBERON:2000202 efferent portion of pharyngeal arch artery 6 1747 -UBERON:2000716 afferent portion of pharyngeal arch artery 6 1748 -UBERON:2001051 caudal division of the internal carotid artery 6 1749 -UBERON:2001052 primordial hindbrain channel 6 1750 -UBERON:2001059 cranial division of the internal carotid artery 6 1751 -UBERON:2005000 basal communicating artery 6 1752 -UBERON:2005010 mid cerebral vein 6 1753 -UBERON:2005012 afferent filamental artery 6 1754 -UBERON:2005013 concurrent branch afferent branchial artery 6 1755 -UBERON:2005014 recurrent branch afferent branchial artery 6 1756 -UBERON:2005015 afferent lamellar arteriole 6 1757 -UBERON:2005017 primordial midbrain channel 6 1758 -UBERON:2005018 efferent filamental artery 6 1759 -UBERON:2005019 efferent lamellar arteriole 6 1760 -UBERON:2005026 primary head sinus 6 1761 -UBERON:2005027 posterior cerebral vein 6 1762 -UBERON:2005030 dorsal ciliary vein 6 1763 -UBERON:2005032 optic vein 6 1764 -UBERON:2005044 optic artery 6 1765 -UBERON:2005055 median palatocerebral vein 6 1766 -UBERON:2005056 palatocerebral vein 6 1767 -UBERON:2005093 nasal vein 6 1768 -UBERON:3010494 lateral pretrosal artery 6 1769 -UBERON:3010496 mandibular artery 6 1770 -UBERON:0003499 brain blood vessel 5 1771 -UBERON:0001663 cerebral vein 6 1772 -UBERON:0001664 inferior cerebral vein 7 1773 -UBERON:0001672 anterior cerebral vein 7 1774 -UBERON:0006666 great cerebral vein 7 1775 -UBERON:0016559 superficial cerebral vein 7 1776 -UBERON:0035150 superior cerebral vein 8 1777 -UBERON:0016564 deep cerebral vein 7 1778 -UBERON:0035530 basal vein 8 1779 -UBERON:0035151 dorsal cerebral vein 7 1780 -UBERON:0035152 internal cerebral vein 7 1781 -UBERON:0035231 superficial middle cerebral vein 7 1782 -UBERON:0035532 deep middle cerebral vein 7 1783 -UBERON:0002270 hyaloid artery 6 1784 -UBERON:0016565 cerebral blood vessel 6 1785 -UBERON:2005020 central artery 6 1786 -UBERON:2005021 cerebellar central artery 7 1787 -UBERON:2005052 anterior mesencephalic central artery 7 1788 -UBERON:2005078 middle mesencephalic central artery 7 1789 -UBERON:2005079 posterior mesencephalic central artery 7 1790 -UBERON:2005031 dorsal longitudinal vein 6 1791 -UBERON:2005248 trans-choroid plexus branch 6 1792 -UBERON:0003502 neck blood vessel 5 1793 -UBERON:0001641 transverse sinus 6 1794 -UBERON:0001653 facial vein 6 1795 -UBERON:0001656 retromandibular vein 7 1796 -UBERON:0001655 submental vein 6 1797 -UBERON:0001657 superficial temporal vein 6 1798 -UBERON:0001658 middle temporal vein 6 1799 -UBERON:0001659 transverse facial vein 6 1800 -UBERON:0001660 maxillary vein 6 1801 -UBERON:0004711 jugular vein 6 1802 -UBERON:0001101 external jugular vein 7 1803 -UBERON:0001104 anterior jugular vein 7 1804 -UBERON:0001586 internal jugular vein 7 1805 -UBERON:0005475 sigmoid sinus 6 1806 -UBERON:0006197 auricular vein 6 1807 -UBERON:0001662 anterior auricular vein 7 1808 -UBERON:0006199 posterior auricular vein 7 1809 -UBERON:0012320 cervical artery 6 1810 -UBERON:0001071 superficial cervical artery 7 1811 -UBERON:0012321 deep cervical artery 7 1812 -UBERON:0012322 ascending cervical artery 7 1813 -UBERON:0012324 transverse cervical artery 7 1814 -UBERON:0013136 vein of lip 6 1815 -UBERON:0003477 vein of upper lip 7 1816 -UBERON:0003478 vein of lower lip 7 1817 -UBERON:0014686 angular vein 6 1818 -UBERON:0014769 palpebral vein 6 1819 -UBERON:0002459 inferior palpebral vein 7 1820 -UBERON:0014768 superior palpebral vein 7 1821 -UBERON:0001654 supraorbital vein 8 1822 -UBERON:0035249 posterior external jugular vein 6 1823 -UBERON:0035659 deep facial vein 6 1824 -UBERON:0035662 parotid vein 6 1825 -UBERON:0035675 anterior facial vein 6 1826 -UBERON:0036074 vein of vestibular aqueduct 6 1827 -UBERON:0003504 respiratory system blood vessel 5 1828 -UBERON:0003494 respiratory system venule 6 1829 -UBERON:0003505 trachea blood vessel 6 1830 -UBERON:0003512 lung blood vessel 6 1831 -UBERON:0016405 pulmonary capillary 7 1832 -UBERON:0003518 main bronchus blood vessel 6 1833 -UBERON:0003526 respiratory system capillary 6 1834 -UBERON:0016405 pulmonary capillary 7 1835 -UBERON:0003643 respiratory system arterial blood vessel 6 1836 -UBERON:0003469 respiratory system artery 7 1837 -UBERON:0004363 pharyngeal arch artery 8 1838 -UBERON:0003118 pharyngeal arch artery 1 9 1839 -UBERON:0003119 pharyngeal arch artery 2 9 1840 -UBERON:0003120 pharyngeal arch artery 3 9 1841 -UBERON:0003121 pharyngeal arch artery 4 9 1842 -UBERON:0003122 pharyngeal arch artery 5 9 1843 -UBERON:0003123 pharyngeal arch artery 6 9 1844 -UBERON:0017616 afferent spiracular artery 8 1845 -UBERON:0017617 efferent spiracular artery 8 1846 -UBERON:2000202 efferent portion of pharyngeal arch artery 8 1847 -UBERON:2000666 filamental artery 8 1848 -UBERON:2000716 afferent portion of pharyngeal arch artery 8 1849 -UBERON:2001857 hyoidean artery 8 1850 -UBERON:2005012 afferent filamental artery 8 1851 -UBERON:2005013 concurrent branch afferent branchial artery 8 1852 -UBERON:2005014 recurrent branch afferent branchial artery 8 1853 -UBERON:2005015 afferent lamellar arteriole 8 1854 -UBERON:2005018 efferent filamental artery 8 1855 -UBERON:2005019 efferent lamellar arteriole 8 1856 -UBERON:0003495 respiratory system arteriole 7 1857 -UBERON:3010200 vasculature of respiratory integument 6 1858 -UBERON:0003509 arterial blood vessel 5 1859 -UBERON:0000947 aorta 6 1860 -UBERON:0003085 ventral aorta 7 1861 -UBERON:0005599 common dorsal aorta 7 1862 -UBERON:0005613 left dorsal aorta 7 1863 -UBERON:0005622 right dorsal aorta 7 1864 -UBERON:0005805 dorsal aorta 7 1865 -UBERON:3010423 larval aorta 7 1866 -UBERON:0001637 artery 6 1867 -UBERON:0001190 ovarian artery 7 1868 -UBERON:0002493 uterine artery 8 1869 -UBERON:0001193 hepatic artery 7 1870 -UBERON:0015480 proper hepatic artery 8 1871 -UBERON:0015481 left hepatic artery 8 1872 -UBERON:0015482 right hepatic artery 8 1873 -UBERON:0001310 umbilical artery 7 1874 -UBERON:0005458 left umbilical artery 8 1875 -UBERON:0005470 right umbilical artery 8 1876 -UBERON:0001390 sural artery 7 1877 -UBERON:0001394 axillary artery 7 1878 -UBERON:0001395 thoraco-acromial artery 7 1879 -UBERON:0001396 lateral thoracic artery 7 1880 -UBERON:0001397 subscapular artery 7 1881 -UBERON:0001398 brachial artery 7 1882 -UBERON:0001399 deep brachial artery 7 1883 -UBERON:0001404 radial artery 7 1884 -UBERON:0001406 ulnar artery 7 1885 -UBERON:0001552 kidney arcuate artery 7 1886 -UBERON:0001553 medial tarsal artery 7 1887 -UBERON:0001616 maxillary artery 7 1888 -UBERON:0001617 mental artery 7 1889 -UBERON:0001618 buccal artery 7 1890 -UBERON:0001632 temporal artery 7 1891 -UBERON:0001614 superficial temporal artery 8 1892 -UBERON:0035041 deep temporal artery 8 1893 -UBERON:0035042 middle temporal artery 8 1894 -UBERON:0035043 temporal branch of lateral pretrosal artery 8 1895 -UBERON:0035225 anterior temporal artery 8 1896 -UBERON:0035261 posterior temporal artery 8 1897 -UBERON:0001634 mesencephalic artery 7 1898 -UBERON:0001651 right pulmonary artery 7 1899 -UBERON:0001652 left pulmonary artery 7 1900 -UBERON:0002011 thoracodorsal artery 7 1901 -UBERON:0002012 pulmonary artery 7 1902 -UBERON:0002061 truncus arteriosus 7 1903 -UBERON:0002249 median artery 7 1904 -UBERON:0002270 hyaloid artery 7 1905 -UBERON:0002333 pulmonary trunk 7 1906 -UBERON:0002454 dorsal metacarpal artery 7 1907 -UBERON:0002457 intersomitic artery 7 1908 -UBERON:0002505 spiral modiolar artery 7 1909 -UBERON:0003469 respiratory system artery 7 1910 -UBERON:0004363 pharyngeal arch artery 8 1911 -UBERON:0003118 pharyngeal arch artery 1 9 1912 -UBERON:0003119 pharyngeal arch artery 2 9 1913 -UBERON:0003120 pharyngeal arch artery 3 9 1914 -UBERON:0003121 pharyngeal arch artery 4 9 1915 -UBERON:0003122 pharyngeal arch artery 5 9 1916 -UBERON:0003123 pharyngeal arch artery 6 9 1917 -UBERON:0017616 afferent spiracular artery 8 1918 -UBERON:0017617 efferent spiracular artery 8 1919 -UBERON:2000202 efferent portion of pharyngeal arch artery 8 1920 -UBERON:2000666 filamental artery 8 1921 -UBERON:2000716 afferent portion of pharyngeal arch artery 8 1922 -UBERON:2001857 hyoidean artery 8 1923 -UBERON:2005012 afferent filamental artery 8 1924 -UBERON:2005013 concurrent branch afferent branchial artery 8 1925 -UBERON:2005014 recurrent branch afferent branchial artery 8 1926 -UBERON:2005015 afferent lamellar arteriole 8 1927 -UBERON:2005018 efferent filamental artery 8 1928 -UBERON:2005019 efferent lamellar arteriole 8 1929 -UBERON:0003472 cerebellar artery 7 1930 -UBERON:0001635 superior cerebellar artery 8 1931 -UBERON:0009689 anterior inferior cerebellar artery 8 1932 -UBERON:0003473 thoracic cavity artery 7 1933 -UBERON:0001884 phrenic nerve 8 1934 -UBERON:0003474 meningeal artery 7 1935 -UBERON:0010249 posterior meningeal artery 8 1936 -UBERON:0010250 middle meningeal artery 8 1937 -UBERON:0010251 anterior meningeal artery 8 1938 -UBERON:0003847 thyroid artery 7 1939 -UBERON:0007149 inferior thyroid artery 8 1940 -UBERON:0007150 superior thyroid artery 8 1941 -UBERON:0018250 middle thyroid artery 8 1942 -UBERON:0004552 digital artery 7 1943 -UBERON:0004553 forelimb digital artery 8 1944 -UBERON:0006141 palmar digital artery 9 1945 -UBERON:0001410 common palmar digital artery 10 1946 -UBERON:0006137 proper palmar digital artery 10 1947 -UBERON:0006146 dorsal digital artery of manus 9 1948 -UBERON:0006164 forelimb common dorsal digital arteries 10 1949 -UBERON:0006165 median dorsal digital artery for digit 1 10 1950 -UBERON:0006166 lateral dorsal digital artery for digit 5 10 1951 -UBERON:0006167 forelimb proper dorsal digital arteries 10 1952 -UBERON:0004554 hindlimb digital artery 8 1953 -UBERON:0006138 plantar digital artery 9 1954 -UBERON:0002455 common plantar digital arteries 10 1955 -UBERON:0004540 proper plantar digital artery 10 1956 -UBERON:0006145 dorsal digital artery of pes 9 1957 -UBERON:0006168 hindlimb common dorsal digital arteries 10 1958 -UBERON:0006169 hindlimb proper dorsal digital arteries 10 1959 -UBERON:0006163 dorsal digital artery 8 1960 -UBERON:0006145 dorsal digital artery of pes 9 1961 -UBERON:0006168 hindlimb common dorsal digital arteries 10 1962 -UBERON:0006169 hindlimb proper dorsal digital arteries 10 1963 -UBERON:0006146 dorsal digital artery of manus 9 1964 -UBERON:0006164 forelimb common dorsal digital arteries 10 1965 -UBERON:0006165 median dorsal digital artery for digit 1 10 1966 -UBERON:0006166 lateral dorsal digital artery for digit 5 10 1967 -UBERON:0006167 forelimb proper dorsal digital arteries 10 1968 -UBERON:0004573 systemic artery 7 1969 -UBERON:0000457 cavernous artery 8 1970 -UBERON:0001192 left gastric artery 8 1971 -UBERON:0001194 splenic artery 8 1972 -UBERON:0001195 inferior pancreaticoduodenal artery 8 1973 -UBERON:0001196 middle colic artery 8 1974 -UBERON:0001197 ileocolic artery 8 1975 -UBERON:0001198 superior suprarenal artery 8 1976 -UBERON:0001311 inferior vesical artery 8 1977 -UBERON:0035640 middle vesical artery 9 1978 -UBERON:0001313 iliolumbar artery 8 1979 -UBERON:0001314 obturator artery 8 1980 -UBERON:0001315 superior gluteal artery 8 1981 -UBERON:0001340 dorsal artery of penis 8 1982 -UBERON:0001354 inferior epigastric artery 8 1983 -UBERON:0001355 deep femoral artery 8 1984 -UBERON:0007316 deep external pudendal artery 9 1985 -UBERON:0001356 medial circumflex femoral artery 8 1986 -UBERON:0001358 perineal artery 8 1987 -UBERON:0001529 brachiocephalic artery 8 1988 -UBERON:0001530 common carotid artery plus branches 8 1989 -UBERON:0001531 right common carotid artery plus branches 9 1990 -UBERON:0001536 left common carotid artery plus branches 9 1991 -UBERON:0003708 carotid sinus 9 1992 -UBERON:0001533 subclavian artery 8 1993 -UBERON:0001534 right subclavian artery 9 1994 -UBERON:0001584 left subclavian artery 9 1995 -UBERON:0001539 dorsalis pedis artery 8 1996 -UBERON:0001541 medial plantar artery 8 1997 -UBERON:0001561 subcostal artery 8 1998 -UBERON:0001611 sublingual artery 8 1999 -UBERON:0001615 transverse facial artery 8 2000 -UBERON:0001619 ophthalmic artery 8 2001 -UBERON:0001620 central retinal artery 8 2002 -UBERON:0001621 coronary artery 8 2003 -UBERON:0001625 right coronary artery 9 2004 -UBERON:0001626 left coronary artery 9 2005 -UBERON:0001622 lacrimal artery 8 2006 -UBERON:0001628 posterior communicating artery 8 2007 -UBERON:0002040 bronchial artery 8 2008 -UBERON:0002056 inferior suprarenal artery 8 2009 -UBERON:0002057 phrenic artery 8 2010 -UBERON:0006632 musculo-phrenic artery 9 2011 -UBERON:0012255 inferior phrenic artery 9 2012 -UBERON:0013133 superior phrenic artery 9 2013 -UBERON:0002060 femoral artery 8 2014 -UBERON:0002070 superior pancreaticoduodenal artery 8 2015 -UBERON:0002250 popliteal artery 8 2016 -UBERON:0002456 internal thoracic artery 8 2017 -UBERON:0002458 spinal artery 8 2018 -UBERON:0001535 vertebral artery 9 2019 -UBERON:0005431 anterior spinal artery 9 2020 -UBERON:0007146 posterior spinal artery 9 2021 -UBERON:0003086 caudal artery 8 2022 -UBERON:0003468 ureteric segment of renal artery 8 2023 -UBERON:0001188 right testicular artery 9 2024 -UBERON:0001189 left testicular artery 9 2025 -UBERON:0001312 superior vesical artery 9 2026 -UBERON:0003470 artery of upper lip 8 2027 -UBERON:0003471 artery of lower lip 8 2028 -UBERON:0003709 circle of Willis 8 2029 -UBERON:0004449 cerebral artery 8 2030 -UBERON:0001624 anterior cerebral artery 9 2031 -UBERON:0001627 middle cerebral artery 9 2032 -UBERON:0001636 posterior cerebral artery 9 2033 -UBERON:0005192 deferent duct artery 8 2034 -UBERON:0005193 ethmoidal artery 8 2035 -UBERON:0012318 anterior ethmoidal artery 9 2036 -UBERON:0012319 posterior ethmoidal artery 9 2037 -UBERON:0005396 carotid artery segment 8 2038 -UBERON:0001070 external carotid artery 9 2039 -UBERON:0001532 internal carotid artery 9 2040 -UBERON:0007142 left internal carotid artery 10 2041 -UBERON:0007143 right internal carotid artery 10 2042 -UBERON:0010197 trunk of common carotid artery 9 2043 -UBERON:0035237 branch of internal carotid artery 9 2044 -UBERON:0005436 common hepatic artery 8 2045 -UBERON:0005440 ductus arteriosus 8 2046 -UBERON:0005609 iliac artery 8 2047 -UBERON:0001191 common iliac artery 9 2048 -UBERON:0035322 right common iliac artery 10 2049 -UBERON:0035529 left common iliac artery 10 2050 -UBERON:0001308 external iliac artery 9 2051 -UBERON:0001309 internal iliac artery 9 2052 -UBERON:0005612 intercostal artery 8 2053 -UBERON:0006198 dorsal intercostal artery 9 2054 -UBERON:2000677 segmental intercostal artery 9 2055 -UBERON:0005628 ileal artery 8 2056 -UBERON:0006002 vitelline artery 8 2057 -UBERON:0007153 superior epigastric artery 8 2058 -UBERON:0007315 internal pudendal artery 8 2059 -UBERON:0007317 superficial external pudendal artery 8 2060 -UBERON:0007610 tibial artery 8 2061 -UBERON:0001537 anterior tibial artery 9 2062 -UBERON:0001538 posterior tibial artery 9 2063 -UBERON:0007693 caroticotympanic artery 8 2064 -UBERON:0008311 penile bulb artery 8 2065 -UBERON:0008320 common penile artery 8 2066 -UBERON:0008321 deep artery of penis 8 2067 -UBERON:0008322 deep artery of clitoris 8 2068 -UBERON:0008323 dorsal artery of clitoris 8 2069 -UBERON:0009040 deep circumflex iliac artery 8 2070 -UBERON:0009041 superficial circumflex iliac artery 8 2071 -UBERON:0010132 gastroduodenal artery 8 2072 -UBERON:0010176 nutrient foramen artery 8 2073 -UBERON:0010198 carotid duct 8 2074 -UBERON:0010251 anterior meningeal artery 8 2075 -UBERON:0010399 spleen trabecular artery 8 2076 -UBERON:0013132 penicillar arteriole 9 2077 -UBERON:0010408 ocular angle artery 8 2078 -UBERON:0011693 extraembryonic portion of umbilical artery 8 2079 -UBERON:0011696 left extraembryonic umbilical artery 9 2080 -UBERON:0011697 right extraembryonic umbilical artery 9 2081 -UBERON:0012254 abdominal aorta artery 8 2082 -UBERON:0001184 renal artery 9 2083 -UBERON:0001185 right renal artery 10 2084 -UBERON:0001186 left renal artery 10 2085 -UBERON:0001191 common iliac artery 9 2086 -UBERON:0035322 right common iliac artery 10 2087 -UBERON:0035529 left common iliac artery 10 2088 -UBERON:0001640 celiac artery 9 2089 -UBERON:0005464 median sacral artery 9 2090 -UBERON:0005616 mesenteric artery 9 2091 -UBERON:0001182 superior mesenteric artery 10 2092 -UBERON:0001183 inferior mesenteric artery 10 2093 -UBERON:2005080 anterior mesenteric artery 10 2094 -UBERON:2005088 posterior mesenteric artery 10 2095 -UBERON:0006636 lumbar artery 9 2096 -UBERON:0010192 genital artery 9 2097 -UBERON:0001187 testicular artery 10 2098 -UBERON:0001188 right testicular artery 11 2099 -UBERON:0001189 left testicular artery 11 2100 -UBERON:0009659 spermatic artery 11 2101 -UBERON:0002493 uterine artery 10 2102 -UBERON:0012173 middle suprarenal artery 9 2103 -UBERON:0012255 inferior phrenic artery 9 2104 -UBERON:0014696 anterior choroidal artery 8 2105 -UBERON:0014772 lateral palpebral artery 8 2106 -UBERON:0014773 medial palpebral artery 8 2107 -UBERON:0015156 terminal branch of ophthalmic artery 8 2108 -UBERON:0001623 dorsal nasal artery 9 2109 -UBERON:0012187 frontal artery 9 2110 -UBERON:0015157 zygomatico-orbital artery 8 2111 -UBERON:0015158 ophthalmotemporal branch of external ophthalmic artery 8 2112 -UBERON:0015160 supraorbital artery 8 2113 -UBERON:0015173 helicine branch of uterine artery 8 2114 -UBERON:0015480 proper hepatic artery 8 2115 -UBERON:0018243 thymic artery 8 2116 -UBERON:0018247 cervical thymic artery 9 2117 -UBERON:0018248 inferior superficial cervical thymic artery 10 2118 -UBERON:0018249 superior superficial cervical thymic artery 10 2119 -UBERON:0018255 jejunal artery 8 2120 -UBERON:0018335 lateral dorsal aorta canal 8 2121 -UBERON:0034693 cremasteric artery 8 2122 -UBERON:0034727 vestibular bulb artery 8 2123 -UBERON:0034927 arcuate artery of foot 8 2124 -UBERON:0034964 superficial epigastric artery 8 2125 -UBERON:0035040 superior rectal artery 8 2126 -UBERON:0035042 middle temporal artery 8 2127 -UBERON:0035043 temporal branch of lateral pretrosal artery 8 2128 -UBERON:0035180 sigmoid artery 8 2129 -UBERON:0035195 plantar metatarsal artery 8 2130 -UBERON:0035273 superior thoracic artery 8 2131 -UBERON:0035292 branch of posterior tibial artery 8 2132 -UBERON:0001540 peroneal artery 9 2133 -UBERON:0035307 branch of vertebral artery 8 2134 -UBERON:0001633 basilar artery 9 2135 -UBERON:0005431 anterior spinal artery 9 2136 -UBERON:0009688 posterior inferior cerebellar artery 9 2137 -UBERON:0035350 branch of middle cerebral artery 8 2138 -UBERON:0035222 posterior parietal artery 9 2139 -UBERON:0035225 anterior temporal artery 9 2140 -UBERON:0035261 posterior temporal artery 9 2141 -UBERON:0035462 anterior parietal artery 9 2142 -UBERON:0035380 branch of anterior cerebral artery 8 2143 -UBERON:0006764 anterior communicating artery 9 2144 -UBERON:0035395 branch of left coronary artery 8 2145 -UBERON:0035422 circumflex branch of left coronary artery 9 2146 -UBERON:0035398 branch of external carotid artery 8 2147 -UBERON:0001610 lingual artery 9 2148 -UBERON:0001612 facial artery 9 2149 -UBERON:0001613 occipital artery 9 2150 -UBERON:0001614 superficial temporal artery 9 2151 -UBERON:0007150 superior thyroid artery 9 2152 -UBERON:0014694 posterior auricular artery 9 2153 -UBERON:0018250 middle thyroid artery 9 2154 -UBERON:0035404 superior hypophysial artery 8 2155 -UBERON:0035489 branch of basilar artery 8 2156 -UBERON:0001635 superior cerebellar artery 9 2157 -UBERON:0001636 posterior cerebral artery 9 2158 -UBERON:0009689 anterior inferior cerebellar artery 9 2159 -UBERON:0035492 inferior hypophysial artery 8 2160 -UBERON:0035508 branch of posterior cerebral artery 8 2161 -UBERON:0014697 posterior choroidal artery 9 2162 -UBERON:0035539 esophageal artery 8 2163 -UBERON:0035829 right gastroepiploic artery 8 2164 -UBERON:0035830 left gastroepiploic artery 8 2165 -UBERON:2001051 caudal division of the internal carotid artery 8 2166 -UBERON:2001053 future internal carotid artery 8 2167 -UBERON:2001059 cranial division of the internal carotid artery 8 2168 -UBERON:3010413 left channel of ventral aorta 8 2169 -UBERON:3010424 right channel of ventral aorta 8 2170 -UBERON:3010489 muscular artery 8 2171 -UBERON:3010494 lateral pretrosal artery 8 2172 -UBERON:3010496 mandibular artery 8 2173 -UBERON:3010503 oviduct artery 8 2174 -UBERON:0004639 renal afferent arteriole 7 2175 -UBERON:0004646 infraorbital artery 7 2176 -UBERON:0004688 costo-cervical trunk 7 2177 -UBERON:0005268 renal cortex artery 7 2178 -UBERON:0005432 aortic sac 7 2179 -UBERON:0005608 hyoid artery 7 2180 -UBERON:0005624 suprarenal artery 7 2181 -UBERON:0001198 superior suprarenal artery 8 2182 -UBERON:0002056 inferior suprarenal artery 8 2183 -UBERON:0012173 middle suprarenal artery 8 2184 -UBERON:0006345 stapedial artery 7 2185 -UBERON:0006347 communicating artery 7 2186 -UBERON:0001628 posterior communicating artery 8 2187 -UBERON:0006764 anterior communicating artery 8 2188 -UBERON:0006349 epigastric artery 7 2189 -UBERON:0001354 inferior epigastric artery 8 2190 -UBERON:0007153 superior epigastric artery 8 2191 -UBERON:0034964 superficial epigastric artery 8 2192 -UBERON:0006664 greater palatine artery 7 2193 -UBERON:0007312 pudendal artery 7 2194 -UBERON:0007315 internal pudendal artery 8 2195 -UBERON:0013137 external pudendal artery 8 2196 -UBERON:0007314 superior external pudendal artery 9 2197 -UBERON:0007316 deep external pudendal artery 9 2198 -UBERON:0007317 superficial external pudendal artery 9 2199 -UBERON:0007718 principal artery to limb 7 2200 -UBERON:0006436 principal artery to forelimb 8 2201 -UBERON:0006438 principal artery to hindlimb 8 2202 -UBERON:0009025 gastroepiploic artery 7 2203 -UBERON:0035829 right gastroepiploic artery 8 2204 -UBERON:0035830 left gastroepiploic artery 8 2205 -UBERON:0009026 iliac circumflex artery 7 2206 -UBERON:0009040 deep circumflex iliac artery 8 2207 -UBERON:0009041 superficial circumflex iliac artery 8 2208 -UBERON:0009027 vesical artery 7 2209 -UBERON:0001311 inferior vesical artery 8 2210 -UBERON:0035640 middle vesical artery 9 2211 -UBERON:0001312 superior vesical artery 8 2212 -UBERON:0009654 alveolar artery 7 2213 -UBERON:0014693 inferior alveolar artery 8 2214 -UBERON:0009655 auricular artery 7 2215 -UBERON:0014694 posterior auricular artery 8 2216 -UBERON:0014695 deep auricular artery 8 2217 -UBERON:0009657 artery of lip 7 2218 -UBERON:0003470 artery of upper lip 8 2219 -UBERON:0003471 artery of lower lip 8 2220 -UBERON:0009658 pancreaticoduodenal artery 7 2221 -UBERON:0001195 inferior pancreaticoduodenal artery 8 2222 -UBERON:0002070 superior pancreaticoduodenal artery 8 2223 -UBERON:0009885 interlobar artery 7 2224 -UBERON:0011694 embryo portion of umbilical artery 7 2225 -UBERON:0012320 cervical artery 7 2226 -UBERON:0001071 superficial cervical artery 8 2227 -UBERON:0012321 deep cervical artery 8 2228 -UBERON:0012322 ascending cervical artery 8 2229 -UBERON:0012324 transverse cervical artery 8 2230 -UBERON:0013151 choroidal artery 7 2231 -UBERON:0014696 anterior choroidal artery 8 2232 -UBERON:0014697 posterior choroidal artery 8 2233 -UBERON:0013648 masseteric artery 7 2234 -UBERON:0001615 transverse facial artery 8 2235 -UBERON:0014770 palpebral artery 7 2236 -UBERON:0014772 lateral palpebral artery 8 2237 -UBERON:0014773 medial palpebral artery 8 2238 -UBERON:0035043 temporal branch of lateral pretrosal artery 8 2239 -UBERON:0015161 inferior branch of oculomotor nerve 7 2240 -UBERON:0015162 superior branch of oculomotor nerve 7 2241 -UBERON:0015171 uterine spiral artery 7 2242 -UBERON:0015177 helicine artery 7 2243 -UBERON:0015173 helicine branch of uterine artery 8 2244 -UBERON:0015174 helicine artery of penis 8 2245 -UBERON:0015350 saphenous artery 7 2246 -UBERON:0018231 labyrinthine artery 7 2247 -UBERON:0018397 posterior superior alveolar artery 7 2248 -UBERON:0035039 rectal artery 7 2249 -UBERON:0001183 inferior mesenteric artery 8 2250 -UBERON:0001357 inferior rectal artery 8 2251 -UBERON:0035040 superior rectal artery 8 2252 -UBERON:0035183 calcarine artery 7 2253 -UBERON:0035304 branch of ulnar artery 7 2254 -UBERON:0035359 branch of brachial artery 7 2255 -UBERON:0035403 hypophysial artery 7 2256 -UBERON:0035404 superior hypophysial artery 8 2257 -UBERON:0035492 inferior hypophysial artery 8 2258 -UBERON:0035548 colic artery 7 2259 -UBERON:2000484 celiacomesenteric artery 7 2260 -UBERON:2000673 hypobranchial artery 7 2261 -UBERON:2001054 lateral dorsal aorta 7 2262 -UBERON:2001062 presumptive mesencephalic artery 7 2263 -UBERON:2001975 suprabranchial artery 7 2264 -UBERON:2005000 basal communicating artery 7 2265 -UBERON:2005011 pseudobranchial artery 7 2266 -UBERON:2005020 central artery 7 2267 -UBERON:2005021 cerebellar central artery 8 2268 -UBERON:2005052 anterior mesencephalic central artery 8 2269 -UBERON:2005078 middle mesencephalic central artery 8 2270 -UBERON:2005079 posterior mesencephalic central artery 8 2271 -UBERON:2005022 opercular artery 7 2272 -UBERON:2005036 supraintestinal artery 7 2273 -UBERON:2005044 optic artery 7 2274 -UBERON:2005048 primitive prosencephalic artery 7 2275 -UBERON:2005049 prosencephalic artery 7 2276 -UBERON:2005050 palatocerebral artery 7 2277 -UBERON:2005051 communicating vessel palatocerebral artery 7 2278 -UBERON:2005053 nasal ciliary artery 7 2279 -UBERON:2005082 dorsal branch nasal ciliary artery 7 2280 -UBERON:2005083 ventral branch nasal ciliary artery 7 2281 -UBERON:2005084 metencephalic artery 7 2282 -UBERON:2005085 nasal artery 7 2283 -UBERON:2005089 swim bladder artery 7 2284 -UBERON:3010417 posterior palatine artery 7 2285 -UBERON:3010498 cutaneus artery 7 2286 -UBERON:3010499 coeliaco-mesenteric artery 7 2287 -UBERON:3010501 duodeno-pancreatic artery 7 2288 -UBERON:3010502 duodeno-hepatic artery 7 2289 -UBERON:0001980 arteriole 6 2290 -UBERON:0003495 respiratory system arteriole 7 2291 -UBERON:0004639 renal afferent arteriole 7 2292 -UBERON:0004640 renal efferent arteriole 7 2293 -UBERON:0022292 splenic arteriole 7 2294 -UBERON:0010401 spleen central arteriole 8 2295 -UBERON:0013132 penicillar arteriole 8 2296 -UBERON:0034884 juxtaglomerular arteriole 7 2297 -UBERON:0003643 respiratory system arterial blood vessel 6 2298 -UBERON:0003469 respiratory system artery 7 2299 -UBERON:0004363 pharyngeal arch artery 8 2300 -UBERON:0003118 pharyngeal arch artery 1 9 2301 -UBERON:0003119 pharyngeal arch artery 2 9 2302 -UBERON:0003120 pharyngeal arch artery 3 9 2303 -UBERON:0003121 pharyngeal arch artery 4 9 2304 -UBERON:0003122 pharyngeal arch artery 5 9 2305 -UBERON:0003123 pharyngeal arch artery 6 9 2306 -UBERON:0017616 afferent spiracular artery 8 2307 -UBERON:0017617 efferent spiracular artery 8 2308 -UBERON:2000202 efferent portion of pharyngeal arch artery 8 2309 -UBERON:2000666 filamental artery 8 2310 -UBERON:2000716 afferent portion of pharyngeal arch artery 8 2311 -UBERON:2001857 hyoidean artery 8 2312 -UBERON:2005012 afferent filamental artery 8 2313 -UBERON:2005013 concurrent branch afferent branchial artery 8 2314 -UBERON:2005014 recurrent branch afferent branchial artery 8 2315 -UBERON:2005015 afferent lamellar arteriole 8 2316 -UBERON:2005018 efferent filamental artery 8 2317 -UBERON:2005019 efferent lamellar arteriole 8 2318 -UBERON:0003495 respiratory system arteriole 7 2319 -UBERON:0003644 kidney arterial blood vessel 6 2320 -UBERON:0001552 kidney arcuate artery 7 2321 -UBERON:0004639 renal afferent arteriole 7 2322 -UBERON:0004640 renal efferent arteriole 7 2323 -UBERON:0004723 interlobular artery 7 2324 -UBERON:0005268 renal cortex artery 7 2325 -UBERON:0034884 juxtaglomerular arteriole 7 2326 -UBERON:3010500 gastrico-linealis 6 2327 -UBERON:0003513 trunk blood vessel 5 2328 -UBERON:0002064 common cardinal vein 6 2329 -UBERON:0009138 right common cardinal vein 7 2330 -UBERON:0009769 left common cardinal vein 7 2331 -UBERON:0002065 posterior cardinal vein 6 2332 -UBERON:0009139 right posterior cardinal vein 7 2333 -UBERON:0013124 left posterior cardinal vein 7 2334 -UBERON:0003086 caudal artery 6 2335 -UBERON:0003834 thoracic segment blood vessel 6 2336 -UBERON:0003498 heart blood vessel 7 2337 -UBERON:0001621 coronary artery 8 2338 -UBERON:0001625 right coronary artery 9 2339 -UBERON:0001626 left coronary artery 9 2340 -UBERON:0002061 truncus arteriosus 8 2341 -UBERON:0004148 cardiac vein 8 2342 -UBERON:0006958 great vein of heart 9 2343 -UBERON:0009687 middle cardiac vein 9 2344 -UBERON:0035374 small cardiac vein 9 2345 -UBERON:0005432 aortic sac 8 2346 -UBERON:0005438 coronary sinus 8 2347 -UBERON:0005440 ductus arteriosus 8 2348 -UBERON:0006829 remnant of left anterior vena cava 8 2349 -UBERON:0006966 coronary capillary 8 2350 -UBERON:0035395 branch of left coronary artery 8 2351 -UBERON:0035422 circumflex branch of left coronary artery 9 2352 -UBERON:2000214 hypobranchial vessel 8 2353 -UBERON:0003506 chest blood vessel 7 2354 -UBERON:0003512 lung blood vessel 7 2355 -UBERON:0016405 pulmonary capillary 8 2356 -UBERON:0005194 thoracic vein 7 2357 -UBERON:0001589 internal thoracic vein 8 2358 -UBERON:0002088 lateral thoracic vein 8 2359 -UBERON:0004148 cardiac vein 8 2360 -UBERON:0006958 great vein of heart 9 2361 -UBERON:0009687 middle cardiac vein 9 2362 -UBERON:0035374 small cardiac vein 9 2363 -UBERON:0006662 musculo-phrenic vein 8 2364 -UBERON:0006829 remnant of left anterior vena cava 8 2365 -UBERON:0007155 superior epigastric vein 8 2366 -UBERON:0017643 external thoracic vein 8 2367 -UBERON:0005612 intercostal artery 7 2368 -UBERON:0006198 dorsal intercostal artery 8 2369 -UBERON:2000677 segmental intercostal artery 8 2370 -UBERON:0013133 superior phrenic artery 7 2371 -UBERON:0035539 esophageal artery 7 2372 -UBERON:0003835 abdominal segment blood vessel 6 2373 -UBERON:0001340 dorsal artery of penis 7 2374 -UBERON:0001357 inferior rectal artery 7 2375 -UBERON:0001358 perineal artery 7 2376 -UBERON:0003497 abdomen blood vessel 7 2377 -UBERON:0003517 kidney blood vessel 8 2378 -UBERON:0003527 kidney capillary 9 2379 -UBERON:0004212 glomerular capillary 10 2380 -UBERON:0005144 metanephric glomerular capillary 11 2381 -UBERON:0006183 mesonephric glomerular capillary 11 2382 -UBERON:0007306 pronephric glomerular capillary 11 2383 -UBERON:0005272 peritubular capillary 10 2384 -UBERON:0006341 outer renal medulla peritubular capillary 11 2385 -UBERON:0006851 renal cortex peritubular capillary 11 2386 -UBERON:0003644 kidney arterial blood vessel 9 2387 -UBERON:0001552 kidney arcuate artery 10 2388 -UBERON:0004639 renal afferent arteriole 10 2389 -UBERON:0004640 renal efferent arteriole 10 2390 -UBERON:0004723 interlobular artery 10 2391 -UBERON:0005268 renal cortex artery 10 2392 -UBERON:0034884 juxtaglomerular arteriole 10 2393 -UBERON:0014401 renal venous blood vessel 9 2394 -UBERON:0001226 major calyx 10 2395 -UBERON:0001227 minor calyx 10 2396 -UBERON:0004719 kidney arcuate vein 10 2397 -UBERON:0004775 outer renal medulla vasa recta 10 2398 -UBERON:0004776 inner renal medulla vasa recta 10 2399 -UBERON:0005168 renal interlobular vein 10 2400 -UBERON:0005269 renal cortex vein 10 2401 -UBERON:0003910 splenic sinusoid 8 2402 -UBERON:0009025 gastroepiploic artery 8 2403 -UBERON:0035829 right gastroepiploic artery 9 2404 -UBERON:0035830 left gastroepiploic artery 9 2405 -UBERON:0009967 spleen venous sinus 8 2406 -UBERON:0010399 spleen trabecular artery 8 2407 -UBERON:0013132 penicillar arteriole 9 2408 -UBERON:0013126 vein of abdomen 8 2409 -UBERON:0001143 hepatic vein 9 2410 -UBERON:0011955 left hepatic vein 10 2411 -UBERON:0011956 right hepatic vein 10 2412 -UBERON:0011957 middle hepatic vein 10 2413 -UBERON:0015455 accessory hepatic vein 10 2414 -UBERON:0001226 major calyx 9 2415 -UBERON:0001227 minor calyx 9 2416 -UBERON:0004719 kidney arcuate vein 9 2417 -UBERON:0004775 outer renal medulla vasa recta 9 2418 -UBERON:0004776 inner renal medulla vasa recta 9 2419 -UBERON:0005168 renal interlobular vein 9 2420 -UBERON:0005269 renal cortex vein 9 2421 -UBERON:0006841 central vein of liver 9 2422 -UBERON:0010400 spleen trabecular vein 9 2423 -UBERON:0016890 intrahepatic branch of portal vein 9 2424 -UBERON:0035655 paraumbilical vein 9 2425 -UBERON:0015796 liver blood vessel 8 2426 -UBERON:0001143 hepatic vein 9 2427 -UBERON:0011955 left hepatic vein 10 2428 -UBERON:0011956 right hepatic vein 10 2429 -UBERON:0011957 middle hepatic vein 10 2430 -UBERON:0015455 accessory hepatic vein 10 2431 -UBERON:0001281 hepatic sinusoid 9 2432 -UBERON:0009548 hepatic sinusoid of left of lobe of liver 10 2433 -UBERON:0011737 caudate lobe hepatic sinusoid 11 2434 -UBERON:0009549 hepatic sinusoid of right of lobe of liver 10 2435 -UBERON:0011737 caudate lobe hepatic sinusoid 11 2436 -UBERON:0011738 quadrate lobe hepatic sinusoid 11 2437 -UBERON:0006841 central vein of liver 9 2438 -UBERON:0015481 left hepatic artery 9 2439 -UBERON:0015482 right hepatic artery 9 2440 -UBERON:0016890 intrahepatic branch of portal vein 9 2441 -UBERON:3010404 capillary system of liver 9 2442 -UBERON:0022292 splenic arteriole 8 2443 -UBERON:0010401 spleen central arteriole 9 2444 -UBERON:0013132 penicillar arteriole 9 2445 -UBERON:0003520 pelvis blood vessel 7 2446 -UBERON:0003475 ureteric vein 8 2447 -UBERON:0009029 pudendal vein 8 2448 -UBERON:0018252 internal pudendal vein 9 2449 -UBERON:0018253 external pudendal vein 9 2450 -UBERON:0009046 inferior external pudendal vein 10 2451 -UBERON:0009047 superior external pudendal vein 10 2452 -UBERON:0009048 deep external pudendal vein 10 2453 -UBERON:0009049 superficial external pudendal vein 10 2454 -UBERON:0007315 internal pudendal artery 7 2455 -UBERON:0008311 penile bulb artery 7 2456 -UBERON:0008321 deep artery of penis 7 2457 -UBERON:0008322 deep artery of clitoris 7 2458 -UBERON:0008323 dorsal artery of clitoris 7 2459 -UBERON:0034727 vestibular bulb artery 7 2460 -UBERON:0004450 gastric vein 6 2461 -UBERON:0014690 left gastric vein 7 2462 -UBERON:0014691 right gastric vein 7 2463 -UBERON:0005599 common dorsal aorta 6 2464 -UBERON:0005613 left dorsal aorta 6 2465 -UBERON:0005622 right dorsal aorta 6 2466 -UBERON:0005805 dorsal aorta 6 2467 -UBERON:0006002 vitelline artery 6 2468 -UBERON:0010193 renal portal vein 6 2469 -UBERON:0010198 carotid duct 6 2470 -UBERON:0018335 lateral dorsal aorta canal 6 2471 -UBERON:2005025 dorsal longitudinal anastomotic vessel 6 2472 -UBERON:2005034 parachordal vessel 6 2473 -UBERON:2005038 supraintestinal vein 6 2474 -UBERON:0003519 thoracic cavity blood vessel 5 2475 -UBERON:0000947 aorta 6 2476 -UBERON:0003085 ventral aorta 7 2477 -UBERON:0005599 common dorsal aorta 7 2478 -UBERON:0005613 left dorsal aorta 7 2479 -UBERON:0005622 right dorsal aorta 7 2480 -UBERON:0005805 dorsal aorta 7 2481 -UBERON:3010423 larval aorta 7 2482 -UBERON:0003473 thoracic cavity artery 6 2483 -UBERON:0001884 phrenic nerve 7 2484 -UBERON:0003479 thoracic cavity vein 6 2485 -UBERON:0004087 vena cava 7 2486 -UBERON:0001072 posterior vena cava 8 2487 -UBERON:0001585 anterior vena cava 8 2488 -UBERON:0003524 tail blood vessel 5 2489 -UBERON:0003086 caudal artery 6 2490 -UBERON:0003481 tail vein 6 2491 -UBERON:0003088 caudal vein 7 2492 -UBERON:2001063 posterior caudal vein 7 2493 -UBERON:2005034 parachordal vessel 7 2494 -UBERON:2005025 dorsal longitudinal anastomotic vessel 6 2495 -UBERON:0003710 vasa vasorum 5 2496 -UBERON:0003920 venous blood vessel 5 2497 -UBERON:0001638 vein 6 2498 -UBERON:0000985 axillary vein 7 2499 -UBERON:0001099 subcostal vein 7 2500 -UBERON:0035252 left subcostal vein 8 2501 -UBERON:0035474 right subcostal vein 8 2502 -UBERON:0001140 renal vein 7 2503 -UBERON:0001141 right renal vein 8 2504 -UBERON:0001142 left renal vein 8 2505 -UBERON:0004726 vasa recta 8 2506 -UBERON:0004775 outer renal medulla vasa recta 9 2507 -UBERON:0004776 inner renal medulla vasa recta 9 2508 -UBERON:0001144 testicular vein 7 2509 -UBERON:0000442 right testicular vein 8 2510 -UBERON:0000443 left testicular vein 8 2511 -UBERON:0001145 ovarian vein 7 2512 -UBERON:0001146 suprarenal vein 7 2513 -UBERON:0035435 right suprarenal vein 8 2514 -UBERON:0035483 left suprarenal vein 8 2515 -UBERON:0001319 vaginal vein 7 2516 -UBERON:0001320 iliolumbar vein 7 2517 -UBERON:0001321 obturator vein 7 2518 -UBERON:0001361 femoral vein 7 2519 -UBERON:0001362 perineal vein 7 2520 -UBERON:0001413 brachial vein 7 2521 -UBERON:0001420 subscapular vein 7 2522 -UBERON:0001544 popliteal vein 7 2523 -UBERON:0001549 dorsal metatarsal vein 7 2524 -UBERON:0001551 vein of hindlimb zeugopod 7 2525 -UBERON:0013142 soleal vein 8 2526 -UBERON:0013143 gastrocnemius vein 8 2527 -UBERON:0001587 subclavian vein 7 2528 -UBERON:0001588 vertebral vein 7 2529 -UBERON:0001590 pericardiacophrenic vein 7 2530 -UBERON:0001591 thymic vein 7 2531 -UBERON:0001592 bronchial vein 7 2532 -UBERON:0001594 azygos vein 7 2533 -UBERON:0001663 cerebral vein 7 2534 -UBERON:0001664 inferior cerebral vein 8 2535 -UBERON:0001672 anterior cerebral vein 8 2536 -UBERON:0006666 great cerebral vein 8 2537 -UBERON:0016559 superficial cerebral vein 8 2538 -UBERON:0035150 superior cerebral vein 9 2539 -UBERON:0016564 deep cerebral vein 8 2540 -UBERON:0035530 basal vein 9 2541 -UBERON:0035151 dorsal cerebral vein 8 2542 -UBERON:0035152 internal cerebral vein 8 2543 -UBERON:0035231 superficial middle cerebral vein 8 2544 -UBERON:0035532 deep middle cerebral vein 8 2545 -UBERON:0001668 cerebellar vein 7 2546 -UBERON:0001669 superior cerebellar vein 8 2547 -UBERON:0001670 inferior cerebellar vein 8 2548 -UBERON:0001674 masseteric vein 7 2549 -UBERON:0002016 pulmonary vein 7 2550 -UBERON:0009030 left pulmonary vein 8 2551 -UBERON:0009032 right pulmonary vein 8 2552 -UBERON:0014904 intersegmental pulmonary vein 8 2553 -UBERON:0002017 portal vein 7 2554 -UBERON:0001214 pancreatic tributary of splenic vein 8 2555 -UBERON:0004690 pancreaticoduodenal vein 9 2556 -UBERON:0011383 inferior pancreaticoduodenal vein 10 2557 -UBERON:0011384 superior pancreaticoduodenal vein 10 2558 -UBERON:0001216 jejunal vein 8 2559 -UBERON:0001217 ileal vein 8 2560 -UBERON:0001219 ileocolic vein 9 2561 -UBERON:0001218 middle colic vein 8 2562 -UBERON:0001639 hepatic portal vein 8 2563 -UBERON:0018228 extrahepatic branch of portal vein 8 2564 -UBERON:0002066 umbilical vein 7 2565 -UBERON:0005459 left umbilical vein 8 2566 -UBERON:0005471 right umbilical vein 8 2567 -UBERON:0002083 ductus venosus 7 2568 -UBERON:0002089 thoracodorsal vein 7 2569 -UBERON:0002243 cutaneous vein 7 2570 -UBERON:0002460 vesical vein 7 2571 -UBERON:0001318 inferior vesical vein 8 2572 -UBERON:0006355 superior vesical vein 8 2573 -UBERON:0003475 ureteric vein 7 2574 -UBERON:0003476 respiratory system venous blood vessel 7 2575 -UBERON:0003479 thoracic cavity vein 7 2576 -UBERON:0004087 vena cava 8 2577 -UBERON:0001072 posterior vena cava 9 2578 -UBERON:0001585 anterior vena cava 9 2579 -UBERON:0003480 vein of clitoris 7 2580 -UBERON:0006690 deep dorsal vein of clitoris 8 2581 -UBERON:0003481 tail vein 7 2582 -UBERON:0003088 caudal vein 8 2583 -UBERON:2001063 posterior caudal vein 8 2584 -UBERON:2005034 parachordal vessel 8 2585 -UBERON:0003482 vein of trabecular bone 7 2586 -UBERON:0003711 brachiocephalic vein 7 2587 -UBERON:0003713 splenic vein 7 2588 -UBERON:0003848 gonadal vein 7 2589 -UBERON:0004344 cardinal vein 7 2590 -UBERON:0002064 common cardinal vein 8 2591 -UBERON:0009138 right common cardinal vein 9 2592 -UBERON:0009769 left common cardinal vein 9 2593 -UBERON:0002065 posterior cardinal vein 8 2594 -UBERON:0009139 right posterior cardinal vein 9 2595 -UBERON:0013124 left posterior cardinal vein 9 2596 -UBERON:0003087 anterior cardinal vein 8 2597 -UBERON:0009771 left anterior cardinal vein 9 2598 -UBERON:0009772 right anterior cardinal vein 9 2599 -UBERON:0004450 gastric vein 7 2600 -UBERON:0014690 left gastric vein 8 2601 -UBERON:0014691 right gastric vein 8 2602 -UBERON:0004562 digital vein 7 2603 -UBERON:0004563 forelimb digital vein 8 2604 -UBERON:0001412 common palmar digital vein 9 2605 -UBERON:0004561 proper palmar digital vein 9 2606 -UBERON:0006140 palmar digital vein 9 2607 -UBERON:0006564 superficial palmar arch 9 2608 -UBERON:0004564 hindlimb digital vein 8 2609 -UBERON:0006139 plantar digital vein 9 2610 -UBERON:0006142 common plantar digital vein 10 2611 -UBERON:0006143 proper plantar digital vein 10 2612 -UBERON:0006144 medial plantar digital vein 10 2613 -UBERON:0004689 naso-frontal vein 7 2614 -UBERON:0005194 thoracic vein 7 2615 -UBERON:0001589 internal thoracic vein 8 2616 -UBERON:0002088 lateral thoracic vein 8 2617 -UBERON:0004148 cardiac vein 8 2618 -UBERON:0006958 great vein of heart 9 2619 -UBERON:0009687 middle cardiac vein 9 2620 -UBERON:0035374 small cardiac vein 9 2621 -UBERON:0006662 musculo-phrenic vein 8 2622 -UBERON:0006829 remnant of left anterior vena cava 8 2623 -UBERON:0007155 superior epigastric vein 8 2624 -UBERON:0017643 external thoracic vein 8 2625 -UBERON:0005195 deferent duct vein 7 2626 -UBERON:0005610 iliac vein 7 2627 -UBERON:0001139 common iliac vein 8 2628 -UBERON:0001316 external iliac vein 8 2629 -UBERON:0001317 internal iliac vein 8 2630 -UBERON:0005617 mesenteric vein 7 2631 -UBERON:0001138 superior mesenteric vein 8 2632 -UBERON:0001215 inferior mesenteric vein 8 2633 -UBERON:0006200 caudal humeral circumflex vein 7 2634 -UBERON:0006296 subcardinal vein 7 2635 -UBERON:0009140 right subcardinal vein 8 2636 -UBERON:0013125 left subcardinal vein 8 2637 -UBERON:0006356 epigastric vein 7 2638 -UBERON:0007154 inferior epigastric vein 8 2639 -UBERON:0007155 superior epigastric vein 8 2640 -UBERON:0014692 superficial epigastric vein 8 2641 -UBERON:0006443 prinicipal vein of limb 7 2642 -UBERON:0006351 principal vein of forelimb 8 2643 -UBERON:0006353 principal vein of hindlimb 8 2644 -UBERON:0006634 lingual vein 7 2645 -UBERON:0006663 hemiazygos vein 7 2646 -UBERON:0006665 accessory hemiazygos vein 7 2647 -UBERON:0006686 spinal vein 7 2648 -UBERON:0006687 median sacral vein 7 2649 -UBERON:0006765 left anterior vena cava 7 2650 -UBERON:0006766 right anterior vena cava 7 2651 -UBERON:0007679 intersomitic vein 7 2652 -UBERON:0008783 dorsal venous arch 7 2653 -UBERON:0009029 pudendal vein 7 2654 -UBERON:0018252 internal pudendal vein 8 2655 -UBERON:0018253 external pudendal vein 8 2656 -UBERON:0009046 inferior external pudendal vein 9 2657 -UBERON:0009047 superior external pudendal vein 9 2658 -UBERON:0009048 deep external pudendal vein 9 2659 -UBERON:0009049 superficial external pudendal vein 9 2660 -UBERON:0009887 interlobar vein 7 2661 -UBERON:0010175 nutrient foramen vein 7 2662 -UBERON:0010193 renal portal vein 7 2663 -UBERON:0010205 mesencephalic vein 7 2664 -UBERON:0010370 tibial vein 7 2665 -UBERON:0001545 anterior tibial vein 8 2666 -UBERON:0001546 posterior tibial vein 8 2667 -UBERON:0011944 subintestinal vein 7 2668 -UBERON:0012193 phrenic vein 7 2669 -UBERON:0002039 inferior phrenic vein 8 2670 -UBERON:0006662 musculo-phrenic vein 8 2671 -UBERON:0012237 superior phrenic vein 8 2672 -UBERON:0012197 intercostal vein 7 2673 -UBERON:0012194 superior intercostal vein 8 2674 -UBERON:0012195 left superior intercostal vein 9 2675 -UBERON:0012196 right superior intercostal vein 9 2676 -UBERON:0012199 posterior intercostal vein 8 2677 -UBERON:0012200 anterior intercostal vein 8 2678 -UBERON:0013126 vein of abdomen 7 2679 -UBERON:0001143 hepatic vein 8 2680 -UBERON:0011955 left hepatic vein 9 2681 -UBERON:0011956 right hepatic vein 9 2682 -UBERON:0011957 middle hepatic vein 9 2683 -UBERON:0015455 accessory hepatic vein 9 2684 -UBERON:0001226 major calyx 8 2685 -UBERON:0001227 minor calyx 8 2686 -UBERON:0004719 kidney arcuate vein 8 2687 -UBERON:0004775 outer renal medulla vasa recta 8 2688 -UBERON:0004776 inner renal medulla vasa recta 8 2689 -UBERON:0005168 renal interlobular vein 8 2690 -UBERON:0005269 renal cortex vein 8 2691 -UBERON:0006841 central vein of liver 8 2692 -UBERON:0010400 spleen trabecular vein 8 2693 -UBERON:0016890 intrahepatic branch of portal vein 8 2694 -UBERON:0035655 paraumbilical vein 8 2695 -UBERON:0013140 systemic vein 7 2696 -UBERON:0004148 cardiac vein 8 2697 -UBERON:0006958 great vein of heart 9 2698 -UBERON:0009687 middle cardiac vein 9 2699 -UBERON:0035374 small cardiac vein 9 2700 -UBERON:0005487 vitelline vein 8 2701 -UBERON:0005460 left vitelline vein 9 2702 -UBERON:0005472 right vitelline vein 9 2703 -UBERON:0006300 supracardinal vein 8 2704 -UBERON:0008267 left supracardinal vein 9 2705 -UBERON:0008268 right supracardinal vein 9 2706 -UBERON:0009141 craniocervical region vein 8 2707 -UBERON:0001653 facial vein 9 2708 -UBERON:0001656 retromandibular vein 10 2709 -UBERON:0001655 submental vein 9 2710 -UBERON:0001659 transverse facial vein 9 2711 -UBERON:0001660 maxillary vein 9 2712 -UBERON:0001671 temporal vein 9 2713 -UBERON:0001657 superficial temporal vein 10 2714 -UBERON:0001658 middle temporal vein 10 2715 -UBERON:0001661 deep temporal vein 10 2716 -UBERON:0001673 central retinal vein 9 2717 -UBERON:0004029 canal of Schlemm 9 2718 -UBERON:0004030 aqueous vein 9 2719 -UBERON:0004711 jugular vein 9 2720 -UBERON:0001101 external jugular vein 10 2721 -UBERON:0001104 anterior jugular vein 10 2722 -UBERON:0001586 internal jugular vein 10 2723 -UBERON:0006011 hyaloid vein 9 2724 -UBERON:0006197 auricular vein 9 2725 -UBERON:0001662 anterior auricular vein 10 2726 -UBERON:0006199 posterior auricular vein 10 2727 -UBERON:0006282 primary head vein 9 2728 -UBERON:0010367 conjunctival vein 9 2729 -UBERON:0011191 ophthalmic vein 9 2730 -UBERON:0011192 superior ophthalmic vein 10 2731 -UBERON:0011193 inferior ophthalmic vein 10 2732 -UBERON:0013136 vein of lip 9 2733 -UBERON:0003477 vein of upper lip 10 2734 -UBERON:0003478 vein of lower lip 10 2735 -UBERON:0014686 angular vein 9 2736 -UBERON:0014769 palpebral vein 9 2737 -UBERON:0002459 inferior palpebral vein 10 2738 -UBERON:0014768 superior palpebral vein 10 2739 -UBERON:0001654 supraorbital vein 11 2740 -UBERON:0017617 efferent spiracular artery 9 2741 -UBERON:0035249 posterior external jugular vein 9 2742 -UBERON:0035659 deep facial vein 9 2743 -UBERON:0035662 parotid vein 9 2744 -UBERON:0035675 anterior facial vein 9 2745 -UBERON:0036074 vein of vestibular aqueduct 9 2746 -UBERON:0036300 tributary of central retinal vein 9 2747 -UBERON:2000202 efferent portion of pharyngeal arch artery 9 2748 -UBERON:2001052 primordial hindbrain channel 9 2749 -UBERON:2005010 mid cerebral vein 9 2750 -UBERON:2005017 primordial midbrain channel 9 2751 -UBERON:2005026 primary head sinus 9 2752 -UBERON:2005027 posterior cerebral vein 9 2753 -UBERON:2005030 dorsal ciliary vein 9 2754 -UBERON:2005032 optic vein 9 2755 -UBERON:2005055 median palatocerebral vein 9 2756 -UBERON:2005056 palatocerebral vein 9 2757 -UBERON:2005093 nasal vein 9 2758 -UBERON:0013144 vein of genicular venous plexus 7 2759 -UBERON:0014786 extraembryonic umbilical vein 7 2760 -UBERON:0014787 left extraembryonic umbilical vein 8 2761 -UBERON:0014788 right extraembryonic umbilical vein 8 2762 -UBERON:0014789 embryo portion of umbilical vein 7 2763 -UBERON:0017646 internal mammary vein 7 2764 -UBERON:0018246 thyroid vein 7 2765 -UBERON:0007156 inferior thyroid vein 8 2766 -UBERON:0007157 superior thyroid vein 8 2767 -UBERON:0034965 middle thyroid vein 8 2768 -UBERON:0018251 meningeal vein 7 2769 -UBERON:0018256 lacrimal vein 7 2770 -UBERON:0035234 medial circumflex femoral vein 7 2771 -UBERON:0035392 cystic vein 7 2772 -UBERON:0035546 uveal vein 7 2773 -UBERON:0035547 posterior ciliary vein 8 2774 -UBERON:0035550 superficial vein 7 2775 -UBERON:0001106 cephalic vein 8 2776 -UBERON:0001411 basilic vein 8 2777 -UBERON:0001414 median basilic vein 9 2778 -UBERON:0001548 lateral marginal vein 8 2779 -UBERON:0001550 medial marginal vein 8 2780 -UBERON:0007318 saphenous vein 8 2781 -UBERON:0001363 great saphenous vein 9 2782 -UBERON:0001547 small saphenous vein 9 2783 -UBERON:0013145 accessory saphenous vein 9 2784 -UBERON:0007319 medial saphenous vein 10 2785 -UBERON:0007321 lateral saphenous vein 10 2786 -UBERON:0009049 superficial external pudendal vein 8 2787 -UBERON:0014692 superficial epigastric vein 8 2788 -UBERON:0016559 superficial cerebral vein 8 2789 -UBERON:0035150 superior cerebral vein 9 2790 -UBERON:0035552 deep vein 7 2791 -UBERON:0001360 deep circumflex iliac vein 8 2792 -UBERON:0001661 deep temporal vein 8 2793 -UBERON:0006656 deep dorsal vein of penis 8 2794 -UBERON:0006690 deep dorsal vein of clitoris 8 2795 -UBERON:0009048 deep external pudendal vein 8 2796 -UBERON:0036267 vulval vein 7 2797 -UBERON:0036268 pelvic vein 7 2798 -UBERON:2000039 median axial vein 7 2799 -UBERON:2005031 dorsal longitudinal vein 7 2800 -UBERON:2005038 supraintestinal vein 7 2801 -UBERON:2005087 pectoral vein 7 2802 -UBERON:2005248 trans-choroid plexus branch 7 2803 -UBERON:3010506 postcaval vein 7 2804 -UBERON:3010507 precaval vein 7 2805 -UBERON:3010515 lateral vein 7 2806 -UBERON:3010516 cutaneus magnus 7 2807 -UBERON:3010517 ventral abdominal vein 7 2808 -UBERON:3010519 Jacobson's vein 7 2809 -UBERON:3010520 oviducal vein 7 2810 -UBERON:0001979 venule 6 2811 -UBERON:0003494 respiratory system venule 7 2812 -UBERON:0035428 postcapillary venule 7 2813 -UBERON:0005438 coronary sinus 6 2814 -UBERON:0006615 venous sinus 6 2815 -UBERON:0005486 venous dural sinus 7 2816 -UBERON:0003712 cavernous sinus 8 2817 -UBERON:0017635 paired venous dural sinus 8 2818 -UBERON:0001641 transverse sinus 9 2819 -UBERON:0005475 sigmoid sinus 9 2820 -UBERON:0007160 inferior petrosal sinus 9 2821 -UBERON:0017637 marginal venous sinus 9 2822 -UBERON:0017638 primitive marginal sinus 9 2823 -UBERON:0035338 sphenoparietal sinus 9 2824 -UBERON:0017640 unpaired venous dural sinus 8 2825 -UBERON:0005481 tentorial sinus 9 2826 -UBERON:0015704 sagittal sinus 9 2827 -UBERON:0001642 superior sagittal sinus 10 2828 -UBERON:0007152 inferior sagittal sinus 10 2829 -UBERON:0009967 spleen venous sinus 7 2830 -UBERON:0009968 primitive superior sagittal sinus 7 2831 -UBERON:0014401 renal venous blood vessel 6 2832 -UBERON:0001226 major calyx 7 2833 -UBERON:0001227 minor calyx 7 2834 -UBERON:0004719 kidney arcuate vein 7 2835 -UBERON:0004775 outer renal medulla vasa recta 7 2836 -UBERON:0004776 inner renal medulla vasa recta 7 2837 -UBERON:0005168 renal interlobular vein 7 2838 -UBERON:0005269 renal cortex vein 7 2839 -UBERON:2005018 efferent filamental artery 6 2840 -UBERON:2005019 efferent lamellar arteriole 6 2841 -UBERON:0004258 back blood vessel 5 2842 -UBERON:0004365 vitelline blood vessel 5 2843 -UBERON:0005487 vitelline vein 6 2844 -UBERON:0005460 left vitelline vein 7 2845 -UBERON:0005472 right vitelline vein 7 2846 -UBERON:0006002 vitelline artery 6 2847 -UBERON:0007301 appendage blood vessel 5 2848 -UBERON:0003514 limb blood vessel 6 2849 -UBERON:0003515 forelimb blood vessel 7 2850 -UBERON:0001411 basilic vein 8 2851 -UBERON:0001414 median basilic vein 9 2852 -UBERON:0003507 arm blood vessel 8 2853 -UBERON:0001106 cephalic vein 9 2854 -UBERON:0001399 deep brachial artery 9 2855 -UBERON:0001413 brachial vein 9 2856 -UBERON:0004259 lower arm blood vessel 9 2857 -UBERON:0002249 median artery 10 2858 -UBERON:0004260 upper arm blood vessel 9 2859 -UBERON:0003523 manus blood vessel 8 2860 -UBERON:0003522 manual digit blood vessel 9 2861 -UBERON:0004553 forelimb digital artery 10 2862 -UBERON:0006141 palmar digital artery 11 2863 -UBERON:0001410 common palmar digital artery 12 2864 -UBERON:0006137 proper palmar digital artery 12 2865 -UBERON:0006146 dorsal digital artery of manus 11 2866 -UBERON:0006164 forelimb common dorsal digital arteries 12 2867 -UBERON:0006165 median dorsal digital artery for digit 1 12 2868 -UBERON:0006166 lateral dorsal digital artery for digit 5 12 2869 -UBERON:0006167 forelimb proper dorsal digital arteries 12 2870 -UBERON:0004563 forelimb digital vein 9 2871 -UBERON:0001412 common palmar digital vein 10 2872 -UBERON:0004561 proper palmar digital vein 10 2873 -UBERON:0006140 palmar digital vein 10 2874 -UBERON:0006564 superficial palmar arch 10 2875 -UBERON:0006351 principal vein of forelimb 8 2876 -UBERON:0003516 hindlimb blood vessel 7 2877 -UBERON:0001361 femoral vein 8 2878 -UBERON:0001539 dorsalis pedis artery 8 2879 -UBERON:0001541 medial plantar artery 8 2880 -UBERON:0001544 popliteal vein 8 2881 -UBERON:0003503 leg blood vessel 8 2882 -UBERON:0004257 upper leg blood vessel 9 2883 -UBERON:0004261 lower leg blood vessel 9 2884 -UBERON:0001548 lateral marginal vein 10 2885 -UBERON:0001550 medial marginal vein 10 2886 -UBERON:0001551 vein of hindlimb zeugopod 10 2887 -UBERON:0013142 soleal vein 11 2888 -UBERON:0013143 gastrocnemius vein 11 2889 -UBERON:0007318 saphenous vein 10 2890 -UBERON:0001363 great saphenous vein 11 2891 -UBERON:0001547 small saphenous vein 11 2892 -UBERON:0013145 accessory saphenous vein 11 2893 -UBERON:0007319 medial saphenous vein 12 2894 -UBERON:0007321 lateral saphenous vein 12 2895 -UBERON:0014692 superficial epigastric vein 10 2896 -UBERON:0010370 tibial vein 9 2897 -UBERON:0001545 anterior tibial vein 10 2898 -UBERON:0001546 posterior tibial vein 10 2899 -UBERON:0013144 vein of genicular venous plexus 9 2900 -UBERON:0003521 pes blood vessel 8 2901 -UBERON:0001553 medial tarsal artery 9 2902 -UBERON:0003508 pedal digit blood vessel 9 2903 -UBERON:0004564 hindlimb digital vein 9 2904 -UBERON:0006139 plantar digital vein 10 2905 -UBERON:0006142 common plantar digital vein 11 2906 -UBERON:0006143 proper plantar digital vein 11 2907 -UBERON:0006144 medial plantar digital vein 11 2908 -UBERON:0034927 arcuate artery of foot 9 2909 -UBERON:0004554 hindlimb digital artery 8 2910 -UBERON:0006138 plantar digital artery 9 2911 -UBERON:0002455 common plantar digital arteries 10 2912 -UBERON:0004540 proper plantar digital artery 10 2913 -UBERON:0006145 dorsal digital artery of pes 9 2914 -UBERON:0006168 hindlimb common dorsal digital arteries 10 2915 -UBERON:0006169 hindlimb proper dorsal digital arteries 10 2916 -UBERON:0006353 principal vein of hindlimb 8 2917 -UBERON:0007610 tibial artery 8 2918 -UBERON:0001537 anterior tibial artery 9 2919 -UBERON:0001538 posterior tibial artery 9 2920 -UBERON:0035195 plantar metatarsal artery 8 2921 -UBERON:0035234 medial circumflex femoral vein 8 2922 -UBERON:0035292 branch of posterior tibial artery 8 2923 -UBERON:0001540 peroneal artery 9 2924 -UBERON:0004552 digital artery 7 2925 -UBERON:0004553 forelimb digital artery 8 2926 -UBERON:0006141 palmar digital artery 9 2927 -UBERON:0001410 common palmar digital artery 10 2928 -UBERON:0006137 proper palmar digital artery 10 2929 -UBERON:0006146 dorsal digital artery of manus 9 2930 -UBERON:0006164 forelimb common dorsal digital arteries 10 2931 -UBERON:0006165 median dorsal digital artery for digit 1 10 2932 -UBERON:0006166 lateral dorsal digital artery for digit 5 10 2933 -UBERON:0006167 forelimb proper dorsal digital arteries 10 2934 -UBERON:0004554 hindlimb digital artery 8 2935 -UBERON:0006138 plantar digital artery 9 2936 -UBERON:0002455 common plantar digital arteries 10 2937 -UBERON:0004540 proper plantar digital artery 10 2938 -UBERON:0006145 dorsal digital artery of pes 9 2939 -UBERON:0006168 hindlimb common dorsal digital arteries 10 2940 -UBERON:0006169 hindlimb proper dorsal digital arteries 10 2941 -UBERON:0006163 dorsal digital artery 8 2942 -UBERON:0006145 dorsal digital artery of pes 9 2943 -UBERON:0006168 hindlimb common dorsal digital arteries 10 2944 -UBERON:0006169 hindlimb proper dorsal digital arteries 10 2945 -UBERON:0006146 dorsal digital artery of manus 9 2946 -UBERON:0006164 forelimb common dorsal digital arteries 10 2947 -UBERON:0006165 median dorsal digital artery for digit 1 10 2948 -UBERON:0006166 lateral dorsal digital artery for digit 5 10 2949 -UBERON:0006167 forelimb proper dorsal digital arteries 10 2950 -UBERON:0004562 digital vein 7 2951 -UBERON:0004563 forelimb digital vein 8 2952 -UBERON:0001412 common palmar digital vein 9 2953 -UBERON:0004561 proper palmar digital vein 9 2954 -UBERON:0006140 palmar digital vein 9 2955 -UBERON:0006564 superficial palmar arch 9 2956 -UBERON:0004564 hindlimb digital vein 8 2957 -UBERON:0006139 plantar digital vein 9 2958 -UBERON:0006142 common plantar digital vein 10 2959 -UBERON:0006143 proper plantar digital vein 10 2960 -UBERON:0006144 medial plantar digital vein 10 2961 -UBERON:0006443 prinicipal vein of limb 7 2962 -UBERON:0006351 principal vein of forelimb 8 2963 -UBERON:0006353 principal vein of hindlimb 8 2964 -UBERON:0007300 pectoral appendage blood vessel 6 2965 -UBERON:0003515 forelimb blood vessel 7 2966 -UBERON:0001411 basilic vein 8 2967 -UBERON:0001414 median basilic vein 9 2968 -UBERON:0003507 arm blood vessel 8 2969 -UBERON:0001106 cephalic vein 9 2970 -UBERON:0001399 deep brachial artery 9 2971 -UBERON:0001413 brachial vein 9 2972 -UBERON:0004259 lower arm blood vessel 9 2973 -UBERON:0002249 median artery 10 2974 -UBERON:0004260 upper arm blood vessel 9 2975 -UBERON:0003523 manus blood vessel 8 2976 -UBERON:0003522 manual digit blood vessel 9 2977 -UBERON:0004553 forelimb digital artery 10 2978 -UBERON:0006141 palmar digital artery 11 2979 -UBERON:0001410 common palmar digital artery 12 2980 -UBERON:0006137 proper palmar digital artery 12 2981 -UBERON:0006146 dorsal digital artery of manus 11 2982 -UBERON:0006164 forelimb common dorsal digital arteries 12 2983 -UBERON:0006165 median dorsal digital artery for digit 1 12 2984 -UBERON:0006166 lateral dorsal digital artery for digit 5 12 2985 -UBERON:0006167 forelimb proper dorsal digital arteries 12 2986 -UBERON:0004563 forelimb digital vein 9 2987 -UBERON:0001412 common palmar digital vein 10 2988 -UBERON:0004561 proper palmar digital vein 10 2989 -UBERON:0006140 palmar digital vein 10 2990 -UBERON:0006564 superficial palmar arch 10 2991 -UBERON:0006351 principal vein of forelimb 8 2992 -UBERON:2005087 pectoral vein 7 2993 -UBERON:2005304 caudal fin blood vessel 6 2994 -UBERON:0010260 umbilical blood vessel 5 2995 -UBERON:0001310 umbilical artery 6 2996 -UBERON:0005458 left umbilical artery 7 2997 -UBERON:0005470 right umbilical artery 7 2998 -UBERON:0002066 umbilical vein 6 2999 -UBERON:0005459 left umbilical vein 7 3000 -UBERON:0005471 right umbilical vein 7 3001 -UBERON:0013768 great vessel of heart 5 3002 -UBERON:0000947 aorta 6 3003 -UBERON:0003085 ventral aorta 7 3004 -UBERON:0005599 common dorsal aorta 7 3005 -UBERON:0005613 left dorsal aorta 7 3006 -UBERON:0005622 right dorsal aorta 7 3007 -UBERON:0005805 dorsal aorta 7 3008 -UBERON:3010423 larval aorta 7 3009 -UBERON:0002012 pulmonary artery 6 3010 -UBERON:0002016 pulmonary vein 6 3011 -UBERON:0009030 left pulmonary vein 7 3012 -UBERON:0009032 right pulmonary vein 7 3013 -UBERON:0014904 intersegmental pulmonary vein 7 3014 -UBERON:0004087 vena cava 6 3015 -UBERON:0001072 posterior vena cava 7 3016 -UBERON:0001585 anterior vena cava 7 3017 -UBERON:0014907 intersomitic vessel 5 3018 -UBERON:0002457 intersomitic artery 6 3019 -UBERON:0007679 intersomitic vein 6 3020 -UBERON:0015172 endometrial blood vessel 5 3021 -UBERON:0015171 uterine spiral artery 6 3022 -UBERON:0020550 auricular blood vessel 5 3023 -UBERON:3010494 lateral pretrosal artery 6 3024 -UBERON:0022358 placenta blood vessel 5 3025 -UBERON:0004183 placental labyrinth blood vessel 6 3026 -UBERON:0036269 penis blood vessel 5 3027 -UBERON:0008320 common penile artery 6 3028 -UBERON:0015174 helicine artery of penis 6 3029 -UBERON:0001987 placenta 4 3030 -UBERON:0036151 diffuse placenta 5 3031 -UBERON:0036152 cotyledonary placenta 5 3032 -UBERON:0036153 zonary placenta 5 3033 -UBERON:0036154 discoid placenta 5 3034 -UBERON:0036161 epitheliochorial placenta 5 3035 -UBERON:0036162 endotheliochorial placenta 5 3036 -UBERON:0036163 hemochorial placenta 5 3037 -UBERON:0002052 adrenal gland capsule 4 3038 -UBERON:0002068 urachus 4 3039 -UBERON:0002072 hypodermis 4 3040 -UBERON:0002099 cardiac septum 4 3041 -UBERON:0002085 interatrial septum 5 3042 -UBERON:0004154 atrial septum primum 6 3043 -UBERON:0004155 atrial septum secundum 6 3044 -UBERON:0004159 atrial septum intermedium 6 3045 -UBERON:0002094 interventricular septum 5 3046 -UBERON:0004153 ventricular septum intermedium 6 3047 -UBERON:0004142 outflow tract septum 5 3048 -UBERON:0006207 aortico-pulmonary spiral septum 6 3049 -UBERON:0005989 atrioventricular septum 5 3050 -UBERON:0015226 bulbar spiral septum 5 3051 -UBERON:0002120 pronephros 4 3052 -UBERON:0002190 subcutaneous adipose tissue 4 3053 -UBERON:0009754 blubber 5 3054 -UBERON:0013488 panniculus adiposus 5 3055 -UBERON:0014455 subcutaneous abdominal adipose tissue 5 3056 -UBERON:0002242 nucleus pulposus 4 3057 -UBERON:0002319 mesangium 4 3058 -UBERON:0002320 glomerular mesangium 4 3059 -UBERON:0005119 metanephric glomerular mesangium 5 3060 -UBERON:0006182 mesonephric glomerular mesangium 5 3061 -UBERON:0002321 extraglomerular mesangium 4 3062 -UBERON:0002326 lamina propria of urethra 4 3063 -UBERON:0016516 lamina propria of prostatic urethra 5 3064 -UBERON:0002328 notochord 4 3065 -UBERON:0036242 post-embryonic notochord 5 3066 -UBERON:0002345 descending thoracic aorta 4 3067 -UBERON:0002348 epicardium 4 3068 -UBERON:0001082 epicardium of ventricle 5 3069 -UBERON:0002371 bone marrow 4 3070 -UBERON:0000332 yellow bone marrow 5 3071 -UBERON:0000361 red bone marrow 5 3072 -UBERON:0002376 cranial muscle 4 3073 -UBERON:0004113 muscle of auditory ossicle 5 3074 -UBERON:0001599 stapedius muscle 6 3075 -UBERON:0001600 tensor tympani 6 3076 -UBERON:0010950 styloauricular muscle 5 3077 -UBERON:0010951 interscutular muscle 5 3078 -UBERON:0011648 jaw muscle 5 3079 -UBERON:0003681 masticatory muscle 6 3080 -UBERON:0001597 masseter muscle 7 3081 -UBERON:0001598 temporalis muscle 7 3082 -UBERON:0006720 pterygoid muscle 7 3083 -UBERON:0006718 medial pterygoid muscle 8 3084 -UBERON:0006719 lateral pterygoid muscle 8 3085 -UBERON:0011647 depressor mandibulae muscle 6 3086 -UBERON:0011683 adductor mandibulae 6 3087 -UBERON:0011684 levator palatoquadrati 6 3088 -UBERON:0011685 preorbitalis muscle 6 3089 -UBERON:0011686 spiracularis muscle 6 3090 -UBERON:2000384 levator arcus palatini 6 3091 -UBERON:2000498 dilatator operculi 6 3092 -UBERON:2007050 constrictor dorsalis 6 3093 -UBERON:3010558 quadrato-ethmoid ligament 6 3094 -UBERON:3010700 levator mandibulae externus 6 3095 -UBERON:3010704 levator mandibulae longus 6 3096 -UBERON:3010708 levator mandibulae articularis 6 3097 -UBERON:3010709 levator mandibulae lateralis 6 3098 -UBERON:3010711 levator mandibulae externus superficialis 6 3099 -UBERON:3010712 levator mandibulae externus profundus 6 3100 -UBERON:3010724 levator quadrati 6 3101 -UBERON:3010742 interhyoideus posterior 6 3102 -UBERON:3010747 submentalis 6 3103 -UBERON:0015789 cranial or facial muscle 5 3104 -UBERON:0001577 facial muscle 6 3105 -UBERON:0001580 levator labii superioris 7 3106 -UBERON:0001581 depressor labii inferioris 7 3107 -UBERON:0001582 buccinator muscle 7 3108 -UBERON:0001599 stapedius muscle 7 3109 -UBERON:0005467 platysma 7 3110 -UBERON:0008522 nasal muscle 7 3111 -UBERON:0008588 procerus 8 3112 -UBERON:0008589 depressor septi nasi 8 3113 -UBERON:0010953 nasalis muscle 8 3114 -UBERON:0008591 depressor supercilii 7 3115 -UBERON:0008592 levator labii superioris alaeque nasi 7 3116 -UBERON:0008595 levator anguli oris 7 3117 -UBERON:0008596 mentalis muscle 7 3118 -UBERON:0008597 depressor anguli oris muscle 7 3119 -UBERON:0008598 risorius muscle 7 3120 -UBERON:0008609 transversus menti muscle 7 3121 -UBERON:0010437 zygomaticus muscle 7 3122 -UBERON:0008593 zygomaticus major muscle 8 3123 -UBERON:0008594 zygomaticus minor muscle 8 3124 -UBERON:0010933 orbicularis oris muscle 7 3125 -UBERON:0010944 posterior digastric muscle 7 3126 -UBERON:0011647 depressor mandibulae muscle 7 3127 -UBERON:2001693 protractor operculi 5 3128 -UBERON:2001768 retractor tentaculi 5 3129 -UBERON:2002200 hypobranchial muscle 5 3130 -UBERON:2002281 retractor posttemporalis 5 3131 -UBERON:3000032 auditory muscles 5 3132 -UBERON:3000224 hyobranchial muscle 5 3133 -UBERON:3010618 constrictor laryngis externus 6 3134 -UBERON:3010620 dilatator laryngis 6 3135 -UBERON:3010621 constrictor laryngis anterior 6 3136 -UBERON:3010650 cephalodorsosubpharyngeus 6 3137 -UBERON:3010651 levator bulbi 6 3138 -UBERON:3010654 rectus cervicis 6 3139 -UBERON:3010657 subhyoideus 6 3140 -UBERON:3010659 subarcualis rectus I 6 3141 -UBERON:3000309 narial muscles 5 3142 -UBERON:0002380 trapezius muscle 4 3143 -UBERON:0014798 clavotrapezius muscle 5 3144 -UBERON:0014799 acromiotrapezius muscle 5 3145 -UBERON:0014800 spinotrapezius muscle 5 3146 -UBERON:0002382 rectus abdominis muscle 4 3147 -UBERON:0002385 muscle tissue 4 3148 -UBERON:0001135 smooth muscle tissue 5 3149 -UBERON:0002033 arrector muscle of hair 6 3150 -UBERON:0011940 arrector pili muscle of vibrissa 7 3151 -UBERON:0002112 smooth muscle of esophagus 6 3152 -UBERON:0004648 esophagus muscularis mucosa 7 3153 -UBERON:0035844 lower esophagus muscularis mucosa 8 3154 -UBERON:0003386 smooth muscle of eye 6 3155 -UBERON:0001605 ciliary muscle 7 3156 -UBERON:0004234 iris smooth muscle 7 3157 -UBERON:0001607 sphincter pupillae 8 3158 -UBERON:0001608 dilatator pupillae 8 3159 -UBERON:0010379 superior tarsal muscle 7 3160 -UBERON:0015751 inferior tarsal muscle 7 3161 -UBERON:0004219 urethra smooth muscle layer 6 3162 -UBERON:0004223 vagina smooth muscle 6 3163 -UBERON:0004225 respiratory system smooth muscle 6 3164 -UBERON:0004233 lower respiratory tract smooth muscle 7 3165 -UBERON:0003387 smooth muscle of trachea 8 3166 -UBERON:0006680 trachealis 9 3167 -UBERON:0004242 bronchus smooth muscle 8 3168 -UBERON:0004241 main bronchus smooth muscle 9 3169 -UBERON:0004515 smooth muscle tissue of bronchiole 9 3170 -UBERON:0004516 smooth muscle tissue of terminal bronchiole 10 3171 -UBERON:0004517 smooth muscle tissue of respiratory bronchiole 10 3172 -UBERON:0004895 alveolar smooth muscle 8 3173 -UBERON:0004296 respiratory system lymphatic vessel smooth muscle 7 3174 -UBERON:0004297 respiratory system blood vessel smooth muscle 7 3175 -UBERON:0012416 respiratory system arterial smooth muscle 8 3176 -UBERON:0004226 gastrointestinal system smooth muscle 6 3177 -UBERON:0004221 intestine smooth muscle 7 3178 -UBERON:0001240 muscularis mucosae of intestine 8 3179 -UBERON:0001210 muscularis mucosae of small intestine 9 3180 -UBERON:0012494 muscularis mucosae of duodenum 10 3181 -UBERON:0016519 muscularis mucosae of jejunum 10 3182 -UBERON:0001239 muscularis mucosae of large intestine 9 3183 -UBERON:0007178 muscularis mucosae of colon 10 3184 -UBERON:0012497 muscularis mucosae of rectum 10 3185 -UBERON:0004220 large intestine smooth muscle 8 3186 -UBERON:0001239 muscularis mucosae of large intestine 9 3187 -UBERON:0007178 muscularis mucosae of colon 10 3188 -UBERON:0012497 muscularis mucosae of rectum 10 3189 -UBERON:0018112 rectum smooth muscle tissue 9 3190 -UBERON:0012497 muscularis mucosae of rectum 10 3191 -UBERON:0004239 small intestine smooth muscle 8 3192 -UBERON:0001210 muscularis mucosae of small intestine 9 3193 -UBERON:0012494 muscularis mucosae of duodenum 10 3194 -UBERON:0016519 muscularis mucosae of jejunum 10 3195 -UBERON:2005273 intestinal mucosal muscle 8 3196 -UBERON:0004222 stomach smooth muscle 7 3197 -UBERON:0001203 muscularis mucosae of stomach 8 3198 -UBERON:0016501 muscularis mucosae of fundus of stomach 9 3199 -UBERON:0011903 gizzard smooth muscle 8 3200 -UBERON:0006676 muscularis mucosa 7 3201 -UBERON:0001203 muscularis mucosae of stomach 8 3202 -UBERON:0016501 muscularis mucosae of fundus of stomach 9 3203 -UBERON:0001240 muscularis mucosae of intestine 8 3204 -UBERON:0001210 muscularis mucosae of small intestine 9 3205 -UBERON:0012494 muscularis mucosae of duodenum 10 3206 -UBERON:0016519 muscularis mucosae of jejunum 10 3207 -UBERON:0001239 muscularis mucosae of large intestine 9 3208 -UBERON:0007178 muscularis mucosae of colon 10 3209 -UBERON:0012497 muscularis mucosae of rectum 10 3210 -UBERON:0004648 esophagus muscularis mucosa 8 3211 -UBERON:0035844 lower esophagus muscularis mucosa 9 3212 -UBERON:0006912 urinary bladder muscularis mucosa 8 3213 -UBERON:0016500 muscularis mucosa of fundus of urinary bladder 9 3214 -UBERON:0035840 esophagogastric junction muscularis mucosa 8 3215 -UBERON:0004227 kidney pelvis smooth muscle 6 3216 -UBERON:0004228 urinary bladder smooth muscle 6 3217 -UBERON:0000381 urinary bladder detrusor smooth muscle 7 3218 -UBERON:0004229 urinary bladder trigone smooth muscle 7 3219 -UBERON:0004230 urinary bladder neck smooth muscle 7 3220 -UBERON:0006912 urinary bladder muscularis mucosa 7 3221 -UBERON:0016500 muscularis mucosa of fundus of urinary bladder 8 3222 -UBERON:0004231 anal region smooth muscle 6 3223 -UBERON:0001244 internal anal sphincter 7 3224 -UBERON:0012649 anococcygeus muscle 7 3225 -UBERON:0018112 rectum smooth muscle tissue 7 3226 -UBERON:0012497 muscularis mucosae of rectum 8 3227 -UBERON:0035103 perineal body smooth muscle muscle tissue 7 3228 -UBERON:0004232 lymphatic vessel smooth muscle 6 3229 -UBERON:0004296 respiratory system lymphatic vessel smooth muscle 7 3230 -UBERON:0004235 mammary gland smooth muscle 6 3231 -UBERON:0004237 blood vessel smooth muscle 6 3232 -UBERON:0002111 artery smooth muscle tissue 7 3233 -UBERON:0004178 aorta smooth muscle tissue 7 3234 -UBERON:0004236 arteriole smooth muscle 7 3235 -UBERON:0004297 respiratory system blood vessel smooth muscle 7 3236 -UBERON:0012416 respiratory system arterial smooth muscle 8 3237 -UBERON:0004696 venous system smooth muscle 7 3238 -UBERON:0012418 respiratory system venous smooth muscle 8 3239 -UBERON:0004238 spleen smooth muscle 6 3240 -UBERON:0004240 gall bladder smooth muscle 6 3241 -UBERON:0004243 prostate gland smooth muscle 6 3242 -UBERON:0004245 oviduct smooth muscle 6 3243 -UBERON:0004246 outflow tract smooth muscle 6 3244 -UBERON:0004695 arterial system smooth muscle 6 3245 -UBERON:0002111 artery smooth muscle tissue 7 3246 -UBERON:0004178 aorta smooth muscle tissue 7 3247 -UBERON:0004236 arteriole smooth muscle 7 3248 -UBERON:0012416 respiratory system arterial smooth muscle 7 3249 -UBERON:0004834 hepatic duct smooth muscle 6 3250 -UBERON:0004835 epididymis smooth muscle 6 3251 -UBERON:0005109 metanephric smooth muscle tissue 6 3252 -UBERON:0005321 mesonephric smooth muscle tissue 6 3253 -UBERON:0008331 clitoral smooth muscle 6 3254 -UBERON:0009919 ureter smooth muscle 6 3255 -UBERON:0012615 umbilical smooth muscle 6 3256 -UBERON:0015717 smooth muscle tissue layer of ejaculatory duct 6 3257 -UBERON:0015783 smooth muscle layer in fatty layer of subcutaneous tissue 6 3258 -UBERON:2005279 enteric circular muscle 6 3259 -UBERON:0002036 striated muscle tissue 5 3260 -UBERON:0001133 cardiac muscle tissue 6 3261 -UBERON:0004492 cardiac muscle tissue of cardiac septum 7 3262 -UBERON:0003383 cardiac muscle tissue of interventricular septum 8 3263 -UBERON:0004491 cardiac muscle tissue of interatrial septum 8 3264 -UBERON:0002352 atrioventricular node 9 3265 -UBERON:0004493 cardiac muscle tissue of myocardium 7 3266 -UBERON:0002350 conducting system of heart 8 3267 -UBERON:2005074 central cardiac conduction system 9 3268 -UBERON:2005075 peripheral cardiac conduction system 9 3269 -UBERON:0002351 sinoatrial node 8 3270 -UBERON:0002352 atrioventricular node 8 3271 -UBERON:0004490 cardiac muscle tissue of atrium 8 3272 -UBERON:0003378 cardiac muscle of auricular region 9 3273 -UBERON:0009779 cardiac muscle tissue of right auricle 10 3274 -UBERON:0009780 cardiac muscle tissue of left auricle 10 3275 -UBERON:0003379 cardiac muscle of right atrium 9 3276 -UBERON:0009779 cardiac muscle tissue of right auricle 10 3277 -UBERON:0003380 cardiac muscle of left atrium 9 3278 -UBERON:0009780 cardiac muscle tissue of left auricle 10 3279 -UBERON:0005982 Bachmann's bundle 8 3280 -UBERON:0009966 internodal tract 8 3281 -UBERON:0015125 anterior internodal tract 9 3282 -UBERON:0015126 middle internodal tract 9 3283 -UBERON:0015127 posterior internodal tract 9 3284 -UBERON:0018649 cardiac muscle tissue of ventricle 8 3285 -UBERON:0002353 atrioventricular bundle 9 3286 -UBERON:0002354 cardiac Purkinje fiber 9 3287 -UBERON:0003381 cardiac muscle of right ventricle 9 3288 -UBERON:0004525 cardiac muscle tissue of trabecula carnea of right ventricle 10 3289 -UBERON:0003382 cardiac muscle of left ventricle 9 3290 -UBERON:0004526 cardiac muscle tissue of trabecula carnea of left ventricle 10 3291 -UBERON:0003452 trabecula carnea cardiac muscle tissue 9 3292 -UBERON:0004525 cardiac muscle tissue of trabecula carnea of right ventricle 10 3293 -UBERON:0004526 cardiac muscle tissue of trabecula carnea of left ventricle 10 3294 -UBERON:0004146 His-Purkinje system 9 3295 -UBERON:0004494 cardiac muscle tissue of papillary muscle 9 3296 -UBERON:0005986 left branch of atrioventricular bundle 9 3297 -UBERON:0005987 right branch of atrioventricular bundle 9 3298 -UBERON:0010131 conducting tissue of heart 7 3299 -UBERON:0002350 conducting system of heart 8 3300 -UBERON:2005074 central cardiac conduction system 9 3301 -UBERON:2005075 peripheral cardiac conduction system 9 3302 -UBERON:0002351 sinoatrial node 8 3303 -UBERON:0002352 atrioventricular node 8 3304 -UBERON:0002353 atrioventricular bundle 8 3305 -UBERON:0002354 cardiac Purkinje fiber 8 3306 -UBERON:0004146 His-Purkinje system 8 3307 -UBERON:0005982 Bachmann's bundle 8 3308 -UBERON:0005986 left branch of atrioventricular bundle 8 3309 -UBERON:0005987 right branch of atrioventricular bundle 8 3310 -UBERON:0009966 internodal tract 8 3311 -UBERON:0015125 anterior internodal tract 9 3312 -UBERON:0015126 middle internodal tract 9 3313 -UBERON:0015127 posterior internodal tract 9 3314 -UBERON:0001134 skeletal muscle tissue 6 3315 -UBERON:0003269 skeletal muscle tissue of eye 7 3316 -UBERON:0004505 skeletal muscle tissue of orbicularis oculi 8 3317 -UBERON:0004508 skeletal muscle tissue of levator palpebrae superioris 8 3318 -UBERON:0003895 hypaxial myotome region 7 3319 -UBERON:2000767 hypaxial region somite 11 8 3320 -UBERON:2000768 hypaxial region somite 14 8 3321 -UBERON:2000769 hypaxial region somite 17 8 3322 -UBERON:2000770 hypaxial region somite 2 8 3323 -UBERON:2000771 hypaxial region somite 22 8 3324 -UBERON:2000772 hypaxial region somite 25 8 3325 -UBERON:2000774 hypaxial region somite 28 8 3326 -UBERON:2000775 hypaxial region somite 30 8 3327 -UBERON:2000776 hypaxial region somite 6 8 3328 -UBERON:2000777 hypaxial region somite 9 8 3329 -UBERON:2000891 hypaxial region somite 1 8 3330 -UBERON:2000892 hypaxial region somite 12 8 3331 -UBERON:2000894 hypaxial region somite 15 8 3332 -UBERON:2000895 hypaxial region somite 18 8 3333 -UBERON:2000896 hypaxial region somite 20 8 3334 -UBERON:2000897 hypaxial region somite 23 8 3335 -UBERON:2000898 hypaxial region somite 26 8 3336 -UBERON:2000899 hypaxial region somite 29 8 3337 -UBERON:2000900 hypaxial region somite 4 8 3338 -UBERON:2000901 hypaxial region somite 7 8 3339 -UBERON:2000925 hypaxial region somite 10 8 3340 -UBERON:2000937 hypaxial region somite 13 8 3341 -UBERON:2000946 hypaxial region somite 16 8 3342 -UBERON:2000957 hypaxial region somite 19 8 3343 -UBERON:2000968 hypaxial region somite 21 8 3344 -UBERON:2000979 hypaxial region somite 24 8 3345 -UBERON:2000986 hypaxial region somite 27 8 3346 -UBERON:2000987 hypaxial region somite 3 8 3347 -UBERON:2000988 hypaxial region somite 5 8 3348 -UBERON:2000989 hypaxial region somite 8 8 3349 -UBERON:0003898 skeletal muscle tissue of trunk 7 3350 -UBERON:0001367 external anal sphincter 8 3351 -UBERON:0004495 skeletal muscle tissue of diaphragm 8 3352 -UBERON:0004496 skeletal muscle tissue of iliacus 8 3353 -UBERON:0004497 skeletal muscle tissue of gluteus maximus 8 3354 -UBERON:0004510 skeletal muscle tissue of pectoralis major 8 3355 -UBERON:0004511 skeletal muscle tissue of rectus abdominis 8 3356 -UBERON:0004513 skeletal muscle tissue of internal intercostal muscle 8 3357 -UBERON:0004514 skeletal muscle tissue of transversus thoracis 8 3358 -UBERON:0004831 esophagus skeletal muscle 8 3359 -UBERON:0003900 epaxial myotome region 7 3360 -UBERON:2000718 epaxial region somite 27 8 3361 -UBERON:2000729 epaxial region somite 3 8 3362 -UBERON:2000739 epaxial region somite 11 8 3363 -UBERON:2000740 epaxial region somite 5 8 3364 -UBERON:2000741 epaxial region somite 14 8 3365 -UBERON:2000742 epaxial region somite 17 8 3366 -UBERON:2000743 epaxial region somite 2 8 3367 -UBERON:2000744 epaxial region somite 22 8 3368 -UBERON:2000745 epaxial region somite 25 8 3369 -UBERON:2000746 epaxial region somite 28 8 3370 -UBERON:2000747 epaxial region somite 30 8 3371 -UBERON:2000748 epaxial region somite 6 8 3372 -UBERON:2000749 epaxial region somite 9 8 3373 -UBERON:2000751 epaxial region somite 8 8 3374 -UBERON:2000864 epaxial region somite 1 8 3375 -UBERON:2000865 epaxial region somite 12 8 3376 -UBERON:2000866 epaxial region somite 15 8 3377 -UBERON:2000867 epaxial region somite 18 8 3378 -UBERON:2000868 epaxial region somite 20 8 3379 -UBERON:2000869 epaxial region somite 23 8 3380 -UBERON:2000870 epaxial region somite 26 8 3381 -UBERON:2000872 epaxial region somite 29 8 3382 -UBERON:2000873 epaxial region somite 4 8 3383 -UBERON:2000874 epaxial region somite 7 8 3384 -UBERON:2000991 epaxial region somite 10 8 3385 -UBERON:2001001 epaxial region somite 13 8 3386 -UBERON:2001012 epaxial region somite 16 8 3387 -UBERON:2001023 epaxial region somite 19 8 3388 -UBERON:2001030 epaxial region somite 21 8 3389 -UBERON:2001040 epaxial region somite 24 8 3390 -UBERON:0004057 skeletal muscle fiber triad 7 3391 -UBERON:0004498 skeletal muscle tissue of quadriceps femoris 7 3392 -UBERON:0004499 skeletal muscle tissue of tibialis anterior 7 3393 -UBERON:0004500 skeletal muscle tissue of deltoid 7 3394 -UBERON:0004501 skeletal muscle tissue of teres major 7 3395 -UBERON:0004502 skeletal muscle tissue of biceps brachii 7 3396 -UBERON:0004503 skeletal muscle tissue of digastric 7 3397 -UBERON:0004504 skeletal muscle tissue of mylohyoid 7 3398 -UBERON:0004506 skeletal muscle tissue of masseter 7 3399 -UBERON:0004507 skeletal muscle tissue of temporalis 7 3400 -UBERON:0004509 skeletal muscle tissue of trapezius 7 3401 -UBERON:0004512 skeletal muscle tissue of supraspinatus 7 3402 -UBERON:0004520 striated muscle tissue of prostate 7 3403 -UBERON:0004829 urethra skeletal muscle tissue 7 3404 -UBERON:0004830 respiratory system skeletal muscle 7 3405 -UBERON:0003384 skeletal muscle tissue of pharynx 8 3406 -UBERON:0004495 skeletal muscle tissue of diaphragm 8 3407 -UBERON:0004832 anal region skeletal muscle 7 3408 -UBERON:0001367 external anal sphincter 8 3409 -UBERON:0004833 lip skeletal muscle 7 3410 -UBERON:0006907 slow muscle tissue 7 3411 -UBERON:0006908 fast muscle tissue 7 3412 -UBERON:0008713 pectoral girdle and thoracic body wall skeletal muscle 7 3413 -UBERON:2005267 erector muscle 7 3414 -UBERON:2000500 dorsal erector muscle 8 3415 -UBERON:2000617 anal erector 8 3416 -UBERON:2005270 depressor muscle 7 3417 -UBERON:2000195 dorsal depressor muscle 8 3418 -UBERON:2000466 anal depressor 8 3419 -UBERON:2005276 inclinator muscle 7 3420 -UBERON:2000313 anal inclinator 8 3421 -UBERON:2000342 dorsal inclinator muscle 8 3422 -UBERON:4200218 musculotendinous bundle 7 3423 -UBERON:0004162 pulmonary myocardium 6 3424 -UBERON:0010059 hypoglossal cord 6 3425 -UBERON:0013497 muscularis orbicularis 6 3426 -UBERON:0004667 interventricular septum muscular part 5 3427 -UBERON:0003383 cardiac muscle tissue of interventricular septum 6 3428 -UBERON:0006821 cutaneous muscle 5 3429 -UBERON:0011415 cutaneous trunci muscle 6 3430 -UBERON:0011464 levator nasolabialis muscle 6 3431 -UBERON:0008428 ceratoglossus 5 3432 -UBERON:0008715 muscle tissue of prostate 5 3433 -UBERON:0004243 prostate gland smooth muscle 6 3434 -UBERON:0004520 striated muscle tissue of prostate 6 3435 -UBERON:0011386 facial modiolus 5 3436 -UBERON:0011535 chondroglossus muscle 5 3437 -UBERON:0016886 muscle tissue of terminal part of digestive tract 5 3438 -UBERON:0018112 rectum smooth muscle tissue 6 3439 -UBERON:0012497 muscularis mucosae of rectum 7 3440 -UBERON:0036274 tonsillar pillar 5 3441 -UBERON:0002390 hematopoietic system 4 3442 -UBERON:0002411 clitoris 4 3443 -UBERON:0002451 endometrial gland 4 3444 -UBERON:0012247 cervical gland 5 3445 -UBERON:0002478 orbitosphenoid 4 3446 -UBERON:0002494 papillary muscle of heart 4 3447 -UBERON:0004523 papillary muscle of right ventricle 5 3448 -UBERON:0004524 papillary muscle of left ventricle 5 3449 -UBERON:0002498 deltopectoral crest 4 3450 -UBERON:0002509 mesenteric lymph node 4 3451 -UBERON:0002511 trabecula carnea 4 3452 -UBERON:0006570 trabecula carnea of right ventricle 5 3453 -UBERON:0006571 trabecula carnea of left ventricle 5 3454 -UBERON:0006828 trabecula carnea of atrium 5 3455 -UBERON:0002512 corpus luteum 4 3456 -UBERON:0003079 floor plate 4 3457 -UBERON:0005500 rhombomere floor plate 5 3458 -UBERON:0005566 rhombomere 1 floor plate 6 3459 -UBERON:0005570 rhombomere 2 floor plate 6 3460 -UBERON:0005573 rhombomere 3 floor plate 6 3461 -UBERON:0005576 rhombomere 4 floor plate 6 3462 -UBERON:0005579 rhombomere 5 floor plate 6 3463 -UBERON:0005582 rhombomere 6 floor plate 6 3464 -UBERON:0005585 rhombomere 7 floor plate 6 3465 -UBERON:0005588 rhombomere 8 floor plate 6 3466 -UBERON:2000887 floor plate neural rod 5 3467 -UBERON:0003081 lateral plate mesoderm 4 3468 -UBERON:0003105 dorsal lateral plate region 4 3469 -UBERON:0003124 chorion membrane 4 3470 -UBERON:0003217 neural lobe of neurohypophysis 4 3471 -UBERON:0003220 metanephric mesenchyme 4 3472 -UBERON:0003306 floor plate of neural tube 4 3473 -UBERON:0003307 floor plate of midbrain 5 3474 -UBERON:0003308 floor plate of telencephalon 5 3475 -UBERON:0003309 floor plate of diencephalon 5 3476 -UBERON:0003310 floor plate of metencephalon 5 3477 -UBERON:0003311 floor plate of medulla oblongata 5 3478 -UBERON:0005723 floor plate spinal cord region 5 3479 -UBERON:0003422 mesenchyme of umbilical cord 4 3480 -UBERON:0005667 connecting stalk mesoderm 5 3481 -UBERON:0003485 vagina sebaceous gland 4 3482 -UBERON:0003595 pes connective tissue 4 3483 -UBERON:0003578 pedal digit connective tissue 5 3484 -UBERON:0003596 ankle connective tissue 5 3485 -UBERON:0003598 manus connective tissue 4 3486 -UBERON:0003575 wrist connective tissue 5 3487 -UBERON:0016496 tendon of palmaris longus 6 3488 -UBERON:0003597 manual digit connective tissue 5 3489 -UBERON:0005809 cortex of manus bone 5 3490 -UBERON:0003610 heart elastic tissue 4 3491 -UBERON:0003614 blood vessel elastic tissue 4 3492 -UBERON:0003609 aorta elastic tissue 5 3493 -UBERON:0011392 blood vessel internal elastic membrane 5 3494 -UBERON:0015433 blood vessel external elastic membrane 5 3495 -UBERON:0003688 omentum 4 3496 -UBERON:0002399 lesser omentum 5 3497 -UBERON:0005448 greater omentum 5 3498 -UBERON:0003699 pubic symphysis 4 3499 -UBERON:0003707 sinus of Valsalva 4 3500 -UBERON:0003829 urethra muscle tissue 4 3501 -UBERON:0004917 urethral sphincter 5 3502 -UBERON:0004918 internal urethral sphincter 6 3503 -UBERON:0004919 external urethral sphincter 6 3504 -UBERON:0011379 male external urethral sphincter 7 3505 -UBERON:0011380 female external urethral sphincter 7 3506 -UBERON:0003889 fallopian tube 4 3507 -UBERON:0001302 right uterine tube 5 3508 -UBERON:0001303 left uterine tube 5 3509 -UBERON:0003974 upper part of vagina 5 3510 -UBERON:0016632 isthmus of fallopian tube 5 3511 -UBERON:0003890 Mullerian duct 4 3512 -UBERON:0003904 bursal plica 4 3513 -UBERON:0003905 bursal follicle 4 3514 -UBERON:0003906 cardiac jelly 4 3515 -UBERON:0005261 atrium cardiac jelly 5 3516 -UBERON:0005262 ventricle cardiac jelly 5 3517 -UBERON:0005263 outflow tract cardiac jelly 5 3518 -UBERON:0003946 placenta labyrinth 4 3519 -UBERON:0003959 rete testis 4 3520 -UBERON:0003972 placenta junctional zone 4 3521 -UBERON:0004014 labium minora 4 3522 -UBERON:0004021 spongiotrophoblast layer 4 3523 -UBERON:0004027 chorionic plate 4 3524 -UBERON:0004032 podocyte slit diaphragm 4 3525 -UBERON:0004033 podocyte slit junction 4 3526 -UBERON:0004085 labium majora 4 3527 -UBERON:0004098 tibial plateaux 4 3528 -UBERON:0004109 cortex of humerus 4 3529 -UBERON:0004140 primary heart field 4 3530 -UBERON:0004145 outflow tract 4 3531 -UBERON:0005337 outflow tract of ventricle 5 3532 -UBERON:0005953 outflow part of right ventricle 6 3533 -UBERON:0005956 outflow part of left ventricle 6 3534 -UBERON:0005338 outflow tract aortic component 5 3535 -UBERON:0005339 outflow tract pulmonary component 5 3536 -UBERON:0005946 outflow tract of atrium 5 3537 -UBERON:0005965 outflow part of right atrium 6 3538 -UBERON:0005966 outflow part of left atrium 6 3539 -UBERON:0004151 cardiac chamber 4 3540 -UBERON:0002063 sinus venosus 5 3541 -UBERON:0002081 cardiac atrium 5 3542 -UBERON:0002078 right cardiac atrium 6 3543 -UBERON:0002079 left cardiac atrium 6 3544 -UBERON:0002082 cardiac ventricle 5 3545 -UBERON:0002080 heart right ventricle 6 3546 -UBERON:0002084 heart left ventricle 6 3547 -UBERON:0003983 conus arteriosus 5 3548 -UBERON:0004152 bulbus arteriosus 5 3549 -UBERON:0035553 left cardiac chamber 5 3550 -UBERON:0002079 left cardiac atrium 6 3551 -UBERON:0002084 heart left ventricle 6 3552 -UBERON:0035554 right cardiac chamber 5 3553 -UBERON:0002078 right cardiac atrium 6 3554 -UBERON:0002080 heart right ventricle 6 3555 -UBERON:0004164 branchiomeric muscle 4 3556 -UBERON:0014836 levator arcuum muscle 5 3557 -UBERON:0004177 hemopoietic organ 4 3558 -UBERON:0000040 Leydig's organ 5 3559 -UBERON:0001960 periarterial lymphatic sheath 5 3560 -UBERON:0002106 spleen 5 3561 -UBERON:0002370 thymus 5 3562 -UBERON:0009114 cervical thymus 6 3563 -UBERON:0018244 superficial cervical thymus 7 3564 -UBERON:0018245 deep cervical thymus 7 3565 -UBERON:0009115 thoracic thymus 6 3566 -UBERON:0003903 bursa of Fabricius 5 3567 -UBERON:0006856 interrenal gland 5 3568 -UBERON:0007132 head kidney 5 3569 -UBERON:0009102 supraneural body 5 3570 -UBERON:0009116 thymoid 5 3571 -UBERON:0010014 epigonal organ 5 3572 -UBERON:0013119 haemal node 5 3573 -UBERON:0004196 proximal convoluted tubule segment 1 4 3574 -UBERON:0005126 metanephric S1 5 3575 -UBERON:0004197 proximal convoluted tubule segment 2 4 3576 -UBERON:0004271 outflow tract pericardium 4 3577 -UBERON:0004292 cardiac skeleton 4 3578 -UBERON:0004346 gubernaculum (male or female) 4 3579 -UBERON:0008843 gubernaculum testis 5 3580 -UBERON:0008844 gubernaculum (female) 5 3581 -UBERON:0004358 caput epididymis 4 3582 -UBERON:0004359 corpus epididymis 4 3583 -UBERON:0004360 cauda epididymis 4 3584 -UBERON:0004375 bone of free limb or fin 4 3585 -UBERON:0002428 limb bone 5 3586 -UBERON:0003464 hindlimb bone 6 3587 -UBERON:0003608 hindlimb long bone 7 3588 -UBERON:0000979 tibia 8 3589 -UBERON:0000981 femur 8 3590 -UBERON:0001446 fibula 8 3591 -UBERON:0001448 metatarsal bone 8 3592 -UBERON:0003650 metatarsal bone of digit 1 9 3593 -UBERON:0003651 metatarsal bone of digit 2 9 3594 -UBERON:0003652 metatarsal bone of digit 3 9 3595 -UBERON:0003653 metatarsal bone of digit 4 9 3596 -UBERON:0003654 metatarsal bone of digit 5 9 3597 -UBERON:0013588 fused metatarsal bones 3 and 4 9 3598 -UBERON:0014763 fused metatarsal bones 2-4 10 3599 -UBERON:4200153 metatarsal bone of digit 6 9 3600 -UBERON:4200157 metatarsal bone of digit 7 9 3601 -UBERON:4200158 metatarsal bone of digit 8 9 3602 -UBERON:0001449 phalanx of pes 8 3603 -UBERON:0003640 pedal digit 1 phalanx 9 3604 -UBERON:0004315 distal phalanx of pedal digit 1 10 3605 -UBERON:0004332 proximal phalanx of pedal digit 1 10 3606 -UBERON:0003641 pedal digit 2 phalanx 9 3607 -UBERON:0004316 distal phalanx of pedal digit 2 10 3608 -UBERON:0004324 middle phalanx of pedal digit 2 10 3609 -UBERON:0004333 proximal phalanx of pedal digit 2 10 3610 -UBERON:0003642 pedal digit 3 phalanx 9 3611 -UBERON:0004317 distal phalanx of pedal digit 3 10 3612 -UBERON:0004325 middle phalanx of pedal digit 3 10 3613 -UBERON:0004334 proximal phalanx of pedal digit 3 10 3614 -UBERON:0003862 pedal digit 4 phalanx 9 3615 -UBERON:0004318 distal phalanx of pedal digit 4 10 3616 -UBERON:0004326 middle phalanx of pedal digit 4 10 3617 -UBERON:0004335 proximal phalanx of pedal digit 4 10 3618 -UBERON:0003863 pedal digit 5 phalanx 9 3619 -UBERON:0004319 distal phalanx of pedal digit 5 10 3620 -UBERON:0004327 middle phalanx of pedal digit 5 10 3621 -UBERON:0004336 proximal phalanx of pedal digit 5 10 3622 -UBERON:0003866 middle phalanx of pes 9 3623 -UBERON:0004324 middle phalanx of pedal digit 2 10 3624 -UBERON:0004325 middle phalanx of pedal digit 3 10 3625 -UBERON:0004326 middle phalanx of pedal digit 4 10 3626 -UBERON:0004327 middle phalanx of pedal digit 5 10 3627 -UBERON:0003867 distal phalanx of pes 9 3628 -UBERON:0004315 distal phalanx of pedal digit 1 10 3629 -UBERON:0004316 distal phalanx of pedal digit 2 10 3630 -UBERON:0004317 distal phalanx of pedal digit 3 10 3631 -UBERON:0004318 distal phalanx of pedal digit 4 10 3632 -UBERON:0004319 distal phalanx of pedal digit 5 10 3633 -UBERON:0003868 proximal phalanx of pes 9 3634 -UBERON:0004332 proximal phalanx of pedal digit 1 10 3635 -UBERON:0004333 proximal phalanx of pedal digit 2 10 3636 -UBERON:0004334 proximal phalanx of pedal digit 3 10 3637 -UBERON:0004335 proximal phalanx of pedal digit 4 10 3638 -UBERON:0004336 proximal phalanx of pedal digit 5 10 3639 -UBERON:4100009 pedal digit 7 phalanx 9 3640 -UBERON:0012269 equine hindlimb splint bone 8 3641 -UBERON:0005893 leg bone 7 3642 -UBERON:0002446 patella 8 3643 -UBERON:0003826 upper leg bone 8 3644 -UBERON:0000981 femur 9 3645 -UBERON:0004251 hindlimb zeugopod bone 8 3646 -UBERON:0000979 tibia 9 3647 -UBERON:0001446 fibula 9 3648 -UBERON:0003467 sesamoid bone of gastrocnemius 9 3649 -UBERON:0006714 tibiofibula 9 3650 -UBERON:0010907 parafibula 9 3651 -UBERON:0012104 sesamoid bone of the peroneus longus muscle 9 3652 -UBERON:0005899 pes bone 7 3653 -UBERON:0001447 tarsal bone 8 3654 -UBERON:0001451 navicular bone of pes 9 3655 -UBERON:0006836 medial tibial tarsal bone 9 3656 -UBERON:0010721 distal tarsal bone 9 3657 -UBERON:0001452 distal tarsal bone 1 10 3658 -UBERON:0001453 distal tarsal bone 2 10 3659 -UBERON:0001454 distal tarsal bone 3 10 3660 -UBERON:0001455 cuboid bone 10 3661 -UBERON:0010723 os vesalianum pedis 10 3662 -UBERON:0010737 distal tarsal bone 4 10 3663 -UBERON:0010738 distal tarsal bone 5 10 3664 -UBERON:0012289 fused tarsal bones 2 and 3 10 3665 -UBERON:0013649 fused tarsal bones 1 and 2 10 3666 -UBERON:3001002 basale commune (tarsal) 10 3667 -UBERON:0011679 proximal tarsal bone 9 3668 -UBERON:0001450 calcaneus 10 3669 -UBERON:0002395 talus 10 3670 -UBERON:0011678 hindlimb intermedium bone 10 3671 -UBERON:0012126 fibulare 10 3672 -UBERON:0012288 centroquartal bone 9 3673 -UBERON:3010045 centrale 1 9 3674 -UBERON:3010073 centrale 2 9 3675 -UBERON:4200011 pedal centrale 9 3676 -UBERON:4200152 intertarsale sesamoid 9 3677 -UBERON:0008000 sesamoid bone of pes 8 3678 -UBERON:0007990 proximal sesamoid bone of pes 9 3679 -UBERON:4200152 intertarsale sesamoid 9 3680 -UBERON:0008195 tarsometatarsus 8 3681 -UBERON:0010725 accessory navicular bone 8 3682 -UBERON:0012359 pedal digitopodium bone 8 3683 -UBERON:0001448 metatarsal bone 9 3684 -UBERON:0003650 metatarsal bone of digit 1 10 3685 -UBERON:0003651 metatarsal bone of digit 2 10 3686 -UBERON:0003652 metatarsal bone of digit 3 10 3687 -UBERON:0003653 metatarsal bone of digit 4 10 3688 -UBERON:0003654 metatarsal bone of digit 5 10 3689 -UBERON:0013588 fused metatarsal bones 3 and 4 10 3690 -UBERON:0014763 fused metatarsal bones 2-4 11 3691 -UBERON:4200153 metatarsal bone of digit 6 10 3692 -UBERON:4200157 metatarsal bone of digit 7 10 3693 -UBERON:4200158 metatarsal bone of digit 8 10 3694 -UBERON:0004248 pedal digit bone 9 3695 -UBERON:0001449 phalanx of pes 10 3696 -UBERON:0003640 pedal digit 1 phalanx 11 3697 -UBERON:0004315 distal phalanx of pedal digit 1 12 3698 -UBERON:0004332 proximal phalanx of pedal digit 1 12 3699 -UBERON:0003641 pedal digit 2 phalanx 11 3700 -UBERON:0004316 distal phalanx of pedal digit 2 12 3701 -UBERON:0004324 middle phalanx of pedal digit 2 12 3702 -UBERON:0004333 proximal phalanx of pedal digit 2 12 3703 -UBERON:0003642 pedal digit 3 phalanx 11 3704 -UBERON:0004317 distal phalanx of pedal digit 3 12 3705 -UBERON:0004325 middle phalanx of pedal digit 3 12 3706 -UBERON:0004334 proximal phalanx of pedal digit 3 12 3707 -UBERON:0003862 pedal digit 4 phalanx 11 3708 -UBERON:0004318 distal phalanx of pedal digit 4 12 3709 -UBERON:0004326 middle phalanx of pedal digit 4 12 3710 -UBERON:0004335 proximal phalanx of pedal digit 4 12 3711 -UBERON:0003863 pedal digit 5 phalanx 11 3712 -UBERON:0004319 distal phalanx of pedal digit 5 12 3713 -UBERON:0004327 middle phalanx of pedal digit 5 12 3714 -UBERON:0004336 proximal phalanx of pedal digit 5 12 3715 -UBERON:0003866 middle phalanx of pes 11 3716 -UBERON:0004324 middle phalanx of pedal digit 2 12 3717 -UBERON:0004325 middle phalanx of pedal digit 3 12 3718 -UBERON:0004326 middle phalanx of pedal digit 4 12 3719 -UBERON:0004327 middle phalanx of pedal digit 5 12 3720 -UBERON:0003867 distal phalanx of pes 11 3721 -UBERON:0004315 distal phalanx of pedal digit 1 12 3722 -UBERON:0004316 distal phalanx of pedal digit 2 12 3723 -UBERON:0004317 distal phalanx of pedal digit 3 12 3724 -UBERON:0004318 distal phalanx of pedal digit 4 12 3725 -UBERON:0004319 distal phalanx of pedal digit 5 12 3726 -UBERON:0003868 proximal phalanx of pes 11 3727 -UBERON:0004332 proximal phalanx of pedal digit 1 12 3728 -UBERON:0004333 proximal phalanx of pedal digit 2 12 3729 -UBERON:0004334 proximal phalanx of pedal digit 3 12 3730 -UBERON:0004335 proximal phalanx of pedal digit 4 12 3731 -UBERON:0004336 proximal phalanx of pedal digit 5 12 3732 -UBERON:4100009 pedal digit 7 phalanx 11 3733 -UBERON:0007990 proximal sesamoid bone of pes 10 3734 -UBERON:3000931 intercalary element of hind digit 10 3735 -UBERON:3010675 bony nodule of terminal phalanx of hind digit 10 3736 -UBERON:0012269 equine hindlimb splint bone 9 3737 -UBERON:0008194 tibiotarsus 7 3738 -UBERON:0003606 limb long bone 6 3739 -UBERON:0003221 phalanx 7 3740 -UBERON:0001436 phalanx of manus 8 3741 -UBERON:0002234 proximal phalanx of manus 9 3742 -UBERON:0004328 proximal phalanx of manual digit 2 10 3743 -UBERON:0004329 proximal phalanx of manual digit 3 10 3744 -UBERON:0004330 proximal phalanx of manual digit 4 10 3745 -UBERON:0004331 proximal phalanx of manual digit 5 10 3746 -UBERON:0004338 proximal phalanx of manual digit 1 10 3747 -UBERON:0003620 manual digit 1 phalanx 9 3748 -UBERON:0004337 distal phalanx of manual digit 1 10 3749 -UBERON:0004338 proximal phalanx of manual digit 1 10 3750 -UBERON:4200219 middle phalanx of manual digit 1 10 3751 -UBERON:0003636 manual digit 2 phalanx 9 3752 -UBERON:0004311 distal phalanx of manual digit 2 10 3753 -UBERON:0004320 middle phalanx of manual digit 2 10 3754 -UBERON:0004328 proximal phalanx of manual digit 2 10 3755 -UBERON:0003637 manual digit 3 phalanx 9 3756 -UBERON:0004312 distal phalanx of manual digit 3 10 3757 -UBERON:0004321 middle phalanx of manual digit 3 10 3758 -UBERON:0004329 proximal phalanx of manual digit 3 10 3759 -UBERON:0003638 manual digit 4 phalanx 9 3760 -UBERON:0004313 distal phalanx of manual digit 4 10 3761 -UBERON:0004322 middle phalanx of manual digit 4 10 3762 -UBERON:0004330 proximal phalanx of manual digit 4 10 3763 -UBERON:0003639 manual digit 5 phalanx 9 3764 -UBERON:0004314 distal phalanx of manual digit 5 10 3765 -UBERON:0004323 middle phalanx of manual digit 5 10 3766 -UBERON:0004331 proximal phalanx of manual digit 5 10 3767 -UBERON:0003864 middle phalanx of manus 9 3768 -UBERON:0004320 middle phalanx of manual digit 2 10 3769 -UBERON:0004321 middle phalanx of manual digit 3 10 3770 -UBERON:0004322 middle phalanx of manual digit 4 10 3771 -UBERON:0004323 middle phalanx of manual digit 5 10 3772 -UBERON:4200219 middle phalanx of manual digit 1 10 3773 -UBERON:0003865 distal phalanx of manus 9 3774 -UBERON:0004311 distal phalanx of manual digit 2 10 3775 -UBERON:0004312 distal phalanx of manual digit 3 10 3776 -UBERON:0004313 distal phalanx of manual digit 4 10 3777 -UBERON:0004314 distal phalanx of manual digit 5 10 3778 -UBERON:0004337 distal phalanx of manual digit 1 10 3779 -UBERON:0001449 phalanx of pes 8 3780 -UBERON:0003640 pedal digit 1 phalanx 9 3781 -UBERON:0004315 distal phalanx of pedal digit 1 10 3782 -UBERON:0004332 proximal phalanx of pedal digit 1 10 3783 -UBERON:0003641 pedal digit 2 phalanx 9 3784 -UBERON:0004316 distal phalanx of pedal digit 2 10 3785 -UBERON:0004324 middle phalanx of pedal digit 2 10 3786 -UBERON:0004333 proximal phalanx of pedal digit 2 10 3787 -UBERON:0003642 pedal digit 3 phalanx 9 3788 -UBERON:0004317 distal phalanx of pedal digit 3 10 3789 -UBERON:0004325 middle phalanx of pedal digit 3 10 3790 -UBERON:0004334 proximal phalanx of pedal digit 3 10 3791 -UBERON:0003862 pedal digit 4 phalanx 9 3792 -UBERON:0004318 distal phalanx of pedal digit 4 10 3793 -UBERON:0004326 middle phalanx of pedal digit 4 10 3794 -UBERON:0004335 proximal phalanx of pedal digit 4 10 3795 -UBERON:0003863 pedal digit 5 phalanx 9 3796 -UBERON:0004319 distal phalanx of pedal digit 5 10 3797 -UBERON:0004327 middle phalanx of pedal digit 5 10 3798 -UBERON:0004336 proximal phalanx of pedal digit 5 10 3799 -UBERON:0003866 middle phalanx of pes 9 3800 -UBERON:0004324 middle phalanx of pedal digit 2 10 3801 -UBERON:0004325 middle phalanx of pedal digit 3 10 3802 -UBERON:0004326 middle phalanx of pedal digit 4 10 3803 -UBERON:0004327 middle phalanx of pedal digit 5 10 3804 -UBERON:0003867 distal phalanx of pes 9 3805 -UBERON:0004315 distal phalanx of pedal digit 1 10 3806 -UBERON:0004316 distal phalanx of pedal digit 2 10 3807 -UBERON:0004317 distal phalanx of pedal digit 3 10 3808 -UBERON:0004318 distal phalanx of pedal digit 4 10 3809 -UBERON:0004319 distal phalanx of pedal digit 5 10 3810 -UBERON:0003868 proximal phalanx of pes 9 3811 -UBERON:0004332 proximal phalanx of pedal digit 1 10 3812 -UBERON:0004333 proximal phalanx of pedal digit 2 10 3813 -UBERON:0004334 proximal phalanx of pedal digit 3 10 3814 -UBERON:0004335 proximal phalanx of pedal digit 4 10 3815 -UBERON:0004336 proximal phalanx of pedal digit 5 10 3816 -UBERON:4100009 pedal digit 7 phalanx 9 3817 -UBERON:0004300 distal phalanx 8 3818 -UBERON:0003865 distal phalanx of manus 9 3819 -UBERON:0004311 distal phalanx of manual digit 2 10 3820 -UBERON:0004312 distal phalanx of manual digit 3 10 3821 -UBERON:0004313 distal phalanx of manual digit 4 10 3822 -UBERON:0004314 distal phalanx of manual digit 5 10 3823 -UBERON:0004337 distal phalanx of manual digit 1 10 3824 -UBERON:0003867 distal phalanx of pes 9 3825 -UBERON:0004315 distal phalanx of pedal digit 1 10 3826 -UBERON:0004316 distal phalanx of pedal digit 2 10 3827 -UBERON:0004317 distal phalanx of pedal digit 3 10 3828 -UBERON:0004318 distal phalanx of pedal digit 4 10 3829 -UBERON:0004319 distal phalanx of pedal digit 5 10 3830 -UBERON:0014483 distal phalanx of digit 1 9 3831 -UBERON:0004315 distal phalanx of pedal digit 1 10 3832 -UBERON:0004337 distal phalanx of manual digit 1 10 3833 -UBERON:0014484 distal phalanx of digit 2 9 3834 -UBERON:0004311 distal phalanx of manual digit 2 10 3835 -UBERON:0004316 distal phalanx of pedal digit 2 10 3836 -UBERON:0014485 distal phalanx of digit 3 9 3837 -UBERON:0004312 distal phalanx of manual digit 3 10 3838 -UBERON:0004317 distal phalanx of pedal digit 3 10 3839 -UBERON:0014486 distal phalanx of digit 4 9 3840 -UBERON:0004313 distal phalanx of manual digit 4 10 3841 -UBERON:0004318 distal phalanx of pedal digit 4 10 3842 -UBERON:0014487 distal phalanx of digit 5 9 3843 -UBERON:0004314 distal phalanx of manual digit 5 10 3844 -UBERON:0004319 distal phalanx of pedal digit 5 10 3845 -UBERON:3010746 T-shaped terminal phalanx 9 3846 -UBERON:0004301 middle phalanx 8 3847 -UBERON:0003864 middle phalanx of manus 9 3848 -UBERON:0004320 middle phalanx of manual digit 2 10 3849 -UBERON:0004321 middle phalanx of manual digit 3 10 3850 -UBERON:0004322 middle phalanx of manual digit 4 10 3851 -UBERON:0004323 middle phalanx of manual digit 5 10 3852 -UBERON:4200219 middle phalanx of manual digit 1 10 3853 -UBERON:0003866 middle phalanx of pes 9 3854 -UBERON:0004324 middle phalanx of pedal digit 2 10 3855 -UBERON:0004325 middle phalanx of pedal digit 3 10 3856 -UBERON:0004326 middle phalanx of pedal digit 4 10 3857 -UBERON:0004327 middle phalanx of pedal digit 5 10 3858 -UBERON:0014488 middle phalanx of digit 2 9 3859 -UBERON:0004320 middle phalanx of manual digit 2 10 3860 -UBERON:0004324 middle phalanx of pedal digit 2 10 3861 -UBERON:0014489 middle phalanx of digit 3 9 3862 -UBERON:0004321 middle phalanx of manual digit 3 10 3863 -UBERON:0004325 middle phalanx of pedal digit 3 10 3864 -UBERON:0009555 short pastern bone 10 3865 -UBERON:0014490 middle phalanx of digit 4 9 3866 -UBERON:0004322 middle phalanx of manual digit 4 10 3867 -UBERON:0004326 middle phalanx of pedal digit 4 10 3868 -UBERON:0014491 middle phalanx of digit 5 9 3869 -UBERON:0004323 middle phalanx of manual digit 5 10 3870 -UBERON:0004327 middle phalanx of pedal digit 5 10 3871 -UBERON:0004302 proximal phalanx 8 3872 -UBERON:0002234 proximal phalanx of manus 9 3873 -UBERON:0004328 proximal phalanx of manual digit 2 10 3874 -UBERON:0004329 proximal phalanx of manual digit 3 10 3875 -UBERON:0004330 proximal phalanx of manual digit 4 10 3876 -UBERON:0004331 proximal phalanx of manual digit 5 10 3877 -UBERON:0004338 proximal phalanx of manual digit 1 10 3878 -UBERON:0003868 proximal phalanx of pes 9 3879 -UBERON:0004332 proximal phalanx of pedal digit 1 10 3880 -UBERON:0004333 proximal phalanx of pedal digit 2 10 3881 -UBERON:0004334 proximal phalanx of pedal digit 3 10 3882 -UBERON:0004335 proximal phalanx of pedal digit 4 10 3883 -UBERON:0004336 proximal phalanx of pedal digit 5 10 3884 -UBERON:0014501 proximal phalanx of digit 1 9 3885 -UBERON:0004332 proximal phalanx of pedal digit 1 10 3886 -UBERON:0004338 proximal phalanx of manual digit 1 10 3887 -UBERON:0014502 proximal phalanx of digit 2 9 3888 -UBERON:0004328 proximal phalanx of manual digit 2 10 3889 -UBERON:0004333 proximal phalanx of pedal digit 2 10 3890 -UBERON:0014503 proximal phalanx of digit 3 9 3891 -UBERON:0004329 proximal phalanx of manual digit 3 10 3892 -UBERON:0004334 proximal phalanx of pedal digit 3 10 3893 -UBERON:0009556 long pastern bone 10 3894 -UBERON:0014504 proximal phalanx of digit 4 9 3895 -UBERON:0004330 proximal phalanx of manual digit 4 10 3896 -UBERON:0004335 proximal phalanx of pedal digit 4 10 3897 -UBERON:0014505 proximal phalanx of digit 5 9 3898 -UBERON:0004331 proximal phalanx of manual digit 5 10 3899 -UBERON:0004336 proximal phalanx of pedal digit 5 10 3900 -UBERON:0009558 pastern bone 8 3901 -UBERON:0009555 short pastern bone 9 3902 -UBERON:0009556 long pastern bone 9 3903 -UBERON:0018266 third phalanx 8 3904 -UBERON:0018322 fourth phalanx 8 3905 -UBERON:4100005 second phalanx 8 3906 -UBERON:0003607 forelimb long bone 7 3907 -UBERON:0000976 humerus 8 3908 -UBERON:0001423 radius bone 8 3909 -UBERON:0001424 ulna 8 3910 -UBERON:0001436 phalanx of manus 8 3911 -UBERON:0002234 proximal phalanx of manus 9 3912 -UBERON:0004328 proximal phalanx of manual digit 2 10 3913 -UBERON:0004329 proximal phalanx of manual digit 3 10 3914 -UBERON:0004330 proximal phalanx of manual digit 4 10 3915 -UBERON:0004331 proximal phalanx of manual digit 5 10 3916 -UBERON:0004338 proximal phalanx of manual digit 1 10 3917 -UBERON:0003620 manual digit 1 phalanx 9 3918 -UBERON:0004337 distal phalanx of manual digit 1 10 3919 -UBERON:0004338 proximal phalanx of manual digit 1 10 3920 -UBERON:4200219 middle phalanx of manual digit 1 10 3921 -UBERON:0003636 manual digit 2 phalanx 9 3922 -UBERON:0004311 distal phalanx of manual digit 2 10 3923 -UBERON:0004320 middle phalanx of manual digit 2 10 3924 -UBERON:0004328 proximal phalanx of manual digit 2 10 3925 -UBERON:0003637 manual digit 3 phalanx 9 3926 -UBERON:0004312 distal phalanx of manual digit 3 10 3927 -UBERON:0004321 middle phalanx of manual digit 3 10 3928 -UBERON:0004329 proximal phalanx of manual digit 3 10 3929 -UBERON:0003638 manual digit 4 phalanx 9 3930 -UBERON:0004313 distal phalanx of manual digit 4 10 3931 -UBERON:0004322 middle phalanx of manual digit 4 10 3932 -UBERON:0004330 proximal phalanx of manual digit 4 10 3933 -UBERON:0003639 manual digit 5 phalanx 9 3934 -UBERON:0004314 distal phalanx of manual digit 5 10 3935 -UBERON:0004323 middle phalanx of manual digit 5 10 3936 -UBERON:0004331 proximal phalanx of manual digit 5 10 3937 -UBERON:0003864 middle phalanx of manus 9 3938 -UBERON:0004320 middle phalanx of manual digit 2 10 3939 -UBERON:0004321 middle phalanx of manual digit 3 10 3940 -UBERON:0004322 middle phalanx of manual digit 4 10 3941 -UBERON:0004323 middle phalanx of manual digit 5 10 3942 -UBERON:4200219 middle phalanx of manual digit 1 10 3943 -UBERON:0003865 distal phalanx of manus 9 3944 -UBERON:0004311 distal phalanx of manual digit 2 10 3945 -UBERON:0004312 distal phalanx of manual digit 3 10 3946 -UBERON:0004313 distal phalanx of manual digit 4 10 3947 -UBERON:0004314 distal phalanx of manual digit 5 10 3948 -UBERON:0004337 distal phalanx of manual digit 1 10 3949 -UBERON:0002374 metacarpal bone 8 3950 -UBERON:0003645 metacarpal bone of digit 1 9 3951 -UBERON:0003646 metacarpal bone of digit 2 9 3952 -UBERON:0003647 metacarpal bone of digit 3 9 3953 -UBERON:0003648 metacarpal bone of digit 4 9 3954 -UBERON:0003649 metacarpal bone of digit 5 9 3955 -UBERON:0013587 fused metacarpal bones 3 and 4 9 3956 -UBERON:0012268 equine forelimb splint bone 8 3957 -UBERON:0003608 hindlimb long bone 7 3958 -UBERON:0000979 tibia 8 3959 -UBERON:0000981 femur 8 3960 -UBERON:0001446 fibula 8 3961 -UBERON:0001448 metatarsal bone 8 3962 -UBERON:0003650 metatarsal bone of digit 1 9 3963 -UBERON:0003651 metatarsal bone of digit 2 9 3964 -UBERON:0003652 metatarsal bone of digit 3 9 3965 -UBERON:0003653 metatarsal bone of digit 4 9 3966 -UBERON:0003654 metatarsal bone of digit 5 9 3967 -UBERON:0013588 fused metatarsal bones 3 and 4 9 3968 -UBERON:0014763 fused metatarsal bones 2-4 10 3969 -UBERON:4200153 metatarsal bone of digit 6 9 3970 -UBERON:4200157 metatarsal bone of digit 7 9 3971 -UBERON:4200158 metatarsal bone of digit 8 9 3972 -UBERON:0001449 phalanx of pes 8 3973 -UBERON:0003640 pedal digit 1 phalanx 9 3974 -UBERON:0004315 distal phalanx of pedal digit 1 10 3975 -UBERON:0004332 proximal phalanx of pedal digit 1 10 3976 -UBERON:0003641 pedal digit 2 phalanx 9 3977 -UBERON:0004316 distal phalanx of pedal digit 2 10 3978 -UBERON:0004324 middle phalanx of pedal digit 2 10 3979 -UBERON:0004333 proximal phalanx of pedal digit 2 10 3980 -UBERON:0003642 pedal digit 3 phalanx 9 3981 -UBERON:0004317 distal phalanx of pedal digit 3 10 3982 -UBERON:0004325 middle phalanx of pedal digit 3 10 3983 -UBERON:0004334 proximal phalanx of pedal digit 3 10 3984 -UBERON:0003862 pedal digit 4 phalanx 9 3985 -UBERON:0004318 distal phalanx of pedal digit 4 10 3986 -UBERON:0004326 middle phalanx of pedal digit 4 10 3987 -UBERON:0004335 proximal phalanx of pedal digit 4 10 3988 -UBERON:0003863 pedal digit 5 phalanx 9 3989 -UBERON:0004319 distal phalanx of pedal digit 5 10 3990 -UBERON:0004327 middle phalanx of pedal digit 5 10 3991 -UBERON:0004336 proximal phalanx of pedal digit 5 10 3992 -UBERON:0003866 middle phalanx of pes 9 3993 -UBERON:0004324 middle phalanx of pedal digit 2 10 3994 -UBERON:0004325 middle phalanx of pedal digit 3 10 3995 -UBERON:0004326 middle phalanx of pedal digit 4 10 3996 -UBERON:0004327 middle phalanx of pedal digit 5 10 3997 -UBERON:0003867 distal phalanx of pes 9 3998 -UBERON:0004315 distal phalanx of pedal digit 1 10 3999 -UBERON:0004316 distal phalanx of pedal digit 2 10 4000 -UBERON:0004317 distal phalanx of pedal digit 3 10 4001 -UBERON:0004318 distal phalanx of pedal digit 4 10 4002 -UBERON:0004319 distal phalanx of pedal digit 5 10 4003 -UBERON:0003868 proximal phalanx of pes 9 4004 -UBERON:0004332 proximal phalanx of pedal digit 1 10 4005 -UBERON:0004333 proximal phalanx of pedal digit 2 10 4006 -UBERON:0004334 proximal phalanx of pedal digit 3 10 4007 -UBERON:0004335 proximal phalanx of pedal digit 4 10 4008 -UBERON:0004336 proximal phalanx of pedal digit 5 10 4009 -UBERON:4100009 pedal digit 7 phalanx 9 4010 -UBERON:0012269 equine hindlimb splint bone 8 4011 -UBERON:0003821 metapodium bone 7 4012 -UBERON:0001448 metatarsal bone 8 4013 -UBERON:0003650 metatarsal bone of digit 1 9 4014 -UBERON:0003651 metatarsal bone of digit 2 9 4015 -UBERON:0003652 metatarsal bone of digit 3 9 4016 -UBERON:0003653 metatarsal bone of digit 4 9 4017 -UBERON:0003654 metatarsal bone of digit 5 9 4018 -UBERON:0013588 fused metatarsal bones 3 and 4 9 4019 -UBERON:0014763 fused metatarsal bones 2-4 10 4020 -UBERON:4200153 metatarsal bone of digit 6 9 4021 -UBERON:4200157 metatarsal bone of digit 7 9 4022 -UBERON:4200158 metatarsal bone of digit 8 9 4023 -UBERON:0002374 metacarpal bone 8 4024 -UBERON:0003645 metacarpal bone of digit 1 9 4025 -UBERON:0003646 metacarpal bone of digit 2 9 4026 -UBERON:0003647 metacarpal bone of digit 3 9 4027 -UBERON:0003648 metacarpal bone of digit 4 9 4028 -UBERON:0003649 metacarpal bone of digit 5 9 4029 -UBERON:0013587 fused metacarpal bones 3 and 4 9 4030 -UBERON:0012267 equine splint bone 8 4031 -UBERON:0012268 equine forelimb splint bone 9 4032 -UBERON:0012269 equine hindlimb splint bone 9 4033 -UBERON:0013581 metapodium bone 1 8 4034 -UBERON:0003645 metacarpal bone of digit 1 9 4035 -UBERON:0003650 metatarsal bone of digit 1 9 4036 -UBERON:0013582 metapodium bone 2 8 4037 -UBERON:0003646 metacarpal bone of digit 2 9 4038 -UBERON:0003651 metatarsal bone of digit 2 9 4039 -UBERON:0013583 metapodium bone 3 8 4040 -UBERON:0003647 metacarpal bone of digit 3 9 4041 -UBERON:0003652 metatarsal bone of digit 3 9 4042 -UBERON:0013584 metapodium bone 4 8 4043 -UBERON:0003648 metacarpal bone of digit 4 9 4044 -UBERON:0003653 metatarsal bone of digit 4 9 4045 -UBERON:0013585 metapodium bone 5 8 4046 -UBERON:0003649 metacarpal bone of digit 5 9 4047 -UBERON:0003654 metatarsal bone of digit 5 9 4048 -UBERON:0013586 fused metapodial bones 3 and 4 8 4049 -UBERON:0013587 fused metacarpal bones 3 and 4 9 4050 -UBERON:0013588 fused metatarsal bones 3 and 4 9 4051 -UBERON:0014763 fused metatarsal bones 2-4 10 4052 -UBERON:0014762 fused metapodial bones 2-4 9 4053 -UBERON:0014763 fused metatarsal bones 2-4 10 4054 -UBERON:4200154 metapodium bone 6 8 4055 -UBERON:4200153 metatarsal bone of digit 6 9 4056 -UBERON:4200155 metapodium bone 7 8 4057 -UBERON:4200157 metatarsal bone of digit 7 9 4058 -UBERON:4200156 metapodium bone 8 8 4059 -UBERON:4200158 metatarsal bone of digit 8 9 4060 -UBERON:0008962 forelimb bone 6 4061 -UBERON:0003460 arm bone 7 4062 -UBERON:0003466 forelimb zeugopod bone 8 4063 -UBERON:0001423 radius bone 9 4064 -UBERON:0001424 ulna 9 4065 -UBERON:0006715 radio-ulna 9 4066 -UBERON:0007993 ulnar sesamoid bone 9 4067 -UBERON:0004250 upper arm bone 8 4068 -UBERON:0000976 humerus 9 4069 -UBERON:0003607 forelimb long bone 7 4070 -UBERON:0000976 humerus 8 4071 -UBERON:0001423 radius bone 8 4072 -UBERON:0001424 ulna 8 4073 -UBERON:0001436 phalanx of manus 8 4074 -UBERON:0002234 proximal phalanx of manus 9 4075 -UBERON:0004328 proximal phalanx of manual digit 2 10 4076 -UBERON:0004329 proximal phalanx of manual digit 3 10 4077 -UBERON:0004330 proximal phalanx of manual digit 4 10 4078 -UBERON:0004331 proximal phalanx of manual digit 5 10 4079 -UBERON:0004338 proximal phalanx of manual digit 1 10 4080 -UBERON:0003620 manual digit 1 phalanx 9 4081 -UBERON:0004337 distal phalanx of manual digit 1 10 4082 -UBERON:0004338 proximal phalanx of manual digit 1 10 4083 -UBERON:4200219 middle phalanx of manual digit 1 10 4084 -UBERON:0003636 manual digit 2 phalanx 9 4085 -UBERON:0004311 distal phalanx of manual digit 2 10 4086 -UBERON:0004320 middle phalanx of manual digit 2 10 4087 -UBERON:0004328 proximal phalanx of manual digit 2 10 4088 -UBERON:0003637 manual digit 3 phalanx 9 4089 -UBERON:0004312 distal phalanx of manual digit 3 10 4090 -UBERON:0004321 middle phalanx of manual digit 3 10 4091 -UBERON:0004329 proximal phalanx of manual digit 3 10 4092 -UBERON:0003638 manual digit 4 phalanx 9 4093 -UBERON:0004313 distal phalanx of manual digit 4 10 4094 -UBERON:0004322 middle phalanx of manual digit 4 10 4095 -UBERON:0004330 proximal phalanx of manual digit 4 10 4096 -UBERON:0003639 manual digit 5 phalanx 9 4097 -UBERON:0004314 distal phalanx of manual digit 5 10 4098 -UBERON:0004323 middle phalanx of manual digit 5 10 4099 -UBERON:0004331 proximal phalanx of manual digit 5 10 4100 -UBERON:0003864 middle phalanx of manus 9 4101 -UBERON:0004320 middle phalanx of manual digit 2 10 4102 -UBERON:0004321 middle phalanx of manual digit 3 10 4103 -UBERON:0004322 middle phalanx of manual digit 4 10 4104 -UBERON:0004323 middle phalanx of manual digit 5 10 4105 -UBERON:4200219 middle phalanx of manual digit 1 10 4106 -UBERON:0003865 distal phalanx of manus 9 4107 -UBERON:0004311 distal phalanx of manual digit 2 10 4108 -UBERON:0004312 distal phalanx of manual digit 3 10 4109 -UBERON:0004313 distal phalanx of manual digit 4 10 4110 -UBERON:0004314 distal phalanx of manual digit 5 10 4111 -UBERON:0004337 distal phalanx of manual digit 1 10 4112 -UBERON:0002374 metacarpal bone 8 4113 -UBERON:0003645 metacarpal bone of digit 1 9 4114 -UBERON:0003646 metacarpal bone of digit 2 9 4115 -UBERON:0003647 metacarpal bone of digit 3 9 4116 -UBERON:0003648 metacarpal bone of digit 4 9 4117 -UBERON:0003649 metacarpal bone of digit 5 9 4118 -UBERON:0013587 fused metacarpal bones 3 and 4 9 4119 -UBERON:0012268 equine forelimb splint bone 8 4120 -UBERON:0005897 manus bone 7 4121 -UBERON:0001435 carpal bone 8 4122 -UBERON:0001480 proximal carpal bone 9 4123 -UBERON:0001427 radiale 10 4124 -UBERON:0001428 intermedium 10 4125 -UBERON:0001429 pisiform 10 4126 -UBERON:0002445 ulnare 10 4127 -UBERON:0007960 scapholunate 10 4128 -UBERON:0012124 avian scapholunar bone 10 4129 -UBERON:0001481 distal carpal bone 9 4130 -UBERON:0001430 distal carpal bone 1 10 4131 -UBERON:0001431 distal carpal bone 2 10 4132 -UBERON:0001432 distal carpal bone 3 10 4133 -UBERON:0001433 distal carpal bone 4 10 4134 -UBERON:0010726 os vesalianum manus 10 4135 -UBERON:0010739 distal carpal bone 5 10 4136 -UBERON:0012290 fused carpal bones 2 and 3 10 4137 -UBERON:3000965 basale commune (carpal) 10 4138 -UBERON:0007958 central carpal bone 9 4139 -UBERON:0007959 falciform carpal bone 9 4140 -UBERON:0008257 radial sesamoid 9 4141 -UBERON:3010060 centrale (fore) 9 4142 -UBERON:4200180 semilunate carpal 9 4143 -UBERON:0007997 sesamoid bone of manus 8 4144 -UBERON:0001429 pisiform 9 4145 -UBERON:0007991 proximal sesamoid bone of manus 9 4146 -UBERON:0008257 radial sesamoid 9 4147 -UBERON:0011205 carpometacarpus 8 4148 -UBERON:0012358 manual digitopodium bone 8 4149 -UBERON:0002374 metacarpal bone 9 4150 -UBERON:0003645 metacarpal bone of digit 1 10 4151 -UBERON:0003646 metacarpal bone of digit 2 10 4152 -UBERON:0003647 metacarpal bone of digit 3 10 4153 -UBERON:0003648 metacarpal bone of digit 4 10 4154 -UBERON:0003649 metacarpal bone of digit 5 10 4155 -UBERON:0013587 fused metacarpal bones 3 and 4 10 4156 -UBERON:0004249 manual digit bone 9 4157 -UBERON:0001436 phalanx of manus 10 4158 -UBERON:0002234 proximal phalanx of manus 11 4159 -UBERON:0004328 proximal phalanx of manual digit 2 12 4160 -UBERON:0004329 proximal phalanx of manual digit 3 12 4161 -UBERON:0004330 proximal phalanx of manual digit 4 12 4162 -UBERON:0004331 proximal phalanx of manual digit 5 12 4163 -UBERON:0004338 proximal phalanx of manual digit 1 12 4164 -UBERON:0003620 manual digit 1 phalanx 11 4165 -UBERON:0004337 distal phalanx of manual digit 1 12 4166 -UBERON:0004338 proximal phalanx of manual digit 1 12 4167 -UBERON:4200219 middle phalanx of manual digit 1 12 4168 -UBERON:0003636 manual digit 2 phalanx 11 4169 -UBERON:0004311 distal phalanx of manual digit 2 12 4170 -UBERON:0004320 middle phalanx of manual digit 2 12 4171 -UBERON:0004328 proximal phalanx of manual digit 2 12 4172 -UBERON:0003637 manual digit 3 phalanx 11 4173 -UBERON:0004312 distal phalanx of manual digit 3 12 4174 -UBERON:0004321 middle phalanx of manual digit 3 12 4175 -UBERON:0004329 proximal phalanx of manual digit 3 12 4176 -UBERON:0003638 manual digit 4 phalanx 11 4177 -UBERON:0004313 distal phalanx of manual digit 4 12 4178 -UBERON:0004322 middle phalanx of manual digit 4 12 4179 -UBERON:0004330 proximal phalanx of manual digit 4 12 4180 -UBERON:0003639 manual digit 5 phalanx 11 4181 -UBERON:0004314 distal phalanx of manual digit 5 12 4182 -UBERON:0004323 middle phalanx of manual digit 5 12 4183 -UBERON:0004331 proximal phalanx of manual digit 5 12 4184 -UBERON:0003864 middle phalanx of manus 11 4185 -UBERON:0004320 middle phalanx of manual digit 2 12 4186 -UBERON:0004321 middle phalanx of manual digit 3 12 4187 -UBERON:0004322 middle phalanx of manual digit 4 12 4188 -UBERON:0004323 middle phalanx of manual digit 5 12 4189 -UBERON:4200219 middle phalanx of manual digit 1 12 4190 -UBERON:0003865 distal phalanx of manus 11 4191 -UBERON:0004311 distal phalanx of manual digit 2 12 4192 -UBERON:0004312 distal phalanx of manual digit 3 12 4193 -UBERON:0004313 distal phalanx of manual digit 4 12 4194 -UBERON:0004314 distal phalanx of manual digit 5 12 4195 -UBERON:0004337 distal phalanx of manual digit 1 12 4196 -UBERON:0007991 proximal sesamoid bone of manus 10 4197 -UBERON:3000856 intercalary element of fore digit 10 4198 -UBERON:0012268 equine forelimb splint bone 9 4199 -UBERON:4200116 pteroid 7 4200 -UBERON:0011250 autopod bone 6 4201 -UBERON:0003656 mesopodium bone 7 4202 -UBERON:0001435 carpal bone 8 4203 -UBERON:0001480 proximal carpal bone 9 4204 -UBERON:0001427 radiale 10 4205 -UBERON:0001428 intermedium 10 4206 -UBERON:0001429 pisiform 10 4207 -UBERON:0002445 ulnare 10 4208 -UBERON:0007960 scapholunate 10 4209 -UBERON:0012124 avian scapholunar bone 10 4210 -UBERON:0001481 distal carpal bone 9 4211 -UBERON:0001430 distal carpal bone 1 10 4212 -UBERON:0001431 distal carpal bone 2 10 4213 -UBERON:0001432 distal carpal bone 3 10 4214 -UBERON:0001433 distal carpal bone 4 10 4215 -UBERON:0010726 os vesalianum manus 10 4216 -UBERON:0010739 distal carpal bone 5 10 4217 -UBERON:0012290 fused carpal bones 2 and 3 10 4218 -UBERON:3000965 basale commune (carpal) 10 4219 -UBERON:0007958 central carpal bone 9 4220 -UBERON:0007959 falciform carpal bone 9 4221 -UBERON:0008257 radial sesamoid 9 4222 -UBERON:3010060 centrale (fore) 9 4223 -UBERON:4200180 semilunate carpal 9 4224 -UBERON:0001447 tarsal bone 8 4225 -UBERON:0001451 navicular bone of pes 9 4226 -UBERON:0006836 medial tibial tarsal bone 9 4227 -UBERON:0010721 distal tarsal bone 9 4228 -UBERON:0001452 distal tarsal bone 1 10 4229 -UBERON:0001453 distal tarsal bone 2 10 4230 -UBERON:0001454 distal tarsal bone 3 10 4231 -UBERON:0001455 cuboid bone 10 4232 -UBERON:0010723 os vesalianum pedis 10 4233 -UBERON:0010737 distal tarsal bone 4 10 4234 -UBERON:0010738 distal tarsal bone 5 10 4235 -UBERON:0012289 fused tarsal bones 2 and 3 10 4236 -UBERON:0013649 fused tarsal bones 1 and 2 10 4237 -UBERON:3001002 basale commune (tarsal) 10 4238 -UBERON:0011679 proximal tarsal bone 9 4239 -UBERON:0001450 calcaneus 10 4240 -UBERON:0002395 talus 10 4241 -UBERON:0011678 hindlimb intermedium bone 10 4242 -UBERON:0012126 fibulare 10 4243 -UBERON:0012288 centroquartal bone 9 4244 -UBERON:3010045 centrale 1 9 4245 -UBERON:3010073 centrale 2 9 4246 -UBERON:4200011 pedal centrale 9 4247 -UBERON:4200152 intertarsale sesamoid 9 4248 -UBERON:0012131 centrale 8 4249 -UBERON:0001451 navicular bone of pes 9 4250 -UBERON:0007958 central carpal bone 9 4251 -UBERON:3010045 centrale 1 9 4252 -UBERON:3010060 centrale (fore) 9 4253 -UBERON:3010073 centrale 2 9 4254 -UBERON:4200011 pedal centrale 9 4255 -UBERON:4200083 postaxial centrale 9 4256 -UBERON:4200084 preaxial centrale 9 4257 -UBERON:0014395 proximal mesopodial bone 8 4258 -UBERON:0001480 proximal carpal bone 9 4259 -UBERON:0001427 radiale 10 4260 -UBERON:0001428 intermedium 10 4261 -UBERON:0001429 pisiform 10 4262 -UBERON:0002445 ulnare 10 4263 -UBERON:0007960 scapholunate 10 4264 -UBERON:0012124 avian scapholunar bone 10 4265 -UBERON:0011679 proximal tarsal bone 9 4266 -UBERON:0001450 calcaneus 10 4267 -UBERON:0002395 talus 10 4268 -UBERON:0011678 hindlimb intermedium bone 10 4269 -UBERON:0012126 fibulare 10 4270 -UBERON:0018102 distal mesopodial bone 8 4271 -UBERON:0001481 distal carpal bone 9 4272 -UBERON:0001430 distal carpal bone 1 10 4273 -UBERON:0001431 distal carpal bone 2 10 4274 -UBERON:0001432 distal carpal bone 3 10 4275 -UBERON:0001433 distal carpal bone 4 10 4276 -UBERON:0010726 os vesalianum manus 10 4277 -UBERON:0010739 distal carpal bone 5 10 4278 -UBERON:0012290 fused carpal bones 2 and 3 10 4279 -UBERON:3000965 basale commune (carpal) 10 4280 -UBERON:0010721 distal tarsal bone 9 4281 -UBERON:0001452 distal tarsal bone 1 10 4282 -UBERON:0001453 distal tarsal bone 2 10 4283 -UBERON:0001454 distal tarsal bone 3 10 4284 -UBERON:0001455 cuboid bone 10 4285 -UBERON:0010723 os vesalianum pedis 10 4286 -UBERON:0010737 distal tarsal bone 4 10 4287 -UBERON:0010738 distal tarsal bone 5 10 4288 -UBERON:0012289 fused tarsal bones 2 and 3 10 4289 -UBERON:0013649 fused tarsal bones 1 and 2 10 4290 -UBERON:3001002 basale commune (tarsal) 10 4291 -UBERON:0005897 manus bone 7 4292 -UBERON:0001435 carpal bone 8 4293 -UBERON:0001480 proximal carpal bone 9 4294 -UBERON:0001427 radiale 10 4295 -UBERON:0001428 intermedium 10 4296 -UBERON:0001429 pisiform 10 4297 -UBERON:0002445 ulnare 10 4298 -UBERON:0007960 scapholunate 10 4299 -UBERON:0012124 avian scapholunar bone 10 4300 -UBERON:0001481 distal carpal bone 9 4301 -UBERON:0001430 distal carpal bone 1 10 4302 -UBERON:0001431 distal carpal bone 2 10 4303 -UBERON:0001432 distal carpal bone 3 10 4304 -UBERON:0001433 distal carpal bone 4 10 4305 -UBERON:0010726 os vesalianum manus 10 4306 -UBERON:0010739 distal carpal bone 5 10 4307 -UBERON:0012290 fused carpal bones 2 and 3 10 4308 -UBERON:3000965 basale commune (carpal) 10 4309 -UBERON:0007958 central carpal bone 9 4310 -UBERON:0007959 falciform carpal bone 9 4311 -UBERON:0008257 radial sesamoid 9 4312 -UBERON:3010060 centrale (fore) 9 4313 -UBERON:4200180 semilunate carpal 9 4314 -UBERON:0007997 sesamoid bone of manus 8 4315 -UBERON:0001429 pisiform 9 4316 -UBERON:0007991 proximal sesamoid bone of manus 9 4317 -UBERON:0008257 radial sesamoid 9 4318 -UBERON:0011205 carpometacarpus 8 4319 -UBERON:0012358 manual digitopodium bone 8 4320 -UBERON:0002374 metacarpal bone 9 4321 -UBERON:0003645 metacarpal bone of digit 1 10 4322 -UBERON:0003646 metacarpal bone of digit 2 10 4323 -UBERON:0003647 metacarpal bone of digit 3 10 4324 -UBERON:0003648 metacarpal bone of digit 4 10 4325 -UBERON:0003649 metacarpal bone of digit 5 10 4326 -UBERON:0013587 fused metacarpal bones 3 and 4 10 4327 -UBERON:0004249 manual digit bone 9 4328 -UBERON:0001436 phalanx of manus 10 4329 -UBERON:0002234 proximal phalanx of manus 11 4330 -UBERON:0004328 proximal phalanx of manual digit 2 12 4331 -UBERON:0004329 proximal phalanx of manual digit 3 12 4332 -UBERON:0004330 proximal phalanx of manual digit 4 12 4333 -UBERON:0004331 proximal phalanx of manual digit 5 12 4334 -UBERON:0004338 proximal phalanx of manual digit 1 12 4335 -UBERON:0003620 manual digit 1 phalanx 11 4336 -UBERON:0004337 distal phalanx of manual digit 1 12 4337 -UBERON:0004338 proximal phalanx of manual digit 1 12 4338 -UBERON:4200219 middle phalanx of manual digit 1 12 4339 -UBERON:0003636 manual digit 2 phalanx 11 4340 -UBERON:0004311 distal phalanx of manual digit 2 12 4341 -UBERON:0004320 middle phalanx of manual digit 2 12 4342 -UBERON:0004328 proximal phalanx of manual digit 2 12 4343 -UBERON:0003637 manual digit 3 phalanx 11 4344 -UBERON:0004312 distal phalanx of manual digit 3 12 4345 -UBERON:0004321 middle phalanx of manual digit 3 12 4346 -UBERON:0004329 proximal phalanx of manual digit 3 12 4347 -UBERON:0003638 manual digit 4 phalanx 11 4348 -UBERON:0004313 distal phalanx of manual digit 4 12 4349 -UBERON:0004322 middle phalanx of manual digit 4 12 4350 -UBERON:0004330 proximal phalanx of manual digit 4 12 4351 -UBERON:0003639 manual digit 5 phalanx 11 4352 -UBERON:0004314 distal phalanx of manual digit 5 12 4353 -UBERON:0004323 middle phalanx of manual digit 5 12 4354 -UBERON:0004331 proximal phalanx of manual digit 5 12 4355 -UBERON:0003864 middle phalanx of manus 11 4356 -UBERON:0004320 middle phalanx of manual digit 2 12 4357 -UBERON:0004321 middle phalanx of manual digit 3 12 4358 -UBERON:0004322 middle phalanx of manual digit 4 12 4359 -UBERON:0004323 middle phalanx of manual digit 5 12 4360 -UBERON:4200219 middle phalanx of manual digit 1 12 4361 -UBERON:0003865 distal phalanx of manus 11 4362 -UBERON:0004311 distal phalanx of manual digit 2 12 4363 -UBERON:0004312 distal phalanx of manual digit 3 12 4364 -UBERON:0004313 distal phalanx of manual digit 4 12 4365 -UBERON:0004314 distal phalanx of manual digit 5 12 4366 -UBERON:0004337 distal phalanx of manual digit 1 12 4367 -UBERON:0007991 proximal sesamoid bone of manus 10 4368 -UBERON:3000856 intercalary element of fore digit 10 4369 -UBERON:0012268 equine forelimb splint bone 9 4370 -UBERON:0005899 pes bone 7 4371 -UBERON:0001447 tarsal bone 8 4372 -UBERON:0001451 navicular bone of pes 9 4373 -UBERON:0006836 medial tibial tarsal bone 9 4374 -UBERON:0010721 distal tarsal bone 9 4375 -UBERON:0001452 distal tarsal bone 1 10 4376 -UBERON:0001453 distal tarsal bone 2 10 4377 -UBERON:0001454 distal tarsal bone 3 10 4378 -UBERON:0001455 cuboid bone 10 4379 -UBERON:0010723 os vesalianum pedis 10 4380 -UBERON:0010737 distal tarsal bone 4 10 4381 -UBERON:0010738 distal tarsal bone 5 10 4382 -UBERON:0012289 fused tarsal bones 2 and 3 10 4383 -UBERON:0013649 fused tarsal bones 1 and 2 10 4384 -UBERON:3001002 basale commune (tarsal) 10 4385 -UBERON:0011679 proximal tarsal bone 9 4386 -UBERON:0001450 calcaneus 10 4387 -UBERON:0002395 talus 10 4388 -UBERON:0011678 hindlimb intermedium bone 10 4389 -UBERON:0012126 fibulare 10 4390 -UBERON:0012288 centroquartal bone 9 4391 -UBERON:3010045 centrale 1 9 4392 -UBERON:3010073 centrale 2 9 4393 -UBERON:4200011 pedal centrale 9 4394 -UBERON:4200152 intertarsale sesamoid 9 4395 -UBERON:0008000 sesamoid bone of pes 8 4396 -UBERON:0007990 proximal sesamoid bone of pes 9 4397 -UBERON:4200152 intertarsale sesamoid 9 4398 -UBERON:0008195 tarsometatarsus 8 4399 -UBERON:0010725 accessory navicular bone 8 4400 -UBERON:0012359 pedal digitopodium bone 8 4401 -UBERON:0001448 metatarsal bone 9 4402 -UBERON:0003650 metatarsal bone of digit 1 10 4403 -UBERON:0003651 metatarsal bone of digit 2 10 4404 -UBERON:0003652 metatarsal bone of digit 3 10 4405 -UBERON:0003653 metatarsal bone of digit 4 10 4406 -UBERON:0003654 metatarsal bone of digit 5 10 4407 -UBERON:0013588 fused metatarsal bones 3 and 4 10 4408 -UBERON:0014763 fused metatarsal bones 2-4 11 4409 -UBERON:4200153 metatarsal bone of digit 6 10 4410 -UBERON:4200157 metatarsal bone of digit 7 10 4411 -UBERON:4200158 metatarsal bone of digit 8 10 4412 -UBERON:0004248 pedal digit bone 9 4413 -UBERON:0001449 phalanx of pes 10 4414 -UBERON:0003640 pedal digit 1 phalanx 11 4415 -UBERON:0004315 distal phalanx of pedal digit 1 12 4416 -UBERON:0004332 proximal phalanx of pedal digit 1 12 4417 -UBERON:0003641 pedal digit 2 phalanx 11 4418 -UBERON:0004316 distal phalanx of pedal digit 2 12 4419 -UBERON:0004324 middle phalanx of pedal digit 2 12 4420 -UBERON:0004333 proximal phalanx of pedal digit 2 12 4421 -UBERON:0003642 pedal digit 3 phalanx 11 4422 -UBERON:0004317 distal phalanx of pedal digit 3 12 4423 -UBERON:0004325 middle phalanx of pedal digit 3 12 4424 -UBERON:0004334 proximal phalanx of pedal digit 3 12 4425 -UBERON:0003862 pedal digit 4 phalanx 11 4426 -UBERON:0004318 distal phalanx of pedal digit 4 12 4427 -UBERON:0004326 middle phalanx of pedal digit 4 12 4428 -UBERON:0004335 proximal phalanx of pedal digit 4 12 4429 -UBERON:0003863 pedal digit 5 phalanx 11 4430 -UBERON:0004319 distal phalanx of pedal digit 5 12 4431 -UBERON:0004327 middle phalanx of pedal digit 5 12 4432 -UBERON:0004336 proximal phalanx of pedal digit 5 12 4433 -UBERON:0003866 middle phalanx of pes 11 4434 -UBERON:0004324 middle phalanx of pedal digit 2 12 4435 -UBERON:0004325 middle phalanx of pedal digit 3 12 4436 -UBERON:0004326 middle phalanx of pedal digit 4 12 4437 -UBERON:0004327 middle phalanx of pedal digit 5 12 4438 -UBERON:0003867 distal phalanx of pes 11 4439 -UBERON:0004315 distal phalanx of pedal digit 1 12 4440 -UBERON:0004316 distal phalanx of pedal digit 2 12 4441 -UBERON:0004317 distal phalanx of pedal digit 3 12 4442 -UBERON:0004318 distal phalanx of pedal digit 4 12 4443 -UBERON:0004319 distal phalanx of pedal digit 5 12 4444 -UBERON:0003868 proximal phalanx of pes 11 4445 -UBERON:0004332 proximal phalanx of pedal digit 1 12 4446 -UBERON:0004333 proximal phalanx of pedal digit 2 12 4447 -UBERON:0004334 proximal phalanx of pedal digit 3 12 4448 -UBERON:0004335 proximal phalanx of pedal digit 4 12 4449 -UBERON:0004336 proximal phalanx of pedal digit 5 12 4450 -UBERON:4100009 pedal digit 7 phalanx 11 4451 -UBERON:0007990 proximal sesamoid bone of pes 10 4452 -UBERON:3000931 intercalary element of hind digit 10 4453 -UBERON:3010675 bony nodule of terminal phalanx of hind digit 10 4454 -UBERON:0012269 equine hindlimb splint bone 9 4455 -UBERON:0010759 equine distal sesamoid 7 4456 -UBERON:0012357 digitopodium bone 7 4457 -UBERON:0003221 phalanx 8 4458 -UBERON:0001436 phalanx of manus 9 4459 -UBERON:0002234 proximal phalanx of manus 10 4460 -UBERON:0004328 proximal phalanx of manual digit 2 11 4461 -UBERON:0004329 proximal phalanx of manual digit 3 11 4462 -UBERON:0004330 proximal phalanx of manual digit 4 11 4463 -UBERON:0004331 proximal phalanx of manual digit 5 11 4464 -UBERON:0004338 proximal phalanx of manual digit 1 11 4465 -UBERON:0003620 manual digit 1 phalanx 10 4466 -UBERON:0004337 distal phalanx of manual digit 1 11 4467 -UBERON:0004338 proximal phalanx of manual digit 1 11 4468 -UBERON:4200219 middle phalanx of manual digit 1 11 4469 -UBERON:0003636 manual digit 2 phalanx 10 4470 -UBERON:0004311 distal phalanx of manual digit 2 11 4471 -UBERON:0004320 middle phalanx of manual digit 2 11 4472 -UBERON:0004328 proximal phalanx of manual digit 2 11 4473 -UBERON:0003637 manual digit 3 phalanx 10 4474 -UBERON:0004312 distal phalanx of manual digit 3 11 4475 -UBERON:0004321 middle phalanx of manual digit 3 11 4476 -UBERON:0004329 proximal phalanx of manual digit 3 11 4477 -UBERON:0003638 manual digit 4 phalanx 10 4478 -UBERON:0004313 distal phalanx of manual digit 4 11 4479 -UBERON:0004322 middle phalanx of manual digit 4 11 4480 -UBERON:0004330 proximal phalanx of manual digit 4 11 4481 -UBERON:0003639 manual digit 5 phalanx 10 4482 -UBERON:0004314 distal phalanx of manual digit 5 11 4483 -UBERON:0004323 middle phalanx of manual digit 5 11 4484 -UBERON:0004331 proximal phalanx of manual digit 5 11 4485 -UBERON:0003864 middle phalanx of manus 10 4486 -UBERON:0004320 middle phalanx of manual digit 2 11 4487 -UBERON:0004321 middle phalanx of manual digit 3 11 4488 -UBERON:0004322 middle phalanx of manual digit 4 11 4489 -UBERON:0004323 middle phalanx of manual digit 5 11 4490 -UBERON:4200219 middle phalanx of manual digit 1 11 4491 -UBERON:0003865 distal phalanx of manus 10 4492 -UBERON:0004311 distal phalanx of manual digit 2 11 4493 -UBERON:0004312 distal phalanx of manual digit 3 11 4494 -UBERON:0004313 distal phalanx of manual digit 4 11 4495 -UBERON:0004314 distal phalanx of manual digit 5 11 4496 -UBERON:0004337 distal phalanx of manual digit 1 11 4497 -UBERON:0001449 phalanx of pes 9 4498 -UBERON:0003640 pedal digit 1 phalanx 10 4499 -UBERON:0004315 distal phalanx of pedal digit 1 11 4500 -UBERON:0004332 proximal phalanx of pedal digit 1 11 4501 -UBERON:0003641 pedal digit 2 phalanx 10 4502 -UBERON:0004316 distal phalanx of pedal digit 2 11 4503 -UBERON:0004324 middle phalanx of pedal digit 2 11 4504 -UBERON:0004333 proximal phalanx of pedal digit 2 11 4505 -UBERON:0003642 pedal digit 3 phalanx 10 4506 -UBERON:0004317 distal phalanx of pedal digit 3 11 4507 -UBERON:0004325 middle phalanx of pedal digit 3 11 4508 -UBERON:0004334 proximal phalanx of pedal digit 3 11 4509 -UBERON:0003862 pedal digit 4 phalanx 10 4510 -UBERON:0004318 distal phalanx of pedal digit 4 11 4511 -UBERON:0004326 middle phalanx of pedal digit 4 11 4512 -UBERON:0004335 proximal phalanx of pedal digit 4 11 4513 -UBERON:0003863 pedal digit 5 phalanx 10 4514 -UBERON:0004319 distal phalanx of pedal digit 5 11 4515 -UBERON:0004327 middle phalanx of pedal digit 5 11 4516 -UBERON:0004336 proximal phalanx of pedal digit 5 11 4517 -UBERON:0003866 middle phalanx of pes 10 4518 -UBERON:0004324 middle phalanx of pedal digit 2 11 4519 -UBERON:0004325 middle phalanx of pedal digit 3 11 4520 -UBERON:0004326 middle phalanx of pedal digit 4 11 4521 -UBERON:0004327 middle phalanx of pedal digit 5 11 4522 -UBERON:0003867 distal phalanx of pes 10 4523 -UBERON:0004315 distal phalanx of pedal digit 1 11 4524 -UBERON:0004316 distal phalanx of pedal digit 2 11 4525 -UBERON:0004317 distal phalanx of pedal digit 3 11 4526 -UBERON:0004318 distal phalanx of pedal digit 4 11 4527 -UBERON:0004319 distal phalanx of pedal digit 5 11 4528 -UBERON:0003868 proximal phalanx of pes 10 4529 -UBERON:0004332 proximal phalanx of pedal digit 1 11 4530 -UBERON:0004333 proximal phalanx of pedal digit 2 11 4531 -UBERON:0004334 proximal phalanx of pedal digit 3 11 4532 -UBERON:0004335 proximal phalanx of pedal digit 4 11 4533 -UBERON:0004336 proximal phalanx of pedal digit 5 11 4534 -UBERON:4100009 pedal digit 7 phalanx 10 4535 -UBERON:0004300 distal phalanx 9 4536 -UBERON:0003865 distal phalanx of manus 10 4537 -UBERON:0004311 distal phalanx of manual digit 2 11 4538 -UBERON:0004312 distal phalanx of manual digit 3 11 4539 -UBERON:0004313 distal phalanx of manual digit 4 11 4540 -UBERON:0004314 distal phalanx of manual digit 5 11 4541 -UBERON:0004337 distal phalanx of manual digit 1 11 4542 -UBERON:0003867 distal phalanx of pes 10 4543 -UBERON:0004315 distal phalanx of pedal digit 1 11 4544 -UBERON:0004316 distal phalanx of pedal digit 2 11 4545 -UBERON:0004317 distal phalanx of pedal digit 3 11 4546 -UBERON:0004318 distal phalanx of pedal digit 4 11 4547 -UBERON:0004319 distal phalanx of pedal digit 5 11 4548 -UBERON:0014483 distal phalanx of digit 1 10 4549 -UBERON:0004315 distal phalanx of pedal digit 1 11 4550 -UBERON:0004337 distal phalanx of manual digit 1 11 4551 -UBERON:0014484 distal phalanx of digit 2 10 4552 -UBERON:0004311 distal phalanx of manual digit 2 11 4553 -UBERON:0004316 distal phalanx of pedal digit 2 11 4554 -UBERON:0014485 distal phalanx of digit 3 10 4555 -UBERON:0004312 distal phalanx of manual digit 3 11 4556 -UBERON:0004317 distal phalanx of pedal digit 3 11 4557 -UBERON:0014486 distal phalanx of digit 4 10 4558 -UBERON:0004313 distal phalanx of manual digit 4 11 4559 -UBERON:0004318 distal phalanx of pedal digit 4 11 4560 -UBERON:0014487 distal phalanx of digit 5 10 4561 -UBERON:0004314 distal phalanx of manual digit 5 11 4562 -UBERON:0004319 distal phalanx of pedal digit 5 11 4563 -UBERON:3010746 T-shaped terminal phalanx 10 4564 -UBERON:0004301 middle phalanx 9 4565 -UBERON:0003864 middle phalanx of manus 10 4566 -UBERON:0004320 middle phalanx of manual digit 2 11 4567 -UBERON:0004321 middle phalanx of manual digit 3 11 4568 -UBERON:0004322 middle phalanx of manual digit 4 11 4569 -UBERON:0004323 middle phalanx of manual digit 5 11 4570 -UBERON:4200219 middle phalanx of manual digit 1 11 4571 -UBERON:0003866 middle phalanx of pes 10 4572 -UBERON:0004324 middle phalanx of pedal digit 2 11 4573 -UBERON:0004325 middle phalanx of pedal digit 3 11 4574 -UBERON:0004326 middle phalanx of pedal digit 4 11 4575 -UBERON:0004327 middle phalanx of pedal digit 5 11 4576 -UBERON:0014488 middle phalanx of digit 2 10 4577 -UBERON:0004320 middle phalanx of manual digit 2 11 4578 -UBERON:0004324 middle phalanx of pedal digit 2 11 4579 -UBERON:0014489 middle phalanx of digit 3 10 4580 -UBERON:0004321 middle phalanx of manual digit 3 11 4581 -UBERON:0004325 middle phalanx of pedal digit 3 11 4582 -UBERON:0009555 short pastern bone 11 4583 -UBERON:0014490 middle phalanx of digit 4 10 4584 -UBERON:0004322 middle phalanx of manual digit 4 11 4585 -UBERON:0004326 middle phalanx of pedal digit 4 11 4586 -UBERON:0014491 middle phalanx of digit 5 10 4587 -UBERON:0004323 middle phalanx of manual digit 5 11 4588 -UBERON:0004327 middle phalanx of pedal digit 5 11 4589 -UBERON:0004302 proximal phalanx 9 4590 -UBERON:0002234 proximal phalanx of manus 10 4591 -UBERON:0004328 proximal phalanx of manual digit 2 11 4592 -UBERON:0004329 proximal phalanx of manual digit 3 11 4593 -UBERON:0004330 proximal phalanx of manual digit 4 11 4594 -UBERON:0004331 proximal phalanx of manual digit 5 11 4595 -UBERON:0004338 proximal phalanx of manual digit 1 11 4596 -UBERON:0003868 proximal phalanx of pes 10 4597 -UBERON:0004332 proximal phalanx of pedal digit 1 11 4598 -UBERON:0004333 proximal phalanx of pedal digit 2 11 4599 -UBERON:0004334 proximal phalanx of pedal digit 3 11 4600 -UBERON:0004335 proximal phalanx of pedal digit 4 11 4601 -UBERON:0004336 proximal phalanx of pedal digit 5 11 4602 -UBERON:0014501 proximal phalanx of digit 1 10 4603 -UBERON:0004332 proximal phalanx of pedal digit 1 11 4604 -UBERON:0004338 proximal phalanx of manual digit 1 11 4605 -UBERON:0014502 proximal phalanx of digit 2 10 4606 -UBERON:0004328 proximal phalanx of manual digit 2 11 4607 -UBERON:0004333 proximal phalanx of pedal digit 2 11 4608 -UBERON:0014503 proximal phalanx of digit 3 10 4609 -UBERON:0004329 proximal phalanx of manual digit 3 11 4610 -UBERON:0004334 proximal phalanx of pedal digit 3 11 4611 -UBERON:0009556 long pastern bone 11 4612 -UBERON:0014504 proximal phalanx of digit 4 10 4613 -UBERON:0004330 proximal phalanx of manual digit 4 11 4614 -UBERON:0004335 proximal phalanx of pedal digit 4 11 4615 -UBERON:0014505 proximal phalanx of digit 5 10 4616 -UBERON:0004331 proximal phalanx of manual digit 5 11 4617 -UBERON:0004336 proximal phalanx of pedal digit 5 11 4618 -UBERON:0009558 pastern bone 9 4619 -UBERON:0009555 short pastern bone 10 4620 -UBERON:0009556 long pastern bone 10 4621 -UBERON:0018266 third phalanx 9 4622 -UBERON:0018322 fourth phalanx 9 4623 -UBERON:4100005 second phalanx 9 4624 -UBERON:0003821 metapodium bone 8 4625 -UBERON:0001448 metatarsal bone 9 4626 -UBERON:0003650 metatarsal bone of digit 1 10 4627 -UBERON:0003651 metatarsal bone of digit 2 10 4628 -UBERON:0003652 metatarsal bone of digit 3 10 4629 -UBERON:0003653 metatarsal bone of digit 4 10 4630 -UBERON:0003654 metatarsal bone of digit 5 10 4631 -UBERON:0013588 fused metatarsal bones 3 and 4 10 4632 -UBERON:0014763 fused metatarsal bones 2-4 11 4633 -UBERON:4200153 metatarsal bone of digit 6 10 4634 -UBERON:4200157 metatarsal bone of digit 7 10 4635 -UBERON:4200158 metatarsal bone of digit 8 10 4636 -UBERON:0002374 metacarpal bone 9 4637 -UBERON:0003645 metacarpal bone of digit 1 10 4638 -UBERON:0003646 metacarpal bone of digit 2 10 4639 -UBERON:0003647 metacarpal bone of digit 3 10 4640 -UBERON:0003648 metacarpal bone of digit 4 10 4641 -UBERON:0003649 metacarpal bone of digit 5 10 4642 -UBERON:0013587 fused metacarpal bones 3 and 4 10 4643 -UBERON:0012267 equine splint bone 9 4644 -UBERON:0012268 equine forelimb splint bone 10 4645 -UBERON:0012269 equine hindlimb splint bone 10 4646 -UBERON:0013581 metapodium bone 1 9 4647 -UBERON:0003645 metacarpal bone of digit 1 10 4648 -UBERON:0003650 metatarsal bone of digit 1 10 4649 -UBERON:0013582 metapodium bone 2 9 4650 -UBERON:0003646 metacarpal bone of digit 2 10 4651 -UBERON:0003651 metatarsal bone of digit 2 10 4652 -UBERON:0013583 metapodium bone 3 9 4653 -UBERON:0003647 metacarpal bone of digit 3 10 4654 -UBERON:0003652 metatarsal bone of digit 3 10 4655 -UBERON:0013584 metapodium bone 4 9 4656 -UBERON:0003648 metacarpal bone of digit 4 10 4657 -UBERON:0003653 metatarsal bone of digit 4 10 4658 -UBERON:0013585 metapodium bone 5 9 4659 -UBERON:0003649 metacarpal bone of digit 5 10 4660 -UBERON:0003654 metatarsal bone of digit 5 10 4661 -UBERON:0013586 fused metapodial bones 3 and 4 9 4662 -UBERON:0013587 fused metacarpal bones 3 and 4 10 4663 -UBERON:0013588 fused metatarsal bones 3 and 4 10 4664 -UBERON:0014763 fused metatarsal bones 2-4 11 4665 -UBERON:0014762 fused metapodial bones 2-4 10 4666 -UBERON:0014763 fused metatarsal bones 2-4 11 4667 -UBERON:4200154 metapodium bone 6 9 4668 -UBERON:4200153 metatarsal bone of digit 6 10 4669 -UBERON:4200155 metapodium bone 7 9 4670 -UBERON:4200157 metatarsal bone of digit 7 10 4671 -UBERON:4200156 metapodium bone 8 9 4672 -UBERON:4200158 metatarsal bone of digit 8 10 4673 -UBERON:0012358 manual digitopodium bone 8 4674 -UBERON:0002374 metacarpal bone 9 4675 -UBERON:0003645 metacarpal bone of digit 1 10 4676 -UBERON:0003646 metacarpal bone of digit 2 10 4677 -UBERON:0003647 metacarpal bone of digit 3 10 4678 -UBERON:0003648 metacarpal bone of digit 4 10 4679 -UBERON:0003649 metacarpal bone of digit 5 10 4680 -UBERON:0013587 fused metacarpal bones 3 and 4 10 4681 -UBERON:0004249 manual digit bone 9 4682 -UBERON:0001436 phalanx of manus 10 4683 -UBERON:0002234 proximal phalanx of manus 11 4684 -UBERON:0004328 proximal phalanx of manual digit 2 12 4685 -UBERON:0004329 proximal phalanx of manual digit 3 12 4686 -UBERON:0004330 proximal phalanx of manual digit 4 12 4687 -UBERON:0004331 proximal phalanx of manual digit 5 12 4688 -UBERON:0004338 proximal phalanx of manual digit 1 12 4689 -UBERON:0003620 manual digit 1 phalanx 11 4690 -UBERON:0004337 distal phalanx of manual digit 1 12 4691 -UBERON:0004338 proximal phalanx of manual digit 1 12 4692 -UBERON:4200219 middle phalanx of manual digit 1 12 4693 -UBERON:0003636 manual digit 2 phalanx 11 4694 -UBERON:0004311 distal phalanx of manual digit 2 12 4695 -UBERON:0004320 middle phalanx of manual digit 2 12 4696 -UBERON:0004328 proximal phalanx of manual digit 2 12 4697 -UBERON:0003637 manual digit 3 phalanx 11 4698 -UBERON:0004312 distal phalanx of manual digit 3 12 4699 -UBERON:0004321 middle phalanx of manual digit 3 12 4700 -UBERON:0004329 proximal phalanx of manual digit 3 12 4701 -UBERON:0003638 manual digit 4 phalanx 11 4702 -UBERON:0004313 distal phalanx of manual digit 4 12 4703 -UBERON:0004322 middle phalanx of manual digit 4 12 4704 -UBERON:0004330 proximal phalanx of manual digit 4 12 4705 -UBERON:0003639 manual digit 5 phalanx 11 4706 -UBERON:0004314 distal phalanx of manual digit 5 12 4707 -UBERON:0004323 middle phalanx of manual digit 5 12 4708 -UBERON:0004331 proximal phalanx of manual digit 5 12 4709 -UBERON:0003864 middle phalanx of manus 11 4710 -UBERON:0004320 middle phalanx of manual digit 2 12 4711 -UBERON:0004321 middle phalanx of manual digit 3 12 4712 -UBERON:0004322 middle phalanx of manual digit 4 12 4713 -UBERON:0004323 middle phalanx of manual digit 5 12 4714 -UBERON:4200219 middle phalanx of manual digit 1 12 4715 -UBERON:0003865 distal phalanx of manus 11 4716 -UBERON:0004311 distal phalanx of manual digit 2 12 4717 -UBERON:0004312 distal phalanx of manual digit 3 12 4718 -UBERON:0004313 distal phalanx of manual digit 4 12 4719 -UBERON:0004314 distal phalanx of manual digit 5 12 4720 -UBERON:0004337 distal phalanx of manual digit 1 12 4721 -UBERON:0007991 proximal sesamoid bone of manus 10 4722 -UBERON:3000856 intercalary element of fore digit 10 4723 -UBERON:0012268 equine forelimb splint bone 9 4724 -UBERON:0012359 pedal digitopodium bone 8 4725 -UBERON:0001448 metatarsal bone 9 4726 -UBERON:0003650 metatarsal bone of digit 1 10 4727 -UBERON:0003651 metatarsal bone of digit 2 10 4728 -UBERON:0003652 metatarsal bone of digit 3 10 4729 -UBERON:0003653 metatarsal bone of digit 4 10 4730 -UBERON:0003654 metatarsal bone of digit 5 10 4731 -UBERON:0013588 fused metatarsal bones 3 and 4 10 4732 -UBERON:0014763 fused metatarsal bones 2-4 11 4733 -UBERON:4200153 metatarsal bone of digit 6 10 4734 -UBERON:4200157 metatarsal bone of digit 7 10 4735 -UBERON:4200158 metatarsal bone of digit 8 10 4736 -UBERON:0004248 pedal digit bone 9 4737 -UBERON:0001449 phalanx of pes 10 4738 -UBERON:0003640 pedal digit 1 phalanx 11 4739 -UBERON:0004315 distal phalanx of pedal digit 1 12 4740 -UBERON:0004332 proximal phalanx of pedal digit 1 12 4741 -UBERON:0003641 pedal digit 2 phalanx 11 4742 -UBERON:0004316 distal phalanx of pedal digit 2 12 4743 -UBERON:0004324 middle phalanx of pedal digit 2 12 4744 -UBERON:0004333 proximal phalanx of pedal digit 2 12 4745 -UBERON:0003642 pedal digit 3 phalanx 11 4746 -UBERON:0004317 distal phalanx of pedal digit 3 12 4747 -UBERON:0004325 middle phalanx of pedal digit 3 12 4748 -UBERON:0004334 proximal phalanx of pedal digit 3 12 4749 -UBERON:0003862 pedal digit 4 phalanx 11 4750 -UBERON:0004318 distal phalanx of pedal digit 4 12 4751 -UBERON:0004326 middle phalanx of pedal digit 4 12 4752 -UBERON:0004335 proximal phalanx of pedal digit 4 12 4753 -UBERON:0003863 pedal digit 5 phalanx 11 4754 -UBERON:0004319 distal phalanx of pedal digit 5 12 4755 -UBERON:0004327 middle phalanx of pedal digit 5 12 4756 -UBERON:0004336 proximal phalanx of pedal digit 5 12 4757 -UBERON:0003866 middle phalanx of pes 11 4758 -UBERON:0004324 middle phalanx of pedal digit 2 12 4759 -UBERON:0004325 middle phalanx of pedal digit 3 12 4760 -UBERON:0004326 middle phalanx of pedal digit 4 12 4761 -UBERON:0004327 middle phalanx of pedal digit 5 12 4762 -UBERON:0003867 distal phalanx of pes 11 4763 -UBERON:0004315 distal phalanx of pedal digit 1 12 4764 -UBERON:0004316 distal phalanx of pedal digit 2 12 4765 -UBERON:0004317 distal phalanx of pedal digit 3 12 4766 -UBERON:0004318 distal phalanx of pedal digit 4 12 4767 -UBERON:0004319 distal phalanx of pedal digit 5 12 4768 -UBERON:0003868 proximal phalanx of pes 11 4769 -UBERON:0004332 proximal phalanx of pedal digit 1 12 4770 -UBERON:0004333 proximal phalanx of pedal digit 2 12 4771 -UBERON:0004334 proximal phalanx of pedal digit 3 12 4772 -UBERON:0004335 proximal phalanx of pedal digit 4 12 4773 -UBERON:0004336 proximal phalanx of pedal digit 5 12 4774 -UBERON:4100009 pedal digit 7 phalanx 11 4775 -UBERON:0007990 proximal sesamoid bone of pes 10 4776 -UBERON:3000931 intercalary element of hind digit 10 4777 -UBERON:3010675 bony nodule of terminal phalanx of hind digit 10 4778 -UBERON:0012269 equine hindlimb splint bone 9 4779 -UBERON:3010624 subarticular sesamoid 8 4780 -UBERON:1500006 paired fin radial bone 5 4781 -UBERON:2000508 pelvic fin radial bone 6 4782 -UBERON:1500008 pelvic fin distal radial bone 7 4783 -UBERON:2001415 pelvic fin distal radial bone 2 8 4784 -UBERON:2001416 pelvic fin distal radial bone 3 8 4785 -UBERON:2001417 pelvic fin distal radial bone 1 8 4786 -UBERON:1500009 pelvic fin basipterygial radial 7 4787 -UBERON:1500010 pelvic fin middle radial bone 7 4788 -UBERON:2001586 pectoral fin radial bone 6 4789 -UBERON:2001587 pectoral fin proximal radial bone 7 4790 -UBERON:2002026 pectoral fin proximal radial bone 1 8 4791 -UBERON:2002027 pectoral fin proximal radial bone 2 8 4792 -UBERON:2002028 pectoral fin proximal radial bone 3 8 4793 -UBERON:2002029 pectoral fin proximal radial bone 4 8 4794 -UBERON:4300087 mesopterygium bone 8 4795 -UBERON:4300088 metapterygium bone 8 4796 -UBERON:4300089 propterygium bone 8 4797 -UBERON:2001588 pectoral fin distal radial bone 7 4798 -UBERON:2002277 pectoral fin distal radial bone 1 8 4799 -UBERON:2002279 pectoral fin distal radial bone 2 8 4800 -UBERON:2002280 pectoral fin distal radial bone 3 8 4801 -UBERON:2001788 pelvic splint 5 4802 -UBERON:2002077 lateropterygium 5 4803 -UBERON:2002086 pelvic axillary process 5 4804 -UBERON:2002087 pectoral axillary process 5 4805 -UBERON:4300155 pectoral splint 5 4806 -UBERON:4440011 paired fin lepidotrichium 5 4807 -UBERON:4000173 pelvic fin lepidotrichium 6 4808 -UBERON:2002270 pelvic fin spine 7 4809 -UBERON:4300117 pelvic fin ray 7 4810 -UBERON:2001776 pelvic fin ray 1 8 4811 -UBERON:2001777 pelvic fin ray 2 8 4812 -UBERON:2001778 pelvic fin ray 3 8 4813 -UBERON:2001779 pelvic fin ray 4 8 4814 -UBERON:2001780 pelvic fin ray 5 8 4815 -UBERON:2001781 pelvic fin ray 6 8 4816 -UBERON:2001782 pelvic fin ray 7 8 4817 -UBERON:4300192 branched pelvic fin ray 8 4818 -UBERON:4500011 unbranched pelvic fin ray 8 4819 -UBERON:4000175 pectoral fin lepidotrichium 6 4820 -UBERON:2001787 pectoral fin spine 7 4821 -UBERON:4500007 pectoral fin ray 7 4822 -UBERON:2001761 pectoral fin ray 1 8 4823 -UBERON:2001762 pectoral fin ray 2 8 4824 -UBERON:2001763 pectoral fin ray 3 8 4825 -UBERON:2001764 pectoral fin ray 4 8 4826 -UBERON:2001765 pectoral fin ray 5 8 4827 -UBERON:2001766 pectoral fin ray 6 8 4828 -UBERON:2001767 pectoral fin ray 7 8 4829 -UBERON:2001993 branched pectoral fin ray 8 4830 -UBERON:4300103 rudimentary pectoral fin ray 8 4831 -UBERON:4500010 unbranched pectoral fin ray 8 4832 -UBERON:4500009 paired fin spine 6 4833 -UBERON:2001787 pectoral fin spine 7 4834 -UBERON:2002270 pelvic fin spine 7 4835 -UBERON:0004382 epiphysis of humerus 4 4836 -UBERON:0004404 distal epiphysis of humerus 5 4837 -UBERON:0004411 proximal epiphysis of humerus 5 4838 -UBERON:0004383 epiphysis of tibia 4 4839 -UBERON:0004405 distal epiphysis of tibia 5 4840 -UBERON:0008772 proximal epiphysis of tibia 5 4841 -UBERON:0004384 epiphysis of femur 4 4842 -UBERON:0004406 distal epiphysis of femur 5 4843 -UBERON:0004412 proximal epiphysis of femur 5 4844 -UBERON:0004385 epiphysis of radius 4 4845 -UBERON:0004407 distal epiphysis of radius 5 4846 -UBERON:0004413 proximal epiphysis of radius 5 4847 -UBERON:0004386 epiphysis of ulna 4 4848 -UBERON:0004408 distal epiphysis of ulna 5 4849 -UBERON:0006822 proximal epiphysis of ulna 5 4850 -UBERON:0004388 epiphysis of fibula 4 4851 -UBERON:0004410 distal epiphysis of fibula 5 4852 -UBERON:0008775 proximal epiphysis of fibula 5 4853 -UBERON:0004389 epiphysis of metatarsal bone 4 4854 -UBERON:0004395 epiphysis of first metatarsal bone 5 4855 -UBERON:0004427 proximal epiphysis of first metatarsal bone 6 4856 -UBERON:0004396 epiphysis of second metatarsal bone 5 4857 -UBERON:0004428 proximal epiphysis of second metatarsal bone 6 4858 -UBERON:0004397 epiphysis of third metatarsal bone 5 4859 -UBERON:0004429 proximal epiphysis of third metatarsal bone 6 4860 -UBERON:0004398 epiphysis of fourth metatarsal bone 5 4861 -UBERON:0004430 proximal epiphysis of fourth metatarsal bone 6 4862 -UBERON:0004399 epiphysis of fifth metatarsal bone 5 4863 -UBERON:0004431 proximal epiphysis of fifth metatarsal bone 6 4864 -UBERON:0004415 proximal epiphysis of metatarsal bone 5 4865 -UBERON:0004427 proximal epiphysis of first metatarsal bone 6 4866 -UBERON:0004428 proximal epiphysis of second metatarsal bone 6 4867 -UBERON:0004429 proximal epiphysis of third metatarsal bone 6 4868 -UBERON:0004430 proximal epiphysis of fourth metatarsal bone 6 4869 -UBERON:0004431 proximal epiphysis of fifth metatarsal bone 6 4870 -UBERON:0004390 epiphysis of metacarpal bone 4 4871 -UBERON:0004391 epiphysis of first metacarpal bone 5 4872 -UBERON:0004422 proximal epiphysis of first metacarpal bone 6 4873 -UBERON:0004392 epiphysis of second metacarpal bone 5 4874 -UBERON:0004423 proximal epiphysis of second metacarpal bone 6 4875 -UBERON:0004393 epiphysis of third metacarpal bone 5 4876 -UBERON:0004424 proximal epiphysis of third metacarpal bone 6 4877 -UBERON:0004394 epiphysis of fourth metacarpal bone 5 4878 -UBERON:0004425 proximal epiphysis of fourth metacarpal bone 6 4879 -UBERON:0004416 proximal epiphysis of metacarpal bone 5 4880 -UBERON:0004422 proximal epiphysis of first metacarpal bone 6 4881 -UBERON:0004423 proximal epiphysis of second metacarpal bone 6 4882 -UBERON:0004424 proximal epiphysis of third metacarpal bone 6 4883 -UBERON:0004425 proximal epiphysis of fourth metacarpal bone 6 4884 -UBERON:0004426 proximal epiphysis of fifth metacarpal bone 6 4885 -UBERON:0011104 epiphysis of fifth metacarpal bone 5 4886 -UBERON:0004426 proximal epiphysis of fifth metacarpal bone 6 4887 -UBERON:0013753 distal epiphysis of metacarpal bone 5 4888 -UBERON:0004446 epiphysis of phalanx 4 4889 -UBERON:0004387 epiphysis of phalanx of manus 5 4890 -UBERON:0004409 distal epiphysis of phalanx of manus 6 4891 -UBERON:0014886 distal epiphysis of distal phalanx of manual digit 7 4892 -UBERON:0014881 distal epiphysis of distal phalanx of manual digit 1 8 4893 -UBERON:0014882 distal epiphysis of distal phalanx of manual digit 2 8 4894 -UBERON:0014883 distal epiphysis of distal phalanx of manual digit 3 8 4895 -UBERON:0014884 distal epiphysis of distal phalanx of manual digit 4 8 4896 -UBERON:0014885 distal epiphysis of distal phalanx of manual digit 5 8 4897 -UBERON:0004414 proximal epiphysis of phalanx of manus 6 4898 -UBERON:0004417 proximal epiphysis of phalanx of manual digit 1 7 4899 -UBERON:0004444 proximal epiphysis of distal phalanx of manual digit 1 8 4900 -UBERON:0004445 proximal epiphysis of proximal phalanx of manual digit 1 8 4901 -UBERON:0004418 proximal epiphysis of phalanx of manual digit 2 7 4902 -UBERON:0004432 proximal epiphysis of distal phalanx of manual digit 2 8 4903 -UBERON:0004436 proximal epiphysis of middle phalanx of manual digit 2 8 4904 -UBERON:0004440 proximal epiphysis of proximal phalanx of manual digit 2 8 4905 -UBERON:0004419 proximal epiphysis of phalanx of manual digit 3 7 4906 -UBERON:0004433 proximal epiphysis of distal phalanx of manual digit 3 8 4907 -UBERON:0004437 proximal epiphysis of middle phalanx of manual digit 3 8 4908 -UBERON:0004441 proximal epiphysis of proximal phalanx of manual digit 3 8 4909 -UBERON:0004420 proximal epiphysis of phalanx of manual digit 4 7 4910 -UBERON:0004434 proximal epiphysis of distal phalanx of manual digit 4 8 4911 -UBERON:0004438 proximal epiphysis of middle phalanx of manual digit 4 8 4912 -UBERON:0004442 proximal epiphysis of proximal phalanx of manual digit 4 8 4913 -UBERON:0004421 proximal epiphysis of phalanx of manual digit 5 7 4914 -UBERON:0004435 proximal epiphysis of distal phalanx of manual digit 5 8 4915 -UBERON:0004439 proximal epiphysis of middle phalanx of manual digit 5 8 4916 -UBERON:0004443 proximal epiphysis of proximal phalanx of manual digit 5 8 4917 -UBERON:0011977 epiphysis of proximal phalanx of manus 6 4918 -UBERON:0004440 proximal epiphysis of proximal phalanx of manual digit 2 7 4919 -UBERON:0004441 proximal epiphysis of proximal phalanx of manual digit 3 7 4920 -UBERON:0004442 proximal epiphysis of proximal phalanx of manual digit 4 7 4921 -UBERON:0004443 proximal epiphysis of proximal phalanx of manual digit 5 7 4922 -UBERON:0004445 proximal epiphysis of proximal phalanx of manual digit 1 7 4923 -UBERON:0011978 epiphysis of middle phalanx of manus 6 4924 -UBERON:0004436 proximal epiphysis of middle phalanx of manual digit 2 7 4925 -UBERON:0004437 proximal epiphysis of middle phalanx of manual digit 3 7 4926 -UBERON:0004438 proximal epiphysis of middle phalanx of manual digit 4 7 4927 -UBERON:0004439 proximal epiphysis of middle phalanx of manual digit 5 7 4928 -UBERON:0011979 epiphysis of distal phalanx of manus 6 4929 -UBERON:0004432 proximal epiphysis of distal phalanx of manual digit 2 7 4930 -UBERON:0004433 proximal epiphysis of distal phalanx of manual digit 3 7 4931 -UBERON:0004434 proximal epiphysis of distal phalanx of manual digit 4 7 4932 -UBERON:0004435 proximal epiphysis of distal phalanx of manual digit 5 7 4933 -UBERON:0004444 proximal epiphysis of distal phalanx of manual digit 1 7 4934 -UBERON:0014886 distal epiphysis of distal phalanx of manual digit 7 4935 -UBERON:0014881 distal epiphysis of distal phalanx of manual digit 1 8 4936 -UBERON:0014882 distal epiphysis of distal phalanx of manual digit 2 8 4937 -UBERON:0014883 distal epiphysis of distal phalanx of manual digit 3 8 4938 -UBERON:0014884 distal epiphysis of distal phalanx of manual digit 4 8 4939 -UBERON:0014885 distal epiphysis of distal phalanx of manual digit 5 8 4940 -UBERON:0004447 proximal epiphysis of phalanx 5 4941 -UBERON:0004414 proximal epiphysis of phalanx of manus 6 4942 -UBERON:0004417 proximal epiphysis of phalanx of manual digit 1 7 4943 -UBERON:0004444 proximal epiphysis of distal phalanx of manual digit 1 8 4944 -UBERON:0004445 proximal epiphysis of proximal phalanx of manual digit 1 8 4945 -UBERON:0004418 proximal epiphysis of phalanx of manual digit 2 7 4946 -UBERON:0004432 proximal epiphysis of distal phalanx of manual digit 2 8 4947 -UBERON:0004436 proximal epiphysis of middle phalanx of manual digit 2 8 4948 -UBERON:0004440 proximal epiphysis of proximal phalanx of manual digit 2 8 4949 -UBERON:0004419 proximal epiphysis of phalanx of manual digit 3 7 4950 -UBERON:0004433 proximal epiphysis of distal phalanx of manual digit 3 8 4951 -UBERON:0004437 proximal epiphysis of middle phalanx of manual digit 3 8 4952 -UBERON:0004441 proximal epiphysis of proximal phalanx of manual digit 3 8 4953 -UBERON:0004420 proximal epiphysis of phalanx of manual digit 4 7 4954 -UBERON:0004434 proximal epiphysis of distal phalanx of manual digit 4 8 4955 -UBERON:0004438 proximal epiphysis of middle phalanx of manual digit 4 8 4956 -UBERON:0004442 proximal epiphysis of proximal phalanx of manual digit 4 8 4957 -UBERON:0004421 proximal epiphysis of phalanx of manual digit 5 7 4958 -UBERON:0004435 proximal epiphysis of distal phalanx of manual digit 5 8 4959 -UBERON:0004439 proximal epiphysis of middle phalanx of manual digit 5 8 4960 -UBERON:0004443 proximal epiphysis of proximal phalanx of manual digit 5 8 4961 -UBERON:0013121 proximal epiphysis of phalanx of pes 6 4962 -UBERON:0004448 distal epiphysis of phalanx 5 4963 -UBERON:0004409 distal epiphysis of phalanx of manus 6 4964 -UBERON:0014886 distal epiphysis of distal phalanx of manual digit 7 4965 -UBERON:0014881 distal epiphysis of distal phalanx of manual digit 1 8 4966 -UBERON:0014882 distal epiphysis of distal phalanx of manual digit 2 8 4967 -UBERON:0014883 distal epiphysis of distal phalanx of manual digit 3 8 4968 -UBERON:0014884 distal epiphysis of distal phalanx of manual digit 4 8 4969 -UBERON:0014885 distal epiphysis of distal phalanx of manual digit 5 8 4970 -UBERON:0013122 distal epiphysis of phalanx of pes 6 4971 -UBERON:0014876 distal epiphysis of distal phalanx of pedal digit 7 4972 -UBERON:0014871 distal epiphysis of distal phalanx of pedal digit 1 8 4973 -UBERON:0014872 distal epiphysis of distal phalanx of pedal digit 2 8 4974 -UBERON:0014873 distal epiphysis of distal phalanx of pedal digit 3 8 4975 -UBERON:0014874 distal epiphysis of distal phalanx of pedal digit 4 8 4976 -UBERON:0014875 distal epiphysis of distal phalanx of pedal digit 5 8 4977 -UBERON:0014887 distal epiphysis of distal phalanx of digit 6 4978 -UBERON:0014876 distal epiphysis of distal phalanx of pedal digit 7 4979 -UBERON:0014871 distal epiphysis of distal phalanx of pedal digit 1 8 4980 -UBERON:0014872 distal epiphysis of distal phalanx of pedal digit 2 8 4981 -UBERON:0014873 distal epiphysis of distal phalanx of pedal digit 3 8 4982 -UBERON:0014874 distal epiphysis of distal phalanx of pedal digit 4 8 4983 -UBERON:0014875 distal epiphysis of distal phalanx of pedal digit 5 8 4984 -UBERON:0014886 distal epiphysis of distal phalanx of manual digit 7 4985 -UBERON:0014881 distal epiphysis of distal phalanx of manual digit 1 8 4986 -UBERON:0014882 distal epiphysis of distal phalanx of manual digit 2 8 4987 -UBERON:0014883 distal epiphysis of distal phalanx of manual digit 3 8 4988 -UBERON:0014884 distal epiphysis of distal phalanx of manual digit 4 8 4989 -UBERON:0014885 distal epiphysis of distal phalanx of manual digit 5 8 4990 -UBERON:0011974 epiphysis of proximal phalanx of pes 5 4991 -UBERON:0011975 epiphysis of middle phalanx of pes 5 4992 -UBERON:0011976 epiphysis of distal phalanx of pes 5 4993 -UBERON:0014876 distal epiphysis of distal phalanx of pedal digit 6 4994 -UBERON:0014871 distal epiphysis of distal phalanx of pedal digit 1 7 4995 -UBERON:0014872 distal epiphysis of distal phalanx of pedal digit 2 7 4996 -UBERON:0014873 distal epiphysis of distal phalanx of pedal digit 3 7 4997 -UBERON:0014874 distal epiphysis of distal phalanx of pedal digit 4 7 4998 -UBERON:0014875 distal epiphysis of distal phalanx of pedal digit 5 7 4999 -UBERON:0004641 spleen capsule 4 5000 -UBERON:0004652 humerus diaphysis 4 5001 -UBERON:0004665 muscular coat of seminal vesicle 4 5002 -UBERON:0004686 gastro-splenic ligament 4 5003 -UBERON:0004687 lieno-renal ligament 4 5004 -UBERON:0004713 corpus cavernosum penis 4 5005 -UBERON:0004737 metanephric collecting duct 4 5006 -UBERON:0004797 blood vessel layer 4 5007 -UBERON:0002522 tunica media 5 5008 -UBERON:0003618 aorta tunica media 6 5009 -UBERON:0007239 tunica media of artery 6 5010 -UBERON:0006563 tunica media of pulmonary trunk 7 5011 -UBERON:0007243 tunica media of vein 6 5012 -UBERON:0003619 aorta tunica intima 5 5013 -UBERON:0005007 mucosa of major calyx 5 5014 -UBERON:0005008 mucosa of minor calyx 5 5015 -UBERON:0005734 tunica adventitia of blood vessel 5 5016 -UBERON:0004664 aorta tunica adventitia 6 5017 -UBERON:0007240 tunica adventitia of artery 6 5018 -UBERON:0007241 tunica adventitia of vein 6 5019 -UBERON:0005740 tunica intima of artery 5 5020 -UBERON:0007242 tunica intima of vein 5 5021 -UBERON:0004943 submucosa of urinary bladder 4 5022 -UBERON:0004944 submucosa of trigone of urinary bladder 5 5023 -UBERON:0004945 submucosa of neck of urinary bladder 5 5024 -UBERON:0004980 mucosa of ureter 4 5025 -UBERON:0005004 mucosa of right ureter 5 5026 -UBERON:0005005 mucosa of left ureter 5 5027 -UBERON:0004983 mucosa of vagina 4 5028 -UBERON:0004984 mucosa of seminal vesicle 4 5029 -UBERON:0005048 mucosa of uterine tube 4 5030 -UBERON:0005011 mucosa of right uterine tube 5 5031 -UBERON:0005012 mucosa of left uterine tube 5 5032 -UBERON:0005110 metanephric nephron 4 5033 -UBERON:0005132 metanephric long nephron 5 5034 -UBERON:0005140 metanephric short nephron 5 5035 -UBERON:0005111 metanephric pyramid 4 5036 -UBERON:0005113 metanephric cortex mesenchyme 4 5037 -UBERON:0005115 metanephric cortical collecting duct 4 5038 -UBERON:0005116 metanephric descending thin limb 4 5039 -UBERON:0005121 metanephric long descending thin limb bend 4 5040 -UBERON:0005123 metanephric prebend segment 4 5041 -UBERON:0005137 metanephric capsule 4 5042 -UBERON:0005196 spleen germinal center 4 5043 -UBERON:0005205 lamina propria of vagina 4 5044 -UBERON:0005208 right atrium valve 4 5045 -UBERON:0002134 tricuspid valve 5 5046 -UBERON:0010189 right atrium venous valve 5 5047 -UBERON:0005249 metanephric renal pelvis 4 5048 -UBERON:0005255 pedal digit mesenchyme 4 5049 -UBERON:0005696 pedal digit 2 mesenchyme 5 5050 -UBERON:0005697 pedal digit 3 mesenchyme 5 5051 -UBERON:0005698 pedal digit 4 mesenchyme 5 5052 -UBERON:0005699 pedal digit 5 mesenchyme 5 5053 -UBERON:0010562 pedal digit 1 mesenchyme 5 5054 -UBERON:0005257 manual digit mesenchyme 4 5055 -UBERON:0005692 manual digit 2 mesenchyme 5 5056 -UBERON:0005693 manual digit 3 mesenchyme 5 5057 -UBERON:0005694 manual digit 4 mesenchyme 5 5058 -UBERON:0005695 manual digit 5 mesenchyme 5 5059 -UBERON:0010564 manual digit 1 mesenchyme 5 5060 -UBERON:0005298 skin of clitoris 4 5061 -UBERON:0011375 skin of prepuce of clitoris 5 5062 -UBERON:0005301 male preputial gland 4 5063 -UBERON:0005308 nephrostome 4 5064 -UBERON:0005309 pronephric nephron 4 5065 -UBERON:0005319 mesonephric collecting duct 4 5066 -UBERON:0005322 mesonephric nephron 4 5067 -UBERON:0005323 mesonephric mesenchyme 4 5068 -UBERON:0005335 chorioallantoic membrane 4 5069 -UBERON:0005353 spleen perifollicular zone 4 5070 -UBERON:0005435 upper part of cisterna chyli 4 5071 -UBERON:0005455 interventricular groove 4 5072 -UBERON:0005489 anterior interventricular sulcus 5 5073 -UBERON:0005490 posterior interventricular sulcus 5 5074 -UBERON:0005461 levator scapulae muscle 4 5075 -UBERON:0005493 hyoid muscle 4 5076 -UBERON:0008523 infrahyoid muscle 5 5077 -UBERON:0001107 sternohyoid muscle 6 5078 -UBERON:0001108 omohyoid muscle 6 5079 -UBERON:0001109 sternothyroid muscle 6 5080 -UBERON:0001110 thyrohyoid muscle 6 5081 -UBERON:0008571 suprahyoid muscle 5 5082 -UBERON:0001562 digastric muscle group 6 5083 -UBERON:0001564 mylohyoid muscle 6 5084 -UBERON:0001565 geniohyoid muscle 6 5085 -UBERON:0008712 stylohyoid muscle 6 5086 -UBERON:0010930 interhyoideus 5 5087 -UBERON:0011151 jaw depressor muscle 5 5088 -UBERON:0001565 geniohyoid muscle 6 5089 -UBERON:0011649 levator operculi 5 5090 -UBERON:0011650 epihyoidean 5 5091 -UBERON:0011687 levator hyomandibulae muscle 5 5092 -UBERON:2000462 abductor hyohyoid 5 5093 -UBERON:2000465 adductor operculi 5 5094 -UBERON:2000522 inferior hyohyoid 5 5095 -UBERON:2000615 adductor arcus palatini 5 5096 -UBERON:2000715 adductor hyohyoid 5 5097 -UBERON:2007051 ventral interhyoideus 5 5098 -UBERON:2007052 hyohyoideus 5 5099 -UBERON:2007053 dorsal adductor hyomandibulae 5 5100 -UBERON:0005494 intermediate mesenchyme 4 5101 -UBERON:0005498 primitive heart tube 4 5102 -UBERON:0005621 rhomboid 4 5103 -UBERON:0005721 pronephric mesoderm 4 5104 -UBERON:0005728 extraembryonic mesoderm 4 5105 -UBERON:0005732 paired limb/fin field 4 5106 -UBERON:0005729 pectoral appendage field 5 5107 -UBERON:0005730 pelvic appendage field 5 5108 -UBERON:0005731 fin field 5 5109 -UBERON:0005733 limb field 5 5110 -UBERON:0005745 optic foramen 4 5111 -UBERON:0005749 glomerular tuft 4 5112 -UBERON:0005777 glomerular basement membrane 4 5113 -UBERON:0007307 pronephric glomerular basement membrane 5 5114 -UBERON:0005787 lamina densa of glomerular basement membrane 4 5115 -UBERON:0005788 lamina rara interna 4 5116 -UBERON:0005789 lamina rara externa 4 5117 -UBERON:0005800 section of aorta 4 5118 -UBERON:0001514 descending aorta 5 5119 -UBERON:0001515 thoracic aorta 5 5120 -UBERON:0001496 ascending aorta 6 5121 -UBERON:0001508 arch of aorta 6 5122 -UBERON:0001516 abdominal aorta 5 5123 -UBERON:0005903 duct of seminal vesicle 4 5124 -UBERON:0005979 crista terminalis 4 5125 -UBERON:0005980 pectinate muscle 4 5126 -UBERON:0005983 heart layer 4 5127 -UBERON:0002165 endocardium 5 5128 -UBERON:0001081 endocardium of ventricle 6 5129 -UBERON:0009712 endocardium of right ventricle 7 5130 -UBERON:0009713 endocardium of left ventricle 7 5131 -UBERON:0002166 endocardium of atrium 6 5132 -UBERON:0009129 right atrium endocardium 7 5133 -UBERON:0011007 endocardium of right auricle 8 5134 -UBERON:0011005 endocardium of auricle 7 5135 -UBERON:0011006 endocardium of left auricle 8 5136 -UBERON:0011007 endocardium of right auricle 8 5137 -UBERON:0034903 left atrium endocardium 7 5138 -UBERON:0011006 endocardium of left auricle 8 5139 -UBERON:0003930 atrioventricular canal endocardium 6 5140 -UBERON:0005243 interventricular septum endocardium 6 5141 -UBERON:0002349 myocardium 5 5142 -UBERON:0001083 myocardium of ventricle 6 5143 -UBERON:0006566 left ventricle myocardium 7 5144 -UBERON:0036290 myocardium of anterior wall of left ventricle 8 5145 -UBERON:0006567 right ventricle myocardium 7 5146 -UBERON:0036291 myocardium of anterior wall of right ventricle 8 5147 -UBERON:0002302 myocardium of atrium 6 5148 -UBERON:0004265 outflow tract myocardium 6 5149 -UBERON:0005248 bulbus cordis myocardium 6 5150 -UBERON:0004123 myocardial layer 5 5151 -UBERON:0004124 myocardium trabecular layer 6 5152 -UBERON:0004126 trabecular layer of ventricle 7 5153 -UBERON:0005064 left ventricular trabecular myocardium 8 5154 -UBERON:0005066 right ventricular trabecular myocardium 8 5155 -UBERON:0004125 myocardial compact layer 6 5156 -UBERON:0004127 compact layer of ventricle 7 5157 -UBERON:0005063 left ventricular compact myocardium 8 5158 -UBERON:0005065 right ventricular compact myocardium 8 5159 -UBERON:0004666 interventricular septum membranous part 5 5160 -UBERON:0005984 subendocardium layer 5 5161 -UBERON:0005994 chorda tendineae 5 5162 -UBERON:0014851 chorda tendinea of left ventricle 6 5163 -UBERON:0014852 chorda tendinea of right ventricle 6 5164 -UBERON:0007182 muscle layer of infundibulum of uterine tube 5 5165 -UBERON:0005985 coronary vessel 4 5166 -UBERON:0003498 heart blood vessel 5 5167 -UBERON:0001621 coronary artery 6 5168 -UBERON:0001625 right coronary artery 7 5169 -UBERON:0001626 left coronary artery 7 5170 -UBERON:0002061 truncus arteriosus 6 5171 -UBERON:0004148 cardiac vein 6 5172 -UBERON:0006958 great vein of heart 7 5173 -UBERON:0009687 middle cardiac vein 7 5174 -UBERON:0035374 small cardiac vein 7 5175 -UBERON:0005432 aortic sac 6 5176 -UBERON:0005438 coronary sinus 6 5177 -UBERON:0005440 ductus arteriosus 6 5178 -UBERON:0006829 remnant of left anterior vena cava 6 5179 -UBERON:0006966 coronary capillary 6 5180 -UBERON:0035395 branch of left coronary artery 6 5181 -UBERON:0035422 circumflex branch of left coronary artery 7 5182 -UBERON:2000214 hypobranchial vessel 6 5183 -UBERON:0005988 atrium myocardial trabecula 4 5184 -UBERON:0006006 metoptic pillar 4 5185 -UBERON:0006008 fibrous ring of heart 4 5186 -UBERON:0005991 aortic valve anulus 5 5187 -UBERON:0005993 pulmonary valve anulus 5 5188 -UBERON:0005995 mitral valve anulus 5 5189 -UBERON:0005997 tricuspid valve anulus 5 5190 -UBERON:0006009 cusp of cardiac valve 4 5191 -UBERON:0005990 aortic valve cusp 5 5192 -UBERON:0005992 pulmonary valve cusp 5 5193 -UBERON:0005996 mitral valve cusp 5 5194 -UBERON:0005998 tricuspid valve cusp 5 5195 -UBERON:0006010 hyaloid canal 4 5196 -UBERON:0006082 fundus of urinary bladder 4 5197 -UBERON:0006170 mesonephric capsule 4 5198 -UBERON:0006172 rectal diverticulum 4 5199 -UBERON:0006219 deltoid pre-muscle mass 4 5200 -UBERON:0006293 spleen primordium 4 5201 -UBERON:0006374 part of afferent arteriole forming the juxtaglomerular complex 4 5202 -UBERON:0006428 basisphenoid bone 4 5203 -UBERON:0006435 os penis 4 5204 -UBERON:0006440 os clitoris 4 5205 -UBERON:0006589 round ligament of uterus 4 5206 -UBERON:0006591 transformed artery 4 5207 -UBERON:0006607 medial umbilical ligament 5 5208 -UBERON:0007642 ligamentum arteriosum 5 5209 -UBERON:0006592 transformed vein 4 5210 -UBERON:0006587 ligamentum venosum 5 5211 -UBERON:0006588 round ligament of liver 5 5212 -UBERON:0006594 gubernacular cord 4 5213 -UBERON:0006608 corpus cavernosum clitoridis 4 5214 -UBERON:0006618 atrium auricular region 4 5215 -UBERON:0006630 left atrium auricular region 5 5216 -UBERON:0006631 right atrium auricular region 5 5217 -UBERON:0006637 celiac trunk 4 5218 -UBERON:0006638 remnant of urachus 4 5219 -UBERON:0006639 crus of penis 4 5220 -UBERON:0006640 crus of clitoris 4 5221 -UBERON:0006641 appendix epididymis 4 5222 -UBERON:0006642 muscle layer of oviduct 4 5223 -UBERON:0006645 adventitia of epididymis 4 5224 -UBERON:0006646 muscle layer of epididymis 4 5225 -UBERON:0006648 adventitia of seminal vesicle 4 5226 -UBERON:0006649 suspensory ligament of ovary 4 5227 -UBERON:0006650 tunica vaginalis testis 4 5228 -UBERON:0006651 appendix testis 4 5229 -UBERON:0006652 muscular layer of vagina 4 5230 -UBERON:0006655 septum of scrotum 4 5231 -UBERON:0006675 venous valve 4 5232 -UBERON:0005485 valve of inferior vena cava 5 5233 -UBERON:0010189 right atrium venous valve 5 5234 -UBERON:0006678 foramen secundum 4 5235 -UBERON:0006717 autopodial skeleton 4 5236 -UBERON:0001442 skeleton of manus 5 5237 -UBERON:0001445 skeleton of pes 5 5238 -UBERON:0006721 alisphenoid bone 4 5239 -UBERON:0006767 head of femur 4 5240 -UBERON:0006801 proximal head of humerus 4 5241 -UBERON:0006802 acetabular rim 4 5242 -UBERON:0006803 obturator foramen 4 5243 -UBERON:0006810 olecranon 4 5244 -UBERON:0006855 muscular coat of ureter 4 5245 -UBERON:0006858 adrenal/interrenal gland 4 5246 -UBERON:0002369 adrenal gland 5 5247 -UBERON:0001233 right adrenal gland 6 5248 -UBERON:0001234 left adrenal gland 6 5249 -UBERON:0006856 interrenal gland 5 5250 -UBERON:0006862 diaphysis of femur 4 5251 -UBERON:0006865 metaphysis of femur 4 5252 -UBERON:0006863 proximal metaphysis of femur 5 5253 -UBERON:0006864 distal metaphysis of femur 5 5254 -UBERON:0006904 head mesenchyme from mesoderm 4 5255 -UBERON:0005687 orbitosphenoid cartilage element 5 5256 -UBERON:0006230 extrinsic ocular pre-muscle mass 5 5257 -UBERON:0009192 basisphenoid pre-cartilage condensation 5 5258 -UBERON:0009194 basisphenoid cartilage condenstion 5 5259 -UBERON:0010337 mandibular process mesenchyme from head mesenchyme 5 5260 -UBERON:0010341 1st arch mesenchyme from head mesenchyme 5 5261 -UBERON:0010338 1st arch maxillary mesenchyme from head mesenchyme 6 5262 -UBERON:0010339 1st arch mandibular mesenchyme from head mesenchyme 6 5263 -UBERON:0010343 2nd arch mesenchyme from head mesenchyme 5 5264 -UBERON:0010344 3rd arch mesenchyme from head mesenchyme 5 5265 -UBERON:0010345 4th arch mesenchyme from head mesenchyme 5 5266 -UBERON:0010347 6th arch mesenchyme from head mesenchyme 5 5267 -UBERON:0010728 sphenoid lesser wing pre-cartilage condensation 5 5268 -UBERON:0010732 alisphenoid pre-cartilage condensation 5 5269 -UBERON:0010733 alisphenoid cartilage element 5 5270 -UBERON:0010955 trapezius pre-muscle mass 5 5271 -UBERON:0010987 sterno-mastoid pre-muscle mass 5 5272 -UBERON:0007005 cardiogenic splanchnic mesoderm 4 5273 -UBERON:0007119 neck of femur 4 5274 -UBERON:0007136 rectouterine fold 4 5275 -UBERON:0007195 stroma of bone marrow 4 5276 -UBERON:0007390 pectoral appendage cartilage tissue 4 5277 -UBERON:0016425 epiphyseal plate of radius 5 5278 -UBERON:2001456 pectoral fin endoskeletal disc 5 5279 -UBERON:0007391 pelvic appendage cartilage tissue 4 5280 -UBERON:0000313 portion of cartilage tissue in tibia 5 5281 -UBERON:0007773 scrotal sweat gland 4 5282 -UBERON:0007809 fascia of Camper 4 5283 -UBERON:0007830 pelvic girdle bone/zone 4 5284 -UBERON:0001272 innominate bone 5 5285 -UBERON:0001273 ilium 5 5286 -UBERON:4200220 iliac ramus 6 5287 -UBERON:0001274 ischium 5 5288 -UBERON:0001275 pubis 5 5289 -UBERON:0013204 epipubic bone 5 5290 -UBERON:2000623 basipterygium bone 5 5291 -UBERON:0007832 pelvic girdle skeleton 4 5292 -UBERON:0011090 skeleton of right pelvic girdle 5 5293 -UBERON:0011091 skeleton of left pelvic girdle 5 5294 -UBERON:3000767 pelvic girdle opening 5 5295 -UBERON:3000771 acetabular depression 6 5296 -UBERON:0007862 perichordal tissue 4 5297 -UBERON:0008449 trochlear notch 4 5298 -UBERON:0008777 hypaxial musculature 4 5299 -UBERON:3010783 m. oblique externus 5 5300 -UBERON:3010784 m. oblique internus 5 5301 -UBERON:3010785 m. transversus 5 5302 -UBERON:3010786 pars subvertebralis 5 5303 -UBERON:3010787 pars transversalis 5 5304 -UBERON:3010793 m. ypsiloideus anterior 5 5305 -UBERON:3010797 m. ypsiloideus posterior 5 5306 -UBERON:0008778 epaxial musculature 4 5307 -UBERON:3010772 M. dorsalis trunci 5 5308 -UBERON:0008798 rugal fold of vagina 4 5309 -UBERON:0008824 duct of epididymis 4 5310 -UBERON:0008842 suspensory ligament of testis 4 5311 -UBERON:0008847 ovarian ligament 4 5312 -UBERON:0008855 placenta metrial gland 4 5313 -UBERON:0008856 stomach muscularis externa 4 5314 -UBERON:0008857 stomach smooth muscle circular layer 4 5315 -UBERON:0008862 stomach smooth muscle inner oblique layer 4 5316 -UBERON:0008863 stomach smooth muscle outer longitudinal layer 4 5317 -UBERON:0008876 hypodermis skeletal muscle layer 4 5318 -UBERON:0005467 platysma 5 5319 -UBERON:0018240 panniculus carnosus muscle 5 5320 -UBERON:0009000 ischial spine 4 5321 -UBERON:0009002 placental membrane 4 5322 -UBERON:0014849 hemotrichorial placental membrane 5 5323 -UBERON:0014850 hemomonochorial placental membrane 5 5324 -UBERON:0009089 inner medulla vasa recta descending limb 4 5325 -UBERON:0009090 outer medulla vasa recta descending limb 4 5326 -UBERON:0009091 vasa recta ascending limb 4 5327 -UBERON:0009092 inner medulla vasa recta ascending limb 4 5328 -UBERON:0009093 outer medulla vasa recta ascending limb 4 5329 -UBERON:0009149 foramen primum 4 5330 -UBERON:0009202 vasa recta descending limb 4 5331 -UBERON:0009478 associated mesenchyme of midgut 4 5332 -UBERON:0009648 eyelid subcutaneous connective tissue 4 5333 -UBERON:0009751 cardiac mesenchyme 4 5334 -UBERON:0002062 endocardial cushion 5 5335 -UBERON:0036066 inferior endocardial cushion 6 5336 -UBERON:0036067 superior endocardial cushion 6 5337 -UBERON:0005967 conotruncal ridge 5 5338 -UBERON:0009753 adrenal gland cortex zone 4 5339 -UBERON:0002053 zona glomerulosa of adrenal gland 5 5340 -UBERON:0002054 zona fasciculata of adrenal gland 5 5341 -UBERON:0002055 zona reticularis of adrenal gland 5 5342 -UBERON:0009024 adrenal gland X zone 5 5343 -UBERON:0013745 zona intermedia of adrenal gland 5 5344 -UBERON:0009878 mesopodial skeleton 4 5345 -UBERON:0009879 tarsal skeleton 5 5346 -UBERON:0009880 carpal skeleton 5 5347 -UBERON:0009881 anterior lateral plate mesoderm 4 5348 -UBERON:0009889 secondary heart field 4 5349 -UBERON:0009910 posterior lateral plate mesoderm 4 5350 -UBERON:0009916 wall of ureter 4 5351 -UBERON:0036375 wall of right ureter 5 5352 -UBERON:0036376 wall of left ureter 5 5353 -UBERON:0009949 humeral diverticulum of clavicular air sac 4 5354 -UBERON:0009960 esophagus smooth muscle circular layer 4 5355 -UBERON:0009961 esophagus smooth muscle longitudinal layer 4 5356 -UBERON:0009980 condyle of femur 4 5357 -UBERON:0009984 medial condyle of femur 5 5358 -UBERON:0009985 lateral condyle of femur 5 5359 -UBERON:0009986 lateral epicondyle of femur 4 5360 -UBERON:0009987 medial epicondyle of femur 4 5361 -UBERON:0009988 condyle of humerus 4 5362 -UBERON:4200174 distal condyle of humerus 5 5363 -UBERON:0009989 condyle of tibia 4 5364 -UBERON:0009990 medial condyle of tibia 5 5365 -UBERON:0009991 lateral condyle of tibia 5 5366 -UBERON:0010005 placental labyrinth villous 4 5367 -UBERON:0010015 ventral patch of Leydig's organ 4 5368 -UBERON:0010018 spiral valve of conus arteriosus 4 5369 -UBERON:0010051 dorsal patch of Leydig's organ 4 5370 -UBERON:0010150 duct of major vestibular gland 4 5371 -UBERON:0010151 duct of bulbourethral gland 4 5372 -UBERON:0010172 bulb of aorta 4 5373 -UBERON:0010173 sinotubular junction 4 5374 -UBERON:0010174 Schweigger-Seidel sheath 4 5375 -UBERON:0010185 rete ovarii 4 5376 -UBERON:0010333 extraembryonic membrane mesenchyme 4 5377 -UBERON:0003262 amniotic mesoderm 5 5378 -UBERON:0003265 chorionic mesenchyme 5 5379 -UBERON:0003316 mesenchyme of yolk sac 5 5380 -UBERON:0010335 maxillary process mesenchyme from head mesenchyme 4 5381 -UBERON:0010348 hyoid pre-muscle mass 4 5382 -UBERON:0010360 pharyngeal arch mesenchyme from head mesenchyme 4 5383 -UBERON:0010341 1st arch mesenchyme from head mesenchyme 5 5384 -UBERON:0010338 1st arch maxillary mesenchyme from head mesenchyme 6 5385 -UBERON:0010339 1st arch mandibular mesenchyme from head mesenchyme 6 5386 -UBERON:0010343 2nd arch mesenchyme from head mesenchyme 5 5387 -UBERON:0010344 3rd arch mesenchyme from head mesenchyme 5 5388 -UBERON:0010345 4th arch mesenchyme from head mesenchyme 5 5389 -UBERON:0010347 6th arch mesenchyme from head mesenchyme 5 5390 -UBERON:0010377 mesenchyme from somatopleure 4 5391 -UBERON:0003328 mesenchyme of footplate 5 5392 -UBERON:0010540 tarsus pre-cartilage condensation 6 5393 -UBERON:0010541 tarsus cartilage element 6 5394 -UBERON:0006213 carpus cartilage element 5 5395 -UBERON:0006247 iliac pre-cartilage condensation 5 5396 -UBERON:0006255 ischial pre-cartilage condensation 5 5397 -UBERON:0006285 pubic pre-cartilage condensation 5 5398 -UBERON:0009523 mesenchyme of handplate 5 5399 -UBERON:0006214 carpus pre-cartilage condensation 6 5400 -UBERON:0010329 paired limb/fin bud mesenchyme 5 5401 -UBERON:0003412 pelvic appendage bud mesenchyme 6 5402 -UBERON:0005416 zone of polarizing activity of pelvic appendage 7 5403 -UBERON:4300227 hindlimb bud mesenchyme 7 5404 -UBERON:0003413 pectoral appendage bud mesenchyme 6 5405 -UBERON:0005415 zone of polarizing activity of pectoral appendage 7 5406 -UBERON:4300226 forelimb bud mesenchyme 7 5407 -UBERON:4300231 forelimb wing bud mesenchyme 8 5408 -UBERON:4300228 pectoral fin bud mesenchyme 7 5409 -UBERON:0005414 zone of polarizing activity 6 5410 -UBERON:0005415 zone of polarizing activity of pectoral appendage 7 5411 -UBERON:0005416 zone of polarizing activity of pelvic appendage 7 5412 -UBERON:0010328 limb bud mesenchyme 6 5413 -UBERON:4300226 forelimb bud mesenchyme 7 5414 -UBERON:4300231 forelimb wing bud mesenchyme 8 5415 -UBERON:4300227 hindlimb bud mesenchyme 7 5416 -UBERON:4300229 pelvic fin bud mesenchyme 6 5417 -UBERON:0010378 mesenchyme from splanchnopleure 4 5418 -UBERON:0010411 retroperitoneal fat pad 4 5419 -UBERON:0010414 omental fat pad 5 5420 -UBERON:0010412 epididymal fat pad 4 5421 -UBERON:0010421 spleen B cell corona 4 5422 -UBERON:0010533 metanephros cortex 4 5423 -UBERON:0010537 mesonephric nephron progenitor 4 5424 -UBERON:0010543 acropodial skeleton 4 5425 -UBERON:0010688 skeleton of manual acropodium 5 5426 -UBERON:0010696 skeleton of pedal acropodium 5 5427 -UBERON:0010546 metapodial skeleton 4 5428 -UBERON:0010544 metacarpus skeleton 5 5429 -UBERON:0010545 metatarsus skeleton 5 5430 -UBERON:0010746 iliac blade 4 5431 -UBERON:0010747 body of ilium 4 5432 -UBERON:0010756 spleen follicular dendritic cell network 4 5433 -UBERON:0010853 capitulum of humerus 4 5434 -UBERON:0010939 zygomaticomandibularis muscle 4 5435 -UBERON:0010940 muscle of digastric group 4 5436 -UBERON:0010943 anterior digastric muscle 5 5437 -UBERON:0010944 posterior digastric muscle 5 5438 -UBERON:0010982 latissimus dorsi pre-muscle mass 4 5439 -UBERON:0010983 levator scapulae pre-muscle mass 4 5440 -UBERON:0010984 pectoral pre-muscle mass 4 5441 -UBERON:0010985 rhomboid pre-muscle mass 4 5442 -UBERON:0010988 teres major pre-muscle mass 4 5443 -UBERON:0010994 coronoid process of ulna 4 5444 -UBERON:0010995 deep part of masseter muscle 4 5445 -UBERON:0011015 iliac fossa 4 5446 -UBERON:0011140 superficial part of masseter muscle 4 5447 -UBERON:0011183 corpus spongiosum of penis 4 5448 -UBERON:0011187 ventral tubercle of humerus 4 5449 -UBERON:0011188 lesser tubercle of humerus 4 5450 -UBERON:0011199 prostatic utricle 4 5451 -UBERON:0011203 urachus mesenchyme 4 5452 -UBERON:0011222 intra-ocular muscle 4 5453 -UBERON:0001605 ciliary muscle 5 5454 -UBERON:0001606 muscle of iris 5 5455 -UBERON:0001607 sphincter pupillae 6 5456 -UBERON:0011283 epoophoron 4 5457 -UBERON:0011298 submucosa of uterine tube 4 5458 -UBERON:0011305 superficial part of temporalis 4 5459 -UBERON:0011306 deep part of temporalis 4 5460 -UBERON:0011307 suprazygomatic part of temporalis 4 5461 -UBERON:0011308 pars reflexa of masseter 4 5462 -UBERON:0011313 posterior subdivision of masseter 4 5463 -UBERON:0011314 anterior subdivision of masseter 4 5464 -UBERON:0011374 prepuce 4 5465 -UBERON:0001332 prepuce of penis 5 5466 -UBERON:0005299 prepuce of clitoris 5 5467 -UBERON:0011575 styloid process of ulna 4 5468 -UBERON:0011577 flexural organ 4 5469 -UBERON:0011582 paired limb/fin skeleton 4 5470 -UBERON:0004381 skeleton of limb 5 5471 -UBERON:0001440 forelimb skeleton 6 5472 -UBERON:0001441 hindlimb skeleton 6 5473 -UBERON:0007272 pectoral appendage skeleton 5 5474 -UBERON:0001440 forelimb skeleton 6 5475 -UBERON:0010710 pectoral fin skeleton 6 5476 -UBERON:0007273 pelvic appendage skeleton 5 5477 -UBERON:0001441 hindlimb skeleton 6 5478 -UBERON:0010711 pelvic fin skeleton 6 5479 -UBERON:0010713 paired fin skeleton 5 5480 -UBERON:0010710 pectoral fin skeleton 6 5481 -UBERON:0010711 pelvic fin skeleton 6 5482 -UBERON:0011583 stylopodial skeleton 4 5483 -UBERON:0011584 zeugopodial skeleton 4 5484 -UBERON:0010703 forelimb zeugopod skeleton 5 5485 -UBERON:0010720 hindlimb zeugopod skeleton 5 5486 -UBERON:0011675 perichordal ring 4 5487 -UBERON:0011741 cardiac valve leaflet 4 5488 -UBERON:0005484 tricuspid valve leaflet 5 5489 -UBERON:0005998 tricuspid valve cusp 6 5490 -UBERON:0007151 mitral valve leaflet 5 5491 -UBERON:0014853 commissural leaflet of mitral valve 6 5492 -UBERON:0014854 anterior leaflet of mitral valve 6 5493 -UBERON:0014855 posterior leaflet of mitral valve 6 5494 -UBERON:0011742 aortic valve leaflet 5 5495 -UBERON:0011745 pulmonary valve leaflets 5 5496 -UBERON:0011754 genital swelling 4 5497 -UBERON:0011755 female labial swelling 5 5498 -UBERON:0011756 male genital swelling 5 5499 -UBERON:0011820 atrioventricular region 4 5500 -UBERON:0011830 duct of lesser vestibular gland 4 5501 -UBERON:0011861 aorta collagen fibril 4 5502 -UBERON:0011895 endomysium 4 5503 -UBERON:0011896 smooth muscle endomysium 5 5504 -UBERON:0011897 cardiac endomysium 5 5505 -UBERON:0011898 skeletal muscle endomysium 5 5506 -UBERON:0011899 epimysium 4 5507 -UBERON:0011900 perimysium 4 5508 -UBERON:0012078 fovea capitis of femur 4 5509 -UBERON:0012080 patella cartilage element 4 5510 -UBERON:0012081 patella pre-cartilage condensation 4 5511 -UBERON:0012129 radial head of humerus 4 5512 -UBERON:0012130 olecranon fossa 4 5513 -UBERON:0012135 prepollex skeleton 4 5514 -UBERON:0012150 skeleton of digitopodium 4 5515 -UBERON:0012151 skeleton of manual digitopodium 5 5516 -UBERON:0012152 skeleton of pedal digitopodium 5 5517 -UBERON:0012240 urethral meatus 4 5518 -UBERON:0006565 female urethral meatus 5 5519 -UBERON:0012241 male urethral meatus 5 5520 -UBERON:0012242 internal urethral orifice 4 5521 -UBERON:0012275 meso-epithelium 4 5522 -UBERON:0000428 prostate epithelium 5 5523 -UBERON:0001081 endocardium of ventricle 5 5524 -UBERON:0009712 endocardium of right ventricle 6 5525 -UBERON:0009713 endocardium of left ventricle 6 5526 -UBERON:0001136 mesothelium 5 5527 -UBERON:0003274 mesothelium of omental bursa 6 5528 -UBERON:0003388 mesothelium of pericardial cavity 6 5529 -UBERON:0007186 pericardial visceral mesothelium 7 5530 -UBERON:0007187 pericardial parietal mesothelium 7 5531 -UBERON:0007188 mesothelium of serous pericardium 7 5532 -UBERON:0015128 subepicardial layer of epicardium 8 5533 -UBERON:0003389 mesothelium of diaphragm 6 5534 -UBERON:0003390 mesothelium of pleural cavity 6 5535 -UBERON:0004813 seminiferous tubule epithelium 6 5536 -UBERON:0005669 peritoneal cavity mesothelium 6 5537 -UBERON:0005670 greater omentum mesothelium 6 5538 -UBERON:0005671 greater sac mesothelium 6 5539 -UBERON:0007140 parietal mesothelium 6 5540 -UBERON:0007187 pericardial parietal mesothelium 7 5541 -UBERON:0007141 visceral mesothelium 6 5542 -UBERON:0007186 pericardial visceral mesothelium 7 5543 -UBERON:0007185 pericardio-peritoneal canal mesothelium 6 5544 -UBERON:0009499 parietal of mesothelium of pericardio-peritoneal canal 7 5545 -UBERON:0001254 urothelium of ureter 5 5546 -UBERON:0005912 transitional epithelium of major calyx 6 5547 -UBERON:0001287 proximal convoluted tubule 5 5548 -UBERON:0005124 metanephric proximal convoluted tubule 6 5549 -UBERON:0007298 pronephric proximal convoluted tubule 6 5550 -UBERON:0001292 distal convoluted tubule 5 5551 -UBERON:0005117 metanephric distal convoluted tubule 6 5552 -UBERON:0001986 endothelium 5 5553 -UBERON:0000201 endothelial blood brain barrier 6 5554 -UBERON:0001985 corneal endothelium 6 5555 -UBERON:0003279 endothelium of trachea 6 5556 -UBERON:0003280 endothelium of main bronchus 6 5557 -UBERON:0003915 endothelial tube 6 5558 -UBERON:0001917 endothelium of artery 7 5559 -UBERON:0004848 respiratory system arterial endothelium 8 5560 -UBERON:0005317 pulmonary artery endothelium 8 5561 -UBERON:0007778 umbilical artery endothelium 8 5562 -UBERON:0019189 carotid artery endothelium 8 5563 -UBERON:0019196 iliac artery endothelium 8 5564 -UBERON:0004850 lymph node endothelium 6 5565 -UBERON:0004852 cardiovascular system endothelium 6 5566 -UBERON:0002042 lymphatic vessel endothelium 7 5567 -UBERON:0003529 respiratory system lymphatic vessel endothelium 8 5568 -UBERON:0004189 glomerular endothelium 7 5569 -UBERON:0004294 glomerular capillary endothelium 8 5570 -UBERON:0005136 metanephric glomerular endothelium 8 5571 -UBERON:0004638 blood vessel endothelium 7 5572 -UBERON:0001915 endothelium of capillary 8 5573 -UBERON:0003489 respiratory system capillary endothelium 9 5574 -UBERON:0004294 glomerular capillary endothelium 9 5575 -UBERON:0012441 endothelium of peritubular capillary 9 5576 -UBERON:0001916 endothelium of arteriole 8 5577 -UBERON:0001917 endothelium of artery 8 5578 -UBERON:0004848 respiratory system arterial endothelium 9 5579 -UBERON:0005317 pulmonary artery endothelium 9 5580 -UBERON:0007778 umbilical artery endothelium 9 5581 -UBERON:0019189 carotid artery endothelium 9 5582 -UBERON:0019196 iliac artery endothelium 9 5583 -UBERON:0001918 endothelium of venule 8 5584 -UBERON:0001919 endothelium of vein 8 5585 -UBERON:0004698 vena cava endothelium 9 5586 -UBERON:0004849 respiratory system venous endothelium 9 5587 -UBERON:0007777 umbilical vein endothelium 9 5588 -UBERON:0004702 respiratory system blood vessel endothelium 8 5589 -UBERON:0003489 respiratory system capillary endothelium 9 5590 -UBERON:0004848 respiratory system arterial endothelium 9 5591 -UBERON:0004849 respiratory system venous endothelium 9 5592 -UBERON:0013479 lung endothelium 9 5593 -UBERON:0004851 aorta endothelium 8 5594 -UBERON:2005259 continuous capillary 8 5595 -UBERON:2005260 fenestrated capillary 8 5596 -UBERON:0003909 sinusoid 9 5597 -UBERON:0001281 hepatic sinusoid 10 5598 -UBERON:0009548 hepatic sinusoid of left of lobe of liver 11 5599 -UBERON:0011737 caudate lobe hepatic sinusoid 12 5600 -UBERON:0009549 hepatic sinusoid of right of lobe of liver 11 5601 -UBERON:0011737 caudate lobe hepatic sinusoid 12 5602 -UBERON:0011738 quadrate lobe hepatic sinusoid 12 5603 -UBERON:0003910 splenic sinusoid 10 5604 -UBERON:0004700 arterial system endothelium 7 5605 -UBERON:0001916 endothelium of arteriole 8 5606 -UBERON:0001917 endothelium of artery 8 5607 -UBERON:0004848 respiratory system arterial endothelium 9 5608 -UBERON:0005317 pulmonary artery endothelium 9 5609 -UBERON:0007778 umbilical artery endothelium 9 5610 -UBERON:0019189 carotid artery endothelium 9 5611 -UBERON:0019196 iliac artery endothelium 9 5612 -UBERON:0004851 aorta endothelium 8 5613 -UBERON:0004701 venous system endothelium 7 5614 -UBERON:0001918 endothelium of venule 8 5615 -UBERON:0001919 endothelium of vein 8 5616 -UBERON:0004698 vena cava endothelium 9 5617 -UBERON:0004849 respiratory system venous endothelium 9 5618 -UBERON:0007777 umbilical vein endothelium 9 5619 -UBERON:0008307 heart endothelium 7 5620 -UBERON:0004699 outflow tract endothelium 8 5621 -UBERON:0005316 endocardial endothelium 8 5622 -UBERON:0008339 microvascular endothelium 7 5623 -UBERON:0005672 right lung endothelium 6 5624 -UBERON:0005674 right lung cranial lobe endothelium 7 5625 -UBERON:0005675 right lung caudal lobe endothelium 7 5626 -UBERON:0005676 right lung accessory lobe endothelium 7 5627 -UBERON:0005673 left lung endothelium 6 5628 -UBERON:0010294 scleral endothelium 6 5629 -UBERON:0013694 brain endothelium 6 5630 -UBERON:0013695 colon endothelium 6 5631 -UBERON:0002018 synovial membrane of synovial joint 5 5632 -UBERON:0002325 epithelium of urethra 5 5633 -UBERON:0004787 urethra urothelium 6 5634 -UBERON:0015777 transitional epithelium of prostatic urethra 7 5635 -UBERON:0016510 epithelium of male urethra 6 5636 -UBERON:0015777 transitional epithelium of prostatic urethra 7 5637 -UBERON:0034770 bulbourethral gland epithelium 7 5638 -UBERON:0016520 epithelium of female urethra 6 5639 -UBERON:0003060 pronephric duct 5 5640 -UBERON:0003254 amniotic ectoderm 5 5641 -UBERON:0003304 mesoderm blood island 5 5642 -UBERON:0003546 distal convoluted tubule macula densa 5 5643 -UBERON:0003846 thymus epithelium 5 5644 -UBERON:0006936 thymus subcapsular epithelium 6 5645 -UBERON:0004141 heart tube 5 5646 -UBERON:0004188 glomerular epithelium 5 5647 -UBERON:0004189 glomerular endothelium 6 5648 -UBERON:0004294 glomerular capillary endothelium 7 5649 -UBERON:0005136 metanephric glomerular endothelium 7 5650 -UBERON:0005135 metanephric glomerular epithelium 6 5651 -UBERON:0005136 metanephric glomerular endothelium 7 5652 -UBERON:0005327 mesonephric glomerular epithelium 6 5653 -UBERON:0005750 glomerular parietal epithelium 6 5654 -UBERON:0006852 glomerular visceral epithelium 6 5655 -UBERON:0004291 heart rudiment 5 5656 -UBERON:0004544 epididymis epithelium 5 5657 -UBERON:0004645 urinary bladder urothelium 5 5658 -UBERON:0004803 penis epithelium 5 5659 -UBERON:0004812 male prepuce epithelium 6 5660 -UBERON:0004804 oviduct epithelium 5 5661 -UBERON:0001344 epithelium of vagina 6 5662 -UBERON:0006923 vagina squamous epithelium 7 5663 -UBERON:0006955 uterine epithelium 6 5664 -UBERON:0003366 epithelium of uterine horn 7 5665 -UBERON:0004801 cervix epithelium 7 5666 -UBERON:0006922 cervix squamous epithelium 8 5667 -UBERON:0012250 cervix glandular epithelium 8 5668 -UBERON:0012252 endocervical epithelium 9 5669 -UBERON:0012251 ectocervical epithelium 8 5670 -UBERON:0012253 cervical squamo-columnar junction 8 5671 -UBERON:0004811 endometrium epithelium 7 5672 -UBERON:0012276 endometrium glandular epithelium 8 5673 -UBERON:0022355 basal layer of endometrium 8 5674 -UBERON:0022356 outer layer of endometrium 8 5675 -UBERON:0007589 ciliated columnar oviduct epithelium 6 5676 -UBERON:0012276 endometrium glandular epithelium 7 5677 -UBERON:0007590 cuboidal oviduct epithelium 6 5678 -UBERON:0004805 seminal vesicle epithelium 5 5679 -UBERON:0004902 urogenital sinus epithelium 5 5680 -UBERON:0003820 prostate bud 6 5681 -UBERON:0005097 renal connecting tubule 5 5682 -UBERON:0005149 metanephric connecting tubule 6 5683 -UBERON:0006189 mesonephric connecting tubule 6 5684 -UBERON:0005101 early distal convoluted tubule 5 5685 -UBERON:0005118 metanephric early distal convoluted tubule 6 5686 -UBERON:0005102 late distal convoluted tubule 5 5687 -UBERON:0005120 metanephric late distal convoluted tubule 6 5688 -UBERON:0005103 mesonephric epithelium 5 5689 -UBERON:0000083 mesonephric tubule 6 5690 -UBERON:0000084 ureteric bud 7 5691 -UBERON:0005080 metanephric ureteric bud 8 5692 -UBERON:0005081 ureter ureteric bud 8 5693 -UBERON:0005312 primary ureteric bud 8 5694 -UBERON:0003074 mesonephric duct 7 5695 -UBERON:0005104 anterior mesonephric tubule 7 5696 -UBERON:0005105 posterior mesonephric tubule 7 5697 -UBERON:0005329 mesonephric nephron tubule 7 5698 -UBERON:0005892 mesonephric early distal tubule 7 5699 -UBERON:0006189 mesonephric connecting tubule 7 5700 -UBERON:0006190 mesonephric distal tubule 7 5701 -UBERON:0006192 mesonephric proximal tubule 7 5702 -UBERON:0006364 ureteric bud tip 7 5703 -UBERON:0010534 primitive mesonephric nephron 7 5704 -UBERON:0012238 ureteric bud trunk 7 5705 -UBERON:0005330 mesonephric nephron epithelium 6 5706 -UBERON:0005324 mesonephric macula densa 7 5707 -UBERON:0005327 mesonephric glomerular epithelium 7 5708 -UBERON:0005329 mesonephric nephron tubule 7 5709 -UBERON:0006189 mesonephric connecting tubule 7 5710 -UBERON:0006190 mesonephric distal tubule 7 5711 -UBERON:0006192 mesonephric proximal tubule 7 5712 -UBERON:0005331 mesonephric renal vesicle 6 5713 -UBERON:0005108 metanephric epithelium 5 5714 -UBERON:0005106 metanephric tubule 6 5715 -UBERON:0005146 metanephric nephron tubule 7 5716 -UBERON:0005114 metanephric ascending thin limb 8 5717 -UBERON:0005117 metanephric distal convoluted tubule 8 5718 -UBERON:0005124 metanephric proximal convoluted tubule 8 5719 -UBERON:0005125 metanephric proximal straight tubule 8 5720 -UBERON:0005127 metanephric thick ascending limb 8 5721 -UBERON:0005129 metanephric distal tubule 8 5722 -UBERON:0005130 metanephric loop of Henle 8 5723 -UBERON:0005149 metanephric connecting tubule 8 5724 -UBERON:0005151 metanephric proximal tubule 8 5725 -UBERON:0010535 primitive metanephric nephron 7 5726 -UBERON:0005134 metanephric nephron epithelium 6 5727 -UBERON:0005118 metanephric early distal convoluted tubule 7 5728 -UBERON:0005120 metanephric late distal convoluted tubule 7 5729 -UBERON:0005122 metanephric macula densa 7 5730 -UBERON:0005135 metanephric glomerular epithelium 7 5731 -UBERON:0005136 metanephric glomerular endothelium 8 5732 -UBERON:0005139 metanephric long descending thin limb 7 5733 -UBERON:0005141 metanephric short descending thin limb 7 5734 -UBERON:0005146 metanephric nephron tubule 7 5735 -UBERON:0005114 metanephric ascending thin limb 8 5736 -UBERON:0005117 metanephric distal convoluted tubule 8 5737 -UBERON:0005124 metanephric proximal convoluted tubule 8 5738 -UBERON:0005125 metanephric proximal straight tubule 8 5739 -UBERON:0005127 metanephric thick ascending limb 8 5740 -UBERON:0005129 metanephric distal tubule 8 5741 -UBERON:0005130 metanephric loop of Henle 8 5742 -UBERON:0005149 metanephric connecting tubule 8 5743 -UBERON:0005151 metanephric proximal tubule 8 5744 -UBERON:0005147 metanephric renal vesicle 6 5745 -UBERON:0005170 granulosa cell layer 5 5746 -UBERON:0005295 sex cord 5 5747 -UBERON:0005296 ovary sex cord 6 5748 -UBERON:0005297 testis sex cord 6 5749 -UBERON:0010141 primitive sex cord of indifferent gonad 6 5750 -UBERON:0005310 pronephric nephron tubule 5 5751 -UBERON:0006173 pronephric proximal tubule 6 5752 -UBERON:0006175 pronephric distal tubule 6 5753 -UBERON:0007298 pronephric proximal convoluted tubule 6 5754 -UBERON:0007308 pronephric distal early tubule 6 5755 -UBERON:0009622 pronephric proximal straight tubule 6 5756 -UBERON:0006250 infundibular recess of 3rd ventricle 5 5757 -UBERON:0009129 right atrium endocardium 5 5758 -UBERON:0011007 endocardium of right auricle 6 5759 -UBERON:0011202 urachus epithelium 5 5760 -UBERON:0011921 connecting stalk blood islands 5 5761 -UBERON:0013247 male paramesonephric duct 5 5762 -UBERON:0013248 paradidymis 5 5763 -UBERON:0013249 paroophoron 5 5764 -UBERON:0014706 primitive renal collecting duct system 5 5765 -UBERON:0012291 lateral malleolus of fibula 4 5766 -UBERON:0012294 navicular fossa of spongiose part of urethra 4 5767 -UBERON:0012295 Guérin's valve 4 5768 -UBERON:0012296 urethral crest 4 5769 -UBERON:0012297 male urethral crest 5 5770 -UBERON:0012298 female urethral crest 5 5771 -UBERON:0012299 mucosa of urethra 4 5772 -UBERON:0005013 mucosa of male urethra 5 5773 -UBERON:0005015 mucosa of prostatic urethra 6 5774 -UBERON:0005014 mucosa of female urethra 5 5775 -UBERON:0005016 mucosa of intermediate urethra 5 5776 -UBERON:0012303 ureteral orifice 4 5777 -UBERON:0012317 vagina orifice 4 5778 -UBERON:0012326 gubernacular bulb 4 5779 -UBERON:0012327 pearly penile papule 4 5780 -UBERON:0012328 penile spine 4 5781 -UBERON:0012332 broad ligament of uterus 4 5782 -UBERON:0012378 muscle layer of urinary bladder 4 5783 -UBERON:0012398 large intestine smooth muscle circular layer 4 5784 -UBERON:0012399 large intestine smooth muscle longitudinal layer 4 5785 -UBERON:0012401 small intestine smooth muscle circular layer 4 5786 -UBERON:0012402 small intestine smooth muscle longitudinal layer 4 5787 -UBERON:0012429 hematopoietic tissue 4 5788 -UBERON:0012471 hepatogastric ligament 4 5789 -UBERON:0012472 hepatoduodenal ligament 4 5790 -UBERON:0012487 vaginal sphincter 4 5791 -UBERON:0012648 ampulla of uterine tube 4 5792 -UBERON:0013069 popliteal area 4 5793 -UBERON:0013128 bulb of penis 4 5794 -UBERON:0013152 interventricular foramen of heart 4 5795 -UBERON:0013207 entepicondylar foramen 4 5796 -UBERON:0013250 vesicular appendage of epoophoron 4 5797 -UBERON:0013262 remnnant of ductus deferens 4 5798 -UBERON:0013277 remnant of processus vaginalis 4 5799 -UBERON:0013278 canal of Nuck 4 5800 -UBERON:0013279 diaphysis of fibula 4 5801 -UBERON:0013280 diaphysis of tibia 4 5802 -UBERON:0013489 superficial cervical fascia 4 5803 -UBERON:0013655 elastica externa of notochord 4 5804 -UBERON:0013707 iliac spine 4 5805 -UBERON:0013712 anterior iliac spine 5 5806 -UBERON:0013708 anterior superior iliac spine 6 5807 -UBERON:0013709 anterior inferior iliac spine 6 5808 -UBERON:0013713 posterior iliac spine 5 5809 -UBERON:0013710 posterior superior iliac spine 6 5810 -UBERON:0013711 posterior inferior iliac spine 6 5811 -UBERON:0013715 ilio-marsupialis muscle 4 5812 -UBERON:0013716 branch of ilio-marsupialis muscle 4 5813 -UBERON:0013719 dartos muscle of scrotum 4 5814 -UBERON:0013720 dartos muscle of labia majora 4 5815 -UBERON:0013748 ulnar metaphysis 4 5816 -UBERON:0013749 metaphysis of humerus 4 5817 -UBERON:0013750 metaphysis of tibia 4 5818 -UBERON:0013751 metaphysis of radius 4 5819 -UBERON:0013752 diaphysis of metacarpal bone 4 5820 -UBERON:0013774 diaphysis of metatarsal bone 4 5821 -UBERON:0014430 sciatic notch 4 5822 -UBERON:0014411 greater sciatic notch 5 5823 -UBERON:0014436 lesser sciatic notch 5 5824 -UBERON:0014437 iliac crest 4 5825 -UBERON:0014440 ischiopubic ramus 4 5826 -UBERON:0014441 ischial ramus 4 5827 -UBERON:0014442 superior ischial ramus 5 5828 -UBERON:0014443 inferior ischial ramus 5 5829 -UBERON:0014444 pubic ramus 4 5830 -UBERON:0014438 superior pubic ramus 5 5831 -UBERON:0014439 inferior pubic ramus 5 5832 -UBERON:0014446 acetabular notch 4 5833 -UBERON:0014898 lamina terminalis of ischium 4 5834 -UBERON:0015054 iliac endochondral element 4 5835 -UBERON:0001273 ilium 5 5836 -UBERON:4200220 iliac ramus 6 5837 -UBERON:0006247 iliac pre-cartilage condensation 5 5838 -UBERON:0010714 iliac cartilage element 5 5839 -UBERON:0015055 pubic endochondral element 4 5840 -UBERON:0001275 pubis 5 5841 -UBERON:0006285 pubic pre-cartilage condensation 5 5842 -UBERON:0010718 pubic cartilage element 5 5843 -UBERON:0015056 ischial endochondral element 4 5844 -UBERON:0001274 ischium 5 5845 -UBERON:0006254 ischial cartilage element 5 5846 -UBERON:0006255 ischial pre-cartilage condensation 5 5847 -UBERON:0015061 limb endochondral element 4 5848 -UBERON:0002428 limb bone 5 5849 -UBERON:0003464 hindlimb bone 6 5850 -UBERON:0003608 hindlimb long bone 7 5851 -UBERON:0000979 tibia 8 5852 -UBERON:0000981 femur 8 5853 -UBERON:0001446 fibula 8 5854 -UBERON:0001448 metatarsal bone 8 5855 -UBERON:0003650 metatarsal bone of digit 1 9 5856 -UBERON:0003651 metatarsal bone of digit 2 9 5857 -UBERON:0003652 metatarsal bone of digit 3 9 5858 -UBERON:0003653 metatarsal bone of digit 4 9 5859 -UBERON:0003654 metatarsal bone of digit 5 9 5860 -UBERON:0013588 fused metatarsal bones 3 and 4 9 5861 -UBERON:0014763 fused metatarsal bones 2-4 10 5862 -UBERON:4200153 metatarsal bone of digit 6 9 5863 -UBERON:4200157 metatarsal bone of digit 7 9 5864 -UBERON:4200158 metatarsal bone of digit 8 9 5865 -UBERON:0001449 phalanx of pes 8 5866 -UBERON:0003640 pedal digit 1 phalanx 9 5867 -UBERON:0004315 distal phalanx of pedal digit 1 10 5868 -UBERON:0004332 proximal phalanx of pedal digit 1 10 5869 -UBERON:0003641 pedal digit 2 phalanx 9 5870 -UBERON:0004316 distal phalanx of pedal digit 2 10 5871 -UBERON:0004324 middle phalanx of pedal digit 2 10 5872 -UBERON:0004333 proximal phalanx of pedal digit 2 10 5873 -UBERON:0003642 pedal digit 3 phalanx 9 5874 -UBERON:0004317 distal phalanx of pedal digit 3 10 5875 -UBERON:0004325 middle phalanx of pedal digit 3 10 5876 -UBERON:0004334 proximal phalanx of pedal digit 3 10 5877 -UBERON:0003862 pedal digit 4 phalanx 9 5878 -UBERON:0004318 distal phalanx of pedal digit 4 10 5879 -UBERON:0004326 middle phalanx of pedal digit 4 10 5880 -UBERON:0004335 proximal phalanx of pedal digit 4 10 5881 -UBERON:0003863 pedal digit 5 phalanx 9 5882 -UBERON:0004319 distal phalanx of pedal digit 5 10 5883 -UBERON:0004327 middle phalanx of pedal digit 5 10 5884 -UBERON:0004336 proximal phalanx of pedal digit 5 10 5885 -UBERON:0003866 middle phalanx of pes 9 5886 -UBERON:0004324 middle phalanx of pedal digit 2 10 5887 -UBERON:0004325 middle phalanx of pedal digit 3 10 5888 -UBERON:0004326 middle phalanx of pedal digit 4 10 5889 -UBERON:0004327 middle phalanx of pedal digit 5 10 5890 -UBERON:0003867 distal phalanx of pes 9 5891 -UBERON:0004315 distal phalanx of pedal digit 1 10 5892 -UBERON:0004316 distal phalanx of pedal digit 2 10 5893 -UBERON:0004317 distal phalanx of pedal digit 3 10 5894 -UBERON:0004318 distal phalanx of pedal digit 4 10 5895 -UBERON:0004319 distal phalanx of pedal digit 5 10 5896 -UBERON:0003868 proximal phalanx of pes 9 5897 -UBERON:0004332 proximal phalanx of pedal digit 1 10 5898 -UBERON:0004333 proximal phalanx of pedal digit 2 10 5899 -UBERON:0004334 proximal phalanx of pedal digit 3 10 5900 -UBERON:0004335 proximal phalanx of pedal digit 4 10 5901 -UBERON:0004336 proximal phalanx of pedal digit 5 10 5902 -UBERON:4100009 pedal digit 7 phalanx 9 5903 -UBERON:0012269 equine hindlimb splint bone 8 5904 -UBERON:0005893 leg bone 7 5905 -UBERON:0002446 patella 8 5906 -UBERON:0003826 upper leg bone 8 5907 -UBERON:0000981 femur 9 5908 -UBERON:0004251 hindlimb zeugopod bone 8 5909 -UBERON:0000979 tibia 9 5910 -UBERON:0001446 fibula 9 5911 -UBERON:0003467 sesamoid bone of gastrocnemius 9 5912 -UBERON:0006714 tibiofibula 9 5913 -UBERON:0010907 parafibula 9 5914 -UBERON:0012104 sesamoid bone of the peroneus longus muscle 9 5915 -UBERON:0005899 pes bone 7 5916 -UBERON:0001447 tarsal bone 8 5917 -UBERON:0001451 navicular bone of pes 9 5918 -UBERON:0006836 medial tibial tarsal bone 9 5919 -UBERON:0010721 distal tarsal bone 9 5920 -UBERON:0001452 distal tarsal bone 1 10 5921 -UBERON:0001453 distal tarsal bone 2 10 5922 -UBERON:0001454 distal tarsal bone 3 10 5923 -UBERON:0001455 cuboid bone 10 5924 -UBERON:0010723 os vesalianum pedis 10 5925 -UBERON:0010737 distal tarsal bone 4 10 5926 -UBERON:0010738 distal tarsal bone 5 10 5927 -UBERON:0012289 fused tarsal bones 2 and 3 10 5928 -UBERON:0013649 fused tarsal bones 1 and 2 10 5929 -UBERON:3001002 basale commune (tarsal) 10 5930 -UBERON:0011679 proximal tarsal bone 9 5931 -UBERON:0001450 calcaneus 10 5932 -UBERON:0002395 talus 10 5933 -UBERON:0011678 hindlimb intermedium bone 10 5934 -UBERON:0012126 fibulare 10 5935 -UBERON:0012288 centroquartal bone 9 5936 -UBERON:3010045 centrale 1 9 5937 -UBERON:3010073 centrale 2 9 5938 -UBERON:4200011 pedal centrale 9 5939 -UBERON:4200152 intertarsale sesamoid 9 5940 -UBERON:0008000 sesamoid bone of pes 8 5941 -UBERON:0007990 proximal sesamoid bone of pes 9 5942 -UBERON:4200152 intertarsale sesamoid 9 5943 -UBERON:0008195 tarsometatarsus 8 5944 -UBERON:0010725 accessory navicular bone 8 5945 -UBERON:0012359 pedal digitopodium bone 8 5946 -UBERON:0001448 metatarsal bone 9 5947 -UBERON:0003650 metatarsal bone of digit 1 10 5948 -UBERON:0003651 metatarsal bone of digit 2 10 5949 -UBERON:0003652 metatarsal bone of digit 3 10 5950 -UBERON:0003653 metatarsal bone of digit 4 10 5951 -UBERON:0003654 metatarsal bone of digit 5 10 5952 -UBERON:0013588 fused metatarsal bones 3 and 4 10 5953 -UBERON:0014763 fused metatarsal bones 2-4 11 5954 -UBERON:4200153 metatarsal bone of digit 6 10 5955 -UBERON:4200157 metatarsal bone of digit 7 10 5956 -UBERON:4200158 metatarsal bone of digit 8 10 5957 -UBERON:0004248 pedal digit bone 9 5958 -UBERON:0001449 phalanx of pes 10 5959 -UBERON:0003640 pedal digit 1 phalanx 11 5960 -UBERON:0004315 distal phalanx of pedal digit 1 12 5961 -UBERON:0004332 proximal phalanx of pedal digit 1 12 5962 -UBERON:0003641 pedal digit 2 phalanx 11 5963 -UBERON:0004316 distal phalanx of pedal digit 2 12 5964 -UBERON:0004324 middle phalanx of pedal digit 2 12 5965 -UBERON:0004333 proximal phalanx of pedal digit 2 12 5966 -UBERON:0003642 pedal digit 3 phalanx 11 5967 -UBERON:0004317 distal phalanx of pedal digit 3 12 5968 -UBERON:0004325 middle phalanx of pedal digit 3 12 5969 -UBERON:0004334 proximal phalanx of pedal digit 3 12 5970 -UBERON:0003862 pedal digit 4 phalanx 11 5971 -UBERON:0004318 distal phalanx of pedal digit 4 12 5972 -UBERON:0004326 middle phalanx of pedal digit 4 12 5973 -UBERON:0004335 proximal phalanx of pedal digit 4 12 5974 -UBERON:0003863 pedal digit 5 phalanx 11 5975 -UBERON:0004319 distal phalanx of pedal digit 5 12 5976 -UBERON:0004327 middle phalanx of pedal digit 5 12 5977 -UBERON:0004336 proximal phalanx of pedal digit 5 12 5978 -UBERON:0003866 middle phalanx of pes 11 5979 -UBERON:0004324 middle phalanx of pedal digit 2 12 5980 -UBERON:0004325 middle phalanx of pedal digit 3 12 5981 -UBERON:0004326 middle phalanx of pedal digit 4 12 5982 -UBERON:0004327 middle phalanx of pedal digit 5 12 5983 -UBERON:0003867 distal phalanx of pes 11 5984 -UBERON:0004315 distal phalanx of pedal digit 1 12 5985 -UBERON:0004316 distal phalanx of pedal digit 2 12 5986 -UBERON:0004317 distal phalanx of pedal digit 3 12 5987 -UBERON:0004318 distal phalanx of pedal digit 4 12 5988 -UBERON:0004319 distal phalanx of pedal digit 5 12 5989 -UBERON:0003868 proximal phalanx of pes 11 5990 -UBERON:0004332 proximal phalanx of pedal digit 1 12 5991 -UBERON:0004333 proximal phalanx of pedal digit 2 12 5992 -UBERON:0004334 proximal phalanx of pedal digit 3 12 5993 -UBERON:0004335 proximal phalanx of pedal digit 4 12 5994 -UBERON:0004336 proximal phalanx of pedal digit 5 12 5995 -UBERON:4100009 pedal digit 7 phalanx 11 5996 -UBERON:0007990 proximal sesamoid bone of pes 10 5997 -UBERON:3000931 intercalary element of hind digit 10 5998 -UBERON:3010675 bony nodule of terminal phalanx of hind digit 10 5999 -UBERON:0012269 equine hindlimb splint bone 9 6000 -UBERON:0008194 tibiotarsus 7 6001 -UBERON:0003606 limb long bone 6 6002 -UBERON:0003221 phalanx 7 6003 -UBERON:0001436 phalanx of manus 8 6004 -UBERON:0002234 proximal phalanx of manus 9 6005 -UBERON:0004328 proximal phalanx of manual digit 2 10 6006 -UBERON:0004329 proximal phalanx of manual digit 3 10 6007 -UBERON:0004330 proximal phalanx of manual digit 4 10 6008 -UBERON:0004331 proximal phalanx of manual digit 5 10 6009 -UBERON:0004338 proximal phalanx of manual digit 1 10 6010 -UBERON:0003620 manual digit 1 phalanx 9 6011 -UBERON:0004337 distal phalanx of manual digit 1 10 6012 -UBERON:0004338 proximal phalanx of manual digit 1 10 6013 -UBERON:4200219 middle phalanx of manual digit 1 10 6014 -UBERON:0003636 manual digit 2 phalanx 9 6015 -UBERON:0004311 distal phalanx of manual digit 2 10 6016 -UBERON:0004320 middle phalanx of manual digit 2 10 6017 -UBERON:0004328 proximal phalanx of manual digit 2 10 6018 -UBERON:0003637 manual digit 3 phalanx 9 6019 -UBERON:0004312 distal phalanx of manual digit 3 10 6020 -UBERON:0004321 middle phalanx of manual digit 3 10 6021 -UBERON:0004329 proximal phalanx of manual digit 3 10 6022 -UBERON:0003638 manual digit 4 phalanx 9 6023 -UBERON:0004313 distal phalanx of manual digit 4 10 6024 -UBERON:0004322 middle phalanx of manual digit 4 10 6025 -UBERON:0004330 proximal phalanx of manual digit 4 10 6026 -UBERON:0003639 manual digit 5 phalanx 9 6027 -UBERON:0004314 distal phalanx of manual digit 5 10 6028 -UBERON:0004323 middle phalanx of manual digit 5 10 6029 -UBERON:0004331 proximal phalanx of manual digit 5 10 6030 -UBERON:0003864 middle phalanx of manus 9 6031 -UBERON:0004320 middle phalanx of manual digit 2 10 6032 -UBERON:0004321 middle phalanx of manual digit 3 10 6033 -UBERON:0004322 middle phalanx of manual digit 4 10 6034 -UBERON:0004323 middle phalanx of manual digit 5 10 6035 -UBERON:4200219 middle phalanx of manual digit 1 10 6036 -UBERON:0003865 distal phalanx of manus 9 6037 -UBERON:0004311 distal phalanx of manual digit 2 10 6038 -UBERON:0004312 distal phalanx of manual digit 3 10 6039 -UBERON:0004313 distal phalanx of manual digit 4 10 6040 -UBERON:0004314 distal phalanx of manual digit 5 10 6041 -UBERON:0004337 distal phalanx of manual digit 1 10 6042 -UBERON:0001449 phalanx of pes 8 6043 -UBERON:0003640 pedal digit 1 phalanx 9 6044 -UBERON:0004315 distal phalanx of pedal digit 1 10 6045 -UBERON:0004332 proximal phalanx of pedal digit 1 10 6046 -UBERON:0003641 pedal digit 2 phalanx 9 6047 -UBERON:0004316 distal phalanx of pedal digit 2 10 6048 -UBERON:0004324 middle phalanx of pedal digit 2 10 6049 -UBERON:0004333 proximal phalanx of pedal digit 2 10 6050 -UBERON:0003642 pedal digit 3 phalanx 9 6051 -UBERON:0004317 distal phalanx of pedal digit 3 10 6052 -UBERON:0004325 middle phalanx of pedal digit 3 10 6053 -UBERON:0004334 proximal phalanx of pedal digit 3 10 6054 -UBERON:0003862 pedal digit 4 phalanx 9 6055 -UBERON:0004318 distal phalanx of pedal digit 4 10 6056 -UBERON:0004326 middle phalanx of pedal digit 4 10 6057 -UBERON:0004335 proximal phalanx of pedal digit 4 10 6058 -UBERON:0003863 pedal digit 5 phalanx 9 6059 -UBERON:0004319 distal phalanx of pedal digit 5 10 6060 -UBERON:0004327 middle phalanx of pedal digit 5 10 6061 -UBERON:0004336 proximal phalanx of pedal digit 5 10 6062 -UBERON:0003866 middle phalanx of pes 9 6063 -UBERON:0004324 middle phalanx of pedal digit 2 10 6064 -UBERON:0004325 middle phalanx of pedal digit 3 10 6065 -UBERON:0004326 middle phalanx of pedal digit 4 10 6066 -UBERON:0004327 middle phalanx of pedal digit 5 10 6067 -UBERON:0003867 distal phalanx of pes 9 6068 -UBERON:0004315 distal phalanx of pedal digit 1 10 6069 -UBERON:0004316 distal phalanx of pedal digit 2 10 6070 -UBERON:0004317 distal phalanx of pedal digit 3 10 6071 -UBERON:0004318 distal phalanx of pedal digit 4 10 6072 -UBERON:0004319 distal phalanx of pedal digit 5 10 6073 -UBERON:0003868 proximal phalanx of pes 9 6074 -UBERON:0004332 proximal phalanx of pedal digit 1 10 6075 -UBERON:0004333 proximal phalanx of pedal digit 2 10 6076 -UBERON:0004334 proximal phalanx of pedal digit 3 10 6077 -UBERON:0004335 proximal phalanx of pedal digit 4 10 6078 -UBERON:0004336 proximal phalanx of pedal digit 5 10 6079 -UBERON:4100009 pedal digit 7 phalanx 9 6080 -UBERON:0004300 distal phalanx 8 6081 -UBERON:0003865 distal phalanx of manus 9 6082 -UBERON:0004311 distal phalanx of manual digit 2 10 6083 -UBERON:0004312 distal phalanx of manual digit 3 10 6084 -UBERON:0004313 distal phalanx of manual digit 4 10 6085 -UBERON:0004314 distal phalanx of manual digit 5 10 6086 -UBERON:0004337 distal phalanx of manual digit 1 10 6087 -UBERON:0003867 distal phalanx of pes 9 6088 -UBERON:0004315 distal phalanx of pedal digit 1 10 6089 -UBERON:0004316 distal phalanx of pedal digit 2 10 6090 -UBERON:0004317 distal phalanx of pedal digit 3 10 6091 -UBERON:0004318 distal phalanx of pedal digit 4 10 6092 -UBERON:0004319 distal phalanx of pedal digit 5 10 6093 -UBERON:0014483 distal phalanx of digit 1 9 6094 -UBERON:0004315 distal phalanx of pedal digit 1 10 6095 -UBERON:0004337 distal phalanx of manual digit 1 10 6096 -UBERON:0014484 distal phalanx of digit 2 9 6097 -UBERON:0004311 distal phalanx of manual digit 2 10 6098 -UBERON:0004316 distal phalanx of pedal digit 2 10 6099 -UBERON:0014485 distal phalanx of digit 3 9 6100 -UBERON:0004312 distal phalanx of manual digit 3 10 6101 -UBERON:0004317 distal phalanx of pedal digit 3 10 6102 -UBERON:0014486 distal phalanx of digit 4 9 6103 -UBERON:0004313 distal phalanx of manual digit 4 10 6104 -UBERON:0004318 distal phalanx of pedal digit 4 10 6105 -UBERON:0014487 distal phalanx of digit 5 9 6106 -UBERON:0004314 distal phalanx of manual digit 5 10 6107 -UBERON:0004319 distal phalanx of pedal digit 5 10 6108 -UBERON:3010746 T-shaped terminal phalanx 9 6109 -UBERON:0004301 middle phalanx 8 6110 -UBERON:0003864 middle phalanx of manus 9 6111 -UBERON:0004320 middle phalanx of manual digit 2 10 6112 -UBERON:0004321 middle phalanx of manual digit 3 10 6113 -UBERON:0004322 middle phalanx of manual digit 4 10 6114 -UBERON:0004323 middle phalanx of manual digit 5 10 6115 -UBERON:4200219 middle phalanx of manual digit 1 10 6116 -UBERON:0003866 middle phalanx of pes 9 6117 -UBERON:0004324 middle phalanx of pedal digit 2 10 6118 -UBERON:0004325 middle phalanx of pedal digit 3 10 6119 -UBERON:0004326 middle phalanx of pedal digit 4 10 6120 -UBERON:0004327 middle phalanx of pedal digit 5 10 6121 -UBERON:0014488 middle phalanx of digit 2 9 6122 -UBERON:0004320 middle phalanx of manual digit 2 10 6123 -UBERON:0004324 middle phalanx of pedal digit 2 10 6124 -UBERON:0014489 middle phalanx of digit 3 9 6125 -UBERON:0004321 middle phalanx of manual digit 3 10 6126 -UBERON:0004325 middle phalanx of pedal digit 3 10 6127 -UBERON:0009555 short pastern bone 10 6128 -UBERON:0014490 middle phalanx of digit 4 9 6129 -UBERON:0004322 middle phalanx of manual digit 4 10 6130 -UBERON:0004326 middle phalanx of pedal digit 4 10 6131 -UBERON:0014491 middle phalanx of digit 5 9 6132 -UBERON:0004323 middle phalanx of manual digit 5 10 6133 -UBERON:0004327 middle phalanx of pedal digit 5 10 6134 -UBERON:0004302 proximal phalanx 8 6135 -UBERON:0002234 proximal phalanx of manus 9 6136 -UBERON:0004328 proximal phalanx of manual digit 2 10 6137 -UBERON:0004329 proximal phalanx of manual digit 3 10 6138 -UBERON:0004330 proximal phalanx of manual digit 4 10 6139 -UBERON:0004331 proximal phalanx of manual digit 5 10 6140 -UBERON:0004338 proximal phalanx of manual digit 1 10 6141 -UBERON:0003868 proximal phalanx of pes 9 6142 -UBERON:0004332 proximal phalanx of pedal digit 1 10 6143 -UBERON:0004333 proximal phalanx of pedal digit 2 10 6144 -UBERON:0004334 proximal phalanx of pedal digit 3 10 6145 -UBERON:0004335 proximal phalanx of pedal digit 4 10 6146 -UBERON:0004336 proximal phalanx of pedal digit 5 10 6147 -UBERON:0014501 proximal phalanx of digit 1 9 6148 -UBERON:0004332 proximal phalanx of pedal digit 1 10 6149 -UBERON:0004338 proximal phalanx of manual digit 1 10 6150 -UBERON:0014502 proximal phalanx of digit 2 9 6151 -UBERON:0004328 proximal phalanx of manual digit 2 10 6152 -UBERON:0004333 proximal phalanx of pedal digit 2 10 6153 -UBERON:0014503 proximal phalanx of digit 3 9 6154 -UBERON:0004329 proximal phalanx of manual digit 3 10 6155 -UBERON:0004334 proximal phalanx of pedal digit 3 10 6156 -UBERON:0009556 long pastern bone 10 6157 -UBERON:0014504 proximal phalanx of digit 4 9 6158 -UBERON:0004330 proximal phalanx of manual digit 4 10 6159 -UBERON:0004335 proximal phalanx of pedal digit 4 10 6160 -UBERON:0014505 proximal phalanx of digit 5 9 6161 -UBERON:0004331 proximal phalanx of manual digit 5 10 6162 -UBERON:0004336 proximal phalanx of pedal digit 5 10 6163 -UBERON:0009558 pastern bone 8 6164 -UBERON:0009555 short pastern bone 9 6165 -UBERON:0009556 long pastern bone 9 6166 -UBERON:0018266 third phalanx 8 6167 -UBERON:0018322 fourth phalanx 8 6168 -UBERON:4100005 second phalanx 8 6169 -UBERON:0003607 forelimb long bone 7 6170 -UBERON:0000976 humerus 8 6171 -UBERON:0001423 radius bone 8 6172 -UBERON:0001424 ulna 8 6173 -UBERON:0001436 phalanx of manus 8 6174 -UBERON:0002234 proximal phalanx of manus 9 6175 -UBERON:0004328 proximal phalanx of manual digit 2 10 6176 -UBERON:0004329 proximal phalanx of manual digit 3 10 6177 -UBERON:0004330 proximal phalanx of manual digit 4 10 6178 -UBERON:0004331 proximal phalanx of manual digit 5 10 6179 -UBERON:0004338 proximal phalanx of manual digit 1 10 6180 -UBERON:0003620 manual digit 1 phalanx 9 6181 -UBERON:0004337 distal phalanx of manual digit 1 10 6182 -UBERON:0004338 proximal phalanx of manual digit 1 10 6183 -UBERON:4200219 middle phalanx of manual digit 1 10 6184 -UBERON:0003636 manual digit 2 phalanx 9 6185 -UBERON:0004311 distal phalanx of manual digit 2 10 6186 -UBERON:0004320 middle phalanx of manual digit 2 10 6187 -UBERON:0004328 proximal phalanx of manual digit 2 10 6188 -UBERON:0003637 manual digit 3 phalanx 9 6189 -UBERON:0004312 distal phalanx of manual digit 3 10 6190 -UBERON:0004321 middle phalanx of manual digit 3 10 6191 -UBERON:0004329 proximal phalanx of manual digit 3 10 6192 -UBERON:0003638 manual digit 4 phalanx 9 6193 -UBERON:0004313 distal phalanx of manual digit 4 10 6194 -UBERON:0004322 middle phalanx of manual digit 4 10 6195 -UBERON:0004330 proximal phalanx of manual digit 4 10 6196 -UBERON:0003639 manual digit 5 phalanx 9 6197 -UBERON:0004314 distal phalanx of manual digit 5 10 6198 -UBERON:0004323 middle phalanx of manual digit 5 10 6199 -UBERON:0004331 proximal phalanx of manual digit 5 10 6200 -UBERON:0003864 middle phalanx of manus 9 6201 -UBERON:0004320 middle phalanx of manual digit 2 10 6202 -UBERON:0004321 middle phalanx of manual digit 3 10 6203 -UBERON:0004322 middle phalanx of manual digit 4 10 6204 -UBERON:0004323 middle phalanx of manual digit 5 10 6205 -UBERON:4200219 middle phalanx of manual digit 1 10 6206 -UBERON:0003865 distal phalanx of manus 9 6207 -UBERON:0004311 distal phalanx of manual digit 2 10 6208 -UBERON:0004312 distal phalanx of manual digit 3 10 6209 -UBERON:0004313 distal phalanx of manual digit 4 10 6210 -UBERON:0004314 distal phalanx of manual digit 5 10 6211 -UBERON:0004337 distal phalanx of manual digit 1 10 6212 -UBERON:0002374 metacarpal bone 8 6213 -UBERON:0003645 metacarpal bone of digit 1 9 6214 -UBERON:0003646 metacarpal bone of digit 2 9 6215 -UBERON:0003647 metacarpal bone of digit 3 9 6216 -UBERON:0003648 metacarpal bone of digit 4 9 6217 -UBERON:0003649 metacarpal bone of digit 5 9 6218 -UBERON:0013587 fused metacarpal bones 3 and 4 9 6219 -UBERON:0012268 equine forelimb splint bone 8 6220 -UBERON:0003608 hindlimb long bone 7 6221 -UBERON:0000979 tibia 8 6222 -UBERON:0000981 femur 8 6223 -UBERON:0001446 fibula 8 6224 -UBERON:0001448 metatarsal bone 8 6225 -UBERON:0003650 metatarsal bone of digit 1 9 6226 -UBERON:0003651 metatarsal bone of digit 2 9 6227 -UBERON:0003652 metatarsal bone of digit 3 9 6228 -UBERON:0003653 metatarsal bone of digit 4 9 6229 -UBERON:0003654 metatarsal bone of digit 5 9 6230 -UBERON:0013588 fused metatarsal bones 3 and 4 9 6231 -UBERON:0014763 fused metatarsal bones 2-4 10 6232 -UBERON:4200153 metatarsal bone of digit 6 9 6233 -UBERON:4200157 metatarsal bone of digit 7 9 6234 -UBERON:4200158 metatarsal bone of digit 8 9 6235 -UBERON:0001449 phalanx of pes 8 6236 -UBERON:0003640 pedal digit 1 phalanx 9 6237 -UBERON:0004315 distal phalanx of pedal digit 1 10 6238 -UBERON:0004332 proximal phalanx of pedal digit 1 10 6239 -UBERON:0003641 pedal digit 2 phalanx 9 6240 -UBERON:0004316 distal phalanx of pedal digit 2 10 6241 -UBERON:0004324 middle phalanx of pedal digit 2 10 6242 -UBERON:0004333 proximal phalanx of pedal digit 2 10 6243 -UBERON:0003642 pedal digit 3 phalanx 9 6244 -UBERON:0004317 distal phalanx of pedal digit 3 10 6245 -UBERON:0004325 middle phalanx of pedal digit 3 10 6246 -UBERON:0004334 proximal phalanx of pedal digit 3 10 6247 -UBERON:0003862 pedal digit 4 phalanx 9 6248 -UBERON:0004318 distal phalanx of pedal digit 4 10 6249 -UBERON:0004326 middle phalanx of pedal digit 4 10 6250 -UBERON:0004335 proximal phalanx of pedal digit 4 10 6251 -UBERON:0003863 pedal digit 5 phalanx 9 6252 -UBERON:0004319 distal phalanx of pedal digit 5 10 6253 -UBERON:0004327 middle phalanx of pedal digit 5 10 6254 -UBERON:0004336 proximal phalanx of pedal digit 5 10 6255 -UBERON:0003866 middle phalanx of pes 9 6256 -UBERON:0004324 middle phalanx of pedal digit 2 10 6257 -UBERON:0004325 middle phalanx of pedal digit 3 10 6258 -UBERON:0004326 middle phalanx of pedal digit 4 10 6259 -UBERON:0004327 middle phalanx of pedal digit 5 10 6260 -UBERON:0003867 distal phalanx of pes 9 6261 -UBERON:0004315 distal phalanx of pedal digit 1 10 6262 -UBERON:0004316 distal phalanx of pedal digit 2 10 6263 -UBERON:0004317 distal phalanx of pedal digit 3 10 6264 -UBERON:0004318 distal phalanx of pedal digit 4 10 6265 -UBERON:0004319 distal phalanx of pedal digit 5 10 6266 -UBERON:0003868 proximal phalanx of pes 9 6267 -UBERON:0004332 proximal phalanx of pedal digit 1 10 6268 -UBERON:0004333 proximal phalanx of pedal digit 2 10 6269 -UBERON:0004334 proximal phalanx of pedal digit 3 10 6270 -UBERON:0004335 proximal phalanx of pedal digit 4 10 6271 -UBERON:0004336 proximal phalanx of pedal digit 5 10 6272 -UBERON:4100009 pedal digit 7 phalanx 9 6273 -UBERON:0012269 equine hindlimb splint bone 8 6274 -UBERON:0003821 metapodium bone 7 6275 -UBERON:0001448 metatarsal bone 8 6276 -UBERON:0003650 metatarsal bone of digit 1 9 6277 -UBERON:0003651 metatarsal bone of digit 2 9 6278 -UBERON:0003652 metatarsal bone of digit 3 9 6279 -UBERON:0003653 metatarsal bone of digit 4 9 6280 -UBERON:0003654 metatarsal bone of digit 5 9 6281 -UBERON:0013588 fused metatarsal bones 3 and 4 9 6282 -UBERON:0014763 fused metatarsal bones 2-4 10 6283 -UBERON:4200153 metatarsal bone of digit 6 9 6284 -UBERON:4200157 metatarsal bone of digit 7 9 6285 -UBERON:4200158 metatarsal bone of digit 8 9 6286 -UBERON:0002374 metacarpal bone 8 6287 -UBERON:0003645 metacarpal bone of digit 1 9 6288 -UBERON:0003646 metacarpal bone of digit 2 9 6289 -UBERON:0003647 metacarpal bone of digit 3 9 6290 -UBERON:0003648 metacarpal bone of digit 4 9 6291 -UBERON:0003649 metacarpal bone of digit 5 9 6292 -UBERON:0013587 fused metacarpal bones 3 and 4 9 6293 -UBERON:0012267 equine splint bone 8 6294 -UBERON:0012268 equine forelimb splint bone 9 6295 -UBERON:0012269 equine hindlimb splint bone 9 6296 -UBERON:0013581 metapodium bone 1 8 6297 -UBERON:0003645 metacarpal bone of digit 1 9 6298 -UBERON:0003650 metatarsal bone of digit 1 9 6299 -UBERON:0013582 metapodium bone 2 8 6300 -UBERON:0003646 metacarpal bone of digit 2 9 6301 -UBERON:0003651 metatarsal bone of digit 2 9 6302 -UBERON:0013583 metapodium bone 3 8 6303 -UBERON:0003647 metacarpal bone of digit 3 9 6304 -UBERON:0003652 metatarsal bone of digit 3 9 6305 -UBERON:0013584 metapodium bone 4 8 6306 -UBERON:0003648 metacarpal bone of digit 4 9 6307 -UBERON:0003653 metatarsal bone of digit 4 9 6308 -UBERON:0013585 metapodium bone 5 8 6309 -UBERON:0003649 metacarpal bone of digit 5 9 6310 -UBERON:0003654 metatarsal bone of digit 5 9 6311 -UBERON:0013586 fused metapodial bones 3 and 4 8 6312 -UBERON:0013587 fused metacarpal bones 3 and 4 9 6313 -UBERON:0013588 fused metatarsal bones 3 and 4 9 6314 -UBERON:0014763 fused metatarsal bones 2-4 10 6315 -UBERON:0014762 fused metapodial bones 2-4 9 6316 -UBERON:0014763 fused metatarsal bones 2-4 10 6317 -UBERON:4200154 metapodium bone 6 8 6318 -UBERON:4200153 metatarsal bone of digit 6 9 6319 -UBERON:4200155 metapodium bone 7 8 6320 -UBERON:4200157 metatarsal bone of digit 7 9 6321 -UBERON:4200156 metapodium bone 8 8 6322 -UBERON:4200158 metatarsal bone of digit 8 9 6323 -UBERON:0008962 forelimb bone 6 6324 -UBERON:0003460 arm bone 7 6325 -UBERON:0003466 forelimb zeugopod bone 8 6326 -UBERON:0001423 radius bone 9 6327 -UBERON:0001424 ulna 9 6328 -UBERON:0006715 radio-ulna 9 6329 -UBERON:0007993 ulnar sesamoid bone 9 6330 -UBERON:0004250 upper arm bone 8 6331 -UBERON:0000976 humerus 9 6332 -UBERON:0003607 forelimb long bone 7 6333 -UBERON:0000976 humerus 8 6334 -UBERON:0001423 radius bone 8 6335 -UBERON:0001424 ulna 8 6336 -UBERON:0001436 phalanx of manus 8 6337 -UBERON:0002234 proximal phalanx of manus 9 6338 -UBERON:0004328 proximal phalanx of manual digit 2 10 6339 -UBERON:0004329 proximal phalanx of manual digit 3 10 6340 -UBERON:0004330 proximal phalanx of manual digit 4 10 6341 -UBERON:0004331 proximal phalanx of manual digit 5 10 6342 -UBERON:0004338 proximal phalanx of manual digit 1 10 6343 -UBERON:0003620 manual digit 1 phalanx 9 6344 -UBERON:0004337 distal phalanx of manual digit 1 10 6345 -UBERON:0004338 proximal phalanx of manual digit 1 10 6346 -UBERON:4200219 middle phalanx of manual digit 1 10 6347 -UBERON:0003636 manual digit 2 phalanx 9 6348 -UBERON:0004311 distal phalanx of manual digit 2 10 6349 -UBERON:0004320 middle phalanx of manual digit 2 10 6350 -UBERON:0004328 proximal phalanx of manual digit 2 10 6351 -UBERON:0003637 manual digit 3 phalanx 9 6352 -UBERON:0004312 distal phalanx of manual digit 3 10 6353 -UBERON:0004321 middle phalanx of manual digit 3 10 6354 -UBERON:0004329 proximal phalanx of manual digit 3 10 6355 -UBERON:0003638 manual digit 4 phalanx 9 6356 -UBERON:0004313 distal phalanx of manual digit 4 10 6357 -UBERON:0004322 middle phalanx of manual digit 4 10 6358 -UBERON:0004330 proximal phalanx of manual digit 4 10 6359 -UBERON:0003639 manual digit 5 phalanx 9 6360 -UBERON:0004314 distal phalanx of manual digit 5 10 6361 -UBERON:0004323 middle phalanx of manual digit 5 10 6362 -UBERON:0004331 proximal phalanx of manual digit 5 10 6363 -UBERON:0003864 middle phalanx of manus 9 6364 -UBERON:0004320 middle phalanx of manual digit 2 10 6365 -UBERON:0004321 middle phalanx of manual digit 3 10 6366 -UBERON:0004322 middle phalanx of manual digit 4 10 6367 -UBERON:0004323 middle phalanx of manual digit 5 10 6368 -UBERON:4200219 middle phalanx of manual digit 1 10 6369 -UBERON:0003865 distal phalanx of manus 9 6370 -UBERON:0004311 distal phalanx of manual digit 2 10 6371 -UBERON:0004312 distal phalanx of manual digit 3 10 6372 -UBERON:0004313 distal phalanx of manual digit 4 10 6373 -UBERON:0004314 distal phalanx of manual digit 5 10 6374 -UBERON:0004337 distal phalanx of manual digit 1 10 6375 -UBERON:0002374 metacarpal bone 8 6376 -UBERON:0003645 metacarpal bone of digit 1 9 6377 -UBERON:0003646 metacarpal bone of digit 2 9 6378 -UBERON:0003647 metacarpal bone of digit 3 9 6379 -UBERON:0003648 metacarpal bone of digit 4 9 6380 -UBERON:0003649 metacarpal bone of digit 5 9 6381 -UBERON:0013587 fused metacarpal bones 3 and 4 9 6382 -UBERON:0012268 equine forelimb splint bone 8 6383 -UBERON:0005897 manus bone 7 6384 -UBERON:0001435 carpal bone 8 6385 -UBERON:0001480 proximal carpal bone 9 6386 -UBERON:0001427 radiale 10 6387 -UBERON:0001428 intermedium 10 6388 -UBERON:0001429 pisiform 10 6389 -UBERON:0002445 ulnare 10 6390 -UBERON:0007960 scapholunate 10 6391 -UBERON:0012124 avian scapholunar bone 10 6392 -UBERON:0001481 distal carpal bone 9 6393 -UBERON:0001430 distal carpal bone 1 10 6394 -UBERON:0001431 distal carpal bone 2 10 6395 -UBERON:0001432 distal carpal bone 3 10 6396 -UBERON:0001433 distal carpal bone 4 10 6397 -UBERON:0010726 os vesalianum manus 10 6398 -UBERON:0010739 distal carpal bone 5 10 6399 -UBERON:0012290 fused carpal bones 2 and 3 10 6400 -UBERON:3000965 basale commune (carpal) 10 6401 -UBERON:0007958 central carpal bone 9 6402 -UBERON:0007959 falciform carpal bone 9 6403 -UBERON:0008257 radial sesamoid 9 6404 -UBERON:3010060 centrale (fore) 9 6405 -UBERON:4200180 semilunate carpal 9 6406 -UBERON:0007997 sesamoid bone of manus 8 6407 -UBERON:0001429 pisiform 9 6408 -UBERON:0007991 proximal sesamoid bone of manus 9 6409 -UBERON:0008257 radial sesamoid 9 6410 -UBERON:0011205 carpometacarpus 8 6411 -UBERON:0012358 manual digitopodium bone 8 6412 -UBERON:0002374 metacarpal bone 9 6413 -UBERON:0003645 metacarpal bone of digit 1 10 6414 -UBERON:0003646 metacarpal bone of digit 2 10 6415 -UBERON:0003647 metacarpal bone of digit 3 10 6416 -UBERON:0003648 metacarpal bone of digit 4 10 6417 -UBERON:0003649 metacarpal bone of digit 5 10 6418 -UBERON:0013587 fused metacarpal bones 3 and 4 10 6419 -UBERON:0004249 manual digit bone 9 6420 -UBERON:0001436 phalanx of manus 10 6421 -UBERON:0002234 proximal phalanx of manus 11 6422 -UBERON:0004328 proximal phalanx of manual digit 2 12 6423 -UBERON:0004329 proximal phalanx of manual digit 3 12 6424 -UBERON:0004330 proximal phalanx of manual digit 4 12 6425 -UBERON:0004331 proximal phalanx of manual digit 5 12 6426 -UBERON:0004338 proximal phalanx of manual digit 1 12 6427 -UBERON:0003620 manual digit 1 phalanx 11 6428 -UBERON:0004337 distal phalanx of manual digit 1 12 6429 -UBERON:0004338 proximal phalanx of manual digit 1 12 6430 -UBERON:4200219 middle phalanx of manual digit 1 12 6431 -UBERON:0003636 manual digit 2 phalanx 11 6432 -UBERON:0004311 distal phalanx of manual digit 2 12 6433 -UBERON:0004320 middle phalanx of manual digit 2 12 6434 -UBERON:0004328 proximal phalanx of manual digit 2 12 6435 -UBERON:0003637 manual digit 3 phalanx 11 6436 -UBERON:0004312 distal phalanx of manual digit 3 12 6437 -UBERON:0004321 middle phalanx of manual digit 3 12 6438 -UBERON:0004329 proximal phalanx of manual digit 3 12 6439 -UBERON:0003638 manual digit 4 phalanx 11 6440 -UBERON:0004313 distal phalanx of manual digit 4 12 6441 -UBERON:0004322 middle phalanx of manual digit 4 12 6442 -UBERON:0004330 proximal phalanx of manual digit 4 12 6443 -UBERON:0003639 manual digit 5 phalanx 11 6444 -UBERON:0004314 distal phalanx of manual digit 5 12 6445 -UBERON:0004323 middle phalanx of manual digit 5 12 6446 -UBERON:0004331 proximal phalanx of manual digit 5 12 6447 -UBERON:0003864 middle phalanx of manus 11 6448 -UBERON:0004320 middle phalanx of manual digit 2 12 6449 -UBERON:0004321 middle phalanx of manual digit 3 12 6450 -UBERON:0004322 middle phalanx of manual digit 4 12 6451 -UBERON:0004323 middle phalanx of manual digit 5 12 6452 -UBERON:4200219 middle phalanx of manual digit 1 12 6453 -UBERON:0003865 distal phalanx of manus 11 6454 -UBERON:0004311 distal phalanx of manual digit 2 12 6455 -UBERON:0004312 distal phalanx of manual digit 3 12 6456 -UBERON:0004313 distal phalanx of manual digit 4 12 6457 -UBERON:0004314 distal phalanx of manual digit 5 12 6458 -UBERON:0004337 distal phalanx of manual digit 1 12 6459 -UBERON:0007991 proximal sesamoid bone of manus 10 6460 -UBERON:3000856 intercalary element of fore digit 10 6461 -UBERON:0012268 equine forelimb splint bone 9 6462 -UBERON:4200116 pteroid 7 6463 -UBERON:0011250 autopod bone 6 6464 -UBERON:0003656 mesopodium bone 7 6465 -UBERON:0001435 carpal bone 8 6466 -UBERON:0001480 proximal carpal bone 9 6467 -UBERON:0001427 radiale 10 6468 -UBERON:0001428 intermedium 10 6469 -UBERON:0001429 pisiform 10 6470 -UBERON:0002445 ulnare 10 6471 -UBERON:0007960 scapholunate 10 6472 -UBERON:0012124 avian scapholunar bone 10 6473 -UBERON:0001481 distal carpal bone 9 6474 -UBERON:0001430 distal carpal bone 1 10 6475 -UBERON:0001431 distal carpal bone 2 10 6476 -UBERON:0001432 distal carpal bone 3 10 6477 -UBERON:0001433 distal carpal bone 4 10 6478 -UBERON:0010726 os vesalianum manus 10 6479 -UBERON:0010739 distal carpal bone 5 10 6480 -UBERON:0012290 fused carpal bones 2 and 3 10 6481 -UBERON:3000965 basale commune (carpal) 10 6482 -UBERON:0007958 central carpal bone 9 6483 -UBERON:0007959 falciform carpal bone 9 6484 -UBERON:0008257 radial sesamoid 9 6485 -UBERON:3010060 centrale (fore) 9 6486 -UBERON:4200180 semilunate carpal 9 6487 -UBERON:0001447 tarsal bone 8 6488 -UBERON:0001451 navicular bone of pes 9 6489 -UBERON:0006836 medial tibial tarsal bone 9 6490 -UBERON:0010721 distal tarsal bone 9 6491 -UBERON:0001452 distal tarsal bone 1 10 6492 -UBERON:0001453 distal tarsal bone 2 10 6493 -UBERON:0001454 distal tarsal bone 3 10 6494 -UBERON:0001455 cuboid bone 10 6495 -UBERON:0010723 os vesalianum pedis 10 6496 -UBERON:0010737 distal tarsal bone 4 10 6497 -UBERON:0010738 distal tarsal bone 5 10 6498 -UBERON:0012289 fused tarsal bones 2 and 3 10 6499 -UBERON:0013649 fused tarsal bones 1 and 2 10 6500 -UBERON:3001002 basale commune (tarsal) 10 6501 -UBERON:0011679 proximal tarsal bone 9 6502 -UBERON:0001450 calcaneus 10 6503 -UBERON:0002395 talus 10 6504 -UBERON:0011678 hindlimb intermedium bone 10 6505 -UBERON:0012126 fibulare 10 6506 -UBERON:0012288 centroquartal bone 9 6507 -UBERON:3010045 centrale 1 9 6508 -UBERON:3010073 centrale 2 9 6509 -UBERON:4200011 pedal centrale 9 6510 -UBERON:4200152 intertarsale sesamoid 9 6511 -UBERON:0012131 centrale 8 6512 -UBERON:0001451 navicular bone of pes 9 6513 -UBERON:0007958 central carpal bone 9 6514 -UBERON:3010045 centrale 1 9 6515 -UBERON:3010060 centrale (fore) 9 6516 -UBERON:3010073 centrale 2 9 6517 -UBERON:4200011 pedal centrale 9 6518 -UBERON:4200083 postaxial centrale 9 6519 -UBERON:4200084 preaxial centrale 9 6520 -UBERON:0014395 proximal mesopodial bone 8 6521 -UBERON:0001480 proximal carpal bone 9 6522 -UBERON:0001427 radiale 10 6523 -UBERON:0001428 intermedium 10 6524 -UBERON:0001429 pisiform 10 6525 -UBERON:0002445 ulnare 10 6526 -UBERON:0007960 scapholunate 10 6527 -UBERON:0012124 avian scapholunar bone 10 6528 -UBERON:0011679 proximal tarsal bone 9 6529 -UBERON:0001450 calcaneus 10 6530 -UBERON:0002395 talus 10 6531 -UBERON:0011678 hindlimb intermedium bone 10 6532 -UBERON:0012126 fibulare 10 6533 -UBERON:0018102 distal mesopodial bone 8 6534 -UBERON:0001481 distal carpal bone 9 6535 -UBERON:0001430 distal carpal bone 1 10 6536 -UBERON:0001431 distal carpal bone 2 10 6537 -UBERON:0001432 distal carpal bone 3 10 6538 -UBERON:0001433 distal carpal bone 4 10 6539 -UBERON:0010726 os vesalianum manus 10 6540 -UBERON:0010739 distal carpal bone 5 10 6541 -UBERON:0012290 fused carpal bones 2 and 3 10 6542 -UBERON:3000965 basale commune (carpal) 10 6543 -UBERON:0010721 distal tarsal bone 9 6544 -UBERON:0001452 distal tarsal bone 1 10 6545 -UBERON:0001453 distal tarsal bone 2 10 6546 -UBERON:0001454 distal tarsal bone 3 10 6547 -UBERON:0001455 cuboid bone 10 6548 -UBERON:0010723 os vesalianum pedis 10 6549 -UBERON:0010737 distal tarsal bone 4 10 6550 -UBERON:0010738 distal tarsal bone 5 10 6551 -UBERON:0012289 fused tarsal bones 2 and 3 10 6552 -UBERON:0013649 fused tarsal bones 1 and 2 10 6553 -UBERON:3001002 basale commune (tarsal) 10 6554 -UBERON:0005897 manus bone 7 6555 -UBERON:0001435 carpal bone 8 6556 -UBERON:0001480 proximal carpal bone 9 6557 -UBERON:0001427 radiale 10 6558 -UBERON:0001428 intermedium 10 6559 -UBERON:0001429 pisiform 10 6560 -UBERON:0002445 ulnare 10 6561 -UBERON:0007960 scapholunate 10 6562 -UBERON:0012124 avian scapholunar bone 10 6563 -UBERON:0001481 distal carpal bone 9 6564 -UBERON:0001430 distal carpal bone 1 10 6565 -UBERON:0001431 distal carpal bone 2 10 6566 -UBERON:0001432 distal carpal bone 3 10 6567 -UBERON:0001433 distal carpal bone 4 10 6568 -UBERON:0010726 os vesalianum manus 10 6569 -UBERON:0010739 distal carpal bone 5 10 6570 -UBERON:0012290 fused carpal bones 2 and 3 10 6571 -UBERON:3000965 basale commune (carpal) 10 6572 -UBERON:0007958 central carpal bone 9 6573 -UBERON:0007959 falciform carpal bone 9 6574 -UBERON:0008257 radial sesamoid 9 6575 -UBERON:3010060 centrale (fore) 9 6576 -UBERON:4200180 semilunate carpal 9 6577 -UBERON:0007997 sesamoid bone of manus 8 6578 -UBERON:0001429 pisiform 9 6579 -UBERON:0007991 proximal sesamoid bone of manus 9 6580 -UBERON:0008257 radial sesamoid 9 6581 -UBERON:0011205 carpometacarpus 8 6582 -UBERON:0012358 manual digitopodium bone 8 6583 -UBERON:0002374 metacarpal bone 9 6584 -UBERON:0003645 metacarpal bone of digit 1 10 6585 -UBERON:0003646 metacarpal bone of digit 2 10 6586 -UBERON:0003647 metacarpal bone of digit 3 10 6587 -UBERON:0003648 metacarpal bone of digit 4 10 6588 -UBERON:0003649 metacarpal bone of digit 5 10 6589 -UBERON:0013587 fused metacarpal bones 3 and 4 10 6590 -UBERON:0004249 manual digit bone 9 6591 -UBERON:0001436 phalanx of manus 10 6592 -UBERON:0002234 proximal phalanx of manus 11 6593 -UBERON:0004328 proximal phalanx of manual digit 2 12 6594 -UBERON:0004329 proximal phalanx of manual digit 3 12 6595 -UBERON:0004330 proximal phalanx of manual digit 4 12 6596 -UBERON:0004331 proximal phalanx of manual digit 5 12 6597 -UBERON:0004338 proximal phalanx of manual digit 1 12 6598 -UBERON:0003620 manual digit 1 phalanx 11 6599 -UBERON:0004337 distal phalanx of manual digit 1 12 6600 -UBERON:0004338 proximal phalanx of manual digit 1 12 6601 -UBERON:4200219 middle phalanx of manual digit 1 12 6602 -UBERON:0003636 manual digit 2 phalanx 11 6603 -UBERON:0004311 distal phalanx of manual digit 2 12 6604 -UBERON:0004320 middle phalanx of manual digit 2 12 6605 -UBERON:0004328 proximal phalanx of manual digit 2 12 6606 -UBERON:0003637 manual digit 3 phalanx 11 6607 -UBERON:0004312 distal phalanx of manual digit 3 12 6608 -UBERON:0004321 middle phalanx of manual digit 3 12 6609 -UBERON:0004329 proximal phalanx of manual digit 3 12 6610 -UBERON:0003638 manual digit 4 phalanx 11 6611 -UBERON:0004313 distal phalanx of manual digit 4 12 6612 -UBERON:0004322 middle phalanx of manual digit 4 12 6613 -UBERON:0004330 proximal phalanx of manual digit 4 12 6614 -UBERON:0003639 manual digit 5 phalanx 11 6615 -UBERON:0004314 distal phalanx of manual digit 5 12 6616 -UBERON:0004323 middle phalanx of manual digit 5 12 6617 -UBERON:0004331 proximal phalanx of manual digit 5 12 6618 -UBERON:0003864 middle phalanx of manus 11 6619 -UBERON:0004320 middle phalanx of manual digit 2 12 6620 -UBERON:0004321 middle phalanx of manual digit 3 12 6621 -UBERON:0004322 middle phalanx of manual digit 4 12 6622 -UBERON:0004323 middle phalanx of manual digit 5 12 6623 -UBERON:4200219 middle phalanx of manual digit 1 12 6624 -UBERON:0003865 distal phalanx of manus 11 6625 -UBERON:0004311 distal phalanx of manual digit 2 12 6626 -UBERON:0004312 distal phalanx of manual digit 3 12 6627 -UBERON:0004313 distal phalanx of manual digit 4 12 6628 -UBERON:0004314 distal phalanx of manual digit 5 12 6629 -UBERON:0004337 distal phalanx of manual digit 1 12 6630 -UBERON:0007991 proximal sesamoid bone of manus 10 6631 -UBERON:3000856 intercalary element of fore digit 10 6632 -UBERON:0012268 equine forelimb splint bone 9 6633 -UBERON:0005899 pes bone 7 6634 -UBERON:0001447 tarsal bone 8 6635 -UBERON:0001451 navicular bone of pes 9 6636 -UBERON:0006836 medial tibial tarsal bone 9 6637 -UBERON:0010721 distal tarsal bone 9 6638 -UBERON:0001452 distal tarsal bone 1 10 6639 -UBERON:0001453 distal tarsal bone 2 10 6640 -UBERON:0001454 distal tarsal bone 3 10 6641 -UBERON:0001455 cuboid bone 10 6642 -UBERON:0010723 os vesalianum pedis 10 6643 -UBERON:0010737 distal tarsal bone 4 10 6644 -UBERON:0010738 distal tarsal bone 5 10 6645 -UBERON:0012289 fused tarsal bones 2 and 3 10 6646 -UBERON:0013649 fused tarsal bones 1 and 2 10 6647 -UBERON:3001002 basale commune (tarsal) 10 6648 -UBERON:0011679 proximal tarsal bone 9 6649 -UBERON:0001450 calcaneus 10 6650 -UBERON:0002395 talus 10 6651 -UBERON:0011678 hindlimb intermedium bone 10 6652 -UBERON:0012126 fibulare 10 6653 -UBERON:0012288 centroquartal bone 9 6654 -UBERON:3010045 centrale 1 9 6655 -UBERON:3010073 centrale 2 9 6656 -UBERON:4200011 pedal centrale 9 6657 -UBERON:4200152 intertarsale sesamoid 9 6658 -UBERON:0008000 sesamoid bone of pes 8 6659 -UBERON:0007990 proximal sesamoid bone of pes 9 6660 -UBERON:4200152 intertarsale sesamoid 9 6661 -UBERON:0008195 tarsometatarsus 8 6662 -UBERON:0010725 accessory navicular bone 8 6663 -UBERON:0012359 pedal digitopodium bone 8 6664 -UBERON:0001448 metatarsal bone 9 6665 -UBERON:0003650 metatarsal bone of digit 1 10 6666 -UBERON:0003651 metatarsal bone of digit 2 10 6667 -UBERON:0003652 metatarsal bone of digit 3 10 6668 -UBERON:0003653 metatarsal bone of digit 4 10 6669 -UBERON:0003654 metatarsal bone of digit 5 10 6670 -UBERON:0013588 fused metatarsal bones 3 and 4 10 6671 -UBERON:0014763 fused metatarsal bones 2-4 11 6672 -UBERON:4200153 metatarsal bone of digit 6 10 6673 -UBERON:4200157 metatarsal bone of digit 7 10 6674 -UBERON:4200158 metatarsal bone of digit 8 10 6675 -UBERON:0004248 pedal digit bone 9 6676 -UBERON:0001449 phalanx of pes 10 6677 -UBERON:0003640 pedal digit 1 phalanx 11 6678 -UBERON:0004315 distal phalanx of pedal digit 1 12 6679 -UBERON:0004332 proximal phalanx of pedal digit 1 12 6680 -UBERON:0003641 pedal digit 2 phalanx 11 6681 -UBERON:0004316 distal phalanx of pedal digit 2 12 6682 -UBERON:0004324 middle phalanx of pedal digit 2 12 6683 -UBERON:0004333 proximal phalanx of pedal digit 2 12 6684 -UBERON:0003642 pedal digit 3 phalanx 11 6685 -UBERON:0004317 distal phalanx of pedal digit 3 12 6686 -UBERON:0004325 middle phalanx of pedal digit 3 12 6687 -UBERON:0004334 proximal phalanx of pedal digit 3 12 6688 -UBERON:0003862 pedal digit 4 phalanx 11 6689 -UBERON:0004318 distal phalanx of pedal digit 4 12 6690 -UBERON:0004326 middle phalanx of pedal digit 4 12 6691 -UBERON:0004335 proximal phalanx of pedal digit 4 12 6692 -UBERON:0003863 pedal digit 5 phalanx 11 6693 -UBERON:0004319 distal phalanx of pedal digit 5 12 6694 -UBERON:0004327 middle phalanx of pedal digit 5 12 6695 -UBERON:0004336 proximal phalanx of pedal digit 5 12 6696 -UBERON:0003866 middle phalanx of pes 11 6697 -UBERON:0004324 middle phalanx of pedal digit 2 12 6698 -UBERON:0004325 middle phalanx of pedal digit 3 12 6699 -UBERON:0004326 middle phalanx of pedal digit 4 12 6700 -UBERON:0004327 middle phalanx of pedal digit 5 12 6701 -UBERON:0003867 distal phalanx of pes 11 6702 -UBERON:0004315 distal phalanx of pedal digit 1 12 6703 -UBERON:0004316 distal phalanx of pedal digit 2 12 6704 -UBERON:0004317 distal phalanx of pedal digit 3 12 6705 -UBERON:0004318 distal phalanx of pedal digit 4 12 6706 -UBERON:0004319 distal phalanx of pedal digit 5 12 6707 -UBERON:0003868 proximal phalanx of pes 11 6708 -UBERON:0004332 proximal phalanx of pedal digit 1 12 6709 -UBERON:0004333 proximal phalanx of pedal digit 2 12 6710 -UBERON:0004334 proximal phalanx of pedal digit 3 12 6711 -UBERON:0004335 proximal phalanx of pedal digit 4 12 6712 -UBERON:0004336 proximal phalanx of pedal digit 5 12 6713 -UBERON:4100009 pedal digit 7 phalanx 11 6714 -UBERON:0007990 proximal sesamoid bone of pes 10 6715 -UBERON:3000931 intercalary element of hind digit 10 6716 -UBERON:3010675 bony nodule of terminal phalanx of hind digit 10 6717 -UBERON:0012269 equine hindlimb splint bone 9 6718 -UBERON:0010759 equine distal sesamoid 7 6719 -UBERON:0012357 digitopodium bone 7 6720 -UBERON:0003221 phalanx 8 6721 -UBERON:0001436 phalanx of manus 9 6722 -UBERON:0002234 proximal phalanx of manus 10 6723 -UBERON:0004328 proximal phalanx of manual digit 2 11 6724 -UBERON:0004329 proximal phalanx of manual digit 3 11 6725 -UBERON:0004330 proximal phalanx of manual digit 4 11 6726 -UBERON:0004331 proximal phalanx of manual digit 5 11 6727 -UBERON:0004338 proximal phalanx of manual digit 1 11 6728 -UBERON:0003620 manual digit 1 phalanx 10 6729 -UBERON:0004337 distal phalanx of manual digit 1 11 6730 -UBERON:0004338 proximal phalanx of manual digit 1 11 6731 -UBERON:4200219 middle phalanx of manual digit 1 11 6732 -UBERON:0003636 manual digit 2 phalanx 10 6733 -UBERON:0004311 distal phalanx of manual digit 2 11 6734 -UBERON:0004320 middle phalanx of manual digit 2 11 6735 -UBERON:0004328 proximal phalanx of manual digit 2 11 6736 -UBERON:0003637 manual digit 3 phalanx 10 6737 -UBERON:0004312 distal phalanx of manual digit 3 11 6738 -UBERON:0004321 middle phalanx of manual digit 3 11 6739 -UBERON:0004329 proximal phalanx of manual digit 3 11 6740 -UBERON:0003638 manual digit 4 phalanx 10 6741 -UBERON:0004313 distal phalanx of manual digit 4 11 6742 -UBERON:0004322 middle phalanx of manual digit 4 11 6743 -UBERON:0004330 proximal phalanx of manual digit 4 11 6744 -UBERON:0003639 manual digit 5 phalanx 10 6745 -UBERON:0004314 distal phalanx of manual digit 5 11 6746 -UBERON:0004323 middle phalanx of manual digit 5 11 6747 -UBERON:0004331 proximal phalanx of manual digit 5 11 6748 -UBERON:0003864 middle phalanx of manus 10 6749 -UBERON:0004320 middle phalanx of manual digit 2 11 6750 -UBERON:0004321 middle phalanx of manual digit 3 11 6751 -UBERON:0004322 middle phalanx of manual digit 4 11 6752 -UBERON:0004323 middle phalanx of manual digit 5 11 6753 -UBERON:4200219 middle phalanx of manual digit 1 11 6754 -UBERON:0003865 distal phalanx of manus 10 6755 -UBERON:0004311 distal phalanx of manual digit 2 11 6756 -UBERON:0004312 distal phalanx of manual digit 3 11 6757 -UBERON:0004313 distal phalanx of manual digit 4 11 6758 -UBERON:0004314 distal phalanx of manual digit 5 11 6759 -UBERON:0004337 distal phalanx of manual digit 1 11 6760 -UBERON:0001449 phalanx of pes 9 6761 -UBERON:0003640 pedal digit 1 phalanx 10 6762 -UBERON:0004315 distal phalanx of pedal digit 1 11 6763 -UBERON:0004332 proximal phalanx of pedal digit 1 11 6764 -UBERON:0003641 pedal digit 2 phalanx 10 6765 -UBERON:0004316 distal phalanx of pedal digit 2 11 6766 -UBERON:0004324 middle phalanx of pedal digit 2 11 6767 -UBERON:0004333 proximal phalanx of pedal digit 2 11 6768 -UBERON:0003642 pedal digit 3 phalanx 10 6769 -UBERON:0004317 distal phalanx of pedal digit 3 11 6770 -UBERON:0004325 middle phalanx of pedal digit 3 11 6771 -UBERON:0004334 proximal phalanx of pedal digit 3 11 6772 -UBERON:0003862 pedal digit 4 phalanx 10 6773 -UBERON:0004318 distal phalanx of pedal digit 4 11 6774 -UBERON:0004326 middle phalanx of pedal digit 4 11 6775 -UBERON:0004335 proximal phalanx of pedal digit 4 11 6776 -UBERON:0003863 pedal digit 5 phalanx 10 6777 -UBERON:0004319 distal phalanx of pedal digit 5 11 6778 -UBERON:0004327 middle phalanx of pedal digit 5 11 6779 -UBERON:0004336 proximal phalanx of pedal digit 5 11 6780 -UBERON:0003866 middle phalanx of pes 10 6781 -UBERON:0004324 middle phalanx of pedal digit 2 11 6782 -UBERON:0004325 middle phalanx of pedal digit 3 11 6783 -UBERON:0004326 middle phalanx of pedal digit 4 11 6784 -UBERON:0004327 middle phalanx of pedal digit 5 11 6785 -UBERON:0003867 distal phalanx of pes 10 6786 -UBERON:0004315 distal phalanx of pedal digit 1 11 6787 -UBERON:0004316 distal phalanx of pedal digit 2 11 6788 -UBERON:0004317 distal phalanx of pedal digit 3 11 6789 -UBERON:0004318 distal phalanx of pedal digit 4 11 6790 -UBERON:0004319 distal phalanx of pedal digit 5 11 6791 -UBERON:0003868 proximal phalanx of pes 10 6792 -UBERON:0004332 proximal phalanx of pedal digit 1 11 6793 -UBERON:0004333 proximal phalanx of pedal digit 2 11 6794 -UBERON:0004334 proximal phalanx of pedal digit 3 11 6795 -UBERON:0004335 proximal phalanx of pedal digit 4 11 6796 -UBERON:0004336 proximal phalanx of pedal digit 5 11 6797 -UBERON:4100009 pedal digit 7 phalanx 10 6798 -UBERON:0004300 distal phalanx 9 6799 -UBERON:0003865 distal phalanx of manus 10 6800 -UBERON:0004311 distal phalanx of manual digit 2 11 6801 -UBERON:0004312 distal phalanx of manual digit 3 11 6802 -UBERON:0004313 distal phalanx of manual digit 4 11 6803 -UBERON:0004314 distal phalanx of manual digit 5 11 6804 -UBERON:0004337 distal phalanx of manual digit 1 11 6805 -UBERON:0003867 distal phalanx of pes 10 6806 -UBERON:0004315 distal phalanx of pedal digit 1 11 6807 -UBERON:0004316 distal phalanx of pedal digit 2 11 6808 -UBERON:0004317 distal phalanx of pedal digit 3 11 6809 -UBERON:0004318 distal phalanx of pedal digit 4 11 6810 -UBERON:0004319 distal phalanx of pedal digit 5 11 6811 -UBERON:0014483 distal phalanx of digit 1 10 6812 -UBERON:0004315 distal phalanx of pedal digit 1 11 6813 -UBERON:0004337 distal phalanx of manual digit 1 11 6814 -UBERON:0014484 distal phalanx of digit 2 10 6815 -UBERON:0004311 distal phalanx of manual digit 2 11 6816 -UBERON:0004316 distal phalanx of pedal digit 2 11 6817 -UBERON:0014485 distal phalanx of digit 3 10 6818 -UBERON:0004312 distal phalanx of manual digit 3 11 6819 -UBERON:0004317 distal phalanx of pedal digit 3 11 6820 -UBERON:0014486 distal phalanx of digit 4 10 6821 -UBERON:0004313 distal phalanx of manual digit 4 11 6822 -UBERON:0004318 distal phalanx of pedal digit 4 11 6823 -UBERON:0014487 distal phalanx of digit 5 10 6824 -UBERON:0004314 distal phalanx of manual digit 5 11 6825 -UBERON:0004319 distal phalanx of pedal digit 5 11 6826 -UBERON:3010746 T-shaped terminal phalanx 10 6827 -UBERON:0004301 middle phalanx 9 6828 -UBERON:0003864 middle phalanx of manus 10 6829 -UBERON:0004320 middle phalanx of manual digit 2 11 6830 -UBERON:0004321 middle phalanx of manual digit 3 11 6831 -UBERON:0004322 middle phalanx of manual digit 4 11 6832 -UBERON:0004323 middle phalanx of manual digit 5 11 6833 -UBERON:4200219 middle phalanx of manual digit 1 11 6834 -UBERON:0003866 middle phalanx of pes 10 6835 -UBERON:0004324 middle phalanx of pedal digit 2 11 6836 -UBERON:0004325 middle phalanx of pedal digit 3 11 6837 -UBERON:0004326 middle phalanx of pedal digit 4 11 6838 -UBERON:0004327 middle phalanx of pedal digit 5 11 6839 -UBERON:0014488 middle phalanx of digit 2 10 6840 -UBERON:0004320 middle phalanx of manual digit 2 11 6841 -UBERON:0004324 middle phalanx of pedal digit 2 11 6842 -UBERON:0014489 middle phalanx of digit 3 10 6843 -UBERON:0004321 middle phalanx of manual digit 3 11 6844 -UBERON:0004325 middle phalanx of pedal digit 3 11 6845 -UBERON:0009555 short pastern bone 11 6846 -UBERON:0014490 middle phalanx of digit 4 10 6847 -UBERON:0004322 middle phalanx of manual digit 4 11 6848 -UBERON:0004326 middle phalanx of pedal digit 4 11 6849 -UBERON:0014491 middle phalanx of digit 5 10 6850 -UBERON:0004323 middle phalanx of manual digit 5 11 6851 -UBERON:0004327 middle phalanx of pedal digit 5 11 6852 -UBERON:0004302 proximal phalanx 9 6853 -UBERON:0002234 proximal phalanx of manus 10 6854 -UBERON:0004328 proximal phalanx of manual digit 2 11 6855 -UBERON:0004329 proximal phalanx of manual digit 3 11 6856 -UBERON:0004330 proximal phalanx of manual digit 4 11 6857 -UBERON:0004331 proximal phalanx of manual digit 5 11 6858 -UBERON:0004338 proximal phalanx of manual digit 1 11 6859 -UBERON:0003868 proximal phalanx of pes 10 6860 -UBERON:0004332 proximal phalanx of pedal digit 1 11 6861 -UBERON:0004333 proximal phalanx of pedal digit 2 11 6862 -UBERON:0004334 proximal phalanx of pedal digit 3 11 6863 -UBERON:0004335 proximal phalanx of pedal digit 4 11 6864 -UBERON:0004336 proximal phalanx of pedal digit 5 11 6865 -UBERON:0014501 proximal phalanx of digit 1 10 6866 -UBERON:0004332 proximal phalanx of pedal digit 1 11 6867 -UBERON:0004338 proximal phalanx of manual digit 1 11 6868 -UBERON:0014502 proximal phalanx of digit 2 10 6869 -UBERON:0004328 proximal phalanx of manual digit 2 11 6870 -UBERON:0004333 proximal phalanx of pedal digit 2 11 6871 -UBERON:0014503 proximal phalanx of digit 3 10 6872 -UBERON:0004329 proximal phalanx of manual digit 3 11 6873 -UBERON:0004334 proximal phalanx of pedal digit 3 11 6874 -UBERON:0009556 long pastern bone 11 6875 -UBERON:0014504 proximal phalanx of digit 4 10 6876 -UBERON:0004330 proximal phalanx of manual digit 4 11 6877 -UBERON:0004335 proximal phalanx of pedal digit 4 11 6878 -UBERON:0014505 proximal phalanx of digit 5 10 6879 -UBERON:0004331 proximal phalanx of manual digit 5 11 6880 -UBERON:0004336 proximal phalanx of pedal digit 5 11 6881 -UBERON:0009558 pastern bone 9 6882 -UBERON:0009555 short pastern bone 10 6883 -UBERON:0009556 long pastern bone 10 6884 -UBERON:0018266 third phalanx 9 6885 -UBERON:0018322 fourth phalanx 9 6886 -UBERON:4100005 second phalanx 9 6887 -UBERON:0003821 metapodium bone 8 6888 -UBERON:0001448 metatarsal bone 9 6889 -UBERON:0003650 metatarsal bone of digit 1 10 6890 -UBERON:0003651 metatarsal bone of digit 2 10 6891 -UBERON:0003652 metatarsal bone of digit 3 10 6892 -UBERON:0003653 metatarsal bone of digit 4 10 6893 -UBERON:0003654 metatarsal bone of digit 5 10 6894 -UBERON:0013588 fused metatarsal bones 3 and 4 10 6895 -UBERON:0014763 fused metatarsal bones 2-4 11 6896 -UBERON:4200153 metatarsal bone of digit 6 10 6897 -UBERON:4200157 metatarsal bone of digit 7 10 6898 -UBERON:4200158 metatarsal bone of digit 8 10 6899 -UBERON:0002374 metacarpal bone 9 6900 -UBERON:0003645 metacarpal bone of digit 1 10 6901 -UBERON:0003646 metacarpal bone of digit 2 10 6902 -UBERON:0003647 metacarpal bone of digit 3 10 6903 -UBERON:0003648 metacarpal bone of digit 4 10 6904 -UBERON:0003649 metacarpal bone of digit 5 10 6905 -UBERON:0013587 fused metacarpal bones 3 and 4 10 6906 -UBERON:0012267 equine splint bone 9 6907 -UBERON:0012268 equine forelimb splint bone 10 6908 -UBERON:0012269 equine hindlimb splint bone 10 6909 -UBERON:0013581 metapodium bone 1 9 6910 -UBERON:0003645 metacarpal bone of digit 1 10 6911 -UBERON:0003650 metatarsal bone of digit 1 10 6912 -UBERON:0013582 metapodium bone 2 9 6913 -UBERON:0003646 metacarpal bone of digit 2 10 6914 -UBERON:0003651 metatarsal bone of digit 2 10 6915 -UBERON:0013583 metapodium bone 3 9 6916 -UBERON:0003647 metacarpal bone of digit 3 10 6917 -UBERON:0003652 metatarsal bone of digit 3 10 6918 -UBERON:0013584 metapodium bone 4 9 6919 -UBERON:0003648 metacarpal bone of digit 4 10 6920 -UBERON:0003653 metatarsal bone of digit 4 10 6921 -UBERON:0013585 metapodium bone 5 9 6922 -UBERON:0003649 metacarpal bone of digit 5 10 6923 -UBERON:0003654 metatarsal bone of digit 5 10 6924 -UBERON:0013586 fused metapodial bones 3 and 4 9 6925 -UBERON:0013587 fused metacarpal bones 3 and 4 10 6926 -UBERON:0013588 fused metatarsal bones 3 and 4 10 6927 -UBERON:0014763 fused metatarsal bones 2-4 11 6928 -UBERON:0014762 fused metapodial bones 2-4 10 6929 -UBERON:0014763 fused metatarsal bones 2-4 11 6930 -UBERON:4200154 metapodium bone 6 9 6931 -UBERON:4200153 metatarsal bone of digit 6 10 6932 -UBERON:4200155 metapodium bone 7 9 6933 -UBERON:4200157 metatarsal bone of digit 7 10 6934 -UBERON:4200156 metapodium bone 8 9 6935 -UBERON:4200158 metatarsal bone of digit 8 10 6936 -UBERON:0012358 manual digitopodium bone 8 6937 -UBERON:0002374 metacarpal bone 9 6938 -UBERON:0003645 metacarpal bone of digit 1 10 6939 -UBERON:0003646 metacarpal bone of digit 2 10 6940 -UBERON:0003647 metacarpal bone of digit 3 10 6941 -UBERON:0003648 metacarpal bone of digit 4 10 6942 -UBERON:0003649 metacarpal bone of digit 5 10 6943 -UBERON:0013587 fused metacarpal bones 3 and 4 10 6944 -UBERON:0004249 manual digit bone 9 6945 -UBERON:0001436 phalanx of manus 10 6946 -UBERON:0002234 proximal phalanx of manus 11 6947 -UBERON:0004328 proximal phalanx of manual digit 2 12 6948 -UBERON:0004329 proximal phalanx of manual digit 3 12 6949 -UBERON:0004330 proximal phalanx of manual digit 4 12 6950 -UBERON:0004331 proximal phalanx of manual digit 5 12 6951 -UBERON:0004338 proximal phalanx of manual digit 1 12 6952 -UBERON:0003620 manual digit 1 phalanx 11 6953 -UBERON:0004337 distal phalanx of manual digit 1 12 6954 -UBERON:0004338 proximal phalanx of manual digit 1 12 6955 -UBERON:4200219 middle phalanx of manual digit 1 12 6956 -UBERON:0003636 manual digit 2 phalanx 11 6957 -UBERON:0004311 distal phalanx of manual digit 2 12 6958 -UBERON:0004320 middle phalanx of manual digit 2 12 6959 -UBERON:0004328 proximal phalanx of manual digit 2 12 6960 -UBERON:0003637 manual digit 3 phalanx 11 6961 -UBERON:0004312 distal phalanx of manual digit 3 12 6962 -UBERON:0004321 middle phalanx of manual digit 3 12 6963 -UBERON:0004329 proximal phalanx of manual digit 3 12 6964 -UBERON:0003638 manual digit 4 phalanx 11 6965 -UBERON:0004313 distal phalanx of manual digit 4 12 6966 -UBERON:0004322 middle phalanx of manual digit 4 12 6967 -UBERON:0004330 proximal phalanx of manual digit 4 12 6968 -UBERON:0003639 manual digit 5 phalanx 11 6969 -UBERON:0004314 distal phalanx of manual digit 5 12 6970 -UBERON:0004323 middle phalanx of manual digit 5 12 6971 -UBERON:0004331 proximal phalanx of manual digit 5 12 6972 -UBERON:0003864 middle phalanx of manus 11 6973 -UBERON:0004320 middle phalanx of manual digit 2 12 6974 -UBERON:0004321 middle phalanx of manual digit 3 12 6975 -UBERON:0004322 middle phalanx of manual digit 4 12 6976 -UBERON:0004323 middle phalanx of manual digit 5 12 6977 -UBERON:4200219 middle phalanx of manual digit 1 12 6978 -UBERON:0003865 distal phalanx of manus 11 6979 -UBERON:0004311 distal phalanx of manual digit 2 12 6980 -UBERON:0004312 distal phalanx of manual digit 3 12 6981 -UBERON:0004313 distal phalanx of manual digit 4 12 6982 -UBERON:0004314 distal phalanx of manual digit 5 12 6983 -UBERON:0004337 distal phalanx of manual digit 1 12 6984 -UBERON:0007991 proximal sesamoid bone of manus 10 6985 -UBERON:3000856 intercalary element of fore digit 10 6986 -UBERON:0012268 equine forelimb splint bone 9 6987 -UBERON:0012359 pedal digitopodium bone 8 6988 -UBERON:0001448 metatarsal bone 9 6989 -UBERON:0003650 metatarsal bone of digit 1 10 6990 -UBERON:0003651 metatarsal bone of digit 2 10 6991 -UBERON:0003652 metatarsal bone of digit 3 10 6992 -UBERON:0003653 metatarsal bone of digit 4 10 6993 -UBERON:0003654 metatarsal bone of digit 5 10 6994 -UBERON:0013588 fused metatarsal bones 3 and 4 10 6995 -UBERON:0014763 fused metatarsal bones 2-4 11 6996 -UBERON:4200153 metatarsal bone of digit 6 10 6997 -UBERON:4200157 metatarsal bone of digit 7 10 6998 -UBERON:4200158 metatarsal bone of digit 8 10 6999 -UBERON:0004248 pedal digit bone 9 7000 -UBERON:0001449 phalanx of pes 10 7001 -UBERON:0003640 pedal digit 1 phalanx 11 7002 -UBERON:0004315 distal phalanx of pedal digit 1 12 7003 -UBERON:0004332 proximal phalanx of pedal digit 1 12 7004 -UBERON:0003641 pedal digit 2 phalanx 11 7005 -UBERON:0004316 distal phalanx of pedal digit 2 12 7006 -UBERON:0004324 middle phalanx of pedal digit 2 12 7007 -UBERON:0004333 proximal phalanx of pedal digit 2 12 7008 -UBERON:0003642 pedal digit 3 phalanx 11 7009 -UBERON:0004317 distal phalanx of pedal digit 3 12 7010 -UBERON:0004325 middle phalanx of pedal digit 3 12 7011 -UBERON:0004334 proximal phalanx of pedal digit 3 12 7012 -UBERON:0003862 pedal digit 4 phalanx 11 7013 -UBERON:0004318 distal phalanx of pedal digit 4 12 7014 -UBERON:0004326 middle phalanx of pedal digit 4 12 7015 -UBERON:0004335 proximal phalanx of pedal digit 4 12 7016 -UBERON:0003863 pedal digit 5 phalanx 11 7017 -UBERON:0004319 distal phalanx of pedal digit 5 12 7018 -UBERON:0004327 middle phalanx of pedal digit 5 12 7019 -UBERON:0004336 proximal phalanx of pedal digit 5 12 7020 -UBERON:0003866 middle phalanx of pes 11 7021 -UBERON:0004324 middle phalanx of pedal digit 2 12 7022 -UBERON:0004325 middle phalanx of pedal digit 3 12 7023 -UBERON:0004326 middle phalanx of pedal digit 4 12 7024 -UBERON:0004327 middle phalanx of pedal digit 5 12 7025 -UBERON:0003867 distal phalanx of pes 11 7026 -UBERON:0004315 distal phalanx of pedal digit 1 12 7027 -UBERON:0004316 distal phalanx of pedal digit 2 12 7028 -UBERON:0004317 distal phalanx of pedal digit 3 12 7029 -UBERON:0004318 distal phalanx of pedal digit 4 12 7030 -UBERON:0004319 distal phalanx of pedal digit 5 12 7031 -UBERON:0003868 proximal phalanx of pes 11 7032 -UBERON:0004332 proximal phalanx of pedal digit 1 12 7033 -UBERON:0004333 proximal phalanx of pedal digit 2 12 7034 -UBERON:0004334 proximal phalanx of pedal digit 3 12 7035 -UBERON:0004335 proximal phalanx of pedal digit 4 12 7036 -UBERON:0004336 proximal phalanx of pedal digit 5 12 7037 -UBERON:4100009 pedal digit 7 phalanx 11 7038 -UBERON:0007990 proximal sesamoid bone of pes 10 7039 -UBERON:3000931 intercalary element of hind digit 10 7040 -UBERON:3010675 bony nodule of terminal phalanx of hind digit 10 7041 -UBERON:0012269 equine hindlimb splint bone 9 7042 -UBERON:3010624 subarticular sesamoid 8 7043 -UBERON:0010881 limb cartilage element 5 7044 -UBERON:0010883 forelimb cartilage element 6 7045 -UBERON:0006245 humerus cartilage element 7 7046 -UBERON:0006286 radius cartilage element 7 7047 -UBERON:0006306 ulna cartilage element 7 7048 -UBERON:0008254 styliform cartilage 7 7049 -UBERON:0010848 radius-ulna cartilage element 7 7050 -UBERON:0035128 manus cartilage element 7 7051 -UBERON:0010686 manual digit phalanx cartilage element 8 7052 -UBERON:0010675 manual digit 1 phalanx cartilage element 9 7053 -UBERON:0010676 manual digit 2 phalanx cartilage element 9 7054 -UBERON:0010677 manual digit 3 phalanx cartilage element 9 7055 -UBERON:0010678 manual digit 4 phalanx cartilage element 9 7056 -UBERON:0010679 manual digit 5 phalanx cartilage element 9 7057 -UBERON:0010699 manual digit metacarpus cartilage element 8 7058 -UBERON:0010570 manual digit 1 metacarpus cartilage element 9 7059 -UBERON:0010571 manual digit 2 metacarpus cartilage element 9 7060 -UBERON:0010572 manual digit 3 metacarpus cartilage element 9 7061 -UBERON:0010573 manual digit 4 metacarpus cartilage element 9 7062 -UBERON:0010574 manual digit 5 metacarpus cartilage element 9 7063 -UBERON:0015069 distal carpal cartilage element 8 7064 -UBERON:0015079 proximal carpal cartilage 8 7065 -UBERON:0015085 distal carpal bone 1 cartilage 8 7066 -UBERON:0015088 distal carpal bone 2 cartilage 8 7067 -UBERON:0015091 distal carpal bone 3 cartilage 8 7068 -UBERON:0015094 distal carpal bone 4 cartilage 8 7069 -UBERON:0015097 distal carpal bone 5 cartilage 8 7070 -UBERON:0010885 hindlimb cartilage element 6 7071 -UBERON:0010129 femur cartilage element 7 7072 -UBERON:0010849 tibia cartilage element 7 7073 -UBERON:0010851 fibula cartilage element 7 7074 -UBERON:0010902 tibiotarsus cartilage element 7 7075 -UBERON:0035129 pes cartilage element 7 7076 -UBERON:0010685 pedal digit phalanx cartilage element 8 7077 -UBERON:0010680 pedal digit 1 phalanx cartilage element 9 7078 -UBERON:0010681 pedal digit 2 phalanx cartilage element 9 7079 -UBERON:0010682 pedal digit 3 phalanx cartilage element 9 7080 -UBERON:0010683 pedal digit 4 phalanx cartilage element 9 7081 -UBERON:0010684 pedal digit 5 phalanx cartilage element 9 7082 -UBERON:0010697 pedal digit metatarsal cartilage element 8 7083 -UBERON:0010557 pedal digit 1 metatarsal cartilage element 9 7084 -UBERON:0010558 pedal digit 2 metatarsal cartilage element 9 7085 -UBERON:0010559 pedal digit 3 metatarsal cartilage element 9 7086 -UBERON:0010560 pedal digit 4 metatarsal cartilage element 9 7087 -UBERON:0010561 pedal digit 5 metatarsal cartilage element 9 7088 -UBERON:0010842 calcaneum cartilage element 8 7089 -UBERON:0010900 tarsometatarsus cartilage element 8 7090 -UBERON:0015082 proximal tarsal cartilage 8 7091 -UBERON:0015100 distal tarsal cartilage 8 7092 -UBERON:0015103 distal tarsal bone 1 cartilage 9 7093 -UBERON:0015106 distal tarsal bone 2 cartilage 9 7094 -UBERON:0015109 distal tarsal bone 3 cartilage 9 7095 -UBERON:0015112 distal tarsal bone 4 cartilage 9 7096 -UBERON:0015115 distal tarsal bone 5 cartilage 9 7097 -UBERON:0015064 autopod cartilage 6 7098 -UBERON:0010701 phalanx cartilage element 7 7099 -UBERON:0010685 pedal digit phalanx cartilage element 8 7100 -UBERON:0010680 pedal digit 1 phalanx cartilage element 9 7101 -UBERON:0010681 pedal digit 2 phalanx cartilage element 9 7102 -UBERON:0010682 pedal digit 3 phalanx cartilage element 9 7103 -UBERON:0010683 pedal digit 4 phalanx cartilage element 9 7104 -UBERON:0010684 pedal digit 5 phalanx cartilage element 9 7105 -UBERON:0010686 manual digit phalanx cartilage element 8 7106 -UBERON:0010675 manual digit 1 phalanx cartilage element 9 7107 -UBERON:0010676 manual digit 2 phalanx cartilage element 9 7108 -UBERON:0010677 manual digit 3 phalanx cartilage element 9 7109 -UBERON:0010678 manual digit 4 phalanx cartilage element 9 7110 -UBERON:0010679 manual digit 5 phalanx cartilage element 9 7111 -UBERON:0015077 centrale cartilage 7 7112 -UBERON:0017751 proximal mesopodial cartilage element 7 7113 -UBERON:0015079 proximal carpal cartilage 8 7114 -UBERON:0015082 proximal tarsal cartilage 8 7115 -UBERON:0018100 distal mesopodial cartilage element 7 7116 -UBERON:0015069 distal carpal cartilage element 8 7117 -UBERON:0015100 distal tarsal cartilage 8 7118 -UBERON:0015103 distal tarsal bone 1 cartilage 9 7119 -UBERON:0015106 distal tarsal bone 2 cartilage 9 7120 -UBERON:0015109 distal tarsal bone 3 cartilage 9 7121 -UBERON:0015112 distal tarsal bone 4 cartilage 9 7122 -UBERON:0015115 distal tarsal bone 5 cartilage 9 7123 -UBERON:0035128 manus cartilage element 7 7124 -UBERON:0010686 manual digit phalanx cartilage element 8 7125 -UBERON:0010675 manual digit 1 phalanx cartilage element 9 7126 -UBERON:0010676 manual digit 2 phalanx cartilage element 9 7127 -UBERON:0010677 manual digit 3 phalanx cartilage element 9 7128 -UBERON:0010678 manual digit 4 phalanx cartilage element 9 7129 -UBERON:0010679 manual digit 5 phalanx cartilage element 9 7130 -UBERON:0010699 manual digit metacarpus cartilage element 8 7131 -UBERON:0010570 manual digit 1 metacarpus cartilage element 9 7132 -UBERON:0010571 manual digit 2 metacarpus cartilage element 9 7133 -UBERON:0010572 manual digit 3 metacarpus cartilage element 9 7134 -UBERON:0010573 manual digit 4 metacarpus cartilage element 9 7135 -UBERON:0010574 manual digit 5 metacarpus cartilage element 9 7136 -UBERON:0015069 distal carpal cartilage element 8 7137 -UBERON:0015079 proximal carpal cartilage 8 7138 -UBERON:0015085 distal carpal bone 1 cartilage 8 7139 -UBERON:0015088 distal carpal bone 2 cartilage 8 7140 -UBERON:0015091 distal carpal bone 3 cartilage 8 7141 -UBERON:0015094 distal carpal bone 4 cartilage 8 7142 -UBERON:0015097 distal carpal bone 5 cartilage 8 7143 -UBERON:0035129 pes cartilage element 7 7144 -UBERON:0010685 pedal digit phalanx cartilage element 8 7145 -UBERON:0010680 pedal digit 1 phalanx cartilage element 9 7146 -UBERON:0010681 pedal digit 2 phalanx cartilage element 9 7147 -UBERON:0010682 pedal digit 3 phalanx cartilage element 9 7148 -UBERON:0010683 pedal digit 4 phalanx cartilage element 9 7149 -UBERON:0010684 pedal digit 5 phalanx cartilage element 9 7150 -UBERON:0010697 pedal digit metatarsal cartilage element 8 7151 -UBERON:0010557 pedal digit 1 metatarsal cartilage element 9 7152 -UBERON:0010558 pedal digit 2 metatarsal cartilage element 9 7153 -UBERON:0010559 pedal digit 3 metatarsal cartilage element 9 7154 -UBERON:0010560 pedal digit 4 metatarsal cartilage element 9 7155 -UBERON:0010561 pedal digit 5 metatarsal cartilage element 9 7156 -UBERON:0010842 calcaneum cartilage element 8 7157 -UBERON:0010900 tarsometatarsus cartilage element 8 7158 -UBERON:0015082 proximal tarsal cartilage 8 7159 -UBERON:0015100 distal tarsal cartilage 8 7160 -UBERON:0015103 distal tarsal bone 1 cartilage 9 7161 -UBERON:0015106 distal tarsal bone 2 cartilage 9 7162 -UBERON:0015109 distal tarsal bone 3 cartilage 9 7163 -UBERON:0015112 distal tarsal bone 4 cartilage 9 7164 -UBERON:0015115 distal tarsal bone 5 cartilage 9 7165 -UBERON:0010882 limb bone pre-cartilage condensation 5 7166 -UBERON:0010700 phalanx pre-cartilage condensation 6 7167 -UBERON:0010585 pedal digit phalanx pre-cartilage condensation 7 7168 -UBERON:0010580 pedal digit 1 phalanx pre-cartilage condensation 8 7169 -UBERON:0010581 pedal digit 2 phalanx pre-cartilage condensation 8 7170 -UBERON:0010582 pedal digit 3 phalanx pre-cartilage condensation 8 7171 -UBERON:0010583 pedal digit 4 phalanx pre-cartilage condensation 8 7172 -UBERON:0010584 pedal digit 5 phalanx pre-cartilage condensation 8 7173 -UBERON:0010586 manual digit phalanx pre-cartilage condensation 7 7174 -UBERON:0010575 manual digit 1 phalanx pre-cartilage condensation 8 7175 -UBERON:0010576 manual digit 2 phalanx pre-cartilage condensation 8 7176 -UBERON:0010577 manual digit 3 phalanx pre-cartilage condensation 8 7177 -UBERON:0010578 manual digit 4 phalanx pre-cartilage condensation 8 7178 -UBERON:0010579 manual digit 5 phalanx pre-cartilage condensation 8 7179 -UBERON:0010884 forelimb bone pre-cartilage condensation 6 7180 -UBERON:0006246 humerus pre-cartilage condensation 7 7181 -UBERON:0006287 radius-ulna pre-cartilage condensation 7 7182 -UBERON:0010586 manual digit phalanx pre-cartilage condensation 7 7183 -UBERON:0010575 manual digit 1 phalanx pre-cartilage condensation 8 7184 -UBERON:0010576 manual digit 2 phalanx pre-cartilage condensation 8 7185 -UBERON:0010577 manual digit 3 phalanx pre-cartilage condensation 8 7186 -UBERON:0010578 manual digit 4 phalanx pre-cartilage condensation 8 7187 -UBERON:0010579 manual digit 5 phalanx pre-cartilage condensation 8 7188 -UBERON:0010698 manual digit metacarpus pre-cartilage condensation 7 7189 -UBERON:0010565 manual digit 1 metacarpus pre-cartilage condensation 8 7190 -UBERON:0010566 manual digit 2 metacarpus pre-cartilage condensation 8 7191 -UBERON:0010567 manual digit 3 metacarpus pre-cartilage condensation 8 7192 -UBERON:0010568 manual digit 4 metacarpus pre-cartilage condensation 8 7193 -UBERON:0010569 manual digit 5 metacarpus pre-cartilage condensation 8 7194 -UBERON:0015080 proximal carpal bone pre-cartilage condensation 7 7195 -UBERON:0015086 distal carpal bone 1 pre-cartilage condensation 7 7196 -UBERON:0015089 distal carpal bone 2 pre-cartilage condensation 7 7197 -UBERON:0015092 distal carpal bone 3 pre-cartilage condensation 7 7198 -UBERON:0015095 distal carpal bone 4 pre-cartilage condensation 7 7199 -UBERON:0015098 distal carpal bone 5 pre-cartilage condensation 7 7200 -UBERON:0010886 hindlimb pre-cartilage condensation 6 7201 -UBERON:0006234 femur pre-cartilage condensation 7 7202 -UBERON:0010585 pedal digit phalanx pre-cartilage condensation 7 7203 -UBERON:0010580 pedal digit 1 phalanx pre-cartilage condensation 8 7204 -UBERON:0010581 pedal digit 2 phalanx pre-cartilage condensation 8 7205 -UBERON:0010582 pedal digit 3 phalanx pre-cartilage condensation 8 7206 -UBERON:0010583 pedal digit 4 phalanx pre-cartilage condensation 8 7207 -UBERON:0010584 pedal digit 5 phalanx pre-cartilage condensation 8 7208 -UBERON:0010687 pedal digit metatarsal pre-cartilage condensation 7 7209 -UBERON:0010547 pedal digit 1 metatarsal pre-cartilage condensation 8 7210 -UBERON:0010548 pedal digit 2 metatarsal pre-cartilage condensation 8 7211 -UBERON:0010549 pedal digit 3 metatarsal pre-cartilage condensation 8 7212 -UBERON:0010550 pedal digit 4 metatarsal pre-cartilage condensation 8 7213 -UBERON:0010551 pedal digit 5 metatarsal pre-cartilage condensation 8 7214 -UBERON:0010801 calcaneum pre-cartilage condensation 7 7215 -UBERON:0015083 proximal tarsal bone pre-cartilage condensation 7 7216 -UBERON:0015101 distal tarsal bone pre-cartilage condensation 7 7217 -UBERON:0015104 distal tarsal bone 1 pre-cartilage condensation 8 7218 -UBERON:0015107 distal tarsal bone 2 pre-cartilage condensation 8 7219 -UBERON:0015110 distal tarsal bone 3 pre-cartilage condensation 8 7220 -UBERON:0015113 distal tarsal bone 4 pre-cartilage condensation 8 7221 -UBERON:0015116 distal tarsal bone 5 pre-cartilage condensation 8 7222 -UBERON:0018101 distal mesopodial pre-cartilage condensation 6 7223 -UBERON:0015101 distal tarsal bone pre-cartilage condensation 7 7224 -UBERON:0015104 distal tarsal bone 1 pre-cartilage condensation 8 7225 -UBERON:0015107 distal tarsal bone 2 pre-cartilage condensation 8 7226 -UBERON:0015110 distal tarsal bone 3 pre-cartilage condensation 8 7227 -UBERON:0015113 distal tarsal bone 4 pre-cartilage condensation 8 7228 -UBERON:0015116 distal tarsal bone 5 pre-cartilage condensation 8 7229 -UBERON:0015021 forelimb endochondral element 5 7230 -UBERON:0008962 forelimb bone 6 7231 -UBERON:0003460 arm bone 7 7232 -UBERON:0003466 forelimb zeugopod bone 8 7233 -UBERON:0001423 radius bone 9 7234 -UBERON:0001424 ulna 9 7235 -UBERON:0006715 radio-ulna 9 7236 -UBERON:0007993 ulnar sesamoid bone 9 7237 -UBERON:0004250 upper arm bone 8 7238 -UBERON:0000976 humerus 9 7239 -UBERON:0003607 forelimb long bone 7 7240 -UBERON:0000976 humerus 8 7241 -UBERON:0001423 radius bone 8 7242 -UBERON:0001424 ulna 8 7243 -UBERON:0001436 phalanx of manus 8 7244 -UBERON:0002234 proximal phalanx of manus 9 7245 -UBERON:0004328 proximal phalanx of manual digit 2 10 7246 -UBERON:0004329 proximal phalanx of manual digit 3 10 7247 -UBERON:0004330 proximal phalanx of manual digit 4 10 7248 -UBERON:0004331 proximal phalanx of manual digit 5 10 7249 -UBERON:0004338 proximal phalanx of manual digit 1 10 7250 -UBERON:0003620 manual digit 1 phalanx 9 7251 -UBERON:0004337 distal phalanx of manual digit 1 10 7252 -UBERON:0004338 proximal phalanx of manual digit 1 10 7253 -UBERON:4200219 middle phalanx of manual digit 1 10 7254 -UBERON:0003636 manual digit 2 phalanx 9 7255 -UBERON:0004311 distal phalanx of manual digit 2 10 7256 -UBERON:0004320 middle phalanx of manual digit 2 10 7257 -UBERON:0004328 proximal phalanx of manual digit 2 10 7258 -UBERON:0003637 manual digit 3 phalanx 9 7259 -UBERON:0004312 distal phalanx of manual digit 3 10 7260 -UBERON:0004321 middle phalanx of manual digit 3 10 7261 -UBERON:0004329 proximal phalanx of manual digit 3 10 7262 -UBERON:0003638 manual digit 4 phalanx 9 7263 -UBERON:0004313 distal phalanx of manual digit 4 10 7264 -UBERON:0004322 middle phalanx of manual digit 4 10 7265 -UBERON:0004330 proximal phalanx of manual digit 4 10 7266 -UBERON:0003639 manual digit 5 phalanx 9 7267 -UBERON:0004314 distal phalanx of manual digit 5 10 7268 -UBERON:0004323 middle phalanx of manual digit 5 10 7269 -UBERON:0004331 proximal phalanx of manual digit 5 10 7270 -UBERON:0003864 middle phalanx of manus 9 7271 -UBERON:0004320 middle phalanx of manual digit 2 10 7272 -UBERON:0004321 middle phalanx of manual digit 3 10 7273 -UBERON:0004322 middle phalanx of manual digit 4 10 7274 -UBERON:0004323 middle phalanx of manual digit 5 10 7275 -UBERON:4200219 middle phalanx of manual digit 1 10 7276 -UBERON:0003865 distal phalanx of manus 9 7277 -UBERON:0004311 distal phalanx of manual digit 2 10 7278 -UBERON:0004312 distal phalanx of manual digit 3 10 7279 -UBERON:0004313 distal phalanx of manual digit 4 10 7280 -UBERON:0004314 distal phalanx of manual digit 5 10 7281 -UBERON:0004337 distal phalanx of manual digit 1 10 7282 -UBERON:0002374 metacarpal bone 8 7283 -UBERON:0003645 metacarpal bone of digit 1 9 7284 -UBERON:0003646 metacarpal bone of digit 2 9 7285 -UBERON:0003647 metacarpal bone of digit 3 9 7286 -UBERON:0003648 metacarpal bone of digit 4 9 7287 -UBERON:0003649 metacarpal bone of digit 5 9 7288 -UBERON:0013587 fused metacarpal bones 3 and 4 9 7289 -UBERON:0012268 equine forelimb splint bone 8 7290 -UBERON:0005897 manus bone 7 7291 -UBERON:0001435 carpal bone 8 7292 -UBERON:0001480 proximal carpal bone 9 7293 -UBERON:0001427 radiale 10 7294 -UBERON:0001428 intermedium 10 7295 -UBERON:0001429 pisiform 10 7296 -UBERON:0002445 ulnare 10 7297 -UBERON:0007960 scapholunate 10 7298 -UBERON:0012124 avian scapholunar bone 10 7299 -UBERON:0001481 distal carpal bone 9 7300 -UBERON:0001430 distal carpal bone 1 10 7301 -UBERON:0001431 distal carpal bone 2 10 7302 -UBERON:0001432 distal carpal bone 3 10 7303 -UBERON:0001433 distal carpal bone 4 10 7304 -UBERON:0010726 os vesalianum manus 10 7305 -UBERON:0010739 distal carpal bone 5 10 7306 -UBERON:0012290 fused carpal bones 2 and 3 10 7307 -UBERON:3000965 basale commune (carpal) 10 7308 -UBERON:0007958 central carpal bone 9 7309 -UBERON:0007959 falciform carpal bone 9 7310 -UBERON:0008257 radial sesamoid 9 7311 -UBERON:3010060 centrale (fore) 9 7312 -UBERON:4200180 semilunate carpal 9 7313 -UBERON:0007997 sesamoid bone of manus 8 7314 -UBERON:0001429 pisiform 9 7315 -UBERON:0007991 proximal sesamoid bone of manus 9 7316 -UBERON:0008257 radial sesamoid 9 7317 -UBERON:0011205 carpometacarpus 8 7318 -UBERON:0012358 manual digitopodium bone 8 7319 -UBERON:0002374 metacarpal bone 9 7320 -UBERON:0003645 metacarpal bone of digit 1 10 7321 -UBERON:0003646 metacarpal bone of digit 2 10 7322 -UBERON:0003647 metacarpal bone of digit 3 10 7323 -UBERON:0003648 metacarpal bone of digit 4 10 7324 -UBERON:0003649 metacarpal bone of digit 5 10 7325 -UBERON:0013587 fused metacarpal bones 3 and 4 10 7326 -UBERON:0004249 manual digit bone 9 7327 -UBERON:0001436 phalanx of manus 10 7328 -UBERON:0002234 proximal phalanx of manus 11 7329 -UBERON:0004328 proximal phalanx of manual digit 2 12 7330 -UBERON:0004329 proximal phalanx of manual digit 3 12 7331 -UBERON:0004330 proximal phalanx of manual digit 4 12 7332 -UBERON:0004331 proximal phalanx of manual digit 5 12 7333 -UBERON:0004338 proximal phalanx of manual digit 1 12 7334 -UBERON:0003620 manual digit 1 phalanx 11 7335 -UBERON:0004337 distal phalanx of manual digit 1 12 7336 -UBERON:0004338 proximal phalanx of manual digit 1 12 7337 -UBERON:4200219 middle phalanx of manual digit 1 12 7338 -UBERON:0003636 manual digit 2 phalanx 11 7339 -UBERON:0004311 distal phalanx of manual digit 2 12 7340 -UBERON:0004320 middle phalanx of manual digit 2 12 7341 -UBERON:0004328 proximal phalanx of manual digit 2 12 7342 -UBERON:0003637 manual digit 3 phalanx 11 7343 -UBERON:0004312 distal phalanx of manual digit 3 12 7344 -UBERON:0004321 middle phalanx of manual digit 3 12 7345 -UBERON:0004329 proximal phalanx of manual digit 3 12 7346 -UBERON:0003638 manual digit 4 phalanx 11 7347 -UBERON:0004313 distal phalanx of manual digit 4 12 7348 -UBERON:0004322 middle phalanx of manual digit 4 12 7349 -UBERON:0004330 proximal phalanx of manual digit 4 12 7350 -UBERON:0003639 manual digit 5 phalanx 11 7351 -UBERON:0004314 distal phalanx of manual digit 5 12 7352 -UBERON:0004323 middle phalanx of manual digit 5 12 7353 -UBERON:0004331 proximal phalanx of manual digit 5 12 7354 -UBERON:0003864 middle phalanx of manus 11 7355 -UBERON:0004320 middle phalanx of manual digit 2 12 7356 -UBERON:0004321 middle phalanx of manual digit 3 12 7357 -UBERON:0004322 middle phalanx of manual digit 4 12 7358 -UBERON:0004323 middle phalanx of manual digit 5 12 7359 -UBERON:4200219 middle phalanx of manual digit 1 12 7360 -UBERON:0003865 distal phalanx of manus 11 7361 -UBERON:0004311 distal phalanx of manual digit 2 12 7362 -UBERON:0004312 distal phalanx of manual digit 3 12 7363 -UBERON:0004313 distal phalanx of manual digit 4 12 7364 -UBERON:0004314 distal phalanx of manual digit 5 12 7365 -UBERON:0004337 distal phalanx of manual digit 1 12 7366 -UBERON:0007991 proximal sesamoid bone of manus 10 7367 -UBERON:3000856 intercalary element of fore digit 10 7368 -UBERON:0012268 equine forelimb splint bone 9 7369 -UBERON:4200116 pteroid 7 7370 -UBERON:0010883 forelimb cartilage element 6 7371 -UBERON:0006245 humerus cartilage element 7 7372 -UBERON:0006286 radius cartilage element 7 7373 -UBERON:0006306 ulna cartilage element 7 7374 -UBERON:0008254 styliform cartilage 7 7375 -UBERON:0010848 radius-ulna cartilage element 7 7376 -UBERON:0035128 manus cartilage element 7 7377 -UBERON:0010686 manual digit phalanx cartilage element 8 7378 -UBERON:0010675 manual digit 1 phalanx cartilage element 9 7379 -UBERON:0010676 manual digit 2 phalanx cartilage element 9 7380 -UBERON:0010677 manual digit 3 phalanx cartilage element 9 7381 -UBERON:0010678 manual digit 4 phalanx cartilage element 9 7382 -UBERON:0010679 manual digit 5 phalanx cartilage element 9 7383 -UBERON:0010699 manual digit metacarpus cartilage element 8 7384 -UBERON:0010570 manual digit 1 metacarpus cartilage element 9 7385 -UBERON:0010571 manual digit 2 metacarpus cartilage element 9 7386 -UBERON:0010572 manual digit 3 metacarpus cartilage element 9 7387 -UBERON:0010573 manual digit 4 metacarpus cartilage element 9 7388 -UBERON:0010574 manual digit 5 metacarpus cartilage element 9 7389 -UBERON:0015069 distal carpal cartilage element 8 7390 -UBERON:0015079 proximal carpal cartilage 8 7391 -UBERON:0015085 distal carpal bone 1 cartilage 8 7392 -UBERON:0015088 distal carpal bone 2 cartilage 8 7393 -UBERON:0015091 distal carpal bone 3 cartilage 8 7394 -UBERON:0015094 distal carpal bone 4 cartilage 8 7395 -UBERON:0015097 distal carpal bone 5 cartilage 8 7396 -UBERON:0010884 forelimb bone pre-cartilage condensation 6 7397 -UBERON:0006246 humerus pre-cartilage condensation 7 7398 -UBERON:0006287 radius-ulna pre-cartilage condensation 7 7399 -UBERON:0010586 manual digit phalanx pre-cartilage condensation 7 7400 -UBERON:0010575 manual digit 1 phalanx pre-cartilage condensation 8 7401 -UBERON:0010576 manual digit 2 phalanx pre-cartilage condensation 8 7402 -UBERON:0010577 manual digit 3 phalanx pre-cartilage condensation 8 7403 -UBERON:0010578 manual digit 4 phalanx pre-cartilage condensation 8 7404 -UBERON:0010579 manual digit 5 phalanx pre-cartilage condensation 8 7405 -UBERON:0010698 manual digit metacarpus pre-cartilage condensation 7 7406 -UBERON:0010565 manual digit 1 metacarpus pre-cartilage condensation 8 7407 -UBERON:0010566 manual digit 2 metacarpus pre-cartilage condensation 8 7408 -UBERON:0010567 manual digit 3 metacarpus pre-cartilage condensation 8 7409 -UBERON:0010568 manual digit 4 metacarpus pre-cartilage condensation 8 7410 -UBERON:0010569 manual digit 5 metacarpus pre-cartilage condensation 8 7411 -UBERON:0015080 proximal carpal bone pre-cartilage condensation 7 7412 -UBERON:0015086 distal carpal bone 1 pre-cartilage condensation 7 7413 -UBERON:0015089 distal carpal bone 2 pre-cartilage condensation 7 7414 -UBERON:0015092 distal carpal bone 3 pre-cartilage condensation 7 7415 -UBERON:0015095 distal carpal bone 4 pre-cartilage condensation 7 7416 -UBERON:0015098 distal carpal bone 5 pre-cartilage condensation 7 7417 -UBERON:0015001 radius endochondral element 6 7418 -UBERON:0001423 radius bone 7 7419 -UBERON:0006286 radius cartilage element 7 7420 -UBERON:0010846 radius pre-cartilage condensation 7 7421 -UBERON:0015002 radius-ulna endochondral element 6 7422 -UBERON:0006287 radius-ulna pre-cartilage condensation 7 7423 -UBERON:0006715 radio-ulna 7 7424 -UBERON:0010848 radius-ulna cartilage element 7 7425 -UBERON:0015003 ulna endochondral element 6 7426 -UBERON:0001424 ulna 7 7427 -UBERON:0006306 ulna cartilage element 7 7428 -UBERON:0010847 ulna pre-cartilage condensation 7 7429 -UBERON:0015024 manual digit phalanx endochondral element 6 7430 -UBERON:0001436 phalanx of manus 7 7431 -UBERON:0002234 proximal phalanx of manus 8 7432 -UBERON:0004328 proximal phalanx of manual digit 2 9 7433 -UBERON:0004329 proximal phalanx of manual digit 3 9 7434 -UBERON:0004330 proximal phalanx of manual digit 4 9 7435 -UBERON:0004331 proximal phalanx of manual digit 5 9 7436 -UBERON:0004338 proximal phalanx of manual digit 1 9 7437 -UBERON:0003620 manual digit 1 phalanx 8 7438 -UBERON:0004337 distal phalanx of manual digit 1 9 7439 -UBERON:0004338 proximal phalanx of manual digit 1 9 7440 -UBERON:4200219 middle phalanx of manual digit 1 9 7441 -UBERON:0003636 manual digit 2 phalanx 8 7442 -UBERON:0004311 distal phalanx of manual digit 2 9 7443 -UBERON:0004320 middle phalanx of manual digit 2 9 7444 -UBERON:0004328 proximal phalanx of manual digit 2 9 7445 -UBERON:0003637 manual digit 3 phalanx 8 7446 -UBERON:0004312 distal phalanx of manual digit 3 9 7447 -UBERON:0004321 middle phalanx of manual digit 3 9 7448 -UBERON:0004329 proximal phalanx of manual digit 3 9 7449 -UBERON:0003638 manual digit 4 phalanx 8 7450 -UBERON:0004313 distal phalanx of manual digit 4 9 7451 -UBERON:0004322 middle phalanx of manual digit 4 9 7452 -UBERON:0004330 proximal phalanx of manual digit 4 9 7453 -UBERON:0003639 manual digit 5 phalanx 8 7454 -UBERON:0004314 distal phalanx of manual digit 5 9 7455 -UBERON:0004323 middle phalanx of manual digit 5 9 7456 -UBERON:0004331 proximal phalanx of manual digit 5 9 7457 -UBERON:0003864 middle phalanx of manus 8 7458 -UBERON:0004320 middle phalanx of manual digit 2 9 7459 -UBERON:0004321 middle phalanx of manual digit 3 9 7460 -UBERON:0004322 middle phalanx of manual digit 4 9 7461 -UBERON:0004323 middle phalanx of manual digit 5 9 7462 -UBERON:4200219 middle phalanx of manual digit 1 9 7463 -UBERON:0003865 distal phalanx of manus 8 7464 -UBERON:0004311 distal phalanx of manual digit 2 9 7465 -UBERON:0004312 distal phalanx of manual digit 3 9 7466 -UBERON:0004313 distal phalanx of manual digit 4 9 7467 -UBERON:0004314 distal phalanx of manual digit 5 9 7468 -UBERON:0004337 distal phalanx of manual digit 1 9 7469 -UBERON:0010586 manual digit phalanx pre-cartilage condensation 7 7470 -UBERON:0010575 manual digit 1 phalanx pre-cartilage condensation 8 7471 -UBERON:0010576 manual digit 2 phalanx pre-cartilage condensation 8 7472 -UBERON:0010577 manual digit 3 phalanx pre-cartilage condensation 8 7473 -UBERON:0010578 manual digit 4 phalanx pre-cartilage condensation 8 7474 -UBERON:0010579 manual digit 5 phalanx pre-cartilage condensation 8 7475 -UBERON:0010686 manual digit phalanx cartilage element 7 7476 -UBERON:0010675 manual digit 1 phalanx cartilage element 8 7477 -UBERON:0010676 manual digit 2 phalanx cartilage element 8 7478 -UBERON:0010677 manual digit 3 phalanx cartilage element 8 7479 -UBERON:0010678 manual digit 4 phalanx cartilage element 8 7480 -UBERON:0010679 manual digit 5 phalanx cartilage element 8 7481 -UBERON:0015025 manual digit 1 phalanx endochondral element 7 7482 -UBERON:0003620 manual digit 1 phalanx 8 7483 -UBERON:0004337 distal phalanx of manual digit 1 9 7484 -UBERON:0004338 proximal phalanx of manual digit 1 9 7485 -UBERON:4200219 middle phalanx of manual digit 1 9 7486 -UBERON:0010575 manual digit 1 phalanx pre-cartilage condensation 8 7487 -UBERON:0010675 manual digit 1 phalanx cartilage element 8 7488 -UBERON:0015026 manual digit 2 phalanx endochondral element 7 7489 -UBERON:0003636 manual digit 2 phalanx 8 7490 -UBERON:0004311 distal phalanx of manual digit 2 9 7491 -UBERON:0004320 middle phalanx of manual digit 2 9 7492 -UBERON:0004328 proximal phalanx of manual digit 2 9 7493 -UBERON:0010576 manual digit 2 phalanx pre-cartilage condensation 8 7494 -UBERON:0010676 manual digit 2 phalanx cartilage element 8 7495 -UBERON:0015027 manual digit 3 phalanx endochondral element 7 7496 -UBERON:0003637 manual digit 3 phalanx 8 7497 -UBERON:0004312 distal phalanx of manual digit 3 9 7498 -UBERON:0004321 middle phalanx of manual digit 3 9 7499 -UBERON:0004329 proximal phalanx of manual digit 3 9 7500 -UBERON:0010577 manual digit 3 phalanx pre-cartilage condensation 8 7501 -UBERON:0010677 manual digit 3 phalanx cartilage element 8 7502 -UBERON:0015028 manual digit 4 phalanx endochondral element 7 7503 -UBERON:0003638 manual digit 4 phalanx 8 7504 -UBERON:0004313 distal phalanx of manual digit 4 9 7505 -UBERON:0004322 middle phalanx of manual digit 4 9 7506 -UBERON:0004330 proximal phalanx of manual digit 4 9 7507 -UBERON:0010578 manual digit 4 phalanx pre-cartilage condensation 8 7508 -UBERON:0010678 manual digit 4 phalanx cartilage element 8 7509 -UBERON:0015029 manual digit 5 phalanx endochondral element 7 7510 -UBERON:0003639 manual digit 5 phalanx 8 7511 -UBERON:0004314 distal phalanx of manual digit 5 9 7512 -UBERON:0004323 middle phalanx of manual digit 5 9 7513 -UBERON:0004331 proximal phalanx of manual digit 5 9 7514 -UBERON:0010579 manual digit 5 phalanx pre-cartilage condensation 8 7515 -UBERON:0010679 manual digit 5 phalanx cartilage element 8 7516 -UBERON:0015042 manual digit metacarpus endochondral element 6 7517 -UBERON:0002374 metacarpal bone 7 7518 -UBERON:0003645 metacarpal bone of digit 1 8 7519 -UBERON:0003646 metacarpal bone of digit 2 8 7520 -UBERON:0003647 metacarpal bone of digit 3 8 7521 -UBERON:0003648 metacarpal bone of digit 4 8 7522 -UBERON:0003649 metacarpal bone of digit 5 8 7523 -UBERON:0013587 fused metacarpal bones 3 and 4 8 7524 -UBERON:0010544 metacarpus skeleton 7 7525 -UBERON:0010698 manual digit metacarpus pre-cartilage condensation 7 7526 -UBERON:0010565 manual digit 1 metacarpus pre-cartilage condensation 8 7527 -UBERON:0010566 manual digit 2 metacarpus pre-cartilage condensation 8 7528 -UBERON:0010567 manual digit 3 metacarpus pre-cartilage condensation 8 7529 -UBERON:0010568 manual digit 4 metacarpus pre-cartilage condensation 8 7530 -UBERON:0010569 manual digit 5 metacarpus pre-cartilage condensation 8 7531 -UBERON:0010699 manual digit metacarpus cartilage element 7 7532 -UBERON:0010570 manual digit 1 metacarpus cartilage element 8 7533 -UBERON:0010571 manual digit 2 metacarpus cartilage element 8 7534 -UBERON:0010572 manual digit 3 metacarpus cartilage element 8 7535 -UBERON:0010573 manual digit 4 metacarpus cartilage element 8 7536 -UBERON:0010574 manual digit 5 metacarpus cartilage element 8 7537 -UBERON:0015043 manual digit 1 metacarpus endochondral element 7 7538 -UBERON:0003645 metacarpal bone of digit 1 8 7539 -UBERON:0010565 manual digit 1 metacarpus pre-cartilage condensation 8 7540 -UBERON:0010570 manual digit 1 metacarpus cartilage element 8 7541 -UBERON:0015044 manual digit 2 metacarpus endochondral element 7 7542 -UBERON:0003646 metacarpal bone of digit 2 8 7543 -UBERON:0010566 manual digit 2 metacarpus pre-cartilage condensation 8 7544 -UBERON:0010571 manual digit 2 metacarpus cartilage element 8 7545 -UBERON:0015045 manual digit 3 metacarpus endochondral element 7 7546 -UBERON:0003647 metacarpal bone of digit 3 8 7547 -UBERON:0010567 manual digit 3 metacarpus pre-cartilage condensation 8 7548 -UBERON:0010572 manual digit 3 metacarpus cartilage element 8 7549 -UBERON:0015046 manual digit 4 metacarpus endochondral element 7 7550 -UBERON:0003648 metacarpal bone of digit 4 8 7551 -UBERON:0010568 manual digit 4 metacarpus pre-cartilage condensation 8 7552 -UBERON:0010573 manual digit 4 metacarpus cartilage element 8 7553 -UBERON:0015047 manual digit 5 metacarpus endochondral element 7 7554 -UBERON:0003649 metacarpal bone of digit 5 8 7555 -UBERON:0010569 manual digit 5 metacarpus pre-cartilage condensation 8 7556 -UBERON:0010574 manual digit 5 metacarpus cartilage element 8 7557 -UBERON:0015049 carpus endochondral element 6 7558 -UBERON:0001435 carpal bone 7 7559 -UBERON:0001480 proximal carpal bone 8 7560 -UBERON:0001427 radiale 9 7561 -UBERON:0001428 intermedium 9 7562 -UBERON:0001429 pisiform 9 7563 -UBERON:0002445 ulnare 9 7564 -UBERON:0007960 scapholunate 9 7565 -UBERON:0012124 avian scapholunar bone 9 7566 -UBERON:0001481 distal carpal bone 8 7567 -UBERON:0001430 distal carpal bone 1 9 7568 -UBERON:0001431 distal carpal bone 2 9 7569 -UBERON:0001432 distal carpal bone 3 9 7570 -UBERON:0001433 distal carpal bone 4 9 7571 -UBERON:0010726 os vesalianum manus 9 7572 -UBERON:0010739 distal carpal bone 5 9 7573 -UBERON:0012290 fused carpal bones 2 and 3 9 7574 -UBERON:3000965 basale commune (carpal) 9 7575 -UBERON:0007958 central carpal bone 8 7576 -UBERON:0007959 falciform carpal bone 8 7577 -UBERON:0008257 radial sesamoid 8 7578 -UBERON:3010060 centrale (fore) 8 7579 -UBERON:4200180 semilunate carpal 8 7580 -UBERON:0006213 carpus cartilage element 7 7581 -UBERON:0006214 carpus pre-cartilage condensation 7 7582 -UBERON:0015068 distal carpal endochondral element 7 7583 -UBERON:0001481 distal carpal bone 8 7584 -UBERON:0001430 distal carpal bone 1 9 7585 -UBERON:0001431 distal carpal bone 2 9 7586 -UBERON:0001432 distal carpal bone 3 9 7587 -UBERON:0001433 distal carpal bone 4 9 7588 -UBERON:0010726 os vesalianum manus 9 7589 -UBERON:0010739 distal carpal bone 5 9 7590 -UBERON:0012290 fused carpal bones 2 and 3 9 7591 -UBERON:3000965 basale commune (carpal) 9 7592 -UBERON:0015069 distal carpal cartilage element 8 7593 -UBERON:0015078 proximal carpal endochondral element 7 7594 -UBERON:0001480 proximal carpal bone 8 7595 -UBERON:0001427 radiale 9 7596 -UBERON:0001428 intermedium 9 7597 -UBERON:0001429 pisiform 9 7598 -UBERON:0002445 ulnare 9 7599 -UBERON:0007960 scapholunate 9 7600 -UBERON:0012124 avian scapholunar bone 9 7601 -UBERON:0015079 proximal carpal cartilage 8 7602 -UBERON:0015080 proximal carpal bone pre-cartilage condensation 8 7603 -UBERON:0015084 distal carpal bone 1 endochondral element 7 7604 -UBERON:0001430 distal carpal bone 1 8 7605 -UBERON:0015085 distal carpal bone 1 cartilage 8 7606 -UBERON:0015086 distal carpal bone 1 pre-cartilage condensation 8 7607 -UBERON:0015087 distal carpal bone 2 endochondral element 7 7608 -UBERON:0001431 distal carpal bone 2 8 7609 -UBERON:0015088 distal carpal bone 2 cartilage 8 7610 -UBERON:0015089 distal carpal bone 2 pre-cartilage condensation 8 7611 -UBERON:0015090 distal carpal bone 3 endochondral element 7 7612 -UBERON:0001432 distal carpal bone 3 8 7613 -UBERON:0015091 distal carpal bone 3 cartilage 8 7614 -UBERON:0015092 distal carpal bone 3 pre-cartilage condensation 8 7615 -UBERON:0015093 distal carpal bone 4 endochondral element 7 7616 -UBERON:0001433 distal carpal bone 4 8 7617 -UBERON:0015094 distal carpal bone 4 cartilage 8 7618 -UBERON:0015095 distal carpal bone 4 pre-cartilage condensation 8 7619 -UBERON:0015096 distal carpal bone 5 endochondral element 7 7620 -UBERON:0010739 distal carpal bone 5 8 7621 -UBERON:0015097 distal carpal bone 5 cartilage 8 7622 -UBERON:0015098 distal carpal bone 5 pre-cartilage condensation 8 7623 -UBERON:4200140 prepollical element 7 7624 -UBERON:3010682 proximal-most prepollical element 8 7625 -UBERON:3010683 distal-most prepollical element 8 7626 -UBERON:0015053 humerus endochondral element 6 7627 -UBERON:0000976 humerus 7 7628 -UBERON:0006245 humerus cartilage element 7 7629 -UBERON:0006246 humerus pre-cartilage condensation 7 7630 -UBERON:0035561 styliform element 6 7631 -UBERON:0008254 styliform cartilage 7 7632 -UBERON:0015022 hindlimb endochondral element 5 7633 -UBERON:0003464 hindlimb bone 6 7634 -UBERON:0003608 hindlimb long bone 7 7635 -UBERON:0000979 tibia 8 7636 -UBERON:0000981 femur 8 7637 -UBERON:0001446 fibula 8 7638 -UBERON:0001448 metatarsal bone 8 7639 -UBERON:0003650 metatarsal bone of digit 1 9 7640 -UBERON:0003651 metatarsal bone of digit 2 9 7641 -UBERON:0003652 metatarsal bone of digit 3 9 7642 -UBERON:0003653 metatarsal bone of digit 4 9 7643 -UBERON:0003654 metatarsal bone of digit 5 9 7644 -UBERON:0013588 fused metatarsal bones 3 and 4 9 7645 -UBERON:0014763 fused metatarsal bones 2-4 10 7646 -UBERON:4200153 metatarsal bone of digit 6 9 7647 -UBERON:4200157 metatarsal bone of digit 7 9 7648 -UBERON:4200158 metatarsal bone of digit 8 9 7649 -UBERON:0001449 phalanx of pes 8 7650 -UBERON:0003640 pedal digit 1 phalanx 9 7651 -UBERON:0004315 distal phalanx of pedal digit 1 10 7652 -UBERON:0004332 proximal phalanx of pedal digit 1 10 7653 -UBERON:0003641 pedal digit 2 phalanx 9 7654 -UBERON:0004316 distal phalanx of pedal digit 2 10 7655 -UBERON:0004324 middle phalanx of pedal digit 2 10 7656 -UBERON:0004333 proximal phalanx of pedal digit 2 10 7657 -UBERON:0003642 pedal digit 3 phalanx 9 7658 -UBERON:0004317 distal phalanx of pedal digit 3 10 7659 -UBERON:0004325 middle phalanx of pedal digit 3 10 7660 -UBERON:0004334 proximal phalanx of pedal digit 3 10 7661 -UBERON:0003862 pedal digit 4 phalanx 9 7662 -UBERON:0004318 distal phalanx of pedal digit 4 10 7663 -UBERON:0004326 middle phalanx of pedal digit 4 10 7664 -UBERON:0004335 proximal phalanx of pedal digit 4 10 7665 -UBERON:0003863 pedal digit 5 phalanx 9 7666 -UBERON:0004319 distal phalanx of pedal digit 5 10 7667 -UBERON:0004327 middle phalanx of pedal digit 5 10 7668 -UBERON:0004336 proximal phalanx of pedal digit 5 10 7669 -UBERON:0003866 middle phalanx of pes 9 7670 -UBERON:0004324 middle phalanx of pedal digit 2 10 7671 -UBERON:0004325 middle phalanx of pedal digit 3 10 7672 -UBERON:0004326 middle phalanx of pedal digit 4 10 7673 -UBERON:0004327 middle phalanx of pedal digit 5 10 7674 -UBERON:0003867 distal phalanx of pes 9 7675 -UBERON:0004315 distal phalanx of pedal digit 1 10 7676 -UBERON:0004316 distal phalanx of pedal digit 2 10 7677 -UBERON:0004317 distal phalanx of pedal digit 3 10 7678 -UBERON:0004318 distal phalanx of pedal digit 4 10 7679 -UBERON:0004319 distal phalanx of pedal digit 5 10 7680 -UBERON:0003868 proximal phalanx of pes 9 7681 -UBERON:0004332 proximal phalanx of pedal digit 1 10 7682 -UBERON:0004333 proximal phalanx of pedal digit 2 10 7683 -UBERON:0004334 proximal phalanx of pedal digit 3 10 7684 -UBERON:0004335 proximal phalanx of pedal digit 4 10 7685 -UBERON:0004336 proximal phalanx of pedal digit 5 10 7686 -UBERON:4100009 pedal digit 7 phalanx 9 7687 -UBERON:0012269 equine hindlimb splint bone 8 7688 -UBERON:0005893 leg bone 7 7689 -UBERON:0002446 patella 8 7690 -UBERON:0003826 upper leg bone 8 7691 -UBERON:0000981 femur 9 7692 -UBERON:0004251 hindlimb zeugopod bone 8 7693 -UBERON:0000979 tibia 9 7694 -UBERON:0001446 fibula 9 7695 -UBERON:0003467 sesamoid bone of gastrocnemius 9 7696 -UBERON:0006714 tibiofibula 9 7697 -UBERON:0010907 parafibula 9 7698 -UBERON:0012104 sesamoid bone of the peroneus longus muscle 9 7699 -UBERON:0005899 pes bone 7 7700 -UBERON:0001447 tarsal bone 8 7701 -UBERON:0001451 navicular bone of pes 9 7702 -UBERON:0006836 medial tibial tarsal bone 9 7703 -UBERON:0010721 distal tarsal bone 9 7704 -UBERON:0001452 distal tarsal bone 1 10 7705 -UBERON:0001453 distal tarsal bone 2 10 7706 -UBERON:0001454 distal tarsal bone 3 10 7707 -UBERON:0001455 cuboid bone 10 7708 -UBERON:0010723 os vesalianum pedis 10 7709 -UBERON:0010737 distal tarsal bone 4 10 7710 -UBERON:0010738 distal tarsal bone 5 10 7711 -UBERON:0012289 fused tarsal bones 2 and 3 10 7712 -UBERON:0013649 fused tarsal bones 1 and 2 10 7713 -UBERON:3001002 basale commune (tarsal) 10 7714 -UBERON:0011679 proximal tarsal bone 9 7715 -UBERON:0001450 calcaneus 10 7716 -UBERON:0002395 talus 10 7717 -UBERON:0011678 hindlimb intermedium bone 10 7718 -UBERON:0012126 fibulare 10 7719 -UBERON:0012288 centroquartal bone 9 7720 -UBERON:3010045 centrale 1 9 7721 -UBERON:3010073 centrale 2 9 7722 -UBERON:4200011 pedal centrale 9 7723 -UBERON:4200152 intertarsale sesamoid 9 7724 -UBERON:0008000 sesamoid bone of pes 8 7725 -UBERON:0007990 proximal sesamoid bone of pes 9 7726 -UBERON:4200152 intertarsale sesamoid 9 7727 -UBERON:0008195 tarsometatarsus 8 7728 -UBERON:0010725 accessory navicular bone 8 7729 -UBERON:0012359 pedal digitopodium bone 8 7730 -UBERON:0001448 metatarsal bone 9 7731 -UBERON:0003650 metatarsal bone of digit 1 10 7732 -UBERON:0003651 metatarsal bone of digit 2 10 7733 -UBERON:0003652 metatarsal bone of digit 3 10 7734 -UBERON:0003653 metatarsal bone of digit 4 10 7735 -UBERON:0003654 metatarsal bone of digit 5 10 7736 -UBERON:0013588 fused metatarsal bones 3 and 4 10 7737 -UBERON:0014763 fused metatarsal bones 2-4 11 7738 -UBERON:4200153 metatarsal bone of digit 6 10 7739 -UBERON:4200157 metatarsal bone of digit 7 10 7740 -UBERON:4200158 metatarsal bone of digit 8 10 7741 -UBERON:0004248 pedal digit bone 9 7742 -UBERON:0001449 phalanx of pes 10 7743 -UBERON:0003640 pedal digit 1 phalanx 11 7744 -UBERON:0004315 distal phalanx of pedal digit 1 12 7745 -UBERON:0004332 proximal phalanx of pedal digit 1 12 7746 -UBERON:0003641 pedal digit 2 phalanx 11 7747 -UBERON:0004316 distal phalanx of pedal digit 2 12 7748 -UBERON:0004324 middle phalanx of pedal digit 2 12 7749 -UBERON:0004333 proximal phalanx of pedal digit 2 12 7750 -UBERON:0003642 pedal digit 3 phalanx 11 7751 -UBERON:0004317 distal phalanx of pedal digit 3 12 7752 -UBERON:0004325 middle phalanx of pedal digit 3 12 7753 -UBERON:0004334 proximal phalanx of pedal digit 3 12 7754 -UBERON:0003862 pedal digit 4 phalanx 11 7755 -UBERON:0004318 distal phalanx of pedal digit 4 12 7756 -UBERON:0004326 middle phalanx of pedal digit 4 12 7757 -UBERON:0004335 proximal phalanx of pedal digit 4 12 7758 -UBERON:0003863 pedal digit 5 phalanx 11 7759 -UBERON:0004319 distal phalanx of pedal digit 5 12 7760 -UBERON:0004327 middle phalanx of pedal digit 5 12 7761 -UBERON:0004336 proximal phalanx of pedal digit 5 12 7762 -UBERON:0003866 middle phalanx of pes 11 7763 -UBERON:0004324 middle phalanx of pedal digit 2 12 7764 -UBERON:0004325 middle phalanx of pedal digit 3 12 7765 -UBERON:0004326 middle phalanx of pedal digit 4 12 7766 -UBERON:0004327 middle phalanx of pedal digit 5 12 7767 -UBERON:0003867 distal phalanx of pes 11 7768 -UBERON:0004315 distal phalanx of pedal digit 1 12 7769 -UBERON:0004316 distal phalanx of pedal digit 2 12 7770 -UBERON:0004317 distal phalanx of pedal digit 3 12 7771 -UBERON:0004318 distal phalanx of pedal digit 4 12 7772 -UBERON:0004319 distal phalanx of pedal digit 5 12 7773 -UBERON:0003868 proximal phalanx of pes 11 7774 -UBERON:0004332 proximal phalanx of pedal digit 1 12 7775 -UBERON:0004333 proximal phalanx of pedal digit 2 12 7776 -UBERON:0004334 proximal phalanx of pedal digit 3 12 7777 -UBERON:0004335 proximal phalanx of pedal digit 4 12 7778 -UBERON:0004336 proximal phalanx of pedal digit 5 12 7779 -UBERON:4100009 pedal digit 7 phalanx 11 7780 -UBERON:0007990 proximal sesamoid bone of pes 10 7781 -UBERON:3000931 intercalary element of hind digit 10 7782 -UBERON:3010675 bony nodule of terminal phalanx of hind digit 10 7783 -UBERON:0012269 equine hindlimb splint bone 9 7784 -UBERON:0008194 tibiotarsus 7 7785 -UBERON:0010885 hindlimb cartilage element 6 7786 -UBERON:0010129 femur cartilage element 7 7787 -UBERON:0010849 tibia cartilage element 7 7788 -UBERON:0010851 fibula cartilage element 7 7789 -UBERON:0010902 tibiotarsus cartilage element 7 7790 -UBERON:0035129 pes cartilage element 7 7791 -UBERON:0010685 pedal digit phalanx cartilage element 8 7792 -UBERON:0010680 pedal digit 1 phalanx cartilage element 9 7793 -UBERON:0010681 pedal digit 2 phalanx cartilage element 9 7794 -UBERON:0010682 pedal digit 3 phalanx cartilage element 9 7795 -UBERON:0010683 pedal digit 4 phalanx cartilage element 9 7796 -UBERON:0010684 pedal digit 5 phalanx cartilage element 9 7797 -UBERON:0010697 pedal digit metatarsal cartilage element 8 7798 -UBERON:0010557 pedal digit 1 metatarsal cartilage element 9 7799 -UBERON:0010558 pedal digit 2 metatarsal cartilage element 9 7800 -UBERON:0010559 pedal digit 3 metatarsal cartilage element 9 7801 -UBERON:0010560 pedal digit 4 metatarsal cartilage element 9 7802 -UBERON:0010561 pedal digit 5 metatarsal cartilage element 9 7803 -UBERON:0010842 calcaneum cartilage element 8 7804 -UBERON:0010900 tarsometatarsus cartilage element 8 7805 -UBERON:0015082 proximal tarsal cartilage 8 7806 -UBERON:0015100 distal tarsal cartilage 8 7807 -UBERON:0015103 distal tarsal bone 1 cartilage 9 7808 -UBERON:0015106 distal tarsal bone 2 cartilage 9 7809 -UBERON:0015109 distal tarsal bone 3 cartilage 9 7810 -UBERON:0015112 distal tarsal bone 4 cartilage 9 7811 -UBERON:0015115 distal tarsal bone 5 cartilage 9 7812 -UBERON:0010886 hindlimb pre-cartilage condensation 6 7813 -UBERON:0006234 femur pre-cartilage condensation 7 7814 -UBERON:0010585 pedal digit phalanx pre-cartilage condensation 7 7815 -UBERON:0010580 pedal digit 1 phalanx pre-cartilage condensation 8 7816 -UBERON:0010581 pedal digit 2 phalanx pre-cartilage condensation 8 7817 -UBERON:0010582 pedal digit 3 phalanx pre-cartilage condensation 8 7818 -UBERON:0010583 pedal digit 4 phalanx pre-cartilage condensation 8 7819 -UBERON:0010584 pedal digit 5 phalanx pre-cartilage condensation 8 7820 -UBERON:0010687 pedal digit metatarsal pre-cartilage condensation 7 7821 -UBERON:0010547 pedal digit 1 metatarsal pre-cartilage condensation 8 7822 -UBERON:0010548 pedal digit 2 metatarsal pre-cartilage condensation 8 7823 -UBERON:0010549 pedal digit 3 metatarsal pre-cartilage condensation 8 7824 -UBERON:0010550 pedal digit 4 metatarsal pre-cartilage condensation 8 7825 -UBERON:0010551 pedal digit 5 metatarsal pre-cartilage condensation 8 7826 -UBERON:0010801 calcaneum pre-cartilage condensation 7 7827 -UBERON:0015083 proximal tarsal bone pre-cartilage condensation 7 7828 -UBERON:0015101 distal tarsal bone pre-cartilage condensation 7 7829 -UBERON:0015104 distal tarsal bone 1 pre-cartilage condensation 8 7830 -UBERON:0015107 distal tarsal bone 2 pre-cartilage condensation 8 7831 -UBERON:0015110 distal tarsal bone 3 pre-cartilage condensation 8 7832 -UBERON:0015113 distal tarsal bone 4 pre-cartilage condensation 8 7833 -UBERON:0015116 distal tarsal bone 5 pre-cartilage condensation 8 7834 -UBERON:0015004 tibia endochondral element 6 7835 -UBERON:0000979 tibia 7 7836 -UBERON:0010849 tibia cartilage element 7 7837 -UBERON:0010850 tibia pre-cartilage condensation 7 7838 -UBERON:0015011 tibiotarsus endochondral element 6 7839 -UBERON:0008194 tibiotarsus 7 7840 -UBERON:0010902 tibiotarsus cartilage element 7 7841 -UBERON:0010903 tibiotarsus pre-cartilage condensation 7 7842 -UBERON:0015012 tarsometatarsus endochondral element 6 7843 -UBERON:0008195 tarsometatarsus 7 7844 -UBERON:0010900 tarsometatarsus cartilage element 7 7845 -UBERON:0010901 tarsometatarsus pre-cartilage condensation 7 7846 -UBERON:0015013 fibula endochondral element 6 7847 -UBERON:0001446 fibula 7 7848 -UBERON:0010851 fibula cartilage element 7 7849 -UBERON:0010852 fibula pre-cartilage condensation 7 7850 -UBERON:0015030 pedal digit phalanx endochondral element 6 7851 -UBERON:0001449 phalanx of pes 7 7852 -UBERON:0003640 pedal digit 1 phalanx 8 7853 -UBERON:0004315 distal phalanx of pedal digit 1 9 7854 -UBERON:0004332 proximal phalanx of pedal digit 1 9 7855 -UBERON:0003641 pedal digit 2 phalanx 8 7856 -UBERON:0004316 distal phalanx of pedal digit 2 9 7857 -UBERON:0004324 middle phalanx of pedal digit 2 9 7858 -UBERON:0004333 proximal phalanx of pedal digit 2 9 7859 -UBERON:0003642 pedal digit 3 phalanx 8 7860 -UBERON:0004317 distal phalanx of pedal digit 3 9 7861 -UBERON:0004325 middle phalanx of pedal digit 3 9 7862 -UBERON:0004334 proximal phalanx of pedal digit 3 9 7863 -UBERON:0003862 pedal digit 4 phalanx 8 7864 -UBERON:0004318 distal phalanx of pedal digit 4 9 7865 -UBERON:0004326 middle phalanx of pedal digit 4 9 7866 -UBERON:0004335 proximal phalanx of pedal digit 4 9 7867 -UBERON:0003863 pedal digit 5 phalanx 8 7868 -UBERON:0004319 distal phalanx of pedal digit 5 9 7869 -UBERON:0004327 middle phalanx of pedal digit 5 9 7870 -UBERON:0004336 proximal phalanx of pedal digit 5 9 7871 -UBERON:0003866 middle phalanx of pes 8 7872 -UBERON:0004324 middle phalanx of pedal digit 2 9 7873 -UBERON:0004325 middle phalanx of pedal digit 3 9 7874 -UBERON:0004326 middle phalanx of pedal digit 4 9 7875 -UBERON:0004327 middle phalanx of pedal digit 5 9 7876 -UBERON:0003867 distal phalanx of pes 8 7877 -UBERON:0004315 distal phalanx of pedal digit 1 9 7878 -UBERON:0004316 distal phalanx of pedal digit 2 9 7879 -UBERON:0004317 distal phalanx of pedal digit 3 9 7880 -UBERON:0004318 distal phalanx of pedal digit 4 9 7881 -UBERON:0004319 distal phalanx of pedal digit 5 9 7882 -UBERON:0003868 proximal phalanx of pes 8 7883 -UBERON:0004332 proximal phalanx of pedal digit 1 9 7884 -UBERON:0004333 proximal phalanx of pedal digit 2 9 7885 -UBERON:0004334 proximal phalanx of pedal digit 3 9 7886 -UBERON:0004335 proximal phalanx of pedal digit 4 9 7887 -UBERON:0004336 proximal phalanx of pedal digit 5 9 7888 -UBERON:4100009 pedal digit 7 phalanx 8 7889 -UBERON:0010585 pedal digit phalanx pre-cartilage condensation 7 7890 -UBERON:0010580 pedal digit 1 phalanx pre-cartilage condensation 8 7891 -UBERON:0010581 pedal digit 2 phalanx pre-cartilage condensation 8 7892 -UBERON:0010582 pedal digit 3 phalanx pre-cartilage condensation 8 7893 -UBERON:0010583 pedal digit 4 phalanx pre-cartilage condensation 8 7894 -UBERON:0010584 pedal digit 5 phalanx pre-cartilage condensation 8 7895 -UBERON:0010685 pedal digit phalanx cartilage element 7 7896 -UBERON:0010680 pedal digit 1 phalanx cartilage element 8 7897 -UBERON:0010681 pedal digit 2 phalanx cartilage element 8 7898 -UBERON:0010682 pedal digit 3 phalanx cartilage element 8 7899 -UBERON:0010683 pedal digit 4 phalanx cartilage element 8 7900 -UBERON:0010684 pedal digit 5 phalanx cartilage element 8 7901 -UBERON:0015031 pedal digit 1 phalanx endochondral element 7 7902 -UBERON:0003640 pedal digit 1 phalanx 8 7903 -UBERON:0004315 distal phalanx of pedal digit 1 9 7904 -UBERON:0004332 proximal phalanx of pedal digit 1 9 7905 -UBERON:0010580 pedal digit 1 phalanx pre-cartilage condensation 8 7906 -UBERON:0010680 pedal digit 1 phalanx cartilage element 8 7907 -UBERON:0015032 pedal digit 2 phalanx endochondral element 7 7908 -UBERON:0003641 pedal digit 2 phalanx 8 7909 -UBERON:0004316 distal phalanx of pedal digit 2 9 7910 -UBERON:0004324 middle phalanx of pedal digit 2 9 7911 -UBERON:0004333 proximal phalanx of pedal digit 2 9 7912 -UBERON:0010581 pedal digit 2 phalanx pre-cartilage condensation 8 7913 -UBERON:0010681 pedal digit 2 phalanx cartilage element 8 7914 -UBERON:0015033 pedal digit 3 phalanx endochondral element 7 7915 -UBERON:0003642 pedal digit 3 phalanx 8 7916 -UBERON:0004317 distal phalanx of pedal digit 3 9 7917 -UBERON:0004325 middle phalanx of pedal digit 3 9 7918 -UBERON:0004334 proximal phalanx of pedal digit 3 9 7919 -UBERON:0010582 pedal digit 3 phalanx pre-cartilage condensation 8 7920 -UBERON:0010682 pedal digit 3 phalanx cartilage element 8 7921 -UBERON:0015034 pedal digit 4 phalanx endochondral element 7 7922 -UBERON:0003862 pedal digit 4 phalanx 8 7923 -UBERON:0004318 distal phalanx of pedal digit 4 9 7924 -UBERON:0004326 middle phalanx of pedal digit 4 9 7925 -UBERON:0004335 proximal phalanx of pedal digit 4 9 7926 -UBERON:0010583 pedal digit 4 phalanx pre-cartilage condensation 8 7927 -UBERON:0010683 pedal digit 4 phalanx cartilage element 8 7928 -UBERON:0015035 pedal digit 5 phalanx endochondral element 7 7929 -UBERON:0003863 pedal digit 5 phalanx 8 7930 -UBERON:0004319 distal phalanx of pedal digit 5 9 7931 -UBERON:0004327 middle phalanx of pedal digit 5 9 7932 -UBERON:0004336 proximal phalanx of pedal digit 5 9 7933 -UBERON:0010584 pedal digit 5 phalanx pre-cartilage condensation 8 7934 -UBERON:0010684 pedal digit 5 phalanx cartilage element 8 7935 -UBERON:0015036 pedal digit metatarsal endochondral element 6 7936 -UBERON:0001448 metatarsal bone 7 7937 -UBERON:0003650 metatarsal bone of digit 1 8 7938 -UBERON:0003651 metatarsal bone of digit 2 8 7939 -UBERON:0003652 metatarsal bone of digit 3 8 7940 -UBERON:0003653 metatarsal bone of digit 4 8 7941 -UBERON:0003654 metatarsal bone of digit 5 8 7942 -UBERON:0013588 fused metatarsal bones 3 and 4 8 7943 -UBERON:0014763 fused metatarsal bones 2-4 9 7944 -UBERON:4200153 metatarsal bone of digit 6 8 7945 -UBERON:4200157 metatarsal bone of digit 7 8 7946 -UBERON:4200158 metatarsal bone of digit 8 8 7947 -UBERON:0010545 metatarsus skeleton 7 7948 -UBERON:0010687 pedal digit metatarsal pre-cartilage condensation 7 7949 -UBERON:0010547 pedal digit 1 metatarsal pre-cartilage condensation 8 7950 -UBERON:0010548 pedal digit 2 metatarsal pre-cartilage condensation 8 7951 -UBERON:0010549 pedal digit 3 metatarsal pre-cartilage condensation 8 7952 -UBERON:0010550 pedal digit 4 metatarsal pre-cartilage condensation 8 7953 -UBERON:0010551 pedal digit 5 metatarsal pre-cartilage condensation 8 7954 -UBERON:0010697 pedal digit metatarsal cartilage element 7 7955 -UBERON:0010557 pedal digit 1 metatarsal cartilage element 8 7956 -UBERON:0010558 pedal digit 2 metatarsal cartilage element 8 7957 -UBERON:0010559 pedal digit 3 metatarsal cartilage element 8 7958 -UBERON:0010560 pedal digit 4 metatarsal cartilage element 8 7959 -UBERON:0010561 pedal digit 5 metatarsal cartilage element 8 7960 -UBERON:0015037 pedal digit 1 metatarsal endochondral element 7 7961 -UBERON:0003650 metatarsal bone of digit 1 8 7962 -UBERON:0010547 pedal digit 1 metatarsal pre-cartilage condensation 8 7963 -UBERON:0010557 pedal digit 1 metatarsal cartilage element 8 7964 -UBERON:0015038 pedal digit 2 metatarsal endochondral element 7 7965 -UBERON:0003651 metatarsal bone of digit 2 8 7966 -UBERON:0010548 pedal digit 2 metatarsal pre-cartilage condensation 8 7967 -UBERON:0010558 pedal digit 2 metatarsal cartilage element 8 7968 -UBERON:0015039 pedal digit 3 metatarsal endochondral element 7 7969 -UBERON:0003652 metatarsal bone of digit 3 8 7970 -UBERON:0010549 pedal digit 3 metatarsal pre-cartilage condensation 8 7971 -UBERON:0010559 pedal digit 3 metatarsal cartilage element 8 7972 -UBERON:0015040 pedal digit 4 metatarsal endochondral element 7 7973 -UBERON:0003653 metatarsal bone of digit 4 8 7974 -UBERON:0010550 pedal digit 4 metatarsal pre-cartilage condensation 8 7975 -UBERON:0010560 pedal digit 4 metatarsal cartilage element 8 7976 -UBERON:0015041 pedal digit 5 metatarsal endochondral element 7 7977 -UBERON:0003654 metatarsal bone of digit 5 8 7978 -UBERON:0010551 pedal digit 5 metatarsal pre-cartilage condensation 8 7979 -UBERON:0010561 pedal digit 5 metatarsal cartilage element 8 7980 -UBERON:0015050 tarsus endochondral element 6 7981 -UBERON:0001447 tarsal bone 7 7982 -UBERON:0001451 navicular bone of pes 8 7983 -UBERON:0006836 medial tibial tarsal bone 8 7984 -UBERON:0010721 distal tarsal bone 8 7985 -UBERON:0001452 distal tarsal bone 1 9 7986 -UBERON:0001453 distal tarsal bone 2 9 7987 -UBERON:0001454 distal tarsal bone 3 9 7988 -UBERON:0001455 cuboid bone 9 7989 -UBERON:0010723 os vesalianum pedis 9 7990 -UBERON:0010737 distal tarsal bone 4 9 7991 -UBERON:0010738 distal tarsal bone 5 9 7992 -UBERON:0012289 fused tarsal bones 2 and 3 9 7993 -UBERON:0013649 fused tarsal bones 1 and 2 9 7994 -UBERON:3001002 basale commune (tarsal) 9 7995 -UBERON:0011679 proximal tarsal bone 8 7996 -UBERON:0001450 calcaneus 9 7997 -UBERON:0002395 talus 9 7998 -UBERON:0011678 hindlimb intermedium bone 9 7999 -UBERON:0012126 fibulare 9 8000 -UBERON:0012288 centroquartal bone 8 8001 -UBERON:3010045 centrale 1 8 8002 -UBERON:3010073 centrale 2 8 8003 -UBERON:4200011 pedal centrale 8 8004 -UBERON:4200152 intertarsale sesamoid 8 8005 -UBERON:0010540 tarsus pre-cartilage condensation 7 8006 -UBERON:0010541 tarsus cartilage element 7 8007 -UBERON:0015014 calcaneum endochondral element 7 8008 -UBERON:0001450 calcaneus 8 8009 -UBERON:0010801 calcaneum pre-cartilage condensation 8 8010 -UBERON:0010842 calcaneum cartilage element 8 8011 -UBERON:0015081 proximal tarsal endochondral element 7 8012 -UBERON:0011679 proximal tarsal bone 8 8013 -UBERON:0001450 calcaneus 9 8014 -UBERON:0002395 talus 9 8015 -UBERON:0011678 hindlimb intermedium bone 9 8016 -UBERON:0012126 fibulare 9 8017 -UBERON:0015082 proximal tarsal cartilage 8 8018 -UBERON:0015083 proximal tarsal bone pre-cartilage condensation 8 8019 -UBERON:0015099 distal tarsal endochondral element 7 8020 -UBERON:0010721 distal tarsal bone 8 8021 -UBERON:0001452 distal tarsal bone 1 9 8022 -UBERON:0001453 distal tarsal bone 2 9 8023 -UBERON:0001454 distal tarsal bone 3 9 8024 -UBERON:0001455 cuboid bone 9 8025 -UBERON:0010723 os vesalianum pedis 9 8026 -UBERON:0010737 distal tarsal bone 4 9 8027 -UBERON:0010738 distal tarsal bone 5 9 8028 -UBERON:0012289 fused tarsal bones 2 and 3 9 8029 -UBERON:0013649 fused tarsal bones 1 and 2 9 8030 -UBERON:3001002 basale commune (tarsal) 9 8031 -UBERON:0015100 distal tarsal cartilage 8 8032 -UBERON:0015103 distal tarsal bone 1 cartilage 9 8033 -UBERON:0015106 distal tarsal bone 2 cartilage 9 8034 -UBERON:0015109 distal tarsal bone 3 cartilage 9 8035 -UBERON:0015112 distal tarsal bone 4 cartilage 9 8036 -UBERON:0015115 distal tarsal bone 5 cartilage 9 8037 -UBERON:0015101 distal tarsal bone pre-cartilage condensation 8 8038 -UBERON:0015104 distal tarsal bone 1 pre-cartilage condensation 9 8039 -UBERON:0015107 distal tarsal bone 2 pre-cartilage condensation 9 8040 -UBERON:0015110 distal tarsal bone 3 pre-cartilage condensation 9 8041 -UBERON:0015113 distal tarsal bone 4 pre-cartilage condensation 9 8042 -UBERON:0015116 distal tarsal bone 5 pre-cartilage condensation 9 8043 -UBERON:0015102 distal tarsal bone 1 endochondral element 8 8044 -UBERON:0001452 distal tarsal bone 1 9 8045 -UBERON:0015103 distal tarsal bone 1 cartilage 9 8046 -UBERON:0015104 distal tarsal bone 1 pre-cartilage condensation 9 8047 -UBERON:0015105 distal tarsal bone 2 endochondral element 8 8048 -UBERON:0001453 distal tarsal bone 2 9 8049 -UBERON:0015106 distal tarsal bone 2 cartilage 9 8050 -UBERON:0015107 distal tarsal bone 2 pre-cartilage condensation 9 8051 -UBERON:0015108 distal tarsal bone 3 endochondral element 8 8052 -UBERON:0001454 distal tarsal bone 3 9 8053 -UBERON:0015109 distal tarsal bone 3 cartilage 9 8054 -UBERON:0015110 distal tarsal bone 3 pre-cartilage condensation 9 8055 -UBERON:0015111 distal tarsal bone 4 endochondral element 8 8056 -UBERON:0010737 distal tarsal bone 4 9 8057 -UBERON:0015112 distal tarsal bone 4 cartilage 9 8058 -UBERON:0015113 distal tarsal bone 4 pre-cartilage condensation 9 8059 -UBERON:0015114 distal tarsal bone 5 endochondral element 8 8060 -UBERON:0010738 distal tarsal bone 5 9 8061 -UBERON:0015115 distal tarsal bone 5 cartilage 9 8062 -UBERON:0015116 distal tarsal bone 5 pre-cartilage condensation 9 8063 -UBERON:3000921 element Y of hind mesopodium 7 8064 -UBERON:4200141 prehallical element 7 8065 -UBERON:3010684 proximal-most prehallical element 8 8066 -UBERON:3010685 distal-most prehallical element 8 8067 -UBERON:0015052 femur endochondral element 6 8068 -UBERON:0000981 femur 7 8069 -UBERON:0006234 femur pre-cartilage condensation 7 8070 -UBERON:0010129 femur cartilage element 7 8071 -UBERON:0015063 autopod endochondral element 5 8072 -UBERON:0011250 autopod bone 6 8073 -UBERON:0003656 mesopodium bone 7 8074 -UBERON:0001435 carpal bone 8 8075 -UBERON:0001480 proximal carpal bone 9 8076 -UBERON:0001427 radiale 10 8077 -UBERON:0001428 intermedium 10 8078 -UBERON:0001429 pisiform 10 8079 -UBERON:0002445 ulnare 10 8080 -UBERON:0007960 scapholunate 10 8081 -UBERON:0012124 avian scapholunar bone 10 8082 -UBERON:0001481 distal carpal bone 9 8083 -UBERON:0001430 distal carpal bone 1 10 8084 -UBERON:0001431 distal carpal bone 2 10 8085 -UBERON:0001432 distal carpal bone 3 10 8086 -UBERON:0001433 distal carpal bone 4 10 8087 -UBERON:0010726 os vesalianum manus 10 8088 -UBERON:0010739 distal carpal bone 5 10 8089 -UBERON:0012290 fused carpal bones 2 and 3 10 8090 -UBERON:3000965 basale commune (carpal) 10 8091 -UBERON:0007958 central carpal bone 9 8092 -UBERON:0007959 falciform carpal bone 9 8093 -UBERON:0008257 radial sesamoid 9 8094 -UBERON:3010060 centrale (fore) 9 8095 -UBERON:4200180 semilunate carpal 9 8096 -UBERON:0001447 tarsal bone 8 8097 -UBERON:0001451 navicular bone of pes 9 8098 -UBERON:0006836 medial tibial tarsal bone 9 8099 -UBERON:0010721 distal tarsal bone 9 8100 -UBERON:0001452 distal tarsal bone 1 10 8101 -UBERON:0001453 distal tarsal bone 2 10 8102 -UBERON:0001454 distal tarsal bone 3 10 8103 -UBERON:0001455 cuboid bone 10 8104 -UBERON:0010723 os vesalianum pedis 10 8105 -UBERON:0010737 distal tarsal bone 4 10 8106 -UBERON:0010738 distal tarsal bone 5 10 8107 -UBERON:0012289 fused tarsal bones 2 and 3 10 8108 -UBERON:0013649 fused tarsal bones 1 and 2 10 8109 -UBERON:3001002 basale commune (tarsal) 10 8110 -UBERON:0011679 proximal tarsal bone 9 8111 -UBERON:0001450 calcaneus 10 8112 -UBERON:0002395 talus 10 8113 -UBERON:0011678 hindlimb intermedium bone 10 8114 -UBERON:0012126 fibulare 10 8115 -UBERON:0012288 centroquartal bone 9 8116 -UBERON:3010045 centrale 1 9 8117 -UBERON:3010073 centrale 2 9 8118 -UBERON:4200011 pedal centrale 9 8119 -UBERON:4200152 intertarsale sesamoid 9 8120 -UBERON:0012131 centrale 8 8121 -UBERON:0001451 navicular bone of pes 9 8122 -UBERON:0007958 central carpal bone 9 8123 -UBERON:3010045 centrale 1 9 8124 -UBERON:3010060 centrale (fore) 9 8125 -UBERON:3010073 centrale 2 9 8126 -UBERON:4200011 pedal centrale 9 8127 -UBERON:4200083 postaxial centrale 9 8128 -UBERON:4200084 preaxial centrale 9 8129 -UBERON:0014395 proximal mesopodial bone 8 8130 -UBERON:0001480 proximal carpal bone 9 8131 -UBERON:0001427 radiale 10 8132 -UBERON:0001428 intermedium 10 8133 -UBERON:0001429 pisiform 10 8134 -UBERON:0002445 ulnare 10 8135 -UBERON:0007960 scapholunate 10 8136 -UBERON:0012124 avian scapholunar bone 10 8137 -UBERON:0011679 proximal tarsal bone 9 8138 -UBERON:0001450 calcaneus 10 8139 -UBERON:0002395 talus 10 8140 -UBERON:0011678 hindlimb intermedium bone 10 8141 -UBERON:0012126 fibulare 10 8142 -UBERON:0018102 distal mesopodial bone 8 8143 -UBERON:0001481 distal carpal bone 9 8144 -UBERON:0001430 distal carpal bone 1 10 8145 -UBERON:0001431 distal carpal bone 2 10 8146 -UBERON:0001432 distal carpal bone 3 10 8147 -UBERON:0001433 distal carpal bone 4 10 8148 -UBERON:0010726 os vesalianum manus 10 8149 -UBERON:0010739 distal carpal bone 5 10 8150 -UBERON:0012290 fused carpal bones 2 and 3 10 8151 -UBERON:3000965 basale commune (carpal) 10 8152 -UBERON:0010721 distal tarsal bone 9 8153 -UBERON:0001452 distal tarsal bone 1 10 8154 -UBERON:0001453 distal tarsal bone 2 10 8155 -UBERON:0001454 distal tarsal bone 3 10 8156 -UBERON:0001455 cuboid bone 10 8157 -UBERON:0010723 os vesalianum pedis 10 8158 -UBERON:0010737 distal tarsal bone 4 10 8159 -UBERON:0010738 distal tarsal bone 5 10 8160 -UBERON:0012289 fused tarsal bones 2 and 3 10 8161 -UBERON:0013649 fused tarsal bones 1 and 2 10 8162 -UBERON:3001002 basale commune (tarsal) 10 8163 -UBERON:0005897 manus bone 7 8164 -UBERON:0001435 carpal bone 8 8165 -UBERON:0001480 proximal carpal bone 9 8166 -UBERON:0001427 radiale 10 8167 -UBERON:0001428 intermedium 10 8168 -UBERON:0001429 pisiform 10 8169 -UBERON:0002445 ulnare 10 8170 -UBERON:0007960 scapholunate 10 8171 -UBERON:0012124 avian scapholunar bone 10 8172 -UBERON:0001481 distal carpal bone 9 8173 -UBERON:0001430 distal carpal bone 1 10 8174 -UBERON:0001431 distal carpal bone 2 10 8175 -UBERON:0001432 distal carpal bone 3 10 8176 -UBERON:0001433 distal carpal bone 4 10 8177 -UBERON:0010726 os vesalianum manus 10 8178 -UBERON:0010739 distal carpal bone 5 10 8179 -UBERON:0012290 fused carpal bones 2 and 3 10 8180 -UBERON:3000965 basale commune (carpal) 10 8181 -UBERON:0007958 central carpal bone 9 8182 -UBERON:0007959 falciform carpal bone 9 8183 -UBERON:0008257 radial sesamoid 9 8184 -UBERON:3010060 centrale (fore) 9 8185 -UBERON:4200180 semilunate carpal 9 8186 -UBERON:0007997 sesamoid bone of manus 8 8187 -UBERON:0001429 pisiform 9 8188 -UBERON:0007991 proximal sesamoid bone of manus 9 8189 -UBERON:0008257 radial sesamoid 9 8190 -UBERON:0011205 carpometacarpus 8 8191 -UBERON:0012358 manual digitopodium bone 8 8192 -UBERON:0002374 metacarpal bone 9 8193 -UBERON:0003645 metacarpal bone of digit 1 10 8194 -UBERON:0003646 metacarpal bone of digit 2 10 8195 -UBERON:0003647 metacarpal bone of digit 3 10 8196 -UBERON:0003648 metacarpal bone of digit 4 10 8197 -UBERON:0003649 metacarpal bone of digit 5 10 8198 -UBERON:0013587 fused metacarpal bones 3 and 4 10 8199 -UBERON:0004249 manual digit bone 9 8200 -UBERON:0001436 phalanx of manus 10 8201 -UBERON:0002234 proximal phalanx of manus 11 8202 -UBERON:0004328 proximal phalanx of manual digit 2 12 8203 -UBERON:0004329 proximal phalanx of manual digit 3 12 8204 -UBERON:0004330 proximal phalanx of manual digit 4 12 8205 -UBERON:0004331 proximal phalanx of manual digit 5 12 8206 -UBERON:0004338 proximal phalanx of manual digit 1 12 8207 -UBERON:0003620 manual digit 1 phalanx 11 8208 -UBERON:0004337 distal phalanx of manual digit 1 12 8209 -UBERON:0004338 proximal phalanx of manual digit 1 12 8210 -UBERON:4200219 middle phalanx of manual digit 1 12 8211 -UBERON:0003636 manual digit 2 phalanx 11 8212 -UBERON:0004311 distal phalanx of manual digit 2 12 8213 -UBERON:0004320 middle phalanx of manual digit 2 12 8214 -UBERON:0004328 proximal phalanx of manual digit 2 12 8215 -UBERON:0003637 manual digit 3 phalanx 11 8216 -UBERON:0004312 distal phalanx of manual digit 3 12 8217 -UBERON:0004321 middle phalanx of manual digit 3 12 8218 -UBERON:0004329 proximal phalanx of manual digit 3 12 8219 -UBERON:0003638 manual digit 4 phalanx 11 8220 -UBERON:0004313 distal phalanx of manual digit 4 12 8221 -UBERON:0004322 middle phalanx of manual digit 4 12 8222 -UBERON:0004330 proximal phalanx of manual digit 4 12 8223 -UBERON:0003639 manual digit 5 phalanx 11 8224 -UBERON:0004314 distal phalanx of manual digit 5 12 8225 -UBERON:0004323 middle phalanx of manual digit 5 12 8226 -UBERON:0004331 proximal phalanx of manual digit 5 12 8227 -UBERON:0003864 middle phalanx of manus 11 8228 -UBERON:0004320 middle phalanx of manual digit 2 12 8229 -UBERON:0004321 middle phalanx of manual digit 3 12 8230 -UBERON:0004322 middle phalanx of manual digit 4 12 8231 -UBERON:0004323 middle phalanx of manual digit 5 12 8232 -UBERON:4200219 middle phalanx of manual digit 1 12 8233 -UBERON:0003865 distal phalanx of manus 11 8234 -UBERON:0004311 distal phalanx of manual digit 2 12 8235 -UBERON:0004312 distal phalanx of manual digit 3 12 8236 -UBERON:0004313 distal phalanx of manual digit 4 12 8237 -UBERON:0004314 distal phalanx of manual digit 5 12 8238 -UBERON:0004337 distal phalanx of manual digit 1 12 8239 -UBERON:0007991 proximal sesamoid bone of manus 10 8240 -UBERON:3000856 intercalary element of fore digit 10 8241 -UBERON:0012268 equine forelimb splint bone 9 8242 -UBERON:0005899 pes bone 7 8243 -UBERON:0001447 tarsal bone 8 8244 -UBERON:0001451 navicular bone of pes 9 8245 -UBERON:0006836 medial tibial tarsal bone 9 8246 -UBERON:0010721 distal tarsal bone 9 8247 -UBERON:0001452 distal tarsal bone 1 10 8248 -UBERON:0001453 distal tarsal bone 2 10 8249 -UBERON:0001454 distal tarsal bone 3 10 8250 -UBERON:0001455 cuboid bone 10 8251 -UBERON:0010723 os vesalianum pedis 10 8252 -UBERON:0010737 distal tarsal bone 4 10 8253 -UBERON:0010738 distal tarsal bone 5 10 8254 -UBERON:0012289 fused tarsal bones 2 and 3 10 8255 -UBERON:0013649 fused tarsal bones 1 and 2 10 8256 -UBERON:3001002 basale commune (tarsal) 10 8257 -UBERON:0011679 proximal tarsal bone 9 8258 -UBERON:0001450 calcaneus 10 8259 -UBERON:0002395 talus 10 8260 -UBERON:0011678 hindlimb intermedium bone 10 8261 -UBERON:0012126 fibulare 10 8262 -UBERON:0012288 centroquartal bone 9 8263 -UBERON:3010045 centrale 1 9 8264 -UBERON:3010073 centrale 2 9 8265 -UBERON:4200011 pedal centrale 9 8266 -UBERON:4200152 intertarsale sesamoid 9 8267 -UBERON:0008000 sesamoid bone of pes 8 8268 -UBERON:0007990 proximal sesamoid bone of pes 9 8269 -UBERON:4200152 intertarsale sesamoid 9 8270 -UBERON:0008195 tarsometatarsus 8 8271 -UBERON:0010725 accessory navicular bone 8 8272 -UBERON:0012359 pedal digitopodium bone 8 8273 -UBERON:0001448 metatarsal bone 9 8274 -UBERON:0003650 metatarsal bone of digit 1 10 8275 -UBERON:0003651 metatarsal bone of digit 2 10 8276 -UBERON:0003652 metatarsal bone of digit 3 10 8277 -UBERON:0003653 metatarsal bone of digit 4 10 8278 -UBERON:0003654 metatarsal bone of digit 5 10 8279 -UBERON:0013588 fused metatarsal bones 3 and 4 10 8280 -UBERON:0014763 fused metatarsal bones 2-4 11 8281 -UBERON:4200153 metatarsal bone of digit 6 10 8282 -UBERON:4200157 metatarsal bone of digit 7 10 8283 -UBERON:4200158 metatarsal bone of digit 8 10 8284 -UBERON:0004248 pedal digit bone 9 8285 -UBERON:0001449 phalanx of pes 10 8286 -UBERON:0003640 pedal digit 1 phalanx 11 8287 -UBERON:0004315 distal phalanx of pedal digit 1 12 8288 -UBERON:0004332 proximal phalanx of pedal digit 1 12 8289 -UBERON:0003641 pedal digit 2 phalanx 11 8290 -UBERON:0004316 distal phalanx of pedal digit 2 12 8291 -UBERON:0004324 middle phalanx of pedal digit 2 12 8292 -UBERON:0004333 proximal phalanx of pedal digit 2 12 8293 -UBERON:0003642 pedal digit 3 phalanx 11 8294 -UBERON:0004317 distal phalanx of pedal digit 3 12 8295 -UBERON:0004325 middle phalanx of pedal digit 3 12 8296 -UBERON:0004334 proximal phalanx of pedal digit 3 12 8297 -UBERON:0003862 pedal digit 4 phalanx 11 8298 -UBERON:0004318 distal phalanx of pedal digit 4 12 8299 -UBERON:0004326 middle phalanx of pedal digit 4 12 8300 -UBERON:0004335 proximal phalanx of pedal digit 4 12 8301 -UBERON:0003863 pedal digit 5 phalanx 11 8302 -UBERON:0004319 distal phalanx of pedal digit 5 12 8303 -UBERON:0004327 middle phalanx of pedal digit 5 12 8304 -UBERON:0004336 proximal phalanx of pedal digit 5 12 8305 -UBERON:0003866 middle phalanx of pes 11 8306 -UBERON:0004324 middle phalanx of pedal digit 2 12 8307 -UBERON:0004325 middle phalanx of pedal digit 3 12 8308 -UBERON:0004326 middle phalanx of pedal digit 4 12 8309 -UBERON:0004327 middle phalanx of pedal digit 5 12 8310 -UBERON:0003867 distal phalanx of pes 11 8311 -UBERON:0004315 distal phalanx of pedal digit 1 12 8312 -UBERON:0004316 distal phalanx of pedal digit 2 12 8313 -UBERON:0004317 distal phalanx of pedal digit 3 12 8314 -UBERON:0004318 distal phalanx of pedal digit 4 12 8315 -UBERON:0004319 distal phalanx of pedal digit 5 12 8316 -UBERON:0003868 proximal phalanx of pes 11 8317 -UBERON:0004332 proximal phalanx of pedal digit 1 12 8318 -UBERON:0004333 proximal phalanx of pedal digit 2 12 8319 -UBERON:0004334 proximal phalanx of pedal digit 3 12 8320 -UBERON:0004335 proximal phalanx of pedal digit 4 12 8321 -UBERON:0004336 proximal phalanx of pedal digit 5 12 8322 -UBERON:4100009 pedal digit 7 phalanx 11 8323 -UBERON:0007990 proximal sesamoid bone of pes 10 8324 -UBERON:3000931 intercalary element of hind digit 10 8325 -UBERON:3010675 bony nodule of terminal phalanx of hind digit 10 8326 -UBERON:0012269 equine hindlimb splint bone 9 8327 -UBERON:0010759 equine distal sesamoid 7 8328 -UBERON:0012357 digitopodium bone 7 8329 -UBERON:0003221 phalanx 8 8330 -UBERON:0001436 phalanx of manus 9 8331 -UBERON:0002234 proximal phalanx of manus 10 8332 -UBERON:0004328 proximal phalanx of manual digit 2 11 8333 -UBERON:0004329 proximal phalanx of manual digit 3 11 8334 -UBERON:0004330 proximal phalanx of manual digit 4 11 8335 -UBERON:0004331 proximal phalanx of manual digit 5 11 8336 -UBERON:0004338 proximal phalanx of manual digit 1 11 8337 -UBERON:0003620 manual digit 1 phalanx 10 8338 -UBERON:0004337 distal phalanx of manual digit 1 11 8339 -UBERON:0004338 proximal phalanx of manual digit 1 11 8340 -UBERON:4200219 middle phalanx of manual digit 1 11 8341 -UBERON:0003636 manual digit 2 phalanx 10 8342 -UBERON:0004311 distal phalanx of manual digit 2 11 8343 -UBERON:0004320 middle phalanx of manual digit 2 11 8344 -UBERON:0004328 proximal phalanx of manual digit 2 11 8345 -UBERON:0003637 manual digit 3 phalanx 10 8346 -UBERON:0004312 distal phalanx of manual digit 3 11 8347 -UBERON:0004321 middle phalanx of manual digit 3 11 8348 -UBERON:0004329 proximal phalanx of manual digit 3 11 8349 -UBERON:0003638 manual digit 4 phalanx 10 8350 -UBERON:0004313 distal phalanx of manual digit 4 11 8351 -UBERON:0004322 middle phalanx of manual digit 4 11 8352 -UBERON:0004330 proximal phalanx of manual digit 4 11 8353 -UBERON:0003639 manual digit 5 phalanx 10 8354 -UBERON:0004314 distal phalanx of manual digit 5 11 8355 -UBERON:0004323 middle phalanx of manual digit 5 11 8356 -UBERON:0004331 proximal phalanx of manual digit 5 11 8357 -UBERON:0003864 middle phalanx of manus 10 8358 -UBERON:0004320 middle phalanx of manual digit 2 11 8359 -UBERON:0004321 middle phalanx of manual digit 3 11 8360 -UBERON:0004322 middle phalanx of manual digit 4 11 8361 -UBERON:0004323 middle phalanx of manual digit 5 11 8362 -UBERON:4200219 middle phalanx of manual digit 1 11 8363 -UBERON:0003865 distal phalanx of manus 10 8364 -UBERON:0004311 distal phalanx of manual digit 2 11 8365 -UBERON:0004312 distal phalanx of manual digit 3 11 8366 -UBERON:0004313 distal phalanx of manual digit 4 11 8367 -UBERON:0004314 distal phalanx of manual digit 5 11 8368 -UBERON:0004337 distal phalanx of manual digit 1 11 8369 -UBERON:0001449 phalanx of pes 9 8370 -UBERON:0003640 pedal digit 1 phalanx 10 8371 -UBERON:0004315 distal phalanx of pedal digit 1 11 8372 -UBERON:0004332 proximal phalanx of pedal digit 1 11 8373 -UBERON:0003641 pedal digit 2 phalanx 10 8374 -UBERON:0004316 distal phalanx of pedal digit 2 11 8375 -UBERON:0004324 middle phalanx of pedal digit 2 11 8376 -UBERON:0004333 proximal phalanx of pedal digit 2 11 8377 -UBERON:0003642 pedal digit 3 phalanx 10 8378 -UBERON:0004317 distal phalanx of pedal digit 3 11 8379 -UBERON:0004325 middle phalanx of pedal digit 3 11 8380 -UBERON:0004334 proximal phalanx of pedal digit 3 11 8381 -UBERON:0003862 pedal digit 4 phalanx 10 8382 -UBERON:0004318 distal phalanx of pedal digit 4 11 8383 -UBERON:0004326 middle phalanx of pedal digit 4 11 8384 -UBERON:0004335 proximal phalanx of pedal digit 4 11 8385 -UBERON:0003863 pedal digit 5 phalanx 10 8386 -UBERON:0004319 distal phalanx of pedal digit 5 11 8387 -UBERON:0004327 middle phalanx of pedal digit 5 11 8388 -UBERON:0004336 proximal phalanx of pedal digit 5 11 8389 -UBERON:0003866 middle phalanx of pes 10 8390 -UBERON:0004324 middle phalanx of pedal digit 2 11 8391 -UBERON:0004325 middle phalanx of pedal digit 3 11 8392 -UBERON:0004326 middle phalanx of pedal digit 4 11 8393 -UBERON:0004327 middle phalanx of pedal digit 5 11 8394 -UBERON:0003867 distal phalanx of pes 10 8395 -UBERON:0004315 distal phalanx of pedal digit 1 11 8396 -UBERON:0004316 distal phalanx of pedal digit 2 11 8397 -UBERON:0004317 distal phalanx of pedal digit 3 11 8398 -UBERON:0004318 distal phalanx of pedal digit 4 11 8399 -UBERON:0004319 distal phalanx of pedal digit 5 11 8400 -UBERON:0003868 proximal phalanx of pes 10 8401 -UBERON:0004332 proximal phalanx of pedal digit 1 11 8402 -UBERON:0004333 proximal phalanx of pedal digit 2 11 8403 -UBERON:0004334 proximal phalanx of pedal digit 3 11 8404 -UBERON:0004335 proximal phalanx of pedal digit 4 11 8405 -UBERON:0004336 proximal phalanx of pedal digit 5 11 8406 -UBERON:4100009 pedal digit 7 phalanx 10 8407 -UBERON:0004300 distal phalanx 9 8408 -UBERON:0003865 distal phalanx of manus 10 8409 -UBERON:0004311 distal phalanx of manual digit 2 11 8410 -UBERON:0004312 distal phalanx of manual digit 3 11 8411 -UBERON:0004313 distal phalanx of manual digit 4 11 8412 -UBERON:0004314 distal phalanx of manual digit 5 11 8413 -UBERON:0004337 distal phalanx of manual digit 1 11 8414 -UBERON:0003867 distal phalanx of pes 10 8415 -UBERON:0004315 distal phalanx of pedal digit 1 11 8416 -UBERON:0004316 distal phalanx of pedal digit 2 11 8417 -UBERON:0004317 distal phalanx of pedal digit 3 11 8418 -UBERON:0004318 distal phalanx of pedal digit 4 11 8419 -UBERON:0004319 distal phalanx of pedal digit 5 11 8420 -UBERON:0014483 distal phalanx of digit 1 10 8421 -UBERON:0004315 distal phalanx of pedal digit 1 11 8422 -UBERON:0004337 distal phalanx of manual digit 1 11 8423 -UBERON:0014484 distal phalanx of digit 2 10 8424 -UBERON:0004311 distal phalanx of manual digit 2 11 8425 -UBERON:0004316 distal phalanx of pedal digit 2 11 8426 -UBERON:0014485 distal phalanx of digit 3 10 8427 -UBERON:0004312 distal phalanx of manual digit 3 11 8428 -UBERON:0004317 distal phalanx of pedal digit 3 11 8429 -UBERON:0014486 distal phalanx of digit 4 10 8430 -UBERON:0004313 distal phalanx of manual digit 4 11 8431 -UBERON:0004318 distal phalanx of pedal digit 4 11 8432 -UBERON:0014487 distal phalanx of digit 5 10 8433 -UBERON:0004314 distal phalanx of manual digit 5 11 8434 -UBERON:0004319 distal phalanx of pedal digit 5 11 8435 -UBERON:3010746 T-shaped terminal phalanx 10 8436 -UBERON:0004301 middle phalanx 9 8437 -UBERON:0003864 middle phalanx of manus 10 8438 -UBERON:0004320 middle phalanx of manual digit 2 11 8439 -UBERON:0004321 middle phalanx of manual digit 3 11 8440 -UBERON:0004322 middle phalanx of manual digit 4 11 8441 -UBERON:0004323 middle phalanx of manual digit 5 11 8442 -UBERON:4200219 middle phalanx of manual digit 1 11 8443 -UBERON:0003866 middle phalanx of pes 10 8444 -UBERON:0004324 middle phalanx of pedal digit 2 11 8445 -UBERON:0004325 middle phalanx of pedal digit 3 11 8446 -UBERON:0004326 middle phalanx of pedal digit 4 11 8447 -UBERON:0004327 middle phalanx of pedal digit 5 11 8448 -UBERON:0014488 middle phalanx of digit 2 10 8449 -UBERON:0004320 middle phalanx of manual digit 2 11 8450 -UBERON:0004324 middle phalanx of pedal digit 2 11 8451 -UBERON:0014489 middle phalanx of digit 3 10 8452 -UBERON:0004321 middle phalanx of manual digit 3 11 8453 -UBERON:0004325 middle phalanx of pedal digit 3 11 8454 -UBERON:0009555 short pastern bone 11 8455 -UBERON:0014490 middle phalanx of digit 4 10 8456 -UBERON:0004322 middle phalanx of manual digit 4 11 8457 -UBERON:0004326 middle phalanx of pedal digit 4 11 8458 -UBERON:0014491 middle phalanx of digit 5 10 8459 -UBERON:0004323 middle phalanx of manual digit 5 11 8460 -UBERON:0004327 middle phalanx of pedal digit 5 11 8461 -UBERON:0004302 proximal phalanx 9 8462 -UBERON:0002234 proximal phalanx of manus 10 8463 -UBERON:0004328 proximal phalanx of manual digit 2 11 8464 -UBERON:0004329 proximal phalanx of manual digit 3 11 8465 -UBERON:0004330 proximal phalanx of manual digit 4 11 8466 -UBERON:0004331 proximal phalanx of manual digit 5 11 8467 -UBERON:0004338 proximal phalanx of manual digit 1 11 8468 -UBERON:0003868 proximal phalanx of pes 10 8469 -UBERON:0004332 proximal phalanx of pedal digit 1 11 8470 -UBERON:0004333 proximal phalanx of pedal digit 2 11 8471 -UBERON:0004334 proximal phalanx of pedal digit 3 11 8472 -UBERON:0004335 proximal phalanx of pedal digit 4 11 8473 -UBERON:0004336 proximal phalanx of pedal digit 5 11 8474 -UBERON:0014501 proximal phalanx of digit 1 10 8475 -UBERON:0004332 proximal phalanx of pedal digit 1 11 8476 -UBERON:0004338 proximal phalanx of manual digit 1 11 8477 -UBERON:0014502 proximal phalanx of digit 2 10 8478 -UBERON:0004328 proximal phalanx of manual digit 2 11 8479 -UBERON:0004333 proximal phalanx of pedal digit 2 11 8480 -UBERON:0014503 proximal phalanx of digit 3 10 8481 -UBERON:0004329 proximal phalanx of manual digit 3 11 8482 -UBERON:0004334 proximal phalanx of pedal digit 3 11 8483 -UBERON:0009556 long pastern bone 11 8484 -UBERON:0014504 proximal phalanx of digit 4 10 8485 -UBERON:0004330 proximal phalanx of manual digit 4 11 8486 -UBERON:0004335 proximal phalanx of pedal digit 4 11 8487 -UBERON:0014505 proximal phalanx of digit 5 10 8488 -UBERON:0004331 proximal phalanx of manual digit 5 11 8489 -UBERON:0004336 proximal phalanx of pedal digit 5 11 8490 -UBERON:0009558 pastern bone 9 8491 -UBERON:0009555 short pastern bone 10 8492 -UBERON:0009556 long pastern bone 10 8493 -UBERON:0018266 third phalanx 9 8494 -UBERON:0018322 fourth phalanx 9 8495 -UBERON:4100005 second phalanx 9 8496 -UBERON:0003821 metapodium bone 8 8497 -UBERON:0001448 metatarsal bone 9 8498 -UBERON:0003650 metatarsal bone of digit 1 10 8499 -UBERON:0003651 metatarsal bone of digit 2 10 8500 -UBERON:0003652 metatarsal bone of digit 3 10 8501 -UBERON:0003653 metatarsal bone of digit 4 10 8502 -UBERON:0003654 metatarsal bone of digit 5 10 8503 -UBERON:0013588 fused metatarsal bones 3 and 4 10 8504 -UBERON:0014763 fused metatarsal bones 2-4 11 8505 -UBERON:4200153 metatarsal bone of digit 6 10 8506 -UBERON:4200157 metatarsal bone of digit 7 10 8507 -UBERON:4200158 metatarsal bone of digit 8 10 8508 -UBERON:0002374 metacarpal bone 9 8509 -UBERON:0003645 metacarpal bone of digit 1 10 8510 -UBERON:0003646 metacarpal bone of digit 2 10 8511 -UBERON:0003647 metacarpal bone of digit 3 10 8512 -UBERON:0003648 metacarpal bone of digit 4 10 8513 -UBERON:0003649 metacarpal bone of digit 5 10 8514 -UBERON:0013587 fused metacarpal bones 3 and 4 10 8515 -UBERON:0012267 equine splint bone 9 8516 -UBERON:0012268 equine forelimb splint bone 10 8517 -UBERON:0012269 equine hindlimb splint bone 10 8518 -UBERON:0013581 metapodium bone 1 9 8519 -UBERON:0003645 metacarpal bone of digit 1 10 8520 -UBERON:0003650 metatarsal bone of digit 1 10 8521 -UBERON:0013582 metapodium bone 2 9 8522 -UBERON:0003646 metacarpal bone of digit 2 10 8523 -UBERON:0003651 metatarsal bone of digit 2 10 8524 -UBERON:0013583 metapodium bone 3 9 8525 -UBERON:0003647 metacarpal bone of digit 3 10 8526 -UBERON:0003652 metatarsal bone of digit 3 10 8527 -UBERON:0013584 metapodium bone 4 9 8528 -UBERON:0003648 metacarpal bone of digit 4 10 8529 -UBERON:0003653 metatarsal bone of digit 4 10 8530 -UBERON:0013585 metapodium bone 5 9 8531 -UBERON:0003649 metacarpal bone of digit 5 10 8532 -UBERON:0003654 metatarsal bone of digit 5 10 8533 -UBERON:0013586 fused metapodial bones 3 and 4 9 8534 -UBERON:0013587 fused metacarpal bones 3 and 4 10 8535 -UBERON:0013588 fused metatarsal bones 3 and 4 10 8536 -UBERON:0014763 fused metatarsal bones 2-4 11 8537 -UBERON:0014762 fused metapodial bones 2-4 10 8538 -UBERON:0014763 fused metatarsal bones 2-4 11 8539 -UBERON:4200154 metapodium bone 6 9 8540 -UBERON:4200153 metatarsal bone of digit 6 10 8541 -UBERON:4200155 metapodium bone 7 9 8542 -UBERON:4200157 metatarsal bone of digit 7 10 8543 -UBERON:4200156 metapodium bone 8 9 8544 -UBERON:4200158 metatarsal bone of digit 8 10 8545 -UBERON:0012358 manual digitopodium bone 8 8546 -UBERON:0002374 metacarpal bone 9 8547 -UBERON:0003645 metacarpal bone of digit 1 10 8548 -UBERON:0003646 metacarpal bone of digit 2 10 8549 -UBERON:0003647 metacarpal bone of digit 3 10 8550 -UBERON:0003648 metacarpal bone of digit 4 10 8551 -UBERON:0003649 metacarpal bone of digit 5 10 8552 -UBERON:0013587 fused metacarpal bones 3 and 4 10 8553 -UBERON:0004249 manual digit bone 9 8554 -UBERON:0001436 phalanx of manus 10 8555 -UBERON:0002234 proximal phalanx of manus 11 8556 -UBERON:0004328 proximal phalanx of manual digit 2 12 8557 -UBERON:0004329 proximal phalanx of manual digit 3 12 8558 -UBERON:0004330 proximal phalanx of manual digit 4 12 8559 -UBERON:0004331 proximal phalanx of manual digit 5 12 8560 -UBERON:0004338 proximal phalanx of manual digit 1 12 8561 -UBERON:0003620 manual digit 1 phalanx 11 8562 -UBERON:0004337 distal phalanx of manual digit 1 12 8563 -UBERON:0004338 proximal phalanx of manual digit 1 12 8564 -UBERON:4200219 middle phalanx of manual digit 1 12 8565 -UBERON:0003636 manual digit 2 phalanx 11 8566 -UBERON:0004311 distal phalanx of manual digit 2 12 8567 -UBERON:0004320 middle phalanx of manual digit 2 12 8568 -UBERON:0004328 proximal phalanx of manual digit 2 12 8569 -UBERON:0003637 manual digit 3 phalanx 11 8570 -UBERON:0004312 distal phalanx of manual digit 3 12 8571 -UBERON:0004321 middle phalanx of manual digit 3 12 8572 -UBERON:0004329 proximal phalanx of manual digit 3 12 8573 -UBERON:0003638 manual digit 4 phalanx 11 8574 -UBERON:0004313 distal phalanx of manual digit 4 12 8575 -UBERON:0004322 middle phalanx of manual digit 4 12 8576 -UBERON:0004330 proximal phalanx of manual digit 4 12 8577 -UBERON:0003639 manual digit 5 phalanx 11 8578 -UBERON:0004314 distal phalanx of manual digit 5 12 8579 -UBERON:0004323 middle phalanx of manual digit 5 12 8580 -UBERON:0004331 proximal phalanx of manual digit 5 12 8581 -UBERON:0003864 middle phalanx of manus 11 8582 -UBERON:0004320 middle phalanx of manual digit 2 12 8583 -UBERON:0004321 middle phalanx of manual digit 3 12 8584 -UBERON:0004322 middle phalanx of manual digit 4 12 8585 -UBERON:0004323 middle phalanx of manual digit 5 12 8586 -UBERON:4200219 middle phalanx of manual digit 1 12 8587 -UBERON:0003865 distal phalanx of manus 11 8588 -UBERON:0004311 distal phalanx of manual digit 2 12 8589 -UBERON:0004312 distal phalanx of manual digit 3 12 8590 -UBERON:0004313 distal phalanx of manual digit 4 12 8591 -UBERON:0004314 distal phalanx of manual digit 5 12 8592 -UBERON:0004337 distal phalanx of manual digit 1 12 8593 -UBERON:0007991 proximal sesamoid bone of manus 10 8594 -UBERON:3000856 intercalary element of fore digit 10 8595 -UBERON:0012268 equine forelimb splint bone 9 8596 -UBERON:0012359 pedal digitopodium bone 8 8597 -UBERON:0001448 metatarsal bone 9 8598 -UBERON:0003650 metatarsal bone of digit 1 10 8599 -UBERON:0003651 metatarsal bone of digit 2 10 8600 -UBERON:0003652 metatarsal bone of digit 3 10 8601 -UBERON:0003653 metatarsal bone of digit 4 10 8602 -UBERON:0003654 metatarsal bone of digit 5 10 8603 -UBERON:0013588 fused metatarsal bones 3 and 4 10 8604 -UBERON:0014763 fused metatarsal bones 2-4 11 8605 -UBERON:4200153 metatarsal bone of digit 6 10 8606 -UBERON:4200157 metatarsal bone of digit 7 10 8607 -UBERON:4200158 metatarsal bone of digit 8 10 8608 -UBERON:0004248 pedal digit bone 9 8609 -UBERON:0001449 phalanx of pes 10 8610 -UBERON:0003640 pedal digit 1 phalanx 11 8611 -UBERON:0004315 distal phalanx of pedal digit 1 12 8612 -UBERON:0004332 proximal phalanx of pedal digit 1 12 8613 -UBERON:0003641 pedal digit 2 phalanx 11 8614 -UBERON:0004316 distal phalanx of pedal digit 2 12 8615 -UBERON:0004324 middle phalanx of pedal digit 2 12 8616 -UBERON:0004333 proximal phalanx of pedal digit 2 12 8617 -UBERON:0003642 pedal digit 3 phalanx 11 8618 -UBERON:0004317 distal phalanx of pedal digit 3 12 8619 -UBERON:0004325 middle phalanx of pedal digit 3 12 8620 -UBERON:0004334 proximal phalanx of pedal digit 3 12 8621 -UBERON:0003862 pedal digit 4 phalanx 11 8622 -UBERON:0004318 distal phalanx of pedal digit 4 12 8623 -UBERON:0004326 middle phalanx of pedal digit 4 12 8624 -UBERON:0004335 proximal phalanx of pedal digit 4 12 8625 -UBERON:0003863 pedal digit 5 phalanx 11 8626 -UBERON:0004319 distal phalanx of pedal digit 5 12 8627 -UBERON:0004327 middle phalanx of pedal digit 5 12 8628 -UBERON:0004336 proximal phalanx of pedal digit 5 12 8629 -UBERON:0003866 middle phalanx of pes 11 8630 -UBERON:0004324 middle phalanx of pedal digit 2 12 8631 -UBERON:0004325 middle phalanx of pedal digit 3 12 8632 -UBERON:0004326 middle phalanx of pedal digit 4 12 8633 -UBERON:0004327 middle phalanx of pedal digit 5 12 8634 -UBERON:0003867 distal phalanx of pes 11 8635 -UBERON:0004315 distal phalanx of pedal digit 1 12 8636 -UBERON:0004316 distal phalanx of pedal digit 2 12 8637 -UBERON:0004317 distal phalanx of pedal digit 3 12 8638 -UBERON:0004318 distal phalanx of pedal digit 4 12 8639 -UBERON:0004319 distal phalanx of pedal digit 5 12 8640 -UBERON:0003868 proximal phalanx of pes 11 8641 -UBERON:0004332 proximal phalanx of pedal digit 1 12 8642 -UBERON:0004333 proximal phalanx of pedal digit 2 12 8643 -UBERON:0004334 proximal phalanx of pedal digit 3 12 8644 -UBERON:0004335 proximal phalanx of pedal digit 4 12 8645 -UBERON:0004336 proximal phalanx of pedal digit 5 12 8646 -UBERON:4100009 pedal digit 7 phalanx 11 8647 -UBERON:0007990 proximal sesamoid bone of pes 10 8648 -UBERON:3000931 intercalary element of hind digit 10 8649 -UBERON:3010675 bony nodule of terminal phalanx of hind digit 10 8650 -UBERON:0012269 equine hindlimb splint bone 9 8651 -UBERON:3010624 subarticular sesamoid 8 8652 -UBERON:0015012 tarsometatarsus endochondral element 6 8653 -UBERON:0008195 tarsometatarsus 7 8654 -UBERON:0010900 tarsometatarsus cartilage element 7 8655 -UBERON:0010901 tarsometatarsus pre-cartilage condensation 7 8656 -UBERON:0015023 phalanx endochondral element 6 8657 -UBERON:0003221 phalanx 7 8658 -UBERON:0001436 phalanx of manus 8 8659 -UBERON:0002234 proximal phalanx of manus 9 8660 -UBERON:0004328 proximal phalanx of manual digit 2 10 8661 -UBERON:0004329 proximal phalanx of manual digit 3 10 8662 -UBERON:0004330 proximal phalanx of manual digit 4 10 8663 -UBERON:0004331 proximal phalanx of manual digit 5 10 8664 -UBERON:0004338 proximal phalanx of manual digit 1 10 8665 -UBERON:0003620 manual digit 1 phalanx 9 8666 -UBERON:0004337 distal phalanx of manual digit 1 10 8667 -UBERON:0004338 proximal phalanx of manual digit 1 10 8668 -UBERON:4200219 middle phalanx of manual digit 1 10 8669 -UBERON:0003636 manual digit 2 phalanx 9 8670 -UBERON:0004311 distal phalanx of manual digit 2 10 8671 -UBERON:0004320 middle phalanx of manual digit 2 10 8672 -UBERON:0004328 proximal phalanx of manual digit 2 10 8673 -UBERON:0003637 manual digit 3 phalanx 9 8674 -UBERON:0004312 distal phalanx of manual digit 3 10 8675 -UBERON:0004321 middle phalanx of manual digit 3 10 8676 -UBERON:0004329 proximal phalanx of manual digit 3 10 8677 -UBERON:0003638 manual digit 4 phalanx 9 8678 -UBERON:0004313 distal phalanx of manual digit 4 10 8679 -UBERON:0004322 middle phalanx of manual digit 4 10 8680 -UBERON:0004330 proximal phalanx of manual digit 4 10 8681 -UBERON:0003639 manual digit 5 phalanx 9 8682 -UBERON:0004314 distal phalanx of manual digit 5 10 8683 -UBERON:0004323 middle phalanx of manual digit 5 10 8684 -UBERON:0004331 proximal phalanx of manual digit 5 10 8685 -UBERON:0003864 middle phalanx of manus 9 8686 -UBERON:0004320 middle phalanx of manual digit 2 10 8687 -UBERON:0004321 middle phalanx of manual digit 3 10 8688 -UBERON:0004322 middle phalanx of manual digit 4 10 8689 -UBERON:0004323 middle phalanx of manual digit 5 10 8690 -UBERON:4200219 middle phalanx of manual digit 1 10 8691 -UBERON:0003865 distal phalanx of manus 9 8692 -UBERON:0004311 distal phalanx of manual digit 2 10 8693 -UBERON:0004312 distal phalanx of manual digit 3 10 8694 -UBERON:0004313 distal phalanx of manual digit 4 10 8695 -UBERON:0004314 distal phalanx of manual digit 5 10 8696 -UBERON:0004337 distal phalanx of manual digit 1 10 8697 -UBERON:0001449 phalanx of pes 8 8698 -UBERON:0003640 pedal digit 1 phalanx 9 8699 -UBERON:0004315 distal phalanx of pedal digit 1 10 8700 -UBERON:0004332 proximal phalanx of pedal digit 1 10 8701 -UBERON:0003641 pedal digit 2 phalanx 9 8702 -UBERON:0004316 distal phalanx of pedal digit 2 10 8703 -UBERON:0004324 middle phalanx of pedal digit 2 10 8704 -UBERON:0004333 proximal phalanx of pedal digit 2 10 8705 -UBERON:0003642 pedal digit 3 phalanx 9 8706 -UBERON:0004317 distal phalanx of pedal digit 3 10 8707 -UBERON:0004325 middle phalanx of pedal digit 3 10 8708 -UBERON:0004334 proximal phalanx of pedal digit 3 10 8709 -UBERON:0003862 pedal digit 4 phalanx 9 8710 -UBERON:0004318 distal phalanx of pedal digit 4 10 8711 -UBERON:0004326 middle phalanx of pedal digit 4 10 8712 -UBERON:0004335 proximal phalanx of pedal digit 4 10 8713 -UBERON:0003863 pedal digit 5 phalanx 9 8714 -UBERON:0004319 distal phalanx of pedal digit 5 10 8715 -UBERON:0004327 middle phalanx of pedal digit 5 10 8716 -UBERON:0004336 proximal phalanx of pedal digit 5 10 8717 -UBERON:0003866 middle phalanx of pes 9 8718 -UBERON:0004324 middle phalanx of pedal digit 2 10 8719 -UBERON:0004325 middle phalanx of pedal digit 3 10 8720 -UBERON:0004326 middle phalanx of pedal digit 4 10 8721 -UBERON:0004327 middle phalanx of pedal digit 5 10 8722 -UBERON:0003867 distal phalanx of pes 9 8723 -UBERON:0004315 distal phalanx of pedal digit 1 10 8724 -UBERON:0004316 distal phalanx of pedal digit 2 10 8725 -UBERON:0004317 distal phalanx of pedal digit 3 10 8726 -UBERON:0004318 distal phalanx of pedal digit 4 10 8727 -UBERON:0004319 distal phalanx of pedal digit 5 10 8728 -UBERON:0003868 proximal phalanx of pes 9 8729 -UBERON:0004332 proximal phalanx of pedal digit 1 10 8730 -UBERON:0004333 proximal phalanx of pedal digit 2 10 8731 -UBERON:0004334 proximal phalanx of pedal digit 3 10 8732 -UBERON:0004335 proximal phalanx of pedal digit 4 10 8733 -UBERON:0004336 proximal phalanx of pedal digit 5 10 8734 -UBERON:4100009 pedal digit 7 phalanx 9 8735 -UBERON:0004300 distal phalanx 8 8736 -UBERON:0003865 distal phalanx of manus 9 8737 -UBERON:0004311 distal phalanx of manual digit 2 10 8738 -UBERON:0004312 distal phalanx of manual digit 3 10 8739 -UBERON:0004313 distal phalanx of manual digit 4 10 8740 -UBERON:0004314 distal phalanx of manual digit 5 10 8741 -UBERON:0004337 distal phalanx of manual digit 1 10 8742 -UBERON:0003867 distal phalanx of pes 9 8743 -UBERON:0004315 distal phalanx of pedal digit 1 10 8744 -UBERON:0004316 distal phalanx of pedal digit 2 10 8745 -UBERON:0004317 distal phalanx of pedal digit 3 10 8746 -UBERON:0004318 distal phalanx of pedal digit 4 10 8747 -UBERON:0004319 distal phalanx of pedal digit 5 10 8748 -UBERON:0014483 distal phalanx of digit 1 9 8749 -UBERON:0004315 distal phalanx of pedal digit 1 10 8750 -UBERON:0004337 distal phalanx of manual digit 1 10 8751 -UBERON:0014484 distal phalanx of digit 2 9 8752 -UBERON:0004311 distal phalanx of manual digit 2 10 8753 -UBERON:0004316 distal phalanx of pedal digit 2 10 8754 -UBERON:0014485 distal phalanx of digit 3 9 8755 -UBERON:0004312 distal phalanx of manual digit 3 10 8756 -UBERON:0004317 distal phalanx of pedal digit 3 10 8757 -UBERON:0014486 distal phalanx of digit 4 9 8758 -UBERON:0004313 distal phalanx of manual digit 4 10 8759 -UBERON:0004318 distal phalanx of pedal digit 4 10 8760 -UBERON:0014487 distal phalanx of digit 5 9 8761 -UBERON:0004314 distal phalanx of manual digit 5 10 8762 -UBERON:0004319 distal phalanx of pedal digit 5 10 8763 -UBERON:3010746 T-shaped terminal phalanx 9 8764 -UBERON:0004301 middle phalanx 8 8765 -UBERON:0003864 middle phalanx of manus 9 8766 -UBERON:0004320 middle phalanx of manual digit 2 10 8767 -UBERON:0004321 middle phalanx of manual digit 3 10 8768 -UBERON:0004322 middle phalanx of manual digit 4 10 8769 -UBERON:0004323 middle phalanx of manual digit 5 10 8770 -UBERON:4200219 middle phalanx of manual digit 1 10 8771 -UBERON:0003866 middle phalanx of pes 9 8772 -UBERON:0004324 middle phalanx of pedal digit 2 10 8773 -UBERON:0004325 middle phalanx of pedal digit 3 10 8774 -UBERON:0004326 middle phalanx of pedal digit 4 10 8775 -UBERON:0004327 middle phalanx of pedal digit 5 10 8776 -UBERON:0014488 middle phalanx of digit 2 9 8777 -UBERON:0004320 middle phalanx of manual digit 2 10 8778 -UBERON:0004324 middle phalanx of pedal digit 2 10 8779 -UBERON:0014489 middle phalanx of digit 3 9 8780 -UBERON:0004321 middle phalanx of manual digit 3 10 8781 -UBERON:0004325 middle phalanx of pedal digit 3 10 8782 -UBERON:0009555 short pastern bone 10 8783 -UBERON:0014490 middle phalanx of digit 4 9 8784 -UBERON:0004322 middle phalanx of manual digit 4 10 8785 -UBERON:0004326 middle phalanx of pedal digit 4 10 8786 -UBERON:0014491 middle phalanx of digit 5 9 8787 -UBERON:0004323 middle phalanx of manual digit 5 10 8788 -UBERON:0004327 middle phalanx of pedal digit 5 10 8789 -UBERON:0004302 proximal phalanx 8 8790 -UBERON:0002234 proximal phalanx of manus 9 8791 -UBERON:0004328 proximal phalanx of manual digit 2 10 8792 -UBERON:0004329 proximal phalanx of manual digit 3 10 8793 -UBERON:0004330 proximal phalanx of manual digit 4 10 8794 -UBERON:0004331 proximal phalanx of manual digit 5 10 8795 -UBERON:0004338 proximal phalanx of manual digit 1 10 8796 -UBERON:0003868 proximal phalanx of pes 9 8797 -UBERON:0004332 proximal phalanx of pedal digit 1 10 8798 -UBERON:0004333 proximal phalanx of pedal digit 2 10 8799 -UBERON:0004334 proximal phalanx of pedal digit 3 10 8800 -UBERON:0004335 proximal phalanx of pedal digit 4 10 8801 -UBERON:0004336 proximal phalanx of pedal digit 5 10 8802 -UBERON:0014501 proximal phalanx of digit 1 9 8803 -UBERON:0004332 proximal phalanx of pedal digit 1 10 8804 -UBERON:0004338 proximal phalanx of manual digit 1 10 8805 -UBERON:0014502 proximal phalanx of digit 2 9 8806 -UBERON:0004328 proximal phalanx of manual digit 2 10 8807 -UBERON:0004333 proximal phalanx of pedal digit 2 10 8808 -UBERON:0014503 proximal phalanx of digit 3 9 8809 -UBERON:0004329 proximal phalanx of manual digit 3 10 8810 -UBERON:0004334 proximal phalanx of pedal digit 3 10 8811 -UBERON:0009556 long pastern bone 10 8812 -UBERON:0014504 proximal phalanx of digit 4 9 8813 -UBERON:0004330 proximal phalanx of manual digit 4 10 8814 -UBERON:0004335 proximal phalanx of pedal digit 4 10 8815 -UBERON:0014505 proximal phalanx of digit 5 9 8816 -UBERON:0004331 proximal phalanx of manual digit 5 10 8817 -UBERON:0004336 proximal phalanx of pedal digit 5 10 8818 -UBERON:0009558 pastern bone 8 8819 -UBERON:0009555 short pastern bone 9 8820 -UBERON:0009556 long pastern bone 9 8821 -UBERON:0018266 third phalanx 8 8822 -UBERON:0018322 fourth phalanx 8 8823 -UBERON:4100005 second phalanx 8 8824 -UBERON:0010700 phalanx pre-cartilage condensation 7 8825 -UBERON:0010585 pedal digit phalanx pre-cartilage condensation 8 8826 -UBERON:0010580 pedal digit 1 phalanx pre-cartilage condensation 9 8827 -UBERON:0010581 pedal digit 2 phalanx pre-cartilage condensation 9 8828 -UBERON:0010582 pedal digit 3 phalanx pre-cartilage condensation 9 8829 -UBERON:0010583 pedal digit 4 phalanx pre-cartilage condensation 9 8830 -UBERON:0010584 pedal digit 5 phalanx pre-cartilage condensation 9 8831 -UBERON:0010586 manual digit phalanx pre-cartilage condensation 8 8832 -UBERON:0010575 manual digit 1 phalanx pre-cartilage condensation 9 8833 -UBERON:0010576 manual digit 2 phalanx pre-cartilage condensation 9 8834 -UBERON:0010577 manual digit 3 phalanx pre-cartilage condensation 9 8835 -UBERON:0010578 manual digit 4 phalanx pre-cartilage condensation 9 8836 -UBERON:0010579 manual digit 5 phalanx pre-cartilage condensation 9 8837 -UBERON:0010701 phalanx cartilage element 7 8838 -UBERON:0010685 pedal digit phalanx cartilage element 8 8839 -UBERON:0010680 pedal digit 1 phalanx cartilage element 9 8840 -UBERON:0010681 pedal digit 2 phalanx cartilage element 9 8841 -UBERON:0010682 pedal digit 3 phalanx cartilage element 9 8842 -UBERON:0010683 pedal digit 4 phalanx cartilage element 9 8843 -UBERON:0010684 pedal digit 5 phalanx cartilage element 9 8844 -UBERON:0010686 manual digit phalanx cartilage element 8 8845 -UBERON:0010675 manual digit 1 phalanx cartilage element 9 8846 -UBERON:0010676 manual digit 2 phalanx cartilage element 9 8847 -UBERON:0010677 manual digit 3 phalanx cartilage element 9 8848 -UBERON:0010678 manual digit 4 phalanx cartilage element 9 8849 -UBERON:0010679 manual digit 5 phalanx cartilage element 9 8850 -UBERON:0015024 manual digit phalanx endochondral element 7 8851 -UBERON:0001436 phalanx of manus 8 8852 -UBERON:0002234 proximal phalanx of manus 9 8853 -UBERON:0004328 proximal phalanx of manual digit 2 10 8854 -UBERON:0004329 proximal phalanx of manual digit 3 10 8855 -UBERON:0004330 proximal phalanx of manual digit 4 10 8856 -UBERON:0004331 proximal phalanx of manual digit 5 10 8857 -UBERON:0004338 proximal phalanx of manual digit 1 10 8858 -UBERON:0003620 manual digit 1 phalanx 9 8859 -UBERON:0004337 distal phalanx of manual digit 1 10 8860 -UBERON:0004338 proximal phalanx of manual digit 1 10 8861 -UBERON:4200219 middle phalanx of manual digit 1 10 8862 -UBERON:0003636 manual digit 2 phalanx 9 8863 -UBERON:0004311 distal phalanx of manual digit 2 10 8864 -UBERON:0004320 middle phalanx of manual digit 2 10 8865 -UBERON:0004328 proximal phalanx of manual digit 2 10 8866 -UBERON:0003637 manual digit 3 phalanx 9 8867 -UBERON:0004312 distal phalanx of manual digit 3 10 8868 -UBERON:0004321 middle phalanx of manual digit 3 10 8869 -UBERON:0004329 proximal phalanx of manual digit 3 10 8870 -UBERON:0003638 manual digit 4 phalanx 9 8871 -UBERON:0004313 distal phalanx of manual digit 4 10 8872 -UBERON:0004322 middle phalanx of manual digit 4 10 8873 -UBERON:0004330 proximal phalanx of manual digit 4 10 8874 -UBERON:0003639 manual digit 5 phalanx 9 8875 -UBERON:0004314 distal phalanx of manual digit 5 10 8876 -UBERON:0004323 middle phalanx of manual digit 5 10 8877 -UBERON:0004331 proximal phalanx of manual digit 5 10 8878 -UBERON:0003864 middle phalanx of manus 9 8879 -UBERON:0004320 middle phalanx of manual digit 2 10 8880 -UBERON:0004321 middle phalanx of manual digit 3 10 8881 -UBERON:0004322 middle phalanx of manual digit 4 10 8882 -UBERON:0004323 middle phalanx of manual digit 5 10 8883 -UBERON:4200219 middle phalanx of manual digit 1 10 8884 -UBERON:0003865 distal phalanx of manus 9 8885 -UBERON:0004311 distal phalanx of manual digit 2 10 8886 -UBERON:0004312 distal phalanx of manual digit 3 10 8887 -UBERON:0004313 distal phalanx of manual digit 4 10 8888 -UBERON:0004314 distal phalanx of manual digit 5 10 8889 -UBERON:0004337 distal phalanx of manual digit 1 10 8890 -UBERON:0010586 manual digit phalanx pre-cartilage condensation 8 8891 -UBERON:0010575 manual digit 1 phalanx pre-cartilage condensation 9 8892 -UBERON:0010576 manual digit 2 phalanx pre-cartilage condensation 9 8893 -UBERON:0010577 manual digit 3 phalanx pre-cartilage condensation 9 8894 -UBERON:0010578 manual digit 4 phalanx pre-cartilage condensation 9 8895 -UBERON:0010579 manual digit 5 phalanx pre-cartilage condensation 9 8896 -UBERON:0010686 manual digit phalanx cartilage element 8 8897 -UBERON:0010675 manual digit 1 phalanx cartilage element 9 8898 -UBERON:0010676 manual digit 2 phalanx cartilage element 9 8899 -UBERON:0010677 manual digit 3 phalanx cartilage element 9 8900 -UBERON:0010678 manual digit 4 phalanx cartilage element 9 8901 -UBERON:0010679 manual digit 5 phalanx cartilage element 9 8902 -UBERON:0015025 manual digit 1 phalanx endochondral element 8 8903 -UBERON:0003620 manual digit 1 phalanx 9 8904 -UBERON:0004337 distal phalanx of manual digit 1 10 8905 -UBERON:0004338 proximal phalanx of manual digit 1 10 8906 -UBERON:4200219 middle phalanx of manual digit 1 10 8907 -UBERON:0010575 manual digit 1 phalanx pre-cartilage condensation 9 8908 -UBERON:0010675 manual digit 1 phalanx cartilage element 9 8909 -UBERON:0015026 manual digit 2 phalanx endochondral element 8 8910 -UBERON:0003636 manual digit 2 phalanx 9 8911 -UBERON:0004311 distal phalanx of manual digit 2 10 8912 -UBERON:0004320 middle phalanx of manual digit 2 10 8913 -UBERON:0004328 proximal phalanx of manual digit 2 10 8914 -UBERON:0010576 manual digit 2 phalanx pre-cartilage condensation 9 8915 -UBERON:0010676 manual digit 2 phalanx cartilage element 9 8916 -UBERON:0015027 manual digit 3 phalanx endochondral element 8 8917 -UBERON:0003637 manual digit 3 phalanx 9 8918 -UBERON:0004312 distal phalanx of manual digit 3 10 8919 -UBERON:0004321 middle phalanx of manual digit 3 10 8920 -UBERON:0004329 proximal phalanx of manual digit 3 10 8921 -UBERON:0010577 manual digit 3 phalanx pre-cartilage condensation 9 8922 -UBERON:0010677 manual digit 3 phalanx cartilage element 9 8923 -UBERON:0015028 manual digit 4 phalanx endochondral element 8 8924 -UBERON:0003638 manual digit 4 phalanx 9 8925 -UBERON:0004313 distal phalanx of manual digit 4 10 8926 -UBERON:0004322 middle phalanx of manual digit 4 10 8927 -UBERON:0004330 proximal phalanx of manual digit 4 10 8928 -UBERON:0010578 manual digit 4 phalanx pre-cartilage condensation 9 8929 -UBERON:0010678 manual digit 4 phalanx cartilage element 9 8930 -UBERON:0015029 manual digit 5 phalanx endochondral element 8 8931 -UBERON:0003639 manual digit 5 phalanx 9 8932 -UBERON:0004314 distal phalanx of manual digit 5 10 8933 -UBERON:0004323 middle phalanx of manual digit 5 10 8934 -UBERON:0004331 proximal phalanx of manual digit 5 10 8935 -UBERON:0010579 manual digit 5 phalanx pre-cartilage condensation 9 8936 -UBERON:0010679 manual digit 5 phalanx cartilage element 9 8937 -UBERON:0015030 pedal digit phalanx endochondral element 7 8938 -UBERON:0001449 phalanx of pes 8 8939 -UBERON:0003640 pedal digit 1 phalanx 9 8940 -UBERON:0004315 distal phalanx of pedal digit 1 10 8941 -UBERON:0004332 proximal phalanx of pedal digit 1 10 8942 -UBERON:0003641 pedal digit 2 phalanx 9 8943 -UBERON:0004316 distal phalanx of pedal digit 2 10 8944 -UBERON:0004324 middle phalanx of pedal digit 2 10 8945 -UBERON:0004333 proximal phalanx of pedal digit 2 10 8946 -UBERON:0003642 pedal digit 3 phalanx 9 8947 -UBERON:0004317 distal phalanx of pedal digit 3 10 8948 -UBERON:0004325 middle phalanx of pedal digit 3 10 8949 -UBERON:0004334 proximal phalanx of pedal digit 3 10 8950 -UBERON:0003862 pedal digit 4 phalanx 9 8951 -UBERON:0004318 distal phalanx of pedal digit 4 10 8952 -UBERON:0004326 middle phalanx of pedal digit 4 10 8953 -UBERON:0004335 proximal phalanx of pedal digit 4 10 8954 -UBERON:0003863 pedal digit 5 phalanx 9 8955 -UBERON:0004319 distal phalanx of pedal digit 5 10 8956 -UBERON:0004327 middle phalanx of pedal digit 5 10 8957 -UBERON:0004336 proximal phalanx of pedal digit 5 10 8958 -UBERON:0003866 middle phalanx of pes 9 8959 -UBERON:0004324 middle phalanx of pedal digit 2 10 8960 -UBERON:0004325 middle phalanx of pedal digit 3 10 8961 -UBERON:0004326 middle phalanx of pedal digit 4 10 8962 -UBERON:0004327 middle phalanx of pedal digit 5 10 8963 -UBERON:0003867 distal phalanx of pes 9 8964 -UBERON:0004315 distal phalanx of pedal digit 1 10 8965 -UBERON:0004316 distal phalanx of pedal digit 2 10 8966 -UBERON:0004317 distal phalanx of pedal digit 3 10 8967 -UBERON:0004318 distal phalanx of pedal digit 4 10 8968 -UBERON:0004319 distal phalanx of pedal digit 5 10 8969 -UBERON:0003868 proximal phalanx of pes 9 8970 -UBERON:0004332 proximal phalanx of pedal digit 1 10 8971 -UBERON:0004333 proximal phalanx of pedal digit 2 10 8972 -UBERON:0004334 proximal phalanx of pedal digit 3 10 8973 -UBERON:0004335 proximal phalanx of pedal digit 4 10 8974 -UBERON:0004336 proximal phalanx of pedal digit 5 10 8975 -UBERON:4100009 pedal digit 7 phalanx 9 8976 -UBERON:0010585 pedal digit phalanx pre-cartilage condensation 8 8977 -UBERON:0010580 pedal digit 1 phalanx pre-cartilage condensation 9 8978 -UBERON:0010581 pedal digit 2 phalanx pre-cartilage condensation 9 8979 -UBERON:0010582 pedal digit 3 phalanx pre-cartilage condensation 9 8980 -UBERON:0010583 pedal digit 4 phalanx pre-cartilage condensation 9 8981 -UBERON:0010584 pedal digit 5 phalanx pre-cartilage condensation 9 8982 -UBERON:0010685 pedal digit phalanx cartilage element 8 8983 -UBERON:0010680 pedal digit 1 phalanx cartilage element 9 8984 -UBERON:0010681 pedal digit 2 phalanx cartilage element 9 8985 -UBERON:0010682 pedal digit 3 phalanx cartilage element 9 8986 -UBERON:0010683 pedal digit 4 phalanx cartilage element 9 8987 -UBERON:0010684 pedal digit 5 phalanx cartilage element 9 8988 -UBERON:0015031 pedal digit 1 phalanx endochondral element 8 8989 -UBERON:0003640 pedal digit 1 phalanx 9 8990 -UBERON:0004315 distal phalanx of pedal digit 1 10 8991 -UBERON:0004332 proximal phalanx of pedal digit 1 10 8992 -UBERON:0010580 pedal digit 1 phalanx pre-cartilage condensation 9 8993 -UBERON:0010680 pedal digit 1 phalanx cartilage element 9 8994 -UBERON:0015032 pedal digit 2 phalanx endochondral element 8 8995 -UBERON:0003641 pedal digit 2 phalanx 9 8996 -UBERON:0004316 distal phalanx of pedal digit 2 10 8997 -UBERON:0004324 middle phalanx of pedal digit 2 10 8998 -UBERON:0004333 proximal phalanx of pedal digit 2 10 8999 -UBERON:0010581 pedal digit 2 phalanx pre-cartilage condensation 9 9000 -UBERON:0010681 pedal digit 2 phalanx cartilage element 9 9001 -UBERON:0015033 pedal digit 3 phalanx endochondral element 8 9002 -UBERON:0003642 pedal digit 3 phalanx 9 9003 -UBERON:0004317 distal phalanx of pedal digit 3 10 9004 -UBERON:0004325 middle phalanx of pedal digit 3 10 9005 -UBERON:0004334 proximal phalanx of pedal digit 3 10 9006 -UBERON:0010582 pedal digit 3 phalanx pre-cartilage condensation 9 9007 -UBERON:0010682 pedal digit 3 phalanx cartilage element 9 9008 -UBERON:0015034 pedal digit 4 phalanx endochondral element 8 9009 -UBERON:0003862 pedal digit 4 phalanx 9 9010 -UBERON:0004318 distal phalanx of pedal digit 4 10 9011 -UBERON:0004326 middle phalanx of pedal digit 4 10 9012 -UBERON:0004335 proximal phalanx of pedal digit 4 10 9013 -UBERON:0010583 pedal digit 4 phalanx pre-cartilage condensation 9 9014 -UBERON:0010683 pedal digit 4 phalanx cartilage element 9 9015 -UBERON:0015035 pedal digit 5 phalanx endochondral element 8 9016 -UBERON:0003863 pedal digit 5 phalanx 9 9017 -UBERON:0004319 distal phalanx of pedal digit 5 10 9018 -UBERON:0004327 middle phalanx of pedal digit 5 10 9019 -UBERON:0004336 proximal phalanx of pedal digit 5 10 9020 -UBERON:0010584 pedal digit 5 phalanx pre-cartilage condensation 9 9021 -UBERON:0010684 pedal digit 5 phalanx cartilage element 9 9022 -UBERON:0015036 pedal digit metatarsal endochondral element 6 9023 -UBERON:0001448 metatarsal bone 7 9024 -UBERON:0003650 metatarsal bone of digit 1 8 9025 -UBERON:0003651 metatarsal bone of digit 2 8 9026 -UBERON:0003652 metatarsal bone of digit 3 8 9027 -UBERON:0003653 metatarsal bone of digit 4 8 9028 -UBERON:0003654 metatarsal bone of digit 5 8 9029 -UBERON:0013588 fused metatarsal bones 3 and 4 8 9030 -UBERON:0014763 fused metatarsal bones 2-4 9 9031 -UBERON:4200153 metatarsal bone of digit 6 8 9032 -UBERON:4200157 metatarsal bone of digit 7 8 9033 -UBERON:4200158 metatarsal bone of digit 8 8 9034 -UBERON:0010545 metatarsus skeleton 7 9035 -UBERON:0010687 pedal digit metatarsal pre-cartilage condensation 7 9036 -UBERON:0010547 pedal digit 1 metatarsal pre-cartilage condensation 8 9037 -UBERON:0010548 pedal digit 2 metatarsal pre-cartilage condensation 8 9038 -UBERON:0010549 pedal digit 3 metatarsal pre-cartilage condensation 8 9039 -UBERON:0010550 pedal digit 4 metatarsal pre-cartilage condensation 8 9040 -UBERON:0010551 pedal digit 5 metatarsal pre-cartilage condensation 8 9041 -UBERON:0010697 pedal digit metatarsal cartilage element 7 9042 -UBERON:0010557 pedal digit 1 metatarsal cartilage element 8 9043 -UBERON:0010558 pedal digit 2 metatarsal cartilage element 8 9044 -UBERON:0010559 pedal digit 3 metatarsal cartilage element 8 9045 -UBERON:0010560 pedal digit 4 metatarsal cartilage element 8 9046 -UBERON:0010561 pedal digit 5 metatarsal cartilage element 8 9047 -UBERON:0015037 pedal digit 1 metatarsal endochondral element 7 9048 -UBERON:0003650 metatarsal bone of digit 1 8 9049 -UBERON:0010547 pedal digit 1 metatarsal pre-cartilage condensation 8 9050 -UBERON:0010557 pedal digit 1 metatarsal cartilage element 8 9051 -UBERON:0015038 pedal digit 2 metatarsal endochondral element 7 9052 -UBERON:0003651 metatarsal bone of digit 2 8 9053 -UBERON:0010548 pedal digit 2 metatarsal pre-cartilage condensation 8 9054 -UBERON:0010558 pedal digit 2 metatarsal cartilage element 8 9055 -UBERON:0015039 pedal digit 3 metatarsal endochondral element 7 9056 -UBERON:0003652 metatarsal bone of digit 3 8 9057 -UBERON:0010549 pedal digit 3 metatarsal pre-cartilage condensation 8 9058 -UBERON:0010559 pedal digit 3 metatarsal cartilage element 8 9059 -UBERON:0015040 pedal digit 4 metatarsal endochondral element 7 9060 -UBERON:0003653 metatarsal bone of digit 4 8 9061 -UBERON:0010550 pedal digit 4 metatarsal pre-cartilage condensation 8 9062 -UBERON:0010560 pedal digit 4 metatarsal cartilage element 8 9063 -UBERON:0015041 pedal digit 5 metatarsal endochondral element 7 9064 -UBERON:0003654 metatarsal bone of digit 5 8 9065 -UBERON:0010551 pedal digit 5 metatarsal pre-cartilage condensation 8 9066 -UBERON:0010561 pedal digit 5 metatarsal cartilage element 8 9067 -UBERON:0015042 manual digit metacarpus endochondral element 6 9068 -UBERON:0002374 metacarpal bone 7 9069 -UBERON:0003645 metacarpal bone of digit 1 8 9070 -UBERON:0003646 metacarpal bone of digit 2 8 9071 -UBERON:0003647 metacarpal bone of digit 3 8 9072 -UBERON:0003648 metacarpal bone of digit 4 8 9073 -UBERON:0003649 metacarpal bone of digit 5 8 9074 -UBERON:0013587 fused metacarpal bones 3 and 4 8 9075 -UBERON:0010544 metacarpus skeleton 7 9076 -UBERON:0010698 manual digit metacarpus pre-cartilage condensation 7 9077 -UBERON:0010565 manual digit 1 metacarpus pre-cartilage condensation 8 9078 -UBERON:0010566 manual digit 2 metacarpus pre-cartilage condensation 8 9079 -UBERON:0010567 manual digit 3 metacarpus pre-cartilage condensation 8 9080 -UBERON:0010568 manual digit 4 metacarpus pre-cartilage condensation 8 9081 -UBERON:0010569 manual digit 5 metacarpus pre-cartilage condensation 8 9082 -UBERON:0010699 manual digit metacarpus cartilage element 7 9083 -UBERON:0010570 manual digit 1 metacarpus cartilage element 8 9084 -UBERON:0010571 manual digit 2 metacarpus cartilage element 8 9085 -UBERON:0010572 manual digit 3 metacarpus cartilage element 8 9086 -UBERON:0010573 manual digit 4 metacarpus cartilage element 8 9087 -UBERON:0010574 manual digit 5 metacarpus cartilage element 8 9088 -UBERON:0015043 manual digit 1 metacarpus endochondral element 7 9089 -UBERON:0003645 metacarpal bone of digit 1 8 9090 -UBERON:0010565 manual digit 1 metacarpus pre-cartilage condensation 8 9091 -UBERON:0010570 manual digit 1 metacarpus cartilage element 8 9092 -UBERON:0015044 manual digit 2 metacarpus endochondral element 7 9093 -UBERON:0003646 metacarpal bone of digit 2 8 9094 -UBERON:0010566 manual digit 2 metacarpus pre-cartilage condensation 8 9095 -UBERON:0010571 manual digit 2 metacarpus cartilage element 8 9096 -UBERON:0015045 manual digit 3 metacarpus endochondral element 7 9097 -UBERON:0003647 metacarpal bone of digit 3 8 9098 -UBERON:0010567 manual digit 3 metacarpus pre-cartilage condensation 8 9099 -UBERON:0010572 manual digit 3 metacarpus cartilage element 8 9100 -UBERON:0015046 manual digit 4 metacarpus endochondral element 7 9101 -UBERON:0003648 metacarpal bone of digit 4 8 9102 -UBERON:0010568 manual digit 4 metacarpus pre-cartilage condensation 8 9103 -UBERON:0010573 manual digit 4 metacarpus cartilage element 8 9104 -UBERON:0015047 manual digit 5 metacarpus endochondral element 7 9105 -UBERON:0003649 metacarpal bone of digit 5 8 9106 -UBERON:0010569 manual digit 5 metacarpus pre-cartilage condensation 8 9107 -UBERON:0010574 manual digit 5 metacarpus cartilage element 8 9108 -UBERON:0015049 carpus endochondral element 6 9109 -UBERON:0001435 carpal bone 7 9110 -UBERON:0001480 proximal carpal bone 8 9111 -UBERON:0001427 radiale 9 9112 -UBERON:0001428 intermedium 9 9113 -UBERON:0001429 pisiform 9 9114 -UBERON:0002445 ulnare 9 9115 -UBERON:0007960 scapholunate 9 9116 -UBERON:0012124 avian scapholunar bone 9 9117 -UBERON:0001481 distal carpal bone 8 9118 -UBERON:0001430 distal carpal bone 1 9 9119 -UBERON:0001431 distal carpal bone 2 9 9120 -UBERON:0001432 distal carpal bone 3 9 9121 -UBERON:0001433 distal carpal bone 4 9 9122 -UBERON:0010726 os vesalianum manus 9 9123 -UBERON:0010739 distal carpal bone 5 9 9124 -UBERON:0012290 fused carpal bones 2 and 3 9 9125 -UBERON:3000965 basale commune (carpal) 9 9126 -UBERON:0007958 central carpal bone 8 9127 -UBERON:0007959 falciform carpal bone 8 9128 -UBERON:0008257 radial sesamoid 8 9129 -UBERON:3010060 centrale (fore) 8 9130 -UBERON:4200180 semilunate carpal 8 9131 -UBERON:0006213 carpus cartilage element 7 9132 -UBERON:0006214 carpus pre-cartilage condensation 7 9133 -UBERON:0015068 distal carpal endochondral element 7 9134 -UBERON:0001481 distal carpal bone 8 9135 -UBERON:0001430 distal carpal bone 1 9 9136 -UBERON:0001431 distal carpal bone 2 9 9137 -UBERON:0001432 distal carpal bone 3 9 9138 -UBERON:0001433 distal carpal bone 4 9 9139 -UBERON:0010726 os vesalianum manus 9 9140 -UBERON:0010739 distal carpal bone 5 9 9141 -UBERON:0012290 fused carpal bones 2 and 3 9 9142 -UBERON:3000965 basale commune (carpal) 9 9143 -UBERON:0015069 distal carpal cartilage element 8 9144 -UBERON:0015078 proximal carpal endochondral element 7 9145 -UBERON:0001480 proximal carpal bone 8 9146 -UBERON:0001427 radiale 9 9147 -UBERON:0001428 intermedium 9 9148 -UBERON:0001429 pisiform 9 9149 -UBERON:0002445 ulnare 9 9150 -UBERON:0007960 scapholunate 9 9151 -UBERON:0012124 avian scapholunar bone 9 9152 -UBERON:0015079 proximal carpal cartilage 8 9153 -UBERON:0015080 proximal carpal bone pre-cartilage condensation 8 9154 -UBERON:0015084 distal carpal bone 1 endochondral element 7 9155 -UBERON:0001430 distal carpal bone 1 8 9156 -UBERON:0015085 distal carpal bone 1 cartilage 8 9157 -UBERON:0015086 distal carpal bone 1 pre-cartilage condensation 8 9158 -UBERON:0015087 distal carpal bone 2 endochondral element 7 9159 -UBERON:0001431 distal carpal bone 2 8 9160 -UBERON:0015088 distal carpal bone 2 cartilage 8 9161 -UBERON:0015089 distal carpal bone 2 pre-cartilage condensation 8 9162 -UBERON:0015090 distal carpal bone 3 endochondral element 7 9163 -UBERON:0001432 distal carpal bone 3 8 9164 -UBERON:0015091 distal carpal bone 3 cartilage 8 9165 -UBERON:0015092 distal carpal bone 3 pre-cartilage condensation 8 9166 -UBERON:0015093 distal carpal bone 4 endochondral element 7 9167 -UBERON:0001433 distal carpal bone 4 8 9168 -UBERON:0015094 distal carpal bone 4 cartilage 8 9169 -UBERON:0015095 distal carpal bone 4 pre-cartilage condensation 8 9170 -UBERON:0015096 distal carpal bone 5 endochondral element 7 9171 -UBERON:0010739 distal carpal bone 5 8 9172 -UBERON:0015097 distal carpal bone 5 cartilage 8 9173 -UBERON:0015098 distal carpal bone 5 pre-cartilage condensation 8 9174 -UBERON:4200140 prepollical element 7 9175 -UBERON:3010682 proximal-most prepollical element 8 9176 -UBERON:3010683 distal-most prepollical element 8 9177 -UBERON:0015050 tarsus endochondral element 6 9178 -UBERON:0001447 tarsal bone 7 9179 -UBERON:0001451 navicular bone of pes 8 9180 -UBERON:0006836 medial tibial tarsal bone 8 9181 -UBERON:0010721 distal tarsal bone 8 9182 -UBERON:0001452 distal tarsal bone 1 9 9183 -UBERON:0001453 distal tarsal bone 2 9 9184 -UBERON:0001454 distal tarsal bone 3 9 9185 -UBERON:0001455 cuboid bone 9 9186 -UBERON:0010723 os vesalianum pedis 9 9187 -UBERON:0010737 distal tarsal bone 4 9 9188 -UBERON:0010738 distal tarsal bone 5 9 9189 -UBERON:0012289 fused tarsal bones 2 and 3 9 9190 -UBERON:0013649 fused tarsal bones 1 and 2 9 9191 -UBERON:3001002 basale commune (tarsal) 9 9192 -UBERON:0011679 proximal tarsal bone 8 9193 -UBERON:0001450 calcaneus 9 9194 -UBERON:0002395 talus 9 9195 -UBERON:0011678 hindlimb intermedium bone 9 9196 -UBERON:0012126 fibulare 9 9197 -UBERON:0012288 centroquartal bone 8 9198 -UBERON:3010045 centrale 1 8 9199 -UBERON:3010073 centrale 2 8 9200 -UBERON:4200011 pedal centrale 8 9201 -UBERON:4200152 intertarsale sesamoid 8 9202 -UBERON:0010540 tarsus pre-cartilage condensation 7 9203 -UBERON:0010541 tarsus cartilage element 7 9204 -UBERON:0015014 calcaneum endochondral element 7 9205 -UBERON:0001450 calcaneus 8 9206 -UBERON:0010801 calcaneum pre-cartilage condensation 8 9207 -UBERON:0010842 calcaneum cartilage element 8 9208 -UBERON:0015081 proximal tarsal endochondral element 7 9209 -UBERON:0011679 proximal tarsal bone 8 9210 -UBERON:0001450 calcaneus 9 9211 -UBERON:0002395 talus 9 9212 -UBERON:0011678 hindlimb intermedium bone 9 9213 -UBERON:0012126 fibulare 9 9214 -UBERON:0015082 proximal tarsal cartilage 8 9215 -UBERON:0015083 proximal tarsal bone pre-cartilage condensation 8 9216 -UBERON:0015099 distal tarsal endochondral element 7 9217 -UBERON:0010721 distal tarsal bone 8 9218 -UBERON:0001452 distal tarsal bone 1 9 9219 -UBERON:0001453 distal tarsal bone 2 9 9220 -UBERON:0001454 distal tarsal bone 3 9 9221 -UBERON:0001455 cuboid bone 9 9222 -UBERON:0010723 os vesalianum pedis 9 9223 -UBERON:0010737 distal tarsal bone 4 9 9224 -UBERON:0010738 distal tarsal bone 5 9 9225 -UBERON:0012289 fused tarsal bones 2 and 3 9 9226 -UBERON:0013649 fused tarsal bones 1 and 2 9 9227 -UBERON:3001002 basale commune (tarsal) 9 9228 -UBERON:0015100 distal tarsal cartilage 8 9229 -UBERON:0015103 distal tarsal bone 1 cartilage 9 9230 -UBERON:0015106 distal tarsal bone 2 cartilage 9 9231 -UBERON:0015109 distal tarsal bone 3 cartilage 9 9232 -UBERON:0015112 distal tarsal bone 4 cartilage 9 9233 -UBERON:0015115 distal tarsal bone 5 cartilage 9 9234 -UBERON:0015101 distal tarsal bone pre-cartilage condensation 8 9235 -UBERON:0015104 distal tarsal bone 1 pre-cartilage condensation 9 9236 -UBERON:0015107 distal tarsal bone 2 pre-cartilage condensation 9 9237 -UBERON:0015110 distal tarsal bone 3 pre-cartilage condensation 9 9238 -UBERON:0015113 distal tarsal bone 4 pre-cartilage condensation 9 9239 -UBERON:0015116 distal tarsal bone 5 pre-cartilage condensation 9 9240 -UBERON:0015102 distal tarsal bone 1 endochondral element 8 9241 -UBERON:0001452 distal tarsal bone 1 9 9242 -UBERON:0015103 distal tarsal bone 1 cartilage 9 9243 -UBERON:0015104 distal tarsal bone 1 pre-cartilage condensation 9 9244 -UBERON:0015105 distal tarsal bone 2 endochondral element 8 9245 -UBERON:0001453 distal tarsal bone 2 9 9246 -UBERON:0015106 distal tarsal bone 2 cartilage 9 9247 -UBERON:0015107 distal tarsal bone 2 pre-cartilage condensation 9 9248 -UBERON:0015108 distal tarsal bone 3 endochondral element 8 9249 -UBERON:0001454 distal tarsal bone 3 9 9250 -UBERON:0015109 distal tarsal bone 3 cartilage 9 9251 -UBERON:0015110 distal tarsal bone 3 pre-cartilage condensation 9 9252 -UBERON:0015111 distal tarsal bone 4 endochondral element 8 9253 -UBERON:0010737 distal tarsal bone 4 9 9254 -UBERON:0015112 distal tarsal bone 4 cartilage 9 9255 -UBERON:0015113 distal tarsal bone 4 pre-cartilage condensation 9 9256 -UBERON:0015114 distal tarsal bone 5 endochondral element 8 9257 -UBERON:0010738 distal tarsal bone 5 9 9258 -UBERON:0015115 distal tarsal bone 5 cartilage 9 9259 -UBERON:0015116 distal tarsal bone 5 pre-cartilage condensation 9 9260 -UBERON:3000921 element Y of hind mesopodium 7 9261 -UBERON:4200141 prehallical element 7 9262 -UBERON:3010684 proximal-most prehallical element 8 9263 -UBERON:3010685 distal-most prehallical element 8 9264 -UBERON:0015064 autopod cartilage 6 9265 -UBERON:0010701 phalanx cartilage element 7 9266 -UBERON:0010685 pedal digit phalanx cartilage element 8 9267 -UBERON:0010680 pedal digit 1 phalanx cartilage element 9 9268 -UBERON:0010681 pedal digit 2 phalanx cartilage element 9 9269 -UBERON:0010682 pedal digit 3 phalanx cartilage element 9 9270 -UBERON:0010683 pedal digit 4 phalanx cartilage element 9 9271 -UBERON:0010684 pedal digit 5 phalanx cartilage element 9 9272 -UBERON:0010686 manual digit phalanx cartilage element 8 9273 -UBERON:0010675 manual digit 1 phalanx cartilage element 9 9274 -UBERON:0010676 manual digit 2 phalanx cartilage element 9 9275 -UBERON:0010677 manual digit 3 phalanx cartilage element 9 9276 -UBERON:0010678 manual digit 4 phalanx cartilage element 9 9277 -UBERON:0010679 manual digit 5 phalanx cartilage element 9 9278 -UBERON:0015077 centrale cartilage 7 9279 -UBERON:0017751 proximal mesopodial cartilage element 7 9280 -UBERON:0015079 proximal carpal cartilage 8 9281 -UBERON:0015082 proximal tarsal cartilage 8 9282 -UBERON:0018100 distal mesopodial cartilage element 7 9283 -UBERON:0015069 distal carpal cartilage element 8 9284 -UBERON:0015100 distal tarsal cartilage 8 9285 -UBERON:0015103 distal tarsal bone 1 cartilage 9 9286 -UBERON:0015106 distal tarsal bone 2 cartilage 9 9287 -UBERON:0015109 distal tarsal bone 3 cartilage 9 9288 -UBERON:0015112 distal tarsal bone 4 cartilage 9 9289 -UBERON:0015115 distal tarsal bone 5 cartilage 9 9290 -UBERON:0035128 manus cartilage element 7 9291 -UBERON:0010686 manual digit phalanx cartilage element 8 9292 -UBERON:0010675 manual digit 1 phalanx cartilage element 9 9293 -UBERON:0010676 manual digit 2 phalanx cartilage element 9 9294 -UBERON:0010677 manual digit 3 phalanx cartilage element 9 9295 -UBERON:0010678 manual digit 4 phalanx cartilage element 9 9296 -UBERON:0010679 manual digit 5 phalanx cartilage element 9 9297 -UBERON:0010699 manual digit metacarpus cartilage element 8 9298 -UBERON:0010570 manual digit 1 metacarpus cartilage element 9 9299 -UBERON:0010571 manual digit 2 metacarpus cartilage element 9 9300 -UBERON:0010572 manual digit 3 metacarpus cartilage element 9 9301 -UBERON:0010573 manual digit 4 metacarpus cartilage element 9 9302 -UBERON:0010574 manual digit 5 metacarpus cartilage element 9 9303 -UBERON:0015069 distal carpal cartilage element 8 9304 -UBERON:0015079 proximal carpal cartilage 8 9305 -UBERON:0015085 distal carpal bone 1 cartilage 8 9306 -UBERON:0015088 distal carpal bone 2 cartilage 8 9307 -UBERON:0015091 distal carpal bone 3 cartilage 8 9308 -UBERON:0015094 distal carpal bone 4 cartilage 8 9309 -UBERON:0015097 distal carpal bone 5 cartilage 8 9310 -UBERON:0035129 pes cartilage element 7 9311 -UBERON:0010685 pedal digit phalanx cartilage element 8 9312 -UBERON:0010680 pedal digit 1 phalanx cartilage element 9 9313 -UBERON:0010681 pedal digit 2 phalanx cartilage element 9 9314 -UBERON:0010682 pedal digit 3 phalanx cartilage element 9 9315 -UBERON:0010683 pedal digit 4 phalanx cartilage element 9 9316 -UBERON:0010684 pedal digit 5 phalanx cartilage element 9 9317 -UBERON:0010697 pedal digit metatarsal cartilage element 8 9318 -UBERON:0010557 pedal digit 1 metatarsal cartilage element 9 9319 -UBERON:0010558 pedal digit 2 metatarsal cartilage element 9 9320 -UBERON:0010559 pedal digit 3 metatarsal cartilage element 9 9321 -UBERON:0010560 pedal digit 4 metatarsal cartilage element 9 9322 -UBERON:0010561 pedal digit 5 metatarsal cartilage element 9 9323 -UBERON:0010842 calcaneum cartilage element 8 9324 -UBERON:0010900 tarsometatarsus cartilage element 8 9325 -UBERON:0015082 proximal tarsal cartilage 8 9326 -UBERON:0015100 distal tarsal cartilage 8 9327 -UBERON:0015103 distal tarsal bone 1 cartilage 9 9328 -UBERON:0015106 distal tarsal bone 2 cartilage 9 9329 -UBERON:0015109 distal tarsal bone 3 cartilage 9 9330 -UBERON:0015112 distal tarsal bone 4 cartilage 9 9331 -UBERON:0015115 distal tarsal bone 5 cartilage 9 9332 -UBERON:0015067 centrale endochondral element 6 9333 -UBERON:0012131 centrale 7 9334 -UBERON:0001451 navicular bone of pes 8 9335 -UBERON:0007958 central carpal bone 8 9336 -UBERON:3010045 centrale 1 8 9337 -UBERON:3010060 centrale (fore) 8 9338 -UBERON:3010073 centrale 2 8 9339 -UBERON:4200011 pedal centrale 8 9340 -UBERON:4200083 postaxial centrale 8 9341 -UBERON:4200084 preaxial centrale 8 9342 -UBERON:0015077 centrale cartilage 7 9343 -UBERON:0017750 proximal mesopodial endochondral element 6 9344 -UBERON:0014395 proximal mesopodial bone 7 9345 -UBERON:0001480 proximal carpal bone 8 9346 -UBERON:0001427 radiale 9 9347 -UBERON:0001428 intermedium 9 9348 -UBERON:0001429 pisiform 9 9349 -UBERON:0002445 ulnare 9 9350 -UBERON:0007960 scapholunate 9 9351 -UBERON:0012124 avian scapholunar bone 9 9352 -UBERON:0011679 proximal tarsal bone 8 9353 -UBERON:0001450 calcaneus 9 9354 -UBERON:0002395 talus 9 9355 -UBERON:0011678 hindlimb intermedium bone 9 9356 -UBERON:0012126 fibulare 9 9357 -UBERON:0015078 proximal carpal endochondral element 7 9358 -UBERON:0001480 proximal carpal bone 8 9359 -UBERON:0001427 radiale 9 9360 -UBERON:0001428 intermedium 9 9361 -UBERON:0001429 pisiform 9 9362 -UBERON:0002445 ulnare 9 9363 -UBERON:0007960 scapholunate 9 9364 -UBERON:0012124 avian scapholunar bone 9 9365 -UBERON:0015079 proximal carpal cartilage 8 9366 -UBERON:0015080 proximal carpal bone pre-cartilage condensation 8 9367 -UBERON:0015081 proximal tarsal endochondral element 7 9368 -UBERON:0011679 proximal tarsal bone 8 9369 -UBERON:0001450 calcaneus 9 9370 -UBERON:0002395 talus 9 9371 -UBERON:0011678 hindlimb intermedium bone 9 9372 -UBERON:0012126 fibulare 9 9373 -UBERON:0015082 proximal tarsal cartilage 8 9374 -UBERON:0015083 proximal tarsal bone pre-cartilage condensation 8 9375 -UBERON:0017751 proximal mesopodial cartilage element 7 9376 -UBERON:0015079 proximal carpal cartilage 8 9377 -UBERON:0015082 proximal tarsal cartilage 8 9378 -UBERON:0018099 distal mesopodial endochondral element 6 9379 -UBERON:0015068 distal carpal endochondral element 7 9380 -UBERON:0001481 distal carpal bone 8 9381 -UBERON:0001430 distal carpal bone 1 9 9382 -UBERON:0001431 distal carpal bone 2 9 9383 -UBERON:0001432 distal carpal bone 3 9 9384 -UBERON:0001433 distal carpal bone 4 9 9385 -UBERON:0010726 os vesalianum manus 9 9386 -UBERON:0010739 distal carpal bone 5 9 9387 -UBERON:0012290 fused carpal bones 2 and 3 9 9388 -UBERON:3000965 basale commune (carpal) 9 9389 -UBERON:0015069 distal carpal cartilage element 8 9390 -UBERON:0015099 distal tarsal endochondral element 7 9391 -UBERON:0010721 distal tarsal bone 8 9392 -UBERON:0001452 distal tarsal bone 1 9 9393 -UBERON:0001453 distal tarsal bone 2 9 9394 -UBERON:0001454 distal tarsal bone 3 9 9395 -UBERON:0001455 cuboid bone 9 9396 -UBERON:0010723 os vesalianum pedis 9 9397 -UBERON:0010737 distal tarsal bone 4 9 9398 -UBERON:0010738 distal tarsal bone 5 9 9399 -UBERON:0012289 fused tarsal bones 2 and 3 9 9400 -UBERON:0013649 fused tarsal bones 1 and 2 9 9401 -UBERON:3001002 basale commune (tarsal) 9 9402 -UBERON:0015100 distal tarsal cartilage 8 9403 -UBERON:0015103 distal tarsal bone 1 cartilage 9 9404 -UBERON:0015106 distal tarsal bone 2 cartilage 9 9405 -UBERON:0015109 distal tarsal bone 3 cartilage 9 9406 -UBERON:0015112 distal tarsal bone 4 cartilage 9 9407 -UBERON:0015115 distal tarsal bone 5 cartilage 9 9408 -UBERON:0015101 distal tarsal bone pre-cartilage condensation 8 9409 -UBERON:0015104 distal tarsal bone 1 pre-cartilage condensation 9 9410 -UBERON:0015107 distal tarsal bone 2 pre-cartilage condensation 9 9411 -UBERON:0015110 distal tarsal bone 3 pre-cartilage condensation 9 9412 -UBERON:0015113 distal tarsal bone 4 pre-cartilage condensation 9 9413 -UBERON:0015116 distal tarsal bone 5 pre-cartilage condensation 9 9414 -UBERON:0015102 distal tarsal bone 1 endochondral element 8 9415 -UBERON:0001452 distal tarsal bone 1 9 9416 -UBERON:0015103 distal tarsal bone 1 cartilage 9 9417 -UBERON:0015104 distal tarsal bone 1 pre-cartilage condensation 9 9418 -UBERON:0015105 distal tarsal bone 2 endochondral element 8 9419 -UBERON:0001453 distal tarsal bone 2 9 9420 -UBERON:0015106 distal tarsal bone 2 cartilage 9 9421 -UBERON:0015107 distal tarsal bone 2 pre-cartilage condensation 9 9422 -UBERON:0015108 distal tarsal bone 3 endochondral element 8 9423 -UBERON:0001454 distal tarsal bone 3 9 9424 -UBERON:0015109 distal tarsal bone 3 cartilage 9 9425 -UBERON:0015110 distal tarsal bone 3 pre-cartilage condensation 9 9426 -UBERON:0015111 distal tarsal bone 4 endochondral element 8 9427 -UBERON:0010737 distal tarsal bone 4 9 9428 -UBERON:0015112 distal tarsal bone 4 cartilage 9 9429 -UBERON:0015113 distal tarsal bone 4 pre-cartilage condensation 9 9430 -UBERON:0015114 distal tarsal bone 5 endochondral element 8 9431 -UBERON:0010738 distal tarsal bone 5 9 9432 -UBERON:0015115 distal tarsal bone 5 cartilage 9 9433 -UBERON:0015116 distal tarsal bone 5 pre-cartilage condensation 9 9434 -UBERON:0018100 distal mesopodial cartilage element 7 9435 -UBERON:0015069 distal carpal cartilage element 8 9436 -UBERON:0015100 distal tarsal cartilage 8 9437 -UBERON:0015103 distal tarsal bone 1 cartilage 9 9438 -UBERON:0015106 distal tarsal bone 2 cartilage 9 9439 -UBERON:0015109 distal tarsal bone 3 cartilage 9 9440 -UBERON:0015112 distal tarsal bone 4 cartilage 9 9441 -UBERON:0015115 distal tarsal bone 5 cartilage 9 9442 -UBERON:0018101 distal mesopodial pre-cartilage condensation 7 9443 -UBERON:0015101 distal tarsal bone pre-cartilage condensation 8 9444 -UBERON:0015104 distal tarsal bone 1 pre-cartilage condensation 9 9445 -UBERON:0015107 distal tarsal bone 2 pre-cartilage condensation 9 9446 -UBERON:0015110 distal tarsal bone 3 pre-cartilage condensation 9 9447 -UBERON:0015113 distal tarsal bone 4 pre-cartilage condensation 9 9448 -UBERON:0015116 distal tarsal bone 5 pre-cartilage condensation 9 9449 -UBERON:0018102 distal mesopodial bone 7 9450 -UBERON:0001481 distal carpal bone 8 9451 -UBERON:0001430 distal carpal bone 1 9 9452 -UBERON:0001431 distal carpal bone 2 9 9453 -UBERON:0001432 distal carpal bone 3 9 9454 -UBERON:0001433 distal carpal bone 4 9 9455 -UBERON:0010726 os vesalianum manus 9 9456 -UBERON:0010739 distal carpal bone 5 9 9457 -UBERON:0012290 fused carpal bones 2 and 3 9 9458 -UBERON:3000965 basale commune (carpal) 9 9459 -UBERON:0010721 distal tarsal bone 8 9460 -UBERON:0001452 distal tarsal bone 1 9 9461 -UBERON:0001453 distal tarsal bone 2 9 9462 -UBERON:0001454 distal tarsal bone 3 9 9463 -UBERON:0001455 cuboid bone 9 9464 -UBERON:0010723 os vesalianum pedis 9 9465 -UBERON:0010737 distal tarsal bone 4 9 9466 -UBERON:0010738 distal tarsal bone 5 9 9467 -UBERON:0012289 fused tarsal bones 2 and 3 9 9468 -UBERON:0013649 fused tarsal bones 1 and 2 9 9469 -UBERON:3001002 basale commune (tarsal) 9 9470 -UBERON:0015129 epicardial fat 4 9471 -UBERON:0015143 mesenteric fat pad 4 9472 -UBERON:0010413 parametrial fat pad 5 9473 -UBERON:0015142 falciform fat 5 9474 -UBERON:0015180 neck of talus 4 9475 -UBERON:0015224 interventricular foramen intermedium 4 9476 -UBERON:0015225 atrial foramen intermedium 4 9477 -UBERON:0015230 dorsal vessel heart 4 9478 -UBERON:0015231 circulatory system dorsal vessel 4 9479 -UBERON:0015243 lower part of vagina 4 9480 -UBERON:0015418 urethra mesenchymal layer 4 9481 -UBERON:0015420 ureteral valve 4 9482 -UBERON:0015453 subcutaneous lymph node 4 9483 -UBERON:0015479 scrotum skin 4 9484 -UBERON:0018134 rugal fold of scrotum 5 9485 -UBERON:0016408 corona of glans penis 4 9486 -UBERON:0016409 base of glans penis 4 9487 -UBERON:0016497 epicondyle of humerus 4 9488 -UBERON:0006806 entepicondyle of humerus 5 9489 -UBERON:0006807 ectepicondyle of humerus 5 9490 -UBERON:0016515 muscular layer of prostatic urethra 4 9491 -UBERON:0016524 muscle layer of spongiose part of urethra 4 9492 -UBERON:0016920 descending trunk of arch of aorta 4 9493 -UBERON:0016923 preductal region of aortic arch 4 9494 -UBERON:0016924 postductal region of aortic arch 4 9495 -UBERON:0016925 juxtaductal region of aortic arch 4 9496 -UBERON:0016928 metaphysis of fibula 4 9497 -UBERON:0017258 placentome of cotyledonary placenta 4 9498 -UBERON:0017261 intertarsal sesamoid 4 9499 -UBERON:4200152 intertarsale sesamoid 5 9500 -UBERON:0017732 raphe of scrotum 4 9501 -UBERON:0018115 left renal pelvis 4 9502 -UBERON:0018116 right renal pelvis 4 9503 -UBERON:0018303 adrenal tissue 4 9504 -UBERON:0018268 type 1 adrenal tissue 5 9505 -UBERON:0018269 type 2 adrenal tissue 5 9506 -UBERON:0018270 type 3 adrenal tissue 5 9507 -UBERON:0018271 type 4 adrenal tissue 5 9508 -UBERON:0018326 ilioischiadic foramen 4 9509 -UBERON:0018362 supracondylar tubercle 4 9510 -UBERON:0018549 ventral wall of dorsal aorta 4 9511 -UBERON:0018673 neck of fibula 4 9512 -UBERON:0022350 visceral serous membrane 4 9513 -UBERON:0001178 visceral peritoneum 5 9514 -UBERON:0002401 visceral pleura 5 9515 -UBERON:0002425 visceral serous pericardium 5 9516 -UBERON:0022351 parietal serous membrane 4 9517 -UBERON:0001366 parietal peritoneum 5 9518 -UBERON:0002408 parietal serous pericardium 5 9519 -UBERON:0034691 internal spermatic fascia 4 9520 -UBERON:0034694 gubernacular bulb, intra-abdominal part 4 9521 -UBERON:0034695 gubernacular bulb, extra-abdominal part 4 9522 -UBERON:0034697 inflow tract 4 9523 -UBERON:0034698 inflow tract of ventricle 5 9524 -UBERON:0034703 inflow tract of right ventricle 6 9525 -UBERON:0034704 inflow tract of left ventricle 6 9526 -UBERON:0034699 inflow tract of atrium 5 9527 -UBERON:0034764 remnant of cardiac valve 4 9528 -UBERON:0034971 aortic body 4 9529 -UBERON:0034972 jugular body 4 9530 -UBERON:0034980 jugular bulb 4 9531 -UBERON:0034981 superior bulb of internal jugular vein 5 9532 -UBERON:0034982 inferior bulb of internal jugular vein 5 9533 -UBERON:0035104 raphe of penis 4 9534 -UBERON:0035105 sac of scrotum 4 9535 -UBERON:0035106 raphe of perineum 4 9536 -UBERON:0035147 axochord 4 9537 -UBERON:0035148 presumptive axochord 4 9538 -UBERON:0035213 basal zone of heart 4 9539 -UBERON:0035498 gastrophrenic ligament 4 9540 -UBERON:0035651 glans 4 9541 -UBERON:0001299 glans penis 5 9542 -UBERON:0006653 glans clitoris 5 9543 -UBERON:0035837 apical region of heart ventricle 4 9544 -UBERON:0035835 apical region of left ventricle 5 9545 -UBERON:0035836 apical region of right ventricle 5 9546 -UBERON:0035957 antotic pillar 4 9547 -UBERON:0035958 preoptic pillar 4 9548 -UBERON:0035965 wall of blood vessel 4 9549 -UBERON:0000415 artery wall 5 9550 -UBERON:0036328 wall of coronary artery 6 9551 -UBERON:0036351 wall of brachiocephalic artery 6 9552 -UBERON:0036352 wall of subclavian artery 6 9553 -UBERON:0036422 wall of pulmonary artery 6 9554 -UBERON:0037094 wall of common carotid artery 6 9555 -UBERON:0004663 aorta wall 5 9556 -UBERON:0036070 tracheoesophageal septum 4 9557 -UBERON:0036146 cardiopharyngeal field 4 9558 -UBERON:0036441 wall of uterine tube 4 9559 -UBERON:0036521 wall of urethra 4 9560 -UBERON:0037447 wall of male urethra 5 9561 -UBERON:0037455 wall of female urethra 5 9562 -UBERON:0036523 wall of vagina 4 9563 -UBERON:0037144 wall of heart 4 9564 -UBERON:0004784 heart ventricle wall 5 9565 -UBERON:0036285 wall of left ventricle 6 9566 -UBERON:0036288 anterior wall of left ventricle 7 9567 -UBERON:0036286 wall of right ventricle 6 9568 -UBERON:0036289 anterior wall of right ventricle 7 9569 -UBERON:0036328 wall of coronary artery 5 9570 -UBERON:1000023 spleen pulp 4 9571 -UBERON:0001250 red pulp of spleen 5 9572 -UBERON:0001959 white pulp of spleen 5 9573 -UBERON:0010398 spleen marginal sinus 6 9574 -UBERON:1000024 parenchyma of spleen 4 9575 -UBERON:1500005 ischial cartilage 4 9576 -UBERON:1600006 paired fin radial element 4 9577 -UBERON:1500006 paired fin radial bone 5 9578 -UBERON:2000508 pelvic fin radial bone 6 9579 -UBERON:1500008 pelvic fin distal radial bone 7 9580 -UBERON:2001415 pelvic fin distal radial bone 2 8 9581 -UBERON:2001416 pelvic fin distal radial bone 3 8 9582 -UBERON:2001417 pelvic fin distal radial bone 1 8 9583 -UBERON:1500009 pelvic fin basipterygial radial 7 9584 -UBERON:1500010 pelvic fin middle radial bone 7 9585 -UBERON:2001586 pectoral fin radial bone 6 9586 -UBERON:2001587 pectoral fin proximal radial bone 7 9587 -UBERON:2002026 pectoral fin proximal radial bone 1 8 9588 -UBERON:2002027 pectoral fin proximal radial bone 2 8 9589 -UBERON:2002028 pectoral fin proximal radial bone 3 8 9590 -UBERON:2002029 pectoral fin proximal radial bone 4 8 9591 -UBERON:4300087 mesopterygium bone 8 9592 -UBERON:4300088 metapterygium bone 8 9593 -UBERON:4300089 propterygium bone 8 9594 -UBERON:2001588 pectoral fin distal radial bone 7 9595 -UBERON:2002277 pectoral fin distal radial bone 1 8 9596 -UBERON:2002279 pectoral fin distal radial bone 2 8 9597 -UBERON:2002280 pectoral fin distal radial bone 3 8 9598 -UBERON:1700006 paired fin radial cartilage 5 9599 -UBERON:2201415 pelvic fin distal radial cartilage 2 6 9600 -UBERON:2201416 pelvic fin distal radial cartilage 3 6 9601 -UBERON:2201417 pelvic fin distal radial cartilage 1 6 9602 -UBERON:2201586 pectoral fin radial cartilage 6 9603 -UBERON:2201587 pectoral fin proximal radial cartilage 7 9604 -UBERON:1500007 mesopterygium cartilage 8 9605 -UBERON:2001589 propterygium cartilage 8 9606 -UBERON:2202026 pectoral fin proximal radial cartilage 1 8 9607 -UBERON:2202027 pectoral fin proximal radial cartilage 2 8 9608 -UBERON:2202028 pectoral fin proximal radial cartilage 3 8 9609 -UBERON:2202029 pectoral fin proximal radial cartilage 4 8 9610 -UBERON:4400000 metapterygium cartilage 8 9611 -UBERON:2201588 pectoral fin distal radial cartilage 7 9612 -UBERON:2202277 pectoral fin distal radial cartilage 1 8 9613 -UBERON:2202279 pectoral fin distal radial cartilage 2 8 9614 -UBERON:2202280 pectoral fin distal radial cartilage 3 8 9615 -UBERON:4500020 pelvic fin distal radial cartilage 6 9616 -UBERON:2100508 pelvic fin radial element 5 9617 -UBERON:1600008 pelvic fin distal radial element 6 9618 -UBERON:1500008 pelvic fin distal radial bone 7 9619 -UBERON:2001415 pelvic fin distal radial bone 2 8 9620 -UBERON:2001416 pelvic fin distal radial bone 3 8 9621 -UBERON:2001417 pelvic fin distal radial bone 1 8 9622 -UBERON:2101415 pelvic fin distal radial element 2 7 9623 -UBERON:2001415 pelvic fin distal radial bone 2 8 9624 -UBERON:2201415 pelvic fin distal radial cartilage 2 8 9625 -UBERON:2101416 pelvic fin distal radial element 3 7 9626 -UBERON:2001416 pelvic fin distal radial bone 3 8 9627 -UBERON:2201416 pelvic fin distal radial cartilage 3 8 9628 -UBERON:2101417 pelvic fin distal radial element 1 7 9629 -UBERON:2001417 pelvic fin distal radial bone 1 8 9630 -UBERON:2201417 pelvic fin distal radial cartilage 1 8 9631 -UBERON:1600010 pelvic fin middle radial element 6 9632 -UBERON:2000508 pelvic fin radial bone 6 9633 -UBERON:1500008 pelvic fin distal radial bone 7 9634 -UBERON:2001415 pelvic fin distal radial bone 2 8 9635 -UBERON:2001416 pelvic fin distal radial bone 3 8 9636 -UBERON:2001417 pelvic fin distal radial bone 1 8 9637 -UBERON:1500009 pelvic fin basipterygial radial 7 9638 -UBERON:1500010 pelvic fin middle radial bone 7 9639 -UBERON:2101586 pectoral fin radial element 5 9640 -UBERON:2001586 pectoral fin radial bone 6 9641 -UBERON:2001587 pectoral fin proximal radial bone 7 9642 -UBERON:2002026 pectoral fin proximal radial bone 1 8 9643 -UBERON:2002027 pectoral fin proximal radial bone 2 8 9644 -UBERON:2002028 pectoral fin proximal radial bone 3 8 9645 -UBERON:2002029 pectoral fin proximal radial bone 4 8 9646 -UBERON:4300087 mesopterygium bone 8 9647 -UBERON:4300088 metapterygium bone 8 9648 -UBERON:4300089 propterygium bone 8 9649 -UBERON:2001588 pectoral fin distal radial bone 7 9650 -UBERON:2002277 pectoral fin distal radial bone 1 8 9651 -UBERON:2002279 pectoral fin distal radial bone 2 8 9652 -UBERON:2002280 pectoral fin distal radial bone 3 8 9653 -UBERON:2101587 pectoral fin proximal radial element 6 9654 -UBERON:2001587 pectoral fin proximal radial bone 7 9655 -UBERON:2002026 pectoral fin proximal radial bone 1 8 9656 -UBERON:2002027 pectoral fin proximal radial bone 2 8 9657 -UBERON:2002028 pectoral fin proximal radial bone 3 8 9658 -UBERON:2002029 pectoral fin proximal radial bone 4 8 9659 -UBERON:4300087 mesopterygium bone 8 9660 -UBERON:4300088 metapterygium bone 8 9661 -UBERON:4300089 propterygium bone 8 9662 -UBERON:2102026 pectoral fin proximal radial element 1 7 9663 -UBERON:2002026 pectoral fin proximal radial bone 1 8 9664 -UBERON:2202026 pectoral fin proximal radial cartilage 1 8 9665 -UBERON:2102027 pectoral fin proximal radial element 2 7 9666 -UBERON:2002027 pectoral fin proximal radial bone 2 8 9667 -UBERON:2202027 pectoral fin proximal radial cartilage 2 8 9668 -UBERON:2102028 pectoral fin proximal radial element 3 7 9669 -UBERON:2002028 pectoral fin proximal radial bone 3 8 9670 -UBERON:2202028 pectoral fin proximal radial cartilage 3 8 9671 -UBERON:2102029 pectoral fin proximal radial element 4 7 9672 -UBERON:2002029 pectoral fin proximal radial bone 4 8 9673 -UBERON:2202029 pectoral fin proximal radial cartilage 4 8 9674 -UBERON:2201587 pectoral fin proximal radial cartilage 7 9675 -UBERON:1500007 mesopterygium cartilage 8 9676 -UBERON:2001589 propterygium cartilage 8 9677 -UBERON:2202026 pectoral fin proximal radial cartilage 1 8 9678 -UBERON:2202027 pectoral fin proximal radial cartilage 2 8 9679 -UBERON:2202028 pectoral fin proximal radial cartilage 3 8 9680 -UBERON:2202029 pectoral fin proximal radial cartilage 4 8 9681 -UBERON:4400000 metapterygium cartilage 8 9682 -UBERON:4300081 mesopterygium element 7 9683 -UBERON:1500007 mesopterygium cartilage 8 9684 -UBERON:4300087 mesopterygium bone 8 9685 -UBERON:4300082 metapterygium element 7 9686 -UBERON:4300088 metapterygium bone 8 9687 -UBERON:4400000 metapterygium cartilage 8 9688 -UBERON:4300083 propterygium element 7 9689 -UBERON:2001589 propterygium cartilage 8 9690 -UBERON:4300089 propterygium bone 8 9691 -UBERON:2101588 pectoral fin distal radial element 6 9692 -UBERON:2001588 pectoral fin distal radial bone 7 9693 -UBERON:2002277 pectoral fin distal radial bone 1 8 9694 -UBERON:2002279 pectoral fin distal radial bone 2 8 9695 -UBERON:2002280 pectoral fin distal radial bone 3 8 9696 -UBERON:2102277 pectoral fin distal radial element 1 7 9697 -UBERON:2002277 pectoral fin distal radial bone 1 8 9698 -UBERON:2202277 pectoral fin distal radial cartilage 1 8 9699 -UBERON:2102279 pectoral fin distal radial element 2 7 9700 -UBERON:2002279 pectoral fin distal radial bone 2 8 9701 -UBERON:2202279 pectoral fin distal radial cartilage 2 8 9702 -UBERON:2102280 pectoral fin distal radial element 3 7 9703 -UBERON:2002280 pectoral fin distal radial bone 3 8 9704 -UBERON:2202280 pectoral fin distal radial cartilage 3 8 9705 -UBERON:2201588 pectoral fin distal radial cartilage 7 9706 -UBERON:2202277 pectoral fin distal radial cartilage 1 8 9707 -UBERON:2202279 pectoral fin distal radial cartilage 2 8 9708 -UBERON:2202280 pectoral fin distal radial cartilage 3 8 9709 -UBERON:2201586 pectoral fin radial cartilage 6 9710 -UBERON:2201587 pectoral fin proximal radial cartilage 7 9711 -UBERON:1500007 mesopterygium cartilage 8 9712 -UBERON:2001589 propterygium cartilage 8 9713 -UBERON:2202026 pectoral fin proximal radial cartilage 1 8 9714 -UBERON:2202027 pectoral fin proximal radial cartilage 2 8 9715 -UBERON:2202028 pectoral fin proximal radial cartilage 3 8 9716 -UBERON:2202029 pectoral fin proximal radial cartilage 4 8 9717 -UBERON:4400000 metapterygium cartilage 8 9718 -UBERON:2201588 pectoral fin distal radial cartilage 7 9719 -UBERON:2202277 pectoral fin distal radial cartilage 1 8 9720 -UBERON:2202279 pectoral fin distal radial cartilage 2 8 9721 -UBERON:2202280 pectoral fin distal radial cartilage 3 8 9722 -UBERON:4200208 pectoral fin intermediate radial bone 6 9723 -UBERON:2000033 intermediate cell mass of mesoderm 4 9724 -UBERON:2000311 adductor mandibulae complex 4 9725 -UBERON:2000373 dorsal fin actinotrichium 4 9726 -UBERON:2000544 pectoral fin actinotrichium 4 9727 -UBERON:2000596 pelvic fin actinotrichium 4 9728 -UBERON:2001200 corpuscles of Stannius 4 9729 -UBERON:2001256 lateral floor plate 4 9730 -UBERON:2001257 medial floor plate 4 9731 -UBERON:2001293 posterior kidney 4 9732 -UBERON:2001734 posterior process of basipterygium 4 9733 -UBERON:2001821 notochord posterior region 4 9734 -UBERON:2002000 posterior dentation of pectoral fin spine 4 9735 -UBERON:2002001 anterior dentation of pectoral fin spine 4 9736 -UBERON:2002002 anterior distal serration of pectoral fin spine 4 9737 -UBERON:2002069 distal cartilage of posterior process of basipterygium 4 9738 -UBERON:2002070 internal anterior process of basipterygium 4 9739 -UBERON:2002071 distal cartilage of internal anterior process of basipterygium 4 9740 -UBERON:2002072 middle anterior process of basipterygium 4 9741 -UBERON:2002073 distal cartilage of middle anterior process of basipterygium 4 9742 -UBERON:2002074 external anterior process of basipterygium 4 9743 -UBERON:2002075 distal cartilage of external anterior process of basipterygium 4 9744 -UBERON:2002076 lateral process of basipterygium 4 9745 -UBERON:2002120 orbitosphenoid septum 4 9746 -UBERON:2002225 posterior pronephric duct 4 9747 -UBERON:2002229 presumptive atrium primitive heart tube 4 9748 -UBERON:2002232 presumptive cardiac ventricle primitive heart tube 4 9749 -UBERON:2005029 rostral blood island 4 9750 -UBERON:2005039 anterior lateral mesoderm 4 9751 -UBERON:2005066 bulbus arteriosus outer layer 4 9752 -UBERON:2005067 bulbus arteriosus middle layer 4 9753 -UBERON:2005068 bulbus arteriosus inner layer 4 9754 -UBERON:2005072 endocardial ring 4 9755 -UBERON:2005073 atrioventricular ring 5 9756 -UBERON:2100623 basipterygium element 4 9757 -UBERON:2000623 basipterygium bone 5 9758 -UBERON:2001539 basipterygium cartilage 5 9759 -UBERON:3000756 crista dorsalis humeri 4 9760 -UBERON:3000773 ilial ridge 4 9761 -UBERON:3000774 ilial shaft 4 9762 -UBERON:3000783 fovea capitis of humerus 4 9763 -UBERON:3000784 ulnar condyle 4 9764 -UBERON:3000785 trochlear groove of humerus 4 9765 -UBERON:3000787 collum antibrachii 4 9766 -UBERON:3000836 crista lateralis humeri 4 9767 -UBERON:3000837 crista medialis humeri 4 9768 -UBERON:3000839 crista radii 4 9769 -UBERON:3000840 capitulum of radius 4 9770 -UBERON:3000842 capitulum ulnae 4 9771 -UBERON:3000844 sulcus longitudinalis 4 9772 -UBERON:3000846 element Y of fore mesopodium 4 9773 -UBERON:3000859 foramen perforans carpi 4 9774 -UBERON:3000862 pubo-ischium 4 9775 -UBERON:3000865 epileon 4 9776 -UBERON:3000866 agger limitans anterior of ilium 4 9777 -UBERON:3000867 agger limitans anterior of ischium 4 9778 -UBERON:3000869 ilial protuberance 4 9779 -UBERON:3000870 preacetabular expansion 4 9780 -UBERON:3000871 fossula tuberis superioris 4 9781 -UBERON:3000872 collum ilei 4 9782 -UBERON:3000873 pars cylindriformis ilei 4 9783 -UBERON:3000874 crista ischii 4 9784 -UBERON:3000875 spina pelvis posterior 4 9785 -UBERON:3000876 spina pelvis anterior 4 9786 -UBERON:3000877 intumescentia bilateralis inferior 4 9787 -UBERON:3000878 intumescentia bilateralis superior 4 9788 -UBERON:3000879 incisura terminalis 4 9789 -UBERON:3000880 crista hypertrophica ischium 4 9790 -UBERON:3000882 interilial region 4 9791 -UBERON:3000883 recessus coccygealis 4 9792 -UBERON:3000884 epipubis 4 9793 -UBERON:3000886 ypsiloid cartilage 4 9794 -UBERON:3000894 femoral ridge 4 9795 -UBERON:3000898 trochanteric crest 4 9796 -UBERON:3000903 tibial crest 4 9797 -UBERON:3000904 apophysis distalis of tibiofibula 4 9798 -UBERON:3000905 caput ossis cruris 4 9799 -UBERON:3000906 sulcus pro musculo extensori cruris brevis 4 9800 -UBERON:3000907 eminentia arcuata 4 9801 -UBERON:3000908 sulcus distalis ossis cruris 4 9802 -UBERON:3000909 sulcus proximalis ossis cruris 4 9803 -UBERON:3000911 foramen nutritium exterius 4 9804 -UBERON:3000916 apophysis proximalis 4 9805 -UBERON:3000917 apophysis distalis of tibiale fibulare 4 9806 -UBERON:3000922 prehallux skeleton 4 9807 -UBERON:3000934 foramen perforans tarsi 4 9808 -UBERON:3010069 intermedium (fore) 4 9809 -UBERON:3010194 mediale 4 9810 -UBERON:3010205 postminimus 4 9811 -UBERON:3010240 Nobelian rod 4 9812 -UBERON:3010262 capitulum of radio-ulna 4 9813 -UBERON:3010392 mesonephric early proximal tubule 4 9814 -UBERON:3010393 mesonephric late distal segment 4 9815 -UBERON:3010394 mesonephric late proximal tubule 4 9816 -UBERON:3010719 dilated medial process of metacarpal IV 4 9817 -UBERON:3010790 muscle rectus abdominis superficialis 4 9818 -UBERON:3010792 musculus rectus abdominis profundus 4 9819 -UBERON:3011121 late distal segment 4 9820 -UBERON:4000053 vacuolated notochordal tissue 4 9821 -UBERON:4100004 ischial peduncle 4 9822 -UBERON:4100008 pedal claws 4 9823 -UBERON:4100011 postacetabular buttress 4 9824 -UBERON:4100012 postacetabular zone 4 9825 -UBERON:4100016 posterior process of ilium 4 9826 -UBERON:4100114 anterior distal condyle of femur 4 9827 -UBERON:4100116 posterior distal condyle of femur 4 9828 -UBERON:4200000 medial blade of ilium 4 9829 -UBERON:4200001 postpubis 4 9830 -UBERON:4200007 transverse pelvic ridge 4 9831 -UBERON:4200010 ventral humeral ridge 4 9832 -UBERON:4200012 ectepicondylar flange 4 9833 -UBERON:4200014 lateral tuber of ulna 4 9834 -UBERON:4200018 calcaneal tuber 4 9835 -UBERON:4200019 preacetabular process 4 9836 -UBERON:4200021 astragalus-calcaneum unit 4 9837 -UBERON:4200025 ascending process of the astragalus 4 9838 -UBERON:4200028 adductor blade 4 9839 -UBERON:4200029 adductor crest 4 9840 -UBERON:4200030 antitrochanter 4 9841 -UBERON:4200034 cnemial crest 4 9842 -UBERON:4200036 internal trochanter 4 9843 -UBERON:4200037 supinator process 4 9844 -UBERON:4200039 supraacetabular buttress 4 9845 -UBERON:4200042 brevis shelf 4 9846 -UBERON:4200048 bicipital crest 4 9847 -UBERON:4200051 cotyloid notch 4 9848 -UBERON:4200052 crista tibiofibularis 4 9849 -UBERON:4200060 ectepicondylar foramen 4 9850 -UBERON:4200063 ectocondylar tubercle 4 9851 -UBERON:4200079 dorsal iliac process 4 9852 -UBERON:4200080 fibular crest 4 9853 -UBERON:4200086 iliac neck 4 9854 -UBERON:4200087 iliac peduncle 4 9855 -UBERON:4200088 iliac peduncle of the pubis 4 9856 -UBERON:4200098 ischial foot 4 9857 -UBERON:4200100 latissimus dorsi process 4 9858 -UBERON:4200107 obturator process of ischium 4 9859 -UBERON:4200112 prepectoral space 4 9860 -UBERON:4200114 prepubic process 4 9861 -UBERON:4200117 pubic boot 4 9862 -UBERON:4200118 pubic peduncle 4 9863 -UBERON:4200119 pubis-ischium contact 4 9864 -UBERON:4200120 puboischiadic plate 4 9865 -UBERON:4200125 supraacetabular crest 4 9866 -UBERON:4200126 supraacetabular rim 4 9867 -UBERON:4200131 trochanteric shelf 4 9868 -UBERON:4200135 puboischiadic bar 4 9869 -UBERON:4200150 accessory foramen 4 9870 -UBERON:4200159 ventral ridge system 4 9871 -UBERON:4200167 mesial pelvic ridge 4 9872 -UBERON:4200169 process 2 4 9873 -UBERON:4200170 process 3 4 9874 -UBERON:4200171 process 4 4 9875 -UBERON:4200172 neck of humerus 4 9876 -UBERON:4200173 dorsal ridge 4 9877 -UBERON:4200177 supracondyle tubercle 4 9878 -UBERON:0018371 ventral supracondylar tubercle 5 9879 -UBERON:0018372 dorsal supracondylar tubercle 5 9880 -UBERON:4200179 manual claw 4 9881 -UBERON:4200181 astragalus head 4 9882 -UBERON:4200182 lateral tubercle of astragalus 4 9883 -UBERON:4200183 bicipital tuberosity 4 9884 -UBERON:4200184 ulnar tuberosity 4 9885 -UBERON:4200186 distal keel of metacarpal III 4 9886 -UBERON:4200193 posterodorsal process of ilium 4 9887 -UBERON:4200197 anterior humeral ridge 4 9888 -UBERON:4200209 postaxial process of the ulnare 4 9889 -UBERON:4200210 postaxial process of the femur 4 9890 -UBERON:4200211 postaxial process of the fibula 4 9891 -UBERON:4200212 pectoral process of humerus 4 9892 -UBERON:4200213 deltoid process 4 9893 -UBERON:4200224 columnar area 4 9894 -UBERON:4200228 excurrent foramen of ectepicondylar foramen 4 9895 -UBERON:4200229 incurrent foramen of ectepicondylar foramen 4 9896 -UBERON:4300007 medial pelvic process 4 9897 -UBERON:4300013 paired fin radial skeleton 4 9898 -UBERON:4440009 pectoral fin radial skeleton 5 9899 -UBERON:4440010 pelvic fin radial skeleton 5 9900 -UBERON:4300125 dorsal iliac ridge 4 9901 -UBERON:4300151 pelvic intercleithral cartilage 4 9902 -UBERON:4300261 pectoral fin hook 4 9903 -UBERON:4300262 pelvic fin hook 4 9904 -UBERON:5102544 individual digit of digitopodial skeleton 4 9905 -UBERON:0016876 digit 6 digitopodial skeleton 5 9906 -UBERON:5111981 manual digit 6 digitopodial skeleton 6 9907 -UBERON:0016877 digit 7 digitopodial skeleton 5 9908 -UBERON:5111982 manual digit 7 digitopodial skeleton 6 9909 -UBERON:0016878 digit 8 digitopodial skeleton 5 9910 -UBERON:5111983 manual digit 8 digitopodial skeleton 6 9911 -UBERON:5101466 pedal digit digitopodial skeleton 5 9912 -UBERON:5103631 pedal digit 1 digitopodial skeleton 6 9913 -UBERON:5103632 pedal digit 2 digitopodial skeleton 6 9914 -UBERON:5103633 pedal digit 3 digitopodial skeleton 6 9915 -UBERON:5103634 pedal digit 4 digitopodial skeleton 6 9916 -UBERON:5103635 pedal digit 5 digitopodial skeleton 6 9917 -UBERON:5111984 pedal digit 6 digitopodial skeleton 6 9918 -UBERON:5112137 pedal digit 7 digitopodial skeleton 6 9919 -UBERON:5112138 pedal digit 8 digitopodial skeleton 6 9920 -UBERON:5102389 manual digit digitopodial skeleton 5 9921 -UBERON:5101463 manual digit 1 digitopodial skeleton 6 9922 -UBERON:5103622 manual digit 2 digitopodial skeleton 6 9923 -UBERON:5103623 manual digit 3 digitopodial skeleton 6 9924 -UBERON:5103624 manual digit 4 digitopodial skeleton 6 9925 -UBERON:5103625 manual digit 5 digitopodial skeleton 6 9926 -UBERON:5111981 manual digit 6 digitopodial skeleton 6 9927 -UBERON:5111982 manual digit 7 digitopodial skeleton 6 9928 -UBERON:5111983 manual digit 8 digitopodial skeleton 6 9929 -UBERON:5112260 alular digit digitopodial skeleton 6 9930 -UBERON:5112261 manual major digit (Aves) digitopodial skeleton 6 9931 -UBERON:5112262 manual minor digit (Aves) digitopodial skeleton 6 9932 -UBERON:5106048 digit 1 digitopodial skeleton 5 9933 -UBERON:5101463 manual digit 1 digitopodial skeleton 6 9934 -UBERON:5103631 pedal digit 1 digitopodial skeleton 6 9935 -UBERON:5106049 digit 2 digitopodial skeleton 5 9936 -UBERON:5103622 manual digit 2 digitopodial skeleton 6 9937 -UBERON:5103632 pedal digit 2 digitopodial skeleton 6 9938 -UBERON:5106050 digit 3 digitopodial skeleton 5 9939 -UBERON:5103623 manual digit 3 digitopodial skeleton 6 9940 -UBERON:5103633 pedal digit 3 digitopodial skeleton 6 9941 -UBERON:5106051 digit 4 digitopodial skeleton 5 9942 -UBERON:5103624 manual digit 4 digitopodial skeleton 6 9943 -UBERON:5103634 pedal digit 4 digitopodial skeleton 6 9944 -UBERON:5106052 digit 5 digitopodial skeleton 5 9945 -UBERON:5103625 manual digit 5 digitopodial skeleton 6 9946 -UBERON:5103635 pedal digit 5 digitopodial skeleton 6 9947 -UBERON:6001668 embryonic/larval lymph gland 4 9948 -UBERON:6026000 trunk mesoderm derivative 4 9949 -UBERON:6026002 visceral mesoderm derivative 5 9950 -UBERON:6000131 mesodermal crest 6 9951 -UBERON:6000132 mesodermal crest of segment T3 6 9952 -UBERON:6005541 cardiogenic mesoderm 6 9953 -UBERON:0004121 ectoderm-derived structure 3 9954 -UBERON:0000004 nose 4 9955 -UBERON:0000014 zone of skin 4 9956 -UBERON:0001085 skin of trunk 5 9957 -UBERON:0001068 skin of back 6 9958 -UBERON:0009014 lower back skin 7 9959 -UBERON:0009015 upper back skin 7 9960 -UBERON:0001418 skin of thorax 6 9961 -UBERON:0001868 skin of chest 7 9962 -UBERON:0019200 skin of anterior chest 8 9963 -UBERON:0009015 upper back skin 7 9964 -UBERON:0003836 abdominal segment skin 6 9965 -UBERON:0001415 skin of pelvis 7 9966 -UBERON:0012336 perianal skin 8 9967 -UBERON:0014482 ischial callosity 8 9968 -UBERON:0001416 skin of abdomen 7 9969 -UBERON:0036149 suprapubic skin 8 9970 -UBERON:0009014 lower back skin 7 9971 -UBERON:0001331 skin of penis 5 9972 -UBERON:0001471 skin of prepuce of penis 6 9973 -UBERON:0001419 skin of limb 5 9974 -UBERON:0003531 forelimb skin 6 9975 -UBERON:0001519 skin of manus 7 9976 -UBERON:0001518 skin of wrist 8 9977 -UBERON:0012350 carpal pad 9 9978 -UBERON:0003533 manual digit skin 8 9979 -UBERON:0005276 dorsal skin of finger 9 9980 -UBERON:0005278 nail bed of finger 10 9981 -UBERON:0013628 pollical pad 9 9982 -UBERON:0013622 manual autopod pad 8 9983 -UBERON:0008839 palmar pad 9 9984 -UBERON:0012350 carpal pad 9 9985 -UBERON:0013628 pollical pad 9 9986 -UBERON:0013777 skin of palm of manus 8 9987 -UBERON:0008839 palmar pad 9 9988 -UBERON:0002427 arm skin 7 9989 -UBERON:0001517 skin of elbow 8 9990 -UBERON:0003403 skin of forearm 8 9991 -UBERON:0004263 upper arm skin 8 9992 -UBERON:0010855 skin of forelimb wing 7 9993 -UBERON:0010878 humeral patagium 8 9994 -UBERON:0003532 hindlimb skin 6 9995 -UBERON:0001511 skin of leg 7 9996 -UBERON:0001510 skin of knee 8 9997 -UBERON:0004262 upper leg skin 8 9998 -UBERON:0004264 lower leg skin 8 9999 -UBERON:0001513 skin of pes 7 10000 -UBERON:0001512 skin of ankle 8 10001 -UBERON:0015873 heel skin 9 10002 -UBERON:0003530 pedal digit skin 8 10003 -UBERON:0005277 dorsal skin of toe 9 10004 -UBERON:0005279 nail bed of toe 10 10005 -UBERON:0013629 hallical pad 9 10006 -UBERON:0013623 pedal autopod pad 8 10007 -UBERON:0008840 plantar pad 9 10008 -UBERON:0013626 medial metatarsal pad 10 10009 -UBERON:0013627 lateral metatarsal pad 10 10010 -UBERON:0013629 hallical pad 9 10011 -UBERON:0013778 skin of sole of pes 8 10012 -UBERON:0008840 plantar pad 9 10013 -UBERON:0013626 medial metatarsal pad 10 10014 -UBERON:0013627 lateral metatarsal pad 10 10015 -UBERON:0015790 autopod skin 6 10016 -UBERON:0001513 skin of pes 7 10017 -UBERON:0001512 skin of ankle 8 10018 -UBERON:0015873 heel skin 9 10019 -UBERON:0003530 pedal digit skin 8 10020 -UBERON:0005277 dorsal skin of toe 9 10021 -UBERON:0005279 nail bed of toe 10 10022 -UBERON:0013629 hallical pad 9 10023 -UBERON:0013623 pedal autopod pad 8 10024 -UBERON:0008840 plantar pad 9 10025 -UBERON:0013626 medial metatarsal pad 10 10026 -UBERON:0013627 lateral metatarsal pad 10 10027 -UBERON:0013629 hallical pad 9 10028 -UBERON:0013778 skin of sole of pes 8 10029 -UBERON:0008840 plantar pad 9 10030 -UBERON:0013626 medial metatarsal pad 10 10031 -UBERON:0013627 lateral metatarsal pad 10 10032 -UBERON:0001519 skin of manus 7 10033 -UBERON:0001518 skin of wrist 8 10034 -UBERON:0012350 carpal pad 9 10035 -UBERON:0003533 manual digit skin 8 10036 -UBERON:0005276 dorsal skin of finger 9 10037 -UBERON:0005278 nail bed of finger 10 10038 -UBERON:0013628 pollical pad 9 10039 -UBERON:0013622 manual autopod pad 8 10040 -UBERON:0008839 palmar pad 9 10041 -UBERON:0012350 carpal pad 9 10042 -UBERON:0013628 pollical pad 9 10043 -UBERON:0013777 skin of palm of manus 8 10044 -UBERON:0008839 palmar pad 9 10045 -UBERON:0012348 autopod pad 7 10046 -UBERON:0008838 metapodial pad 8 10047 -UBERON:0008839 palmar pad 9 10048 -UBERON:0008840 plantar pad 9 10049 -UBERON:0013626 medial metatarsal pad 10 10050 -UBERON:0013627 lateral metatarsal pad 10 10051 -UBERON:0012349 digital pad 8 10052 -UBERON:0013628 pollical pad 9 10053 -UBERON:0013629 hallical pad 9 10054 -UBERON:0013622 manual autopod pad 8 10055 -UBERON:0008839 palmar pad 9 10056 -UBERON:0012350 carpal pad 9 10057 -UBERON:0013628 pollical pad 9 10058 -UBERON:0013623 pedal autopod pad 8 10059 -UBERON:0008840 plantar pad 9 10060 -UBERON:0013626 medial metatarsal pad 10 10061 -UBERON:0013627 lateral metatarsal pad 10 10062 -UBERON:0013629 hallical pad 9 10063 -UBERON:0013776 skin of palmar/plantar part of autopod 7 10064 -UBERON:0013777 skin of palm of manus 8 10065 -UBERON:0008839 palmar pad 9 10066 -UBERON:0013778 skin of sole of pes 8 10067 -UBERON:0008840 plantar pad 9 10068 -UBERON:0013626 medial metatarsal pad 10 10069 -UBERON:0013627 lateral metatarsal pad 10 10070 -UBERON:0015249 digit skin 7 10071 -UBERON:0003530 pedal digit skin 8 10072 -UBERON:0005277 dorsal skin of toe 9 10073 -UBERON:0005279 nail bed of toe 10 10074 -UBERON:0013629 hallical pad 9 10075 -UBERON:0003533 manual digit skin 8 10076 -UBERON:0005276 dorsal skin of finger 9 10077 -UBERON:0005278 nail bed of finger 10 10078 -UBERON:0013628 pollical pad 9 10079 -UBERON:0005275 dorsal skin of digit 8 10080 -UBERON:0005273 nail bed 9 10081 -UBERON:0005278 nail bed of finger 10 10082 -UBERON:0005279 nail bed of toe 10 10083 -UBERON:0005274 proximal nail bed 9 10084 -UBERON:0005276 dorsal skin of finger 9 10085 -UBERON:0005278 nail bed of finger 10 10086 -UBERON:0005277 dorsal skin of toe 9 10087 -UBERON:0005279 nail bed of toe 10 10088 -UBERON:0014931 periungual skin 8 10089 -UBERON:0036219 ungulate coronary band 8 10090 -UBERON:0001483 skin of shoulder 5 10091 -UBERON:0001554 skin of hip 5 10092 -UBERON:0003534 tail skin 5 10093 -UBERON:0004084 genital labium 5 10094 -UBERON:0004014 labium minora 6 10095 -UBERON:0004085 labium majora 6 10096 -UBERON:0005298 skin of clitoris 5 10097 -UBERON:0011375 skin of prepuce of clitoris 6 10098 -UBERON:0007121 skin nerve field 5 10099 -UBERON:0012180 head or neck skin 5 10100 -UBERON:0001084 skin of head 6 10101 -UBERON:0001458 skin of lip 7 10102 -UBERON:0018150 skin of lower lip 8 10103 -UBERON:0016919 lower vermilion 9 10104 -UBERON:0018151 skin of upper lip 8 10105 -UBERON:0016918 upper vermilion 9 10106 -UBERON:0001459 skin of external ear 7 10107 -UBERON:0012305 marginal cutaneous pouch of ear 8 10108 -UBERON:0012458 antler velvet 7 10109 -UBERON:0016915 vermilion 7 10110 -UBERON:0016918 upper vermilion 8 10111 -UBERON:0016919 lower vermilion 8 10112 -UBERON:1000021 skin of face 7 10113 -UBERON:0001457 skin of eyelid 8 10114 -UBERON:0013766 epicanthal fold 9 10115 -UBERON:0008803 skin of cheek 8 10116 -UBERON:0008802 cheek pouch 9 10117 -UBERON:0013640 internal cheek pouch 10 10118 -UBERON:0013641 external cheek pouch 10 10119 -UBERON:0010515 brille 8 10120 -UBERON:0012304 nasal diverticulum 8 10121 -UBERON:0015476 nose skin 8 10122 -UBERON:0016462 periorbital skin 8 10123 -UBERON:0016475 skin of forehead 8 10124 -UBERON:0034765 glabella skin 9 10125 -UBERON:0018151 skin of upper lip 8 10126 -UBERON:0016918 upper vermilion 9 10127 -UBERON:1000003 dewlap 8 10128 -UBERON:1000015 skin of snout 8 10129 -UBERON:8300000 skin of scalp 7 10130 -UBERON:0001417 skin of neck 6 10131 -UBERON:0010854 skin of front of neck 7 10132 -UBERON:0010880 gular fold 8 10133 -UBERON:0014481 sex skin 5 10134 -UBERON:0015474 axilla skin 5 10135 -UBERON:0015479 scrotum skin 5 10136 -UBERON:0018134 rugal fold of scrotum 6 10137 -UBERON:4300031 fin web 5 10138 -UBERON:0000019 camera-type eye 4 10139 -UBERON:0000022 feather 4 10140 -UBERON:0008291 down feather 5 10141 -UBERON:0008292 vaned feather 5 10142 -UBERON:0008297 pennaceous feather 6 10143 -UBERON:0011793 flight feather 7 10144 -UBERON:0011794 rectrix feather 8 10145 -UBERON:0011795 remex feather 8 10146 -UBERON:0011796 primary remex feather 9 10147 -UBERON:0011797 secondary remex feather 9 10148 -UBERON:0011798 tertial remex feather 9 10149 -UBERON:0008293 filoplume feather 5 10150 -UBERON:0014480 blood feather 5 10151 -UBERON:0018355 rictal bristle 5 10152 -UBERON:0018535 forelimb feather 5 10153 -UBERON:0018536 wing feather 6 10154 -UBERON:0011795 remex feather 7 10155 -UBERON:0011796 primary remex feather 8 10156 -UBERON:0011797 secondary remex feather 8 10157 -UBERON:0011798 tertial remex feather 8 10158 -UBERON:0018537 tail feather 5 10159 -UBERON:0011794 rectrix feather 6 10160 -UBERON:0018538 breast feather 5 10161 -UBERON:0018539 dorsal feather 5 10162 -UBERON:0018688 hindlimb feather 5 10163 -UBERON:0018689 crural feather 6 10164 -UBERON:0034930 auricular feather 5 10165 -UBERON:0000053 macula lutea 4 10166 -UBERON:0000054 macula 4 10167 -UBERON:0002212 macula of saccule of membranous labyrinth 5 10168 -UBERON:0002214 macula of utricle of membranous labyrinth 5 10169 -UBERON:2000116 macula lagena 5 10170 -UBERON:2000168 anterior macula 5 10171 -UBERON:2000234 macula neglecta 5 10172 -UBERON:2000558 posterior macula 5 10173 -UBERON:0000078 mixed ectoderm/mesoderm/endoderm-derived structure 4 10174 -UBERON:0000095 cardiac neural crest 4 10175 -UBERON:0000128 olivary body 4 10176 -UBERON:0000159 anal canal 4 10177 -UBERON:0000200 gyrus 4 10178 -UBERON:0002581 postcentral gyrus 5 10179 -UBERON:0002599 medial olfactory gyrus 5 10180 -UBERON:0002657 posterior parahippocampal gyrus 5 10181 -UBERON:0002665 supracallosal gyrus 5 10182 -UBERON:0002603 paraterminal gyrus 6 10183 -UBERON:0002686 angular gyrus 5 10184 -UBERON:0002688 supramarginal gyrus 5 10185 -UBERON:0002724 limen of insula 5 10186 -UBERON:0002740 posterior cingulate gyrus 5 10187 -UBERON:0002751 inferior temporal gyrus 5 10188 -UBERON:0002756 anterior cingulate gyrus 5 10189 -UBERON:0002766 fusiform gyrus 5 10190 -UBERON:0002769 superior temporal gyrus 5 10191 -UBERON:0002771 middle temporal gyrus 5 10192 -UBERON:0002967 cingulate gyrus 5 10193 -UBERON:0002973 parahippocampal gyrus 5 10194 -UBERON:0003939 transverse gyrus of Heschl 5 10195 -UBERON:0002773 anterior transverse temporal gyrus 6 10196 -UBERON:0002774 posterior transverse temporal gyrus 6 10197 -UBERON:0004671 gyrus rectus 5 10198 -UBERON:0006093 precuneus cortex 5 10199 -UBERON:0007190 paracentral gyrus 5 10200 -UBERON:0007191 anterior paracentral gyrus 6 10201 -UBERON:0007192 posterior paracentral gyrus 6 10202 -UBERON:0007193 orbital gyrus 5 10203 -UBERON:0002564 lateral orbital gyrus 6 10204 -UBERON:0002570 medial orbital gyrus 6 10205 -UBERON:0002575 posterior orbital gyrus 6 10206 -UBERON:0002644 intermediate orbital gyrus 6 10207 -UBERON:0009836 fronto-orbital gyrus 6 10208 -UBERON:0022244 anterior orbital gyrus 6 10209 -UBERON:0014640 occipital gyrus 5 10210 -UBERON:0002943 lingual gyrus 6 10211 -UBERON:0002948 superior occipital gyrus 6 10212 -UBERON:0006092 cuneus cortex 6 10213 -UBERON:0006114 lateral occipital cortex 6 10214 -UBERON:0014608 inferior occipital gyrus 6 10215 -UBERON:0026137 annectant gyrus 6 10216 -UBERON:0015593 frontal gyrus 5 10217 -UBERON:0002624 orbital part of inferior frontal gyrus 6 10218 -UBERON:0002661 superior frontal gyrus 6 10219 -UBERON:0002702 middle frontal gyrus 6 10220 -UBERON:0002703 precentral gyrus 6 10221 -UBERON:0002998 inferior frontal gyrus 6 10222 -UBERON:0004167 orbitofrontal cortex 6 10223 -UBERON:0006445 caudal middle frontal gyrus 6 10224 -UBERON:0006446 rostral middle frontal gyrus 6 10225 -UBERON:0009836 fronto-orbital gyrus 6 10226 -UBERON:0019280 rostral gyrus 5 10227 -UBERON:0035933 paracentral lobule 5 10228 -UBERON:0000329 hair root 4 10229 -UBERON:0000349 limbic system 4 10230 -UBERON:0000389 lens cortex 4 10231 -UBERON:0000390 lens nucleus 4 10232 -UBERON:0000412 dermal papilla 4 10233 -UBERON:0000454 cerebral subcortex 4 10234 -UBERON:0000955 brain 4 10235 -UBERON:0008823 neural tube derived brain 5 10236 -UBERON:6001060 embryonic brain 5 10237 -UBERON:6001920 insect embryonic/larval brain 5 10238 -UBERON:6003624 adult brain 5 10239 -UBERON:0000965 lens of camera-type eye 4 10240 -UBERON:0000966 retina 4 10241 -UBERON:0001001 chitin-based cuticle 4 10242 -UBERON:0018656 puparium 5 10243 -UBERON:6004983 embryonic/larval cuticle 5 10244 -UBERON:6004986 third instar larval cuticle 6 10245 -UBERON:0001017 central nervous system 4 10246 -UBERON:6001919 embryonic/larval central nervous system 5 10247 -UBERON:6003623 adult central nervous system 5 10248 -UBERON:0001037 strand of hair 4 10249 -UBERON:0001702 eyelash 5 10250 -UBERON:0019254 upper eyelash 6 10251 -UBERON:0019255 lower eyelash 6 10252 -UBERON:0006378 strand of vibrissa hair 5 10253 -UBERON:0010509 strand of pelage hair 5 10254 -UBERON:0010510 strand of auchene hair 6 10255 -UBERON:0010511 strand of awl hair 6 10256 -UBERON:0010512 strand of guard hair 6 10257 -UBERON:0010513 strand of zigzag hair 6 10258 -UBERON:0013196 strand of wool 6 10259 -UBERON:0010514 strand of duvet hair 5 10260 -UBERON:0013494 keratin-coated spine 5 10261 -UBERON:0013495 barbed keratin-coated spine 6 10262 -UBERON:0013496 unbarbed keratin-coated spine 6 10263 -UBERON:0013698 strand of pubic hair 5 10264 -UBERON:0013699 strand of axillary hair 5 10265 -UBERON:0015144 autopod hair 5 10266 -UBERON:0015145 pes hair 6 10267 -UBERON:0015146 manus hair 6 10268 -UBERON:0015148 tail hair 5 10269 -UBERON:0015149 ventral hair 5 10270 -UBERON:0015150 dorsal hair 5 10271 -UBERON:0016446 hair of head 5 10272 -UBERON:0010171 strand of hair of face 6 10273 -UBERON:0011931 nasal hair 7 10274 -UBERON:0019254 upper eyelash 7 10275 -UBERON:0019255 lower eyelash 7 10276 -UBERON:0022279 strand of hair on external ear 6 10277 -UBERON:0015147 pinna hair 7 10278 -UBERON:0016447 hair of trunk 5 10279 -UBERON:0010513 strand of zigzag hair 6 10280 -UBERON:0022285 strand of tylotrich hair 5 10281 -UBERON:0001091 calcareous tooth 4 10282 -UBERON:0001098 incisor tooth 5 10283 -UBERON:0003450 upper jaw incisor 6 10284 -UBERON:0015847 upper left incisor tooth 7 10285 -UBERON:0015850 upper left incisor tusk 8 10286 -UBERON:0015851 upper right incisor tusk 7 10287 -UBERON:0015852 narwhal tusk 7 10288 -UBERON:0018591 upper primary incisor tooth 7 10289 -UBERON:0018593 upper central primary incisor tooth 8 10290 -UBERON:0018594 upper lateral primary incisor tooth 8 10291 -UBERON:0018603 upper central incisor tooth 7 10292 -UBERON:0016454 upper central secondary incisor tooth 8 10293 -UBERON:0018593 upper central primary incisor tooth 8 10294 -UBERON:0018604 upper lateral incisor tooth 7 10295 -UBERON:0016455 upper lateral secondary incisor tooth 8 10296 -UBERON:0018594 upper lateral primary incisor tooth 8 10297 -UBERON:0019253 upper secondary incisor tooth 7 10298 -UBERON:0016454 upper central secondary incisor tooth 8 10299 -UBERON:0016455 upper lateral secondary incisor tooth 8 10300 -UBERON:0003451 lower jaw incisor 6 10301 -UBERON:0017748 lower primary incisor tooth 7 10302 -UBERON:0018595 lower central primary incisor tooth 8 10303 -UBERON:0018596 lower lateral primary incisor tooth 8 10304 -UBERON:0018601 lower central incisor tooth 7 10305 -UBERON:0018568 lower central secondary incisor tooth 8 10306 -UBERON:0018595 lower central primary incisor tooth 8 10307 -UBERON:0018602 lower lateral incisor tooth 7 10308 -UBERON:0018570 lower lateral secondary incisor tooth 8 10309 -UBERON:0018596 lower lateral primary incisor tooth 8 10310 -UBERON:0018623 lower secondary incisor tooth 7 10311 -UBERON:0018568 lower central secondary incisor tooth 8 10312 -UBERON:0018570 lower lateral secondary incisor tooth 8 10313 -UBERON:0015848 incisor tusk 6 10314 -UBERON:0015850 upper left incisor tusk 7 10315 -UBERON:0015851 upper right incisor tusk 7 10316 -UBERON:0015852 narwhal tusk 7 10317 -UBERON:0016476 primary incisor tooth 6 10318 -UBERON:0017748 lower primary incisor tooth 7 10319 -UBERON:0018595 lower central primary incisor tooth 8 10320 -UBERON:0018596 lower lateral primary incisor tooth 8 10321 -UBERON:0018553 primary central incisor tooth 7 10322 -UBERON:0018593 upper central primary incisor tooth 8 10323 -UBERON:0018595 lower central primary incisor tooth 8 10324 -UBERON:0018554 primary lateral incisor tooth 7 10325 -UBERON:0018594 upper lateral primary incisor tooth 8 10326 -UBERON:0018596 lower lateral primary incisor tooth 8 10327 -UBERON:0018591 upper primary incisor tooth 7 10328 -UBERON:0018593 upper central primary incisor tooth 8 10329 -UBERON:0018594 upper lateral primary incisor tooth 8 10330 -UBERON:0018550 secondary incisor tooth 6 10331 -UBERON:0018623 lower secondary incisor tooth 7 10332 -UBERON:0018568 lower central secondary incisor tooth 8 10333 -UBERON:0018570 lower lateral secondary incisor tooth 8 10334 -UBERON:0019253 upper secondary incisor tooth 7 10335 -UBERON:0016454 upper central secondary incisor tooth 8 10336 -UBERON:0016455 upper lateral secondary incisor tooth 8 10337 -UBERON:0018551 central incisor tooth 6 10338 -UBERON:0018553 primary central incisor tooth 7 10339 -UBERON:0018593 upper central primary incisor tooth 8 10340 -UBERON:0018595 lower central primary incisor tooth 8 10341 -UBERON:0018601 lower central incisor tooth 7 10342 -UBERON:0018568 lower central secondary incisor tooth 8 10343 -UBERON:0018595 lower central primary incisor tooth 8 10344 -UBERON:0018603 upper central incisor tooth 7 10345 -UBERON:0016454 upper central secondary incisor tooth 8 10346 -UBERON:0018593 upper central primary incisor tooth 8 10347 -UBERON:0018552 lateral incisor tooth 6 10348 -UBERON:0018554 primary lateral incisor tooth 7 10349 -UBERON:0018594 upper lateral primary incisor tooth 8 10350 -UBERON:0018596 lower lateral primary incisor tooth 8 10351 -UBERON:0018602 lower lateral incisor tooth 7 10352 -UBERON:0018570 lower lateral secondary incisor tooth 8 10353 -UBERON:0018596 lower lateral primary incisor tooth 8 10354 -UBERON:0018604 upper lateral incisor tooth 7 10355 -UBERON:0016455 upper lateral secondary incisor tooth 8 10356 -UBERON:0018594 upper lateral primary incisor tooth 8 10357 -UBERON:0003267 tooth of upper jaw 5 10358 -UBERON:0011593 maxillary tooth 6 10359 -UBERON:0003666 upper jaw molar 7 10360 -UBERON:0013617 upper primary molar tooth 8 10361 -UBERON:0018588 upper first primary molar tooth 9 10362 -UBERON:0018599 upper second primary molar tooth 9 10363 -UBERON:0013619 upper secondary molar tooth 8 10364 -UBERON:0018575 upper first secondary molar tooth 9 10365 -UBERON:0018576 upper second secondary molar tooth 9 10366 -UBERON:0018577 upper third secondary molar tooth 9 10367 -UBERON:7500057 upper fourth secondary molar tooth 9 10368 -UBERON:0018302 upper molar 1 8 10369 -UBERON:0018575 upper first secondary molar tooth 9 10370 -UBERON:0018588 upper first primary molar tooth 9 10371 -UBERON:0012070 palatal tooth 6 10372 -UBERON:0004767 vomerine tooth 7 10373 -UBERON:0012073 tooth of palatine bone 7 10374 -UBERON:2001632 ectopterygoid tooth 7 10375 -UBERON:0016944 upper premolar tooth 6 10376 -UBERON:0016452 upper secondary premolar tooth 7 10377 -UBERON:0018571 upper first secondary premolar tooth 8 10378 -UBERON:0018572 upper second secondary premolar tooth 8 10379 -UBERON:7500058 upper fourth secondary premolar tooth 8 10380 -UBERON:7500059 upper third secondary premolar tooth 8 10381 -UBERON:0017271 upper primary premolar tooth 7 10382 -UBERON:0018301 upper deciduous premolar 5 8 10383 -UBERON:0018648 upper premolar 4 7 10384 -UBERON:0018613 secondary upper tooth 6 10385 -UBERON:0013619 upper secondary molar tooth 7 10386 -UBERON:0018575 upper first secondary molar tooth 8 10387 -UBERON:0018576 upper second secondary molar tooth 8 10388 -UBERON:0018577 upper third secondary molar tooth 8 10389 -UBERON:7500057 upper fourth secondary molar tooth 8 10390 -UBERON:0016452 upper secondary premolar tooth 7 10391 -UBERON:0018571 upper first secondary premolar tooth 8 10392 -UBERON:0018572 upper second secondary premolar tooth 8 10393 -UBERON:7500058 upper fourth secondary premolar tooth 8 10394 -UBERON:7500059 upper third secondary premolar tooth 8 10395 -UBERON:0018561 upper secondary canine tooth 7 10396 -UBERON:0019253 upper secondary incisor tooth 7 10397 -UBERON:0016454 upper central secondary incisor tooth 8 10398 -UBERON:0016455 upper lateral secondary incisor tooth 8 10399 -UBERON:0018616 primary upper tooth 6 10400 -UBERON:0013617 upper primary molar tooth 7 10401 -UBERON:0018588 upper first primary molar tooth 8 10402 -UBERON:0018599 upper second primary molar tooth 8 10403 -UBERON:0017271 upper primary premolar tooth 7 10404 -UBERON:0018301 upper deciduous premolar 5 8 10405 -UBERON:0018591 upper primary incisor tooth 7 10406 -UBERON:0018593 upper central primary incisor tooth 8 10407 -UBERON:0018594 upper lateral primary incisor tooth 8 10408 -UBERON:0018597 upper primary canine tooth 7 10409 -UBERON:0018621 upper canine tooth 6 10410 -UBERON:0018300 upper canine 1 7 10411 -UBERON:0018561 upper secondary canine tooth 7 10412 -UBERON:0018597 upper primary canine tooth 7 10413 -UBERON:2001626 premaxillary tooth 6 10414 -UBERON:0003450 upper jaw incisor 7 10415 -UBERON:0015847 upper left incisor tooth 8 10416 -UBERON:0015850 upper left incisor tusk 9 10417 -UBERON:0015851 upper right incisor tusk 8 10418 -UBERON:0015852 narwhal tusk 8 10419 -UBERON:0018591 upper primary incisor tooth 8 10420 -UBERON:0018593 upper central primary incisor tooth 9 10421 -UBERON:0018594 upper lateral primary incisor tooth 9 10422 -UBERON:0018603 upper central incisor tooth 8 10423 -UBERON:0016454 upper central secondary incisor tooth 9 10424 -UBERON:0018593 upper central primary incisor tooth 9 10425 -UBERON:0018604 upper lateral incisor tooth 8 10426 -UBERON:0016455 upper lateral secondary incisor tooth 9 10427 -UBERON:0018594 upper lateral primary incisor tooth 9 10428 -UBERON:0019253 upper secondary incisor tooth 8 10429 -UBERON:0016454 upper central secondary incisor tooth 9 10430 -UBERON:0016455 upper lateral secondary incisor tooth 9 10431 -UBERON:4300243 premaxillary tooth 2 7 10432 -UBERON:4300244 premaxillary tooth 3 7 10433 -UBERON:3000642 maxillopalatine tooth 6 10434 -UBERON:0003268 tooth of lower jaw 5 10435 -UBERON:0003451 lower jaw incisor 6 10436 -UBERON:0017748 lower primary incisor tooth 7 10437 -UBERON:0018595 lower central primary incisor tooth 8 10438 -UBERON:0018596 lower lateral primary incisor tooth 8 10439 -UBERON:0018601 lower central incisor tooth 7 10440 -UBERON:0018568 lower central secondary incisor tooth 8 10441 -UBERON:0018595 lower central primary incisor tooth 8 10442 -UBERON:0018602 lower lateral incisor tooth 7 10443 -UBERON:0018570 lower lateral secondary incisor tooth 8 10444 -UBERON:0018596 lower lateral primary incisor tooth 8 10445 -UBERON:0018623 lower secondary incisor tooth 7 10446 -UBERON:0018568 lower central secondary incisor tooth 8 10447 -UBERON:0018570 lower lateral secondary incisor tooth 8 10448 -UBERON:0011594 dentary tooth 6 10449 -UBERON:0003667 lower jaw molar 7 10450 -UBERON:0013620 lower primary molar tooth 8 10451 -UBERON:0018589 lower first primary molar tooth 9 10452 -UBERON:0018600 lower second primary molar tooth 9 10453 -UBERON:0013621 lower secondary molar tooth 8 10454 -UBERON:0018578 lower first secondary molar tooth 9 10455 -UBERON:0018579 lower second secondary molar tooth 9 10456 -UBERON:0018580 lower third secondary molar tooth 9 10457 -UBERON:7500052 lower fourth secondary molar tooth 9 10458 -UBERON:0018282 lower molar 3 8 10459 -UBERON:0018580 lower third secondary molar tooth 9 10460 -UBERON:4300246 dentary tooth 2 7 10461 -UBERON:4300247 dentary tooth 3 7 10462 -UBERON:0011603 coronoid tooth 6 10463 -UBERON:4200238 coronoid fang 7 10464 -UBERON:0016943 lower premolar tooth 6 10465 -UBERON:0016453 lower secondary premolar tooth 7 10466 -UBERON:0018573 lower first secondary premolar tooth 8 10467 -UBERON:0018574 lower second secondary premolar tooth 8 10468 -UBERON:7500053 lower fourth secondary premolar tooth 8 10469 -UBERON:7500054 lower third secondary premolar tooth 8 10470 -UBERON:0017272 lower primary premolar tooth 7 10471 -UBERON:0018281 lower deciduous premolar 5 8 10472 -UBERON:0018284 lower premolar 1 7 10473 -UBERON:0018573 lower first secondary premolar tooth 8 10474 -UBERON:0018285 lower premolar 2 7 10475 -UBERON:0018574 lower second secondary premolar tooth 8 10476 -UBERON:0018299 mandibular symphyseal tooth 6 10477 -UBERON:0018614 permanent lower tooth 6 10478 -UBERON:0013621 lower secondary molar tooth 7 10479 -UBERON:0018578 lower first secondary molar tooth 8 10480 -UBERON:0018579 lower second secondary molar tooth 8 10481 -UBERON:0018580 lower third secondary molar tooth 8 10482 -UBERON:7500052 lower fourth secondary molar tooth 8 10483 -UBERON:0016453 lower secondary premolar tooth 7 10484 -UBERON:0018573 lower first secondary premolar tooth 8 10485 -UBERON:0018574 lower second secondary premolar tooth 8 10486 -UBERON:7500053 lower fourth secondary premolar tooth 8 10487 -UBERON:7500054 lower third secondary premolar tooth 8 10488 -UBERON:0018562 lower secondary canine tooth 7 10489 -UBERON:0018623 lower secondary incisor tooth 7 10490 -UBERON:0018568 lower central secondary incisor tooth 8 10491 -UBERON:0018570 lower lateral secondary incisor tooth 8 10492 -UBERON:0018617 primary lower tooth 6 10493 -UBERON:0013620 lower primary molar tooth 7 10494 -UBERON:0018589 lower first primary molar tooth 8 10495 -UBERON:0018600 lower second primary molar tooth 8 10496 -UBERON:0017272 lower primary premolar tooth 7 10497 -UBERON:0018281 lower deciduous premolar 5 8 10498 -UBERON:0017748 lower primary incisor tooth 7 10499 -UBERON:0018595 lower central primary incisor tooth 8 10500 -UBERON:0018596 lower lateral primary incisor tooth 8 10501 -UBERON:0018598 lower primary canine tooth 7 10502 -UBERON:0018622 lower canine tooth 6 10503 -UBERON:0018562 lower secondary canine tooth 7 10504 -UBERON:0018598 lower primary canine tooth 7 10505 -UBERON:3000519 pseudodentary tooth 6 10506 -UBERON:0003674 cuspid 5 10507 -UBERON:0015849 canine tusk 6 10508 -UBERON:0018583 primary canine tooth 6 10509 -UBERON:0018597 upper primary canine tooth 7 10510 -UBERON:0018598 lower primary canine tooth 7 10511 -UBERON:0018584 secondary canine tooth 6 10512 -UBERON:0018561 upper secondary canine tooth 7 10513 -UBERON:0018562 lower secondary canine tooth 7 10514 -UBERON:0018621 upper canine tooth 6 10515 -UBERON:0018300 upper canine 1 7 10516 -UBERON:0018561 upper secondary canine tooth 7 10517 -UBERON:0018597 upper primary canine tooth 7 10518 -UBERON:0018622 lower canine tooth 6 10519 -UBERON:0018562 lower secondary canine tooth 7 10520 -UBERON:0018598 lower primary canine tooth 7 10521 -UBERON:0007115 deciduous tooth 5 10522 -UBERON:0009977 natal tooth 6 10523 -UBERON:0013616 primary molar tooth 6 10524 -UBERON:0013617 upper primary molar tooth 7 10525 -UBERON:0018588 upper first primary molar tooth 8 10526 -UBERON:0018599 upper second primary molar tooth 8 10527 -UBERON:0013620 lower primary molar tooth 7 10528 -UBERON:0018589 lower first primary molar tooth 8 10529 -UBERON:0018600 lower second primary molar tooth 8 10530 -UBERON:0018643 deciduous molar tooth 2 7 10531 -UBERON:0018599 upper second primary molar tooth 8 10532 -UBERON:0018600 lower second primary molar tooth 8 10533 -UBERON:0018644 deciduous molar tooth 1 7 10534 -UBERON:0018588 upper first primary molar tooth 8 10535 -UBERON:0018589 lower first primary molar tooth 8 10536 -UBERON:0016476 primary incisor tooth 6 10537 -UBERON:0017748 lower primary incisor tooth 7 10538 -UBERON:0018595 lower central primary incisor tooth 8 10539 -UBERON:0018596 lower lateral primary incisor tooth 8 10540 -UBERON:0018553 primary central incisor tooth 7 10541 -UBERON:0018593 upper central primary incisor tooth 8 10542 -UBERON:0018595 lower central primary incisor tooth 8 10543 -UBERON:0018554 primary lateral incisor tooth 7 10544 -UBERON:0018594 upper lateral primary incisor tooth 8 10545 -UBERON:0018596 lower lateral primary incisor tooth 8 10546 -UBERON:0018591 upper primary incisor tooth 7 10547 -UBERON:0018593 upper central primary incisor tooth 8 10548 -UBERON:0018594 upper lateral primary incisor tooth 8 10549 -UBERON:0017269 primary premolar tooth 6 10550 -UBERON:0017271 upper primary premolar tooth 7 10551 -UBERON:0018301 upper deciduous premolar 5 8 10552 -UBERON:0017272 lower primary premolar tooth 7 10553 -UBERON:0018281 lower deciduous premolar 5 8 10554 -UBERON:0018375 deciduous premolar 5 7 10555 -UBERON:0018281 lower deciduous premolar 5 8 10556 -UBERON:0018301 upper deciduous premolar 5 8 10557 -UBERON:0018583 primary canine tooth 6 10558 -UBERON:0018597 upper primary canine tooth 7 10559 -UBERON:0018598 lower primary canine tooth 7 10560 -UBERON:0018616 primary upper tooth 6 10561 -UBERON:0013617 upper primary molar tooth 7 10562 -UBERON:0018588 upper first primary molar tooth 8 10563 -UBERON:0018599 upper second primary molar tooth 8 10564 -UBERON:0017271 upper primary premolar tooth 7 10565 -UBERON:0018301 upper deciduous premolar 5 8 10566 -UBERON:0018591 upper primary incisor tooth 7 10567 -UBERON:0018593 upper central primary incisor tooth 8 10568 -UBERON:0018594 upper lateral primary incisor tooth 8 10569 -UBERON:0018597 upper primary canine tooth 7 10570 -UBERON:0018617 primary lower tooth 6 10571 -UBERON:0013620 lower primary molar tooth 7 10572 -UBERON:0018589 lower first primary molar tooth 8 10573 -UBERON:0018600 lower second primary molar tooth 8 10574 -UBERON:0017272 lower primary premolar tooth 7 10575 -UBERON:0018281 lower deciduous premolar 5 8 10576 -UBERON:0017748 lower primary incisor tooth 7 10577 -UBERON:0018595 lower central primary incisor tooth 8 10578 -UBERON:0018596 lower lateral primary incisor tooth 8 10579 -UBERON:0018598 lower primary canine tooth 7 10580 -UBERON:3010690 fetal tooth 6 10581 -UBERON:0007775 secondary tooth 5 10582 -UBERON:0013618 secondary molar tooth 6 10583 -UBERON:0013619 upper secondary molar tooth 7 10584 -UBERON:0018575 upper first secondary molar tooth 8 10585 -UBERON:0018576 upper second secondary molar tooth 8 10586 -UBERON:0018577 upper third secondary molar tooth 8 10587 -UBERON:7500057 upper fourth secondary molar tooth 8 10588 -UBERON:0013621 lower secondary molar tooth 7 10589 -UBERON:0018578 lower first secondary molar tooth 8 10590 -UBERON:0018579 lower second secondary molar tooth 8 10591 -UBERON:0018580 lower third secondary molar tooth 8 10592 -UBERON:7500052 lower fourth secondary molar tooth 8 10593 -UBERON:0018607 permanent molar tooth 2 7 10594 -UBERON:0018576 upper second secondary molar tooth 8 10595 -UBERON:0018579 lower second secondary molar tooth 8 10596 -UBERON:0018608 permanent molar tooth 1 7 10597 -UBERON:0018575 upper first secondary molar tooth 8 10598 -UBERON:0018578 lower first secondary molar tooth 8 10599 -UBERON:0017270 secondary premolar tooth 6 10600 -UBERON:0016452 upper secondary premolar tooth 7 10601 -UBERON:0018571 upper first secondary premolar tooth 8 10602 -UBERON:0018572 upper second secondary premolar tooth 8 10603 -UBERON:7500058 upper fourth secondary premolar tooth 8 10604 -UBERON:7500059 upper third secondary premolar tooth 8 10605 -UBERON:0016453 lower secondary premolar tooth 7 10606 -UBERON:0018573 lower first secondary premolar tooth 8 10607 -UBERON:0018574 lower second secondary premolar tooth 8 10608 -UBERON:7500053 lower fourth secondary premolar tooth 8 10609 -UBERON:7500054 lower third secondary premolar tooth 8 10610 -UBERON:0018550 secondary incisor tooth 6 10611 -UBERON:0018623 lower secondary incisor tooth 7 10612 -UBERON:0018568 lower central secondary incisor tooth 8 10613 -UBERON:0018570 lower lateral secondary incisor tooth 8 10614 -UBERON:0019253 upper secondary incisor tooth 7 10615 -UBERON:0016454 upper central secondary incisor tooth 8 10616 -UBERON:0016455 upper lateral secondary incisor tooth 8 10617 -UBERON:0018584 secondary canine tooth 6 10618 -UBERON:0018561 upper secondary canine tooth 7 10619 -UBERON:0018562 lower secondary canine tooth 7 10620 -UBERON:0018613 secondary upper tooth 6 10621 -UBERON:0013619 upper secondary molar tooth 7 10622 -UBERON:0018575 upper first secondary molar tooth 8 10623 -UBERON:0018576 upper second secondary molar tooth 8 10624 -UBERON:0018577 upper third secondary molar tooth 8 10625 -UBERON:7500057 upper fourth secondary molar tooth 8 10626 -UBERON:0016452 upper secondary premolar tooth 7 10627 -UBERON:0018571 upper first secondary premolar tooth 8 10628 -UBERON:0018572 upper second secondary premolar tooth 8 10629 -UBERON:7500058 upper fourth secondary premolar tooth 8 10630 -UBERON:7500059 upper third secondary premolar tooth 8 10631 -UBERON:0018561 upper secondary canine tooth 7 10632 -UBERON:0019253 upper secondary incisor tooth 7 10633 -UBERON:0016454 upper central secondary incisor tooth 8 10634 -UBERON:0016455 upper lateral secondary incisor tooth 8 10635 -UBERON:0018614 permanent lower tooth 6 10636 -UBERON:0013621 lower secondary molar tooth 7 10637 -UBERON:0018578 lower first secondary molar tooth 8 10638 -UBERON:0018579 lower second secondary molar tooth 8 10639 -UBERON:0018580 lower third secondary molar tooth 8 10640 -UBERON:7500052 lower fourth secondary molar tooth 8 10641 -UBERON:0016453 lower secondary premolar tooth 7 10642 -UBERON:0018573 lower first secondary premolar tooth 8 10643 -UBERON:0018574 lower second secondary premolar tooth 8 10644 -UBERON:7500053 lower fourth secondary premolar tooth 8 10645 -UBERON:7500054 lower third secondary premolar tooth 8 10646 -UBERON:0018562 lower secondary canine tooth 7 10647 -UBERON:0018623 lower secondary incisor tooth 7 10648 -UBERON:0018568 lower central secondary incisor tooth 8 10649 -UBERON:0018570 lower lateral secondary incisor tooth 8 10650 -UBERON:0007776 unerupted tooth 5 10651 -UBERON:0010879 tusk 5 10652 -UBERON:0015848 incisor tusk 6 10653 -UBERON:0015850 upper left incisor tusk 7 10654 -UBERON:0015851 upper right incisor tusk 7 10655 -UBERON:0015852 narwhal tusk 7 10656 -UBERON:0015849 canine tusk 6 10657 -UBERON:0013078 venom-injecting tooth 5 10658 -UBERON:0013164 molariform tooth 5 10659 -UBERON:0003655 molar tooth 6 10660 -UBERON:0003666 upper jaw molar 7 10661 -UBERON:0013617 upper primary molar tooth 8 10662 -UBERON:0018588 upper first primary molar tooth 9 10663 -UBERON:0018599 upper second primary molar tooth 9 10664 -UBERON:0013619 upper secondary molar tooth 8 10665 -UBERON:0018575 upper first secondary molar tooth 9 10666 -UBERON:0018576 upper second secondary molar tooth 9 10667 -UBERON:0018577 upper third secondary molar tooth 9 10668 -UBERON:7500057 upper fourth secondary molar tooth 9 10669 -UBERON:0018302 upper molar 1 8 10670 -UBERON:0018575 upper first secondary molar tooth 9 10671 -UBERON:0018588 upper first primary molar tooth 9 10672 -UBERON:0003667 lower jaw molar 7 10673 -UBERON:0013620 lower primary molar tooth 8 10674 -UBERON:0018589 lower first primary molar tooth 9 10675 -UBERON:0018600 lower second primary molar tooth 9 10676 -UBERON:0013621 lower secondary molar tooth 8 10677 -UBERON:0018578 lower first secondary molar tooth 9 10678 -UBERON:0018579 lower second secondary molar tooth 9 10679 -UBERON:0018580 lower third secondary molar tooth 9 10680 -UBERON:7500052 lower fourth secondary molar tooth 9 10681 -UBERON:0018282 lower molar 3 8 10682 -UBERON:0018580 lower third secondary molar tooth 9 10683 -UBERON:0013616 primary molar tooth 7 10684 -UBERON:0013617 upper primary molar tooth 8 10685 -UBERON:0018588 upper first primary molar tooth 9 10686 -UBERON:0018599 upper second primary molar tooth 9 10687 -UBERON:0013620 lower primary molar tooth 8 10688 -UBERON:0018589 lower first primary molar tooth 9 10689 -UBERON:0018600 lower second primary molar tooth 9 10690 -UBERON:0018643 deciduous molar tooth 2 8 10691 -UBERON:0018599 upper second primary molar tooth 9 10692 -UBERON:0018600 lower second primary molar tooth 9 10693 -UBERON:0018644 deciduous molar tooth 1 8 10694 -UBERON:0018588 upper first primary molar tooth 9 10695 -UBERON:0018589 lower first primary molar tooth 9 10696 -UBERON:0013618 secondary molar tooth 7 10697 -UBERON:0013619 upper secondary molar tooth 8 10698 -UBERON:0018575 upper first secondary molar tooth 9 10699 -UBERON:0018576 upper second secondary molar tooth 9 10700 -UBERON:0018577 upper third secondary molar tooth 9 10701 -UBERON:7500057 upper fourth secondary molar tooth 9 10702 -UBERON:0013621 lower secondary molar tooth 8 10703 -UBERON:0018578 lower first secondary molar tooth 9 10704 -UBERON:0018579 lower second secondary molar tooth 9 10705 -UBERON:0018580 lower third secondary molar tooth 9 10706 -UBERON:7500052 lower fourth secondary molar tooth 9 10707 -UBERON:0018607 permanent molar tooth 2 8 10708 -UBERON:0018576 upper second secondary molar tooth 9 10709 -UBERON:0018579 lower second secondary molar tooth 9 10710 -UBERON:0018608 permanent molar tooth 1 8 10711 -UBERON:0018575 upper first secondary molar tooth 9 10712 -UBERON:0018578 lower first secondary molar tooth 9 10713 -UBERON:0018376 molar tooth 1 7 10714 -UBERON:0018302 upper molar 1 8 10715 -UBERON:0018575 upper first secondary molar tooth 9 10716 -UBERON:0018588 upper first primary molar tooth 9 10717 -UBERON:0018608 permanent molar tooth 1 8 10718 -UBERON:0018575 upper first secondary molar tooth 9 10719 -UBERON:0018578 lower first secondary molar tooth 9 10720 -UBERON:0018644 deciduous molar tooth 1 8 10721 -UBERON:0018588 upper first primary molar tooth 9 10722 -UBERON:0018589 lower first primary molar tooth 9 10723 -UBERON:0018377 molar tooth 3 7 10724 -UBERON:0018282 lower molar 3 8 10725 -UBERON:0018580 lower third secondary molar tooth 9 10726 -UBERON:0018577 upper third secondary molar tooth 8 10727 -UBERON:0018606 molar tooth 2 7 10728 -UBERON:0018607 permanent molar tooth 2 8 10729 -UBERON:0018576 upper second secondary molar tooth 9 10730 -UBERON:0018579 lower second secondary molar tooth 9 10731 -UBERON:0018643 deciduous molar tooth 2 8 10732 -UBERON:0018599 upper second primary molar tooth 9 10733 -UBERON:0018600 lower second primary molar tooth 9 10734 -UBERON:7500055 molar tooth 4 7 10735 -UBERON:0007120 premolar tooth 6 10736 -UBERON:0016943 lower premolar tooth 7 10737 -UBERON:0016453 lower secondary premolar tooth 8 10738 -UBERON:0018573 lower first secondary premolar tooth 9 10739 -UBERON:0018574 lower second secondary premolar tooth 9 10740 -UBERON:7500053 lower fourth secondary premolar tooth 9 10741 -UBERON:7500054 lower third secondary premolar tooth 9 10742 -UBERON:0017272 lower primary premolar tooth 8 10743 -UBERON:0018281 lower deciduous premolar 5 9 10744 -UBERON:0018284 lower premolar 1 8 10745 -UBERON:0018573 lower first secondary premolar tooth 9 10746 -UBERON:0018285 lower premolar 2 8 10747 -UBERON:0018574 lower second secondary premolar tooth 9 10748 -UBERON:0016944 upper premolar tooth 7 10749 -UBERON:0016452 upper secondary premolar tooth 8 10750 -UBERON:0018571 upper first secondary premolar tooth 9 10751 -UBERON:0018572 upper second secondary premolar tooth 9 10752 -UBERON:7500058 upper fourth secondary premolar tooth 9 10753 -UBERON:7500059 upper third secondary premolar tooth 9 10754 -UBERON:0017271 upper primary premolar tooth 8 10755 -UBERON:0018301 upper deciduous premolar 5 9 10756 -UBERON:0018648 upper premolar 4 8 10757 -UBERON:0017269 primary premolar tooth 7 10758 -UBERON:0017271 upper primary premolar tooth 8 10759 -UBERON:0018301 upper deciduous premolar 5 9 10760 -UBERON:0017272 lower primary premolar tooth 8 10761 -UBERON:0018281 lower deciduous premolar 5 9 10762 -UBERON:0018375 deciduous premolar 5 8 10763 -UBERON:0018281 lower deciduous premolar 5 9 10764 -UBERON:0018301 upper deciduous premolar 5 9 10765 -UBERON:0017270 secondary premolar tooth 7 10766 -UBERON:0016452 upper secondary premolar tooth 8 10767 -UBERON:0018571 upper first secondary premolar tooth 9 10768 -UBERON:0018572 upper second secondary premolar tooth 9 10769 -UBERON:7500058 upper fourth secondary premolar tooth 9 10770 -UBERON:7500059 upper third secondary premolar tooth 9 10771 -UBERON:0016453 lower secondary premolar tooth 8 10772 -UBERON:0018573 lower first secondary premolar tooth 9 10773 -UBERON:0018574 lower second secondary premolar tooth 9 10774 -UBERON:7500053 lower fourth secondary premolar tooth 9 10775 -UBERON:7500054 lower third secondary premolar tooth 9 10776 -UBERON:0018294 premolar 1 7 10777 -UBERON:0018284 lower premolar 1 8 10778 -UBERON:0018573 lower first secondary premolar tooth 9 10779 -UBERON:0018571 upper first secondary premolar tooth 8 10780 -UBERON:0018640 premolar 2 7 10781 -UBERON:0018285 lower premolar 2 8 10782 -UBERON:0018574 lower second secondary premolar tooth 9 10783 -UBERON:0018572 upper second secondary premolar tooth 8 10784 -UBERON:0018646 premolar tooth 5 7 10785 -UBERON:0018375 deciduous premolar 5 8 10786 -UBERON:0018281 lower deciduous premolar 5 9 10787 -UBERON:0018301 upper deciduous premolar 5 9 10788 -UBERON:0018647 premolar tooth 4 7 10789 -UBERON:0018648 upper premolar 4 8 10790 -UBERON:7500053 lower fourth secondary premolar tooth 8 10791 -UBERON:7500056 premolar 3 7 10792 -UBERON:0018277 calcareous egg tooth 5 10793 -UBERON:0018296 replacement tooth 5 10794 -UBERON:2000694 ceratobranchial 5 tooth 5 10795 -UBERON:2001141 tooth 1V 6 10796 -UBERON:2001142 tooth 5V 6 10797 -UBERON:2001143 tooth 4V 6 10798 -UBERON:2001144 tooth 2V 6 10799 -UBERON:2001145 tooth 3V 6 10800 -UBERON:2001146 tooth 1MD 6 10801 -UBERON:2001147 tooth 2MD 6 10802 -UBERON:2001148 tooth 1D 6 10803 -UBERON:2001150 tooth 2D 6 10804 -UBERON:2001151 tooth 4MD 6 10805 -UBERON:2001152 tooth 3MD 6 10806 -UBERON:2001633 entopterygoid tooth 5 10807 -UBERON:2001649 basihyal tooth 5 10808 -UBERON:2001651 pharyngobranchial 2 tooth 5 10809 -UBERON:2001653 pharyngobranchial 3 tooth 5 10810 -UBERON:2001655 upper pharyngeal 4 tooth 5 10811 -UBERON:2001657 upper pharyngeal 5 tooth 5 10812 -UBERON:2001659 upper pharyngeal tooth 5 10813 -UBERON:2001660 basibranchial tooth 5 10814 -UBERON:2001663 basibranchial 4 tooth 5 10815 -UBERON:2001665 basibranchial 2 tooth 5 10816 -UBERON:2002258 trituration tooth 5 10817 -UBERON:3000388 parasphenoid tooth 5 10818 -UBERON:4300135 upper jaw symphyseal tooth 5 10819 -UBERON:4300233 mammiliform tooth 5 10820 -UBERON:0001245 anus 4 10821 -UBERON:0001351 lacrimal sac 4 10822 -UBERON:0001352 external acoustic meatus 4 10823 -UBERON:0001357 inferior rectal artery 4 10824 -UBERON:0001711 eyelid 4 10825 -UBERON:0001712 upper eyelid 5 10826 -UBERON:0001713 lower eyelid 5 10827 -UBERON:0010207 nictitating membrane 5 10828 -UBERON:0001750 lacrimal apparatus 4 10829 -UBERON:0001768 uvea 4 10830 -UBERON:0001769 iris 4 10831 -UBERON:0001770 lacrimal canaliculus 4 10832 -UBERON:0001775 ciliary body 4 10833 -UBERON:0001779 iris stroma 4 10834 -UBERON:0001783 optic disc 4 10835 -UBERON:0001786 fovea centralis 4 10836 -UBERON:0001798 vitreous body 4 10837 -UBERON:0001801 anterior segment of eyeball 4 10838 -UBERON:0001802 posterior segment of eyeball 4 10839 -UBERON:0001804 capsule of lens 4 10840 -UBERON:0001811 conjunctiva 4 10841 -UBERON:0001817 lacrimal gland 4 10842 -UBERON:0013226 accessory lacrimal gland 5 10843 -UBERON:0011186 Krause's gland 6 10844 -UBERON:0013224 Ciaccio's gland 6 10845 -UBERON:0013227 crypt of Henle 6 10846 -UBERON:0019324 intraorbital lacrimal gland 5 10847 -UBERON:0019325 exorbital lacrimal gland 5 10848 -UBERON:0001819 palpebral fissure 4 10849 -UBERON:0001823 nasal cartilage 4 10850 -UBERON:0003407 cartilage of nasal septum 5 10851 -UBERON:0006332 nasal capsule 5 10852 -UBERON:3000316 nasal opening 6 10853 -UBERON:3000160 fenestra dorsalis nasi 7 10854 -UBERON:3000161 fenestra endochoanalis 7 10855 -UBERON:3000162 fenestra endonarina communis 7 10856 -UBERON:3000164 fenestra lateralis nasi 7 10857 -UBERON:3000166 fenestra nasobasalis 7 10858 -UBERON:3000167 fenestra nasolateralis 7 10859 -UBERON:3000170 fenestra precerebralis 7 10860 -UBERON:3000171 fenestra prechoanalis 7 10861 -UBERON:3000189 foramen orbitonasale laterale 7 10862 -UBERON:3000190 foramen orbitonasale mediale 7 10863 -UBERON:3000291 medial orbitonasal foramen 7 10864 -UBERON:3000333 olfactory foramen 7 10865 -UBERON:0007818 major alar cartilage 5 10866 -UBERON:0007819 minor alar cartilage 5 10867 -UBERON:0007820 accessory nasal cartilage 5 10868 -UBERON:0007821 lateral nasal cartilage 5 10869 -UBERON:0007822 vomeronasal cartilage 5 10870 -UBERON:3000002 alary cartilage 5 10871 -UBERON:3000068 cartilago ectochoanalis 5 10872 -UBERON:3000069 cartilago infranarina 5 10873 -UBERON:3000079 cartilago retronarina 5 10874 -UBERON:3000234 inferior prenasal cartilage 5 10875 -UBERON:3000290 medial inferior prenasal cartilage 5 10876 -UBERON:3000329 oblique cartilage 5 10877 -UBERON:3000381 paranasal commissure 5 10878 -UBERON:3000389 paries nasi 5 10879 -UBERON:3000434 planum antorbitale 5 10880 -UBERON:3000437 planum conchale 5 10881 -UBERON:3000438 planum internasale 5 10882 -UBERON:3000586 superior prenasal cartilage 5 10883 -UBERON:3010827 anterior prenasal cartilage 5 10884 -UBERON:0001826 nasal cavity mucosa 4 10885 -UBERON:0005386 olfactory segment of nasal mucosa 5 10886 -UBERON:0015786 respiratory segment of nasal mucosa 5 10887 -UBERON:0001839 bony labyrinth 4 10888 -UBERON:0001840 semicircular canal 4 10889 -UBERON:0001841 anterior semicircular canal 5 10890 -UBERON:0001842 posterior semicircular canal 5 10891 -UBERON:0001843 lateral semicircular canal 5 10892 -UBERON:3000057 canalis semicircularis anterior 5 10893 -UBERON:0001844 cochlea 4 10894 -UBERON:0001846 internal ear 4 10895 -UBERON:0001849 membranous labyrinth 4 10896 -UBERON:0001850 lacrimal drainage system 4 10897 -UBERON:0001855 cochlear duct of membranous labyrinth 4 10898 -UBERON:0001856 semicircular duct 4 10899 -UBERON:0001857 anterior semicircular duct 5 10900 -UBERON:0001858 posterior semicircular duct 5 10901 -UBERON:0001859 lateral semicircular duct 5 10902 -UBERON:0001860 endolymphatic duct 4 10903 -UBERON:0001861 ductus reuniens 4 10904 -UBERON:0001862 vestibular labyrinth 4 10905 -UBERON:0001865 cartilaginous external acoustic tube 4 10906 -UBERON:0001869 cerebral hemisphere 4 10907 -UBERON:0002812 left cerebral hemisphere 5 10908 -UBERON:0002813 right cerebral hemisphere 5 10909 -UBERON:0001896 medulla oblongata 4 10910 -UBERON:0001911 mammary gland 4 10911 -UBERON:0003488 abdominal mammary gland 5 10912 -UBERON:0005199 cervical mammary gland 5 10913 -UBERON:0005200 thoracic mammary gland 5 10914 -UBERON:0008424 inguinal mammary gland 5 10915 -UBERON:0001912 lobule of mammary gland 4 10916 -UBERON:0001933 retrochiasmatic area 4 10917 -UBERON:0001948 regional part of spinal cord 4 10918 -UBERON:0005723 floor plate spinal cord region 5 10919 -UBERON:0005844 spinal cord segment 5 10920 -UBERON:0002726 cervical spinal cord 6 10921 -UBERON:0002792 lumbar spinal cord 6 10922 -UBERON:0007716 lumbar subsegment of spinal cord 7 10923 -UBERON:0006447 fifth lumbar spinal cord segment 8 10924 -UBERON:0006448 first lumbar spinal cord segment 8 10925 -UBERON:0006449 third lumbar spinal cord segment 8 10926 -UBERON:0006450 second lumbar spinal cord segment 8 10927 -UBERON:0006451 fourth lumbar spinal cord segment 8 10928 -UBERON:0003038 thoracic spinal cord 6 10929 -UBERON:0007715 thoracic subsegment of spinal cord 7 10930 -UBERON:0006452 fourth thoracic spinal cord segment 8 10931 -UBERON:0006453 fifth thoracic spinal cord segment 8 10932 -UBERON:0006454 sixth thoracic spinal cord segment 8 10933 -UBERON:0006455 seventh thoracic spinal cord segment 8 10934 -UBERON:0006456 eighth thoracic spinal cord segment 8 10935 -UBERON:0006457 first thoracic spinal cord segment 8 10936 -UBERON:0006458 second thoracic spinal cord segment 8 10937 -UBERON:0006459 third thoracic spinal cord segment 8 10938 -UBERON:0006465 ninth thoracic spinal cord segment 8 10939 -UBERON:0006466 tenth thoracic spinal cord segment 8 10940 -UBERON:0006467 eleventh thoracic spinal cord segment 8 10941 -UBERON:0006468 twelfth thoracic spinal cord segment 8 10942 -UBERON:0005437 conus medullaris 6 10943 -UBERON:0005843 sacral spinal cord 6 10944 -UBERON:0005845 caudal segment of spinal cord 6 10945 -UBERON:0007714 cervical subsegment of spinal cord 6 10946 -UBERON:0006469 C1 segment of cervical spinal cord 7 10947 -UBERON:0006470 C8 segment of cervical spinal cord 7 10948 -UBERON:0006488 C3 segment of cervical spinal cord 7 10949 -UBERON:0006489 C2 segment of cervical spinal cord 7 10950 -UBERON:0006490 C4 segment of cervical spinal cord 7 10951 -UBERON:0006491 C5 segment of cervical spinal cord 7 10952 -UBERON:0006492 C6 segment of cervical spinal cord 7 10953 -UBERON:0006493 C7 segment of cervical spinal cord 7 10954 -UBERON:0007717 sacral subsegment of spinal cord 6 10955 -UBERON:0006460 first sacral spinal cord segment 7 10956 -UBERON:0006461 second sacral spinal cord segment 7 10957 -UBERON:0006462 third sacral spinal cord segment 7 10958 -UBERON:0006463 fourth sacral spinal cord segment 7 10959 -UBERON:0006464 fifth sacral spinal cord segment 7 10960 -UBERON:0001953 presubiculum 4 10961 -UBERON:0001965 substantia nigra pars compacta 4 10962 -UBERON:0001966 substantia nigra pars reticulata 4 10963 -UBERON:0001992 papillary layer of dermis 4 10964 -UBERON:0001993 reticular layer of dermis 4 10965 -UBERON:0002025 stratum basale of epidermis 4 10966 -UBERON:0002026 stratum spinosum of epidermis 4 10967 -UBERON:0002030 nipple 4 10968 -UBERON:0013772 left nipple 5 10969 -UBERON:0013773 right nipple 5 10970 -UBERON:0002032 areola 4 10971 -UBERON:0002067 dermis 4 10972 -UBERON:3010599 stratum spongiosum 5 10973 -UBERON:0002069 stratum granulosum of epidermis 4 10974 -UBERON:0002071 stratum lucidum of epidermis 4 10975 -UBERON:0002074 hair shaft 4 10976 -UBERON:0002076 cuticle of hair 4 10977 -UBERON:0002077 cortex of hair 4 10978 -UBERON:0002097 skin of body 4 10979 -UBERON:0002196 adenohypophysis 4 10980 -UBERON:0002206 mammillary body 4 10981 -UBERON:0002226 basilar membrane of cochlea 4 10982 -UBERON:0002227 spiral organ of cochlea 4 10983 -UBERON:0002233 tectorial membrane of cochlea 4 10984 -UBERON:0002240 spinal cord 4 10985 -UBERON:0002242 nucleus pulposus 4 10986 -UBERON:0002255 vomeronasal organ 4 10987 -UBERON:0002259 corpora quadrigemina 4 10988 -UBERON:0002269 pupillary membrane 4 10989 -UBERON:0002271 periventricular zone of hypothalamus 4 10990 -UBERON:0002272 medial zone of hypothalamus 4 10991 -UBERON:0002273 lateral zone of hypothalamus 4 10992 -UBERON:0002276 lamina of spiral limbus 4 10993 -UBERON:0002279 vestibular aqueduct 4 10994 -UBERON:0002280 otolith 4 10995 -UBERON:2000315 asteriscus 5 10996 -UBERON:2000530 lapillus 5 10997 -UBERON:2000676 sagitta 5 10998 -UBERON:0002281 vestibular membrane of cochlear duct 4 10999 -UBERON:0002282 stria vascularis of cochlear duct 4 11000 -UBERON:0002283 nail matrix 4 11001 -UBERON:0002291 central canal of spinal cord 4 11002 -UBERON:0002328 notochord 4 11003 -UBERON:0036242 post-embryonic notochord 5 11004 -UBERON:0002342 neural crest 4 11005 -UBERON:0003849 mesencephalic neural crest 5 11006 -UBERON:0003850 telencephalon neural crest 5 11007 -UBERON:0003851 diencephalon neural crest 5 11008 -UBERON:0003852 rhombencephalon neural crest 5 11009 -UBERON:0003853 spinal cord neural crest 5 11010 -UBERON:3010587 hyoid arch neural crest 5 11011 -UBERON:0002346 neurectoderm 4 11012 -UBERON:0002360 meninx 4 11013 -UBERON:0000391 leptomeninx 5 11014 -UBERON:0002361 pia mater 6 11015 -UBERON:0003549 brain pia mater 7 11016 -UBERON:0003550 forebrain pia mater 8 11017 -UBERON:0003552 telencephalon pia mater 9 11018 -UBERON:0003553 diencephalon pia mater 9 11019 -UBERON:0003551 midbrain pia mater 8 11020 -UBERON:0003554 hindbrain pia mater 8 11021 -UBERON:0003555 spinal cord pia mater 7 11022 -UBERON:0002362 arachnoid mater 6 11023 -UBERON:0003556 forebrain arachnoid mater 7 11024 -UBERON:0003558 diencephalon arachnoid mater 8 11025 -UBERON:0005400 telencephalon arachnoid mater 8 11026 -UBERON:0003557 midbrain arachnoid mater 7 11027 -UBERON:0003559 hindbrain arachnoid mater 7 11028 -UBERON:0003560 spinal cord arachnoid mater 7 11029 -UBERON:0005397 brain arachnoid mater 7 11030 -UBERON:0002363 dura mater 5 11031 -UBERON:0002092 brain dura mater 6 11032 -UBERON:0003561 forebrain dura mater 7 11033 -UBERON:0003563 telencephalon dura mater 8 11034 -UBERON:0003564 diencephalon dura mater 8 11035 -UBERON:0003562 midbrain dura mater 7 11036 -UBERON:0003565 hindbrain dura mater 7 11037 -UBERON:0002093 spinal dura mater 6 11038 -UBERON:0003292 meninx of spinal cord 5 11039 -UBERON:0002093 spinal dura mater 6 11040 -UBERON:0003555 spinal cord pia mater 6 11041 -UBERON:0003560 spinal cord arachnoid mater 6 11042 -UBERON:0003547 brain meninx 5 11043 -UBERON:0002092 brain dura mater 6 11044 -UBERON:0003561 forebrain dura mater 7 11045 -UBERON:0003563 telencephalon dura mater 8 11046 -UBERON:0003564 diencephalon dura mater 8 11047 -UBERON:0003562 midbrain dura mater 7 11048 -UBERON:0003565 hindbrain dura mater 7 11049 -UBERON:0003288 meninx of midbrain 6 11050 -UBERON:0003551 midbrain pia mater 7 11051 -UBERON:0003557 midbrain arachnoid mater 7 11052 -UBERON:0003562 midbrain dura mater 7 11053 -UBERON:0003291 meninx of hindbrain 6 11054 -UBERON:0003554 hindbrain pia mater 7 11055 -UBERON:0003559 hindbrain arachnoid mater 7 11056 -UBERON:0003565 hindbrain dura mater 7 11057 -UBERON:0003548 forebrain meninges 6 11058 -UBERON:0003289 meninx of telencephalon 7 11059 -UBERON:0003552 telencephalon pia mater 8 11060 -UBERON:0003563 telencephalon dura mater 8 11061 -UBERON:0005400 telencephalon arachnoid mater 8 11062 -UBERON:0003290 meninx of diencephalon 7 11063 -UBERON:0003553 diencephalon pia mater 8 11064 -UBERON:0003558 diencephalon arachnoid mater 8 11065 -UBERON:0003564 diencephalon dura mater 8 11066 -UBERON:0003550 forebrain pia mater 7 11067 -UBERON:0003552 telencephalon pia mater 8 11068 -UBERON:0003553 diencephalon pia mater 8 11069 -UBERON:0003556 forebrain arachnoid mater 7 11070 -UBERON:0003558 diencephalon arachnoid mater 8 11071 -UBERON:0005400 telencephalon arachnoid mater 8 11072 -UBERON:0003561 forebrain dura mater 7 11073 -UBERON:0003563 telencephalon dura mater 8 11074 -UBERON:0003564 diencephalon dura mater 8 11075 -UBERON:0003549 brain pia mater 6 11076 -UBERON:0003550 forebrain pia mater 7 11077 -UBERON:0003552 telencephalon pia mater 8 11078 -UBERON:0003553 diencephalon pia mater 8 11079 -UBERON:0003551 midbrain pia mater 7 11080 -UBERON:0003554 hindbrain pia mater 7 11081 -UBERON:0005397 brain arachnoid mater 6 11082 -UBERON:0002392 nasolacrimal duct 4 11083 -UBERON:0002419 skin gland 4 11084 -UBERON:0003605 eye skin gland 5 11085 -UBERON:0003484 eye sebaceous gland 6 11086 -UBERON:0013231 sebaceous gland of eyelid 7 11087 -UBERON:0001818 tarsal gland 8 11088 -UBERON:0018233 gland of Zeis 8 11089 -UBERON:0013228 sweat gland of eyelid 6 11090 -UBERON:0007771 epidermis gland 5 11091 -UBERON:0001820 sweat gland 6 11092 -UBERON:0000382 apocrine sweat gland 7 11093 -UBERON:0013211 cerumen gland 8 11094 -UBERON:0013228 sweat gland of eyelid 8 11095 -UBERON:0018232 axillary sweat gland 8 11096 -UBERON:0034762 areolar sweat gland 8 11097 -UBERON:0000423 eccrine sweat gland 7 11098 -UBERON:0014391 palmar/plantar sweat gland 8 11099 -UBERON:0007773 scrotal sweat gland 7 11100 -UBERON:0001821 sebaceous gland 6 11101 -UBERON:0003485 vagina sebaceous gland 7 11102 -UBERON:0003487 skin sebaceous gland 7 11103 -UBERON:0003484 eye sebaceous gland 8 11104 -UBERON:0013231 sebaceous gland of eyelid 9 11105 -UBERON:0001818 tarsal gland 10 11106 -UBERON:0018233 gland of Zeis 10 11107 -UBERON:0011827 areolar gland 7 11108 -UBERON:0015251 modified sebaceous gland 7 11109 -UBERON:0000359 preputial gland 8 11110 -UBERON:0005301 male preputial gland 9 11111 -UBERON:0005302 female preputial gland 9 11112 -UBERON:0001818 tarsal gland 8 11113 -UBERON:0012281 perianal sebaceous gland 8 11114 -UBERON:1000022 Zymbal's gland 8 11115 -UBERON:0004790 skin mucous gland 6 11116 -UBERON:0012177 skin apocrine gland 5 11117 -UBERON:0016852 skin scent gland 5 11118 -UBERON:0012281 perianal sebaceous gland 6 11119 -UBERON:0016853 interdigital gland 6 11120 -UBERON:0002432 pars intermedia of adenohypophysis 4 11121 -UBERON:0002433 pars tuberalis of adenohypophysis 4 11122 -UBERON:0002444 lens fiber 4 11123 -UBERON:0002499 cochlear labyrinth 4 11124 -UBERON:0002505 spiral modiolar artery 4 11125 -UBERON:0002518 otolith organ 4 11126 -UBERON:0001853 utricle of membranous labyrinth 5 11127 -UBERON:0001854 saccule of membranous labyrinth 5 11128 -UBERON:0002519 otolithic part of statoconial membrane 4 11129 -UBERON:0002601 fasciolar gyrus 4 11130 -UBERON:0002616 regional part of brain 4 11131 -UBERON:0000203 pallium 5 11132 -UBERON:0000204 ventral part of telencephalon 5 11133 -UBERON:0000369 corpus striatum 5 11134 -UBERON:0000445 habenular trigone 5 11135 -UBERON:0000451 prefrontal cortex 5 11136 -UBERON:0000988 pons 5 11137 -UBERON:0001384 primary motor cortex 5 11138 -UBERON:0001393 auditory cortex 5 11139 -UBERON:0009897 right auditory cortex 6 11140 -UBERON:0009898 left auditory cortex 6 11141 -UBERON:0001885 dentate gyrus of hippocampal formation 5 11142 -UBERON:0001890 forebrain 5 11143 -UBERON:0001891 midbrain 5 11144 -UBERON:2007003 ventro-caudal cluster 6 11145 -UBERON:0001893 telencephalon 5 11146 -UBERON:0001894 diencephalon 5 11147 -UBERON:0001897 dorsal plus ventral thalamus 5 11148 -UBERON:0001898 hypothalamus 5 11149 -UBERON:0001899 epithalamus 5 11150 -UBERON:0001900 ventral thalamus 5 11151 -UBERON:0001904 habenula 5 11152 -UBERON:0001928 preoptic area 5 11153 -UBERON:0001943 midbrain tegmentum 5 11154 -UBERON:0001945 superior colliculus 5 11155 -UBERON:0001946 inferior colliculus 5 11156 -UBERON:0001950 neocortex 5 11157 -UBERON:0001954 Ammon's horn 5 11158 -UBERON:0002028 hindbrain 5 11159 -UBERON:0002037 cerebellum 5 11160 -UBERON:0002191 subiculum 5 11161 -UBERON:0002264 olfactory bulb 5 11162 -UBERON:0002275 reticular formation 5 11163 -UBERON:0002298 brainstem 5 11164 -UBERON:0002314 midbrain tectum 5 11165 -UBERON:0002421 hippocampal formation 5 11166 -UBERON:0002430 lateral hypothalamic area 5 11167 -UBERON:0002434 pituitary stalk 5 11168 -UBERON:0002474 cerebellar peduncular complex 5 11169 -UBERON:0002550 anterior hypothalamic region 5 11170 -UBERON:0002555 intermediate hypothalamic region 5 11171 -UBERON:0002560 temporal operculum 5 11172 -UBERON:0002567 basal part of pons 5 11173 -UBERON:0002590 prepyriform area 5 11174 -UBERON:0002593 orbital operculum 5 11175 -UBERON:0002605 precentral operculum 5 11176 -UBERON:0002620 tuber cinereum 5 11177 -UBERON:0002648 anterior median eminence 5 11178 -UBERON:0002652 posterior median eminence 5 11179 -UBERON:0002691 ventral tegmental area 5 11180 -UBERON:0002743 basal forebrain 5 11181 -UBERON:0002749 regional part of cerebellar cortex 5 11182 -UBERON:0002245 cerebellar hemisphere 6 11183 -UBERON:0014889 left hemisphere of cerebellum 7 11184 -UBERON:0014890 right hemisphere of cerebellum 7 11185 -UBERON:0004004 cerebellum lobule 6 11186 -UBERON:0004003 cerebellum hemisphere lobule 7 11187 -UBERON:0003013 alar central lobule 8 11188 -UBERON:0003015 anterior quadrangular lobule 8 11189 -UBERON:0005347 copula pyramidis 8 11190 -UBERON:0005348 ansiform lobule 8 11191 -UBERON:0005976 ansiform lobule crus I 9 11192 -UBERON:0005977 ansiform lobule crus II 9 11193 -UBERON:0005350 lobule simplex 8 11194 -UBERON:0005351 paraflocculus 8 11195 -UBERON:0006121 hemispheric lobule VIII 8 11196 -UBERON:0023998 cerebellum hemispheric lobule II 8 11197 -UBERON:0023999 cerebellum hemispheric lobule III 8 11198 -UBERON:0024000 cerebellum hemispheric lobule IV 8 11199 -UBERON:0024001 cerebellum hemispheric lobule V 8 11200 -UBERON:0024003 cerebellum hemispheric lobule VII 8 11201 -UBERON:0024009 cerebellum hemispheric lobule X 8 11202 -UBERON:0027285 paravermis lobule area 8 11203 -UBERON:0028918 paravermic lobule II 9 11204 -UBERON:0028919 paravermic lobule III 9 11205 -UBERON:0028920 paravermic lobule IV 9 11206 -UBERON:0028921 paravermic lobule IX 9 11207 -UBERON:0028922 paravermic lobule V 9 11208 -UBERON:0028923 paravermic lobule VI 9 11209 -UBERON:0028924 paravermic lobule VII 9 11210 -UBERON:0028925 paravermic lobule VIII 9 11211 -UBERON:0036043 paravermic lobule X 9 11212 -UBERON:0036063 quadrangular lobule 8 11213 -UBERON:0004070 cerebellum vermis lobule 7 11214 -UBERON:0003021 central lobule 8 11215 -UBERON:0004074 cerebellum vermis lobule I 8 11216 -UBERON:0004075 cerebellum vermis lobule II 8 11217 -UBERON:0004076 cerebellum vermis lobule III 8 11218 -UBERON:0004077 cerebellum vermis lobule IV 8 11219 -UBERON:0004078 cerebellum vermis lobule IX 8 11220 -UBERON:0004079 cerebellum vermis lobule V 8 11221 -UBERON:0004080 cerebellum vermis lobule VI 8 11222 -UBERON:0004081 cerebellum vermis lobule VII 8 11223 -UBERON:0005345 cerebellum vermis lobule VIIA 9 11224 -UBERON:0005346 cerebellum vermis lobule VIIB 9 11225 -UBERON:0004082 cerebellum vermis lobule VIII 8 11226 -UBERON:0004083 cerebellum vermis lobule X 8 11227 -UBERON:0005349 paramedian lobule 8 11228 -UBERON:0007763 cerebellum vermis culmen 8 11229 -UBERON:0004006 cerebellum intermediate zone 6 11230 -UBERON:0004720 cerebellar vermis 6 11231 -UBERON:0003941 cerebellum anterior vermis 7 11232 -UBERON:0004009 cerebellum posterior vermis 7 11233 -UBERON:0024037 vermis of the flocculonodular lobe of the cerebellum 7 11234 -UBERON:0005293 cerebellum lobe 6 11235 -UBERON:0002131 anterior lobe of cerebellum 7 11236 -UBERON:0003012 flocculonodular lobe 7 11237 -UBERON:0004002 posterior lobe of cerebellum 7 11238 -UBERON:0014644 cerebrocerebellum 6 11239 -UBERON:0014647 hemisphere part of cerebellar anterior lobe 6 11240 -UBERON:0023998 cerebellum hemispheric lobule II 7 11241 -UBERON:0023999 cerebellum hemispheric lobule III 7 11242 -UBERON:0024000 cerebellum hemispheric lobule IV 7 11243 -UBERON:0024001 cerebellum hemispheric lobule V 7 11244 -UBERON:0014648 hemisphere part of cerebellar posterior lobe 6 11245 -UBERON:0005350 lobule simplex 7 11246 -UBERON:0005976 ansiform lobule crus I 7 11247 -UBERON:0005977 ansiform lobule crus II 7 11248 -UBERON:0006121 hemispheric lobule VIII 7 11249 -UBERON:0025677 paravermis parts of the cerebellar cortex 6 11250 -UBERON:0027309 paravermis of the posterior lobe of the cerebellum 7 11251 -UBERON:0027310 paravermis of the anterior lobe of the cerebellum 7 11252 -UBERON:0027331 flocculonodular lobe, hemisphere portion 6 11253 -UBERON:0001063 flocculus 7 11254 -UBERON:0005351 paraflocculus 7 11255 -UBERON:0024009 cerebellum hemispheric lobule X 7 11256 -UBERON:0036043 paravermic lobule X 7 11257 -UBERON:0036044 cerebellum vermis lobule VIIAf 6 11258 -UBERON:0036065 cerebellum vermis lobule VIIAt 6 11259 -UBERON:0002770 posterior hypothalamic region 5 11260 -UBERON:0002894 olfactory cortex 5 11261 -UBERON:0002895 secondary olfactory cortex 5 11262 -UBERON:0002911 parietal operculum 5 11263 -UBERON:0002922 olfactory trigone 5 11264 -UBERON:0002947 frontal operculum 5 11265 -UBERON:0002954 dorsal hypothalamic area 5 11266 -UBERON:0002995 substantia nigra pars lateralis 5 11267 -UBERON:0003027 cingulate cortex 5 11268 -UBERON:0003217 neural lobe of neurohypophysis 5 11269 -UBERON:0003307 floor plate of midbrain 5 11270 -UBERON:0003308 floor plate of telencephalon 5 11271 -UBERON:0003309 floor plate of diencephalon 5 11272 -UBERON:0003310 floor plate of metencephalon 5 11273 -UBERON:0003311 floor plate of medulla oblongata 5 11274 -UBERON:0003876 hippocampal field 5 11275 -UBERON:0003881 CA1 field of hippocampus 6 11276 -UBERON:0003882 CA2 field of hippocampus 6 11277 -UBERON:0003883 CA3 field of hippocampus 6 11278 -UBERON:0003884 CA4 field of hippocampus 6 11279 -UBERON:0004069 accessory olfactory bulb 5 11280 -UBERON:0004683 parasubiculum 5 11281 -UBERON:0004684 raphe nuclei 5 11282 -UBERON:0004703 dorsal thalamus 5 11283 -UBERON:0013683 left dorsal thalamus 6 11284 -UBERON:0013684 right dorsal thalamus 6 11285 -UBERON:0004725 piriform cortex 5 11286 -UBERON:0005159 pyramid of medulla oblongata 5 11287 -UBERON:0005408 circumventricular organ 5 11288 -UBERON:0010134 secretory circumventricular organ 6 11289 -UBERON:0001905 pineal body 7 11290 -UBERON:0002139 subcommissural organ 7 11291 -UBERON:0002197 median eminence of neurohypophysis 7 11292 -UBERON:0002198 neurohypophysis 7 11293 -UBERON:0010135 sensory circumventricular organ 6 11294 -UBERON:0002162 area postrema 7 11295 -UBERON:0002219 subfornical organ 7 11296 -UBERON:0002689 supraoptic crest 7 11297 -UBERON:0034943 saccus vasculosus 6 11298 -UBERON:0005807 rostral ventrolateral medulla 5 11299 -UBERON:0006083 perirhinal cortex 5 11300 -UBERON:0023936 perirhinal cortex of Burwell et al 1995 6 11301 -UBERON:0025581 perirhinal cortex of primate of Burwell et al 1995 7 11302 -UBERON:0025584 perirhinal cortex of rodent of Burwell et al 1995 7 11303 -UBERON:0006125 subdivision of diagonal band 5 11304 -UBERON:0006123 horizontal limb of the diagonal band 6 11305 -UBERON:0006124 vertical limb of the diagonal band 6 11306 -UBERON:0006446 rostral middle frontal gyrus 5 11307 -UBERON:0006487 Hadjikhani et al. (1998) visuotopic area V2d 5 11308 -UBERON:0007334 nidopallium 5 11309 -UBERON:0007347 hyperpallium 5 11310 -UBERON:0007349 mesopallium 5 11311 -UBERON:0007350 arcopallium 5 11312 -UBERON:0007412 midbrain raphe nuclei 5 11313 -UBERON:0007626 subparaventricular zone 5 11314 -UBERON:0007707 superior cerebellar peduncle of midbrain 5 11315 -UBERON:0007709 superior cerebellar peduncle of pons 5 11316 -UBERON:0007769 medial preoptic region 5 11317 -UBERON:0008881 rostral migratory stream 5 11318 -UBERON:0009834 dorsolateral prefrontal cortex 5 11319 -UBERON:0009835 anterior cingulate cortex 5 11320 -UBERON:0009840 lower rhombic lip 5 11321 -UBERON:0009841 upper rhombic lip 5 11322 -UBERON:0009899 pole of cerebral hemisphere 5 11323 -UBERON:0002576 temporal pole 6 11324 -UBERON:0002795 frontal pole 6 11325 -UBERON:0002902 occipital pole 6 11326 -UBERON:0009951 main olfactory bulb 5 11327 -UBERON:0010262 operculum of brain 5 11328 -UBERON:0011172 retrorubral area of midbrain reticular nucleus 5 11329 -UBERON:0011173 anterior division of bed nuclei of stria terminalis 5 11330 -UBERON:0011177 posterior division of bed nuclei of stria terminalis 5 11331 -UBERON:0011768 pineal gland stalk 5 11332 -UBERON:0012170 core of nucleus accumbens 5 11333 -UBERON:0012171 shell of nucleus accumbens 5 11334 -UBERON:0013529 Brodmann area 5 11335 -UBERON:0002436 primary visual cortex 6 11336 -UBERON:0004717 Brodmann (1909) area 29 6 11337 -UBERON:0004718 Brodmann (1909) area 26 6 11338 -UBERON:0006095 anterior transverse temporal area 41 6 11339 -UBERON:0006096 posterior transverse temporal area 42 6 11340 -UBERON:0006099 Brodmann (1909) area 1 6 11341 -UBERON:0006100 Brodmann (1909) area 3 6 11342 -UBERON:0006101 Brodmann (1909) area 24 6 11343 -UBERON:0006102 Brodmann (1909) area 35 6 11344 -UBERON:0006104 Brodmann (1909) area 36 6 11345 -UBERON:0006471 Brodmann (1909) area 5 6 11346 -UBERON:0006472 Brodmann (1909) area 6 6 11347 -UBERON:0006473 Brodmann (1909) area 18 6 11348 -UBERON:0006474 Brodmann (1909) area 30 6 11349 -UBERON:0006475 Brodmann (1909) area 31 6 11350 -UBERON:0006476 Brodmann (1909) area 33 6 11351 -UBERON:0006477 Brodmann (1909) area 34 6 11352 -UBERON:0006478 Brodmann (1909) area 37 6 11353 -UBERON:0006479 Brodmann (1909) area 38 6 11354 -UBERON:0006480 Brodmann (1909) area 39 6 11355 -UBERON:0006481 Brodmann (1909) area 44 6 11356 -UBERON:0006482 Brodmann (1909) area 45 6 11357 -UBERON:0006483 Brodmann (1909) area 46 6 11358 -UBERON:0006484 Brodmann (1909) area 47 6 11359 -UBERON:0006485 Brodmann (1909) area 48 6 11360 -UBERON:0006486 Brodmann (1909) area 52 6 11361 -UBERON:0013528 Brodmann (1909) area 11 6 11362 -UBERON:0013533 Brodmann (1909) area 2 6 11363 -UBERON:0013535 Brodmann (1909) area 4 6 11364 -UBERON:0013538 Brodmann (1909) area 7 6 11365 -UBERON:0013539 Brodmann (1909) area 8 6 11366 -UBERON:0013540 Brodmann (1909) area 9 6 11367 -UBERON:0013541 Brodmann (1909) area 10 6 11368 -UBERON:0013543 Brodmann (1909) area 12 6 11369 -UBERON:0013544 Brodmann (1909) area 13 6 11370 -UBERON:0013545 Brodmann (1909) area 14 6 11371 -UBERON:0013546 Brodmann (1909) area 15 6 11372 -UBERON:0013547 Brodmann (1909) area 16 6 11373 -UBERON:0013550 Brodmann (1909) area 19 6 11374 -UBERON:0013551 Brodmann (1909) area 20 6 11375 -UBERON:0013552 Brodmann (1909) area 21 6 11376 -UBERON:0013553 Brodmann (1909) area 22 6 11377 -UBERON:0013554 Brodmann (1909) area 23 6 11378 -UBERON:0013556 Brodmann (1909) area 25 6 11379 -UBERON:0013558 Brodmann (1909) area 27 6 11380 -UBERON:0013559 Brodmann (1909) area 28 6 11381 -UBERON:0013560 Brodmann (1909) area 32 6 11382 -UBERON:0013561 Brodmann (1909) area 43 6 11383 -UBERON:0013562 Brodmann (1909) area 8a 6 11384 -UBERON:0013573 Brodmann (1909) area 40 6 11385 -UBERON:0013531 retrosplenial region 5 11386 -UBERON:0013589 koniocortex 5 11387 -UBERON:0014286 dorsal cap of Kooy 5 11388 -UBERON:0014287 medial accessory olive 5 11389 -UBERON:0014537 periamygdaloid cortex 5 11390 -UBERON:0014568 dorsal tegmental nucleus pars dorsalis 5 11391 -UBERON:0014569 dorsal tegmental nucleus pars ventralis 5 11392 -UBERON:0014589 anterior nucleus of hypothalamus anterior part 5 11393 -UBERON:0014590 anterior nucleus of hypothalamus central part 5 11394 -UBERON:0014591 anterior nucleus of hypothalamus posterior part 5 11395 -UBERON:0014592 anterior nucleus of hypothalamus dorsal part 5 11396 -UBERON:0014593 tuberomammillary nucleus dorsal part 5 11397 -UBERON:0014594 tuberomammillary nucleus ventral part 5 11398 -UBERON:0014595 paraventricular nucleus of the hypothalamus descending division - medial parvicellular part, ventral zone 5 11399 -UBERON:0014596 paraventricular nucleus of the hypothalamus descending division - dorsal parvicellular part 5 11400 -UBERON:0014597 paraventricular nucleus of the hypothalamus descending division - lateral parvicellular part 5 11401 -UBERON:0014598 paraventricular nucleus of the hypothalamus descending division - forniceal part 5 11402 -UBERON:0014599 paraventricular nucleus of the hypothalamus magnocellular division - anterior magnocellular part 5 11403 -UBERON:0014600 paraventricular nucleus of the hypothalamus magnocellular division - medial magnocellular part 5 11404 -UBERON:0014601 paraventricular nucleus of the hypothalamus magnocellular division - posterior magnocellular part 5 11405 -UBERON:0014602 paraventricular nucleus of the hypothalamus descending division 5 11406 -UBERON:0014603 paraventricular nucleus of the hypothalamus magnocellular division 5 11407 -UBERON:0014604 paraventricular nucleus of the hypothalamus parvicellular division 5 11408 -UBERON:0014605 fundus striati 5 11409 -UBERON:0014642 vestibulocerebellum 5 11410 -UBERON:0014643 spinocerebellum 5 11411 -UBERON:0014733 dorsal ventricular ridge of pallium 5 11412 -UBERON:0014734 allocortex 5 11413 -UBERON:0002961 archicortex 6 11414 -UBERON:0014735 paleocortex 6 11415 -UBERON:0014736 periallocortex 5 11416 -UBERON:0014738 medial pallium 5 11417 -UBERON:0014740 dorsal pallium 5 11418 -UBERON:0014741 lateral pallium 5 11419 -UBERON:0014751 P1 area of pallium (Myxiniformes) 5 11420 -UBERON:0014752 P2 area of pallium (Myxiniformes) 5 11421 -UBERON:0014753 P3 area of pallium (Myxiniformes) 5 11422 -UBERON:0014754 P4 area of pallium (Myxiniformes) 5 11423 -UBERON:0014755 P5 area of pallium (Myxiniformes) 5 11424 -UBERON:0014757 hyperpallium apicale 5 11425 -UBERON:0014758 interstitial part of hyperpallium apicale 5 11426 -UBERON:0014759 entopallium 5 11427 -UBERON:0014908 cerebellopontine angle 5 11428 -UBERON:0014912 thalamic eminence 5 11429 -UBERON:0014913 ventral pallium 5 11430 -UBERON:0014918 retrosplenial granular cortex 5 11431 -UBERON:0014951 proisocortex 5 11432 -UBERON:0015599 genu of corpus callosum 5 11433 -UBERON:0016634 premotor cortex 5 11434 -UBERON:0016636 supplemental motor cortex 5 11435 -UBERON:0018141 anterior perforated substance 5 11436 -UBERON:0018263 ventral zone of medial entorhinal cortex 5 11437 -UBERON:0019275 uncinate fasciculus of the forebrain 5 11438 -UBERON:0019278 inferior rostral gyrus 5 11439 -UBERON:0019279 superior rostral gyrus 5 11440 -UBERON:0022230 retrohippocampal region 5 11441 -UBERON:0022268 planum temporale 5 11442 -UBERON:0022352 medial orbital frontal cortex 5 11443 -UBERON:0022353 posterior cingulate cortex 5 11444 -UBERON:0022364 occipital fusiform gyrus 5 11445 -UBERON:0022367 inferior lateral occipital cortex 5 11446 -UBERON:0022368 superior lateral occipital cortex 5 11447 -UBERON:0022383 anterior parahippocampal gyrus 5 11448 -UBERON:0022395 temporal fusiform gyrus 5 11449 -UBERON:0022396 anterior temporal fusiform gyrus 5 11450 -UBERON:0022397 posterior temporal fusiform gyrus 5 11451 -UBERON:0022398 paracingulate gyrus 5 11452 -UBERON:0022425 anterior corona radiata 5 11453 -UBERON:0022426 superior corona radiata 5 11454 -UBERON:0022427 posterior corona radiata 5 11455 -UBERON:0022438 rostral anterior cingulate cortex 5 11456 -UBERON:0022453 olfactory entorhinal cortex 5 11457 -UBERON:0022469 primary olfactory cortex 5 11458 -UBERON:0022534 pericalcarine cortex 5 11459 -UBERON:0022695 orbital gyri complex 5 11460 -UBERON:0022716 lateral orbital frontal cortex 5 11461 -UBERON:0022730 transverse frontopolar gyri complex 5 11462 -UBERON:0022783 paraventricular nucleus of the hypothalamus magnocellular division - posterior magnocellular part medial zone 5 11463 -UBERON:0022791 paraventricular nucleus of the hypothalamus magnocellular division - posterior magnocellular part lateral zone 5 11464 -UBERON:0023415 lateral amygdaloid nucleus, dorsolateral part 5 11465 -UBERON:0023416 lateral amygdaloid nucleus, ventrolateral part 5 11466 -UBERON:0023417 lateral amygdaloid nucleus, ventromedial part 5 11467 -UBERON:0023443 superficial feature part of forebrain 5 11468 -UBERON:0023462 superficial feature part of occipital lobe 5 11469 -UBERON:0023564 cytoarchitectural part of dentate gyrus 5 11470 -UBERON:0023752 intermediate part of hypophysis 5 11471 -UBERON:0023787 subicular complex 5 11472 -UBERON:0023836 gross anatomical parts of the cerebellum 5 11473 -UBERON:0023852 temporoparietal junction 5 11474 -UBERON:0023861 planum polare 5 11475 -UBERON:0023862 hippocampal formation of GP94 5 11476 -UBERON:0023865 medial ventral tegmental area 5 11477 -UBERON:0023867 islands of Calleja of olfactory tubercle 5 11478 -UBERON:0023868 isla magna of Calleja 5 11479 -UBERON:0023928 postrhinal cortex of rodent of Burwell et al 1995 5 11480 -UBERON:0023932 Sommer's sector 5 11481 -UBERON:0023958 bed nuclei of the stria terminalis oval nucleus 5 11482 -UBERON:0024043 rostral portion of the medial accessory olive 5 11483 -UBERON:0024046 superficial feature part of the cerebellum 5 11484 -UBERON:0024078 principal anterior division of supraoptic nucleus 5 11485 -UBERON:0024090 chemoarchitectural part of brain 5 11486 -UBERON:0025736 chemoarchitectural part of striatum 6 11487 -UBERON:0027368 matrix compartment 7 11488 -UBERON:0029001 matrix compartment of caudate nucleus 8 11489 -UBERON:0027245 matrix part of head of caudate nucleus 9 11490 -UBERON:0027246 matrix part of tail of caudate nucleus 9 11491 -UBERON:0029002 matrix compartment of putamen 8 11492 -UBERON:0027371 striosome 7 11493 -UBERON:0029004 striosomal part of caudate nucleus 8 11494 -UBERON:0027244 striosomal part of body of caudate nucleus 9 11495 -UBERON:0029005 striosomal part of putamen 8 11496 -UBERON:0024110 basis pontis 5 11497 -UBERON:0024183 inferior transverse frontopolar gyrus 5 11498 -UBERON:0024193 medial transverse frontopolar gyrus 5 11499 -UBERON:0024201 superior transverse frontopolar gyrus 5 11500 -UBERON:0026765 Hadjikhani et al. (1998) visuotopic partition scheme region 5 11501 -UBERON:0028398 Hadjikhani et al. (1998) visuotopic area V1d 6 11502 -UBERON:0028399 Hadjikhani et al. (1998) visuotopic area V1v 6 11503 -UBERON:0028401 Hadjikhani et al. (1998) visuotopic area V2v 6 11504 -UBERON:0028402 Hadjikhani et al. (1998) visuotopic area V3 6 11505 -UBERON:0028403 Hadjikhani et al. (1998) visuotopic area V3A 6 11506 -UBERON:0028404 Hadjikhani et al. (1998) visuotopic area VP 6 11507 -UBERON:0028405 Hadjikhani et al. (1998) visuotopic area V4v 6 11508 -UBERON:0028406 Hadjikhani et al. (1998) visuotopic area V8 6 11509 -UBERON:0026775 Tootell and Hadjikhani (2001) LOC/LOP complex 5 11510 -UBERON:0026776 Press, Brewer, Dougherty, Wade and Wandell (2001) visuotopic area V7 5 11511 -UBERON:0026777 Ongur, Price, and Ferry (2003) prefrontal cortical partition scheme region 5 11512 -UBERON:0028412 Ongur, Price, and Ferry (2003) area 10p 6 11513 -UBERON:0028413 Ongur, Price, and Ferry (2003) area 10r 6 11514 -UBERON:0028414 Ongur, Price, and Ferry (2003) area 10o 6 11515 -UBERON:0028415 Ongur, Price, and Ferry (2003) area 10m 6 11516 -UBERON:0028416 Ongur, Price, and Ferry (2003) area 11m 6 11517 -UBERON:0028417 Ongur, Price, and Ferry (2003) area 47s 6 11518 -UBERON:0028418 Ongur, Price, and Ferry (2003) area 13b 6 11519 -UBERON:0028419 Ongur, Price, and Ferry (2003) area 13a 6 11520 -UBERON:0028420 Ongur, Price, and Ferry (2003) area 14r 6 11521 -UBERON:0028421 Ongur, Price, and Ferry (2003) area 14c 6 11522 -UBERON:0028422 Ongur, Price, and Ferry (2003) area 24 6 11523 -UBERON:0028423 Ongur, Price, and Ferry (2003) area 25 6 11524 -UBERON:0028424 Ongur, Price, and Ferry (2003) area 32 6 11525 -UBERON:0028425 Ongur, Price, and Ferry (2003) area G 6 11526 -UBERON:0028426 Ongur, Price, and Ferry (2003) area PrCO 6 11527 -UBERON:0028427 Ongur, Price, and Ferry (2003) area 11l 6 11528 -UBERON:0028428 Ongur, Price, and Ferry (2003) area 13m 6 11529 -UBERON:0028429 Ongur, Price, and Ferry (2003) area 13l 6 11530 -UBERON:0028430 Ongur, Price, and Ferry (2003) area 47l 6 11531 -UBERON:0028431 Ongur, Price, and Ferry (2003) area 47m 6 11532 -UBERON:0028432 Ongur, Price, and Ferry (2003) area 47r 6 11533 -UBERON:0028433 Ongur, Price, and Ferry (2003) area Iam 6 11534 -UBERON:0028434 Ongur, Price, and Ferry (2003) area Ial 6 11535 -UBERON:0028435 Ongur, Price, and Ferry (2003) area Iai 6 11536 -UBERON:0028436 Ongur, Price, and Ferry (2003) area 9 6 11537 -UBERON:0028437 Ongur, Price, and Ferry (2003) area 10l 6 11538 -UBERON:0028439 Ongur, Price, and Ferry (2003) area Iapm 6 11539 -UBERON:0028440 Ongur, Price, and Ferry (2003) area AON 6 11540 -UBERON:0027061 isthmus of cingulate cortex 5 11541 -UBERON:0027768 suprachiasmatic nucleus dorsomedial part 5 11542 -UBERON:0027771 suprachiasmatic nucleus ventrolateral part 5 11543 -UBERON:0028715 caudal anterior cingulate cortex 5 11544 -UBERON:0030649 cytoarchitecture of entorhinal cortex 5 11545 -UBERON:0034749 retrolenticular part of internal capsule 5 11546 -UBERON:0034751 primary auditory cortex 5 11547 -UBERON:0034752 secondary auditory cortex 5 11548 -UBERON:0034773 uncus of parahippocampal gyrus 5 11549 -UBERON:0034774 uncal CA1 5 11550 -UBERON:0034775 uncal CA2 5 11551 -UBERON:0034776 uncal CA3 5 11552 -UBERON:0034777 rostral CA1 5 11553 -UBERON:0034778 rostral CA2 5 11554 -UBERON:0034779 rostral CA3 5 11555 -UBERON:0034780 caudal CA1 5 11556 -UBERON:0034781 caudal CA2 5 11557 -UBERON:0034782 caudal CA3 5 11558 -UBERON:0034889 posterior parietal cortex 5 11559 -UBERON:0034892 granular insular cortex 5 11560 -UBERON:0034893 agranular insular cortex 5 11561 -UBERON:0034989 amygdalopiriform transition area 5 11562 -UBERON:0035014 functional part of brain 5 11563 -UBERON:0000411 visual cortex 6 11564 -UBERON:0002436 primary visual cortex 6 11565 -UBERON:0008930 somatosensory cortex 6 11566 -UBERON:0008933 primary somatosensory cortex 7 11567 -UBERON:0008934 secondary somatosensory cortex 7 11568 -UBERON:0010415 barrel cortex 6 11569 -UBERON:0022232 secondary visual cortex 6 11570 -UBERON:0035015 association cortex 6 11571 -UBERON:0034750 visual association cortex 7 11572 -UBERON:0035013 temporal cortex association area 7 11573 -UBERON:0035026 amygdalohippocampal transition area 5 11574 -UBERON:0035027 amygdalohippocampal area, magnocellular division 5 11575 -UBERON:0035028 amygdalohippocampal area, parvocellular division 5 11576 -UBERON:0035803 extrapyramidal tract system 5 11577 -UBERON:0035885 dorsal auditory area 5 11578 -UBERON:0035886 posterior parietal association areas 5 11579 -UBERON:0035890 postrhinal area 5 11580 -UBERON:0035892 primary visual area, layer 6a 5 11581 -UBERON:0035893 anteromedial visual area 5 11582 -UBERON:0035894 anterolateral visual area 5 11583 -UBERON:0035895 lateral visual area 5 11584 -UBERON:0035897 posterolateral visual area 5 11585 -UBERON:0035900 posteromedial visual area 5 11586 -UBERON:0035904 primary visual area, layer 4 5 11587 -UBERON:0035906 primary visual area, layer 5 5 11588 -UBERON:0035907 primary visual area, layer 2/3 5 11589 -UBERON:0035908 anterolateral visual area, layer 5 5 11590 -UBERON:0035909 posteromedial visual area, layer 6a 5 11591 -UBERON:0035911 postrhinal area, layer 4 5 11592 -UBERON:0035912 rostrolateral visual area 5 11593 -UBERON:0035913 anteromedial visual area, layer 5 5 11594 -UBERON:0035914 posteromedial visual area, layer 4 5 11595 -UBERON:0035915 lateral visual area, layer 4 5 11596 -UBERON:0035916 lateral visual area, layer 5 5 11597 -UBERON:0035917 dorsal auditory area, layer 4 5 11598 -UBERON:0035918 lateral visual area, layer 6a 5 11599 -UBERON:0035919 posterolateral visual area, layer 4 5 11600 -UBERON:0035920 rostrolateral area, layer 5 5 11601 -UBERON:0035928 dorsolateral part of supraoptic nucleus 5 11602 -UBERON:0035932 anterior segment of paracentral lobule 5 11603 -UBERON:0035934 posterior segment of paracentral lobule 5 11604 -UBERON:0035970 calcar avis of the lateral ventricle 5 11605 -UBERON:0035971 postsubiculum 5 11606 -UBERON:0035972 interanterodorsal nucleus of the thalamus 5 11607 -UBERON:0035975 intergeniculate leaflet of the lateral geniculate complex 5 11608 -UBERON:0035999 dopaminergic cell groups 5 11609 -UBERON:0036000 A8 dopaminergic cell group 6 11610 -UBERON:0036001 A14 dopaminergic cell group 6 11611 -UBERON:0036002 A15 dopaminergic cell group 6 11612 -UBERON:0036003 A9 dopaminergic cell group 6 11613 -UBERON:0036004 A17 dopaminergic cell group 6 11614 -UBERON:0036005 A10 dopaminergic cell group 6 11615 -UBERON:0036006 A11 dopaminergic cell group 6 11616 -UBERON:0036007 A13 dopaminergic cell group 6 11617 -UBERON:0036008 A16 dopaminergic cell group 6 11618 -UBERON:0036009 A12 dopaminergic cell group 6 11619 -UBERON:0036010 Aaq dopaminergic cell group 6 11620 -UBERON:0036011 telencephalic dopaminergic cell group 6 11621 -UBERON:0036012 nucleus of the brachium of the inferior colliculus 5 11622 -UBERON:0036164 ambient gyrus 5 11623 -UBERON:0036218 secondary prosencephalon 5 11624 -UBERON:2000165 inferior lobe 5 11625 -UBERON:2000183 central pretectum 5 11626 -UBERON:2000187 lateral granular eminence 5 11627 -UBERON:2000188 corpus cerebelli 5 11628 -UBERON:2000199 dorsal periventricular hypothalamus 5 11629 -UBERON:2000212 granular eminence 5 11630 -UBERON:2000280 medial division 5 11631 -UBERON:2000293 synencephalon 5 11632 -UBERON:2000307 vestibulolateralis lobe 5 11633 -UBERON:2000347 dorsal zone of median tuberal portion of hypothalamus 5 11634 -UBERON:2000388 medial caudal lobe 5 11635 -UBERON:2000392 median tuberal portion 5 11636 -UBERON:2000449 torus longitudinalis 5 11637 -UBERON:2000516 periventricular grey zone 5 11638 -UBERON:2000517 glossopharyngeal lobe 5 11639 -UBERON:2000532 lateral division 5 11640 -UBERON:2000599 torus semicircularis 5 11641 -UBERON:2000603 valvula cerebelli 5 11642 -UBERON:2000633 caudal tuberculum 5 11643 -UBERON:2000634 caudal zone of median tuberal portion of hypothalamus 5 11644 -UBERON:2000687 superficial pretectum 5 11645 -UBERON:2000707 ventral zone 5 11646 -UBERON:2002106 eminentia granularis 5 11647 -UBERON:2002107 medullary command nucleus 5 11648 -UBERON:0002629 triangular part of inferior frontal gyrus 4 11649 -UBERON:0002728 entorhinal cortex 4 11650 -UBERON:0002738 isthmus of cingulate gyrus 4 11651 -UBERON:0002819 apex of cochlea 4 11652 -UBERON:0002822 macula lutea proper 4 11653 -UBERON:0002980 opercular part of inferior frontal gyrus 4 11654 -UBERON:0003023 pontine tegmentum 4 11655 -UBERON:0003052 midbrain-hindbrain boundary 4 11656 -UBERON:0003054 roof plate 4 11657 -UBERON:0005502 rhombomere roof plate 5 11658 -UBERON:0005568 rhombomere 1 roof plate 6 11659 -UBERON:0005572 rhombomere 2 roof plate 6 11660 -UBERON:0005575 rhombomere 3 roof plate 6 11661 -UBERON:0005578 rhombomere 4 roof plate 6 11662 -UBERON:0005581 rhombomere 5 roof plate 6 11663 -UBERON:0005584 rhombomere 6 roof plate 6 11664 -UBERON:0005587 rhombomere 7 roof plate 6 11665 -UBERON:0005590 rhombomere 8 roof plate 6 11666 -UBERON:0003056 pre-chordal neural plate 4 11667 -UBERON:0003065 ciliary marginal zone 4 11668 -UBERON:0003072 optic cup 4 11669 -UBERON:0003079 floor plate 4 11670 -UBERON:0005500 rhombomere floor plate 5 11671 -UBERON:0005566 rhombomere 1 floor plate 6 11672 -UBERON:0005570 rhombomere 2 floor plate 6 11673 -UBERON:0005573 rhombomere 3 floor plate 6 11674 -UBERON:0005576 rhombomere 4 floor plate 6 11675 -UBERON:0005579 rhombomere 5 floor plate 6 11676 -UBERON:0005582 rhombomere 6 floor plate 6 11677 -UBERON:0005585 rhombomere 7 floor plate 6 11678 -UBERON:0005588 rhombomere 8 floor plate 6 11679 -UBERON:2000887 floor plate neural rod 5 11680 -UBERON:0003083 trunk neural crest 4 11681 -UBERON:0003099 cranial neural crest 4 11682 -UBERON:0003849 mesencephalic neural crest 5 11683 -UBERON:0003852 rhombencephalon neural crest 5 11684 -UBERON:0005491 glossopharyngeal neural crest 5 11685 -UBERON:0005563 trigeminal neural crest 5 11686 -UBERON:0005565 facio-acoustic neural crest 5 11687 -UBERON:0007098 mandibular neural crest 5 11688 -UBERON:0007099 hyoid neural crest 5 11689 -UBERON:0007681 facial neural crest 5 11690 -UBERON:0003210 blood-cerebrospinal fluid barrier 4 11691 -UBERON:0003214 mammary gland alveolus 4 11692 -UBERON:0003269 skeletal muscle tissue of eye 4 11693 -UBERON:0004505 skeletal muscle tissue of orbicularis oculi 5 11694 -UBERON:0004508 skeletal muscle tissue of levator palpebrae superioris 5 11695 -UBERON:0003296 gland of diencephalon 4 11696 -UBERON:0000007 pituitary gland 5 11697 -UBERON:0001905 pineal body 5 11698 -UBERON:0002197 median eminence of neurohypophysis 5 11699 -UBERON:0002198 neurohypophysis 5 11700 -UBERON:0003299 roof plate of midbrain 4 11701 -UBERON:0003300 roof plate of telencephalon 4 11702 -UBERON:0003301 roof plate of diencephalon 4 11703 -UBERON:0003302 roof plate of metencephalon 4 11704 -UBERON:0003303 roof plate of medulla oblongata 4 11705 -UBERON:0003306 floor plate of neural tube 4 11706 -UBERON:0003307 floor plate of midbrain 5 11707 -UBERON:0003308 floor plate of telencephalon 5 11708 -UBERON:0003309 floor plate of diencephalon 5 11709 -UBERON:0003310 floor plate of metencephalon 5 11710 -UBERON:0003311 floor plate of medulla oblongata 5 11711 -UBERON:0005723 floor plate spinal cord region 5 11712 -UBERON:0003326 mesenchyme of mammary gland 4 11713 -UBERON:0003329 submucosa of anal canal 4 11714 -UBERON:0003339 ganglion of central nervous system 4 11715 -UBERON:6001920 insect embryonic/larval brain 5 11716 -UBERON:6003626 supraesophageal ganglion 5 11717 -UBERON:6110636 adult cerebral ganglion 6 11718 -UBERON:0003342 mucosa of anal canal 4 11719 -UBERON:0003386 smooth muscle of eye 4 11720 -UBERON:0001605 ciliary muscle 5 11721 -UBERON:0004234 iris smooth muscle 5 11722 -UBERON:0001607 sphincter pupillae 6 11723 -UBERON:0001608 dilatator pupillae 6 11724 -UBERON:0010379 superior tarsal muscle 5 11725 -UBERON:0015751 inferior tarsal muscle 5 11726 -UBERON:0003499 brain blood vessel 4 11727 -UBERON:0001663 cerebral vein 5 11728 -UBERON:0001664 inferior cerebral vein 6 11729 -UBERON:0001672 anterior cerebral vein 6 11730 -UBERON:0006666 great cerebral vein 6 11731 -UBERON:0016559 superficial cerebral vein 6 11732 -UBERON:0035150 superior cerebral vein 7 11733 -UBERON:0016564 deep cerebral vein 6 11734 -UBERON:0035530 basal vein 7 11735 -UBERON:0035151 dorsal cerebral vein 6 11736 -UBERON:0035152 internal cerebral vein 6 11737 -UBERON:0035231 superficial middle cerebral vein 6 11738 -UBERON:0035532 deep middle cerebral vein 6 11739 -UBERON:0002270 hyaloid artery 5 11740 -UBERON:0016565 cerebral blood vessel 5 11741 -UBERON:2005020 central artery 5 11742 -UBERON:2005021 cerebellar central artery 6 11743 -UBERON:2005052 anterior mesencephalic central artery 6 11744 -UBERON:2005078 middle mesencephalic central artery 6 11745 -UBERON:2005079 posterior mesencephalic central artery 6 11746 -UBERON:2005031 dorsal longitudinal vein 5 11747 -UBERON:2005248 trans-choroid plexus branch 5 11748 -UBERON:0003510 eyelid blood vessel 4 11749 -UBERON:0003584 mammary gland connective tissue 4 11750 -UBERON:0004180 mammary gland fat 5 11751 -UBERON:0012282 mammary fat pad 6 11752 -UBERON:0003675 tooth crown 4 11753 -UBERON:0003955 molar crown 5 11754 -UBERON:0003677 tooth root 4 11755 -UBERON:0008854 root of molar tooth 5 11756 -UBERON:0003938 sensory dissociation area 4 11757 -UBERON:0003947 brain ventricle/choroid plexus 4 11758 -UBERON:0001886 choroid plexus 5 11759 -UBERON:0002288 choroid plexus of third ventricle 6 11760 -UBERON:0002290 choroid plexus of fourth ventricle 6 11761 -UBERON:0002307 choroid plexus of lateral ventricle 6 11762 -UBERON:0007299 choroid plexus of tectal ventricle 6 11763 -UBERON:0004086 brain ventricle 5 11764 -UBERON:0002285 telencephalic ventricle 6 11765 -UBERON:0002651 anterior horn of lateral ventricle 7 11766 -UBERON:0002655 body of lateral ventricle 7 11767 -UBERON:0004672 posterior horn lateral ventricle 7 11768 -UBERON:0013161 left lateral ventricle 7 11769 -UBERON:0013162 right lateral ventricle 7 11770 -UBERON:0002286 third ventricle 6 11771 -UBERON:0002289 midbrain cerebral aqueduct 6 11772 -UBERON:0002422 fourth ventricle 6 11773 -UBERON:0003951 ocular fundus 4 11774 -UBERON:0003956 aqueous drainage system 4 11775 -UBERON:0003967 cutaneous elastic tissue 4 11776 -UBERON:0003976 saccule duct 4 11777 -UBERON:0003977 utricle duct 4 11778 -UBERON:0003979 utricle valve 4 11779 -UBERON:0003993 interventricular foramen of CNS 4 11780 -UBERON:0004017 periocular mesenchyme 4 11781 -UBERON:0004029 canal of Schlemm 4 11782 -UBERON:0004030 aqueous vein 4 11783 -UBERON:0004034 cutaneous microfibril 4 11784 -UBERON:0004043 semicircular canal ampulla 4 11785 -UBERON:0004064 neural tube basal plate 4 11786 -UBERON:0005239 basal plate metencephalon 5 11787 -UBERON:0005240 basal plate medulla oblongata 5 11788 -UBERON:0009579 myelencephalon basal plate 5 11789 -UBERON:0004101 nasolabial region 4 11790 -UBERON:0004128 optic vesicle 4 11791 -UBERON:0004163 anterior ectodermal midgut 4 11792 -UBERON:0004187 Harderian gland 4 11793 -UBERON:0004235 mammary gland smooth muscle 4 11794 -UBERON:0004277 eye muscle 4 11795 -UBERON:0001578 orbicularis oculi muscle 5 11796 -UBERON:0001601 extra-ocular muscle 5 11797 -UBERON:0001604 levator palpebrae superioris 6 11798 -UBERON:0006531 oculomotor muscle 6 11799 -UBERON:0006532 oblique extraocular muscle 7 11800 -UBERON:0006320 inferior oblique extraocular muscle 8 11801 -UBERON:0006321 superior oblique extraocular muscle 8 11802 -UBERON:0006533 rectus extraocular muscle 7 11803 -UBERON:0001602 medial rectus extraocular muscle 8 11804 -UBERON:0001603 lateral rectus extra-ocular muscle 8 11805 -UBERON:0006322 inferior rectus extraocular muscle 8 11806 -UBERON:0006323 superior rectus extraocular muscle 8 11807 -UBERON:0010271 musculus retractor bulbi 6 11808 -UBERON:3010125 musculus levator bulbi 6 11809 -UBERON:0006318 orbitalis muscle 5 11810 -UBERON:0011222 intra-ocular muscle 5 11811 -UBERON:0001605 ciliary muscle 6 11812 -UBERON:0001606 muscle of iris 6 11813 -UBERON:0001607 sphincter pupillae 7 11814 -UBERON:0004637 otic capsule 4 11815 -UBERON:0005410 cartilaginous otic capsule 5 11816 -UBERON:0005411 bony otic capsule 5 11817 -UBERON:0010349 otic capsule pre-cartilage condensation 5 11818 -UBERON:0004668 fourth ventricle aperture 4 11819 -UBERON:0003991 fourth ventricle median aperture 5 11820 -UBERON:0003992 fourth ventricle lateral aperture 5 11821 -UBERON:0004689 naso-frontal vein 4 11822 -UBERON:0004714 septum pellucidum 4 11823 -UBERON:0004721 crista ampullaris 4 11824 -UBERON:0004731 neuromere 4 11825 -UBERON:0001892 rhombomere 5 11826 -UBERON:0005499 rhombomere 1 6 11827 -UBERON:0005507 rhombomere 3 6 11828 -UBERON:0005511 rhombomere 4 6 11829 -UBERON:0005515 rhombomere 5 6 11830 -UBERON:0005519 rhombomere 6 6 11831 -UBERON:0005523 rhombomere 7 6 11832 -UBERON:0005527 rhombomere 8 6 11833 -UBERON:0005569 rhombomere 2 6 11834 -UBERON:0019284 rhombomere 9 6 11835 -UBERON:0019285 rhombomere 10 6 11836 -UBERON:0019286 rhombomere 11 6 11837 -UBERON:0014775 prosomere 5 11838 -UBERON:0014776 midbrain neuromere 5 11839 -UBERON:0019272 mesomere 1 6 11840 -UBERON:0019274 mesomere 2 6 11841 -UBERON:0014777 spinal neuromere 5 11842 -UBERON:0004733 segmental subdivision of hindbrain 4 11843 -UBERON:0001895 metencephalon 5 11844 -UBERON:0005290 myelencephalon 5 11845 -UBERON:0004746 prootic bone 4 11846 -UBERON:0004756 dermal skeletal element 4 11847 -UBERON:0007380 dermal scale 5 11848 -UBERON:0000041 odontode scale 6 11849 -UBERON:0018310 cephalic dermal scale 6 11850 -UBERON:2001824 lateral line scale 6 11851 -UBERON:4300238 pored lateral line scale 7 11852 -UBERON:4300242 lateral line scale 6 7 11853 -UBERON:2002122 pouch scale 6 11854 -UBERON:2002273 ctenoid scale 6 11855 -UBERON:2002274 transforming ctenoid scale 7 11856 -UBERON:2002285 cycloid scale 6 11857 -UBERON:4300235 spinoid scale 7 11858 -UBERON:4000052 ganoid scale 6 11859 -UBERON:4000051 lepidosteoid scale 7 11860 -UBERON:4000055 polypteroid scale 7 11861 -UBERON:4000074 palaeoniscoid scale 7 11862 -UBERON:4000070 elasmoid scale 6 11863 -UBERON:4000080 keratin-based scale 6 11864 -UBERON:4000081 cosmoid scale 6 11865 -UBERON:4300102 postcleithral scale 6 11866 -UBERON:4300188 terminal scale 6 11867 -UBERON:4300222 axilar scale 6 11868 -UBERON:4500003 predorsal scale 6 11869 -UBERON:0008907 dermal bone 5 11870 -UBERON:0000209 tetrapod frontal bone 6 11871 -UBERON:0001680 lacrimal bone 6 11872 -UBERON:0001681 nasal bone 6 11873 -UBERON:0001683 jugal bone 6 11874 -UBERON:0001695 squamous part of temporal bone 6 11875 -UBERON:0002229 interparietal bone 6 11876 -UBERON:0002244 premaxilla 6 11877 -UBERON:0002397 maxilla 6 11878 -UBERON:0004741 cleithrum 6 11879 -UBERON:0004742 dentary 6 11880 -UBERON:0001684 mandible 7 11881 -UBERON:0004744 articular/anguloarticular 6 11882 -UBERON:0004865 actinopterygian parietal bone 6 11883 -UBERON:0004866 actinopterygian frontal bone 6 11884 -UBERON:0007841 furcula 6 11885 -UBERON:0010750 prefrontal bone 6 11886 -UBERON:0010898 gastralium 6 11887 -UBERON:0011079 angular bone 6 11888 -UBERON:0011167 septomaxilla bone 6 11889 -UBERON:0011168 postfrontal bone 6 11890 -UBERON:0011169 postorbital bone 6 11891 -UBERON:0011267 quadratojugal bone 6 11892 -UBERON:0011598 coronoid bone 6 11893 -UBERON:4200234 precoronoid bone 7 11894 -UBERON:4200235 postcoronoid bone 7 11895 -UBERON:4200236 anterior coronoid bone 7 11896 -UBERON:4200237 posterior coronoid bone 7 11897 -UBERON:0011628 early premaxilla 6 11898 -UBERON:0011629 supratemporal bone 6 11899 -UBERON:0011630 intertemporal bone 6 11900 -UBERON:0011631 tabular bone 6 11901 -UBERON:0011635 splenial bone 6 11902 -UBERON:0011636 surangular bone 6 11903 -UBERON:4200243 surangular pit line 7 11904 -UBERON:0011637 prearticular bone 6 11905 -UBERON:0011639 frontoparietal bone 6 11906 -UBERON:0011655 interclavicle 6 11907 -UBERON:4100006 parasternal process 7 11908 -UBERON:0011657 dermal element of plastron 6 11909 -UBERON:0011658 epiplastron 7 11910 -UBERON:0011659 entoplastron 7 11911 -UBERON:0011660 hypoplastron 7 11912 -UBERON:0011661 xiphiplastron 7 11913 -UBERON:0014707 hyoplastron 7 11914 -UBERON:0012071 palate bone 6 11915 -UBERON:0001682 palatine bone 7 11916 -UBERON:0002396 vomer 7 11917 -UBERON:0004745 parasphenoid 7 11918 -UBERON:0010389 pterygoid bone 7 11919 -UBERON:0011634 ectopterygoid bone 7 11920 -UBERON:0013113 angular/surangular bone 6 11921 -UBERON:2000103 supramaxilla 6 11922 -UBERON:2000104 suprapreopercle 6 11923 -UBERON:2000127 antorbital 6 11924 -UBERON:2000250 opercle 6 11925 -UBERON:2000264 preopercle 6 11926 -UBERON:2000284 subopercle 6 11927 -UBERON:2000289 preopercle horizontal limb 6 11928 -UBERON:2000336 preopercle vertical limb 6 11929 -UBERON:2000356 gill raker 6 11930 -UBERON:2000376 infraorbital 6 11931 -UBERON:2000223 infraorbital 1 7 11932 -UBERON:2000495 infraorbital 5 7 11933 -UBERON:2001407 infraorbital 2 7 11934 -UBERON:2001408 infraorbital 3 7 11935 -UBERON:2001409 infraorbital 4 7 11936 -UBERON:2001674 infraorbital 6 7 11937 -UBERON:2001702 infraorbital 7 7 11938 -UBERON:2001703 infraorbital 8 7 11939 -UBERON:2001704 infraorbital 9 7 11940 -UBERON:2001705 infraorbital 10 7 11941 -UBERON:2001706 infraorbital 11 7 11942 -UBERON:2001707 infraorbital 12 7 11943 -UBERON:2001708 dermosphenotic 7 11944 -UBERON:2000410 postcleithrum 6 11945 -UBERON:2001852 postcleithrum 1 7 11946 -UBERON:2001853 postcleithrum 2 7 11947 -UBERON:2001854 postcleithrum 3 7 11948 -UBERON:2000452 urohyal 6 11949 -UBERON:2000476 branchiostegal ray 6 11950 -UBERON:2001279 branchiostegal ray 1 7 11951 -UBERON:2001280 branchiostegal ray 3 7 11952 -UBERON:2001281 branchiostegal ray 2 7 11953 -UBERON:2000549 posttemporal 6 11954 -UBERON:2000576 pterotic 6 11955 -UBERON:2000594 supracleithrum 6 11956 -UBERON:2000657 entopterygoid 6 11957 -UBERON:2000663 extrascapula 6 11958 -UBERON:4200099 lateral extrascapular 7 11959 -UBERON:4200103 median extrascapular 7 11960 -UBERON:2000674 interopercle 6 11961 -UBERON:2000691 supraorbital bone 6 11962 -UBERON:4200244 anterior supraorbital bone 7 11963 -UBERON:2001274 coronomeckelian 6 11964 -UBERON:2001403 supraethmoid 6 11965 -UBERON:2001406 kinethmoid bone 6 11966 -UBERON:2001647 pharyngeal tooth plate 6 11967 -UBERON:0018283 lower pharyngobranchial toothplate 7 11968 -UBERON:2001648 basihyal tooth plate 7 11969 -UBERON:2001654 upper pharyngeal 4 tooth plate 7 11970 -UBERON:2001656 upper pharyngeal 5 tooth plate 7 11971 -UBERON:2001658 upper pharyngeal tooth plate 7 11972 -UBERON:2001661 basibranchial tooth plate 7 11973 -UBERON:2001662 basibranchial 4 tooth plate 7 11974 -UBERON:2001664 basibranchial 2 tooth plate 7 11975 -UBERON:2002015 pharyngobranchial tooth plate 7 11976 -UBERON:2001650 pharyngobranchial 2 tooth plate 8 11977 -UBERON:2001652 pharyngobranchial 3 tooth plate 8 11978 -UBERON:2001859 pharyngobranchial 1 tooth plate 8 11979 -UBERON:2002016 pharyngobranchial 4 tooth plate 8 11980 -UBERON:2001692 median premaxilla 6 11981 -UBERON:2001700 caudal-fin stay 6 11982 -UBERON:2001788 pelvic splint 6 11983 -UBERON:2001815 nuchal plate 6 11984 -UBERON:2001816 anterior nuchal plate 7 11985 -UBERON:2001817 middle nuchal plate 7 11986 -UBERON:2001820 posterior nuchal plate 7 11987 -UBERON:2001930 accessory vomerine tooth plate 6 11988 -UBERON:2001932 sensory canal tubular ossicle 6 11989 -UBERON:2001934 rostral plate 6 11990 -UBERON:2001997 parietal-supraoccipital 6 11991 -UBERON:2001998 posttemporal-supracleithrum 6 11992 -UBERON:2002005 canal plate 6 11993 -UBERON:2002019 pterotic-posttemporal-supracleithrum 6 11994 -UBERON:2002020 hypomaxilla 6 11995 -UBERON:2002022 dermethmoid 6 11996 -UBERON:2002053 bony plate 6 11997 -UBERON:4300211 lateral plate 7 11998 -UBERON:2002086 pelvic axillary process 6 11999 -UBERON:2002087 pectoral axillary process 6 12000 -UBERON:2002089 gular plate 6 12001 -UBERON:2002291 fulcrum 6 12002 -UBERON:2002082 basal fulcrum 7 12003 -UBERON:2002159 caudal basal fulcrum 8 12004 -UBERON:2002292 epaxial basal fulcrum 8 12005 -UBERON:2002293 hypaxial basal fulcrum 8 12006 -UBERON:2002083 fringing fulcrum 7 12007 -UBERON:2002294 fish scute 6 12008 -UBERON:2001160 dorsal scute 7 12009 -UBERON:2001547 abdominal scute 7 12010 -UBERON:2001606 caudal scute 7 12011 -UBERON:2001931 infranuchal scute 7 12012 -UBERON:4200113 predorsal scute 7 12013 -UBERON:3000288 maxillopalatine 6 12014 -UBERON:3000323 nasopremaxilla 6 12015 -UBERON:3000518 pseudodentary 6 12016 -UBERON:3000645 corpus 6 12017 -UBERON:3000966 angulosplenial 6 12018 -UBERON:3010576 prenasal (amphibians) 6 12019 -UBERON:4000160 anocleithrum 6 12020 -UBERON:4000172 lepidotrichium 6 12021 -UBERON:4200075 fin spine 7 12022 -UBERON:4200070 median fin spine 8 12023 -UBERON:2002261 dorsal fin spine 9 12024 -UBERON:2001789 dorsal fin spine 1 10 12025 -UBERON:2001790 dorsal fin spine 2 10 12026 -UBERON:4300175 procumbent dorsal fin spine 10 12027 -UBERON:2002262 anal fin spine 9 12028 -UBERON:4300097 anal fin spine 1 10 12029 -UBERON:4300098 anal fin spine 2 10 12030 -UBERON:4500009 paired fin spine 8 12031 -UBERON:2001787 pectoral fin spine 9 12032 -UBERON:2002270 pelvic fin spine 9 12033 -UBERON:4440011 paired fin lepidotrichium 7 12034 -UBERON:4000173 pelvic fin lepidotrichium 8 12035 -UBERON:2002270 pelvic fin spine 9 12036 -UBERON:4300117 pelvic fin ray 9 12037 -UBERON:2001776 pelvic fin ray 1 10 12038 -UBERON:2001777 pelvic fin ray 2 10 12039 -UBERON:2001778 pelvic fin ray 3 10 12040 -UBERON:2001779 pelvic fin ray 4 10 12041 -UBERON:2001780 pelvic fin ray 5 10 12042 -UBERON:2001781 pelvic fin ray 6 10 12043 -UBERON:2001782 pelvic fin ray 7 10 12044 -UBERON:4300192 branched pelvic fin ray 10 12045 -UBERON:4500011 unbranched pelvic fin ray 10 12046 -UBERON:4000175 pectoral fin lepidotrichium 8 12047 -UBERON:2001787 pectoral fin spine 9 12048 -UBERON:4500007 pectoral fin ray 9 12049 -UBERON:2001761 pectoral fin ray 1 10 12050 -UBERON:2001762 pectoral fin ray 2 10 12051 -UBERON:2001763 pectoral fin ray 3 10 12052 -UBERON:2001764 pectoral fin ray 4 10 12053 -UBERON:2001765 pectoral fin ray 5 10 12054 -UBERON:2001766 pectoral fin ray 6 10 12055 -UBERON:2001767 pectoral fin ray 7 10 12056 -UBERON:2001993 branched pectoral fin ray 10 12057 -UBERON:4300103 rudimentary pectoral fin ray 10 12058 -UBERON:4500010 unbranched pectoral fin ray 10 12059 -UBERON:4500009 paired fin spine 8 12060 -UBERON:2001787 pectoral fin spine 9 12061 -UBERON:2002270 pelvic fin spine 9 12062 -UBERON:4500008 median fin lepidotrichium 7 12063 -UBERON:4000174 caudal fin lepidotrichium 8 12064 -UBERON:2001584 caudal procurrent ray 9 12065 -UBERON:2001829 caudal fin dorsal procurrent ray 10 12066 -UBERON:2001830 caudal fin ventral procurrent ray 10 12067 -UBERON:2002271 ventral caudal procurrent ray 2 11 12068 -UBERON:2002272 ventral caudal procurrent ray 1 11 12069 -UBERON:4300250 ventral caudal procurrent ray 3 11 12070 -UBERON:4300251 ventral caudal procurrent ray 4 11 12071 -UBERON:2001585 caudal principal ray 9 12072 -UBERON:2001713 caudal principal ray 1 10 12073 -UBERON:2001714 caudal principal ray 2 10 12074 -UBERON:2001715 caudal principal ray 3 10 12075 -UBERON:2001716 caudal principal ray 4 10 12076 -UBERON:2001717 caudal principal ray 5 10 12077 -UBERON:2001718 caudal principal ray 6 10 12078 -UBERON:2001719 caudal principal ray 7 10 12079 -UBERON:2001720 caudal principal ray 8 10 12080 -UBERON:2001721 caudal principal ray 9 10 12081 -UBERON:2001722 caudal principal ray 10 10 12082 -UBERON:2001723 caudal principal ray 11 10 12083 -UBERON:2001724 caudal principal ray 12 10 12084 -UBERON:2001725 caudal principal ray 13 10 12085 -UBERON:2001726 caudal principal ray 14 10 12086 -UBERON:2001727 caudal principal ray 15 10 12087 -UBERON:2001728 caudal principal ray 16 10 12088 -UBERON:2001729 caudal principal ray 17 10 12089 -UBERON:2001730 caudal principal ray 18 10 12090 -UBERON:2001731 caudal principal ray 19 10 12091 -UBERON:2002062 branched caudal fin ray 9 12092 -UBERON:4200009 hypochordal lepidotrichium 9 12093 -UBERON:4200062 epichordal lepidotrichium 9 12094 -UBERON:4000176 anal fin lepidotrichium 8 12095 -UBERON:2002262 anal fin spine 9 12096 -UBERON:4300097 anal fin spine 1 10 12097 -UBERON:4300098 anal fin spine 2 10 12098 -UBERON:4500006 anal fin ray 9 12099 -UBERON:2001769 anal fin ray 1 10 12100 -UBERON:2001770 anal fin ray 2 10 12101 -UBERON:2001771 anal fin ray 3 10 12102 -UBERON:2001772 anal fin ray 4 10 12103 -UBERON:2001773 anal fin ray 5 10 12104 -UBERON:2001774 anal fin ray 6 10 12105 -UBERON:2001775 anal fin ray 7 10 12106 -UBERON:2001992 branched anal fin ray 10 12107 -UBERON:4300193 unbranched anal fin ray 10 12108 -UBERON:4000177 dorsal fin lepidotrichium 8 12109 -UBERON:2002261 dorsal fin spine 9 12110 -UBERON:2001789 dorsal fin spine 1 10 12111 -UBERON:2001790 dorsal fin spine 2 10 12112 -UBERON:4300175 procumbent dorsal fin spine 10 12113 -UBERON:4300116 dorsal fin ray 9 12114 -UBERON:2001754 dorsal fin ray 1 10 12115 -UBERON:2001755 dorsal fin ray 2 10 12116 -UBERON:2001756 dorsal fin ray 3 10 12117 -UBERON:2001757 dorsal fin ray 4 10 12118 -UBERON:2001758 dorsal fin ray 5 10 12119 -UBERON:2001759 dorsal fin ray 6 10 12120 -UBERON:2001760 dorsal fin ray 7 10 12121 -UBERON:2001785 branched dorsal fin ray 10 12122 -UBERON:2001786 unbranched dorsal fin ray 10 12123 -UBERON:4200070 median fin spine 8 12124 -UBERON:2002261 dorsal fin spine 9 12125 -UBERON:2001789 dorsal fin spine 1 10 12126 -UBERON:2001790 dorsal fin spine 2 10 12127 -UBERON:4300175 procumbent dorsal fin spine 10 12128 -UBERON:2002262 anal fin spine 9 12129 -UBERON:4300097 anal fin spine 1 10 12130 -UBERON:4300098 anal fin spine 2 10 12131 -UBERON:4300274 adipose fin ray 8 12132 -UBERON:4100119 extratemporal bone 6 12133 -UBERON:4200022 extracleithrum 6 12134 -UBERON:4200102 median dorsal plate 6 12135 -UBERON:4200115 presupracleithrum 6 12136 -UBERON:4300003 urodermal bone 6 12137 -UBERON:4300014 dorsal cleithrum 6 12138 -UBERON:4300015 ventral cleithrum 6 12139 -UBERON:4300017 rostrodermethmoid 6 12140 -UBERON:4300021 anterolateral plate 6 12141 -UBERON:4300022 anteroventral plate 6 12142 -UBERON:4300023 interolateral plate 6 12143 -UBERON:4300024 spinal plate 6 12144 -UBERON:4300025 posterior dorsolateral plate 6 12145 -UBERON:4300026 anterior ventrolateral plate 6 12146 -UBERON:4300028 posterior ventrolateral plate 6 12147 -UBERON:4300104 ectocoracoid bone 6 12148 -UBERON:4300199 postsplenial 6 12149 -UBERON:4300207 submandibular bone 6 12150 -UBERON:4500005 prenasal ossicle 6 12151 -UBERON:0018299 mandibular symphyseal tooth 5 12152 -UBERON:2001649 basihyal tooth 5 12153 -UBERON:2001651 pharyngobranchial 2 tooth 5 12154 -UBERON:2001653 pharyngobranchial 3 tooth 5 12155 -UBERON:2001655 upper pharyngeal 4 tooth 5 12156 -UBERON:2001657 upper pharyngeal 5 tooth 5 12157 -UBERON:2001659 upper pharyngeal tooth 5 12158 -UBERON:2001660 basibranchial tooth 5 12159 -UBERON:2001663 basibranchial 4 tooth 5 12160 -UBERON:2001665 basibranchial 2 tooth 5 12161 -UBERON:0004760 gland of anal canal 4 12162 -UBERON:0004868 tapetum lucidum of camera-type eye 4 12163 -UBERON:0010244 choroid tapetum lucidum 5 12164 -UBERON:0010246 choroidal guanine tapetum 6 12165 -UBERON:0010247 choroidal tapetum cellulosum 6 12166 -UBERON:0010248 choroidal tapetum fibrosum 6 12167 -UBERON:0010245 retinal tapetum lucidum 5 12168 -UBERON:0004869 parietal organ 4 12169 -UBERON:0004906 ectodermal part of digestive tract 4 12170 -UBERON:0012287 Rathkes pouch epithelium 5 12171 -UBERON:0005029 mucosa of lacrimal canaliculus 4 12172 -UBERON:0005043 mucosa of nasolacrimal duct 4 12173 -UBERON:0005017 mucosa of lacrimal sac 5 12174 -UBERON:0005075 forebrain-midbrain boundary 4 12175 -UBERON:0005076 hindbrain-spinal cord boundary 4 12176 -UBERON:0005077 neuropore 4 12177 -UBERON:0005070 anterior neuropore 5 12178 -UBERON:0005071 posterior neuropore 5 12179 -UBERON:0005158 parenchyma of central nervous system 4 12180 -UBERON:0034907 pineal parenchyma 5 12181 -UBERON:0005176 tooth enamel organ 4 12182 -UBERON:0015842 incisor enamel organ 5 12183 -UBERON:0015843 molar enamel organ 5 12184 -UBERON:0005184 hair medulla 4 12185 -UBERON:0005206 choroid plexus stroma 4 12186 -UBERON:0006338 lateral ventricle choroid plexus stroma 5 12187 -UBERON:0006339 third ventricle choroid plexus stroma 5 12188 -UBERON:0006340 fourth ventricle choroid plexus stroma 5 12189 -UBERON:0005236 osseus labyrinth vestibule 4 12190 -UBERON:0005281 ventricular system of central nervous system 4 12191 -UBERON:0005282 ventricular system of brain 4 12192 -UBERON:0005286 tela choroidea of midbrain cerebral aqueduct 4 12193 -UBERON:0005287 tela choroidea of fourth ventricle 4 12194 -UBERON:0005288 tela choroidea of third ventricle 4 12195 -UBERON:0005289 tela choroidea of telencephalic ventricle 4 12196 -UBERON:0005412 optic fissure 4 12197 -UBERON:0005426 lens vesicle 4 12198 -UBERON:0005428 vagal neural crest 4 12199 -UBERON:0005443 filum terminale 4 12200 -UBERON:0005478 sulcus limitans of neural tube 4 12201 -UBERON:0009570 spinal cord sulcus limitans 5 12202 -UBERON:0009576 medulla oblongata sulcus limitans 5 12203 -UBERON:0009577 metencephalon sulcus limitans 5 12204 -UBERON:0009578 myelencephalon sulcus limitans 5 12205 -UBERON:0005486 venous dural sinus 4 12206 -UBERON:0003712 cavernous sinus 5 12207 -UBERON:0017635 paired venous dural sinus 5 12208 -UBERON:0001641 transverse sinus 6 12209 -UBERON:0005475 sigmoid sinus 6 12210 -UBERON:0007160 inferior petrosal sinus 6 12211 -UBERON:0017637 marginal venous sinus 6 12212 -UBERON:0017638 primitive marginal sinus 6 12213 -UBERON:0035338 sphenoparietal sinus 6 12214 -UBERON:0017640 unpaired venous dural sinus 5 12215 -UBERON:0005481 tentorial sinus 6 12216 -UBERON:0015704 sagittal sinus 6 12217 -UBERON:0001642 superior sagittal sinus 7 12218 -UBERON:0007152 inferior sagittal sinus 7 12219 -UBERON:0005496 neural tube lateral wall 4 12220 -UBERON:0005495 midbrain lateral wall 5 12221 -UBERON:0005501 rhombomere lateral wall 5 12222 -UBERON:0005567 rhombomere 1 lateral wall 6 12223 -UBERON:0005571 rhombomere 2 lateral wall 6 12224 -UBERON:0005574 rhombomere 3 lateral wall 6 12225 -UBERON:0005577 rhombomere 4 lateral wall 6 12226 -UBERON:0005580 rhombomere 5 lateral wall 6 12227 -UBERON:0005583 rhombomere 6 lateral wall 6 12228 -UBERON:0005586 rhombomere 7 lateral wall 6 12229 -UBERON:0005589 rhombomere 8 lateral wall 6 12230 -UBERON:0005561 telencephalon lateral wall 5 12231 -UBERON:0005591 diencephalon lateral wall 5 12232 -UBERON:0009582 spinal cord lateral wall 5 12233 -UBERON:0005497 non-neural ectoderm 4 12234 -UBERON:2007013 preplacodal ectoderm 5 12235 -UBERON:0005600 crus commune 4 12236 -UBERON:0005711 foregut duodenum mesentery 4 12237 -UBERON:0005712 midgut duodenum mesentery 4 12238 -UBERON:0005720 hindbrain venous system 4 12239 -UBERON:0005724 roof plate spinal cord region 4 12240 -UBERON:0005746 primary vitreous 4 12241 -UBERON:0005817 neuraxis flexure 4 12242 -UBERON:0005818 cephalic midbrain flexure 5 12243 -UBERON:0005819 cervical flexure 5 12244 -UBERON:0005820 pontine flexure 5 12245 -UBERON:0005908 conjunctival sac 4 12246 -UBERON:0005928 external naris 4 12247 -UBERON:0010893 median external naris 5 12248 -UBERON:0013477 blowhole 5 12249 -UBERON:2001426 posterior naris 5 12250 -UBERON:2001427 anterior naris 5 12251 -UBERON:0005931 primary choana 4 12252 -UBERON:0005932 bulb of hair follicle 4 12253 -UBERON:0011936 vibrissa hair bulb 5 12254 -UBERON:0005933 hair root sheath 4 12255 -UBERON:0005941 hair inner root sheath 5 12256 -UBERON:0011938 vibrissa inner root sheath 6 12257 -UBERON:0005942 hair outer root sheath 5 12258 -UBERON:0011939 vibrissa outer root sheath 6 12259 -UBERON:0011937 vibrissa root sheath 5 12260 -UBERON:0011938 vibrissa inner root sheath 6 12261 -UBERON:0011939 vibrissa outer root sheath 6 12262 -UBERON:0005943 hair root sheath matrix 4 12263 -UBERON:0005968 infundibulum of hair follicle 4 12264 -UBERON:0005969 eye trabecular meshwork 4 12265 -UBERON:0005973 blood-inner ear barrier 4 12266 -UBERON:0006007 pre-Botzinger complex 4 12267 -UBERON:0006059 falx cerebri 4 12268 -UBERON:0006088 inferior parietal cortex 4 12269 -UBERON:0006091 inferior horn of the lateral ventricle 4 12270 -UBERON:0006094 superior parietal cortex 4 12271 -UBERON:0006106 cochlear canal 4 12272 -UBERON:0006220 diencephalic part of interventricular foramen 4 12273 -UBERON:0006270 optic pit 4 12274 -UBERON:0006301 telencephalic part of interventricular foramen 4 12275 -UBERON:0006311 chamber of eyeball 4 12276 -UBERON:0001766 anterior chamber of eyeball 5 12277 -UBERON:0001767 posterior chamber of eyeball 5 12278 -UBERON:0001799 vitreous chamber of eyeball 5 12279 -UBERON:0006377 remnant of Rathke's pouch 4 12280 -UBERON:0006495 osseus cochlear canal 4 12281 -UBERON:0006496 external acoustic meatus osseus part 4 12282 -UBERON:0006574 pectinate line 4 12283 -UBERON:0006691 tentorium cerebelli 4 12284 -UBERON:0006713 foramen cecum of frontal bone 4 12285 -UBERON:0006723 cochlear modiolus 4 12286 -UBERON:0006724 osseus spiral lamina 4 12287 -UBERON:0006725 spiral ligament 4 12288 -UBERON:0006742 canthus 4 12289 -UBERON:0005611 inner canthus 5 12290 -UBERON:0013679 inner canthus of right eye 6 12291 -UBERON:0013680 inner canthus of left eye 6 12292 -UBERON:0006726 outer canthus 5 12293 -UBERON:0015120 right outer canthus 6 12294 -UBERON:0015121 left outer canthus 6 12295 -UBERON:0006761 corneo-scleral junction 4 12296 -UBERON:0006762 suspensory ligament of lens 4 12297 -UBERON:0006795 arthropod optic lobe 4 12298 -UBERON:0006796 cephalopod optic lobe 4 12299 -UBERON:0006844 cusp of tooth 4 12300 -UBERON:0016929 lingual cusp of tooth 5 12301 -UBERON:0018279 hypoconid 5 12302 -UBERON:0018287 premolar 1 hypoconoid 6 12303 -UBERON:0018288 paracone 5 12304 -UBERON:0018298 stylocone 5 12305 -UBERON:0018344 parastyle 5 12306 -UBERON:0006906 ala of nose 4 12307 -UBERON:0007224 medial entorhinal cortex 4 12308 -UBERON:0007225 lateral entorhinal cortex 4 12309 -UBERON:0007330 rhamphotheca 4 12310 -UBERON:0007331 maxillary rhamphotheca 5 12311 -UBERON:0007332 mandibular rhamphotheca 5 12312 -UBERON:0007377 stratum compactum of dermis 4 12313 -UBERON:0007381 epidermal scale 4 12314 -UBERON:0008201 scute 5 12315 -UBERON:0011673 plastron scute 6 12316 -UBERON:0018317 dorsal osteoderm 6 12317 -UBERON:0011674 carapace scute 7 12318 -UBERON:4200165 basal scute 6 12319 -UBERON:0007440 stratum intermedium of tooth 4 12320 -UBERON:0007825 reticular membrane of spiral organ 4 12321 -UBERON:0007827 external nose 4 12322 -UBERON:0007833 osseus semicircular canal 4 12323 -UBERON:0007862 perichordal tissue 4 12324 -UBERON:0008198 nail plate 4 12325 -UBERON:0008286 feather calamus 4 12326 -UBERON:0008287 feather vane 4 12327 -UBERON:0008290 afterfeather 4 12328 -UBERON:0008294 feather barb 4 12329 -UBERON:0008295 feather barbule 4 12330 -UBERON:0008340 nasal bridge 4 12331 -UBERON:0008341 columella nasi 4 12332 -UBERON:0008522 nasal muscle 4 12333 -UBERON:0008588 procerus 5 12334 -UBERON:0008589 depressor septi nasi 5 12335 -UBERON:0010953 nasalis muscle 5 12336 -UBERON:0008813 helicotrema 4 12337 -UBERON:0008866 enamel knot 4 12338 -UBERON:0008877 epidermal-dermal junction 4 12339 -UBERON:0008904 neuromast 4 12340 -UBERON:2000125 mandibular lateral line neuromast 5 12341 -UBERON:2000136 otic lateral line neuromast 5 12342 -UBERON:2000813 infraorbital lateral line neuromast 5 12343 -UBERON:2000814 opercular lateral line neuromast 5 12344 -UBERON:2000939 middle lateral line neuromast 5 12345 -UBERON:2000940 posterior lateral line neuromast 5 12346 -UBERON:2001025 occipital lateral line neuromast 5 12347 -UBERON:2001026 supraorbital lateral line neuromast 5 12348 -UBERON:2001472 anterior lateral line neuromast 5 12349 -UBERON:2002275 Jakubowski's organ 5 12350 -UBERON:2005113 dorsal lateral line neuromast 5 12351 -UBERON:0008917 ampullary organ 4 12352 -UBERON:0008978 anal sac 4 12353 -UBERON:0036019 castor sac 5 12354 -UBERON:0008999 hoof lamina 4 12355 -UBERON:0009016 ciliary stroma 4 12356 -UBERON:0009127 epibranchial ganglion 4 12357 -UBERON:0001700 geniculate ganglion 5 12358 -UBERON:0001701 glossopharyngeal ganglion 5 12359 -UBERON:0003963 otic ganglion 6 12360 -UBERON:0005360 inferior glossopharyngeal IX ganglion 6 12361 -UBERON:0005361 superior glossopharyngeal IX ganglion 6 12362 -UBERON:0005362 vagus X ganglion 5 12363 -UBERON:0005363 inferior vagus X ganglion 6 12364 -UBERON:0005364 superior vagus X ganglion 6 12365 -UBERON:2001302 vagal ganglion 1 5 12366 -UBERON:2001303 vagal ganglion 2 5 12367 -UBERON:2001304 vagal ganglion 3 5 12368 -UBERON:2001305 vagal ganglion 4 5 12369 -UBERON:0009564 distal limb integumentary appendage 4 12370 -UBERON:0001705 nail 5 12371 -UBERON:0000212 toilet claw 6 12372 -UBERON:0009565 nail of manual digit 6 12373 -UBERON:0011273 nail of manual digit 1 7 12374 -UBERON:0011274 nail of manual digit 2 7 12375 -UBERON:0011275 nail of manual digit 3 7 12376 -UBERON:0011276 nail of manual digit 4 7 12377 -UBERON:0011277 nail of manual digit 5 7 12378 -UBERON:0009567 nail of pedal digit 6 12379 -UBERON:0011278 nail of pedal digit 1 7 12380 -UBERON:0011279 nail of pedal digit 2 7 12381 -UBERON:0011280 nail of pedal digit 3 7 12382 -UBERON:0011281 nail of pedal digit 4 7 12383 -UBERON:0011282 nail of pedal digit 5 7 12384 -UBERON:0008963 hoof 5 12385 -UBERON:4100008 pedal claws 5 12386 -UBERON:4200179 manual claw 5 12387 -UBERON:0009672 oronasal membrane 4 12388 -UBERON:0009882 anal column 4 12389 -UBERON:0009952 dentate gyrus subgranular zone 4 12390 -UBERON:0009968 primitive superior sagittal sinus 4 12391 -UBERON:0010075 sacral neural crest 4 12392 -UBERON:0010091 future hindbrain meninx 4 12393 -UBERON:0010202 lateral line 4 12394 -UBERON:0003095 dorsal lateral line 5 12395 -UBERON:0006334 posterior lateral line 5 12396 -UBERON:0018369 upper lateral line 5 12397 -UBERON:0018370 ventral lateral line 5 12398 -UBERON:2001470 anterior lateral line 5 12399 -UBERON:0003090 supraorbital lateral line 6 12400 -UBERON:0003093 occipital lateral line 6 12401 -UBERON:0003094 infraorbital lateral line 6 12402 -UBERON:0003096 middle lateral line 6 12403 -UBERON:2000259 mandibular lateral line 6 12404 -UBERON:2000424 opercular lateral line 6 12405 -UBERON:2000464 otic lateral line 6 12406 -UBERON:0010209 plica semilunaris of conjunctiva 4 12407 -UBERON:0010230 eyeball of camera-type eye 4 12408 -UBERON:0010232 placodal ectoderm 4 12409 -UBERON:0010269 filum terminale internum 4 12410 -UBERON:0010270 filum terminale externum 4 12411 -UBERON:0010284 lacrimal punctum 4 12412 -UBERON:0010286 midbrain neural tube 4 12413 -UBERON:0010305 subdivision of conjunctiva 4 12414 -UBERON:0001812 palpebral conjunctiva 5 12415 -UBERON:0010306 bulbar conjunctiva 5 12416 -UBERON:0010307 conjunctival fornix 5 12417 -UBERON:0014698 lacrimal caruncle 5 12418 -UBERON:0010313 neural crest-derived structure 4 12419 -UBERON:0000044 dorsal root ganglion 5 12420 -UBERON:0002834 cervical dorsal root ganglion 6 12421 -UBERON:0002838 first cervical dorsal root ganglion 7 12422 -UBERON:0002839 second cervical dorsal root ganglion 7 12423 -UBERON:0002840 third cervical dorsal root ganglion 7 12424 -UBERON:0002841 fourth cervical dorsal root ganglion 7 12425 -UBERON:0002842 fifth cervical dorsal root ganglion 7 12426 -UBERON:0002843 seventh cervical dorsal root ganglion 7 12427 -UBERON:0002844 eighth cervical dorsal root ganglion 7 12428 -UBERON:0007711 sixth cervical dorsal root ganglion 7 12429 -UBERON:0002835 thoracic dorsal root ganglion 6 12430 -UBERON:0002845 first thoracic dorsal root ganglion 7 12431 -UBERON:0002846 second thoracic dorsal root ganglion 7 12432 -UBERON:0002847 third thoracic dorsal root ganglion 7 12433 -UBERON:0002848 fifth thoracic dorsal root ganglion 7 12434 -UBERON:0002849 sixth thoracic dorsal root ganglion 7 12435 -UBERON:0002850 seventh thoracic dorsal root ganglion 7 12436 -UBERON:0002851 eighth thoracic dorsal root ganglion 7 12437 -UBERON:0002852 ninth thoracic dorsal root ganglion 7 12438 -UBERON:0002853 tenth thoracic dorsal root ganglion 7 12439 -UBERON:0002854 eleventh thoracic dorsal root ganglion 7 12440 -UBERON:0002855 twelfth thoracic dorsal root ganglion 7 12441 -UBERON:0007712 fourth thoracic spinal ganglion 7 12442 -UBERON:0002836 lumbar dorsal root ganglion 6 12443 -UBERON:0002856 second lumbar dorsal root ganglion 7 12444 -UBERON:0002857 first lumbar dorsal root ganglion 7 12445 -UBERON:0002858 third lumbar dorsal root ganglion 7 12446 -UBERON:0002859 fifth lumbar dorsal root ganglion 7 12447 -UBERON:0003943 fourth lumbar dorsal root ganglion 7 12448 -UBERON:0002837 sacral dorsal root ganglion 6 12449 -UBERON:0002860 first sacral dorsal root ganglion 7 12450 -UBERON:0002861 second sacral dorsal root ganglion 7 12451 -UBERON:0002862 third sacral dorsal root ganglion 7 12452 -UBERON:0002863 fifth sacral dorsal root ganglion 7 12453 -UBERON:0007713 fourth sacral spinal ganglion 7 12454 -UBERON:0000391 leptomeninx 5 12455 -UBERON:0002361 pia mater 6 12456 -UBERON:0003549 brain pia mater 7 12457 -UBERON:0003550 forebrain pia mater 8 12458 -UBERON:0003552 telencephalon pia mater 9 12459 -UBERON:0003553 diencephalon pia mater 9 12460 -UBERON:0003551 midbrain pia mater 8 12461 -UBERON:0003554 hindbrain pia mater 8 12462 -UBERON:0003555 spinal cord pia mater 7 12463 -UBERON:0002362 arachnoid mater 6 12464 -UBERON:0003556 forebrain arachnoid mater 7 12465 -UBERON:0003558 diencephalon arachnoid mater 8 12466 -UBERON:0005400 telencephalon arachnoid mater 8 12467 -UBERON:0003557 midbrain arachnoid mater 7 12468 -UBERON:0003559 hindbrain arachnoid mater 7 12469 -UBERON:0003560 spinal cord arachnoid mater 7 12470 -UBERON:0005397 brain arachnoid mater 7 12471 -UBERON:0000395 cochlear ganglion 5 12472 -UBERON:0000401 mandibular ramus 5 12473 -UBERON:0000429 enteric plexus 5 12474 -UBERON:0002439 myenteric nerve plexus 6 12475 -UBERON:0005304 submucous nerve plexus 6 12476 -UBERON:0012374 subserosal plexus 6 12477 -UBERON:0000437 arachnoid barrier layer 5 12478 -UBERON:0000439 arachnoid trabecula 5 12479 -UBERON:0000946 cardial valve 5 12480 -UBERON:0002086 sinoatrial valve 6 12481 -UBERON:0002133 atrioventricular valve 6 12482 -UBERON:0002134 tricuspid valve 7 12483 -UBERON:0002135 mitral valve 7 12484 -UBERON:0004149 ventriculo bulbo valve 6 12485 -UBERON:0004150 coronary sinus valve 6 12486 -UBERON:0005485 valve of inferior vena cava 6 12487 -UBERON:0005623 semi-lunar valve 6 12488 -UBERON:0002137 aortic valve 7 12489 -UBERON:0002146 pulmonary valve 7 12490 -UBERON:0000964 cornea 5 12491 -UBERON:0001035 dento-alveolar joint 5 12492 -UBERON:0001235 adrenal cortex 5 12493 -UBERON:0035825 left adrenal gland cortex 6 12494 -UBERON:0035827 right adrenal gland cortex 6 12495 -UBERON:0001236 adrenal medulla 5 12496 -UBERON:0035826 left adrenal gland medulla 6 12497 -UBERON:0035828 right adrenal gland medulla 6 12498 -UBERON:0001601 extra-ocular muscle 5 12499 -UBERON:0001604 levator palpebrae superioris 6 12500 -UBERON:0006531 oculomotor muscle 6 12501 -UBERON:0006532 oblique extraocular muscle 7 12502 -UBERON:0006320 inferior oblique extraocular muscle 8 12503 -UBERON:0006321 superior oblique extraocular muscle 8 12504 -UBERON:0006533 rectus extraocular muscle 7 12505 -UBERON:0001602 medial rectus extraocular muscle 8 12506 -UBERON:0001603 lateral rectus extra-ocular muscle 8 12507 -UBERON:0006322 inferior rectus extraocular muscle 8 12508 -UBERON:0006323 superior rectus extraocular muscle 8 12509 -UBERON:0010271 musculus retractor bulbi 6 12510 -UBERON:3010125 musculus levator bulbi 6 12511 -UBERON:0001673 central retinal vein 5 12512 -UBERON:0001675 trigeminal ganglion 5 12513 -UBERON:0001695 squamous part of temporal bone 5 12514 -UBERON:0001697 orbit of skull 5 12515 -UBERON:0001700 geniculate ganglion 5 12516 -UBERON:0001706 nasal septum 5 12517 -UBERON:0001708 jaw skeleton 5 12518 -UBERON:4200250 meckelian bone 6 12519 -UBERON:0001716 secondary palate 5 12520 -UBERON:0001734 palatine uvula 5 12521 -UBERON:0001754 dental pulp 5 12522 -UBERON:0015837 incisor dental pulp 6 12523 -UBERON:0015853 dental pulp of median incisor tusk 7 12524 -UBERON:0015838 molar dental pulp 6 12525 -UBERON:0001755 distal part of styloid process of temporal bone 5 12526 -UBERON:0001772 corneal epithelium 5 12527 -UBERON:0001773 sclera 5 12528 -UBERON:0001777 substantia propria of cornea 5 12529 -UBERON:0001806 sympathetic ganglion 5 12530 -UBERON:0001807 paravertebral ganglion 6 12531 -UBERON:0000408 vertebral ganglion 7 12532 -UBERON:0000961 thoracic ganglion 7 12533 -UBERON:0002835 thoracic dorsal root ganglion 8 12534 -UBERON:0002845 first thoracic dorsal root ganglion 9 12535 -UBERON:0002846 second thoracic dorsal root ganglion 9 12536 -UBERON:0002847 third thoracic dorsal root ganglion 9 12537 -UBERON:0002848 fifth thoracic dorsal root ganglion 9 12538 -UBERON:0002849 sixth thoracic dorsal root ganglion 9 12539 -UBERON:0002850 seventh thoracic dorsal root ganglion 9 12540 -UBERON:0002851 eighth thoracic dorsal root ganglion 9 12541 -UBERON:0002852 ninth thoracic dorsal root ganglion 9 12542 -UBERON:0002853 tenth thoracic dorsal root ganglion 9 12543 -UBERON:0002854 eleventh thoracic dorsal root ganglion 9 12544 -UBERON:0002855 twelfth thoracic dorsal root ganglion 9 12545 -UBERON:0007712 fourth thoracic spinal ganglion 9 12546 -UBERON:0001991 cervical ganglion 7 12547 -UBERON:0001989 superior cervical ganglion 8 12548 -UBERON:0001990 middle cervical ganglion 8 12549 -UBERON:0002440 inferior cervical ganglion 8 12550 -UBERON:0002441 cervicothoracic ganglion 8 12551 -UBERON:0003964 prevertebral ganglion 6 12552 -UBERON:0002262 celiac ganglion 7 12553 -UBERON:0016508 pelvic ganglion 7 12554 -UBERON:0035769 mesenteric ganglion 7 12555 -UBERON:0005453 inferior mesenteric ganglion 8 12556 -UBERON:0005479 superior mesenteric ganglion 8 12557 -UBERON:0001808 parasympathetic ganglion 5 12558 -UBERON:0001809 enteric ganglion 6 12559 -UBERON:0002059 submandibular ganglion 6 12560 -UBERON:0003962 pterygopalatine ganglion 6 12561 -UBERON:0003963 otic ganglion 6 12562 -UBERON:0005407 sublingual ganglion 6 12563 -UBERON:0010128 future pterygopalatine ganglion 6 12564 -UBERON:0014463 cardiac ganglion 6 12565 -UBERON:0035783 ganglion of ciliary nerve 6 12566 -UBERON:0002058 main ciliary ganglion 7 12567 -UBERON:0035776 accessory ciliary ganglion 7 12568 -UBERON:0001818 tarsal gland 5 12569 -UBERON:0001822 orbital septum 5 12570 -UBERON:0001985 corneal endothelium 5 12571 -UBERON:0002005 enteric nervous system 5 12572 -UBERON:0002052 adrenal gland capsule 5 12573 -UBERON:0002380 trapezius muscle 5 12574 -UBERON:0014798 clavotrapezius muscle 6 12575 -UBERON:0014799 acromiotrapezius muscle 6 12576 -UBERON:0014800 spinotrapezius muscle 6 12577 -UBERON:0002443 choroidal blood vessel 5 12578 -UBERON:0002496 stapes base 5 12579 -UBERON:0002824 vestibular ganglion 5 12580 -UBERON:0002825 superior part of vestibular ganglion 5 12581 -UBERON:0002826 inferior part of vestibular ganglion 5 12582 -UBERON:0002827 vestibulocochlear ganglion 5 12583 -UBERON:0003107 Meckel's cartilage 5 12584 -UBERON:0003267 tooth of upper jaw 5 12585 -UBERON:0011593 maxillary tooth 6 12586 -UBERON:0003666 upper jaw molar 7 12587 -UBERON:0013617 upper primary molar tooth 8 12588 -UBERON:0018588 upper first primary molar tooth 9 12589 -UBERON:0018599 upper second primary molar tooth 9 12590 -UBERON:0013619 upper secondary molar tooth 8 12591 -UBERON:0018575 upper first secondary molar tooth 9 12592 -UBERON:0018576 upper second secondary molar tooth 9 12593 -UBERON:0018577 upper third secondary molar tooth 9 12594 -UBERON:7500057 upper fourth secondary molar tooth 9 12595 -UBERON:0018302 upper molar 1 8 12596 -UBERON:0018575 upper first secondary molar tooth 9 12597 -UBERON:0018588 upper first primary molar tooth 9 12598 -UBERON:0012070 palatal tooth 6 12599 -UBERON:0004767 vomerine tooth 7 12600 -UBERON:0012073 tooth of palatine bone 7 12601 -UBERON:2001632 ectopterygoid tooth 7 12602 -UBERON:0016944 upper premolar tooth 6 12603 -UBERON:0016452 upper secondary premolar tooth 7 12604 -UBERON:0018571 upper first secondary premolar tooth 8 12605 -UBERON:0018572 upper second secondary premolar tooth 8 12606 -UBERON:7500058 upper fourth secondary premolar tooth 8 12607 -UBERON:7500059 upper third secondary premolar tooth 8 12608 -UBERON:0017271 upper primary premolar tooth 7 12609 -UBERON:0018301 upper deciduous premolar 5 8 12610 -UBERON:0018648 upper premolar 4 7 12611 -UBERON:0018613 secondary upper tooth 6 12612 -UBERON:0013619 upper secondary molar tooth 7 12613 -UBERON:0018575 upper first secondary molar tooth 8 12614 -UBERON:0018576 upper second secondary molar tooth 8 12615 -UBERON:0018577 upper third secondary molar tooth 8 12616 -UBERON:7500057 upper fourth secondary molar tooth 8 12617 -UBERON:0016452 upper secondary premolar tooth 7 12618 -UBERON:0018571 upper first secondary premolar tooth 8 12619 -UBERON:0018572 upper second secondary premolar tooth 8 12620 -UBERON:7500058 upper fourth secondary premolar tooth 8 12621 -UBERON:7500059 upper third secondary premolar tooth 8 12622 -UBERON:0018561 upper secondary canine tooth 7 12623 -UBERON:0019253 upper secondary incisor tooth 7 12624 -UBERON:0016454 upper central secondary incisor tooth 8 12625 -UBERON:0016455 upper lateral secondary incisor tooth 8 12626 -UBERON:0018616 primary upper tooth 6 12627 -UBERON:0013617 upper primary molar tooth 7 12628 -UBERON:0018588 upper first primary molar tooth 8 12629 -UBERON:0018599 upper second primary molar tooth 8 12630 -UBERON:0017271 upper primary premolar tooth 7 12631 -UBERON:0018301 upper deciduous premolar 5 8 12632 -UBERON:0018591 upper primary incisor tooth 7 12633 -UBERON:0018593 upper central primary incisor tooth 8 12634 -UBERON:0018594 upper lateral primary incisor tooth 8 12635 -UBERON:0018597 upper primary canine tooth 7 12636 -UBERON:0018621 upper canine tooth 6 12637 -UBERON:0018300 upper canine 1 7 12638 -UBERON:0018561 upper secondary canine tooth 7 12639 -UBERON:0018597 upper primary canine tooth 7 12640 -UBERON:2001626 premaxillary tooth 6 12641 -UBERON:0003450 upper jaw incisor 7 12642 -UBERON:0015847 upper left incisor tooth 8 12643 -UBERON:0015850 upper left incisor tusk 9 12644 -UBERON:0015851 upper right incisor tusk 8 12645 -UBERON:0015852 narwhal tusk 8 12646 -UBERON:0018591 upper primary incisor tooth 8 12647 -UBERON:0018593 upper central primary incisor tooth 9 12648 -UBERON:0018594 upper lateral primary incisor tooth 9 12649 -UBERON:0018603 upper central incisor tooth 8 12650 -UBERON:0016454 upper central secondary incisor tooth 9 12651 -UBERON:0018593 upper central primary incisor tooth 9 12652 -UBERON:0018604 upper lateral incisor tooth 8 12653 -UBERON:0016455 upper lateral secondary incisor tooth 9 12654 -UBERON:0018594 upper lateral primary incisor tooth 9 12655 -UBERON:0019253 upper secondary incisor tooth 8 12656 -UBERON:0016454 upper central secondary incisor tooth 9 12657 -UBERON:0016455 upper lateral secondary incisor tooth 9 12658 -UBERON:4300243 premaxillary tooth 2 7 12659 -UBERON:4300244 premaxillary tooth 3 7 12660 -UBERON:3000642 maxillopalatine tooth 6 12661 -UBERON:0003268 tooth of lower jaw 5 12662 -UBERON:0003451 lower jaw incisor 6 12663 -UBERON:0017748 lower primary incisor tooth 7 12664 -UBERON:0018595 lower central primary incisor tooth 8 12665 -UBERON:0018596 lower lateral primary incisor tooth 8 12666 -UBERON:0018601 lower central incisor tooth 7 12667 -UBERON:0018568 lower central secondary incisor tooth 8 12668 -UBERON:0018595 lower central primary incisor tooth 8 12669 -UBERON:0018602 lower lateral incisor tooth 7 12670 -UBERON:0018570 lower lateral secondary incisor tooth 8 12671 -UBERON:0018596 lower lateral primary incisor tooth 8 12672 -UBERON:0018623 lower secondary incisor tooth 7 12673 -UBERON:0018568 lower central secondary incisor tooth 8 12674 -UBERON:0018570 lower lateral secondary incisor tooth 8 12675 -UBERON:0011594 dentary tooth 6 12676 -UBERON:0003667 lower jaw molar 7 12677 -UBERON:0013620 lower primary molar tooth 8 12678 -UBERON:0018589 lower first primary molar tooth 9 12679 -UBERON:0018600 lower second primary molar tooth 9 12680 -UBERON:0013621 lower secondary molar tooth 8 12681 -UBERON:0018578 lower first secondary molar tooth 9 12682 -UBERON:0018579 lower second secondary molar tooth 9 12683 -UBERON:0018580 lower third secondary molar tooth 9 12684 -UBERON:7500052 lower fourth secondary molar tooth 9 12685 -UBERON:0018282 lower molar 3 8 12686 -UBERON:0018580 lower third secondary molar tooth 9 12687 -UBERON:4300246 dentary tooth 2 7 12688 -UBERON:4300247 dentary tooth 3 7 12689 -UBERON:0011603 coronoid tooth 6 12690 -UBERON:4200238 coronoid fang 7 12691 -UBERON:0016943 lower premolar tooth 6 12692 -UBERON:0016453 lower secondary premolar tooth 7 12693 -UBERON:0018573 lower first secondary premolar tooth 8 12694 -UBERON:0018574 lower second secondary premolar tooth 8 12695 -UBERON:7500053 lower fourth secondary premolar tooth 8 12696 -UBERON:7500054 lower third secondary premolar tooth 8 12697 -UBERON:0017272 lower primary premolar tooth 7 12698 -UBERON:0018281 lower deciduous premolar 5 8 12699 -UBERON:0018284 lower premolar 1 7 12700 -UBERON:0018573 lower first secondary premolar tooth 8 12701 -UBERON:0018285 lower premolar 2 7 12702 -UBERON:0018574 lower second secondary premolar tooth 8 12703 -UBERON:0018299 mandibular symphyseal tooth 6 12704 -UBERON:0018614 permanent lower tooth 6 12705 -UBERON:0013621 lower secondary molar tooth 7 12706 -UBERON:0018578 lower first secondary molar tooth 8 12707 -UBERON:0018579 lower second secondary molar tooth 8 12708 -UBERON:0018580 lower third secondary molar tooth 8 12709 -UBERON:7500052 lower fourth secondary molar tooth 8 12710 -UBERON:0016453 lower secondary premolar tooth 7 12711 -UBERON:0018573 lower first secondary premolar tooth 8 12712 -UBERON:0018574 lower second secondary premolar tooth 8 12713 -UBERON:7500053 lower fourth secondary premolar tooth 8 12714 -UBERON:7500054 lower third secondary premolar tooth 8 12715 -UBERON:0018562 lower secondary canine tooth 7 12716 -UBERON:0018623 lower secondary incisor tooth 7 12717 -UBERON:0018568 lower central secondary incisor tooth 8 12718 -UBERON:0018570 lower lateral secondary incisor tooth 8 12719 -UBERON:0018617 primary lower tooth 6 12720 -UBERON:0013620 lower primary molar tooth 7 12721 -UBERON:0018589 lower first primary molar tooth 8 12722 -UBERON:0018600 lower second primary molar tooth 8 12723 -UBERON:0017272 lower primary premolar tooth 7 12724 -UBERON:0018281 lower deciduous premolar 5 8 12725 -UBERON:0017748 lower primary incisor tooth 7 12726 -UBERON:0018595 lower central primary incisor tooth 8 12727 -UBERON:0018596 lower lateral primary incisor tooth 8 12728 -UBERON:0018598 lower primary canine tooth 7 12729 -UBERON:0018622 lower canine tooth 6 12730 -UBERON:0018562 lower secondary canine tooth 7 12731 -UBERON:0018598 lower primary canine tooth 7 12732 -UBERON:3000519 pseudodentary tooth 6 12733 -UBERON:0003277 skeleton of upper jaw 5 12734 -UBERON:0003278 skeleton of lower jaw 5 12735 -UBERON:0003356 epithelium of nasal septum 5 12736 -UBERON:0003358 epithelium of soft palate 5 12737 -UBERON:0003368 epithelium of hard palate 5 12738 -UBERON:0003407 cartilage of nasal septum 5 12739 -UBERON:0003462 facial bone 5 12740 -UBERON:0001677 sphenoid bone 6 12741 -UBERON:0001679 ethmoid bone 6 12742 -UBERON:0001680 lacrimal bone 6 12743 -UBERON:0001681 nasal bone 6 12744 -UBERON:0001683 jugal bone 6 12745 -UBERON:0002478 orbitosphenoid 6 12746 -UBERON:0002500 zygomatic arch 6 12747 -UBERON:0003971 interfrontal bone 6 12748 -UBERON:0003973 nasal concha of ethmoid bone 6 12749 -UBERON:0005919 supreme nasal concha 7 12750 -UBERON:0005920 superior nasal concha 7 12751 -UBERON:0005921 middle nasal concha 7 12752 -UBERON:0005922 inferior nasal concha 6 12753 -UBERON:0006231 facial bone primordium 6 12754 -UBERON:0006428 basisphenoid bone 6 12755 -UBERON:0006721 alisphenoid bone 6 12756 -UBERON:0008828 presphenoid bone 6 12757 -UBERON:0009470 postsphenoidal bone 6 12758 -UBERON:0009639 body of sphenoid 6 12759 -UBERON:0010297 endochondral scleral ossicle 6 12760 -UBERON:2001432 anterior sclerotic bone 7 12761 -UBERON:2001433 posterior sclerotic bone 7 12762 -UBERON:0010298 intramembranous scleral ossicle 6 12763 -UBERON:0010308 os opticus 7 12764 -UBERON:0010309 palpebral bone 6 12765 -UBERON:0010311 scleral sesamoid bone 6 12766 -UBERON:0010389 pterygoid bone 6 12767 -UBERON:0010750 prefrontal bone 6 12768 -UBERON:0011167 septomaxilla bone 6 12769 -UBERON:0011168 postfrontal bone 6 12770 -UBERON:0011169 postorbital bone 6 12771 -UBERON:0012360 bone of jaw 6 12772 -UBERON:0004768 bone of lower jaw 7 12773 -UBERON:0004742 dentary 8 12774 -UBERON:0001684 mandible 9 12775 -UBERON:0004744 articular/anguloarticular 8 12776 -UBERON:0011079 angular bone 8 12777 -UBERON:0011598 coronoid bone 8 12778 -UBERON:4200234 precoronoid bone 9 12779 -UBERON:4200235 postcoronoid bone 9 12780 -UBERON:4200236 anterior coronoid bone 9 12781 -UBERON:4200237 posterior coronoid bone 9 12782 -UBERON:0011635 splenial bone 8 12783 -UBERON:0011636 surangular bone 8 12784 -UBERON:4200243 surangular pit line 9 12785 -UBERON:0011637 prearticular bone 8 12786 -UBERON:0011770 mentomeckelian 8 12787 -UBERON:2000422 retroarticular 8 12788 -UBERON:2001274 coronomeckelian 8 12789 -UBERON:2001805 articular bone 8 12790 -UBERON:3000515 pseudoangular 8 12791 -UBERON:3000518 pseudodentary 8 12792 -UBERON:3000966 angulosplenial 8 12793 -UBERON:4200245 parasymphysial plate 8 12794 -UBERON:4200246 mesial parasymphysial foramen 9 12795 -UBERON:4200247 lateral parasymphysial foramen 9 12796 -UBERON:4300199 postsplenial 8 12797 -UBERON:0011597 bone of upper jaw 7 12798 -UBERON:0001682 palatine bone 8 12799 -UBERON:0002244 premaxilla 8 12800 -UBERON:0002396 vomer 8 12801 -UBERON:0002397 maxilla 8 12802 -UBERON:0006597 quadrate bone 8 12803 -UBERON:0011267 quadratojugal bone 8 12804 -UBERON:0011628 early premaxilla 8 12805 -UBERON:0011634 ectopterygoid bone 8 12806 -UBERON:2000103 supramaxilla 8 12807 -UBERON:2000240 metapterygoid 8 12808 -UBERON:2000620 autopalatine 8 12809 -UBERON:2000657 entopterygoid 8 12810 -UBERON:2001406 kinethmoid bone 8 12811 -UBERON:2001692 median premaxilla 8 12812 -UBERON:2002020 hypomaxilla 8 12813 -UBERON:3000288 maxillopalatine 8 12814 -UBERON:3000323 nasopremaxilla 8 12815 -UBERON:4300017 rostrodermethmoid 8 12816 -UBERON:3000645 corpus 7 12817 -UBERON:2000127 antorbital 6 12818 -UBERON:2000203 rhinosphenoid 6 12819 -UBERON:2000376 infraorbital 6 12820 -UBERON:2000223 infraorbital 1 7 12821 -UBERON:2000495 infraorbital 5 7 12822 -UBERON:2001407 infraorbital 2 7 12823 -UBERON:2001408 infraorbital 3 7 12824 -UBERON:2001409 infraorbital 4 7 12825 -UBERON:2001674 infraorbital 6 7 12826 -UBERON:2001702 infraorbital 7 7 12827 -UBERON:2001703 infraorbital 8 7 12828 -UBERON:2001704 infraorbital 9 7 12829 -UBERON:2001705 infraorbital 10 7 12830 -UBERON:2001706 infraorbital 11 7 12831 -UBERON:2001707 infraorbital 12 7 12832 -UBERON:2001708 dermosphenotic 7 12833 -UBERON:2000691 supraorbital bone 6 12834 -UBERON:4200244 anterior supraorbital bone 7 12835 -UBERON:4200091 ethomosphenoid region 6 12836 -UBERON:4500005 prenasal ossicle 6 12837 -UBERON:0003500 corneal blood vessel 5 12838 -UBERON:0003501 retina blood vessel 5 12839 -UBERON:0001620 central retinal artery 6 12840 -UBERON:0003511 iris blood vessel 5 12841 -UBERON:0003581 eyelid connective tissue 5 12842 -UBERON:0009648 eyelid subcutaneous connective tissue 6 12843 -UBERON:0013120 eyelid submuscular connective tissue 6 12844 -UBERON:0003585 dermis connective tissue 5 12845 -UBERON:0003426 dermis adipose tissue 6 12846 -UBERON:4000104 ganoine 6 12847 -UBERON:4000107 elasmodine 6 12848 -UBERON:0003682 palatal muscle 5 12849 -UBERON:0001574 palatoglossus muscle 6 12850 -UBERON:0008585 levator veli palatini 6 12851 -UBERON:0008586 tensor veli palatini 6 12852 -UBERON:0010234 palatopharyngeus muscle 6 12853 -UBERON:0010235 uvular muscle 6 12854 -UBERON:0003689 sella turcica 5 12855 -UBERON:0003952 anterior stroma of cornea 5 12856 -UBERON:0003953 posterior stroma of cornea 5 12857 -UBERON:0003957 Bruch's membrane 5 12858 -UBERON:0003960 styloid process of temporal bone 5 12859 -UBERON:0003966 gonial bone 5 12860 -UBERON:0003998 hyoid bone lesser horn 5 12861 -UBERON:0004000 tarsal gland acinus 5 12862 -UBERON:0004103 alveolar ridge 5 12863 -UBERON:0004527 alveolar process of maxilla 6 12864 -UBERON:3000505 processus pterygoideus of maxilla 7 12865 -UBERON:0004528 alveolar ridge of mandible 6 12866 -UBERON:0034898 alveolar ridge of premaxilla 6 12867 -UBERON:0004153 ventricular septum intermedium 5 12868 -UBERON:0004361 stylohyoid ligament 5 12869 -UBERON:0004367 Descemet's membrane 5 12870 -UBERON:0004368 Reichert's cartilage 5 12871 -UBERON:0004370 anterior limiting lamina of cornea 5 12872 -UBERON:0004508 skeletal muscle tissue of levator palpebrae superioris 5 12873 -UBERON:0004509 skeletal muscle tissue of trapezius 5 12874 -UBERON:0004546 cribriform plate 5 12875 -UBERON:0004649 sphenoid bone pterygoid process 5 12876 -UBERON:0004654 temporal process of zygomatic bone 5 12877 -UBERON:0004655 zygomatic process of temporal bone 5 12878 -UBERON:0004657 mandible condylar process 5 12879 -UBERON:0004658 mandible head 5 12880 -UBERON:0004659 mandible neck 5 12881 -UBERON:0004660 mandible coronoid process 5 12882 -UBERON:0004661 mandible temporal crest 5 12883 -UBERON:0004666 interventricular septum membranous part 5 12884 -UBERON:0004724 medial palpebral ligament 5 12885 -UBERON:0004752 palatoquadrate cartilage 5 12886 -UBERON:3010821 hyoquadrate process 6 12887 -UBERON:0004772 eyelid tarsus 5 12888 -UBERON:0004773 superior eyelid tarsus 6 12889 -UBERON:0004774 inferior eyelid tarsus 6 12890 -UBERON:0005018 mucosa of nasal septum 5 12891 -UBERON:0005019 mucosa of palate 5 12892 -UBERON:0005024 mucosa of soft palate 6 12893 -UBERON:0005025 mucosa of uvula 7 12894 -UBERON:0005046 mucosa of hard palate 6 12895 -UBERON:0005336 capillary layer of choroid 5 12896 -UBERON:0005342 malleus head 5 12897 -UBERON:0005354 malleus processus brevis 5 12898 -UBERON:0005355 malleus neck 5 12899 -UBERON:0005363 inferior vagus X ganglion 5 12900 -UBERON:0005427 corneal primordium 5 12901 -UBERON:0005446 foramen rotundum 5 12902 -UBERON:0005492 hyaloid vessel 5 12903 -UBERON:0002270 hyaloid artery 6 12904 -UBERON:0006011 hyaloid vein 6 12905 -UBERON:0005619 secondary palatal shelf 5 12906 -UBERON:0005620 primary palate 5 12907 -UBERON:0005653 upper jaw molar epithelium 5 12908 -UBERON:0005654 lower jaw molar epithelium 5 12909 -UBERON:0005658 secondary palatal shelf epithelium 5 12910 -UBERON:0005659 primary palate epithelium 5 12911 -UBERON:0005709 upper jaw incisor epithelium 5 12912 -UBERON:0005710 lower jaw incisor epithelium 5 12913 -UBERON:0005745 optic foramen 5 12914 -UBERON:0005869 maxillary process of inferior nasal concha 5 12915 -UBERON:0005871 palatine process of maxilla 5 12916 -UBERON:0005925 ethmoidal process of inferior nasal concha 5 12917 -UBERON:0005989 atrioventricular septum 5 12918 -UBERON:0005991 aortic valve anulus 5 12919 -UBERON:0005993 pulmonary valve anulus 5 12920 -UBERON:0005994 chorda tendineae 5 12921 -UBERON:0014851 chorda tendinea of left ventricle 6 12922 -UBERON:0014852 chorda tendinea of right ventricle 6 12923 -UBERON:0005995 mitral valve anulus 5 12924 -UBERON:0005997 tricuspid valve anulus 5 12925 -UBERON:0006006 metoptic pillar 5 12926 -UBERON:0006009 cusp of cardiac valve 5 12927 -UBERON:0005990 aortic valve cusp 6 12928 -UBERON:0005992 pulmonary valve cusp 6 12929 -UBERON:0005996 mitral valve cusp 6 12930 -UBERON:0005998 tricuspid valve cusp 6 12931 -UBERON:0006010 hyaloid canal 5 12932 -UBERON:0006207 aortico-pulmonary spiral septum 5 12933 -UBERON:0006271 orbital fissure 5 12934 -UBERON:0005480 superior orbital fissure 6 12935 -UBERON:0014870 inferior orbital fissure 6 12936 -UBERON:0006672 incisive canal 5 12937 -UBERON:0006673 mandibular canal 5 12938 -UBERON:0006722 manubrium of malleus 5 12939 -UBERON:0006812 mental foramen 5 12940 -UBERON:0006813 nasal skeleton 5 12941 -UBERON:3010146 lacrimal 6 12942 -UBERON:0006858 adrenal/interrenal gland 5 12943 -UBERON:0002369 adrenal gland 6 12944 -UBERON:0001233 right adrenal gland 7 12945 -UBERON:0001234 left adrenal gland 7 12946 -UBERON:0006856 interrenal gland 6 12947 -UBERON:0006959 mandible angular process 5 12948 -UBERON:0007681 facial neural crest 5 12949 -UBERON:0008266 periodontal ligament 5 12950 -UBERON:0008799 transverse palatine fold 5 12951 -UBERON:0008969 dental follicle 5 12952 -UBERON:0009119 branchial basket 5 12953 -UBERON:0009199 facial suture 5 12954 -UBERON:0011160 nasal suture 6 12955 -UBERON:0009203 internasal suture 7 12956 -UBERON:0034909 intermaxillary suture 6 12957 -UBERON:0009207 geschmacksstreifen 5 12958 -UBERON:0009753 adrenal gland cortex zone 5 12959 -UBERON:0002053 zona glomerulosa of adrenal gland 6 12960 -UBERON:0002054 zona fasciculata of adrenal gland 6 12961 -UBERON:0002055 zona reticularis of adrenal gland 6 12962 -UBERON:0009024 adrenal gland X zone 6 12963 -UBERON:0013745 zona intermedia of adrenal gland 6 12964 -UBERON:0010074 chromaffin system 5 12965 -UBERON:0010233 stroma of thyroid gland 5 12966 -UBERON:0010244 choroid tapetum lucidum 5 12967 -UBERON:0010246 choroidal guanine tapetum 6 12968 -UBERON:0010247 choroidal tapetum cellulosum 6 12969 -UBERON:0010248 choroidal tapetum fibrosum 6 12970 -UBERON:0010291 layer of sclera 5 12971 -UBERON:0010292 episcleral layer of eyeball 6 12972 -UBERON:0010294 scleral endothelium 6 12973 -UBERON:0010295 substantia propria of sclera 6 12974 -UBERON:0010293 suprachoroid lamina 5 12975 -UBERON:0010321 skeletal element of eye region 5 12976 -UBERON:0010296 scleral skeletal element 6 12977 -UBERON:0010289 scleral cartilage 7 12978 -UBERON:4300181 posterior sclerotic cartilage 8 12979 -UBERON:4300182 anterior sclerotic cartilage 8 12980 -UBERON:0010290 scleral ossicle 7 12981 -UBERON:0007804 sclerotic ring 8 12982 -UBERON:0010297 endochondral scleral ossicle 8 12983 -UBERON:2001432 anterior sclerotic bone 9 12984 -UBERON:2001433 posterior sclerotic bone 9 12985 -UBERON:0010298 intramembranous scleral ossicle 8 12986 -UBERON:0010308 os opticus 9 12987 -UBERON:0010311 scleral sesamoid bone 8 12988 -UBERON:0010309 palpebral bone 6 12989 -UBERON:0010310 nictitating membrane lamina 6 12990 -UBERON:0010326 optic pedicel 6 12991 -UBERON:2000127 antorbital 6 12992 -UBERON:2000203 rhinosphenoid 6 12993 -UBERON:2000376 infraorbital 6 12994 -UBERON:2000223 infraorbital 1 7 12995 -UBERON:2000495 infraorbital 5 7 12996 -UBERON:2001407 infraorbital 2 7 12997 -UBERON:2001408 infraorbital 3 7 12998 -UBERON:2001409 infraorbital 4 7 12999 -UBERON:2001674 infraorbital 6 7 13000 -UBERON:2001702 infraorbital 7 7 13001 -UBERON:2001703 infraorbital 8 7 13002 -UBERON:2001704 infraorbital 9 7 13003 -UBERON:2001705 infraorbital 10 7 13004 -UBERON:2001706 infraorbital 11 7 13005 -UBERON:2001707 infraorbital 12 7 13006 -UBERON:2001708 dermosphenotic 7 13007 -UBERON:2000691 supraorbital bone 6 13008 -UBERON:4200244 anterior supraorbital bone 7 13009 -UBERON:0010365 odontoid tissue 5 13010 -UBERON:0001751 dentine 6 13011 -UBERON:0001752 enamel 6 13012 -UBERON:0001753 cementum 6 13013 -UBERON:0011587 pre-dentine 6 13014 -UBERON:0011588 pre-enamel 6 13015 -UBERON:0011688 pre-enameloid 6 13016 -UBERON:0011692 enameloid 6 13017 -UBERON:4000087 cosmine 6 13018 -UBERON:4000097 orthodentine 6 13019 -UBERON:4000102 osteodentine 6 13020 -UBERON:4000104 ganoine 6 13021 -UBERON:4000106 vasodentine 6 13022 -UBERON:4000107 elasmodine 6 13023 -UBERON:4000123 odontode tissue 6 13024 -UBERON:4300212 acrodin 6 13025 -UBERON:0010367 conjunctival vein 5 13026 -UBERON:0010372 uncinate process of ethmoid 5 13027 -UBERON:0010379 superior tarsal muscle 5 13028 -UBERON:0010426 oropharyngeal choana 5 13029 -UBERON:0010889 ectethmoid 5 13030 -UBERON:0011085 palatoquadrate arch 5 13031 -UBERON:0011156 facial skeleton 5 13032 -UBERON:0011244 perpendicular plate of ethmoid 5 13033 -UBERON:0011245 infra-orbital canal of maxilla 5 13034 -UBERON:0011309 body of mandible 5 13035 -UBERON:0011310 masseteric fossa 5 13036 -UBERON:0011346 palatine raphe 5 13037 -UBERON:0011347 raphe of hard palate 6 13038 -UBERON:0011348 raphe of soft palate 6 13039 -UBERON:0011576 supraorbital ridge 5 13040 -UBERON:0011599 lenticular process of incus bone 5 13041 -UBERON:0011741 cardiac valve leaflet 5 13042 -UBERON:0005484 tricuspid valve leaflet 6 13043 -UBERON:0005998 tricuspid valve cusp 7 13044 -UBERON:0007151 mitral valve leaflet 6 13045 -UBERON:0014853 commissural leaflet of mitral valve 7 13046 -UBERON:0014854 anterior leaflet of mitral valve 7 13047 -UBERON:0014855 posterior leaflet of mitral valve 7 13048 -UBERON:0011742 aortic valve leaflet 6 13049 -UBERON:0011745 pulmonary valve leaflets 6 13050 -UBERON:0011865 corneal stroma collagen fibril 5 13051 -UBERON:0012074 bony part of hard palate 5 13052 -UBERON:0012110 frontal process of zygomatic bone 5 13053 -UBERON:0012175 acoustico-facial VII-VIII ganglion complex 5 13054 -UBERON:0013068 palatine torus 5 13055 -UBERON:0013135 interdental plate 5 13056 -UBERON:0013153 arachnoid villus 5 13057 -UBERON:0013217 zygomatic plate 5 13058 -UBERON:0013397 stratum argenteum of choroid 5 13059 -UBERON:0013399 blood vessel layer of choroid 5 13060 -UBERON:0013450 simian shelf 5 13061 -UBERON:0013767 frontal process of maxilla 5 13062 -UBERON:0014387 mesenchyme derived from neural crest 5 13063 -UBERON:0002062 endocardial cushion 6 13064 -UBERON:0036066 inferior endocardial cushion 7 13065 -UBERON:0036067 superior endocardial cushion 7 13066 -UBERON:0003415 mesenchyme of nasal septum 6 13067 -UBERON:0003417 mesenchyme of soft palate 6 13068 -UBERON:0003424 mesenchyme of hard palate 6 13069 -UBERON:0005687 orbitosphenoid cartilage element 6 13070 -UBERON:0005704 secondary palatal shelf mesenchyme 6 13071 -UBERON:0006263 Meckel's cartilage pre-cartilage condensation 6 13072 -UBERON:0007213 mesenchyme derived from head neural crest 6 13073 -UBERON:0001763 odontogenic papilla 7 13074 -UBERON:0003317 odontogenic papilla of incisor 8 13075 -UBERON:0005707 upper jaw incisor odontogenic papilla 9 13076 -UBERON:0005708 lower jaw incisor odontogenic papilla 9 13077 -UBERON:0015844 molar dental papilla 8 13078 -UBERON:0005700 upper jaw molar odontogenic papilla 9 13079 -UBERON:0005701 lower jaw molar odontogenic papilla 9 13080 -UBERON:4000028 integumentary papilla 8 13081 -UBERON:4000030 oropharyngeal papilla 8 13082 -UBERON:0003314 eye mesenchyme 7 13083 -UBERON:0006230 extrinsic ocular pre-muscle mass 8 13084 -UBERON:0010330 eyelid mesenchyme 8 13085 -UBERON:0003857 upper eyelid mesenchyme 9 13086 -UBERON:0003858 lower eyelid mesenchyme 9 13087 -UBERON:0003421 mesenchyme of vomeronasal organ 7 13088 -UBERON:0003856 uncondensed odontogenic mesenchyme 7 13089 -UBERON:0011641 odontogenic mesenchyme of molar 8 13090 -UBERON:0015846 incisor mesenchyme 8 13091 -UBERON:0004031 head ectomesenchyme 7 13092 -UBERON:0005563 trigeminal neural crest 7 13093 -UBERON:0005565 facio-acoustic neural crest 7 13094 -UBERON:0009192 basisphenoid pre-cartilage condensation 7 13095 -UBERON:0009194 basisphenoid cartilage condenstion 7 13096 -UBERON:0009477 associated mesenchyme of otic placode 7 13097 -UBERON:0009500 periotic mesenchyme 7 13098 -UBERON:0009501 mesenchyme of fronto-nasal process 7 13099 -UBERON:0009204 medial nasal process mesenchyme 8 13100 -UBERON:0009205 lateral nasal process mesenchyme 8 13101 -UBERON:0009920 optic neural crest 7 13102 -UBERON:0010258 mesenchyme from rhombencephalic neural crest 7 13103 -UBERON:0003414 mesenchyme of mandible 8 13104 -UBERON:0005700 upper jaw molar odontogenic papilla 8 13105 -UBERON:0005701 lower jaw molar odontogenic papilla 8 13106 -UBERON:0005705 primary palate mesenchyme 8 13107 -UBERON:0005707 upper jaw incisor odontogenic papilla 8 13108 -UBERON:0005708 lower jaw incisor odontogenic papilla 8 13109 -UBERON:0010254 2nd arch mesenchyme from neural crest 8 13110 -UBERON:0010255 3rd arch mesenchyme from neural crest 8 13111 -UBERON:0010256 4th arch mesenchyme from neural crest 8 13112 -UBERON:0010257 6th arch mesenchyme from neural crest 8 13113 -UBERON:0010259 1st arch mesenchyme from neural crest 8 13114 -UBERON:0010252 1st arch mandibular mesenchyme from neural crest 9 13115 -UBERON:0010253 1st arch maxillary mesenchyme from neural crest 9 13116 -UBERON:0010334 maxillary process mesenchyme from neural crest 8 13117 -UBERON:0010336 mandibular process mesenchyme from neural crest 8 13118 -UBERON:0010354 Reichert's cartilage pre-cartilage condensation 8 13119 -UBERON:0010955 trapezius pre-muscle mass 8 13120 -UBERON:0010732 alisphenoid pre-cartilage condensation 7 13121 -UBERON:0010733 alisphenoid cartilage element 7 13122 -UBERON:0007214 mesenchyme derived from trunk neural crest 6 13123 -UBERON:0011210 migration pathway NC-derived mesenchyme 7 13124 -UBERON:0011208 medial migration pathway NC-derived mesenchyme 8 13125 -UBERON:0011209 lateral migration pathway NC-derived mesenchyme 8 13126 -UBERON:0009191 sphenoid bone pre-cartilage condensation 6 13127 -UBERON:0009193 sphenoid cartilage element 6 13128 -UBERON:0010359 pharyngeal arch mesenchyme from neural crest 6 13129 -UBERON:0010254 2nd arch mesenchyme from neural crest 7 13130 -UBERON:0010255 3rd arch mesenchyme from neural crest 7 13131 -UBERON:0010256 4th arch mesenchyme from neural crest 7 13132 -UBERON:0010257 6th arch mesenchyme from neural crest 7 13133 -UBERON:0010259 1st arch mesenchyme from neural crest 7 13134 -UBERON:0010252 1st arch mandibular mesenchyme from neural crest 8 13135 -UBERON:0010253 1st arch maxillary mesenchyme from neural crest 8 13136 -UBERON:0010728 sphenoid lesser wing pre-cartilage condensation 6 13137 -UBERON:0014397 lateral process of malleus 5 13138 -UBERON:0014780 palatine aponeurosis 5 13139 -UBERON:0014916 velar vocal fold 5 13140 -UBERON:0015060 sphenoid endochondral element 5 13141 -UBERON:0001677 sphenoid bone 6 13142 -UBERON:0009191 sphenoid bone pre-cartilage condensation 6 13143 -UBERON:0009193 sphenoid cartilage element 6 13144 -UBERON:0015224 interventricular foramen intermedium 5 13145 -UBERON:0015751 inferior tarsal muscle 5 13146 -UBERON:0016492 foramen spinosum of sphenoid bone 5 13147 -UBERON:0016881 craniopharyngeal canal 5 13148 -UBERON:0016942 rostral margin of orbit 5 13149 -UBERON:0017249 incisive process of premaxilla 5 13150 -UBERON:0017312 cingulum of upper canine tooth 5 13151 -UBERON:0017313 cingulum of lower canine tooth 5 13152 -UBERON:0018103 posterior fascicle of palatopharyngeus 5 13153 -UBERON:0018160 anterior process of malleus 5 13154 -UBERON:0018242 palatine bone horizontal plate 5 13155 -UBERON:0018265 anterior root of zygomatic arch 5 13156 -UBERON:0018303 adrenal tissue 5 13157 -UBERON:0018268 type 1 adrenal tissue 6 13158 -UBERON:0018269 type 2 adrenal tissue 6 13159 -UBERON:0018270 type 3 adrenal tissue 6 13160 -UBERON:0018271 type 4 adrenal tissue 6 13161 -UBERON:0018314 choanal groove 5 13162 -UBERON:0018331 intraramal joint 5 13163 -UBERON:0018333 labial cartilage 5 13164 -UBERON:0018334 lateral condyle of quadrate 5 13165 -UBERON:0018336 maxillary shank 5 13166 -UBERON:0018337 medial condyle of quadrate 5 13167 -UBERON:0018341 nasal process of premaxilla 5 13168 -UBERON:0018353 quadrate condyle 5 13169 -UBERON:0018373 vidian canal 5 13170 -UBERON:0018407 infra-orbital foramen of maxilla 5 13171 -UBERON:0018409 infra-orbital groove of maxilla 5 13172 -UBERON:0018415 ethmoid foramen 5 13173 -UBERON:0018508 foramen of nasal bone 5 13174 -UBERON:0018542 mandibular symphyseal region 5 13175 -UBERON:0034670 palatal taste bud 5 13176 -UBERON:0034764 remnant of cardiac valve 5 13177 -UBERON:0034900 palatine process of premaxilla 5 13178 -UBERON:0034978 paraganglion (generic) 5 13179 -UBERON:0012279 chromaffin paraganglion 6 13180 -UBERON:0001237 paraaortic body 7 13181 -UBERON:0034979 nonchromaffin paraganglion 6 13182 -UBERON:0001629 carotid body 7 13183 -UBERON:0034971 aortic body 7 13184 -UBERON:0034972 jugular body 7 13185 -UBERON:0035122 interincisive suture 5 13186 -UBERON:0035123 palatomaxillary suture 5 13187 -UBERON:0035126 transverse palatine suture 5 13188 -UBERON:0035127 suture of hard palate 5 13189 -UBERON:0016442 median palatine suture 6 13190 -UBERON:0035130 auditory ossicle endochondral element 5 13191 -UBERON:0001686 auditory ossicle bone 6 13192 -UBERON:0001687 stapes bone 7 13193 -UBERON:0001688 incus bone 7 13194 -UBERON:0001689 malleus bone 7 13195 -UBERON:3000443 plectral apparatus 7 13196 -UBERON:0015016 stapes endochondral element 6 13197 -UBERON:0001687 stapes bone 7 13198 -UBERON:0006294 stapes pre-cartilage condensation 7 13199 -UBERON:0010055 stapes cartilage element 7 13200 -UBERON:0015017 incus endochondral element 6 13201 -UBERON:0001688 incus bone 7 13202 -UBERON:0006248 incus pre-cartilage condensation 7 13203 -UBERON:0007374 incus cartilage element 7 13204 -UBERON:0015018 malleus endochondral element 6 13205 -UBERON:0001689 malleus bone 7 13206 -UBERON:0006262 malleus pre-cartilage condensation 7 13207 -UBERON:0010054 malleus cartilage element 7 13208 -UBERON:0035131 auditory ossicle cartilage element 6 13209 -UBERON:0007374 incus cartilage element 7 13210 -UBERON:0010054 malleus cartilage element 7 13211 -UBERON:0010055 stapes cartilage element 7 13212 -UBERON:0035132 auditory ossicle pre-cartilage element 6 13213 -UBERON:0006248 incus pre-cartilage condensation 7 13214 -UBERON:0006262 malleus pre-cartilage condensation 7 13215 -UBERON:0006294 stapes pre-cartilage condensation 7 13216 -UBERON:0035139 anterior nasal spine of maxilla 5 13217 -UBERON:0035298 tuberculum sellae 5 13218 -UBERON:0035599 profundal part of trigeminal ganglion complex 5 13219 -UBERON:0035601 maxillomandibular part of trigeminal ganglion complex 5 13220 -UBERON:0035848 infraorbital margin 5 13221 -UBERON:0035849 orbital margin 5 13222 -UBERON:0035957 antotic pillar 5 13223 -UBERON:0035958 preoptic pillar 5 13224 -UBERON:0035966 scleral lamina cribrosa 5 13225 -UBERON:0036167 Sattler's layer 5 13226 -UBERON:0036168 Haller's layer 5 13227 -UBERON:0036254 piriform aperture 5 13228 -UBERON:0036300 tributary of central retinal vein 5 13229 -UBERON:0037089 wall of orbit 5 13230 -UBERON:2000224 quadrate ventral process 5 13231 -UBERON:2000699 entopterygoid vertical strut 5 13232 -UBERON:2001577 premaxilla ascending process 5 13233 -UBERON:2001578 anterior dorsomedial process of autopalatine 5 13234 -UBERON:2001603 maxilla ascending process 5 13235 -UBERON:2001610 quadrate dorsal process 5 13236 -UBERON:2001611 quadrate posterodorsal process 5 13237 -UBERON:2001688 palatine cartilage 5 13238 -UBERON:2001689 pterygoquadrate cartilage 5 13239 -UBERON:2001690 anterior cartilage of palatine 5 13240 -UBERON:2001691 posterior cartilage of palatine 5 13241 -UBERON:2001752 pre-narial cartilage 5 13242 -UBERON:2002009 medial cartilage of palatine 5 13243 -UBERON:2002012 dentary foramen 5 13244 -UBERON:2002120 orbitosphenoid septum 5 13245 -UBERON:2002257 premaxilla dentigerous process 5 13246 -UBERON:3000002 alary cartilage 5 13247 -UBERON:3000003 alary process of premaxilla 5 13248 -UBERON:3000012 angulosplenial coronoid process 5 13249 -UBERON:3000015 anterior maxillary process 5 13250 -UBERON:3000016 anterior nasal wall 5 13251 -UBERON:3000017 anterior process of pars palatina of maxilla 5 13252 -UBERON:3000018 anterior ramus of pterygoid 5 13253 -UBERON:3000022 antorbital process 5 13254 -UBERON:3000031 ascending process of palatoquadrate 5 13255 -UBERON:3000036 basal process of palatoquadrate 5 13256 -UBERON:3000038 basimandibulare 5 13257 -UBERON:3000059 capsular process 5 13258 -UBERON:3000068 cartilago ectochoanalis 5 13259 -UBERON:3000069 cartilago infranarina 5 13260 -UBERON:3000079 cartilago retronarina 5 13261 -UBERON:3000110 crista contacta 5 13262 -UBERON:3000111 crista dentalis of maxilla 5 13263 -UBERON:3000112 crista dentalis of premaxilla 5 13264 -UBERON:3000113 crista intermedia 5 13265 -UBERON:3000115 crista lateralis of premaxilla 5 13266 -UBERON:3000117 crista subnasalis 5 13267 -UBERON:3000118 crista supraorbitalis 5 13268 -UBERON:3000131 dilatatio alaris 5 13269 -UBERON:3000155 extremitas anterior 5 13270 -UBERON:3000177 flange of quadratojugal 5 13271 -UBERON:3000178 footplate of pars media plectri 5 13272 -UBERON:3000234 inferior prenasal cartilage 5 13273 -UBERON:3000237 infrarostral cartilage 5 13274 -UBERON:3000254 lamella alaris 5 13275 -UBERON:3000255 lamina anterior of pars facialis 5 13276 -UBERON:3000263 lamina precerebralis 5 13277 -UBERON:3000264 lamina superior 5 13278 -UBERON:3000280 margo mandibularis of pterygoid 5 13279 -UBERON:3000281 margo orbitalis of maxilla 5 13280 -UBERON:3000282 margo orbitalis of pterygoid 5 13281 -UBERON:3000283 margo orbitalis of squamosal 5 13282 -UBERON:3000284 margo tympanicus of pterygoid 5 13283 -UBERON:3000290 medial inferior prenasal cartilage 5 13284 -UBERON:3000292 medial ramus of pterygoid 5 13285 -UBERON:3000294 median prenasal process 5 13286 -UBERON:3000329 oblique cartilage 5 13287 -UBERON:3000363 otic ligament 5 13288 -UBERON:3000364 otic plate of pterygoid 5 13289 -UBERON:3000365 otic process 5 13290 -UBERON:3000367 otic ramus of squamosal 5 13291 -UBERON:3000375 palatine process of the pars facialis of the maxilla 5 13292 -UBERON:3000380 palatoquadrate articular process 5 13293 -UBERON:3000381 paranasal commissure 5 13294 -UBERON:3000389 paries nasi 5 13295 -UBERON:3000394 pars articularis of mandibular arch 5 13296 -UBERON:3000399 pars externa plectri 5 13297 -UBERON:3000400 pars facialis of maxilla 5 13298 -UBERON:3000401 pars facialis of maxillopalatine 5 13299 -UBERON:3000406 pars interna plectri 5 13300 -UBERON:3000408 pars media plectri 5 13301 -UBERON:3000434 planum antorbitale 5 13302 -UBERON:3000437 planum conchale 5 13303 -UBERON:3000438 planum internasale 5 13304 -UBERON:3000440 planum terminale 5 13305 -UBERON:3000441 planum triangulare 5 13306 -UBERON:3000446 posterior condyle 5 13307 -UBERON:3000448 posterior maxillary process 5 13308 -UBERON:3000449 posterior maxillary process dorsal process 5 13309 -UBERON:3000450 posterior mental process 5 13310 -UBERON:3000451 posterior ramus of pterygoid 5 13311 -UBERON:3000453 posterolateral vomerine process 5 13312 -UBERON:3000454 postnasal wall 5 13313 -UBERON:3000459 prearticular coronoid process 5 13314 -UBERON:3000467 preorbital process of the pars facialis of the maxilla 5 13315 -UBERON:3000486 processus ascendens plectri 5 13316 -UBERON:3000492 processus infrafenestralis 5 13317 -UBERON:3000493 processus internus of pseudoangular 5 13318 -UBERON:3000494 processus lingualis of pterygoid 5 13319 -UBERON:3000500 processus posterior of maxilla 5 13320 -UBERON:3000509 processus suprafenestralis 5 13321 -UBERON:3000512 processus zygomatico-maxillaris 5 13322 -UBERON:3000516 pseudobasal process 5 13323 -UBERON:3000523 pterygoid process of palatoquadrate 5 13324 -UBERON:3000527 quadrate process of palatoquadrate 5 13325 -UBERON:3000543 retroarticular process 5 13326 -UBERON:3000547 rostral process 5 13327 -UBERON:3000563 seydels palatal process 5 13328 -UBERON:3000565 skeletal support for eminentia olfactoria 5 13329 -UBERON:3000569 solum nasi 5 13330 -UBERON:3000580 stylus of pars media plectri 5 13331 -UBERON:3000586 superior prenasal cartilage 5 13332 -UBERON:3000601 tectum nasi 5 13333 -UBERON:3000628 ventral ramus of squamosal 5 13334 -UBERON:3000634 vomerine canal 5 13335 -UBERON:3000639 zygomatic ramus of squamosal 5 13336 -UBERON:3000644 processus lingularis of nasal skeleton 5 13337 -UBERON:3000646 margo libera 5 13338 -UBERON:3000647 crista interna 5 13339 -UBERON:3000648 crista praeopercularis 5 13340 -UBERON:3000649 anterior process of vomer 5 13341 -UBERON:3000650 processus frontalis of maxilla 5 13342 -UBERON:3000651 lamina anterior of maxilla 5 13343 -UBERON:3000653 pars glenoidalis of quadratojugal 5 13344 -UBERON:3000654 pars jugalis 5 13345 -UBERON:3000655 processus dorsalis of lamella alaris 5 13346 -UBERON:3000656 processus posterodorsalis of lamella alaris 5 13347 -UBERON:3000657 dentigerous process 5 13348 -UBERON:3000658 prechoanal process 5 13349 -UBERON:3000659 postchoanal process 5 13350 -UBERON:3000660 margo choanalis 5 13351 -UBERON:3000661 crista vomeri 5 13352 -UBERON:3000998 suprarostral cartilage 5 13353 -UBERON:3010061 anterior quadratocranial commissure 5 13354 -UBERON:3010094 quadratoethmoid process 5 13355 -UBERON:3010458 suprarostral ala 5 13356 -UBERON:3010528 articular process of palatoquadrate 5 13357 -UBERON:3010820 suboccular arch 5 13358 -UBERON:3010824 processus triangularis of palatoquadrate cartilage 5 13359 -UBERON:3010827 anterior prenasal cartilage 5 13360 -UBERON:4200198 incisor process 5 13361 -UBERON:4200251 meckelian foramen 5 13362 -UBERON:4300002 palatine prong 5 13363 -UBERON:4300196 processus descendens of sphenoid 5 13364 -UBERON:4300197 Westoll line 5 13365 -UBERON:4300252 ethmo-palatine cartilage 5 13366 -UBERON:4300275 suborbital stay 5 13367 -UBERON:4500016 premaxilla articular process 5 13368 -UBERON:4500018 premaxilla maxillary process 5 13369 -UBERON:0010371 ecto-epithelium 4 13370 -UBERON:0001049 neural tube 5 13371 -UBERON:0003051 ear vesicle 5 13372 -UBERON:0003055 periderm 5 13373 -UBERON:0002027 stratum corneum of epidermis 6 13374 -UBERON:0002284 hyponychium 7 13375 -UBERON:0003071 eye primordium 5 13376 -UBERON:0003075 neural plate 5 13377 -UBERON:0003854 spinal cord neural plate 6 13378 -UBERON:0009610 forebrain neural plate 6 13379 -UBERON:0009611 midbrain neural plate 6 13380 -UBERON:0009614 hindbrain neural plate 6 13381 -UBERON:0003098 optic stalk 5 13382 -UBERON:0003229 epithelium of elbow 5 13383 -UBERON:0003230 epithelium of carpal region 5 13384 -UBERON:0003231 epithelium of hip 5 13385 -UBERON:0003232 epithelium of knee 5 13386 -UBERON:0003233 epithelium of shoulder 5 13387 -UBERON:0003244 epithelium of mammary gland 5 13388 -UBERON:0001765 mammary duct 6 13389 -UBERON:0011844 duct of areolar gland 7 13390 -UBERON:0015132 extralobar lactiferous duct 7 13391 -UBERON:0015133 terminal lactiferous duct 7 13392 -UBERON:0015134 main lactiferous duct 7 13393 -UBERON:0015135 primary lactiferous duct 7 13394 -UBERON:0015136 secondary lactiferous duct 7 13395 -UBERON:0015137 tertiary lactiferous duct 7 13396 -UBERON:0015138 quarternary lactiferous duct 7 13397 -UBERON:0022360 male mammary gland duct 7 13398 -UBERON:0004182 mammary gland cord 6 13399 -UBERON:0005313 mammary duct terminal end bud 6 13400 -UBERON:0006954 mammary gland myoepithelium 6 13401 -UBERON:0003247 epithelium of forearm 5 13402 -UBERON:0003248 epithelium of footplate 5 13403 -UBERON:0003249 epithelium of otic placode 5 13404 -UBERON:2000225 lateral crista primordium 6 13405 -UBERON:2000411 posterior crista primordium 6 13406 -UBERON:0003355 epithelium of incisor 5 13407 -UBERON:0005709 upper jaw incisor epithelium 6 13408 -UBERON:0005710 lower jaw incisor epithelium 6 13409 -UBERON:0015840 incisor dental lamina 6 13410 -UBERON:0003358 epithelium of soft palate 5 13411 -UBERON:0003368 epithelium of hard palate 5 13412 -UBERON:0003371 pelvic appendage bud ectoderm 5 13413 -UBERON:0003372 pectoral appendage bud ectoderm 5 13414 -UBERON:0003843 dental epithelium 5 13415 -UBERON:0005709 upper jaw incisor epithelium 6 13416 -UBERON:0005710 lower jaw incisor epithelium 6 13417 -UBERON:0006949 cervical loop 6 13418 -UBERON:0006950 stellate reticulum 6 13419 -UBERON:0006951 inner dental epithelium 6 13420 -UBERON:0006952 outer dental epithelium 6 13421 -UBERON:0015839 molar epithelium 6 13422 -UBERON:0005653 upper jaw molar epithelium 7 13423 -UBERON:0005654 lower jaw molar epithelium 7 13424 -UBERON:0015841 molar dental lamina 7 13425 -UBERON:2005135 primary dental epithelium 6 13426 -UBERON:0003911 choroid plexus epithelium 5 13427 -UBERON:0004274 lateral ventricle choroid plexus epithelium 6 13428 -UBERON:0004275 third ventricle choroid plexus epithelium 6 13429 -UBERON:0004276 fourth ventricle choroid plexus epithelium 6 13430 -UBERON:0004008 cerebellar plate 5 13431 -UBERON:0004022 germinal neuroepithelium 5 13432 -UBERON:0004060 neural tube ventricular layer 5 13433 -UBERON:0013160 epithalamus ventricular layer 6 13434 -UBERON:0034710 spinal cord ventricular layer 6 13435 -UBERON:0004061 neural tube mantle layer 5 13436 -UBERON:0005883 neural tube lateral wall mantle layer 6 13437 -UBERON:0009580 diencephalon mantle layer 6 13438 -UBERON:0009581 midbrain mantle layer 6 13439 -UBERON:0009583 spinal cord mantle layer 6 13440 -UBERON:0013159 epithalamus mantle layer 6 13441 -UBERON:0004670 ependyma 5 13442 -UBERON:0005357 brain ependyma 6 13443 -UBERON:0004642 third ventricle ependyma 7 13444 -UBERON:0004643 lateral ventricle ependyma 7 13445 -UBERON:0004644 fourth ventricle ependyma 7 13446 -UBERON:0005359 spinal cord ependyma 6 13447 -UBERON:0004882 eponychium 5 13448 -UBERON:0005062 neural fold 5 13449 -UBERON:0009748 cephalic neural fold 6 13450 -UBERON:0005078 lamina terminalis of neural tube 5 13451 -UBERON:0005225 upper leg epithelium 5 13452 -UBERON:0005226 pedal digit epithelium 5 13453 -UBERON:0005649 pedal digit 2 epithelium 6 13454 -UBERON:0005650 pedal digit 3 epithelium 6 13455 -UBERON:0005651 pedal digit 4 epithelium 6 13456 -UBERON:0005652 pedal digit 5 epithelium 6 13457 -UBERON:0010693 pedal digit 1 epithelium 6 13458 -UBERON:0005227 manual digit epithelium 5 13459 -UBERON:0005645 manual digit 2 epithelium 6 13460 -UBERON:0005646 manual digit 3 epithelium 6 13461 -UBERON:0005647 manual digit 4 epithelium 6 13462 -UBERON:0005648 manual digit 5 epithelium 6 13463 -UBERON:0010690 manual digit 1 epithelium 6 13464 -UBERON:0005228 upper arm epithelium 5 13465 -UBERON:0005229 lower leg epithelium 5 13466 -UBERON:0005333 mammary bud 5 13467 -UBERON:0005356 Rathke's pouch 5 13468 -UBERON:0005656 lens vesicle epithelium 5 13469 -UBERON:0005658 secondary palatal shelf epithelium 5 13470 -UBERON:0005659 primary palate epithelium 5 13471 -UBERON:0006250 infundibular recess of 3rd ventricle 5 13472 -UBERON:0006267 notochordal plate 5 13473 -UBERON:0006937 inner ear epithelium 5 13474 -UBERON:0002223 endolymphatic sac 6 13475 -UBERON:0003238 epithelium of superior semicircular canal 6 13476 -UBERON:0007274 crista of ampulla of anterior semicircular duct of membranous laybrinth 7 13477 -UBERON:0003239 epithelium of posterior semicircular canal 6 13478 -UBERON:0007275 crista of ampulla of posterior semicircular duct of membranous laybrinth 7 13479 -UBERON:2000411 posterior crista primordium 7 13480 -UBERON:0003240 epithelium of lateral semicircular canal 6 13481 -UBERON:0007276 crista of ampulla of lateral semicircular duct of membranous laybrinth 7 13482 -UBERON:2000225 lateral crista primordium 7 13483 -UBERON:0003243 epithelium of cochlear duct 6 13484 -UBERON:0003246 epithelium of endolymphatic sac 6 13485 -UBERON:0003362 epithelium of endolymphatic duct 6 13486 -UBERON:0006932 vestibular epithelium 6 13487 -UBERON:0003241 epithelium of utricle 7 13488 -UBERON:0003242 epithelium of saccule 7 13489 -UBERON:0003363 epithelium of ductus reuniens 7 13490 -UBERON:0005657 crus commune epithelium 7 13491 -UBERON:0006935 crista ampullaris neuroepithelium 7 13492 -UBERON:0007274 crista of ampulla of anterior semicircular duct of membranous laybrinth 8 13493 -UBERON:0007275 crista of ampulla of posterior semicircular duct of membranous laybrinth 8 13494 -UBERON:0007276 crista of ampulla of lateral semicircular duct of membranous laybrinth 8 13495 -UBERON:2002206 macula communis 6 13496 -UBERON:0006964 pars distalis of adenohypophysis 5 13497 -UBERON:0007376 outer epithelium 5 13498 -UBERON:0001003 skin epidermis 6 13499 -UBERON:0005083 nipple sheath 7 13500 -UBERON:0009200 limb epidermis 7 13501 -UBERON:0015484 epidermis of metapodial pad 8 13502 -UBERON:0007383 enveloping layer of ectoderm 5 13503 -UBERON:0008969 dental follicle 5 13504 -UBERON:0009970 epithelium of pancreatic duct 5 13505 -UBERON:0010065 auditory meatus epithelium 5 13506 -UBERON:0010069 outer epithelial layer of tympanic membrane 5 13507 -UBERON:0010332 epithelium of handplate 5 13508 -UBERON:0011272 embryonic skin basal layer 5 13509 -UBERON:0011642 oral epithelium from ectoderm 5 13510 -UBERON:0009671 nasal fin 6 13511 -UBERON:0012287 Rathkes pouch epithelium 6 13512 -UBERON:0011804 feather bud, epidermal component 5 13513 -UBERON:0012313 1st arch maxillary ectoderm 5 13514 -UBERON:0013155 1st arch mandibular ectoderm 5 13515 -UBERON:0013694 brain endothelium 5 13516 -UBERON:0014702 frontonasal process epithelium 5 13517 -UBERON:0005233 medial-nasal process ectoderm 6 13518 -UBERON:0009206 lateral nasal process surface ectoderm 6 13519 -UBERON:0014703 anal membrane ectodermal component 5 13520 -UBERON:0015716 anal canal epithelium 6 13521 -UBERON:0014712 carapacial ridge ectoderm 5 13522 -UBERON:0015766 epithelium of duct of salivary gland 5 13523 -UBERON:0015808 eye epithelium 5 13524 -UBERON:0001772 corneal epithelium 6 13525 -UBERON:0001778 ciliary epithelium 6 13526 -UBERON:0001782 pigmented layer of retina 6 13527 -UBERON:0001803 epithelium of lens 6 13528 -UBERON:0005614 lens anterior epithelium 7 13529 -UBERON:0005615 lens equatorial epithelium 7 13530 -UBERON:0001985 corneal endothelium 6 13531 -UBERON:0002506 iris epithelium 6 13532 -UBERON:0004694 Harderian gland epithelium 6 13533 -UBERON:0004817 lacrimal gland epithelium 6 13534 -UBERON:0005638 anterior chamber epithelium 6 13535 -UBERON:0006763 epithelium of conjunctiva 6 13536 -UBERON:0010294 scleral endothelium 6 13537 -UBERON:0022284 lacrimal gland bud 6 13538 -UBERON:0035034 eyelid epithelium 6 13539 -UBERON:0003844 upper eyelid epithelium 7 13540 -UBERON:0003845 lower eyelid epithelium 7 13541 -UBERON:0019204 skin epithelium 5 13542 -UBERON:0005975 hair follicle bulge 6 13543 -UBERON:0006004 hair follicle matrix region 6 13544 -UBERON:0006005 hair follicle isthmus 6 13545 -UBERON:0015484 epidermis of metapodial pad 6 13546 -UBERON:0019306 nose epithelium 5 13547 -UBERON:0003356 epithelium of nasal septum 6 13548 -UBERON:0003367 epithelium of vomeronasal organ 6 13549 -UBERON:0004692 external naris epithelium 6 13550 -UBERON:0005384 nasal cavity epithelium 6 13551 -UBERON:0001997 olfactory epithelium 7 13552 -UBERON:0005385 nasal cavity respiratory epithelium 7 13553 -UBERON:0009671 nasal fin 7 13554 -UBERON:0006266 nasolacrimal groove 6 13555 -UBERON:0019307 epithelium of external nose 6 13556 -UBERON:2001428 olfactory rosette 6 13557 -UBERON:2001431 primitive olfactory epithelium 5 13558 -UBERON:6001764 labial disc 5 13559 -UBERON:6001765 clypeo-labral disc 5 13560 -UBERON:6001766 eye-antennal disc 5 13561 -UBERON:6001767 antennal disc 5 13562 -UBERON:6001776 dorsal thoracic disc 5 13563 -UBERON:6001778 wing disc 6 13564 -UBERON:6001779 haltere disc 6 13565 -UBERON:6001780 ventral thoracic disc 5 13566 -UBERON:6001781 prothoracic leg disc 6 13567 -UBERON:6001784 genital disc 5 13568 -UBERON:6001785 male genital disc 6 13569 -UBERON:6001787 female genital disc 6 13570 -UBERON:6006032 mesothoracic tergum primordium 5 13571 -UBERON:0010402 epidermis suprabasal layer 4 13572 -UBERON:0010404 lateral ventricle subependymal layer 4 13573 -UBERON:0010409 ocular surface region 4 13574 -UBERON:0010427 ciliary processes 4 13575 -UBERON:0010507 layer of dura mater 4 13576 -UBERON:0010505 periosteal dura mater 5 13577 -UBERON:0010506 meningeal dura mater 5 13578 -UBERON:0010910 opisthotic 4 13579 -UBERON:0011060 perilymphatic channel 4 13580 -UBERON:0001863 scala vestibuli 5 13581 -UBERON:0001864 scala tympani 5 13582 -UBERON:0002295 scala media 5 13583 -UBERON:0011147 Verson's gland 4 13584 -UBERON:0011190 lunule of nail 4 13585 -UBERON:0011221 ora serrata of retina 4 13586 -UBERON:0011253 gland of anal sac 4 13587 -UBERON:0011255 Eimer's organ 4 13588 -UBERON:0011256 rhinarium 4 13589 -UBERON:0011357 Reissner's fiber 4 13590 -UBERON:0011358 infundibular organ 4 13591 -UBERON:0011359 urophysis 4 13592 -UBERON:0011577 flexural organ 4 13593 -UBERON:0011627 orbital part of frontal bone 4 13594 -UBERON:0011675 perichordal ring 4 13595 -UBERON:0011774 utriculosaccular duct 4 13596 -UBERON:0011784 feather shaft 4 13597 -UBERON:0008288 feather rachis 5 13598 -UBERON:0011785 ramus of feather barb 4 13599 -UBERON:0011786 ramus of feather barbule 4 13600 -UBERON:0011800 dermal pulp of feather shaft 4 13601 -UBERON:0011801 dermal condensation of feather follicle 4 13602 -UBERON:0011803 feather bud, dermal component 4 13603 -UBERON:0011806 dermis of feather follicle 4 13604 -UBERON:0011807 epidermis of feather follicle 4 13605 -UBERON:0011808 outer epidermal layer of feather follicle 5 13606 -UBERON:0011809 inner epidermal layer of feather follicle 5 13607 -UBERON:0011828 areolar tubercle 4 13608 -UBERON:0011845 duct of sebaceous gland 4 13609 -UBERON:0011844 duct of areolar gland 5 13610 -UBERON:0011846 acinus of sebaceous gland 4 13611 -UBERON:0004000 tarsal gland acinus 5 13612 -UBERON:0011854 acinus of areolar gland 5 13613 -UBERON:0011856 acinus of lactiferous gland 4 13614 -UBERON:0011854 acinus of areolar gland 5 13615 -UBERON:0011857 acinus of lacrimal gland 4 13616 -UBERON:0011859 internal acoustic meatus 4 13617 -UBERON:0011892 anterior uvea 4 13618 -UBERON:0011901 hair matrix 4 13619 -UBERON:0011922 cochlear basement membrane 4 13620 -UBERON:0011940 arrector pili muscle of vibrissa 4 13621 -UBERON:0012103 suspensory ligament of breast 4 13622 -UBERON:0012109 zygomatic process of frontal bone 4 13623 -UBERON:0012127 feather barbicel 4 13624 -UBERON:0012243 nuptial pad 4 13625 -UBERON:0012244 stratum intermedium of epidermis 4 13626 -UBERON:0012278 gland of nasal mucosa 4 13627 -UBERON:0002232 olfactory gland 5 13628 -UBERON:0013233 supraorbital gland 5 13629 -UBERON:0035077 lateral nasal gland 5 13630 -UBERON:0012430 tunica fibrosa of eyeball 4 13631 -UBERON:0012447 podotheca 4 13632 -UBERON:0012490 muscle layer of anal canal 4 13633 -UBERON:0013146 venous system of brain 4 13634 -UBERON:0013166 vallecula of cerebellum 4 13635 -UBERON:0013206 nasal tentacle 4 13636 -UBERON:0013229 eyelid gland 4 13637 -UBERON:0013224 Ciaccio's gland 5 13638 -UBERON:0013228 sweat gland of eyelid 5 13639 -UBERON:0013230 nictitans gland 5 13640 -UBERON:0013231 sebaceous gland of eyelid 5 13641 -UBERON:0001818 tarsal gland 6 13642 -UBERON:0018233 gland of Zeis 6 13643 -UBERON:0013442 postorbital process 4 13644 -UBERON:0013487 epidermal ridge of digit 4 13645 -UBERON:0013655 elastica externa of notochord 4 13646 -UBERON:0013682 peripheral region of retina 4 13647 -UBERON:0013704 notochordal canal 4 13648 -UBERON:0013720 dartos muscle of labia majora 4 13649 -UBERON:0013731 basilar papilla 4 13650 -UBERON:0013764 common crus of semicircular duct 4 13651 -UBERON:0014538 subdivision of spinal cord central canal 4 13652 -UBERON:0014541 thoracic division of spinal cord central canal 5 13653 -UBERON:0014542 cervical division of cord spinal central canal 5 13654 -UBERON:0014543 lumbar division of spinal cord central canal 5 13655 -UBERON:0014547 sacral division of spinal cord central canal 5 13656 -UBERON:0014567 layer of hippocampal field 4 13657 -UBERON:0014560 CA3 stratum lucidum 5 13658 -UBERON:0034810 stratum lucidum of caudal CA3 6 13659 -UBERON:0034840 stratum lucidum of rostral CA3 6 13660 -UBERON:0034870 stratum lucidum of uncal CA3 6 13661 -UBERON:0034798 stratum lacunosum-moleculare of caudal CA1 5 13662 -UBERON:0034799 stratum radiatum of caudal CA1 5 13663 -UBERON:0034800 stratum pyramidale of caudal CA1 5 13664 -UBERON:0034801 stratum oriens of caudal CA1 5 13665 -UBERON:0034803 stratum lacunosum-moleculare of caudal CA2 5 13666 -UBERON:0034804 stratum radiatum of caudal CA2 5 13667 -UBERON:0034805 stratum pyramidale of caudal CA2 5 13668 -UBERON:0034806 stratum oriens of caudal CA2 5 13669 -UBERON:0034808 stratum lacunosum-moleculare of caudal CA3 5 13670 -UBERON:0034809 stratum radiatum of caudal CA3 5 13671 -UBERON:0034811 stratum pyramidale of caudal CA3 5 13672 -UBERON:0034812 stratum oriens of caudal CA3 5 13673 -UBERON:0034828 stratum lacunosum-moleculare of rostral CA1 5 13674 -UBERON:0034829 stratum radiatum of rostral CA1 5 13675 -UBERON:0034830 stratum pyramidale of rostral CA1 5 13676 -UBERON:0034831 stratum oriens of rostral CA1 5 13677 -UBERON:0034833 stratum lacunosum-moleculare of rostral CA2 5 13678 -UBERON:0034834 stratum radiatum of rostral CA2 5 13679 -UBERON:0034835 stratum pyramidale of rostral CA2 5 13680 -UBERON:0034836 stratum oriens of rostral CA2 5 13681 -UBERON:0034838 stratum lacunosum-moleculare of rostral CA3 5 13682 -UBERON:0034839 stratum radiatum of rostral CA3 5 13683 -UBERON:0034841 stratum pyramidale of rostral CA3 5 13684 -UBERON:0034842 stratum oriens of rostral CA3 5 13685 -UBERON:0034858 stratum lacunosum-moleculare of uncal CA1 5 13686 -UBERON:0034859 stratum radiatum of uncal CA1 5 13687 -UBERON:0034860 stratum pyramidale of uncal CA1 5 13688 -UBERON:0034861 stratum oriens of uncal CA1 5 13689 -UBERON:0034863 stratum lacunosum-moleculare of uncal CA2 5 13690 -UBERON:0034864 stratum radiatum of uncal CA2 5 13691 -UBERON:0034865 stratum pyramidale of uncal CA2 5 13692 -UBERON:0034866 stratum oriens of uncal CA2 5 13693 -UBERON:0034868 stratum lacunosum-moleculare of uncal CA3 5 13694 -UBERON:0034869 stratum radiatum of uncal CA3 5 13695 -UBERON:0034871 stratum pyramidale of uncal CA3 5 13696 -UBERON:0034872 stratum oriens of uncal CA3 5 13697 -UBERON:0014624 basis modioli 4 13698 -UBERON:0014626 base of cochlear canal 4 13699 -UBERON:0014628 vestibular fissure of the cochlear canal 4 13700 -UBERON:0014629 terminal part of the cochlear canal 4 13701 -UBERON:0015151 Harderian gland duct 4 13702 -UBERON:0015161 inferior branch of oculomotor nerve 4 13703 -UBERON:0015162 superior branch of oculomotor nerve 4 13704 -UBERON:0015181 neck of tooth 4 13705 -UBERON:0015241 parapineal organ 4 13706 -UBERON:0015245 septal olfactory organ 4 13707 -UBERON:0013208 Grueneberg ganglion 5 13708 -UBERON:0015246 septal organ of Masera 5 13709 -UBERON:0015784 duct of olfactory gland 4 13710 -UBERON:0015785 acinus of olfactory gland 4 13711 -UBERON:0015788 olfactory apparatus chamber 4 13712 -UBERON:0015886 root of nail 4 13713 -UBERON:0016440 glabella region of bone 4 13714 -UBERON:0016464 dorsum of nose 4 13715 -UBERON:0016526 lobe of cerebral hemisphere 4 13716 -UBERON:0001871 temporal lobe 5 13717 -UBERON:0002808 left temporal lobe 6 13718 -UBERON:0002809 right temporal lobe 6 13719 -UBERON:0001872 parietal lobe 5 13720 -UBERON:0002802 left parietal lobe 6 13721 -UBERON:0002803 right parietal lobe 6 13722 -UBERON:0002021 occipital lobe 5 13723 -UBERON:0002806 left occipital lobe 6 13724 -UBERON:0002807 right occipital lobe 6 13725 -UBERON:0002600 limbic lobe 5 13726 -UBERON:0002804 left limbic lobe 6 13727 -UBERON:0002805 right limbic lobe 6 13728 -UBERON:0005366 olfactory lobe 5 13729 -UBERON:0016525 frontal lobe 5 13730 -UBERON:0023255 sub-lobar region 5 13731 -UBERON:0024900 left sub-lobar region 6 13732 -UBERON:0024901 right sub-lobar region 6 13733 -UBERON:0016567 statoconial membrane 4 13734 -UBERON:0016568 gelatinous layer of statoconial membrane 4 13735 -UBERON:0016569 subcupular meshwork of statoconial membrane 4 13736 -UBERON:0016854 dorsal part of optic cup 4 13737 -UBERON:0016855 ventral part of optic cup 4 13738 -UBERON:0016930 ridge of tooth 4 13739 -UBERON:0016931 transverse ridge of tooth 5 13740 -UBERON:0016932 triangular ridge of tooth 5 13741 -UBERON:0016933 oblique ridge of tooth 5 13742 -UBERON:0016934 marginal ridge of tooth 5 13743 -UBERON:0016937 transverse marginal ridge of tooth 6 13744 -UBERON:0016938 mesial marginal ridge of tooth 6 13745 -UBERON:0016939 distal marginal ridge of tooth 6 13746 -UBERON:0017295 cingulum of tooth 5 13747 -UBERON:0013612 lower jaw cingulum 6 13748 -UBERON:0017299 cingulum of lower incisor tooth 7 13749 -UBERON:0017313 cingulum of lower canine tooth 7 13750 -UBERON:0017612 cingulum of lower jaw molar 7 13751 -UBERON:0013613 upper jaw cingulum 6 13752 -UBERON:0017298 cingulum of upper incisor tooth 7 13753 -UBERON:0017312 cingulum of upper canine tooth 7 13754 -UBERON:0017613 cingulum of upper jaw molar 7 13755 -UBERON:0017296 cingulum of incisor tooth 6 13756 -UBERON:0017298 cingulum of upper incisor tooth 7 13757 -UBERON:0017299 cingulum of lower incisor tooth 7 13758 -UBERON:0017297 cingulum of canine tooth 6 13759 -UBERON:0017312 cingulum of upper canine tooth 7 13760 -UBERON:0017313 cingulum of lower canine tooth 7 13761 -UBERON:0017614 cingulum of molar tooth 6 13762 -UBERON:0017612 cingulum of lower jaw molar 7 13763 -UBERON:0017613 cingulum of upper jaw molar 7 13764 -UBERON:0018289 paracristid 5 13765 -UBERON:0018290 postcingulum 5 13766 -UBERON:0018274 postcingulum of deciduous premolar 5 6 13767 -UBERON:0018291 posteroloph 5 13768 -UBERON:0018286 molar 1 posteroloph 6 13769 -UBERON:0018292 posthypocrista 5 13770 -UBERON:0018275 posthypocrista of deciduous premolar 5 6 13771 -UBERON:0018293 precingulum 5 13772 -UBERON:0018295 preprotocrista 5 13773 -UBERON:0017631 calcified structure of brain 4 13774 -UBERON:0017632 pineal corpora arenacea 5 13775 -UBERON:0017633 choroid plexus corpora arenacea 5 13776 -UBERON:0017690 internal surface of frontal bone 4 13777 -UBERON:0018104 parafoveal part of retina 4 13778 -UBERON:0018105 perifoveal part of retina 4 13779 -UBERON:0018107 foveola of retina 4 13780 -UBERON:0018140 mammary lobe 4 13781 -UBERON:0018231 labyrinthine artery 4 13782 -UBERON:0018239 rhombomere boundary 4 13783 -UBERON:0018262 dorsal zone of medial entorhinal cortex 4 13784 -UBERON:0018278 epidermal egg tooth 4 13785 -UBERON:0018309 central figure of scute 4 13786 -UBERON:0018323 hyoid articular area 4 13787 -UBERON:0018339 metotic fissure 4 13788 -UBERON:0018345 stylar shelf 4 13789 -UBERON:0018359 subolfactory process 4 13790 -UBERON:0018374 sallet 4 13791 -UBERON:0018663 recessus basilaris 4 13792 -UBERON:0019207 chorioretinal region 4 13793 -UBERON:0019210 pole of lens 4 13794 -UBERON:0016459 posterior pole of lens 5 13795 -UBERON:0019208 anterior pole of lens 5 13796 -UBERON:0019211 supcapsular region of anterior region of lens 4 13797 -UBERON:0019212 supcapsular region of posterior region of lens 4 13798 -UBERON:0019243 skin crease 4 13799 -UBERON:0019246 palmar skin crease 5 13800 -UBERON:0019247 plantar skin crease 5 13801 -UBERON:0022273 lacrimal lake 4 13802 -UBERON:0022274 lacrimal papilla 4 13803 -UBERON:0024914 circuit part of central nervous system 4 13804 -UBERON:0026546 principal neuronal circuit 5 13805 -UBERON:0026547 intrinsic neuronal circuit 5 13806 -UBERON:0027109 lateral eminence of hypophysis 4 13807 -UBERON:0028194 spiral prominence of cochlear duct 4 13808 -UBERON:0034672 lateral eminence of fourth ventricle 4 13809 -UBERON:0034720 head taste bud 4 13810 -UBERON:0034726 trunk taste bud 4 13811 -UBERON:0034772 margin of eyelid 4 13812 -UBERON:0034935 pars plicata of ciliary body 4 13813 -UBERON:0034936 pars plana of ciliary body 4 13814 -UBERON:0035073 duct of eccrine sweat gland 4 13815 -UBERON:0035074 duct of apocrine sweat gland 4 13816 -UBERON:0035416 diaphragma sellae 4 13817 -UBERON:0035425 falx cerebelli 4 13818 -UBERON:0035606 cartilage of external acoustic meatus 4 13819 -UBERON:0035608 dura mater lymph vessel 4 13820 -UBERON:0035609 outer root sheath companion layer 4 13821 -UBERON:0035610 hair canal 4 13822 -UBERON:0035806 Hensen stripe 4 13823 -UBERON:0035941 Kimura membrane 4 13824 -UBERON:0036074 vein of vestibular aqueduct 4 13825 -UBERON:0036150 skin appendage follicle 4 13826 -UBERON:0002073 hair follicle 5 13827 -UBERON:0010419 vibrissa follicle 6 13828 -UBERON:0015252 coat hair follicle 6 13829 -UBERON:0011782 feather follicle 5 13830 -UBERON:0036245 parenchyma of mammary gland 4 13831 -UBERON:0036250 zone of basilar membrane of cochlea 4 13832 -UBERON:0002820 zona arcuata of basilar membrane of cochlea 5 13833 -UBERON:0036249 zona pectinata of basilar membrane of cochlea 5 13834 -UBERON:0036265 conjunctival papilla 4 13835 -UBERON:0036362 wall of anal canal 4 13836 -UBERON:0036658 wall of central canal of spinal cord 4 13837 -UBERON:0036661 wall of ventricular system of brain 4 13838 -UBERON:0036654 wall of lateral ventricle 5 13839 -UBERON:0036655 wall of cerebral aqueduct 5 13840 -UBERON:0036656 wall of third ventricle 5 13841 -UBERON:0036657 wall of fourth ventricle 5 13842 -UBERON:0036925 wall of eyeball 4 13843 -UBERON:0037191 wall of membranous labyrinth 4 13844 -UBERON:0037237 wall of lacrimal duct 4 13845 -UBERON:1000010 mole 4 13846 -UBERON:1000012 nose anterior margin 4 13847 -UBERON:1000013 nose vertex 4 13848 -UBERON:2000089 actinotrichium 4 13849 -UBERON:2000052 dorsal actinotrichium 5 13850 -UBERON:2000078 ventral actinotrichium 5 13851 -UBERON:2000373 dorsal fin actinotrichium 5 13852 -UBERON:2000375 anal fin actinotrichium 5 13853 -UBERON:2000437 caudal fin actinotrichium 5 13854 -UBERON:2000460 adipose fin actinotrichium 5 13855 -UBERON:2000544 pectoral fin actinotrichium 5 13856 -UBERON:2000596 pelvic fin actinotrichium 5 13857 -UBERON:2000120 lateral line ganglion 4 13858 -UBERON:2001314 posterior lateral line ganglion 5 13859 -UBERON:2001391 anterior lateral line ganglion 5 13860 -UBERON:2001312 dorsal anterior lateral line ganglion 6 13861 -UBERON:2001313 ventral anterior lateral line ganglion 6 13862 -UBERON:2001483 middle lateral line ganglion 5 13863 -UBERON:2000139 immature otolith 4 13864 -UBERON:2001102 immature anterior otolith 5 13865 -UBERON:2001103 immature posterior otolith 5 13866 -UBERON:2000210 gigantocellular part of magnocellular preoptic nucleus 4 13867 -UBERON:2000267 primary olfactory fiber layer 4 13868 -UBERON:2000305 ventral sulcus 4 13869 -UBERON:2000352 external cellular layer 4 13870 -UBERON:2000358 granular layer corpus cerebelli 4 13871 -UBERON:2000394 molecular layer corpus cerebelli 4 13872 -UBERON:2000479 caudal mesencephalo-cerebellar tract 4 13873 -UBERON:2000573 internal cellular layer 4 13874 -UBERON:2000582 saccus dorsalis 4 13875 -UBERON:2000589 sulcus ypsiloniformis 4 13876 -UBERON:2000636 cerebellar crest 4 13877 -UBERON:2000766 granular layer valvula cerebelli 4 13878 -UBERON:2000913 molecular layer valvula cerebelli 4 13879 -UBERON:2000993 lateral wall neural rod 4 13880 -UBERON:2001157 posterior lateral line primordium 4 13881 -UBERON:2005115 primary posterior lateral line primordium 5 13882 -UBERON:2005116 secondary posterior lateral line primordium 5 13883 -UBERON:2001179 epidermal superficial stratum 4 13884 -UBERON:2001181 epidermal intermediate stratum 4 13885 -UBERON:2001183 dermal superficial region 4 13886 -UBERON:2001186 collagenous dermal stroma 4 13887 -UBERON:2001256 lateral floor plate 4 13888 -UBERON:2001257 medial floor plate 4 13889 -UBERON:2001347 stratum fibrosum et griseum superficiale 4 13890 -UBERON:2001348 stratum marginale 4 13891 -UBERON:2001349 stratum opticum 4 13892 -UBERON:2001352 stratum periventriculare 4 13893 -UBERON:2001357 alar plate midbrain 4 13894 -UBERON:2001412 epiotic 4 13895 -UBERON:2001607 basipterygoid process of parasphenoid 4 13896 -UBERON:2001623 type 1 odontode 4 13897 -UBERON:2001821 notochord posterior region 4 13898 -UBERON:2001825 urohyal lateral process 4 13899 -UBERON:2001826 urohyal median process 4 13900 -UBERON:2001929 epioccipital posterior process 4 13901 -UBERON:2001948 anal-fin hook 4 13902 -UBERON:2001949 caudal-fin hook 4 13903 -UBERON:2001999 posterior cleithral process 4 13904 -UBERON:2002000 posterior dentation of pectoral fin spine 4 13905 -UBERON:2002001 anterior dentation of pectoral fin spine 4 13906 -UBERON:2002002 anterior distal serration of pectoral fin spine 4 13907 -UBERON:2002003 posterior dentation of dorsal fin spine 2 4 13908 -UBERON:2002021 ascending process of the parasphenoid 4 13909 -UBERON:2002119 dermal scale focus 4 13910 -UBERON:2002185 climbing fiber 4 13911 -UBERON:2002193 dorsolateral septum 4 13912 -UBERON:2002195 epidermal placode 4 13913 -UBERON:2002210 mossy fiber 4 13914 -UBERON:2002215 otic vesicle protrusion 4 13915 -UBERON:2000232 lateral semicircular canal primordium 5 13916 -UBERON:2000412 posterior semicircular canal primordium 5 13917 -UBERON:2000469 anterior semicircular canal primordium 5 13918 -UBERON:2002216 otic vesicle ventral protrusion 5 13919 -UBERON:2002218 parallel fiber 4 13920 -UBERON:2002223 pillar of the semicircular canal 4 13921 -UBERON:2007054 pillar of the anterior semicircular canal 5 13922 -UBERON:2007055 pillar of the lateral semicircular canal 5 13923 -UBERON:2002240 Purkinje cell layer corpus cerebelli 4 13924 -UBERON:2002241 Purkinje cell layer valvula cerebelli 4 13925 -UBERON:2002242 scale primordium 4 13926 -UBERON:2002249 ctenius 4 13927 -UBERON:2005316 fin fold pectoral fin bud 4 13928 -UBERON:2005317 pectoral fin fold 4 13929 -UBERON:2005411 common crus 4 13930 -UBERON:2005415 inner ear foramen 4 13931 -UBERON:2005416 sacculoagenar foramen 5 13932 -UBERON:2007001 dorso-rostral cluster 4 13933 -UBERON:2007004 epiphysial cluster 4 13934 -UBERON:2007014 anterior presumptive neural plate 4 13935 -UBERON:2007015 posterior presumptive neural plate 4 13936 -UBERON:2007023 posterior neural keel 4 13937 -UBERON:2007024 anterior neural keel 4 13938 -UBERON:2007025 midbrain neural keel 4 13939 -UBERON:2007026 forebrain neural keel 4 13940 -UBERON:2007028 spinal cord neural keel 4 13941 -UBERON:2007029 hindbrain neural keel 4 13942 -UBERON:2007030 posterior neural rod 4 13943 -UBERON:2007031 anterior neural rod 4 13944 -UBERON:2007032 midbrain neural rod 4 13945 -UBERON:2007034 forebrain neural rod 4 13946 -UBERON:2007035 spinal cord neural rod 4 13947 -UBERON:2007036 hindbrain neural rod 4 13948 -UBERON:2007041 forebrain neural tube 4 13949 -UBERON:2007042 spinal cord neural tube 4 13950 -UBERON:2007043 hindbrain neural tube 4 13951 -UBERON:2007059 neurogenic field 4 13952 -UBERON:2007060 dorsolateral field 5 13953 -UBERON:2007061 epibranchial field 5 13954 -UBERON:2007062 olfactory field 5 13955 -UBERON:3000020 anterolateral process of frontoparietal 4 13956 -UBERON:3000141 endolymphatic system 4 13957 -UBERON:3000259 lamina inferior 4 13958 -UBERON:3000260 lamina nariochoanalis 4 13959 -UBERON:3000384 parasagittal crest 4 13960 -UBERON:3000386 cultriform process 4 13961 -UBERON:3000387 subotic alae 4 13962 -UBERON:3000393 pars amphibiorum 4 13963 -UBERON:3000395 pars basilaris 4 13964 -UBERON:3000405 pars inferior of labyrinth 4 13965 -UBERON:3000428 perilymphatic system 4 13966 -UBERON:3000433 pineal foramen 4 13967 -UBERON:3000538 recessus fenestrae ovalis 4 13968 -UBERON:3000560 septum semicircularium anterior 4 13969 -UBERON:3000561 septum semicircularium laterale 4 13970 -UBERON:3000562 septum semircularium posterior 4 13971 -UBERON:3000570 spatium sacculare 4 13972 -UBERON:3000590 supraorbital flange 4 13973 -UBERON:3000662 processus posterior of parasphenoid 4 13974 -UBERON:3000792 anterior ramus of cleithrum 4 13975 -UBERON:3000827 margo anterior of cleithrum 4 13976 -UBERON:3000828 margo posterior of cleithrum 4 13977 -UBERON:3000829 margo scapularis 4 13978 -UBERON:3000830 margo vertebralis 4 13979 -UBERON:3000831 spina acromioidea 4 13980 -UBERON:3000832 anterior lamina recurvata 4 13981 -UBERON:3000834 posterior lamina recurvata 4 13982 -UBERON:3000949 posterior ramus of cleithrum 4 13983 -UBERON:3010007 pit organ 4 13984 -UBERON:3010079 upper eyelid protuberances 4 13985 -UBERON:3010541 median pars intermedia 4 13986 -UBERON:3010584 mandibular arch neural crest 4 13987 -UBERON:3010653 ramus nasalis medialis 4 13988 -UBERON:3010735 ramus anterior of CN VIII 4 13989 -UBERON:3010736 ramus posterior of CN VIII 4 13990 -UBERON:3010802 courtship gland 4 13991 -UBERON:4000053 vacuolated notochordal tissue 4 13992 -UBERON:4000105 limiting layer of elasmoid scale 4 13993 -UBERON:4100100 parasphenoid flange 4 13994 -UBERON:4200016 postbranchial lamina 4 13995 -UBERON:4200033 cleithrum head 4 13996 -UBERON:4200081 hypocleideum 4 13997 -UBERON:4200226 anteroventral process of cleithrum 4 13998 -UBERON:4300106 ventral limb of posttemporal 4 13999 -UBERON:4300108 lepidotrichial segment 4 14000 -UBERON:4300109 proximal segment of caudal ray 5 14001 -UBERON:4300112 distal segment of caudal ray 5 14002 -UBERON:4300126 tectorial restraint system 4 14003 -UBERON:4300154 procurrent spur 4 14004 -UBERON:4300261 pectoral fin hook 4 14005 -UBERON:4300262 pelvic fin hook 4 14006 -UBERON:4300269 epioccipital bridge 4 14007 -UBERON:6003627 protocerebrum 4 14008 -UBERON:6001925 embryonic/larval protocerebrum 5 14009 -UBERON:6007145 adult protocerebrum 5 14010 -UBERON:6004203 adult clypeo-labral anlage 4 14011 -UBERON:6004476 tergite 4 14012 -UBERON:6004519 arista 4 14013 -UBERON:6004521 clypeus 4 14014 -UBERON:6004535 proboscis 4 14015 -UBERON:6004579 dorsal mesothorax 4 14016 -UBERON:6004580 mesothoracic tergum 4 14017 -UBERON:6004663 prothoracic leg 4 14018 -UBERON:6004668 prothoracic tarsal segment 4 14019 -UBERON:6004670 prothoracic metatarsus 5 14020 -UBERON:6007020 metatarsus of male prothoracic leg 6 14021 -UBERON:6005096 stomatogastric nervous system 4 14022 -UBERON:6005805 Bolwig organ 4 14023 -UBERON:6007046 dorsal ectoderm derivative 4 14024 -UBERON:6005037 tracheal primordium 5 14025 -UBERON:6005036 tracheal pit 6 14026 -UBERON:6005526 dorsal epidermis primordium 5 14027 -UBERON:6007245 cuticular specialization 4 14028 -UBERON:6001845 cephalopharyngeal skeleton 5 14029 -UBERON:6001848 epipharyngeal sclerite 5 14030 -UBERON:6004979 trichome 5 14031 -UBERON:6004340 wing hair 6 14032 -UBERON:6005913 arista lateral 6 14033 -UBERON:6017021 abdominal histoblast anlage 4 14034 -UBERON:6025991 anterior ectoderm derivative 4 14035 -UBERON:6001059 visual primordium 5 14036 -UBERON:6005538 clypeo-labral primordium 5 14037 -UBERON:6005830 Bolwig organ primordium 5 14038 -UBERON:6025993 ventral ectoderm derivative 4 14039 -UBERON:6005533 ventral epidermis primordium 5 14040 -UBERON:6040005 synaptic neuropil 4 14041 -UBERON:6041000 synaptic neuropil block 4 14042 -UBERON:6003632 adult central complex 5 14043 -UBERON:6110746 presumptive prothoracic metatarsus 4 14044 -UBERON:6110811 presumptive arista 4 14045 -UBERON:8000004 central retina 4 14046 -UBERON:0004716 conceptus 3 14047 -UBERON:0005090 muscle structure 3 14048 -UBERON:0001630 muscle organ 4 14049 -UBERON:0000933 pharyngeal muscle 5 14050 -UBERON:0001569 constrictor muscle of pharynx 6 14051 -UBERON:0001570 inferior pharyngeal constrictor 7 14052 -UBERON:0006329 superior pharyngeal constrictor 7 14053 -UBERON:0010749 middle pharyngeal constrictor 7 14054 -UBERON:0005493 hyoid muscle 6 14055 -UBERON:0008523 infrahyoid muscle 7 14056 -UBERON:0001107 sternohyoid muscle 8 14057 -UBERON:0001108 omohyoid muscle 8 14058 -UBERON:0001109 sternothyroid muscle 8 14059 -UBERON:0001110 thyrohyoid muscle 8 14060 -UBERON:0008571 suprahyoid muscle 7 14061 -UBERON:0001562 digastric muscle group 8 14062 -UBERON:0001564 mylohyoid muscle 8 14063 -UBERON:0001565 geniohyoid muscle 8 14064 -UBERON:0008712 stylohyoid muscle 8 14065 -UBERON:0010930 interhyoideus 7 14066 -UBERON:0011151 jaw depressor muscle 7 14067 -UBERON:0001565 geniohyoid muscle 8 14068 -UBERON:0011649 levator operculi 7 14069 -UBERON:0011650 epihyoidean 7 14070 -UBERON:0011687 levator hyomandibulae muscle 7 14071 -UBERON:2000462 abductor hyohyoid 7 14072 -UBERON:2000465 adductor operculi 7 14073 -UBERON:2000522 inferior hyohyoid 7 14074 -UBERON:2000615 adductor arcus palatini 7 14075 -UBERON:2000715 adductor hyohyoid 7 14076 -UBERON:2007051 ventral interhyoideus 7 14077 -UBERON:2007052 hyohyoideus 7 14078 -UBERON:2007053 dorsal adductor hyomandibulae 7 14079 -UBERON:0006831 pre-tracheal muscle 6 14080 -UBERON:0008804 stylopharyngeus muscle 6 14081 -UBERON:0010234 palatopharyngeus muscle 6 14082 -UBERON:0010928 cricopharyngeus muscle 6 14083 -UBERON:0010936 thyropharyngeus muscle 6 14084 -UBERON:0010937 salpingopharyngeus muscle 6 14085 -UBERON:0010940 muscle of digastric group 6 14086 -UBERON:0010943 anterior digastric muscle 7 14087 -UBERON:0010944 posterior digastric muscle 7 14088 -UBERON:0010948 cleidooccipital muscle 6 14089 -UBERON:0010954 ceratohyoideus muscle 6 14090 -UBERON:0011996 pharyngeal adductor 6 14091 -UBERON:2000177 caudal oblique 6 14092 -UBERON:2000201 dorsal transverse 6 14093 -UBERON:2000221 internal levator 6 14094 -UBERON:2000261 pharyngohyoid 6 14095 -UBERON:2000321 caudal levator 6 14096 -UBERON:2000371 internal pharyngoclavicularis 6 14097 -UBERON:2000503 dorsal oblique branchial muscle 6 14098 -UBERON:2000504 dorsal retractor 6 14099 -UBERON:2000510 external levatores 6 14100 -UBERON:2000608 ventral transverse 6 14101 -UBERON:2000662 external pharyngoclavicularis 6 14102 -UBERON:4300210 transversus epibranchialis 2 6 14103 -UBERON:0000951 rotator muscle of the vertebral column 5 14104 -UBERON:0001111 intercostal muscle 5 14105 -UBERON:0002403 internal intercostal muscle 6 14106 -UBERON:0005441 external intercostal muscle 6 14107 -UBERON:0008617 innermost intercostal muscle 6 14108 -UBERON:0001121 longus colli muscle 5 14109 -UBERON:0001373 sartorius muscle 5 14110 -UBERON:0001595 auricular muscle 5 14111 -UBERON:0001583 extrinsic auricular muscle 6 14112 -UBERON:0011385 parotidoauricular muscle 7 14113 -UBERON:0018108 superior auricular muscle 7 14114 -UBERON:0018109 anterior auricular muscle 7 14115 -UBERON:0018110 posterior auricular muscle 7 14116 -UBERON:0001596 intrinsic auricular muscle 6 14117 -UBERON:0008603 helicis major 7 14118 -UBERON:0008604 helicis minor 7 14119 -UBERON:0008605 tragicus muscle 7 14120 -UBERON:0008606 antitragicus muscle 7 14121 -UBERON:0008607 transverse muscle of auricle 7 14122 -UBERON:0008608 oblique muscle of auricle 7 14123 -UBERON:0003660 eyelid muscle 5 14124 -UBERON:0001578 orbicularis oculi muscle 6 14125 -UBERON:0006318 orbitalis muscle 6 14126 -UBERON:0003831 respiratory system muscle 5 14127 -UBERON:0001103 diaphragm 6 14128 -UBERON:0001568 muscle of larynx 6 14129 -UBERON:0006327 laryngeal extrinsic muscle 7 14130 -UBERON:0006328 laryngeal intrinsic muscle 7 14131 -UBERON:0001566 cricothyroid muscle 8 14132 -UBERON:0001570 inferior pharyngeal constrictor 9 14133 -UBERON:0008576 thyro-arytenoid 8 14134 -UBERON:0008577 vocalis muscle 8 14135 -UBERON:0010932 crico-arytenoid muscle 8 14136 -UBERON:0008572 posterior crico-arytenoid 9 14137 -UBERON:0008573 lateral crico-arytenoid 9 14138 -UBERON:0010958 arytenoid muscle 8 14139 -UBERON:0008574 transverse arytenoid 9 14140 -UBERON:0008575 oblique arytenoid 9 14141 -UBERON:0010927 thyroepiglotticus muscle 7 14142 -UBERON:0011025 aryepiglotticus muscle 7 14143 -UBERON:0011312 hyoepiglottic muscle 7 14144 -UBERON:0008804 stylopharyngeus muscle 6 14145 -UBERON:0010234 palatopharyngeus muscle 6 14146 -UBERON:0010928 cricopharyngeus muscle 6 14147 -UBERON:0010936 thyropharyngeus muscle 6 14148 -UBERON:0010937 salpingopharyngeus muscle 6 14149 -UBERON:0012100 appendicocostalis muscle 6 14150 -UBERON:0014398 respiratory muscle 6 14151 -UBERON:0011495 rectus thoracis muscle 7 14152 -UBERON:0036071 diaphragmaticus muscle 6 14153 -UBERON:0003832 esophagus muscle 5 14154 -UBERON:0007652 esophageal sphincter 6 14155 -UBERON:0016499 esophageal-pneumatic duct sphincter 7 14156 -UBERON:0004164 branchiomeric muscle 5 14157 -UBERON:0014836 levator arcuum muscle 6 14158 -UBERON:0004253 skin muscle 5 14159 -UBERON:0008876 hypodermis skeletal muscle layer 6 14160 -UBERON:0005467 platysma 7 14161 -UBERON:0018240 panniculus carnosus muscle 7 14162 -UBERON:0011792 feather muscle 6 14163 -UBERON:0004277 eye muscle 5 14164 -UBERON:0001578 orbicularis oculi muscle 6 14165 -UBERON:0001601 extra-ocular muscle 6 14166 -UBERON:0001604 levator palpebrae superioris 7 14167 -UBERON:0006531 oculomotor muscle 7 14168 -UBERON:0006532 oblique extraocular muscle 8 14169 -UBERON:0006320 inferior oblique extraocular muscle 9 14170 -UBERON:0006321 superior oblique extraocular muscle 9 14171 -UBERON:0006533 rectus extraocular muscle 8 14172 -UBERON:0001602 medial rectus extraocular muscle 9 14173 -UBERON:0001603 lateral rectus extra-ocular muscle 9 14174 -UBERON:0006322 inferior rectus extraocular muscle 9 14175 -UBERON:0006323 superior rectus extraocular muscle 9 14176 -UBERON:0010271 musculus retractor bulbi 7 14177 -UBERON:3010125 musculus levator bulbi 7 14178 -UBERON:0006318 orbitalis muscle 6 14179 -UBERON:0011222 intra-ocular muscle 6 14180 -UBERON:0001605 ciliary muscle 7 14181 -UBERON:0001606 muscle of iris 7 14182 -UBERON:0001607 sphincter pupillae 8 14183 -UBERON:0004590 sphincter muscle 5 14184 -UBERON:0004916 anal sphincter 6 14185 -UBERON:0001244 internal anal sphincter 7 14186 -UBERON:0004917 urethral sphincter 6 14187 -UBERON:0004918 internal urethral sphincter 7 14188 -UBERON:0004919 external urethral sphincter 7 14189 -UBERON:0011379 male external urethral sphincter 8 14190 -UBERON:0011380 female external urethral sphincter 8 14191 -UBERON:0007521 smooth muscle sphincter 6 14192 -UBERON:0001244 internal anal sphincter 7 14193 -UBERON:0001607 sphincter pupillae 7 14194 -UBERON:0007522 striated muscle sphincter 6 14195 -UBERON:0007268 upper esophageal sphincter 7 14196 -UBERON:0035832 caval sphincter 7 14197 -UBERON:0007652 esophageal sphincter 6 14198 -UBERON:0016499 esophageal-pneumatic duct sphincter 7 14199 -UBERON:0011185 gastrointestinal sphincter 6 14200 -UBERON:0000569 ileocecal valve 7 14201 -UBERON:0001202 pyloric sphincter 7 14202 -UBERON:0004550 gastroesophageal sphincter 7 14203 -UBERON:0004915 sphincter of hepatopancreatic ampulla 7 14204 -UBERON:0012487 vaginal sphincter 6 14205 -UBERON:0013501 cloacal sphincter 6 14206 -UBERON:0014917 pouch sphincter 6 14207 -UBERON:0005621 rhomboid 5 14208 -UBERON:0006581 mantle muscle 5 14209 -UBERON:0008245 pennate muscle 5 14210 -UBERON:0008284 columnella muscle 5 14211 -UBERON:0008488 cremaster muscle 5 14212 -UBERON:0008977 pes anserinus of tibia 5 14213 -UBERON:0010931 intermandibularis 5 14214 -UBERON:3010836 posterolateral supplementary element 6 14215 -UBERON:3010837 apical supplementary element 6 14216 -UBERON:3010838 anterolateral supplementary element 6 14217 -UBERON:0010939 zygomaticomandibularis muscle 5 14218 -UBERON:0010946 occipitofrontalis muscle 5 14219 -UBERON:0011376 iliothoracic muscle 5 14220 -UBERON:0011377 femorothoracic muscle 5 14221 -UBERON:0011472 ventral lateral sacrocaudal muscle 5 14222 -UBERON:0012621 muscle of Aristotle's lantern 5 14223 -UBERON:0012642 vestimentum muscle 5 14224 -UBERON:0013114 compressor glandulae muscle 5 14225 -UBERON:0013115 pterygoideus glandulae muscle 5 14226 -UBERON:0013715 ilio-marsupialis muscle 5 14227 -UBERON:0014783 cloacal muscle 5 14228 -UBERON:0013501 cloacal sphincter 6 14229 -UBERON:0014784 transverse cloacal muscle 6 14230 -UBERON:0014785 levator cloacae 6 14231 -UBERON:0014797 hypobranchial group muscle 5 14232 -UBERON:0014835 serratus muscle 5 14233 -UBERON:0014892 skeletal muscle organ 5 14234 -UBERON:0000311 extensor muscle 6 14235 -UBERON:0000372 extensor digitorum brevis pes 7 14236 -UBERON:0001386 extensor digitorum longus 7 14237 -UBERON:0011024 extrinsic extensor muscle of manus 7 14238 -UBERON:0001526 extensor carpi ulnaris muscle 8 14239 -UBERON:0003234 extensor pollicis longus muscle 8 14240 -UBERON:0007612 extensor digitorum communis 8 14241 -UBERON:0007613 extensor digitorum lateralis muscle 8 14242 -UBERON:0007614 extensor digiti minimi muscle 8 14243 -UBERON:0011867 extensor carpi radialis muscle 8 14244 -UBERON:0001524 extensor carpi radialis longus muscle 9 14245 -UBERON:0001525 extensor carpi radialis brevis muscle 9 14246 -UBERON:0017618 extensor pollicis brevis muscle 8 14247 -UBERON:0035842 extensor digitorum brevis manus 7 14248 -UBERON:0000366 flexor muscle 6 14249 -UBERON:0001392 flexor hallucis longus 7 14250 -UBERON:0001521 flexor carpi radialis muscle 7 14251 -UBERON:0001522 flexor carpi ulnaris muscle 7 14252 -UBERON:0001523 flexor digitorum profundus 7 14253 -UBERON:0008230 tibialis 7 14254 -UBERON:0001385 tibialis anterior 8 14255 -UBERON:0001667 tibialis posterior 8 14256 -UBERON:0011022 flexor hallucis brevis muscle 7 14257 -UBERON:0017156 flexor cruris lateralis muscle 7 14258 -UBERON:0017102 flexor cruris lateralis pars accessoria muscle 8 14259 -UBERON:2000205 external ventral flexor 7 14260 -UBERON:2000269 inferior ventral flexor 7 14261 -UBERON:2000287 superior dorsal flexor 7 14262 -UBERON:2000341 dorsal flexor 7 14263 -UBERON:2000455 ventral flexor 7 14264 -UBERON:0001482 muscle of shoulder 6 14265 -UBERON:0001112 latissimus dorsi muscle 7 14266 -UBERON:0001125 serratus ventralis 7 14267 -UBERON:0001129 subscapularis muscle 7 14268 -UBERON:0001476 deltoid 7 14269 -UBERON:0001477 infraspinatus muscle 7 14270 -UBERON:0001505 coracobrachialis muscle 7 14271 -UBERON:0001506 brachialis muscle 7 14272 -UBERON:0001509 triceps brachii 7 14273 -UBERON:0002380 trapezius muscle 7 14274 -UBERON:0014798 clavotrapezius muscle 8 14275 -UBERON:0014799 acromiotrapezius muscle 8 14276 -UBERON:0014800 spinotrapezius muscle 8 14277 -UBERON:0002381 pectoralis major 7 14278 -UBERON:0002383 supraspinatus muscle 7 14279 -UBERON:0005461 levator scapulae muscle 7 14280 -UBERON:0010467 teres muscle 7 14281 -UBERON:0001478 teres major muscle 8 14282 -UBERON:0010496 teres minor muscle 8 14283 -UBERON:0011011 brachioradialis 7 14284 -UBERON:0011366 cleidobrachialis muscle 7 14285 -UBERON:0011368 brachiocephalic muscle 7 14286 -UBERON:0011605 supracoracoideus muscle of wing 7 14287 -UBERON:0011867 extensor carpi radialis muscle 7 14288 -UBERON:0001524 extensor carpi radialis longus muscle 8 14289 -UBERON:0001525 extensor carpi radialis brevis muscle 8 14290 -UBERON:0014840 supracoracoideus muscle 7 14291 -UBERON:4200225 scapulohumeralis muscle 7 14292 -UBERON:0001774 skeletal muscle of trunk 6 14293 -UBERON:0002324 muscle of back 7 14294 -UBERON:0002252 splenius 8 14295 -UBERON:0000711 splenius capitis 9 14296 -UBERON:0008544 splenius cervicis 9 14297 -UBERON:0008242 lower back muscle 8 14298 -UBERON:0008243 upper back muscle 8 14299 -UBERON:0003830 thoracic segment muscle 7 14300 -UBERON:0001103 diaphragm 8 14301 -UBERON:0001126 serratus dorsalis superior muscle 8 14302 -UBERON:0001495 pectoral muscle 8 14303 -UBERON:0001100 pectoralis minor 9 14304 -UBERON:0002381 pectoralis major 9 14305 -UBERON:0008779 subclavius 9 14306 -UBERON:0014837 pectoantebrachialis 9 14307 -UBERON:0014838 xiphihumeralis 9 14308 -UBERON:0002426 chest muscle 8 14309 -UBERON:0002404 transversus thoracis 9 14310 -UBERON:0008618 subcostal muscle 9 14311 -UBERON:0008243 upper back muscle 8 14312 -UBERON:0036071 diaphragmaticus muscle 8 14313 -UBERON:0003833 abdominal segment muscle 7 14314 -UBERON:0001325 muscle of pelvis 8 14315 -UBERON:0001326 levator ani muscle 9 14316 -UBERON:0001327 coccygeus muscle 9 14317 -UBERON:0001497 muscle of pelvic girdle 9 14318 -UBERON:0001369 iliacus muscle 10 14319 -UBERON:0002000 gluteal muscle 10 14320 -UBERON:0001370 gluteus maximus 11 14321 -UBERON:0001371 gluteus medius 11 14322 -UBERON:0001376 tensor fasciae latae muscle 11 14323 -UBERON:0008521 gluteus minimus 11 14324 -UBERON:0008529 piriformis muscle 11 14325 -UBERON:0008537 quadratus femoris 11 14326 -UBERON:0011043 obturator muscle 11 14327 -UBERON:0001368 obturator externus 12 14328 -UBERON:0011048 obturator internus 12 14329 -UBERON:0002379 perineal muscle 9 14330 -UBERON:0001339 ischiocavernosus muscle 10 14331 -UBERON:0004519 muscle of anal triangle 10 14332 -UBERON:0011389 bulbospongiosus muscle 10 14333 -UBERON:0011387 constrictor vulvae muscle 11 14334 -UBERON:0011388 male bulbospongiosus muscle 11 14335 -UBERON:0014458 female bulbospongiosus muscle 11 14336 -UBERON:0008612 muscle of pelvic diaphragm 9 14337 -UBERON:0011511 iliococcygeus muscle 9 14338 -UBERON:0011512 puborectalis muscle 9 14339 -UBERON:0011528 pubococcygeus muscle 9 14340 -UBERON:0011531 male pubococcygeus muscle 10 14341 -UBERON:0011532 female pubococcygeus muscle 10 14342 -UBERON:0011645 iliofemoralis muscle 9 14343 -UBERON:0001370 gluteus maximus 10 14344 -UBERON:4200122 pubotibialis 9 14345 -UBERON:0002378 muscle of abdomen 8 14346 -UBERON:0001220 quadratus lumborum 9 14347 -UBERON:0002461 anterior abdominal wall muscle 9 14348 -UBERON:0001221 transversus abdominis muscle 10 14349 -UBERON:0002382 rectus abdominis muscle 10 14350 -UBERON:0011016 pyramidalis 10 14351 -UBERON:0035032 abdominal oblique muscle 10 14352 -UBERON:0005442 abdominal external oblique muscle 11 14353 -UBERON:0005454 abdominal internal oblique muscle 11 14354 -UBERON:3010790 muscle rectus abdominis superficialis 10 14355 -UBERON:3010792 musculus rectus abdominis profundus 10 14356 -UBERON:0008242 lower back muscle 8 14357 -UBERON:0004138 somitomeric trunk muscle 7 14358 -UBERON:2000216 infracarinalis 7 14359 -UBERON:2000286 superficial lateralis (teleost) 7 14360 -UBERON:2000288 supracarinalis 7 14361 -UBERON:2000349 epaxialis 7 14362 -UBERON:2000362 hypaxialis 7 14363 -UBERON:0003661 limb muscle 6 14364 -UBERON:0003662 forelimb muscle 7 14365 -UBERON:0001499 muscle of arm 8 14366 -UBERON:0001506 brachialis muscle 9 14367 -UBERON:0004254 forelimb zeugopod muscle 9 14368 -UBERON:0001521 flexor carpi radialis muscle 10 14369 -UBERON:0001522 flexor carpi ulnaris muscle 10 14370 -UBERON:0003222 flexor digitorum superficialis 10 14371 -UBERON:0003228 supinator muscle 10 14372 -UBERON:0008446 flexor pollicis longus muscle 10 14373 -UBERON:0011024 extrinsic extensor muscle of manus 10 14374 -UBERON:0001526 extensor carpi ulnaris muscle 11 14375 -UBERON:0003234 extensor pollicis longus muscle 11 14376 -UBERON:0007612 extensor digitorum communis 11 14377 -UBERON:0007613 extensor digitorum lateralis muscle 11 14378 -UBERON:0007614 extensor digiti minimi muscle 11 14379 -UBERON:0011867 extensor carpi radialis muscle 11 14380 -UBERON:0001524 extensor carpi radialis longus muscle 12 14381 -UBERON:0001525 extensor carpi radialis brevis muscle 12 14382 -UBERON:0017618 extensor pollicis brevis muscle 11 14383 -UBERON:0004255 forelimb stylopod muscle 9 14384 -UBERON:0001505 coracobrachialis muscle 10 14385 -UBERON:0001507 biceps brachii 10 14386 -UBERON:0001509 triceps brachii 10 14387 -UBERON:0001523 flexor digitorum profundus 10 14388 -UBERON:0002989 anconeus muscle 10 14389 -UBERON:0011011 brachioradialis 9 14390 -UBERON:0001500 muscle of manus 8 14391 -UBERON:0002962 adductor pollicis muscle 9 14392 -UBERON:0003664 manual digit muscle 9 14393 -UBERON:0008465 abductor pollicis brevis muscle 9 14394 -UBERON:0011012 flexor pollicis brevis muscle 9 14395 -UBERON:0014375 intrinsic muscle of manus 9 14396 -UBERON:0001501 lumbrical muscle of manus 10 14397 -UBERON:0001502 interosseous muscle of manus 10 14398 -UBERON:0001503 dorsal interosseous of manus 11 14399 -UBERON:0002988 first dorsal interosseous of manus 12 14400 -UBERON:0006505 palmar interosseous muscle of manus 11 14401 -UBERON:0014376 thenar muscle 10 14402 -UBERON:0014377 hypothenar muscle 10 14403 -UBERON:0036172 palmaris brevis 11 14404 -UBERON:0036173 abductor digiti minimi of hand 11 14405 -UBERON:0036174 flexor digiti minimi brevis of hand 11 14406 -UBERON:0036176 opponens digiti minimi of hand 11 14407 -UBERON:0035842 extensor digitorum brevis manus 9 14408 -UBERON:0001520 pronator teres 8 14409 -UBERON:0011533 abductor pollicis, radioulna-prepollox 8 14410 -UBERON:0011534 abductor pollicis muscle 8 14411 -UBERON:0001527 abductor pollicis longus 9 14412 -UBERON:0008465 abductor pollicis brevis muscle 9 14413 -UBERON:0012520 forelimb epitrochlearis muscle 8 14414 -UBERON:0016493 palmaris longus muscle 8 14415 -UBERON:4200101 m.scapulotriceps 8 14416 -UBERON:0003663 hindlimb muscle 7 14417 -UBERON:0001377 quadriceps femoris 8 14418 -UBERON:0001378 rectus femoris 9 14419 -UBERON:0001379 vastus lateralis 9 14420 -UBERON:0001380 vastus medialis 9 14421 -UBERON:0014847 vastus intermedius 9 14422 -UBERON:0001383 muscle of leg 8 14423 -UBERON:0001391 popliteus muscle 9 14424 -UBERON:0001392 flexor hallucis longus 9 14425 -UBERON:0001666 flexor digitorum longus 9 14426 -UBERON:0004252 hindlimb stylopod muscle 9 14427 -UBERON:0000303 adductor longus 10 14428 -UBERON:0000368 adductor brevis 10 14429 -UBERON:0000370 adductor magnus 10 14430 -UBERON:0000950 gracilis 10 14431 -UBERON:0001382 pectineus muscle 10 14432 -UBERON:0002463 muscle of posterior compartment of hindlimb stylopod 10 14433 -UBERON:0001374 biceps femoris 11 14434 -UBERON:0001375 semitendinosus 11 14435 -UBERON:0001381 semimembranosus muscle 11 14436 -UBERON:0019201 gemellus muscle 10 14437 -UBERON:0019202 inferior gemellus muscle 11 14438 -UBERON:0019203 superior gemellus muscle 11 14439 -UBERON:0004256 hindlimb zeugopod muscle 9 14440 -UBERON:0001388 gastrocnemius 10 14441 -UBERON:0001389 soleus muscle 10 14442 -UBERON:0001665 triceps surae 10 14443 -UBERON:0008230 tibialis 10 14444 -UBERON:0001385 tibialis anterior 11 14445 -UBERON:0001667 tibialis posterior 11 14446 -UBERON:0009132 peroneus 10 14447 -UBERON:0001387 fibularis longus 11 14448 -UBERON:0010524 fibularis tertius 11 14449 -UBERON:0010526 fibularis brevis 11 14450 -UBERON:0014410 fibularis quartus 11 14451 -UBERON:0011905 plantaris 10 14452 -UBERON:0011909 gastrocnemius internus 10 14453 -UBERON:0011910 gastrocnemius externus 10 14454 -UBERON:0001386 extensor digitorum longus 8 14455 -UBERON:0001498 muscle of pes 8 14456 -UBERON:0000372 extensor digitorum brevis pes 9 14457 -UBERON:0003659 pedal digit muscle 9 14458 -UBERON:0008464 abductor hallucis muscle 9 14459 -UBERON:0014378 intrinsic muscle of pes 9 14460 -UBERON:0001504 lumbrical muscle of pes 10 14461 -UBERON:0006497 interosseous muscle of pes 10 14462 -UBERON:0006499 dorsal pes interosseous muscle 11 14463 -UBERON:0006502 plantar interosseous muscle of pes 11 14464 -UBERON:0011022 flexor hallucis brevis muscle 10 14465 -UBERON:0014379 adductor hallucis muscle 10 14466 -UBERON:0014380 flexor digitorum brevis muscle 10 14467 -UBERON:0013221 caudofemoralis 8 14468 -UBERON:0035081 caudofemoralis longus 9 14469 -UBERON:0035082 caudofemoralis brevis 9 14470 -UBERON:0013511 ambiens muscle 8 14471 -UBERON:0014888 iliotibialis muscle 8 14472 -UBERON:0017156 flexor cruris lateralis muscle 8 14473 -UBERON:0017102 flexor cruris lateralis pars accessoria muscle 9 14474 -UBERON:0006508 interosseous muscle of autopod 7 14475 -UBERON:0001502 interosseous muscle of manus 8 14476 -UBERON:0001503 dorsal interosseous of manus 9 14477 -UBERON:0002988 first dorsal interosseous of manus 10 14478 -UBERON:0006505 palmar interosseous muscle of manus 9 14479 -UBERON:0006497 interosseous muscle of pes 8 14480 -UBERON:0006499 dorsal pes interosseous muscle 9 14481 -UBERON:0006502 plantar interosseous muscle of pes 9 14482 -UBERON:0003897 axial muscle 6 14483 -UBERON:0001122 scalenus medius 7 14484 -UBERON:0001128 sternocleidomastoid 7 14485 -UBERON:0001220 quadratus lumborum 7 14486 -UBERON:0001370 gluteus maximus 7 14487 -UBERON:0001402 longissimus cervicis muscle 7 14488 -UBERON:0002251 iliocostalis muscle 7 14489 -UBERON:0001400 iliocostalis thoracis muscle 8 14490 -UBERON:0008546 iliocostalis cervicis muscle 8 14491 -UBERON:0011207 iliocostalis lumborum 8 14492 -UBERON:0002381 pectoralis major 7 14493 -UBERON:0002382 rectus abdominis muscle 7 14494 -UBERON:0002462 erector spinae muscle group 7 14495 -UBERON:0005454 abdominal internal oblique muscle 7 14496 -UBERON:0005461 levator scapulae muscle 7 14497 -UBERON:0008455 rectus capitis posterior minor 7 14498 -UBERON:0008529 piriformis muscle 7 14499 -UBERON:0008611 scalene muscle 7 14500 -UBERON:0008622 scalenus anterior 8 14501 -UBERON:0010949 sternooccipital muscle 7 14502 -UBERON:0010990 transversospinales muscle 7 14503 -UBERON:0011013 spinalis muscle 7 14504 -UBERON:0001405 spinalis thoracis muscle 8 14505 -UBERON:0011014 spinalis capitis muscle 8 14506 -UBERON:0011218 spinalis cervicis muscle 8 14507 -UBERON:0011251 levator claviculae muscle 7 14508 -UBERON:0011511 iliococcygeus muscle 7 14509 -UBERON:0011528 pubococcygeus muscle 7 14510 -UBERON:0011531 male pubococcygeus muscle 8 14511 -UBERON:0011532 female pubococcygeus muscle 8 14512 -UBERON:0035092 spinalis caudalis muscle 7 14513 -UBERON:0035097 iliocaudalis muscle 7 14514 -UBERON:0004518 muscle of vertebral column 6 14515 -UBERON:0000392 longissimus muscle 7 14516 -UBERON:0001401 longissimus thoracis muscle 8 14517 -UBERON:0001402 longissimus cervicis muscle 8 14518 -UBERON:0001403 longissimus capitis 8 14519 -UBERON:0011219 longissimus lumborum muscle 8 14520 -UBERON:0011465 longissimus atlantis muscle 8 14521 -UBERON:0001122 scalenus medius 7 14522 -UBERON:0001220 quadratus lumborum 7 14523 -UBERON:0002251 iliocostalis muscle 7 14524 -UBERON:0001400 iliocostalis thoracis muscle 8 14525 -UBERON:0008546 iliocostalis cervicis muscle 8 14526 -UBERON:0011207 iliocostalis lumborum 8 14527 -UBERON:0002252 splenius 7 14528 -UBERON:0000711 splenius capitis 8 14529 -UBERON:0008544 splenius cervicis 8 14530 -UBERON:0002462 erector spinae muscle group 7 14531 -UBERON:0003250 rectus capitis lateralis muscle 7 14532 -UBERON:0003665 post-anal tail muscle 7 14533 -UBERON:0035091 extrinsic post-anal tail muscle 8 14534 -UBERON:0035092 spinalis caudalis muscle 9 14535 -UBERON:0035093 extensor caudae muscle 9 14536 -UBERON:0035094 extensor caudae medialis muscle 10 14537 -UBERON:0035095 extensor caudae lateralis muscle 10 14538 -UBERON:0035097 iliocaudalis muscle 9 14539 -UBERON:0035098 hemipenis transversus muscle 9 14540 -UBERON:0035099 transversus perinei muscle 9 14541 -UBERON:0035100 retractor penis magnus muscle 9 14542 -UBERON:0005461 levator scapulae muscle 7 14543 -UBERON:0008453 rectus capitis anterior 7 14544 -UBERON:0008454 rectus capitis posterior major 7 14545 -UBERON:0008455 rectus capitis posterior minor 7 14546 -UBERON:0008549 prevertebral muscle 7 14547 -UBERON:0001563 longus capitis muscle 8 14548 -UBERON:0008450 psoas muscle 8 14549 -UBERON:0001298 psoas major muscle 9 14550 -UBERON:0001372 psoas minor muscle 9 14551 -UBERON:0017647 prevertebral muscle of neck 8 14552 -UBERON:0008611 scalene muscle 7 14553 -UBERON:0008622 scalenus anterior 8 14554 -UBERON:0011013 spinalis muscle 7 14555 -UBERON:0001405 spinalis thoracis muscle 8 14556 -UBERON:0011014 spinalis capitis muscle 8 14557 -UBERON:0011218 spinalis cervicis muscle 8 14558 -UBERON:0011017 semispinalis muscle 7 14559 -UBERON:0001407 semispinalis thoracis 8 14560 -UBERON:0001408 semispinalis cervicis 8 14561 -UBERON:0001409 semispinalis capitis 8 14562 -UBERON:0011217 serratus dorsalis muscle 7 14563 -UBERON:0001126 serratus dorsalis superior muscle 8 14564 -UBERON:0001127 serratus dorsalis inferior muscle 8 14565 -UBERON:0011251 levator claviculae muscle 7 14566 -UBERON:0011643 puboischiofemoralis internus muscle 7 14567 -UBERON:0006845 abductor muscle 6 14568 -UBERON:0011534 abductor pollicis muscle 7 14569 -UBERON:0001527 abductor pollicis longus 8 14570 -UBERON:0008465 abductor pollicis brevis muscle 8 14571 -UBERON:2000439 superficial pelvic abductor 7 14572 -UBERON:2000564 pelvic abductor profundus 7 14573 -UBERON:2000614 abductor profundus 7 14574 -UBERON:2000685 superficial abductor 7 14575 -UBERON:0008876 hypodermis skeletal muscle layer 6 14576 -UBERON:0005467 platysma 7 14577 -UBERON:0018240 panniculus carnosus muscle 7 14578 -UBERON:0010890 pelvic complex muscle 6 14579 -UBERON:0001497 muscle of pelvic girdle 7 14580 -UBERON:0001369 iliacus muscle 8 14581 -UBERON:0002000 gluteal muscle 8 14582 -UBERON:0001370 gluteus maximus 9 14583 -UBERON:0001371 gluteus medius 9 14584 -UBERON:0001376 tensor fasciae latae muscle 9 14585 -UBERON:0008521 gluteus minimus 9 14586 -UBERON:0008529 piriformis muscle 9 14587 -UBERON:0008537 quadratus femoris 9 14588 -UBERON:0011043 obturator muscle 9 14589 -UBERON:0001368 obturator externus 10 14590 -UBERON:0011048 obturator internus 10 14591 -UBERON:0003658 hip muscle 7 14592 -UBERON:0011144 adductor muscle of hip 7 14593 -UBERON:0000303 adductor longus 8 14594 -UBERON:0000368 adductor brevis 8 14595 -UBERON:0000370 adductor magnus 8 14596 -UBERON:0000950 gracilis 8 14597 -UBERON:0001368 obturator externus 8 14598 -UBERON:0001382 pectineus muscle 8 14599 -UBERON:2000497 pelvic adductor profundus 8 14600 -UBERON:2000592 superficial pelvic adductor 8 14601 -UBERON:0014795 pelvic appendage muscle 7 14602 -UBERON:0003663 hindlimb muscle 8 14603 -UBERON:0001377 quadriceps femoris 9 14604 -UBERON:0001378 rectus femoris 10 14605 -UBERON:0001379 vastus lateralis 10 14606 -UBERON:0001380 vastus medialis 10 14607 -UBERON:0014847 vastus intermedius 10 14608 -UBERON:0001383 muscle of leg 9 14609 -UBERON:0001391 popliteus muscle 10 14610 -UBERON:0001392 flexor hallucis longus 10 14611 -UBERON:0001666 flexor digitorum longus 10 14612 -UBERON:0004252 hindlimb stylopod muscle 10 14613 -UBERON:0000303 adductor longus 11 14614 -UBERON:0000368 adductor brevis 11 14615 -UBERON:0000370 adductor magnus 11 14616 -UBERON:0000950 gracilis 11 14617 -UBERON:0001382 pectineus muscle 11 14618 -UBERON:0002463 muscle of posterior compartment of hindlimb stylopod 11 14619 -UBERON:0001374 biceps femoris 12 14620 -UBERON:0001375 semitendinosus 12 14621 -UBERON:0001381 semimembranosus muscle 12 14622 -UBERON:0019201 gemellus muscle 11 14623 -UBERON:0019202 inferior gemellus muscle 12 14624 -UBERON:0019203 superior gemellus muscle 12 14625 -UBERON:0004256 hindlimb zeugopod muscle 10 14626 -UBERON:0001388 gastrocnemius 11 14627 -UBERON:0001389 soleus muscle 11 14628 -UBERON:0001665 triceps surae 11 14629 -UBERON:0008230 tibialis 11 14630 -UBERON:0001385 tibialis anterior 12 14631 -UBERON:0001667 tibialis posterior 12 14632 -UBERON:0009132 peroneus 11 14633 -UBERON:0001387 fibularis longus 12 14634 -UBERON:0010524 fibularis tertius 12 14635 -UBERON:0010526 fibularis brevis 12 14636 -UBERON:0014410 fibularis quartus 12 14637 -UBERON:0011905 plantaris 11 14638 -UBERON:0011909 gastrocnemius internus 11 14639 -UBERON:0011910 gastrocnemius externus 11 14640 -UBERON:0001386 extensor digitorum longus 9 14641 -UBERON:0001498 muscle of pes 9 14642 -UBERON:0000372 extensor digitorum brevis pes 10 14643 -UBERON:0003659 pedal digit muscle 10 14644 -UBERON:0008464 abductor hallucis muscle 10 14645 -UBERON:0014378 intrinsic muscle of pes 10 14646 -UBERON:0001504 lumbrical muscle of pes 11 14647 -UBERON:0006497 interosseous muscle of pes 11 14648 -UBERON:0006499 dorsal pes interosseous muscle 12 14649 -UBERON:0006502 plantar interosseous muscle of pes 12 14650 -UBERON:0011022 flexor hallucis brevis muscle 11 14651 -UBERON:0014379 adductor hallucis muscle 11 14652 -UBERON:0014380 flexor digitorum brevis muscle 11 14653 -UBERON:0013221 caudofemoralis 9 14654 -UBERON:0035081 caudofemoralis longus 10 14655 -UBERON:0035082 caudofemoralis brevis 10 14656 -UBERON:0013511 ambiens muscle 9 14657 -UBERON:0014888 iliotibialis muscle 9 14658 -UBERON:0017156 flexor cruris lateralis muscle 9 14659 -UBERON:0017102 flexor cruris lateralis pars accessoria muscle 10 14660 -UBERON:2000439 superficial pelvic abductor 8 14661 -UBERON:2000497 pelvic adductor profundus 8 14662 -UBERON:2000564 pelvic abductor profundus 8 14663 -UBERON:2000592 superficial pelvic adductor 8 14664 -UBERON:2000651 dorsal pelvic arrector 8 14665 -UBERON:2000704 ventral pelvic arrector 8 14666 -UBERON:3010018 M. glutaeus magnus 7 14667 -UBERON:3010022 M. tensor fasciae latae 7 14668 -UBERON:3010027 M. sartorius 7 14669 -UBERON:3010032 M. semitendinosus 7 14670 -UBERON:3010047 M. quadratus femoris 7 14671 -UBERON:3010049 M. gemellus 7 14672 -UBERON:3010065 M. gracilis major 7 14673 -UBERON:3010067 M. gracilis minor 7 14674 -UBERON:3010068 M. semimembranosus 7 14675 -UBERON:3010070 M. ileo-fibularis 7 14676 -UBERON:3010072 M. pyriformis 7 14677 -UBERON:3010074 M. ileo-femoralis 7 14678 -UBERON:3010076 M. iliacus internus 7 14679 -UBERON:3010078 M. iliacus externus 7 14680 -UBERON:3010082 M. pulmonum proprius 7 14681 -UBERON:3010084 M. tibialis posticus 7 14682 -UBERON:3010087 M. tibialis anticus longus 7 14683 -UBERON:3010089 M. extensor cruris brevis 7 14684 -UBERON:3010090 M. tibialis anticus brevis 7 14685 -UBERON:3010097 M. tarsalis posticus 7 14686 -UBERON:3010098 M. plantaris profundus 7 14687 -UBERON:3010136 M. cruralis 7 14688 -UBERON:3010523 M. plantaris longus 7 14689 -UBERON:3010745 M. coccygeosacralis 7 14690 -UBERON:3010748 M. coccygeoiliacus 7 14691 -UBERON:3010749 M. iliolumbaris 7 14692 -UBERON:3010758 M. coccygeocutaneus 7 14693 -UBERON:0010891 pectoral complex muscle 6 14694 -UBERON:0001129 subscapularis muscle 7 14695 -UBERON:0001477 infraspinatus muscle 7 14696 -UBERON:0002383 supraspinatus muscle 7 14697 -UBERON:0008196 muscle of pectoral girdle 7 14698 -UBERON:0001495 pectoral muscle 8 14699 -UBERON:0001100 pectoralis minor 9 14700 -UBERON:0002381 pectoralis major 9 14701 -UBERON:0008779 subclavius 9 14702 -UBERON:0014837 pectoantebrachialis 9 14703 -UBERON:0014838 xiphihumeralis 9 14704 -UBERON:0011605 supracoracoideus muscle of wing 8 14705 -UBERON:0011646 patagialis muscle 8 14706 -UBERON:0014840 supracoracoideus muscle 8 14707 -UBERON:0010496 teres minor muscle 7 14708 -UBERON:0014794 pectoral appendage muscle 7 14709 -UBERON:0003662 forelimb muscle 8 14710 -UBERON:0001499 muscle of arm 9 14711 -UBERON:0001506 brachialis muscle 10 14712 -UBERON:0004254 forelimb zeugopod muscle 10 14713 -UBERON:0001521 flexor carpi radialis muscle 11 14714 -UBERON:0001522 flexor carpi ulnaris muscle 11 14715 -UBERON:0003222 flexor digitorum superficialis 11 14716 -UBERON:0003228 supinator muscle 11 14717 -UBERON:0008446 flexor pollicis longus muscle 11 14718 -UBERON:0011024 extrinsic extensor muscle of manus 11 14719 -UBERON:0001526 extensor carpi ulnaris muscle 12 14720 -UBERON:0003234 extensor pollicis longus muscle 12 14721 -UBERON:0007612 extensor digitorum communis 12 14722 -UBERON:0007613 extensor digitorum lateralis muscle 12 14723 -UBERON:0007614 extensor digiti minimi muscle 12 14724 -UBERON:0011867 extensor carpi radialis muscle 12 14725 -UBERON:0001524 extensor carpi radialis longus muscle 13 14726 -UBERON:0001525 extensor carpi radialis brevis muscle 13 14727 -UBERON:0017618 extensor pollicis brevis muscle 12 14728 -UBERON:0004255 forelimb stylopod muscle 10 14729 -UBERON:0001505 coracobrachialis muscle 11 14730 -UBERON:0001507 biceps brachii 11 14731 -UBERON:0001509 triceps brachii 11 14732 -UBERON:0001523 flexor digitorum profundus 11 14733 -UBERON:0002989 anconeus muscle 11 14734 -UBERON:0011011 brachioradialis 10 14735 -UBERON:0001500 muscle of manus 9 14736 -UBERON:0002962 adductor pollicis muscle 10 14737 -UBERON:0003664 manual digit muscle 10 14738 -UBERON:0008465 abductor pollicis brevis muscle 10 14739 -UBERON:0011012 flexor pollicis brevis muscle 10 14740 -UBERON:0014375 intrinsic muscle of manus 10 14741 -UBERON:0001501 lumbrical muscle of manus 11 14742 -UBERON:0001502 interosseous muscle of manus 11 14743 -UBERON:0001503 dorsal interosseous of manus 12 14744 -UBERON:0002988 first dorsal interosseous of manus 13 14745 -UBERON:0006505 palmar interosseous muscle of manus 12 14746 -UBERON:0014376 thenar muscle 11 14747 -UBERON:0014377 hypothenar muscle 11 14748 -UBERON:0036172 palmaris brevis 12 14749 -UBERON:0036173 abductor digiti minimi of hand 12 14750 -UBERON:0036174 flexor digiti minimi brevis of hand 12 14751 -UBERON:0036176 opponens digiti minimi of hand 12 14752 -UBERON:0035842 extensor digitorum brevis manus 10 14753 -UBERON:0001520 pronator teres 9 14754 -UBERON:0011533 abductor pollicis, radioulna-prepollox 9 14755 -UBERON:0011534 abductor pollicis muscle 9 14756 -UBERON:0001527 abductor pollicis longus 10 14757 -UBERON:0008465 abductor pollicis brevis muscle 10 14758 -UBERON:0012520 forelimb epitrochlearis muscle 9 14759 -UBERON:0016493 palmaris longus muscle 9 14760 -UBERON:4200101 m.scapulotriceps 9 14761 -UBERON:2000285 superficial adductor 8 14762 -UBERON:2000492 coracoradialis 8 14763 -UBERON:2000499 dorsal arrector 8 14764 -UBERON:2000614 abductor profundus 8 14765 -UBERON:2000616 adductor profundus 8 14766 -UBERON:2000685 superficial abductor 8 14767 -UBERON:2000701 ventral arrector 8 14768 -UBERON:4200121 puboischiotibialis muscle 8 14769 -UBERON:3010447 M. extensor digitorum communis longus 7 14770 -UBERON:3010673 m. rhomboideus anterior 7 14771 -UBERON:3010691 m. opercularis 7 14772 -UBERON:3010692 m. cucullaris 7 14773 -UBERON:3010694 m. rhomboideus posterior 7 14774 -UBERON:3010695 m. serratus superior 7 14775 -UBERON:3010698 m. serratus medius 7 14776 -UBERON:3010699 m. serratus inferior 7 14777 -UBERON:3010701 m. latissimus dorsi 7 14778 -UBERON:3010707 m. dorsalis scapulae 7 14779 -UBERON:3010710 m. interscapularis 7 14780 -UBERON:3010713 m. sternoepicoracoideus 7 14781 -UBERON:3010725 M. coracoradialis 7 14782 -UBERON:3010729 M. coracobrachialis longus 7 14783 -UBERON:3010731 M. coracobrachialis brevis 7 14784 -UBERON:3010734 M. flexor carpi ulnaris 7 14785 -UBERON:3010737 M. palmaris longus 7 14786 -UBERON:3010738 M. palmaris profundis 7 14787 -UBERON:3010739 M. flexor antibrachii medialis 7 14788 -UBERON:3010741 M. ulnocarpalis 7 14789 -UBERON:3010743 M. flexor antibrachii lateralis superficialis 7 14790 -UBERON:3010744 M. flexor antibrachii lateralis profundus 7 14791 -UBERON:0010940 muscle of digastric group 6 14792 -UBERON:0010943 anterior digastric muscle 7 14793 -UBERON:0010944 posterior digastric muscle 7 14794 -UBERON:0010948 cleidooccipital muscle 6 14795 -UBERON:0010959 craniocervical muscle 6 14796 -UBERON:0000378 tongue muscle 7 14797 -UBERON:0001574 palatoglossus muscle 8 14798 -UBERON:0001575 extrinsic muscle of tongue 8 14799 -UBERON:0001571 genioglossus muscle 9 14800 -UBERON:0001572 hyoglossus muscle 9 14801 -UBERON:0001573 styloglossus 9 14802 -UBERON:0001576 intrinsic muscle of tongue 8 14803 -UBERON:0008582 superior longitudinal muscle of tongue 9 14804 -UBERON:0008583 transverse muscle of tongue 9 14805 -UBERON:0008584 vertical muscle of tongue 9 14806 -UBERON:0001601 extra-ocular muscle 7 14807 -UBERON:0001604 levator palpebrae superioris 8 14808 -UBERON:0006531 oculomotor muscle 8 14809 -UBERON:0006532 oblique extraocular muscle 9 14810 -UBERON:0006320 inferior oblique extraocular muscle 10 14811 -UBERON:0006321 superior oblique extraocular muscle 10 14812 -UBERON:0006533 rectus extraocular muscle 9 14813 -UBERON:0001602 medial rectus extraocular muscle 10 14814 -UBERON:0001603 lateral rectus extra-ocular muscle 10 14815 -UBERON:0006322 inferior rectus extraocular muscle 10 14816 -UBERON:0006323 superior rectus extraocular muscle 10 14817 -UBERON:0010271 musculus retractor bulbi 8 14818 -UBERON:3010125 musculus levator bulbi 8 14819 -UBERON:0002376 cranial muscle 7 14820 -UBERON:0004113 muscle of auditory ossicle 8 14821 -UBERON:0001599 stapedius muscle 9 14822 -UBERON:0001600 tensor tympani 9 14823 -UBERON:0010950 styloauricular muscle 8 14824 -UBERON:0010951 interscutular muscle 8 14825 -UBERON:0011648 jaw muscle 8 14826 -UBERON:0003681 masticatory muscle 9 14827 -UBERON:0001597 masseter muscle 10 14828 -UBERON:0001598 temporalis muscle 10 14829 -UBERON:0006720 pterygoid muscle 10 14830 -UBERON:0006718 medial pterygoid muscle 11 14831 -UBERON:0006719 lateral pterygoid muscle 11 14832 -UBERON:0011647 depressor mandibulae muscle 9 14833 -UBERON:0011683 adductor mandibulae 9 14834 -UBERON:0011684 levator palatoquadrati 9 14835 -UBERON:0011685 preorbitalis muscle 9 14836 -UBERON:0011686 spiracularis muscle 9 14837 -UBERON:2000384 levator arcus palatini 9 14838 -UBERON:2000498 dilatator operculi 9 14839 -UBERON:2007050 constrictor dorsalis 9 14840 -UBERON:3010558 quadrato-ethmoid ligament 9 14841 -UBERON:3010700 levator mandibulae externus 9 14842 -UBERON:3010704 levator mandibulae longus 9 14843 -UBERON:3010708 levator mandibulae articularis 9 14844 -UBERON:3010709 levator mandibulae lateralis 9 14845 -UBERON:3010711 levator mandibulae externus superficialis 9 14846 -UBERON:3010712 levator mandibulae externus profundus 9 14847 -UBERON:3010724 levator quadrati 9 14848 -UBERON:3010742 interhyoideus posterior 9 14849 -UBERON:3010747 submentalis 9 14850 -UBERON:0015789 cranial or facial muscle 8 14851 -UBERON:0001577 facial muscle 9 14852 -UBERON:0001580 levator labii superioris 10 14853 -UBERON:0001581 depressor labii inferioris 10 14854 -UBERON:0001582 buccinator muscle 10 14855 -UBERON:0001599 stapedius muscle 10 14856 -UBERON:0005467 platysma 10 14857 -UBERON:0008522 nasal muscle 10 14858 -UBERON:0008588 procerus 11 14859 -UBERON:0008589 depressor septi nasi 11 14860 -UBERON:0010953 nasalis muscle 11 14861 -UBERON:0008591 depressor supercilii 10 14862 -UBERON:0008592 levator labii superioris alaeque nasi 10 14863 -UBERON:0008595 levator anguli oris 10 14864 -UBERON:0008596 mentalis muscle 10 14865 -UBERON:0008597 depressor anguli oris muscle 10 14866 -UBERON:0008598 risorius muscle 10 14867 -UBERON:0008609 transversus menti muscle 10 14868 -UBERON:0010437 zygomaticus muscle 10 14869 -UBERON:0008593 zygomaticus major muscle 11 14870 -UBERON:0008594 zygomaticus minor muscle 11 14871 -UBERON:0010933 orbicularis oris muscle 10 14872 -UBERON:0010944 posterior digastric muscle 10 14873 -UBERON:0011647 depressor mandibulae muscle 10 14874 -UBERON:2001693 protractor operculi 8 14875 -UBERON:2001768 retractor tentaculi 8 14876 -UBERON:2002200 hypobranchial muscle 8 14877 -UBERON:2002281 retractor posttemporalis 8 14878 -UBERON:3000032 auditory muscles 8 14879 -UBERON:3000224 hyobranchial muscle 8 14880 -UBERON:3010618 constrictor laryngis externus 9 14881 -UBERON:3010620 dilatator laryngis 9 14882 -UBERON:3010621 constrictor laryngis anterior 9 14883 -UBERON:3010650 cephalodorsosubpharyngeus 9 14884 -UBERON:3010651 levator bulbi 9 14885 -UBERON:3010654 rectus cervicis 9 14886 -UBERON:3010657 subhyoideus 9 14887 -UBERON:3010659 subarcualis rectus I 9 14888 -UBERON:3000309 narial muscles 8 14889 -UBERON:0002377 muscle of neck 7 14890 -UBERON:0000711 splenius capitis 8 14891 -UBERON:0001122 scalenus medius 8 14892 -UBERON:0001123 scalenus posterior 8 14893 -UBERON:0001128 sternocleidomastoid 8 14894 -UBERON:0001568 muscle of larynx 8 14895 -UBERON:0006327 laryngeal extrinsic muscle 9 14896 -UBERON:0006328 laryngeal intrinsic muscle 9 14897 -UBERON:0001566 cricothyroid muscle 10 14898 -UBERON:0001570 inferior pharyngeal constrictor 11 14899 -UBERON:0008576 thyro-arytenoid 10 14900 -UBERON:0008577 vocalis muscle 10 14901 -UBERON:0010932 crico-arytenoid muscle 10 14902 -UBERON:0008572 posterior crico-arytenoid 11 14903 -UBERON:0008573 lateral crico-arytenoid 11 14904 -UBERON:0010958 arytenoid muscle 10 14905 -UBERON:0008574 transverse arytenoid 11 14906 -UBERON:0008575 oblique arytenoid 11 14907 -UBERON:0010927 thyroepiglotticus muscle 9 14908 -UBERON:0011025 aryepiglotticus muscle 9 14909 -UBERON:0011312 hyoepiglottic muscle 9 14910 -UBERON:0003250 rectus capitis lateralis muscle 8 14911 -UBERON:0008453 rectus capitis anterior 8 14912 -UBERON:0008454 rectus capitis posterior major 8 14913 -UBERON:0008455 rectus capitis posterior minor 8 14914 -UBERON:0008611 scalene muscle 8 14915 -UBERON:0008622 scalenus anterior 9 14916 -UBERON:0010945 jugulohyoideus muscle 8 14917 -UBERON:0010949 sternooccipital muscle 8 14918 -UBERON:0011251 levator claviculae muscle 8 14919 -UBERON:0011508 sphincter colli superficialis muscle 8 14920 -UBERON:0011509 sphincter colli profundus muscle 8 14921 -UBERON:0013635 sphincter colli muscle 8 14922 -UBERON:0017647 prevertebral muscle of neck 8 14923 -UBERON:0003682 palatal muscle 7 14924 -UBERON:0001574 palatoglossus muscle 8 14925 -UBERON:0008585 levator veli palatini 8 14926 -UBERON:0008586 tensor veli palatini 8 14927 -UBERON:0010234 palatopharyngeus muscle 8 14928 -UBERON:0010235 uvular muscle 8 14929 -UBERON:2000311 adductor mandibulae complex 7 14930 -UBERON:0011145 adductor muscle 6 14931 -UBERON:0002962 adductor pollicis muscle 7 14932 -UBERON:0011144 adductor muscle of hip 7 14933 -UBERON:0000303 adductor longus 8 14934 -UBERON:0000368 adductor brevis 8 14935 -UBERON:0000370 adductor magnus 8 14936 -UBERON:0000950 gracilis 8 14937 -UBERON:0001368 obturator externus 8 14938 -UBERON:0001382 pectineus muscle 8 14939 -UBERON:2000497 pelvic adductor profundus 8 14940 -UBERON:2000592 superficial pelvic adductor 8 14941 -UBERON:0011564 adductor pollicis muscle of prepollex 7 14942 -UBERON:0011683 adductor mandibulae 7 14943 -UBERON:2000285 superficial adductor 7 14944 -UBERON:2000311 adductor mandibulae complex 7 14945 -UBERON:2000616 adductor profundus 7 14946 -UBERON:0011364 cleidocephalicus muscle 6 14947 -UBERON:0001128 sternocleidomastoid 7 14948 -UBERON:0011369 omotransversarius muscle 6 14949 -UBERON:0011371 sternocephalicus muscle 6 14950 -UBERON:0014842 puboischiofemoralis muscle 6 14951 -UBERON:0011643 puboischiofemoralis internus muscle 7 14952 -UBERON:0011644 puboischiofemoralis externus muscle 7 14953 -UBERON:0034908 scapular muscle 6 14954 -UBERON:0001112 latissimus dorsi muscle 7 14955 -UBERON:0001125 serratus ventralis 7 14956 -UBERON:0001476 deltoid 7 14957 -UBERON:0001477 infraspinatus muscle 7 14958 -UBERON:0001509 triceps brachii 7 14959 -UBERON:0002383 supraspinatus muscle 7 14960 -UBERON:0005461 levator scapulae muscle 7 14961 -UBERON:0010467 teres muscle 7 14962 -UBERON:0001478 teres major muscle 8 14963 -UBERON:0010496 teres minor muscle 8 14964 -UBERON:0014800 spinotrapezius muscle 7 14965 -UBERON:0035112 intrinsic muscle 6 14966 -UBERON:0014375 intrinsic muscle of manus 7 14967 -UBERON:0001501 lumbrical muscle of manus 8 14968 -UBERON:0001502 interosseous muscle of manus 8 14969 -UBERON:0001503 dorsal interosseous of manus 9 14970 -UBERON:0002988 first dorsal interosseous of manus 10 14971 -UBERON:0006505 palmar interosseous muscle of manus 9 14972 -UBERON:0014376 thenar muscle 8 14973 -UBERON:0014377 hypothenar muscle 8 14974 -UBERON:0036172 palmaris brevis 9 14975 -UBERON:0036173 abductor digiti minimi of hand 9 14976 -UBERON:0036174 flexor digiti minimi brevis of hand 9 14977 -UBERON:0036176 opponens digiti minimi of hand 9 14978 -UBERON:0014378 intrinsic muscle of pes 7 14979 -UBERON:0001504 lumbrical muscle of pes 8 14980 -UBERON:0006497 interosseous muscle of pes 8 14981 -UBERON:0006499 dorsal pes interosseous muscle 9 14982 -UBERON:0006502 plantar interosseous muscle of pes 9 14983 -UBERON:0011022 flexor hallucis brevis muscle 8 14984 -UBERON:0014379 adductor hallucis muscle 8 14985 -UBERON:0014380 flexor digitorum brevis muscle 8 14986 -UBERON:2000230 longitudinal hypochordal 6 14987 -UBERON:2000528 interradialis 6 14988 -UBERON:2000902 hypural musculature 6 14989 -UBERON:2002147 arrector muscle 6 14990 -UBERON:2000499 dorsal arrector 7 14991 -UBERON:2000651 dorsal pelvic arrector 7 14992 -UBERON:2000701 ventral arrector 7 14993 -UBERON:2000704 ventral pelvic arrector 7 14994 -UBERON:2007008 ventral intermandibularis anterior 6 14995 -UBERON:2007048 ventral intermandibularis posterior 6 14996 -UBERON:3010815 m. flexor indicis superficialis proprius 6 14997 -UBERON:4200031 caudalipuboischiotibialis 6 14998 -UBERON:4300030 flexor caudalis muscle 6 14999 -UBERON:0015430 levator auris longus muscle 5 15000 -UBERON:0017196 retractor lateralis muscle 5 15001 -UBERON:0017098 retractor lateralis posterior muscle 6 15002 -UBERON:0017099 retractor lateralis anterior muscle 6 15003 -UBERON:0018544 trigeminal nerve muscle 5 15004 -UBERON:0001564 mylohyoid muscle 6 15005 -UBERON:0001600 tensor tympani 6 15006 -UBERON:0003681 masticatory muscle 6 15007 -UBERON:0001597 masseter muscle 7 15008 -UBERON:0001598 temporalis muscle 7 15009 -UBERON:0006720 pterygoid muscle 7 15010 -UBERON:0006718 medial pterygoid muscle 8 15011 -UBERON:0006719 lateral pterygoid muscle 8 15012 -UBERON:0008586 tensor veli palatini 6 15013 -UBERON:0010943 anterior digastric muscle 6 15014 -UBERON:0011683 adductor mandibulae 6 15015 -UBERON:0011684 levator palatoquadrati 6 15016 -UBERON:0011685 preorbitalis muscle 6 15017 -UBERON:0011686 spiracularis muscle 6 15018 -UBERON:3010700 levator mandibulae externus 6 15019 -UBERON:3010708 levator mandibulae articularis 6 15020 -UBERON:3010709 levator mandibulae lateralis 6 15021 -UBERON:3010724 levator quadrati 6 15022 -UBERON:0035147 axochord 5 15023 -UBERON:0036147 oral siphon muscle 5 15024 -UBERON:0036148 orovelar muscle 5 15025 -UBERON:2002221 pericardial muscle 5 15026 -UBERON:0003829 urethra muscle tissue 4 15027 -UBERON:0004917 urethral sphincter 5 15028 -UBERON:0004918 internal urethral sphincter 6 15029 -UBERON:0004919 external urethral sphincter 6 15030 -UBERON:0011379 male external urethral sphincter 7 15031 -UBERON:0011380 female external urethral sphincter 7 15032 -UBERON:0014895 somatic muscle 4 15033 -UBERON:0014896 transversely striated somatic muscle 5 15034 -UBERON:0014897 obliquely striated somatic muscle 5 15035 -UBERON:6003259 adult somatic muscle 4 15036 -UBERON:0005160 vestigial structure 3 15037 -UBERON:0005161 pelvic spur 4 15038 -UBERON:0006590 remnant of embryonic structure 4 15039 -UBERON:0002254 thyroglossal duct 5 15040 -UBERON:0003705 Meckel's diverticulum 5 15041 -UBERON:0006591 transformed artery 5 15042 -UBERON:0006607 medial umbilical ligament 6 15043 -UBERON:0007642 ligamentum arteriosum 6 15044 -UBERON:0006592 transformed vein 5 15045 -UBERON:0006587 ligamentum venosum 6 15046 -UBERON:0006588 round ligament of liver 6 15047 -UBERON:0006638 remnant of urachus 5 15048 -UBERON:0006651 appendix testis 5 15049 -UBERON:0011283 epoophoron 5 15050 -UBERON:0013249 paroophoron 5 15051 -UBERON:0013250 vesicular appendage of epoophoron 5 15052 -UBERON:0013262 remnnant of ductus deferens 5 15053 -UBERON:0013277 remnant of processus vaginalis 5 15054 -UBERON:0013278 canal of Nuck 5 15055 -UBERON:0034764 remnant of cardiac valve 5 15056 -UBERON:0006641 appendix epididymis 4 15057 -UBERON:0006699 foramen cecum of tongue 4 15058 -UBERON:0010209 plica semilunaris of conjunctiva 4 15059 -UBERON:0005389 transparent eye structure 3 15060 -UBERON:0000207 compound eye corneal lens 4 15061 -UBERON:0000965 lens of camera-type eye 4 15062 -UBERON:0006968 keratin sheath of horn 3 15063 -UBERON:0007567 regenerating anatomical structure 3 15064 -UBERON:0005306 blastema 4 15065 -UBERON:0012438 blastema of regenerating fin/limb 5 15066 -UBERON:0012439 blastema of regenerating digit tip 5 15067 -UBERON:0007574 apical epidermal cap 4 15068 -UBERON:2001269 regenerating fin/limb 4 15069 -UBERON:2005149 distal epidermal cap of regenerating fin/limb 4 15070 -UBERON:2005150 basal regeneration epithelium of regenerating fin/limb 4 15071 -UBERON:0007651 anatomical junction 3 15072 -UBERON:0001073 ileocecal junction 4 15073 -UBERON:0002221 fontanelle 4 15074 -UBERON:0002510 anterior fontanel 5 15075 -UBERON:0006683 posterior fontanelle 5 15076 -UBERON:0006684 sphenoidal fontanelle 5 15077 -UBERON:2001739 anterior cranial fontanel 5 15078 -UBERON:2001740 posterior cranial fontanel 5 15079 -UBERON:2002011 lateral fontanel of frontal 5 15080 -UBERON:0003052 midbrain-hindbrain boundary 4 15081 -UBERON:0003988 thymus corticomedullary boundary 4 15082 -UBERON:0004903 bronchoalveolar duct junction 4 15083 -UBERON:0005075 forebrain-midbrain boundary 4 15084 -UBERON:0005076 hindbrain-spinal cord boundary 4 15085 -UBERON:0006235 foregut-midgut junction 4 15086 -UBERON:0006264 mouth-foregut junction 4 15087 -UBERON:0006574 pectinate line 4 15088 -UBERON:0006654 perineal body 4 15089 -UBERON:0006742 canthus 4 15090 -UBERON:0005611 inner canthus 5 15091 -UBERON:0013679 inner canthus of right eye 6 15092 -UBERON:0013680 inner canthus of left eye 6 15093 -UBERON:0006726 outer canthus 5 15094 -UBERON:0015120 right outer canthus 6 15095 -UBERON:0015121 left outer canthus 6 15096 -UBERON:0006761 corneo-scleral junction 4 15097 -UBERON:0007650 esophagogastric junction 4 15098 -UBERON:0009917 kidney corticomedullary boundary 4 15099 -UBERON:0009972 ureteropelvic junction 4 15100 -UBERON:0009973 ureterovesical junction 4 15101 -UBERON:0010173 sinotubular junction 4 15102 -UBERON:0011221 ora serrata of retina 4 15103 -UBERON:0011820 atrioventricular region 4 15104 -UBERON:0012270 forestomach-glandular stomach junction 4 15105 -UBERON:0012650 gastroduodenal junction 4 15106 -UBERON:0015178 somite border 4 15107 -UBERON:0015485 choledocho-duodenal junction 4 15108 -UBERON:0016498 intestinal-cloacal junction 4 15109 -UBERON:0018149 angle of oral opening 4 15110 -UBERON:0018239 rhombomere boundary 4 15111 -UBERON:0035149 gingival epithelial attachment 4 15112 -UBERON:0036014 gluteal sulcus 4 15113 -UBERON:0036214 rectosigmoid junction 4 15114 -UBERON:1000005 external ear margin 4 15115 -UBERON:0009650 cortical arch of kidney 3 15116 -UBERON:0009856 sac 3 15117 -UBERON:0005435 upper part of cisterna chyli 4 15118 -UBERON:0007499 epithelial sac 4 15119 -UBERON:0000084 ureteric bud 5 15120 -UBERON:0005080 metanephric ureteric bud 6 15121 -UBERON:0005081 ureter ureteric bud 6 15122 -UBERON:0005312 primary ureteric bud 6 15123 -UBERON:0000939 imaginal disc 5 15124 -UBERON:6001764 labial disc 6 15125 -UBERON:6001765 clypeo-labral disc 6 15126 -UBERON:6001766 eye-antennal disc 6 15127 -UBERON:6001767 antennal disc 6 15128 -UBERON:6001776 dorsal thoracic disc 6 15129 -UBERON:6001778 wing disc 7 15130 -UBERON:6001779 haltere disc 7 15131 -UBERON:6001780 ventral thoracic disc 6 15132 -UBERON:6001781 prothoracic leg disc 7 15133 -UBERON:6001784 genital disc 6 15134 -UBERON:6001785 male genital disc 7 15135 -UBERON:6001787 female genital disc 7 15136 -UBERON:0001040 yolk sac 5 15137 -UBERON:0008852 visceral yolk sac 6 15138 -UBERON:0008853 parietal yolk sac 6 15139 -UBERON:0002169 alveolar sac 5 15140 -UBERON:0002223 endolymphatic sac 5 15141 -UBERON:0003051 ear vesicle 5 15142 -UBERON:0003922 pancreatic epithelial bud 5 15143 -UBERON:0003923 dorsal pancreatic bud 6 15144 -UBERON:0003924 ventral pancreatic bud 6 15145 -UBERON:0004912 biliary bud 5 15146 -UBERON:0005356 Rathke's pouch 5 15147 -UBERON:0006250 infundibular recess of 3rd ventricle 5 15148 -UBERON:0006364 ureteric bud tip 5 15149 -UBERON:0007501 arborizing epithelial duct system 5 15150 -UBERON:0014706 primitive renal collecting duct system 6 15151 -UBERON:0008835 hepatic diverticulum 5 15152 -UBERON:0008836 liver bud 5 15153 -UBERON:0008969 dental follicle 5 15154 -UBERON:0009495 extrahepatic part of biliary bud 5 15155 -UBERON:0009496 intrahepatic part of biliary bud 5 15156 -UBERON:0010020 tubotympanic recess epithelium 5 15157 -UBERON:0010063 tympanic cavity epithelium 5 15158 -UBERON:0012287 Rathkes pouch epithelium 5 15159 -UBERON:0034953 embryonic lymph sac 5 15160 -UBERON:0011765 jugular lymph sac 6 15161 -UBERON:0034958 retroperitoneal embryonic lymph sac 6 15162 -UBERON:0036256 iliac lymph sac 6 15163 -UBERON:0036260 embryonic cisterna chyli 6 15164 -UBERON:0036072 respiratory primordium epithelium 5 15165 -UBERON:0036261 accessory lymph sac 5 15166 -UBERON:0009854 digestive tract diverticulum 4 15167 -UBERON:0001153 caecum 5 15168 -UBERON:0004912 biliary bud 5 15169 -UBERON:0008835 hepatic diverticulum 5 15170 -UBERON:0008836 liver bud 5 15171 -UBERON:0009855 echinoderm gastric caecum 5 15172 -UBERON:0012287 Rathkes pouch epithelium 5 15173 -UBERON:0012474 hepatic cecum 5 15174 -UBERON:0036072 respiratory primordium epithelium 5 15175 -UBERON:4300174 actinopterygian pyloric caecum 5 15176 -UBERON:0018707 bladder organ 4 15177 -UBERON:0001255 urinary bladder 5 15178 -UBERON:0002110 gall bladder 5 15179 -UBERON:0006860 swim bladder 5 15180 -UBERON:0010000 multicellular anatomical structure 3 15181 -UBERON:0000062 organ 4 15182 -UBERON:0000020 sense organ 5 15183 -UBERON:0000005 chemosensory organ 6 15184 -UBERON:0003212 gustatory organ 7 15185 -UBERON:0001727 taste bud 8 15186 -UBERON:0014451 tongue taste bud 9 15187 -UBERON:0034717 integumental taste bud 9 15188 -UBERON:0034718 barbel taste bud 10 15189 -UBERON:0034719 lip taste bud 10 15190 -UBERON:0034720 head taste bud 10 15191 -UBERON:0034726 trunk taste bud 10 15192 -UBERON:0034721 pharyngeal taste bud 9 15193 -UBERON:0034722 mouth roof taste bud 9 15194 -UBERON:0034670 palatal taste bud 10 15195 -UBERON:0034723 fin taste bud 9 15196 -UBERON:0034724 esophageal taste bud 9 15197 -UBERON:0000970 eye 6 15198 -UBERON:0000047 simple eye 7 15199 -UBERON:0000019 camera-type eye 8 15200 -UBERON:0000046 stemma 8 15201 -UBERON:0000048 pinhole eye 8 15202 -UBERON:0000049 spherical lensed eye 8 15203 -UBERON:0000050 simple eye with multiple lenses 8 15204 -UBERON:0000971 ommatidium 7 15205 -UBERON:0003211 median eye 7 15206 -UBERON:0004548 left eye 7 15207 -UBERON:0004549 right eye 7 15208 -UBERON:0015165 multi-unit eye 7 15209 -UBERON:0000018 compound eye 8 15210 -UBERON:0015170 nauplius eye 7 15211 -UBERON:6005805 Bolwig organ 7 15212 -UBERON:0001038 chordotonal organ 6 15213 -UBERON:0001690 ear 6 15214 -UBERON:0035174 right ear 7 15215 -UBERON:0035295 left ear 7 15216 -UBERON:0001723 tongue 6 15217 -UBERON:0002227 spiral organ of cochlea 6 15218 -UBERON:0002255 vomeronasal organ 6 15219 -UBERON:0002268 olfactory organ 6 15220 -UBERON:0000004 nose 7 15221 -UBERON:0007770 osphradium 7 15222 -UBERON:0002536 arthropod sensillum 6 15223 -UBERON:0000963 head sensillum 7 15224 -UBERON:0003161 dorsal ocellus 8 15225 -UBERON:0003162 lateral ocellus 9 15226 -UBERON:6007242 embryonic/larval head sensillum 8 15227 -UBERON:6005805 Bolwig organ 9 15228 -UBERON:0000971 ommatidium 7 15229 -UBERON:6007231 external sensillum 7 15230 -UBERON:6007232 eo-type sensillum 8 15231 -UBERON:6005177 chaeta 9 15232 -UBERON:6007233 internal sensillum 7 15233 -UBERON:6005805 Bolwig organ 8 15234 -UBERON:6007240 embryonic/larval sensillum 7 15235 -UBERON:6007242 embryonic/larval head sensillum 8 15236 -UBERON:6005805 Bolwig organ 9 15237 -UBERON:0004012 golgi tendon organ 6 15238 -UBERON:0004721 crista ampullaris 6 15239 -UBERON:0005067 amphid sensory organ 6 15240 -UBERON:0006583 statocyst 6 15241 -UBERON:0009716 cupular organ 6 15242 -UBERON:0009717 coronal organ 6 15243 -UBERON:0009892 ascidian anterior sensory vesicle 6 15244 -UBERON:0009893 ascidian ocellus 6 15245 -UBERON:0009956 corpuscle of de Quatrefage 6 15246 -UBERON:0010230 eyeball of camera-type eye 6 15247 -UBERON:0010521 electroreceptor organ 6 15248 -UBERON:0011287 rostral organ 7 15249 -UBERON:0017629 mormyromast organ 7 15250 -UBERON:0035555 lateral line sense organ 7 15251 -UBERON:0008904 neuromast 8 15252 -UBERON:2000125 mandibular lateral line neuromast 9 15253 -UBERON:2000136 otic lateral line neuromast 9 15254 -UBERON:2000813 infraorbital lateral line neuromast 9 15255 -UBERON:2000814 opercular lateral line neuromast 9 15256 -UBERON:2000939 middle lateral line neuromast 9 15257 -UBERON:2000940 posterior lateral line neuromast 9 15258 -UBERON:2001025 occipital lateral line neuromast 9 15259 -UBERON:2001026 supraorbital lateral line neuromast 9 15260 -UBERON:2001472 anterior lateral line neuromast 9 15261 -UBERON:2002275 Jakubowski's organ 9 15262 -UBERON:2005113 dorsal lateral line neuromast 9 15263 -UBERON:0008917 ampullary organ 8 15264 -UBERON:0008918 ampulla of Lorenzini 8 15265 -UBERON:0011255 Eimer's organ 6 15266 -UBERON:0013731 basilar papilla 6 15267 -UBERON:0016621 lunge feeding organ 6 15268 -UBERON:6002639 larval sense organ 6 15269 -UBERON:6007240 embryonic/larval sensillum 7 15270 -UBERON:6007242 embryonic/larval head sensillum 8 15271 -UBERON:6005805 Bolwig organ 9 15272 -UBERON:6007280 embryonic/larval head sense organ 7 15273 -UBERON:6002642 embryonic/larval ocular segment sensillum 8 15274 -UBERON:6005805 Bolwig organ 9 15275 -UBERON:6007242 embryonic/larval head sensillum 8 15276 -UBERON:6005805 Bolwig organ 9 15277 -UBERON:6005168 external sensory organ 6 15278 -UBERON:6007231 external sensillum 7 15279 -UBERON:6007232 eo-type sensillum 8 15280 -UBERON:6005177 chaeta 9 15281 -UBERON:6007373 internal sense organ 6 15282 -UBERON:6007233 internal sensillum 7 15283 -UBERON:6005805 Bolwig organ 8 15284 -UBERON:0000057 urethra 5 15285 -UBERON:0001333 male urethra 6 15286 -UBERON:0001334 female urethra 6 15287 -UBERON:0000094 membrane organ 5 15288 -UBERON:0001484 articular capsule 6 15289 -UBERON:0011318 capsule of temporomandibular joint 7 15290 -UBERON:0011960 articular capsule of glenohumeral joint 7 15291 -UBERON:0011961 articular capsule of hip joint 7 15292 -UBERON:0001822 orbital septum 6 15293 -UBERON:0002281 vestibular membrane of cochlear duct 6 15294 -UBERON:0002359 fibrous pericardium 6 15295 -UBERON:0002360 meninx 6 15296 -UBERON:0000391 leptomeninx 7 15297 -UBERON:0002361 pia mater 8 15298 -UBERON:0003549 brain pia mater 9 15299 -UBERON:0003550 forebrain pia mater 10 15300 -UBERON:0003552 telencephalon pia mater 11 15301 -UBERON:0003553 diencephalon pia mater 11 15302 -UBERON:0003551 midbrain pia mater 10 15303 -UBERON:0003554 hindbrain pia mater 10 15304 -UBERON:0003555 spinal cord pia mater 9 15305 -UBERON:0002362 arachnoid mater 8 15306 -UBERON:0003556 forebrain arachnoid mater 9 15307 -UBERON:0003558 diencephalon arachnoid mater 10 15308 -UBERON:0005400 telencephalon arachnoid mater 10 15309 -UBERON:0003557 midbrain arachnoid mater 9 15310 -UBERON:0003559 hindbrain arachnoid mater 9 15311 -UBERON:0003560 spinal cord arachnoid mater 9 15312 -UBERON:0005397 brain arachnoid mater 9 15313 -UBERON:0002363 dura mater 7 15314 -UBERON:0002092 brain dura mater 8 15315 -UBERON:0003561 forebrain dura mater 9 15316 -UBERON:0003563 telencephalon dura mater 10 15317 -UBERON:0003564 diencephalon dura mater 10 15318 -UBERON:0003562 midbrain dura mater 9 15319 -UBERON:0003565 hindbrain dura mater 9 15320 -UBERON:0002093 spinal dura mater 8 15321 -UBERON:0003292 meninx of spinal cord 7 15322 -UBERON:0002093 spinal dura mater 8 15323 -UBERON:0003555 spinal cord pia mater 8 15324 -UBERON:0003560 spinal cord arachnoid mater 8 15325 -UBERON:0003547 brain meninx 7 15326 -UBERON:0002092 brain dura mater 8 15327 -UBERON:0003561 forebrain dura mater 9 15328 -UBERON:0003563 telencephalon dura mater 10 15329 -UBERON:0003564 diencephalon dura mater 10 15330 -UBERON:0003562 midbrain dura mater 9 15331 -UBERON:0003565 hindbrain dura mater 9 15332 -UBERON:0003288 meninx of midbrain 8 15333 -UBERON:0003551 midbrain pia mater 9 15334 -UBERON:0003557 midbrain arachnoid mater 9 15335 -UBERON:0003562 midbrain dura mater 9 15336 -UBERON:0003291 meninx of hindbrain 8 15337 -UBERON:0003554 hindbrain pia mater 9 15338 -UBERON:0003559 hindbrain arachnoid mater 9 15339 -UBERON:0003565 hindbrain dura mater 9 15340 -UBERON:0003548 forebrain meninges 8 15341 -UBERON:0003289 meninx of telencephalon 9 15342 -UBERON:0003552 telencephalon pia mater 10 15343 -UBERON:0003563 telencephalon dura mater 10 15344 -UBERON:0005400 telencephalon arachnoid mater 10 15345 -UBERON:0003290 meninx of diencephalon 9 15346 -UBERON:0003553 diencephalon pia mater 10 15347 -UBERON:0003558 diencephalon arachnoid mater 10 15348 -UBERON:0003564 diencephalon dura mater 10 15349 -UBERON:0003550 forebrain pia mater 9 15350 -UBERON:0003552 telencephalon pia mater 10 15351 -UBERON:0003553 diencephalon pia mater 10 15352 -UBERON:0003556 forebrain arachnoid mater 9 15353 -UBERON:0003558 diencephalon arachnoid mater 10 15354 -UBERON:0005400 telencephalon arachnoid mater 10 15355 -UBERON:0003561 forebrain dura mater 9 15356 -UBERON:0003563 telencephalon dura mater 10 15357 -UBERON:0003564 diencephalon dura mater 10 15358 -UBERON:0003549 brain pia mater 8 15359 -UBERON:0003550 forebrain pia mater 9 15360 -UBERON:0003552 telencephalon pia mater 10 15361 -UBERON:0003553 diencephalon pia mater 10 15362 -UBERON:0003551 midbrain pia mater 9 15363 -UBERON:0003554 hindbrain pia mater 9 15364 -UBERON:0005397 brain arachnoid mater 8 15365 -UBERON:0002364 tympanic membrane 6 15366 -UBERON:0004772 eyelid tarsus 6 15367 -UBERON:0004773 superior eyelid tarsus 7 15368 -UBERON:0004774 inferior eyelid tarsus 7 15369 -UBERON:0010856 patagium 6 15370 -UBERON:0014372 fibroelastic membrane of larynx 6 15371 -UBERON:4300150 gill membrane 6 15372 -UBERON:0000171 respiration organ 5 15373 -UBERON:0002048 lung 6 15374 -UBERON:0002167 right lung 7 15375 -UBERON:0002168 left lung 7 15376 -UBERON:0012121 respiratory velum 6 15377 -UBERON:0000211 ligament 5 15378 -UBERON:0003673 ligamentum flavum 6 15379 -UBERON:0003994 pelvic ligament 6 15380 -UBERON:0004724 medial palpebral ligament 6 15381 -UBERON:0006204 inguinal ligament 6 15382 -UBERON:0007657 anular ligament of radius 6 15383 -UBERON:0008845 nonskeletal ligament 6 15384 -UBERON:0001743 ligament of larynx 7 15385 -UBERON:0001730 extrinsic ligament of larynx 8 15386 -UBERON:0011311 hyoepiglottic ligament 9 15387 -UBERON:0013167 cricopharyngeal ligament 9 15388 -UBERON:0013170 cricoarytenoid ligament 9 15389 -UBERON:0013172 cricotracheal ligament 9 15390 -UBERON:0006325 laryngeal intrinsic ligament 8 15391 -UBERON:0013168 thyroepiglottic ligament 9 15392 -UBERON:0013169 vestibular ligament 9 15393 -UBERON:0013171 cricothyroid ligament 8 15394 -UBERON:0004346 gubernaculum (male or female) 7 15395 -UBERON:0008843 gubernaculum testis 8 15396 -UBERON:0008844 gubernaculum (female) 8 15397 -UBERON:0004686 gastro-splenic ligament 7 15398 -UBERON:0004687 lieno-renal ligament 7 15399 -UBERON:0006589 round ligament of uterus 7 15400 -UBERON:0006725 spiral ligament 7 15401 -UBERON:0008841 suspensory ligament 7 15402 -UBERON:0000642 suspensory ligament of duodenum 8 15403 -UBERON:0006649 suspensory ligament of ovary 8 15404 -UBERON:0006762 suspensory ligament of lens 8 15405 -UBERON:0008842 suspensory ligament of testis 8 15406 -UBERON:0008848 cranial suspensory ligament 8 15407 -UBERON:0018155 posterior incudal ligament 8 15408 -UBERON:0008847 ovarian ligament 7 15409 -UBERON:0010921 thyrohyoid ligament 7 15410 -UBERON:0010925 median thyrohyoid ligament 8 15411 -UBERON:0010926 lateral thyrohyoid ligament 8 15412 -UBERON:0011165 crico-esophageal tendon 7 15413 -UBERON:0012471 hepatogastric ligament 7 15414 -UBERON:0012472 hepatoduodenal ligament 7 15415 -UBERON:0013139 ligament of liver 7 15416 -UBERON:0001247 falciform ligament 8 15417 -UBERON:0006588 round ligament of liver 8 15418 -UBERON:0013138 coronary ligament of liver 8 15419 -UBERON:0013181 blowhole ligament 7 15420 -UBERON:0018161 annular ligament of stapes 7 15421 -UBERON:0035498 gastrophrenic ligament 7 15422 -UBERON:0008846 skeletal ligament 6 15423 -UBERON:0000351 nuchal ligament 7 15424 -UBERON:0003701 calcaneal tendon 7 15425 -UBERON:0011971 calcaneofibular ligament 8 15426 -UBERON:0004361 stylohyoid ligament 7 15427 -UBERON:0008266 periodontal ligament 7 15428 -UBERON:0008879 ligament of pinna 7 15429 -UBERON:0011088 ligament of knee joint 7 15430 -UBERON:0003676 patellar ligament 8 15431 -UBERON:0006659 cruciate ligament of knee 8 15432 -UBERON:0003671 anterior cruciate ligament of knee joint 9 15433 -UBERON:0003680 posterior cruciate ligament of knee joint 9 15434 -UBERON:0014899 anterolateral ligament of knee 8 15435 -UBERON:0011136 ligament of vertebral column 7 15436 -UBERON:0035246 posterior longitudinal ligament 8 15437 -UBERON:0035419 anterior longitudinal ligament 8 15438 -UBERON:0011320 ligament of temporomandibular joint 7 15439 -UBERON:0011875 ligament of sternoclavicular joint 7 15440 -UBERON:0011970 talofibular ligament 7 15441 -UBERON:0013725 anterior talofibular ligament 8 15442 -UBERON:0013726 posterior talofibular ligament 8 15443 -UBERON:0011972 medial ligament of ankle joint 7 15444 -UBERON:0014509 distal sesamoid impar ligament 7 15445 -UBERON:0018156 malleal ligament 7 15446 -UBERON:0018157 lateral malleal ligament 8 15447 -UBERON:0018158 superior malleal ligament 8 15448 -UBERON:0018159 anterior malleal ligament 8 15449 -UBERON:0018411 ligament of hip joint 7 15450 -UBERON:0034736 coracoclavicular ligament 7 15451 -UBERON:2001683 transcapular ligament 7 15452 -UBERON:2001685 lateral ethmoid-ectopterygoid ligament 7 15453 -UBERON:2001687 interopercular-mandibular ligament 7 15454 -UBERON:2001694 humerovertebral ligament 7 15455 -UBERON:2001827 premaxillary-maxillary ligament 7 15456 -UBERON:2001828 primordial ligament 7 15457 -UBERON:2001943 metapterygoid-autopalatine ligament 7 15458 -UBERON:2001944 lateral ethmoid-autopalatine ligament 7 15459 -UBERON:2001945 mesethmoid-premaxillary ligament 7 15460 -UBERON:2001946 mesethmoid-maxillary ligament 7 15461 -UBERON:2001972 intercostal ligament 7 15462 -UBERON:2002141 annular ligament 7 15463 -UBERON:3000363 otic ligament 7 15464 -UBERON:0011106 cruciate ligament of atlas 6 15465 -UBERON:0012332 broad ligament of uterus 6 15466 -UBERON:0015214 arcuate ligament 6 15467 -UBERON:0007161 medial arcuate ligament 7 15468 -UBERON:0007162 lateral arcuate ligament 7 15469 -UBERON:0015215 median arcuate ligament 7 15470 -UBERON:0018154 ligament of middle ear 6 15471 -UBERON:0018155 posterior incudal ligament 7 15472 -UBERON:0018156 malleal ligament 7 15473 -UBERON:0018157 lateral malleal ligament 8 15474 -UBERON:0018158 superior malleal ligament 8 15475 -UBERON:0018159 anterior malleal ligament 8 15476 -UBERON:0035444 triangular ligament of liver 6 15477 -UBERON:0035445 urogenital diaphragm 6 15478 -UBERON:0036262 uterine ligament 6 15479 -UBERON:0036270 epihyoideum 6 15480 -UBERON:4300205 palato-maxillary ligament 6 15481 -UBERON:4300206 mandibulo-lacrimal ligament 6 15482 -UBERON:4300209 palato-vomerine ligament 6 15483 -UBERON:0000407 sympathetic trunk 5 15484 -UBERON:3010770 dorsal sympathetic chain 6 15485 -UBERON:3010771 ventral sympathetic chain 6 15486 -UBERON:0000472 simple organ 5 15487 -UBERON:0000955 brain 5 15488 -UBERON:0008823 neural tube derived brain 6 15489 -UBERON:6001060 embryonic brain 6 15490 -UBERON:6001920 insect embryonic/larval brain 6 15491 -UBERON:6003624 adult brain 6 15492 -UBERON:0000994 spermathecum 5 15493 -UBERON:0000997 mammalian vulva 5 15494 -UBERON:0001630 muscle organ 5 15495 -UBERON:0000933 pharyngeal muscle 6 15496 -UBERON:0001569 constrictor muscle of pharynx 7 15497 -UBERON:0001570 inferior pharyngeal constrictor 8 15498 -UBERON:0006329 superior pharyngeal constrictor 8 15499 -UBERON:0010749 middle pharyngeal constrictor 8 15500 -UBERON:0005493 hyoid muscle 7 15501 -UBERON:0008523 infrahyoid muscle 8 15502 -UBERON:0001107 sternohyoid muscle 9 15503 -UBERON:0001108 omohyoid muscle 9 15504 -UBERON:0001109 sternothyroid muscle 9 15505 -UBERON:0001110 thyrohyoid muscle 9 15506 -UBERON:0008571 suprahyoid muscle 8 15507 -UBERON:0001562 digastric muscle group 9 15508 -UBERON:0001564 mylohyoid muscle 9 15509 -UBERON:0001565 geniohyoid muscle 9 15510 -UBERON:0008712 stylohyoid muscle 9 15511 -UBERON:0010930 interhyoideus 8 15512 -UBERON:0011151 jaw depressor muscle 8 15513 -UBERON:0001565 geniohyoid muscle 9 15514 -UBERON:0011649 levator operculi 8 15515 -UBERON:0011650 epihyoidean 8 15516 -UBERON:0011687 levator hyomandibulae muscle 8 15517 -UBERON:2000462 abductor hyohyoid 8 15518 -UBERON:2000465 adductor operculi 8 15519 -UBERON:2000522 inferior hyohyoid 8 15520 -UBERON:2000615 adductor arcus palatini 8 15521 -UBERON:2000715 adductor hyohyoid 8 15522 -UBERON:2007051 ventral interhyoideus 8 15523 -UBERON:2007052 hyohyoideus 8 15524 -UBERON:2007053 dorsal adductor hyomandibulae 8 15525 -UBERON:0006831 pre-tracheal muscle 7 15526 -UBERON:0008804 stylopharyngeus muscle 7 15527 -UBERON:0010234 palatopharyngeus muscle 7 15528 -UBERON:0010928 cricopharyngeus muscle 7 15529 -UBERON:0010936 thyropharyngeus muscle 7 15530 -UBERON:0010937 salpingopharyngeus muscle 7 15531 -UBERON:0010940 muscle of digastric group 7 15532 -UBERON:0010943 anterior digastric muscle 8 15533 -UBERON:0010944 posterior digastric muscle 8 15534 -UBERON:0010948 cleidooccipital muscle 7 15535 -UBERON:0010954 ceratohyoideus muscle 7 15536 -UBERON:0011996 pharyngeal adductor 7 15537 -UBERON:2000177 caudal oblique 7 15538 -UBERON:2000201 dorsal transverse 7 15539 -UBERON:2000221 internal levator 7 15540 -UBERON:2000261 pharyngohyoid 7 15541 -UBERON:2000321 caudal levator 7 15542 -UBERON:2000371 internal pharyngoclavicularis 7 15543 -UBERON:2000503 dorsal oblique branchial muscle 7 15544 -UBERON:2000504 dorsal retractor 7 15545 -UBERON:2000510 external levatores 7 15546 -UBERON:2000608 ventral transverse 7 15547 -UBERON:2000662 external pharyngoclavicularis 7 15548 -UBERON:4300210 transversus epibranchialis 2 7 15549 -UBERON:0000951 rotator muscle of the vertebral column 6 15550 -UBERON:0001111 intercostal muscle 6 15551 -UBERON:0002403 internal intercostal muscle 7 15552 -UBERON:0005441 external intercostal muscle 7 15553 -UBERON:0008617 innermost intercostal muscle 7 15554 -UBERON:0001121 longus colli muscle 6 15555 -UBERON:0001373 sartorius muscle 6 15556 -UBERON:0001595 auricular muscle 6 15557 -UBERON:0001583 extrinsic auricular muscle 7 15558 -UBERON:0011385 parotidoauricular muscle 8 15559 -UBERON:0018108 superior auricular muscle 8 15560 -UBERON:0018109 anterior auricular muscle 8 15561 -UBERON:0018110 posterior auricular muscle 8 15562 -UBERON:0001596 intrinsic auricular muscle 7 15563 -UBERON:0008603 helicis major 8 15564 -UBERON:0008604 helicis minor 8 15565 -UBERON:0008605 tragicus muscle 8 15566 -UBERON:0008606 antitragicus muscle 8 15567 -UBERON:0008607 transverse muscle of auricle 8 15568 -UBERON:0008608 oblique muscle of auricle 8 15569 -UBERON:0003660 eyelid muscle 6 15570 -UBERON:0001578 orbicularis oculi muscle 7 15571 -UBERON:0006318 orbitalis muscle 7 15572 -UBERON:0003831 respiratory system muscle 6 15573 -UBERON:0001103 diaphragm 7 15574 -UBERON:0001568 muscle of larynx 7 15575 -UBERON:0006327 laryngeal extrinsic muscle 8 15576 -UBERON:0006328 laryngeal intrinsic muscle 8 15577 -UBERON:0001566 cricothyroid muscle 9 15578 -UBERON:0001570 inferior pharyngeal constrictor 10 15579 -UBERON:0008576 thyro-arytenoid 9 15580 -UBERON:0008577 vocalis muscle 9 15581 -UBERON:0010932 crico-arytenoid muscle 9 15582 -UBERON:0008572 posterior crico-arytenoid 10 15583 -UBERON:0008573 lateral crico-arytenoid 10 15584 -UBERON:0010958 arytenoid muscle 9 15585 -UBERON:0008574 transverse arytenoid 10 15586 -UBERON:0008575 oblique arytenoid 10 15587 -UBERON:0010927 thyroepiglotticus muscle 8 15588 -UBERON:0011025 aryepiglotticus muscle 8 15589 -UBERON:0011312 hyoepiglottic muscle 8 15590 -UBERON:0008804 stylopharyngeus muscle 7 15591 -UBERON:0010234 palatopharyngeus muscle 7 15592 -UBERON:0010928 cricopharyngeus muscle 7 15593 -UBERON:0010936 thyropharyngeus muscle 7 15594 -UBERON:0010937 salpingopharyngeus muscle 7 15595 -UBERON:0012100 appendicocostalis muscle 7 15596 -UBERON:0014398 respiratory muscle 7 15597 -UBERON:0011495 rectus thoracis muscle 8 15598 -UBERON:0036071 diaphragmaticus muscle 7 15599 -UBERON:0003832 esophagus muscle 6 15600 -UBERON:0007652 esophageal sphincter 7 15601 -UBERON:0016499 esophageal-pneumatic duct sphincter 8 15602 -UBERON:0004164 branchiomeric muscle 6 15603 -UBERON:0014836 levator arcuum muscle 7 15604 -UBERON:0004253 skin muscle 6 15605 -UBERON:0008876 hypodermis skeletal muscle layer 7 15606 -UBERON:0005467 platysma 8 15607 -UBERON:0018240 panniculus carnosus muscle 8 15608 -UBERON:0011792 feather muscle 7 15609 -UBERON:0004277 eye muscle 6 15610 -UBERON:0001578 orbicularis oculi muscle 7 15611 -UBERON:0001601 extra-ocular muscle 7 15612 -UBERON:0001604 levator palpebrae superioris 8 15613 -UBERON:0006531 oculomotor muscle 8 15614 -UBERON:0006532 oblique extraocular muscle 9 15615 -UBERON:0006320 inferior oblique extraocular muscle 10 15616 -UBERON:0006321 superior oblique extraocular muscle 10 15617 -UBERON:0006533 rectus extraocular muscle 9 15618 -UBERON:0001602 medial rectus extraocular muscle 10 15619 -UBERON:0001603 lateral rectus extra-ocular muscle 10 15620 -UBERON:0006322 inferior rectus extraocular muscle 10 15621 -UBERON:0006323 superior rectus extraocular muscle 10 15622 -UBERON:0010271 musculus retractor bulbi 8 15623 -UBERON:3010125 musculus levator bulbi 8 15624 -UBERON:0006318 orbitalis muscle 7 15625 -UBERON:0011222 intra-ocular muscle 7 15626 -UBERON:0001605 ciliary muscle 8 15627 -UBERON:0001606 muscle of iris 8 15628 -UBERON:0001607 sphincter pupillae 9 15629 -UBERON:0004590 sphincter muscle 6 15630 -UBERON:0004916 anal sphincter 7 15631 -UBERON:0001244 internal anal sphincter 8 15632 -UBERON:0004917 urethral sphincter 7 15633 -UBERON:0004918 internal urethral sphincter 8 15634 -UBERON:0004919 external urethral sphincter 8 15635 -UBERON:0011379 male external urethral sphincter 9 15636 -UBERON:0011380 female external urethral sphincter 9 15637 -UBERON:0007521 smooth muscle sphincter 7 15638 -UBERON:0001244 internal anal sphincter 8 15639 -UBERON:0001607 sphincter pupillae 8 15640 -UBERON:0007522 striated muscle sphincter 7 15641 -UBERON:0007268 upper esophageal sphincter 8 15642 -UBERON:0035832 caval sphincter 8 15643 -UBERON:0007652 esophageal sphincter 7 15644 -UBERON:0016499 esophageal-pneumatic duct sphincter 8 15645 -UBERON:0011185 gastrointestinal sphincter 7 15646 -UBERON:0000569 ileocecal valve 8 15647 -UBERON:0001202 pyloric sphincter 8 15648 -UBERON:0004550 gastroesophageal sphincter 8 15649 -UBERON:0004915 sphincter of hepatopancreatic ampulla 8 15650 -UBERON:0012487 vaginal sphincter 7 15651 -UBERON:0013501 cloacal sphincter 7 15652 -UBERON:0014917 pouch sphincter 7 15653 -UBERON:0005621 rhomboid 6 15654 -UBERON:0006581 mantle muscle 6 15655 -UBERON:0008245 pennate muscle 6 15656 -UBERON:0008284 columnella muscle 6 15657 -UBERON:0008488 cremaster muscle 6 15658 -UBERON:0008977 pes anserinus of tibia 6 15659 -UBERON:0010931 intermandibularis 6 15660 -UBERON:3010836 posterolateral supplementary element 7 15661 -UBERON:3010837 apical supplementary element 7 15662 -UBERON:3010838 anterolateral supplementary element 7 15663 -UBERON:0010939 zygomaticomandibularis muscle 6 15664 -UBERON:0010946 occipitofrontalis muscle 6 15665 -UBERON:0011376 iliothoracic muscle 6 15666 -UBERON:0011377 femorothoracic muscle 6 15667 -UBERON:0011472 ventral lateral sacrocaudal muscle 6 15668 -UBERON:0012621 muscle of Aristotle's lantern 6 15669 -UBERON:0012642 vestimentum muscle 6 15670 -UBERON:0013114 compressor glandulae muscle 6 15671 -UBERON:0013115 pterygoideus glandulae muscle 6 15672 -UBERON:0013715 ilio-marsupialis muscle 6 15673 -UBERON:0014783 cloacal muscle 6 15674 -UBERON:0013501 cloacal sphincter 7 15675 -UBERON:0014784 transverse cloacal muscle 7 15676 -UBERON:0014785 levator cloacae 7 15677 -UBERON:0014797 hypobranchial group muscle 6 15678 -UBERON:0014835 serratus muscle 6 15679 -UBERON:0014892 skeletal muscle organ 6 15680 -UBERON:0000311 extensor muscle 7 15681 -UBERON:0000372 extensor digitorum brevis pes 8 15682 -UBERON:0001386 extensor digitorum longus 8 15683 -UBERON:0011024 extrinsic extensor muscle of manus 8 15684 -UBERON:0001526 extensor carpi ulnaris muscle 9 15685 -UBERON:0003234 extensor pollicis longus muscle 9 15686 -UBERON:0007612 extensor digitorum communis 9 15687 -UBERON:0007613 extensor digitorum lateralis muscle 9 15688 -UBERON:0007614 extensor digiti minimi muscle 9 15689 -UBERON:0011867 extensor carpi radialis muscle 9 15690 -UBERON:0001524 extensor carpi radialis longus muscle 10 15691 -UBERON:0001525 extensor carpi radialis brevis muscle 10 15692 -UBERON:0017618 extensor pollicis brevis muscle 9 15693 -UBERON:0035842 extensor digitorum brevis manus 8 15694 -UBERON:0000366 flexor muscle 7 15695 -UBERON:0001392 flexor hallucis longus 8 15696 -UBERON:0001521 flexor carpi radialis muscle 8 15697 -UBERON:0001522 flexor carpi ulnaris muscle 8 15698 -UBERON:0001523 flexor digitorum profundus 8 15699 -UBERON:0008230 tibialis 8 15700 -UBERON:0001385 tibialis anterior 9 15701 -UBERON:0001667 tibialis posterior 9 15702 -UBERON:0011022 flexor hallucis brevis muscle 8 15703 -UBERON:0017156 flexor cruris lateralis muscle 8 15704 -UBERON:0017102 flexor cruris lateralis pars accessoria muscle 9 15705 -UBERON:2000205 external ventral flexor 8 15706 -UBERON:2000269 inferior ventral flexor 8 15707 -UBERON:2000287 superior dorsal flexor 8 15708 -UBERON:2000341 dorsal flexor 8 15709 -UBERON:2000455 ventral flexor 8 15710 -UBERON:0001482 muscle of shoulder 7 15711 -UBERON:0001112 latissimus dorsi muscle 8 15712 -UBERON:0001125 serratus ventralis 8 15713 -UBERON:0001129 subscapularis muscle 8 15714 -UBERON:0001476 deltoid 8 15715 -UBERON:0001477 infraspinatus muscle 8 15716 -UBERON:0001505 coracobrachialis muscle 8 15717 -UBERON:0001506 brachialis muscle 8 15718 -UBERON:0001509 triceps brachii 8 15719 -UBERON:0002380 trapezius muscle 8 15720 -UBERON:0014798 clavotrapezius muscle 9 15721 -UBERON:0014799 acromiotrapezius muscle 9 15722 -UBERON:0014800 spinotrapezius muscle 9 15723 -UBERON:0002381 pectoralis major 8 15724 -UBERON:0002383 supraspinatus muscle 8 15725 -UBERON:0005461 levator scapulae muscle 8 15726 -UBERON:0010467 teres muscle 8 15727 -UBERON:0001478 teres major muscle 9 15728 -UBERON:0010496 teres minor muscle 9 15729 -UBERON:0011011 brachioradialis 8 15730 -UBERON:0011366 cleidobrachialis muscle 8 15731 -UBERON:0011368 brachiocephalic muscle 8 15732 -UBERON:0011605 supracoracoideus muscle of wing 8 15733 -UBERON:0011867 extensor carpi radialis muscle 8 15734 -UBERON:0001524 extensor carpi radialis longus muscle 9 15735 -UBERON:0001525 extensor carpi radialis brevis muscle 9 15736 -UBERON:0014840 supracoracoideus muscle 8 15737 -UBERON:4200225 scapulohumeralis muscle 8 15738 -UBERON:0001774 skeletal muscle of trunk 7 15739 -UBERON:0002324 muscle of back 8 15740 -UBERON:0002252 splenius 9 15741 -UBERON:0000711 splenius capitis 10 15742 -UBERON:0008544 splenius cervicis 10 15743 -UBERON:0008242 lower back muscle 9 15744 -UBERON:0008243 upper back muscle 9 15745 -UBERON:0003830 thoracic segment muscle 8 15746 -UBERON:0001103 diaphragm 9 15747 -UBERON:0001126 serratus dorsalis superior muscle 9 15748 -UBERON:0001495 pectoral muscle 9 15749 -UBERON:0001100 pectoralis minor 10 15750 -UBERON:0002381 pectoralis major 10 15751 -UBERON:0008779 subclavius 10 15752 -UBERON:0014837 pectoantebrachialis 10 15753 -UBERON:0014838 xiphihumeralis 10 15754 -UBERON:0002426 chest muscle 9 15755 -UBERON:0002404 transversus thoracis 10 15756 -UBERON:0008618 subcostal muscle 10 15757 -UBERON:0008243 upper back muscle 9 15758 -UBERON:0036071 diaphragmaticus muscle 9 15759 -UBERON:0003833 abdominal segment muscle 8 15760 -UBERON:0001325 muscle of pelvis 9 15761 -UBERON:0001326 levator ani muscle 10 15762 -UBERON:0001327 coccygeus muscle 10 15763 -UBERON:0001497 muscle of pelvic girdle 10 15764 -UBERON:0001369 iliacus muscle 11 15765 -UBERON:0002000 gluteal muscle 11 15766 -UBERON:0001370 gluteus maximus 12 15767 -UBERON:0001371 gluteus medius 12 15768 -UBERON:0001376 tensor fasciae latae muscle 12 15769 -UBERON:0008521 gluteus minimus 12 15770 -UBERON:0008529 piriformis muscle 12 15771 -UBERON:0008537 quadratus femoris 12 15772 -UBERON:0011043 obturator muscle 12 15773 -UBERON:0001368 obturator externus 13 15774 -UBERON:0011048 obturator internus 13 15775 -UBERON:0002379 perineal muscle 10 15776 -UBERON:0001339 ischiocavernosus muscle 11 15777 -UBERON:0004519 muscle of anal triangle 11 15778 -UBERON:0011389 bulbospongiosus muscle 11 15779 -UBERON:0011387 constrictor vulvae muscle 12 15780 -UBERON:0011388 male bulbospongiosus muscle 12 15781 -UBERON:0014458 female bulbospongiosus muscle 12 15782 -UBERON:0008612 muscle of pelvic diaphragm 10 15783 -UBERON:0011511 iliococcygeus muscle 10 15784 -UBERON:0011512 puborectalis muscle 10 15785 -UBERON:0011528 pubococcygeus muscle 10 15786 -UBERON:0011531 male pubococcygeus muscle 11 15787 -UBERON:0011532 female pubococcygeus muscle 11 15788 -UBERON:0011645 iliofemoralis muscle 10 15789 -UBERON:0001370 gluteus maximus 11 15790 -UBERON:4200122 pubotibialis 10 15791 -UBERON:0002378 muscle of abdomen 9 15792 -UBERON:0001220 quadratus lumborum 10 15793 -UBERON:0002461 anterior abdominal wall muscle 10 15794 -UBERON:0001221 transversus abdominis muscle 11 15795 -UBERON:0002382 rectus abdominis muscle 11 15796 -UBERON:0011016 pyramidalis 11 15797 -UBERON:0035032 abdominal oblique muscle 11 15798 -UBERON:0005442 abdominal external oblique muscle 12 15799 -UBERON:0005454 abdominal internal oblique muscle 12 15800 -UBERON:3010790 muscle rectus abdominis superficialis 11 15801 -UBERON:3010792 musculus rectus abdominis profundus 11 15802 -UBERON:0008242 lower back muscle 9 15803 -UBERON:0004138 somitomeric trunk muscle 8 15804 -UBERON:2000216 infracarinalis 8 15805 -UBERON:2000286 superficial lateralis (teleost) 8 15806 -UBERON:2000288 supracarinalis 8 15807 -UBERON:2000349 epaxialis 8 15808 -UBERON:2000362 hypaxialis 8 15809 -UBERON:0003661 limb muscle 7 15810 -UBERON:0003662 forelimb muscle 8 15811 -UBERON:0001499 muscle of arm 9 15812 -UBERON:0001506 brachialis muscle 10 15813 -UBERON:0004254 forelimb zeugopod muscle 10 15814 -UBERON:0001521 flexor carpi radialis muscle 11 15815 -UBERON:0001522 flexor carpi ulnaris muscle 11 15816 -UBERON:0003222 flexor digitorum superficialis 11 15817 -UBERON:0003228 supinator muscle 11 15818 -UBERON:0008446 flexor pollicis longus muscle 11 15819 -UBERON:0011024 extrinsic extensor muscle of manus 11 15820 -UBERON:0001526 extensor carpi ulnaris muscle 12 15821 -UBERON:0003234 extensor pollicis longus muscle 12 15822 -UBERON:0007612 extensor digitorum communis 12 15823 -UBERON:0007613 extensor digitorum lateralis muscle 12 15824 -UBERON:0007614 extensor digiti minimi muscle 12 15825 -UBERON:0011867 extensor carpi radialis muscle 12 15826 -UBERON:0001524 extensor carpi radialis longus muscle 13 15827 -UBERON:0001525 extensor carpi radialis brevis muscle 13 15828 -UBERON:0017618 extensor pollicis brevis muscle 12 15829 -UBERON:0004255 forelimb stylopod muscle 10 15830 -UBERON:0001505 coracobrachialis muscle 11 15831 -UBERON:0001507 biceps brachii 11 15832 -UBERON:0001509 triceps brachii 11 15833 -UBERON:0001523 flexor digitorum profundus 11 15834 -UBERON:0002989 anconeus muscle 11 15835 -UBERON:0011011 brachioradialis 10 15836 -UBERON:0001500 muscle of manus 9 15837 -UBERON:0002962 adductor pollicis muscle 10 15838 -UBERON:0003664 manual digit muscle 10 15839 -UBERON:0008465 abductor pollicis brevis muscle 10 15840 -UBERON:0011012 flexor pollicis brevis muscle 10 15841 -UBERON:0014375 intrinsic muscle of manus 10 15842 -UBERON:0001501 lumbrical muscle of manus 11 15843 -UBERON:0001502 interosseous muscle of manus 11 15844 -UBERON:0001503 dorsal interosseous of manus 12 15845 -UBERON:0002988 first dorsal interosseous of manus 13 15846 -UBERON:0006505 palmar interosseous muscle of manus 12 15847 -UBERON:0014376 thenar muscle 11 15848 -UBERON:0014377 hypothenar muscle 11 15849 -UBERON:0036172 palmaris brevis 12 15850 -UBERON:0036173 abductor digiti minimi of hand 12 15851 -UBERON:0036174 flexor digiti minimi brevis of hand 12 15852 -UBERON:0036176 opponens digiti minimi of hand 12 15853 -UBERON:0035842 extensor digitorum brevis manus 10 15854 -UBERON:0001520 pronator teres 9 15855 -UBERON:0011533 abductor pollicis, radioulna-prepollox 9 15856 -UBERON:0011534 abductor pollicis muscle 9 15857 -UBERON:0001527 abductor pollicis longus 10 15858 -UBERON:0008465 abductor pollicis brevis muscle 10 15859 -UBERON:0012520 forelimb epitrochlearis muscle 9 15860 -UBERON:0016493 palmaris longus muscle 9 15861 -UBERON:4200101 m.scapulotriceps 9 15862 -UBERON:0003663 hindlimb muscle 8 15863 -UBERON:0001377 quadriceps femoris 9 15864 -UBERON:0001378 rectus femoris 10 15865 -UBERON:0001379 vastus lateralis 10 15866 -UBERON:0001380 vastus medialis 10 15867 -UBERON:0014847 vastus intermedius 10 15868 -UBERON:0001383 muscle of leg 9 15869 -UBERON:0001391 popliteus muscle 10 15870 -UBERON:0001392 flexor hallucis longus 10 15871 -UBERON:0001666 flexor digitorum longus 10 15872 -UBERON:0004252 hindlimb stylopod muscle 10 15873 -UBERON:0000303 adductor longus 11 15874 -UBERON:0000368 adductor brevis 11 15875 -UBERON:0000370 adductor magnus 11 15876 -UBERON:0000950 gracilis 11 15877 -UBERON:0001382 pectineus muscle 11 15878 -UBERON:0002463 muscle of posterior compartment of hindlimb stylopod 11 15879 -UBERON:0001374 biceps femoris 12 15880 -UBERON:0001375 semitendinosus 12 15881 -UBERON:0001381 semimembranosus muscle 12 15882 -UBERON:0019201 gemellus muscle 11 15883 -UBERON:0019202 inferior gemellus muscle 12 15884 -UBERON:0019203 superior gemellus muscle 12 15885 -UBERON:0004256 hindlimb zeugopod muscle 10 15886 -UBERON:0001388 gastrocnemius 11 15887 -UBERON:0001389 soleus muscle 11 15888 -UBERON:0001665 triceps surae 11 15889 -UBERON:0008230 tibialis 11 15890 -UBERON:0001385 tibialis anterior 12 15891 -UBERON:0001667 tibialis posterior 12 15892 -UBERON:0009132 peroneus 11 15893 -UBERON:0001387 fibularis longus 12 15894 -UBERON:0010524 fibularis tertius 12 15895 -UBERON:0010526 fibularis brevis 12 15896 -UBERON:0014410 fibularis quartus 12 15897 -UBERON:0011905 plantaris 11 15898 -UBERON:0011909 gastrocnemius internus 11 15899 -UBERON:0011910 gastrocnemius externus 11 15900 -UBERON:0001386 extensor digitorum longus 9 15901 -UBERON:0001498 muscle of pes 9 15902 -UBERON:0000372 extensor digitorum brevis pes 10 15903 -UBERON:0003659 pedal digit muscle 10 15904 -UBERON:0008464 abductor hallucis muscle 10 15905 -UBERON:0014378 intrinsic muscle of pes 10 15906 -UBERON:0001504 lumbrical muscle of pes 11 15907 -UBERON:0006497 interosseous muscle of pes 11 15908 -UBERON:0006499 dorsal pes interosseous muscle 12 15909 -UBERON:0006502 plantar interosseous muscle of pes 12 15910 -UBERON:0011022 flexor hallucis brevis muscle 11 15911 -UBERON:0014379 adductor hallucis muscle 11 15912 -UBERON:0014380 flexor digitorum brevis muscle 11 15913 -UBERON:0013221 caudofemoralis 9 15914 -UBERON:0035081 caudofemoralis longus 10 15915 -UBERON:0035082 caudofemoralis brevis 10 15916 -UBERON:0013511 ambiens muscle 9 15917 -UBERON:0014888 iliotibialis muscle 9 15918 -UBERON:0017156 flexor cruris lateralis muscle 9 15919 -UBERON:0017102 flexor cruris lateralis pars accessoria muscle 10 15920 -UBERON:0006508 interosseous muscle of autopod 8 15921 -UBERON:0001502 interosseous muscle of manus 9 15922 -UBERON:0001503 dorsal interosseous of manus 10 15923 -UBERON:0002988 first dorsal interosseous of manus 11 15924 -UBERON:0006505 palmar interosseous muscle of manus 10 15925 -UBERON:0006497 interosseous muscle of pes 9 15926 -UBERON:0006499 dorsal pes interosseous muscle 10 15927 -UBERON:0006502 plantar interosseous muscle of pes 10 15928 -UBERON:0003897 axial muscle 7 15929 -UBERON:0001122 scalenus medius 8 15930 -UBERON:0001128 sternocleidomastoid 8 15931 -UBERON:0001220 quadratus lumborum 8 15932 -UBERON:0001370 gluteus maximus 8 15933 -UBERON:0001402 longissimus cervicis muscle 8 15934 -UBERON:0002251 iliocostalis muscle 8 15935 -UBERON:0001400 iliocostalis thoracis muscle 9 15936 -UBERON:0008546 iliocostalis cervicis muscle 9 15937 -UBERON:0011207 iliocostalis lumborum 9 15938 -UBERON:0002381 pectoralis major 8 15939 -UBERON:0002382 rectus abdominis muscle 8 15940 -UBERON:0002462 erector spinae muscle group 8 15941 -UBERON:0005454 abdominal internal oblique muscle 8 15942 -UBERON:0005461 levator scapulae muscle 8 15943 -UBERON:0008455 rectus capitis posterior minor 8 15944 -UBERON:0008529 piriformis muscle 8 15945 -UBERON:0008611 scalene muscle 8 15946 -UBERON:0008622 scalenus anterior 9 15947 -UBERON:0010949 sternooccipital muscle 8 15948 -UBERON:0010990 transversospinales muscle 8 15949 -UBERON:0011013 spinalis muscle 8 15950 -UBERON:0001405 spinalis thoracis muscle 9 15951 -UBERON:0011014 spinalis capitis muscle 9 15952 -UBERON:0011218 spinalis cervicis muscle 9 15953 -UBERON:0011251 levator claviculae muscle 8 15954 -UBERON:0011511 iliococcygeus muscle 8 15955 -UBERON:0011528 pubococcygeus muscle 8 15956 -UBERON:0011531 male pubococcygeus muscle 9 15957 -UBERON:0011532 female pubococcygeus muscle 9 15958 -UBERON:0035092 spinalis caudalis muscle 8 15959 -UBERON:0035097 iliocaudalis muscle 8 15960 -UBERON:0004518 muscle of vertebral column 7 15961 -UBERON:0000392 longissimus muscle 8 15962 -UBERON:0001401 longissimus thoracis muscle 9 15963 -UBERON:0001402 longissimus cervicis muscle 9 15964 -UBERON:0001403 longissimus capitis 9 15965 -UBERON:0011219 longissimus lumborum muscle 9 15966 -UBERON:0011465 longissimus atlantis muscle 9 15967 -UBERON:0001122 scalenus medius 8 15968 -UBERON:0001220 quadratus lumborum 8 15969 -UBERON:0002251 iliocostalis muscle 8 15970 -UBERON:0001400 iliocostalis thoracis muscle 9 15971 -UBERON:0008546 iliocostalis cervicis muscle 9 15972 -UBERON:0011207 iliocostalis lumborum 9 15973 -UBERON:0002252 splenius 8 15974 -UBERON:0000711 splenius capitis 9 15975 -UBERON:0008544 splenius cervicis 9 15976 -UBERON:0002462 erector spinae muscle group 8 15977 -UBERON:0003250 rectus capitis lateralis muscle 8 15978 -UBERON:0003665 post-anal tail muscle 8 15979 -UBERON:0035091 extrinsic post-anal tail muscle 9 15980 -UBERON:0035092 spinalis caudalis muscle 10 15981 -UBERON:0035093 extensor caudae muscle 10 15982 -UBERON:0035094 extensor caudae medialis muscle 11 15983 -UBERON:0035095 extensor caudae lateralis muscle 11 15984 -UBERON:0035097 iliocaudalis muscle 10 15985 -UBERON:0035098 hemipenis transversus muscle 10 15986 -UBERON:0035099 transversus perinei muscle 10 15987 -UBERON:0035100 retractor penis magnus muscle 10 15988 -UBERON:0005461 levator scapulae muscle 8 15989 -UBERON:0008453 rectus capitis anterior 8 15990 -UBERON:0008454 rectus capitis posterior major 8 15991 -UBERON:0008455 rectus capitis posterior minor 8 15992 -UBERON:0008549 prevertebral muscle 8 15993 -UBERON:0001563 longus capitis muscle 9 15994 -UBERON:0008450 psoas muscle 9 15995 -UBERON:0001298 psoas major muscle 10 15996 -UBERON:0001372 psoas minor muscle 10 15997 -UBERON:0017647 prevertebral muscle of neck 9 15998 -UBERON:0008611 scalene muscle 8 15999 -UBERON:0008622 scalenus anterior 9 16000 -UBERON:0011013 spinalis muscle 8 16001 -UBERON:0001405 spinalis thoracis muscle 9 16002 -UBERON:0011014 spinalis capitis muscle 9 16003 -UBERON:0011218 spinalis cervicis muscle 9 16004 -UBERON:0011017 semispinalis muscle 8 16005 -UBERON:0001407 semispinalis thoracis 9 16006 -UBERON:0001408 semispinalis cervicis 9 16007 -UBERON:0001409 semispinalis capitis 9 16008 -UBERON:0011217 serratus dorsalis muscle 8 16009 -UBERON:0001126 serratus dorsalis superior muscle 9 16010 -UBERON:0001127 serratus dorsalis inferior muscle 9 16011 -UBERON:0011251 levator claviculae muscle 8 16012 -UBERON:0011643 puboischiofemoralis internus muscle 8 16013 -UBERON:0006845 abductor muscle 7 16014 -UBERON:0011534 abductor pollicis muscle 8 16015 -UBERON:0001527 abductor pollicis longus 9 16016 -UBERON:0008465 abductor pollicis brevis muscle 9 16017 -UBERON:2000439 superficial pelvic abductor 8 16018 -UBERON:2000564 pelvic abductor profundus 8 16019 -UBERON:2000614 abductor profundus 8 16020 -UBERON:2000685 superficial abductor 8 16021 -UBERON:0008876 hypodermis skeletal muscle layer 7 16022 -UBERON:0005467 platysma 8 16023 -UBERON:0018240 panniculus carnosus muscle 8 16024 -UBERON:0010890 pelvic complex muscle 7 16025 -UBERON:0001497 muscle of pelvic girdle 8 16026 -UBERON:0001369 iliacus muscle 9 16027 -UBERON:0002000 gluteal muscle 9 16028 -UBERON:0001370 gluteus maximus 10 16029 -UBERON:0001371 gluteus medius 10 16030 -UBERON:0001376 tensor fasciae latae muscle 10 16031 -UBERON:0008521 gluteus minimus 10 16032 -UBERON:0008529 piriformis muscle 10 16033 -UBERON:0008537 quadratus femoris 10 16034 -UBERON:0011043 obturator muscle 10 16035 -UBERON:0001368 obturator externus 11 16036 -UBERON:0011048 obturator internus 11 16037 -UBERON:0003658 hip muscle 8 16038 -UBERON:0011144 adductor muscle of hip 8 16039 -UBERON:0000303 adductor longus 9 16040 -UBERON:0000368 adductor brevis 9 16041 -UBERON:0000370 adductor magnus 9 16042 -UBERON:0000950 gracilis 9 16043 -UBERON:0001368 obturator externus 9 16044 -UBERON:0001382 pectineus muscle 9 16045 -UBERON:2000497 pelvic adductor profundus 9 16046 -UBERON:2000592 superficial pelvic adductor 9 16047 -UBERON:0014795 pelvic appendage muscle 8 16048 -UBERON:0003663 hindlimb muscle 9 16049 -UBERON:0001377 quadriceps femoris 10 16050 -UBERON:0001378 rectus femoris 11 16051 -UBERON:0001379 vastus lateralis 11 16052 -UBERON:0001380 vastus medialis 11 16053 -UBERON:0014847 vastus intermedius 11 16054 -UBERON:0001383 muscle of leg 10 16055 -UBERON:0001391 popliteus muscle 11 16056 -UBERON:0001392 flexor hallucis longus 11 16057 -UBERON:0001666 flexor digitorum longus 11 16058 -UBERON:0004252 hindlimb stylopod muscle 11 16059 -UBERON:0000303 adductor longus 12 16060 -UBERON:0000368 adductor brevis 12 16061 -UBERON:0000370 adductor magnus 12 16062 -UBERON:0000950 gracilis 12 16063 -UBERON:0001382 pectineus muscle 12 16064 -UBERON:0002463 muscle of posterior compartment of hindlimb stylopod 12 16065 -UBERON:0001374 biceps femoris 13 16066 -UBERON:0001375 semitendinosus 13 16067 -UBERON:0001381 semimembranosus muscle 13 16068 -UBERON:0019201 gemellus muscle 12 16069 -UBERON:0019202 inferior gemellus muscle 13 16070 -UBERON:0019203 superior gemellus muscle 13 16071 -UBERON:0004256 hindlimb zeugopod muscle 11 16072 -UBERON:0001388 gastrocnemius 12 16073 -UBERON:0001389 soleus muscle 12 16074 -UBERON:0001665 triceps surae 12 16075 -UBERON:0008230 tibialis 12 16076 -UBERON:0001385 tibialis anterior 13 16077 -UBERON:0001667 tibialis posterior 13 16078 -UBERON:0009132 peroneus 12 16079 -UBERON:0001387 fibularis longus 13 16080 -UBERON:0010524 fibularis tertius 13 16081 -UBERON:0010526 fibularis brevis 13 16082 -UBERON:0014410 fibularis quartus 13 16083 -UBERON:0011905 plantaris 12 16084 -UBERON:0011909 gastrocnemius internus 12 16085 -UBERON:0011910 gastrocnemius externus 12 16086 -UBERON:0001386 extensor digitorum longus 10 16087 -UBERON:0001498 muscle of pes 10 16088 -UBERON:0000372 extensor digitorum brevis pes 11 16089 -UBERON:0003659 pedal digit muscle 11 16090 -UBERON:0008464 abductor hallucis muscle 11 16091 -UBERON:0014378 intrinsic muscle of pes 11 16092 -UBERON:0001504 lumbrical muscle of pes 12 16093 -UBERON:0006497 interosseous muscle of pes 12 16094 -UBERON:0006499 dorsal pes interosseous muscle 13 16095 -UBERON:0006502 plantar interosseous muscle of pes 13 16096 -UBERON:0011022 flexor hallucis brevis muscle 12 16097 -UBERON:0014379 adductor hallucis muscle 12 16098 -UBERON:0014380 flexor digitorum brevis muscle 12 16099 -UBERON:0013221 caudofemoralis 10 16100 -UBERON:0035081 caudofemoralis longus 11 16101 -UBERON:0035082 caudofemoralis brevis 11 16102 -UBERON:0013511 ambiens muscle 10 16103 -UBERON:0014888 iliotibialis muscle 10 16104 -UBERON:0017156 flexor cruris lateralis muscle 10 16105 -UBERON:0017102 flexor cruris lateralis pars accessoria muscle 11 16106 -UBERON:2000439 superficial pelvic abductor 9 16107 -UBERON:2000497 pelvic adductor profundus 9 16108 -UBERON:2000564 pelvic abductor profundus 9 16109 -UBERON:2000592 superficial pelvic adductor 9 16110 -UBERON:2000651 dorsal pelvic arrector 9 16111 -UBERON:2000704 ventral pelvic arrector 9 16112 -UBERON:3010018 M. glutaeus magnus 8 16113 -UBERON:3010022 M. tensor fasciae latae 8 16114 -UBERON:3010027 M. sartorius 8 16115 -UBERON:3010032 M. semitendinosus 8 16116 -UBERON:3010047 M. quadratus femoris 8 16117 -UBERON:3010049 M. gemellus 8 16118 -UBERON:3010065 M. gracilis major 8 16119 -UBERON:3010067 M. gracilis minor 8 16120 -UBERON:3010068 M. semimembranosus 8 16121 -UBERON:3010070 M. ileo-fibularis 8 16122 -UBERON:3010072 M. pyriformis 8 16123 -UBERON:3010074 M. ileo-femoralis 8 16124 -UBERON:3010076 M. iliacus internus 8 16125 -UBERON:3010078 M. iliacus externus 8 16126 -UBERON:3010082 M. pulmonum proprius 8 16127 -UBERON:3010084 M. tibialis posticus 8 16128 -UBERON:3010087 M. tibialis anticus longus 8 16129 -UBERON:3010089 M. extensor cruris brevis 8 16130 -UBERON:3010090 M. tibialis anticus brevis 8 16131 -UBERON:3010097 M. tarsalis posticus 8 16132 -UBERON:3010098 M. plantaris profundus 8 16133 -UBERON:3010136 M. cruralis 8 16134 -UBERON:3010523 M. plantaris longus 8 16135 -UBERON:3010745 M. coccygeosacralis 8 16136 -UBERON:3010748 M. coccygeoiliacus 8 16137 -UBERON:3010749 M. iliolumbaris 8 16138 -UBERON:3010758 M. coccygeocutaneus 8 16139 -UBERON:0010891 pectoral complex muscle 7 16140 -UBERON:0001129 subscapularis muscle 8 16141 -UBERON:0001477 infraspinatus muscle 8 16142 -UBERON:0002383 supraspinatus muscle 8 16143 -UBERON:0008196 muscle of pectoral girdle 8 16144 -UBERON:0001495 pectoral muscle 9 16145 -UBERON:0001100 pectoralis minor 10 16146 -UBERON:0002381 pectoralis major 10 16147 -UBERON:0008779 subclavius 10 16148 -UBERON:0014837 pectoantebrachialis 10 16149 -UBERON:0014838 xiphihumeralis 10 16150 -UBERON:0011605 supracoracoideus muscle of wing 9 16151 -UBERON:0011646 patagialis muscle 9 16152 -UBERON:0014840 supracoracoideus muscle 9 16153 -UBERON:0010496 teres minor muscle 8 16154 -UBERON:0014794 pectoral appendage muscle 8 16155 -UBERON:0003662 forelimb muscle 9 16156 -UBERON:0001499 muscle of arm 10 16157 -UBERON:0001506 brachialis muscle 11 16158 -UBERON:0004254 forelimb zeugopod muscle 11 16159 -UBERON:0001521 flexor carpi radialis muscle 12 16160 -UBERON:0001522 flexor carpi ulnaris muscle 12 16161 -UBERON:0003222 flexor digitorum superficialis 12 16162 -UBERON:0003228 supinator muscle 12 16163 -UBERON:0008446 flexor pollicis longus muscle 12 16164 -UBERON:0011024 extrinsic extensor muscle of manus 12 16165 -UBERON:0001526 extensor carpi ulnaris muscle 13 16166 -UBERON:0003234 extensor pollicis longus muscle 13 16167 -UBERON:0007612 extensor digitorum communis 13 16168 -UBERON:0007613 extensor digitorum lateralis muscle 13 16169 -UBERON:0007614 extensor digiti minimi muscle 13 16170 -UBERON:0011867 extensor carpi radialis muscle 13 16171 -UBERON:0001524 extensor carpi radialis longus muscle 14 16172 -UBERON:0001525 extensor carpi radialis brevis muscle 14 16173 -UBERON:0017618 extensor pollicis brevis muscle 13 16174 -UBERON:0004255 forelimb stylopod muscle 11 16175 -UBERON:0001505 coracobrachialis muscle 12 16176 -UBERON:0001507 biceps brachii 12 16177 -UBERON:0001509 triceps brachii 12 16178 -UBERON:0001523 flexor digitorum profundus 12 16179 -UBERON:0002989 anconeus muscle 12 16180 -UBERON:0011011 brachioradialis 11 16181 -UBERON:0001500 muscle of manus 10 16182 -UBERON:0002962 adductor pollicis muscle 11 16183 -UBERON:0003664 manual digit muscle 11 16184 -UBERON:0008465 abductor pollicis brevis muscle 11 16185 -UBERON:0011012 flexor pollicis brevis muscle 11 16186 -UBERON:0014375 intrinsic muscle of manus 11 16187 -UBERON:0001501 lumbrical muscle of manus 12 16188 -UBERON:0001502 interosseous muscle of manus 12 16189 -UBERON:0001503 dorsal interosseous of manus 13 16190 -UBERON:0002988 first dorsal interosseous of manus 14 16191 -UBERON:0006505 palmar interosseous muscle of manus 13 16192 -UBERON:0014376 thenar muscle 12 16193 -UBERON:0014377 hypothenar muscle 12 16194 -UBERON:0036172 palmaris brevis 13 16195 -UBERON:0036173 abductor digiti minimi of hand 13 16196 -UBERON:0036174 flexor digiti minimi brevis of hand 13 16197 -UBERON:0036176 opponens digiti minimi of hand 13 16198 -UBERON:0035842 extensor digitorum brevis manus 11 16199 -UBERON:0001520 pronator teres 10 16200 -UBERON:0011533 abductor pollicis, radioulna-prepollox 10 16201 -UBERON:0011534 abductor pollicis muscle 10 16202 -UBERON:0001527 abductor pollicis longus 11 16203 -UBERON:0008465 abductor pollicis brevis muscle 11 16204 -UBERON:0012520 forelimb epitrochlearis muscle 10 16205 -UBERON:0016493 palmaris longus muscle 10 16206 -UBERON:4200101 m.scapulotriceps 10 16207 -UBERON:2000285 superficial adductor 9 16208 -UBERON:2000492 coracoradialis 9 16209 -UBERON:2000499 dorsal arrector 9 16210 -UBERON:2000614 abductor profundus 9 16211 -UBERON:2000616 adductor profundus 9 16212 -UBERON:2000685 superficial abductor 9 16213 -UBERON:2000701 ventral arrector 9 16214 -UBERON:4200121 puboischiotibialis muscle 9 16215 -UBERON:3010447 M. extensor digitorum communis longus 8 16216 -UBERON:3010673 m. rhomboideus anterior 8 16217 -UBERON:3010691 m. opercularis 8 16218 -UBERON:3010692 m. cucullaris 8 16219 -UBERON:3010694 m. rhomboideus posterior 8 16220 -UBERON:3010695 m. serratus superior 8 16221 -UBERON:3010698 m. serratus medius 8 16222 -UBERON:3010699 m. serratus inferior 8 16223 -UBERON:3010701 m. latissimus dorsi 8 16224 -UBERON:3010707 m. dorsalis scapulae 8 16225 -UBERON:3010710 m. interscapularis 8 16226 -UBERON:3010713 m. sternoepicoracoideus 8 16227 -UBERON:3010725 M. coracoradialis 8 16228 -UBERON:3010729 M. coracobrachialis longus 8 16229 -UBERON:3010731 M. coracobrachialis brevis 8 16230 -UBERON:3010734 M. flexor carpi ulnaris 8 16231 -UBERON:3010737 M. palmaris longus 8 16232 -UBERON:3010738 M. palmaris profundis 8 16233 -UBERON:3010739 M. flexor antibrachii medialis 8 16234 -UBERON:3010741 M. ulnocarpalis 8 16235 -UBERON:3010743 M. flexor antibrachii lateralis superficialis 8 16236 -UBERON:3010744 M. flexor antibrachii lateralis profundus 8 16237 -UBERON:0010940 muscle of digastric group 7 16238 -UBERON:0010943 anterior digastric muscle 8 16239 -UBERON:0010944 posterior digastric muscle 8 16240 -UBERON:0010948 cleidooccipital muscle 7 16241 -UBERON:0010959 craniocervical muscle 7 16242 -UBERON:0000378 tongue muscle 8 16243 -UBERON:0001574 palatoglossus muscle 9 16244 -UBERON:0001575 extrinsic muscle of tongue 9 16245 -UBERON:0001571 genioglossus muscle 10 16246 -UBERON:0001572 hyoglossus muscle 10 16247 -UBERON:0001573 styloglossus 10 16248 -UBERON:0001576 intrinsic muscle of tongue 9 16249 -UBERON:0008582 superior longitudinal muscle of tongue 10 16250 -UBERON:0008583 transverse muscle of tongue 10 16251 -UBERON:0008584 vertical muscle of tongue 10 16252 -UBERON:0001601 extra-ocular muscle 8 16253 -UBERON:0001604 levator palpebrae superioris 9 16254 -UBERON:0006531 oculomotor muscle 9 16255 -UBERON:0006532 oblique extraocular muscle 10 16256 -UBERON:0006320 inferior oblique extraocular muscle 11 16257 -UBERON:0006321 superior oblique extraocular muscle 11 16258 -UBERON:0006533 rectus extraocular muscle 10 16259 -UBERON:0001602 medial rectus extraocular muscle 11 16260 -UBERON:0001603 lateral rectus extra-ocular muscle 11 16261 -UBERON:0006322 inferior rectus extraocular muscle 11 16262 -UBERON:0006323 superior rectus extraocular muscle 11 16263 -UBERON:0010271 musculus retractor bulbi 9 16264 -UBERON:3010125 musculus levator bulbi 9 16265 -UBERON:0002376 cranial muscle 8 16266 -UBERON:0004113 muscle of auditory ossicle 9 16267 -UBERON:0001599 stapedius muscle 10 16268 -UBERON:0001600 tensor tympani 10 16269 -UBERON:0010950 styloauricular muscle 9 16270 -UBERON:0010951 interscutular muscle 9 16271 -UBERON:0011648 jaw muscle 9 16272 -UBERON:0003681 masticatory muscle 10 16273 -UBERON:0001597 masseter muscle 11 16274 -UBERON:0001598 temporalis muscle 11 16275 -UBERON:0006720 pterygoid muscle 11 16276 -UBERON:0006718 medial pterygoid muscle 12 16277 -UBERON:0006719 lateral pterygoid muscle 12 16278 -UBERON:0011647 depressor mandibulae muscle 10 16279 -UBERON:0011683 adductor mandibulae 10 16280 -UBERON:0011684 levator palatoquadrati 10 16281 -UBERON:0011685 preorbitalis muscle 10 16282 -UBERON:0011686 spiracularis muscle 10 16283 -UBERON:2000384 levator arcus palatini 10 16284 -UBERON:2000498 dilatator operculi 10 16285 -UBERON:2007050 constrictor dorsalis 10 16286 -UBERON:3010558 quadrato-ethmoid ligament 10 16287 -UBERON:3010700 levator mandibulae externus 10 16288 -UBERON:3010704 levator mandibulae longus 10 16289 -UBERON:3010708 levator mandibulae articularis 10 16290 -UBERON:3010709 levator mandibulae lateralis 10 16291 -UBERON:3010711 levator mandibulae externus superficialis 10 16292 -UBERON:3010712 levator mandibulae externus profundus 10 16293 -UBERON:3010724 levator quadrati 10 16294 -UBERON:3010742 interhyoideus posterior 10 16295 -UBERON:3010747 submentalis 10 16296 -UBERON:0015789 cranial or facial muscle 9 16297 -UBERON:0001577 facial muscle 10 16298 -UBERON:0001580 levator labii superioris 11 16299 -UBERON:0001581 depressor labii inferioris 11 16300 -UBERON:0001582 buccinator muscle 11 16301 -UBERON:0001599 stapedius muscle 11 16302 -UBERON:0005467 platysma 11 16303 -UBERON:0008522 nasal muscle 11 16304 -UBERON:0008588 procerus 12 16305 -UBERON:0008589 depressor septi nasi 12 16306 -UBERON:0010953 nasalis muscle 12 16307 -UBERON:0008591 depressor supercilii 11 16308 -UBERON:0008592 levator labii superioris alaeque nasi 11 16309 -UBERON:0008595 levator anguli oris 11 16310 -UBERON:0008596 mentalis muscle 11 16311 -UBERON:0008597 depressor anguli oris muscle 11 16312 -UBERON:0008598 risorius muscle 11 16313 -UBERON:0008609 transversus menti muscle 11 16314 -UBERON:0010437 zygomaticus muscle 11 16315 -UBERON:0008593 zygomaticus major muscle 12 16316 -UBERON:0008594 zygomaticus minor muscle 12 16317 -UBERON:0010933 orbicularis oris muscle 11 16318 -UBERON:0010944 posterior digastric muscle 11 16319 -UBERON:0011647 depressor mandibulae muscle 11 16320 -UBERON:2001693 protractor operculi 9 16321 -UBERON:2001768 retractor tentaculi 9 16322 -UBERON:2002200 hypobranchial muscle 9 16323 -UBERON:2002281 retractor posttemporalis 9 16324 -UBERON:3000032 auditory muscles 9 16325 -UBERON:3000224 hyobranchial muscle 9 16326 -UBERON:3010618 constrictor laryngis externus 10 16327 -UBERON:3010620 dilatator laryngis 10 16328 -UBERON:3010621 constrictor laryngis anterior 10 16329 -UBERON:3010650 cephalodorsosubpharyngeus 10 16330 -UBERON:3010651 levator bulbi 10 16331 -UBERON:3010654 rectus cervicis 10 16332 -UBERON:3010657 subhyoideus 10 16333 -UBERON:3010659 subarcualis rectus I 10 16334 -UBERON:3000309 narial muscles 9 16335 -UBERON:0002377 muscle of neck 8 16336 -UBERON:0000711 splenius capitis 9 16337 -UBERON:0001122 scalenus medius 9 16338 -UBERON:0001123 scalenus posterior 9 16339 -UBERON:0001128 sternocleidomastoid 9 16340 -UBERON:0001568 muscle of larynx 9 16341 -UBERON:0006327 laryngeal extrinsic muscle 10 16342 -UBERON:0006328 laryngeal intrinsic muscle 10 16343 -UBERON:0001566 cricothyroid muscle 11 16344 -UBERON:0001570 inferior pharyngeal constrictor 12 16345 -UBERON:0008576 thyro-arytenoid 11 16346 -UBERON:0008577 vocalis muscle 11 16347 -UBERON:0010932 crico-arytenoid muscle 11 16348 -UBERON:0008572 posterior crico-arytenoid 12 16349 -UBERON:0008573 lateral crico-arytenoid 12 16350 -UBERON:0010958 arytenoid muscle 11 16351 -UBERON:0008574 transverse arytenoid 12 16352 -UBERON:0008575 oblique arytenoid 12 16353 -UBERON:0010927 thyroepiglotticus muscle 10 16354 -UBERON:0011025 aryepiglotticus muscle 10 16355 -UBERON:0011312 hyoepiglottic muscle 10 16356 -UBERON:0003250 rectus capitis lateralis muscle 9 16357 -UBERON:0008453 rectus capitis anterior 9 16358 -UBERON:0008454 rectus capitis posterior major 9 16359 -UBERON:0008455 rectus capitis posterior minor 9 16360 -UBERON:0008611 scalene muscle 9 16361 -UBERON:0008622 scalenus anterior 10 16362 -UBERON:0010945 jugulohyoideus muscle 9 16363 -UBERON:0010949 sternooccipital muscle 9 16364 -UBERON:0011251 levator claviculae muscle 9 16365 -UBERON:0011508 sphincter colli superficialis muscle 9 16366 -UBERON:0011509 sphincter colli profundus muscle 9 16367 -UBERON:0013635 sphincter colli muscle 9 16368 -UBERON:0017647 prevertebral muscle of neck 9 16369 -UBERON:0003682 palatal muscle 8 16370 -UBERON:0001574 palatoglossus muscle 9 16371 -UBERON:0008585 levator veli palatini 9 16372 -UBERON:0008586 tensor veli palatini 9 16373 -UBERON:0010234 palatopharyngeus muscle 9 16374 -UBERON:0010235 uvular muscle 9 16375 -UBERON:2000311 adductor mandibulae complex 8 16376 -UBERON:0011145 adductor muscle 7 16377 -UBERON:0002962 adductor pollicis muscle 8 16378 -UBERON:0011144 adductor muscle of hip 8 16379 -UBERON:0000303 adductor longus 9 16380 -UBERON:0000368 adductor brevis 9 16381 -UBERON:0000370 adductor magnus 9 16382 -UBERON:0000950 gracilis 9 16383 -UBERON:0001368 obturator externus 9 16384 -UBERON:0001382 pectineus muscle 9 16385 -UBERON:2000497 pelvic adductor profundus 9 16386 -UBERON:2000592 superficial pelvic adductor 9 16387 -UBERON:0011564 adductor pollicis muscle of prepollex 8 16388 -UBERON:0011683 adductor mandibulae 8 16389 -UBERON:2000285 superficial adductor 8 16390 -UBERON:2000311 adductor mandibulae complex 8 16391 -UBERON:2000616 adductor profundus 8 16392 -UBERON:0011364 cleidocephalicus muscle 7 16393 -UBERON:0001128 sternocleidomastoid 8 16394 -UBERON:0011369 omotransversarius muscle 7 16395 -UBERON:0011371 sternocephalicus muscle 7 16396 -UBERON:0014842 puboischiofemoralis muscle 7 16397 -UBERON:0011643 puboischiofemoralis internus muscle 8 16398 -UBERON:0011644 puboischiofemoralis externus muscle 8 16399 -UBERON:0034908 scapular muscle 7 16400 -UBERON:0001112 latissimus dorsi muscle 8 16401 -UBERON:0001125 serratus ventralis 8 16402 -UBERON:0001476 deltoid 8 16403 -UBERON:0001477 infraspinatus muscle 8 16404 -UBERON:0001509 triceps brachii 8 16405 -UBERON:0002383 supraspinatus muscle 8 16406 -UBERON:0005461 levator scapulae muscle 8 16407 -UBERON:0010467 teres muscle 8 16408 -UBERON:0001478 teres major muscle 9 16409 -UBERON:0010496 teres minor muscle 9 16410 -UBERON:0014800 spinotrapezius muscle 8 16411 -UBERON:0035112 intrinsic muscle 7 16412 -UBERON:0014375 intrinsic muscle of manus 8 16413 -UBERON:0001501 lumbrical muscle of manus 9 16414 -UBERON:0001502 interosseous muscle of manus 9 16415 -UBERON:0001503 dorsal interosseous of manus 10 16416 -UBERON:0002988 first dorsal interosseous of manus 11 16417 -UBERON:0006505 palmar interosseous muscle of manus 10 16418 -UBERON:0014376 thenar muscle 9 16419 -UBERON:0014377 hypothenar muscle 9 16420 -UBERON:0036172 palmaris brevis 10 16421 -UBERON:0036173 abductor digiti minimi of hand 10 16422 -UBERON:0036174 flexor digiti minimi brevis of hand 10 16423 -UBERON:0036176 opponens digiti minimi of hand 10 16424 -UBERON:0014378 intrinsic muscle of pes 8 16425 -UBERON:0001504 lumbrical muscle of pes 9 16426 -UBERON:0006497 interosseous muscle of pes 9 16427 -UBERON:0006499 dorsal pes interosseous muscle 10 16428 -UBERON:0006502 plantar interosseous muscle of pes 10 16429 -UBERON:0011022 flexor hallucis brevis muscle 9 16430 -UBERON:0014379 adductor hallucis muscle 9 16431 -UBERON:0014380 flexor digitorum brevis muscle 9 16432 -UBERON:2000230 longitudinal hypochordal 7 16433 -UBERON:2000528 interradialis 7 16434 -UBERON:2000902 hypural musculature 7 16435 -UBERON:2002147 arrector muscle 7 16436 -UBERON:2000499 dorsal arrector 8 16437 -UBERON:2000651 dorsal pelvic arrector 8 16438 -UBERON:2000701 ventral arrector 8 16439 -UBERON:2000704 ventral pelvic arrector 8 16440 -UBERON:2007008 ventral intermandibularis anterior 7 16441 -UBERON:2007048 ventral intermandibularis posterior 7 16442 -UBERON:3010815 m. flexor indicis superficialis proprius 7 16443 -UBERON:4200031 caudalipuboischiotibialis 7 16444 -UBERON:4300030 flexor caudalis muscle 7 16445 -UBERON:0015430 levator auris longus muscle 6 16446 -UBERON:0017196 retractor lateralis muscle 6 16447 -UBERON:0017098 retractor lateralis posterior muscle 7 16448 -UBERON:0017099 retractor lateralis anterior muscle 7 16449 -UBERON:0018544 trigeminal nerve muscle 6 16450 -UBERON:0001564 mylohyoid muscle 7 16451 -UBERON:0001600 tensor tympani 7 16452 -UBERON:0003681 masticatory muscle 7 16453 -UBERON:0001597 masseter muscle 8 16454 -UBERON:0001598 temporalis muscle 8 16455 -UBERON:0006720 pterygoid muscle 8 16456 -UBERON:0006718 medial pterygoid muscle 9 16457 -UBERON:0006719 lateral pterygoid muscle 9 16458 -UBERON:0008586 tensor veli palatini 7 16459 -UBERON:0010943 anterior digastric muscle 7 16460 -UBERON:0011683 adductor mandibulae 7 16461 -UBERON:0011684 levator palatoquadrati 7 16462 -UBERON:0011685 preorbitalis muscle 7 16463 -UBERON:0011686 spiracularis muscle 7 16464 -UBERON:3010700 levator mandibulae externus 7 16465 -UBERON:3010708 levator mandibulae articularis 7 16466 -UBERON:3010709 levator mandibulae lateralis 7 16467 -UBERON:3010724 levator quadrati 7 16468 -UBERON:0035147 axochord 6 16469 -UBERON:0036147 oral siphon muscle 6 16470 -UBERON:0036148 orovelar muscle 6 16471 -UBERON:2002221 pericardial muscle 6 16472 -UBERON:0001849 membranous labyrinth 5 16473 -UBERON:0001850 lacrimal drainage system 5 16474 -UBERON:0001987 placenta 5 16475 -UBERON:0036151 diffuse placenta 6 16476 -UBERON:0036152 cotyledonary placenta 6 16477 -UBERON:0036153 zonary placenta 6 16478 -UBERON:0036154 discoid placenta 6 16479 -UBERON:0036161 epitheliochorial placenta 6 16480 -UBERON:0036162 endotheliochorial placenta 6 16481 -UBERON:0036163 hemochorial placenta 6 16482 -UBERON:0002097 skin of body 5 16483 -UBERON:0002393 pharyngotympanic tube 5 16484 -UBERON:0002411 clitoris 5 16485 -UBERON:0002530 gland 5 16486 -UBERON:0002365 exocrine gland 6 16487 -UBERON:0000325 gastric gland 7 16488 -UBERON:0008859 cardiac gastric gland 8 16489 -UBERON:0008861 pyloric gastric gland 8 16490 -UBERON:0009971 principal gastric gland 8 16491 -UBERON:0010038 fundic gastric gland 8 16492 -UBERON:0008860 intermediate gastric gland 9 16493 -UBERON:0000409 serous gland 7 16494 -UBERON:0000017 exocrine pancreas 8 16495 -UBERON:0001831 parotid gland 8 16496 -UBERON:0013475 gustatory gland 8 16497 -UBERON:0000414 mucous gland 7 16498 -UBERON:0000460 major vestibular gland 8 16499 -UBERON:0001338 urethral gland 8 16500 -UBERON:0010186 male urethral gland 9 16501 -UBERON:0002366 bulbo-urethral gland 10 16502 -UBERON:0010187 female urethral gland 9 16503 -UBERON:0000461 minor vestibular gland 10 16504 -UBERON:0002447 palatine gland 8 16505 -UBERON:0002451 endometrial gland 8 16506 -UBERON:0012247 cervical gland 9 16507 -UBERON:0004789 larynx mucous gland 8 16508 -UBERON:0004790 skin mucous gland 8 16509 -UBERON:0006330 anterior lingual gland 8 16510 -UBERON:0008859 cardiac gastric gland 8 16511 -UBERON:0008861 pyloric gastric gland 8 16512 -UBERON:0010038 fundic gastric gland 8 16513 -UBERON:0008860 intermediate gastric gland 9 16514 -UBERON:0011148 submucosal gland 8 16515 -UBERON:0001212 duodenal gland 9 16516 -UBERON:0005203 trachea gland 9 16517 -UBERON:0008989 submocosal esophageal gland 9 16518 -UBERON:0017161 hemipenial mucuous gland 8 16519 -UBERON:0017654 buccal gland 8 16520 -UBERON:0019190 mucous gland of lung 8 16521 -UBERON:0001817 lacrimal gland 7 16522 -UBERON:0013226 accessory lacrimal gland 8 16523 -UBERON:0011186 Krause's gland 9 16524 -UBERON:0013224 Ciaccio's gland 9 16525 -UBERON:0013227 crypt of Henle 9 16526 -UBERON:0019324 intraorbital lacrimal gland 8 16527 -UBERON:0019325 exorbital lacrimal gland 8 16528 -UBERON:0002107 liver 7 16529 -UBERON:0004187 Harderian gland 7 16530 -UBERON:0007802 uropygial gland 7 16531 -UBERON:0008974 apocrine gland 7 16532 -UBERON:0012177 skin apocrine gland 8 16533 -UBERON:0009708 dorsal pancreas 7 16534 -UBERON:0009709 ventral pancreas 7 16535 -UBERON:0010047 oral gland 7 16536 -UBERON:0001044 saliva-secreting gland 8 16537 -UBERON:0001829 major salivary gland 9 16538 -UBERON:0001736 submandibular gland 10 16539 -UBERON:0001831 parotid gland 10 16540 -UBERON:0001832 sublingual gland 10 16541 -UBERON:0001830 minor salivary gland 9 16542 -UBERON:0002447 palatine gland 10 16543 -UBERON:0006330 anterior lingual gland 10 16544 -UBERON:0034934 Weber's gland 10 16545 -UBERON:0012102 buccal salivary gland 9 16546 -UBERON:0001831 parotid gland 10 16547 -UBERON:0010240 zygomatic gland 10 16548 -UBERON:0010241 molar gland 10 16549 -UBERON:0010242 anterior buccal gland 10 16550 -UBERON:0013475 gustatory gland 9 16551 -UBERON:0017653 intermaxillary salivary gland 9 16552 -UBERON:0003409 gland of tongue 8 16553 -UBERON:0006330 anterior lingual gland 9 16554 -UBERON:0013475 gustatory gland 9 16555 -UBERON:0034934 Weber's gland 9 16556 -UBERON:0010048 Duvernoy's gland 8 16557 -UBERON:0010049 supralabial gland 8 16558 -UBERON:0010050 infralabial gland 8 16559 -UBERON:0010243 merocrine gland 7 16560 -UBERON:0000382 apocrine sweat gland 8 16561 -UBERON:0013211 cerumen gland 9 16562 -UBERON:0013228 sweat gland of eyelid 9 16563 -UBERON:0018232 axillary sweat gland 9 16564 -UBERON:0034762 areolar sweat gland 9 16565 -UBERON:0000423 eccrine sweat gland 8 16566 -UBERON:0014391 palmar/plantar sweat gland 9 16567 -UBERON:0011146 silk gland 7 16568 -UBERON:0011149 Marshall's gland 7 16569 -UBERON:0011252 scent gland 7 16570 -UBERON:0011253 gland of anal sac 8 16571 -UBERON:0013234 violet gland 8 16572 -UBERON:0016852 skin scent gland 8 16573 -UBERON:0012281 perianal sebaceous gland 9 16574 -UBERON:0016853 interdigital gland 9 16575 -UBERON:0011579 venom gland 7 16576 -UBERON:0008976 snake venom gland 8 16577 -UBERON:0011580 platypus crural gland 8 16578 -UBERON:0012278 gland of nasal mucosa 7 16579 -UBERON:0002232 olfactory gland 8 16580 -UBERON:0013233 supraorbital gland 8 16581 -UBERON:0035077 lateral nasal gland 8 16582 -UBERON:0012344 holocrine gland 7 16583 -UBERON:0001821 sebaceous gland 8 16584 -UBERON:0003485 vagina sebaceous gland 9 16585 -UBERON:0003487 skin sebaceous gland 9 16586 -UBERON:0003484 eye sebaceous gland 10 16587 -UBERON:0013231 sebaceous gland of eyelid 11 16588 -UBERON:0001818 tarsal gland 12 16589 -UBERON:0018233 gland of Zeis 12 16590 -UBERON:0011827 areolar gland 9 16591 -UBERON:0015251 modified sebaceous gland 9 16592 -UBERON:0000359 preputial gland 10 16593 -UBERON:0005301 male preputial gland 11 16594 -UBERON:0005302 female preputial gland 11 16595 -UBERON:0001818 tarsal gland 10 16596 -UBERON:0012281 perianal sebaceous gland 10 16597 -UBERON:1000022 Zymbal's gland 10 16598 -UBERON:0017162 hemipenial holocrine gland 8 16599 -UBERON:0015213 barnacle cement gland 7 16600 -UBERON:0019319 exocrine gland of integumental system 7 16601 -UBERON:0000460 major vestibular gland 8 16602 -UBERON:0001820 sweat gland 8 16603 -UBERON:0000382 apocrine sweat gland 9 16604 -UBERON:0013211 cerumen gland 10 16605 -UBERON:0013228 sweat gland of eyelid 10 16606 -UBERON:0018232 axillary sweat gland 10 16607 -UBERON:0034762 areolar sweat gland 10 16608 -UBERON:0000423 eccrine sweat gland 9 16609 -UBERON:0014391 palmar/plantar sweat gland 10 16610 -UBERON:0007773 scrotal sweat gland 9 16611 -UBERON:0001821 sebaceous gland 8 16612 -UBERON:0003485 vagina sebaceous gland 9 16613 -UBERON:0003487 skin sebaceous gland 9 16614 -UBERON:0003484 eye sebaceous gland 10 16615 -UBERON:0013231 sebaceous gland of eyelid 11 16616 -UBERON:0001818 tarsal gland 12 16617 -UBERON:0018233 gland of Zeis 12 16618 -UBERON:0011827 areolar gland 9 16619 -UBERON:0015251 modified sebaceous gland 9 16620 -UBERON:0000359 preputial gland 10 16621 -UBERON:0005301 male preputial gland 11 16622 -UBERON:0005302 female preputial gland 11 16623 -UBERON:0001818 tarsal gland 10 16624 -UBERON:0012281 perianal sebaceous gland 10 16625 -UBERON:1000022 Zymbal's gland 10 16626 -UBERON:0001911 mammary gland 8 16627 -UBERON:0003488 abdominal mammary gland 9 16628 -UBERON:0005199 cervical mammary gland 9 16629 -UBERON:0005200 thoracic mammary gland 9 16630 -UBERON:0008424 inguinal mammary gland 9 16631 -UBERON:0004790 skin mucous gland 8 16632 -UBERON:0011147 Verson's gland 8 16633 -UBERON:0011263 femoral gland 8 16634 -UBERON:0012177 skin apocrine gland 8 16635 -UBERON:0016852 skin scent gland 8 16636 -UBERON:0012281 perianal sebaceous gland 9 16637 -UBERON:0016853 interdigital gland 9 16638 -UBERON:0002368 endocrine gland 6 16639 -UBERON:0001057 corpus allatum 7 16640 -UBERON:0001132 parathyroid gland 7 16641 -UBERON:0006749 superior parathyroid gland 8 16642 -UBERON:0006755 inferior parathyroid gland 8 16643 -UBERON:0002046 thyroid gland 7 16644 -UBERON:0002370 thymus 7 16645 -UBERON:0009114 cervical thymus 8 16646 -UBERON:0018244 superficial cervical thymus 9 16647 -UBERON:0018245 deep cervical thymus 9 16648 -UBERON:0009115 thoracic thymus 8 16649 -UBERON:0002512 corpus luteum 7 16650 -UBERON:0003092 ultimobranchial body 7 16651 -UBERON:0006858 adrenal/interrenal gland 7 16652 -UBERON:0002369 adrenal gland 8 16653 -UBERON:0001233 right adrenal gland 9 16654 -UBERON:0001234 left adrenal gland 9 16655 -UBERON:0006856 interrenal gland 8 16656 -UBERON:0006925 digestive system gland 7 16657 -UBERON:0002107 liver 8 16658 -UBERON:0009116 thymoid 8 16659 -UBERON:0009860 ascidian digestive gland 8 16660 -UBERON:0010264 hepatopancreas 8 16661 -UBERON:0010265 mollusc hepatopancreas 9 16662 -UBERON:0010266 arthropod hepatopancreas 9 16663 -UBERON:0010133 neuroendocrine gland 7 16664 -UBERON:0000007 pituitary gland 8 16665 -UBERON:0001053 arthropod neurohemal organ 8 16666 -UBERON:0001056 corpus cardiacum 9 16667 -UBERON:0010134 secretory circumventricular organ 8 16668 -UBERON:0001905 pineal body 9 16669 -UBERON:0002139 subcommissural organ 9 16670 -UBERON:0002197 median eminence of neurohypophysis 9 16671 -UBERON:0002198 neurohypophysis 9 16672 -UBERON:0011359 urophysis 8 16673 -UBERON:0012325 retrocerebral complex 7 16674 -UBERON:2001200 corpuscles of Stannius 7 16675 -UBERON:0002538 hatching gland 6 16676 -UBERON:0003296 gland of diencephalon 6 16677 -UBERON:0000007 pituitary gland 7 16678 -UBERON:0001905 pineal body 7 16679 -UBERON:0002197 median eminence of neurohypophysis 7 16680 -UBERON:0002198 neurohypophysis 7 16681 -UBERON:0003297 gland of integumental system 6 16682 -UBERON:0002419 skin gland 7 16683 -UBERON:0003605 eye skin gland 8 16684 -UBERON:0003484 eye sebaceous gland 9 16685 -UBERON:0013231 sebaceous gland of eyelid 10 16686 -UBERON:0001818 tarsal gland 11 16687 -UBERON:0018233 gland of Zeis 11 16688 -UBERON:0013228 sweat gland of eyelid 9 16689 -UBERON:0007771 epidermis gland 8 16690 -UBERON:0001820 sweat gland 9 16691 -UBERON:0000382 apocrine sweat gland 10 16692 -UBERON:0013211 cerumen gland 11 16693 -UBERON:0013228 sweat gland of eyelid 11 16694 -UBERON:0018232 axillary sweat gland 11 16695 -UBERON:0034762 areolar sweat gland 11 16696 -UBERON:0000423 eccrine sweat gland 10 16697 -UBERON:0014391 palmar/plantar sweat gland 11 16698 -UBERON:0007773 scrotal sweat gland 10 16699 -UBERON:0001821 sebaceous gland 9 16700 -UBERON:0003485 vagina sebaceous gland 10 16701 -UBERON:0003487 skin sebaceous gland 10 16702 -UBERON:0003484 eye sebaceous gland 11 16703 -UBERON:0013231 sebaceous gland of eyelid 12 16704 -UBERON:0001818 tarsal gland 13 16705 -UBERON:0018233 gland of Zeis 13 16706 -UBERON:0011827 areolar gland 10 16707 -UBERON:0015251 modified sebaceous gland 10 16708 -UBERON:0000359 preputial gland 11 16709 -UBERON:0005301 male preputial gland 12 16710 -UBERON:0005302 female preputial gland 12 16711 -UBERON:0001818 tarsal gland 11 16712 -UBERON:0012281 perianal sebaceous gland 11 16713 -UBERON:1000022 Zymbal's gland 11 16714 -UBERON:0004790 skin mucous gland 9 16715 -UBERON:0012177 skin apocrine gland 8 16716 -UBERON:0016852 skin scent gland 8 16717 -UBERON:0012281 perianal sebaceous gland 9 16718 -UBERON:0016853 interdigital gland 9 16719 -UBERON:0013645 gular gland 7 16720 -UBERON:0019319 exocrine gland of integumental system 7 16721 -UBERON:0000460 major vestibular gland 8 16722 -UBERON:0001820 sweat gland 8 16723 -UBERON:0000382 apocrine sweat gland 9 16724 -UBERON:0013211 cerumen gland 10 16725 -UBERON:0013228 sweat gland of eyelid 10 16726 -UBERON:0018232 axillary sweat gland 10 16727 -UBERON:0034762 areolar sweat gland 10 16728 -UBERON:0000423 eccrine sweat gland 9 16729 -UBERON:0014391 palmar/plantar sweat gland 10 16730 -UBERON:0007773 scrotal sweat gland 9 16731 -UBERON:0001821 sebaceous gland 8 16732 -UBERON:0003485 vagina sebaceous gland 9 16733 -UBERON:0003487 skin sebaceous gland 9 16734 -UBERON:0003484 eye sebaceous gland 10 16735 -UBERON:0013231 sebaceous gland of eyelid 11 16736 -UBERON:0001818 tarsal gland 12 16737 -UBERON:0018233 gland of Zeis 12 16738 -UBERON:0011827 areolar gland 9 16739 -UBERON:0015251 modified sebaceous gland 9 16740 -UBERON:0000359 preputial gland 10 16741 -UBERON:0005301 male preputial gland 11 16742 -UBERON:0005302 female preputial gland 11 16743 -UBERON:0001818 tarsal gland 10 16744 -UBERON:0012281 perianal sebaceous gland 10 16745 -UBERON:1000022 Zymbal's gland 10 16746 -UBERON:0001911 mammary gland 8 16747 -UBERON:0003488 abdominal mammary gland 9 16748 -UBERON:0005199 cervical mammary gland 9 16749 -UBERON:0005200 thoracic mammary gland 9 16750 -UBERON:0008424 inguinal mammary gland 9 16751 -UBERON:0004790 skin mucous gland 8 16752 -UBERON:0011147 Verson's gland 8 16753 -UBERON:0011263 femoral gland 8 16754 -UBERON:0012177 skin apocrine gland 8 16755 -UBERON:0016852 skin scent gland 8 16756 -UBERON:0012281 perianal sebaceous gland 9 16757 -UBERON:0016853 interdigital gland 9 16758 -UBERON:0003408 gland of digestive tract 6 16759 -UBERON:0000333 intestinal gland 7 16760 -UBERON:0001983 crypt of Lieberkuhn 8 16761 -UBERON:0001241 crypt of Lieberkuhn of small intestine 9 16762 -UBERON:0013481 crypt of Lieberkuhn of ileum 10 16763 -UBERON:0013482 crypt of Lieberkuhn of duodenum 10 16764 -UBERON:0013483 crypt of Lieberkuhn of jejunum 10 16765 -UBERON:0001984 crypt of Lieberkuhn of large intestine 9 16766 -UBERON:0013485 crypt of Lieberkuhn of colon 10 16767 -UBERON:0013486 crypt of Lieberkuhn of appendix 11 16768 -UBERON:0001212 duodenal gland 7 16769 -UBERON:0003294 gland of foregut 7 16770 -UBERON:0000325 gastric gland 8 16771 -UBERON:0008859 cardiac gastric gland 9 16772 -UBERON:0008861 pyloric gastric gland 9 16773 -UBERON:0009971 principal gastric gland 9 16774 -UBERON:0010038 fundic gastric gland 9 16775 -UBERON:0008860 intermediate gastric gland 10 16776 -UBERON:0003295 pharyngeal gland 7 16777 -UBERON:0003410 oropharyngeal gland 8 16778 -UBERON:0008310 nasopharyngeal gland 8 16779 -UBERON:0009116 thymoid 8 16780 -UBERON:0004757 rectal salt gland 7 16781 -UBERON:0004760 gland of anal canal 7 16782 -UBERON:0008989 submocosal esophageal gland 7 16783 -UBERON:0010047 oral gland 7 16784 -UBERON:0001044 saliva-secreting gland 8 16785 -UBERON:0001829 major salivary gland 9 16786 -UBERON:0001736 submandibular gland 10 16787 -UBERON:0001831 parotid gland 10 16788 -UBERON:0001832 sublingual gland 10 16789 -UBERON:0001830 minor salivary gland 9 16790 -UBERON:0002447 palatine gland 10 16791 -UBERON:0006330 anterior lingual gland 10 16792 -UBERON:0034934 Weber's gland 10 16793 -UBERON:0012102 buccal salivary gland 9 16794 -UBERON:0001831 parotid gland 10 16795 -UBERON:0010240 zygomatic gland 10 16796 -UBERON:0010241 molar gland 10 16797 -UBERON:0010242 anterior buccal gland 10 16798 -UBERON:0013475 gustatory gland 9 16799 -UBERON:0017653 intermaxillary salivary gland 9 16800 -UBERON:0003409 gland of tongue 8 16801 -UBERON:0006330 anterior lingual gland 9 16802 -UBERON:0013475 gustatory gland 9 16803 -UBERON:0034934 Weber's gland 9 16804 -UBERON:0010048 Duvernoy's gland 8 16805 -UBERON:0010049 supralabial gland 8 16806 -UBERON:0010050 infralabial gland 8 16807 -UBERON:0010264 hepatopancreas 7 16808 -UBERON:0010265 mollusc hepatopancreas 8 16809 -UBERON:0010266 arthropod hepatopancreas 8 16810 -UBERON:0011253 gland of anal sac 7 16811 -UBERON:0012478 cloacal gland 7 16812 -UBERON:0012479 urodeal gland 8 16813 -UBERON:0017164 dorsal cloacal gland 8 16814 -UBERON:3010590 amphibian cloacal gland 8 16815 -UBERON:4300129 dorsal pelvic gland 8 16816 -UBERON:4300130 lateral pelvic gland 8 16817 -UBERON:0013158 foregut-midgut junction gland 7 16818 -UBERON:0003937 reproductive gland 6 16819 -UBERON:0000359 preputial gland 7 16820 -UBERON:0005301 male preputial gland 8 16821 -UBERON:0005302 female preputial gland 8 16822 -UBERON:0005398 female reproductive gland 7 16823 -UBERON:0002451 endometrial gland 8 16824 -UBERON:0012247 cervical gland 9 16825 -UBERON:0002512 corpus luteum 8 16826 -UBERON:0003485 vagina sebaceous gland 8 16827 -UBERON:0005302 female preputial gland 8 16828 -UBERON:0008855 placenta metrial gland 8 16829 -UBERON:0008935 gastropod albumen gland 8 16830 -UBERON:0008975 oviduct shell gland 8 16831 -UBERON:0010145 paraurethral gland 8 16832 -UBERON:0000461 minor vestibular gland 9 16833 -UBERON:0011826 vestibular gland 8 16834 -UBERON:0000460 major vestibular gland 9 16835 -UBERON:0000461 minor vestibular gland 9 16836 -UBERON:0034735 oviduct albumen gland 8 16837 -UBERON:0005399 male reproductive gland 7 16838 -UBERON:0006868 seminal fluid secreting gland 8 16839 -UBERON:0000998 seminal vesicle 9 16840 -UBERON:0002366 bulbo-urethral gland 9 16841 -UBERON:0007773 scrotal sweat gland 8 16842 -UBERON:0009645 ampullary gland 8 16843 -UBERON:0010147 male accessory sex gland 8 16844 -UBERON:0002366 bulbo-urethral gland 9 16845 -UBERON:0002367 prostate gland 9 16846 -UBERON:0005301 male preputial gland 9 16847 -UBERON:0007194 vesicular gland 9 16848 -UBERON:0008807 coagulating gland 9 16849 -UBERON:0017161 hemipenial mucuous gland 8 16850 -UBERON:0017162 hemipenial holocrine gland 8 16851 -UBERON:0004758 salt gland 6 16852 -UBERON:0004757 rectal salt gland 7 16853 -UBERON:0004759 cranial salt gland 7 16854 -UBERON:0013233 supraorbital gland 8 16855 -UBERON:0004859 eye gland 6 16856 -UBERON:0001817 lacrimal gland 7 16857 -UBERON:0013226 accessory lacrimal gland 8 16858 -UBERON:0011186 Krause's gland 9 16859 -UBERON:0013224 Ciaccio's gland 9 16860 -UBERON:0013227 crypt of Henle 9 16861 -UBERON:0019324 intraorbital lacrimal gland 8 16862 -UBERON:0019325 exorbital lacrimal gland 8 16863 -UBERON:0003605 eye skin gland 7 16864 -UBERON:0003484 eye sebaceous gland 8 16865 -UBERON:0013231 sebaceous gland of eyelid 9 16866 -UBERON:0001818 tarsal gland 10 16867 -UBERON:0018233 gland of Zeis 10 16868 -UBERON:0013228 sweat gland of eyelid 8 16869 -UBERON:0004187 Harderian gland 7 16870 -UBERON:0013229 eyelid gland 7 16871 -UBERON:0013224 Ciaccio's gland 8 16872 -UBERON:0013228 sweat gland of eyelid 8 16873 -UBERON:0013230 nictitans gland 8 16874 -UBERON:0013231 sebaceous gland of eyelid 8 16875 -UBERON:0001818 tarsal gland 9 16876 -UBERON:0018233 gland of Zeis 9 16877 -UBERON:0005058 hemolymphoid system gland 6 16878 -UBERON:0002370 thymus 7 16879 -UBERON:0009114 cervical thymus 8 16880 -UBERON:0018244 superficial cervical thymus 9 16881 -UBERON:0018245 deep cervical thymus 9 16882 -UBERON:0009115 thoracic thymus 8 16883 -UBERON:0006856 interrenal gland 7 16884 -UBERON:0009116 thymoid 7 16885 -UBERON:0005093 embryonic cement gland 6 16886 -UBERON:0005250 stomatodeum gland 6 16887 -UBERON:0009861 ascidian neural complex 6 16888 -UBERON:0009962 excretory gland 6 16889 -UBERON:0009963 antennal gland 7 16890 -UBERON:0009964 crustacean maxillary gland 7 16891 -UBERON:0009965 coxal gland 7 16892 -UBERON:0013219 parotoid gland 6 16893 -UBERON:0013223 alveolar gland 6 16894 -UBERON:0015152 gland of ocular region 6 16895 -UBERON:0003605 eye skin gland 7 16896 -UBERON:0003484 eye sebaceous gland 8 16897 -UBERON:0013231 sebaceous gland of eyelid 9 16898 -UBERON:0001818 tarsal gland 10 16899 -UBERON:0018233 gland of Zeis 10 16900 -UBERON:0013228 sweat gland of eyelid 8 16901 -UBERON:0013229 eyelid gland 7 16902 -UBERON:0013224 Ciaccio's gland 8 16903 -UBERON:0013228 sweat gland of eyelid 8 16904 -UBERON:0013230 nictitans gland 8 16905 -UBERON:0013231 sebaceous gland of eyelid 8 16906 -UBERON:0001818 tarsal gland 9 16907 -UBERON:0018233 gland of Zeis 9 16908 -UBERON:0015153 medial gland of ocular region 7 16909 -UBERON:0004187 Harderian gland 8 16910 -UBERON:0013230 nictitans gland 8 16911 -UBERON:0015154 lateral gland of orbital region 7 16912 -UBERON:0001817 lacrimal gland 8 16913 -UBERON:0013226 accessory lacrimal gland 9 16914 -UBERON:0011186 Krause's gland 10 16915 -UBERON:0013224 Ciaccio's gland 10 16916 -UBERON:0013227 crypt of Henle 10 16917 -UBERON:0019324 intraorbital lacrimal gland 9 16918 -UBERON:0019325 exorbital lacrimal gland 9 16919 -UBERON:0017625 pterygopodial gland 6 16920 -UBERON:0017628 swim bladder gas gland 6 16921 -UBERON:0017652 intermaxillary gland (sensu Osteolepiformes) 6 16922 -UBERON:0036225 respiratory system gland 6 16923 -UBERON:0003295 pharyngeal gland 7 16924 -UBERON:0003410 oropharyngeal gland 8 16925 -UBERON:0008310 nasopharyngeal gland 8 16926 -UBERON:0009116 thymoid 8 16927 -UBERON:0004789 larynx mucous gland 7 16928 -UBERON:0005203 trachea gland 7 16929 -UBERON:0005204 larynx submucosa gland 7 16930 -UBERON:0012278 gland of nasal mucosa 7 16931 -UBERON:0002232 olfactory gland 8 16932 -UBERON:0013233 supraorbital gland 8 16933 -UBERON:0035077 lateral nasal gland 8 16934 -UBERON:0019190 mucous gland of lung 7 16935 -UBERON:3010602 granular gland 6 16936 -UBERON:0002535 gill 5 16937 -UBERON:0000205 papula 6 16938 -UBERON:0000206 pharyngeal gill 6 16939 -UBERON:0008891 external gill 6 16940 -UBERON:0008892 internal gill 6 16941 -UBERON:0011150 pharyngeal arch derived gill 6 16942 -UBERON:0003103 compound organ 5 16943 -UBERON:0000489 cavitated compound organ 6 16944 -UBERON:0002113 kidney 7 16945 -UBERON:0000080 mesonephros 8 16946 -UBERON:0000081 metanephros 8 16947 -UBERON:0000082 adult mammalian kidney 8 16948 -UBERON:0002120 pronephros 8 16949 -UBERON:0004538 left kidney 8 16950 -UBERON:0004539 right kidney 8 16951 -UBERON:0002240 spinal cord 7 16952 -UBERON:0008823 neural tube derived brain 7 16953 -UBERON:0018707 bladder organ 7 16954 -UBERON:0001255 urinary bladder 8 16955 -UBERON:0002110 gall bladder 8 16956 -UBERON:0006860 swim bladder 8 16957 -UBERON:3010524 bronchial tube 7 16958 -UBERON:0000491 solid compound organ 6 16959 -UBERON:2000461 Weberian ossicle 7 16960 -UBERON:2000525 intercalarium 8 16961 -UBERON:2000698 tripus 8 16962 -UBERON:2001171 os suspensorium 8 16963 -UBERON:2001553 manubrium 8 16964 -UBERON:2002214 os suspensorium medial flange 8 16965 -UBERON:4300190 claustrum element 8 16966 -UBERON:2000637 claustrum cartilage 9 16967 -UBERON:2001592 claustrum bone 9 16968 -UBERON:0001005 respiratory airway 6 16969 -UBERON:0000065 respiratory tract 7 16970 -UBERON:0003127 open tracheal system trachea 7 16971 -UBERON:0004869 parietal organ 6 16972 -UBERON:0007132 head kidney 6 16973 -UBERON:0008917 ampullary organ 6 16974 -UBERON:0008918 ampulla of Lorenzini 6 16975 -UBERON:0010056 future tongue 6 16976 -UBERON:0013658 corpus cavernosum maxillaris 6 16977 -UBERON:0015228 circulatory organ 6 16978 -UBERON:0007100 primary circulatory organ 7 16979 -UBERON:0000948 heart 8 16980 -UBERON:0015227 peristaltic circulatory vessel 8 16981 -UBERON:0015230 dorsal vessel heart 8 16982 -UBERON:0015229 accessory circulatory organ 7 16983 -UBERON:0015202 lymph heart 8 16984 -UBERON:0034959 right lymph heart 9 16985 -UBERON:0034960 left lymph heart 9 16986 -UBERON:0034961 embryonic lymph heart 9 16987 -UBERON:0034962 copulatory lymph heart 9 16988 -UBERON:0036259 cardial lymph propulsor 8 16989 -UBERON:0015241 parapineal organ 6 16990 -UBERON:2000139 immature otolith 6 16991 -UBERON:2001102 immature anterior otolith 7 16992 -UBERON:2001103 immature posterior otolith 7 16993 -UBERON:2001293 posterior kidney 6 16994 -UBERON:2002116 epibranchial organ 6 16995 -UBERON:2002117 ovipositor 6 16996 -UBERON:2002125 caudal-fin organ 6 16997 -UBERON:0003133 reproductive organ 5 16998 -UBERON:0000991 gonad 6 16999 -UBERON:0000473 testis 7 17000 -UBERON:0004533 left testis 8 17001 -UBERON:0004534 right testis 8 17002 -UBERON:0000992 ovary 7 17003 -UBERON:0002118 right ovary 8 17004 -UBERON:0002119 left ovary 8 17005 -UBERON:0010041 median ovary 8 17006 -UBERON:0002537 hermaphrodite gonad 7 17007 -UBERON:0009117 indifferent gonad 7 17008 -UBERON:0003134 female reproductive organ 6 17009 -UBERON:0000992 ovary 7 17010 -UBERON:0002118 right ovary 8 17011 -UBERON:0002119 left ovary 8 17012 -UBERON:0010041 median ovary 8 17013 -UBERON:0003975 internal female genitalia 7 17014 -UBERON:0005056 external female genitalia 7 17015 -UBERON:0003135 male reproductive organ 6 17016 -UBERON:0000473 testis 7 17017 -UBERON:0004533 left testis 8 17018 -UBERON:0004534 right testis 8 17019 -UBERON:0004053 external male genitalia 7 17020 -UBERON:0004054 internal male genitalia 7 17021 -UBERON:0008811 intromittent organ 7 17022 -UBERON:0000989 penis 8 17023 -UBERON:0008812 hemipenis 8 17024 -UBERON:0010516 clasper 8 17025 -UBERON:0010517 cephalic clasper 9 17026 -UBERON:0010518 pelvic fin clasper 9 17027 -UBERON:0018315 clasper plate 10 17028 -UBERON:0017623 prepelvic clasper 9 17029 -UBERON:0013672 priapium 8 17030 -UBERON:3010259 phallodeum 8 17031 -UBERON:3010260 intromittent organ (Ascaphus type) 8 17032 -UBERON:0004175 internal genitalia 6 17033 -UBERON:0003975 internal female genitalia 7 17034 -UBERON:0004054 internal male genitalia 7 17035 -UBERON:0004176 external genitalia 6 17036 -UBERON:0004053 external male genitalia 7 17037 -UBERON:0005056 external female genitalia 7 17038 -UBERON:0009196 indifferent external genitalia 7 17039 -UBERON:0003668 synovial bursa 5 17040 -UBERON:0012334 navicular bursa 6 17041 -UBERON:0012335 navicular bursa of manus 7 17042 -UBERON:0012343 navicular bursa of pes 7 17043 -UBERON:0003917 arthropod fat body 5 17044 -UBERON:0004177 hemopoietic organ 5 17045 -UBERON:0000040 Leydig's organ 6 17046 -UBERON:0001960 periarterial lymphatic sheath 6 17047 -UBERON:0002106 spleen 6 17048 -UBERON:0002370 thymus 6 17049 -UBERON:0009114 cervical thymus 7 17050 -UBERON:0018244 superficial cervical thymus 8 17051 -UBERON:0018245 deep cervical thymus 8 17052 -UBERON:0009115 thoracic thymus 7 17053 -UBERON:0003903 bursa of Fabricius 6 17054 -UBERON:0006856 interrenal gland 6 17055 -UBERON:0007132 head kidney 6 17056 -UBERON:0009102 supraneural body 6 17057 -UBERON:0009116 thymoid 6 17058 -UBERON:0010014 epigonal organ 6 17059 -UBERON:0013119 haemal node 6 17060 -UBERON:0004289 radula 5 17061 -UBERON:0004765 skeletal element 5 17062 -UBERON:0001474 bone element 6 17063 -UBERON:0002495 long bone 7 17064 -UBERON:0001105 clavicle bone 8 17065 -UBERON:0008255 right clavicle 9 17066 -UBERON:0008256 left clavicle 9 17067 -UBERON:0002228 rib 8 17068 -UBERON:0002237 true rib 9 17069 -UBERON:0002238 false rib 9 17070 -UBERON:0002239 floating rib 10 17071 -UBERON:0004601 rib 1 9 17072 -UBERON:0004602 rib 2 9 17073 -UBERON:0004603 rib 3 9 17074 -UBERON:0004604 rib 4 9 17075 -UBERON:0004605 rib 5 9 17076 -UBERON:0004606 rib 6 9 17077 -UBERON:0004607 rib 7 9 17078 -UBERON:0004608 rib 9 9 17079 -UBERON:0004609 rib 10 9 17080 -UBERON:0004610 rib 11 9 17081 -UBERON:0004611 rib 12 9 17082 -UBERON:0010757 rib 8 9 17083 -UBERON:0018144 cervical rib 9 17084 -UBERON:0018145 lumbar rib 9 17085 -UBERON:2001750 rib of vertebra 6 9 17086 -UBERON:2001751 rib of vertebra 5 9 17087 -UBERON:2001878 rib of vertebra 2 9 17088 -UBERON:2001879 rib of vertebra 1 9 17089 -UBERON:2001880 rib of vertebra 3 9 17090 -UBERON:2001881 rib of vertebra 4 9 17091 -UBERON:4100117 presacral rib 9 17092 -UBERON:4100118 trunk rib 9 17093 -UBERON:4300128 sacral rib 9 17094 -UBERON:4300236 rib of vertebra 7 9 17095 -UBERON:4300237 rib of vertebra 8 9 17096 -UBERON:0003606 limb long bone 8 17097 -UBERON:0003221 phalanx 9 17098 -UBERON:0001436 phalanx of manus 10 17099 -UBERON:0002234 proximal phalanx of manus 11 17100 -UBERON:0004328 proximal phalanx of manual digit 2 12 17101 -UBERON:0004329 proximal phalanx of manual digit 3 12 17102 -UBERON:0004330 proximal phalanx of manual digit 4 12 17103 -UBERON:0004331 proximal phalanx of manual digit 5 12 17104 -UBERON:0004338 proximal phalanx of manual digit 1 12 17105 -UBERON:0003620 manual digit 1 phalanx 11 17106 -UBERON:0004337 distal phalanx of manual digit 1 12 17107 -UBERON:0004338 proximal phalanx of manual digit 1 12 17108 -UBERON:4200219 middle phalanx of manual digit 1 12 17109 -UBERON:0003636 manual digit 2 phalanx 11 17110 -UBERON:0004311 distal phalanx of manual digit 2 12 17111 -UBERON:0004320 middle phalanx of manual digit 2 12 17112 -UBERON:0004328 proximal phalanx of manual digit 2 12 17113 -UBERON:0003637 manual digit 3 phalanx 11 17114 -UBERON:0004312 distal phalanx of manual digit 3 12 17115 -UBERON:0004321 middle phalanx of manual digit 3 12 17116 -UBERON:0004329 proximal phalanx of manual digit 3 12 17117 -UBERON:0003638 manual digit 4 phalanx 11 17118 -UBERON:0004313 distal phalanx of manual digit 4 12 17119 -UBERON:0004322 middle phalanx of manual digit 4 12 17120 -UBERON:0004330 proximal phalanx of manual digit 4 12 17121 -UBERON:0003639 manual digit 5 phalanx 11 17122 -UBERON:0004314 distal phalanx of manual digit 5 12 17123 -UBERON:0004323 middle phalanx of manual digit 5 12 17124 -UBERON:0004331 proximal phalanx of manual digit 5 12 17125 -UBERON:0003864 middle phalanx of manus 11 17126 -UBERON:0004320 middle phalanx of manual digit 2 12 17127 -UBERON:0004321 middle phalanx of manual digit 3 12 17128 -UBERON:0004322 middle phalanx of manual digit 4 12 17129 -UBERON:0004323 middle phalanx of manual digit 5 12 17130 -UBERON:4200219 middle phalanx of manual digit 1 12 17131 -UBERON:0003865 distal phalanx of manus 11 17132 -UBERON:0004311 distal phalanx of manual digit 2 12 17133 -UBERON:0004312 distal phalanx of manual digit 3 12 17134 -UBERON:0004313 distal phalanx of manual digit 4 12 17135 -UBERON:0004314 distal phalanx of manual digit 5 12 17136 -UBERON:0004337 distal phalanx of manual digit 1 12 17137 -UBERON:0001449 phalanx of pes 10 17138 -UBERON:0003640 pedal digit 1 phalanx 11 17139 -UBERON:0004315 distal phalanx of pedal digit 1 12 17140 -UBERON:0004332 proximal phalanx of pedal digit 1 12 17141 -UBERON:0003641 pedal digit 2 phalanx 11 17142 -UBERON:0004316 distal phalanx of pedal digit 2 12 17143 -UBERON:0004324 middle phalanx of pedal digit 2 12 17144 -UBERON:0004333 proximal phalanx of pedal digit 2 12 17145 -UBERON:0003642 pedal digit 3 phalanx 11 17146 -UBERON:0004317 distal phalanx of pedal digit 3 12 17147 -UBERON:0004325 middle phalanx of pedal digit 3 12 17148 -UBERON:0004334 proximal phalanx of pedal digit 3 12 17149 -UBERON:0003862 pedal digit 4 phalanx 11 17150 -UBERON:0004318 distal phalanx of pedal digit 4 12 17151 -UBERON:0004326 middle phalanx of pedal digit 4 12 17152 -UBERON:0004335 proximal phalanx of pedal digit 4 12 17153 -UBERON:0003863 pedal digit 5 phalanx 11 17154 -UBERON:0004319 distal phalanx of pedal digit 5 12 17155 -UBERON:0004327 middle phalanx of pedal digit 5 12 17156 -UBERON:0004336 proximal phalanx of pedal digit 5 12 17157 -UBERON:0003866 middle phalanx of pes 11 17158 -UBERON:0004324 middle phalanx of pedal digit 2 12 17159 -UBERON:0004325 middle phalanx of pedal digit 3 12 17160 -UBERON:0004326 middle phalanx of pedal digit 4 12 17161 -UBERON:0004327 middle phalanx of pedal digit 5 12 17162 -UBERON:0003867 distal phalanx of pes 11 17163 -UBERON:0004315 distal phalanx of pedal digit 1 12 17164 -UBERON:0004316 distal phalanx of pedal digit 2 12 17165 -UBERON:0004317 distal phalanx of pedal digit 3 12 17166 -UBERON:0004318 distal phalanx of pedal digit 4 12 17167 -UBERON:0004319 distal phalanx of pedal digit 5 12 17168 -UBERON:0003868 proximal phalanx of pes 11 17169 -UBERON:0004332 proximal phalanx of pedal digit 1 12 17170 -UBERON:0004333 proximal phalanx of pedal digit 2 12 17171 -UBERON:0004334 proximal phalanx of pedal digit 3 12 17172 -UBERON:0004335 proximal phalanx of pedal digit 4 12 17173 -UBERON:0004336 proximal phalanx of pedal digit 5 12 17174 -UBERON:4100009 pedal digit 7 phalanx 11 17175 -UBERON:0004300 distal phalanx 10 17176 -UBERON:0003865 distal phalanx of manus 11 17177 -UBERON:0004311 distal phalanx of manual digit 2 12 17178 -UBERON:0004312 distal phalanx of manual digit 3 12 17179 -UBERON:0004313 distal phalanx of manual digit 4 12 17180 -UBERON:0004314 distal phalanx of manual digit 5 12 17181 -UBERON:0004337 distal phalanx of manual digit 1 12 17182 -UBERON:0003867 distal phalanx of pes 11 17183 -UBERON:0004315 distal phalanx of pedal digit 1 12 17184 -UBERON:0004316 distal phalanx of pedal digit 2 12 17185 -UBERON:0004317 distal phalanx of pedal digit 3 12 17186 -UBERON:0004318 distal phalanx of pedal digit 4 12 17187 -UBERON:0004319 distal phalanx of pedal digit 5 12 17188 -UBERON:0014483 distal phalanx of digit 1 11 17189 -UBERON:0004315 distal phalanx of pedal digit 1 12 17190 -UBERON:0004337 distal phalanx of manual digit 1 12 17191 -UBERON:0014484 distal phalanx of digit 2 11 17192 -UBERON:0004311 distal phalanx of manual digit 2 12 17193 -UBERON:0004316 distal phalanx of pedal digit 2 12 17194 -UBERON:0014485 distal phalanx of digit 3 11 17195 -UBERON:0004312 distal phalanx of manual digit 3 12 17196 -UBERON:0004317 distal phalanx of pedal digit 3 12 17197 -UBERON:0014486 distal phalanx of digit 4 11 17198 -UBERON:0004313 distal phalanx of manual digit 4 12 17199 -UBERON:0004318 distal phalanx of pedal digit 4 12 17200 -UBERON:0014487 distal phalanx of digit 5 11 17201 -UBERON:0004314 distal phalanx of manual digit 5 12 17202 -UBERON:0004319 distal phalanx of pedal digit 5 12 17203 -UBERON:3010746 T-shaped terminal phalanx 11 17204 -UBERON:0004301 middle phalanx 10 17205 -UBERON:0003864 middle phalanx of manus 11 17206 -UBERON:0004320 middle phalanx of manual digit 2 12 17207 -UBERON:0004321 middle phalanx of manual digit 3 12 17208 -UBERON:0004322 middle phalanx of manual digit 4 12 17209 -UBERON:0004323 middle phalanx of manual digit 5 12 17210 -UBERON:4200219 middle phalanx of manual digit 1 12 17211 -UBERON:0003866 middle phalanx of pes 11 17212 -UBERON:0004324 middle phalanx of pedal digit 2 12 17213 -UBERON:0004325 middle phalanx of pedal digit 3 12 17214 -UBERON:0004326 middle phalanx of pedal digit 4 12 17215 -UBERON:0004327 middle phalanx of pedal digit 5 12 17216 -UBERON:0014488 middle phalanx of digit 2 11 17217 -UBERON:0004320 middle phalanx of manual digit 2 12 17218 -UBERON:0004324 middle phalanx of pedal digit 2 12 17219 -UBERON:0014489 middle phalanx of digit 3 11 17220 -UBERON:0004321 middle phalanx of manual digit 3 12 17221 -UBERON:0004325 middle phalanx of pedal digit 3 12 17222 -UBERON:0009555 short pastern bone 12 17223 -UBERON:0014490 middle phalanx of digit 4 11 17224 -UBERON:0004322 middle phalanx of manual digit 4 12 17225 -UBERON:0004326 middle phalanx of pedal digit 4 12 17226 -UBERON:0014491 middle phalanx of digit 5 11 17227 -UBERON:0004323 middle phalanx of manual digit 5 12 17228 -UBERON:0004327 middle phalanx of pedal digit 5 12 17229 -UBERON:0004302 proximal phalanx 10 17230 -UBERON:0002234 proximal phalanx of manus 11 17231 -UBERON:0004328 proximal phalanx of manual digit 2 12 17232 -UBERON:0004329 proximal phalanx of manual digit 3 12 17233 -UBERON:0004330 proximal phalanx of manual digit 4 12 17234 -UBERON:0004331 proximal phalanx of manual digit 5 12 17235 -UBERON:0004338 proximal phalanx of manual digit 1 12 17236 -UBERON:0003868 proximal phalanx of pes 11 17237 -UBERON:0004332 proximal phalanx of pedal digit 1 12 17238 -UBERON:0004333 proximal phalanx of pedal digit 2 12 17239 -UBERON:0004334 proximal phalanx of pedal digit 3 12 17240 -UBERON:0004335 proximal phalanx of pedal digit 4 12 17241 -UBERON:0004336 proximal phalanx of pedal digit 5 12 17242 -UBERON:0014501 proximal phalanx of digit 1 11 17243 -UBERON:0004332 proximal phalanx of pedal digit 1 12 17244 -UBERON:0004338 proximal phalanx of manual digit 1 12 17245 -UBERON:0014502 proximal phalanx of digit 2 11 17246 -UBERON:0004328 proximal phalanx of manual digit 2 12 17247 -UBERON:0004333 proximal phalanx of pedal digit 2 12 17248 -UBERON:0014503 proximal phalanx of digit 3 11 17249 -UBERON:0004329 proximal phalanx of manual digit 3 12 17250 -UBERON:0004334 proximal phalanx of pedal digit 3 12 17251 -UBERON:0009556 long pastern bone 12 17252 -UBERON:0014504 proximal phalanx of digit 4 11 17253 -UBERON:0004330 proximal phalanx of manual digit 4 12 17254 -UBERON:0004335 proximal phalanx of pedal digit 4 12 17255 -UBERON:0014505 proximal phalanx of digit 5 11 17256 -UBERON:0004331 proximal phalanx of manual digit 5 12 17257 -UBERON:0004336 proximal phalanx of pedal digit 5 12 17258 -UBERON:0009558 pastern bone 10 17259 -UBERON:0009555 short pastern bone 11 17260 -UBERON:0009556 long pastern bone 11 17261 -UBERON:0018266 third phalanx 10 17262 -UBERON:0018322 fourth phalanx 10 17263 -UBERON:4100005 second phalanx 10 17264 -UBERON:0003607 forelimb long bone 9 17265 -UBERON:0000976 humerus 10 17266 -UBERON:0001423 radius bone 10 17267 -UBERON:0001424 ulna 10 17268 -UBERON:0001436 phalanx of manus 10 17269 -UBERON:0002234 proximal phalanx of manus 11 17270 -UBERON:0004328 proximal phalanx of manual digit 2 12 17271 -UBERON:0004329 proximal phalanx of manual digit 3 12 17272 -UBERON:0004330 proximal phalanx of manual digit 4 12 17273 -UBERON:0004331 proximal phalanx of manual digit 5 12 17274 -UBERON:0004338 proximal phalanx of manual digit 1 12 17275 -UBERON:0003620 manual digit 1 phalanx 11 17276 -UBERON:0004337 distal phalanx of manual digit 1 12 17277 -UBERON:0004338 proximal phalanx of manual digit 1 12 17278 -UBERON:4200219 middle phalanx of manual digit 1 12 17279 -UBERON:0003636 manual digit 2 phalanx 11 17280 -UBERON:0004311 distal phalanx of manual digit 2 12 17281 -UBERON:0004320 middle phalanx of manual digit 2 12 17282 -UBERON:0004328 proximal phalanx of manual digit 2 12 17283 -UBERON:0003637 manual digit 3 phalanx 11 17284 -UBERON:0004312 distal phalanx of manual digit 3 12 17285 -UBERON:0004321 middle phalanx of manual digit 3 12 17286 -UBERON:0004329 proximal phalanx of manual digit 3 12 17287 -UBERON:0003638 manual digit 4 phalanx 11 17288 -UBERON:0004313 distal phalanx of manual digit 4 12 17289 -UBERON:0004322 middle phalanx of manual digit 4 12 17290 -UBERON:0004330 proximal phalanx of manual digit 4 12 17291 -UBERON:0003639 manual digit 5 phalanx 11 17292 -UBERON:0004314 distal phalanx of manual digit 5 12 17293 -UBERON:0004323 middle phalanx of manual digit 5 12 17294 -UBERON:0004331 proximal phalanx of manual digit 5 12 17295 -UBERON:0003864 middle phalanx of manus 11 17296 -UBERON:0004320 middle phalanx of manual digit 2 12 17297 -UBERON:0004321 middle phalanx of manual digit 3 12 17298 -UBERON:0004322 middle phalanx of manual digit 4 12 17299 -UBERON:0004323 middle phalanx of manual digit 5 12 17300 -UBERON:4200219 middle phalanx of manual digit 1 12 17301 -UBERON:0003865 distal phalanx of manus 11 17302 -UBERON:0004311 distal phalanx of manual digit 2 12 17303 -UBERON:0004312 distal phalanx of manual digit 3 12 17304 -UBERON:0004313 distal phalanx of manual digit 4 12 17305 -UBERON:0004314 distal phalanx of manual digit 5 12 17306 -UBERON:0004337 distal phalanx of manual digit 1 12 17307 -UBERON:0002374 metacarpal bone 10 17308 -UBERON:0003645 metacarpal bone of digit 1 11 17309 -UBERON:0003646 metacarpal bone of digit 2 11 17310 -UBERON:0003647 metacarpal bone of digit 3 11 17311 -UBERON:0003648 metacarpal bone of digit 4 11 17312 -UBERON:0003649 metacarpal bone of digit 5 11 17313 -UBERON:0013587 fused metacarpal bones 3 and 4 11 17314 -UBERON:0012268 equine forelimb splint bone 10 17315 -UBERON:0003608 hindlimb long bone 9 17316 -UBERON:0000979 tibia 10 17317 -UBERON:0000981 femur 10 17318 -UBERON:0001446 fibula 10 17319 -UBERON:0001448 metatarsal bone 10 17320 -UBERON:0003650 metatarsal bone of digit 1 11 17321 -UBERON:0003651 metatarsal bone of digit 2 11 17322 -UBERON:0003652 metatarsal bone of digit 3 11 17323 -UBERON:0003653 metatarsal bone of digit 4 11 17324 -UBERON:0003654 metatarsal bone of digit 5 11 17325 -UBERON:0013588 fused metatarsal bones 3 and 4 11 17326 -UBERON:0014763 fused metatarsal bones 2-4 12 17327 -UBERON:4200153 metatarsal bone of digit 6 11 17328 -UBERON:4200157 metatarsal bone of digit 7 11 17329 -UBERON:4200158 metatarsal bone of digit 8 11 17330 -UBERON:0001449 phalanx of pes 10 17331 -UBERON:0003640 pedal digit 1 phalanx 11 17332 -UBERON:0004315 distal phalanx of pedal digit 1 12 17333 -UBERON:0004332 proximal phalanx of pedal digit 1 12 17334 -UBERON:0003641 pedal digit 2 phalanx 11 17335 -UBERON:0004316 distal phalanx of pedal digit 2 12 17336 -UBERON:0004324 middle phalanx of pedal digit 2 12 17337 -UBERON:0004333 proximal phalanx of pedal digit 2 12 17338 -UBERON:0003642 pedal digit 3 phalanx 11 17339 -UBERON:0004317 distal phalanx of pedal digit 3 12 17340 -UBERON:0004325 middle phalanx of pedal digit 3 12 17341 -UBERON:0004334 proximal phalanx of pedal digit 3 12 17342 -UBERON:0003862 pedal digit 4 phalanx 11 17343 -UBERON:0004318 distal phalanx of pedal digit 4 12 17344 -UBERON:0004326 middle phalanx of pedal digit 4 12 17345 -UBERON:0004335 proximal phalanx of pedal digit 4 12 17346 -UBERON:0003863 pedal digit 5 phalanx 11 17347 -UBERON:0004319 distal phalanx of pedal digit 5 12 17348 -UBERON:0004327 middle phalanx of pedal digit 5 12 17349 -UBERON:0004336 proximal phalanx of pedal digit 5 12 17350 -UBERON:0003866 middle phalanx of pes 11 17351 -UBERON:0004324 middle phalanx of pedal digit 2 12 17352 -UBERON:0004325 middle phalanx of pedal digit 3 12 17353 -UBERON:0004326 middle phalanx of pedal digit 4 12 17354 -UBERON:0004327 middle phalanx of pedal digit 5 12 17355 -UBERON:0003867 distal phalanx of pes 11 17356 -UBERON:0004315 distal phalanx of pedal digit 1 12 17357 -UBERON:0004316 distal phalanx of pedal digit 2 12 17358 -UBERON:0004317 distal phalanx of pedal digit 3 12 17359 -UBERON:0004318 distal phalanx of pedal digit 4 12 17360 -UBERON:0004319 distal phalanx of pedal digit 5 12 17361 -UBERON:0003868 proximal phalanx of pes 11 17362 -UBERON:0004332 proximal phalanx of pedal digit 1 12 17363 -UBERON:0004333 proximal phalanx of pedal digit 2 12 17364 -UBERON:0004334 proximal phalanx of pedal digit 3 12 17365 -UBERON:0004335 proximal phalanx of pedal digit 4 12 17366 -UBERON:0004336 proximal phalanx of pedal digit 5 12 17367 -UBERON:4100009 pedal digit 7 phalanx 11 17368 -UBERON:0012269 equine hindlimb splint bone 10 17369 -UBERON:0003821 metapodium bone 9 17370 -UBERON:0001448 metatarsal bone 10 17371 -UBERON:0003650 metatarsal bone of digit 1 11 17372 -UBERON:0003651 metatarsal bone of digit 2 11 17373 -UBERON:0003652 metatarsal bone of digit 3 11 17374 -UBERON:0003653 metatarsal bone of digit 4 11 17375 -UBERON:0003654 metatarsal bone of digit 5 11 17376 -UBERON:0013588 fused metatarsal bones 3 and 4 11 17377 -UBERON:0014763 fused metatarsal bones 2-4 12 17378 -UBERON:4200153 metatarsal bone of digit 6 11 17379 -UBERON:4200157 metatarsal bone of digit 7 11 17380 -UBERON:4200158 metatarsal bone of digit 8 11 17381 -UBERON:0002374 metacarpal bone 10 17382 -UBERON:0003645 metacarpal bone of digit 1 11 17383 -UBERON:0003646 metacarpal bone of digit 2 11 17384 -UBERON:0003647 metacarpal bone of digit 3 11 17385 -UBERON:0003648 metacarpal bone of digit 4 11 17386 -UBERON:0003649 metacarpal bone of digit 5 11 17387 -UBERON:0013587 fused metacarpal bones 3 and 4 11 17388 -UBERON:0012267 equine splint bone 10 17389 -UBERON:0012268 equine forelimb splint bone 11 17390 -UBERON:0012269 equine hindlimb splint bone 11 17391 -UBERON:0013581 metapodium bone 1 10 17392 -UBERON:0003645 metacarpal bone of digit 1 11 17393 -UBERON:0003650 metatarsal bone of digit 1 11 17394 -UBERON:0013582 metapodium bone 2 10 17395 -UBERON:0003646 metacarpal bone of digit 2 11 17396 -UBERON:0003651 metatarsal bone of digit 2 11 17397 -UBERON:0013583 metapodium bone 3 10 17398 -UBERON:0003647 metacarpal bone of digit 3 11 17399 -UBERON:0003652 metatarsal bone of digit 3 11 17400 -UBERON:0013584 metapodium bone 4 10 17401 -UBERON:0003648 metacarpal bone of digit 4 11 17402 -UBERON:0003653 metatarsal bone of digit 4 11 17403 -UBERON:0013585 metapodium bone 5 10 17404 -UBERON:0003649 metacarpal bone of digit 5 11 17405 -UBERON:0003654 metatarsal bone of digit 5 11 17406 -UBERON:0013586 fused metapodial bones 3 and 4 10 17407 -UBERON:0013587 fused metacarpal bones 3 and 4 11 17408 -UBERON:0013588 fused metatarsal bones 3 and 4 11 17409 -UBERON:0014763 fused metatarsal bones 2-4 12 17410 -UBERON:0014762 fused metapodial bones 2-4 11 17411 -UBERON:0014763 fused metatarsal bones 2-4 12 17412 -UBERON:4200154 metapodium bone 6 10 17413 -UBERON:4200153 metatarsal bone of digit 6 11 17414 -UBERON:4200155 metapodium bone 7 10 17415 -UBERON:4200157 metatarsal bone of digit 7 11 17416 -UBERON:4200156 metapodium bone 8 10 17417 -UBERON:4200158 metatarsal bone of digit 8 11 17418 -UBERON:0002513 endochondral bone 7 17419 -UBERON:0001075 bony vertebral centrum 8 17420 -UBERON:2001983 centrum 1 9 17421 -UBERON:2001984 centrum 2 9 17422 -UBERON:2001985 centrum 3 9 17423 -UBERON:2001986 centrum 4 9 17424 -UBERON:2001987 centrum 5 9 17425 -UBERON:2001988 centrum 6 9 17426 -UBERON:2002058 Weberian complex centrum 9 17427 -UBERON:3000711 procoelous 9 17428 -UBERON:3000712 opisthocoelous 9 17429 -UBERON:3000713 epichordal 9 17430 -UBERON:3000714 perichordal 9 17431 -UBERON:3000715 heterocoelous 9 17432 -UBERON:3000716 acoelous 9 17433 -UBERON:3000717 amphicoelous 9 17434 -UBERON:3000718 ectochordal 9 17435 -UBERON:3000719 holochordal 9 17436 -UBERON:3000720 stegochordal 9 17437 -UBERON:3000793 anomocoelous 9 17438 -UBERON:3000794 displasiocoelous 9 17439 -UBERON:4200194 intercentrum 9 17440 -UBERON:4200196 atlas intercentrum 10 17441 -UBERON:4300124 axis intercentrum 10 17442 -UBERON:4200195 pleurocentrum 9 17443 -UBERON:0001273 ilium 8 17444 -UBERON:4200220 iliac ramus 9 17445 -UBERON:0001274 ischium 8 17446 -UBERON:0001275 pubis 8 17447 -UBERON:0001677 sphenoid bone 8 17448 -UBERON:0001679 ethmoid bone 8 17449 -UBERON:0001687 stapes bone 8 17450 -UBERON:0001688 incus bone 8 17451 -UBERON:0001689 malleus bone 8 17452 -UBERON:0001692 basioccipital bone 8 17453 -UBERON:0001693 exoccipital bone 8 17454 -UBERON:0001762 turbinate bone 8 17455 -UBERON:0003973 nasal concha of ethmoid bone 9 17456 -UBERON:0005919 supreme nasal concha 10 17457 -UBERON:0005920 superior nasal concha 10 17458 -UBERON:0005921 middle nasal concha 10 17459 -UBERON:0005922 inferior nasal concha 9 17460 -UBERON:0002208 sternebra 8 17461 -UBERON:0002228 rib 8 17462 -UBERON:0002237 true rib 9 17463 -UBERON:0002238 false rib 9 17464 -UBERON:0002239 floating rib 10 17465 -UBERON:0004601 rib 1 9 17466 -UBERON:0004602 rib 2 9 17467 -UBERON:0004603 rib 3 9 17468 -UBERON:0004604 rib 4 9 17469 -UBERON:0004605 rib 5 9 17470 -UBERON:0004606 rib 6 9 17471 -UBERON:0004607 rib 7 9 17472 -UBERON:0004608 rib 9 9 17473 -UBERON:0004609 rib 10 9 17474 -UBERON:0004610 rib 11 9 17475 -UBERON:0004611 rib 12 9 17476 -UBERON:0010757 rib 8 9 17477 -UBERON:0018144 cervical rib 9 17478 -UBERON:0018145 lumbar rib 9 17479 -UBERON:2001750 rib of vertebra 6 9 17480 -UBERON:2001751 rib of vertebra 5 9 17481 -UBERON:2001878 rib of vertebra 2 9 17482 -UBERON:2001879 rib of vertebra 1 9 17483 -UBERON:2001880 rib of vertebra 3 9 17484 -UBERON:2001881 rib of vertebra 4 9 17485 -UBERON:4100117 presacral rib 9 17486 -UBERON:4100118 trunk rib 9 17487 -UBERON:4300128 sacral rib 9 17488 -UBERON:4300236 rib of vertebra 7 9 17489 -UBERON:4300237 rib of vertebra 8 9 17490 -UBERON:0002412 vertebra 8 17491 -UBERON:0001092 vertebral bone 1 9 17492 -UBERON:0001093 vertebral bone 2 9 17493 -UBERON:0001094 sacral vertebra 9 17494 -UBERON:0004622 sacral vertebra 1 10 17495 -UBERON:0004623 sacral vertebra 2 10 17496 -UBERON:0004624 sacral vertebra 3 10 17497 -UBERON:0004625 sacral vertebra 4 10 17498 -UBERON:0001095 caudal vertebra 9 17499 -UBERON:2000734 preural vertebra 10 17500 -UBERON:2000557 preural 1 vertebra 11 17501 -UBERON:2000586 preural 2 vertebra 11 17502 -UBERON:2002112 preural 3 vertebra 11 17503 -UBERON:2002162 ural vertebra 10 17504 -UBERON:2001579 ural vertebra 2 11 17505 -UBERON:2002163 ural vertebra 1 11 17506 -UBERON:4300105 caudal vertebra 1 10 17507 -UBERON:0002347 thoracic vertebra 9 17508 -UBERON:0004626 thoracic vertebra 1 10 17509 -UBERON:0004627 thoracic vertebra 2 10 17510 -UBERON:0004628 thoracic vertebra 3 10 17511 -UBERON:0004629 thoracic vertebra 4 10 17512 -UBERON:0004630 thoracic vertebra 5 10 17513 -UBERON:0004631 thoracic vertebra 6 10 17514 -UBERON:0004632 thoracic vertebra 7 10 17515 -UBERON:0004633 thoracic vertebra 9 10 17516 -UBERON:0004634 thoracic vertebra 10 10 17517 -UBERON:0004635 thoracic vertebra 11 10 17518 -UBERON:0004636 thoracic vertebra 12 10 17519 -UBERON:0011050 thoracic vertebra 8 10 17520 -UBERON:0002414 lumbar vertebra 9 17521 -UBERON:0004617 lumbar vertebra 1 10 17522 -UBERON:0004618 lumbar vertebra 2 10 17523 -UBERON:0004619 lumbar vertebra 3 10 17524 -UBERON:0004620 lumbar vertebra 4 10 17525 -UBERON:0004621 lumbar vertebra 5 10 17526 -UBERON:0004451 trunk or cervical vertebra 9 17527 -UBERON:0002413 cervical vertebra 10 17528 -UBERON:0004612 mammalian cervical vertebra 3 11 17529 -UBERON:0004613 mammalian cervical vertebra 4 11 17530 -UBERON:0004614 mammalian cervical vertebra 5 11 17531 -UBERON:0004615 mammalian cervical vertebra 6 11 17532 -UBERON:0004616 mammalian cervical vertebra 7 11 17533 -UBERON:0007800 proatlas 11 17534 -UBERON:0011677 trunk vertebra 10 17535 -UBERON:0035083 transverse process-bearing vertebra 9 17536 -UBERON:0035084 non-transverse process-bearing vertebra 9 17537 -UBERON:2002061 predorsal vertebra 9 17538 -UBERON:4300223 precaudal vertebra 9 17539 -UBERON:2001190 Weberian vertebra 10 17540 -UBERON:2001582 non-Weberian precaudal vertebra 10 17541 -UBERON:0002428 limb bone 8 17542 -UBERON:0003464 hindlimb bone 9 17543 -UBERON:0003608 hindlimb long bone 10 17544 -UBERON:0000979 tibia 11 17545 -UBERON:0000981 femur 11 17546 -UBERON:0001446 fibula 11 17547 -UBERON:0001448 metatarsal bone 11 17548 -UBERON:0003650 metatarsal bone of digit 1 12 17549 -UBERON:0003651 metatarsal bone of digit 2 12 17550 -UBERON:0003652 metatarsal bone of digit 3 12 17551 -UBERON:0003653 metatarsal bone of digit 4 12 17552 -UBERON:0003654 metatarsal bone of digit 5 12 17553 -UBERON:0013588 fused metatarsal bones 3 and 4 12 17554 -UBERON:0014763 fused metatarsal bones 2-4 13 17555 -UBERON:4200153 metatarsal bone of digit 6 12 17556 -UBERON:4200157 metatarsal bone of digit 7 12 17557 -UBERON:4200158 metatarsal bone of digit 8 12 17558 -UBERON:0001449 phalanx of pes 11 17559 -UBERON:0003640 pedal digit 1 phalanx 12 17560 -UBERON:0004315 distal phalanx of pedal digit 1 13 17561 -UBERON:0004332 proximal phalanx of pedal digit 1 13 17562 -UBERON:0003641 pedal digit 2 phalanx 12 17563 -UBERON:0004316 distal phalanx of pedal digit 2 13 17564 -UBERON:0004324 middle phalanx of pedal digit 2 13 17565 -UBERON:0004333 proximal phalanx of pedal digit 2 13 17566 -UBERON:0003642 pedal digit 3 phalanx 12 17567 -UBERON:0004317 distal phalanx of pedal digit 3 13 17568 -UBERON:0004325 middle phalanx of pedal digit 3 13 17569 -UBERON:0004334 proximal phalanx of pedal digit 3 13 17570 -UBERON:0003862 pedal digit 4 phalanx 12 17571 -UBERON:0004318 distal phalanx of pedal digit 4 13 17572 -UBERON:0004326 middle phalanx of pedal digit 4 13 17573 -UBERON:0004335 proximal phalanx of pedal digit 4 13 17574 -UBERON:0003863 pedal digit 5 phalanx 12 17575 -UBERON:0004319 distal phalanx of pedal digit 5 13 17576 -UBERON:0004327 middle phalanx of pedal digit 5 13 17577 -UBERON:0004336 proximal phalanx of pedal digit 5 13 17578 -UBERON:0003866 middle phalanx of pes 12 17579 -UBERON:0004324 middle phalanx of pedal digit 2 13 17580 -UBERON:0004325 middle phalanx of pedal digit 3 13 17581 -UBERON:0004326 middle phalanx of pedal digit 4 13 17582 -UBERON:0004327 middle phalanx of pedal digit 5 13 17583 -UBERON:0003867 distal phalanx of pes 12 17584 -UBERON:0004315 distal phalanx of pedal digit 1 13 17585 -UBERON:0004316 distal phalanx of pedal digit 2 13 17586 -UBERON:0004317 distal phalanx of pedal digit 3 13 17587 -UBERON:0004318 distal phalanx of pedal digit 4 13 17588 -UBERON:0004319 distal phalanx of pedal digit 5 13 17589 -UBERON:0003868 proximal phalanx of pes 12 17590 -UBERON:0004332 proximal phalanx of pedal digit 1 13 17591 -UBERON:0004333 proximal phalanx of pedal digit 2 13 17592 -UBERON:0004334 proximal phalanx of pedal digit 3 13 17593 -UBERON:0004335 proximal phalanx of pedal digit 4 13 17594 -UBERON:0004336 proximal phalanx of pedal digit 5 13 17595 -UBERON:4100009 pedal digit 7 phalanx 12 17596 -UBERON:0012269 equine hindlimb splint bone 11 17597 -UBERON:0005893 leg bone 10 17598 -UBERON:0002446 patella 11 17599 -UBERON:0003826 upper leg bone 11 17600 -UBERON:0000981 femur 12 17601 -UBERON:0004251 hindlimb zeugopod bone 11 17602 -UBERON:0000979 tibia 12 17603 -UBERON:0001446 fibula 12 17604 -UBERON:0003467 sesamoid bone of gastrocnemius 12 17605 -UBERON:0006714 tibiofibula 12 17606 -UBERON:0010907 parafibula 12 17607 -UBERON:0012104 sesamoid bone of the peroneus longus muscle 12 17608 -UBERON:0005899 pes bone 10 17609 -UBERON:0001447 tarsal bone 11 17610 -UBERON:0001451 navicular bone of pes 12 17611 -UBERON:0006836 medial tibial tarsal bone 12 17612 -UBERON:0010721 distal tarsal bone 12 17613 -UBERON:0001452 distal tarsal bone 1 13 17614 -UBERON:0001453 distal tarsal bone 2 13 17615 -UBERON:0001454 distal tarsal bone 3 13 17616 -UBERON:0001455 cuboid bone 13 17617 -UBERON:0010723 os vesalianum pedis 13 17618 -UBERON:0010737 distal tarsal bone 4 13 17619 -UBERON:0010738 distal tarsal bone 5 13 17620 -UBERON:0012289 fused tarsal bones 2 and 3 13 17621 -UBERON:0013649 fused tarsal bones 1 and 2 13 17622 -UBERON:3001002 basale commune (tarsal) 13 17623 -UBERON:0011679 proximal tarsal bone 12 17624 -UBERON:0001450 calcaneus 13 17625 -UBERON:0002395 talus 13 17626 -UBERON:0011678 hindlimb intermedium bone 13 17627 -UBERON:0012126 fibulare 13 17628 -UBERON:0012288 centroquartal bone 12 17629 -UBERON:3010045 centrale 1 12 17630 -UBERON:3010073 centrale 2 12 17631 -UBERON:4200011 pedal centrale 12 17632 -UBERON:4200152 intertarsale sesamoid 12 17633 -UBERON:0008000 sesamoid bone of pes 11 17634 -UBERON:0007990 proximal sesamoid bone of pes 12 17635 -UBERON:4200152 intertarsale sesamoid 12 17636 -UBERON:0008195 tarsometatarsus 11 17637 -UBERON:0010725 accessory navicular bone 11 17638 -UBERON:0012359 pedal digitopodium bone 11 17639 -UBERON:0001448 metatarsal bone 12 17640 -UBERON:0003650 metatarsal bone of digit 1 13 17641 -UBERON:0003651 metatarsal bone of digit 2 13 17642 -UBERON:0003652 metatarsal bone of digit 3 13 17643 -UBERON:0003653 metatarsal bone of digit 4 13 17644 -UBERON:0003654 metatarsal bone of digit 5 13 17645 -UBERON:0013588 fused metatarsal bones 3 and 4 13 17646 -UBERON:0014763 fused metatarsal bones 2-4 14 17647 -UBERON:4200153 metatarsal bone of digit 6 13 17648 -UBERON:4200157 metatarsal bone of digit 7 13 17649 -UBERON:4200158 metatarsal bone of digit 8 13 17650 -UBERON:0004248 pedal digit bone 12 17651 -UBERON:0001449 phalanx of pes 13 17652 -UBERON:0003640 pedal digit 1 phalanx 14 17653 -UBERON:0004315 distal phalanx of pedal digit 1 15 17654 -UBERON:0004332 proximal phalanx of pedal digit 1 15 17655 -UBERON:0003641 pedal digit 2 phalanx 14 17656 -UBERON:0004316 distal phalanx of pedal digit 2 15 17657 -UBERON:0004324 middle phalanx of pedal digit 2 15 17658 -UBERON:0004333 proximal phalanx of pedal digit 2 15 17659 -UBERON:0003642 pedal digit 3 phalanx 14 17660 -UBERON:0004317 distal phalanx of pedal digit 3 15 17661 -UBERON:0004325 middle phalanx of pedal digit 3 15 17662 -UBERON:0004334 proximal phalanx of pedal digit 3 15 17663 -UBERON:0003862 pedal digit 4 phalanx 14 17664 -UBERON:0004318 distal phalanx of pedal digit 4 15 17665 -UBERON:0004326 middle phalanx of pedal digit 4 15 17666 -UBERON:0004335 proximal phalanx of pedal digit 4 15 17667 -UBERON:0003863 pedal digit 5 phalanx 14 17668 -UBERON:0004319 distal phalanx of pedal digit 5 15 17669 -UBERON:0004327 middle phalanx of pedal digit 5 15 17670 -UBERON:0004336 proximal phalanx of pedal digit 5 15 17671 -UBERON:0003866 middle phalanx of pes 14 17672 -UBERON:0004324 middle phalanx of pedal digit 2 15 17673 -UBERON:0004325 middle phalanx of pedal digit 3 15 17674 -UBERON:0004326 middle phalanx of pedal digit 4 15 17675 -UBERON:0004327 middle phalanx of pedal digit 5 15 17676 -UBERON:0003867 distal phalanx of pes 14 17677 -UBERON:0004315 distal phalanx of pedal digit 1 15 17678 -UBERON:0004316 distal phalanx of pedal digit 2 15 17679 -UBERON:0004317 distal phalanx of pedal digit 3 15 17680 -UBERON:0004318 distal phalanx of pedal digit 4 15 17681 -UBERON:0004319 distal phalanx of pedal digit 5 15 17682 -UBERON:0003868 proximal phalanx of pes 14 17683 -UBERON:0004332 proximal phalanx of pedal digit 1 15 17684 -UBERON:0004333 proximal phalanx of pedal digit 2 15 17685 -UBERON:0004334 proximal phalanx of pedal digit 3 15 17686 -UBERON:0004335 proximal phalanx of pedal digit 4 15 17687 -UBERON:0004336 proximal phalanx of pedal digit 5 15 17688 -UBERON:4100009 pedal digit 7 phalanx 14 17689 -UBERON:0007990 proximal sesamoid bone of pes 13 17690 -UBERON:3000931 intercalary element of hind digit 13 17691 -UBERON:3010675 bony nodule of terminal phalanx of hind digit 13 17692 -UBERON:0012269 equine hindlimb splint bone 12 17693 -UBERON:0008194 tibiotarsus 10 17694 -UBERON:0003606 limb long bone 9 17695 -UBERON:0003221 phalanx 10 17696 -UBERON:0001436 phalanx of manus 11 17697 -UBERON:0002234 proximal phalanx of manus 12 17698 -UBERON:0004328 proximal phalanx of manual digit 2 13 17699 -UBERON:0004329 proximal phalanx of manual digit 3 13 17700 -UBERON:0004330 proximal phalanx of manual digit 4 13 17701 -UBERON:0004331 proximal phalanx of manual digit 5 13 17702 -UBERON:0004338 proximal phalanx of manual digit 1 13 17703 -UBERON:0003620 manual digit 1 phalanx 12 17704 -UBERON:0004337 distal phalanx of manual digit 1 13 17705 -UBERON:0004338 proximal phalanx of manual digit 1 13 17706 -UBERON:4200219 middle phalanx of manual digit 1 13 17707 -UBERON:0003636 manual digit 2 phalanx 12 17708 -UBERON:0004311 distal phalanx of manual digit 2 13 17709 -UBERON:0004320 middle phalanx of manual digit 2 13 17710 -UBERON:0004328 proximal phalanx of manual digit 2 13 17711 -UBERON:0003637 manual digit 3 phalanx 12 17712 -UBERON:0004312 distal phalanx of manual digit 3 13 17713 -UBERON:0004321 middle phalanx of manual digit 3 13 17714 -UBERON:0004329 proximal phalanx of manual digit 3 13 17715 -UBERON:0003638 manual digit 4 phalanx 12 17716 -UBERON:0004313 distal phalanx of manual digit 4 13 17717 -UBERON:0004322 middle phalanx of manual digit 4 13 17718 -UBERON:0004330 proximal phalanx of manual digit 4 13 17719 -UBERON:0003639 manual digit 5 phalanx 12 17720 -UBERON:0004314 distal phalanx of manual digit 5 13 17721 -UBERON:0004323 middle phalanx of manual digit 5 13 17722 -UBERON:0004331 proximal phalanx of manual digit 5 13 17723 -UBERON:0003864 middle phalanx of manus 12 17724 -UBERON:0004320 middle phalanx of manual digit 2 13 17725 -UBERON:0004321 middle phalanx of manual digit 3 13 17726 -UBERON:0004322 middle phalanx of manual digit 4 13 17727 -UBERON:0004323 middle phalanx of manual digit 5 13 17728 -UBERON:4200219 middle phalanx of manual digit 1 13 17729 -UBERON:0003865 distal phalanx of manus 12 17730 -UBERON:0004311 distal phalanx of manual digit 2 13 17731 -UBERON:0004312 distal phalanx of manual digit 3 13 17732 -UBERON:0004313 distal phalanx of manual digit 4 13 17733 -UBERON:0004314 distal phalanx of manual digit 5 13 17734 -UBERON:0004337 distal phalanx of manual digit 1 13 17735 -UBERON:0001449 phalanx of pes 11 17736 -UBERON:0003640 pedal digit 1 phalanx 12 17737 -UBERON:0004315 distal phalanx of pedal digit 1 13 17738 -UBERON:0004332 proximal phalanx of pedal digit 1 13 17739 -UBERON:0003641 pedal digit 2 phalanx 12 17740 -UBERON:0004316 distal phalanx of pedal digit 2 13 17741 -UBERON:0004324 middle phalanx of pedal digit 2 13 17742 -UBERON:0004333 proximal phalanx of pedal digit 2 13 17743 -UBERON:0003642 pedal digit 3 phalanx 12 17744 -UBERON:0004317 distal phalanx of pedal digit 3 13 17745 -UBERON:0004325 middle phalanx of pedal digit 3 13 17746 -UBERON:0004334 proximal phalanx of pedal digit 3 13 17747 -UBERON:0003862 pedal digit 4 phalanx 12 17748 -UBERON:0004318 distal phalanx of pedal digit 4 13 17749 -UBERON:0004326 middle phalanx of pedal digit 4 13 17750 -UBERON:0004335 proximal phalanx of pedal digit 4 13 17751 -UBERON:0003863 pedal digit 5 phalanx 12 17752 -UBERON:0004319 distal phalanx of pedal digit 5 13 17753 -UBERON:0004327 middle phalanx of pedal digit 5 13 17754 -UBERON:0004336 proximal phalanx of pedal digit 5 13 17755 -UBERON:0003866 middle phalanx of pes 12 17756 -UBERON:0004324 middle phalanx of pedal digit 2 13 17757 -UBERON:0004325 middle phalanx of pedal digit 3 13 17758 -UBERON:0004326 middle phalanx of pedal digit 4 13 17759 -UBERON:0004327 middle phalanx of pedal digit 5 13 17760 -UBERON:0003867 distal phalanx of pes 12 17761 -UBERON:0004315 distal phalanx of pedal digit 1 13 17762 -UBERON:0004316 distal phalanx of pedal digit 2 13 17763 -UBERON:0004317 distal phalanx of pedal digit 3 13 17764 -UBERON:0004318 distal phalanx of pedal digit 4 13 17765 -UBERON:0004319 distal phalanx of pedal digit 5 13 17766 -UBERON:0003868 proximal phalanx of pes 12 17767 -UBERON:0004332 proximal phalanx of pedal digit 1 13 17768 -UBERON:0004333 proximal phalanx of pedal digit 2 13 17769 -UBERON:0004334 proximal phalanx of pedal digit 3 13 17770 -UBERON:0004335 proximal phalanx of pedal digit 4 13 17771 -UBERON:0004336 proximal phalanx of pedal digit 5 13 17772 -UBERON:4100009 pedal digit 7 phalanx 12 17773 -UBERON:0004300 distal phalanx 11 17774 -UBERON:0003865 distal phalanx of manus 12 17775 -UBERON:0004311 distal phalanx of manual digit 2 13 17776 -UBERON:0004312 distal phalanx of manual digit 3 13 17777 -UBERON:0004313 distal phalanx of manual digit 4 13 17778 -UBERON:0004314 distal phalanx of manual digit 5 13 17779 -UBERON:0004337 distal phalanx of manual digit 1 13 17780 -UBERON:0003867 distal phalanx of pes 12 17781 -UBERON:0004315 distal phalanx of pedal digit 1 13 17782 -UBERON:0004316 distal phalanx of pedal digit 2 13 17783 -UBERON:0004317 distal phalanx of pedal digit 3 13 17784 -UBERON:0004318 distal phalanx of pedal digit 4 13 17785 -UBERON:0004319 distal phalanx of pedal digit 5 13 17786 -UBERON:0014483 distal phalanx of digit 1 12 17787 -UBERON:0004315 distal phalanx of pedal digit 1 13 17788 -UBERON:0004337 distal phalanx of manual digit 1 13 17789 -UBERON:0014484 distal phalanx of digit 2 12 17790 -UBERON:0004311 distal phalanx of manual digit 2 13 17791 -UBERON:0004316 distal phalanx of pedal digit 2 13 17792 -UBERON:0014485 distal phalanx of digit 3 12 17793 -UBERON:0004312 distal phalanx of manual digit 3 13 17794 -UBERON:0004317 distal phalanx of pedal digit 3 13 17795 -UBERON:0014486 distal phalanx of digit 4 12 17796 -UBERON:0004313 distal phalanx of manual digit 4 13 17797 -UBERON:0004318 distal phalanx of pedal digit 4 13 17798 -UBERON:0014487 distal phalanx of digit 5 12 17799 -UBERON:0004314 distal phalanx of manual digit 5 13 17800 -UBERON:0004319 distal phalanx of pedal digit 5 13 17801 -UBERON:3010746 T-shaped terminal phalanx 12 17802 -UBERON:0004301 middle phalanx 11 17803 -UBERON:0003864 middle phalanx of manus 12 17804 -UBERON:0004320 middle phalanx of manual digit 2 13 17805 -UBERON:0004321 middle phalanx of manual digit 3 13 17806 -UBERON:0004322 middle phalanx of manual digit 4 13 17807 -UBERON:0004323 middle phalanx of manual digit 5 13 17808 -UBERON:4200219 middle phalanx of manual digit 1 13 17809 -UBERON:0003866 middle phalanx of pes 12 17810 -UBERON:0004324 middle phalanx of pedal digit 2 13 17811 -UBERON:0004325 middle phalanx of pedal digit 3 13 17812 -UBERON:0004326 middle phalanx of pedal digit 4 13 17813 -UBERON:0004327 middle phalanx of pedal digit 5 13 17814 -UBERON:0014488 middle phalanx of digit 2 12 17815 -UBERON:0004320 middle phalanx of manual digit 2 13 17816 -UBERON:0004324 middle phalanx of pedal digit 2 13 17817 -UBERON:0014489 middle phalanx of digit 3 12 17818 -UBERON:0004321 middle phalanx of manual digit 3 13 17819 -UBERON:0004325 middle phalanx of pedal digit 3 13 17820 -UBERON:0009555 short pastern bone 13 17821 -UBERON:0014490 middle phalanx of digit 4 12 17822 -UBERON:0004322 middle phalanx of manual digit 4 13 17823 -UBERON:0004326 middle phalanx of pedal digit 4 13 17824 -UBERON:0014491 middle phalanx of digit 5 12 17825 -UBERON:0004323 middle phalanx of manual digit 5 13 17826 -UBERON:0004327 middle phalanx of pedal digit 5 13 17827 -UBERON:0004302 proximal phalanx 11 17828 -UBERON:0002234 proximal phalanx of manus 12 17829 -UBERON:0004328 proximal phalanx of manual digit 2 13 17830 -UBERON:0004329 proximal phalanx of manual digit 3 13 17831 -UBERON:0004330 proximal phalanx of manual digit 4 13 17832 -UBERON:0004331 proximal phalanx of manual digit 5 13 17833 -UBERON:0004338 proximal phalanx of manual digit 1 13 17834 -UBERON:0003868 proximal phalanx of pes 12 17835 -UBERON:0004332 proximal phalanx of pedal digit 1 13 17836 -UBERON:0004333 proximal phalanx of pedal digit 2 13 17837 -UBERON:0004334 proximal phalanx of pedal digit 3 13 17838 -UBERON:0004335 proximal phalanx of pedal digit 4 13 17839 -UBERON:0004336 proximal phalanx of pedal digit 5 13 17840 -UBERON:0014501 proximal phalanx of digit 1 12 17841 -UBERON:0004332 proximal phalanx of pedal digit 1 13 17842 -UBERON:0004338 proximal phalanx of manual digit 1 13 17843 -UBERON:0014502 proximal phalanx of digit 2 12 17844 -UBERON:0004328 proximal phalanx of manual digit 2 13 17845 -UBERON:0004333 proximal phalanx of pedal digit 2 13 17846 -UBERON:0014503 proximal phalanx of digit 3 12 17847 -UBERON:0004329 proximal phalanx of manual digit 3 13 17848 -UBERON:0004334 proximal phalanx of pedal digit 3 13 17849 -UBERON:0009556 long pastern bone 13 17850 -UBERON:0014504 proximal phalanx of digit 4 12 17851 -UBERON:0004330 proximal phalanx of manual digit 4 13 17852 -UBERON:0004335 proximal phalanx of pedal digit 4 13 17853 -UBERON:0014505 proximal phalanx of digit 5 12 17854 -UBERON:0004331 proximal phalanx of manual digit 5 13 17855 -UBERON:0004336 proximal phalanx of pedal digit 5 13 17856 -UBERON:0009558 pastern bone 11 17857 -UBERON:0009555 short pastern bone 12 17858 -UBERON:0009556 long pastern bone 12 17859 -UBERON:0018266 third phalanx 11 17860 -UBERON:0018322 fourth phalanx 11 17861 -UBERON:4100005 second phalanx 11 17862 -UBERON:0003607 forelimb long bone 10 17863 -UBERON:0000976 humerus 11 17864 -UBERON:0001423 radius bone 11 17865 -UBERON:0001424 ulna 11 17866 -UBERON:0001436 phalanx of manus 11 17867 -UBERON:0002234 proximal phalanx of manus 12 17868 -UBERON:0004328 proximal phalanx of manual digit 2 13 17869 -UBERON:0004329 proximal phalanx of manual digit 3 13 17870 -UBERON:0004330 proximal phalanx of manual digit 4 13 17871 -UBERON:0004331 proximal phalanx of manual digit 5 13 17872 -UBERON:0004338 proximal phalanx of manual digit 1 13 17873 -UBERON:0003620 manual digit 1 phalanx 12 17874 -UBERON:0004337 distal phalanx of manual digit 1 13 17875 -UBERON:0004338 proximal phalanx of manual digit 1 13 17876 -UBERON:4200219 middle phalanx of manual digit 1 13 17877 -UBERON:0003636 manual digit 2 phalanx 12 17878 -UBERON:0004311 distal phalanx of manual digit 2 13 17879 -UBERON:0004320 middle phalanx of manual digit 2 13 17880 -UBERON:0004328 proximal phalanx of manual digit 2 13 17881 -UBERON:0003637 manual digit 3 phalanx 12 17882 -UBERON:0004312 distal phalanx of manual digit 3 13 17883 -UBERON:0004321 middle phalanx of manual digit 3 13 17884 -UBERON:0004329 proximal phalanx of manual digit 3 13 17885 -UBERON:0003638 manual digit 4 phalanx 12 17886 -UBERON:0004313 distal phalanx of manual digit 4 13 17887 -UBERON:0004322 middle phalanx of manual digit 4 13 17888 -UBERON:0004330 proximal phalanx of manual digit 4 13 17889 -UBERON:0003639 manual digit 5 phalanx 12 17890 -UBERON:0004314 distal phalanx of manual digit 5 13 17891 -UBERON:0004323 middle phalanx of manual digit 5 13 17892 -UBERON:0004331 proximal phalanx of manual digit 5 13 17893 -UBERON:0003864 middle phalanx of manus 12 17894 -UBERON:0004320 middle phalanx of manual digit 2 13 17895 -UBERON:0004321 middle phalanx of manual digit 3 13 17896 -UBERON:0004322 middle phalanx of manual digit 4 13 17897 -UBERON:0004323 middle phalanx of manual digit 5 13 17898 -UBERON:4200219 middle phalanx of manual digit 1 13 17899 -UBERON:0003865 distal phalanx of manus 12 17900 -UBERON:0004311 distal phalanx of manual digit 2 13 17901 -UBERON:0004312 distal phalanx of manual digit 3 13 17902 -UBERON:0004313 distal phalanx of manual digit 4 13 17903 -UBERON:0004314 distal phalanx of manual digit 5 13 17904 -UBERON:0004337 distal phalanx of manual digit 1 13 17905 -UBERON:0002374 metacarpal bone 11 17906 -UBERON:0003645 metacarpal bone of digit 1 12 17907 -UBERON:0003646 metacarpal bone of digit 2 12 17908 -UBERON:0003647 metacarpal bone of digit 3 12 17909 -UBERON:0003648 metacarpal bone of digit 4 12 17910 -UBERON:0003649 metacarpal bone of digit 5 12 17911 -UBERON:0013587 fused metacarpal bones 3 and 4 12 17912 -UBERON:0012268 equine forelimb splint bone 11 17913 -UBERON:0003608 hindlimb long bone 10 17914 -UBERON:0000979 tibia 11 17915 -UBERON:0000981 femur 11 17916 -UBERON:0001446 fibula 11 17917 -UBERON:0001448 metatarsal bone 11 17918 -UBERON:0003650 metatarsal bone of digit 1 12 17919 -UBERON:0003651 metatarsal bone of digit 2 12 17920 -UBERON:0003652 metatarsal bone of digit 3 12 17921 -UBERON:0003653 metatarsal bone of digit 4 12 17922 -UBERON:0003654 metatarsal bone of digit 5 12 17923 -UBERON:0013588 fused metatarsal bones 3 and 4 12 17924 -UBERON:0014763 fused metatarsal bones 2-4 13 17925 -UBERON:4200153 metatarsal bone of digit 6 12 17926 -UBERON:4200157 metatarsal bone of digit 7 12 17927 -UBERON:4200158 metatarsal bone of digit 8 12 17928 -UBERON:0001449 phalanx of pes 11 17929 -UBERON:0003640 pedal digit 1 phalanx 12 17930 -UBERON:0004315 distal phalanx of pedal digit 1 13 17931 -UBERON:0004332 proximal phalanx of pedal digit 1 13 17932 -UBERON:0003641 pedal digit 2 phalanx 12 17933 -UBERON:0004316 distal phalanx of pedal digit 2 13 17934 -UBERON:0004324 middle phalanx of pedal digit 2 13 17935 -UBERON:0004333 proximal phalanx of pedal digit 2 13 17936 -UBERON:0003642 pedal digit 3 phalanx 12 17937 -UBERON:0004317 distal phalanx of pedal digit 3 13 17938 -UBERON:0004325 middle phalanx of pedal digit 3 13 17939 -UBERON:0004334 proximal phalanx of pedal digit 3 13 17940 -UBERON:0003862 pedal digit 4 phalanx 12 17941 -UBERON:0004318 distal phalanx of pedal digit 4 13 17942 -UBERON:0004326 middle phalanx of pedal digit 4 13 17943 -UBERON:0004335 proximal phalanx of pedal digit 4 13 17944 -UBERON:0003863 pedal digit 5 phalanx 12 17945 -UBERON:0004319 distal phalanx of pedal digit 5 13 17946 -UBERON:0004327 middle phalanx of pedal digit 5 13 17947 -UBERON:0004336 proximal phalanx of pedal digit 5 13 17948 -UBERON:0003866 middle phalanx of pes 12 17949 -UBERON:0004324 middle phalanx of pedal digit 2 13 17950 -UBERON:0004325 middle phalanx of pedal digit 3 13 17951 -UBERON:0004326 middle phalanx of pedal digit 4 13 17952 -UBERON:0004327 middle phalanx of pedal digit 5 13 17953 -UBERON:0003867 distal phalanx of pes 12 17954 -UBERON:0004315 distal phalanx of pedal digit 1 13 17955 -UBERON:0004316 distal phalanx of pedal digit 2 13 17956 -UBERON:0004317 distal phalanx of pedal digit 3 13 17957 -UBERON:0004318 distal phalanx of pedal digit 4 13 17958 -UBERON:0004319 distal phalanx of pedal digit 5 13 17959 -UBERON:0003868 proximal phalanx of pes 12 17960 -UBERON:0004332 proximal phalanx of pedal digit 1 13 17961 -UBERON:0004333 proximal phalanx of pedal digit 2 13 17962 -UBERON:0004334 proximal phalanx of pedal digit 3 13 17963 -UBERON:0004335 proximal phalanx of pedal digit 4 13 17964 -UBERON:0004336 proximal phalanx of pedal digit 5 13 17965 -UBERON:4100009 pedal digit 7 phalanx 12 17966 -UBERON:0012269 equine hindlimb splint bone 11 17967 -UBERON:0003821 metapodium bone 10 17968 -UBERON:0001448 metatarsal bone 11 17969 -UBERON:0003650 metatarsal bone of digit 1 12 17970 -UBERON:0003651 metatarsal bone of digit 2 12 17971 -UBERON:0003652 metatarsal bone of digit 3 12 17972 -UBERON:0003653 metatarsal bone of digit 4 12 17973 -UBERON:0003654 metatarsal bone of digit 5 12 17974 -UBERON:0013588 fused metatarsal bones 3 and 4 12 17975 -UBERON:0014763 fused metatarsal bones 2-4 13 17976 -UBERON:4200153 metatarsal bone of digit 6 12 17977 -UBERON:4200157 metatarsal bone of digit 7 12 17978 -UBERON:4200158 metatarsal bone of digit 8 12 17979 -UBERON:0002374 metacarpal bone 11 17980 -UBERON:0003645 metacarpal bone of digit 1 12 17981 -UBERON:0003646 metacarpal bone of digit 2 12 17982 -UBERON:0003647 metacarpal bone of digit 3 12 17983 -UBERON:0003648 metacarpal bone of digit 4 12 17984 -UBERON:0003649 metacarpal bone of digit 5 12 17985 -UBERON:0013587 fused metacarpal bones 3 and 4 12 17986 -UBERON:0012267 equine splint bone 11 17987 -UBERON:0012268 equine forelimb splint bone 12 17988 -UBERON:0012269 equine hindlimb splint bone 12 17989 -UBERON:0013581 metapodium bone 1 11 17990 -UBERON:0003645 metacarpal bone of digit 1 12 17991 -UBERON:0003650 metatarsal bone of digit 1 12 17992 -UBERON:0013582 metapodium bone 2 11 17993 -UBERON:0003646 metacarpal bone of digit 2 12 17994 -UBERON:0003651 metatarsal bone of digit 2 12 17995 -UBERON:0013583 metapodium bone 3 11 17996 -UBERON:0003647 metacarpal bone of digit 3 12 17997 -UBERON:0003652 metatarsal bone of digit 3 12 17998 -UBERON:0013584 metapodium bone 4 11 17999 -UBERON:0003648 metacarpal bone of digit 4 12 18000 -UBERON:0003653 metatarsal bone of digit 4 12 18001 -UBERON:0013585 metapodium bone 5 11 18002 -UBERON:0003649 metacarpal bone of digit 5 12 18003 -UBERON:0003654 metatarsal bone of digit 5 12 18004 -UBERON:0013586 fused metapodial bones 3 and 4 11 18005 -UBERON:0013587 fused metacarpal bones 3 and 4 12 18006 -UBERON:0013588 fused metatarsal bones 3 and 4 12 18007 -UBERON:0014763 fused metatarsal bones 2-4 13 18008 -UBERON:0014762 fused metapodial bones 2-4 12 18009 -UBERON:0014763 fused metatarsal bones 2-4 13 18010 -UBERON:4200154 metapodium bone 6 11 18011 -UBERON:4200153 metatarsal bone of digit 6 12 18012 -UBERON:4200155 metapodium bone 7 11 18013 -UBERON:4200157 metatarsal bone of digit 7 12 18014 -UBERON:4200156 metapodium bone 8 11 18015 -UBERON:4200158 metatarsal bone of digit 8 12 18016 -UBERON:0008962 forelimb bone 9 18017 -UBERON:0003460 arm bone 10 18018 -UBERON:0003466 forelimb zeugopod bone 11 18019 -UBERON:0001423 radius bone 12 18020 -UBERON:0001424 ulna 12 18021 -UBERON:0006715 radio-ulna 12 18022 -UBERON:0007993 ulnar sesamoid bone 12 18023 -UBERON:0004250 upper arm bone 11 18024 -UBERON:0000976 humerus 12 18025 -UBERON:0003607 forelimb long bone 10 18026 -UBERON:0000976 humerus 11 18027 -UBERON:0001423 radius bone 11 18028 -UBERON:0001424 ulna 11 18029 -UBERON:0001436 phalanx of manus 11 18030 -UBERON:0002234 proximal phalanx of manus 12 18031 -UBERON:0004328 proximal phalanx of manual digit 2 13 18032 -UBERON:0004329 proximal phalanx of manual digit 3 13 18033 -UBERON:0004330 proximal phalanx of manual digit 4 13 18034 -UBERON:0004331 proximal phalanx of manual digit 5 13 18035 -UBERON:0004338 proximal phalanx of manual digit 1 13 18036 -UBERON:0003620 manual digit 1 phalanx 12 18037 -UBERON:0004337 distal phalanx of manual digit 1 13 18038 -UBERON:0004338 proximal phalanx of manual digit 1 13 18039 -UBERON:4200219 middle phalanx of manual digit 1 13 18040 -UBERON:0003636 manual digit 2 phalanx 12 18041 -UBERON:0004311 distal phalanx of manual digit 2 13 18042 -UBERON:0004320 middle phalanx of manual digit 2 13 18043 -UBERON:0004328 proximal phalanx of manual digit 2 13 18044 -UBERON:0003637 manual digit 3 phalanx 12 18045 -UBERON:0004312 distal phalanx of manual digit 3 13 18046 -UBERON:0004321 middle phalanx of manual digit 3 13 18047 -UBERON:0004329 proximal phalanx of manual digit 3 13 18048 -UBERON:0003638 manual digit 4 phalanx 12 18049 -UBERON:0004313 distal phalanx of manual digit 4 13 18050 -UBERON:0004322 middle phalanx of manual digit 4 13 18051 -UBERON:0004330 proximal phalanx of manual digit 4 13 18052 -UBERON:0003639 manual digit 5 phalanx 12 18053 -UBERON:0004314 distal phalanx of manual digit 5 13 18054 -UBERON:0004323 middle phalanx of manual digit 5 13 18055 -UBERON:0004331 proximal phalanx of manual digit 5 13 18056 -UBERON:0003864 middle phalanx of manus 12 18057 -UBERON:0004320 middle phalanx of manual digit 2 13 18058 -UBERON:0004321 middle phalanx of manual digit 3 13 18059 -UBERON:0004322 middle phalanx of manual digit 4 13 18060 -UBERON:0004323 middle phalanx of manual digit 5 13 18061 -UBERON:4200219 middle phalanx of manual digit 1 13 18062 -UBERON:0003865 distal phalanx of manus 12 18063 -UBERON:0004311 distal phalanx of manual digit 2 13 18064 -UBERON:0004312 distal phalanx of manual digit 3 13 18065 -UBERON:0004313 distal phalanx of manual digit 4 13 18066 -UBERON:0004314 distal phalanx of manual digit 5 13 18067 -UBERON:0004337 distal phalanx of manual digit 1 13 18068 -UBERON:0002374 metacarpal bone 11 18069 -UBERON:0003645 metacarpal bone of digit 1 12 18070 -UBERON:0003646 metacarpal bone of digit 2 12 18071 -UBERON:0003647 metacarpal bone of digit 3 12 18072 -UBERON:0003648 metacarpal bone of digit 4 12 18073 -UBERON:0003649 metacarpal bone of digit 5 12 18074 -UBERON:0013587 fused metacarpal bones 3 and 4 12 18075 -UBERON:0012268 equine forelimb splint bone 11 18076 -UBERON:0005897 manus bone 10 18077 -UBERON:0001435 carpal bone 11 18078 -UBERON:0001480 proximal carpal bone 12 18079 -UBERON:0001427 radiale 13 18080 -UBERON:0001428 intermedium 13 18081 -UBERON:0001429 pisiform 13 18082 -UBERON:0002445 ulnare 13 18083 -UBERON:0007960 scapholunate 13 18084 -UBERON:0012124 avian scapholunar bone 13 18085 -UBERON:0001481 distal carpal bone 12 18086 -UBERON:0001430 distal carpal bone 1 13 18087 -UBERON:0001431 distal carpal bone 2 13 18088 -UBERON:0001432 distal carpal bone 3 13 18089 -UBERON:0001433 distal carpal bone 4 13 18090 -UBERON:0010726 os vesalianum manus 13 18091 -UBERON:0010739 distal carpal bone 5 13 18092 -UBERON:0012290 fused carpal bones 2 and 3 13 18093 -UBERON:3000965 basale commune (carpal) 13 18094 -UBERON:0007958 central carpal bone 12 18095 -UBERON:0007959 falciform carpal bone 12 18096 -UBERON:0008257 radial sesamoid 12 18097 -UBERON:3010060 centrale (fore) 12 18098 -UBERON:4200180 semilunate carpal 12 18099 -UBERON:0007997 sesamoid bone of manus 11 18100 -UBERON:0001429 pisiform 12 18101 -UBERON:0007991 proximal sesamoid bone of manus 12 18102 -UBERON:0008257 radial sesamoid 12 18103 -UBERON:0011205 carpometacarpus 11 18104 -UBERON:0012358 manual digitopodium bone 11 18105 -UBERON:0002374 metacarpal bone 12 18106 -UBERON:0003645 metacarpal bone of digit 1 13 18107 -UBERON:0003646 metacarpal bone of digit 2 13 18108 -UBERON:0003647 metacarpal bone of digit 3 13 18109 -UBERON:0003648 metacarpal bone of digit 4 13 18110 -UBERON:0003649 metacarpal bone of digit 5 13 18111 -UBERON:0013587 fused metacarpal bones 3 and 4 13 18112 -UBERON:0004249 manual digit bone 12 18113 -UBERON:0001436 phalanx of manus 13 18114 -UBERON:0002234 proximal phalanx of manus 14 18115 -UBERON:0004328 proximal phalanx of manual digit 2 15 18116 -UBERON:0004329 proximal phalanx of manual digit 3 15 18117 -UBERON:0004330 proximal phalanx of manual digit 4 15 18118 -UBERON:0004331 proximal phalanx of manual digit 5 15 18119 -UBERON:0004338 proximal phalanx of manual digit 1 15 18120 -UBERON:0003620 manual digit 1 phalanx 14 18121 -UBERON:0004337 distal phalanx of manual digit 1 15 18122 -UBERON:0004338 proximal phalanx of manual digit 1 15 18123 -UBERON:4200219 middle phalanx of manual digit 1 15 18124 -UBERON:0003636 manual digit 2 phalanx 14 18125 -UBERON:0004311 distal phalanx of manual digit 2 15 18126 -UBERON:0004320 middle phalanx of manual digit 2 15 18127 -UBERON:0004328 proximal phalanx of manual digit 2 15 18128 -UBERON:0003637 manual digit 3 phalanx 14 18129 -UBERON:0004312 distal phalanx of manual digit 3 15 18130 -UBERON:0004321 middle phalanx of manual digit 3 15 18131 -UBERON:0004329 proximal phalanx of manual digit 3 15 18132 -UBERON:0003638 manual digit 4 phalanx 14 18133 -UBERON:0004313 distal phalanx of manual digit 4 15 18134 -UBERON:0004322 middle phalanx of manual digit 4 15 18135 -UBERON:0004330 proximal phalanx of manual digit 4 15 18136 -UBERON:0003639 manual digit 5 phalanx 14 18137 -UBERON:0004314 distal phalanx of manual digit 5 15 18138 -UBERON:0004323 middle phalanx of manual digit 5 15 18139 -UBERON:0004331 proximal phalanx of manual digit 5 15 18140 -UBERON:0003864 middle phalanx of manus 14 18141 -UBERON:0004320 middle phalanx of manual digit 2 15 18142 -UBERON:0004321 middle phalanx of manual digit 3 15 18143 -UBERON:0004322 middle phalanx of manual digit 4 15 18144 -UBERON:0004323 middle phalanx of manual digit 5 15 18145 -UBERON:4200219 middle phalanx of manual digit 1 15 18146 -UBERON:0003865 distal phalanx of manus 14 18147 -UBERON:0004311 distal phalanx of manual digit 2 15 18148 -UBERON:0004312 distal phalanx of manual digit 3 15 18149 -UBERON:0004313 distal phalanx of manual digit 4 15 18150 -UBERON:0004314 distal phalanx of manual digit 5 15 18151 -UBERON:0004337 distal phalanx of manual digit 1 15 18152 -UBERON:0007991 proximal sesamoid bone of manus 13 18153 -UBERON:3000856 intercalary element of fore digit 13 18154 -UBERON:0012268 equine forelimb splint bone 12 18155 -UBERON:4200116 pteroid 10 18156 -UBERON:0011250 autopod bone 9 18157 -UBERON:0003656 mesopodium bone 10 18158 -UBERON:0001435 carpal bone 11 18159 -UBERON:0001480 proximal carpal bone 12 18160 -UBERON:0001427 radiale 13 18161 -UBERON:0001428 intermedium 13 18162 -UBERON:0001429 pisiform 13 18163 -UBERON:0002445 ulnare 13 18164 -UBERON:0007960 scapholunate 13 18165 -UBERON:0012124 avian scapholunar bone 13 18166 -UBERON:0001481 distal carpal bone 12 18167 -UBERON:0001430 distal carpal bone 1 13 18168 -UBERON:0001431 distal carpal bone 2 13 18169 -UBERON:0001432 distal carpal bone 3 13 18170 -UBERON:0001433 distal carpal bone 4 13 18171 -UBERON:0010726 os vesalianum manus 13 18172 -UBERON:0010739 distal carpal bone 5 13 18173 -UBERON:0012290 fused carpal bones 2 and 3 13 18174 -UBERON:3000965 basale commune (carpal) 13 18175 -UBERON:0007958 central carpal bone 12 18176 -UBERON:0007959 falciform carpal bone 12 18177 -UBERON:0008257 radial sesamoid 12 18178 -UBERON:3010060 centrale (fore) 12 18179 -UBERON:4200180 semilunate carpal 12 18180 -UBERON:0001447 tarsal bone 11 18181 -UBERON:0001451 navicular bone of pes 12 18182 -UBERON:0006836 medial tibial tarsal bone 12 18183 -UBERON:0010721 distal tarsal bone 12 18184 -UBERON:0001452 distal tarsal bone 1 13 18185 -UBERON:0001453 distal tarsal bone 2 13 18186 -UBERON:0001454 distal tarsal bone 3 13 18187 -UBERON:0001455 cuboid bone 13 18188 -UBERON:0010723 os vesalianum pedis 13 18189 -UBERON:0010737 distal tarsal bone 4 13 18190 -UBERON:0010738 distal tarsal bone 5 13 18191 -UBERON:0012289 fused tarsal bones 2 and 3 13 18192 -UBERON:0013649 fused tarsal bones 1 and 2 13 18193 -UBERON:3001002 basale commune (tarsal) 13 18194 -UBERON:0011679 proximal tarsal bone 12 18195 -UBERON:0001450 calcaneus 13 18196 -UBERON:0002395 talus 13 18197 -UBERON:0011678 hindlimb intermedium bone 13 18198 -UBERON:0012126 fibulare 13 18199 -UBERON:0012288 centroquartal bone 12 18200 -UBERON:3010045 centrale 1 12 18201 -UBERON:3010073 centrale 2 12 18202 -UBERON:4200011 pedal centrale 12 18203 -UBERON:4200152 intertarsale sesamoid 12 18204 -UBERON:0012131 centrale 11 18205 -UBERON:0001451 navicular bone of pes 12 18206 -UBERON:0007958 central carpal bone 12 18207 -UBERON:3010045 centrale 1 12 18208 -UBERON:3010060 centrale (fore) 12 18209 -UBERON:3010073 centrale 2 12 18210 -UBERON:4200011 pedal centrale 12 18211 -UBERON:4200083 postaxial centrale 12 18212 -UBERON:4200084 preaxial centrale 12 18213 -UBERON:0014395 proximal mesopodial bone 11 18214 -UBERON:0001480 proximal carpal bone 12 18215 -UBERON:0001427 radiale 13 18216 -UBERON:0001428 intermedium 13 18217 -UBERON:0001429 pisiform 13 18218 -UBERON:0002445 ulnare 13 18219 -UBERON:0007960 scapholunate 13 18220 -UBERON:0012124 avian scapholunar bone 13 18221 -UBERON:0011679 proximal tarsal bone 12 18222 -UBERON:0001450 calcaneus 13 18223 -UBERON:0002395 talus 13 18224 -UBERON:0011678 hindlimb intermedium bone 13 18225 -UBERON:0012126 fibulare 13 18226 -UBERON:0018102 distal mesopodial bone 11 18227 -UBERON:0001481 distal carpal bone 12 18228 -UBERON:0001430 distal carpal bone 1 13 18229 -UBERON:0001431 distal carpal bone 2 13 18230 -UBERON:0001432 distal carpal bone 3 13 18231 -UBERON:0001433 distal carpal bone 4 13 18232 -UBERON:0010726 os vesalianum manus 13 18233 -UBERON:0010739 distal carpal bone 5 13 18234 -UBERON:0012290 fused carpal bones 2 and 3 13 18235 -UBERON:3000965 basale commune (carpal) 13 18236 -UBERON:0010721 distal tarsal bone 12 18237 -UBERON:0001452 distal tarsal bone 1 13 18238 -UBERON:0001453 distal tarsal bone 2 13 18239 -UBERON:0001454 distal tarsal bone 3 13 18240 -UBERON:0001455 cuboid bone 13 18241 -UBERON:0010723 os vesalianum pedis 13 18242 -UBERON:0010737 distal tarsal bone 4 13 18243 -UBERON:0010738 distal tarsal bone 5 13 18244 -UBERON:0012289 fused tarsal bones 2 and 3 13 18245 -UBERON:0013649 fused tarsal bones 1 and 2 13 18246 -UBERON:3001002 basale commune (tarsal) 13 18247 -UBERON:0005897 manus bone 10 18248 -UBERON:0001435 carpal bone 11 18249 -UBERON:0001480 proximal carpal bone 12 18250 -UBERON:0001427 radiale 13 18251 -UBERON:0001428 intermedium 13 18252 -UBERON:0001429 pisiform 13 18253 -UBERON:0002445 ulnare 13 18254 -UBERON:0007960 scapholunate 13 18255 -UBERON:0012124 avian scapholunar bone 13 18256 -UBERON:0001481 distal carpal bone 12 18257 -UBERON:0001430 distal carpal bone 1 13 18258 -UBERON:0001431 distal carpal bone 2 13 18259 -UBERON:0001432 distal carpal bone 3 13 18260 -UBERON:0001433 distal carpal bone 4 13 18261 -UBERON:0010726 os vesalianum manus 13 18262 -UBERON:0010739 distal carpal bone 5 13 18263 -UBERON:0012290 fused carpal bones 2 and 3 13 18264 -UBERON:3000965 basale commune (carpal) 13 18265 -UBERON:0007958 central carpal bone 12 18266 -UBERON:0007959 falciform carpal bone 12 18267 -UBERON:0008257 radial sesamoid 12 18268 -UBERON:3010060 centrale (fore) 12 18269 -UBERON:4200180 semilunate carpal 12 18270 -UBERON:0007997 sesamoid bone of manus 11 18271 -UBERON:0001429 pisiform 12 18272 -UBERON:0007991 proximal sesamoid bone of manus 12 18273 -UBERON:0008257 radial sesamoid 12 18274 -UBERON:0011205 carpometacarpus 11 18275 -UBERON:0012358 manual digitopodium bone 11 18276 -UBERON:0002374 metacarpal bone 12 18277 -UBERON:0003645 metacarpal bone of digit 1 13 18278 -UBERON:0003646 metacarpal bone of digit 2 13 18279 -UBERON:0003647 metacarpal bone of digit 3 13 18280 -UBERON:0003648 metacarpal bone of digit 4 13 18281 -UBERON:0003649 metacarpal bone of digit 5 13 18282 -UBERON:0013587 fused metacarpal bones 3 and 4 13 18283 -UBERON:0004249 manual digit bone 12 18284 -UBERON:0001436 phalanx of manus 13 18285 -UBERON:0002234 proximal phalanx of manus 14 18286 -UBERON:0004328 proximal phalanx of manual digit 2 15 18287 -UBERON:0004329 proximal phalanx of manual digit 3 15 18288 -UBERON:0004330 proximal phalanx of manual digit 4 15 18289 -UBERON:0004331 proximal phalanx of manual digit 5 15 18290 -UBERON:0004338 proximal phalanx of manual digit 1 15 18291 -UBERON:0003620 manual digit 1 phalanx 14 18292 -UBERON:0004337 distal phalanx of manual digit 1 15 18293 -UBERON:0004338 proximal phalanx of manual digit 1 15 18294 -UBERON:4200219 middle phalanx of manual digit 1 15 18295 -UBERON:0003636 manual digit 2 phalanx 14 18296 -UBERON:0004311 distal phalanx of manual digit 2 15 18297 -UBERON:0004320 middle phalanx of manual digit 2 15 18298 -UBERON:0004328 proximal phalanx of manual digit 2 15 18299 -UBERON:0003637 manual digit 3 phalanx 14 18300 -UBERON:0004312 distal phalanx of manual digit 3 15 18301 -UBERON:0004321 middle phalanx of manual digit 3 15 18302 -UBERON:0004329 proximal phalanx of manual digit 3 15 18303 -UBERON:0003638 manual digit 4 phalanx 14 18304 -UBERON:0004313 distal phalanx of manual digit 4 15 18305 -UBERON:0004322 middle phalanx of manual digit 4 15 18306 -UBERON:0004330 proximal phalanx of manual digit 4 15 18307 -UBERON:0003639 manual digit 5 phalanx 14 18308 -UBERON:0004314 distal phalanx of manual digit 5 15 18309 -UBERON:0004323 middle phalanx of manual digit 5 15 18310 -UBERON:0004331 proximal phalanx of manual digit 5 15 18311 -UBERON:0003864 middle phalanx of manus 14 18312 -UBERON:0004320 middle phalanx of manual digit 2 15 18313 -UBERON:0004321 middle phalanx of manual digit 3 15 18314 -UBERON:0004322 middle phalanx of manual digit 4 15 18315 -UBERON:0004323 middle phalanx of manual digit 5 15 18316 -UBERON:4200219 middle phalanx of manual digit 1 15 18317 -UBERON:0003865 distal phalanx of manus 14 18318 -UBERON:0004311 distal phalanx of manual digit 2 15 18319 -UBERON:0004312 distal phalanx of manual digit 3 15 18320 -UBERON:0004313 distal phalanx of manual digit 4 15 18321 -UBERON:0004314 distal phalanx of manual digit 5 15 18322 -UBERON:0004337 distal phalanx of manual digit 1 15 18323 -UBERON:0007991 proximal sesamoid bone of manus 13 18324 -UBERON:3000856 intercalary element of fore digit 13 18325 -UBERON:0012268 equine forelimb splint bone 12 18326 -UBERON:0005899 pes bone 10 18327 -UBERON:0001447 tarsal bone 11 18328 -UBERON:0001451 navicular bone of pes 12 18329 -UBERON:0006836 medial tibial tarsal bone 12 18330 -UBERON:0010721 distal tarsal bone 12 18331 -UBERON:0001452 distal tarsal bone 1 13 18332 -UBERON:0001453 distal tarsal bone 2 13 18333 -UBERON:0001454 distal tarsal bone 3 13 18334 -UBERON:0001455 cuboid bone 13 18335 -UBERON:0010723 os vesalianum pedis 13 18336 -UBERON:0010737 distal tarsal bone 4 13 18337 -UBERON:0010738 distal tarsal bone 5 13 18338 -UBERON:0012289 fused tarsal bones 2 and 3 13 18339 -UBERON:0013649 fused tarsal bones 1 and 2 13 18340 -UBERON:3001002 basale commune (tarsal) 13 18341 -UBERON:0011679 proximal tarsal bone 12 18342 -UBERON:0001450 calcaneus 13 18343 -UBERON:0002395 talus 13 18344 -UBERON:0011678 hindlimb intermedium bone 13 18345 -UBERON:0012126 fibulare 13 18346 -UBERON:0012288 centroquartal bone 12 18347 -UBERON:3010045 centrale 1 12 18348 -UBERON:3010073 centrale 2 12 18349 -UBERON:4200011 pedal centrale 12 18350 -UBERON:4200152 intertarsale sesamoid 12 18351 -UBERON:0008000 sesamoid bone of pes 11 18352 -UBERON:0007990 proximal sesamoid bone of pes 12 18353 -UBERON:4200152 intertarsale sesamoid 12 18354 -UBERON:0008195 tarsometatarsus 11 18355 -UBERON:0010725 accessory navicular bone 11 18356 -UBERON:0012359 pedal digitopodium bone 11 18357 -UBERON:0001448 metatarsal bone 12 18358 -UBERON:0003650 metatarsal bone of digit 1 13 18359 -UBERON:0003651 metatarsal bone of digit 2 13 18360 -UBERON:0003652 metatarsal bone of digit 3 13 18361 -UBERON:0003653 metatarsal bone of digit 4 13 18362 -UBERON:0003654 metatarsal bone of digit 5 13 18363 -UBERON:0013588 fused metatarsal bones 3 and 4 13 18364 -UBERON:0014763 fused metatarsal bones 2-4 14 18365 -UBERON:4200153 metatarsal bone of digit 6 13 18366 -UBERON:4200157 metatarsal bone of digit 7 13 18367 -UBERON:4200158 metatarsal bone of digit 8 13 18368 -UBERON:0004248 pedal digit bone 12 18369 -UBERON:0001449 phalanx of pes 13 18370 -UBERON:0003640 pedal digit 1 phalanx 14 18371 -UBERON:0004315 distal phalanx of pedal digit 1 15 18372 -UBERON:0004332 proximal phalanx of pedal digit 1 15 18373 -UBERON:0003641 pedal digit 2 phalanx 14 18374 -UBERON:0004316 distal phalanx of pedal digit 2 15 18375 -UBERON:0004324 middle phalanx of pedal digit 2 15 18376 -UBERON:0004333 proximal phalanx of pedal digit 2 15 18377 -UBERON:0003642 pedal digit 3 phalanx 14 18378 -UBERON:0004317 distal phalanx of pedal digit 3 15 18379 -UBERON:0004325 middle phalanx of pedal digit 3 15 18380 -UBERON:0004334 proximal phalanx of pedal digit 3 15 18381 -UBERON:0003862 pedal digit 4 phalanx 14 18382 -UBERON:0004318 distal phalanx of pedal digit 4 15 18383 -UBERON:0004326 middle phalanx of pedal digit 4 15 18384 -UBERON:0004335 proximal phalanx of pedal digit 4 15 18385 -UBERON:0003863 pedal digit 5 phalanx 14 18386 -UBERON:0004319 distal phalanx of pedal digit 5 15 18387 -UBERON:0004327 middle phalanx of pedal digit 5 15 18388 -UBERON:0004336 proximal phalanx of pedal digit 5 15 18389 -UBERON:0003866 middle phalanx of pes 14 18390 -UBERON:0004324 middle phalanx of pedal digit 2 15 18391 -UBERON:0004325 middle phalanx of pedal digit 3 15 18392 -UBERON:0004326 middle phalanx of pedal digit 4 15 18393 -UBERON:0004327 middle phalanx of pedal digit 5 15 18394 -UBERON:0003867 distal phalanx of pes 14 18395 -UBERON:0004315 distal phalanx of pedal digit 1 15 18396 -UBERON:0004316 distal phalanx of pedal digit 2 15 18397 -UBERON:0004317 distal phalanx of pedal digit 3 15 18398 -UBERON:0004318 distal phalanx of pedal digit 4 15 18399 -UBERON:0004319 distal phalanx of pedal digit 5 15 18400 -UBERON:0003868 proximal phalanx of pes 14 18401 -UBERON:0004332 proximal phalanx of pedal digit 1 15 18402 -UBERON:0004333 proximal phalanx of pedal digit 2 15 18403 -UBERON:0004334 proximal phalanx of pedal digit 3 15 18404 -UBERON:0004335 proximal phalanx of pedal digit 4 15 18405 -UBERON:0004336 proximal phalanx of pedal digit 5 15 18406 -UBERON:4100009 pedal digit 7 phalanx 14 18407 -UBERON:0007990 proximal sesamoid bone of pes 13 18408 -UBERON:3000931 intercalary element of hind digit 13 18409 -UBERON:3010675 bony nodule of terminal phalanx of hind digit 13 18410 -UBERON:0012269 equine hindlimb splint bone 12 18411 -UBERON:0010759 equine distal sesamoid 10 18412 -UBERON:0012357 digitopodium bone 10 18413 -UBERON:0003221 phalanx 11 18414 -UBERON:0001436 phalanx of manus 12 18415 -UBERON:0002234 proximal phalanx of manus 13 18416 -UBERON:0004328 proximal phalanx of manual digit 2 14 18417 -UBERON:0004329 proximal phalanx of manual digit 3 14 18418 -UBERON:0004330 proximal phalanx of manual digit 4 14 18419 -UBERON:0004331 proximal phalanx of manual digit 5 14 18420 -UBERON:0004338 proximal phalanx of manual digit 1 14 18421 -UBERON:0003620 manual digit 1 phalanx 13 18422 -UBERON:0004337 distal phalanx of manual digit 1 14 18423 -UBERON:0004338 proximal phalanx of manual digit 1 14 18424 -UBERON:4200219 middle phalanx of manual digit 1 14 18425 -UBERON:0003636 manual digit 2 phalanx 13 18426 -UBERON:0004311 distal phalanx of manual digit 2 14 18427 -UBERON:0004320 middle phalanx of manual digit 2 14 18428 -UBERON:0004328 proximal phalanx of manual digit 2 14 18429 -UBERON:0003637 manual digit 3 phalanx 13 18430 -UBERON:0004312 distal phalanx of manual digit 3 14 18431 -UBERON:0004321 middle phalanx of manual digit 3 14 18432 -UBERON:0004329 proximal phalanx of manual digit 3 14 18433 -UBERON:0003638 manual digit 4 phalanx 13 18434 -UBERON:0004313 distal phalanx of manual digit 4 14 18435 -UBERON:0004322 middle phalanx of manual digit 4 14 18436 -UBERON:0004330 proximal phalanx of manual digit 4 14 18437 -UBERON:0003639 manual digit 5 phalanx 13 18438 -UBERON:0004314 distal phalanx of manual digit 5 14 18439 -UBERON:0004323 middle phalanx of manual digit 5 14 18440 -UBERON:0004331 proximal phalanx of manual digit 5 14 18441 -UBERON:0003864 middle phalanx of manus 13 18442 -UBERON:0004320 middle phalanx of manual digit 2 14 18443 -UBERON:0004321 middle phalanx of manual digit 3 14 18444 -UBERON:0004322 middle phalanx of manual digit 4 14 18445 -UBERON:0004323 middle phalanx of manual digit 5 14 18446 -UBERON:4200219 middle phalanx of manual digit 1 14 18447 -UBERON:0003865 distal phalanx of manus 13 18448 -UBERON:0004311 distal phalanx of manual digit 2 14 18449 -UBERON:0004312 distal phalanx of manual digit 3 14 18450 -UBERON:0004313 distal phalanx of manual digit 4 14 18451 -UBERON:0004314 distal phalanx of manual digit 5 14 18452 -UBERON:0004337 distal phalanx of manual digit 1 14 18453 -UBERON:0001449 phalanx of pes 12 18454 -UBERON:0003640 pedal digit 1 phalanx 13 18455 -UBERON:0004315 distal phalanx of pedal digit 1 14 18456 -UBERON:0004332 proximal phalanx of pedal digit 1 14 18457 -UBERON:0003641 pedal digit 2 phalanx 13 18458 -UBERON:0004316 distal phalanx of pedal digit 2 14 18459 -UBERON:0004324 middle phalanx of pedal digit 2 14 18460 -UBERON:0004333 proximal phalanx of pedal digit 2 14 18461 -UBERON:0003642 pedal digit 3 phalanx 13 18462 -UBERON:0004317 distal phalanx of pedal digit 3 14 18463 -UBERON:0004325 middle phalanx of pedal digit 3 14 18464 -UBERON:0004334 proximal phalanx of pedal digit 3 14 18465 -UBERON:0003862 pedal digit 4 phalanx 13 18466 -UBERON:0004318 distal phalanx of pedal digit 4 14 18467 -UBERON:0004326 middle phalanx of pedal digit 4 14 18468 -UBERON:0004335 proximal phalanx of pedal digit 4 14 18469 -UBERON:0003863 pedal digit 5 phalanx 13 18470 -UBERON:0004319 distal phalanx of pedal digit 5 14 18471 -UBERON:0004327 middle phalanx of pedal digit 5 14 18472 -UBERON:0004336 proximal phalanx of pedal digit 5 14 18473 -UBERON:0003866 middle phalanx of pes 13 18474 -UBERON:0004324 middle phalanx of pedal digit 2 14 18475 -UBERON:0004325 middle phalanx of pedal digit 3 14 18476 -UBERON:0004326 middle phalanx of pedal digit 4 14 18477 -UBERON:0004327 middle phalanx of pedal digit 5 14 18478 -UBERON:0003867 distal phalanx of pes 13 18479 -UBERON:0004315 distal phalanx of pedal digit 1 14 18480 -UBERON:0004316 distal phalanx of pedal digit 2 14 18481 -UBERON:0004317 distal phalanx of pedal digit 3 14 18482 -UBERON:0004318 distal phalanx of pedal digit 4 14 18483 -UBERON:0004319 distal phalanx of pedal digit 5 14 18484 -UBERON:0003868 proximal phalanx of pes 13 18485 -UBERON:0004332 proximal phalanx of pedal digit 1 14 18486 -UBERON:0004333 proximal phalanx of pedal digit 2 14 18487 -UBERON:0004334 proximal phalanx of pedal digit 3 14 18488 -UBERON:0004335 proximal phalanx of pedal digit 4 14 18489 -UBERON:0004336 proximal phalanx of pedal digit 5 14 18490 -UBERON:4100009 pedal digit 7 phalanx 13 18491 -UBERON:0004300 distal phalanx 12 18492 -UBERON:0003865 distal phalanx of manus 13 18493 -UBERON:0004311 distal phalanx of manual digit 2 14 18494 -UBERON:0004312 distal phalanx of manual digit 3 14 18495 -UBERON:0004313 distal phalanx of manual digit 4 14 18496 -UBERON:0004314 distal phalanx of manual digit 5 14 18497 -UBERON:0004337 distal phalanx of manual digit 1 14 18498 -UBERON:0003867 distal phalanx of pes 13 18499 -UBERON:0004315 distal phalanx of pedal digit 1 14 18500 -UBERON:0004316 distal phalanx of pedal digit 2 14 18501 -UBERON:0004317 distal phalanx of pedal digit 3 14 18502 -UBERON:0004318 distal phalanx of pedal digit 4 14 18503 -UBERON:0004319 distal phalanx of pedal digit 5 14 18504 -UBERON:0014483 distal phalanx of digit 1 13 18505 -UBERON:0004315 distal phalanx of pedal digit 1 14 18506 -UBERON:0004337 distal phalanx of manual digit 1 14 18507 -UBERON:0014484 distal phalanx of digit 2 13 18508 -UBERON:0004311 distal phalanx of manual digit 2 14 18509 -UBERON:0004316 distal phalanx of pedal digit 2 14 18510 -UBERON:0014485 distal phalanx of digit 3 13 18511 -UBERON:0004312 distal phalanx of manual digit 3 14 18512 -UBERON:0004317 distal phalanx of pedal digit 3 14 18513 -UBERON:0014486 distal phalanx of digit 4 13 18514 -UBERON:0004313 distal phalanx of manual digit 4 14 18515 -UBERON:0004318 distal phalanx of pedal digit 4 14 18516 -UBERON:0014487 distal phalanx of digit 5 13 18517 -UBERON:0004314 distal phalanx of manual digit 5 14 18518 -UBERON:0004319 distal phalanx of pedal digit 5 14 18519 -UBERON:3010746 T-shaped terminal phalanx 13 18520 -UBERON:0004301 middle phalanx 12 18521 -UBERON:0003864 middle phalanx of manus 13 18522 -UBERON:0004320 middle phalanx of manual digit 2 14 18523 -UBERON:0004321 middle phalanx of manual digit 3 14 18524 -UBERON:0004322 middle phalanx of manual digit 4 14 18525 -UBERON:0004323 middle phalanx of manual digit 5 14 18526 -UBERON:4200219 middle phalanx of manual digit 1 14 18527 -UBERON:0003866 middle phalanx of pes 13 18528 -UBERON:0004324 middle phalanx of pedal digit 2 14 18529 -UBERON:0004325 middle phalanx of pedal digit 3 14 18530 -UBERON:0004326 middle phalanx of pedal digit 4 14 18531 -UBERON:0004327 middle phalanx of pedal digit 5 14 18532 -UBERON:0014488 middle phalanx of digit 2 13 18533 -UBERON:0004320 middle phalanx of manual digit 2 14 18534 -UBERON:0004324 middle phalanx of pedal digit 2 14 18535 -UBERON:0014489 middle phalanx of digit 3 13 18536 -UBERON:0004321 middle phalanx of manual digit 3 14 18537 -UBERON:0004325 middle phalanx of pedal digit 3 14 18538 -UBERON:0009555 short pastern bone 14 18539 -UBERON:0014490 middle phalanx of digit 4 13 18540 -UBERON:0004322 middle phalanx of manual digit 4 14 18541 -UBERON:0004326 middle phalanx of pedal digit 4 14 18542 -UBERON:0014491 middle phalanx of digit 5 13 18543 -UBERON:0004323 middle phalanx of manual digit 5 14 18544 -UBERON:0004327 middle phalanx of pedal digit 5 14 18545 -UBERON:0004302 proximal phalanx 12 18546 -UBERON:0002234 proximal phalanx of manus 13 18547 -UBERON:0004328 proximal phalanx of manual digit 2 14 18548 -UBERON:0004329 proximal phalanx of manual digit 3 14 18549 -UBERON:0004330 proximal phalanx of manual digit 4 14 18550 -UBERON:0004331 proximal phalanx of manual digit 5 14 18551 -UBERON:0004338 proximal phalanx of manual digit 1 14 18552 -UBERON:0003868 proximal phalanx of pes 13 18553 -UBERON:0004332 proximal phalanx of pedal digit 1 14 18554 -UBERON:0004333 proximal phalanx of pedal digit 2 14 18555 -UBERON:0004334 proximal phalanx of pedal digit 3 14 18556 -UBERON:0004335 proximal phalanx of pedal digit 4 14 18557 -UBERON:0004336 proximal phalanx of pedal digit 5 14 18558 -UBERON:0014501 proximal phalanx of digit 1 13 18559 -UBERON:0004332 proximal phalanx of pedal digit 1 14 18560 -UBERON:0004338 proximal phalanx of manual digit 1 14 18561 -UBERON:0014502 proximal phalanx of digit 2 13 18562 -UBERON:0004328 proximal phalanx of manual digit 2 14 18563 -UBERON:0004333 proximal phalanx of pedal digit 2 14 18564 -UBERON:0014503 proximal phalanx of digit 3 13 18565 -UBERON:0004329 proximal phalanx of manual digit 3 14 18566 -UBERON:0004334 proximal phalanx of pedal digit 3 14 18567 -UBERON:0009556 long pastern bone 14 18568 -UBERON:0014504 proximal phalanx of digit 4 13 18569 -UBERON:0004330 proximal phalanx of manual digit 4 14 18570 -UBERON:0004335 proximal phalanx of pedal digit 4 14 18571 -UBERON:0014505 proximal phalanx of digit 5 13 18572 -UBERON:0004331 proximal phalanx of manual digit 5 14 18573 -UBERON:0004336 proximal phalanx of pedal digit 5 14 18574 -UBERON:0009558 pastern bone 12 18575 -UBERON:0009555 short pastern bone 13 18576 -UBERON:0009556 long pastern bone 13 18577 -UBERON:0018266 third phalanx 12 18578 -UBERON:0018322 fourth phalanx 12 18579 -UBERON:4100005 second phalanx 12 18580 -UBERON:0003821 metapodium bone 11 18581 -UBERON:0001448 metatarsal bone 12 18582 -UBERON:0003650 metatarsal bone of digit 1 13 18583 -UBERON:0003651 metatarsal bone of digit 2 13 18584 -UBERON:0003652 metatarsal bone of digit 3 13 18585 -UBERON:0003653 metatarsal bone of digit 4 13 18586 -UBERON:0003654 metatarsal bone of digit 5 13 18587 -UBERON:0013588 fused metatarsal bones 3 and 4 13 18588 -UBERON:0014763 fused metatarsal bones 2-4 14 18589 -UBERON:4200153 metatarsal bone of digit 6 13 18590 -UBERON:4200157 metatarsal bone of digit 7 13 18591 -UBERON:4200158 metatarsal bone of digit 8 13 18592 -UBERON:0002374 metacarpal bone 12 18593 -UBERON:0003645 metacarpal bone of digit 1 13 18594 -UBERON:0003646 metacarpal bone of digit 2 13 18595 -UBERON:0003647 metacarpal bone of digit 3 13 18596 -UBERON:0003648 metacarpal bone of digit 4 13 18597 -UBERON:0003649 metacarpal bone of digit 5 13 18598 -UBERON:0013587 fused metacarpal bones 3 and 4 13 18599 -UBERON:0012267 equine splint bone 12 18600 -UBERON:0012268 equine forelimb splint bone 13 18601 -UBERON:0012269 equine hindlimb splint bone 13 18602 -UBERON:0013581 metapodium bone 1 12 18603 -UBERON:0003645 metacarpal bone of digit 1 13 18604 -UBERON:0003650 metatarsal bone of digit 1 13 18605 -UBERON:0013582 metapodium bone 2 12 18606 -UBERON:0003646 metacarpal bone of digit 2 13 18607 -UBERON:0003651 metatarsal bone of digit 2 13 18608 -UBERON:0013583 metapodium bone 3 12 18609 -UBERON:0003647 metacarpal bone of digit 3 13 18610 -UBERON:0003652 metatarsal bone of digit 3 13 18611 -UBERON:0013584 metapodium bone 4 12 18612 -UBERON:0003648 metacarpal bone of digit 4 13 18613 -UBERON:0003653 metatarsal bone of digit 4 13 18614 -UBERON:0013585 metapodium bone 5 12 18615 -UBERON:0003649 metacarpal bone of digit 5 13 18616 -UBERON:0003654 metatarsal bone of digit 5 13 18617 -UBERON:0013586 fused metapodial bones 3 and 4 12 18618 -UBERON:0013587 fused metacarpal bones 3 and 4 13 18619 -UBERON:0013588 fused metatarsal bones 3 and 4 13 18620 -UBERON:0014763 fused metatarsal bones 2-4 14 18621 -UBERON:0014762 fused metapodial bones 2-4 13 18622 -UBERON:0014763 fused metatarsal bones 2-4 14 18623 -UBERON:4200154 metapodium bone 6 12 18624 -UBERON:4200153 metatarsal bone of digit 6 13 18625 -UBERON:4200155 metapodium bone 7 12 18626 -UBERON:4200157 metatarsal bone of digit 7 13 18627 -UBERON:4200156 metapodium bone 8 12 18628 -UBERON:4200158 metatarsal bone of digit 8 13 18629 -UBERON:0012358 manual digitopodium bone 11 18630 -UBERON:0002374 metacarpal bone 12 18631 -UBERON:0003645 metacarpal bone of digit 1 13 18632 -UBERON:0003646 metacarpal bone of digit 2 13 18633 -UBERON:0003647 metacarpal bone of digit 3 13 18634 -UBERON:0003648 metacarpal bone of digit 4 13 18635 -UBERON:0003649 metacarpal bone of digit 5 13 18636 -UBERON:0013587 fused metacarpal bones 3 and 4 13 18637 -UBERON:0004249 manual digit bone 12 18638 -UBERON:0001436 phalanx of manus 13 18639 -UBERON:0002234 proximal phalanx of manus 14 18640 -UBERON:0004328 proximal phalanx of manual digit 2 15 18641 -UBERON:0004329 proximal phalanx of manual digit 3 15 18642 -UBERON:0004330 proximal phalanx of manual digit 4 15 18643 -UBERON:0004331 proximal phalanx of manual digit 5 15 18644 -UBERON:0004338 proximal phalanx of manual digit 1 15 18645 -UBERON:0003620 manual digit 1 phalanx 14 18646 -UBERON:0004337 distal phalanx of manual digit 1 15 18647 -UBERON:0004338 proximal phalanx of manual digit 1 15 18648 -UBERON:4200219 middle phalanx of manual digit 1 15 18649 -UBERON:0003636 manual digit 2 phalanx 14 18650 -UBERON:0004311 distal phalanx of manual digit 2 15 18651 -UBERON:0004320 middle phalanx of manual digit 2 15 18652 -UBERON:0004328 proximal phalanx of manual digit 2 15 18653 -UBERON:0003637 manual digit 3 phalanx 14 18654 -UBERON:0004312 distal phalanx of manual digit 3 15 18655 -UBERON:0004321 middle phalanx of manual digit 3 15 18656 -UBERON:0004329 proximal phalanx of manual digit 3 15 18657 -UBERON:0003638 manual digit 4 phalanx 14 18658 -UBERON:0004313 distal phalanx of manual digit 4 15 18659 -UBERON:0004322 middle phalanx of manual digit 4 15 18660 -UBERON:0004330 proximal phalanx of manual digit 4 15 18661 -UBERON:0003639 manual digit 5 phalanx 14 18662 -UBERON:0004314 distal phalanx of manual digit 5 15 18663 -UBERON:0004323 middle phalanx of manual digit 5 15 18664 -UBERON:0004331 proximal phalanx of manual digit 5 15 18665 -UBERON:0003864 middle phalanx of manus 14 18666 -UBERON:0004320 middle phalanx of manual digit 2 15 18667 -UBERON:0004321 middle phalanx of manual digit 3 15 18668 -UBERON:0004322 middle phalanx of manual digit 4 15 18669 -UBERON:0004323 middle phalanx of manual digit 5 15 18670 -UBERON:4200219 middle phalanx of manual digit 1 15 18671 -UBERON:0003865 distal phalanx of manus 14 18672 -UBERON:0004311 distal phalanx of manual digit 2 15 18673 -UBERON:0004312 distal phalanx of manual digit 3 15 18674 -UBERON:0004313 distal phalanx of manual digit 4 15 18675 -UBERON:0004314 distal phalanx of manual digit 5 15 18676 -UBERON:0004337 distal phalanx of manual digit 1 15 18677 -UBERON:0007991 proximal sesamoid bone of manus 13 18678 -UBERON:3000856 intercalary element of fore digit 13 18679 -UBERON:0012268 equine forelimb splint bone 12 18680 -UBERON:0012359 pedal digitopodium bone 11 18681 -UBERON:0001448 metatarsal bone 12 18682 -UBERON:0003650 metatarsal bone of digit 1 13 18683 -UBERON:0003651 metatarsal bone of digit 2 13 18684 -UBERON:0003652 metatarsal bone of digit 3 13 18685 -UBERON:0003653 metatarsal bone of digit 4 13 18686 -UBERON:0003654 metatarsal bone of digit 5 13 18687 -UBERON:0013588 fused metatarsal bones 3 and 4 13 18688 -UBERON:0014763 fused metatarsal bones 2-4 14 18689 -UBERON:4200153 metatarsal bone of digit 6 13 18690 -UBERON:4200157 metatarsal bone of digit 7 13 18691 -UBERON:4200158 metatarsal bone of digit 8 13 18692 -UBERON:0004248 pedal digit bone 12 18693 -UBERON:0001449 phalanx of pes 13 18694 -UBERON:0003640 pedal digit 1 phalanx 14 18695 -UBERON:0004315 distal phalanx of pedal digit 1 15 18696 -UBERON:0004332 proximal phalanx of pedal digit 1 15 18697 -UBERON:0003641 pedal digit 2 phalanx 14 18698 -UBERON:0004316 distal phalanx of pedal digit 2 15 18699 -UBERON:0004324 middle phalanx of pedal digit 2 15 18700 -UBERON:0004333 proximal phalanx of pedal digit 2 15 18701 -UBERON:0003642 pedal digit 3 phalanx 14 18702 -UBERON:0004317 distal phalanx of pedal digit 3 15 18703 -UBERON:0004325 middle phalanx of pedal digit 3 15 18704 -UBERON:0004334 proximal phalanx of pedal digit 3 15 18705 -UBERON:0003862 pedal digit 4 phalanx 14 18706 -UBERON:0004318 distal phalanx of pedal digit 4 15 18707 -UBERON:0004326 middle phalanx of pedal digit 4 15 18708 -UBERON:0004335 proximal phalanx of pedal digit 4 15 18709 -UBERON:0003863 pedal digit 5 phalanx 14 18710 -UBERON:0004319 distal phalanx of pedal digit 5 15 18711 -UBERON:0004327 middle phalanx of pedal digit 5 15 18712 -UBERON:0004336 proximal phalanx of pedal digit 5 15 18713 -UBERON:0003866 middle phalanx of pes 14 18714 -UBERON:0004324 middle phalanx of pedal digit 2 15 18715 -UBERON:0004325 middle phalanx of pedal digit 3 15 18716 -UBERON:0004326 middle phalanx of pedal digit 4 15 18717 -UBERON:0004327 middle phalanx of pedal digit 5 15 18718 -UBERON:0003867 distal phalanx of pes 14 18719 -UBERON:0004315 distal phalanx of pedal digit 1 15 18720 -UBERON:0004316 distal phalanx of pedal digit 2 15 18721 -UBERON:0004317 distal phalanx of pedal digit 3 15 18722 -UBERON:0004318 distal phalanx of pedal digit 4 15 18723 -UBERON:0004319 distal phalanx of pedal digit 5 15 18724 -UBERON:0003868 proximal phalanx of pes 14 18725 -UBERON:0004332 proximal phalanx of pedal digit 1 15 18726 -UBERON:0004333 proximal phalanx of pedal digit 2 15 18727 -UBERON:0004334 proximal phalanx of pedal digit 3 15 18728 -UBERON:0004335 proximal phalanx of pedal digit 4 15 18729 -UBERON:0004336 proximal phalanx of pedal digit 5 15 18730 -UBERON:4100009 pedal digit 7 phalanx 14 18731 -UBERON:0007990 proximal sesamoid bone of pes 13 18732 -UBERON:3000931 intercalary element of hind digit 13 18733 -UBERON:3010675 bony nodule of terminal phalanx of hind digit 13 18734 -UBERON:0012269 equine hindlimb splint bone 12 18735 -UBERON:3010624 subarticular sesamoid 11 18736 -UBERON:0002478 orbitosphenoid 8 18737 -UBERON:0003106 urostyle 8 18738 -UBERON:2001583 preural centrum 1+ ural centrum 1 9 18739 -UBERON:2002168 preural centrum 1 + ural centrum 1 + ural centrum 2 9 18740 -UBERON:0003861 neural arch 8 18741 -UBERON:0000218 vertebral arch of axis 9 18742 -UBERON:2000525 intercalarium 10 18743 -UBERON:0008433 lumbar vertebral arch 9 18744 -UBERON:0008434 cervical vertebral arch 9 18745 -UBERON:0008437 posterior arch of atlas 10 18746 -UBERON:0008435 vertebral arch of sacral segment 9 18747 -UBERON:0008436 thoracic vertebral arch 9 18748 -UBERON:2000429 scaphium 9 18749 -UBERON:2000602 uroneural 9 18750 -UBERON:2002064 uroneural 1 10 18751 -UBERON:2002084 pleurostyle 10 18752 -UBERON:2002109 uroneural 2 10 18753 -UBERON:2002115 uroneural 3 10 18754 -UBERON:2002167 stegural 10 18755 -UBERON:4500002 upper uroneural 10 18756 -UBERON:2001253 neural arch 2 9 18757 -UBERON:2001394 neural arch 3 9 18758 -UBERON:2001395 neural arch 4 9 18759 -UBERON:2001666 rudimentary neural arch 9 18760 -UBERON:2001877 neural arch 1 9 18761 -UBERON:2001884 accessory neural arch 9 18762 -UBERON:2002123 neural arch 5 9 18763 -UBERON:3000796 imbricate neural arch 9 18764 -UBERON:3000797 non-imbricate neural arch 9 18765 -UBERON:0003966 gonial bone 8 18766 -UBERON:0004743 coracoid bone 8 18767 -UBERON:0004744 articular/anguloarticular 8 18768 -UBERON:0004746 prootic bone 8 18769 -UBERON:0004747 supraoccipital bone 8 18770 -UBERON:0004751 hypohyal bone 8 18771 -UBERON:0005411 bony otic capsule 8 18772 -UBERON:0006428 basisphenoid bone 8 18773 -UBERON:0006597 quadrate bone 8 18774 -UBERON:0006721 alisphenoid bone 8 18775 -UBERON:0006849 scapula 8 18776 -UBERON:0008828 presphenoid bone 8 18777 -UBERON:0008913 perichondral bone 8 18778 -UBERON:0009470 postsphenoidal bone 8 18779 -UBERON:0009639 body of sphenoid 8 18780 -UBERON:0010297 endochondral scleral ossicle 8 18781 -UBERON:2001432 anterior sclerotic bone 9 18782 -UBERON:2001433 posterior sclerotic bone 9 18783 -UBERON:0010389 pterygoid bone 8 18784 -UBERON:0011238 mesethmoid bone 8 18785 -UBERON:0011246 procoracoid bone 8 18786 -UBERON:0011606 hyomandibular bone 8 18787 -UBERON:0011611 ceratohyal bone 8 18788 -UBERON:0011618 basihyal bone 8 18789 -UBERON:0011619 stylohyoid bone 8 18790 -UBERON:0011622 thyrohyoid bone 8 18791 -UBERON:0011770 mentomeckelian 8 18792 -UBERON:0013190 entotympanic bone 8 18793 -UBERON:0018356 rostral entotympanic element 9 18794 -UBERON:2000171 interhyal bone 8 18795 -UBERON:2000196 dorsal hypohyal bone 8 18796 -UBERON:2000203 rhinosphenoid 8 18797 -UBERON:2000226 lateral ethmoid bone 8 18798 -UBERON:2000239 mesocoracoid bone 8 18799 -UBERON:2000240 metapterygoid 8 18800 -UBERON:2000271 radial bone 8 18801 -UBERON:1500006 paired fin radial bone 9 18802 -UBERON:2000508 pelvic fin radial bone 10 18803 -UBERON:1500008 pelvic fin distal radial bone 11 18804 -UBERON:2001415 pelvic fin distal radial bone 2 12 18805 -UBERON:2001416 pelvic fin distal radial bone 3 12 18806 -UBERON:2001417 pelvic fin distal radial bone 1 12 18807 -UBERON:1500009 pelvic fin basipterygial radial 11 18808 -UBERON:1500010 pelvic fin middle radial bone 11 18809 -UBERON:2001586 pectoral fin radial bone 10 18810 -UBERON:2001587 pectoral fin proximal radial bone 11 18811 -UBERON:2002026 pectoral fin proximal radial bone 1 12 18812 -UBERON:2002027 pectoral fin proximal radial bone 2 12 18813 -UBERON:2002028 pectoral fin proximal radial bone 3 12 18814 -UBERON:2002029 pectoral fin proximal radial bone 4 12 18815 -UBERON:4300087 mesopterygium bone 12 18816 -UBERON:4300088 metapterygium bone 12 18817 -UBERON:4300089 propterygium bone 12 18818 -UBERON:2001588 pectoral fin distal radial bone 11 18819 -UBERON:2002277 pectoral fin distal radial bone 1 12 18820 -UBERON:2002279 pectoral fin distal radial bone 2 12 18821 -UBERON:2002280 pectoral fin distal radial bone 3 12 18822 -UBERON:2005225 median fin radial bone 9 18823 -UBERON:2001671 anal fin radial bone 10 18824 -UBERON:2000268 anal fin proximal radial bone 11 18825 -UBERON:2000646 anal fin distal radial bone 11 18826 -UBERON:2001614 anal fin middle radial bone 11 18827 -UBERON:2001672 dorsal fin radial bone 10 18828 -UBERON:2000936 dorsal fin distal radial bone 11 18829 -UBERON:2005372 dorsal fin distal radial bone 1 12 18830 -UBERON:2005373 dorsal fin distal radial bone 2 12 18831 -UBERON:2005374 dorsal fin distal radial bone 3 12 18832 -UBERON:2005375 dorsal fin distal radial bone 4 12 18833 -UBERON:2005376 dorsal fin distal radial bone 5 12 18834 -UBERON:2005377 dorsal fin distal radial bone 6 12 18835 -UBERON:2005378 dorsal fin distal radial bone 7 12 18836 -UBERON:2005379 dorsal fin distal radial bone 8 12 18837 -UBERON:2000947 dorsal fin proximal radial bone 11 18838 -UBERON:2001818 dorsal fin proximal radial bone 1 12 18839 -UBERON:2001819 dorsal fin proximal radial bone 2 12 18840 -UBERON:2005380 dorsal fin proximal radial bone 3 12 18841 -UBERON:2005381 dorsal fin proximal radial bone 4 12 18842 -UBERON:2005382 dorsal fin proximal radial bone 5 12 18843 -UBERON:2005383 dorsal fin proximal radial bone 6 12 18844 -UBERON:2005384 dorsal fin proximal radial bone 7 12 18845 -UBERON:2005385 dorsal fin proximal radial bone 8 12 18846 -UBERON:2001613 dorsal fin middle radial bone 11 18847 -UBERON:2005226 median fin proximal radial bone 10 18848 -UBERON:2000300 ventral hypohyal bone 8 18849 -UBERON:2000337 basioccipital posterodorsal region 8 18850 -UBERON:2000348 exoccipital posteroventral region 8 18851 -UBERON:2000363 hypobranchial bone 8 18852 -UBERON:2001233 hypobranchial 1 bone 9 18853 -UBERON:2001234 hypobranchial 4 bone 9 18854 -UBERON:2001235 hypobranchial 3 bone 9 18855 -UBERON:2001236 hypobranchial 2 bone 9 18856 -UBERON:2000419 pterosphenoid 8 18857 -UBERON:2000422 retroarticular 8 18858 -UBERON:2000488 ceratobranchial bone 8 18859 -UBERON:2001237 ceratobranchial 1 bone 9 18860 -UBERON:2001239 ceratobranchial 5 bone 9 18861 -UBERON:2001240 ceratobranchial 4 bone 9 18862 -UBERON:2001241 ceratobranchial 3 bone 9 18863 -UBERON:2001242 ceratobranchial 2 bone 9 18864 -UBERON:2000526 intermuscular bone 8 18865 -UBERON:2000350 epipleural 9 18866 -UBERON:2000507 epineural 9 18867 -UBERON:2002263 epineural 1 10 18868 -UBERON:2002264 epineural 2 10 18869 -UBERON:2002265 epineural 3 10 18870 -UBERON:2002266 epineural 4 10 18871 -UBERON:2002267 epineural 5 10 18872 -UBERON:2002268 epineural 6 10 18873 -UBERON:2001798 epicentral bone 9 18874 -UBERON:2001800 cephalic rib 10 18875 -UBERON:2002127 myorhabdoid bone 9 18876 -UBERON:2000527 pharyngobranchial bone 8 18877 -UBERON:2001250 pharyngobranchial 2 bone 9 18878 -UBERON:2001252 pharyngobranchial 3 bone 9 18879 -UBERON:2001635 pharyngobranchial 1 bone 9 18880 -UBERON:2001636 pharyngobranchial 4 bone 9 18881 -UBERON:2001858 suprapharyngobranchial 9 18882 -UBERON:2000576 pterotic 8 18883 -UBERON:2000587 sphenotic 8 18884 -UBERON:2000620 autopalatine 8 18885 -UBERON:2000623 basipterygium bone 8 18886 -UBERON:2000627 posterior ceratohyal 8 18887 -UBERON:2000658 epibranchial bone 8 18888 -UBERON:2001243 epibranchial 1 bone 9 18889 -UBERON:2001245 epibranchial 4 bone 9 18890 -UBERON:2001246 epibranchial 2 bone 9 18891 -UBERON:2001247 epibranchial 3 bone 9 18892 -UBERON:2000692 symplectic 8 18893 -UBERON:2000698 tripus 8 18894 -UBERON:2000735 hemal postzygapophysis 8 18895 -UBERON:2000859 specialized hemal arch and spine 8 18896 -UBERON:2001163 supraneural 7 bone 8 18897 -UBERON:2001164 supraneural 6 bone 8 18898 -UBERON:2001165 supraneural 5 bone 8 18899 -UBERON:2001166 supraneural 9 bone 8 18900 -UBERON:2001171 os suspensorium 8 18901 -UBERON:2001191 supraneural 2 bone 8 18902 -UBERON:2001192 supraneural 3 bone 8 18903 -UBERON:2001193 supraneural 8 bone 8 18904 -UBERON:2001223 basibranchial 1 bone 8 18905 -UBERON:2001224 basibranchial 2 bone 8 18906 -UBERON:2001225 basibranchial 3 bone 8 18907 -UBERON:2001226 basibranchial 4 bone 8 18908 -UBERON:2001275 sublingual 8 18909 -UBERON:2001333 sublingual dorsal and ventral fused 9 18910 -UBERON:2001475 sublingual dorsal ossification 9 18911 -UBERON:2001476 sublingual ventral ossification 9 18912 -UBERON:2001364 hemal spine 8 18913 -UBERON:2000364 hypural 9 18914 -UBERON:2001560 hypural 1 10 18915 -UBERON:2001561 hypural 2 10 18916 -UBERON:2001562 hypural 3 10 18917 -UBERON:2001563 hypural 4 10 18918 -UBERON:2001564 hypural 5 10 18919 -UBERON:2002056 hypural 6 10 18920 -UBERON:2002132 hypural 7 10 18921 -UBERON:4300248 fused hypural 1 and 2 10 18922 -UBERON:2000438 parhypural 9 18923 -UBERON:2001396 parapophysis + rib of vertebra 4 8 18924 -UBERON:2001404 preethmoid bone 8 18925 -UBERON:2001406 kinethmoid bone 8 18926 -UBERON:2001412 epiotic 8 18927 -UBERON:2001553 manubrium 8 18928 -UBERON:2001592 claustrum bone 8 18929 -UBERON:2001697 transverse radial 8 18930 -UBERON:2001698 anal-fin stay 8 18931 -UBERON:2001699 dorsal-fin stay 8 18932 -UBERON:2001701 basibranchial 5 bone 8 18933 -UBERON:2001805 articular bone 8 18934 -UBERON:2001817 middle nuchal plate 8 18935 -UBERON:2001820 posterior nuchal plate 8 18936 -UBERON:2001882 parapophysis + rib of vertebra 3 8 18937 -UBERON:2001883 parapophysis + rib of vertebra 3 + rib of vertebra 4 8 18938 -UBERON:2001888 supraneural 1 bone 8 18939 -UBERON:2001997 parietal-supraoccipital 8 18940 -UBERON:2002007 supraneural 4 bone 8 18941 -UBERON:2002019 pterotic-posttemporal-supracleithrum 8 18942 -UBERON:2002023 second preethmoid 8 18943 -UBERON:2002077 lateropterygium 8 18944 -UBERON:2002078 hypural plate 8 18945 -UBERON:2002085 ural centrum 8 18946 -UBERON:2001581 ural centrum 2 9 18947 -UBERON:2002065 ural centrum 1 9 18948 -UBERON:2002160 ural centrum 3 9 18949 -UBERON:2002161 ural centrum 4 9 18950 -UBERON:2002088 interhaemal bone 8 18951 -UBERON:2002214 os suspensorium medial flange 8 18952 -UBERON:2007005 hemal prezygapophysis 8 18953 -UBERON:3000368 otoccipital 8 18954 -UBERON:3000515 pseudoangular 8 18955 -UBERON:3000518 pseudodentary 8 18956 -UBERON:3000572 sphenethmoid 8 18957 -UBERON:3000591 suprasphenoid 8 18958 -UBERON:3000645 corpus 8 18959 -UBERON:3000663 parahyoid 8 18960 -UBERON:3000950 os triangulare 8 18961 -UBERON:3000951 anterior radial 8 18962 -UBERON:3000952 posterior radial 8 18963 -UBERON:3000954 hypobranchial I 8 18964 -UBERON:3000955 ceratobranchial I 8 18965 -UBERON:3000956 hypobranchial II 8 18966 -UBERON:4200091 ethomosphenoid region 8 18967 -UBERON:4500017 interarcual bone 8 18968 -UBERON:0002514 intramembranous bone 7 18969 -UBERON:0000209 tetrapod frontal bone 8 18970 -UBERON:0000210 tetrapod parietal bone 8 18971 -UBERON:0001681 nasal bone 8 18972 -UBERON:0001684 mandible 8 18973 -UBERON:0001695 squamous part of temporal bone 8 18974 -UBERON:0002218 tympanic ring 8 18975 -UBERON:0002244 premaxilla 8 18976 -UBERON:0002397 maxilla 8 18977 -UBERON:0004745 parasphenoid 8 18978 -UBERON:0004865 actinopterygian parietal bone 8 18979 -UBERON:0010298 intramembranous scleral ossicle 8 18980 -UBERON:0010308 os opticus 9 18981 -UBERON:0011167 septomaxilla bone 8 18982 -UBERON:0011267 quadratojugal bone 8 18983 -UBERON:0011629 supratemporal bone 8 18984 -UBERON:0011630 intertemporal bone 8 18985 -UBERON:0011631 tabular bone 8 18986 -UBERON:0003463 trunk bone 7 18987 -UBERON:0003827 thoracic segment bone 8 18988 -UBERON:0002208 sternebra 9 18989 -UBERON:0002347 thoracic vertebra 9 18990 -UBERON:0004626 thoracic vertebra 1 10 18991 -UBERON:0004627 thoracic vertebra 2 10 18992 -UBERON:0004628 thoracic vertebra 3 10 18993 -UBERON:0004629 thoracic vertebra 4 10 18994 -UBERON:0004630 thoracic vertebra 5 10 18995 -UBERON:0004631 thoracic vertebra 6 10 18996 -UBERON:0004632 thoracic vertebra 7 10 18997 -UBERON:0004633 thoracic vertebra 9 10 18998 -UBERON:0004634 thoracic vertebra 10 10 18999 -UBERON:0004635 thoracic vertebra 11 10 19000 -UBERON:0004636 thoracic vertebra 12 10 19001 -UBERON:0011050 thoracic vertebra 8 10 19002 -UBERON:0003459 chest bone 9 19003 -UBERON:0008436 thoracic vertebral arch 9 19004 -UBERON:0003828 abdominal segment bone 8 19005 -UBERON:0001094 sacral vertebra 9 19006 -UBERON:0004622 sacral vertebra 1 10 19007 -UBERON:0004623 sacral vertebra 2 10 19008 -UBERON:0004624 sacral vertebra 3 10 19009 -UBERON:0004625 sacral vertebra 4 10 19010 -UBERON:0002414 lumbar vertebra 9 19011 -UBERON:0004617 lumbar vertebra 1 10 19012 -UBERON:0004618 lumbar vertebra 2 10 19013 -UBERON:0004619 lumbar vertebra 3 10 19014 -UBERON:0004620 lumbar vertebra 4 10 19015 -UBERON:0004621 lumbar vertebra 5 10 19016 -UBERON:0003690 fused sacrum 9 19017 -UBERON:0007830 pelvic girdle bone/zone 9 19018 -UBERON:0001272 innominate bone 10 19019 -UBERON:0001273 ilium 10 19020 -UBERON:4200220 iliac ramus 11 19021 -UBERON:0001274 ischium 10 19022 -UBERON:0001275 pubis 10 19023 -UBERON:0013204 epipubic bone 10 19024 -UBERON:2000623 basipterygium bone 10 19025 -UBERON:0008433 lumbar vertebral arch 9 19026 -UBERON:0008435 vertebral arch of sacral segment 9 19027 -UBERON:0010898 gastralium 9 19028 -UBERON:0012179 bone of pelvis 9 19029 -UBERON:4300128 sacral rib 9 19030 -UBERON:0011677 trunk vertebra 8 19031 -UBERON:0004247 bone of dorsum 7 19032 -UBERON:0001094 sacral vertebra 8 19033 -UBERON:0004622 sacral vertebra 1 9 19034 -UBERON:0004623 sacral vertebra 2 9 19035 -UBERON:0004624 sacral vertebra 3 9 19036 -UBERON:0004625 sacral vertebra 4 9 19037 -UBERON:0001095 caudal vertebra 8 19038 -UBERON:2000734 preural vertebra 9 19039 -UBERON:2000557 preural 1 vertebra 10 19040 -UBERON:2000586 preural 2 vertebra 10 19041 -UBERON:2002112 preural 3 vertebra 10 19042 -UBERON:2002162 ural vertebra 9 19043 -UBERON:2001579 ural vertebra 2 10 19044 -UBERON:2002163 ural vertebra 1 10 19045 -UBERON:4300105 caudal vertebra 1 9 19046 -UBERON:0001350 coccyx 8 19047 -UBERON:0002347 thoracic vertebra 8 19048 -UBERON:0004626 thoracic vertebra 1 9 19049 -UBERON:0004627 thoracic vertebra 2 9 19050 -UBERON:0004628 thoracic vertebra 3 9 19051 -UBERON:0004629 thoracic vertebra 4 9 19052 -UBERON:0004630 thoracic vertebra 5 9 19053 -UBERON:0004631 thoracic vertebra 6 9 19054 -UBERON:0004632 thoracic vertebra 7 9 19055 -UBERON:0004633 thoracic vertebra 9 9 19056 -UBERON:0004634 thoracic vertebra 10 9 19057 -UBERON:0004635 thoracic vertebra 11 9 19058 -UBERON:0004636 thoracic vertebra 12 9 19059 -UBERON:0011050 thoracic vertebra 8 9 19060 -UBERON:0002413 cervical vertebra 8 19061 -UBERON:0004612 mammalian cervical vertebra 3 9 19062 -UBERON:0004613 mammalian cervical vertebra 4 9 19063 -UBERON:0004614 mammalian cervical vertebra 5 9 19064 -UBERON:0004615 mammalian cervical vertebra 6 9 19065 -UBERON:0004616 mammalian cervical vertebra 7 9 19066 -UBERON:0007800 proatlas 9 19067 -UBERON:0002414 lumbar vertebra 8 19068 -UBERON:0004617 lumbar vertebra 1 9 19069 -UBERON:0004618 lumbar vertebra 2 9 19070 -UBERON:0004619 lumbar vertebra 3 9 19071 -UBERON:0004620 lumbar vertebra 4 9 19072 -UBERON:0004621 lumbar vertebra 5 9 19073 -UBERON:0003690 fused sacrum 8 19074 -UBERON:0008433 lumbar vertebral arch 8 19075 -UBERON:0008434 cervical vertebral arch 8 19076 -UBERON:0008437 posterior arch of atlas 9 19077 -UBERON:0008435 vertebral arch of sacral segment 8 19078 -UBERON:0008436 thoracic vertebral arch 8 19079 -UBERON:0011665 carapace bone 8 19080 -UBERON:0011666 peripheral plate of carapace 9 19081 -UBERON:0011667 pleural plate of carapace 9 19082 -UBERON:0011669 neural plate of carapace 9 19083 -UBERON:0011670 pygal plate of carapace 9 19084 -UBERON:0011671 nuchal plate of carapace 9 19085 -UBERON:0011672 suprapygal plate of carapace 9 19086 -UBERON:0014708 costal plate of carapace 9 19087 -UBERON:0011677 trunk vertebra 8 19088 -UBERON:2000735 hemal postzygapophysis 8 19089 -UBERON:2001364 hemal spine 8 19090 -UBERON:2000364 hypural 9 19091 -UBERON:2001560 hypural 1 10 19092 -UBERON:2001561 hypural 2 10 19093 -UBERON:2001562 hypural 3 10 19094 -UBERON:2001563 hypural 4 10 19095 -UBERON:2001564 hypural 5 10 19096 -UBERON:2002056 hypural 6 10 19097 -UBERON:2002132 hypural 7 10 19098 -UBERON:4300248 fused hypural 1 and 2 10 19099 -UBERON:2000438 parhypural 9 19100 -UBERON:2001581 ural centrum 2 8 19101 -UBERON:2001672 dorsal fin radial bone 8 19102 -UBERON:2000936 dorsal fin distal radial bone 9 19103 -UBERON:2005372 dorsal fin distal radial bone 1 10 19104 -UBERON:2005373 dorsal fin distal radial bone 2 10 19105 -UBERON:2005374 dorsal fin distal radial bone 3 10 19106 -UBERON:2005375 dorsal fin distal radial bone 4 10 19107 -UBERON:2005376 dorsal fin distal radial bone 5 10 19108 -UBERON:2005377 dorsal fin distal radial bone 6 10 19109 -UBERON:2005378 dorsal fin distal radial bone 7 10 19110 -UBERON:2005379 dorsal fin distal radial bone 8 10 19111 -UBERON:2000947 dorsal fin proximal radial bone 9 19112 -UBERON:2001818 dorsal fin proximal radial bone 1 10 19113 -UBERON:2001819 dorsal fin proximal radial bone 2 10 19114 -UBERON:2005380 dorsal fin proximal radial bone 3 10 19115 -UBERON:2005381 dorsal fin proximal radial bone 4 10 19116 -UBERON:2005382 dorsal fin proximal radial bone 5 10 19117 -UBERON:2005383 dorsal fin proximal radial bone 6 10 19118 -UBERON:2005384 dorsal fin proximal radial bone 7 10 19119 -UBERON:2005385 dorsal fin proximal radial bone 8 10 19120 -UBERON:2001613 dorsal fin middle radial bone 9 19121 -UBERON:2001699 dorsal-fin stay 8 19122 -UBERON:2001817 middle nuchal plate 8 19123 -UBERON:2001820 posterior nuchal plate 8 19124 -UBERON:2002065 ural centrum 1 8 19125 -UBERON:2007005 hemal prezygapophysis 8 19126 -UBERON:4000177 dorsal fin lepidotrichium 8 19127 -UBERON:2002261 dorsal fin spine 9 19128 -UBERON:2001789 dorsal fin spine 1 10 19129 -UBERON:2001790 dorsal fin spine 2 10 19130 -UBERON:4300175 procumbent dorsal fin spine 10 19131 -UBERON:4300116 dorsal fin ray 9 19132 -UBERON:2001754 dorsal fin ray 1 10 19133 -UBERON:2001755 dorsal fin ray 2 10 19134 -UBERON:2001756 dorsal fin ray 3 10 19135 -UBERON:2001757 dorsal fin ray 4 10 19136 -UBERON:2001758 dorsal fin ray 5 10 19137 -UBERON:2001759 dorsal fin ray 6 10 19138 -UBERON:2001760 dorsal fin ray 7 10 19139 -UBERON:2001785 branched dorsal fin ray 10 19140 -UBERON:2001786 unbranched dorsal fin ray 10 19141 -UBERON:0004376 fin bone 7 19142 -UBERON:2000271 radial bone 8 19143 -UBERON:1500006 paired fin radial bone 9 19144 -UBERON:2000508 pelvic fin radial bone 10 19145 -UBERON:1500008 pelvic fin distal radial bone 11 19146 -UBERON:2001415 pelvic fin distal radial bone 2 12 19147 -UBERON:2001416 pelvic fin distal radial bone 3 12 19148 -UBERON:2001417 pelvic fin distal radial bone 1 12 19149 -UBERON:1500009 pelvic fin basipterygial radial 11 19150 -UBERON:1500010 pelvic fin middle radial bone 11 19151 -UBERON:2001586 pectoral fin radial bone 10 19152 -UBERON:2001587 pectoral fin proximal radial bone 11 19153 -UBERON:2002026 pectoral fin proximal radial bone 1 12 19154 -UBERON:2002027 pectoral fin proximal radial bone 2 12 19155 -UBERON:2002028 pectoral fin proximal radial bone 3 12 19156 -UBERON:2002029 pectoral fin proximal radial bone 4 12 19157 -UBERON:4300087 mesopterygium bone 12 19158 -UBERON:4300088 metapterygium bone 12 19159 -UBERON:4300089 propterygium bone 12 19160 -UBERON:2001588 pectoral fin distal radial bone 11 19161 -UBERON:2002277 pectoral fin distal radial bone 1 12 19162 -UBERON:2002279 pectoral fin distal radial bone 2 12 19163 -UBERON:2002280 pectoral fin distal radial bone 3 12 19164 -UBERON:2005225 median fin radial bone 9 19165 -UBERON:2001671 anal fin radial bone 10 19166 -UBERON:2000268 anal fin proximal radial bone 11 19167 -UBERON:2000646 anal fin distal radial bone 11 19168 -UBERON:2001614 anal fin middle radial bone 11 19169 -UBERON:2001672 dorsal fin radial bone 10 19170 -UBERON:2000936 dorsal fin distal radial bone 11 19171 -UBERON:2005372 dorsal fin distal radial bone 1 12 19172 -UBERON:2005373 dorsal fin distal radial bone 2 12 19173 -UBERON:2005374 dorsal fin distal radial bone 3 12 19174 -UBERON:2005375 dorsal fin distal radial bone 4 12 19175 -UBERON:2005376 dorsal fin distal radial bone 5 12 19176 -UBERON:2005377 dorsal fin distal radial bone 6 12 19177 -UBERON:2005378 dorsal fin distal radial bone 7 12 19178 -UBERON:2005379 dorsal fin distal radial bone 8 12 19179 -UBERON:2000947 dorsal fin proximal radial bone 11 19180 -UBERON:2001818 dorsal fin proximal radial bone 1 12 19181 -UBERON:2001819 dorsal fin proximal radial bone 2 12 19182 -UBERON:2005380 dorsal fin proximal radial bone 3 12 19183 -UBERON:2005381 dorsal fin proximal radial bone 4 12 19184 -UBERON:2005382 dorsal fin proximal radial bone 5 12 19185 -UBERON:2005383 dorsal fin proximal radial bone 6 12 19186 -UBERON:2005384 dorsal fin proximal radial bone 7 12 19187 -UBERON:2005385 dorsal fin proximal radial bone 8 12 19188 -UBERON:2001613 dorsal fin middle radial bone 11 19189 -UBERON:2005226 median fin proximal radial bone 10 19190 -UBERON:2000364 hypural 8 19191 -UBERON:2001560 hypural 1 9 19192 -UBERON:2001561 hypural 2 9 19193 -UBERON:2001562 hypural 3 9 19194 -UBERON:2001563 hypural 4 9 19195 -UBERON:2001564 hypural 5 9 19196 -UBERON:2002056 hypural 6 9 19197 -UBERON:2002132 hypural 7 9 19198 -UBERON:4300248 fused hypural 1 and 2 9 19199 -UBERON:2000438 parhypural 8 19200 -UBERON:2000602 uroneural 8 19201 -UBERON:2002064 uroneural 1 9 19202 -UBERON:2002084 pleurostyle 9 19203 -UBERON:2002109 uroneural 2 9 19204 -UBERON:2002115 uroneural 3 9 19205 -UBERON:2002167 stegural 9 19206 -UBERON:4500002 upper uroneural 9 19207 -UBERON:2000734 preural vertebra 8 19208 -UBERON:2000557 preural 1 vertebra 9 19209 -UBERON:2000586 preural 2 vertebra 9 19210 -UBERON:2002112 preural 3 vertebra 9 19211 -UBERON:2000859 specialized hemal arch and spine 8 19212 -UBERON:2001698 anal-fin stay 8 19213 -UBERON:2001699 dorsal-fin stay 8 19214 -UBERON:2001700 caudal-fin stay 8 19215 -UBERON:2001788 pelvic splint 8 19216 -UBERON:2001817 middle nuchal plate 8 19217 -UBERON:2001820 posterior nuchal plate 8 19218 -UBERON:2002077 lateropterygium 8 19219 -UBERON:2002078 hypural plate 8 19220 -UBERON:2002085 ural centrum 8 19221 -UBERON:2001581 ural centrum 2 9 19222 -UBERON:2002065 ural centrum 1 9 19223 -UBERON:2002160 ural centrum 3 9 19224 -UBERON:2002161 ural centrum 4 9 19225 -UBERON:2002086 pelvic axillary process 8 19226 -UBERON:2002087 pectoral axillary process 8 19227 -UBERON:2002162 ural vertebra 8 19228 -UBERON:2001579 ural vertebra 2 9 19229 -UBERON:2002163 ural vertebra 1 9 19230 -UBERON:2002291 fulcrum 8 19231 -UBERON:2002082 basal fulcrum 9 19232 -UBERON:2002159 caudal basal fulcrum 10 19233 -UBERON:2002292 epaxial basal fulcrum 10 19234 -UBERON:2002293 hypaxial basal fulcrum 10 19235 -UBERON:2002083 fringing fulcrum 9 19236 -UBERON:4300003 urodermal bone 8 19237 -UBERON:4300037 bony fin ray 8 19238 -UBERON:4000172 lepidotrichium 9 19239 -UBERON:4200075 fin spine 10 19240 -UBERON:4200070 median fin spine 11 19241 -UBERON:2002261 dorsal fin spine 12 19242 -UBERON:2001789 dorsal fin spine 1 13 19243 -UBERON:2001790 dorsal fin spine 2 13 19244 -UBERON:4300175 procumbent dorsal fin spine 13 19245 -UBERON:2002262 anal fin spine 12 19246 -UBERON:4300097 anal fin spine 1 13 19247 -UBERON:4300098 anal fin spine 2 13 19248 -UBERON:4500009 paired fin spine 11 19249 -UBERON:2001787 pectoral fin spine 12 19250 -UBERON:2002270 pelvic fin spine 12 19251 -UBERON:4440011 paired fin lepidotrichium 10 19252 -UBERON:4000173 pelvic fin lepidotrichium 11 19253 -UBERON:2002270 pelvic fin spine 12 19254 -UBERON:4300117 pelvic fin ray 12 19255 -UBERON:2001776 pelvic fin ray 1 13 19256 -UBERON:2001777 pelvic fin ray 2 13 19257 -UBERON:2001778 pelvic fin ray 3 13 19258 -UBERON:2001779 pelvic fin ray 4 13 19259 -UBERON:2001780 pelvic fin ray 5 13 19260 -UBERON:2001781 pelvic fin ray 6 13 19261 -UBERON:2001782 pelvic fin ray 7 13 19262 -UBERON:4300192 branched pelvic fin ray 13 19263 -UBERON:4500011 unbranched pelvic fin ray 13 19264 -UBERON:4000175 pectoral fin lepidotrichium 11 19265 -UBERON:2001787 pectoral fin spine 12 19266 -UBERON:4500007 pectoral fin ray 12 19267 -UBERON:2001761 pectoral fin ray 1 13 19268 -UBERON:2001762 pectoral fin ray 2 13 19269 -UBERON:2001763 pectoral fin ray 3 13 19270 -UBERON:2001764 pectoral fin ray 4 13 19271 -UBERON:2001765 pectoral fin ray 5 13 19272 -UBERON:2001766 pectoral fin ray 6 13 19273 -UBERON:2001767 pectoral fin ray 7 13 19274 -UBERON:2001993 branched pectoral fin ray 13 19275 -UBERON:4300103 rudimentary pectoral fin ray 13 19276 -UBERON:4500010 unbranched pectoral fin ray 13 19277 -UBERON:4500009 paired fin spine 11 19278 -UBERON:2001787 pectoral fin spine 12 19279 -UBERON:2002270 pelvic fin spine 12 19280 -UBERON:4500008 median fin lepidotrichium 10 19281 -UBERON:4000174 caudal fin lepidotrichium 11 19282 -UBERON:2001584 caudal procurrent ray 12 19283 -UBERON:2001829 caudal fin dorsal procurrent ray 13 19284 -UBERON:2001830 caudal fin ventral procurrent ray 13 19285 -UBERON:2002271 ventral caudal procurrent ray 2 14 19286 -UBERON:2002272 ventral caudal procurrent ray 1 14 19287 -UBERON:4300250 ventral caudal procurrent ray 3 14 19288 -UBERON:4300251 ventral caudal procurrent ray 4 14 19289 -UBERON:2001585 caudal principal ray 12 19290 -UBERON:2001713 caudal principal ray 1 13 19291 -UBERON:2001714 caudal principal ray 2 13 19292 -UBERON:2001715 caudal principal ray 3 13 19293 -UBERON:2001716 caudal principal ray 4 13 19294 -UBERON:2001717 caudal principal ray 5 13 19295 -UBERON:2001718 caudal principal ray 6 13 19296 -UBERON:2001719 caudal principal ray 7 13 19297 -UBERON:2001720 caudal principal ray 8 13 19298 -UBERON:2001721 caudal principal ray 9 13 19299 -UBERON:2001722 caudal principal ray 10 13 19300 -UBERON:2001723 caudal principal ray 11 13 19301 -UBERON:2001724 caudal principal ray 12 13 19302 -UBERON:2001725 caudal principal ray 13 13 19303 -UBERON:2001726 caudal principal ray 14 13 19304 -UBERON:2001727 caudal principal ray 15 13 19305 -UBERON:2001728 caudal principal ray 16 13 19306 -UBERON:2001729 caudal principal ray 17 13 19307 -UBERON:2001730 caudal principal ray 18 13 19308 -UBERON:2001731 caudal principal ray 19 13 19309 -UBERON:2002062 branched caudal fin ray 12 19310 -UBERON:4200009 hypochordal lepidotrichium 12 19311 -UBERON:4200062 epichordal lepidotrichium 12 19312 -UBERON:4000176 anal fin lepidotrichium 11 19313 -UBERON:2002262 anal fin spine 12 19314 -UBERON:4300097 anal fin spine 1 13 19315 -UBERON:4300098 anal fin spine 2 13 19316 -UBERON:4500006 anal fin ray 12 19317 -UBERON:2001769 anal fin ray 1 13 19318 -UBERON:2001770 anal fin ray 2 13 19319 -UBERON:2001771 anal fin ray 3 13 19320 -UBERON:2001772 anal fin ray 4 13 19321 -UBERON:2001773 anal fin ray 5 13 19322 -UBERON:2001774 anal fin ray 6 13 19323 -UBERON:2001775 anal fin ray 7 13 19324 -UBERON:2001992 branched anal fin ray 13 19325 -UBERON:4300193 unbranched anal fin ray 13 19326 -UBERON:4000177 dorsal fin lepidotrichium 11 19327 -UBERON:2002261 dorsal fin spine 12 19328 -UBERON:2001789 dorsal fin spine 1 13 19329 -UBERON:2001790 dorsal fin spine 2 13 19330 -UBERON:4300175 procumbent dorsal fin spine 13 19331 -UBERON:4300116 dorsal fin ray 12 19332 -UBERON:2001754 dorsal fin ray 1 13 19333 -UBERON:2001755 dorsal fin ray 2 13 19334 -UBERON:2001756 dorsal fin ray 3 13 19335 -UBERON:2001757 dorsal fin ray 4 13 19336 -UBERON:2001758 dorsal fin ray 5 13 19337 -UBERON:2001759 dorsal fin ray 6 13 19338 -UBERON:2001760 dorsal fin ray 7 13 19339 -UBERON:2001785 branched dorsal fin ray 13 19340 -UBERON:2001786 unbranched dorsal fin ray 13 19341 -UBERON:4200070 median fin spine 11 19342 -UBERON:2002261 dorsal fin spine 12 19343 -UBERON:2001789 dorsal fin spine 1 13 19344 -UBERON:2001790 dorsal fin spine 2 13 19345 -UBERON:4300175 procumbent dorsal fin spine 13 19346 -UBERON:2002262 anal fin spine 12 19347 -UBERON:4300097 anal fin spine 1 13 19348 -UBERON:4300098 anal fin spine 2 13 19349 -UBERON:4300274 adipose fin ray 11 19350 -UBERON:4400007 camptotrichium 9 19351 -UBERON:4300155 pectoral splint 8 19352 -UBERON:0004740 basibranchial bone 7 19353 -UBERON:2001223 basibranchial 1 bone 8 19354 -UBERON:2001224 basibranchial 2 bone 8 19355 -UBERON:2001225 basibranchial 3 bone 8 19356 -UBERON:2001226 basibranchial 4 bone 8 19357 -UBERON:2001701 basibranchial 5 bone 8 19358 -UBERON:3010583 basibranchial I 8 19359 -UBERON:3010585 basibranchial II 8 19360 -UBERON:0006068 bone of tail 7 19361 -UBERON:0007719 bone of reproductive organ 7 19362 -UBERON:0006435 os penis 8 19363 -UBERON:0006440 os clitoris 8 19364 -UBERON:0013673 os priapium 8 19365 -UBERON:0013674 ctenactinium 8 19366 -UBERON:0013676 aproctal bone of priapium 8 19367 -UBERON:0007801 pygostyle 7 19368 -UBERON:0007805 synsacrum 7 19369 -UBERON:0007842 membrane bone 7 19370 -UBERON:0006231 facial bone primordium 8 19371 -UBERON:0008907 dermal bone 8 19372 -UBERON:0000209 tetrapod frontal bone 9 19373 -UBERON:0001680 lacrimal bone 9 19374 -UBERON:0001681 nasal bone 9 19375 -UBERON:0001683 jugal bone 9 19376 -UBERON:0001695 squamous part of temporal bone 9 19377 -UBERON:0002229 interparietal bone 9 19378 -UBERON:0002244 premaxilla 9 19379 -UBERON:0002397 maxilla 9 19380 -UBERON:0004741 cleithrum 9 19381 -UBERON:0004742 dentary 9 19382 -UBERON:0001684 mandible 10 19383 -UBERON:0004744 articular/anguloarticular 9 19384 -UBERON:0004865 actinopterygian parietal bone 9 19385 -UBERON:0004866 actinopterygian frontal bone 9 19386 -UBERON:0007841 furcula 9 19387 -UBERON:0010750 prefrontal bone 9 19388 -UBERON:0010898 gastralium 9 19389 -UBERON:0011079 angular bone 9 19390 -UBERON:0011167 septomaxilla bone 9 19391 -UBERON:0011168 postfrontal bone 9 19392 -UBERON:0011169 postorbital bone 9 19393 -UBERON:0011267 quadratojugal bone 9 19394 -UBERON:0011598 coronoid bone 9 19395 -UBERON:4200234 precoronoid bone 10 19396 -UBERON:4200235 postcoronoid bone 10 19397 -UBERON:4200236 anterior coronoid bone 10 19398 -UBERON:4200237 posterior coronoid bone 10 19399 -UBERON:0011628 early premaxilla 9 19400 -UBERON:0011629 supratemporal bone 9 19401 -UBERON:0011630 intertemporal bone 9 19402 -UBERON:0011631 tabular bone 9 19403 -UBERON:0011635 splenial bone 9 19404 -UBERON:0011636 surangular bone 9 19405 -UBERON:4200243 surangular pit line 10 19406 -UBERON:0011637 prearticular bone 9 19407 -UBERON:0011639 frontoparietal bone 9 19408 -UBERON:0011655 interclavicle 9 19409 -UBERON:4100006 parasternal process 10 19410 -UBERON:0011657 dermal element of plastron 9 19411 -UBERON:0011658 epiplastron 10 19412 -UBERON:0011659 entoplastron 10 19413 -UBERON:0011660 hypoplastron 10 19414 -UBERON:0011661 xiphiplastron 10 19415 -UBERON:0014707 hyoplastron 10 19416 -UBERON:0012071 palate bone 9 19417 -UBERON:0001682 palatine bone 10 19418 -UBERON:0002396 vomer 10 19419 -UBERON:0004745 parasphenoid 10 19420 -UBERON:0010389 pterygoid bone 10 19421 -UBERON:0011634 ectopterygoid bone 10 19422 -UBERON:0013113 angular/surangular bone 9 19423 -UBERON:2000103 supramaxilla 9 19424 -UBERON:2000104 suprapreopercle 9 19425 -UBERON:2000127 antorbital 9 19426 -UBERON:2000250 opercle 9 19427 -UBERON:2000264 preopercle 9 19428 -UBERON:2000284 subopercle 9 19429 -UBERON:2000289 preopercle horizontal limb 9 19430 -UBERON:2000336 preopercle vertical limb 9 19431 -UBERON:2000356 gill raker 9 19432 -UBERON:2000376 infraorbital 9 19433 -UBERON:2000223 infraorbital 1 10 19434 -UBERON:2000495 infraorbital 5 10 19435 -UBERON:2001407 infraorbital 2 10 19436 -UBERON:2001408 infraorbital 3 10 19437 -UBERON:2001409 infraorbital 4 10 19438 -UBERON:2001674 infraorbital 6 10 19439 -UBERON:2001702 infraorbital 7 10 19440 -UBERON:2001703 infraorbital 8 10 19441 -UBERON:2001704 infraorbital 9 10 19442 -UBERON:2001705 infraorbital 10 10 19443 -UBERON:2001706 infraorbital 11 10 19444 -UBERON:2001707 infraorbital 12 10 19445 -UBERON:2001708 dermosphenotic 10 19446 -UBERON:2000410 postcleithrum 9 19447 -UBERON:2001852 postcleithrum 1 10 19448 -UBERON:2001853 postcleithrum 2 10 19449 -UBERON:2001854 postcleithrum 3 10 19450 -UBERON:2000452 urohyal 9 19451 -UBERON:2000476 branchiostegal ray 9 19452 -UBERON:2001279 branchiostegal ray 1 10 19453 -UBERON:2001280 branchiostegal ray 3 10 19454 -UBERON:2001281 branchiostegal ray 2 10 19455 -UBERON:2000549 posttemporal 9 19456 -UBERON:2000576 pterotic 9 19457 -UBERON:2000594 supracleithrum 9 19458 -UBERON:2000657 entopterygoid 9 19459 -UBERON:2000663 extrascapula 9 19460 -UBERON:4200099 lateral extrascapular 10 19461 -UBERON:4200103 median extrascapular 10 19462 -UBERON:2000674 interopercle 9 19463 -UBERON:2000691 supraorbital bone 9 19464 -UBERON:4200244 anterior supraorbital bone 10 19465 -UBERON:2001274 coronomeckelian 9 19466 -UBERON:2001403 supraethmoid 9 19467 -UBERON:2001406 kinethmoid bone 9 19468 -UBERON:2001647 pharyngeal tooth plate 9 19469 -UBERON:0018283 lower pharyngobranchial toothplate 10 19470 -UBERON:2001648 basihyal tooth plate 10 19471 -UBERON:2001654 upper pharyngeal 4 tooth plate 10 19472 -UBERON:2001656 upper pharyngeal 5 tooth plate 10 19473 -UBERON:2001658 upper pharyngeal tooth plate 10 19474 -UBERON:2001661 basibranchial tooth plate 10 19475 -UBERON:2001662 basibranchial 4 tooth plate 10 19476 -UBERON:2001664 basibranchial 2 tooth plate 10 19477 -UBERON:2002015 pharyngobranchial tooth plate 10 19478 -UBERON:2001650 pharyngobranchial 2 tooth plate 11 19479 -UBERON:2001652 pharyngobranchial 3 tooth plate 11 19480 -UBERON:2001859 pharyngobranchial 1 tooth plate 11 19481 -UBERON:2002016 pharyngobranchial 4 tooth plate 11 19482 -UBERON:2001692 median premaxilla 9 19483 -UBERON:2001700 caudal-fin stay 9 19484 -UBERON:2001788 pelvic splint 9 19485 -UBERON:2001815 nuchal plate 9 19486 -UBERON:2001816 anterior nuchal plate 10 19487 -UBERON:2001817 middle nuchal plate 10 19488 -UBERON:2001820 posterior nuchal plate 10 19489 -UBERON:2001930 accessory vomerine tooth plate 9 19490 -UBERON:2001932 sensory canal tubular ossicle 9 19491 -UBERON:2001934 rostral plate 9 19492 -UBERON:2001997 parietal-supraoccipital 9 19493 -UBERON:2001998 posttemporal-supracleithrum 9 19494 -UBERON:2002005 canal plate 9 19495 -UBERON:2002019 pterotic-posttemporal-supracleithrum 9 19496 -UBERON:2002020 hypomaxilla 9 19497 -UBERON:2002022 dermethmoid 9 19498 -UBERON:2002053 bony plate 9 19499 -UBERON:4300211 lateral plate 10 19500 -UBERON:2002086 pelvic axillary process 9 19501 -UBERON:2002087 pectoral axillary process 9 19502 -UBERON:2002089 gular plate 9 19503 -UBERON:2002291 fulcrum 9 19504 -UBERON:2002082 basal fulcrum 10 19505 -UBERON:2002159 caudal basal fulcrum 11 19506 -UBERON:2002292 epaxial basal fulcrum 11 19507 -UBERON:2002293 hypaxial basal fulcrum 11 19508 -UBERON:2002083 fringing fulcrum 10 19509 -UBERON:2002294 fish scute 9 19510 -UBERON:2001160 dorsal scute 10 19511 -UBERON:2001547 abdominal scute 10 19512 -UBERON:2001606 caudal scute 10 19513 -UBERON:2001931 infranuchal scute 10 19514 -UBERON:4200113 predorsal scute 10 19515 -UBERON:3000288 maxillopalatine 9 19516 -UBERON:3000323 nasopremaxilla 9 19517 -UBERON:3000518 pseudodentary 9 19518 -UBERON:3000645 corpus 9 19519 -UBERON:3000966 angulosplenial 9 19520 -UBERON:3010576 prenasal (amphibians) 9 19521 -UBERON:4000160 anocleithrum 9 19522 -UBERON:4000172 lepidotrichium 9 19523 -UBERON:4200075 fin spine 10 19524 -UBERON:4200070 median fin spine 11 19525 -UBERON:2002261 dorsal fin spine 12 19526 -UBERON:2001789 dorsal fin spine 1 13 19527 -UBERON:2001790 dorsal fin spine 2 13 19528 -UBERON:4300175 procumbent dorsal fin spine 13 19529 -UBERON:2002262 anal fin spine 12 19530 -UBERON:4300097 anal fin spine 1 13 19531 -UBERON:4300098 anal fin spine 2 13 19532 -UBERON:4500009 paired fin spine 11 19533 -UBERON:2001787 pectoral fin spine 12 19534 -UBERON:2002270 pelvic fin spine 12 19535 -UBERON:4440011 paired fin lepidotrichium 10 19536 -UBERON:4000173 pelvic fin lepidotrichium 11 19537 -UBERON:2002270 pelvic fin spine 12 19538 -UBERON:4300117 pelvic fin ray 12 19539 -UBERON:2001776 pelvic fin ray 1 13 19540 -UBERON:2001777 pelvic fin ray 2 13 19541 -UBERON:2001778 pelvic fin ray 3 13 19542 -UBERON:2001779 pelvic fin ray 4 13 19543 -UBERON:2001780 pelvic fin ray 5 13 19544 -UBERON:2001781 pelvic fin ray 6 13 19545 -UBERON:2001782 pelvic fin ray 7 13 19546 -UBERON:4300192 branched pelvic fin ray 13 19547 -UBERON:4500011 unbranched pelvic fin ray 13 19548 -UBERON:4000175 pectoral fin lepidotrichium 11 19549 -UBERON:2001787 pectoral fin spine 12 19550 -UBERON:4500007 pectoral fin ray 12 19551 -UBERON:2001761 pectoral fin ray 1 13 19552 -UBERON:2001762 pectoral fin ray 2 13 19553 -UBERON:2001763 pectoral fin ray 3 13 19554 -UBERON:2001764 pectoral fin ray 4 13 19555 -UBERON:2001765 pectoral fin ray 5 13 19556 -UBERON:2001766 pectoral fin ray 6 13 19557 -UBERON:2001767 pectoral fin ray 7 13 19558 -UBERON:2001993 branched pectoral fin ray 13 19559 -UBERON:4300103 rudimentary pectoral fin ray 13 19560 -UBERON:4500010 unbranched pectoral fin ray 13 19561 -UBERON:4500009 paired fin spine 11 19562 -UBERON:2001787 pectoral fin spine 12 19563 -UBERON:2002270 pelvic fin spine 12 19564 -UBERON:4500008 median fin lepidotrichium 10 19565 -UBERON:4000174 caudal fin lepidotrichium 11 19566 -UBERON:2001584 caudal procurrent ray 12 19567 -UBERON:2001829 caudal fin dorsal procurrent ray 13 19568 -UBERON:2001830 caudal fin ventral procurrent ray 13 19569 -UBERON:2002271 ventral caudal procurrent ray 2 14 19570 -UBERON:2002272 ventral caudal procurrent ray 1 14 19571 -UBERON:4300250 ventral caudal procurrent ray 3 14 19572 -UBERON:4300251 ventral caudal procurrent ray 4 14 19573 -UBERON:2001585 caudal principal ray 12 19574 -UBERON:2001713 caudal principal ray 1 13 19575 -UBERON:2001714 caudal principal ray 2 13 19576 -UBERON:2001715 caudal principal ray 3 13 19577 -UBERON:2001716 caudal principal ray 4 13 19578 -UBERON:2001717 caudal principal ray 5 13 19579 -UBERON:2001718 caudal principal ray 6 13 19580 -UBERON:2001719 caudal principal ray 7 13 19581 -UBERON:2001720 caudal principal ray 8 13 19582 -UBERON:2001721 caudal principal ray 9 13 19583 -UBERON:2001722 caudal principal ray 10 13 19584 -UBERON:2001723 caudal principal ray 11 13 19585 -UBERON:2001724 caudal principal ray 12 13 19586 -UBERON:2001725 caudal principal ray 13 13 19587 -UBERON:2001726 caudal principal ray 14 13 19588 -UBERON:2001727 caudal principal ray 15 13 19589 -UBERON:2001728 caudal principal ray 16 13 19590 -UBERON:2001729 caudal principal ray 17 13 19591 -UBERON:2001730 caudal principal ray 18 13 19592 -UBERON:2001731 caudal principal ray 19 13 19593 -UBERON:2002062 branched caudal fin ray 12 19594 -UBERON:4200009 hypochordal lepidotrichium 12 19595 -UBERON:4200062 epichordal lepidotrichium 12 19596 -UBERON:4000176 anal fin lepidotrichium 11 19597 -UBERON:2002262 anal fin spine 12 19598 -UBERON:4300097 anal fin spine 1 13 19599 -UBERON:4300098 anal fin spine 2 13 19600 -UBERON:4500006 anal fin ray 12 19601 -UBERON:2001769 anal fin ray 1 13 19602 -UBERON:2001770 anal fin ray 2 13 19603 -UBERON:2001771 anal fin ray 3 13 19604 -UBERON:2001772 anal fin ray 4 13 19605 -UBERON:2001773 anal fin ray 5 13 19606 -UBERON:2001774 anal fin ray 6 13 19607 -UBERON:2001775 anal fin ray 7 13 19608 -UBERON:2001992 branched anal fin ray 13 19609 -UBERON:4300193 unbranched anal fin ray 13 19610 -UBERON:4000177 dorsal fin lepidotrichium 11 19611 -UBERON:2002261 dorsal fin spine 12 19612 -UBERON:2001789 dorsal fin spine 1 13 19613 -UBERON:2001790 dorsal fin spine 2 13 19614 -UBERON:4300175 procumbent dorsal fin spine 13 19615 -UBERON:4300116 dorsal fin ray 12 19616 -UBERON:2001754 dorsal fin ray 1 13 19617 -UBERON:2001755 dorsal fin ray 2 13 19618 -UBERON:2001756 dorsal fin ray 3 13 19619 -UBERON:2001757 dorsal fin ray 4 13 19620 -UBERON:2001758 dorsal fin ray 5 13 19621 -UBERON:2001759 dorsal fin ray 6 13 19622 -UBERON:2001760 dorsal fin ray 7 13 19623 -UBERON:2001785 branched dorsal fin ray 13 19624 -UBERON:2001786 unbranched dorsal fin ray 13 19625 -UBERON:4200070 median fin spine 11 19626 -UBERON:2002261 dorsal fin spine 12 19627 -UBERON:2001789 dorsal fin spine 1 13 19628 -UBERON:2001790 dorsal fin spine 2 13 19629 -UBERON:4300175 procumbent dorsal fin spine 13 19630 -UBERON:2002262 anal fin spine 12 19631 -UBERON:4300097 anal fin spine 1 13 19632 -UBERON:4300098 anal fin spine 2 13 19633 -UBERON:4300274 adipose fin ray 11 19634 -UBERON:4100119 extratemporal bone 9 19635 -UBERON:4200022 extracleithrum 9 19636 -UBERON:4200102 median dorsal plate 9 19637 -UBERON:4200115 presupracleithrum 9 19638 -UBERON:4300003 urodermal bone 9 19639 -UBERON:4300014 dorsal cleithrum 9 19640 -UBERON:4300015 ventral cleithrum 9 19641 -UBERON:4300017 rostrodermethmoid 9 19642 -UBERON:4300021 anterolateral plate 9 19643 -UBERON:4300022 anteroventral plate 9 19644 -UBERON:4300023 interolateral plate 9 19645 -UBERON:4300024 spinal plate 9 19646 -UBERON:4300025 posterior dorsolateral plate 9 19647 -UBERON:4300026 anterior ventrolateral plate 9 19648 -UBERON:4300028 posterior ventrolateral plate 9 19649 -UBERON:4300104 ectocoracoid bone 9 19650 -UBERON:4300199 postsplenial 9 19651 -UBERON:4300207 submandibular bone 9 19652 -UBERON:4500005 prenasal ossicle 9 19653 -UBERON:0008913 perichondral bone 8 19654 -UBERON:2000474 intercalar 8 19655 -UBERON:2001684 ossified transcapular ligament 8 19656 -UBERON:2001991 lateral bone 8 19657 -UBERON:0007914 bone of craniocervical region 7 19658 -UBERON:0003457 head bone 8 19659 -UBERON:0001686 auditory ossicle bone 9 19660 -UBERON:0001687 stapes bone 10 19661 -UBERON:0001688 incus bone 10 19662 -UBERON:0001689 malleus bone 10 19663 -UBERON:3000443 plectral apparatus 10 19664 -UBERON:0002218 tympanic ring 9 19665 -UBERON:0003462 facial bone 9 19666 -UBERON:0001677 sphenoid bone 10 19667 -UBERON:0001679 ethmoid bone 10 19668 -UBERON:0001680 lacrimal bone 10 19669 -UBERON:0001681 nasal bone 10 19670 -UBERON:0001683 jugal bone 10 19671 -UBERON:0002478 orbitosphenoid 10 19672 -UBERON:0002500 zygomatic arch 10 19673 -UBERON:0003971 interfrontal bone 10 19674 -UBERON:0003973 nasal concha of ethmoid bone 10 19675 -UBERON:0005919 supreme nasal concha 11 19676 -UBERON:0005920 superior nasal concha 11 19677 -UBERON:0005921 middle nasal concha 11 19678 -UBERON:0005922 inferior nasal concha 10 19679 -UBERON:0006231 facial bone primordium 10 19680 -UBERON:0006428 basisphenoid bone 10 19681 -UBERON:0006721 alisphenoid bone 10 19682 -UBERON:0008828 presphenoid bone 10 19683 -UBERON:0009470 postsphenoidal bone 10 19684 -UBERON:0009639 body of sphenoid 10 19685 -UBERON:0010297 endochondral scleral ossicle 10 19686 -UBERON:2001432 anterior sclerotic bone 11 19687 -UBERON:2001433 posterior sclerotic bone 11 19688 -UBERON:0010298 intramembranous scleral ossicle 10 19689 -UBERON:0010308 os opticus 11 19690 -UBERON:0010309 palpebral bone 10 19691 -UBERON:0010311 scleral sesamoid bone 10 19692 -UBERON:0010389 pterygoid bone 10 19693 -UBERON:0010750 prefrontal bone 10 19694 -UBERON:0011167 septomaxilla bone 10 19695 -UBERON:0011168 postfrontal bone 10 19696 -UBERON:0011169 postorbital bone 10 19697 -UBERON:0012360 bone of jaw 10 19698 -UBERON:0004768 bone of lower jaw 11 19699 -UBERON:0004742 dentary 12 19700 -UBERON:0001684 mandible 13 19701 -UBERON:0004744 articular/anguloarticular 12 19702 -UBERON:0011079 angular bone 12 19703 -UBERON:0011598 coronoid bone 12 19704 -UBERON:4200234 precoronoid bone 13 19705 -UBERON:4200235 postcoronoid bone 13 19706 -UBERON:4200236 anterior coronoid bone 13 19707 -UBERON:4200237 posterior coronoid bone 13 19708 -UBERON:0011635 splenial bone 12 19709 -UBERON:0011636 surangular bone 12 19710 -UBERON:4200243 surangular pit line 13 19711 -UBERON:0011637 prearticular bone 12 19712 -UBERON:0011770 mentomeckelian 12 19713 -UBERON:2000422 retroarticular 12 19714 -UBERON:2001274 coronomeckelian 12 19715 -UBERON:2001805 articular bone 12 19716 -UBERON:3000515 pseudoangular 12 19717 -UBERON:3000518 pseudodentary 12 19718 -UBERON:3000966 angulosplenial 12 19719 -UBERON:4200245 parasymphysial plate 12 19720 -UBERON:4200246 mesial parasymphysial foramen 13 19721 -UBERON:4200247 lateral parasymphysial foramen 13 19722 -UBERON:4300199 postsplenial 12 19723 -UBERON:0011597 bone of upper jaw 11 19724 -UBERON:0001682 palatine bone 12 19725 -UBERON:0002244 premaxilla 12 19726 -UBERON:0002396 vomer 12 19727 -UBERON:0002397 maxilla 12 19728 -UBERON:0006597 quadrate bone 12 19729 -UBERON:0011267 quadratojugal bone 12 19730 -UBERON:0011628 early premaxilla 12 19731 -UBERON:0011634 ectopterygoid bone 12 19732 -UBERON:2000103 supramaxilla 12 19733 -UBERON:2000240 metapterygoid 12 19734 -UBERON:2000620 autopalatine 12 19735 -UBERON:2000657 entopterygoid 12 19736 -UBERON:2001406 kinethmoid bone 12 19737 -UBERON:2001692 median premaxilla 12 19738 -UBERON:2002020 hypomaxilla 12 19739 -UBERON:3000288 maxillopalatine 12 19740 -UBERON:3000323 nasopremaxilla 12 19741 -UBERON:4300017 rostrodermethmoid 12 19742 -UBERON:3000645 corpus 11 19743 -UBERON:2000127 antorbital 10 19744 -UBERON:2000203 rhinosphenoid 10 19745 -UBERON:2000376 infraorbital 10 19746 -UBERON:2000223 infraorbital 1 11 19747 -UBERON:2000495 infraorbital 5 11 19748 -UBERON:2001407 infraorbital 2 11 19749 -UBERON:2001408 infraorbital 3 11 19750 -UBERON:2001409 infraorbital 4 11 19751 -UBERON:2001674 infraorbital 6 11 19752 -UBERON:2001702 infraorbital 7 11 19753 -UBERON:2001703 infraorbital 8 11 19754 -UBERON:2001704 infraorbital 9 11 19755 -UBERON:2001705 infraorbital 10 11 19756 -UBERON:2001706 infraorbital 11 11 19757 -UBERON:2001707 infraorbital 12 11 19758 -UBERON:2001708 dermosphenotic 11 19759 -UBERON:2000691 supraorbital bone 10 19760 -UBERON:4200244 anterior supraorbital bone 11 19761 -UBERON:4200091 ethomosphenoid region 10 19762 -UBERON:4500005 prenasal ossicle 10 19763 -UBERON:0003966 gonial bone 9 19764 -UBERON:0004766 cranial bone 9 19765 -UBERON:0010727 sutural bone 10 19766 -UBERON:0011164 neurocranium bone 10 19767 -UBERON:0000209 tetrapod frontal bone 11 19768 -UBERON:0000210 tetrapod parietal bone 11 19769 -UBERON:0001676 occipital bone 11 19770 -UBERON:0001679 ethmoid bone 11 19771 -UBERON:0001692 basioccipital bone 11 19772 -UBERON:0001693 exoccipital bone 11 19773 -UBERON:0001695 squamous part of temporal bone 11 19774 -UBERON:0001762 turbinate bone 11 19775 -UBERON:0003973 nasal concha of ethmoid bone 12 19776 -UBERON:0005919 supreme nasal concha 13 19777 -UBERON:0005920 superior nasal concha 13 19778 -UBERON:0005921 middle nasal concha 13 19779 -UBERON:0005922 inferior nasal concha 12 19780 -UBERON:0002229 interparietal bone 11 19781 -UBERON:0002478 orbitosphenoid 11 19782 -UBERON:0002500 zygomatic arch 11 19783 -UBERON:0004745 parasphenoid 11 19784 -UBERON:0004746 prootic bone 11 19785 -UBERON:0004747 supraoccipital bone 11 19786 -UBERON:0004865 actinopterygian parietal bone 11 19787 -UBERON:0004866 actinopterygian frontal bone 11 19788 -UBERON:0005411 bony otic capsule 11 19789 -UBERON:0006428 basisphenoid bone 11 19790 -UBERON:0006721 alisphenoid bone 11 19791 -UBERON:0008828 presphenoid bone 11 19792 -UBERON:0009468 basiotic bone 11 19793 -UBERON:0009470 postsphenoidal bone 11 19794 -UBERON:0009639 body of sphenoid 11 19795 -UBERON:0010389 pterygoid bone 11 19796 -UBERON:0011238 mesethmoid bone 11 19797 -UBERON:2000203 rhinosphenoid 11 19798 -UBERON:2000226 lateral ethmoid bone 11 19799 -UBERON:2000337 basioccipital posterodorsal region 11 19800 -UBERON:2000348 exoccipital posteroventral region 11 19801 -UBERON:2000419 pterosphenoid 11 19802 -UBERON:2000474 intercalar 11 19803 -UBERON:2000549 posttemporal 11 19804 -UBERON:2000576 pterotic 11 19805 -UBERON:2000587 sphenotic 11 19806 -UBERON:2001403 supraethmoid 11 19807 -UBERON:2001404 preethmoid bone 11 19808 -UBERON:2001406 kinethmoid bone 11 19809 -UBERON:2001412 epiotic 11 19810 -UBERON:2001708 dermosphenotic 11 19811 -UBERON:2001930 accessory vomerine tooth plate 11 19812 -UBERON:2001934 rostral plate 11 19813 -UBERON:2002022 dermethmoid 11 19814 -UBERON:2002023 second preethmoid 11 19815 -UBERON:4200091 ethomosphenoid region 11 19816 -UBERON:4300017 rostrodermethmoid 11 19817 -UBERON:0018348 petrosal bone 10 19818 -UBERON:0012071 palate bone 9 19819 -UBERON:0001682 palatine bone 10 19820 -UBERON:0002396 vomer 10 19821 -UBERON:0004745 parasphenoid 10 19822 -UBERON:0010389 pterygoid bone 10 19823 -UBERON:0011634 ectopterygoid bone 10 19824 -UBERON:0013190 entotympanic bone 9 19825 -UBERON:0018356 rostral entotympanic element 10 19826 -UBERON:0013673 os priapium 9 19827 -UBERON:0013674 ctenactinium 9 19828 -UBERON:0013676 aproctal bone of priapium 9 19829 -UBERON:0003458 neck bone 8 19830 -UBERON:0002413 cervical vertebra 9 19831 -UBERON:0004612 mammalian cervical vertebra 3 10 19832 -UBERON:0004613 mammalian cervical vertebra 4 10 19833 -UBERON:0004614 mammalian cervical vertebra 5 10 19834 -UBERON:0004615 mammalian cervical vertebra 6 10 19835 -UBERON:0004616 mammalian cervical vertebra 7 10 19836 -UBERON:0007800 proatlas 10 19837 -UBERON:0008434 cervical vertebral arch 9 19838 -UBERON:0008437 posterior arch of atlas 10 19839 -UBERON:0018144 cervical rib 9 19840 -UBERON:0008001 irregular bone 7 19841 -UBERON:0001350 coccyx 8 19842 -UBERON:0001680 lacrimal bone 8 19843 -UBERON:0001682 palatine bone 8 19844 -UBERON:0001683 jugal bone 8 19845 -UBERON:0001685 hyoid bone 8 19846 -UBERON:0002396 vomer 8 19847 -UBERON:0002412 vertebra 8 19848 -UBERON:0001092 vertebral bone 1 9 19849 -UBERON:0001093 vertebral bone 2 9 19850 -UBERON:0001094 sacral vertebra 9 19851 -UBERON:0004622 sacral vertebra 1 10 19852 -UBERON:0004623 sacral vertebra 2 10 19853 -UBERON:0004624 sacral vertebra 3 10 19854 -UBERON:0004625 sacral vertebra 4 10 19855 -UBERON:0001095 caudal vertebra 9 19856 -UBERON:2000734 preural vertebra 10 19857 -UBERON:2000557 preural 1 vertebra 11 19858 -UBERON:2000586 preural 2 vertebra 11 19859 -UBERON:2002112 preural 3 vertebra 11 19860 -UBERON:2002162 ural vertebra 10 19861 -UBERON:2001579 ural vertebra 2 11 19862 -UBERON:2002163 ural vertebra 1 11 19863 -UBERON:4300105 caudal vertebra 1 10 19864 -UBERON:0002347 thoracic vertebra 9 19865 -UBERON:0004626 thoracic vertebra 1 10 19866 -UBERON:0004627 thoracic vertebra 2 10 19867 -UBERON:0004628 thoracic vertebra 3 10 19868 -UBERON:0004629 thoracic vertebra 4 10 19869 -UBERON:0004630 thoracic vertebra 5 10 19870 -UBERON:0004631 thoracic vertebra 6 10 19871 -UBERON:0004632 thoracic vertebra 7 10 19872 -UBERON:0004633 thoracic vertebra 9 10 19873 -UBERON:0004634 thoracic vertebra 10 10 19874 -UBERON:0004635 thoracic vertebra 11 10 19875 -UBERON:0004636 thoracic vertebra 12 10 19876 -UBERON:0011050 thoracic vertebra 8 10 19877 -UBERON:0002414 lumbar vertebra 9 19878 -UBERON:0004617 lumbar vertebra 1 10 19879 -UBERON:0004618 lumbar vertebra 2 10 19880 -UBERON:0004619 lumbar vertebra 3 10 19881 -UBERON:0004620 lumbar vertebra 4 10 19882 -UBERON:0004621 lumbar vertebra 5 10 19883 -UBERON:0004451 trunk or cervical vertebra 9 19884 -UBERON:0002413 cervical vertebra 10 19885 -UBERON:0004612 mammalian cervical vertebra 3 11 19886 -UBERON:0004613 mammalian cervical vertebra 4 11 19887 -UBERON:0004614 mammalian cervical vertebra 5 11 19888 -UBERON:0004615 mammalian cervical vertebra 6 11 19889 -UBERON:0004616 mammalian cervical vertebra 7 11 19890 -UBERON:0007800 proatlas 11 19891 -UBERON:0011677 trunk vertebra 10 19892 -UBERON:0035083 transverse process-bearing vertebra 9 19893 -UBERON:0035084 non-transverse process-bearing vertebra 9 19894 -UBERON:2002061 predorsal vertebra 9 19895 -UBERON:4300223 precaudal vertebra 9 19896 -UBERON:2001190 Weberian vertebra 10 19897 -UBERON:2001582 non-Weberian precaudal vertebra 10 19898 -UBERON:0003690 fused sacrum 8 19899 -UBERON:0005922 inferior nasal concha 8 19900 -UBERON:0008193 pneumatized bone 7 19901 -UBERON:0001677 sphenoid bone 8 19902 -UBERON:0001678 temporal bone 8 19903 -UBERON:0002397 maxilla 8 19904 -UBERON:3000288 maxillopalatine 8 19905 -UBERON:0008202 bone of hip region 7 19906 -UBERON:0000981 femur 8 19907 -UBERON:0001274 ischium 8 19908 -UBERON:0001275 pubis 8 19909 -UBERON:0010428 flat bone 7 19910 -UBERON:0000209 tetrapod frontal bone 8 19911 -UBERON:0000210 tetrapod parietal bone 8 19912 -UBERON:0001272 innominate bone 8 19913 -UBERON:0001676 occipital bone 8 19914 -UBERON:0001681 nasal bone 8 19915 -UBERON:0010727 sutural bone 8 19916 -UBERON:0010722 accessory bone 7 19917 -UBERON:0010723 os vesalianum pedis 8 19918 -UBERON:0010725 accessory navicular bone 8 19919 -UBERON:0010726 os vesalianum manus 8 19920 -UBERON:0010740 bone of appendage girdle complex 7 19921 -UBERON:0004375 bone of free limb or fin 8 19922 -UBERON:0002428 limb bone 9 19923 -UBERON:0003464 hindlimb bone 10 19924 -UBERON:0003608 hindlimb long bone 11 19925 -UBERON:0000979 tibia 12 19926 -UBERON:0000981 femur 12 19927 -UBERON:0001446 fibula 12 19928 -UBERON:0001448 metatarsal bone 12 19929 -UBERON:0003650 metatarsal bone of digit 1 13 19930 -UBERON:0003651 metatarsal bone of digit 2 13 19931 -UBERON:0003652 metatarsal bone of digit 3 13 19932 -UBERON:0003653 metatarsal bone of digit 4 13 19933 -UBERON:0003654 metatarsal bone of digit 5 13 19934 -UBERON:0013588 fused metatarsal bones 3 and 4 13 19935 -UBERON:0014763 fused metatarsal bones 2-4 14 19936 -UBERON:4200153 metatarsal bone of digit 6 13 19937 -UBERON:4200157 metatarsal bone of digit 7 13 19938 -UBERON:4200158 metatarsal bone of digit 8 13 19939 -UBERON:0001449 phalanx of pes 12 19940 -UBERON:0003640 pedal digit 1 phalanx 13 19941 -UBERON:0004315 distal phalanx of pedal digit 1 14 19942 -UBERON:0004332 proximal phalanx of pedal digit 1 14 19943 -UBERON:0003641 pedal digit 2 phalanx 13 19944 -UBERON:0004316 distal phalanx of pedal digit 2 14 19945 -UBERON:0004324 middle phalanx of pedal digit 2 14 19946 -UBERON:0004333 proximal phalanx of pedal digit 2 14 19947 -UBERON:0003642 pedal digit 3 phalanx 13 19948 -UBERON:0004317 distal phalanx of pedal digit 3 14 19949 -UBERON:0004325 middle phalanx of pedal digit 3 14 19950 -UBERON:0004334 proximal phalanx of pedal digit 3 14 19951 -UBERON:0003862 pedal digit 4 phalanx 13 19952 -UBERON:0004318 distal phalanx of pedal digit 4 14 19953 -UBERON:0004326 middle phalanx of pedal digit 4 14 19954 -UBERON:0004335 proximal phalanx of pedal digit 4 14 19955 -UBERON:0003863 pedal digit 5 phalanx 13 19956 -UBERON:0004319 distal phalanx of pedal digit 5 14 19957 -UBERON:0004327 middle phalanx of pedal digit 5 14 19958 -UBERON:0004336 proximal phalanx of pedal digit 5 14 19959 -UBERON:0003866 middle phalanx of pes 13 19960 -UBERON:0004324 middle phalanx of pedal digit 2 14 19961 -UBERON:0004325 middle phalanx of pedal digit 3 14 19962 -UBERON:0004326 middle phalanx of pedal digit 4 14 19963 -UBERON:0004327 middle phalanx of pedal digit 5 14 19964 -UBERON:0003867 distal phalanx of pes 13 19965 -UBERON:0004315 distal phalanx of pedal digit 1 14 19966 -UBERON:0004316 distal phalanx of pedal digit 2 14 19967 -UBERON:0004317 distal phalanx of pedal digit 3 14 19968 -UBERON:0004318 distal phalanx of pedal digit 4 14 19969 -UBERON:0004319 distal phalanx of pedal digit 5 14 19970 -UBERON:0003868 proximal phalanx of pes 13 19971 -UBERON:0004332 proximal phalanx of pedal digit 1 14 19972 -UBERON:0004333 proximal phalanx of pedal digit 2 14 19973 -UBERON:0004334 proximal phalanx of pedal digit 3 14 19974 -UBERON:0004335 proximal phalanx of pedal digit 4 14 19975 -UBERON:0004336 proximal phalanx of pedal digit 5 14 19976 -UBERON:4100009 pedal digit 7 phalanx 13 19977 -UBERON:0012269 equine hindlimb splint bone 12 19978 -UBERON:0005893 leg bone 11 19979 -UBERON:0002446 patella 12 19980 -UBERON:0003826 upper leg bone 12 19981 -UBERON:0000981 femur 13 19982 -UBERON:0004251 hindlimb zeugopod bone 12 19983 -UBERON:0000979 tibia 13 19984 -UBERON:0001446 fibula 13 19985 -UBERON:0003467 sesamoid bone of gastrocnemius 13 19986 -UBERON:0006714 tibiofibula 13 19987 -UBERON:0010907 parafibula 13 19988 -UBERON:0012104 sesamoid bone of the peroneus longus muscle 13 19989 -UBERON:0005899 pes bone 11 19990 -UBERON:0001447 tarsal bone 12 19991 -UBERON:0001451 navicular bone of pes 13 19992 -UBERON:0006836 medial tibial tarsal bone 13 19993 -UBERON:0010721 distal tarsal bone 13 19994 -UBERON:0001452 distal tarsal bone 1 14 19995 -UBERON:0001453 distal tarsal bone 2 14 19996 -UBERON:0001454 distal tarsal bone 3 14 19997 -UBERON:0001455 cuboid bone 14 19998 -UBERON:0010723 os vesalianum pedis 14 19999 -UBERON:0010737 distal tarsal bone 4 14 20000 -UBERON:0010738 distal tarsal bone 5 14 20001 -UBERON:0012289 fused tarsal bones 2 and 3 14 20002 -UBERON:0013649 fused tarsal bones 1 and 2 14 20003 -UBERON:3001002 basale commune (tarsal) 14 20004 -UBERON:0011679 proximal tarsal bone 13 20005 -UBERON:0001450 calcaneus 14 20006 -UBERON:0002395 talus 14 20007 -UBERON:0011678 hindlimb intermedium bone 14 20008 -UBERON:0012126 fibulare 14 20009 -UBERON:0012288 centroquartal bone 13 20010 -UBERON:3010045 centrale 1 13 20011 -UBERON:3010073 centrale 2 13 20012 -UBERON:4200011 pedal centrale 13 20013 -UBERON:4200152 intertarsale sesamoid 13 20014 -UBERON:0008000 sesamoid bone of pes 12 20015 -UBERON:0007990 proximal sesamoid bone of pes 13 20016 -UBERON:4200152 intertarsale sesamoid 13 20017 -UBERON:0008195 tarsometatarsus 12 20018 -UBERON:0010725 accessory navicular bone 12 20019 -UBERON:0012359 pedal digitopodium bone 12 20020 -UBERON:0001448 metatarsal bone 13 20021 -UBERON:0003650 metatarsal bone of digit 1 14 20022 -UBERON:0003651 metatarsal bone of digit 2 14 20023 -UBERON:0003652 metatarsal bone of digit 3 14 20024 -UBERON:0003653 metatarsal bone of digit 4 14 20025 -UBERON:0003654 metatarsal bone of digit 5 14 20026 -UBERON:0013588 fused metatarsal bones 3 and 4 14 20027 -UBERON:0014763 fused metatarsal bones 2-4 15 20028 -UBERON:4200153 metatarsal bone of digit 6 14 20029 -UBERON:4200157 metatarsal bone of digit 7 14 20030 -UBERON:4200158 metatarsal bone of digit 8 14 20031 -UBERON:0004248 pedal digit bone 13 20032 -UBERON:0001449 phalanx of pes 14 20033 -UBERON:0003640 pedal digit 1 phalanx 15 20034 -UBERON:0004315 distal phalanx of pedal digit 1 16 20035 -UBERON:0004332 proximal phalanx of pedal digit 1 16 20036 -UBERON:0003641 pedal digit 2 phalanx 15 20037 -UBERON:0004316 distal phalanx of pedal digit 2 16 20038 -UBERON:0004324 middle phalanx of pedal digit 2 16 20039 -UBERON:0004333 proximal phalanx of pedal digit 2 16 20040 -UBERON:0003642 pedal digit 3 phalanx 15 20041 -UBERON:0004317 distal phalanx of pedal digit 3 16 20042 -UBERON:0004325 middle phalanx of pedal digit 3 16 20043 -UBERON:0004334 proximal phalanx of pedal digit 3 16 20044 -UBERON:0003862 pedal digit 4 phalanx 15 20045 -UBERON:0004318 distal phalanx of pedal digit 4 16 20046 -UBERON:0004326 middle phalanx of pedal digit 4 16 20047 -UBERON:0004335 proximal phalanx of pedal digit 4 16 20048 -UBERON:0003863 pedal digit 5 phalanx 15 20049 -UBERON:0004319 distal phalanx of pedal digit 5 16 20050 -UBERON:0004327 middle phalanx of pedal digit 5 16 20051 -UBERON:0004336 proximal phalanx of pedal digit 5 16 20052 -UBERON:0003866 middle phalanx of pes 15 20053 -UBERON:0004324 middle phalanx of pedal digit 2 16 20054 -UBERON:0004325 middle phalanx of pedal digit 3 16 20055 -UBERON:0004326 middle phalanx of pedal digit 4 16 20056 -UBERON:0004327 middle phalanx of pedal digit 5 16 20057 -UBERON:0003867 distal phalanx of pes 15 20058 -UBERON:0004315 distal phalanx of pedal digit 1 16 20059 -UBERON:0004316 distal phalanx of pedal digit 2 16 20060 -UBERON:0004317 distal phalanx of pedal digit 3 16 20061 -UBERON:0004318 distal phalanx of pedal digit 4 16 20062 -UBERON:0004319 distal phalanx of pedal digit 5 16 20063 -UBERON:0003868 proximal phalanx of pes 15 20064 -UBERON:0004332 proximal phalanx of pedal digit 1 16 20065 -UBERON:0004333 proximal phalanx of pedal digit 2 16 20066 -UBERON:0004334 proximal phalanx of pedal digit 3 16 20067 -UBERON:0004335 proximal phalanx of pedal digit 4 16 20068 -UBERON:0004336 proximal phalanx of pedal digit 5 16 20069 -UBERON:4100009 pedal digit 7 phalanx 15 20070 -UBERON:0007990 proximal sesamoid bone of pes 14 20071 -UBERON:3000931 intercalary element of hind digit 14 20072 -UBERON:3010675 bony nodule of terminal phalanx of hind digit 14 20073 -UBERON:0012269 equine hindlimb splint bone 13 20074 -UBERON:0008194 tibiotarsus 11 20075 -UBERON:0003606 limb long bone 10 20076 -UBERON:0003221 phalanx 11 20077 -UBERON:0001436 phalanx of manus 12 20078 -UBERON:0002234 proximal phalanx of manus 13 20079 -UBERON:0004328 proximal phalanx of manual digit 2 14 20080 -UBERON:0004329 proximal phalanx of manual digit 3 14 20081 -UBERON:0004330 proximal phalanx of manual digit 4 14 20082 -UBERON:0004331 proximal phalanx of manual digit 5 14 20083 -UBERON:0004338 proximal phalanx of manual digit 1 14 20084 -UBERON:0003620 manual digit 1 phalanx 13 20085 -UBERON:0004337 distal phalanx of manual digit 1 14 20086 -UBERON:0004338 proximal phalanx of manual digit 1 14 20087 -UBERON:4200219 middle phalanx of manual digit 1 14 20088 -UBERON:0003636 manual digit 2 phalanx 13 20089 -UBERON:0004311 distal phalanx of manual digit 2 14 20090 -UBERON:0004320 middle phalanx of manual digit 2 14 20091 -UBERON:0004328 proximal phalanx of manual digit 2 14 20092 -UBERON:0003637 manual digit 3 phalanx 13 20093 -UBERON:0004312 distal phalanx of manual digit 3 14 20094 -UBERON:0004321 middle phalanx of manual digit 3 14 20095 -UBERON:0004329 proximal phalanx of manual digit 3 14 20096 -UBERON:0003638 manual digit 4 phalanx 13 20097 -UBERON:0004313 distal phalanx of manual digit 4 14 20098 -UBERON:0004322 middle phalanx of manual digit 4 14 20099 -UBERON:0004330 proximal phalanx of manual digit 4 14 20100 -UBERON:0003639 manual digit 5 phalanx 13 20101 -UBERON:0004314 distal phalanx of manual digit 5 14 20102 -UBERON:0004323 middle phalanx of manual digit 5 14 20103 -UBERON:0004331 proximal phalanx of manual digit 5 14 20104 -UBERON:0003864 middle phalanx of manus 13 20105 -UBERON:0004320 middle phalanx of manual digit 2 14 20106 -UBERON:0004321 middle phalanx of manual digit 3 14 20107 -UBERON:0004322 middle phalanx of manual digit 4 14 20108 -UBERON:0004323 middle phalanx of manual digit 5 14 20109 -UBERON:4200219 middle phalanx of manual digit 1 14 20110 -UBERON:0003865 distal phalanx of manus 13 20111 -UBERON:0004311 distal phalanx of manual digit 2 14 20112 -UBERON:0004312 distal phalanx of manual digit 3 14 20113 -UBERON:0004313 distal phalanx of manual digit 4 14 20114 -UBERON:0004314 distal phalanx of manual digit 5 14 20115 -UBERON:0004337 distal phalanx of manual digit 1 14 20116 -UBERON:0001449 phalanx of pes 12 20117 -UBERON:0003640 pedal digit 1 phalanx 13 20118 -UBERON:0004315 distal phalanx of pedal digit 1 14 20119 -UBERON:0004332 proximal phalanx of pedal digit 1 14 20120 -UBERON:0003641 pedal digit 2 phalanx 13 20121 -UBERON:0004316 distal phalanx of pedal digit 2 14 20122 -UBERON:0004324 middle phalanx of pedal digit 2 14 20123 -UBERON:0004333 proximal phalanx of pedal digit 2 14 20124 -UBERON:0003642 pedal digit 3 phalanx 13 20125 -UBERON:0004317 distal phalanx of pedal digit 3 14 20126 -UBERON:0004325 middle phalanx of pedal digit 3 14 20127 -UBERON:0004334 proximal phalanx of pedal digit 3 14 20128 -UBERON:0003862 pedal digit 4 phalanx 13 20129 -UBERON:0004318 distal phalanx of pedal digit 4 14 20130 -UBERON:0004326 middle phalanx of pedal digit 4 14 20131 -UBERON:0004335 proximal phalanx of pedal digit 4 14 20132 -UBERON:0003863 pedal digit 5 phalanx 13 20133 -UBERON:0004319 distal phalanx of pedal digit 5 14 20134 -UBERON:0004327 middle phalanx of pedal digit 5 14 20135 -UBERON:0004336 proximal phalanx of pedal digit 5 14 20136 -UBERON:0003866 middle phalanx of pes 13 20137 -UBERON:0004324 middle phalanx of pedal digit 2 14 20138 -UBERON:0004325 middle phalanx of pedal digit 3 14 20139 -UBERON:0004326 middle phalanx of pedal digit 4 14 20140 -UBERON:0004327 middle phalanx of pedal digit 5 14 20141 -UBERON:0003867 distal phalanx of pes 13 20142 -UBERON:0004315 distal phalanx of pedal digit 1 14 20143 -UBERON:0004316 distal phalanx of pedal digit 2 14 20144 -UBERON:0004317 distal phalanx of pedal digit 3 14 20145 -UBERON:0004318 distal phalanx of pedal digit 4 14 20146 -UBERON:0004319 distal phalanx of pedal digit 5 14 20147 -UBERON:0003868 proximal phalanx of pes 13 20148 -UBERON:0004332 proximal phalanx of pedal digit 1 14 20149 -UBERON:0004333 proximal phalanx of pedal digit 2 14 20150 -UBERON:0004334 proximal phalanx of pedal digit 3 14 20151 -UBERON:0004335 proximal phalanx of pedal digit 4 14 20152 -UBERON:0004336 proximal phalanx of pedal digit 5 14 20153 -UBERON:4100009 pedal digit 7 phalanx 13 20154 -UBERON:0004300 distal phalanx 12 20155 -UBERON:0003865 distal phalanx of manus 13 20156 -UBERON:0004311 distal phalanx of manual digit 2 14 20157 -UBERON:0004312 distal phalanx of manual digit 3 14 20158 -UBERON:0004313 distal phalanx of manual digit 4 14 20159 -UBERON:0004314 distal phalanx of manual digit 5 14 20160 -UBERON:0004337 distal phalanx of manual digit 1 14 20161 -UBERON:0003867 distal phalanx of pes 13 20162 -UBERON:0004315 distal phalanx of pedal digit 1 14 20163 -UBERON:0004316 distal phalanx of pedal digit 2 14 20164 -UBERON:0004317 distal phalanx of pedal digit 3 14 20165 -UBERON:0004318 distal phalanx of pedal digit 4 14 20166 -UBERON:0004319 distal phalanx of pedal digit 5 14 20167 -UBERON:0014483 distal phalanx of digit 1 13 20168 -UBERON:0004315 distal phalanx of pedal digit 1 14 20169 -UBERON:0004337 distal phalanx of manual digit 1 14 20170 -UBERON:0014484 distal phalanx of digit 2 13 20171 -UBERON:0004311 distal phalanx of manual digit 2 14 20172 -UBERON:0004316 distal phalanx of pedal digit 2 14 20173 -UBERON:0014485 distal phalanx of digit 3 13 20174 -UBERON:0004312 distal phalanx of manual digit 3 14 20175 -UBERON:0004317 distal phalanx of pedal digit 3 14 20176 -UBERON:0014486 distal phalanx of digit 4 13 20177 -UBERON:0004313 distal phalanx of manual digit 4 14 20178 -UBERON:0004318 distal phalanx of pedal digit 4 14 20179 -UBERON:0014487 distal phalanx of digit 5 13 20180 -UBERON:0004314 distal phalanx of manual digit 5 14 20181 -UBERON:0004319 distal phalanx of pedal digit 5 14 20182 -UBERON:3010746 T-shaped terminal phalanx 13 20183 -UBERON:0004301 middle phalanx 12 20184 -UBERON:0003864 middle phalanx of manus 13 20185 -UBERON:0004320 middle phalanx of manual digit 2 14 20186 -UBERON:0004321 middle phalanx of manual digit 3 14 20187 -UBERON:0004322 middle phalanx of manual digit 4 14 20188 -UBERON:0004323 middle phalanx of manual digit 5 14 20189 -UBERON:4200219 middle phalanx of manual digit 1 14 20190 -UBERON:0003866 middle phalanx of pes 13 20191 -UBERON:0004324 middle phalanx of pedal digit 2 14 20192 -UBERON:0004325 middle phalanx of pedal digit 3 14 20193 -UBERON:0004326 middle phalanx of pedal digit 4 14 20194 -UBERON:0004327 middle phalanx of pedal digit 5 14 20195 -UBERON:0014488 middle phalanx of digit 2 13 20196 -UBERON:0004320 middle phalanx of manual digit 2 14 20197 -UBERON:0004324 middle phalanx of pedal digit 2 14 20198 -UBERON:0014489 middle phalanx of digit 3 13 20199 -UBERON:0004321 middle phalanx of manual digit 3 14 20200 -UBERON:0004325 middle phalanx of pedal digit 3 14 20201 -UBERON:0009555 short pastern bone 14 20202 -UBERON:0014490 middle phalanx of digit 4 13 20203 -UBERON:0004322 middle phalanx of manual digit 4 14 20204 -UBERON:0004326 middle phalanx of pedal digit 4 14 20205 -UBERON:0014491 middle phalanx of digit 5 13 20206 -UBERON:0004323 middle phalanx of manual digit 5 14 20207 -UBERON:0004327 middle phalanx of pedal digit 5 14 20208 -UBERON:0004302 proximal phalanx 12 20209 -UBERON:0002234 proximal phalanx of manus 13 20210 -UBERON:0004328 proximal phalanx of manual digit 2 14 20211 -UBERON:0004329 proximal phalanx of manual digit 3 14 20212 -UBERON:0004330 proximal phalanx of manual digit 4 14 20213 -UBERON:0004331 proximal phalanx of manual digit 5 14 20214 -UBERON:0004338 proximal phalanx of manual digit 1 14 20215 -UBERON:0003868 proximal phalanx of pes 13 20216 -UBERON:0004332 proximal phalanx of pedal digit 1 14 20217 -UBERON:0004333 proximal phalanx of pedal digit 2 14 20218 -UBERON:0004334 proximal phalanx of pedal digit 3 14 20219 -UBERON:0004335 proximal phalanx of pedal digit 4 14 20220 -UBERON:0004336 proximal phalanx of pedal digit 5 14 20221 -UBERON:0014501 proximal phalanx of digit 1 13 20222 -UBERON:0004332 proximal phalanx of pedal digit 1 14 20223 -UBERON:0004338 proximal phalanx of manual digit 1 14 20224 -UBERON:0014502 proximal phalanx of digit 2 13 20225 -UBERON:0004328 proximal phalanx of manual digit 2 14 20226 -UBERON:0004333 proximal phalanx of pedal digit 2 14 20227 -UBERON:0014503 proximal phalanx of digit 3 13 20228 -UBERON:0004329 proximal phalanx of manual digit 3 14 20229 -UBERON:0004334 proximal phalanx of pedal digit 3 14 20230 -UBERON:0009556 long pastern bone 14 20231 -UBERON:0014504 proximal phalanx of digit 4 13 20232 -UBERON:0004330 proximal phalanx of manual digit 4 14 20233 -UBERON:0004335 proximal phalanx of pedal digit 4 14 20234 -UBERON:0014505 proximal phalanx of digit 5 13 20235 -UBERON:0004331 proximal phalanx of manual digit 5 14 20236 -UBERON:0004336 proximal phalanx of pedal digit 5 14 20237 -UBERON:0009558 pastern bone 12 20238 -UBERON:0009555 short pastern bone 13 20239 -UBERON:0009556 long pastern bone 13 20240 -UBERON:0018266 third phalanx 12 20241 -UBERON:0018322 fourth phalanx 12 20242 -UBERON:4100005 second phalanx 12 20243 -UBERON:0003607 forelimb long bone 11 20244 -UBERON:0000976 humerus 12 20245 -UBERON:0001423 radius bone 12 20246 -UBERON:0001424 ulna 12 20247 -UBERON:0001436 phalanx of manus 12 20248 -UBERON:0002234 proximal phalanx of manus 13 20249 -UBERON:0004328 proximal phalanx of manual digit 2 14 20250 -UBERON:0004329 proximal phalanx of manual digit 3 14 20251 -UBERON:0004330 proximal phalanx of manual digit 4 14 20252 -UBERON:0004331 proximal phalanx of manual digit 5 14 20253 -UBERON:0004338 proximal phalanx of manual digit 1 14 20254 -UBERON:0003620 manual digit 1 phalanx 13 20255 -UBERON:0004337 distal phalanx of manual digit 1 14 20256 -UBERON:0004338 proximal phalanx of manual digit 1 14 20257 -UBERON:4200219 middle phalanx of manual digit 1 14 20258 -UBERON:0003636 manual digit 2 phalanx 13 20259 -UBERON:0004311 distal phalanx of manual digit 2 14 20260 -UBERON:0004320 middle phalanx of manual digit 2 14 20261 -UBERON:0004328 proximal phalanx of manual digit 2 14 20262 -UBERON:0003637 manual digit 3 phalanx 13 20263 -UBERON:0004312 distal phalanx of manual digit 3 14 20264 -UBERON:0004321 middle phalanx of manual digit 3 14 20265 -UBERON:0004329 proximal phalanx of manual digit 3 14 20266 -UBERON:0003638 manual digit 4 phalanx 13 20267 -UBERON:0004313 distal phalanx of manual digit 4 14 20268 -UBERON:0004322 middle phalanx of manual digit 4 14 20269 -UBERON:0004330 proximal phalanx of manual digit 4 14 20270 -UBERON:0003639 manual digit 5 phalanx 13 20271 -UBERON:0004314 distal phalanx of manual digit 5 14 20272 -UBERON:0004323 middle phalanx of manual digit 5 14 20273 -UBERON:0004331 proximal phalanx of manual digit 5 14 20274 -UBERON:0003864 middle phalanx of manus 13 20275 -UBERON:0004320 middle phalanx of manual digit 2 14 20276 -UBERON:0004321 middle phalanx of manual digit 3 14 20277 -UBERON:0004322 middle phalanx of manual digit 4 14 20278 -UBERON:0004323 middle phalanx of manual digit 5 14 20279 -UBERON:4200219 middle phalanx of manual digit 1 14 20280 -UBERON:0003865 distal phalanx of manus 13 20281 -UBERON:0004311 distal phalanx of manual digit 2 14 20282 -UBERON:0004312 distal phalanx of manual digit 3 14 20283 -UBERON:0004313 distal phalanx of manual digit 4 14 20284 -UBERON:0004314 distal phalanx of manual digit 5 14 20285 -UBERON:0004337 distal phalanx of manual digit 1 14 20286 -UBERON:0002374 metacarpal bone 12 20287 -UBERON:0003645 metacarpal bone of digit 1 13 20288 -UBERON:0003646 metacarpal bone of digit 2 13 20289 -UBERON:0003647 metacarpal bone of digit 3 13 20290 -UBERON:0003648 metacarpal bone of digit 4 13 20291 -UBERON:0003649 metacarpal bone of digit 5 13 20292 -UBERON:0013587 fused metacarpal bones 3 and 4 13 20293 -UBERON:0012268 equine forelimb splint bone 12 20294 -UBERON:0003608 hindlimb long bone 11 20295 -UBERON:0000979 tibia 12 20296 -UBERON:0000981 femur 12 20297 -UBERON:0001446 fibula 12 20298 -UBERON:0001448 metatarsal bone 12 20299 -UBERON:0003650 metatarsal bone of digit 1 13 20300 -UBERON:0003651 metatarsal bone of digit 2 13 20301 -UBERON:0003652 metatarsal bone of digit 3 13 20302 -UBERON:0003653 metatarsal bone of digit 4 13 20303 -UBERON:0003654 metatarsal bone of digit 5 13 20304 -UBERON:0013588 fused metatarsal bones 3 and 4 13 20305 -UBERON:0014763 fused metatarsal bones 2-4 14 20306 -UBERON:4200153 metatarsal bone of digit 6 13 20307 -UBERON:4200157 metatarsal bone of digit 7 13 20308 -UBERON:4200158 metatarsal bone of digit 8 13 20309 -UBERON:0001449 phalanx of pes 12 20310 -UBERON:0003640 pedal digit 1 phalanx 13 20311 -UBERON:0004315 distal phalanx of pedal digit 1 14 20312 -UBERON:0004332 proximal phalanx of pedal digit 1 14 20313 -UBERON:0003641 pedal digit 2 phalanx 13 20314 -UBERON:0004316 distal phalanx of pedal digit 2 14 20315 -UBERON:0004324 middle phalanx of pedal digit 2 14 20316 -UBERON:0004333 proximal phalanx of pedal digit 2 14 20317 -UBERON:0003642 pedal digit 3 phalanx 13 20318 -UBERON:0004317 distal phalanx of pedal digit 3 14 20319 -UBERON:0004325 middle phalanx of pedal digit 3 14 20320 -UBERON:0004334 proximal phalanx of pedal digit 3 14 20321 -UBERON:0003862 pedal digit 4 phalanx 13 20322 -UBERON:0004318 distal phalanx of pedal digit 4 14 20323 -UBERON:0004326 middle phalanx of pedal digit 4 14 20324 -UBERON:0004335 proximal phalanx of pedal digit 4 14 20325 -UBERON:0003863 pedal digit 5 phalanx 13 20326 -UBERON:0004319 distal phalanx of pedal digit 5 14 20327 -UBERON:0004327 middle phalanx of pedal digit 5 14 20328 -UBERON:0004336 proximal phalanx of pedal digit 5 14 20329 -UBERON:0003866 middle phalanx of pes 13 20330 -UBERON:0004324 middle phalanx of pedal digit 2 14 20331 -UBERON:0004325 middle phalanx of pedal digit 3 14 20332 -UBERON:0004326 middle phalanx of pedal digit 4 14 20333 -UBERON:0004327 middle phalanx of pedal digit 5 14 20334 -UBERON:0003867 distal phalanx of pes 13 20335 -UBERON:0004315 distal phalanx of pedal digit 1 14 20336 -UBERON:0004316 distal phalanx of pedal digit 2 14 20337 -UBERON:0004317 distal phalanx of pedal digit 3 14 20338 -UBERON:0004318 distal phalanx of pedal digit 4 14 20339 -UBERON:0004319 distal phalanx of pedal digit 5 14 20340 -UBERON:0003868 proximal phalanx of pes 13 20341 -UBERON:0004332 proximal phalanx of pedal digit 1 14 20342 -UBERON:0004333 proximal phalanx of pedal digit 2 14 20343 -UBERON:0004334 proximal phalanx of pedal digit 3 14 20344 -UBERON:0004335 proximal phalanx of pedal digit 4 14 20345 -UBERON:0004336 proximal phalanx of pedal digit 5 14 20346 -UBERON:4100009 pedal digit 7 phalanx 13 20347 -UBERON:0012269 equine hindlimb splint bone 12 20348 -UBERON:0003821 metapodium bone 11 20349 -UBERON:0001448 metatarsal bone 12 20350 -UBERON:0003650 metatarsal bone of digit 1 13 20351 -UBERON:0003651 metatarsal bone of digit 2 13 20352 -UBERON:0003652 metatarsal bone of digit 3 13 20353 -UBERON:0003653 metatarsal bone of digit 4 13 20354 -UBERON:0003654 metatarsal bone of digit 5 13 20355 -UBERON:0013588 fused metatarsal bones 3 and 4 13 20356 -UBERON:0014763 fused metatarsal bones 2-4 14 20357 -UBERON:4200153 metatarsal bone of digit 6 13 20358 -UBERON:4200157 metatarsal bone of digit 7 13 20359 -UBERON:4200158 metatarsal bone of digit 8 13 20360 -UBERON:0002374 metacarpal bone 12 20361 -UBERON:0003645 metacarpal bone of digit 1 13 20362 -UBERON:0003646 metacarpal bone of digit 2 13 20363 -UBERON:0003647 metacarpal bone of digit 3 13 20364 -UBERON:0003648 metacarpal bone of digit 4 13 20365 -UBERON:0003649 metacarpal bone of digit 5 13 20366 -UBERON:0013587 fused metacarpal bones 3 and 4 13 20367 -UBERON:0012267 equine splint bone 12 20368 -UBERON:0012268 equine forelimb splint bone 13 20369 -UBERON:0012269 equine hindlimb splint bone 13 20370 -UBERON:0013581 metapodium bone 1 12 20371 -UBERON:0003645 metacarpal bone of digit 1 13 20372 -UBERON:0003650 metatarsal bone of digit 1 13 20373 -UBERON:0013582 metapodium bone 2 12 20374 -UBERON:0003646 metacarpal bone of digit 2 13 20375 -UBERON:0003651 metatarsal bone of digit 2 13 20376 -UBERON:0013583 metapodium bone 3 12 20377 -UBERON:0003647 metacarpal bone of digit 3 13 20378 -UBERON:0003652 metatarsal bone of digit 3 13 20379 -UBERON:0013584 metapodium bone 4 12 20380 -UBERON:0003648 metacarpal bone of digit 4 13 20381 -UBERON:0003653 metatarsal bone of digit 4 13 20382 -UBERON:0013585 metapodium bone 5 12 20383 -UBERON:0003649 metacarpal bone of digit 5 13 20384 -UBERON:0003654 metatarsal bone of digit 5 13 20385 -UBERON:0013586 fused metapodial bones 3 and 4 12 20386 -UBERON:0013587 fused metacarpal bones 3 and 4 13 20387 -UBERON:0013588 fused metatarsal bones 3 and 4 13 20388 -UBERON:0014763 fused metatarsal bones 2-4 14 20389 -UBERON:0014762 fused metapodial bones 2-4 13 20390 -UBERON:0014763 fused metatarsal bones 2-4 14 20391 -UBERON:4200154 metapodium bone 6 12 20392 -UBERON:4200153 metatarsal bone of digit 6 13 20393 -UBERON:4200155 metapodium bone 7 12 20394 -UBERON:4200157 metatarsal bone of digit 7 13 20395 -UBERON:4200156 metapodium bone 8 12 20396 -UBERON:4200158 metatarsal bone of digit 8 13 20397 -UBERON:0008962 forelimb bone 10 20398 -UBERON:0003460 arm bone 11 20399 -UBERON:0003466 forelimb zeugopod bone 12 20400 -UBERON:0001423 radius bone 13 20401 -UBERON:0001424 ulna 13 20402 -UBERON:0006715 radio-ulna 13 20403 -UBERON:0007993 ulnar sesamoid bone 13 20404 -UBERON:0004250 upper arm bone 12 20405 -UBERON:0000976 humerus 13 20406 -UBERON:0003607 forelimb long bone 11 20407 -UBERON:0000976 humerus 12 20408 -UBERON:0001423 radius bone 12 20409 -UBERON:0001424 ulna 12 20410 -UBERON:0001436 phalanx of manus 12 20411 -UBERON:0002234 proximal phalanx of manus 13 20412 -UBERON:0004328 proximal phalanx of manual digit 2 14 20413 -UBERON:0004329 proximal phalanx of manual digit 3 14 20414 -UBERON:0004330 proximal phalanx of manual digit 4 14 20415 -UBERON:0004331 proximal phalanx of manual digit 5 14 20416 -UBERON:0004338 proximal phalanx of manual digit 1 14 20417 -UBERON:0003620 manual digit 1 phalanx 13 20418 -UBERON:0004337 distal phalanx of manual digit 1 14 20419 -UBERON:0004338 proximal phalanx of manual digit 1 14 20420 -UBERON:4200219 middle phalanx of manual digit 1 14 20421 -UBERON:0003636 manual digit 2 phalanx 13 20422 -UBERON:0004311 distal phalanx of manual digit 2 14 20423 -UBERON:0004320 middle phalanx of manual digit 2 14 20424 -UBERON:0004328 proximal phalanx of manual digit 2 14 20425 -UBERON:0003637 manual digit 3 phalanx 13 20426 -UBERON:0004312 distal phalanx of manual digit 3 14 20427 -UBERON:0004321 middle phalanx of manual digit 3 14 20428 -UBERON:0004329 proximal phalanx of manual digit 3 14 20429 -UBERON:0003638 manual digit 4 phalanx 13 20430 -UBERON:0004313 distal phalanx of manual digit 4 14 20431 -UBERON:0004322 middle phalanx of manual digit 4 14 20432 -UBERON:0004330 proximal phalanx of manual digit 4 14 20433 -UBERON:0003639 manual digit 5 phalanx 13 20434 -UBERON:0004314 distal phalanx of manual digit 5 14 20435 -UBERON:0004323 middle phalanx of manual digit 5 14 20436 -UBERON:0004331 proximal phalanx of manual digit 5 14 20437 -UBERON:0003864 middle phalanx of manus 13 20438 -UBERON:0004320 middle phalanx of manual digit 2 14 20439 -UBERON:0004321 middle phalanx of manual digit 3 14 20440 -UBERON:0004322 middle phalanx of manual digit 4 14 20441 -UBERON:0004323 middle phalanx of manual digit 5 14 20442 -UBERON:4200219 middle phalanx of manual digit 1 14 20443 -UBERON:0003865 distal phalanx of manus 13 20444 -UBERON:0004311 distal phalanx of manual digit 2 14 20445 -UBERON:0004312 distal phalanx of manual digit 3 14 20446 -UBERON:0004313 distal phalanx of manual digit 4 14 20447 -UBERON:0004314 distal phalanx of manual digit 5 14 20448 -UBERON:0004337 distal phalanx of manual digit 1 14 20449 -UBERON:0002374 metacarpal bone 12 20450 -UBERON:0003645 metacarpal bone of digit 1 13 20451 -UBERON:0003646 metacarpal bone of digit 2 13 20452 -UBERON:0003647 metacarpal bone of digit 3 13 20453 -UBERON:0003648 metacarpal bone of digit 4 13 20454 -UBERON:0003649 metacarpal bone of digit 5 13 20455 -UBERON:0013587 fused metacarpal bones 3 and 4 13 20456 -UBERON:0012268 equine forelimb splint bone 12 20457 -UBERON:0005897 manus bone 11 20458 -UBERON:0001435 carpal bone 12 20459 -UBERON:0001480 proximal carpal bone 13 20460 -UBERON:0001427 radiale 14 20461 -UBERON:0001428 intermedium 14 20462 -UBERON:0001429 pisiform 14 20463 -UBERON:0002445 ulnare 14 20464 -UBERON:0007960 scapholunate 14 20465 -UBERON:0012124 avian scapholunar bone 14 20466 -UBERON:0001481 distal carpal bone 13 20467 -UBERON:0001430 distal carpal bone 1 14 20468 -UBERON:0001431 distal carpal bone 2 14 20469 -UBERON:0001432 distal carpal bone 3 14 20470 -UBERON:0001433 distal carpal bone 4 14 20471 -UBERON:0010726 os vesalianum manus 14 20472 -UBERON:0010739 distal carpal bone 5 14 20473 -UBERON:0012290 fused carpal bones 2 and 3 14 20474 -UBERON:3000965 basale commune (carpal) 14 20475 -UBERON:0007958 central carpal bone 13 20476 -UBERON:0007959 falciform carpal bone 13 20477 -UBERON:0008257 radial sesamoid 13 20478 -UBERON:3010060 centrale (fore) 13 20479 -UBERON:4200180 semilunate carpal 13 20480 -UBERON:0007997 sesamoid bone of manus 12 20481 -UBERON:0001429 pisiform 13 20482 -UBERON:0007991 proximal sesamoid bone of manus 13 20483 -UBERON:0008257 radial sesamoid 13 20484 -UBERON:0011205 carpometacarpus 12 20485 -UBERON:0012358 manual digitopodium bone 12 20486 -UBERON:0002374 metacarpal bone 13 20487 -UBERON:0003645 metacarpal bone of digit 1 14 20488 -UBERON:0003646 metacarpal bone of digit 2 14 20489 -UBERON:0003647 metacarpal bone of digit 3 14 20490 -UBERON:0003648 metacarpal bone of digit 4 14 20491 -UBERON:0003649 metacarpal bone of digit 5 14 20492 -UBERON:0013587 fused metacarpal bones 3 and 4 14 20493 -UBERON:0004249 manual digit bone 13 20494 -UBERON:0001436 phalanx of manus 14 20495 -UBERON:0002234 proximal phalanx of manus 15 20496 -UBERON:0004328 proximal phalanx of manual digit 2 16 20497 -UBERON:0004329 proximal phalanx of manual digit 3 16 20498 -UBERON:0004330 proximal phalanx of manual digit 4 16 20499 -UBERON:0004331 proximal phalanx of manual digit 5 16 20500 -UBERON:0004338 proximal phalanx of manual digit 1 16 20501 -UBERON:0003620 manual digit 1 phalanx 15 20502 -UBERON:0004337 distal phalanx of manual digit 1 16 20503 -UBERON:0004338 proximal phalanx of manual digit 1 16 20504 -UBERON:4200219 middle phalanx of manual digit 1 16 20505 -UBERON:0003636 manual digit 2 phalanx 15 20506 -UBERON:0004311 distal phalanx of manual digit 2 16 20507 -UBERON:0004320 middle phalanx of manual digit 2 16 20508 -UBERON:0004328 proximal phalanx of manual digit 2 16 20509 -UBERON:0003637 manual digit 3 phalanx 15 20510 -UBERON:0004312 distal phalanx of manual digit 3 16 20511 -UBERON:0004321 middle phalanx of manual digit 3 16 20512 -UBERON:0004329 proximal phalanx of manual digit 3 16 20513 -UBERON:0003638 manual digit 4 phalanx 15 20514 -UBERON:0004313 distal phalanx of manual digit 4 16 20515 -UBERON:0004322 middle phalanx of manual digit 4 16 20516 -UBERON:0004330 proximal phalanx of manual digit 4 16 20517 -UBERON:0003639 manual digit 5 phalanx 15 20518 -UBERON:0004314 distal phalanx of manual digit 5 16 20519 -UBERON:0004323 middle phalanx of manual digit 5 16 20520 -UBERON:0004331 proximal phalanx of manual digit 5 16 20521 -UBERON:0003864 middle phalanx of manus 15 20522 -UBERON:0004320 middle phalanx of manual digit 2 16 20523 -UBERON:0004321 middle phalanx of manual digit 3 16 20524 -UBERON:0004322 middle phalanx of manual digit 4 16 20525 -UBERON:0004323 middle phalanx of manual digit 5 16 20526 -UBERON:4200219 middle phalanx of manual digit 1 16 20527 -UBERON:0003865 distal phalanx of manus 15 20528 -UBERON:0004311 distal phalanx of manual digit 2 16 20529 -UBERON:0004312 distal phalanx of manual digit 3 16 20530 -UBERON:0004313 distal phalanx of manual digit 4 16 20531 -UBERON:0004314 distal phalanx of manual digit 5 16 20532 -UBERON:0004337 distal phalanx of manual digit 1 16 20533 -UBERON:0007991 proximal sesamoid bone of manus 14 20534 -UBERON:3000856 intercalary element of fore digit 14 20535 -UBERON:0012268 equine forelimb splint bone 13 20536 -UBERON:4200116 pteroid 11 20537 -UBERON:0011250 autopod bone 10 20538 -UBERON:0003656 mesopodium bone 11 20539 -UBERON:0001435 carpal bone 12 20540 -UBERON:0001480 proximal carpal bone 13 20541 -UBERON:0001427 radiale 14 20542 -UBERON:0001428 intermedium 14 20543 -UBERON:0001429 pisiform 14 20544 -UBERON:0002445 ulnare 14 20545 -UBERON:0007960 scapholunate 14 20546 -UBERON:0012124 avian scapholunar bone 14 20547 -UBERON:0001481 distal carpal bone 13 20548 -UBERON:0001430 distal carpal bone 1 14 20549 -UBERON:0001431 distal carpal bone 2 14 20550 -UBERON:0001432 distal carpal bone 3 14 20551 -UBERON:0001433 distal carpal bone 4 14 20552 -UBERON:0010726 os vesalianum manus 14 20553 -UBERON:0010739 distal carpal bone 5 14 20554 -UBERON:0012290 fused carpal bones 2 and 3 14 20555 -UBERON:3000965 basale commune (carpal) 14 20556 -UBERON:0007958 central carpal bone 13 20557 -UBERON:0007959 falciform carpal bone 13 20558 -UBERON:0008257 radial sesamoid 13 20559 -UBERON:3010060 centrale (fore) 13 20560 -UBERON:4200180 semilunate carpal 13 20561 -UBERON:0001447 tarsal bone 12 20562 -UBERON:0001451 navicular bone of pes 13 20563 -UBERON:0006836 medial tibial tarsal bone 13 20564 -UBERON:0010721 distal tarsal bone 13 20565 -UBERON:0001452 distal tarsal bone 1 14 20566 -UBERON:0001453 distal tarsal bone 2 14 20567 -UBERON:0001454 distal tarsal bone 3 14 20568 -UBERON:0001455 cuboid bone 14 20569 -UBERON:0010723 os vesalianum pedis 14 20570 -UBERON:0010737 distal tarsal bone 4 14 20571 -UBERON:0010738 distal tarsal bone 5 14 20572 -UBERON:0012289 fused tarsal bones 2 and 3 14 20573 -UBERON:0013649 fused tarsal bones 1 and 2 14 20574 -UBERON:3001002 basale commune (tarsal) 14 20575 -UBERON:0011679 proximal tarsal bone 13 20576 -UBERON:0001450 calcaneus 14 20577 -UBERON:0002395 talus 14 20578 -UBERON:0011678 hindlimb intermedium bone 14 20579 -UBERON:0012126 fibulare 14 20580 -UBERON:0012288 centroquartal bone 13 20581 -UBERON:3010045 centrale 1 13 20582 -UBERON:3010073 centrale 2 13 20583 -UBERON:4200011 pedal centrale 13 20584 -UBERON:4200152 intertarsale sesamoid 13 20585 -UBERON:0012131 centrale 12 20586 -UBERON:0001451 navicular bone of pes 13 20587 -UBERON:0007958 central carpal bone 13 20588 -UBERON:3010045 centrale 1 13 20589 -UBERON:3010060 centrale (fore) 13 20590 -UBERON:3010073 centrale 2 13 20591 -UBERON:4200011 pedal centrale 13 20592 -UBERON:4200083 postaxial centrale 13 20593 -UBERON:4200084 preaxial centrale 13 20594 -UBERON:0014395 proximal mesopodial bone 12 20595 -UBERON:0001480 proximal carpal bone 13 20596 -UBERON:0001427 radiale 14 20597 -UBERON:0001428 intermedium 14 20598 -UBERON:0001429 pisiform 14 20599 -UBERON:0002445 ulnare 14 20600 -UBERON:0007960 scapholunate 14 20601 -UBERON:0012124 avian scapholunar bone 14 20602 -UBERON:0011679 proximal tarsal bone 13 20603 -UBERON:0001450 calcaneus 14 20604 -UBERON:0002395 talus 14 20605 -UBERON:0011678 hindlimb intermedium bone 14 20606 -UBERON:0012126 fibulare 14 20607 -UBERON:0018102 distal mesopodial bone 12 20608 -UBERON:0001481 distal carpal bone 13 20609 -UBERON:0001430 distal carpal bone 1 14 20610 -UBERON:0001431 distal carpal bone 2 14 20611 -UBERON:0001432 distal carpal bone 3 14 20612 -UBERON:0001433 distal carpal bone 4 14 20613 -UBERON:0010726 os vesalianum manus 14 20614 -UBERON:0010739 distal carpal bone 5 14 20615 -UBERON:0012290 fused carpal bones 2 and 3 14 20616 -UBERON:3000965 basale commune (carpal) 14 20617 -UBERON:0010721 distal tarsal bone 13 20618 -UBERON:0001452 distal tarsal bone 1 14 20619 -UBERON:0001453 distal tarsal bone 2 14 20620 -UBERON:0001454 distal tarsal bone 3 14 20621 -UBERON:0001455 cuboid bone 14 20622 -UBERON:0010723 os vesalianum pedis 14 20623 -UBERON:0010737 distal tarsal bone 4 14 20624 -UBERON:0010738 distal tarsal bone 5 14 20625 -UBERON:0012289 fused tarsal bones 2 and 3 14 20626 -UBERON:0013649 fused tarsal bones 1 and 2 14 20627 -UBERON:3001002 basale commune (tarsal) 14 20628 -UBERON:0005897 manus bone 11 20629 -UBERON:0001435 carpal bone 12 20630 -UBERON:0001480 proximal carpal bone 13 20631 -UBERON:0001427 radiale 14 20632 -UBERON:0001428 intermedium 14 20633 -UBERON:0001429 pisiform 14 20634 -UBERON:0002445 ulnare 14 20635 -UBERON:0007960 scapholunate 14 20636 -UBERON:0012124 avian scapholunar bone 14 20637 -UBERON:0001481 distal carpal bone 13 20638 -UBERON:0001430 distal carpal bone 1 14 20639 -UBERON:0001431 distal carpal bone 2 14 20640 -UBERON:0001432 distal carpal bone 3 14 20641 -UBERON:0001433 distal carpal bone 4 14 20642 -UBERON:0010726 os vesalianum manus 14 20643 -UBERON:0010739 distal carpal bone 5 14 20644 -UBERON:0012290 fused carpal bones 2 and 3 14 20645 -UBERON:3000965 basale commune (carpal) 14 20646 -UBERON:0007958 central carpal bone 13 20647 -UBERON:0007959 falciform carpal bone 13 20648 -UBERON:0008257 radial sesamoid 13 20649 -UBERON:3010060 centrale (fore) 13 20650 -UBERON:4200180 semilunate carpal 13 20651 -UBERON:0007997 sesamoid bone of manus 12 20652 -UBERON:0001429 pisiform 13 20653 -UBERON:0007991 proximal sesamoid bone of manus 13 20654 -UBERON:0008257 radial sesamoid 13 20655 -UBERON:0011205 carpometacarpus 12 20656 -UBERON:0012358 manual digitopodium bone 12 20657 -UBERON:0002374 metacarpal bone 13 20658 -UBERON:0003645 metacarpal bone of digit 1 14 20659 -UBERON:0003646 metacarpal bone of digit 2 14 20660 -UBERON:0003647 metacarpal bone of digit 3 14 20661 -UBERON:0003648 metacarpal bone of digit 4 14 20662 -UBERON:0003649 metacarpal bone of digit 5 14 20663 -UBERON:0013587 fused metacarpal bones 3 and 4 14 20664 -UBERON:0004249 manual digit bone 13 20665 -UBERON:0001436 phalanx of manus 14 20666 -UBERON:0002234 proximal phalanx of manus 15 20667 -UBERON:0004328 proximal phalanx of manual digit 2 16 20668 -UBERON:0004329 proximal phalanx of manual digit 3 16 20669 -UBERON:0004330 proximal phalanx of manual digit 4 16 20670 -UBERON:0004331 proximal phalanx of manual digit 5 16 20671 -UBERON:0004338 proximal phalanx of manual digit 1 16 20672 -UBERON:0003620 manual digit 1 phalanx 15 20673 -UBERON:0004337 distal phalanx of manual digit 1 16 20674 -UBERON:0004338 proximal phalanx of manual digit 1 16 20675 -UBERON:4200219 middle phalanx of manual digit 1 16 20676 -UBERON:0003636 manual digit 2 phalanx 15 20677 -UBERON:0004311 distal phalanx of manual digit 2 16 20678 -UBERON:0004320 middle phalanx of manual digit 2 16 20679 -UBERON:0004328 proximal phalanx of manual digit 2 16 20680 -UBERON:0003637 manual digit 3 phalanx 15 20681 -UBERON:0004312 distal phalanx of manual digit 3 16 20682 -UBERON:0004321 middle phalanx of manual digit 3 16 20683 -UBERON:0004329 proximal phalanx of manual digit 3 16 20684 -UBERON:0003638 manual digit 4 phalanx 15 20685 -UBERON:0004313 distal phalanx of manual digit 4 16 20686 -UBERON:0004322 middle phalanx of manual digit 4 16 20687 -UBERON:0004330 proximal phalanx of manual digit 4 16 20688 -UBERON:0003639 manual digit 5 phalanx 15 20689 -UBERON:0004314 distal phalanx of manual digit 5 16 20690 -UBERON:0004323 middle phalanx of manual digit 5 16 20691 -UBERON:0004331 proximal phalanx of manual digit 5 16 20692 -UBERON:0003864 middle phalanx of manus 15 20693 -UBERON:0004320 middle phalanx of manual digit 2 16 20694 -UBERON:0004321 middle phalanx of manual digit 3 16 20695 -UBERON:0004322 middle phalanx of manual digit 4 16 20696 -UBERON:0004323 middle phalanx of manual digit 5 16 20697 -UBERON:4200219 middle phalanx of manual digit 1 16 20698 -UBERON:0003865 distal phalanx of manus 15 20699 -UBERON:0004311 distal phalanx of manual digit 2 16 20700 -UBERON:0004312 distal phalanx of manual digit 3 16 20701 -UBERON:0004313 distal phalanx of manual digit 4 16 20702 -UBERON:0004314 distal phalanx of manual digit 5 16 20703 -UBERON:0004337 distal phalanx of manual digit 1 16 20704 -UBERON:0007991 proximal sesamoid bone of manus 14 20705 -UBERON:3000856 intercalary element of fore digit 14 20706 -UBERON:0012268 equine forelimb splint bone 13 20707 -UBERON:0005899 pes bone 11 20708 -UBERON:0001447 tarsal bone 12 20709 -UBERON:0001451 navicular bone of pes 13 20710 -UBERON:0006836 medial tibial tarsal bone 13 20711 -UBERON:0010721 distal tarsal bone 13 20712 -UBERON:0001452 distal tarsal bone 1 14 20713 -UBERON:0001453 distal tarsal bone 2 14 20714 -UBERON:0001454 distal tarsal bone 3 14 20715 -UBERON:0001455 cuboid bone 14 20716 -UBERON:0010723 os vesalianum pedis 14 20717 -UBERON:0010737 distal tarsal bone 4 14 20718 -UBERON:0010738 distal tarsal bone 5 14 20719 -UBERON:0012289 fused tarsal bones 2 and 3 14 20720 -UBERON:0013649 fused tarsal bones 1 and 2 14 20721 -UBERON:3001002 basale commune (tarsal) 14 20722 -UBERON:0011679 proximal tarsal bone 13 20723 -UBERON:0001450 calcaneus 14 20724 -UBERON:0002395 talus 14 20725 -UBERON:0011678 hindlimb intermedium bone 14 20726 -UBERON:0012126 fibulare 14 20727 -UBERON:0012288 centroquartal bone 13 20728 -UBERON:3010045 centrale 1 13 20729 -UBERON:3010073 centrale 2 13 20730 -UBERON:4200011 pedal centrale 13 20731 -UBERON:4200152 intertarsale sesamoid 13 20732 -UBERON:0008000 sesamoid bone of pes 12 20733 -UBERON:0007990 proximal sesamoid bone of pes 13 20734 -UBERON:4200152 intertarsale sesamoid 13 20735 -UBERON:0008195 tarsometatarsus 12 20736 -UBERON:0010725 accessory navicular bone 12 20737 -UBERON:0012359 pedal digitopodium bone 12 20738 -UBERON:0001448 metatarsal bone 13 20739 -UBERON:0003650 metatarsal bone of digit 1 14 20740 -UBERON:0003651 metatarsal bone of digit 2 14 20741 -UBERON:0003652 metatarsal bone of digit 3 14 20742 -UBERON:0003653 metatarsal bone of digit 4 14 20743 -UBERON:0003654 metatarsal bone of digit 5 14 20744 -UBERON:0013588 fused metatarsal bones 3 and 4 14 20745 -UBERON:0014763 fused metatarsal bones 2-4 15 20746 -UBERON:4200153 metatarsal bone of digit 6 14 20747 -UBERON:4200157 metatarsal bone of digit 7 14 20748 -UBERON:4200158 metatarsal bone of digit 8 14 20749 -UBERON:0004248 pedal digit bone 13 20750 -UBERON:0001449 phalanx of pes 14 20751 -UBERON:0003640 pedal digit 1 phalanx 15 20752 -UBERON:0004315 distal phalanx of pedal digit 1 16 20753 -UBERON:0004332 proximal phalanx of pedal digit 1 16 20754 -UBERON:0003641 pedal digit 2 phalanx 15 20755 -UBERON:0004316 distal phalanx of pedal digit 2 16 20756 -UBERON:0004324 middle phalanx of pedal digit 2 16 20757 -UBERON:0004333 proximal phalanx of pedal digit 2 16 20758 -UBERON:0003642 pedal digit 3 phalanx 15 20759 -UBERON:0004317 distal phalanx of pedal digit 3 16 20760 -UBERON:0004325 middle phalanx of pedal digit 3 16 20761 -UBERON:0004334 proximal phalanx of pedal digit 3 16 20762 -UBERON:0003862 pedal digit 4 phalanx 15 20763 -UBERON:0004318 distal phalanx of pedal digit 4 16 20764 -UBERON:0004326 middle phalanx of pedal digit 4 16 20765 -UBERON:0004335 proximal phalanx of pedal digit 4 16 20766 -UBERON:0003863 pedal digit 5 phalanx 15 20767 -UBERON:0004319 distal phalanx of pedal digit 5 16 20768 -UBERON:0004327 middle phalanx of pedal digit 5 16 20769 -UBERON:0004336 proximal phalanx of pedal digit 5 16 20770 -UBERON:0003866 middle phalanx of pes 15 20771 -UBERON:0004324 middle phalanx of pedal digit 2 16 20772 -UBERON:0004325 middle phalanx of pedal digit 3 16 20773 -UBERON:0004326 middle phalanx of pedal digit 4 16 20774 -UBERON:0004327 middle phalanx of pedal digit 5 16 20775 -UBERON:0003867 distal phalanx of pes 15 20776 -UBERON:0004315 distal phalanx of pedal digit 1 16 20777 -UBERON:0004316 distal phalanx of pedal digit 2 16 20778 -UBERON:0004317 distal phalanx of pedal digit 3 16 20779 -UBERON:0004318 distal phalanx of pedal digit 4 16 20780 -UBERON:0004319 distal phalanx of pedal digit 5 16 20781 -UBERON:0003868 proximal phalanx of pes 15 20782 -UBERON:0004332 proximal phalanx of pedal digit 1 16 20783 -UBERON:0004333 proximal phalanx of pedal digit 2 16 20784 -UBERON:0004334 proximal phalanx of pedal digit 3 16 20785 -UBERON:0004335 proximal phalanx of pedal digit 4 16 20786 -UBERON:0004336 proximal phalanx of pedal digit 5 16 20787 -UBERON:4100009 pedal digit 7 phalanx 15 20788 -UBERON:0007990 proximal sesamoid bone of pes 14 20789 -UBERON:3000931 intercalary element of hind digit 14 20790 -UBERON:3010675 bony nodule of terminal phalanx of hind digit 14 20791 -UBERON:0012269 equine hindlimb splint bone 13 20792 -UBERON:0010759 equine distal sesamoid 11 20793 -UBERON:0012357 digitopodium bone 11 20794 -UBERON:0003221 phalanx 12 20795 -UBERON:0001436 phalanx of manus 13 20796 -UBERON:0002234 proximal phalanx of manus 14 20797 -UBERON:0004328 proximal phalanx of manual digit 2 15 20798 -UBERON:0004329 proximal phalanx of manual digit 3 15 20799 -UBERON:0004330 proximal phalanx of manual digit 4 15 20800 -UBERON:0004331 proximal phalanx of manual digit 5 15 20801 -UBERON:0004338 proximal phalanx of manual digit 1 15 20802 -UBERON:0003620 manual digit 1 phalanx 14 20803 -UBERON:0004337 distal phalanx of manual digit 1 15 20804 -UBERON:0004338 proximal phalanx of manual digit 1 15 20805 -UBERON:4200219 middle phalanx of manual digit 1 15 20806 -UBERON:0003636 manual digit 2 phalanx 14 20807 -UBERON:0004311 distal phalanx of manual digit 2 15 20808 -UBERON:0004320 middle phalanx of manual digit 2 15 20809 -UBERON:0004328 proximal phalanx of manual digit 2 15 20810 -UBERON:0003637 manual digit 3 phalanx 14 20811 -UBERON:0004312 distal phalanx of manual digit 3 15 20812 -UBERON:0004321 middle phalanx of manual digit 3 15 20813 -UBERON:0004329 proximal phalanx of manual digit 3 15 20814 -UBERON:0003638 manual digit 4 phalanx 14 20815 -UBERON:0004313 distal phalanx of manual digit 4 15 20816 -UBERON:0004322 middle phalanx of manual digit 4 15 20817 -UBERON:0004330 proximal phalanx of manual digit 4 15 20818 -UBERON:0003639 manual digit 5 phalanx 14 20819 -UBERON:0004314 distal phalanx of manual digit 5 15 20820 -UBERON:0004323 middle phalanx of manual digit 5 15 20821 -UBERON:0004331 proximal phalanx of manual digit 5 15 20822 -UBERON:0003864 middle phalanx of manus 14 20823 -UBERON:0004320 middle phalanx of manual digit 2 15 20824 -UBERON:0004321 middle phalanx of manual digit 3 15 20825 -UBERON:0004322 middle phalanx of manual digit 4 15 20826 -UBERON:0004323 middle phalanx of manual digit 5 15 20827 -UBERON:4200219 middle phalanx of manual digit 1 15 20828 -UBERON:0003865 distal phalanx of manus 14 20829 -UBERON:0004311 distal phalanx of manual digit 2 15 20830 -UBERON:0004312 distal phalanx of manual digit 3 15 20831 -UBERON:0004313 distal phalanx of manual digit 4 15 20832 -UBERON:0004314 distal phalanx of manual digit 5 15 20833 -UBERON:0004337 distal phalanx of manual digit 1 15 20834 -UBERON:0001449 phalanx of pes 13 20835 -UBERON:0003640 pedal digit 1 phalanx 14 20836 -UBERON:0004315 distal phalanx of pedal digit 1 15 20837 -UBERON:0004332 proximal phalanx of pedal digit 1 15 20838 -UBERON:0003641 pedal digit 2 phalanx 14 20839 -UBERON:0004316 distal phalanx of pedal digit 2 15 20840 -UBERON:0004324 middle phalanx of pedal digit 2 15 20841 -UBERON:0004333 proximal phalanx of pedal digit 2 15 20842 -UBERON:0003642 pedal digit 3 phalanx 14 20843 -UBERON:0004317 distal phalanx of pedal digit 3 15 20844 -UBERON:0004325 middle phalanx of pedal digit 3 15 20845 -UBERON:0004334 proximal phalanx of pedal digit 3 15 20846 -UBERON:0003862 pedal digit 4 phalanx 14 20847 -UBERON:0004318 distal phalanx of pedal digit 4 15 20848 -UBERON:0004326 middle phalanx of pedal digit 4 15 20849 -UBERON:0004335 proximal phalanx of pedal digit 4 15 20850 -UBERON:0003863 pedal digit 5 phalanx 14 20851 -UBERON:0004319 distal phalanx of pedal digit 5 15 20852 -UBERON:0004327 middle phalanx of pedal digit 5 15 20853 -UBERON:0004336 proximal phalanx of pedal digit 5 15 20854 -UBERON:0003866 middle phalanx of pes 14 20855 -UBERON:0004324 middle phalanx of pedal digit 2 15 20856 -UBERON:0004325 middle phalanx of pedal digit 3 15 20857 -UBERON:0004326 middle phalanx of pedal digit 4 15 20858 -UBERON:0004327 middle phalanx of pedal digit 5 15 20859 -UBERON:0003867 distal phalanx of pes 14 20860 -UBERON:0004315 distal phalanx of pedal digit 1 15 20861 -UBERON:0004316 distal phalanx of pedal digit 2 15 20862 -UBERON:0004317 distal phalanx of pedal digit 3 15 20863 -UBERON:0004318 distal phalanx of pedal digit 4 15 20864 -UBERON:0004319 distal phalanx of pedal digit 5 15 20865 -UBERON:0003868 proximal phalanx of pes 14 20866 -UBERON:0004332 proximal phalanx of pedal digit 1 15 20867 -UBERON:0004333 proximal phalanx of pedal digit 2 15 20868 -UBERON:0004334 proximal phalanx of pedal digit 3 15 20869 -UBERON:0004335 proximal phalanx of pedal digit 4 15 20870 -UBERON:0004336 proximal phalanx of pedal digit 5 15 20871 -UBERON:4100009 pedal digit 7 phalanx 14 20872 -UBERON:0004300 distal phalanx 13 20873 -UBERON:0003865 distal phalanx of manus 14 20874 -UBERON:0004311 distal phalanx of manual digit 2 15 20875 -UBERON:0004312 distal phalanx of manual digit 3 15 20876 -UBERON:0004313 distal phalanx of manual digit 4 15 20877 -UBERON:0004314 distal phalanx of manual digit 5 15 20878 -UBERON:0004337 distal phalanx of manual digit 1 15 20879 -UBERON:0003867 distal phalanx of pes 14 20880 -UBERON:0004315 distal phalanx of pedal digit 1 15 20881 -UBERON:0004316 distal phalanx of pedal digit 2 15 20882 -UBERON:0004317 distal phalanx of pedal digit 3 15 20883 -UBERON:0004318 distal phalanx of pedal digit 4 15 20884 -UBERON:0004319 distal phalanx of pedal digit 5 15 20885 -UBERON:0014483 distal phalanx of digit 1 14 20886 -UBERON:0004315 distal phalanx of pedal digit 1 15 20887 -UBERON:0004337 distal phalanx of manual digit 1 15 20888 -UBERON:0014484 distal phalanx of digit 2 14 20889 -UBERON:0004311 distal phalanx of manual digit 2 15 20890 -UBERON:0004316 distal phalanx of pedal digit 2 15 20891 -UBERON:0014485 distal phalanx of digit 3 14 20892 -UBERON:0004312 distal phalanx of manual digit 3 15 20893 -UBERON:0004317 distal phalanx of pedal digit 3 15 20894 -UBERON:0014486 distal phalanx of digit 4 14 20895 -UBERON:0004313 distal phalanx of manual digit 4 15 20896 -UBERON:0004318 distal phalanx of pedal digit 4 15 20897 -UBERON:0014487 distal phalanx of digit 5 14 20898 -UBERON:0004314 distal phalanx of manual digit 5 15 20899 -UBERON:0004319 distal phalanx of pedal digit 5 15 20900 -UBERON:3010746 T-shaped terminal phalanx 14 20901 -UBERON:0004301 middle phalanx 13 20902 -UBERON:0003864 middle phalanx of manus 14 20903 -UBERON:0004320 middle phalanx of manual digit 2 15 20904 -UBERON:0004321 middle phalanx of manual digit 3 15 20905 -UBERON:0004322 middle phalanx of manual digit 4 15 20906 -UBERON:0004323 middle phalanx of manual digit 5 15 20907 -UBERON:4200219 middle phalanx of manual digit 1 15 20908 -UBERON:0003866 middle phalanx of pes 14 20909 -UBERON:0004324 middle phalanx of pedal digit 2 15 20910 -UBERON:0004325 middle phalanx of pedal digit 3 15 20911 -UBERON:0004326 middle phalanx of pedal digit 4 15 20912 -UBERON:0004327 middle phalanx of pedal digit 5 15 20913 -UBERON:0014488 middle phalanx of digit 2 14 20914 -UBERON:0004320 middle phalanx of manual digit 2 15 20915 -UBERON:0004324 middle phalanx of pedal digit 2 15 20916 -UBERON:0014489 middle phalanx of digit 3 14 20917 -UBERON:0004321 middle phalanx of manual digit 3 15 20918 -UBERON:0004325 middle phalanx of pedal digit 3 15 20919 -UBERON:0009555 short pastern bone 15 20920 -UBERON:0014490 middle phalanx of digit 4 14 20921 -UBERON:0004322 middle phalanx of manual digit 4 15 20922 -UBERON:0004326 middle phalanx of pedal digit 4 15 20923 -UBERON:0014491 middle phalanx of digit 5 14 20924 -UBERON:0004323 middle phalanx of manual digit 5 15 20925 -UBERON:0004327 middle phalanx of pedal digit 5 15 20926 -UBERON:0004302 proximal phalanx 13 20927 -UBERON:0002234 proximal phalanx of manus 14 20928 -UBERON:0004328 proximal phalanx of manual digit 2 15 20929 -UBERON:0004329 proximal phalanx of manual digit 3 15 20930 -UBERON:0004330 proximal phalanx of manual digit 4 15 20931 -UBERON:0004331 proximal phalanx of manual digit 5 15 20932 -UBERON:0004338 proximal phalanx of manual digit 1 15 20933 -UBERON:0003868 proximal phalanx of pes 14 20934 -UBERON:0004332 proximal phalanx of pedal digit 1 15 20935 -UBERON:0004333 proximal phalanx of pedal digit 2 15 20936 -UBERON:0004334 proximal phalanx of pedal digit 3 15 20937 -UBERON:0004335 proximal phalanx of pedal digit 4 15 20938 -UBERON:0004336 proximal phalanx of pedal digit 5 15 20939 -UBERON:0014501 proximal phalanx of digit 1 14 20940 -UBERON:0004332 proximal phalanx of pedal digit 1 15 20941 -UBERON:0004338 proximal phalanx of manual digit 1 15 20942 -UBERON:0014502 proximal phalanx of digit 2 14 20943 -UBERON:0004328 proximal phalanx of manual digit 2 15 20944 -UBERON:0004333 proximal phalanx of pedal digit 2 15 20945 -UBERON:0014503 proximal phalanx of digit 3 14 20946 -UBERON:0004329 proximal phalanx of manual digit 3 15 20947 -UBERON:0004334 proximal phalanx of pedal digit 3 15 20948 -UBERON:0009556 long pastern bone 15 20949 -UBERON:0014504 proximal phalanx of digit 4 14 20950 -UBERON:0004330 proximal phalanx of manual digit 4 15 20951 -UBERON:0004335 proximal phalanx of pedal digit 4 15 20952 -UBERON:0014505 proximal phalanx of digit 5 14 20953 -UBERON:0004331 proximal phalanx of manual digit 5 15 20954 -UBERON:0004336 proximal phalanx of pedal digit 5 15 20955 -UBERON:0009558 pastern bone 13 20956 -UBERON:0009555 short pastern bone 14 20957 -UBERON:0009556 long pastern bone 14 20958 -UBERON:0018266 third phalanx 13 20959 -UBERON:0018322 fourth phalanx 13 20960 -UBERON:4100005 second phalanx 13 20961 -UBERON:0003821 metapodium bone 12 20962 -UBERON:0001448 metatarsal bone 13 20963 -UBERON:0003650 metatarsal bone of digit 1 14 20964 -UBERON:0003651 metatarsal bone of digit 2 14 20965 -UBERON:0003652 metatarsal bone of digit 3 14 20966 -UBERON:0003653 metatarsal bone of digit 4 14 20967 -UBERON:0003654 metatarsal bone of digit 5 14 20968 -UBERON:0013588 fused metatarsal bones 3 and 4 14 20969 -UBERON:0014763 fused metatarsal bones 2-4 15 20970 -UBERON:4200153 metatarsal bone of digit 6 14 20971 -UBERON:4200157 metatarsal bone of digit 7 14 20972 -UBERON:4200158 metatarsal bone of digit 8 14 20973 -UBERON:0002374 metacarpal bone 13 20974 -UBERON:0003645 metacarpal bone of digit 1 14 20975 -UBERON:0003646 metacarpal bone of digit 2 14 20976 -UBERON:0003647 metacarpal bone of digit 3 14 20977 -UBERON:0003648 metacarpal bone of digit 4 14 20978 -UBERON:0003649 metacarpal bone of digit 5 14 20979 -UBERON:0013587 fused metacarpal bones 3 and 4 14 20980 -UBERON:0012267 equine splint bone 13 20981 -UBERON:0012268 equine forelimb splint bone 14 20982 -UBERON:0012269 equine hindlimb splint bone 14 20983 -UBERON:0013581 metapodium bone 1 13 20984 -UBERON:0003645 metacarpal bone of digit 1 14 20985 -UBERON:0003650 metatarsal bone of digit 1 14 20986 -UBERON:0013582 metapodium bone 2 13 20987 -UBERON:0003646 metacarpal bone of digit 2 14 20988 -UBERON:0003651 metatarsal bone of digit 2 14 20989 -UBERON:0013583 metapodium bone 3 13 20990 -UBERON:0003647 metacarpal bone of digit 3 14 20991 -UBERON:0003652 metatarsal bone of digit 3 14 20992 -UBERON:0013584 metapodium bone 4 13 20993 -UBERON:0003648 metacarpal bone of digit 4 14 20994 -UBERON:0003653 metatarsal bone of digit 4 14 20995 -UBERON:0013585 metapodium bone 5 13 20996 -UBERON:0003649 metacarpal bone of digit 5 14 20997 -UBERON:0003654 metatarsal bone of digit 5 14 20998 -UBERON:0013586 fused metapodial bones 3 and 4 13 20999 -UBERON:0013587 fused metacarpal bones 3 and 4 14 21000 -UBERON:0013588 fused metatarsal bones 3 and 4 14 21001 -UBERON:0014763 fused metatarsal bones 2-4 15 21002 -UBERON:0014762 fused metapodial bones 2-4 14 21003 -UBERON:0014763 fused metatarsal bones 2-4 15 21004 -UBERON:4200154 metapodium bone 6 13 21005 -UBERON:4200153 metatarsal bone of digit 6 14 21006 -UBERON:4200155 metapodium bone 7 13 21007 -UBERON:4200157 metatarsal bone of digit 7 14 21008 -UBERON:4200156 metapodium bone 8 13 21009 -UBERON:4200158 metatarsal bone of digit 8 14 21010 -UBERON:0012358 manual digitopodium bone 12 21011 -UBERON:0002374 metacarpal bone 13 21012 -UBERON:0003645 metacarpal bone of digit 1 14 21013 -UBERON:0003646 metacarpal bone of digit 2 14 21014 -UBERON:0003647 metacarpal bone of digit 3 14 21015 -UBERON:0003648 metacarpal bone of digit 4 14 21016 -UBERON:0003649 metacarpal bone of digit 5 14 21017 -UBERON:0013587 fused metacarpal bones 3 and 4 14 21018 -UBERON:0004249 manual digit bone 13 21019 -UBERON:0001436 phalanx of manus 14 21020 -UBERON:0002234 proximal phalanx of manus 15 21021 -UBERON:0004328 proximal phalanx of manual digit 2 16 21022 -UBERON:0004329 proximal phalanx of manual digit 3 16 21023 -UBERON:0004330 proximal phalanx of manual digit 4 16 21024 -UBERON:0004331 proximal phalanx of manual digit 5 16 21025 -UBERON:0004338 proximal phalanx of manual digit 1 16 21026 -UBERON:0003620 manual digit 1 phalanx 15 21027 -UBERON:0004337 distal phalanx of manual digit 1 16 21028 -UBERON:0004338 proximal phalanx of manual digit 1 16 21029 -UBERON:4200219 middle phalanx of manual digit 1 16 21030 -UBERON:0003636 manual digit 2 phalanx 15 21031 -UBERON:0004311 distal phalanx of manual digit 2 16 21032 -UBERON:0004320 middle phalanx of manual digit 2 16 21033 -UBERON:0004328 proximal phalanx of manual digit 2 16 21034 -UBERON:0003637 manual digit 3 phalanx 15 21035 -UBERON:0004312 distal phalanx of manual digit 3 16 21036 -UBERON:0004321 middle phalanx of manual digit 3 16 21037 -UBERON:0004329 proximal phalanx of manual digit 3 16 21038 -UBERON:0003638 manual digit 4 phalanx 15 21039 -UBERON:0004313 distal phalanx of manual digit 4 16 21040 -UBERON:0004322 middle phalanx of manual digit 4 16 21041 -UBERON:0004330 proximal phalanx of manual digit 4 16 21042 -UBERON:0003639 manual digit 5 phalanx 15 21043 -UBERON:0004314 distal phalanx of manual digit 5 16 21044 -UBERON:0004323 middle phalanx of manual digit 5 16 21045 -UBERON:0004331 proximal phalanx of manual digit 5 16 21046 -UBERON:0003864 middle phalanx of manus 15 21047 -UBERON:0004320 middle phalanx of manual digit 2 16 21048 -UBERON:0004321 middle phalanx of manual digit 3 16 21049 -UBERON:0004322 middle phalanx of manual digit 4 16 21050 -UBERON:0004323 middle phalanx of manual digit 5 16 21051 -UBERON:4200219 middle phalanx of manual digit 1 16 21052 -UBERON:0003865 distal phalanx of manus 15 21053 -UBERON:0004311 distal phalanx of manual digit 2 16 21054 -UBERON:0004312 distal phalanx of manual digit 3 16 21055 -UBERON:0004313 distal phalanx of manual digit 4 16 21056 -UBERON:0004314 distal phalanx of manual digit 5 16 21057 -UBERON:0004337 distal phalanx of manual digit 1 16 21058 -UBERON:0007991 proximal sesamoid bone of manus 14 21059 -UBERON:3000856 intercalary element of fore digit 14 21060 -UBERON:0012268 equine forelimb splint bone 13 21061 -UBERON:0012359 pedal digitopodium bone 12 21062 -UBERON:0001448 metatarsal bone 13 21063 -UBERON:0003650 metatarsal bone of digit 1 14 21064 -UBERON:0003651 metatarsal bone of digit 2 14 21065 -UBERON:0003652 metatarsal bone of digit 3 14 21066 -UBERON:0003653 metatarsal bone of digit 4 14 21067 -UBERON:0003654 metatarsal bone of digit 5 14 21068 -UBERON:0013588 fused metatarsal bones 3 and 4 14 21069 -UBERON:0014763 fused metatarsal bones 2-4 15 21070 -UBERON:4200153 metatarsal bone of digit 6 14 21071 -UBERON:4200157 metatarsal bone of digit 7 14 21072 -UBERON:4200158 metatarsal bone of digit 8 14 21073 -UBERON:0004248 pedal digit bone 13 21074 -UBERON:0001449 phalanx of pes 14 21075 -UBERON:0003640 pedal digit 1 phalanx 15 21076 -UBERON:0004315 distal phalanx of pedal digit 1 16 21077 -UBERON:0004332 proximal phalanx of pedal digit 1 16 21078 -UBERON:0003641 pedal digit 2 phalanx 15 21079 -UBERON:0004316 distal phalanx of pedal digit 2 16 21080 -UBERON:0004324 middle phalanx of pedal digit 2 16 21081 -UBERON:0004333 proximal phalanx of pedal digit 2 16 21082 -UBERON:0003642 pedal digit 3 phalanx 15 21083 -UBERON:0004317 distal phalanx of pedal digit 3 16 21084 -UBERON:0004325 middle phalanx of pedal digit 3 16 21085 -UBERON:0004334 proximal phalanx of pedal digit 3 16 21086 -UBERON:0003862 pedal digit 4 phalanx 15 21087 -UBERON:0004318 distal phalanx of pedal digit 4 16 21088 -UBERON:0004326 middle phalanx of pedal digit 4 16 21089 -UBERON:0004335 proximal phalanx of pedal digit 4 16 21090 -UBERON:0003863 pedal digit 5 phalanx 15 21091 -UBERON:0004319 distal phalanx of pedal digit 5 16 21092 -UBERON:0004327 middle phalanx of pedal digit 5 16 21093 -UBERON:0004336 proximal phalanx of pedal digit 5 16 21094 -UBERON:0003866 middle phalanx of pes 15 21095 -UBERON:0004324 middle phalanx of pedal digit 2 16 21096 -UBERON:0004325 middle phalanx of pedal digit 3 16 21097 -UBERON:0004326 middle phalanx of pedal digit 4 16 21098 -UBERON:0004327 middle phalanx of pedal digit 5 16 21099 -UBERON:0003867 distal phalanx of pes 15 21100 -UBERON:0004315 distal phalanx of pedal digit 1 16 21101 -UBERON:0004316 distal phalanx of pedal digit 2 16 21102 -UBERON:0004317 distal phalanx of pedal digit 3 16 21103 -UBERON:0004318 distal phalanx of pedal digit 4 16 21104 -UBERON:0004319 distal phalanx of pedal digit 5 16 21105 -UBERON:0003868 proximal phalanx of pes 15 21106 -UBERON:0004332 proximal phalanx of pedal digit 1 16 21107 -UBERON:0004333 proximal phalanx of pedal digit 2 16 21108 -UBERON:0004334 proximal phalanx of pedal digit 3 16 21109 -UBERON:0004335 proximal phalanx of pedal digit 4 16 21110 -UBERON:0004336 proximal phalanx of pedal digit 5 16 21111 -UBERON:4100009 pedal digit 7 phalanx 15 21112 -UBERON:0007990 proximal sesamoid bone of pes 14 21113 -UBERON:3000931 intercalary element of hind digit 14 21114 -UBERON:3010675 bony nodule of terminal phalanx of hind digit 14 21115 -UBERON:0012269 equine hindlimb splint bone 13 21116 -UBERON:3010624 subarticular sesamoid 12 21117 -UBERON:1500006 paired fin radial bone 9 21118 -UBERON:2000508 pelvic fin radial bone 10 21119 -UBERON:1500008 pelvic fin distal radial bone 11 21120 -UBERON:2001415 pelvic fin distal radial bone 2 12 21121 -UBERON:2001416 pelvic fin distal radial bone 3 12 21122 -UBERON:2001417 pelvic fin distal radial bone 1 12 21123 -UBERON:1500009 pelvic fin basipterygial radial 11 21124 -UBERON:1500010 pelvic fin middle radial bone 11 21125 -UBERON:2001586 pectoral fin radial bone 10 21126 -UBERON:2001587 pectoral fin proximal radial bone 11 21127 -UBERON:2002026 pectoral fin proximal radial bone 1 12 21128 -UBERON:2002027 pectoral fin proximal radial bone 2 12 21129 -UBERON:2002028 pectoral fin proximal radial bone 3 12 21130 -UBERON:2002029 pectoral fin proximal radial bone 4 12 21131 -UBERON:4300087 mesopterygium bone 12 21132 -UBERON:4300088 metapterygium bone 12 21133 -UBERON:4300089 propterygium bone 12 21134 -UBERON:2001588 pectoral fin distal radial bone 11 21135 -UBERON:2002277 pectoral fin distal radial bone 1 12 21136 -UBERON:2002279 pectoral fin distal radial bone 2 12 21137 -UBERON:2002280 pectoral fin distal radial bone 3 12 21138 -UBERON:2001788 pelvic splint 9 21139 -UBERON:2002077 lateropterygium 9 21140 -UBERON:2002086 pelvic axillary process 9 21141 -UBERON:2002087 pectoral axillary process 9 21142 -UBERON:4300155 pectoral splint 9 21143 -UBERON:4440011 paired fin lepidotrichium 9 21144 -UBERON:4000173 pelvic fin lepidotrichium 10 21145 -UBERON:2002270 pelvic fin spine 11 21146 -UBERON:4300117 pelvic fin ray 11 21147 -UBERON:2001776 pelvic fin ray 1 12 21148 -UBERON:2001777 pelvic fin ray 2 12 21149 -UBERON:2001778 pelvic fin ray 3 12 21150 -UBERON:2001779 pelvic fin ray 4 12 21151 -UBERON:2001780 pelvic fin ray 5 12 21152 -UBERON:2001781 pelvic fin ray 6 12 21153 -UBERON:2001782 pelvic fin ray 7 12 21154 -UBERON:4300192 branched pelvic fin ray 12 21155 -UBERON:4500011 unbranched pelvic fin ray 12 21156 -UBERON:4000175 pectoral fin lepidotrichium 10 21157 -UBERON:2001787 pectoral fin spine 11 21158 -UBERON:4500007 pectoral fin ray 11 21159 -UBERON:2001761 pectoral fin ray 1 12 21160 -UBERON:2001762 pectoral fin ray 2 12 21161 -UBERON:2001763 pectoral fin ray 3 12 21162 -UBERON:2001764 pectoral fin ray 4 12 21163 -UBERON:2001765 pectoral fin ray 5 12 21164 -UBERON:2001766 pectoral fin ray 6 12 21165 -UBERON:2001767 pectoral fin ray 7 12 21166 -UBERON:2001993 branched pectoral fin ray 12 21167 -UBERON:4300103 rudimentary pectoral fin ray 12 21168 -UBERON:4500010 unbranched pectoral fin ray 12 21169 -UBERON:4500009 paired fin spine 10 21170 -UBERON:2001787 pectoral fin spine 11 21171 -UBERON:2002270 pelvic fin spine 11 21172 -UBERON:0007828 girdle bone/zone 8 21173 -UBERON:0007829 pectoral girdle bone 9 21174 -UBERON:0001105 clavicle bone 10 21175 -UBERON:0008255 right clavicle 11 21176 -UBERON:0008256 left clavicle 11 21177 -UBERON:0004741 cleithrum 10 21178 -UBERON:0004743 coracoid bone 10 21179 -UBERON:0006849 scapula 10 21180 -UBERON:0007841 furcula 10 21181 -UBERON:0011246 procoracoid bone 10 21182 -UBERON:0011655 interclavicle 10 21183 -UBERON:4100006 parasternal process 11 21184 -UBERON:2000239 mesocoracoid bone 10 21185 -UBERON:2000410 postcleithrum 10 21186 -UBERON:2001852 postcleithrum 1 11 21187 -UBERON:2001853 postcleithrum 2 11 21188 -UBERON:2001854 postcleithrum 3 11 21189 -UBERON:2000549 posttemporal 10 21190 -UBERON:2000594 supracleithrum 10 21191 -UBERON:2000663 extrascapula 10 21192 -UBERON:4200099 lateral extrascapular 11 21193 -UBERON:4200103 median extrascapular 11 21194 -UBERON:2001998 posttemporal-supracleithrum 10 21195 -UBERON:2002019 pterotic-posttemporal-supracleithrum 10 21196 -UBERON:4000160 anocleithrum 10 21197 -UBERON:4200022 extracleithrum 10 21198 -UBERON:4200102 median dorsal plate 10 21199 -UBERON:4200115 presupracleithrum 10 21200 -UBERON:4300014 dorsal cleithrum 10 21201 -UBERON:4300015 ventral cleithrum 10 21202 -UBERON:4300021 anterolateral plate 10 21203 -UBERON:4300022 anteroventral plate 10 21204 -UBERON:4300023 interolateral plate 10 21205 -UBERON:4300024 spinal plate 10 21206 -UBERON:4300025 posterior dorsolateral plate 10 21207 -UBERON:4300026 anterior ventrolateral plate 10 21208 -UBERON:4300028 posterior ventrolateral plate 10 21209 -UBERON:4300104 ectocoracoid bone 10 21210 -UBERON:0007830 pelvic girdle bone/zone 9 21211 -UBERON:0001272 innominate bone 10 21212 -UBERON:0001273 ilium 10 21213 -UBERON:4200220 iliac ramus 11 21214 -UBERON:0001274 ischium 10 21215 -UBERON:0001275 pubis 10 21216 -UBERON:0013204 epipubic bone 10 21217 -UBERON:2000623 basipterygium bone 10 21218 -UBERON:0010741 bone of pectoral complex 8 21219 -UBERON:0003461 shoulder bone 9 21220 -UBERON:0000976 humerus 10 21221 -UBERON:0007829 pectoral girdle bone 9 21222 -UBERON:0001105 clavicle bone 10 21223 -UBERON:0008255 right clavicle 11 21224 -UBERON:0008256 left clavicle 11 21225 -UBERON:0004741 cleithrum 10 21226 -UBERON:0004743 coracoid bone 10 21227 -UBERON:0006849 scapula 10 21228 -UBERON:0007841 furcula 10 21229 -UBERON:0011246 procoracoid bone 10 21230 -UBERON:0011655 interclavicle 10 21231 -UBERON:4100006 parasternal process 11 21232 -UBERON:2000239 mesocoracoid bone 10 21233 -UBERON:2000410 postcleithrum 10 21234 -UBERON:2001852 postcleithrum 1 11 21235 -UBERON:2001853 postcleithrum 2 11 21236 -UBERON:2001854 postcleithrum 3 11 21237 -UBERON:2000549 posttemporal 10 21238 -UBERON:2000594 supracleithrum 10 21239 -UBERON:2000663 extrascapula 10 21240 -UBERON:4200099 lateral extrascapular 11 21241 -UBERON:4200103 median extrascapular 11 21242 -UBERON:2001998 posttemporal-supracleithrum 10 21243 -UBERON:2002019 pterotic-posttemporal-supracleithrum 10 21244 -UBERON:4000160 anocleithrum 10 21245 -UBERON:4200022 extracleithrum 10 21246 -UBERON:4200102 median dorsal plate 10 21247 -UBERON:4200115 presupracleithrum 10 21248 -UBERON:4300014 dorsal cleithrum 10 21249 -UBERON:4300015 ventral cleithrum 10 21250 -UBERON:4300021 anterolateral plate 10 21251 -UBERON:4300022 anteroventral plate 10 21252 -UBERON:4300023 interolateral plate 10 21253 -UBERON:4300024 spinal plate 10 21254 -UBERON:4300025 posterior dorsolateral plate 10 21255 -UBERON:4300026 anterior ventrolateral plate 10 21256 -UBERON:4300028 posterior ventrolateral plate 10 21257 -UBERON:4300104 ectocoracoid bone 10 21258 -UBERON:0008962 forelimb bone 9 21259 -UBERON:0003460 arm bone 10 21260 -UBERON:0003466 forelimb zeugopod bone 11 21261 -UBERON:0001423 radius bone 12 21262 -UBERON:0001424 ulna 12 21263 -UBERON:0006715 radio-ulna 12 21264 -UBERON:0007993 ulnar sesamoid bone 12 21265 -UBERON:0004250 upper arm bone 11 21266 -UBERON:0000976 humerus 12 21267 -UBERON:0003607 forelimb long bone 10 21268 -UBERON:0000976 humerus 11 21269 -UBERON:0001423 radius bone 11 21270 -UBERON:0001424 ulna 11 21271 -UBERON:0001436 phalanx of manus 11 21272 -UBERON:0002234 proximal phalanx of manus 12 21273 -UBERON:0004328 proximal phalanx of manual digit 2 13 21274 -UBERON:0004329 proximal phalanx of manual digit 3 13 21275 -UBERON:0004330 proximal phalanx of manual digit 4 13 21276 -UBERON:0004331 proximal phalanx of manual digit 5 13 21277 -UBERON:0004338 proximal phalanx of manual digit 1 13 21278 -UBERON:0003620 manual digit 1 phalanx 12 21279 -UBERON:0004337 distal phalanx of manual digit 1 13 21280 -UBERON:0004338 proximal phalanx of manual digit 1 13 21281 -UBERON:4200219 middle phalanx of manual digit 1 13 21282 -UBERON:0003636 manual digit 2 phalanx 12 21283 -UBERON:0004311 distal phalanx of manual digit 2 13 21284 -UBERON:0004320 middle phalanx of manual digit 2 13 21285 -UBERON:0004328 proximal phalanx of manual digit 2 13 21286 -UBERON:0003637 manual digit 3 phalanx 12 21287 -UBERON:0004312 distal phalanx of manual digit 3 13 21288 -UBERON:0004321 middle phalanx of manual digit 3 13 21289 -UBERON:0004329 proximal phalanx of manual digit 3 13 21290 -UBERON:0003638 manual digit 4 phalanx 12 21291 -UBERON:0004313 distal phalanx of manual digit 4 13 21292 -UBERON:0004322 middle phalanx of manual digit 4 13 21293 -UBERON:0004330 proximal phalanx of manual digit 4 13 21294 -UBERON:0003639 manual digit 5 phalanx 12 21295 -UBERON:0004314 distal phalanx of manual digit 5 13 21296 -UBERON:0004323 middle phalanx of manual digit 5 13 21297 -UBERON:0004331 proximal phalanx of manual digit 5 13 21298 -UBERON:0003864 middle phalanx of manus 12 21299 -UBERON:0004320 middle phalanx of manual digit 2 13 21300 -UBERON:0004321 middle phalanx of manual digit 3 13 21301 -UBERON:0004322 middle phalanx of manual digit 4 13 21302 -UBERON:0004323 middle phalanx of manual digit 5 13 21303 -UBERON:4200219 middle phalanx of manual digit 1 13 21304 -UBERON:0003865 distal phalanx of manus 12 21305 -UBERON:0004311 distal phalanx of manual digit 2 13 21306 -UBERON:0004312 distal phalanx of manual digit 3 13 21307 -UBERON:0004313 distal phalanx of manual digit 4 13 21308 -UBERON:0004314 distal phalanx of manual digit 5 13 21309 -UBERON:0004337 distal phalanx of manual digit 1 13 21310 -UBERON:0002374 metacarpal bone 11 21311 -UBERON:0003645 metacarpal bone of digit 1 12 21312 -UBERON:0003646 metacarpal bone of digit 2 12 21313 -UBERON:0003647 metacarpal bone of digit 3 12 21314 -UBERON:0003648 metacarpal bone of digit 4 12 21315 -UBERON:0003649 metacarpal bone of digit 5 12 21316 -UBERON:0013587 fused metacarpal bones 3 and 4 12 21317 -UBERON:0012268 equine forelimb splint bone 11 21318 -UBERON:0005897 manus bone 10 21319 -UBERON:0001435 carpal bone 11 21320 -UBERON:0001480 proximal carpal bone 12 21321 -UBERON:0001427 radiale 13 21322 -UBERON:0001428 intermedium 13 21323 -UBERON:0001429 pisiform 13 21324 -UBERON:0002445 ulnare 13 21325 -UBERON:0007960 scapholunate 13 21326 -UBERON:0012124 avian scapholunar bone 13 21327 -UBERON:0001481 distal carpal bone 12 21328 -UBERON:0001430 distal carpal bone 1 13 21329 -UBERON:0001431 distal carpal bone 2 13 21330 -UBERON:0001432 distal carpal bone 3 13 21331 -UBERON:0001433 distal carpal bone 4 13 21332 -UBERON:0010726 os vesalianum manus 13 21333 -UBERON:0010739 distal carpal bone 5 13 21334 -UBERON:0012290 fused carpal bones 2 and 3 13 21335 -UBERON:3000965 basale commune (carpal) 13 21336 -UBERON:0007958 central carpal bone 12 21337 -UBERON:0007959 falciform carpal bone 12 21338 -UBERON:0008257 radial sesamoid 12 21339 -UBERON:3010060 centrale (fore) 12 21340 -UBERON:4200180 semilunate carpal 12 21341 -UBERON:0007997 sesamoid bone of manus 11 21342 -UBERON:0001429 pisiform 12 21343 -UBERON:0007991 proximal sesamoid bone of manus 12 21344 -UBERON:0008257 radial sesamoid 12 21345 -UBERON:0011205 carpometacarpus 11 21346 -UBERON:0012358 manual digitopodium bone 11 21347 -UBERON:0002374 metacarpal bone 12 21348 -UBERON:0003645 metacarpal bone of digit 1 13 21349 -UBERON:0003646 metacarpal bone of digit 2 13 21350 -UBERON:0003647 metacarpal bone of digit 3 13 21351 -UBERON:0003648 metacarpal bone of digit 4 13 21352 -UBERON:0003649 metacarpal bone of digit 5 13 21353 -UBERON:0013587 fused metacarpal bones 3 and 4 13 21354 -UBERON:0004249 manual digit bone 12 21355 -UBERON:0001436 phalanx of manus 13 21356 -UBERON:0002234 proximal phalanx of manus 14 21357 -UBERON:0004328 proximal phalanx of manual digit 2 15 21358 -UBERON:0004329 proximal phalanx of manual digit 3 15 21359 -UBERON:0004330 proximal phalanx of manual digit 4 15 21360 -UBERON:0004331 proximal phalanx of manual digit 5 15 21361 -UBERON:0004338 proximal phalanx of manual digit 1 15 21362 -UBERON:0003620 manual digit 1 phalanx 14 21363 -UBERON:0004337 distal phalanx of manual digit 1 15 21364 -UBERON:0004338 proximal phalanx of manual digit 1 15 21365 -UBERON:4200219 middle phalanx of manual digit 1 15 21366 -UBERON:0003636 manual digit 2 phalanx 14 21367 -UBERON:0004311 distal phalanx of manual digit 2 15 21368 -UBERON:0004320 middle phalanx of manual digit 2 15 21369 -UBERON:0004328 proximal phalanx of manual digit 2 15 21370 -UBERON:0003637 manual digit 3 phalanx 14 21371 -UBERON:0004312 distal phalanx of manual digit 3 15 21372 -UBERON:0004321 middle phalanx of manual digit 3 15 21373 -UBERON:0004329 proximal phalanx of manual digit 3 15 21374 -UBERON:0003638 manual digit 4 phalanx 14 21375 -UBERON:0004313 distal phalanx of manual digit 4 15 21376 -UBERON:0004322 middle phalanx of manual digit 4 15 21377 -UBERON:0004330 proximal phalanx of manual digit 4 15 21378 -UBERON:0003639 manual digit 5 phalanx 14 21379 -UBERON:0004314 distal phalanx of manual digit 5 15 21380 -UBERON:0004323 middle phalanx of manual digit 5 15 21381 -UBERON:0004331 proximal phalanx of manual digit 5 15 21382 -UBERON:0003864 middle phalanx of manus 14 21383 -UBERON:0004320 middle phalanx of manual digit 2 15 21384 -UBERON:0004321 middle phalanx of manual digit 3 15 21385 -UBERON:0004322 middle phalanx of manual digit 4 15 21386 -UBERON:0004323 middle phalanx of manual digit 5 15 21387 -UBERON:4200219 middle phalanx of manual digit 1 15 21388 -UBERON:0003865 distal phalanx of manus 14 21389 -UBERON:0004311 distal phalanx of manual digit 2 15 21390 -UBERON:0004312 distal phalanx of manual digit 3 15 21391 -UBERON:0004313 distal phalanx of manual digit 4 15 21392 -UBERON:0004314 distal phalanx of manual digit 5 15 21393 -UBERON:0004337 distal phalanx of manual digit 1 15 21394 -UBERON:0007991 proximal sesamoid bone of manus 13 21395 -UBERON:3000856 intercalary element of fore digit 13 21396 -UBERON:0012268 equine forelimb splint bone 12 21397 -UBERON:4200116 pteroid 10 21398 -UBERON:2001586 pectoral fin radial bone 9 21399 -UBERON:2001587 pectoral fin proximal radial bone 10 21400 -UBERON:2002026 pectoral fin proximal radial bone 1 11 21401 -UBERON:2002027 pectoral fin proximal radial bone 2 11 21402 -UBERON:2002028 pectoral fin proximal radial bone 3 11 21403 -UBERON:2002029 pectoral fin proximal radial bone 4 11 21404 -UBERON:4300087 mesopterygium bone 11 21405 -UBERON:4300088 metapterygium bone 11 21406 -UBERON:4300089 propterygium bone 11 21407 -UBERON:2001588 pectoral fin distal radial bone 10 21408 -UBERON:2002277 pectoral fin distal radial bone 1 11 21409 -UBERON:2002279 pectoral fin distal radial bone 2 11 21410 -UBERON:2002280 pectoral fin distal radial bone 3 11 21411 -UBERON:2002087 pectoral axillary process 9 21412 -UBERON:4000175 pectoral fin lepidotrichium 9 21413 -UBERON:2001787 pectoral fin spine 10 21414 -UBERON:4500007 pectoral fin ray 10 21415 -UBERON:2001761 pectoral fin ray 1 11 21416 -UBERON:2001762 pectoral fin ray 2 11 21417 -UBERON:2001763 pectoral fin ray 3 11 21418 -UBERON:2001764 pectoral fin ray 4 11 21419 -UBERON:2001765 pectoral fin ray 5 11 21420 -UBERON:2001766 pectoral fin ray 6 11 21421 -UBERON:2001767 pectoral fin ray 7 11 21422 -UBERON:2001993 branched pectoral fin ray 11 21423 -UBERON:4300103 rudimentary pectoral fin ray 11 21424 -UBERON:4500010 unbranched pectoral fin ray 11 21425 -UBERON:4300155 pectoral splint 9 21426 -UBERON:0010742 bone of pelvic complex 8 21427 -UBERON:0003464 hindlimb bone 9 21428 -UBERON:0003608 hindlimb long bone 10 21429 -UBERON:0000979 tibia 11 21430 -UBERON:0000981 femur 11 21431 -UBERON:0001446 fibula 11 21432 -UBERON:0001448 metatarsal bone 11 21433 -UBERON:0003650 metatarsal bone of digit 1 12 21434 -UBERON:0003651 metatarsal bone of digit 2 12 21435 -UBERON:0003652 metatarsal bone of digit 3 12 21436 -UBERON:0003653 metatarsal bone of digit 4 12 21437 -UBERON:0003654 metatarsal bone of digit 5 12 21438 -UBERON:0013588 fused metatarsal bones 3 and 4 12 21439 -UBERON:0014763 fused metatarsal bones 2-4 13 21440 -UBERON:4200153 metatarsal bone of digit 6 12 21441 -UBERON:4200157 metatarsal bone of digit 7 12 21442 -UBERON:4200158 metatarsal bone of digit 8 12 21443 -UBERON:0001449 phalanx of pes 11 21444 -UBERON:0003640 pedal digit 1 phalanx 12 21445 -UBERON:0004315 distal phalanx of pedal digit 1 13 21446 -UBERON:0004332 proximal phalanx of pedal digit 1 13 21447 -UBERON:0003641 pedal digit 2 phalanx 12 21448 -UBERON:0004316 distal phalanx of pedal digit 2 13 21449 -UBERON:0004324 middle phalanx of pedal digit 2 13 21450 -UBERON:0004333 proximal phalanx of pedal digit 2 13 21451 -UBERON:0003642 pedal digit 3 phalanx 12 21452 -UBERON:0004317 distal phalanx of pedal digit 3 13 21453 -UBERON:0004325 middle phalanx of pedal digit 3 13 21454 -UBERON:0004334 proximal phalanx of pedal digit 3 13 21455 -UBERON:0003862 pedal digit 4 phalanx 12 21456 -UBERON:0004318 distal phalanx of pedal digit 4 13 21457 -UBERON:0004326 middle phalanx of pedal digit 4 13 21458 -UBERON:0004335 proximal phalanx of pedal digit 4 13 21459 -UBERON:0003863 pedal digit 5 phalanx 12 21460 -UBERON:0004319 distal phalanx of pedal digit 5 13 21461 -UBERON:0004327 middle phalanx of pedal digit 5 13 21462 -UBERON:0004336 proximal phalanx of pedal digit 5 13 21463 -UBERON:0003866 middle phalanx of pes 12 21464 -UBERON:0004324 middle phalanx of pedal digit 2 13 21465 -UBERON:0004325 middle phalanx of pedal digit 3 13 21466 -UBERON:0004326 middle phalanx of pedal digit 4 13 21467 -UBERON:0004327 middle phalanx of pedal digit 5 13 21468 -UBERON:0003867 distal phalanx of pes 12 21469 -UBERON:0004315 distal phalanx of pedal digit 1 13 21470 -UBERON:0004316 distal phalanx of pedal digit 2 13 21471 -UBERON:0004317 distal phalanx of pedal digit 3 13 21472 -UBERON:0004318 distal phalanx of pedal digit 4 13 21473 -UBERON:0004319 distal phalanx of pedal digit 5 13 21474 -UBERON:0003868 proximal phalanx of pes 12 21475 -UBERON:0004332 proximal phalanx of pedal digit 1 13 21476 -UBERON:0004333 proximal phalanx of pedal digit 2 13 21477 -UBERON:0004334 proximal phalanx of pedal digit 3 13 21478 -UBERON:0004335 proximal phalanx of pedal digit 4 13 21479 -UBERON:0004336 proximal phalanx of pedal digit 5 13 21480 -UBERON:4100009 pedal digit 7 phalanx 12 21481 -UBERON:0012269 equine hindlimb splint bone 11 21482 -UBERON:0005893 leg bone 10 21483 -UBERON:0002446 patella 11 21484 -UBERON:0003826 upper leg bone 11 21485 -UBERON:0000981 femur 12 21486 -UBERON:0004251 hindlimb zeugopod bone 11 21487 -UBERON:0000979 tibia 12 21488 -UBERON:0001446 fibula 12 21489 -UBERON:0003467 sesamoid bone of gastrocnemius 12 21490 -UBERON:0006714 tibiofibula 12 21491 -UBERON:0010907 parafibula 12 21492 -UBERON:0012104 sesamoid bone of the peroneus longus muscle 12 21493 -UBERON:0005899 pes bone 10 21494 -UBERON:0001447 tarsal bone 11 21495 -UBERON:0001451 navicular bone of pes 12 21496 -UBERON:0006836 medial tibial tarsal bone 12 21497 -UBERON:0010721 distal tarsal bone 12 21498 -UBERON:0001452 distal tarsal bone 1 13 21499 -UBERON:0001453 distal tarsal bone 2 13 21500 -UBERON:0001454 distal tarsal bone 3 13 21501 -UBERON:0001455 cuboid bone 13 21502 -UBERON:0010723 os vesalianum pedis 13 21503 -UBERON:0010737 distal tarsal bone 4 13 21504 -UBERON:0010738 distal tarsal bone 5 13 21505 -UBERON:0012289 fused tarsal bones 2 and 3 13 21506 -UBERON:0013649 fused tarsal bones 1 and 2 13 21507 -UBERON:3001002 basale commune (tarsal) 13 21508 -UBERON:0011679 proximal tarsal bone 12 21509 -UBERON:0001450 calcaneus 13 21510 -UBERON:0002395 talus 13 21511 -UBERON:0011678 hindlimb intermedium bone 13 21512 -UBERON:0012126 fibulare 13 21513 -UBERON:0012288 centroquartal bone 12 21514 -UBERON:3010045 centrale 1 12 21515 -UBERON:3010073 centrale 2 12 21516 -UBERON:4200011 pedal centrale 12 21517 -UBERON:4200152 intertarsale sesamoid 12 21518 -UBERON:0008000 sesamoid bone of pes 11 21519 -UBERON:0007990 proximal sesamoid bone of pes 12 21520 -UBERON:4200152 intertarsale sesamoid 12 21521 -UBERON:0008195 tarsometatarsus 11 21522 -UBERON:0010725 accessory navicular bone 11 21523 -UBERON:0012359 pedal digitopodium bone 11 21524 -UBERON:0001448 metatarsal bone 12 21525 -UBERON:0003650 metatarsal bone of digit 1 13 21526 -UBERON:0003651 metatarsal bone of digit 2 13 21527 -UBERON:0003652 metatarsal bone of digit 3 13 21528 -UBERON:0003653 metatarsal bone of digit 4 13 21529 -UBERON:0003654 metatarsal bone of digit 5 13 21530 -UBERON:0013588 fused metatarsal bones 3 and 4 13 21531 -UBERON:0014763 fused metatarsal bones 2-4 14 21532 -UBERON:4200153 metatarsal bone of digit 6 13 21533 -UBERON:4200157 metatarsal bone of digit 7 13 21534 -UBERON:4200158 metatarsal bone of digit 8 13 21535 -UBERON:0004248 pedal digit bone 12 21536 -UBERON:0001449 phalanx of pes 13 21537 -UBERON:0003640 pedal digit 1 phalanx 14 21538 -UBERON:0004315 distal phalanx of pedal digit 1 15 21539 -UBERON:0004332 proximal phalanx of pedal digit 1 15 21540 -UBERON:0003641 pedal digit 2 phalanx 14 21541 -UBERON:0004316 distal phalanx of pedal digit 2 15 21542 -UBERON:0004324 middle phalanx of pedal digit 2 15 21543 -UBERON:0004333 proximal phalanx of pedal digit 2 15 21544 -UBERON:0003642 pedal digit 3 phalanx 14 21545 -UBERON:0004317 distal phalanx of pedal digit 3 15 21546 -UBERON:0004325 middle phalanx of pedal digit 3 15 21547 -UBERON:0004334 proximal phalanx of pedal digit 3 15 21548 -UBERON:0003862 pedal digit 4 phalanx 14 21549 -UBERON:0004318 distal phalanx of pedal digit 4 15 21550 -UBERON:0004326 middle phalanx of pedal digit 4 15 21551 -UBERON:0004335 proximal phalanx of pedal digit 4 15 21552 -UBERON:0003863 pedal digit 5 phalanx 14 21553 -UBERON:0004319 distal phalanx of pedal digit 5 15 21554 -UBERON:0004327 middle phalanx of pedal digit 5 15 21555 -UBERON:0004336 proximal phalanx of pedal digit 5 15 21556 -UBERON:0003866 middle phalanx of pes 14 21557 -UBERON:0004324 middle phalanx of pedal digit 2 15 21558 -UBERON:0004325 middle phalanx of pedal digit 3 15 21559 -UBERON:0004326 middle phalanx of pedal digit 4 15 21560 -UBERON:0004327 middle phalanx of pedal digit 5 15 21561 -UBERON:0003867 distal phalanx of pes 14 21562 -UBERON:0004315 distal phalanx of pedal digit 1 15 21563 -UBERON:0004316 distal phalanx of pedal digit 2 15 21564 -UBERON:0004317 distal phalanx of pedal digit 3 15 21565 -UBERON:0004318 distal phalanx of pedal digit 4 15 21566 -UBERON:0004319 distal phalanx of pedal digit 5 15 21567 -UBERON:0003868 proximal phalanx of pes 14 21568 -UBERON:0004332 proximal phalanx of pedal digit 1 15 21569 -UBERON:0004333 proximal phalanx of pedal digit 2 15 21570 -UBERON:0004334 proximal phalanx of pedal digit 3 15 21571 -UBERON:0004335 proximal phalanx of pedal digit 4 15 21572 -UBERON:0004336 proximal phalanx of pedal digit 5 15 21573 -UBERON:4100009 pedal digit 7 phalanx 14 21574 -UBERON:0007990 proximal sesamoid bone of pes 13 21575 -UBERON:3000931 intercalary element of hind digit 13 21576 -UBERON:3010675 bony nodule of terminal phalanx of hind digit 13 21577 -UBERON:0012269 equine hindlimb splint bone 12 21578 -UBERON:0008194 tibiotarsus 10 21579 -UBERON:0007830 pelvic girdle bone/zone 9 21580 -UBERON:0001272 innominate bone 10 21581 -UBERON:0001273 ilium 10 21582 -UBERON:4200220 iliac ramus 11 21583 -UBERON:0001274 ischium 10 21584 -UBERON:0001275 pubis 10 21585 -UBERON:0013204 epipubic bone 10 21586 -UBERON:2000623 basipterygium bone 10 21587 -UBERON:2000508 pelvic fin radial bone 9 21588 -UBERON:1500008 pelvic fin distal radial bone 10 21589 -UBERON:2001415 pelvic fin distal radial bone 2 11 21590 -UBERON:2001416 pelvic fin distal radial bone 3 11 21591 -UBERON:2001417 pelvic fin distal radial bone 1 11 21592 -UBERON:1500009 pelvic fin basipterygial radial 10 21593 -UBERON:1500010 pelvic fin middle radial bone 10 21594 -UBERON:2001788 pelvic splint 9 21595 -UBERON:2002077 lateropterygium 9 21596 -UBERON:2002086 pelvic axillary process 9 21597 -UBERON:4000173 pelvic fin lepidotrichium 9 21598 -UBERON:2002270 pelvic fin spine 10 21599 -UBERON:4300117 pelvic fin ray 10 21600 -UBERON:2001776 pelvic fin ray 1 11 21601 -UBERON:2001777 pelvic fin ray 2 11 21602 -UBERON:2001778 pelvic fin ray 3 11 21603 -UBERON:2001779 pelvic fin ray 4 11 21604 -UBERON:2001780 pelvic fin ray 5 11 21605 -UBERON:2001781 pelvic fin ray 6 11 21606 -UBERON:2001782 pelvic fin ray 7 11 21607 -UBERON:4300192 branched pelvic fin ray 11 21608 -UBERON:4500011 unbranched pelvic fin ray 11 21609 -UBERON:0010908 paraglossale 7 21610 -UBERON:0012075 replacement bone 7 21611 -UBERON:0008909 perichordal bone 8 21612 -UBERON:2001640 notochordal ossification 9 21613 -UBERON:0008911 chondral bone 8 21614 -UBERON:0013630 short bone 7 21615 -UBERON:0001479 sesamoid bone 8 21616 -UBERON:0002446 patella 9 21617 -UBERON:0003467 sesamoid bone of gastrocnemius 9 21618 -UBERON:0007993 ulnar sesamoid bone 9 21619 -UBERON:0007997 sesamoid bone of manus 9 21620 -UBERON:0001429 pisiform 10 21621 -UBERON:0007991 proximal sesamoid bone of manus 10 21622 -UBERON:0008257 radial sesamoid 10 21623 -UBERON:0008000 sesamoid bone of pes 9 21624 -UBERON:0007990 proximal sesamoid bone of pes 10 21625 -UBERON:4200152 intertarsale sesamoid 10 21626 -UBERON:0010311 scleral sesamoid bone 9 21627 -UBERON:0010759 equine distal sesamoid 9 21628 -UBERON:0012104 sesamoid bone of the peroneus longus muscle 9 21629 -UBERON:0018320 flexor sesamoid 9 21630 -UBERON:3010624 subarticular sesamoid 9 21631 -UBERON:4000134 ossified tendon 9 21632 -UBERON:2001274 coronomeckelian 10 21633 -UBERON:4000159 ossified ligament 9 21634 -UBERON:4200049 cartilago sesamoides 9 21635 -UBERON:0003656 mesopodium bone 8 21636 -UBERON:0001435 carpal bone 9 21637 -UBERON:0001480 proximal carpal bone 10 21638 -UBERON:0001427 radiale 11 21639 -UBERON:0001428 intermedium 11 21640 -UBERON:0001429 pisiform 11 21641 -UBERON:0002445 ulnare 11 21642 -UBERON:0007960 scapholunate 11 21643 -UBERON:0012124 avian scapholunar bone 11 21644 -UBERON:0001481 distal carpal bone 10 21645 -UBERON:0001430 distal carpal bone 1 11 21646 -UBERON:0001431 distal carpal bone 2 11 21647 -UBERON:0001432 distal carpal bone 3 11 21648 -UBERON:0001433 distal carpal bone 4 11 21649 -UBERON:0010726 os vesalianum manus 11 21650 -UBERON:0010739 distal carpal bone 5 11 21651 -UBERON:0012290 fused carpal bones 2 and 3 11 21652 -UBERON:3000965 basale commune (carpal) 11 21653 -UBERON:0007958 central carpal bone 10 21654 -UBERON:0007959 falciform carpal bone 10 21655 -UBERON:0008257 radial sesamoid 10 21656 -UBERON:3010060 centrale (fore) 10 21657 -UBERON:4200180 semilunate carpal 10 21658 -UBERON:0001447 tarsal bone 9 21659 -UBERON:0001451 navicular bone of pes 10 21660 -UBERON:0006836 medial tibial tarsal bone 10 21661 -UBERON:0010721 distal tarsal bone 10 21662 -UBERON:0001452 distal tarsal bone 1 11 21663 -UBERON:0001453 distal tarsal bone 2 11 21664 -UBERON:0001454 distal tarsal bone 3 11 21665 -UBERON:0001455 cuboid bone 11 21666 -UBERON:0010723 os vesalianum pedis 11 21667 -UBERON:0010737 distal tarsal bone 4 11 21668 -UBERON:0010738 distal tarsal bone 5 11 21669 -UBERON:0012289 fused tarsal bones 2 and 3 11 21670 -UBERON:0013649 fused tarsal bones 1 and 2 11 21671 -UBERON:3001002 basale commune (tarsal) 11 21672 -UBERON:0011679 proximal tarsal bone 10 21673 -UBERON:0001450 calcaneus 11 21674 -UBERON:0002395 talus 11 21675 -UBERON:0011678 hindlimb intermedium bone 11 21676 -UBERON:0012126 fibulare 11 21677 -UBERON:0012288 centroquartal bone 10 21678 -UBERON:3010045 centrale 1 10 21679 -UBERON:3010073 centrale 2 10 21680 -UBERON:4200011 pedal centrale 10 21681 -UBERON:4200152 intertarsale sesamoid 10 21682 -UBERON:0012131 centrale 9 21683 -UBERON:0001451 navicular bone of pes 10 21684 -UBERON:0007958 central carpal bone 10 21685 -UBERON:3010045 centrale 1 10 21686 -UBERON:3010060 centrale (fore) 10 21687 -UBERON:3010073 centrale 2 10 21688 -UBERON:4200011 pedal centrale 10 21689 -UBERON:4200083 postaxial centrale 10 21690 -UBERON:4200084 preaxial centrale 10 21691 -UBERON:0014395 proximal mesopodial bone 9 21692 -UBERON:0001480 proximal carpal bone 10 21693 -UBERON:0001427 radiale 11 21694 -UBERON:0001428 intermedium 11 21695 -UBERON:0001429 pisiform 11 21696 -UBERON:0002445 ulnare 11 21697 -UBERON:0007960 scapholunate 11 21698 -UBERON:0012124 avian scapholunar bone 11 21699 -UBERON:0011679 proximal tarsal bone 10 21700 -UBERON:0001450 calcaneus 11 21701 -UBERON:0002395 talus 11 21702 -UBERON:0011678 hindlimb intermedium bone 11 21703 -UBERON:0012126 fibulare 11 21704 -UBERON:0018102 distal mesopodial bone 9 21705 -UBERON:0001481 distal carpal bone 10 21706 -UBERON:0001430 distal carpal bone 1 11 21707 -UBERON:0001431 distal carpal bone 2 11 21708 -UBERON:0001432 distal carpal bone 3 11 21709 -UBERON:0001433 distal carpal bone 4 11 21710 -UBERON:0010726 os vesalianum manus 11 21711 -UBERON:0010739 distal carpal bone 5 11 21712 -UBERON:0012290 fused carpal bones 2 and 3 11 21713 -UBERON:3000965 basale commune (carpal) 11 21714 -UBERON:0010721 distal tarsal bone 10 21715 -UBERON:0001452 distal tarsal bone 1 11 21716 -UBERON:0001453 distal tarsal bone 2 11 21717 -UBERON:0001454 distal tarsal bone 3 11 21718 -UBERON:0001455 cuboid bone 11 21719 -UBERON:0010723 os vesalianum pedis 11 21720 -UBERON:0010737 distal tarsal bone 4 11 21721 -UBERON:0010738 distal tarsal bone 5 11 21722 -UBERON:0012289 fused tarsal bones 2 and 3 11 21723 -UBERON:0013649 fused tarsal bones 1 and 2 11 21724 -UBERON:3001002 basale commune (tarsal) 11 21725 -UBERON:0018366 supratendinal bridge 7 21726 -UBERON:2000442 supraneural bone 7 21727 -UBERON:2001163 supraneural 7 bone 8 21728 -UBERON:2001164 supraneural 6 bone 8 21729 -UBERON:2001165 supraneural 5 bone 8 21730 -UBERON:2001166 supraneural 9 bone 8 21731 -UBERON:2001191 supraneural 2 bone 8 21732 -UBERON:2001192 supraneural 3 bone 8 21733 -UBERON:2001193 supraneural 8 bone 8 21734 -UBERON:2001397 post-Weberian supraneural 8 21735 -UBERON:2001888 supraneural 1 bone 8 21736 -UBERON:2002007 supraneural 4 bone 8 21737 -UBERON:3000348 os basale 7 21738 -UBERON:0003913 tooth-like structure 6 21739 -UBERON:0001091 calcareous tooth 7 21740 -UBERON:0001098 incisor tooth 8 21741 -UBERON:0003450 upper jaw incisor 9 21742 -UBERON:0015847 upper left incisor tooth 10 21743 -UBERON:0015850 upper left incisor tusk 11 21744 -UBERON:0015851 upper right incisor tusk 10 21745 -UBERON:0015852 narwhal tusk 10 21746 -UBERON:0018591 upper primary incisor tooth 10 21747 -UBERON:0018593 upper central primary incisor tooth 11 21748 -UBERON:0018594 upper lateral primary incisor tooth 11 21749 -UBERON:0018603 upper central incisor tooth 10 21750 -UBERON:0016454 upper central secondary incisor tooth 11 21751 -UBERON:0018593 upper central primary incisor tooth 11 21752 -UBERON:0018604 upper lateral incisor tooth 10 21753 -UBERON:0016455 upper lateral secondary incisor tooth 11 21754 -UBERON:0018594 upper lateral primary incisor tooth 11 21755 -UBERON:0019253 upper secondary incisor tooth 10 21756 -UBERON:0016454 upper central secondary incisor tooth 11 21757 -UBERON:0016455 upper lateral secondary incisor tooth 11 21758 -UBERON:0003451 lower jaw incisor 9 21759 -UBERON:0017748 lower primary incisor tooth 10 21760 -UBERON:0018595 lower central primary incisor tooth 11 21761 -UBERON:0018596 lower lateral primary incisor tooth 11 21762 -UBERON:0018601 lower central incisor tooth 10 21763 -UBERON:0018568 lower central secondary incisor tooth 11 21764 -UBERON:0018595 lower central primary incisor tooth 11 21765 -UBERON:0018602 lower lateral incisor tooth 10 21766 -UBERON:0018570 lower lateral secondary incisor tooth 11 21767 -UBERON:0018596 lower lateral primary incisor tooth 11 21768 -UBERON:0018623 lower secondary incisor tooth 10 21769 -UBERON:0018568 lower central secondary incisor tooth 11 21770 -UBERON:0018570 lower lateral secondary incisor tooth 11 21771 -UBERON:0015848 incisor tusk 9 21772 -UBERON:0015850 upper left incisor tusk 10 21773 -UBERON:0015851 upper right incisor tusk 10 21774 -UBERON:0015852 narwhal tusk 10 21775 -UBERON:0016476 primary incisor tooth 9 21776 -UBERON:0017748 lower primary incisor tooth 10 21777 -UBERON:0018595 lower central primary incisor tooth 11 21778 -UBERON:0018596 lower lateral primary incisor tooth 11 21779 -UBERON:0018553 primary central incisor tooth 10 21780 -UBERON:0018593 upper central primary incisor tooth 11 21781 -UBERON:0018595 lower central primary incisor tooth 11 21782 -UBERON:0018554 primary lateral incisor tooth 10 21783 -UBERON:0018594 upper lateral primary incisor tooth 11 21784 -UBERON:0018596 lower lateral primary incisor tooth 11 21785 -UBERON:0018591 upper primary incisor tooth 10 21786 -UBERON:0018593 upper central primary incisor tooth 11 21787 -UBERON:0018594 upper lateral primary incisor tooth 11 21788 -UBERON:0018550 secondary incisor tooth 9 21789 -UBERON:0018623 lower secondary incisor tooth 10 21790 -UBERON:0018568 lower central secondary incisor tooth 11 21791 -UBERON:0018570 lower lateral secondary incisor tooth 11 21792 -UBERON:0019253 upper secondary incisor tooth 10 21793 -UBERON:0016454 upper central secondary incisor tooth 11 21794 -UBERON:0016455 upper lateral secondary incisor tooth 11 21795 -UBERON:0018551 central incisor tooth 9 21796 -UBERON:0018553 primary central incisor tooth 10 21797 -UBERON:0018593 upper central primary incisor tooth 11 21798 -UBERON:0018595 lower central primary incisor tooth 11 21799 -UBERON:0018601 lower central incisor tooth 10 21800 -UBERON:0018568 lower central secondary incisor tooth 11 21801 -UBERON:0018595 lower central primary incisor tooth 11 21802 -UBERON:0018603 upper central incisor tooth 10 21803 -UBERON:0016454 upper central secondary incisor tooth 11 21804 -UBERON:0018593 upper central primary incisor tooth 11 21805 -UBERON:0018552 lateral incisor tooth 9 21806 -UBERON:0018554 primary lateral incisor tooth 10 21807 -UBERON:0018594 upper lateral primary incisor tooth 11 21808 -UBERON:0018596 lower lateral primary incisor tooth 11 21809 -UBERON:0018602 lower lateral incisor tooth 10 21810 -UBERON:0018570 lower lateral secondary incisor tooth 11 21811 -UBERON:0018596 lower lateral primary incisor tooth 11 21812 -UBERON:0018604 upper lateral incisor tooth 10 21813 -UBERON:0016455 upper lateral secondary incisor tooth 11 21814 -UBERON:0018594 upper lateral primary incisor tooth 11 21815 -UBERON:0003267 tooth of upper jaw 8 21816 -UBERON:0011593 maxillary tooth 9 21817 -UBERON:0003666 upper jaw molar 10 21818 -UBERON:0013617 upper primary molar tooth 11 21819 -UBERON:0018588 upper first primary molar tooth 12 21820 -UBERON:0018599 upper second primary molar tooth 12 21821 -UBERON:0013619 upper secondary molar tooth 11 21822 -UBERON:0018575 upper first secondary molar tooth 12 21823 -UBERON:0018576 upper second secondary molar tooth 12 21824 -UBERON:0018577 upper third secondary molar tooth 12 21825 -UBERON:7500057 upper fourth secondary molar tooth 12 21826 -UBERON:0018302 upper molar 1 11 21827 -UBERON:0018575 upper first secondary molar tooth 12 21828 -UBERON:0018588 upper first primary molar tooth 12 21829 -UBERON:0012070 palatal tooth 9 21830 -UBERON:0004767 vomerine tooth 10 21831 -UBERON:0012073 tooth of palatine bone 10 21832 -UBERON:2001632 ectopterygoid tooth 10 21833 -UBERON:0016944 upper premolar tooth 9 21834 -UBERON:0016452 upper secondary premolar tooth 10 21835 -UBERON:0018571 upper first secondary premolar tooth 11 21836 -UBERON:0018572 upper second secondary premolar tooth 11 21837 -UBERON:7500058 upper fourth secondary premolar tooth 11 21838 -UBERON:7500059 upper third secondary premolar tooth 11 21839 -UBERON:0017271 upper primary premolar tooth 10 21840 -UBERON:0018301 upper deciduous premolar 5 11 21841 -UBERON:0018648 upper premolar 4 10 21842 -UBERON:0018613 secondary upper tooth 9 21843 -UBERON:0013619 upper secondary molar tooth 10 21844 -UBERON:0018575 upper first secondary molar tooth 11 21845 -UBERON:0018576 upper second secondary molar tooth 11 21846 -UBERON:0018577 upper third secondary molar tooth 11 21847 -UBERON:7500057 upper fourth secondary molar tooth 11 21848 -UBERON:0016452 upper secondary premolar tooth 10 21849 -UBERON:0018571 upper first secondary premolar tooth 11 21850 -UBERON:0018572 upper second secondary premolar tooth 11 21851 -UBERON:7500058 upper fourth secondary premolar tooth 11 21852 -UBERON:7500059 upper third secondary premolar tooth 11 21853 -UBERON:0018561 upper secondary canine tooth 10 21854 -UBERON:0019253 upper secondary incisor tooth 10 21855 -UBERON:0016454 upper central secondary incisor tooth 11 21856 -UBERON:0016455 upper lateral secondary incisor tooth 11 21857 -UBERON:0018616 primary upper tooth 9 21858 -UBERON:0013617 upper primary molar tooth 10 21859 -UBERON:0018588 upper first primary molar tooth 11 21860 -UBERON:0018599 upper second primary molar tooth 11 21861 -UBERON:0017271 upper primary premolar tooth 10 21862 -UBERON:0018301 upper deciduous premolar 5 11 21863 -UBERON:0018591 upper primary incisor tooth 10 21864 -UBERON:0018593 upper central primary incisor tooth 11 21865 -UBERON:0018594 upper lateral primary incisor tooth 11 21866 -UBERON:0018597 upper primary canine tooth 10 21867 -UBERON:0018621 upper canine tooth 9 21868 -UBERON:0018300 upper canine 1 10 21869 -UBERON:0018561 upper secondary canine tooth 10 21870 -UBERON:0018597 upper primary canine tooth 10 21871 -UBERON:2001626 premaxillary tooth 9 21872 -UBERON:0003450 upper jaw incisor 10 21873 -UBERON:0015847 upper left incisor tooth 11 21874 -UBERON:0015850 upper left incisor tusk 12 21875 -UBERON:0015851 upper right incisor tusk 11 21876 -UBERON:0015852 narwhal tusk 11 21877 -UBERON:0018591 upper primary incisor tooth 11 21878 -UBERON:0018593 upper central primary incisor tooth 12 21879 -UBERON:0018594 upper lateral primary incisor tooth 12 21880 -UBERON:0018603 upper central incisor tooth 11 21881 -UBERON:0016454 upper central secondary incisor tooth 12 21882 -UBERON:0018593 upper central primary incisor tooth 12 21883 -UBERON:0018604 upper lateral incisor tooth 11 21884 -UBERON:0016455 upper lateral secondary incisor tooth 12 21885 -UBERON:0018594 upper lateral primary incisor tooth 12 21886 -UBERON:0019253 upper secondary incisor tooth 11 21887 -UBERON:0016454 upper central secondary incisor tooth 12 21888 -UBERON:0016455 upper lateral secondary incisor tooth 12 21889 -UBERON:4300243 premaxillary tooth 2 10 21890 -UBERON:4300244 premaxillary tooth 3 10 21891 -UBERON:3000642 maxillopalatine tooth 9 21892 -UBERON:0003268 tooth of lower jaw 8 21893 -UBERON:0003451 lower jaw incisor 9 21894 -UBERON:0017748 lower primary incisor tooth 10 21895 -UBERON:0018595 lower central primary incisor tooth 11 21896 -UBERON:0018596 lower lateral primary incisor tooth 11 21897 -UBERON:0018601 lower central incisor tooth 10 21898 -UBERON:0018568 lower central secondary incisor tooth 11 21899 -UBERON:0018595 lower central primary incisor tooth 11 21900 -UBERON:0018602 lower lateral incisor tooth 10 21901 -UBERON:0018570 lower lateral secondary incisor tooth 11 21902 -UBERON:0018596 lower lateral primary incisor tooth 11 21903 -UBERON:0018623 lower secondary incisor tooth 10 21904 -UBERON:0018568 lower central secondary incisor tooth 11 21905 -UBERON:0018570 lower lateral secondary incisor tooth 11 21906 -UBERON:0011594 dentary tooth 9 21907 -UBERON:0003667 lower jaw molar 10 21908 -UBERON:0013620 lower primary molar tooth 11 21909 -UBERON:0018589 lower first primary molar tooth 12 21910 -UBERON:0018600 lower second primary molar tooth 12 21911 -UBERON:0013621 lower secondary molar tooth 11 21912 -UBERON:0018578 lower first secondary molar tooth 12 21913 -UBERON:0018579 lower second secondary molar tooth 12 21914 -UBERON:0018580 lower third secondary molar tooth 12 21915 -UBERON:7500052 lower fourth secondary molar tooth 12 21916 -UBERON:0018282 lower molar 3 11 21917 -UBERON:0018580 lower third secondary molar tooth 12 21918 -UBERON:4300246 dentary tooth 2 10 21919 -UBERON:4300247 dentary tooth 3 10 21920 -UBERON:0011603 coronoid tooth 9 21921 -UBERON:4200238 coronoid fang 10 21922 -UBERON:0016943 lower premolar tooth 9 21923 -UBERON:0016453 lower secondary premolar tooth 10 21924 -UBERON:0018573 lower first secondary premolar tooth 11 21925 -UBERON:0018574 lower second secondary premolar tooth 11 21926 -UBERON:7500053 lower fourth secondary premolar tooth 11 21927 -UBERON:7500054 lower third secondary premolar tooth 11 21928 -UBERON:0017272 lower primary premolar tooth 10 21929 -UBERON:0018281 lower deciduous premolar 5 11 21930 -UBERON:0018284 lower premolar 1 10 21931 -UBERON:0018573 lower first secondary premolar tooth 11 21932 -UBERON:0018285 lower premolar 2 10 21933 -UBERON:0018574 lower second secondary premolar tooth 11 21934 -UBERON:0018299 mandibular symphyseal tooth 9 21935 -UBERON:0018614 permanent lower tooth 9 21936 -UBERON:0013621 lower secondary molar tooth 10 21937 -UBERON:0018578 lower first secondary molar tooth 11 21938 -UBERON:0018579 lower second secondary molar tooth 11 21939 -UBERON:0018580 lower third secondary molar tooth 11 21940 -UBERON:7500052 lower fourth secondary molar tooth 11 21941 -UBERON:0016453 lower secondary premolar tooth 10 21942 -UBERON:0018573 lower first secondary premolar tooth 11 21943 -UBERON:0018574 lower second secondary premolar tooth 11 21944 -UBERON:7500053 lower fourth secondary premolar tooth 11 21945 -UBERON:7500054 lower third secondary premolar tooth 11 21946 -UBERON:0018562 lower secondary canine tooth 10 21947 -UBERON:0018623 lower secondary incisor tooth 10 21948 -UBERON:0018568 lower central secondary incisor tooth 11 21949 -UBERON:0018570 lower lateral secondary incisor tooth 11 21950 -UBERON:0018617 primary lower tooth 9 21951 -UBERON:0013620 lower primary molar tooth 10 21952 -UBERON:0018589 lower first primary molar tooth 11 21953 -UBERON:0018600 lower second primary molar tooth 11 21954 -UBERON:0017272 lower primary premolar tooth 10 21955 -UBERON:0018281 lower deciduous premolar 5 11 21956 -UBERON:0017748 lower primary incisor tooth 10 21957 -UBERON:0018595 lower central primary incisor tooth 11 21958 -UBERON:0018596 lower lateral primary incisor tooth 11 21959 -UBERON:0018598 lower primary canine tooth 10 21960 -UBERON:0018622 lower canine tooth 9 21961 -UBERON:0018562 lower secondary canine tooth 10 21962 -UBERON:0018598 lower primary canine tooth 10 21963 -UBERON:3000519 pseudodentary tooth 9 21964 -UBERON:0003674 cuspid 8 21965 -UBERON:0015849 canine tusk 9 21966 -UBERON:0018583 primary canine tooth 9 21967 -UBERON:0018597 upper primary canine tooth 10 21968 -UBERON:0018598 lower primary canine tooth 10 21969 -UBERON:0018584 secondary canine tooth 9 21970 -UBERON:0018561 upper secondary canine tooth 10 21971 -UBERON:0018562 lower secondary canine tooth 10 21972 -UBERON:0018621 upper canine tooth 9 21973 -UBERON:0018300 upper canine 1 10 21974 -UBERON:0018561 upper secondary canine tooth 10 21975 -UBERON:0018597 upper primary canine tooth 10 21976 -UBERON:0018622 lower canine tooth 9 21977 -UBERON:0018562 lower secondary canine tooth 10 21978 -UBERON:0018598 lower primary canine tooth 10 21979 -UBERON:0007115 deciduous tooth 8 21980 -UBERON:0009977 natal tooth 9 21981 -UBERON:0013616 primary molar tooth 9 21982 -UBERON:0013617 upper primary molar tooth 10 21983 -UBERON:0018588 upper first primary molar tooth 11 21984 -UBERON:0018599 upper second primary molar tooth 11 21985 -UBERON:0013620 lower primary molar tooth 10 21986 -UBERON:0018589 lower first primary molar tooth 11 21987 -UBERON:0018600 lower second primary molar tooth 11 21988 -UBERON:0018643 deciduous molar tooth 2 10 21989 -UBERON:0018599 upper second primary molar tooth 11 21990 -UBERON:0018600 lower second primary molar tooth 11 21991 -UBERON:0018644 deciduous molar tooth 1 10 21992 -UBERON:0018588 upper first primary molar tooth 11 21993 -UBERON:0018589 lower first primary molar tooth 11 21994 -UBERON:0016476 primary incisor tooth 9 21995 -UBERON:0017748 lower primary incisor tooth 10 21996 -UBERON:0018595 lower central primary incisor tooth 11 21997 -UBERON:0018596 lower lateral primary incisor tooth 11 21998 -UBERON:0018553 primary central incisor tooth 10 21999 -UBERON:0018593 upper central primary incisor tooth 11 22000 -UBERON:0018595 lower central primary incisor tooth 11 22001 -UBERON:0018554 primary lateral incisor tooth 10 22002 -UBERON:0018594 upper lateral primary incisor tooth 11 22003 -UBERON:0018596 lower lateral primary incisor tooth 11 22004 -UBERON:0018591 upper primary incisor tooth 10 22005 -UBERON:0018593 upper central primary incisor tooth 11 22006 -UBERON:0018594 upper lateral primary incisor tooth 11 22007 -UBERON:0017269 primary premolar tooth 9 22008 -UBERON:0017271 upper primary premolar tooth 10 22009 -UBERON:0018301 upper deciduous premolar 5 11 22010 -UBERON:0017272 lower primary premolar tooth 10 22011 -UBERON:0018281 lower deciduous premolar 5 11 22012 -UBERON:0018375 deciduous premolar 5 10 22013 -UBERON:0018281 lower deciduous premolar 5 11 22014 -UBERON:0018301 upper deciduous premolar 5 11 22015 -UBERON:0018583 primary canine tooth 9 22016 -UBERON:0018597 upper primary canine tooth 10 22017 -UBERON:0018598 lower primary canine tooth 10 22018 -UBERON:0018616 primary upper tooth 9 22019 -UBERON:0013617 upper primary molar tooth 10 22020 -UBERON:0018588 upper first primary molar tooth 11 22021 -UBERON:0018599 upper second primary molar tooth 11 22022 -UBERON:0017271 upper primary premolar tooth 10 22023 -UBERON:0018301 upper deciduous premolar 5 11 22024 -UBERON:0018591 upper primary incisor tooth 10 22025 -UBERON:0018593 upper central primary incisor tooth 11 22026 -UBERON:0018594 upper lateral primary incisor tooth 11 22027 -UBERON:0018597 upper primary canine tooth 10 22028 -UBERON:0018617 primary lower tooth 9 22029 -UBERON:0013620 lower primary molar tooth 10 22030 -UBERON:0018589 lower first primary molar tooth 11 22031 -UBERON:0018600 lower second primary molar tooth 11 22032 -UBERON:0017272 lower primary premolar tooth 10 22033 -UBERON:0018281 lower deciduous premolar 5 11 22034 -UBERON:0017748 lower primary incisor tooth 10 22035 -UBERON:0018595 lower central primary incisor tooth 11 22036 -UBERON:0018596 lower lateral primary incisor tooth 11 22037 -UBERON:0018598 lower primary canine tooth 10 22038 -UBERON:3010690 fetal tooth 9 22039 -UBERON:0007775 secondary tooth 8 22040 -UBERON:0013618 secondary molar tooth 9 22041 -UBERON:0013619 upper secondary molar tooth 10 22042 -UBERON:0018575 upper first secondary molar tooth 11 22043 -UBERON:0018576 upper second secondary molar tooth 11 22044 -UBERON:0018577 upper third secondary molar tooth 11 22045 -UBERON:7500057 upper fourth secondary molar tooth 11 22046 -UBERON:0013621 lower secondary molar tooth 10 22047 -UBERON:0018578 lower first secondary molar tooth 11 22048 -UBERON:0018579 lower second secondary molar tooth 11 22049 -UBERON:0018580 lower third secondary molar tooth 11 22050 -UBERON:7500052 lower fourth secondary molar tooth 11 22051 -UBERON:0018607 permanent molar tooth 2 10 22052 -UBERON:0018576 upper second secondary molar tooth 11 22053 -UBERON:0018579 lower second secondary molar tooth 11 22054 -UBERON:0018608 permanent molar tooth 1 10 22055 -UBERON:0018575 upper first secondary molar tooth 11 22056 -UBERON:0018578 lower first secondary molar tooth 11 22057 -UBERON:0017270 secondary premolar tooth 9 22058 -UBERON:0016452 upper secondary premolar tooth 10 22059 -UBERON:0018571 upper first secondary premolar tooth 11 22060 -UBERON:0018572 upper second secondary premolar tooth 11 22061 -UBERON:7500058 upper fourth secondary premolar tooth 11 22062 -UBERON:7500059 upper third secondary premolar tooth 11 22063 -UBERON:0016453 lower secondary premolar tooth 10 22064 -UBERON:0018573 lower first secondary premolar tooth 11 22065 -UBERON:0018574 lower second secondary premolar tooth 11 22066 -UBERON:7500053 lower fourth secondary premolar tooth 11 22067 -UBERON:7500054 lower third secondary premolar tooth 11 22068 -UBERON:0018550 secondary incisor tooth 9 22069 -UBERON:0018623 lower secondary incisor tooth 10 22070 -UBERON:0018568 lower central secondary incisor tooth 11 22071 -UBERON:0018570 lower lateral secondary incisor tooth 11 22072 -UBERON:0019253 upper secondary incisor tooth 10 22073 -UBERON:0016454 upper central secondary incisor tooth 11 22074 -UBERON:0016455 upper lateral secondary incisor tooth 11 22075 -UBERON:0018584 secondary canine tooth 9 22076 -UBERON:0018561 upper secondary canine tooth 10 22077 -UBERON:0018562 lower secondary canine tooth 10 22078 -UBERON:0018613 secondary upper tooth 9 22079 -UBERON:0013619 upper secondary molar tooth 10 22080 -UBERON:0018575 upper first secondary molar tooth 11 22081 -UBERON:0018576 upper second secondary molar tooth 11 22082 -UBERON:0018577 upper third secondary molar tooth 11 22083 -UBERON:7500057 upper fourth secondary molar tooth 11 22084 -UBERON:0016452 upper secondary premolar tooth 10 22085 -UBERON:0018571 upper first secondary premolar tooth 11 22086 -UBERON:0018572 upper second secondary premolar tooth 11 22087 -UBERON:7500058 upper fourth secondary premolar tooth 11 22088 -UBERON:7500059 upper third secondary premolar tooth 11 22089 -UBERON:0018561 upper secondary canine tooth 10 22090 -UBERON:0019253 upper secondary incisor tooth 10 22091 -UBERON:0016454 upper central secondary incisor tooth 11 22092 -UBERON:0016455 upper lateral secondary incisor tooth 11 22093 -UBERON:0018614 permanent lower tooth 9 22094 -UBERON:0013621 lower secondary molar tooth 10 22095 -UBERON:0018578 lower first secondary molar tooth 11 22096 -UBERON:0018579 lower second secondary molar tooth 11 22097 -UBERON:0018580 lower third secondary molar tooth 11 22098 -UBERON:7500052 lower fourth secondary molar tooth 11 22099 -UBERON:0016453 lower secondary premolar tooth 10 22100 -UBERON:0018573 lower first secondary premolar tooth 11 22101 -UBERON:0018574 lower second secondary premolar tooth 11 22102 -UBERON:7500053 lower fourth secondary premolar tooth 11 22103 -UBERON:7500054 lower third secondary premolar tooth 11 22104 -UBERON:0018562 lower secondary canine tooth 10 22105 -UBERON:0018623 lower secondary incisor tooth 10 22106 -UBERON:0018568 lower central secondary incisor tooth 11 22107 -UBERON:0018570 lower lateral secondary incisor tooth 11 22108 -UBERON:0007776 unerupted tooth 8 22109 -UBERON:0010879 tusk 8 22110 -UBERON:0015848 incisor tusk 9 22111 -UBERON:0015850 upper left incisor tusk 10 22112 -UBERON:0015851 upper right incisor tusk 10 22113 -UBERON:0015852 narwhal tusk 10 22114 -UBERON:0015849 canine tusk 9 22115 -UBERON:0013078 venom-injecting tooth 8 22116 -UBERON:0013164 molariform tooth 8 22117 -UBERON:0003655 molar tooth 9 22118 -UBERON:0003666 upper jaw molar 10 22119 -UBERON:0013617 upper primary molar tooth 11 22120 -UBERON:0018588 upper first primary molar tooth 12 22121 -UBERON:0018599 upper second primary molar tooth 12 22122 -UBERON:0013619 upper secondary molar tooth 11 22123 -UBERON:0018575 upper first secondary molar tooth 12 22124 -UBERON:0018576 upper second secondary molar tooth 12 22125 -UBERON:0018577 upper third secondary molar tooth 12 22126 -UBERON:7500057 upper fourth secondary molar tooth 12 22127 -UBERON:0018302 upper molar 1 11 22128 -UBERON:0018575 upper first secondary molar tooth 12 22129 -UBERON:0018588 upper first primary molar tooth 12 22130 -UBERON:0003667 lower jaw molar 10 22131 -UBERON:0013620 lower primary molar tooth 11 22132 -UBERON:0018589 lower first primary molar tooth 12 22133 -UBERON:0018600 lower second primary molar tooth 12 22134 -UBERON:0013621 lower secondary molar tooth 11 22135 -UBERON:0018578 lower first secondary molar tooth 12 22136 -UBERON:0018579 lower second secondary molar tooth 12 22137 -UBERON:0018580 lower third secondary molar tooth 12 22138 -UBERON:7500052 lower fourth secondary molar tooth 12 22139 -UBERON:0018282 lower molar 3 11 22140 -UBERON:0018580 lower third secondary molar tooth 12 22141 -UBERON:0013616 primary molar tooth 10 22142 -UBERON:0013617 upper primary molar tooth 11 22143 -UBERON:0018588 upper first primary molar tooth 12 22144 -UBERON:0018599 upper second primary molar tooth 12 22145 -UBERON:0013620 lower primary molar tooth 11 22146 -UBERON:0018589 lower first primary molar tooth 12 22147 -UBERON:0018600 lower second primary molar tooth 12 22148 -UBERON:0018643 deciduous molar tooth 2 11 22149 -UBERON:0018599 upper second primary molar tooth 12 22150 -UBERON:0018600 lower second primary molar tooth 12 22151 -UBERON:0018644 deciduous molar tooth 1 11 22152 -UBERON:0018588 upper first primary molar tooth 12 22153 -UBERON:0018589 lower first primary molar tooth 12 22154 -UBERON:0013618 secondary molar tooth 10 22155 -UBERON:0013619 upper secondary molar tooth 11 22156 -UBERON:0018575 upper first secondary molar tooth 12 22157 -UBERON:0018576 upper second secondary molar tooth 12 22158 -UBERON:0018577 upper third secondary molar tooth 12 22159 -UBERON:7500057 upper fourth secondary molar tooth 12 22160 -UBERON:0013621 lower secondary molar tooth 11 22161 -UBERON:0018578 lower first secondary molar tooth 12 22162 -UBERON:0018579 lower second secondary molar tooth 12 22163 -UBERON:0018580 lower third secondary molar tooth 12 22164 -UBERON:7500052 lower fourth secondary molar tooth 12 22165 -UBERON:0018607 permanent molar tooth 2 11 22166 -UBERON:0018576 upper second secondary molar tooth 12 22167 -UBERON:0018579 lower second secondary molar tooth 12 22168 -UBERON:0018608 permanent molar tooth 1 11 22169 -UBERON:0018575 upper first secondary molar tooth 12 22170 -UBERON:0018578 lower first secondary molar tooth 12 22171 -UBERON:0018376 molar tooth 1 10 22172 -UBERON:0018302 upper molar 1 11 22173 -UBERON:0018575 upper first secondary molar tooth 12 22174 -UBERON:0018588 upper first primary molar tooth 12 22175 -UBERON:0018608 permanent molar tooth 1 11 22176 -UBERON:0018575 upper first secondary molar tooth 12 22177 -UBERON:0018578 lower first secondary molar tooth 12 22178 -UBERON:0018644 deciduous molar tooth 1 11 22179 -UBERON:0018588 upper first primary molar tooth 12 22180 -UBERON:0018589 lower first primary molar tooth 12 22181 -UBERON:0018377 molar tooth 3 10 22182 -UBERON:0018282 lower molar 3 11 22183 -UBERON:0018580 lower third secondary molar tooth 12 22184 -UBERON:0018577 upper third secondary molar tooth 11 22185 -UBERON:0018606 molar tooth 2 10 22186 -UBERON:0018607 permanent molar tooth 2 11 22187 -UBERON:0018576 upper second secondary molar tooth 12 22188 -UBERON:0018579 lower second secondary molar tooth 12 22189 -UBERON:0018643 deciduous molar tooth 2 11 22190 -UBERON:0018599 upper second primary molar tooth 12 22191 -UBERON:0018600 lower second primary molar tooth 12 22192 -UBERON:7500055 molar tooth 4 10 22193 -UBERON:0007120 premolar tooth 9 22194 -UBERON:0016943 lower premolar tooth 10 22195 -UBERON:0016453 lower secondary premolar tooth 11 22196 -UBERON:0018573 lower first secondary premolar tooth 12 22197 -UBERON:0018574 lower second secondary premolar tooth 12 22198 -UBERON:7500053 lower fourth secondary premolar tooth 12 22199 -UBERON:7500054 lower third secondary premolar tooth 12 22200 -UBERON:0017272 lower primary premolar tooth 11 22201 -UBERON:0018281 lower deciduous premolar 5 12 22202 -UBERON:0018284 lower premolar 1 11 22203 -UBERON:0018573 lower first secondary premolar tooth 12 22204 -UBERON:0018285 lower premolar 2 11 22205 -UBERON:0018574 lower second secondary premolar tooth 12 22206 -UBERON:0016944 upper premolar tooth 10 22207 -UBERON:0016452 upper secondary premolar tooth 11 22208 -UBERON:0018571 upper first secondary premolar tooth 12 22209 -UBERON:0018572 upper second secondary premolar tooth 12 22210 -UBERON:7500058 upper fourth secondary premolar tooth 12 22211 -UBERON:7500059 upper third secondary premolar tooth 12 22212 -UBERON:0017271 upper primary premolar tooth 11 22213 -UBERON:0018301 upper deciduous premolar 5 12 22214 -UBERON:0018648 upper premolar 4 11 22215 -UBERON:0017269 primary premolar tooth 10 22216 -UBERON:0017271 upper primary premolar tooth 11 22217 -UBERON:0018301 upper deciduous premolar 5 12 22218 -UBERON:0017272 lower primary premolar tooth 11 22219 -UBERON:0018281 lower deciduous premolar 5 12 22220 -UBERON:0018375 deciduous premolar 5 11 22221 -UBERON:0018281 lower deciduous premolar 5 12 22222 -UBERON:0018301 upper deciduous premolar 5 12 22223 -UBERON:0017270 secondary premolar tooth 10 22224 -UBERON:0016452 upper secondary premolar tooth 11 22225 -UBERON:0018571 upper first secondary premolar tooth 12 22226 -UBERON:0018572 upper second secondary premolar tooth 12 22227 -UBERON:7500058 upper fourth secondary premolar tooth 12 22228 -UBERON:7500059 upper third secondary premolar tooth 12 22229 -UBERON:0016453 lower secondary premolar tooth 11 22230 -UBERON:0018573 lower first secondary premolar tooth 12 22231 -UBERON:0018574 lower second secondary premolar tooth 12 22232 -UBERON:7500053 lower fourth secondary premolar tooth 12 22233 -UBERON:7500054 lower third secondary premolar tooth 12 22234 -UBERON:0018294 premolar 1 10 22235 -UBERON:0018284 lower premolar 1 11 22236 -UBERON:0018573 lower first secondary premolar tooth 12 22237 -UBERON:0018571 upper first secondary premolar tooth 11 22238 -UBERON:0018640 premolar 2 10 22239 -UBERON:0018285 lower premolar 2 11 22240 -UBERON:0018574 lower second secondary premolar tooth 12 22241 -UBERON:0018572 upper second secondary premolar tooth 11 22242 -UBERON:0018646 premolar tooth 5 10 22243 -UBERON:0018375 deciduous premolar 5 11 22244 -UBERON:0018281 lower deciduous premolar 5 12 22245 -UBERON:0018301 upper deciduous premolar 5 12 22246 -UBERON:0018647 premolar tooth 4 10 22247 -UBERON:0018648 upper premolar 4 11 22248 -UBERON:7500053 lower fourth secondary premolar tooth 11 22249 -UBERON:7500056 premolar 3 10 22250 -UBERON:0018277 calcareous egg tooth 8 22251 -UBERON:0018296 replacement tooth 8 22252 -UBERON:2000694 ceratobranchial 5 tooth 8 22253 -UBERON:2001141 tooth 1V 9 22254 -UBERON:2001142 tooth 5V 9 22255 -UBERON:2001143 tooth 4V 9 22256 -UBERON:2001144 tooth 2V 9 22257 -UBERON:2001145 tooth 3V 9 22258 -UBERON:2001146 tooth 1MD 9 22259 -UBERON:2001147 tooth 2MD 9 22260 -UBERON:2001148 tooth 1D 9 22261 -UBERON:2001150 tooth 2D 9 22262 -UBERON:2001151 tooth 4MD 9 22263 -UBERON:2001152 tooth 3MD 9 22264 -UBERON:2001633 entopterygoid tooth 8 22265 -UBERON:2001649 basihyal tooth 8 22266 -UBERON:2001651 pharyngobranchial 2 tooth 8 22267 -UBERON:2001653 pharyngobranchial 3 tooth 8 22268 -UBERON:2001655 upper pharyngeal 4 tooth 8 22269 -UBERON:2001657 upper pharyngeal 5 tooth 8 22270 -UBERON:2001659 upper pharyngeal tooth 8 22271 -UBERON:2001660 basibranchial tooth 8 22272 -UBERON:2001663 basibranchial 4 tooth 8 22273 -UBERON:2001665 basibranchial 2 tooth 8 22274 -UBERON:2002258 trituration tooth 8 22275 -UBERON:3000388 parasphenoid tooth 8 22276 -UBERON:4300135 upper jaw symphyseal tooth 8 22277 -UBERON:4300233 mammiliform tooth 8 22278 -UBERON:0003912 chitinous tooth 7 22279 -UBERON:0010894 keratinous tooth 7 22280 -UBERON:0012468 anal tooth 7 22281 -UBERON:0018276 egg tooth 7 22282 -UBERON:0018277 calcareous egg tooth 8 22283 -UBERON:0018278 epidermal egg tooth 8 22284 -UBERON:0004753 scapulocoracoid 6 22285 -UBERON:0004756 dermal skeletal element 6 22286 -UBERON:0007380 dermal scale 7 22287 -UBERON:0000041 odontode scale 8 22288 -UBERON:0018310 cephalic dermal scale 8 22289 -UBERON:2001824 lateral line scale 8 22290 -UBERON:4300238 pored lateral line scale 9 22291 -UBERON:4300242 lateral line scale 6 9 22292 -UBERON:2002122 pouch scale 8 22293 -UBERON:2002273 ctenoid scale 8 22294 -UBERON:2002274 transforming ctenoid scale 9 22295 -UBERON:2002285 cycloid scale 8 22296 -UBERON:4300235 spinoid scale 9 22297 -UBERON:4000052 ganoid scale 8 22298 -UBERON:4000051 lepidosteoid scale 9 22299 -UBERON:4000055 polypteroid scale 9 22300 -UBERON:4000074 palaeoniscoid scale 9 22301 -UBERON:4000070 elasmoid scale 8 22302 -UBERON:4000080 keratin-based scale 8 22303 -UBERON:4000081 cosmoid scale 8 22304 -UBERON:4300102 postcleithral scale 8 22305 -UBERON:4300188 terminal scale 8 22306 -UBERON:4300222 axilar scale 8 22307 -UBERON:4500003 predorsal scale 8 22308 -UBERON:0008907 dermal bone 7 22309 -UBERON:0000209 tetrapod frontal bone 8 22310 -UBERON:0001680 lacrimal bone 8 22311 -UBERON:0001681 nasal bone 8 22312 -UBERON:0001683 jugal bone 8 22313 -UBERON:0001695 squamous part of temporal bone 8 22314 -UBERON:0002229 interparietal bone 8 22315 -UBERON:0002244 premaxilla 8 22316 -UBERON:0002397 maxilla 8 22317 -UBERON:0004741 cleithrum 8 22318 -UBERON:0004742 dentary 8 22319 -UBERON:0001684 mandible 9 22320 -UBERON:0004744 articular/anguloarticular 8 22321 -UBERON:0004865 actinopterygian parietal bone 8 22322 -UBERON:0004866 actinopterygian frontal bone 8 22323 -UBERON:0007841 furcula 8 22324 -UBERON:0010750 prefrontal bone 8 22325 -UBERON:0010898 gastralium 8 22326 -UBERON:0011079 angular bone 8 22327 -UBERON:0011167 septomaxilla bone 8 22328 -UBERON:0011168 postfrontal bone 8 22329 -UBERON:0011169 postorbital bone 8 22330 -UBERON:0011267 quadratojugal bone 8 22331 -UBERON:0011598 coronoid bone 8 22332 -UBERON:4200234 precoronoid bone 9 22333 -UBERON:4200235 postcoronoid bone 9 22334 -UBERON:4200236 anterior coronoid bone 9 22335 -UBERON:4200237 posterior coronoid bone 9 22336 -UBERON:0011628 early premaxilla 8 22337 -UBERON:0011629 supratemporal bone 8 22338 -UBERON:0011630 intertemporal bone 8 22339 -UBERON:0011631 tabular bone 8 22340 -UBERON:0011635 splenial bone 8 22341 -UBERON:0011636 surangular bone 8 22342 -UBERON:4200243 surangular pit line 9 22343 -UBERON:0011637 prearticular bone 8 22344 -UBERON:0011639 frontoparietal bone 8 22345 -UBERON:0011655 interclavicle 8 22346 -UBERON:4100006 parasternal process 9 22347 -UBERON:0011657 dermal element of plastron 8 22348 -UBERON:0011658 epiplastron 9 22349 -UBERON:0011659 entoplastron 9 22350 -UBERON:0011660 hypoplastron 9 22351 -UBERON:0011661 xiphiplastron 9 22352 -UBERON:0014707 hyoplastron 9 22353 -UBERON:0012071 palate bone 8 22354 -UBERON:0001682 palatine bone 9 22355 -UBERON:0002396 vomer 9 22356 -UBERON:0004745 parasphenoid 9 22357 -UBERON:0010389 pterygoid bone 9 22358 -UBERON:0011634 ectopterygoid bone 9 22359 -UBERON:0013113 angular/surangular bone 8 22360 -UBERON:2000103 supramaxilla 8 22361 -UBERON:2000104 suprapreopercle 8 22362 -UBERON:2000127 antorbital 8 22363 -UBERON:2000250 opercle 8 22364 -UBERON:2000264 preopercle 8 22365 -UBERON:2000284 subopercle 8 22366 -UBERON:2000289 preopercle horizontal limb 8 22367 -UBERON:2000336 preopercle vertical limb 8 22368 -UBERON:2000356 gill raker 8 22369 -UBERON:2000376 infraorbital 8 22370 -UBERON:2000223 infraorbital 1 9 22371 -UBERON:2000495 infraorbital 5 9 22372 -UBERON:2001407 infraorbital 2 9 22373 -UBERON:2001408 infraorbital 3 9 22374 -UBERON:2001409 infraorbital 4 9 22375 -UBERON:2001674 infraorbital 6 9 22376 -UBERON:2001702 infraorbital 7 9 22377 -UBERON:2001703 infraorbital 8 9 22378 -UBERON:2001704 infraorbital 9 9 22379 -UBERON:2001705 infraorbital 10 9 22380 -UBERON:2001706 infraorbital 11 9 22381 -UBERON:2001707 infraorbital 12 9 22382 -UBERON:2001708 dermosphenotic 9 22383 -UBERON:2000410 postcleithrum 8 22384 -UBERON:2001852 postcleithrum 1 9 22385 -UBERON:2001853 postcleithrum 2 9 22386 -UBERON:2001854 postcleithrum 3 9 22387 -UBERON:2000452 urohyal 8 22388 -UBERON:2000476 branchiostegal ray 8 22389 -UBERON:2001279 branchiostegal ray 1 9 22390 -UBERON:2001280 branchiostegal ray 3 9 22391 -UBERON:2001281 branchiostegal ray 2 9 22392 -UBERON:2000549 posttemporal 8 22393 -UBERON:2000576 pterotic 8 22394 -UBERON:2000594 supracleithrum 8 22395 -UBERON:2000657 entopterygoid 8 22396 -UBERON:2000663 extrascapula 8 22397 -UBERON:4200099 lateral extrascapular 9 22398 -UBERON:4200103 median extrascapular 9 22399 -UBERON:2000674 interopercle 8 22400 -UBERON:2000691 supraorbital bone 8 22401 -UBERON:4200244 anterior supraorbital bone 9 22402 -UBERON:2001274 coronomeckelian 8 22403 -UBERON:2001403 supraethmoid 8 22404 -UBERON:2001406 kinethmoid bone 8 22405 -UBERON:2001647 pharyngeal tooth plate 8 22406 -UBERON:0018283 lower pharyngobranchial toothplate 9 22407 -UBERON:2001648 basihyal tooth plate 9 22408 -UBERON:2001654 upper pharyngeal 4 tooth plate 9 22409 -UBERON:2001656 upper pharyngeal 5 tooth plate 9 22410 -UBERON:2001658 upper pharyngeal tooth plate 9 22411 -UBERON:2001661 basibranchial tooth plate 9 22412 -UBERON:2001662 basibranchial 4 tooth plate 9 22413 -UBERON:2001664 basibranchial 2 tooth plate 9 22414 -UBERON:2002015 pharyngobranchial tooth plate 9 22415 -UBERON:2001650 pharyngobranchial 2 tooth plate 10 22416 -UBERON:2001652 pharyngobranchial 3 tooth plate 10 22417 -UBERON:2001859 pharyngobranchial 1 tooth plate 10 22418 -UBERON:2002016 pharyngobranchial 4 tooth plate 10 22419 -UBERON:2001692 median premaxilla 8 22420 -UBERON:2001700 caudal-fin stay 8 22421 -UBERON:2001788 pelvic splint 8 22422 -UBERON:2001815 nuchal plate 8 22423 -UBERON:2001816 anterior nuchal plate 9 22424 -UBERON:2001817 middle nuchal plate 9 22425 -UBERON:2001820 posterior nuchal plate 9 22426 -UBERON:2001930 accessory vomerine tooth plate 8 22427 -UBERON:2001932 sensory canal tubular ossicle 8 22428 -UBERON:2001934 rostral plate 8 22429 -UBERON:2001997 parietal-supraoccipital 8 22430 -UBERON:2001998 posttemporal-supracleithrum 8 22431 -UBERON:2002005 canal plate 8 22432 -UBERON:2002019 pterotic-posttemporal-supracleithrum 8 22433 -UBERON:2002020 hypomaxilla 8 22434 -UBERON:2002022 dermethmoid 8 22435 -UBERON:2002053 bony plate 8 22436 -UBERON:4300211 lateral plate 9 22437 -UBERON:2002086 pelvic axillary process 8 22438 -UBERON:2002087 pectoral axillary process 8 22439 -UBERON:2002089 gular plate 8 22440 -UBERON:2002291 fulcrum 8 22441 -UBERON:2002082 basal fulcrum 9 22442 -UBERON:2002159 caudal basal fulcrum 10 22443 -UBERON:2002292 epaxial basal fulcrum 10 22444 -UBERON:2002293 hypaxial basal fulcrum 10 22445 -UBERON:2002083 fringing fulcrum 9 22446 -UBERON:2002294 fish scute 8 22447 -UBERON:2001160 dorsal scute 9 22448 -UBERON:2001547 abdominal scute 9 22449 -UBERON:2001606 caudal scute 9 22450 -UBERON:2001931 infranuchal scute 9 22451 -UBERON:4200113 predorsal scute 9 22452 -UBERON:3000288 maxillopalatine 8 22453 -UBERON:3000323 nasopremaxilla 8 22454 -UBERON:3000518 pseudodentary 8 22455 -UBERON:3000645 corpus 8 22456 -UBERON:3000966 angulosplenial 8 22457 -UBERON:3010576 prenasal (amphibians) 8 22458 -UBERON:4000160 anocleithrum 8 22459 -UBERON:4000172 lepidotrichium 8 22460 -UBERON:4200075 fin spine 9 22461 -UBERON:4200070 median fin spine 10 22462 -UBERON:2002261 dorsal fin spine 11 22463 -UBERON:2001789 dorsal fin spine 1 12 22464 -UBERON:2001790 dorsal fin spine 2 12 22465 -UBERON:4300175 procumbent dorsal fin spine 12 22466 -UBERON:2002262 anal fin spine 11 22467 -UBERON:4300097 anal fin spine 1 12 22468 -UBERON:4300098 anal fin spine 2 12 22469 -UBERON:4500009 paired fin spine 10 22470 -UBERON:2001787 pectoral fin spine 11 22471 -UBERON:2002270 pelvic fin spine 11 22472 -UBERON:4440011 paired fin lepidotrichium 9 22473 -UBERON:4000173 pelvic fin lepidotrichium 10 22474 -UBERON:2002270 pelvic fin spine 11 22475 -UBERON:4300117 pelvic fin ray 11 22476 -UBERON:2001776 pelvic fin ray 1 12 22477 -UBERON:2001777 pelvic fin ray 2 12 22478 -UBERON:2001778 pelvic fin ray 3 12 22479 -UBERON:2001779 pelvic fin ray 4 12 22480 -UBERON:2001780 pelvic fin ray 5 12 22481 -UBERON:2001781 pelvic fin ray 6 12 22482 -UBERON:2001782 pelvic fin ray 7 12 22483 -UBERON:4300192 branched pelvic fin ray 12 22484 -UBERON:4500011 unbranched pelvic fin ray 12 22485 -UBERON:4000175 pectoral fin lepidotrichium 10 22486 -UBERON:2001787 pectoral fin spine 11 22487 -UBERON:4500007 pectoral fin ray 11 22488 -UBERON:2001761 pectoral fin ray 1 12 22489 -UBERON:2001762 pectoral fin ray 2 12 22490 -UBERON:2001763 pectoral fin ray 3 12 22491 -UBERON:2001764 pectoral fin ray 4 12 22492 -UBERON:2001765 pectoral fin ray 5 12 22493 -UBERON:2001766 pectoral fin ray 6 12 22494 -UBERON:2001767 pectoral fin ray 7 12 22495 -UBERON:2001993 branched pectoral fin ray 12 22496 -UBERON:4300103 rudimentary pectoral fin ray 12 22497 -UBERON:4500010 unbranched pectoral fin ray 12 22498 -UBERON:4500009 paired fin spine 10 22499 -UBERON:2001787 pectoral fin spine 11 22500 -UBERON:2002270 pelvic fin spine 11 22501 -UBERON:4500008 median fin lepidotrichium 9 22502 -UBERON:4000174 caudal fin lepidotrichium 10 22503 -UBERON:2001584 caudal procurrent ray 11 22504 -UBERON:2001829 caudal fin dorsal procurrent ray 12 22505 -UBERON:2001830 caudal fin ventral procurrent ray 12 22506 -UBERON:2002271 ventral caudal procurrent ray 2 13 22507 -UBERON:2002272 ventral caudal procurrent ray 1 13 22508 -UBERON:4300250 ventral caudal procurrent ray 3 13 22509 -UBERON:4300251 ventral caudal procurrent ray 4 13 22510 -UBERON:2001585 caudal principal ray 11 22511 -UBERON:2001713 caudal principal ray 1 12 22512 -UBERON:2001714 caudal principal ray 2 12 22513 -UBERON:2001715 caudal principal ray 3 12 22514 -UBERON:2001716 caudal principal ray 4 12 22515 -UBERON:2001717 caudal principal ray 5 12 22516 -UBERON:2001718 caudal principal ray 6 12 22517 -UBERON:2001719 caudal principal ray 7 12 22518 -UBERON:2001720 caudal principal ray 8 12 22519 -UBERON:2001721 caudal principal ray 9 12 22520 -UBERON:2001722 caudal principal ray 10 12 22521 -UBERON:2001723 caudal principal ray 11 12 22522 -UBERON:2001724 caudal principal ray 12 12 22523 -UBERON:2001725 caudal principal ray 13 12 22524 -UBERON:2001726 caudal principal ray 14 12 22525 -UBERON:2001727 caudal principal ray 15 12 22526 -UBERON:2001728 caudal principal ray 16 12 22527 -UBERON:2001729 caudal principal ray 17 12 22528 -UBERON:2001730 caudal principal ray 18 12 22529 -UBERON:2001731 caudal principal ray 19 12 22530 -UBERON:2002062 branched caudal fin ray 11 22531 -UBERON:4200009 hypochordal lepidotrichium 11 22532 -UBERON:4200062 epichordal lepidotrichium 11 22533 -UBERON:4000176 anal fin lepidotrichium 10 22534 -UBERON:2002262 anal fin spine 11 22535 -UBERON:4300097 anal fin spine 1 12 22536 -UBERON:4300098 anal fin spine 2 12 22537 -UBERON:4500006 anal fin ray 11 22538 -UBERON:2001769 anal fin ray 1 12 22539 -UBERON:2001770 anal fin ray 2 12 22540 -UBERON:2001771 anal fin ray 3 12 22541 -UBERON:2001772 anal fin ray 4 12 22542 -UBERON:2001773 anal fin ray 5 12 22543 -UBERON:2001774 anal fin ray 6 12 22544 -UBERON:2001775 anal fin ray 7 12 22545 -UBERON:2001992 branched anal fin ray 12 22546 -UBERON:4300193 unbranched anal fin ray 12 22547 -UBERON:4000177 dorsal fin lepidotrichium 10 22548 -UBERON:2002261 dorsal fin spine 11 22549 -UBERON:2001789 dorsal fin spine 1 12 22550 -UBERON:2001790 dorsal fin spine 2 12 22551 -UBERON:4300175 procumbent dorsal fin spine 12 22552 -UBERON:4300116 dorsal fin ray 11 22553 -UBERON:2001754 dorsal fin ray 1 12 22554 -UBERON:2001755 dorsal fin ray 2 12 22555 -UBERON:2001756 dorsal fin ray 3 12 22556 -UBERON:2001757 dorsal fin ray 4 12 22557 -UBERON:2001758 dorsal fin ray 5 12 22558 -UBERON:2001759 dorsal fin ray 6 12 22559 -UBERON:2001760 dorsal fin ray 7 12 22560 -UBERON:2001785 branched dorsal fin ray 12 22561 -UBERON:2001786 unbranched dorsal fin ray 12 22562 -UBERON:4200070 median fin spine 10 22563 -UBERON:2002261 dorsal fin spine 11 22564 -UBERON:2001789 dorsal fin spine 1 12 22565 -UBERON:2001790 dorsal fin spine 2 12 22566 -UBERON:4300175 procumbent dorsal fin spine 12 22567 -UBERON:2002262 anal fin spine 11 22568 -UBERON:4300097 anal fin spine 1 12 22569 -UBERON:4300098 anal fin spine 2 12 22570 -UBERON:4300274 adipose fin ray 10 22571 -UBERON:4100119 extratemporal bone 8 22572 -UBERON:4200022 extracleithrum 8 22573 -UBERON:4200102 median dorsal plate 8 22574 -UBERON:4200115 presupracleithrum 8 22575 -UBERON:4300003 urodermal bone 8 22576 -UBERON:4300014 dorsal cleithrum 8 22577 -UBERON:4300015 ventral cleithrum 8 22578 -UBERON:4300017 rostrodermethmoid 8 22579 -UBERON:4300021 anterolateral plate 8 22580 -UBERON:4300022 anteroventral plate 8 22581 -UBERON:4300023 interolateral plate 8 22582 -UBERON:4300024 spinal plate 8 22583 -UBERON:4300025 posterior dorsolateral plate 8 22584 -UBERON:4300026 anterior ventrolateral plate 8 22585 -UBERON:4300028 posterior ventrolateral plate 8 22586 -UBERON:4300104 ectocoracoid bone 8 22587 -UBERON:4300199 postsplenial 8 22588 -UBERON:4300207 submandibular bone 8 22589 -UBERON:4500005 prenasal ossicle 8 22590 -UBERON:0018299 mandibular symphyseal tooth 7 22591 -UBERON:2001649 basihyal tooth 7 22592 -UBERON:2001651 pharyngobranchial 2 tooth 7 22593 -UBERON:2001653 pharyngobranchial 3 tooth 7 22594 -UBERON:2001655 upper pharyngeal 4 tooth 7 22595 -UBERON:2001657 upper pharyngeal 5 tooth 7 22596 -UBERON:2001659 upper pharyngeal tooth 7 22597 -UBERON:2001660 basibranchial tooth 7 22598 -UBERON:2001663 basibranchial 4 tooth 7 22599 -UBERON:2001665 basibranchial 2 tooth 7 22600 -UBERON:0007844 cartilage element 6 22601 -UBERON:0001823 nasal cartilage 7 22602 -UBERON:0003407 cartilage of nasal septum 8 22603 -UBERON:0006332 nasal capsule 8 22604 -UBERON:3000316 nasal opening 9 22605 -UBERON:3000160 fenestra dorsalis nasi 10 22606 -UBERON:3000161 fenestra endochoanalis 10 22607 -UBERON:3000162 fenestra endonarina communis 10 22608 -UBERON:3000164 fenestra lateralis nasi 10 22609 -UBERON:3000166 fenestra nasobasalis 10 22610 -UBERON:3000167 fenestra nasolateralis 10 22611 -UBERON:3000170 fenestra precerebralis 10 22612 -UBERON:3000171 fenestra prechoanalis 10 22613 -UBERON:3000189 foramen orbitonasale laterale 10 22614 -UBERON:3000190 foramen orbitonasale mediale 10 22615 -UBERON:3000291 medial orbitonasal foramen 10 22616 -UBERON:3000333 olfactory foramen 10 22617 -UBERON:0007818 major alar cartilage 8 22618 -UBERON:0007819 minor alar cartilage 8 22619 -UBERON:0007820 accessory nasal cartilage 8 22620 -UBERON:0007821 lateral nasal cartilage 8 22621 -UBERON:0007822 vomeronasal cartilage 8 22622 -UBERON:3000002 alary cartilage 8 22623 -UBERON:3000068 cartilago ectochoanalis 8 22624 -UBERON:3000069 cartilago infranarina 8 22625 -UBERON:3000079 cartilago retronarina 8 22626 -UBERON:3000234 inferior prenasal cartilage 8 22627 -UBERON:3000290 medial inferior prenasal cartilage 8 22628 -UBERON:3000329 oblique cartilage 8 22629 -UBERON:3000381 paranasal commissure 8 22630 -UBERON:3000389 paries nasi 8 22631 -UBERON:3000434 planum antorbitale 8 22632 -UBERON:3000437 planum conchale 8 22633 -UBERON:3000438 planum internasale 8 22634 -UBERON:3000586 superior prenasal cartilage 8 22635 -UBERON:3010827 anterior prenasal cartilage 8 22636 -UBERON:0001867 cartilage of external ear 7 22637 -UBERON:0004106 crus of ear 8 22638 -UBERON:0002236 costal cartilage 7 22639 -UBERON:0006430 xiphoid cartilage 8 22640 -UBERON:0003406 cartilage of respiratory system 7 22641 -UBERON:0001739 laryngeal cartilage 8 22642 -UBERON:0001738 thyroid cartilage 9 22643 -UBERON:0001740 arytenoid cartilage 9 22644 -UBERON:0001742 epiglottic cartilage 9 22645 -UBERON:0002375 cricoid cartilage 9 22646 -UBERON:0011157 cuneiform cartilage 9 22647 -UBERON:0003603 lower respiratory tract cartilage 8 22648 -UBERON:0001956 cartilage of bronchus 9 22649 -UBERON:0001102 cartilage of main bronchus 10 22650 -UBERON:0003604 trachea cartilage 9 22651 -UBERON:0006679 carina of trachea 10 22652 -UBERON:0009078 pessulus 10 22653 -UBERON:0004368 Reichert's cartilage 8 22654 -UBERON:0003601 neck cartilage 7 22655 -UBERON:0007252 intervertebral disk of cervical vertebra 8 22656 -UBERON:0007260 intervertebral disk of third cervical vertebra 9 22657 -UBERON:0007261 intervertebral disk of fourth cervical vertebra 9 22658 -UBERON:0007262 intervertebral disk of fifth cervical vertebra 9 22659 -UBERON:0007263 intervertebral disk of sixth cervical vertebra 9 22660 -UBERON:0007264 intervertebral disk of seventh cervical vertebra 9 22661 -UBERON:0007265 intervertebral disk of axis 9 22662 -UBERON:0007266 intervertebral disk of atlas 9 22663 -UBERON:0013505 cervical vertebra cartilage element 8 22664 -UBERON:0003933 cranial cartilage 7 22665 -UBERON:0003932 cartilage element of chondrocranium 8 22666 -UBERON:0003407 cartilage of nasal septum 9 22667 -UBERON:0005410 cartilaginous otic capsule 9 22668 -UBERON:0005687 orbitosphenoid cartilage element 9 22669 -UBERON:0005945 neurocranial trabecula 9 22670 -UBERON:0006209 basioccipital cartilage element 9 22671 -UBERON:0006604 lamina orbitonasalis 9 22672 -UBERON:0006605 tectum synoticum 9 22673 -UBERON:0007215 trabecula cranii 9 22674 -UBERON:0009193 sphenoid cartilage element 9 22675 -UBERON:0009635 parachordal cartilage 9 22676 -UBERON:0009636 prechordal cartilage 9 22677 -UBERON:0009640 hypophyseal cartilage 9 22678 -UBERON:0010289 scleral cartilage 9 22679 -UBERON:4300181 posterior sclerotic cartilage 10 22680 -UBERON:4300182 anterior sclerotic cartilage 10 22681 -UBERON:0010326 optic pedicel 9 22682 -UBERON:0010733 alisphenoid cartilage element 9 22683 -UBERON:0010752 exoccipital cartilage element 9 22684 -UBERON:0011162 supraoccipital cartilage element 9 22685 -UBERON:0011242 ethmoid cartilage 9 22686 -UBERON:0035007 nasal concha cartilage 9 22687 -UBERON:2000585 kinethmoid cartilage 9 22688 -UBERON:2001425 basal plate cartilage 9 22689 -UBERON:2001502 epiphyseal bar 9 22690 -UBERON:2001504 occipital arch cartilage 9 22691 -UBERON:2001505 taenia marginalis anterior 9 22692 -UBERON:2001508 trabecula communis 9 22693 -UBERON:2001515 taenia marginalis posterior 9 22694 -UBERON:2001752 pre-narial cartilage 9 22695 -UBERON:2002092 rostral cartilage 9 22696 -UBERON:3000431 pila antoptica 9 22697 -UBERON:3000432 pila metoptica 9 22698 -UBERON:3000599 taenia tecti marginalis 9 22699 -UBERON:3010128 taeniae tecti marginalis 9 22700 -UBERON:3010130 taenia tecti transversalis 9 22701 -UBERON:3010132 taenia tecti medialis 9 22702 -UBERON:3010565 pila preoptica 9 22703 -UBERON:4300034 antorbital cartilage 9 22704 -UBERON:0010310 nictitating membrane lamina 8 22705 -UBERON:0011004 pharyngeal arch cartilage 8 22706 -UBERON:0001739 laryngeal cartilage 9 22707 -UBERON:0001738 thyroid cartilage 10 22708 -UBERON:0001740 arytenoid cartilage 10 22709 -UBERON:0001742 epiglottic cartilage 10 22710 -UBERON:0002375 cricoid cartilage 10 22711 -UBERON:0011157 cuneiform cartilage 10 22712 -UBERON:0003107 Meckel's cartilage 9 22713 -UBERON:0004752 palatoquadrate cartilage 9 22714 -UBERON:3010821 hyoquadrate process 10 22715 -UBERON:0010733 alisphenoid cartilage element 9 22716 -UBERON:0011002 articular cartilage element 9 22717 -UBERON:0011607 hyomandibular cartilage 9 22718 -UBERON:0010055 stapes cartilage element 10 22719 -UBERON:0011610 ceratohyal cartilage 9 22720 -UBERON:0011612 hypohyal cartilage 9 22721 -UBERON:0011615 basihyal cartilage 9 22722 -UBERON:0011621 thyrohyoid cartilage 9 22723 -UBERON:0011626 tympanohyoid cartilage 9 22724 -UBERON:0013747 basibranchial cartilage 9 22725 -UBERON:2001864 basibranchial 1 cartilage 10 22726 -UBERON:2001865 basibranchial 4 cartilage 10 22727 -UBERON:2001866 basibranchial 5 cartilage 10 22728 -UBERON:2001874 basibranchial 2 cartilage 10 22729 -UBERON:2001876 basibranchial 3 cartilage 10 22730 -UBERON:0035131 auditory ossicle cartilage element 9 22731 -UBERON:0007374 incus cartilage element 10 22732 -UBERON:0010054 malleus cartilage element 10 22733 -UBERON:0010055 stapes cartilage element 10 22734 -UBERON:2001220 basibranchial copula 9 22735 -UBERON:2001221 anterior copula 10 22736 -UBERON:2001222 posterior copula 10 22737 -UBERON:2001511 interhyal cartilage 9 22738 -UBERON:2001516 ceratobranchial cartilage 9 22739 -UBERON:2001517 ceratobranchial 2 cartilage 10 22740 -UBERON:2001518 ceratobranchial 3 cartilage 10 22741 -UBERON:2001519 ceratobranchial 4 cartilage 10 22742 -UBERON:2001520 ceratobranchial 1 cartilage 10 22743 -UBERON:2001521 ceratobranchial 5 cartilage 10 22744 -UBERON:2001522 hypobranchial cartilage 9 22745 -UBERON:2001523 hypobranchial 4 cartilage 10 22746 -UBERON:2001524 hypobranchial 1 cartilage 10 22747 -UBERON:2001525 hypobranchial 2 cartilage 10 22748 -UBERON:2001526 hypobranchial 3 cartilage 10 22749 -UBERON:2001527 epibranchial cartilage 9 22750 -UBERON:2001244 epibranchial 5 cartilage 10 22751 -UBERON:2001528 epibranchial 1 cartilage 10 22752 -UBERON:2001529 epibranchial 3 cartilage 10 22753 -UBERON:2001530 epibranchial 2 cartilage 10 22754 -UBERON:2001531 epibranchial 4 cartilage 10 22755 -UBERON:2001533 pharyngobranchial cartilage 9 22756 -UBERON:2001251 pharyngobranchial 4 cartilage 10 22757 -UBERON:2001534 pharyngobranchial 3 cartilage 10 22758 -UBERON:2001536 pharyngobranchial 2 cartilage 10 22759 -UBERON:2001634 pharyngobranchial 1 cartilage 10 22760 -UBERON:2001544 sublingual cartilage 9 22761 -UBERON:2001532 sublingual dorsal cartilage 10 22762 -UBERON:2001545 sublingual ventral cartilage 10 22763 -UBERON:2001688 palatine cartilage 9 22764 -UBERON:2001689 pterygoquadrate cartilage 9 22765 -UBERON:2001690 anterior cartilage of palatine 9 22766 -UBERON:2001691 posterior cartilage of palatine 9 22767 -UBERON:2001695 mediopharyngobranchial 9 22768 -UBERON:2001696 gongyloid cartilage 9 22769 -UBERON:2001856 gill ray 9 22770 -UBERON:2001867 post-ceratobranchial cartilage 9 22771 -UBERON:2001956 epibranchial 1 bone proximal cartilage 9 22772 -UBERON:2001957 epibranchial 2 bone proximal cartilage 9 22773 -UBERON:2001958 ceratobranchial 3 bone distal cartilage 9 22774 -UBERON:2001959 ceratobranchial 4 bone proximal cartilage 9 22775 -UBERON:2001960 ceratobranchial 4 bone distal cartilage 9 22776 -UBERON:2001961 ceratobranchial 5 bone distal cartilage 9 22777 -UBERON:2001962 hypobranchial 1 bone distal cartilage 9 22778 -UBERON:2001963 hypobranchial 2 bone distal cartilage 9 22779 -UBERON:2001964 epibranchial 3 bone uncinate process cartilage 9 22780 -UBERON:2001965 epibranchial 4 bone uncinate process cartilage 9 22781 -UBERON:2001989 mandibular-hyoid median cartilage 9 22782 -UBERON:2002009 medial cartilage of palatine 9 22783 -UBERON:2002269 interarcual cartilage 9 22784 -UBERON:3010061 anterior quadratocranial commissure 9 22785 -UBERON:3010828 commissura terminales of hyoid apparatus 9 22786 -UBERON:4300252 ethmo-palatine cartilage 9 22787 -UBERON:0018333 labial cartilage 8 22788 -UBERON:3000002 alary cartilage 8 22789 -UBERON:3000068 cartilago ectochoanalis 8 22790 -UBERON:3000069 cartilago infranarina 8 22791 -UBERON:3000074 cartilago orbitalis 8 22792 -UBERON:3000078 cartilago prootico-occipitalis 8 22793 -UBERON:3000079 cartilago retronarina 8 22794 -UBERON:3000234 inferior prenasal cartilage 8 22795 -UBERON:3000237 infrarostral cartilage 8 22796 -UBERON:3000290 medial inferior prenasal cartilage 8 22797 -UBERON:3000329 oblique cartilage 8 22798 -UBERON:3000381 paranasal commissure 8 22799 -UBERON:3000389 paries nasi 8 22800 -UBERON:3000434 planum antorbitale 8 22801 -UBERON:3000437 planum conchale 8 22802 -UBERON:3000438 planum internasale 8 22803 -UBERON:3000586 superior prenasal cartilage 8 22804 -UBERON:3000640 arcus praeoccipitalis 8 22805 -UBERON:3000998 suprarostral cartilage 8 22806 -UBERON:3010131 orbital cartilages 8 22807 -UBERON:3010827 anterior prenasal cartilage 8 22808 -UBERON:0006254 ischial cartilage element 7 22809 -UBERON:0006288 rib cartilage element 7 22810 -UBERON:0006290 scapula cartilage element 7 22811 -UBERON:0007354 cartilage of pharyngotympanic tube 7 22812 -UBERON:0009291 cartilaginous vertebral centrum 7 22813 -UBERON:0010714 iliac cartilage element 7 22814 -UBERON:0010718 pubic cartilage element 7 22815 -UBERON:0010869 calcar 7 22816 -UBERON:0010881 limb cartilage element 7 22817 -UBERON:0010883 forelimb cartilage element 8 22818 -UBERON:0006245 humerus cartilage element 9 22819 -UBERON:0006286 radius cartilage element 9 22820 -UBERON:0006306 ulna cartilage element 9 22821 -UBERON:0008254 styliform cartilage 9 22822 -UBERON:0010848 radius-ulna cartilage element 9 22823 -UBERON:0035128 manus cartilage element 9 22824 -UBERON:0010686 manual digit phalanx cartilage element 10 22825 -UBERON:0010675 manual digit 1 phalanx cartilage element 11 22826 -UBERON:0010676 manual digit 2 phalanx cartilage element 11 22827 -UBERON:0010677 manual digit 3 phalanx cartilage element 11 22828 -UBERON:0010678 manual digit 4 phalanx cartilage element 11 22829 -UBERON:0010679 manual digit 5 phalanx cartilage element 11 22830 -UBERON:0010699 manual digit metacarpus cartilage element 10 22831 -UBERON:0010570 manual digit 1 metacarpus cartilage element 11 22832 -UBERON:0010571 manual digit 2 metacarpus cartilage element 11 22833 -UBERON:0010572 manual digit 3 metacarpus cartilage element 11 22834 -UBERON:0010573 manual digit 4 metacarpus cartilage element 11 22835 -UBERON:0010574 manual digit 5 metacarpus cartilage element 11 22836 -UBERON:0015069 distal carpal cartilage element 10 22837 -UBERON:0015079 proximal carpal cartilage 10 22838 -UBERON:0015085 distal carpal bone 1 cartilage 10 22839 -UBERON:0015088 distal carpal bone 2 cartilage 10 22840 -UBERON:0015091 distal carpal bone 3 cartilage 10 22841 -UBERON:0015094 distal carpal bone 4 cartilage 10 22842 -UBERON:0015097 distal carpal bone 5 cartilage 10 22843 -UBERON:0010885 hindlimb cartilage element 8 22844 -UBERON:0010129 femur cartilage element 9 22845 -UBERON:0010849 tibia cartilage element 9 22846 -UBERON:0010851 fibula cartilage element 9 22847 -UBERON:0010902 tibiotarsus cartilage element 9 22848 -UBERON:0035129 pes cartilage element 9 22849 -UBERON:0010685 pedal digit phalanx cartilage element 10 22850 -UBERON:0010680 pedal digit 1 phalanx cartilage element 11 22851 -UBERON:0010681 pedal digit 2 phalanx cartilage element 11 22852 -UBERON:0010682 pedal digit 3 phalanx cartilage element 11 22853 -UBERON:0010683 pedal digit 4 phalanx cartilage element 11 22854 -UBERON:0010684 pedal digit 5 phalanx cartilage element 11 22855 -UBERON:0010697 pedal digit metatarsal cartilage element 10 22856 -UBERON:0010557 pedal digit 1 metatarsal cartilage element 11 22857 -UBERON:0010558 pedal digit 2 metatarsal cartilage element 11 22858 -UBERON:0010559 pedal digit 3 metatarsal cartilage element 11 22859 -UBERON:0010560 pedal digit 4 metatarsal cartilage element 11 22860 -UBERON:0010561 pedal digit 5 metatarsal cartilage element 11 22861 -UBERON:0010842 calcaneum cartilage element 10 22862 -UBERON:0010900 tarsometatarsus cartilage element 10 22863 -UBERON:0015082 proximal tarsal cartilage 10 22864 -UBERON:0015100 distal tarsal cartilage 10 22865 -UBERON:0015103 distal tarsal bone 1 cartilage 11 22866 -UBERON:0015106 distal tarsal bone 2 cartilage 11 22867 -UBERON:0015109 distal tarsal bone 3 cartilage 11 22868 -UBERON:0015112 distal tarsal bone 4 cartilage 11 22869 -UBERON:0015115 distal tarsal bone 5 cartilage 11 22870 -UBERON:0015064 autopod cartilage 8 22871 -UBERON:0010701 phalanx cartilage element 9 22872 -UBERON:0010685 pedal digit phalanx cartilage element 10 22873 -UBERON:0010680 pedal digit 1 phalanx cartilage element 11 22874 -UBERON:0010681 pedal digit 2 phalanx cartilage element 11 22875 -UBERON:0010682 pedal digit 3 phalanx cartilage element 11 22876 -UBERON:0010683 pedal digit 4 phalanx cartilage element 11 22877 -UBERON:0010684 pedal digit 5 phalanx cartilage element 11 22878 -UBERON:0010686 manual digit phalanx cartilage element 10 22879 -UBERON:0010675 manual digit 1 phalanx cartilage element 11 22880 -UBERON:0010676 manual digit 2 phalanx cartilage element 11 22881 -UBERON:0010677 manual digit 3 phalanx cartilage element 11 22882 -UBERON:0010678 manual digit 4 phalanx cartilage element 11 22883 -UBERON:0010679 manual digit 5 phalanx cartilage element 11 22884 -UBERON:0015077 centrale cartilage 9 22885 -UBERON:0017751 proximal mesopodial cartilage element 9 22886 -UBERON:0015079 proximal carpal cartilage 10 22887 -UBERON:0015082 proximal tarsal cartilage 10 22888 -UBERON:0018100 distal mesopodial cartilage element 9 22889 -UBERON:0015069 distal carpal cartilage element 10 22890 -UBERON:0015100 distal tarsal cartilage 10 22891 -UBERON:0015103 distal tarsal bone 1 cartilage 11 22892 -UBERON:0015106 distal tarsal bone 2 cartilage 11 22893 -UBERON:0015109 distal tarsal bone 3 cartilage 11 22894 -UBERON:0015112 distal tarsal bone 4 cartilage 11 22895 -UBERON:0015115 distal tarsal bone 5 cartilage 11 22896 -UBERON:0035128 manus cartilage element 9 22897 -UBERON:0010686 manual digit phalanx cartilage element 10 22898 -UBERON:0010675 manual digit 1 phalanx cartilage element 11 22899 -UBERON:0010676 manual digit 2 phalanx cartilage element 11 22900 -UBERON:0010677 manual digit 3 phalanx cartilage element 11 22901 -UBERON:0010678 manual digit 4 phalanx cartilage element 11 22902 -UBERON:0010679 manual digit 5 phalanx cartilage element 11 22903 -UBERON:0010699 manual digit metacarpus cartilage element 10 22904 -UBERON:0010570 manual digit 1 metacarpus cartilage element 11 22905 -UBERON:0010571 manual digit 2 metacarpus cartilage element 11 22906 -UBERON:0010572 manual digit 3 metacarpus cartilage element 11 22907 -UBERON:0010573 manual digit 4 metacarpus cartilage element 11 22908 -UBERON:0010574 manual digit 5 metacarpus cartilage element 11 22909 -UBERON:0015069 distal carpal cartilage element 10 22910 -UBERON:0015079 proximal carpal cartilage 10 22911 -UBERON:0015085 distal carpal bone 1 cartilage 10 22912 -UBERON:0015088 distal carpal bone 2 cartilage 10 22913 -UBERON:0015091 distal carpal bone 3 cartilage 10 22914 -UBERON:0015094 distal carpal bone 4 cartilage 10 22915 -UBERON:0015097 distal carpal bone 5 cartilage 10 22916 -UBERON:0035129 pes cartilage element 9 22917 -UBERON:0010685 pedal digit phalanx cartilage element 10 22918 -UBERON:0010680 pedal digit 1 phalanx cartilage element 11 22919 -UBERON:0010681 pedal digit 2 phalanx cartilage element 11 22920 -UBERON:0010682 pedal digit 3 phalanx cartilage element 11 22921 -UBERON:0010683 pedal digit 4 phalanx cartilage element 11 22922 -UBERON:0010684 pedal digit 5 phalanx cartilage element 11 22923 -UBERON:0010697 pedal digit metatarsal cartilage element 10 22924 -UBERON:0010557 pedal digit 1 metatarsal cartilage element 11 22925 -UBERON:0010558 pedal digit 2 metatarsal cartilage element 11 22926 -UBERON:0010559 pedal digit 3 metatarsal cartilage element 11 22927 -UBERON:0010560 pedal digit 4 metatarsal cartilage element 11 22928 -UBERON:0010561 pedal digit 5 metatarsal cartilage element 11 22929 -UBERON:0010842 calcaneum cartilage element 10 22930 -UBERON:0010900 tarsometatarsus cartilage element 10 22931 -UBERON:0015082 proximal tarsal cartilage 10 22932 -UBERON:0015100 distal tarsal cartilage 10 22933 -UBERON:0015103 distal tarsal bone 1 cartilage 11 22934 -UBERON:0015106 distal tarsal bone 2 cartilage 11 22935 -UBERON:0015109 distal tarsal bone 3 cartilage 11 22936 -UBERON:0015112 distal tarsal bone 4 cartilage 11 22937 -UBERON:0015115 distal tarsal bone 5 cartilage 11 22938 -UBERON:0010896 piston cartilage 7 22939 -UBERON:0011094 vertebra cartilage element 7 22940 -UBERON:0010745 sacral vertebra cartilage element 8 22941 -UBERON:0013503 caudal vertebra cartilage element 8 22942 -UBERON:0013505 cervical vertebra cartilage element 8 22943 -UBERON:0013507 thoracic vertebra cartilage element 8 22944 -UBERON:0013509 lumbar vertebra cartilage element 8 22945 -UBERON:4300225 precaudal vertebra cartilage element 8 22946 -UBERON:0011135 intervertebral cartilage 7 22947 -UBERON:0001066 intervertebral disk 8 22948 -UBERON:0003449 tail intervertebral disc 9 22949 -UBERON:0007252 intervertebral disk of cervical vertebra 9 22950 -UBERON:0007260 intervertebral disk of third cervical vertebra 10 22951 -UBERON:0007261 intervertebral disk of fourth cervical vertebra 10 22952 -UBERON:0007262 intervertebral disk of fifth cervical vertebra 10 22953 -UBERON:0007263 intervertebral disk of sixth cervical vertebra 10 22954 -UBERON:0007264 intervertebral disk of seventh cervical vertebra 10 22955 -UBERON:0007265 intervertebral disk of axis 10 22956 -UBERON:0007266 intervertebral disk of atlas 10 22957 -UBERON:0007254 intervertebral disk of thoracic vertebra 9 22958 -UBERON:0007255 intervertebral disk of lumbar vertebra 9 22959 -UBERON:0007257 intervertebral disk of sacral vertebra 9 22960 -UBERON:0011247 procoracoid cartilage 7 22961 -UBERON:0011319 disk of temporomandibular joint 7 22962 -UBERON:0011958 acetabular labrum 7 22963 -UBERON:0011959 glenoid labrum of scapula 7 22964 -UBERON:0013180 bursal cartilage 7 22965 -UBERON:0013632 sesamoid cartilage 7 22966 -UBERON:0016619 Y-shaped fibrocartilage skeleton of ventral pouch 7 22967 -UBERON:0034939 future piston 7 22968 -UBERON:1500005 ischial cartilage 7 22969 -UBERON:2001457 postcranial axial cartilage 7 22970 -UBERON:0006430 xiphoid cartilage 8 22971 -UBERON:0007252 intervertebral disk of cervical vertebra 8 22972 -UBERON:0007260 intervertebral disk of third cervical vertebra 9 22973 -UBERON:0007261 intervertebral disk of fourth cervical vertebra 9 22974 -UBERON:0007262 intervertebral disk of fifth cervical vertebra 9 22975 -UBERON:0007263 intervertebral disk of sixth cervical vertebra 9 22976 -UBERON:0007264 intervertebral disk of seventh cervical vertebra 9 22977 -UBERON:0007265 intervertebral disk of axis 9 22978 -UBERON:0007266 intervertebral disk of atlas 9 22979 -UBERON:0007254 intervertebral disk of thoracic vertebra 8 22980 -UBERON:0007255 intervertebral disk of lumbar vertebra 8 22981 -UBERON:0007257 intervertebral disk of sacral vertebra 8 22982 -UBERON:0010745 sacral vertebra cartilage element 8 22983 -UBERON:0013503 caudal vertebra cartilage element 8 22984 -UBERON:0013505 cervical vertebra cartilage element 8 22985 -UBERON:0013507 thoracic vertebra cartilage element 8 22986 -UBERON:0013509 lumbar vertebra cartilage element 8 22987 -UBERON:2000637 claustrum cartilage 8 22988 -UBERON:2001060 basidorsal 8 22989 -UBERON:2001172 roofing cartilage 8 22990 -UBERON:2001335 supradorsal 8 22991 -UBERON:2001361 basiventral 8 22992 -UBERON:2001535 median fin cartilage 8 22993 -UBERON:2002091 median caudal cartilage 8 22994 -UBERON:4300036 supraneural cartilage 8 22995 -UBERON:2001869 supraneural 2 cartilage 9 22996 -UBERON:2001870 supraneural 3 cartilage 9 22997 -UBERON:2001889 supraneural 1 cartilage 9 22998 -UBERON:4300263 supraneural 4 cartilage 9 22999 -UBERON:4300264 supraneural 5 cartilage 9 23000 -UBERON:4300265 supraneural 6 cartilage 9 23001 -UBERON:4300266 supraneural 7 cartilage 9 23002 -UBERON:4300267 supraneural 8 cartilage 9 23003 -UBERON:4300268 supraneural 9 cartilage 9 23004 -UBERON:2001537 mesocoracoid cartilage 7 23005 -UBERON:2001538 pelvic radial cartilage 7 23006 -UBERON:2001540 pelvic radial 3 cartilage 8 23007 -UBERON:2001541 pelvic radial 2 cartilage 8 23008 -UBERON:2001542 pelvic radial 1 cartilage 8 23009 -UBERON:4500020 pelvic fin distal radial cartilage 8 23010 -UBERON:2001539 basipterygium cartilage 7 23011 -UBERON:2200271 radial cartilage 7 23012 -UBERON:1700006 paired fin radial cartilage 8 23013 -UBERON:2201415 pelvic fin distal radial cartilage 2 9 23014 -UBERON:2201416 pelvic fin distal radial cartilage 3 9 23015 -UBERON:2201417 pelvic fin distal radial cartilage 1 9 23016 -UBERON:2201586 pectoral fin radial cartilage 9 23017 -UBERON:2201587 pectoral fin proximal radial cartilage 10 23018 -UBERON:1500007 mesopterygium cartilage 11 23019 -UBERON:2001589 propterygium cartilage 11 23020 -UBERON:2202026 pectoral fin proximal radial cartilage 1 11 23021 -UBERON:2202027 pectoral fin proximal radial cartilage 2 11 23022 -UBERON:2202028 pectoral fin proximal radial cartilage 3 11 23023 -UBERON:2202029 pectoral fin proximal radial cartilage 4 11 23024 -UBERON:4400000 metapterygium cartilage 11 23025 -UBERON:2201588 pectoral fin distal radial cartilage 10 23026 -UBERON:2202277 pectoral fin distal radial cartilage 1 11 23027 -UBERON:2202279 pectoral fin distal radial cartilage 2 11 23028 -UBERON:2202280 pectoral fin distal radial cartilage 3 11 23029 -UBERON:4500020 pelvic fin distal radial cartilage 9 23030 -UBERON:2205225 median fin radial cartilage 8 23031 -UBERON:2201671 anal fin radial cartilage 9 23032 -UBERON:2200268 anal fin proximal radial cartilage 10 23033 -UBERON:2200646 anal fin distal radial cartilage 10 23034 -UBERON:2201614 anal fin middle radial cartilage 10 23035 -UBERON:2201672 dorsal fin radial cartilage 9 23036 -UBERON:2200936 dorsal fin distal radial cartilage 10 23037 -UBERON:2205372 dorsal fin distal radial cartilage 1 11 23038 -UBERON:2205373 dorsal fin distal radial cartilage 2 11 23039 -UBERON:2205374 dorsal fin distal radial cartilage 3 11 23040 -UBERON:2205375 dorsal fin distal radial cartilage 4 11 23041 -UBERON:2205376 dorsal fin distal radial cartilage 5 11 23042 -UBERON:2205377 dorsal fin distal radial cartilage 6 11 23043 -UBERON:2205378 dorsal fin distal radial cartilage 7 11 23044 -UBERON:2205379 dorsal fin distal radial cartilage 8 11 23045 -UBERON:2200947 dorsal fin proximal radial cartilage 10 23046 -UBERON:2201818 dorsal fin proximal radial cartilage 1 11 23047 -UBERON:2201819 dorsal fin proximal radial cartilage 2 11 23048 -UBERON:2205380 dorsal fin proximal radial cartilage 3 11 23049 -UBERON:2205381 dorsal fin proximal radial cartilage 4 11 23050 -UBERON:2205382 dorsal fin proximal radial cartilage 5 11 23051 -UBERON:2205383 dorsal fin proximal radial cartilage 6 11 23052 -UBERON:2205384 dorsal fin proximal radial cartilage 7 11 23053 -UBERON:2205385 dorsal fin proximal radial cartilage 8 11 23054 -UBERON:2201613 dorsal fin middle radial cartilage 10 23055 -UBERON:2205226 median fin proximal radial cartilage 9 23056 -UBERON:3000748 suprascapula 7 23057 -UBERON:3000762 epicoracoid 7 23058 -UBERON:3000886 ypsiloid cartilage 7 23059 -UBERON:3010205 postminimus 7 23060 -UBERON:3010240 Nobelian rod 7 23061 -UBERON:3010614 cartilago lateralis of aryngo-tracheal chamber 7 23062 -UBERON:3010728 otic opercular element 7 23063 -UBERON:4000003 permanent cartilage 7 23064 -UBERON:2001958 ceratobranchial 3 bone distal cartilage 8 23065 -UBERON:2001959 ceratobranchial 4 bone proximal cartilage 8 23066 -UBERON:2001960 ceratobranchial 4 bone distal cartilage 8 23067 -UBERON:2001961 ceratobranchial 5 bone distal cartilage 8 23068 -UBERON:4000146 transient cartilaginous element 7 23069 -UBERON:4200068 prepubic element 7 23070 -UBERON:4200135 puboischiadic bar 7 23071 -UBERON:4300016 pelvic cartilage 7 23072 -UBERON:4300018 ventral marginal cartilage 7 23073 -UBERON:4300019 dorsal fin basal cartilage (elasmobranchs) 7 23074 -UBERON:4300020 anal fin basal cartilage 7 23075 -UBERON:4300032 posterior dorsal fin basal cartilage (elasmobranchs) 7 23076 -UBERON:4300033 anterior dorsal fin basal cartilage (elasmobranchs) 7 23077 -UBERON:4300110 lateral ethmoid cartilage 7 23078 -UBERON:4300151 pelvic intercleithral cartilage 7 23079 -UBERON:4300271 interneural spine cartilage 7 23080 -UBERON:4300272 interhaemal spine cartilage 7 23081 -UBERON:0010321 skeletal element of eye region 6 23082 -UBERON:0010296 scleral skeletal element 7 23083 -UBERON:0010289 scleral cartilage 8 23084 -UBERON:4300181 posterior sclerotic cartilage 9 23085 -UBERON:4300182 anterior sclerotic cartilage 9 23086 -UBERON:0010290 scleral ossicle 8 23087 -UBERON:0007804 sclerotic ring 9 23088 -UBERON:0010297 endochondral scleral ossicle 9 23089 -UBERON:2001432 anterior sclerotic bone 10 23090 -UBERON:2001433 posterior sclerotic bone 10 23091 -UBERON:0010298 intramembranous scleral ossicle 9 23092 -UBERON:0010308 os opticus 10 23093 -UBERON:0010311 scleral sesamoid bone 9 23094 -UBERON:0010309 palpebral bone 7 23095 -UBERON:0010310 nictitating membrane lamina 7 23096 -UBERON:0010326 optic pedicel 7 23097 -UBERON:2000127 antorbital 7 23098 -UBERON:2000203 rhinosphenoid 7 23099 -UBERON:2000376 infraorbital 7 23100 -UBERON:2000223 infraorbital 1 8 23101 -UBERON:2000495 infraorbital 5 8 23102 -UBERON:2001407 infraorbital 2 8 23103 -UBERON:2001408 infraorbital 3 8 23104 -UBERON:2001409 infraorbital 4 8 23105 -UBERON:2001674 infraorbital 6 8 23106 -UBERON:2001702 infraorbital 7 8 23107 -UBERON:2001703 infraorbital 8 8 23108 -UBERON:2001704 infraorbital 9 8 23109 -UBERON:2001705 infraorbital 10 8 23110 -UBERON:2001706 infraorbital 11 8 23111 -UBERON:2001707 infraorbital 12 8 23112 -UBERON:2001708 dermosphenotic 8 23113 -UBERON:2000691 supraorbital bone 7 23114 -UBERON:4200244 anterior supraorbital bone 8 23115 -UBERON:0010358 arch of centrum of vertebra 6 23116 -UBERON:0003861 neural arch 7 23117 -UBERON:0000218 vertebral arch of axis 8 23118 -UBERON:2000525 intercalarium 9 23119 -UBERON:0008433 lumbar vertebral arch 8 23120 -UBERON:0008434 cervical vertebral arch 8 23121 -UBERON:0008437 posterior arch of atlas 9 23122 -UBERON:0008435 vertebral arch of sacral segment 8 23123 -UBERON:0008436 thoracic vertebral arch 8 23124 -UBERON:2000429 scaphium 8 23125 -UBERON:2000602 uroneural 8 23126 -UBERON:2002064 uroneural 1 9 23127 -UBERON:2002084 pleurostyle 9 23128 -UBERON:2002109 uroneural 2 9 23129 -UBERON:2002115 uroneural 3 9 23130 -UBERON:2002167 stegural 9 23131 -UBERON:4500002 upper uroneural 9 23132 -UBERON:2001253 neural arch 2 8 23133 -UBERON:2001394 neural arch 3 8 23134 -UBERON:2001395 neural arch 4 8 23135 -UBERON:2001666 rudimentary neural arch 8 23136 -UBERON:2001877 neural arch 1 8 23137 -UBERON:2001884 accessory neural arch 8 23138 -UBERON:2002123 neural arch 5 8 23139 -UBERON:3000796 imbricate neural arch 8 23140 -UBERON:3000797 non-imbricate neural arch 8 23141 -UBERON:0005814 arch of atlas 7 23142 -UBERON:0008437 posterior arch of atlas 8 23143 -UBERON:2000429 scaphium 8 23144 -UBERON:0006063 cartilaginous neural arch 7 23145 -UBERON:0006065 hemal arch 7 23146 -UBERON:0010363 endochondral element 6 23147 -UBERON:0000975 sternum 7 23148 -UBERON:0002205 manubrium of sternum 7 23149 -UBERON:0002513 endochondral bone 7 23150 -UBERON:0001075 bony vertebral centrum 8 23151 -UBERON:2001983 centrum 1 9 23152 -UBERON:2001984 centrum 2 9 23153 -UBERON:2001985 centrum 3 9 23154 -UBERON:2001986 centrum 4 9 23155 -UBERON:2001987 centrum 5 9 23156 -UBERON:2001988 centrum 6 9 23157 -UBERON:2002058 Weberian complex centrum 9 23158 -UBERON:3000711 procoelous 9 23159 -UBERON:3000712 opisthocoelous 9 23160 -UBERON:3000713 epichordal 9 23161 -UBERON:3000714 perichordal 9 23162 -UBERON:3000715 heterocoelous 9 23163 -UBERON:3000716 acoelous 9 23164 -UBERON:3000717 amphicoelous 9 23165 -UBERON:3000718 ectochordal 9 23166 -UBERON:3000719 holochordal 9 23167 -UBERON:3000720 stegochordal 9 23168 -UBERON:3000793 anomocoelous 9 23169 -UBERON:3000794 displasiocoelous 9 23170 -UBERON:4200194 intercentrum 9 23171 -UBERON:4200196 atlas intercentrum 10 23172 -UBERON:4300124 axis intercentrum 10 23173 -UBERON:4200195 pleurocentrum 9 23174 -UBERON:0001273 ilium 8 23175 -UBERON:4200220 iliac ramus 9 23176 -UBERON:0001274 ischium 8 23177 -UBERON:0001275 pubis 8 23178 -UBERON:0001677 sphenoid bone 8 23179 -UBERON:0001679 ethmoid bone 8 23180 -UBERON:0001687 stapes bone 8 23181 -UBERON:0001688 incus bone 8 23182 -UBERON:0001689 malleus bone 8 23183 -UBERON:0001692 basioccipital bone 8 23184 -UBERON:0001693 exoccipital bone 8 23185 -UBERON:0001762 turbinate bone 8 23186 -UBERON:0003973 nasal concha of ethmoid bone 9 23187 -UBERON:0005919 supreme nasal concha 10 23188 -UBERON:0005920 superior nasal concha 10 23189 -UBERON:0005921 middle nasal concha 10 23190 -UBERON:0005922 inferior nasal concha 9 23191 -UBERON:0002208 sternebra 8 23192 -UBERON:0002228 rib 8 23193 -UBERON:0002237 true rib 9 23194 -UBERON:0002238 false rib 9 23195 -UBERON:0002239 floating rib 10 23196 -UBERON:0004601 rib 1 9 23197 -UBERON:0004602 rib 2 9 23198 -UBERON:0004603 rib 3 9 23199 -UBERON:0004604 rib 4 9 23200 -UBERON:0004605 rib 5 9 23201 -UBERON:0004606 rib 6 9 23202 -UBERON:0004607 rib 7 9 23203 -UBERON:0004608 rib 9 9 23204 -UBERON:0004609 rib 10 9 23205 -UBERON:0004610 rib 11 9 23206 -UBERON:0004611 rib 12 9 23207 -UBERON:0010757 rib 8 9 23208 -UBERON:0018144 cervical rib 9 23209 -UBERON:0018145 lumbar rib 9 23210 -UBERON:2001750 rib of vertebra 6 9 23211 -UBERON:2001751 rib of vertebra 5 9 23212 -UBERON:2001878 rib of vertebra 2 9 23213 -UBERON:2001879 rib of vertebra 1 9 23214 -UBERON:2001880 rib of vertebra 3 9 23215 -UBERON:2001881 rib of vertebra 4 9 23216 -UBERON:4100117 presacral rib 9 23217 -UBERON:4100118 trunk rib 9 23218 -UBERON:4300128 sacral rib 9 23219 -UBERON:4300236 rib of vertebra 7 9 23220 -UBERON:4300237 rib of vertebra 8 9 23221 -UBERON:0002412 vertebra 8 23222 -UBERON:0001092 vertebral bone 1 9 23223 -UBERON:0001093 vertebral bone 2 9 23224 -UBERON:0001094 sacral vertebra 9 23225 -UBERON:0004622 sacral vertebra 1 10 23226 -UBERON:0004623 sacral vertebra 2 10 23227 -UBERON:0004624 sacral vertebra 3 10 23228 -UBERON:0004625 sacral vertebra 4 10 23229 -UBERON:0001095 caudal vertebra 9 23230 -UBERON:2000734 preural vertebra 10 23231 -UBERON:2000557 preural 1 vertebra 11 23232 -UBERON:2000586 preural 2 vertebra 11 23233 -UBERON:2002112 preural 3 vertebra 11 23234 -UBERON:2002162 ural vertebra 10 23235 -UBERON:2001579 ural vertebra 2 11 23236 -UBERON:2002163 ural vertebra 1 11 23237 -UBERON:4300105 caudal vertebra 1 10 23238 -UBERON:0002347 thoracic vertebra 9 23239 -UBERON:0004626 thoracic vertebra 1 10 23240 -UBERON:0004627 thoracic vertebra 2 10 23241 -UBERON:0004628 thoracic vertebra 3 10 23242 -UBERON:0004629 thoracic vertebra 4 10 23243 -UBERON:0004630 thoracic vertebra 5 10 23244 -UBERON:0004631 thoracic vertebra 6 10 23245 -UBERON:0004632 thoracic vertebra 7 10 23246 -UBERON:0004633 thoracic vertebra 9 10 23247 -UBERON:0004634 thoracic vertebra 10 10 23248 -UBERON:0004635 thoracic vertebra 11 10 23249 -UBERON:0004636 thoracic vertebra 12 10 23250 -UBERON:0011050 thoracic vertebra 8 10 23251 -UBERON:0002414 lumbar vertebra 9 23252 -UBERON:0004617 lumbar vertebra 1 10 23253 -UBERON:0004618 lumbar vertebra 2 10 23254 -UBERON:0004619 lumbar vertebra 3 10 23255 -UBERON:0004620 lumbar vertebra 4 10 23256 -UBERON:0004621 lumbar vertebra 5 10 23257 -UBERON:0004451 trunk or cervical vertebra 9 23258 -UBERON:0002413 cervical vertebra 10 23259 -UBERON:0004612 mammalian cervical vertebra 3 11 23260 -UBERON:0004613 mammalian cervical vertebra 4 11 23261 -UBERON:0004614 mammalian cervical vertebra 5 11 23262 -UBERON:0004615 mammalian cervical vertebra 6 11 23263 -UBERON:0004616 mammalian cervical vertebra 7 11 23264 -UBERON:0007800 proatlas 11 23265 -UBERON:0011677 trunk vertebra 10 23266 -UBERON:0035083 transverse process-bearing vertebra 9 23267 -UBERON:0035084 non-transverse process-bearing vertebra 9 23268 -UBERON:2002061 predorsal vertebra 9 23269 -UBERON:4300223 precaudal vertebra 9 23270 -UBERON:2001190 Weberian vertebra 10 23271 -UBERON:2001582 non-Weberian precaudal vertebra 10 23272 -UBERON:0002428 limb bone 8 23273 -UBERON:0003464 hindlimb bone 9 23274 -UBERON:0003608 hindlimb long bone 10 23275 -UBERON:0000979 tibia 11 23276 -UBERON:0000981 femur 11 23277 -UBERON:0001446 fibula 11 23278 -UBERON:0001448 metatarsal bone 11 23279 -UBERON:0003650 metatarsal bone of digit 1 12 23280 -UBERON:0003651 metatarsal bone of digit 2 12 23281 -UBERON:0003652 metatarsal bone of digit 3 12 23282 -UBERON:0003653 metatarsal bone of digit 4 12 23283 -UBERON:0003654 metatarsal bone of digit 5 12 23284 -UBERON:0013588 fused metatarsal bones 3 and 4 12 23285 -UBERON:0014763 fused metatarsal bones 2-4 13 23286 -UBERON:4200153 metatarsal bone of digit 6 12 23287 -UBERON:4200157 metatarsal bone of digit 7 12 23288 -UBERON:4200158 metatarsal bone of digit 8 12 23289 -UBERON:0001449 phalanx of pes 11 23290 -UBERON:0003640 pedal digit 1 phalanx 12 23291 -UBERON:0004315 distal phalanx of pedal digit 1 13 23292 -UBERON:0004332 proximal phalanx of pedal digit 1 13 23293 -UBERON:0003641 pedal digit 2 phalanx 12 23294 -UBERON:0004316 distal phalanx of pedal digit 2 13 23295 -UBERON:0004324 middle phalanx of pedal digit 2 13 23296 -UBERON:0004333 proximal phalanx of pedal digit 2 13 23297 -UBERON:0003642 pedal digit 3 phalanx 12 23298 -UBERON:0004317 distal phalanx of pedal digit 3 13 23299 -UBERON:0004325 middle phalanx of pedal digit 3 13 23300 -UBERON:0004334 proximal phalanx of pedal digit 3 13 23301 -UBERON:0003862 pedal digit 4 phalanx 12 23302 -UBERON:0004318 distal phalanx of pedal digit 4 13 23303 -UBERON:0004326 middle phalanx of pedal digit 4 13 23304 -UBERON:0004335 proximal phalanx of pedal digit 4 13 23305 -UBERON:0003863 pedal digit 5 phalanx 12 23306 -UBERON:0004319 distal phalanx of pedal digit 5 13 23307 -UBERON:0004327 middle phalanx of pedal digit 5 13 23308 -UBERON:0004336 proximal phalanx of pedal digit 5 13 23309 -UBERON:0003866 middle phalanx of pes 12 23310 -UBERON:0004324 middle phalanx of pedal digit 2 13 23311 -UBERON:0004325 middle phalanx of pedal digit 3 13 23312 -UBERON:0004326 middle phalanx of pedal digit 4 13 23313 -UBERON:0004327 middle phalanx of pedal digit 5 13 23314 -UBERON:0003867 distal phalanx of pes 12 23315 -UBERON:0004315 distal phalanx of pedal digit 1 13 23316 -UBERON:0004316 distal phalanx of pedal digit 2 13 23317 -UBERON:0004317 distal phalanx of pedal digit 3 13 23318 -UBERON:0004318 distal phalanx of pedal digit 4 13 23319 -UBERON:0004319 distal phalanx of pedal digit 5 13 23320 -UBERON:0003868 proximal phalanx of pes 12 23321 -UBERON:0004332 proximal phalanx of pedal digit 1 13 23322 -UBERON:0004333 proximal phalanx of pedal digit 2 13 23323 -UBERON:0004334 proximal phalanx of pedal digit 3 13 23324 -UBERON:0004335 proximal phalanx of pedal digit 4 13 23325 -UBERON:0004336 proximal phalanx of pedal digit 5 13 23326 -UBERON:4100009 pedal digit 7 phalanx 12 23327 -UBERON:0012269 equine hindlimb splint bone 11 23328 -UBERON:0005893 leg bone 10 23329 -UBERON:0002446 patella 11 23330 -UBERON:0003826 upper leg bone 11 23331 -UBERON:0000981 femur 12 23332 -UBERON:0004251 hindlimb zeugopod bone 11 23333 -UBERON:0000979 tibia 12 23334 -UBERON:0001446 fibula 12 23335 -UBERON:0003467 sesamoid bone of gastrocnemius 12 23336 -UBERON:0006714 tibiofibula 12 23337 -UBERON:0010907 parafibula 12 23338 -UBERON:0012104 sesamoid bone of the peroneus longus muscle 12 23339 -UBERON:0005899 pes bone 10 23340 -UBERON:0001447 tarsal bone 11 23341 -UBERON:0001451 navicular bone of pes 12 23342 -UBERON:0006836 medial tibial tarsal bone 12 23343 -UBERON:0010721 distal tarsal bone 12 23344 -UBERON:0001452 distal tarsal bone 1 13 23345 -UBERON:0001453 distal tarsal bone 2 13 23346 -UBERON:0001454 distal tarsal bone 3 13 23347 -UBERON:0001455 cuboid bone 13 23348 -UBERON:0010723 os vesalianum pedis 13 23349 -UBERON:0010737 distal tarsal bone 4 13 23350 -UBERON:0010738 distal tarsal bone 5 13 23351 -UBERON:0012289 fused tarsal bones 2 and 3 13 23352 -UBERON:0013649 fused tarsal bones 1 and 2 13 23353 -UBERON:3001002 basale commune (tarsal) 13 23354 -UBERON:0011679 proximal tarsal bone 12 23355 -UBERON:0001450 calcaneus 13 23356 -UBERON:0002395 talus 13 23357 -UBERON:0011678 hindlimb intermedium bone 13 23358 -UBERON:0012126 fibulare 13 23359 -UBERON:0012288 centroquartal bone 12 23360 -UBERON:3010045 centrale 1 12 23361 -UBERON:3010073 centrale 2 12 23362 -UBERON:4200011 pedal centrale 12 23363 -UBERON:4200152 intertarsale sesamoid 12 23364 -UBERON:0008000 sesamoid bone of pes 11 23365 -UBERON:0007990 proximal sesamoid bone of pes 12 23366 -UBERON:4200152 intertarsale sesamoid 12 23367 -UBERON:0008195 tarsometatarsus 11 23368 -UBERON:0010725 accessory navicular bone 11 23369 -UBERON:0012359 pedal digitopodium bone 11 23370 -UBERON:0001448 metatarsal bone 12 23371 -UBERON:0003650 metatarsal bone of digit 1 13 23372 -UBERON:0003651 metatarsal bone of digit 2 13 23373 -UBERON:0003652 metatarsal bone of digit 3 13 23374 -UBERON:0003653 metatarsal bone of digit 4 13 23375 -UBERON:0003654 metatarsal bone of digit 5 13 23376 -UBERON:0013588 fused metatarsal bones 3 and 4 13 23377 -UBERON:0014763 fused metatarsal bones 2-4 14 23378 -UBERON:4200153 metatarsal bone of digit 6 13 23379 -UBERON:4200157 metatarsal bone of digit 7 13 23380 -UBERON:4200158 metatarsal bone of digit 8 13 23381 -UBERON:0004248 pedal digit bone 12 23382 -UBERON:0001449 phalanx of pes 13 23383 -UBERON:0003640 pedal digit 1 phalanx 14 23384 -UBERON:0004315 distal phalanx of pedal digit 1 15 23385 -UBERON:0004332 proximal phalanx of pedal digit 1 15 23386 -UBERON:0003641 pedal digit 2 phalanx 14 23387 -UBERON:0004316 distal phalanx of pedal digit 2 15 23388 -UBERON:0004324 middle phalanx of pedal digit 2 15 23389 -UBERON:0004333 proximal phalanx of pedal digit 2 15 23390 -UBERON:0003642 pedal digit 3 phalanx 14 23391 -UBERON:0004317 distal phalanx of pedal digit 3 15 23392 -UBERON:0004325 middle phalanx of pedal digit 3 15 23393 -UBERON:0004334 proximal phalanx of pedal digit 3 15 23394 -UBERON:0003862 pedal digit 4 phalanx 14 23395 -UBERON:0004318 distal phalanx of pedal digit 4 15 23396 -UBERON:0004326 middle phalanx of pedal digit 4 15 23397 -UBERON:0004335 proximal phalanx of pedal digit 4 15 23398 -UBERON:0003863 pedal digit 5 phalanx 14 23399 -UBERON:0004319 distal phalanx of pedal digit 5 15 23400 -UBERON:0004327 middle phalanx of pedal digit 5 15 23401 -UBERON:0004336 proximal phalanx of pedal digit 5 15 23402 -UBERON:0003866 middle phalanx of pes 14 23403 -UBERON:0004324 middle phalanx of pedal digit 2 15 23404 -UBERON:0004325 middle phalanx of pedal digit 3 15 23405 -UBERON:0004326 middle phalanx of pedal digit 4 15 23406 -UBERON:0004327 middle phalanx of pedal digit 5 15 23407 -UBERON:0003867 distal phalanx of pes 14 23408 -UBERON:0004315 distal phalanx of pedal digit 1 15 23409 -UBERON:0004316 distal phalanx of pedal digit 2 15 23410 -UBERON:0004317 distal phalanx of pedal digit 3 15 23411 -UBERON:0004318 distal phalanx of pedal digit 4 15 23412 -UBERON:0004319 distal phalanx of pedal digit 5 15 23413 -UBERON:0003868 proximal phalanx of pes 14 23414 -UBERON:0004332 proximal phalanx of pedal digit 1 15 23415 -UBERON:0004333 proximal phalanx of pedal digit 2 15 23416 -UBERON:0004334 proximal phalanx of pedal digit 3 15 23417 -UBERON:0004335 proximal phalanx of pedal digit 4 15 23418 -UBERON:0004336 proximal phalanx of pedal digit 5 15 23419 -UBERON:4100009 pedal digit 7 phalanx 14 23420 -UBERON:0007990 proximal sesamoid bone of pes 13 23421 -UBERON:3000931 intercalary element of hind digit 13 23422 -UBERON:3010675 bony nodule of terminal phalanx of hind digit 13 23423 -UBERON:0012269 equine hindlimb splint bone 12 23424 -UBERON:0008194 tibiotarsus 10 23425 -UBERON:0003606 limb long bone 9 23426 -UBERON:0003221 phalanx 10 23427 -UBERON:0001436 phalanx of manus 11 23428 -UBERON:0002234 proximal phalanx of manus 12 23429 -UBERON:0004328 proximal phalanx of manual digit 2 13 23430 -UBERON:0004329 proximal phalanx of manual digit 3 13 23431 -UBERON:0004330 proximal phalanx of manual digit 4 13 23432 -UBERON:0004331 proximal phalanx of manual digit 5 13 23433 -UBERON:0004338 proximal phalanx of manual digit 1 13 23434 -UBERON:0003620 manual digit 1 phalanx 12 23435 -UBERON:0004337 distal phalanx of manual digit 1 13 23436 -UBERON:0004338 proximal phalanx of manual digit 1 13 23437 -UBERON:4200219 middle phalanx of manual digit 1 13 23438 -UBERON:0003636 manual digit 2 phalanx 12 23439 -UBERON:0004311 distal phalanx of manual digit 2 13 23440 -UBERON:0004320 middle phalanx of manual digit 2 13 23441 -UBERON:0004328 proximal phalanx of manual digit 2 13 23442 -UBERON:0003637 manual digit 3 phalanx 12 23443 -UBERON:0004312 distal phalanx of manual digit 3 13 23444 -UBERON:0004321 middle phalanx of manual digit 3 13 23445 -UBERON:0004329 proximal phalanx of manual digit 3 13 23446 -UBERON:0003638 manual digit 4 phalanx 12 23447 -UBERON:0004313 distal phalanx of manual digit 4 13 23448 -UBERON:0004322 middle phalanx of manual digit 4 13 23449 -UBERON:0004330 proximal phalanx of manual digit 4 13 23450 -UBERON:0003639 manual digit 5 phalanx 12 23451 -UBERON:0004314 distal phalanx of manual digit 5 13 23452 -UBERON:0004323 middle phalanx of manual digit 5 13 23453 -UBERON:0004331 proximal phalanx of manual digit 5 13 23454 -UBERON:0003864 middle phalanx of manus 12 23455 -UBERON:0004320 middle phalanx of manual digit 2 13 23456 -UBERON:0004321 middle phalanx of manual digit 3 13 23457 -UBERON:0004322 middle phalanx of manual digit 4 13 23458 -UBERON:0004323 middle phalanx of manual digit 5 13 23459 -UBERON:4200219 middle phalanx of manual digit 1 13 23460 -UBERON:0003865 distal phalanx of manus 12 23461 -UBERON:0004311 distal phalanx of manual digit 2 13 23462 -UBERON:0004312 distal phalanx of manual digit 3 13 23463 -UBERON:0004313 distal phalanx of manual digit 4 13 23464 -UBERON:0004314 distal phalanx of manual digit 5 13 23465 -UBERON:0004337 distal phalanx of manual digit 1 13 23466 -UBERON:0001449 phalanx of pes 11 23467 -UBERON:0003640 pedal digit 1 phalanx 12 23468 -UBERON:0004315 distal phalanx of pedal digit 1 13 23469 -UBERON:0004332 proximal phalanx of pedal digit 1 13 23470 -UBERON:0003641 pedal digit 2 phalanx 12 23471 -UBERON:0004316 distal phalanx of pedal digit 2 13 23472 -UBERON:0004324 middle phalanx of pedal digit 2 13 23473 -UBERON:0004333 proximal phalanx of pedal digit 2 13 23474 -UBERON:0003642 pedal digit 3 phalanx 12 23475 -UBERON:0004317 distal phalanx of pedal digit 3 13 23476 -UBERON:0004325 middle phalanx of pedal digit 3 13 23477 -UBERON:0004334 proximal phalanx of pedal digit 3 13 23478 -UBERON:0003862 pedal digit 4 phalanx 12 23479 -UBERON:0004318 distal phalanx of pedal digit 4 13 23480 -UBERON:0004326 middle phalanx of pedal digit 4 13 23481 -UBERON:0004335 proximal phalanx of pedal digit 4 13 23482 -UBERON:0003863 pedal digit 5 phalanx 12 23483 -UBERON:0004319 distal phalanx of pedal digit 5 13 23484 -UBERON:0004327 middle phalanx of pedal digit 5 13 23485 -UBERON:0004336 proximal phalanx of pedal digit 5 13 23486 -UBERON:0003866 middle phalanx of pes 12 23487 -UBERON:0004324 middle phalanx of pedal digit 2 13 23488 -UBERON:0004325 middle phalanx of pedal digit 3 13 23489 -UBERON:0004326 middle phalanx of pedal digit 4 13 23490 -UBERON:0004327 middle phalanx of pedal digit 5 13 23491 -UBERON:0003867 distal phalanx of pes 12 23492 -UBERON:0004315 distal phalanx of pedal digit 1 13 23493 -UBERON:0004316 distal phalanx of pedal digit 2 13 23494 -UBERON:0004317 distal phalanx of pedal digit 3 13 23495 -UBERON:0004318 distal phalanx of pedal digit 4 13 23496 -UBERON:0004319 distal phalanx of pedal digit 5 13 23497 -UBERON:0003868 proximal phalanx of pes 12 23498 -UBERON:0004332 proximal phalanx of pedal digit 1 13 23499 -UBERON:0004333 proximal phalanx of pedal digit 2 13 23500 -UBERON:0004334 proximal phalanx of pedal digit 3 13 23501 -UBERON:0004335 proximal phalanx of pedal digit 4 13 23502 -UBERON:0004336 proximal phalanx of pedal digit 5 13 23503 -UBERON:4100009 pedal digit 7 phalanx 12 23504 -UBERON:0004300 distal phalanx 11 23505 -UBERON:0003865 distal phalanx of manus 12 23506 -UBERON:0004311 distal phalanx of manual digit 2 13 23507 -UBERON:0004312 distal phalanx of manual digit 3 13 23508 -UBERON:0004313 distal phalanx of manual digit 4 13 23509 -UBERON:0004314 distal phalanx of manual digit 5 13 23510 -UBERON:0004337 distal phalanx of manual digit 1 13 23511 -UBERON:0003867 distal phalanx of pes 12 23512 -UBERON:0004315 distal phalanx of pedal digit 1 13 23513 -UBERON:0004316 distal phalanx of pedal digit 2 13 23514 -UBERON:0004317 distal phalanx of pedal digit 3 13 23515 -UBERON:0004318 distal phalanx of pedal digit 4 13 23516 -UBERON:0004319 distal phalanx of pedal digit 5 13 23517 -UBERON:0014483 distal phalanx of digit 1 12 23518 -UBERON:0004315 distal phalanx of pedal digit 1 13 23519 -UBERON:0004337 distal phalanx of manual digit 1 13 23520 -UBERON:0014484 distal phalanx of digit 2 12 23521 -UBERON:0004311 distal phalanx of manual digit 2 13 23522 -UBERON:0004316 distal phalanx of pedal digit 2 13 23523 -UBERON:0014485 distal phalanx of digit 3 12 23524 -UBERON:0004312 distal phalanx of manual digit 3 13 23525 -UBERON:0004317 distal phalanx of pedal digit 3 13 23526 -UBERON:0014486 distal phalanx of digit 4 12 23527 -UBERON:0004313 distal phalanx of manual digit 4 13 23528 -UBERON:0004318 distal phalanx of pedal digit 4 13 23529 -UBERON:0014487 distal phalanx of digit 5 12 23530 -UBERON:0004314 distal phalanx of manual digit 5 13 23531 -UBERON:0004319 distal phalanx of pedal digit 5 13 23532 -UBERON:3010746 T-shaped terminal phalanx 12 23533 -UBERON:0004301 middle phalanx 11 23534 -UBERON:0003864 middle phalanx of manus 12 23535 -UBERON:0004320 middle phalanx of manual digit 2 13 23536 -UBERON:0004321 middle phalanx of manual digit 3 13 23537 -UBERON:0004322 middle phalanx of manual digit 4 13 23538 -UBERON:0004323 middle phalanx of manual digit 5 13 23539 -UBERON:4200219 middle phalanx of manual digit 1 13 23540 -UBERON:0003866 middle phalanx of pes 12 23541 -UBERON:0004324 middle phalanx of pedal digit 2 13 23542 -UBERON:0004325 middle phalanx of pedal digit 3 13 23543 -UBERON:0004326 middle phalanx of pedal digit 4 13 23544 -UBERON:0004327 middle phalanx of pedal digit 5 13 23545 -UBERON:0014488 middle phalanx of digit 2 12 23546 -UBERON:0004320 middle phalanx of manual digit 2 13 23547 -UBERON:0004324 middle phalanx of pedal digit 2 13 23548 -UBERON:0014489 middle phalanx of digit 3 12 23549 -UBERON:0004321 middle phalanx of manual digit 3 13 23550 -UBERON:0004325 middle phalanx of pedal digit 3 13 23551 -UBERON:0009555 short pastern bone 13 23552 -UBERON:0014490 middle phalanx of digit 4 12 23553 -UBERON:0004322 middle phalanx of manual digit 4 13 23554 -UBERON:0004326 middle phalanx of pedal digit 4 13 23555 -UBERON:0014491 middle phalanx of digit 5 12 23556 -UBERON:0004323 middle phalanx of manual digit 5 13 23557 -UBERON:0004327 middle phalanx of pedal digit 5 13 23558 -UBERON:0004302 proximal phalanx 11 23559 -UBERON:0002234 proximal phalanx of manus 12 23560 -UBERON:0004328 proximal phalanx of manual digit 2 13 23561 -UBERON:0004329 proximal phalanx of manual digit 3 13 23562 -UBERON:0004330 proximal phalanx of manual digit 4 13 23563 -UBERON:0004331 proximal phalanx of manual digit 5 13 23564 -UBERON:0004338 proximal phalanx of manual digit 1 13 23565 -UBERON:0003868 proximal phalanx of pes 12 23566 -UBERON:0004332 proximal phalanx of pedal digit 1 13 23567 -UBERON:0004333 proximal phalanx of pedal digit 2 13 23568 -UBERON:0004334 proximal phalanx of pedal digit 3 13 23569 -UBERON:0004335 proximal phalanx of pedal digit 4 13 23570 -UBERON:0004336 proximal phalanx of pedal digit 5 13 23571 -UBERON:0014501 proximal phalanx of digit 1 12 23572 -UBERON:0004332 proximal phalanx of pedal digit 1 13 23573 -UBERON:0004338 proximal phalanx of manual digit 1 13 23574 -UBERON:0014502 proximal phalanx of digit 2 12 23575 -UBERON:0004328 proximal phalanx of manual digit 2 13 23576 -UBERON:0004333 proximal phalanx of pedal digit 2 13 23577 -UBERON:0014503 proximal phalanx of digit 3 12 23578 -UBERON:0004329 proximal phalanx of manual digit 3 13 23579 -UBERON:0004334 proximal phalanx of pedal digit 3 13 23580 -UBERON:0009556 long pastern bone 13 23581 -UBERON:0014504 proximal phalanx of digit 4 12 23582 -UBERON:0004330 proximal phalanx of manual digit 4 13 23583 -UBERON:0004335 proximal phalanx of pedal digit 4 13 23584 -UBERON:0014505 proximal phalanx of digit 5 12 23585 -UBERON:0004331 proximal phalanx of manual digit 5 13 23586 -UBERON:0004336 proximal phalanx of pedal digit 5 13 23587 -UBERON:0009558 pastern bone 11 23588 -UBERON:0009555 short pastern bone 12 23589 -UBERON:0009556 long pastern bone 12 23590 -UBERON:0018266 third phalanx 11 23591 -UBERON:0018322 fourth phalanx 11 23592 -UBERON:4100005 second phalanx 11 23593 -UBERON:0003607 forelimb long bone 10 23594 -UBERON:0000976 humerus 11 23595 -UBERON:0001423 radius bone 11 23596 -UBERON:0001424 ulna 11 23597 -UBERON:0001436 phalanx of manus 11 23598 -UBERON:0002234 proximal phalanx of manus 12 23599 -UBERON:0004328 proximal phalanx of manual digit 2 13 23600 -UBERON:0004329 proximal phalanx of manual digit 3 13 23601 -UBERON:0004330 proximal phalanx of manual digit 4 13 23602 -UBERON:0004331 proximal phalanx of manual digit 5 13 23603 -UBERON:0004338 proximal phalanx of manual digit 1 13 23604 -UBERON:0003620 manual digit 1 phalanx 12 23605 -UBERON:0004337 distal phalanx of manual digit 1 13 23606 -UBERON:0004338 proximal phalanx of manual digit 1 13 23607 -UBERON:4200219 middle phalanx of manual digit 1 13 23608 -UBERON:0003636 manual digit 2 phalanx 12 23609 -UBERON:0004311 distal phalanx of manual digit 2 13 23610 -UBERON:0004320 middle phalanx of manual digit 2 13 23611 -UBERON:0004328 proximal phalanx of manual digit 2 13 23612 -UBERON:0003637 manual digit 3 phalanx 12 23613 -UBERON:0004312 distal phalanx of manual digit 3 13 23614 -UBERON:0004321 middle phalanx of manual digit 3 13 23615 -UBERON:0004329 proximal phalanx of manual digit 3 13 23616 -UBERON:0003638 manual digit 4 phalanx 12 23617 -UBERON:0004313 distal phalanx of manual digit 4 13 23618 -UBERON:0004322 middle phalanx of manual digit 4 13 23619 -UBERON:0004330 proximal phalanx of manual digit 4 13 23620 -UBERON:0003639 manual digit 5 phalanx 12 23621 -UBERON:0004314 distal phalanx of manual digit 5 13 23622 -UBERON:0004323 middle phalanx of manual digit 5 13 23623 -UBERON:0004331 proximal phalanx of manual digit 5 13 23624 -UBERON:0003864 middle phalanx of manus 12 23625 -UBERON:0004320 middle phalanx of manual digit 2 13 23626 -UBERON:0004321 middle phalanx of manual digit 3 13 23627 -UBERON:0004322 middle phalanx of manual digit 4 13 23628 -UBERON:0004323 middle phalanx of manual digit 5 13 23629 -UBERON:4200219 middle phalanx of manual digit 1 13 23630 -UBERON:0003865 distal phalanx of manus 12 23631 -UBERON:0004311 distal phalanx of manual digit 2 13 23632 -UBERON:0004312 distal phalanx of manual digit 3 13 23633 -UBERON:0004313 distal phalanx of manual digit 4 13 23634 -UBERON:0004314 distal phalanx of manual digit 5 13 23635 -UBERON:0004337 distal phalanx of manual digit 1 13 23636 -UBERON:0002374 metacarpal bone 11 23637 -UBERON:0003645 metacarpal bone of digit 1 12 23638 -UBERON:0003646 metacarpal bone of digit 2 12 23639 -UBERON:0003647 metacarpal bone of digit 3 12 23640 -UBERON:0003648 metacarpal bone of digit 4 12 23641 -UBERON:0003649 metacarpal bone of digit 5 12 23642 -UBERON:0013587 fused metacarpal bones 3 and 4 12 23643 -UBERON:0012268 equine forelimb splint bone 11 23644 -UBERON:0003608 hindlimb long bone 10 23645 -UBERON:0000979 tibia 11 23646 -UBERON:0000981 femur 11 23647 -UBERON:0001446 fibula 11 23648 -UBERON:0001448 metatarsal bone 11 23649 -UBERON:0003650 metatarsal bone of digit 1 12 23650 -UBERON:0003651 metatarsal bone of digit 2 12 23651 -UBERON:0003652 metatarsal bone of digit 3 12 23652 -UBERON:0003653 metatarsal bone of digit 4 12 23653 -UBERON:0003654 metatarsal bone of digit 5 12 23654 -UBERON:0013588 fused metatarsal bones 3 and 4 12 23655 -UBERON:0014763 fused metatarsal bones 2-4 13 23656 -UBERON:4200153 metatarsal bone of digit 6 12 23657 -UBERON:4200157 metatarsal bone of digit 7 12 23658 -UBERON:4200158 metatarsal bone of digit 8 12 23659 -UBERON:0001449 phalanx of pes 11 23660 -UBERON:0003640 pedal digit 1 phalanx 12 23661 -UBERON:0004315 distal phalanx of pedal digit 1 13 23662 -UBERON:0004332 proximal phalanx of pedal digit 1 13 23663 -UBERON:0003641 pedal digit 2 phalanx 12 23664 -UBERON:0004316 distal phalanx of pedal digit 2 13 23665 -UBERON:0004324 middle phalanx of pedal digit 2 13 23666 -UBERON:0004333 proximal phalanx of pedal digit 2 13 23667 -UBERON:0003642 pedal digit 3 phalanx 12 23668 -UBERON:0004317 distal phalanx of pedal digit 3 13 23669 -UBERON:0004325 middle phalanx of pedal digit 3 13 23670 -UBERON:0004334 proximal phalanx of pedal digit 3 13 23671 -UBERON:0003862 pedal digit 4 phalanx 12 23672 -UBERON:0004318 distal phalanx of pedal digit 4 13 23673 -UBERON:0004326 middle phalanx of pedal digit 4 13 23674 -UBERON:0004335 proximal phalanx of pedal digit 4 13 23675 -UBERON:0003863 pedal digit 5 phalanx 12 23676 -UBERON:0004319 distal phalanx of pedal digit 5 13 23677 -UBERON:0004327 middle phalanx of pedal digit 5 13 23678 -UBERON:0004336 proximal phalanx of pedal digit 5 13 23679 -UBERON:0003866 middle phalanx of pes 12 23680 -UBERON:0004324 middle phalanx of pedal digit 2 13 23681 -UBERON:0004325 middle phalanx of pedal digit 3 13 23682 -UBERON:0004326 middle phalanx of pedal digit 4 13 23683 -UBERON:0004327 middle phalanx of pedal digit 5 13 23684 -UBERON:0003867 distal phalanx of pes 12 23685 -UBERON:0004315 distal phalanx of pedal digit 1 13 23686 -UBERON:0004316 distal phalanx of pedal digit 2 13 23687 -UBERON:0004317 distal phalanx of pedal digit 3 13 23688 -UBERON:0004318 distal phalanx of pedal digit 4 13 23689 -UBERON:0004319 distal phalanx of pedal digit 5 13 23690 -UBERON:0003868 proximal phalanx of pes 12 23691 -UBERON:0004332 proximal phalanx of pedal digit 1 13 23692 -UBERON:0004333 proximal phalanx of pedal digit 2 13 23693 -UBERON:0004334 proximal phalanx of pedal digit 3 13 23694 -UBERON:0004335 proximal phalanx of pedal digit 4 13 23695 -UBERON:0004336 proximal phalanx of pedal digit 5 13 23696 -UBERON:4100009 pedal digit 7 phalanx 12 23697 -UBERON:0012269 equine hindlimb splint bone 11 23698 -UBERON:0003821 metapodium bone 10 23699 -UBERON:0001448 metatarsal bone 11 23700 -UBERON:0003650 metatarsal bone of digit 1 12 23701 -UBERON:0003651 metatarsal bone of digit 2 12 23702 -UBERON:0003652 metatarsal bone of digit 3 12 23703 -UBERON:0003653 metatarsal bone of digit 4 12 23704 -UBERON:0003654 metatarsal bone of digit 5 12 23705 -UBERON:0013588 fused metatarsal bones 3 and 4 12 23706 -UBERON:0014763 fused metatarsal bones 2-4 13 23707 -UBERON:4200153 metatarsal bone of digit 6 12 23708 -UBERON:4200157 metatarsal bone of digit 7 12 23709 -UBERON:4200158 metatarsal bone of digit 8 12 23710 -UBERON:0002374 metacarpal bone 11 23711 -UBERON:0003645 metacarpal bone of digit 1 12 23712 -UBERON:0003646 metacarpal bone of digit 2 12 23713 -UBERON:0003647 metacarpal bone of digit 3 12 23714 -UBERON:0003648 metacarpal bone of digit 4 12 23715 -UBERON:0003649 metacarpal bone of digit 5 12 23716 -UBERON:0013587 fused metacarpal bones 3 and 4 12 23717 -UBERON:0012267 equine splint bone 11 23718 -UBERON:0012268 equine forelimb splint bone 12 23719 -UBERON:0012269 equine hindlimb splint bone 12 23720 -UBERON:0013581 metapodium bone 1 11 23721 -UBERON:0003645 metacarpal bone of digit 1 12 23722 -UBERON:0003650 metatarsal bone of digit 1 12 23723 -UBERON:0013582 metapodium bone 2 11 23724 -UBERON:0003646 metacarpal bone of digit 2 12 23725 -UBERON:0003651 metatarsal bone of digit 2 12 23726 -UBERON:0013583 metapodium bone 3 11 23727 -UBERON:0003647 metacarpal bone of digit 3 12 23728 -UBERON:0003652 metatarsal bone of digit 3 12 23729 -UBERON:0013584 metapodium bone 4 11 23730 -UBERON:0003648 metacarpal bone of digit 4 12 23731 -UBERON:0003653 metatarsal bone of digit 4 12 23732 -UBERON:0013585 metapodium bone 5 11 23733 -UBERON:0003649 metacarpal bone of digit 5 12 23734 -UBERON:0003654 metatarsal bone of digit 5 12 23735 -UBERON:0013586 fused metapodial bones 3 and 4 11 23736 -UBERON:0013587 fused metacarpal bones 3 and 4 12 23737 -UBERON:0013588 fused metatarsal bones 3 and 4 12 23738 -UBERON:0014763 fused metatarsal bones 2-4 13 23739 -UBERON:0014762 fused metapodial bones 2-4 12 23740 -UBERON:0014763 fused metatarsal bones 2-4 13 23741 -UBERON:4200154 metapodium bone 6 11 23742 -UBERON:4200153 metatarsal bone of digit 6 12 23743 -UBERON:4200155 metapodium bone 7 11 23744 -UBERON:4200157 metatarsal bone of digit 7 12 23745 -UBERON:4200156 metapodium bone 8 11 23746 -UBERON:4200158 metatarsal bone of digit 8 12 23747 -UBERON:0008962 forelimb bone 9 23748 -UBERON:0003460 arm bone 10 23749 -UBERON:0003466 forelimb zeugopod bone 11 23750 -UBERON:0001423 radius bone 12 23751 -UBERON:0001424 ulna 12 23752 -UBERON:0006715 radio-ulna 12 23753 -UBERON:0007993 ulnar sesamoid bone 12 23754 -UBERON:0004250 upper arm bone 11 23755 -UBERON:0000976 humerus 12 23756 -UBERON:0003607 forelimb long bone 10 23757 -UBERON:0000976 humerus 11 23758 -UBERON:0001423 radius bone 11 23759 -UBERON:0001424 ulna 11 23760 -UBERON:0001436 phalanx of manus 11 23761 -UBERON:0002234 proximal phalanx of manus 12 23762 -UBERON:0004328 proximal phalanx of manual digit 2 13 23763 -UBERON:0004329 proximal phalanx of manual digit 3 13 23764 -UBERON:0004330 proximal phalanx of manual digit 4 13 23765 -UBERON:0004331 proximal phalanx of manual digit 5 13 23766 -UBERON:0004338 proximal phalanx of manual digit 1 13 23767 -UBERON:0003620 manual digit 1 phalanx 12 23768 -UBERON:0004337 distal phalanx of manual digit 1 13 23769 -UBERON:0004338 proximal phalanx of manual digit 1 13 23770 -UBERON:4200219 middle phalanx of manual digit 1 13 23771 -UBERON:0003636 manual digit 2 phalanx 12 23772 -UBERON:0004311 distal phalanx of manual digit 2 13 23773 -UBERON:0004320 middle phalanx of manual digit 2 13 23774 -UBERON:0004328 proximal phalanx of manual digit 2 13 23775 -UBERON:0003637 manual digit 3 phalanx 12 23776 -UBERON:0004312 distal phalanx of manual digit 3 13 23777 -UBERON:0004321 middle phalanx of manual digit 3 13 23778 -UBERON:0004329 proximal phalanx of manual digit 3 13 23779 -UBERON:0003638 manual digit 4 phalanx 12 23780 -UBERON:0004313 distal phalanx of manual digit 4 13 23781 -UBERON:0004322 middle phalanx of manual digit 4 13 23782 -UBERON:0004330 proximal phalanx of manual digit 4 13 23783 -UBERON:0003639 manual digit 5 phalanx 12 23784 -UBERON:0004314 distal phalanx of manual digit 5 13 23785 -UBERON:0004323 middle phalanx of manual digit 5 13 23786 -UBERON:0004331 proximal phalanx of manual digit 5 13 23787 -UBERON:0003864 middle phalanx of manus 12 23788 -UBERON:0004320 middle phalanx of manual digit 2 13 23789 -UBERON:0004321 middle phalanx of manual digit 3 13 23790 -UBERON:0004322 middle phalanx of manual digit 4 13 23791 -UBERON:0004323 middle phalanx of manual digit 5 13 23792 -UBERON:4200219 middle phalanx of manual digit 1 13 23793 -UBERON:0003865 distal phalanx of manus 12 23794 -UBERON:0004311 distal phalanx of manual digit 2 13 23795 -UBERON:0004312 distal phalanx of manual digit 3 13 23796 -UBERON:0004313 distal phalanx of manual digit 4 13 23797 -UBERON:0004314 distal phalanx of manual digit 5 13 23798 -UBERON:0004337 distal phalanx of manual digit 1 13 23799 -UBERON:0002374 metacarpal bone 11 23800 -UBERON:0003645 metacarpal bone of digit 1 12 23801 -UBERON:0003646 metacarpal bone of digit 2 12 23802 -UBERON:0003647 metacarpal bone of digit 3 12 23803 -UBERON:0003648 metacarpal bone of digit 4 12 23804 -UBERON:0003649 metacarpal bone of digit 5 12 23805 -UBERON:0013587 fused metacarpal bones 3 and 4 12 23806 -UBERON:0012268 equine forelimb splint bone 11 23807 -UBERON:0005897 manus bone 10 23808 -UBERON:0001435 carpal bone 11 23809 -UBERON:0001480 proximal carpal bone 12 23810 -UBERON:0001427 radiale 13 23811 -UBERON:0001428 intermedium 13 23812 -UBERON:0001429 pisiform 13 23813 -UBERON:0002445 ulnare 13 23814 -UBERON:0007960 scapholunate 13 23815 -UBERON:0012124 avian scapholunar bone 13 23816 -UBERON:0001481 distal carpal bone 12 23817 -UBERON:0001430 distal carpal bone 1 13 23818 -UBERON:0001431 distal carpal bone 2 13 23819 -UBERON:0001432 distal carpal bone 3 13 23820 -UBERON:0001433 distal carpal bone 4 13 23821 -UBERON:0010726 os vesalianum manus 13 23822 -UBERON:0010739 distal carpal bone 5 13 23823 -UBERON:0012290 fused carpal bones 2 and 3 13 23824 -UBERON:3000965 basale commune (carpal) 13 23825 -UBERON:0007958 central carpal bone 12 23826 -UBERON:0007959 falciform carpal bone 12 23827 -UBERON:0008257 radial sesamoid 12 23828 -UBERON:3010060 centrale (fore) 12 23829 -UBERON:4200180 semilunate carpal 12 23830 -UBERON:0007997 sesamoid bone of manus 11 23831 -UBERON:0001429 pisiform 12 23832 -UBERON:0007991 proximal sesamoid bone of manus 12 23833 -UBERON:0008257 radial sesamoid 12 23834 -UBERON:0011205 carpometacarpus 11 23835 -UBERON:0012358 manual digitopodium bone 11 23836 -UBERON:0002374 metacarpal bone 12 23837 -UBERON:0003645 metacarpal bone of digit 1 13 23838 -UBERON:0003646 metacarpal bone of digit 2 13 23839 -UBERON:0003647 metacarpal bone of digit 3 13 23840 -UBERON:0003648 metacarpal bone of digit 4 13 23841 -UBERON:0003649 metacarpal bone of digit 5 13 23842 -UBERON:0013587 fused metacarpal bones 3 and 4 13 23843 -UBERON:0004249 manual digit bone 12 23844 -UBERON:0001436 phalanx of manus 13 23845 -UBERON:0002234 proximal phalanx of manus 14 23846 -UBERON:0004328 proximal phalanx of manual digit 2 15 23847 -UBERON:0004329 proximal phalanx of manual digit 3 15 23848 -UBERON:0004330 proximal phalanx of manual digit 4 15 23849 -UBERON:0004331 proximal phalanx of manual digit 5 15 23850 -UBERON:0004338 proximal phalanx of manual digit 1 15 23851 -UBERON:0003620 manual digit 1 phalanx 14 23852 -UBERON:0004337 distal phalanx of manual digit 1 15 23853 -UBERON:0004338 proximal phalanx of manual digit 1 15 23854 -UBERON:4200219 middle phalanx of manual digit 1 15 23855 -UBERON:0003636 manual digit 2 phalanx 14 23856 -UBERON:0004311 distal phalanx of manual digit 2 15 23857 -UBERON:0004320 middle phalanx of manual digit 2 15 23858 -UBERON:0004328 proximal phalanx of manual digit 2 15 23859 -UBERON:0003637 manual digit 3 phalanx 14 23860 -UBERON:0004312 distal phalanx of manual digit 3 15 23861 -UBERON:0004321 middle phalanx of manual digit 3 15 23862 -UBERON:0004329 proximal phalanx of manual digit 3 15 23863 -UBERON:0003638 manual digit 4 phalanx 14 23864 -UBERON:0004313 distal phalanx of manual digit 4 15 23865 -UBERON:0004322 middle phalanx of manual digit 4 15 23866 -UBERON:0004330 proximal phalanx of manual digit 4 15 23867 -UBERON:0003639 manual digit 5 phalanx 14 23868 -UBERON:0004314 distal phalanx of manual digit 5 15 23869 -UBERON:0004323 middle phalanx of manual digit 5 15 23870 -UBERON:0004331 proximal phalanx of manual digit 5 15 23871 -UBERON:0003864 middle phalanx of manus 14 23872 -UBERON:0004320 middle phalanx of manual digit 2 15 23873 -UBERON:0004321 middle phalanx of manual digit 3 15 23874 -UBERON:0004322 middle phalanx of manual digit 4 15 23875 -UBERON:0004323 middle phalanx of manual digit 5 15 23876 -UBERON:4200219 middle phalanx of manual digit 1 15 23877 -UBERON:0003865 distal phalanx of manus 14 23878 -UBERON:0004311 distal phalanx of manual digit 2 15 23879 -UBERON:0004312 distal phalanx of manual digit 3 15 23880 -UBERON:0004313 distal phalanx of manual digit 4 15 23881 -UBERON:0004314 distal phalanx of manual digit 5 15 23882 -UBERON:0004337 distal phalanx of manual digit 1 15 23883 -UBERON:0007991 proximal sesamoid bone of manus 13 23884 -UBERON:3000856 intercalary element of fore digit 13 23885 -UBERON:0012268 equine forelimb splint bone 12 23886 -UBERON:4200116 pteroid 10 23887 -UBERON:0011250 autopod bone 9 23888 -UBERON:0003656 mesopodium bone 10 23889 -UBERON:0001435 carpal bone 11 23890 -UBERON:0001480 proximal carpal bone 12 23891 -UBERON:0001427 radiale 13 23892 -UBERON:0001428 intermedium 13 23893 -UBERON:0001429 pisiform 13 23894 -UBERON:0002445 ulnare 13 23895 -UBERON:0007960 scapholunate 13 23896 -UBERON:0012124 avian scapholunar bone 13 23897 -UBERON:0001481 distal carpal bone 12 23898 -UBERON:0001430 distal carpal bone 1 13 23899 -UBERON:0001431 distal carpal bone 2 13 23900 -UBERON:0001432 distal carpal bone 3 13 23901 -UBERON:0001433 distal carpal bone 4 13 23902 -UBERON:0010726 os vesalianum manus 13 23903 -UBERON:0010739 distal carpal bone 5 13 23904 -UBERON:0012290 fused carpal bones 2 and 3 13 23905 -UBERON:3000965 basale commune (carpal) 13 23906 -UBERON:0007958 central carpal bone 12 23907 -UBERON:0007959 falciform carpal bone 12 23908 -UBERON:0008257 radial sesamoid 12 23909 -UBERON:3010060 centrale (fore) 12 23910 -UBERON:4200180 semilunate carpal 12 23911 -UBERON:0001447 tarsal bone 11 23912 -UBERON:0001451 navicular bone of pes 12 23913 -UBERON:0006836 medial tibial tarsal bone 12 23914 -UBERON:0010721 distal tarsal bone 12 23915 -UBERON:0001452 distal tarsal bone 1 13 23916 -UBERON:0001453 distal tarsal bone 2 13 23917 -UBERON:0001454 distal tarsal bone 3 13 23918 -UBERON:0001455 cuboid bone 13 23919 -UBERON:0010723 os vesalianum pedis 13 23920 -UBERON:0010737 distal tarsal bone 4 13 23921 -UBERON:0010738 distal tarsal bone 5 13 23922 -UBERON:0012289 fused tarsal bones 2 and 3 13 23923 -UBERON:0013649 fused tarsal bones 1 and 2 13 23924 -UBERON:3001002 basale commune (tarsal) 13 23925 -UBERON:0011679 proximal tarsal bone 12 23926 -UBERON:0001450 calcaneus 13 23927 -UBERON:0002395 talus 13 23928 -UBERON:0011678 hindlimb intermedium bone 13 23929 -UBERON:0012126 fibulare 13 23930 -UBERON:0012288 centroquartal bone 12 23931 -UBERON:3010045 centrale 1 12 23932 -UBERON:3010073 centrale 2 12 23933 -UBERON:4200011 pedal centrale 12 23934 -UBERON:4200152 intertarsale sesamoid 12 23935 -UBERON:0012131 centrale 11 23936 -UBERON:0001451 navicular bone of pes 12 23937 -UBERON:0007958 central carpal bone 12 23938 -UBERON:3010045 centrale 1 12 23939 -UBERON:3010060 centrale (fore) 12 23940 -UBERON:3010073 centrale 2 12 23941 -UBERON:4200011 pedal centrale 12 23942 -UBERON:4200083 postaxial centrale 12 23943 -UBERON:4200084 preaxial centrale 12 23944 -UBERON:0014395 proximal mesopodial bone 11 23945 -UBERON:0001480 proximal carpal bone 12 23946 -UBERON:0001427 radiale 13 23947 -UBERON:0001428 intermedium 13 23948 -UBERON:0001429 pisiform 13 23949 -UBERON:0002445 ulnare 13 23950 -UBERON:0007960 scapholunate 13 23951 -UBERON:0012124 avian scapholunar bone 13 23952 -UBERON:0011679 proximal tarsal bone 12 23953 -UBERON:0001450 calcaneus 13 23954 -UBERON:0002395 talus 13 23955 -UBERON:0011678 hindlimb intermedium bone 13 23956 -UBERON:0012126 fibulare 13 23957 -UBERON:0018102 distal mesopodial bone 11 23958 -UBERON:0001481 distal carpal bone 12 23959 -UBERON:0001430 distal carpal bone 1 13 23960 -UBERON:0001431 distal carpal bone 2 13 23961 -UBERON:0001432 distal carpal bone 3 13 23962 -UBERON:0001433 distal carpal bone 4 13 23963 -UBERON:0010726 os vesalianum manus 13 23964 -UBERON:0010739 distal carpal bone 5 13 23965 -UBERON:0012290 fused carpal bones 2 and 3 13 23966 -UBERON:3000965 basale commune (carpal) 13 23967 -UBERON:0010721 distal tarsal bone 12 23968 -UBERON:0001452 distal tarsal bone 1 13 23969 -UBERON:0001453 distal tarsal bone 2 13 23970 -UBERON:0001454 distal tarsal bone 3 13 23971 -UBERON:0001455 cuboid bone 13 23972 -UBERON:0010723 os vesalianum pedis 13 23973 -UBERON:0010737 distal tarsal bone 4 13 23974 -UBERON:0010738 distal tarsal bone 5 13 23975 -UBERON:0012289 fused tarsal bones 2 and 3 13 23976 -UBERON:0013649 fused tarsal bones 1 and 2 13 23977 -UBERON:3001002 basale commune (tarsal) 13 23978 -UBERON:0005897 manus bone 10 23979 -UBERON:0001435 carpal bone 11 23980 -UBERON:0001480 proximal carpal bone 12 23981 -UBERON:0001427 radiale 13 23982 -UBERON:0001428 intermedium 13 23983 -UBERON:0001429 pisiform 13 23984 -UBERON:0002445 ulnare 13 23985 -UBERON:0007960 scapholunate 13 23986 -UBERON:0012124 avian scapholunar bone 13 23987 -UBERON:0001481 distal carpal bone 12 23988 -UBERON:0001430 distal carpal bone 1 13 23989 -UBERON:0001431 distal carpal bone 2 13 23990 -UBERON:0001432 distal carpal bone 3 13 23991 -UBERON:0001433 distal carpal bone 4 13 23992 -UBERON:0010726 os vesalianum manus 13 23993 -UBERON:0010739 distal carpal bone 5 13 23994 -UBERON:0012290 fused carpal bones 2 and 3 13 23995 -UBERON:3000965 basale commune (carpal) 13 23996 -UBERON:0007958 central carpal bone 12 23997 -UBERON:0007959 falciform carpal bone 12 23998 -UBERON:0008257 radial sesamoid 12 23999 -UBERON:3010060 centrale (fore) 12 24000 -UBERON:4200180 semilunate carpal 12 24001 -UBERON:0007997 sesamoid bone of manus 11 24002 -UBERON:0001429 pisiform 12 24003 -UBERON:0007991 proximal sesamoid bone of manus 12 24004 -UBERON:0008257 radial sesamoid 12 24005 -UBERON:0011205 carpometacarpus 11 24006 -UBERON:0012358 manual digitopodium bone 11 24007 -UBERON:0002374 metacarpal bone 12 24008 -UBERON:0003645 metacarpal bone of digit 1 13 24009 -UBERON:0003646 metacarpal bone of digit 2 13 24010 -UBERON:0003647 metacarpal bone of digit 3 13 24011 -UBERON:0003648 metacarpal bone of digit 4 13 24012 -UBERON:0003649 metacarpal bone of digit 5 13 24013 -UBERON:0013587 fused metacarpal bones 3 and 4 13 24014 -UBERON:0004249 manual digit bone 12 24015 -UBERON:0001436 phalanx of manus 13 24016 -UBERON:0002234 proximal phalanx of manus 14 24017 -UBERON:0004328 proximal phalanx of manual digit 2 15 24018 -UBERON:0004329 proximal phalanx of manual digit 3 15 24019 -UBERON:0004330 proximal phalanx of manual digit 4 15 24020 -UBERON:0004331 proximal phalanx of manual digit 5 15 24021 -UBERON:0004338 proximal phalanx of manual digit 1 15 24022 -UBERON:0003620 manual digit 1 phalanx 14 24023 -UBERON:0004337 distal phalanx of manual digit 1 15 24024 -UBERON:0004338 proximal phalanx of manual digit 1 15 24025 -UBERON:4200219 middle phalanx of manual digit 1 15 24026 -UBERON:0003636 manual digit 2 phalanx 14 24027 -UBERON:0004311 distal phalanx of manual digit 2 15 24028 -UBERON:0004320 middle phalanx of manual digit 2 15 24029 -UBERON:0004328 proximal phalanx of manual digit 2 15 24030 -UBERON:0003637 manual digit 3 phalanx 14 24031 -UBERON:0004312 distal phalanx of manual digit 3 15 24032 -UBERON:0004321 middle phalanx of manual digit 3 15 24033 -UBERON:0004329 proximal phalanx of manual digit 3 15 24034 -UBERON:0003638 manual digit 4 phalanx 14 24035 -UBERON:0004313 distal phalanx of manual digit 4 15 24036 -UBERON:0004322 middle phalanx of manual digit 4 15 24037 -UBERON:0004330 proximal phalanx of manual digit 4 15 24038 -UBERON:0003639 manual digit 5 phalanx 14 24039 -UBERON:0004314 distal phalanx of manual digit 5 15 24040 -UBERON:0004323 middle phalanx of manual digit 5 15 24041 -UBERON:0004331 proximal phalanx of manual digit 5 15 24042 -UBERON:0003864 middle phalanx of manus 14 24043 -UBERON:0004320 middle phalanx of manual digit 2 15 24044 -UBERON:0004321 middle phalanx of manual digit 3 15 24045 -UBERON:0004322 middle phalanx of manual digit 4 15 24046 -UBERON:0004323 middle phalanx of manual digit 5 15 24047 -UBERON:4200219 middle phalanx of manual digit 1 15 24048 -UBERON:0003865 distal phalanx of manus 14 24049 -UBERON:0004311 distal phalanx of manual digit 2 15 24050 -UBERON:0004312 distal phalanx of manual digit 3 15 24051 -UBERON:0004313 distal phalanx of manual digit 4 15 24052 -UBERON:0004314 distal phalanx of manual digit 5 15 24053 -UBERON:0004337 distal phalanx of manual digit 1 15 24054 -UBERON:0007991 proximal sesamoid bone of manus 13 24055 -UBERON:3000856 intercalary element of fore digit 13 24056 -UBERON:0012268 equine forelimb splint bone 12 24057 -UBERON:0005899 pes bone 10 24058 -UBERON:0001447 tarsal bone 11 24059 -UBERON:0001451 navicular bone of pes 12 24060 -UBERON:0006836 medial tibial tarsal bone 12 24061 -UBERON:0010721 distal tarsal bone 12 24062 -UBERON:0001452 distal tarsal bone 1 13 24063 -UBERON:0001453 distal tarsal bone 2 13 24064 -UBERON:0001454 distal tarsal bone 3 13 24065 -UBERON:0001455 cuboid bone 13 24066 -UBERON:0010723 os vesalianum pedis 13 24067 -UBERON:0010737 distal tarsal bone 4 13 24068 -UBERON:0010738 distal tarsal bone 5 13 24069 -UBERON:0012289 fused tarsal bones 2 and 3 13 24070 -UBERON:0013649 fused tarsal bones 1 and 2 13 24071 -UBERON:3001002 basale commune (tarsal) 13 24072 -UBERON:0011679 proximal tarsal bone 12 24073 -UBERON:0001450 calcaneus 13 24074 -UBERON:0002395 talus 13 24075 -UBERON:0011678 hindlimb intermedium bone 13 24076 -UBERON:0012126 fibulare 13 24077 -UBERON:0012288 centroquartal bone 12 24078 -UBERON:3010045 centrale 1 12 24079 -UBERON:3010073 centrale 2 12 24080 -UBERON:4200011 pedal centrale 12 24081 -UBERON:4200152 intertarsale sesamoid 12 24082 -UBERON:0008000 sesamoid bone of pes 11 24083 -UBERON:0007990 proximal sesamoid bone of pes 12 24084 -UBERON:4200152 intertarsale sesamoid 12 24085 -UBERON:0008195 tarsometatarsus 11 24086 -UBERON:0010725 accessory navicular bone 11 24087 -UBERON:0012359 pedal digitopodium bone 11 24088 -UBERON:0001448 metatarsal bone 12 24089 -UBERON:0003650 metatarsal bone of digit 1 13 24090 -UBERON:0003651 metatarsal bone of digit 2 13 24091 -UBERON:0003652 metatarsal bone of digit 3 13 24092 -UBERON:0003653 metatarsal bone of digit 4 13 24093 -UBERON:0003654 metatarsal bone of digit 5 13 24094 -UBERON:0013588 fused metatarsal bones 3 and 4 13 24095 -UBERON:0014763 fused metatarsal bones 2-4 14 24096 -UBERON:4200153 metatarsal bone of digit 6 13 24097 -UBERON:4200157 metatarsal bone of digit 7 13 24098 -UBERON:4200158 metatarsal bone of digit 8 13 24099 -UBERON:0004248 pedal digit bone 12 24100 -UBERON:0001449 phalanx of pes 13 24101 -UBERON:0003640 pedal digit 1 phalanx 14 24102 -UBERON:0004315 distal phalanx of pedal digit 1 15 24103 -UBERON:0004332 proximal phalanx of pedal digit 1 15 24104 -UBERON:0003641 pedal digit 2 phalanx 14 24105 -UBERON:0004316 distal phalanx of pedal digit 2 15 24106 -UBERON:0004324 middle phalanx of pedal digit 2 15 24107 -UBERON:0004333 proximal phalanx of pedal digit 2 15 24108 -UBERON:0003642 pedal digit 3 phalanx 14 24109 -UBERON:0004317 distal phalanx of pedal digit 3 15 24110 -UBERON:0004325 middle phalanx of pedal digit 3 15 24111 -UBERON:0004334 proximal phalanx of pedal digit 3 15 24112 -UBERON:0003862 pedal digit 4 phalanx 14 24113 -UBERON:0004318 distal phalanx of pedal digit 4 15 24114 -UBERON:0004326 middle phalanx of pedal digit 4 15 24115 -UBERON:0004335 proximal phalanx of pedal digit 4 15 24116 -UBERON:0003863 pedal digit 5 phalanx 14 24117 -UBERON:0004319 distal phalanx of pedal digit 5 15 24118 -UBERON:0004327 middle phalanx of pedal digit 5 15 24119 -UBERON:0004336 proximal phalanx of pedal digit 5 15 24120 -UBERON:0003866 middle phalanx of pes 14 24121 -UBERON:0004324 middle phalanx of pedal digit 2 15 24122 -UBERON:0004325 middle phalanx of pedal digit 3 15 24123 -UBERON:0004326 middle phalanx of pedal digit 4 15 24124 -UBERON:0004327 middle phalanx of pedal digit 5 15 24125 -UBERON:0003867 distal phalanx of pes 14 24126 -UBERON:0004315 distal phalanx of pedal digit 1 15 24127 -UBERON:0004316 distal phalanx of pedal digit 2 15 24128 -UBERON:0004317 distal phalanx of pedal digit 3 15 24129 -UBERON:0004318 distal phalanx of pedal digit 4 15 24130 -UBERON:0004319 distal phalanx of pedal digit 5 15 24131 -UBERON:0003868 proximal phalanx of pes 14 24132 -UBERON:0004332 proximal phalanx of pedal digit 1 15 24133 -UBERON:0004333 proximal phalanx of pedal digit 2 15 24134 -UBERON:0004334 proximal phalanx of pedal digit 3 15 24135 -UBERON:0004335 proximal phalanx of pedal digit 4 15 24136 -UBERON:0004336 proximal phalanx of pedal digit 5 15 24137 -UBERON:4100009 pedal digit 7 phalanx 14 24138 -UBERON:0007990 proximal sesamoid bone of pes 13 24139 -UBERON:3000931 intercalary element of hind digit 13 24140 -UBERON:3010675 bony nodule of terminal phalanx of hind digit 13 24141 -UBERON:0012269 equine hindlimb splint bone 12 24142 -UBERON:0010759 equine distal sesamoid 10 24143 -UBERON:0012357 digitopodium bone 10 24144 -UBERON:0003221 phalanx 11 24145 -UBERON:0001436 phalanx of manus 12 24146 -UBERON:0002234 proximal phalanx of manus 13 24147 -UBERON:0004328 proximal phalanx of manual digit 2 14 24148 -UBERON:0004329 proximal phalanx of manual digit 3 14 24149 -UBERON:0004330 proximal phalanx of manual digit 4 14 24150 -UBERON:0004331 proximal phalanx of manual digit 5 14 24151 -UBERON:0004338 proximal phalanx of manual digit 1 14 24152 -UBERON:0003620 manual digit 1 phalanx 13 24153 -UBERON:0004337 distal phalanx of manual digit 1 14 24154 -UBERON:0004338 proximal phalanx of manual digit 1 14 24155 -UBERON:4200219 middle phalanx of manual digit 1 14 24156 -UBERON:0003636 manual digit 2 phalanx 13 24157 -UBERON:0004311 distal phalanx of manual digit 2 14 24158 -UBERON:0004320 middle phalanx of manual digit 2 14 24159 -UBERON:0004328 proximal phalanx of manual digit 2 14 24160 -UBERON:0003637 manual digit 3 phalanx 13 24161 -UBERON:0004312 distal phalanx of manual digit 3 14 24162 -UBERON:0004321 middle phalanx of manual digit 3 14 24163 -UBERON:0004329 proximal phalanx of manual digit 3 14 24164 -UBERON:0003638 manual digit 4 phalanx 13 24165 -UBERON:0004313 distal phalanx of manual digit 4 14 24166 -UBERON:0004322 middle phalanx of manual digit 4 14 24167 -UBERON:0004330 proximal phalanx of manual digit 4 14 24168 -UBERON:0003639 manual digit 5 phalanx 13 24169 -UBERON:0004314 distal phalanx of manual digit 5 14 24170 -UBERON:0004323 middle phalanx of manual digit 5 14 24171 -UBERON:0004331 proximal phalanx of manual digit 5 14 24172 -UBERON:0003864 middle phalanx of manus 13 24173 -UBERON:0004320 middle phalanx of manual digit 2 14 24174 -UBERON:0004321 middle phalanx of manual digit 3 14 24175 -UBERON:0004322 middle phalanx of manual digit 4 14 24176 -UBERON:0004323 middle phalanx of manual digit 5 14 24177 -UBERON:4200219 middle phalanx of manual digit 1 14 24178 -UBERON:0003865 distal phalanx of manus 13 24179 -UBERON:0004311 distal phalanx of manual digit 2 14 24180 -UBERON:0004312 distal phalanx of manual digit 3 14 24181 -UBERON:0004313 distal phalanx of manual digit 4 14 24182 -UBERON:0004314 distal phalanx of manual digit 5 14 24183 -UBERON:0004337 distal phalanx of manual digit 1 14 24184 -UBERON:0001449 phalanx of pes 12 24185 -UBERON:0003640 pedal digit 1 phalanx 13 24186 -UBERON:0004315 distal phalanx of pedal digit 1 14 24187 -UBERON:0004332 proximal phalanx of pedal digit 1 14 24188 -UBERON:0003641 pedal digit 2 phalanx 13 24189 -UBERON:0004316 distal phalanx of pedal digit 2 14 24190 -UBERON:0004324 middle phalanx of pedal digit 2 14 24191 -UBERON:0004333 proximal phalanx of pedal digit 2 14 24192 -UBERON:0003642 pedal digit 3 phalanx 13 24193 -UBERON:0004317 distal phalanx of pedal digit 3 14 24194 -UBERON:0004325 middle phalanx of pedal digit 3 14 24195 -UBERON:0004334 proximal phalanx of pedal digit 3 14 24196 -UBERON:0003862 pedal digit 4 phalanx 13 24197 -UBERON:0004318 distal phalanx of pedal digit 4 14 24198 -UBERON:0004326 middle phalanx of pedal digit 4 14 24199 -UBERON:0004335 proximal phalanx of pedal digit 4 14 24200 -UBERON:0003863 pedal digit 5 phalanx 13 24201 -UBERON:0004319 distal phalanx of pedal digit 5 14 24202 -UBERON:0004327 middle phalanx of pedal digit 5 14 24203 -UBERON:0004336 proximal phalanx of pedal digit 5 14 24204 -UBERON:0003866 middle phalanx of pes 13 24205 -UBERON:0004324 middle phalanx of pedal digit 2 14 24206 -UBERON:0004325 middle phalanx of pedal digit 3 14 24207 -UBERON:0004326 middle phalanx of pedal digit 4 14 24208 -UBERON:0004327 middle phalanx of pedal digit 5 14 24209 -UBERON:0003867 distal phalanx of pes 13 24210 -UBERON:0004315 distal phalanx of pedal digit 1 14 24211 -UBERON:0004316 distal phalanx of pedal digit 2 14 24212 -UBERON:0004317 distal phalanx of pedal digit 3 14 24213 -UBERON:0004318 distal phalanx of pedal digit 4 14 24214 -UBERON:0004319 distal phalanx of pedal digit 5 14 24215 -UBERON:0003868 proximal phalanx of pes 13 24216 -UBERON:0004332 proximal phalanx of pedal digit 1 14 24217 -UBERON:0004333 proximal phalanx of pedal digit 2 14 24218 -UBERON:0004334 proximal phalanx of pedal digit 3 14 24219 -UBERON:0004335 proximal phalanx of pedal digit 4 14 24220 -UBERON:0004336 proximal phalanx of pedal digit 5 14 24221 -UBERON:4100009 pedal digit 7 phalanx 13 24222 -UBERON:0004300 distal phalanx 12 24223 -UBERON:0003865 distal phalanx of manus 13 24224 -UBERON:0004311 distal phalanx of manual digit 2 14 24225 -UBERON:0004312 distal phalanx of manual digit 3 14 24226 -UBERON:0004313 distal phalanx of manual digit 4 14 24227 -UBERON:0004314 distal phalanx of manual digit 5 14 24228 -UBERON:0004337 distal phalanx of manual digit 1 14 24229 -UBERON:0003867 distal phalanx of pes 13 24230 -UBERON:0004315 distal phalanx of pedal digit 1 14 24231 -UBERON:0004316 distal phalanx of pedal digit 2 14 24232 -UBERON:0004317 distal phalanx of pedal digit 3 14 24233 -UBERON:0004318 distal phalanx of pedal digit 4 14 24234 -UBERON:0004319 distal phalanx of pedal digit 5 14 24235 -UBERON:0014483 distal phalanx of digit 1 13 24236 -UBERON:0004315 distal phalanx of pedal digit 1 14 24237 -UBERON:0004337 distal phalanx of manual digit 1 14 24238 -UBERON:0014484 distal phalanx of digit 2 13 24239 -UBERON:0004311 distal phalanx of manual digit 2 14 24240 -UBERON:0004316 distal phalanx of pedal digit 2 14 24241 -UBERON:0014485 distal phalanx of digit 3 13 24242 -UBERON:0004312 distal phalanx of manual digit 3 14 24243 -UBERON:0004317 distal phalanx of pedal digit 3 14 24244 -UBERON:0014486 distal phalanx of digit 4 13 24245 -UBERON:0004313 distal phalanx of manual digit 4 14 24246 -UBERON:0004318 distal phalanx of pedal digit 4 14 24247 -UBERON:0014487 distal phalanx of digit 5 13 24248 -UBERON:0004314 distal phalanx of manual digit 5 14 24249 -UBERON:0004319 distal phalanx of pedal digit 5 14 24250 -UBERON:3010746 T-shaped terminal phalanx 13 24251 -UBERON:0004301 middle phalanx 12 24252 -UBERON:0003864 middle phalanx of manus 13 24253 -UBERON:0004320 middle phalanx of manual digit 2 14 24254 -UBERON:0004321 middle phalanx of manual digit 3 14 24255 -UBERON:0004322 middle phalanx of manual digit 4 14 24256 -UBERON:0004323 middle phalanx of manual digit 5 14 24257 -UBERON:4200219 middle phalanx of manual digit 1 14 24258 -UBERON:0003866 middle phalanx of pes 13 24259 -UBERON:0004324 middle phalanx of pedal digit 2 14 24260 -UBERON:0004325 middle phalanx of pedal digit 3 14 24261 -UBERON:0004326 middle phalanx of pedal digit 4 14 24262 -UBERON:0004327 middle phalanx of pedal digit 5 14 24263 -UBERON:0014488 middle phalanx of digit 2 13 24264 -UBERON:0004320 middle phalanx of manual digit 2 14 24265 -UBERON:0004324 middle phalanx of pedal digit 2 14 24266 -UBERON:0014489 middle phalanx of digit 3 13 24267 -UBERON:0004321 middle phalanx of manual digit 3 14 24268 -UBERON:0004325 middle phalanx of pedal digit 3 14 24269 -UBERON:0009555 short pastern bone 14 24270 -UBERON:0014490 middle phalanx of digit 4 13 24271 -UBERON:0004322 middle phalanx of manual digit 4 14 24272 -UBERON:0004326 middle phalanx of pedal digit 4 14 24273 -UBERON:0014491 middle phalanx of digit 5 13 24274 -UBERON:0004323 middle phalanx of manual digit 5 14 24275 -UBERON:0004327 middle phalanx of pedal digit 5 14 24276 -UBERON:0004302 proximal phalanx 12 24277 -UBERON:0002234 proximal phalanx of manus 13 24278 -UBERON:0004328 proximal phalanx of manual digit 2 14 24279 -UBERON:0004329 proximal phalanx of manual digit 3 14 24280 -UBERON:0004330 proximal phalanx of manual digit 4 14 24281 -UBERON:0004331 proximal phalanx of manual digit 5 14 24282 -UBERON:0004338 proximal phalanx of manual digit 1 14 24283 -UBERON:0003868 proximal phalanx of pes 13 24284 -UBERON:0004332 proximal phalanx of pedal digit 1 14 24285 -UBERON:0004333 proximal phalanx of pedal digit 2 14 24286 -UBERON:0004334 proximal phalanx of pedal digit 3 14 24287 -UBERON:0004335 proximal phalanx of pedal digit 4 14 24288 -UBERON:0004336 proximal phalanx of pedal digit 5 14 24289 -UBERON:0014501 proximal phalanx of digit 1 13 24290 -UBERON:0004332 proximal phalanx of pedal digit 1 14 24291 -UBERON:0004338 proximal phalanx of manual digit 1 14 24292 -UBERON:0014502 proximal phalanx of digit 2 13 24293 -UBERON:0004328 proximal phalanx of manual digit 2 14 24294 -UBERON:0004333 proximal phalanx of pedal digit 2 14 24295 -UBERON:0014503 proximal phalanx of digit 3 13 24296 -UBERON:0004329 proximal phalanx of manual digit 3 14 24297 -UBERON:0004334 proximal phalanx of pedal digit 3 14 24298 -UBERON:0009556 long pastern bone 14 24299 -UBERON:0014504 proximal phalanx of digit 4 13 24300 -UBERON:0004330 proximal phalanx of manual digit 4 14 24301 -UBERON:0004335 proximal phalanx of pedal digit 4 14 24302 -UBERON:0014505 proximal phalanx of digit 5 13 24303 -UBERON:0004331 proximal phalanx of manual digit 5 14 24304 -UBERON:0004336 proximal phalanx of pedal digit 5 14 24305 -UBERON:0009558 pastern bone 12 24306 -UBERON:0009555 short pastern bone 13 24307 -UBERON:0009556 long pastern bone 13 24308 -UBERON:0018266 third phalanx 12 24309 -UBERON:0018322 fourth phalanx 12 24310 -UBERON:4100005 second phalanx 12 24311 -UBERON:0003821 metapodium bone 11 24312 -UBERON:0001448 metatarsal bone 12 24313 -UBERON:0003650 metatarsal bone of digit 1 13 24314 -UBERON:0003651 metatarsal bone of digit 2 13 24315 -UBERON:0003652 metatarsal bone of digit 3 13 24316 -UBERON:0003653 metatarsal bone of digit 4 13 24317 -UBERON:0003654 metatarsal bone of digit 5 13 24318 -UBERON:0013588 fused metatarsal bones 3 and 4 13 24319 -UBERON:0014763 fused metatarsal bones 2-4 14 24320 -UBERON:4200153 metatarsal bone of digit 6 13 24321 -UBERON:4200157 metatarsal bone of digit 7 13 24322 -UBERON:4200158 metatarsal bone of digit 8 13 24323 -UBERON:0002374 metacarpal bone 12 24324 -UBERON:0003645 metacarpal bone of digit 1 13 24325 -UBERON:0003646 metacarpal bone of digit 2 13 24326 -UBERON:0003647 metacarpal bone of digit 3 13 24327 -UBERON:0003648 metacarpal bone of digit 4 13 24328 -UBERON:0003649 metacarpal bone of digit 5 13 24329 -UBERON:0013587 fused metacarpal bones 3 and 4 13 24330 -UBERON:0012267 equine splint bone 12 24331 -UBERON:0012268 equine forelimb splint bone 13 24332 -UBERON:0012269 equine hindlimb splint bone 13 24333 -UBERON:0013581 metapodium bone 1 12 24334 -UBERON:0003645 metacarpal bone of digit 1 13 24335 -UBERON:0003650 metatarsal bone of digit 1 13 24336 -UBERON:0013582 metapodium bone 2 12 24337 -UBERON:0003646 metacarpal bone of digit 2 13 24338 -UBERON:0003651 metatarsal bone of digit 2 13 24339 -UBERON:0013583 metapodium bone 3 12 24340 -UBERON:0003647 metacarpal bone of digit 3 13 24341 -UBERON:0003652 metatarsal bone of digit 3 13 24342 -UBERON:0013584 metapodium bone 4 12 24343 -UBERON:0003648 metacarpal bone of digit 4 13 24344 -UBERON:0003653 metatarsal bone of digit 4 13 24345 -UBERON:0013585 metapodium bone 5 12 24346 -UBERON:0003649 metacarpal bone of digit 5 13 24347 -UBERON:0003654 metatarsal bone of digit 5 13 24348 -UBERON:0013586 fused metapodial bones 3 and 4 12 24349 -UBERON:0013587 fused metacarpal bones 3 and 4 13 24350 -UBERON:0013588 fused metatarsal bones 3 and 4 13 24351 -UBERON:0014763 fused metatarsal bones 2-4 14 24352 -UBERON:0014762 fused metapodial bones 2-4 13 24353 -UBERON:0014763 fused metatarsal bones 2-4 14 24354 -UBERON:4200154 metapodium bone 6 12 24355 -UBERON:4200153 metatarsal bone of digit 6 13 24356 -UBERON:4200155 metapodium bone 7 12 24357 -UBERON:4200157 metatarsal bone of digit 7 13 24358 -UBERON:4200156 metapodium bone 8 12 24359 -UBERON:4200158 metatarsal bone of digit 8 13 24360 -UBERON:0012358 manual digitopodium bone 11 24361 -UBERON:0002374 metacarpal bone 12 24362 -UBERON:0003645 metacarpal bone of digit 1 13 24363 -UBERON:0003646 metacarpal bone of digit 2 13 24364 -UBERON:0003647 metacarpal bone of digit 3 13 24365 -UBERON:0003648 metacarpal bone of digit 4 13 24366 -UBERON:0003649 metacarpal bone of digit 5 13 24367 -UBERON:0013587 fused metacarpal bones 3 and 4 13 24368 -UBERON:0004249 manual digit bone 12 24369 -UBERON:0001436 phalanx of manus 13 24370 -UBERON:0002234 proximal phalanx of manus 14 24371 -UBERON:0004328 proximal phalanx of manual digit 2 15 24372 -UBERON:0004329 proximal phalanx of manual digit 3 15 24373 -UBERON:0004330 proximal phalanx of manual digit 4 15 24374 -UBERON:0004331 proximal phalanx of manual digit 5 15 24375 -UBERON:0004338 proximal phalanx of manual digit 1 15 24376 -UBERON:0003620 manual digit 1 phalanx 14 24377 -UBERON:0004337 distal phalanx of manual digit 1 15 24378 -UBERON:0004338 proximal phalanx of manual digit 1 15 24379 -UBERON:4200219 middle phalanx of manual digit 1 15 24380 -UBERON:0003636 manual digit 2 phalanx 14 24381 -UBERON:0004311 distal phalanx of manual digit 2 15 24382 -UBERON:0004320 middle phalanx of manual digit 2 15 24383 -UBERON:0004328 proximal phalanx of manual digit 2 15 24384 -UBERON:0003637 manual digit 3 phalanx 14 24385 -UBERON:0004312 distal phalanx of manual digit 3 15 24386 -UBERON:0004321 middle phalanx of manual digit 3 15 24387 -UBERON:0004329 proximal phalanx of manual digit 3 15 24388 -UBERON:0003638 manual digit 4 phalanx 14 24389 -UBERON:0004313 distal phalanx of manual digit 4 15 24390 -UBERON:0004322 middle phalanx of manual digit 4 15 24391 -UBERON:0004330 proximal phalanx of manual digit 4 15 24392 -UBERON:0003639 manual digit 5 phalanx 14 24393 -UBERON:0004314 distal phalanx of manual digit 5 15 24394 -UBERON:0004323 middle phalanx of manual digit 5 15 24395 -UBERON:0004331 proximal phalanx of manual digit 5 15 24396 -UBERON:0003864 middle phalanx of manus 14 24397 -UBERON:0004320 middle phalanx of manual digit 2 15 24398 -UBERON:0004321 middle phalanx of manual digit 3 15 24399 -UBERON:0004322 middle phalanx of manual digit 4 15 24400 -UBERON:0004323 middle phalanx of manual digit 5 15 24401 -UBERON:4200219 middle phalanx of manual digit 1 15 24402 -UBERON:0003865 distal phalanx of manus 14 24403 -UBERON:0004311 distal phalanx of manual digit 2 15 24404 -UBERON:0004312 distal phalanx of manual digit 3 15 24405 -UBERON:0004313 distal phalanx of manual digit 4 15 24406 -UBERON:0004314 distal phalanx of manual digit 5 15 24407 -UBERON:0004337 distal phalanx of manual digit 1 15 24408 -UBERON:0007991 proximal sesamoid bone of manus 13 24409 -UBERON:3000856 intercalary element of fore digit 13 24410 -UBERON:0012268 equine forelimb splint bone 12 24411 -UBERON:0012359 pedal digitopodium bone 11 24412 -UBERON:0001448 metatarsal bone 12 24413 -UBERON:0003650 metatarsal bone of digit 1 13 24414 -UBERON:0003651 metatarsal bone of digit 2 13 24415 -UBERON:0003652 metatarsal bone of digit 3 13 24416 -UBERON:0003653 metatarsal bone of digit 4 13 24417 -UBERON:0003654 metatarsal bone of digit 5 13 24418 -UBERON:0013588 fused metatarsal bones 3 and 4 13 24419 -UBERON:0014763 fused metatarsal bones 2-4 14 24420 -UBERON:4200153 metatarsal bone of digit 6 13 24421 -UBERON:4200157 metatarsal bone of digit 7 13 24422 -UBERON:4200158 metatarsal bone of digit 8 13 24423 -UBERON:0004248 pedal digit bone 12 24424 -UBERON:0001449 phalanx of pes 13 24425 -UBERON:0003640 pedal digit 1 phalanx 14 24426 -UBERON:0004315 distal phalanx of pedal digit 1 15 24427 -UBERON:0004332 proximal phalanx of pedal digit 1 15 24428 -UBERON:0003641 pedal digit 2 phalanx 14 24429 -UBERON:0004316 distal phalanx of pedal digit 2 15 24430 -UBERON:0004324 middle phalanx of pedal digit 2 15 24431 -UBERON:0004333 proximal phalanx of pedal digit 2 15 24432 -UBERON:0003642 pedal digit 3 phalanx 14 24433 -UBERON:0004317 distal phalanx of pedal digit 3 15 24434 -UBERON:0004325 middle phalanx of pedal digit 3 15 24435 -UBERON:0004334 proximal phalanx of pedal digit 3 15 24436 -UBERON:0003862 pedal digit 4 phalanx 14 24437 -UBERON:0004318 distal phalanx of pedal digit 4 15 24438 -UBERON:0004326 middle phalanx of pedal digit 4 15 24439 -UBERON:0004335 proximal phalanx of pedal digit 4 15 24440 -UBERON:0003863 pedal digit 5 phalanx 14 24441 -UBERON:0004319 distal phalanx of pedal digit 5 15 24442 -UBERON:0004327 middle phalanx of pedal digit 5 15 24443 -UBERON:0004336 proximal phalanx of pedal digit 5 15 24444 -UBERON:0003866 middle phalanx of pes 14 24445 -UBERON:0004324 middle phalanx of pedal digit 2 15 24446 -UBERON:0004325 middle phalanx of pedal digit 3 15 24447 -UBERON:0004326 middle phalanx of pedal digit 4 15 24448 -UBERON:0004327 middle phalanx of pedal digit 5 15 24449 -UBERON:0003867 distal phalanx of pes 14 24450 -UBERON:0004315 distal phalanx of pedal digit 1 15 24451 -UBERON:0004316 distal phalanx of pedal digit 2 15 24452 -UBERON:0004317 distal phalanx of pedal digit 3 15 24453 -UBERON:0004318 distal phalanx of pedal digit 4 15 24454 -UBERON:0004319 distal phalanx of pedal digit 5 15 24455 -UBERON:0003868 proximal phalanx of pes 14 24456 -UBERON:0004332 proximal phalanx of pedal digit 1 15 24457 -UBERON:0004333 proximal phalanx of pedal digit 2 15 24458 -UBERON:0004334 proximal phalanx of pedal digit 3 15 24459 -UBERON:0004335 proximal phalanx of pedal digit 4 15 24460 -UBERON:0004336 proximal phalanx of pedal digit 5 15 24461 -UBERON:4100009 pedal digit 7 phalanx 14 24462 -UBERON:0007990 proximal sesamoid bone of pes 13 24463 -UBERON:3000931 intercalary element of hind digit 13 24464 -UBERON:3010675 bony nodule of terminal phalanx of hind digit 13 24465 -UBERON:0012269 equine hindlimb splint bone 12 24466 -UBERON:3010624 subarticular sesamoid 11 24467 -UBERON:0002478 orbitosphenoid 8 24468 -UBERON:0003106 urostyle 8 24469 -UBERON:2001583 preural centrum 1+ ural centrum 1 9 24470 -UBERON:2002168 preural centrum 1 + ural centrum 1 + ural centrum 2 9 24471 -UBERON:0003861 neural arch 8 24472 -UBERON:0000218 vertebral arch of axis 9 24473 -UBERON:2000525 intercalarium 10 24474 -UBERON:0008433 lumbar vertebral arch 9 24475 -UBERON:0008434 cervical vertebral arch 9 24476 -UBERON:0008437 posterior arch of atlas 10 24477 -UBERON:0008435 vertebral arch of sacral segment 9 24478 -UBERON:0008436 thoracic vertebral arch 9 24479 -UBERON:2000429 scaphium 9 24480 -UBERON:2000602 uroneural 9 24481 -UBERON:2002064 uroneural 1 10 24482 -UBERON:2002084 pleurostyle 10 24483 -UBERON:2002109 uroneural 2 10 24484 -UBERON:2002115 uroneural 3 10 24485 -UBERON:2002167 stegural 10 24486 -UBERON:4500002 upper uroneural 10 24487 -UBERON:2001253 neural arch 2 9 24488 -UBERON:2001394 neural arch 3 9 24489 -UBERON:2001395 neural arch 4 9 24490 -UBERON:2001666 rudimentary neural arch 9 24491 -UBERON:2001877 neural arch 1 9 24492 -UBERON:2001884 accessory neural arch 9 24493 -UBERON:2002123 neural arch 5 9 24494 -UBERON:3000796 imbricate neural arch 9 24495 -UBERON:3000797 non-imbricate neural arch 9 24496 -UBERON:0003966 gonial bone 8 24497 -UBERON:0004743 coracoid bone 8 24498 -UBERON:0004744 articular/anguloarticular 8 24499 -UBERON:0004746 prootic bone 8 24500 -UBERON:0004747 supraoccipital bone 8 24501 -UBERON:0004751 hypohyal bone 8 24502 -UBERON:0005411 bony otic capsule 8 24503 -UBERON:0006428 basisphenoid bone 8 24504 -UBERON:0006597 quadrate bone 8 24505 -UBERON:0006721 alisphenoid bone 8 24506 -UBERON:0006849 scapula 8 24507 -UBERON:0008828 presphenoid bone 8 24508 -UBERON:0008913 perichondral bone 8 24509 -UBERON:0009470 postsphenoidal bone 8 24510 -UBERON:0009639 body of sphenoid 8 24511 -UBERON:0010297 endochondral scleral ossicle 8 24512 -UBERON:2001432 anterior sclerotic bone 9 24513 -UBERON:2001433 posterior sclerotic bone 9 24514 -UBERON:0010389 pterygoid bone 8 24515 -UBERON:0011238 mesethmoid bone 8 24516 -UBERON:0011246 procoracoid bone 8 24517 -UBERON:0011606 hyomandibular bone 8 24518 -UBERON:0011611 ceratohyal bone 8 24519 -UBERON:0011618 basihyal bone 8 24520 -UBERON:0011619 stylohyoid bone 8 24521 -UBERON:0011622 thyrohyoid bone 8 24522 -UBERON:0011770 mentomeckelian 8 24523 -UBERON:0013190 entotympanic bone 8 24524 -UBERON:0018356 rostral entotympanic element 9 24525 -UBERON:2000171 interhyal bone 8 24526 -UBERON:2000196 dorsal hypohyal bone 8 24527 -UBERON:2000203 rhinosphenoid 8 24528 -UBERON:2000226 lateral ethmoid bone 8 24529 -UBERON:2000239 mesocoracoid bone 8 24530 -UBERON:2000240 metapterygoid 8 24531 -UBERON:2000271 radial bone 8 24532 -UBERON:1500006 paired fin radial bone 9 24533 -UBERON:2000508 pelvic fin radial bone 10 24534 -UBERON:1500008 pelvic fin distal radial bone 11 24535 -UBERON:2001415 pelvic fin distal radial bone 2 12 24536 -UBERON:2001416 pelvic fin distal radial bone 3 12 24537 -UBERON:2001417 pelvic fin distal radial bone 1 12 24538 -UBERON:1500009 pelvic fin basipterygial radial 11 24539 -UBERON:1500010 pelvic fin middle radial bone 11 24540 -UBERON:2001586 pectoral fin radial bone 10 24541 -UBERON:2001587 pectoral fin proximal radial bone 11 24542 -UBERON:2002026 pectoral fin proximal radial bone 1 12 24543 -UBERON:2002027 pectoral fin proximal radial bone 2 12 24544 -UBERON:2002028 pectoral fin proximal radial bone 3 12 24545 -UBERON:2002029 pectoral fin proximal radial bone 4 12 24546 -UBERON:4300087 mesopterygium bone 12 24547 -UBERON:4300088 metapterygium bone 12 24548 -UBERON:4300089 propterygium bone 12 24549 -UBERON:2001588 pectoral fin distal radial bone 11 24550 -UBERON:2002277 pectoral fin distal radial bone 1 12 24551 -UBERON:2002279 pectoral fin distal radial bone 2 12 24552 -UBERON:2002280 pectoral fin distal radial bone 3 12 24553 -UBERON:2005225 median fin radial bone 9 24554 -UBERON:2001671 anal fin radial bone 10 24555 -UBERON:2000268 anal fin proximal radial bone 11 24556 -UBERON:2000646 anal fin distal radial bone 11 24557 -UBERON:2001614 anal fin middle radial bone 11 24558 -UBERON:2001672 dorsal fin radial bone 10 24559 -UBERON:2000936 dorsal fin distal radial bone 11 24560 -UBERON:2005372 dorsal fin distal radial bone 1 12 24561 -UBERON:2005373 dorsal fin distal radial bone 2 12 24562 -UBERON:2005374 dorsal fin distal radial bone 3 12 24563 -UBERON:2005375 dorsal fin distal radial bone 4 12 24564 -UBERON:2005376 dorsal fin distal radial bone 5 12 24565 -UBERON:2005377 dorsal fin distal radial bone 6 12 24566 -UBERON:2005378 dorsal fin distal radial bone 7 12 24567 -UBERON:2005379 dorsal fin distal radial bone 8 12 24568 -UBERON:2000947 dorsal fin proximal radial bone 11 24569 -UBERON:2001818 dorsal fin proximal radial bone 1 12 24570 -UBERON:2001819 dorsal fin proximal radial bone 2 12 24571 -UBERON:2005380 dorsal fin proximal radial bone 3 12 24572 -UBERON:2005381 dorsal fin proximal radial bone 4 12 24573 -UBERON:2005382 dorsal fin proximal radial bone 5 12 24574 -UBERON:2005383 dorsal fin proximal radial bone 6 12 24575 -UBERON:2005384 dorsal fin proximal radial bone 7 12 24576 -UBERON:2005385 dorsal fin proximal radial bone 8 12 24577 -UBERON:2001613 dorsal fin middle radial bone 11 24578 -UBERON:2005226 median fin proximal radial bone 10 24579 -UBERON:2000300 ventral hypohyal bone 8 24580 -UBERON:2000337 basioccipital posterodorsal region 8 24581 -UBERON:2000348 exoccipital posteroventral region 8 24582 -UBERON:2000363 hypobranchial bone 8 24583 -UBERON:2001233 hypobranchial 1 bone 9 24584 -UBERON:2001234 hypobranchial 4 bone 9 24585 -UBERON:2001235 hypobranchial 3 bone 9 24586 -UBERON:2001236 hypobranchial 2 bone 9 24587 -UBERON:2000419 pterosphenoid 8 24588 -UBERON:2000422 retroarticular 8 24589 -UBERON:2000488 ceratobranchial bone 8 24590 -UBERON:2001237 ceratobranchial 1 bone 9 24591 -UBERON:2001239 ceratobranchial 5 bone 9 24592 -UBERON:2001240 ceratobranchial 4 bone 9 24593 -UBERON:2001241 ceratobranchial 3 bone 9 24594 -UBERON:2001242 ceratobranchial 2 bone 9 24595 -UBERON:2000526 intermuscular bone 8 24596 -UBERON:2000350 epipleural 9 24597 -UBERON:2000507 epineural 9 24598 -UBERON:2002263 epineural 1 10 24599 -UBERON:2002264 epineural 2 10 24600 -UBERON:2002265 epineural 3 10 24601 -UBERON:2002266 epineural 4 10 24602 -UBERON:2002267 epineural 5 10 24603 -UBERON:2002268 epineural 6 10 24604 -UBERON:2001798 epicentral bone 9 24605 -UBERON:2001800 cephalic rib 10 24606 -UBERON:2002127 myorhabdoid bone 9 24607 -UBERON:2000527 pharyngobranchial bone 8 24608 -UBERON:2001250 pharyngobranchial 2 bone 9 24609 -UBERON:2001252 pharyngobranchial 3 bone 9 24610 -UBERON:2001635 pharyngobranchial 1 bone 9 24611 -UBERON:2001636 pharyngobranchial 4 bone 9 24612 -UBERON:2001858 suprapharyngobranchial 9 24613 -UBERON:2000576 pterotic 8 24614 -UBERON:2000587 sphenotic 8 24615 -UBERON:2000620 autopalatine 8 24616 -UBERON:2000623 basipterygium bone 8 24617 -UBERON:2000627 posterior ceratohyal 8 24618 -UBERON:2000658 epibranchial bone 8 24619 -UBERON:2001243 epibranchial 1 bone 9 24620 -UBERON:2001245 epibranchial 4 bone 9 24621 -UBERON:2001246 epibranchial 2 bone 9 24622 -UBERON:2001247 epibranchial 3 bone 9 24623 -UBERON:2000692 symplectic 8 24624 -UBERON:2000698 tripus 8 24625 -UBERON:2000735 hemal postzygapophysis 8 24626 -UBERON:2000859 specialized hemal arch and spine 8 24627 -UBERON:2001163 supraneural 7 bone 8 24628 -UBERON:2001164 supraneural 6 bone 8 24629 -UBERON:2001165 supraneural 5 bone 8 24630 -UBERON:2001166 supraneural 9 bone 8 24631 -UBERON:2001171 os suspensorium 8 24632 -UBERON:2001191 supraneural 2 bone 8 24633 -UBERON:2001192 supraneural 3 bone 8 24634 -UBERON:2001193 supraneural 8 bone 8 24635 -UBERON:2001223 basibranchial 1 bone 8 24636 -UBERON:2001224 basibranchial 2 bone 8 24637 -UBERON:2001225 basibranchial 3 bone 8 24638 -UBERON:2001226 basibranchial 4 bone 8 24639 -UBERON:2001275 sublingual 8 24640 -UBERON:2001333 sublingual dorsal and ventral fused 9 24641 -UBERON:2001475 sublingual dorsal ossification 9 24642 -UBERON:2001476 sublingual ventral ossification 9 24643 -UBERON:2001364 hemal spine 8 24644 -UBERON:2000364 hypural 9 24645 -UBERON:2001560 hypural 1 10 24646 -UBERON:2001561 hypural 2 10 24647 -UBERON:2001562 hypural 3 10 24648 -UBERON:2001563 hypural 4 10 24649 -UBERON:2001564 hypural 5 10 24650 -UBERON:2002056 hypural 6 10 24651 -UBERON:2002132 hypural 7 10 24652 -UBERON:4300248 fused hypural 1 and 2 10 24653 -UBERON:2000438 parhypural 9 24654 -UBERON:2001396 parapophysis + rib of vertebra 4 8 24655 -UBERON:2001404 preethmoid bone 8 24656 -UBERON:2001406 kinethmoid bone 8 24657 -UBERON:2001412 epiotic 8 24658 -UBERON:2001553 manubrium 8 24659 -UBERON:2001592 claustrum bone 8 24660 -UBERON:2001697 transverse radial 8 24661 -UBERON:2001698 anal-fin stay 8 24662 -UBERON:2001699 dorsal-fin stay 8 24663 -UBERON:2001701 basibranchial 5 bone 8 24664 -UBERON:2001805 articular bone 8 24665 -UBERON:2001817 middle nuchal plate 8 24666 -UBERON:2001820 posterior nuchal plate 8 24667 -UBERON:2001882 parapophysis + rib of vertebra 3 8 24668 -UBERON:2001883 parapophysis + rib of vertebra 3 + rib of vertebra 4 8 24669 -UBERON:2001888 supraneural 1 bone 8 24670 -UBERON:2001997 parietal-supraoccipital 8 24671 -UBERON:2002007 supraneural 4 bone 8 24672 -UBERON:2002019 pterotic-posttemporal-supracleithrum 8 24673 -UBERON:2002023 second preethmoid 8 24674 -UBERON:2002077 lateropterygium 8 24675 -UBERON:2002078 hypural plate 8 24676 -UBERON:2002085 ural centrum 8 24677 -UBERON:2001581 ural centrum 2 9 24678 -UBERON:2002065 ural centrum 1 9 24679 -UBERON:2002160 ural centrum 3 9 24680 -UBERON:2002161 ural centrum 4 9 24681 -UBERON:2002088 interhaemal bone 8 24682 -UBERON:2002214 os suspensorium medial flange 8 24683 -UBERON:2007005 hemal prezygapophysis 8 24684 -UBERON:3000368 otoccipital 8 24685 -UBERON:3000515 pseudoangular 8 24686 -UBERON:3000518 pseudodentary 8 24687 -UBERON:3000572 sphenethmoid 8 24688 -UBERON:3000591 suprasphenoid 8 24689 -UBERON:3000645 corpus 8 24690 -UBERON:3000663 parahyoid 8 24691 -UBERON:3000950 os triangulare 8 24692 -UBERON:3000951 anterior radial 8 24693 -UBERON:3000952 posterior radial 8 24694 -UBERON:3000954 hypobranchial I 8 24695 -UBERON:3000955 ceratobranchial I 8 24696 -UBERON:3000956 hypobranchial II 8 24697 -UBERON:4200091 ethomosphenoid region 8 24698 -UBERON:4500017 interarcual bone 8 24699 -UBERON:0004637 otic capsule 7 24700 -UBERON:0005410 cartilaginous otic capsule 8 24701 -UBERON:0005411 bony otic capsule 8 24702 -UBERON:0010349 otic capsule pre-cartilage condensation 8 24703 -UBERON:0010892 mesethmoid element 7 24704 -UBERON:0011238 mesethmoid bone 8 24705 -UBERON:0011608 hyomandibular element 7 24706 -UBERON:0011606 hyomandibular bone 8 24707 -UBERON:0011607 hyomandibular cartilage 8 24708 -UBERON:0010055 stapes cartilage element 9 24709 -UBERON:0011614 basihyal element 7 24710 -UBERON:0011615 basihyal cartilage 8 24711 -UBERON:0011618 basihyal bone 8 24712 -UBERON:0013746 basibranchial element 7 24713 -UBERON:0004740 basibranchial bone 8 24714 -UBERON:2001223 basibranchial 1 bone 9 24715 -UBERON:2001224 basibranchial 2 bone 9 24716 -UBERON:2001225 basibranchial 3 bone 9 24717 -UBERON:2001226 basibranchial 4 bone 9 24718 -UBERON:2001701 basibranchial 5 bone 9 24719 -UBERON:3010583 basibranchial I 9 24720 -UBERON:3010585 basibranchial II 9 24721 -UBERON:0013747 basibranchial cartilage 8 24722 -UBERON:2001864 basibranchial 1 cartilage 9 24723 -UBERON:2001865 basibranchial 4 cartilage 9 24724 -UBERON:2001866 basibranchial 5 cartilage 9 24725 -UBERON:2001874 basibranchial 2 cartilage 9 24726 -UBERON:2001876 basibranchial 3 cartilage 9 24727 -UBERON:2001915 basibranchial 1 element 8 24728 -UBERON:2001223 basibranchial 1 bone 9 24729 -UBERON:2001864 basibranchial 1 cartilage 9 24730 -UBERON:2001916 basibranchial 2 element 8 24731 -UBERON:2001224 basibranchial 2 bone 9 24732 -UBERON:2001874 basibranchial 2 cartilage 9 24733 -UBERON:2001917 basibranchial 3 element 8 24734 -UBERON:2001225 basibranchial 3 bone 9 24735 -UBERON:2001876 basibranchial 3 cartilage 9 24736 -UBERON:2001918 basibranchial 4 element 8 24737 -UBERON:2001226 basibranchial 4 bone 9 24738 -UBERON:2001865 basibranchial 4 cartilage 9 24739 -UBERON:2001919 basibranchial 5 element 8 24740 -UBERON:2001701 basibranchial 5 bone 9 24741 -UBERON:2001866 basibranchial 5 cartilage 9 24742 -UBERON:0015015 supraoccipital endochondral element 7 24743 -UBERON:0004747 supraoccipital bone 8 24744 -UBERON:0011162 supraoccipital cartilage element 8 24745 -UBERON:0011163 supraoccipital pre-cartilage condensation 8 24746 -UBERON:0015019 rib endochondral element 7 24747 -UBERON:0002228 rib 8 24748 -UBERON:0002237 true rib 9 24749 -UBERON:0002238 false rib 9 24750 -UBERON:0002239 floating rib 10 24751 -UBERON:0004601 rib 1 9 24752 -UBERON:0004602 rib 2 9 24753 -UBERON:0004603 rib 3 9 24754 -UBERON:0004604 rib 4 9 24755 -UBERON:0004605 rib 5 9 24756 -UBERON:0004606 rib 6 9 24757 -UBERON:0004607 rib 7 9 24758 -UBERON:0004608 rib 9 9 24759 -UBERON:0004609 rib 10 9 24760 -UBERON:0004610 rib 11 9 24761 -UBERON:0004611 rib 12 9 24762 -UBERON:0010757 rib 8 9 24763 -UBERON:0018144 cervical rib 9 24764 -UBERON:0018145 lumbar rib 9 24765 -UBERON:2001750 rib of vertebra 6 9 24766 -UBERON:2001751 rib of vertebra 5 9 24767 -UBERON:2001878 rib of vertebra 2 9 24768 -UBERON:2001879 rib of vertebra 1 9 24769 -UBERON:2001880 rib of vertebra 3 9 24770 -UBERON:2001881 rib of vertebra 4 9 24771 -UBERON:4100117 presacral rib 9 24772 -UBERON:4100118 trunk rib 9 24773 -UBERON:4300128 sacral rib 9 24774 -UBERON:4300236 rib of vertebra 7 9 24775 -UBERON:4300237 rib of vertebra 8 9 24776 -UBERON:0006288 rib cartilage element 8 24777 -UBERON:0006289 rib pre-cartilage condensation 8 24778 -UBERON:0015048 basioccipital endochondral element 7 24779 -UBERON:0001692 basioccipital bone 8 24780 -UBERON:0006209 basioccipital cartilage element 8 24781 -UBERON:0009197 basioccipital pre-cartilage condensation 8 24782 -UBERON:0015051 exoccipital endochondral element 7 24783 -UBERON:0001693 exoccipital bone 8 24784 -UBERON:0006228 exoccipital pre-cartilage condensation 8 24785 -UBERON:0010752 exoccipital cartilage element 8 24786 -UBERON:0015054 iliac endochondral element 7 24787 -UBERON:0001273 ilium 8 24788 -UBERON:4200220 iliac ramus 9 24789 -UBERON:0006247 iliac pre-cartilage condensation 8 24790 -UBERON:0010714 iliac cartilage element 8 24791 -UBERON:0015055 pubic endochondral element 7 24792 -UBERON:0001275 pubis 8 24793 -UBERON:0006285 pubic pre-cartilage condensation 8 24794 -UBERON:0010718 pubic cartilage element 8 24795 -UBERON:0015056 ischial endochondral element 7 24796 -UBERON:0001274 ischium 8 24797 -UBERON:0006254 ischial cartilage element 8 24798 -UBERON:0006255 ischial pre-cartilage condensation 8 24799 -UBERON:0015057 scapula endochondral element 7 24800 -UBERON:0006290 scapula cartilage element 8 24801 -UBERON:0006291 scapula pre-cartilage condensation 8 24802 -UBERON:0006849 scapula 8 24803 -UBERON:0015058 alisphenoid endochondral element 7 24804 -UBERON:0006721 alisphenoid bone 8 24805 -UBERON:0010732 alisphenoid pre-cartilage condensation 8 24806 -UBERON:0010733 alisphenoid cartilage element 8 24807 -UBERON:0015059 orbitosphenoid endochondral element 7 24808 -UBERON:0002478 orbitosphenoid 8 24809 -UBERON:0005687 orbitosphenoid cartilage element 8 24810 -UBERON:0010728 sphenoid lesser wing pre-cartilage condensation 8 24811 -UBERON:0015060 sphenoid endochondral element 7 24812 -UBERON:0001677 sphenoid bone 8 24813 -UBERON:0009191 sphenoid bone pre-cartilage condensation 8 24814 -UBERON:0009193 sphenoid cartilage element 8 24815 -UBERON:0015061 limb endochondral element 7 24816 -UBERON:0002428 limb bone 8 24817 -UBERON:0003464 hindlimb bone 9 24818 -UBERON:0003608 hindlimb long bone 10 24819 -UBERON:0000979 tibia 11 24820 -UBERON:0000981 femur 11 24821 -UBERON:0001446 fibula 11 24822 -UBERON:0001448 metatarsal bone 11 24823 -UBERON:0003650 metatarsal bone of digit 1 12 24824 -UBERON:0003651 metatarsal bone of digit 2 12 24825 -UBERON:0003652 metatarsal bone of digit 3 12 24826 -UBERON:0003653 metatarsal bone of digit 4 12 24827 -UBERON:0003654 metatarsal bone of digit 5 12 24828 -UBERON:0013588 fused metatarsal bones 3 and 4 12 24829 -UBERON:0014763 fused metatarsal bones 2-4 13 24830 -UBERON:4200153 metatarsal bone of digit 6 12 24831 -UBERON:4200157 metatarsal bone of digit 7 12 24832 -UBERON:4200158 metatarsal bone of digit 8 12 24833 -UBERON:0001449 phalanx of pes 11 24834 -UBERON:0003640 pedal digit 1 phalanx 12 24835 -UBERON:0004315 distal phalanx of pedal digit 1 13 24836 -UBERON:0004332 proximal phalanx of pedal digit 1 13 24837 -UBERON:0003641 pedal digit 2 phalanx 12 24838 -UBERON:0004316 distal phalanx of pedal digit 2 13 24839 -UBERON:0004324 middle phalanx of pedal digit 2 13 24840 -UBERON:0004333 proximal phalanx of pedal digit 2 13 24841 -UBERON:0003642 pedal digit 3 phalanx 12 24842 -UBERON:0004317 distal phalanx of pedal digit 3 13 24843 -UBERON:0004325 middle phalanx of pedal digit 3 13 24844 -UBERON:0004334 proximal phalanx of pedal digit 3 13 24845 -UBERON:0003862 pedal digit 4 phalanx 12 24846 -UBERON:0004318 distal phalanx of pedal digit 4 13 24847 -UBERON:0004326 middle phalanx of pedal digit 4 13 24848 -UBERON:0004335 proximal phalanx of pedal digit 4 13 24849 -UBERON:0003863 pedal digit 5 phalanx 12 24850 -UBERON:0004319 distal phalanx of pedal digit 5 13 24851 -UBERON:0004327 middle phalanx of pedal digit 5 13 24852 -UBERON:0004336 proximal phalanx of pedal digit 5 13 24853 -UBERON:0003866 middle phalanx of pes 12 24854 -UBERON:0004324 middle phalanx of pedal digit 2 13 24855 -UBERON:0004325 middle phalanx of pedal digit 3 13 24856 -UBERON:0004326 middle phalanx of pedal digit 4 13 24857 -UBERON:0004327 middle phalanx of pedal digit 5 13 24858 -UBERON:0003867 distal phalanx of pes 12 24859 -UBERON:0004315 distal phalanx of pedal digit 1 13 24860 -UBERON:0004316 distal phalanx of pedal digit 2 13 24861 -UBERON:0004317 distal phalanx of pedal digit 3 13 24862 -UBERON:0004318 distal phalanx of pedal digit 4 13 24863 -UBERON:0004319 distal phalanx of pedal digit 5 13 24864 -UBERON:0003868 proximal phalanx of pes 12 24865 -UBERON:0004332 proximal phalanx of pedal digit 1 13 24866 -UBERON:0004333 proximal phalanx of pedal digit 2 13 24867 -UBERON:0004334 proximal phalanx of pedal digit 3 13 24868 -UBERON:0004335 proximal phalanx of pedal digit 4 13 24869 -UBERON:0004336 proximal phalanx of pedal digit 5 13 24870 -UBERON:4100009 pedal digit 7 phalanx 12 24871 -UBERON:0012269 equine hindlimb splint bone 11 24872 -UBERON:0005893 leg bone 10 24873 -UBERON:0002446 patella 11 24874 -UBERON:0003826 upper leg bone 11 24875 -UBERON:0000981 femur 12 24876 -UBERON:0004251 hindlimb zeugopod bone 11 24877 -UBERON:0000979 tibia 12 24878 -UBERON:0001446 fibula 12 24879 -UBERON:0003467 sesamoid bone of gastrocnemius 12 24880 -UBERON:0006714 tibiofibula 12 24881 -UBERON:0010907 parafibula 12 24882 -UBERON:0012104 sesamoid bone of the peroneus longus muscle 12 24883 -UBERON:0005899 pes bone 10 24884 -UBERON:0001447 tarsal bone 11 24885 -UBERON:0001451 navicular bone of pes 12 24886 -UBERON:0006836 medial tibial tarsal bone 12 24887 -UBERON:0010721 distal tarsal bone 12 24888 -UBERON:0001452 distal tarsal bone 1 13 24889 -UBERON:0001453 distal tarsal bone 2 13 24890 -UBERON:0001454 distal tarsal bone 3 13 24891 -UBERON:0001455 cuboid bone 13 24892 -UBERON:0010723 os vesalianum pedis 13 24893 -UBERON:0010737 distal tarsal bone 4 13 24894 -UBERON:0010738 distal tarsal bone 5 13 24895 -UBERON:0012289 fused tarsal bones 2 and 3 13 24896 -UBERON:0013649 fused tarsal bones 1 and 2 13 24897 -UBERON:3001002 basale commune (tarsal) 13 24898 -UBERON:0011679 proximal tarsal bone 12 24899 -UBERON:0001450 calcaneus 13 24900 -UBERON:0002395 talus 13 24901 -UBERON:0011678 hindlimb intermedium bone 13 24902 -UBERON:0012126 fibulare 13 24903 -UBERON:0012288 centroquartal bone 12 24904 -UBERON:3010045 centrale 1 12 24905 -UBERON:3010073 centrale 2 12 24906 -UBERON:4200011 pedal centrale 12 24907 -UBERON:4200152 intertarsale sesamoid 12 24908 -UBERON:0008000 sesamoid bone of pes 11 24909 -UBERON:0007990 proximal sesamoid bone of pes 12 24910 -UBERON:4200152 intertarsale sesamoid 12 24911 -UBERON:0008195 tarsometatarsus 11 24912 -UBERON:0010725 accessory navicular bone 11 24913 -UBERON:0012359 pedal digitopodium bone 11 24914 -UBERON:0001448 metatarsal bone 12 24915 -UBERON:0003650 metatarsal bone of digit 1 13 24916 -UBERON:0003651 metatarsal bone of digit 2 13 24917 -UBERON:0003652 metatarsal bone of digit 3 13 24918 -UBERON:0003653 metatarsal bone of digit 4 13 24919 -UBERON:0003654 metatarsal bone of digit 5 13 24920 -UBERON:0013588 fused metatarsal bones 3 and 4 13 24921 -UBERON:0014763 fused metatarsal bones 2-4 14 24922 -UBERON:4200153 metatarsal bone of digit 6 13 24923 -UBERON:4200157 metatarsal bone of digit 7 13 24924 -UBERON:4200158 metatarsal bone of digit 8 13 24925 -UBERON:0004248 pedal digit bone 12 24926 -UBERON:0001449 phalanx of pes 13 24927 -UBERON:0003640 pedal digit 1 phalanx 14 24928 -UBERON:0004315 distal phalanx of pedal digit 1 15 24929 -UBERON:0004332 proximal phalanx of pedal digit 1 15 24930 -UBERON:0003641 pedal digit 2 phalanx 14 24931 -UBERON:0004316 distal phalanx of pedal digit 2 15 24932 -UBERON:0004324 middle phalanx of pedal digit 2 15 24933 -UBERON:0004333 proximal phalanx of pedal digit 2 15 24934 -UBERON:0003642 pedal digit 3 phalanx 14 24935 -UBERON:0004317 distal phalanx of pedal digit 3 15 24936 -UBERON:0004325 middle phalanx of pedal digit 3 15 24937 -UBERON:0004334 proximal phalanx of pedal digit 3 15 24938 -UBERON:0003862 pedal digit 4 phalanx 14 24939 -UBERON:0004318 distal phalanx of pedal digit 4 15 24940 -UBERON:0004326 middle phalanx of pedal digit 4 15 24941 -UBERON:0004335 proximal phalanx of pedal digit 4 15 24942 -UBERON:0003863 pedal digit 5 phalanx 14 24943 -UBERON:0004319 distal phalanx of pedal digit 5 15 24944 -UBERON:0004327 middle phalanx of pedal digit 5 15 24945 -UBERON:0004336 proximal phalanx of pedal digit 5 15 24946 -UBERON:0003866 middle phalanx of pes 14 24947 -UBERON:0004324 middle phalanx of pedal digit 2 15 24948 -UBERON:0004325 middle phalanx of pedal digit 3 15 24949 -UBERON:0004326 middle phalanx of pedal digit 4 15 24950 -UBERON:0004327 middle phalanx of pedal digit 5 15 24951 -UBERON:0003867 distal phalanx of pes 14 24952 -UBERON:0004315 distal phalanx of pedal digit 1 15 24953 -UBERON:0004316 distal phalanx of pedal digit 2 15 24954 -UBERON:0004317 distal phalanx of pedal digit 3 15 24955 -UBERON:0004318 distal phalanx of pedal digit 4 15 24956 -UBERON:0004319 distal phalanx of pedal digit 5 15 24957 -UBERON:0003868 proximal phalanx of pes 14 24958 -UBERON:0004332 proximal phalanx of pedal digit 1 15 24959 -UBERON:0004333 proximal phalanx of pedal digit 2 15 24960 -UBERON:0004334 proximal phalanx of pedal digit 3 15 24961 -UBERON:0004335 proximal phalanx of pedal digit 4 15 24962 -UBERON:0004336 proximal phalanx of pedal digit 5 15 24963 -UBERON:4100009 pedal digit 7 phalanx 14 24964 -UBERON:0007990 proximal sesamoid bone of pes 13 24965 -UBERON:3000931 intercalary element of hind digit 13 24966 -UBERON:3010675 bony nodule of terminal phalanx of hind digit 13 24967 -UBERON:0012269 equine hindlimb splint bone 12 24968 -UBERON:0008194 tibiotarsus 10 24969 -UBERON:0003606 limb long bone 9 24970 -UBERON:0003221 phalanx 10 24971 -UBERON:0001436 phalanx of manus 11 24972 -UBERON:0002234 proximal phalanx of manus 12 24973 -UBERON:0004328 proximal phalanx of manual digit 2 13 24974 -UBERON:0004329 proximal phalanx of manual digit 3 13 24975 -UBERON:0004330 proximal phalanx of manual digit 4 13 24976 -UBERON:0004331 proximal phalanx of manual digit 5 13 24977 -UBERON:0004338 proximal phalanx of manual digit 1 13 24978 -UBERON:0003620 manual digit 1 phalanx 12 24979 -UBERON:0004337 distal phalanx of manual digit 1 13 24980 -UBERON:0004338 proximal phalanx of manual digit 1 13 24981 -UBERON:4200219 middle phalanx of manual digit 1 13 24982 -UBERON:0003636 manual digit 2 phalanx 12 24983 -UBERON:0004311 distal phalanx of manual digit 2 13 24984 -UBERON:0004320 middle phalanx of manual digit 2 13 24985 -UBERON:0004328 proximal phalanx of manual digit 2 13 24986 -UBERON:0003637 manual digit 3 phalanx 12 24987 -UBERON:0004312 distal phalanx of manual digit 3 13 24988 -UBERON:0004321 middle phalanx of manual digit 3 13 24989 -UBERON:0004329 proximal phalanx of manual digit 3 13 24990 -UBERON:0003638 manual digit 4 phalanx 12 24991 -UBERON:0004313 distal phalanx of manual digit 4 13 24992 -UBERON:0004322 middle phalanx of manual digit 4 13 24993 -UBERON:0004330 proximal phalanx of manual digit 4 13 24994 -UBERON:0003639 manual digit 5 phalanx 12 24995 -UBERON:0004314 distal phalanx of manual digit 5 13 24996 -UBERON:0004323 middle phalanx of manual digit 5 13 24997 -UBERON:0004331 proximal phalanx of manual digit 5 13 24998 -UBERON:0003864 middle phalanx of manus 12 24999 -UBERON:0004320 middle phalanx of manual digit 2 13 25000 -UBERON:0004321 middle phalanx of manual digit 3 13 25001 -UBERON:0004322 middle phalanx of manual digit 4 13 25002 -UBERON:0004323 middle phalanx of manual digit 5 13 25003 -UBERON:4200219 middle phalanx of manual digit 1 13 25004 -UBERON:0003865 distal phalanx of manus 12 25005 -UBERON:0004311 distal phalanx of manual digit 2 13 25006 -UBERON:0004312 distal phalanx of manual digit 3 13 25007 -UBERON:0004313 distal phalanx of manual digit 4 13 25008 -UBERON:0004314 distal phalanx of manual digit 5 13 25009 -UBERON:0004337 distal phalanx of manual digit 1 13 25010 -UBERON:0001449 phalanx of pes 11 25011 -UBERON:0003640 pedal digit 1 phalanx 12 25012 -UBERON:0004315 distal phalanx of pedal digit 1 13 25013 -UBERON:0004332 proximal phalanx of pedal digit 1 13 25014 -UBERON:0003641 pedal digit 2 phalanx 12 25015 -UBERON:0004316 distal phalanx of pedal digit 2 13 25016 -UBERON:0004324 middle phalanx of pedal digit 2 13 25017 -UBERON:0004333 proximal phalanx of pedal digit 2 13 25018 -UBERON:0003642 pedal digit 3 phalanx 12 25019 -UBERON:0004317 distal phalanx of pedal digit 3 13 25020 -UBERON:0004325 middle phalanx of pedal digit 3 13 25021 -UBERON:0004334 proximal phalanx of pedal digit 3 13 25022 -UBERON:0003862 pedal digit 4 phalanx 12 25023 -UBERON:0004318 distal phalanx of pedal digit 4 13 25024 -UBERON:0004326 middle phalanx of pedal digit 4 13 25025 -UBERON:0004335 proximal phalanx of pedal digit 4 13 25026 -UBERON:0003863 pedal digit 5 phalanx 12 25027 -UBERON:0004319 distal phalanx of pedal digit 5 13 25028 -UBERON:0004327 middle phalanx of pedal digit 5 13 25029 -UBERON:0004336 proximal phalanx of pedal digit 5 13 25030 -UBERON:0003866 middle phalanx of pes 12 25031 -UBERON:0004324 middle phalanx of pedal digit 2 13 25032 -UBERON:0004325 middle phalanx of pedal digit 3 13 25033 -UBERON:0004326 middle phalanx of pedal digit 4 13 25034 -UBERON:0004327 middle phalanx of pedal digit 5 13 25035 -UBERON:0003867 distal phalanx of pes 12 25036 -UBERON:0004315 distal phalanx of pedal digit 1 13 25037 -UBERON:0004316 distal phalanx of pedal digit 2 13 25038 -UBERON:0004317 distal phalanx of pedal digit 3 13 25039 -UBERON:0004318 distal phalanx of pedal digit 4 13 25040 -UBERON:0004319 distal phalanx of pedal digit 5 13 25041 -UBERON:0003868 proximal phalanx of pes 12 25042 -UBERON:0004332 proximal phalanx of pedal digit 1 13 25043 -UBERON:0004333 proximal phalanx of pedal digit 2 13 25044 -UBERON:0004334 proximal phalanx of pedal digit 3 13 25045 -UBERON:0004335 proximal phalanx of pedal digit 4 13 25046 -UBERON:0004336 proximal phalanx of pedal digit 5 13 25047 -UBERON:4100009 pedal digit 7 phalanx 12 25048 -UBERON:0004300 distal phalanx 11 25049 -UBERON:0003865 distal phalanx of manus 12 25050 -UBERON:0004311 distal phalanx of manual digit 2 13 25051 -UBERON:0004312 distal phalanx of manual digit 3 13 25052 -UBERON:0004313 distal phalanx of manual digit 4 13 25053 -UBERON:0004314 distal phalanx of manual digit 5 13 25054 -UBERON:0004337 distal phalanx of manual digit 1 13 25055 -UBERON:0003867 distal phalanx of pes 12 25056 -UBERON:0004315 distal phalanx of pedal digit 1 13 25057 -UBERON:0004316 distal phalanx of pedal digit 2 13 25058 -UBERON:0004317 distal phalanx of pedal digit 3 13 25059 -UBERON:0004318 distal phalanx of pedal digit 4 13 25060 -UBERON:0004319 distal phalanx of pedal digit 5 13 25061 -UBERON:0014483 distal phalanx of digit 1 12 25062 -UBERON:0004315 distal phalanx of pedal digit 1 13 25063 -UBERON:0004337 distal phalanx of manual digit 1 13 25064 -UBERON:0014484 distal phalanx of digit 2 12 25065 -UBERON:0004311 distal phalanx of manual digit 2 13 25066 -UBERON:0004316 distal phalanx of pedal digit 2 13 25067 -UBERON:0014485 distal phalanx of digit 3 12 25068 -UBERON:0004312 distal phalanx of manual digit 3 13 25069 -UBERON:0004317 distal phalanx of pedal digit 3 13 25070 -UBERON:0014486 distal phalanx of digit 4 12 25071 -UBERON:0004313 distal phalanx of manual digit 4 13 25072 -UBERON:0004318 distal phalanx of pedal digit 4 13 25073 -UBERON:0014487 distal phalanx of digit 5 12 25074 -UBERON:0004314 distal phalanx of manual digit 5 13 25075 -UBERON:0004319 distal phalanx of pedal digit 5 13 25076 -UBERON:3010746 T-shaped terminal phalanx 12 25077 -UBERON:0004301 middle phalanx 11 25078 -UBERON:0003864 middle phalanx of manus 12 25079 -UBERON:0004320 middle phalanx of manual digit 2 13 25080 -UBERON:0004321 middle phalanx of manual digit 3 13 25081 -UBERON:0004322 middle phalanx of manual digit 4 13 25082 -UBERON:0004323 middle phalanx of manual digit 5 13 25083 -UBERON:4200219 middle phalanx of manual digit 1 13 25084 -UBERON:0003866 middle phalanx of pes 12 25085 -UBERON:0004324 middle phalanx of pedal digit 2 13 25086 -UBERON:0004325 middle phalanx of pedal digit 3 13 25087 -UBERON:0004326 middle phalanx of pedal digit 4 13 25088 -UBERON:0004327 middle phalanx of pedal digit 5 13 25089 -UBERON:0014488 middle phalanx of digit 2 12 25090 -UBERON:0004320 middle phalanx of manual digit 2 13 25091 -UBERON:0004324 middle phalanx of pedal digit 2 13 25092 -UBERON:0014489 middle phalanx of digit 3 12 25093 -UBERON:0004321 middle phalanx of manual digit 3 13 25094 -UBERON:0004325 middle phalanx of pedal digit 3 13 25095 -UBERON:0009555 short pastern bone 13 25096 -UBERON:0014490 middle phalanx of digit 4 12 25097 -UBERON:0004322 middle phalanx of manual digit 4 13 25098 -UBERON:0004326 middle phalanx of pedal digit 4 13 25099 -UBERON:0014491 middle phalanx of digit 5 12 25100 -UBERON:0004323 middle phalanx of manual digit 5 13 25101 -UBERON:0004327 middle phalanx of pedal digit 5 13 25102 -UBERON:0004302 proximal phalanx 11 25103 -UBERON:0002234 proximal phalanx of manus 12 25104 -UBERON:0004328 proximal phalanx of manual digit 2 13 25105 -UBERON:0004329 proximal phalanx of manual digit 3 13 25106 -UBERON:0004330 proximal phalanx of manual digit 4 13 25107 -UBERON:0004331 proximal phalanx of manual digit 5 13 25108 -UBERON:0004338 proximal phalanx of manual digit 1 13 25109 -UBERON:0003868 proximal phalanx of pes 12 25110 -UBERON:0004332 proximal phalanx of pedal digit 1 13 25111 -UBERON:0004333 proximal phalanx of pedal digit 2 13 25112 -UBERON:0004334 proximal phalanx of pedal digit 3 13 25113 -UBERON:0004335 proximal phalanx of pedal digit 4 13 25114 -UBERON:0004336 proximal phalanx of pedal digit 5 13 25115 -UBERON:0014501 proximal phalanx of digit 1 12 25116 -UBERON:0004332 proximal phalanx of pedal digit 1 13 25117 -UBERON:0004338 proximal phalanx of manual digit 1 13 25118 -UBERON:0014502 proximal phalanx of digit 2 12 25119 -UBERON:0004328 proximal phalanx of manual digit 2 13 25120 -UBERON:0004333 proximal phalanx of pedal digit 2 13 25121 -UBERON:0014503 proximal phalanx of digit 3 12 25122 -UBERON:0004329 proximal phalanx of manual digit 3 13 25123 -UBERON:0004334 proximal phalanx of pedal digit 3 13 25124 -UBERON:0009556 long pastern bone 13 25125 -UBERON:0014504 proximal phalanx of digit 4 12 25126 -UBERON:0004330 proximal phalanx of manual digit 4 13 25127 -UBERON:0004335 proximal phalanx of pedal digit 4 13 25128 -UBERON:0014505 proximal phalanx of digit 5 12 25129 -UBERON:0004331 proximal phalanx of manual digit 5 13 25130 -UBERON:0004336 proximal phalanx of pedal digit 5 13 25131 -UBERON:0009558 pastern bone 11 25132 -UBERON:0009555 short pastern bone 12 25133 -UBERON:0009556 long pastern bone 12 25134 -UBERON:0018266 third phalanx 11 25135 -UBERON:0018322 fourth phalanx 11 25136 -UBERON:4100005 second phalanx 11 25137 -UBERON:0003607 forelimb long bone 10 25138 -UBERON:0000976 humerus 11 25139 -UBERON:0001423 radius bone 11 25140 -UBERON:0001424 ulna 11 25141 -UBERON:0001436 phalanx of manus 11 25142 -UBERON:0002234 proximal phalanx of manus 12 25143 -UBERON:0004328 proximal phalanx of manual digit 2 13 25144 -UBERON:0004329 proximal phalanx of manual digit 3 13 25145 -UBERON:0004330 proximal phalanx of manual digit 4 13 25146 -UBERON:0004331 proximal phalanx of manual digit 5 13 25147 -UBERON:0004338 proximal phalanx of manual digit 1 13 25148 -UBERON:0003620 manual digit 1 phalanx 12 25149 -UBERON:0004337 distal phalanx of manual digit 1 13 25150 -UBERON:0004338 proximal phalanx of manual digit 1 13 25151 -UBERON:4200219 middle phalanx of manual digit 1 13 25152 -UBERON:0003636 manual digit 2 phalanx 12 25153 -UBERON:0004311 distal phalanx of manual digit 2 13 25154 -UBERON:0004320 middle phalanx of manual digit 2 13 25155 -UBERON:0004328 proximal phalanx of manual digit 2 13 25156 -UBERON:0003637 manual digit 3 phalanx 12 25157 -UBERON:0004312 distal phalanx of manual digit 3 13 25158 -UBERON:0004321 middle phalanx of manual digit 3 13 25159 -UBERON:0004329 proximal phalanx of manual digit 3 13 25160 -UBERON:0003638 manual digit 4 phalanx 12 25161 -UBERON:0004313 distal phalanx of manual digit 4 13 25162 -UBERON:0004322 middle phalanx of manual digit 4 13 25163 -UBERON:0004330 proximal phalanx of manual digit 4 13 25164 -UBERON:0003639 manual digit 5 phalanx 12 25165 -UBERON:0004314 distal phalanx of manual digit 5 13 25166 -UBERON:0004323 middle phalanx of manual digit 5 13 25167 -UBERON:0004331 proximal phalanx of manual digit 5 13 25168 -UBERON:0003864 middle phalanx of manus 12 25169 -UBERON:0004320 middle phalanx of manual digit 2 13 25170 -UBERON:0004321 middle phalanx of manual digit 3 13 25171 -UBERON:0004322 middle phalanx of manual digit 4 13 25172 -UBERON:0004323 middle phalanx of manual digit 5 13 25173 -UBERON:4200219 middle phalanx of manual digit 1 13 25174 -UBERON:0003865 distal phalanx of manus 12 25175 -UBERON:0004311 distal phalanx of manual digit 2 13 25176 -UBERON:0004312 distal phalanx of manual digit 3 13 25177 -UBERON:0004313 distal phalanx of manual digit 4 13 25178 -UBERON:0004314 distal phalanx of manual digit 5 13 25179 -UBERON:0004337 distal phalanx of manual digit 1 13 25180 -UBERON:0002374 metacarpal bone 11 25181 -UBERON:0003645 metacarpal bone of digit 1 12 25182 -UBERON:0003646 metacarpal bone of digit 2 12 25183 -UBERON:0003647 metacarpal bone of digit 3 12 25184 -UBERON:0003648 metacarpal bone of digit 4 12 25185 -UBERON:0003649 metacarpal bone of digit 5 12 25186 -UBERON:0013587 fused metacarpal bones 3 and 4 12 25187 -UBERON:0012268 equine forelimb splint bone 11 25188 -UBERON:0003608 hindlimb long bone 10 25189 -UBERON:0000979 tibia 11 25190 -UBERON:0000981 femur 11 25191 -UBERON:0001446 fibula 11 25192 -UBERON:0001448 metatarsal bone 11 25193 -UBERON:0003650 metatarsal bone of digit 1 12 25194 -UBERON:0003651 metatarsal bone of digit 2 12 25195 -UBERON:0003652 metatarsal bone of digit 3 12 25196 -UBERON:0003653 metatarsal bone of digit 4 12 25197 -UBERON:0003654 metatarsal bone of digit 5 12 25198 -UBERON:0013588 fused metatarsal bones 3 and 4 12 25199 -UBERON:0014763 fused metatarsal bones 2-4 13 25200 -UBERON:4200153 metatarsal bone of digit 6 12 25201 -UBERON:4200157 metatarsal bone of digit 7 12 25202 -UBERON:4200158 metatarsal bone of digit 8 12 25203 -UBERON:0001449 phalanx of pes 11 25204 -UBERON:0003640 pedal digit 1 phalanx 12 25205 -UBERON:0004315 distal phalanx of pedal digit 1 13 25206 -UBERON:0004332 proximal phalanx of pedal digit 1 13 25207 -UBERON:0003641 pedal digit 2 phalanx 12 25208 -UBERON:0004316 distal phalanx of pedal digit 2 13 25209 -UBERON:0004324 middle phalanx of pedal digit 2 13 25210 -UBERON:0004333 proximal phalanx of pedal digit 2 13 25211 -UBERON:0003642 pedal digit 3 phalanx 12 25212 -UBERON:0004317 distal phalanx of pedal digit 3 13 25213 -UBERON:0004325 middle phalanx of pedal digit 3 13 25214 -UBERON:0004334 proximal phalanx of pedal digit 3 13 25215 -UBERON:0003862 pedal digit 4 phalanx 12 25216 -UBERON:0004318 distal phalanx of pedal digit 4 13 25217 -UBERON:0004326 middle phalanx of pedal digit 4 13 25218 -UBERON:0004335 proximal phalanx of pedal digit 4 13 25219 -UBERON:0003863 pedal digit 5 phalanx 12 25220 -UBERON:0004319 distal phalanx of pedal digit 5 13 25221 -UBERON:0004327 middle phalanx of pedal digit 5 13 25222 -UBERON:0004336 proximal phalanx of pedal digit 5 13 25223 -UBERON:0003866 middle phalanx of pes 12 25224 -UBERON:0004324 middle phalanx of pedal digit 2 13 25225 -UBERON:0004325 middle phalanx of pedal digit 3 13 25226 -UBERON:0004326 middle phalanx of pedal digit 4 13 25227 -UBERON:0004327 middle phalanx of pedal digit 5 13 25228 -UBERON:0003867 distal phalanx of pes 12 25229 -UBERON:0004315 distal phalanx of pedal digit 1 13 25230 -UBERON:0004316 distal phalanx of pedal digit 2 13 25231 -UBERON:0004317 distal phalanx of pedal digit 3 13 25232 -UBERON:0004318 distal phalanx of pedal digit 4 13 25233 -UBERON:0004319 distal phalanx of pedal digit 5 13 25234 -UBERON:0003868 proximal phalanx of pes 12 25235 -UBERON:0004332 proximal phalanx of pedal digit 1 13 25236 -UBERON:0004333 proximal phalanx of pedal digit 2 13 25237 -UBERON:0004334 proximal phalanx of pedal digit 3 13 25238 -UBERON:0004335 proximal phalanx of pedal digit 4 13 25239 -UBERON:0004336 proximal phalanx of pedal digit 5 13 25240 -UBERON:4100009 pedal digit 7 phalanx 12 25241 -UBERON:0012269 equine hindlimb splint bone 11 25242 -UBERON:0003821 metapodium bone 10 25243 -UBERON:0001448 metatarsal bone 11 25244 -UBERON:0003650 metatarsal bone of digit 1 12 25245 -UBERON:0003651 metatarsal bone of digit 2 12 25246 -UBERON:0003652 metatarsal bone of digit 3 12 25247 -UBERON:0003653 metatarsal bone of digit 4 12 25248 -UBERON:0003654 metatarsal bone of digit 5 12 25249 -UBERON:0013588 fused metatarsal bones 3 and 4 12 25250 -UBERON:0014763 fused metatarsal bones 2-4 13 25251 -UBERON:4200153 metatarsal bone of digit 6 12 25252 -UBERON:4200157 metatarsal bone of digit 7 12 25253 -UBERON:4200158 metatarsal bone of digit 8 12 25254 -UBERON:0002374 metacarpal bone 11 25255 -UBERON:0003645 metacarpal bone of digit 1 12 25256 -UBERON:0003646 metacarpal bone of digit 2 12 25257 -UBERON:0003647 metacarpal bone of digit 3 12 25258 -UBERON:0003648 metacarpal bone of digit 4 12 25259 -UBERON:0003649 metacarpal bone of digit 5 12 25260 -UBERON:0013587 fused metacarpal bones 3 and 4 12 25261 -UBERON:0012267 equine splint bone 11 25262 -UBERON:0012268 equine forelimb splint bone 12 25263 -UBERON:0012269 equine hindlimb splint bone 12 25264 -UBERON:0013581 metapodium bone 1 11 25265 -UBERON:0003645 metacarpal bone of digit 1 12 25266 -UBERON:0003650 metatarsal bone of digit 1 12 25267 -UBERON:0013582 metapodium bone 2 11 25268 -UBERON:0003646 metacarpal bone of digit 2 12 25269 -UBERON:0003651 metatarsal bone of digit 2 12 25270 -UBERON:0013583 metapodium bone 3 11 25271 -UBERON:0003647 metacarpal bone of digit 3 12 25272 -UBERON:0003652 metatarsal bone of digit 3 12 25273 -UBERON:0013584 metapodium bone 4 11 25274 -UBERON:0003648 metacarpal bone of digit 4 12 25275 -UBERON:0003653 metatarsal bone of digit 4 12 25276 -UBERON:0013585 metapodium bone 5 11 25277 -UBERON:0003649 metacarpal bone of digit 5 12 25278 -UBERON:0003654 metatarsal bone of digit 5 12 25279 -UBERON:0013586 fused metapodial bones 3 and 4 11 25280 -UBERON:0013587 fused metacarpal bones 3 and 4 12 25281 -UBERON:0013588 fused metatarsal bones 3 and 4 12 25282 -UBERON:0014763 fused metatarsal bones 2-4 13 25283 -UBERON:0014762 fused metapodial bones 2-4 12 25284 -UBERON:0014763 fused metatarsal bones 2-4 13 25285 -UBERON:4200154 metapodium bone 6 11 25286 -UBERON:4200153 metatarsal bone of digit 6 12 25287 -UBERON:4200155 metapodium bone 7 11 25288 -UBERON:4200157 metatarsal bone of digit 7 12 25289 -UBERON:4200156 metapodium bone 8 11 25290 -UBERON:4200158 metatarsal bone of digit 8 12 25291 -UBERON:0008962 forelimb bone 9 25292 -UBERON:0003460 arm bone 10 25293 -UBERON:0003466 forelimb zeugopod bone 11 25294 -UBERON:0001423 radius bone 12 25295 -UBERON:0001424 ulna 12 25296 -UBERON:0006715 radio-ulna 12 25297 -UBERON:0007993 ulnar sesamoid bone 12 25298 -UBERON:0004250 upper arm bone 11 25299 -UBERON:0000976 humerus 12 25300 -UBERON:0003607 forelimb long bone 10 25301 -UBERON:0000976 humerus 11 25302 -UBERON:0001423 radius bone 11 25303 -UBERON:0001424 ulna 11 25304 -UBERON:0001436 phalanx of manus 11 25305 -UBERON:0002234 proximal phalanx of manus 12 25306 -UBERON:0004328 proximal phalanx of manual digit 2 13 25307 -UBERON:0004329 proximal phalanx of manual digit 3 13 25308 -UBERON:0004330 proximal phalanx of manual digit 4 13 25309 -UBERON:0004331 proximal phalanx of manual digit 5 13 25310 -UBERON:0004338 proximal phalanx of manual digit 1 13 25311 -UBERON:0003620 manual digit 1 phalanx 12 25312 -UBERON:0004337 distal phalanx of manual digit 1 13 25313 -UBERON:0004338 proximal phalanx of manual digit 1 13 25314 -UBERON:4200219 middle phalanx of manual digit 1 13 25315 -UBERON:0003636 manual digit 2 phalanx 12 25316 -UBERON:0004311 distal phalanx of manual digit 2 13 25317 -UBERON:0004320 middle phalanx of manual digit 2 13 25318 -UBERON:0004328 proximal phalanx of manual digit 2 13 25319 -UBERON:0003637 manual digit 3 phalanx 12 25320 -UBERON:0004312 distal phalanx of manual digit 3 13 25321 -UBERON:0004321 middle phalanx of manual digit 3 13 25322 -UBERON:0004329 proximal phalanx of manual digit 3 13 25323 -UBERON:0003638 manual digit 4 phalanx 12 25324 -UBERON:0004313 distal phalanx of manual digit 4 13 25325 -UBERON:0004322 middle phalanx of manual digit 4 13 25326 -UBERON:0004330 proximal phalanx of manual digit 4 13 25327 -UBERON:0003639 manual digit 5 phalanx 12 25328 -UBERON:0004314 distal phalanx of manual digit 5 13 25329 -UBERON:0004323 middle phalanx of manual digit 5 13 25330 -UBERON:0004331 proximal phalanx of manual digit 5 13 25331 -UBERON:0003864 middle phalanx of manus 12 25332 -UBERON:0004320 middle phalanx of manual digit 2 13 25333 -UBERON:0004321 middle phalanx of manual digit 3 13 25334 -UBERON:0004322 middle phalanx of manual digit 4 13 25335 -UBERON:0004323 middle phalanx of manual digit 5 13 25336 -UBERON:4200219 middle phalanx of manual digit 1 13 25337 -UBERON:0003865 distal phalanx of manus 12 25338 -UBERON:0004311 distal phalanx of manual digit 2 13 25339 -UBERON:0004312 distal phalanx of manual digit 3 13 25340 -UBERON:0004313 distal phalanx of manual digit 4 13 25341 -UBERON:0004314 distal phalanx of manual digit 5 13 25342 -UBERON:0004337 distal phalanx of manual digit 1 13 25343 -UBERON:0002374 metacarpal bone 11 25344 -UBERON:0003645 metacarpal bone of digit 1 12 25345 -UBERON:0003646 metacarpal bone of digit 2 12 25346 -UBERON:0003647 metacarpal bone of digit 3 12 25347 -UBERON:0003648 metacarpal bone of digit 4 12 25348 -UBERON:0003649 metacarpal bone of digit 5 12 25349 -UBERON:0013587 fused metacarpal bones 3 and 4 12 25350 -UBERON:0012268 equine forelimb splint bone 11 25351 -UBERON:0005897 manus bone 10 25352 -UBERON:0001435 carpal bone 11 25353 -UBERON:0001480 proximal carpal bone 12 25354 -UBERON:0001427 radiale 13 25355 -UBERON:0001428 intermedium 13 25356 -UBERON:0001429 pisiform 13 25357 -UBERON:0002445 ulnare 13 25358 -UBERON:0007960 scapholunate 13 25359 -UBERON:0012124 avian scapholunar bone 13 25360 -UBERON:0001481 distal carpal bone 12 25361 -UBERON:0001430 distal carpal bone 1 13 25362 -UBERON:0001431 distal carpal bone 2 13 25363 -UBERON:0001432 distal carpal bone 3 13 25364 -UBERON:0001433 distal carpal bone 4 13 25365 -UBERON:0010726 os vesalianum manus 13 25366 -UBERON:0010739 distal carpal bone 5 13 25367 -UBERON:0012290 fused carpal bones 2 and 3 13 25368 -UBERON:3000965 basale commune (carpal) 13 25369 -UBERON:0007958 central carpal bone 12 25370 -UBERON:0007959 falciform carpal bone 12 25371 -UBERON:0008257 radial sesamoid 12 25372 -UBERON:3010060 centrale (fore) 12 25373 -UBERON:4200180 semilunate carpal 12 25374 -UBERON:0007997 sesamoid bone of manus 11 25375 -UBERON:0001429 pisiform 12 25376 -UBERON:0007991 proximal sesamoid bone of manus 12 25377 -UBERON:0008257 radial sesamoid 12 25378 -UBERON:0011205 carpometacarpus 11 25379 -UBERON:0012358 manual digitopodium bone 11 25380 -UBERON:0002374 metacarpal bone 12 25381 -UBERON:0003645 metacarpal bone of digit 1 13 25382 -UBERON:0003646 metacarpal bone of digit 2 13 25383 -UBERON:0003647 metacarpal bone of digit 3 13 25384 -UBERON:0003648 metacarpal bone of digit 4 13 25385 -UBERON:0003649 metacarpal bone of digit 5 13 25386 -UBERON:0013587 fused metacarpal bones 3 and 4 13 25387 -UBERON:0004249 manual digit bone 12 25388 -UBERON:0001436 phalanx of manus 13 25389 -UBERON:0002234 proximal phalanx of manus 14 25390 -UBERON:0004328 proximal phalanx of manual digit 2 15 25391 -UBERON:0004329 proximal phalanx of manual digit 3 15 25392 -UBERON:0004330 proximal phalanx of manual digit 4 15 25393 -UBERON:0004331 proximal phalanx of manual digit 5 15 25394 -UBERON:0004338 proximal phalanx of manual digit 1 15 25395 -UBERON:0003620 manual digit 1 phalanx 14 25396 -UBERON:0004337 distal phalanx of manual digit 1 15 25397 -UBERON:0004338 proximal phalanx of manual digit 1 15 25398 -UBERON:4200219 middle phalanx of manual digit 1 15 25399 -UBERON:0003636 manual digit 2 phalanx 14 25400 -UBERON:0004311 distal phalanx of manual digit 2 15 25401 -UBERON:0004320 middle phalanx of manual digit 2 15 25402 -UBERON:0004328 proximal phalanx of manual digit 2 15 25403 -UBERON:0003637 manual digit 3 phalanx 14 25404 -UBERON:0004312 distal phalanx of manual digit 3 15 25405 -UBERON:0004321 middle phalanx of manual digit 3 15 25406 -UBERON:0004329 proximal phalanx of manual digit 3 15 25407 -UBERON:0003638 manual digit 4 phalanx 14 25408 -UBERON:0004313 distal phalanx of manual digit 4 15 25409 -UBERON:0004322 middle phalanx of manual digit 4 15 25410 -UBERON:0004330 proximal phalanx of manual digit 4 15 25411 -UBERON:0003639 manual digit 5 phalanx 14 25412 -UBERON:0004314 distal phalanx of manual digit 5 15 25413 -UBERON:0004323 middle phalanx of manual digit 5 15 25414 -UBERON:0004331 proximal phalanx of manual digit 5 15 25415 -UBERON:0003864 middle phalanx of manus 14 25416 -UBERON:0004320 middle phalanx of manual digit 2 15 25417 -UBERON:0004321 middle phalanx of manual digit 3 15 25418 -UBERON:0004322 middle phalanx of manual digit 4 15 25419 -UBERON:0004323 middle phalanx of manual digit 5 15 25420 -UBERON:4200219 middle phalanx of manual digit 1 15 25421 -UBERON:0003865 distal phalanx of manus 14 25422 -UBERON:0004311 distal phalanx of manual digit 2 15 25423 -UBERON:0004312 distal phalanx of manual digit 3 15 25424 -UBERON:0004313 distal phalanx of manual digit 4 15 25425 -UBERON:0004314 distal phalanx of manual digit 5 15 25426 -UBERON:0004337 distal phalanx of manual digit 1 15 25427 -UBERON:0007991 proximal sesamoid bone of manus 13 25428 -UBERON:3000856 intercalary element of fore digit 13 25429 -UBERON:0012268 equine forelimb splint bone 12 25430 -UBERON:4200116 pteroid 10 25431 -UBERON:0011250 autopod bone 9 25432 -UBERON:0003656 mesopodium bone 10 25433 -UBERON:0001435 carpal bone 11 25434 -UBERON:0001480 proximal carpal bone 12 25435 -UBERON:0001427 radiale 13 25436 -UBERON:0001428 intermedium 13 25437 -UBERON:0001429 pisiform 13 25438 -UBERON:0002445 ulnare 13 25439 -UBERON:0007960 scapholunate 13 25440 -UBERON:0012124 avian scapholunar bone 13 25441 -UBERON:0001481 distal carpal bone 12 25442 -UBERON:0001430 distal carpal bone 1 13 25443 -UBERON:0001431 distal carpal bone 2 13 25444 -UBERON:0001432 distal carpal bone 3 13 25445 -UBERON:0001433 distal carpal bone 4 13 25446 -UBERON:0010726 os vesalianum manus 13 25447 -UBERON:0010739 distal carpal bone 5 13 25448 -UBERON:0012290 fused carpal bones 2 and 3 13 25449 -UBERON:3000965 basale commune (carpal) 13 25450 -UBERON:0007958 central carpal bone 12 25451 -UBERON:0007959 falciform carpal bone 12 25452 -UBERON:0008257 radial sesamoid 12 25453 -UBERON:3010060 centrale (fore) 12 25454 -UBERON:4200180 semilunate carpal 12 25455 -UBERON:0001447 tarsal bone 11 25456 -UBERON:0001451 navicular bone of pes 12 25457 -UBERON:0006836 medial tibial tarsal bone 12 25458 -UBERON:0010721 distal tarsal bone 12 25459 -UBERON:0001452 distal tarsal bone 1 13 25460 -UBERON:0001453 distal tarsal bone 2 13 25461 -UBERON:0001454 distal tarsal bone 3 13 25462 -UBERON:0001455 cuboid bone 13 25463 -UBERON:0010723 os vesalianum pedis 13 25464 -UBERON:0010737 distal tarsal bone 4 13 25465 -UBERON:0010738 distal tarsal bone 5 13 25466 -UBERON:0012289 fused tarsal bones 2 and 3 13 25467 -UBERON:0013649 fused tarsal bones 1 and 2 13 25468 -UBERON:3001002 basale commune (tarsal) 13 25469 -UBERON:0011679 proximal tarsal bone 12 25470 -UBERON:0001450 calcaneus 13 25471 -UBERON:0002395 talus 13 25472 -UBERON:0011678 hindlimb intermedium bone 13 25473 -UBERON:0012126 fibulare 13 25474 -UBERON:0012288 centroquartal bone 12 25475 -UBERON:3010045 centrale 1 12 25476 -UBERON:3010073 centrale 2 12 25477 -UBERON:4200011 pedal centrale 12 25478 -UBERON:4200152 intertarsale sesamoid 12 25479 -UBERON:0012131 centrale 11 25480 -UBERON:0001451 navicular bone of pes 12 25481 -UBERON:0007958 central carpal bone 12 25482 -UBERON:3010045 centrale 1 12 25483 -UBERON:3010060 centrale (fore) 12 25484 -UBERON:3010073 centrale 2 12 25485 -UBERON:4200011 pedal centrale 12 25486 -UBERON:4200083 postaxial centrale 12 25487 -UBERON:4200084 preaxial centrale 12 25488 -UBERON:0014395 proximal mesopodial bone 11 25489 -UBERON:0001480 proximal carpal bone 12 25490 -UBERON:0001427 radiale 13 25491 -UBERON:0001428 intermedium 13 25492 -UBERON:0001429 pisiform 13 25493 -UBERON:0002445 ulnare 13 25494 -UBERON:0007960 scapholunate 13 25495 -UBERON:0012124 avian scapholunar bone 13 25496 -UBERON:0011679 proximal tarsal bone 12 25497 -UBERON:0001450 calcaneus 13 25498 -UBERON:0002395 talus 13 25499 -UBERON:0011678 hindlimb intermedium bone 13 25500 -UBERON:0012126 fibulare 13 25501 -UBERON:0018102 distal mesopodial bone 11 25502 -UBERON:0001481 distal carpal bone 12 25503 -UBERON:0001430 distal carpal bone 1 13 25504 -UBERON:0001431 distal carpal bone 2 13 25505 -UBERON:0001432 distal carpal bone 3 13 25506 -UBERON:0001433 distal carpal bone 4 13 25507 -UBERON:0010726 os vesalianum manus 13 25508 -UBERON:0010739 distal carpal bone 5 13 25509 -UBERON:0012290 fused carpal bones 2 and 3 13 25510 -UBERON:3000965 basale commune (carpal) 13 25511 -UBERON:0010721 distal tarsal bone 12 25512 -UBERON:0001452 distal tarsal bone 1 13 25513 -UBERON:0001453 distal tarsal bone 2 13 25514 -UBERON:0001454 distal tarsal bone 3 13 25515 -UBERON:0001455 cuboid bone 13 25516 -UBERON:0010723 os vesalianum pedis 13 25517 -UBERON:0010737 distal tarsal bone 4 13 25518 -UBERON:0010738 distal tarsal bone 5 13 25519 -UBERON:0012289 fused tarsal bones 2 and 3 13 25520 -UBERON:0013649 fused tarsal bones 1 and 2 13 25521 -UBERON:3001002 basale commune (tarsal) 13 25522 -UBERON:0005897 manus bone 10 25523 -UBERON:0001435 carpal bone 11 25524 -UBERON:0001480 proximal carpal bone 12 25525 -UBERON:0001427 radiale 13 25526 -UBERON:0001428 intermedium 13 25527 -UBERON:0001429 pisiform 13 25528 -UBERON:0002445 ulnare 13 25529 -UBERON:0007960 scapholunate 13 25530 -UBERON:0012124 avian scapholunar bone 13 25531 -UBERON:0001481 distal carpal bone 12 25532 -UBERON:0001430 distal carpal bone 1 13 25533 -UBERON:0001431 distal carpal bone 2 13 25534 -UBERON:0001432 distal carpal bone 3 13 25535 -UBERON:0001433 distal carpal bone 4 13 25536 -UBERON:0010726 os vesalianum manus 13 25537 -UBERON:0010739 distal carpal bone 5 13 25538 -UBERON:0012290 fused carpal bones 2 and 3 13 25539 -UBERON:3000965 basale commune (carpal) 13 25540 -UBERON:0007958 central carpal bone 12 25541 -UBERON:0007959 falciform carpal bone 12 25542 -UBERON:0008257 radial sesamoid 12 25543 -UBERON:3010060 centrale (fore) 12 25544 -UBERON:4200180 semilunate carpal 12 25545 -UBERON:0007997 sesamoid bone of manus 11 25546 -UBERON:0001429 pisiform 12 25547 -UBERON:0007991 proximal sesamoid bone of manus 12 25548 -UBERON:0008257 radial sesamoid 12 25549 -UBERON:0011205 carpometacarpus 11 25550 -UBERON:0012358 manual digitopodium bone 11 25551 -UBERON:0002374 metacarpal bone 12 25552 -UBERON:0003645 metacarpal bone of digit 1 13 25553 -UBERON:0003646 metacarpal bone of digit 2 13 25554 -UBERON:0003647 metacarpal bone of digit 3 13 25555 -UBERON:0003648 metacarpal bone of digit 4 13 25556 -UBERON:0003649 metacarpal bone of digit 5 13 25557 -UBERON:0013587 fused metacarpal bones 3 and 4 13 25558 -UBERON:0004249 manual digit bone 12 25559 -UBERON:0001436 phalanx of manus 13 25560 -UBERON:0002234 proximal phalanx of manus 14 25561 -UBERON:0004328 proximal phalanx of manual digit 2 15 25562 -UBERON:0004329 proximal phalanx of manual digit 3 15 25563 -UBERON:0004330 proximal phalanx of manual digit 4 15 25564 -UBERON:0004331 proximal phalanx of manual digit 5 15 25565 -UBERON:0004338 proximal phalanx of manual digit 1 15 25566 -UBERON:0003620 manual digit 1 phalanx 14 25567 -UBERON:0004337 distal phalanx of manual digit 1 15 25568 -UBERON:0004338 proximal phalanx of manual digit 1 15 25569 -UBERON:4200219 middle phalanx of manual digit 1 15 25570 -UBERON:0003636 manual digit 2 phalanx 14 25571 -UBERON:0004311 distal phalanx of manual digit 2 15 25572 -UBERON:0004320 middle phalanx of manual digit 2 15 25573 -UBERON:0004328 proximal phalanx of manual digit 2 15 25574 -UBERON:0003637 manual digit 3 phalanx 14 25575 -UBERON:0004312 distal phalanx of manual digit 3 15 25576 -UBERON:0004321 middle phalanx of manual digit 3 15 25577 -UBERON:0004329 proximal phalanx of manual digit 3 15 25578 -UBERON:0003638 manual digit 4 phalanx 14 25579 -UBERON:0004313 distal phalanx of manual digit 4 15 25580 -UBERON:0004322 middle phalanx of manual digit 4 15 25581 -UBERON:0004330 proximal phalanx of manual digit 4 15 25582 -UBERON:0003639 manual digit 5 phalanx 14 25583 -UBERON:0004314 distal phalanx of manual digit 5 15 25584 -UBERON:0004323 middle phalanx of manual digit 5 15 25585 -UBERON:0004331 proximal phalanx of manual digit 5 15 25586 -UBERON:0003864 middle phalanx of manus 14 25587 -UBERON:0004320 middle phalanx of manual digit 2 15 25588 -UBERON:0004321 middle phalanx of manual digit 3 15 25589 -UBERON:0004322 middle phalanx of manual digit 4 15 25590 -UBERON:0004323 middle phalanx of manual digit 5 15 25591 -UBERON:4200219 middle phalanx of manual digit 1 15 25592 -UBERON:0003865 distal phalanx of manus 14 25593 -UBERON:0004311 distal phalanx of manual digit 2 15 25594 -UBERON:0004312 distal phalanx of manual digit 3 15 25595 -UBERON:0004313 distal phalanx of manual digit 4 15 25596 -UBERON:0004314 distal phalanx of manual digit 5 15 25597 -UBERON:0004337 distal phalanx of manual digit 1 15 25598 -UBERON:0007991 proximal sesamoid bone of manus 13 25599 -UBERON:3000856 intercalary element of fore digit 13 25600 -UBERON:0012268 equine forelimb splint bone 12 25601 -UBERON:0005899 pes bone 10 25602 -UBERON:0001447 tarsal bone 11 25603 -UBERON:0001451 navicular bone of pes 12 25604 -UBERON:0006836 medial tibial tarsal bone 12 25605 -UBERON:0010721 distal tarsal bone 12 25606 -UBERON:0001452 distal tarsal bone 1 13 25607 -UBERON:0001453 distal tarsal bone 2 13 25608 -UBERON:0001454 distal tarsal bone 3 13 25609 -UBERON:0001455 cuboid bone 13 25610 -UBERON:0010723 os vesalianum pedis 13 25611 -UBERON:0010737 distal tarsal bone 4 13 25612 -UBERON:0010738 distal tarsal bone 5 13 25613 -UBERON:0012289 fused tarsal bones 2 and 3 13 25614 -UBERON:0013649 fused tarsal bones 1 and 2 13 25615 -UBERON:3001002 basale commune (tarsal) 13 25616 -UBERON:0011679 proximal tarsal bone 12 25617 -UBERON:0001450 calcaneus 13 25618 -UBERON:0002395 talus 13 25619 -UBERON:0011678 hindlimb intermedium bone 13 25620 -UBERON:0012126 fibulare 13 25621 -UBERON:0012288 centroquartal bone 12 25622 -UBERON:3010045 centrale 1 12 25623 -UBERON:3010073 centrale 2 12 25624 -UBERON:4200011 pedal centrale 12 25625 -UBERON:4200152 intertarsale sesamoid 12 25626 -UBERON:0008000 sesamoid bone of pes 11 25627 -UBERON:0007990 proximal sesamoid bone of pes 12 25628 -UBERON:4200152 intertarsale sesamoid 12 25629 -UBERON:0008195 tarsometatarsus 11 25630 -UBERON:0010725 accessory navicular bone 11 25631 -UBERON:0012359 pedal digitopodium bone 11 25632 -UBERON:0001448 metatarsal bone 12 25633 -UBERON:0003650 metatarsal bone of digit 1 13 25634 -UBERON:0003651 metatarsal bone of digit 2 13 25635 -UBERON:0003652 metatarsal bone of digit 3 13 25636 -UBERON:0003653 metatarsal bone of digit 4 13 25637 -UBERON:0003654 metatarsal bone of digit 5 13 25638 -UBERON:0013588 fused metatarsal bones 3 and 4 13 25639 -UBERON:0014763 fused metatarsal bones 2-4 14 25640 -UBERON:4200153 metatarsal bone of digit 6 13 25641 -UBERON:4200157 metatarsal bone of digit 7 13 25642 -UBERON:4200158 metatarsal bone of digit 8 13 25643 -UBERON:0004248 pedal digit bone 12 25644 -UBERON:0001449 phalanx of pes 13 25645 -UBERON:0003640 pedal digit 1 phalanx 14 25646 -UBERON:0004315 distal phalanx of pedal digit 1 15 25647 -UBERON:0004332 proximal phalanx of pedal digit 1 15 25648 -UBERON:0003641 pedal digit 2 phalanx 14 25649 -UBERON:0004316 distal phalanx of pedal digit 2 15 25650 -UBERON:0004324 middle phalanx of pedal digit 2 15 25651 -UBERON:0004333 proximal phalanx of pedal digit 2 15 25652 -UBERON:0003642 pedal digit 3 phalanx 14 25653 -UBERON:0004317 distal phalanx of pedal digit 3 15 25654 -UBERON:0004325 middle phalanx of pedal digit 3 15 25655 -UBERON:0004334 proximal phalanx of pedal digit 3 15 25656 -UBERON:0003862 pedal digit 4 phalanx 14 25657 -UBERON:0004318 distal phalanx of pedal digit 4 15 25658 -UBERON:0004326 middle phalanx of pedal digit 4 15 25659 -UBERON:0004335 proximal phalanx of pedal digit 4 15 25660 -UBERON:0003863 pedal digit 5 phalanx 14 25661 -UBERON:0004319 distal phalanx of pedal digit 5 15 25662 -UBERON:0004327 middle phalanx of pedal digit 5 15 25663 -UBERON:0004336 proximal phalanx of pedal digit 5 15 25664 -UBERON:0003866 middle phalanx of pes 14 25665 -UBERON:0004324 middle phalanx of pedal digit 2 15 25666 -UBERON:0004325 middle phalanx of pedal digit 3 15 25667 -UBERON:0004326 middle phalanx of pedal digit 4 15 25668 -UBERON:0004327 middle phalanx of pedal digit 5 15 25669 -UBERON:0003867 distal phalanx of pes 14 25670 -UBERON:0004315 distal phalanx of pedal digit 1 15 25671 -UBERON:0004316 distal phalanx of pedal digit 2 15 25672 -UBERON:0004317 distal phalanx of pedal digit 3 15 25673 -UBERON:0004318 distal phalanx of pedal digit 4 15 25674 -UBERON:0004319 distal phalanx of pedal digit 5 15 25675 -UBERON:0003868 proximal phalanx of pes 14 25676 -UBERON:0004332 proximal phalanx of pedal digit 1 15 25677 -UBERON:0004333 proximal phalanx of pedal digit 2 15 25678 -UBERON:0004334 proximal phalanx of pedal digit 3 15 25679 -UBERON:0004335 proximal phalanx of pedal digit 4 15 25680 -UBERON:0004336 proximal phalanx of pedal digit 5 15 25681 -UBERON:4100009 pedal digit 7 phalanx 14 25682 -UBERON:0007990 proximal sesamoid bone of pes 13 25683 -UBERON:3000931 intercalary element of hind digit 13 25684 -UBERON:3010675 bony nodule of terminal phalanx of hind digit 13 25685 -UBERON:0012269 equine hindlimb splint bone 12 25686 -UBERON:0010759 equine distal sesamoid 10 25687 -UBERON:0012357 digitopodium bone 10 25688 -UBERON:0003221 phalanx 11 25689 -UBERON:0001436 phalanx of manus 12 25690 -UBERON:0002234 proximal phalanx of manus 13 25691 -UBERON:0004328 proximal phalanx of manual digit 2 14 25692 -UBERON:0004329 proximal phalanx of manual digit 3 14 25693 -UBERON:0004330 proximal phalanx of manual digit 4 14 25694 -UBERON:0004331 proximal phalanx of manual digit 5 14 25695 -UBERON:0004338 proximal phalanx of manual digit 1 14 25696 -UBERON:0003620 manual digit 1 phalanx 13 25697 -UBERON:0004337 distal phalanx of manual digit 1 14 25698 -UBERON:0004338 proximal phalanx of manual digit 1 14 25699 -UBERON:4200219 middle phalanx of manual digit 1 14 25700 -UBERON:0003636 manual digit 2 phalanx 13 25701 -UBERON:0004311 distal phalanx of manual digit 2 14 25702 -UBERON:0004320 middle phalanx of manual digit 2 14 25703 -UBERON:0004328 proximal phalanx of manual digit 2 14 25704 -UBERON:0003637 manual digit 3 phalanx 13 25705 -UBERON:0004312 distal phalanx of manual digit 3 14 25706 -UBERON:0004321 middle phalanx of manual digit 3 14 25707 -UBERON:0004329 proximal phalanx of manual digit 3 14 25708 -UBERON:0003638 manual digit 4 phalanx 13 25709 -UBERON:0004313 distal phalanx of manual digit 4 14 25710 -UBERON:0004322 middle phalanx of manual digit 4 14 25711 -UBERON:0004330 proximal phalanx of manual digit 4 14 25712 -UBERON:0003639 manual digit 5 phalanx 13 25713 -UBERON:0004314 distal phalanx of manual digit 5 14 25714 -UBERON:0004323 middle phalanx of manual digit 5 14 25715 -UBERON:0004331 proximal phalanx of manual digit 5 14 25716 -UBERON:0003864 middle phalanx of manus 13 25717 -UBERON:0004320 middle phalanx of manual digit 2 14 25718 -UBERON:0004321 middle phalanx of manual digit 3 14 25719 -UBERON:0004322 middle phalanx of manual digit 4 14 25720 -UBERON:0004323 middle phalanx of manual digit 5 14 25721 -UBERON:4200219 middle phalanx of manual digit 1 14 25722 -UBERON:0003865 distal phalanx of manus 13 25723 -UBERON:0004311 distal phalanx of manual digit 2 14 25724 -UBERON:0004312 distal phalanx of manual digit 3 14 25725 -UBERON:0004313 distal phalanx of manual digit 4 14 25726 -UBERON:0004314 distal phalanx of manual digit 5 14 25727 -UBERON:0004337 distal phalanx of manual digit 1 14 25728 -UBERON:0001449 phalanx of pes 12 25729 -UBERON:0003640 pedal digit 1 phalanx 13 25730 -UBERON:0004315 distal phalanx of pedal digit 1 14 25731 -UBERON:0004332 proximal phalanx of pedal digit 1 14 25732 -UBERON:0003641 pedal digit 2 phalanx 13 25733 -UBERON:0004316 distal phalanx of pedal digit 2 14 25734 -UBERON:0004324 middle phalanx of pedal digit 2 14 25735 -UBERON:0004333 proximal phalanx of pedal digit 2 14 25736 -UBERON:0003642 pedal digit 3 phalanx 13 25737 -UBERON:0004317 distal phalanx of pedal digit 3 14 25738 -UBERON:0004325 middle phalanx of pedal digit 3 14 25739 -UBERON:0004334 proximal phalanx of pedal digit 3 14 25740 -UBERON:0003862 pedal digit 4 phalanx 13 25741 -UBERON:0004318 distal phalanx of pedal digit 4 14 25742 -UBERON:0004326 middle phalanx of pedal digit 4 14 25743 -UBERON:0004335 proximal phalanx of pedal digit 4 14 25744 -UBERON:0003863 pedal digit 5 phalanx 13 25745 -UBERON:0004319 distal phalanx of pedal digit 5 14 25746 -UBERON:0004327 middle phalanx of pedal digit 5 14 25747 -UBERON:0004336 proximal phalanx of pedal digit 5 14 25748 -UBERON:0003866 middle phalanx of pes 13 25749 -UBERON:0004324 middle phalanx of pedal digit 2 14 25750 -UBERON:0004325 middle phalanx of pedal digit 3 14 25751 -UBERON:0004326 middle phalanx of pedal digit 4 14 25752 -UBERON:0004327 middle phalanx of pedal digit 5 14 25753 -UBERON:0003867 distal phalanx of pes 13 25754 -UBERON:0004315 distal phalanx of pedal digit 1 14 25755 -UBERON:0004316 distal phalanx of pedal digit 2 14 25756 -UBERON:0004317 distal phalanx of pedal digit 3 14 25757 -UBERON:0004318 distal phalanx of pedal digit 4 14 25758 -UBERON:0004319 distal phalanx of pedal digit 5 14 25759 -UBERON:0003868 proximal phalanx of pes 13 25760 -UBERON:0004332 proximal phalanx of pedal digit 1 14 25761 -UBERON:0004333 proximal phalanx of pedal digit 2 14 25762 -UBERON:0004334 proximal phalanx of pedal digit 3 14 25763 -UBERON:0004335 proximal phalanx of pedal digit 4 14 25764 -UBERON:0004336 proximal phalanx of pedal digit 5 14 25765 -UBERON:4100009 pedal digit 7 phalanx 13 25766 -UBERON:0004300 distal phalanx 12 25767 -UBERON:0003865 distal phalanx of manus 13 25768 -UBERON:0004311 distal phalanx of manual digit 2 14 25769 -UBERON:0004312 distal phalanx of manual digit 3 14 25770 -UBERON:0004313 distal phalanx of manual digit 4 14 25771 -UBERON:0004314 distal phalanx of manual digit 5 14 25772 -UBERON:0004337 distal phalanx of manual digit 1 14 25773 -UBERON:0003867 distal phalanx of pes 13 25774 -UBERON:0004315 distal phalanx of pedal digit 1 14 25775 -UBERON:0004316 distal phalanx of pedal digit 2 14 25776 -UBERON:0004317 distal phalanx of pedal digit 3 14 25777 -UBERON:0004318 distal phalanx of pedal digit 4 14 25778 -UBERON:0004319 distal phalanx of pedal digit 5 14 25779 -UBERON:0014483 distal phalanx of digit 1 13 25780 -UBERON:0004315 distal phalanx of pedal digit 1 14 25781 -UBERON:0004337 distal phalanx of manual digit 1 14 25782 -UBERON:0014484 distal phalanx of digit 2 13 25783 -UBERON:0004311 distal phalanx of manual digit 2 14 25784 -UBERON:0004316 distal phalanx of pedal digit 2 14 25785 -UBERON:0014485 distal phalanx of digit 3 13 25786 -UBERON:0004312 distal phalanx of manual digit 3 14 25787 -UBERON:0004317 distal phalanx of pedal digit 3 14 25788 -UBERON:0014486 distal phalanx of digit 4 13 25789 -UBERON:0004313 distal phalanx of manual digit 4 14 25790 -UBERON:0004318 distal phalanx of pedal digit 4 14 25791 -UBERON:0014487 distal phalanx of digit 5 13 25792 -UBERON:0004314 distal phalanx of manual digit 5 14 25793 -UBERON:0004319 distal phalanx of pedal digit 5 14 25794 -UBERON:3010746 T-shaped terminal phalanx 13 25795 -UBERON:0004301 middle phalanx 12 25796 -UBERON:0003864 middle phalanx of manus 13 25797 -UBERON:0004320 middle phalanx of manual digit 2 14 25798 -UBERON:0004321 middle phalanx of manual digit 3 14 25799 -UBERON:0004322 middle phalanx of manual digit 4 14 25800 -UBERON:0004323 middle phalanx of manual digit 5 14 25801 -UBERON:4200219 middle phalanx of manual digit 1 14 25802 -UBERON:0003866 middle phalanx of pes 13 25803 -UBERON:0004324 middle phalanx of pedal digit 2 14 25804 -UBERON:0004325 middle phalanx of pedal digit 3 14 25805 -UBERON:0004326 middle phalanx of pedal digit 4 14 25806 -UBERON:0004327 middle phalanx of pedal digit 5 14 25807 -UBERON:0014488 middle phalanx of digit 2 13 25808 -UBERON:0004320 middle phalanx of manual digit 2 14 25809 -UBERON:0004324 middle phalanx of pedal digit 2 14 25810 -UBERON:0014489 middle phalanx of digit 3 13 25811 -UBERON:0004321 middle phalanx of manual digit 3 14 25812 -UBERON:0004325 middle phalanx of pedal digit 3 14 25813 -UBERON:0009555 short pastern bone 14 25814 -UBERON:0014490 middle phalanx of digit 4 13 25815 -UBERON:0004322 middle phalanx of manual digit 4 14 25816 -UBERON:0004326 middle phalanx of pedal digit 4 14 25817 -UBERON:0014491 middle phalanx of digit 5 13 25818 -UBERON:0004323 middle phalanx of manual digit 5 14 25819 -UBERON:0004327 middle phalanx of pedal digit 5 14 25820 -UBERON:0004302 proximal phalanx 12 25821 -UBERON:0002234 proximal phalanx of manus 13 25822 -UBERON:0004328 proximal phalanx of manual digit 2 14 25823 -UBERON:0004329 proximal phalanx of manual digit 3 14 25824 -UBERON:0004330 proximal phalanx of manual digit 4 14 25825 -UBERON:0004331 proximal phalanx of manual digit 5 14 25826 -UBERON:0004338 proximal phalanx of manual digit 1 14 25827 -UBERON:0003868 proximal phalanx of pes 13 25828 -UBERON:0004332 proximal phalanx of pedal digit 1 14 25829 -UBERON:0004333 proximal phalanx of pedal digit 2 14 25830 -UBERON:0004334 proximal phalanx of pedal digit 3 14 25831 -UBERON:0004335 proximal phalanx of pedal digit 4 14 25832 -UBERON:0004336 proximal phalanx of pedal digit 5 14 25833 -UBERON:0014501 proximal phalanx of digit 1 13 25834 -UBERON:0004332 proximal phalanx of pedal digit 1 14 25835 -UBERON:0004338 proximal phalanx of manual digit 1 14 25836 -UBERON:0014502 proximal phalanx of digit 2 13 25837 -UBERON:0004328 proximal phalanx of manual digit 2 14 25838 -UBERON:0004333 proximal phalanx of pedal digit 2 14 25839 -UBERON:0014503 proximal phalanx of digit 3 13 25840 -UBERON:0004329 proximal phalanx of manual digit 3 14 25841 -UBERON:0004334 proximal phalanx of pedal digit 3 14 25842 -UBERON:0009556 long pastern bone 14 25843 -UBERON:0014504 proximal phalanx of digit 4 13 25844 -UBERON:0004330 proximal phalanx of manual digit 4 14 25845 -UBERON:0004335 proximal phalanx of pedal digit 4 14 25846 -UBERON:0014505 proximal phalanx of digit 5 13 25847 -UBERON:0004331 proximal phalanx of manual digit 5 14 25848 -UBERON:0004336 proximal phalanx of pedal digit 5 14 25849 -UBERON:0009558 pastern bone 12 25850 -UBERON:0009555 short pastern bone 13 25851 -UBERON:0009556 long pastern bone 13 25852 -UBERON:0018266 third phalanx 12 25853 -UBERON:0018322 fourth phalanx 12 25854 -UBERON:4100005 second phalanx 12 25855 -UBERON:0003821 metapodium bone 11 25856 -UBERON:0001448 metatarsal bone 12 25857 -UBERON:0003650 metatarsal bone of digit 1 13 25858 -UBERON:0003651 metatarsal bone of digit 2 13 25859 -UBERON:0003652 metatarsal bone of digit 3 13 25860 -UBERON:0003653 metatarsal bone of digit 4 13 25861 -UBERON:0003654 metatarsal bone of digit 5 13 25862 -UBERON:0013588 fused metatarsal bones 3 and 4 13 25863 -UBERON:0014763 fused metatarsal bones 2-4 14 25864 -UBERON:4200153 metatarsal bone of digit 6 13 25865 -UBERON:4200157 metatarsal bone of digit 7 13 25866 -UBERON:4200158 metatarsal bone of digit 8 13 25867 -UBERON:0002374 metacarpal bone 12 25868 -UBERON:0003645 metacarpal bone of digit 1 13 25869 -UBERON:0003646 metacarpal bone of digit 2 13 25870 -UBERON:0003647 metacarpal bone of digit 3 13 25871 -UBERON:0003648 metacarpal bone of digit 4 13 25872 -UBERON:0003649 metacarpal bone of digit 5 13 25873 -UBERON:0013587 fused metacarpal bones 3 and 4 13 25874 -UBERON:0012267 equine splint bone 12 25875 -UBERON:0012268 equine forelimb splint bone 13 25876 -UBERON:0012269 equine hindlimb splint bone 13 25877 -UBERON:0013581 metapodium bone 1 12 25878 -UBERON:0003645 metacarpal bone of digit 1 13 25879 -UBERON:0003650 metatarsal bone of digit 1 13 25880 -UBERON:0013582 metapodium bone 2 12 25881 -UBERON:0003646 metacarpal bone of digit 2 13 25882 -UBERON:0003651 metatarsal bone of digit 2 13 25883 -UBERON:0013583 metapodium bone 3 12 25884 -UBERON:0003647 metacarpal bone of digit 3 13 25885 -UBERON:0003652 metatarsal bone of digit 3 13 25886 -UBERON:0013584 metapodium bone 4 12 25887 -UBERON:0003648 metacarpal bone of digit 4 13 25888 -UBERON:0003653 metatarsal bone of digit 4 13 25889 -UBERON:0013585 metapodium bone 5 12 25890 -UBERON:0003649 metacarpal bone of digit 5 13 25891 -UBERON:0003654 metatarsal bone of digit 5 13 25892 -UBERON:0013586 fused metapodial bones 3 and 4 12 25893 -UBERON:0013587 fused metacarpal bones 3 and 4 13 25894 -UBERON:0013588 fused metatarsal bones 3 and 4 13 25895 -UBERON:0014763 fused metatarsal bones 2-4 14 25896 -UBERON:0014762 fused metapodial bones 2-4 13 25897 -UBERON:0014763 fused metatarsal bones 2-4 14 25898 -UBERON:4200154 metapodium bone 6 12 25899 -UBERON:4200153 metatarsal bone of digit 6 13 25900 -UBERON:4200155 metapodium bone 7 12 25901 -UBERON:4200157 metatarsal bone of digit 7 13 25902 -UBERON:4200156 metapodium bone 8 12 25903 -UBERON:4200158 metatarsal bone of digit 8 13 25904 -UBERON:0012358 manual digitopodium bone 11 25905 -UBERON:0002374 metacarpal bone 12 25906 -UBERON:0003645 metacarpal bone of digit 1 13 25907 -UBERON:0003646 metacarpal bone of digit 2 13 25908 -UBERON:0003647 metacarpal bone of digit 3 13 25909 -UBERON:0003648 metacarpal bone of digit 4 13 25910 -UBERON:0003649 metacarpal bone of digit 5 13 25911 -UBERON:0013587 fused metacarpal bones 3 and 4 13 25912 -UBERON:0004249 manual digit bone 12 25913 -UBERON:0001436 phalanx of manus 13 25914 -UBERON:0002234 proximal phalanx of manus 14 25915 -UBERON:0004328 proximal phalanx of manual digit 2 15 25916 -UBERON:0004329 proximal phalanx of manual digit 3 15 25917 -UBERON:0004330 proximal phalanx of manual digit 4 15 25918 -UBERON:0004331 proximal phalanx of manual digit 5 15 25919 -UBERON:0004338 proximal phalanx of manual digit 1 15 25920 -UBERON:0003620 manual digit 1 phalanx 14 25921 -UBERON:0004337 distal phalanx of manual digit 1 15 25922 -UBERON:0004338 proximal phalanx of manual digit 1 15 25923 -UBERON:4200219 middle phalanx of manual digit 1 15 25924 -UBERON:0003636 manual digit 2 phalanx 14 25925 -UBERON:0004311 distal phalanx of manual digit 2 15 25926 -UBERON:0004320 middle phalanx of manual digit 2 15 25927 -UBERON:0004328 proximal phalanx of manual digit 2 15 25928 -UBERON:0003637 manual digit 3 phalanx 14 25929 -UBERON:0004312 distal phalanx of manual digit 3 15 25930 -UBERON:0004321 middle phalanx of manual digit 3 15 25931 -UBERON:0004329 proximal phalanx of manual digit 3 15 25932 -UBERON:0003638 manual digit 4 phalanx 14 25933 -UBERON:0004313 distal phalanx of manual digit 4 15 25934 -UBERON:0004322 middle phalanx of manual digit 4 15 25935 -UBERON:0004330 proximal phalanx of manual digit 4 15 25936 -UBERON:0003639 manual digit 5 phalanx 14 25937 -UBERON:0004314 distal phalanx of manual digit 5 15 25938 -UBERON:0004323 middle phalanx of manual digit 5 15 25939 -UBERON:0004331 proximal phalanx of manual digit 5 15 25940 -UBERON:0003864 middle phalanx of manus 14 25941 -UBERON:0004320 middle phalanx of manual digit 2 15 25942 -UBERON:0004321 middle phalanx of manual digit 3 15 25943 -UBERON:0004322 middle phalanx of manual digit 4 15 25944 -UBERON:0004323 middle phalanx of manual digit 5 15 25945 -UBERON:4200219 middle phalanx of manual digit 1 15 25946 -UBERON:0003865 distal phalanx of manus 14 25947 -UBERON:0004311 distal phalanx of manual digit 2 15 25948 -UBERON:0004312 distal phalanx of manual digit 3 15 25949 -UBERON:0004313 distal phalanx of manual digit 4 15 25950 -UBERON:0004314 distal phalanx of manual digit 5 15 25951 -UBERON:0004337 distal phalanx of manual digit 1 15 25952 -UBERON:0007991 proximal sesamoid bone of manus 13 25953 -UBERON:3000856 intercalary element of fore digit 13 25954 -UBERON:0012268 equine forelimb splint bone 12 25955 -UBERON:0012359 pedal digitopodium bone 11 25956 -UBERON:0001448 metatarsal bone 12 25957 -UBERON:0003650 metatarsal bone of digit 1 13 25958 -UBERON:0003651 metatarsal bone of digit 2 13 25959 -UBERON:0003652 metatarsal bone of digit 3 13 25960 -UBERON:0003653 metatarsal bone of digit 4 13 25961 -UBERON:0003654 metatarsal bone of digit 5 13 25962 -UBERON:0013588 fused metatarsal bones 3 and 4 13 25963 -UBERON:0014763 fused metatarsal bones 2-4 14 25964 -UBERON:4200153 metatarsal bone of digit 6 13 25965 -UBERON:4200157 metatarsal bone of digit 7 13 25966 -UBERON:4200158 metatarsal bone of digit 8 13 25967 -UBERON:0004248 pedal digit bone 12 25968 -UBERON:0001449 phalanx of pes 13 25969 -UBERON:0003640 pedal digit 1 phalanx 14 25970 -UBERON:0004315 distal phalanx of pedal digit 1 15 25971 -UBERON:0004332 proximal phalanx of pedal digit 1 15 25972 -UBERON:0003641 pedal digit 2 phalanx 14 25973 -UBERON:0004316 distal phalanx of pedal digit 2 15 25974 -UBERON:0004324 middle phalanx of pedal digit 2 15 25975 -UBERON:0004333 proximal phalanx of pedal digit 2 15 25976 -UBERON:0003642 pedal digit 3 phalanx 14 25977 -UBERON:0004317 distal phalanx of pedal digit 3 15 25978 -UBERON:0004325 middle phalanx of pedal digit 3 15 25979 -UBERON:0004334 proximal phalanx of pedal digit 3 15 25980 -UBERON:0003862 pedal digit 4 phalanx 14 25981 -UBERON:0004318 distal phalanx of pedal digit 4 15 25982 -UBERON:0004326 middle phalanx of pedal digit 4 15 25983 -UBERON:0004335 proximal phalanx of pedal digit 4 15 25984 -UBERON:0003863 pedal digit 5 phalanx 14 25985 -UBERON:0004319 distal phalanx of pedal digit 5 15 25986 -UBERON:0004327 middle phalanx of pedal digit 5 15 25987 -UBERON:0004336 proximal phalanx of pedal digit 5 15 25988 -UBERON:0003866 middle phalanx of pes 14 25989 -UBERON:0004324 middle phalanx of pedal digit 2 15 25990 -UBERON:0004325 middle phalanx of pedal digit 3 15 25991 -UBERON:0004326 middle phalanx of pedal digit 4 15 25992 -UBERON:0004327 middle phalanx of pedal digit 5 15 25993 -UBERON:0003867 distal phalanx of pes 14 25994 -UBERON:0004315 distal phalanx of pedal digit 1 15 25995 -UBERON:0004316 distal phalanx of pedal digit 2 15 25996 -UBERON:0004317 distal phalanx of pedal digit 3 15 25997 -UBERON:0004318 distal phalanx of pedal digit 4 15 25998 -UBERON:0004319 distal phalanx of pedal digit 5 15 25999 -UBERON:0003868 proximal phalanx of pes 14 26000 -UBERON:0004332 proximal phalanx of pedal digit 1 15 26001 -UBERON:0004333 proximal phalanx of pedal digit 2 15 26002 -UBERON:0004334 proximal phalanx of pedal digit 3 15 26003 -UBERON:0004335 proximal phalanx of pedal digit 4 15 26004 -UBERON:0004336 proximal phalanx of pedal digit 5 15 26005 -UBERON:4100009 pedal digit 7 phalanx 14 26006 -UBERON:0007990 proximal sesamoid bone of pes 13 26007 -UBERON:3000931 intercalary element of hind digit 13 26008 -UBERON:3010675 bony nodule of terminal phalanx of hind digit 13 26009 -UBERON:0012269 equine hindlimb splint bone 12 26010 -UBERON:3010624 subarticular sesamoid 11 26011 -UBERON:0010881 limb cartilage element 8 26012 -UBERON:0010883 forelimb cartilage element 9 26013 -UBERON:0006245 humerus cartilage element 10 26014 -UBERON:0006286 radius cartilage element 10 26015 -UBERON:0006306 ulna cartilage element 10 26016 -UBERON:0008254 styliform cartilage 10 26017 -UBERON:0010848 radius-ulna cartilage element 10 26018 -UBERON:0035128 manus cartilage element 10 26019 -UBERON:0010686 manual digit phalanx cartilage element 11 26020 -UBERON:0010675 manual digit 1 phalanx cartilage element 12 26021 -UBERON:0010676 manual digit 2 phalanx cartilage element 12 26022 -UBERON:0010677 manual digit 3 phalanx cartilage element 12 26023 -UBERON:0010678 manual digit 4 phalanx cartilage element 12 26024 -UBERON:0010679 manual digit 5 phalanx cartilage element 12 26025 -UBERON:0010699 manual digit metacarpus cartilage element 11 26026 -UBERON:0010570 manual digit 1 metacarpus cartilage element 12 26027 -UBERON:0010571 manual digit 2 metacarpus cartilage element 12 26028 -UBERON:0010572 manual digit 3 metacarpus cartilage element 12 26029 -UBERON:0010573 manual digit 4 metacarpus cartilage element 12 26030 -UBERON:0010574 manual digit 5 metacarpus cartilage element 12 26031 -UBERON:0015069 distal carpal cartilage element 11 26032 -UBERON:0015079 proximal carpal cartilage 11 26033 -UBERON:0015085 distal carpal bone 1 cartilage 11 26034 -UBERON:0015088 distal carpal bone 2 cartilage 11 26035 -UBERON:0015091 distal carpal bone 3 cartilage 11 26036 -UBERON:0015094 distal carpal bone 4 cartilage 11 26037 -UBERON:0015097 distal carpal bone 5 cartilage 11 26038 -UBERON:0010885 hindlimb cartilage element 9 26039 -UBERON:0010129 femur cartilage element 10 26040 -UBERON:0010849 tibia cartilage element 10 26041 -UBERON:0010851 fibula cartilage element 10 26042 -UBERON:0010902 tibiotarsus cartilage element 10 26043 -UBERON:0035129 pes cartilage element 10 26044 -UBERON:0010685 pedal digit phalanx cartilage element 11 26045 -UBERON:0010680 pedal digit 1 phalanx cartilage element 12 26046 -UBERON:0010681 pedal digit 2 phalanx cartilage element 12 26047 -UBERON:0010682 pedal digit 3 phalanx cartilage element 12 26048 -UBERON:0010683 pedal digit 4 phalanx cartilage element 12 26049 -UBERON:0010684 pedal digit 5 phalanx cartilage element 12 26050 -UBERON:0010697 pedal digit metatarsal cartilage element 11 26051 -UBERON:0010557 pedal digit 1 metatarsal cartilage element 12 26052 -UBERON:0010558 pedal digit 2 metatarsal cartilage element 12 26053 -UBERON:0010559 pedal digit 3 metatarsal cartilage element 12 26054 -UBERON:0010560 pedal digit 4 metatarsal cartilage element 12 26055 -UBERON:0010561 pedal digit 5 metatarsal cartilage element 12 26056 -UBERON:0010842 calcaneum cartilage element 11 26057 -UBERON:0010900 tarsometatarsus cartilage element 11 26058 -UBERON:0015082 proximal tarsal cartilage 11 26059 -UBERON:0015100 distal tarsal cartilage 11 26060 -UBERON:0015103 distal tarsal bone 1 cartilage 12 26061 -UBERON:0015106 distal tarsal bone 2 cartilage 12 26062 -UBERON:0015109 distal tarsal bone 3 cartilage 12 26063 -UBERON:0015112 distal tarsal bone 4 cartilage 12 26064 -UBERON:0015115 distal tarsal bone 5 cartilage 12 26065 -UBERON:0015064 autopod cartilage 9 26066 -UBERON:0010701 phalanx cartilage element 10 26067 -UBERON:0010685 pedal digit phalanx cartilage element 11 26068 -UBERON:0010680 pedal digit 1 phalanx cartilage element 12 26069 -UBERON:0010681 pedal digit 2 phalanx cartilage element 12 26070 -UBERON:0010682 pedal digit 3 phalanx cartilage element 12 26071 -UBERON:0010683 pedal digit 4 phalanx cartilage element 12 26072 -UBERON:0010684 pedal digit 5 phalanx cartilage element 12 26073 -UBERON:0010686 manual digit phalanx cartilage element 11 26074 -UBERON:0010675 manual digit 1 phalanx cartilage element 12 26075 -UBERON:0010676 manual digit 2 phalanx cartilage element 12 26076 -UBERON:0010677 manual digit 3 phalanx cartilage element 12 26077 -UBERON:0010678 manual digit 4 phalanx cartilage element 12 26078 -UBERON:0010679 manual digit 5 phalanx cartilage element 12 26079 -UBERON:0015077 centrale cartilage 10 26080 -UBERON:0017751 proximal mesopodial cartilage element 10 26081 -UBERON:0015079 proximal carpal cartilage 11 26082 -UBERON:0015082 proximal tarsal cartilage 11 26083 -UBERON:0018100 distal mesopodial cartilage element 10 26084 -UBERON:0015069 distal carpal cartilage element 11 26085 -UBERON:0015100 distal tarsal cartilage 11 26086 -UBERON:0015103 distal tarsal bone 1 cartilage 12 26087 -UBERON:0015106 distal tarsal bone 2 cartilage 12 26088 -UBERON:0015109 distal tarsal bone 3 cartilage 12 26089 -UBERON:0015112 distal tarsal bone 4 cartilage 12 26090 -UBERON:0015115 distal tarsal bone 5 cartilage 12 26091 -UBERON:0035128 manus cartilage element 10 26092 -UBERON:0010686 manual digit phalanx cartilage element 11 26093 -UBERON:0010675 manual digit 1 phalanx cartilage element 12 26094 -UBERON:0010676 manual digit 2 phalanx cartilage element 12 26095 -UBERON:0010677 manual digit 3 phalanx cartilage element 12 26096 -UBERON:0010678 manual digit 4 phalanx cartilage element 12 26097 -UBERON:0010679 manual digit 5 phalanx cartilage element 12 26098 -UBERON:0010699 manual digit metacarpus cartilage element 11 26099 -UBERON:0010570 manual digit 1 metacarpus cartilage element 12 26100 -UBERON:0010571 manual digit 2 metacarpus cartilage element 12 26101 -UBERON:0010572 manual digit 3 metacarpus cartilage element 12 26102 -UBERON:0010573 manual digit 4 metacarpus cartilage element 12 26103 -UBERON:0010574 manual digit 5 metacarpus cartilage element 12 26104 -UBERON:0015069 distal carpal cartilage element 11 26105 -UBERON:0015079 proximal carpal cartilage 11 26106 -UBERON:0015085 distal carpal bone 1 cartilage 11 26107 -UBERON:0015088 distal carpal bone 2 cartilage 11 26108 -UBERON:0015091 distal carpal bone 3 cartilage 11 26109 -UBERON:0015094 distal carpal bone 4 cartilage 11 26110 -UBERON:0015097 distal carpal bone 5 cartilage 11 26111 -UBERON:0035129 pes cartilage element 10 26112 -UBERON:0010685 pedal digit phalanx cartilage element 11 26113 -UBERON:0010680 pedal digit 1 phalanx cartilage element 12 26114 -UBERON:0010681 pedal digit 2 phalanx cartilage element 12 26115 -UBERON:0010682 pedal digit 3 phalanx cartilage element 12 26116 -UBERON:0010683 pedal digit 4 phalanx cartilage element 12 26117 -UBERON:0010684 pedal digit 5 phalanx cartilage element 12 26118 -UBERON:0010697 pedal digit metatarsal cartilage element 11 26119 -UBERON:0010557 pedal digit 1 metatarsal cartilage element 12 26120 -UBERON:0010558 pedal digit 2 metatarsal cartilage element 12 26121 -UBERON:0010559 pedal digit 3 metatarsal cartilage element 12 26122 -UBERON:0010560 pedal digit 4 metatarsal cartilage element 12 26123 -UBERON:0010561 pedal digit 5 metatarsal cartilage element 12 26124 -UBERON:0010842 calcaneum cartilage element 11 26125 -UBERON:0010900 tarsometatarsus cartilage element 11 26126 -UBERON:0015082 proximal tarsal cartilage 11 26127 -UBERON:0015100 distal tarsal cartilage 11 26128 -UBERON:0015103 distal tarsal bone 1 cartilage 12 26129 -UBERON:0015106 distal tarsal bone 2 cartilage 12 26130 -UBERON:0015109 distal tarsal bone 3 cartilage 12 26131 -UBERON:0015112 distal tarsal bone 4 cartilage 12 26132 -UBERON:0015115 distal tarsal bone 5 cartilage 12 26133 -UBERON:0010882 limb bone pre-cartilage condensation 8 26134 -UBERON:0010700 phalanx pre-cartilage condensation 9 26135 -UBERON:0010585 pedal digit phalanx pre-cartilage condensation 10 26136 -UBERON:0010580 pedal digit 1 phalanx pre-cartilage condensation 11 26137 -UBERON:0010581 pedal digit 2 phalanx pre-cartilage condensation 11 26138 -UBERON:0010582 pedal digit 3 phalanx pre-cartilage condensation 11 26139 -UBERON:0010583 pedal digit 4 phalanx pre-cartilage condensation 11 26140 -UBERON:0010584 pedal digit 5 phalanx pre-cartilage condensation 11 26141 -UBERON:0010586 manual digit phalanx pre-cartilage condensation 10 26142 -UBERON:0010575 manual digit 1 phalanx pre-cartilage condensation 11 26143 -UBERON:0010576 manual digit 2 phalanx pre-cartilage condensation 11 26144 -UBERON:0010577 manual digit 3 phalanx pre-cartilage condensation 11 26145 -UBERON:0010578 manual digit 4 phalanx pre-cartilage condensation 11 26146 -UBERON:0010579 manual digit 5 phalanx pre-cartilage condensation 11 26147 -UBERON:0010884 forelimb bone pre-cartilage condensation 9 26148 -UBERON:0006246 humerus pre-cartilage condensation 10 26149 -UBERON:0006287 radius-ulna pre-cartilage condensation 10 26150 -UBERON:0010586 manual digit phalanx pre-cartilage condensation 10 26151 -UBERON:0010575 manual digit 1 phalanx pre-cartilage condensation 11 26152 -UBERON:0010576 manual digit 2 phalanx pre-cartilage condensation 11 26153 -UBERON:0010577 manual digit 3 phalanx pre-cartilage condensation 11 26154 -UBERON:0010578 manual digit 4 phalanx pre-cartilage condensation 11 26155 -UBERON:0010579 manual digit 5 phalanx pre-cartilage condensation 11 26156 -UBERON:0010698 manual digit metacarpus pre-cartilage condensation 10 26157 -UBERON:0010565 manual digit 1 metacarpus pre-cartilage condensation 11 26158 -UBERON:0010566 manual digit 2 metacarpus pre-cartilage condensation 11 26159 -UBERON:0010567 manual digit 3 metacarpus pre-cartilage condensation 11 26160 -UBERON:0010568 manual digit 4 metacarpus pre-cartilage condensation 11 26161 -UBERON:0010569 manual digit 5 metacarpus pre-cartilage condensation 11 26162 -UBERON:0015080 proximal carpal bone pre-cartilage condensation 10 26163 -UBERON:0015086 distal carpal bone 1 pre-cartilage condensation 10 26164 -UBERON:0015089 distal carpal bone 2 pre-cartilage condensation 10 26165 -UBERON:0015092 distal carpal bone 3 pre-cartilage condensation 10 26166 -UBERON:0015095 distal carpal bone 4 pre-cartilage condensation 10 26167 -UBERON:0015098 distal carpal bone 5 pre-cartilage condensation 10 26168 -UBERON:0010886 hindlimb pre-cartilage condensation 9 26169 -UBERON:0006234 femur pre-cartilage condensation 10 26170 -UBERON:0010585 pedal digit phalanx pre-cartilage condensation 10 26171 -UBERON:0010580 pedal digit 1 phalanx pre-cartilage condensation 11 26172 -UBERON:0010581 pedal digit 2 phalanx pre-cartilage condensation 11 26173 -UBERON:0010582 pedal digit 3 phalanx pre-cartilage condensation 11 26174 -UBERON:0010583 pedal digit 4 phalanx pre-cartilage condensation 11 26175 -UBERON:0010584 pedal digit 5 phalanx pre-cartilage condensation 11 26176 -UBERON:0010687 pedal digit metatarsal pre-cartilage condensation 10 26177 -UBERON:0010547 pedal digit 1 metatarsal pre-cartilage condensation 11 26178 -UBERON:0010548 pedal digit 2 metatarsal pre-cartilage condensation 11 26179 -UBERON:0010549 pedal digit 3 metatarsal pre-cartilage condensation 11 26180 -UBERON:0010550 pedal digit 4 metatarsal pre-cartilage condensation 11 26181 -UBERON:0010551 pedal digit 5 metatarsal pre-cartilage condensation 11 26182 -UBERON:0010801 calcaneum pre-cartilage condensation 10 26183 -UBERON:0015083 proximal tarsal bone pre-cartilage condensation 10 26184 -UBERON:0015101 distal tarsal bone pre-cartilage condensation 10 26185 -UBERON:0015104 distal tarsal bone 1 pre-cartilage condensation 11 26186 -UBERON:0015107 distal tarsal bone 2 pre-cartilage condensation 11 26187 -UBERON:0015110 distal tarsal bone 3 pre-cartilage condensation 11 26188 -UBERON:0015113 distal tarsal bone 4 pre-cartilage condensation 11 26189 -UBERON:0015116 distal tarsal bone 5 pre-cartilage condensation 11 26190 -UBERON:0018101 distal mesopodial pre-cartilage condensation 9 26191 -UBERON:0015101 distal tarsal bone pre-cartilage condensation 10 26192 -UBERON:0015104 distal tarsal bone 1 pre-cartilage condensation 11 26193 -UBERON:0015107 distal tarsal bone 2 pre-cartilage condensation 11 26194 -UBERON:0015110 distal tarsal bone 3 pre-cartilage condensation 11 26195 -UBERON:0015113 distal tarsal bone 4 pre-cartilage condensation 11 26196 -UBERON:0015116 distal tarsal bone 5 pre-cartilage condensation 11 26197 -UBERON:0015021 forelimb endochondral element 8 26198 -UBERON:0008962 forelimb bone 9 26199 -UBERON:0003460 arm bone 10 26200 -UBERON:0003466 forelimb zeugopod bone 11 26201 -UBERON:0001423 radius bone 12 26202 -UBERON:0001424 ulna 12 26203 -UBERON:0006715 radio-ulna 12 26204 -UBERON:0007993 ulnar sesamoid bone 12 26205 -UBERON:0004250 upper arm bone 11 26206 -UBERON:0000976 humerus 12 26207 -UBERON:0003607 forelimb long bone 10 26208 -UBERON:0000976 humerus 11 26209 -UBERON:0001423 radius bone 11 26210 -UBERON:0001424 ulna 11 26211 -UBERON:0001436 phalanx of manus 11 26212 -UBERON:0002234 proximal phalanx of manus 12 26213 -UBERON:0004328 proximal phalanx of manual digit 2 13 26214 -UBERON:0004329 proximal phalanx of manual digit 3 13 26215 -UBERON:0004330 proximal phalanx of manual digit 4 13 26216 -UBERON:0004331 proximal phalanx of manual digit 5 13 26217 -UBERON:0004338 proximal phalanx of manual digit 1 13 26218 -UBERON:0003620 manual digit 1 phalanx 12 26219 -UBERON:0004337 distal phalanx of manual digit 1 13 26220 -UBERON:0004338 proximal phalanx of manual digit 1 13 26221 -UBERON:4200219 middle phalanx of manual digit 1 13 26222 -UBERON:0003636 manual digit 2 phalanx 12 26223 -UBERON:0004311 distal phalanx of manual digit 2 13 26224 -UBERON:0004320 middle phalanx of manual digit 2 13 26225 -UBERON:0004328 proximal phalanx of manual digit 2 13 26226 -UBERON:0003637 manual digit 3 phalanx 12 26227 -UBERON:0004312 distal phalanx of manual digit 3 13 26228 -UBERON:0004321 middle phalanx of manual digit 3 13 26229 -UBERON:0004329 proximal phalanx of manual digit 3 13 26230 -UBERON:0003638 manual digit 4 phalanx 12 26231 -UBERON:0004313 distal phalanx of manual digit 4 13 26232 -UBERON:0004322 middle phalanx of manual digit 4 13 26233 -UBERON:0004330 proximal phalanx of manual digit 4 13 26234 -UBERON:0003639 manual digit 5 phalanx 12 26235 -UBERON:0004314 distal phalanx of manual digit 5 13 26236 -UBERON:0004323 middle phalanx of manual digit 5 13 26237 -UBERON:0004331 proximal phalanx of manual digit 5 13 26238 -UBERON:0003864 middle phalanx of manus 12 26239 -UBERON:0004320 middle phalanx of manual digit 2 13 26240 -UBERON:0004321 middle phalanx of manual digit 3 13 26241 -UBERON:0004322 middle phalanx of manual digit 4 13 26242 -UBERON:0004323 middle phalanx of manual digit 5 13 26243 -UBERON:4200219 middle phalanx of manual digit 1 13 26244 -UBERON:0003865 distal phalanx of manus 12 26245 -UBERON:0004311 distal phalanx of manual digit 2 13 26246 -UBERON:0004312 distal phalanx of manual digit 3 13 26247 -UBERON:0004313 distal phalanx of manual digit 4 13 26248 -UBERON:0004314 distal phalanx of manual digit 5 13 26249 -UBERON:0004337 distal phalanx of manual digit 1 13 26250 -UBERON:0002374 metacarpal bone 11 26251 -UBERON:0003645 metacarpal bone of digit 1 12 26252 -UBERON:0003646 metacarpal bone of digit 2 12 26253 -UBERON:0003647 metacarpal bone of digit 3 12 26254 -UBERON:0003648 metacarpal bone of digit 4 12 26255 -UBERON:0003649 metacarpal bone of digit 5 12 26256 -UBERON:0013587 fused metacarpal bones 3 and 4 12 26257 -UBERON:0012268 equine forelimb splint bone 11 26258 -UBERON:0005897 manus bone 10 26259 -UBERON:0001435 carpal bone 11 26260 -UBERON:0001480 proximal carpal bone 12 26261 -UBERON:0001427 radiale 13 26262 -UBERON:0001428 intermedium 13 26263 -UBERON:0001429 pisiform 13 26264 -UBERON:0002445 ulnare 13 26265 -UBERON:0007960 scapholunate 13 26266 -UBERON:0012124 avian scapholunar bone 13 26267 -UBERON:0001481 distal carpal bone 12 26268 -UBERON:0001430 distal carpal bone 1 13 26269 -UBERON:0001431 distal carpal bone 2 13 26270 -UBERON:0001432 distal carpal bone 3 13 26271 -UBERON:0001433 distal carpal bone 4 13 26272 -UBERON:0010726 os vesalianum manus 13 26273 -UBERON:0010739 distal carpal bone 5 13 26274 -UBERON:0012290 fused carpal bones 2 and 3 13 26275 -UBERON:3000965 basale commune (carpal) 13 26276 -UBERON:0007958 central carpal bone 12 26277 -UBERON:0007959 falciform carpal bone 12 26278 -UBERON:0008257 radial sesamoid 12 26279 -UBERON:3010060 centrale (fore) 12 26280 -UBERON:4200180 semilunate carpal 12 26281 -UBERON:0007997 sesamoid bone of manus 11 26282 -UBERON:0001429 pisiform 12 26283 -UBERON:0007991 proximal sesamoid bone of manus 12 26284 -UBERON:0008257 radial sesamoid 12 26285 -UBERON:0011205 carpometacarpus 11 26286 -UBERON:0012358 manual digitopodium bone 11 26287 -UBERON:0002374 metacarpal bone 12 26288 -UBERON:0003645 metacarpal bone of digit 1 13 26289 -UBERON:0003646 metacarpal bone of digit 2 13 26290 -UBERON:0003647 metacarpal bone of digit 3 13 26291 -UBERON:0003648 metacarpal bone of digit 4 13 26292 -UBERON:0003649 metacarpal bone of digit 5 13 26293 -UBERON:0013587 fused metacarpal bones 3 and 4 13 26294 -UBERON:0004249 manual digit bone 12 26295 -UBERON:0001436 phalanx of manus 13 26296 -UBERON:0002234 proximal phalanx of manus 14 26297 -UBERON:0004328 proximal phalanx of manual digit 2 15 26298 -UBERON:0004329 proximal phalanx of manual digit 3 15 26299 -UBERON:0004330 proximal phalanx of manual digit 4 15 26300 -UBERON:0004331 proximal phalanx of manual digit 5 15 26301 -UBERON:0004338 proximal phalanx of manual digit 1 15 26302 -UBERON:0003620 manual digit 1 phalanx 14 26303 -UBERON:0004337 distal phalanx of manual digit 1 15 26304 -UBERON:0004338 proximal phalanx of manual digit 1 15 26305 -UBERON:4200219 middle phalanx of manual digit 1 15 26306 -UBERON:0003636 manual digit 2 phalanx 14 26307 -UBERON:0004311 distal phalanx of manual digit 2 15 26308 -UBERON:0004320 middle phalanx of manual digit 2 15 26309 -UBERON:0004328 proximal phalanx of manual digit 2 15 26310 -UBERON:0003637 manual digit 3 phalanx 14 26311 -UBERON:0004312 distal phalanx of manual digit 3 15 26312 -UBERON:0004321 middle phalanx of manual digit 3 15 26313 -UBERON:0004329 proximal phalanx of manual digit 3 15 26314 -UBERON:0003638 manual digit 4 phalanx 14 26315 -UBERON:0004313 distal phalanx of manual digit 4 15 26316 -UBERON:0004322 middle phalanx of manual digit 4 15 26317 -UBERON:0004330 proximal phalanx of manual digit 4 15 26318 -UBERON:0003639 manual digit 5 phalanx 14 26319 -UBERON:0004314 distal phalanx of manual digit 5 15 26320 -UBERON:0004323 middle phalanx of manual digit 5 15 26321 -UBERON:0004331 proximal phalanx of manual digit 5 15 26322 -UBERON:0003864 middle phalanx of manus 14 26323 -UBERON:0004320 middle phalanx of manual digit 2 15 26324 -UBERON:0004321 middle phalanx of manual digit 3 15 26325 -UBERON:0004322 middle phalanx of manual digit 4 15 26326 -UBERON:0004323 middle phalanx of manual digit 5 15 26327 -UBERON:4200219 middle phalanx of manual digit 1 15 26328 -UBERON:0003865 distal phalanx of manus 14 26329 -UBERON:0004311 distal phalanx of manual digit 2 15 26330 -UBERON:0004312 distal phalanx of manual digit 3 15 26331 -UBERON:0004313 distal phalanx of manual digit 4 15 26332 -UBERON:0004314 distal phalanx of manual digit 5 15 26333 -UBERON:0004337 distal phalanx of manual digit 1 15 26334 -UBERON:0007991 proximal sesamoid bone of manus 13 26335 -UBERON:3000856 intercalary element of fore digit 13 26336 -UBERON:0012268 equine forelimb splint bone 12 26337 -UBERON:4200116 pteroid 10 26338 -UBERON:0010883 forelimb cartilage element 9 26339 -UBERON:0006245 humerus cartilage element 10 26340 -UBERON:0006286 radius cartilage element 10 26341 -UBERON:0006306 ulna cartilage element 10 26342 -UBERON:0008254 styliform cartilage 10 26343 -UBERON:0010848 radius-ulna cartilage element 10 26344 -UBERON:0035128 manus cartilage element 10 26345 -UBERON:0010686 manual digit phalanx cartilage element 11 26346 -UBERON:0010675 manual digit 1 phalanx cartilage element 12 26347 -UBERON:0010676 manual digit 2 phalanx cartilage element 12 26348 -UBERON:0010677 manual digit 3 phalanx cartilage element 12 26349 -UBERON:0010678 manual digit 4 phalanx cartilage element 12 26350 -UBERON:0010679 manual digit 5 phalanx cartilage element 12 26351 -UBERON:0010699 manual digit metacarpus cartilage element 11 26352 -UBERON:0010570 manual digit 1 metacarpus cartilage element 12 26353 -UBERON:0010571 manual digit 2 metacarpus cartilage element 12 26354 -UBERON:0010572 manual digit 3 metacarpus cartilage element 12 26355 -UBERON:0010573 manual digit 4 metacarpus cartilage element 12 26356 -UBERON:0010574 manual digit 5 metacarpus cartilage element 12 26357 -UBERON:0015069 distal carpal cartilage element 11 26358 -UBERON:0015079 proximal carpal cartilage 11 26359 -UBERON:0015085 distal carpal bone 1 cartilage 11 26360 -UBERON:0015088 distal carpal bone 2 cartilage 11 26361 -UBERON:0015091 distal carpal bone 3 cartilage 11 26362 -UBERON:0015094 distal carpal bone 4 cartilage 11 26363 -UBERON:0015097 distal carpal bone 5 cartilage 11 26364 -UBERON:0010884 forelimb bone pre-cartilage condensation 9 26365 -UBERON:0006246 humerus pre-cartilage condensation 10 26366 -UBERON:0006287 radius-ulna pre-cartilage condensation 10 26367 -UBERON:0010586 manual digit phalanx pre-cartilage condensation 10 26368 -UBERON:0010575 manual digit 1 phalanx pre-cartilage condensation 11 26369 -UBERON:0010576 manual digit 2 phalanx pre-cartilage condensation 11 26370 -UBERON:0010577 manual digit 3 phalanx pre-cartilage condensation 11 26371 -UBERON:0010578 manual digit 4 phalanx pre-cartilage condensation 11 26372 -UBERON:0010579 manual digit 5 phalanx pre-cartilage condensation 11 26373 -UBERON:0010698 manual digit metacarpus pre-cartilage condensation 10 26374 -UBERON:0010565 manual digit 1 metacarpus pre-cartilage condensation 11 26375 -UBERON:0010566 manual digit 2 metacarpus pre-cartilage condensation 11 26376 -UBERON:0010567 manual digit 3 metacarpus pre-cartilage condensation 11 26377 -UBERON:0010568 manual digit 4 metacarpus pre-cartilage condensation 11 26378 -UBERON:0010569 manual digit 5 metacarpus pre-cartilage condensation 11 26379 -UBERON:0015080 proximal carpal bone pre-cartilage condensation 10 26380 -UBERON:0015086 distal carpal bone 1 pre-cartilage condensation 10 26381 -UBERON:0015089 distal carpal bone 2 pre-cartilage condensation 10 26382 -UBERON:0015092 distal carpal bone 3 pre-cartilage condensation 10 26383 -UBERON:0015095 distal carpal bone 4 pre-cartilage condensation 10 26384 -UBERON:0015098 distal carpal bone 5 pre-cartilage condensation 10 26385 -UBERON:0015001 radius endochondral element 9 26386 -UBERON:0001423 radius bone 10 26387 -UBERON:0006286 radius cartilage element 10 26388 -UBERON:0010846 radius pre-cartilage condensation 10 26389 -UBERON:0015002 radius-ulna endochondral element 9 26390 -UBERON:0006287 radius-ulna pre-cartilage condensation 10 26391 -UBERON:0006715 radio-ulna 10 26392 -UBERON:0010848 radius-ulna cartilage element 10 26393 -UBERON:0015003 ulna endochondral element 9 26394 -UBERON:0001424 ulna 10 26395 -UBERON:0006306 ulna cartilage element 10 26396 -UBERON:0010847 ulna pre-cartilage condensation 10 26397 -UBERON:0015024 manual digit phalanx endochondral element 9 26398 -UBERON:0001436 phalanx of manus 10 26399 -UBERON:0002234 proximal phalanx of manus 11 26400 -UBERON:0004328 proximal phalanx of manual digit 2 12 26401 -UBERON:0004329 proximal phalanx of manual digit 3 12 26402 -UBERON:0004330 proximal phalanx of manual digit 4 12 26403 -UBERON:0004331 proximal phalanx of manual digit 5 12 26404 -UBERON:0004338 proximal phalanx of manual digit 1 12 26405 -UBERON:0003620 manual digit 1 phalanx 11 26406 -UBERON:0004337 distal phalanx of manual digit 1 12 26407 -UBERON:0004338 proximal phalanx of manual digit 1 12 26408 -UBERON:4200219 middle phalanx of manual digit 1 12 26409 -UBERON:0003636 manual digit 2 phalanx 11 26410 -UBERON:0004311 distal phalanx of manual digit 2 12 26411 -UBERON:0004320 middle phalanx of manual digit 2 12 26412 -UBERON:0004328 proximal phalanx of manual digit 2 12 26413 -UBERON:0003637 manual digit 3 phalanx 11 26414 -UBERON:0004312 distal phalanx of manual digit 3 12 26415 -UBERON:0004321 middle phalanx of manual digit 3 12 26416 -UBERON:0004329 proximal phalanx of manual digit 3 12 26417 -UBERON:0003638 manual digit 4 phalanx 11 26418 -UBERON:0004313 distal phalanx of manual digit 4 12 26419 -UBERON:0004322 middle phalanx of manual digit 4 12 26420 -UBERON:0004330 proximal phalanx of manual digit 4 12 26421 -UBERON:0003639 manual digit 5 phalanx 11 26422 -UBERON:0004314 distal phalanx of manual digit 5 12 26423 -UBERON:0004323 middle phalanx of manual digit 5 12 26424 -UBERON:0004331 proximal phalanx of manual digit 5 12 26425 -UBERON:0003864 middle phalanx of manus 11 26426 -UBERON:0004320 middle phalanx of manual digit 2 12 26427 -UBERON:0004321 middle phalanx of manual digit 3 12 26428 -UBERON:0004322 middle phalanx of manual digit 4 12 26429 -UBERON:0004323 middle phalanx of manual digit 5 12 26430 -UBERON:4200219 middle phalanx of manual digit 1 12 26431 -UBERON:0003865 distal phalanx of manus 11 26432 -UBERON:0004311 distal phalanx of manual digit 2 12 26433 -UBERON:0004312 distal phalanx of manual digit 3 12 26434 -UBERON:0004313 distal phalanx of manual digit 4 12 26435 -UBERON:0004314 distal phalanx of manual digit 5 12 26436 -UBERON:0004337 distal phalanx of manual digit 1 12 26437 -UBERON:0010586 manual digit phalanx pre-cartilage condensation 10 26438 -UBERON:0010575 manual digit 1 phalanx pre-cartilage condensation 11 26439 -UBERON:0010576 manual digit 2 phalanx pre-cartilage condensation 11 26440 -UBERON:0010577 manual digit 3 phalanx pre-cartilage condensation 11 26441 -UBERON:0010578 manual digit 4 phalanx pre-cartilage condensation 11 26442 -UBERON:0010579 manual digit 5 phalanx pre-cartilage condensation 11 26443 -UBERON:0010686 manual digit phalanx cartilage element 10 26444 -UBERON:0010675 manual digit 1 phalanx cartilage element 11 26445 -UBERON:0010676 manual digit 2 phalanx cartilage element 11 26446 -UBERON:0010677 manual digit 3 phalanx cartilage element 11 26447 -UBERON:0010678 manual digit 4 phalanx cartilage element 11 26448 -UBERON:0010679 manual digit 5 phalanx cartilage element 11 26449 -UBERON:0015025 manual digit 1 phalanx endochondral element 10 26450 -UBERON:0003620 manual digit 1 phalanx 11 26451 -UBERON:0004337 distal phalanx of manual digit 1 12 26452 -UBERON:0004338 proximal phalanx of manual digit 1 12 26453 -UBERON:4200219 middle phalanx of manual digit 1 12 26454 -UBERON:0010575 manual digit 1 phalanx pre-cartilage condensation 11 26455 -UBERON:0010675 manual digit 1 phalanx cartilage element 11 26456 -UBERON:0015026 manual digit 2 phalanx endochondral element 10 26457 -UBERON:0003636 manual digit 2 phalanx 11 26458 -UBERON:0004311 distal phalanx of manual digit 2 12 26459 -UBERON:0004320 middle phalanx of manual digit 2 12 26460 -UBERON:0004328 proximal phalanx of manual digit 2 12 26461 -UBERON:0010576 manual digit 2 phalanx pre-cartilage condensation 11 26462 -UBERON:0010676 manual digit 2 phalanx cartilage element 11 26463 -UBERON:0015027 manual digit 3 phalanx endochondral element 10 26464 -UBERON:0003637 manual digit 3 phalanx 11 26465 -UBERON:0004312 distal phalanx of manual digit 3 12 26466 -UBERON:0004321 middle phalanx of manual digit 3 12 26467 -UBERON:0004329 proximal phalanx of manual digit 3 12 26468 -UBERON:0010577 manual digit 3 phalanx pre-cartilage condensation 11 26469 -UBERON:0010677 manual digit 3 phalanx cartilage element 11 26470 -UBERON:0015028 manual digit 4 phalanx endochondral element 10 26471 -UBERON:0003638 manual digit 4 phalanx 11 26472 -UBERON:0004313 distal phalanx of manual digit 4 12 26473 -UBERON:0004322 middle phalanx of manual digit 4 12 26474 -UBERON:0004330 proximal phalanx of manual digit 4 12 26475 -UBERON:0010578 manual digit 4 phalanx pre-cartilage condensation 11 26476 -UBERON:0010678 manual digit 4 phalanx cartilage element 11 26477 -UBERON:0015029 manual digit 5 phalanx endochondral element 10 26478 -UBERON:0003639 manual digit 5 phalanx 11 26479 -UBERON:0004314 distal phalanx of manual digit 5 12 26480 -UBERON:0004323 middle phalanx of manual digit 5 12 26481 -UBERON:0004331 proximal phalanx of manual digit 5 12 26482 -UBERON:0010579 manual digit 5 phalanx pre-cartilage condensation 11 26483 -UBERON:0010679 manual digit 5 phalanx cartilage element 11 26484 -UBERON:0015042 manual digit metacarpus endochondral element 9 26485 -UBERON:0002374 metacarpal bone 10 26486 -UBERON:0003645 metacarpal bone of digit 1 11 26487 -UBERON:0003646 metacarpal bone of digit 2 11 26488 -UBERON:0003647 metacarpal bone of digit 3 11 26489 -UBERON:0003648 metacarpal bone of digit 4 11 26490 -UBERON:0003649 metacarpal bone of digit 5 11 26491 -UBERON:0013587 fused metacarpal bones 3 and 4 11 26492 -UBERON:0010544 metacarpus skeleton 10 26493 -UBERON:0010698 manual digit metacarpus pre-cartilage condensation 10 26494 -UBERON:0010565 manual digit 1 metacarpus pre-cartilage condensation 11 26495 -UBERON:0010566 manual digit 2 metacarpus pre-cartilage condensation 11 26496 -UBERON:0010567 manual digit 3 metacarpus pre-cartilage condensation 11 26497 -UBERON:0010568 manual digit 4 metacarpus pre-cartilage condensation 11 26498 -UBERON:0010569 manual digit 5 metacarpus pre-cartilage condensation 11 26499 -UBERON:0010699 manual digit metacarpus cartilage element 10 26500 -UBERON:0010570 manual digit 1 metacarpus cartilage element 11 26501 -UBERON:0010571 manual digit 2 metacarpus cartilage element 11 26502 -UBERON:0010572 manual digit 3 metacarpus cartilage element 11 26503 -UBERON:0010573 manual digit 4 metacarpus cartilage element 11 26504 -UBERON:0010574 manual digit 5 metacarpus cartilage element 11 26505 -UBERON:0015043 manual digit 1 metacarpus endochondral element 10 26506 -UBERON:0003645 metacarpal bone of digit 1 11 26507 -UBERON:0010565 manual digit 1 metacarpus pre-cartilage condensation 11 26508 -UBERON:0010570 manual digit 1 metacarpus cartilage element 11 26509 -UBERON:0015044 manual digit 2 metacarpus endochondral element 10 26510 -UBERON:0003646 metacarpal bone of digit 2 11 26511 -UBERON:0010566 manual digit 2 metacarpus pre-cartilage condensation 11 26512 -UBERON:0010571 manual digit 2 metacarpus cartilage element 11 26513 -UBERON:0015045 manual digit 3 metacarpus endochondral element 10 26514 -UBERON:0003647 metacarpal bone of digit 3 11 26515 -UBERON:0010567 manual digit 3 metacarpus pre-cartilage condensation 11 26516 -UBERON:0010572 manual digit 3 metacarpus cartilage element 11 26517 -UBERON:0015046 manual digit 4 metacarpus endochondral element 10 26518 -UBERON:0003648 metacarpal bone of digit 4 11 26519 -UBERON:0010568 manual digit 4 metacarpus pre-cartilage condensation 11 26520 -UBERON:0010573 manual digit 4 metacarpus cartilage element 11 26521 -UBERON:0015047 manual digit 5 metacarpus endochondral element 10 26522 -UBERON:0003649 metacarpal bone of digit 5 11 26523 -UBERON:0010569 manual digit 5 metacarpus pre-cartilage condensation 11 26524 -UBERON:0010574 manual digit 5 metacarpus cartilage element 11 26525 -UBERON:0015049 carpus endochondral element 9 26526 -UBERON:0001435 carpal bone 10 26527 -UBERON:0001480 proximal carpal bone 11 26528 -UBERON:0001427 radiale 12 26529 -UBERON:0001428 intermedium 12 26530 -UBERON:0001429 pisiform 12 26531 -UBERON:0002445 ulnare 12 26532 -UBERON:0007960 scapholunate 12 26533 -UBERON:0012124 avian scapholunar bone 12 26534 -UBERON:0001481 distal carpal bone 11 26535 -UBERON:0001430 distal carpal bone 1 12 26536 -UBERON:0001431 distal carpal bone 2 12 26537 -UBERON:0001432 distal carpal bone 3 12 26538 -UBERON:0001433 distal carpal bone 4 12 26539 -UBERON:0010726 os vesalianum manus 12 26540 -UBERON:0010739 distal carpal bone 5 12 26541 -UBERON:0012290 fused carpal bones 2 and 3 12 26542 -UBERON:3000965 basale commune (carpal) 12 26543 -UBERON:0007958 central carpal bone 11 26544 -UBERON:0007959 falciform carpal bone 11 26545 -UBERON:0008257 radial sesamoid 11 26546 -UBERON:3010060 centrale (fore) 11 26547 -UBERON:4200180 semilunate carpal 11 26548 -UBERON:0006213 carpus cartilage element 10 26549 -UBERON:0006214 carpus pre-cartilage condensation 10 26550 -UBERON:0015068 distal carpal endochondral element 10 26551 -UBERON:0001481 distal carpal bone 11 26552 -UBERON:0001430 distal carpal bone 1 12 26553 -UBERON:0001431 distal carpal bone 2 12 26554 -UBERON:0001432 distal carpal bone 3 12 26555 -UBERON:0001433 distal carpal bone 4 12 26556 -UBERON:0010726 os vesalianum manus 12 26557 -UBERON:0010739 distal carpal bone 5 12 26558 -UBERON:0012290 fused carpal bones 2 and 3 12 26559 -UBERON:3000965 basale commune (carpal) 12 26560 -UBERON:0015069 distal carpal cartilage element 11 26561 -UBERON:0015078 proximal carpal endochondral element 10 26562 -UBERON:0001480 proximal carpal bone 11 26563 -UBERON:0001427 radiale 12 26564 -UBERON:0001428 intermedium 12 26565 -UBERON:0001429 pisiform 12 26566 -UBERON:0002445 ulnare 12 26567 -UBERON:0007960 scapholunate 12 26568 -UBERON:0012124 avian scapholunar bone 12 26569 -UBERON:0015079 proximal carpal cartilage 11 26570 -UBERON:0015080 proximal carpal bone pre-cartilage condensation 11 26571 -UBERON:0015084 distal carpal bone 1 endochondral element 10 26572 -UBERON:0001430 distal carpal bone 1 11 26573 -UBERON:0015085 distal carpal bone 1 cartilage 11 26574 -UBERON:0015086 distal carpal bone 1 pre-cartilage condensation 11 26575 -UBERON:0015087 distal carpal bone 2 endochondral element 10 26576 -UBERON:0001431 distal carpal bone 2 11 26577 -UBERON:0015088 distal carpal bone 2 cartilage 11 26578 -UBERON:0015089 distal carpal bone 2 pre-cartilage condensation 11 26579 -UBERON:0015090 distal carpal bone 3 endochondral element 10 26580 -UBERON:0001432 distal carpal bone 3 11 26581 -UBERON:0015091 distal carpal bone 3 cartilage 11 26582 -UBERON:0015092 distal carpal bone 3 pre-cartilage condensation 11 26583 -UBERON:0015093 distal carpal bone 4 endochondral element 10 26584 -UBERON:0001433 distal carpal bone 4 11 26585 -UBERON:0015094 distal carpal bone 4 cartilage 11 26586 -UBERON:0015095 distal carpal bone 4 pre-cartilage condensation 11 26587 -UBERON:0015096 distal carpal bone 5 endochondral element 10 26588 -UBERON:0010739 distal carpal bone 5 11 26589 -UBERON:0015097 distal carpal bone 5 cartilage 11 26590 -UBERON:0015098 distal carpal bone 5 pre-cartilage condensation 11 26591 -UBERON:4200140 prepollical element 10 26592 -UBERON:3010682 proximal-most prepollical element 11 26593 -UBERON:3010683 distal-most prepollical element 11 26594 -UBERON:0015053 humerus endochondral element 9 26595 -UBERON:0000976 humerus 10 26596 -UBERON:0006245 humerus cartilage element 10 26597 -UBERON:0006246 humerus pre-cartilage condensation 10 26598 -UBERON:0035561 styliform element 9 26599 -UBERON:0008254 styliform cartilage 10 26600 -UBERON:0015022 hindlimb endochondral element 8 26601 -UBERON:0003464 hindlimb bone 9 26602 -UBERON:0003608 hindlimb long bone 10 26603 -UBERON:0000979 tibia 11 26604 -UBERON:0000981 femur 11 26605 -UBERON:0001446 fibula 11 26606 -UBERON:0001448 metatarsal bone 11 26607 -UBERON:0003650 metatarsal bone of digit 1 12 26608 -UBERON:0003651 metatarsal bone of digit 2 12 26609 -UBERON:0003652 metatarsal bone of digit 3 12 26610 -UBERON:0003653 metatarsal bone of digit 4 12 26611 -UBERON:0003654 metatarsal bone of digit 5 12 26612 -UBERON:0013588 fused metatarsal bones 3 and 4 12 26613 -UBERON:0014763 fused metatarsal bones 2-4 13 26614 -UBERON:4200153 metatarsal bone of digit 6 12 26615 -UBERON:4200157 metatarsal bone of digit 7 12 26616 -UBERON:4200158 metatarsal bone of digit 8 12 26617 -UBERON:0001449 phalanx of pes 11 26618 -UBERON:0003640 pedal digit 1 phalanx 12 26619 -UBERON:0004315 distal phalanx of pedal digit 1 13 26620 -UBERON:0004332 proximal phalanx of pedal digit 1 13 26621 -UBERON:0003641 pedal digit 2 phalanx 12 26622 -UBERON:0004316 distal phalanx of pedal digit 2 13 26623 -UBERON:0004324 middle phalanx of pedal digit 2 13 26624 -UBERON:0004333 proximal phalanx of pedal digit 2 13 26625 -UBERON:0003642 pedal digit 3 phalanx 12 26626 -UBERON:0004317 distal phalanx of pedal digit 3 13 26627 -UBERON:0004325 middle phalanx of pedal digit 3 13 26628 -UBERON:0004334 proximal phalanx of pedal digit 3 13 26629 -UBERON:0003862 pedal digit 4 phalanx 12 26630 -UBERON:0004318 distal phalanx of pedal digit 4 13 26631 -UBERON:0004326 middle phalanx of pedal digit 4 13 26632 -UBERON:0004335 proximal phalanx of pedal digit 4 13 26633 -UBERON:0003863 pedal digit 5 phalanx 12 26634 -UBERON:0004319 distal phalanx of pedal digit 5 13 26635 -UBERON:0004327 middle phalanx of pedal digit 5 13 26636 -UBERON:0004336 proximal phalanx of pedal digit 5 13 26637 -UBERON:0003866 middle phalanx of pes 12 26638 -UBERON:0004324 middle phalanx of pedal digit 2 13 26639 -UBERON:0004325 middle phalanx of pedal digit 3 13 26640 -UBERON:0004326 middle phalanx of pedal digit 4 13 26641 -UBERON:0004327 middle phalanx of pedal digit 5 13 26642 -UBERON:0003867 distal phalanx of pes 12 26643 -UBERON:0004315 distal phalanx of pedal digit 1 13 26644 -UBERON:0004316 distal phalanx of pedal digit 2 13 26645 -UBERON:0004317 distal phalanx of pedal digit 3 13 26646 -UBERON:0004318 distal phalanx of pedal digit 4 13 26647 -UBERON:0004319 distal phalanx of pedal digit 5 13 26648 -UBERON:0003868 proximal phalanx of pes 12 26649 -UBERON:0004332 proximal phalanx of pedal digit 1 13 26650 -UBERON:0004333 proximal phalanx of pedal digit 2 13 26651 -UBERON:0004334 proximal phalanx of pedal digit 3 13 26652 -UBERON:0004335 proximal phalanx of pedal digit 4 13 26653 -UBERON:0004336 proximal phalanx of pedal digit 5 13 26654 -UBERON:4100009 pedal digit 7 phalanx 12 26655 -UBERON:0012269 equine hindlimb splint bone 11 26656 -UBERON:0005893 leg bone 10 26657 -UBERON:0002446 patella 11 26658 -UBERON:0003826 upper leg bone 11 26659 -UBERON:0000981 femur 12 26660 -UBERON:0004251 hindlimb zeugopod bone 11 26661 -UBERON:0000979 tibia 12 26662 -UBERON:0001446 fibula 12 26663 -UBERON:0003467 sesamoid bone of gastrocnemius 12 26664 -UBERON:0006714 tibiofibula 12 26665 -UBERON:0010907 parafibula 12 26666 -UBERON:0012104 sesamoid bone of the peroneus longus muscle 12 26667 -UBERON:0005899 pes bone 10 26668 -UBERON:0001447 tarsal bone 11 26669 -UBERON:0001451 navicular bone of pes 12 26670 -UBERON:0006836 medial tibial tarsal bone 12 26671 -UBERON:0010721 distal tarsal bone 12 26672 -UBERON:0001452 distal tarsal bone 1 13 26673 -UBERON:0001453 distal tarsal bone 2 13 26674 -UBERON:0001454 distal tarsal bone 3 13 26675 -UBERON:0001455 cuboid bone 13 26676 -UBERON:0010723 os vesalianum pedis 13 26677 -UBERON:0010737 distal tarsal bone 4 13 26678 -UBERON:0010738 distal tarsal bone 5 13 26679 -UBERON:0012289 fused tarsal bones 2 and 3 13 26680 -UBERON:0013649 fused tarsal bones 1 and 2 13 26681 -UBERON:3001002 basale commune (tarsal) 13 26682 -UBERON:0011679 proximal tarsal bone 12 26683 -UBERON:0001450 calcaneus 13 26684 -UBERON:0002395 talus 13 26685 -UBERON:0011678 hindlimb intermedium bone 13 26686 -UBERON:0012126 fibulare 13 26687 -UBERON:0012288 centroquartal bone 12 26688 -UBERON:3010045 centrale 1 12 26689 -UBERON:3010073 centrale 2 12 26690 -UBERON:4200011 pedal centrale 12 26691 -UBERON:4200152 intertarsale sesamoid 12 26692 -UBERON:0008000 sesamoid bone of pes 11 26693 -UBERON:0007990 proximal sesamoid bone of pes 12 26694 -UBERON:4200152 intertarsale sesamoid 12 26695 -UBERON:0008195 tarsometatarsus 11 26696 -UBERON:0010725 accessory navicular bone 11 26697 -UBERON:0012359 pedal digitopodium bone 11 26698 -UBERON:0001448 metatarsal bone 12 26699 -UBERON:0003650 metatarsal bone of digit 1 13 26700 -UBERON:0003651 metatarsal bone of digit 2 13 26701 -UBERON:0003652 metatarsal bone of digit 3 13 26702 -UBERON:0003653 metatarsal bone of digit 4 13 26703 -UBERON:0003654 metatarsal bone of digit 5 13 26704 -UBERON:0013588 fused metatarsal bones 3 and 4 13 26705 -UBERON:0014763 fused metatarsal bones 2-4 14 26706 -UBERON:4200153 metatarsal bone of digit 6 13 26707 -UBERON:4200157 metatarsal bone of digit 7 13 26708 -UBERON:4200158 metatarsal bone of digit 8 13 26709 -UBERON:0004248 pedal digit bone 12 26710 -UBERON:0001449 phalanx of pes 13 26711 -UBERON:0003640 pedal digit 1 phalanx 14 26712 -UBERON:0004315 distal phalanx of pedal digit 1 15 26713 -UBERON:0004332 proximal phalanx of pedal digit 1 15 26714 -UBERON:0003641 pedal digit 2 phalanx 14 26715 -UBERON:0004316 distal phalanx of pedal digit 2 15 26716 -UBERON:0004324 middle phalanx of pedal digit 2 15 26717 -UBERON:0004333 proximal phalanx of pedal digit 2 15 26718 -UBERON:0003642 pedal digit 3 phalanx 14 26719 -UBERON:0004317 distal phalanx of pedal digit 3 15 26720 -UBERON:0004325 middle phalanx of pedal digit 3 15 26721 -UBERON:0004334 proximal phalanx of pedal digit 3 15 26722 -UBERON:0003862 pedal digit 4 phalanx 14 26723 -UBERON:0004318 distal phalanx of pedal digit 4 15 26724 -UBERON:0004326 middle phalanx of pedal digit 4 15 26725 -UBERON:0004335 proximal phalanx of pedal digit 4 15 26726 -UBERON:0003863 pedal digit 5 phalanx 14 26727 -UBERON:0004319 distal phalanx of pedal digit 5 15 26728 -UBERON:0004327 middle phalanx of pedal digit 5 15 26729 -UBERON:0004336 proximal phalanx of pedal digit 5 15 26730 -UBERON:0003866 middle phalanx of pes 14 26731 -UBERON:0004324 middle phalanx of pedal digit 2 15 26732 -UBERON:0004325 middle phalanx of pedal digit 3 15 26733 -UBERON:0004326 middle phalanx of pedal digit 4 15 26734 -UBERON:0004327 middle phalanx of pedal digit 5 15 26735 -UBERON:0003867 distal phalanx of pes 14 26736 -UBERON:0004315 distal phalanx of pedal digit 1 15 26737 -UBERON:0004316 distal phalanx of pedal digit 2 15 26738 -UBERON:0004317 distal phalanx of pedal digit 3 15 26739 -UBERON:0004318 distal phalanx of pedal digit 4 15 26740 -UBERON:0004319 distal phalanx of pedal digit 5 15 26741 -UBERON:0003868 proximal phalanx of pes 14 26742 -UBERON:0004332 proximal phalanx of pedal digit 1 15 26743 -UBERON:0004333 proximal phalanx of pedal digit 2 15 26744 -UBERON:0004334 proximal phalanx of pedal digit 3 15 26745 -UBERON:0004335 proximal phalanx of pedal digit 4 15 26746 -UBERON:0004336 proximal phalanx of pedal digit 5 15 26747 -UBERON:4100009 pedal digit 7 phalanx 14 26748 -UBERON:0007990 proximal sesamoid bone of pes 13 26749 -UBERON:3000931 intercalary element of hind digit 13 26750 -UBERON:3010675 bony nodule of terminal phalanx of hind digit 13 26751 -UBERON:0012269 equine hindlimb splint bone 12 26752 -UBERON:0008194 tibiotarsus 10 26753 -UBERON:0010885 hindlimb cartilage element 9 26754 -UBERON:0010129 femur cartilage element 10 26755 -UBERON:0010849 tibia cartilage element 10 26756 -UBERON:0010851 fibula cartilage element 10 26757 -UBERON:0010902 tibiotarsus cartilage element 10 26758 -UBERON:0035129 pes cartilage element 10 26759 -UBERON:0010685 pedal digit phalanx cartilage element 11 26760 -UBERON:0010680 pedal digit 1 phalanx cartilage element 12 26761 -UBERON:0010681 pedal digit 2 phalanx cartilage element 12 26762 -UBERON:0010682 pedal digit 3 phalanx cartilage element 12 26763 -UBERON:0010683 pedal digit 4 phalanx cartilage element 12 26764 -UBERON:0010684 pedal digit 5 phalanx cartilage element 12 26765 -UBERON:0010697 pedal digit metatarsal cartilage element 11 26766 -UBERON:0010557 pedal digit 1 metatarsal cartilage element 12 26767 -UBERON:0010558 pedal digit 2 metatarsal cartilage element 12 26768 -UBERON:0010559 pedal digit 3 metatarsal cartilage element 12 26769 -UBERON:0010560 pedal digit 4 metatarsal cartilage element 12 26770 -UBERON:0010561 pedal digit 5 metatarsal cartilage element 12 26771 -UBERON:0010842 calcaneum cartilage element 11 26772 -UBERON:0010900 tarsometatarsus cartilage element 11 26773 -UBERON:0015082 proximal tarsal cartilage 11 26774 -UBERON:0015100 distal tarsal cartilage 11 26775 -UBERON:0015103 distal tarsal bone 1 cartilage 12 26776 -UBERON:0015106 distal tarsal bone 2 cartilage 12 26777 -UBERON:0015109 distal tarsal bone 3 cartilage 12 26778 -UBERON:0015112 distal tarsal bone 4 cartilage 12 26779 -UBERON:0015115 distal tarsal bone 5 cartilage 12 26780 -UBERON:0010886 hindlimb pre-cartilage condensation 9 26781 -UBERON:0006234 femur pre-cartilage condensation 10 26782 -UBERON:0010585 pedal digit phalanx pre-cartilage condensation 10 26783 -UBERON:0010580 pedal digit 1 phalanx pre-cartilage condensation 11 26784 -UBERON:0010581 pedal digit 2 phalanx pre-cartilage condensation 11 26785 -UBERON:0010582 pedal digit 3 phalanx pre-cartilage condensation 11 26786 -UBERON:0010583 pedal digit 4 phalanx pre-cartilage condensation 11 26787 -UBERON:0010584 pedal digit 5 phalanx pre-cartilage condensation 11 26788 -UBERON:0010687 pedal digit metatarsal pre-cartilage condensation 10 26789 -UBERON:0010547 pedal digit 1 metatarsal pre-cartilage condensation 11 26790 -UBERON:0010548 pedal digit 2 metatarsal pre-cartilage condensation 11 26791 -UBERON:0010549 pedal digit 3 metatarsal pre-cartilage condensation 11 26792 -UBERON:0010550 pedal digit 4 metatarsal pre-cartilage condensation 11 26793 -UBERON:0010551 pedal digit 5 metatarsal pre-cartilage condensation 11 26794 -UBERON:0010801 calcaneum pre-cartilage condensation 10 26795 -UBERON:0015083 proximal tarsal bone pre-cartilage condensation 10 26796 -UBERON:0015101 distal tarsal bone pre-cartilage condensation 10 26797 -UBERON:0015104 distal tarsal bone 1 pre-cartilage condensation 11 26798 -UBERON:0015107 distal tarsal bone 2 pre-cartilage condensation 11 26799 -UBERON:0015110 distal tarsal bone 3 pre-cartilage condensation 11 26800 -UBERON:0015113 distal tarsal bone 4 pre-cartilage condensation 11 26801 -UBERON:0015116 distal tarsal bone 5 pre-cartilage condensation 11 26802 -UBERON:0015004 tibia endochondral element 9 26803 -UBERON:0000979 tibia 10 26804 -UBERON:0010849 tibia cartilage element 10 26805 -UBERON:0010850 tibia pre-cartilage condensation 10 26806 -UBERON:0015011 tibiotarsus endochondral element 9 26807 -UBERON:0008194 tibiotarsus 10 26808 -UBERON:0010902 tibiotarsus cartilage element 10 26809 -UBERON:0010903 tibiotarsus pre-cartilage condensation 10 26810 -UBERON:0015012 tarsometatarsus endochondral element 9 26811 -UBERON:0008195 tarsometatarsus 10 26812 -UBERON:0010900 tarsometatarsus cartilage element 10 26813 -UBERON:0010901 tarsometatarsus pre-cartilage condensation 10 26814 -UBERON:0015013 fibula endochondral element 9 26815 -UBERON:0001446 fibula 10 26816 -UBERON:0010851 fibula cartilage element 10 26817 -UBERON:0010852 fibula pre-cartilage condensation 10 26818 -UBERON:0015030 pedal digit phalanx endochondral element 9 26819 -UBERON:0001449 phalanx of pes 10 26820 -UBERON:0003640 pedal digit 1 phalanx 11 26821 -UBERON:0004315 distal phalanx of pedal digit 1 12 26822 -UBERON:0004332 proximal phalanx of pedal digit 1 12 26823 -UBERON:0003641 pedal digit 2 phalanx 11 26824 -UBERON:0004316 distal phalanx of pedal digit 2 12 26825 -UBERON:0004324 middle phalanx of pedal digit 2 12 26826 -UBERON:0004333 proximal phalanx of pedal digit 2 12 26827 -UBERON:0003642 pedal digit 3 phalanx 11 26828 -UBERON:0004317 distal phalanx of pedal digit 3 12 26829 -UBERON:0004325 middle phalanx of pedal digit 3 12 26830 -UBERON:0004334 proximal phalanx of pedal digit 3 12 26831 -UBERON:0003862 pedal digit 4 phalanx 11 26832 -UBERON:0004318 distal phalanx of pedal digit 4 12 26833 -UBERON:0004326 middle phalanx of pedal digit 4 12 26834 -UBERON:0004335 proximal phalanx of pedal digit 4 12 26835 -UBERON:0003863 pedal digit 5 phalanx 11 26836 -UBERON:0004319 distal phalanx of pedal digit 5 12 26837 -UBERON:0004327 middle phalanx of pedal digit 5 12 26838 -UBERON:0004336 proximal phalanx of pedal digit 5 12 26839 -UBERON:0003866 middle phalanx of pes 11 26840 -UBERON:0004324 middle phalanx of pedal digit 2 12 26841 -UBERON:0004325 middle phalanx of pedal digit 3 12 26842 -UBERON:0004326 middle phalanx of pedal digit 4 12 26843 -UBERON:0004327 middle phalanx of pedal digit 5 12 26844 -UBERON:0003867 distal phalanx of pes 11 26845 -UBERON:0004315 distal phalanx of pedal digit 1 12 26846 -UBERON:0004316 distal phalanx of pedal digit 2 12 26847 -UBERON:0004317 distal phalanx of pedal digit 3 12 26848 -UBERON:0004318 distal phalanx of pedal digit 4 12 26849 -UBERON:0004319 distal phalanx of pedal digit 5 12 26850 -UBERON:0003868 proximal phalanx of pes 11 26851 -UBERON:0004332 proximal phalanx of pedal digit 1 12 26852 -UBERON:0004333 proximal phalanx of pedal digit 2 12 26853 -UBERON:0004334 proximal phalanx of pedal digit 3 12 26854 -UBERON:0004335 proximal phalanx of pedal digit 4 12 26855 -UBERON:0004336 proximal phalanx of pedal digit 5 12 26856 -UBERON:4100009 pedal digit 7 phalanx 11 26857 -UBERON:0010585 pedal digit phalanx pre-cartilage condensation 10 26858 -UBERON:0010580 pedal digit 1 phalanx pre-cartilage condensation 11 26859 -UBERON:0010581 pedal digit 2 phalanx pre-cartilage condensation 11 26860 -UBERON:0010582 pedal digit 3 phalanx pre-cartilage condensation 11 26861 -UBERON:0010583 pedal digit 4 phalanx pre-cartilage condensation 11 26862 -UBERON:0010584 pedal digit 5 phalanx pre-cartilage condensation 11 26863 -UBERON:0010685 pedal digit phalanx cartilage element 10 26864 -UBERON:0010680 pedal digit 1 phalanx cartilage element 11 26865 -UBERON:0010681 pedal digit 2 phalanx cartilage element 11 26866 -UBERON:0010682 pedal digit 3 phalanx cartilage element 11 26867 -UBERON:0010683 pedal digit 4 phalanx cartilage element 11 26868 -UBERON:0010684 pedal digit 5 phalanx cartilage element 11 26869 -UBERON:0015031 pedal digit 1 phalanx endochondral element 10 26870 -UBERON:0003640 pedal digit 1 phalanx 11 26871 -UBERON:0004315 distal phalanx of pedal digit 1 12 26872 -UBERON:0004332 proximal phalanx of pedal digit 1 12 26873 -UBERON:0010580 pedal digit 1 phalanx pre-cartilage condensation 11 26874 -UBERON:0010680 pedal digit 1 phalanx cartilage element 11 26875 -UBERON:0015032 pedal digit 2 phalanx endochondral element 10 26876 -UBERON:0003641 pedal digit 2 phalanx 11 26877 -UBERON:0004316 distal phalanx of pedal digit 2 12 26878 -UBERON:0004324 middle phalanx of pedal digit 2 12 26879 -UBERON:0004333 proximal phalanx of pedal digit 2 12 26880 -UBERON:0010581 pedal digit 2 phalanx pre-cartilage condensation 11 26881 -UBERON:0010681 pedal digit 2 phalanx cartilage element 11 26882 -UBERON:0015033 pedal digit 3 phalanx endochondral element 10 26883 -UBERON:0003642 pedal digit 3 phalanx 11 26884 -UBERON:0004317 distal phalanx of pedal digit 3 12 26885 -UBERON:0004325 middle phalanx of pedal digit 3 12 26886 -UBERON:0004334 proximal phalanx of pedal digit 3 12 26887 -UBERON:0010582 pedal digit 3 phalanx pre-cartilage condensation 11 26888 -UBERON:0010682 pedal digit 3 phalanx cartilage element 11 26889 -UBERON:0015034 pedal digit 4 phalanx endochondral element 10 26890 -UBERON:0003862 pedal digit 4 phalanx 11 26891 -UBERON:0004318 distal phalanx of pedal digit 4 12 26892 -UBERON:0004326 middle phalanx of pedal digit 4 12 26893 -UBERON:0004335 proximal phalanx of pedal digit 4 12 26894 -UBERON:0010583 pedal digit 4 phalanx pre-cartilage condensation 11 26895 -UBERON:0010683 pedal digit 4 phalanx cartilage element 11 26896 -UBERON:0015035 pedal digit 5 phalanx endochondral element 10 26897 -UBERON:0003863 pedal digit 5 phalanx 11 26898 -UBERON:0004319 distal phalanx of pedal digit 5 12 26899 -UBERON:0004327 middle phalanx of pedal digit 5 12 26900 -UBERON:0004336 proximal phalanx of pedal digit 5 12 26901 -UBERON:0010584 pedal digit 5 phalanx pre-cartilage condensation 11 26902 -UBERON:0010684 pedal digit 5 phalanx cartilage element 11 26903 -UBERON:0015036 pedal digit metatarsal endochondral element 9 26904 -UBERON:0001448 metatarsal bone 10 26905 -UBERON:0003650 metatarsal bone of digit 1 11 26906 -UBERON:0003651 metatarsal bone of digit 2 11 26907 -UBERON:0003652 metatarsal bone of digit 3 11 26908 -UBERON:0003653 metatarsal bone of digit 4 11 26909 -UBERON:0003654 metatarsal bone of digit 5 11 26910 -UBERON:0013588 fused metatarsal bones 3 and 4 11 26911 -UBERON:0014763 fused metatarsal bones 2-4 12 26912 -UBERON:4200153 metatarsal bone of digit 6 11 26913 -UBERON:4200157 metatarsal bone of digit 7 11 26914 -UBERON:4200158 metatarsal bone of digit 8 11 26915 -UBERON:0010545 metatarsus skeleton 10 26916 -UBERON:0010687 pedal digit metatarsal pre-cartilage condensation 10 26917 -UBERON:0010547 pedal digit 1 metatarsal pre-cartilage condensation 11 26918 -UBERON:0010548 pedal digit 2 metatarsal pre-cartilage condensation 11 26919 -UBERON:0010549 pedal digit 3 metatarsal pre-cartilage condensation 11 26920 -UBERON:0010550 pedal digit 4 metatarsal pre-cartilage condensation 11 26921 -UBERON:0010551 pedal digit 5 metatarsal pre-cartilage condensation 11 26922 -UBERON:0010697 pedal digit metatarsal cartilage element 10 26923 -UBERON:0010557 pedal digit 1 metatarsal cartilage element 11 26924 -UBERON:0010558 pedal digit 2 metatarsal cartilage element 11 26925 -UBERON:0010559 pedal digit 3 metatarsal cartilage element 11 26926 -UBERON:0010560 pedal digit 4 metatarsal cartilage element 11 26927 -UBERON:0010561 pedal digit 5 metatarsal cartilage element 11 26928 -UBERON:0015037 pedal digit 1 metatarsal endochondral element 10 26929 -UBERON:0003650 metatarsal bone of digit 1 11 26930 -UBERON:0010547 pedal digit 1 metatarsal pre-cartilage condensation 11 26931 -UBERON:0010557 pedal digit 1 metatarsal cartilage element 11 26932 -UBERON:0015038 pedal digit 2 metatarsal endochondral element 10 26933 -UBERON:0003651 metatarsal bone of digit 2 11 26934 -UBERON:0010548 pedal digit 2 metatarsal pre-cartilage condensation 11 26935 -UBERON:0010558 pedal digit 2 metatarsal cartilage element 11 26936 -UBERON:0015039 pedal digit 3 metatarsal endochondral element 10 26937 -UBERON:0003652 metatarsal bone of digit 3 11 26938 -UBERON:0010549 pedal digit 3 metatarsal pre-cartilage condensation 11 26939 -UBERON:0010559 pedal digit 3 metatarsal cartilage element 11 26940 -UBERON:0015040 pedal digit 4 metatarsal endochondral element 10 26941 -UBERON:0003653 metatarsal bone of digit 4 11 26942 -UBERON:0010550 pedal digit 4 metatarsal pre-cartilage condensation 11 26943 -UBERON:0010560 pedal digit 4 metatarsal cartilage element 11 26944 -UBERON:0015041 pedal digit 5 metatarsal endochondral element 10 26945 -UBERON:0003654 metatarsal bone of digit 5 11 26946 -UBERON:0010551 pedal digit 5 metatarsal pre-cartilage condensation 11 26947 -UBERON:0010561 pedal digit 5 metatarsal cartilage element 11 26948 -UBERON:0015050 tarsus endochondral element 9 26949 -UBERON:0001447 tarsal bone 10 26950 -UBERON:0001451 navicular bone of pes 11 26951 -UBERON:0006836 medial tibial tarsal bone 11 26952 -UBERON:0010721 distal tarsal bone 11 26953 -UBERON:0001452 distal tarsal bone 1 12 26954 -UBERON:0001453 distal tarsal bone 2 12 26955 -UBERON:0001454 distal tarsal bone 3 12 26956 -UBERON:0001455 cuboid bone 12 26957 -UBERON:0010723 os vesalianum pedis 12 26958 -UBERON:0010737 distal tarsal bone 4 12 26959 -UBERON:0010738 distal tarsal bone 5 12 26960 -UBERON:0012289 fused tarsal bones 2 and 3 12 26961 -UBERON:0013649 fused tarsal bones 1 and 2 12 26962 -UBERON:3001002 basale commune (tarsal) 12 26963 -UBERON:0011679 proximal tarsal bone 11 26964 -UBERON:0001450 calcaneus 12 26965 -UBERON:0002395 talus 12 26966 -UBERON:0011678 hindlimb intermedium bone 12 26967 -UBERON:0012126 fibulare 12 26968 -UBERON:0012288 centroquartal bone 11 26969 -UBERON:3010045 centrale 1 11 26970 -UBERON:3010073 centrale 2 11 26971 -UBERON:4200011 pedal centrale 11 26972 -UBERON:4200152 intertarsale sesamoid 11 26973 -UBERON:0010540 tarsus pre-cartilage condensation 10 26974 -UBERON:0010541 tarsus cartilage element 10 26975 -UBERON:0015014 calcaneum endochondral element 10 26976 -UBERON:0001450 calcaneus 11 26977 -UBERON:0010801 calcaneum pre-cartilage condensation 11 26978 -UBERON:0010842 calcaneum cartilage element 11 26979 -UBERON:0015081 proximal tarsal endochondral element 10 26980 -UBERON:0011679 proximal tarsal bone 11 26981 -UBERON:0001450 calcaneus 12 26982 -UBERON:0002395 talus 12 26983 -UBERON:0011678 hindlimb intermedium bone 12 26984 -UBERON:0012126 fibulare 12 26985 -UBERON:0015082 proximal tarsal cartilage 11 26986 -UBERON:0015083 proximal tarsal bone pre-cartilage condensation 11 26987 -UBERON:0015099 distal tarsal endochondral element 10 26988 -UBERON:0010721 distal tarsal bone 11 26989 -UBERON:0001452 distal tarsal bone 1 12 26990 -UBERON:0001453 distal tarsal bone 2 12 26991 -UBERON:0001454 distal tarsal bone 3 12 26992 -UBERON:0001455 cuboid bone 12 26993 -UBERON:0010723 os vesalianum pedis 12 26994 -UBERON:0010737 distal tarsal bone 4 12 26995 -UBERON:0010738 distal tarsal bone 5 12 26996 -UBERON:0012289 fused tarsal bones 2 and 3 12 26997 -UBERON:0013649 fused tarsal bones 1 and 2 12 26998 -UBERON:3001002 basale commune (tarsal) 12 26999 -UBERON:0015100 distal tarsal cartilage 11 27000 -UBERON:0015103 distal tarsal bone 1 cartilage 12 27001 -UBERON:0015106 distal tarsal bone 2 cartilage 12 27002 -UBERON:0015109 distal tarsal bone 3 cartilage 12 27003 -UBERON:0015112 distal tarsal bone 4 cartilage 12 27004 -UBERON:0015115 distal tarsal bone 5 cartilage 12 27005 -UBERON:0015101 distal tarsal bone pre-cartilage condensation 11 27006 -UBERON:0015104 distal tarsal bone 1 pre-cartilage condensation 12 27007 -UBERON:0015107 distal tarsal bone 2 pre-cartilage condensation 12 27008 -UBERON:0015110 distal tarsal bone 3 pre-cartilage condensation 12 27009 -UBERON:0015113 distal tarsal bone 4 pre-cartilage condensation 12 27010 -UBERON:0015116 distal tarsal bone 5 pre-cartilage condensation 12 27011 -UBERON:0015102 distal tarsal bone 1 endochondral element 11 27012 -UBERON:0001452 distal tarsal bone 1 12 27013 -UBERON:0015103 distal tarsal bone 1 cartilage 12 27014 -UBERON:0015104 distal tarsal bone 1 pre-cartilage condensation 12 27015 -UBERON:0015105 distal tarsal bone 2 endochondral element 11 27016 -UBERON:0001453 distal tarsal bone 2 12 27017 -UBERON:0015106 distal tarsal bone 2 cartilage 12 27018 -UBERON:0015107 distal tarsal bone 2 pre-cartilage condensation 12 27019 -UBERON:0015108 distal tarsal bone 3 endochondral element 11 27020 -UBERON:0001454 distal tarsal bone 3 12 27021 -UBERON:0015109 distal tarsal bone 3 cartilage 12 27022 -UBERON:0015110 distal tarsal bone 3 pre-cartilage condensation 12 27023 -UBERON:0015111 distal tarsal bone 4 endochondral element 11 27024 -UBERON:0010737 distal tarsal bone 4 12 27025 -UBERON:0015112 distal tarsal bone 4 cartilage 12 27026 -UBERON:0015113 distal tarsal bone 4 pre-cartilage condensation 12 27027 -UBERON:0015114 distal tarsal bone 5 endochondral element 11 27028 -UBERON:0010738 distal tarsal bone 5 12 27029 -UBERON:0015115 distal tarsal bone 5 cartilage 12 27030 -UBERON:0015116 distal tarsal bone 5 pre-cartilage condensation 12 27031 -UBERON:3000921 element Y of hind mesopodium 10 27032 -UBERON:4200141 prehallical element 10 27033 -UBERON:3010684 proximal-most prehallical element 11 27034 -UBERON:3010685 distal-most prehallical element 11 27035 -UBERON:0015052 femur endochondral element 9 27036 -UBERON:0000981 femur 10 27037 -UBERON:0006234 femur pre-cartilage condensation 10 27038 -UBERON:0010129 femur cartilage element 10 27039 -UBERON:0015063 autopod endochondral element 8 27040 -UBERON:0011250 autopod bone 9 27041 -UBERON:0003656 mesopodium bone 10 27042 -UBERON:0001435 carpal bone 11 27043 -UBERON:0001480 proximal carpal bone 12 27044 -UBERON:0001427 radiale 13 27045 -UBERON:0001428 intermedium 13 27046 -UBERON:0001429 pisiform 13 27047 -UBERON:0002445 ulnare 13 27048 -UBERON:0007960 scapholunate 13 27049 -UBERON:0012124 avian scapholunar bone 13 27050 -UBERON:0001481 distal carpal bone 12 27051 -UBERON:0001430 distal carpal bone 1 13 27052 -UBERON:0001431 distal carpal bone 2 13 27053 -UBERON:0001432 distal carpal bone 3 13 27054 -UBERON:0001433 distal carpal bone 4 13 27055 -UBERON:0010726 os vesalianum manus 13 27056 -UBERON:0010739 distal carpal bone 5 13 27057 -UBERON:0012290 fused carpal bones 2 and 3 13 27058 -UBERON:3000965 basale commune (carpal) 13 27059 -UBERON:0007958 central carpal bone 12 27060 -UBERON:0007959 falciform carpal bone 12 27061 -UBERON:0008257 radial sesamoid 12 27062 -UBERON:3010060 centrale (fore) 12 27063 -UBERON:4200180 semilunate carpal 12 27064 -UBERON:0001447 tarsal bone 11 27065 -UBERON:0001451 navicular bone of pes 12 27066 -UBERON:0006836 medial tibial tarsal bone 12 27067 -UBERON:0010721 distal tarsal bone 12 27068 -UBERON:0001452 distal tarsal bone 1 13 27069 -UBERON:0001453 distal tarsal bone 2 13 27070 -UBERON:0001454 distal tarsal bone 3 13 27071 -UBERON:0001455 cuboid bone 13 27072 -UBERON:0010723 os vesalianum pedis 13 27073 -UBERON:0010737 distal tarsal bone 4 13 27074 -UBERON:0010738 distal tarsal bone 5 13 27075 -UBERON:0012289 fused tarsal bones 2 and 3 13 27076 -UBERON:0013649 fused tarsal bones 1 and 2 13 27077 -UBERON:3001002 basale commune (tarsal) 13 27078 -UBERON:0011679 proximal tarsal bone 12 27079 -UBERON:0001450 calcaneus 13 27080 -UBERON:0002395 talus 13 27081 -UBERON:0011678 hindlimb intermedium bone 13 27082 -UBERON:0012126 fibulare 13 27083 -UBERON:0012288 centroquartal bone 12 27084 -UBERON:3010045 centrale 1 12 27085 -UBERON:3010073 centrale 2 12 27086 -UBERON:4200011 pedal centrale 12 27087 -UBERON:4200152 intertarsale sesamoid 12 27088 -UBERON:0012131 centrale 11 27089 -UBERON:0001451 navicular bone of pes 12 27090 -UBERON:0007958 central carpal bone 12 27091 -UBERON:3010045 centrale 1 12 27092 -UBERON:3010060 centrale (fore) 12 27093 -UBERON:3010073 centrale 2 12 27094 -UBERON:4200011 pedal centrale 12 27095 -UBERON:4200083 postaxial centrale 12 27096 -UBERON:4200084 preaxial centrale 12 27097 -UBERON:0014395 proximal mesopodial bone 11 27098 -UBERON:0001480 proximal carpal bone 12 27099 -UBERON:0001427 radiale 13 27100 -UBERON:0001428 intermedium 13 27101 -UBERON:0001429 pisiform 13 27102 -UBERON:0002445 ulnare 13 27103 -UBERON:0007960 scapholunate 13 27104 -UBERON:0012124 avian scapholunar bone 13 27105 -UBERON:0011679 proximal tarsal bone 12 27106 -UBERON:0001450 calcaneus 13 27107 -UBERON:0002395 talus 13 27108 -UBERON:0011678 hindlimb intermedium bone 13 27109 -UBERON:0012126 fibulare 13 27110 -UBERON:0018102 distal mesopodial bone 11 27111 -UBERON:0001481 distal carpal bone 12 27112 -UBERON:0001430 distal carpal bone 1 13 27113 -UBERON:0001431 distal carpal bone 2 13 27114 -UBERON:0001432 distal carpal bone 3 13 27115 -UBERON:0001433 distal carpal bone 4 13 27116 -UBERON:0010726 os vesalianum manus 13 27117 -UBERON:0010739 distal carpal bone 5 13 27118 -UBERON:0012290 fused carpal bones 2 and 3 13 27119 -UBERON:3000965 basale commune (carpal) 13 27120 -UBERON:0010721 distal tarsal bone 12 27121 -UBERON:0001452 distal tarsal bone 1 13 27122 -UBERON:0001453 distal tarsal bone 2 13 27123 -UBERON:0001454 distal tarsal bone 3 13 27124 -UBERON:0001455 cuboid bone 13 27125 -UBERON:0010723 os vesalianum pedis 13 27126 -UBERON:0010737 distal tarsal bone 4 13 27127 -UBERON:0010738 distal tarsal bone 5 13 27128 -UBERON:0012289 fused tarsal bones 2 and 3 13 27129 -UBERON:0013649 fused tarsal bones 1 and 2 13 27130 -UBERON:3001002 basale commune (tarsal) 13 27131 -UBERON:0005897 manus bone 10 27132 -UBERON:0001435 carpal bone 11 27133 -UBERON:0001480 proximal carpal bone 12 27134 -UBERON:0001427 radiale 13 27135 -UBERON:0001428 intermedium 13 27136 -UBERON:0001429 pisiform 13 27137 -UBERON:0002445 ulnare 13 27138 -UBERON:0007960 scapholunate 13 27139 -UBERON:0012124 avian scapholunar bone 13 27140 -UBERON:0001481 distal carpal bone 12 27141 -UBERON:0001430 distal carpal bone 1 13 27142 -UBERON:0001431 distal carpal bone 2 13 27143 -UBERON:0001432 distal carpal bone 3 13 27144 -UBERON:0001433 distal carpal bone 4 13 27145 -UBERON:0010726 os vesalianum manus 13 27146 -UBERON:0010739 distal carpal bone 5 13 27147 -UBERON:0012290 fused carpal bones 2 and 3 13 27148 -UBERON:3000965 basale commune (carpal) 13 27149 -UBERON:0007958 central carpal bone 12 27150 -UBERON:0007959 falciform carpal bone 12 27151 -UBERON:0008257 radial sesamoid 12 27152 -UBERON:3010060 centrale (fore) 12 27153 -UBERON:4200180 semilunate carpal 12 27154 -UBERON:0007997 sesamoid bone of manus 11 27155 -UBERON:0001429 pisiform 12 27156 -UBERON:0007991 proximal sesamoid bone of manus 12 27157 -UBERON:0008257 radial sesamoid 12 27158 -UBERON:0011205 carpometacarpus 11 27159 -UBERON:0012358 manual digitopodium bone 11 27160 -UBERON:0002374 metacarpal bone 12 27161 -UBERON:0003645 metacarpal bone of digit 1 13 27162 -UBERON:0003646 metacarpal bone of digit 2 13 27163 -UBERON:0003647 metacarpal bone of digit 3 13 27164 -UBERON:0003648 metacarpal bone of digit 4 13 27165 -UBERON:0003649 metacarpal bone of digit 5 13 27166 -UBERON:0013587 fused metacarpal bones 3 and 4 13 27167 -UBERON:0004249 manual digit bone 12 27168 -UBERON:0001436 phalanx of manus 13 27169 -UBERON:0002234 proximal phalanx of manus 14 27170 -UBERON:0004328 proximal phalanx of manual digit 2 15 27171 -UBERON:0004329 proximal phalanx of manual digit 3 15 27172 -UBERON:0004330 proximal phalanx of manual digit 4 15 27173 -UBERON:0004331 proximal phalanx of manual digit 5 15 27174 -UBERON:0004338 proximal phalanx of manual digit 1 15 27175 -UBERON:0003620 manual digit 1 phalanx 14 27176 -UBERON:0004337 distal phalanx of manual digit 1 15 27177 -UBERON:0004338 proximal phalanx of manual digit 1 15 27178 -UBERON:4200219 middle phalanx of manual digit 1 15 27179 -UBERON:0003636 manual digit 2 phalanx 14 27180 -UBERON:0004311 distal phalanx of manual digit 2 15 27181 -UBERON:0004320 middle phalanx of manual digit 2 15 27182 -UBERON:0004328 proximal phalanx of manual digit 2 15 27183 -UBERON:0003637 manual digit 3 phalanx 14 27184 -UBERON:0004312 distal phalanx of manual digit 3 15 27185 -UBERON:0004321 middle phalanx of manual digit 3 15 27186 -UBERON:0004329 proximal phalanx of manual digit 3 15 27187 -UBERON:0003638 manual digit 4 phalanx 14 27188 -UBERON:0004313 distal phalanx of manual digit 4 15 27189 -UBERON:0004322 middle phalanx of manual digit 4 15 27190 -UBERON:0004330 proximal phalanx of manual digit 4 15 27191 -UBERON:0003639 manual digit 5 phalanx 14 27192 -UBERON:0004314 distal phalanx of manual digit 5 15 27193 -UBERON:0004323 middle phalanx of manual digit 5 15 27194 -UBERON:0004331 proximal phalanx of manual digit 5 15 27195 -UBERON:0003864 middle phalanx of manus 14 27196 -UBERON:0004320 middle phalanx of manual digit 2 15 27197 -UBERON:0004321 middle phalanx of manual digit 3 15 27198 -UBERON:0004322 middle phalanx of manual digit 4 15 27199 -UBERON:0004323 middle phalanx of manual digit 5 15 27200 -UBERON:4200219 middle phalanx of manual digit 1 15 27201 -UBERON:0003865 distal phalanx of manus 14 27202 -UBERON:0004311 distal phalanx of manual digit 2 15 27203 -UBERON:0004312 distal phalanx of manual digit 3 15 27204 -UBERON:0004313 distal phalanx of manual digit 4 15 27205 -UBERON:0004314 distal phalanx of manual digit 5 15 27206 -UBERON:0004337 distal phalanx of manual digit 1 15 27207 -UBERON:0007991 proximal sesamoid bone of manus 13 27208 -UBERON:3000856 intercalary element of fore digit 13 27209 -UBERON:0012268 equine forelimb splint bone 12 27210 -UBERON:0005899 pes bone 10 27211 -UBERON:0001447 tarsal bone 11 27212 -UBERON:0001451 navicular bone of pes 12 27213 -UBERON:0006836 medial tibial tarsal bone 12 27214 -UBERON:0010721 distal tarsal bone 12 27215 -UBERON:0001452 distal tarsal bone 1 13 27216 -UBERON:0001453 distal tarsal bone 2 13 27217 -UBERON:0001454 distal tarsal bone 3 13 27218 -UBERON:0001455 cuboid bone 13 27219 -UBERON:0010723 os vesalianum pedis 13 27220 -UBERON:0010737 distal tarsal bone 4 13 27221 -UBERON:0010738 distal tarsal bone 5 13 27222 -UBERON:0012289 fused tarsal bones 2 and 3 13 27223 -UBERON:0013649 fused tarsal bones 1 and 2 13 27224 -UBERON:3001002 basale commune (tarsal) 13 27225 -UBERON:0011679 proximal tarsal bone 12 27226 -UBERON:0001450 calcaneus 13 27227 -UBERON:0002395 talus 13 27228 -UBERON:0011678 hindlimb intermedium bone 13 27229 -UBERON:0012126 fibulare 13 27230 -UBERON:0012288 centroquartal bone 12 27231 -UBERON:3010045 centrale 1 12 27232 -UBERON:3010073 centrale 2 12 27233 -UBERON:4200011 pedal centrale 12 27234 -UBERON:4200152 intertarsale sesamoid 12 27235 -UBERON:0008000 sesamoid bone of pes 11 27236 -UBERON:0007990 proximal sesamoid bone of pes 12 27237 -UBERON:4200152 intertarsale sesamoid 12 27238 -UBERON:0008195 tarsometatarsus 11 27239 -UBERON:0010725 accessory navicular bone 11 27240 -UBERON:0012359 pedal digitopodium bone 11 27241 -UBERON:0001448 metatarsal bone 12 27242 -UBERON:0003650 metatarsal bone of digit 1 13 27243 -UBERON:0003651 metatarsal bone of digit 2 13 27244 -UBERON:0003652 metatarsal bone of digit 3 13 27245 -UBERON:0003653 metatarsal bone of digit 4 13 27246 -UBERON:0003654 metatarsal bone of digit 5 13 27247 -UBERON:0013588 fused metatarsal bones 3 and 4 13 27248 -UBERON:0014763 fused metatarsal bones 2-4 14 27249 -UBERON:4200153 metatarsal bone of digit 6 13 27250 -UBERON:4200157 metatarsal bone of digit 7 13 27251 -UBERON:4200158 metatarsal bone of digit 8 13 27252 -UBERON:0004248 pedal digit bone 12 27253 -UBERON:0001449 phalanx of pes 13 27254 -UBERON:0003640 pedal digit 1 phalanx 14 27255 -UBERON:0004315 distal phalanx of pedal digit 1 15 27256 -UBERON:0004332 proximal phalanx of pedal digit 1 15 27257 -UBERON:0003641 pedal digit 2 phalanx 14 27258 -UBERON:0004316 distal phalanx of pedal digit 2 15 27259 -UBERON:0004324 middle phalanx of pedal digit 2 15 27260 -UBERON:0004333 proximal phalanx of pedal digit 2 15 27261 -UBERON:0003642 pedal digit 3 phalanx 14 27262 -UBERON:0004317 distal phalanx of pedal digit 3 15 27263 -UBERON:0004325 middle phalanx of pedal digit 3 15 27264 -UBERON:0004334 proximal phalanx of pedal digit 3 15 27265 -UBERON:0003862 pedal digit 4 phalanx 14 27266 -UBERON:0004318 distal phalanx of pedal digit 4 15 27267 -UBERON:0004326 middle phalanx of pedal digit 4 15 27268 -UBERON:0004335 proximal phalanx of pedal digit 4 15 27269 -UBERON:0003863 pedal digit 5 phalanx 14 27270 -UBERON:0004319 distal phalanx of pedal digit 5 15 27271 -UBERON:0004327 middle phalanx of pedal digit 5 15 27272 -UBERON:0004336 proximal phalanx of pedal digit 5 15 27273 -UBERON:0003866 middle phalanx of pes 14 27274 -UBERON:0004324 middle phalanx of pedal digit 2 15 27275 -UBERON:0004325 middle phalanx of pedal digit 3 15 27276 -UBERON:0004326 middle phalanx of pedal digit 4 15 27277 -UBERON:0004327 middle phalanx of pedal digit 5 15 27278 -UBERON:0003867 distal phalanx of pes 14 27279 -UBERON:0004315 distal phalanx of pedal digit 1 15 27280 -UBERON:0004316 distal phalanx of pedal digit 2 15 27281 -UBERON:0004317 distal phalanx of pedal digit 3 15 27282 -UBERON:0004318 distal phalanx of pedal digit 4 15 27283 -UBERON:0004319 distal phalanx of pedal digit 5 15 27284 -UBERON:0003868 proximal phalanx of pes 14 27285 -UBERON:0004332 proximal phalanx of pedal digit 1 15 27286 -UBERON:0004333 proximal phalanx of pedal digit 2 15 27287 -UBERON:0004334 proximal phalanx of pedal digit 3 15 27288 -UBERON:0004335 proximal phalanx of pedal digit 4 15 27289 -UBERON:0004336 proximal phalanx of pedal digit 5 15 27290 -UBERON:4100009 pedal digit 7 phalanx 14 27291 -UBERON:0007990 proximal sesamoid bone of pes 13 27292 -UBERON:3000931 intercalary element of hind digit 13 27293 -UBERON:3010675 bony nodule of terminal phalanx of hind digit 13 27294 -UBERON:0012269 equine hindlimb splint bone 12 27295 -UBERON:0010759 equine distal sesamoid 10 27296 -UBERON:0012357 digitopodium bone 10 27297 -UBERON:0003221 phalanx 11 27298 -UBERON:0001436 phalanx of manus 12 27299 -UBERON:0002234 proximal phalanx of manus 13 27300 -UBERON:0004328 proximal phalanx of manual digit 2 14 27301 -UBERON:0004329 proximal phalanx of manual digit 3 14 27302 -UBERON:0004330 proximal phalanx of manual digit 4 14 27303 -UBERON:0004331 proximal phalanx of manual digit 5 14 27304 -UBERON:0004338 proximal phalanx of manual digit 1 14 27305 -UBERON:0003620 manual digit 1 phalanx 13 27306 -UBERON:0004337 distal phalanx of manual digit 1 14 27307 -UBERON:0004338 proximal phalanx of manual digit 1 14 27308 -UBERON:4200219 middle phalanx of manual digit 1 14 27309 -UBERON:0003636 manual digit 2 phalanx 13 27310 -UBERON:0004311 distal phalanx of manual digit 2 14 27311 -UBERON:0004320 middle phalanx of manual digit 2 14 27312 -UBERON:0004328 proximal phalanx of manual digit 2 14 27313 -UBERON:0003637 manual digit 3 phalanx 13 27314 -UBERON:0004312 distal phalanx of manual digit 3 14 27315 -UBERON:0004321 middle phalanx of manual digit 3 14 27316 -UBERON:0004329 proximal phalanx of manual digit 3 14 27317 -UBERON:0003638 manual digit 4 phalanx 13 27318 -UBERON:0004313 distal phalanx of manual digit 4 14 27319 -UBERON:0004322 middle phalanx of manual digit 4 14 27320 -UBERON:0004330 proximal phalanx of manual digit 4 14 27321 -UBERON:0003639 manual digit 5 phalanx 13 27322 -UBERON:0004314 distal phalanx of manual digit 5 14 27323 -UBERON:0004323 middle phalanx of manual digit 5 14 27324 -UBERON:0004331 proximal phalanx of manual digit 5 14 27325 -UBERON:0003864 middle phalanx of manus 13 27326 -UBERON:0004320 middle phalanx of manual digit 2 14 27327 -UBERON:0004321 middle phalanx of manual digit 3 14 27328 -UBERON:0004322 middle phalanx of manual digit 4 14 27329 -UBERON:0004323 middle phalanx of manual digit 5 14 27330 -UBERON:4200219 middle phalanx of manual digit 1 14 27331 -UBERON:0003865 distal phalanx of manus 13 27332 -UBERON:0004311 distal phalanx of manual digit 2 14 27333 -UBERON:0004312 distal phalanx of manual digit 3 14 27334 -UBERON:0004313 distal phalanx of manual digit 4 14 27335 -UBERON:0004314 distal phalanx of manual digit 5 14 27336 -UBERON:0004337 distal phalanx of manual digit 1 14 27337 -UBERON:0001449 phalanx of pes 12 27338 -UBERON:0003640 pedal digit 1 phalanx 13 27339 -UBERON:0004315 distal phalanx of pedal digit 1 14 27340 -UBERON:0004332 proximal phalanx of pedal digit 1 14 27341 -UBERON:0003641 pedal digit 2 phalanx 13 27342 -UBERON:0004316 distal phalanx of pedal digit 2 14 27343 -UBERON:0004324 middle phalanx of pedal digit 2 14 27344 -UBERON:0004333 proximal phalanx of pedal digit 2 14 27345 -UBERON:0003642 pedal digit 3 phalanx 13 27346 -UBERON:0004317 distal phalanx of pedal digit 3 14 27347 -UBERON:0004325 middle phalanx of pedal digit 3 14 27348 -UBERON:0004334 proximal phalanx of pedal digit 3 14 27349 -UBERON:0003862 pedal digit 4 phalanx 13 27350 -UBERON:0004318 distal phalanx of pedal digit 4 14 27351 -UBERON:0004326 middle phalanx of pedal digit 4 14 27352 -UBERON:0004335 proximal phalanx of pedal digit 4 14 27353 -UBERON:0003863 pedal digit 5 phalanx 13 27354 -UBERON:0004319 distal phalanx of pedal digit 5 14 27355 -UBERON:0004327 middle phalanx of pedal digit 5 14 27356 -UBERON:0004336 proximal phalanx of pedal digit 5 14 27357 -UBERON:0003866 middle phalanx of pes 13 27358 -UBERON:0004324 middle phalanx of pedal digit 2 14 27359 -UBERON:0004325 middle phalanx of pedal digit 3 14 27360 -UBERON:0004326 middle phalanx of pedal digit 4 14 27361 -UBERON:0004327 middle phalanx of pedal digit 5 14 27362 -UBERON:0003867 distal phalanx of pes 13 27363 -UBERON:0004315 distal phalanx of pedal digit 1 14 27364 -UBERON:0004316 distal phalanx of pedal digit 2 14 27365 -UBERON:0004317 distal phalanx of pedal digit 3 14 27366 -UBERON:0004318 distal phalanx of pedal digit 4 14 27367 -UBERON:0004319 distal phalanx of pedal digit 5 14 27368 -UBERON:0003868 proximal phalanx of pes 13 27369 -UBERON:0004332 proximal phalanx of pedal digit 1 14 27370 -UBERON:0004333 proximal phalanx of pedal digit 2 14 27371 -UBERON:0004334 proximal phalanx of pedal digit 3 14 27372 -UBERON:0004335 proximal phalanx of pedal digit 4 14 27373 -UBERON:0004336 proximal phalanx of pedal digit 5 14 27374 -UBERON:4100009 pedal digit 7 phalanx 13 27375 -UBERON:0004300 distal phalanx 12 27376 -UBERON:0003865 distal phalanx of manus 13 27377 -UBERON:0004311 distal phalanx of manual digit 2 14 27378 -UBERON:0004312 distal phalanx of manual digit 3 14 27379 -UBERON:0004313 distal phalanx of manual digit 4 14 27380 -UBERON:0004314 distal phalanx of manual digit 5 14 27381 -UBERON:0004337 distal phalanx of manual digit 1 14 27382 -UBERON:0003867 distal phalanx of pes 13 27383 -UBERON:0004315 distal phalanx of pedal digit 1 14 27384 -UBERON:0004316 distal phalanx of pedal digit 2 14 27385 -UBERON:0004317 distal phalanx of pedal digit 3 14 27386 -UBERON:0004318 distal phalanx of pedal digit 4 14 27387 -UBERON:0004319 distal phalanx of pedal digit 5 14 27388 -UBERON:0014483 distal phalanx of digit 1 13 27389 -UBERON:0004315 distal phalanx of pedal digit 1 14 27390 -UBERON:0004337 distal phalanx of manual digit 1 14 27391 -UBERON:0014484 distal phalanx of digit 2 13 27392 -UBERON:0004311 distal phalanx of manual digit 2 14 27393 -UBERON:0004316 distal phalanx of pedal digit 2 14 27394 -UBERON:0014485 distal phalanx of digit 3 13 27395 -UBERON:0004312 distal phalanx of manual digit 3 14 27396 -UBERON:0004317 distal phalanx of pedal digit 3 14 27397 -UBERON:0014486 distal phalanx of digit 4 13 27398 -UBERON:0004313 distal phalanx of manual digit 4 14 27399 -UBERON:0004318 distal phalanx of pedal digit 4 14 27400 -UBERON:0014487 distal phalanx of digit 5 13 27401 -UBERON:0004314 distal phalanx of manual digit 5 14 27402 -UBERON:0004319 distal phalanx of pedal digit 5 14 27403 -UBERON:3010746 T-shaped terminal phalanx 13 27404 -UBERON:0004301 middle phalanx 12 27405 -UBERON:0003864 middle phalanx of manus 13 27406 -UBERON:0004320 middle phalanx of manual digit 2 14 27407 -UBERON:0004321 middle phalanx of manual digit 3 14 27408 -UBERON:0004322 middle phalanx of manual digit 4 14 27409 -UBERON:0004323 middle phalanx of manual digit 5 14 27410 -UBERON:4200219 middle phalanx of manual digit 1 14 27411 -UBERON:0003866 middle phalanx of pes 13 27412 -UBERON:0004324 middle phalanx of pedal digit 2 14 27413 -UBERON:0004325 middle phalanx of pedal digit 3 14 27414 -UBERON:0004326 middle phalanx of pedal digit 4 14 27415 -UBERON:0004327 middle phalanx of pedal digit 5 14 27416 -UBERON:0014488 middle phalanx of digit 2 13 27417 -UBERON:0004320 middle phalanx of manual digit 2 14 27418 -UBERON:0004324 middle phalanx of pedal digit 2 14 27419 -UBERON:0014489 middle phalanx of digit 3 13 27420 -UBERON:0004321 middle phalanx of manual digit 3 14 27421 -UBERON:0004325 middle phalanx of pedal digit 3 14 27422 -UBERON:0009555 short pastern bone 14 27423 -UBERON:0014490 middle phalanx of digit 4 13 27424 -UBERON:0004322 middle phalanx of manual digit 4 14 27425 -UBERON:0004326 middle phalanx of pedal digit 4 14 27426 -UBERON:0014491 middle phalanx of digit 5 13 27427 -UBERON:0004323 middle phalanx of manual digit 5 14 27428 -UBERON:0004327 middle phalanx of pedal digit 5 14 27429 -UBERON:0004302 proximal phalanx 12 27430 -UBERON:0002234 proximal phalanx of manus 13 27431 -UBERON:0004328 proximal phalanx of manual digit 2 14 27432 -UBERON:0004329 proximal phalanx of manual digit 3 14 27433 -UBERON:0004330 proximal phalanx of manual digit 4 14 27434 -UBERON:0004331 proximal phalanx of manual digit 5 14 27435 -UBERON:0004338 proximal phalanx of manual digit 1 14 27436 -UBERON:0003868 proximal phalanx of pes 13 27437 -UBERON:0004332 proximal phalanx of pedal digit 1 14 27438 -UBERON:0004333 proximal phalanx of pedal digit 2 14 27439 -UBERON:0004334 proximal phalanx of pedal digit 3 14 27440 -UBERON:0004335 proximal phalanx of pedal digit 4 14 27441 -UBERON:0004336 proximal phalanx of pedal digit 5 14 27442 -UBERON:0014501 proximal phalanx of digit 1 13 27443 -UBERON:0004332 proximal phalanx of pedal digit 1 14 27444 -UBERON:0004338 proximal phalanx of manual digit 1 14 27445 -UBERON:0014502 proximal phalanx of digit 2 13 27446 -UBERON:0004328 proximal phalanx of manual digit 2 14 27447 -UBERON:0004333 proximal phalanx of pedal digit 2 14 27448 -UBERON:0014503 proximal phalanx of digit 3 13 27449 -UBERON:0004329 proximal phalanx of manual digit 3 14 27450 -UBERON:0004334 proximal phalanx of pedal digit 3 14 27451 -UBERON:0009556 long pastern bone 14 27452 -UBERON:0014504 proximal phalanx of digit 4 13 27453 -UBERON:0004330 proximal phalanx of manual digit 4 14 27454 -UBERON:0004335 proximal phalanx of pedal digit 4 14 27455 -UBERON:0014505 proximal phalanx of digit 5 13 27456 -UBERON:0004331 proximal phalanx of manual digit 5 14 27457 -UBERON:0004336 proximal phalanx of pedal digit 5 14 27458 -UBERON:0009558 pastern bone 12 27459 -UBERON:0009555 short pastern bone 13 27460 -UBERON:0009556 long pastern bone 13 27461 -UBERON:0018266 third phalanx 12 27462 -UBERON:0018322 fourth phalanx 12 27463 -UBERON:4100005 second phalanx 12 27464 -UBERON:0003821 metapodium bone 11 27465 -UBERON:0001448 metatarsal bone 12 27466 -UBERON:0003650 metatarsal bone of digit 1 13 27467 -UBERON:0003651 metatarsal bone of digit 2 13 27468 -UBERON:0003652 metatarsal bone of digit 3 13 27469 -UBERON:0003653 metatarsal bone of digit 4 13 27470 -UBERON:0003654 metatarsal bone of digit 5 13 27471 -UBERON:0013588 fused metatarsal bones 3 and 4 13 27472 -UBERON:0014763 fused metatarsal bones 2-4 14 27473 -UBERON:4200153 metatarsal bone of digit 6 13 27474 -UBERON:4200157 metatarsal bone of digit 7 13 27475 -UBERON:4200158 metatarsal bone of digit 8 13 27476 -UBERON:0002374 metacarpal bone 12 27477 -UBERON:0003645 metacarpal bone of digit 1 13 27478 -UBERON:0003646 metacarpal bone of digit 2 13 27479 -UBERON:0003647 metacarpal bone of digit 3 13 27480 -UBERON:0003648 metacarpal bone of digit 4 13 27481 -UBERON:0003649 metacarpal bone of digit 5 13 27482 -UBERON:0013587 fused metacarpal bones 3 and 4 13 27483 -UBERON:0012267 equine splint bone 12 27484 -UBERON:0012268 equine forelimb splint bone 13 27485 -UBERON:0012269 equine hindlimb splint bone 13 27486 -UBERON:0013581 metapodium bone 1 12 27487 -UBERON:0003645 metacarpal bone of digit 1 13 27488 -UBERON:0003650 metatarsal bone of digit 1 13 27489 -UBERON:0013582 metapodium bone 2 12 27490 -UBERON:0003646 metacarpal bone of digit 2 13 27491 -UBERON:0003651 metatarsal bone of digit 2 13 27492 -UBERON:0013583 metapodium bone 3 12 27493 -UBERON:0003647 metacarpal bone of digit 3 13 27494 -UBERON:0003652 metatarsal bone of digit 3 13 27495 -UBERON:0013584 metapodium bone 4 12 27496 -UBERON:0003648 metacarpal bone of digit 4 13 27497 -UBERON:0003653 metatarsal bone of digit 4 13 27498 -UBERON:0013585 metapodium bone 5 12 27499 -UBERON:0003649 metacarpal bone of digit 5 13 27500 -UBERON:0003654 metatarsal bone of digit 5 13 27501 -UBERON:0013586 fused metapodial bones 3 and 4 12 27502 -UBERON:0013587 fused metacarpal bones 3 and 4 13 27503 -UBERON:0013588 fused metatarsal bones 3 and 4 13 27504 -UBERON:0014763 fused metatarsal bones 2-4 14 27505 -UBERON:0014762 fused metapodial bones 2-4 13 27506 -UBERON:0014763 fused metatarsal bones 2-4 14 27507 -UBERON:4200154 metapodium bone 6 12 27508 -UBERON:4200153 metatarsal bone of digit 6 13 27509 -UBERON:4200155 metapodium bone 7 12 27510 -UBERON:4200157 metatarsal bone of digit 7 13 27511 -UBERON:4200156 metapodium bone 8 12 27512 -UBERON:4200158 metatarsal bone of digit 8 13 27513 -UBERON:0012358 manual digitopodium bone 11 27514 -UBERON:0002374 metacarpal bone 12 27515 -UBERON:0003645 metacarpal bone of digit 1 13 27516 -UBERON:0003646 metacarpal bone of digit 2 13 27517 -UBERON:0003647 metacarpal bone of digit 3 13 27518 -UBERON:0003648 metacarpal bone of digit 4 13 27519 -UBERON:0003649 metacarpal bone of digit 5 13 27520 -UBERON:0013587 fused metacarpal bones 3 and 4 13 27521 -UBERON:0004249 manual digit bone 12 27522 -UBERON:0001436 phalanx of manus 13 27523 -UBERON:0002234 proximal phalanx of manus 14 27524 -UBERON:0004328 proximal phalanx of manual digit 2 15 27525 -UBERON:0004329 proximal phalanx of manual digit 3 15 27526 -UBERON:0004330 proximal phalanx of manual digit 4 15 27527 -UBERON:0004331 proximal phalanx of manual digit 5 15 27528 -UBERON:0004338 proximal phalanx of manual digit 1 15 27529 -UBERON:0003620 manual digit 1 phalanx 14 27530 -UBERON:0004337 distal phalanx of manual digit 1 15 27531 -UBERON:0004338 proximal phalanx of manual digit 1 15 27532 -UBERON:4200219 middle phalanx of manual digit 1 15 27533 -UBERON:0003636 manual digit 2 phalanx 14 27534 -UBERON:0004311 distal phalanx of manual digit 2 15 27535 -UBERON:0004320 middle phalanx of manual digit 2 15 27536 -UBERON:0004328 proximal phalanx of manual digit 2 15 27537 -UBERON:0003637 manual digit 3 phalanx 14 27538 -UBERON:0004312 distal phalanx of manual digit 3 15 27539 -UBERON:0004321 middle phalanx of manual digit 3 15 27540 -UBERON:0004329 proximal phalanx of manual digit 3 15 27541 -UBERON:0003638 manual digit 4 phalanx 14 27542 -UBERON:0004313 distal phalanx of manual digit 4 15 27543 -UBERON:0004322 middle phalanx of manual digit 4 15 27544 -UBERON:0004330 proximal phalanx of manual digit 4 15 27545 -UBERON:0003639 manual digit 5 phalanx 14 27546 -UBERON:0004314 distal phalanx of manual digit 5 15 27547 -UBERON:0004323 middle phalanx of manual digit 5 15 27548 -UBERON:0004331 proximal phalanx of manual digit 5 15 27549 -UBERON:0003864 middle phalanx of manus 14 27550 -UBERON:0004320 middle phalanx of manual digit 2 15 27551 -UBERON:0004321 middle phalanx of manual digit 3 15 27552 -UBERON:0004322 middle phalanx of manual digit 4 15 27553 -UBERON:0004323 middle phalanx of manual digit 5 15 27554 -UBERON:4200219 middle phalanx of manual digit 1 15 27555 -UBERON:0003865 distal phalanx of manus 14 27556 -UBERON:0004311 distal phalanx of manual digit 2 15 27557 -UBERON:0004312 distal phalanx of manual digit 3 15 27558 -UBERON:0004313 distal phalanx of manual digit 4 15 27559 -UBERON:0004314 distal phalanx of manual digit 5 15 27560 -UBERON:0004337 distal phalanx of manual digit 1 15 27561 -UBERON:0007991 proximal sesamoid bone of manus 13 27562 -UBERON:3000856 intercalary element of fore digit 13 27563 -UBERON:0012268 equine forelimb splint bone 12 27564 -UBERON:0012359 pedal digitopodium bone 11 27565 -UBERON:0001448 metatarsal bone 12 27566 -UBERON:0003650 metatarsal bone of digit 1 13 27567 -UBERON:0003651 metatarsal bone of digit 2 13 27568 -UBERON:0003652 metatarsal bone of digit 3 13 27569 -UBERON:0003653 metatarsal bone of digit 4 13 27570 -UBERON:0003654 metatarsal bone of digit 5 13 27571 -UBERON:0013588 fused metatarsal bones 3 and 4 13 27572 -UBERON:0014763 fused metatarsal bones 2-4 14 27573 -UBERON:4200153 metatarsal bone of digit 6 13 27574 -UBERON:4200157 metatarsal bone of digit 7 13 27575 -UBERON:4200158 metatarsal bone of digit 8 13 27576 -UBERON:0004248 pedal digit bone 12 27577 -UBERON:0001449 phalanx of pes 13 27578 -UBERON:0003640 pedal digit 1 phalanx 14 27579 -UBERON:0004315 distal phalanx of pedal digit 1 15 27580 -UBERON:0004332 proximal phalanx of pedal digit 1 15 27581 -UBERON:0003641 pedal digit 2 phalanx 14 27582 -UBERON:0004316 distal phalanx of pedal digit 2 15 27583 -UBERON:0004324 middle phalanx of pedal digit 2 15 27584 -UBERON:0004333 proximal phalanx of pedal digit 2 15 27585 -UBERON:0003642 pedal digit 3 phalanx 14 27586 -UBERON:0004317 distal phalanx of pedal digit 3 15 27587 -UBERON:0004325 middle phalanx of pedal digit 3 15 27588 -UBERON:0004334 proximal phalanx of pedal digit 3 15 27589 -UBERON:0003862 pedal digit 4 phalanx 14 27590 -UBERON:0004318 distal phalanx of pedal digit 4 15 27591 -UBERON:0004326 middle phalanx of pedal digit 4 15 27592 -UBERON:0004335 proximal phalanx of pedal digit 4 15 27593 -UBERON:0003863 pedal digit 5 phalanx 14 27594 -UBERON:0004319 distal phalanx of pedal digit 5 15 27595 -UBERON:0004327 middle phalanx of pedal digit 5 15 27596 -UBERON:0004336 proximal phalanx of pedal digit 5 15 27597 -UBERON:0003866 middle phalanx of pes 14 27598 -UBERON:0004324 middle phalanx of pedal digit 2 15 27599 -UBERON:0004325 middle phalanx of pedal digit 3 15 27600 -UBERON:0004326 middle phalanx of pedal digit 4 15 27601 -UBERON:0004327 middle phalanx of pedal digit 5 15 27602 -UBERON:0003867 distal phalanx of pes 14 27603 -UBERON:0004315 distal phalanx of pedal digit 1 15 27604 -UBERON:0004316 distal phalanx of pedal digit 2 15 27605 -UBERON:0004317 distal phalanx of pedal digit 3 15 27606 -UBERON:0004318 distal phalanx of pedal digit 4 15 27607 -UBERON:0004319 distal phalanx of pedal digit 5 15 27608 -UBERON:0003868 proximal phalanx of pes 14 27609 -UBERON:0004332 proximal phalanx of pedal digit 1 15 27610 -UBERON:0004333 proximal phalanx of pedal digit 2 15 27611 -UBERON:0004334 proximal phalanx of pedal digit 3 15 27612 -UBERON:0004335 proximal phalanx of pedal digit 4 15 27613 -UBERON:0004336 proximal phalanx of pedal digit 5 15 27614 -UBERON:4100009 pedal digit 7 phalanx 14 27615 -UBERON:0007990 proximal sesamoid bone of pes 13 27616 -UBERON:3000931 intercalary element of hind digit 13 27617 -UBERON:3010675 bony nodule of terminal phalanx of hind digit 13 27618 -UBERON:0012269 equine hindlimb splint bone 12 27619 -UBERON:3010624 subarticular sesamoid 11 27620 -UBERON:0015012 tarsometatarsus endochondral element 9 27621 -UBERON:0008195 tarsometatarsus 10 27622 -UBERON:0010900 tarsometatarsus cartilage element 10 27623 -UBERON:0010901 tarsometatarsus pre-cartilage condensation 10 27624 -UBERON:0015023 phalanx endochondral element 9 27625 -UBERON:0003221 phalanx 10 27626 -UBERON:0001436 phalanx of manus 11 27627 -UBERON:0002234 proximal phalanx of manus 12 27628 -UBERON:0004328 proximal phalanx of manual digit 2 13 27629 -UBERON:0004329 proximal phalanx of manual digit 3 13 27630 -UBERON:0004330 proximal phalanx of manual digit 4 13 27631 -UBERON:0004331 proximal phalanx of manual digit 5 13 27632 -UBERON:0004338 proximal phalanx of manual digit 1 13 27633 -UBERON:0003620 manual digit 1 phalanx 12 27634 -UBERON:0004337 distal phalanx of manual digit 1 13 27635 -UBERON:0004338 proximal phalanx of manual digit 1 13 27636 -UBERON:4200219 middle phalanx of manual digit 1 13 27637 -UBERON:0003636 manual digit 2 phalanx 12 27638 -UBERON:0004311 distal phalanx of manual digit 2 13 27639 -UBERON:0004320 middle phalanx of manual digit 2 13 27640 -UBERON:0004328 proximal phalanx of manual digit 2 13 27641 -UBERON:0003637 manual digit 3 phalanx 12 27642 -UBERON:0004312 distal phalanx of manual digit 3 13 27643 -UBERON:0004321 middle phalanx of manual digit 3 13 27644 -UBERON:0004329 proximal phalanx of manual digit 3 13 27645 -UBERON:0003638 manual digit 4 phalanx 12 27646 -UBERON:0004313 distal phalanx of manual digit 4 13 27647 -UBERON:0004322 middle phalanx of manual digit 4 13 27648 -UBERON:0004330 proximal phalanx of manual digit 4 13 27649 -UBERON:0003639 manual digit 5 phalanx 12 27650 -UBERON:0004314 distal phalanx of manual digit 5 13 27651 -UBERON:0004323 middle phalanx of manual digit 5 13 27652 -UBERON:0004331 proximal phalanx of manual digit 5 13 27653 -UBERON:0003864 middle phalanx of manus 12 27654 -UBERON:0004320 middle phalanx of manual digit 2 13 27655 -UBERON:0004321 middle phalanx of manual digit 3 13 27656 -UBERON:0004322 middle phalanx of manual digit 4 13 27657 -UBERON:0004323 middle phalanx of manual digit 5 13 27658 -UBERON:4200219 middle phalanx of manual digit 1 13 27659 -UBERON:0003865 distal phalanx of manus 12 27660 -UBERON:0004311 distal phalanx of manual digit 2 13 27661 -UBERON:0004312 distal phalanx of manual digit 3 13 27662 -UBERON:0004313 distal phalanx of manual digit 4 13 27663 -UBERON:0004314 distal phalanx of manual digit 5 13 27664 -UBERON:0004337 distal phalanx of manual digit 1 13 27665 -UBERON:0001449 phalanx of pes 11 27666 -UBERON:0003640 pedal digit 1 phalanx 12 27667 -UBERON:0004315 distal phalanx of pedal digit 1 13 27668 -UBERON:0004332 proximal phalanx of pedal digit 1 13 27669 -UBERON:0003641 pedal digit 2 phalanx 12 27670 -UBERON:0004316 distal phalanx of pedal digit 2 13 27671 -UBERON:0004324 middle phalanx of pedal digit 2 13 27672 -UBERON:0004333 proximal phalanx of pedal digit 2 13 27673 -UBERON:0003642 pedal digit 3 phalanx 12 27674 -UBERON:0004317 distal phalanx of pedal digit 3 13 27675 -UBERON:0004325 middle phalanx of pedal digit 3 13 27676 -UBERON:0004334 proximal phalanx of pedal digit 3 13 27677 -UBERON:0003862 pedal digit 4 phalanx 12 27678 -UBERON:0004318 distal phalanx of pedal digit 4 13 27679 -UBERON:0004326 middle phalanx of pedal digit 4 13 27680 -UBERON:0004335 proximal phalanx of pedal digit 4 13 27681 -UBERON:0003863 pedal digit 5 phalanx 12 27682 -UBERON:0004319 distal phalanx of pedal digit 5 13 27683 -UBERON:0004327 middle phalanx of pedal digit 5 13 27684 -UBERON:0004336 proximal phalanx of pedal digit 5 13 27685 -UBERON:0003866 middle phalanx of pes 12 27686 -UBERON:0004324 middle phalanx of pedal digit 2 13 27687 -UBERON:0004325 middle phalanx of pedal digit 3 13 27688 -UBERON:0004326 middle phalanx of pedal digit 4 13 27689 -UBERON:0004327 middle phalanx of pedal digit 5 13 27690 -UBERON:0003867 distal phalanx of pes 12 27691 -UBERON:0004315 distal phalanx of pedal digit 1 13 27692 -UBERON:0004316 distal phalanx of pedal digit 2 13 27693 -UBERON:0004317 distal phalanx of pedal digit 3 13 27694 -UBERON:0004318 distal phalanx of pedal digit 4 13 27695 -UBERON:0004319 distal phalanx of pedal digit 5 13 27696 -UBERON:0003868 proximal phalanx of pes 12 27697 -UBERON:0004332 proximal phalanx of pedal digit 1 13 27698 -UBERON:0004333 proximal phalanx of pedal digit 2 13 27699 -UBERON:0004334 proximal phalanx of pedal digit 3 13 27700 -UBERON:0004335 proximal phalanx of pedal digit 4 13 27701 -UBERON:0004336 proximal phalanx of pedal digit 5 13 27702 -UBERON:4100009 pedal digit 7 phalanx 12 27703 -UBERON:0004300 distal phalanx 11 27704 -UBERON:0003865 distal phalanx of manus 12 27705 -UBERON:0004311 distal phalanx of manual digit 2 13 27706 -UBERON:0004312 distal phalanx of manual digit 3 13 27707 -UBERON:0004313 distal phalanx of manual digit 4 13 27708 -UBERON:0004314 distal phalanx of manual digit 5 13 27709 -UBERON:0004337 distal phalanx of manual digit 1 13 27710 -UBERON:0003867 distal phalanx of pes 12 27711 -UBERON:0004315 distal phalanx of pedal digit 1 13 27712 -UBERON:0004316 distal phalanx of pedal digit 2 13 27713 -UBERON:0004317 distal phalanx of pedal digit 3 13 27714 -UBERON:0004318 distal phalanx of pedal digit 4 13 27715 -UBERON:0004319 distal phalanx of pedal digit 5 13 27716 -UBERON:0014483 distal phalanx of digit 1 12 27717 -UBERON:0004315 distal phalanx of pedal digit 1 13 27718 -UBERON:0004337 distal phalanx of manual digit 1 13 27719 -UBERON:0014484 distal phalanx of digit 2 12 27720 -UBERON:0004311 distal phalanx of manual digit 2 13 27721 -UBERON:0004316 distal phalanx of pedal digit 2 13 27722 -UBERON:0014485 distal phalanx of digit 3 12 27723 -UBERON:0004312 distal phalanx of manual digit 3 13 27724 -UBERON:0004317 distal phalanx of pedal digit 3 13 27725 -UBERON:0014486 distal phalanx of digit 4 12 27726 -UBERON:0004313 distal phalanx of manual digit 4 13 27727 -UBERON:0004318 distal phalanx of pedal digit 4 13 27728 -UBERON:0014487 distal phalanx of digit 5 12 27729 -UBERON:0004314 distal phalanx of manual digit 5 13 27730 -UBERON:0004319 distal phalanx of pedal digit 5 13 27731 -UBERON:3010746 T-shaped terminal phalanx 12 27732 -UBERON:0004301 middle phalanx 11 27733 -UBERON:0003864 middle phalanx of manus 12 27734 -UBERON:0004320 middle phalanx of manual digit 2 13 27735 -UBERON:0004321 middle phalanx of manual digit 3 13 27736 -UBERON:0004322 middle phalanx of manual digit 4 13 27737 -UBERON:0004323 middle phalanx of manual digit 5 13 27738 -UBERON:4200219 middle phalanx of manual digit 1 13 27739 -UBERON:0003866 middle phalanx of pes 12 27740 -UBERON:0004324 middle phalanx of pedal digit 2 13 27741 -UBERON:0004325 middle phalanx of pedal digit 3 13 27742 -UBERON:0004326 middle phalanx of pedal digit 4 13 27743 -UBERON:0004327 middle phalanx of pedal digit 5 13 27744 -UBERON:0014488 middle phalanx of digit 2 12 27745 -UBERON:0004320 middle phalanx of manual digit 2 13 27746 -UBERON:0004324 middle phalanx of pedal digit 2 13 27747 -UBERON:0014489 middle phalanx of digit 3 12 27748 -UBERON:0004321 middle phalanx of manual digit 3 13 27749 -UBERON:0004325 middle phalanx of pedal digit 3 13 27750 -UBERON:0009555 short pastern bone 13 27751 -UBERON:0014490 middle phalanx of digit 4 12 27752 -UBERON:0004322 middle phalanx of manual digit 4 13 27753 -UBERON:0004326 middle phalanx of pedal digit 4 13 27754 -UBERON:0014491 middle phalanx of digit 5 12 27755 -UBERON:0004323 middle phalanx of manual digit 5 13 27756 -UBERON:0004327 middle phalanx of pedal digit 5 13 27757 -UBERON:0004302 proximal phalanx 11 27758 -UBERON:0002234 proximal phalanx of manus 12 27759 -UBERON:0004328 proximal phalanx of manual digit 2 13 27760 -UBERON:0004329 proximal phalanx of manual digit 3 13 27761 -UBERON:0004330 proximal phalanx of manual digit 4 13 27762 -UBERON:0004331 proximal phalanx of manual digit 5 13 27763 -UBERON:0004338 proximal phalanx of manual digit 1 13 27764 -UBERON:0003868 proximal phalanx of pes 12 27765 -UBERON:0004332 proximal phalanx of pedal digit 1 13 27766 -UBERON:0004333 proximal phalanx of pedal digit 2 13 27767 -UBERON:0004334 proximal phalanx of pedal digit 3 13 27768 -UBERON:0004335 proximal phalanx of pedal digit 4 13 27769 -UBERON:0004336 proximal phalanx of pedal digit 5 13 27770 -UBERON:0014501 proximal phalanx of digit 1 12 27771 -UBERON:0004332 proximal phalanx of pedal digit 1 13 27772 -UBERON:0004338 proximal phalanx of manual digit 1 13 27773 -UBERON:0014502 proximal phalanx of digit 2 12 27774 -UBERON:0004328 proximal phalanx of manual digit 2 13 27775 -UBERON:0004333 proximal phalanx of pedal digit 2 13 27776 -UBERON:0014503 proximal phalanx of digit 3 12 27777 -UBERON:0004329 proximal phalanx of manual digit 3 13 27778 -UBERON:0004334 proximal phalanx of pedal digit 3 13 27779 -UBERON:0009556 long pastern bone 13 27780 -UBERON:0014504 proximal phalanx of digit 4 12 27781 -UBERON:0004330 proximal phalanx of manual digit 4 13 27782 -UBERON:0004335 proximal phalanx of pedal digit 4 13 27783 -UBERON:0014505 proximal phalanx of digit 5 12 27784 -UBERON:0004331 proximal phalanx of manual digit 5 13 27785 -UBERON:0004336 proximal phalanx of pedal digit 5 13 27786 -UBERON:0009558 pastern bone 11 27787 -UBERON:0009555 short pastern bone 12 27788 -UBERON:0009556 long pastern bone 12 27789 -UBERON:0018266 third phalanx 11 27790 -UBERON:0018322 fourth phalanx 11 27791 -UBERON:4100005 second phalanx 11 27792 -UBERON:0010700 phalanx pre-cartilage condensation 10 27793 -UBERON:0010585 pedal digit phalanx pre-cartilage condensation 11 27794 -UBERON:0010580 pedal digit 1 phalanx pre-cartilage condensation 12 27795 -UBERON:0010581 pedal digit 2 phalanx pre-cartilage condensation 12 27796 -UBERON:0010582 pedal digit 3 phalanx pre-cartilage condensation 12 27797 -UBERON:0010583 pedal digit 4 phalanx pre-cartilage condensation 12 27798 -UBERON:0010584 pedal digit 5 phalanx pre-cartilage condensation 12 27799 -UBERON:0010586 manual digit phalanx pre-cartilage condensation 11 27800 -UBERON:0010575 manual digit 1 phalanx pre-cartilage condensation 12 27801 -UBERON:0010576 manual digit 2 phalanx pre-cartilage condensation 12 27802 -UBERON:0010577 manual digit 3 phalanx pre-cartilage condensation 12 27803 -UBERON:0010578 manual digit 4 phalanx pre-cartilage condensation 12 27804 -UBERON:0010579 manual digit 5 phalanx pre-cartilage condensation 12 27805 -UBERON:0010701 phalanx cartilage element 10 27806 -UBERON:0010685 pedal digit phalanx cartilage element 11 27807 -UBERON:0010680 pedal digit 1 phalanx cartilage element 12 27808 -UBERON:0010681 pedal digit 2 phalanx cartilage element 12 27809 -UBERON:0010682 pedal digit 3 phalanx cartilage element 12 27810 -UBERON:0010683 pedal digit 4 phalanx cartilage element 12 27811 -UBERON:0010684 pedal digit 5 phalanx cartilage element 12 27812 -UBERON:0010686 manual digit phalanx cartilage element 11 27813 -UBERON:0010675 manual digit 1 phalanx cartilage element 12 27814 -UBERON:0010676 manual digit 2 phalanx cartilage element 12 27815 -UBERON:0010677 manual digit 3 phalanx cartilage element 12 27816 -UBERON:0010678 manual digit 4 phalanx cartilage element 12 27817 -UBERON:0010679 manual digit 5 phalanx cartilage element 12 27818 -UBERON:0015024 manual digit phalanx endochondral element 10 27819 -UBERON:0001436 phalanx of manus 11 27820 -UBERON:0002234 proximal phalanx of manus 12 27821 -UBERON:0004328 proximal phalanx of manual digit 2 13 27822 -UBERON:0004329 proximal phalanx of manual digit 3 13 27823 -UBERON:0004330 proximal phalanx of manual digit 4 13 27824 -UBERON:0004331 proximal phalanx of manual digit 5 13 27825 -UBERON:0004338 proximal phalanx of manual digit 1 13 27826 -UBERON:0003620 manual digit 1 phalanx 12 27827 -UBERON:0004337 distal phalanx of manual digit 1 13 27828 -UBERON:0004338 proximal phalanx of manual digit 1 13 27829 -UBERON:4200219 middle phalanx of manual digit 1 13 27830 -UBERON:0003636 manual digit 2 phalanx 12 27831 -UBERON:0004311 distal phalanx of manual digit 2 13 27832 -UBERON:0004320 middle phalanx of manual digit 2 13 27833 -UBERON:0004328 proximal phalanx of manual digit 2 13 27834 -UBERON:0003637 manual digit 3 phalanx 12 27835 -UBERON:0004312 distal phalanx of manual digit 3 13 27836 -UBERON:0004321 middle phalanx of manual digit 3 13 27837 -UBERON:0004329 proximal phalanx of manual digit 3 13 27838 -UBERON:0003638 manual digit 4 phalanx 12 27839 -UBERON:0004313 distal phalanx of manual digit 4 13 27840 -UBERON:0004322 middle phalanx of manual digit 4 13 27841 -UBERON:0004330 proximal phalanx of manual digit 4 13 27842 -UBERON:0003639 manual digit 5 phalanx 12 27843 -UBERON:0004314 distal phalanx of manual digit 5 13 27844 -UBERON:0004323 middle phalanx of manual digit 5 13 27845 -UBERON:0004331 proximal phalanx of manual digit 5 13 27846 -UBERON:0003864 middle phalanx of manus 12 27847 -UBERON:0004320 middle phalanx of manual digit 2 13 27848 -UBERON:0004321 middle phalanx of manual digit 3 13 27849 -UBERON:0004322 middle phalanx of manual digit 4 13 27850 -UBERON:0004323 middle phalanx of manual digit 5 13 27851 -UBERON:4200219 middle phalanx of manual digit 1 13 27852 -UBERON:0003865 distal phalanx of manus 12 27853 -UBERON:0004311 distal phalanx of manual digit 2 13 27854 -UBERON:0004312 distal phalanx of manual digit 3 13 27855 -UBERON:0004313 distal phalanx of manual digit 4 13 27856 -UBERON:0004314 distal phalanx of manual digit 5 13 27857 -UBERON:0004337 distal phalanx of manual digit 1 13 27858 -UBERON:0010586 manual digit phalanx pre-cartilage condensation 11 27859 -UBERON:0010575 manual digit 1 phalanx pre-cartilage condensation 12 27860 -UBERON:0010576 manual digit 2 phalanx pre-cartilage condensation 12 27861 -UBERON:0010577 manual digit 3 phalanx pre-cartilage condensation 12 27862 -UBERON:0010578 manual digit 4 phalanx pre-cartilage condensation 12 27863 -UBERON:0010579 manual digit 5 phalanx pre-cartilage condensation 12 27864 -UBERON:0010686 manual digit phalanx cartilage element 11 27865 -UBERON:0010675 manual digit 1 phalanx cartilage element 12 27866 -UBERON:0010676 manual digit 2 phalanx cartilage element 12 27867 -UBERON:0010677 manual digit 3 phalanx cartilage element 12 27868 -UBERON:0010678 manual digit 4 phalanx cartilage element 12 27869 -UBERON:0010679 manual digit 5 phalanx cartilage element 12 27870 -UBERON:0015025 manual digit 1 phalanx endochondral element 11 27871 -UBERON:0003620 manual digit 1 phalanx 12 27872 -UBERON:0004337 distal phalanx of manual digit 1 13 27873 -UBERON:0004338 proximal phalanx of manual digit 1 13 27874 -UBERON:4200219 middle phalanx of manual digit 1 13 27875 -UBERON:0010575 manual digit 1 phalanx pre-cartilage condensation 12 27876 -UBERON:0010675 manual digit 1 phalanx cartilage element 12 27877 -UBERON:0015026 manual digit 2 phalanx endochondral element 11 27878 -UBERON:0003636 manual digit 2 phalanx 12 27879 -UBERON:0004311 distal phalanx of manual digit 2 13 27880 -UBERON:0004320 middle phalanx of manual digit 2 13 27881 -UBERON:0004328 proximal phalanx of manual digit 2 13 27882 -UBERON:0010576 manual digit 2 phalanx pre-cartilage condensation 12 27883 -UBERON:0010676 manual digit 2 phalanx cartilage element 12 27884 -UBERON:0015027 manual digit 3 phalanx endochondral element 11 27885 -UBERON:0003637 manual digit 3 phalanx 12 27886 -UBERON:0004312 distal phalanx of manual digit 3 13 27887 -UBERON:0004321 middle phalanx of manual digit 3 13 27888 -UBERON:0004329 proximal phalanx of manual digit 3 13 27889 -UBERON:0010577 manual digit 3 phalanx pre-cartilage condensation 12 27890 -UBERON:0010677 manual digit 3 phalanx cartilage element 12 27891 -UBERON:0015028 manual digit 4 phalanx endochondral element 11 27892 -UBERON:0003638 manual digit 4 phalanx 12 27893 -UBERON:0004313 distal phalanx of manual digit 4 13 27894 -UBERON:0004322 middle phalanx of manual digit 4 13 27895 -UBERON:0004330 proximal phalanx of manual digit 4 13 27896 -UBERON:0010578 manual digit 4 phalanx pre-cartilage condensation 12 27897 -UBERON:0010678 manual digit 4 phalanx cartilage element 12 27898 -UBERON:0015029 manual digit 5 phalanx endochondral element 11 27899 -UBERON:0003639 manual digit 5 phalanx 12 27900 -UBERON:0004314 distal phalanx of manual digit 5 13 27901 -UBERON:0004323 middle phalanx of manual digit 5 13 27902 -UBERON:0004331 proximal phalanx of manual digit 5 13 27903 -UBERON:0010579 manual digit 5 phalanx pre-cartilage condensation 12 27904 -UBERON:0010679 manual digit 5 phalanx cartilage element 12 27905 -UBERON:0015030 pedal digit phalanx endochondral element 10 27906 -UBERON:0001449 phalanx of pes 11 27907 -UBERON:0003640 pedal digit 1 phalanx 12 27908 -UBERON:0004315 distal phalanx of pedal digit 1 13 27909 -UBERON:0004332 proximal phalanx of pedal digit 1 13 27910 -UBERON:0003641 pedal digit 2 phalanx 12 27911 -UBERON:0004316 distal phalanx of pedal digit 2 13 27912 -UBERON:0004324 middle phalanx of pedal digit 2 13 27913 -UBERON:0004333 proximal phalanx of pedal digit 2 13 27914 -UBERON:0003642 pedal digit 3 phalanx 12 27915 -UBERON:0004317 distal phalanx of pedal digit 3 13 27916 -UBERON:0004325 middle phalanx of pedal digit 3 13 27917 -UBERON:0004334 proximal phalanx of pedal digit 3 13 27918 -UBERON:0003862 pedal digit 4 phalanx 12 27919 -UBERON:0004318 distal phalanx of pedal digit 4 13 27920 -UBERON:0004326 middle phalanx of pedal digit 4 13 27921 -UBERON:0004335 proximal phalanx of pedal digit 4 13 27922 -UBERON:0003863 pedal digit 5 phalanx 12 27923 -UBERON:0004319 distal phalanx of pedal digit 5 13 27924 -UBERON:0004327 middle phalanx of pedal digit 5 13 27925 -UBERON:0004336 proximal phalanx of pedal digit 5 13 27926 -UBERON:0003866 middle phalanx of pes 12 27927 -UBERON:0004324 middle phalanx of pedal digit 2 13 27928 -UBERON:0004325 middle phalanx of pedal digit 3 13 27929 -UBERON:0004326 middle phalanx of pedal digit 4 13 27930 -UBERON:0004327 middle phalanx of pedal digit 5 13 27931 -UBERON:0003867 distal phalanx of pes 12 27932 -UBERON:0004315 distal phalanx of pedal digit 1 13 27933 -UBERON:0004316 distal phalanx of pedal digit 2 13 27934 -UBERON:0004317 distal phalanx of pedal digit 3 13 27935 -UBERON:0004318 distal phalanx of pedal digit 4 13 27936 -UBERON:0004319 distal phalanx of pedal digit 5 13 27937 -UBERON:0003868 proximal phalanx of pes 12 27938 -UBERON:0004332 proximal phalanx of pedal digit 1 13 27939 -UBERON:0004333 proximal phalanx of pedal digit 2 13 27940 -UBERON:0004334 proximal phalanx of pedal digit 3 13 27941 -UBERON:0004335 proximal phalanx of pedal digit 4 13 27942 -UBERON:0004336 proximal phalanx of pedal digit 5 13 27943 -UBERON:4100009 pedal digit 7 phalanx 12 27944 -UBERON:0010585 pedal digit phalanx pre-cartilage condensation 11 27945 -UBERON:0010580 pedal digit 1 phalanx pre-cartilage condensation 12 27946 -UBERON:0010581 pedal digit 2 phalanx pre-cartilage condensation 12 27947 -UBERON:0010582 pedal digit 3 phalanx pre-cartilage condensation 12 27948 -UBERON:0010583 pedal digit 4 phalanx pre-cartilage condensation 12 27949 -UBERON:0010584 pedal digit 5 phalanx pre-cartilage condensation 12 27950 -UBERON:0010685 pedal digit phalanx cartilage element 11 27951 -UBERON:0010680 pedal digit 1 phalanx cartilage element 12 27952 -UBERON:0010681 pedal digit 2 phalanx cartilage element 12 27953 -UBERON:0010682 pedal digit 3 phalanx cartilage element 12 27954 -UBERON:0010683 pedal digit 4 phalanx cartilage element 12 27955 -UBERON:0010684 pedal digit 5 phalanx cartilage element 12 27956 -UBERON:0015031 pedal digit 1 phalanx endochondral element 11 27957 -UBERON:0003640 pedal digit 1 phalanx 12 27958 -UBERON:0004315 distal phalanx of pedal digit 1 13 27959 -UBERON:0004332 proximal phalanx of pedal digit 1 13 27960 -UBERON:0010580 pedal digit 1 phalanx pre-cartilage condensation 12 27961 -UBERON:0010680 pedal digit 1 phalanx cartilage element 12 27962 -UBERON:0015032 pedal digit 2 phalanx endochondral element 11 27963 -UBERON:0003641 pedal digit 2 phalanx 12 27964 -UBERON:0004316 distal phalanx of pedal digit 2 13 27965 -UBERON:0004324 middle phalanx of pedal digit 2 13 27966 -UBERON:0004333 proximal phalanx of pedal digit 2 13 27967 -UBERON:0010581 pedal digit 2 phalanx pre-cartilage condensation 12 27968 -UBERON:0010681 pedal digit 2 phalanx cartilage element 12 27969 -UBERON:0015033 pedal digit 3 phalanx endochondral element 11 27970 -UBERON:0003642 pedal digit 3 phalanx 12 27971 -UBERON:0004317 distal phalanx of pedal digit 3 13 27972 -UBERON:0004325 middle phalanx of pedal digit 3 13 27973 -UBERON:0004334 proximal phalanx of pedal digit 3 13 27974 -UBERON:0010582 pedal digit 3 phalanx pre-cartilage condensation 12 27975 -UBERON:0010682 pedal digit 3 phalanx cartilage element 12 27976 -UBERON:0015034 pedal digit 4 phalanx endochondral element 11 27977 -UBERON:0003862 pedal digit 4 phalanx 12 27978 -UBERON:0004318 distal phalanx of pedal digit 4 13 27979 -UBERON:0004326 middle phalanx of pedal digit 4 13 27980 -UBERON:0004335 proximal phalanx of pedal digit 4 13 27981 -UBERON:0010583 pedal digit 4 phalanx pre-cartilage condensation 12 27982 -UBERON:0010683 pedal digit 4 phalanx cartilage element 12 27983 -UBERON:0015035 pedal digit 5 phalanx endochondral element 11 27984 -UBERON:0003863 pedal digit 5 phalanx 12 27985 -UBERON:0004319 distal phalanx of pedal digit 5 13 27986 -UBERON:0004327 middle phalanx of pedal digit 5 13 27987 -UBERON:0004336 proximal phalanx of pedal digit 5 13 27988 -UBERON:0010584 pedal digit 5 phalanx pre-cartilage condensation 12 27989 -UBERON:0010684 pedal digit 5 phalanx cartilage element 12 27990 -UBERON:0015036 pedal digit metatarsal endochondral element 9 27991 -UBERON:0001448 metatarsal bone 10 27992 -UBERON:0003650 metatarsal bone of digit 1 11 27993 -UBERON:0003651 metatarsal bone of digit 2 11 27994 -UBERON:0003652 metatarsal bone of digit 3 11 27995 -UBERON:0003653 metatarsal bone of digit 4 11 27996 -UBERON:0003654 metatarsal bone of digit 5 11 27997 -UBERON:0013588 fused metatarsal bones 3 and 4 11 27998 -UBERON:0014763 fused metatarsal bones 2-4 12 27999 -UBERON:4200153 metatarsal bone of digit 6 11 28000 -UBERON:4200157 metatarsal bone of digit 7 11 28001 -UBERON:4200158 metatarsal bone of digit 8 11 28002 -UBERON:0010545 metatarsus skeleton 10 28003 -UBERON:0010687 pedal digit metatarsal pre-cartilage condensation 10 28004 -UBERON:0010547 pedal digit 1 metatarsal pre-cartilage condensation 11 28005 -UBERON:0010548 pedal digit 2 metatarsal pre-cartilage condensation 11 28006 -UBERON:0010549 pedal digit 3 metatarsal pre-cartilage condensation 11 28007 -UBERON:0010550 pedal digit 4 metatarsal pre-cartilage condensation 11 28008 -UBERON:0010551 pedal digit 5 metatarsal pre-cartilage condensation 11 28009 -UBERON:0010697 pedal digit metatarsal cartilage element 10 28010 -UBERON:0010557 pedal digit 1 metatarsal cartilage element 11 28011 -UBERON:0010558 pedal digit 2 metatarsal cartilage element 11 28012 -UBERON:0010559 pedal digit 3 metatarsal cartilage element 11 28013 -UBERON:0010560 pedal digit 4 metatarsal cartilage element 11 28014 -UBERON:0010561 pedal digit 5 metatarsal cartilage element 11 28015 -UBERON:0015037 pedal digit 1 metatarsal endochondral element 10 28016 -UBERON:0003650 metatarsal bone of digit 1 11 28017 -UBERON:0010547 pedal digit 1 metatarsal pre-cartilage condensation 11 28018 -UBERON:0010557 pedal digit 1 metatarsal cartilage element 11 28019 -UBERON:0015038 pedal digit 2 metatarsal endochondral element 10 28020 -UBERON:0003651 metatarsal bone of digit 2 11 28021 -UBERON:0010548 pedal digit 2 metatarsal pre-cartilage condensation 11 28022 -UBERON:0010558 pedal digit 2 metatarsal cartilage element 11 28023 -UBERON:0015039 pedal digit 3 metatarsal endochondral element 10 28024 -UBERON:0003652 metatarsal bone of digit 3 11 28025 -UBERON:0010549 pedal digit 3 metatarsal pre-cartilage condensation 11 28026 -UBERON:0010559 pedal digit 3 metatarsal cartilage element 11 28027 -UBERON:0015040 pedal digit 4 metatarsal endochondral element 10 28028 -UBERON:0003653 metatarsal bone of digit 4 11 28029 -UBERON:0010550 pedal digit 4 metatarsal pre-cartilage condensation 11 28030 -UBERON:0010560 pedal digit 4 metatarsal cartilage element 11 28031 -UBERON:0015041 pedal digit 5 metatarsal endochondral element 10 28032 -UBERON:0003654 metatarsal bone of digit 5 11 28033 -UBERON:0010551 pedal digit 5 metatarsal pre-cartilage condensation 11 28034 -UBERON:0010561 pedal digit 5 metatarsal cartilage element 11 28035 -UBERON:0015042 manual digit metacarpus endochondral element 9 28036 -UBERON:0002374 metacarpal bone 10 28037 -UBERON:0003645 metacarpal bone of digit 1 11 28038 -UBERON:0003646 metacarpal bone of digit 2 11 28039 -UBERON:0003647 metacarpal bone of digit 3 11 28040 -UBERON:0003648 metacarpal bone of digit 4 11 28041 -UBERON:0003649 metacarpal bone of digit 5 11 28042 -UBERON:0013587 fused metacarpal bones 3 and 4 11 28043 -UBERON:0010544 metacarpus skeleton 10 28044 -UBERON:0010698 manual digit metacarpus pre-cartilage condensation 10 28045 -UBERON:0010565 manual digit 1 metacarpus pre-cartilage condensation 11 28046 -UBERON:0010566 manual digit 2 metacarpus pre-cartilage condensation 11 28047 -UBERON:0010567 manual digit 3 metacarpus pre-cartilage condensation 11 28048 -UBERON:0010568 manual digit 4 metacarpus pre-cartilage condensation 11 28049 -UBERON:0010569 manual digit 5 metacarpus pre-cartilage condensation 11 28050 -UBERON:0010699 manual digit metacarpus cartilage element 10 28051 -UBERON:0010570 manual digit 1 metacarpus cartilage element 11 28052 -UBERON:0010571 manual digit 2 metacarpus cartilage element 11 28053 -UBERON:0010572 manual digit 3 metacarpus cartilage element 11 28054 -UBERON:0010573 manual digit 4 metacarpus cartilage element 11 28055 -UBERON:0010574 manual digit 5 metacarpus cartilage element 11 28056 -UBERON:0015043 manual digit 1 metacarpus endochondral element 10 28057 -UBERON:0003645 metacarpal bone of digit 1 11 28058 -UBERON:0010565 manual digit 1 metacarpus pre-cartilage condensation 11 28059 -UBERON:0010570 manual digit 1 metacarpus cartilage element 11 28060 -UBERON:0015044 manual digit 2 metacarpus endochondral element 10 28061 -UBERON:0003646 metacarpal bone of digit 2 11 28062 -UBERON:0010566 manual digit 2 metacarpus pre-cartilage condensation 11 28063 -UBERON:0010571 manual digit 2 metacarpus cartilage element 11 28064 -UBERON:0015045 manual digit 3 metacarpus endochondral element 10 28065 -UBERON:0003647 metacarpal bone of digit 3 11 28066 -UBERON:0010567 manual digit 3 metacarpus pre-cartilage condensation 11 28067 -UBERON:0010572 manual digit 3 metacarpus cartilage element 11 28068 -UBERON:0015046 manual digit 4 metacarpus endochondral element 10 28069 -UBERON:0003648 metacarpal bone of digit 4 11 28070 -UBERON:0010568 manual digit 4 metacarpus pre-cartilage condensation 11 28071 -UBERON:0010573 manual digit 4 metacarpus cartilage element 11 28072 -UBERON:0015047 manual digit 5 metacarpus endochondral element 10 28073 -UBERON:0003649 metacarpal bone of digit 5 11 28074 -UBERON:0010569 manual digit 5 metacarpus pre-cartilage condensation 11 28075 -UBERON:0010574 manual digit 5 metacarpus cartilage element 11 28076 -UBERON:0015049 carpus endochondral element 9 28077 -UBERON:0001435 carpal bone 10 28078 -UBERON:0001480 proximal carpal bone 11 28079 -UBERON:0001427 radiale 12 28080 -UBERON:0001428 intermedium 12 28081 -UBERON:0001429 pisiform 12 28082 -UBERON:0002445 ulnare 12 28083 -UBERON:0007960 scapholunate 12 28084 -UBERON:0012124 avian scapholunar bone 12 28085 -UBERON:0001481 distal carpal bone 11 28086 -UBERON:0001430 distal carpal bone 1 12 28087 -UBERON:0001431 distal carpal bone 2 12 28088 -UBERON:0001432 distal carpal bone 3 12 28089 -UBERON:0001433 distal carpal bone 4 12 28090 -UBERON:0010726 os vesalianum manus 12 28091 -UBERON:0010739 distal carpal bone 5 12 28092 -UBERON:0012290 fused carpal bones 2 and 3 12 28093 -UBERON:3000965 basale commune (carpal) 12 28094 -UBERON:0007958 central carpal bone 11 28095 -UBERON:0007959 falciform carpal bone 11 28096 -UBERON:0008257 radial sesamoid 11 28097 -UBERON:3010060 centrale (fore) 11 28098 -UBERON:4200180 semilunate carpal 11 28099 -UBERON:0006213 carpus cartilage element 10 28100 -UBERON:0006214 carpus pre-cartilage condensation 10 28101 -UBERON:0015068 distal carpal endochondral element 10 28102 -UBERON:0001481 distal carpal bone 11 28103 -UBERON:0001430 distal carpal bone 1 12 28104 -UBERON:0001431 distal carpal bone 2 12 28105 -UBERON:0001432 distal carpal bone 3 12 28106 -UBERON:0001433 distal carpal bone 4 12 28107 -UBERON:0010726 os vesalianum manus 12 28108 -UBERON:0010739 distal carpal bone 5 12 28109 -UBERON:0012290 fused carpal bones 2 and 3 12 28110 -UBERON:3000965 basale commune (carpal) 12 28111 -UBERON:0015069 distal carpal cartilage element 11 28112 -UBERON:0015078 proximal carpal endochondral element 10 28113 -UBERON:0001480 proximal carpal bone 11 28114 -UBERON:0001427 radiale 12 28115 -UBERON:0001428 intermedium 12 28116 -UBERON:0001429 pisiform 12 28117 -UBERON:0002445 ulnare 12 28118 -UBERON:0007960 scapholunate 12 28119 -UBERON:0012124 avian scapholunar bone 12 28120 -UBERON:0015079 proximal carpal cartilage 11 28121 -UBERON:0015080 proximal carpal bone pre-cartilage condensation 11 28122 -UBERON:0015084 distal carpal bone 1 endochondral element 10 28123 -UBERON:0001430 distal carpal bone 1 11 28124 -UBERON:0015085 distal carpal bone 1 cartilage 11 28125 -UBERON:0015086 distal carpal bone 1 pre-cartilage condensation 11 28126 -UBERON:0015087 distal carpal bone 2 endochondral element 10 28127 -UBERON:0001431 distal carpal bone 2 11 28128 -UBERON:0015088 distal carpal bone 2 cartilage 11 28129 -UBERON:0015089 distal carpal bone 2 pre-cartilage condensation 11 28130 -UBERON:0015090 distal carpal bone 3 endochondral element 10 28131 -UBERON:0001432 distal carpal bone 3 11 28132 -UBERON:0015091 distal carpal bone 3 cartilage 11 28133 -UBERON:0015092 distal carpal bone 3 pre-cartilage condensation 11 28134 -UBERON:0015093 distal carpal bone 4 endochondral element 10 28135 -UBERON:0001433 distal carpal bone 4 11 28136 -UBERON:0015094 distal carpal bone 4 cartilage 11 28137 -UBERON:0015095 distal carpal bone 4 pre-cartilage condensation 11 28138 -UBERON:0015096 distal carpal bone 5 endochondral element 10 28139 -UBERON:0010739 distal carpal bone 5 11 28140 -UBERON:0015097 distal carpal bone 5 cartilage 11 28141 -UBERON:0015098 distal carpal bone 5 pre-cartilage condensation 11 28142 -UBERON:4200140 prepollical element 10 28143 -UBERON:3010682 proximal-most prepollical element 11 28144 -UBERON:3010683 distal-most prepollical element 11 28145 -UBERON:0015050 tarsus endochondral element 9 28146 -UBERON:0001447 tarsal bone 10 28147 -UBERON:0001451 navicular bone of pes 11 28148 -UBERON:0006836 medial tibial tarsal bone 11 28149 -UBERON:0010721 distal tarsal bone 11 28150 -UBERON:0001452 distal tarsal bone 1 12 28151 -UBERON:0001453 distal tarsal bone 2 12 28152 -UBERON:0001454 distal tarsal bone 3 12 28153 -UBERON:0001455 cuboid bone 12 28154 -UBERON:0010723 os vesalianum pedis 12 28155 -UBERON:0010737 distal tarsal bone 4 12 28156 -UBERON:0010738 distal tarsal bone 5 12 28157 -UBERON:0012289 fused tarsal bones 2 and 3 12 28158 -UBERON:0013649 fused tarsal bones 1 and 2 12 28159 -UBERON:3001002 basale commune (tarsal) 12 28160 -UBERON:0011679 proximal tarsal bone 11 28161 -UBERON:0001450 calcaneus 12 28162 -UBERON:0002395 talus 12 28163 -UBERON:0011678 hindlimb intermedium bone 12 28164 -UBERON:0012126 fibulare 12 28165 -UBERON:0012288 centroquartal bone 11 28166 -UBERON:3010045 centrale 1 11 28167 -UBERON:3010073 centrale 2 11 28168 -UBERON:4200011 pedal centrale 11 28169 -UBERON:4200152 intertarsale sesamoid 11 28170 -UBERON:0010540 tarsus pre-cartilage condensation 10 28171 -UBERON:0010541 tarsus cartilage element 10 28172 -UBERON:0015014 calcaneum endochondral element 10 28173 -UBERON:0001450 calcaneus 11 28174 -UBERON:0010801 calcaneum pre-cartilage condensation 11 28175 -UBERON:0010842 calcaneum cartilage element 11 28176 -UBERON:0015081 proximal tarsal endochondral element 10 28177 -UBERON:0011679 proximal tarsal bone 11 28178 -UBERON:0001450 calcaneus 12 28179 -UBERON:0002395 talus 12 28180 -UBERON:0011678 hindlimb intermedium bone 12 28181 -UBERON:0012126 fibulare 12 28182 -UBERON:0015082 proximal tarsal cartilage 11 28183 -UBERON:0015083 proximal tarsal bone pre-cartilage condensation 11 28184 -UBERON:0015099 distal tarsal endochondral element 10 28185 -UBERON:0010721 distal tarsal bone 11 28186 -UBERON:0001452 distal tarsal bone 1 12 28187 -UBERON:0001453 distal tarsal bone 2 12 28188 -UBERON:0001454 distal tarsal bone 3 12 28189 -UBERON:0001455 cuboid bone 12 28190 -UBERON:0010723 os vesalianum pedis 12 28191 -UBERON:0010737 distal tarsal bone 4 12 28192 -UBERON:0010738 distal tarsal bone 5 12 28193 -UBERON:0012289 fused tarsal bones 2 and 3 12 28194 -UBERON:0013649 fused tarsal bones 1 and 2 12 28195 -UBERON:3001002 basale commune (tarsal) 12 28196 -UBERON:0015100 distal tarsal cartilage 11 28197 -UBERON:0015103 distal tarsal bone 1 cartilage 12 28198 -UBERON:0015106 distal tarsal bone 2 cartilage 12 28199 -UBERON:0015109 distal tarsal bone 3 cartilage 12 28200 -UBERON:0015112 distal tarsal bone 4 cartilage 12 28201 -UBERON:0015115 distal tarsal bone 5 cartilage 12 28202 -UBERON:0015101 distal tarsal bone pre-cartilage condensation 11 28203 -UBERON:0015104 distal tarsal bone 1 pre-cartilage condensation 12 28204 -UBERON:0015107 distal tarsal bone 2 pre-cartilage condensation 12 28205 -UBERON:0015110 distal tarsal bone 3 pre-cartilage condensation 12 28206 -UBERON:0015113 distal tarsal bone 4 pre-cartilage condensation 12 28207 -UBERON:0015116 distal tarsal bone 5 pre-cartilage condensation 12 28208 -UBERON:0015102 distal tarsal bone 1 endochondral element 11 28209 -UBERON:0001452 distal tarsal bone 1 12 28210 -UBERON:0015103 distal tarsal bone 1 cartilage 12 28211 -UBERON:0015104 distal tarsal bone 1 pre-cartilage condensation 12 28212 -UBERON:0015105 distal tarsal bone 2 endochondral element 11 28213 -UBERON:0001453 distal tarsal bone 2 12 28214 -UBERON:0015106 distal tarsal bone 2 cartilage 12 28215 -UBERON:0015107 distal tarsal bone 2 pre-cartilage condensation 12 28216 -UBERON:0015108 distal tarsal bone 3 endochondral element 11 28217 -UBERON:0001454 distal tarsal bone 3 12 28218 -UBERON:0015109 distal tarsal bone 3 cartilage 12 28219 -UBERON:0015110 distal tarsal bone 3 pre-cartilage condensation 12 28220 -UBERON:0015111 distal tarsal bone 4 endochondral element 11 28221 -UBERON:0010737 distal tarsal bone 4 12 28222 -UBERON:0015112 distal tarsal bone 4 cartilage 12 28223 -UBERON:0015113 distal tarsal bone 4 pre-cartilage condensation 12 28224 -UBERON:0015114 distal tarsal bone 5 endochondral element 11 28225 -UBERON:0010738 distal tarsal bone 5 12 28226 -UBERON:0015115 distal tarsal bone 5 cartilage 12 28227 -UBERON:0015116 distal tarsal bone 5 pre-cartilage condensation 12 28228 -UBERON:3000921 element Y of hind mesopodium 10 28229 -UBERON:4200141 prehallical element 10 28230 -UBERON:3010684 proximal-most prehallical element 11 28231 -UBERON:3010685 distal-most prehallical element 11 28232 -UBERON:0015064 autopod cartilage 9 28233 -UBERON:0010701 phalanx cartilage element 10 28234 -UBERON:0010685 pedal digit phalanx cartilage element 11 28235 -UBERON:0010680 pedal digit 1 phalanx cartilage element 12 28236 -UBERON:0010681 pedal digit 2 phalanx cartilage element 12 28237 -UBERON:0010682 pedal digit 3 phalanx cartilage element 12 28238 -UBERON:0010683 pedal digit 4 phalanx cartilage element 12 28239 -UBERON:0010684 pedal digit 5 phalanx cartilage element 12 28240 -UBERON:0010686 manual digit phalanx cartilage element 11 28241 -UBERON:0010675 manual digit 1 phalanx cartilage element 12 28242 -UBERON:0010676 manual digit 2 phalanx cartilage element 12 28243 -UBERON:0010677 manual digit 3 phalanx cartilage element 12 28244 -UBERON:0010678 manual digit 4 phalanx cartilage element 12 28245 -UBERON:0010679 manual digit 5 phalanx cartilage element 12 28246 -UBERON:0015077 centrale cartilage 10 28247 -UBERON:0017751 proximal mesopodial cartilage element 10 28248 -UBERON:0015079 proximal carpal cartilage 11 28249 -UBERON:0015082 proximal tarsal cartilage 11 28250 -UBERON:0018100 distal mesopodial cartilage element 10 28251 -UBERON:0015069 distal carpal cartilage element 11 28252 -UBERON:0015100 distal tarsal cartilage 11 28253 -UBERON:0015103 distal tarsal bone 1 cartilage 12 28254 -UBERON:0015106 distal tarsal bone 2 cartilage 12 28255 -UBERON:0015109 distal tarsal bone 3 cartilage 12 28256 -UBERON:0015112 distal tarsal bone 4 cartilage 12 28257 -UBERON:0015115 distal tarsal bone 5 cartilage 12 28258 -UBERON:0035128 manus cartilage element 10 28259 -UBERON:0010686 manual digit phalanx cartilage element 11 28260 -UBERON:0010675 manual digit 1 phalanx cartilage element 12 28261 -UBERON:0010676 manual digit 2 phalanx cartilage element 12 28262 -UBERON:0010677 manual digit 3 phalanx cartilage element 12 28263 -UBERON:0010678 manual digit 4 phalanx cartilage element 12 28264 -UBERON:0010679 manual digit 5 phalanx cartilage element 12 28265 -UBERON:0010699 manual digit metacarpus cartilage element 11 28266 -UBERON:0010570 manual digit 1 metacarpus cartilage element 12 28267 -UBERON:0010571 manual digit 2 metacarpus cartilage element 12 28268 -UBERON:0010572 manual digit 3 metacarpus cartilage element 12 28269 -UBERON:0010573 manual digit 4 metacarpus cartilage element 12 28270 -UBERON:0010574 manual digit 5 metacarpus cartilage element 12 28271 -UBERON:0015069 distal carpal cartilage element 11 28272 -UBERON:0015079 proximal carpal cartilage 11 28273 -UBERON:0015085 distal carpal bone 1 cartilage 11 28274 -UBERON:0015088 distal carpal bone 2 cartilage 11 28275 -UBERON:0015091 distal carpal bone 3 cartilage 11 28276 -UBERON:0015094 distal carpal bone 4 cartilage 11 28277 -UBERON:0015097 distal carpal bone 5 cartilage 11 28278 -UBERON:0035129 pes cartilage element 10 28279 -UBERON:0010685 pedal digit phalanx cartilage element 11 28280 -UBERON:0010680 pedal digit 1 phalanx cartilage element 12 28281 -UBERON:0010681 pedal digit 2 phalanx cartilage element 12 28282 -UBERON:0010682 pedal digit 3 phalanx cartilage element 12 28283 -UBERON:0010683 pedal digit 4 phalanx cartilage element 12 28284 -UBERON:0010684 pedal digit 5 phalanx cartilage element 12 28285 -UBERON:0010697 pedal digit metatarsal cartilage element 11 28286 -UBERON:0010557 pedal digit 1 metatarsal cartilage element 12 28287 -UBERON:0010558 pedal digit 2 metatarsal cartilage element 12 28288 -UBERON:0010559 pedal digit 3 metatarsal cartilage element 12 28289 -UBERON:0010560 pedal digit 4 metatarsal cartilage element 12 28290 -UBERON:0010561 pedal digit 5 metatarsal cartilage element 12 28291 -UBERON:0010842 calcaneum cartilage element 11 28292 -UBERON:0010900 tarsometatarsus cartilage element 11 28293 -UBERON:0015082 proximal tarsal cartilage 11 28294 -UBERON:0015100 distal tarsal cartilage 11 28295 -UBERON:0015103 distal tarsal bone 1 cartilage 12 28296 -UBERON:0015106 distal tarsal bone 2 cartilage 12 28297 -UBERON:0015109 distal tarsal bone 3 cartilage 12 28298 -UBERON:0015112 distal tarsal bone 4 cartilage 12 28299 -UBERON:0015115 distal tarsal bone 5 cartilage 12 28300 -UBERON:0015067 centrale endochondral element 9 28301 -UBERON:0012131 centrale 10 28302 -UBERON:0001451 navicular bone of pes 11 28303 -UBERON:0007958 central carpal bone 11 28304 -UBERON:3010045 centrale 1 11 28305 -UBERON:3010060 centrale (fore) 11 28306 -UBERON:3010073 centrale 2 11 28307 -UBERON:4200011 pedal centrale 11 28308 -UBERON:4200083 postaxial centrale 11 28309 -UBERON:4200084 preaxial centrale 11 28310 -UBERON:0015077 centrale cartilage 10 28311 -UBERON:0017750 proximal mesopodial endochondral element 9 28312 -UBERON:0014395 proximal mesopodial bone 10 28313 -UBERON:0001480 proximal carpal bone 11 28314 -UBERON:0001427 radiale 12 28315 -UBERON:0001428 intermedium 12 28316 -UBERON:0001429 pisiform 12 28317 -UBERON:0002445 ulnare 12 28318 -UBERON:0007960 scapholunate 12 28319 -UBERON:0012124 avian scapholunar bone 12 28320 -UBERON:0011679 proximal tarsal bone 11 28321 -UBERON:0001450 calcaneus 12 28322 -UBERON:0002395 talus 12 28323 -UBERON:0011678 hindlimb intermedium bone 12 28324 -UBERON:0012126 fibulare 12 28325 -UBERON:0015078 proximal carpal endochondral element 10 28326 -UBERON:0001480 proximal carpal bone 11 28327 -UBERON:0001427 radiale 12 28328 -UBERON:0001428 intermedium 12 28329 -UBERON:0001429 pisiform 12 28330 -UBERON:0002445 ulnare 12 28331 -UBERON:0007960 scapholunate 12 28332 -UBERON:0012124 avian scapholunar bone 12 28333 -UBERON:0015079 proximal carpal cartilage 11 28334 -UBERON:0015080 proximal carpal bone pre-cartilage condensation 11 28335 -UBERON:0015081 proximal tarsal endochondral element 10 28336 -UBERON:0011679 proximal tarsal bone 11 28337 -UBERON:0001450 calcaneus 12 28338 -UBERON:0002395 talus 12 28339 -UBERON:0011678 hindlimb intermedium bone 12 28340 -UBERON:0012126 fibulare 12 28341 -UBERON:0015082 proximal tarsal cartilage 11 28342 -UBERON:0015083 proximal tarsal bone pre-cartilage condensation 11 28343 -UBERON:0017751 proximal mesopodial cartilage element 10 28344 -UBERON:0015079 proximal carpal cartilage 11 28345 -UBERON:0015082 proximal tarsal cartilage 11 28346 -UBERON:0018099 distal mesopodial endochondral element 9 28347 -UBERON:0015068 distal carpal endochondral element 10 28348 -UBERON:0001481 distal carpal bone 11 28349 -UBERON:0001430 distal carpal bone 1 12 28350 -UBERON:0001431 distal carpal bone 2 12 28351 -UBERON:0001432 distal carpal bone 3 12 28352 -UBERON:0001433 distal carpal bone 4 12 28353 -UBERON:0010726 os vesalianum manus 12 28354 -UBERON:0010739 distal carpal bone 5 12 28355 -UBERON:0012290 fused carpal bones 2 and 3 12 28356 -UBERON:3000965 basale commune (carpal) 12 28357 -UBERON:0015069 distal carpal cartilage element 11 28358 -UBERON:0015099 distal tarsal endochondral element 10 28359 -UBERON:0010721 distal tarsal bone 11 28360 -UBERON:0001452 distal tarsal bone 1 12 28361 -UBERON:0001453 distal tarsal bone 2 12 28362 -UBERON:0001454 distal tarsal bone 3 12 28363 -UBERON:0001455 cuboid bone 12 28364 -UBERON:0010723 os vesalianum pedis 12 28365 -UBERON:0010737 distal tarsal bone 4 12 28366 -UBERON:0010738 distal tarsal bone 5 12 28367 -UBERON:0012289 fused tarsal bones 2 and 3 12 28368 -UBERON:0013649 fused tarsal bones 1 and 2 12 28369 -UBERON:3001002 basale commune (tarsal) 12 28370 -UBERON:0015100 distal tarsal cartilage 11 28371 -UBERON:0015103 distal tarsal bone 1 cartilage 12 28372 -UBERON:0015106 distal tarsal bone 2 cartilage 12 28373 -UBERON:0015109 distal tarsal bone 3 cartilage 12 28374 -UBERON:0015112 distal tarsal bone 4 cartilage 12 28375 -UBERON:0015115 distal tarsal bone 5 cartilage 12 28376 -UBERON:0015101 distal tarsal bone pre-cartilage condensation 11 28377 -UBERON:0015104 distal tarsal bone 1 pre-cartilage condensation 12 28378 -UBERON:0015107 distal tarsal bone 2 pre-cartilage condensation 12 28379 -UBERON:0015110 distal tarsal bone 3 pre-cartilage condensation 12 28380 -UBERON:0015113 distal tarsal bone 4 pre-cartilage condensation 12 28381 -UBERON:0015116 distal tarsal bone 5 pre-cartilage condensation 12 28382 -UBERON:0015102 distal tarsal bone 1 endochondral element 11 28383 -UBERON:0001452 distal tarsal bone 1 12 28384 -UBERON:0015103 distal tarsal bone 1 cartilage 12 28385 -UBERON:0015104 distal tarsal bone 1 pre-cartilage condensation 12 28386 -UBERON:0015105 distal tarsal bone 2 endochondral element 11 28387 -UBERON:0001453 distal tarsal bone 2 12 28388 -UBERON:0015106 distal tarsal bone 2 cartilage 12 28389 -UBERON:0015107 distal tarsal bone 2 pre-cartilage condensation 12 28390 -UBERON:0015108 distal tarsal bone 3 endochondral element 11 28391 -UBERON:0001454 distal tarsal bone 3 12 28392 -UBERON:0015109 distal tarsal bone 3 cartilage 12 28393 -UBERON:0015110 distal tarsal bone 3 pre-cartilage condensation 12 28394 -UBERON:0015111 distal tarsal bone 4 endochondral element 11 28395 -UBERON:0010737 distal tarsal bone 4 12 28396 -UBERON:0015112 distal tarsal bone 4 cartilage 12 28397 -UBERON:0015113 distal tarsal bone 4 pre-cartilage condensation 12 28398 -UBERON:0015114 distal tarsal bone 5 endochondral element 11 28399 -UBERON:0010738 distal tarsal bone 5 12 28400 -UBERON:0015115 distal tarsal bone 5 cartilage 12 28401 -UBERON:0015116 distal tarsal bone 5 pre-cartilage condensation 12 28402 -UBERON:0018100 distal mesopodial cartilage element 10 28403 -UBERON:0015069 distal carpal cartilage element 11 28404 -UBERON:0015100 distal tarsal cartilage 11 28405 -UBERON:0015103 distal tarsal bone 1 cartilage 12 28406 -UBERON:0015106 distal tarsal bone 2 cartilage 12 28407 -UBERON:0015109 distal tarsal bone 3 cartilage 12 28408 -UBERON:0015112 distal tarsal bone 4 cartilage 12 28409 -UBERON:0015115 distal tarsal bone 5 cartilage 12 28410 -UBERON:0018101 distal mesopodial pre-cartilage condensation 10 28411 -UBERON:0015101 distal tarsal bone pre-cartilage condensation 11 28412 -UBERON:0015104 distal tarsal bone 1 pre-cartilage condensation 12 28413 -UBERON:0015107 distal tarsal bone 2 pre-cartilage condensation 12 28414 -UBERON:0015110 distal tarsal bone 3 pre-cartilage condensation 12 28415 -UBERON:0015113 distal tarsal bone 4 pre-cartilage condensation 12 28416 -UBERON:0015116 distal tarsal bone 5 pre-cartilage condensation 12 28417 -UBERON:0018102 distal mesopodial bone 10 28418 -UBERON:0001481 distal carpal bone 11 28419 -UBERON:0001430 distal carpal bone 1 12 28420 -UBERON:0001431 distal carpal bone 2 12 28421 -UBERON:0001432 distal carpal bone 3 12 28422 -UBERON:0001433 distal carpal bone 4 12 28423 -UBERON:0010726 os vesalianum manus 12 28424 -UBERON:0010739 distal carpal bone 5 12 28425 -UBERON:0012290 fused carpal bones 2 and 3 12 28426 -UBERON:3000965 basale commune (carpal) 12 28427 -UBERON:0010721 distal tarsal bone 11 28428 -UBERON:0001452 distal tarsal bone 1 12 28429 -UBERON:0001453 distal tarsal bone 2 12 28430 -UBERON:0001454 distal tarsal bone 3 12 28431 -UBERON:0001455 cuboid bone 12 28432 -UBERON:0010723 os vesalianum pedis 12 28433 -UBERON:0010737 distal tarsal bone 4 12 28434 -UBERON:0010738 distal tarsal bone 5 12 28435 -UBERON:0012289 fused tarsal bones 2 and 3 12 28436 -UBERON:0013649 fused tarsal bones 1 and 2 12 28437 -UBERON:3001002 basale commune (tarsal) 12 28438 -UBERON:0035130 auditory ossicle endochondral element 7 28439 -UBERON:0001686 auditory ossicle bone 8 28440 -UBERON:0001687 stapes bone 9 28441 -UBERON:0001688 incus bone 9 28442 -UBERON:0001689 malleus bone 9 28443 -UBERON:3000443 plectral apparatus 9 28444 -UBERON:0015016 stapes endochondral element 8 28445 -UBERON:0001687 stapes bone 9 28446 -UBERON:0006294 stapes pre-cartilage condensation 9 28447 -UBERON:0010055 stapes cartilage element 9 28448 -UBERON:0015017 incus endochondral element 8 28449 -UBERON:0001688 incus bone 9 28450 -UBERON:0006248 incus pre-cartilage condensation 9 28451 -UBERON:0007374 incus cartilage element 9 28452 -UBERON:0015018 malleus endochondral element 8 28453 -UBERON:0001689 malleus bone 9 28454 -UBERON:0006262 malleus pre-cartilage condensation 9 28455 -UBERON:0010054 malleus cartilage element 9 28456 -UBERON:0035131 auditory ossicle cartilage element 8 28457 -UBERON:0007374 incus cartilage element 9 28458 -UBERON:0010054 malleus cartilage element 9 28459 -UBERON:0010055 stapes cartilage element 9 28460 -UBERON:0035132 auditory ossicle pre-cartilage element 8 28461 -UBERON:0006248 incus pre-cartilage condensation 9 28462 -UBERON:0006262 malleus pre-cartilage condensation 9 28463 -UBERON:0006294 stapes pre-cartilage condensation 9 28464 -UBERON:0035612 nasal turbinal 7 28465 -UBERON:0001762 turbinate bone 8 28466 -UBERON:0003973 nasal concha of ethmoid bone 9 28467 -UBERON:0005919 supreme nasal concha 10 28468 -UBERON:0005920 superior nasal concha 10 28469 -UBERON:0005921 middle nasal concha 10 28470 -UBERON:0005922 inferior nasal concha 9 28471 -UBERON:0035007 nasal concha cartilage 8 28472 -UBERON:2001892 interhyal element 7 28473 -UBERON:2000171 interhyal bone 8 28474 -UBERON:2001511 interhyal cartilage 8 28475 -UBERON:2001893 hypobranchial element 7 28476 -UBERON:2000363 hypobranchial bone 8 28477 -UBERON:2001233 hypobranchial 1 bone 9 28478 -UBERON:2001234 hypobranchial 4 bone 9 28479 -UBERON:2001235 hypobranchial 3 bone 9 28480 -UBERON:2001236 hypobranchial 2 bone 9 28481 -UBERON:2001522 hypobranchial cartilage 8 28482 -UBERON:2001523 hypobranchial 4 cartilage 9 28483 -UBERON:2001524 hypobranchial 1 cartilage 9 28484 -UBERON:2001525 hypobranchial 2 cartilage 9 28485 -UBERON:2001526 hypobranchial 3 cartilage 9 28486 -UBERON:2001894 hypobranchial 1 element 8 28487 -UBERON:2001233 hypobranchial 1 bone 9 28488 -UBERON:2001524 hypobranchial 1 cartilage 9 28489 -UBERON:2001895 hypobranchial 2 element 8 28490 -UBERON:2001236 hypobranchial 2 bone 9 28491 -UBERON:2001525 hypobranchial 2 cartilage 9 28492 -UBERON:2001896 hypobranchial 3 element 8 28493 -UBERON:2001235 hypobranchial 3 bone 9 28494 -UBERON:2001526 hypobranchial 3 cartilage 9 28495 -UBERON:2001897 hypobranchial 4 element 8 28496 -UBERON:2001234 hypobranchial 4 bone 9 28497 -UBERON:2001523 hypobranchial 4 cartilage 9 28498 -UBERON:2001898 ceratobranchial element 7 28499 -UBERON:2000488 ceratobranchial bone 8 28500 -UBERON:2001237 ceratobranchial 1 bone 9 28501 -UBERON:2001239 ceratobranchial 5 bone 9 28502 -UBERON:2001240 ceratobranchial 4 bone 9 28503 -UBERON:2001241 ceratobranchial 3 bone 9 28504 -UBERON:2001242 ceratobranchial 2 bone 9 28505 -UBERON:2001516 ceratobranchial cartilage 8 28506 -UBERON:2001517 ceratobranchial 2 cartilage 9 28507 -UBERON:2001518 ceratobranchial 3 cartilage 9 28508 -UBERON:2001519 ceratobranchial 4 cartilage 9 28509 -UBERON:2001520 ceratobranchial 1 cartilage 9 28510 -UBERON:2001521 ceratobranchial 5 cartilage 9 28511 -UBERON:2001899 ceratobranchial 1 element 8 28512 -UBERON:2001237 ceratobranchial 1 bone 9 28513 -UBERON:2001520 ceratobranchial 1 cartilage 9 28514 -UBERON:2001900 ceratobranchial 2 element 8 28515 -UBERON:2001242 ceratobranchial 2 bone 9 28516 -UBERON:2001517 ceratobranchial 2 cartilage 9 28517 -UBERON:2001901 ceratobranchial 3 element 8 28518 -UBERON:2001241 ceratobranchial 3 bone 9 28519 -UBERON:2001518 ceratobranchial 3 cartilage 9 28520 -UBERON:2001902 ceratobranchial 4 element 8 28521 -UBERON:2001240 ceratobranchial 4 bone 9 28522 -UBERON:2001519 ceratobranchial 4 cartilage 9 28523 -UBERON:2001903 ceratobranchial 5 element 8 28524 -UBERON:2001239 ceratobranchial 5 bone 9 28525 -UBERON:2001521 ceratobranchial 5 cartilage 9 28526 -UBERON:2001904 epibranchial element 7 28527 -UBERON:2000658 epibranchial bone 8 28528 -UBERON:2001243 epibranchial 1 bone 9 28529 -UBERON:2001245 epibranchial 4 bone 9 28530 -UBERON:2001246 epibranchial 2 bone 9 28531 -UBERON:2001247 epibranchial 3 bone 9 28532 -UBERON:2001527 epibranchial cartilage 8 28533 -UBERON:2001244 epibranchial 5 cartilage 9 28534 -UBERON:2001528 epibranchial 1 cartilage 9 28535 -UBERON:2001529 epibranchial 3 cartilage 9 28536 -UBERON:2001530 epibranchial 2 cartilage 9 28537 -UBERON:2001531 epibranchial 4 cartilage 9 28538 -UBERON:2001905 epibranchial 1 element 8 28539 -UBERON:2001243 epibranchial 1 bone 9 28540 -UBERON:2001528 epibranchial 1 cartilage 9 28541 -UBERON:2001906 epibranchial 2 element 8 28542 -UBERON:2001246 epibranchial 2 bone 9 28543 -UBERON:2001530 epibranchial 2 cartilage 9 28544 -UBERON:2001907 epibranchial 3 element 8 28545 -UBERON:2001247 epibranchial 3 bone 9 28546 -UBERON:2001529 epibranchial 3 cartilage 9 28547 -UBERON:2001908 epibranchial 4 element 8 28548 -UBERON:2001245 epibranchial 4 bone 9 28549 -UBERON:2001531 epibranchial 4 cartilage 9 28550 -UBERON:2001966 epibranchial 5 element 8 28551 -UBERON:2001909 pharyngobranchial element 7 28552 -UBERON:2000527 pharyngobranchial bone 8 28553 -UBERON:2001250 pharyngobranchial 2 bone 9 28554 -UBERON:2001252 pharyngobranchial 3 bone 9 28555 -UBERON:2001635 pharyngobranchial 1 bone 9 28556 -UBERON:2001636 pharyngobranchial 4 bone 9 28557 -UBERON:2001858 suprapharyngobranchial 9 28558 -UBERON:2001533 pharyngobranchial cartilage 8 28559 -UBERON:2001251 pharyngobranchial 4 cartilage 9 28560 -UBERON:2001534 pharyngobranchial 3 cartilage 9 28561 -UBERON:2001536 pharyngobranchial 2 cartilage 9 28562 -UBERON:2001634 pharyngobranchial 1 cartilage 9 28563 -UBERON:2001910 pharyngobranchial 1 element 8 28564 -UBERON:2001634 pharyngobranchial 1 cartilage 9 28565 -UBERON:2001635 pharyngobranchial 1 bone 9 28566 -UBERON:2001911 pharyngobranchial 2 element 8 28567 -UBERON:2001250 pharyngobranchial 2 bone 9 28568 -UBERON:2001536 pharyngobranchial 2 cartilage 9 28569 -UBERON:2001912 pharyngobranchial 3 element 8 28570 -UBERON:2001252 pharyngobranchial 3 bone 9 28571 -UBERON:2001534 pharyngobranchial 3 cartilage 9 28572 -UBERON:2001913 pharyngobranchial 4 element 8 28573 -UBERON:2001251 pharyngobranchial 4 cartilage 9 28574 -UBERON:2001636 pharyngobranchial 4 bone 9 28575 -UBERON:2100271 radial element 7 28576 -UBERON:1600006 paired fin radial element 8 28577 -UBERON:1500006 paired fin radial bone 9 28578 -UBERON:2000508 pelvic fin radial bone 10 28579 -UBERON:1500008 pelvic fin distal radial bone 11 28580 -UBERON:2001415 pelvic fin distal radial bone 2 12 28581 -UBERON:2001416 pelvic fin distal radial bone 3 12 28582 -UBERON:2001417 pelvic fin distal radial bone 1 12 28583 -UBERON:1500009 pelvic fin basipterygial radial 11 28584 -UBERON:1500010 pelvic fin middle radial bone 11 28585 -UBERON:2001586 pectoral fin radial bone 10 28586 -UBERON:2001587 pectoral fin proximal radial bone 11 28587 -UBERON:2002026 pectoral fin proximal radial bone 1 12 28588 -UBERON:2002027 pectoral fin proximal radial bone 2 12 28589 -UBERON:2002028 pectoral fin proximal radial bone 3 12 28590 -UBERON:2002029 pectoral fin proximal radial bone 4 12 28591 -UBERON:4300087 mesopterygium bone 12 28592 -UBERON:4300088 metapterygium bone 12 28593 -UBERON:4300089 propterygium bone 12 28594 -UBERON:2001588 pectoral fin distal radial bone 11 28595 -UBERON:2002277 pectoral fin distal radial bone 1 12 28596 -UBERON:2002279 pectoral fin distal radial bone 2 12 28597 -UBERON:2002280 pectoral fin distal radial bone 3 12 28598 -UBERON:1700006 paired fin radial cartilage 9 28599 -UBERON:2201415 pelvic fin distal radial cartilage 2 10 28600 -UBERON:2201416 pelvic fin distal radial cartilage 3 10 28601 -UBERON:2201417 pelvic fin distal radial cartilage 1 10 28602 -UBERON:2201586 pectoral fin radial cartilage 10 28603 -UBERON:2201587 pectoral fin proximal radial cartilage 11 28604 -UBERON:1500007 mesopterygium cartilage 12 28605 -UBERON:2001589 propterygium cartilage 12 28606 -UBERON:2202026 pectoral fin proximal radial cartilage 1 12 28607 -UBERON:2202027 pectoral fin proximal radial cartilage 2 12 28608 -UBERON:2202028 pectoral fin proximal radial cartilage 3 12 28609 -UBERON:2202029 pectoral fin proximal radial cartilage 4 12 28610 -UBERON:4400000 metapterygium cartilage 12 28611 -UBERON:2201588 pectoral fin distal radial cartilage 11 28612 -UBERON:2202277 pectoral fin distal radial cartilage 1 12 28613 -UBERON:2202279 pectoral fin distal radial cartilage 2 12 28614 -UBERON:2202280 pectoral fin distal radial cartilage 3 12 28615 -UBERON:4500020 pelvic fin distal radial cartilage 10 28616 -UBERON:2100508 pelvic fin radial element 9 28617 -UBERON:1600008 pelvic fin distal radial element 10 28618 -UBERON:1500008 pelvic fin distal radial bone 11 28619 -UBERON:2001415 pelvic fin distal radial bone 2 12 28620 -UBERON:2001416 pelvic fin distal radial bone 3 12 28621 -UBERON:2001417 pelvic fin distal radial bone 1 12 28622 -UBERON:2101415 pelvic fin distal radial element 2 11 28623 -UBERON:2001415 pelvic fin distal radial bone 2 12 28624 -UBERON:2201415 pelvic fin distal radial cartilage 2 12 28625 -UBERON:2101416 pelvic fin distal radial element 3 11 28626 -UBERON:2001416 pelvic fin distal radial bone 3 12 28627 -UBERON:2201416 pelvic fin distal radial cartilage 3 12 28628 -UBERON:2101417 pelvic fin distal radial element 1 11 28629 -UBERON:2001417 pelvic fin distal radial bone 1 12 28630 -UBERON:2201417 pelvic fin distal radial cartilage 1 12 28631 -UBERON:1600010 pelvic fin middle radial element 10 28632 -UBERON:2000508 pelvic fin radial bone 10 28633 -UBERON:1500008 pelvic fin distal radial bone 11 28634 -UBERON:2001415 pelvic fin distal radial bone 2 12 28635 -UBERON:2001416 pelvic fin distal radial bone 3 12 28636 -UBERON:2001417 pelvic fin distal radial bone 1 12 28637 -UBERON:1500009 pelvic fin basipterygial radial 11 28638 -UBERON:1500010 pelvic fin middle radial bone 11 28639 -UBERON:2101586 pectoral fin radial element 9 28640 -UBERON:2001586 pectoral fin radial bone 10 28641 -UBERON:2001587 pectoral fin proximal radial bone 11 28642 -UBERON:2002026 pectoral fin proximal radial bone 1 12 28643 -UBERON:2002027 pectoral fin proximal radial bone 2 12 28644 -UBERON:2002028 pectoral fin proximal radial bone 3 12 28645 -UBERON:2002029 pectoral fin proximal radial bone 4 12 28646 -UBERON:4300087 mesopterygium bone 12 28647 -UBERON:4300088 metapterygium bone 12 28648 -UBERON:4300089 propterygium bone 12 28649 -UBERON:2001588 pectoral fin distal radial bone 11 28650 -UBERON:2002277 pectoral fin distal radial bone 1 12 28651 -UBERON:2002279 pectoral fin distal radial bone 2 12 28652 -UBERON:2002280 pectoral fin distal radial bone 3 12 28653 -UBERON:2101587 pectoral fin proximal radial element 10 28654 -UBERON:2001587 pectoral fin proximal radial bone 11 28655 -UBERON:2002026 pectoral fin proximal radial bone 1 12 28656 -UBERON:2002027 pectoral fin proximal radial bone 2 12 28657 -UBERON:2002028 pectoral fin proximal radial bone 3 12 28658 -UBERON:2002029 pectoral fin proximal radial bone 4 12 28659 -UBERON:4300087 mesopterygium bone 12 28660 -UBERON:4300088 metapterygium bone 12 28661 -UBERON:4300089 propterygium bone 12 28662 -UBERON:2102026 pectoral fin proximal radial element 1 11 28663 -UBERON:2002026 pectoral fin proximal radial bone 1 12 28664 -UBERON:2202026 pectoral fin proximal radial cartilage 1 12 28665 -UBERON:2102027 pectoral fin proximal radial element 2 11 28666 -UBERON:2002027 pectoral fin proximal radial bone 2 12 28667 -UBERON:2202027 pectoral fin proximal radial cartilage 2 12 28668 -UBERON:2102028 pectoral fin proximal radial element 3 11 28669 -UBERON:2002028 pectoral fin proximal radial bone 3 12 28670 -UBERON:2202028 pectoral fin proximal radial cartilage 3 12 28671 -UBERON:2102029 pectoral fin proximal radial element 4 11 28672 -UBERON:2002029 pectoral fin proximal radial bone 4 12 28673 -UBERON:2202029 pectoral fin proximal radial cartilage 4 12 28674 -UBERON:2201587 pectoral fin proximal radial cartilage 11 28675 -UBERON:1500007 mesopterygium cartilage 12 28676 -UBERON:2001589 propterygium cartilage 12 28677 -UBERON:2202026 pectoral fin proximal radial cartilage 1 12 28678 -UBERON:2202027 pectoral fin proximal radial cartilage 2 12 28679 -UBERON:2202028 pectoral fin proximal radial cartilage 3 12 28680 -UBERON:2202029 pectoral fin proximal radial cartilage 4 12 28681 -UBERON:4400000 metapterygium cartilage 12 28682 -UBERON:4300081 mesopterygium element 11 28683 -UBERON:1500007 mesopterygium cartilage 12 28684 -UBERON:4300087 mesopterygium bone 12 28685 -UBERON:4300082 metapterygium element 11 28686 -UBERON:4300088 metapterygium bone 12 28687 -UBERON:4400000 metapterygium cartilage 12 28688 -UBERON:4300083 propterygium element 11 28689 -UBERON:2001589 propterygium cartilage 12 28690 -UBERON:4300089 propterygium bone 12 28691 -UBERON:2101588 pectoral fin distal radial element 10 28692 -UBERON:2001588 pectoral fin distal radial bone 11 28693 -UBERON:2002277 pectoral fin distal radial bone 1 12 28694 -UBERON:2002279 pectoral fin distal radial bone 2 12 28695 -UBERON:2002280 pectoral fin distal radial bone 3 12 28696 -UBERON:2102277 pectoral fin distal radial element 1 11 28697 -UBERON:2002277 pectoral fin distal radial bone 1 12 28698 -UBERON:2202277 pectoral fin distal radial cartilage 1 12 28699 -UBERON:2102279 pectoral fin distal radial element 2 11 28700 -UBERON:2002279 pectoral fin distal radial bone 2 12 28701 -UBERON:2202279 pectoral fin distal radial cartilage 2 12 28702 -UBERON:2102280 pectoral fin distal radial element 3 11 28703 -UBERON:2002280 pectoral fin distal radial bone 3 12 28704 -UBERON:2202280 pectoral fin distal radial cartilage 3 12 28705 -UBERON:2201588 pectoral fin distal radial cartilage 11 28706 -UBERON:2202277 pectoral fin distal radial cartilage 1 12 28707 -UBERON:2202279 pectoral fin distal radial cartilage 2 12 28708 -UBERON:2202280 pectoral fin distal radial cartilage 3 12 28709 -UBERON:2201586 pectoral fin radial cartilage 10 28710 -UBERON:2201587 pectoral fin proximal radial cartilage 11 28711 -UBERON:1500007 mesopterygium cartilage 12 28712 -UBERON:2001589 propterygium cartilage 12 28713 -UBERON:2202026 pectoral fin proximal radial cartilage 1 12 28714 -UBERON:2202027 pectoral fin proximal radial cartilage 2 12 28715 -UBERON:2202028 pectoral fin proximal radial cartilage 3 12 28716 -UBERON:2202029 pectoral fin proximal radial cartilage 4 12 28717 -UBERON:4400000 metapterygium cartilage 12 28718 -UBERON:2201588 pectoral fin distal radial cartilage 11 28719 -UBERON:2202277 pectoral fin distal radial cartilage 1 12 28720 -UBERON:2202279 pectoral fin distal radial cartilage 2 12 28721 -UBERON:2202280 pectoral fin distal radial cartilage 3 12 28722 -UBERON:4200208 pectoral fin intermediate radial bone 10 28723 -UBERON:2000271 radial bone 8 28724 -UBERON:1500006 paired fin radial bone 9 28725 -UBERON:2000508 pelvic fin radial bone 10 28726 -UBERON:1500008 pelvic fin distal radial bone 11 28727 -UBERON:2001415 pelvic fin distal radial bone 2 12 28728 -UBERON:2001416 pelvic fin distal radial bone 3 12 28729 -UBERON:2001417 pelvic fin distal radial bone 1 12 28730 -UBERON:1500009 pelvic fin basipterygial radial 11 28731 -UBERON:1500010 pelvic fin middle radial bone 11 28732 -UBERON:2001586 pectoral fin radial bone 10 28733 -UBERON:2001587 pectoral fin proximal radial bone 11 28734 -UBERON:2002026 pectoral fin proximal radial bone 1 12 28735 -UBERON:2002027 pectoral fin proximal radial bone 2 12 28736 -UBERON:2002028 pectoral fin proximal radial bone 3 12 28737 -UBERON:2002029 pectoral fin proximal radial bone 4 12 28738 -UBERON:4300087 mesopterygium bone 12 28739 -UBERON:4300088 metapterygium bone 12 28740 -UBERON:4300089 propterygium bone 12 28741 -UBERON:2001588 pectoral fin distal radial bone 11 28742 -UBERON:2002277 pectoral fin distal radial bone 1 12 28743 -UBERON:2002279 pectoral fin distal radial bone 2 12 28744 -UBERON:2002280 pectoral fin distal radial bone 3 12 28745 -UBERON:2005225 median fin radial bone 9 28746 -UBERON:2001671 anal fin radial bone 10 28747 -UBERON:2000268 anal fin proximal radial bone 11 28748 -UBERON:2000646 anal fin distal radial bone 11 28749 -UBERON:2001614 anal fin middle radial bone 11 28750 -UBERON:2001672 dorsal fin radial bone 10 28751 -UBERON:2000936 dorsal fin distal radial bone 11 28752 -UBERON:2005372 dorsal fin distal radial bone 1 12 28753 -UBERON:2005373 dorsal fin distal radial bone 2 12 28754 -UBERON:2005374 dorsal fin distal radial bone 3 12 28755 -UBERON:2005375 dorsal fin distal radial bone 4 12 28756 -UBERON:2005376 dorsal fin distal radial bone 5 12 28757 -UBERON:2005377 dorsal fin distal radial bone 6 12 28758 -UBERON:2005378 dorsal fin distal radial bone 7 12 28759 -UBERON:2005379 dorsal fin distal radial bone 8 12 28760 -UBERON:2000947 dorsal fin proximal radial bone 11 28761 -UBERON:2001818 dorsal fin proximal radial bone 1 12 28762 -UBERON:2001819 dorsal fin proximal radial bone 2 12 28763 -UBERON:2005380 dorsal fin proximal radial bone 3 12 28764 -UBERON:2005381 dorsal fin proximal radial bone 4 12 28765 -UBERON:2005382 dorsal fin proximal radial bone 5 12 28766 -UBERON:2005383 dorsal fin proximal radial bone 6 12 28767 -UBERON:2005384 dorsal fin proximal radial bone 7 12 28768 -UBERON:2005385 dorsal fin proximal radial bone 8 12 28769 -UBERON:2001613 dorsal fin middle radial bone 11 28770 -UBERON:2005226 median fin proximal radial bone 10 28771 -UBERON:2105225 median fin radial element 8 28772 -UBERON:0018325 caudal fin radial element 9 28773 -UBERON:0018324 hypochordal radial 10 28774 -UBERON:2005225 median fin radial bone 9 28775 -UBERON:2001671 anal fin radial bone 10 28776 -UBERON:2000268 anal fin proximal radial bone 11 28777 -UBERON:2000646 anal fin distal radial bone 11 28778 -UBERON:2001614 anal fin middle radial bone 11 28779 -UBERON:2001672 dorsal fin radial bone 10 28780 -UBERON:2000936 dorsal fin distal radial bone 11 28781 -UBERON:2005372 dorsal fin distal radial bone 1 12 28782 -UBERON:2005373 dorsal fin distal radial bone 2 12 28783 -UBERON:2005374 dorsal fin distal radial bone 3 12 28784 -UBERON:2005375 dorsal fin distal radial bone 4 12 28785 -UBERON:2005376 dorsal fin distal radial bone 5 12 28786 -UBERON:2005377 dorsal fin distal radial bone 6 12 28787 -UBERON:2005378 dorsal fin distal radial bone 7 12 28788 -UBERON:2005379 dorsal fin distal radial bone 8 12 28789 -UBERON:2000947 dorsal fin proximal radial bone 11 28790 -UBERON:2001818 dorsal fin proximal radial bone 1 12 28791 -UBERON:2001819 dorsal fin proximal radial bone 2 12 28792 -UBERON:2005380 dorsal fin proximal radial bone 3 12 28793 -UBERON:2005381 dorsal fin proximal radial bone 4 12 28794 -UBERON:2005382 dorsal fin proximal radial bone 5 12 28795 -UBERON:2005383 dorsal fin proximal radial bone 6 12 28796 -UBERON:2005384 dorsal fin proximal radial bone 7 12 28797 -UBERON:2005385 dorsal fin proximal radial bone 8 12 28798 -UBERON:2001613 dorsal fin middle radial bone 11 28799 -UBERON:2005226 median fin proximal radial bone 10 28800 -UBERON:2101671 anal fin radial element 9 28801 -UBERON:2001671 anal fin radial bone 10 28802 -UBERON:2000268 anal fin proximal radial bone 11 28803 -UBERON:2000646 anal fin distal radial bone 11 28804 -UBERON:2001614 anal fin middle radial bone 11 28805 -UBERON:2100268 anal fin proximal radial element 10 28806 -UBERON:2000268 anal fin proximal radial bone 11 28807 -UBERON:2200268 anal fin proximal radial cartilage 11 28808 -UBERON:2100646 anal fin distal radial element 10 28809 -UBERON:2000646 anal fin distal radial bone 11 28810 -UBERON:2200646 anal fin distal radial cartilage 11 28811 -UBERON:2101614 anal fin middle radial element 10 28812 -UBERON:2001614 anal fin middle radial bone 11 28813 -UBERON:2201614 anal fin middle radial cartilage 11 28814 -UBERON:2201671 anal fin radial cartilage 10 28815 -UBERON:2200268 anal fin proximal radial cartilage 11 28816 -UBERON:2200646 anal fin distal radial cartilage 11 28817 -UBERON:2201614 anal fin middle radial cartilage 11 28818 -UBERON:2101672 dorsal fin radial element 9 28819 -UBERON:2001672 dorsal fin radial bone 10 28820 -UBERON:2000936 dorsal fin distal radial bone 11 28821 -UBERON:2005372 dorsal fin distal radial bone 1 12 28822 -UBERON:2005373 dorsal fin distal radial bone 2 12 28823 -UBERON:2005374 dorsal fin distal radial bone 3 12 28824 -UBERON:2005375 dorsal fin distal radial bone 4 12 28825 -UBERON:2005376 dorsal fin distal radial bone 5 12 28826 -UBERON:2005377 dorsal fin distal radial bone 6 12 28827 -UBERON:2005378 dorsal fin distal radial bone 7 12 28828 -UBERON:2005379 dorsal fin distal radial bone 8 12 28829 -UBERON:2000947 dorsal fin proximal radial bone 11 28830 -UBERON:2001818 dorsal fin proximal radial bone 1 12 28831 -UBERON:2001819 dorsal fin proximal radial bone 2 12 28832 -UBERON:2005380 dorsal fin proximal radial bone 3 12 28833 -UBERON:2005381 dorsal fin proximal radial bone 4 12 28834 -UBERON:2005382 dorsal fin proximal radial bone 5 12 28835 -UBERON:2005383 dorsal fin proximal radial bone 6 12 28836 -UBERON:2005384 dorsal fin proximal radial bone 7 12 28837 -UBERON:2005385 dorsal fin proximal radial bone 8 12 28838 -UBERON:2001613 dorsal fin middle radial bone 11 28839 -UBERON:2100936 dorsal fin distal radial element 10 28840 -UBERON:2000936 dorsal fin distal radial bone 11 28841 -UBERON:2005372 dorsal fin distal radial bone 1 12 28842 -UBERON:2005373 dorsal fin distal radial bone 2 12 28843 -UBERON:2005374 dorsal fin distal radial bone 3 12 28844 -UBERON:2005375 dorsal fin distal radial bone 4 12 28845 -UBERON:2005376 dorsal fin distal radial bone 5 12 28846 -UBERON:2005377 dorsal fin distal radial bone 6 12 28847 -UBERON:2005378 dorsal fin distal radial bone 7 12 28848 -UBERON:2005379 dorsal fin distal radial bone 8 12 28849 -UBERON:2105372 dorsal fin distal radial element 1 11 28850 -UBERON:2005372 dorsal fin distal radial bone 1 12 28851 -UBERON:2205372 dorsal fin distal radial cartilage 1 12 28852 -UBERON:2105373 dorsal fin distal radial element 2 11 28853 -UBERON:2005373 dorsal fin distal radial bone 2 12 28854 -UBERON:2205373 dorsal fin distal radial cartilage 2 12 28855 -UBERON:2105374 dorsal fin distal radial element 3 11 28856 -UBERON:2005374 dorsal fin distal radial bone 3 12 28857 -UBERON:2205374 dorsal fin distal radial cartilage 3 12 28858 -UBERON:2105375 dorsal fin distal radial element 4 11 28859 -UBERON:2005375 dorsal fin distal radial bone 4 12 28860 -UBERON:2205375 dorsal fin distal radial cartilage 4 12 28861 -UBERON:2105376 dorsal fin distal radial element 5 11 28862 -UBERON:2005376 dorsal fin distal radial bone 5 12 28863 -UBERON:2205376 dorsal fin distal radial cartilage 5 12 28864 -UBERON:2105377 dorsal fin distal radial element 6 11 28865 -UBERON:2005377 dorsal fin distal radial bone 6 12 28866 -UBERON:2205377 dorsal fin distal radial cartilage 6 12 28867 -UBERON:2105378 dorsal fin distal radial element 7 11 28868 -UBERON:2005378 dorsal fin distal radial bone 7 12 28869 -UBERON:2205378 dorsal fin distal radial cartilage 7 12 28870 -UBERON:2105379 dorsal fin distal radial element 8 11 28871 -UBERON:2005379 dorsal fin distal radial bone 8 12 28872 -UBERON:2205379 dorsal fin distal radial cartilage 8 12 28873 -UBERON:2200936 dorsal fin distal radial cartilage 11 28874 -UBERON:2205372 dorsal fin distal radial cartilage 1 12 28875 -UBERON:2205373 dorsal fin distal radial cartilage 2 12 28876 -UBERON:2205374 dorsal fin distal radial cartilage 3 12 28877 -UBERON:2205375 dorsal fin distal radial cartilage 4 12 28878 -UBERON:2205376 dorsal fin distal radial cartilage 5 12 28879 -UBERON:2205377 dorsal fin distal radial cartilage 6 12 28880 -UBERON:2205378 dorsal fin distal radial cartilage 7 12 28881 -UBERON:2205379 dorsal fin distal radial cartilage 8 12 28882 -UBERON:2100947 dorsal fin proximal radial element 10 28883 -UBERON:2000947 dorsal fin proximal radial bone 11 28884 -UBERON:2001818 dorsal fin proximal radial bone 1 12 28885 -UBERON:2001819 dorsal fin proximal radial bone 2 12 28886 -UBERON:2005380 dorsal fin proximal radial bone 3 12 28887 -UBERON:2005381 dorsal fin proximal radial bone 4 12 28888 -UBERON:2005382 dorsal fin proximal radial bone 5 12 28889 -UBERON:2005383 dorsal fin proximal radial bone 6 12 28890 -UBERON:2005384 dorsal fin proximal radial bone 7 12 28891 -UBERON:2005385 dorsal fin proximal radial bone 8 12 28892 -UBERON:2101818 dorsal fin proximal radial element 1 11 28893 -UBERON:2001818 dorsal fin proximal radial bone 1 12 28894 -UBERON:2201818 dorsal fin proximal radial cartilage 1 12 28895 -UBERON:2101819 dorsal fin proximal radial element 2 11 28896 -UBERON:2001819 dorsal fin proximal radial bone 2 12 28897 -UBERON:2201819 dorsal fin proximal radial cartilage 2 12 28898 -UBERON:2105380 dorsal fin proximal radial element 3 11 28899 -UBERON:2005380 dorsal fin proximal radial bone 3 12 28900 -UBERON:2205380 dorsal fin proximal radial cartilage 3 12 28901 -UBERON:2105381 dorsal fin proximal radial element 4 11 28902 -UBERON:2005381 dorsal fin proximal radial bone 4 12 28903 -UBERON:2205381 dorsal fin proximal radial cartilage 4 12 28904 -UBERON:2105382 dorsal fin proximal radial element 5 11 28905 -UBERON:2005382 dorsal fin proximal radial bone 5 12 28906 -UBERON:2205382 dorsal fin proximal radial cartilage 5 12 28907 -UBERON:2105383 dorsal fin proximal radial element 6 11 28908 -UBERON:2005383 dorsal fin proximal radial bone 6 12 28909 -UBERON:2205383 dorsal fin proximal radial cartilage 6 12 28910 -UBERON:2105384 dorsal fin proximal radial element 7 11 28911 -UBERON:2005384 dorsal fin proximal radial bone 7 12 28912 -UBERON:2205384 dorsal fin proximal radial cartilage 7 12 28913 -UBERON:2105385 dorsal fin proximal radial element 8 11 28914 -UBERON:2005385 dorsal fin proximal radial bone 8 12 28915 -UBERON:2205385 dorsal fin proximal radial cartilage 8 12 28916 -UBERON:2200947 dorsal fin proximal radial cartilage 11 28917 -UBERON:2201818 dorsal fin proximal radial cartilage 1 12 28918 -UBERON:2201819 dorsal fin proximal radial cartilage 2 12 28919 -UBERON:2205380 dorsal fin proximal radial cartilage 3 12 28920 -UBERON:2205381 dorsal fin proximal radial cartilage 4 12 28921 -UBERON:2205382 dorsal fin proximal radial cartilage 5 12 28922 -UBERON:2205383 dorsal fin proximal radial cartilage 6 12 28923 -UBERON:2205384 dorsal fin proximal radial cartilage 7 12 28924 -UBERON:2205385 dorsal fin proximal radial cartilage 8 12 28925 -UBERON:2101613 dorsal fin middle radial element 10 28926 -UBERON:2001613 dorsal fin middle radial bone 11 28927 -UBERON:2201613 dorsal fin middle radial cartilage 11 28928 -UBERON:2201672 dorsal fin radial cartilage 10 28929 -UBERON:2200936 dorsal fin distal radial cartilage 11 28930 -UBERON:2205372 dorsal fin distal radial cartilage 1 12 28931 -UBERON:2205373 dorsal fin distal radial cartilage 2 12 28932 -UBERON:2205374 dorsal fin distal radial cartilage 3 12 28933 -UBERON:2205375 dorsal fin distal radial cartilage 4 12 28934 -UBERON:2205376 dorsal fin distal radial cartilage 5 12 28935 -UBERON:2205377 dorsal fin distal radial cartilage 6 12 28936 -UBERON:2205378 dorsal fin distal radial cartilage 7 12 28937 -UBERON:2205379 dorsal fin distal radial cartilage 8 12 28938 -UBERON:2200947 dorsal fin proximal radial cartilage 11 28939 -UBERON:2201818 dorsal fin proximal radial cartilage 1 12 28940 -UBERON:2201819 dorsal fin proximal radial cartilage 2 12 28941 -UBERON:2205380 dorsal fin proximal radial cartilage 3 12 28942 -UBERON:2205381 dorsal fin proximal radial cartilage 4 12 28943 -UBERON:2205382 dorsal fin proximal radial cartilage 5 12 28944 -UBERON:2205383 dorsal fin proximal radial cartilage 6 12 28945 -UBERON:2205384 dorsal fin proximal radial cartilage 7 12 28946 -UBERON:2205385 dorsal fin proximal radial cartilage 8 12 28947 -UBERON:2201613 dorsal fin middle radial cartilage 11 28948 -UBERON:2105226 median fin proximal radial element 9 28949 -UBERON:2005226 median fin proximal radial bone 10 28950 -UBERON:2205226 median fin proximal radial cartilage 10 28951 -UBERON:2205225 median fin radial cartilage 9 28952 -UBERON:2201671 anal fin radial cartilage 10 28953 -UBERON:2200268 anal fin proximal radial cartilage 11 28954 -UBERON:2200646 anal fin distal radial cartilage 11 28955 -UBERON:2201614 anal fin middle radial cartilage 11 28956 -UBERON:2201672 dorsal fin radial cartilage 10 28957 -UBERON:2200936 dorsal fin distal radial cartilage 11 28958 -UBERON:2205372 dorsal fin distal radial cartilage 1 12 28959 -UBERON:2205373 dorsal fin distal radial cartilage 2 12 28960 -UBERON:2205374 dorsal fin distal radial cartilage 3 12 28961 -UBERON:2205375 dorsal fin distal radial cartilage 4 12 28962 -UBERON:2205376 dorsal fin distal radial cartilage 5 12 28963 -UBERON:2205377 dorsal fin distal radial cartilage 6 12 28964 -UBERON:2205378 dorsal fin distal radial cartilage 7 12 28965 -UBERON:2205379 dorsal fin distal radial cartilage 8 12 28966 -UBERON:2200947 dorsal fin proximal radial cartilage 11 28967 -UBERON:2201818 dorsal fin proximal radial cartilage 1 12 28968 -UBERON:2201819 dorsal fin proximal radial cartilage 2 12 28969 -UBERON:2205380 dorsal fin proximal radial cartilage 3 12 28970 -UBERON:2205381 dorsal fin proximal radial cartilage 4 12 28971 -UBERON:2205382 dorsal fin proximal radial cartilage 5 12 28972 -UBERON:2205383 dorsal fin proximal radial cartilage 6 12 28973 -UBERON:2205384 dorsal fin proximal radial cartilage 7 12 28974 -UBERON:2205385 dorsal fin proximal radial cartilage 8 12 28975 -UBERON:2201613 dorsal fin middle radial cartilage 11 28976 -UBERON:2205226 median fin proximal radial cartilage 10 28977 -UBERON:2200271 radial cartilage 8 28978 -UBERON:1700006 paired fin radial cartilage 9 28979 -UBERON:2201415 pelvic fin distal radial cartilage 2 10 28980 -UBERON:2201416 pelvic fin distal radial cartilage 3 10 28981 -UBERON:2201417 pelvic fin distal radial cartilage 1 10 28982 -UBERON:2201586 pectoral fin radial cartilage 10 28983 -UBERON:2201587 pectoral fin proximal radial cartilage 11 28984 -UBERON:1500007 mesopterygium cartilage 12 28985 -UBERON:2001589 propterygium cartilage 12 28986 -UBERON:2202026 pectoral fin proximal radial cartilage 1 12 28987 -UBERON:2202027 pectoral fin proximal radial cartilage 2 12 28988 -UBERON:2202028 pectoral fin proximal radial cartilage 3 12 28989 -UBERON:2202029 pectoral fin proximal radial cartilage 4 12 28990 -UBERON:4400000 metapterygium cartilage 12 28991 -UBERON:2201588 pectoral fin distal radial cartilage 11 28992 -UBERON:2202277 pectoral fin distal radial cartilage 1 12 28993 -UBERON:2202279 pectoral fin distal radial cartilage 2 12 28994 -UBERON:2202280 pectoral fin distal radial cartilage 3 12 28995 -UBERON:4500020 pelvic fin distal radial cartilage 10 28996 -UBERON:2205225 median fin radial cartilage 9 28997 -UBERON:2201671 anal fin radial cartilage 10 28998 -UBERON:2200268 anal fin proximal radial cartilage 11 28999 -UBERON:2200646 anal fin distal radial cartilage 11 29000 -UBERON:2201614 anal fin middle radial cartilage 11 29001 -UBERON:2201672 dorsal fin radial cartilage 10 29002 -UBERON:2200936 dorsal fin distal radial cartilage 11 29003 -UBERON:2205372 dorsal fin distal radial cartilage 1 12 29004 -UBERON:2205373 dorsal fin distal radial cartilage 2 12 29005 -UBERON:2205374 dorsal fin distal radial cartilage 3 12 29006 -UBERON:2205375 dorsal fin distal radial cartilage 4 12 29007 -UBERON:2205376 dorsal fin distal radial cartilage 5 12 29008 -UBERON:2205377 dorsal fin distal radial cartilage 6 12 29009 -UBERON:2205378 dorsal fin distal radial cartilage 7 12 29010 -UBERON:2205379 dorsal fin distal radial cartilage 8 12 29011 -UBERON:2200947 dorsal fin proximal radial cartilage 11 29012 -UBERON:2201818 dorsal fin proximal radial cartilage 1 12 29013 -UBERON:2201819 dorsal fin proximal radial cartilage 2 12 29014 -UBERON:2205380 dorsal fin proximal radial cartilage 3 12 29015 -UBERON:2205381 dorsal fin proximal radial cartilage 4 12 29016 -UBERON:2205382 dorsal fin proximal radial cartilage 5 12 29017 -UBERON:2205383 dorsal fin proximal radial cartilage 6 12 29018 -UBERON:2205384 dorsal fin proximal radial cartilage 7 12 29019 -UBERON:2205385 dorsal fin proximal radial cartilage 8 12 29020 -UBERON:2201613 dorsal fin middle radial cartilage 11 29021 -UBERON:2205226 median fin proximal radial cartilage 10 29022 -UBERON:4300198 epichordal radial 8 29023 -UBERON:2100623 basipterygium element 7 29024 -UBERON:2000623 basipterygium bone 8 29025 -UBERON:2001539 basipterygium cartilage 8 29026 -UBERON:3000016 anterior nasal wall 7 29027 -UBERON:3000454 postnasal wall 7 29028 -UBERON:3000601 tectum nasi 7 29029 -UBERON:3000759 omosternum 7 29030 -UBERON:3000862 pubo-ischium 7 29031 -UBERON:4000146 transient cartilaginous element 7 29032 -UBERON:4100013 postcoracoid 7 29033 -UBERON:4200139 palatoquadrate element 7 29034 -UBERON:4300035 supraneural element 7 29035 -UBERON:2000442 supraneural bone 8 29036 -UBERON:2001163 supraneural 7 bone 9 29037 -UBERON:2001164 supraneural 6 bone 9 29038 -UBERON:2001165 supraneural 5 bone 9 29039 -UBERON:2001166 supraneural 9 bone 9 29040 -UBERON:2001191 supraneural 2 bone 9 29041 -UBERON:2001192 supraneural 3 bone 9 29042 -UBERON:2001193 supraneural 8 bone 9 29043 -UBERON:2001397 post-Weberian supraneural 9 29044 -UBERON:2001888 supraneural 1 bone 9 29045 -UBERON:2002007 supraneural 4 bone 9 29046 -UBERON:4300036 supraneural cartilage 8 29047 -UBERON:2001869 supraneural 2 cartilage 9 29048 -UBERON:2001870 supraneural 3 cartilage 9 29049 -UBERON:2001889 supraneural 1 cartilage 9 29050 -UBERON:4300263 supraneural 4 cartilage 9 29051 -UBERON:4300264 supraneural 5 cartilage 9 29052 -UBERON:4300265 supraneural 6 cartilage 9 29053 -UBERON:4300266 supraneural 7 cartilage 9 29054 -UBERON:4300267 supraneural 8 cartilage 9 29055 -UBERON:4300268 supraneural 9 cartilage 9 29056 -UBERON:4300213 supraneural 1 element 8 29057 -UBERON:2001888 supraneural 1 bone 9 29058 -UBERON:2001889 supraneural 1 cartilage 9 29059 -UBERON:4300214 supraneural 2 element 8 29060 -UBERON:2001191 supraneural 2 bone 9 29061 -UBERON:2001869 supraneural 2 cartilage 9 29062 -UBERON:4300215 supraneural 3 element 8 29063 -UBERON:2001192 supraneural 3 bone 9 29064 -UBERON:2001870 supraneural 3 cartilage 9 29065 -UBERON:4300216 supraneural 4 element 8 29066 -UBERON:2002007 supraneural 4 bone 9 29067 -UBERON:4300263 supraneural 4 cartilage 9 29068 -UBERON:4300217 supraneural 5 element 8 29069 -UBERON:2001165 supraneural 5 bone 9 29070 -UBERON:4300264 supraneural 5 cartilage 9 29071 -UBERON:4300218 supraneural 6 element 8 29072 -UBERON:2001164 supraneural 6 bone 9 29073 -UBERON:4300265 supraneural 6 cartilage 9 29074 -UBERON:4300219 supraneural 7 element 8 29075 -UBERON:2001163 supraneural 7 bone 9 29076 -UBERON:4300266 supraneural 7 cartilage 9 29077 -UBERON:4300220 supraneural 8 element 8 29078 -UBERON:2001193 supraneural 8 bone 9 29079 -UBERON:4300267 supraneural 8 cartilage 9 29080 -UBERON:4300221 supraneural 9 element 8 29081 -UBERON:2001166 supraneural 9 bone 9 29082 -UBERON:4300268 supraneural 9 cartilage 9 29083 -UBERON:4300092 mesocoracoid element 7 29084 -UBERON:2000239 mesocoracoid bone 8 29085 -UBERON:2001537 mesocoracoid cartilage 8 29086 -UBERON:4300111 lateral ethmoid element 7 29087 -UBERON:2000226 lateral ethmoid bone 8 29088 -UBERON:4300110 lateral ethmoid cartilage 8 29089 -UBERON:4300190 claustrum element 7 29090 -UBERON:2000637 claustrum cartilage 8 29091 -UBERON:2001592 claustrum bone 8 29092 -UBERON:4300203 tectum orbitale 7 29093 -UBERON:0010522 replacement element 6 29094 -UBERON:0011609 ceratohyal element 7 29095 -UBERON:0011610 ceratohyal cartilage 8 29096 -UBERON:0011611 ceratohyal bone 8 29097 -UBERON:0011613 hypohyal element 7 29098 -UBERON:0004751 hypohyal bone 8 29099 -UBERON:0011612 hypohyal cartilage 8 29100 -UBERON:0012075 replacement bone 7 29101 -UBERON:0008909 perichordal bone 8 29102 -UBERON:2001640 notochordal ossification 9 29103 -UBERON:0008911 chondral bone 8 29104 -UBERON:4000138 ligamentous replacement element 7 29105 -UBERON:0010911 ossicle 6 29106 -UBERON:0011141 appendicular ossicle 7 29107 -UBERON:0002446 patella 8 29108 -UBERON:0003467 sesamoid bone of gastrocnemius 8 29109 -UBERON:0007993 ulnar sesamoid bone 8 29110 -UBERON:0007997 sesamoid bone of manus 8 29111 -UBERON:0001429 pisiform 9 29112 -UBERON:0007991 proximal sesamoid bone of manus 9 29113 -UBERON:0008257 radial sesamoid 9 29114 -UBERON:0008000 sesamoid bone of pes 8 29115 -UBERON:0007990 proximal sesamoid bone of pes 9 29116 -UBERON:4200152 intertarsale sesamoid 9 29117 -UBERON:0010759 equine distal sesamoid 8 29118 -UBERON:0012104 sesamoid bone of the peroneus longus muscle 8 29119 -UBERON:0017261 intertarsal sesamoid 8 29120 -UBERON:4200152 intertarsale sesamoid 9 29121 -UBERON:3010624 subarticular sesamoid 8 29122 -UBERON:0011142 axial ossicle 7 29123 -UBERON:0013631 sesamoid element 7 29124 -UBERON:0001479 sesamoid bone 8 29125 -UBERON:0002446 patella 9 29126 -UBERON:0003467 sesamoid bone of gastrocnemius 9 29127 -UBERON:0007993 ulnar sesamoid bone 9 29128 -UBERON:0007997 sesamoid bone of manus 9 29129 -UBERON:0001429 pisiform 10 29130 -UBERON:0007991 proximal sesamoid bone of manus 10 29131 -UBERON:0008257 radial sesamoid 10 29132 -UBERON:0008000 sesamoid bone of pes 9 29133 -UBERON:0007990 proximal sesamoid bone of pes 10 29134 -UBERON:4200152 intertarsale sesamoid 10 29135 -UBERON:0010311 scleral sesamoid bone 9 29136 -UBERON:0010759 equine distal sesamoid 9 29137 -UBERON:0012104 sesamoid bone of the peroneus longus muscle 9 29138 -UBERON:0018320 flexor sesamoid 9 29139 -UBERON:3010624 subarticular sesamoid 9 29140 -UBERON:4000134 ossified tendon 9 29141 -UBERON:2001274 coronomeckelian 10 29142 -UBERON:4000159 ossified ligament 9 29143 -UBERON:4200049 cartilago sesamoides 9 29144 -UBERON:0013632 sesamoid cartilage 8 29145 -UBERON:0017261 intertarsal sesamoid 8 29146 -UBERON:4200152 intertarsale sesamoid 9 29147 -UBERON:4300240 rostral ossicle 7 29148 -UBERON:0010913 vertebral element 6 29149 -UBERON:0002412 vertebra 7 29150 -UBERON:0001092 vertebral bone 1 8 29151 -UBERON:0001093 vertebral bone 2 8 29152 -UBERON:0001094 sacral vertebra 8 29153 -UBERON:0004622 sacral vertebra 1 9 29154 -UBERON:0004623 sacral vertebra 2 9 29155 -UBERON:0004624 sacral vertebra 3 9 29156 -UBERON:0004625 sacral vertebra 4 9 29157 -UBERON:0001095 caudal vertebra 8 29158 -UBERON:2000734 preural vertebra 9 29159 -UBERON:2000557 preural 1 vertebra 10 29160 -UBERON:2000586 preural 2 vertebra 10 29161 -UBERON:2002112 preural 3 vertebra 10 29162 -UBERON:2002162 ural vertebra 9 29163 -UBERON:2001579 ural vertebra 2 10 29164 -UBERON:2002163 ural vertebra 1 10 29165 -UBERON:4300105 caudal vertebra 1 9 29166 -UBERON:0002347 thoracic vertebra 8 29167 -UBERON:0004626 thoracic vertebra 1 9 29168 -UBERON:0004627 thoracic vertebra 2 9 29169 -UBERON:0004628 thoracic vertebra 3 9 29170 -UBERON:0004629 thoracic vertebra 4 9 29171 -UBERON:0004630 thoracic vertebra 5 9 29172 -UBERON:0004631 thoracic vertebra 6 9 29173 -UBERON:0004632 thoracic vertebra 7 9 29174 -UBERON:0004633 thoracic vertebra 9 9 29175 -UBERON:0004634 thoracic vertebra 10 9 29176 -UBERON:0004635 thoracic vertebra 11 9 29177 -UBERON:0004636 thoracic vertebra 12 9 29178 -UBERON:0011050 thoracic vertebra 8 9 29179 -UBERON:0002414 lumbar vertebra 8 29180 -UBERON:0004617 lumbar vertebra 1 9 29181 -UBERON:0004618 lumbar vertebra 2 9 29182 -UBERON:0004619 lumbar vertebra 3 9 29183 -UBERON:0004620 lumbar vertebra 4 9 29184 -UBERON:0004621 lumbar vertebra 5 9 29185 -UBERON:0004451 trunk or cervical vertebra 8 29186 -UBERON:0002413 cervical vertebra 9 29187 -UBERON:0004612 mammalian cervical vertebra 3 10 29188 -UBERON:0004613 mammalian cervical vertebra 4 10 29189 -UBERON:0004614 mammalian cervical vertebra 5 10 29190 -UBERON:0004615 mammalian cervical vertebra 6 10 29191 -UBERON:0004616 mammalian cervical vertebra 7 10 29192 -UBERON:0007800 proatlas 10 29193 -UBERON:0011677 trunk vertebra 9 29194 -UBERON:0035083 transverse process-bearing vertebra 8 29195 -UBERON:0035084 non-transverse process-bearing vertebra 8 29196 -UBERON:2002061 predorsal vertebra 8 29197 -UBERON:4300223 precaudal vertebra 8 29198 -UBERON:2001190 Weberian vertebra 9 29199 -UBERON:2001582 non-Weberian precaudal vertebra 9 29200 -UBERON:0011094 vertebra cartilage element 7 29201 -UBERON:0010745 sacral vertebra cartilage element 8 29202 -UBERON:0013503 caudal vertebra cartilage element 8 29203 -UBERON:0013505 cervical vertebra cartilage element 8 29204 -UBERON:0013507 thoracic vertebra cartilage element 8 29205 -UBERON:0013509 lumbar vertebra cartilage element 8 29206 -UBERON:4300225 precaudal vertebra cartilage element 8 29207 -UBERON:0011095 vertebra pre-cartilage condensation 7 29208 -UBERON:0010744 sacral vertebra pre-cartilage condensation 8 29209 -UBERON:0013504 caudal vertebra pre-cartilage condensation 8 29210 -UBERON:0013506 cervical vertebra pre-cartilage condensation 8 29211 -UBERON:0013508 thoracic vertebra pre-cartilage condensation 8 29212 -UBERON:0013510 lumbar vertebra pre-cartilage condensation 8 29213 -UBERON:0015007 cervical vertebra endochondral element 7 29214 -UBERON:0002413 cervical vertebra 8 29215 -UBERON:0004612 mammalian cervical vertebra 3 9 29216 -UBERON:0004613 mammalian cervical vertebra 4 9 29217 -UBERON:0004614 mammalian cervical vertebra 5 9 29218 -UBERON:0004615 mammalian cervical vertebra 6 9 29219 -UBERON:0004616 mammalian cervical vertebra 7 9 29220 -UBERON:0007800 proatlas 9 29221 -UBERON:0013505 cervical vertebra cartilage element 8 29222 -UBERON:0013506 cervical vertebra pre-cartilage condensation 8 29223 -UBERON:0015008 thoracic vertebra endochondral element 7 29224 -UBERON:0002347 thoracic vertebra 8 29225 -UBERON:0004626 thoracic vertebra 1 9 29226 -UBERON:0004627 thoracic vertebra 2 9 29227 -UBERON:0004628 thoracic vertebra 3 9 29228 -UBERON:0004629 thoracic vertebra 4 9 29229 -UBERON:0004630 thoracic vertebra 5 9 29230 -UBERON:0004631 thoracic vertebra 6 9 29231 -UBERON:0004632 thoracic vertebra 7 9 29232 -UBERON:0004633 thoracic vertebra 9 9 29233 -UBERON:0004634 thoracic vertebra 10 9 29234 -UBERON:0004635 thoracic vertebra 11 9 29235 -UBERON:0004636 thoracic vertebra 12 9 29236 -UBERON:0011050 thoracic vertebra 8 9 29237 -UBERON:0013507 thoracic vertebra cartilage element 8 29238 -UBERON:0013508 thoracic vertebra pre-cartilage condensation 8 29239 -UBERON:0015009 lumbar vertebra endochondral element 7 29240 -UBERON:0002414 lumbar vertebra 8 29241 -UBERON:0004617 lumbar vertebra 1 9 29242 -UBERON:0004618 lumbar vertebra 2 9 29243 -UBERON:0004619 lumbar vertebra 3 9 29244 -UBERON:0004620 lumbar vertebra 4 9 29245 -UBERON:0004621 lumbar vertebra 5 9 29246 -UBERON:0013509 lumbar vertebra cartilage element 8 29247 -UBERON:0013510 lumbar vertebra pre-cartilage condensation 8 29248 -UBERON:0015010 sacral vertebra endochondral element 7 29249 -UBERON:0001094 sacral vertebra 8 29250 -UBERON:0004622 sacral vertebra 1 9 29251 -UBERON:0004623 sacral vertebra 2 9 29252 -UBERON:0004624 sacral vertebra 3 9 29253 -UBERON:0004625 sacral vertebra 4 9 29254 -UBERON:0010744 sacral vertebra pre-cartilage condensation 8 29255 -UBERON:0010745 sacral vertebra cartilage element 8 29256 -UBERON:0018142 caudal vertebra endochondral element 7 29257 -UBERON:0001095 caudal vertebra 8 29258 -UBERON:2000734 preural vertebra 9 29259 -UBERON:2000557 preural 1 vertebra 10 29260 -UBERON:2000586 preural 2 vertebra 10 29261 -UBERON:2002112 preural 3 vertebra 10 29262 -UBERON:2002162 ural vertebra 9 29263 -UBERON:2001579 ural vertebra 2 10 29264 -UBERON:2002163 ural vertebra 1 10 29265 -UBERON:4300105 caudal vertebra 1 9 29266 -UBERON:0013503 caudal vertebra cartilage element 8 29267 -UBERON:0013504 caudal vertebra pre-cartilage condensation 8 29268 -UBERON:2001167 vertebral element 1 7 29269 -UBERON:2001168 vertebral element 2 7 29270 -UBERON:2001169 vertebral element 3 7 29271 -UBERON:2001170 vertebral element 4 7 29272 -UBERON:2001732 vertebral element 5 7 29273 -UBERON:2001980 vertebral element 6 7 29274 -UBERON:2001981 vertebral element 7 7 29275 -UBERON:2001982 vertebral element 8 7 29276 -UBERON:2002149 vertebral element 9 7 29277 -UBERON:2002150 vertebral element 10 7 29278 -UBERON:2002151 vertebral element 11 7 29279 -UBERON:2002152 vertebral element 12 7 29280 -UBERON:4300224 precaudal vertebra endochondral element 7 29281 -UBERON:4300223 precaudal vertebra 8 29282 -UBERON:2001190 Weberian vertebra 9 29283 -UBERON:2001582 non-Weberian precaudal vertebra 9 29284 -UBERON:4300225 precaudal vertebra cartilage element 8 29285 -UBERON:0011248 procoracoid element 6 29286 -UBERON:0011246 procoracoid bone 7 29287 -UBERON:0011247 procoracoid cartilage 7 29288 -UBERON:0011623 horn of thyroid cartilage 6 29289 -UBERON:0011624 superior horn of thyroid cartilage 7 29290 -UBERON:0011625 inferior horn of thyroid cartilage 7 29291 -UBERON:0016491 vertebral centrum element 6 29292 -UBERON:0001075 bony vertebral centrum 7 29293 -UBERON:2001983 centrum 1 8 29294 -UBERON:2001984 centrum 2 8 29295 -UBERON:2001985 centrum 3 8 29296 -UBERON:2001986 centrum 4 8 29297 -UBERON:2001987 centrum 5 8 29298 -UBERON:2001988 centrum 6 8 29299 -UBERON:2002058 Weberian complex centrum 8 29300 -UBERON:3000711 procoelous 8 29301 -UBERON:3000712 opisthocoelous 8 29302 -UBERON:3000713 epichordal 8 29303 -UBERON:3000714 perichordal 8 29304 -UBERON:3000715 heterocoelous 8 29305 -UBERON:3000716 acoelous 8 29306 -UBERON:3000717 amphicoelous 8 29307 -UBERON:3000718 ectochordal 8 29308 -UBERON:3000719 holochordal 8 29309 -UBERON:3000720 stegochordal 8 29310 -UBERON:3000793 anomocoelous 8 29311 -UBERON:3000794 displasiocoelous 8 29312 -UBERON:4200194 intercentrum 8 29313 -UBERON:4200196 atlas intercentrum 9 29314 -UBERON:4300124 axis intercentrum 9 29315 -UBERON:4200195 pleurocentrum 8 29316 -UBERON:0009291 cartilaginous vertebral centrum 7 29317 -UBERON:0034937 pharyngeal bar 6 29318 -UBERON:0036266 pars interarticularis of vertebra 6 29319 -UBERON:2000461 Weberian ossicle 6 29320 -UBERON:2000525 intercalarium 7 29321 -UBERON:2000698 tripus 7 29322 -UBERON:2001171 os suspensorium 7 29323 -UBERON:2001553 manubrium 7 29324 -UBERON:2002214 os suspensorium medial flange 7 29325 -UBERON:4300190 claustrum element 7 29326 -UBERON:2000637 claustrum cartilage 8 29327 -UBERON:2001592 claustrum bone 8 29328 -UBERON:3000936 zonal element 6 29329 -UBERON:3000759 omosternum 7 29330 -UBERON:3000762 epicoracoid 7 29331 -UBERON:3010831 occipito-petrosal 6 29332 -UBERON:4400005 fin ray 6 29333 -UBERON:4300037 bony fin ray 7 29334 -UBERON:4000172 lepidotrichium 8 29335 -UBERON:4200075 fin spine 9 29336 -UBERON:4200070 median fin spine 10 29337 -UBERON:2002261 dorsal fin spine 11 29338 -UBERON:2001789 dorsal fin spine 1 12 29339 -UBERON:2001790 dorsal fin spine 2 12 29340 -UBERON:4300175 procumbent dorsal fin spine 12 29341 -UBERON:2002262 anal fin spine 11 29342 -UBERON:4300097 anal fin spine 1 12 29343 -UBERON:4300098 anal fin spine 2 12 29344 -UBERON:4500009 paired fin spine 10 29345 -UBERON:2001787 pectoral fin spine 11 29346 -UBERON:2002270 pelvic fin spine 11 29347 -UBERON:4440011 paired fin lepidotrichium 9 29348 -UBERON:4000173 pelvic fin lepidotrichium 10 29349 -UBERON:2002270 pelvic fin spine 11 29350 -UBERON:4300117 pelvic fin ray 11 29351 -UBERON:2001776 pelvic fin ray 1 12 29352 -UBERON:2001777 pelvic fin ray 2 12 29353 -UBERON:2001778 pelvic fin ray 3 12 29354 -UBERON:2001779 pelvic fin ray 4 12 29355 -UBERON:2001780 pelvic fin ray 5 12 29356 -UBERON:2001781 pelvic fin ray 6 12 29357 -UBERON:2001782 pelvic fin ray 7 12 29358 -UBERON:4300192 branched pelvic fin ray 12 29359 -UBERON:4500011 unbranched pelvic fin ray 12 29360 -UBERON:4000175 pectoral fin lepidotrichium 10 29361 -UBERON:2001787 pectoral fin spine 11 29362 -UBERON:4500007 pectoral fin ray 11 29363 -UBERON:2001761 pectoral fin ray 1 12 29364 -UBERON:2001762 pectoral fin ray 2 12 29365 -UBERON:2001763 pectoral fin ray 3 12 29366 -UBERON:2001764 pectoral fin ray 4 12 29367 -UBERON:2001765 pectoral fin ray 5 12 29368 -UBERON:2001766 pectoral fin ray 6 12 29369 -UBERON:2001767 pectoral fin ray 7 12 29370 -UBERON:2001993 branched pectoral fin ray 12 29371 -UBERON:4300103 rudimentary pectoral fin ray 12 29372 -UBERON:4500010 unbranched pectoral fin ray 12 29373 -UBERON:4500009 paired fin spine 10 29374 -UBERON:2001787 pectoral fin spine 11 29375 -UBERON:2002270 pelvic fin spine 11 29376 -UBERON:4500008 median fin lepidotrichium 9 29377 -UBERON:4000174 caudal fin lepidotrichium 10 29378 -UBERON:2001584 caudal procurrent ray 11 29379 -UBERON:2001829 caudal fin dorsal procurrent ray 12 29380 -UBERON:2001830 caudal fin ventral procurrent ray 12 29381 -UBERON:2002271 ventral caudal procurrent ray 2 13 29382 -UBERON:2002272 ventral caudal procurrent ray 1 13 29383 -UBERON:4300250 ventral caudal procurrent ray 3 13 29384 -UBERON:4300251 ventral caudal procurrent ray 4 13 29385 -UBERON:2001585 caudal principal ray 11 29386 -UBERON:2001713 caudal principal ray 1 12 29387 -UBERON:2001714 caudal principal ray 2 12 29388 -UBERON:2001715 caudal principal ray 3 12 29389 -UBERON:2001716 caudal principal ray 4 12 29390 -UBERON:2001717 caudal principal ray 5 12 29391 -UBERON:2001718 caudal principal ray 6 12 29392 -UBERON:2001719 caudal principal ray 7 12 29393 -UBERON:2001720 caudal principal ray 8 12 29394 -UBERON:2001721 caudal principal ray 9 12 29395 -UBERON:2001722 caudal principal ray 10 12 29396 -UBERON:2001723 caudal principal ray 11 12 29397 -UBERON:2001724 caudal principal ray 12 12 29398 -UBERON:2001725 caudal principal ray 13 12 29399 -UBERON:2001726 caudal principal ray 14 12 29400 -UBERON:2001727 caudal principal ray 15 12 29401 -UBERON:2001728 caudal principal ray 16 12 29402 -UBERON:2001729 caudal principal ray 17 12 29403 -UBERON:2001730 caudal principal ray 18 12 29404 -UBERON:2001731 caudal principal ray 19 12 29405 -UBERON:2002062 branched caudal fin ray 11 29406 -UBERON:4200009 hypochordal lepidotrichium 11 29407 -UBERON:4200062 epichordal lepidotrichium 11 29408 -UBERON:4000176 anal fin lepidotrichium 10 29409 -UBERON:2002262 anal fin spine 11 29410 -UBERON:4300097 anal fin spine 1 12 29411 -UBERON:4300098 anal fin spine 2 12 29412 -UBERON:4500006 anal fin ray 11 29413 -UBERON:2001769 anal fin ray 1 12 29414 -UBERON:2001770 anal fin ray 2 12 29415 -UBERON:2001771 anal fin ray 3 12 29416 -UBERON:2001772 anal fin ray 4 12 29417 -UBERON:2001773 anal fin ray 5 12 29418 -UBERON:2001774 anal fin ray 6 12 29419 -UBERON:2001775 anal fin ray 7 12 29420 -UBERON:2001992 branched anal fin ray 12 29421 -UBERON:4300193 unbranched anal fin ray 12 29422 -UBERON:4000177 dorsal fin lepidotrichium 10 29423 -UBERON:2002261 dorsal fin spine 11 29424 -UBERON:2001789 dorsal fin spine 1 12 29425 -UBERON:2001790 dorsal fin spine 2 12 29426 -UBERON:4300175 procumbent dorsal fin spine 12 29427 -UBERON:4300116 dorsal fin ray 11 29428 -UBERON:2001754 dorsal fin ray 1 12 29429 -UBERON:2001755 dorsal fin ray 2 12 29430 -UBERON:2001756 dorsal fin ray 3 12 29431 -UBERON:2001757 dorsal fin ray 4 12 29432 -UBERON:2001758 dorsal fin ray 5 12 29433 -UBERON:2001759 dorsal fin ray 6 12 29434 -UBERON:2001760 dorsal fin ray 7 12 29435 -UBERON:2001785 branched dorsal fin ray 12 29436 -UBERON:2001786 unbranched dorsal fin ray 12 29437 -UBERON:4200070 median fin spine 10 29438 -UBERON:2002261 dorsal fin spine 11 29439 -UBERON:2001789 dorsal fin spine 1 12 29440 -UBERON:2001790 dorsal fin spine 2 12 29441 -UBERON:4300175 procumbent dorsal fin spine 12 29442 -UBERON:2002262 anal fin spine 11 29443 -UBERON:4300097 anal fin spine 1 12 29444 -UBERON:4300098 anal fin spine 2 12 29445 -UBERON:4300274 adipose fin ray 10 29446 -UBERON:4400007 camptotrichium 8 29447 -UBERON:4400006 elastoidin fin ray 7 29448 -UBERON:2000089 actinotrichium 8 29449 -UBERON:2000052 dorsal actinotrichium 9 29450 -UBERON:2000078 ventral actinotrichium 9 29451 -UBERON:2000373 dorsal fin actinotrichium 9 29452 -UBERON:2000375 anal fin actinotrichium 9 29453 -UBERON:2000437 caudal fin actinotrichium 9 29454 -UBERON:2000460 adipose fin actinotrichium 9 29455 -UBERON:2000544 pectoral fin actinotrichium 9 29456 -UBERON:2000596 pelvic fin actinotrichium 9 29457 -UBERON:4400001 ceratotrichium 8 29458 -UBERON:4300101 dorsal fin ceratotrichial spine (elasmobranchs) 9 29459 -UBERON:0005057 immune organ 5 29460 -UBERON:0000029 lymph node 6 29461 -UBERON:0002429 cervical lymph node 7 29462 -UBERON:0004722 deep cervical lymph node 8 29463 -UBERON:0012310 deep lateral cervical lymph node 9 29464 -UBERON:0012311 deep anterior cervical lymph node 9 29465 -UBERON:0015869 retropharyngeal lymph node 10 29466 -UBERON:0004870 superficial cervical lymph node 8 29467 -UBERON:0012308 superficial lateral cervical lymph node 9 29468 -UBERON:0012309 superficial anterior cervical lymph node 9 29469 -UBERON:0012306 lateral cervical lymph node 8 29470 -UBERON:0012308 superficial lateral cervical lymph node 9 29471 -UBERON:0012310 deep lateral cervical lymph node 9 29472 -UBERON:0012307 anterior cervical lymph node 8 29473 -UBERON:0012309 superficial anterior cervical lymph node 9 29474 -UBERON:0012311 deep anterior cervical lymph node 9 29475 -UBERON:0015869 retropharyngeal lymph node 10 29476 -UBERON:0016382 prescapular lymph node 8 29477 -UBERON:0035279 supraclavicular lymph node 8 29478 -UBERON:0002507 abdominal lymph node 7 29479 -UBERON:0002526 lumbar lymph node 8 29480 -UBERON:0002527 pancreatic lymph node 8 29481 -UBERON:0015860 visceral abdominal lymph node 8 29482 -UBERON:0002508 celiac lymph node 9 29483 -UBERON:0002509 mesenteric lymph node 9 29484 -UBERON:0015859 hepatic lymph node 9 29485 -UBERON:0015863 gastric lymph node 9 29486 -UBERON:0015865 pancreaticosplenic lymph node 9 29487 -UBERON:0015866 pyloric lymph node 9 29488 -UBERON:0015867 cystic lymph node 9 29489 -UBERON:0015868 lymph node of epiploic foramen 9 29490 -UBERON:0016401 pancreaticoduodenal lymph node 9 29491 -UBERON:0016402 mesocolic lymph node 9 29492 -UBERON:0002525 brachial lymph node 7 29493 -UBERON:0002528 sacral lymph node 7 29494 -UBERON:0003425 renal lymph node 7 29495 -UBERON:0003968 peripheral lymph node 7 29496 -UBERON:0001097 axillary lymph node 8 29497 -UBERON:0001542 inguinal lymph node 8 29498 -UBERON:0009006 deep inguinal lymph node 9 29499 -UBERON:0015895 proximal deep inguinal lymph node 10 29500 -UBERON:0009007 superficial inguinal lymph node 9 29501 -UBERON:0001543 popliteal lymph node 8 29502 -UBERON:0002520 submandibular lymph node 8 29503 -UBERON:0004870 superficial cervical lymph node 8 29504 -UBERON:0012308 superficial lateral cervical lymph node 9 29505 -UBERON:0012309 superficial anterior cervical lymph node 9 29506 -UBERON:0007644 thoracic lymph node 7 29507 -UBERON:0002524 mediastinal lymph node 8 29508 -UBERON:0007643 node of ligamentum arteriosum 9 29509 -UBERON:0035520 anterior mediastinal lymph node 9 29510 -UBERON:0012236 intercostal lymph node 8 29511 -UBERON:0015472 tracheobronchial lymph node 8 29512 -UBERON:0035219 parasternal lymph node 8 29513 -UBERON:0015453 subcutaneous lymph node 7 29514 -UBERON:0015469 splenic lymph node 7 29515 -UBERON:0015870 lymph node of head 7 29516 -UBERON:0015857 parotid lymph node 8 29517 -UBERON:0015923 superficial parotid lymph node 9 29518 -UBERON:0016393 deep parotid lymph node 9 29519 -UBERON:0016394 anterior auricular lymph node 10 29520 -UBERON:0016395 infra-auricular lymph node 10 29521 -UBERON:0016396 intraglandular lymph node 10 29522 -UBERON:0015871 facial lymph node 8 29523 -UBERON:0015872 mandibular lymph node 9 29524 -UBERON:0015922 accessory mandibular lymph node 9 29525 -UBERON:0015926 cranial deep lymph node 8 29526 -UBERON:0016392 mastoid lymph node 8 29527 -UBERON:0016397 submental lymph node 8 29528 -UBERON:0035080 intraparotid lymph node 8 29529 -UBERON:0015925 superficial intraparotid lymph node 9 29530 -UBERON:0035079 deep intraparotid lymph node 9 29531 -UBERON:0035204 occipital lymph node 8 29532 -UBERON:0015876 pelvic lymph node 7 29533 -UBERON:0015877 parietal pelvic lymph node 8 29534 -UBERON:0015878 common iliac lymph node 9 29535 -UBERON:0015880 external iliac lymph node 9 29536 -UBERON:0035171 obturator lymph node 10 29537 -UBERON:0015881 internal iliac lymph node 9 29538 -UBERON:0015883 gluteal lymph node 9 29539 -UBERON:0015884 presymphysial lymph node 9 29540 -UBERON:0015917 superficial lymph node 7 29541 -UBERON:0004870 superficial cervical lymph node 8 29542 -UBERON:0012308 superficial lateral cervical lymph node 9 29543 -UBERON:0012309 superficial anterior cervical lymph node 9 29544 -UBERON:0009007 superficial inguinal lymph node 8 29545 -UBERON:0015923 superficial parotid lymph node 8 29546 -UBERON:0015925 superficial intraparotid lymph node 8 29547 -UBERON:0035162 infraclavicular lymph node 8 29548 -UBERON:0035204 occipital lymph node 8 29549 -UBERON:0015918 deep lymph node 7 29550 -UBERON:0004722 deep cervical lymph node 8 29551 -UBERON:0012310 deep lateral cervical lymph node 9 29552 -UBERON:0012311 deep anterior cervical lymph node 9 29553 -UBERON:0015869 retropharyngeal lymph node 10 29554 -UBERON:0016393 deep parotid lymph node 8 29555 -UBERON:0016394 anterior auricular lymph node 9 29556 -UBERON:0016395 infra-auricular lymph node 9 29557 -UBERON:0016396 intraglandular lymph node 9 29558 -UBERON:0016378 ileocolic lymph node 7 29559 -UBERON:0016386 paraaortic lymph node 7 29560 -UBERON:0016390 auricular lymph node 7 29561 -UBERON:0016391 thymic lymph node 7 29562 -UBERON:0016398 lymph node of lower limb 7 29563 -UBERON:0001543 popliteal lymph node 8 29564 -UBERON:0016374 sciatic lymph node 8 29565 -UBERON:0016399 lymph node of upper limb 7 29566 -UBERON:0016481 bronchial lymph node 7 29567 -UBERON:0035371 retroperitoneal lymph node 7 29568 -UBERON:0035764 pulmonary lymph node 7 29569 -UBERON:0035765 subsegmental lymph node 8 29570 -UBERON:0000040 Leydig's organ 6 29571 -UBERON:0002106 spleen 6 29572 -UBERON:0002370 thymus 6 29573 -UBERON:0009114 cervical thymus 7 29574 -UBERON:0018244 superficial cervical thymus 8 29575 -UBERON:0018245 deep cervical thymus 8 29576 -UBERON:0009115 thoracic thymus 7 29577 -UBERON:0009102 supraneural body 6 29578 -UBERON:0009116 thymoid 6 29579 -UBERON:0010014 epigonal organ 6 29580 -UBERON:0010266 arthropod hepatopancreas 6 29581 -UBERON:0010394 lymphocyte domain 6 29582 -UBERON:0010392 B cell domain 7 29583 -UBERON:0010416 lymph node B cell domain 8 29584 -UBERON:0010393 T cell domain 7 29585 -UBERON:0001960 periarterial lymphatic sheath 8 29586 -UBERON:0010387 Peyer's patch T cell area 8 29587 -UBERON:0010417 lymph node T cell domain 8 29588 -UBERON:0013119 haemal node 6 29589 -UBERON:0005174 dorsal region element 5 29590 -UBERON:0000351 nuchal ligament 6 29591 -UBERON:0000951 rotator muscle of the vertebral column 6 29592 -UBERON:0002240 spinal cord 6 29593 -UBERON:0002324 muscle of back 6 29594 -UBERON:0002252 splenius 7 29595 -UBERON:0000711 splenius capitis 8 29596 -UBERON:0008544 splenius cervicis 8 29597 -UBERON:0008242 lower back muscle 7 29598 -UBERON:0008243 upper back muscle 7 29599 -UBERON:0003292 meninx of spinal cord 6 29600 -UBERON:0002093 spinal dura mater 7 29601 -UBERON:0003555 spinal cord pia mater 7 29602 -UBERON:0003560 spinal cord arachnoid mater 7 29603 -UBERON:0004247 bone of dorsum 6 29604 -UBERON:0001094 sacral vertebra 7 29605 -UBERON:0004622 sacral vertebra 1 8 29606 -UBERON:0004623 sacral vertebra 2 8 29607 -UBERON:0004624 sacral vertebra 3 8 29608 -UBERON:0004625 sacral vertebra 4 8 29609 -UBERON:0001095 caudal vertebra 7 29610 -UBERON:2000734 preural vertebra 8 29611 -UBERON:2000557 preural 1 vertebra 9 29612 -UBERON:2000586 preural 2 vertebra 9 29613 -UBERON:2002112 preural 3 vertebra 9 29614 -UBERON:2002162 ural vertebra 8 29615 -UBERON:2001579 ural vertebra 2 9 29616 -UBERON:2002163 ural vertebra 1 9 29617 -UBERON:4300105 caudal vertebra 1 8 29618 -UBERON:0001350 coccyx 7 29619 -UBERON:0002347 thoracic vertebra 7 29620 -UBERON:0004626 thoracic vertebra 1 8 29621 -UBERON:0004627 thoracic vertebra 2 8 29622 -UBERON:0004628 thoracic vertebra 3 8 29623 -UBERON:0004629 thoracic vertebra 4 8 29624 -UBERON:0004630 thoracic vertebra 5 8 29625 -UBERON:0004631 thoracic vertebra 6 8 29626 -UBERON:0004632 thoracic vertebra 7 8 29627 -UBERON:0004633 thoracic vertebra 9 8 29628 -UBERON:0004634 thoracic vertebra 10 8 29629 -UBERON:0004635 thoracic vertebra 11 8 29630 -UBERON:0004636 thoracic vertebra 12 8 29631 -UBERON:0011050 thoracic vertebra 8 8 29632 -UBERON:0002413 cervical vertebra 7 29633 -UBERON:0004612 mammalian cervical vertebra 3 8 29634 -UBERON:0004613 mammalian cervical vertebra 4 8 29635 -UBERON:0004614 mammalian cervical vertebra 5 8 29636 -UBERON:0004615 mammalian cervical vertebra 6 8 29637 -UBERON:0004616 mammalian cervical vertebra 7 8 29638 -UBERON:0007800 proatlas 8 29639 -UBERON:0002414 lumbar vertebra 7 29640 -UBERON:0004617 lumbar vertebra 1 8 29641 -UBERON:0004618 lumbar vertebra 2 8 29642 -UBERON:0004619 lumbar vertebra 3 8 29643 -UBERON:0004620 lumbar vertebra 4 8 29644 -UBERON:0004621 lumbar vertebra 5 8 29645 -UBERON:0003690 fused sacrum 7 29646 -UBERON:0008433 lumbar vertebral arch 7 29647 -UBERON:0008434 cervical vertebral arch 7 29648 -UBERON:0008437 posterior arch of atlas 8 29649 -UBERON:0008435 vertebral arch of sacral segment 7 29650 -UBERON:0008436 thoracic vertebral arch 7 29651 -UBERON:0011665 carapace bone 7 29652 -UBERON:0011666 peripheral plate of carapace 8 29653 -UBERON:0011667 pleural plate of carapace 8 29654 -UBERON:0011669 neural plate of carapace 8 29655 -UBERON:0011670 pygal plate of carapace 8 29656 -UBERON:0011671 nuchal plate of carapace 8 29657 -UBERON:0011672 suprapygal plate of carapace 8 29658 -UBERON:0014708 costal plate of carapace 8 29659 -UBERON:0011677 trunk vertebra 7 29660 -UBERON:2000735 hemal postzygapophysis 7 29661 -UBERON:2001364 hemal spine 7 29662 -UBERON:2000364 hypural 8 29663 -UBERON:2001560 hypural 1 9 29664 -UBERON:2001561 hypural 2 9 29665 -UBERON:2001562 hypural 3 9 29666 -UBERON:2001563 hypural 4 9 29667 -UBERON:2001564 hypural 5 9 29668 -UBERON:2002056 hypural 6 9 29669 -UBERON:2002132 hypural 7 9 29670 -UBERON:4300248 fused hypural 1 and 2 9 29671 -UBERON:2000438 parhypural 8 29672 -UBERON:2001581 ural centrum 2 7 29673 -UBERON:2001672 dorsal fin radial bone 7 29674 -UBERON:2000936 dorsal fin distal radial bone 8 29675 -UBERON:2005372 dorsal fin distal radial bone 1 9 29676 -UBERON:2005373 dorsal fin distal radial bone 2 9 29677 -UBERON:2005374 dorsal fin distal radial bone 3 9 29678 -UBERON:2005375 dorsal fin distal radial bone 4 9 29679 -UBERON:2005376 dorsal fin distal radial bone 5 9 29680 -UBERON:2005377 dorsal fin distal radial bone 6 9 29681 -UBERON:2005378 dorsal fin distal radial bone 7 9 29682 -UBERON:2005379 dorsal fin distal radial bone 8 9 29683 -UBERON:2000947 dorsal fin proximal radial bone 8 29684 -UBERON:2001818 dorsal fin proximal radial bone 1 9 29685 -UBERON:2001819 dorsal fin proximal radial bone 2 9 29686 -UBERON:2005380 dorsal fin proximal radial bone 3 9 29687 -UBERON:2005381 dorsal fin proximal radial bone 4 9 29688 -UBERON:2005382 dorsal fin proximal radial bone 5 9 29689 -UBERON:2005383 dorsal fin proximal radial bone 6 9 29690 -UBERON:2005384 dorsal fin proximal radial bone 7 9 29691 -UBERON:2005385 dorsal fin proximal radial bone 8 9 29692 -UBERON:2001613 dorsal fin middle radial bone 8 29693 -UBERON:2001699 dorsal-fin stay 7 29694 -UBERON:2001817 middle nuchal plate 7 29695 -UBERON:2001820 posterior nuchal plate 7 29696 -UBERON:2002065 ural centrum 1 7 29697 -UBERON:2007005 hemal prezygapophysis 7 29698 -UBERON:4000177 dorsal fin lepidotrichium 7 29699 -UBERON:2002261 dorsal fin spine 8 29700 -UBERON:2001789 dorsal fin spine 1 9 29701 -UBERON:2001790 dorsal fin spine 2 9 29702 -UBERON:4300175 procumbent dorsal fin spine 9 29703 -UBERON:4300116 dorsal fin ray 8 29704 -UBERON:2001754 dorsal fin ray 1 9 29705 -UBERON:2001755 dorsal fin ray 2 9 29706 -UBERON:2001756 dorsal fin ray 3 9 29707 -UBERON:2001757 dorsal fin ray 4 9 29708 -UBERON:2001758 dorsal fin ray 5 9 29709 -UBERON:2001759 dorsal fin ray 6 9 29710 -UBERON:2001760 dorsal fin ray 7 9 29711 -UBERON:2001785 branched dorsal fin ray 9 29712 -UBERON:2001786 unbranched dorsal fin ray 9 29713 -UBERON:0006065 hemal arch 6 29714 -UBERON:0007252 intervertebral disk of cervical vertebra 6 29715 -UBERON:0007260 intervertebral disk of third cervical vertebra 7 29716 -UBERON:0007261 intervertebral disk of fourth cervical vertebra 7 29717 -UBERON:0007262 intervertebral disk of fifth cervical vertebra 7 29718 -UBERON:0007263 intervertebral disk of sixth cervical vertebra 7 29719 -UBERON:0007264 intervertebral disk of seventh cervical vertebra 7 29720 -UBERON:0007265 intervertebral disk of axis 7 29721 -UBERON:0007266 intervertebral disk of atlas 7 29722 -UBERON:0007254 intervertebral disk of thoracic vertebra 6 29723 -UBERON:0007255 intervertebral disk of lumbar vertebra 6 29724 -UBERON:0007257 intervertebral disk of sacral vertebra 6 29725 -UBERON:0011106 cruciate ligament of atlas 6 29726 -UBERON:0011359 urophysis 6 29727 -UBERON:0011376 iliothoracic muscle 6 29728 -UBERON:0011377 femorothoracic muscle 6 29729 -UBERON:0015007 cervical vertebra endochondral element 6 29730 -UBERON:0002413 cervical vertebra 7 29731 -UBERON:0004612 mammalian cervical vertebra 3 8 29732 -UBERON:0004613 mammalian cervical vertebra 4 8 29733 -UBERON:0004614 mammalian cervical vertebra 5 8 29734 -UBERON:0004615 mammalian cervical vertebra 6 8 29735 -UBERON:0004616 mammalian cervical vertebra 7 8 29736 -UBERON:0007800 proatlas 8 29737 -UBERON:0013505 cervical vertebra cartilage element 7 29738 -UBERON:0013506 cervical vertebra pre-cartilage condensation 7 29739 -UBERON:0015008 thoracic vertebra endochondral element 6 29740 -UBERON:0002347 thoracic vertebra 7 29741 -UBERON:0004626 thoracic vertebra 1 8 29742 -UBERON:0004627 thoracic vertebra 2 8 29743 -UBERON:0004628 thoracic vertebra 3 8 29744 -UBERON:0004629 thoracic vertebra 4 8 29745 -UBERON:0004630 thoracic vertebra 5 8 29746 -UBERON:0004631 thoracic vertebra 6 8 29747 -UBERON:0004632 thoracic vertebra 7 8 29748 -UBERON:0004633 thoracic vertebra 9 8 29749 -UBERON:0004634 thoracic vertebra 10 8 29750 -UBERON:0004635 thoracic vertebra 11 8 29751 -UBERON:0004636 thoracic vertebra 12 8 29752 -UBERON:0011050 thoracic vertebra 8 8 29753 -UBERON:0013507 thoracic vertebra cartilage element 7 29754 -UBERON:0013508 thoracic vertebra pre-cartilage condensation 7 29755 -UBERON:0015009 lumbar vertebra endochondral element 6 29756 -UBERON:0002414 lumbar vertebra 7 29757 -UBERON:0004617 lumbar vertebra 1 8 29758 -UBERON:0004618 lumbar vertebra 2 8 29759 -UBERON:0004619 lumbar vertebra 3 8 29760 -UBERON:0004620 lumbar vertebra 4 8 29761 -UBERON:0004621 lumbar vertebra 5 8 29762 -UBERON:0013509 lumbar vertebra cartilage element 7 29763 -UBERON:0013510 lumbar vertebra pre-cartilage condensation 7 29764 -UBERON:0015010 sacral vertebra endochondral element 6 29765 -UBERON:0001094 sacral vertebra 7 29766 -UBERON:0004622 sacral vertebra 1 8 29767 -UBERON:0004623 sacral vertebra 2 8 29768 -UBERON:0004624 sacral vertebra 3 8 29769 -UBERON:0004625 sacral vertebra 4 8 29770 -UBERON:0010744 sacral vertebra pre-cartilage condensation 7 29771 -UBERON:0010745 sacral vertebra cartilage element 7 29772 -UBERON:0018142 caudal vertebra endochondral element 6 29773 -UBERON:0001095 caudal vertebra 7 29774 -UBERON:2000734 preural vertebra 8 29775 -UBERON:2000557 preural 1 vertebra 9 29776 -UBERON:2000586 preural 2 vertebra 9 29777 -UBERON:2002112 preural 3 vertebra 9 29778 -UBERON:2002162 ural vertebra 8 29779 -UBERON:2001579 ural vertebra 2 9 29780 -UBERON:2002163 ural vertebra 1 9 29781 -UBERON:4300105 caudal vertebra 1 8 29782 -UBERON:0013503 caudal vertebra cartilage element 7 29783 -UBERON:0013504 caudal vertebra pre-cartilage condensation 7 29784 -UBERON:2000373 dorsal fin actinotrichium 6 29785 -UBERON:2101672 dorsal fin radial element 6 29786 -UBERON:2001672 dorsal fin radial bone 7 29787 -UBERON:2000936 dorsal fin distal radial bone 8 29788 -UBERON:2005372 dorsal fin distal radial bone 1 9 29789 -UBERON:2005373 dorsal fin distal radial bone 2 9 29790 -UBERON:2005374 dorsal fin distal radial bone 3 9 29791 -UBERON:2005375 dorsal fin distal radial bone 4 9 29792 -UBERON:2005376 dorsal fin distal radial bone 5 9 29793 -UBERON:2005377 dorsal fin distal radial bone 6 9 29794 -UBERON:2005378 dorsal fin distal radial bone 7 9 29795 -UBERON:2005379 dorsal fin distal radial bone 8 9 29796 -UBERON:2000947 dorsal fin proximal radial bone 8 29797 -UBERON:2001818 dorsal fin proximal radial bone 1 9 29798 -UBERON:2001819 dorsal fin proximal radial bone 2 9 29799 -UBERON:2005380 dorsal fin proximal radial bone 3 9 29800 -UBERON:2005381 dorsal fin proximal radial bone 4 9 29801 -UBERON:2005382 dorsal fin proximal radial bone 5 9 29802 -UBERON:2005383 dorsal fin proximal radial bone 6 9 29803 -UBERON:2005384 dorsal fin proximal radial bone 7 9 29804 -UBERON:2005385 dorsal fin proximal radial bone 8 9 29805 -UBERON:2001613 dorsal fin middle radial bone 8 29806 -UBERON:2100936 dorsal fin distal radial element 7 29807 -UBERON:2000936 dorsal fin distal radial bone 8 29808 -UBERON:2005372 dorsal fin distal radial bone 1 9 29809 -UBERON:2005373 dorsal fin distal radial bone 2 9 29810 -UBERON:2005374 dorsal fin distal radial bone 3 9 29811 -UBERON:2005375 dorsal fin distal radial bone 4 9 29812 -UBERON:2005376 dorsal fin distal radial bone 5 9 29813 -UBERON:2005377 dorsal fin distal radial bone 6 9 29814 -UBERON:2005378 dorsal fin distal radial bone 7 9 29815 -UBERON:2005379 dorsal fin distal radial bone 8 9 29816 -UBERON:2105372 dorsal fin distal radial element 1 8 29817 -UBERON:2005372 dorsal fin distal radial bone 1 9 29818 -UBERON:2205372 dorsal fin distal radial cartilage 1 9 29819 -UBERON:2105373 dorsal fin distal radial element 2 8 29820 -UBERON:2005373 dorsal fin distal radial bone 2 9 29821 -UBERON:2205373 dorsal fin distal radial cartilage 2 9 29822 -UBERON:2105374 dorsal fin distal radial element 3 8 29823 -UBERON:2005374 dorsal fin distal radial bone 3 9 29824 -UBERON:2205374 dorsal fin distal radial cartilage 3 9 29825 -UBERON:2105375 dorsal fin distal radial element 4 8 29826 -UBERON:2005375 dorsal fin distal radial bone 4 9 29827 -UBERON:2205375 dorsal fin distal radial cartilage 4 9 29828 -UBERON:2105376 dorsal fin distal radial element 5 8 29829 -UBERON:2005376 dorsal fin distal radial bone 5 9 29830 -UBERON:2205376 dorsal fin distal radial cartilage 5 9 29831 -UBERON:2105377 dorsal fin distal radial element 6 8 29832 -UBERON:2005377 dorsal fin distal radial bone 6 9 29833 -UBERON:2205377 dorsal fin distal radial cartilage 6 9 29834 -UBERON:2105378 dorsal fin distal radial element 7 8 29835 -UBERON:2005378 dorsal fin distal radial bone 7 9 29836 -UBERON:2205378 dorsal fin distal radial cartilage 7 9 29837 -UBERON:2105379 dorsal fin distal radial element 8 8 29838 -UBERON:2005379 dorsal fin distal radial bone 8 9 29839 -UBERON:2205379 dorsal fin distal radial cartilage 8 9 29840 -UBERON:2200936 dorsal fin distal radial cartilage 8 29841 -UBERON:2205372 dorsal fin distal radial cartilage 1 9 29842 -UBERON:2205373 dorsal fin distal radial cartilage 2 9 29843 -UBERON:2205374 dorsal fin distal radial cartilage 3 9 29844 -UBERON:2205375 dorsal fin distal radial cartilage 4 9 29845 -UBERON:2205376 dorsal fin distal radial cartilage 5 9 29846 -UBERON:2205377 dorsal fin distal radial cartilage 6 9 29847 -UBERON:2205378 dorsal fin distal radial cartilage 7 9 29848 -UBERON:2205379 dorsal fin distal radial cartilage 8 9 29849 -UBERON:2100947 dorsal fin proximal radial element 7 29850 -UBERON:2000947 dorsal fin proximal radial bone 8 29851 -UBERON:2001818 dorsal fin proximal radial bone 1 9 29852 -UBERON:2001819 dorsal fin proximal radial bone 2 9 29853 -UBERON:2005380 dorsal fin proximal radial bone 3 9 29854 -UBERON:2005381 dorsal fin proximal radial bone 4 9 29855 -UBERON:2005382 dorsal fin proximal radial bone 5 9 29856 -UBERON:2005383 dorsal fin proximal radial bone 6 9 29857 -UBERON:2005384 dorsal fin proximal radial bone 7 9 29858 -UBERON:2005385 dorsal fin proximal radial bone 8 9 29859 -UBERON:2101818 dorsal fin proximal radial element 1 8 29860 -UBERON:2001818 dorsal fin proximal radial bone 1 9 29861 -UBERON:2201818 dorsal fin proximal radial cartilage 1 9 29862 -UBERON:2101819 dorsal fin proximal radial element 2 8 29863 -UBERON:2001819 dorsal fin proximal radial bone 2 9 29864 -UBERON:2201819 dorsal fin proximal radial cartilage 2 9 29865 -UBERON:2105380 dorsal fin proximal radial element 3 8 29866 -UBERON:2005380 dorsal fin proximal radial bone 3 9 29867 -UBERON:2205380 dorsal fin proximal radial cartilage 3 9 29868 -UBERON:2105381 dorsal fin proximal radial element 4 8 29869 -UBERON:2005381 dorsal fin proximal radial bone 4 9 29870 -UBERON:2205381 dorsal fin proximal radial cartilage 4 9 29871 -UBERON:2105382 dorsal fin proximal radial element 5 8 29872 -UBERON:2005382 dorsal fin proximal radial bone 5 9 29873 -UBERON:2205382 dorsal fin proximal radial cartilage 5 9 29874 -UBERON:2105383 dorsal fin proximal radial element 6 8 29875 -UBERON:2005383 dorsal fin proximal radial bone 6 9 29876 -UBERON:2205383 dorsal fin proximal radial cartilage 6 9 29877 -UBERON:2105384 dorsal fin proximal radial element 7 8 29878 -UBERON:2005384 dorsal fin proximal radial bone 7 9 29879 -UBERON:2205384 dorsal fin proximal radial cartilage 7 9 29880 -UBERON:2105385 dorsal fin proximal radial element 8 8 29881 -UBERON:2005385 dorsal fin proximal radial bone 8 9 29882 -UBERON:2205385 dorsal fin proximal radial cartilage 8 9 29883 -UBERON:2200947 dorsal fin proximal radial cartilage 8 29884 -UBERON:2201818 dorsal fin proximal radial cartilage 1 9 29885 -UBERON:2201819 dorsal fin proximal radial cartilage 2 9 29886 -UBERON:2205380 dorsal fin proximal radial cartilage 3 9 29887 -UBERON:2205381 dorsal fin proximal radial cartilage 4 9 29888 -UBERON:2205382 dorsal fin proximal radial cartilage 5 9 29889 -UBERON:2205383 dorsal fin proximal radial cartilage 6 9 29890 -UBERON:2205384 dorsal fin proximal radial cartilage 7 9 29891 -UBERON:2205385 dorsal fin proximal radial cartilage 8 9 29892 -UBERON:2101613 dorsal fin middle radial element 7 29893 -UBERON:2001613 dorsal fin middle radial bone 8 29894 -UBERON:2201613 dorsal fin middle radial cartilage 8 29895 -UBERON:2201672 dorsal fin radial cartilage 7 29896 -UBERON:2200936 dorsal fin distal radial cartilage 8 29897 -UBERON:2205372 dorsal fin distal radial cartilage 1 9 29898 -UBERON:2205373 dorsal fin distal radial cartilage 2 9 29899 -UBERON:2205374 dorsal fin distal radial cartilage 3 9 29900 -UBERON:2205375 dorsal fin distal radial cartilage 4 9 29901 -UBERON:2205376 dorsal fin distal radial cartilage 5 9 29902 -UBERON:2205377 dorsal fin distal radial cartilage 6 9 29903 -UBERON:2205378 dorsal fin distal radial cartilage 7 9 29904 -UBERON:2205379 dorsal fin distal radial cartilage 8 9 29905 -UBERON:2200947 dorsal fin proximal radial cartilage 8 29906 -UBERON:2201818 dorsal fin proximal radial cartilage 1 9 29907 -UBERON:2201819 dorsal fin proximal radial cartilage 2 9 29908 -UBERON:2205380 dorsal fin proximal radial cartilage 3 9 29909 -UBERON:2205381 dorsal fin proximal radial cartilage 4 9 29910 -UBERON:2205382 dorsal fin proximal radial cartilage 5 9 29911 -UBERON:2205383 dorsal fin proximal radial cartilage 6 9 29912 -UBERON:2205384 dorsal fin proximal radial cartilage 7 9 29913 -UBERON:2205385 dorsal fin proximal radial cartilage 8 9 29914 -UBERON:2201613 dorsal fin middle radial cartilage 8 29915 -UBERON:4300019 dorsal fin basal cartilage (elasmobranchs) 6 29916 -UBERON:4300032 posterior dorsal fin basal cartilage (elasmobranchs) 6 29917 -UBERON:4300033 anterior dorsal fin basal cartilage (elasmobranchs) 6 29918 -UBERON:4300101 dorsal fin ceratotrichial spine (elasmobranchs) 6 29919 -UBERON:0005177 trunk region element 5 29920 -UBERON:0000017 exocrine pancreas 6 29921 -UBERON:0001774 skeletal muscle of trunk 6 29922 -UBERON:0002324 muscle of back 7 29923 -UBERON:0002252 splenius 8 29924 -UBERON:0000711 splenius capitis 9 29925 -UBERON:0008544 splenius cervicis 9 29926 -UBERON:0008242 lower back muscle 8 29927 -UBERON:0008243 upper back muscle 8 29928 -UBERON:0003830 thoracic segment muscle 7 29929 -UBERON:0001103 diaphragm 8 29930 -UBERON:0001126 serratus dorsalis superior muscle 8 29931 -UBERON:0001495 pectoral muscle 8 29932 -UBERON:0001100 pectoralis minor 9 29933 -UBERON:0002381 pectoralis major 9 29934 -UBERON:0008779 subclavius 9 29935 -UBERON:0014837 pectoantebrachialis 9 29936 -UBERON:0014838 xiphihumeralis 9 29937 -UBERON:0002426 chest muscle 8 29938 -UBERON:0002404 transversus thoracis 9 29939 -UBERON:0008618 subcostal muscle 9 29940 -UBERON:0008243 upper back muscle 8 29941 -UBERON:0036071 diaphragmaticus muscle 8 29942 -UBERON:0003833 abdominal segment muscle 7 29943 -UBERON:0001325 muscle of pelvis 8 29944 -UBERON:0001326 levator ani muscle 9 29945 -UBERON:0001327 coccygeus muscle 9 29946 -UBERON:0001497 muscle of pelvic girdle 9 29947 -UBERON:0001369 iliacus muscle 10 29948 -UBERON:0002000 gluteal muscle 10 29949 -UBERON:0001370 gluteus maximus 11 29950 -UBERON:0001371 gluteus medius 11 29951 -UBERON:0001376 tensor fasciae latae muscle 11 29952 -UBERON:0008521 gluteus minimus 11 29953 -UBERON:0008529 piriformis muscle 11 29954 -UBERON:0008537 quadratus femoris 11 29955 -UBERON:0011043 obturator muscle 11 29956 -UBERON:0001368 obturator externus 12 29957 -UBERON:0011048 obturator internus 12 29958 -UBERON:0002379 perineal muscle 9 29959 -UBERON:0001339 ischiocavernosus muscle 10 29960 -UBERON:0004519 muscle of anal triangle 10 29961 -UBERON:0011389 bulbospongiosus muscle 10 29962 -UBERON:0011387 constrictor vulvae muscle 11 29963 -UBERON:0011388 male bulbospongiosus muscle 11 29964 -UBERON:0014458 female bulbospongiosus muscle 11 29965 -UBERON:0008612 muscle of pelvic diaphragm 9 29966 -UBERON:0011511 iliococcygeus muscle 9 29967 -UBERON:0011512 puborectalis muscle 9 29968 -UBERON:0011528 pubococcygeus muscle 9 29969 -UBERON:0011531 male pubococcygeus muscle 10 29970 -UBERON:0011532 female pubococcygeus muscle 10 29971 -UBERON:0011645 iliofemoralis muscle 9 29972 -UBERON:0001370 gluteus maximus 10 29973 -UBERON:4200122 pubotibialis 9 29974 -UBERON:0002378 muscle of abdomen 8 29975 -UBERON:0001220 quadratus lumborum 9 29976 -UBERON:0002461 anterior abdominal wall muscle 9 29977 -UBERON:0001221 transversus abdominis muscle 10 29978 -UBERON:0002382 rectus abdominis muscle 10 29979 -UBERON:0011016 pyramidalis 10 29980 -UBERON:0035032 abdominal oblique muscle 10 29981 -UBERON:0005442 abdominal external oblique muscle 11 29982 -UBERON:0005454 abdominal internal oblique muscle 11 29983 -UBERON:3010790 muscle rectus abdominis superficialis 10 29984 -UBERON:3010792 musculus rectus abdominis profundus 10 29985 -UBERON:0008242 lower back muscle 8 29986 -UBERON:0004138 somitomeric trunk muscle 7 29987 -UBERON:2000216 infracarinalis 7 29988 -UBERON:2000286 superficial lateralis (teleost) 7 29989 -UBERON:2000288 supracarinalis 7 29990 -UBERON:2000349 epaxialis 7 29991 -UBERON:2000362 hypaxialis 7 29992 -UBERON:0002075 viscus 6 29993 -UBERON:0001255 urinary bladder 7 29994 -UBERON:0001264 pancreas 7 29995 -UBERON:0005178 thoracic cavity element 7 29996 -UBERON:0000040 Leydig's organ 8 29997 -UBERON:0001043 esophagus 8 29998 -UBERON:0001121 longus colli muscle 8 29999 -UBERON:0002048 lung 8 30000 -UBERON:0002167 right lung 9 30001 -UBERON:0002168 left lung 9 30002 -UBERON:0002524 mediastinal lymph node 8 30003 -UBERON:0007643 node of ligamentum arteriosum 9 30004 -UBERON:0035520 anterior mediastinal lymph node 9 30005 -UBERON:0008989 submocosal esophageal gland 8 30006 -UBERON:0009115 thoracic thymus 8 30007 -UBERON:0015410 heart plus pericardium 8 30008 -UBERON:0015472 tracheobronchial lymph node 8 30009 -UBERON:0006860 swim bladder 7 30010 -UBERON:0013119 haemal node 7 30011 -UBERON:0017672 abdominal viscera 7 30012 -UBERON:0002106 spleen 8 30013 -UBERON:0002110 gall bladder 8 30014 -UBERON:0016401 pancreaticoduodenal lymph node 8 30015 -UBERON:0035371 retroperitoneal lymph node 7 30016 -UBERON:0035820 peritoneal sac 7 30017 -UBERON:0003463 trunk bone 6 30018 -UBERON:0003827 thoracic segment bone 7 30019 -UBERON:0002208 sternebra 8 30020 -UBERON:0002347 thoracic vertebra 8 30021 -UBERON:0004626 thoracic vertebra 1 9 30022 -UBERON:0004627 thoracic vertebra 2 9 30023 -UBERON:0004628 thoracic vertebra 3 9 30024 -UBERON:0004629 thoracic vertebra 4 9 30025 -UBERON:0004630 thoracic vertebra 5 9 30026 -UBERON:0004631 thoracic vertebra 6 9 30027 -UBERON:0004632 thoracic vertebra 7 9 30028 -UBERON:0004633 thoracic vertebra 9 9 30029 -UBERON:0004634 thoracic vertebra 10 9 30030 -UBERON:0004635 thoracic vertebra 11 9 30031 -UBERON:0004636 thoracic vertebra 12 9 30032 -UBERON:0011050 thoracic vertebra 8 9 30033 -UBERON:0003459 chest bone 8 30034 -UBERON:0008436 thoracic vertebral arch 8 30035 -UBERON:0003828 abdominal segment bone 7 30036 -UBERON:0001094 sacral vertebra 8 30037 -UBERON:0004622 sacral vertebra 1 9 30038 -UBERON:0004623 sacral vertebra 2 9 30039 -UBERON:0004624 sacral vertebra 3 9 30040 -UBERON:0004625 sacral vertebra 4 9 30041 -UBERON:0002414 lumbar vertebra 8 30042 -UBERON:0004617 lumbar vertebra 1 9 30043 -UBERON:0004618 lumbar vertebra 2 9 30044 -UBERON:0004619 lumbar vertebra 3 9 30045 -UBERON:0004620 lumbar vertebra 4 9 30046 -UBERON:0004621 lumbar vertebra 5 9 30047 -UBERON:0003690 fused sacrum 8 30048 -UBERON:0007830 pelvic girdle bone/zone 8 30049 -UBERON:0001272 innominate bone 9 30050 -UBERON:0001273 ilium 9 30051 -UBERON:4200220 iliac ramus 10 30052 -UBERON:0001274 ischium 9 30053 -UBERON:0001275 pubis 9 30054 -UBERON:0013204 epipubic bone 9 30055 -UBERON:2000623 basipterygium bone 9 30056 -UBERON:0008433 lumbar vertebral arch 8 30057 -UBERON:0008435 vertebral arch of sacral segment 8 30058 -UBERON:0010898 gastralium 8 30059 -UBERON:0012179 bone of pelvis 8 30060 -UBERON:4300128 sacral rib 8 30061 -UBERON:0011677 trunk vertebra 7 30062 -UBERON:0005173 abdominal segment element 6 30063 -UBERON:0001542 inguinal lymph node 7 30064 -UBERON:0009006 deep inguinal lymph node 8 30065 -UBERON:0015895 proximal deep inguinal lymph node 9 30066 -UBERON:0009007 superficial inguinal lymph node 8 30067 -UBERON:0003828 abdominal segment bone 7 30068 -UBERON:0001094 sacral vertebra 8 30069 -UBERON:0004622 sacral vertebra 1 9 30070 -UBERON:0004623 sacral vertebra 2 9 30071 -UBERON:0004624 sacral vertebra 3 9 30072 -UBERON:0004625 sacral vertebra 4 9 30073 -UBERON:0002414 lumbar vertebra 8 30074 -UBERON:0004617 lumbar vertebra 1 9 30075 -UBERON:0004618 lumbar vertebra 2 9 30076 -UBERON:0004619 lumbar vertebra 3 9 30077 -UBERON:0004620 lumbar vertebra 4 9 30078 -UBERON:0004621 lumbar vertebra 5 9 30079 -UBERON:0003690 fused sacrum 8 30080 -UBERON:0007830 pelvic girdle bone/zone 8 30081 -UBERON:0001272 innominate bone 9 30082 -UBERON:0001273 ilium 9 30083 -UBERON:4200220 iliac ramus 10 30084 -UBERON:0001274 ischium 9 30085 -UBERON:0001275 pubis 9 30086 -UBERON:0013204 epipubic bone 9 30087 -UBERON:2000623 basipterygium bone 9 30088 -UBERON:0008433 lumbar vertebral arch 8 30089 -UBERON:0008435 vertebral arch of sacral segment 8 30090 -UBERON:0010898 gastralium 8 30091 -UBERON:0012179 bone of pelvis 8 30092 -UBERON:4300128 sacral rib 8 30093 -UBERON:0003833 abdominal segment muscle 7 30094 -UBERON:0001325 muscle of pelvis 8 30095 -UBERON:0001326 levator ani muscle 9 30096 -UBERON:0001327 coccygeus muscle 9 30097 -UBERON:0001497 muscle of pelvic girdle 9 30098 -UBERON:0001369 iliacus muscle 10 30099 -UBERON:0002000 gluteal muscle 10 30100 -UBERON:0001370 gluteus maximus 11 30101 -UBERON:0001371 gluteus medius 11 30102 -UBERON:0001376 tensor fasciae latae muscle 11 30103 -UBERON:0008521 gluteus minimus 11 30104 -UBERON:0008529 piriformis muscle 11 30105 -UBERON:0008537 quadratus femoris 11 30106 -UBERON:0011043 obturator muscle 11 30107 -UBERON:0001368 obturator externus 12 30108 -UBERON:0011048 obturator internus 12 30109 -UBERON:0002379 perineal muscle 9 30110 -UBERON:0001339 ischiocavernosus muscle 10 30111 -UBERON:0004519 muscle of anal triangle 10 30112 -UBERON:0011389 bulbospongiosus muscle 10 30113 -UBERON:0011387 constrictor vulvae muscle 11 30114 -UBERON:0011388 male bulbospongiosus muscle 11 30115 -UBERON:0014458 female bulbospongiosus muscle 11 30116 -UBERON:0008612 muscle of pelvic diaphragm 9 30117 -UBERON:0011511 iliococcygeus muscle 9 30118 -UBERON:0011512 puborectalis muscle 9 30119 -UBERON:0011528 pubococcygeus muscle 9 30120 -UBERON:0011531 male pubococcygeus muscle 10 30121 -UBERON:0011532 female pubococcygeus muscle 10 30122 -UBERON:0011645 iliofemoralis muscle 9 30123 -UBERON:0001370 gluteus maximus 10 30124 -UBERON:4200122 pubotibialis 9 30125 -UBERON:0002378 muscle of abdomen 8 30126 -UBERON:0001220 quadratus lumborum 9 30127 -UBERON:0002461 anterior abdominal wall muscle 9 30128 -UBERON:0001221 transversus abdominis muscle 10 30129 -UBERON:0002382 rectus abdominis muscle 10 30130 -UBERON:0011016 pyramidalis 10 30131 -UBERON:0035032 abdominal oblique muscle 10 30132 -UBERON:0005442 abdominal external oblique muscle 11 30133 -UBERON:0005454 abdominal internal oblique muscle 11 30134 -UBERON:3010790 muscle rectus abdominis superficialis 10 30135 -UBERON:3010792 musculus rectus abdominis profundus 10 30136 -UBERON:0008242 lower back muscle 8 30137 -UBERON:0005172 abdomen element 7 30138 -UBERON:0001960 periarterial lymphatic sheath 8 30139 -UBERON:0002107 liver 8 30140 -UBERON:0002113 kidney 8 30141 -UBERON:0000080 mesonephros 9 30142 -UBERON:0000081 metanephros 9 30143 -UBERON:0000082 adult mammalian kidney 9 30144 -UBERON:0002120 pronephros 9 30145 -UBERON:0004538 left kidney 9 30146 -UBERON:0004539 right kidney 9 30147 -UBERON:0002369 adrenal gland 8 30148 -UBERON:0001233 right adrenal gland 9 30149 -UBERON:0001234 left adrenal gland 9 30150 -UBERON:0002378 muscle of abdomen 8 30151 -UBERON:0001220 quadratus lumborum 9 30152 -UBERON:0002461 anterior abdominal wall muscle 9 30153 -UBERON:0001221 transversus abdominis muscle 10 30154 -UBERON:0002382 rectus abdominis muscle 10 30155 -UBERON:0011016 pyramidalis 10 30156 -UBERON:0035032 abdominal oblique muscle 10 30157 -UBERON:0005442 abdominal external oblique muscle 11 30158 -UBERON:0005454 abdominal internal oblique muscle 11 30159 -UBERON:3010790 muscle rectus abdominis superficialis 10 30160 -UBERON:3010792 musculus rectus abdominis profundus 10 30161 -UBERON:0002507 abdominal lymph node 8 30162 -UBERON:0002526 lumbar lymph node 9 30163 -UBERON:0002527 pancreatic lymph node 9 30164 -UBERON:0015860 visceral abdominal lymph node 9 30165 -UBERON:0002508 celiac lymph node 10 30166 -UBERON:0002509 mesenteric lymph node 10 30167 -UBERON:0015859 hepatic lymph node 10 30168 -UBERON:0015863 gastric lymph node 10 30169 -UBERON:0015865 pancreaticosplenic lymph node 10 30170 -UBERON:0015866 pyloric lymph node 10 30171 -UBERON:0015867 cystic lymph node 10 30172 -UBERON:0015868 lymph node of epiploic foramen 10 30173 -UBERON:0016401 pancreaticoduodenal lymph node 10 30174 -UBERON:0016402 mesocolic lymph node 10 30175 -UBERON:0003488 abdominal mammary gland 8 30176 -UBERON:0004346 gubernaculum (male or female) 8 30177 -UBERON:0008843 gubernaculum testis 9 30178 -UBERON:0008844 gubernaculum (female) 9 30179 -UBERON:0004686 gastro-splenic ligament 8 30180 -UBERON:0004687 lieno-renal ligament 8 30181 -UBERON:0006204 inguinal ligament 8 30182 -UBERON:0006856 interrenal gland 8 30183 -UBERON:0007132 head kidney 8 30184 -UBERON:0010898 gastralium 8 30185 -UBERON:0012471 hepatogastric ligament 8 30186 -UBERON:0012472 hepatoduodenal ligament 8 30187 -UBERON:0013139 ligament of liver 8 30188 -UBERON:0001247 falciform ligament 9 30189 -UBERON:0006588 round ligament of liver 9 30190 -UBERON:0013138 coronary ligament of liver 9 30191 -UBERON:0017672 abdominal viscera 8 30192 -UBERON:0002106 spleen 9 30193 -UBERON:0002110 gall bladder 9 30194 -UBERON:0016401 pancreaticoduodenal lymph node 9 30195 -UBERON:0035444 triangular ligament of liver 8 30196 -UBERON:0035498 gastrophrenic ligament 8 30197 -UBERON:2001200 corpuscles of Stannius 8 30198 -UBERON:2001293 posterior kidney 8 30199 -UBERON:0005179 pelvic region element 7 30200 -UBERON:0000056 ureter 8 30201 -UBERON:0001222 right ureter 9 30202 -UBERON:0001223 left ureter 9 30203 -UBERON:0001325 muscle of pelvis 8 30204 -UBERON:0001326 levator ani muscle 9 30205 -UBERON:0001327 coccygeus muscle 9 30206 -UBERON:0001497 muscle of pelvic girdle 9 30207 -UBERON:0001369 iliacus muscle 10 30208 -UBERON:0002000 gluteal muscle 10 30209 -UBERON:0001370 gluteus maximus 11 30210 -UBERON:0001371 gluteus medius 11 30211 -UBERON:0001376 tensor fasciae latae muscle 11 30212 -UBERON:0008521 gluteus minimus 11 30213 -UBERON:0008529 piriformis muscle 11 30214 -UBERON:0008537 quadratus femoris 11 30215 -UBERON:0011043 obturator muscle 11 30216 -UBERON:0001368 obturator externus 12 30217 -UBERON:0011048 obturator internus 12 30218 -UBERON:0002379 perineal muscle 9 30219 -UBERON:0001339 ischiocavernosus muscle 10 30220 -UBERON:0004519 muscle of anal triangle 10 30221 -UBERON:0011389 bulbospongiosus muscle 10 30222 -UBERON:0011387 constrictor vulvae muscle 11 30223 -UBERON:0011388 male bulbospongiosus muscle 11 30224 -UBERON:0014458 female bulbospongiosus muscle 11 30225 -UBERON:0008612 muscle of pelvic diaphragm 9 30226 -UBERON:0011511 iliococcygeus muscle 9 30227 -UBERON:0011512 puborectalis muscle 9 30228 -UBERON:0011528 pubococcygeus muscle 9 30229 -UBERON:0011531 male pubococcygeus muscle 10 30230 -UBERON:0011532 female pubococcygeus muscle 10 30231 -UBERON:0011645 iliofemoralis muscle 9 30232 -UBERON:0001370 gluteus maximus 10 30233 -UBERON:4200122 pubotibialis 9 30234 -UBERON:0002451 endometrial gland 8 30235 -UBERON:0012247 cervical gland 9 30236 -UBERON:0002528 sacral lymph node 8 30237 -UBERON:0003690 fused sacrum 8 30238 -UBERON:0003994 pelvic ligament 8 30239 -UBERON:0007257 intervertebral disk of sacral vertebra 8 30240 -UBERON:0007830 pelvic girdle bone/zone 8 30241 -UBERON:0001272 innominate bone 9 30242 -UBERON:0001273 ilium 9 30243 -UBERON:4200220 iliac ramus 10 30244 -UBERON:0001274 ischium 9 30245 -UBERON:0001275 pubis 9 30246 -UBERON:0013204 epipubic bone 9 30247 -UBERON:2000623 basipterygium bone 9 30248 -UBERON:0008435 vertebral arch of sacral segment 8 30249 -UBERON:0011958 acetabular labrum 8 30250 -UBERON:0011961 articular capsule of hip joint 8 30251 -UBERON:0012179 bone of pelvis 8 30252 -UBERON:0012281 perianal sebaceous gland 8 30253 -UBERON:0015010 sacral vertebra endochondral element 8 30254 -UBERON:0001094 sacral vertebra 9 30255 -UBERON:0004622 sacral vertebra 1 10 30256 -UBERON:0004623 sacral vertebra 2 10 30257 -UBERON:0004624 sacral vertebra 3 10 30258 -UBERON:0004625 sacral vertebra 4 10 30259 -UBERON:0010744 sacral vertebra pre-cartilage condensation 9 30260 -UBERON:0010745 sacral vertebra cartilage element 9 30261 -UBERON:0015054 iliac endochondral element 8 30262 -UBERON:0001273 ilium 9 30263 -UBERON:4200220 iliac ramus 10 30264 -UBERON:0006247 iliac pre-cartilage condensation 9 30265 -UBERON:0010714 iliac cartilage element 9 30266 -UBERON:0015055 pubic endochondral element 8 30267 -UBERON:0001275 pubis 9 30268 -UBERON:0006285 pubic pre-cartilage condensation 9 30269 -UBERON:0010718 pubic cartilage element 9 30270 -UBERON:0015056 ischial endochondral element 8 30271 -UBERON:0001274 ischium 9 30272 -UBERON:0006254 ischial cartilage element 9 30273 -UBERON:0006255 ischial pre-cartilage condensation 9 30274 -UBERON:0015876 pelvic lymph node 8 30275 -UBERON:0015877 parietal pelvic lymph node 9 30276 -UBERON:0015878 common iliac lymph node 10 30277 -UBERON:0015880 external iliac lymph node 10 30278 -UBERON:0035171 obturator lymph node 11 30279 -UBERON:0015881 internal iliac lymph node 10 30280 -UBERON:0015883 gluteal lymph node 10 30281 -UBERON:0015884 presymphysial lymph node 10 30282 -UBERON:0018411 ligament of hip joint 8 30283 -UBERON:1500005 ischial cartilage 8 30284 -UBERON:2100623 basipterygium element 8 30285 -UBERON:2000623 basipterygium bone 9 30286 -UBERON:2001539 basipterygium cartilage 9 30287 -UBERON:3000862 pubo-ischium 8 30288 -UBERON:3000886 ypsiloid cartilage 8 30289 -UBERON:3010240 Nobelian rod 8 30290 -UBERON:4200068 prepubic element 8 30291 -UBERON:4200135 puboischiadic bar 8 30292 -UBERON:4300128 sacral rib 8 30293 -UBERON:4300151 pelvic intercleithral cartilage 8 30294 -UBERON:0007255 intervertebral disk of lumbar vertebra 7 30295 -UBERON:0008424 inguinal mammary gland 7 30296 -UBERON:0009758 abdominal ganglion 7 30297 -UBERON:0011376 iliothoracic muscle 7 30298 -UBERON:0011377 femorothoracic muscle 7 30299 -UBERON:0015009 lumbar vertebra endochondral element 7 30300 -UBERON:0002414 lumbar vertebra 8 30301 -UBERON:0004617 lumbar vertebra 1 9 30302 -UBERON:0004618 lumbar vertebra 2 9 30303 -UBERON:0004619 lumbar vertebra 3 9 30304 -UBERON:0004620 lumbar vertebra 4 9 30305 -UBERON:0004621 lumbar vertebra 5 9 30306 -UBERON:0013509 lumbar vertebra cartilage element 8 30307 -UBERON:0013510 lumbar vertebra pre-cartilage condensation 8 30308 -UBERON:0035445 urogenital diaphragm 7 30309 -UBERON:0005181 thoracic segment organ 6 30310 -UBERON:0000948 heart 7 30311 -UBERON:0000961 thoracic ganglion 7 30312 -UBERON:0002835 thoracic dorsal root ganglion 8 30313 -UBERON:0002845 first thoracic dorsal root ganglion 9 30314 -UBERON:0002846 second thoracic dorsal root ganglion 9 30315 -UBERON:0002847 third thoracic dorsal root ganglion 9 30316 -UBERON:0002848 fifth thoracic dorsal root ganglion 9 30317 -UBERON:0002849 sixth thoracic dorsal root ganglion 9 30318 -UBERON:0002850 seventh thoracic dorsal root ganglion 9 30319 -UBERON:0002851 eighth thoracic dorsal root ganglion 9 30320 -UBERON:0002852 ninth thoracic dorsal root ganglion 9 30321 -UBERON:0002853 tenth thoracic dorsal root ganglion 9 30322 -UBERON:0002854 eleventh thoracic dorsal root ganglion 9 30323 -UBERON:0002855 twelfth thoracic dorsal root ganglion 9 30324 -UBERON:0007712 fourth thoracic spinal ganglion 9 30325 -UBERON:0000975 sternum 7 30326 -UBERON:0002205 manubrium of sternum 7 30327 -UBERON:0002359 fibrous pericardium 7 30328 -UBERON:0002406 pericardial sac 7 30329 -UBERON:0003827 thoracic segment bone 7 30330 -UBERON:0002208 sternebra 8 30331 -UBERON:0002347 thoracic vertebra 8 30332 -UBERON:0004626 thoracic vertebra 1 9 30333 -UBERON:0004627 thoracic vertebra 2 9 30334 -UBERON:0004628 thoracic vertebra 3 9 30335 -UBERON:0004629 thoracic vertebra 4 9 30336 -UBERON:0004630 thoracic vertebra 5 9 30337 -UBERON:0004631 thoracic vertebra 6 9 30338 -UBERON:0004632 thoracic vertebra 7 9 30339 -UBERON:0004633 thoracic vertebra 9 9 30340 -UBERON:0004634 thoracic vertebra 10 9 30341 -UBERON:0004635 thoracic vertebra 11 9 30342 -UBERON:0004636 thoracic vertebra 12 9 30343 -UBERON:0011050 thoracic vertebra 8 9 30344 -UBERON:0003459 chest bone 8 30345 -UBERON:0008436 thoracic vertebral arch 8 30346 -UBERON:0003830 thoracic segment muscle 7 30347 -UBERON:0001103 diaphragm 8 30348 -UBERON:0001126 serratus dorsalis superior muscle 8 30349 -UBERON:0001495 pectoral muscle 8 30350 -UBERON:0001100 pectoralis minor 9 30351 -UBERON:0002381 pectoralis major 9 30352 -UBERON:0008779 subclavius 9 30353 -UBERON:0014837 pectoantebrachialis 9 30354 -UBERON:0014838 xiphihumeralis 9 30355 -UBERON:0002426 chest muscle 8 30356 -UBERON:0002404 transversus thoracis 9 30357 -UBERON:0008618 subcostal muscle 9 30358 -UBERON:0008243 upper back muscle 8 30359 -UBERON:0036071 diaphragmaticus muscle 8 30360 -UBERON:0003832 esophagus muscle 7 30361 -UBERON:0007652 esophageal sphincter 8 30362 -UBERON:0016499 esophageal-pneumatic duct sphincter 9 30363 -UBERON:0005175 chest organ 7 30364 -UBERON:0001111 intercostal muscle 8 30365 -UBERON:0002403 internal intercostal muscle 9 30366 -UBERON:0005441 external intercostal muscle 9 30367 -UBERON:0008617 innermost intercostal muscle 9 30368 -UBERON:0002426 chest muscle 8 30369 -UBERON:0002404 transversus thoracis 9 30370 -UBERON:0008618 subcostal muscle 9 30371 -UBERON:0003459 chest bone 8 30372 -UBERON:0005200 thoracic mammary gland 8 30373 -UBERON:0005178 thoracic cavity element 7 30374 -UBERON:0000040 Leydig's organ 8 30375 -UBERON:0001043 esophagus 8 30376 -UBERON:0001121 longus colli muscle 8 30377 -UBERON:0002048 lung 8 30378 -UBERON:0002167 right lung 9 30379 -UBERON:0002168 left lung 9 30380 -UBERON:0002524 mediastinal lymph node 8 30381 -UBERON:0007643 node of ligamentum arteriosum 9 30382 -UBERON:0035520 anterior mediastinal lymph node 9 30383 -UBERON:0008989 submocosal esophageal gland 8 30384 -UBERON:0009115 thoracic thymus 8 30385 -UBERON:0015410 heart plus pericardium 8 30386 -UBERON:0015472 tracheobronchial lymph node 8 30387 -UBERON:0006430 xiphoid cartilage 7 30388 -UBERON:0006976 peptonephridium 7 30389 -UBERON:0007254 intervertebral disk of thoracic vertebra 7 30390 -UBERON:0007356 crop 7 30391 -UBERON:0007644 thoracic lymph node 7 30392 -UBERON:0002524 mediastinal lymph node 8 30393 -UBERON:0007643 node of ligamentum arteriosum 9 30394 -UBERON:0035520 anterior mediastinal lymph node 9 30395 -UBERON:0012236 intercostal lymph node 8 30396 -UBERON:0015472 tracheobronchial lymph node 8 30397 -UBERON:0035219 parasternal lymph node 8 30398 -UBERON:0011495 rectus thoracis muscle 7 30399 -UBERON:0015008 thoracic vertebra endochondral element 7 30400 -UBERON:0002347 thoracic vertebra 8 30401 -UBERON:0004626 thoracic vertebra 1 9 30402 -UBERON:0004627 thoracic vertebra 2 9 30403 -UBERON:0004628 thoracic vertebra 3 9 30404 -UBERON:0004629 thoracic vertebra 4 9 30405 -UBERON:0004630 thoracic vertebra 5 9 30406 -UBERON:0004631 thoracic vertebra 6 9 30407 -UBERON:0004632 thoracic vertebra 7 9 30408 -UBERON:0004633 thoracic vertebra 9 9 30409 -UBERON:0004634 thoracic vertebra 10 9 30410 -UBERON:0004635 thoracic vertebra 11 9 30411 -UBERON:0004636 thoracic vertebra 12 9 30412 -UBERON:0011050 thoracic vertebra 8 9 30413 -UBERON:0013507 thoracic vertebra cartilage element 8 30414 -UBERON:0013508 thoracic vertebra pre-cartilage condensation 8 30415 -UBERON:0015214 arcuate ligament 7 30416 -UBERON:0007161 medial arcuate ligament 8 30417 -UBERON:0007162 lateral arcuate ligament 8 30418 -UBERON:0015215 median arcuate ligament 8 30419 -UBERON:0019190 mucous gland of lung 7 30420 -UBERON:0034724 esophageal taste bud 7 30421 -UBERON:0034971 aortic body 7 30422 -UBERON:3000759 omosternum 7 30423 -UBERON:0007134 trunk ganglion 6 30424 -UBERON:0001807 paravertebral ganglion 7 30425 -UBERON:0000408 vertebral ganglion 8 30426 -UBERON:0000961 thoracic ganglion 8 30427 -UBERON:0002835 thoracic dorsal root ganglion 9 30428 -UBERON:0002845 first thoracic dorsal root ganglion 10 30429 -UBERON:0002846 second thoracic dorsal root ganglion 10 30430 -UBERON:0002847 third thoracic dorsal root ganglion 10 30431 -UBERON:0002848 fifth thoracic dorsal root ganglion 10 30432 -UBERON:0002849 sixth thoracic dorsal root ganglion 10 30433 -UBERON:0002850 seventh thoracic dorsal root ganglion 10 30434 -UBERON:0002851 eighth thoracic dorsal root ganglion 10 30435 -UBERON:0002852 ninth thoracic dorsal root ganglion 10 30436 -UBERON:0002853 tenth thoracic dorsal root ganglion 10 30437 -UBERON:0002854 eleventh thoracic dorsal root ganglion 10 30438 -UBERON:0002855 twelfth thoracic dorsal root ganglion 10 30439 -UBERON:0007712 fourth thoracic spinal ganglion 10 30440 -UBERON:0001991 cervical ganglion 8 30441 -UBERON:0001989 superior cervical ganglion 9 30442 -UBERON:0001990 middle cervical ganglion 9 30443 -UBERON:0002440 inferior cervical ganglion 9 30444 -UBERON:0002441 cervicothoracic ganglion 9 30445 -UBERON:0009758 abdominal ganglion 7 30446 -UBERON:0009708 dorsal pancreas 6 30447 -UBERON:0009709 ventral pancreas 6 30448 -UBERON:0017628 swim bladder gas gland 6 30449 -UBERON:0034726 trunk taste bud 6 30450 -UBERON:2002221 pericardial muscle 6 30451 -UBERON:0005906 serous sac 5 30452 -UBERON:0002406 pericardial sac 6 30453 -UBERON:0005908 conjunctival sac 6 30454 -UBERON:0009778 pleural sac 6 30455 -UBERON:0035820 peritoneal sac 6 30456 -UBERON:0006585 vestibular organ 5 30457 -UBERON:0002518 otolith organ 6 30458 -UBERON:0001853 utricle of membranous labyrinth 7 30459 -UBERON:0001854 saccule of membranous labyrinth 7 30460 -UBERON:0002824 vestibular ganglion 6 30461 -UBERON:0006869 electric organ 5 30462 -UBERON:0010519 tail electric organ 6 30463 -UBERON:0010520 head electric organ 6 30464 -UBERON:0007196 tracheobronchial tree 5 30465 -UBERON:0008252 tube foot ampulla 5 30466 -UBERON:0009756 spermaceti organ 5 30467 -UBERON:0009866 Hatschek's nephridium 5 30468 -UBERON:0010001 cell cluster organ 5 30469 -UBERON:0000045 ganglion 6 30470 -UBERON:0001714 cranial ganglion 7 30471 -UBERON:0000395 cochlear ganglion 8 30472 -UBERON:0001675 trigeminal ganglion 8 30473 -UBERON:0002058 main ciliary ganglion 8 30474 -UBERON:0002824 vestibular ganglion 8 30475 -UBERON:0002827 vestibulocochlear ganglion 8 30476 -UBERON:0009127 epibranchial ganglion 8 30477 -UBERON:0001700 geniculate ganglion 9 30478 -UBERON:0001701 glossopharyngeal ganglion 9 30479 -UBERON:0003963 otic ganglion 10 30480 -UBERON:0005360 inferior glossopharyngeal IX ganglion 10 30481 -UBERON:0005361 superior glossopharyngeal IX ganglion 10 30482 -UBERON:0005362 vagus X ganglion 9 30483 -UBERON:0005363 inferior vagus X ganglion 10 30484 -UBERON:0005364 superior vagus X ganglion 10 30485 -UBERON:2001302 vagal ganglion 1 9 30486 -UBERON:2001303 vagal ganglion 2 9 30487 -UBERON:2001304 vagal ganglion 3 9 30488 -UBERON:2001305 vagal ganglion 4 9 30489 -UBERON:0009992 cranial sensory ganglion 8 30490 -UBERON:0012175 acoustico-facial VII-VIII ganglion complex 8 30491 -UBERON:0013498 vestibulo-cochlear VIII ganglion complex 8 30492 -UBERON:0013500 glossopharyngeal-vagus IX-X ganglion complex 8 30493 -UBERON:0035599 profundal part of trigeminal ganglion complex 8 30494 -UBERON:0035601 maxillomandibular part of trigeminal ganglion complex 8 30495 -UBERON:2000120 lateral line ganglion 8 30496 -UBERON:2001314 posterior lateral line ganglion 9 30497 -UBERON:2001391 anterior lateral line ganglion 9 30498 -UBERON:2001312 dorsal anterior lateral line ganglion 10 30499 -UBERON:2001313 ventral anterior lateral line ganglion 10 30500 -UBERON:2001483 middle lateral line ganglion 9 30501 -UBERON:0001800 sensory ganglion 7 30502 -UBERON:0000044 dorsal root ganglion 8 30503 -UBERON:0002834 cervical dorsal root ganglion 9 30504 -UBERON:0002838 first cervical dorsal root ganglion 10 30505 -UBERON:0002839 second cervical dorsal root ganglion 10 30506 -UBERON:0002840 third cervical dorsal root ganglion 10 30507 -UBERON:0002841 fourth cervical dorsal root ganglion 10 30508 -UBERON:0002842 fifth cervical dorsal root ganglion 10 30509 -UBERON:0002843 seventh cervical dorsal root ganglion 10 30510 -UBERON:0002844 eighth cervical dorsal root ganglion 10 30511 -UBERON:0007711 sixth cervical dorsal root ganglion 10 30512 -UBERON:0002835 thoracic dorsal root ganglion 9 30513 -UBERON:0002845 first thoracic dorsal root ganglion 10 30514 -UBERON:0002846 second thoracic dorsal root ganglion 10 30515 -UBERON:0002847 third thoracic dorsal root ganglion 10 30516 -UBERON:0002848 fifth thoracic dorsal root ganglion 10 30517 -UBERON:0002849 sixth thoracic dorsal root ganglion 10 30518 -UBERON:0002850 seventh thoracic dorsal root ganglion 10 30519 -UBERON:0002851 eighth thoracic dorsal root ganglion 10 30520 -UBERON:0002852 ninth thoracic dorsal root ganglion 10 30521 -UBERON:0002853 tenth thoracic dorsal root ganglion 10 30522 -UBERON:0002854 eleventh thoracic dorsal root ganglion 10 30523 -UBERON:0002855 twelfth thoracic dorsal root ganglion 10 30524 -UBERON:0007712 fourth thoracic spinal ganglion 10 30525 -UBERON:0002836 lumbar dorsal root ganglion 9 30526 -UBERON:0002856 second lumbar dorsal root ganglion 10 30527 -UBERON:0002857 first lumbar dorsal root ganglion 10 30528 -UBERON:0002858 third lumbar dorsal root ganglion 10 30529 -UBERON:0002859 fifth lumbar dorsal root ganglion 10 30530 -UBERON:0003943 fourth lumbar dorsal root ganglion 10 30531 -UBERON:0002837 sacral dorsal root ganglion 9 30532 -UBERON:0002860 first sacral dorsal root ganglion 10 30533 -UBERON:0002861 second sacral dorsal root ganglion 10 30534 -UBERON:0002862 third sacral dorsal root ganglion 10 30535 -UBERON:0002863 fifth sacral dorsal root ganglion 10 30536 -UBERON:0007713 fourth sacral spinal ganglion 10 30537 -UBERON:0001675 trigeminal ganglion 8 30538 -UBERON:0001700 geniculate ganglion 8 30539 -UBERON:0002824 vestibular ganglion 8 30540 -UBERON:0009992 cranial sensory ganglion 8 30541 -UBERON:0003338 ganglion of peripheral nervous system 7 30542 -UBERON:0001805 autonomic ganglion 8 30543 -UBERON:0001806 sympathetic ganglion 9 30544 -UBERON:0001807 paravertebral ganglion 10 30545 -UBERON:0000408 vertebral ganglion 11 30546 -UBERON:0000961 thoracic ganglion 11 30547 -UBERON:0002835 thoracic dorsal root ganglion 12 30548 -UBERON:0002845 first thoracic dorsal root ganglion 13 30549 -UBERON:0002846 second thoracic dorsal root ganglion 13 30550 -UBERON:0002847 third thoracic dorsal root ganglion 13 30551 -UBERON:0002848 fifth thoracic dorsal root ganglion 13 30552 -UBERON:0002849 sixth thoracic dorsal root ganglion 13 30553 -UBERON:0002850 seventh thoracic dorsal root ganglion 13 30554 -UBERON:0002851 eighth thoracic dorsal root ganglion 13 30555 -UBERON:0002852 ninth thoracic dorsal root ganglion 13 30556 -UBERON:0002853 tenth thoracic dorsal root ganglion 13 30557 -UBERON:0002854 eleventh thoracic dorsal root ganglion 13 30558 -UBERON:0002855 twelfth thoracic dorsal root ganglion 13 30559 -UBERON:0007712 fourth thoracic spinal ganglion 13 30560 -UBERON:0001991 cervical ganglion 11 30561 -UBERON:0001989 superior cervical ganglion 12 30562 -UBERON:0001990 middle cervical ganglion 12 30563 -UBERON:0002440 inferior cervical ganglion 12 30564 -UBERON:0002441 cervicothoracic ganglion 12 30565 -UBERON:0003964 prevertebral ganglion 10 30566 -UBERON:0002262 celiac ganglion 11 30567 -UBERON:0016508 pelvic ganglion 11 30568 -UBERON:0035769 mesenteric ganglion 11 30569 -UBERON:0005453 inferior mesenteric ganglion 12 30570 -UBERON:0005479 superior mesenteric ganglion 12 30571 -UBERON:0001808 parasympathetic ganglion 9 30572 -UBERON:0001809 enteric ganglion 10 30573 -UBERON:0002059 submandibular ganglion 10 30574 -UBERON:0003962 pterygopalatine ganglion 10 30575 -UBERON:0003963 otic ganglion 10 30576 -UBERON:0005407 sublingual ganglion 10 30577 -UBERON:0010128 future pterygopalatine ganglion 10 30578 -UBERON:0014463 cardiac ganglion 10 30579 -UBERON:0035783 ganglion of ciliary nerve 10 30580 -UBERON:0002058 main ciliary ganglion 11 30581 -UBERON:0035776 accessory ciliary ganglion 11 30582 -UBERON:0002824 vestibular ganglion 8 30583 -UBERON:0003339 ganglion of central nervous system 7 30584 -UBERON:6001920 insect embryonic/larval brain 8 30585 -UBERON:6003626 supraesophageal ganglion 8 30586 -UBERON:6110636 adult cerebral ganglion 9 30587 -UBERON:0007134 trunk ganglion 7 30588 -UBERON:0001807 paravertebral ganglion 8 30589 -UBERON:0000408 vertebral ganglion 9 30590 -UBERON:0000961 thoracic ganglion 9 30591 -UBERON:0002835 thoracic dorsal root ganglion 10 30592 -UBERON:0002845 first thoracic dorsal root ganglion 11 30593 -UBERON:0002846 second thoracic dorsal root ganglion 11 30594 -UBERON:0002847 third thoracic dorsal root ganglion 11 30595 -UBERON:0002848 fifth thoracic dorsal root ganglion 11 30596 -UBERON:0002849 sixth thoracic dorsal root ganglion 11 30597 -UBERON:0002850 seventh thoracic dorsal root ganglion 11 30598 -UBERON:0002851 eighth thoracic dorsal root ganglion 11 30599 -UBERON:0002852 ninth thoracic dorsal root ganglion 11 30600 -UBERON:0002853 tenth thoracic dorsal root ganglion 11 30601 -UBERON:0002854 eleventh thoracic dorsal root ganglion 11 30602 -UBERON:0002855 twelfth thoracic dorsal root ganglion 11 30603 -UBERON:0007712 fourth thoracic spinal ganglion 11 30604 -UBERON:0001991 cervical ganglion 9 30605 -UBERON:0001989 superior cervical ganglion 10 30606 -UBERON:0001990 middle cervical ganglion 10 30607 -UBERON:0002440 inferior cervical ganglion 10 30608 -UBERON:0002441 cervicothoracic ganglion 10 30609 -UBERON:0009758 abdominal ganglion 8 30610 -UBERON:0008939 pedal ganglion 7 30611 -UBERON:0008940 parietal ganglion 7 30612 -UBERON:0008941 pleural ganglion 7 30613 -UBERON:0008942 gastropod cerebral ganglion 7 30614 -UBERON:0008964 abdominal ganglion of visceral hump 7 30615 -UBERON:0013208 Grueneberg ganglion 7 30616 -UBERON:3011045 gasserian ganglion 7 30617 -UBERON:0010394 lymphocyte domain 6 30618 -UBERON:0010392 B cell domain 7 30619 -UBERON:0010416 lymph node B cell domain 8 30620 -UBERON:0010393 T cell domain 7 30621 -UBERON:0001960 periarterial lymphatic sheath 8 30622 -UBERON:0010387 Peyer's patch T cell area 8 30623 -UBERON:0010417 lymph node T cell domain 8 30624 -UBERON:0013730 mycetome 6 30625 -UBERON:0015245 septal olfactory organ 6 30626 -UBERON:0013208 Grueneberg ganglion 7 30627 -UBERON:0015246 septal organ of Masera 7 30628 -UBERON:0034978 paraganglion (generic) 6 30629 -UBERON:0012279 chromaffin paraganglion 7 30630 -UBERON:0001237 paraaortic body 8 30631 -UBERON:0034979 nonchromaffin paraganglion 7 30632 -UBERON:0001629 carotid body 8 30633 -UBERON:0034971 aortic body 8 30634 -UBERON:0034972 jugular body 8 30635 -UBERON:0010053 echolocation organ 5 30636 -UBERON:0008960 melon organ 6 30637 -UBERON:0012473 oral cirrus 5 30638 -UBERON:0012643 plume 5 30639 -UBERON:0012644 trophosome 5 30640 -UBERON:0012645 opisthosome 5 30641 -UBERON:0012646 tubeworm tube 5 30642 -UBERON:0013189 junk chamber 5 30643 -UBERON:0013642 ring of oral cilia 5 30644 -UBERON:0013643 lophophore 6 30645 -UBERON:0013675 toxactinium 5 30646 -UBERON:0013765 digestive system element 5 30647 -UBERON:0000059 large intestine 6 30648 -UBERON:0000378 tongue muscle 6 30649 -UBERON:0001574 palatoglossus muscle 7 30650 -UBERON:0001575 extrinsic muscle of tongue 7 30651 -UBERON:0001571 genioglossus muscle 8 30652 -UBERON:0001572 hyoglossus muscle 8 30653 -UBERON:0001573 styloglossus 8 30654 -UBERON:0001576 intrinsic muscle of tongue 7 30655 -UBERON:0008582 superior longitudinal muscle of tongue 8 30656 -UBERON:0008583 transverse muscle of tongue 8 30657 -UBERON:0008584 vertical muscle of tongue 8 30658 -UBERON:0001043 esophagus 6 30659 -UBERON:0001154 vermiform appendix 6 30660 -UBERON:0001173 biliary tree 6 30661 -UBERON:0001581 depressor labii inferioris 6 30662 -UBERON:0001723 tongue 6 30663 -UBERON:0001742 epiglottic cartilage 6 30664 -UBERON:0001960 periarterial lymphatic sheath 6 30665 -UBERON:0002106 spleen 6 30666 -UBERON:0002108 small intestine 6 30667 -UBERON:0002110 gall bladder 6 30668 -UBERON:0003107 Meckel's cartilage 6 30669 -UBERON:0003267 tooth of upper jaw 6 30670 -UBERON:0011593 maxillary tooth 7 30671 -UBERON:0003666 upper jaw molar 8 30672 -UBERON:0013617 upper primary molar tooth 9 30673 -UBERON:0018588 upper first primary molar tooth 10 30674 -UBERON:0018599 upper second primary molar tooth 10 30675 -UBERON:0013619 upper secondary molar tooth 9 30676 -UBERON:0018575 upper first secondary molar tooth 10 30677 -UBERON:0018576 upper second secondary molar tooth 10 30678 -UBERON:0018577 upper third secondary molar tooth 10 30679 -UBERON:7500057 upper fourth secondary molar tooth 10 30680 -UBERON:0018302 upper molar 1 9 30681 -UBERON:0018575 upper first secondary molar tooth 10 30682 -UBERON:0018588 upper first primary molar tooth 10 30683 -UBERON:0012070 palatal tooth 7 30684 -UBERON:0004767 vomerine tooth 8 30685 -UBERON:0012073 tooth of palatine bone 8 30686 -UBERON:2001632 ectopterygoid tooth 8 30687 -UBERON:0016944 upper premolar tooth 7 30688 -UBERON:0016452 upper secondary premolar tooth 8 30689 -UBERON:0018571 upper first secondary premolar tooth 9 30690 -UBERON:0018572 upper second secondary premolar tooth 9 30691 -UBERON:7500058 upper fourth secondary premolar tooth 9 30692 -UBERON:7500059 upper third secondary premolar tooth 9 30693 -UBERON:0017271 upper primary premolar tooth 8 30694 -UBERON:0018301 upper deciduous premolar 5 9 30695 -UBERON:0018648 upper premolar 4 8 30696 -UBERON:0018613 secondary upper tooth 7 30697 -UBERON:0013619 upper secondary molar tooth 8 30698 -UBERON:0018575 upper first secondary molar tooth 9 30699 -UBERON:0018576 upper second secondary molar tooth 9 30700 -UBERON:0018577 upper third secondary molar tooth 9 30701 -UBERON:7500057 upper fourth secondary molar tooth 9 30702 -UBERON:0016452 upper secondary premolar tooth 8 30703 -UBERON:0018571 upper first secondary premolar tooth 9 30704 -UBERON:0018572 upper second secondary premolar tooth 9 30705 -UBERON:7500058 upper fourth secondary premolar tooth 9 30706 -UBERON:7500059 upper third secondary premolar tooth 9 30707 -UBERON:0018561 upper secondary canine tooth 8 30708 -UBERON:0019253 upper secondary incisor tooth 8 30709 -UBERON:0016454 upper central secondary incisor tooth 9 30710 -UBERON:0016455 upper lateral secondary incisor tooth 9 30711 -UBERON:0018616 primary upper tooth 7 30712 -UBERON:0013617 upper primary molar tooth 8 30713 -UBERON:0018588 upper first primary molar tooth 9 30714 -UBERON:0018599 upper second primary molar tooth 9 30715 -UBERON:0017271 upper primary premolar tooth 8 30716 -UBERON:0018301 upper deciduous premolar 5 9 30717 -UBERON:0018591 upper primary incisor tooth 8 30718 -UBERON:0018593 upper central primary incisor tooth 9 30719 -UBERON:0018594 upper lateral primary incisor tooth 9 30720 -UBERON:0018597 upper primary canine tooth 8 30721 -UBERON:0018621 upper canine tooth 7 30722 -UBERON:0018300 upper canine 1 8 30723 -UBERON:0018561 upper secondary canine tooth 8 30724 -UBERON:0018597 upper primary canine tooth 8 30725 -UBERON:2001626 premaxillary tooth 7 30726 -UBERON:0003450 upper jaw incisor 8 30727 -UBERON:0015847 upper left incisor tooth 9 30728 -UBERON:0015850 upper left incisor tusk 10 30729 -UBERON:0015851 upper right incisor tusk 9 30730 -UBERON:0015852 narwhal tusk 9 30731 -UBERON:0018591 upper primary incisor tooth 9 30732 -UBERON:0018593 upper central primary incisor tooth 10 30733 -UBERON:0018594 upper lateral primary incisor tooth 10 30734 -UBERON:0018603 upper central incisor tooth 9 30735 -UBERON:0016454 upper central secondary incisor tooth 10 30736 -UBERON:0018593 upper central primary incisor tooth 10 30737 -UBERON:0018604 upper lateral incisor tooth 9 30738 -UBERON:0016455 upper lateral secondary incisor tooth 10 30739 -UBERON:0018594 upper lateral primary incisor tooth 10 30740 -UBERON:0019253 upper secondary incisor tooth 9 30741 -UBERON:0016454 upper central secondary incisor tooth 10 30742 -UBERON:0016455 upper lateral secondary incisor tooth 10 30743 -UBERON:4300243 premaxillary tooth 2 8 30744 -UBERON:4300244 premaxillary tooth 3 8 30745 -UBERON:3000642 maxillopalatine tooth 7 30746 -UBERON:0003268 tooth of lower jaw 6 30747 -UBERON:0003451 lower jaw incisor 7 30748 -UBERON:0017748 lower primary incisor tooth 8 30749 -UBERON:0018595 lower central primary incisor tooth 9 30750 -UBERON:0018596 lower lateral primary incisor tooth 9 30751 -UBERON:0018601 lower central incisor tooth 8 30752 -UBERON:0018568 lower central secondary incisor tooth 9 30753 -UBERON:0018595 lower central primary incisor tooth 9 30754 -UBERON:0018602 lower lateral incisor tooth 8 30755 -UBERON:0018570 lower lateral secondary incisor tooth 9 30756 -UBERON:0018596 lower lateral primary incisor tooth 9 30757 -UBERON:0018623 lower secondary incisor tooth 8 30758 -UBERON:0018568 lower central secondary incisor tooth 9 30759 -UBERON:0018570 lower lateral secondary incisor tooth 9 30760 -UBERON:0011594 dentary tooth 7 30761 -UBERON:0003667 lower jaw molar 8 30762 -UBERON:0013620 lower primary molar tooth 9 30763 -UBERON:0018589 lower first primary molar tooth 10 30764 -UBERON:0018600 lower second primary molar tooth 10 30765 -UBERON:0013621 lower secondary molar tooth 9 30766 -UBERON:0018578 lower first secondary molar tooth 10 30767 -UBERON:0018579 lower second secondary molar tooth 10 30768 -UBERON:0018580 lower third secondary molar tooth 10 30769 -UBERON:7500052 lower fourth secondary molar tooth 10 30770 -UBERON:0018282 lower molar 3 9 30771 -UBERON:0018580 lower third secondary molar tooth 10 30772 -UBERON:4300246 dentary tooth 2 8 30773 -UBERON:4300247 dentary tooth 3 8 30774 -UBERON:0011603 coronoid tooth 7 30775 -UBERON:4200238 coronoid fang 8 30776 -UBERON:0016943 lower premolar tooth 7 30777 -UBERON:0016453 lower secondary premolar tooth 8 30778 -UBERON:0018573 lower first secondary premolar tooth 9 30779 -UBERON:0018574 lower second secondary premolar tooth 9 30780 -UBERON:7500053 lower fourth secondary premolar tooth 9 30781 -UBERON:7500054 lower third secondary premolar tooth 9 30782 -UBERON:0017272 lower primary premolar tooth 8 30783 -UBERON:0018281 lower deciduous premolar 5 9 30784 -UBERON:0018284 lower premolar 1 8 30785 -UBERON:0018573 lower first secondary premolar tooth 9 30786 -UBERON:0018285 lower premolar 2 8 30787 -UBERON:0018574 lower second secondary premolar tooth 9 30788 -UBERON:0018299 mandibular symphyseal tooth 7 30789 -UBERON:0018614 permanent lower tooth 7 30790 -UBERON:0013621 lower secondary molar tooth 8 30791 -UBERON:0018578 lower first secondary molar tooth 9 30792 -UBERON:0018579 lower second secondary molar tooth 9 30793 -UBERON:0018580 lower third secondary molar tooth 9 30794 -UBERON:7500052 lower fourth secondary molar tooth 9 30795 -UBERON:0016453 lower secondary premolar tooth 8 30796 -UBERON:0018573 lower first secondary premolar tooth 9 30797 -UBERON:0018574 lower second secondary premolar tooth 9 30798 -UBERON:7500053 lower fourth secondary premolar tooth 9 30799 -UBERON:7500054 lower third secondary premolar tooth 9 30800 -UBERON:0018562 lower secondary canine tooth 8 30801 -UBERON:0018623 lower secondary incisor tooth 8 30802 -UBERON:0018568 lower central secondary incisor tooth 9 30803 -UBERON:0018570 lower lateral secondary incisor tooth 9 30804 -UBERON:0018617 primary lower tooth 7 30805 -UBERON:0013620 lower primary molar tooth 8 30806 -UBERON:0018589 lower first primary molar tooth 9 30807 -UBERON:0018600 lower second primary molar tooth 9 30808 -UBERON:0017272 lower primary premolar tooth 8 30809 -UBERON:0018281 lower deciduous premolar 5 9 30810 -UBERON:0017748 lower primary incisor tooth 8 30811 -UBERON:0018595 lower central primary incisor tooth 9 30812 -UBERON:0018596 lower lateral primary incisor tooth 9 30813 -UBERON:0018598 lower primary canine tooth 8 30814 -UBERON:0018622 lower canine tooth 7 30815 -UBERON:0018562 lower secondary canine tooth 8 30816 -UBERON:0018598 lower primary canine tooth 8 30817 -UBERON:3000519 pseudodentary tooth 7 30818 -UBERON:0003408 gland of digestive tract 6 30819 -UBERON:0000333 intestinal gland 7 30820 -UBERON:0001983 crypt of Lieberkuhn 8 30821 -UBERON:0001241 crypt of Lieberkuhn of small intestine 9 30822 -UBERON:0013481 crypt of Lieberkuhn of ileum 10 30823 -UBERON:0013482 crypt of Lieberkuhn of duodenum 10 30824 -UBERON:0013483 crypt of Lieberkuhn of jejunum 10 30825 -UBERON:0001984 crypt of Lieberkuhn of large intestine 9 30826 -UBERON:0013485 crypt of Lieberkuhn of colon 10 30827 -UBERON:0013486 crypt of Lieberkuhn of appendix 11 30828 -UBERON:0001212 duodenal gland 7 30829 -UBERON:0003294 gland of foregut 7 30830 -UBERON:0000325 gastric gland 8 30831 -UBERON:0008859 cardiac gastric gland 9 30832 -UBERON:0008861 pyloric gastric gland 9 30833 -UBERON:0009971 principal gastric gland 9 30834 -UBERON:0010038 fundic gastric gland 9 30835 -UBERON:0008860 intermediate gastric gland 10 30836 -UBERON:0003295 pharyngeal gland 7 30837 -UBERON:0003410 oropharyngeal gland 8 30838 -UBERON:0008310 nasopharyngeal gland 8 30839 -UBERON:0009116 thymoid 8 30840 -UBERON:0004757 rectal salt gland 7 30841 -UBERON:0004760 gland of anal canal 7 30842 -UBERON:0008989 submocosal esophageal gland 7 30843 -UBERON:0010047 oral gland 7 30844 -UBERON:0001044 saliva-secreting gland 8 30845 -UBERON:0001829 major salivary gland 9 30846 -UBERON:0001736 submandibular gland 10 30847 -UBERON:0001831 parotid gland 10 30848 -UBERON:0001832 sublingual gland 10 30849 -UBERON:0001830 minor salivary gland 9 30850 -UBERON:0002447 palatine gland 10 30851 -UBERON:0006330 anterior lingual gland 10 30852 -UBERON:0034934 Weber's gland 10 30853 -UBERON:0012102 buccal salivary gland 9 30854 -UBERON:0001831 parotid gland 10 30855 -UBERON:0010240 zygomatic gland 10 30856 -UBERON:0010241 molar gland 10 30857 -UBERON:0010242 anterior buccal gland 10 30858 -UBERON:0013475 gustatory gland 9 30859 -UBERON:0017653 intermaxillary salivary gland 9 30860 -UBERON:0003409 gland of tongue 8 30861 -UBERON:0006330 anterior lingual gland 9 30862 -UBERON:0013475 gustatory gland 9 30863 -UBERON:0034934 Weber's gland 9 30864 -UBERON:0010048 Duvernoy's gland 8 30865 -UBERON:0010049 supralabial gland 8 30866 -UBERON:0010050 infralabial gland 8 30867 -UBERON:0010264 hepatopancreas 7 30868 -UBERON:0010265 mollusc hepatopancreas 8 30869 -UBERON:0010266 arthropod hepatopancreas 8 30870 -UBERON:0011253 gland of anal sac 7 30871 -UBERON:0012478 cloacal gland 7 30872 -UBERON:0012479 urodeal gland 8 30873 -UBERON:0017164 dorsal cloacal gland 8 30874 -UBERON:3010590 amphibian cloacal gland 8 30875 -UBERON:4300129 dorsal pelvic gland 8 30876 -UBERON:4300130 lateral pelvic gland 8 30877 -UBERON:0013158 foregut-midgut junction gland 7 30878 -UBERON:0003682 palatal muscle 6 30879 -UBERON:0001574 palatoglossus muscle 7 30880 -UBERON:0008585 levator veli palatini 7 30881 -UBERON:0008586 tensor veli palatini 7 30882 -UBERON:0010234 palatopharyngeus muscle 7 30883 -UBERON:0010235 uvular muscle 7 30884 -UBERON:0003832 esophagus muscle 6 30885 -UBERON:0007652 esophageal sphincter 7 30886 -UBERON:0016499 esophageal-pneumatic duct sphincter 8 30887 -UBERON:0003903 bursa of Fabricius 6 30888 -UBERON:0004368 Reichert's cartilage 6 30889 -UBERON:0004752 palatoquadrate cartilage 6 30890 -UBERON:3010821 hyoquadrate process 7 30891 -UBERON:0006925 digestive system gland 6 30892 -UBERON:0002107 liver 7 30893 -UBERON:0009116 thymoid 7 30894 -UBERON:0009860 ascidian digestive gland 7 30895 -UBERON:0010264 hepatopancreas 7 30896 -UBERON:0010265 mollusc hepatopancreas 8 30897 -UBERON:0010266 arthropod hepatopancreas 8 30898 -UBERON:0006976 peptonephridium 6 30899 -UBERON:0007356 crop 6 30900 -UBERON:0008596 mentalis muscle 6 30901 -UBERON:0008804 stylopharyngeus muscle 6 30902 -UBERON:0008815 pharyngeal slit 6 30903 -UBERON:0010039 food storage organ 6 30904 -UBERON:0000945 stomach 7 30905 -UBERON:0005052 gizzard 8 30906 -UBERON:0007366 ruminant stomach 8 30907 -UBERON:0008994 equine glandular stomach 8 30908 -UBERON:0010056 future tongue 6 30909 -UBERON:0010387 Peyer's patch T cell area 6 30910 -UBERON:0010937 salpingopharyngeus muscle 6 30911 -UBERON:0011185 gastrointestinal sphincter 6 30912 -UBERON:0000569 ileocecal valve 7 30913 -UBERON:0001202 pyloric sphincter 7 30914 -UBERON:0004550 gastroesophageal sphincter 7 30915 -UBERON:0004915 sphincter of hepatopancreatic ampulla 7 30916 -UBERON:0011268 sublingua 6 30917 -UBERON:0011318 capsule of temporomandibular joint 6 30918 -UBERON:0011319 disk of temporomandibular joint 6 30919 -UBERON:0011320 ligament of temporomandibular joint 6 30920 -UBERON:0012105 baleen plate 6 30921 -UBERON:0012360 bone of jaw 6 30922 -UBERON:0004768 bone of lower jaw 7 30923 -UBERON:0004742 dentary 8 30924 -UBERON:0001684 mandible 9 30925 -UBERON:0004744 articular/anguloarticular 8 30926 -UBERON:0011079 angular bone 8 30927 -UBERON:0011598 coronoid bone 8 30928 -UBERON:4200234 precoronoid bone 9 30929 -UBERON:4200235 postcoronoid bone 9 30930 -UBERON:4200236 anterior coronoid bone 9 30931 -UBERON:4200237 posterior coronoid bone 9 30932 -UBERON:0011635 splenial bone 8 30933 -UBERON:0011636 surangular bone 8 30934 -UBERON:4200243 surangular pit line 9 30935 -UBERON:0011637 prearticular bone 8 30936 -UBERON:0011770 mentomeckelian 8 30937 -UBERON:2000422 retroarticular 8 30938 -UBERON:2001274 coronomeckelian 8 30939 -UBERON:2001805 articular bone 8 30940 -UBERON:3000515 pseudoangular 8 30941 -UBERON:3000518 pseudodentary 8 30942 -UBERON:3000966 angulosplenial 8 30943 -UBERON:4200245 parasymphysial plate 8 30944 -UBERON:4200246 mesial parasymphysial foramen 9 30945 -UBERON:4200247 lateral parasymphysial foramen 9 30946 -UBERON:4300199 postsplenial 8 30947 -UBERON:0011597 bone of upper jaw 7 30948 -UBERON:0001682 palatine bone 8 30949 -UBERON:0002244 premaxilla 8 30950 -UBERON:0002396 vomer 8 30951 -UBERON:0002397 maxilla 8 30952 -UBERON:0006597 quadrate bone 8 30953 -UBERON:0011267 quadratojugal bone 8 30954 -UBERON:0011628 early premaxilla 8 30955 -UBERON:0011634 ectopterygoid bone 8 30956 -UBERON:2000103 supramaxilla 8 30957 -UBERON:2000240 metapterygoid 8 30958 -UBERON:2000620 autopalatine 8 30959 -UBERON:2000657 entopterygoid 8 30960 -UBERON:2001406 kinethmoid bone 8 30961 -UBERON:2001692 median premaxilla 8 30962 -UBERON:2002020 hypomaxilla 8 30963 -UBERON:3000288 maxillopalatine 8 30964 -UBERON:3000323 nasopremaxilla 8 30965 -UBERON:4300017 rostrodermethmoid 8 30966 -UBERON:3000645 corpus 7 30967 -UBERON:0012471 hepatogastric ligament 6 30968 -UBERON:0012472 hepatoduodenal ligament 6 30969 -UBERON:0012621 muscle of Aristotle's lantern 6 30970 -UBERON:0013139 ligament of liver 6 30971 -UBERON:0001247 falciform ligament 7 30972 -UBERON:0006588 round ligament of liver 7 30973 -UBERON:0013138 coronary ligament of liver 7 30974 -UBERON:0014451 tongue taste bud 6 30975 -UBERON:0014783 cloacal muscle 6 30976 -UBERON:0013501 cloacal sphincter 7 30977 -UBERON:0014784 transverse cloacal muscle 7 30978 -UBERON:0014785 levator cloacae 7 30979 -UBERON:0014916 velar vocal fold 6 30980 -UBERON:0016619 Y-shaped fibrocartilage skeleton of ventral pouch 6 30981 -UBERON:0016621 lunge feeding organ 6 30982 -UBERON:0018333 labial cartilage 6 30983 -UBERON:0034670 palatal taste bud 6 30984 -UBERON:0034719 lip taste bud 6 30985 -UBERON:0034721 pharyngeal taste bud 6 30986 -UBERON:0034724 esophageal taste bud 6 30987 -UBERON:0034937 pharyngeal bar 6 30988 -UBERON:0035444 triangular ligament of liver 6 30989 -UBERON:2002092 rostral cartilage 6 30990 -UBERON:2002116 epibranchial organ 6 30991 -UBERON:3000237 infrarostral cartilage 6 30992 -UBERON:3000363 otic ligament 6 30993 -UBERON:3000998 suprarostral cartilage 6 30994 -UBERON:3010061 anterior quadratocranial commissure 6 30995 -UBERON:4300252 ethmo-palatine cartilage 6 30996 -UBERON:0014732 compound cell cluster organ 5 30997 -UBERON:0015119 scolex 5 30998 -UBERON:0034681 vocal organ 5 30999 -UBERON:0003706 laryngeal vocal fold 6 31000 -UBERON:0008577 vocalis muscle 6 31001 -UBERON:0009074 syrinx organ 6 31002 -UBERON:0014916 velar vocal fold 6 31003 -UBERON:0035960 velum feeding organ 5 31004 -UBERON:3010007 pit organ 5 31005 -UBERON:4300152 accessory nasal sac 5 31006 -UBERON:4300194 photophore 5 31007 -UBERON:0000064 organ part 4 31008 -UBERON:0000053 macula lutea 5 31009 -UBERON:0000060 anatomical wall 5 31010 -UBERON:0000328 gut wall 6 31011 -UBERON:0001096 wall of esophagus 7 31012 -UBERON:0001167 wall of stomach 7 31013 -UBERON:0001262 wall of intestine 7 31014 -UBERON:0001168 wall of small intestine 8 31015 -UBERON:0001169 wall of large intestine 8 31016 -UBERON:0036337 wall of appendix 9 31017 -UBERON:0036362 wall of anal canal 9 31018 -UBERON:0035120 fauces 7 31019 -UBERON:0035240 posterior wall of oropharynx 7 31020 -UBERON:0035270 roof of nasopharynx 7 31021 -UBERON:0035286 lateral wall of oropharynx 7 31022 -UBERON:0035313 posterior wall of laryngopharynx 7 31023 -UBERON:0035383 lateral wall of nasopharynx 7 31024 -UBERON:0035401 posterior wall of nasopharynx 7 31025 -UBERON:0000459 uterine wall 6 31026 -UBERON:0001256 wall of urinary bladder 6 31027 -UBERON:0001811 conjunctiva 6 31028 -UBERON:0003697 abdominal wall 6 31029 -UBERON:0036343 wall of gallbladder 7 31030 -UBERON:0004894 alveolar wall 6 31031 -UBERON:0006655 septum of scrotum 6 31032 -UBERON:0009075 membrana tympaniformis 6 31033 -UBERON:0009076 membrana tympaniformis lateralis 7 31034 -UBERON:0009077 membrana tympaniformis medialis 7 31035 -UBERON:0009916 wall of ureter 6 31036 -UBERON:0036375 wall of right ureter 7 31037 -UBERON:0036376 wall of left ureter 7 31038 -UBERON:0016403 thoracic wall 6 31039 -UBERON:0016435 chest wall 6 31040 -UBERON:0035965 wall of blood vessel 6 31041 -UBERON:0000415 artery wall 7 31042 -UBERON:0036328 wall of coronary artery 8 31043 -UBERON:0036351 wall of brachiocephalic artery 8 31044 -UBERON:0036352 wall of subclavian artery 8 31045 -UBERON:0036422 wall of pulmonary artery 8 31046 -UBERON:0037094 wall of common carotid artery 8 31047 -UBERON:0004663 aorta wall 7 31048 -UBERON:0036441 wall of uterine tube 6 31049 -UBERON:0036521 wall of urethra 6 31050 -UBERON:0037447 wall of male urethra 7 31051 -UBERON:0037455 wall of female urethra 7 31052 -UBERON:0036523 wall of vagina 6 31053 -UBERON:0036553 wall of synovial tendon sheath 6 31054 -UBERON:0036658 wall of central canal of spinal cord 6 31055 -UBERON:0036661 wall of ventricular system of brain 6 31056 -UBERON:0036654 wall of lateral ventricle 7 31057 -UBERON:0036655 wall of cerebral aqueduct 7 31058 -UBERON:0036656 wall of third ventricle 7 31059 -UBERON:0036657 wall of fourth ventricle 7 31060 -UBERON:0036925 wall of eyeball 6 31061 -UBERON:0036990 wall of pharyngotympanic tube 6 31062 -UBERON:0037089 wall of orbit 6 31063 -UBERON:0037144 wall of heart 6 31064 -UBERON:0004784 heart ventricle wall 7 31065 -UBERON:0036285 wall of left ventricle 8 31066 -UBERON:0036288 anterior wall of left ventricle 9 31067 -UBERON:0036286 wall of right ventricle 8 31068 -UBERON:0036289 anterior wall of right ventricle 9 31069 -UBERON:0036328 wall of coronary artery 7 31070 -UBERON:0037191 wall of membranous labyrinth 6 31071 -UBERON:0037237 wall of lacrimal duct 6 31072 -UBERON:0000063 organ subunit 5 31073 -UBERON:0000058 duct 6 31074 -UBERON:0001765 mammary duct 7 31075 -UBERON:0011844 duct of areolar gland 8 31076 -UBERON:0015132 extralobar lactiferous duct 8 31077 -UBERON:0015133 terminal lactiferous duct 8 31078 -UBERON:0015134 main lactiferous duct 8 31079 -UBERON:0015135 primary lactiferous duct 8 31080 -UBERON:0015136 secondary lactiferous duct 8 31081 -UBERON:0015137 tertiary lactiferous duct 8 31082 -UBERON:0015138 quarternary lactiferous duct 8 31083 -UBERON:0022360 male mammary gland duct 8 31084 -UBERON:0002392 nasolacrimal duct 7 31085 -UBERON:0003928 digestive system duct 7 31086 -UBERON:0001837 duct of salivary gland 8 31087 -UBERON:0001838 sublingual duct 9 31088 -UBERON:0003985 major sublingual duct 10 31089 -UBERON:0003986 minor sublingual duct 10 31090 -UBERON:0002334 submandibular duct 9 31091 -UBERON:0014727 intercalated duct of salivary gland 9 31092 -UBERON:0035046 parotid gland intercalated duct 10 31093 -UBERON:0014729 striated duct of salivary gland 9 31094 -UBERON:0035047 parotid gland striated duct 10 31095 -UBERON:0015445 anterior lingual gland duct 9 31096 -UBERON:0035045 parotid gland intralobular duct 9 31097 -UBERON:0035046 parotid gland intercalated duct 10 31098 -UBERON:0035047 parotid gland striated duct 10 31099 -UBERON:0035049 excretory duct of salivary gland 9 31100 -UBERON:0035048 parotid gland excretory duct 10 31101 -UBERON:0001065 parotid main excretory duct 11 31102 -UBERON:0035078 parotid gland interlobular duct 11 31103 -UBERON:0035053 interlobular duct of salivary gland 10 31104 -UBERON:0035078 parotid gland interlobular duct 11 31105 -UBERON:0002394 bile duct 8 31106 -UBERON:0003703 extrahepatic bile duct 9 31107 -UBERON:0001152 cystic duct 10 31108 -UBERON:0001174 common bile duct 10 31109 -UBERON:0001175 common hepatic duct 10 31110 -UBERON:0001176 right hepatic duct 10 31111 -UBERON:0001177 left hepatic duct 10 31112 -UBERON:0010081 future common hepatic duct 10 31113 -UBERON:0003704 intrahepatic bile duct 9 31114 -UBERON:0001246 interlobular bile duct 10 31115 -UBERON:0001282 intralobular bile duct 10 31116 -UBERON:0005605 intrahepatic part of hepatic duct 10 31117 -UBERON:0004913 hepatopancreatic ampulla 9 31118 -UBERON:0005171 hepatic duct 9 31119 -UBERON:0015423 hilar portion of hepatic duct 10 31120 -UBERON:0005604 extrahepatic part of hepatic duct 9 31121 -UBERON:2005170 extrahepatic duct 9 31122 -UBERON:0007329 pancreatic duct 8 31123 -UBERON:0001064 ventral pancreatic duct 9 31124 -UBERON:0005429 dorsal pancreatic duct 9 31125 -UBERON:2001430 pneumatic duct 8 31126 -UBERON:2005346 extrapancreatic duct 8 31127 -UBERON:0005904 duct of male reproductive system 7 31128 -UBERON:0000999 ejaculatory duct 8 31129 -UBERON:0001000 vas deferens 8 31130 -UBERON:0001301 epididymis 8 31131 -UBERON:0001343 seminiferous tubule of testis 8 31132 -UBERON:0002485 prostate duct 8 31133 -UBERON:0005903 duct of seminal vesicle 8 31134 -UBERON:0006946 efferent duct 8 31135 -UBERON:3010586 vasa efferentia 9 31136 -UBERON:0006947 male genital duct 8 31137 -UBERON:0008824 duct of epididymis 8 31138 -UBERON:0010151 duct of bulbourethral gland 8 31139 -UBERON:0006553 renal duct 7 31140 -UBERON:0009201 nephric duct 8 31141 -UBERON:0003060 pronephric duct 9 31142 -UBERON:0003074 mesonephric duct 9 31143 -UBERON:2002225 posterior pronephric duct 8 31144 -UBERON:2005292 distal late tubule 8 31145 -UBERON:3010392 mesonephric early proximal tubule 8 31146 -UBERON:3010394 mesonephric late proximal tubule 8 31147 -UBERON:0009718 neurohypophyseal duct 7 31148 -UBERON:0010146 paraurethral duct 7 31149 -UBERON:0011830 duct of lesser vestibular gland 8 31150 -UBERON:0011831 duct of vestibular gland 7 31151 -UBERON:0010150 duct of major vestibular gland 8 31152 -UBERON:0011830 duct of lesser vestibular gland 8 31153 -UBERON:0011845 duct of sebaceous gland 7 31154 -UBERON:0011844 duct of areolar gland 8 31155 -UBERON:0013075 venom gland duct 7 31156 -UBERON:0014719 intralobular duct 7 31157 -UBERON:0014725 intercalated duct 8 31158 -UBERON:0014726 intercalated duct of pancreas 9 31159 -UBERON:0014727 intercalated duct of salivary gland 9 31160 -UBERON:0035046 parotid gland intercalated duct 10 31161 -UBERON:0014729 striated duct of salivary gland 8 31162 -UBERON:0035047 parotid gland striated duct 9 31163 -UBERON:0035045 parotid gland intralobular duct 8 31164 -UBERON:0035046 parotid gland intercalated duct 9 31165 -UBERON:0035047 parotid gland striated duct 9 31166 -UBERON:0015151 Harderian gland duct 7 31167 -UBERON:0015784 duct of olfactory gland 7 31168 -UBERON:0035050 excretory duct 7 31169 -UBERON:0014716 interlobular duct 8 31170 -UBERON:0001282 intralobular bile duct 9 31171 -UBERON:0035053 interlobular duct of salivary gland 9 31172 -UBERON:0035078 parotid gland interlobular duct 10 31173 -UBERON:0014720 interlobar duct 8 31174 -UBERON:0035049 excretory duct of salivary gland 8 31175 -UBERON:0035048 parotid gland excretory duct 9 31176 -UBERON:0001065 parotid main excretory duct 10 31177 -UBERON:0035078 parotid gland interlobular duct 10 31178 -UBERON:0035053 interlobular duct of salivary gland 9 31179 -UBERON:0035078 parotid gland interlobular duct 10 31180 -UBERON:0035073 duct of eccrine sweat gland 7 31181 -UBERON:0035074 duct of apocrine sweat gland 7 31182 -UBERON:2001437 ductus communicans 7 31183 -UBERON:2005411 common crus 7 31184 -UBERON:2005412 transverse canal 7 31185 -UBERON:0001229 renal corpuscle 6 31186 -UBERON:0001341 lesser sac 6 31187 -UBERON:0001801 anterior segment of eyeball 6 31188 -UBERON:0001802 posterior segment of eyeball 6 31189 -UBERON:0003675 tooth crown 6 31190 -UBERON:0003955 molar crown 7 31191 -UBERON:0003677 tooth root 6 31192 -UBERON:0008854 root of molar tooth 7 31193 -UBERON:0004662 vertebra lamina 6 31194 -UBERON:0004732 segmental subdivision of nervous system 6 31195 -UBERON:0004731 neuromere 7 31196 -UBERON:0001892 rhombomere 8 31197 -UBERON:0005499 rhombomere 1 9 31198 -UBERON:0005507 rhombomere 3 9 31199 -UBERON:0005511 rhombomere 4 9 31200 -UBERON:0005515 rhombomere 5 9 31201 -UBERON:0005519 rhombomere 6 9 31202 -UBERON:0005523 rhombomere 7 9 31203 -UBERON:0005527 rhombomere 8 9 31204 -UBERON:0005569 rhombomere 2 9 31205 -UBERON:0019284 rhombomere 9 9 31206 -UBERON:0019285 rhombomere 10 9 31207 -UBERON:0019286 rhombomere 11 9 31208 -UBERON:0014775 prosomere 8 31209 -UBERON:0014776 midbrain neuromere 8 31210 -UBERON:0019272 mesomere 1 9 31211 -UBERON:0019274 mesomere 2 9 31212 -UBERON:0014777 spinal neuromere 8 31213 -UBERON:0004733 segmental subdivision of hindbrain 7 31214 -UBERON:0001895 metencephalon 8 31215 -UBERON:0005290 myelencephalon 8 31216 -UBERON:6003627 protocerebrum 7 31217 -UBERON:6001925 embryonic/larval protocerebrum 8 31218 -UBERON:6007145 adult protocerebrum 8 31219 -UBERON:0006311 chamber of eyeball 6 31220 -UBERON:0001766 anterior chamber of eyeball 7 31221 -UBERON:0001767 posterior chamber of eyeball 7 31222 -UBERON:0001799 vitreous chamber of eyeball 7 31223 -UBERON:0006517 kidney calyx 6 31224 -UBERON:0001226 major calyx 7 31225 -UBERON:0001227 minor calyx 7 31226 -UBERON:0008954 lingula of left lung 6 31227 -UBERON:0009911 lobule 6 31228 -UBERON:0001171 portal lobule 7 31229 -UBERON:0001912 lobule of mammary gland 7 31230 -UBERON:0002125 thymus lobule 7 31231 -UBERON:0009914 renal lobule 7 31232 -UBERON:0010368 pulmonary lobule 7 31233 -UBERON:0008874 pulmonary acinus 8 31234 -UBERON:0010369 secondary pulmonary lobule 8 31235 -UBERON:0009912 anatomical lobe 6 31236 -UBERON:0000101 lobe of lung 7 31237 -UBERON:0006518 right lung lobe 8 31238 -UBERON:0002170 upper lobe of right lung 9 31239 -UBERON:0002171 lower lobe of right lung 9 31240 -UBERON:0002174 middle lobe of right lung 9 31241 -UBERON:0004890 right lung accessory lobe 9 31242 -UBERON:0008950 azygous lobe of lung 10 31243 -UBERON:0008948 upper lobe of lung 8 31244 -UBERON:0002170 upper lobe of right lung 9 31245 -UBERON:0008952 upper lobe of left lung 9 31246 -UBERON:0008949 lower lobe of lung 8 31247 -UBERON:0002171 lower lobe of right lung 9 31248 -UBERON:0008953 lower lobe of left lung 9 31249 -UBERON:0008951 left lung lobe 8 31250 -UBERON:0008952 upper lobe of left lung 9 31251 -UBERON:0008953 lower lobe of left lung 9 31252 -UBERON:0008955 middle lobe of lung 8 31253 -UBERON:0002174 middle lobe of right lung 9 31254 -UBERON:0001113 lobe of liver 7 31255 -UBERON:0001114 right lobe of liver 8 31256 -UBERON:0001116 quadrate lobe of liver 9 31257 -UBERON:0001117 caudate lobe of liver 9 31258 -UBERON:0001115 left lobe of liver 8 31259 -UBERON:0006727 liver left lateral lobe 9 31260 -UBERON:0006728 liver left medial lobe 9 31261 -UBERON:0001118 lobe of thyroid gland 7 31262 -UBERON:0001119 right lobe of thyroid gland 8 31263 -UBERON:0001120 left lobe of thyroid gland 8 31264 -UBERON:0001328 lobe of prostate 7 31265 -UBERON:0001329 prostate gland anterior lobe 8 31266 -UBERON:0007615 prostate gland ventral lobe 8 31267 -UBERON:0008808 prostate gland dorsolateral lobe 8 31268 -UBERON:0013637 prostate gland lateral lobe 8 31269 -UBERON:0015792 prostate gland dorsal lobe 8 31270 -UBERON:0035341 posterior lobe of prostate 8 31271 -UBERON:0035766 median lobe of prostate 8 31272 -UBERON:0005483 thymus lobe 7 31273 -UBERON:0005457 left thymus lobe 8 31274 -UBERON:0005469 right thymus lobe 8 31275 -UBERON:0009913 renal lobe 7 31276 -UBERON:0018140 mammary lobe 7 31277 -UBERON:0019326 lobe of lacrimal gland 7 31278 -UBERON:0019327 orbital lobe of lacrimal gland 8 31279 -UBERON:0019328 palpebral lobe of lacrimal gland 8 31280 -UBERON:0010409 ocular surface region 6 31281 -UBERON:0011510 cloacal bursa 6 31282 -UBERON:0003903 bursa of Fabricius 7 31283 -UBERON:0011932 pilosebaceous unit 6 31284 -UBERON:0011933 vibrissa unit 7 31285 -UBERON:0016624 lunge feeding vibrissa 8 31286 -UBERON:0014765 crus of diaphragm 6 31287 -UBERON:0014766 right crus of diaphragm 7 31288 -UBERON:0014767 left crus of diaphragm 7 31289 -UBERON:0018374 sallet 6 31290 -UBERON:0035075 thymus subunit 6 31291 -UBERON:0001118 lobe of thyroid gland 7 31292 -UBERON:0001119 right lobe of thyroid gland 8 31293 -UBERON:0001120 left lobe of thyroid gland 8 31294 -UBERON:0035105 sac of scrotum 6 31295 -UBERON:0035651 glans 6 31296 -UBERON:0001299 glans penis 7 31297 -UBERON:0006653 glans clitoris 7 31298 -UBERON:0035831 costal diaphragm 6 31299 -UBERON:0036150 skin appendage follicle 6 31300 -UBERON:0002073 hair follicle 7 31301 -UBERON:0010419 vibrissa follicle 8 31302 -UBERON:0015252 coat hair follicle 8 31303 -UBERON:0011782 feather follicle 7 31304 -UBERON:0000074 renal glomerulus 5 31305 -UBERON:0004736 metanephric glomerulus 6 31306 -UBERON:0004739 pronephric glomerulus 6 31307 -UBERON:0005325 mesonephric glomerulus 6 31308 -UBERON:0000116 lung saccule 5 31309 -UBERON:0000353 parenchyma 5 31310 -UBERON:0001280 liver parenchyma 6 31311 -UBERON:0005221 liver right lobe parenchyma 7 31312 -UBERON:0010704 parenchyma of quadrate lobe of liver 8 31313 -UBERON:0010706 parenchyma of caudate lobe of liver 8 31314 -UBERON:0005222 liver left lobe parenchyma 7 31315 -UBERON:0010706 parenchyma of caudate lobe of liver 8 31316 -UBERON:0001747 parenchyma of thyroid gland 6 31317 -UBERON:0001749 parenchyma of parathyroid gland 6 31318 -UBERON:0001978 parenchyma of pancreas 6 31319 -UBERON:0005220 pancreas head parenchyma 7 31320 -UBERON:0005223 pancreas body parenchyma 7 31321 -UBERON:0005224 pancreas tail parenchyma 7 31322 -UBERON:0005158 parenchyma of central nervous system 6 31323 -UBERON:0034907 pineal parenchyma 7 31324 -UBERON:0008946 lung parenchyma 6 31325 -UBERON:0008870 pulmonary alveolar parenchyma 7 31326 -UBERON:0008987 renal parenchyma 6 31327 -UBERON:0036245 parenchyma of mammary gland 6 31328 -UBERON:1000024 parenchyma of spleen 6 31329 -UBERON:0000440 trabecula 5 31330 -UBERON:0000439 arachnoid trabecula 6 31331 -UBERON:0001265 trabecula of spleen 6 31332 -UBERON:0002195 trabecula of lymph node 6 31333 -UBERON:0002511 trabecula carnea 6 31334 -UBERON:0006570 trabecula carnea of right ventricle 7 31335 -UBERON:0006571 trabecula carnea of left ventricle 7 31336 -UBERON:0006828 trabecula carnea of atrium 7 31337 -UBERON:0004791 thymus trabecula 6 31338 -UBERON:0005945 neurocranial trabecula 6 31339 -UBERON:0005988 atrium myocardial trabecula 6 31340 -UBERON:0010183 liver trabecula 6 31341 -UBERON:0000454 cerebral subcortex 5 31342 -UBERON:0000458 endocervix 5 31343 -UBERON:0001069 head of pancreas 5 31344 -UBERON:0001150 body of pancreas 5 31345 -UBERON:0001151 tail of pancreas 5 31346 -UBERON:0001224 renal pelvis 5 31347 -UBERON:0005249 metanephric renal pelvis 6 31348 -UBERON:0018115 left renal pelvis 6 31349 -UBERON:0018116 right renal pelvis 6 31350 -UBERON:0001228 renal papilla 5 31351 -UBERON:0001230 glomerular capsule 5 31352 -UBERON:0001251 marginal zone of spleen 5 31353 -UBERON:0001257 trigone of urinary bladder 5 31354 -UBERON:0001266 splenic cord 5 31355 -UBERON:0001284 renal column 5 31356 -UBERON:0001285 nephron 5 31357 -UBERON:0004194 long nephron 6 31358 -UBERON:0005132 metanephric long nephron 7 31359 -UBERON:0004195 short nephron 6 31360 -UBERON:0005140 metanephric short nephron 7 31361 -UBERON:0005110 metanephric nephron 6 31362 -UBERON:0005132 metanephric long nephron 7 31363 -UBERON:0005140 metanephric short nephron 7 31364 -UBERON:0005309 pronephric nephron 6 31365 -UBERON:0005322 mesonephric nephron 6 31366 -UBERON:0001293 outer medulla of kidney 5 31367 -UBERON:0001294 inner medulla of kidney 5 31368 -UBERON:0001305 ovarian follicle 5 31369 -UBERON:0000035 primary ovarian follicle 6 31370 -UBERON:0000036 secondary ovarian follicle 6 31371 -UBERON:0000037 tertiary ovarian follicle 6 31372 -UBERON:0003981 primordial ovarian follicle 6 31373 -UBERON:0003982 mature ovarian follicle 6 31374 -UBERON:0000450 corpus albicans 7 31375 -UBERON:0007180 atretic follicle of ovary 6 31376 -UBERON:0012186 ovary growing follicle 6 31377 -UBERON:2001263 ovarian follicle stage I 6 31378 -UBERON:2001265 ovarian follicle stage II 6 31379 -UBERON:2001266 ovarian follicle stage III 6 31380 -UBERON:2001571 postovulatory follicle 6 31381 -UBERON:0001346 vaginal hymen 5 31382 -UBERON:0001609 isthmus of thyroid gland 5 31383 -UBERON:0001711 eyelid 5 31384 -UBERON:0001712 upper eyelid 6 31385 -UBERON:0001713 lower eyelid 6 31386 -UBERON:0010207 nictitating membrane 6 31387 -UBERON:0001726 papilla of tongue 5 31388 -UBERON:0002467 filiform papilla 6 31389 -UBERON:0013638 horny papilla of tongue 6 31390 -UBERON:0013639 mechanical papilla of tongue 6 31391 -UBERON:0014389 gustatory papilla of tongue 6 31392 -UBERON:0000396 vallate papilla 7 31393 -UBERON:0002448 fungiform papilla 7 31394 -UBERON:0002468 foliate papilla 7 31395 -UBERON:0023541 conical papilla 6 31396 -UBERON:0001773 sclera 5 31397 -UBERON:0001783 optic disc 5 31398 -UBERON:0001786 fovea centralis 5 31399 -UBERON:0001851 cortex 5 31400 -UBERON:0001225 cortex of kidney 6 31401 -UBERON:0002189 outer cortex of kidney 7 31402 -UBERON:0010533 metanephros cortex 7 31403 -UBERON:0001235 adrenal cortex 6 31404 -UBERON:0035825 left adrenal gland cortex 7 31405 -UBERON:0035827 right adrenal gland cortex 7 31406 -UBERON:0002006 cortex of lymph node 6 31407 -UBERON:0002077 cortex of hair 6 31408 -UBERON:0002123 cortex of thymus 6 31409 -UBERON:0013191 ovarian cortex 6 31410 -UBERON:0001862 vestibular labyrinth 5 31411 -UBERON:0001869 cerebral hemisphere 5 31412 -UBERON:0002812 left cerebral hemisphere 6 31413 -UBERON:0002813 right cerebral hemisphere 6 31414 -UBERON:0001896 medulla oblongata 5 31415 -UBERON:0001933 retrochiasmatic area 5 31416 -UBERON:0001953 presubiculum 5 31417 -UBERON:0001965 substantia nigra pars compacta 5 31418 -UBERON:0001966 substantia nigra pars reticulata 5 31419 -UBERON:0002172 alveolar atrium 5 31420 -UBERON:0002196 adenohypophysis 5 31421 -UBERON:0002206 mammillary body 5 31422 -UBERON:0002247 uterine horn 5 31423 -UBERON:0009020 left uterine horn 6 31424 -UBERON:0009022 right uterine horn 6 31425 -UBERON:0002259 corpora quadrigemina 5 31426 -UBERON:0002271 periventricular zone of hypothalamus 5 31427 -UBERON:0002272 medial zone of hypothalamus 5 31428 -UBERON:0002273 lateral zone of hypothalamus 5 31429 -UBERON:0002276 lamina of spiral limbus 5 31430 -UBERON:0002282 stria vascularis of cochlear duct 5 31431 -UBERON:0002432 pars intermedia of adenohypophysis 5 31432 -UBERON:0002433 pars tuberalis of adenohypophysis 5 31433 -UBERON:0002494 papillary muscle of heart 5 31434 -UBERON:0004523 papillary muscle of right ventricle 6 31435 -UBERON:0004524 papillary muscle of left ventricle 6 31436 -UBERON:0002499 cochlear labyrinth 5 31437 -UBERON:0002601 fasciolar gyrus 5 31438 -UBERON:0002629 triangular part of inferior frontal gyrus 5 31439 -UBERON:0002728 entorhinal cortex 5 31440 -UBERON:0002738 isthmus of cingulate gyrus 5 31441 -UBERON:0002822 macula lutea proper 5 31442 -UBERON:0002825 superior part of vestibular ganglion 5 31443 -UBERON:0002826 inferior part of vestibular ganglion 5 31444 -UBERON:0002980 opercular part of inferior frontal gyrus 5 31445 -UBERON:0003023 pontine tegmentum 5 31446 -UBERON:0003215 alveolus 5 31447 -UBERON:0002299 alveolus of lung 6 31448 -UBERON:0004861 right lung alveolus 7 31449 -UBERON:0004862 left lung alveolus 7 31450 -UBERON:0003214 mammary gland alveolus 6 31451 -UBERON:0003707 sinus of Valsalva 5 31452 -UBERON:0003891 stroma 5 31453 -UBERON:0001777 substantia propria of cornea 6 31454 -UBERON:0001779 iris stroma 6 31455 -UBERON:0002320 glomerular mesangium 6 31456 -UBERON:0005119 metanephric glomerular mesangium 7 31457 -UBERON:0006182 mesonephric glomerular mesangium 7 31458 -UBERON:0002321 extraglomerular mesangium 6 31459 -UBERON:0002337 endometrial stroma 6 31460 -UBERON:0004184 prostate gland stroma 6 31461 -UBERON:0005169 interstitial tissue 6 31462 -UBERON:0005212 Leydig cell region of testis 7 31463 -UBERON:0005215 kidney interstitium 7 31464 -UBERON:0005211 renal medulla interstitium 8 31465 -UBERON:0005213 outer renal medulla interstitium 9 31466 -UBERON:0005214 inner renal medulla interstitium 9 31467 -UBERON:0018119 left renal medulla interstitium 9 31468 -UBERON:0018120 right renal medulla interstitium 9 31469 -UBERON:0005270 renal cortex interstitium 8 31470 -UBERON:0018117 left renal cortex interstitium 9 31471 -UBERON:0018118 right renal cortex interstitium 9 31472 -UBERON:0006373 perihilar interstitium 8 31473 -UBERON:0018113 left kidney interstitium 8 31474 -UBERON:0018117 left renal cortex interstitium 9 31475 -UBERON:0018119 left renal medulla interstitium 9 31476 -UBERON:0018114 right kidney interstitium 8 31477 -UBERON:0018118 right renal cortex interstitium 9 31478 -UBERON:0018120 right renal medulla interstitium 9 31479 -UBERON:0005206 choroid plexus stroma 6 31480 -UBERON:0006338 lateral ventricle choroid plexus stroma 7 31481 -UBERON:0006339 third ventricle choroid plexus stroma 7 31482 -UBERON:0006340 fourth ventricle choroid plexus stroma 7 31483 -UBERON:0006960 ovary stroma 6 31484 -UBERON:0007195 stroma of bone marrow 6 31485 -UBERON:0009016 ciliary stroma 6 31486 -UBERON:0010233 stroma of thyroid gland 6 31487 -UBERON:0010295 substantia propria of sclera 6 31488 -UBERON:0016478 liver stroma 6 31489 -UBERON:0016480 interlobular stroma of liver 7 31490 -UBERON:0018234 stroma of pancreas 6 31491 -UBERON:0003904 bursal plica 5 31492 -UBERON:0003905 bursal follicle 5 31493 -UBERON:0003951 ocular fundus 5 31494 -UBERON:0003978 valve 5 31495 -UBERON:0000569 ileocecal valve 6 31496 -UBERON:0000946 cardial valve 6 31497 -UBERON:0002086 sinoatrial valve 7 31498 -UBERON:0002133 atrioventricular valve 7 31499 -UBERON:0002134 tricuspid valve 8 31500 -UBERON:0002135 mitral valve 8 31501 -UBERON:0004149 ventriculo bulbo valve 7 31502 -UBERON:0004150 coronary sinus valve 7 31503 -UBERON:0005485 valve of inferior vena cava 7 31504 -UBERON:0005623 semi-lunar valve 7 31505 -UBERON:0002137 aortic valve 8 31506 -UBERON:0002146 pulmonary valve 8 31507 -UBERON:0003979 utricle valve 6 31508 -UBERON:0005208 right atrium valve 6 31509 -UBERON:0002134 tricuspid valve 7 31510 -UBERON:0010189 right atrium venous valve 7 31511 -UBERON:0006675 venous valve 6 31512 -UBERON:0005485 valve of inferior vena cava 7 31513 -UBERON:0010189 right atrium venous valve 7 31514 -UBERON:0009476 madreporite 6 31515 -UBERON:0009973 ureterovesical junction 6 31516 -UBERON:0010016 spiral valve of intestine 6 31517 -UBERON:0010017 spiral valve of cystic duct 6 31518 -UBERON:0010018 spiral valve of conus arteriosus 6 31519 -UBERON:0015420 ureteral valve 6 31520 -UBERON:0017627 rectal valve 6 31521 -UBERON:0034949 lymphatic valve 6 31522 -UBERON:0004151 cardiac chamber 5 31523 -UBERON:0002063 sinus venosus 6 31524 -UBERON:0002081 cardiac atrium 6 31525 -UBERON:0002078 right cardiac atrium 7 31526 -UBERON:0002079 left cardiac atrium 7 31527 -UBERON:0002082 cardiac ventricle 6 31528 -UBERON:0002080 heart right ventricle 7 31529 -UBERON:0002084 heart left ventricle 7 31530 -UBERON:0003983 conus arteriosus 6 31531 -UBERON:0004152 bulbus arteriosus 6 31532 -UBERON:0035553 left cardiac chamber 6 31533 -UBERON:0002079 left cardiac atrium 7 31534 -UBERON:0002084 heart left ventricle 7 31535 -UBERON:0035554 right cardiac chamber 6 31536 -UBERON:0002078 right cardiac atrium 7 31537 -UBERON:0002080 heart right ventricle 7 31538 -UBERON:0004200 kidney pyramid 5 31539 -UBERON:0005111 metanephric pyramid 6 31540 -UBERON:0004358 caput epididymis 5 31541 -UBERON:0004359 corpus epididymis 5 31542 -UBERON:0004360 cauda epididymis 5 31543 -UBERON:0004647 liver lobule 5 31544 -UBERON:0004661 mandible temporal crest 5 31545 -UBERON:0004923 organ component layer 5 31546 -UBERON:0000009 submucosa 6 31547 -UBERON:0004777 respiratory system submucosa 7 31548 -UBERON:0001957 submucosa of bronchus 8 31549 -UBERON:0004949 submucosa of main bronchus 9 31550 -UBERON:0004947 submucosa of right main bronchus 10 31551 -UBERON:0004948 submucosa of left main bronchus 10 31552 -UBERON:0004950 submucosa of lobar bronchus 9 31553 -UBERON:0004951 submucosa of segmental bronchus 9 31554 -UBERON:0004952 submucosa of bronchiole 9 31555 -UBERON:0002202 submucosa of trachea 8 31556 -UBERON:0004778 larynx submucosa 8 31557 -UBERON:0004924 submucosa of pharynx 8 31558 -UBERON:0004925 submucosa of laryngopharynx 9 31559 -UBERON:0004938 submucosa of biliary tree 7 31560 -UBERON:0004926 submucosa of cystic duct 8 31561 -UBERON:0004939 submucosa of common bile duct 8 31562 -UBERON:0004940 submucosa of common hepatic duct 8 31563 -UBERON:0004941 submucosa of right hepatic duct 8 31564 -UBERON:0004942 submucosa of left hepatic duct 8 31565 -UBERON:0004943 submucosa of urinary bladder 7 31566 -UBERON:0004944 submucosa of trigone of urinary bladder 8 31567 -UBERON:0004945 submucosa of neck of urinary bladder 8 31568 -UBERON:0011298 submucosa of uterine tube 7 31569 -UBERON:0018257 submucosa of digestive tract 7 31570 -UBERON:0001200 submucosa of stomach 8 31571 -UBERON:0004933 submucosa of fundus of stomach 9 31572 -UBERON:0004934 submucosa of body of stomach 9 31573 -UBERON:0004935 submucosa of cardia of stomach 9 31574 -UBERON:0004937 submucosa of pylorus 9 31575 -UBERON:0004936 submucosa of pyloric antrum 10 31576 -UBERON:0001972 submucosa of esophagus 8 31577 -UBERON:0035843 lower esophagus submucosa 9 31578 -UBERON:0004924 submucosa of pharynx 8 31579 -UBERON:0004925 submucosa of laryngopharynx 9 31580 -UBERON:0009566 intestinal submucosa 8 31581 -UBERON:0001205 submucosa of small intestine 9 31582 -UBERON:0003332 submucosa of duodenum 10 31583 -UBERON:0003333 submucosa of jejunum 10 31584 -UBERON:0004946 submucosa of ileum 10 31585 -UBERON:0001208 submucosa of large intestine 9 31586 -UBERON:0003329 submucosa of anal canal 10 31587 -UBERON:0003330 submucosa of rectum 10 31588 -UBERON:0003331 submucosa of colon 10 31589 -UBERON:0004927 submucosa of cecum 11 31590 -UBERON:0004928 submucosa of appendix 12 31591 -UBERON:0004929 submucosa of ascending colon 11 31592 -UBERON:0004930 submucosa of transverse colon 11 31593 -UBERON:0004931 submucosa of descending colon 11 31594 -UBERON:0004932 submucosa of sigmoid colon 11 31595 -UBERON:0012482 submucosa of cloaca 8 31596 -UBERON:0035839 esophagogastric junction submucosa 7 31597 -UBERON:0000030 lamina propria 6 31598 -UBERON:0001253 lamina propria of ureter 7 31599 -UBERON:0001261 lamina propria of urinary bladder 7 31600 -UBERON:0001974 lamina propria of esophagus 7 31601 -UBERON:0002326 lamina propria of urethra 7 31602 -UBERON:0016516 lamina propria of prostatic urethra 8 31603 -UBERON:0004779 respiratory system lamina propria 7 31604 -UBERON:0000031 lamina propria of trachea 8 31605 -UBERON:0002338 lamina propria of bronchus 9 31606 -UBERON:0004780 gastrointestinal system lamina propria 7 31607 -UBERON:0001238 lamina propria of small intestine 8 31608 -UBERON:0015834 duodenum lamina propria 9 31609 -UBERON:0011189 lamina propria of large intestine 8 31610 -UBERON:0007177 lamina propria of mucosa of colon 9 31611 -UBERON:0016511 lamina propria of fundus of stomach 8 31612 -UBERON:0004781 gall bladder lamina propria 7 31613 -UBERON:0005205 lamina propria of vagina 7 31614 -UBERON:0005334 oral lamina propria 7 31615 -UBERON:0000158 membranous layer 6 31616 -UBERON:0000156 theca externa 7 31617 -UBERON:0000157 theca interna 7 31618 -UBERON:0000312 inner cambium layer of periosteum 7 31619 -UBERON:0002269 pupillary membrane 7 31620 -UBERON:0002515 periosteum 7 31621 -UBERON:0013687 pericranium 8 31622 -UBERON:0016896 periosteum of long bone 8 31623 -UBERON:0004403 periosteum of epiphysis 9 31624 -UBERON:0003893 capsule 7 31625 -UBERON:0001307 capsule of ovary 8 31626 -UBERON:0001746 capsule of thyroid gland 8 31627 -UBERON:0001748 capsule of parathyroid gland 8 31628 -UBERON:0002052 adrenal gland capsule 8 31629 -UBERON:0002122 capsule of thymus 8 31630 -UBERON:0002194 capsule of lymph node 8 31631 -UBERON:0004641 spleen capsule 8 31632 -UBERON:0005207 tonsil capsule 8 31633 -UBERON:0016479 capsule of liver 8 31634 -UBERON:0018235 capsule of pancreas 8 31635 -UBERON:0035316 prostatic capsule 8 31636 -UBERON:0004369 Reichert's membrane 7 31637 -UBERON:0004666 interventricular septum membranous part 7 31638 -UBERON:0005631 extraembryonic membrane 7 31639 -UBERON:0000305 amnion 8 31640 -UBERON:0001040 yolk sac 8 31641 -UBERON:0008852 visceral yolk sac 9 31642 -UBERON:0008853 parietal yolk sac 9 31643 -UBERON:0003124 chorion membrane 8 31644 -UBERON:0004340 allantois 8 31645 -UBERON:0005335 chorioallantoic membrane 8 31646 -UBERON:0005630 fetal membrane 8 31647 -UBERON:0006217 cloacal membrane 7 31648 -UBERON:0006610 tunica albuginea 7 31649 -UBERON:0006643 tunica albuginea of testis 8 31650 -UBERON:0006644 tunica albuginea of ovary 8 31651 -UBERON:0006614 aponeurosis 7 31652 -UBERON:0006661 epicranial aponeurosis 8 31653 -UBERON:0011289 pharyngobasilar fascia 8 31654 -UBERON:0014780 palatine aponeurosis 8 31655 -UBERON:4200041 aponeurosis palmaris 8 31656 -UBERON:0006650 tunica vaginalis testis 7 31657 -UBERON:0009002 placental membrane 7 31658 -UBERON:0014849 hemotrichorial placental membrane 8 31659 -UBERON:0014850 hemomonochorial placental membrane 8 31660 -UBERON:0009858 outer fibrous layer of periosteum 7 31661 -UBERON:0009859 endosteum 7 31662 -UBERON:0012103 suspensory ligament of breast 7 31663 -UBERON:0036271 omphalopleure 7 31664 -UBERON:0036272 bilaminar omphalopleure 8 31665 -UBERON:0036273 trilaminar omphalopleure 8 31666 -UBERON:0000304 tendon sheath 6 31667 -UBERON:0000344 mucosa 6 31668 -UBERON:0001259 mucosa of urinary bladder 7 31669 -UBERON:0005009 mucosa of trigone of urinary bladder 8 31670 -UBERON:0005010 mucosa of neck of urinary bladder 8 31671 -UBERON:0002469 esophagus mucosa 7 31672 -UBERON:0035834 lower esophagus mucosa 8 31673 -UBERON:0003729 mouth mucosa 7 31674 -UBERON:0001828 gingiva 8 31675 -UBERON:0011601 gingiva of upper jaw 9 31676 -UBERON:0011602 gingiva of lower jaw 9 31677 -UBERON:0003343 mucosa of oral region 8 31678 -UBERON:0005019 mucosa of palate 8 31679 -UBERON:0005024 mucosa of soft palate 9 31680 -UBERON:0005025 mucosa of uvula 10 31681 -UBERON:0005046 mucosa of hard palate 9 31682 -UBERON:0005020 mucosa of tongue 8 31683 -UBERON:0006689 frenulum of tongue 9 31684 -UBERON:0010052 mucosa of dorsum of tongue 9 31685 -UBERON:0006956 buccal mucosa 8 31686 -UBERON:0035967 alveolar mucosa 8 31687 -UBERON:0036293 oral frenulum 8 31688 -UBERON:0006689 frenulum of tongue 9 31689 -UBERON:0016910 frenulum of lip 9 31690 -UBERON:0016912 frenulum of upper lip 10 31691 -UBERON:0016913 frenulum of lower lip 10 31692 -UBERON:0036294 mucosa of lip 8 31693 -UBERON:0005031 mucosa of upper lip 9 31694 -UBERON:0016912 frenulum of upper lip 10 31695 -UBERON:0005032 mucosa of lower lip 9 31696 -UBERON:0016913 frenulum of lower lip 10 31697 -UBERON:0016910 frenulum of lip 9 31698 -UBERON:0016912 frenulum of upper lip 10 31699 -UBERON:0016913 frenulum of lower lip 10 31700 -UBERON:0004785 respiratory system mucosa 7 31701 -UBERON:0000355 pharyngeal mucosa 8 31702 -UBERON:0004987 mucosa of laryngopharynx 9 31703 -UBERON:0004982 mucosa of epiglottis 10 31704 -UBERON:0005022 mucosa of nasopharynx 9 31705 -UBERON:0005023 mucosa of oropharynx 9 31706 -UBERON:0000379 tracheal mucosa 8 31707 -UBERON:0000410 bronchial mucosa 9 31708 -UBERON:0005036 mucosa of main bronchus 10 31709 -UBERON:0005034 mucosa of right main bronchus 11 31710 -UBERON:0005035 mucosa of left main bronchus 11 31711 -UBERON:0005037 mucosa of lobar bronchus 10 31712 -UBERON:0005038 mucosa of segmental bronchus 10 31713 -UBERON:0005039 mucosa of bronchiole 10 31714 -UBERON:0005040 mucosa of terminal bronchiole 11 31715 -UBERON:0005041 mucosa of respiratory bronchiole 11 31716 -UBERON:0001824 mucosa of larynx 9 31717 -UBERON:0005047 mucosa of vocal fold 10 31718 -UBERON:0001826 nasal cavity mucosa 9 31719 -UBERON:0005386 olfactory segment of nasal mucosa 10 31720 -UBERON:0015786 respiratory segment of nasal mucosa 10 31721 -UBERON:0005022 mucosa of nasopharynx 9 31722 -UBERON:0004786 gastrointestinal system mucosa 7 31723 -UBERON:0001199 mucosa of stomach 8 31724 -UBERON:0004994 mucosa of fundus of stomach 9 31725 -UBERON:0004995 mucosa of body of stomach 9 31726 -UBERON:0004996 mucosa of cardia of stomach 9 31727 -UBERON:0004998 mucosa of pylorus 9 31728 -UBERON:0004997 mucosa of pyloric antrum 10 31729 -UBERON:0006931 stomach glandular region mucosa 9 31730 -UBERON:0010154 inner lining mucosa of the abomasum 10 31731 -UBERON:0012651 mucosa of gastroduodenal junction 9 31732 -UBERON:0001242 intestinal mucosa 8 31733 -UBERON:0001204 mucosa of small intestine 9 31734 -UBERON:0000320 duodenal mucosa 10 31735 -UBERON:0000331 ileal mucosa 10 31736 -UBERON:0000399 jejunal mucosa 10 31737 -UBERON:0001207 mucosa of large intestine 9 31738 -UBERON:0000317 colonic mucosa 10 31739 -UBERON:0000314 cecum mucosa 11 31740 -UBERON:0004989 mucosa of appendix 12 31741 -UBERON:0004990 mucosa of ascending colon 11 31742 -UBERON:0004991 mucosa of transverse colon 11 31743 -UBERON:0004992 mucosa of descending colon 11 31744 -UBERON:0004993 mucosa of sigmoid colon 11 31745 -UBERON:0003342 mucosa of anal canal 10 31746 -UBERON:0003346 mucosa of rectum 10 31747 -UBERON:0013067 colorectal mucosa 10 31748 -UBERON:0005023 mucosa of oropharynx 8 31749 -UBERON:0004980 mucosa of ureter 7 31750 -UBERON:0005004 mucosa of right ureter 8 31751 -UBERON:0005005 mucosa of left ureter 8 31752 -UBERON:0004999 mucosa of biliary tree 7 31753 -UBERON:0004988 mucosa of cystic duct 8 31754 -UBERON:0005000 mucosa of common bile duct 8 31755 -UBERON:0005001 mucosa of common hepatic duct 8 31756 -UBERON:0005002 mucosa of right hepatic duct 8 31757 -UBERON:0005003 mucosa of left hepatic duct 8 31758 -UBERON:0005006 mucosa of renal pelvis 7 31759 -UBERON:0005007 mucosa of major calyx 8 31760 -UBERON:0005008 mucosa of minor calyx 8 31761 -UBERON:0005018 mucosa of nasal septum 7 31762 -UBERON:0005021 mucosa of sphenoidal sinus 7 31763 -UBERON:0005026 mucosa of middle ear 7 31764 -UBERON:0005044 mucosa of pharyngotympanic tube 8 31765 -UBERON:0005027 mucosa of frontal sinus 7 31766 -UBERON:0005028 mucosa of maxillary sinus 7 31767 -UBERON:0005029 mucosa of lacrimal canaliculus 7 31768 -UBERON:0005030 mucosa of paranasal sinus 7 31769 -UBERON:0011986 mucosa of infraorbital sinus 8 31770 -UBERON:0005033 mucosa of gallbladder 7 31771 -UBERON:0005043 mucosa of nasolacrimal duct 7 31772 -UBERON:0005017 mucosa of lacrimal sac 8 31773 -UBERON:0005045 mucosa of ethmoidal sinus 7 31774 -UBERON:0012299 mucosa of urethra 7 31775 -UBERON:0005013 mucosa of male urethra 8 31776 -UBERON:0005015 mucosa of prostatic urethra 9 31777 -UBERON:0005014 mucosa of female urethra 8 31778 -UBERON:0005016 mucosa of intermediate urethra 8 31779 -UBERON:0012480 cloacal mucosa 7 31780 -UBERON:0019042 reproductive system mucosa 7 31781 -UBERON:0001295 endometrium 8 31782 -UBERON:0012248 cervical mucosa 9 31783 -UBERON:0004983 mucosa of vagina 8 31784 -UBERON:0004984 mucosa of seminal vesicle 8 31785 -UBERON:0004985 mucosa of ejaculatory duct 8 31786 -UBERON:0004986 mucosa of deferent duct 8 31787 -UBERON:0005048 mucosa of uterine tube 8 31788 -UBERON:0005011 mucosa of right uterine tube 9 31789 -UBERON:0005012 mucosa of left uterine tube 9 31790 -UBERON:0005049 mucosa of infundibulum of uterine tube 8 31791 -UBERON:0018343 oviduct mucosal fold 8 31792 -UBERON:0034885 viscerocranial mucosa 7 31793 -UBERON:0035838 esophagogastric junction mucosa 7 31794 -UBERON:0000437 arachnoid barrier layer 6 31795 -UBERON:0001213 intestinal villus 6 31796 -UBERON:0008342 intestinal villus of duodenum 7 31797 -UBERON:0008343 intestinal villus of jejunum 7 31798 -UBERON:0008344 intestinal villus of ileum 7 31799 -UBERON:0001768 uvea 6 31800 -UBERON:0002400 parietal pleura 6 31801 -UBERON:0002523 tunica intima 6 31802 -UBERON:0002165 endocardium 7 31803 -UBERON:0001081 endocardium of ventricle 8 31804 -UBERON:0009712 endocardium of right ventricle 9 31805 -UBERON:0009713 endocardium of left ventricle 9 31806 -UBERON:0002166 endocardium of atrium 8 31807 -UBERON:0009129 right atrium endocardium 9 31808 -UBERON:0011007 endocardium of right auricle 10 31809 -UBERON:0011005 endocardium of auricle 9 31810 -UBERON:0011006 endocardium of left auricle 10 31811 -UBERON:0011007 endocardium of right auricle 10 31812 -UBERON:0034903 left atrium endocardium 9 31813 -UBERON:0011006 endocardium of left auricle 10 31814 -UBERON:0003930 atrioventricular canal endocardium 8 31815 -UBERON:0005243 interventricular septum endocardium 8 31816 -UBERON:0003619 aorta tunica intima 7 31817 -UBERON:0005740 tunica intima of artery 7 31818 -UBERON:0007242 tunica intima of vein 7 31819 -UBERON:0004797 blood vessel layer 6 31820 -UBERON:0002522 tunica media 7 31821 -UBERON:0003618 aorta tunica media 8 31822 -UBERON:0007239 tunica media of artery 8 31823 -UBERON:0006563 tunica media of pulmonary trunk 9 31824 -UBERON:0007243 tunica media of vein 8 31825 -UBERON:0003619 aorta tunica intima 7 31826 -UBERON:0005007 mucosa of major calyx 7 31827 -UBERON:0005008 mucosa of minor calyx 7 31828 -UBERON:0005734 tunica adventitia of blood vessel 7 31829 -UBERON:0004664 aorta tunica adventitia 8 31830 -UBERON:0007240 tunica adventitia of artery 8 31831 -UBERON:0007241 tunica adventitia of vein 8 31832 -UBERON:0005740 tunica intima of artery 7 31833 -UBERON:0007242 tunica intima of vein 7 31834 -UBERON:0005283 tela choroidea 6 31835 -UBERON:0005286 tela choroidea of midbrain cerebral aqueduct 7 31836 -UBERON:0005287 tela choroidea of fourth ventricle 7 31837 -UBERON:0005288 tela choroidea of third ventricle 7 31838 -UBERON:0005289 tela choroidea of telencephalic ventricle 7 31839 -UBERON:0005336 capillary layer of choroid 6 31840 -UBERON:0005358 ventricle of nervous system 6 31841 -UBERON:0004086 brain ventricle 7 31842 -UBERON:0002285 telencephalic ventricle 8 31843 -UBERON:0002651 anterior horn of lateral ventricle 9 31844 -UBERON:0002655 body of lateral ventricle 9 31845 -UBERON:0004672 posterior horn lateral ventricle 9 31846 -UBERON:0013161 left lateral ventricle 9 31847 -UBERON:0013162 right lateral ventricle 9 31848 -UBERON:0002286 third ventricle 8 31849 -UBERON:0002289 midbrain cerebral aqueduct 8 31850 -UBERON:0002422 fourth ventricle 8 31851 -UBERON:0036658 wall of central canal of spinal cord 7 31852 -UBERON:0036661 wall of ventricular system of brain 7 31853 -UBERON:0036654 wall of lateral ventricle 8 31854 -UBERON:0036655 wall of cerebral aqueduct 8 31855 -UBERON:0036656 wall of third ventricle 8 31856 -UBERON:0036657 wall of fourth ventricle 8 31857 -UBERON:0005388 photoreceptor array 6 31858 -UBERON:0000966 retina 7 31859 -UBERON:0005452 hepatic cord 6 31860 -UBERON:0005742 adventitia 6 31861 -UBERON:0001252 adventitia of ureter 7 31862 -UBERON:0005734 tunica adventitia of blood vessel 7 31863 -UBERON:0004664 aorta tunica adventitia 8 31864 -UBERON:0007240 tunica adventitia of artery 8 31865 -UBERON:0007241 tunica adventitia of vein 8 31866 -UBERON:0005737 swim bladder tunica externa 7 31867 -UBERON:0005738 swim bladder tunica interna 7 31868 -UBERON:0006645 adventitia of epididymis 7 31869 -UBERON:0006647 adventitia of ductus deferens 7 31870 -UBERON:0006648 adventitia of seminal vesicle 7 31871 -UBERON:0012504 adventitia of esophagus 7 31872 -UBERON:0005983 heart layer 6 31873 -UBERON:0002165 endocardium 7 31874 -UBERON:0001081 endocardium of ventricle 8 31875 -UBERON:0009712 endocardium of right ventricle 9 31876 -UBERON:0009713 endocardium of left ventricle 9 31877 -UBERON:0002166 endocardium of atrium 8 31878 -UBERON:0009129 right atrium endocardium 9 31879 -UBERON:0011007 endocardium of right auricle 10 31880 -UBERON:0011005 endocardium of auricle 9 31881 -UBERON:0011006 endocardium of left auricle 10 31882 -UBERON:0011007 endocardium of right auricle 10 31883 -UBERON:0034903 left atrium endocardium 9 31884 -UBERON:0011006 endocardium of left auricle 10 31885 -UBERON:0003930 atrioventricular canal endocardium 8 31886 -UBERON:0005243 interventricular septum endocardium 8 31887 -UBERON:0002349 myocardium 7 31888 -UBERON:0001083 myocardium of ventricle 8 31889 -UBERON:0006566 left ventricle myocardium 9 31890 -UBERON:0036290 myocardium of anterior wall of left ventricle 10 31891 -UBERON:0006567 right ventricle myocardium 9 31892 -UBERON:0036291 myocardium of anterior wall of right ventricle 10 31893 -UBERON:0002302 myocardium of atrium 8 31894 -UBERON:0004265 outflow tract myocardium 8 31895 -UBERON:0005248 bulbus cordis myocardium 8 31896 -UBERON:0004123 myocardial layer 7 31897 -UBERON:0004124 myocardium trabecular layer 8 31898 -UBERON:0004126 trabecular layer of ventricle 9 31899 -UBERON:0005064 left ventricular trabecular myocardium 10 31900 -UBERON:0005066 right ventricular trabecular myocardium 10 31901 -UBERON:0004125 myocardial compact layer 8 31902 -UBERON:0004127 compact layer of ventricle 9 31903 -UBERON:0005063 left ventricular compact myocardium 10 31904 -UBERON:0005065 right ventricular compact myocardium 10 31905 -UBERON:0004666 interventricular septum membranous part 7 31906 -UBERON:0005984 subendocardium layer 7 31907 -UBERON:0005994 chorda tendineae 7 31908 -UBERON:0014851 chorda tendinea of left ventricle 8 31909 -UBERON:0014852 chorda tendinea of right ventricle 8 31910 -UBERON:0007182 muscle layer of infundibulum of uterine tube 7 31911 -UBERON:0010291 layer of sclera 6 31912 -UBERON:0010292 episcleral layer of eyeball 7 31913 -UBERON:0010294 scleral endothelium 7 31914 -UBERON:0010295 substantia propria of sclera 7 31915 -UBERON:0010293 suprachoroid lamina 6 31916 -UBERON:0010507 layer of dura mater 6 31917 -UBERON:0010505 periosteal dura mater 7 31918 -UBERON:0010506 meningeal dura mater 7 31919 -UBERON:0011234 fibrous membrane of synovial tendon sheath 6 31920 -UBERON:0012375 subserosa 6 31921 -UBERON:0012430 tunica fibrosa of eyeball 6 31922 -UBERON:0013399 blood vessel layer of choroid 6 31923 -UBERON:0013476 dermal layer of tongue 6 31924 -UBERON:0013754 integumentary system layer 6 31925 -UBERON:0001992 papillary layer of dermis 7 31926 -UBERON:0001993 reticular layer of dermis 7 31927 -UBERON:0002025 stratum basale of epidermis 7 31928 -UBERON:0002026 stratum spinosum of epidermis 7 31929 -UBERON:0002027 stratum corneum of epidermis 7 31930 -UBERON:0002284 hyponychium 8 31931 -UBERON:0002067 dermis 7 31932 -UBERON:3010599 stratum spongiosum 8 31933 -UBERON:0002069 stratum granulosum of epidermis 7 31934 -UBERON:0002071 stratum lucidum of epidermis 7 31935 -UBERON:0002072 hypodermis 7 31936 -UBERON:0007377 stratum compactum of dermis 7 31937 -UBERON:0008198 nail plate 7 31938 -UBERON:0010402 epidermis suprabasal layer 7 31939 -UBERON:0011190 lunule of nail 7 31940 -UBERON:0012103 suspensory ligament of breast 7 31941 -UBERON:0012244 stratum intermedium of epidermis 7 31942 -UBERON:0035609 outer root sheath companion layer 7 31943 -UBERON:0036294 mucosa of lip 7 31944 -UBERON:0005031 mucosa of upper lip 8 31945 -UBERON:0016912 frenulum of upper lip 9 31946 -UBERON:0005032 mucosa of lower lip 8 31947 -UBERON:0016913 frenulum of lower lip 9 31948 -UBERON:0016910 frenulum of lip 8 31949 -UBERON:0016912 frenulum of upper lip 9 31950 -UBERON:0016913 frenulum of lower lip 9 31951 -UBERON:0014510 lamina of omasum 6 31952 -UBERON:0018260 layer of muscle tissue 6 31953 -UBERON:0002349 myocardium 7 31954 -UBERON:0001083 myocardium of ventricle 8 31955 -UBERON:0006566 left ventricle myocardium 9 31956 -UBERON:0036290 myocardium of anterior wall of left ventricle 10 31957 -UBERON:0006567 right ventricle myocardium 9 31958 -UBERON:0036291 myocardium of anterior wall of right ventricle 10 31959 -UBERON:0002302 myocardium of atrium 8 31960 -UBERON:0004265 outflow tract myocardium 8 31961 -UBERON:0005248 bulbus cordis myocardium 8 31962 -UBERON:0006660 muscular coat 7 31963 -UBERON:0004224 muscular coat of vas deferens 8 31964 -UBERON:0004665 muscular coat of seminal vesicle 8 31965 -UBERON:0006642 muscle layer of oviduct 8 31966 -UBERON:0006646 muscle layer of epididymis 8 31967 -UBERON:0006652 muscular layer of vagina 8 31968 -UBERON:0006855 muscular coat of ureter 8 31969 -UBERON:0007182 muscle layer of infundibulum of uterine tube 8 31970 -UBERON:0012378 muscle layer of urinary bladder 8 31971 -UBERON:0016515 muscular layer of prostatic urethra 8 31972 -UBERON:0016524 muscle layer of spongiose part of urethra 8 31973 -UBERON:0018261 muscular coat of digestive tract 8 31974 -UBERON:0008856 stomach muscularis externa 9 31975 -UBERON:0011878 muscle layer of esophagus 9 31976 -UBERON:0035833 lower esophagus muscularis layer 10 31977 -UBERON:0012367 muscle layer of intestine 9 31978 -UBERON:0011198 muscle layer of large intestine 10 31979 -UBERON:0012489 muscle layer of colon 11 31980 -UBERON:0035805 muscle layer of sigmoid colon 12 31981 -UBERON:0012490 muscle layer of anal canal 11 31982 -UBERON:0018111 muscle layer of rectum 11 31983 -UBERON:0011201 muscle layer of small intestine 10 31984 -UBERON:0012377 muscle layer of jejunum 11 31985 -UBERON:0012488 muscle layer of duodenum 11 31986 -UBERON:0014390 muscle layer of ileum 11 31987 -UBERON:0012486 muscle layer of cloaca 9 31988 -UBERON:0035841 esophagogastric junction muscularis propria 8 31989 -UBERON:0034933 layer of smooth muscle tissue 7 31990 -UBERON:0001296 myometrium 8 31991 -UBERON:0004224 muscular coat of vas deferens 8 31992 -UBERON:0008856 stomach muscularis externa 8 31993 -UBERON:0008862 stomach smooth muscle inner oblique layer 8 31994 -UBERON:0012368 circular muscle layer of muscular coat 8 31995 -UBERON:0001244 internal anal sphincter 9 31996 -UBERON:0008857 stomach smooth muscle circular layer 9 31997 -UBERON:0009960 esophagus smooth muscle circular layer 9 31998 -UBERON:0012398 large intestine smooth muscle circular layer 9 31999 -UBERON:0012401 small intestine smooth muscle circular layer 9 32000 -UBERON:0012369 longitudinal muscle layer of muscular coat 8 32001 -UBERON:0008582 superior longitudinal muscle of tongue 9 32002 -UBERON:0008863 stomach smooth muscle outer longitudinal layer 9 32003 -UBERON:0009961 esophagus smooth muscle longitudinal layer 9 32004 -UBERON:0012399 large intestine smooth muscle longitudinal layer 9 32005 -UBERON:0012402 small intestine smooth muscle longitudinal layer 9 32006 -UBERON:0012419 taenia coli 8 32007 -UBERON:0022350 visceral serous membrane 6 32008 -UBERON:0001178 visceral peritoneum 7 32009 -UBERON:0002401 visceral pleura 7 32010 -UBERON:0002425 visceral serous pericardium 7 32011 -UBERON:0022351 parietal serous membrane 6 32012 -UBERON:0001366 parietal peritoneum 7 32013 -UBERON:0002408 parietal serous pericardium 7 32014 -UBERON:0035966 scleral lamina cribrosa 6 32015 -UBERON:0036167 Sattler's layer 6 32016 -UBERON:0036168 Haller's layer 6 32017 -UBERON:0005096 descending thin limb 5 32018 -UBERON:0005116 metanephric descending thin limb 6 32019 -UBERON:0005236 osseus labyrinth vestibule 5 32020 -UBERON:0005271 juxtamedullary cortex 5 32021 -UBERON:0005305 thyroid follicle 5 32022 -UBERON:0005449 greater sac 5 32023 -UBERON:0005749 glomerular tuft 5 32024 -UBERON:0005817 neuraxis flexure 5 32025 -UBERON:0005818 cephalic midbrain flexure 6 32026 -UBERON:0005819 cervical flexure 6 32027 -UBERON:0005820 pontine flexure 6 32028 -UBERON:0005905 insect labrum 5 32029 -UBERON:0005979 crista terminalis 5 32030 -UBERON:0005980 pectinate muscle 5 32031 -UBERON:0006003 integumentary adnexa 5 32032 -UBERON:0002419 skin gland 6 32033 -UBERON:0003605 eye skin gland 7 32034 -UBERON:0003484 eye sebaceous gland 8 32035 -UBERON:0013231 sebaceous gland of eyelid 9 32036 -UBERON:0001818 tarsal gland 10 32037 -UBERON:0018233 gland of Zeis 10 32038 -UBERON:0013228 sweat gland of eyelid 8 32039 -UBERON:0007771 epidermis gland 7 32040 -UBERON:0001820 sweat gland 8 32041 -UBERON:0000382 apocrine sweat gland 9 32042 -UBERON:0013211 cerumen gland 10 32043 -UBERON:0013228 sweat gland of eyelid 10 32044 -UBERON:0018232 axillary sweat gland 10 32045 -UBERON:0034762 areolar sweat gland 10 32046 -UBERON:0000423 eccrine sweat gland 9 32047 -UBERON:0014391 palmar/plantar sweat gland 10 32048 -UBERON:0007773 scrotal sweat gland 9 32049 -UBERON:0001821 sebaceous gland 8 32050 -UBERON:0003485 vagina sebaceous gland 9 32051 -UBERON:0003487 skin sebaceous gland 9 32052 -UBERON:0003484 eye sebaceous gland 10 32053 -UBERON:0013231 sebaceous gland of eyelid 11 32054 -UBERON:0001818 tarsal gland 12 32055 -UBERON:0018233 gland of Zeis 12 32056 -UBERON:0011827 areolar gland 9 32057 -UBERON:0015251 modified sebaceous gland 9 32058 -UBERON:0000359 preputial gland 10 32059 -UBERON:0005301 male preputial gland 11 32060 -UBERON:0005302 female preputial gland 11 32061 -UBERON:0001818 tarsal gland 10 32062 -UBERON:0012281 perianal sebaceous gland 10 32063 -UBERON:1000022 Zymbal's gland 10 32064 -UBERON:0004790 skin mucous gland 8 32065 -UBERON:0012177 skin apocrine gland 7 32066 -UBERON:0016852 skin scent gland 7 32067 -UBERON:0012281 perianal sebaceous gland 8 32068 -UBERON:0016853 interdigital gland 8 32069 -UBERON:0013703 integumentary projection 6 32070 -UBERON:0000021 cutaneous appendage 7 32071 -UBERON:0000022 feather 8 32072 -UBERON:0008291 down feather 9 32073 -UBERON:0008292 vaned feather 9 32074 -UBERON:0008297 pennaceous feather 10 32075 -UBERON:0011793 flight feather 11 32076 -UBERON:0011794 rectrix feather 12 32077 -UBERON:0011795 remex feather 12 32078 -UBERON:0011796 primary remex feather 13 32079 -UBERON:0011797 secondary remex feather 13 32080 -UBERON:0011798 tertial remex feather 13 32081 -UBERON:0008293 filoplume feather 9 32082 -UBERON:0014480 blood feather 9 32083 -UBERON:0018355 rictal bristle 9 32084 -UBERON:0018535 forelimb feather 9 32085 -UBERON:0018536 wing feather 10 32086 -UBERON:0011795 remex feather 11 32087 -UBERON:0011796 primary remex feather 12 32088 -UBERON:0011797 secondary remex feather 12 32089 -UBERON:0011798 tertial remex feather 12 32090 -UBERON:0018537 tail feather 9 32091 -UBERON:0011794 rectrix feather 10 32092 -UBERON:0018538 breast feather 9 32093 -UBERON:0018539 dorsal feather 9 32094 -UBERON:0018688 hindlimb feather 9 32095 -UBERON:0018689 crural feather 10 32096 -UBERON:0034930 auricular feather 9 32097 -UBERON:0000329 hair root 8 32098 -UBERON:0001037 strand of hair 8 32099 -UBERON:0001702 eyelash 9 32100 -UBERON:0019254 upper eyelash 10 32101 -UBERON:0019255 lower eyelash 10 32102 -UBERON:0006378 strand of vibrissa hair 9 32103 -UBERON:0010509 strand of pelage hair 9 32104 -UBERON:0010510 strand of auchene hair 10 32105 -UBERON:0010511 strand of awl hair 10 32106 -UBERON:0010512 strand of guard hair 10 32107 -UBERON:0010513 strand of zigzag hair 10 32108 -UBERON:0013196 strand of wool 10 32109 -UBERON:0010514 strand of duvet hair 9 32110 -UBERON:0013494 keratin-coated spine 9 32111 -UBERON:0013495 barbed keratin-coated spine 10 32112 -UBERON:0013496 unbarbed keratin-coated spine 10 32113 -UBERON:0013698 strand of pubic hair 9 32114 -UBERON:0013699 strand of axillary hair 9 32115 -UBERON:0015144 autopod hair 9 32116 -UBERON:0015145 pes hair 10 32117 -UBERON:0015146 manus hair 10 32118 -UBERON:0015148 tail hair 9 32119 -UBERON:0015149 ventral hair 9 32120 -UBERON:0015150 dorsal hair 9 32121 -UBERON:0016446 hair of head 9 32122 -UBERON:0010171 strand of hair of face 10 32123 -UBERON:0011931 nasal hair 11 32124 -UBERON:0019254 upper eyelash 11 32125 -UBERON:0019255 lower eyelash 11 32126 -UBERON:0022279 strand of hair on external ear 10 32127 -UBERON:0015147 pinna hair 11 32128 -UBERON:0016447 hair of trunk 9 32129 -UBERON:0010513 strand of zigzag hair 10 32130 -UBERON:0022285 strand of tylotrich hair 9 32131 -UBERON:0002074 hair shaft 8 32132 -UBERON:0007623 comb and wattle 8 32133 -UBERON:0011901 hair matrix 8 32134 -UBERON:0012176 comb 8 32135 -UBERON:0013206 nasal tentacle 8 32136 -UBERON:0008294 feather barb 7 32137 -UBERON:0008295 feather barbule 7 32138 -UBERON:0009564 distal limb integumentary appendage 7 32139 -UBERON:0001705 nail 8 32140 -UBERON:0000212 toilet claw 9 32141 -UBERON:0009565 nail of manual digit 9 32142 -UBERON:0011273 nail of manual digit 1 10 32143 -UBERON:0011274 nail of manual digit 2 10 32144 -UBERON:0011275 nail of manual digit 3 10 32145 -UBERON:0011276 nail of manual digit 4 10 32146 -UBERON:0011277 nail of manual digit 5 10 32147 -UBERON:0009567 nail of pedal digit 9 32148 -UBERON:0011278 nail of pedal digit 1 10 32149 -UBERON:0011279 nail of pedal digit 2 10 32150 -UBERON:0011280 nail of pedal digit 3 10 32151 -UBERON:0011281 nail of pedal digit 4 10 32152 -UBERON:0011282 nail of pedal digit 5 10 32153 -UBERON:0008963 hoof 8 32154 -UBERON:4100008 pedal claws 8 32155 -UBERON:4200179 manual claw 8 32156 -UBERON:0011785 ramus of feather barb 7 32157 -UBERON:0011786 ramus of feather barbule 7 32158 -UBERON:0012127 feather barbicel 7 32159 -UBERON:0017163 skin bony tubercle 7 32160 -UBERON:0018362 supracondylar tubercle 8 32161 -UBERON:2002249 ctenius 7 32162 -UBERON:3010093 villosities 7 32163 -UBERON:4200092 flexor tubercle of ungual 7 32164 -UBERON:0006009 cusp of cardiac valve 5 32165 -UBERON:0005990 aortic valve cusp 6 32166 -UBERON:0005992 pulmonary valve cusp 6 32167 -UBERON:0005996 mitral valve cusp 6 32168 -UBERON:0005998 tricuspid valve cusp 6 32169 -UBERON:0006059 falx cerebri 5 32170 -UBERON:0006081 fundus of gallbladder 5 32171 -UBERON:0006082 fundus of urinary bladder 5 32172 -UBERON:0006088 inferior parietal cortex 5 32173 -UBERON:0006091 inferior horn of the lateral ventricle 5 32174 -UBERON:0006094 superior parietal cortex 5 32175 -UBERON:0006203 conchal part of pinna 5 32176 -UBERON:0006205 pectineal ligament 5 32177 -UBERON:0006360 tongue intermolar eminence 5 32178 -UBERON:0006594 gubernacular cord 5 32179 -UBERON:0006674 inguinal ring 5 32180 -UBERON:0013717 superficial inguinal ring 6 32181 -UBERON:0013721 deep inguinal ring 6 32182 -UBERON:0018531 female superficial inguinal ring 7 32183 -UBERON:0018532 female deep inguinal ring 7 32184 -UBERON:0018529 female inguinal ring 6 32185 -UBERON:0018531 female superficial inguinal ring 7 32186 -UBERON:0018530 male inguinal ring 6 32187 -UBERON:0018532 female deep inguinal ring 7 32188 -UBERON:0006688 sublingual caruncle 5 32189 -UBERON:0006691 tentorium cerebelli 5 32190 -UBERON:0006820 body of sternum 5 32191 -UBERON:0006867 anal part of perineum 5 32192 -UBERON:0007145 dome of diaphragm 5 32193 -UBERON:0007166 left dome of diaphragm 6 32194 -UBERON:0007167 right dome of diaphragm 6 32195 -UBERON:0007224 medial entorhinal cortex 5 32196 -UBERON:0007225 lateral entorhinal cortex 5 32197 -UBERON:0007324 pancreatic lobule 5 32198 -UBERON:0015280 pancreas left lobe 6 32199 -UBERON:0015281 pancreas right lobe 6 32200 -UBERON:0008286 feather calamus 5 32201 -UBERON:0008287 feather vane 5 32202 -UBERON:0008290 afterfeather 5 32203 -UBERON:0008790 rugal fold 5 32204 -UBERON:0008791 rugal fold of stomach 6 32205 -UBERON:0008798 rugal fold of vagina 6 32206 -UBERON:0008799 transverse palatine fold 6 32207 -UBERON:0008956 involucrum 5 32208 -UBERON:0008957 sequestrum 5 32209 -UBERON:0008958 cetacean involucrum 5 32210 -UBERON:0008971 left colon 5 32211 -UBERON:0008972 right colon 5 32212 -UBERON:0008978 anal sac 5 32213 -UBERON:0036019 castor sac 6 32214 -UBERON:0009089 inner medulla vasa recta descending limb 5 32215 -UBERON:0009090 outer medulla vasa recta descending limb 5 32216 -UBERON:0009091 vasa recta ascending limb 5 32217 -UBERON:0009092 inner medulla vasa recta ascending limb 5 32218 -UBERON:0009093 outer medulla vasa recta ascending limb 5 32219 -UBERON:0009095 tip of renal papilla 5 32220 -UBERON:0009202 vasa recta descending limb 5 32221 -UBERON:0009207 geschmacksstreifen 5 32222 -UBERON:0009471 dorsum of tongue 5 32223 -UBERON:0009745 lymph node medullary cord 5 32224 -UBERON:0009753 adrenal gland cortex zone 5 32225 -UBERON:0002053 zona glomerulosa of adrenal gland 6 32226 -UBERON:0002054 zona fasciculata of adrenal gland 6 32227 -UBERON:0002055 zona reticularis of adrenal gland 6 32228 -UBERON:0009024 adrenal gland X zone 6 32229 -UBERON:0013745 zona intermedia of adrenal gland 6 32230 -UBERON:0009862 ascidian cerebral ganglion 5 32231 -UBERON:0009863 ascidian ciliated funnel 5 32232 -UBERON:0009864 ascidian neural gland 5 32233 -UBERON:0009883 medullary ray 5 32234 -UBERON:0010015 ventral patch of Leydig's organ 5 32235 -UBERON:0010032 anterior part of tongue 5 32236 -UBERON:0010033 posterior part of tongue 5 32237 -UBERON:0010051 dorsal patch of Leydig's organ 5 32238 -UBERON:0010071 layer of tympanic membrane 5 32239 -UBERON:0009647 tympanic membrane epithelium 6 32240 -UBERON:0005042 inner epithelial layer of tympanic membrane 7 32241 -UBERON:0010069 outer epithelial layer of tympanic membrane 7 32242 -UBERON:0010070 intermediate layer of tympanic membrane 6 32243 -UBERON:0010172 bulb of aorta 5 32244 -UBERON:0010174 Schweigger-Seidel sheath 5 32245 -UBERON:0010238 torus pylorus 5 32246 -UBERON:0010305 subdivision of conjunctiva 5 32247 -UBERON:0001812 palpebral conjunctiva 6 32248 -UBERON:0010306 bulbar conjunctiva 6 32249 -UBERON:0010307 conjunctival fornix 6 32250 -UBERON:0014698 lacrimal caruncle 6 32251 -UBERON:0010938 muscle belly 5 32252 -UBERON:0010928 cricopharyngeus muscle 6 32253 -UBERON:0010936 thyropharyngeus muscle 6 32254 -UBERON:0010947 occipitalis 6 32255 -UBERON:0010952 frontalis muscle belly 6 32256 -UBERON:0010956 pterygopharyngeal part of superior pharyngeal constrictor 5 32257 -UBERON:0010995 deep part of masseter muscle 5 32258 -UBERON:0011199 prostatic utricle 5 32259 -UBERON:0011308 pars reflexa of masseter 5 32260 -UBERON:0011604 carina of sternum 5 32261 -UBERON:0011741 cardiac valve leaflet 5 32262 -UBERON:0005484 tricuspid valve leaflet 6 32263 -UBERON:0005998 tricuspid valve cusp 7 32264 -UBERON:0007151 mitral valve leaflet 6 32265 -UBERON:0014853 commissural leaflet of mitral valve 7 32266 -UBERON:0014854 anterior leaflet of mitral valve 7 32267 -UBERON:0014855 posterior leaflet of mitral valve 7 32268 -UBERON:0011742 aortic valve leaflet 6 32269 -UBERON:0011745 pulmonary valve leaflets 6 32270 -UBERON:0011876 body of tongue 5 32271 -UBERON:0011906 muscle head 5 32272 -UBERON:0007168 long head of biceps brachii 6 32273 -UBERON:0007169 short head of biceps brachii 6 32274 -UBERON:0011907 gastrocnemius medialis 6 32275 -UBERON:0011908 gastrocnemius lateralis 6 32276 -UBERON:0012249 ectocervix 5 32277 -UBERON:0012326 gubernacular bulb 5 32278 -UBERON:0012420 coprodeum 5 32279 -UBERON:0012421 urodeum 5 32280 -UBERON:0012462 proctodeum portion of cloaca 5 32281 -UBERON:0012648 ampulla of uterine tube 5 32282 -UBERON:0013128 bulb of penis 5 32283 -UBERON:0013129 bulb of vestibule 5 32284 -UBERON:0013131 lobe of tail 5 32285 -UBERON:0013165 epiglottic vallecula 5 32286 -UBERON:0013166 vallecula of cerebellum 5 32287 -UBERON:0013237 genital papilla of vulva 5 32288 -UBERON:0013522 subdivision of tube 5 32289 -UBERON:0000072 proximo-distal subdivision of respiratory tract 6 32290 -UBERON:0001557 upper respiratory tract 7 32291 -UBERON:0001558 lower respiratory tract 7 32292 -UBERON:0001728 nasopharynx 7 32293 -UBERON:0001737 larynx 7 32294 -UBERON:0036068 subglottis 7 32295 -UBERON:0036263 supraglottic part of larynx 7 32296 -UBERON:0000162 cloaca 6 32297 -UBERON:0000163 embryonic cloaca 7 32298 -UBERON:0000388 epiglottis 6 32299 -UBERON:0000930 stomodeum 6 32300 -UBERON:0001051 hypopharynx 6 32301 -UBERON:0001335 prostatic urethra 6 32302 -UBERON:0001336 membranous urethra of male or female 6 32303 -UBERON:0012301 female membranous urethra 7 32304 -UBERON:0012302 male membranous urethra 7 32305 -UBERON:0001337 spongiose part of urethra 6 32306 -UBERON:0001729 oropharynx 6 32307 -UBERON:0002345 descending thoracic aorta 6 32308 -UBERON:0004203 cortical collecting duct 6 32309 -UBERON:0005115 metanephric cortical collecting duct 7 32310 -UBERON:0004921 subdivision of digestive tract 6 32311 -UBERON:0000059 large intestine 7 32312 -UBERON:0000160 intestine 7 32313 -UBERON:0000165 mouth 7 32314 -UBERON:0000168 proximal-distal subdivision of colon 7 32315 -UBERON:0001156 ascending colon 8 32316 -UBERON:0001157 transverse colon 8 32317 -UBERON:0001158 descending colon 8 32318 -UBERON:0001159 sigmoid colon 8 32319 -UBERON:0010239 spiral colon 8 32320 -UBERON:0000945 stomach 7 32321 -UBERON:0005052 gizzard 8 32322 -UBERON:0007366 ruminant stomach 8 32323 -UBERON:0008994 equine glandular stomach 8 32324 -UBERON:0001041 foregut 7 32325 -UBERON:0015232 nematode pharynx 8 32326 -UBERON:0001043 esophagus 7 32327 -UBERON:0001045 midgut 7 32328 -UBERON:0001046 hindgut 7 32329 -UBERON:0001052 rectum 7 32330 -UBERON:0001155 colon 7 32331 -UBERON:0002108 small intestine 7 32332 -UBERON:0002114 duodenum 7 32333 -UBERON:0002115 jejunum 7 32334 -UBERON:0002116 ileum 7 32335 -UBERON:0003286 foregut region of duodenum 7 32336 -UBERON:0003287 midgut region of duodenum 7 32337 -UBERON:0004045 tailgut 7 32338 -UBERON:0004185 endodermal part of digestive tract 7 32339 -UBERON:0004912 biliary bud 8 32340 -UBERON:0008835 hepatic diverticulum 8 32341 -UBERON:0008836 liver bud 8 32342 -UBERON:0036072 respiratory primordium epithelium 8 32343 -UBERON:0004906 ectodermal part of digestive tract 7 32344 -UBERON:0012287 Rathkes pouch epithelium 8 32345 -UBERON:0004907 lower digestive tract 7 32346 -UBERON:0004908 upper digestive tract 7 32347 -UBERON:0006562 pharynx 7 32348 -UBERON:0001042 chordate pharynx 8 32349 -UBERON:0006866 terminal part of digestive tract 7 32350 -UBERON:0007364 reticulorumen 7 32351 -UBERON:0008246 pyloric stomach 7 32352 -UBERON:0008248 echinoderm pyloric cecum 7 32353 -UBERON:0008250 cardiac stomach 7 32354 -UBERON:0009854 digestive tract diverticulum 7 32355 -UBERON:0001153 caecum 8 32356 -UBERON:0004912 biliary bud 8 32357 -UBERON:0008835 hepatic diverticulum 8 32358 -UBERON:0008836 liver bud 8 32359 -UBERON:0009855 echinoderm gastric caecum 8 32360 -UBERON:0012287 Rathkes pouch epithelium 8 32361 -UBERON:0012474 hepatic cecum 8 32362 -UBERON:0036072 respiratory primordium epithelium 8 32363 -UBERON:4300174 actinopterygian pyloric caecum 8 32364 -UBERON:0011698 midgut loop 7 32365 -UBERON:0012273 periampullary region of duodenum 7 32366 -UBERON:0012652 colorectum 7 32367 -UBERON:0013472 upper esophagus 7 32368 -UBERON:0013473 lower esophagus 7 32369 -UBERON:0013474 middle part of esophagus 7 32370 -UBERON:0013644 duodenal ampulla 7 32371 -UBERON:0005185 renal medulla collecting duct 6 32372 -UBERON:0005800 section of aorta 6 32373 -UBERON:0001514 descending aorta 7 32374 -UBERON:0001515 thoracic aorta 7 32375 -UBERON:0001496 ascending aorta 8 32376 -UBERON:0001508 arch of aorta 8 32377 -UBERON:0001516 abdominal aorta 7 32378 -UBERON:0005968 infundibulum of hair follicle 6 32379 -UBERON:0006637 celiac trunk 6 32380 -UBERON:0006834 uterus or analog 6 32381 -UBERON:0012294 navicular fossa of spongiose part of urethra 6 32382 -UBERON:0013515 subdivision of oviduct 6 32383 -UBERON:0000995 uterus 7 32384 -UBERON:0005796 duplex uterus 8 32385 -UBERON:0005797 bipartite uterus 8 32386 -UBERON:0005798 bicornuate uterus 8 32387 -UBERON:0005799 simplex uterus 8 32388 -UBERON:0009098 gravid uterus 8 32389 -UBERON:0000996 vagina 7 32390 -UBERON:0013523 lateral vaginal canal 8 32391 -UBERON:0013524 median vaginal canal 8 32392 -UBERON:0003889 fallopian tube 7 32393 -UBERON:0001302 right uterine tube 8 32394 -UBERON:0001303 left uterine tube 8 32395 -UBERON:0003974 upper part of vagina 8 32396 -UBERON:0016632 isthmus of fallopian tube 8 32397 -UBERON:0003984 uterine tube infundibulum 7 32398 -UBERON:0013516 uterine tube magnum 7 32399 -UBERON:0013519 avian uterine tube isthmus 7 32400 -UBERON:0015243 lower part of vagina 7 32401 -UBERON:0016920 descending trunk of arch of aorta 6 32402 -UBERON:0016923 preductal region of aortic arch 6 32403 -UBERON:0016924 postductal region of aortic arch 6 32404 -UBERON:0016925 juxtaductal region of aortic arch 6 32405 -UBERON:0034980 jugular bulb 6 32406 -UBERON:0034981 superior bulb of internal jugular vein 7 32407 -UBERON:0034982 inferior bulb of internal jugular vein 7 32408 -UBERON:0035177 abdominal part of esophagus 6 32409 -UBERON:0035216 thoracic part of esophagus 6 32410 -UBERON:0035450 cervical part of esophagus 6 32411 -UBERON:0035804 future mouth 6 32412 -UBERON:0013716 branch of ilio-marsupialis muscle 5 32413 -UBERON:0014730 osteon 5 32414 -UBERON:0015139 infundibulum of gallbladder 5 32415 -UBERON:0015247 bifurcation of trachea 5 32416 -UBERON:0015885 cymba conchae of pinna 5 32417 -UBERON:0016408 corona of glans penis 5 32418 -UBERON:0016409 base of glans penis 5 32419 -UBERON:0016464 dorsum of nose 5 32420 -UBERON:0016526 lobe of cerebral hemisphere 5 32421 -UBERON:0001871 temporal lobe 6 32422 -UBERON:0002808 left temporal lobe 7 32423 -UBERON:0002809 right temporal lobe 7 32424 -UBERON:0001872 parietal lobe 6 32425 -UBERON:0002802 left parietal lobe 7 32426 -UBERON:0002803 right parietal lobe 7 32427 -UBERON:0002021 occipital lobe 6 32428 -UBERON:0002806 left occipital lobe 7 32429 -UBERON:0002807 right occipital lobe 7 32430 -UBERON:0002600 limbic lobe 6 32431 -UBERON:0002804 left limbic lobe 7 32432 -UBERON:0002805 right limbic lobe 7 32433 -UBERON:0005366 olfactory lobe 6 32434 -UBERON:0016525 frontal lobe 6 32435 -UBERON:0023255 sub-lobar region 6 32436 -UBERON:0024900 left sub-lobar region 7 32437 -UBERON:0024901 right sub-lobar region 7 32438 -UBERON:0017626 transverse folds of rectum 5 32439 -UBERON:0018103 posterior fascicle of palatopharyngeus 5 32440 -UBERON:0018104 parafoveal part of retina 5 32441 -UBERON:0018105 perifoveal part of retina 5 32442 -UBERON:0018107 foveola of retina 5 32443 -UBERON:0018152 pars flaccida of tympanic membrane 5 32444 -UBERON:0018153 pars tensa of tympanic membrane 5 32445 -UBERON:0018262 dorsal zone of medial entorhinal cortex 5 32446 -UBERON:0018319 extramural oviduct 5 32447 -UBERON:0018347 pars canalicularis of petrosal 5 32448 -UBERON:0018533 crus of penis or clitoris 5 32449 -UBERON:0006639 crus of penis 6 32450 -UBERON:0006640 crus of clitoris 6 32451 -UBERON:0018663 recessus basilaris 5 32452 -UBERON:0019211 supcapsular region of anterior region of lens 5 32453 -UBERON:0019212 supcapsular region of posterior region of lens 5 32454 -UBERON:0022273 lacrimal lake 5 32455 -UBERON:0022274 lacrimal papilla 5 32456 -UBERON:0022275 colic flexure 5 32457 -UBERON:0022276 splenic flexure of colon 6 32458 -UBERON:0022277 hepatic flexure of colon 6 32459 -UBERON:0027109 lateral eminence of hypophysis 5 32460 -UBERON:0034672 lateral eminence of fourth ventricle 5 32461 -UBERON:0034694 gubernacular bulb, intra-abdominal part 5 32462 -UBERON:0034695 gubernacular bulb, extra-abdominal part 5 32463 -UBERON:0034935 pars plicata of ciliary body 5 32464 -UBERON:0034936 pars plana of ciliary body 5 32465 -UBERON:0034941 blood sinus of vibrissa 5 32466 -UBERON:0034944 zone of organ 5 32467 -UBERON:0000014 zone of skin 6 32468 -UBERON:0001085 skin of trunk 7 32469 -UBERON:0001068 skin of back 8 32470 -UBERON:0009014 lower back skin 9 32471 -UBERON:0009015 upper back skin 9 32472 -UBERON:0001418 skin of thorax 8 32473 -UBERON:0001868 skin of chest 9 32474 -UBERON:0019200 skin of anterior chest 10 32475 -UBERON:0009015 upper back skin 9 32476 -UBERON:0003836 abdominal segment skin 8 32477 -UBERON:0001415 skin of pelvis 9 32478 -UBERON:0012336 perianal skin 10 32479 -UBERON:0014482 ischial callosity 10 32480 -UBERON:0001416 skin of abdomen 9 32481 -UBERON:0036149 suprapubic skin 10 32482 -UBERON:0009014 lower back skin 9 32483 -UBERON:0001331 skin of penis 7 32484 -UBERON:0001471 skin of prepuce of penis 8 32485 -UBERON:0001419 skin of limb 7 32486 -UBERON:0003531 forelimb skin 8 32487 -UBERON:0001519 skin of manus 9 32488 -UBERON:0001518 skin of wrist 10 32489 -UBERON:0012350 carpal pad 11 32490 -UBERON:0003533 manual digit skin 10 32491 -UBERON:0005276 dorsal skin of finger 11 32492 -UBERON:0005278 nail bed of finger 12 32493 -UBERON:0013628 pollical pad 11 32494 -UBERON:0013622 manual autopod pad 10 32495 -UBERON:0008839 palmar pad 11 32496 -UBERON:0012350 carpal pad 11 32497 -UBERON:0013628 pollical pad 11 32498 -UBERON:0013777 skin of palm of manus 10 32499 -UBERON:0008839 palmar pad 11 32500 -UBERON:0002427 arm skin 9 32501 -UBERON:0001517 skin of elbow 10 32502 -UBERON:0003403 skin of forearm 10 32503 -UBERON:0004263 upper arm skin 10 32504 -UBERON:0010855 skin of forelimb wing 9 32505 -UBERON:0010878 humeral patagium 10 32506 -UBERON:0003532 hindlimb skin 8 32507 -UBERON:0001511 skin of leg 9 32508 -UBERON:0001510 skin of knee 10 32509 -UBERON:0004262 upper leg skin 10 32510 -UBERON:0004264 lower leg skin 10 32511 -UBERON:0001513 skin of pes 9 32512 -UBERON:0001512 skin of ankle 10 32513 -UBERON:0015873 heel skin 11 32514 -UBERON:0003530 pedal digit skin 10 32515 -UBERON:0005277 dorsal skin of toe 11 32516 -UBERON:0005279 nail bed of toe 12 32517 -UBERON:0013629 hallical pad 11 32518 -UBERON:0013623 pedal autopod pad 10 32519 -UBERON:0008840 plantar pad 11 32520 -UBERON:0013626 medial metatarsal pad 12 32521 -UBERON:0013627 lateral metatarsal pad 12 32522 -UBERON:0013629 hallical pad 11 32523 -UBERON:0013778 skin of sole of pes 10 32524 -UBERON:0008840 plantar pad 11 32525 -UBERON:0013626 medial metatarsal pad 12 32526 -UBERON:0013627 lateral metatarsal pad 12 32527 -UBERON:0015790 autopod skin 8 32528 -UBERON:0001513 skin of pes 9 32529 -UBERON:0001512 skin of ankle 10 32530 -UBERON:0015873 heel skin 11 32531 -UBERON:0003530 pedal digit skin 10 32532 -UBERON:0005277 dorsal skin of toe 11 32533 -UBERON:0005279 nail bed of toe 12 32534 -UBERON:0013629 hallical pad 11 32535 -UBERON:0013623 pedal autopod pad 10 32536 -UBERON:0008840 plantar pad 11 32537 -UBERON:0013626 medial metatarsal pad 12 32538 -UBERON:0013627 lateral metatarsal pad 12 32539 -UBERON:0013629 hallical pad 11 32540 -UBERON:0013778 skin of sole of pes 10 32541 -UBERON:0008840 plantar pad 11 32542 -UBERON:0013626 medial metatarsal pad 12 32543 -UBERON:0013627 lateral metatarsal pad 12 32544 -UBERON:0001519 skin of manus 9 32545 -UBERON:0001518 skin of wrist 10 32546 -UBERON:0012350 carpal pad 11 32547 -UBERON:0003533 manual digit skin 10 32548 -UBERON:0005276 dorsal skin of finger 11 32549 -UBERON:0005278 nail bed of finger 12 32550 -UBERON:0013628 pollical pad 11 32551 -UBERON:0013622 manual autopod pad 10 32552 -UBERON:0008839 palmar pad 11 32553 -UBERON:0012350 carpal pad 11 32554 -UBERON:0013628 pollical pad 11 32555 -UBERON:0013777 skin of palm of manus 10 32556 -UBERON:0008839 palmar pad 11 32557 -UBERON:0012348 autopod pad 9 32558 -UBERON:0008838 metapodial pad 10 32559 -UBERON:0008839 palmar pad 11 32560 -UBERON:0008840 plantar pad 11 32561 -UBERON:0013626 medial metatarsal pad 12 32562 -UBERON:0013627 lateral metatarsal pad 12 32563 -UBERON:0012349 digital pad 10 32564 -UBERON:0013628 pollical pad 11 32565 -UBERON:0013629 hallical pad 11 32566 -UBERON:0013622 manual autopod pad 10 32567 -UBERON:0008839 palmar pad 11 32568 -UBERON:0012350 carpal pad 11 32569 -UBERON:0013628 pollical pad 11 32570 -UBERON:0013623 pedal autopod pad 10 32571 -UBERON:0008840 plantar pad 11 32572 -UBERON:0013626 medial metatarsal pad 12 32573 -UBERON:0013627 lateral metatarsal pad 12 32574 -UBERON:0013629 hallical pad 11 32575 -UBERON:0013776 skin of palmar/plantar part of autopod 9 32576 -UBERON:0013777 skin of palm of manus 10 32577 -UBERON:0008839 palmar pad 11 32578 -UBERON:0013778 skin of sole of pes 10 32579 -UBERON:0008840 plantar pad 11 32580 -UBERON:0013626 medial metatarsal pad 12 32581 -UBERON:0013627 lateral metatarsal pad 12 32582 -UBERON:0015249 digit skin 9 32583 -UBERON:0003530 pedal digit skin 10 32584 -UBERON:0005277 dorsal skin of toe 11 32585 -UBERON:0005279 nail bed of toe 12 32586 -UBERON:0013629 hallical pad 11 32587 -UBERON:0003533 manual digit skin 10 32588 -UBERON:0005276 dorsal skin of finger 11 32589 -UBERON:0005278 nail bed of finger 12 32590 -UBERON:0013628 pollical pad 11 32591 -UBERON:0005275 dorsal skin of digit 10 32592 -UBERON:0005273 nail bed 11 32593 -UBERON:0005278 nail bed of finger 12 32594 -UBERON:0005279 nail bed of toe 12 32595 -UBERON:0005274 proximal nail bed 11 32596 -UBERON:0005276 dorsal skin of finger 11 32597 -UBERON:0005278 nail bed of finger 12 32598 -UBERON:0005277 dorsal skin of toe 11 32599 -UBERON:0005279 nail bed of toe 12 32600 -UBERON:0014931 periungual skin 10 32601 -UBERON:0036219 ungulate coronary band 10 32602 -UBERON:0001483 skin of shoulder 7 32603 -UBERON:0001554 skin of hip 7 32604 -UBERON:0003534 tail skin 7 32605 -UBERON:0004084 genital labium 7 32606 -UBERON:0004014 labium minora 8 32607 -UBERON:0004085 labium majora 8 32608 -UBERON:0005298 skin of clitoris 7 32609 -UBERON:0011375 skin of prepuce of clitoris 8 32610 -UBERON:0007121 skin nerve field 7 32611 -UBERON:0012180 head or neck skin 7 32612 -UBERON:0001084 skin of head 8 32613 -UBERON:0001458 skin of lip 9 32614 -UBERON:0018150 skin of lower lip 10 32615 -UBERON:0016919 lower vermilion 11 32616 -UBERON:0018151 skin of upper lip 10 32617 -UBERON:0016918 upper vermilion 11 32618 -UBERON:0001459 skin of external ear 9 32619 -UBERON:0012305 marginal cutaneous pouch of ear 10 32620 -UBERON:0012458 antler velvet 9 32621 -UBERON:0016915 vermilion 9 32622 -UBERON:0016918 upper vermilion 10 32623 -UBERON:0016919 lower vermilion 10 32624 -UBERON:1000021 skin of face 9 32625 -UBERON:0001457 skin of eyelid 10 32626 -UBERON:0013766 epicanthal fold 11 32627 -UBERON:0008803 skin of cheek 10 32628 -UBERON:0008802 cheek pouch 11 32629 -UBERON:0013640 internal cheek pouch 12 32630 -UBERON:0013641 external cheek pouch 12 32631 -UBERON:0010515 brille 10 32632 -UBERON:0012304 nasal diverticulum 10 32633 -UBERON:0015476 nose skin 10 32634 -UBERON:0016462 periorbital skin 10 32635 -UBERON:0016475 skin of forehead 10 32636 -UBERON:0034765 glabella skin 11 32637 -UBERON:0018151 skin of upper lip 10 32638 -UBERON:0016918 upper vermilion 11 32639 -UBERON:1000003 dewlap 10 32640 -UBERON:1000015 skin of snout 10 32641 -UBERON:8300000 skin of scalp 9 32642 -UBERON:0001417 skin of neck 8 32643 -UBERON:0010854 skin of front of neck 9 32644 -UBERON:0010880 gular fold 10 32645 -UBERON:0014481 sex skin 7 32646 -UBERON:0015474 axilla skin 7 32647 -UBERON:0015479 scrotum skin 7 32648 -UBERON:0018134 rugal fold of scrotum 8 32649 -UBERON:4300031 fin web 7 32650 -UBERON:0000390 lens nucleus 6 32651 -UBERON:0001351 lacrimal sac 6 32652 -UBERON:0001560 neck of organ 6 32653 -UBERON:0000002 uterine cervix 7 32654 -UBERON:0001258 neck of urinary bladder 7 32655 -UBERON:0015181 neck of tooth 7 32656 -UBERON:0018664 neck of bone element 7 32657 -UBERON:0000199 neck of radius 8 32658 -UBERON:0003253 neck of rib 8 32659 -UBERON:0004659 mandible neck 8 32660 -UBERON:0005355 malleus neck 8 32661 -UBERON:0007119 neck of femur 8 32662 -UBERON:0015180 neck of talus 8 32663 -UBERON:0018667 neck of scapula 8 32664 -UBERON:0018673 neck of fibula 8 32665 -UBERON:4200172 neck of humerus 8 32666 -UBERON:0035267 neck of gallbladder 7 32667 -UBERON:0001848 auricular cartilage 6 32668 -UBERON:0002444 lens fiber 6 32669 -UBERON:0003688 omentum 6 32670 -UBERON:0002399 lesser omentum 7 32671 -UBERON:0005448 greater omentum 7 32672 -UBERON:0004914 duodenal papilla 6 32673 -UBERON:0012271 major duodenal papilla 7 32674 -UBERON:0012272 minor duodenal papilla 7 32675 -UBERON:0005050 liver papillary process 6 32676 -UBERON:0005435 upper part of cisterna chyli 6 32677 -UBERON:0005913 zone of bone organ 6 32678 -UBERON:0000401 mandibular ramus 7 32679 -UBERON:0001269 acetabular part of hip bone 7 32680 -UBERON:0001694 petrous part of temporal bone 7 32681 -UBERON:0001755 distal part of styloid process of temporal bone 7 32682 -UBERON:0001762 turbinate bone 7 32683 -UBERON:0003973 nasal concha of ethmoid bone 8 32684 -UBERON:0005919 supreme nasal concha 9 32685 -UBERON:0005920 superior nasal concha 9 32686 -UBERON:0005921 middle nasal concha 9 32687 -UBERON:0005922 inferior nasal concha 8 32688 -UBERON:0002496 stapes base 7 32689 -UBERON:0002819 apex of cochlea 7 32690 -UBERON:0003689 sella turcica 7 32691 -UBERON:0004103 alveolar ridge 7 32692 -UBERON:0004527 alveolar process of maxilla 8 32693 -UBERON:3000505 processus pterygoideus of maxilla 9 32694 -UBERON:0004528 alveolar ridge of mandible 8 32695 -UBERON:0034898 alveolar ridge of premaxilla 8 32696 -UBERON:0004108 clivus of occipital bone 7 32697 -UBERON:0004546 cribriform plate 7 32698 -UBERON:0004651 scapula spine 7 32699 -UBERON:0004658 mandible head 7 32700 -UBERON:0005055 zone of long bone 7 32701 -UBERON:0000144 trochlea of humerus 8 32702 -UBERON:0000199 neck of radius 8 32703 -UBERON:0000980 trochanter 8 32704 -UBERON:0002503 greater trochanter 9 32705 -UBERON:0002504 lesser trochanter 9 32706 -UBERON:0008786 third trochanter 9 32707 -UBERON:0008787 fourth trochanter 9 32708 -UBERON:0001012 head of radius 8 32709 -UBERON:0001437 epiphysis 8 32710 -UBERON:0004379 distal epiphysis 9 32711 -UBERON:0004404 distal epiphysis of humerus 10 32712 -UBERON:0004405 distal epiphysis of tibia 10 32713 -UBERON:0004406 distal epiphysis of femur 10 32714 -UBERON:0004407 distal epiphysis of radius 10 32715 -UBERON:0004408 distal epiphysis of ulna 10 32716 -UBERON:0004410 distal epiphysis of fibula 10 32717 -UBERON:0004448 distal epiphysis of phalanx 10 32718 -UBERON:0004409 distal epiphysis of phalanx of manus 11 32719 -UBERON:0014886 distal epiphysis of distal phalanx of manual digit 12 32720 -UBERON:0014881 distal epiphysis of distal phalanx of manual digit 1 13 32721 -UBERON:0014882 distal epiphysis of distal phalanx of manual digit 2 13 32722 -UBERON:0014883 distal epiphysis of distal phalanx of manual digit 3 13 32723 -UBERON:0014884 distal epiphysis of distal phalanx of manual digit 4 13 32724 -UBERON:0014885 distal epiphysis of distal phalanx of manual digit 5 13 32725 -UBERON:0013122 distal epiphysis of phalanx of pes 11 32726 -UBERON:0014876 distal epiphysis of distal phalanx of pedal digit 12 32727 -UBERON:0014871 distal epiphysis of distal phalanx of pedal digit 1 13 32728 -UBERON:0014872 distal epiphysis of distal phalanx of pedal digit 2 13 32729 -UBERON:0014873 distal epiphysis of distal phalanx of pedal digit 3 13 32730 -UBERON:0014874 distal epiphysis of distal phalanx of pedal digit 4 13 32731 -UBERON:0014875 distal epiphysis of distal phalanx of pedal digit 5 13 32732 -UBERON:0014887 distal epiphysis of distal phalanx of digit 11 32733 -UBERON:0014876 distal epiphysis of distal phalanx of pedal digit 12 32734 -UBERON:0014871 distal epiphysis of distal phalanx of pedal digit 1 13 32735 -UBERON:0014872 distal epiphysis of distal phalanx of pedal digit 2 13 32736 -UBERON:0014873 distal epiphysis of distal phalanx of pedal digit 3 13 32737 -UBERON:0014874 distal epiphysis of distal phalanx of pedal digit 4 13 32738 -UBERON:0014875 distal epiphysis of distal phalanx of pedal digit 5 13 32739 -UBERON:0014886 distal epiphysis of distal phalanx of manual digit 12 32740 -UBERON:0014881 distal epiphysis of distal phalanx of manual digit 1 13 32741 -UBERON:0014882 distal epiphysis of distal phalanx of manual digit 2 13 32742 -UBERON:0014883 distal epiphysis of distal phalanx of manual digit 3 13 32743 -UBERON:0014884 distal epiphysis of distal phalanx of manual digit 4 13 32744 -UBERON:0014885 distal epiphysis of distal phalanx of manual digit 5 13 32745 -UBERON:0013753 distal epiphysis of metacarpal bone 10 32746 -UBERON:0004380 proximal epiphysis 9 32747 -UBERON:0004411 proximal epiphysis of humerus 10 32748 -UBERON:0004412 proximal epiphysis of femur 10 32749 -UBERON:0004413 proximal epiphysis of radius 10 32750 -UBERON:0004415 proximal epiphysis of metatarsal bone 10 32751 -UBERON:0004427 proximal epiphysis of first metatarsal bone 11 32752 -UBERON:0004428 proximal epiphysis of second metatarsal bone 11 32753 -UBERON:0004429 proximal epiphysis of third metatarsal bone 11 32754 -UBERON:0004430 proximal epiphysis of fourth metatarsal bone 11 32755 -UBERON:0004431 proximal epiphysis of fifth metatarsal bone 11 32756 -UBERON:0004416 proximal epiphysis of metacarpal bone 10 32757 -UBERON:0004422 proximal epiphysis of first metacarpal bone 11 32758 -UBERON:0004423 proximal epiphysis of second metacarpal bone 11 32759 -UBERON:0004424 proximal epiphysis of third metacarpal bone 11 32760 -UBERON:0004425 proximal epiphysis of fourth metacarpal bone 11 32761 -UBERON:0004426 proximal epiphysis of fifth metacarpal bone 11 32762 -UBERON:0004447 proximal epiphysis of phalanx 10 32763 -UBERON:0004414 proximal epiphysis of phalanx of manus 11 32764 -UBERON:0004417 proximal epiphysis of phalanx of manual digit 1 12 32765 -UBERON:0004444 proximal epiphysis of distal phalanx of manual digit 1 13 32766 -UBERON:0004445 proximal epiphysis of proximal phalanx of manual digit 1 13 32767 -UBERON:0004418 proximal epiphysis of phalanx of manual digit 2 12 32768 -UBERON:0004432 proximal epiphysis of distal phalanx of manual digit 2 13 32769 -UBERON:0004436 proximal epiphysis of middle phalanx of manual digit 2 13 32770 -UBERON:0004440 proximal epiphysis of proximal phalanx of manual digit 2 13 32771 -UBERON:0004419 proximal epiphysis of phalanx of manual digit 3 12 32772 -UBERON:0004433 proximal epiphysis of distal phalanx of manual digit 3 13 32773 -UBERON:0004437 proximal epiphysis of middle phalanx of manual digit 3 13 32774 -UBERON:0004441 proximal epiphysis of proximal phalanx of manual digit 3 13 32775 -UBERON:0004420 proximal epiphysis of phalanx of manual digit 4 12 32776 -UBERON:0004434 proximal epiphysis of distal phalanx of manual digit 4 13 32777 -UBERON:0004438 proximal epiphysis of middle phalanx of manual digit 4 13 32778 -UBERON:0004442 proximal epiphysis of proximal phalanx of manual digit 4 13 32779 -UBERON:0004421 proximal epiphysis of phalanx of manual digit 5 12 32780 -UBERON:0004435 proximal epiphysis of distal phalanx of manual digit 5 13 32781 -UBERON:0004439 proximal epiphysis of middle phalanx of manual digit 5 13 32782 -UBERON:0004443 proximal epiphysis of proximal phalanx of manual digit 5 13 32783 -UBERON:0013121 proximal epiphysis of phalanx of pes 11 32784 -UBERON:0006822 proximal epiphysis of ulna 10 32785 -UBERON:0008772 proximal epiphysis of tibia 10 32786 -UBERON:0008775 proximal epiphysis of fibula 10 32787 -UBERON:0004382 epiphysis of humerus 9 32788 -UBERON:0004404 distal epiphysis of humerus 10 32789 -UBERON:0004411 proximal epiphysis of humerus 10 32790 -UBERON:0004383 epiphysis of tibia 9 32791 -UBERON:0004405 distal epiphysis of tibia 10 32792 -UBERON:0008772 proximal epiphysis of tibia 10 32793 -UBERON:0004384 epiphysis of femur 9 32794 -UBERON:0004406 distal epiphysis of femur 10 32795 -UBERON:0004412 proximal epiphysis of femur 10 32796 -UBERON:0004385 epiphysis of radius 9 32797 -UBERON:0004407 distal epiphysis of radius 10 32798 -UBERON:0004413 proximal epiphysis of radius 10 32799 -UBERON:0004386 epiphysis of ulna 9 32800 -UBERON:0004408 distal epiphysis of ulna 10 32801 -UBERON:0006822 proximal epiphysis of ulna 10 32802 -UBERON:0004388 epiphysis of fibula 9 32803 -UBERON:0004410 distal epiphysis of fibula 10 32804 -UBERON:0008775 proximal epiphysis of fibula 10 32805 -UBERON:0004390 epiphysis of metacarpal bone 9 32806 -UBERON:0004391 epiphysis of first metacarpal bone 10 32807 -UBERON:0004422 proximal epiphysis of first metacarpal bone 11 32808 -UBERON:0004392 epiphysis of second metacarpal bone 10 32809 -UBERON:0004423 proximal epiphysis of second metacarpal bone 11 32810 -UBERON:0004393 epiphysis of third metacarpal bone 10 32811 -UBERON:0004424 proximal epiphysis of third metacarpal bone 11 32812 -UBERON:0004394 epiphysis of fourth metacarpal bone 10 32813 -UBERON:0004425 proximal epiphysis of fourth metacarpal bone 11 32814 -UBERON:0004416 proximal epiphysis of metacarpal bone 10 32815 -UBERON:0004422 proximal epiphysis of first metacarpal bone 11 32816 -UBERON:0004423 proximal epiphysis of second metacarpal bone 11 32817 -UBERON:0004424 proximal epiphysis of third metacarpal bone 11 32818 -UBERON:0004425 proximal epiphysis of fourth metacarpal bone 11 32819 -UBERON:0004426 proximal epiphysis of fifth metacarpal bone 11 32820 -UBERON:0011104 epiphysis of fifth metacarpal bone 10 32821 -UBERON:0004426 proximal epiphysis of fifth metacarpal bone 11 32822 -UBERON:0013753 distal epiphysis of metacarpal bone 10 32823 -UBERON:0004446 epiphysis of phalanx 9 32824 -UBERON:0004387 epiphysis of phalanx of manus 10 32825 -UBERON:0004409 distal epiphysis of phalanx of manus 11 32826 -UBERON:0014886 distal epiphysis of distal phalanx of manual digit 12 32827 -UBERON:0014881 distal epiphysis of distal phalanx of manual digit 1 13 32828 -UBERON:0014882 distal epiphysis of distal phalanx of manual digit 2 13 32829 -UBERON:0014883 distal epiphysis of distal phalanx of manual digit 3 13 32830 -UBERON:0014884 distal epiphysis of distal phalanx of manual digit 4 13 32831 -UBERON:0014885 distal epiphysis of distal phalanx of manual digit 5 13 32832 -UBERON:0004414 proximal epiphysis of phalanx of manus 11 32833 -UBERON:0004417 proximal epiphysis of phalanx of manual digit 1 12 32834 -UBERON:0004444 proximal epiphysis of distal phalanx of manual digit 1 13 32835 -UBERON:0004445 proximal epiphysis of proximal phalanx of manual digit 1 13 32836 -UBERON:0004418 proximal epiphysis of phalanx of manual digit 2 12 32837 -UBERON:0004432 proximal epiphysis of distal phalanx of manual digit 2 13 32838 -UBERON:0004436 proximal epiphysis of middle phalanx of manual digit 2 13 32839 -UBERON:0004440 proximal epiphysis of proximal phalanx of manual digit 2 13 32840 -UBERON:0004419 proximal epiphysis of phalanx of manual digit 3 12 32841 -UBERON:0004433 proximal epiphysis of distal phalanx of manual digit 3 13 32842 -UBERON:0004437 proximal epiphysis of middle phalanx of manual digit 3 13 32843 -UBERON:0004441 proximal epiphysis of proximal phalanx of manual digit 3 13 32844 -UBERON:0004420 proximal epiphysis of phalanx of manual digit 4 12 32845 -UBERON:0004434 proximal epiphysis of distal phalanx of manual digit 4 13 32846 -UBERON:0004438 proximal epiphysis of middle phalanx of manual digit 4 13 32847 -UBERON:0004442 proximal epiphysis of proximal phalanx of manual digit 4 13 32848 -UBERON:0004421 proximal epiphysis of phalanx of manual digit 5 12 32849 -UBERON:0004435 proximal epiphysis of distal phalanx of manual digit 5 13 32850 -UBERON:0004439 proximal epiphysis of middle phalanx of manual digit 5 13 32851 -UBERON:0004443 proximal epiphysis of proximal phalanx of manual digit 5 13 32852 -UBERON:0011977 epiphysis of proximal phalanx of manus 11 32853 -UBERON:0004440 proximal epiphysis of proximal phalanx of manual digit 2 12 32854 -UBERON:0004441 proximal epiphysis of proximal phalanx of manual digit 3 12 32855 -UBERON:0004442 proximal epiphysis of proximal phalanx of manual digit 4 12 32856 -UBERON:0004443 proximal epiphysis of proximal phalanx of manual digit 5 12 32857 -UBERON:0004445 proximal epiphysis of proximal phalanx of manual digit 1 12 32858 -UBERON:0011978 epiphysis of middle phalanx of manus 11 32859 -UBERON:0004436 proximal epiphysis of middle phalanx of manual digit 2 12 32860 -UBERON:0004437 proximal epiphysis of middle phalanx of manual digit 3 12 32861 -UBERON:0004438 proximal epiphysis of middle phalanx of manual digit 4 12 32862 -UBERON:0004439 proximal epiphysis of middle phalanx of manual digit 5 12 32863 -UBERON:0011979 epiphysis of distal phalanx of manus 11 32864 -UBERON:0004432 proximal epiphysis of distal phalanx of manual digit 2 12 32865 -UBERON:0004433 proximal epiphysis of distal phalanx of manual digit 3 12 32866 -UBERON:0004434 proximal epiphysis of distal phalanx of manual digit 4 12 32867 -UBERON:0004435 proximal epiphysis of distal phalanx of manual digit 5 12 32868 -UBERON:0004444 proximal epiphysis of distal phalanx of manual digit 1 12 32869 -UBERON:0014886 distal epiphysis of distal phalanx of manual digit 12 32870 -UBERON:0014881 distal epiphysis of distal phalanx of manual digit 1 13 32871 -UBERON:0014882 distal epiphysis of distal phalanx of manual digit 2 13 32872 -UBERON:0014883 distal epiphysis of distal phalanx of manual digit 3 13 32873 -UBERON:0014884 distal epiphysis of distal phalanx of manual digit 4 13 32874 -UBERON:0014885 distal epiphysis of distal phalanx of manual digit 5 13 32875 -UBERON:0004447 proximal epiphysis of phalanx 10 32876 -UBERON:0004414 proximal epiphysis of phalanx of manus 11 32877 -UBERON:0004417 proximal epiphysis of phalanx of manual digit 1 12 32878 -UBERON:0004444 proximal epiphysis of distal phalanx of manual digit 1 13 32879 -UBERON:0004445 proximal epiphysis of proximal phalanx of manual digit 1 13 32880 -UBERON:0004418 proximal epiphysis of phalanx of manual digit 2 12 32881 -UBERON:0004432 proximal epiphysis of distal phalanx of manual digit 2 13 32882 -UBERON:0004436 proximal epiphysis of middle phalanx of manual digit 2 13 32883 -UBERON:0004440 proximal epiphysis of proximal phalanx of manual digit 2 13 32884 -UBERON:0004419 proximal epiphysis of phalanx of manual digit 3 12 32885 -UBERON:0004433 proximal epiphysis of distal phalanx of manual digit 3 13 32886 -UBERON:0004437 proximal epiphysis of middle phalanx of manual digit 3 13 32887 -UBERON:0004441 proximal epiphysis of proximal phalanx of manual digit 3 13 32888 -UBERON:0004420 proximal epiphysis of phalanx of manual digit 4 12 32889 -UBERON:0004434 proximal epiphysis of distal phalanx of manual digit 4 13 32890 -UBERON:0004438 proximal epiphysis of middle phalanx of manual digit 4 13 32891 -UBERON:0004442 proximal epiphysis of proximal phalanx of manual digit 4 13 32892 -UBERON:0004421 proximal epiphysis of phalanx of manual digit 5 12 32893 -UBERON:0004435 proximal epiphysis of distal phalanx of manual digit 5 13 32894 -UBERON:0004439 proximal epiphysis of middle phalanx of manual digit 5 13 32895 -UBERON:0004443 proximal epiphysis of proximal phalanx of manual digit 5 13 32896 -UBERON:0013121 proximal epiphysis of phalanx of pes 11 32897 -UBERON:0004448 distal epiphysis of phalanx 10 32898 -UBERON:0004409 distal epiphysis of phalanx of manus 11 32899 -UBERON:0014886 distal epiphysis of distal phalanx of manual digit 12 32900 -UBERON:0014881 distal epiphysis of distal phalanx of manual digit 1 13 32901 -UBERON:0014882 distal epiphysis of distal phalanx of manual digit 2 13 32902 -UBERON:0014883 distal epiphysis of distal phalanx of manual digit 3 13 32903 -UBERON:0014884 distal epiphysis of distal phalanx of manual digit 4 13 32904 -UBERON:0014885 distal epiphysis of distal phalanx of manual digit 5 13 32905 -UBERON:0013122 distal epiphysis of phalanx of pes 11 32906 -UBERON:0014876 distal epiphysis of distal phalanx of pedal digit 12 32907 -UBERON:0014871 distal epiphysis of distal phalanx of pedal digit 1 13 32908 -UBERON:0014872 distal epiphysis of distal phalanx of pedal digit 2 13 32909 -UBERON:0014873 distal epiphysis of distal phalanx of pedal digit 3 13 32910 -UBERON:0014874 distal epiphysis of distal phalanx of pedal digit 4 13 32911 -UBERON:0014875 distal epiphysis of distal phalanx of pedal digit 5 13 32912 -UBERON:0014887 distal epiphysis of distal phalanx of digit 11 32913 -UBERON:0014876 distal epiphysis of distal phalanx of pedal digit 12 32914 -UBERON:0014871 distal epiphysis of distal phalanx of pedal digit 1 13 32915 -UBERON:0014872 distal epiphysis of distal phalanx of pedal digit 2 13 32916 -UBERON:0014873 distal epiphysis of distal phalanx of pedal digit 3 13 32917 -UBERON:0014874 distal epiphysis of distal phalanx of pedal digit 4 13 32918 -UBERON:0014875 distal epiphysis of distal phalanx of pedal digit 5 13 32919 -UBERON:0014886 distal epiphysis of distal phalanx of manual digit 12 32920 -UBERON:0014881 distal epiphysis of distal phalanx of manual digit 1 13 32921 -UBERON:0014882 distal epiphysis of distal phalanx of manual digit 2 13 32922 -UBERON:0014883 distal epiphysis of distal phalanx of manual digit 3 13 32923 -UBERON:0014884 distal epiphysis of distal phalanx of manual digit 4 13 32924 -UBERON:0014885 distal epiphysis of distal phalanx of manual digit 5 13 32925 -UBERON:0011974 epiphysis of proximal phalanx of pes 10 32926 -UBERON:0011975 epiphysis of middle phalanx of pes 10 32927 -UBERON:0011976 epiphysis of distal phalanx of pes 10 32928 -UBERON:0014876 distal epiphysis of distal phalanx of pedal digit 11 32929 -UBERON:0014871 distal epiphysis of distal phalanx of pedal digit 1 12 32930 -UBERON:0014872 distal epiphysis of distal phalanx of pedal digit 2 12 32931 -UBERON:0014873 distal epiphysis of distal phalanx of pedal digit 3 12 32932 -UBERON:0014874 distal epiphysis of distal phalanx of pedal digit 4 12 32933 -UBERON:0014875 distal epiphysis of distal phalanx of pedal digit 5 12 32934 -UBERON:0011973 epiphysis of phalanx of pes 9 32935 -UBERON:0004389 epiphysis of metatarsal bone 10 32936 -UBERON:0004395 epiphysis of first metatarsal bone 11 32937 -UBERON:0004427 proximal epiphysis of first metatarsal bone 12 32938 -UBERON:0004396 epiphysis of second metatarsal bone 11 32939 -UBERON:0004428 proximal epiphysis of second metatarsal bone 12 32940 -UBERON:0004397 epiphysis of third metatarsal bone 11 32941 -UBERON:0004429 proximal epiphysis of third metatarsal bone 12 32942 -UBERON:0004398 epiphysis of fourth metatarsal bone 11 32943 -UBERON:0004430 proximal epiphysis of fourth metatarsal bone 12 32944 -UBERON:0004399 epiphysis of fifth metatarsal bone 11 32945 -UBERON:0004431 proximal epiphysis of fifth metatarsal bone 12 32946 -UBERON:0004415 proximal epiphysis of metatarsal bone 11 32947 -UBERON:0004427 proximal epiphysis of first metatarsal bone 12 32948 -UBERON:0004428 proximal epiphysis of second metatarsal bone 12 32949 -UBERON:0004429 proximal epiphysis of third metatarsal bone 12 32950 -UBERON:0004430 proximal epiphysis of fourth metatarsal bone 12 32951 -UBERON:0004431 proximal epiphysis of fifth metatarsal bone 12 32952 -UBERON:0011974 epiphysis of proximal phalanx of pes 10 32953 -UBERON:0011975 epiphysis of middle phalanx of pes 10 32954 -UBERON:0011976 epiphysis of distal phalanx of pes 10 32955 -UBERON:0014876 distal epiphysis of distal phalanx of pedal digit 11 32956 -UBERON:0014871 distal epiphysis of distal phalanx of pedal digit 1 12 32957 -UBERON:0014872 distal epiphysis of distal phalanx of pedal digit 2 12 32958 -UBERON:0014873 distal epiphysis of distal phalanx of pedal digit 3 12 32959 -UBERON:0014874 distal epiphysis of distal phalanx of pedal digit 4 12 32960 -UBERON:0014875 distal epiphysis of distal phalanx of pedal digit 5 12 32961 -UBERON:0013121 proximal epiphysis of phalanx of pes 10 32962 -UBERON:0013122 distal epiphysis of phalanx of pes 10 32963 -UBERON:0014876 distal epiphysis of distal phalanx of pedal digit 11 32964 -UBERON:0014871 distal epiphysis of distal phalanx of pedal digit 1 12 32965 -UBERON:0014872 distal epiphysis of distal phalanx of pedal digit 2 12 32966 -UBERON:0014873 distal epiphysis of distal phalanx of pedal digit 3 12 32967 -UBERON:0014874 distal epiphysis of distal phalanx of pedal digit 4 12 32968 -UBERON:0014875 distal epiphysis of distal phalanx of pedal digit 5 12 32969 -UBERON:0001438 metaphysis 8 32970 -UBERON:0004377 distal metaphysis 9 32971 -UBERON:0006864 distal metaphysis of femur 10 32972 -UBERON:0004378 proximal metaphysis 9 32973 -UBERON:0006863 proximal metaphysis of femur 10 32974 -UBERON:0006865 metaphysis of femur 9 32975 -UBERON:0006863 proximal metaphysis of femur 10 32976 -UBERON:0006864 distal metaphysis of femur 10 32977 -UBERON:0013748 ulnar metaphysis 9 32978 -UBERON:0013749 metaphysis of humerus 9 32979 -UBERON:0013750 metaphysis of tibia 9 32980 -UBERON:0013751 metaphysis of radius 9 32981 -UBERON:0016928 metaphysis of fibula 9 32982 -UBERON:0002230 head of rib 8 32983 -UBERON:0011651 ventral head of rib 9 32984 -UBERON:0011652 dorsal head of rib 9 32985 -UBERON:0002231 body of rib 8 32986 -UBERON:0003253 neck of rib 8 32987 -UBERON:0003958 long bone epiphyseal ossification zone 8 32988 -UBERON:0004098 tibial plateaux 8 32989 -UBERON:0004769 diaphysis 8 32990 -UBERON:0001010 diaphysis of ulna 9 32991 -UBERON:0001028 diaphysis of radius 9 32992 -UBERON:0004652 humerus diaphysis 9 32993 -UBERON:0006862 diaphysis of femur 9 32994 -UBERON:0013279 diaphysis of fibula 9 32995 -UBERON:0013280 diaphysis of tibia 9 32996 -UBERON:0013752 diaphysis of metacarpal bone 9 32997 -UBERON:0013774 diaphysis of metatarsal bone 9 32998 -UBERON:0006767 head of femur 8 32999 -UBERON:0006801 proximal head of humerus 8 33000 -UBERON:0006805 sternal end of clavicle 8 33001 -UBERON:0006810 olecranon 8 33002 -UBERON:0006861 diaphysis proper 8 33003 -UBERON:0007119 neck of femur 8 33004 -UBERON:0007843 uncinate process of ribs 8 33005 -UBERON:0008449 trochlear notch 8 33006 -UBERON:0009980 condyle of femur 8 33007 -UBERON:0009984 medial condyle of femur 9 33008 -UBERON:0009985 lateral condyle of femur 9 33009 -UBERON:0009986 lateral epicondyle of femur 8 33010 -UBERON:0009987 medial epicondyle of femur 8 33011 -UBERON:0009988 condyle of humerus 8 33012 -UBERON:4200174 distal condyle of humerus 9 33013 -UBERON:0009989 condyle of tibia 8 33014 -UBERON:0009990 medial condyle of tibia 9 33015 -UBERON:0009991 lateral condyle of tibia 9 33016 -UBERON:0010388 proximal segment of rib 8 33017 -UBERON:0010424 distal segment of rib 8 33018 -UBERON:0010853 capitulum of humerus 8 33019 -UBERON:0012078 fovea capitis of femur 8 33020 -UBERON:0012129 radial head of humerus 8 33021 -UBERON:0012130 olecranon fossa 8 33022 -UBERON:0012291 lateral malleolus of fibula 8 33023 -UBERON:0013069 popliteal area 8 33024 -UBERON:0016497 epicondyle of humerus 8 33025 -UBERON:0006806 entepicondyle of humerus 9 33026 -UBERON:0006807 ectepicondyle of humerus 9 33027 -UBERON:0018673 neck of fibula 8 33028 -UBERON:0035878 subchondral region of epiphysis 8 33029 -UBERON:3000783 fovea capitis of humerus 8 33030 -UBERON:3000840 capitulum of radius 8 33031 -UBERON:3000842 capitulum ulnae 8 33032 -UBERON:4100114 anterior distal condyle of femur 8 33033 -UBERON:4100116 posterior distal condyle of femur 8 33034 -UBERON:4200032 clavicle blade 8 33035 -UBERON:4200112 prepectoral space 8 33036 -UBERON:4200159 ventral ridge system 8 33037 -UBERON:4200172 neck of humerus 8 33038 -UBERON:0005342 malleus head 7 33039 -UBERON:0006106 cochlear canal 7 33040 -UBERON:0006326 base of arytenoid 7 33041 -UBERON:0006633 coracoid process of scapula 7 33042 -UBERON:0006722 manubrium of malleus 7 33043 -UBERON:0006723 cochlear modiolus 7 33044 -UBERON:0006724 osseus spiral lamina 7 33045 -UBERON:0006776 annular epiphysis 7 33046 -UBERON:0006802 acetabular rim 7 33047 -UBERON:0006811 occipital condyle 7 33048 -UBERON:0006837 tegmen tympani 7 33049 -UBERON:0007170 squamous part of occipital bone 7 33050 -UBERON:0007172 angle of scapula 7 33051 -UBERON:0007175 inferior angle of scapula 8 33052 -UBERON:0007176 superior angle of scapula 8 33053 -UBERON:0011941 lateral angle of scapula 8 33054 -UBERON:0007830 pelvic girdle bone/zone 7 33055 -UBERON:0001272 innominate bone 8 33056 -UBERON:0001273 ilium 8 33057 -UBERON:4200220 iliac ramus 9 33058 -UBERON:0001274 ischium 8 33059 -UBERON:0001275 pubis 8 33060 -UBERON:0013204 epipubic bone 8 33061 -UBERON:2000623 basipterygium bone 8 33062 -UBERON:0007833 osseus semicircular canal 7 33063 -UBERON:0009978 epicondyle 7 33064 -UBERON:0009986 lateral epicondyle of femur 8 33065 -UBERON:0009987 medial epicondyle of femur 8 33066 -UBERON:0016497 epicondyle of humerus 8 33067 -UBERON:0006806 entepicondyle of humerus 9 33068 -UBERON:0006807 ectepicondyle of humerus 9 33069 -UBERON:0009979 condyle 7 33070 -UBERON:0009980 condyle of femur 8 33071 -UBERON:0009984 medial condyle of femur 9 33072 -UBERON:0009985 lateral condyle of femur 9 33073 -UBERON:0009988 condyle of humerus 8 33074 -UBERON:4200174 distal condyle of humerus 9 33075 -UBERON:0009989 condyle of tibia 8 33076 -UBERON:0009990 medial condyle of tibia 9 33077 -UBERON:0009991 lateral condyle of tibia 9 33078 -UBERON:0018334 lateral condyle of quadrate 8 33079 -UBERON:0018337 medial condyle of quadrate 8 33080 -UBERON:0018353 quadrate condyle 8 33081 -UBERON:2001855 hyomandibular condyle for the opercle 8 33082 -UBERON:4100114 anterior distal condyle of femur 8 33083 -UBERON:4100116 posterior distal condyle of femur 8 33084 -UBERON:0010066 tympanic plate 7 33085 -UBERON:0010273 zone of hyoid bone 7 33086 -UBERON:0003997 hyoid bone greater horn 8 33087 -UBERON:0003998 hyoid bone lesser horn 8 33088 -UBERON:0003999 hyoid bone body 8 33089 -UBERON:0010355 ossification center 7 33090 -UBERON:0009637 alisphenoid ossification center 8 33091 -UBERON:0009638 orbitosphenoid ossification center 8 33092 -UBERON:0010356 primary ossification center 8 33093 -UBERON:0010357 secondary ossification center 8 33094 -UBERON:0010746 iliac blade 7 33095 -UBERON:0010747 body of ilium 7 33096 -UBERON:0010889 ectethmoid 7 33097 -UBERON:0010910 opisthotic 7 33098 -UBERON:0011015 iliac fossa 7 33099 -UBERON:0011244 perpendicular plate of ethmoid 7 33100 -UBERON:0011309 body of mandible 7 33101 -UBERON:0011310 masseteric fossa 7 33102 -UBERON:0011576 supraorbital ridge 7 33103 -UBERON:0011627 orbital part of frontal bone 7 33104 -UBERON:0012108 postorbital bar 7 33105 -UBERON:0012109 zygomatic process of frontal bone 7 33106 -UBERON:0012110 frontal process of zygomatic bone 7 33107 -UBERON:0012459 antler pedicle 7 33108 -UBERON:0013068 palatine torus 7 33109 -UBERON:0013135 interdental plate 7 33110 -UBERON:0013173 anterior part of tympanic bone 7 33111 -UBERON:0013222 otic notch 7 33112 -UBERON:0013427 occipital bun 7 33113 -UBERON:0013442 postorbital process 7 33114 -UBERON:0013447 sagittal crest 7 33115 -UBERON:0013448 sagittal keel 7 33116 -UBERON:0013450 simian shelf 7 33117 -UBERON:0013469 external occipital protuberance 7 33118 -UBERON:0014386 vertebral endplate 7 33119 -UBERON:0014437 iliac crest 7 33120 -UBERON:0014440 ischiopubic ramus 7 33121 -UBERON:0014441 ischial ramus 7 33122 -UBERON:0014442 superior ischial ramus 8 33123 -UBERON:0014443 inferior ischial ramus 8 33124 -UBERON:0014444 pubic ramus 7 33125 -UBERON:0014438 superior pubic ramus 8 33126 -UBERON:0014439 inferior pubic ramus 8 33127 -UBERON:0014624 basis modioli 7 33128 -UBERON:0014626 base of cochlear canal 7 33129 -UBERON:0014628 vestibular fissure of the cochlear canal 7 33130 -UBERON:0014629 terminal part of the cochlear canal 7 33131 -UBERON:0014898 lamina terminalis of ischium 7 33132 -UBERON:0016412 central part of body of bony vertebral centrum 7 33133 -UBERON:0016419 bony part of vertebral arch 7 33134 -UBERON:0017670 bony part of cervical vertebral arch 8 33135 -UBERON:0017671 bony part of vertebral arch of first sacral vertebra 8 33136 -UBERON:0016440 glabella region of bone 7 33137 -UBERON:0016942 rostral margin of orbit 7 33138 -UBERON:0017690 internal surface of frontal bone 7 33139 -UBERON:0017692 internal surface of cranial base 7 33140 -UBERON:0018242 palatine bone horizontal plate 7 33141 -UBERON:0018265 anterior root of zygomatic arch 7 33142 -UBERON:0018273 caniniform region 7 33143 -UBERON:0018329 interpterygoid region 7 33144 -UBERON:0018332 jugal bar 7 33145 -UBERON:0018336 maxillary shank 7 33146 -UBERON:0018346 parietal notch 7 33147 -UBERON:0018359 subolfactory process 7 33148 -UBERON:0018542 mandibular symphyseal region 7 33149 -UBERON:0018655 pars endotympanica 7 33150 -UBERON:0018664 neck of bone element 7 33151 -UBERON:0000199 neck of radius 8 33152 -UBERON:0003253 neck of rib 8 33153 -UBERON:0004659 mandible neck 8 33154 -UBERON:0005355 malleus neck 8 33155 -UBERON:0007119 neck of femur 8 33156 -UBERON:0015180 neck of talus 8 33157 -UBERON:0018667 neck of scapula 8 33158 -UBERON:0018673 neck of fibula 8 33159 -UBERON:4200172 neck of humerus 8 33160 -UBERON:0035848 infraorbital margin 7 33161 -UBERON:0035849 orbital margin 7 33162 -UBERON:0035850 infraorbital bridge 7 33163 -UBERON:0035959 orbital pillar 7 33164 -UBERON:0006006 metoptic pillar 8 33165 -UBERON:0035957 antotic pillar 8 33166 -UBERON:0035958 preoptic pillar 8 33167 -UBERON:0035964 promontory of tympanic cavity 7 33168 -UBERON:1500000 scapular blade 7 33169 -UBERON:3000446 posterior condyle 7 33170 -UBERON:3000451 posterior ramus of pterygoid 7 33171 -UBERON:3000814 glenoid head of coracoid 7 33172 -UBERON:3000815 sternal head of coracoid 7 33173 -UBERON:3000834 posterior lamina recurvata 7 33174 -UBERON:3000866 agger limitans anterior of ilium 7 33175 -UBERON:3000870 preacetabular expansion 7 33176 -UBERON:3000882 interilial region 7 33177 -UBERON:3010142 occipital arch 7 33178 -UBERON:3010262 capitulum of radio-ulna 7 33179 -UBERON:3010832 occipital segment 7 33180 -UBERON:4100012 postacetabular zone 7 33181 -UBERON:4200000 medial blade of ilium 7 33182 -UBERON:4200002 coracoid plate 7 33183 -UBERON:4200016 postbranchial lamina 7 33184 -UBERON:4200018 calcaneal tuber 7 33185 -UBERON:4200030 antitrochanter 7 33186 -UBERON:4200033 cleithrum head 7 33187 -UBERON:4200051 cotyloid notch 7 33188 -UBERON:4200069 sternal keel 7 33189 -UBERON:4200078 clavicular facet 7 33190 -UBERON:4200081 hypocleideum 7 33191 -UBERON:4200086 iliac neck 7 33192 -UBERON:4200098 ischial foot 7 33193 -UBERON:4200117 pubic boot 7 33194 -UBERON:4200119 pubis-ischium contact 7 33195 -UBERON:4200120 puboischiadic plate 7 33196 -UBERON:4200175 supraglenoid region 7 33197 -UBERON:4200181 astragalus head 7 33198 -UBERON:4200226 anteroventral process of cleithrum 7 33199 -UBERON:4300106 ventral limb of posttemporal 7 33200 -UBERON:4300108 lepidotrichial segment 7 33201 -UBERON:4300109 proximal segment of caudal ray 8 33202 -UBERON:4300112 distal segment of caudal ray 8 33203 -UBERON:4300119 glenoid region 7 33204 -UBERON:4300269 epioccipital bridge 7 33205 -UBERON:0007136 rectouterine fold 6 33206 -UBERON:0009853 body of uterus 6 33207 -UBERON:0009870 zone of stomach 6 33208 -UBERON:0001160 fundus of stomach 7 33209 -UBERON:0001161 body of stomach 7 33210 -UBERON:0001162 cardia of stomach 7 33211 -UBERON:0001163 lesser curvature of stomach 7 33212 -UBERON:0001164 greater curvature of stomach 7 33213 -UBERON:0001165 pyloric antrum 7 33214 -UBERON:0001166 pylorus 7 33215 -UBERON:0002399 lesser omentum 7 33216 -UBERON:0008858 pyloric canal 7 33217 -UBERON:0011953 stomach glandular region 7 33218 -UBERON:0007357 proventriculus 8 33219 -UBERON:0007358 abomasum 8 33220 -UBERON:0011954 stomach non-glandular region 7 33221 -UBERON:0007359 ruminant forestomach 8 33222 -UBERON:0007361 ruminant reticulum 8 33223 -UBERON:0007362 omasum 8 33224 -UBERON:0007365 rumen 8 33225 -UBERON:0008827 murine forestomach 8 33226 -UBERON:0009882 anal column 6 33227 -UBERON:0010188 protuberance 6 33228 -UBERON:0002539 pharyngeal arch 7 33229 -UBERON:0003066 pharyngeal arch 2 8 33230 -UBERON:0003114 pharyngeal arch 3 8 33231 -UBERON:0003115 pharyngeal arch 4 8 33232 -UBERON:0003116 pharyngeal arch 5 8 33233 -UBERON:0003117 pharyngeal arch 6 8 33234 -UBERON:0004362 pharyngeal arch 1 8 33235 -UBERON:0008896 post-hyoid pharyngeal arch 8 33236 -UBERON:0011087 pharyngeal arch 7 9 33237 -UBERON:0011638 pharyngeal arch 8 9 33238 -UBERON:0003062 primitive knot 7 33239 -UBERON:0006260 lingual swellings 7 33240 -UBERON:0010034 copula linguae 7 33241 -UBERON:0010057 hypopharyngeal eminence 7 33242 -UBERON:0011140 superficial part of masseter muscle 6 33243 -UBERON:0011305 superficial part of temporalis 6 33244 -UBERON:0011306 deep part of temporalis 6 33245 -UBERON:0011307 suprazygomatic part of temporalis 6 33246 -UBERON:0011313 posterior subdivision of masseter 6 33247 -UBERON:0011314 anterior subdivision of masseter 6 33248 -UBERON:0012295 Guérin's valve 6 33249 -UBERON:0012296 urethral crest 6 33250 -UBERON:0012297 male urethral crest 7 33251 -UBERON:0012298 female urethral crest 7 33252 -UBERON:0019210 pole of lens 6 33253 -UBERON:0016459 posterior pole of lens 7 33254 -UBERON:0019208 anterior pole of lens 7 33255 -UBERON:0034680 laryngeal prominence 6 33256 -UBERON:0035213 basal zone of heart 6 33257 -UBERON:0035276 epigastrium 6 33258 -UBERON:0035298 tuberculum sellae 6 33259 -UBERON:0035331 base of prostate 6 33260 -UBERON:0035377 transverse fold of rectum 6 33261 -UBERON:0035416 diaphragma sellae 6 33262 -UBERON:0035431 mediastinal pleura 6 33263 -UBERON:0035453 laryngeal ventricle 6 33264 -UBERON:0035468 costodiaphragmatic recess 6 33265 -UBERON:0035536 body of gallbladder 6 33266 -UBERON:0035606 cartilage of external acoustic meatus 6 33267 -UBERON:0035837 apical region of heart ventricle 6 33268 -UBERON:0035835 apical region of left ventricle 7 33269 -UBERON:0035836 apical region of right ventricle 7 33270 -UBERON:0035425 falx cerebelli 5 33271 -UBERON:0035962 supravaginal part of cervix 5 33272 -UBERON:0036292 adnexa of uterus 5 33273 -UBERON:1000023 spleen pulp 5 33274 -UBERON:0001250 red pulp of spleen 6 33275 -UBERON:0001959 white pulp of spleen 6 33276 -UBERON:0010398 spleen marginal sinus 7 33277 -UBERON:3000131 dilatatio alaris 5 33278 -UBERON:3000155 extremitas anterior 5 33279 -UBERON:3000178 footplate of pars media plectri 5 33280 -UBERON:3000254 lamella alaris 5 33281 -UBERON:3000255 lamina anterior of pars facialis 5 33282 -UBERON:3000263 lamina precerebralis 5 33283 -UBERON:3000264 lamina superior 5 33284 -UBERON:3000280 margo mandibularis of pterygoid 5 33285 -UBERON:3000281 margo orbitalis of maxilla 5 33286 -UBERON:3000282 margo orbitalis of pterygoid 5 33287 -UBERON:3000283 margo orbitalis of squamosal 5 33288 -UBERON:3000284 margo tympanicus of pterygoid 5 33289 -UBERON:3000295 median symphysis 5 33290 -UBERON:3000364 otic plate of pterygoid 5 33291 -UBERON:3000384 parasagittal crest 5 33292 -UBERON:3000394 pars articularis of mandibular arch 5 33293 -UBERON:3000399 pars externa plectri 5 33294 -UBERON:3000400 pars facialis of maxilla 5 33295 -UBERON:3000401 pars facialis of maxillopalatine 5 33296 -UBERON:3000405 pars inferior of labyrinth 5 33297 -UBERON:3000406 pars interna plectri 5 33298 -UBERON:3000408 pars media plectri 5 33299 -UBERON:3000440 planum terminale 5 33300 -UBERON:3000441 planum triangulare 5 33301 -UBERON:3000524 pterygoquadrate 5 33302 -UBERON:3000538 recessus fenestrae ovalis 5 33303 -UBERON:3000565 skeletal support for eminentia olfactoria 5 33304 -UBERON:3000569 solum nasi 5 33305 -UBERON:3000570 spatium sacculare 5 33306 -UBERON:3000580 stylus of pars media plectri 5 33307 -UBERON:3000597 symphysis maxillaris 5 33308 -UBERON:3000619 tympanosquamosal 5 33309 -UBERON:3000628 ventral ramus of squamosal 5 33310 -UBERON:3000634 vomerine canal 5 33311 -UBERON:3000646 margo libera 5 33312 -UBERON:3000651 lamina anterior of maxilla 5 33313 -UBERON:3000653 pars glenoidalis of quadratojugal 5 33314 -UBERON:3000654 pars jugalis 5 33315 -UBERON:3000660 margo choanalis 5 33316 -UBERON:3000664 hyoid plate 5 33317 -UBERON:3000667 pars reuniens 5 33318 -UBERON:3000680 manubrium of hyale 5 33319 -UBERON:3000687 processus confluens 5 33320 -UBERON:3000692 pedicel 5 33321 -UBERON:3000694 atlantal cotyle 5 33322 -UBERON:3000707 pleurapophysis 5 33323 -UBERON:3000735 mid-dorsal keel 5 33324 -UBERON:3000743 sacral condyle 5 33325 -UBERON:3000744 urostyle cotyle 5 33326 -UBERON:3000745 webbing of bone in vertebral column 5 33327 -UBERON:3000746 urostyle ridge 5 33328 -UBERON:3000763 epicoracoid bridge 5 33329 -UBERON:3000774 ilial shaft 5 33330 -UBERON:3000777 epicoracoid horn 5 33331 -UBERON:3000784 ulnar condyle 5 33332 -UBERON:3000785 trochlear groove of humerus 5 33333 -UBERON:3000787 collum antibrachii 5 33334 -UBERON:3000798 presacral shield 5 33335 -UBERON:3000799 cartilago paraglenoidalis 5 33336 -UBERON:3000801 caput glenoidale 5 33337 -UBERON:3000802 fossa glenoidalis 5 33338 -UBERON:3000803 sulcus articularis lateralis 5 33339 -UBERON:3000804 sulcus articularis medialis 5 33340 -UBERON:3000805 carina proximalis 5 33341 -UBERON:3000806 carina medialis 5 33342 -UBERON:3000807 carina distalis 5 33343 -UBERON:3000810 fissura sagittalis 5 33344 -UBERON:3000811 glenoid end of clavicle 5 33345 -UBERON:3000816 margo fenestralis 5 33346 -UBERON:3000817 margo posterior 5 33347 -UBERON:3000818 margo anterior of scapula 5 33348 -UBERON:3000819 margo clavicularis 5 33349 -UBERON:3000820 margo posterior of scapula 5 33350 -UBERON:3000821 margo suprascapularis 5 33351 -UBERON:3000822 pars suprascapularis 5 33352 -UBERON:3000824 tenuitas cristaeformis 5 33353 -UBERON:3000827 margo anterior of cleithrum 5 33354 -UBERON:3000828 margo posterior of cleithrum 5 33355 -UBERON:3000829 margo scapularis 5 33356 -UBERON:3000830 margo vertebralis 5 33357 -UBERON:3000832 anterior lamina recurvata 5 33358 -UBERON:3000844 sulcus longitudinalis 5 33359 -UBERON:3000846 element Y of fore mesopodium 5 33360 -UBERON:3000865 epileon 5 33361 -UBERON:3000867 agger limitans anterior of ischium 5 33362 -UBERON:3000871 fossula tuberis superioris 5 33363 -UBERON:3000872 collum ilei 5 33364 -UBERON:3000873 pars cylindriformis ilei 5 33365 -UBERON:3000877 intumescentia bilateralis inferior 5 33366 -UBERON:3000879 incisura terminalis 5 33367 -UBERON:3000883 recessus coccygealis 5 33368 -UBERON:3000884 epipubis 5 33369 -UBERON:3000904 apophysis distalis of tibiofibula 5 33370 -UBERON:3000905 caput ossis cruris 5 33371 -UBERON:3000906 sulcus pro musculo extensori cruris brevis 5 33372 -UBERON:3000907 eminentia arcuata 5 33373 -UBERON:3000908 sulcus distalis ossis cruris 5 33374 -UBERON:3000909 sulcus proximalis ossis cruris 5 33375 -UBERON:3000916 apophysis proximalis 5 33376 -UBERON:3000917 apophysis distalis of tibiale fibulare 5 33377 -UBERON:3000945 inscriptional rib 5 33378 -UBERON:3000949 posterior ramus of cleithrum 5 33379 -UBERON:3000993 otic and occipital 5 33380 -UBERON:3010069 intermedium (fore) 5 33381 -UBERON:3010118 quadrato-orbital commissure 5 33382 -UBERON:3010138 trabecular horn 5 33383 -UBERON:3010144 odontoids 5 33384 -UBERON:3010194 mediale 5 33385 -UBERON:3010195 lateral appendix 5 33386 -UBERON:3010393 mesonephric late distal segment 5 33387 -UBERON:3010458 suprarostral ala 5 33388 -UBERON:3010528 articular process of palatoquadrate 5 33389 -UBERON:3010541 median pars intermedia 5 33390 -UBERON:3010706 lateral line nucleus 5 33391 -UBERON:3010780 pars recta 5 33392 -UBERON:3010781 pars convoluta of oviduct 5 33393 -UBERON:3010820 suboccular arch 5 33394 -UBERON:3010830 spicule 5 33395 -UBERON:4100111 hemipenal sheath 5 33396 -UBERON:4200006 infraglenoid buttress 5 33397 -UBERON:4200007 transverse pelvic ridge 5 33398 -UBERON:4300120 spinous region of dorsal fin 5 33399 -UBERON:4300137 lingual region 5 33400 -UBERON:4300138 labial region 5 33401 -UBERON:4300139 posterolingual region 5 33402 -UBERON:4300140 mesial region 5 33403 -UBERON:4300157 midshaft 5 33404 -UBERON:0000128 olivary body 4 33405 -UBERON:0000387 meniscus 4 33406 -UBERON:0000468 multicellular organism 4 33407 -UBERON:0000922 embryo 5 33408 -UBERON:0000085 morula 6 33409 -UBERON:0000307 blastula 6 33410 -UBERON:0000323 late embryo 6 33411 -UBERON:0004455 neurula embryo 6 33412 -UBERON:0004734 gastrula 6 33413 -UBERON:0007010 cleaving embryo 6 33414 -UBERON:0019248 early embryo 6 33415 -UBERON:0019249 2-cell stage embryo 7 33416 -UBERON:0019250 4-8 cell stage embryo 7 33417 -UBERON:0019252 8-cell stage embryo 8 33418 -UBERON:0019251 4-cell stage embryo 7 33419 -UBERON:0002548 larva 5 33420 -UBERON:0002547 tadpole 6 33421 -UBERON:0008265 echinopluteus larva 6 33422 -UBERON:0009101 ammocoete 6 33423 -UBERON:0009850 nematode larva 6 33424 -UBERON:0018379 metacestode 6 33425 -UBERON:0018382 second instar larva 6 33426 -UBERON:0018385 metacercaria 6 33427 -UBERON:0018387 cestode 6 33428 -UBERON:0018388 cercaria 6 33429 -UBERON:2002079 leptocephalous larva 6 33430 -UBERON:0003100 female organism 5 33431 -UBERON:0003101 male organism 5 33432 -UBERON:0003142 prepupa 5 33433 -UBERON:0003143 pupa 5 33434 -UBERON:0007021 sexually immature organism 5 33435 -UBERON:0007023 adult organism 5 33436 -UBERON:0009097 gravid organism 6 33437 -UBERON:0007197 hermaphroditic organism 5 33438 -UBERON:0010895 sequential hermaphroditic organism 6 33439 -UBERON:3010039 protandrous hermaphroditic organism 7 33440 -UBERON:3010042 protogynous hermaphroditic organism 7 33441 -UBERON:0010899 synchronous hermaphroditic organism 6 33442 -UBERON:0008979 carcass 5 33443 -UBERON:0009953 post-embryonic organism 5 33444 -UBERON:0012641 body of tubeworm 5 33445 -UBERON:6006011 pharate adult 5 33446 -UBERON:0000475 organism subdivision 4 33447 -UBERON:0000004 nose 5 33448 -UBERON:0000026 appendage 5 33449 -UBERON:0000023 wing 6 33450 -UBERON:0000024 forelimb wing 7 33451 -UBERON:0000984 imaginal disc-derived wing 7 33452 -UBERON:0000972 antenna 6 33453 -UBERON:0000987 haltere 6 33454 -UBERON:0004708 paired limb/fin 6 33455 -UBERON:0002101 limb 7 33456 -UBERON:0002102 forelimb 8 33457 -UBERON:0000024 forelimb wing 9 33458 -UBERON:8300001 right forelimb 9 33459 -UBERON:8300002 left forelimb 9 33460 -UBERON:0002103 hindlimb 8 33461 -UBERON:4300239 hind flipper 9 33462 -UBERON:8300003 right hindlimb 9 33463 -UBERON:8300004 left hindlimb 9 33464 -UBERON:0002534 paired fin 7 33465 -UBERON:0000151 pectoral fin 8 33466 -UBERON:4200003 archipterygial fin 9 33467 -UBERON:0000152 pelvic fin 8 33468 -UBERON:4300114 pelvic sucking disc 9 33469 -UBERON:4000182 suprabranchial fin 8 33470 -UBERON:0004709 pelvic appendage 7 33471 -UBERON:0000152 pelvic fin 8 33472 -UBERON:4300114 pelvic sucking disc 9 33473 -UBERON:0002103 hindlimb 8 33474 -UBERON:4300239 hind flipper 9 33475 -UBERON:8300003 right hindlimb 9 33476 -UBERON:8300004 left hindlimb 9 33477 -UBERON:0004710 pectoral appendage 7 33478 -UBERON:0000151 pectoral fin 8 33479 -UBERON:4200003 archipterygial fin 9 33480 -UBERON:0002102 forelimb 8 33481 -UBERON:0000024 forelimb wing 9 33482 -UBERON:8300001 right forelimb 9 33483 -UBERON:8300002 left forelimb 9 33484 -UBERON:2001269 regenerating fin/limb 7 33485 -UBERON:0005161 pelvic spur 6 33486 -UBERON:0005895 insect leg 6 33487 -UBERON:6004663 prothoracic leg 7 33488 -UBERON:0008247 tube foot 6 33489 -UBERON:0008260 spine appendage 6 33490 -UBERON:0013494 keratin-coated spine 7 33491 -UBERON:0013495 barbed keratin-coated spine 8 33492 -UBERON:0013496 unbarbed keratin-coated spine 8 33493 -UBERON:0017620 spine appendage of head 7 33494 -UBERON:0017621 cephalic spine 8 33495 -UBERON:0008261 pedicellaria 6 33496 -UBERON:0008897 fin 6 33497 -UBERON:0002534 paired fin 7 33498 -UBERON:0000151 pectoral fin 8 33499 -UBERON:4200003 archipterygial fin 9 33500 -UBERON:0000152 pelvic fin 8 33501 -UBERON:4300114 pelvic sucking disc 9 33502 -UBERON:4000182 suprabranchial fin 8 33503 -UBERON:4000162 median fin 7 33504 -UBERON:0003097 dorsal fin 8 33505 -UBERON:4100014 posterior dorsal fin 9 33506 -UBERON:4200023 anterior dorsal fin 9 33507 -UBERON:4300115 sucking disc 9 33508 -UBERON:2000251 adipose fin 8 33509 -UBERON:4000163 anal fin 8 33510 -UBERON:4000164 caudal fin 8 33511 -UBERON:4200053 diphycercal tail 9 33512 -UBERON:4200054 heterocercal tail 9 33513 -UBERON:4200055 homocercal tail 9 33514 -UBERON:4200056 hypocercal tail 9 33515 -UBERON:4200061 epicercal tail 9 33516 -UBERON:4200136 triphycercal tail 9 33517 -UBERON:0009473 parapodium 6 33518 -UBERON:0009474 ascidian ampulla 6 33519 -UBERON:0009475 ampullar siphon 6 33520 -UBERON:0009719 tunicate siphon 6 33521 -UBERON:0009720 oral siphon 7 33522 -UBERON:0009721 atrial siphon 7 33523 -UBERON:0014479 elephant trunk 6 33524 -UBERON:4300012 clavus 6 33525 -UBERON:0000153 anterior region of body 5 33526 -UBERON:0000154 posterior region of body 5 33527 -UBERON:0000180 lateral lumbar region of abdomen 5 33528 -UBERON:0000309 body wall 5 33529 -UBERON:0017648 ventral body wall 6 33530 -UBERON:0017649 dorsal body wall 6 33531 -UBERON:0000914 organismal segment 5 33532 -UBERON:0008834 prostomium 6 33533 -UBERON:0008880 annelid pygidium 6 33534 -UBERON:0018650 annelid peristomium 6 33535 -UBERON:6000006 head segment 6 33536 -UBERON:6000007 procephalic segment 7 33537 -UBERON:6000005 ocular segment 8 33538 -UBERON:6001731 larval ocular segment 9 33539 -UBERON:6000008 labral segment 8 33540 -UBERON:6001734 larval labral segment 9 33541 -UBERON:6003011 adult labral segment 9 33542 -UBERON:6000009 antennal segment 8 33543 -UBERON:6000160 embryonic antennal segment 9 33544 -UBERON:6001735 larval antennal segment 9 33545 -UBERON:6003012 adult antennal segment 9 33546 -UBERON:6000158 embryonic procephalic segment 8 33547 -UBERON:6000160 embryonic antennal segment 9 33548 -UBERON:6001733 larval procephalic segment 8 33549 -UBERON:6001731 larval ocular segment 9 33550 -UBERON:6001734 larval labral segment 9 33551 -UBERON:6001735 larval antennal segment 9 33552 -UBERON:6003010 adult procephalic segment 8 33553 -UBERON:6003011 adult labral segment 9 33554 -UBERON:6003012 adult antennal segment 9 33555 -UBERON:6000011 gnathal segment 7 33556 -UBERON:6000014 labial segment 8 33557 -UBERON:6000165 embryonic labial segment 9 33558 -UBERON:6001740 larval labial segment 9 33559 -UBERON:6000162 embryonic gnathal segment 8 33560 -UBERON:6000165 embryonic labial segment 9 33561 -UBERON:6001737 larval gnathal segment 8 33562 -UBERON:6001740 larval labial segment 9 33563 -UBERON:6000157 embryonic head segment 7 33564 -UBERON:6000158 embryonic procephalic segment 8 33565 -UBERON:6000160 embryonic antennal segment 9 33566 -UBERON:6000162 embryonic gnathal segment 8 33567 -UBERON:6000165 embryonic labial segment 9 33568 -UBERON:6001732 larval head segment 7 33569 -UBERON:6001733 larval procephalic segment 8 33570 -UBERON:6001731 larval ocular segment 9 33571 -UBERON:6001734 larval labral segment 9 33572 -UBERON:6001735 larval antennal segment 9 33573 -UBERON:6001737 larval gnathal segment 8 33574 -UBERON:6001740 larval labial segment 9 33575 -UBERON:6003009 adult head segment 7 33576 -UBERON:6003010 adult procephalic segment 8 33577 -UBERON:6003011 adult labral segment 9 33578 -UBERON:6003012 adult antennal segment 9 33579 -UBERON:6000016 thoracic segment 6 33580 -UBERON:6000017 prothoracic segment 7 33581 -UBERON:6000168 embryonic prothoracic segment 8 33582 -UBERON:6001743 larval prothoracic segment 8 33583 -UBERON:6003020 adult prothoracic segment 8 33584 -UBERON:6000018 mesothoracic segment 7 33585 -UBERON:6000169 embryonic mesothoracic segment 8 33586 -UBERON:6001744 larval mesothoracic segment 8 33587 -UBERON:6003021 adult mesothoracic segment 8 33588 -UBERON:6000019 metathoracic segment 7 33589 -UBERON:6000170 embryonic metathoracic segment 8 33590 -UBERON:6001745 larval metathoracic segment 8 33591 -UBERON:6000167 embryonic thoracic segment 7 33592 -UBERON:6000168 embryonic prothoracic segment 8 33593 -UBERON:6000169 embryonic mesothoracic segment 8 33594 -UBERON:6000170 embryonic metathoracic segment 8 33595 -UBERON:6001742 larval thoracic segment 7 33596 -UBERON:6001743 larval prothoracic segment 8 33597 -UBERON:6001744 larval mesothoracic segment 8 33598 -UBERON:6001745 larval metathoracic segment 8 33599 -UBERON:6003019 adult thoracic segment 7 33600 -UBERON:6003020 adult prothoracic segment 8 33601 -UBERON:6003021 adult mesothoracic segment 8 33602 -UBERON:6000021 insect abdominal segment 6 33603 -UBERON:6000029 abdominal segment 8 7 33604 -UBERON:6000180 embryonic abdominal segment 8 8 33605 -UBERON:6001755 larval abdominal segment 8 8 33606 -UBERON:6000030 abdominal segment 9 7 33607 -UBERON:6000181 embryonic abdominal segment 9 8 33608 -UBERON:6001756 larval abdominal segment 9 8 33609 -UBERON:6000172 insect embryonic abdominal segment 7 33610 -UBERON:6000180 embryonic abdominal segment 8 8 33611 -UBERON:6000181 embryonic abdominal segment 9 8 33612 -UBERON:6001747 larval abdominal segment 7 33613 -UBERON:6001755 larval abdominal segment 8 8 33614 -UBERON:6001756 larval abdominal segment 9 8 33615 -UBERON:6003024 adult abdominal segment 7 33616 -UBERON:6000154 embryonic segment 6 33617 -UBERON:6000157 embryonic head segment 7 33618 -UBERON:6000158 embryonic procephalic segment 8 33619 -UBERON:6000160 embryonic antennal segment 9 33620 -UBERON:6000162 embryonic gnathal segment 8 33621 -UBERON:6000165 embryonic labial segment 9 33622 -UBERON:6000167 embryonic thoracic segment 7 33623 -UBERON:6000168 embryonic prothoracic segment 8 33624 -UBERON:6000169 embryonic mesothoracic segment 8 33625 -UBERON:6000170 embryonic metathoracic segment 8 33626 -UBERON:6000172 insect embryonic abdominal segment 7 33627 -UBERON:6000180 embryonic abdominal segment 8 8 33628 -UBERON:6000181 embryonic abdominal segment 9 8 33629 -UBERON:6001729 larval segment 6 33630 -UBERON:6001732 larval head segment 7 33631 -UBERON:6001733 larval procephalic segment 8 33632 -UBERON:6001731 larval ocular segment 9 33633 -UBERON:6001734 larval labral segment 9 33634 -UBERON:6001735 larval antennal segment 9 33635 -UBERON:6001737 larval gnathal segment 8 33636 -UBERON:6001740 larval labial segment 9 33637 -UBERON:6001742 larval thoracic segment 7 33638 -UBERON:6001743 larval prothoracic segment 8 33639 -UBERON:6001744 larval mesothoracic segment 8 33640 -UBERON:6001745 larval metathoracic segment 8 33641 -UBERON:6001747 larval abdominal segment 7 33642 -UBERON:6001755 larval abdominal segment 8 8 33643 -UBERON:6001756 larval abdominal segment 9 8 33644 -UBERON:6003006 adult segment 6 33645 -UBERON:6003009 adult head segment 7 33646 -UBERON:6003010 adult procephalic segment 8 33647 -UBERON:6003011 adult labral segment 9 33648 -UBERON:6003012 adult antennal segment 9 33649 -UBERON:6003019 adult thoracic segment 7 33650 -UBERON:6003020 adult prothoracic segment 8 33651 -UBERON:6003021 adult mesothoracic segment 8 33652 -UBERON:6003024 adult abdominal segment 7 33653 -UBERON:0000974 neck 5 33654 -UBERON:0001137 dorsum 5 33655 -UBERON:8000006 left side of back 6 33656 -UBERON:8000007 right side of back 6 33657 -UBERON:0001353 anal region 5 33658 -UBERON:0001444 subdivision of head 5 33659 -UBERON:0001456 face 6 33660 -UBERON:0001691 external ear 6 33661 -UBERON:0006616 right external ear 7 33662 -UBERON:0006617 left external ear 7 33663 -UBERON:0001757 pinna 6 33664 -UBERON:0002488 helix of outer ear 6 33665 -UBERON:0003251 temporal part of head 6 33666 -UBERON:0003679 mouth floor 6 33667 -UBERON:0004088 orbital region 6 33668 -UBERON:0004089 midface 6 33669 -UBERON:0004101 nasolabial region 6 33670 -UBERON:0008199 chin 6 33671 -UBERON:0008200 forehead 6 33672 -UBERON:0010887 tragus 6 33673 -UBERON:0034766 glabella region 6 33674 -UBERON:1000000 chin ventral margin 6 33675 -UBERON:1000002 cranial midline area 6 33676 -UBERON:1000007 forehead protuberance 6 33677 -UBERON:1000008 left part of face 6 33678 -UBERON:1000009 midline crest 6 33679 -UBERON:1000014 right part of face 6 33680 -UBERON:1000019 top of head 6 33681 -UBERON:0001464 hip 5 33682 -UBERON:0001467 shoulder 5 33683 -UBERON:0001709 upper jaw region 5 33684 -UBERON:4300133 upper jaw symphyseal region 6 33685 -UBERON:0001710 lower jaw region 5 33686 -UBERON:0002030 nipple 5 33687 -UBERON:0013772 left nipple 6 33688 -UBERON:0013773 right nipple 6 33689 -UBERON:0002355 pelvic region of trunk 5 33690 -UBERON:0003131 arthropod tibia 5 33691 -UBERON:0005881 autopodial extension 5 33692 -UBERON:0002544 digit 6 33693 -UBERON:0001466 pedal digit 7 33694 -UBERON:0008445 webbed pedal digit 8 33695 -UBERON:0011984 pedal digit 6 8 33696 -UBERON:0012137 pedal digit 7 8 33697 -UBERON:0012138 pedal digit 8 8 33698 -UBERON:0019241 pedal digit 1 or 5 8 33699 -UBERON:0003631 pedal digit 1 9 33700 -UBERON:0003635 pedal digit 5 9 33701 -UBERON:0019242 pedal digit 2, 3 or 4 8 33702 -UBERON:0003632 pedal digit 2 9 33703 -UBERON:0003633 pedal digit 3 9 33704 -UBERON:0003634 pedal digit 4 9 33705 -UBERON:0002389 manual digit 7 33706 -UBERON:0008444 webbed manual digit 8 33707 -UBERON:0011981 manual digit 6 8 33708 -UBERON:0011982 manual digit 7 8 33709 -UBERON:0011983 manual digit 8 8 33710 -UBERON:0012260 alular digit 8 33711 -UBERON:0012261 manual major digit (Aves) 8 33712 -UBERON:0012262 manual minor digit (Aves) 8 33713 -UBERON:0019231 manual digit 1 or 5 8 33714 -UBERON:0001463 manual digit 1 9 33715 -UBERON:0003625 manual digit 5 9 33716 -UBERON:0019232 manual digit 2, 3 or 4 8 33717 -UBERON:0003622 manual digit 2 9 33718 -UBERON:0003623 manual digit 3 9 33719 -UBERON:0003624 manual digit 4 9 33720 -UBERON:0008443 webbed digit 7 33721 -UBERON:0008444 webbed manual digit 8 33722 -UBERON:0008445 webbed pedal digit 8 33723 -UBERON:0016856 digit 6 7 33724 -UBERON:0011981 manual digit 6 8 33725 -UBERON:0016857 digit 7 7 33726 -UBERON:0011982 manual digit 7 8 33727 -UBERON:0016858 digit 8 7 33728 -UBERON:0011983 manual digit 8 8 33729 -UBERON:0019221 digit 1 or 5 7 33730 -UBERON:0006048 digit 1 8 33731 -UBERON:0001463 manual digit 1 9 33732 -UBERON:0003631 pedal digit 1 9 33733 -UBERON:0006052 digit 5 8 33734 -UBERON:0003625 manual digit 5 9 33735 -UBERON:0003635 pedal digit 5 9 33736 -UBERON:0019231 manual digit 1 or 5 8 33737 -UBERON:0001463 manual digit 1 9 33738 -UBERON:0003625 manual digit 5 9 33739 -UBERON:0019241 pedal digit 1 or 5 8 33740 -UBERON:0003631 pedal digit 1 9 33741 -UBERON:0003635 pedal digit 5 9 33742 -UBERON:0019222 digit 2, 3 or 4 7 33743 -UBERON:0006049 digit 2 8 33744 -UBERON:0003622 manual digit 2 9 33745 -UBERON:0003632 pedal digit 2 9 33746 -UBERON:0006050 digit 3 8 33747 -UBERON:0003623 manual digit 3 9 33748 -UBERON:0003633 pedal digit 3 9 33749 -UBERON:0006051 digit 4 8 33750 -UBERON:0003624 manual digit 4 9 33751 -UBERON:0003634 pedal digit 4 9 33752 -UBERON:0019232 manual digit 2, 3 or 4 8 33753 -UBERON:0003622 manual digit 2 9 33754 -UBERON:0003623 manual digit 3 9 33755 -UBERON:0003624 manual digit 4 9 33756 -UBERON:0019242 pedal digit 2, 3 or 4 8 33757 -UBERON:0003632 pedal digit 2 9 33758 -UBERON:0003633 pedal digit 3 9 33759 -UBERON:0003634 pedal digit 4 9 33760 -UBERON:0005880 prepollex 6 33761 -UBERON:0012136 prehallux 6 33762 -UBERON:0006333 snout 5 33763 -UBERON:0018133 monotreme bill 6 33764 -UBERON:0006575 mantle 5 33765 -UBERON:0006635 anterior abdominal wall 5 33766 -UBERON:0007811 craniocervical region 5 33767 -UBERON:0007823 appendage girdle region 5 33768 -UBERON:0001271 pelvic girdle region 6 33769 -UBERON:0011092 right pelvic girdle region 7 33770 -UBERON:0011093 left pelvic girdle region 7 33771 -UBERON:0001421 pectoral girdle region 6 33772 -UBERON:0008231 dorsal thoracic segment of trunk 5 33773 -UBERON:0008258 oral subdivision of organism 5 33774 -UBERON:0008259 aboral subdivision of organism 5 33775 -UBERON:0008262 ambulacral area 5 33776 -UBERON:0008263 inter-ambulacral area 5 33777 -UBERON:0008283 columnella 5 33778 -UBERON:0008337 inguinal part of abdomen 5 33779 -UBERON:0035410 left inguinal part of abdomen 6 33780 -UBERON:0035505 right inguinal part of abdomen 6 33781 -UBERON:0008937 visceral hump 5 33782 -UBERON:0008943 headfoot 5 33783 -UBERON:0009569 subdivision of trunk 5 33784 -UBERON:0000915 thoracic segment of trunk 6 33785 -UBERON:0000916 abdomen 6 33786 -UBERON:0001443 chest 6 33787 -UBERON:0002356 perineum 6 33788 -UBERON:0002417 abdominal segment of trunk 6 33789 -UBERON:0005462 lower back 6 33790 -UBERON:0011270 dorsal trunk 6 33791 -UBERON:0013203 hypogastrium 6 33792 -UBERON:0013236 ventral trunk 6 33793 -UBERON:0019320 precordial region 6 33794 -UBERON:0010707 appendage girdle complex 5 33795 -UBERON:0010708 pectoral complex 6 33796 -UBERON:0010709 pelvic complex 6 33797 -UBERON:0010758 subdivision of organism along appendicular axis 5 33798 -UBERON:0006058 multi-limb segment region 6 33799 -UBERON:0000978 leg 7 33800 -UBERON:0001460 arm 7 33801 -UBERON:0010538 paired limb/fin segment 6 33802 -UBERON:0002529 limb segment 7 33803 -UBERON:0002470 autopod region 8 33804 -UBERON:0002387 pes 9 33805 -UBERON:0008442 webbed pes 10 33806 -UBERON:0002398 manus 9 33807 -UBERON:0008441 webbed manus 10 33808 -UBERON:0008440 webbed autopod 9 33809 -UBERON:0008441 webbed manus 10 33810 -UBERON:0008442 webbed pes 10 33811 -UBERON:0002471 zeugopod 8 33812 -UBERON:0002386 forelimb zeugopod 9 33813 -UBERON:0003823 hindlimb zeugopod 9 33814 -UBERON:0002472 stylopod 8 33815 -UBERON:0000376 hindlimb stylopod 9 33816 -UBERON:0003822 forelimb stylopod 9 33817 -UBERON:0006716 mesopodium region 8 33818 -UBERON:0004452 carpal region 9 33819 -UBERON:0004454 tarsal region 9 33820 -UBERON:0008784 lower limb segment 8 33821 -UBERON:0000376 hindlimb stylopod 9 33822 -UBERON:0000978 leg 9 33823 -UBERON:0000983 metatarsus region 9 33824 -UBERON:0001465 knee 9 33825 -UBERON:0002387 pes 9 33826 -UBERON:0008442 webbed pes 10 33827 -UBERON:0003823 hindlimb zeugopod 9 33828 -UBERON:0004454 tarsal region 9 33829 -UBERON:0005445 segment of pes 9 33830 -UBERON:0008338 plantar part of pes 10 33831 -UBERON:0009553 distal segment of pedal digit 10 33832 -UBERON:0012142 pedal digitopodium region 10 33833 -UBERON:0012356 pedal acropodium region 10 33834 -UBERON:0015875 heel 10 33835 -UBERON:4200015 inner digits of foot 10 33836 -UBERON:4200109 outer digits of pes 10 33837 -UBERON:0011581 platypus calcaneus spur 9 33838 -UBERON:0008785 upper limb segment 8 33839 -UBERON:0001460 arm 9 33840 -UBERON:0001461 elbow 9 33841 -UBERON:0002386 forelimb zeugopod 9 33842 -UBERON:0002398 manus 9 33843 -UBERON:0008441 webbed manus 10 33844 -UBERON:0003822 forelimb stylopod 9 33845 -UBERON:0004452 carpal region 9 33846 -UBERON:0005451 segment of manus 9 33847 -UBERON:0004453 metacarpus region 10 33848 -UBERON:0008878 palmar part of manus 10 33849 -UBERON:0009552 distal segment of manual digit 10 33850 -UBERON:0012141 manual digitopodium region 10 33851 -UBERON:0012355 manual acropodium region 10 33852 -UBERON:4200094 inner digits of hand 10 33853 -UBERON:4200108 outer digit of hand 10 33854 -UBERON:0008837 palmar/plantar part of autopod 8 33855 -UBERON:0008338 plantar part of pes 9 33856 -UBERON:0008878 palmar part of manus 9 33857 -UBERON:0009551 distal segment of digit 8 33858 -UBERON:0009552 distal segment of manual digit 9 33859 -UBERON:0009553 distal segment of pedal digit 9 33860 -UBERON:0009563 pastern region of limb 8 33861 -UBERON:0009877 metapodium region 8 33862 -UBERON:0000983 metatarsus region 9 33863 -UBERON:0004453 metacarpus region 9 33864 -UBERON:0012139 segment of autopod 8 33865 -UBERON:0005445 segment of pes 9 33866 -UBERON:0008338 plantar part of pes 10 33867 -UBERON:0009553 distal segment of pedal digit 10 33868 -UBERON:0012142 pedal digitopodium region 10 33869 -UBERON:0012356 pedal acropodium region 10 33870 -UBERON:0015875 heel 10 33871 -UBERON:4200015 inner digits of foot 10 33872 -UBERON:4200109 outer digits of pes 10 33873 -UBERON:0005451 segment of manus 9 33874 -UBERON:0004453 metacarpus region 10 33875 -UBERON:0008878 palmar part of manus 10 33876 -UBERON:0009552 distal segment of manual digit 10 33877 -UBERON:0012141 manual digitopodium region 10 33878 -UBERON:0012355 manual acropodium region 10 33879 -UBERON:4200094 inner digits of hand 10 33880 -UBERON:4200108 outer digit of hand 10 33881 -UBERON:0012140 digitopodium region 9 33882 -UBERON:0012141 manual digitopodium region 10 33883 -UBERON:0012142 pedal digitopodium region 10 33884 -UBERON:0012354 acropodium region 9 33885 -UBERON:0012355 manual acropodium region 10 33886 -UBERON:0012356 pedal acropodium region 10 33887 -UBERON:0018304 post-axial region of pectoral appendage 7 33888 -UBERON:4300123 pre-axial region 7 33889 -UBERON:4300147 pectoral fin base 7 33890 -UBERON:6007149 segment of antenna 6 33891 -UBERON:6004519 arista 7 33892 -UBERON:6007150 segment of leg 6 33893 -UBERON:6004646 tarsal segment 7 33894 -UBERON:6004648 metatarsus 8 33895 -UBERON:6004670 prothoracic metatarsus 9 33896 -UBERON:6007020 metatarsus of male prothoracic leg 10 33897 -UBERON:6004668 prothoracic tarsal segment 8 33898 -UBERON:6004670 prothoracic metatarsus 9 33899 -UBERON:6007020 metatarsus of male prothoracic leg 10 33900 -UBERON:0011303 lamprey sucker 5 33901 -UBERON:0011304 tunicate postabdomen 5 33902 -UBERON:0011595 jaw region 5 33903 -UBERON:0011676 subdivision of organism along main body axis 5 33904 -UBERON:0000033 head 6 33905 -UBERON:0008816 embryonic head 7 33906 -UBERON:6000004 insect head 7 33907 -UBERON:6001730 larval head 7 33908 -UBERON:6003007 insect adult head 7 33909 -UBERON:0000915 thoracic segment of trunk 6 33910 -UBERON:0002100 trunk 6 33911 -UBERON:0002415 tail 6 33912 -UBERON:0007812 post-anal tail 7 33913 -UBERON:0002417 abdominal segment of trunk 6 33914 -UBERON:0005434 cervical region 6 33915 -UBERON:0012477 dorsal part of neck 7 33916 -UBERON:0005473 sacral region 6 33917 -UBERON:0006071 caudal region 6 33918 -UBERON:0010162 post-anal tail tip 6 33919 -UBERON:4200129 synarcual region 6 33920 -UBERON:0013235 ventrum 5 33921 -UBERON:0013701 main body axis 5 33922 -UBERON:0013702 body proper 5 33923 -UBERON:0016416 anterior chest 5 33924 -UBERON:0019199 lateral side of chest 5 33925 -UBERON:0035168 infraclavicular region 5 33926 -UBERON:0035258 mons pubis 5 33927 -UBERON:0035289 axillary tail of breast 5 33928 -UBERON:0035603 enteropneust proboscis 5 33929 -UBERON:0035604 enteropneust collar 5 33930 -UBERON:0035605 enteropneust trunk 5 33931 -UBERON:0035634 quadrant of breast 5 33932 -UBERON:0035635 upper quadrant of breast 6 33933 -UBERON:0035328 upper outer quadrant of breast 7 33934 -UBERON:0035542 upper inner quadrant of breast 7 33935 -UBERON:0035636 lower quadrant of breast 6 33936 -UBERON:0035365 lower outer quadrant of breast 7 33937 -UBERON:0035477 lower inner quadrant of breast 7 33938 -UBERON:0035637 inner quadrant of breast 6 33939 -UBERON:0035477 lower inner quadrant of breast 7 33940 -UBERON:0035542 upper inner quadrant of breast 7 33941 -UBERON:0035638 outer quadrant of breast 6 33942 -UBERON:0035328 upper outer quadrant of breast 7 33943 -UBERON:0035365 lower outer quadrant of breast 7 33944 -UBERON:0035775 submandibular region 5 33945 -UBERON:2000006 ball 5 33946 -UBERON:2000106 extension 5 33947 -UBERON:2002255 ocular side 5 33948 -UBERON:2002256 blind side 5 33949 -UBERON:4200134 antimere 5 33950 -UBERON:5002544 digit plus metapodial segment 5 33951 -UBERON:0016866 digit 6 plus metapodial segment 6 33952 -UBERON:5011981 manual digit 6 plus metapodial segment 7 33953 -UBERON:0016867 digit 7 plus metapodial segment 6 33954 -UBERON:5011982 manual digit 7 plus metapodial segment 7 33955 -UBERON:0016868 digit 8 plus metapodial segment 6 33956 -UBERON:5011983 manual digit 8 plus metapodial segment 7 33957 -UBERON:5001466 pedal digit plus metapodial segment 6 33958 -UBERON:5003631 pedal digit 1 plus metapodial segment 7 33959 -UBERON:5003632 pedal digit 2 plus metapodial segment 7 33960 -UBERON:5003633 pedal digit 3 plus metapodial segment 7 33961 -UBERON:5003634 pedal digit 4 plus metapodial segment 7 33962 -UBERON:5003635 pedal digit 5 plus metapodial segment 7 33963 -UBERON:5011984 pedal digit 6 plus metapodial segment 7 33964 -UBERON:5012137 pedal digit 7 plus metapodial segment 7 33965 -UBERON:5012138 pedal digit 8 plus metapodial segment 7 33966 -UBERON:5002389 manual digit plus metapodial segment 6 33967 -UBERON:5001463 manual digit 1 plus metapodial segment 7 33968 -UBERON:5003622 manual digit 2 plus metapodial segment 7 33969 -UBERON:5003623 manual digit 3 plus metapodial segment 7 33970 -UBERON:5003624 manual digit 4 plus metapodial segment 7 33971 -UBERON:5003625 manual digit 5 plus metapodial segment 7 33972 -UBERON:5011981 manual digit 6 plus metapodial segment 7 33973 -UBERON:5011982 manual digit 7 plus metapodial segment 7 33974 -UBERON:5011983 manual digit 8 plus metapodial segment 7 33975 -UBERON:5012260 alular digit plus metapodial segment 7 33976 -UBERON:5012261 manual major digit (Aves) plus metapodial segment 7 33977 -UBERON:5012262 manual minor digit (Aves) plus metapodial segment 7 33978 -UBERON:5006048 digit 1 plus metapodial segment 6 33979 -UBERON:5001463 manual digit 1 plus metapodial segment 7 33980 -UBERON:5003631 pedal digit 1 plus metapodial segment 7 33981 -UBERON:5006049 digit 2 plus metapodial segment 6 33982 -UBERON:5003622 manual digit 2 plus metapodial segment 7 33983 -UBERON:5003632 pedal digit 2 plus metapodial segment 7 33984 -UBERON:5006050 digit 3 plus metapodial segment 6 33985 -UBERON:5003623 manual digit 3 plus metapodial segment 7 33986 -UBERON:5003633 pedal digit 3 plus metapodial segment 7 33987 -UBERON:5006051 digit 4 plus metapodial segment 6 33988 -UBERON:5003624 manual digit 4 plus metapodial segment 7 33989 -UBERON:5003634 pedal digit 4 plus metapodial segment 7 33990 -UBERON:5006052 digit 5 plus metapodial segment 6 33991 -UBERON:5003625 manual digit 5 plus metapodial segment 7 33992 -UBERON:5003635 pedal digit 5 plus metapodial segment 7 33993 -UBERON:6004535 proboscis 5 33994 -UBERON:6057001 anterior-posterior subdivision of organism 5 33995 -UBERON:6000002 tagma 6 33996 -UBERON:6000015 insect thorax 7 33997 -UBERON:6000166 insect embryonic thorax 8 33998 -UBERON:6001741 larval thorax 8 33999 -UBERON:6003018 adult thorax 8 34000 -UBERON:6000020 insect abdomen 7 34001 -UBERON:6000171 insect embryonic abdomen 8 34002 -UBERON:6001746 larval abdomen 8 34003 -UBERON:6003023 adult abdomen 8 34004 -UBERON:6000137 embryonic tagma 7 34005 -UBERON:6000166 insect embryonic thorax 8 34006 -UBERON:6000171 insect embryonic abdomen 8 34007 -UBERON:6001728 larval tagma 7 34008 -UBERON:6001741 larval thorax 8 34009 -UBERON:6001746 larval abdomen 8 34010 -UBERON:6003005 adult tagma 7 34011 -UBERON:6003007 insect adult head 8 34012 -UBERON:6003018 adult thorax 8 34013 -UBERON:6003023 adult abdomen 8 34014 -UBERON:0000479 tissue 4 34015 -UBERON:0000054 macula 5 34016 -UBERON:0002212 macula of saccule of membranous labyrinth 6 34017 -UBERON:0002214 macula of utricle of membranous labyrinth 6 34018 -UBERON:2000116 macula lagena 6 34019 -UBERON:2000168 anterior macula 6 34020 -UBERON:2000234 macula neglecta 6 34021 -UBERON:2000558 posterior macula 6 34022 -UBERON:0000389 lens cortex 5 34023 -UBERON:0000412 dermal papilla 5 34024 -UBERON:0000483 epithelium 5 34025 -UBERON:0000486 multilaminar epithelium 6 34026 -UBERON:0000365 urothelium 7 34027 -UBERON:0001254 urothelium of ureter 8 34028 -UBERON:0005912 transitional epithelium of major calyx 9 34029 -UBERON:0004645 urinary bladder urothelium 8 34030 -UBERON:0004787 urethra urothelium 8 34031 -UBERON:0015777 transitional epithelium of prostatic urethra 9 34032 -UBERON:0004788 kidney pelvis urothelium 8 34033 -UBERON:0005912 transitional epithelium of major calyx 9 34034 -UBERON:0001344 epithelium of vagina 7 34035 -UBERON:0006923 vagina squamous epithelium 8 34036 -UBERON:0004290 dermomyotome 7 34037 -UBERON:0005154 epithelial cord 7 34038 -UBERON:0004182 mammary gland cord 8 34039 -UBERON:0005295 sex cord 8 34040 -UBERON:0005296 ovary sex cord 9 34041 -UBERON:0005297 testis sex cord 9 34042 -UBERON:0010141 primitive sex cord of indifferent gonad 9 34043 -UBERON:0009843 prostate epithelial cord 8 34044 -UBERON:0006915 stratified squamous epithelium 7 34045 -UBERON:0001949 gingival epithelium 8 34046 -UBERON:0013195 parakeratinized epithelium of gingiva 9 34047 -UBERON:0002018 synovial membrane of synovial joint 8 34048 -UBERON:0006923 vagina squamous epithelium 8 34049 -UBERON:0010304 non-keratinized stratified squamous epithelium 8 34050 -UBERON:0006763 epithelium of conjunctiva 9 34051 -UBERON:0006916 non-keratinized epithelium of tongue 9 34052 -UBERON:0006922 cervix squamous epithelium 9 34053 -UBERON:0012329 keratinized stratified squamous epithelium 8 34054 -UBERON:0004650 tongue keratinized epithelium 9 34055 -UBERON:0017180 hemipenis keratinized epithelium 9 34056 -UBERON:0019307 epithelium of external nose 9 34057 -UBERON:0007602 stratified columnar epithelium 7 34058 -UBERON:0007606 ciliated stratified columnar epithelium 8 34059 -UBERON:0007603 stratified cuboidal epithelium 7 34060 -UBERON:0011197 parathyroid epithelium 7 34061 -UBERON:0011195 inferior parathyroid epithelium 8 34062 -UBERON:0011196 superior parathyroid epithelium 8 34063 -UBERON:0015760 mixed stratified cuboidal and columnar epithelium 7 34064 -UBERON:0000488 atypical epithelium 6 34065 -UBERON:0000420 myoepithelium 7 34066 -UBERON:0006954 mammary gland myoepithelium 8 34067 -UBERON:0035076 parotid gland myoepithelium 8 34068 -UBERON:0001778 ciliary epithelium 7 34069 -UBERON:0002506 iris epithelium 7 34070 -UBERON:0006934 sensory epithelium 7 34071 -UBERON:0001997 olfactory epithelium 8 34072 -UBERON:0002926 gustatory epithelium 8 34073 -UBERON:0014452 gustatory epithelium of tongue 9 34074 -UBERON:0014453 gustatory epithelium of palate 9 34075 -UBERON:0006932 vestibular epithelium 8 34076 -UBERON:0003241 epithelium of utricle 9 34077 -UBERON:0003242 epithelium of saccule 9 34078 -UBERON:0003363 epithelium of ductus reuniens 9 34079 -UBERON:0005657 crus commune epithelium 9 34080 -UBERON:0006935 crista ampullaris neuroepithelium 9 34081 -UBERON:0007274 crista of ampulla of anterior semicircular duct of membranous laybrinth 10 34082 -UBERON:0007275 crista of ampulla of posterior semicircular duct of membranous laybrinth 10 34083 -UBERON:0007276 crista of ampulla of lateral semicircular duct of membranous laybrinth 10 34084 -UBERON:0009969 statoacoustic epithelium 8 34085 -UBERON:0013193 parakeratinized epithelium 7 34086 -UBERON:0006918 parakeratinized epithelium of tongue 8 34087 -UBERON:0013195 parakeratinized epithelium of gingiva 8 34088 -UBERON:0013194 orthokeratinized epithelium 7 34089 -UBERON:0000490 unilaminar epithelium 6 34090 -UBERON:0000076 external ectoderm 7 34091 -UBERON:0005216 optic eminence surface ectoderm 8 34092 -UBERON:0000484 simple cuboidal epithelium 7 34093 -UBERON:0001304 germinal epithelium of ovary 8 34094 -UBERON:0001803 epithelium of lens 8 34095 -UBERON:0005614 lens anterior epithelium 9 34096 -UBERON:0005615 lens equatorial epithelium 9 34097 -UBERON:0006930 glandular cuboidal epithelium 8 34098 -UBERON:0012363 thyroid follicle epithelium 8 34099 -UBERON:0014388 kidney collecting duct epithelium 8 34100 -UBERON:0000485 simple columnar epithelium 7 34101 -UBERON:0000428 prostate epithelium 8 34102 -UBERON:0001276 epithelium of stomach 8 34103 -UBERON:0005477 stomach fundus epithelium 9 34104 -UBERON:0005637 pyloric region epithelium 9 34105 -UBERON:0006921 stomach squamous epithelium 9 34106 -UBERON:0006924 stomach glandular epithelium 9 34107 -UBERON:0010040 stomach non-glandular epithelium 9 34108 -UBERON:0008285 rumen epithelium 10 34109 -UBERON:0001277 intestinal epithelium 8 34110 -UBERON:0001278 epithelium of large intestine 9 34111 -UBERON:0000397 colonic epithelium 10 34112 -UBERON:0005636 caecum epithelium 11 34113 -UBERON:0009697 epithelium of appendix 12 34114 -UBERON:0013695 colon endothelium 11 34115 -UBERON:0003354 epithelium of rectum 10 34116 -UBERON:0013741 base of crypt of Lieberkuhn of large intestine 10 34117 -UBERON:0013742 wall of crypt of Lieberkuhn of large intestine 10 34118 -UBERON:0015716 anal canal epithelium 10 34119 -UBERON:0022281 epithelium of crypt of Lieberkuhn of large intestine 10 34120 -UBERON:0001902 epithelium of small intestine 9 34121 -UBERON:0013636 epithelium of intestinal villus 10 34122 -UBERON:0000400 jejunal epithelium 11 34123 -UBERON:0008345 ileal epithelium 11 34124 -UBERON:0008346 duodenal epithelium 11 34125 -UBERON:0005643 foregut duodenum epithelium 12 34126 -UBERON:0005644 midgut duodenum epithelium 12 34127 -UBERON:0013743 base of crypt of Lieberkuhn of small intestine 10 34128 -UBERON:0013744 wall of crypt of Lieberkuhn of small intestine 10 34129 -UBERON:0022280 epithelium of crypt of Lieberkuhn of small intestine 10 34130 -UBERON:0004693 Peyer's patch epithelium 9 34131 -UBERON:0011184 epithelium of crypt of Lieberkuhn 9 34132 -UBERON:0013739 base of crypt of Lieberkuhn 10 34133 -UBERON:0013741 base of crypt of Lieberkuhn of large intestine 11 34134 -UBERON:0013743 base of crypt of Lieberkuhn of small intestine 11 34135 -UBERON:0013740 wall of crypt of Lieberkuhn 10 34136 -UBERON:0013742 wall of crypt of Lieberkuhn of large intestine 11 34137 -UBERON:0013744 wall of crypt of Lieberkuhn of small intestine 11 34138 -UBERON:0022280 epithelium of crypt of Lieberkuhn of small intestine 10 34139 -UBERON:0022281 epithelium of crypt of Lieberkuhn of large intestine 10 34140 -UBERON:2005126 intestinal bulb epithelium 9 34141 -UBERON:0002029 epithelium of gall bladder 8 34142 -UBERON:0003894 liver primordium 8 34143 -UBERON:0004341 primitive streak 8 34144 -UBERON:0004544 epididymis epithelium 8 34145 -UBERON:0006929 glandular columnar epithelium 8 34146 -UBERON:0006924 stomach glandular epithelium 9 34147 -UBERON:0012276 endometrium glandular epithelium 9 34148 -UBERON:0007592 ciliated columnar epithelium 8 34149 -UBERON:0007589 ciliated columnar oviduct epithelium 9 34150 -UBERON:0012276 endometrium glandular epithelium 10 34151 -UBERON:0010499 pseudostratified ciliated columnar epithelium 9 34152 -UBERON:0004802 respiratory tract epithelium 10 34153 -UBERON:0004814 upper respiratory tract epithelium 11 34154 -UBERON:0001951 epithelium of nasopharynx 12 34155 -UBERON:0005384 nasal cavity epithelium 12 34156 -UBERON:0001997 olfactory epithelium 13 34157 -UBERON:0005385 nasal cavity respiratory epithelium 13 34158 -UBERON:0009671 nasal fin 13 34159 -UBERON:0004815 lower respiratory tract epithelium 11 34160 -UBERON:0000115 lung epithelium 12 34161 -UBERON:0002051 epithelium of bronchiole 13 34162 -UBERON:0001955 epithelium of respiratory bronchiole 14 34163 -UBERON:0001958 terminal bronchiole epithelium 14 34164 -UBERON:0002169 alveolar sac 13 34165 -UBERON:0002339 epithelium of lobar bronchus 13 34166 -UBERON:0015794 left lung lobar bronchus epithelium 14 34167 -UBERON:0015795 right lung lobar bronchus epitheium 14 34168 -UBERON:0002341 epithelium of segmental bronchus 13 34169 -UBERON:0003364 epithelium of right lung 13 34170 -UBERON:0005639 right lung cranial lobe epithelium 14 34171 -UBERON:0005674 right lung cranial lobe endothelium 15 34172 -UBERON:0005640 right lung caudal lobe epithelium 14 34173 -UBERON:0005675 right lung caudal lobe endothelium 15 34174 -UBERON:0005655 right lung accessory lobe epithelium 14 34175 -UBERON:0005676 right lung accessory lobe endothelium 15 34176 -UBERON:0005672 right lung endothelium 14 34177 -UBERON:0005674 right lung cranial lobe endothelium 15 34178 -UBERON:0005675 right lung caudal lobe endothelium 15 34179 -UBERON:0005676 right lung accessory lobe endothelium 15 34180 -UBERON:0015795 right lung lobar bronchus epitheium 14 34181 -UBERON:0003365 epithelium of left lung 13 34182 -UBERON:0005673 left lung endothelium 14 34183 -UBERON:0015794 left lung lobar bronchus epithelium 14 34184 -UBERON:0004821 pulmonary alveolus epithelium 13 34185 -UBERON:0005314 alveolar primary septum 14 34186 -UBERON:0005315 alveolar secondary septum 14 34187 -UBERON:0013479 lung endothelium 13 34188 -UBERON:0008397 tracheobronchial epithelium 12 34189 -UBERON:0001901 epithelium of trachea 13 34190 -UBERON:0003279 endothelium of trachea 14 34191 -UBERON:0002031 epithelium of bronchus 13 34192 -UBERON:0002051 epithelium of bronchiole 14 34193 -UBERON:0001955 epithelium of respiratory bronchiole 15 34194 -UBERON:0001958 terminal bronchiole epithelium 15 34195 -UBERON:0002339 epithelium of lobar bronchus 14 34196 -UBERON:0015794 left lung lobar bronchus epithelium 15 34197 -UBERON:0015795 right lung lobar bronchus epitheium 15 34198 -UBERON:0002340 epithelium of main bronchus 14 34199 -UBERON:0003280 endothelium of main bronchus 15 34200 -UBERON:0002341 epithelium of segmental bronchus 14 34201 -UBERON:0004818 terminal bronchus epithelium 14 34202 -UBERON:0004816 larynx epithelium 11 34203 -UBERON:0010498 pseudostratified columnar epithelium 8 34204 -UBERON:0010499 pseudostratified ciliated columnar epithelium 9 34205 -UBERON:0004802 respiratory tract epithelium 10 34206 -UBERON:0004814 upper respiratory tract epithelium 11 34207 -UBERON:0001951 epithelium of nasopharynx 12 34208 -UBERON:0005384 nasal cavity epithelium 12 34209 -UBERON:0001997 olfactory epithelium 13 34210 -UBERON:0005385 nasal cavity respiratory epithelium 13 34211 -UBERON:0009671 nasal fin 13 34212 -UBERON:0004815 lower respiratory tract epithelium 11 34213 -UBERON:0000115 lung epithelium 12 34214 -UBERON:0002051 epithelium of bronchiole 13 34215 -UBERON:0001955 epithelium of respiratory bronchiole 14 34216 -UBERON:0001958 terminal bronchiole epithelium 14 34217 -UBERON:0002169 alveolar sac 13 34218 -UBERON:0002339 epithelium of lobar bronchus 13 34219 -UBERON:0015794 left lung lobar bronchus epithelium 14 34220 -UBERON:0015795 right lung lobar bronchus epitheium 14 34221 -UBERON:0002341 epithelium of segmental bronchus 13 34222 -UBERON:0003364 epithelium of right lung 13 34223 -UBERON:0005639 right lung cranial lobe epithelium 14 34224 -UBERON:0005674 right lung cranial lobe endothelium 15 34225 -UBERON:0005640 right lung caudal lobe epithelium 14 34226 -UBERON:0005675 right lung caudal lobe endothelium 15 34227 -UBERON:0005655 right lung accessory lobe epithelium 14 34228 -UBERON:0005676 right lung accessory lobe endothelium 15 34229 -UBERON:0005672 right lung endothelium 14 34230 -UBERON:0005674 right lung cranial lobe endothelium 15 34231 -UBERON:0005675 right lung caudal lobe endothelium 15 34232 -UBERON:0005676 right lung accessory lobe endothelium 15 34233 -UBERON:0015795 right lung lobar bronchus epitheium 14 34234 -UBERON:0003365 epithelium of left lung 13 34235 -UBERON:0005673 left lung endothelium 14 34236 -UBERON:0015794 left lung lobar bronchus epithelium 14 34237 -UBERON:0004821 pulmonary alveolus epithelium 13 34238 -UBERON:0005314 alveolar primary septum 14 34239 -UBERON:0005315 alveolar secondary septum 14 34240 -UBERON:0013479 lung endothelium 13 34241 -UBERON:0008397 tracheobronchial epithelium 12 34242 -UBERON:0001901 epithelium of trachea 13 34243 -UBERON:0003279 endothelium of trachea 14 34244 -UBERON:0002031 epithelium of bronchus 13 34245 -UBERON:0002051 epithelium of bronchiole 14 34246 -UBERON:0001955 epithelium of respiratory bronchiole 15 34247 -UBERON:0001958 terminal bronchiole epithelium 15 34248 -UBERON:0002339 epithelium of lobar bronchus 14 34249 -UBERON:0015794 left lung lobar bronchus epithelium 15 34250 -UBERON:0015795 right lung lobar bronchus epitheium 15 34251 -UBERON:0002340 epithelium of main bronchus 14 34252 -UBERON:0003280 endothelium of main bronchus 15 34253 -UBERON:0002341 epithelium of segmental bronchus 14 34254 -UBERON:0004818 terminal bronchus epithelium 14 34255 -UBERON:0004816 larynx epithelium 11 34256 -UBERON:0010501 pseudostratified smooth columnar epithelium 9 34257 -UBERON:6006032 mesothoracic tergum primordium 8 34258 -UBERON:0000487 simple squamous epithelium 7 34259 -UBERON:0001081 endocardium of ventricle 8 34260 -UBERON:0009712 endocardium of right ventricle 9 34261 -UBERON:0009713 endocardium of left ventricle 9 34262 -UBERON:0001136 mesothelium 8 34263 -UBERON:0003274 mesothelium of omental bursa 9 34264 -UBERON:0003388 mesothelium of pericardial cavity 9 34265 -UBERON:0007186 pericardial visceral mesothelium 10 34266 -UBERON:0007187 pericardial parietal mesothelium 10 34267 -UBERON:0007188 mesothelium of serous pericardium 10 34268 -UBERON:0015128 subepicardial layer of epicardium 11 34269 -UBERON:0003389 mesothelium of diaphragm 9 34270 -UBERON:0003390 mesothelium of pleural cavity 9 34271 -UBERON:0004813 seminiferous tubule epithelium 9 34272 -UBERON:0005669 peritoneal cavity mesothelium 9 34273 -UBERON:0005670 greater omentum mesothelium 9 34274 -UBERON:0005671 greater sac mesothelium 9 34275 -UBERON:0007140 parietal mesothelium 9 34276 -UBERON:0007187 pericardial parietal mesothelium 10 34277 -UBERON:0007141 visceral mesothelium 9 34278 -UBERON:0007186 pericardial visceral mesothelium 10 34279 -UBERON:0007185 pericardio-peritoneal canal mesothelium 9 34280 -UBERON:0009499 parietal of mesothelium of pericardio-peritoneal canal 10 34281 -UBERON:0001986 endothelium 8 34282 -UBERON:0000201 endothelial blood brain barrier 9 34283 -UBERON:0001985 corneal endothelium 9 34284 -UBERON:0003279 endothelium of trachea 9 34285 -UBERON:0003280 endothelium of main bronchus 9 34286 -UBERON:0003915 endothelial tube 9 34287 -UBERON:0001917 endothelium of artery 10 34288 -UBERON:0004848 respiratory system arterial endothelium 11 34289 -UBERON:0005317 pulmonary artery endothelium 11 34290 -UBERON:0007778 umbilical artery endothelium 11 34291 -UBERON:0019189 carotid artery endothelium 11 34292 -UBERON:0019196 iliac artery endothelium 11 34293 -UBERON:0004850 lymph node endothelium 9 34294 -UBERON:0004852 cardiovascular system endothelium 9 34295 -UBERON:0002042 lymphatic vessel endothelium 10 34296 -UBERON:0003529 respiratory system lymphatic vessel endothelium 11 34297 -UBERON:0004189 glomerular endothelium 10 34298 -UBERON:0004294 glomerular capillary endothelium 11 34299 -UBERON:0005136 metanephric glomerular endothelium 11 34300 -UBERON:0004638 blood vessel endothelium 10 34301 -UBERON:0001915 endothelium of capillary 11 34302 -UBERON:0003489 respiratory system capillary endothelium 12 34303 -UBERON:0004294 glomerular capillary endothelium 12 34304 -UBERON:0012441 endothelium of peritubular capillary 12 34305 -UBERON:0001916 endothelium of arteriole 11 34306 -UBERON:0001917 endothelium of artery 11 34307 -UBERON:0004848 respiratory system arterial endothelium 12 34308 -UBERON:0005317 pulmonary artery endothelium 12 34309 -UBERON:0007778 umbilical artery endothelium 12 34310 -UBERON:0019189 carotid artery endothelium 12 34311 -UBERON:0019196 iliac artery endothelium 12 34312 -UBERON:0001918 endothelium of venule 11 34313 -UBERON:0001919 endothelium of vein 11 34314 -UBERON:0004698 vena cava endothelium 12 34315 -UBERON:0004849 respiratory system venous endothelium 12 34316 -UBERON:0007777 umbilical vein endothelium 12 34317 -UBERON:0004702 respiratory system blood vessel endothelium 11 34318 -UBERON:0003489 respiratory system capillary endothelium 12 34319 -UBERON:0004848 respiratory system arterial endothelium 12 34320 -UBERON:0004849 respiratory system venous endothelium 12 34321 -UBERON:0013479 lung endothelium 12 34322 -UBERON:0004851 aorta endothelium 11 34323 -UBERON:2005259 continuous capillary 11 34324 -UBERON:2005260 fenestrated capillary 11 34325 -UBERON:0003909 sinusoid 12 34326 -UBERON:0001281 hepatic sinusoid 13 34327 -UBERON:0009548 hepatic sinusoid of left of lobe of liver 14 34328 -UBERON:0011737 caudate lobe hepatic sinusoid 15 34329 -UBERON:0009549 hepatic sinusoid of right of lobe of liver 14 34330 -UBERON:0011737 caudate lobe hepatic sinusoid 15 34331 -UBERON:0011738 quadrate lobe hepatic sinusoid 15 34332 -UBERON:0003910 splenic sinusoid 13 34333 -UBERON:0004700 arterial system endothelium 10 34334 -UBERON:0001916 endothelium of arteriole 11 34335 -UBERON:0001917 endothelium of artery 11 34336 -UBERON:0004848 respiratory system arterial endothelium 12 34337 -UBERON:0005317 pulmonary artery endothelium 12 34338 -UBERON:0007778 umbilical artery endothelium 12 34339 -UBERON:0019189 carotid artery endothelium 12 34340 -UBERON:0019196 iliac artery endothelium 12 34341 -UBERON:0004851 aorta endothelium 11 34342 -UBERON:0004701 venous system endothelium 10 34343 -UBERON:0001918 endothelium of venule 11 34344 -UBERON:0001919 endothelium of vein 11 34345 -UBERON:0004698 vena cava endothelium 12 34346 -UBERON:0004849 respiratory system venous endothelium 12 34347 -UBERON:0007777 umbilical vein endothelium 12 34348 -UBERON:0008307 heart endothelium 10 34349 -UBERON:0004699 outflow tract endothelium 11 34350 -UBERON:0005316 endocardial endothelium 11 34351 -UBERON:0008339 microvascular endothelium 10 34352 -UBERON:0005672 right lung endothelium 9 34353 -UBERON:0005674 right lung cranial lobe endothelium 10 34354 -UBERON:0005675 right lung caudal lobe endothelium 10 34355 -UBERON:0005676 right lung accessory lobe endothelium 10 34356 -UBERON:0005673 left lung endothelium 9 34357 -UBERON:0010294 scleral endothelium 9 34358 -UBERON:0013694 brain endothelium 9 34359 -UBERON:0013695 colon endothelium 9 34360 -UBERON:0003055 periderm 8 34361 -UBERON:0002027 stratum corneum of epidermis 9 34362 -UBERON:0002284 hyponychium 10 34363 -UBERON:0004821 pulmonary alveolus epithelium 8 34364 -UBERON:0005314 alveolar primary septum 9 34365 -UBERON:0005315 alveolar secondary septum 9 34366 -UBERON:0005750 glomerular parietal epithelium 8 34367 -UBERON:0006921 stomach squamous epithelium 8 34368 -UBERON:0009129 right atrium endocardium 8 34369 -UBERON:0011007 endocardium of right auricle 9 34370 -UBERON:2005311 pronephric glomerular capsule epithelium 8 34371 -UBERON:0003071 eye primordium 7 34372 -UBERON:0003230 epithelium of carpal region 7 34373 -UBERON:0003248 epithelium of footplate 7 34374 -UBERON:0003254 amniotic ectoderm 7 34375 -UBERON:0003258 endoderm of foregut 7 34376 -UBERON:0004117 pharyngeal pouch 8 34377 -UBERON:0007122 pharyngeal pouch 1 9 34378 -UBERON:0007123 pharyngeal pouch 2 9 34379 -UBERON:0007124 pharyngeal pouch 3 9 34380 -UBERON:0007125 pharyngeal pouch 4 9 34381 -UBERON:0007126 pharyngeal pouch 5 9 34382 -UBERON:0007127 pharyngeal pouch 6 9 34383 -UBERON:2001129 pharyngeal pouches 2-6 9 34384 -UBERON:0007690 early pharyngeal endoderm 8 34385 -UBERON:0010021 dorsal part of pharyngeal pouch 1 8 34386 -UBERON:0010022 ventral part of pharyngeal pouch 1 8 34387 -UBERON:0010023 dorsal part of pharyngeal pouch 2 8 34388 -UBERON:0010024 ventral part of pharyngeal pouch 2 8 34389 -UBERON:0010025 dorsal part of pharyngeal pouch 3 8 34390 -UBERON:0010026 ventral part of pharyngeal pouch 3 8 34391 -UBERON:0010027 dorsal part of pharyngeal pouch 4 8 34392 -UBERON:0010028 ventral part of pharyngeal pouch 4 8 34393 -UBERON:0010029 dorsal part of pharyngeal pouch 5 8 34394 -UBERON:0010030 ventral part of pharyngeal pouch 5 8 34395 -UBERON:0013154 1st arch maxillary endoderm 8 34396 -UBERON:0013156 1st arch mandibular endoderm 8 34397 -UBERON:0013157 1st arch maxillary-mandibular cleft 8 34398 -UBERON:0003259 endoderm of midgut 7 34399 -UBERON:0003260 endoderm of hindgut 7 34400 -UBERON:0003367 epithelium of vomeronasal organ 7 34401 -UBERON:0003371 pelvic appendage bud ectoderm 7 34402 -UBERON:0003372 pectoral appendage bud ectoderm 7 34403 -UBERON:0004008 cerebellar plate 7 34404 -UBERON:0004345 trophectoderm 7 34405 -UBERON:0005226 pedal digit epithelium 7 34406 -UBERON:0005649 pedal digit 2 epithelium 8 34407 -UBERON:0005650 pedal digit 3 epithelium 8 34408 -UBERON:0005651 pedal digit 4 epithelium 8 34409 -UBERON:0005652 pedal digit 5 epithelium 8 34410 -UBERON:0010693 pedal digit 1 epithelium 8 34411 -UBERON:0005227 manual digit epithelium 7 34412 -UBERON:0005645 manual digit 2 epithelium 8 34413 -UBERON:0005646 manual digit 3 epithelium 8 34414 -UBERON:0005647 manual digit 4 epithelium 8 34415 -UBERON:0005648 manual digit 5 epithelium 8 34416 -UBERON:0010690 manual digit 1 epithelium 8 34417 -UBERON:0005642 ultimobranchial body epithelium 7 34418 -UBERON:0006266 nasolacrimal groove 7 34419 -UBERON:0006267 notochordal plate 7 34420 -UBERON:0007383 enveloping layer of ectoderm 7 34421 -UBERON:0008945 extraembryonic endoderm 7 34422 -UBERON:0009497 epithelium of foregut-midgut junction 7 34423 -UBERON:0003894 liver primordium 8 34424 -UBERON:0004912 biliary bud 8 34425 -UBERON:0008835 hepatic diverticulum 8 34426 -UBERON:0008836 liver bud 8 34427 -UBERON:0009521 anal membrane endodermal component 7 34428 -UBERON:0009846 embryonic cloacal epithelium 8 34429 -UBERON:0004902 urogenital sinus epithelium 9 34430 -UBERON:0003820 prostate bud 10 34431 -UBERON:0009522 lateral lingual swelling epithelium 7 34432 -UBERON:0010332 epithelium of handplate 7 34433 -UBERON:0011272 embryonic skin basal layer 7 34434 -UBERON:0011592 future upper lip 7 34435 -UBERON:0011596 future lower lip 7 34436 -UBERON:0011642 oral epithelium from ectoderm 7 34437 -UBERON:0009671 nasal fin 8 34438 -UBERON:0012287 Rathkes pouch epithelium 8 34439 -UBERON:0012312 maxillary process ectoderm 7 34440 -UBERON:0012313 1st arch maxillary ectoderm 7 34441 -UBERON:0013155 1st arch mandibular ectoderm 7 34442 -UBERON:0014702 frontonasal process epithelium 7 34443 -UBERON:0005233 medial-nasal process ectoderm 8 34444 -UBERON:0009206 lateral nasal process surface ectoderm 8 34445 -UBERON:0014703 anal membrane ectodermal component 7 34446 -UBERON:0015716 anal canal epithelium 8 34447 -UBERON:0014705 median lingual swelling epithelium 7 34448 -UBERON:0016545 pharyngeal ectoderm 7 34449 -UBERON:0005879 pharyngeal cleft 8 34450 -UBERON:0005872 1st arch pharyngeal cleft 9 34451 -UBERON:0005873 2nd arch pharyngeal cleft 9 34452 -UBERON:0005874 3rd arch pharyngeal cleft 9 34453 -UBERON:0005875 4th arch pharyngeal cleft 9 34454 -UBERON:0013157 1st arch maxillary-mandibular cleft 9 34455 -UBERON:0016547 lower foregut region endoderm 7 34456 -UBERON:0003350 epithelium of mucosa 6 34457 -UBERON:0001276 epithelium of stomach 7 34458 -UBERON:0005477 stomach fundus epithelium 8 34459 -UBERON:0005637 pyloric region epithelium 8 34460 -UBERON:0006921 stomach squamous epithelium 8 34461 -UBERON:0006924 stomach glandular epithelium 8 34462 -UBERON:0010040 stomach non-glandular epithelium 8 34463 -UBERON:0008285 rumen epithelium 9 34464 -UBERON:0001277 intestinal epithelium 7 34465 -UBERON:0001278 epithelium of large intestine 8 34466 -UBERON:0000397 colonic epithelium 9 34467 -UBERON:0005636 caecum epithelium 10 34468 -UBERON:0009697 epithelium of appendix 11 34469 -UBERON:0013695 colon endothelium 10 34470 -UBERON:0003354 epithelium of rectum 9 34471 -UBERON:0013741 base of crypt of Lieberkuhn of large intestine 9 34472 -UBERON:0013742 wall of crypt of Lieberkuhn of large intestine 9 34473 -UBERON:0015716 anal canal epithelium 9 34474 -UBERON:0022281 epithelium of crypt of Lieberkuhn of large intestine 9 34475 -UBERON:0001902 epithelium of small intestine 8 34476 -UBERON:0013636 epithelium of intestinal villus 9 34477 -UBERON:0000400 jejunal epithelium 10 34478 -UBERON:0008345 ileal epithelium 10 34479 -UBERON:0008346 duodenal epithelium 10 34480 -UBERON:0005643 foregut duodenum epithelium 11 34481 -UBERON:0005644 midgut duodenum epithelium 11 34482 -UBERON:0013743 base of crypt of Lieberkuhn of small intestine 9 34483 -UBERON:0013744 wall of crypt of Lieberkuhn of small intestine 9 34484 -UBERON:0022280 epithelium of crypt of Lieberkuhn of small intestine 9 34485 -UBERON:0004693 Peyer's patch epithelium 8 34486 -UBERON:0011184 epithelium of crypt of Lieberkuhn 8 34487 -UBERON:0013739 base of crypt of Lieberkuhn 9 34488 -UBERON:0013741 base of crypt of Lieberkuhn of large intestine 10 34489 -UBERON:0013743 base of crypt of Lieberkuhn of small intestine 10 34490 -UBERON:0013740 wall of crypt of Lieberkuhn 9 34491 -UBERON:0013742 wall of crypt of Lieberkuhn of large intestine 10 34492 -UBERON:0013744 wall of crypt of Lieberkuhn of small intestine 10 34493 -UBERON:0022280 epithelium of crypt of Lieberkuhn of small intestine 9 34494 -UBERON:0022281 epithelium of crypt of Lieberkuhn of large intestine 9 34495 -UBERON:2005126 intestinal bulb epithelium 8 34496 -UBERON:0001976 epithelium of esophagus 7 34497 -UBERON:0006920 esophagus squamous epithelium 8 34498 -UBERON:0002051 epithelium of bronchiole 7 34499 -UBERON:0001955 epithelium of respiratory bronchiole 8 34500 -UBERON:0001958 terminal bronchiole epithelium 8 34501 -UBERON:0002424 oral epithelium 7 34502 -UBERON:0001949 gingival epithelium 8 34503 -UBERON:0013195 parakeratinized epithelium of gingiva 9 34504 -UBERON:0006919 tongue squamous epithelium 8 34505 -UBERON:0004650 tongue keratinized epithelium 9 34506 -UBERON:0006916 non-keratinized epithelium of tongue 9 34507 -UBERON:0008420 buccal epithelium 8 34508 -UBERON:0011642 oral epithelium from ectoderm 8 34509 -UBERON:0009671 nasal fin 9 34510 -UBERON:0012287 Rathkes pouch epithelium 9 34511 -UBERON:0014453 gustatory epithelium of palate 8 34512 -UBERON:0019206 tongue papilla epithelium 8 34513 -UBERON:0004645 urinary bladder urothelium 7 34514 -UBERON:0004811 endometrium epithelium 7 34515 -UBERON:0012276 endometrium glandular epithelium 8 34516 -UBERON:0022355 basal layer of endometrium 8 34517 -UBERON:0022356 outer layer of endometrium 8 34518 -UBERON:0005384 nasal cavity epithelium 7 34519 -UBERON:0001997 olfactory epithelium 8 34520 -UBERON:0005385 nasal cavity respiratory epithelium 8 34521 -UBERON:0009671 nasal fin 8 34522 -UBERON:0005912 transitional epithelium of major calyx 7 34523 -UBERON:0003914 epithelial tube 6 34524 -UBERON:0000083 mesonephric tubule 7 34525 -UBERON:0000084 ureteric bud 8 34526 -UBERON:0005080 metanephric ureteric bud 9 34527 -UBERON:0005081 ureter ureteric bud 9 34528 -UBERON:0005312 primary ureteric bud 9 34529 -UBERON:0003074 mesonephric duct 8 34530 -UBERON:0005104 anterior mesonephric tubule 8 34531 -UBERON:0005105 posterior mesonephric tubule 8 34532 -UBERON:0005329 mesonephric nephron tubule 8 34533 -UBERON:0005892 mesonephric early distal tubule 8 34534 -UBERON:0006189 mesonephric connecting tubule 8 34535 -UBERON:0006190 mesonephric distal tubule 8 34536 -UBERON:0006192 mesonephric proximal tubule 8 34537 -UBERON:0006364 ureteric bud tip 8 34538 -UBERON:0010534 primitive mesonephric nephron 8 34539 -UBERON:0012238 ureteric bud trunk 8 34540 -UBERON:0001049 neural tube 7 34541 -UBERON:0001765 mammary duct 7 34542 -UBERON:0011844 duct of areolar gland 8 34543 -UBERON:0015132 extralobar lactiferous duct 8 34544 -UBERON:0015133 terminal lactiferous duct 8 34545 -UBERON:0015134 main lactiferous duct 8 34546 -UBERON:0015135 primary lactiferous duct 8 34547 -UBERON:0015136 secondary lactiferous duct 8 34548 -UBERON:0015137 tertiary lactiferous duct 8 34549 -UBERON:0015138 quarternary lactiferous duct 8 34550 -UBERON:0022360 male mammary gland duct 8 34551 -UBERON:0002325 epithelium of urethra 7 34552 -UBERON:0004787 urethra urothelium 8 34553 -UBERON:0015777 transitional epithelium of prostatic urethra 9 34554 -UBERON:0016510 epithelium of male urethra 8 34555 -UBERON:0015777 transitional epithelium of prostatic urethra 9 34556 -UBERON:0034770 bulbourethral gland epithelium 9 34557 -UBERON:0016520 epithelium of female urethra 8 34558 -UBERON:0003915 endothelial tube 7 34559 -UBERON:0001917 endothelium of artery 8 34560 -UBERON:0004848 respiratory system arterial endothelium 9 34561 -UBERON:0005317 pulmonary artery endothelium 9 34562 -UBERON:0007778 umbilical artery endothelium 9 34563 -UBERON:0019189 carotid artery endothelium 9 34564 -UBERON:0019196 iliac artery endothelium 9 34565 -UBERON:0004141 heart tube 7 34566 -UBERON:0005106 metanephric tubule 7 34567 -UBERON:0005146 metanephric nephron tubule 8 34568 -UBERON:0005114 metanephric ascending thin limb 9 34569 -UBERON:0005117 metanephric distal convoluted tubule 9 34570 -UBERON:0005124 metanephric proximal convoluted tubule 9 34571 -UBERON:0005125 metanephric proximal straight tubule 9 34572 -UBERON:0005127 metanephric thick ascending limb 9 34573 -UBERON:0005129 metanephric distal tubule 9 34574 -UBERON:0005130 metanephric loop of Henle 9 34575 -UBERON:0005149 metanephric connecting tubule 9 34576 -UBERON:0005151 metanephric proximal tubule 9 34577 -UBERON:0010535 primitive metanephric nephron 8 34578 -UBERON:0006279 pleuroperitoneal canal 7 34579 -UBERON:0007499 epithelial sac 7 34580 -UBERON:0000084 ureteric bud 8 34581 -UBERON:0005080 metanephric ureteric bud 9 34582 -UBERON:0005081 ureter ureteric bud 9 34583 -UBERON:0005312 primary ureteric bud 9 34584 -UBERON:0000939 imaginal disc 8 34585 -UBERON:6001764 labial disc 9 34586 -UBERON:6001765 clypeo-labral disc 9 34587 -UBERON:6001766 eye-antennal disc 9 34588 -UBERON:6001767 antennal disc 9 34589 -UBERON:6001776 dorsal thoracic disc 9 34590 -UBERON:6001778 wing disc 10 34591 -UBERON:6001779 haltere disc 10 34592 -UBERON:6001780 ventral thoracic disc 9 34593 -UBERON:6001781 prothoracic leg disc 10 34594 -UBERON:6001784 genital disc 9 34595 -UBERON:6001785 male genital disc 10 34596 -UBERON:6001787 female genital disc 10 34597 -UBERON:0001040 yolk sac 8 34598 -UBERON:0008852 visceral yolk sac 9 34599 -UBERON:0008853 parietal yolk sac 9 34600 -UBERON:0002169 alveolar sac 8 34601 -UBERON:0002223 endolymphatic sac 8 34602 -UBERON:0003051 ear vesicle 8 34603 -UBERON:0003922 pancreatic epithelial bud 8 34604 -UBERON:0003923 dorsal pancreatic bud 9 34605 -UBERON:0003924 ventral pancreatic bud 9 34606 -UBERON:0004912 biliary bud 8 34607 -UBERON:0005356 Rathke's pouch 8 34608 -UBERON:0006250 infundibular recess of 3rd ventricle 8 34609 -UBERON:0006364 ureteric bud tip 8 34610 -UBERON:0007501 arborizing epithelial duct system 8 34611 -UBERON:0014706 primitive renal collecting duct system 9 34612 -UBERON:0008835 hepatic diverticulum 8 34613 -UBERON:0008836 liver bud 8 34614 -UBERON:0008969 dental follicle 8 34615 -UBERON:0009495 extrahepatic part of biliary bud 8 34616 -UBERON:0009496 intrahepatic part of biliary bud 8 34617 -UBERON:0010020 tubotympanic recess epithelium 8 34618 -UBERON:0010063 tympanic cavity epithelium 8 34619 -UBERON:0012287 Rathkes pouch epithelium 8 34620 -UBERON:0034953 embryonic lymph sac 8 34621 -UBERON:0011765 jugular lymph sac 9 34622 -UBERON:0034958 retroperitoneal embryonic lymph sac 9 34623 -UBERON:0036256 iliac lymph sac 9 34624 -UBERON:0036260 embryonic cisterna chyli 9 34625 -UBERON:0036072 respiratory primordium epithelium 8 34626 -UBERON:0036261 accessory lymph sac 8 34627 -UBERON:0007500 epithelial tube open at both ends 7 34628 -UBERON:0007502 epithelial plexus 7 34629 -UBERON:0013141 capillary bed 8 34630 -UBERON:0015189 perineural vascular plexus 9 34631 -UBERON:0007684 uriniferous tubule 7 34632 -UBERON:0009201 nephric duct 7 34633 -UBERON:0003060 pronephric duct 8 34634 -UBERON:0003074 mesonephric duct 8 34635 -UBERON:0009773 renal tubule 7 34636 -UBERON:0001054 Malpighian tubule 8 34637 -UBERON:0001231 nephron tubule 8 34638 -UBERON:0005146 metanephric nephron tubule 9 34639 -UBERON:0005114 metanephric ascending thin limb 10 34640 -UBERON:0005117 metanephric distal convoluted tubule 10 34641 -UBERON:0005124 metanephric proximal convoluted tubule 10 34642 -UBERON:0005125 metanephric proximal straight tubule 10 34643 -UBERON:0005127 metanephric thick ascending limb 10 34644 -UBERON:0005129 metanephric distal tubule 10 34645 -UBERON:0005130 metanephric loop of Henle 10 34646 -UBERON:0005149 metanephric connecting tubule 10 34647 -UBERON:0005151 metanephric proximal tubule 10 34648 -UBERON:0005310 pronephric nephron tubule 9 34649 -UBERON:0006173 pronephric proximal tubule 10 34650 -UBERON:0006175 pronephric distal tubule 10 34651 -UBERON:0007298 pronephric proximal convoluted tubule 10 34652 -UBERON:0007308 pronephric distal early tubule 10 34653 -UBERON:0009622 pronephric proximal straight tubule 10 34654 -UBERON:0005329 mesonephric nephron tubule 9 34655 -UBERON:0007685 region of nephron tubule 9 34656 -UBERON:0001288 loop of Henle 10 34657 -UBERON:0005130 metanephric loop of Henle 11 34658 -UBERON:0034997 renal medulla loop of Henle 11 34659 -UBERON:0003455 inner renal medulla loop of Henle 12 34660 -UBERON:0034996 outer renal medulla loop of Henle 12 34661 -UBERON:0006541 outer medulla inner stripe loop of Henle 13 34662 -UBERON:0006542 outer medulla outer stripe loop of Henle 13 34663 -UBERON:0001289 descending limb of loop of Henle 10 34664 -UBERON:0004135 distal tubule 10 34665 -UBERON:0005129 metanephric distal tubule 11 34666 -UBERON:0005164 ascending limb of loop of Henle 11 34667 -UBERON:0006175 pronephric distal tubule 11 34668 -UBERON:0006190 mesonephric distal tubule 11 34669 -UBERON:0004136 intermediate tubule 10 34670 -UBERON:0004193 loop of Henle ascending limb thin segment 10 34671 -UBERON:0005114 metanephric ascending thin limb 11 34672 -UBERON:0005097 renal connecting tubule 10 34673 -UBERON:0005149 metanephric connecting tubule 11 34674 -UBERON:0006189 mesonephric connecting tubule 11 34675 -UBERON:0006337 distal early tubule 10 34676 -UBERON:0007308 pronephric distal early tubule 11 34677 -UBERON:0006376 premacula segment of distal straight tubule 10 34678 -UBERON:0006534 renal convoluted tubule 10 34679 -UBERON:0001287 proximal convoluted tubule 11 34680 -UBERON:0005124 metanephric proximal convoluted tubule 12 34681 -UBERON:0007298 pronephric proximal convoluted tubule 12 34682 -UBERON:0001292 distal convoluted tubule 11 34683 -UBERON:0005117 metanephric distal convoluted tubule 12 34684 -UBERON:0006853 renal cortex tubule 10 34685 -UBERON:0001287 proximal convoluted tubule 11 34686 -UBERON:0005124 metanephric proximal convoluted tubule 12 34687 -UBERON:0007298 pronephric proximal convoluted tubule 12 34688 -UBERON:0001290 proximal straight tubule 11 34689 -UBERON:0005125 metanephric proximal straight tubule 12 34690 -UBERON:0009622 pronephric proximal straight tubule 12 34691 -UBERON:0001292 distal convoluted tubule 11 34692 -UBERON:0005117 metanephric distal convoluted tubule 12 34693 -UBERON:0004134 proximal tubule 11 34694 -UBERON:0005151 metanephric proximal tubule 12 34695 -UBERON:0006173 pronephric proximal tubule 12 34696 -UBERON:0006192 mesonephric proximal tubule 12 34697 -UBERON:0006854 distal straight tubule postmacula segment 11 34698 -UBERON:0009035 renal straight tubule 10 34699 -UBERON:0001290 proximal straight tubule 11 34700 -UBERON:0005125 metanephric proximal straight tubule 12 34701 -UBERON:0009622 pronephric proximal straight tubule 12 34702 -UBERON:0001291 thick ascending limb of loop of Henle 11 34703 -UBERON:0005127 metanephric thick ascending limb 12 34704 -UBERON:0010062 pharyngotympanic tube epithelium 7 34705 -UBERON:0010065 auditory meatus epithelium 7 34706 -UBERON:0010081 future common hepatic duct 7 34707 -UBERON:0010532 primitive nephron 7 34708 -UBERON:0007653 capillary loop nephron 8 34709 -UBERON:0007654 maturing nephron 8 34710 -UBERON:0010534 primitive mesonephric nephron 8 34711 -UBERON:0010535 primitive metanephric nephron 8 34712 -UBERON:0011202 urachus epithelium 7 34713 -UBERON:0013247 male paramesonephric duct 7 34714 -UBERON:0013248 paradidymis 7 34715 -UBERON:0013249 paroophoron 7 34716 -UBERON:0034969 epithelial layer of duct 7 34717 -UBERON:0000084 ureteric bud 8 34718 -UBERON:0005080 metanephric ureteric bud 9 34719 -UBERON:0005081 ureter ureteric bud 9 34720 -UBERON:0005312 primary ureteric bud 9 34721 -UBERON:0004182 mammary gland cord 8 34722 -UBERON:0004544 epididymis epithelium 8 34723 -UBERON:0004805 seminal vesicle epithelium 8 34724 -UBERON:0004806 vas deferens epithelium 8 34725 -UBERON:0004813 seminiferous tubule epithelium 8 34726 -UBERON:0004820 bile duct epithelium 8 34727 -UBERON:0004822 extrahepatic bile duct epithelium 9 34728 -UBERON:0004823 intrahepatic bile duct epithelium 9 34729 -UBERON:0005313 mammary duct terminal end bud 8 34730 -UBERON:0006364 ureteric bud tip 8 34731 -UBERON:0006948 efferent duct epithelium 8 34732 -UBERON:0006953 ejaculatory duct epithelium 8 34733 -UBERON:0009970 epithelium of pancreatic duct 8 34734 -UBERON:0012238 ureteric bud trunk 8 34735 -UBERON:0015766 epithelium of duct of salivary gland 8 34736 -UBERON:0034770 bulbourethral gland epithelium 8 34737 -UBERON:0003929 digestive tract epithelium 6 34738 -UBERON:0001277 intestinal epithelium 7 34739 -UBERON:0001278 epithelium of large intestine 8 34740 -UBERON:0000397 colonic epithelium 9 34741 -UBERON:0005636 caecum epithelium 10 34742 -UBERON:0009697 epithelium of appendix 11 34743 -UBERON:0013695 colon endothelium 10 34744 -UBERON:0003354 epithelium of rectum 9 34745 -UBERON:0013741 base of crypt of Lieberkuhn of large intestine 9 34746 -UBERON:0013742 wall of crypt of Lieberkuhn of large intestine 9 34747 -UBERON:0015716 anal canal epithelium 9 34748 -UBERON:0022281 epithelium of crypt of Lieberkuhn of large intestine 9 34749 -UBERON:0001902 epithelium of small intestine 8 34750 -UBERON:0013636 epithelium of intestinal villus 9 34751 -UBERON:0000400 jejunal epithelium 10 34752 -UBERON:0008345 ileal epithelium 10 34753 -UBERON:0008346 duodenal epithelium 10 34754 -UBERON:0005643 foregut duodenum epithelium 11 34755 -UBERON:0005644 midgut duodenum epithelium 11 34756 -UBERON:0013743 base of crypt of Lieberkuhn of small intestine 9 34757 -UBERON:0013744 wall of crypt of Lieberkuhn of small intestine 9 34758 -UBERON:0022280 epithelium of crypt of Lieberkuhn of small intestine 9 34759 -UBERON:0004693 Peyer's patch epithelium 8 34760 -UBERON:0011184 epithelium of crypt of Lieberkuhn 8 34761 -UBERON:0013739 base of crypt of Lieberkuhn 9 34762 -UBERON:0013741 base of crypt of Lieberkuhn of large intestine 10 34763 -UBERON:0013743 base of crypt of Lieberkuhn of small intestine 10 34764 -UBERON:0013740 wall of crypt of Lieberkuhn 9 34765 -UBERON:0013742 wall of crypt of Lieberkuhn of large intestine 10 34766 -UBERON:0013744 wall of crypt of Lieberkuhn of small intestine 10 34767 -UBERON:0022280 epithelium of crypt of Lieberkuhn of small intestine 9 34768 -UBERON:0022281 epithelium of crypt of Lieberkuhn of large intestine 9 34769 -UBERON:2005126 intestinal bulb epithelium 8 34770 -UBERON:0001976 epithelium of esophagus 7 34771 -UBERON:0006920 esophagus squamous epithelium 8 34772 -UBERON:0002424 oral epithelium 7 34773 -UBERON:0001949 gingival epithelium 8 34774 -UBERON:0013195 parakeratinized epithelium of gingiva 9 34775 -UBERON:0006919 tongue squamous epithelium 8 34776 -UBERON:0004650 tongue keratinized epithelium 9 34777 -UBERON:0006916 non-keratinized epithelium of tongue 9 34778 -UBERON:0008420 buccal epithelium 8 34779 -UBERON:0011642 oral epithelium from ectoderm 8 34780 -UBERON:0009671 nasal fin 9 34781 -UBERON:0012287 Rathkes pouch epithelium 9 34782 -UBERON:0014453 gustatory epithelium of palate 8 34783 -UBERON:0019206 tongue papilla epithelium 8 34784 -UBERON:0003351 pharyngeal epithelium 7 34785 -UBERON:0001951 epithelium of nasopharynx 8 34786 -UBERON:0001952 epithelium of oropharynx 8 34787 -UBERON:0005562 thymus primordium 8 34788 -UBERON:0009695 epithelium of laryngopharynx 8 34789 -UBERON:0013696 tonsil epithelium 8 34790 -UBERON:0012181 tonsil crypt 9 34791 -UBERON:0016545 pharyngeal ectoderm 8 34792 -UBERON:0005879 pharyngeal cleft 9 34793 -UBERON:0005872 1st arch pharyngeal cleft 10 34794 -UBERON:0005873 2nd arch pharyngeal cleft 10 34795 -UBERON:0005874 3rd arch pharyngeal cleft 10 34796 -UBERON:0005875 4th arch pharyngeal cleft 10 34797 -UBERON:0013157 1st arch maxillary-mandibular cleft 10 34798 -UBERON:0003352 epithelium of midgut 7 34799 -UBERON:0003259 endoderm of midgut 8 34800 -UBERON:0003353 epithelium of hindgut 7 34801 -UBERON:0003260 endoderm of hindgut 8 34802 -UBERON:0003357 epithelium of tongue 7 34803 -UBERON:0006918 parakeratinized epithelium of tongue 8 34804 -UBERON:0006919 tongue squamous epithelium 8 34805 -UBERON:0004650 tongue keratinized epithelium 9 34806 -UBERON:0006916 non-keratinized epithelium of tongue 9 34807 -UBERON:0014452 gustatory epithelium of tongue 8 34808 -UBERON:0019206 tongue papilla epithelium 8 34809 -UBERON:0004809 salivary gland epithelium 7 34810 -UBERON:0003359 epithelium of submandibular gland 8 34811 -UBERON:0003360 epithelium of parotid gland 8 34812 -UBERON:0035076 parotid gland myoepithelium 9 34813 -UBERON:0003361 epithelium of sublingual gland 8 34814 -UBERON:0015766 epithelium of duct of salivary gland 8 34815 -UBERON:0006913 lip epithelium 7 34816 -UBERON:0009497 epithelium of foregut-midgut junction 7 34817 -UBERON:0003894 liver primordium 8 34818 -UBERON:0004912 biliary bud 8 34819 -UBERON:0008835 hepatic diverticulum 8 34820 -UBERON:0008836 liver bud 8 34821 -UBERON:0009522 lateral lingual swelling epithelium 7 34822 -UBERON:0012481 cloacal epithelium 7 34823 -UBERON:0009846 embryonic cloacal epithelium 8 34824 -UBERON:0004902 urogenital sinus epithelium 9 34825 -UBERON:0003820 prostate bud 10 34826 -UBERON:0014705 median lingual swelling epithelium 7 34827 -UBERON:0015833 foregut epithelium 7 34828 -UBERON:0001276 epithelium of stomach 8 34829 -UBERON:0005477 stomach fundus epithelium 9 34830 -UBERON:0005637 pyloric region epithelium 9 34831 -UBERON:0006921 stomach squamous epithelium 9 34832 -UBERON:0006924 stomach glandular epithelium 9 34833 -UBERON:0010040 stomach non-glandular epithelium 9 34834 -UBERON:0008285 rumen epithelium 10 34835 -UBERON:0003258 endoderm of foregut 8 34836 -UBERON:0004117 pharyngeal pouch 9 34837 -UBERON:0007122 pharyngeal pouch 1 10 34838 -UBERON:0007123 pharyngeal pouch 2 10 34839 -UBERON:0007124 pharyngeal pouch 3 10 34840 -UBERON:0007125 pharyngeal pouch 4 10 34841 -UBERON:0007126 pharyngeal pouch 5 10 34842 -UBERON:0007127 pharyngeal pouch 6 10 34843 -UBERON:2001129 pharyngeal pouches 2-6 10 34844 -UBERON:0007690 early pharyngeal endoderm 9 34845 -UBERON:0010021 dorsal part of pharyngeal pouch 1 9 34846 -UBERON:0010022 ventral part of pharyngeal pouch 1 9 34847 -UBERON:0010023 dorsal part of pharyngeal pouch 2 9 34848 -UBERON:0010024 ventral part of pharyngeal pouch 2 9 34849 -UBERON:0010025 dorsal part of pharyngeal pouch 3 9 34850 -UBERON:0010026 ventral part of pharyngeal pouch 3 9 34851 -UBERON:0010027 dorsal part of pharyngeal pouch 4 9 34852 -UBERON:0010028 ventral part of pharyngeal pouch 4 9 34853 -UBERON:0010029 dorsal part of pharyngeal pouch 5 9 34854 -UBERON:0010030 ventral part of pharyngeal pouch 5 9 34855 -UBERON:0013154 1st arch maxillary endoderm 9 34856 -UBERON:0013156 1st arch mandibular endoderm 9 34857 -UBERON:0013157 1st arch maxillary-mandibular cleft 9 34858 -UBERON:0009722 entire pharyngeal arch endoderm 8 34859 -UBERON:0012313 1st arch maxillary ectoderm 8 34860 -UBERON:0013155 1st arch mandibular ectoderm 8 34861 -UBERON:0036072 respiratory primordium epithelium 8 34862 -UBERON:0016547 lower foregut region endoderm 7 34863 -UBERON:0016885 epithelium of terminal part of digestive tract 7 34864 -UBERON:0003354 epithelium of rectum 8 34865 -UBERON:0035037 jaw epithelium 7 34866 -UBERON:0001949 gingival epithelium 8 34867 -UBERON:0013195 parakeratinized epithelium of gingiva 9 34868 -UBERON:0003235 epithelium of upper jaw 8 34869 -UBERON:0003358 epithelium of soft palate 9 34870 -UBERON:0003368 epithelium of hard palate 9 34871 -UBERON:0005653 upper jaw molar epithelium 9 34872 -UBERON:0005658 secondary palatal shelf epithelium 9 34873 -UBERON:0005659 primary palate epithelium 9 34874 -UBERON:0005709 upper jaw incisor epithelium 9 34875 -UBERON:0011592 future upper lip 9 34876 -UBERON:0003236 epithelium of lower jaw 8 34877 -UBERON:0003359 epithelium of submandibular gland 9 34878 -UBERON:0003360 epithelium of parotid gland 9 34879 -UBERON:0035076 parotid gland myoepithelium 10 34880 -UBERON:0005654 lower jaw molar epithelium 9 34881 -UBERON:0005710 lower jaw incisor epithelium 9 34882 -UBERON:0006957 submandibular gland primordium epithelium 9 34883 -UBERON:0011596 future lower lip 9 34884 -UBERON:0004807 respiratory system epithelium 6 34885 -UBERON:0003351 pharyngeal epithelium 7 34886 -UBERON:0001951 epithelium of nasopharynx 8 34887 -UBERON:0001952 epithelium of oropharynx 8 34888 -UBERON:0005562 thymus primordium 8 34889 -UBERON:0009695 epithelium of laryngopharynx 8 34890 -UBERON:0013696 tonsil epithelium 8 34891 -UBERON:0012181 tonsil crypt 9 34892 -UBERON:0016545 pharyngeal ectoderm 8 34893 -UBERON:0005879 pharyngeal cleft 9 34894 -UBERON:0005872 1st arch pharyngeal cleft 10 34895 -UBERON:0005873 2nd arch pharyngeal cleft 10 34896 -UBERON:0005874 3rd arch pharyngeal cleft 10 34897 -UBERON:0005875 4th arch pharyngeal cleft 10 34898 -UBERON:0013157 1st arch maxillary-mandibular cleft 10 34899 -UBERON:0003389 mesothelium of diaphragm 7 34900 -UBERON:0003529 respiratory system lymphatic vessel endothelium 7 34901 -UBERON:0004702 respiratory system blood vessel endothelium 7 34902 -UBERON:0003489 respiratory system capillary endothelium 8 34903 -UBERON:0004848 respiratory system arterial endothelium 8 34904 -UBERON:0004849 respiratory system venous endothelium 8 34905 -UBERON:0013479 lung endothelium 8 34906 -UBERON:0004802 respiratory tract epithelium 7 34907 -UBERON:0004814 upper respiratory tract epithelium 8 34908 -UBERON:0001951 epithelium of nasopharynx 9 34909 -UBERON:0005384 nasal cavity epithelium 9 34910 -UBERON:0001997 olfactory epithelium 10 34911 -UBERON:0005385 nasal cavity respiratory epithelium 10 34912 -UBERON:0009671 nasal fin 10 34913 -UBERON:0004815 lower respiratory tract epithelium 8 34914 -UBERON:0000115 lung epithelium 9 34915 -UBERON:0002051 epithelium of bronchiole 10 34916 -UBERON:0001955 epithelium of respiratory bronchiole 11 34917 -UBERON:0001958 terminal bronchiole epithelium 11 34918 -UBERON:0002169 alveolar sac 10 34919 -UBERON:0002339 epithelium of lobar bronchus 10 34920 -UBERON:0015794 left lung lobar bronchus epithelium 11 34921 -UBERON:0015795 right lung lobar bronchus epitheium 11 34922 -UBERON:0002341 epithelium of segmental bronchus 10 34923 -UBERON:0003364 epithelium of right lung 10 34924 -UBERON:0005639 right lung cranial lobe epithelium 11 34925 -UBERON:0005674 right lung cranial lobe endothelium 12 34926 -UBERON:0005640 right lung caudal lobe epithelium 11 34927 -UBERON:0005675 right lung caudal lobe endothelium 12 34928 -UBERON:0005655 right lung accessory lobe epithelium 11 34929 -UBERON:0005676 right lung accessory lobe endothelium 12 34930 -UBERON:0005672 right lung endothelium 11 34931 -UBERON:0005674 right lung cranial lobe endothelium 12 34932 -UBERON:0005675 right lung caudal lobe endothelium 12 34933 -UBERON:0005676 right lung accessory lobe endothelium 12 34934 -UBERON:0015795 right lung lobar bronchus epitheium 11 34935 -UBERON:0003365 epithelium of left lung 10 34936 -UBERON:0005673 left lung endothelium 11 34937 -UBERON:0015794 left lung lobar bronchus epithelium 11 34938 -UBERON:0004821 pulmonary alveolus epithelium 10 34939 -UBERON:0005314 alveolar primary septum 11 34940 -UBERON:0005315 alveolar secondary septum 11 34941 -UBERON:0013479 lung endothelium 10 34942 -UBERON:0008397 tracheobronchial epithelium 9 34943 -UBERON:0001901 epithelium of trachea 10 34944 -UBERON:0003279 endothelium of trachea 11 34945 -UBERON:0002031 epithelium of bronchus 10 34946 -UBERON:0002051 epithelium of bronchiole 11 34947 -UBERON:0001955 epithelium of respiratory bronchiole 12 34948 -UBERON:0001958 terminal bronchiole epithelium 12 34949 -UBERON:0002339 epithelium of lobar bronchus 11 34950 -UBERON:0015794 left lung lobar bronchus epithelium 12 34951 -UBERON:0015795 right lung lobar bronchus epitheium 12 34952 -UBERON:0002340 epithelium of main bronchus 11 34953 -UBERON:0003280 endothelium of main bronchus 12 34954 -UBERON:0002341 epithelium of segmental bronchus 11 34955 -UBERON:0004818 terminal bronchus epithelium 11 34956 -UBERON:0004816 larynx epithelium 8 34957 -UBERON:0004808 gastrointestinal system epithelium 6 34958 -UBERON:0001276 epithelium of stomach 7 34959 -UBERON:0005477 stomach fundus epithelium 8 34960 -UBERON:0005637 pyloric region epithelium 8 34961 -UBERON:0006921 stomach squamous epithelium 8 34962 -UBERON:0006924 stomach glandular epithelium 8 34963 -UBERON:0010040 stomach non-glandular epithelium 8 34964 -UBERON:0008285 rumen epithelium 9 34965 -UBERON:0001277 intestinal epithelium 7 34966 -UBERON:0001278 epithelium of large intestine 8 34967 -UBERON:0000397 colonic epithelium 9 34968 -UBERON:0005636 caecum epithelium 10 34969 -UBERON:0009697 epithelium of appendix 11 34970 -UBERON:0013695 colon endothelium 10 34971 -UBERON:0003354 epithelium of rectum 9 34972 -UBERON:0013741 base of crypt of Lieberkuhn of large intestine 9 34973 -UBERON:0013742 wall of crypt of Lieberkuhn of large intestine 9 34974 -UBERON:0015716 anal canal epithelium 9 34975 -UBERON:0022281 epithelium of crypt of Lieberkuhn of large intestine 9 34976 -UBERON:0001902 epithelium of small intestine 8 34977 -UBERON:0013636 epithelium of intestinal villus 9 34978 -UBERON:0000400 jejunal epithelium 10 34979 -UBERON:0008345 ileal epithelium 10 34980 -UBERON:0008346 duodenal epithelium 10 34981 -UBERON:0005643 foregut duodenum epithelium 11 34982 -UBERON:0005644 midgut duodenum epithelium 11 34983 -UBERON:0013743 base of crypt of Lieberkuhn of small intestine 9 34984 -UBERON:0013744 wall of crypt of Lieberkuhn of small intestine 9 34985 -UBERON:0022280 epithelium of crypt of Lieberkuhn of small intestine 9 34986 -UBERON:0004693 Peyer's patch epithelium 8 34987 -UBERON:0011184 epithelium of crypt of Lieberkuhn 8 34988 -UBERON:0013739 base of crypt of Lieberkuhn 9 34989 -UBERON:0013741 base of crypt of Lieberkuhn of large intestine 10 34990 -UBERON:0013743 base of crypt of Lieberkuhn of small intestine 10 34991 -UBERON:0013740 wall of crypt of Lieberkuhn 9 34992 -UBERON:0013742 wall of crypt of Lieberkuhn of large intestine 10 34993 -UBERON:0013744 wall of crypt of Lieberkuhn of small intestine 10 34994 -UBERON:0022280 epithelium of crypt of Lieberkuhn of small intestine 9 34995 -UBERON:0022281 epithelium of crypt of Lieberkuhn of large intestine 9 34996 -UBERON:2005126 intestinal bulb epithelium 8 34997 -UBERON:0001952 epithelium of oropharynx 7 34998 -UBERON:0004819 kidney epithelium 6 34999 -UBERON:0004211 nephron epithelium 7 35000 -UBERON:0001231 nephron tubule 8 35001 -UBERON:0005146 metanephric nephron tubule 9 35002 -UBERON:0005114 metanephric ascending thin limb 10 35003 -UBERON:0005117 metanephric distal convoluted tubule 10 35004 -UBERON:0005124 metanephric proximal convoluted tubule 10 35005 -UBERON:0005125 metanephric proximal straight tubule 10 35006 -UBERON:0005127 metanephric thick ascending limb 10 35007 -UBERON:0005129 metanephric distal tubule 10 35008 -UBERON:0005130 metanephric loop of Henle 10 35009 -UBERON:0005149 metanephric connecting tubule 10 35010 -UBERON:0005151 metanephric proximal tubule 10 35011 -UBERON:0005310 pronephric nephron tubule 9 35012 -UBERON:0006173 pronephric proximal tubule 10 35013 -UBERON:0006175 pronephric distal tubule 10 35014 -UBERON:0007298 pronephric proximal convoluted tubule 10 35015 -UBERON:0007308 pronephric distal early tubule 10 35016 -UBERON:0009622 pronephric proximal straight tubule 10 35017 -UBERON:0005329 mesonephric nephron tubule 9 35018 -UBERON:0007685 region of nephron tubule 9 35019 -UBERON:0001288 loop of Henle 10 35020 -UBERON:0005130 metanephric loop of Henle 11 35021 -UBERON:0034997 renal medulla loop of Henle 11 35022 -UBERON:0003455 inner renal medulla loop of Henle 12 35023 -UBERON:0034996 outer renal medulla loop of Henle 12 35024 -UBERON:0006541 outer medulla inner stripe loop of Henle 13 35025 -UBERON:0006542 outer medulla outer stripe loop of Henle 13 35026 -UBERON:0001289 descending limb of loop of Henle 10 35027 -UBERON:0004135 distal tubule 10 35028 -UBERON:0005129 metanephric distal tubule 11 35029 -UBERON:0005164 ascending limb of loop of Henle 11 35030 -UBERON:0006175 pronephric distal tubule 11 35031 -UBERON:0006190 mesonephric distal tubule 11 35032 -UBERON:0004136 intermediate tubule 10 35033 -UBERON:0004193 loop of Henle ascending limb thin segment 10 35034 -UBERON:0005114 metanephric ascending thin limb 11 35035 -UBERON:0005097 renal connecting tubule 10 35036 -UBERON:0005149 metanephric connecting tubule 11 35037 -UBERON:0006189 mesonephric connecting tubule 11 35038 -UBERON:0006337 distal early tubule 10 35039 -UBERON:0007308 pronephric distal early tubule 11 35040 -UBERON:0006376 premacula segment of distal straight tubule 10 35041 -UBERON:0006534 renal convoluted tubule 10 35042 -UBERON:0001287 proximal convoluted tubule 11 35043 -UBERON:0005124 metanephric proximal convoluted tubule 12 35044 -UBERON:0007298 pronephric proximal convoluted tubule 12 35045 -UBERON:0001292 distal convoluted tubule 11 35046 -UBERON:0005117 metanephric distal convoluted tubule 12 35047 -UBERON:0006853 renal cortex tubule 10 35048 -UBERON:0001287 proximal convoluted tubule 11 35049 -UBERON:0005124 metanephric proximal convoluted tubule 12 35050 -UBERON:0007298 pronephric proximal convoluted tubule 12 35051 -UBERON:0001290 proximal straight tubule 11 35052 -UBERON:0005125 metanephric proximal straight tubule 12 35053 -UBERON:0009622 pronephric proximal straight tubule 12 35054 -UBERON:0001292 distal convoluted tubule 11 35055 -UBERON:0005117 metanephric distal convoluted tubule 12 35056 -UBERON:0004134 proximal tubule 11 35057 -UBERON:0005151 metanephric proximal tubule 12 35058 -UBERON:0006173 pronephric proximal tubule 12 35059 -UBERON:0006192 mesonephric proximal tubule 12 35060 -UBERON:0006854 distal straight tubule postmacula segment 11 35061 -UBERON:0009035 renal straight tubule 10 35062 -UBERON:0001290 proximal straight tubule 11 35063 -UBERON:0005125 metanephric proximal straight tubule 12 35064 -UBERON:0009622 pronephric proximal straight tubule 12 35065 -UBERON:0001291 thick ascending limb of loop of Henle 11 35066 -UBERON:0005127 metanephric thick ascending limb 12 35067 -UBERON:0002335 macula densa 8 35068 -UBERON:0003546 distal convoluted tubule macula densa 9 35069 -UBERON:0005122 metanephric macula densa 9 35070 -UBERON:0005202 distal straight tubule macula densa 9 35071 -UBERON:0005324 mesonephric macula densa 9 35072 -UBERON:0004188 glomerular epithelium 8 35073 -UBERON:0004189 glomerular endothelium 9 35074 -UBERON:0004294 glomerular capillary endothelium 10 35075 -UBERON:0005136 metanephric glomerular endothelium 10 35076 -UBERON:0005135 metanephric glomerular epithelium 9 35077 -UBERON:0005136 metanephric glomerular endothelium 10 35078 -UBERON:0005327 mesonephric glomerular epithelium 9 35079 -UBERON:0005750 glomerular parietal epithelium 9 35080 -UBERON:0006852 glomerular visceral epithelium 9 35081 -UBERON:0004810 nephron tubule epithelium 8 35082 -UBERON:0008404 proximal tubular epithelium 9 35083 -UBERON:0008408 distal tubular epithelium 9 35084 -UBERON:0005099 short descending thin limb 8 35085 -UBERON:0005141 metanephric short descending thin limb 9 35086 -UBERON:0005100 long descending thin limb 8 35087 -UBERON:0005139 metanephric long descending thin limb 9 35088 -UBERON:0005101 early distal convoluted tubule 8 35089 -UBERON:0005118 metanephric early distal convoluted tubule 9 35090 -UBERON:0005102 late distal convoluted tubule 8 35091 -UBERON:0005120 metanephric late distal convoluted tubule 9 35092 -UBERON:0005134 metanephric nephron epithelium 8 35093 -UBERON:0005118 metanephric early distal convoluted tubule 9 35094 -UBERON:0005120 metanephric late distal convoluted tubule 9 35095 -UBERON:0005122 metanephric macula densa 9 35096 -UBERON:0005135 metanephric glomerular epithelium 9 35097 -UBERON:0005136 metanephric glomerular endothelium 10 35098 -UBERON:0005139 metanephric long descending thin limb 9 35099 -UBERON:0005141 metanephric short descending thin limb 9 35100 -UBERON:0005146 metanephric nephron tubule 9 35101 -UBERON:0005114 metanephric ascending thin limb 10 35102 -UBERON:0005117 metanephric distal convoluted tubule 10 35103 -UBERON:0005124 metanephric proximal convoluted tubule 10 35104 -UBERON:0005125 metanephric proximal straight tubule 10 35105 -UBERON:0005127 metanephric thick ascending limb 10 35106 -UBERON:0005129 metanephric distal tubule 10 35107 -UBERON:0005130 metanephric loop of Henle 10 35108 -UBERON:0005149 metanephric connecting tubule 10 35109 -UBERON:0005151 metanephric proximal tubule 10 35110 -UBERON:0005330 mesonephric nephron epithelium 8 35111 -UBERON:0005324 mesonephric macula densa 9 35112 -UBERON:0005327 mesonephric glomerular epithelium 9 35113 -UBERON:0005329 mesonephric nephron tubule 9 35114 -UBERON:0006189 mesonephric connecting tubule 9 35115 -UBERON:0006190 mesonephric distal tubule 9 35116 -UBERON:0006192 mesonephric proximal tubule 9 35117 -UBERON:0005751 visceral layer of glomerular capsule 8 35118 -UBERON:0014388 kidney collecting duct epithelium 8 35119 -UBERON:2005311 pronephric glomerular capsule epithelium 8 35120 -UBERON:0004788 kidney pelvis urothelium 7 35121 -UBERON:0005912 transitional epithelium of major calyx 8 35122 -UBERON:0005103 mesonephric epithelium 7 35123 -UBERON:0000083 mesonephric tubule 8 35124 -UBERON:0000084 ureteric bud 9 35125 -UBERON:0005080 metanephric ureteric bud 10 35126 -UBERON:0005081 ureter ureteric bud 10 35127 -UBERON:0005312 primary ureteric bud 10 35128 -UBERON:0003074 mesonephric duct 9 35129 -UBERON:0005104 anterior mesonephric tubule 9 35130 -UBERON:0005105 posterior mesonephric tubule 9 35131 -UBERON:0005329 mesonephric nephron tubule 9 35132 -UBERON:0005892 mesonephric early distal tubule 9 35133 -UBERON:0006189 mesonephric connecting tubule 9 35134 -UBERON:0006190 mesonephric distal tubule 9 35135 -UBERON:0006192 mesonephric proximal tubule 9 35136 -UBERON:0006364 ureteric bud tip 9 35137 -UBERON:0010534 primitive mesonephric nephron 9 35138 -UBERON:0012238 ureteric bud trunk 9 35139 -UBERON:0005330 mesonephric nephron epithelium 8 35140 -UBERON:0005324 mesonephric macula densa 9 35141 -UBERON:0005327 mesonephric glomerular epithelium 9 35142 -UBERON:0005329 mesonephric nephron tubule 9 35143 -UBERON:0006189 mesonephric connecting tubule 9 35144 -UBERON:0006190 mesonephric distal tubule 9 35145 -UBERON:0006192 mesonephric proximal tubule 9 35146 -UBERON:0005331 mesonephric renal vesicle 8 35147 -UBERON:0005108 metanephric epithelium 7 35148 -UBERON:0005106 metanephric tubule 8 35149 -UBERON:0005146 metanephric nephron tubule 9 35150 -UBERON:0005114 metanephric ascending thin limb 10 35151 -UBERON:0005117 metanephric distal convoluted tubule 10 35152 -UBERON:0005124 metanephric proximal convoluted tubule 10 35153 -UBERON:0005125 metanephric proximal straight tubule 10 35154 -UBERON:0005127 metanephric thick ascending limb 10 35155 -UBERON:0005129 metanephric distal tubule 10 35156 -UBERON:0005130 metanephric loop of Henle 10 35157 -UBERON:0005149 metanephric connecting tubule 10 35158 -UBERON:0005151 metanephric proximal tubule 10 35159 -UBERON:0010535 primitive metanephric nephron 9 35160 -UBERON:0005134 metanephric nephron epithelium 8 35161 -UBERON:0005118 metanephric early distal convoluted tubule 9 35162 -UBERON:0005120 metanephric late distal convoluted tubule 9 35163 -UBERON:0005122 metanephric macula densa 9 35164 -UBERON:0005135 metanephric glomerular epithelium 9 35165 -UBERON:0005136 metanephric glomerular endothelium 10 35166 -UBERON:0005139 metanephric long descending thin limb 9 35167 -UBERON:0005141 metanephric short descending thin limb 9 35168 -UBERON:0005146 metanephric nephron tubule 9 35169 -UBERON:0005114 metanephric ascending thin limb 10 35170 -UBERON:0005117 metanephric distal convoluted tubule 10 35171 -UBERON:0005124 metanephric proximal convoluted tubule 10 35172 -UBERON:0005125 metanephric proximal straight tubule 10 35173 -UBERON:0005127 metanephric thick ascending limb 10 35174 -UBERON:0005129 metanephric distal tubule 10 35175 -UBERON:0005130 metanephric loop of Henle 10 35176 -UBERON:0005149 metanephric connecting tubule 10 35177 -UBERON:0005151 metanephric proximal tubule 10 35178 -UBERON:0005147 metanephric renal vesicle 8 35179 -UBERON:0007684 uriniferous tubule 7 35180 -UBERON:0009201 nephric duct 7 35181 -UBERON:0003060 pronephric duct 8 35182 -UBERON:0003074 mesonephric duct 8 35183 -UBERON:0010532 primitive nephron 7 35184 -UBERON:0007653 capillary loop nephron 8 35185 -UBERON:0007654 maturing nephron 8 35186 -UBERON:0010534 primitive mesonephric nephron 8 35187 -UBERON:0010535 primitive metanephric nephron 8 35188 -UBERON:0012441 endothelium of peritubular capillary 7 35189 -UBERON:0004825 dental lamina 6 35190 -UBERON:0015840 incisor dental lamina 7 35191 -UBERON:0015841 molar dental lamina 7 35192 -UBERON:0004909 epithelium of gonad 6 35193 -UBERON:0004910 epithelium of male gonad 7 35194 -UBERON:0004805 seminal vesicle epithelium 8 35195 -UBERON:0004813 seminiferous tubule epithelium 8 35196 -UBERON:0005297 testis sex cord 8 35197 -UBERON:0004911 epithelium of female gonad 7 35198 -UBERON:0001304 germinal epithelium of ovary 8 35199 -UBERON:0005170 granulosa cell layer 8 35200 -UBERON:0005296 ovary sex cord 8 35201 -UBERON:0005890 gonad germinal epithelium 7 35202 -UBERON:0010141 primitive sex cord of indifferent gonad 7 35203 -UBERON:0005157 epithelial fold 6 35204 -UBERON:0005062 neural fold 7 35205 -UBERON:0009748 cephalic neural fold 8 35206 -UBERON:0005153 epithelial bud 7 35207 -UBERON:0000118 lung bud 8 35208 -UBERON:0003820 prostate bud 8 35209 -UBERON:0005313 mammary duct terminal end bud 8 35210 -UBERON:0005333 mammary bud 8 35211 -UBERON:0011804 feather bud, epidermal component 8 35212 -UBERON:0012925 bronchial bud 8 35213 -UBERON:0022284 lacrimal gland bud 8 35214 -UBERON:0005891 coelomic epithelium 6 35215 -UBERON:0005911 endo-epithelium 6 35216 -UBERON:0000118 lung bud 7 35217 -UBERON:0000365 urothelium 7 35218 -UBERON:0001254 urothelium of ureter 8 35219 -UBERON:0005912 transitional epithelium of major calyx 9 35220 -UBERON:0004645 urinary bladder urothelium 8 35221 -UBERON:0004787 urethra urothelium 8 35222 -UBERON:0015777 transitional epithelium of prostatic urethra 9 35223 -UBERON:0004788 kidney pelvis urothelium 8 35224 -UBERON:0005912 transitional epithelium of major calyx 9 35225 -UBERON:0000428 prostate epithelium 7 35226 -UBERON:0001281 hepatic sinusoid 7 35227 -UBERON:0009548 hepatic sinusoid of left of lobe of liver 8 35228 -UBERON:0011737 caudate lobe hepatic sinusoid 9 35229 -UBERON:0009549 hepatic sinusoid of right of lobe of liver 8 35230 -UBERON:0011737 caudate lobe hepatic sinusoid 9 35231 -UBERON:0011738 quadrate lobe hepatic sinusoid 9 35232 -UBERON:0002029 epithelium of gall bladder 7 35233 -UBERON:0002325 epithelium of urethra 7 35234 -UBERON:0004787 urethra urothelium 8 35235 -UBERON:0015777 transitional epithelium of prostatic urethra 9 35236 -UBERON:0016510 epithelium of male urethra 8 35237 -UBERON:0015777 transitional epithelium of prostatic urethra 9 35238 -UBERON:0034770 bulbourethral gland epithelium 9 35239 -UBERON:0016520 epithelium of female urethra 8 35240 -UBERON:0003257 yolk sac endoderm 7 35241 -UBERON:0003258 endoderm of foregut 7 35242 -UBERON:0004117 pharyngeal pouch 8 35243 -UBERON:0007122 pharyngeal pouch 1 9 35244 -UBERON:0007123 pharyngeal pouch 2 9 35245 -UBERON:0007124 pharyngeal pouch 3 9 35246 -UBERON:0007125 pharyngeal pouch 4 9 35247 -UBERON:0007126 pharyngeal pouch 5 9 35248 -UBERON:0007127 pharyngeal pouch 6 9 35249 -UBERON:2001129 pharyngeal pouches 2-6 9 35250 -UBERON:0007690 early pharyngeal endoderm 8 35251 -UBERON:0010021 dorsal part of pharyngeal pouch 1 8 35252 -UBERON:0010022 ventral part of pharyngeal pouch 1 8 35253 -UBERON:0010023 dorsal part of pharyngeal pouch 2 8 35254 -UBERON:0010024 ventral part of pharyngeal pouch 2 8 35255 -UBERON:0010025 dorsal part of pharyngeal pouch 3 8 35256 -UBERON:0010026 ventral part of pharyngeal pouch 3 8 35257 -UBERON:0010027 dorsal part of pharyngeal pouch 4 8 35258 -UBERON:0010028 ventral part of pharyngeal pouch 4 8 35259 -UBERON:0010029 dorsal part of pharyngeal pouch 5 8 35260 -UBERON:0010030 ventral part of pharyngeal pouch 5 8 35261 -UBERON:0013154 1st arch maxillary endoderm 8 35262 -UBERON:0013156 1st arch mandibular endoderm 8 35263 -UBERON:0013157 1st arch maxillary-mandibular cleft 8 35264 -UBERON:0003259 endoderm of midgut 7 35265 -UBERON:0003260 endoderm of hindgut 7 35266 -UBERON:0003351 pharyngeal epithelium 7 35267 -UBERON:0001951 epithelium of nasopharynx 8 35268 -UBERON:0001952 epithelium of oropharynx 8 35269 -UBERON:0005562 thymus primordium 8 35270 -UBERON:0009695 epithelium of laryngopharynx 8 35271 -UBERON:0013696 tonsil epithelium 8 35272 -UBERON:0012181 tonsil crypt 9 35273 -UBERON:0016545 pharyngeal ectoderm 8 35274 -UBERON:0005879 pharyngeal cleft 9 35275 -UBERON:0005872 1st arch pharyngeal cleft 10 35276 -UBERON:0005873 2nd arch pharyngeal cleft 10 35277 -UBERON:0005874 3rd arch pharyngeal cleft 10 35278 -UBERON:0005875 4th arch pharyngeal cleft 10 35279 -UBERON:0013157 1st arch maxillary-mandibular cleft 10 35280 -UBERON:0003367 epithelium of vomeronasal organ 7 35281 -UBERON:0003846 thymus epithelium 7 35282 -UBERON:0006936 thymus subcapsular epithelium 8 35283 -UBERON:0003922 pancreatic epithelial bud 7 35284 -UBERON:0003923 dorsal pancreatic bud 8 35285 -UBERON:0003924 ventral pancreatic bud 8 35286 -UBERON:0004802 respiratory tract epithelium 7 35287 -UBERON:0004814 upper respiratory tract epithelium 8 35288 -UBERON:0001951 epithelium of nasopharynx 9 35289 -UBERON:0005384 nasal cavity epithelium 9 35290 -UBERON:0001997 olfactory epithelium 10 35291 -UBERON:0005385 nasal cavity respiratory epithelium 10 35292 -UBERON:0009671 nasal fin 10 35293 -UBERON:0004815 lower respiratory tract epithelium 8 35294 -UBERON:0000115 lung epithelium 9 35295 -UBERON:0002051 epithelium of bronchiole 10 35296 -UBERON:0001955 epithelium of respiratory bronchiole 11 35297 -UBERON:0001958 terminal bronchiole epithelium 11 35298 -UBERON:0002169 alveolar sac 10 35299 -UBERON:0002339 epithelium of lobar bronchus 10 35300 -UBERON:0015794 left lung lobar bronchus epithelium 11 35301 -UBERON:0015795 right lung lobar bronchus epitheium 11 35302 -UBERON:0002341 epithelium of segmental bronchus 10 35303 -UBERON:0003364 epithelium of right lung 10 35304 -UBERON:0005639 right lung cranial lobe epithelium 11 35305 -UBERON:0005674 right lung cranial lobe endothelium 12 35306 -UBERON:0005640 right lung caudal lobe epithelium 11 35307 -UBERON:0005675 right lung caudal lobe endothelium 12 35308 -UBERON:0005655 right lung accessory lobe epithelium 11 35309 -UBERON:0005676 right lung accessory lobe endothelium 12 35310 -UBERON:0005672 right lung endothelium 11 35311 -UBERON:0005674 right lung cranial lobe endothelium 12 35312 -UBERON:0005675 right lung caudal lobe endothelium 12 35313 -UBERON:0005676 right lung accessory lobe endothelium 12 35314 -UBERON:0015795 right lung lobar bronchus epitheium 11 35315 -UBERON:0003365 epithelium of left lung 10 35316 -UBERON:0005673 left lung endothelium 11 35317 -UBERON:0015794 left lung lobar bronchus epithelium 11 35318 -UBERON:0004821 pulmonary alveolus epithelium 10 35319 -UBERON:0005314 alveolar primary septum 11 35320 -UBERON:0005315 alveolar secondary septum 11 35321 -UBERON:0013479 lung endothelium 10 35322 -UBERON:0008397 tracheobronchial epithelium 9 35323 -UBERON:0001901 epithelium of trachea 10 35324 -UBERON:0003279 endothelium of trachea 11 35325 -UBERON:0002031 epithelium of bronchus 10 35326 -UBERON:0002051 epithelium of bronchiole 11 35327 -UBERON:0001955 epithelium of respiratory bronchiole 12 35328 -UBERON:0001958 terminal bronchiole epithelium 12 35329 -UBERON:0002339 epithelium of lobar bronchus 11 35330 -UBERON:0015794 left lung lobar bronchus epithelium 12 35331 -UBERON:0015795 right lung lobar bronchus epitheium 12 35332 -UBERON:0002340 epithelium of main bronchus 11 35333 -UBERON:0003280 endothelium of main bronchus 12 35334 -UBERON:0002341 epithelium of segmental bronchus 11 35335 -UBERON:0004818 terminal bronchus epithelium 11 35336 -UBERON:0004816 larynx epithelium 8 35337 -UBERON:0004820 bile duct epithelium 7 35338 -UBERON:0004822 extrahepatic bile duct epithelium 8 35339 -UBERON:0004823 intrahepatic bile duct epithelium 8 35340 -UBERON:0005042 inner epithelial layer of tympanic membrane 7 35341 -UBERON:0005642 ultimobranchial body epithelium 7 35342 -UBERON:0009495 extrahepatic part of biliary bud 7 35343 -UBERON:0009496 intrahepatic part of biliary bud 7 35344 -UBERON:0009497 epithelium of foregut-midgut junction 7 35345 -UBERON:0003894 liver primordium 8 35346 -UBERON:0004912 biliary bud 8 35347 -UBERON:0008835 hepatic diverticulum 8 35348 -UBERON:0008836 liver bud 8 35349 -UBERON:0009521 anal membrane endodermal component 7 35350 -UBERON:0009846 embryonic cloacal epithelium 8 35351 -UBERON:0004902 urogenital sinus epithelium 9 35352 -UBERON:0003820 prostate bud 10 35353 -UBERON:0009722 entire pharyngeal arch endoderm 7 35354 -UBERON:0010020 tubotympanic recess epithelium 7 35355 -UBERON:0010062 pharyngotympanic tube epithelium 7 35356 -UBERON:0010063 tympanic cavity epithelium 7 35357 -UBERON:0010065 auditory meatus epithelium 7 35358 -UBERON:0010069 outer epithelial layer of tympanic membrane 7 35359 -UBERON:0010081 future common hepatic duct 7 35360 -UBERON:0011197 parathyroid epithelium 7 35361 -UBERON:0011195 inferior parathyroid epithelium 8 35362 -UBERON:0011196 superior parathyroid epithelium 8 35363 -UBERON:0012363 thyroid follicle epithelium 7 35364 -UBERON:0012481 cloacal epithelium 7 35365 -UBERON:0009846 embryonic cloacal epithelium 8 35366 -UBERON:0004902 urogenital sinus epithelium 9 35367 -UBERON:0003820 prostate bud 10 35368 -UBERON:0012925 bronchial bud 7 35369 -UBERON:0013697 exocrine pancreas epithelium 7 35370 -UBERON:0009970 epithelium of pancreatic duct 8 35371 -UBERON:0014705 median lingual swelling epithelium 7 35372 -UBERON:0016547 lower foregut region endoderm 7 35373 -UBERON:0036072 respiratory primordium epithelium 7 35374 -UBERON:0006799 glandular epithelium 6 35375 -UBERON:0006929 glandular columnar epithelium 7 35376 -UBERON:0006924 stomach glandular epithelium 8 35377 -UBERON:0012276 endometrium glandular epithelium 8 35378 -UBERON:0006930 glandular cuboidal epithelium 7 35379 -UBERON:0011197 parathyroid epithelium 7 35380 -UBERON:0011195 inferior parathyroid epithelium 8 35381 -UBERON:0011196 superior parathyroid epithelium 8 35382 -UBERON:0012250 cervix glandular epithelium 7 35383 -UBERON:0012252 endocervical epithelium 8 35384 -UBERON:0006914 squamous epithelium 6 35385 -UBERON:0000487 simple squamous epithelium 7 35386 -UBERON:0001081 endocardium of ventricle 8 35387 -UBERON:0009712 endocardium of right ventricle 9 35388 -UBERON:0009713 endocardium of left ventricle 9 35389 -UBERON:0001136 mesothelium 8 35390 -UBERON:0003274 mesothelium of omental bursa 9 35391 -UBERON:0003388 mesothelium of pericardial cavity 9 35392 -UBERON:0007186 pericardial visceral mesothelium 10 35393 -UBERON:0007187 pericardial parietal mesothelium 10 35394 -UBERON:0007188 mesothelium of serous pericardium 10 35395 -UBERON:0015128 subepicardial layer of epicardium 11 35396 -UBERON:0003389 mesothelium of diaphragm 9 35397 -UBERON:0003390 mesothelium of pleural cavity 9 35398 -UBERON:0004813 seminiferous tubule epithelium 9 35399 -UBERON:0005669 peritoneal cavity mesothelium 9 35400 -UBERON:0005670 greater omentum mesothelium 9 35401 -UBERON:0005671 greater sac mesothelium 9 35402 -UBERON:0007140 parietal mesothelium 9 35403 -UBERON:0007187 pericardial parietal mesothelium 10 35404 -UBERON:0007141 visceral mesothelium 9 35405 -UBERON:0007186 pericardial visceral mesothelium 10 35406 -UBERON:0007185 pericardio-peritoneal canal mesothelium 9 35407 -UBERON:0009499 parietal of mesothelium of pericardio-peritoneal canal 10 35408 -UBERON:0001986 endothelium 8 35409 -UBERON:0000201 endothelial blood brain barrier 9 35410 -UBERON:0001985 corneal endothelium 9 35411 -UBERON:0003279 endothelium of trachea 9 35412 -UBERON:0003280 endothelium of main bronchus 9 35413 -UBERON:0003915 endothelial tube 9 35414 -UBERON:0001917 endothelium of artery 10 35415 -UBERON:0004848 respiratory system arterial endothelium 11 35416 -UBERON:0005317 pulmonary artery endothelium 11 35417 -UBERON:0007778 umbilical artery endothelium 11 35418 -UBERON:0019189 carotid artery endothelium 11 35419 -UBERON:0019196 iliac artery endothelium 11 35420 -UBERON:0004850 lymph node endothelium 9 35421 -UBERON:0004852 cardiovascular system endothelium 9 35422 -UBERON:0002042 lymphatic vessel endothelium 10 35423 -UBERON:0003529 respiratory system lymphatic vessel endothelium 11 35424 -UBERON:0004189 glomerular endothelium 10 35425 -UBERON:0004294 glomerular capillary endothelium 11 35426 -UBERON:0005136 metanephric glomerular endothelium 11 35427 -UBERON:0004638 blood vessel endothelium 10 35428 -UBERON:0001915 endothelium of capillary 11 35429 -UBERON:0003489 respiratory system capillary endothelium 12 35430 -UBERON:0004294 glomerular capillary endothelium 12 35431 -UBERON:0012441 endothelium of peritubular capillary 12 35432 -UBERON:0001916 endothelium of arteriole 11 35433 -UBERON:0001917 endothelium of artery 11 35434 -UBERON:0004848 respiratory system arterial endothelium 12 35435 -UBERON:0005317 pulmonary artery endothelium 12 35436 -UBERON:0007778 umbilical artery endothelium 12 35437 -UBERON:0019189 carotid artery endothelium 12 35438 -UBERON:0019196 iliac artery endothelium 12 35439 -UBERON:0001918 endothelium of venule 11 35440 -UBERON:0001919 endothelium of vein 11 35441 -UBERON:0004698 vena cava endothelium 12 35442 -UBERON:0004849 respiratory system venous endothelium 12 35443 -UBERON:0007777 umbilical vein endothelium 12 35444 -UBERON:0004702 respiratory system blood vessel endothelium 11 35445 -UBERON:0003489 respiratory system capillary endothelium 12 35446 -UBERON:0004848 respiratory system arterial endothelium 12 35447 -UBERON:0004849 respiratory system venous endothelium 12 35448 -UBERON:0013479 lung endothelium 12 35449 -UBERON:0004851 aorta endothelium 11 35450 -UBERON:2005259 continuous capillary 11 35451 -UBERON:2005260 fenestrated capillary 11 35452 -UBERON:0003909 sinusoid 12 35453 -UBERON:0001281 hepatic sinusoid 13 35454 -UBERON:0009548 hepatic sinusoid of left of lobe of liver 14 35455 -UBERON:0011737 caudate lobe hepatic sinusoid 15 35456 -UBERON:0009549 hepatic sinusoid of right of lobe of liver 14 35457 -UBERON:0011737 caudate lobe hepatic sinusoid 15 35458 -UBERON:0011738 quadrate lobe hepatic sinusoid 15 35459 -UBERON:0003910 splenic sinusoid 13 35460 -UBERON:0004700 arterial system endothelium 10 35461 -UBERON:0001916 endothelium of arteriole 11 35462 -UBERON:0001917 endothelium of artery 11 35463 -UBERON:0004848 respiratory system arterial endothelium 12 35464 -UBERON:0005317 pulmonary artery endothelium 12 35465 -UBERON:0007778 umbilical artery endothelium 12 35466 -UBERON:0019189 carotid artery endothelium 12 35467 -UBERON:0019196 iliac artery endothelium 12 35468 -UBERON:0004851 aorta endothelium 11 35469 -UBERON:0004701 venous system endothelium 10 35470 -UBERON:0001918 endothelium of venule 11 35471 -UBERON:0001919 endothelium of vein 11 35472 -UBERON:0004698 vena cava endothelium 12 35473 -UBERON:0004849 respiratory system venous endothelium 12 35474 -UBERON:0007777 umbilical vein endothelium 12 35475 -UBERON:0008307 heart endothelium 10 35476 -UBERON:0004699 outflow tract endothelium 11 35477 -UBERON:0005316 endocardial endothelium 11 35478 -UBERON:0008339 microvascular endothelium 10 35479 -UBERON:0005672 right lung endothelium 9 35480 -UBERON:0005674 right lung cranial lobe endothelium 10 35481 -UBERON:0005675 right lung caudal lobe endothelium 10 35482 -UBERON:0005676 right lung accessory lobe endothelium 10 35483 -UBERON:0005673 left lung endothelium 9 35484 -UBERON:0010294 scleral endothelium 9 35485 -UBERON:0013694 brain endothelium 9 35486 -UBERON:0013695 colon endothelium 9 35487 -UBERON:0003055 periderm 8 35488 -UBERON:0002027 stratum corneum of epidermis 9 35489 -UBERON:0002284 hyponychium 10 35490 -UBERON:0004821 pulmonary alveolus epithelium 8 35491 -UBERON:0005314 alveolar primary septum 9 35492 -UBERON:0005315 alveolar secondary septum 9 35493 -UBERON:0005750 glomerular parietal epithelium 8 35494 -UBERON:0006921 stomach squamous epithelium 8 35495 -UBERON:0009129 right atrium endocardium 8 35496 -UBERON:0011007 endocardium of right auricle 9 35497 -UBERON:2005311 pronephric glomerular capsule epithelium 8 35498 -UBERON:0005099 short descending thin limb 7 35499 -UBERON:0005141 metanephric short descending thin limb 8 35500 -UBERON:0006915 stratified squamous epithelium 7 35501 -UBERON:0001949 gingival epithelium 8 35502 -UBERON:0013195 parakeratinized epithelium of gingiva 9 35503 -UBERON:0002018 synovial membrane of synovial joint 8 35504 -UBERON:0006923 vagina squamous epithelium 8 35505 -UBERON:0010304 non-keratinized stratified squamous epithelium 8 35506 -UBERON:0006763 epithelium of conjunctiva 9 35507 -UBERON:0006916 non-keratinized epithelium of tongue 9 35508 -UBERON:0006922 cervix squamous epithelium 9 35509 -UBERON:0012329 keratinized stratified squamous epithelium 8 35510 -UBERON:0004650 tongue keratinized epithelium 9 35511 -UBERON:0017180 hemipenis keratinized epithelium 9 35512 -UBERON:0019307 epithelium of external nose 9 35513 -UBERON:0006919 tongue squamous epithelium 7 35514 -UBERON:0004650 tongue keratinized epithelium 8 35515 -UBERON:0006916 non-keratinized epithelium of tongue 8 35516 -UBERON:0006920 esophagus squamous epithelium 7 35517 -UBERON:0013141 capillary bed 7 35518 -UBERON:0015189 perineural vascular plexus 8 35519 -UBERON:0036185 Sertoli cell barrier 7 35520 -UBERON:0007503 epithelial vesicle 6 35521 -UBERON:0002329 somite 7 35522 -UBERON:0005594 head somite 8 35523 -UBERON:0005598 trunk somite 8 35524 -UBERON:0009621 tail somite 8 35525 -UBERON:2000072 somite 1 8 35526 -UBERON:2000073 somite 5 8 35527 -UBERON:2000074 somite 26 8 35528 -UBERON:2000156 somite 20 8 35529 -UBERON:2000157 somite 30 8 35530 -UBERON:2000725 somite 11 8 35531 -UBERON:2000726 somite 14 8 35532 -UBERON:2000727 somite 17 8 35533 -UBERON:2000728 somite 2 8 35534 -UBERON:2000730 somite 23 8 35535 -UBERON:2000731 somite 27 8 35536 -UBERON:2000732 somite 3 8 35537 -UBERON:2000733 somite 7 8 35538 -UBERON:2000851 somite 12 8 35539 -UBERON:2000852 somite 15 8 35540 -UBERON:2000853 somite 18 8 35541 -UBERON:2000854 somite 21 8 35542 -UBERON:2000855 somite 24 8 35543 -UBERON:2000856 somite 28 8 35544 -UBERON:2000857 somite 4 8 35545 -UBERON:2000858 somite 8 8 35546 -UBERON:2000974 somite 10 8 35547 -UBERON:2000975 somite 13 8 35548 -UBERON:2000976 somite 16 8 35549 -UBERON:2000977 somite 19 8 35550 -UBERON:2000978 somite 22 8 35551 -UBERON:2000980 somite 25 8 35552 -UBERON:2000981 somite 29 8 35553 -UBERON:2000982 somite 6 8 35554 -UBERON:2000983 somite 9 8 35555 -UBERON:0003304 mesoderm blood island 7 35556 -UBERON:0004209 renal vesicle 7 35557 -UBERON:0005147 metanephric renal vesicle 8 35558 -UBERON:0005331 mesonephric renal vesicle 8 35559 -UBERON:0011921 connecting stalk blood islands 7 35560 -UBERON:0007573 migrating epithelium 6 35561 -UBERON:0007601 ciliated epithelium 6 35562 -UBERON:0004670 ependyma 7 35563 -UBERON:0005357 brain ependyma 8 35564 -UBERON:0004642 third ventricle ependyma 9 35565 -UBERON:0004643 lateral ventricle ependyma 9 35566 -UBERON:0004644 fourth ventricle ependyma 9 35567 -UBERON:0005359 spinal cord ependyma 8 35568 -UBERON:0007592 ciliated columnar epithelium 7 35569 -UBERON:0007589 ciliated columnar oviduct epithelium 8 35570 -UBERON:0012276 endometrium glandular epithelium 9 35571 -UBERON:0010499 pseudostratified ciliated columnar epithelium 8 35572 -UBERON:0004802 respiratory tract epithelium 9 35573 -UBERON:0004814 upper respiratory tract epithelium 10 35574 -UBERON:0001951 epithelium of nasopharynx 11 35575 -UBERON:0005384 nasal cavity epithelium 11 35576 -UBERON:0001997 olfactory epithelium 12 35577 -UBERON:0005385 nasal cavity respiratory epithelium 12 35578 -UBERON:0009671 nasal fin 12 35579 -UBERON:0004815 lower respiratory tract epithelium 10 35580 -UBERON:0000115 lung epithelium 11 35581 -UBERON:0002051 epithelium of bronchiole 12 35582 -UBERON:0001955 epithelium of respiratory bronchiole 13 35583 -UBERON:0001958 terminal bronchiole epithelium 13 35584 -UBERON:0002169 alveolar sac 12 35585 -UBERON:0002339 epithelium of lobar bronchus 12 35586 -UBERON:0015794 left lung lobar bronchus epithelium 13 35587 -UBERON:0015795 right lung lobar bronchus epitheium 13 35588 -UBERON:0002341 epithelium of segmental bronchus 12 35589 -UBERON:0003364 epithelium of right lung 12 35590 -UBERON:0005639 right lung cranial lobe epithelium 13 35591 -UBERON:0005674 right lung cranial lobe endothelium 14 35592 -UBERON:0005640 right lung caudal lobe epithelium 13 35593 -UBERON:0005675 right lung caudal lobe endothelium 14 35594 -UBERON:0005655 right lung accessory lobe epithelium 13 35595 -UBERON:0005676 right lung accessory lobe endothelium 14 35596 -UBERON:0005672 right lung endothelium 13 35597 -UBERON:0005674 right lung cranial lobe endothelium 14 35598 -UBERON:0005675 right lung caudal lobe endothelium 14 35599 -UBERON:0005676 right lung accessory lobe endothelium 14 35600 -UBERON:0015795 right lung lobar bronchus epitheium 13 35601 -UBERON:0003365 epithelium of left lung 12 35602 -UBERON:0005673 left lung endothelium 13 35603 -UBERON:0015794 left lung lobar bronchus epithelium 13 35604 -UBERON:0004821 pulmonary alveolus epithelium 12 35605 -UBERON:0005314 alveolar primary septum 13 35606 -UBERON:0005315 alveolar secondary septum 13 35607 -UBERON:0013479 lung endothelium 12 35608 -UBERON:0008397 tracheobronchial epithelium 11 35609 -UBERON:0001901 epithelium of trachea 12 35610 -UBERON:0003279 endothelium of trachea 13 35611 -UBERON:0002031 epithelium of bronchus 12 35612 -UBERON:0002051 epithelium of bronchiole 13 35613 -UBERON:0001955 epithelium of respiratory bronchiole 14 35614 -UBERON:0001958 terminal bronchiole epithelium 14 35615 -UBERON:0002339 epithelium of lobar bronchus 13 35616 -UBERON:0015794 left lung lobar bronchus epithelium 14 35617 -UBERON:0015795 right lung lobar bronchus epitheium 14 35618 -UBERON:0002340 epithelium of main bronchus 13 35619 -UBERON:0003280 endothelium of main bronchus 14 35620 -UBERON:0002341 epithelium of segmental bronchus 13 35621 -UBERON:0004818 terminal bronchus epithelium 13 35622 -UBERON:0004816 larynx epithelium 10 35623 -UBERON:0007606 ciliated stratified columnar epithelium 7 35624 -UBERON:0008367 breast epithelium 6 35625 -UBERON:0010077 cuboidal epithelium 6 35626 -UBERON:0000484 simple cuboidal epithelium 7 35627 -UBERON:0001304 germinal epithelium of ovary 8 35628 -UBERON:0001803 epithelium of lens 8 35629 -UBERON:0005614 lens anterior epithelium 9 35630 -UBERON:0005615 lens equatorial epithelium 9 35631 -UBERON:0006930 glandular cuboidal epithelium 8 35632 -UBERON:0012363 thyroid follicle epithelium 8 35633 -UBERON:0014388 kidney collecting duct epithelium 8 35634 -UBERON:0007590 cuboidal oviduct epithelium 7 35635 -UBERON:0007603 stratified cuboidal epithelium 7 35636 -UBERON:0010136 epithelial sheet 6 35637 -UBERON:0010137 polarized epithelium 6 35638 -UBERON:0012238 ureteric bud trunk 7 35639 -UBERON:0010300 epithelial scleral papilla layer 6 35640 -UBERON:0010303 extraembryonic epithelium 6 35641 -UBERON:0010302 amnioserosa 7 35642 -UBERON:0011921 connecting stalk blood islands 7 35643 -UBERON:0010371 ecto-epithelium 6 35644 -UBERON:0001049 neural tube 7 35645 -UBERON:0003051 ear vesicle 7 35646 -UBERON:0003055 periderm 7 35647 -UBERON:0002027 stratum corneum of epidermis 8 35648 -UBERON:0002284 hyponychium 9 35649 -UBERON:0003071 eye primordium 7 35650 -UBERON:0003075 neural plate 7 35651 -UBERON:0003854 spinal cord neural plate 8 35652 -UBERON:0009610 forebrain neural plate 8 35653 -UBERON:0009611 midbrain neural plate 8 35654 -UBERON:0009614 hindbrain neural plate 8 35655 -UBERON:0003098 optic stalk 7 35656 -UBERON:0003229 epithelium of elbow 7 35657 -UBERON:0003230 epithelium of carpal region 7 35658 -UBERON:0003231 epithelium of hip 7 35659 -UBERON:0003232 epithelium of knee 7 35660 -UBERON:0003233 epithelium of shoulder 7 35661 -UBERON:0003244 epithelium of mammary gland 7 35662 -UBERON:0001765 mammary duct 8 35663 -UBERON:0011844 duct of areolar gland 9 35664 -UBERON:0015132 extralobar lactiferous duct 9 35665 -UBERON:0015133 terminal lactiferous duct 9 35666 -UBERON:0015134 main lactiferous duct 9 35667 -UBERON:0015135 primary lactiferous duct 9 35668 -UBERON:0015136 secondary lactiferous duct 9 35669 -UBERON:0015137 tertiary lactiferous duct 9 35670 -UBERON:0015138 quarternary lactiferous duct 9 35671 -UBERON:0022360 male mammary gland duct 9 35672 -UBERON:0004182 mammary gland cord 8 35673 -UBERON:0005313 mammary duct terminal end bud 8 35674 -UBERON:0006954 mammary gland myoepithelium 8 35675 -UBERON:0003247 epithelium of forearm 7 35676 -UBERON:0003248 epithelium of footplate 7 35677 -UBERON:0003249 epithelium of otic placode 7 35678 -UBERON:2000225 lateral crista primordium 8 35679 -UBERON:2000411 posterior crista primordium 8 35680 -UBERON:0003355 epithelium of incisor 7 35681 -UBERON:0005709 upper jaw incisor epithelium 8 35682 -UBERON:0005710 lower jaw incisor epithelium 8 35683 -UBERON:0015840 incisor dental lamina 8 35684 -UBERON:0003358 epithelium of soft palate 7 35685 -UBERON:0003368 epithelium of hard palate 7 35686 -UBERON:0003371 pelvic appendage bud ectoderm 7 35687 -UBERON:0003372 pectoral appendage bud ectoderm 7 35688 -UBERON:0003843 dental epithelium 7 35689 -UBERON:0005709 upper jaw incisor epithelium 8 35690 -UBERON:0005710 lower jaw incisor epithelium 8 35691 -UBERON:0006949 cervical loop 8 35692 -UBERON:0006950 stellate reticulum 8 35693 -UBERON:0006951 inner dental epithelium 8 35694 -UBERON:0006952 outer dental epithelium 8 35695 -UBERON:0015839 molar epithelium 8 35696 -UBERON:0005653 upper jaw molar epithelium 9 35697 -UBERON:0005654 lower jaw molar epithelium 9 35698 -UBERON:0015841 molar dental lamina 9 35699 -UBERON:2005135 primary dental epithelium 8 35700 -UBERON:0003911 choroid plexus epithelium 7 35701 -UBERON:0004274 lateral ventricle choroid plexus epithelium 8 35702 -UBERON:0004275 third ventricle choroid plexus epithelium 8 35703 -UBERON:0004276 fourth ventricle choroid plexus epithelium 8 35704 -UBERON:0004008 cerebellar plate 7 35705 -UBERON:0004022 germinal neuroepithelium 7 35706 -UBERON:0004060 neural tube ventricular layer 7 35707 -UBERON:0013160 epithalamus ventricular layer 8 35708 -UBERON:0034710 spinal cord ventricular layer 8 35709 -UBERON:0004061 neural tube mantle layer 7 35710 -UBERON:0005883 neural tube lateral wall mantle layer 8 35711 -UBERON:0009580 diencephalon mantle layer 8 35712 -UBERON:0009581 midbrain mantle layer 8 35713 -UBERON:0009583 spinal cord mantle layer 8 35714 -UBERON:0013159 epithalamus mantle layer 8 35715 -UBERON:0004670 ependyma 7 35716 -UBERON:0005357 brain ependyma 8 35717 -UBERON:0004642 third ventricle ependyma 9 35718 -UBERON:0004643 lateral ventricle ependyma 9 35719 -UBERON:0004644 fourth ventricle ependyma 9 35720 -UBERON:0005359 spinal cord ependyma 8 35721 -UBERON:0004882 eponychium 7 35722 -UBERON:0005062 neural fold 7 35723 -UBERON:0009748 cephalic neural fold 8 35724 -UBERON:0005078 lamina terminalis of neural tube 7 35725 -UBERON:0005225 upper leg epithelium 7 35726 -UBERON:0005226 pedal digit epithelium 7 35727 -UBERON:0005649 pedal digit 2 epithelium 8 35728 -UBERON:0005650 pedal digit 3 epithelium 8 35729 -UBERON:0005651 pedal digit 4 epithelium 8 35730 -UBERON:0005652 pedal digit 5 epithelium 8 35731 -UBERON:0010693 pedal digit 1 epithelium 8 35732 -UBERON:0005227 manual digit epithelium 7 35733 -UBERON:0005645 manual digit 2 epithelium 8 35734 -UBERON:0005646 manual digit 3 epithelium 8 35735 -UBERON:0005647 manual digit 4 epithelium 8 35736 -UBERON:0005648 manual digit 5 epithelium 8 35737 -UBERON:0010690 manual digit 1 epithelium 8 35738 -UBERON:0005228 upper arm epithelium 7 35739 -UBERON:0005229 lower leg epithelium 7 35740 -UBERON:0005333 mammary bud 7 35741 -UBERON:0005356 Rathke's pouch 7 35742 -UBERON:0005656 lens vesicle epithelium 7 35743 -UBERON:0005658 secondary palatal shelf epithelium 7 35744 -UBERON:0005659 primary palate epithelium 7 35745 -UBERON:0006250 infundibular recess of 3rd ventricle 7 35746 -UBERON:0006267 notochordal plate 7 35747 -UBERON:0006937 inner ear epithelium 7 35748 -UBERON:0002223 endolymphatic sac 8 35749 -UBERON:0003238 epithelium of superior semicircular canal 8 35750 -UBERON:0007274 crista of ampulla of anterior semicircular duct of membranous laybrinth 9 35751 -UBERON:0003239 epithelium of posterior semicircular canal 8 35752 -UBERON:0007275 crista of ampulla of posterior semicircular duct of membranous laybrinth 9 35753 -UBERON:2000411 posterior crista primordium 9 35754 -UBERON:0003240 epithelium of lateral semicircular canal 8 35755 -UBERON:0007276 crista of ampulla of lateral semicircular duct of membranous laybrinth 9 35756 -UBERON:2000225 lateral crista primordium 9 35757 -UBERON:0003243 epithelium of cochlear duct 8 35758 -UBERON:0003246 epithelium of endolymphatic sac 8 35759 -UBERON:0003362 epithelium of endolymphatic duct 8 35760 -UBERON:0006932 vestibular epithelium 8 35761 -UBERON:0003241 epithelium of utricle 9 35762 -UBERON:0003242 epithelium of saccule 9 35763 -UBERON:0003363 epithelium of ductus reuniens 9 35764 -UBERON:0005657 crus commune epithelium 9 35765 -UBERON:0006935 crista ampullaris neuroepithelium 9 35766 -UBERON:0007274 crista of ampulla of anterior semicircular duct of membranous laybrinth 10 35767 -UBERON:0007275 crista of ampulla of posterior semicircular duct of membranous laybrinth 10 35768 -UBERON:0007276 crista of ampulla of lateral semicircular duct of membranous laybrinth 10 35769 -UBERON:2002206 macula communis 8 35770 -UBERON:0006964 pars distalis of adenohypophysis 7 35771 -UBERON:0007376 outer epithelium 7 35772 -UBERON:0001003 skin epidermis 8 35773 -UBERON:0005083 nipple sheath 9 35774 -UBERON:0009200 limb epidermis 9 35775 -UBERON:0015484 epidermis of metapodial pad 10 35776 -UBERON:0007383 enveloping layer of ectoderm 7 35777 -UBERON:0008969 dental follicle 7 35778 -UBERON:0009970 epithelium of pancreatic duct 7 35779 -UBERON:0010065 auditory meatus epithelium 7 35780 -UBERON:0010069 outer epithelial layer of tympanic membrane 7 35781 -UBERON:0010332 epithelium of handplate 7 35782 -UBERON:0011272 embryonic skin basal layer 7 35783 -UBERON:0011642 oral epithelium from ectoderm 7 35784 -UBERON:0009671 nasal fin 8 35785 -UBERON:0012287 Rathkes pouch epithelium 8 35786 -UBERON:0011804 feather bud, epidermal component 7 35787 -UBERON:0012313 1st arch maxillary ectoderm 7 35788 -UBERON:0013155 1st arch mandibular ectoderm 7 35789 -UBERON:0013694 brain endothelium 7 35790 -UBERON:0014702 frontonasal process epithelium 7 35791 -UBERON:0005233 medial-nasal process ectoderm 8 35792 -UBERON:0009206 lateral nasal process surface ectoderm 8 35793 -UBERON:0014703 anal membrane ectodermal component 7 35794 -UBERON:0015716 anal canal epithelium 8 35795 -UBERON:0014712 carapacial ridge ectoderm 7 35796 -UBERON:0015766 epithelium of duct of salivary gland 7 35797 -UBERON:0015808 eye epithelium 7 35798 -UBERON:0001772 corneal epithelium 8 35799 -UBERON:0001778 ciliary epithelium 8 35800 -UBERON:0001782 pigmented layer of retina 8 35801 -UBERON:0001803 epithelium of lens 8 35802 -UBERON:0005614 lens anterior epithelium 9 35803 -UBERON:0005615 lens equatorial epithelium 9 35804 -UBERON:0001985 corneal endothelium 8 35805 -UBERON:0002506 iris epithelium 8 35806 -UBERON:0004694 Harderian gland epithelium 8 35807 -UBERON:0004817 lacrimal gland epithelium 8 35808 -UBERON:0005638 anterior chamber epithelium 8 35809 -UBERON:0006763 epithelium of conjunctiva 8 35810 -UBERON:0010294 scleral endothelium 8 35811 -UBERON:0022284 lacrimal gland bud 8 35812 -UBERON:0035034 eyelid epithelium 8 35813 -UBERON:0003844 upper eyelid epithelium 9 35814 -UBERON:0003845 lower eyelid epithelium 9 35815 -UBERON:0019204 skin epithelium 7 35816 -UBERON:0005975 hair follicle bulge 8 35817 -UBERON:0006004 hair follicle matrix region 8 35818 -UBERON:0006005 hair follicle isthmus 8 35819 -UBERON:0015484 epidermis of metapodial pad 8 35820 -UBERON:0019306 nose epithelium 7 35821 -UBERON:0003356 epithelium of nasal septum 8 35822 -UBERON:0003367 epithelium of vomeronasal organ 8 35823 -UBERON:0004692 external naris epithelium 8 35824 -UBERON:0005384 nasal cavity epithelium 8 35825 -UBERON:0001997 olfactory epithelium 9 35826 -UBERON:0005385 nasal cavity respiratory epithelium 9 35827 -UBERON:0009671 nasal fin 9 35828 -UBERON:0006266 nasolacrimal groove 8 35829 -UBERON:0019307 epithelium of external nose 8 35830 -UBERON:2001428 olfactory rosette 8 35831 -UBERON:2001431 primitive olfactory epithelium 7 35832 -UBERON:6001764 labial disc 7 35833 -UBERON:6001765 clypeo-labral disc 7 35834 -UBERON:6001766 eye-antennal disc 7 35835 -UBERON:6001767 antennal disc 7 35836 -UBERON:6001776 dorsal thoracic disc 7 35837 -UBERON:6001778 wing disc 8 35838 -UBERON:6001779 haltere disc 8 35839 -UBERON:6001780 ventral thoracic disc 7 35840 -UBERON:6001781 prothoracic leg disc 8 35841 -UBERON:6001784 genital disc 7 35842 -UBERON:6001785 male genital disc 8 35843 -UBERON:6001787 female genital disc 8 35844 -UBERON:6006032 mesothoracic tergum primordium 7 35845 -UBERON:0011952 non-glandular epithelium 6 35846 -UBERON:0010040 stomach non-glandular epithelium 7 35847 -UBERON:0008285 rumen epithelium 8 35848 -UBERON:0012274 columnar epithelium 6 35849 -UBERON:0000485 simple columnar epithelium 7 35850 -UBERON:0000428 prostate epithelium 8 35851 -UBERON:0001276 epithelium of stomach 8 35852 -UBERON:0005477 stomach fundus epithelium 9 35853 -UBERON:0005637 pyloric region epithelium 9 35854 -UBERON:0006921 stomach squamous epithelium 9 35855 -UBERON:0006924 stomach glandular epithelium 9 35856 -UBERON:0010040 stomach non-glandular epithelium 9 35857 -UBERON:0008285 rumen epithelium 10 35858 -UBERON:0001277 intestinal epithelium 8 35859 -UBERON:0001278 epithelium of large intestine 9 35860 -UBERON:0000397 colonic epithelium 10 35861 -UBERON:0005636 caecum epithelium 11 35862 -UBERON:0009697 epithelium of appendix 12 35863 -UBERON:0013695 colon endothelium 11 35864 -UBERON:0003354 epithelium of rectum 10 35865 -UBERON:0013741 base of crypt of Lieberkuhn of large intestine 10 35866 -UBERON:0013742 wall of crypt of Lieberkuhn of large intestine 10 35867 -UBERON:0015716 anal canal epithelium 10 35868 -UBERON:0022281 epithelium of crypt of Lieberkuhn of large intestine 10 35869 -UBERON:0001902 epithelium of small intestine 9 35870 -UBERON:0013636 epithelium of intestinal villus 10 35871 -UBERON:0000400 jejunal epithelium 11 35872 -UBERON:0008345 ileal epithelium 11 35873 -UBERON:0008346 duodenal epithelium 11 35874 -UBERON:0005643 foregut duodenum epithelium 12 35875 -UBERON:0005644 midgut duodenum epithelium 12 35876 -UBERON:0013743 base of crypt of Lieberkuhn of small intestine 10 35877 -UBERON:0013744 wall of crypt of Lieberkuhn of small intestine 10 35878 -UBERON:0022280 epithelium of crypt of Lieberkuhn of small intestine 10 35879 -UBERON:0004693 Peyer's patch epithelium 9 35880 -UBERON:0011184 epithelium of crypt of Lieberkuhn 9 35881 -UBERON:0013739 base of crypt of Lieberkuhn 10 35882 -UBERON:0013741 base of crypt of Lieberkuhn of large intestine 11 35883 -UBERON:0013743 base of crypt of Lieberkuhn of small intestine 11 35884 -UBERON:0013740 wall of crypt of Lieberkuhn 10 35885 -UBERON:0013742 wall of crypt of Lieberkuhn of large intestine 11 35886 -UBERON:0013744 wall of crypt of Lieberkuhn of small intestine 11 35887 -UBERON:0022280 epithelium of crypt of Lieberkuhn of small intestine 10 35888 -UBERON:0022281 epithelium of crypt of Lieberkuhn of large intestine 10 35889 -UBERON:2005126 intestinal bulb epithelium 9 35890 -UBERON:0002029 epithelium of gall bladder 8 35891 -UBERON:0003894 liver primordium 8 35892 -UBERON:0004341 primitive streak 8 35893 -UBERON:0004544 epididymis epithelium 8 35894 -UBERON:0006929 glandular columnar epithelium 8 35895 -UBERON:0006924 stomach glandular epithelium 9 35896 -UBERON:0012276 endometrium glandular epithelium 9 35897 -UBERON:0007592 ciliated columnar epithelium 8 35898 -UBERON:0007589 ciliated columnar oviduct epithelium 9 35899 -UBERON:0012276 endometrium glandular epithelium 10 35900 -UBERON:0010499 pseudostratified ciliated columnar epithelium 9 35901 -UBERON:0004802 respiratory tract epithelium 10 35902 -UBERON:0004814 upper respiratory tract epithelium 11 35903 -UBERON:0001951 epithelium of nasopharynx 12 35904 -UBERON:0005384 nasal cavity epithelium 12 35905 -UBERON:0001997 olfactory epithelium 13 35906 -UBERON:0005385 nasal cavity respiratory epithelium 13 35907 -UBERON:0009671 nasal fin 13 35908 -UBERON:0004815 lower respiratory tract epithelium 11 35909 -UBERON:0000115 lung epithelium 12 35910 -UBERON:0002051 epithelium of bronchiole 13 35911 -UBERON:0001955 epithelium of respiratory bronchiole 14 35912 -UBERON:0001958 terminal bronchiole epithelium 14 35913 -UBERON:0002169 alveolar sac 13 35914 -UBERON:0002339 epithelium of lobar bronchus 13 35915 -UBERON:0015794 left lung lobar bronchus epithelium 14 35916 -UBERON:0015795 right lung lobar bronchus epitheium 14 35917 -UBERON:0002341 epithelium of segmental bronchus 13 35918 -UBERON:0003364 epithelium of right lung 13 35919 -UBERON:0005639 right lung cranial lobe epithelium 14 35920 -UBERON:0005674 right lung cranial lobe endothelium 15 35921 -UBERON:0005640 right lung caudal lobe epithelium 14 35922 -UBERON:0005675 right lung caudal lobe endothelium 15 35923 -UBERON:0005655 right lung accessory lobe epithelium 14 35924 -UBERON:0005676 right lung accessory lobe endothelium 15 35925 -UBERON:0005672 right lung endothelium 14 35926 -UBERON:0005674 right lung cranial lobe endothelium 15 35927 -UBERON:0005675 right lung caudal lobe endothelium 15 35928 -UBERON:0005676 right lung accessory lobe endothelium 15 35929 -UBERON:0015795 right lung lobar bronchus epitheium 14 35930 -UBERON:0003365 epithelium of left lung 13 35931 -UBERON:0005673 left lung endothelium 14 35932 -UBERON:0015794 left lung lobar bronchus epithelium 14 35933 -UBERON:0004821 pulmonary alveolus epithelium 13 35934 -UBERON:0005314 alveolar primary septum 14 35935 -UBERON:0005315 alveolar secondary septum 14 35936 -UBERON:0013479 lung endothelium 13 35937 -UBERON:0008397 tracheobronchial epithelium 12 35938 -UBERON:0001901 epithelium of trachea 13 35939 -UBERON:0003279 endothelium of trachea 14 35940 -UBERON:0002031 epithelium of bronchus 13 35941 -UBERON:0002051 epithelium of bronchiole 14 35942 -UBERON:0001955 epithelium of respiratory bronchiole 15 35943 -UBERON:0001958 terminal bronchiole epithelium 15 35944 -UBERON:0002339 epithelium of lobar bronchus 14 35945 -UBERON:0015794 left lung lobar bronchus epithelium 15 35946 -UBERON:0015795 right lung lobar bronchus epitheium 15 35947 -UBERON:0002340 epithelium of main bronchus 14 35948 -UBERON:0003280 endothelium of main bronchus 15 35949 -UBERON:0002341 epithelium of segmental bronchus 14 35950 -UBERON:0004818 terminal bronchus epithelium 14 35951 -UBERON:0004816 larynx epithelium 11 35952 -UBERON:0010498 pseudostratified columnar epithelium 8 35953 -UBERON:0010499 pseudostratified ciliated columnar epithelium 9 35954 -UBERON:0004802 respiratory tract epithelium 10 35955 -UBERON:0004814 upper respiratory tract epithelium 11 35956 -UBERON:0001951 epithelium of nasopharynx 12 35957 -UBERON:0005384 nasal cavity epithelium 12 35958 -UBERON:0001997 olfactory epithelium 13 35959 -UBERON:0005385 nasal cavity respiratory epithelium 13 35960 -UBERON:0009671 nasal fin 13 35961 -UBERON:0004815 lower respiratory tract epithelium 11 35962 -UBERON:0000115 lung epithelium 12 35963 -UBERON:0002051 epithelium of bronchiole 13 35964 -UBERON:0001955 epithelium of respiratory bronchiole 14 35965 -UBERON:0001958 terminal bronchiole epithelium 14 35966 -UBERON:0002169 alveolar sac 13 35967 -UBERON:0002339 epithelium of lobar bronchus 13 35968 -UBERON:0015794 left lung lobar bronchus epithelium 14 35969 -UBERON:0015795 right lung lobar bronchus epitheium 14 35970 -UBERON:0002341 epithelium of segmental bronchus 13 35971 -UBERON:0003364 epithelium of right lung 13 35972 -UBERON:0005639 right lung cranial lobe epithelium 14 35973 -UBERON:0005674 right lung cranial lobe endothelium 15 35974 -UBERON:0005640 right lung caudal lobe epithelium 14 35975 -UBERON:0005675 right lung caudal lobe endothelium 15 35976 -UBERON:0005655 right lung accessory lobe epithelium 14 35977 -UBERON:0005676 right lung accessory lobe endothelium 15 35978 -UBERON:0005672 right lung endothelium 14 35979 -UBERON:0005674 right lung cranial lobe endothelium 15 35980 -UBERON:0005675 right lung caudal lobe endothelium 15 35981 -UBERON:0005676 right lung accessory lobe endothelium 15 35982 -UBERON:0015795 right lung lobar bronchus epitheium 14 35983 -UBERON:0003365 epithelium of left lung 13 35984 -UBERON:0005673 left lung endothelium 14 35985 -UBERON:0015794 left lung lobar bronchus epithelium 14 35986 -UBERON:0004821 pulmonary alveolus epithelium 13 35987 -UBERON:0005314 alveolar primary septum 14 35988 -UBERON:0005315 alveolar secondary septum 14 35989 -UBERON:0013479 lung endothelium 13 35990 -UBERON:0008397 tracheobronchial epithelium 12 35991 -UBERON:0001901 epithelium of trachea 13 35992 -UBERON:0003279 endothelium of trachea 14 35993 -UBERON:0002031 epithelium of bronchus 13 35994 -UBERON:0002051 epithelium of bronchiole 14 35995 -UBERON:0001955 epithelium of respiratory bronchiole 15 35996 -UBERON:0001958 terminal bronchiole epithelium 15 35997 -UBERON:0002339 epithelium of lobar bronchus 14 35998 -UBERON:0015794 left lung lobar bronchus epithelium 15 35999 -UBERON:0015795 right lung lobar bronchus epitheium 15 36000 -UBERON:0002340 epithelium of main bronchus 14 36001 -UBERON:0003280 endothelium of main bronchus 15 36002 -UBERON:0002341 epithelium of segmental bronchus 14 36003 -UBERON:0004818 terminal bronchus epithelium 14 36004 -UBERON:0004816 larynx epithelium 11 36005 -UBERON:0010501 pseudostratified smooth columnar epithelium 9 36006 -UBERON:6006032 mesothoracic tergum primordium 8 36007 -UBERON:0007602 stratified columnar epithelium 7 36008 -UBERON:0007606 ciliated stratified columnar epithelium 8 36009 -UBERON:0012275 meso-epithelium 6 36010 -UBERON:0000428 prostate epithelium 7 36011 -UBERON:0001081 endocardium of ventricle 7 36012 -UBERON:0009712 endocardium of right ventricle 8 36013 -UBERON:0009713 endocardium of left ventricle 8 36014 -UBERON:0001136 mesothelium 7 36015 -UBERON:0003274 mesothelium of omental bursa 8 36016 -UBERON:0003388 mesothelium of pericardial cavity 8 36017 -UBERON:0007186 pericardial visceral mesothelium 9 36018 -UBERON:0007187 pericardial parietal mesothelium 9 36019 -UBERON:0007188 mesothelium of serous pericardium 9 36020 -UBERON:0015128 subepicardial layer of epicardium 10 36021 -UBERON:0003389 mesothelium of diaphragm 8 36022 -UBERON:0003390 mesothelium of pleural cavity 8 36023 -UBERON:0004813 seminiferous tubule epithelium 8 36024 -UBERON:0005669 peritoneal cavity mesothelium 8 36025 -UBERON:0005670 greater omentum mesothelium 8 36026 -UBERON:0005671 greater sac mesothelium 8 36027 -UBERON:0007140 parietal mesothelium 8 36028 -UBERON:0007187 pericardial parietal mesothelium 9 36029 -UBERON:0007141 visceral mesothelium 8 36030 -UBERON:0007186 pericardial visceral mesothelium 9 36031 -UBERON:0007185 pericardio-peritoneal canal mesothelium 8 36032 -UBERON:0009499 parietal of mesothelium of pericardio-peritoneal canal 9 36033 -UBERON:0001254 urothelium of ureter 7 36034 -UBERON:0005912 transitional epithelium of major calyx 8 36035 -UBERON:0001287 proximal convoluted tubule 7 36036 -UBERON:0005124 metanephric proximal convoluted tubule 8 36037 -UBERON:0007298 pronephric proximal convoluted tubule 8 36038 -UBERON:0001292 distal convoluted tubule 7 36039 -UBERON:0005117 metanephric distal convoluted tubule 8 36040 -UBERON:0001986 endothelium 7 36041 -UBERON:0000201 endothelial blood brain barrier 8 36042 -UBERON:0001985 corneal endothelium 8 36043 -UBERON:0003279 endothelium of trachea 8 36044 -UBERON:0003280 endothelium of main bronchus 8 36045 -UBERON:0003915 endothelial tube 8 36046 -UBERON:0001917 endothelium of artery 9 36047 -UBERON:0004848 respiratory system arterial endothelium 10 36048 -UBERON:0005317 pulmonary artery endothelium 10 36049 -UBERON:0007778 umbilical artery endothelium 10 36050 -UBERON:0019189 carotid artery endothelium 10 36051 -UBERON:0019196 iliac artery endothelium 10 36052 -UBERON:0004850 lymph node endothelium 8 36053 -UBERON:0004852 cardiovascular system endothelium 8 36054 -UBERON:0002042 lymphatic vessel endothelium 9 36055 -UBERON:0003529 respiratory system lymphatic vessel endothelium 10 36056 -UBERON:0004189 glomerular endothelium 9 36057 -UBERON:0004294 glomerular capillary endothelium 10 36058 -UBERON:0005136 metanephric glomerular endothelium 10 36059 -UBERON:0004638 blood vessel endothelium 9 36060 -UBERON:0001915 endothelium of capillary 10 36061 -UBERON:0003489 respiratory system capillary endothelium 11 36062 -UBERON:0004294 glomerular capillary endothelium 11 36063 -UBERON:0012441 endothelium of peritubular capillary 11 36064 -UBERON:0001916 endothelium of arteriole 10 36065 -UBERON:0001917 endothelium of artery 10 36066 -UBERON:0004848 respiratory system arterial endothelium 11 36067 -UBERON:0005317 pulmonary artery endothelium 11 36068 -UBERON:0007778 umbilical artery endothelium 11 36069 -UBERON:0019189 carotid artery endothelium 11 36070 -UBERON:0019196 iliac artery endothelium 11 36071 -UBERON:0001918 endothelium of venule 10 36072 -UBERON:0001919 endothelium of vein 10 36073 -UBERON:0004698 vena cava endothelium 11 36074 -UBERON:0004849 respiratory system venous endothelium 11 36075 -UBERON:0007777 umbilical vein endothelium 11 36076 -UBERON:0004702 respiratory system blood vessel endothelium 10 36077 -UBERON:0003489 respiratory system capillary endothelium 11 36078 -UBERON:0004848 respiratory system arterial endothelium 11 36079 -UBERON:0004849 respiratory system venous endothelium 11 36080 -UBERON:0013479 lung endothelium 11 36081 -UBERON:0004851 aorta endothelium 10 36082 -UBERON:2005259 continuous capillary 10 36083 -UBERON:2005260 fenestrated capillary 10 36084 -UBERON:0003909 sinusoid 11 36085 -UBERON:0001281 hepatic sinusoid 12 36086 -UBERON:0009548 hepatic sinusoid of left of lobe of liver 13 36087 -UBERON:0011737 caudate lobe hepatic sinusoid 14 36088 -UBERON:0009549 hepatic sinusoid of right of lobe of liver 13 36089 -UBERON:0011737 caudate lobe hepatic sinusoid 14 36090 -UBERON:0011738 quadrate lobe hepatic sinusoid 14 36091 -UBERON:0003910 splenic sinusoid 12 36092 -UBERON:0004700 arterial system endothelium 9 36093 -UBERON:0001916 endothelium of arteriole 10 36094 -UBERON:0001917 endothelium of artery 10 36095 -UBERON:0004848 respiratory system arterial endothelium 11 36096 -UBERON:0005317 pulmonary artery endothelium 11 36097 -UBERON:0007778 umbilical artery endothelium 11 36098 -UBERON:0019189 carotid artery endothelium 11 36099 -UBERON:0019196 iliac artery endothelium 11 36100 -UBERON:0004851 aorta endothelium 10 36101 -UBERON:0004701 venous system endothelium 9 36102 -UBERON:0001918 endothelium of venule 10 36103 -UBERON:0001919 endothelium of vein 10 36104 -UBERON:0004698 vena cava endothelium 11 36105 -UBERON:0004849 respiratory system venous endothelium 11 36106 -UBERON:0007777 umbilical vein endothelium 11 36107 -UBERON:0008307 heart endothelium 9 36108 -UBERON:0004699 outflow tract endothelium 10 36109 -UBERON:0005316 endocardial endothelium 10 36110 -UBERON:0008339 microvascular endothelium 9 36111 -UBERON:0005672 right lung endothelium 8 36112 -UBERON:0005674 right lung cranial lobe endothelium 9 36113 -UBERON:0005675 right lung caudal lobe endothelium 9 36114 -UBERON:0005676 right lung accessory lobe endothelium 9 36115 -UBERON:0005673 left lung endothelium 8 36116 -UBERON:0010294 scleral endothelium 8 36117 -UBERON:0013694 brain endothelium 8 36118 -UBERON:0013695 colon endothelium 8 36119 -UBERON:0002018 synovial membrane of synovial joint 7 36120 -UBERON:0002325 epithelium of urethra 7 36121 -UBERON:0004787 urethra urothelium 8 36122 -UBERON:0015777 transitional epithelium of prostatic urethra 9 36123 -UBERON:0016510 epithelium of male urethra 8 36124 -UBERON:0015777 transitional epithelium of prostatic urethra 9 36125 -UBERON:0034770 bulbourethral gland epithelium 9 36126 -UBERON:0016520 epithelium of female urethra 8 36127 -UBERON:0003060 pronephric duct 7 36128 -UBERON:0003254 amniotic ectoderm 7 36129 -UBERON:0003304 mesoderm blood island 7 36130 -UBERON:0003546 distal convoluted tubule macula densa 7 36131 -UBERON:0003846 thymus epithelium 7 36132 -UBERON:0006936 thymus subcapsular epithelium 8 36133 -UBERON:0004141 heart tube 7 36134 -UBERON:0004188 glomerular epithelium 7 36135 -UBERON:0004189 glomerular endothelium 8 36136 -UBERON:0004294 glomerular capillary endothelium 9 36137 -UBERON:0005136 metanephric glomerular endothelium 9 36138 -UBERON:0005135 metanephric glomerular epithelium 8 36139 -UBERON:0005136 metanephric glomerular endothelium 9 36140 -UBERON:0005327 mesonephric glomerular epithelium 8 36141 -UBERON:0005750 glomerular parietal epithelium 8 36142 -UBERON:0006852 glomerular visceral epithelium 8 36143 -UBERON:0004291 heart rudiment 7 36144 -UBERON:0004544 epididymis epithelium 7 36145 -UBERON:0004645 urinary bladder urothelium 7 36146 -UBERON:0004803 penis epithelium 7 36147 -UBERON:0004812 male prepuce epithelium 8 36148 -UBERON:0004804 oviduct epithelium 7 36149 -UBERON:0001344 epithelium of vagina 8 36150 -UBERON:0006923 vagina squamous epithelium 9 36151 -UBERON:0006955 uterine epithelium 8 36152 -UBERON:0003366 epithelium of uterine horn 9 36153 -UBERON:0004801 cervix epithelium 9 36154 -UBERON:0006922 cervix squamous epithelium 10 36155 -UBERON:0012250 cervix glandular epithelium 10 36156 -UBERON:0012252 endocervical epithelium 11 36157 -UBERON:0012251 ectocervical epithelium 10 36158 -UBERON:0012253 cervical squamo-columnar junction 10 36159 -UBERON:0004811 endometrium epithelium 9 36160 -UBERON:0012276 endometrium glandular epithelium 10 36161 -UBERON:0022355 basal layer of endometrium 10 36162 -UBERON:0022356 outer layer of endometrium 10 36163 -UBERON:0007589 ciliated columnar oviduct epithelium 8 36164 -UBERON:0012276 endometrium glandular epithelium 9 36165 -UBERON:0007590 cuboidal oviduct epithelium 8 36166 -UBERON:0004805 seminal vesicle epithelium 7 36167 -UBERON:0004902 urogenital sinus epithelium 7 36168 -UBERON:0003820 prostate bud 8 36169 -UBERON:0005097 renal connecting tubule 7 36170 -UBERON:0005149 metanephric connecting tubule 8 36171 -UBERON:0006189 mesonephric connecting tubule 8 36172 -UBERON:0005101 early distal convoluted tubule 7 36173 -UBERON:0005118 metanephric early distal convoluted tubule 8 36174 -UBERON:0005102 late distal convoluted tubule 7 36175 -UBERON:0005120 metanephric late distal convoluted tubule 8 36176 -UBERON:0005103 mesonephric epithelium 7 36177 -UBERON:0000083 mesonephric tubule 8 36178 -UBERON:0000084 ureteric bud 9 36179 -UBERON:0005080 metanephric ureteric bud 10 36180 -UBERON:0005081 ureter ureteric bud 10 36181 -UBERON:0005312 primary ureteric bud 10 36182 -UBERON:0003074 mesonephric duct 9 36183 -UBERON:0005104 anterior mesonephric tubule 9 36184 -UBERON:0005105 posterior mesonephric tubule 9 36185 -UBERON:0005329 mesonephric nephron tubule 9 36186 -UBERON:0005892 mesonephric early distal tubule 9 36187 -UBERON:0006189 mesonephric connecting tubule 9 36188 -UBERON:0006190 mesonephric distal tubule 9 36189 -UBERON:0006192 mesonephric proximal tubule 9 36190 -UBERON:0006364 ureteric bud tip 9 36191 -UBERON:0010534 primitive mesonephric nephron 9 36192 -UBERON:0012238 ureteric bud trunk 9 36193 -UBERON:0005330 mesonephric nephron epithelium 8 36194 -UBERON:0005324 mesonephric macula densa 9 36195 -UBERON:0005327 mesonephric glomerular epithelium 9 36196 -UBERON:0005329 mesonephric nephron tubule 9 36197 -UBERON:0006189 mesonephric connecting tubule 9 36198 -UBERON:0006190 mesonephric distal tubule 9 36199 -UBERON:0006192 mesonephric proximal tubule 9 36200 -UBERON:0005331 mesonephric renal vesicle 8 36201 -UBERON:0005108 metanephric epithelium 7 36202 -UBERON:0005106 metanephric tubule 8 36203 -UBERON:0005146 metanephric nephron tubule 9 36204 -UBERON:0005114 metanephric ascending thin limb 10 36205 -UBERON:0005117 metanephric distal convoluted tubule 10 36206 -UBERON:0005124 metanephric proximal convoluted tubule 10 36207 -UBERON:0005125 metanephric proximal straight tubule 10 36208 -UBERON:0005127 metanephric thick ascending limb 10 36209 -UBERON:0005129 metanephric distal tubule 10 36210 -UBERON:0005130 metanephric loop of Henle 10 36211 -UBERON:0005149 metanephric connecting tubule 10 36212 -UBERON:0005151 metanephric proximal tubule 10 36213 -UBERON:0010535 primitive metanephric nephron 9 36214 -UBERON:0005134 metanephric nephron epithelium 8 36215 -UBERON:0005118 metanephric early distal convoluted tubule 9 36216 -UBERON:0005120 metanephric late distal convoluted tubule 9 36217 -UBERON:0005122 metanephric macula densa 9 36218 -UBERON:0005135 metanephric glomerular epithelium 9 36219 -UBERON:0005136 metanephric glomerular endothelium 10 36220 -UBERON:0005139 metanephric long descending thin limb 9 36221 -UBERON:0005141 metanephric short descending thin limb 9 36222 -UBERON:0005146 metanephric nephron tubule 9 36223 -UBERON:0005114 metanephric ascending thin limb 10 36224 -UBERON:0005117 metanephric distal convoluted tubule 10 36225 -UBERON:0005124 metanephric proximal convoluted tubule 10 36226 -UBERON:0005125 metanephric proximal straight tubule 10 36227 -UBERON:0005127 metanephric thick ascending limb 10 36228 -UBERON:0005129 metanephric distal tubule 10 36229 -UBERON:0005130 metanephric loop of Henle 10 36230 -UBERON:0005149 metanephric connecting tubule 10 36231 -UBERON:0005151 metanephric proximal tubule 10 36232 -UBERON:0005147 metanephric renal vesicle 8 36233 -UBERON:0005170 granulosa cell layer 7 36234 -UBERON:0005295 sex cord 7 36235 -UBERON:0005296 ovary sex cord 8 36236 -UBERON:0005297 testis sex cord 8 36237 -UBERON:0010141 primitive sex cord of indifferent gonad 8 36238 -UBERON:0005310 pronephric nephron tubule 7 36239 -UBERON:0006173 pronephric proximal tubule 8 36240 -UBERON:0006175 pronephric distal tubule 8 36241 -UBERON:0007298 pronephric proximal convoluted tubule 8 36242 -UBERON:0007308 pronephric distal early tubule 8 36243 -UBERON:0009622 pronephric proximal straight tubule 8 36244 -UBERON:0006250 infundibular recess of 3rd ventricle 7 36245 -UBERON:0009129 right atrium endocardium 7 36246 -UBERON:0011007 endocardium of right auricle 8 36247 -UBERON:0011202 urachus epithelium 7 36248 -UBERON:0011921 connecting stalk blood islands 7 36249 -UBERON:0013247 male paramesonephric duct 7 36250 -UBERON:0013248 paradidymis 7 36251 -UBERON:0013249 paroophoron 7 36252 -UBERON:0014706 primitive renal collecting duct system 7 36253 -UBERON:0014781 stomodeal ectoderm 6 36254 -UBERON:0015179 somite boundary epithelium 6 36255 -UBERON:0019304 sensory organ epithelium 6 36256 -UBERON:0003357 epithelium of tongue 7 36257 -UBERON:0006918 parakeratinized epithelium of tongue 8 36258 -UBERON:0006919 tongue squamous epithelium 8 36259 -UBERON:0004650 tongue keratinized epithelium 9 36260 -UBERON:0006916 non-keratinized epithelium of tongue 9 36261 -UBERON:0014452 gustatory epithelium of tongue 8 36262 -UBERON:0019206 tongue papilla epithelium 8 36263 -UBERON:0007625 pigment epithelium of eye 7 36264 -UBERON:0015808 eye epithelium 8 36265 -UBERON:0001772 corneal epithelium 9 36266 -UBERON:0001778 ciliary epithelium 9 36267 -UBERON:0001782 pigmented layer of retina 9 36268 -UBERON:0001803 epithelium of lens 9 36269 -UBERON:0005614 lens anterior epithelium 10 36270 -UBERON:0005615 lens equatorial epithelium 10 36271 -UBERON:0001985 corneal endothelium 9 36272 -UBERON:0002506 iris epithelium 9 36273 -UBERON:0004694 Harderian gland epithelium 9 36274 -UBERON:0004817 lacrimal gland epithelium 9 36275 -UBERON:0005638 anterior chamber epithelium 9 36276 -UBERON:0006763 epithelium of conjunctiva 9 36277 -UBERON:0010294 scleral endothelium 9 36278 -UBERON:0022284 lacrimal gland bud 9 36279 -UBERON:0035034 eyelid epithelium 9 36280 -UBERON:0003844 upper eyelid epithelium 10 36281 -UBERON:0003845 lower eyelid epithelium 10 36282 -UBERON:0015807 ear epithelium 7 36283 -UBERON:0003249 epithelium of otic placode 8 36284 -UBERON:2000225 lateral crista primordium 9 36285 -UBERON:2000411 posterior crista primordium 9 36286 -UBERON:0006937 inner ear epithelium 8 36287 -UBERON:0002223 endolymphatic sac 9 36288 -UBERON:0003238 epithelium of superior semicircular canal 9 36289 -UBERON:0007274 crista of ampulla of anterior semicircular duct of membranous laybrinth 10 36290 -UBERON:0003239 epithelium of posterior semicircular canal 9 36291 -UBERON:0007275 crista of ampulla of posterior semicircular duct of membranous laybrinth 10 36292 -UBERON:2000411 posterior crista primordium 10 36293 -UBERON:0003240 epithelium of lateral semicircular canal 9 36294 -UBERON:0007276 crista of ampulla of lateral semicircular duct of membranous laybrinth 10 36295 -UBERON:2000225 lateral crista primordium 10 36296 -UBERON:0003243 epithelium of cochlear duct 9 36297 -UBERON:0003246 epithelium of endolymphatic sac 9 36298 -UBERON:0003362 epithelium of endolymphatic duct 9 36299 -UBERON:0006932 vestibular epithelium 9 36300 -UBERON:0003241 epithelium of utricle 10 36301 -UBERON:0003242 epithelium of saccule 10 36302 -UBERON:0003363 epithelium of ductus reuniens 10 36303 -UBERON:0005657 crus commune epithelium 10 36304 -UBERON:0006935 crista ampullaris neuroepithelium 10 36305 -UBERON:0007274 crista of ampulla of anterior semicircular duct of membranous laybrinth 11 36306 -UBERON:0007275 crista of ampulla of posterior semicircular duct of membranous laybrinth 11 36307 -UBERON:0007276 crista of ampulla of lateral semicircular duct of membranous laybrinth 11 36308 -UBERON:2002206 macula communis 9 36309 -UBERON:0015813 middle ear epithelium 8 36310 -UBERON:0009647 tympanic membrane epithelium 9 36311 -UBERON:0005042 inner epithelial layer of tympanic membrane 10 36312 -UBERON:0010069 outer epithelial layer of tympanic membrane 10 36313 -UBERON:0010020 tubotympanic recess epithelium 9 36314 -UBERON:0010062 pharyngotympanic tube epithelium 9 36315 -UBERON:0010063 tympanic cavity epithelium 9 36316 -UBERON:0015814 outer ear epithelium 8 36317 -UBERON:0006938 pinna surface epithelium 9 36318 -UBERON:0010065 auditory meatus epithelium 9 36319 -UBERON:0010069 outer epithelial layer of tympanic membrane 9 36320 -UBERON:0019306 nose epithelium 7 36321 -UBERON:0003356 epithelium of nasal septum 8 36322 -UBERON:0003367 epithelium of vomeronasal organ 8 36323 -UBERON:0004692 external naris epithelium 8 36324 -UBERON:0005384 nasal cavity epithelium 8 36325 -UBERON:0001997 olfactory epithelium 9 36326 -UBERON:0005385 nasal cavity respiratory epithelium 9 36327 -UBERON:0009671 nasal fin 9 36328 -UBERON:0006266 nasolacrimal groove 8 36329 -UBERON:0019307 epithelium of external nose 8 36330 -UBERON:2001428 olfactory rosette 8 36331 -UBERON:0034705 developing neuroepithelium 6 36332 -UBERON:0003098 optic stalk 7 36333 -UBERON:0034706 proliferating neuroepithelium 7 36334 -UBERON:0004022 germinal neuroepithelium 8 36335 -UBERON:0004060 neural tube ventricular layer 8 36336 -UBERON:0013160 epithalamus ventricular layer 9 36337 -UBERON:0034710 spinal cord ventricular layer 9 36338 -UBERON:0034707 differentiating neuroepithelium 7 36339 -UBERON:0004061 neural tube mantle layer 8 36340 -UBERON:0005883 neural tube lateral wall mantle layer 9 36341 -UBERON:0009580 diencephalon mantle layer 9 36342 -UBERON:0009581 midbrain mantle layer 9 36343 -UBERON:0009583 spinal cord mantle layer 9 36344 -UBERON:0013159 epithalamus mantle layer 9 36345 -UBERON:0034932 epithelium of biliary system 6 36346 -UBERON:0004820 bile duct epithelium 7 36347 -UBERON:0004822 extrahepatic bile duct epithelium 8 36348 -UBERON:0004823 intrahepatic bile duct epithelium 8 36349 -UBERON:0010081 future common hepatic duct 7 36350 -UBERON:0035036 naris epithelium 6 36351 -UBERON:0004692 external naris epithelium 7 36352 -UBERON:2001389 regeneration epithelium of fin/limb 6 36353 -UBERON:6007424 epithelial furrow 6 36354 -UBERON:6000096 ventral furrow 7 36355 -UBERON:6000097 cephalic furrow 7 36356 -UBERON:0000957 lamina 5 36357 -UBERON:0000119 cell layer 6 36358 -UBERON:0000120 blood brain barrier 7 36359 -UBERON:0000201 endothelial blood brain barrier 8 36360 -UBERON:0000202 glial blood brain barrier 8 36361 -UBERON:0000155 theca cell layer 7 36362 -UBERON:0001031 sheath of Schwann 7 36363 -UBERON:0002076 cuticle of hair 7 36364 -UBERON:0002319 mesangium 7 36365 -UBERON:0003054 roof plate 7 36366 -UBERON:0005502 rhombomere roof plate 8 36367 -UBERON:0005568 rhombomere 1 roof plate 9 36368 -UBERON:0005572 rhombomere 2 roof plate 9 36369 -UBERON:0005575 rhombomere 3 roof plate 9 36370 -UBERON:0005578 rhombomere 4 roof plate 9 36371 -UBERON:0005581 rhombomere 5 roof plate 9 36372 -UBERON:0005584 rhombomere 6 roof plate 9 36373 -UBERON:0005587 rhombomere 7 roof plate 9 36374 -UBERON:0005590 rhombomere 8 roof plate 9 36375 -UBERON:0003065 ciliary marginal zone 7 36376 -UBERON:0003079 floor plate 7 36377 -UBERON:0005500 rhombomere floor plate 8 36378 -UBERON:0005566 rhombomere 1 floor plate 9 36379 -UBERON:0005570 rhombomere 2 floor plate 9 36380 -UBERON:0005573 rhombomere 3 floor plate 9 36381 -UBERON:0005576 rhombomere 4 floor plate 9 36382 -UBERON:0005579 rhombomere 5 floor plate 9 36383 -UBERON:0005582 rhombomere 6 floor plate 9 36384 -UBERON:0005585 rhombomere 7 floor plate 9 36385 -UBERON:0005588 rhombomere 8 floor plate 9 36386 -UBERON:2000887 floor plate neural rod 8 36387 -UBERON:0003209 blood nerve barrier 7 36388 -UBERON:0003210 blood-cerebrospinal fluid barrier 7 36389 -UBERON:0003948 blood-air barrier 7 36390 -UBERON:0004013 egg cylinder 7 36391 -UBERON:0004021 spongiotrophoblast layer 7 36392 -UBERON:0004714 septum pellucidum 7 36393 -UBERON:0005170 granulosa cell layer 7 36394 -UBERON:0007179 basal cell layer of urothelium 7 36395 -UBERON:0007440 stratum intermedium of tooth 7 36396 -UBERON:0009952 dentate gyrus subgranular zone 7 36397 -UBERON:0010404 lateral ventricle subependymal layer 7 36398 -UBERON:0014567 layer of hippocampal field 7 36399 -UBERON:0014560 CA3 stratum lucidum 8 36400 -UBERON:0034810 stratum lucidum of caudal CA3 9 36401 -UBERON:0034840 stratum lucidum of rostral CA3 9 36402 -UBERON:0034870 stratum lucidum of uncal CA3 9 36403 -UBERON:0034798 stratum lacunosum-moleculare of caudal CA1 8 36404 -UBERON:0034799 stratum radiatum of caudal CA1 8 36405 -UBERON:0034800 stratum pyramidale of caudal CA1 8 36406 -UBERON:0034801 stratum oriens of caudal CA1 8 36407 -UBERON:0034803 stratum lacunosum-moleculare of caudal CA2 8 36408 -UBERON:0034804 stratum radiatum of caudal CA2 8 36409 -UBERON:0034805 stratum pyramidale of caudal CA2 8 36410 -UBERON:0034806 stratum oriens of caudal CA2 8 36411 -UBERON:0034808 stratum lacunosum-moleculare of caudal CA3 8 36412 -UBERON:0034809 stratum radiatum of caudal CA3 8 36413 -UBERON:0034811 stratum pyramidale of caudal CA3 8 36414 -UBERON:0034812 stratum oriens of caudal CA3 8 36415 -UBERON:0034828 stratum lacunosum-moleculare of rostral CA1 8 36416 -UBERON:0034829 stratum radiatum of rostral CA1 8 36417 -UBERON:0034830 stratum pyramidale of rostral CA1 8 36418 -UBERON:0034831 stratum oriens of rostral CA1 8 36419 -UBERON:0034833 stratum lacunosum-moleculare of rostral CA2 8 36420 -UBERON:0034834 stratum radiatum of rostral CA2 8 36421 -UBERON:0034835 stratum pyramidale of rostral CA2 8 36422 -UBERON:0034836 stratum oriens of rostral CA2 8 36423 -UBERON:0034838 stratum lacunosum-moleculare of rostral CA3 8 36424 -UBERON:0034839 stratum radiatum of rostral CA3 8 36425 -UBERON:0034841 stratum pyramidale of rostral CA3 8 36426 -UBERON:0034842 stratum oriens of rostral CA3 8 36427 -UBERON:0034858 stratum lacunosum-moleculare of uncal CA1 8 36428 -UBERON:0034859 stratum radiatum of uncal CA1 8 36429 -UBERON:0034860 stratum pyramidale of uncal CA1 8 36430 -UBERON:0034861 stratum oriens of uncal CA1 8 36431 -UBERON:0034863 stratum lacunosum-moleculare of uncal CA2 8 36432 -UBERON:0034864 stratum radiatum of uncal CA2 8 36433 -UBERON:0034865 stratum pyramidale of uncal CA2 8 36434 -UBERON:0034866 stratum oriens of uncal CA2 8 36435 -UBERON:0034868 stratum lacunosum-moleculare of uncal CA3 8 36436 -UBERON:0034869 stratum radiatum of uncal CA3 8 36437 -UBERON:0034871 stratum pyramidale of uncal CA3 8 36438 -UBERON:0034872 stratum oriens of uncal CA3 8 36439 -UBERON:0014914 haemolymphatic fluid-testis barrier 7 36440 -UBERON:0036185 Sertoli cell barrier 8 36441 -UBERON:0001782 pigmented layer of retina 6 36442 -UBERON:0004825 dental lamina 6 36443 -UBERON:0015840 incisor dental lamina 7 36444 -UBERON:0015841 molar dental lamina 7 36445 -UBERON:0013397 stratum argenteum of choroid 6 36446 -UBERON:0015169 tapetum 6 36447 -UBERON:0004868 tapetum lucidum of camera-type eye 7 36448 -UBERON:0010244 choroid tapetum lucidum 8 36449 -UBERON:0010246 choroidal guanine tapetum 9 36450 -UBERON:0010247 choroidal tapetum cellulosum 9 36451 -UBERON:0010248 choroidal tapetum fibrosum 9 36452 -UBERON:0010245 retinal tapetum lucidum 8 36453 -UBERON:0001758 periodontium 5 36454 -UBERON:0002283 nail matrix 5 36455 -UBERON:0002371 bone marrow 5 36456 -UBERON:0000332 yellow bone marrow 6 36457 -UBERON:0000361 red bone marrow 6 36458 -UBERON:0002384 connective tissue 5 36459 -UBERON:0002222 perichondrium 6 36460 -UBERON:0002242 nucleus pulposus 6 36461 -UBERON:0002521 elastic tissue 6 36462 -UBERON:0003611 respiratory system elastic tissue 7 36463 -UBERON:0003615 lung elastic tissue 8 36464 -UBERON:0003616 bronchus elastic tissue 8 36465 -UBERON:0003617 trachea elastic tissue 8 36466 -UBERON:0003613 cardiovascular system elastic tissue 7 36467 -UBERON:0003610 heart elastic tissue 8 36468 -UBERON:0003614 blood vessel elastic tissue 8 36469 -UBERON:0003609 aorta elastic tissue 9 36470 -UBERON:0011392 blood vessel internal elastic membrane 9 36471 -UBERON:0015433 blood vessel external elastic membrane 9 36472 -UBERON:0003967 cutaneous elastic tissue 7 36473 -UBERON:0015764 dense regular elastic tissue 7 36474 -UBERON:0036186 fibroelastic connective tissue 7 36475 -UBERON:0003566 head connective tissue 6 36476 -UBERON:0001798 vitreous body 7 36477 -UBERON:0001823 nasal cartilage 7 36478 -UBERON:0003407 cartilage of nasal septum 8 36479 -UBERON:0006332 nasal capsule 8 36480 -UBERON:3000316 nasal opening 9 36481 -UBERON:3000160 fenestra dorsalis nasi 10 36482 -UBERON:3000161 fenestra endochoanalis 10 36483 -UBERON:3000162 fenestra endonarina communis 10 36484 -UBERON:3000164 fenestra lateralis nasi 10 36485 -UBERON:3000166 fenestra nasobasalis 10 36486 -UBERON:3000167 fenestra nasolateralis 10 36487 -UBERON:3000170 fenestra precerebralis 10 36488 -UBERON:3000171 fenestra prechoanalis 10 36489 -UBERON:3000189 foramen orbitonasale laterale 10 36490 -UBERON:3000190 foramen orbitonasale mediale 10 36491 -UBERON:3000291 medial orbitonasal foramen 10 36492 -UBERON:3000333 olfactory foramen 10 36493 -UBERON:0007818 major alar cartilage 8 36494 -UBERON:0007819 minor alar cartilage 8 36495 -UBERON:0007820 accessory nasal cartilage 8 36496 -UBERON:0007821 lateral nasal cartilage 8 36497 -UBERON:0007822 vomeronasal cartilage 8 36498 -UBERON:3000002 alary cartilage 8 36499 -UBERON:3000068 cartilago ectochoanalis 8 36500 -UBERON:3000069 cartilago infranarina 8 36501 -UBERON:3000079 cartilago retronarina 8 36502 -UBERON:3000234 inferior prenasal cartilage 8 36503 -UBERON:3000290 medial inferior prenasal cartilage 8 36504 -UBERON:3000329 oblique cartilage 8 36505 -UBERON:3000381 paranasal commissure 8 36506 -UBERON:3000389 paries nasi 8 36507 -UBERON:3000434 planum antorbitale 8 36508 -UBERON:3000437 planum conchale 8 36509 -UBERON:3000438 planum internasale 8 36510 -UBERON:3000586 superior prenasal cartilage 8 36511 -UBERON:3010827 anterior prenasal cartilage 8 36512 -UBERON:0003581 eyelid connective tissue 7 36513 -UBERON:0009648 eyelid subcutaneous connective tissue 8 36514 -UBERON:0013120 eyelid submuscular connective tissue 8 36515 -UBERON:0003952 anterior stroma of cornea 7 36516 -UBERON:0003953 posterior stroma of cornea 7 36517 -UBERON:0006671 orbital fat pad 7 36518 -UBERON:0007355 bony part of pharyngotympanic tube 7 36519 -UBERON:0011346 palatine raphe 7 36520 -UBERON:0011347 raphe of hard palate 8 36521 -UBERON:0011348 raphe of soft palate 8 36522 -UBERON:0011349 pterygomandibular raphe 7 36523 -UBERON:0012167 buccal fat pad 7 36524 -UBERON:0013177 dorsal bursa 7 36525 -UBERON:0013178 anterior dorsal bursa 8 36526 -UBERON:0013179 posterior dorsal bursa 8 36527 -UBERON:0015853 dental pulp of median incisor tusk 7 36528 -UBERON:0035108 temporalis fascia 7 36529 -UBERON:0003568 neck connective tissue 6 36530 -UBERON:0013491 cervical fascia 7 36531 -UBERON:0013489 superficial cervical fascia 8 36532 -UBERON:0013490 deep cervical fascia 8 36533 -UBERON:0013492 prevertebral cervical fascia 8 36534 -UBERON:0003570 respiratory system connective tissue 6 36535 -UBERON:0003580 lower respiratory tract connective tissue 7 36536 -UBERON:0000114 lung connective tissue 8 36537 -UBERON:0003591 lobar bronchus connective tissue 9 36538 -UBERON:0003615 lung elastic tissue 9 36539 -UBERON:0003571 trachea connective tissue 8 36540 -UBERON:0003617 trachea elastic tissue 9 36541 -UBERON:0009644 trachea non-cartilage connective tissue 9 36542 -UBERON:0003592 bronchus connective tissue 8 36543 -UBERON:0003590 main bronchus connective tissue 9 36544 -UBERON:0003591 lobar bronchus connective tissue 9 36545 -UBERON:0003616 bronchus elastic tissue 9 36546 -UBERON:0003582 nasopharynx connective tissue 7 36547 -UBERON:0003583 larynx connective tissue 7 36548 -UBERON:0001741 corniculate cartilage 8 36549 -UBERON:0006326 base of arytenoid 8 36550 -UBERON:0006494 apex of arytenoid 8 36551 -UBERON:0011157 cuneiform cartilage 8 36552 -UBERON:0003611 respiratory system elastic tissue 7 36553 -UBERON:0003615 lung elastic tissue 8 36554 -UBERON:0003616 bronchus elastic tissue 8 36555 -UBERON:0003617 trachea elastic tissue 8 36556 -UBERON:0006670 central tendon of diaphragm 7 36557 -UBERON:0011345 pharyngeal raphe 7 36558 -UBERON:0003576 hip connective tissue 6 36559 -UBERON:0003579 shoulder connective tissue 6 36560 -UBERON:0012118 infraspinatus tendon 7 36561 -UBERON:0014396 interscapular fat pad 7 36562 -UBERON:0003584 mammary gland connective tissue 6 36563 -UBERON:0004180 mammary gland fat 7 36564 -UBERON:0012282 mammary fat pad 8 36565 -UBERON:0003585 dermis connective tissue 6 36566 -UBERON:0003426 dermis adipose tissue 7 36567 -UBERON:4000104 ganoine 7 36568 -UBERON:4000107 elasmodine 7 36569 -UBERON:0003586 trunk connective tissue 6 36570 -UBERON:0003837 thoracic segment connective tissue 7 36571 -UBERON:0000114 lung connective tissue 8 36572 -UBERON:0003591 lobar bronchus connective tissue 9 36573 -UBERON:0003615 lung elastic tissue 9 36574 -UBERON:0000398 cartilage tissue of sternum 8 36575 -UBERON:0006430 xiphoid cartilage 9 36576 -UBERON:0003572 chest connective tissue 8 36577 -UBERON:0003610 heart elastic tissue 8 36578 -UBERON:0004292 cardiac skeleton 8 36579 -UBERON:0006008 fibrous ring of heart 8 36580 -UBERON:0005991 aortic valve anulus 9 36581 -UBERON:0005993 pulmonary valve anulus 9 36582 -UBERON:0005995 mitral valve anulus 9 36583 -UBERON:0005997 tricuspid valve anulus 9 36584 -UBERON:0006431 xiphoid process bone 8 36585 -UBERON:0006670 central tendon of diaphragm 8 36586 -UBERON:0011897 cardiac endomysium 8 36587 -UBERON:0015129 epicardial fat 8 36588 -UBERON:0003838 abdominal segment connective tissue 7 36589 -UBERON:0003567 abdomen connective tissue 8 36590 -UBERON:0002015 kidney capsule 9 36591 -UBERON:0005137 metanephric capsule 10 36592 -UBERON:0006170 mesonephric capsule 10 36593 -UBERON:0007808 adipose tissue of abdominal region 9 36594 -UBERON:0003427 abdominal fat pad 10 36595 -UBERON:0010411 retroperitoneal fat pad 11 36596 -UBERON:0010414 omental fat pad 12 36597 -UBERON:0013705 fascia of Scarpa 11 36598 -UBERON:0014464 renal fat pad 11 36599 -UBERON:0015142 falciform fat 11 36600 -UBERON:0014454 visceral abdominal adipose tissue 10 36601 -UBERON:0014455 subcutaneous abdominal adipose tissue 10 36602 -UBERON:0013493 abdominal fascia 9 36603 -UBERON:0007809 fascia of Camper 10 36604 -UBERON:0016851 renal fascia 10 36605 -UBERON:0003594 pelvis connective tissue 8 36606 -UBERON:0010410 inguinal fat pad 8 36607 -UBERON:0015454 pancreatic fat pad 7 36608 -UBERON:0003587 limb connective tissue 6 36609 -UBERON:0003588 forelimb connective tissue 7 36610 -UBERON:0003573 arm connective tissue 8 36611 -UBERON:0003574 elbow connective tissue 9 36612 -UBERON:0004268 lower arm connective tissue 9 36613 -UBERON:0016425 epiphyseal plate of radius 10 36614 -UBERON:0004269 upper arm connective tissue 9 36615 -UBERON:0004109 cortex of humerus 10 36616 -UBERON:0003598 manus connective tissue 8 36617 -UBERON:0003575 wrist connective tissue 9 36618 -UBERON:0016496 tendon of palmaris longus 10 36619 -UBERON:0003597 manual digit connective tissue 9 36620 -UBERON:0005809 cortex of manus bone 9 36621 -UBERON:0012119 vinculum tendon of wing 8 36622 -UBERON:0003589 hindlimb connective tissue 7 36623 -UBERON:0003569 leg connective tissue 8 36624 -UBERON:0003577 knee connective tissue 9 36625 -UBERON:0016400 infrapatellar fat pad 10 36626 -UBERON:0004266 upper leg connective tissue 9 36627 -UBERON:0003669 fascia lata 10 36628 -UBERON:0012283 femoral fat pad 10 36629 -UBERON:0004270 lower leg connective tissue 9 36630 -UBERON:0000313 portion of cartilage tissue in tibia 10 36631 -UBERON:0003701 calcaneal tendon 10 36632 -UBERON:0011971 calcaneofibular ligament 11 36633 -UBERON:0003595 pes connective tissue 8 36634 -UBERON:0003578 pedal digit connective tissue 9 36635 -UBERON:0003596 ankle connective tissue 9 36636 -UBERON:0014848 tendon of quadriceps femoris 8 36637 -UBERON:0015791 digit connective tissue 7 36638 -UBERON:0003578 pedal digit connective tissue 8 36639 -UBERON:0003597 manual digit connective tissue 8 36640 -UBERON:0003593 thoracic cavity connective tissue 6 36641 -UBERON:0015458 mediastinal fat pad 7 36642 -UBERON:0003599 tail connective tissue 6 36643 -UBERON:0018132 tail fat pad 7 36644 -UBERON:0035096 fascia of tail 7 36645 -UBERON:0004267 back connective tissue 6 36646 -UBERON:0004755 skeletal tissue 6 36647 -UBERON:0002418 cartilage tissue 7 36648 -UBERON:0000398 cartilage tissue of sternum 8 36649 -UBERON:0006430 xiphoid cartilage 9 36650 -UBERON:0001823 nasal cartilage 8 36651 -UBERON:0003407 cartilage of nasal septum 9 36652 -UBERON:0006332 nasal capsule 9 36653 -UBERON:3000316 nasal opening 10 36654 -UBERON:3000160 fenestra dorsalis nasi 11 36655 -UBERON:3000161 fenestra endochoanalis 11 36656 -UBERON:3000162 fenestra endonarina communis 11 36657 -UBERON:3000164 fenestra lateralis nasi 11 36658 -UBERON:3000166 fenestra nasobasalis 11 36659 -UBERON:3000167 fenestra nasolateralis 11 36660 -UBERON:3000170 fenestra precerebralis 11 36661 -UBERON:3000171 fenestra prechoanalis 11 36662 -UBERON:3000189 foramen orbitonasale laterale 11 36663 -UBERON:3000190 foramen orbitonasale mediale 11 36664 -UBERON:3000291 medial orbitonasal foramen 11 36665 -UBERON:3000333 olfactory foramen 11 36666 -UBERON:0007818 major alar cartilage 9 36667 -UBERON:0007819 minor alar cartilage 9 36668 -UBERON:0007820 accessory nasal cartilage 9 36669 -UBERON:0007821 lateral nasal cartilage 9 36670 -UBERON:0007822 vomeronasal cartilage 9 36671 -UBERON:3000002 alary cartilage 9 36672 -UBERON:3000068 cartilago ectochoanalis 9 36673 -UBERON:3000069 cartilago infranarina 9 36674 -UBERON:3000079 cartilago retronarina 9 36675 -UBERON:3000234 inferior prenasal cartilage 9 36676 -UBERON:3000290 medial inferior prenasal cartilage 9 36677 -UBERON:3000329 oblique cartilage 9 36678 -UBERON:3000381 paranasal commissure 9 36679 -UBERON:3000389 paries nasi 9 36680 -UBERON:3000434 planum antorbitale 9 36681 -UBERON:3000437 planum conchale 9 36682 -UBERON:3000438 planum internasale 9 36683 -UBERON:3000586 superior prenasal cartilage 9 36684 -UBERON:3010827 anterior prenasal cartilage 9 36685 -UBERON:0001994 hyaline cartilage tissue 8 36686 -UBERON:0002516 epiphyseal plate 9 36687 -UBERON:0016425 epiphyseal plate of radius 10 36688 -UBERON:0006326 base of arytenoid 9 36689 -UBERON:0010996 articular cartilage of joint 9 36690 -UBERON:4000108 non-mineralized hyaline cartilage tissue 9 36691 -UBERON:4000109 mineralized hyaline cartilage tissue 9 36692 -UBERON:0001995 fibrocartilage 8 36693 -UBERON:0006444 annulus fibrosus 9 36694 -UBERON:0004715 annulus fibrosus disci intervertebralis 10 36695 -UBERON:0006008 fibrous ring of heart 10 36696 -UBERON:0005991 aortic valve anulus 11 36697 -UBERON:0005993 pulmonary valve anulus 11 36698 -UBERON:0005995 mitral valve anulus 11 36699 -UBERON:0005997 tricuspid valve anulus 11 36700 -UBERON:0009013 white fibrocartilage 9 36701 -UBERON:0034712 yellow fibrocartilage 9 36702 -UBERON:0004129 growth plate cartilage 8 36703 -UBERON:0004858 cellular cartilage 8 36704 -UBERON:0006775 zone of epiphyseal plate 8 36705 -UBERON:0006771 long bone epiphyseal plate proliferative zone 9 36706 -UBERON:0006772 long bone epiphyseal plate hypertrophic zone 9 36707 -UBERON:0006773 long bone epiphyseal plate ossification zone 9 36708 -UBERON:0007389 paired limb/fin cartilage 8 36709 -UBERON:0007390 pectoral appendage cartilage tissue 9 36710 -UBERON:0016425 epiphyseal plate of radius 10 36711 -UBERON:2001456 pectoral fin endoskeletal disc 10 36712 -UBERON:0007391 pelvic appendage cartilage tissue 9 36713 -UBERON:0000313 portion of cartilage tissue in tibia 10 36714 -UBERON:0008187 hypertrophic cartilage zone 8 36715 -UBERON:0011589 non-mineralized cartilage tissue 8 36716 -UBERON:0001996 elastic cartilage tissue 9 36717 -UBERON:0001741 corniculate cartilage 10 36718 -UBERON:0006494 apex of arytenoid 10 36719 -UBERON:0011157 cuneiform cartilage 10 36720 -UBERON:4000108 non-mineralized hyaline cartilage tissue 9 36721 -UBERON:0018352 prismatic cartilage 8 36722 -UBERON:0034938 mucocartilage tissue 8 36723 -UBERON:4000086 secondary cartilage tissue 8 36724 -UBERON:4000088 mineralized cartilage tissue 8 36725 -UBERON:4000109 mineralized hyaline cartilage tissue 9 36726 -UBERON:0002481 bone tissue 7 36727 -UBERON:0001439 compact bone tissue 8 36728 -UBERON:0004109 cortex of humerus 9 36729 -UBERON:0005809 cortex of manus bone 9 36730 -UBERON:0016422 compact bone of long bone 9 36731 -UBERON:0016423 compact bone of diaphysis 9 36732 -UBERON:0002482 lamellar bone 8 36733 -UBERON:0002483 trabecular bone tissue 8 36734 -UBERON:0004763 endochondral bone tissue 8 36735 -UBERON:0004764 intramembranous bone tissue 8 36736 -UBERON:0005808 bone tissue of long bone 8 36737 -UBERON:0004109 cortex of humerus 9 36738 -UBERON:0004400 bone tissue of epiphysis 9 36739 -UBERON:0004401 bone tissue of distal epiphysis 10 36740 -UBERON:0004402 bone tissue of proximal epiphysis 10 36741 -UBERON:0016422 compact bone of long bone 9 36742 -UBERON:0016423 compact bone of diaphysis 9 36743 -UBERON:0006431 xiphoid process bone 8 36744 -UBERON:0007355 bony part of pharyngotympanic tube 8 36745 -UBERON:0008883 osteoid 8 36746 -UBERON:4000115 mineralized bone tissue 8 36747 -UBERON:4000118 cellular bone tissue 9 36748 -UBERON:4000122 acellular bone tissue 9 36749 -UBERON:0008269 nacre 7 36750 -UBERON:0010365 odontoid tissue 7 36751 -UBERON:0001751 dentine 8 36752 -UBERON:0001752 enamel 8 36753 -UBERON:0001753 cementum 8 36754 -UBERON:0011587 pre-dentine 8 36755 -UBERON:0011588 pre-enamel 8 36756 -UBERON:0011688 pre-enameloid 8 36757 -UBERON:0011692 enameloid 8 36758 -UBERON:4000087 cosmine 8 36759 -UBERON:4000097 orthodentine 8 36760 -UBERON:4000102 osteodentine 8 36761 -UBERON:4000104 ganoine 8 36762 -UBERON:4000106 vasodentine 8 36763 -UBERON:4000107 elasmodine 8 36764 -UBERON:4000123 odontode tissue 8 36765 -UBERON:4300212 acrodin 8 36766 -UBERON:4000013 mineralized skeletal tissue 7 36767 -UBERON:0001751 dentine 8 36768 -UBERON:0001752 enamel 8 36769 -UBERON:0011692 enameloid 8 36770 -UBERON:4000109 mineralized hyaline cartilage tissue 8 36771 -UBERON:4000115 mineralized bone tissue 8 36772 -UBERON:4000118 cellular bone tissue 9 36773 -UBERON:4000122 acellular bone tissue 9 36774 -UBERON:4000077 non-mineralized chondroid tissue 7 36775 -UBERON:4000078 chondroid tissue 7 36776 -UBERON:0004857 skeletal muscle connective tissue 6 36777 -UBERON:0007845 regular connective tissue 6 36778 -UBERON:0007846 dense regular connective tissue 7 36779 -UBERON:0000043 tendon 8 36780 -UBERON:0003701 calcaneal tendon 9 36781 -UBERON:0011971 calcaneofibular ligament 10 36782 -UBERON:0006239 future central tendon 9 36783 -UBERON:0006670 central tendon of diaphragm 9 36784 -UBERON:0008188 tendon of biceps brachii 9 36785 -UBERON:0008192 tendon of triceps brachii 9 36786 -UBERON:0012118 infraspinatus tendon 9 36787 -UBERON:0012119 vinculum tendon of wing 9 36788 -UBERON:0012120 vinculum of tendon 9 36789 -UBERON:0014848 tendon of quadriceps femoris 9 36790 -UBERON:0016496 tendon of palmaris longus 9 36791 -UBERON:0034988 tendon of obturator internus 9 36792 -UBERON:0008982 fascia 8 36793 -UBERON:0011236 deep fascia 9 36794 -UBERON:0003669 fascia lata 10 36795 -UBERON:0011237 visceral fascia 9 36796 -UBERON:0013491 cervical fascia 9 36797 -UBERON:0013489 superficial cervical fascia 10 36798 -UBERON:0013490 deep cervical fascia 10 36799 -UBERON:0013492 prevertebral cervical fascia 10 36800 -UBERON:0013493 abdominal fascia 9 36801 -UBERON:0007809 fascia of Camper 10 36802 -UBERON:0016851 renal fascia 10 36803 -UBERON:0013718 dartos muscle 9 36804 -UBERON:0013719 dartos muscle of scrotum 10 36805 -UBERON:0013720 dartos muscle of labia majora 10 36806 -UBERON:0034688 spermatic fascia 9 36807 -UBERON:0034690 external spermatic fascia 10 36808 -UBERON:0034691 internal spermatic fascia 10 36809 -UBERON:0035096 fascia of tail 9 36810 -UBERON:0035108 temporalis fascia 9 36811 -UBERON:0015764 dense regular elastic tissue 7 36812 -UBERON:0007862 perichordal tissue 6 36813 -UBERON:0008304 inner chondrogenic layer of perichondrium 6 36814 -UBERON:0008305 outer fibrous layer of perichondrium 6 36815 -UBERON:0010211 granulation tissue 6 36816 -UBERON:0011350 mylohyoid raphe 6 36817 -UBERON:0011675 perichordal ring 6 36818 -UBERON:0011821 irregular connective tissue 6 36819 -UBERON:0011822 dense irregular connective tissue 7 36820 -UBERON:0000121 perineurium 8 36821 -UBERON:0000124 epineurium 8 36822 -UBERON:0001013 adipose tissue 8 36823 -UBERON:0001347 white adipose tissue 9 36824 -UBERON:0001348 brown adipose tissue 9 36825 -UBERON:0002190 subcutaneous adipose tissue 9 36826 -UBERON:0009754 blubber 10 36827 -UBERON:0013488 panniculus adiposus 10 36828 -UBERON:0014455 subcutaneous abdominal adipose tissue 10 36829 -UBERON:0003426 dermis adipose tissue 9 36830 -UBERON:0003916 fat pad 9 36831 -UBERON:0003427 abdominal fat pad 10 36832 -UBERON:0010411 retroperitoneal fat pad 11 36833 -UBERON:0010414 omental fat pad 12 36834 -UBERON:0013705 fascia of Scarpa 11 36835 -UBERON:0014464 renal fat pad 11 36836 -UBERON:0015142 falciform fat 11 36837 -UBERON:0003428 gonadal fat pad 10 36838 -UBERON:0018131 periovarian fat pad 11 36839 -UBERON:0006671 orbital fat pad 10 36840 -UBERON:0010410 inguinal fat pad 10 36841 -UBERON:0010412 epididymal fat pad 10 36842 -UBERON:0012167 buccal fat pad 10 36843 -UBERON:0012282 mammary fat pad 10 36844 -UBERON:0012283 femoral fat pad 10 36845 -UBERON:0014394 uterine fat pad 10 36846 -UBERON:0010413 parametrial fat pad 11 36847 -UBERON:0014396 interscapular fat pad 10 36848 -UBERON:0015143 mesenteric fat pad 10 36849 -UBERON:0010413 parametrial fat pad 11 36850 -UBERON:0015142 falciform fat 11 36851 -UBERON:0015454 pancreatic fat pad 10 36852 -UBERON:0015458 mediastinal fat pad 10 36853 -UBERON:0015477 axillary fat pad 10 36854 -UBERON:0016400 infrapatellar fat pad 10 36855 -UBERON:0018132 tail fat pad 10 36856 -UBERON:0004180 mammary gland fat 9 36857 -UBERON:0012282 mammary fat pad 10 36858 -UBERON:0005405 pararenal fat 9 36859 -UBERON:0005406 perirenal fat 9 36860 -UBERON:0007808 adipose tissue of abdominal region 9 36861 -UBERON:0003427 abdominal fat pad 10 36862 -UBERON:0010411 retroperitoneal fat pad 11 36863 -UBERON:0010414 omental fat pad 12 36864 -UBERON:0013705 fascia of Scarpa 11 36865 -UBERON:0014464 renal fat pad 11 36866 -UBERON:0015142 falciform fat 11 36867 -UBERON:0014454 visceral abdominal adipose tissue 10 36868 -UBERON:0014455 subcutaneous abdominal adipose tissue 10 36869 -UBERON:0013177 dorsal bursa 9 36870 -UBERON:0013178 anterior dorsal bursa 10 36871 -UBERON:0013179 posterior dorsal bursa 10 36872 -UBERON:0019143 intramuscular adipose tissue 9 36873 -UBERON:0035818 visceral fat 9 36874 -UBERON:0035814 pericardial fat 10 36875 -UBERON:0015129 epicardial fat 11 36876 -UBERON:0035815 paracardial fat 11 36877 -UBERON:0011824 fibrous connective tissue 8 36878 -UBERON:0002015 kidney capsule 9 36879 -UBERON:0005137 metanephric capsule 10 36880 -UBERON:0006170 mesonephric capsule 10 36881 -UBERON:0018135 fibrocollagenous connective tissue 9 36882 -UBERON:0036186 fibroelastic connective tissue 9 36883 -UBERON:0011899 epimysium 8 36884 -UBERON:0011900 perimysium 8 36885 -UBERON:0015130 connective tissue of prostate gland 8 36886 -UBERON:0015131 subepithelial connective tissue of prostatic gland 9 36887 -UBERON:0011825 loose connective tissue 7 36888 -UBERON:0001754 dental pulp 8 36889 -UBERON:0015837 incisor dental pulp 9 36890 -UBERON:0015853 dental pulp of median incisor tusk 10 36891 -UBERON:0015838 molar dental pulp 9 36892 -UBERON:0001798 vitreous body 8 36893 -UBERON:0006804 reticular tissue 8 36894 -UBERON:0000123 endoneurium 9 36895 -UBERON:0011895 endomysium 9 36896 -UBERON:0011896 smooth muscle endomysium 10 36897 -UBERON:0011897 cardiac endomysium 10 36898 -UBERON:0011898 skeletal muscle endomysium 10 36899 -UBERON:0006815 areolar connective tissue 8 36900 -UBERON:0035438 mucoid tissue 8 36901 -UBERON:0011823 dense connective tissue 6 36902 -UBERON:0007846 dense regular connective tissue 7 36903 -UBERON:0000043 tendon 8 36904 -UBERON:0003701 calcaneal tendon 9 36905 -UBERON:0011971 calcaneofibular ligament 10 36906 -UBERON:0006239 future central tendon 9 36907 -UBERON:0006670 central tendon of diaphragm 9 36908 -UBERON:0008188 tendon of biceps brachii 9 36909 -UBERON:0008192 tendon of triceps brachii 9 36910 -UBERON:0012118 infraspinatus tendon 9 36911 -UBERON:0012119 vinculum tendon of wing 9 36912 -UBERON:0012120 vinculum of tendon 9 36913 -UBERON:0014848 tendon of quadriceps femoris 9 36914 -UBERON:0016496 tendon of palmaris longus 9 36915 -UBERON:0034988 tendon of obturator internus 9 36916 -UBERON:0008982 fascia 8 36917 -UBERON:0011236 deep fascia 9 36918 -UBERON:0003669 fascia lata 10 36919 -UBERON:0011237 visceral fascia 9 36920 -UBERON:0013491 cervical fascia 9 36921 -UBERON:0013489 superficial cervical fascia 10 36922 -UBERON:0013490 deep cervical fascia 10 36923 -UBERON:0013492 prevertebral cervical fascia 10 36924 -UBERON:0013493 abdominal fascia 9 36925 -UBERON:0007809 fascia of Camper 10 36926 -UBERON:0016851 renal fascia 10 36927 -UBERON:0013718 dartos muscle 9 36928 -UBERON:0013719 dartos muscle of scrotum 10 36929 -UBERON:0013720 dartos muscle of labia majora 10 36930 -UBERON:0034688 spermatic fascia 9 36931 -UBERON:0034690 external spermatic fascia 10 36932 -UBERON:0034691 internal spermatic fascia 10 36933 -UBERON:0035096 fascia of tail 9 36934 -UBERON:0035108 temporalis fascia 9 36935 -UBERON:0011822 dense irregular connective tissue 7 36936 -UBERON:0000121 perineurium 8 36937 -UBERON:0000124 epineurium 8 36938 -UBERON:0001013 adipose tissue 8 36939 -UBERON:0001347 white adipose tissue 9 36940 -UBERON:0001348 brown adipose tissue 9 36941 -UBERON:0002190 subcutaneous adipose tissue 9 36942 -UBERON:0009754 blubber 10 36943 -UBERON:0013488 panniculus adiposus 10 36944 -UBERON:0014455 subcutaneous abdominal adipose tissue 10 36945 -UBERON:0003426 dermis adipose tissue 9 36946 -UBERON:0003916 fat pad 9 36947 -UBERON:0003427 abdominal fat pad 10 36948 -UBERON:0010411 retroperitoneal fat pad 11 36949 -UBERON:0010414 omental fat pad 12 36950 -UBERON:0013705 fascia of Scarpa 11 36951 -UBERON:0014464 renal fat pad 11 36952 -UBERON:0015142 falciform fat 11 36953 -UBERON:0003428 gonadal fat pad 10 36954 -UBERON:0018131 periovarian fat pad 11 36955 -UBERON:0006671 orbital fat pad 10 36956 -UBERON:0010410 inguinal fat pad 10 36957 -UBERON:0010412 epididymal fat pad 10 36958 -UBERON:0012167 buccal fat pad 10 36959 -UBERON:0012282 mammary fat pad 10 36960 -UBERON:0012283 femoral fat pad 10 36961 -UBERON:0014394 uterine fat pad 10 36962 -UBERON:0010413 parametrial fat pad 11 36963 -UBERON:0014396 interscapular fat pad 10 36964 -UBERON:0015143 mesenteric fat pad 10 36965 -UBERON:0010413 parametrial fat pad 11 36966 -UBERON:0015142 falciform fat 11 36967 -UBERON:0015454 pancreatic fat pad 10 36968 -UBERON:0015458 mediastinal fat pad 10 36969 -UBERON:0015477 axillary fat pad 10 36970 -UBERON:0016400 infrapatellar fat pad 10 36971 -UBERON:0018132 tail fat pad 10 36972 -UBERON:0004180 mammary gland fat 9 36973 -UBERON:0012282 mammary fat pad 10 36974 -UBERON:0005405 pararenal fat 9 36975 -UBERON:0005406 perirenal fat 9 36976 -UBERON:0007808 adipose tissue of abdominal region 9 36977 -UBERON:0003427 abdominal fat pad 10 36978 -UBERON:0010411 retroperitoneal fat pad 11 36979 -UBERON:0010414 omental fat pad 12 36980 -UBERON:0013705 fascia of Scarpa 11 36981 -UBERON:0014464 renal fat pad 11 36982 -UBERON:0015142 falciform fat 11 36983 -UBERON:0014454 visceral abdominal adipose tissue 10 36984 -UBERON:0014455 subcutaneous abdominal adipose tissue 10 36985 -UBERON:0013177 dorsal bursa 9 36986 -UBERON:0013178 anterior dorsal bursa 10 36987 -UBERON:0013179 posterior dorsal bursa 10 36988 -UBERON:0019143 intramuscular adipose tissue 9 36989 -UBERON:0035818 visceral fat 9 36990 -UBERON:0035814 pericardial fat 10 36991 -UBERON:0015129 epicardial fat 11 36992 -UBERON:0035815 paracardial fat 11 36993 -UBERON:0011824 fibrous connective tissue 8 36994 -UBERON:0002015 kidney capsule 9 36995 -UBERON:0005137 metanephric capsule 10 36996 -UBERON:0006170 mesonephric capsule 10 36997 -UBERON:0018135 fibrocollagenous connective tissue 9 36998 -UBERON:0036186 fibroelastic connective tissue 9 36999 -UBERON:0011899 epimysium 8 37000 -UBERON:0011900 perimysium 8 37001 -UBERON:0015130 connective tissue of prostate gland 8 37002 -UBERON:0015131 subepithelial connective tissue of prostatic gland 9 37003 -UBERON:0035845 enthesis 6 37004 -UBERON:0035846 fibrous enthesis 7 37005 -UBERON:0035847 fibrocartilage enthesis 7 37006 -UBERON:3000571 specialized connective tissue 6 37007 -UBERON:3010529 ovisac 6 37008 -UBERON:4000053 vacuolated notochordal tissue 6 37009 -UBERON:4300153 Sharpey's fiber 6 37010 -UBERON:0002385 muscle tissue 5 37011 -UBERON:0001135 smooth muscle tissue 6 37012 -UBERON:0002033 arrector muscle of hair 7 37013 -UBERON:0011940 arrector pili muscle of vibrissa 8 37014 -UBERON:0002112 smooth muscle of esophagus 7 37015 -UBERON:0004648 esophagus muscularis mucosa 8 37016 -UBERON:0035844 lower esophagus muscularis mucosa 9 37017 -UBERON:0003386 smooth muscle of eye 7 37018 -UBERON:0001605 ciliary muscle 8 37019 -UBERON:0004234 iris smooth muscle 8 37020 -UBERON:0001607 sphincter pupillae 9 37021 -UBERON:0001608 dilatator pupillae 9 37022 -UBERON:0010379 superior tarsal muscle 8 37023 -UBERON:0015751 inferior tarsal muscle 8 37024 -UBERON:0004219 urethra smooth muscle layer 7 37025 -UBERON:0004223 vagina smooth muscle 7 37026 -UBERON:0004225 respiratory system smooth muscle 7 37027 -UBERON:0004233 lower respiratory tract smooth muscle 8 37028 -UBERON:0003387 smooth muscle of trachea 9 37029 -UBERON:0006680 trachealis 10 37030 -UBERON:0004242 bronchus smooth muscle 9 37031 -UBERON:0004241 main bronchus smooth muscle 10 37032 -UBERON:0004515 smooth muscle tissue of bronchiole 10 37033 -UBERON:0004516 smooth muscle tissue of terminal bronchiole 11 37034 -UBERON:0004517 smooth muscle tissue of respiratory bronchiole 11 37035 -UBERON:0004895 alveolar smooth muscle 9 37036 -UBERON:0004296 respiratory system lymphatic vessel smooth muscle 8 37037 -UBERON:0004297 respiratory system blood vessel smooth muscle 8 37038 -UBERON:0012416 respiratory system arterial smooth muscle 9 37039 -UBERON:0004226 gastrointestinal system smooth muscle 7 37040 -UBERON:0004221 intestine smooth muscle 8 37041 -UBERON:0001240 muscularis mucosae of intestine 9 37042 -UBERON:0001210 muscularis mucosae of small intestine 10 37043 -UBERON:0012494 muscularis mucosae of duodenum 11 37044 -UBERON:0016519 muscularis mucosae of jejunum 11 37045 -UBERON:0001239 muscularis mucosae of large intestine 10 37046 -UBERON:0007178 muscularis mucosae of colon 11 37047 -UBERON:0012497 muscularis mucosae of rectum 11 37048 -UBERON:0004220 large intestine smooth muscle 9 37049 -UBERON:0001239 muscularis mucosae of large intestine 10 37050 -UBERON:0007178 muscularis mucosae of colon 11 37051 -UBERON:0012497 muscularis mucosae of rectum 11 37052 -UBERON:0018112 rectum smooth muscle tissue 10 37053 -UBERON:0012497 muscularis mucosae of rectum 11 37054 -UBERON:0004239 small intestine smooth muscle 9 37055 -UBERON:0001210 muscularis mucosae of small intestine 10 37056 -UBERON:0012494 muscularis mucosae of duodenum 11 37057 -UBERON:0016519 muscularis mucosae of jejunum 11 37058 -UBERON:2005273 intestinal mucosal muscle 9 37059 -UBERON:0004222 stomach smooth muscle 8 37060 -UBERON:0001203 muscularis mucosae of stomach 9 37061 -UBERON:0016501 muscularis mucosae of fundus of stomach 10 37062 -UBERON:0011903 gizzard smooth muscle 9 37063 -UBERON:0006676 muscularis mucosa 8 37064 -UBERON:0001203 muscularis mucosae of stomach 9 37065 -UBERON:0016501 muscularis mucosae of fundus of stomach 10 37066 -UBERON:0001240 muscularis mucosae of intestine 9 37067 -UBERON:0001210 muscularis mucosae of small intestine 10 37068 -UBERON:0012494 muscularis mucosae of duodenum 11 37069 -UBERON:0016519 muscularis mucosae of jejunum 11 37070 -UBERON:0001239 muscularis mucosae of large intestine 10 37071 -UBERON:0007178 muscularis mucosae of colon 11 37072 -UBERON:0012497 muscularis mucosae of rectum 11 37073 -UBERON:0004648 esophagus muscularis mucosa 9 37074 -UBERON:0035844 lower esophagus muscularis mucosa 10 37075 -UBERON:0006912 urinary bladder muscularis mucosa 9 37076 -UBERON:0016500 muscularis mucosa of fundus of urinary bladder 10 37077 -UBERON:0035840 esophagogastric junction muscularis mucosa 9 37078 -UBERON:0004227 kidney pelvis smooth muscle 7 37079 -UBERON:0004228 urinary bladder smooth muscle 7 37080 -UBERON:0000381 urinary bladder detrusor smooth muscle 8 37081 -UBERON:0004229 urinary bladder trigone smooth muscle 8 37082 -UBERON:0004230 urinary bladder neck smooth muscle 8 37083 -UBERON:0006912 urinary bladder muscularis mucosa 8 37084 -UBERON:0016500 muscularis mucosa of fundus of urinary bladder 9 37085 -UBERON:0004231 anal region smooth muscle 7 37086 -UBERON:0001244 internal anal sphincter 8 37087 -UBERON:0012649 anococcygeus muscle 8 37088 -UBERON:0018112 rectum smooth muscle tissue 8 37089 -UBERON:0012497 muscularis mucosae of rectum 9 37090 -UBERON:0035103 perineal body smooth muscle muscle tissue 8 37091 -UBERON:0004232 lymphatic vessel smooth muscle 7 37092 -UBERON:0004296 respiratory system lymphatic vessel smooth muscle 8 37093 -UBERON:0004235 mammary gland smooth muscle 7 37094 -UBERON:0004237 blood vessel smooth muscle 7 37095 -UBERON:0002111 artery smooth muscle tissue 8 37096 -UBERON:0004178 aorta smooth muscle tissue 8 37097 -UBERON:0004236 arteriole smooth muscle 8 37098 -UBERON:0004297 respiratory system blood vessel smooth muscle 8 37099 -UBERON:0012416 respiratory system arterial smooth muscle 9 37100 -UBERON:0004696 venous system smooth muscle 8 37101 -UBERON:0012418 respiratory system venous smooth muscle 9 37102 -UBERON:0004238 spleen smooth muscle 7 37103 -UBERON:0004240 gall bladder smooth muscle 7 37104 -UBERON:0004243 prostate gland smooth muscle 7 37105 -UBERON:0004245 oviduct smooth muscle 7 37106 -UBERON:0004246 outflow tract smooth muscle 7 37107 -UBERON:0004695 arterial system smooth muscle 7 37108 -UBERON:0002111 artery smooth muscle tissue 8 37109 -UBERON:0004178 aorta smooth muscle tissue 8 37110 -UBERON:0004236 arteriole smooth muscle 8 37111 -UBERON:0012416 respiratory system arterial smooth muscle 8 37112 -UBERON:0004834 hepatic duct smooth muscle 7 37113 -UBERON:0004835 epididymis smooth muscle 7 37114 -UBERON:0005109 metanephric smooth muscle tissue 7 37115 -UBERON:0005321 mesonephric smooth muscle tissue 7 37116 -UBERON:0008331 clitoral smooth muscle 7 37117 -UBERON:0009919 ureter smooth muscle 7 37118 -UBERON:0012615 umbilical smooth muscle 7 37119 -UBERON:0015717 smooth muscle tissue layer of ejaculatory duct 7 37120 -UBERON:0015783 smooth muscle layer in fatty layer of subcutaneous tissue 7 37121 -UBERON:2005279 enteric circular muscle 7 37122 -UBERON:0002036 striated muscle tissue 6 37123 -UBERON:0001133 cardiac muscle tissue 7 37124 -UBERON:0004492 cardiac muscle tissue of cardiac septum 8 37125 -UBERON:0003383 cardiac muscle tissue of interventricular septum 9 37126 -UBERON:0004491 cardiac muscle tissue of interatrial septum 9 37127 -UBERON:0002352 atrioventricular node 10 37128 -UBERON:0004493 cardiac muscle tissue of myocardium 8 37129 -UBERON:0002350 conducting system of heart 9 37130 -UBERON:2005074 central cardiac conduction system 10 37131 -UBERON:2005075 peripheral cardiac conduction system 10 37132 -UBERON:0002351 sinoatrial node 9 37133 -UBERON:0002352 atrioventricular node 9 37134 -UBERON:0004490 cardiac muscle tissue of atrium 9 37135 -UBERON:0003378 cardiac muscle of auricular region 10 37136 -UBERON:0009779 cardiac muscle tissue of right auricle 11 37137 -UBERON:0009780 cardiac muscle tissue of left auricle 11 37138 -UBERON:0003379 cardiac muscle of right atrium 10 37139 -UBERON:0009779 cardiac muscle tissue of right auricle 11 37140 -UBERON:0003380 cardiac muscle of left atrium 10 37141 -UBERON:0009780 cardiac muscle tissue of left auricle 11 37142 -UBERON:0005982 Bachmann's bundle 9 37143 -UBERON:0009966 internodal tract 9 37144 -UBERON:0015125 anterior internodal tract 10 37145 -UBERON:0015126 middle internodal tract 10 37146 -UBERON:0015127 posterior internodal tract 10 37147 -UBERON:0018649 cardiac muscle tissue of ventricle 9 37148 -UBERON:0002353 atrioventricular bundle 10 37149 -UBERON:0002354 cardiac Purkinje fiber 10 37150 -UBERON:0003381 cardiac muscle of right ventricle 10 37151 -UBERON:0004525 cardiac muscle tissue of trabecula carnea of right ventricle 11 37152 -UBERON:0003382 cardiac muscle of left ventricle 10 37153 -UBERON:0004526 cardiac muscle tissue of trabecula carnea of left ventricle 11 37154 -UBERON:0003452 trabecula carnea cardiac muscle tissue 10 37155 -UBERON:0004525 cardiac muscle tissue of trabecula carnea of right ventricle 11 37156 -UBERON:0004526 cardiac muscle tissue of trabecula carnea of left ventricle 11 37157 -UBERON:0004146 His-Purkinje system 10 37158 -UBERON:0004494 cardiac muscle tissue of papillary muscle 10 37159 -UBERON:0005986 left branch of atrioventricular bundle 10 37160 -UBERON:0005987 right branch of atrioventricular bundle 10 37161 -UBERON:0010131 conducting tissue of heart 8 37162 -UBERON:0002350 conducting system of heart 9 37163 -UBERON:2005074 central cardiac conduction system 10 37164 -UBERON:2005075 peripheral cardiac conduction system 10 37165 -UBERON:0002351 sinoatrial node 9 37166 -UBERON:0002352 atrioventricular node 9 37167 -UBERON:0002353 atrioventricular bundle 9 37168 -UBERON:0002354 cardiac Purkinje fiber 9 37169 -UBERON:0004146 His-Purkinje system 9 37170 -UBERON:0005982 Bachmann's bundle 9 37171 -UBERON:0005986 left branch of atrioventricular bundle 9 37172 -UBERON:0005987 right branch of atrioventricular bundle 9 37173 -UBERON:0009966 internodal tract 9 37174 -UBERON:0015125 anterior internodal tract 10 37175 -UBERON:0015126 middle internodal tract 10 37176 -UBERON:0015127 posterior internodal tract 10 37177 -UBERON:0001134 skeletal muscle tissue 7 37178 -UBERON:0003269 skeletal muscle tissue of eye 8 37179 -UBERON:0004505 skeletal muscle tissue of orbicularis oculi 9 37180 -UBERON:0004508 skeletal muscle tissue of levator palpebrae superioris 9 37181 -UBERON:0003895 hypaxial myotome region 8 37182 -UBERON:2000767 hypaxial region somite 11 9 37183 -UBERON:2000768 hypaxial region somite 14 9 37184 -UBERON:2000769 hypaxial region somite 17 9 37185 -UBERON:2000770 hypaxial region somite 2 9 37186 -UBERON:2000771 hypaxial region somite 22 9 37187 -UBERON:2000772 hypaxial region somite 25 9 37188 -UBERON:2000774 hypaxial region somite 28 9 37189 -UBERON:2000775 hypaxial region somite 30 9 37190 -UBERON:2000776 hypaxial region somite 6 9 37191 -UBERON:2000777 hypaxial region somite 9 9 37192 -UBERON:2000891 hypaxial region somite 1 9 37193 -UBERON:2000892 hypaxial region somite 12 9 37194 -UBERON:2000894 hypaxial region somite 15 9 37195 -UBERON:2000895 hypaxial region somite 18 9 37196 -UBERON:2000896 hypaxial region somite 20 9 37197 -UBERON:2000897 hypaxial region somite 23 9 37198 -UBERON:2000898 hypaxial region somite 26 9 37199 -UBERON:2000899 hypaxial region somite 29 9 37200 -UBERON:2000900 hypaxial region somite 4 9 37201 -UBERON:2000901 hypaxial region somite 7 9 37202 -UBERON:2000925 hypaxial region somite 10 9 37203 -UBERON:2000937 hypaxial region somite 13 9 37204 -UBERON:2000946 hypaxial region somite 16 9 37205 -UBERON:2000957 hypaxial region somite 19 9 37206 -UBERON:2000968 hypaxial region somite 21 9 37207 -UBERON:2000979 hypaxial region somite 24 9 37208 -UBERON:2000986 hypaxial region somite 27 9 37209 -UBERON:2000987 hypaxial region somite 3 9 37210 -UBERON:2000988 hypaxial region somite 5 9 37211 -UBERON:2000989 hypaxial region somite 8 9 37212 -UBERON:0003898 skeletal muscle tissue of trunk 8 37213 -UBERON:0001367 external anal sphincter 9 37214 -UBERON:0004495 skeletal muscle tissue of diaphragm 9 37215 -UBERON:0004496 skeletal muscle tissue of iliacus 9 37216 -UBERON:0004497 skeletal muscle tissue of gluteus maximus 9 37217 -UBERON:0004510 skeletal muscle tissue of pectoralis major 9 37218 -UBERON:0004511 skeletal muscle tissue of rectus abdominis 9 37219 -UBERON:0004513 skeletal muscle tissue of internal intercostal muscle 9 37220 -UBERON:0004514 skeletal muscle tissue of transversus thoracis 9 37221 -UBERON:0004831 esophagus skeletal muscle 9 37222 -UBERON:0003900 epaxial myotome region 8 37223 -UBERON:2000718 epaxial region somite 27 9 37224 -UBERON:2000729 epaxial region somite 3 9 37225 -UBERON:2000739 epaxial region somite 11 9 37226 -UBERON:2000740 epaxial region somite 5 9 37227 -UBERON:2000741 epaxial region somite 14 9 37228 -UBERON:2000742 epaxial region somite 17 9 37229 -UBERON:2000743 epaxial region somite 2 9 37230 -UBERON:2000744 epaxial region somite 22 9 37231 -UBERON:2000745 epaxial region somite 25 9 37232 -UBERON:2000746 epaxial region somite 28 9 37233 -UBERON:2000747 epaxial region somite 30 9 37234 -UBERON:2000748 epaxial region somite 6 9 37235 -UBERON:2000749 epaxial region somite 9 9 37236 -UBERON:2000751 epaxial region somite 8 9 37237 -UBERON:2000864 epaxial region somite 1 9 37238 -UBERON:2000865 epaxial region somite 12 9 37239 -UBERON:2000866 epaxial region somite 15 9 37240 -UBERON:2000867 epaxial region somite 18 9 37241 -UBERON:2000868 epaxial region somite 20 9 37242 -UBERON:2000869 epaxial region somite 23 9 37243 -UBERON:2000870 epaxial region somite 26 9 37244 -UBERON:2000872 epaxial region somite 29 9 37245 -UBERON:2000873 epaxial region somite 4 9 37246 -UBERON:2000874 epaxial region somite 7 9 37247 -UBERON:2000991 epaxial region somite 10 9 37248 -UBERON:2001001 epaxial region somite 13 9 37249 -UBERON:2001012 epaxial region somite 16 9 37250 -UBERON:2001023 epaxial region somite 19 9 37251 -UBERON:2001030 epaxial region somite 21 9 37252 -UBERON:2001040 epaxial region somite 24 9 37253 -UBERON:0004057 skeletal muscle fiber triad 8 37254 -UBERON:0004498 skeletal muscle tissue of quadriceps femoris 8 37255 -UBERON:0004499 skeletal muscle tissue of tibialis anterior 8 37256 -UBERON:0004500 skeletal muscle tissue of deltoid 8 37257 -UBERON:0004501 skeletal muscle tissue of teres major 8 37258 -UBERON:0004502 skeletal muscle tissue of biceps brachii 8 37259 -UBERON:0004503 skeletal muscle tissue of digastric 8 37260 -UBERON:0004504 skeletal muscle tissue of mylohyoid 8 37261 -UBERON:0004506 skeletal muscle tissue of masseter 8 37262 -UBERON:0004507 skeletal muscle tissue of temporalis 8 37263 -UBERON:0004509 skeletal muscle tissue of trapezius 8 37264 -UBERON:0004512 skeletal muscle tissue of supraspinatus 8 37265 -UBERON:0004520 striated muscle tissue of prostate 8 37266 -UBERON:0004829 urethra skeletal muscle tissue 8 37267 -UBERON:0004830 respiratory system skeletal muscle 8 37268 -UBERON:0003384 skeletal muscle tissue of pharynx 9 37269 -UBERON:0004495 skeletal muscle tissue of diaphragm 9 37270 -UBERON:0004832 anal region skeletal muscle 8 37271 -UBERON:0001367 external anal sphincter 9 37272 -UBERON:0004833 lip skeletal muscle 8 37273 -UBERON:0006907 slow muscle tissue 8 37274 -UBERON:0006908 fast muscle tissue 8 37275 -UBERON:0008713 pectoral girdle and thoracic body wall skeletal muscle 8 37276 -UBERON:2005267 erector muscle 8 37277 -UBERON:2000500 dorsal erector muscle 9 37278 -UBERON:2000617 anal erector 9 37279 -UBERON:2005270 depressor muscle 8 37280 -UBERON:2000195 dorsal depressor muscle 9 37281 -UBERON:2000466 anal depressor 9 37282 -UBERON:2005276 inclinator muscle 8 37283 -UBERON:2000313 anal inclinator 9 37284 -UBERON:2000342 dorsal inclinator muscle 9 37285 -UBERON:4200218 musculotendinous bundle 8 37286 -UBERON:0004162 pulmonary myocardium 7 37287 -UBERON:0010059 hypoglossal cord 7 37288 -UBERON:0013497 muscularis orbicularis 7 37289 -UBERON:0004667 interventricular septum muscular part 6 37290 -UBERON:0003383 cardiac muscle tissue of interventricular septum 7 37291 -UBERON:0006821 cutaneous muscle 6 37292 -UBERON:0011415 cutaneous trunci muscle 7 37293 -UBERON:0011464 levator nasolabialis muscle 7 37294 -UBERON:0008428 ceratoglossus 6 37295 -UBERON:0008715 muscle tissue of prostate 6 37296 -UBERON:0004243 prostate gland smooth muscle 7 37297 -UBERON:0004520 striated muscle tissue of prostate 7 37298 -UBERON:0011386 facial modiolus 6 37299 -UBERON:0011535 chondroglossus muscle 6 37300 -UBERON:0016886 muscle tissue of terminal part of digestive tract 6 37301 -UBERON:0018112 rectum smooth muscle tissue 7 37302 -UBERON:0012497 muscularis mucosae of rectum 8 37303 -UBERON:0036274 tonsillar pillar 6 37304 -UBERON:0003058 hypochord 5 37305 -UBERON:0003091 thyroid primordium 5 37306 -UBERON:0003104 mesenchyme 5 37307 -UBERON:0003320 mesenchyme of hip 6 37308 -UBERON:0003322 mesenchyme of shoulder 6 37309 -UBERON:0006292 shoulder joint primordium 7 37310 -UBERON:0003326 mesenchyme of mammary gland 6 37311 -UBERON:0003422 mesenchyme of umbilical cord 6 37312 -UBERON:0005667 connecting stalk mesoderm 7 37313 -UBERON:0003855 gonad mesenchyme 6 37314 -UBERON:0003312 mesenchyme of testis 7 37315 -UBERON:0003315 mesenchyme of ovary 7 37316 -UBERON:0003918 kidney mesenchyme 6 37317 -UBERON:0003220 metanephric mesenchyme 7 37318 -UBERON:0003934 mesenchyme pectoral fin 6 37319 -UBERON:0003935 mesenchyme pelvic fin 6 37320 -UBERON:0004017 periocular mesenchyme 6 37321 -UBERON:0004160 proepicardium 6 37322 -UBERON:0004161 septum transversum 6 37323 -UBERON:0004208 nephrogenic mesenchyme 6 37324 -UBERON:0004883 lung mesenchyme 6 37325 -UBERON:0004884 lobar bronchus mesenchyme 7 37326 -UBERON:0004901 right lung lobar bronchus mesenchyme 8 37327 -UBERON:0004897 right lung accessory lobe lobar bronchus mesenchyme 9 37328 -UBERON:0004899 right lung cranial lobe lobar bronchus mesenchyme 9 37329 -UBERON:0004900 right lung middle lobe lobar bronchus mesenchyme 9 37330 -UBERON:0009602 left lung associated mesenchyme 7 37331 -UBERON:0009603 right lung associated mesenchyme 7 37332 -UBERON:0004901 right lung lobar bronchus mesenchyme 8 37333 -UBERON:0004897 right lung accessory lobe lobar bronchus mesenchyme 9 37334 -UBERON:0004899 right lung cranial lobe lobar bronchus mesenchyme 9 37335 -UBERON:0004900 right lung middle lobe lobar bronchus mesenchyme 9 37336 -UBERON:0005113 metanephric cortex mesenchyme 6 37337 -UBERON:0005253 head mesenchyme 6 37338 -UBERON:0003325 mesenchyme of pinna 7 37339 -UBERON:0003416 mesenchyme of tongue 7 37340 -UBERON:0003420 mesenchyme of sublingual gland 7 37341 -UBERON:0006209 basioccipital cartilage element 7 37342 -UBERON:0006228 exoccipital pre-cartilage condensation 7 37343 -UBERON:0006904 head mesenchyme from mesoderm 7 37344 -UBERON:0005687 orbitosphenoid cartilage element 8 37345 -UBERON:0006230 extrinsic ocular pre-muscle mass 8 37346 -UBERON:0009192 basisphenoid pre-cartilage condensation 8 37347 -UBERON:0009194 basisphenoid cartilage condenstion 8 37348 -UBERON:0010337 mandibular process mesenchyme from head mesenchyme 8 37349 -UBERON:0010341 1st arch mesenchyme from head mesenchyme 8 37350 -UBERON:0010338 1st arch maxillary mesenchyme from head mesenchyme 9 37351 -UBERON:0010339 1st arch mandibular mesenchyme from head mesenchyme 9 37352 -UBERON:0010343 2nd arch mesenchyme from head mesenchyme 8 37353 -UBERON:0010344 3rd arch mesenchyme from head mesenchyme 8 37354 -UBERON:0010345 4th arch mesenchyme from head mesenchyme 8 37355 -UBERON:0010347 6th arch mesenchyme from head mesenchyme 8 37356 -UBERON:0010728 sphenoid lesser wing pre-cartilage condensation 8 37357 -UBERON:0010732 alisphenoid pre-cartilage condensation 8 37358 -UBERON:0010733 alisphenoid cartilage element 8 37359 -UBERON:0010955 trapezius pre-muscle mass 8 37360 -UBERON:0010987 sterno-mastoid pre-muscle mass 8 37361 -UBERON:0006905 mandibular process mesenchyme 7 37362 -UBERON:0010336 mandibular process mesenchyme from neural crest 8 37363 -UBERON:0010337 mandibular process mesenchyme from head mesenchyme 8 37364 -UBERON:0007213 mesenchyme derived from head neural crest 7 37365 -UBERON:0001763 odontogenic papilla 8 37366 -UBERON:0003317 odontogenic papilla of incisor 9 37367 -UBERON:0005707 upper jaw incisor odontogenic papilla 10 37368 -UBERON:0005708 lower jaw incisor odontogenic papilla 10 37369 -UBERON:0015844 molar dental papilla 9 37370 -UBERON:0005700 upper jaw molar odontogenic papilla 10 37371 -UBERON:0005701 lower jaw molar odontogenic papilla 10 37372 -UBERON:4000028 integumentary papilla 9 37373 -UBERON:4000030 oropharyngeal papilla 9 37374 -UBERON:0003314 eye mesenchyme 8 37375 -UBERON:0006230 extrinsic ocular pre-muscle mass 9 37376 -UBERON:0010330 eyelid mesenchyme 9 37377 -UBERON:0003857 upper eyelid mesenchyme 10 37378 -UBERON:0003858 lower eyelid mesenchyme 10 37379 -UBERON:0003421 mesenchyme of vomeronasal organ 8 37380 -UBERON:0003856 uncondensed odontogenic mesenchyme 8 37381 -UBERON:0011641 odontogenic mesenchyme of molar 9 37382 -UBERON:0015846 incisor mesenchyme 9 37383 -UBERON:0004031 head ectomesenchyme 8 37384 -UBERON:0005563 trigeminal neural crest 8 37385 -UBERON:0005565 facio-acoustic neural crest 8 37386 -UBERON:0009192 basisphenoid pre-cartilage condensation 8 37387 -UBERON:0009194 basisphenoid cartilage condenstion 8 37388 -UBERON:0009477 associated mesenchyme of otic placode 8 37389 -UBERON:0009500 periotic mesenchyme 8 37390 -UBERON:0009501 mesenchyme of fronto-nasal process 8 37391 -UBERON:0009204 medial nasal process mesenchyme 9 37392 -UBERON:0009205 lateral nasal process mesenchyme 9 37393 -UBERON:0009920 optic neural crest 8 37394 -UBERON:0010258 mesenchyme from rhombencephalic neural crest 8 37395 -UBERON:0003414 mesenchyme of mandible 9 37396 -UBERON:0005700 upper jaw molar odontogenic papilla 9 37397 -UBERON:0005701 lower jaw molar odontogenic papilla 9 37398 -UBERON:0005705 primary palate mesenchyme 9 37399 -UBERON:0005707 upper jaw incisor odontogenic papilla 9 37400 -UBERON:0005708 lower jaw incisor odontogenic papilla 9 37401 -UBERON:0010254 2nd arch mesenchyme from neural crest 9 37402 -UBERON:0010255 3rd arch mesenchyme from neural crest 9 37403 -UBERON:0010256 4th arch mesenchyme from neural crest 9 37404 -UBERON:0010257 6th arch mesenchyme from neural crest 9 37405 -UBERON:0010259 1st arch mesenchyme from neural crest 9 37406 -UBERON:0010252 1st arch mandibular mesenchyme from neural crest 10 37407 -UBERON:0010253 1st arch maxillary mesenchyme from neural crest 10 37408 -UBERON:0010334 maxillary process mesenchyme from neural crest 9 37409 -UBERON:0010336 mandibular process mesenchyme from neural crest 9 37410 -UBERON:0010354 Reichert's cartilage pre-cartilage condensation 9 37411 -UBERON:0010955 trapezius pre-muscle mass 9 37412 -UBERON:0010732 alisphenoid pre-cartilage condensation 8 37413 -UBERON:0010733 alisphenoid cartilage element 8 37414 -UBERON:0009197 basioccipital pre-cartilage condensation 7 37415 -UBERON:0009494 pharyngeal arch mesenchymal region 7 37416 -UBERON:0005689 2nd arch mesenchyme 8 37417 -UBERON:0010254 2nd arch mesenchyme from neural crest 9 37418 -UBERON:0010343 2nd arch mesenchyme from head mesenchyme 9 37419 -UBERON:0005690 3rd arch mesenchyme 8 37420 -UBERON:0010255 3rd arch mesenchyme from neural crest 9 37421 -UBERON:0010344 3rd arch mesenchyme from head mesenchyme 9 37422 -UBERON:0005691 4th arch mesenchyme 8 37423 -UBERON:0010256 4th arch mesenchyme from neural crest 9 37424 -UBERON:0010345 4th arch mesenchyme from head mesenchyme 9 37425 -UBERON:0010031 6th arch mesenchyme 8 37426 -UBERON:0010257 6th arch mesenchyme from neural crest 9 37427 -UBERON:0010347 6th arch mesenchyme from head mesenchyme 9 37428 -UBERON:0010042 1st arch mesenchyme 8 37429 -UBERON:0009584 1st arch mandibular mesenchyme 9 37430 -UBERON:0010252 1st arch mandibular mesenchyme from neural crest 10 37431 -UBERON:0010339 1st arch mandibular mesenchyme from head mesenchyme 10 37432 -UBERON:0010045 1st arch maxillary mesenchyme 9 37433 -UBERON:0010253 1st arch maxillary mesenchyme from neural crest 10 37434 -UBERON:0010338 1st arch maxillary mesenchyme from head mesenchyme 10 37435 -UBERON:0010259 1st arch mesenchyme from neural crest 9 37436 -UBERON:0010252 1st arch mandibular mesenchyme from neural crest 10 37437 -UBERON:0010253 1st arch maxillary mesenchyme from neural crest 10 37438 -UBERON:0010341 1st arch mesenchyme from head mesenchyme 9 37439 -UBERON:0010338 1st arch maxillary mesenchyme from head mesenchyme 10 37440 -UBERON:0010339 1st arch mandibular mesenchyme from head mesenchyme 10 37441 -UBERON:0013502 5th arch mesenchyme 8 37442 -UBERON:0009506 mesenchyme of middle ear 7 37443 -UBERON:0010929 stapedius pre-muscle condensation 8 37444 -UBERON:0010935 tensor tympani pre-muscle condensation 8 37445 -UBERON:0009617 head paraxial mesoderm 7 37446 -UBERON:0009891 facial mesenchyme 7 37447 -UBERON:0003314 eye mesenchyme 8 37448 -UBERON:0006230 extrinsic ocular pre-muscle mass 9 37449 -UBERON:0010330 eyelid mesenchyme 9 37450 -UBERON:0003857 upper eyelid mesenchyme 10 37451 -UBERON:0003858 lower eyelid mesenchyme 10 37452 -UBERON:0003323 mesenchyme of upper jaw 8 37453 -UBERON:0003417 mesenchyme of soft palate 9 37454 -UBERON:0003424 mesenchyme of hard palate 9 37455 -UBERON:0005700 upper jaw molar odontogenic papilla 9 37456 -UBERON:0005704 secondary palatal shelf mesenchyme 9 37457 -UBERON:0005705 primary palate mesenchyme 9 37458 -UBERON:0005707 upper jaw incisor odontogenic papilla 9 37459 -UBERON:0003414 mesenchyme of mandible 8 37460 -UBERON:0003415 mesenchyme of nasal septum 8 37461 -UBERON:0003419 mesenchyme of parotid 8 37462 -UBERON:0003421 mesenchyme of vomeronasal organ 8 37463 -UBERON:0005687 orbitosphenoid cartilage element 8 37464 -UBERON:0005701 lower jaw molar odontogenic papilla 8 37465 -UBERON:0005708 lower jaw incisor odontogenic papilla 8 37466 -UBERON:0009191 sphenoid bone pre-cartilage condensation 8 37467 -UBERON:0009193 sphenoid cartilage element 8 37468 -UBERON:0009194 basisphenoid cartilage condenstion 8 37469 -UBERON:0010728 sphenoid lesser wing pre-cartilage condensation 8 37470 -UBERON:0010732 alisphenoid pre-cartilage condensation 8 37471 -UBERON:0010733 alisphenoid cartilage element 8 37472 -UBERON:0010752 exoccipital cartilage element 7 37473 -UBERON:0011163 supraoccipital pre-cartilage condensation 7 37474 -UBERON:0034995 jaw mesenchyme 7 37475 -UBERON:0003323 mesenchyme of upper jaw 8 37476 -UBERON:0003417 mesenchyme of soft palate 9 37477 -UBERON:0003424 mesenchyme of hard palate 9 37478 -UBERON:0005700 upper jaw molar odontogenic papilla 9 37479 -UBERON:0005704 secondary palatal shelf mesenchyme 9 37480 -UBERON:0005705 primary palate mesenchyme 9 37481 -UBERON:0005707 upper jaw incisor odontogenic papilla 9 37482 -UBERON:0003324 mesenchyme of lower jaw 8 37483 -UBERON:0003414 mesenchyme of mandible 9 37484 -UBERON:0003418 mesenchyme of submandibular gland 9 37485 -UBERON:0003419 mesenchyme of parotid 9 37486 -UBERON:0005701 lower jaw molar odontogenic papilla 9 37487 -UBERON:0005708 lower jaw incisor odontogenic papilla 9 37488 -UBERON:0009539 mesenchyme of submandibular gland primordium 9 37489 -UBERON:2002172 branchial mesenchyme 7 37490 -UBERON:0005256 trunk mesenchyme 6 37491 -UBERON:0002062 endocardial cushion 7 37492 -UBERON:0036066 inferior endocardial cushion 8 37493 -UBERON:0036067 superior endocardial cushion 8 37494 -UBERON:0005494 intermediate mesenchyme 7 37495 -UBERON:0005967 conotruncal ridge 7 37496 -UBERON:0006247 iliac pre-cartilage condensation 7 37497 -UBERON:0006255 ischial pre-cartilage condensation 7 37498 -UBERON:0006285 pubic pre-cartilage condensation 7 37499 -UBERON:0006295 sternebral bone pre-cartilage condensation 7 37500 -UBERON:0007214 mesenchyme derived from trunk neural crest 7 37501 -UBERON:0011210 migration pathway NC-derived mesenchyme 8 37502 -UBERON:0011208 medial migration pathway NC-derived mesenchyme 9 37503 -UBERON:0011209 lateral migration pathway NC-derived mesenchyme 9 37504 -UBERON:0007683 lateral mesenchyme derived from mesoderm 7 37505 -UBERON:0009618 trunk paraxial mesoderm 7 37506 -UBERON:0011301 manubrium sternum pre-cartilage condensation 7 37507 -UBERON:0005323 mesonephric mesenchyme 6 37508 -UBERON:0005702 optic eminence mesenchyme 6 37509 -UBERON:0006210 body-wall mesenchyme 6 37510 -UBERON:0006293 spleen primordium 6 37511 -UBERON:0007524 dense mesenchyme tissue 6 37512 -UBERON:0003077 paraxial mesoderm 7 37513 -UBERON:0003081 lateral plate mesoderm 7 37514 -UBERON:0003262 amniotic mesoderm 7 37515 -UBERON:0003265 chorionic mesenchyme 7 37516 -UBERON:0005494 intermediate mesenchyme 7 37517 -UBERON:0005667 connecting stalk mesoderm 7 37518 -UBERON:0005728 extraembryonic mesoderm 7 37519 -UBERON:0005856 developing mesenchymal condensation 7 37520 -UBERON:0001763 odontogenic papilla 8 37521 -UBERON:0003317 odontogenic papilla of incisor 9 37522 -UBERON:0005707 upper jaw incisor odontogenic papilla 10 37523 -UBERON:0005708 lower jaw incisor odontogenic papilla 10 37524 -UBERON:0015844 molar dental papilla 9 37525 -UBERON:0005700 upper jaw molar odontogenic papilla 10 37526 -UBERON:0005701 lower jaw molar odontogenic papilla 10 37527 -UBERON:4000028 integumentary papilla 9 37528 -UBERON:4000030 oropharyngeal papilla 9 37529 -UBERON:0003089 sclerotome 8 37530 -UBERON:2000829 sclerotome somite 11 9 37531 -UBERON:2000830 sclerotome somite 14 9 37532 -UBERON:2000831 sclerotome somite 17 9 37533 -UBERON:2000832 sclerotome somite 2 9 37534 -UBERON:2000833 sclerotome somite 22 9 37535 -UBERON:2000834 sclerotome somite 25 9 37536 -UBERON:2000835 sclerotome somite 28 9 37537 -UBERON:2000836 sclerotome somite 30 9 37538 -UBERON:2000837 sclerotome somite 6 9 37539 -UBERON:2000839 sclerotome somite 9 9 37540 -UBERON:2000952 sclerotome somite 1 9 37541 -UBERON:2000953 sclerotome somite 12 9 37542 -UBERON:2000954 sclerotome somite 15 9 37543 -UBERON:2000955 sclerotome somite 18 9 37544 -UBERON:2000956 sclerotome somite 20 9 37545 -UBERON:2000958 sclerotome somite 23 9 37546 -UBERON:2000959 sclerotome somite 26 9 37547 -UBERON:2000960 sclerotome somite 29 9 37548 -UBERON:2000961 sclerotome somite 4 9 37549 -UBERON:2000962 sclerotome somite 7 9 37550 -UBERON:2001036 sclerotome somite 10 9 37551 -UBERON:2001037 sclerotome somite 13 9 37552 -UBERON:2001038 sclerotome somite 16 9 37553 -UBERON:2001039 sclerotome somite 19 9 37554 -UBERON:2001041 sclerotome somite 21 9 37555 -UBERON:2001042 sclerotome somite 24 9 37556 -UBERON:2001043 sclerotome somite 27 9 37557 -UBERON:2001044 sclerotome somite 3 9 37558 -UBERON:2001045 sclerotome somite 5 9 37559 -UBERON:2001046 sclerotome somite 8 9 37560 -UBERON:0005863 cartilaginous condensation 8 37561 -UBERON:0005687 orbitosphenoid cartilage element 9 37562 -UBERON:0006209 basioccipital cartilage element 9 37563 -UBERON:0006213 carpus cartilage element 9 37564 -UBERON:0006245 humerus cartilage element 9 37565 -UBERON:0006254 ischial cartilage element 9 37566 -UBERON:0006288 rib cartilage element 9 37567 -UBERON:0009193 sphenoid cartilage element 9 37568 -UBERON:0009194 basisphenoid cartilage condenstion 9 37569 -UBERON:0010129 femur cartilage element 9 37570 -UBERON:0010541 tarsus cartilage element 9 37571 -UBERON:0010714 iliac cartilage element 9 37572 -UBERON:0010718 pubic cartilage element 9 37573 -UBERON:0010733 alisphenoid cartilage element 9 37574 -UBERON:0010752 exoccipital cartilage element 9 37575 -UBERON:0010842 calcaneum cartilage element 9 37576 -UBERON:0010843 clavicle cartilage element 9 37577 -UBERON:0010848 radius-ulna cartilage element 9 37578 -UBERON:0012080 patella cartilage element 9 37579 -UBERON:0005865 pre-muscle condensation 8 37580 -UBERON:0006219 deltoid pre-muscle mass 9 37581 -UBERON:0006230 extrinsic ocular pre-muscle mass 9 37582 -UBERON:0010348 hyoid pre-muscle mass 9 37583 -UBERON:0010929 stapedius pre-muscle condensation 9 37584 -UBERON:0010935 tensor tympani pre-muscle condensation 9 37585 -UBERON:0010955 trapezius pre-muscle mass 9 37586 -UBERON:0010961 erector spinae pre-muscle mass 9 37587 -UBERON:0010962 extensor pre-muscle mass 9 37588 -UBERON:0010970 intercostal pre-muscle mass 9 37589 -UBERON:0010974 external intercostal pre-muscle mass 10 37590 -UBERON:0010981 internal intercostal pre-muscle mass 10 37591 -UBERON:0010975 external oblique pre-muscle mass 9 37592 -UBERON:0010977 flexor pre-muscle mass 9 37593 -UBERON:0010982 latissimus dorsi pre-muscle mass 9 37594 -UBERON:0010983 levator scapulae pre-muscle mass 9 37595 -UBERON:0010984 pectoral pre-muscle mass 9 37596 -UBERON:0010985 rhomboid pre-muscle mass 9 37597 -UBERON:0010986 serratus ventralis pre-muscle mass 9 37598 -UBERON:0010987 sterno-mastoid pre-muscle mass 9 37599 -UBERON:0010988 teres major pre-muscle mass 9 37600 -UBERON:0010989 transverospinalis pre-muscle mass 9 37601 -UBERON:0010993 subscapularis pre-muscle mass 9 37602 -UBERON:0011332 extrinsic tongue pre-muscle mass 9 37603 -UBERON:0035148 presumptive axochord 9 37604 -UBERON:0005866 pre-cartilage condensation 8 37605 -UBERON:0006214 carpus pre-cartilage condensation 9 37606 -UBERON:0006228 exoccipital pre-cartilage condensation 9 37607 -UBERON:0006234 femur pre-cartilage condensation 9 37608 -UBERON:0006246 humerus pre-cartilage condensation 9 37609 -UBERON:0006247 iliac pre-cartilage condensation 9 37610 -UBERON:0006255 ischial pre-cartilage condensation 9 37611 -UBERON:0006263 Meckel's cartilage pre-cartilage condensation 9 37612 -UBERON:0006285 pubic pre-cartilage condensation 9 37613 -UBERON:0006287 radius-ulna pre-cartilage condensation 9 37614 -UBERON:0006289 rib pre-cartilage condensation 9 37615 -UBERON:0006295 sternebral bone pre-cartilage condensation 9 37616 -UBERON:0007267 trachea pre-cartilage rings 9 37617 -UBERON:0009191 sphenoid bone pre-cartilage condensation 9 37618 -UBERON:0009192 basisphenoid pre-cartilage condensation 9 37619 -UBERON:0009197 basioccipital pre-cartilage condensation 9 37620 -UBERON:0010213 laryngeal pre-cartilage condensation 9 37621 -UBERON:0010214 cricoid pre-cartilage condensation 10 37622 -UBERON:0010219 thyroid pre-cartilage condensation 10 37623 -UBERON:0010220 arytenoid pre-cartilage condensation 10 37624 -UBERON:0010354 Reichert's cartilage pre-cartilage condensation 9 37625 -UBERON:0010540 tarsus pre-cartilage condensation 9 37626 -UBERON:0010687 pedal digit metatarsal pre-cartilage condensation 9 37627 -UBERON:0010547 pedal digit 1 metatarsal pre-cartilage condensation 10 37628 -UBERON:0010548 pedal digit 2 metatarsal pre-cartilage condensation 10 37629 -UBERON:0010549 pedal digit 3 metatarsal pre-cartilage condensation 10 37630 -UBERON:0010550 pedal digit 4 metatarsal pre-cartilage condensation 10 37631 -UBERON:0010551 pedal digit 5 metatarsal pre-cartilage condensation 10 37632 -UBERON:0010728 sphenoid lesser wing pre-cartilage condensation 9 37633 -UBERON:0010732 alisphenoid pre-cartilage condensation 9 37634 -UBERON:0010801 calcaneum pre-cartilage condensation 9 37635 -UBERON:0010844 clavicle pre-cartilage condensation 9 37636 -UBERON:0010846 radius pre-cartilage condensation 9 37637 -UBERON:0010847 ulna pre-cartilage condensation 9 37638 -UBERON:0010850 tibia pre-cartilage condensation 9 37639 -UBERON:0010852 fibula pre-cartilage condensation 9 37640 -UBERON:0010901 tarsometatarsus pre-cartilage condensation 9 37641 -UBERON:0010903 tibiotarsus pre-cartilage condensation 9 37642 -UBERON:0011163 supraoccipital pre-cartilage condensation 9 37643 -UBERON:0011301 manubrium sternum pre-cartilage condensation 9 37644 -UBERON:0012081 patella pre-cartilage condensation 9 37645 -UBERON:0006292 shoulder joint primordium 8 37646 -UBERON:0010215 arytenoid swellings 8 37647 -UBERON:0015062 bone condensation 8 37648 -UBERON:0009478 associated mesenchyme of midgut 7 37649 -UBERON:0009494 pharyngeal arch mesenchymal region 7 37650 -UBERON:0005689 2nd arch mesenchyme 8 37651 -UBERON:0010254 2nd arch mesenchyme from neural crest 9 37652 -UBERON:0010343 2nd arch mesenchyme from head mesenchyme 9 37653 -UBERON:0005690 3rd arch mesenchyme 8 37654 -UBERON:0010255 3rd arch mesenchyme from neural crest 9 37655 -UBERON:0010344 3rd arch mesenchyme from head mesenchyme 9 37656 -UBERON:0005691 4th arch mesenchyme 8 37657 -UBERON:0010256 4th arch mesenchyme from neural crest 9 37658 -UBERON:0010345 4th arch mesenchyme from head mesenchyme 9 37659 -UBERON:0010031 6th arch mesenchyme 8 37660 -UBERON:0010257 6th arch mesenchyme from neural crest 9 37661 -UBERON:0010347 6th arch mesenchyme from head mesenchyme 9 37662 -UBERON:0010042 1st arch mesenchyme 8 37663 -UBERON:0009584 1st arch mandibular mesenchyme 9 37664 -UBERON:0010252 1st arch mandibular mesenchyme from neural crest 10 37665 -UBERON:0010339 1st arch mandibular mesenchyme from head mesenchyme 10 37666 -UBERON:0010045 1st arch maxillary mesenchyme 9 37667 -UBERON:0010253 1st arch maxillary mesenchyme from neural crest 10 37668 -UBERON:0010338 1st arch maxillary mesenchyme from head mesenchyme 10 37669 -UBERON:0010259 1st arch mesenchyme from neural crest 9 37670 -UBERON:0010252 1st arch mandibular mesenchyme from neural crest 10 37671 -UBERON:0010253 1st arch maxillary mesenchyme from neural crest 10 37672 -UBERON:0010341 1st arch mesenchyme from head mesenchyme 9 37673 -UBERON:0010338 1st arch maxillary mesenchyme from head mesenchyme 10 37674 -UBERON:0010339 1st arch mandibular mesenchyme from head mesenchyme 10 37675 -UBERON:0013502 5th arch mesenchyme 8 37676 -UBERON:0009505 mesenchyme of trachea 7 37677 -UBERON:0007267 trachea pre-cartilage rings 8 37678 -UBERON:0009506 mesenchyme of middle ear 7 37679 -UBERON:0010929 stapedius pre-muscle condensation 8 37680 -UBERON:0010935 tensor tympani pre-muscle condensation 8 37681 -UBERON:0009620 tail bud paraxial mesoderm 7 37682 -UBERON:0010046 entire pharyngeal arch associated mesenchyme 7 37683 -UBERON:0010090 future falx cerebri 7 37684 -UBERON:0010091 future hindbrain meninx 7 37685 -UBERON:0010221 laryngeal associated mesenchyme 7 37686 -UBERON:0010377 mesenchyme from somatopleure 7 37687 -UBERON:0003328 mesenchyme of footplate 8 37688 -UBERON:0010540 tarsus pre-cartilage condensation 9 37689 -UBERON:0010541 tarsus cartilage element 9 37690 -UBERON:0006213 carpus cartilage element 8 37691 -UBERON:0006247 iliac pre-cartilage condensation 8 37692 -UBERON:0006255 ischial pre-cartilage condensation 8 37693 -UBERON:0006285 pubic pre-cartilage condensation 8 37694 -UBERON:0009523 mesenchyme of handplate 8 37695 -UBERON:0006214 carpus pre-cartilage condensation 9 37696 -UBERON:0010329 paired limb/fin bud mesenchyme 8 37697 -UBERON:0003412 pelvic appendage bud mesenchyme 9 37698 -UBERON:0005416 zone of polarizing activity of pelvic appendage 10 37699 -UBERON:4300227 hindlimb bud mesenchyme 10 37700 -UBERON:0003413 pectoral appendage bud mesenchyme 9 37701 -UBERON:0005415 zone of polarizing activity of pectoral appendage 10 37702 -UBERON:4300226 forelimb bud mesenchyme 10 37703 -UBERON:4300231 forelimb wing bud mesenchyme 11 37704 -UBERON:4300228 pectoral fin bud mesenchyme 10 37705 -UBERON:0005414 zone of polarizing activity 9 37706 -UBERON:0005415 zone of polarizing activity of pectoral appendage 10 37707 -UBERON:0005416 zone of polarizing activity of pelvic appendage 10 37708 -UBERON:0010328 limb bud mesenchyme 9 37709 -UBERON:4300226 forelimb bud mesenchyme 10 37710 -UBERON:4300231 forelimb wing bud mesenchyme 11 37711 -UBERON:4300227 hindlimb bud mesenchyme 10 37712 -UBERON:4300229 pelvic fin bud mesenchyme 9 37713 -UBERON:0010378 mesenchyme from splanchnopleure 7 37714 -UBERON:0011203 urachus mesenchyme 7 37715 -UBERON:0007529 loose mesenchyme tissue 6 37716 -UBERON:0003856 uncondensed odontogenic mesenchyme 7 37717 -UBERON:0011641 odontogenic mesenchyme of molar 8 37718 -UBERON:0015846 incisor mesenchyme 8 37719 -UBERON:0007530 migrating mesenchyme population 6 37720 -UBERON:0003089 sclerotome 7 37721 -UBERON:2000829 sclerotome somite 11 8 37722 -UBERON:2000830 sclerotome somite 14 8 37723 -UBERON:2000831 sclerotome somite 17 8 37724 -UBERON:2000832 sclerotome somite 2 8 37725 -UBERON:2000833 sclerotome somite 22 8 37726 -UBERON:2000834 sclerotome somite 25 8 37727 -UBERON:2000835 sclerotome somite 28 8 37728 -UBERON:2000836 sclerotome somite 30 8 37729 -UBERON:2000837 sclerotome somite 6 8 37730 -UBERON:2000839 sclerotome somite 9 8 37731 -UBERON:2000952 sclerotome somite 1 8 37732 -UBERON:2000953 sclerotome somite 12 8 37733 -UBERON:2000954 sclerotome somite 15 8 37734 -UBERON:2000955 sclerotome somite 18 8 37735 -UBERON:2000956 sclerotome somite 20 8 37736 -UBERON:2000958 sclerotome somite 23 8 37737 -UBERON:2000959 sclerotome somite 26 8 37738 -UBERON:2000960 sclerotome somite 29 8 37739 -UBERON:2000961 sclerotome somite 4 8 37740 -UBERON:2000962 sclerotome somite 7 8 37741 -UBERON:2001036 sclerotome somite 10 8 37742 -UBERON:2001037 sclerotome somite 13 8 37743 -UBERON:2001038 sclerotome somite 16 8 37744 -UBERON:2001039 sclerotome somite 19 8 37745 -UBERON:2001041 sclerotome somite 21 8 37746 -UBERON:2001042 sclerotome somite 24 8 37747 -UBERON:2001043 sclerotome somite 27 8 37748 -UBERON:2001044 sclerotome somite 3 8 37749 -UBERON:2001045 sclerotome somite 5 8 37750 -UBERON:2001046 sclerotome somite 8 8 37751 -UBERON:0005563 trigeminal neural crest 7 37752 -UBERON:0005565 facio-acoustic neural crest 7 37753 -UBERON:0009920 optic neural crest 7 37754 -UBERON:0011210 migration pathway NC-derived mesenchyme 7 37755 -UBERON:0011208 medial migration pathway NC-derived mesenchyme 8 37756 -UBERON:0011209 lateral migration pathway NC-derived mesenchyme 8 37757 -UBERON:0009482 associated mesenchyme of foregut-midgut junction 6 37758 -UBERON:0009503 mesenchyme of hindgut 6 37759 -UBERON:0009504 mesenchyme of main bronchus 6 37760 -UBERON:0009526 maxillary process mesenchyme 6 37761 -UBERON:0010334 maxillary process mesenchyme from neural crest 7 37762 -UBERON:0010335 maxillary process mesenchyme from head mesenchyme 7 37763 -UBERON:0009538 mesenchyme of sublingual gland primordium 6 37764 -UBERON:0009749 limb mesenchyme 6 37765 -UBERON:0003859 forelimb mesenchyme 7 37766 -UBERON:0003318 mesenchyme of elbow 8 37767 -UBERON:0003319 mesenchyme of carpal region 8 37768 -UBERON:0006213 carpus cartilage element 9 37769 -UBERON:0006214 carpus pre-cartilage condensation 9 37770 -UBERON:0003327 mesenchyme of forearm 8 37771 -UBERON:0006287 radius-ulna pre-cartilage condensation 9 37772 -UBERON:0010846 radius pre-cartilage condensation 9 37773 -UBERON:0010847 ulna pre-cartilage condensation 9 37774 -UBERON:0010848 radius-ulna cartilage element 9 37775 -UBERON:0005257 manual digit mesenchyme 8 37776 -UBERON:0005692 manual digit 2 mesenchyme 9 37777 -UBERON:0005693 manual digit 3 mesenchyme 9 37778 -UBERON:0005694 manual digit 4 mesenchyme 9 37779 -UBERON:0005695 manual digit 5 mesenchyme 9 37780 -UBERON:0010564 manual digit 1 mesenchyme 9 37781 -UBERON:0005258 upper arm mesenchyme 8 37782 -UBERON:0006245 humerus cartilage element 9 37783 -UBERON:0006246 humerus pre-cartilage condensation 9 37784 -UBERON:0009600 mesenchyme of interdigital region of manus 8 37785 -UBERON:0009586 mesenchyme of interdigital region between manual digits 1 and 2 9 37786 -UBERON:0009587 mesenchyme of interdigital region between manual digits 2 and 3 9 37787 -UBERON:0009588 mesenchyme of interdigital region between manual digits 3 and 4 9 37788 -UBERON:0009589 mesenchyme of interdigital region between manual digits 4 and 5 9 37789 -UBERON:0003860 hindlimb mesenchyme 7 37790 -UBERON:0003321 mesenchyme of knee 8 37791 -UBERON:0012081 patella pre-cartilage condensation 9 37792 -UBERON:0005254 upper leg mesenchyme 8 37793 -UBERON:0006234 femur pre-cartilage condensation 9 37794 -UBERON:0010129 femur cartilage element 9 37795 -UBERON:0005255 pedal digit mesenchyme 8 37796 -UBERON:0005696 pedal digit 2 mesenchyme 9 37797 -UBERON:0005697 pedal digit 3 mesenchyme 9 37798 -UBERON:0005698 pedal digit 4 mesenchyme 9 37799 -UBERON:0005699 pedal digit 5 mesenchyme 9 37800 -UBERON:0010562 pedal digit 1 mesenchyme 9 37801 -UBERON:0005259 lower leg mesenchyme 8 37802 -UBERON:0010850 tibia pre-cartilage condensation 9 37803 -UBERON:0010852 fibula pre-cartilage condensation 9 37804 -UBERON:0009601 mesenchyme of interdigital region of pes 8 37805 -UBERON:0009590 mesenchyme of interdigital region between pedal digits 1 and 2 9 37806 -UBERON:0009591 mesenchyme of interdigital region between pedal digits 2 and 3 9 37807 -UBERON:0009592 mesenchyme of interdigital region between pedal digits 3 and 4 9 37808 -UBERON:0009593 mesenchyme of interdigital region between pedal digits 4 and 5 9 37809 -UBERON:0010687 pedal digit metatarsal pre-cartilage condensation 8 37810 -UBERON:0010547 pedal digit 1 metatarsal pre-cartilage condensation 9 37811 -UBERON:0010548 pedal digit 2 metatarsal pre-cartilage condensation 9 37812 -UBERON:0010549 pedal digit 3 metatarsal pre-cartilage condensation 9 37813 -UBERON:0010550 pedal digit 4 metatarsal pre-cartilage condensation 9 37814 -UBERON:0010551 pedal digit 5 metatarsal pre-cartilage condensation 9 37815 -UBERON:0010695 mesenchyme of tarsal region 8 37816 -UBERON:0010540 tarsus pre-cartilage condensation 9 37817 -UBERON:0010541 tarsus cartilage element 9 37818 -UBERON:0010801 calcaneum pre-cartilage condensation 9 37819 -UBERON:0010842 calcaneum cartilage element 9 37820 -UBERON:0010901 tarsometatarsus pre-cartilage condensation 8 37821 -UBERON:0010903 tibiotarsus pre-cartilage condensation 8 37822 -UBERON:0012080 patella cartilage element 8 37823 -UBERON:0009585 interdigital region mesenchyme 7 37824 -UBERON:0009596 mesenchyme of interdigital region between digits 1 and 2 8 37825 -UBERON:0009586 mesenchyme of interdigital region between manual digits 1 and 2 9 37826 -UBERON:0009590 mesenchyme of interdigital region between pedal digits 1 and 2 9 37827 -UBERON:0009597 mesenchyme of interdigital region between digits 2 and 3 8 37828 -UBERON:0009587 mesenchyme of interdigital region between manual digits 2 and 3 9 37829 -UBERON:0009591 mesenchyme of interdigital region between pedal digits 2 and 3 9 37830 -UBERON:0009598 mesenchyme of interdigital region between digits 3 and 4 8 37831 -UBERON:0009588 mesenchyme of interdigital region between manual digits 3 and 4 9 37832 -UBERON:0009592 mesenchyme of interdigital region between pedal digits 3 and 4 9 37833 -UBERON:0009599 mesenchyme of interdigital region between digits 4 and 5 8 37834 -UBERON:0009589 mesenchyme of interdigital region between manual digits 4 and 5 9 37835 -UBERON:0009593 mesenchyme of interdigital region between pedal digits 4 and 5 9 37836 -UBERON:0009600 mesenchyme of interdigital region of manus 8 37837 -UBERON:0009586 mesenchyme of interdigital region between manual digits 1 and 2 9 37838 -UBERON:0009587 mesenchyme of interdigital region between manual digits 2 and 3 9 37839 -UBERON:0009588 mesenchyme of interdigital region between manual digits 3 and 4 9 37840 -UBERON:0009589 mesenchyme of interdigital region between manual digits 4 and 5 9 37841 -UBERON:0009601 mesenchyme of interdigital region of pes 8 37842 -UBERON:0009590 mesenchyme of interdigital region between pedal digits 1 and 2 9 37843 -UBERON:0009591 mesenchyme of interdigital region between pedal digits 2 and 3 9 37844 -UBERON:0009592 mesenchyme of interdigital region between pedal digits 3 and 4 9 37845 -UBERON:0009593 mesenchyme of interdigital region between pedal digits 4 and 5 9 37846 -UBERON:0010702 digit mesenchyme 7 37847 -UBERON:0005255 pedal digit mesenchyme 8 37848 -UBERON:0005696 pedal digit 2 mesenchyme 9 37849 -UBERON:0005697 pedal digit 3 mesenchyme 9 37850 -UBERON:0005698 pedal digit 4 mesenchyme 9 37851 -UBERON:0005699 pedal digit 5 mesenchyme 9 37852 -UBERON:0010562 pedal digit 1 mesenchyme 9 37853 -UBERON:0005257 manual digit mesenchyme 8 37854 -UBERON:0005692 manual digit 2 mesenchyme 9 37855 -UBERON:0005693 manual digit 3 mesenchyme 9 37856 -UBERON:0005694 manual digit 4 mesenchyme 9 37857 -UBERON:0005695 manual digit 5 mesenchyme 9 37858 -UBERON:0010564 manual digit 1 mesenchyme 9 37859 -UBERON:0009751 cardiac mesenchyme 6 37860 -UBERON:0002062 endocardial cushion 7 37861 -UBERON:0036066 inferior endocardial cushion 8 37862 -UBERON:0036067 superior endocardial cushion 8 37863 -UBERON:0005967 conotruncal ridge 7 37864 -UBERON:0009752 pancreas mesenchyme 6 37865 -UBERON:0009845 urogenital sinus mesenchyme 6 37866 -UBERON:0010083 future dermis 6 37867 -UBERON:0010299 scleral mesenchyme 6 37868 -UBERON:0010333 extraembryonic membrane mesenchyme 6 37869 -UBERON:0003262 amniotic mesoderm 7 37870 -UBERON:0003265 chorionic mesenchyme 7 37871 -UBERON:0003316 mesenchyme of yolk sac 7 37872 -UBERON:0010360 pharyngeal arch mesenchyme from head mesenchyme 6 37873 -UBERON:0010341 1st arch mesenchyme from head mesenchyme 7 37874 -UBERON:0010338 1st arch maxillary mesenchyme from head mesenchyme 8 37875 -UBERON:0010339 1st arch mandibular mesenchyme from head mesenchyme 8 37876 -UBERON:0010343 2nd arch mesenchyme from head mesenchyme 7 37877 -UBERON:0010344 3rd arch mesenchyme from head mesenchyme 7 37878 -UBERON:0010345 4th arch mesenchyme from head mesenchyme 7 37879 -UBERON:0010347 6th arch mesenchyme from head mesenchyme 7 37880 -UBERON:0011803 feather bud, dermal component 6 37881 -UBERON:0014387 mesenchyme derived from neural crest 6 37882 -UBERON:0002062 endocardial cushion 7 37883 -UBERON:0036066 inferior endocardial cushion 8 37884 -UBERON:0036067 superior endocardial cushion 8 37885 -UBERON:0003415 mesenchyme of nasal septum 7 37886 -UBERON:0003417 mesenchyme of soft palate 7 37887 -UBERON:0003424 mesenchyme of hard palate 7 37888 -UBERON:0005687 orbitosphenoid cartilage element 7 37889 -UBERON:0005704 secondary palatal shelf mesenchyme 7 37890 -UBERON:0006263 Meckel's cartilage pre-cartilage condensation 7 37891 -UBERON:0007213 mesenchyme derived from head neural crest 7 37892 -UBERON:0001763 odontogenic papilla 8 37893 -UBERON:0003317 odontogenic papilla of incisor 9 37894 -UBERON:0005707 upper jaw incisor odontogenic papilla 10 37895 -UBERON:0005708 lower jaw incisor odontogenic papilla 10 37896 -UBERON:0015844 molar dental papilla 9 37897 -UBERON:0005700 upper jaw molar odontogenic papilla 10 37898 -UBERON:0005701 lower jaw molar odontogenic papilla 10 37899 -UBERON:4000028 integumentary papilla 9 37900 -UBERON:4000030 oropharyngeal papilla 9 37901 -UBERON:0003314 eye mesenchyme 8 37902 -UBERON:0006230 extrinsic ocular pre-muscle mass 9 37903 -UBERON:0010330 eyelid mesenchyme 9 37904 -UBERON:0003857 upper eyelid mesenchyme 10 37905 -UBERON:0003858 lower eyelid mesenchyme 10 37906 -UBERON:0003421 mesenchyme of vomeronasal organ 8 37907 -UBERON:0003856 uncondensed odontogenic mesenchyme 8 37908 -UBERON:0011641 odontogenic mesenchyme of molar 9 37909 -UBERON:0015846 incisor mesenchyme 9 37910 -UBERON:0004031 head ectomesenchyme 8 37911 -UBERON:0005563 trigeminal neural crest 8 37912 -UBERON:0005565 facio-acoustic neural crest 8 37913 -UBERON:0009192 basisphenoid pre-cartilage condensation 8 37914 -UBERON:0009194 basisphenoid cartilage condenstion 8 37915 -UBERON:0009477 associated mesenchyme of otic placode 8 37916 -UBERON:0009500 periotic mesenchyme 8 37917 -UBERON:0009501 mesenchyme of fronto-nasal process 8 37918 -UBERON:0009204 medial nasal process mesenchyme 9 37919 -UBERON:0009205 lateral nasal process mesenchyme 9 37920 -UBERON:0009920 optic neural crest 8 37921 -UBERON:0010258 mesenchyme from rhombencephalic neural crest 8 37922 -UBERON:0003414 mesenchyme of mandible 9 37923 -UBERON:0005700 upper jaw molar odontogenic papilla 9 37924 -UBERON:0005701 lower jaw molar odontogenic papilla 9 37925 -UBERON:0005705 primary palate mesenchyme 9 37926 -UBERON:0005707 upper jaw incisor odontogenic papilla 9 37927 -UBERON:0005708 lower jaw incisor odontogenic papilla 9 37928 -UBERON:0010254 2nd arch mesenchyme from neural crest 9 37929 -UBERON:0010255 3rd arch mesenchyme from neural crest 9 37930 -UBERON:0010256 4th arch mesenchyme from neural crest 9 37931 -UBERON:0010257 6th arch mesenchyme from neural crest 9 37932 -UBERON:0010259 1st arch mesenchyme from neural crest 9 37933 -UBERON:0010252 1st arch mandibular mesenchyme from neural crest 10 37934 -UBERON:0010253 1st arch maxillary mesenchyme from neural crest 10 37935 -UBERON:0010334 maxillary process mesenchyme from neural crest 9 37936 -UBERON:0010336 mandibular process mesenchyme from neural crest 9 37937 -UBERON:0010354 Reichert's cartilage pre-cartilage condensation 9 37938 -UBERON:0010955 trapezius pre-muscle mass 9 37939 -UBERON:0010732 alisphenoid pre-cartilage condensation 8 37940 -UBERON:0010733 alisphenoid cartilage element 8 37941 -UBERON:0007214 mesenchyme derived from trunk neural crest 7 37942 -UBERON:0011210 migration pathway NC-derived mesenchyme 8 37943 -UBERON:0011208 medial migration pathway NC-derived mesenchyme 9 37944 -UBERON:0011209 lateral migration pathway NC-derived mesenchyme 9 37945 -UBERON:0009191 sphenoid bone pre-cartilage condensation 7 37946 -UBERON:0009193 sphenoid cartilage element 7 37947 -UBERON:0010359 pharyngeal arch mesenchyme from neural crest 7 37948 -UBERON:0010254 2nd arch mesenchyme from neural crest 8 37949 -UBERON:0010255 3rd arch mesenchyme from neural crest 8 37950 -UBERON:0010256 4th arch mesenchyme from neural crest 8 37951 -UBERON:0010257 6th arch mesenchyme from neural crest 8 37952 -UBERON:0010259 1st arch mesenchyme from neural crest 8 37953 -UBERON:0010252 1st arch mandibular mesenchyme from neural crest 9 37954 -UBERON:0010253 1st arch maxillary mesenchyme from neural crest 9 37955 -UBERON:0010728 sphenoid lesser wing pre-cartilage condensation 7 37956 -UBERON:0014711 carapacial ridge mesenchyme 6 37957 -UBERON:0015418 urethra mesenchymal layer 6 37958 -UBERON:0036073 respiratory primordium mesenchyme 6 37959 -UBERON:2000164 ventral mesenchyme 6 37960 -UBERON:2000788 mesenchyme dorsal fin 6 37961 -UBERON:2000912 mesenchyme median fin fold 6 37962 -UBERON:0003714 neural tissue 5 37963 -UBERON:0001810 nerve plexus 6 37964 -UBERON:0001813 spinal nerve plexus 7 37965 -UBERON:0001814 brachial nerve plexus 8 37966 -UBERON:0001815 lumbosacral nerve plexus 8 37967 -UBERON:0034986 sacral nerve plexus 9 37968 -UBERON:0034987 lumbar nerve plexus 9 37969 -UBERON:0003725 cervical nerve plexus 8 37970 -UBERON:0035768 coccygeal nerve plexus 8 37971 -UBERON:0001816 autonomic nerve plexus 7 37972 -UBERON:0000429 enteric plexus 8 37973 -UBERON:0002439 myenteric nerve plexus 9 37974 -UBERON:0005304 submucous nerve plexus 9 37975 -UBERON:0012374 subserosal plexus 9 37976 -UBERON:0002008 cardiac nerve plexus 8 37977 -UBERON:0002009 pulmonary nerve plexus 8 37978 -UBERON:0002010 celiac nerve plexus 8 37979 -UBERON:0002013 superior hypogastric nerve plexus 8 37980 -UBERON:0002014 inferior hypogastric nerve plexus 8 37981 -UBERON:0002024 internal carotid nerve plexus 8 37982 -UBERON:0005303 hypogastric nerve 8 37983 -UBERON:0011325 pharyngeal nerve plexus 8 37984 -UBERON:0012373 sympathetic nerve plexus 8 37985 -UBERON:0018676 renal nerve plexus 8 37986 -UBERON:0035771 mesenteric plexus 8 37987 -UBERON:0005488 superior mesenteric plexus 9 37988 -UBERON:0035770 inferior mesenteric nerve plexus 9 37989 -UBERON:0035772 aortic plexus 8 37990 -UBERON:0035773 abdominal nerve plexus 9 37991 -UBERON:0035774 thoracic aortic plexus 9 37992 -UBERON:0011194 ophthalmic plexus 7 37993 -UBERON:0003906 cardiac jelly 5 37994 -UBERON:0005261 atrium cardiac jelly 6 37995 -UBERON:0005262 ventricle cardiac jelly 6 37996 -UBERON:0005263 outflow tract cardiac jelly 6 37997 -UBERON:0004128 optic vesicle 5 37998 -UBERON:0004163 anterior ectodermal midgut 5 37999 -UBERON:0005291 embryonic tissue 5 38000 -UBERON:0000076 external ectoderm 6 38001 -UBERON:0005216 optic eminence surface ectoderm 7 38002 -UBERON:0000095 cardiac neural crest 6 38003 -UBERON:0001049 neural tube 6 38004 -UBERON:0003051 ear vesicle 6 38005 -UBERON:0003054 roof plate 6 38006 -UBERON:0005502 rhombomere roof plate 7 38007 -UBERON:0005568 rhombomere 1 roof plate 8 38008 -UBERON:0005572 rhombomere 2 roof plate 8 38009 -UBERON:0005575 rhombomere 3 roof plate 8 38010 -UBERON:0005578 rhombomere 4 roof plate 8 38011 -UBERON:0005581 rhombomere 5 roof plate 8 38012 -UBERON:0005584 rhombomere 6 roof plate 8 38013 -UBERON:0005587 rhombomere 7 roof plate 8 38014 -UBERON:0005590 rhombomere 8 roof plate 8 38015 -UBERON:0003056 pre-chordal neural plate 6 38016 -UBERON:0003071 eye primordium 6 38017 -UBERON:0003075 neural plate 6 38018 -UBERON:0003854 spinal cord neural plate 7 38019 -UBERON:0009610 forebrain neural plate 7 38020 -UBERON:0009611 midbrain neural plate 7 38021 -UBERON:0009614 hindbrain neural plate 7 38022 -UBERON:0003077 paraxial mesoderm 6 38023 -UBERON:0003079 floor plate 6 38024 -UBERON:0005500 rhombomere floor plate 7 38025 -UBERON:0005566 rhombomere 1 floor plate 8 38026 -UBERON:0005570 rhombomere 2 floor plate 8 38027 -UBERON:0005573 rhombomere 3 floor plate 8 38028 -UBERON:0005576 rhombomere 4 floor plate 8 38029 -UBERON:0005579 rhombomere 5 floor plate 8 38030 -UBERON:0005582 rhombomere 6 floor plate 8 38031 -UBERON:0005585 rhombomere 7 floor plate 8 38032 -UBERON:0005588 rhombomere 8 floor plate 8 38033 -UBERON:2000887 floor plate neural rod 7 38034 -UBERON:0003081 lateral plate mesoderm 6 38035 -UBERON:0003083 trunk neural crest 6 38036 -UBERON:0003099 cranial neural crest 6 38037 -UBERON:0003849 mesencephalic neural crest 7 38038 -UBERON:0003852 rhombencephalon neural crest 7 38039 -UBERON:0005491 glossopharyngeal neural crest 7 38040 -UBERON:0005563 trigeminal neural crest 7 38041 -UBERON:0005565 facio-acoustic neural crest 7 38042 -UBERON:0007098 mandibular neural crest 7 38043 -UBERON:0007099 hyoid neural crest 7 38044 -UBERON:0007681 facial neural crest 7 38045 -UBERON:0003105 dorsal lateral plate region 6 38046 -UBERON:0003220 metanephric mesenchyme 6 38047 -UBERON:0003248 epithelium of footplate 6 38048 -UBERON:0003249 epithelium of otic placode 6 38049 -UBERON:2000225 lateral crista primordium 7 38050 -UBERON:2000411 posterior crista primordium 7 38051 -UBERON:0003299 roof plate of midbrain 6 38052 -UBERON:0003300 roof plate of telencephalon 6 38053 -UBERON:0003301 roof plate of diencephalon 6 38054 -UBERON:0003302 roof plate of metencephalon 6 38055 -UBERON:0003303 roof plate of medulla oblongata 6 38056 -UBERON:0003304 mesoderm blood island 6 38057 -UBERON:0003371 pelvic appendage bud ectoderm 6 38058 -UBERON:0003372 pectoral appendage bud ectoderm 6 38059 -UBERON:0003894 liver primordium 6 38060 -UBERON:0003922 pancreatic epithelial bud 6 38061 -UBERON:0003923 dorsal pancreatic bud 7 38062 -UBERON:0003924 ventral pancreatic bud 7 38063 -UBERON:0004008 cerebellar plate 6 38064 -UBERON:0004013 egg cylinder 6 38065 -UBERON:0004022 germinal neuroepithelium 6 38066 -UBERON:0004060 neural tube ventricular layer 6 38067 -UBERON:0013160 epithalamus ventricular layer 7 38068 -UBERON:0034710 spinal cord ventricular layer 7 38069 -UBERON:0004061 neural tube mantle layer 6 38070 -UBERON:0005883 neural tube lateral wall mantle layer 7 38071 -UBERON:0009580 diencephalon mantle layer 7 38072 -UBERON:0009581 midbrain mantle layer 7 38073 -UBERON:0009583 spinal cord mantle layer 7 38074 -UBERON:0013159 epithalamus mantle layer 7 38075 -UBERON:0004064 neural tube basal plate 6 38076 -UBERON:0005239 basal plate metencephalon 7 38077 -UBERON:0005240 basal plate medulla oblongata 7 38078 -UBERON:0009579 myelencephalon basal plate 7 38079 -UBERON:0004117 pharyngeal pouch 6 38080 -UBERON:0007122 pharyngeal pouch 1 7 38081 -UBERON:0007123 pharyngeal pouch 2 7 38082 -UBERON:0007124 pharyngeal pouch 3 7 38083 -UBERON:0007125 pharyngeal pouch 4 7 38084 -UBERON:0007126 pharyngeal pouch 5 7 38085 -UBERON:0007127 pharyngeal pouch 6 7 38086 -UBERON:2001129 pharyngeal pouches 2-6 7 38087 -UBERON:0004140 primary heart field 6 38088 -UBERON:0004141 heart tube 6 38089 -UBERON:0004341 primitive streak 6 38090 -UBERON:0005062 neural fold 6 38091 -UBERON:0009748 cephalic neural fold 7 38092 -UBERON:0005078 lamina terminalis of neural tube 6 38093 -UBERON:0005253 head mesenchyme 6 38094 -UBERON:0003325 mesenchyme of pinna 7 38095 -UBERON:0003416 mesenchyme of tongue 7 38096 -UBERON:0003420 mesenchyme of sublingual gland 7 38097 -UBERON:0006209 basioccipital cartilage element 7 38098 -UBERON:0006228 exoccipital pre-cartilage condensation 7 38099 -UBERON:0006904 head mesenchyme from mesoderm 7 38100 -UBERON:0005687 orbitosphenoid cartilage element 8 38101 -UBERON:0006230 extrinsic ocular pre-muscle mass 8 38102 -UBERON:0009192 basisphenoid pre-cartilage condensation 8 38103 -UBERON:0009194 basisphenoid cartilage condenstion 8 38104 -UBERON:0010337 mandibular process mesenchyme from head mesenchyme 8 38105 -UBERON:0010341 1st arch mesenchyme from head mesenchyme 8 38106 -UBERON:0010338 1st arch maxillary mesenchyme from head mesenchyme 9 38107 -UBERON:0010339 1st arch mandibular mesenchyme from head mesenchyme 9 38108 -UBERON:0010343 2nd arch mesenchyme from head mesenchyme 8 38109 -UBERON:0010344 3rd arch mesenchyme from head mesenchyme 8 38110 -UBERON:0010345 4th arch mesenchyme from head mesenchyme 8 38111 -UBERON:0010347 6th arch mesenchyme from head mesenchyme 8 38112 -UBERON:0010728 sphenoid lesser wing pre-cartilage condensation 8 38113 -UBERON:0010732 alisphenoid pre-cartilage condensation 8 38114 -UBERON:0010733 alisphenoid cartilage element 8 38115 -UBERON:0010955 trapezius pre-muscle mass 8 38116 -UBERON:0010987 sterno-mastoid pre-muscle mass 8 38117 -UBERON:0006905 mandibular process mesenchyme 7 38118 -UBERON:0010336 mandibular process mesenchyme from neural crest 8 38119 -UBERON:0010337 mandibular process mesenchyme from head mesenchyme 8 38120 -UBERON:0007213 mesenchyme derived from head neural crest 7 38121 -UBERON:0001763 odontogenic papilla 8 38122 -UBERON:0003317 odontogenic papilla of incisor 9 38123 -UBERON:0005707 upper jaw incisor odontogenic papilla 10 38124 -UBERON:0005708 lower jaw incisor odontogenic papilla 10 38125 -UBERON:0015844 molar dental papilla 9 38126 -UBERON:0005700 upper jaw molar odontogenic papilla 10 38127 -UBERON:0005701 lower jaw molar odontogenic papilla 10 38128 -UBERON:4000028 integumentary papilla 9 38129 -UBERON:4000030 oropharyngeal papilla 9 38130 -UBERON:0003314 eye mesenchyme 8 38131 -UBERON:0006230 extrinsic ocular pre-muscle mass 9 38132 -UBERON:0010330 eyelid mesenchyme 9 38133 -UBERON:0003857 upper eyelid mesenchyme 10 38134 -UBERON:0003858 lower eyelid mesenchyme 10 38135 -UBERON:0003421 mesenchyme of vomeronasal organ 8 38136 -UBERON:0003856 uncondensed odontogenic mesenchyme 8 38137 -UBERON:0011641 odontogenic mesenchyme of molar 9 38138 -UBERON:0015846 incisor mesenchyme 9 38139 -UBERON:0004031 head ectomesenchyme 8 38140 -UBERON:0005563 trigeminal neural crest 8 38141 -UBERON:0005565 facio-acoustic neural crest 8 38142 -UBERON:0009192 basisphenoid pre-cartilage condensation 8 38143 -UBERON:0009194 basisphenoid cartilage condenstion 8 38144 -UBERON:0009477 associated mesenchyme of otic placode 8 38145 -UBERON:0009500 periotic mesenchyme 8 38146 -UBERON:0009501 mesenchyme of fronto-nasal process 8 38147 -UBERON:0009204 medial nasal process mesenchyme 9 38148 -UBERON:0009205 lateral nasal process mesenchyme 9 38149 -UBERON:0009920 optic neural crest 8 38150 -UBERON:0010258 mesenchyme from rhombencephalic neural crest 8 38151 -UBERON:0003414 mesenchyme of mandible 9 38152 -UBERON:0005700 upper jaw molar odontogenic papilla 9 38153 -UBERON:0005701 lower jaw molar odontogenic papilla 9 38154 -UBERON:0005705 primary palate mesenchyme 9 38155 -UBERON:0005707 upper jaw incisor odontogenic papilla 9 38156 -UBERON:0005708 lower jaw incisor odontogenic papilla 9 38157 -UBERON:0010254 2nd arch mesenchyme from neural crest 9 38158 -UBERON:0010255 3rd arch mesenchyme from neural crest 9 38159 -UBERON:0010256 4th arch mesenchyme from neural crest 9 38160 -UBERON:0010257 6th arch mesenchyme from neural crest 9 38161 -UBERON:0010259 1st arch mesenchyme from neural crest 9 38162 -UBERON:0010252 1st arch mandibular mesenchyme from neural crest 10 38163 -UBERON:0010253 1st arch maxillary mesenchyme from neural crest 10 38164 -UBERON:0010334 maxillary process mesenchyme from neural crest 9 38165 -UBERON:0010336 mandibular process mesenchyme from neural crest 9 38166 -UBERON:0010354 Reichert's cartilage pre-cartilage condensation 9 38167 -UBERON:0010955 trapezius pre-muscle mass 9 38168 -UBERON:0010732 alisphenoid pre-cartilage condensation 8 38169 -UBERON:0010733 alisphenoid cartilage element 8 38170 -UBERON:0009197 basioccipital pre-cartilage condensation 7 38171 -UBERON:0009494 pharyngeal arch mesenchymal region 7 38172 -UBERON:0005689 2nd arch mesenchyme 8 38173 -UBERON:0010254 2nd arch mesenchyme from neural crest 9 38174 -UBERON:0010343 2nd arch mesenchyme from head mesenchyme 9 38175 -UBERON:0005690 3rd arch mesenchyme 8 38176 -UBERON:0010255 3rd arch mesenchyme from neural crest 9 38177 -UBERON:0010344 3rd arch mesenchyme from head mesenchyme 9 38178 -UBERON:0005691 4th arch mesenchyme 8 38179 -UBERON:0010256 4th arch mesenchyme from neural crest 9 38180 -UBERON:0010345 4th arch mesenchyme from head mesenchyme 9 38181 -UBERON:0010031 6th arch mesenchyme 8 38182 -UBERON:0010257 6th arch mesenchyme from neural crest 9 38183 -UBERON:0010347 6th arch mesenchyme from head mesenchyme 9 38184 -UBERON:0010042 1st arch mesenchyme 8 38185 -UBERON:0009584 1st arch mandibular mesenchyme 9 38186 -UBERON:0010252 1st arch mandibular mesenchyme from neural crest 10 38187 -UBERON:0010339 1st arch mandibular mesenchyme from head mesenchyme 10 38188 -UBERON:0010045 1st arch maxillary mesenchyme 9 38189 -UBERON:0010253 1st arch maxillary mesenchyme from neural crest 10 38190 -UBERON:0010338 1st arch maxillary mesenchyme from head mesenchyme 10 38191 -UBERON:0010259 1st arch mesenchyme from neural crest 9 38192 -UBERON:0010252 1st arch mandibular mesenchyme from neural crest 10 38193 -UBERON:0010253 1st arch maxillary mesenchyme from neural crest 10 38194 -UBERON:0010341 1st arch mesenchyme from head mesenchyme 9 38195 -UBERON:0010338 1st arch maxillary mesenchyme from head mesenchyme 10 38196 -UBERON:0010339 1st arch mandibular mesenchyme from head mesenchyme 10 38197 -UBERON:0013502 5th arch mesenchyme 8 38198 -UBERON:0009506 mesenchyme of middle ear 7 38199 -UBERON:0010929 stapedius pre-muscle condensation 8 38200 -UBERON:0010935 tensor tympani pre-muscle condensation 8 38201 -UBERON:0009617 head paraxial mesoderm 7 38202 -UBERON:0009891 facial mesenchyme 7 38203 -UBERON:0003314 eye mesenchyme 8 38204 -UBERON:0006230 extrinsic ocular pre-muscle mass 9 38205 -UBERON:0010330 eyelid mesenchyme 9 38206 -UBERON:0003857 upper eyelid mesenchyme 10 38207 -UBERON:0003858 lower eyelid mesenchyme 10 38208 -UBERON:0003323 mesenchyme of upper jaw 8 38209 -UBERON:0003417 mesenchyme of soft palate 9 38210 -UBERON:0003424 mesenchyme of hard palate 9 38211 -UBERON:0005700 upper jaw molar odontogenic papilla 9 38212 -UBERON:0005704 secondary palatal shelf mesenchyme 9 38213 -UBERON:0005705 primary palate mesenchyme 9 38214 -UBERON:0005707 upper jaw incisor odontogenic papilla 9 38215 -UBERON:0003414 mesenchyme of mandible 8 38216 -UBERON:0003415 mesenchyme of nasal septum 8 38217 -UBERON:0003419 mesenchyme of parotid 8 38218 -UBERON:0003421 mesenchyme of vomeronasal organ 8 38219 -UBERON:0005687 orbitosphenoid cartilage element 8 38220 -UBERON:0005701 lower jaw molar odontogenic papilla 8 38221 -UBERON:0005708 lower jaw incisor odontogenic papilla 8 38222 -UBERON:0009191 sphenoid bone pre-cartilage condensation 8 38223 -UBERON:0009193 sphenoid cartilage element 8 38224 -UBERON:0009194 basisphenoid cartilage condenstion 8 38225 -UBERON:0010728 sphenoid lesser wing pre-cartilage condensation 8 38226 -UBERON:0010732 alisphenoid pre-cartilage condensation 8 38227 -UBERON:0010733 alisphenoid cartilage element 8 38228 -UBERON:0010752 exoccipital cartilage element 7 38229 -UBERON:0011163 supraoccipital pre-cartilage condensation 7 38230 -UBERON:0034995 jaw mesenchyme 7 38231 -UBERON:0003323 mesenchyme of upper jaw 8 38232 -UBERON:0003417 mesenchyme of soft palate 9 38233 -UBERON:0003424 mesenchyme of hard palate 9 38234 -UBERON:0005700 upper jaw molar odontogenic papilla 9 38235 -UBERON:0005704 secondary palatal shelf mesenchyme 9 38236 -UBERON:0005705 primary palate mesenchyme 9 38237 -UBERON:0005707 upper jaw incisor odontogenic papilla 9 38238 -UBERON:0003324 mesenchyme of lower jaw 8 38239 -UBERON:0003414 mesenchyme of mandible 9 38240 -UBERON:0003418 mesenchyme of submandibular gland 9 38241 -UBERON:0003419 mesenchyme of parotid 9 38242 -UBERON:0005701 lower jaw molar odontogenic papilla 9 38243 -UBERON:0005708 lower jaw incisor odontogenic papilla 9 38244 -UBERON:0009539 mesenchyme of submandibular gland primordium 9 38245 -UBERON:2002172 branchial mesenchyme 7 38246 -UBERON:0005256 trunk mesenchyme 6 38247 -UBERON:0002062 endocardial cushion 7 38248 -UBERON:0036066 inferior endocardial cushion 8 38249 -UBERON:0036067 superior endocardial cushion 8 38250 -UBERON:0005494 intermediate mesenchyme 7 38251 -UBERON:0005967 conotruncal ridge 7 38252 -UBERON:0006247 iliac pre-cartilage condensation 7 38253 -UBERON:0006255 ischial pre-cartilage condensation 7 38254 -UBERON:0006285 pubic pre-cartilage condensation 7 38255 -UBERON:0006295 sternebral bone pre-cartilage condensation 7 38256 -UBERON:0007214 mesenchyme derived from trunk neural crest 7 38257 -UBERON:0011210 migration pathway NC-derived mesenchyme 8 38258 -UBERON:0011208 medial migration pathway NC-derived mesenchyme 9 38259 -UBERON:0011209 lateral migration pathway NC-derived mesenchyme 9 38260 -UBERON:0007683 lateral mesenchyme derived from mesoderm 7 38261 -UBERON:0009618 trunk paraxial mesoderm 7 38262 -UBERON:0011301 manubrium sternum pre-cartilage condensation 7 38263 -UBERON:0005295 sex cord 6 38264 -UBERON:0005296 ovary sex cord 7 38265 -UBERON:0005297 testis sex cord 7 38266 -UBERON:0010141 primitive sex cord of indifferent gonad 7 38267 -UBERON:0005428 vagal neural crest 6 38268 -UBERON:0005594 head somite 6 38269 -UBERON:0005702 optic eminence mesenchyme 6 38270 -UBERON:0005724 roof plate spinal cord region 6 38271 -UBERON:0005732 paired limb/fin field 6 38272 -UBERON:0005729 pectoral appendage field 7 38273 -UBERON:0005730 pelvic appendage field 7 38274 -UBERON:0005731 fin field 7 38275 -UBERON:0005733 limb field 7 38276 -UBERON:0005866 pre-cartilage condensation 6 38277 -UBERON:0006214 carpus pre-cartilage condensation 7 38278 -UBERON:0006228 exoccipital pre-cartilage condensation 7 38279 -UBERON:0006234 femur pre-cartilage condensation 7 38280 -UBERON:0006246 humerus pre-cartilage condensation 7 38281 -UBERON:0006247 iliac pre-cartilage condensation 7 38282 -UBERON:0006255 ischial pre-cartilage condensation 7 38283 -UBERON:0006263 Meckel's cartilage pre-cartilage condensation 7 38284 -UBERON:0006285 pubic pre-cartilage condensation 7 38285 -UBERON:0006287 radius-ulna pre-cartilage condensation 7 38286 -UBERON:0006289 rib pre-cartilage condensation 7 38287 -UBERON:0006295 sternebral bone pre-cartilage condensation 7 38288 -UBERON:0007267 trachea pre-cartilage rings 7 38289 -UBERON:0009191 sphenoid bone pre-cartilage condensation 7 38290 -UBERON:0009192 basisphenoid pre-cartilage condensation 7 38291 -UBERON:0009197 basioccipital pre-cartilage condensation 7 38292 -UBERON:0010213 laryngeal pre-cartilage condensation 7 38293 -UBERON:0010214 cricoid pre-cartilage condensation 8 38294 -UBERON:0010219 thyroid pre-cartilage condensation 8 38295 -UBERON:0010220 arytenoid pre-cartilage condensation 8 38296 -UBERON:0010354 Reichert's cartilage pre-cartilage condensation 7 38297 -UBERON:0010540 tarsus pre-cartilage condensation 7 38298 -UBERON:0010687 pedal digit metatarsal pre-cartilage condensation 7 38299 -UBERON:0010547 pedal digit 1 metatarsal pre-cartilage condensation 8 38300 -UBERON:0010548 pedal digit 2 metatarsal pre-cartilage condensation 8 38301 -UBERON:0010549 pedal digit 3 metatarsal pre-cartilage condensation 8 38302 -UBERON:0010550 pedal digit 4 metatarsal pre-cartilage condensation 8 38303 -UBERON:0010551 pedal digit 5 metatarsal pre-cartilage condensation 8 38304 -UBERON:0010728 sphenoid lesser wing pre-cartilage condensation 7 38305 -UBERON:0010732 alisphenoid pre-cartilage condensation 7 38306 -UBERON:0010801 calcaneum pre-cartilage condensation 7 38307 -UBERON:0010844 clavicle pre-cartilage condensation 7 38308 -UBERON:0010846 radius pre-cartilage condensation 7 38309 -UBERON:0010847 ulna pre-cartilage condensation 7 38310 -UBERON:0010850 tibia pre-cartilage condensation 7 38311 -UBERON:0010852 fibula pre-cartilage condensation 7 38312 -UBERON:0010901 tarsometatarsus pre-cartilage condensation 7 38313 -UBERON:0010903 tibiotarsus pre-cartilage condensation 7 38314 -UBERON:0011163 supraoccipital pre-cartilage condensation 7 38315 -UBERON:0011301 manubrium sternum pre-cartilage condensation 7 38316 -UBERON:0012081 patella pre-cartilage condensation 7 38317 -UBERON:0006239 future central tendon 6 38318 -UBERON:0006250 infundibular recess of 3rd ventricle 6 38319 -UBERON:0006266 nasolacrimal groove 6 38320 -UBERON:0006267 notochordal plate 6 38321 -UBERON:0006279 pleuroperitoneal canal 6 38322 -UBERON:0006293 spleen primordium 6 38323 -UBERON:0006957 submandibular gland primordium epithelium 6 38324 -UBERON:0007005 cardiogenic splanchnic mesoderm 6 38325 -UBERON:0007097 chordo neural hinge 6 38326 -UBERON:0007185 pericardio-peritoneal canal mesothelium 6 38327 -UBERON:0009499 parietal of mesothelium of pericardio-peritoneal canal 7 38328 -UBERON:0007383 enveloping layer of ectoderm 6 38329 -UBERON:0007687 kidney field 6 38330 -UBERON:0007690 early pharyngeal endoderm 6 38331 -UBERON:0008835 hepatic diverticulum 6 38332 -UBERON:0009129 right atrium endocardium 6 38333 -UBERON:0011007 endocardium of right auricle 7 38334 -UBERON:0009133 pleuroperitoneal membrane 6 38335 -UBERON:0009522 lateral lingual swelling epithelium 6 38336 -UBERON:0009526 maxillary process mesenchyme 6 38337 -UBERON:0010334 maxillary process mesenchyme from neural crest 7 38338 -UBERON:0010335 maxillary process mesenchyme from head mesenchyme 7 38339 -UBERON:0009538 mesenchyme of sublingual gland primordium 6 38340 -UBERON:0009620 tail bud paraxial mesoderm 6 38341 -UBERON:0009722 entire pharyngeal arch endoderm 6 38342 -UBERON:0009746 head fold of embryonic disc 6 38343 -UBERON:0009747 tail fold of embryonic disc 6 38344 -UBERON:0009846 embryonic cloacal epithelium 6 38345 -UBERON:0004902 urogenital sinus epithelium 7 38346 -UBERON:0003820 prostate bud 8 38347 -UBERON:0009847 prostate field 6 38348 -UBERON:0009881 anterior lateral plate mesoderm 6 38349 -UBERON:0009889 secondary heart field 6 38350 -UBERON:0010021 dorsal part of pharyngeal pouch 1 6 38351 -UBERON:0010022 ventral part of pharyngeal pouch 1 6 38352 -UBERON:0010023 dorsal part of pharyngeal pouch 2 6 38353 -UBERON:0010024 ventral part of pharyngeal pouch 2 6 38354 -UBERON:0010025 dorsal part of pharyngeal pouch 3 6 38355 -UBERON:0010026 ventral part of pharyngeal pouch 3 6 38356 -UBERON:0010027 dorsal part of pharyngeal pouch 4 6 38357 -UBERON:0010028 ventral part of pharyngeal pouch 4 6 38358 -UBERON:0010029 dorsal part of pharyngeal pouch 5 6 38359 -UBERON:0010030 ventral part of pharyngeal pouch 5 6 38360 -UBERON:0010046 entire pharyngeal arch associated mesenchyme 6 38361 -UBERON:0010075 sacral neural crest 6 38362 -UBERON:0010090 future falx cerebri 6 38363 -UBERON:0010091 future hindbrain meninx 6 38364 -UBERON:0010286 midbrain neural tube 6 38365 -UBERON:0010316 germ layer / neural crest 6 38366 -UBERON:0000923 germ layer 7 38367 -UBERON:0000924 ectoderm 8 38368 -UBERON:0003373 ectoderm of footplate 9 38369 -UBERON:0005233 medial-nasal process ectoderm 9 38370 -UBERON:0005234 optic eminence ectoderm 9 38371 -UBERON:0005660 2nd arch ectoderm 9 38372 -UBERON:0005661 3rd arch ectoderm 9 38373 -UBERON:0005662 4th arch ectoderm 9 38374 -UBERON:0009206 lateral nasal process surface ectoderm 9 38375 -UBERON:0009479 ectoderm of buccopharyngeal membrane 9 38376 -UBERON:0000925 endoderm 8 38377 -UBERON:0003261 thyroid primordium endoderm 9 38378 -UBERON:0005664 2nd arch endoderm 9 38379 -UBERON:0005665 3rd arch endoderm 9 38380 -UBERON:0005666 4th arch endoderm 9 38381 -UBERON:0008817 thymus primordium endoderm 9 38382 -UBERON:0009480 endoderm of buccopharyngeal membrane 9 38383 -UBERON:0009550 endoderm of foregut-midgut junction 9 38384 -UBERON:0000926 mesoderm 8 38385 -UBERON:0005721 pronephric mesoderm 9 38386 -UBERON:0009910 posterior lateral plate mesoderm 9 38387 -UBERON:2000083 ventral mesoderm 9 38388 -UBERON:2001201 ventral lateral mesoderm 10 38389 -UBERON:2001467 pharyngeal mesoderm 9 38390 -UBERON:6000128 trunk mesoderm 9 38391 -UBERON:0000927 mesectoderm 8 38392 -UBERON:0002346 neurectoderm 8 38393 -UBERON:0002342 neural crest 7 38394 -UBERON:0003849 mesencephalic neural crest 8 38395 -UBERON:0003850 telencephalon neural crest 8 38396 -UBERON:0003851 diencephalon neural crest 8 38397 -UBERON:0003852 rhombencephalon neural crest 8 38398 -UBERON:0003853 spinal cord neural crest 8 38399 -UBERON:3010587 hyoid arch neural crest 8 38400 -UBERON:0010332 epithelium of handplate 6 38401 -UBERON:0010359 pharyngeal arch mesenchyme from neural crest 6 38402 -UBERON:0010254 2nd arch mesenchyme from neural crest 7 38403 -UBERON:0010255 3rd arch mesenchyme from neural crest 7 38404 -UBERON:0010256 4th arch mesenchyme from neural crest 7 38405 -UBERON:0010257 6th arch mesenchyme from neural crest 7 38406 -UBERON:0010259 1st arch mesenchyme from neural crest 7 38407 -UBERON:0010252 1st arch mandibular mesenchyme from neural crest 8 38408 -UBERON:0010253 1st arch maxillary mesenchyme from neural crest 8 38409 -UBERON:0010360 pharyngeal arch mesenchyme from head mesenchyme 6 38410 -UBERON:0010341 1st arch mesenchyme from head mesenchyme 7 38411 -UBERON:0010338 1st arch maxillary mesenchyme from head mesenchyme 8 38412 -UBERON:0010339 1st arch mandibular mesenchyme from head mesenchyme 8 38413 -UBERON:0010343 2nd arch mesenchyme from head mesenchyme 7 38414 -UBERON:0010344 3rd arch mesenchyme from head mesenchyme 7 38415 -UBERON:0010345 4th arch mesenchyme from head mesenchyme 7 38416 -UBERON:0010347 6th arch mesenchyme from head mesenchyme 7 38417 -UBERON:0010377 mesenchyme from somatopleure 6 38418 -UBERON:0003328 mesenchyme of footplate 7 38419 -UBERON:0010540 tarsus pre-cartilage condensation 8 38420 -UBERON:0010541 tarsus cartilage element 8 38421 -UBERON:0006213 carpus cartilage element 7 38422 -UBERON:0006247 iliac pre-cartilage condensation 7 38423 -UBERON:0006255 ischial pre-cartilage condensation 7 38424 -UBERON:0006285 pubic pre-cartilage condensation 7 38425 -UBERON:0009523 mesenchyme of handplate 7 38426 -UBERON:0006214 carpus pre-cartilage condensation 8 38427 -UBERON:0010329 paired limb/fin bud mesenchyme 7 38428 -UBERON:0003412 pelvic appendage bud mesenchyme 8 38429 -UBERON:0005416 zone of polarizing activity of pelvic appendage 9 38430 -UBERON:4300227 hindlimb bud mesenchyme 9 38431 -UBERON:0003413 pectoral appendage bud mesenchyme 8 38432 -UBERON:0005415 zone of polarizing activity of pectoral appendage 9 38433 -UBERON:4300226 forelimb bud mesenchyme 9 38434 -UBERON:4300231 forelimb wing bud mesenchyme 10 38435 -UBERON:4300228 pectoral fin bud mesenchyme 9 38436 -UBERON:0005414 zone of polarizing activity 8 38437 -UBERON:0005415 zone of polarizing activity of pectoral appendage 9 38438 -UBERON:0005416 zone of polarizing activity of pelvic appendage 9 38439 -UBERON:0010328 limb bud mesenchyme 8 38440 -UBERON:4300226 forelimb bud mesenchyme 9 38441 -UBERON:4300231 forelimb wing bud mesenchyme 10 38442 -UBERON:4300227 hindlimb bud mesenchyme 9 38443 -UBERON:4300229 pelvic fin bud mesenchyme 8 38444 -UBERON:0010378 mesenchyme from splanchnopleure 6 38445 -UBERON:0012312 maxillary process ectoderm 6 38446 -UBERON:0012313 1st arch maxillary ectoderm 6 38447 -UBERON:0013154 1st arch maxillary endoderm 6 38448 -UBERON:0013155 1st arch mandibular ectoderm 6 38449 -UBERON:0013156 1st arch mandibular endoderm 6 38450 -UBERON:0014702 frontonasal process epithelium 6 38451 -UBERON:0005233 medial-nasal process ectoderm 7 38452 -UBERON:0009206 lateral nasal process surface ectoderm 7 38453 -UBERON:0014705 median lingual swelling epithelium 6 38454 -UBERON:0014711 carapacial ridge mesenchyme 6 38455 -UBERON:0014712 carapacial ridge ectoderm 6 38456 -UBERON:0014781 stomodeal ectoderm 6 38457 -UBERON:0015142 falciform fat 6 38458 -UBERON:0016545 pharyngeal ectoderm 6 38459 -UBERON:0005879 pharyngeal cleft 7 38460 -UBERON:0005872 1st arch pharyngeal cleft 8 38461 -UBERON:0005873 2nd arch pharyngeal cleft 8 38462 -UBERON:0005874 3rd arch pharyngeal cleft 8 38463 -UBERON:0005875 4th arch pharyngeal cleft 8 38464 -UBERON:0013157 1st arch maxillary-mandibular cleft 8 38465 -UBERON:0034953 embryonic lymph sac 6 38466 -UBERON:0011765 jugular lymph sac 7 38467 -UBERON:0034958 retroperitoneal embryonic lymph sac 7 38468 -UBERON:0036256 iliac lymph sac 7 38469 -UBERON:0036260 embryonic cisterna chyli 7 38470 -UBERON:0035148 presumptive axochord 6 38471 -UBERON:0036146 cardiopharyngeal field 6 38472 -UBERON:2000004 anterior axial hypoblast 6 38473 -UBERON:2000309 external yolk syncytial layer 6 38474 -UBERON:2000712 internal yolk syncytial layer 6 38475 -UBERON:2000993 lateral wall neural rod 6 38476 -UBERON:2001125 organizer inducing center 6 38477 -UBERON:2001126 noninvoluting endocytic marginal cell cluster 6 38478 -UBERON:2001256 lateral floor plate 6 38479 -UBERON:2001257 medial floor plate 6 38480 -UBERON:2001378 axial hypoblast 6 38481 -UBERON:2001431 primitive olfactory epithelium 6 38482 -UBERON:2002215 otic vesicle protrusion 6 38483 -UBERON:2000232 lateral semicircular canal primordium 7 38484 -UBERON:2000412 posterior semicircular canal primordium 7 38485 -UBERON:2000469 anterior semicircular canal primordium 7 38486 -UBERON:2002216 otic vesicle ventral protrusion 7 38487 -UBERON:2005039 anterior lateral mesoderm 6 38488 -UBERON:2005066 bulbus arteriosus outer layer 6 38489 -UBERON:2005122 dorsal axial hypoblast 6 38490 -UBERON:2007014 anterior presumptive neural plate 6 38491 -UBERON:2007015 posterior presumptive neural plate 6 38492 -UBERON:2007023 posterior neural keel 6 38493 -UBERON:2007024 anterior neural keel 6 38494 -UBERON:2007025 midbrain neural keel 6 38495 -UBERON:2007026 forebrain neural keel 6 38496 -UBERON:2007028 spinal cord neural keel 6 38497 -UBERON:2007029 hindbrain neural keel 6 38498 -UBERON:2007030 posterior neural rod 6 38499 -UBERON:2007031 anterior neural rod 6 38500 -UBERON:2007032 midbrain neural rod 6 38501 -UBERON:2007034 forebrain neural rod 6 38502 -UBERON:2007035 spinal cord neural rod 6 38503 -UBERON:2007036 hindbrain neural rod 6 38504 -UBERON:2007041 forebrain neural tube 6 38505 -UBERON:2007042 spinal cord neural tube 6 38506 -UBERON:2007043 hindbrain neural tube 6 38507 -UBERON:6000096 ventral furrow 6 38508 -UBERON:6000097 cephalic furrow 6 38509 -UBERON:6000104 mesoderm anlage 6 38510 -UBERON:6004203 adult clypeo-labral anlage 6 38511 -UBERON:6005434 visual anlage 6 38512 -UBERON:6005436 trunk mesoderm anlage 6 38513 -UBERON:6005439 clypeo-labral anlage 6 38514 -UBERON:6017021 abdominal histoblast anlage 6 38515 -UBERON:0005292 extraembryonic tissue 5 38516 -UBERON:0001040 yolk sac 6 38517 -UBERON:0008852 visceral yolk sac 7 38518 -UBERON:0008853 parietal yolk sac 7 38519 -UBERON:0003254 amniotic ectoderm 6 38520 -UBERON:0003257 yolk sac endoderm 6 38521 -UBERON:0003422 mesenchyme of umbilical cord 6 38522 -UBERON:0005667 connecting stalk mesoderm 7 38523 -UBERON:0004021 spongiotrophoblast layer 6 38524 -UBERON:0004027 chorionic plate 6 38525 -UBERON:0004345 trophectoderm 6 38526 -UBERON:0004877 visceral endoderm 6 38527 -UBERON:0004044 anterior visceral endoderm 7 38528 -UBERON:0004878 distal visceral endoderm 7 38529 -UBERON:0005728 extraembryonic mesoderm 6 38530 -UBERON:0008945 extraembryonic endoderm 6 38531 -UBERON:0010303 extraembryonic epithelium 6 38532 -UBERON:0010302 amnioserosa 7 38533 -UBERON:0011921 connecting stalk blood islands 7 38534 -UBERON:0010333 extraembryonic membrane mesenchyme 6 38535 -UBERON:0003262 amniotic mesoderm 7 38536 -UBERON:0003265 chorionic mesenchyme 7 38537 -UBERON:0003316 mesenchyme of yolk sac 7 38538 -UBERON:0012615 umbilical smooth muscle 6 38539 -UBERON:0005426 lens vesicle 5 38540 -UBERON:0005427 corneal primordium 5 38541 -UBERON:0005443 filum terminale 5 38542 -UBERON:0005497 non-neural ectoderm 5 38543 -UBERON:2007013 preplacodal ectoderm 6 38544 -UBERON:0005932 bulb of hair follicle 5 38545 -UBERON:0011936 vibrissa hair bulb 6 38546 -UBERON:0005933 hair root sheath 5 38547 -UBERON:0005941 hair inner root sheath 6 38548 -UBERON:0011938 vibrissa inner root sheath 7 38549 -UBERON:0005942 hair outer root sheath 6 38550 -UBERON:0011939 vibrissa outer root sheath 7 38551 -UBERON:0011937 vibrissa root sheath 6 38552 -UBERON:0011938 vibrissa inner root sheath 7 38553 -UBERON:0011939 vibrissa outer root sheath 7 38554 -UBERON:0005943 hair root sheath matrix 5 38555 -UBERON:0005969 eye trabecular meshwork 5 38556 -UBERON:0007118 umbilicus 5 38557 -UBERON:0007475 matrix-based tissue 5 38558 -UBERON:0007688 anlage 5 38559 -UBERON:0004140 primary heart field 6 38560 -UBERON:0005732 paired limb/fin field 6 38561 -UBERON:0005729 pectoral appendage field 7 38562 -UBERON:0005730 pelvic appendage field 7 38563 -UBERON:0005731 fin field 7 38564 -UBERON:0005733 limb field 7 38565 -UBERON:0007687 kidney field 6 38566 -UBERON:0009847 prostate field 6 38567 -UBERON:0009889 secondary heart field 6 38568 -UBERON:0022361 lung field 6 38569 -UBERON:0036146 cardiopharyngeal field 6 38570 -UBERON:6000104 mesoderm anlage 6 38571 -UBERON:6001135 proneural cluster 6 38572 -UBERON:6004203 adult clypeo-labral anlage 6 38573 -UBERON:6005427 ectoderm anlage 6 38574 -UBERON:6005428 dorsal ectoderm anlage 6 38575 -UBERON:6005434 visual anlage 6 38576 -UBERON:6005436 trunk mesoderm anlage 6 38577 -UBERON:6005439 clypeo-labral anlage 6 38578 -UBERON:6017021 abdominal histoblast anlage 6 38579 -UBERON:6110746 presumptive prothoracic metatarsus 6 38580 -UBERON:6110811 presumptive arista 6 38581 -UBERON:0008324 erectile tissue 5 38582 -UBERON:0006609 corpus cavernosum 6 38583 -UBERON:0004713 corpus cavernosum penis 7 38584 -UBERON:0006608 corpus cavernosum clitoridis 7 38585 -UBERON:0006653 glans clitoris 6 38586 -UBERON:0011183 corpus spongiosum of penis 6 38587 -UBERON:0013659 spongiose tissue of corpus cavernosum maxillaris 6 38588 -UBERON:0008867 trabecular network of bone 5 38589 -UBERON:0009010 periurethral tissue 5 38590 -UBERON:0011183 corpus spongiosum of penis 6 38591 -UBERON:0009120 gill filament 5 38592 -UBERON:0010202 lateral line 5 38593 -UBERON:0003095 dorsal lateral line 6 38594 -UBERON:0006334 posterior lateral line 6 38595 -UBERON:0018369 upper lateral line 6 38596 -UBERON:0018370 ventral lateral line 6 38597 -UBERON:2001470 anterior lateral line 6 38598 -UBERON:0003090 supraorbital lateral line 7 38599 -UBERON:0003093 occipital lateral line 7 38600 -UBERON:0003094 infraorbital lateral line 7 38601 -UBERON:0003096 middle lateral line 7 38602 -UBERON:2000259 mandibular lateral line 7 38603 -UBERON:2000424 opercular lateral line 7 38604 -UBERON:2000464 otic lateral line 7 38605 -UBERON:0010232 placodal ectoderm 5 38606 -UBERON:0010269 filum terminale internum 5 38607 -UBERON:0010270 filum terminale externum 5 38608 -UBERON:0010536 nephron progenitor 5 38609 -UBERON:0010537 mesonephric nephron progenitor 6 38610 -UBERON:0011800 dermal pulp of feather shaft 5 38611 -UBERON:0011806 dermis of feather follicle 5 38612 -UBERON:0011807 epidermis of feather follicle 5 38613 -UBERON:0011808 outer epidermal layer of feather follicle 6 38614 -UBERON:0011809 inner epidermal layer of feather follicle 6 38615 -UBERON:0011818 superficial fascia 5 38616 -UBERON:0012327 pearly penile papule 5 38617 -UBERON:0012328 penile spine 5 38618 -UBERON:0012376 retromolar triangle 5 38619 -UBERON:0013182 core of melon organ 5 38620 -UBERON:0013655 elastica externa of notochord 5 38621 -UBERON:0015757 heterogeneous tissue 5 38622 -UBERON:0034769 lymphomyeloid tissue 6 38623 -UBERON:0001744 lymphoid tissue 7 38624 -UBERON:0000444 lymphoid follicle 8 38625 -UBERON:0001249 spleen lymphoid follicle 9 38626 -UBERON:0004041 spleen primary B follicle 10 38627 -UBERON:0004042 spleen secondary B follicle 10 38628 -UBERON:0001745 secondary nodular lymphoid tissue 9 38629 -UBERON:0004042 spleen secondary B follicle 10 38630 -UBERON:0010753 lymph node secondary follicle 10 38631 -UBERON:0010386 Peyer's patch follicle 9 38632 -UBERON:0010422 primary nodular lymphoid tissue 9 38633 -UBERON:0004041 spleen primary B follicle 10 38634 -UBERON:0010395 lymph node primary follicle 10 38635 -UBERON:0010423 primary lymphoid nodule of tonsil 10 38636 -UBERON:0010748 lymph node follicle 9 38637 -UBERON:0010395 lymph node primary follicle 10 38638 -UBERON:0010753 lymph node secondary follicle 10 38639 -UBERON:0003483 thymus lymphoid tissue 8 38640 -UBERON:0010754 germinal center 8 38641 -UBERON:0004697 Peyer's patch germinal center 9 38642 -UBERON:0005196 spleen germinal center 9 38643 -UBERON:0009039 lymph node germinal center 9 38644 -UBERON:0013688 tonsil germinal center 9 38645 -UBERON:0010755 secondary follicle corona 8 38646 -UBERON:0010420 lymph node follicular corona 9 38647 -UBERON:0010421 spleen B cell corona 9 38648 -UBERON:0010756 spleen follicular dendritic cell network 8 38649 -UBERON:0012069 epithelium-associated lymphoid tissue 8 38650 -UBERON:0001961 mucosa-associated lymphoid tissue 9 38651 -UBERON:0001962 gut-associated lymphoid tissue 10 38652 -UBERON:0001211 Peyer's patch 11 38653 -UBERON:0003453 large intestine Peyer's patch 12 38654 -UBERON:0003454 small intestine Peyer's patch 12 38655 -UBERON:0001735 tonsillar ring 11 38656 -UBERON:0002372 tonsil 11 38657 -UBERON:0001732 pharyngeal tonsil 12 38658 -UBERON:0002373 palatine tonsil 12 38659 -UBERON:0003949 tubal tonsil 12 38660 -UBERON:0007250 lingual tonsil 12 38661 -UBERON:0012330 nasal-associated lymphoid tissue 11 38662 -UBERON:0001732 pharyngeal tonsil 12 38663 -UBERON:0013478 cecal tonsil 11 38664 -UBERON:0001963 bronchial-associated lymphoid tissue 10 38665 -UBERON:0013689 appendix lymphoid tissue 8 38666 -UBERON:0012429 hematopoietic tissue 7 38667 -UBERON:0015886 root of nail 5 38668 -UBERON:0018303 adrenal tissue 5 38669 -UBERON:0018268 type 1 adrenal tissue 6 38670 -UBERON:0018269 type 2 adrenal tissue 6 38671 -UBERON:0018270 type 3 adrenal tissue 6 38672 -UBERON:0018271 type 4 adrenal tissue 6 38673 -UBERON:0018549 ventral wall of dorsal aorta 5 38674 -UBERON:1000010 mole 5 38675 -UBERON:2000033 intermediate cell mass of mesoderm 5 38676 -UBERON:2000210 gigantocellular part of magnocellular preoptic nucleus 5 38677 -UBERON:2000228 lateral line primordium 5 38678 -UBERON:2001157 posterior lateral line primordium 6 38679 -UBERON:2005115 primary posterior lateral line primordium 7 38680 -UBERON:2005116 secondary posterior lateral line primordium 7 38681 -UBERON:2005117 anterior lateral line primordium 6 38682 -UBERON:2005118 middle lateral line primordium 6 38683 -UBERON:2000233 lower oral valve 5 38684 -UBERON:2000267 primary olfactory fiber layer 5 38685 -UBERON:2000319 branchiostegal membrane 5 38686 -UBERON:2000352 external cellular layer 5 38687 -UBERON:2000358 granular layer corpus cerebelli 5 38688 -UBERON:2000394 molecular layer corpus cerebelli 5 38689 -UBERON:2000451 upper oral valve 5 38690 -UBERON:2000573 internal cellular layer 5 38691 -UBERON:2000582 saccus dorsalis 5 38692 -UBERON:2000636 cerebellar crest 5 38693 -UBERON:2000766 granular layer valvula cerebelli 5 38694 -UBERON:2000913 molecular layer valvula cerebelli 5 38695 -UBERON:2001179 epidermal superficial stratum 5 38696 -UBERON:2001181 epidermal intermediate stratum 5 38697 -UBERON:2001200 corpuscles of Stannius 5 38698 -UBERON:2001347 stratum fibrosum et griseum superficiale 5 38699 -UBERON:2001348 stratum marginale 5 38700 -UBERON:2001349 stratum opticum 5 38701 -UBERON:2001352 stratum periventriculare 5 38702 -UBERON:2001357 alar plate midbrain 5 38703 -UBERON:2001821 notochord posterior region 5 38704 -UBERON:2002145 anterior swim bladder bud 5 38705 -UBERON:2002185 climbing fiber 5 38706 -UBERON:2002193 dorsolateral septum 5 38707 -UBERON:2002195 epidermal placode 5 38708 -UBERON:2002210 mossy fiber 5 38709 -UBERON:2002218 parallel fiber 5 38710 -UBERON:2002223 pillar of the semicircular canal 5 38711 -UBERON:2007054 pillar of the anterior semicircular canal 6 38712 -UBERON:2007055 pillar of the lateral semicircular canal 6 38713 -UBERON:2002240 Purkinje cell layer corpus cerebelli 5 38714 -UBERON:2002241 Purkinje cell layer valvula cerebelli 5 38715 -UBERON:2002242 scale primordium 5 38716 -UBERON:2005029 rostral blood island 5 38717 -UBERON:2005072 endocardial ring 5 38718 -UBERON:2005073 atrioventricular ring 6 38719 -UBERON:2005256 intervillus pockets 5 38720 -UBERON:2007001 dorso-rostral cluster 5 38721 -UBERON:2007004 epiphysial cluster 5 38722 -UBERON:2007059 neurogenic field 5 38723 -UBERON:2007060 dorsolateral field 6 38724 -UBERON:2007061 epibranchial field 6 38725 -UBERON:2007062 olfactory field 6 38726 -UBERON:3000038 basimandibulare 5 38727 -UBERON:3000393 pars amphibiorum 5 38728 -UBERON:3000395 pars basilaris 5 38729 -UBERON:3000752 pars acromialis 5 38730 -UBERON:3000753 pars glenoidalis of scapula 5 38731 -UBERON:3010328 equatorial belt 5 38732 -UBERON:3010379 inner fin tissue 5 38733 -UBERON:3010380 outer fin tissue 5 38734 -UBERON:3010589 cloacal papilla 5 38735 -UBERON:3010671 ramule palatonasalis 5 38736 -UBERON:3010726 ramus muscularis of glossopharyngeus nerve 5 38737 -UBERON:3010750 descending branch of the vagus nerve 5 38738 -UBERON:3010751 ramus muscularis of vagus nerve 5 38739 -UBERON:3011121 late distal segment 5 38740 -UBERON:4000020 mineralized extracellular matrix 5 38741 -UBERON:4000120 mineralized avascular GAG-rich matrix 6 38742 -UBERON:4000059 avascular GAG-rich matrix 5 38743 -UBERON:4000119 non-mineralized avascular GAG-rich matrix 6 38744 -UBERON:4000120 mineralized avascular GAG-rich matrix 6 38745 -UBERON:4000105 limiting layer of elasmoid scale 5 38746 -UBERON:0000481 multi-tissue structure 4 38747 -UBERON:0000042 serous membrane 5 38748 -UBERON:0000977 pleura 6 38749 -UBERON:0001260 serosa of urinary bladder 6 38750 -UBERON:0001297 serosa of uterus 6 38751 -UBERON:0003885 mesometrium 7 38752 -UBERON:0010391 parametrium 8 38753 -UBERON:0001975 serosa of esophagus 6 38754 -UBERON:0003283 mesentery of oesophagus 7 38755 -UBERON:0002095 mesentery 6 38756 -UBERON:0001342 mesovarium 7 38757 -UBERON:0003282 mesentery of heart 7 38758 -UBERON:0003283 mesentery of oesophagus 7 38759 -UBERON:0003284 mesentery of midgut 7 38760 -UBERON:0005712 midgut duodenum mesentery 8 38761 -UBERON:0003393 mesentery of urinary system 7 38762 -UBERON:0003394 mesentery of hindgut 7 38763 -UBERON:0003885 mesometrium 7 38764 -UBERON:0010391 parametrium 8 38765 -UBERON:0004854 gastrointestinal system mesentery 7 38766 -UBERON:0001170 mesentery of small intestine 8 38767 -UBERON:0003397 mesentery of duodenum 9 38768 -UBERON:0005711 foregut duodenum mesentery 10 38769 -UBERON:0005712 midgut duodenum mesentery 10 38770 -UBERON:0003398 mesentery of jejunum 9 38771 -UBERON:0006359 mesoduodenum 9 38772 -UBERON:0022357 mesentery of ileum 9 38773 -UBERON:0003281 mesentery of stomach 8 38774 -UBERON:0005602 dorsal mesogastrium 9 38775 -UBERON:0005626 ventral mesogastrium 9 38776 -UBERON:0003395 mesentery of rectum 8 38777 -UBERON:0003396 mesentery of colon 8 38778 -UBERON:0005677 caecum mesentery 9 38779 -UBERON:0007826 peritoneal mesentery 7 38780 -UBERON:0001170 mesentery of small intestine 8 38781 -UBERON:0003397 mesentery of duodenum 9 38782 -UBERON:0005711 foregut duodenum mesentery 10 38783 -UBERON:0005712 midgut duodenum mesentery 10 38784 -UBERON:0003398 mesentery of jejunum 9 38785 -UBERON:0006359 mesoduodenum 9 38786 -UBERON:0022357 mesentery of ileum 9 38787 -UBERON:0003396 mesentery of colon 8 38788 -UBERON:0005677 caecum mesentery 9 38789 -UBERON:0009483 mesentery of foregut-midgut junction 7 38790 -UBERON:0009484 dorsal mesentery of mesentery of foregut-midgut junction 8 38791 -UBERON:0009502 ventral mesentery of mesentery of foregut-midgut junction 8 38792 -UBERON:0009664 gut mesentery 7 38793 -UBERON:0012331 mesosalpinx 7 38794 -UBERON:0002357 serous pericardium 6 38795 -UBERON:0002358 peritoneum 6 38796 -UBERON:0007826 peritoneal mesentery 7 38797 -UBERON:0001170 mesentery of small intestine 8 38798 -UBERON:0003397 mesentery of duodenum 9 38799 -UBERON:0005711 foregut duodenum mesentery 10 38800 -UBERON:0005712 midgut duodenum mesentery 10 38801 -UBERON:0003398 mesentery of jejunum 9 38802 -UBERON:0006359 mesoduodenum 9 38803 -UBERON:0022357 mesentery of ileum 9 38804 -UBERON:0003396 mesentery of colon 8 38805 -UBERON:0005677 caecum mesentery 9 38806 -UBERON:0034696 fold of peritoneum 7 38807 -UBERON:0005344 peritoneal vaginal process 8 38808 -UBERON:0007111 Douglas' pouch 8 38809 -UBERON:0011049 uterovesical pouch 8 38810 -UBERON:0012333 ovarian bursa 8 38811 -UBERON:0035201 gastrocolic ligament 8 38812 -UBERON:3010818 hepatic peritoneum 7 38813 -UBERON:3010819 gastrointestinal peritoneum 7 38814 -UBERON:0004782 gastrointestinal system serosa 6 38815 -UBERON:0001201 serosa of stomach 7 38816 -UBERON:0012503 serosa of fundus of stomach 8 38817 -UBERON:0001243 serosa of intestine 7 38818 -UBERON:0001206 serosa of small intestine 8 38819 -UBERON:0001170 mesentery of small intestine 9 38820 -UBERON:0003397 mesentery of duodenum 10 38821 -UBERON:0005711 foregut duodenum mesentery 11 38822 -UBERON:0005712 midgut duodenum mesentery 11 38823 -UBERON:0003398 mesentery of jejunum 10 38824 -UBERON:0006359 mesoduodenum 10 38825 -UBERON:0022357 mesentery of ileum 10 38826 -UBERON:0003336 serosa of duodenum 9 38827 -UBERON:0003397 mesentery of duodenum 10 38828 -UBERON:0005711 foregut duodenum mesentery 11 38829 -UBERON:0005712 midgut duodenum mesentery 11 38830 -UBERON:0003337 serosa of jejunum 9 38831 -UBERON:0003398 mesentery of jejunum 10 38832 -UBERON:0001209 serosa of large intestine 8 38833 -UBERON:0003334 serosa of rectum 9 38834 -UBERON:0003395 mesentery of rectum 10 38835 -UBERON:0003335 serosa of colon 9 38836 -UBERON:0003396 mesentery of colon 10 38837 -UBERON:0005677 caecum mesentery 11 38838 -UBERON:0012498 serosa of appendix 10 38839 -UBERON:0004854 gastrointestinal system mesentery 7 38840 -UBERON:0001170 mesentery of small intestine 8 38841 -UBERON:0003397 mesentery of duodenum 9 38842 -UBERON:0005711 foregut duodenum mesentery 10 38843 -UBERON:0005712 midgut duodenum mesentery 10 38844 -UBERON:0003398 mesentery of jejunum 9 38845 -UBERON:0006359 mesoduodenum 9 38846 -UBERON:0022357 mesentery of ileum 9 38847 -UBERON:0003281 mesentery of stomach 8 38848 -UBERON:0005602 dorsal mesogastrium 9 38849 -UBERON:0005626 ventral mesogastrium 9 38850 -UBERON:0003395 mesentery of rectum 8 38851 -UBERON:0003396 mesentery of colon 8 38852 -UBERON:0005677 caecum mesentery 9 38853 -UBERON:0004783 gall bladder serosa 6 38854 -UBERON:0007181 serosa of infundibulum of uterine tube 6 38855 -UBERON:0007616 layer of synovial tissue 6 38856 -UBERON:0002018 synovial membrane of synovial joint 7 38857 -UBERON:0011233 synovial membrane of synovial tendon sheath 7 38858 -UBERON:0012483 serosa of cloaca 6 38859 -UBERON:0012499 serosa of uterine tube 6 38860 -UBERON:0036553 wall of synovial tendon sheath 6 38861 -UBERON:0000073 regional part of nervous system 5 38862 -UBERON:0001948 regional part of spinal cord 6 38863 -UBERON:0005723 floor plate spinal cord region 7 38864 -UBERON:0005844 spinal cord segment 7 38865 -UBERON:0002726 cervical spinal cord 8 38866 -UBERON:0002792 lumbar spinal cord 8 38867 -UBERON:0007716 lumbar subsegment of spinal cord 9 38868 -UBERON:0006447 fifth lumbar spinal cord segment 10 38869 -UBERON:0006448 first lumbar spinal cord segment 10 38870 -UBERON:0006449 third lumbar spinal cord segment 10 38871 -UBERON:0006450 second lumbar spinal cord segment 10 38872 -UBERON:0006451 fourth lumbar spinal cord segment 10 38873 -UBERON:0003038 thoracic spinal cord 8 38874 -UBERON:0007715 thoracic subsegment of spinal cord 9 38875 -UBERON:0006452 fourth thoracic spinal cord segment 10 38876 -UBERON:0006453 fifth thoracic spinal cord segment 10 38877 -UBERON:0006454 sixth thoracic spinal cord segment 10 38878 -UBERON:0006455 seventh thoracic spinal cord segment 10 38879 -UBERON:0006456 eighth thoracic spinal cord segment 10 38880 -UBERON:0006457 first thoracic spinal cord segment 10 38881 -UBERON:0006458 second thoracic spinal cord segment 10 38882 -UBERON:0006459 third thoracic spinal cord segment 10 38883 -UBERON:0006465 ninth thoracic spinal cord segment 10 38884 -UBERON:0006466 tenth thoracic spinal cord segment 10 38885 -UBERON:0006467 eleventh thoracic spinal cord segment 10 38886 -UBERON:0006468 twelfth thoracic spinal cord segment 10 38887 -UBERON:0005437 conus medullaris 8 38888 -UBERON:0005843 sacral spinal cord 8 38889 -UBERON:0005845 caudal segment of spinal cord 8 38890 -UBERON:0007714 cervical subsegment of spinal cord 8 38891 -UBERON:0006469 C1 segment of cervical spinal cord 9 38892 -UBERON:0006470 C8 segment of cervical spinal cord 9 38893 -UBERON:0006488 C3 segment of cervical spinal cord 9 38894 -UBERON:0006489 C2 segment of cervical spinal cord 9 38895 -UBERON:0006490 C4 segment of cervical spinal cord 9 38896 -UBERON:0006491 C5 segment of cervical spinal cord 9 38897 -UBERON:0006492 C6 segment of cervical spinal cord 9 38898 -UBERON:0006493 C7 segment of cervical spinal cord 9 38899 -UBERON:0007717 sacral subsegment of spinal cord 8 38900 -UBERON:0006460 first sacral spinal cord segment 9 38901 -UBERON:0006461 second sacral spinal cord segment 9 38902 -UBERON:0006462 third sacral spinal cord segment 9 38903 -UBERON:0006463 fourth sacral spinal cord segment 9 38904 -UBERON:0006464 fifth sacral spinal cord segment 9 38905 -UBERON:0002616 regional part of brain 6 38906 -UBERON:0000203 pallium 7 38907 -UBERON:0000204 ventral part of telencephalon 7 38908 -UBERON:0000369 corpus striatum 7 38909 -UBERON:0000445 habenular trigone 7 38910 -UBERON:0000451 prefrontal cortex 7 38911 -UBERON:0000988 pons 7 38912 -UBERON:0001384 primary motor cortex 7 38913 -UBERON:0001393 auditory cortex 7 38914 -UBERON:0009897 right auditory cortex 8 38915 -UBERON:0009898 left auditory cortex 8 38916 -UBERON:0001885 dentate gyrus of hippocampal formation 7 38917 -UBERON:0001890 forebrain 7 38918 -UBERON:0001891 midbrain 7 38919 -UBERON:2007003 ventro-caudal cluster 8 38920 -UBERON:0001893 telencephalon 7 38921 -UBERON:0001894 diencephalon 7 38922 -UBERON:0001897 dorsal plus ventral thalamus 7 38923 -UBERON:0001898 hypothalamus 7 38924 -UBERON:0001899 epithalamus 7 38925 -UBERON:0001900 ventral thalamus 7 38926 -UBERON:0001904 habenula 7 38927 -UBERON:0001928 preoptic area 7 38928 -UBERON:0001943 midbrain tegmentum 7 38929 -UBERON:0001945 superior colliculus 7 38930 -UBERON:0001946 inferior colliculus 7 38931 -UBERON:0001950 neocortex 7 38932 -UBERON:0001954 Ammon's horn 7 38933 -UBERON:0002028 hindbrain 7 38934 -UBERON:0002037 cerebellum 7 38935 -UBERON:0002191 subiculum 7 38936 -UBERON:0002264 olfactory bulb 7 38937 -UBERON:0002275 reticular formation 7 38938 -UBERON:0002298 brainstem 7 38939 -UBERON:0002314 midbrain tectum 7 38940 -UBERON:0002421 hippocampal formation 7 38941 -UBERON:0002430 lateral hypothalamic area 7 38942 -UBERON:0002434 pituitary stalk 7 38943 -UBERON:0002474 cerebellar peduncular complex 7 38944 -UBERON:0002550 anterior hypothalamic region 7 38945 -UBERON:0002555 intermediate hypothalamic region 7 38946 -UBERON:0002560 temporal operculum 7 38947 -UBERON:0002567 basal part of pons 7 38948 -UBERON:0002590 prepyriform area 7 38949 -UBERON:0002593 orbital operculum 7 38950 -UBERON:0002605 precentral operculum 7 38951 -UBERON:0002620 tuber cinereum 7 38952 -UBERON:0002648 anterior median eminence 7 38953 -UBERON:0002652 posterior median eminence 7 38954 -UBERON:0002691 ventral tegmental area 7 38955 -UBERON:0002743 basal forebrain 7 38956 -UBERON:0002749 regional part of cerebellar cortex 7 38957 -UBERON:0002245 cerebellar hemisphere 8 38958 -UBERON:0014889 left hemisphere of cerebellum 9 38959 -UBERON:0014890 right hemisphere of cerebellum 9 38960 -UBERON:0004004 cerebellum lobule 8 38961 -UBERON:0004003 cerebellum hemisphere lobule 9 38962 -UBERON:0003013 alar central lobule 10 38963 -UBERON:0003015 anterior quadrangular lobule 10 38964 -UBERON:0005347 copula pyramidis 10 38965 -UBERON:0005348 ansiform lobule 10 38966 -UBERON:0005976 ansiform lobule crus I 11 38967 -UBERON:0005977 ansiform lobule crus II 11 38968 -UBERON:0005350 lobule simplex 10 38969 -UBERON:0005351 paraflocculus 10 38970 -UBERON:0006121 hemispheric lobule VIII 10 38971 -UBERON:0023998 cerebellum hemispheric lobule II 10 38972 -UBERON:0023999 cerebellum hemispheric lobule III 10 38973 -UBERON:0024000 cerebellum hemispheric lobule IV 10 38974 -UBERON:0024001 cerebellum hemispheric lobule V 10 38975 -UBERON:0024003 cerebellum hemispheric lobule VII 10 38976 -UBERON:0024009 cerebellum hemispheric lobule X 10 38977 -UBERON:0027285 paravermis lobule area 10 38978 -UBERON:0028918 paravermic lobule II 11 38979 -UBERON:0028919 paravermic lobule III 11 38980 -UBERON:0028920 paravermic lobule IV 11 38981 -UBERON:0028921 paravermic lobule IX 11 38982 -UBERON:0028922 paravermic lobule V 11 38983 -UBERON:0028923 paravermic lobule VI 11 38984 -UBERON:0028924 paravermic lobule VII 11 38985 -UBERON:0028925 paravermic lobule VIII 11 38986 -UBERON:0036043 paravermic lobule X 11 38987 -UBERON:0036063 quadrangular lobule 10 38988 -UBERON:0004070 cerebellum vermis lobule 9 38989 -UBERON:0003021 central lobule 10 38990 -UBERON:0004074 cerebellum vermis lobule I 10 38991 -UBERON:0004075 cerebellum vermis lobule II 10 38992 -UBERON:0004076 cerebellum vermis lobule III 10 38993 -UBERON:0004077 cerebellum vermis lobule IV 10 38994 -UBERON:0004078 cerebellum vermis lobule IX 10 38995 -UBERON:0004079 cerebellum vermis lobule V 10 38996 -UBERON:0004080 cerebellum vermis lobule VI 10 38997 -UBERON:0004081 cerebellum vermis lobule VII 10 38998 -UBERON:0005345 cerebellum vermis lobule VIIA 11 38999 -UBERON:0005346 cerebellum vermis lobule VIIB 11 39000 -UBERON:0004082 cerebellum vermis lobule VIII 10 39001 -UBERON:0004083 cerebellum vermis lobule X 10 39002 -UBERON:0005349 paramedian lobule 10 39003 -UBERON:0007763 cerebellum vermis culmen 10 39004 -UBERON:0004006 cerebellum intermediate zone 8 39005 -UBERON:0004720 cerebellar vermis 8 39006 -UBERON:0003941 cerebellum anterior vermis 9 39007 -UBERON:0004009 cerebellum posterior vermis 9 39008 -UBERON:0024037 vermis of the flocculonodular lobe of the cerebellum 9 39009 -UBERON:0005293 cerebellum lobe 8 39010 -UBERON:0002131 anterior lobe of cerebellum 9 39011 -UBERON:0003012 flocculonodular lobe 9 39012 -UBERON:0004002 posterior lobe of cerebellum 9 39013 -UBERON:0014644 cerebrocerebellum 8 39014 -UBERON:0014647 hemisphere part of cerebellar anterior lobe 8 39015 -UBERON:0023998 cerebellum hemispheric lobule II 9 39016 -UBERON:0023999 cerebellum hemispheric lobule III 9 39017 -UBERON:0024000 cerebellum hemispheric lobule IV 9 39018 -UBERON:0024001 cerebellum hemispheric lobule V 9 39019 -UBERON:0014648 hemisphere part of cerebellar posterior lobe 8 39020 -UBERON:0005350 lobule simplex 9 39021 -UBERON:0005976 ansiform lobule crus I 9 39022 -UBERON:0005977 ansiform lobule crus II 9 39023 -UBERON:0006121 hemispheric lobule VIII 9 39024 -UBERON:0025677 paravermis parts of the cerebellar cortex 8 39025 -UBERON:0027309 paravermis of the posterior lobe of the cerebellum 9 39026 -UBERON:0027310 paravermis of the anterior lobe of the cerebellum 9 39027 -UBERON:0027331 flocculonodular lobe, hemisphere portion 8 39028 -UBERON:0001063 flocculus 9 39029 -UBERON:0005351 paraflocculus 9 39030 -UBERON:0024009 cerebellum hemispheric lobule X 9 39031 -UBERON:0036043 paravermic lobule X 9 39032 -UBERON:0036044 cerebellum vermis lobule VIIAf 8 39033 -UBERON:0036065 cerebellum vermis lobule VIIAt 8 39034 -UBERON:0002770 posterior hypothalamic region 7 39035 -UBERON:0002894 olfactory cortex 7 39036 -UBERON:0002895 secondary olfactory cortex 7 39037 -UBERON:0002911 parietal operculum 7 39038 -UBERON:0002922 olfactory trigone 7 39039 -UBERON:0002947 frontal operculum 7 39040 -UBERON:0002954 dorsal hypothalamic area 7 39041 -UBERON:0002995 substantia nigra pars lateralis 7 39042 -UBERON:0003027 cingulate cortex 7 39043 -UBERON:0003217 neural lobe of neurohypophysis 7 39044 -UBERON:0003307 floor plate of midbrain 7 39045 -UBERON:0003308 floor plate of telencephalon 7 39046 -UBERON:0003309 floor plate of diencephalon 7 39047 -UBERON:0003310 floor plate of metencephalon 7 39048 -UBERON:0003311 floor plate of medulla oblongata 7 39049 -UBERON:0003876 hippocampal field 7 39050 -UBERON:0003881 CA1 field of hippocampus 8 39051 -UBERON:0003882 CA2 field of hippocampus 8 39052 -UBERON:0003883 CA3 field of hippocampus 8 39053 -UBERON:0003884 CA4 field of hippocampus 8 39054 -UBERON:0004069 accessory olfactory bulb 7 39055 -UBERON:0004683 parasubiculum 7 39056 -UBERON:0004684 raphe nuclei 7 39057 -UBERON:0004703 dorsal thalamus 7 39058 -UBERON:0013683 left dorsal thalamus 8 39059 -UBERON:0013684 right dorsal thalamus 8 39060 -UBERON:0004725 piriform cortex 7 39061 -UBERON:0005159 pyramid of medulla oblongata 7 39062 -UBERON:0005408 circumventricular organ 7 39063 -UBERON:0010134 secretory circumventricular organ 8 39064 -UBERON:0001905 pineal body 9 39065 -UBERON:0002139 subcommissural organ 9 39066 -UBERON:0002197 median eminence of neurohypophysis 9 39067 -UBERON:0002198 neurohypophysis 9 39068 -UBERON:0010135 sensory circumventricular organ 8 39069 -UBERON:0002162 area postrema 9 39070 -UBERON:0002219 subfornical organ 9 39071 -UBERON:0002689 supraoptic crest 9 39072 -UBERON:0034943 saccus vasculosus 8 39073 -UBERON:0005807 rostral ventrolateral medulla 7 39074 -UBERON:0006083 perirhinal cortex 7 39075 -UBERON:0023936 perirhinal cortex of Burwell et al 1995 8 39076 -UBERON:0025581 perirhinal cortex of primate of Burwell et al 1995 9 39077 -UBERON:0025584 perirhinal cortex of rodent of Burwell et al 1995 9 39078 -UBERON:0006125 subdivision of diagonal band 7 39079 -UBERON:0006123 horizontal limb of the diagonal band 8 39080 -UBERON:0006124 vertical limb of the diagonal band 8 39081 -UBERON:0006446 rostral middle frontal gyrus 7 39082 -UBERON:0006487 Hadjikhani et al. (1998) visuotopic area V2d 7 39083 -UBERON:0007334 nidopallium 7 39084 -UBERON:0007347 hyperpallium 7 39085 -UBERON:0007349 mesopallium 7 39086 -UBERON:0007350 arcopallium 7 39087 -UBERON:0007412 midbrain raphe nuclei 7 39088 -UBERON:0007626 subparaventricular zone 7 39089 -UBERON:0007707 superior cerebellar peduncle of midbrain 7 39090 -UBERON:0007709 superior cerebellar peduncle of pons 7 39091 -UBERON:0007769 medial preoptic region 7 39092 -UBERON:0008881 rostral migratory stream 7 39093 -UBERON:0009834 dorsolateral prefrontal cortex 7 39094 -UBERON:0009835 anterior cingulate cortex 7 39095 -UBERON:0009840 lower rhombic lip 7 39096 -UBERON:0009841 upper rhombic lip 7 39097 -UBERON:0009899 pole of cerebral hemisphere 7 39098 -UBERON:0002576 temporal pole 8 39099 -UBERON:0002795 frontal pole 8 39100 -UBERON:0002902 occipital pole 8 39101 -UBERON:0009951 main olfactory bulb 7 39102 -UBERON:0010262 operculum of brain 7 39103 -UBERON:0011172 retrorubral area of midbrain reticular nucleus 7 39104 -UBERON:0011173 anterior division of bed nuclei of stria terminalis 7 39105 -UBERON:0011177 posterior division of bed nuclei of stria terminalis 7 39106 -UBERON:0011768 pineal gland stalk 7 39107 -UBERON:0012170 core of nucleus accumbens 7 39108 -UBERON:0012171 shell of nucleus accumbens 7 39109 -UBERON:0013529 Brodmann area 7 39110 -UBERON:0002436 primary visual cortex 8 39111 -UBERON:0004717 Brodmann (1909) area 29 8 39112 -UBERON:0004718 Brodmann (1909) area 26 8 39113 -UBERON:0006095 anterior transverse temporal area 41 8 39114 -UBERON:0006096 posterior transverse temporal area 42 8 39115 -UBERON:0006099 Brodmann (1909) area 1 8 39116 -UBERON:0006100 Brodmann (1909) area 3 8 39117 -UBERON:0006101 Brodmann (1909) area 24 8 39118 -UBERON:0006102 Brodmann (1909) area 35 8 39119 -UBERON:0006104 Brodmann (1909) area 36 8 39120 -UBERON:0006471 Brodmann (1909) area 5 8 39121 -UBERON:0006472 Brodmann (1909) area 6 8 39122 -UBERON:0006473 Brodmann (1909) area 18 8 39123 -UBERON:0006474 Brodmann (1909) area 30 8 39124 -UBERON:0006475 Brodmann (1909) area 31 8 39125 -UBERON:0006476 Brodmann (1909) area 33 8 39126 -UBERON:0006477 Brodmann (1909) area 34 8 39127 -UBERON:0006478 Brodmann (1909) area 37 8 39128 -UBERON:0006479 Brodmann (1909) area 38 8 39129 -UBERON:0006480 Brodmann (1909) area 39 8 39130 -UBERON:0006481 Brodmann (1909) area 44 8 39131 -UBERON:0006482 Brodmann (1909) area 45 8 39132 -UBERON:0006483 Brodmann (1909) area 46 8 39133 -UBERON:0006484 Brodmann (1909) area 47 8 39134 -UBERON:0006485 Brodmann (1909) area 48 8 39135 -UBERON:0006486 Brodmann (1909) area 52 8 39136 -UBERON:0013528 Brodmann (1909) area 11 8 39137 -UBERON:0013533 Brodmann (1909) area 2 8 39138 -UBERON:0013535 Brodmann (1909) area 4 8 39139 -UBERON:0013538 Brodmann (1909) area 7 8 39140 -UBERON:0013539 Brodmann (1909) area 8 8 39141 -UBERON:0013540 Brodmann (1909) area 9 8 39142 -UBERON:0013541 Brodmann (1909) area 10 8 39143 -UBERON:0013543 Brodmann (1909) area 12 8 39144 -UBERON:0013544 Brodmann (1909) area 13 8 39145 -UBERON:0013545 Brodmann (1909) area 14 8 39146 -UBERON:0013546 Brodmann (1909) area 15 8 39147 -UBERON:0013547 Brodmann (1909) area 16 8 39148 -UBERON:0013550 Brodmann (1909) area 19 8 39149 -UBERON:0013551 Brodmann (1909) area 20 8 39150 -UBERON:0013552 Brodmann (1909) area 21 8 39151 -UBERON:0013553 Brodmann (1909) area 22 8 39152 -UBERON:0013554 Brodmann (1909) area 23 8 39153 -UBERON:0013556 Brodmann (1909) area 25 8 39154 -UBERON:0013558 Brodmann (1909) area 27 8 39155 -UBERON:0013559 Brodmann (1909) area 28 8 39156 -UBERON:0013560 Brodmann (1909) area 32 8 39157 -UBERON:0013561 Brodmann (1909) area 43 8 39158 -UBERON:0013562 Brodmann (1909) area 8a 8 39159 -UBERON:0013573 Brodmann (1909) area 40 8 39160 -UBERON:0013531 retrosplenial region 7 39161 -UBERON:0013589 koniocortex 7 39162 -UBERON:0014286 dorsal cap of Kooy 7 39163 -UBERON:0014287 medial accessory olive 7 39164 -UBERON:0014537 periamygdaloid cortex 7 39165 -UBERON:0014568 dorsal tegmental nucleus pars dorsalis 7 39166 -UBERON:0014569 dorsal tegmental nucleus pars ventralis 7 39167 -UBERON:0014589 anterior nucleus of hypothalamus anterior part 7 39168 -UBERON:0014590 anterior nucleus of hypothalamus central part 7 39169 -UBERON:0014591 anterior nucleus of hypothalamus posterior part 7 39170 -UBERON:0014592 anterior nucleus of hypothalamus dorsal part 7 39171 -UBERON:0014593 tuberomammillary nucleus dorsal part 7 39172 -UBERON:0014594 tuberomammillary nucleus ventral part 7 39173 -UBERON:0014595 paraventricular nucleus of the hypothalamus descending division - medial parvicellular part, ventral zone 7 39174 -UBERON:0014596 paraventricular nucleus of the hypothalamus descending division - dorsal parvicellular part 7 39175 -UBERON:0014597 paraventricular nucleus of the hypothalamus descending division - lateral parvicellular part 7 39176 -UBERON:0014598 paraventricular nucleus of the hypothalamus descending division - forniceal part 7 39177 -UBERON:0014599 paraventricular nucleus of the hypothalamus magnocellular division - anterior magnocellular part 7 39178 -UBERON:0014600 paraventricular nucleus of the hypothalamus magnocellular division - medial magnocellular part 7 39179 -UBERON:0014601 paraventricular nucleus of the hypothalamus magnocellular division - posterior magnocellular part 7 39180 -UBERON:0014602 paraventricular nucleus of the hypothalamus descending division 7 39181 -UBERON:0014603 paraventricular nucleus of the hypothalamus magnocellular division 7 39182 -UBERON:0014604 paraventricular nucleus of the hypothalamus parvicellular division 7 39183 -UBERON:0014605 fundus striati 7 39184 -UBERON:0014642 vestibulocerebellum 7 39185 -UBERON:0014643 spinocerebellum 7 39186 -UBERON:0014733 dorsal ventricular ridge of pallium 7 39187 -UBERON:0014734 allocortex 7 39188 -UBERON:0002961 archicortex 8 39189 -UBERON:0014735 paleocortex 8 39190 -UBERON:0014736 periallocortex 7 39191 -UBERON:0014738 medial pallium 7 39192 -UBERON:0014740 dorsal pallium 7 39193 -UBERON:0014741 lateral pallium 7 39194 -UBERON:0014751 P1 area of pallium (Myxiniformes) 7 39195 -UBERON:0014752 P2 area of pallium (Myxiniformes) 7 39196 -UBERON:0014753 P3 area of pallium (Myxiniformes) 7 39197 -UBERON:0014754 P4 area of pallium (Myxiniformes) 7 39198 -UBERON:0014755 P5 area of pallium (Myxiniformes) 7 39199 -UBERON:0014757 hyperpallium apicale 7 39200 -UBERON:0014758 interstitial part of hyperpallium apicale 7 39201 -UBERON:0014759 entopallium 7 39202 -UBERON:0014908 cerebellopontine angle 7 39203 -UBERON:0014912 thalamic eminence 7 39204 -UBERON:0014913 ventral pallium 7 39205 -UBERON:0014918 retrosplenial granular cortex 7 39206 -UBERON:0014951 proisocortex 7 39207 -UBERON:0015599 genu of corpus callosum 7 39208 -UBERON:0016634 premotor cortex 7 39209 -UBERON:0016636 supplemental motor cortex 7 39210 -UBERON:0018141 anterior perforated substance 7 39211 -UBERON:0018263 ventral zone of medial entorhinal cortex 7 39212 -UBERON:0019275 uncinate fasciculus of the forebrain 7 39213 -UBERON:0019278 inferior rostral gyrus 7 39214 -UBERON:0019279 superior rostral gyrus 7 39215 -UBERON:0022230 retrohippocampal region 7 39216 -UBERON:0022268 planum temporale 7 39217 -UBERON:0022352 medial orbital frontal cortex 7 39218 -UBERON:0022353 posterior cingulate cortex 7 39219 -UBERON:0022364 occipital fusiform gyrus 7 39220 -UBERON:0022367 inferior lateral occipital cortex 7 39221 -UBERON:0022368 superior lateral occipital cortex 7 39222 -UBERON:0022383 anterior parahippocampal gyrus 7 39223 -UBERON:0022395 temporal fusiform gyrus 7 39224 -UBERON:0022396 anterior temporal fusiform gyrus 7 39225 -UBERON:0022397 posterior temporal fusiform gyrus 7 39226 -UBERON:0022398 paracingulate gyrus 7 39227 -UBERON:0022425 anterior corona radiata 7 39228 -UBERON:0022426 superior corona radiata 7 39229 -UBERON:0022427 posterior corona radiata 7 39230 -UBERON:0022438 rostral anterior cingulate cortex 7 39231 -UBERON:0022453 olfactory entorhinal cortex 7 39232 -UBERON:0022469 primary olfactory cortex 7 39233 -UBERON:0022534 pericalcarine cortex 7 39234 -UBERON:0022695 orbital gyri complex 7 39235 -UBERON:0022716 lateral orbital frontal cortex 7 39236 -UBERON:0022730 transverse frontopolar gyri complex 7 39237 -UBERON:0022783 paraventricular nucleus of the hypothalamus magnocellular division - posterior magnocellular part medial zone 7 39238 -UBERON:0022791 paraventricular nucleus of the hypothalamus magnocellular division - posterior magnocellular part lateral zone 7 39239 -UBERON:0023415 lateral amygdaloid nucleus, dorsolateral part 7 39240 -UBERON:0023416 lateral amygdaloid nucleus, ventrolateral part 7 39241 -UBERON:0023417 lateral amygdaloid nucleus, ventromedial part 7 39242 -UBERON:0023443 superficial feature part of forebrain 7 39243 -UBERON:0023462 superficial feature part of occipital lobe 7 39244 -UBERON:0023564 cytoarchitectural part of dentate gyrus 7 39245 -UBERON:0023752 intermediate part of hypophysis 7 39246 -UBERON:0023787 subicular complex 7 39247 -UBERON:0023836 gross anatomical parts of the cerebellum 7 39248 -UBERON:0023852 temporoparietal junction 7 39249 -UBERON:0023861 planum polare 7 39250 -UBERON:0023862 hippocampal formation of GP94 7 39251 -UBERON:0023865 medial ventral tegmental area 7 39252 -UBERON:0023867 islands of Calleja of olfactory tubercle 7 39253 -UBERON:0023868 isla magna of Calleja 7 39254 -UBERON:0023928 postrhinal cortex of rodent of Burwell et al 1995 7 39255 -UBERON:0023932 Sommer's sector 7 39256 -UBERON:0023958 bed nuclei of the stria terminalis oval nucleus 7 39257 -UBERON:0024043 rostral portion of the medial accessory olive 7 39258 -UBERON:0024046 superficial feature part of the cerebellum 7 39259 -UBERON:0024078 principal anterior division of supraoptic nucleus 7 39260 -UBERON:0024090 chemoarchitectural part of brain 7 39261 -UBERON:0025736 chemoarchitectural part of striatum 8 39262 -UBERON:0027368 matrix compartment 9 39263 -UBERON:0029001 matrix compartment of caudate nucleus 10 39264 -UBERON:0027245 matrix part of head of caudate nucleus 11 39265 -UBERON:0027246 matrix part of tail of caudate nucleus 11 39266 -UBERON:0029002 matrix compartment of putamen 10 39267 -UBERON:0027371 striosome 9 39268 -UBERON:0029004 striosomal part of caudate nucleus 10 39269 -UBERON:0027244 striosomal part of body of caudate nucleus 11 39270 -UBERON:0029005 striosomal part of putamen 10 39271 -UBERON:0024110 basis pontis 7 39272 -UBERON:0024183 inferior transverse frontopolar gyrus 7 39273 -UBERON:0024193 medial transverse frontopolar gyrus 7 39274 -UBERON:0024201 superior transverse frontopolar gyrus 7 39275 -UBERON:0026765 Hadjikhani et al. (1998) visuotopic partition scheme region 7 39276 -UBERON:0028398 Hadjikhani et al. (1998) visuotopic area V1d 8 39277 -UBERON:0028399 Hadjikhani et al. (1998) visuotopic area V1v 8 39278 -UBERON:0028401 Hadjikhani et al. (1998) visuotopic area V2v 8 39279 -UBERON:0028402 Hadjikhani et al. (1998) visuotopic area V3 8 39280 -UBERON:0028403 Hadjikhani et al. (1998) visuotopic area V3A 8 39281 -UBERON:0028404 Hadjikhani et al. (1998) visuotopic area VP 8 39282 -UBERON:0028405 Hadjikhani et al. (1998) visuotopic area V4v 8 39283 -UBERON:0028406 Hadjikhani et al. (1998) visuotopic area V8 8 39284 -UBERON:0026775 Tootell and Hadjikhani (2001) LOC/LOP complex 7 39285 -UBERON:0026776 Press, Brewer, Dougherty, Wade and Wandell (2001) visuotopic area V7 7 39286 -UBERON:0026777 Ongur, Price, and Ferry (2003) prefrontal cortical partition scheme region 7 39287 -UBERON:0028412 Ongur, Price, and Ferry (2003) area 10p 8 39288 -UBERON:0028413 Ongur, Price, and Ferry (2003) area 10r 8 39289 -UBERON:0028414 Ongur, Price, and Ferry (2003) area 10o 8 39290 -UBERON:0028415 Ongur, Price, and Ferry (2003) area 10m 8 39291 -UBERON:0028416 Ongur, Price, and Ferry (2003) area 11m 8 39292 -UBERON:0028417 Ongur, Price, and Ferry (2003) area 47s 8 39293 -UBERON:0028418 Ongur, Price, and Ferry (2003) area 13b 8 39294 -UBERON:0028419 Ongur, Price, and Ferry (2003) area 13a 8 39295 -UBERON:0028420 Ongur, Price, and Ferry (2003) area 14r 8 39296 -UBERON:0028421 Ongur, Price, and Ferry (2003) area 14c 8 39297 -UBERON:0028422 Ongur, Price, and Ferry (2003) area 24 8 39298 -UBERON:0028423 Ongur, Price, and Ferry (2003) area 25 8 39299 -UBERON:0028424 Ongur, Price, and Ferry (2003) area 32 8 39300 -UBERON:0028425 Ongur, Price, and Ferry (2003) area G 8 39301 -UBERON:0028426 Ongur, Price, and Ferry (2003) area PrCO 8 39302 -UBERON:0028427 Ongur, Price, and Ferry (2003) area 11l 8 39303 -UBERON:0028428 Ongur, Price, and Ferry (2003) area 13m 8 39304 -UBERON:0028429 Ongur, Price, and Ferry (2003) area 13l 8 39305 -UBERON:0028430 Ongur, Price, and Ferry (2003) area 47l 8 39306 -UBERON:0028431 Ongur, Price, and Ferry (2003) area 47m 8 39307 -UBERON:0028432 Ongur, Price, and Ferry (2003) area 47r 8 39308 -UBERON:0028433 Ongur, Price, and Ferry (2003) area Iam 8 39309 -UBERON:0028434 Ongur, Price, and Ferry (2003) area Ial 8 39310 -UBERON:0028435 Ongur, Price, and Ferry (2003) area Iai 8 39311 -UBERON:0028436 Ongur, Price, and Ferry (2003) area 9 8 39312 -UBERON:0028437 Ongur, Price, and Ferry (2003) area 10l 8 39313 -UBERON:0028439 Ongur, Price, and Ferry (2003) area Iapm 8 39314 -UBERON:0028440 Ongur, Price, and Ferry (2003) area AON 8 39315 -UBERON:0027061 isthmus of cingulate cortex 7 39316 -UBERON:0027768 suprachiasmatic nucleus dorsomedial part 7 39317 -UBERON:0027771 suprachiasmatic nucleus ventrolateral part 7 39318 -UBERON:0028715 caudal anterior cingulate cortex 7 39319 -UBERON:0030649 cytoarchitecture of entorhinal cortex 7 39320 -UBERON:0034749 retrolenticular part of internal capsule 7 39321 -UBERON:0034751 primary auditory cortex 7 39322 -UBERON:0034752 secondary auditory cortex 7 39323 -UBERON:0034773 uncus of parahippocampal gyrus 7 39324 -UBERON:0034774 uncal CA1 7 39325 -UBERON:0034775 uncal CA2 7 39326 -UBERON:0034776 uncal CA3 7 39327 -UBERON:0034777 rostral CA1 7 39328 -UBERON:0034778 rostral CA2 7 39329 -UBERON:0034779 rostral CA3 7 39330 -UBERON:0034780 caudal CA1 7 39331 -UBERON:0034781 caudal CA2 7 39332 -UBERON:0034782 caudal CA3 7 39333 -UBERON:0034889 posterior parietal cortex 7 39334 -UBERON:0034892 granular insular cortex 7 39335 -UBERON:0034893 agranular insular cortex 7 39336 -UBERON:0034989 amygdalopiriform transition area 7 39337 -UBERON:0035014 functional part of brain 7 39338 -UBERON:0000411 visual cortex 8 39339 -UBERON:0002436 primary visual cortex 8 39340 -UBERON:0008930 somatosensory cortex 8 39341 -UBERON:0008933 primary somatosensory cortex 9 39342 -UBERON:0008934 secondary somatosensory cortex 9 39343 -UBERON:0010415 barrel cortex 8 39344 -UBERON:0022232 secondary visual cortex 8 39345 -UBERON:0035015 association cortex 8 39346 -UBERON:0034750 visual association cortex 9 39347 -UBERON:0035013 temporal cortex association area 9 39348 -UBERON:0035026 amygdalohippocampal transition area 7 39349 -UBERON:0035027 amygdalohippocampal area, magnocellular division 7 39350 -UBERON:0035028 amygdalohippocampal area, parvocellular division 7 39351 -UBERON:0035803 extrapyramidal tract system 7 39352 -UBERON:0035885 dorsal auditory area 7 39353 -UBERON:0035886 posterior parietal association areas 7 39354 -UBERON:0035890 postrhinal area 7 39355 -UBERON:0035892 primary visual area, layer 6a 7 39356 -UBERON:0035893 anteromedial visual area 7 39357 -UBERON:0035894 anterolateral visual area 7 39358 -UBERON:0035895 lateral visual area 7 39359 -UBERON:0035897 posterolateral visual area 7 39360 -UBERON:0035900 posteromedial visual area 7 39361 -UBERON:0035904 primary visual area, layer 4 7 39362 -UBERON:0035906 primary visual area, layer 5 7 39363 -UBERON:0035907 primary visual area, layer 2/3 7 39364 -UBERON:0035908 anterolateral visual area, layer 5 7 39365 -UBERON:0035909 posteromedial visual area, layer 6a 7 39366 -UBERON:0035911 postrhinal area, layer 4 7 39367 -UBERON:0035912 rostrolateral visual area 7 39368 -UBERON:0035913 anteromedial visual area, layer 5 7 39369 -UBERON:0035914 posteromedial visual area, layer 4 7 39370 -UBERON:0035915 lateral visual area, layer 4 7 39371 -UBERON:0035916 lateral visual area, layer 5 7 39372 -UBERON:0035917 dorsal auditory area, layer 4 7 39373 -UBERON:0035918 lateral visual area, layer 6a 7 39374 -UBERON:0035919 posterolateral visual area, layer 4 7 39375 -UBERON:0035920 rostrolateral area, layer 5 7 39376 -UBERON:0035928 dorsolateral part of supraoptic nucleus 7 39377 -UBERON:0035932 anterior segment of paracentral lobule 7 39378 -UBERON:0035934 posterior segment of paracentral lobule 7 39379 -UBERON:0035970 calcar avis of the lateral ventricle 7 39380 -UBERON:0035971 postsubiculum 7 39381 -UBERON:0035972 interanterodorsal nucleus of the thalamus 7 39382 -UBERON:0035975 intergeniculate leaflet of the lateral geniculate complex 7 39383 -UBERON:0035999 dopaminergic cell groups 7 39384 -UBERON:0036000 A8 dopaminergic cell group 8 39385 -UBERON:0036001 A14 dopaminergic cell group 8 39386 -UBERON:0036002 A15 dopaminergic cell group 8 39387 -UBERON:0036003 A9 dopaminergic cell group 8 39388 -UBERON:0036004 A17 dopaminergic cell group 8 39389 -UBERON:0036005 A10 dopaminergic cell group 8 39390 -UBERON:0036006 A11 dopaminergic cell group 8 39391 -UBERON:0036007 A13 dopaminergic cell group 8 39392 -UBERON:0036008 A16 dopaminergic cell group 8 39393 -UBERON:0036009 A12 dopaminergic cell group 8 39394 -UBERON:0036010 Aaq dopaminergic cell group 8 39395 -UBERON:0036011 telencephalic dopaminergic cell group 8 39396 -UBERON:0036012 nucleus of the brachium of the inferior colliculus 7 39397 -UBERON:0036164 ambient gyrus 7 39398 -UBERON:0036218 secondary prosencephalon 7 39399 -UBERON:2000165 inferior lobe 7 39400 -UBERON:2000183 central pretectum 7 39401 -UBERON:2000187 lateral granular eminence 7 39402 -UBERON:2000188 corpus cerebelli 7 39403 -UBERON:2000199 dorsal periventricular hypothalamus 7 39404 -UBERON:2000212 granular eminence 7 39405 -UBERON:2000280 medial division 7 39406 -UBERON:2000293 synencephalon 7 39407 -UBERON:2000307 vestibulolateralis lobe 7 39408 -UBERON:2000347 dorsal zone of median tuberal portion of hypothalamus 7 39409 -UBERON:2000388 medial caudal lobe 7 39410 -UBERON:2000392 median tuberal portion 7 39411 -UBERON:2000449 torus longitudinalis 7 39412 -UBERON:2000516 periventricular grey zone 7 39413 -UBERON:2000517 glossopharyngeal lobe 7 39414 -UBERON:2000532 lateral division 7 39415 -UBERON:2000599 torus semicircularis 7 39416 -UBERON:2000603 valvula cerebelli 7 39417 -UBERON:2000633 caudal tuberculum 7 39418 -UBERON:2000634 caudal zone of median tuberal portion of hypothalamus 7 39419 -UBERON:2000687 superficial pretectum 7 39420 -UBERON:2000707 ventral zone 7 39421 -UBERON:2002106 eminentia granularis 7 39422 -UBERON:2002107 medullary command nucleus 7 39423 -UBERON:0011358 infundibular organ 6 39424 -UBERON:0013682 peripheral region of retina 6 39425 -UBERON:0024914 circuit part of central nervous system 6 39426 -UBERON:0026546 principal neuronal circuit 7 39427 -UBERON:0026547 intrinsic neuronal circuit 7 39428 -UBERON:0024940 ganglion part of peripheral nervous system 6 39429 -UBERON:2000479 caudal mesencephalo-cerebellar tract 6 39430 -UBERON:8000004 central retina 6 39431 -UBERON:0000471 compound organ component 5 39432 -UBERON:0000016 endocrine pancreas 6 39433 -UBERON:0000958 medulla of organ 6 39434 -UBERON:0000362 renal medulla 7 39435 -UBERON:0001236 adrenal medulla 7 39436 -UBERON:0035826 left adrenal gland medulla 8 39437 -UBERON:0035828 right adrenal gland medulla 8 39438 -UBERON:0002007 medulla of lymph node 7 39439 -UBERON:0002124 medulla of thymus 7 39440 -UBERON:0004827 thyroid gland medulla 7 39441 -UBERON:0005184 hair medulla 7 39442 -UBERON:0013192 ovarian medulla 7 39443 -UBERON:0001769 iris 5 39444 -UBERON:0001775 ciliary body 5 39445 -UBERON:0002068 urachus 5 39446 -UBERON:0002328 notochord 5 39447 -UBERON:0036242 post-embryonic notochord 6 39448 -UBERON:0002348 epicardium 5 39449 -UBERON:0001082 epicardium of ventricle 6 39450 -UBERON:0002407 pericardium 5 39451 -UBERON:0004271 outflow tract pericardium 6 39452 -UBERON:0002539 pharyngeal arch 5 39453 -UBERON:0003066 pharyngeal arch 2 6 39454 -UBERON:0003114 pharyngeal arch 3 6 39455 -UBERON:0003115 pharyngeal arch 4 6 39456 -UBERON:0003116 pharyngeal arch 5 6 39457 -UBERON:0003117 pharyngeal arch 6 6 39458 -UBERON:0004362 pharyngeal arch 1 6 39459 -UBERON:0008896 post-hyoid pharyngeal arch 6 39460 -UBERON:0011087 pharyngeal arch 7 7 39461 -UBERON:0011638 pharyngeal arch 8 7 39462 -UBERON:0003072 optic cup 5 39463 -UBERON:0003306 floor plate of neural tube 5 39464 -UBERON:0003307 floor plate of midbrain 6 39465 -UBERON:0003308 floor plate of telencephalon 6 39466 -UBERON:0003309 floor plate of diencephalon 6 39467 -UBERON:0003310 floor plate of metencephalon 6 39468 -UBERON:0003311 floor plate of medulla oblongata 6 39469 -UBERON:0005723 floor plate spinal cord region 6 39470 -UBERON:0005498 primitive heart tube 5 39471 -UBERON:0006618 atrium auricular region 5 39472 -UBERON:0006630 left atrium auricular region 6 39473 -UBERON:0006631 right atrium auricular region 6 39474 -UBERON:0007375 roof of mouth 5 39475 -UBERON:0001716 secondary palate 6 39476 -UBERON:0005620 primary palate 6 39477 -UBERON:0012316 primitive palate 6 39478 -UBERON:0007486 fluid-based anatomical entity 5 39479 -UBERON:0008253 Aristotle's lantern 5 39480 -UBERON:0009191 sphenoid bone pre-cartilage condensation 5 39481 -UBERON:0009672 oronasal membrane 5 39482 -UBERON:0010190 pair of dorsal aortae 5 39483 -UBERON:0010427 ciliary processes 5 39484 -UBERON:0011288 stomochord 5 39485 -UBERON:0011577 flexural organ 5 39486 -UBERON:0011754 genital swelling 5 39487 -UBERON:0011755 female labial swelling 6 39488 -UBERON:0011756 male genital swelling 6 39489 -UBERON:0011879 mesorchium 5 39490 -UBERON:0011892 anterior uvea 5 39491 -UBERON:0011997 coelom 5 39492 -UBERON:0012292 embryonic cloacal fold 5 39493 -UBERON:0012293 anal fold 5 39494 -UBERON:0012361 internal anal region 5 39495 -UBERON:0012469 external anal region 5 39496 -UBERON:0013176 phonic lip 5 39497 -UBERON:0013188 monkey lips dorsal bursa complex 5 39498 -UBERON:0013216 udder 5 39499 -UBERON:0013656 dulla 5 39500 -UBERON:0013657 hump 5 39501 -UBERON:0014385 aryepiglottic fold 5 39502 -UBERON:0014782 allantois of embryonic urinary system 5 39503 -UBERON:0014796 common tendinous ring 5 39504 -UBERON:0016466 antihelix 5 39505 -UBERON:0016467 antitragus 5 39506 -UBERON:0016854 dorsal part of optic cup 5 39507 -UBERON:0016855 ventral part of optic cup 5 39508 -UBERON:0016887 entire extraembryonic component 5 39509 -UBERON:0019207 chorioretinal region 5 39510 -UBERON:0028194 spiral prominence of cochlear duct 5 39511 -UBERON:2000102 dorsal fin fold 5 39512 -UBERON:2000211 gill lamella 5 39513 -UBERON:2001069 ventral fin fold 5 39514 -UBERON:2001076 intestinal bulb 5 39515 -UBERON:2001183 dermal superficial region 5 39516 -UBERON:2001277 anterior chamber swim bladder 5 39517 -UBERON:2001278 posterior chamber swim bladder 5 39518 -UBERON:2001612 sensory canal 5 39519 -UBERON:2001617 trunk sensory canal 6 39520 -UBERON:2001619 post-otic sensory canal 6 39521 -UBERON:2001629 otic sensory canal 6 39522 -UBERON:2001630 supratemporal sensory canal 6 39523 -UBERON:2001810 supraorbital sensory canal 6 39524 -UBERON:2001811 infraorbital sensory canal 6 39525 -UBERON:2001812 preoperculo-mandibular sensory canal 6 39526 -UBERON:2001813 preopercular sensory canal 6 39527 -UBERON:2001814 mandibular sensory canal 6 39528 -UBERON:2001933 sensory canal tubule 6 39529 -UBERON:4300176 parietal branch of the supraorbital canal 6 39530 -UBERON:4300241 ethmoid commissure 6 39531 -UBERON:2001622 odontode 5 39532 -UBERON:2001623 type 1 odontode 6 39533 -UBERON:2001624 type 2 odontode 6 39534 -UBERON:2001920 pseudotympanum 5 39535 -UBERON:2001996 maxillary canal 5 39536 -UBERON:2002111 prootic bulla 5 39537 -UBERON:2002114 cotylephore 5 39538 -UBERON:2002129 caudal rod 5 39539 -UBERON:2002130 caudal appendage 5 39540 -UBERON:2002229 presumptive atrium primitive heart tube 5 39541 -UBERON:2002232 presumptive cardiac ventricle primitive heart tube 5 39542 -UBERON:2005067 bulbus arteriosus middle layer 5 39543 -UBERON:2005068 bulbus arteriosus inner layer 5 39544 -UBERON:2005174 ventral liver lobe 5 39545 -UBERON:2005272 immature gonad 5 39546 -UBERON:2005316 fin fold pectoral fin bud 5 39547 -UBERON:2005317 pectoral fin fold 5 39548 -UBERON:3000041 Bidder's organ 5 39549 -UBERON:4300195 rostral tubule 5 39550 -UBERON:6001668 embryonic/larval lymph gland 5 39551 -UBERON:0000964 cornea 4 39552 -UBERON:0003130 arthropod sternum 4 39553 -UBERON:0003938 sensory dissociation area 4 39554 -UBERON:0003945 somatic motor system 4 39555 -UBERON:0003947 brain ventricle/choroid plexus 4 39556 -UBERON:0001886 choroid plexus 5 39557 -UBERON:0002288 choroid plexus of third ventricle 6 39558 -UBERON:0002290 choroid plexus of fourth ventricle 6 39559 -UBERON:0002307 choroid plexus of lateral ventricle 6 39560 -UBERON:0007299 choroid plexus of tectal ventricle 6 39561 -UBERON:0004086 brain ventricle 5 39562 -UBERON:0002285 telencephalic ventricle 6 39563 -UBERON:0002651 anterior horn of lateral ventricle 7 39564 -UBERON:0002655 body of lateral ventricle 7 39565 -UBERON:0004672 posterior horn lateral ventricle 7 39566 -UBERON:0013161 left lateral ventricle 7 39567 -UBERON:0013162 right lateral ventricle 7 39568 -UBERON:0002286 third ventricle 6 39569 -UBERON:0002289 midbrain cerebral aqueduct 6 39570 -UBERON:0002422 fourth ventricle 6 39571 -UBERON:0004043 semicircular canal ampulla 4 39572 -UBERON:0004111 anatomical conduit 4 39573 -UBERON:0000025 tube 5 39574 -UBERON:0000117 respiratory tube 6 39575 -UBERON:0002169 alveolar sac 7 39576 -UBERON:0002173 pulmonary alveolar duct 7 39577 -UBERON:0003536 right lung alveolar duct 8 39578 -UBERON:0003537 left lung alveolar duct 8 39579 -UBERON:0002185 bronchus 7 39580 -UBERON:0002041 terminal bronchus 8 39581 -UBERON:0002182 main bronchus 8 39582 -UBERON:0002177 right main bronchus 9 39583 -UBERON:0002178 left main bronchus 9 39584 -UBERON:0009071 mesobronchus 9 39585 -UBERON:0012088 lateroobronchus 8 39586 -UBERON:0035767 intrapulmonary bronchus 8 39587 -UBERON:0002183 lobar bronchus 9 39588 -UBERON:0003404 lobar bronchus of right lung 10 39589 -UBERON:0004896 right lung accessory lobe lobar bronchus 11 39590 -UBERON:0005244 lobar bronchus of right lung cranial lobe 11 39591 -UBERON:0005245 lobar bronchus of right lung caudal lobe 11 39592 -UBERON:0012063 lobar bronchus of right lung middle lobe 11 39593 -UBERON:0003405 lobar bronchus of left lung 10 39594 -UBERON:0012065 lobar bronchus of left lung upper lobe 11 39595 -UBERON:0012066 lobar bronchus of left lung lower lobe 11 39596 -UBERON:0009073 dorsobronchus 10 39597 -UBERON:0002184 segmental bronchus 9 39598 -UBERON:0005678 right lung cranial lobe segmental bronchus 10 39599 -UBERON:0005679 right lung caudal lobe segmental bronchus 10 39600 -UBERON:0005680 right lung accessory lobe segmental bronchus 10 39601 -UBERON:0008961 parabronchus 10 39602 -UBERON:0009071 mesobronchus 9 39603 -UBERON:0009072 ventrobronchus 9 39604 -UBERON:0002186 bronchiole 7 39605 -UBERON:0002187 terminal bronchiole 8 39606 -UBERON:0003540 right lung terminal bronchiole 9 39607 -UBERON:0003541 left lung terminal bronchiole 9 39608 -UBERON:0002188 respiratory bronchiole 8 39609 -UBERON:0003542 right lung respiratory bronchiole 9 39610 -UBERON:0003543 left lung respiratory bronchiole 9 39611 -UBERON:0003538 right lung bronchiole 8 39612 -UBERON:0003540 right lung terminal bronchiole 9 39613 -UBERON:0003542 right lung respiratory bronchiole 9 39614 -UBERON:0005681 right lung upper lobe bronchiole 9 39615 -UBERON:0005682 right lung accessory lobe bronchiole 9 39616 -UBERON:0012059 right lung lower lobe bronchiole 9 39617 -UBERON:0012068 right lung middle lobe bronchiole 9 39618 -UBERON:0003539 left lung bronchiole 8 39619 -UBERON:0003541 left lung terminal bronchiole 9 39620 -UBERON:0003543 left lung respiratory bronchiole 9 39621 -UBERON:0012055 left lung lower lobe bronchiole 9 39622 -UBERON:0012056 left lung upper lobe bronchiole 9 39623 -UBERON:0012067 primary bronchiole 8 39624 -UBERON:0003126 trachea 7 39625 -UBERON:0000993 oviduct 6 39626 -UBERON:0000999 ejaculatory duct 6 39627 -UBERON:0001000 vas deferens 6 39628 -UBERON:0001064 ventral pancreatic duct 6 39629 -UBERON:0001301 epididymis 6 39630 -UBERON:0001343 seminiferous tubule of testis 6 39631 -UBERON:0001555 digestive tract 6 39632 -UBERON:0001837 duct of salivary gland 6 39633 -UBERON:0001838 sublingual duct 7 39634 -UBERON:0003985 major sublingual duct 8 39635 -UBERON:0003986 minor sublingual duct 8 39636 -UBERON:0002334 submandibular duct 7 39637 -UBERON:0014727 intercalated duct of salivary gland 7 39638 -UBERON:0035046 parotid gland intercalated duct 8 39639 -UBERON:0014729 striated duct of salivary gland 7 39640 -UBERON:0035047 parotid gland striated duct 8 39641 -UBERON:0015445 anterior lingual gland duct 7 39642 -UBERON:0035045 parotid gland intralobular duct 7 39643 -UBERON:0035046 parotid gland intercalated duct 8 39644 -UBERON:0035047 parotid gland striated duct 8 39645 -UBERON:0035049 excretory duct of salivary gland 7 39646 -UBERON:0035048 parotid gland excretory duct 8 39647 -UBERON:0001065 parotid main excretory duct 9 39648 -UBERON:0035078 parotid gland interlobular duct 9 39649 -UBERON:0035053 interlobular duct of salivary gland 8 39650 -UBERON:0035078 parotid gland interlobular duct 9 39651 -UBERON:0001840 semicircular canal 6 39652 -UBERON:0001841 anterior semicircular canal 7 39653 -UBERON:0001842 posterior semicircular canal 7 39654 -UBERON:0001843 lateral semicircular canal 7 39655 -UBERON:3000057 canalis semicircularis anterior 7 39656 -UBERON:0001855 cochlear duct of membranous labyrinth 6 39657 -UBERON:0001856 semicircular duct 6 39658 -UBERON:0001857 anterior semicircular duct 7 39659 -UBERON:0001858 posterior semicircular duct 7 39660 -UBERON:0001859 lateral semicircular duct 7 39661 -UBERON:0001860 endolymphatic duct 6 39662 -UBERON:0001861 ductus reuniens 6 39663 -UBERON:0001865 cartilaginous external acoustic tube 6 39664 -UBERON:0002254 thyroglossal duct 6 39665 -UBERON:0002392 nasolacrimal duct 6 39666 -UBERON:0002394 bile duct 6 39667 -UBERON:0003703 extrahepatic bile duct 7 39668 -UBERON:0001152 cystic duct 8 39669 -UBERON:0001174 common bile duct 8 39670 -UBERON:0001175 common hepatic duct 8 39671 -UBERON:0001176 right hepatic duct 8 39672 -UBERON:0001177 left hepatic duct 8 39673 -UBERON:0010081 future common hepatic duct 8 39674 -UBERON:0003704 intrahepatic bile duct 7 39675 -UBERON:0001246 interlobular bile duct 8 39676 -UBERON:0001282 intralobular bile duct 8 39677 -UBERON:0005605 intrahepatic part of hepatic duct 8 39678 -UBERON:0004913 hepatopancreatic ampulla 7 39679 -UBERON:0005171 hepatic duct 7 39680 -UBERON:0015423 hilar portion of hepatic duct 8 39681 -UBERON:0005604 extrahepatic part of hepatic duct 7 39682 -UBERON:2005170 extrahepatic duct 7 39683 -UBERON:0003890 Mullerian duct 6 39684 -UBERON:0003914 epithelial tube 6 39685 -UBERON:0000083 mesonephric tubule 7 39686 -UBERON:0000084 ureteric bud 8 39687 -UBERON:0005080 metanephric ureteric bud 9 39688 -UBERON:0005081 ureter ureteric bud 9 39689 -UBERON:0005312 primary ureteric bud 9 39690 -UBERON:0003074 mesonephric duct 8 39691 -UBERON:0005104 anterior mesonephric tubule 8 39692 -UBERON:0005105 posterior mesonephric tubule 8 39693 -UBERON:0005329 mesonephric nephron tubule 8 39694 -UBERON:0005892 mesonephric early distal tubule 8 39695 -UBERON:0006189 mesonephric connecting tubule 8 39696 -UBERON:0006190 mesonephric distal tubule 8 39697 -UBERON:0006192 mesonephric proximal tubule 8 39698 -UBERON:0006364 ureteric bud tip 8 39699 -UBERON:0010534 primitive mesonephric nephron 8 39700 -UBERON:0012238 ureteric bud trunk 8 39701 -UBERON:0001049 neural tube 7 39702 -UBERON:0001765 mammary duct 7 39703 -UBERON:0011844 duct of areolar gland 8 39704 -UBERON:0015132 extralobar lactiferous duct 8 39705 -UBERON:0015133 terminal lactiferous duct 8 39706 -UBERON:0015134 main lactiferous duct 8 39707 -UBERON:0015135 primary lactiferous duct 8 39708 -UBERON:0015136 secondary lactiferous duct 8 39709 -UBERON:0015137 tertiary lactiferous duct 8 39710 -UBERON:0015138 quarternary lactiferous duct 8 39711 -UBERON:0022360 male mammary gland duct 8 39712 -UBERON:0002325 epithelium of urethra 7 39713 -UBERON:0004787 urethra urothelium 8 39714 -UBERON:0015777 transitional epithelium of prostatic urethra 9 39715 -UBERON:0016510 epithelium of male urethra 8 39716 -UBERON:0015777 transitional epithelium of prostatic urethra 9 39717 -UBERON:0034770 bulbourethral gland epithelium 9 39718 -UBERON:0016520 epithelium of female urethra 8 39719 -UBERON:0003915 endothelial tube 7 39720 -UBERON:0001917 endothelium of artery 8 39721 -UBERON:0004848 respiratory system arterial endothelium 9 39722 -UBERON:0005317 pulmonary artery endothelium 9 39723 -UBERON:0007778 umbilical artery endothelium 9 39724 -UBERON:0019189 carotid artery endothelium 9 39725 -UBERON:0019196 iliac artery endothelium 9 39726 -UBERON:0004141 heart tube 7 39727 -UBERON:0005106 metanephric tubule 7 39728 -UBERON:0005146 metanephric nephron tubule 8 39729 -UBERON:0005114 metanephric ascending thin limb 9 39730 -UBERON:0005117 metanephric distal convoluted tubule 9 39731 -UBERON:0005124 metanephric proximal convoluted tubule 9 39732 -UBERON:0005125 metanephric proximal straight tubule 9 39733 -UBERON:0005127 metanephric thick ascending limb 9 39734 -UBERON:0005129 metanephric distal tubule 9 39735 -UBERON:0005130 metanephric loop of Henle 9 39736 -UBERON:0005149 metanephric connecting tubule 9 39737 -UBERON:0005151 metanephric proximal tubule 9 39738 -UBERON:0010535 primitive metanephric nephron 8 39739 -UBERON:0006279 pleuroperitoneal canal 7 39740 -UBERON:0007499 epithelial sac 7 39741 -UBERON:0000084 ureteric bud 8 39742 -UBERON:0005080 metanephric ureteric bud 9 39743 -UBERON:0005081 ureter ureteric bud 9 39744 -UBERON:0005312 primary ureteric bud 9 39745 -UBERON:0000939 imaginal disc 8 39746 -UBERON:6001764 labial disc 9 39747 -UBERON:6001765 clypeo-labral disc 9 39748 -UBERON:6001766 eye-antennal disc 9 39749 -UBERON:6001767 antennal disc 9 39750 -UBERON:6001776 dorsal thoracic disc 9 39751 -UBERON:6001778 wing disc 10 39752 -UBERON:6001779 haltere disc 10 39753 -UBERON:6001780 ventral thoracic disc 9 39754 -UBERON:6001781 prothoracic leg disc 10 39755 -UBERON:6001784 genital disc 9 39756 -UBERON:6001785 male genital disc 10 39757 -UBERON:6001787 female genital disc 10 39758 -UBERON:0001040 yolk sac 8 39759 -UBERON:0008852 visceral yolk sac 9 39760 -UBERON:0008853 parietal yolk sac 9 39761 -UBERON:0002169 alveolar sac 8 39762 -UBERON:0002223 endolymphatic sac 8 39763 -UBERON:0003051 ear vesicle 8 39764 -UBERON:0003922 pancreatic epithelial bud 8 39765 -UBERON:0003923 dorsal pancreatic bud 9 39766 -UBERON:0003924 ventral pancreatic bud 9 39767 -UBERON:0004912 biliary bud 8 39768 -UBERON:0005356 Rathke's pouch 8 39769 -UBERON:0006250 infundibular recess of 3rd ventricle 8 39770 -UBERON:0006364 ureteric bud tip 8 39771 -UBERON:0007501 arborizing epithelial duct system 8 39772 -UBERON:0014706 primitive renal collecting duct system 9 39773 -UBERON:0008835 hepatic diverticulum 8 39774 -UBERON:0008836 liver bud 8 39775 -UBERON:0008969 dental follicle 8 39776 -UBERON:0009495 extrahepatic part of biliary bud 8 39777 -UBERON:0009496 intrahepatic part of biliary bud 8 39778 -UBERON:0010020 tubotympanic recess epithelium 8 39779 -UBERON:0010063 tympanic cavity epithelium 8 39780 -UBERON:0012287 Rathkes pouch epithelium 8 39781 -UBERON:0034953 embryonic lymph sac 8 39782 -UBERON:0011765 jugular lymph sac 9 39783 -UBERON:0034958 retroperitoneal embryonic lymph sac 9 39784 -UBERON:0036256 iliac lymph sac 9 39785 -UBERON:0036260 embryonic cisterna chyli 9 39786 -UBERON:0036072 respiratory primordium epithelium 8 39787 -UBERON:0036261 accessory lymph sac 8 39788 -UBERON:0007500 epithelial tube open at both ends 7 39789 -UBERON:0007502 epithelial plexus 7 39790 -UBERON:0013141 capillary bed 8 39791 -UBERON:0015189 perineural vascular plexus 9 39792 -UBERON:0007684 uriniferous tubule 7 39793 -UBERON:0009201 nephric duct 7 39794 -UBERON:0003060 pronephric duct 8 39795 -UBERON:0003074 mesonephric duct 8 39796 -UBERON:0009773 renal tubule 7 39797 -UBERON:0001054 Malpighian tubule 8 39798 -UBERON:0001231 nephron tubule 8 39799 -UBERON:0005146 metanephric nephron tubule 9 39800 -UBERON:0005114 metanephric ascending thin limb 10 39801 -UBERON:0005117 metanephric distal convoluted tubule 10 39802 -UBERON:0005124 metanephric proximal convoluted tubule 10 39803 -UBERON:0005125 metanephric proximal straight tubule 10 39804 -UBERON:0005127 metanephric thick ascending limb 10 39805 -UBERON:0005129 metanephric distal tubule 10 39806 -UBERON:0005130 metanephric loop of Henle 10 39807 -UBERON:0005149 metanephric connecting tubule 10 39808 -UBERON:0005151 metanephric proximal tubule 10 39809 -UBERON:0005310 pronephric nephron tubule 9 39810 -UBERON:0006173 pronephric proximal tubule 10 39811 -UBERON:0006175 pronephric distal tubule 10 39812 -UBERON:0007298 pronephric proximal convoluted tubule 10 39813 -UBERON:0007308 pronephric distal early tubule 10 39814 -UBERON:0009622 pronephric proximal straight tubule 10 39815 -UBERON:0005329 mesonephric nephron tubule 9 39816 -UBERON:0007685 region of nephron tubule 9 39817 -UBERON:0001288 loop of Henle 10 39818 -UBERON:0005130 metanephric loop of Henle 11 39819 -UBERON:0034997 renal medulla loop of Henle 11 39820 -UBERON:0003455 inner renal medulla loop of Henle 12 39821 -UBERON:0034996 outer renal medulla loop of Henle 12 39822 -UBERON:0006541 outer medulla inner stripe loop of Henle 13 39823 -UBERON:0006542 outer medulla outer stripe loop of Henle 13 39824 -UBERON:0001289 descending limb of loop of Henle 10 39825 -UBERON:0004135 distal tubule 10 39826 -UBERON:0005129 metanephric distal tubule 11 39827 -UBERON:0005164 ascending limb of loop of Henle 11 39828 -UBERON:0006175 pronephric distal tubule 11 39829 -UBERON:0006190 mesonephric distal tubule 11 39830 -UBERON:0004136 intermediate tubule 10 39831 -UBERON:0004193 loop of Henle ascending limb thin segment 10 39832 -UBERON:0005114 metanephric ascending thin limb 11 39833 -UBERON:0005097 renal connecting tubule 10 39834 -UBERON:0005149 metanephric connecting tubule 11 39835 -UBERON:0006189 mesonephric connecting tubule 11 39836 -UBERON:0006337 distal early tubule 10 39837 -UBERON:0007308 pronephric distal early tubule 11 39838 -UBERON:0006376 premacula segment of distal straight tubule 10 39839 -UBERON:0006534 renal convoluted tubule 10 39840 -UBERON:0001287 proximal convoluted tubule 11 39841 -UBERON:0005124 metanephric proximal convoluted tubule 12 39842 -UBERON:0007298 pronephric proximal convoluted tubule 12 39843 -UBERON:0001292 distal convoluted tubule 11 39844 -UBERON:0005117 metanephric distal convoluted tubule 12 39845 -UBERON:0006853 renal cortex tubule 10 39846 -UBERON:0001287 proximal convoluted tubule 11 39847 -UBERON:0005124 metanephric proximal convoluted tubule 12 39848 -UBERON:0007298 pronephric proximal convoluted tubule 12 39849 -UBERON:0001290 proximal straight tubule 11 39850 -UBERON:0005125 metanephric proximal straight tubule 12 39851 -UBERON:0009622 pronephric proximal straight tubule 12 39852 -UBERON:0001292 distal convoluted tubule 11 39853 -UBERON:0005117 metanephric distal convoluted tubule 12 39854 -UBERON:0004134 proximal tubule 11 39855 -UBERON:0005151 metanephric proximal tubule 12 39856 -UBERON:0006173 pronephric proximal tubule 12 39857 -UBERON:0006192 mesonephric proximal tubule 12 39858 -UBERON:0006854 distal straight tubule postmacula segment 11 39859 -UBERON:0009035 renal straight tubule 10 39860 -UBERON:0001290 proximal straight tubule 11 39861 -UBERON:0005125 metanephric proximal straight tubule 12 39862 -UBERON:0009622 pronephric proximal straight tubule 12 39863 -UBERON:0001291 thick ascending limb of loop of Henle 11 39864 -UBERON:0005127 metanephric thick ascending limb 12 39865 -UBERON:0010062 pharyngotympanic tube epithelium 7 39866 -UBERON:0010065 auditory meatus epithelium 7 39867 -UBERON:0010081 future common hepatic duct 7 39868 -UBERON:0010532 primitive nephron 7 39869 -UBERON:0007653 capillary loop nephron 8 39870 -UBERON:0007654 maturing nephron 8 39871 -UBERON:0010534 primitive mesonephric nephron 8 39872 -UBERON:0010535 primitive metanephric nephron 8 39873 -UBERON:0011202 urachus epithelium 7 39874 -UBERON:0013247 male paramesonephric duct 7 39875 -UBERON:0013248 paradidymis 7 39876 -UBERON:0013249 paroophoron 7 39877 -UBERON:0034969 epithelial layer of duct 7 39878 -UBERON:0000084 ureteric bud 8 39879 -UBERON:0005080 metanephric ureteric bud 9 39880 -UBERON:0005081 ureter ureteric bud 9 39881 -UBERON:0005312 primary ureteric bud 9 39882 -UBERON:0004182 mammary gland cord 8 39883 -UBERON:0004544 epididymis epithelium 8 39884 -UBERON:0004805 seminal vesicle epithelium 8 39885 -UBERON:0004806 vas deferens epithelium 8 39886 -UBERON:0004813 seminiferous tubule epithelium 8 39887 -UBERON:0004820 bile duct epithelium 8 39888 -UBERON:0004822 extrahepatic bile duct epithelium 9 39889 -UBERON:0004823 intrahepatic bile duct epithelium 9 39890 -UBERON:0005313 mammary duct terminal end bud 8 39891 -UBERON:0006364 ureteric bud tip 8 39892 -UBERON:0006948 efferent duct epithelium 8 39893 -UBERON:0006953 ejaculatory duct epithelium 8 39894 -UBERON:0009970 epithelium of pancreatic duct 8 39895 -UBERON:0012238 ureteric bud trunk 8 39896 -UBERON:0015766 epithelium of duct of salivary gland 8 39897 -UBERON:0034770 bulbourethral gland epithelium 8 39898 -UBERON:0003976 saccule duct 6 39899 -UBERON:0003977 utricle duct 6 39900 -UBERON:0004058 biliary ductule 6 39901 -UBERON:0005600 crus commune 6 39902 -UBERON:0005903 duct of seminal vesicle 6 39903 -UBERON:0006555 excretory tube 6 39904 -UBERON:0000056 ureter 7 39905 -UBERON:0001222 right ureter 8 39906 -UBERON:0001223 left ureter 8 39907 -UBERON:0000083 mesonephric tubule 7 39908 -UBERON:0000084 ureteric bud 8 39909 -UBERON:0005080 metanephric ureteric bud 9 39910 -UBERON:0005081 ureter ureteric bud 9 39911 -UBERON:0005312 primary ureteric bud 9 39912 -UBERON:0003074 mesonephric duct 8 39913 -UBERON:0005104 anterior mesonephric tubule 8 39914 -UBERON:0005105 posterior mesonephric tubule 8 39915 -UBERON:0005329 mesonephric nephron tubule 8 39916 -UBERON:0005892 mesonephric early distal tubule 8 39917 -UBERON:0006189 mesonephric connecting tubule 8 39918 -UBERON:0006190 mesonephric distal tubule 8 39919 -UBERON:0006192 mesonephric proximal tubule 8 39920 -UBERON:0006364 ureteric bud tip 8 39921 -UBERON:0010534 primitive mesonephric nephron 8 39922 -UBERON:0012238 ureteric bud trunk 8 39923 -UBERON:0001232 collecting duct of renal tubule 7 39924 -UBERON:0004204 outer medullary collecting duct 8 39925 -UBERON:0004205 inner medullary collecting duct 8 39926 -UBERON:0004737 metanephric collecting duct 8 39927 -UBERON:0005167 papillary duct 8 39928 -UBERON:0005319 mesonephric collecting duct 8 39929 -UBERON:0002325 epithelium of urethra 7 39930 -UBERON:0004787 urethra urothelium 8 39931 -UBERON:0015777 transitional epithelium of prostatic urethra 9 39932 -UBERON:0016510 epithelium of male urethra 8 39933 -UBERON:0015777 transitional epithelium of prostatic urethra 9 39934 -UBERON:0034770 bulbourethral gland epithelium 9 39935 -UBERON:0016520 epithelium of female urethra 8 39936 -UBERON:0004196 proximal convoluted tubule segment 1 7 39937 -UBERON:0005126 metanephric S1 8 39938 -UBERON:0004197 proximal convoluted tubule segment 2 7 39939 -UBERON:0004206 long descending thin limb bend 7 39940 -UBERON:0005121 metanephric long descending thin limb bend 8 39941 -UBERON:0004207 prebend segment of loop of Henle 7 39942 -UBERON:0005123 metanephric prebend segment 8 39943 -UBERON:0005106 metanephric tubule 7 39944 -UBERON:0005146 metanephric nephron tubule 8 39945 -UBERON:0005114 metanephric ascending thin limb 9 39946 -UBERON:0005117 metanephric distal convoluted tubule 9 39947 -UBERON:0005124 metanephric proximal convoluted tubule 9 39948 -UBERON:0005125 metanephric proximal straight tubule 9 39949 -UBERON:0005127 metanephric thick ascending limb 9 39950 -UBERON:0005129 metanephric distal tubule 9 39951 -UBERON:0005130 metanephric loop of Henle 9 39952 -UBERON:0005149 metanephric connecting tubule 9 39953 -UBERON:0005151 metanephric proximal tubule 9 39954 -UBERON:0010535 primitive metanephric nephron 8 39955 -UBERON:0006972 nephridium 7 39956 -UBERON:0006973 protonephridium 8 39957 -UBERON:0006974 metanephridium 8 39958 -UBERON:0007684 uriniferous tubule 7 39959 -UBERON:0009201 nephric duct 7 39960 -UBERON:0003060 pronephric duct 8 39961 -UBERON:0003074 mesonephric duct 8 39962 -UBERON:0009773 renal tubule 7 39963 -UBERON:0001054 Malpighian tubule 8 39964 -UBERON:0001231 nephron tubule 8 39965 -UBERON:0005146 metanephric nephron tubule 9 39966 -UBERON:0005114 metanephric ascending thin limb 10 39967 -UBERON:0005117 metanephric distal convoluted tubule 10 39968 -UBERON:0005124 metanephric proximal convoluted tubule 10 39969 -UBERON:0005125 metanephric proximal straight tubule 10 39970 -UBERON:0005127 metanephric thick ascending limb 10 39971 -UBERON:0005129 metanephric distal tubule 10 39972 -UBERON:0005130 metanephric loop of Henle 10 39973 -UBERON:0005149 metanephric connecting tubule 10 39974 -UBERON:0005151 metanephric proximal tubule 10 39975 -UBERON:0005310 pronephric nephron tubule 9 39976 -UBERON:0006173 pronephric proximal tubule 10 39977 -UBERON:0006175 pronephric distal tubule 10 39978 -UBERON:0007298 pronephric proximal convoluted tubule 10 39979 -UBERON:0007308 pronephric distal early tubule 10 39980 -UBERON:0009622 pronephric proximal straight tubule 10 39981 -UBERON:0005329 mesonephric nephron tubule 9 39982 -UBERON:0007685 region of nephron tubule 9 39983 -UBERON:0001288 loop of Henle 10 39984 -UBERON:0005130 metanephric loop of Henle 11 39985 -UBERON:0034997 renal medulla loop of Henle 11 39986 -UBERON:0003455 inner renal medulla loop of Henle 12 39987 -UBERON:0034996 outer renal medulla loop of Henle 12 39988 -UBERON:0006541 outer medulla inner stripe loop of Henle 13 39989 -UBERON:0006542 outer medulla outer stripe loop of Henle 13 39990 -UBERON:0001289 descending limb of loop of Henle 10 39991 -UBERON:0004135 distal tubule 10 39992 -UBERON:0005129 metanephric distal tubule 11 39993 -UBERON:0005164 ascending limb of loop of Henle 11 39994 -UBERON:0006175 pronephric distal tubule 11 39995 -UBERON:0006190 mesonephric distal tubule 11 39996 -UBERON:0004136 intermediate tubule 10 39997 -UBERON:0004193 loop of Henle ascending limb thin segment 10 39998 -UBERON:0005114 metanephric ascending thin limb 11 39999 -UBERON:0005097 renal connecting tubule 10 40000 -UBERON:0005149 metanephric connecting tubule 11 40001 -UBERON:0006189 mesonephric connecting tubule 11 40002 -UBERON:0006337 distal early tubule 10 40003 -UBERON:0007308 pronephric distal early tubule 11 40004 -UBERON:0006376 premacula segment of distal straight tubule 10 40005 -UBERON:0006534 renal convoluted tubule 10 40006 -UBERON:0001287 proximal convoluted tubule 11 40007 -UBERON:0005124 metanephric proximal convoluted tubule 12 40008 -UBERON:0007298 pronephric proximal convoluted tubule 12 40009 -UBERON:0001292 distal convoluted tubule 11 40010 -UBERON:0005117 metanephric distal convoluted tubule 12 40011 -UBERON:0006853 renal cortex tubule 10 40012 -UBERON:0001287 proximal convoluted tubule 11 40013 -UBERON:0005124 metanephric proximal convoluted tubule 12 40014 -UBERON:0007298 pronephric proximal convoluted tubule 12 40015 -UBERON:0001290 proximal straight tubule 11 40016 -UBERON:0005125 metanephric proximal straight tubule 12 40017 -UBERON:0009622 pronephric proximal straight tubule 12 40018 -UBERON:0001292 distal convoluted tubule 11 40019 -UBERON:0005117 metanephric distal convoluted tubule 12 40020 -UBERON:0004134 proximal tubule 11 40021 -UBERON:0005151 metanephric proximal tubule 12 40022 -UBERON:0006173 pronephric proximal tubule 12 40023 -UBERON:0006192 mesonephric proximal tubule 12 40024 -UBERON:0006854 distal straight tubule postmacula segment 11 40025 -UBERON:0009035 renal straight tubule 10 40026 -UBERON:0001290 proximal straight tubule 11 40027 -UBERON:0005125 metanephric proximal straight tubule 12 40028 -UBERON:0009622 pronephric proximal straight tubule 12 40029 -UBERON:0001291 thick ascending limb of loop of Henle 11 40030 -UBERON:0005127 metanephric thick ascending limb 12 40031 -UBERON:0010532 primitive nephron 7 40032 -UBERON:0007653 capillary loop nephron 8 40033 -UBERON:0007654 maturing nephron 8 40034 -UBERON:0010534 primitive mesonephric nephron 8 40035 -UBERON:0010535 primitive metanephric nephron 8 40036 -UBERON:0011202 urachus epithelium 7 40037 -UBERON:0006946 efferent duct 6 40038 -UBERON:3010586 vasa efferentia 7 40039 -UBERON:0006947 male genital duct 6 40040 -UBERON:0007105 vitelline duct 6 40041 -UBERON:0009921 hypophyseal tube 6 40042 -UBERON:0011060 perilymphatic channel 6 40043 -UBERON:0001863 scala vestibuli 7 40044 -UBERON:0001864 scala tympani 7 40045 -UBERON:0002295 scala media 7 40046 -UBERON:0011774 utriculosaccular duct 6 40047 -UBERON:0011784 feather shaft 6 40048 -UBERON:0008288 feather rachis 7 40049 -UBERON:0014475 endostylar duct 6 40050 -UBERON:0015227 peristaltic circulatory vessel 6 40051 -UBERON:0000055 vessel 5 40052 -UBERON:0001473 lymphatic vessel 6 40053 -UBERON:0001422 facial lymphatic vessel 7 40054 -UBERON:0001425 pectoral lymphatic vessel 7 40055 -UBERON:0001426 jugular lymphatic vessel 7 40056 -UBERON:0001631 thoracic duct 7 40057 -UBERON:0003456 respiratory system lymphatic vessel 7 40058 -UBERON:0018227 pulmonary lymphatic vessel 8 40059 -UBERON:0006842 lymphatic capillary 7 40060 -UBERON:0018410 lacteal 8 40061 -UBERON:0007384 appendage lymph vessel 7 40062 -UBERON:0007385 pectoral appendage lymph vessel 8 40063 -UBERON:0007386 pelvic appendage lymph vessel 8 40064 -UBERON:2005303 caudal fin lymph vessel 8 40065 -UBERON:0010396 afferent lymphatic vessel 7 40066 -UBERON:0010397 efferent lymphatic vessel 7 40067 -UBERON:0034950 lymph sac of lymph heart 7 40068 -UBERON:0034951 subcutaneous lymph sac 8 40069 -UBERON:0034952 intrapleuroperitoneal lymph sac 8 40070 -UBERON:0035198 superficial lymphatic vessel 7 40071 -UBERON:0035545 deep lymphatic vessel 7 40072 -UBERON:0035608 dura mater lymph vessel 7 40073 -UBERON:0001981 blood vessel 6 40074 -UBERON:0001982 capillary 7 40075 -UBERON:0003526 respiratory system capillary 8 40076 -UBERON:0016405 pulmonary capillary 9 40077 -UBERON:0003527 kidney capillary 8 40078 -UBERON:0004212 glomerular capillary 9 40079 -UBERON:0005144 metanephric glomerular capillary 10 40080 -UBERON:0006183 mesonephric glomerular capillary 10 40081 -UBERON:0007306 pronephric glomerular capillary 10 40082 -UBERON:0005272 peritubular capillary 9 40083 -UBERON:0006341 outer renal medulla peritubular capillary 10 40084 -UBERON:0006851 renal cortex peritubular capillary 10 40085 -UBERON:0006966 coronary capillary 8 40086 -UBERON:2005259 continuous capillary 8 40087 -UBERON:2005260 fenestrated capillary 8 40088 -UBERON:0003909 sinusoid 9 40089 -UBERON:0001281 hepatic sinusoid 10 40090 -UBERON:0009548 hepatic sinusoid of left of lobe of liver 11 40091 -UBERON:0011737 caudate lobe hepatic sinusoid 12 40092 -UBERON:0009549 hepatic sinusoid of right of lobe of liver 11 40093 -UBERON:0011737 caudate lobe hepatic sinusoid 12 40094 -UBERON:0011738 quadrate lobe hepatic sinusoid 12 40095 -UBERON:0003910 splenic sinusoid 10 40096 -UBERON:3010404 capillary system of liver 8 40097 -UBERON:0003496 head blood vessel 7 40098 -UBERON:0000457 cavernous artery 8 40099 -UBERON:0001532 internal carotid artery 8 40100 -UBERON:0007142 left internal carotid artery 9 40101 -UBERON:0007143 right internal carotid artery 9 40102 -UBERON:0001610 lingual artery 8 40103 -UBERON:0001611 sublingual artery 8 40104 -UBERON:0001615 transverse facial artery 8 40105 -UBERON:0001617 mental artery 8 40106 -UBERON:0001619 ophthalmic artery 8 40107 -UBERON:0001622 lacrimal artery 8 40108 -UBERON:0001624 anterior cerebral artery 8 40109 -UBERON:0001627 middle cerebral artery 8 40110 -UBERON:0001628 posterior communicating artery 8 40111 -UBERON:0001632 temporal artery 8 40112 -UBERON:0001614 superficial temporal artery 9 40113 -UBERON:0035041 deep temporal artery 9 40114 -UBERON:0035042 middle temporal artery 9 40115 -UBERON:0035043 temporal branch of lateral pretrosal artery 9 40116 -UBERON:0035225 anterior temporal artery 9 40117 -UBERON:0035261 posterior temporal artery 9 40118 -UBERON:0001633 basilar artery 8 40119 -UBERON:0001653 facial vein 8 40120 -UBERON:0001656 retromandibular vein 9 40121 -UBERON:0001655 submental vein 8 40122 -UBERON:0001659 transverse facial vein 8 40123 -UBERON:0001660 maxillary vein 8 40124 -UBERON:0001671 temporal vein 8 40125 -UBERON:0001657 superficial temporal vein 9 40126 -UBERON:0001658 middle temporal vein 9 40127 -UBERON:0001661 deep temporal vein 9 40128 -UBERON:0001673 central retinal vein 8 40129 -UBERON:0002443 choroidal blood vessel 8 40130 -UBERON:0002505 spiral modiolar artery 8 40131 -UBERON:0003470 artery of upper lip 8 40132 -UBERON:0003471 artery of lower lip 8 40133 -UBERON:0003472 cerebellar artery 8 40134 -UBERON:0001635 superior cerebellar artery 9 40135 -UBERON:0009689 anterior inferior cerebellar artery 9 40136 -UBERON:0003500 corneal blood vessel 8 40137 -UBERON:0003501 retina blood vessel 8 40138 -UBERON:0001620 central retinal artery 9 40139 -UBERON:0003510 eyelid blood vessel 8 40140 -UBERON:0003511 iris blood vessel 8 40141 -UBERON:0004029 canal of Schlemm 8 40142 -UBERON:0004030 aqueous vein 8 40143 -UBERON:0004115 blood vessel of tympanic cavity 8 40144 -UBERON:0004363 pharyngeal arch artery 8 40145 -UBERON:0003118 pharyngeal arch artery 1 9 40146 -UBERON:0003119 pharyngeal arch artery 2 9 40147 -UBERON:0003120 pharyngeal arch artery 3 9 40148 -UBERON:0003121 pharyngeal arch artery 4 9 40149 -UBERON:0003122 pharyngeal arch artery 5 9 40150 -UBERON:0003123 pharyngeal arch artery 6 9 40151 -UBERON:0005193 ethmoidal artery 8 40152 -UBERON:0012318 anterior ethmoidal artery 9 40153 -UBERON:0012319 posterior ethmoidal artery 9 40154 -UBERON:0005492 hyaloid vessel 8 40155 -UBERON:0002270 hyaloid artery 9 40156 -UBERON:0006011 hyaloid vein 9 40157 -UBERON:0005973 blood-inner ear barrier 8 40158 -UBERON:0006197 auricular vein 8 40159 -UBERON:0001662 anterior auricular vein 9 40160 -UBERON:0006199 posterior auricular vein 9 40161 -UBERON:0006345 stapedial artery 8 40162 -UBERON:0007693 caroticotympanic artery 8 40163 -UBERON:0009654 alveolar artery 8 40164 -UBERON:0014693 inferior alveolar artery 9 40165 -UBERON:0010251 anterior meningeal artery 8 40166 -UBERON:0010367 conjunctival vein 8 40167 -UBERON:0013136 vein of lip 8 40168 -UBERON:0003477 vein of upper lip 9 40169 -UBERON:0003478 vein of lower lip 9 40170 -UBERON:0014686 angular vein 8 40171 -UBERON:0014696 anterior choroidal artery 8 40172 -UBERON:0014769 palpebral vein 8 40173 -UBERON:0002459 inferior palpebral vein 9 40174 -UBERON:0014768 superior palpebral vein 9 40175 -UBERON:0001654 supraorbital vein 10 40176 -UBERON:0014770 palpebral artery 8 40177 -UBERON:0014772 lateral palpebral artery 9 40178 -UBERON:0014773 medial palpebral artery 9 40179 -UBERON:0035043 temporal branch of lateral pretrosal artery 9 40180 -UBERON:0015156 terminal branch of ophthalmic artery 8 40181 -UBERON:0001623 dorsal nasal artery 9 40182 -UBERON:0012187 frontal artery 9 40183 -UBERON:0015157 zygomatico-orbital artery 8 40184 -UBERON:0015158 ophthalmotemporal branch of external ophthalmic artery 8 40185 -UBERON:0015160 supraorbital artery 8 40186 -UBERON:0015161 inferior branch of oculomotor nerve 8 40187 -UBERON:0015162 superior branch of oculomotor nerve 8 40188 -UBERON:0017616 afferent spiracular artery 8 40189 -UBERON:0017617 efferent spiracular artery 8 40190 -UBERON:0017635 paired venous dural sinus 8 40191 -UBERON:0001641 transverse sinus 9 40192 -UBERON:0005475 sigmoid sinus 9 40193 -UBERON:0007160 inferior petrosal sinus 9 40194 -UBERON:0017637 marginal venous sinus 9 40195 -UBERON:0017638 primitive marginal sinus 9 40196 -UBERON:0035338 sphenoparietal sinus 9 40197 -UBERON:0018231 labyrinthine artery 8 40198 -UBERON:0035237 branch of internal carotid artery 8 40199 -UBERON:0035350 branch of middle cerebral artery 8 40200 -UBERON:0035222 posterior parietal artery 9 40201 -UBERON:0035225 anterior temporal artery 9 40202 -UBERON:0035261 posterior temporal artery 9 40203 -UBERON:0035462 anterior parietal artery 9 40204 -UBERON:0035380 branch of anterior cerebral artery 8 40205 -UBERON:0006764 anterior communicating artery 9 40206 -UBERON:0035404 superior hypophysial artery 8 40207 -UBERON:0035489 branch of basilar artery 8 40208 -UBERON:0001635 superior cerebellar artery 9 40209 -UBERON:0001636 posterior cerebral artery 9 40210 -UBERON:0009689 anterior inferior cerebellar artery 9 40211 -UBERON:0035492 inferior hypophysial artery 8 40212 -UBERON:0035508 branch of posterior cerebral artery 8 40213 -UBERON:0014697 posterior choroidal artery 9 40214 -UBERON:0035659 deep facial vein 8 40215 -UBERON:0035662 parotid vein 8 40216 -UBERON:0035675 anterior facial vein 8 40217 -UBERON:0036074 vein of vestibular aqueduct 8 40218 -UBERON:0036300 tributary of central retinal vein 8 40219 -UBERON:2000202 efferent portion of pharyngeal arch artery 8 40220 -UBERON:2000716 afferent portion of pharyngeal arch artery 8 40221 -UBERON:2001051 caudal division of the internal carotid artery 8 40222 -UBERON:2001052 primordial hindbrain channel 8 40223 -UBERON:2001059 cranial division of the internal carotid artery 8 40224 -UBERON:2005000 basal communicating artery 8 40225 -UBERON:2005010 mid cerebral vein 8 40226 -UBERON:2005012 afferent filamental artery 8 40227 -UBERON:2005013 concurrent branch afferent branchial artery 8 40228 -UBERON:2005014 recurrent branch afferent branchial artery 8 40229 -UBERON:2005015 afferent lamellar arteriole 8 40230 -UBERON:2005017 primordial midbrain channel 8 40231 -UBERON:2005018 efferent filamental artery 8 40232 -UBERON:2005019 efferent lamellar arteriole 8 40233 -UBERON:2005026 primary head sinus 8 40234 -UBERON:2005027 posterior cerebral vein 8 40235 -UBERON:2005030 dorsal ciliary vein 8 40236 -UBERON:2005032 optic vein 8 40237 -UBERON:2005044 optic artery 8 40238 -UBERON:2005055 median palatocerebral vein 8 40239 -UBERON:2005056 palatocerebral vein 8 40240 -UBERON:2005093 nasal vein 8 40241 -UBERON:3010494 lateral pretrosal artery 8 40242 -UBERON:3010496 mandibular artery 8 40243 -UBERON:0003499 brain blood vessel 7 40244 -UBERON:0001663 cerebral vein 8 40245 -UBERON:0001664 inferior cerebral vein 9 40246 -UBERON:0001672 anterior cerebral vein 9 40247 -UBERON:0006666 great cerebral vein 9 40248 -UBERON:0016559 superficial cerebral vein 9 40249 -UBERON:0035150 superior cerebral vein 10 40250 -UBERON:0016564 deep cerebral vein 9 40251 -UBERON:0035530 basal vein 10 40252 -UBERON:0035151 dorsal cerebral vein 9 40253 -UBERON:0035152 internal cerebral vein 9 40254 -UBERON:0035231 superficial middle cerebral vein 9 40255 -UBERON:0035532 deep middle cerebral vein 9 40256 -UBERON:0002270 hyaloid artery 8 40257 -UBERON:0016565 cerebral blood vessel 8 40258 -UBERON:2005020 central artery 8 40259 -UBERON:2005021 cerebellar central artery 9 40260 -UBERON:2005052 anterior mesencephalic central artery 9 40261 -UBERON:2005078 middle mesencephalic central artery 9 40262 -UBERON:2005079 posterior mesencephalic central artery 9 40263 -UBERON:2005031 dorsal longitudinal vein 8 40264 -UBERON:2005248 trans-choroid plexus branch 8 40265 -UBERON:0003502 neck blood vessel 7 40266 -UBERON:0001641 transverse sinus 8 40267 -UBERON:0001653 facial vein 8 40268 -UBERON:0001656 retromandibular vein 9 40269 -UBERON:0001655 submental vein 8 40270 -UBERON:0001657 superficial temporal vein 8 40271 -UBERON:0001658 middle temporal vein 8 40272 -UBERON:0001659 transverse facial vein 8 40273 -UBERON:0001660 maxillary vein 8 40274 -UBERON:0004711 jugular vein 8 40275 -UBERON:0001101 external jugular vein 9 40276 -UBERON:0001104 anterior jugular vein 9 40277 -UBERON:0001586 internal jugular vein 9 40278 -UBERON:0005475 sigmoid sinus 8 40279 -UBERON:0006197 auricular vein 8 40280 -UBERON:0001662 anterior auricular vein 9 40281 -UBERON:0006199 posterior auricular vein 9 40282 -UBERON:0012320 cervical artery 8 40283 -UBERON:0001071 superficial cervical artery 9 40284 -UBERON:0012321 deep cervical artery 9 40285 -UBERON:0012322 ascending cervical artery 9 40286 -UBERON:0012324 transverse cervical artery 9 40287 -UBERON:0013136 vein of lip 8 40288 -UBERON:0003477 vein of upper lip 9 40289 -UBERON:0003478 vein of lower lip 9 40290 -UBERON:0014686 angular vein 8 40291 -UBERON:0014769 palpebral vein 8 40292 -UBERON:0002459 inferior palpebral vein 9 40293 -UBERON:0014768 superior palpebral vein 9 40294 -UBERON:0001654 supraorbital vein 10 40295 -UBERON:0035249 posterior external jugular vein 8 40296 -UBERON:0035659 deep facial vein 8 40297 -UBERON:0035662 parotid vein 8 40298 -UBERON:0035675 anterior facial vein 8 40299 -UBERON:0036074 vein of vestibular aqueduct 8 40300 -UBERON:0003504 respiratory system blood vessel 7 40301 -UBERON:0003494 respiratory system venule 8 40302 -UBERON:0003505 trachea blood vessel 8 40303 -UBERON:0003512 lung blood vessel 8 40304 -UBERON:0016405 pulmonary capillary 9 40305 -UBERON:0003518 main bronchus blood vessel 8 40306 -UBERON:0003526 respiratory system capillary 8 40307 -UBERON:0016405 pulmonary capillary 9 40308 -UBERON:0003643 respiratory system arterial blood vessel 8 40309 -UBERON:0003469 respiratory system artery 9 40310 -UBERON:0004363 pharyngeal arch artery 10 40311 -UBERON:0003118 pharyngeal arch artery 1 11 40312 -UBERON:0003119 pharyngeal arch artery 2 11 40313 -UBERON:0003120 pharyngeal arch artery 3 11 40314 -UBERON:0003121 pharyngeal arch artery 4 11 40315 -UBERON:0003122 pharyngeal arch artery 5 11 40316 -UBERON:0003123 pharyngeal arch artery 6 11 40317 -UBERON:0017616 afferent spiracular artery 10 40318 -UBERON:0017617 efferent spiracular artery 10 40319 -UBERON:2000202 efferent portion of pharyngeal arch artery 10 40320 -UBERON:2000666 filamental artery 10 40321 -UBERON:2000716 afferent portion of pharyngeal arch artery 10 40322 -UBERON:2001857 hyoidean artery 10 40323 -UBERON:2005012 afferent filamental artery 10 40324 -UBERON:2005013 concurrent branch afferent branchial artery 10 40325 -UBERON:2005014 recurrent branch afferent branchial artery 10 40326 -UBERON:2005015 afferent lamellar arteriole 10 40327 -UBERON:2005018 efferent filamental artery 10 40328 -UBERON:2005019 efferent lamellar arteriole 10 40329 -UBERON:0003495 respiratory system arteriole 9 40330 -UBERON:3010200 vasculature of respiratory integument 8 40331 -UBERON:0003509 arterial blood vessel 7 40332 -UBERON:0000947 aorta 8 40333 -UBERON:0003085 ventral aorta 9 40334 -UBERON:0005599 common dorsal aorta 9 40335 -UBERON:0005613 left dorsal aorta 9 40336 -UBERON:0005622 right dorsal aorta 9 40337 -UBERON:0005805 dorsal aorta 9 40338 -UBERON:3010423 larval aorta 9 40339 -UBERON:0001637 artery 8 40340 -UBERON:0001190 ovarian artery 9 40341 -UBERON:0002493 uterine artery 10 40342 -UBERON:0001193 hepatic artery 9 40343 -UBERON:0015480 proper hepatic artery 10 40344 -UBERON:0015481 left hepatic artery 10 40345 -UBERON:0015482 right hepatic artery 10 40346 -UBERON:0001310 umbilical artery 9 40347 -UBERON:0005458 left umbilical artery 10 40348 -UBERON:0005470 right umbilical artery 10 40349 -UBERON:0001390 sural artery 9 40350 -UBERON:0001394 axillary artery 9 40351 -UBERON:0001395 thoraco-acromial artery 9 40352 -UBERON:0001396 lateral thoracic artery 9 40353 -UBERON:0001397 subscapular artery 9 40354 -UBERON:0001398 brachial artery 9 40355 -UBERON:0001399 deep brachial artery 9 40356 -UBERON:0001404 radial artery 9 40357 -UBERON:0001406 ulnar artery 9 40358 -UBERON:0001552 kidney arcuate artery 9 40359 -UBERON:0001553 medial tarsal artery 9 40360 -UBERON:0001616 maxillary artery 9 40361 -UBERON:0001617 mental artery 9 40362 -UBERON:0001618 buccal artery 9 40363 -UBERON:0001632 temporal artery 9 40364 -UBERON:0001614 superficial temporal artery 10 40365 -UBERON:0035041 deep temporal artery 10 40366 -UBERON:0035042 middle temporal artery 10 40367 -UBERON:0035043 temporal branch of lateral pretrosal artery 10 40368 -UBERON:0035225 anterior temporal artery 10 40369 -UBERON:0035261 posterior temporal artery 10 40370 -UBERON:0001634 mesencephalic artery 9 40371 -UBERON:0001651 right pulmonary artery 9 40372 -UBERON:0001652 left pulmonary artery 9 40373 -UBERON:0002011 thoracodorsal artery 9 40374 -UBERON:0002012 pulmonary artery 9 40375 -UBERON:0002061 truncus arteriosus 9 40376 -UBERON:0002249 median artery 9 40377 -UBERON:0002270 hyaloid artery 9 40378 -UBERON:0002333 pulmonary trunk 9 40379 -UBERON:0002454 dorsal metacarpal artery 9 40380 -UBERON:0002457 intersomitic artery 9 40381 -UBERON:0002505 spiral modiolar artery 9 40382 -UBERON:0003469 respiratory system artery 9 40383 -UBERON:0004363 pharyngeal arch artery 10 40384 -UBERON:0003118 pharyngeal arch artery 1 11 40385 -UBERON:0003119 pharyngeal arch artery 2 11 40386 -UBERON:0003120 pharyngeal arch artery 3 11 40387 -UBERON:0003121 pharyngeal arch artery 4 11 40388 -UBERON:0003122 pharyngeal arch artery 5 11 40389 -UBERON:0003123 pharyngeal arch artery 6 11 40390 -UBERON:0017616 afferent spiracular artery 10 40391 -UBERON:0017617 efferent spiracular artery 10 40392 -UBERON:2000202 efferent portion of pharyngeal arch artery 10 40393 -UBERON:2000666 filamental artery 10 40394 -UBERON:2000716 afferent portion of pharyngeal arch artery 10 40395 -UBERON:2001857 hyoidean artery 10 40396 -UBERON:2005012 afferent filamental artery 10 40397 -UBERON:2005013 concurrent branch afferent branchial artery 10 40398 -UBERON:2005014 recurrent branch afferent branchial artery 10 40399 -UBERON:2005015 afferent lamellar arteriole 10 40400 -UBERON:2005018 efferent filamental artery 10 40401 -UBERON:2005019 efferent lamellar arteriole 10 40402 -UBERON:0003472 cerebellar artery 9 40403 -UBERON:0001635 superior cerebellar artery 10 40404 -UBERON:0009689 anterior inferior cerebellar artery 10 40405 -UBERON:0003473 thoracic cavity artery 9 40406 -UBERON:0001884 phrenic nerve 10 40407 -UBERON:0003474 meningeal artery 9 40408 -UBERON:0010249 posterior meningeal artery 10 40409 -UBERON:0010250 middle meningeal artery 10 40410 -UBERON:0010251 anterior meningeal artery 10 40411 -UBERON:0003847 thyroid artery 9 40412 -UBERON:0007149 inferior thyroid artery 10 40413 -UBERON:0007150 superior thyroid artery 10 40414 -UBERON:0018250 middle thyroid artery 10 40415 -UBERON:0004552 digital artery 9 40416 -UBERON:0004553 forelimb digital artery 10 40417 -UBERON:0006141 palmar digital artery 11 40418 -UBERON:0001410 common palmar digital artery 12 40419 -UBERON:0006137 proper palmar digital artery 12 40420 -UBERON:0006146 dorsal digital artery of manus 11 40421 -UBERON:0006164 forelimb common dorsal digital arteries 12 40422 -UBERON:0006165 median dorsal digital artery for digit 1 12 40423 -UBERON:0006166 lateral dorsal digital artery for digit 5 12 40424 -UBERON:0006167 forelimb proper dorsal digital arteries 12 40425 -UBERON:0004554 hindlimb digital artery 10 40426 -UBERON:0006138 plantar digital artery 11 40427 -UBERON:0002455 common plantar digital arteries 12 40428 -UBERON:0004540 proper plantar digital artery 12 40429 -UBERON:0006145 dorsal digital artery of pes 11 40430 -UBERON:0006168 hindlimb common dorsal digital arteries 12 40431 -UBERON:0006169 hindlimb proper dorsal digital arteries 12 40432 -UBERON:0006163 dorsal digital artery 10 40433 -UBERON:0006145 dorsal digital artery of pes 11 40434 -UBERON:0006168 hindlimb common dorsal digital arteries 12 40435 -UBERON:0006169 hindlimb proper dorsal digital arteries 12 40436 -UBERON:0006146 dorsal digital artery of manus 11 40437 -UBERON:0006164 forelimb common dorsal digital arteries 12 40438 -UBERON:0006165 median dorsal digital artery for digit 1 12 40439 -UBERON:0006166 lateral dorsal digital artery for digit 5 12 40440 -UBERON:0006167 forelimb proper dorsal digital arteries 12 40441 -UBERON:0004573 systemic artery 9 40442 -UBERON:0000457 cavernous artery 10 40443 -UBERON:0001192 left gastric artery 10 40444 -UBERON:0001194 splenic artery 10 40445 -UBERON:0001195 inferior pancreaticoduodenal artery 10 40446 -UBERON:0001196 middle colic artery 10 40447 -UBERON:0001197 ileocolic artery 10 40448 -UBERON:0001198 superior suprarenal artery 10 40449 -UBERON:0001311 inferior vesical artery 10 40450 -UBERON:0035640 middle vesical artery 11 40451 -UBERON:0001313 iliolumbar artery 10 40452 -UBERON:0001314 obturator artery 10 40453 -UBERON:0001315 superior gluteal artery 10 40454 -UBERON:0001340 dorsal artery of penis 10 40455 -UBERON:0001354 inferior epigastric artery 10 40456 -UBERON:0001355 deep femoral artery 10 40457 -UBERON:0007316 deep external pudendal artery 11 40458 -UBERON:0001356 medial circumflex femoral artery 10 40459 -UBERON:0001358 perineal artery 10 40460 -UBERON:0001529 brachiocephalic artery 10 40461 -UBERON:0001530 common carotid artery plus branches 10 40462 -UBERON:0001531 right common carotid artery plus branches 11 40463 -UBERON:0001536 left common carotid artery plus branches 11 40464 -UBERON:0003708 carotid sinus 11 40465 -UBERON:0001533 subclavian artery 10 40466 -UBERON:0001534 right subclavian artery 11 40467 -UBERON:0001584 left subclavian artery 11 40468 -UBERON:0001539 dorsalis pedis artery 10 40469 -UBERON:0001541 medial plantar artery 10 40470 -UBERON:0001561 subcostal artery 10 40471 -UBERON:0001611 sublingual artery 10 40472 -UBERON:0001615 transverse facial artery 10 40473 -UBERON:0001619 ophthalmic artery 10 40474 -UBERON:0001620 central retinal artery 10 40475 -UBERON:0001621 coronary artery 10 40476 -UBERON:0001625 right coronary artery 11 40477 -UBERON:0001626 left coronary artery 11 40478 -UBERON:0001622 lacrimal artery 10 40479 -UBERON:0001628 posterior communicating artery 10 40480 -UBERON:0002040 bronchial artery 10 40481 -UBERON:0002056 inferior suprarenal artery 10 40482 -UBERON:0002057 phrenic artery 10 40483 -UBERON:0006632 musculo-phrenic artery 11 40484 -UBERON:0012255 inferior phrenic artery 11 40485 -UBERON:0013133 superior phrenic artery 11 40486 -UBERON:0002060 femoral artery 10 40487 -UBERON:0002070 superior pancreaticoduodenal artery 10 40488 -UBERON:0002250 popliteal artery 10 40489 -UBERON:0002456 internal thoracic artery 10 40490 -UBERON:0002458 spinal artery 10 40491 -UBERON:0001535 vertebral artery 11 40492 -UBERON:0005431 anterior spinal artery 11 40493 -UBERON:0007146 posterior spinal artery 11 40494 -UBERON:0003086 caudal artery 10 40495 -UBERON:0003468 ureteric segment of renal artery 10 40496 -UBERON:0001188 right testicular artery 11 40497 -UBERON:0001189 left testicular artery 11 40498 -UBERON:0001312 superior vesical artery 11 40499 -UBERON:0003470 artery of upper lip 10 40500 -UBERON:0003471 artery of lower lip 10 40501 -UBERON:0003709 circle of Willis 10 40502 -UBERON:0004449 cerebral artery 10 40503 -UBERON:0001624 anterior cerebral artery 11 40504 -UBERON:0001627 middle cerebral artery 11 40505 -UBERON:0001636 posterior cerebral artery 11 40506 -UBERON:0005192 deferent duct artery 10 40507 -UBERON:0005193 ethmoidal artery 10 40508 -UBERON:0012318 anterior ethmoidal artery 11 40509 -UBERON:0012319 posterior ethmoidal artery 11 40510 -UBERON:0005396 carotid artery segment 10 40511 -UBERON:0001070 external carotid artery 11 40512 -UBERON:0001532 internal carotid artery 11 40513 -UBERON:0007142 left internal carotid artery 12 40514 -UBERON:0007143 right internal carotid artery 12 40515 -UBERON:0010197 trunk of common carotid artery 11 40516 -UBERON:0035237 branch of internal carotid artery 11 40517 -UBERON:0005436 common hepatic artery 10 40518 -UBERON:0005440 ductus arteriosus 10 40519 -UBERON:0005609 iliac artery 10 40520 -UBERON:0001191 common iliac artery 11 40521 -UBERON:0035322 right common iliac artery 12 40522 -UBERON:0035529 left common iliac artery 12 40523 -UBERON:0001308 external iliac artery 11 40524 -UBERON:0001309 internal iliac artery 11 40525 -UBERON:0005612 intercostal artery 10 40526 -UBERON:0006198 dorsal intercostal artery 11 40527 -UBERON:2000677 segmental intercostal artery 11 40528 -UBERON:0005628 ileal artery 10 40529 -UBERON:0006002 vitelline artery 10 40530 -UBERON:0007153 superior epigastric artery 10 40531 -UBERON:0007315 internal pudendal artery 10 40532 -UBERON:0007317 superficial external pudendal artery 10 40533 -UBERON:0007610 tibial artery 10 40534 -UBERON:0001537 anterior tibial artery 11 40535 -UBERON:0001538 posterior tibial artery 11 40536 -UBERON:0007693 caroticotympanic artery 10 40537 -UBERON:0008311 penile bulb artery 10 40538 -UBERON:0008320 common penile artery 10 40539 -UBERON:0008321 deep artery of penis 10 40540 -UBERON:0008322 deep artery of clitoris 10 40541 -UBERON:0008323 dorsal artery of clitoris 10 40542 -UBERON:0009040 deep circumflex iliac artery 10 40543 -UBERON:0009041 superficial circumflex iliac artery 10 40544 -UBERON:0010132 gastroduodenal artery 10 40545 -UBERON:0010176 nutrient foramen artery 10 40546 -UBERON:0010198 carotid duct 10 40547 -UBERON:0010251 anterior meningeal artery 10 40548 -UBERON:0010399 spleen trabecular artery 10 40549 -UBERON:0013132 penicillar arteriole 11 40550 -UBERON:0010408 ocular angle artery 10 40551 -UBERON:0011693 extraembryonic portion of umbilical artery 10 40552 -UBERON:0011696 left extraembryonic umbilical artery 11 40553 -UBERON:0011697 right extraembryonic umbilical artery 11 40554 -UBERON:0012254 abdominal aorta artery 10 40555 -UBERON:0001184 renal artery 11 40556 -UBERON:0001185 right renal artery 12 40557 -UBERON:0001186 left renal artery 12 40558 -UBERON:0001191 common iliac artery 11 40559 -UBERON:0035322 right common iliac artery 12 40560 -UBERON:0035529 left common iliac artery 12 40561 -UBERON:0001640 celiac artery 11 40562 -UBERON:0005464 median sacral artery 11 40563 -UBERON:0005616 mesenteric artery 11 40564 -UBERON:0001182 superior mesenteric artery 12 40565 -UBERON:0001183 inferior mesenteric artery 12 40566 -UBERON:2005080 anterior mesenteric artery 12 40567 -UBERON:2005088 posterior mesenteric artery 12 40568 -UBERON:0006636 lumbar artery 11 40569 -UBERON:0010192 genital artery 11 40570 -UBERON:0001187 testicular artery 12 40571 -UBERON:0001188 right testicular artery 13 40572 -UBERON:0001189 left testicular artery 13 40573 -UBERON:0009659 spermatic artery 13 40574 -UBERON:0002493 uterine artery 12 40575 -UBERON:0012173 middle suprarenal artery 11 40576 -UBERON:0012255 inferior phrenic artery 11 40577 -UBERON:0014696 anterior choroidal artery 10 40578 -UBERON:0014772 lateral palpebral artery 10 40579 -UBERON:0014773 medial palpebral artery 10 40580 -UBERON:0015156 terminal branch of ophthalmic artery 10 40581 -UBERON:0001623 dorsal nasal artery 11 40582 -UBERON:0012187 frontal artery 11 40583 -UBERON:0015157 zygomatico-orbital artery 10 40584 -UBERON:0015158 ophthalmotemporal branch of external ophthalmic artery 10 40585 -UBERON:0015160 supraorbital artery 10 40586 -UBERON:0015173 helicine branch of uterine artery 10 40587 -UBERON:0015480 proper hepatic artery 10 40588 -UBERON:0018243 thymic artery 10 40589 -UBERON:0018247 cervical thymic artery 11 40590 -UBERON:0018248 inferior superficial cervical thymic artery 12 40591 -UBERON:0018249 superior superficial cervical thymic artery 12 40592 -UBERON:0018255 jejunal artery 10 40593 -UBERON:0018335 lateral dorsal aorta canal 10 40594 -UBERON:0034693 cremasteric artery 10 40595 -UBERON:0034727 vestibular bulb artery 10 40596 -UBERON:0034927 arcuate artery of foot 10 40597 -UBERON:0034964 superficial epigastric artery 10 40598 -UBERON:0035040 superior rectal artery 10 40599 -UBERON:0035042 middle temporal artery 10 40600 -UBERON:0035043 temporal branch of lateral pretrosal artery 10 40601 -UBERON:0035180 sigmoid artery 10 40602 -UBERON:0035195 plantar metatarsal artery 10 40603 -UBERON:0035273 superior thoracic artery 10 40604 -UBERON:0035292 branch of posterior tibial artery 10 40605 -UBERON:0001540 peroneal artery 11 40606 -UBERON:0035307 branch of vertebral artery 10 40607 -UBERON:0001633 basilar artery 11 40608 -UBERON:0005431 anterior spinal artery 11 40609 -UBERON:0009688 posterior inferior cerebellar artery 11 40610 -UBERON:0035350 branch of middle cerebral artery 10 40611 -UBERON:0035222 posterior parietal artery 11 40612 -UBERON:0035225 anterior temporal artery 11 40613 -UBERON:0035261 posterior temporal artery 11 40614 -UBERON:0035462 anterior parietal artery 11 40615 -UBERON:0035380 branch of anterior cerebral artery 10 40616 -UBERON:0006764 anterior communicating artery 11 40617 -UBERON:0035395 branch of left coronary artery 10 40618 -UBERON:0035422 circumflex branch of left coronary artery 11 40619 -UBERON:0035398 branch of external carotid artery 10 40620 -UBERON:0001610 lingual artery 11 40621 -UBERON:0001612 facial artery 11 40622 -UBERON:0001613 occipital artery 11 40623 -UBERON:0001614 superficial temporal artery 11 40624 -UBERON:0007150 superior thyroid artery 11 40625 -UBERON:0014694 posterior auricular artery 11 40626 -UBERON:0018250 middle thyroid artery 11 40627 -UBERON:0035404 superior hypophysial artery 10 40628 -UBERON:0035489 branch of basilar artery 10 40629 -UBERON:0001635 superior cerebellar artery 11 40630 -UBERON:0001636 posterior cerebral artery 11 40631 -UBERON:0009689 anterior inferior cerebellar artery 11 40632 -UBERON:0035492 inferior hypophysial artery 10 40633 -UBERON:0035508 branch of posterior cerebral artery 10 40634 -UBERON:0014697 posterior choroidal artery 11 40635 -UBERON:0035539 esophageal artery 10 40636 -UBERON:0035829 right gastroepiploic artery 10 40637 -UBERON:0035830 left gastroepiploic artery 10 40638 -UBERON:2001051 caudal division of the internal carotid artery 10 40639 -UBERON:2001053 future internal carotid artery 10 40640 -UBERON:2001059 cranial division of the internal carotid artery 10 40641 -UBERON:3010413 left channel of ventral aorta 10 40642 -UBERON:3010424 right channel of ventral aorta 10 40643 -UBERON:3010489 muscular artery 10 40644 -UBERON:3010494 lateral pretrosal artery 10 40645 -UBERON:3010496 mandibular artery 10 40646 -UBERON:3010503 oviduct artery 10 40647 -UBERON:0004639 renal afferent arteriole 9 40648 -UBERON:0004646 infraorbital artery 9 40649 -UBERON:0004688 costo-cervical trunk 9 40650 -UBERON:0005268 renal cortex artery 9 40651 -UBERON:0005432 aortic sac 9 40652 -UBERON:0005608 hyoid artery 9 40653 -UBERON:0005624 suprarenal artery 9 40654 -UBERON:0001198 superior suprarenal artery 10 40655 -UBERON:0002056 inferior suprarenal artery 10 40656 -UBERON:0012173 middle suprarenal artery 10 40657 -UBERON:0006345 stapedial artery 9 40658 -UBERON:0006347 communicating artery 9 40659 -UBERON:0001628 posterior communicating artery 10 40660 -UBERON:0006764 anterior communicating artery 10 40661 -UBERON:0006349 epigastric artery 9 40662 -UBERON:0001354 inferior epigastric artery 10 40663 -UBERON:0007153 superior epigastric artery 10 40664 -UBERON:0034964 superficial epigastric artery 10 40665 -UBERON:0006664 greater palatine artery 9 40666 -UBERON:0007312 pudendal artery 9 40667 -UBERON:0007315 internal pudendal artery 10 40668 -UBERON:0013137 external pudendal artery 10 40669 -UBERON:0007314 superior external pudendal artery 11 40670 -UBERON:0007316 deep external pudendal artery 11 40671 -UBERON:0007317 superficial external pudendal artery 11 40672 -UBERON:0007718 principal artery to limb 9 40673 -UBERON:0006436 principal artery to forelimb 10 40674 -UBERON:0006438 principal artery to hindlimb 10 40675 -UBERON:0009025 gastroepiploic artery 9 40676 -UBERON:0035829 right gastroepiploic artery 10 40677 -UBERON:0035830 left gastroepiploic artery 10 40678 -UBERON:0009026 iliac circumflex artery 9 40679 -UBERON:0009040 deep circumflex iliac artery 10 40680 -UBERON:0009041 superficial circumflex iliac artery 10 40681 -UBERON:0009027 vesical artery 9 40682 -UBERON:0001311 inferior vesical artery 10 40683 -UBERON:0035640 middle vesical artery 11 40684 -UBERON:0001312 superior vesical artery 10 40685 -UBERON:0009654 alveolar artery 9 40686 -UBERON:0014693 inferior alveolar artery 10 40687 -UBERON:0009655 auricular artery 9 40688 -UBERON:0014694 posterior auricular artery 10 40689 -UBERON:0014695 deep auricular artery 10 40690 -UBERON:0009657 artery of lip 9 40691 -UBERON:0003470 artery of upper lip 10 40692 -UBERON:0003471 artery of lower lip 10 40693 -UBERON:0009658 pancreaticoduodenal artery 9 40694 -UBERON:0001195 inferior pancreaticoduodenal artery 10 40695 -UBERON:0002070 superior pancreaticoduodenal artery 10 40696 -UBERON:0009885 interlobar artery 9 40697 -UBERON:0011694 embryo portion of umbilical artery 9 40698 -UBERON:0012320 cervical artery 9 40699 -UBERON:0001071 superficial cervical artery 10 40700 -UBERON:0012321 deep cervical artery 10 40701 -UBERON:0012322 ascending cervical artery 10 40702 -UBERON:0012324 transverse cervical artery 10 40703 -UBERON:0013151 choroidal artery 9 40704 -UBERON:0014696 anterior choroidal artery 10 40705 -UBERON:0014697 posterior choroidal artery 10 40706 -UBERON:0013648 masseteric artery 9 40707 -UBERON:0001615 transverse facial artery 10 40708 -UBERON:0014770 palpebral artery 9 40709 -UBERON:0014772 lateral palpebral artery 10 40710 -UBERON:0014773 medial palpebral artery 10 40711 -UBERON:0035043 temporal branch of lateral pretrosal artery 10 40712 -UBERON:0015161 inferior branch of oculomotor nerve 9 40713 -UBERON:0015162 superior branch of oculomotor nerve 9 40714 -UBERON:0015171 uterine spiral artery 9 40715 -UBERON:0015177 helicine artery 9 40716 -UBERON:0015173 helicine branch of uterine artery 10 40717 -UBERON:0015174 helicine artery of penis 10 40718 -UBERON:0015350 saphenous artery 9 40719 -UBERON:0018231 labyrinthine artery 9 40720 -UBERON:0018397 posterior superior alveolar artery 9 40721 -UBERON:0035039 rectal artery 9 40722 -UBERON:0001183 inferior mesenteric artery 10 40723 -UBERON:0001357 inferior rectal artery 10 40724 -UBERON:0035040 superior rectal artery 10 40725 -UBERON:0035183 calcarine artery 9 40726 -UBERON:0035304 branch of ulnar artery 9 40727 -UBERON:0035359 branch of brachial artery 9 40728 -UBERON:0035403 hypophysial artery 9 40729 -UBERON:0035404 superior hypophysial artery 10 40730 -UBERON:0035492 inferior hypophysial artery 10 40731 -UBERON:0035548 colic artery 9 40732 -UBERON:2000484 celiacomesenteric artery 9 40733 -UBERON:2000673 hypobranchial artery 9 40734 -UBERON:2001054 lateral dorsal aorta 9 40735 -UBERON:2001062 presumptive mesencephalic artery 9 40736 -UBERON:2001975 suprabranchial artery 9 40737 -UBERON:2005000 basal communicating artery 9 40738 -UBERON:2005011 pseudobranchial artery 9 40739 -UBERON:2005020 central artery 9 40740 -UBERON:2005021 cerebellar central artery 10 40741 -UBERON:2005052 anterior mesencephalic central artery 10 40742 -UBERON:2005078 middle mesencephalic central artery 10 40743 -UBERON:2005079 posterior mesencephalic central artery 10 40744 -UBERON:2005022 opercular artery 9 40745 -UBERON:2005036 supraintestinal artery 9 40746 -UBERON:2005044 optic artery 9 40747 -UBERON:2005048 primitive prosencephalic artery 9 40748 -UBERON:2005049 prosencephalic artery 9 40749 -UBERON:2005050 palatocerebral artery 9 40750 -UBERON:2005051 communicating vessel palatocerebral artery 9 40751 -UBERON:2005053 nasal ciliary artery 9 40752 -UBERON:2005082 dorsal branch nasal ciliary artery 9 40753 -UBERON:2005083 ventral branch nasal ciliary artery 9 40754 -UBERON:2005084 metencephalic artery 9 40755 -UBERON:2005085 nasal artery 9 40756 -UBERON:2005089 swim bladder artery 9 40757 -UBERON:3010417 posterior palatine artery 9 40758 -UBERON:3010498 cutaneus artery 9 40759 -UBERON:3010499 coeliaco-mesenteric artery 9 40760 -UBERON:3010501 duodeno-pancreatic artery 9 40761 -UBERON:3010502 duodeno-hepatic artery 9 40762 -UBERON:0001980 arteriole 8 40763 -UBERON:0003495 respiratory system arteriole 9 40764 -UBERON:0004639 renal afferent arteriole 9 40765 -UBERON:0004640 renal efferent arteriole 9 40766 -UBERON:0022292 splenic arteriole 9 40767 -UBERON:0010401 spleen central arteriole 10 40768 -UBERON:0013132 penicillar arteriole 10 40769 -UBERON:0034884 juxtaglomerular arteriole 9 40770 -UBERON:0003643 respiratory system arterial blood vessel 8 40771 -UBERON:0003469 respiratory system artery 9 40772 -UBERON:0004363 pharyngeal arch artery 10 40773 -UBERON:0003118 pharyngeal arch artery 1 11 40774 -UBERON:0003119 pharyngeal arch artery 2 11 40775 -UBERON:0003120 pharyngeal arch artery 3 11 40776 -UBERON:0003121 pharyngeal arch artery 4 11 40777 -UBERON:0003122 pharyngeal arch artery 5 11 40778 -UBERON:0003123 pharyngeal arch artery 6 11 40779 -UBERON:0017616 afferent spiracular artery 10 40780 -UBERON:0017617 efferent spiracular artery 10 40781 -UBERON:2000202 efferent portion of pharyngeal arch artery 10 40782 -UBERON:2000666 filamental artery 10 40783 -UBERON:2000716 afferent portion of pharyngeal arch artery 10 40784 -UBERON:2001857 hyoidean artery 10 40785 -UBERON:2005012 afferent filamental artery 10 40786 -UBERON:2005013 concurrent branch afferent branchial artery 10 40787 -UBERON:2005014 recurrent branch afferent branchial artery 10 40788 -UBERON:2005015 afferent lamellar arteriole 10 40789 -UBERON:2005018 efferent filamental artery 10 40790 -UBERON:2005019 efferent lamellar arteriole 10 40791 -UBERON:0003495 respiratory system arteriole 9 40792 -UBERON:0003644 kidney arterial blood vessel 8 40793 -UBERON:0001552 kidney arcuate artery 9 40794 -UBERON:0004639 renal afferent arteriole 9 40795 -UBERON:0004640 renal efferent arteriole 9 40796 -UBERON:0004723 interlobular artery 9 40797 -UBERON:0005268 renal cortex artery 9 40798 -UBERON:0034884 juxtaglomerular arteriole 9 40799 -UBERON:3010500 gastrico-linealis 8 40800 -UBERON:0003513 trunk blood vessel 7 40801 -UBERON:0002064 common cardinal vein 8 40802 -UBERON:0009138 right common cardinal vein 9 40803 -UBERON:0009769 left common cardinal vein 9 40804 -UBERON:0002065 posterior cardinal vein 8 40805 -UBERON:0009139 right posterior cardinal vein 9 40806 -UBERON:0013124 left posterior cardinal vein 9 40807 -UBERON:0003086 caudal artery 8 40808 -UBERON:0003834 thoracic segment blood vessel 8 40809 -UBERON:0003498 heart blood vessel 9 40810 -UBERON:0001621 coronary artery 10 40811 -UBERON:0001625 right coronary artery 11 40812 -UBERON:0001626 left coronary artery 11 40813 -UBERON:0002061 truncus arteriosus 10 40814 -UBERON:0004148 cardiac vein 10 40815 -UBERON:0006958 great vein of heart 11 40816 -UBERON:0009687 middle cardiac vein 11 40817 -UBERON:0035374 small cardiac vein 11 40818 -UBERON:0005432 aortic sac 10 40819 -UBERON:0005438 coronary sinus 10 40820 -UBERON:0005440 ductus arteriosus 10 40821 -UBERON:0006829 remnant of left anterior vena cava 10 40822 -UBERON:0006966 coronary capillary 10 40823 -UBERON:0035395 branch of left coronary artery 10 40824 -UBERON:0035422 circumflex branch of left coronary artery 11 40825 -UBERON:2000214 hypobranchial vessel 10 40826 -UBERON:0003506 chest blood vessel 9 40827 -UBERON:0003512 lung blood vessel 9 40828 -UBERON:0016405 pulmonary capillary 10 40829 -UBERON:0005194 thoracic vein 9 40830 -UBERON:0001589 internal thoracic vein 10 40831 -UBERON:0002088 lateral thoracic vein 10 40832 -UBERON:0004148 cardiac vein 10 40833 -UBERON:0006958 great vein of heart 11 40834 -UBERON:0009687 middle cardiac vein 11 40835 -UBERON:0035374 small cardiac vein 11 40836 -UBERON:0006662 musculo-phrenic vein 10 40837 -UBERON:0006829 remnant of left anterior vena cava 10 40838 -UBERON:0007155 superior epigastric vein 10 40839 -UBERON:0017643 external thoracic vein 10 40840 -UBERON:0005612 intercostal artery 9 40841 -UBERON:0006198 dorsal intercostal artery 10 40842 -UBERON:2000677 segmental intercostal artery 10 40843 -UBERON:0013133 superior phrenic artery 9 40844 -UBERON:0035539 esophageal artery 9 40845 -UBERON:0003835 abdominal segment blood vessel 8 40846 -UBERON:0001340 dorsal artery of penis 9 40847 -UBERON:0001357 inferior rectal artery 9 40848 -UBERON:0001358 perineal artery 9 40849 -UBERON:0003497 abdomen blood vessel 9 40850 -UBERON:0003517 kidney blood vessel 10 40851 -UBERON:0003527 kidney capillary 11 40852 -UBERON:0004212 glomerular capillary 12 40853 -UBERON:0005144 metanephric glomerular capillary 13 40854 -UBERON:0006183 mesonephric glomerular capillary 13 40855 -UBERON:0007306 pronephric glomerular capillary 13 40856 -UBERON:0005272 peritubular capillary 12 40857 -UBERON:0006341 outer renal medulla peritubular capillary 13 40858 -UBERON:0006851 renal cortex peritubular capillary 13 40859 -UBERON:0003644 kidney arterial blood vessel 11 40860 -UBERON:0001552 kidney arcuate artery 12 40861 -UBERON:0004639 renal afferent arteriole 12 40862 -UBERON:0004640 renal efferent arteriole 12 40863 -UBERON:0004723 interlobular artery 12 40864 -UBERON:0005268 renal cortex artery 12 40865 -UBERON:0034884 juxtaglomerular arteriole 12 40866 -UBERON:0014401 renal venous blood vessel 11 40867 -UBERON:0001226 major calyx 12 40868 -UBERON:0001227 minor calyx 12 40869 -UBERON:0004719 kidney arcuate vein 12 40870 -UBERON:0004775 outer renal medulla vasa recta 12 40871 -UBERON:0004776 inner renal medulla vasa recta 12 40872 -UBERON:0005168 renal interlobular vein 12 40873 -UBERON:0005269 renal cortex vein 12 40874 -UBERON:0003910 splenic sinusoid 10 40875 -UBERON:0009025 gastroepiploic artery 10 40876 -UBERON:0035829 right gastroepiploic artery 11 40877 -UBERON:0035830 left gastroepiploic artery 11 40878 -UBERON:0009967 spleen venous sinus 10 40879 -UBERON:0010399 spleen trabecular artery 10 40880 -UBERON:0013132 penicillar arteriole 11 40881 -UBERON:0013126 vein of abdomen 10 40882 -UBERON:0001143 hepatic vein 11 40883 -UBERON:0011955 left hepatic vein 12 40884 -UBERON:0011956 right hepatic vein 12 40885 -UBERON:0011957 middle hepatic vein 12 40886 -UBERON:0015455 accessory hepatic vein 12 40887 -UBERON:0001226 major calyx 11 40888 -UBERON:0001227 minor calyx 11 40889 -UBERON:0004719 kidney arcuate vein 11 40890 -UBERON:0004775 outer renal medulla vasa recta 11 40891 -UBERON:0004776 inner renal medulla vasa recta 11 40892 -UBERON:0005168 renal interlobular vein 11 40893 -UBERON:0005269 renal cortex vein 11 40894 -UBERON:0006841 central vein of liver 11 40895 -UBERON:0010400 spleen trabecular vein 11 40896 -UBERON:0016890 intrahepatic branch of portal vein 11 40897 -UBERON:0035655 paraumbilical vein 11 40898 -UBERON:0015796 liver blood vessel 10 40899 -UBERON:0001143 hepatic vein 11 40900 -UBERON:0011955 left hepatic vein 12 40901 -UBERON:0011956 right hepatic vein 12 40902 -UBERON:0011957 middle hepatic vein 12 40903 -UBERON:0015455 accessory hepatic vein 12 40904 -UBERON:0001281 hepatic sinusoid 11 40905 -UBERON:0009548 hepatic sinusoid of left of lobe of liver 12 40906 -UBERON:0011737 caudate lobe hepatic sinusoid 13 40907 -UBERON:0009549 hepatic sinusoid of right of lobe of liver 12 40908 -UBERON:0011737 caudate lobe hepatic sinusoid 13 40909 -UBERON:0011738 quadrate lobe hepatic sinusoid 13 40910 -UBERON:0006841 central vein of liver 11 40911 -UBERON:0015481 left hepatic artery 11 40912 -UBERON:0015482 right hepatic artery 11 40913 -UBERON:0016890 intrahepatic branch of portal vein 11 40914 -UBERON:3010404 capillary system of liver 11 40915 -UBERON:0022292 splenic arteriole 10 40916 -UBERON:0010401 spleen central arteriole 11 40917 -UBERON:0013132 penicillar arteriole 11 40918 -UBERON:0003520 pelvis blood vessel 9 40919 -UBERON:0003475 ureteric vein 10 40920 -UBERON:0009029 pudendal vein 10 40921 -UBERON:0018252 internal pudendal vein 11 40922 -UBERON:0018253 external pudendal vein 11 40923 -UBERON:0009046 inferior external pudendal vein 12 40924 -UBERON:0009047 superior external pudendal vein 12 40925 -UBERON:0009048 deep external pudendal vein 12 40926 -UBERON:0009049 superficial external pudendal vein 12 40927 -UBERON:0007315 internal pudendal artery 9 40928 -UBERON:0008311 penile bulb artery 9 40929 -UBERON:0008321 deep artery of penis 9 40930 -UBERON:0008322 deep artery of clitoris 9 40931 -UBERON:0008323 dorsal artery of clitoris 9 40932 -UBERON:0034727 vestibular bulb artery 9 40933 -UBERON:0004450 gastric vein 8 40934 -UBERON:0014690 left gastric vein 9 40935 -UBERON:0014691 right gastric vein 9 40936 -UBERON:0005599 common dorsal aorta 8 40937 -UBERON:0005613 left dorsal aorta 8 40938 -UBERON:0005622 right dorsal aorta 8 40939 -UBERON:0005805 dorsal aorta 8 40940 -UBERON:0006002 vitelline artery 8 40941 -UBERON:0010193 renal portal vein 8 40942 -UBERON:0010198 carotid duct 8 40943 -UBERON:0018335 lateral dorsal aorta canal 8 40944 -UBERON:2005025 dorsal longitudinal anastomotic vessel 8 40945 -UBERON:2005034 parachordal vessel 8 40946 -UBERON:2005038 supraintestinal vein 8 40947 -UBERON:0003519 thoracic cavity blood vessel 7 40948 -UBERON:0000947 aorta 8 40949 -UBERON:0003085 ventral aorta 9 40950 -UBERON:0005599 common dorsal aorta 9 40951 -UBERON:0005613 left dorsal aorta 9 40952 -UBERON:0005622 right dorsal aorta 9 40953 -UBERON:0005805 dorsal aorta 9 40954 -UBERON:3010423 larval aorta 9 40955 -UBERON:0003473 thoracic cavity artery 8 40956 -UBERON:0001884 phrenic nerve 9 40957 -UBERON:0003479 thoracic cavity vein 8 40958 -UBERON:0004087 vena cava 9 40959 -UBERON:0001072 posterior vena cava 10 40960 -UBERON:0001585 anterior vena cava 10 40961 -UBERON:0003524 tail blood vessel 7 40962 -UBERON:0003086 caudal artery 8 40963 -UBERON:0003481 tail vein 8 40964 -UBERON:0003088 caudal vein 9 40965 -UBERON:2001063 posterior caudal vein 9 40966 -UBERON:2005034 parachordal vessel 9 40967 -UBERON:2005025 dorsal longitudinal anastomotic vessel 8 40968 -UBERON:0003710 vasa vasorum 7 40969 -UBERON:0003920 venous blood vessel 7 40970 -UBERON:0001638 vein 8 40971 -UBERON:0000985 axillary vein 9 40972 -UBERON:0001099 subcostal vein 9 40973 -UBERON:0035252 left subcostal vein 10 40974 -UBERON:0035474 right subcostal vein 10 40975 -UBERON:0001140 renal vein 9 40976 -UBERON:0001141 right renal vein 10 40977 -UBERON:0001142 left renal vein 10 40978 -UBERON:0004726 vasa recta 10 40979 -UBERON:0004775 outer renal medulla vasa recta 11 40980 -UBERON:0004776 inner renal medulla vasa recta 11 40981 -UBERON:0001144 testicular vein 9 40982 -UBERON:0000442 right testicular vein 10 40983 -UBERON:0000443 left testicular vein 10 40984 -UBERON:0001145 ovarian vein 9 40985 -UBERON:0001146 suprarenal vein 9 40986 -UBERON:0035435 right suprarenal vein 10 40987 -UBERON:0035483 left suprarenal vein 10 40988 -UBERON:0001319 vaginal vein 9 40989 -UBERON:0001320 iliolumbar vein 9 40990 -UBERON:0001321 obturator vein 9 40991 -UBERON:0001361 femoral vein 9 40992 -UBERON:0001362 perineal vein 9 40993 -UBERON:0001413 brachial vein 9 40994 -UBERON:0001420 subscapular vein 9 40995 -UBERON:0001544 popliteal vein 9 40996 -UBERON:0001549 dorsal metatarsal vein 9 40997 -UBERON:0001551 vein of hindlimb zeugopod 9 40998 -UBERON:0013142 soleal vein 10 40999 -UBERON:0013143 gastrocnemius vein 10 41000 -UBERON:0001587 subclavian vein 9 41001 -UBERON:0001588 vertebral vein 9 41002 -UBERON:0001590 pericardiacophrenic vein 9 41003 -UBERON:0001591 thymic vein 9 41004 -UBERON:0001592 bronchial vein 9 41005 -UBERON:0001594 azygos vein 9 41006 -UBERON:0001663 cerebral vein 9 41007 -UBERON:0001664 inferior cerebral vein 10 41008 -UBERON:0001672 anterior cerebral vein 10 41009 -UBERON:0006666 great cerebral vein 10 41010 -UBERON:0016559 superficial cerebral vein 10 41011 -UBERON:0035150 superior cerebral vein 11 41012 -UBERON:0016564 deep cerebral vein 10 41013 -UBERON:0035530 basal vein 11 41014 -UBERON:0035151 dorsal cerebral vein 10 41015 -UBERON:0035152 internal cerebral vein 10 41016 -UBERON:0035231 superficial middle cerebral vein 10 41017 -UBERON:0035532 deep middle cerebral vein 10 41018 -UBERON:0001668 cerebellar vein 9 41019 -UBERON:0001669 superior cerebellar vein 10 41020 -UBERON:0001670 inferior cerebellar vein 10 41021 -UBERON:0001674 masseteric vein 9 41022 -UBERON:0002016 pulmonary vein 9 41023 -UBERON:0009030 left pulmonary vein 10 41024 -UBERON:0009032 right pulmonary vein 10 41025 -UBERON:0014904 intersegmental pulmonary vein 10 41026 -UBERON:0002017 portal vein 9 41027 -UBERON:0001214 pancreatic tributary of splenic vein 10 41028 -UBERON:0004690 pancreaticoduodenal vein 11 41029 -UBERON:0011383 inferior pancreaticoduodenal vein 12 41030 -UBERON:0011384 superior pancreaticoduodenal vein 12 41031 -UBERON:0001216 jejunal vein 10 41032 -UBERON:0001217 ileal vein 10 41033 -UBERON:0001219 ileocolic vein 11 41034 -UBERON:0001218 middle colic vein 10 41035 -UBERON:0001639 hepatic portal vein 10 41036 -UBERON:0018228 extrahepatic branch of portal vein 10 41037 -UBERON:0002066 umbilical vein 9 41038 -UBERON:0005459 left umbilical vein 10 41039 -UBERON:0005471 right umbilical vein 10 41040 -UBERON:0002083 ductus venosus 9 41041 -UBERON:0002089 thoracodorsal vein 9 41042 -UBERON:0002243 cutaneous vein 9 41043 -UBERON:0002460 vesical vein 9 41044 -UBERON:0001318 inferior vesical vein 10 41045 -UBERON:0006355 superior vesical vein 10 41046 -UBERON:0003475 ureteric vein 9 41047 -UBERON:0003476 respiratory system venous blood vessel 9 41048 -UBERON:0003479 thoracic cavity vein 9 41049 -UBERON:0004087 vena cava 10 41050 -UBERON:0001072 posterior vena cava 11 41051 -UBERON:0001585 anterior vena cava 11 41052 -UBERON:0003480 vein of clitoris 9 41053 -UBERON:0006690 deep dorsal vein of clitoris 10 41054 -UBERON:0003481 tail vein 9 41055 -UBERON:0003088 caudal vein 10 41056 -UBERON:2001063 posterior caudal vein 10 41057 -UBERON:2005034 parachordal vessel 10 41058 -UBERON:0003482 vein of trabecular bone 9 41059 -UBERON:0003711 brachiocephalic vein 9 41060 -UBERON:0003713 splenic vein 9 41061 -UBERON:0003848 gonadal vein 9 41062 -UBERON:0004344 cardinal vein 9 41063 -UBERON:0002064 common cardinal vein 10 41064 -UBERON:0009138 right common cardinal vein 11 41065 -UBERON:0009769 left common cardinal vein 11 41066 -UBERON:0002065 posterior cardinal vein 10 41067 -UBERON:0009139 right posterior cardinal vein 11 41068 -UBERON:0013124 left posterior cardinal vein 11 41069 -UBERON:0003087 anterior cardinal vein 10 41070 -UBERON:0009771 left anterior cardinal vein 11 41071 -UBERON:0009772 right anterior cardinal vein 11 41072 -UBERON:0004450 gastric vein 9 41073 -UBERON:0014690 left gastric vein 10 41074 -UBERON:0014691 right gastric vein 10 41075 -UBERON:0004562 digital vein 9 41076 -UBERON:0004563 forelimb digital vein 10 41077 -UBERON:0001412 common palmar digital vein 11 41078 -UBERON:0004561 proper palmar digital vein 11 41079 -UBERON:0006140 palmar digital vein 11 41080 -UBERON:0006564 superficial palmar arch 11 41081 -UBERON:0004564 hindlimb digital vein 10 41082 -UBERON:0006139 plantar digital vein 11 41083 -UBERON:0006142 common plantar digital vein 12 41084 -UBERON:0006143 proper plantar digital vein 12 41085 -UBERON:0006144 medial plantar digital vein 12 41086 -UBERON:0004689 naso-frontal vein 9 41087 -UBERON:0005194 thoracic vein 9 41088 -UBERON:0001589 internal thoracic vein 10 41089 -UBERON:0002088 lateral thoracic vein 10 41090 -UBERON:0004148 cardiac vein 10 41091 -UBERON:0006958 great vein of heart 11 41092 -UBERON:0009687 middle cardiac vein 11 41093 -UBERON:0035374 small cardiac vein 11 41094 -UBERON:0006662 musculo-phrenic vein 10 41095 -UBERON:0006829 remnant of left anterior vena cava 10 41096 -UBERON:0007155 superior epigastric vein 10 41097 -UBERON:0017643 external thoracic vein 10 41098 -UBERON:0005195 deferent duct vein 9 41099 -UBERON:0005610 iliac vein 9 41100 -UBERON:0001139 common iliac vein 10 41101 -UBERON:0001316 external iliac vein 10 41102 -UBERON:0001317 internal iliac vein 10 41103 -UBERON:0005617 mesenteric vein 9 41104 -UBERON:0001138 superior mesenteric vein 10 41105 -UBERON:0001215 inferior mesenteric vein 10 41106 -UBERON:0006200 caudal humeral circumflex vein 9 41107 -UBERON:0006296 subcardinal vein 9 41108 -UBERON:0009140 right subcardinal vein 10 41109 -UBERON:0013125 left subcardinal vein 10 41110 -UBERON:0006356 epigastric vein 9 41111 -UBERON:0007154 inferior epigastric vein 10 41112 -UBERON:0007155 superior epigastric vein 10 41113 -UBERON:0014692 superficial epigastric vein 10 41114 -UBERON:0006443 prinicipal vein of limb 9 41115 -UBERON:0006351 principal vein of forelimb 10 41116 -UBERON:0006353 principal vein of hindlimb 10 41117 -UBERON:0006634 lingual vein 9 41118 -UBERON:0006663 hemiazygos vein 9 41119 -UBERON:0006665 accessory hemiazygos vein 9 41120 -UBERON:0006686 spinal vein 9 41121 -UBERON:0006687 median sacral vein 9 41122 -UBERON:0006765 left anterior vena cava 9 41123 -UBERON:0006766 right anterior vena cava 9 41124 -UBERON:0007679 intersomitic vein 9 41125 -UBERON:0008783 dorsal venous arch 9 41126 -UBERON:0009029 pudendal vein 9 41127 -UBERON:0018252 internal pudendal vein 10 41128 -UBERON:0018253 external pudendal vein 10 41129 -UBERON:0009046 inferior external pudendal vein 11 41130 -UBERON:0009047 superior external pudendal vein 11 41131 -UBERON:0009048 deep external pudendal vein 11 41132 -UBERON:0009049 superficial external pudendal vein 11 41133 -UBERON:0009887 interlobar vein 9 41134 -UBERON:0010175 nutrient foramen vein 9 41135 -UBERON:0010193 renal portal vein 9 41136 -UBERON:0010205 mesencephalic vein 9 41137 -UBERON:0010370 tibial vein 9 41138 -UBERON:0001545 anterior tibial vein 10 41139 -UBERON:0001546 posterior tibial vein 10 41140 -UBERON:0011944 subintestinal vein 9 41141 -UBERON:0012193 phrenic vein 9 41142 -UBERON:0002039 inferior phrenic vein 10 41143 -UBERON:0006662 musculo-phrenic vein 10 41144 -UBERON:0012237 superior phrenic vein 10 41145 -UBERON:0012197 intercostal vein 9 41146 -UBERON:0012194 superior intercostal vein 10 41147 -UBERON:0012195 left superior intercostal vein 11 41148 -UBERON:0012196 right superior intercostal vein 11 41149 -UBERON:0012199 posterior intercostal vein 10 41150 -UBERON:0012200 anterior intercostal vein 10 41151 -UBERON:0013126 vein of abdomen 9 41152 -UBERON:0001143 hepatic vein 10 41153 -UBERON:0011955 left hepatic vein 11 41154 -UBERON:0011956 right hepatic vein 11 41155 -UBERON:0011957 middle hepatic vein 11 41156 -UBERON:0015455 accessory hepatic vein 11 41157 -UBERON:0001226 major calyx 10 41158 -UBERON:0001227 minor calyx 10 41159 -UBERON:0004719 kidney arcuate vein 10 41160 -UBERON:0004775 outer renal medulla vasa recta 10 41161 -UBERON:0004776 inner renal medulla vasa recta 10 41162 -UBERON:0005168 renal interlobular vein 10 41163 -UBERON:0005269 renal cortex vein 10 41164 -UBERON:0006841 central vein of liver 10 41165 -UBERON:0010400 spleen trabecular vein 10 41166 -UBERON:0016890 intrahepatic branch of portal vein 10 41167 -UBERON:0035655 paraumbilical vein 10 41168 -UBERON:0013140 systemic vein 9 41169 -UBERON:0004148 cardiac vein 10 41170 -UBERON:0006958 great vein of heart 11 41171 -UBERON:0009687 middle cardiac vein 11 41172 -UBERON:0035374 small cardiac vein 11 41173 -UBERON:0005487 vitelline vein 10 41174 -UBERON:0005460 left vitelline vein 11 41175 -UBERON:0005472 right vitelline vein 11 41176 -UBERON:0006300 supracardinal vein 10 41177 -UBERON:0008267 left supracardinal vein 11 41178 -UBERON:0008268 right supracardinal vein 11 41179 -UBERON:0009141 craniocervical region vein 10 41180 -UBERON:0001653 facial vein 11 41181 -UBERON:0001656 retromandibular vein 12 41182 -UBERON:0001655 submental vein 11 41183 -UBERON:0001659 transverse facial vein 11 41184 -UBERON:0001660 maxillary vein 11 41185 -UBERON:0001671 temporal vein 11 41186 -UBERON:0001657 superficial temporal vein 12 41187 -UBERON:0001658 middle temporal vein 12 41188 -UBERON:0001661 deep temporal vein 12 41189 -UBERON:0001673 central retinal vein 11 41190 -UBERON:0004029 canal of Schlemm 11 41191 -UBERON:0004030 aqueous vein 11 41192 -UBERON:0004711 jugular vein 11 41193 -UBERON:0001101 external jugular vein 12 41194 -UBERON:0001104 anterior jugular vein 12 41195 -UBERON:0001586 internal jugular vein 12 41196 -UBERON:0006011 hyaloid vein 11 41197 -UBERON:0006197 auricular vein 11 41198 -UBERON:0001662 anterior auricular vein 12 41199 -UBERON:0006199 posterior auricular vein 12 41200 -UBERON:0006282 primary head vein 11 41201 -UBERON:0010367 conjunctival vein 11 41202 -UBERON:0011191 ophthalmic vein 11 41203 -UBERON:0011192 superior ophthalmic vein 12 41204 -UBERON:0011193 inferior ophthalmic vein 12 41205 -UBERON:0013136 vein of lip 11 41206 -UBERON:0003477 vein of upper lip 12 41207 -UBERON:0003478 vein of lower lip 12 41208 -UBERON:0014686 angular vein 11 41209 -UBERON:0014769 palpebral vein 11 41210 -UBERON:0002459 inferior palpebral vein 12 41211 -UBERON:0014768 superior palpebral vein 12 41212 -UBERON:0001654 supraorbital vein 13 41213 -UBERON:0017617 efferent spiracular artery 11 41214 -UBERON:0035249 posterior external jugular vein 11 41215 -UBERON:0035659 deep facial vein 11 41216 -UBERON:0035662 parotid vein 11 41217 -UBERON:0035675 anterior facial vein 11 41218 -UBERON:0036074 vein of vestibular aqueduct 11 41219 -UBERON:0036300 tributary of central retinal vein 11 41220 -UBERON:2000202 efferent portion of pharyngeal arch artery 11 41221 -UBERON:2001052 primordial hindbrain channel 11 41222 -UBERON:2005010 mid cerebral vein 11 41223 -UBERON:2005017 primordial midbrain channel 11 41224 -UBERON:2005026 primary head sinus 11 41225 -UBERON:2005027 posterior cerebral vein 11 41226 -UBERON:2005030 dorsal ciliary vein 11 41227 -UBERON:2005032 optic vein 11 41228 -UBERON:2005055 median palatocerebral vein 11 41229 -UBERON:2005056 palatocerebral vein 11 41230 -UBERON:2005093 nasal vein 11 41231 -UBERON:0013144 vein of genicular venous plexus 9 41232 -UBERON:0014786 extraembryonic umbilical vein 9 41233 -UBERON:0014787 left extraembryonic umbilical vein 10 41234 -UBERON:0014788 right extraembryonic umbilical vein 10 41235 -UBERON:0014789 embryo portion of umbilical vein 9 41236 -UBERON:0017646 internal mammary vein 9 41237 -UBERON:0018246 thyroid vein 9 41238 -UBERON:0007156 inferior thyroid vein 10 41239 -UBERON:0007157 superior thyroid vein 10 41240 -UBERON:0034965 middle thyroid vein 10 41241 -UBERON:0018251 meningeal vein 9 41242 -UBERON:0018256 lacrimal vein 9 41243 -UBERON:0035234 medial circumflex femoral vein 9 41244 -UBERON:0035392 cystic vein 9 41245 -UBERON:0035546 uveal vein 9 41246 -UBERON:0035547 posterior ciliary vein 10 41247 -UBERON:0035550 superficial vein 9 41248 -UBERON:0001106 cephalic vein 10 41249 -UBERON:0001411 basilic vein 10 41250 -UBERON:0001414 median basilic vein 11 41251 -UBERON:0001548 lateral marginal vein 10 41252 -UBERON:0001550 medial marginal vein 10 41253 -UBERON:0007318 saphenous vein 10 41254 -UBERON:0001363 great saphenous vein 11 41255 -UBERON:0001547 small saphenous vein 11 41256 -UBERON:0013145 accessory saphenous vein 11 41257 -UBERON:0007319 medial saphenous vein 12 41258 -UBERON:0007321 lateral saphenous vein 12 41259 -UBERON:0009049 superficial external pudendal vein 10 41260 -UBERON:0014692 superficial epigastric vein 10 41261 -UBERON:0016559 superficial cerebral vein 10 41262 -UBERON:0035150 superior cerebral vein 11 41263 -UBERON:0035552 deep vein 9 41264 -UBERON:0001360 deep circumflex iliac vein 10 41265 -UBERON:0001661 deep temporal vein 10 41266 -UBERON:0006656 deep dorsal vein of penis 10 41267 -UBERON:0006690 deep dorsal vein of clitoris 10 41268 -UBERON:0009048 deep external pudendal vein 10 41269 -UBERON:0036267 vulval vein 9 41270 -UBERON:0036268 pelvic vein 9 41271 -UBERON:2000039 median axial vein 9 41272 -UBERON:2005031 dorsal longitudinal vein 9 41273 -UBERON:2005038 supraintestinal vein 9 41274 -UBERON:2005087 pectoral vein 9 41275 -UBERON:2005248 trans-choroid plexus branch 9 41276 -UBERON:3010506 postcaval vein 9 41277 -UBERON:3010507 precaval vein 9 41278 -UBERON:3010515 lateral vein 9 41279 -UBERON:3010516 cutaneus magnus 9 41280 -UBERON:3010517 ventral abdominal vein 9 41281 -UBERON:3010519 Jacobson's vein 9 41282 -UBERON:3010520 oviducal vein 9 41283 -UBERON:0001979 venule 8 41284 -UBERON:0003494 respiratory system venule 9 41285 -UBERON:0035428 postcapillary venule 9 41286 -UBERON:0005438 coronary sinus 8 41287 -UBERON:0006615 venous sinus 8 41288 -UBERON:0005486 venous dural sinus 9 41289 -UBERON:0003712 cavernous sinus 10 41290 -UBERON:0017635 paired venous dural sinus 10 41291 -UBERON:0001641 transverse sinus 11 41292 -UBERON:0005475 sigmoid sinus 11 41293 -UBERON:0007160 inferior petrosal sinus 11 41294 -UBERON:0017637 marginal venous sinus 11 41295 -UBERON:0017638 primitive marginal sinus 11 41296 -UBERON:0035338 sphenoparietal sinus 11 41297 -UBERON:0017640 unpaired venous dural sinus 10 41298 -UBERON:0005481 tentorial sinus 11 41299 -UBERON:0015704 sagittal sinus 11 41300 -UBERON:0001642 superior sagittal sinus 12 41301 -UBERON:0007152 inferior sagittal sinus 12 41302 -UBERON:0009967 spleen venous sinus 9 41303 -UBERON:0009968 primitive superior sagittal sinus 9 41304 -UBERON:0014401 renal venous blood vessel 8 41305 -UBERON:0001226 major calyx 9 41306 -UBERON:0001227 minor calyx 9 41307 -UBERON:0004719 kidney arcuate vein 9 41308 -UBERON:0004775 outer renal medulla vasa recta 9 41309 -UBERON:0004776 inner renal medulla vasa recta 9 41310 -UBERON:0005168 renal interlobular vein 9 41311 -UBERON:0005269 renal cortex vein 9 41312 -UBERON:2005018 efferent filamental artery 8 41313 -UBERON:2005019 efferent lamellar arteriole 8 41314 -UBERON:0004258 back blood vessel 7 41315 -UBERON:0004365 vitelline blood vessel 7 41316 -UBERON:0005487 vitelline vein 8 41317 -UBERON:0005460 left vitelline vein 9 41318 -UBERON:0005472 right vitelline vein 9 41319 -UBERON:0006002 vitelline artery 8 41320 -UBERON:0007301 appendage blood vessel 7 41321 -UBERON:0003514 limb blood vessel 8 41322 -UBERON:0003515 forelimb blood vessel 9 41323 -UBERON:0001411 basilic vein 10 41324 -UBERON:0001414 median basilic vein 11 41325 -UBERON:0003507 arm blood vessel 10 41326 -UBERON:0001106 cephalic vein 11 41327 -UBERON:0001399 deep brachial artery 11 41328 -UBERON:0001413 brachial vein 11 41329 -UBERON:0004259 lower arm blood vessel 11 41330 -UBERON:0002249 median artery 12 41331 -UBERON:0004260 upper arm blood vessel 11 41332 -UBERON:0003523 manus blood vessel 10 41333 -UBERON:0003522 manual digit blood vessel 11 41334 -UBERON:0004553 forelimb digital artery 12 41335 -UBERON:0006141 palmar digital artery 13 41336 -UBERON:0001410 common palmar digital artery 14 41337 -UBERON:0006137 proper palmar digital artery 14 41338 -UBERON:0006146 dorsal digital artery of manus 13 41339 -UBERON:0006164 forelimb common dorsal digital arteries 14 41340 -UBERON:0006165 median dorsal digital artery for digit 1 14 41341 -UBERON:0006166 lateral dorsal digital artery for digit 5 14 41342 -UBERON:0006167 forelimb proper dorsal digital arteries 14 41343 -UBERON:0004563 forelimb digital vein 11 41344 -UBERON:0001412 common palmar digital vein 12 41345 -UBERON:0004561 proper palmar digital vein 12 41346 -UBERON:0006140 palmar digital vein 12 41347 -UBERON:0006564 superficial palmar arch 12 41348 -UBERON:0006351 principal vein of forelimb 10 41349 -UBERON:0003516 hindlimb blood vessel 9 41350 -UBERON:0001361 femoral vein 10 41351 -UBERON:0001539 dorsalis pedis artery 10 41352 -UBERON:0001541 medial plantar artery 10 41353 -UBERON:0001544 popliteal vein 10 41354 -UBERON:0003503 leg blood vessel 10 41355 -UBERON:0004257 upper leg blood vessel 11 41356 -UBERON:0004261 lower leg blood vessel 11 41357 -UBERON:0001548 lateral marginal vein 12 41358 -UBERON:0001550 medial marginal vein 12 41359 -UBERON:0001551 vein of hindlimb zeugopod 12 41360 -UBERON:0013142 soleal vein 13 41361 -UBERON:0013143 gastrocnemius vein 13 41362 -UBERON:0007318 saphenous vein 12 41363 -UBERON:0001363 great saphenous vein 13 41364 -UBERON:0001547 small saphenous vein 13 41365 -UBERON:0013145 accessory saphenous vein 13 41366 -UBERON:0007319 medial saphenous vein 14 41367 -UBERON:0007321 lateral saphenous vein 14 41368 -UBERON:0014692 superficial epigastric vein 12 41369 -UBERON:0010370 tibial vein 11 41370 -UBERON:0001545 anterior tibial vein 12 41371 -UBERON:0001546 posterior tibial vein 12 41372 -UBERON:0013144 vein of genicular venous plexus 11 41373 -UBERON:0003521 pes blood vessel 10 41374 -UBERON:0001553 medial tarsal artery 11 41375 -UBERON:0003508 pedal digit blood vessel 11 41376 -UBERON:0004564 hindlimb digital vein 11 41377 -UBERON:0006139 plantar digital vein 12 41378 -UBERON:0006142 common plantar digital vein 13 41379 -UBERON:0006143 proper plantar digital vein 13 41380 -UBERON:0006144 medial plantar digital vein 13 41381 -UBERON:0034927 arcuate artery of foot 11 41382 -UBERON:0004554 hindlimb digital artery 10 41383 -UBERON:0006138 plantar digital artery 11 41384 -UBERON:0002455 common plantar digital arteries 12 41385 -UBERON:0004540 proper plantar digital artery 12 41386 -UBERON:0006145 dorsal digital artery of pes 11 41387 -UBERON:0006168 hindlimb common dorsal digital arteries 12 41388 -UBERON:0006169 hindlimb proper dorsal digital arteries 12 41389 -UBERON:0006353 principal vein of hindlimb 10 41390 -UBERON:0007610 tibial artery 10 41391 -UBERON:0001537 anterior tibial artery 11 41392 -UBERON:0001538 posterior tibial artery 11 41393 -UBERON:0035195 plantar metatarsal artery 10 41394 -UBERON:0035234 medial circumflex femoral vein 10 41395 -UBERON:0035292 branch of posterior tibial artery 10 41396 -UBERON:0001540 peroneal artery 11 41397 -UBERON:0004552 digital artery 9 41398 -UBERON:0004553 forelimb digital artery 10 41399 -UBERON:0006141 palmar digital artery 11 41400 -UBERON:0001410 common palmar digital artery 12 41401 -UBERON:0006137 proper palmar digital artery 12 41402 -UBERON:0006146 dorsal digital artery of manus 11 41403 -UBERON:0006164 forelimb common dorsal digital arteries 12 41404 -UBERON:0006165 median dorsal digital artery for digit 1 12 41405 -UBERON:0006166 lateral dorsal digital artery for digit 5 12 41406 -UBERON:0006167 forelimb proper dorsal digital arteries 12 41407 -UBERON:0004554 hindlimb digital artery 10 41408 -UBERON:0006138 plantar digital artery 11 41409 -UBERON:0002455 common plantar digital arteries 12 41410 -UBERON:0004540 proper plantar digital artery 12 41411 -UBERON:0006145 dorsal digital artery of pes 11 41412 -UBERON:0006168 hindlimb common dorsal digital arteries 12 41413 -UBERON:0006169 hindlimb proper dorsal digital arteries 12 41414 -UBERON:0006163 dorsal digital artery 10 41415 -UBERON:0006145 dorsal digital artery of pes 11 41416 -UBERON:0006168 hindlimb common dorsal digital arteries 12 41417 -UBERON:0006169 hindlimb proper dorsal digital arteries 12 41418 -UBERON:0006146 dorsal digital artery of manus 11 41419 -UBERON:0006164 forelimb common dorsal digital arteries 12 41420 -UBERON:0006165 median dorsal digital artery for digit 1 12 41421 -UBERON:0006166 lateral dorsal digital artery for digit 5 12 41422 -UBERON:0006167 forelimb proper dorsal digital arteries 12 41423 -UBERON:0004562 digital vein 9 41424 -UBERON:0004563 forelimb digital vein 10 41425 -UBERON:0001412 common palmar digital vein 11 41426 -UBERON:0004561 proper palmar digital vein 11 41427 -UBERON:0006140 palmar digital vein 11 41428 -UBERON:0006564 superficial palmar arch 11 41429 -UBERON:0004564 hindlimb digital vein 10 41430 -UBERON:0006139 plantar digital vein 11 41431 -UBERON:0006142 common plantar digital vein 12 41432 -UBERON:0006143 proper plantar digital vein 12 41433 -UBERON:0006144 medial plantar digital vein 12 41434 -UBERON:0006443 prinicipal vein of limb 9 41435 -UBERON:0006351 principal vein of forelimb 10 41436 -UBERON:0006353 principal vein of hindlimb 10 41437 -UBERON:0007300 pectoral appendage blood vessel 8 41438 -UBERON:0003515 forelimb blood vessel 9 41439 -UBERON:0001411 basilic vein 10 41440 -UBERON:0001414 median basilic vein 11 41441 -UBERON:0003507 arm blood vessel 10 41442 -UBERON:0001106 cephalic vein 11 41443 -UBERON:0001399 deep brachial artery 11 41444 -UBERON:0001413 brachial vein 11 41445 -UBERON:0004259 lower arm blood vessel 11 41446 -UBERON:0002249 median artery 12 41447 -UBERON:0004260 upper arm blood vessel 11 41448 -UBERON:0003523 manus blood vessel 10 41449 -UBERON:0003522 manual digit blood vessel 11 41450 -UBERON:0004553 forelimb digital artery 12 41451 -UBERON:0006141 palmar digital artery 13 41452 -UBERON:0001410 common palmar digital artery 14 41453 -UBERON:0006137 proper palmar digital artery 14 41454 -UBERON:0006146 dorsal digital artery of manus 13 41455 -UBERON:0006164 forelimb common dorsal digital arteries 14 41456 -UBERON:0006165 median dorsal digital artery for digit 1 14 41457 -UBERON:0006166 lateral dorsal digital artery for digit 5 14 41458 -UBERON:0006167 forelimb proper dorsal digital arteries 14 41459 -UBERON:0004563 forelimb digital vein 11 41460 -UBERON:0001412 common palmar digital vein 12 41461 -UBERON:0004561 proper palmar digital vein 12 41462 -UBERON:0006140 palmar digital vein 12 41463 -UBERON:0006564 superficial palmar arch 12 41464 -UBERON:0006351 principal vein of forelimb 10 41465 -UBERON:2005087 pectoral vein 9 41466 -UBERON:2005304 caudal fin blood vessel 8 41467 -UBERON:0010260 umbilical blood vessel 7 41468 -UBERON:0001310 umbilical artery 8 41469 -UBERON:0005458 left umbilical artery 9 41470 -UBERON:0005470 right umbilical artery 9 41471 -UBERON:0002066 umbilical vein 8 41472 -UBERON:0005459 left umbilical vein 9 41473 -UBERON:0005471 right umbilical vein 9 41474 -UBERON:0013768 great vessel of heart 7 41475 -UBERON:0000947 aorta 8 41476 -UBERON:0003085 ventral aorta 9 41477 -UBERON:0005599 common dorsal aorta 9 41478 -UBERON:0005613 left dorsal aorta 9 41479 -UBERON:0005622 right dorsal aorta 9 41480 -UBERON:0005805 dorsal aorta 9 41481 -UBERON:3010423 larval aorta 9 41482 -UBERON:0002012 pulmonary artery 8 41483 -UBERON:0002016 pulmonary vein 8 41484 -UBERON:0009030 left pulmonary vein 9 41485 -UBERON:0009032 right pulmonary vein 9 41486 -UBERON:0014904 intersegmental pulmonary vein 9 41487 -UBERON:0004087 vena cava 8 41488 -UBERON:0001072 posterior vena cava 9 41489 -UBERON:0001585 anterior vena cava 9 41490 -UBERON:0014907 intersomitic vessel 7 41491 -UBERON:0002457 intersomitic artery 8 41492 -UBERON:0007679 intersomitic vein 8 41493 -UBERON:0015172 endometrial blood vessel 7 41494 -UBERON:0015171 uterine spiral artery 8 41495 -UBERON:0020550 auricular blood vessel 7 41496 -UBERON:3010494 lateral pretrosal artery 8 41497 -UBERON:0022358 placenta blood vessel 7 41498 -UBERON:0004183 placental labyrinth blood vessel 8 41499 -UBERON:0036269 penis blood vessel 7 41500 -UBERON:0008320 common penile artery 8 41501 -UBERON:0015174 helicine artery of penis 8 41502 -UBERON:0005985 coronary vessel 6 41503 -UBERON:0003498 heart blood vessel 7 41504 -UBERON:0001621 coronary artery 8 41505 -UBERON:0001625 right coronary artery 9 41506 -UBERON:0001626 left coronary artery 9 41507 -UBERON:0002061 truncus arteriosus 8 41508 -UBERON:0004148 cardiac vein 8 41509 -UBERON:0006958 great vein of heart 9 41510 -UBERON:0009687 middle cardiac vein 9 41511 -UBERON:0035374 small cardiac vein 9 41512 -UBERON:0005432 aortic sac 8 41513 -UBERON:0005438 coronary sinus 8 41514 -UBERON:0005440 ductus arteriosus 8 41515 -UBERON:0006829 remnant of left anterior vena cava 8 41516 -UBERON:0006966 coronary capillary 8 41517 -UBERON:0035395 branch of left coronary artery 8 41518 -UBERON:0035422 circumflex branch of left coronary artery 9 41519 -UBERON:2000214 hypobranchial vessel 8 41520 -UBERON:0010523 microcirculatory vessel 6 41521 -UBERON:0001982 capillary 7 41522 -UBERON:0003526 respiratory system capillary 8 41523 -UBERON:0016405 pulmonary capillary 9 41524 -UBERON:0003527 kidney capillary 8 41525 -UBERON:0004212 glomerular capillary 9 41526 -UBERON:0005144 metanephric glomerular capillary 10 41527 -UBERON:0006183 mesonephric glomerular capillary 10 41528 -UBERON:0007306 pronephric glomerular capillary 10 41529 -UBERON:0005272 peritubular capillary 9 41530 -UBERON:0006341 outer renal medulla peritubular capillary 10 41531 -UBERON:0006851 renal cortex peritubular capillary 10 41532 -UBERON:0006966 coronary capillary 8 41533 -UBERON:2005259 continuous capillary 8 41534 -UBERON:2005260 fenestrated capillary 8 41535 -UBERON:0003909 sinusoid 9 41536 -UBERON:0001281 hepatic sinusoid 10 41537 -UBERON:0009548 hepatic sinusoid of left of lobe of liver 11 41538 -UBERON:0011737 caudate lobe hepatic sinusoid 12 41539 -UBERON:0009549 hepatic sinusoid of right of lobe of liver 11 41540 -UBERON:0011737 caudate lobe hepatic sinusoid 12 41541 -UBERON:0011738 quadrate lobe hepatic sinusoid 12 41542 -UBERON:0003910 splenic sinusoid 10 41543 -UBERON:3010404 capillary system of liver 8 41544 -UBERON:0006842 lymphatic capillary 7 41545 -UBERON:0018410 lacteal 8 41546 -UBERON:0015227 peristaltic circulatory vessel 6 41547 -UBERON:0015231 circulatory system dorsal vessel 6 41548 -UBERON:0000057 urethra 5 41549 -UBERON:0001333 male urethra 6 41550 -UBERON:0001334 female urethra 6 41551 -UBERON:0000159 anal canal 5 41552 -UBERON:0000161 orifice 5 41553 -UBERON:0000003 naris 6 41554 -UBERON:0005928 external naris 7 41555 -UBERON:0010893 median external naris 8 41556 -UBERON:0013477 blowhole 8 41557 -UBERON:2001426 posterior naris 8 41558 -UBERON:2001427 anterior naris 8 41559 -UBERON:0005931 primary choana 7 41560 -UBERON:0010425 internal naris 7 41561 -UBERON:0004771 posterior nasal aperture 8 41562 -UBERON:0010426 oropharyngeal choana 8 41563 -UBERON:0000166 oral opening 6 41564 -UBERON:0008806 buccal funnel 7 41565 -UBERON:0001245 anus 6 41566 -UBERON:0001819 palpebral fissure 6 41567 -UBERON:0004668 fourth ventricle aperture 6 41568 -UBERON:0003991 fourth ventricle median aperture 7 41569 -UBERON:0003992 fourth ventricle lateral aperture 7 41570 -UBERON:0005077 neuropore 6 41571 -UBERON:0005070 anterior neuropore 7 41572 -UBERON:0005071 posterior neuropore 7 41573 -UBERON:0005308 nephrostome 6 41574 -UBERON:0007691 gustatory pore 6 41575 -UBERON:0008813 helicotrema 6 41576 -UBERON:0008936 gastropod genital pore 6 41577 -UBERON:0010284 lacrimal punctum 6 41578 -UBERON:0010418 urethral opening 6 41579 -UBERON:0012240 urethral meatus 7 41580 -UBERON:0006565 female urethral meatus 8 41581 -UBERON:0012241 male urethral meatus 8 41582 -UBERON:0012242 internal urethral orifice 7 41583 -UBERON:0012303 ureteral orifice 7 41584 -UBERON:0011264 femoral pore 6 41585 -UBERON:0012317 vagina orifice 6 41586 -UBERON:0012464 cloacal vent 6 41587 -UBERON:0013758 cervical os 6 41588 -UBERON:0013759 internal cervical os 7 41589 -UBERON:0013760 external cervical os 7 41590 -UBERON:0016458 esophageal hiatus 6 41591 -UBERON:0016504 umbilical ring 6 41592 -UBERON:0036253 orifice of skull 6 41593 -UBERON:0002501 oval window 7 41594 -UBERON:0002502 round window of inner ear 7 41595 -UBERON:0004771 posterior nasal aperture 7 41596 -UBERON:0036254 piriform aperture 7 41597 -UBERON:0001005 respiratory airway 5 41598 -UBERON:0000065 respiratory tract 6 41599 -UBERON:0003127 open tracheal system trachea 6 41600 -UBERON:0001131 vertebral foramen 5 41601 -UBERON:0000219 vertebral foramen of atlas 6 41602 -UBERON:0008429 cervical vertebral foramen 6 41603 -UBERON:0008430 lumbar vertebral foramen 6 41604 -UBERON:0008431 sacral foramen 6 41605 -UBERON:0008432 thoracic vertebral foramen 6 41606 -UBERON:0001224 renal pelvis 5 41607 -UBERON:0005249 metanephric renal pelvis 6 41608 -UBERON:0018115 left renal pelvis 6 41609 -UBERON:0018116 right renal pelvis 6 41610 -UBERON:0001352 external acoustic meatus 5 41611 -UBERON:0001770 lacrimal canaliculus 5 41612 -UBERON:0001850 lacrimal drainage system 5 41613 -UBERON:0002291 central canal of spinal cord 5 41614 -UBERON:0003702 inguinal canal 5 41615 -UBERON:0004353 female inguinal canal 6 41616 -UBERON:0004354 male inguinal canal 6 41617 -UBERON:0003959 rete testis 5 41618 -UBERON:0003993 interventricular foramen of CNS 5 41619 -UBERON:0004145 outflow tract 5 41620 -UBERON:0005337 outflow tract of ventricle 6 41621 -UBERON:0005953 outflow part of right ventricle 7 41622 -UBERON:0005956 outflow part of left ventricle 7 41623 -UBERON:0005338 outflow tract aortic component 6 41624 -UBERON:0005339 outflow tract pulmonary component 6 41625 -UBERON:0005946 outflow tract of atrium 6 41626 -UBERON:0005965 outflow part of right atrium 7 41627 -UBERON:0005966 outflow part of left atrium 7 41628 -UBERON:0005455 interventricular groove 5 41629 -UBERON:0005489 anterior interventricular sulcus 6 41630 -UBERON:0005490 posterior interventricular sulcus 6 41631 -UBERON:0005744 bone foramen 5 41632 -UBERON:0000130 transverse foramen 6 41633 -UBERON:0008426 transverse foramen of atlas 7 41634 -UBERON:0008427 transverse foramen of axis 7 41635 -UBERON:0000219 vertebral foramen of atlas 6 41636 -UBERON:0003482 vein of trabecular bone 6 41637 -UBERON:0006669 alveolar canal 6 41638 -UBERON:0008429 cervical vertebral foramen 6 41639 -UBERON:0008430 lumbar vertebral foramen 6 41640 -UBERON:0008431 sacral foramen 6 41641 -UBERON:0008432 thoracic vertebral foramen 6 41642 -UBERON:0012116 nutrient foramen conduit 6 41643 -UBERON:0013207 entepicondylar foramen 6 41644 -UBERON:0013685 foramen of skull 6 41645 -UBERON:0001698 foramen ovale of skull 7 41646 -UBERON:0001863 scala vestibuli 7 41647 -UBERON:0001864 scala tympani 7 41648 -UBERON:0002279 vestibular aqueduct 7 41649 -UBERON:0002295 scala media 7 41650 -UBERON:0002501 oval window 7 41651 -UBERON:0002502 round window of inner ear 7 41652 -UBERON:0003687 foramen magnum 7 41653 -UBERON:0005446 foramen rotundum 7 41654 -UBERON:0005745 optic foramen 7 41655 -UBERON:0006271 orbital fissure 7 41656 -UBERON:0005480 superior orbital fissure 8 41657 -UBERON:0014870 inferior orbital fissure 8 41658 -UBERON:0006495 osseus cochlear canal 7 41659 -UBERON:0006668 carotid canal 7 41660 -UBERON:0006672 incisive canal 7 41661 -UBERON:0006673 mandibular canal 7 41662 -UBERON:0006682 hypoglossal canal 7 41663 -UBERON:0006713 foramen cecum of frontal bone 7 41664 -UBERON:0006812 mental foramen 7 41665 -UBERON:0011245 infra-orbital canal of maxilla 7 41666 -UBERON:0012315 incisive foramen 7 41667 -UBERON:0016492 foramen spinosum of sphenoid bone 7 41668 -UBERON:0016881 craniopharyngeal canal 7 41669 -UBERON:0018321 foramen for glossopharyngeal nerve 7 41670 -UBERON:0005456 jugular foramen 8 41671 -UBERON:0018360 suborbital foramen 7 41672 -UBERON:0018373 vidian canal 7 41673 -UBERON:0018407 infra-orbital foramen of maxilla 7 41674 -UBERON:0018413 facial nerve canal 7 41675 -UBERON:0018415 ethmoid foramen 7 41676 -UBERON:0018424 petrosal foramen 7 41677 -UBERON:0018508 foramen of nasal bone 7 41678 -UBERON:0018651 foramen lacerum 7 41679 -UBERON:0018653 anterior ethmoidal foramen 7 41680 -UBERON:0018654 posterior ethmoidal foramen 7 41681 -UBERON:0026584 tympanic canal 7 41682 -UBERON:0026586 vestibular canal 7 41683 -UBERON:2002012 dentary foramen 7 41684 -UBERON:4200251 meckelian foramen 7 41685 -UBERON:4300249 lateral occipital foramen 7 41686 -UBERON:0014430 sciatic notch 6 41687 -UBERON:0014411 greater sciatic notch 7 41688 -UBERON:0014436 lesser sciatic notch 7 41689 -UBERON:0014446 acetabular notch 6 41690 -UBERON:0014731 haversian canal 6 41691 -UBERON:0018267 atlantal spinal nerve foramen 6 41692 -UBERON:0018326 ilioischiadic foramen 6 41693 -UBERON:0018364 suprameatal foramen 6 41694 -UBERON:2001735 scapular foramen 6 41695 -UBERON:2001737 coracoid foramen 6 41696 -UBERON:4200206 internal rim of coracoid foramen 7 41697 -UBERON:4200207 external rim of the coracoid foramen 7 41698 -UBERON:2001741 trigeminofacial foramen 6 41699 -UBERON:2001742 auditory foramen 6 41700 -UBERON:2001748 superficial ophthalmic nerve foramen 6 41701 -UBERON:2001795 ceratohyal foramen 6 41702 -UBERON:2001804 olfactory nerve foramen 6 41703 -UBERON:2001808 facial foramen 6 41704 -UBERON:2001809 trigeminal foramen 6 41705 -UBERON:2001923 aortic canal 6 41706 -UBERON:2001924 occipital artery foramen 6 41707 -UBERON:2001925 spiracular canal 6 41708 -UBERON:2002031 orbital foramen 6 41709 -UBERON:2002066 auditory fenestra 6 41710 -UBERON:2002110 metapterygoid-quadrate fenestra 6 41711 -UBERON:2005269 hypophyseal fenestra 6 41712 -UBERON:2005275 hyomandibular foramen 6 41713 -UBERON:2005415 inner ear foramen 6 41714 -UBERON:2005416 sacculoagenar foramen 7 41715 -UBERON:3000433 pineal foramen 6 41716 -UBERON:3000859 foramen perforans carpi 6 41717 -UBERON:3000911 foramen nutritium exterius 6 41718 -UBERON:4200026 supraglenoid foramen 6 41719 -UBERON:4200060 ectepicondylar foramen 6 41720 -UBERON:4200127 suprascapula foramen 6 41721 -UBERON:4200150 accessory foramen 6 41722 -UBERON:4200223 foramen C 6 41723 -UBERON:4200224 columnar area 6 41724 -UBERON:4200228 excurrent foramen of ectepicondylar foramen 6 41725 -UBERON:4200229 incurrent foramen of ectepicondylar foramen 6 41726 -UBERON:0006010 hyaloid canal 5 41727 -UBERON:0006172 rectal diverticulum 5 41728 -UBERON:0006220 diencephalic part of interventricular foramen 5 41729 -UBERON:0006301 telencephalic part of interventricular foramen 5 41730 -UBERON:0006678 foramen secundum 5 41731 -UBERON:0006692 vertebral canal 5 41732 -UBERON:0006803 obturator foramen 5 41733 -UBERON:0008873 alveolar pore 5 41734 -UBERON:0009149 foramen primum 5 41735 -UBERON:0009744 lymph node medullary sinus 5 41736 -UBERON:0009890 anterior intestinal portal 5 41737 -UBERON:0010185 rete ovarii 5 41738 -UBERON:0010229 ruminant esophageal groove 5 41739 -UBERON:0011859 internal acoustic meatus 5 41740 -UBERON:0013152 interventricular foramen of heart 5 41741 -UBERON:0013175 nasal air sac 5 41742 -UBERON:0013523 lateral vaginal canal 5 41743 -UBERON:0013524 median vaginal canal 5 41744 -UBERON:0013704 notochordal canal 5 41745 -UBERON:0014538 subdivision of spinal cord central canal 5 41746 -UBERON:0014541 thoracic division of spinal cord central canal 6 41747 -UBERON:0014542 cervical division of cord spinal central canal 6 41748 -UBERON:0014543 lumbar division of spinal cord central canal 6 41749 -UBERON:0014547 sacral division of spinal cord central canal 6 41750 -UBERON:0015224 interventricular foramen intermedium 5 41751 -UBERON:0015225 atrial foramen intermedium 5 41752 -UBERON:0015787 upper respiratory conduit 5 41753 -UBERON:0015788 olfactory apparatus chamber 6 41754 -UBERON:0018230 femoral canal 5 41755 -UBERON:0034697 inflow tract 5 41756 -UBERON:0034698 inflow tract of ventricle 6 41757 -UBERON:0034703 inflow tract of right ventricle 7 41758 -UBERON:0034704 inflow tract of left ventricle 7 41759 -UBERON:0034699 inflow tract of atrium 6 41760 -UBERON:0035038 carpal tunnel 5 41761 -UBERON:0035610 hair canal 5 41762 -UBERON:2001806 intracranial diverticulum of swimbladder 5 41763 -UBERON:3000934 foramen perforans tarsi 5 41764 -UBERON:4200105 nerve foramen 5 41765 -UBERON:0018267 atlantal spinal nerve foramen 6 41766 -UBERON:0004201 kidney outer medulla inner stripe 4 41767 -UBERON:0004202 kidney outer medulla outer stripe 4 41768 -UBERON:0005156 reproductive structure 4 41769 -UBERON:0000002 uterine cervix 5 41770 -UBERON:0000155 theca cell layer 5 41771 -UBERON:0000156 theca externa 5 41772 -UBERON:0000157 theca interna 5 41773 -UBERON:0000428 prostate epithelium 5 41774 -UBERON:0000458 endocervix 5 41775 -UBERON:0000459 uterine wall 5 41776 -UBERON:0000993 oviduct 5 41777 -UBERON:0000994 spermathecum 5 41778 -UBERON:0000997 mammalian vulva 5 41779 -UBERON:0001296 myometrium 5 41780 -UBERON:0001297 serosa of uterus 5 41781 -UBERON:0003885 mesometrium 6 41782 -UBERON:0010391 parametrium 7 41783 -UBERON:0001300 scrotum 5 41784 -UBERON:0001305 ovarian follicle 5 41785 -UBERON:0000035 primary ovarian follicle 6 41786 -UBERON:0000036 secondary ovarian follicle 6 41787 -UBERON:0000037 tertiary ovarian follicle 6 41788 -UBERON:0003981 primordial ovarian follicle 6 41789 -UBERON:0003982 mature ovarian follicle 6 41790 -UBERON:0000450 corpus albicans 7 41791 -UBERON:0007180 atretic follicle of ovary 6 41792 -UBERON:0012186 ovary growing follicle 6 41793 -UBERON:2001263 ovarian follicle stage I 6 41794 -UBERON:2001265 ovarian follicle stage II 6 41795 -UBERON:2001266 ovarian follicle stage III 6 41796 -UBERON:2001571 postovulatory follicle 6 41797 -UBERON:0001306 cumulus oophorus 5 41798 -UBERON:0001307 capsule of ovary 5 41799 -UBERON:0001319 vaginal vein 5 41800 -UBERON:0001328 lobe of prostate 5 41801 -UBERON:0001329 prostate gland anterior lobe 6 41802 -UBERON:0007615 prostate gland ventral lobe 6 41803 -UBERON:0008808 prostate gland dorsolateral lobe 6 41804 -UBERON:0013637 prostate gland lateral lobe 6 41805 -UBERON:0015792 prostate gland dorsal lobe 6 41806 -UBERON:0035341 posterior lobe of prostate 6 41807 -UBERON:0035766 median lobe of prostate 6 41808 -UBERON:0001331 skin of penis 5 41809 -UBERON:0001471 skin of prepuce of penis 6 41810 -UBERON:0001337 spongiose part of urethra 5 41811 -UBERON:0001340 dorsal artery of penis 5 41812 -UBERON:0001342 mesovarium 5 41813 -UBERON:0001346 vaginal hymen 5 41814 -UBERON:0001987 placenta 5 41815 -UBERON:0036151 diffuse placenta 6 41816 -UBERON:0036152 cotyledonary placenta 6 41817 -UBERON:0036153 zonary placenta 6 41818 -UBERON:0036154 discoid placenta 6 41819 -UBERON:0036161 epitheliochorial placenta 6 41820 -UBERON:0036162 endotheliochorial placenta 6 41821 -UBERON:0036163 hemochorial placenta 6 41822 -UBERON:0002247 uterine horn 5 41823 -UBERON:0009020 left uterine horn 6 41824 -UBERON:0009022 right uterine horn 6 41825 -UBERON:0002337 endometrial stroma 5 41826 -UBERON:0002411 clitoris 5 41827 -UBERON:0002493 uterine artery 5 41828 -UBERON:0003133 reproductive organ 5 41829 -UBERON:0000991 gonad 6 41830 -UBERON:0000473 testis 7 41831 -UBERON:0004533 left testis 8 41832 -UBERON:0004534 right testis 8 41833 -UBERON:0000992 ovary 7 41834 -UBERON:0002118 right ovary 8 41835 -UBERON:0002119 left ovary 8 41836 -UBERON:0010041 median ovary 8 41837 -UBERON:0002537 hermaphrodite gonad 7 41838 -UBERON:0009117 indifferent gonad 7 41839 -UBERON:0003134 female reproductive organ 6 41840 -UBERON:0000992 ovary 7 41841 -UBERON:0002118 right ovary 8 41842 -UBERON:0002119 left ovary 8 41843 -UBERON:0010041 median ovary 8 41844 -UBERON:0003975 internal female genitalia 7 41845 -UBERON:0005056 external female genitalia 7 41846 -UBERON:0003135 male reproductive organ 6 41847 -UBERON:0000473 testis 7 41848 -UBERON:0004533 left testis 8 41849 -UBERON:0004534 right testis 8 41850 -UBERON:0004053 external male genitalia 7 41851 -UBERON:0004054 internal male genitalia 7 41852 -UBERON:0008811 intromittent organ 7 41853 -UBERON:0000989 penis 8 41854 -UBERON:0008812 hemipenis 8 41855 -UBERON:0010516 clasper 8 41856 -UBERON:0010517 cephalic clasper 9 41857 -UBERON:0010518 pelvic fin clasper 9 41858 -UBERON:0018315 clasper plate 10 41859 -UBERON:0017623 prepelvic clasper 9 41860 -UBERON:0013672 priapium 8 41861 -UBERON:3010259 phallodeum 8 41862 -UBERON:3010260 intromittent organ (Ascaphus type) 8 41863 -UBERON:0004175 internal genitalia 6 41864 -UBERON:0003975 internal female genitalia 7 41865 -UBERON:0004054 internal male genitalia 7 41866 -UBERON:0004176 external genitalia 6 41867 -UBERON:0004053 external male genitalia 7 41868 -UBERON:0005056 external female genitalia 7 41869 -UBERON:0009196 indifferent external genitalia 7 41870 -UBERON:0003428 gonadal fat pad 5 41871 -UBERON:0018131 periovarian fat pad 6 41872 -UBERON:0003480 vein of clitoris 5 41873 -UBERON:0006690 deep dorsal vein of clitoris 6 41874 -UBERON:0003855 gonad mesenchyme 5 41875 -UBERON:0003312 mesenchyme of testis 6 41876 -UBERON:0003315 mesenchyme of ovary 6 41877 -UBERON:0003937 reproductive gland 5 41878 -UBERON:0000359 preputial gland 6 41879 -UBERON:0005301 male preputial gland 7 41880 -UBERON:0005302 female preputial gland 7 41881 -UBERON:0005398 female reproductive gland 6 41882 -UBERON:0002451 endometrial gland 7 41883 -UBERON:0012247 cervical gland 8 41884 -UBERON:0002512 corpus luteum 7 41885 -UBERON:0003485 vagina sebaceous gland 7 41886 -UBERON:0005302 female preputial gland 7 41887 -UBERON:0008855 placenta metrial gland 7 41888 -UBERON:0008935 gastropod albumen gland 7 41889 -UBERON:0008975 oviduct shell gland 7 41890 -UBERON:0010145 paraurethral gland 7 41891 -UBERON:0000461 minor vestibular gland 8 41892 -UBERON:0011826 vestibular gland 7 41893 -UBERON:0000460 major vestibular gland 8 41894 -UBERON:0000461 minor vestibular gland 8 41895 -UBERON:0034735 oviduct albumen gland 7 41896 -UBERON:0005399 male reproductive gland 6 41897 -UBERON:0006868 seminal fluid secreting gland 7 41898 -UBERON:0000998 seminal vesicle 8 41899 -UBERON:0002366 bulbo-urethral gland 8 41900 -UBERON:0007773 scrotal sweat gland 7 41901 -UBERON:0009645 ampullary gland 7 41902 -UBERON:0010147 male accessory sex gland 7 41903 -UBERON:0002366 bulbo-urethral gland 8 41904 -UBERON:0002367 prostate gland 8 41905 -UBERON:0005301 male preputial gland 8 41906 -UBERON:0007194 vesicular gland 8 41907 -UBERON:0008807 coagulating gland 8 41908 -UBERON:0017161 hemipenial mucuous gland 7 41909 -UBERON:0017162 hemipenial holocrine gland 7 41910 -UBERON:0003946 placenta labyrinth 5 41911 -UBERON:0003959 rete testis 5 41912 -UBERON:0003972 placenta junctional zone 5 41913 -UBERON:0004021 spongiotrophoblast layer 5 41914 -UBERON:0004084 genital labium 5 41915 -UBERON:0004014 labium minora 6 41916 -UBERON:0004085 labium majora 6 41917 -UBERON:0004179 prostate glandular acinus 5 41918 -UBERON:0004184 prostate gland stroma 5 41919 -UBERON:0004223 vagina smooth muscle 5 41920 -UBERON:0004224 muscular coat of vas deferens 5 41921 -UBERON:0004245 oviduct smooth muscle 5 41922 -UBERON:0004346 gubernaculum (male or female) 5 41923 -UBERON:0008843 gubernaculum testis 6 41924 -UBERON:0008844 gubernaculum (female) 6 41925 -UBERON:0004353 female inguinal canal 5 41926 -UBERON:0004354 male inguinal canal 5 41927 -UBERON:0004358 caput epididymis 5 41928 -UBERON:0004359 corpus epididymis 5 41929 -UBERON:0004360 cauda epididymis 5 41930 -UBERON:0004544 epididymis epithelium 5 41931 -UBERON:0004665 muscular coat of seminal vesicle 5 41932 -UBERON:0004713 corpus cavernosum penis 5 41933 -UBERON:0004803 penis epithelium 5 41934 -UBERON:0004812 male prepuce epithelium 6 41935 -UBERON:0004804 oviduct epithelium 5 41936 -UBERON:0001344 epithelium of vagina 6 41937 -UBERON:0006923 vagina squamous epithelium 7 41938 -UBERON:0006955 uterine epithelium 6 41939 -UBERON:0003366 epithelium of uterine horn 7 41940 -UBERON:0004801 cervix epithelium 7 41941 -UBERON:0006922 cervix squamous epithelium 8 41942 -UBERON:0012250 cervix glandular epithelium 8 41943 -UBERON:0012252 endocervical epithelium 9 41944 -UBERON:0012251 ectocervical epithelium 8 41945 -UBERON:0012253 cervical squamo-columnar junction 8 41946 -UBERON:0004811 endometrium epithelium 7 41947 -UBERON:0012276 endometrium glandular epithelium 8 41948 -UBERON:0022355 basal layer of endometrium 8 41949 -UBERON:0022356 outer layer of endometrium 8 41950 -UBERON:0007589 ciliated columnar oviduct epithelium 6 41951 -UBERON:0012276 endometrium glandular epithelium 7 41952 -UBERON:0007590 cuboidal oviduct epithelium 6 41953 -UBERON:0004806 vas deferens epithelium 5 41954 -UBERON:0004835 epididymis smooth muscle 5 41955 -UBERON:0004909 epithelium of gonad 5 41956 -UBERON:0004910 epithelium of male gonad 6 41957 -UBERON:0004805 seminal vesicle epithelium 7 41958 -UBERON:0004813 seminiferous tubule epithelium 7 41959 -UBERON:0005297 testis sex cord 7 41960 -UBERON:0004911 epithelium of female gonad 6 41961 -UBERON:0001304 germinal epithelium of ovary 7 41962 -UBERON:0005170 granulosa cell layer 7 41963 -UBERON:0005296 ovary sex cord 7 41964 -UBERON:0005890 gonad germinal epithelium 6 41965 -UBERON:0010141 primitive sex cord of indifferent gonad 6 41966 -UBERON:0005192 deferent duct artery 5 41967 -UBERON:0005195 deferent duct vein 5 41968 -UBERON:0005205 lamina propria of vagina 5 41969 -UBERON:0005212 Leydig cell region of testis 5 41970 -UBERON:0005298 skin of clitoris 5 41971 -UBERON:0011375 skin of prepuce of clitoris 6 41972 -UBERON:0005352 spermatic cord 5 41973 -UBERON:0005904 duct of male reproductive system 5 41974 -UBERON:0000999 ejaculatory duct 6 41975 -UBERON:0001000 vas deferens 6 41976 -UBERON:0001301 epididymis 6 41977 -UBERON:0001343 seminiferous tubule of testis 6 41978 -UBERON:0002485 prostate duct 6 41979 -UBERON:0005903 duct of seminal vesicle 6 41980 -UBERON:0006946 efferent duct 6 41981 -UBERON:3010586 vasa efferentia 7 41982 -UBERON:0006947 male genital duct 6 41983 -UBERON:0008824 duct of epididymis 6 41984 -UBERON:0010151 duct of bulbourethral gland 6 41985 -UBERON:0006594 gubernacular cord 5 41986 -UBERON:0006608 corpus cavernosum clitoridis 5 41987 -UBERON:0006610 tunica albuginea 5 41988 -UBERON:0006643 tunica albuginea of testis 6 41989 -UBERON:0006644 tunica albuginea of ovary 6 41990 -UBERON:0006639 crus of penis 5 41991 -UBERON:0006640 crus of clitoris 5 41992 -UBERON:0006642 muscle layer of oviduct 5 41993 -UBERON:0006645 adventitia of epididymis 5 41994 -UBERON:0006646 muscle layer of epididymis 5 41995 -UBERON:0006647 adventitia of ductus deferens 5 41996 -UBERON:0006648 adventitia of seminal vesicle 5 41997 -UBERON:0006650 tunica vaginalis testis 5 41998 -UBERON:0006652 muscular layer of vagina 5 41999 -UBERON:0006655 septum of scrotum 5 42000 -UBERON:0006656 deep dorsal vein of penis 5 42001 -UBERON:0006834 uterus or analog 5 42002 -UBERON:0006948 efferent duct epithelium 5 42003 -UBERON:0006953 ejaculatory duct epithelium 5 42004 -UBERON:0006960 ovary stroma 5 42005 -UBERON:0007181 serosa of infundibulum of uterine tube 5 42006 -UBERON:0007182 muscle layer of infundibulum of uterine tube 5 42007 -UBERON:0007719 bone of reproductive organ 5 42008 -UBERON:0006435 os penis 6 42009 -UBERON:0006440 os clitoris 6 42010 -UBERON:0013673 os priapium 6 42011 -UBERON:0013674 ctenactinium 6 42012 -UBERON:0013676 aproctal bone of priapium 6 42013 -UBERON:0008311 penile bulb artery 5 42014 -UBERON:0008320 common penile artery 5 42015 -UBERON:0008321 deep artery of penis 5 42016 -UBERON:0008322 deep artery of clitoris 5 42017 -UBERON:0008323 dorsal artery of clitoris 5 42018 -UBERON:0008331 clitoral smooth muscle 5 42019 -UBERON:0008488 cremaster muscle 5 42020 -UBERON:0008715 muscle tissue of prostate 5 42021 -UBERON:0004243 prostate gland smooth muscle 6 42022 -UBERON:0004520 striated muscle tissue of prostate 6 42023 -UBERON:0008798 rugal fold of vagina 5 42024 -UBERON:0008842 suspensory ligament of testis 5 42025 -UBERON:0008847 ovarian ligament 5 42026 -UBERON:0008848 cranial suspensory ligament 5 42027 -UBERON:0008936 gastropod genital pore 5 42028 -UBERON:0009002 placental membrane 5 42029 -UBERON:0014849 hemotrichorial placental membrane 6 42030 -UBERON:0014850 hemomonochorial placental membrane 6 42031 -UBERON:0009853 body of uterus 5 42032 -UBERON:0010146 paraurethral duct 5 42033 -UBERON:0011830 duct of lesser vestibular gland 6 42034 -UBERON:0010185 rete ovarii 5 42035 -UBERON:0010412 epididymal fat pad 5 42036 -UBERON:0011183 corpus spongiosum of penis 5 42037 -UBERON:0011298 submucosa of uterine tube 5 42038 -UBERON:0011374 prepuce 5 42039 -UBERON:0001332 prepuce of penis 6 42040 -UBERON:0005299 prepuce of clitoris 6 42041 -UBERON:0011379 male external urethral sphincter 5 42042 -UBERON:0011380 female external urethral sphincter 5 42043 -UBERON:0011388 male bulbospongiosus muscle 5 42044 -UBERON:0011754 genital swelling 5 42045 -UBERON:0011755 female labial swelling 6 42046 -UBERON:0011756 male genital swelling 6 42047 -UBERON:0011831 duct of vestibular gland 5 42048 -UBERON:0010150 duct of major vestibular gland 6 42049 -UBERON:0011830 duct of lesser vestibular gland 6 42050 -UBERON:0011879 mesorchium 5 42051 -UBERON:0012241 male urethral meatus 5 42052 -UBERON:0012249 ectocervix 5 42053 -UBERON:0012294 navicular fossa of spongiose part of urethra 5 42054 -UBERON:0012295 Guérin's valve 5 42055 -UBERON:0012317 vagina orifice 5 42056 -UBERON:0012326 gubernacular bulb 5 42057 -UBERON:0012327 pearly penile papule 5 42058 -UBERON:0012328 penile spine 5 42059 -UBERON:0012487 vaginal sphincter 5 42060 -UBERON:0012499 serosa of uterine tube 5 42061 -UBERON:0012648 ampulla of uterine tube 5 42062 -UBERON:0013128 bulb of penis 5 42063 -UBERON:0013129 bulb of vestibule 5 42064 -UBERON:0013191 ovarian cortex 5 42065 -UBERON:0013192 ovarian medulla 5 42066 -UBERON:0013237 genital papilla of vulva 5 42067 -UBERON:0013247 male paramesonephric duct 5 42068 -UBERON:0013248 paradidymis 5 42069 -UBERON:0013249 paroophoron 5 42070 -UBERON:0013515 subdivision of oviduct 5 42071 -UBERON:0000995 uterus 6 42072 -UBERON:0005796 duplex uterus 7 42073 -UBERON:0005797 bipartite uterus 7 42074 -UBERON:0005798 bicornuate uterus 7 42075 -UBERON:0005799 simplex uterus 7 42076 -UBERON:0009098 gravid uterus 7 42077 -UBERON:0000996 vagina 6 42078 -UBERON:0013523 lateral vaginal canal 7 42079 -UBERON:0013524 median vaginal canal 7 42080 -UBERON:0003889 fallopian tube 6 42081 -UBERON:0001302 right uterine tube 7 42082 -UBERON:0001303 left uterine tube 7 42083 -UBERON:0003974 upper part of vagina 7 42084 -UBERON:0016632 isthmus of fallopian tube 7 42085 -UBERON:0003984 uterine tube infundibulum 6 42086 -UBERON:0013516 uterine tube magnum 6 42087 -UBERON:0013519 avian uterine tube isthmus 6 42088 -UBERON:0015243 lower part of vagina 6 42089 -UBERON:0013675 toxactinium 5 42090 -UBERON:0013719 dartos muscle of scrotum 5 42091 -UBERON:0013720 dartos muscle of labia majora 5 42092 -UBERON:0013758 cervical os 5 42093 -UBERON:0013759 internal cervical os 6 42094 -UBERON:0013760 external cervical os 6 42095 -UBERON:0014394 uterine fat pad 5 42096 -UBERON:0010413 parametrial fat pad 6 42097 -UBERON:0014458 female bulbospongiosus muscle 5 42098 -UBERON:0014914 haemolymphatic fluid-testis barrier 5 42099 -UBERON:0036185 Sertoli cell barrier 6 42100 -UBERON:0015130 connective tissue of prostate gland 5 42101 -UBERON:0015131 subepithelial connective tissue of prostatic gland 6 42102 -UBERON:0015172 endometrial blood vessel 5 42103 -UBERON:0015171 uterine spiral artery 6 42104 -UBERON:0015177 helicine artery 5 42105 -UBERON:0015173 helicine branch of uterine artery 6 42106 -UBERON:0015174 helicine artery of penis 6 42107 -UBERON:0015479 scrotum skin 5 42108 -UBERON:0018134 rugal fold of scrotum 6 42109 -UBERON:0015717 smooth muscle tissue layer of ejaculatory duct 5 42110 -UBERON:0016408 corona of glans penis 5 42111 -UBERON:0016409 base of glans penis 5 42112 -UBERON:0016524 muscle layer of spongiose part of urethra 5 42113 -UBERON:0017180 hemipenis keratinized epithelium 5 42114 -UBERON:0017258 placentome of cotyledonary placenta 5 42115 -UBERON:0017732 raphe of scrotum 5 42116 -UBERON:0018319 extramural oviduct 5 42117 -UBERON:0018529 female inguinal ring 5 42118 -UBERON:0018531 female superficial inguinal ring 6 42119 -UBERON:0018530 male inguinal ring 5 42120 -UBERON:0018532 female deep inguinal ring 6 42121 -UBERON:0019042 reproductive system mucosa 5 42122 -UBERON:0001295 endometrium 6 42123 -UBERON:0012248 cervical mucosa 7 42124 -UBERON:0004983 mucosa of vagina 6 42125 -UBERON:0004984 mucosa of seminal vesicle 6 42126 -UBERON:0004985 mucosa of ejaculatory duct 6 42127 -UBERON:0004986 mucosa of deferent duct 6 42128 -UBERON:0005048 mucosa of uterine tube 6 42129 -UBERON:0005011 mucosa of right uterine tube 7 42130 -UBERON:0005012 mucosa of left uterine tube 7 42131 -UBERON:0005049 mucosa of infundibulum of uterine tube 6 42132 -UBERON:0018343 oviduct mucosal fold 6 42133 -UBERON:0022358 placenta blood vessel 5 42134 -UBERON:0004183 placental labyrinth blood vessel 6 42135 -UBERON:0034691 internal spermatic fascia 5 42136 -UBERON:0034694 gubernacular bulb, intra-abdominal part 5 42137 -UBERON:0034695 gubernacular bulb, extra-abdominal part 5 42138 -UBERON:0034770 bulbourethral gland epithelium 5 42139 -UBERON:0035098 hemipenis transversus muscle 5 42140 -UBERON:0035104 raphe of penis 5 42141 -UBERON:0035105 sac of scrotum 5 42142 -UBERON:0035258 mons pubis 5 42143 -UBERON:0035316 prostatic capsule 5 42144 -UBERON:0035331 base of prostate 5 42145 -UBERON:0035651 glans 5 42146 -UBERON:0001299 glans penis 6 42147 -UBERON:0006653 glans clitoris 6 42148 -UBERON:0035962 supravaginal part of cervix 5 42149 -UBERON:0036262 uterine ligament 5 42150 -UBERON:0036292 adnexa of uterus 5 42151 -UBERON:0036441 wall of uterine tube 5 42152 -UBERON:0036523 wall of vagina 5 42153 -UBERON:2002114 cotylephore 5 42154 -UBERON:2002117 ovipositor 5 42155 -UBERON:2005272 immature gonad 5 42156 -UBERON:3000041 Bidder's organ 5 42157 -UBERON:3010240 Nobelian rod 5 42158 -UBERON:3010529 ovisac 5 42159 -UBERON:3010780 pars recta 5 42160 -UBERON:3010781 pars convoluta of oviduct 5 42161 -UBERON:4100111 hemipenal sheath 5 42162 -UBERON:4300018 ventral marginal cartilage 5 42163 -UBERON:0005353 spleen perifollicular zone 4 42164 -UBERON:0005619 secondary palatal shelf 4 42165 -UBERON:0006377 remnant of Rathke's pouch 4 42166 -UBERON:0009058 faveolus 4 42167 -UBERON:0009060 air sac 4 42168 -UBERON:0009061 anterior air sac 5 42169 -UBERON:0009063 interclavicular air sac 6 42170 -UBERON:0009064 cervical air sac 6 42171 -UBERON:0009065 anterior thoracic air sac 6 42172 -UBERON:0009062 posterior air sac 5 42173 -UBERON:0009066 posterior thoracic air sac 6 42174 -UBERON:0009067 abdominal air sac 6 42175 -UBERON:0009948 clavicular air sac 5 42176 -UBERON:0009949 humeral diverticulum of clavicular air sac 4 42177 -UBERON:0011216 organ system subdivision 4 42178 -UBERON:0000010 peripheral nervous system 5 42179 -UBERON:0000011 parasympathetic nervous system 5 42180 -UBERON:0000012 somatic nervous system 5 42181 -UBERON:0000013 sympathetic nervous system 5 42182 -UBERON:0000075 subdivision of skeletal system 5 42183 -UBERON:0001130 vertebral column 6 42184 -UBERON:0001270 bony pelvis 6 42185 -UBERON:0002517 basicranium 6 42186 -UBERON:0003128 cranium 6 42187 -UBERON:0003129 skull 6 42188 -UBERON:0004761 cartilaginous neurocranium 6 42189 -UBERON:0006077 subdivision of vertebral column 6 42190 -UBERON:0006072 cervical region of vertebral column 7 42191 -UBERON:0006073 thoracic region of vertebral column 7 42192 -UBERON:0006074 lumbar region of vertebral column 7 42193 -UBERON:0006075 sacral region of vertebral column 7 42194 -UBERON:0003690 fused sacrum 8 42195 -UBERON:0006076 caudal region of vertebral column 7 42196 -UBERON:0001350 coccyx 8 42197 -UBERON:0009568 trunk region of vertebral column 7 42198 -UBERON:0011271 caudal-sacral region of vertebral column 7 42199 -UBERON:4200128 synarcual region of vertebral column 7 42200 -UBERON:0006813 nasal skeleton 6 42201 -UBERON:3010146 lacrimal 7 42202 -UBERON:0008271 turtle shell 6 42203 -UBERON:0008275 carapace 6 42204 -UBERON:0008276 plastron 6 42205 -UBERON:0010272 hyoid apparatus 6 42206 -UBERON:3000681 hyoid apparatus opening 7 42207 -UBERON:3000683 sinus nervi hypoglossi 8 42208 -UBERON:3000685 foramen nervi hypoglossi 8 42209 -UBERON:0010323 cranial skeletal system 6 42210 -UBERON:3010013 larval chondrocranium 7 42211 -UBERON:0011137 axial skeletal system 6 42212 -UBERON:0011138 postcranial axial skeletal system 6 42213 -UBERON:0011158 primary subdivision of skull 6 42214 -UBERON:0001703 neurocranium 7 42215 -UBERON:0011156 facial skeleton 7 42216 -UBERON:0011159 primary subdivision of cranial skeletal system 6 42217 -UBERON:0002241 chondrocranium 7 42218 -UBERON:0003113 dermatocranium 7 42219 -UBERON:4200240 fronto-ethmoidal shield 8 42220 -UBERON:4200241 postrostral bone 9 42221 -UBERON:4200242 median postrostral bone 10 42222 -UBERON:0008895 splanchnocranium 7 42223 -UBERON:0011220 mastoid process of temporal bone 6 42224 -UBERON:0011249 appendicular skeletal system 6 42225 -UBERON:0011662 plastron-carapace bridge 6 42226 -UBERON:0011663 anterior plastron-carapace bridge 7 42227 -UBERON:0011664 posterior plastron-carapace bridge 7 42228 -UBERON:0012072 palatal part of dermatocranium 6 42229 -UBERON:0012074 bony part of hard palate 6 42230 -UBERON:0014478 rib skeletal system 6 42231 -UBERON:0035133 longitudinal arch of pes 6 42232 -UBERON:0037089 wall of orbit 6 42233 -UBERON:2001620 lagenar capsule 6 42234 -UBERON:4200021 astragalus-calcaneum unit 6 42235 -UBERON:4300134 lateral commissure 6 42236 -UBERON:0000349 limbic system 5 42237 -UBERON:0000383 musculature of body 5 42238 -UBERON:0007095 somatic musculature 6 42239 -UBERON:2001324 enteric musculature 6 42240 -UBERON:6003218 adult muscle system 6 42241 -UBERON:0001015 musculature 5 42242 -UBERON:0002462 erector spinae muscle group 6 42243 -UBERON:0004462 musculature of body wall 6 42244 -UBERON:0004467 musculature of pharynx 6 42245 -UBERON:0004468 set of muscles of vertebral column 6 42246 -UBERON:0004469 musculature of back 6 42247 -UBERON:2000648 dorsal fin musculature 7 42248 -UBERON:0004475 musculature of hip 6 42249 -UBERON:0004476 musculature of shoulder 6 42250 -UBERON:0004478 musculature of larynx 6 42251 -UBERON:0004479 musculature of trunk 6 42252 -UBERON:0002343 abdomen musculature 7 42253 -UBERON:0004464 musculature of thorax 7 42254 -UBERON:0004470 musculature of pelvic girdle 7 42255 -UBERON:0004486 musculature of perineum 7 42256 -UBERON:0008777 hypaxial musculature 7 42257 -UBERON:3010783 m. oblique externus 8 42258 -UBERON:3010784 m. oblique internus 8 42259 -UBERON:3010785 m. transversus 8 42260 -UBERON:3010786 pars subvertebralis 8 42261 -UBERON:3010787 pars transversalis 8 42262 -UBERON:3010793 m. ypsiloideus anterior 8 42263 -UBERON:3010797 m. ypsiloideus posterior 8 42264 -UBERON:0008778 epaxial musculature 7 42265 -UBERON:3010772 M. dorsalis trunci 8 42266 -UBERON:0007271 appendage musculature 6 42267 -UBERON:0004480 musculature of limb 7 42268 -UBERON:0004481 musculature of upper limb 8 42269 -UBERON:0004474 musculature of arm 9 42270 -UBERON:0004487 musculature of forelimb zeugopod 10 42271 -UBERON:0014791 musculature of forelimb stylopod 10 42272 -UBERON:0004489 musculature of manus 9 42273 -UBERON:0004482 musculature of lower limb 8 42274 -UBERON:0004466 musculature of leg 9 42275 -UBERON:0004463 musculature of hindlimb stylopod 10 42276 -UBERON:0006067 musculature of hindlimb zeugopod 10 42277 -UBERON:0004488 musculature of pes 9 42278 -UBERON:0007269 pectoral appendage musculature 7 42279 -UBERON:0004481 musculature of upper limb 8 42280 -UBERON:0004474 musculature of arm 9 42281 -UBERON:0004487 musculature of forelimb zeugopod 10 42282 -UBERON:0014791 musculature of forelimb stylopod 10 42283 -UBERON:0004489 musculature of manus 9 42284 -UBERON:0007270 pelvic appendage musculature 7 42285 -UBERON:0004482 musculature of lower limb 8 42286 -UBERON:0004466 musculature of leg 9 42287 -UBERON:0004463 musculature of hindlimb stylopod 10 42288 -UBERON:0006067 musculature of hindlimb zeugopod 10 42289 -UBERON:0004488 musculature of pes 9 42290 -UBERON:2000628 caudal fin musculature 7 42291 -UBERON:2000648 dorsal fin musculature 7 42292 -UBERON:2001154 anal fin musculature 7 42293 -UBERON:0008229 craniocervical region musculature 6 42294 -UBERON:0004461 skeletal musculature of head 7 42295 -UBERON:0004465 musculature of neck 7 42296 -UBERON:3010664 m. intertransversarius capitus superior 8 42297 -UBERON:3010667 m. intertransversarius capitis inferior 8 42298 -UBERON:0004473 musculature of face 7 42299 -UBERON:0013116 venom gland musculature 7 42300 -UBERON:0013700 axial musculature 6 42301 -UBERON:0014792 musculature of pelvic complex 6 42302 -UBERON:0004470 musculature of pelvic girdle 7 42303 -UBERON:0007270 pelvic appendage musculature 7 42304 -UBERON:0004482 musculature of lower limb 8 42305 -UBERON:0004466 musculature of leg 9 42306 -UBERON:0004463 musculature of hindlimb stylopod 10 42307 -UBERON:0006067 musculature of hindlimb zeugopod 10 42308 -UBERON:0004488 musculature of pes 9 42309 -UBERON:0014793 musculature of pectoral complex 6 42310 -UBERON:0004471 musculature of pectoral girdle 7 42311 -UBERON:0007269 pectoral appendage musculature 7 42312 -UBERON:0004481 musculature of upper limb 8 42313 -UBERON:0004474 musculature of arm 9 42314 -UBERON:0004487 musculature of forelimb zeugopod 10 42315 -UBERON:0014791 musculature of forelimb stylopod 10 42316 -UBERON:0004489 musculature of manus 9 42317 -UBERON:0001017 central nervous system 5 42318 -UBERON:6001919 embryonic/larval central nervous system 6 42319 -UBERON:6003623 adult central nervous system 6 42320 -UBERON:0001434 skeletal system 5 42321 -UBERON:0002005 enteric nervous system 5 42322 -UBERON:0002199 integument 5 42323 -UBERON:0002294 biliary system 5 42324 -UBERON:0002410 autonomic nervous system 5 42325 -UBERON:0002423 hepatobiliary system 5 42326 -UBERON:0006524 alveolar system 5 42327 -UBERON:0006525 left lung alveolar system 5 42328 -UBERON:0006526 right lung alveolar system 5 42329 -UBERON:0006558 lymphatic part of lymphoid system 5 42330 -UBERON:0006561 non-lymphatic part of lymphoid system 5 42331 -UBERON:0006794 visual processing part of nervous system 5 42332 -UBERON:0001945 superior colliculus 6 42333 -UBERON:0006795 arthropod optic lobe 6 42334 -UBERON:0006796 cephalopod optic lobe 6 42335 -UBERON:0010074 chromaffin system 5 42336 -UBERON:0010191 aortic system 5 42337 -UBERON:0010912 subdivision of skeleton 5 42338 -UBERON:0001697 orbit of skull 6 42339 -UBERON:0001708 jaw skeleton 6 42340 -UBERON:4200250 meckelian bone 7 42341 -UBERON:0002090 postcranial axial skeleton 6 42342 -UBERON:0002091 appendicular skeleton 6 42343 -UBERON:0003108 suspensorium 6 42344 -UBERON:0003252 thoracic rib cage 6 42345 -UBERON:0003277 skeleton of upper jaw 6 42346 -UBERON:0003278 skeleton of lower jaw 6 42347 -UBERON:0004339 vault of skull 6 42348 -UBERON:0005884 hyoid arch skeleton 6 42349 -UBERON:0005886 post-hyoid pharyngeal arch skeleton 6 42350 -UBERON:0005944 axial skeleton plus cranial skeleton 6 42351 -UBERON:0006813 nasal skeleton 6 42352 -UBERON:3010146 lacrimal 7 42353 -UBERON:0009119 branchial basket 6 42354 -UBERON:0010362 endoskeleton 6 42355 -UBERON:0010364 dermal skeleton 6 42356 -UBERON:0010712 limb skeleton subdivision 6 42357 -UBERON:0004381 skeleton of limb 7 42358 -UBERON:0001440 forelimb skeleton 8 42359 -UBERON:0001441 hindlimb skeleton 8 42360 -UBERON:0006717 autopodial skeleton 7 42361 -UBERON:0001442 skeleton of manus 8 42362 -UBERON:0001445 skeleton of pes 8 42363 -UBERON:0009878 mesopodial skeleton 7 42364 -UBERON:0009879 tarsal skeleton 8 42365 -UBERON:0009880 carpal skeleton 8 42366 -UBERON:0010543 acropodial skeleton 7 42367 -UBERON:0010688 skeleton of manual acropodium 8 42368 -UBERON:0010696 skeleton of pedal acropodium 8 42369 -UBERON:0010546 metapodial skeleton 7 42370 -UBERON:0010544 metacarpus skeleton 8 42371 -UBERON:0010545 metatarsus skeleton 8 42372 -UBERON:0011583 stylopodial skeleton 7 42373 -UBERON:0011584 zeugopodial skeleton 7 42374 -UBERON:0010703 forelimb zeugopod skeleton 8 42375 -UBERON:0010720 hindlimb zeugopod skeleton 8 42376 -UBERON:0012135 prepollex skeleton 7 42377 -UBERON:0012150 skeleton of digitopodium 7 42378 -UBERON:0012151 skeleton of manual digitopodium 8 42379 -UBERON:0012152 skeleton of pedal digitopodium 8 42380 -UBERON:3000922 prehallux skeleton 7 42381 -UBERON:5102544 individual digit of digitopodial skeleton 7 42382 -UBERON:0016876 digit 6 digitopodial skeleton 8 42383 -UBERON:5111981 manual digit 6 digitopodial skeleton 9 42384 -UBERON:0016877 digit 7 digitopodial skeleton 8 42385 -UBERON:5111982 manual digit 7 digitopodial skeleton 9 42386 -UBERON:0016878 digit 8 digitopodial skeleton 8 42387 -UBERON:5111983 manual digit 8 digitopodial skeleton 9 42388 -UBERON:5101466 pedal digit digitopodial skeleton 8 42389 -UBERON:5103631 pedal digit 1 digitopodial skeleton 9 42390 -UBERON:5103632 pedal digit 2 digitopodial skeleton 9 42391 -UBERON:5103633 pedal digit 3 digitopodial skeleton 9 42392 -UBERON:5103634 pedal digit 4 digitopodial skeleton 9 42393 -UBERON:5103635 pedal digit 5 digitopodial skeleton 9 42394 -UBERON:5111984 pedal digit 6 digitopodial skeleton 9 42395 -UBERON:5112137 pedal digit 7 digitopodial skeleton 9 42396 -UBERON:5112138 pedal digit 8 digitopodial skeleton 9 42397 -UBERON:5102389 manual digit digitopodial skeleton 8 42398 -UBERON:5101463 manual digit 1 digitopodial skeleton 9 42399 -UBERON:5103622 manual digit 2 digitopodial skeleton 9 42400 -UBERON:5103623 manual digit 3 digitopodial skeleton 9 42401 -UBERON:5103624 manual digit 4 digitopodial skeleton 9 42402 -UBERON:5103625 manual digit 5 digitopodial skeleton 9 42403 -UBERON:5111981 manual digit 6 digitopodial skeleton 9 42404 -UBERON:5111982 manual digit 7 digitopodial skeleton 9 42405 -UBERON:5111983 manual digit 8 digitopodial skeleton 9 42406 -UBERON:5112260 alular digit digitopodial skeleton 9 42407 -UBERON:5112261 manual major digit (Aves) digitopodial skeleton 9 42408 -UBERON:5112262 manual minor digit (Aves) digitopodial skeleton 9 42409 -UBERON:5106048 digit 1 digitopodial skeleton 8 42410 -UBERON:5101463 manual digit 1 digitopodial skeleton 9 42411 -UBERON:5103631 pedal digit 1 digitopodial skeleton 9 42412 -UBERON:5106049 digit 2 digitopodial skeleton 8 42413 -UBERON:5103622 manual digit 2 digitopodial skeleton 9 42414 -UBERON:5103632 pedal digit 2 digitopodial skeleton 9 42415 -UBERON:5106050 digit 3 digitopodial skeleton 8 42416 -UBERON:5103623 manual digit 3 digitopodial skeleton 9 42417 -UBERON:5103633 pedal digit 3 digitopodial skeleton 9 42418 -UBERON:5106051 digit 4 digitopodial skeleton 8 42419 -UBERON:5103624 manual digit 4 digitopodial skeleton 9 42420 -UBERON:5103634 pedal digit 4 digitopodial skeleton 9 42421 -UBERON:5106052 digit 5 digitopodial skeleton 8 42422 -UBERON:5103625 manual digit 5 digitopodial skeleton 9 42423 -UBERON:5103635 pedal digit 5 digitopodial skeleton 9 42424 -UBERON:0010719 girdle skeleton 6 42425 -UBERON:0007831 pectoral girdle skeleton 7 42426 -UBERON:3000941 arciferal girdle 8 42427 -UBERON:3000942 firmisternal girdle 8 42428 -UBERON:3000943 pseudofirmisternal girdle 8 42429 -UBERON:3000944 pseudoarciferal girdle 8 42430 -UBERON:0007832 pelvic girdle skeleton 7 42431 -UBERON:0011090 skeleton of right pelvic girdle 8 42432 -UBERON:0011091 skeleton of left pelvic girdle 8 42433 -UBERON:3000767 pelvic girdle opening 8 42434 -UBERON:3000771 acetabular depression 9 42435 -UBERON:0011085 palatoquadrate arch 6 42436 -UBERON:0011152 dorsal hyoid arch skeleton 6 42437 -UBERON:0011153 ventral hyoid arch skeleton 6 42438 -UBERON:0011582 paired limb/fin skeleton 6 42439 -UBERON:0004381 skeleton of limb 7 42440 -UBERON:0001440 forelimb skeleton 8 42441 -UBERON:0001441 hindlimb skeleton 8 42442 -UBERON:0007272 pectoral appendage skeleton 7 42443 -UBERON:0001440 forelimb skeleton 8 42444 -UBERON:0010710 pectoral fin skeleton 8 42445 -UBERON:0007273 pelvic appendage skeleton 7 42446 -UBERON:0001441 hindlimb skeleton 8 42447 -UBERON:0010711 pelvic fin skeleton 8 42448 -UBERON:0010713 paired fin skeleton 7 42449 -UBERON:0010710 pectoral fin skeleton 8 42450 -UBERON:0010711 pelvic fin skeleton 8 42451 -UBERON:0012353 fin skeleton 6 42452 -UBERON:0010713 paired fin skeleton 7 42453 -UBERON:0010710 pectoral fin skeleton 8 42454 -UBERON:0010711 pelvic fin skeleton 8 42455 -UBERON:4000170 median fin skeleton 7 42456 -UBERON:4000166 anal fin skeleton 8 42457 -UBERON:4000167 caudal fin skeleton 8 42458 -UBERON:4000168 dorsal fin skeleton 8 42459 -UBERON:4500004 adipose fin skeleton 8 42460 -UBERON:0012475 skeleton of pectoral complex 6 42461 -UBERON:0012476 skeleton of pelvic complex 6 42462 -UBERON:0013653 velar skeleton 6 42463 -UBERON:0014477 thoracic skeleton 6 42464 -UBERON:0016628 stem of Y-shaped fibrocartilage skeleton of ventral pouch 6 42465 -UBERON:0016629 branch of Y-shaped fibrocartilage skeleton of ventral pouch 6 42466 -UBERON:2001228 pharyngeal arch 3 skeleton 6 42467 -UBERON:2001229 pharyngeal arch 7 skeleton 6 42468 -UBERON:2001230 pharyngeal arch 6 skeleton 6 42469 -UBERON:2001231 pharyngeal arch 4 skeleton 6 42470 -UBERON:2001232 pharyngeal arch 5 skeleton 6 42471 -UBERON:2001686 bony shelf above orbit 6 42472 -UBERON:2002096 bony plate series 6 42473 -UBERON:3000050 braincase and auditory apparatus 6 42474 -UBERON:3000052 braincase and otic capsule skeleton 7 42475 -UBERON:4000090 integumentary skeleton 6 42476 -UBERON:4000171 scapular complex 6 42477 -UBERON:4200160 mesomere (fin) 6 42478 -UBERON:4200161 mesomere 5 7 42479 -UBERON:4200162 mesomere 4 7 42480 -UBERON:4200178 proximal mesomere 7 42481 -UBERON:4300200 postparietal shield 6 42482 -UBERON:4440008 fin radial skeleton 6 42483 -UBERON:4300013 paired fin radial skeleton 7 42484 -UBERON:4440009 pectoral fin radial skeleton 8 42485 -UBERON:4440010 pelvic fin radial skeleton 8 42486 -UBERON:4300143 anal fin radial skeleton 7 42487 -UBERON:0016618 baleen feeding system 5 42488 -UBERON:0018226 pulmonary part of lymphatic system 5 42489 -UBERON:0018229 renin-angiotensin system 5 42490 -UBERON:0023879 neural system 5 42491 -UBERON:0025525 motor system 6 42492 -UBERON:0025533 proprioceptive system 6 42493 -UBERON:0025534 sensorimotor system 6 42494 -UBERON:0035514 special sense organ system 5 42495 -UBERON:0035594 accessory optic system 5 42496 -UBERON:4200199 sallet sensory system 5 42497 -UBERON:6005096 stomatogastric nervous system 5 42498 -UBERON:6007284 insect region of integument 5 42499 -UBERON:6004475 sclerite 6 42500 -UBERON:6004476 tergite 7 42501 -UBERON:6004477 sternite 7 42502 -UBERON:6004521 clypeus 7 42503 -UBERON:6004552 tergum 6 42504 -UBERON:6004580 mesothoracic tergum 7 42505 -UBERON:6004579 dorsal mesothorax 6 42506 -UBERON:6005378 wing margin 6 42507 -UBERON:6007285 segmental subdivision of integument 6 42508 -UBERON:6004578 adult external mesothorax 7 42509 -UBERON:6007288 insect integumentary specialisation 6 42510 -UBERON:6005054 spiracle 7 42511 -UBERON:6007289 tagmatic subdivision of integument 6 42512 -UBERON:6004481 adult external head 7 42513 -UBERON:6004551 adult external thorax 7 42514 -UBERON:6004788 adult external abdomen 7 42515 -UBERON:6007331 segmental subdivision of organ system 5 42516 -UBERON:0012087 air capillary of parabronchus 4 42517 -UBERON:0013764 common crus of semicircular duct 4 42518 -UBERON:0034921 multi organ part structure 4 42519 -UBERON:0000403 scalp 5 42520 -UBERON:0001279 portal triad 5 42521 -UBERON:0001756 middle ear 5 42522 -UBERON:0001839 bony labyrinth 5 42523 -UBERON:0001844 cochlea 5 42524 -UBERON:0001846 internal ear 5 42525 -UBERON:0003110 otic region 5 42526 -UBERON:0003111 sphenoid region 5 42527 -UBERON:0003112 olfactory region 5 42528 -UBERON:0004090 periorbital region 5 42529 -UBERON:0004905 articulation 5 42530 -UBERON:0000982 skeletal joint 6 42531 -UBERON:0002001 joint of rib 7 42532 -UBERON:0001998 sternocostal joint 8 42533 -UBERON:0002002 interchondral joint 8 42534 -UBERON:0002292 costovertebral joint 8 42535 -UBERON:0011967 costotransverse joint 9 42536 -UBERON:0002293 costochondral joint 8 42537 -UBERON:0002217 synovial joint 7 42538 -UBERON:0000220 atlanto-occipital joint 8 42539 -UBERON:0001067 vertebral arch joint 8 42540 -UBERON:0016404 cervical vertebral arch joint 9 42541 -UBERON:0001998 sternocostal joint 8 42542 -UBERON:0002292 costovertebral joint 8 42543 -UBERON:0011967 costotransverse joint 9 42544 -UBERON:0011107 synovial joint of pelvic girdle 8 42545 -UBERON:0001365 sacro-iliac joint 9 42546 -UBERON:0001486 hip joint 9 42547 -UBERON:0011108 synovial joint of pectoral girdle 8 42548 -UBERON:0001469 sternoclavicular joint 9 42549 -UBERON:0001470 glenohumeral joint 9 42550 -UBERON:0003692 acromioclavicular joint 9 42551 -UBERON:0011120 laryngeal joint 8 42552 -UBERON:0011121 cricothyroid joint 9 42553 -UBERON:0011122 cricoarytenoid joint 9 42554 -UBERON:0011139 synovial limb joint 8 42555 -UBERON:0001470 glenohumeral joint 9 42556 -UBERON:0001485 knee joint 9 42557 -UBERON:0011123 stifle joint 10 42558 -UBERON:0001487 pes joint 9 42559 -UBERON:0003696 metatarsophalangeal joint 10 42560 -UBERON:0007750 metatarsophalangeal joint of pedal digit 1 11 42561 -UBERON:0007753 metatarsophalangeal joint of pedal digit 2 11 42562 -UBERON:0007756 metatarsophalangeal joint of pedal digit 3 11 42563 -UBERON:0007759 metatarsophalangeal joint of pedal digit 4 11 42564 -UBERON:0007762 metatarsophalangeal joint of pedal digit 5 11 42565 -UBERON:0007721 interphalangeal joint of pes 10 42566 -UBERON:0007724 interphalangeal joint of pedal digit 1 11 42567 -UBERON:0007725 interphalangeal joint of pedal digit 2 11 42568 -UBERON:0014672 distal interphalangeal joint of pedal digit 2 12 42569 -UBERON:0007726 interphalangeal joint of pedal digit 3 11 42570 -UBERON:0014507 distal interphalangeal joint of pedal digit 3 12 42571 -UBERON:0007727 interphalangeal joint of pedal digit 4 11 42572 -UBERON:0014674 distal interphalangeal joint of pedal digit 4 12 42573 -UBERON:0007728 interphalangeal joint of pedal digit 5 11 42574 -UBERON:0014675 distal interphalangeal joint of pedal digit 5 12 42575 -UBERON:0008447 intertarsal joint 10 42576 -UBERON:0003698 subtalar joint 11 42577 -UBERON:0011963 talocalcaneonavicular joint 12 42578 -UBERON:0011118 tarsometatarsal joint 10 42579 -UBERON:0011133 intermetatarsal joint 10 42580 -UBERON:0011962 transverse tarsal joint 10 42581 -UBERON:0011969 mesotarsal joint 10 42582 -UBERON:0011964 calcaneocuboid joint 11 42583 -UBERON:0001488 ankle joint 9 42584 -UBERON:0011980 crurotarsal joint 10 42585 -UBERON:0011969 mesotarsal joint 11 42586 -UBERON:0011964 calcaneocuboid joint 12 42587 -UBERON:0012076 tibiotalar joint 11 42588 -UBERON:0016882 intertarsal-type crurotarsal joint 10 42589 -UBERON:0001489 manus joint 9 42590 -UBERON:0001491 wrist joint 10 42591 -UBERON:0011968 radio-carpal joint 11 42592 -UBERON:0003695 metacarpophalangeal joint 10 42593 -UBERON:0007735 metacarpophalangeal joint of manual digit 1 11 42594 -UBERON:0007738 metacarpophalangeal joint of manual digit 2 11 42595 -UBERON:0007741 metacarpophalangeal joint of manual digit 3 11 42596 -UBERON:0007744 metacarpophalangeal joint of manual digit 4 11 42597 -UBERON:0007747 metacarpophalangeal joint of manual digit 5 11 42598 -UBERON:0007722 interphalangeal joint of manus 10 42599 -UBERON:0007723 interphalangeal joint of manual digit 1 11 42600 -UBERON:0007729 interphalangeal joint of manual digit 2 11 42601 -UBERON:0014668 distal interphalangeal joint of manual digit 2 12 42602 -UBERON:0007730 interphalangeal joint of manual digit 3 11 42603 -UBERON:0014508 distal interphalangeal joint of manual digit 3 12 42604 -UBERON:0007731 interphalangeal joint of manual digit 4 11 42605 -UBERON:0014670 distal interphalangeal joint of manual digit 4 12 42606 -UBERON:0007732 interphalangeal joint of manual digit 5 11 42607 -UBERON:0014671 distal interphalangeal joint of manural digit 5 12 42608 -UBERON:0016426 proximal interphalangeal joint of little finger 12 42609 -UBERON:0011119 carpometacarpal joint 10 42610 -UBERON:0011265 carpometacarpal joint of digit 1 11 42611 -UBERON:0011131 intermetacarpal joint 10 42612 -UBERON:0011132 intercarpal joint 10 42613 -UBERON:0011868 midcarpal joint 11 42614 -UBERON:0011869 pisiform joint 11 42615 -UBERON:0011870 pisotriquetral joint 11 42616 -UBERON:0001490 elbow joint 9 42617 -UBERON:0001528 radio-ulnar joint 9 42618 -UBERON:0007164 distal radio-ulnar joint 10 42619 -UBERON:0007165 proximal radio-ulnar joint 10 42620 -UBERON:0006658 interphalangeal joint 9 42621 -UBERON:0007721 interphalangeal joint of pes 10 42622 -UBERON:0007724 interphalangeal joint of pedal digit 1 11 42623 -UBERON:0007725 interphalangeal joint of pedal digit 2 11 42624 -UBERON:0014672 distal interphalangeal joint of pedal digit 2 12 42625 -UBERON:0007726 interphalangeal joint of pedal digit 3 11 42626 -UBERON:0014507 distal interphalangeal joint of pedal digit 3 12 42627 -UBERON:0007727 interphalangeal joint of pedal digit 4 11 42628 -UBERON:0014674 distal interphalangeal joint of pedal digit 4 12 42629 -UBERON:0007728 interphalangeal joint of pedal digit 5 11 42630 -UBERON:0014675 distal interphalangeal joint of pedal digit 5 12 42631 -UBERON:0007722 interphalangeal joint of manus 10 42632 -UBERON:0007723 interphalangeal joint of manual digit 1 11 42633 -UBERON:0007729 interphalangeal joint of manual digit 2 11 42634 -UBERON:0014668 distal interphalangeal joint of manual digit 2 12 42635 -UBERON:0007730 interphalangeal joint of manual digit 3 11 42636 -UBERON:0014508 distal interphalangeal joint of manual digit 3 12 42637 -UBERON:0007731 interphalangeal joint of manual digit 4 11 42638 -UBERON:0014670 distal interphalangeal joint of manual digit 4 12 42639 -UBERON:0007732 interphalangeal joint of manual digit 5 11 42640 -UBERON:0014671 distal interphalangeal joint of manural digit 5 12 42641 -UBERON:0016426 proximal interphalangeal joint of little finger 12 42642 -UBERON:0009767 proximal interphalangeal joint 10 42643 -UBERON:0016426 proximal interphalangeal joint of little finger 11 42644 -UBERON:0009768 distal interphalangeal joint 10 42645 -UBERON:0014506 distal interphalangeal joint of digit 3 11 42646 -UBERON:0014507 distal interphalangeal joint of pedal digit 3 12 42647 -UBERON:0014508 distal interphalangeal joint of manual digit 3 12 42648 -UBERON:0014677 distal interphalangeal joint of digit 2 11 42649 -UBERON:0014668 distal interphalangeal joint of manual digit 2 12 42650 -UBERON:0014672 distal interphalangeal joint of pedal digit 2 12 42651 -UBERON:0014679 distal interphalangeal joint of digit 4 11 42652 -UBERON:0014670 distal interphalangeal joint of manual digit 4 12 42653 -UBERON:0014674 distal interphalangeal joint of pedal digit 4 12 42654 -UBERON:0014680 distal interphalangeal joint of digit 5 11 42655 -UBERON:0014671 distal interphalangeal joint of manural digit 5 12 42656 -UBERON:0014675 distal interphalangeal joint of pedal digit 5 12 42657 -UBERON:0009005 femorotibial joint 9 42658 -UBERON:0009559 metacarpal/tarsal-phalangeal joint 9 42659 -UBERON:0011110 humeroulnar joint 9 42660 -UBERON:0011166 patellofemoral joint 9 42661 -UBERON:0011171 joint connecting upper and lower jaws 8 42662 -UBERON:0003700 temporomandibular joint 9 42663 -UBERON:0011170 quadrate-articular joint 9 42664 -UBERON:0011866 condylar joint 8 42665 -UBERON:0017157 exoccipital-atlas joint 8 42666 -UBERON:0018331 intraramal joint 8 42667 -UBERON:0036248 joint of auditory ossicle 8 42668 -UBERON:0036246 incudostapedial joint 9 42669 -UBERON:0036247 incudomallear joint 9 42670 -UBERON:0003657 limb joint 7 42671 -UBERON:0003839 forelimb joint 8 42672 -UBERON:0001489 manus joint 9 42673 -UBERON:0001491 wrist joint 10 42674 -UBERON:0011968 radio-carpal joint 11 42675 -UBERON:0003695 metacarpophalangeal joint 10 42676 -UBERON:0007735 metacarpophalangeal joint of manual digit 1 11 42677 -UBERON:0007738 metacarpophalangeal joint of manual digit 2 11 42678 -UBERON:0007741 metacarpophalangeal joint of manual digit 3 11 42679 -UBERON:0007744 metacarpophalangeal joint of manual digit 4 11 42680 -UBERON:0007747 metacarpophalangeal joint of manual digit 5 11 42681 -UBERON:0007722 interphalangeal joint of manus 10 42682 -UBERON:0007723 interphalangeal joint of manual digit 1 11 42683 -UBERON:0007729 interphalangeal joint of manual digit 2 11 42684 -UBERON:0014668 distal interphalangeal joint of manual digit 2 12 42685 -UBERON:0007730 interphalangeal joint of manual digit 3 11 42686 -UBERON:0014508 distal interphalangeal joint of manual digit 3 12 42687 -UBERON:0007731 interphalangeal joint of manual digit 4 11 42688 -UBERON:0014670 distal interphalangeal joint of manual digit 4 12 42689 -UBERON:0007732 interphalangeal joint of manual digit 5 11 42690 -UBERON:0014671 distal interphalangeal joint of manural digit 5 12 42691 -UBERON:0016426 proximal interphalangeal joint of little finger 12 42692 -UBERON:0011119 carpometacarpal joint 10 42693 -UBERON:0011265 carpometacarpal joint of digit 1 11 42694 -UBERON:0011131 intermetacarpal joint 10 42695 -UBERON:0011132 intercarpal joint 10 42696 -UBERON:0011868 midcarpal joint 11 42697 -UBERON:0011869 pisiform joint 11 42698 -UBERON:0011870 pisotriquetral joint 11 42699 -UBERON:0001490 elbow joint 9 42700 -UBERON:0001528 radio-ulnar joint 9 42701 -UBERON:0007164 distal radio-ulnar joint 10 42702 -UBERON:0007165 proximal radio-ulnar joint 10 42703 -UBERON:0011110 humeroulnar joint 9 42704 -UBERON:0011111 humeroradial joint 9 42705 -UBERON:0003840 hindlimb joint 8 42706 -UBERON:0001485 knee joint 9 42707 -UBERON:0011123 stifle joint 10 42708 -UBERON:0001487 pes joint 9 42709 -UBERON:0003696 metatarsophalangeal joint 10 42710 -UBERON:0007750 metatarsophalangeal joint of pedal digit 1 11 42711 -UBERON:0007753 metatarsophalangeal joint of pedal digit 2 11 42712 -UBERON:0007756 metatarsophalangeal joint of pedal digit 3 11 42713 -UBERON:0007759 metatarsophalangeal joint of pedal digit 4 11 42714 -UBERON:0007762 metatarsophalangeal joint of pedal digit 5 11 42715 -UBERON:0007721 interphalangeal joint of pes 10 42716 -UBERON:0007724 interphalangeal joint of pedal digit 1 11 42717 -UBERON:0007725 interphalangeal joint of pedal digit 2 11 42718 -UBERON:0014672 distal interphalangeal joint of pedal digit 2 12 42719 -UBERON:0007726 interphalangeal joint of pedal digit 3 11 42720 -UBERON:0014507 distal interphalangeal joint of pedal digit 3 12 42721 -UBERON:0007727 interphalangeal joint of pedal digit 4 11 42722 -UBERON:0014674 distal interphalangeal joint of pedal digit 4 12 42723 -UBERON:0007728 interphalangeal joint of pedal digit 5 11 42724 -UBERON:0014675 distal interphalangeal joint of pedal digit 5 12 42725 -UBERON:0008447 intertarsal joint 10 42726 -UBERON:0003698 subtalar joint 11 42727 -UBERON:0011963 talocalcaneonavicular joint 12 42728 -UBERON:0011118 tarsometatarsal joint 10 42729 -UBERON:0011133 intermetatarsal joint 10 42730 -UBERON:0011962 transverse tarsal joint 10 42731 -UBERON:0011969 mesotarsal joint 10 42732 -UBERON:0011964 calcaneocuboid joint 11 42733 -UBERON:0001488 ankle joint 9 42734 -UBERON:0011980 crurotarsal joint 10 42735 -UBERON:0011969 mesotarsal joint 11 42736 -UBERON:0011964 calcaneocuboid joint 12 42737 -UBERON:0012076 tibiotalar joint 11 42738 -UBERON:0016882 intertarsal-type crurotarsal joint 10 42739 -UBERON:0009005 femorotibial joint 9 42740 -UBERON:0011112 tibiofibular joint 9 42741 -UBERON:0011113 inferior tibiofibular joint 10 42742 -UBERON:0011117 superior tibiofibular joint 10 42743 -UBERON:0011166 patellofemoral joint 9 42744 -UBERON:0003841 autopod joint 8 42745 -UBERON:0001487 pes joint 9 42746 -UBERON:0003696 metatarsophalangeal joint 10 42747 -UBERON:0007750 metatarsophalangeal joint of pedal digit 1 11 42748 -UBERON:0007753 metatarsophalangeal joint of pedal digit 2 11 42749 -UBERON:0007756 metatarsophalangeal joint of pedal digit 3 11 42750 -UBERON:0007759 metatarsophalangeal joint of pedal digit 4 11 42751 -UBERON:0007762 metatarsophalangeal joint of pedal digit 5 11 42752 -UBERON:0007721 interphalangeal joint of pes 10 42753 -UBERON:0007724 interphalangeal joint of pedal digit 1 11 42754 -UBERON:0007725 interphalangeal joint of pedal digit 2 11 42755 -UBERON:0014672 distal interphalangeal joint of pedal digit 2 12 42756 -UBERON:0007726 interphalangeal joint of pedal digit 3 11 42757 -UBERON:0014507 distal interphalangeal joint of pedal digit 3 12 42758 -UBERON:0007727 interphalangeal joint of pedal digit 4 11 42759 -UBERON:0014674 distal interphalangeal joint of pedal digit 4 12 42760 -UBERON:0007728 interphalangeal joint of pedal digit 5 11 42761 -UBERON:0014675 distal interphalangeal joint of pedal digit 5 12 42762 -UBERON:0008447 intertarsal joint 10 42763 -UBERON:0003698 subtalar joint 11 42764 -UBERON:0011963 talocalcaneonavicular joint 12 42765 -UBERON:0011118 tarsometatarsal joint 10 42766 -UBERON:0011133 intermetatarsal joint 10 42767 -UBERON:0011962 transverse tarsal joint 10 42768 -UBERON:0011969 mesotarsal joint 10 42769 -UBERON:0011964 calcaneocuboid joint 11 42770 -UBERON:0001489 manus joint 9 42771 -UBERON:0001491 wrist joint 10 42772 -UBERON:0011968 radio-carpal joint 11 42773 -UBERON:0003695 metacarpophalangeal joint 10 42774 -UBERON:0007735 metacarpophalangeal joint of manual digit 1 11 42775 -UBERON:0007738 metacarpophalangeal joint of manual digit 2 11 42776 -UBERON:0007741 metacarpophalangeal joint of manual digit 3 11 42777 -UBERON:0007744 metacarpophalangeal joint of manual digit 4 11 42778 -UBERON:0007747 metacarpophalangeal joint of manual digit 5 11 42779 -UBERON:0007722 interphalangeal joint of manus 10 42780 -UBERON:0007723 interphalangeal joint of manual digit 1 11 42781 -UBERON:0007729 interphalangeal joint of manual digit 2 11 42782 -UBERON:0014668 distal interphalangeal joint of manual digit 2 12 42783 -UBERON:0007730 interphalangeal joint of manual digit 3 11 42784 -UBERON:0014508 distal interphalangeal joint of manual digit 3 12 42785 -UBERON:0007731 interphalangeal joint of manual digit 4 11 42786 -UBERON:0014670 distal interphalangeal joint of manual digit 4 12 42787 -UBERON:0007732 interphalangeal joint of manual digit 5 11 42788 -UBERON:0014671 distal interphalangeal joint of manural digit 5 12 42789 -UBERON:0016426 proximal interphalangeal joint of little finger 12 42790 -UBERON:0011119 carpometacarpal joint 10 42791 -UBERON:0011265 carpometacarpal joint of digit 1 11 42792 -UBERON:0011131 intermetacarpal joint 10 42793 -UBERON:0011132 intercarpal joint 10 42794 -UBERON:0011868 midcarpal joint 11 42795 -UBERON:0011869 pisiform joint 11 42796 -UBERON:0011870 pisotriquetral joint 11 42797 -UBERON:0006658 interphalangeal joint 9 42798 -UBERON:0007721 interphalangeal joint of pes 10 42799 -UBERON:0007724 interphalangeal joint of pedal digit 1 11 42800 -UBERON:0007725 interphalangeal joint of pedal digit 2 11 42801 -UBERON:0014672 distal interphalangeal joint of pedal digit 2 12 42802 -UBERON:0007726 interphalangeal joint of pedal digit 3 11 42803 -UBERON:0014507 distal interphalangeal joint of pedal digit 3 12 42804 -UBERON:0007727 interphalangeal joint of pedal digit 4 11 42805 -UBERON:0014674 distal interphalangeal joint of pedal digit 4 12 42806 -UBERON:0007728 interphalangeal joint of pedal digit 5 11 42807 -UBERON:0014675 distal interphalangeal joint of pedal digit 5 12 42808 -UBERON:0007722 interphalangeal joint of manus 10 42809 -UBERON:0007723 interphalangeal joint of manual digit 1 11 42810 -UBERON:0007729 interphalangeal joint of manual digit 2 11 42811 -UBERON:0014668 distal interphalangeal joint of manual digit 2 12 42812 -UBERON:0007730 interphalangeal joint of manual digit 3 11 42813 -UBERON:0014508 distal interphalangeal joint of manual digit 3 12 42814 -UBERON:0007731 interphalangeal joint of manual digit 4 11 42815 -UBERON:0014670 distal interphalangeal joint of manual digit 4 12 42816 -UBERON:0007732 interphalangeal joint of manual digit 5 11 42817 -UBERON:0014671 distal interphalangeal joint of manural digit 5 12 42818 -UBERON:0016426 proximal interphalangeal joint of little finger 12 42819 -UBERON:0009767 proximal interphalangeal joint 10 42820 -UBERON:0016426 proximal interphalangeal joint of little finger 11 42821 -UBERON:0009768 distal interphalangeal joint 10 42822 -UBERON:0014506 distal interphalangeal joint of digit 3 11 42823 -UBERON:0014507 distal interphalangeal joint of pedal digit 3 12 42824 -UBERON:0014508 distal interphalangeal joint of manual digit 3 12 42825 -UBERON:0014677 distal interphalangeal joint of digit 2 11 42826 -UBERON:0014668 distal interphalangeal joint of manual digit 2 12 42827 -UBERON:0014672 distal interphalangeal joint of pedal digit 2 12 42828 -UBERON:0014679 distal interphalangeal joint of digit 4 11 42829 -UBERON:0014670 distal interphalangeal joint of manual digit 4 12 42830 -UBERON:0014674 distal interphalangeal joint of pedal digit 4 12 42831 -UBERON:0014680 distal interphalangeal joint of digit 5 11 42832 -UBERON:0014671 distal interphalangeal joint of manural digit 5 12 42833 -UBERON:0014675 distal interphalangeal joint of pedal digit 5 12 42834 -UBERON:0009559 metacarpal/tarsal-phalangeal joint 9 42835 -UBERON:0011139 synovial limb joint 8 42836 -UBERON:0001470 glenohumeral joint 9 42837 -UBERON:0001485 knee joint 9 42838 -UBERON:0011123 stifle joint 10 42839 -UBERON:0001487 pes joint 9 42840 -UBERON:0003696 metatarsophalangeal joint 10 42841 -UBERON:0007750 metatarsophalangeal joint of pedal digit 1 11 42842 -UBERON:0007753 metatarsophalangeal joint of pedal digit 2 11 42843 -UBERON:0007756 metatarsophalangeal joint of pedal digit 3 11 42844 -UBERON:0007759 metatarsophalangeal joint of pedal digit 4 11 42845 -UBERON:0007762 metatarsophalangeal joint of pedal digit 5 11 42846 -UBERON:0007721 interphalangeal joint of pes 10 42847 -UBERON:0007724 interphalangeal joint of pedal digit 1 11 42848 -UBERON:0007725 interphalangeal joint of pedal digit 2 11 42849 -UBERON:0014672 distal interphalangeal joint of pedal digit 2 12 42850 -UBERON:0007726 interphalangeal joint of pedal digit 3 11 42851 -UBERON:0014507 distal interphalangeal joint of pedal digit 3 12 42852 -UBERON:0007727 interphalangeal joint of pedal digit 4 11 42853 -UBERON:0014674 distal interphalangeal joint of pedal digit 4 12 42854 -UBERON:0007728 interphalangeal joint of pedal digit 5 11 42855 -UBERON:0014675 distal interphalangeal joint of pedal digit 5 12 42856 -UBERON:0008447 intertarsal joint 10 42857 -UBERON:0003698 subtalar joint 11 42858 -UBERON:0011963 talocalcaneonavicular joint 12 42859 -UBERON:0011118 tarsometatarsal joint 10 42860 -UBERON:0011133 intermetatarsal joint 10 42861 -UBERON:0011962 transverse tarsal joint 10 42862 -UBERON:0011969 mesotarsal joint 10 42863 -UBERON:0011964 calcaneocuboid joint 11 42864 -UBERON:0001488 ankle joint 9 42865 -UBERON:0011980 crurotarsal joint 10 42866 -UBERON:0011969 mesotarsal joint 11 42867 -UBERON:0011964 calcaneocuboid joint 12 42868 -UBERON:0012076 tibiotalar joint 11 42869 -UBERON:0016882 intertarsal-type crurotarsal joint 10 42870 -UBERON:0001489 manus joint 9 42871 -UBERON:0001491 wrist joint 10 42872 -UBERON:0011968 radio-carpal joint 11 42873 -UBERON:0003695 metacarpophalangeal joint 10 42874 -UBERON:0007735 metacarpophalangeal joint of manual digit 1 11 42875 -UBERON:0007738 metacarpophalangeal joint of manual digit 2 11 42876 -UBERON:0007741 metacarpophalangeal joint of manual digit 3 11 42877 -UBERON:0007744 metacarpophalangeal joint of manual digit 4 11 42878 -UBERON:0007747 metacarpophalangeal joint of manual digit 5 11 42879 -UBERON:0007722 interphalangeal joint of manus 10 42880 -UBERON:0007723 interphalangeal joint of manual digit 1 11 42881 -UBERON:0007729 interphalangeal joint of manual digit 2 11 42882 -UBERON:0014668 distal interphalangeal joint of manual digit 2 12 42883 -UBERON:0007730 interphalangeal joint of manual digit 3 11 42884 -UBERON:0014508 distal interphalangeal joint of manual digit 3 12 42885 -UBERON:0007731 interphalangeal joint of manual digit 4 11 42886 -UBERON:0014670 distal interphalangeal joint of manual digit 4 12 42887 -UBERON:0007732 interphalangeal joint of manual digit 5 11 42888 -UBERON:0014671 distal interphalangeal joint of manural digit 5 12 42889 -UBERON:0016426 proximal interphalangeal joint of little finger 12 42890 -UBERON:0011119 carpometacarpal joint 10 42891 -UBERON:0011265 carpometacarpal joint of digit 1 11 42892 -UBERON:0011131 intermetacarpal joint 10 42893 -UBERON:0011132 intercarpal joint 10 42894 -UBERON:0011868 midcarpal joint 11 42895 -UBERON:0011869 pisiform joint 11 42896 -UBERON:0011870 pisotriquetral joint 11 42897 -UBERON:0001490 elbow joint 9 42898 -UBERON:0001528 radio-ulnar joint 9 42899 -UBERON:0007164 distal radio-ulnar joint 10 42900 -UBERON:0007165 proximal radio-ulnar joint 10 42901 -UBERON:0006658 interphalangeal joint 9 42902 -UBERON:0007721 interphalangeal joint of pes 10 42903 -UBERON:0007724 interphalangeal joint of pedal digit 1 11 42904 -UBERON:0007725 interphalangeal joint of pedal digit 2 11 42905 -UBERON:0014672 distal interphalangeal joint of pedal digit 2 12 42906 -UBERON:0007726 interphalangeal joint of pedal digit 3 11 42907 -UBERON:0014507 distal interphalangeal joint of pedal digit 3 12 42908 -UBERON:0007727 interphalangeal joint of pedal digit 4 11 42909 -UBERON:0014674 distal interphalangeal joint of pedal digit 4 12 42910 -UBERON:0007728 interphalangeal joint of pedal digit 5 11 42911 -UBERON:0014675 distal interphalangeal joint of pedal digit 5 12 42912 -UBERON:0007722 interphalangeal joint of manus 10 42913 -UBERON:0007723 interphalangeal joint of manual digit 1 11 42914 -UBERON:0007729 interphalangeal joint of manual digit 2 11 42915 -UBERON:0014668 distal interphalangeal joint of manual digit 2 12 42916 -UBERON:0007730 interphalangeal joint of manual digit 3 11 42917 -UBERON:0014508 distal interphalangeal joint of manual digit 3 12 42918 -UBERON:0007731 interphalangeal joint of manual digit 4 11 42919 -UBERON:0014670 distal interphalangeal joint of manual digit 4 12 42920 -UBERON:0007732 interphalangeal joint of manual digit 5 11 42921 -UBERON:0014671 distal interphalangeal joint of manural digit 5 12 42922 -UBERON:0016426 proximal interphalangeal joint of little finger 12 42923 -UBERON:0009767 proximal interphalangeal joint 10 42924 -UBERON:0016426 proximal interphalangeal joint of little finger 11 42925 -UBERON:0009768 distal interphalangeal joint 10 42926 -UBERON:0014506 distal interphalangeal joint of digit 3 11 42927 -UBERON:0014507 distal interphalangeal joint of pedal digit 3 12 42928 -UBERON:0014508 distal interphalangeal joint of manual digit 3 12 42929 -UBERON:0014677 distal interphalangeal joint of digit 2 11 42930 -UBERON:0014668 distal interphalangeal joint of manual digit 2 12 42931 -UBERON:0014672 distal interphalangeal joint of pedal digit 2 12 42932 -UBERON:0014679 distal interphalangeal joint of digit 4 11 42933 -UBERON:0014670 distal interphalangeal joint of manual digit 4 12 42934 -UBERON:0014674 distal interphalangeal joint of pedal digit 4 12 42935 -UBERON:0014680 distal interphalangeal joint of digit 5 11 42936 -UBERON:0014671 distal interphalangeal joint of manural digit 5 12 42937 -UBERON:0014675 distal interphalangeal joint of pedal digit 5 12 42938 -UBERON:0009005 femorotibial joint 9 42939 -UBERON:0009559 metacarpal/tarsal-phalangeal joint 9 42940 -UBERON:0011110 humeroulnar joint 9 42941 -UBERON:0011166 patellofemoral joint 9 42942 -UBERON:0003694 atlanto-axial joint 7 42943 -UBERON:0008114 joint of girdle 7 42944 -UBERON:0003699 pubic symphysis 8 42945 -UBERON:0011107 synovial joint of pelvic girdle 8 42946 -UBERON:0001365 sacro-iliac joint 9 42947 -UBERON:0001486 hip joint 9 42948 -UBERON:0011108 synovial joint of pectoral girdle 8 42949 -UBERON:0001469 sternoclavicular joint 9 42950 -UBERON:0001470 glenohumeral joint 9 42951 -UBERON:0003692 acromioclavicular joint 9 42952 -UBERON:2002040 inter-coracoid joint 8 42953 -UBERON:4200008 inter-clavicle joint 8 42954 -UBERON:0011134 nonsynovial joint 7 42955 -UBERON:0002209 fibrous joint 8 42956 -UBERON:0001035 dento-alveolar joint 9 42957 -UBERON:0002210 syndesmosis 9 42958 -UBERON:0002002 interchondral joint 10 42959 -UBERON:0011112 tibiofibular joint 10 42960 -UBERON:0011113 inferior tibiofibular joint 11 42961 -UBERON:0011117 superior tibiofibular joint 11 42962 -UBERON:0002215 synchondrosis 9 42963 -UBERON:0001725 cranial synchondrosis 10 42964 -UBERON:0011161 spheno-occipital synchondrosis 11 42965 -UBERON:0002293 costochondral joint 10 42966 -UBERON:0002216 symphysis 9 42967 -UBERON:0001468 intervertebral joint 10 42968 -UBERON:0011200 sacrococcygeal symphysis 11 42969 -UBERON:0017634 xenarthrale 11 42970 -UBERON:0003699 pubic symphysis 10 42971 -UBERON:0006606 mandibular symphysis 10 42972 -UBERON:0011124 xiphisternal joint 10 42973 -UBERON:0011966 manubriosternal joint 10 42974 -UBERON:0009198 craniofacial suture 9 42975 -UBERON:0003685 cranial suture 10 42976 -UBERON:0002489 coronal suture 11 42977 -UBERON:0002490 frontal suture 11 42978 -UBERON:0002491 lambdoid suture 11 42979 -UBERON:0002492 sagittal suture 11 42980 -UBERON:0003954 squamoparietal suture 11 42981 -UBERON:0004273 cartilaginous joint suture 11 42982 -UBERON:0010155 parietomastoid suture 11 42983 -UBERON:0010156 sphenofrontal suture 11 42984 -UBERON:0010157 sphenoparietal suture 11 42985 -UBERON:0010158 sphenozygomatic suture 11 42986 -UBERON:0010159 occipitomastoid suture 11 42987 -UBERON:0011871 nasomaxillary suture 11 42988 -UBERON:0016631 actinopterygian frontal-parietal joint 11 42989 -UBERON:0034909 intermaxillary suture 11 42990 -UBERON:0035127 suture of hard palate 11 42991 -UBERON:0016442 median palatine suture 12 42992 -UBERON:0035879 frontomaxillary suture 11 42993 -UBERON:0035880 zygomaticomaxillary suture 11 42994 -UBERON:0035881 ethmoidomaxillary suture 11 42995 -UBERON:0035882 sphenomaxillary suture 11 42996 -UBERON:0035883 lacrimomaxillary suture 11 42997 -UBERON:0035884 maxillary-premaxillary suture 11 42998 -UBERON:0005404 frontonasal suture 10 42999 -UBERON:0009199 facial suture 10 43000 -UBERON:0011160 nasal suture 11 43001 -UBERON:0009203 internasal suture 12 43002 -UBERON:0034909 intermaxillary suture 11 43003 -UBERON:2005245 inter-parietal joint 9 43004 -UBERON:4200215 suture 9 43005 -UBERON:0035122 interincisive suture 10 43006 -UBERON:0035123 palatomaxillary suture 10 43007 -UBERON:0035124 palatoethmoidal suture 10 43008 -UBERON:0035126 transverse palatine suture 10 43009 -UBERON:0002213 cartilaginous joint 8 43010 -UBERON:0002210 syndesmosis 9 43011 -UBERON:0002002 interchondral joint 10 43012 -UBERON:0011112 tibiofibular joint 10 43013 -UBERON:0011113 inferior tibiofibular joint 11 43014 -UBERON:0011117 superior tibiofibular joint 11 43015 -UBERON:0002215 synchondrosis 9 43016 -UBERON:0001725 cranial synchondrosis 10 43017 -UBERON:0011161 spheno-occipital synchondrosis 11 43018 -UBERON:0002293 costochondral joint 10 43019 -UBERON:0002216 symphysis 9 43020 -UBERON:0001468 intervertebral joint 10 43021 -UBERON:0011200 sacrococcygeal symphysis 11 43022 -UBERON:0017634 xenarthrale 11 43023 -UBERON:0003699 pubic symphysis 10 43024 -UBERON:0006606 mandibular symphysis 10 43025 -UBERON:0011124 xiphisternal joint 10 43026 -UBERON:0011966 manubriosternal joint 10 43027 -UBERON:0010361 synostosis 8 43028 -UBERON:0006768 epiphyseal line 9 43029 -UBERON:0011206 hinge joint 7 43030 -UBERON:0011873 synarthrosis 7 43031 -UBERON:0011874 amphiarthrosis 7 43032 -UBERON:0011965 saddle joint 7 43033 -UBERON:0012132 intercuneiform joint 7 43034 -UBERON:0012133 lateral-intermediate intercuneiform joint 8 43035 -UBERON:0012134 medial-intermediate intercuneiform joint 8 43036 -UBERON:0016884 shoulder joint 7 43037 -UBERON:0001470 glenohumeral joint 8 43038 -UBERON:0003692 acromioclavicular joint 8 43039 -UBERON:2001608 autopalatine-lateral ethmoid joint 7 43040 -UBERON:2001677 mesethmoid-nasal joint 7 43041 -UBERON:2001678 mesethmoid-frontal joint 7 43042 -UBERON:2001679 mesethmoid-lateral ethmoid joint 7 43043 -UBERON:2001680 mesethmoid-vomer joint 7 43044 -UBERON:2001710 opercle-interopercle joint 7 43045 -UBERON:2001711 frontal-pterotic joint 7 43046 -UBERON:2001749 dentary-anguloarticular joint 7 43047 -UBERON:2001784 autopalatine-vomer joint 7 43048 -UBERON:2001794 orbitosphenoid-prootic joint 7 43049 -UBERON:2001801 quadrate-hyomandibula joint 7 43050 -UBERON:2001803 quadrate-metapterygoid joint 7 43051 -UBERON:2001831 pterosphenoid-orbitosphenoid joint 7 43052 -UBERON:2001832 parasphenoid-basioccipital joint 7 43053 -UBERON:2001841 interhyal-epihyal joint 7 43054 -UBERON:2001842 epihyal-ceratohyal joint 7 43055 -UBERON:2001843 ceratohyal-dorsal hypohyal joint 7 43056 -UBERON:2001844 ceratohyal-ventral hypohyal joint 7 43057 -UBERON:2001845 dorsal hypohyal-ventral hypohyal joint 7 43058 -UBERON:2001846 inter-ventral hypohyal joint 7 43059 -UBERON:2001847 dorsal hypohyal-urohyal joint 7 43060 -UBERON:2001848 ventral hypohyal-urohyal joint 7 43061 -UBERON:2001849 epihyal-branchiostegal ray joint 7 43062 -UBERON:2001850 ceratohyal-branchiostegal ray joint 7 43063 -UBERON:2001860 epibranchial 4-upper pharyngeal toothplate joint 7 43064 -UBERON:2001861 epibranchial 3-pharyngobranchial 3 joint 7 43065 -UBERON:2001862 epibranchial 3-pharyngobranchial 4 joint 7 43066 -UBERON:2001863 inter-hypobranchial 3 joint 7 43067 -UBERON:2001922 inter-frontal joint 7 43068 -UBERON:2001939 inter-basipterygium joint 7 43069 -UBERON:2001940 vertebra 4-vertebra 5 joint 7 43070 -UBERON:2001941 orbitosphenoid-lateral ethmoid joint 7 43071 -UBERON:2001942 autopalatine-maxillary joint 7 43072 -UBERON:2001947 hyomandibular-otic region joint 7 43073 -UBERON:2001950 inter-premaxillary joint 7 43074 -UBERON:2001676 mesethmoid-premaxillary joint 8 43075 -UBERON:2002260 premaxillary-maxillary joint 8 43076 -UBERON:0035884 maxillary-premaxillary suture 9 43077 -UBERON:2001979 hyomandibula-metapterygoid joint 7 43078 -UBERON:2002032 lateral ethmoid-frontal joint 7 43079 -UBERON:2002033 prootic-pterosphenoid joint 7 43080 -UBERON:2002034 prootic-exoccipital joint 7 43081 -UBERON:2002038 basioccipital-exoccipital joint 7 43082 -UBERON:2002054 vertebra 5-vertebra 6 joint 7 43083 -UBERON:2002055 vertebra 6 - vertebra 7 joint 7 43084 -UBERON:2002059 posttemporal-parietal joint 7 43085 -UBERON:2002217 parasphenoid-pterosphenoid joint 7 43086 -UBERON:2002282 preopercle-opercle joint 7 43087 -UBERON:2005264 supraoccipital-parietal joint 7 43088 -UBERON:2005265 hyomandibula-opercle joint 7 43089 -UBERON:2005268 preopercle horizontal limb-symplectic joint 7 43090 -UBERON:2005278 preopercle vertical limb-hyomandibula joint 7 43091 -UBERON:4100113 dermal intracranial joint 7 43092 -UBERON:4300029 dermal neck joint 7 43093 -UBERON:4300202 endoskeletal cranial joint 7 43094 -UBERON:0018323 hyoid articular area 6 43095 -UBERON:0005352 spermatic cord 5 43096 -UBERON:0005902 occipital region 5 43097 -UBERON:0006496 external acoustic meatus osseus part 5 43098 -UBERON:0010212 laryngeal apparatus 5 43099 -UBERON:0011241 ethmoid region 5 43100 -UBERON:0013417 epicranium 5 43101 -UBERON:0016630 neurovascular bundle 5 43102 -UBERON:0017258 placentome of cotyledonary placenta 5 43103 -UBERON:0034772 margin of eyelid 5 43104 -UBERON:0034922 cell cluster 4 43105 -UBERON:0000006 islet of Langerhans 5 43106 -UBERON:0001306 cumulus oophorus 5 43107 -UBERON:0003987 Hassall's corpuscle 5 43108 -UBERON:0005176 tooth enamel organ 5 43109 -UBERON:0015842 incisor enamel organ 6 43110 -UBERON:0015843 molar enamel organ 6 43111 -UBERON:0006007 pre-Botzinger complex 5 43112 -UBERON:0008866 enamel knot 5 43113 -UBERON:0009842 glandular acinus 5 43114 -UBERON:0004179 prostate glandular acinus 6 43115 -UBERON:0011858 acinus of exocrine gland 6 43116 -UBERON:0001172 hepatic acinus 7 43117 -UBERON:0011846 acinus of sebaceous gland 7 43118 -UBERON:0004000 tarsal gland acinus 8 43119 -UBERON:0011854 acinus of areolar gland 8 43120 -UBERON:0011850 acinus of salivary gland 7 43121 -UBERON:0011847 acinus of parotid gland 8 43122 -UBERON:0011856 acinus of lactiferous gland 7 43123 -UBERON:0011854 acinus of areolar gland 8 43124 -UBERON:0011857 acinus of lacrimal gland 7 43125 -UBERON:0013232 serous acinus 7 43126 -UBERON:0001263 pancreatic acinus 8 43127 -UBERON:0011847 acinus of parotid gland 8 43128 -UBERON:0014717 mucous acinus 7 43129 -UBERON:0015785 acinus of olfactory gland 7 43130 -UBERON:0010001 cell cluster organ 5 43131 -UBERON:0000045 ganglion 6 43132 -UBERON:0001714 cranial ganglion 7 43133 -UBERON:0000395 cochlear ganglion 8 43134 -UBERON:0001675 trigeminal ganglion 8 43135 -UBERON:0002058 main ciliary ganglion 8 43136 -UBERON:0002824 vestibular ganglion 8 43137 -UBERON:0002827 vestibulocochlear ganglion 8 43138 -UBERON:0009127 epibranchial ganglion 8 43139 -UBERON:0001700 geniculate ganglion 9 43140 -UBERON:0001701 glossopharyngeal ganglion 9 43141 -UBERON:0003963 otic ganglion 10 43142 -UBERON:0005360 inferior glossopharyngeal IX ganglion 10 43143 -UBERON:0005361 superior glossopharyngeal IX ganglion 10 43144 -UBERON:0005362 vagus X ganglion 9 43145 -UBERON:0005363 inferior vagus X ganglion 10 43146 -UBERON:0005364 superior vagus X ganglion 10 43147 -UBERON:2001302 vagal ganglion 1 9 43148 -UBERON:2001303 vagal ganglion 2 9 43149 -UBERON:2001304 vagal ganglion 3 9 43150 -UBERON:2001305 vagal ganglion 4 9 43151 -UBERON:0009992 cranial sensory ganglion 8 43152 -UBERON:0012175 acoustico-facial VII-VIII ganglion complex 8 43153 -UBERON:0013498 vestibulo-cochlear VIII ganglion complex 8 43154 -UBERON:0013500 glossopharyngeal-vagus IX-X ganglion complex 8 43155 -UBERON:0035599 profundal part of trigeminal ganglion complex 8 43156 -UBERON:0035601 maxillomandibular part of trigeminal ganglion complex 8 43157 -UBERON:2000120 lateral line ganglion 8 43158 -UBERON:2001314 posterior lateral line ganglion 9 43159 -UBERON:2001391 anterior lateral line ganglion 9 43160 -UBERON:2001312 dorsal anterior lateral line ganglion 10 43161 -UBERON:2001313 ventral anterior lateral line ganglion 10 43162 -UBERON:2001483 middle lateral line ganglion 9 43163 -UBERON:0001800 sensory ganglion 7 43164 -UBERON:0000044 dorsal root ganglion 8 43165 -UBERON:0002834 cervical dorsal root ganglion 9 43166 -UBERON:0002838 first cervical dorsal root ganglion 10 43167 -UBERON:0002839 second cervical dorsal root ganglion 10 43168 -UBERON:0002840 third cervical dorsal root ganglion 10 43169 -UBERON:0002841 fourth cervical dorsal root ganglion 10 43170 -UBERON:0002842 fifth cervical dorsal root ganglion 10 43171 -UBERON:0002843 seventh cervical dorsal root ganglion 10 43172 -UBERON:0002844 eighth cervical dorsal root ganglion 10 43173 -UBERON:0007711 sixth cervical dorsal root ganglion 10 43174 -UBERON:0002835 thoracic dorsal root ganglion 9 43175 -UBERON:0002845 first thoracic dorsal root ganglion 10 43176 -UBERON:0002846 second thoracic dorsal root ganglion 10 43177 -UBERON:0002847 third thoracic dorsal root ganglion 10 43178 -UBERON:0002848 fifth thoracic dorsal root ganglion 10 43179 -UBERON:0002849 sixth thoracic dorsal root ganglion 10 43180 -UBERON:0002850 seventh thoracic dorsal root ganglion 10 43181 -UBERON:0002851 eighth thoracic dorsal root ganglion 10 43182 -UBERON:0002852 ninth thoracic dorsal root ganglion 10 43183 -UBERON:0002853 tenth thoracic dorsal root ganglion 10 43184 -UBERON:0002854 eleventh thoracic dorsal root ganglion 10 43185 -UBERON:0002855 twelfth thoracic dorsal root ganglion 10 43186 -UBERON:0007712 fourth thoracic spinal ganglion 10 43187 -UBERON:0002836 lumbar dorsal root ganglion 9 43188 -UBERON:0002856 second lumbar dorsal root ganglion 10 43189 -UBERON:0002857 first lumbar dorsal root ganglion 10 43190 -UBERON:0002858 third lumbar dorsal root ganglion 10 43191 -UBERON:0002859 fifth lumbar dorsal root ganglion 10 43192 -UBERON:0003943 fourth lumbar dorsal root ganglion 10 43193 -UBERON:0002837 sacral dorsal root ganglion 9 43194 -UBERON:0002860 first sacral dorsal root ganglion 10 43195 -UBERON:0002861 second sacral dorsal root ganglion 10 43196 -UBERON:0002862 third sacral dorsal root ganglion 10 43197 -UBERON:0002863 fifth sacral dorsal root ganglion 10 43198 -UBERON:0007713 fourth sacral spinal ganglion 10 43199 -UBERON:0001675 trigeminal ganglion 8 43200 -UBERON:0001700 geniculate ganglion 8 43201 -UBERON:0002824 vestibular ganglion 8 43202 -UBERON:0009992 cranial sensory ganglion 8 43203 -UBERON:0003338 ganglion of peripheral nervous system 7 43204 -UBERON:0001805 autonomic ganglion 8 43205 -UBERON:0001806 sympathetic ganglion 9 43206 -UBERON:0001807 paravertebral ganglion 10 43207 -UBERON:0000408 vertebral ganglion 11 43208 -UBERON:0000961 thoracic ganglion 11 43209 -UBERON:0002835 thoracic dorsal root ganglion 12 43210 -UBERON:0002845 first thoracic dorsal root ganglion 13 43211 -UBERON:0002846 second thoracic dorsal root ganglion 13 43212 -UBERON:0002847 third thoracic dorsal root ganglion 13 43213 -UBERON:0002848 fifth thoracic dorsal root ganglion 13 43214 -UBERON:0002849 sixth thoracic dorsal root ganglion 13 43215 -UBERON:0002850 seventh thoracic dorsal root ganglion 13 43216 -UBERON:0002851 eighth thoracic dorsal root ganglion 13 43217 -UBERON:0002852 ninth thoracic dorsal root ganglion 13 43218 -UBERON:0002853 tenth thoracic dorsal root ganglion 13 43219 -UBERON:0002854 eleventh thoracic dorsal root ganglion 13 43220 -UBERON:0002855 twelfth thoracic dorsal root ganglion 13 43221 -UBERON:0007712 fourth thoracic spinal ganglion 13 43222 -UBERON:0001991 cervical ganglion 11 43223 -UBERON:0001989 superior cervical ganglion 12 43224 -UBERON:0001990 middle cervical ganglion 12 43225 -UBERON:0002440 inferior cervical ganglion 12 43226 -UBERON:0002441 cervicothoracic ganglion 12 43227 -UBERON:0003964 prevertebral ganglion 10 43228 -UBERON:0002262 celiac ganglion 11 43229 -UBERON:0016508 pelvic ganglion 11 43230 -UBERON:0035769 mesenteric ganglion 11 43231 -UBERON:0005453 inferior mesenteric ganglion 12 43232 -UBERON:0005479 superior mesenteric ganglion 12 43233 -UBERON:0001808 parasympathetic ganglion 9 43234 -UBERON:0001809 enteric ganglion 10 43235 -UBERON:0002059 submandibular ganglion 10 43236 -UBERON:0003962 pterygopalatine ganglion 10 43237 -UBERON:0003963 otic ganglion 10 43238 -UBERON:0005407 sublingual ganglion 10 43239 -UBERON:0010128 future pterygopalatine ganglion 10 43240 -UBERON:0014463 cardiac ganglion 10 43241 -UBERON:0035783 ganglion of ciliary nerve 10 43242 -UBERON:0002058 main ciliary ganglion 11 43243 -UBERON:0035776 accessory ciliary ganglion 11 43244 -UBERON:0002824 vestibular ganglion 8 43245 -UBERON:0003339 ganglion of central nervous system 7 43246 -UBERON:6001920 insect embryonic/larval brain 8 43247 -UBERON:6003626 supraesophageal ganglion 8 43248 -UBERON:6110636 adult cerebral ganglion 9 43249 -UBERON:0007134 trunk ganglion 7 43250 -UBERON:0001807 paravertebral ganglion 8 43251 -UBERON:0000408 vertebral ganglion 9 43252 -UBERON:0000961 thoracic ganglion 9 43253 -UBERON:0002835 thoracic dorsal root ganglion 10 43254 -UBERON:0002845 first thoracic dorsal root ganglion 11 43255 -UBERON:0002846 second thoracic dorsal root ganglion 11 43256 -UBERON:0002847 third thoracic dorsal root ganglion 11 43257 -UBERON:0002848 fifth thoracic dorsal root ganglion 11 43258 -UBERON:0002849 sixth thoracic dorsal root ganglion 11 43259 -UBERON:0002850 seventh thoracic dorsal root ganglion 11 43260 -UBERON:0002851 eighth thoracic dorsal root ganglion 11 43261 -UBERON:0002852 ninth thoracic dorsal root ganglion 11 43262 -UBERON:0002853 tenth thoracic dorsal root ganglion 11 43263 -UBERON:0002854 eleventh thoracic dorsal root ganglion 11 43264 -UBERON:0002855 twelfth thoracic dorsal root ganglion 11 43265 -UBERON:0007712 fourth thoracic spinal ganglion 11 43266 -UBERON:0001991 cervical ganglion 9 43267 -UBERON:0001989 superior cervical ganglion 10 43268 -UBERON:0001990 middle cervical ganglion 10 43269 -UBERON:0002440 inferior cervical ganglion 10 43270 -UBERON:0002441 cervicothoracic ganglion 10 43271 -UBERON:0009758 abdominal ganglion 8 43272 -UBERON:0008939 pedal ganglion 7 43273 -UBERON:0008940 parietal ganglion 7 43274 -UBERON:0008941 pleural ganglion 7 43275 -UBERON:0008942 gastropod cerebral ganglion 7 43276 -UBERON:0008964 abdominal ganglion of visceral hump 7 43277 -UBERON:0013208 Grueneberg ganglion 7 43278 -UBERON:3011045 gasserian ganglion 7 43279 -UBERON:0010394 lymphocyte domain 6 43280 -UBERON:0010392 B cell domain 7 43281 -UBERON:0010416 lymph node B cell domain 8 43282 -UBERON:0010393 T cell domain 7 43283 -UBERON:0001960 periarterial lymphatic sheath 8 43284 -UBERON:0010387 Peyer's patch T cell area 8 43285 -UBERON:0010417 lymph node T cell domain 8 43286 -UBERON:0013730 mycetome 6 43287 -UBERON:0015245 septal olfactory organ 6 43288 -UBERON:0013208 Grueneberg ganglion 7 43289 -UBERON:0015246 septal organ of Masera 7 43290 -UBERON:0034978 paraganglion (generic) 6 43291 -UBERON:0012279 chromaffin paraganglion 7 43292 -UBERON:0001237 paraaortic body 8 43293 -UBERON:0034979 nonchromaffin paraganglion 7 43294 -UBERON:0001629 carotid body 8 43295 -UBERON:0034971 aortic body 8 43296 -UBERON:0034972 jugular body 8 43297 -UBERON:0034929 external soft tissue zone 4 43298 -UBERON:0000310 breast 5 43299 -UBERON:0016410 male breast 6 43300 -UBERON:0000341 throat 5 43301 -UBERON:0001300 scrotum 5 43302 -UBERON:0001567 cheek 5 43303 -UBERON:0001847 lobule of pinna 5 43304 -UBERON:0002032 areola 5 43305 -UBERON:0007827 external nose 5 43306 -UBERON:0009118 marsupium 5 43307 -UBERON:0009472 axilla 5 43308 -UBERON:0010858 inter limb-segment region 5 43309 -UBERON:0006012 interdigital region 6 43310 -UBERON:0006013 interdigital region between manual digits 7 43311 -UBERON:0006026 interdigital region between manual digits 1 and 2 8 43312 -UBERON:0006029 interdigital region between manual digits 2 and 3 8 43313 -UBERON:0006032 interdigital region between manual digits 3 and 4 8 43314 -UBERON:0006035 interdigital region between manual digits 4 and 5 8 43315 -UBERON:0008438 webbed interdigital region between manual digits 8 43316 -UBERON:0006014 interdigital region between pedal digits 7 43317 -UBERON:0006038 interdigital region between pedal digits 1 and 2 8 43318 -UBERON:0006041 interdigital region between pedal digits 2 and 3 8 43319 -UBERON:0006044 interdigital region between pedal digits 3 and 4 8 43320 -UBERON:0006047 interdigital region between pedal digits 4 and 5 8 43321 -UBERON:0008439 webbed interdigital region between pedal digits 8 43322 -UBERON:0006015 webbed interdigital region 7 43323 -UBERON:0008438 webbed interdigital region between manual digits 8 43324 -UBERON:0008439 webbed interdigital region between pedal digits 8 43325 -UBERON:0006016 interdigital region between digits 1 and 2 7 43326 -UBERON:0006026 interdigital region between manual digits 1 and 2 8 43327 -UBERON:0006038 interdigital region between pedal digits 1 and 2 8 43328 -UBERON:0006019 interdigital region between digits 2 and 3 7 43329 -UBERON:0006029 interdigital region between manual digits 2 and 3 8 43330 -UBERON:0006041 interdigital region between pedal digits 2 and 3 8 43331 -UBERON:0006022 interdigital region between digits 3 and 4 7 43332 -UBERON:0006032 interdigital region between manual digits 3 and 4 8 43333 -UBERON:0006044 interdigital region between pedal digits 3 and 4 8 43334 -UBERON:0006025 interdigital region between digits 4 and 5 7 43335 -UBERON:0006035 interdigital region between manual digits 4 and 5 8 43336 -UBERON:0006047 interdigital region between pedal digits 4 and 5 8 43337 -UBERON:0010862 dactylopatagium 7 43338 -UBERON:0010863 dactylopatagium brevis 8 43339 -UBERON:0010864 dactylopatagium minus 8 43340 -UBERON:0010865 dactylopatagium medius 8 43341 -UBERON:0010866 dactylopatagium major 8 43342 -UBERON:0010867 plagiopatagium 8 43343 -UBERON:0010861 propatagium 6 43344 -UBERON:0010868 uropropatagium 6 43345 -UBERON:0010867 plagiopatagium 7 43346 -UBERON:0013070 prepatagium 6 43347 -UBERON:0011374 prepuce 5 43348 -UBERON:0001332 prepuce of penis 6 43349 -UBERON:0005299 prepuce of clitoris 6 43350 -UBERON:0013691 buttock 5 43351 -UBERON:0017716 thenar eminence 5 43352 -UBERON:0017717 hypothenar eminence 5 43353 -UBERON:0017732 raphe of scrotum 5 43354 -UBERON:0017749 withers 5 43355 -UBERON:0018691 ventral side of post-anal tail 5 43356 -UBERON:0018692 dorsal side of post-anal tail 5 43357 -UBERON:0035104 raphe of penis 5 43358 -UBERON:0035106 raphe of perineum 5 43359 -UBERON:1000011 labial commissure 5 43360 -UBERON:1000012 nose anterior margin 5 43361 -UBERON:1000013 nose vertex 5 43362 -UBERON:1000016 tip of snout 5 43363 -UBERON:1000017 tip of external ear 5 43364 -UBERON:4300180 isthmus 5 43365 -UBERON:6000112 dorsal ectoderm 4 43366 -UBERON:6000119 anterior ectoderm 4 43367 -UBERON:6004540 basiproboscis 4 43368 -UBERON:6007046 dorsal ectoderm derivative 4 43369 -UBERON:6005037 tracheal primordium 5 43370 -UBERON:6005036 tracheal pit 6 43371 -UBERON:6005526 dorsal epidermis primordium 5 43372 -UBERON:0010314 structure with developmental contribution from neural crest 3 43373 -UBERON:0000004 nose 4 43374 -UBERON:0000007 pituitary gland 4 43375 -UBERON:0000011 parasympathetic nervous system 4 43376 -UBERON:0000019 camera-type eye 4 43377 -UBERON:0000054 macula 4 43378 -UBERON:0002212 macula of saccule of membranous labyrinth 5 43379 -UBERON:0002214 macula of utricle of membranous labyrinth 5 43380 -UBERON:2000116 macula lagena 5 43381 -UBERON:2000168 anterior macula 5 43382 -UBERON:2000234 macula neglecta 5 43383 -UBERON:2000558 posterior macula 5 43384 -UBERON:0000128 olivary body 4 43385 -UBERON:0000200 gyrus 4 43386 -UBERON:0002581 postcentral gyrus 5 43387 -UBERON:0002599 medial olfactory gyrus 5 43388 -UBERON:0002657 posterior parahippocampal gyrus 5 43389 -UBERON:0002665 supracallosal gyrus 5 43390 -UBERON:0002603 paraterminal gyrus 6 43391 -UBERON:0002686 angular gyrus 5 43392 -UBERON:0002688 supramarginal gyrus 5 43393 -UBERON:0002724 limen of insula 5 43394 -UBERON:0002740 posterior cingulate gyrus 5 43395 -UBERON:0002751 inferior temporal gyrus 5 43396 -UBERON:0002756 anterior cingulate gyrus 5 43397 -UBERON:0002766 fusiform gyrus 5 43398 -UBERON:0002769 superior temporal gyrus 5 43399 -UBERON:0002771 middle temporal gyrus 5 43400 -UBERON:0002967 cingulate gyrus 5 43401 -UBERON:0002973 parahippocampal gyrus 5 43402 -UBERON:0003939 transverse gyrus of Heschl 5 43403 -UBERON:0002773 anterior transverse temporal gyrus 6 43404 -UBERON:0002774 posterior transverse temporal gyrus 6 43405 -UBERON:0004671 gyrus rectus 5 43406 -UBERON:0006093 precuneus cortex 5 43407 -UBERON:0007190 paracentral gyrus 5 43408 -UBERON:0007191 anterior paracentral gyrus 6 43409 -UBERON:0007192 posterior paracentral gyrus 6 43410 -UBERON:0007193 orbital gyrus 5 43411 -UBERON:0002564 lateral orbital gyrus 6 43412 -UBERON:0002570 medial orbital gyrus 6 43413 -UBERON:0002575 posterior orbital gyrus 6 43414 -UBERON:0002644 intermediate orbital gyrus 6 43415 -UBERON:0009836 fronto-orbital gyrus 6 43416 -UBERON:0022244 anterior orbital gyrus 6 43417 -UBERON:0014640 occipital gyrus 5 43418 -UBERON:0002943 lingual gyrus 6 43419 -UBERON:0002948 superior occipital gyrus 6 43420 -UBERON:0006092 cuneus cortex 6 43421 -UBERON:0006114 lateral occipital cortex 6 43422 -UBERON:0014608 inferior occipital gyrus 6 43423 -UBERON:0026137 annectant gyrus 6 43424 -UBERON:0015593 frontal gyrus 5 43425 -UBERON:0002624 orbital part of inferior frontal gyrus 6 43426 -UBERON:0002661 superior frontal gyrus 6 43427 -UBERON:0002702 middle frontal gyrus 6 43428 -UBERON:0002703 precentral gyrus 6 43429 -UBERON:0002998 inferior frontal gyrus 6 43430 -UBERON:0004167 orbitofrontal cortex 6 43431 -UBERON:0006445 caudal middle frontal gyrus 6 43432 -UBERON:0006446 rostral middle frontal gyrus 6 43433 -UBERON:0009836 fronto-orbital gyrus 6 43434 -UBERON:0019280 rostral gyrus 5 43435 -UBERON:0035933 paracentral lobule 5 43436 -UBERON:0000203 pallium 4 43437 -UBERON:0000204 ventral part of telencephalon 4 43438 -UBERON:0000312 inner cambium layer of periosteum 4 43439 -UBERON:0000329 hair root 4 43440 -UBERON:0000388 epiglottis 4 43441 -UBERON:0000389 lens cortex 4 43442 -UBERON:0000390 lens nucleus 4 43443 -UBERON:0000411 visual cortex 4 43444 -UBERON:0000451 prefrontal cortex 4 43445 -UBERON:0000457 cavernous artery 4 43446 -UBERON:0000948 heart 4 43447 -UBERON:0000988 pons 4 43448 -UBERON:0001031 sheath of Schwann 4 43449 -UBERON:0001037 strand of hair 4 43450 -UBERON:0001702 eyelash 5 43451 -UBERON:0019254 upper eyelash 6 43452 -UBERON:0019255 lower eyelash 6 43453 -UBERON:0006378 strand of vibrissa hair 5 43454 -UBERON:0010509 strand of pelage hair 5 43455 -UBERON:0010510 strand of auchene hair 6 43456 -UBERON:0010511 strand of awl hair 6 43457 -UBERON:0010512 strand of guard hair 6 43458 -UBERON:0010513 strand of zigzag hair 6 43459 -UBERON:0013196 strand of wool 6 43460 -UBERON:0010514 strand of duvet hair 5 43461 -UBERON:0013494 keratin-coated spine 5 43462 -UBERON:0013495 barbed keratin-coated spine 6 43463 -UBERON:0013496 unbarbed keratin-coated spine 6 43464 -UBERON:0013698 strand of pubic hair 5 43465 -UBERON:0013699 strand of axillary hair 5 43466 -UBERON:0015144 autopod hair 5 43467 -UBERON:0015145 pes hair 6 43468 -UBERON:0015146 manus hair 6 43469 -UBERON:0015148 tail hair 5 43470 -UBERON:0015149 ventral hair 5 43471 -UBERON:0015150 dorsal hair 5 43472 -UBERON:0016446 hair of head 5 43473 -UBERON:0010171 strand of hair of face 6 43474 -UBERON:0011931 nasal hair 7 43475 -UBERON:0019254 upper eyelash 7 43476 -UBERON:0019255 lower eyelash 7 43477 -UBERON:0022279 strand of hair on external ear 6 43478 -UBERON:0015147 pinna hair 7 43479 -UBERON:0016447 hair of trunk 5 43480 -UBERON:0010513 strand of zigzag hair 6 43481 -UBERON:0022285 strand of tylotrich hair 5 43482 -UBERON:0001070 external carotid artery 4 43483 -UBERON:0001091 calcareous tooth 4 43484 -UBERON:0001098 incisor tooth 5 43485 -UBERON:0003450 upper jaw incisor 6 43486 -UBERON:0015847 upper left incisor tooth 7 43487 -UBERON:0015850 upper left incisor tusk 8 43488 -UBERON:0015851 upper right incisor tusk 7 43489 -UBERON:0015852 narwhal tusk 7 43490 -UBERON:0018591 upper primary incisor tooth 7 43491 -UBERON:0018593 upper central primary incisor tooth 8 43492 -UBERON:0018594 upper lateral primary incisor tooth 8 43493 -UBERON:0018603 upper central incisor tooth 7 43494 -UBERON:0016454 upper central secondary incisor tooth 8 43495 -UBERON:0018593 upper central primary incisor tooth 8 43496 -UBERON:0018604 upper lateral incisor tooth 7 43497 -UBERON:0016455 upper lateral secondary incisor tooth 8 43498 -UBERON:0018594 upper lateral primary incisor tooth 8 43499 -UBERON:0019253 upper secondary incisor tooth 7 43500 -UBERON:0016454 upper central secondary incisor tooth 8 43501 -UBERON:0016455 upper lateral secondary incisor tooth 8 43502 -UBERON:0003451 lower jaw incisor 6 43503 -UBERON:0017748 lower primary incisor tooth 7 43504 -UBERON:0018595 lower central primary incisor tooth 8 43505 -UBERON:0018596 lower lateral primary incisor tooth 8 43506 -UBERON:0018601 lower central incisor tooth 7 43507 -UBERON:0018568 lower central secondary incisor tooth 8 43508 -UBERON:0018595 lower central primary incisor tooth 8 43509 -UBERON:0018602 lower lateral incisor tooth 7 43510 -UBERON:0018570 lower lateral secondary incisor tooth 8 43511 -UBERON:0018596 lower lateral primary incisor tooth 8 43512 -UBERON:0018623 lower secondary incisor tooth 7 43513 -UBERON:0018568 lower central secondary incisor tooth 8 43514 -UBERON:0018570 lower lateral secondary incisor tooth 8 43515 -UBERON:0015848 incisor tusk 6 43516 -UBERON:0015850 upper left incisor tusk 7 43517 -UBERON:0015851 upper right incisor tusk 7 43518 -UBERON:0015852 narwhal tusk 7 43519 -UBERON:0016476 primary incisor tooth 6 43520 -UBERON:0017748 lower primary incisor tooth 7 43521 -UBERON:0018595 lower central primary incisor tooth 8 43522 -UBERON:0018596 lower lateral primary incisor tooth 8 43523 -UBERON:0018553 primary central incisor tooth 7 43524 -UBERON:0018593 upper central primary incisor tooth 8 43525 -UBERON:0018595 lower central primary incisor tooth 8 43526 -UBERON:0018554 primary lateral incisor tooth 7 43527 -UBERON:0018594 upper lateral primary incisor tooth 8 43528 -UBERON:0018596 lower lateral primary incisor tooth 8 43529 -UBERON:0018591 upper primary incisor tooth 7 43530 -UBERON:0018593 upper central primary incisor tooth 8 43531 -UBERON:0018594 upper lateral primary incisor tooth 8 43532 -UBERON:0018550 secondary incisor tooth 6 43533 -UBERON:0018623 lower secondary incisor tooth 7 43534 -UBERON:0018568 lower central secondary incisor tooth 8 43535 -UBERON:0018570 lower lateral secondary incisor tooth 8 43536 -UBERON:0019253 upper secondary incisor tooth 7 43537 -UBERON:0016454 upper central secondary incisor tooth 8 43538 -UBERON:0016455 upper lateral secondary incisor tooth 8 43539 -UBERON:0018551 central incisor tooth 6 43540 -UBERON:0018553 primary central incisor tooth 7 43541 -UBERON:0018593 upper central primary incisor tooth 8 43542 -UBERON:0018595 lower central primary incisor tooth 8 43543 -UBERON:0018601 lower central incisor tooth 7 43544 -UBERON:0018568 lower central secondary incisor tooth 8 43545 -UBERON:0018595 lower central primary incisor tooth 8 43546 -UBERON:0018603 upper central incisor tooth 7 43547 -UBERON:0016454 upper central secondary incisor tooth 8 43548 -UBERON:0018593 upper central primary incisor tooth 8 43549 -UBERON:0018552 lateral incisor tooth 6 43550 -UBERON:0018554 primary lateral incisor tooth 7 43551 -UBERON:0018594 upper lateral primary incisor tooth 8 43552 -UBERON:0018596 lower lateral primary incisor tooth 8 43553 -UBERON:0018602 lower lateral incisor tooth 7 43554 -UBERON:0018570 lower lateral secondary incisor tooth 8 43555 -UBERON:0018596 lower lateral primary incisor tooth 8 43556 -UBERON:0018604 upper lateral incisor tooth 7 43557 -UBERON:0016455 upper lateral secondary incisor tooth 8 43558 -UBERON:0018594 upper lateral primary incisor tooth 8 43559 -UBERON:0003267 tooth of upper jaw 5 43560 -UBERON:0011593 maxillary tooth 6 43561 -UBERON:0003666 upper jaw molar 7 43562 -UBERON:0013617 upper primary molar tooth 8 43563 -UBERON:0018588 upper first primary molar tooth 9 43564 -UBERON:0018599 upper second primary molar tooth 9 43565 -UBERON:0013619 upper secondary molar tooth 8 43566 -UBERON:0018575 upper first secondary molar tooth 9 43567 -UBERON:0018576 upper second secondary molar tooth 9 43568 -UBERON:0018577 upper third secondary molar tooth 9 43569 -UBERON:7500057 upper fourth secondary molar tooth 9 43570 -UBERON:0018302 upper molar 1 8 43571 -UBERON:0018575 upper first secondary molar tooth 9 43572 -UBERON:0018588 upper first primary molar tooth 9 43573 -UBERON:0012070 palatal tooth 6 43574 -UBERON:0004767 vomerine tooth 7 43575 -UBERON:0012073 tooth of palatine bone 7 43576 -UBERON:2001632 ectopterygoid tooth 7 43577 -UBERON:0016944 upper premolar tooth 6 43578 -UBERON:0016452 upper secondary premolar tooth 7 43579 -UBERON:0018571 upper first secondary premolar tooth 8 43580 -UBERON:0018572 upper second secondary premolar tooth 8 43581 -UBERON:7500058 upper fourth secondary premolar tooth 8 43582 -UBERON:7500059 upper third secondary premolar tooth 8 43583 -UBERON:0017271 upper primary premolar tooth 7 43584 -UBERON:0018301 upper deciduous premolar 5 8 43585 -UBERON:0018648 upper premolar 4 7 43586 -UBERON:0018613 secondary upper tooth 6 43587 -UBERON:0013619 upper secondary molar tooth 7 43588 -UBERON:0018575 upper first secondary molar tooth 8 43589 -UBERON:0018576 upper second secondary molar tooth 8 43590 -UBERON:0018577 upper third secondary molar tooth 8 43591 -UBERON:7500057 upper fourth secondary molar tooth 8 43592 -UBERON:0016452 upper secondary premolar tooth 7 43593 -UBERON:0018571 upper first secondary premolar tooth 8 43594 -UBERON:0018572 upper second secondary premolar tooth 8 43595 -UBERON:7500058 upper fourth secondary premolar tooth 8 43596 -UBERON:7500059 upper third secondary premolar tooth 8 43597 -UBERON:0018561 upper secondary canine tooth 7 43598 -UBERON:0019253 upper secondary incisor tooth 7 43599 -UBERON:0016454 upper central secondary incisor tooth 8 43600 -UBERON:0016455 upper lateral secondary incisor tooth 8 43601 -UBERON:0018616 primary upper tooth 6 43602 -UBERON:0013617 upper primary molar tooth 7 43603 -UBERON:0018588 upper first primary molar tooth 8 43604 -UBERON:0018599 upper second primary molar tooth 8 43605 -UBERON:0017271 upper primary premolar tooth 7 43606 -UBERON:0018301 upper deciduous premolar 5 8 43607 -UBERON:0018591 upper primary incisor tooth 7 43608 -UBERON:0018593 upper central primary incisor tooth 8 43609 -UBERON:0018594 upper lateral primary incisor tooth 8 43610 -UBERON:0018597 upper primary canine tooth 7 43611 -UBERON:0018621 upper canine tooth 6 43612 -UBERON:0018300 upper canine 1 7 43613 -UBERON:0018561 upper secondary canine tooth 7 43614 -UBERON:0018597 upper primary canine tooth 7 43615 -UBERON:2001626 premaxillary tooth 6 43616 -UBERON:0003450 upper jaw incisor 7 43617 -UBERON:0015847 upper left incisor tooth 8 43618 -UBERON:0015850 upper left incisor tusk 9 43619 -UBERON:0015851 upper right incisor tusk 8 43620 -UBERON:0015852 narwhal tusk 8 43621 -UBERON:0018591 upper primary incisor tooth 8 43622 -UBERON:0018593 upper central primary incisor tooth 9 43623 -UBERON:0018594 upper lateral primary incisor tooth 9 43624 -UBERON:0018603 upper central incisor tooth 8 43625 -UBERON:0016454 upper central secondary incisor tooth 9 43626 -UBERON:0018593 upper central primary incisor tooth 9 43627 -UBERON:0018604 upper lateral incisor tooth 8 43628 -UBERON:0016455 upper lateral secondary incisor tooth 9 43629 -UBERON:0018594 upper lateral primary incisor tooth 9 43630 -UBERON:0019253 upper secondary incisor tooth 8 43631 -UBERON:0016454 upper central secondary incisor tooth 9 43632 -UBERON:0016455 upper lateral secondary incisor tooth 9 43633 -UBERON:4300243 premaxillary tooth 2 7 43634 -UBERON:4300244 premaxillary tooth 3 7 43635 -UBERON:3000642 maxillopalatine tooth 6 43636 -UBERON:0003268 tooth of lower jaw 5 43637 -UBERON:0003451 lower jaw incisor 6 43638 -UBERON:0017748 lower primary incisor tooth 7 43639 -UBERON:0018595 lower central primary incisor tooth 8 43640 -UBERON:0018596 lower lateral primary incisor tooth 8 43641 -UBERON:0018601 lower central incisor tooth 7 43642 -UBERON:0018568 lower central secondary incisor tooth 8 43643 -UBERON:0018595 lower central primary incisor tooth 8 43644 -UBERON:0018602 lower lateral incisor tooth 7 43645 -UBERON:0018570 lower lateral secondary incisor tooth 8 43646 -UBERON:0018596 lower lateral primary incisor tooth 8 43647 -UBERON:0018623 lower secondary incisor tooth 7 43648 -UBERON:0018568 lower central secondary incisor tooth 8 43649 -UBERON:0018570 lower lateral secondary incisor tooth 8 43650 -UBERON:0011594 dentary tooth 6 43651 -UBERON:0003667 lower jaw molar 7 43652 -UBERON:0013620 lower primary molar tooth 8 43653 -UBERON:0018589 lower first primary molar tooth 9 43654 -UBERON:0018600 lower second primary molar tooth 9 43655 -UBERON:0013621 lower secondary molar tooth 8 43656 -UBERON:0018578 lower first secondary molar tooth 9 43657 -UBERON:0018579 lower second secondary molar tooth 9 43658 -UBERON:0018580 lower third secondary molar tooth 9 43659 -UBERON:7500052 lower fourth secondary molar tooth 9 43660 -UBERON:0018282 lower molar 3 8 43661 -UBERON:0018580 lower third secondary molar tooth 9 43662 -UBERON:4300246 dentary tooth 2 7 43663 -UBERON:4300247 dentary tooth 3 7 43664 -UBERON:0011603 coronoid tooth 6 43665 -UBERON:4200238 coronoid fang 7 43666 -UBERON:0016943 lower premolar tooth 6 43667 -UBERON:0016453 lower secondary premolar tooth 7 43668 -UBERON:0018573 lower first secondary premolar tooth 8 43669 -UBERON:0018574 lower second secondary premolar tooth 8 43670 -UBERON:7500053 lower fourth secondary premolar tooth 8 43671 -UBERON:7500054 lower third secondary premolar tooth 8 43672 -UBERON:0017272 lower primary premolar tooth 7 43673 -UBERON:0018281 lower deciduous premolar 5 8 43674 -UBERON:0018284 lower premolar 1 7 43675 -UBERON:0018573 lower first secondary premolar tooth 8 43676 -UBERON:0018285 lower premolar 2 7 43677 -UBERON:0018574 lower second secondary premolar tooth 8 43678 -UBERON:0018299 mandibular symphyseal tooth 6 43679 -UBERON:0018614 permanent lower tooth 6 43680 -UBERON:0013621 lower secondary molar tooth 7 43681 -UBERON:0018578 lower first secondary molar tooth 8 43682 -UBERON:0018579 lower second secondary molar tooth 8 43683 -UBERON:0018580 lower third secondary molar tooth 8 43684 -UBERON:7500052 lower fourth secondary molar tooth 8 43685 -UBERON:0016453 lower secondary premolar tooth 7 43686 -UBERON:0018573 lower first secondary premolar tooth 8 43687 -UBERON:0018574 lower second secondary premolar tooth 8 43688 -UBERON:7500053 lower fourth secondary premolar tooth 8 43689 -UBERON:7500054 lower third secondary premolar tooth 8 43690 -UBERON:0018562 lower secondary canine tooth 7 43691 -UBERON:0018623 lower secondary incisor tooth 7 43692 -UBERON:0018568 lower central secondary incisor tooth 8 43693 -UBERON:0018570 lower lateral secondary incisor tooth 8 43694 -UBERON:0018617 primary lower tooth 6 43695 -UBERON:0013620 lower primary molar tooth 7 43696 -UBERON:0018589 lower first primary molar tooth 8 43697 -UBERON:0018600 lower second primary molar tooth 8 43698 -UBERON:0017272 lower primary premolar tooth 7 43699 -UBERON:0018281 lower deciduous premolar 5 8 43700 -UBERON:0017748 lower primary incisor tooth 7 43701 -UBERON:0018595 lower central primary incisor tooth 8 43702 -UBERON:0018596 lower lateral primary incisor tooth 8 43703 -UBERON:0018598 lower primary canine tooth 7 43704 -UBERON:0018622 lower canine tooth 6 43705 -UBERON:0018562 lower secondary canine tooth 7 43706 -UBERON:0018598 lower primary canine tooth 7 43707 -UBERON:3000519 pseudodentary tooth 6 43708 -UBERON:0003674 cuspid 5 43709 -UBERON:0015849 canine tusk 6 43710 -UBERON:0018583 primary canine tooth 6 43711 -UBERON:0018597 upper primary canine tooth 7 43712 -UBERON:0018598 lower primary canine tooth 7 43713 -UBERON:0018584 secondary canine tooth 6 43714 -UBERON:0018561 upper secondary canine tooth 7 43715 -UBERON:0018562 lower secondary canine tooth 7 43716 -UBERON:0018621 upper canine tooth 6 43717 -UBERON:0018300 upper canine 1 7 43718 -UBERON:0018561 upper secondary canine tooth 7 43719 -UBERON:0018597 upper primary canine tooth 7 43720 -UBERON:0018622 lower canine tooth 6 43721 -UBERON:0018562 lower secondary canine tooth 7 43722 -UBERON:0018598 lower primary canine tooth 7 43723 -UBERON:0007115 deciduous tooth 5 43724 -UBERON:0009977 natal tooth 6 43725 -UBERON:0013616 primary molar tooth 6 43726 -UBERON:0013617 upper primary molar tooth 7 43727 -UBERON:0018588 upper first primary molar tooth 8 43728 -UBERON:0018599 upper second primary molar tooth 8 43729 -UBERON:0013620 lower primary molar tooth 7 43730 -UBERON:0018589 lower first primary molar tooth 8 43731 -UBERON:0018600 lower second primary molar tooth 8 43732 -UBERON:0018643 deciduous molar tooth 2 7 43733 -UBERON:0018599 upper second primary molar tooth 8 43734 -UBERON:0018600 lower second primary molar tooth 8 43735 -UBERON:0018644 deciduous molar tooth 1 7 43736 -UBERON:0018588 upper first primary molar tooth 8 43737 -UBERON:0018589 lower first primary molar tooth 8 43738 -UBERON:0016476 primary incisor tooth 6 43739 -UBERON:0017748 lower primary incisor tooth 7 43740 -UBERON:0018595 lower central primary incisor tooth 8 43741 -UBERON:0018596 lower lateral primary incisor tooth 8 43742 -UBERON:0018553 primary central incisor tooth 7 43743 -UBERON:0018593 upper central primary incisor tooth 8 43744 -UBERON:0018595 lower central primary incisor tooth 8 43745 -UBERON:0018554 primary lateral incisor tooth 7 43746 -UBERON:0018594 upper lateral primary incisor tooth 8 43747 -UBERON:0018596 lower lateral primary incisor tooth 8 43748 -UBERON:0018591 upper primary incisor tooth 7 43749 -UBERON:0018593 upper central primary incisor tooth 8 43750 -UBERON:0018594 upper lateral primary incisor tooth 8 43751 -UBERON:0017269 primary premolar tooth 6 43752 -UBERON:0017271 upper primary premolar tooth 7 43753 -UBERON:0018301 upper deciduous premolar 5 8 43754 -UBERON:0017272 lower primary premolar tooth 7 43755 -UBERON:0018281 lower deciduous premolar 5 8 43756 -UBERON:0018375 deciduous premolar 5 7 43757 -UBERON:0018281 lower deciduous premolar 5 8 43758 -UBERON:0018301 upper deciduous premolar 5 8 43759 -UBERON:0018583 primary canine tooth 6 43760 -UBERON:0018597 upper primary canine tooth 7 43761 -UBERON:0018598 lower primary canine tooth 7 43762 -UBERON:0018616 primary upper tooth 6 43763 -UBERON:0013617 upper primary molar tooth 7 43764 -UBERON:0018588 upper first primary molar tooth 8 43765 -UBERON:0018599 upper second primary molar tooth 8 43766 -UBERON:0017271 upper primary premolar tooth 7 43767 -UBERON:0018301 upper deciduous premolar 5 8 43768 -UBERON:0018591 upper primary incisor tooth 7 43769 -UBERON:0018593 upper central primary incisor tooth 8 43770 -UBERON:0018594 upper lateral primary incisor tooth 8 43771 -UBERON:0018597 upper primary canine tooth 7 43772 -UBERON:0018617 primary lower tooth 6 43773 -UBERON:0013620 lower primary molar tooth 7 43774 -UBERON:0018589 lower first primary molar tooth 8 43775 -UBERON:0018600 lower second primary molar tooth 8 43776 -UBERON:0017272 lower primary premolar tooth 7 43777 -UBERON:0018281 lower deciduous premolar 5 8 43778 -UBERON:0017748 lower primary incisor tooth 7 43779 -UBERON:0018595 lower central primary incisor tooth 8 43780 -UBERON:0018596 lower lateral primary incisor tooth 8 43781 -UBERON:0018598 lower primary canine tooth 7 43782 -UBERON:3010690 fetal tooth 6 43783 -UBERON:0007775 secondary tooth 5 43784 -UBERON:0013618 secondary molar tooth 6 43785 -UBERON:0013619 upper secondary molar tooth 7 43786 -UBERON:0018575 upper first secondary molar tooth 8 43787 -UBERON:0018576 upper second secondary molar tooth 8 43788 -UBERON:0018577 upper third secondary molar tooth 8 43789 -UBERON:7500057 upper fourth secondary molar tooth 8 43790 -UBERON:0013621 lower secondary molar tooth 7 43791 -UBERON:0018578 lower first secondary molar tooth 8 43792 -UBERON:0018579 lower second secondary molar tooth 8 43793 -UBERON:0018580 lower third secondary molar tooth 8 43794 -UBERON:7500052 lower fourth secondary molar tooth 8 43795 -UBERON:0018607 permanent molar tooth 2 7 43796 -UBERON:0018576 upper second secondary molar tooth 8 43797 -UBERON:0018579 lower second secondary molar tooth 8 43798 -UBERON:0018608 permanent molar tooth 1 7 43799 -UBERON:0018575 upper first secondary molar tooth 8 43800 -UBERON:0018578 lower first secondary molar tooth 8 43801 -UBERON:0017270 secondary premolar tooth 6 43802 -UBERON:0016452 upper secondary premolar tooth 7 43803 -UBERON:0018571 upper first secondary premolar tooth 8 43804 -UBERON:0018572 upper second secondary premolar tooth 8 43805 -UBERON:7500058 upper fourth secondary premolar tooth 8 43806 -UBERON:7500059 upper third secondary premolar tooth 8 43807 -UBERON:0016453 lower secondary premolar tooth 7 43808 -UBERON:0018573 lower first secondary premolar tooth 8 43809 -UBERON:0018574 lower second secondary premolar tooth 8 43810 -UBERON:7500053 lower fourth secondary premolar tooth 8 43811 -UBERON:7500054 lower third secondary premolar tooth 8 43812 -UBERON:0018550 secondary incisor tooth 6 43813 -UBERON:0018623 lower secondary incisor tooth 7 43814 -UBERON:0018568 lower central secondary incisor tooth 8 43815 -UBERON:0018570 lower lateral secondary incisor tooth 8 43816 -UBERON:0019253 upper secondary incisor tooth 7 43817 -UBERON:0016454 upper central secondary incisor tooth 8 43818 -UBERON:0016455 upper lateral secondary incisor tooth 8 43819 -UBERON:0018584 secondary canine tooth 6 43820 -UBERON:0018561 upper secondary canine tooth 7 43821 -UBERON:0018562 lower secondary canine tooth 7 43822 -UBERON:0018613 secondary upper tooth 6 43823 -UBERON:0013619 upper secondary molar tooth 7 43824 -UBERON:0018575 upper first secondary molar tooth 8 43825 -UBERON:0018576 upper second secondary molar tooth 8 43826 -UBERON:0018577 upper third secondary molar tooth 8 43827 -UBERON:7500057 upper fourth secondary molar tooth 8 43828 -UBERON:0016452 upper secondary premolar tooth 7 43829 -UBERON:0018571 upper first secondary premolar tooth 8 43830 -UBERON:0018572 upper second secondary premolar tooth 8 43831 -UBERON:7500058 upper fourth secondary premolar tooth 8 43832 -UBERON:7500059 upper third secondary premolar tooth 8 43833 -UBERON:0018561 upper secondary canine tooth 7 43834 -UBERON:0019253 upper secondary incisor tooth 7 43835 -UBERON:0016454 upper central secondary incisor tooth 8 43836 -UBERON:0016455 upper lateral secondary incisor tooth 8 43837 -UBERON:0018614 permanent lower tooth 6 43838 -UBERON:0013621 lower secondary molar tooth 7 43839 -UBERON:0018578 lower first secondary molar tooth 8 43840 -UBERON:0018579 lower second secondary molar tooth 8 43841 -UBERON:0018580 lower third secondary molar tooth 8 43842 -UBERON:7500052 lower fourth secondary molar tooth 8 43843 -UBERON:0016453 lower secondary premolar tooth 7 43844 -UBERON:0018573 lower first secondary premolar tooth 8 43845 -UBERON:0018574 lower second secondary premolar tooth 8 43846 -UBERON:7500053 lower fourth secondary premolar tooth 8 43847 -UBERON:7500054 lower third secondary premolar tooth 8 43848 -UBERON:0018562 lower secondary canine tooth 7 43849 -UBERON:0018623 lower secondary incisor tooth 7 43850 -UBERON:0018568 lower central secondary incisor tooth 8 43851 -UBERON:0018570 lower lateral secondary incisor tooth 8 43852 -UBERON:0007776 unerupted tooth 5 43853 -UBERON:0010879 tusk 5 43854 -UBERON:0015848 incisor tusk 6 43855 -UBERON:0015850 upper left incisor tusk 7 43856 -UBERON:0015851 upper right incisor tusk 7 43857 -UBERON:0015852 narwhal tusk 7 43858 -UBERON:0015849 canine tusk 6 43859 -UBERON:0013078 venom-injecting tooth 5 43860 -UBERON:0013164 molariform tooth 5 43861 -UBERON:0003655 molar tooth 6 43862 -UBERON:0003666 upper jaw molar 7 43863 -UBERON:0013617 upper primary molar tooth 8 43864 -UBERON:0018588 upper first primary molar tooth 9 43865 -UBERON:0018599 upper second primary molar tooth 9 43866 -UBERON:0013619 upper secondary molar tooth 8 43867 -UBERON:0018575 upper first secondary molar tooth 9 43868 -UBERON:0018576 upper second secondary molar tooth 9 43869 -UBERON:0018577 upper third secondary molar tooth 9 43870 -UBERON:7500057 upper fourth secondary molar tooth 9 43871 -UBERON:0018302 upper molar 1 8 43872 -UBERON:0018575 upper first secondary molar tooth 9 43873 -UBERON:0018588 upper first primary molar tooth 9 43874 -UBERON:0003667 lower jaw molar 7 43875 -UBERON:0013620 lower primary molar tooth 8 43876 -UBERON:0018589 lower first primary molar tooth 9 43877 -UBERON:0018600 lower second primary molar tooth 9 43878 -UBERON:0013621 lower secondary molar tooth 8 43879 -UBERON:0018578 lower first secondary molar tooth 9 43880 -UBERON:0018579 lower second secondary molar tooth 9 43881 -UBERON:0018580 lower third secondary molar tooth 9 43882 -UBERON:7500052 lower fourth secondary molar tooth 9 43883 -UBERON:0018282 lower molar 3 8 43884 -UBERON:0018580 lower third secondary molar tooth 9 43885 -UBERON:0013616 primary molar tooth 7 43886 -UBERON:0013617 upper primary molar tooth 8 43887 -UBERON:0018588 upper first primary molar tooth 9 43888 -UBERON:0018599 upper second primary molar tooth 9 43889 -UBERON:0013620 lower primary molar tooth 8 43890 -UBERON:0018589 lower first primary molar tooth 9 43891 -UBERON:0018600 lower second primary molar tooth 9 43892 -UBERON:0018643 deciduous molar tooth 2 8 43893 -UBERON:0018599 upper second primary molar tooth 9 43894 -UBERON:0018600 lower second primary molar tooth 9 43895 -UBERON:0018644 deciduous molar tooth 1 8 43896 -UBERON:0018588 upper first primary molar tooth 9 43897 -UBERON:0018589 lower first primary molar tooth 9 43898 -UBERON:0013618 secondary molar tooth 7 43899 -UBERON:0013619 upper secondary molar tooth 8 43900 -UBERON:0018575 upper first secondary molar tooth 9 43901 -UBERON:0018576 upper second secondary molar tooth 9 43902 -UBERON:0018577 upper third secondary molar tooth 9 43903 -UBERON:7500057 upper fourth secondary molar tooth 9 43904 -UBERON:0013621 lower secondary molar tooth 8 43905 -UBERON:0018578 lower first secondary molar tooth 9 43906 -UBERON:0018579 lower second secondary molar tooth 9 43907 -UBERON:0018580 lower third secondary molar tooth 9 43908 -UBERON:7500052 lower fourth secondary molar tooth 9 43909 -UBERON:0018607 permanent molar tooth 2 8 43910 -UBERON:0018576 upper second secondary molar tooth 9 43911 -UBERON:0018579 lower second secondary molar tooth 9 43912 -UBERON:0018608 permanent molar tooth 1 8 43913 -UBERON:0018575 upper first secondary molar tooth 9 43914 -UBERON:0018578 lower first secondary molar tooth 9 43915 -UBERON:0018376 molar tooth 1 7 43916 -UBERON:0018302 upper molar 1 8 43917 -UBERON:0018575 upper first secondary molar tooth 9 43918 -UBERON:0018588 upper first primary molar tooth 9 43919 -UBERON:0018608 permanent molar tooth 1 8 43920 -UBERON:0018575 upper first secondary molar tooth 9 43921 -UBERON:0018578 lower first secondary molar tooth 9 43922 -UBERON:0018644 deciduous molar tooth 1 8 43923 -UBERON:0018588 upper first primary molar tooth 9 43924 -UBERON:0018589 lower first primary molar tooth 9 43925 -UBERON:0018377 molar tooth 3 7 43926 -UBERON:0018282 lower molar 3 8 43927 -UBERON:0018580 lower third secondary molar tooth 9 43928 -UBERON:0018577 upper third secondary molar tooth 8 43929 -UBERON:0018606 molar tooth 2 7 43930 -UBERON:0018607 permanent molar tooth 2 8 43931 -UBERON:0018576 upper second secondary molar tooth 9 43932 -UBERON:0018579 lower second secondary molar tooth 9 43933 -UBERON:0018643 deciduous molar tooth 2 8 43934 -UBERON:0018599 upper second primary molar tooth 9 43935 -UBERON:0018600 lower second primary molar tooth 9 43936 -UBERON:7500055 molar tooth 4 7 43937 -UBERON:0007120 premolar tooth 6 43938 -UBERON:0016943 lower premolar tooth 7 43939 -UBERON:0016453 lower secondary premolar tooth 8 43940 -UBERON:0018573 lower first secondary premolar tooth 9 43941 -UBERON:0018574 lower second secondary premolar tooth 9 43942 -UBERON:7500053 lower fourth secondary premolar tooth 9 43943 -UBERON:7500054 lower third secondary premolar tooth 9 43944 -UBERON:0017272 lower primary premolar tooth 8 43945 -UBERON:0018281 lower deciduous premolar 5 9 43946 -UBERON:0018284 lower premolar 1 8 43947 -UBERON:0018573 lower first secondary premolar tooth 9 43948 -UBERON:0018285 lower premolar 2 8 43949 -UBERON:0018574 lower second secondary premolar tooth 9 43950 -UBERON:0016944 upper premolar tooth 7 43951 -UBERON:0016452 upper secondary premolar tooth 8 43952 -UBERON:0018571 upper first secondary premolar tooth 9 43953 -UBERON:0018572 upper second secondary premolar tooth 9 43954 -UBERON:7500058 upper fourth secondary premolar tooth 9 43955 -UBERON:7500059 upper third secondary premolar tooth 9 43956 -UBERON:0017271 upper primary premolar tooth 8 43957 -UBERON:0018301 upper deciduous premolar 5 9 43958 -UBERON:0018648 upper premolar 4 8 43959 -UBERON:0017269 primary premolar tooth 7 43960 -UBERON:0017271 upper primary premolar tooth 8 43961 -UBERON:0018301 upper deciduous premolar 5 9 43962 -UBERON:0017272 lower primary premolar tooth 8 43963 -UBERON:0018281 lower deciduous premolar 5 9 43964 -UBERON:0018375 deciduous premolar 5 8 43965 -UBERON:0018281 lower deciduous premolar 5 9 43966 -UBERON:0018301 upper deciduous premolar 5 9 43967 -UBERON:0017270 secondary premolar tooth 7 43968 -UBERON:0016452 upper secondary premolar tooth 8 43969 -UBERON:0018571 upper first secondary premolar tooth 9 43970 -UBERON:0018572 upper second secondary premolar tooth 9 43971 -UBERON:7500058 upper fourth secondary premolar tooth 9 43972 -UBERON:7500059 upper third secondary premolar tooth 9 43973 -UBERON:0016453 lower secondary premolar tooth 8 43974 -UBERON:0018573 lower first secondary premolar tooth 9 43975 -UBERON:0018574 lower second secondary premolar tooth 9 43976 -UBERON:7500053 lower fourth secondary premolar tooth 9 43977 -UBERON:7500054 lower third secondary premolar tooth 9 43978 -UBERON:0018294 premolar 1 7 43979 -UBERON:0018284 lower premolar 1 8 43980 -UBERON:0018573 lower first secondary premolar tooth 9 43981 -UBERON:0018571 upper first secondary premolar tooth 8 43982 -UBERON:0018640 premolar 2 7 43983 -UBERON:0018285 lower premolar 2 8 43984 -UBERON:0018574 lower second secondary premolar tooth 9 43985 -UBERON:0018572 upper second secondary premolar tooth 8 43986 -UBERON:0018646 premolar tooth 5 7 43987 -UBERON:0018375 deciduous premolar 5 8 43988 -UBERON:0018281 lower deciduous premolar 5 9 43989 -UBERON:0018301 upper deciduous premolar 5 9 43990 -UBERON:0018647 premolar tooth 4 7 43991 -UBERON:0018648 upper premolar 4 8 43992 -UBERON:7500053 lower fourth secondary premolar tooth 8 43993 -UBERON:7500056 premolar 3 7 43994 -UBERON:0018277 calcareous egg tooth 5 43995 -UBERON:0018296 replacement tooth 5 43996 -UBERON:2000694 ceratobranchial 5 tooth 5 43997 -UBERON:2001141 tooth 1V 6 43998 -UBERON:2001142 tooth 5V 6 43999 -UBERON:2001143 tooth 4V 6 44000 -UBERON:2001144 tooth 2V 6 44001 -UBERON:2001145 tooth 3V 6 44002 -UBERON:2001146 tooth 1MD 6 44003 -UBERON:2001147 tooth 2MD 6 44004 -UBERON:2001148 tooth 1D 6 44005 -UBERON:2001150 tooth 2D 6 44006 -UBERON:2001151 tooth 4MD 6 44007 -UBERON:2001152 tooth 3MD 6 44008 -UBERON:2001633 entopterygoid tooth 5 44009 -UBERON:2001649 basihyal tooth 5 44010 -UBERON:2001651 pharyngobranchial 2 tooth 5 44011 -UBERON:2001653 pharyngobranchial 3 tooth 5 44012 -UBERON:2001655 upper pharyngeal 4 tooth 5 44013 -UBERON:2001657 upper pharyngeal 5 tooth 5 44014 -UBERON:2001659 upper pharyngeal tooth 5 44015 -UBERON:2001660 basibranchial tooth 5 44016 -UBERON:2001663 basibranchial 4 tooth 5 44017 -UBERON:2001665 basibranchial 2 tooth 5 44018 -UBERON:2002258 trituration tooth 5 44019 -UBERON:3000388 parasphenoid tooth 5 44020 -UBERON:4300135 upper jaw symphyseal tooth 5 44021 -UBERON:4300233 mammiliform tooth 5 44022 -UBERON:0001105 clavicle bone 4 44023 -UBERON:0008255 right clavicle 5 44024 -UBERON:0008256 left clavicle 5 44025 -UBERON:0001133 cardiac muscle tissue 4 44026 -UBERON:0004492 cardiac muscle tissue of cardiac septum 5 44027 -UBERON:0003383 cardiac muscle tissue of interventricular septum 6 44028 -UBERON:0004491 cardiac muscle tissue of interatrial septum 6 44029 -UBERON:0002352 atrioventricular node 7 44030 -UBERON:0004493 cardiac muscle tissue of myocardium 5 44031 -UBERON:0002350 conducting system of heart 6 44032 -UBERON:2005074 central cardiac conduction system 7 44033 -UBERON:2005075 peripheral cardiac conduction system 7 44034 -UBERON:0002351 sinoatrial node 6 44035 -UBERON:0002352 atrioventricular node 6 44036 -UBERON:0004490 cardiac muscle tissue of atrium 6 44037 -UBERON:0003378 cardiac muscle of auricular region 7 44038 -UBERON:0009779 cardiac muscle tissue of right auricle 8 44039 -UBERON:0009780 cardiac muscle tissue of left auricle 8 44040 -UBERON:0003379 cardiac muscle of right atrium 7 44041 -UBERON:0009779 cardiac muscle tissue of right auricle 8 44042 -UBERON:0003380 cardiac muscle of left atrium 7 44043 -UBERON:0009780 cardiac muscle tissue of left auricle 8 44044 -UBERON:0005982 Bachmann's bundle 6 44045 -UBERON:0009966 internodal tract 6 44046 -UBERON:0015125 anterior internodal tract 7 44047 -UBERON:0015126 middle internodal tract 7 44048 -UBERON:0015127 posterior internodal tract 7 44049 -UBERON:0018649 cardiac muscle tissue of ventricle 6 44050 -UBERON:0002353 atrioventricular bundle 7 44051 -UBERON:0002354 cardiac Purkinje fiber 7 44052 -UBERON:0003381 cardiac muscle of right ventricle 7 44053 -UBERON:0004525 cardiac muscle tissue of trabecula carnea of right ventricle 8 44054 -UBERON:0003382 cardiac muscle of left ventricle 7 44055 -UBERON:0004526 cardiac muscle tissue of trabecula carnea of left ventricle 8 44056 -UBERON:0003452 trabecula carnea cardiac muscle tissue 7 44057 -UBERON:0004525 cardiac muscle tissue of trabecula carnea of right ventricle 8 44058 -UBERON:0004526 cardiac muscle tissue of trabecula carnea of left ventricle 8 44059 -UBERON:0004146 His-Purkinje system 7 44060 -UBERON:0004494 cardiac muscle tissue of papillary muscle 7 44061 -UBERON:0005986 left branch of atrioventricular bundle 7 44062 -UBERON:0005987 right branch of atrioventricular bundle 7 44063 -UBERON:0010131 conducting tissue of heart 5 44064 -UBERON:0002350 conducting system of heart 6 44065 -UBERON:2005074 central cardiac conduction system 7 44066 -UBERON:2005075 peripheral cardiac conduction system 7 44067 -UBERON:0002351 sinoatrial node 6 44068 -UBERON:0002352 atrioventricular node 6 44069 -UBERON:0002353 atrioventricular bundle 6 44070 -UBERON:0002354 cardiac Purkinje fiber 6 44071 -UBERON:0004146 His-Purkinje system 6 44072 -UBERON:0005982 Bachmann's bundle 6 44073 -UBERON:0005986 left branch of atrioventricular bundle 6 44074 -UBERON:0005987 right branch of atrioventricular bundle 6 44075 -UBERON:0009966 internodal tract 6 44076 -UBERON:0015125 anterior internodal tract 7 44077 -UBERON:0015126 middle internodal tract 7 44078 -UBERON:0015127 posterior internodal tract 7 44079 -UBERON:0001351 lacrimal sac 4 44080 -UBERON:0001384 primary motor cortex 4 44081 -UBERON:0001393 auditory cortex 4 44082 -UBERON:0009897 right auditory cortex 5 44083 -UBERON:0009898 left auditory cortex 5 44084 -UBERON:0001459 skin of external ear 4 44085 -UBERON:0012305 marginal cutaneous pouch of ear 5 44086 -UBERON:0001496 ascending aorta 4 44087 -UBERON:0001508 arch of aorta 4 44088 -UBERON:0001530 common carotid artery plus branches 4 44089 -UBERON:0001531 right common carotid artery plus branches 5 44090 -UBERON:0001536 left common carotid artery plus branches 5 44091 -UBERON:0003708 carotid sinus 5 44092 -UBERON:0001532 internal carotid artery 4 44093 -UBERON:0007142 left internal carotid artery 5 44094 -UBERON:0007143 right internal carotid artery 5 44095 -UBERON:0001557 upper respiratory tract 4 44096 -UBERON:0001577 facial muscle 4 44097 -UBERON:0001580 levator labii superioris 5 44098 -UBERON:0001581 depressor labii inferioris 5 44099 -UBERON:0001582 buccinator muscle 5 44100 -UBERON:0001599 stapedius muscle 5 44101 -UBERON:0005467 platysma 5 44102 -UBERON:0008522 nasal muscle 5 44103 -UBERON:0008588 procerus 6 44104 -UBERON:0008589 depressor septi nasi 6 44105 -UBERON:0010953 nasalis muscle 6 44106 -UBERON:0008591 depressor supercilii 5 44107 -UBERON:0008592 levator labii superioris alaeque nasi 5 44108 -UBERON:0008595 levator anguli oris 5 44109 -UBERON:0008596 mentalis muscle 5 44110 -UBERON:0008597 depressor anguli oris muscle 5 44111 -UBERON:0008598 risorius muscle 5 44112 -UBERON:0008609 transversus menti muscle 5 44113 -UBERON:0010437 zygomaticus muscle 5 44114 -UBERON:0008593 zygomaticus major muscle 6 44115 -UBERON:0008594 zygomaticus minor muscle 6 44116 -UBERON:0010933 orbicularis oris muscle 5 44117 -UBERON:0010944 posterior digastric muscle 5 44118 -UBERON:0011647 depressor mandibulae muscle 5 44119 -UBERON:0001595 auricular muscle 4 44120 -UBERON:0001583 extrinsic auricular muscle 5 44121 -UBERON:0011385 parotidoauricular muscle 6 44122 -UBERON:0018108 superior auricular muscle 6 44123 -UBERON:0018109 anterior auricular muscle 6 44124 -UBERON:0018110 posterior auricular muscle 6 44125 -UBERON:0001596 intrinsic auricular muscle 5 44126 -UBERON:0008603 helicis major 6 44127 -UBERON:0008604 helicis minor 6 44128 -UBERON:0008605 tragicus muscle 6 44129 -UBERON:0008606 antitragicus muscle 6 44130 -UBERON:0008607 transverse muscle of auricle 6 44131 -UBERON:0008608 oblique muscle of auricle 6 44132 -UBERON:0001605 ciliary muscle 4 44133 -UBERON:0001611 sublingual artery 4 44134 -UBERON:0001616 maxillary artery 4 44135 -UBERON:0001617 mental artery 4 44136 -UBERON:0001618 buccal artery 4 44137 -UBERON:0001619 ophthalmic artery 4 44138 -UBERON:0001622 lacrimal artery 4 44139 -UBERON:0001624 anterior cerebral artery 4 44140 -UBERON:0001627 middle cerebral artery 4 44141 -UBERON:0001628 posterior communicating artery 4 44142 -UBERON:0001642 superior sagittal sinus 4 44143 -UBERON:0001655 submental vein 4 44144 -UBERON:0001663 cerebral vein 4 44145 -UBERON:0001664 inferior cerebral vein 5 44146 -UBERON:0001672 anterior cerebral vein 5 44147 -UBERON:0006666 great cerebral vein 5 44148 -UBERON:0016559 superficial cerebral vein 5 44149 -UBERON:0035150 superior cerebral vein 6 44150 -UBERON:0016564 deep cerebral vein 5 44151 -UBERON:0035530 basal vein 6 44152 -UBERON:0035151 dorsal cerebral vein 5 44153 -UBERON:0035152 internal cerebral vein 5 44154 -UBERON:0035231 superficial middle cerebral vein 5 44155 -UBERON:0035532 deep middle cerebral vein 5 44156 -UBERON:0001678 temporal bone 4 44157 -UBERON:0001685 hyoid bone 4 44158 -UBERON:0001690 ear 4 44159 -UBERON:0035174 right ear 5 44160 -UBERON:0035295 left ear 5 44161 -UBERON:0001692 basioccipital bone 4 44162 -UBERON:0001693 exoccipital bone 4 44163 -UBERON:0001701 glossopharyngeal ganglion 4 44164 -UBERON:0003963 otic ganglion 5 44165 -UBERON:0005360 inferior glossopharyngeal IX ganglion 5 44166 -UBERON:0005361 superior glossopharyngeal IX ganglion 5 44167 -UBERON:0001709 upper jaw region 4 44168 -UBERON:4300133 upper jaw symphyseal region 5 44169 -UBERON:0001710 lower jaw region 4 44170 -UBERON:0001723 tongue 4 44171 -UBERON:0001736 submandibular gland 4 44172 -UBERON:0001741 corniculate cartilage 4 44173 -UBERON:0001747 parenchyma of thyroid gland 4 44174 -UBERON:0001757 pinna 4 44175 -UBERON:0001762 turbinate bone 4 44176 -UBERON:0003973 nasal concha of ethmoid bone 5 44177 -UBERON:0005919 supreme nasal concha 6 44178 -UBERON:0005920 superior nasal concha 6 44179 -UBERON:0005921 middle nasal concha 6 44180 -UBERON:0005922 inferior nasal concha 5 44181 -UBERON:0001768 uvea 4 44182 -UBERON:0001804 capsule of lens 4 44183 -UBERON:0001817 lacrimal gland 4 44184 -UBERON:0013226 accessory lacrimal gland 5 44185 -UBERON:0011186 Krause's gland 6 44186 -UBERON:0013224 Ciaccio's gland 6 44187 -UBERON:0013227 crypt of Henle 6 44188 -UBERON:0019324 intraorbital lacrimal gland 5 44189 -UBERON:0019325 exorbital lacrimal gland 5 44190 -UBERON:0001831 parotid gland 4 44191 -UBERON:0001834 upper lip 4 44192 -UBERON:0001835 lower lip 4 44193 -UBERON:0001839 bony labyrinth 4 44194 -UBERON:0001840 semicircular canal 4 44195 -UBERON:0001841 anterior semicircular canal 5 44196 -UBERON:0001842 posterior semicircular canal 5 44197 -UBERON:0001843 lateral semicircular canal 5 44198 -UBERON:3000057 canalis semicircularis anterior 5 44199 -UBERON:0001844 cochlea 4 44200 -UBERON:0001846 internal ear 4 44201 -UBERON:0001847 lobule of pinna 4 44202 -UBERON:0001848 auricular cartilage 4 44203 -UBERON:0001849 membranous labyrinth 4 44204 -UBERON:0001855 cochlear duct of membranous labyrinth 4 44205 -UBERON:0001856 semicircular duct 4 44206 -UBERON:0001857 anterior semicircular duct 5 44207 -UBERON:0001858 posterior semicircular duct 5 44208 -UBERON:0001859 lateral semicircular duct 5 44209 -UBERON:0001860 endolymphatic duct 4 44210 -UBERON:0001861 ductus reuniens 4 44211 -UBERON:0001862 vestibular labyrinth 4 44212 -UBERON:0001869 cerebral hemisphere 4 44213 -UBERON:0002812 left cerebral hemisphere 5 44214 -UBERON:0002813 right cerebral hemisphere 5 44215 -UBERON:0001885 dentate gyrus of hippocampal formation 4 44216 -UBERON:0001891 midbrain 4 44217 -UBERON:2007003 ventro-caudal cluster 5 44218 -UBERON:0001893 telencephalon 4 44219 -UBERON:0001894 diencephalon 4 44220 -UBERON:0001896 medulla oblongata 4 44221 -UBERON:0001950 neocortex 4 44222 -UBERON:0001953 presubiculum 4 44223 -UBERON:0001954 Ammon's horn 4 44224 -UBERON:0002012 pulmonary artery 4 44225 -UBERON:0002016 pulmonary vein 4 44226 -UBERON:0009030 left pulmonary vein 5 44227 -UBERON:0009032 right pulmonary vein 5 44228 -UBERON:0014904 intersegmental pulmonary vein 5 44229 -UBERON:0002025 stratum basale of epidermis 4 44230 -UBERON:0002028 hindbrain 4 44231 -UBERON:0002037 cerebellum 4 44232 -UBERON:0002046 thyroid gland 4 44233 -UBERON:0002061 truncus arteriosus 4 44234 -UBERON:0002067 dermis 4 44235 -UBERON:3010599 stratum spongiosum 5 44236 -UBERON:0002073 hair follicle 4 44237 -UBERON:0010419 vibrissa follicle 5 44238 -UBERON:0015252 coat hair follicle 5 44239 -UBERON:0002074 hair shaft 4 44240 -UBERON:0002076 cuticle of hair 4 44241 -UBERON:0002077 cortex of hair 4 44242 -UBERON:0002162 area postrema 4 44243 -UBERON:0002191 subiculum 4 44244 -UBERON:0002196 adenohypophysis 4 44245 -UBERON:0002219 subfornical organ 4 44246 -UBERON:0002226 basilar membrane of cochlea 4 44247 -UBERON:0002227 spiral organ of cochlea 4 44248 -UBERON:0002233 tectorial membrane of cochlea 4 44249 -UBERON:0002240 spinal cord 4 44250 -UBERON:0002264 olfactory bulb 4 44251 -UBERON:0002276 lamina of spiral limbus 4 44252 -UBERON:0002279 vestibular aqueduct 4 44253 -UBERON:0002280 otolith 4 44254 -UBERON:2000315 asteriscus 5 44255 -UBERON:2000530 lapillus 5 44256 -UBERON:2000676 sagitta 5 44257 -UBERON:0002281 vestibular membrane of cochlear duct 4 44258 -UBERON:0002282 stria vascularis of cochlear duct 4 44259 -UBERON:0002285 telencephalic ventricle 4 44260 -UBERON:0002651 anterior horn of lateral ventricle 5 44261 -UBERON:0002655 body of lateral ventricle 5 44262 -UBERON:0004672 posterior horn lateral ventricle 5 44263 -UBERON:0013161 left lateral ventricle 5 44264 -UBERON:0013162 right lateral ventricle 5 44265 -UBERON:0002289 midbrain cerebral aqueduct 4 44266 -UBERON:0002290 choroid plexus of fourth ventricle 4 44267 -UBERON:0002291 central canal of spinal cord 4 44268 -UBERON:0002298 brainstem 4 44269 -UBERON:0002307 choroid plexus of lateral ventricle 4 44270 -UBERON:0002334 submandibular duct 4 44271 -UBERON:0002342 neural crest 4 44272 -UBERON:0003849 mesencephalic neural crest 5 44273 -UBERON:0003850 telencephalon neural crest 5 44274 -UBERON:0003851 diencephalon neural crest 5 44275 -UBERON:0003852 rhombencephalon neural crest 5 44276 -UBERON:0003853 spinal cord neural crest 5 44277 -UBERON:3010587 hyoid arch neural crest 5 44278 -UBERON:0002349 myocardium 4 44279 -UBERON:0001083 myocardium of ventricle 5 44280 -UBERON:0006566 left ventricle myocardium 6 44281 -UBERON:0036290 myocardium of anterior wall of left ventricle 7 44282 -UBERON:0006567 right ventricle myocardium 6 44283 -UBERON:0036291 myocardium of anterior wall of right ventricle 7 44284 -UBERON:0002302 myocardium of atrium 5 44285 -UBERON:0004265 outflow tract myocardium 5 44286 -UBERON:0005248 bulbus cordis myocardium 5 44287 -UBERON:0002360 meninx 4 44288 -UBERON:0000391 leptomeninx 5 44289 -UBERON:0002361 pia mater 6 44290 -UBERON:0003549 brain pia mater 7 44291 -UBERON:0003550 forebrain pia mater 8 44292 -UBERON:0003552 telencephalon pia mater 9 44293 -UBERON:0003553 diencephalon pia mater 9 44294 -UBERON:0003551 midbrain pia mater 8 44295 -UBERON:0003554 hindbrain pia mater 8 44296 -UBERON:0003555 spinal cord pia mater 7 44297 -UBERON:0002362 arachnoid mater 6 44298 -UBERON:0003556 forebrain arachnoid mater 7 44299 -UBERON:0003558 diencephalon arachnoid mater 8 44300 -UBERON:0005400 telencephalon arachnoid mater 8 44301 -UBERON:0003557 midbrain arachnoid mater 7 44302 -UBERON:0003559 hindbrain arachnoid mater 7 44303 -UBERON:0003560 spinal cord arachnoid mater 7 44304 -UBERON:0005397 brain arachnoid mater 7 44305 -UBERON:0002363 dura mater 5 44306 -UBERON:0002092 brain dura mater 6 44307 -UBERON:0003561 forebrain dura mater 7 44308 -UBERON:0003563 telencephalon dura mater 8 44309 -UBERON:0003564 diencephalon dura mater 8 44310 -UBERON:0003562 midbrain dura mater 7 44311 -UBERON:0003565 hindbrain dura mater 7 44312 -UBERON:0002093 spinal dura mater 6 44313 -UBERON:0003292 meninx of spinal cord 5 44314 -UBERON:0002093 spinal dura mater 6 44315 -UBERON:0003555 spinal cord pia mater 6 44316 -UBERON:0003560 spinal cord arachnoid mater 6 44317 -UBERON:0003547 brain meninx 5 44318 -UBERON:0002092 brain dura mater 6 44319 -UBERON:0003561 forebrain dura mater 7 44320 -UBERON:0003563 telencephalon dura mater 8 44321 -UBERON:0003564 diencephalon dura mater 8 44322 -UBERON:0003562 midbrain dura mater 7 44323 -UBERON:0003565 hindbrain dura mater 7 44324 -UBERON:0003288 meninx of midbrain 6 44325 -UBERON:0003551 midbrain pia mater 7 44326 -UBERON:0003557 midbrain arachnoid mater 7 44327 -UBERON:0003562 midbrain dura mater 7 44328 -UBERON:0003291 meninx of hindbrain 6 44329 -UBERON:0003554 hindbrain pia mater 7 44330 -UBERON:0003559 hindbrain arachnoid mater 7 44331 -UBERON:0003565 hindbrain dura mater 7 44332 -UBERON:0003548 forebrain meninges 6 44333 -UBERON:0003289 meninx of telencephalon 7 44334 -UBERON:0003552 telencephalon pia mater 8 44335 -UBERON:0003563 telencephalon dura mater 8 44336 -UBERON:0005400 telencephalon arachnoid mater 8 44337 -UBERON:0003290 meninx of diencephalon 7 44338 -UBERON:0003553 diencephalon pia mater 8 44339 -UBERON:0003558 diencephalon arachnoid mater 8 44340 -UBERON:0003564 diencephalon dura mater 8 44341 -UBERON:0003550 forebrain pia mater 7 44342 -UBERON:0003552 telencephalon pia mater 8 44343 -UBERON:0003553 diencephalon pia mater 8 44344 -UBERON:0003556 forebrain arachnoid mater 7 44345 -UBERON:0003558 diencephalon arachnoid mater 8 44346 -UBERON:0005400 telencephalon arachnoid mater 8 44347 -UBERON:0003561 forebrain dura mater 7 44348 -UBERON:0003563 telencephalon dura mater 8 44349 -UBERON:0003564 diencephalon dura mater 8 44350 -UBERON:0003549 brain pia mater 6 44351 -UBERON:0003550 forebrain pia mater 7 44352 -UBERON:0003552 telencephalon pia mater 8 44353 -UBERON:0003553 diencephalon pia mater 8 44354 -UBERON:0003551 midbrain pia mater 7 44355 -UBERON:0003554 hindbrain pia mater 7 44356 -UBERON:0005397 brain arachnoid mater 6 44357 -UBERON:0002364 tympanic membrane 4 44358 -UBERON:0002373 palatine tonsil 4 44359 -UBERON:0002392 nasolacrimal duct 4 44360 -UBERON:0002393 pharyngotympanic tube 4 44361 -UBERON:0002421 hippocampal formation 4 44362 -UBERON:0002422 fourth ventricle 4 44363 -UBERON:0002488 helix of outer ear 4 44364 -UBERON:0002499 cochlear labyrinth 4 44365 -UBERON:0002505 spiral modiolar artery 4 44366 -UBERON:0002511 trabecula carnea 4 44367 -UBERON:0006570 trabecula carnea of right ventricle 5 44368 -UBERON:0006571 trabecula carnea of left ventricle 5 44369 -UBERON:0006828 trabecula carnea of atrium 5 44370 -UBERON:0002518 otolith organ 4 44371 -UBERON:0001853 utricle of membranous labyrinth 5 44372 -UBERON:0001854 saccule of membranous labyrinth 5 44373 -UBERON:0002519 otolithic part of statoconial membrane 4 44374 -UBERON:0002539 pharyngeal arch 4 44375 -UBERON:0003066 pharyngeal arch 2 5 44376 -UBERON:0003114 pharyngeal arch 3 5 44377 -UBERON:0003115 pharyngeal arch 4 5 44378 -UBERON:0003116 pharyngeal arch 5 5 44379 -UBERON:0003117 pharyngeal arch 6 5 44380 -UBERON:0004362 pharyngeal arch 1 5 44381 -UBERON:0008896 post-hyoid pharyngeal arch 5 44382 -UBERON:0011087 pharyngeal arch 7 6 44383 -UBERON:0011638 pharyngeal arch 8 6 44384 -UBERON:0002560 temporal operculum 4 44385 -UBERON:0002567 basal part of pons 4 44386 -UBERON:0002590 prepyriform area 4 44387 -UBERON:0002593 orbital operculum 4 44388 -UBERON:0002601 fasciolar gyrus 4 44389 -UBERON:0002605 precentral operculum 4 44390 -UBERON:0002629 triangular part of inferior frontal gyrus 4 44391 -UBERON:0002728 entorhinal cortex 4 44392 -UBERON:0002738 isthmus of cingulate gyrus 4 44393 -UBERON:0002749 regional part of cerebellar cortex 4 44394 -UBERON:0002245 cerebellar hemisphere 5 44395 -UBERON:0014889 left hemisphere of cerebellum 6 44396 -UBERON:0014890 right hemisphere of cerebellum 6 44397 -UBERON:0004004 cerebellum lobule 5 44398 -UBERON:0004003 cerebellum hemisphere lobule 6 44399 -UBERON:0003013 alar central lobule 7 44400 -UBERON:0003015 anterior quadrangular lobule 7 44401 -UBERON:0005347 copula pyramidis 7 44402 -UBERON:0005348 ansiform lobule 7 44403 -UBERON:0005976 ansiform lobule crus I 8 44404 -UBERON:0005977 ansiform lobule crus II 8 44405 -UBERON:0005350 lobule simplex 7 44406 -UBERON:0005351 paraflocculus 7 44407 -UBERON:0006121 hemispheric lobule VIII 7 44408 -UBERON:0023998 cerebellum hemispheric lobule II 7 44409 -UBERON:0023999 cerebellum hemispheric lobule III 7 44410 -UBERON:0024000 cerebellum hemispheric lobule IV 7 44411 -UBERON:0024001 cerebellum hemispheric lobule V 7 44412 -UBERON:0024003 cerebellum hemispheric lobule VII 7 44413 -UBERON:0024009 cerebellum hemispheric lobule X 7 44414 -UBERON:0027285 paravermis lobule area 7 44415 -UBERON:0028918 paravermic lobule II 8 44416 -UBERON:0028919 paravermic lobule III 8 44417 -UBERON:0028920 paravermic lobule IV 8 44418 -UBERON:0028921 paravermic lobule IX 8 44419 -UBERON:0028922 paravermic lobule V 8 44420 -UBERON:0028923 paravermic lobule VI 8 44421 -UBERON:0028924 paravermic lobule VII 8 44422 -UBERON:0028925 paravermic lobule VIII 8 44423 -UBERON:0036043 paravermic lobule X 8 44424 -UBERON:0036063 quadrangular lobule 7 44425 -UBERON:0004070 cerebellum vermis lobule 6 44426 -UBERON:0003021 central lobule 7 44427 -UBERON:0004074 cerebellum vermis lobule I 7 44428 -UBERON:0004075 cerebellum vermis lobule II 7 44429 -UBERON:0004076 cerebellum vermis lobule III 7 44430 -UBERON:0004077 cerebellum vermis lobule IV 7 44431 -UBERON:0004078 cerebellum vermis lobule IX 7 44432 -UBERON:0004079 cerebellum vermis lobule V 7 44433 -UBERON:0004080 cerebellum vermis lobule VI 7 44434 -UBERON:0004081 cerebellum vermis lobule VII 7 44435 -UBERON:0005345 cerebellum vermis lobule VIIA 8 44436 -UBERON:0005346 cerebellum vermis lobule VIIB 8 44437 -UBERON:0004082 cerebellum vermis lobule VIII 7 44438 -UBERON:0004083 cerebellum vermis lobule X 7 44439 -UBERON:0005349 paramedian lobule 7 44440 -UBERON:0007763 cerebellum vermis culmen 7 44441 -UBERON:0004006 cerebellum intermediate zone 5 44442 -UBERON:0004720 cerebellar vermis 5 44443 -UBERON:0003941 cerebellum anterior vermis 6 44444 -UBERON:0004009 cerebellum posterior vermis 6 44445 -UBERON:0024037 vermis of the flocculonodular lobe of the cerebellum 6 44446 -UBERON:0005293 cerebellum lobe 5 44447 -UBERON:0002131 anterior lobe of cerebellum 6 44448 -UBERON:0003012 flocculonodular lobe 6 44449 -UBERON:0004002 posterior lobe of cerebellum 6 44450 -UBERON:0014644 cerebrocerebellum 5 44451 -UBERON:0014647 hemisphere part of cerebellar anterior lobe 5 44452 -UBERON:0023998 cerebellum hemispheric lobule II 6 44453 -UBERON:0023999 cerebellum hemispheric lobule III 6 44454 -UBERON:0024000 cerebellum hemispheric lobule IV 6 44455 -UBERON:0024001 cerebellum hemispheric lobule V 6 44456 -UBERON:0014648 hemisphere part of cerebellar posterior lobe 5 44457 -UBERON:0005350 lobule simplex 6 44458 -UBERON:0005976 ansiform lobule crus I 6 44459 -UBERON:0005977 ansiform lobule crus II 6 44460 -UBERON:0006121 hemispheric lobule VIII 6 44461 -UBERON:0025677 paravermis parts of the cerebellar cortex 5 44462 -UBERON:0027309 paravermis of the posterior lobe of the cerebellum 6 44463 -UBERON:0027310 paravermis of the anterior lobe of the cerebellum 6 44464 -UBERON:0027331 flocculonodular lobe, hemisphere portion 5 44465 -UBERON:0001063 flocculus 6 44466 -UBERON:0005351 paraflocculus 6 44467 -UBERON:0024009 cerebellum hemispheric lobule X 6 44468 -UBERON:0036043 paravermic lobule X 6 44469 -UBERON:0036044 cerebellum vermis lobule VIIAf 5 44470 -UBERON:0036065 cerebellum vermis lobule VIIAt 5 44471 -UBERON:0002819 apex of cochlea 4 44472 -UBERON:0002894 olfactory cortex 4 44473 -UBERON:0002895 secondary olfactory cortex 4 44474 -UBERON:0002911 parietal operculum 4 44475 -UBERON:0002922 olfactory trigone 4 44476 -UBERON:0002947 frontal operculum 4 44477 -UBERON:0002980 opercular part of inferior frontal gyrus 4 44478 -UBERON:0003023 pontine tegmentum 4 44479 -UBERON:0003027 cingulate cortex 4 44480 -UBERON:0003051 ear vesicle 4 44481 -UBERON:0003052 midbrain-hindbrain boundary 4 44482 -UBERON:0003083 trunk neural crest 4 44483 -UBERON:0003092 ultimobranchial body 4 44484 -UBERON:0003097 dorsal fin 4 44485 -UBERON:4100014 posterior dorsal fin 5 44486 -UBERON:4200023 anterior dorsal fin 5 44487 -UBERON:4300115 sucking disc 5 44488 -UBERON:0003099 cranial neural crest 4 44489 -UBERON:0003849 mesencephalic neural crest 5 44490 -UBERON:0003852 rhombencephalon neural crest 5 44491 -UBERON:0005491 glossopharyngeal neural crest 5 44492 -UBERON:0005563 trigeminal neural crest 5 44493 -UBERON:0005565 facio-acoustic neural crest 5 44494 -UBERON:0007098 mandibular neural crest 5 44495 -UBERON:0007099 hyoid neural crest 5 44496 -UBERON:0007681 facial neural crest 5 44497 -UBERON:0003108 suspensorium 4 44498 -UBERON:0003129 skull 4 44499 -UBERON:0003217 neural lobe of neurohypophysis 4 44500 -UBERON:0003236 epithelium of lower jaw 4 44501 -UBERON:0003359 epithelium of submandibular gland 5 44502 -UBERON:0003360 epithelium of parotid gland 5 44503 -UBERON:0035076 parotid gland myoepithelium 6 44504 -UBERON:0005654 lower jaw molar epithelium 5 44505 -UBERON:0005710 lower jaw incisor epithelium 5 44506 -UBERON:0006957 submandibular gland primordium epithelium 5 44507 -UBERON:0011596 future lower lip 5 44508 -UBERON:0003300 roof plate of telencephalon 4 44509 -UBERON:0003302 roof plate of metencephalon 4 44510 -UBERON:0003303 roof plate of medulla oblongata 4 44511 -UBERON:0003308 floor plate of telencephalon 4 44512 -UBERON:0003310 floor plate of metencephalon 4 44513 -UBERON:0003311 floor plate of medulla oblongata 4 44514 -UBERON:0003323 mesenchyme of upper jaw 4 44515 -UBERON:0003417 mesenchyme of soft palate 5 44516 -UBERON:0003424 mesenchyme of hard palate 5 44517 -UBERON:0005700 upper jaw molar odontogenic papilla 5 44518 -UBERON:0005704 secondary palatal shelf mesenchyme 5 44519 -UBERON:0005705 primary palate mesenchyme 5 44520 -UBERON:0005707 upper jaw incisor odontogenic papilla 5 44521 -UBERON:0003324 mesenchyme of lower jaw 4 44522 -UBERON:0003414 mesenchyme of mandible 5 44523 -UBERON:0003418 mesenchyme of submandibular gland 5 44524 -UBERON:0003419 mesenchyme of parotid 5 44525 -UBERON:0005701 lower jaw molar odontogenic papilla 5 44526 -UBERON:0005708 lower jaw incisor odontogenic papilla 5 44527 -UBERON:0009539 mesenchyme of submandibular gland primordium 5 44528 -UBERON:0003325 mesenchyme of pinna 4 44529 -UBERON:0003355 epithelium of incisor 4 44530 -UBERON:0005709 upper jaw incisor epithelium 5 44531 -UBERON:0005710 lower jaw incisor epithelium 5 44532 -UBERON:0015840 incisor dental lamina 5 44533 -UBERON:0003367 epithelium of vomeronasal organ 4 44534 -UBERON:0003470 artery of upper lip 4 44535 -UBERON:0003471 artery of lower lip 4 44536 -UBERON:0003493 trachea reticular lamina 4 44537 -UBERON:0003571 trachea connective tissue 4 44538 -UBERON:0003617 trachea elastic tissue 5 44539 -UBERON:0009644 trachea non-cartilage connective tissue 5 44540 -UBERON:0003604 trachea cartilage 4 44541 -UBERON:0006679 carina of trachea 5 44542 -UBERON:0009078 pessulus 5 44543 -UBERON:0003675 tooth crown 4 44544 -UBERON:0003955 molar crown 5 44545 -UBERON:0003677 tooth root 4 44546 -UBERON:0008854 root of molar tooth 5 44547 -UBERON:0003700 temporomandibular joint 4 44548 -UBERON:0003707 sinus of Valsalva 4 44549 -UBERON:0003709 circle of Willis 4 44550 -UBERON:0003843 dental epithelium 4 44551 -UBERON:0005709 upper jaw incisor epithelium 5 44552 -UBERON:0005710 lower jaw incisor epithelium 5 44553 -UBERON:0006949 cervical loop 5 44554 -UBERON:0006950 stellate reticulum 5 44555 -UBERON:0006951 inner dental epithelium 5 44556 -UBERON:0006952 outer dental epithelium 5 44557 -UBERON:0015839 molar epithelium 5 44558 -UBERON:0005653 upper jaw molar epithelium 6 44559 -UBERON:0005654 lower jaw molar epithelium 6 44560 -UBERON:0015841 molar dental lamina 6 44561 -UBERON:2005135 primary dental epithelium 5 44562 -UBERON:0003876 hippocampal field 4 44563 -UBERON:0003881 CA1 field of hippocampus 5 44564 -UBERON:0003882 CA2 field of hippocampus 5 44565 -UBERON:0003883 CA3 field of hippocampus 5 44566 -UBERON:0003884 CA4 field of hippocampus 5 44567 -UBERON:0003938 sensory dissociation area 4 44568 -UBERON:0003976 saccule duct 4 44569 -UBERON:0003977 utricle duct 4 44570 -UBERON:0003979 utricle valve 4 44571 -UBERON:0003993 interventricular foramen of CNS 4 44572 -UBERON:0004008 cerebellar plate 4 44573 -UBERON:0004017 periocular mesenchyme 4 44574 -UBERON:0004043 semicircular canal ampulla 4 44575 -UBERON:0004069 accessory olfactory bulb 4 44576 -UBERON:0004106 crus of ear 4 44577 -UBERON:0004162 pulmonary myocardium 4 44578 -UBERON:0004164 branchiomeric muscle 4 44579 -UBERON:0014836 levator arcuum muscle 5 44580 -UBERON:0004274 lateral ventricle choroid plexus epithelium 4 44581 -UBERON:0004276 fourth ventricle choroid plexus epithelium 4 44582 -UBERON:0004363 pharyngeal arch artery 4 44583 -UBERON:0003118 pharyngeal arch artery 1 5 44584 -UBERON:0003119 pharyngeal arch artery 2 5 44585 -UBERON:0003120 pharyngeal arch artery 3 5 44586 -UBERON:0003121 pharyngeal arch artery 4 5 44587 -UBERON:0003122 pharyngeal arch artery 5 5 44588 -UBERON:0003123 pharyngeal arch artery 6 5 44589 -UBERON:0004503 skeletal muscle tissue of digastric 4 44590 -UBERON:0004504 skeletal muscle tissue of mylohyoid 4 44591 -UBERON:0004506 skeletal muscle tissue of masseter 4 44592 -UBERON:0004507 skeletal muscle tissue of temporalis 4 44593 -UBERON:0004637 otic capsule 4 44594 -UBERON:0005410 cartilaginous otic capsule 5 44595 -UBERON:0005411 bony otic capsule 5 44596 -UBERON:0010349 otic capsule pre-cartilage condensation 5 44597 -UBERON:0004643 lateral ventricle ependyma 4 44598 -UBERON:0004644 fourth ventricle ependyma 4 44599 -UBERON:0004646 infraorbital artery 4 44600 -UBERON:0004668 fourth ventricle aperture 4 44601 -UBERON:0003991 fourth ventricle median aperture 5 44602 -UBERON:0003992 fourth ventricle lateral aperture 5 44603 -UBERON:0004683 parasubiculum 4 44604 -UBERON:0004714 septum pellucidum 4 44605 -UBERON:0004721 crista ampullaris 4 44606 -UBERON:0004725 piriform cortex 4 44607 -UBERON:0004733 segmental subdivision of hindbrain 4 44608 -UBERON:0001895 metencephalon 5 44609 -UBERON:0005290 myelencephalon 5 44610 -UBERON:0004746 prootic bone 4 44611 -UBERON:0004747 supraoccipital bone 4 44612 -UBERON:0004756 dermal skeletal element 4 44613 -UBERON:0007380 dermal scale 5 44614 -UBERON:0000041 odontode scale 6 44615 -UBERON:0018310 cephalic dermal scale 6 44616 -UBERON:2001824 lateral line scale 6 44617 -UBERON:4300238 pored lateral line scale 7 44618 -UBERON:4300242 lateral line scale 6 7 44619 -UBERON:2002122 pouch scale 6 44620 -UBERON:2002273 ctenoid scale 6 44621 -UBERON:2002274 transforming ctenoid scale 7 44622 -UBERON:2002285 cycloid scale 6 44623 -UBERON:4300235 spinoid scale 7 44624 -UBERON:4000052 ganoid scale 6 44625 -UBERON:4000051 lepidosteoid scale 7 44626 -UBERON:4000055 polypteroid scale 7 44627 -UBERON:4000074 palaeoniscoid scale 7 44628 -UBERON:4000070 elasmoid scale 6 44629 -UBERON:4000080 keratin-based scale 6 44630 -UBERON:4000081 cosmoid scale 6 44631 -UBERON:4300102 postcleithral scale 6 44632 -UBERON:4300188 terminal scale 6 44633 -UBERON:4300222 axilar scale 6 44634 -UBERON:4500003 predorsal scale 6 44635 -UBERON:0008907 dermal bone 5 44636 -UBERON:0000209 tetrapod frontal bone 6 44637 -UBERON:0001680 lacrimal bone 6 44638 -UBERON:0001681 nasal bone 6 44639 -UBERON:0001683 jugal bone 6 44640 -UBERON:0001695 squamous part of temporal bone 6 44641 -UBERON:0002229 interparietal bone 6 44642 -UBERON:0002244 premaxilla 6 44643 -UBERON:0002397 maxilla 6 44644 -UBERON:0004741 cleithrum 6 44645 -UBERON:0004742 dentary 6 44646 -UBERON:0001684 mandible 7 44647 -UBERON:0004744 articular/anguloarticular 6 44648 -UBERON:0004865 actinopterygian parietal bone 6 44649 -UBERON:0004866 actinopterygian frontal bone 6 44650 -UBERON:0007841 furcula 6 44651 -UBERON:0010750 prefrontal bone 6 44652 -UBERON:0010898 gastralium 6 44653 -UBERON:0011079 angular bone 6 44654 -UBERON:0011167 septomaxilla bone 6 44655 -UBERON:0011168 postfrontal bone 6 44656 -UBERON:0011169 postorbital bone 6 44657 -UBERON:0011267 quadratojugal bone 6 44658 -UBERON:0011598 coronoid bone 6 44659 -UBERON:4200234 precoronoid bone 7 44660 -UBERON:4200235 postcoronoid bone 7 44661 -UBERON:4200236 anterior coronoid bone 7 44662 -UBERON:4200237 posterior coronoid bone 7 44663 -UBERON:0011628 early premaxilla 6 44664 -UBERON:0011629 supratemporal bone 6 44665 -UBERON:0011630 intertemporal bone 6 44666 -UBERON:0011631 tabular bone 6 44667 -UBERON:0011635 splenial bone 6 44668 -UBERON:0011636 surangular bone 6 44669 -UBERON:4200243 surangular pit line 7 44670 -UBERON:0011637 prearticular bone 6 44671 -UBERON:0011639 frontoparietal bone 6 44672 -UBERON:0011655 interclavicle 6 44673 -UBERON:4100006 parasternal process 7 44674 -UBERON:0011657 dermal element of plastron 6 44675 -UBERON:0011658 epiplastron 7 44676 -UBERON:0011659 entoplastron 7 44677 -UBERON:0011660 hypoplastron 7 44678 -UBERON:0011661 xiphiplastron 7 44679 -UBERON:0014707 hyoplastron 7 44680 -UBERON:0012071 palate bone 6 44681 -UBERON:0001682 palatine bone 7 44682 -UBERON:0002396 vomer 7 44683 -UBERON:0004745 parasphenoid 7 44684 -UBERON:0010389 pterygoid bone 7 44685 -UBERON:0011634 ectopterygoid bone 7 44686 -UBERON:0013113 angular/surangular bone 6 44687 -UBERON:2000103 supramaxilla 6 44688 -UBERON:2000104 suprapreopercle 6 44689 -UBERON:2000127 antorbital 6 44690 -UBERON:2000250 opercle 6 44691 -UBERON:2000264 preopercle 6 44692 -UBERON:2000284 subopercle 6 44693 -UBERON:2000289 preopercle horizontal limb 6 44694 -UBERON:2000336 preopercle vertical limb 6 44695 -UBERON:2000356 gill raker 6 44696 -UBERON:2000376 infraorbital 6 44697 -UBERON:2000223 infraorbital 1 7 44698 -UBERON:2000495 infraorbital 5 7 44699 -UBERON:2001407 infraorbital 2 7 44700 -UBERON:2001408 infraorbital 3 7 44701 -UBERON:2001409 infraorbital 4 7 44702 -UBERON:2001674 infraorbital 6 7 44703 -UBERON:2001702 infraorbital 7 7 44704 -UBERON:2001703 infraorbital 8 7 44705 -UBERON:2001704 infraorbital 9 7 44706 -UBERON:2001705 infraorbital 10 7 44707 -UBERON:2001706 infraorbital 11 7 44708 -UBERON:2001707 infraorbital 12 7 44709 -UBERON:2001708 dermosphenotic 7 44710 -UBERON:2000410 postcleithrum 6 44711 -UBERON:2001852 postcleithrum 1 7 44712 -UBERON:2001853 postcleithrum 2 7 44713 -UBERON:2001854 postcleithrum 3 7 44714 -UBERON:2000452 urohyal 6 44715 -UBERON:2000476 branchiostegal ray 6 44716 -UBERON:2001279 branchiostegal ray 1 7 44717 -UBERON:2001280 branchiostegal ray 3 7 44718 -UBERON:2001281 branchiostegal ray 2 7 44719 -UBERON:2000549 posttemporal 6 44720 -UBERON:2000576 pterotic 6 44721 -UBERON:2000594 supracleithrum 6 44722 -UBERON:2000657 entopterygoid 6 44723 -UBERON:2000663 extrascapula 6 44724 -UBERON:4200099 lateral extrascapular 7 44725 -UBERON:4200103 median extrascapular 7 44726 -UBERON:2000674 interopercle 6 44727 -UBERON:2000691 supraorbital bone 6 44728 -UBERON:4200244 anterior supraorbital bone 7 44729 -UBERON:2001274 coronomeckelian 6 44730 -UBERON:2001403 supraethmoid 6 44731 -UBERON:2001406 kinethmoid bone 6 44732 -UBERON:2001647 pharyngeal tooth plate 6 44733 -UBERON:0018283 lower pharyngobranchial toothplate 7 44734 -UBERON:2001648 basihyal tooth plate 7 44735 -UBERON:2001654 upper pharyngeal 4 tooth plate 7 44736 -UBERON:2001656 upper pharyngeal 5 tooth plate 7 44737 -UBERON:2001658 upper pharyngeal tooth plate 7 44738 -UBERON:2001661 basibranchial tooth plate 7 44739 -UBERON:2001662 basibranchial 4 tooth plate 7 44740 -UBERON:2001664 basibranchial 2 tooth plate 7 44741 -UBERON:2002015 pharyngobranchial tooth plate 7 44742 -UBERON:2001650 pharyngobranchial 2 tooth plate 8 44743 -UBERON:2001652 pharyngobranchial 3 tooth plate 8 44744 -UBERON:2001859 pharyngobranchial 1 tooth plate 8 44745 -UBERON:2002016 pharyngobranchial 4 tooth plate 8 44746 -UBERON:2001692 median premaxilla 6 44747 -UBERON:2001700 caudal-fin stay 6 44748 -UBERON:2001788 pelvic splint 6 44749 -UBERON:2001815 nuchal plate 6 44750 -UBERON:2001816 anterior nuchal plate 7 44751 -UBERON:2001817 middle nuchal plate 7 44752 -UBERON:2001820 posterior nuchal plate 7 44753 -UBERON:2001930 accessory vomerine tooth plate 6 44754 -UBERON:2001932 sensory canal tubular ossicle 6 44755 -UBERON:2001934 rostral plate 6 44756 -UBERON:2001997 parietal-supraoccipital 6 44757 -UBERON:2001998 posttemporal-supracleithrum 6 44758 -UBERON:2002005 canal plate 6 44759 -UBERON:2002019 pterotic-posttemporal-supracleithrum 6 44760 -UBERON:2002020 hypomaxilla 6 44761 -UBERON:2002022 dermethmoid 6 44762 -UBERON:2002053 bony plate 6 44763 -UBERON:4300211 lateral plate 7 44764 -UBERON:2002086 pelvic axillary process 6 44765 -UBERON:2002087 pectoral axillary process 6 44766 -UBERON:2002089 gular plate 6 44767 -UBERON:2002291 fulcrum 6 44768 -UBERON:2002082 basal fulcrum 7 44769 -UBERON:2002159 caudal basal fulcrum 8 44770 -UBERON:2002292 epaxial basal fulcrum 8 44771 -UBERON:2002293 hypaxial basal fulcrum 8 44772 -UBERON:2002083 fringing fulcrum 7 44773 -UBERON:2002294 fish scute 6 44774 -UBERON:2001160 dorsal scute 7 44775 -UBERON:2001547 abdominal scute 7 44776 -UBERON:2001606 caudal scute 7 44777 -UBERON:2001931 infranuchal scute 7 44778 -UBERON:4200113 predorsal scute 7 44779 -UBERON:3000288 maxillopalatine 6 44780 -UBERON:3000323 nasopremaxilla 6 44781 -UBERON:3000518 pseudodentary 6 44782 -UBERON:3000645 corpus 6 44783 -UBERON:3000966 angulosplenial 6 44784 -UBERON:3010576 prenasal (amphibians) 6 44785 -UBERON:4000160 anocleithrum 6 44786 -UBERON:4000172 lepidotrichium 6 44787 -UBERON:4200075 fin spine 7 44788 -UBERON:4200070 median fin spine 8 44789 -UBERON:2002261 dorsal fin spine 9 44790 -UBERON:2001789 dorsal fin spine 1 10 44791 -UBERON:2001790 dorsal fin spine 2 10 44792 -UBERON:4300175 procumbent dorsal fin spine 10 44793 -UBERON:2002262 anal fin spine 9 44794 -UBERON:4300097 anal fin spine 1 10 44795 -UBERON:4300098 anal fin spine 2 10 44796 -UBERON:4500009 paired fin spine 8 44797 -UBERON:2001787 pectoral fin spine 9 44798 -UBERON:2002270 pelvic fin spine 9 44799 -UBERON:4440011 paired fin lepidotrichium 7 44800 -UBERON:4000173 pelvic fin lepidotrichium 8 44801 -UBERON:2002270 pelvic fin spine 9 44802 -UBERON:4300117 pelvic fin ray 9 44803 -UBERON:2001776 pelvic fin ray 1 10 44804 -UBERON:2001777 pelvic fin ray 2 10 44805 -UBERON:2001778 pelvic fin ray 3 10 44806 -UBERON:2001779 pelvic fin ray 4 10 44807 -UBERON:2001780 pelvic fin ray 5 10 44808 -UBERON:2001781 pelvic fin ray 6 10 44809 -UBERON:2001782 pelvic fin ray 7 10 44810 -UBERON:4300192 branched pelvic fin ray 10 44811 -UBERON:4500011 unbranched pelvic fin ray 10 44812 -UBERON:4000175 pectoral fin lepidotrichium 8 44813 -UBERON:2001787 pectoral fin spine 9 44814 -UBERON:4500007 pectoral fin ray 9 44815 -UBERON:2001761 pectoral fin ray 1 10 44816 -UBERON:2001762 pectoral fin ray 2 10 44817 -UBERON:2001763 pectoral fin ray 3 10 44818 -UBERON:2001764 pectoral fin ray 4 10 44819 -UBERON:2001765 pectoral fin ray 5 10 44820 -UBERON:2001766 pectoral fin ray 6 10 44821 -UBERON:2001767 pectoral fin ray 7 10 44822 -UBERON:2001993 branched pectoral fin ray 10 44823 -UBERON:4300103 rudimentary pectoral fin ray 10 44824 -UBERON:4500010 unbranched pectoral fin ray 10 44825 -UBERON:4500009 paired fin spine 8 44826 -UBERON:2001787 pectoral fin spine 9 44827 -UBERON:2002270 pelvic fin spine 9 44828 -UBERON:4500008 median fin lepidotrichium 7 44829 -UBERON:4000174 caudal fin lepidotrichium 8 44830 -UBERON:2001584 caudal procurrent ray 9 44831 -UBERON:2001829 caudal fin dorsal procurrent ray 10 44832 -UBERON:2001830 caudal fin ventral procurrent ray 10 44833 -UBERON:2002271 ventral caudal procurrent ray 2 11 44834 -UBERON:2002272 ventral caudal procurrent ray 1 11 44835 -UBERON:4300250 ventral caudal procurrent ray 3 11 44836 -UBERON:4300251 ventral caudal procurrent ray 4 11 44837 -UBERON:2001585 caudal principal ray 9 44838 -UBERON:2001713 caudal principal ray 1 10 44839 -UBERON:2001714 caudal principal ray 2 10 44840 -UBERON:2001715 caudal principal ray 3 10 44841 -UBERON:2001716 caudal principal ray 4 10 44842 -UBERON:2001717 caudal principal ray 5 10 44843 -UBERON:2001718 caudal principal ray 6 10 44844 -UBERON:2001719 caudal principal ray 7 10 44845 -UBERON:2001720 caudal principal ray 8 10 44846 -UBERON:2001721 caudal principal ray 9 10 44847 -UBERON:2001722 caudal principal ray 10 10 44848 -UBERON:2001723 caudal principal ray 11 10 44849 -UBERON:2001724 caudal principal ray 12 10 44850 -UBERON:2001725 caudal principal ray 13 10 44851 -UBERON:2001726 caudal principal ray 14 10 44852 -UBERON:2001727 caudal principal ray 15 10 44853 -UBERON:2001728 caudal principal ray 16 10 44854 -UBERON:2001729 caudal principal ray 17 10 44855 -UBERON:2001730 caudal principal ray 18 10 44856 -UBERON:2001731 caudal principal ray 19 10 44857 -UBERON:2002062 branched caudal fin ray 9 44858 -UBERON:4200009 hypochordal lepidotrichium 9 44859 -UBERON:4200062 epichordal lepidotrichium 9 44860 -UBERON:4000176 anal fin lepidotrichium 8 44861 -UBERON:2002262 anal fin spine 9 44862 -UBERON:4300097 anal fin spine 1 10 44863 -UBERON:4300098 anal fin spine 2 10 44864 -UBERON:4500006 anal fin ray 9 44865 -UBERON:2001769 anal fin ray 1 10 44866 -UBERON:2001770 anal fin ray 2 10 44867 -UBERON:2001771 anal fin ray 3 10 44868 -UBERON:2001772 anal fin ray 4 10 44869 -UBERON:2001773 anal fin ray 5 10 44870 -UBERON:2001774 anal fin ray 6 10 44871 -UBERON:2001775 anal fin ray 7 10 44872 -UBERON:2001992 branched anal fin ray 10 44873 -UBERON:4300193 unbranched anal fin ray 10 44874 -UBERON:4000177 dorsal fin lepidotrichium 8 44875 -UBERON:2002261 dorsal fin spine 9 44876 -UBERON:2001789 dorsal fin spine 1 10 44877 -UBERON:2001790 dorsal fin spine 2 10 44878 -UBERON:4300175 procumbent dorsal fin spine 10 44879 -UBERON:4300116 dorsal fin ray 9 44880 -UBERON:2001754 dorsal fin ray 1 10 44881 -UBERON:2001755 dorsal fin ray 2 10 44882 -UBERON:2001756 dorsal fin ray 3 10 44883 -UBERON:2001757 dorsal fin ray 4 10 44884 -UBERON:2001758 dorsal fin ray 5 10 44885 -UBERON:2001759 dorsal fin ray 6 10 44886 -UBERON:2001760 dorsal fin ray 7 10 44887 -UBERON:2001785 branched dorsal fin ray 10 44888 -UBERON:2001786 unbranched dorsal fin ray 10 44889 -UBERON:4200070 median fin spine 8 44890 -UBERON:2002261 dorsal fin spine 9 44891 -UBERON:2001789 dorsal fin spine 1 10 44892 -UBERON:2001790 dorsal fin spine 2 10 44893 -UBERON:4300175 procumbent dorsal fin spine 10 44894 -UBERON:2002262 anal fin spine 9 44895 -UBERON:4300097 anal fin spine 1 10 44896 -UBERON:4300098 anal fin spine 2 10 44897 -UBERON:4300274 adipose fin ray 8 44898 -UBERON:4100119 extratemporal bone 6 44899 -UBERON:4200022 extracleithrum 6 44900 -UBERON:4200102 median dorsal plate 6 44901 -UBERON:4200115 presupracleithrum 6 44902 -UBERON:4300003 urodermal bone 6 44903 -UBERON:4300014 dorsal cleithrum 6 44904 -UBERON:4300015 ventral cleithrum 6 44905 -UBERON:4300017 rostrodermethmoid 6 44906 -UBERON:4300021 anterolateral plate 6 44907 -UBERON:4300022 anteroventral plate 6 44908 -UBERON:4300023 interolateral plate 6 44909 -UBERON:4300024 spinal plate 6 44910 -UBERON:4300025 posterior dorsolateral plate 6 44911 -UBERON:4300026 anterior ventrolateral plate 6 44912 -UBERON:4300028 posterior ventrolateral plate 6 44913 -UBERON:4300104 ectocoracoid bone 6 44914 -UBERON:4300199 postsplenial 6 44915 -UBERON:4300207 submandibular bone 6 44916 -UBERON:4500005 prenasal ossicle 6 44917 -UBERON:0018299 mandibular symphyseal tooth 5 44918 -UBERON:2001649 basihyal tooth 5 44919 -UBERON:2001651 pharyngobranchial 2 tooth 5 44920 -UBERON:2001653 pharyngobranchial 3 tooth 5 44921 -UBERON:2001655 upper pharyngeal 4 tooth 5 44922 -UBERON:2001657 upper pharyngeal 5 tooth 5 44923 -UBERON:2001659 upper pharyngeal tooth 5 44924 -UBERON:2001660 basibranchial tooth 5 44925 -UBERON:2001663 basibranchial 4 tooth 5 44926 -UBERON:2001665 basibranchial 2 tooth 5 44927 -UBERON:0004817 lacrimal gland epithelium 4 44928 -UBERON:0004982 mucosa of epiglottis 4 44929 -UBERON:0005031 mucosa of upper lip 4 44930 -UBERON:0016912 frenulum of upper lip 5 44931 -UBERON:0005032 mucosa of lower lip 4 44932 -UBERON:0016913 frenulum of lower lip 5 44933 -UBERON:0005043 mucosa of nasolacrimal duct 4 44934 -UBERON:0005017 mucosa of lacrimal sac 5 44935 -UBERON:0005159 pyramid of medulla oblongata 4 44936 -UBERON:0005176 tooth enamel organ 4 44937 -UBERON:0015842 incisor enamel organ 5 44938 -UBERON:0015843 molar enamel organ 5 44939 -UBERON:0005184 hair medulla 4 44940 -UBERON:0005193 ethmoidal artery 4 44941 -UBERON:0012318 anterior ethmoidal artery 5 44942 -UBERON:0012319 posterior ethmoidal artery 5 44943 -UBERON:0005236 osseus labyrinth vestibule 4 44944 -UBERON:0005286 tela choroidea of midbrain cerebral aqueduct 4 44945 -UBERON:0005287 tela choroidea of fourth ventricle 4 44946 -UBERON:0005289 tela choroidea of telencephalic ventricle 4 44947 -UBERON:0005317 pulmonary artery endothelium 4 44948 -UBERON:0005402 philtrum 4 44949 -UBERON:0005432 aortic sac 4 44950 -UBERON:0005440 ductus arteriosus 4 44951 -UBERON:0005493 hyoid muscle 4 44952 -UBERON:0008523 infrahyoid muscle 5 44953 -UBERON:0001107 sternohyoid muscle 6 44954 -UBERON:0001108 omohyoid muscle 6 44955 -UBERON:0001109 sternothyroid muscle 6 44956 -UBERON:0001110 thyrohyoid muscle 6 44957 -UBERON:0008571 suprahyoid muscle 5 44958 -UBERON:0001562 digastric muscle group 6 44959 -UBERON:0001564 mylohyoid muscle 6 44960 -UBERON:0001565 geniohyoid muscle 6 44961 -UBERON:0008712 stylohyoid muscle 6 44962 -UBERON:0010930 interhyoideus 5 44963 -UBERON:0011151 jaw depressor muscle 5 44964 -UBERON:0001565 geniohyoid muscle 6 44965 -UBERON:0011649 levator operculi 5 44966 -UBERON:0011650 epihyoidean 5 44967 -UBERON:0011687 levator hyomandibulae muscle 5 44968 -UBERON:2000462 abductor hyohyoid 5 44969 -UBERON:2000465 adductor operculi 5 44970 -UBERON:2000522 inferior hyohyoid 5 44971 -UBERON:2000615 adductor arcus palatini 5 44972 -UBERON:2000715 adductor hyohyoid 5 44973 -UBERON:2007051 ventral interhyoideus 5 44974 -UBERON:2007052 hyohyoideus 5 44975 -UBERON:2007053 dorsal adductor hyomandibulae 5 44976 -UBERON:0005561 telencephalon lateral wall 4 44977 -UBERON:0005600 crus commune 4 44978 -UBERON:0005608 hyoid artery 4 44979 -UBERON:0005720 hindbrain venous system 4 44980 -UBERON:0005746 primary vitreous 4 44981 -UBERON:0005807 rostral ventrolateral medulla 4 44982 -UBERON:0005884 hyoid arch skeleton 4 44983 -UBERON:0005886 post-hyoid pharyngeal arch skeleton 4 44984 -UBERON:0005932 bulb of hair follicle 4 44985 -UBERON:0011936 vibrissa hair bulb 5 44986 -UBERON:0005933 hair root sheath 4 44987 -UBERON:0005941 hair inner root sheath 5 44988 -UBERON:0011938 vibrissa inner root sheath 6 44989 -UBERON:0005942 hair outer root sheath 5 44990 -UBERON:0011939 vibrissa outer root sheath 6 44991 -UBERON:0011937 vibrissa root sheath 5 44992 -UBERON:0011938 vibrissa inner root sheath 6 44993 -UBERON:0011939 vibrissa outer root sheath 6 44994 -UBERON:0005943 hair root sheath matrix 4 44995 -UBERON:0005968 infundibulum of hair follicle 4 44996 -UBERON:0005973 blood-inner ear barrier 4 44997 -UBERON:0005975 hair follicle bulge 4 44998 -UBERON:0005984 subendocardium layer 4 44999 -UBERON:0006004 hair follicle matrix region 4 45000 -UBERON:0006005 hair follicle isthmus 4 45001 -UBERON:0006007 pre-Botzinger complex 4 45002 -UBERON:0006059 falx cerebri 4 45003 -UBERON:0006083 perirhinal cortex 4 45004 -UBERON:0023936 perirhinal cortex of Burwell et al 1995 5 45005 -UBERON:0025581 perirhinal cortex of primate of Burwell et al 1995 6 45006 -UBERON:0025584 perirhinal cortex of rodent of Burwell et al 1995 6 45007 -UBERON:0006088 inferior parietal cortex 4 45008 -UBERON:0006091 inferior horn of the lateral ventricle 4 45009 -UBERON:0006094 superior parietal cortex 4 45010 -UBERON:0006106 cochlear canal 4 45011 -UBERON:0006125 subdivision of diagonal band 4 45012 -UBERON:0006123 horizontal limb of the diagonal band 5 45013 -UBERON:0006124 vertical limb of the diagonal band 5 45014 -UBERON:0006203 conchal part of pinna 4 45015 -UBERON:0006209 basioccipital cartilage element 4 45016 -UBERON:0006250 infundibular recess of 3rd ventricle 4 45017 -UBERON:0006260 lingual swellings 4 45018 -UBERON:0006266 nasolacrimal groove 4 45019 -UBERON:0006301 telencephalic part of interventricular foramen 4 45020 -UBERON:0006326 base of arytenoid 4 45021 -UBERON:0006338 lateral ventricle choroid plexus stroma 4 45022 -UBERON:0006340 fourth ventricle choroid plexus stroma 4 45023 -UBERON:0006345 stapedial artery 4 45024 -UBERON:0006494 apex of arytenoid 4 45025 -UBERON:0006495 osseus cochlear canal 4 45026 -UBERON:0006606 mandibular symphysis 4 45027 -UBERON:0006664 greater palatine artery 4 45028 -UBERON:0006669 alveolar canal 4 45029 -UBERON:0006691 tentorium cerebelli 4 45030 -UBERON:0006699 foramen cecum of tongue 4 45031 -UBERON:0006713 foramen cecum of frontal bone 4 45032 -UBERON:0006723 cochlear modiolus 4 45033 -UBERON:0006724 osseus spiral lamina 4 45034 -UBERON:0006725 spiral ligament 4 45035 -UBERON:0006762 suspensory ligament of lens 4 45036 -UBERON:0006805 sternal end of clavicle 4 45037 -UBERON:0006811 occipital condyle 4 45038 -UBERON:0006844 cusp of tooth 4 45039 -UBERON:0016929 lingual cusp of tooth 5 45040 -UBERON:0018279 hypoconid 5 45041 -UBERON:0018287 premolar 1 hypoconoid 6 45042 -UBERON:0018288 paracone 5 45043 -UBERON:0018298 stylocone 5 45044 -UBERON:0018344 parastyle 5 45045 -UBERON:0006905 mandibular process mesenchyme 4 45046 -UBERON:0010336 mandibular process mesenchyme from neural crest 5 45047 -UBERON:0010337 mandibular process mesenchyme from head mesenchyme 5 45048 -UBERON:0006937 inner ear epithelium 4 45049 -UBERON:0002223 endolymphatic sac 5 45050 -UBERON:0003238 epithelium of superior semicircular canal 5 45051 -UBERON:0007274 crista of ampulla of anterior semicircular duct of membranous laybrinth 6 45052 -UBERON:0003239 epithelium of posterior semicircular canal 5 45053 -UBERON:0007275 crista of ampulla of posterior semicircular duct of membranous laybrinth 6 45054 -UBERON:2000411 posterior crista primordium 6 45055 -UBERON:0003240 epithelium of lateral semicircular canal 5 45056 -UBERON:0007276 crista of ampulla of lateral semicircular duct of membranous laybrinth 6 45057 -UBERON:2000225 lateral crista primordium 6 45058 -UBERON:0003243 epithelium of cochlear duct 5 45059 -UBERON:0003246 epithelium of endolymphatic sac 5 45060 -UBERON:0003362 epithelium of endolymphatic duct 5 45061 -UBERON:0006932 vestibular epithelium 5 45062 -UBERON:0003241 epithelium of utricle 6 45063 -UBERON:0003242 epithelium of saccule 6 45064 -UBERON:0003363 epithelium of ductus reuniens 6 45065 -UBERON:0005657 crus commune epithelium 6 45066 -UBERON:0006935 crista ampullaris neuroepithelium 6 45067 -UBERON:0007274 crista of ampulla of anterior semicircular duct of membranous laybrinth 7 45068 -UBERON:0007275 crista of ampulla of posterior semicircular duct of membranous laybrinth 7 45069 -UBERON:0007276 crista of ampulla of lateral semicircular duct of membranous laybrinth 7 45070 -UBERON:2002206 macula communis 5 45071 -UBERON:0006938 pinna surface epithelium 4 45072 -UBERON:0007224 medial entorhinal cortex 4 45073 -UBERON:0007225 lateral entorhinal cortex 4 45074 -UBERON:0007299 choroid plexus of tectal ventricle 4 45075 -UBERON:0007332 mandibular rhamphotheca 4 45076 -UBERON:0007334 nidopallium 4 45077 -UBERON:0007347 hyperpallium 4 45078 -UBERON:0007349 mesopallium 4 45079 -UBERON:0007350 arcopallium 4 45080 -UBERON:0007440 stratum intermedium of tooth 4 45081 -UBERON:0007642 ligamentum arteriosum 4 45082 -UBERON:0007693 caroticotympanic artery 4 45083 -UBERON:0007709 superior cerebellar peduncle of pons 4 45084 -UBERON:0007825 reticular membrane of spiral organ 4 45085 -UBERON:0007833 osseus semicircular canal 4 45086 -UBERON:0008199 chin 4 45087 -UBERON:0008804 stylopharyngeus muscle 4 45088 -UBERON:0008813 helicotrema 4 45089 -UBERON:0008866 enamel knot 4 45090 -UBERON:0008879 ligament of pinna 4 45091 -UBERON:0008881 rostral migratory stream 4 45092 -UBERON:0008886 pulmonary vascular system 4 45093 -UBERON:0008895 splanchnocranium 4 45094 -UBERON:0008930 somatosensory cortex 4 45095 -UBERON:0008933 primary somatosensory cortex 5 45096 -UBERON:0008934 secondary somatosensory cortex 5 45097 -UBERON:0009129 right atrium endocardium 4 45098 -UBERON:0011007 endocardium of right auricle 5 45099 -UBERON:0009494 pharyngeal arch mesenchymal region 4 45100 -UBERON:0005689 2nd arch mesenchyme 5 45101 -UBERON:0010254 2nd arch mesenchyme from neural crest 6 45102 -UBERON:0010343 2nd arch mesenchyme from head mesenchyme 6 45103 -UBERON:0005690 3rd arch mesenchyme 5 45104 -UBERON:0010255 3rd arch mesenchyme from neural crest 6 45105 -UBERON:0010344 3rd arch mesenchyme from head mesenchyme 6 45106 -UBERON:0005691 4th arch mesenchyme 5 45107 -UBERON:0010256 4th arch mesenchyme from neural crest 6 45108 -UBERON:0010345 4th arch mesenchyme from head mesenchyme 6 45109 -UBERON:0010031 6th arch mesenchyme 5 45110 -UBERON:0010257 6th arch mesenchyme from neural crest 6 45111 -UBERON:0010347 6th arch mesenchyme from head mesenchyme 6 45112 -UBERON:0010042 1st arch mesenchyme 5 45113 -UBERON:0009584 1st arch mandibular mesenchyme 6 45114 -UBERON:0010252 1st arch mandibular mesenchyme from neural crest 7 45115 -UBERON:0010339 1st arch mandibular mesenchyme from head mesenchyme 7 45116 -UBERON:0010045 1st arch maxillary mesenchyme 6 45117 -UBERON:0010253 1st arch maxillary mesenchyme from neural crest 7 45118 -UBERON:0010338 1st arch maxillary mesenchyme from head mesenchyme 7 45119 -UBERON:0010259 1st arch mesenchyme from neural crest 6 45120 -UBERON:0010252 1st arch mandibular mesenchyme from neural crest 7 45121 -UBERON:0010253 1st arch maxillary mesenchyme from neural crest 7 45122 -UBERON:0010341 1st arch mesenchyme from head mesenchyme 6 45123 -UBERON:0010338 1st arch maxillary mesenchyme from head mesenchyme 7 45124 -UBERON:0010339 1st arch mandibular mesenchyme from head mesenchyme 7 45125 -UBERON:0013502 5th arch mesenchyme 5 45126 -UBERON:0009505 mesenchyme of trachea 4 45127 -UBERON:0007267 trachea pre-cartilage rings 5 45128 -UBERON:0009506 mesenchyme of middle ear 4 45129 -UBERON:0010929 stapedius pre-muscle condensation 5 45130 -UBERON:0010935 tensor tympani pre-muscle condensation 5 45131 -UBERON:0009522 lateral lingual swelling epithelium 4 45132 -UBERON:0009526 maxillary process mesenchyme 4 45133 -UBERON:0010334 maxillary process mesenchyme from neural crest 5 45134 -UBERON:0010335 maxillary process mesenchyme from head mesenchyme 5 45135 -UBERON:0009538 mesenchyme of sublingual gland primordium 4 45136 -UBERON:0009576 medulla oblongata sulcus limitans 4 45137 -UBERON:0009577 metencephalon sulcus limitans 4 45138 -UBERON:0009578 myelencephalon sulcus limitans 4 45139 -UBERON:0009614 hindbrain neural plate 4 45140 -UBERON:0009653 trachea basement membrane 4 45141 -UBERON:0009654 alveolar artery 4 45142 -UBERON:0014693 inferior alveolar artery 5 45143 -UBERON:0009672 oronasal membrane 4 45144 -UBERON:0009689 anterior inferior cerebellar artery 4 45145 -UBERON:0009712 endocardium of right ventricle 4 45146 -UBERON:0009834 dorsolateral prefrontal cortex 4 45147 -UBERON:0009835 anterior cingulate cortex 4 45148 -UBERON:0009840 lower rhombic lip 4 45149 -UBERON:0009841 upper rhombic lip 4 45150 -UBERON:0009899 pole of cerebral hemisphere 4 45151 -UBERON:0002576 temporal pole 5 45152 -UBERON:0002795 frontal pole 5 45153 -UBERON:0002902 occipital pole 5 45154 -UBERON:0009951 main olfactory bulb 4 45155 -UBERON:0009952 dentate gyrus subgranular zone 4 45156 -UBERON:0010013 lower beak 4 45157 -UBERON:0010019 spiracle (sensu Vertebrata) 4 45158 -UBERON:0010032 anterior part of tongue 4 45159 -UBERON:0010033 posterior part of tongue 4 45160 -UBERON:0010034 copula linguae 4 45161 -UBERON:0010046 entire pharyngeal arch associated mesenchyme 4 45162 -UBERON:0010062 pharyngotympanic tube epithelium 4 45163 -UBERON:0010063 tympanic cavity epithelium 4 45164 -UBERON:0010066 tympanic plate 4 45165 -UBERON:0010071 layer of tympanic membrane 4 45166 -UBERON:0009647 tympanic membrane epithelium 5 45167 -UBERON:0005042 inner epithelial layer of tympanic membrane 6 45168 -UBERON:0010069 outer epithelial layer of tympanic membrane 6 45169 -UBERON:0010070 intermediate layer of tympanic membrane 5 45170 -UBERON:0010091 future hindbrain meninx 4 45171 -UBERON:0010172 bulb of aorta 4 45172 -UBERON:0010173 sinotubular junction 4 45173 -UBERON:0010197 trunk of common carotid artery 4 45174 -UBERON:0010212 laryngeal apparatus 4 45175 -UBERON:0010213 laryngeal pre-cartilage condensation 4 45176 -UBERON:0010214 cricoid pre-cartilage condensation 5 45177 -UBERON:0010219 thyroid pre-cartilage condensation 5 45178 -UBERON:0010220 arytenoid pre-cartilage condensation 5 45179 -UBERON:0010215 arytenoid swellings 4 45180 -UBERON:0010221 laryngeal associated mesenchyme 4 45181 -UBERON:0010250 middle meningeal artery 4 45182 -UBERON:0010251 anterior meningeal artery 4 45183 -UBERON:0010262 operculum of brain 4 45184 -UBERON:0010272 hyoid apparatus 4 45185 -UBERON:3000681 hyoid apparatus opening 5 45186 -UBERON:3000683 sinus nervi hypoglossi 6 45187 -UBERON:3000685 foramen nervi hypoglossi 6 45188 -UBERON:0010273 zone of hyoid bone 4 45189 -UBERON:0003997 hyoid bone greater horn 5 45190 -UBERON:0003998 hyoid bone lesser horn 5 45191 -UBERON:0003999 hyoid bone body 5 45192 -UBERON:0010313 neural crest-derived structure 4 45193 -UBERON:0000044 dorsal root ganglion 5 45194 -UBERON:0002834 cervical dorsal root ganglion 6 45195 -UBERON:0002838 first cervical dorsal root ganglion 7 45196 -UBERON:0002839 second cervical dorsal root ganglion 7 45197 -UBERON:0002840 third cervical dorsal root ganglion 7 45198 -UBERON:0002841 fourth cervical dorsal root ganglion 7 45199 -UBERON:0002842 fifth cervical dorsal root ganglion 7 45200 -UBERON:0002843 seventh cervical dorsal root ganglion 7 45201 -UBERON:0002844 eighth cervical dorsal root ganglion 7 45202 -UBERON:0007711 sixth cervical dorsal root ganglion 7 45203 -UBERON:0002835 thoracic dorsal root ganglion 6 45204 -UBERON:0002845 first thoracic dorsal root ganglion 7 45205 -UBERON:0002846 second thoracic dorsal root ganglion 7 45206 -UBERON:0002847 third thoracic dorsal root ganglion 7 45207 -UBERON:0002848 fifth thoracic dorsal root ganglion 7 45208 -UBERON:0002849 sixth thoracic dorsal root ganglion 7 45209 -UBERON:0002850 seventh thoracic dorsal root ganglion 7 45210 -UBERON:0002851 eighth thoracic dorsal root ganglion 7 45211 -UBERON:0002852 ninth thoracic dorsal root ganglion 7 45212 -UBERON:0002853 tenth thoracic dorsal root ganglion 7 45213 -UBERON:0002854 eleventh thoracic dorsal root ganglion 7 45214 -UBERON:0002855 twelfth thoracic dorsal root ganglion 7 45215 -UBERON:0007712 fourth thoracic spinal ganglion 7 45216 -UBERON:0002836 lumbar dorsal root ganglion 6 45217 -UBERON:0002856 second lumbar dorsal root ganglion 7 45218 -UBERON:0002857 first lumbar dorsal root ganglion 7 45219 -UBERON:0002858 third lumbar dorsal root ganglion 7 45220 -UBERON:0002859 fifth lumbar dorsal root ganglion 7 45221 -UBERON:0003943 fourth lumbar dorsal root ganglion 7 45222 -UBERON:0002837 sacral dorsal root ganglion 6 45223 -UBERON:0002860 first sacral dorsal root ganglion 7 45224 -UBERON:0002861 second sacral dorsal root ganglion 7 45225 -UBERON:0002862 third sacral dorsal root ganglion 7 45226 -UBERON:0002863 fifth sacral dorsal root ganglion 7 45227 -UBERON:0007713 fourth sacral spinal ganglion 7 45228 -UBERON:0000391 leptomeninx 5 45229 -UBERON:0002361 pia mater 6 45230 -UBERON:0003549 brain pia mater 7 45231 -UBERON:0003550 forebrain pia mater 8 45232 -UBERON:0003552 telencephalon pia mater 9 45233 -UBERON:0003553 diencephalon pia mater 9 45234 -UBERON:0003551 midbrain pia mater 8 45235 -UBERON:0003554 hindbrain pia mater 8 45236 -UBERON:0003555 spinal cord pia mater 7 45237 -UBERON:0002362 arachnoid mater 6 45238 -UBERON:0003556 forebrain arachnoid mater 7 45239 -UBERON:0003558 diencephalon arachnoid mater 8 45240 -UBERON:0005400 telencephalon arachnoid mater 8 45241 -UBERON:0003557 midbrain arachnoid mater 7 45242 -UBERON:0003559 hindbrain arachnoid mater 7 45243 -UBERON:0003560 spinal cord arachnoid mater 7 45244 -UBERON:0005397 brain arachnoid mater 7 45245 -UBERON:0000395 cochlear ganglion 5 45246 -UBERON:0000401 mandibular ramus 5 45247 -UBERON:0000429 enteric plexus 5 45248 -UBERON:0002439 myenteric nerve plexus 6 45249 -UBERON:0005304 submucous nerve plexus 6 45250 -UBERON:0012374 subserosal plexus 6 45251 -UBERON:0000437 arachnoid barrier layer 5 45252 -UBERON:0000439 arachnoid trabecula 5 45253 -UBERON:0000946 cardial valve 5 45254 -UBERON:0002086 sinoatrial valve 6 45255 -UBERON:0002133 atrioventricular valve 6 45256 -UBERON:0002134 tricuspid valve 7 45257 -UBERON:0002135 mitral valve 7 45258 -UBERON:0004149 ventriculo bulbo valve 6 45259 -UBERON:0004150 coronary sinus valve 6 45260 -UBERON:0005485 valve of inferior vena cava 6 45261 -UBERON:0005623 semi-lunar valve 6 45262 -UBERON:0002137 aortic valve 7 45263 -UBERON:0002146 pulmonary valve 7 45264 -UBERON:0000964 cornea 5 45265 -UBERON:0001035 dento-alveolar joint 5 45266 -UBERON:0001235 adrenal cortex 5 45267 -UBERON:0035825 left adrenal gland cortex 6 45268 -UBERON:0035827 right adrenal gland cortex 6 45269 -UBERON:0001236 adrenal medulla 5 45270 -UBERON:0035826 left adrenal gland medulla 6 45271 -UBERON:0035828 right adrenal gland medulla 6 45272 -UBERON:0001601 extra-ocular muscle 5 45273 -UBERON:0001604 levator palpebrae superioris 6 45274 -UBERON:0006531 oculomotor muscle 6 45275 -UBERON:0006532 oblique extraocular muscle 7 45276 -UBERON:0006320 inferior oblique extraocular muscle 8 45277 -UBERON:0006321 superior oblique extraocular muscle 8 45278 -UBERON:0006533 rectus extraocular muscle 7 45279 -UBERON:0001602 medial rectus extraocular muscle 8 45280 -UBERON:0001603 lateral rectus extra-ocular muscle 8 45281 -UBERON:0006322 inferior rectus extraocular muscle 8 45282 -UBERON:0006323 superior rectus extraocular muscle 8 45283 -UBERON:0010271 musculus retractor bulbi 6 45284 -UBERON:3010125 musculus levator bulbi 6 45285 -UBERON:0001673 central retinal vein 5 45286 -UBERON:0001675 trigeminal ganglion 5 45287 -UBERON:0001695 squamous part of temporal bone 5 45288 -UBERON:0001697 orbit of skull 5 45289 -UBERON:0001700 geniculate ganglion 5 45290 -UBERON:0001706 nasal septum 5 45291 -UBERON:0001708 jaw skeleton 5 45292 -UBERON:4200250 meckelian bone 6 45293 -UBERON:0001716 secondary palate 5 45294 -UBERON:0001734 palatine uvula 5 45295 -UBERON:0001754 dental pulp 5 45296 -UBERON:0015837 incisor dental pulp 6 45297 -UBERON:0015853 dental pulp of median incisor tusk 7 45298 -UBERON:0015838 molar dental pulp 6 45299 -UBERON:0001755 distal part of styloid process of temporal bone 5 45300 -UBERON:0001772 corneal epithelium 5 45301 -UBERON:0001773 sclera 5 45302 -UBERON:0001777 substantia propria of cornea 5 45303 -UBERON:0001806 sympathetic ganglion 5 45304 -UBERON:0001807 paravertebral ganglion 6 45305 -UBERON:0000408 vertebral ganglion 7 45306 -UBERON:0000961 thoracic ganglion 7 45307 -UBERON:0002835 thoracic dorsal root ganglion 8 45308 -UBERON:0002845 first thoracic dorsal root ganglion 9 45309 -UBERON:0002846 second thoracic dorsal root ganglion 9 45310 -UBERON:0002847 third thoracic dorsal root ganglion 9 45311 -UBERON:0002848 fifth thoracic dorsal root ganglion 9 45312 -UBERON:0002849 sixth thoracic dorsal root ganglion 9 45313 -UBERON:0002850 seventh thoracic dorsal root ganglion 9 45314 -UBERON:0002851 eighth thoracic dorsal root ganglion 9 45315 -UBERON:0002852 ninth thoracic dorsal root ganglion 9 45316 -UBERON:0002853 tenth thoracic dorsal root ganglion 9 45317 -UBERON:0002854 eleventh thoracic dorsal root ganglion 9 45318 -UBERON:0002855 twelfth thoracic dorsal root ganglion 9 45319 -UBERON:0007712 fourth thoracic spinal ganglion 9 45320 -UBERON:0001991 cervical ganglion 7 45321 -UBERON:0001989 superior cervical ganglion 8 45322 -UBERON:0001990 middle cervical ganglion 8 45323 -UBERON:0002440 inferior cervical ganglion 8 45324 -UBERON:0002441 cervicothoracic ganglion 8 45325 -UBERON:0003964 prevertebral ganglion 6 45326 -UBERON:0002262 celiac ganglion 7 45327 -UBERON:0016508 pelvic ganglion 7 45328 -UBERON:0035769 mesenteric ganglion 7 45329 -UBERON:0005453 inferior mesenteric ganglion 8 45330 -UBERON:0005479 superior mesenteric ganglion 8 45331 -UBERON:0001808 parasympathetic ganglion 5 45332 -UBERON:0001809 enteric ganglion 6 45333 -UBERON:0002059 submandibular ganglion 6 45334 -UBERON:0003962 pterygopalatine ganglion 6 45335 -UBERON:0003963 otic ganglion 6 45336 -UBERON:0005407 sublingual ganglion 6 45337 -UBERON:0010128 future pterygopalatine ganglion 6 45338 -UBERON:0014463 cardiac ganglion 6 45339 -UBERON:0035783 ganglion of ciliary nerve 6 45340 -UBERON:0002058 main ciliary ganglion 7 45341 -UBERON:0035776 accessory ciliary ganglion 7 45342 -UBERON:0001818 tarsal gland 5 45343 -UBERON:0001822 orbital septum 5 45344 -UBERON:0001985 corneal endothelium 5 45345 -UBERON:0002005 enteric nervous system 5 45346 -UBERON:0002052 adrenal gland capsule 5 45347 -UBERON:0002380 trapezius muscle 5 45348 -UBERON:0014798 clavotrapezius muscle 6 45349 -UBERON:0014799 acromiotrapezius muscle 6 45350 -UBERON:0014800 spinotrapezius muscle 6 45351 -UBERON:0002443 choroidal blood vessel 5 45352 -UBERON:0002496 stapes base 5 45353 -UBERON:0002824 vestibular ganglion 5 45354 -UBERON:0002825 superior part of vestibular ganglion 5 45355 -UBERON:0002826 inferior part of vestibular ganglion 5 45356 -UBERON:0002827 vestibulocochlear ganglion 5 45357 -UBERON:0003107 Meckel's cartilage 5 45358 -UBERON:0003267 tooth of upper jaw 5 45359 -UBERON:0011593 maxillary tooth 6 45360 -UBERON:0003666 upper jaw molar 7 45361 -UBERON:0013617 upper primary molar tooth 8 45362 -UBERON:0018588 upper first primary molar tooth 9 45363 -UBERON:0018599 upper second primary molar tooth 9 45364 -UBERON:0013619 upper secondary molar tooth 8 45365 -UBERON:0018575 upper first secondary molar tooth 9 45366 -UBERON:0018576 upper second secondary molar tooth 9 45367 -UBERON:0018577 upper third secondary molar tooth 9 45368 -UBERON:7500057 upper fourth secondary molar tooth 9 45369 -UBERON:0018302 upper molar 1 8 45370 -UBERON:0018575 upper first secondary molar tooth 9 45371 -UBERON:0018588 upper first primary molar tooth 9 45372 -UBERON:0012070 palatal tooth 6 45373 -UBERON:0004767 vomerine tooth 7 45374 -UBERON:0012073 tooth of palatine bone 7 45375 -UBERON:2001632 ectopterygoid tooth 7 45376 -UBERON:0016944 upper premolar tooth 6 45377 -UBERON:0016452 upper secondary premolar tooth 7 45378 -UBERON:0018571 upper first secondary premolar tooth 8 45379 -UBERON:0018572 upper second secondary premolar tooth 8 45380 -UBERON:7500058 upper fourth secondary premolar tooth 8 45381 -UBERON:7500059 upper third secondary premolar tooth 8 45382 -UBERON:0017271 upper primary premolar tooth 7 45383 -UBERON:0018301 upper deciduous premolar 5 8 45384 -UBERON:0018648 upper premolar 4 7 45385 -UBERON:0018613 secondary upper tooth 6 45386 -UBERON:0013619 upper secondary molar tooth 7 45387 -UBERON:0018575 upper first secondary molar tooth 8 45388 -UBERON:0018576 upper second secondary molar tooth 8 45389 -UBERON:0018577 upper third secondary molar tooth 8 45390 -UBERON:7500057 upper fourth secondary molar tooth 8 45391 -UBERON:0016452 upper secondary premolar tooth 7 45392 -UBERON:0018571 upper first secondary premolar tooth 8 45393 -UBERON:0018572 upper second secondary premolar tooth 8 45394 -UBERON:7500058 upper fourth secondary premolar tooth 8 45395 -UBERON:7500059 upper third secondary premolar tooth 8 45396 -UBERON:0018561 upper secondary canine tooth 7 45397 -UBERON:0019253 upper secondary incisor tooth 7 45398 -UBERON:0016454 upper central secondary incisor tooth 8 45399 -UBERON:0016455 upper lateral secondary incisor tooth 8 45400 -UBERON:0018616 primary upper tooth 6 45401 -UBERON:0013617 upper primary molar tooth 7 45402 -UBERON:0018588 upper first primary molar tooth 8 45403 -UBERON:0018599 upper second primary molar tooth 8 45404 -UBERON:0017271 upper primary premolar tooth 7 45405 -UBERON:0018301 upper deciduous premolar 5 8 45406 -UBERON:0018591 upper primary incisor tooth 7 45407 -UBERON:0018593 upper central primary incisor tooth 8 45408 -UBERON:0018594 upper lateral primary incisor tooth 8 45409 -UBERON:0018597 upper primary canine tooth 7 45410 -UBERON:0018621 upper canine tooth 6 45411 -UBERON:0018300 upper canine 1 7 45412 -UBERON:0018561 upper secondary canine tooth 7 45413 -UBERON:0018597 upper primary canine tooth 7 45414 -UBERON:2001626 premaxillary tooth 6 45415 -UBERON:0003450 upper jaw incisor 7 45416 -UBERON:0015847 upper left incisor tooth 8 45417 -UBERON:0015850 upper left incisor tusk 9 45418 -UBERON:0015851 upper right incisor tusk 8 45419 -UBERON:0015852 narwhal tusk 8 45420 -UBERON:0018591 upper primary incisor tooth 8 45421 -UBERON:0018593 upper central primary incisor tooth 9 45422 -UBERON:0018594 upper lateral primary incisor tooth 9 45423 -UBERON:0018603 upper central incisor tooth 8 45424 -UBERON:0016454 upper central secondary incisor tooth 9 45425 -UBERON:0018593 upper central primary incisor tooth 9 45426 -UBERON:0018604 upper lateral incisor tooth 8 45427 -UBERON:0016455 upper lateral secondary incisor tooth 9 45428 -UBERON:0018594 upper lateral primary incisor tooth 9 45429 -UBERON:0019253 upper secondary incisor tooth 8 45430 -UBERON:0016454 upper central secondary incisor tooth 9 45431 -UBERON:0016455 upper lateral secondary incisor tooth 9 45432 -UBERON:4300243 premaxillary tooth 2 7 45433 -UBERON:4300244 premaxillary tooth 3 7 45434 -UBERON:3000642 maxillopalatine tooth 6 45435 -UBERON:0003268 tooth of lower jaw 5 45436 -UBERON:0003451 lower jaw incisor 6 45437 -UBERON:0017748 lower primary incisor tooth 7 45438 -UBERON:0018595 lower central primary incisor tooth 8 45439 -UBERON:0018596 lower lateral primary incisor tooth 8 45440 -UBERON:0018601 lower central incisor tooth 7 45441 -UBERON:0018568 lower central secondary incisor tooth 8 45442 -UBERON:0018595 lower central primary incisor tooth 8 45443 -UBERON:0018602 lower lateral incisor tooth 7 45444 -UBERON:0018570 lower lateral secondary incisor tooth 8 45445 -UBERON:0018596 lower lateral primary incisor tooth 8 45446 -UBERON:0018623 lower secondary incisor tooth 7 45447 -UBERON:0018568 lower central secondary incisor tooth 8 45448 -UBERON:0018570 lower lateral secondary incisor tooth 8 45449 -UBERON:0011594 dentary tooth 6 45450 -UBERON:0003667 lower jaw molar 7 45451 -UBERON:0013620 lower primary molar tooth 8 45452 -UBERON:0018589 lower first primary molar tooth 9 45453 -UBERON:0018600 lower second primary molar tooth 9 45454 -UBERON:0013621 lower secondary molar tooth 8 45455 -UBERON:0018578 lower first secondary molar tooth 9 45456 -UBERON:0018579 lower second secondary molar tooth 9 45457 -UBERON:0018580 lower third secondary molar tooth 9 45458 -UBERON:7500052 lower fourth secondary molar tooth 9 45459 -UBERON:0018282 lower molar 3 8 45460 -UBERON:0018580 lower third secondary molar tooth 9 45461 -UBERON:4300246 dentary tooth 2 7 45462 -UBERON:4300247 dentary tooth 3 7 45463 -UBERON:0011603 coronoid tooth 6 45464 -UBERON:4200238 coronoid fang 7 45465 -UBERON:0016943 lower premolar tooth 6 45466 -UBERON:0016453 lower secondary premolar tooth 7 45467 -UBERON:0018573 lower first secondary premolar tooth 8 45468 -UBERON:0018574 lower second secondary premolar tooth 8 45469 -UBERON:7500053 lower fourth secondary premolar tooth 8 45470 -UBERON:7500054 lower third secondary premolar tooth 8 45471 -UBERON:0017272 lower primary premolar tooth 7 45472 -UBERON:0018281 lower deciduous premolar 5 8 45473 -UBERON:0018284 lower premolar 1 7 45474 -UBERON:0018573 lower first secondary premolar tooth 8 45475 -UBERON:0018285 lower premolar 2 7 45476 -UBERON:0018574 lower second secondary premolar tooth 8 45477 -UBERON:0018299 mandibular symphyseal tooth 6 45478 -UBERON:0018614 permanent lower tooth 6 45479 -UBERON:0013621 lower secondary molar tooth 7 45480 -UBERON:0018578 lower first secondary molar tooth 8 45481 -UBERON:0018579 lower second secondary molar tooth 8 45482 -UBERON:0018580 lower third secondary molar tooth 8 45483 -UBERON:7500052 lower fourth secondary molar tooth 8 45484 -UBERON:0016453 lower secondary premolar tooth 7 45485 -UBERON:0018573 lower first secondary premolar tooth 8 45486 -UBERON:0018574 lower second secondary premolar tooth 8 45487 -UBERON:7500053 lower fourth secondary premolar tooth 8 45488 -UBERON:7500054 lower third secondary premolar tooth 8 45489 -UBERON:0018562 lower secondary canine tooth 7 45490 -UBERON:0018623 lower secondary incisor tooth 7 45491 -UBERON:0018568 lower central secondary incisor tooth 8 45492 -UBERON:0018570 lower lateral secondary incisor tooth 8 45493 -UBERON:0018617 primary lower tooth 6 45494 -UBERON:0013620 lower primary molar tooth 7 45495 -UBERON:0018589 lower first primary molar tooth 8 45496 -UBERON:0018600 lower second primary molar tooth 8 45497 -UBERON:0017272 lower primary premolar tooth 7 45498 -UBERON:0018281 lower deciduous premolar 5 8 45499 -UBERON:0017748 lower primary incisor tooth 7 45500 -UBERON:0018595 lower central primary incisor tooth 8 45501 -UBERON:0018596 lower lateral primary incisor tooth 8 45502 -UBERON:0018598 lower primary canine tooth 7 45503 -UBERON:0018622 lower canine tooth 6 45504 -UBERON:0018562 lower secondary canine tooth 7 45505 -UBERON:0018598 lower primary canine tooth 7 45506 -UBERON:3000519 pseudodentary tooth 6 45507 -UBERON:0003277 skeleton of upper jaw 5 45508 -UBERON:0003278 skeleton of lower jaw 5 45509 -UBERON:0003356 epithelium of nasal septum 5 45510 -UBERON:0003358 epithelium of soft palate 5 45511 -UBERON:0003368 epithelium of hard palate 5 45512 -UBERON:0003407 cartilage of nasal septum 5 45513 -UBERON:0003462 facial bone 5 45514 -UBERON:0001677 sphenoid bone 6 45515 -UBERON:0001679 ethmoid bone 6 45516 -UBERON:0001680 lacrimal bone 6 45517 -UBERON:0001681 nasal bone 6 45518 -UBERON:0001683 jugal bone 6 45519 -UBERON:0002478 orbitosphenoid 6 45520 -UBERON:0002500 zygomatic arch 6 45521 -UBERON:0003971 interfrontal bone 6 45522 -UBERON:0003973 nasal concha of ethmoid bone 6 45523 -UBERON:0005919 supreme nasal concha 7 45524 -UBERON:0005920 superior nasal concha 7 45525 -UBERON:0005921 middle nasal concha 7 45526 -UBERON:0005922 inferior nasal concha 6 45527 -UBERON:0006231 facial bone primordium 6 45528 -UBERON:0006428 basisphenoid bone 6 45529 -UBERON:0006721 alisphenoid bone 6 45530 -UBERON:0008828 presphenoid bone 6 45531 -UBERON:0009470 postsphenoidal bone 6 45532 -UBERON:0009639 body of sphenoid 6 45533 -UBERON:0010297 endochondral scleral ossicle 6 45534 -UBERON:2001432 anterior sclerotic bone 7 45535 -UBERON:2001433 posterior sclerotic bone 7 45536 -UBERON:0010298 intramembranous scleral ossicle 6 45537 -UBERON:0010308 os opticus 7 45538 -UBERON:0010309 palpebral bone 6 45539 -UBERON:0010311 scleral sesamoid bone 6 45540 -UBERON:0010389 pterygoid bone 6 45541 -UBERON:0010750 prefrontal bone 6 45542 -UBERON:0011167 septomaxilla bone 6 45543 -UBERON:0011168 postfrontal bone 6 45544 -UBERON:0011169 postorbital bone 6 45545 -UBERON:0012360 bone of jaw 6 45546 -UBERON:0004768 bone of lower jaw 7 45547 -UBERON:0004742 dentary 8 45548 -UBERON:0001684 mandible 9 45549 -UBERON:0004744 articular/anguloarticular 8 45550 -UBERON:0011079 angular bone 8 45551 -UBERON:0011598 coronoid bone 8 45552 -UBERON:4200234 precoronoid bone 9 45553 -UBERON:4200235 postcoronoid bone 9 45554 -UBERON:4200236 anterior coronoid bone 9 45555 -UBERON:4200237 posterior coronoid bone 9 45556 -UBERON:0011635 splenial bone 8 45557 -UBERON:0011636 surangular bone 8 45558 -UBERON:4200243 surangular pit line 9 45559 -UBERON:0011637 prearticular bone 8 45560 -UBERON:0011770 mentomeckelian 8 45561 -UBERON:2000422 retroarticular 8 45562 -UBERON:2001274 coronomeckelian 8 45563 -UBERON:2001805 articular bone 8 45564 -UBERON:3000515 pseudoangular 8 45565 -UBERON:3000518 pseudodentary 8 45566 -UBERON:3000966 angulosplenial 8 45567 -UBERON:4200245 parasymphysial plate 8 45568 -UBERON:4200246 mesial parasymphysial foramen 9 45569 -UBERON:4200247 lateral parasymphysial foramen 9 45570 -UBERON:4300199 postsplenial 8 45571 -UBERON:0011597 bone of upper jaw 7 45572 -UBERON:0001682 palatine bone 8 45573 -UBERON:0002244 premaxilla 8 45574 -UBERON:0002396 vomer 8 45575 -UBERON:0002397 maxilla 8 45576 -UBERON:0006597 quadrate bone 8 45577 -UBERON:0011267 quadratojugal bone 8 45578 -UBERON:0011628 early premaxilla 8 45579 -UBERON:0011634 ectopterygoid bone 8 45580 -UBERON:2000103 supramaxilla 8 45581 -UBERON:2000240 metapterygoid 8 45582 -UBERON:2000620 autopalatine 8 45583 -UBERON:2000657 entopterygoid 8 45584 -UBERON:2001406 kinethmoid bone 8 45585 -UBERON:2001692 median premaxilla 8 45586 -UBERON:2002020 hypomaxilla 8 45587 -UBERON:3000288 maxillopalatine 8 45588 -UBERON:3000323 nasopremaxilla 8 45589 -UBERON:4300017 rostrodermethmoid 8 45590 -UBERON:3000645 corpus 7 45591 -UBERON:2000127 antorbital 6 45592 -UBERON:2000203 rhinosphenoid 6 45593 -UBERON:2000376 infraorbital 6 45594 -UBERON:2000223 infraorbital 1 7 45595 -UBERON:2000495 infraorbital 5 7 45596 -UBERON:2001407 infraorbital 2 7 45597 -UBERON:2001408 infraorbital 3 7 45598 -UBERON:2001409 infraorbital 4 7 45599 -UBERON:2001674 infraorbital 6 7 45600 -UBERON:2001702 infraorbital 7 7 45601 -UBERON:2001703 infraorbital 8 7 45602 -UBERON:2001704 infraorbital 9 7 45603 -UBERON:2001705 infraorbital 10 7 45604 -UBERON:2001706 infraorbital 11 7 45605 -UBERON:2001707 infraorbital 12 7 45606 -UBERON:2001708 dermosphenotic 7 45607 -UBERON:2000691 supraorbital bone 6 45608 -UBERON:4200244 anterior supraorbital bone 7 45609 -UBERON:4200091 ethomosphenoid region 6 45610 -UBERON:4500005 prenasal ossicle 6 45611 -UBERON:0003500 corneal blood vessel 5 45612 -UBERON:0003501 retina blood vessel 5 45613 -UBERON:0001620 central retinal artery 6 45614 -UBERON:0003511 iris blood vessel 5 45615 -UBERON:0003581 eyelid connective tissue 5 45616 -UBERON:0009648 eyelid subcutaneous connective tissue 6 45617 -UBERON:0013120 eyelid submuscular connective tissue 6 45618 -UBERON:0003585 dermis connective tissue 5 45619 -UBERON:0003426 dermis adipose tissue 6 45620 -UBERON:4000104 ganoine 6 45621 -UBERON:4000107 elasmodine 6 45622 -UBERON:0003682 palatal muscle 5 45623 -UBERON:0001574 palatoglossus muscle 6 45624 -UBERON:0008585 levator veli palatini 6 45625 -UBERON:0008586 tensor veli palatini 6 45626 -UBERON:0010234 palatopharyngeus muscle 6 45627 -UBERON:0010235 uvular muscle 6 45628 -UBERON:0003689 sella turcica 5 45629 -UBERON:0003952 anterior stroma of cornea 5 45630 -UBERON:0003953 posterior stroma of cornea 5 45631 -UBERON:0003957 Bruch's membrane 5 45632 -UBERON:0003960 styloid process of temporal bone 5 45633 -UBERON:0003966 gonial bone 5 45634 -UBERON:0003998 hyoid bone lesser horn 5 45635 -UBERON:0004000 tarsal gland acinus 5 45636 -UBERON:0004103 alveolar ridge 5 45637 -UBERON:0004527 alveolar process of maxilla 6 45638 -UBERON:3000505 processus pterygoideus of maxilla 7 45639 -UBERON:0004528 alveolar ridge of mandible 6 45640 -UBERON:0034898 alveolar ridge of premaxilla 6 45641 -UBERON:0004153 ventricular septum intermedium 5 45642 -UBERON:0004361 stylohyoid ligament 5 45643 -UBERON:0004367 Descemet's membrane 5 45644 -UBERON:0004368 Reichert's cartilage 5 45645 -UBERON:0004370 anterior limiting lamina of cornea 5 45646 -UBERON:0004508 skeletal muscle tissue of levator palpebrae superioris 5 45647 -UBERON:0004509 skeletal muscle tissue of trapezius 5 45648 -UBERON:0004546 cribriform plate 5 45649 -UBERON:0004649 sphenoid bone pterygoid process 5 45650 -UBERON:0004654 temporal process of zygomatic bone 5 45651 -UBERON:0004655 zygomatic process of temporal bone 5 45652 -UBERON:0004657 mandible condylar process 5 45653 -UBERON:0004658 mandible head 5 45654 -UBERON:0004659 mandible neck 5 45655 -UBERON:0004660 mandible coronoid process 5 45656 -UBERON:0004661 mandible temporal crest 5 45657 -UBERON:0004666 interventricular septum membranous part 5 45658 -UBERON:0004724 medial palpebral ligament 5 45659 -UBERON:0004752 palatoquadrate cartilage 5 45660 -UBERON:3010821 hyoquadrate process 6 45661 -UBERON:0004772 eyelid tarsus 5 45662 -UBERON:0004773 superior eyelid tarsus 6 45663 -UBERON:0004774 inferior eyelid tarsus 6 45664 -UBERON:0005018 mucosa of nasal septum 5 45665 -UBERON:0005019 mucosa of palate 5 45666 -UBERON:0005024 mucosa of soft palate 6 45667 -UBERON:0005025 mucosa of uvula 7 45668 -UBERON:0005046 mucosa of hard palate 6 45669 -UBERON:0005336 capillary layer of choroid 5 45670 -UBERON:0005342 malleus head 5 45671 -UBERON:0005354 malleus processus brevis 5 45672 -UBERON:0005355 malleus neck 5 45673 -UBERON:0005363 inferior vagus X ganglion 5 45674 -UBERON:0005427 corneal primordium 5 45675 -UBERON:0005446 foramen rotundum 5 45676 -UBERON:0005492 hyaloid vessel 5 45677 -UBERON:0002270 hyaloid artery 6 45678 -UBERON:0006011 hyaloid vein 6 45679 -UBERON:0005619 secondary palatal shelf 5 45680 -UBERON:0005620 primary palate 5 45681 -UBERON:0005653 upper jaw molar epithelium 5 45682 -UBERON:0005654 lower jaw molar epithelium 5 45683 -UBERON:0005658 secondary palatal shelf epithelium 5 45684 -UBERON:0005659 primary palate epithelium 5 45685 -UBERON:0005709 upper jaw incisor epithelium 5 45686 -UBERON:0005710 lower jaw incisor epithelium 5 45687 -UBERON:0005745 optic foramen 5 45688 -UBERON:0005869 maxillary process of inferior nasal concha 5 45689 -UBERON:0005871 palatine process of maxilla 5 45690 -UBERON:0005925 ethmoidal process of inferior nasal concha 5 45691 -UBERON:0005989 atrioventricular septum 5 45692 -UBERON:0005991 aortic valve anulus 5 45693 -UBERON:0005993 pulmonary valve anulus 5 45694 -UBERON:0005994 chorda tendineae 5 45695 -UBERON:0014851 chorda tendinea of left ventricle 6 45696 -UBERON:0014852 chorda tendinea of right ventricle 6 45697 -UBERON:0005995 mitral valve anulus 5 45698 -UBERON:0005997 tricuspid valve anulus 5 45699 -UBERON:0006006 metoptic pillar 5 45700 -UBERON:0006009 cusp of cardiac valve 5 45701 -UBERON:0005990 aortic valve cusp 6 45702 -UBERON:0005992 pulmonary valve cusp 6 45703 -UBERON:0005996 mitral valve cusp 6 45704 -UBERON:0005998 tricuspid valve cusp 6 45705 -UBERON:0006010 hyaloid canal 5 45706 -UBERON:0006207 aortico-pulmonary spiral septum 5 45707 -UBERON:0006271 orbital fissure 5 45708 -UBERON:0005480 superior orbital fissure 6 45709 -UBERON:0014870 inferior orbital fissure 6 45710 -UBERON:0006672 incisive canal 5 45711 -UBERON:0006673 mandibular canal 5 45712 -UBERON:0006722 manubrium of malleus 5 45713 -UBERON:0006812 mental foramen 5 45714 -UBERON:0006813 nasal skeleton 5 45715 -UBERON:3010146 lacrimal 6 45716 -UBERON:0006858 adrenal/interrenal gland 5 45717 -UBERON:0002369 adrenal gland 6 45718 -UBERON:0001233 right adrenal gland 7 45719 -UBERON:0001234 left adrenal gland 7 45720 -UBERON:0006856 interrenal gland 6 45721 -UBERON:0006959 mandible angular process 5 45722 -UBERON:0007681 facial neural crest 5 45723 -UBERON:0008266 periodontal ligament 5 45724 -UBERON:0008799 transverse palatine fold 5 45725 -UBERON:0008969 dental follicle 5 45726 -UBERON:0009119 branchial basket 5 45727 -UBERON:0009199 facial suture 5 45728 -UBERON:0011160 nasal suture 6 45729 -UBERON:0009203 internasal suture 7 45730 -UBERON:0034909 intermaxillary suture 6 45731 -UBERON:0009207 geschmacksstreifen 5 45732 -UBERON:0009753 adrenal gland cortex zone 5 45733 -UBERON:0002053 zona glomerulosa of adrenal gland 6 45734 -UBERON:0002054 zona fasciculata of adrenal gland 6 45735 -UBERON:0002055 zona reticularis of adrenal gland 6 45736 -UBERON:0009024 adrenal gland X zone 6 45737 -UBERON:0013745 zona intermedia of adrenal gland 6 45738 -UBERON:0010074 chromaffin system 5 45739 -UBERON:0010233 stroma of thyroid gland 5 45740 -UBERON:0010244 choroid tapetum lucidum 5 45741 -UBERON:0010246 choroidal guanine tapetum 6 45742 -UBERON:0010247 choroidal tapetum cellulosum 6 45743 -UBERON:0010248 choroidal tapetum fibrosum 6 45744 -UBERON:0010291 layer of sclera 5 45745 -UBERON:0010292 episcleral layer of eyeball 6 45746 -UBERON:0010294 scleral endothelium 6 45747 -UBERON:0010295 substantia propria of sclera 6 45748 -UBERON:0010293 suprachoroid lamina 5 45749 -UBERON:0010321 skeletal element of eye region 5 45750 -UBERON:0010296 scleral skeletal element 6 45751 -UBERON:0010289 scleral cartilage 7 45752 -UBERON:4300181 posterior sclerotic cartilage 8 45753 -UBERON:4300182 anterior sclerotic cartilage 8 45754 -UBERON:0010290 scleral ossicle 7 45755 -UBERON:0007804 sclerotic ring 8 45756 -UBERON:0010297 endochondral scleral ossicle 8 45757 -UBERON:2001432 anterior sclerotic bone 9 45758 -UBERON:2001433 posterior sclerotic bone 9 45759 -UBERON:0010298 intramembranous scleral ossicle 8 45760 -UBERON:0010308 os opticus 9 45761 -UBERON:0010311 scleral sesamoid bone 8 45762 -UBERON:0010309 palpebral bone 6 45763 -UBERON:0010310 nictitating membrane lamina 6 45764 -UBERON:0010326 optic pedicel 6 45765 -UBERON:2000127 antorbital 6 45766 -UBERON:2000203 rhinosphenoid 6 45767 -UBERON:2000376 infraorbital 6 45768 -UBERON:2000223 infraorbital 1 7 45769 -UBERON:2000495 infraorbital 5 7 45770 -UBERON:2001407 infraorbital 2 7 45771 -UBERON:2001408 infraorbital 3 7 45772 -UBERON:2001409 infraorbital 4 7 45773 -UBERON:2001674 infraorbital 6 7 45774 -UBERON:2001702 infraorbital 7 7 45775 -UBERON:2001703 infraorbital 8 7 45776 -UBERON:2001704 infraorbital 9 7 45777 -UBERON:2001705 infraorbital 10 7 45778 -UBERON:2001706 infraorbital 11 7 45779 -UBERON:2001707 infraorbital 12 7 45780 -UBERON:2001708 dermosphenotic 7 45781 -UBERON:2000691 supraorbital bone 6 45782 -UBERON:4200244 anterior supraorbital bone 7 45783 -UBERON:0010365 odontoid tissue 5 45784 -UBERON:0001751 dentine 6 45785 -UBERON:0001752 enamel 6 45786 -UBERON:0001753 cementum 6 45787 -UBERON:0011587 pre-dentine 6 45788 -UBERON:0011588 pre-enamel 6 45789 -UBERON:0011688 pre-enameloid 6 45790 -UBERON:0011692 enameloid 6 45791 -UBERON:4000087 cosmine 6 45792 -UBERON:4000097 orthodentine 6 45793 -UBERON:4000102 osteodentine 6 45794 -UBERON:4000104 ganoine 6 45795 -UBERON:4000106 vasodentine 6 45796 -UBERON:4000107 elasmodine 6 45797 -UBERON:4000123 odontode tissue 6 45798 -UBERON:4300212 acrodin 6 45799 -UBERON:0010367 conjunctival vein 5 45800 -UBERON:0010372 uncinate process of ethmoid 5 45801 -UBERON:0010379 superior tarsal muscle 5 45802 -UBERON:0010426 oropharyngeal choana 5 45803 -UBERON:0010889 ectethmoid 5 45804 -UBERON:0011085 palatoquadrate arch 5 45805 -UBERON:0011156 facial skeleton 5 45806 -UBERON:0011244 perpendicular plate of ethmoid 5 45807 -UBERON:0011245 infra-orbital canal of maxilla 5 45808 -UBERON:0011309 body of mandible 5 45809 -UBERON:0011310 masseteric fossa 5 45810 -UBERON:0011346 palatine raphe 5 45811 -UBERON:0011347 raphe of hard palate 6 45812 -UBERON:0011348 raphe of soft palate 6 45813 -UBERON:0011576 supraorbital ridge 5 45814 -UBERON:0011599 lenticular process of incus bone 5 45815 -UBERON:0011741 cardiac valve leaflet 5 45816 -UBERON:0005484 tricuspid valve leaflet 6 45817 -UBERON:0005998 tricuspid valve cusp 7 45818 -UBERON:0007151 mitral valve leaflet 6 45819 -UBERON:0014853 commissural leaflet of mitral valve 7 45820 -UBERON:0014854 anterior leaflet of mitral valve 7 45821 -UBERON:0014855 posterior leaflet of mitral valve 7 45822 -UBERON:0011742 aortic valve leaflet 6 45823 -UBERON:0011745 pulmonary valve leaflets 6 45824 -UBERON:0011865 corneal stroma collagen fibril 5 45825 -UBERON:0012074 bony part of hard palate 5 45826 -UBERON:0012110 frontal process of zygomatic bone 5 45827 -UBERON:0012175 acoustico-facial VII-VIII ganglion complex 5 45828 -UBERON:0013068 palatine torus 5 45829 -UBERON:0013135 interdental plate 5 45830 -UBERON:0013153 arachnoid villus 5 45831 -UBERON:0013217 zygomatic plate 5 45832 -UBERON:0013397 stratum argenteum of choroid 5 45833 -UBERON:0013399 blood vessel layer of choroid 5 45834 -UBERON:0013450 simian shelf 5 45835 -UBERON:0013767 frontal process of maxilla 5 45836 -UBERON:0014387 mesenchyme derived from neural crest 5 45837 -UBERON:0002062 endocardial cushion 6 45838 -UBERON:0036066 inferior endocardial cushion 7 45839 -UBERON:0036067 superior endocardial cushion 7 45840 -UBERON:0003415 mesenchyme of nasal septum 6 45841 -UBERON:0003417 mesenchyme of soft palate 6 45842 -UBERON:0003424 mesenchyme of hard palate 6 45843 -UBERON:0005687 orbitosphenoid cartilage element 6 45844 -UBERON:0005704 secondary palatal shelf mesenchyme 6 45845 -UBERON:0006263 Meckel's cartilage pre-cartilage condensation 6 45846 -UBERON:0007213 mesenchyme derived from head neural crest 6 45847 -UBERON:0001763 odontogenic papilla 7 45848 -UBERON:0003317 odontogenic papilla of incisor 8 45849 -UBERON:0005707 upper jaw incisor odontogenic papilla 9 45850 -UBERON:0005708 lower jaw incisor odontogenic papilla 9 45851 -UBERON:0015844 molar dental papilla 8 45852 -UBERON:0005700 upper jaw molar odontogenic papilla 9 45853 -UBERON:0005701 lower jaw molar odontogenic papilla 9 45854 -UBERON:4000028 integumentary papilla 8 45855 -UBERON:4000030 oropharyngeal papilla 8 45856 -UBERON:0003314 eye mesenchyme 7 45857 -UBERON:0006230 extrinsic ocular pre-muscle mass 8 45858 -UBERON:0010330 eyelid mesenchyme 8 45859 -UBERON:0003857 upper eyelid mesenchyme 9 45860 -UBERON:0003858 lower eyelid mesenchyme 9 45861 -UBERON:0003421 mesenchyme of vomeronasal organ 7 45862 -UBERON:0003856 uncondensed odontogenic mesenchyme 7 45863 -UBERON:0011641 odontogenic mesenchyme of molar 8 45864 -UBERON:0015846 incisor mesenchyme 8 45865 -UBERON:0004031 head ectomesenchyme 7 45866 -UBERON:0005563 trigeminal neural crest 7 45867 -UBERON:0005565 facio-acoustic neural crest 7 45868 -UBERON:0009192 basisphenoid pre-cartilage condensation 7 45869 -UBERON:0009194 basisphenoid cartilage condenstion 7 45870 -UBERON:0009477 associated mesenchyme of otic placode 7 45871 -UBERON:0009500 periotic mesenchyme 7 45872 -UBERON:0009501 mesenchyme of fronto-nasal process 7 45873 -UBERON:0009204 medial nasal process mesenchyme 8 45874 -UBERON:0009205 lateral nasal process mesenchyme 8 45875 -UBERON:0009920 optic neural crest 7 45876 -UBERON:0010258 mesenchyme from rhombencephalic neural crest 7 45877 -UBERON:0003414 mesenchyme of mandible 8 45878 -UBERON:0005700 upper jaw molar odontogenic papilla 8 45879 -UBERON:0005701 lower jaw molar odontogenic papilla 8 45880 -UBERON:0005705 primary palate mesenchyme 8 45881 -UBERON:0005707 upper jaw incisor odontogenic papilla 8 45882 -UBERON:0005708 lower jaw incisor odontogenic papilla 8 45883 -UBERON:0010254 2nd arch mesenchyme from neural crest 8 45884 -UBERON:0010255 3rd arch mesenchyme from neural crest 8 45885 -UBERON:0010256 4th arch mesenchyme from neural crest 8 45886 -UBERON:0010257 6th arch mesenchyme from neural crest 8 45887 -UBERON:0010259 1st arch mesenchyme from neural crest 8 45888 -UBERON:0010252 1st arch mandibular mesenchyme from neural crest 9 45889 -UBERON:0010253 1st arch maxillary mesenchyme from neural crest 9 45890 -UBERON:0010334 maxillary process mesenchyme from neural crest 8 45891 -UBERON:0010336 mandibular process mesenchyme from neural crest 8 45892 -UBERON:0010354 Reichert's cartilage pre-cartilage condensation 8 45893 -UBERON:0010955 trapezius pre-muscle mass 8 45894 -UBERON:0010732 alisphenoid pre-cartilage condensation 7 45895 -UBERON:0010733 alisphenoid cartilage element 7 45896 -UBERON:0007214 mesenchyme derived from trunk neural crest 6 45897 -UBERON:0011210 migration pathway NC-derived mesenchyme 7 45898 -UBERON:0011208 medial migration pathway NC-derived mesenchyme 8 45899 -UBERON:0011209 lateral migration pathway NC-derived mesenchyme 8 45900 -UBERON:0009191 sphenoid bone pre-cartilage condensation 6 45901 -UBERON:0009193 sphenoid cartilage element 6 45902 -UBERON:0010359 pharyngeal arch mesenchyme from neural crest 6 45903 -UBERON:0010254 2nd arch mesenchyme from neural crest 7 45904 -UBERON:0010255 3rd arch mesenchyme from neural crest 7 45905 -UBERON:0010256 4th arch mesenchyme from neural crest 7 45906 -UBERON:0010257 6th arch mesenchyme from neural crest 7 45907 -UBERON:0010259 1st arch mesenchyme from neural crest 7 45908 -UBERON:0010252 1st arch mandibular mesenchyme from neural crest 8 45909 -UBERON:0010253 1st arch maxillary mesenchyme from neural crest 8 45910 -UBERON:0010728 sphenoid lesser wing pre-cartilage condensation 6 45911 -UBERON:0014397 lateral process of malleus 5 45912 -UBERON:0014780 palatine aponeurosis 5 45913 -UBERON:0014916 velar vocal fold 5 45914 -UBERON:0015060 sphenoid endochondral element 5 45915 -UBERON:0001677 sphenoid bone 6 45916 -UBERON:0009191 sphenoid bone pre-cartilage condensation 6 45917 -UBERON:0009193 sphenoid cartilage element 6 45918 -UBERON:0015224 interventricular foramen intermedium 5 45919 -UBERON:0015751 inferior tarsal muscle 5 45920 -UBERON:0016492 foramen spinosum of sphenoid bone 5 45921 -UBERON:0016881 craniopharyngeal canal 5 45922 -UBERON:0016942 rostral margin of orbit 5 45923 -UBERON:0017249 incisive process of premaxilla 5 45924 -UBERON:0017312 cingulum of upper canine tooth 5 45925 -UBERON:0017313 cingulum of lower canine tooth 5 45926 -UBERON:0018103 posterior fascicle of palatopharyngeus 5 45927 -UBERON:0018160 anterior process of malleus 5 45928 -UBERON:0018242 palatine bone horizontal plate 5 45929 -UBERON:0018265 anterior root of zygomatic arch 5 45930 -UBERON:0018303 adrenal tissue 5 45931 -UBERON:0018268 type 1 adrenal tissue 6 45932 -UBERON:0018269 type 2 adrenal tissue 6 45933 -UBERON:0018270 type 3 adrenal tissue 6 45934 -UBERON:0018271 type 4 adrenal tissue 6 45935 -UBERON:0018314 choanal groove 5 45936 -UBERON:0018331 intraramal joint 5 45937 -UBERON:0018333 labial cartilage 5 45938 -UBERON:0018334 lateral condyle of quadrate 5 45939 -UBERON:0018336 maxillary shank 5 45940 -UBERON:0018337 medial condyle of quadrate 5 45941 -UBERON:0018341 nasal process of premaxilla 5 45942 -UBERON:0018353 quadrate condyle 5 45943 -UBERON:0018373 vidian canal 5 45944 -UBERON:0018407 infra-orbital foramen of maxilla 5 45945 -UBERON:0018409 infra-orbital groove of maxilla 5 45946 -UBERON:0018415 ethmoid foramen 5 45947 -UBERON:0018508 foramen of nasal bone 5 45948 -UBERON:0018542 mandibular symphyseal region 5 45949 -UBERON:0034670 palatal taste bud 5 45950 -UBERON:0034764 remnant of cardiac valve 5 45951 -UBERON:0034900 palatine process of premaxilla 5 45952 -UBERON:0034978 paraganglion (generic) 5 45953 -UBERON:0012279 chromaffin paraganglion 6 45954 -UBERON:0001237 paraaortic body 7 45955 -UBERON:0034979 nonchromaffin paraganglion 6 45956 -UBERON:0001629 carotid body 7 45957 -UBERON:0034971 aortic body 7 45958 -UBERON:0034972 jugular body 7 45959 -UBERON:0035122 interincisive suture 5 45960 -UBERON:0035123 palatomaxillary suture 5 45961 -UBERON:0035126 transverse palatine suture 5 45962 -UBERON:0035127 suture of hard palate 5 45963 -UBERON:0016442 median palatine suture 6 45964 -UBERON:0035130 auditory ossicle endochondral element 5 45965 -UBERON:0001686 auditory ossicle bone 6 45966 -UBERON:0001687 stapes bone 7 45967 -UBERON:0001688 incus bone 7 45968 -UBERON:0001689 malleus bone 7 45969 -UBERON:3000443 plectral apparatus 7 45970 -UBERON:0015016 stapes endochondral element 6 45971 -UBERON:0001687 stapes bone 7 45972 -UBERON:0006294 stapes pre-cartilage condensation 7 45973 -UBERON:0010055 stapes cartilage element 7 45974 -UBERON:0015017 incus endochondral element 6 45975 -UBERON:0001688 incus bone 7 45976 -UBERON:0006248 incus pre-cartilage condensation 7 45977 -UBERON:0007374 incus cartilage element 7 45978 -UBERON:0015018 malleus endochondral element 6 45979 -UBERON:0001689 malleus bone 7 45980 -UBERON:0006262 malleus pre-cartilage condensation 7 45981 -UBERON:0010054 malleus cartilage element 7 45982 -UBERON:0035131 auditory ossicle cartilage element 6 45983 -UBERON:0007374 incus cartilage element 7 45984 -UBERON:0010054 malleus cartilage element 7 45985 -UBERON:0010055 stapes cartilage element 7 45986 -UBERON:0035132 auditory ossicle pre-cartilage element 6 45987 -UBERON:0006248 incus pre-cartilage condensation 7 45988 -UBERON:0006262 malleus pre-cartilage condensation 7 45989 -UBERON:0006294 stapes pre-cartilage condensation 7 45990 -UBERON:0035139 anterior nasal spine of maxilla 5 45991 -UBERON:0035298 tuberculum sellae 5 45992 -UBERON:0035599 profundal part of trigeminal ganglion complex 5 45993 -UBERON:0035601 maxillomandibular part of trigeminal ganglion complex 5 45994 -UBERON:0035848 infraorbital margin 5 45995 -UBERON:0035849 orbital margin 5 45996 -UBERON:0035957 antotic pillar 5 45997 -UBERON:0035958 preoptic pillar 5 45998 -UBERON:0035966 scleral lamina cribrosa 5 45999 -UBERON:0036167 Sattler's layer 5 46000 -UBERON:0036168 Haller's layer 5 46001 -UBERON:0036254 piriform aperture 5 46002 -UBERON:0036300 tributary of central retinal vein 5 46003 -UBERON:0037089 wall of orbit 5 46004 -UBERON:2000224 quadrate ventral process 5 46005 -UBERON:2000699 entopterygoid vertical strut 5 46006 -UBERON:2001577 premaxilla ascending process 5 46007 -UBERON:2001578 anterior dorsomedial process of autopalatine 5 46008 -UBERON:2001603 maxilla ascending process 5 46009 -UBERON:2001610 quadrate dorsal process 5 46010 -UBERON:2001611 quadrate posterodorsal process 5 46011 -UBERON:2001688 palatine cartilage 5 46012 -UBERON:2001689 pterygoquadrate cartilage 5 46013 -UBERON:2001690 anterior cartilage of palatine 5 46014 -UBERON:2001691 posterior cartilage of palatine 5 46015 -UBERON:2001752 pre-narial cartilage 5 46016 -UBERON:2002009 medial cartilage of palatine 5 46017 -UBERON:2002012 dentary foramen 5 46018 -UBERON:2002120 orbitosphenoid septum 5 46019 -UBERON:2002257 premaxilla dentigerous process 5 46020 -UBERON:3000002 alary cartilage 5 46021 -UBERON:3000003 alary process of premaxilla 5 46022 -UBERON:3000012 angulosplenial coronoid process 5 46023 -UBERON:3000015 anterior maxillary process 5 46024 -UBERON:3000016 anterior nasal wall 5 46025 -UBERON:3000017 anterior process of pars palatina of maxilla 5 46026 -UBERON:3000018 anterior ramus of pterygoid 5 46027 -UBERON:3000022 antorbital process 5 46028 -UBERON:3000031 ascending process of palatoquadrate 5 46029 -UBERON:3000036 basal process of palatoquadrate 5 46030 -UBERON:3000038 basimandibulare 5 46031 -UBERON:3000059 capsular process 5 46032 -UBERON:3000068 cartilago ectochoanalis 5 46033 -UBERON:3000069 cartilago infranarina 5 46034 -UBERON:3000079 cartilago retronarina 5 46035 -UBERON:3000110 crista contacta 5 46036 -UBERON:3000111 crista dentalis of maxilla 5 46037 -UBERON:3000112 crista dentalis of premaxilla 5 46038 -UBERON:3000113 crista intermedia 5 46039 -UBERON:3000115 crista lateralis of premaxilla 5 46040 -UBERON:3000117 crista subnasalis 5 46041 -UBERON:3000118 crista supraorbitalis 5 46042 -UBERON:3000131 dilatatio alaris 5 46043 -UBERON:3000155 extremitas anterior 5 46044 -UBERON:3000177 flange of quadratojugal 5 46045 -UBERON:3000178 footplate of pars media plectri 5 46046 -UBERON:3000234 inferior prenasal cartilage 5 46047 -UBERON:3000237 infrarostral cartilage 5 46048 -UBERON:3000254 lamella alaris 5 46049 -UBERON:3000255 lamina anterior of pars facialis 5 46050 -UBERON:3000263 lamina precerebralis 5 46051 -UBERON:3000264 lamina superior 5 46052 -UBERON:3000280 margo mandibularis of pterygoid 5 46053 -UBERON:3000281 margo orbitalis of maxilla 5 46054 -UBERON:3000282 margo orbitalis of pterygoid 5 46055 -UBERON:3000283 margo orbitalis of squamosal 5 46056 -UBERON:3000284 margo tympanicus of pterygoid 5 46057 -UBERON:3000290 medial inferior prenasal cartilage 5 46058 -UBERON:3000292 medial ramus of pterygoid 5 46059 -UBERON:3000294 median prenasal process 5 46060 -UBERON:3000329 oblique cartilage 5 46061 -UBERON:3000363 otic ligament 5 46062 -UBERON:3000364 otic plate of pterygoid 5 46063 -UBERON:3000365 otic process 5 46064 -UBERON:3000367 otic ramus of squamosal 5 46065 -UBERON:3000375 palatine process of the pars facialis of the maxilla 5 46066 -UBERON:3000380 palatoquadrate articular process 5 46067 -UBERON:3000381 paranasal commissure 5 46068 -UBERON:3000389 paries nasi 5 46069 -UBERON:3000394 pars articularis of mandibular arch 5 46070 -UBERON:3000399 pars externa plectri 5 46071 -UBERON:3000400 pars facialis of maxilla 5 46072 -UBERON:3000401 pars facialis of maxillopalatine 5 46073 -UBERON:3000406 pars interna plectri 5 46074 -UBERON:3000408 pars media plectri 5 46075 -UBERON:3000434 planum antorbitale 5 46076 -UBERON:3000437 planum conchale 5 46077 -UBERON:3000438 planum internasale 5 46078 -UBERON:3000440 planum terminale 5 46079 -UBERON:3000441 planum triangulare 5 46080 -UBERON:3000446 posterior condyle 5 46081 -UBERON:3000448 posterior maxillary process 5 46082 -UBERON:3000449 posterior maxillary process dorsal process 5 46083 -UBERON:3000450 posterior mental process 5 46084 -UBERON:3000451 posterior ramus of pterygoid 5 46085 -UBERON:3000453 posterolateral vomerine process 5 46086 -UBERON:3000454 postnasal wall 5 46087 -UBERON:3000459 prearticular coronoid process 5 46088 -UBERON:3000467 preorbital process of the pars facialis of the maxilla 5 46089 -UBERON:3000486 processus ascendens plectri 5 46090 -UBERON:3000492 processus infrafenestralis 5 46091 -UBERON:3000493 processus internus of pseudoangular 5 46092 -UBERON:3000494 processus lingualis of pterygoid 5 46093 -UBERON:3000500 processus posterior of maxilla 5 46094 -UBERON:3000509 processus suprafenestralis 5 46095 -UBERON:3000512 processus zygomatico-maxillaris 5 46096 -UBERON:3000516 pseudobasal process 5 46097 -UBERON:3000523 pterygoid process of palatoquadrate 5 46098 -UBERON:3000527 quadrate process of palatoquadrate 5 46099 -UBERON:3000543 retroarticular process 5 46100 -UBERON:3000547 rostral process 5 46101 -UBERON:3000563 seydels palatal process 5 46102 -UBERON:3000565 skeletal support for eminentia olfactoria 5 46103 -UBERON:3000569 solum nasi 5 46104 -UBERON:3000580 stylus of pars media plectri 5 46105 -UBERON:3000586 superior prenasal cartilage 5 46106 -UBERON:3000601 tectum nasi 5 46107 -UBERON:3000628 ventral ramus of squamosal 5 46108 -UBERON:3000634 vomerine canal 5 46109 -UBERON:3000639 zygomatic ramus of squamosal 5 46110 -UBERON:3000644 processus lingularis of nasal skeleton 5 46111 -UBERON:3000646 margo libera 5 46112 -UBERON:3000647 crista interna 5 46113 -UBERON:3000648 crista praeopercularis 5 46114 -UBERON:3000649 anterior process of vomer 5 46115 -UBERON:3000650 processus frontalis of maxilla 5 46116 -UBERON:3000651 lamina anterior of maxilla 5 46117 -UBERON:3000653 pars glenoidalis of quadratojugal 5 46118 -UBERON:3000654 pars jugalis 5 46119 -UBERON:3000655 processus dorsalis of lamella alaris 5 46120 -UBERON:3000656 processus posterodorsalis of lamella alaris 5 46121 -UBERON:3000657 dentigerous process 5 46122 -UBERON:3000658 prechoanal process 5 46123 -UBERON:3000659 postchoanal process 5 46124 -UBERON:3000660 margo choanalis 5 46125 -UBERON:3000661 crista vomeri 5 46126 -UBERON:3000998 suprarostral cartilage 5 46127 -UBERON:3010061 anterior quadratocranial commissure 5 46128 -UBERON:3010094 quadratoethmoid process 5 46129 -UBERON:3010458 suprarostral ala 5 46130 -UBERON:3010528 articular process of palatoquadrate 5 46131 -UBERON:3010820 suboccular arch 5 46132 -UBERON:3010824 processus triangularis of palatoquadrate cartilage 5 46133 -UBERON:3010827 anterior prenasal cartilage 5 46134 -UBERON:4200198 incisor process 5 46135 -UBERON:4200251 meckelian foramen 5 46136 -UBERON:4300002 palatine prong 5 46137 -UBERON:4300196 processus descendens of sphenoid 5 46138 -UBERON:4300197 Westoll line 5 46139 -UBERON:4300252 ethmo-palatine cartilage 5 46140 -UBERON:4300275 suborbital stay 5 46141 -UBERON:4500016 premaxilla articular process 5 46142 -UBERON:4500018 premaxilla maxillary process 5 46143 -UBERON:0010348 hyoid pre-muscle mass 4 46144 -UBERON:0010404 lateral ventricle subependymal layer 4 46145 -UBERON:0010408 ocular angle artery 4 46146 -UBERON:0010415 barrel cortex 4 46147 -UBERON:0010507 layer of dura mater 4 46148 -UBERON:0010505 periosteal dura mater 5 46149 -UBERON:0010506 meningeal dura mater 5 46150 -UBERON:0010752 exoccipital cartilage element 4 46151 -UBERON:0010887 tragus 4 46152 -UBERON:0010892 mesethmoid element 4 46153 -UBERON:0011238 mesethmoid bone 5 46154 -UBERON:0010908 paraglossale 4 46155 -UBERON:0010910 opisthotic 4 46156 -UBERON:0010939 zygomaticomandibularis muscle 4 46157 -UBERON:0010940 muscle of digastric group 4 46158 -UBERON:0010943 anterior digastric muscle 5 46159 -UBERON:0010944 posterior digastric muscle 5 46160 -UBERON:0010995 deep part of masseter muscle 4 46161 -UBERON:0011004 pharyngeal arch cartilage 4 46162 -UBERON:0001739 laryngeal cartilage 5 46163 -UBERON:0001738 thyroid cartilage 6 46164 -UBERON:0001740 arytenoid cartilage 6 46165 -UBERON:0001742 epiglottic cartilage 6 46166 -UBERON:0002375 cricoid cartilage 6 46167 -UBERON:0011157 cuneiform cartilage 6 46168 -UBERON:0003107 Meckel's cartilage 5 46169 -UBERON:0004752 palatoquadrate cartilage 5 46170 -UBERON:3010821 hyoquadrate process 6 46171 -UBERON:0010733 alisphenoid cartilage element 5 46172 -UBERON:0011002 articular cartilage element 5 46173 -UBERON:0011607 hyomandibular cartilage 5 46174 -UBERON:0010055 stapes cartilage element 6 46175 -UBERON:0011610 ceratohyal cartilage 5 46176 -UBERON:0011612 hypohyal cartilage 5 46177 -UBERON:0011615 basihyal cartilage 5 46178 -UBERON:0011621 thyrohyoid cartilage 5 46179 -UBERON:0011626 tympanohyoid cartilage 5 46180 -UBERON:0013747 basibranchial cartilage 5 46181 -UBERON:2001864 basibranchial 1 cartilage 6 46182 -UBERON:2001865 basibranchial 4 cartilage 6 46183 -UBERON:2001866 basibranchial 5 cartilage 6 46184 -UBERON:2001874 basibranchial 2 cartilage 6 46185 -UBERON:2001876 basibranchial 3 cartilage 6 46186 -UBERON:0035131 auditory ossicle cartilage element 5 46187 -UBERON:0007374 incus cartilage element 6 46188 -UBERON:0010054 malleus cartilage element 6 46189 -UBERON:0010055 stapes cartilage element 6 46190 -UBERON:2001220 basibranchial copula 5 46191 -UBERON:2001221 anterior copula 6 46192 -UBERON:2001222 posterior copula 6 46193 -UBERON:2001511 interhyal cartilage 5 46194 -UBERON:2001516 ceratobranchial cartilage 5 46195 -UBERON:2001517 ceratobranchial 2 cartilage 6 46196 -UBERON:2001518 ceratobranchial 3 cartilage 6 46197 -UBERON:2001519 ceratobranchial 4 cartilage 6 46198 -UBERON:2001520 ceratobranchial 1 cartilage 6 46199 -UBERON:2001521 ceratobranchial 5 cartilage 6 46200 -UBERON:2001522 hypobranchial cartilage 5 46201 -UBERON:2001523 hypobranchial 4 cartilage 6 46202 -UBERON:2001524 hypobranchial 1 cartilage 6 46203 -UBERON:2001525 hypobranchial 2 cartilage 6 46204 -UBERON:2001526 hypobranchial 3 cartilage 6 46205 -UBERON:2001527 epibranchial cartilage 5 46206 -UBERON:2001244 epibranchial 5 cartilage 6 46207 -UBERON:2001528 epibranchial 1 cartilage 6 46208 -UBERON:2001529 epibranchial 3 cartilage 6 46209 -UBERON:2001530 epibranchial 2 cartilage 6 46210 -UBERON:2001531 epibranchial 4 cartilage 6 46211 -UBERON:2001533 pharyngobranchial cartilage 5 46212 -UBERON:2001251 pharyngobranchial 4 cartilage 6 46213 -UBERON:2001534 pharyngobranchial 3 cartilage 6 46214 -UBERON:2001536 pharyngobranchial 2 cartilage 6 46215 -UBERON:2001634 pharyngobranchial 1 cartilage 6 46216 -UBERON:2001544 sublingual cartilage 5 46217 -UBERON:2001532 sublingual dorsal cartilage 6 46218 -UBERON:2001545 sublingual ventral cartilage 6 46219 -UBERON:2001688 palatine cartilage 5 46220 -UBERON:2001689 pterygoquadrate cartilage 5 46221 -UBERON:2001690 anterior cartilage of palatine 5 46222 -UBERON:2001691 posterior cartilage of palatine 5 46223 -UBERON:2001695 mediopharyngobranchial 5 46224 -UBERON:2001696 gongyloid cartilage 5 46225 -UBERON:2001856 gill ray 5 46226 -UBERON:2001867 post-ceratobranchial cartilage 5 46227 -UBERON:2001956 epibranchial 1 bone proximal cartilage 5 46228 -UBERON:2001957 epibranchial 2 bone proximal cartilage 5 46229 -UBERON:2001958 ceratobranchial 3 bone distal cartilage 5 46230 -UBERON:2001959 ceratobranchial 4 bone proximal cartilage 5 46231 -UBERON:2001960 ceratobranchial 4 bone distal cartilage 5 46232 -UBERON:2001961 ceratobranchial 5 bone distal cartilage 5 46233 -UBERON:2001962 hypobranchial 1 bone distal cartilage 5 46234 -UBERON:2001963 hypobranchial 2 bone distal cartilage 5 46235 -UBERON:2001964 epibranchial 3 bone uncinate process cartilage 5 46236 -UBERON:2001965 epibranchial 4 bone uncinate process cartilage 5 46237 -UBERON:2001989 mandibular-hyoid median cartilage 5 46238 -UBERON:2002009 medial cartilage of palatine 5 46239 -UBERON:2002269 interarcual cartilage 5 46240 -UBERON:3010061 anterior quadratocranial commissure 5 46241 -UBERON:3010828 commissura terminales of hyoid apparatus 5 46242 -UBERON:4300252 ethmo-palatine cartilage 5 46243 -UBERON:0011060 perilymphatic channel 4 46244 -UBERON:0001863 scala vestibuli 5 46245 -UBERON:0001864 scala tympani 5 46246 -UBERON:0002295 scala media 5 46247 -UBERON:0011140 superficial part of masseter muscle 4 46248 -UBERON:0011150 pharyngeal arch derived gill 4 46249 -UBERON:0011152 dorsal hyoid arch skeleton 4 46250 -UBERON:0011153 ventral hyoid arch skeleton 4 46251 -UBERON:0011162 supraoccipital cartilage element 4 46252 -UBERON:0011173 anterior division of bed nuclei of stria terminalis 4 46253 -UBERON:0011177 posterior division of bed nuclei of stria terminalis 4 46254 -UBERON:0011242 ethmoid cartilage 4 46255 -UBERON:0011255 Eimer's organ 4 46256 -UBERON:0011256 rhinarium 4 46257 -UBERON:0011305 superficial part of temporalis 4 46258 -UBERON:0011306 deep part of temporalis 4 46259 -UBERON:0011307 suprazygomatic part of temporalis 4 46260 -UBERON:0011308 pars reflexa of masseter 4 46261 -UBERON:0011313 posterior subdivision of masseter 4 46262 -UBERON:0011314 anterior subdivision of masseter 4 46263 -UBERON:0011318 capsule of temporomandibular joint 4 46264 -UBERON:0011319 disk of temporomandibular joint 4 46265 -UBERON:0011320 ligament of temporomandibular joint 4 46266 -UBERON:0011592 future upper lip 4 46267 -UBERON:0011595 jaw region 4 46268 -UBERON:0011602 gingiva of lower jaw 4 46269 -UBERON:0011608 hyomandibular element 4 46270 -UBERON:0011606 hyomandibular bone 5 46271 -UBERON:0011607 hyomandibular cartilage 5 46272 -UBERON:0010055 stapes cartilage element 6 46273 -UBERON:0011609 ceratohyal element 4 46274 -UBERON:0011610 ceratohyal cartilage 5 46275 -UBERON:0011611 ceratohyal bone 5 46276 -UBERON:0011613 hypohyal element 4 46277 -UBERON:0004751 hypohyal bone 5 46278 -UBERON:0011612 hypohyal cartilage 5 46279 -UBERON:0011614 basihyal element 4 46280 -UBERON:0011615 basihyal cartilage 5 46281 -UBERON:0011618 basihyal bone 5 46282 -UBERON:0011619 stylohyoid bone 4 46283 -UBERON:0011620 basihyal lingual process 4 46284 -UBERON:0011622 thyrohyoid bone 4 46285 -UBERON:0011623 horn of thyroid cartilage 4 46286 -UBERON:0011624 superior horn of thyroid cartilage 5 46287 -UBERON:0011625 inferior horn of thyroid cartilage 5 46288 -UBERON:0011627 orbital part of frontal bone 4 46289 -UBERON:0011774 utriculosaccular duct 4 46290 -UBERON:0011782 feather follicle 4 46291 -UBERON:0011800 dermal pulp of feather shaft 4 46292 -UBERON:0011803 feather bud, dermal component 4 46293 -UBERON:0011804 feather bud, epidermal component 4 46294 -UBERON:0011806 dermis of feather follicle 4 46295 -UBERON:0011807 epidermis of feather follicle 4 46296 -UBERON:0011808 outer epidermal layer of feather follicle 5 46297 -UBERON:0011809 inner epidermal layer of feather follicle 5 46298 -UBERON:0011847 acinus of parotid gland 4 46299 -UBERON:0011857 acinus of lacrimal gland 4 46300 -UBERON:0011859 internal acoustic meatus 4 46301 -UBERON:0011901 hair matrix 4 46302 -UBERON:0011922 cochlear basement membrane 4 46303 -UBERON:0011932 pilosebaceous unit 4 46304 -UBERON:0011933 vibrissa unit 5 46305 -UBERON:0016624 lunge feeding vibrissa 6 46306 -UBERON:0011940 arrector pili muscle of vibrissa 4 46307 -UBERON:0012109 zygomatic process of frontal bone 4 46308 -UBERON:0012170 core of nucleus accumbens 4 46309 -UBERON:0012171 shell of nucleus accumbens 4 46310 -UBERON:0012312 maxillary process ectoderm 4 46311 -UBERON:0012430 tunica fibrosa of eyeball 4 46312 -UBERON:0013166 vallecula of cerebellum 4 46313 -UBERON:0013173 anterior part of tympanic bone 4 46314 -UBERON:0013206 nasal tentacle 4 46315 -UBERON:0013442 postorbital process 4 46316 -UBERON:0013529 Brodmann area 4 46317 -UBERON:0002436 primary visual cortex 5 46318 -UBERON:0004717 Brodmann (1909) area 29 5 46319 -UBERON:0004718 Brodmann (1909) area 26 5 46320 -UBERON:0006095 anterior transverse temporal area 41 5 46321 -UBERON:0006096 posterior transverse temporal area 42 5 46322 -UBERON:0006099 Brodmann (1909) area 1 5 46323 -UBERON:0006100 Brodmann (1909) area 3 5 46324 -UBERON:0006101 Brodmann (1909) area 24 5 46325 -UBERON:0006102 Brodmann (1909) area 35 5 46326 -UBERON:0006104 Brodmann (1909) area 36 5 46327 -UBERON:0006471 Brodmann (1909) area 5 5 46328 -UBERON:0006472 Brodmann (1909) area 6 5 46329 -UBERON:0006473 Brodmann (1909) area 18 5 46330 -UBERON:0006474 Brodmann (1909) area 30 5 46331 -UBERON:0006475 Brodmann (1909) area 31 5 46332 -UBERON:0006476 Brodmann (1909) area 33 5 46333 -UBERON:0006477 Brodmann (1909) area 34 5 46334 -UBERON:0006478 Brodmann (1909) area 37 5 46335 -UBERON:0006479 Brodmann (1909) area 38 5 46336 -UBERON:0006480 Brodmann (1909) area 39 5 46337 -UBERON:0006481 Brodmann (1909) area 44 5 46338 -UBERON:0006482 Brodmann (1909) area 45 5 46339 -UBERON:0006483 Brodmann (1909) area 46 5 46340 -UBERON:0006484 Brodmann (1909) area 47 5 46341 -UBERON:0006485 Brodmann (1909) area 48 5 46342 -UBERON:0006486 Brodmann (1909) area 52 5 46343 -UBERON:0013528 Brodmann (1909) area 11 5 46344 -UBERON:0013533 Brodmann (1909) area 2 5 46345 -UBERON:0013535 Brodmann (1909) area 4 5 46346 -UBERON:0013538 Brodmann (1909) area 7 5 46347 -UBERON:0013539 Brodmann (1909) area 8 5 46348 -UBERON:0013540 Brodmann (1909) area 9 5 46349 -UBERON:0013541 Brodmann (1909) area 10 5 46350 -UBERON:0013543 Brodmann (1909) area 12 5 46351 -UBERON:0013544 Brodmann (1909) area 13 5 46352 -UBERON:0013545 Brodmann (1909) area 14 5 46353 -UBERON:0013546 Brodmann (1909) area 15 5 46354 -UBERON:0013547 Brodmann (1909) area 16 5 46355 -UBERON:0013550 Brodmann (1909) area 19 5 46356 -UBERON:0013551 Brodmann (1909) area 20 5 46357 -UBERON:0013552 Brodmann (1909) area 21 5 46358 -UBERON:0013553 Brodmann (1909) area 22 5 46359 -UBERON:0013554 Brodmann (1909) area 23 5 46360 -UBERON:0013556 Brodmann (1909) area 25 5 46361 -UBERON:0013558 Brodmann (1909) area 27 5 46362 -UBERON:0013559 Brodmann (1909) area 28 5 46363 -UBERON:0013560 Brodmann (1909) area 32 5 46364 -UBERON:0013561 Brodmann (1909) area 43 5 46365 -UBERON:0013562 Brodmann (1909) area 8a 5 46366 -UBERON:0013573 Brodmann (1909) area 40 5 46367 -UBERON:0013531 retrosplenial region 4 46368 -UBERON:0013589 koniocortex 4 46369 -UBERON:0013648 masseteric artery 4 46370 -UBERON:0001615 transverse facial artery 5 46371 -UBERON:0013653 velar skeleton 4 46372 -UBERON:0013731 basilar papilla 4 46373 -UBERON:0013746 basibranchial element 4 46374 -UBERON:0004740 basibranchial bone 5 46375 -UBERON:2001223 basibranchial 1 bone 6 46376 -UBERON:2001224 basibranchial 2 bone 6 46377 -UBERON:2001225 basibranchial 3 bone 6 46378 -UBERON:2001226 basibranchial 4 bone 6 46379 -UBERON:2001701 basibranchial 5 bone 6 46380 -UBERON:3010583 basibranchial I 6 46381 -UBERON:3010585 basibranchial II 6 46382 -UBERON:0013747 basibranchial cartilage 5 46383 -UBERON:2001864 basibranchial 1 cartilage 6 46384 -UBERON:2001865 basibranchial 4 cartilage 6 46385 -UBERON:2001866 basibranchial 5 cartilage 6 46386 -UBERON:2001874 basibranchial 2 cartilage 6 46387 -UBERON:2001876 basibranchial 3 cartilage 6 46388 -UBERON:2001915 basibranchial 1 element 5 46389 -UBERON:2001223 basibranchial 1 bone 6 46390 -UBERON:2001864 basibranchial 1 cartilage 6 46391 -UBERON:2001916 basibranchial 2 element 5 46392 -UBERON:2001224 basibranchial 2 bone 6 46393 -UBERON:2001874 basibranchial 2 cartilage 6 46394 -UBERON:2001917 basibranchial 3 element 5 46395 -UBERON:2001225 basibranchial 3 bone 6 46396 -UBERON:2001876 basibranchial 3 cartilage 6 46397 -UBERON:2001918 basibranchial 4 element 5 46398 -UBERON:2001226 basibranchial 4 bone 6 46399 -UBERON:2001865 basibranchial 4 cartilage 6 46400 -UBERON:2001919 basibranchial 5 element 5 46401 -UBERON:2001701 basibranchial 5 bone 6 46402 -UBERON:2001866 basibranchial 5 cartilage 6 46403 -UBERON:0013764 common crus of semicircular duct 4 46404 -UBERON:0014286 dorsal cap of Kooy 4 46405 -UBERON:0014287 medial accessory olive 4 46406 -UBERON:0014537 periamygdaloid cortex 4 46407 -UBERON:0014567 layer of hippocampal field 4 46408 -UBERON:0014560 CA3 stratum lucidum 5 46409 -UBERON:0034810 stratum lucidum of caudal CA3 6 46410 -UBERON:0034840 stratum lucidum of rostral CA3 6 46411 -UBERON:0034870 stratum lucidum of uncal CA3 6 46412 -UBERON:0034798 stratum lacunosum-moleculare of caudal CA1 5 46413 -UBERON:0034799 stratum radiatum of caudal CA1 5 46414 -UBERON:0034800 stratum pyramidale of caudal CA1 5 46415 -UBERON:0034801 stratum oriens of caudal CA1 5 46416 -UBERON:0034803 stratum lacunosum-moleculare of caudal CA2 5 46417 -UBERON:0034804 stratum radiatum of caudal CA2 5 46418 -UBERON:0034805 stratum pyramidale of caudal CA2 5 46419 -UBERON:0034806 stratum oriens of caudal CA2 5 46420 -UBERON:0034808 stratum lacunosum-moleculare of caudal CA3 5 46421 -UBERON:0034809 stratum radiatum of caudal CA3 5 46422 -UBERON:0034811 stratum pyramidale of caudal CA3 5 46423 -UBERON:0034812 stratum oriens of caudal CA3 5 46424 -UBERON:0034828 stratum lacunosum-moleculare of rostral CA1 5 46425 -UBERON:0034829 stratum radiatum of rostral CA1 5 46426 -UBERON:0034830 stratum pyramidale of rostral CA1 5 46427 -UBERON:0034831 stratum oriens of rostral CA1 5 46428 -UBERON:0034833 stratum lacunosum-moleculare of rostral CA2 5 46429 -UBERON:0034834 stratum radiatum of rostral CA2 5 46430 -UBERON:0034835 stratum pyramidale of rostral CA2 5 46431 -UBERON:0034836 stratum oriens of rostral CA2 5 46432 -UBERON:0034838 stratum lacunosum-moleculare of rostral CA3 5 46433 -UBERON:0034839 stratum radiatum of rostral CA3 5 46434 -UBERON:0034841 stratum pyramidale of rostral CA3 5 46435 -UBERON:0034842 stratum oriens of rostral CA3 5 46436 -UBERON:0034858 stratum lacunosum-moleculare of uncal CA1 5 46437 -UBERON:0034859 stratum radiatum of uncal CA1 5 46438 -UBERON:0034860 stratum pyramidale of uncal CA1 5 46439 -UBERON:0034861 stratum oriens of uncal CA1 5 46440 -UBERON:0034863 stratum lacunosum-moleculare of uncal CA2 5 46441 -UBERON:0034864 stratum radiatum of uncal CA2 5 46442 -UBERON:0034865 stratum pyramidale of uncal CA2 5 46443 -UBERON:0034866 stratum oriens of uncal CA2 5 46444 -UBERON:0034868 stratum lacunosum-moleculare of uncal CA3 5 46445 -UBERON:0034869 stratum radiatum of uncal CA3 5 46446 -UBERON:0034871 stratum pyramidale of uncal CA3 5 46447 -UBERON:0034872 stratum oriens of uncal CA3 5 46448 -UBERON:0014605 fundus striati 4 46449 -UBERON:0014624 basis modioli 4 46450 -UBERON:0014626 base of cochlear canal 4 46451 -UBERON:0014628 vestibular fissure of the cochlear canal 4 46452 -UBERON:0014629 terminal part of the cochlear canal 4 46453 -UBERON:0014642 vestibulocerebellum 4 46454 -UBERON:0014643 spinocerebellum 4 46455 -UBERON:0014695 deep auricular artery 4 46456 -UBERON:0014696 anterior choroidal artery 4 46457 -UBERON:0014705 median lingual swelling epithelium 4 46458 -UBERON:0014733 dorsal ventricular ridge of pallium 4 46459 -UBERON:0014734 allocortex 4 46460 -UBERON:0002961 archicortex 5 46461 -UBERON:0014735 paleocortex 5 46462 -UBERON:0014736 periallocortex 4 46463 -UBERON:0014738 medial pallium 4 46464 -UBERON:0014740 dorsal pallium 4 46465 -UBERON:0014741 lateral pallium 4 46466 -UBERON:0014751 P1 area of pallium (Myxiniformes) 4 46467 -UBERON:0014752 P2 area of pallium (Myxiniformes) 4 46468 -UBERON:0014753 P3 area of pallium (Myxiniformes) 4 46469 -UBERON:0014754 P4 area of pallium (Myxiniformes) 4 46470 -UBERON:0014755 P5 area of pallium (Myxiniformes) 4 46471 -UBERON:0014757 hyperpallium apicale 4 46472 -UBERON:0014758 interstitial part of hyperpallium apicale 4 46473 -UBERON:0014759 entopallium 4 46474 -UBERON:0014772 lateral palpebral artery 4 46475 -UBERON:0014773 medial palpebral artery 4 46476 -UBERON:0014913 ventral pallium 4 46477 -UBERON:0014918 retrosplenial granular cortex 4 46478 -UBERON:0014951 proisocortex 4 46479 -UBERON:0015058 alisphenoid endochondral element 4 46480 -UBERON:0006721 alisphenoid bone 5 46481 -UBERON:0010732 alisphenoid pre-cartilage condensation 5 46482 -UBERON:0010733 alisphenoid cartilage element 5 46483 -UBERON:0015062 bone condensation 4 46484 -UBERON:0015156 terminal branch of ophthalmic artery 4 46485 -UBERON:0001623 dorsal nasal artery 5 46486 -UBERON:0012187 frontal artery 5 46487 -UBERON:0015157 zygomatico-orbital artery 4 46488 -UBERON:0015158 ophthalmotemporal branch of external ophthalmic artery 4 46489 -UBERON:0015160 supraorbital artery 4 46490 -UBERON:0015181 neck of tooth 4 46491 -UBERON:0015599 genu of corpus callosum 4 46492 -UBERON:0015885 cymba conchae of pinna 4 46493 -UBERON:0016440 glabella region of bone 4 46494 -UBERON:0016466 antihelix 4 46495 -UBERON:0016467 antitragus 4 46496 -UBERON:0016526 lobe of cerebral hemisphere 4 46497 -UBERON:0001871 temporal lobe 5 46498 -UBERON:0002808 left temporal lobe 6 46499 -UBERON:0002809 right temporal lobe 6 46500 -UBERON:0001872 parietal lobe 5 46501 -UBERON:0002802 left parietal lobe 6 46502 -UBERON:0002803 right parietal lobe 6 46503 -UBERON:0002021 occipital lobe 5 46504 -UBERON:0002806 left occipital lobe 6 46505 -UBERON:0002807 right occipital lobe 6 46506 -UBERON:0002600 limbic lobe 5 46507 -UBERON:0002804 left limbic lobe 6 46508 -UBERON:0002805 right limbic lobe 6 46509 -UBERON:0005366 olfactory lobe 5 46510 -UBERON:0016525 frontal lobe 5 46511 -UBERON:0023255 sub-lobar region 5 46512 -UBERON:0024900 left sub-lobar region 6 46513 -UBERON:0024901 right sub-lobar region 6 46514 -UBERON:0016565 cerebral blood vessel 4 46515 -UBERON:0016567 statoconial membrane 4 46516 -UBERON:0016568 gelatinous layer of statoconial membrane 4 46517 -UBERON:0016569 subcupular meshwork of statoconial membrane 4 46518 -UBERON:0016621 lunge feeding organ 4 46519 -UBERON:0016622 lunge feeding organ papilla 4 46520 -UBERON:0016634 premotor cortex 4 46521 -UBERON:0016636 supplemental motor cortex 4 46522 -UBERON:0016920 descending trunk of arch of aorta 4 46523 -UBERON:0016923 preductal region of aortic arch 4 46524 -UBERON:0016924 postductal region of aortic arch 4 46525 -UBERON:0016925 juxtaductal region of aortic arch 4 46526 -UBERON:0016930 ridge of tooth 4 46527 -UBERON:0016931 transverse ridge of tooth 5 46528 -UBERON:0016932 triangular ridge of tooth 5 46529 -UBERON:0016933 oblique ridge of tooth 5 46530 -UBERON:0016934 marginal ridge of tooth 5 46531 -UBERON:0016937 transverse marginal ridge of tooth 6 46532 -UBERON:0016938 mesial marginal ridge of tooth 6 46533 -UBERON:0016939 distal marginal ridge of tooth 6 46534 -UBERON:0017295 cingulum of tooth 5 46535 -UBERON:0013612 lower jaw cingulum 6 46536 -UBERON:0017299 cingulum of lower incisor tooth 7 46537 -UBERON:0017313 cingulum of lower canine tooth 7 46538 -UBERON:0017612 cingulum of lower jaw molar 7 46539 -UBERON:0013613 upper jaw cingulum 6 46540 -UBERON:0017298 cingulum of upper incisor tooth 7 46541 -UBERON:0017312 cingulum of upper canine tooth 7 46542 -UBERON:0017613 cingulum of upper jaw molar 7 46543 -UBERON:0017296 cingulum of incisor tooth 6 46544 -UBERON:0017298 cingulum of upper incisor tooth 7 46545 -UBERON:0017299 cingulum of lower incisor tooth 7 46546 -UBERON:0017297 cingulum of canine tooth 6 46547 -UBERON:0017312 cingulum of upper canine tooth 7 46548 -UBERON:0017313 cingulum of lower canine tooth 7 46549 -UBERON:0017614 cingulum of molar tooth 6 46550 -UBERON:0017612 cingulum of lower jaw molar 7 46551 -UBERON:0017613 cingulum of upper jaw molar 7 46552 -UBERON:0018289 paracristid 5 46553 -UBERON:0018290 postcingulum 5 46554 -UBERON:0018274 postcingulum of deciduous premolar 5 6 46555 -UBERON:0018291 posteroloph 5 46556 -UBERON:0018286 molar 1 posteroloph 6 46557 -UBERON:0018292 posthypocrista 5 46558 -UBERON:0018275 posthypocrista of deciduous premolar 5 6 46559 -UBERON:0018293 precingulum 5 46560 -UBERON:0018295 preprotocrista 5 46561 -UBERON:0017690 internal surface of frontal bone 4 46562 -UBERON:0018141 anterior perforated substance 4 46563 -UBERON:0018150 skin of lower lip 4 46564 -UBERON:0016919 lower vermilion 5 46565 -UBERON:0018151 skin of upper lip 4 46566 -UBERON:0016918 upper vermilion 5 46567 -UBERON:0018152 pars flaccida of tympanic membrane 4 46568 -UBERON:0018153 pars tensa of tympanic membrane 4 46569 -UBERON:0018231 labyrinthine artery 4 46570 -UBERON:0018262 dorsal zone of medial entorhinal cortex 4 46571 -UBERON:0018263 ventral zone of medial entorhinal cortex 4 46572 -UBERON:0018323 hyoid articular area 4 46573 -UBERON:0018339 metotic fissure 4 46574 -UBERON:0018345 stylar shelf 4 46575 -UBERON:0018359 subolfactory process 4 46576 -UBERON:0018374 sallet 4 46577 -UBERON:0018397 posterior superior alveolar artery 4 46578 -UBERON:0018544 trigeminal nerve muscle 4 46579 -UBERON:0001564 mylohyoid muscle 5 46580 -UBERON:0001600 tensor tympani 5 46581 -UBERON:0003681 masticatory muscle 5 46582 -UBERON:0001597 masseter muscle 6 46583 -UBERON:0001598 temporalis muscle 6 46584 -UBERON:0006720 pterygoid muscle 6 46585 -UBERON:0006718 medial pterygoid muscle 7 46586 -UBERON:0006719 lateral pterygoid muscle 7 46587 -UBERON:0008586 tensor veli palatini 5 46588 -UBERON:0010943 anterior digastric muscle 5 46589 -UBERON:0011683 adductor mandibulae 5 46590 -UBERON:0011684 levator palatoquadrati 5 46591 -UBERON:0011685 preorbitalis muscle 5 46592 -UBERON:0011686 spiracularis muscle 5 46593 -UBERON:3010700 levator mandibulae externus 5 46594 -UBERON:3010708 levator mandibulae articularis 5 46595 -UBERON:3010709 levator mandibulae lateralis 5 46596 -UBERON:3010724 levator quadrati 5 46597 -UBERON:0018645 incisor region of dentition 4 46598 -UBERON:0018663 recessus basilaris 4 46599 -UBERON:0019207 chorioretinal region 4 46600 -UBERON:0019275 uncinate fasciculus of the forebrain 4 46601 -UBERON:0019278 inferior rostral gyrus 4 46602 -UBERON:0019279 superior rostral gyrus 4 46603 -UBERON:0022230 retrohippocampal region 4 46604 -UBERON:0022232 secondary visual cortex 4 46605 -UBERON:0022268 planum temporale 4 46606 -UBERON:0022352 medial orbital frontal cortex 4 46607 -UBERON:0022353 posterior cingulate cortex 4 46608 -UBERON:0022364 occipital fusiform gyrus 4 46609 -UBERON:0022367 inferior lateral occipital cortex 4 46610 -UBERON:0022368 superior lateral occipital cortex 4 46611 -UBERON:0022383 anterior parahippocampal gyrus 4 46612 -UBERON:0022395 temporal fusiform gyrus 4 46613 -UBERON:0022396 anterior temporal fusiform gyrus 4 46614 -UBERON:0022397 posterior temporal fusiform gyrus 4 46615 -UBERON:0022398 paracingulate gyrus 4 46616 -UBERON:0022425 anterior corona radiata 4 46617 -UBERON:0022426 superior corona radiata 4 46618 -UBERON:0022427 posterior corona radiata 4 46619 -UBERON:0022438 rostral anterior cingulate cortex 4 46620 -UBERON:0022453 olfactory entorhinal cortex 4 46621 -UBERON:0022469 primary olfactory cortex 4 46622 -UBERON:0022534 pericalcarine cortex 4 46623 -UBERON:0022695 orbital gyri complex 4 46624 -UBERON:0022716 lateral orbital frontal cortex 4 46625 -UBERON:0022730 transverse frontopolar gyri complex 4 46626 -UBERON:0023462 superficial feature part of occipital lobe 4 46627 -UBERON:0023787 subicular complex 4 46628 -UBERON:0023836 gross anatomical parts of the cerebellum 4 46629 -UBERON:0023852 temporoparietal junction 4 46630 -UBERON:0023861 planum polare 4 46631 -UBERON:0023867 islands of Calleja of olfactory tubercle 4 46632 -UBERON:0023868 isla magna of Calleja 4 46633 -UBERON:0023928 postrhinal cortex of rodent of Burwell et al 1995 4 46634 -UBERON:0023932 Sommer's sector 4 46635 -UBERON:0023958 bed nuclei of the stria terminalis oval nucleus 4 46636 -UBERON:0024043 rostral portion of the medial accessory olive 4 46637 -UBERON:0024046 superficial feature part of the cerebellum 4 46638 -UBERON:0024110 basis pontis 4 46639 -UBERON:0024183 inferior transverse frontopolar gyrus 4 46640 -UBERON:0024193 medial transverse frontopolar gyrus 4 46641 -UBERON:0024201 superior transverse frontopolar gyrus 4 46642 -UBERON:0025736 chemoarchitectural part of striatum 4 46643 -UBERON:0027368 matrix compartment 5 46644 -UBERON:0029001 matrix compartment of caudate nucleus 6 46645 -UBERON:0027245 matrix part of head of caudate nucleus 7 46646 -UBERON:0027246 matrix part of tail of caudate nucleus 7 46647 -UBERON:0029002 matrix compartment of putamen 6 46648 -UBERON:0027371 striosome 5 46649 -UBERON:0029004 striosomal part of caudate nucleus 6 46650 -UBERON:0027244 striosomal part of body of caudate nucleus 7 46651 -UBERON:0029005 striosomal part of putamen 6 46652 -UBERON:0026765 Hadjikhani et al. (1998) visuotopic partition scheme region 4 46653 -UBERON:0028398 Hadjikhani et al. (1998) visuotopic area V1d 5 46654 -UBERON:0028399 Hadjikhani et al. (1998) visuotopic area V1v 5 46655 -UBERON:0028401 Hadjikhani et al. (1998) visuotopic area V2v 5 46656 -UBERON:0028402 Hadjikhani et al. (1998) visuotopic area V3 5 46657 -UBERON:0028403 Hadjikhani et al. (1998) visuotopic area V3A 5 46658 -UBERON:0028404 Hadjikhani et al. (1998) visuotopic area VP 5 46659 -UBERON:0028405 Hadjikhani et al. (1998) visuotopic area V4v 5 46660 -UBERON:0028406 Hadjikhani et al. (1998) visuotopic area V8 5 46661 -UBERON:0026775 Tootell and Hadjikhani (2001) LOC/LOP complex 4 46662 -UBERON:0026776 Press, Brewer, Dougherty, Wade and Wandell (2001) visuotopic area V7 4 46663 -UBERON:0026777 Ongur, Price, and Ferry (2003) prefrontal cortical partition scheme region 4 46664 -UBERON:0028412 Ongur, Price, and Ferry (2003) area 10p 5 46665 -UBERON:0028413 Ongur, Price, and Ferry (2003) area 10r 5 46666 -UBERON:0028414 Ongur, Price, and Ferry (2003) area 10o 5 46667 -UBERON:0028415 Ongur, Price, and Ferry (2003) area 10m 5 46668 -UBERON:0028416 Ongur, Price, and Ferry (2003) area 11m 5 46669 -UBERON:0028417 Ongur, Price, and Ferry (2003) area 47s 5 46670 -UBERON:0028418 Ongur, Price, and Ferry (2003) area 13b 5 46671 -UBERON:0028419 Ongur, Price, and Ferry (2003) area 13a 5 46672 -UBERON:0028420 Ongur, Price, and Ferry (2003) area 14r 5 46673 -UBERON:0028421 Ongur, Price, and Ferry (2003) area 14c 5 46674 -UBERON:0028422 Ongur, Price, and Ferry (2003) area 24 5 46675 -UBERON:0028423 Ongur, Price, and Ferry (2003) area 25 5 46676 -UBERON:0028424 Ongur, Price, and Ferry (2003) area 32 5 46677 -UBERON:0028425 Ongur, Price, and Ferry (2003) area G 5 46678 -UBERON:0028426 Ongur, Price, and Ferry (2003) area PrCO 5 46679 -UBERON:0028427 Ongur, Price, and Ferry (2003) area 11l 5 46680 -UBERON:0028428 Ongur, Price, and Ferry (2003) area 13m 5 46681 -UBERON:0028429 Ongur, Price, and Ferry (2003) area 13l 5 46682 -UBERON:0028430 Ongur, Price, and Ferry (2003) area 47l 5 46683 -UBERON:0028431 Ongur, Price, and Ferry (2003) area 47m 5 46684 -UBERON:0028432 Ongur, Price, and Ferry (2003) area 47r 5 46685 -UBERON:0028433 Ongur, Price, and Ferry (2003) area Iam 5 46686 -UBERON:0028434 Ongur, Price, and Ferry (2003) area Ial 5 46687 -UBERON:0028435 Ongur, Price, and Ferry (2003) area Iai 5 46688 -UBERON:0028436 Ongur, Price, and Ferry (2003) area 9 5 46689 -UBERON:0028437 Ongur, Price, and Ferry (2003) area 10l 5 46690 -UBERON:0028439 Ongur, Price, and Ferry (2003) area Iapm 5 46691 -UBERON:0028440 Ongur, Price, and Ferry (2003) area AON 5 46692 -UBERON:0027061 isthmus of cingulate cortex 4 46693 -UBERON:0028194 spiral prominence of cochlear duct 4 46694 -UBERON:0028715 caudal anterior cingulate cortex 4 46695 -UBERON:0030649 cytoarchitecture of entorhinal cortex 4 46696 -UBERON:0034672 lateral eminence of fourth ventricle 4 46697 -UBERON:0034680 laryngeal prominence 4 46698 -UBERON:0034749 retrolenticular part of internal capsule 4 46699 -UBERON:0034750 visual association cortex 4 46700 -UBERON:0034751 primary auditory cortex 4 46701 -UBERON:0034752 secondary auditory cortex 4 46702 -UBERON:0034766 glabella region 4 46703 -UBERON:0034773 uncus of parahippocampal gyrus 4 46704 -UBERON:0034774 uncal CA1 4 46705 -UBERON:0034775 uncal CA2 4 46706 -UBERON:0034776 uncal CA3 4 46707 -UBERON:0034777 rostral CA1 4 46708 -UBERON:0034778 rostral CA2 4 46709 -UBERON:0034779 rostral CA3 4 46710 -UBERON:0034780 caudal CA1 4 46711 -UBERON:0034781 caudal CA2 4 46712 -UBERON:0034782 caudal CA3 4 46713 -UBERON:0034889 posterior parietal cortex 4 46714 -UBERON:0034892 granular insular cortex 4 46715 -UBERON:0034893 agranular insular cortex 4 46716 -UBERON:0034989 amygdalopiriform transition area 4 46717 -UBERON:0035013 temporal cortex association area 4 46718 -UBERON:0035026 amygdalohippocampal transition area 4 46719 -UBERON:0035027 amygdalohippocampal area, magnocellular division 4 46720 -UBERON:0035028 amygdalohippocampal area, parvocellular division 4 46721 -UBERON:0035041 deep temporal artery 4 46722 -UBERON:0035042 middle temporal artery 4 46723 -UBERON:0035043 temporal branch of lateral pretrosal artery 4 46724 -UBERON:0035045 parotid gland intralobular duct 4 46725 -UBERON:0035046 parotid gland intercalated duct 5 46726 -UBERON:0035047 parotid gland striated duct 5 46727 -UBERON:0035048 parotid gland excretory duct 4 46728 -UBERON:0001065 parotid main excretory duct 5 46729 -UBERON:0035078 parotid gland interlobular duct 5 46730 -UBERON:0035237 branch of internal carotid artery 4 46731 -UBERON:0035350 branch of middle cerebral artery 4 46732 -UBERON:0035222 posterior parietal artery 5 46733 -UBERON:0035225 anterior temporal artery 5 46734 -UBERON:0035261 posterior temporal artery 5 46735 -UBERON:0035462 anterior parietal artery 5 46736 -UBERON:0035380 branch of anterior cerebral artery 4 46737 -UBERON:0006764 anterior communicating artery 5 46738 -UBERON:0035398 branch of external carotid artery 4 46739 -UBERON:0001610 lingual artery 5 46740 -UBERON:0001612 facial artery 5 46741 -UBERON:0001613 occipital artery 5 46742 -UBERON:0001614 superficial temporal artery 5 46743 -UBERON:0007150 superior thyroid artery 5 46744 -UBERON:0014694 posterior auricular artery 5 46745 -UBERON:0018250 middle thyroid artery 5 46746 -UBERON:0035404 superior hypophysial artery 4 46747 -UBERON:0035416 diaphragma sellae 4 46748 -UBERON:0035425 falx cerebelli 4 46749 -UBERON:0035492 inferior hypophysial artery 4 46750 -UBERON:0035609 outer root sheath companion layer 4 46751 -UBERON:0035806 Hensen stripe 4 46752 -UBERON:0035885 dorsal auditory area 4 46753 -UBERON:0035886 posterior parietal association areas 4 46754 -UBERON:0035890 postrhinal area 4 46755 -UBERON:0035892 primary visual area, layer 6a 4 46756 -UBERON:0035893 anteromedial visual area 4 46757 -UBERON:0035894 anterolateral visual area 4 46758 -UBERON:0035895 lateral visual area 4 46759 -UBERON:0035897 posterolateral visual area 4 46760 -UBERON:0035900 posteromedial visual area 4 46761 -UBERON:0035904 primary visual area, layer 4 4 46762 -UBERON:0035906 primary visual area, layer 5 4 46763 -UBERON:0035907 primary visual area, layer 2/3 4 46764 -UBERON:0035908 anterolateral visual area, layer 5 4 46765 -UBERON:0035909 posteromedial visual area, layer 6a 4 46766 -UBERON:0035911 postrhinal area, layer 4 4 46767 -UBERON:0035912 rostrolateral visual area 4 46768 -UBERON:0035913 anteromedial visual area, layer 5 4 46769 -UBERON:0035914 posteromedial visual area, layer 4 4 46770 -UBERON:0035915 lateral visual area, layer 4 4 46771 -UBERON:0035916 lateral visual area, layer 5 4 46772 -UBERON:0035917 dorsal auditory area, layer 4 4 46773 -UBERON:0035918 lateral visual area, layer 6a 4 46774 -UBERON:0035919 posterolateral visual area, layer 4 4 46775 -UBERON:0035920 rostrolateral area, layer 5 4 46776 -UBERON:0035932 anterior segment of paracentral lobule 4 46777 -UBERON:0035934 posterior segment of paracentral lobule 4 46778 -UBERON:0035941 Kimura membrane 4 46779 -UBERON:0035970 calcar avis of the lateral ventricle 4 46780 -UBERON:0035971 postsubiculum 4 46781 -UBERON:0036164 ambient gyrus 4 46782 -UBERON:0036212 intertragic incisure 4 46783 -UBERON:0036250 zone of basilar membrane of cochlea 4 46784 -UBERON:0002820 zona arcuata of basilar membrane of cochlea 5 46785 -UBERON:0036249 zona pectinata of basilar membrane of cochlea 5 46786 -UBERON:0036422 wall of pulmonary artery 4 46787 -UBERON:0036654 wall of lateral ventricle 4 46788 -UBERON:0036655 wall of cerebral aqueduct 4 46789 -UBERON:0036657 wall of fourth ventricle 4 46790 -UBERON:0037094 wall of common carotid artery 4 46791 -UBERON:0037191 wall of membranous labyrinth 4 46792 -UBERON:1000000 chin ventral margin 4 46793 -UBERON:1000010 mole 4 46794 -UBERON:2000139 immature otolith 4 46795 -UBERON:2001102 immature anterior otolith 5 46796 -UBERON:2001103 immature posterior otolith 5 46797 -UBERON:2000187 lateral granular eminence 4 46798 -UBERON:2000188 corpus cerebelli 4 46799 -UBERON:2000196 dorsal hypohyal bone 4 46800 -UBERON:2000211 gill lamella 4 46801 -UBERON:2000212 granular eminence 4 46802 -UBERON:2000226 lateral ethmoid bone 4 46803 -UBERON:2000267 primary olfactory fiber layer 4 46804 -UBERON:2000280 medial division 4 46805 -UBERON:2000300 ventral hypohyal bone 4 46806 -UBERON:2000307 vestibulolateralis lobe 4 46807 -UBERON:2000311 adductor mandibulae complex 4 46808 -UBERON:2000319 branchiostegal membrane 4 46809 -UBERON:2000337 basioccipital posterodorsal region 4 46810 -UBERON:2000348 exoccipital posteroventral region 4 46811 -UBERON:2000352 external cellular layer 4 46812 -UBERON:2000358 granular layer corpus cerebelli 4 46813 -UBERON:2000388 medial caudal lobe 4 46814 -UBERON:2000394 molecular layer corpus cerebelli 4 46815 -UBERON:2000419 pterosphenoid 4 46816 -UBERON:2000517 glossopharyngeal lobe 4 46817 -UBERON:2000532 lateral division 4 46818 -UBERON:2000573 internal cellular layer 4 46819 -UBERON:2000587 sphenotic 4 46820 -UBERON:2000589 sulcus ypsiloniformis 4 46821 -UBERON:2000603 valvula cerebelli 4 46822 -UBERON:2000627 posterior ceratohyal 4 46823 -UBERON:2000636 cerebellar crest 4 46824 -UBERON:2000673 hypobranchial artery 4 46825 -UBERON:2000692 symplectic 4 46826 -UBERON:2000766 granular layer valvula cerebelli 4 46827 -UBERON:2000913 molecular layer valvula cerebelli 4 46828 -UBERON:2001051 caudal division of the internal carotid artery 4 46829 -UBERON:2001053 future internal carotid artery 4 46830 -UBERON:2001059 cranial division of the internal carotid artery 4 46831 -UBERON:2001228 pharyngeal arch 3 skeleton 4 46832 -UBERON:2001229 pharyngeal arch 7 skeleton 4 46833 -UBERON:2001230 pharyngeal arch 6 skeleton 4 46834 -UBERON:2001231 pharyngeal arch 4 skeleton 4 46835 -UBERON:2001232 pharyngeal arch 5 skeleton 4 46836 -UBERON:2001333 sublingual dorsal and ventral fused 4 46837 -UBERON:2001382 epibranchial bone uncinate process 4 46838 -UBERON:2001796 epibranchial 2 bone uncinate process 5 46839 -UBERON:2001797 epibranchial 1 bone uncinate process 5 46840 -UBERON:2001822 epibranchial 3 bone uncinate process 5 46841 -UBERON:2001823 epibranchial 4 bone uncinate process 5 46842 -UBERON:2001404 preethmoid bone 4 46843 -UBERON:2001412 epiotic 4 46844 -UBERON:2001475 sublingual dorsal ossification 4 46845 -UBERON:2001476 sublingual ventral ossification 4 46846 -UBERON:2001604 lateral ethmoid palatine process 4 46847 -UBERON:2001607 basipterygoid process of parasphenoid 4 46848 -UBERON:2001609 pharyngobranchial 2 bone uncinate process 4 46849 -UBERON:2001615 sphenotic spine 4 46850 -UBERON:2001616 lateral ethmoid wing 4 46851 -UBERON:2001623 type 1 odontode 4 46852 -UBERON:2001672 dorsal fin radial bone 4 46853 -UBERON:2000936 dorsal fin distal radial bone 5 46854 -UBERON:2005372 dorsal fin distal radial bone 1 6 46855 -UBERON:2005373 dorsal fin distal radial bone 2 6 46856 -UBERON:2005374 dorsal fin distal radial bone 3 6 46857 -UBERON:2005375 dorsal fin distal radial bone 4 6 46858 -UBERON:2005376 dorsal fin distal radial bone 5 6 46859 -UBERON:2005377 dorsal fin distal radial bone 6 6 46860 -UBERON:2005378 dorsal fin distal radial bone 7 6 46861 -UBERON:2005379 dorsal fin distal radial bone 8 6 46862 -UBERON:2000947 dorsal fin proximal radial bone 5 46863 -UBERON:2001818 dorsal fin proximal radial bone 1 6 46864 -UBERON:2001819 dorsal fin proximal radial bone 2 6 46865 -UBERON:2005380 dorsal fin proximal radial bone 3 6 46866 -UBERON:2005381 dorsal fin proximal radial bone 4 6 46867 -UBERON:2005382 dorsal fin proximal radial bone 5 6 46868 -UBERON:2005383 dorsal fin proximal radial bone 6 6 46869 -UBERON:2005384 dorsal fin proximal radial bone 7 6 46870 -UBERON:2005385 dorsal fin proximal radial bone 8 6 46871 -UBERON:2001613 dorsal fin middle radial bone 5 46872 -UBERON:2001675 mesethmoid cornu 4 46873 -UBERON:2001681 cornu mesial process 4 46874 -UBERON:2001733 mesethmoid ventral diverging lamella 4 46875 -UBERON:2001747 lateral mesethmoid wing 4 46876 -UBERON:2001783 supraoccipital crest 4 46877 -UBERON:2001792 pharyngobranchial 3 bone uncinate process 4 46878 -UBERON:2001793 pharyngobranchial 4 bone uncinate process 4 46879 -UBERON:2001825 urohyal lateral process 4 46880 -UBERON:2001826 urohyal median process 4 46881 -UBERON:2001855 hyomandibular condyle for the opercle 4 46882 -UBERON:2001857 hyoidean artery 4 46883 -UBERON:2001892 interhyal element 4 46884 -UBERON:2000171 interhyal bone 5 46885 -UBERON:2001511 interhyal cartilage 5 46886 -UBERON:2001893 hypobranchial element 4 46887 -UBERON:2000363 hypobranchial bone 5 46888 -UBERON:2001233 hypobranchial 1 bone 6 46889 -UBERON:2001234 hypobranchial 4 bone 6 46890 -UBERON:2001235 hypobranchial 3 bone 6 46891 -UBERON:2001236 hypobranchial 2 bone 6 46892 -UBERON:2001522 hypobranchial cartilage 5 46893 -UBERON:2001523 hypobranchial 4 cartilage 6 46894 -UBERON:2001524 hypobranchial 1 cartilage 6 46895 -UBERON:2001525 hypobranchial 2 cartilage 6 46896 -UBERON:2001526 hypobranchial 3 cartilage 6 46897 -UBERON:2001894 hypobranchial 1 element 5 46898 -UBERON:2001233 hypobranchial 1 bone 6 46899 -UBERON:2001524 hypobranchial 1 cartilage 6 46900 -UBERON:2001895 hypobranchial 2 element 5 46901 -UBERON:2001236 hypobranchial 2 bone 6 46902 -UBERON:2001525 hypobranchial 2 cartilage 6 46903 -UBERON:2001896 hypobranchial 3 element 5 46904 -UBERON:2001235 hypobranchial 3 bone 6 46905 -UBERON:2001526 hypobranchial 3 cartilage 6 46906 -UBERON:2001897 hypobranchial 4 element 5 46907 -UBERON:2001234 hypobranchial 4 bone 6 46908 -UBERON:2001523 hypobranchial 4 cartilage 6 46909 -UBERON:2001898 ceratobranchial element 4 46910 -UBERON:2000488 ceratobranchial bone 5 46911 -UBERON:2001237 ceratobranchial 1 bone 6 46912 -UBERON:2001239 ceratobranchial 5 bone 6 46913 -UBERON:2001240 ceratobranchial 4 bone 6 46914 -UBERON:2001241 ceratobranchial 3 bone 6 46915 -UBERON:2001242 ceratobranchial 2 bone 6 46916 -UBERON:2001516 ceratobranchial cartilage 5 46917 -UBERON:2001517 ceratobranchial 2 cartilage 6 46918 -UBERON:2001518 ceratobranchial 3 cartilage 6 46919 -UBERON:2001519 ceratobranchial 4 cartilage 6 46920 -UBERON:2001520 ceratobranchial 1 cartilage 6 46921 -UBERON:2001521 ceratobranchial 5 cartilage 6 46922 -UBERON:2001899 ceratobranchial 1 element 5 46923 -UBERON:2001237 ceratobranchial 1 bone 6 46924 -UBERON:2001520 ceratobranchial 1 cartilage 6 46925 -UBERON:2001900 ceratobranchial 2 element 5 46926 -UBERON:2001242 ceratobranchial 2 bone 6 46927 -UBERON:2001517 ceratobranchial 2 cartilage 6 46928 -UBERON:2001901 ceratobranchial 3 element 5 46929 -UBERON:2001241 ceratobranchial 3 bone 6 46930 -UBERON:2001518 ceratobranchial 3 cartilage 6 46931 -UBERON:2001902 ceratobranchial 4 element 5 46932 -UBERON:2001240 ceratobranchial 4 bone 6 46933 -UBERON:2001519 ceratobranchial 4 cartilage 6 46934 -UBERON:2001903 ceratobranchial 5 element 5 46935 -UBERON:2001239 ceratobranchial 5 bone 6 46936 -UBERON:2001521 ceratobranchial 5 cartilage 6 46937 -UBERON:2001904 epibranchial element 4 46938 -UBERON:2000658 epibranchial bone 5 46939 -UBERON:2001243 epibranchial 1 bone 6 46940 -UBERON:2001245 epibranchial 4 bone 6 46941 -UBERON:2001246 epibranchial 2 bone 6 46942 -UBERON:2001247 epibranchial 3 bone 6 46943 -UBERON:2001527 epibranchial cartilage 5 46944 -UBERON:2001244 epibranchial 5 cartilage 6 46945 -UBERON:2001528 epibranchial 1 cartilage 6 46946 -UBERON:2001529 epibranchial 3 cartilage 6 46947 -UBERON:2001530 epibranchial 2 cartilage 6 46948 -UBERON:2001531 epibranchial 4 cartilage 6 46949 -UBERON:2001905 epibranchial 1 element 5 46950 -UBERON:2001243 epibranchial 1 bone 6 46951 -UBERON:2001528 epibranchial 1 cartilage 6 46952 -UBERON:2001906 epibranchial 2 element 5 46953 -UBERON:2001246 epibranchial 2 bone 6 46954 -UBERON:2001530 epibranchial 2 cartilage 6 46955 -UBERON:2001907 epibranchial 3 element 5 46956 -UBERON:2001247 epibranchial 3 bone 6 46957 -UBERON:2001529 epibranchial 3 cartilage 6 46958 -UBERON:2001908 epibranchial 4 element 5 46959 -UBERON:2001245 epibranchial 4 bone 6 46960 -UBERON:2001531 epibranchial 4 cartilage 6 46961 -UBERON:2001966 epibranchial 5 element 5 46962 -UBERON:2001909 pharyngobranchial element 4 46963 -UBERON:2000527 pharyngobranchial bone 5 46964 -UBERON:2001250 pharyngobranchial 2 bone 6 46965 -UBERON:2001252 pharyngobranchial 3 bone 6 46966 -UBERON:2001635 pharyngobranchial 1 bone 6 46967 -UBERON:2001636 pharyngobranchial 4 bone 6 46968 -UBERON:2001858 suprapharyngobranchial 6 46969 -UBERON:2001533 pharyngobranchial cartilage 5 46970 -UBERON:2001251 pharyngobranchial 4 cartilage 6 46971 -UBERON:2001534 pharyngobranchial 3 cartilage 6 46972 -UBERON:2001536 pharyngobranchial 2 cartilage 6 46973 -UBERON:2001634 pharyngobranchial 1 cartilage 6 46974 -UBERON:2001910 pharyngobranchial 1 element 5 46975 -UBERON:2001634 pharyngobranchial 1 cartilage 6 46976 -UBERON:2001635 pharyngobranchial 1 bone 6 46977 -UBERON:2001911 pharyngobranchial 2 element 5 46978 -UBERON:2001250 pharyngobranchial 2 bone 6 46979 -UBERON:2001536 pharyngobranchial 2 cartilage 6 46980 -UBERON:2001912 pharyngobranchial 3 element 5 46981 -UBERON:2001252 pharyngobranchial 3 bone 6 46982 -UBERON:2001534 pharyngobranchial 3 cartilage 6 46983 -UBERON:2001913 pharyngobranchial 4 element 5 46984 -UBERON:2001251 pharyngobranchial 4 cartilage 6 46985 -UBERON:2001636 pharyngobranchial 4 bone 6 46986 -UBERON:2001929 epioccipital posterior process 4 46987 -UBERON:2001948 anal-fin hook 4 46988 -UBERON:2001949 caudal-fin hook 4 46989 -UBERON:2001999 posterior cleithral process 4 46990 -UBERON:2002000 posterior dentation of pectoral fin spine 4 46991 -UBERON:2002001 anterior dentation of pectoral fin spine 4 46992 -UBERON:2002002 anterior distal serration of pectoral fin spine 4 46993 -UBERON:2002003 posterior dentation of dorsal fin spine 2 4 46994 -UBERON:2002013 ascending limb of ceratobranchial 5 bone 4 46995 -UBERON:2002014 ascending limb of ceratobranchial 5 cartilage 4 46996 -UBERON:2002017 anterior limb of ceratobranchial 5 bone 4 46997 -UBERON:2002018 anterior limb of ceratobranchial 5 cartilage 4 46998 -UBERON:2002021 ascending process of the parasphenoid 4 46999 -UBERON:2002080 spina occipitalis 4 47000 -UBERON:2002106 eminentia granularis 4 47001 -UBERON:2002107 medullary command nucleus 4 47002 -UBERON:2002119 dermal scale focus 4 47003 -UBERON:2002185 climbing fiber 4 47004 -UBERON:2002193 dorsolateral septum 4 47005 -UBERON:2002210 mossy fiber 4 47006 -UBERON:2002215 otic vesicle protrusion 4 47007 -UBERON:2000232 lateral semicircular canal primordium 5 47008 -UBERON:2000412 posterior semicircular canal primordium 5 47009 -UBERON:2000469 anterior semicircular canal primordium 5 47010 -UBERON:2002216 otic vesicle ventral protrusion 5 47011 -UBERON:2002218 parallel fiber 4 47012 -UBERON:2002223 pillar of the semicircular canal 4 47013 -UBERON:2007054 pillar of the anterior semicircular canal 5 47014 -UBERON:2007055 pillar of the lateral semicircular canal 5 47015 -UBERON:2002240 Purkinje cell layer corpus cerebelli 4 47016 -UBERON:2002241 Purkinje cell layer valvula cerebelli 4 47017 -UBERON:2002249 ctenius 4 47018 -UBERON:2005011 pseudobranchial artery 4 47019 -UBERON:2005015 afferent lamellar arteriole 4 47020 -UBERON:2005019 efferent lamellar arteriole 4 47021 -UBERON:2005022 opercular artery 4 47022 -UBERON:2005275 hyomandibular foramen 4 47023 -UBERON:2005411 common crus 4 47024 -UBERON:2005415 inner ear foramen 4 47025 -UBERON:2005416 sacculoagenar foramen 5 47026 -UBERON:2007001 dorso-rostral cluster 4 47027 -UBERON:2007029 hindbrain neural keel 4 47028 -UBERON:2007036 hindbrain neural rod 4 47029 -UBERON:2007043 hindbrain neural tube 4 47030 -UBERON:3000020 anterolateral process of frontoparietal 4 47031 -UBERON:3000101 hyale 4 47032 -UBERON:3000141 endolymphatic system 4 47033 -UBERON:3000384 parasagittal crest 4 47034 -UBERON:3000386 cultriform process 4 47035 -UBERON:3000387 subotic alae 4 47036 -UBERON:3000393 pars amphibiorum 4 47037 -UBERON:3000395 pars basilaris 4 47038 -UBERON:3000405 pars inferior of labyrinth 4 47039 -UBERON:3000428 perilymphatic system 4 47040 -UBERON:3000433 pineal foramen 4 47041 -UBERON:3000524 pterygoquadrate 4 47042 -UBERON:3000538 recessus fenestrae ovalis 4 47043 -UBERON:3000560 septum semicircularium anterior 4 47044 -UBERON:3000561 septum semicircularium laterale 4 47045 -UBERON:3000562 septum semircularium posterior 4 47046 -UBERON:3000570 spatium sacculare 4 47047 -UBERON:3000590 supraorbital flange 4 47048 -UBERON:3000619 tympanosquamosal 4 47049 -UBERON:3000662 processus posterior of parasphenoid 4 47050 -UBERON:3000663 parahyoid 4 47051 -UBERON:3000664 hyoid plate 4 47052 -UBERON:3000667 pars reuniens 4 47053 -UBERON:3000670 anterior process of hyoid apparatus 4 47054 -UBERON:3000671 anterolateral process of hyoid plate 4 47055 -UBERON:3000672 posterolateral process 4 47056 -UBERON:3000673 posteromedial process 4 47057 -UBERON:3000676 bronchial process 4 47058 -UBERON:3000677 lateral process of cricoid cartilage 4 47059 -UBERON:3000678 esophageal process 4 47060 -UBERON:3000680 manubrium of hyale 4 47061 -UBERON:3000687 processus confluens 4 47062 -UBERON:3000688 prominentia apicalis dorsalis 4 47063 -UBERON:3000689 prominentia apicalis ventralis 4 47064 -UBERON:3000792 anterior ramus of cleithrum 4 47065 -UBERON:3000811 glenoid end of clavicle 4 47066 -UBERON:3000827 margo anterior of cleithrum 4 47067 -UBERON:3000828 margo posterior of cleithrum 4 47068 -UBERON:3000829 margo scapularis 4 47069 -UBERON:3000830 margo vertebralis 4 47070 -UBERON:3000831 spina acromioidea 4 47071 -UBERON:3000832 anterior lamina recurvata 4 47072 -UBERON:3000834 posterior lamina recurvata 4 47073 -UBERON:3000948 articular process 4 47074 -UBERON:3000949 posterior ramus of cleithrum 4 47075 -UBERON:3000950 os triangulare 4 47076 -UBERON:3000951 anterior radial 4 47077 -UBERON:3000952 posterior radial 4 47078 -UBERON:3000954 hypobranchial I 4 47079 -UBERON:3000955 ceratobranchial I 4 47080 -UBERON:3000956 hypobranchial II 4 47081 -UBERON:3010091 upper lip protuberances 4 47082 -UBERON:3010092 basitrabecular process 4 47083 -UBERON:3010118 quadrato-orbital commissure 4 47084 -UBERON:3010144 odontoids 4 47085 -UBERON:3010489 muscular artery 4 47086 -UBERON:3010494 lateral pretrosal artery 4 47087 -UBERON:3010496 mandibular artery 4 47088 -UBERON:3010559 retroarticular process of the palatoquadrate 4 47089 -UBERON:3010560 anterior process of the palatoquadrate 4 47090 -UBERON:3010735 ramus anterior of CN VIII 4 47091 -UBERON:3010736 ramus posterior of CN VIII 4 47092 -UBERON:3010830 spicule 4 47093 -UBERON:4000105 limiting layer of elasmoid scale 4 47094 -UBERON:4000118 cellular bone tissue 4 47095 -UBERON:4000122 acellular bone tissue 4 47096 -UBERON:4100100 parasphenoid flange 4 47097 -UBERON:4200008 inter-clavicle joint 4 47098 -UBERON:4200016 postbranchial lamina 4 47099 -UBERON:4200032 clavicle blade 4 47100 -UBERON:4200033 cleithrum head 4 47101 -UBERON:4200081 hypocleideum 4 47102 -UBERON:4200139 palatoquadrate element 4 47103 -UBERON:4200176 ascending process of clavicle 4 47104 -UBERON:4200226 anteroventral process of cleithrum 4 47105 -UBERON:4200233 dorsal clavicular process 4 47106 -UBERON:4300106 ventral limb of posttemporal 4 47107 -UBERON:4300108 lepidotrichial segment 4 47108 -UBERON:4300109 proximal segment of caudal ray 5 47109 -UBERON:4300112 distal segment of caudal ray 5 47110 -UBERON:4300126 tectorial restraint system 4 47111 -UBERON:4300154 procurrent spur 4 47112 -UBERON:4300249 lateral occipital foramen 4 47113 -UBERON:4300261 pectoral fin hook 4 47114 -UBERON:4300262 pelvic fin hook 4 47115 -UBERON:4300269 epioccipital bridge 4 47116 -UBERON:4500017 interarcual bone 4 47117 -UBERON:0011585 cell condensation 3 47118 -UBERON:0005856 developing mesenchymal condensation 4 47119 -UBERON:0001763 odontogenic papilla 5 47120 -UBERON:0003317 odontogenic papilla of incisor 6 47121 -UBERON:0005707 upper jaw incisor odontogenic papilla 7 47122 -UBERON:0005708 lower jaw incisor odontogenic papilla 7 47123 -UBERON:0015844 molar dental papilla 6 47124 -UBERON:0005700 upper jaw molar odontogenic papilla 7 47125 -UBERON:0005701 lower jaw molar odontogenic papilla 7 47126 -UBERON:4000028 integumentary papilla 6 47127 -UBERON:4000030 oropharyngeal papilla 6 47128 -UBERON:0003089 sclerotome 5 47129 -UBERON:2000829 sclerotome somite 11 6 47130 -UBERON:2000830 sclerotome somite 14 6 47131 -UBERON:2000831 sclerotome somite 17 6 47132 -UBERON:2000832 sclerotome somite 2 6 47133 -UBERON:2000833 sclerotome somite 22 6 47134 -UBERON:2000834 sclerotome somite 25 6 47135 -UBERON:2000835 sclerotome somite 28 6 47136 -UBERON:2000836 sclerotome somite 30 6 47137 -UBERON:2000837 sclerotome somite 6 6 47138 -UBERON:2000839 sclerotome somite 9 6 47139 -UBERON:2000952 sclerotome somite 1 6 47140 -UBERON:2000953 sclerotome somite 12 6 47141 -UBERON:2000954 sclerotome somite 15 6 47142 -UBERON:2000955 sclerotome somite 18 6 47143 -UBERON:2000956 sclerotome somite 20 6 47144 -UBERON:2000958 sclerotome somite 23 6 47145 -UBERON:2000959 sclerotome somite 26 6 47146 -UBERON:2000960 sclerotome somite 29 6 47147 -UBERON:2000961 sclerotome somite 4 6 47148 -UBERON:2000962 sclerotome somite 7 6 47149 -UBERON:2001036 sclerotome somite 10 6 47150 -UBERON:2001037 sclerotome somite 13 6 47151 -UBERON:2001038 sclerotome somite 16 6 47152 -UBERON:2001039 sclerotome somite 19 6 47153 -UBERON:2001041 sclerotome somite 21 6 47154 -UBERON:2001042 sclerotome somite 24 6 47155 -UBERON:2001043 sclerotome somite 27 6 47156 -UBERON:2001044 sclerotome somite 3 6 47157 -UBERON:2001045 sclerotome somite 5 6 47158 -UBERON:2001046 sclerotome somite 8 6 47159 -UBERON:0005863 cartilaginous condensation 5 47160 -UBERON:0005687 orbitosphenoid cartilage element 6 47161 -UBERON:0006209 basioccipital cartilage element 6 47162 -UBERON:0006213 carpus cartilage element 6 47163 -UBERON:0006245 humerus cartilage element 6 47164 -UBERON:0006254 ischial cartilage element 6 47165 -UBERON:0006288 rib cartilage element 6 47166 -UBERON:0009193 sphenoid cartilage element 6 47167 -UBERON:0009194 basisphenoid cartilage condenstion 6 47168 -UBERON:0010129 femur cartilage element 6 47169 -UBERON:0010541 tarsus cartilage element 6 47170 -UBERON:0010714 iliac cartilage element 6 47171 -UBERON:0010718 pubic cartilage element 6 47172 -UBERON:0010733 alisphenoid cartilage element 6 47173 -UBERON:0010752 exoccipital cartilage element 6 47174 -UBERON:0010842 calcaneum cartilage element 6 47175 -UBERON:0010843 clavicle cartilage element 6 47176 -UBERON:0010848 radius-ulna cartilage element 6 47177 -UBERON:0012080 patella cartilage element 6 47178 -UBERON:0005865 pre-muscle condensation 5 47179 -UBERON:0006219 deltoid pre-muscle mass 6 47180 -UBERON:0006230 extrinsic ocular pre-muscle mass 6 47181 -UBERON:0010348 hyoid pre-muscle mass 6 47182 -UBERON:0010929 stapedius pre-muscle condensation 6 47183 -UBERON:0010935 tensor tympani pre-muscle condensation 6 47184 -UBERON:0010955 trapezius pre-muscle mass 6 47185 -UBERON:0010961 erector spinae pre-muscle mass 6 47186 -UBERON:0010962 extensor pre-muscle mass 6 47187 -UBERON:0010970 intercostal pre-muscle mass 6 47188 -UBERON:0010974 external intercostal pre-muscle mass 7 47189 -UBERON:0010981 internal intercostal pre-muscle mass 7 47190 -UBERON:0010975 external oblique pre-muscle mass 6 47191 -UBERON:0010977 flexor pre-muscle mass 6 47192 -UBERON:0010982 latissimus dorsi pre-muscle mass 6 47193 -UBERON:0010983 levator scapulae pre-muscle mass 6 47194 -UBERON:0010984 pectoral pre-muscle mass 6 47195 -UBERON:0010985 rhomboid pre-muscle mass 6 47196 -UBERON:0010986 serratus ventralis pre-muscle mass 6 47197 -UBERON:0010987 sterno-mastoid pre-muscle mass 6 47198 -UBERON:0010988 teres major pre-muscle mass 6 47199 -UBERON:0010989 transverospinalis pre-muscle mass 6 47200 -UBERON:0010993 subscapularis pre-muscle mass 6 47201 -UBERON:0011332 extrinsic tongue pre-muscle mass 6 47202 -UBERON:0035148 presumptive axochord 6 47203 -UBERON:0005866 pre-cartilage condensation 5 47204 -UBERON:0006214 carpus pre-cartilage condensation 6 47205 -UBERON:0006228 exoccipital pre-cartilage condensation 6 47206 -UBERON:0006234 femur pre-cartilage condensation 6 47207 -UBERON:0006246 humerus pre-cartilage condensation 6 47208 -UBERON:0006247 iliac pre-cartilage condensation 6 47209 -UBERON:0006255 ischial pre-cartilage condensation 6 47210 -UBERON:0006263 Meckel's cartilage pre-cartilage condensation 6 47211 -UBERON:0006285 pubic pre-cartilage condensation 6 47212 -UBERON:0006287 radius-ulna pre-cartilage condensation 6 47213 -UBERON:0006289 rib pre-cartilage condensation 6 47214 -UBERON:0006295 sternebral bone pre-cartilage condensation 6 47215 -UBERON:0007267 trachea pre-cartilage rings 6 47216 -UBERON:0009191 sphenoid bone pre-cartilage condensation 6 47217 -UBERON:0009192 basisphenoid pre-cartilage condensation 6 47218 -UBERON:0009197 basioccipital pre-cartilage condensation 6 47219 -UBERON:0010213 laryngeal pre-cartilage condensation 6 47220 -UBERON:0010214 cricoid pre-cartilage condensation 7 47221 -UBERON:0010219 thyroid pre-cartilage condensation 7 47222 -UBERON:0010220 arytenoid pre-cartilage condensation 7 47223 -UBERON:0010354 Reichert's cartilage pre-cartilage condensation 6 47224 -UBERON:0010540 tarsus pre-cartilage condensation 6 47225 -UBERON:0010687 pedal digit metatarsal pre-cartilage condensation 6 47226 -UBERON:0010547 pedal digit 1 metatarsal pre-cartilage condensation 7 47227 -UBERON:0010548 pedal digit 2 metatarsal pre-cartilage condensation 7 47228 -UBERON:0010549 pedal digit 3 metatarsal pre-cartilage condensation 7 47229 -UBERON:0010550 pedal digit 4 metatarsal pre-cartilage condensation 7 47230 -UBERON:0010551 pedal digit 5 metatarsal pre-cartilage condensation 7 47231 -UBERON:0010728 sphenoid lesser wing pre-cartilage condensation 6 47232 -UBERON:0010732 alisphenoid pre-cartilage condensation 6 47233 -UBERON:0010801 calcaneum pre-cartilage condensation 6 47234 -UBERON:0010844 clavicle pre-cartilage condensation 6 47235 -UBERON:0010846 radius pre-cartilage condensation 6 47236 -UBERON:0010847 ulna pre-cartilage condensation 6 47237 -UBERON:0010850 tibia pre-cartilage condensation 6 47238 -UBERON:0010852 fibula pre-cartilage condensation 6 47239 -UBERON:0010901 tarsometatarsus pre-cartilage condensation 6 47240 -UBERON:0010903 tibiotarsus pre-cartilage condensation 6 47241 -UBERON:0011163 supraoccipital pre-cartilage condensation 6 47242 -UBERON:0011301 manubrium sternum pre-cartilage condensation 6 47243 -UBERON:0012081 patella pre-cartilage condensation 6 47244 -UBERON:0006292 shoulder joint primordium 5 47245 -UBERON:0010215 arytenoid swellings 5 47246 -UBERON:0015062 bone condensation 5 47247 -UBERON:0011801 dermal condensation of feather follicle 4 47248 -UBERON:0012106 baleen plate bristle 3 47249 -UBERON:0012470 wheel papilla 3 47250 -UBERON:0014402 sex-specific anatomical structure 3 47251 -UBERON:0007198 hermaphrodite anatomical structure 4 47252 -UBERON:0014403 male anatomical structure 4 47253 -UBERON:0014404 female anatomical structure 4 47254 -UBERON:0014778 cell group 3 47255 -UBERON:0015212 lateral structure 3 47256 -UBERON:0000019 camera-type eye 4 47257 -UBERON:0000056 ureter 4 47258 -UBERON:0001222 right ureter 5 47259 -UBERON:0001223 left ureter 5 47260 -UBERON:0000220 atlanto-occipital joint 4 47261 -UBERON:0000407 sympathetic trunk 4 47262 -UBERON:3010770 dorsal sympathetic chain 5 47263 -UBERON:3010771 ventral sympathetic chain 5 47264 -UBERON:0000460 major vestibular gland 4 47265 -UBERON:0000972 antenna 4 47266 -UBERON:0000999 ejaculatory duct 4 47267 -UBERON:0001105 clavicle bone 4 47268 -UBERON:0008255 right clavicle 5 47269 -UBERON:0008256 left clavicle 5 47270 -UBERON:0001118 lobe of thyroid gland 4 47271 -UBERON:0001119 right lobe of thyroid gland 5 47272 -UBERON:0001120 left lobe of thyroid gland 5 47273 -UBERON:0001139 common iliac vein 4 47274 -UBERON:0001144 testicular vein 4 47275 -UBERON:0000442 right testicular vein 5 47276 -UBERON:0000443 left testicular vein 5 47277 -UBERON:0001145 ovarian vein 4 47278 -UBERON:0001271 pelvic girdle region 4 47279 -UBERON:0011092 right pelvic girdle region 5 47280 -UBERON:0011093 left pelvic girdle region 5 47281 -UBERON:0001272 innominate bone 4 47282 -UBERON:0001273 ilium 4 47283 -UBERON:4200220 iliac ramus 5 47284 -UBERON:0001274 ischium 4 47285 -UBERON:0001275 pubis 4 47286 -UBERON:0001327 coccygeus muscle 4 47287 -UBERON:0001357 inferior rectal artery 4 47288 -UBERON:0001365 sacro-iliac joint 4 47289 -UBERON:0001421 pectoral girdle region 4 47290 -UBERON:0001534 right subclavian artery 4 47291 -UBERON:0001567 cheek 4 47292 -UBERON:0001581 depressor labii inferioris 4 47293 -UBERON:0001584 left subclavian artery 4 47294 -UBERON:0001610 lingual artery 4 47295 -UBERON:0001628 posterior communicating artery 4 47296 -UBERON:0001636 posterior cerebral artery 4 47297 -UBERON:0001680 lacrimal bone 4 47298 -UBERON:0001681 nasal bone 4 47299 -UBERON:0001682 palatine bone 4 47300 -UBERON:0001683 jugal bone 4 47301 -UBERON:0001691 external ear 4 47302 -UBERON:0006616 right external ear 5 47303 -UBERON:0006617 left external ear 5 47304 -UBERON:0001697 orbit of skull 4 47305 -UBERON:0001740 arytenoid cartilage 4 47306 -UBERON:0001829 major salivary gland 4 47307 -UBERON:0001736 submandibular gland 5 47308 -UBERON:0001831 parotid gland 5 47309 -UBERON:0001832 sublingual gland 5 47310 -UBERON:0001869 cerebral hemisphere 4 47311 -UBERON:0002812 left cerebral hemisphere 5 47312 -UBERON:0002813 right cerebral hemisphere 5 47313 -UBERON:0001945 superior colliculus 4 47314 -UBERON:0001946 inferior colliculus 4 47315 -UBERON:0002048 lung 4 47316 -UBERON:0002167 right lung 5 47317 -UBERON:0002168 left lung 5 47318 -UBERON:0002113 kidney 4 47319 -UBERON:0000080 mesonephros 5 47320 -UBERON:0000081 metanephros 5 47321 -UBERON:0000082 adult mammalian kidney 5 47322 -UBERON:0002120 pronephros 5 47323 -UBERON:0004538 left kidney 5 47324 -UBERON:0004539 right kidney 5 47325 -UBERON:0002118 right ovary 4 47326 -UBERON:0002119 left ovary 4 47327 -UBERON:0002245 cerebellar hemisphere 4 47328 -UBERON:0014889 left hemisphere of cerebellum 5 47329 -UBERON:0014890 right hemisphere of cerebellum 5 47330 -UBERON:0002247 uterine horn 4 47331 -UBERON:0009020 left uterine horn 5 47332 -UBERON:0009022 right uterine horn 5 47333 -UBERON:0002264 olfactory bulb 4 47334 -UBERON:0002369 adrenal gland 4 47335 -UBERON:0001233 right adrenal gland 5 47336 -UBERON:0001234 left adrenal gland 5 47337 -UBERON:0002397 maxilla 4 47338 -UBERON:0002478 orbitosphenoid 4 47339 -UBERON:0002493 uterine artery 4 47340 -UBERON:0002500 zygomatic arch 4 47341 -UBERON:0003077 paraxial mesoderm 4 47342 -UBERON:0003700 temporomandibular joint 4 47343 -UBERON:0003889 fallopian tube 4 47344 -UBERON:0001302 right uterine tube 5 47345 -UBERON:0001303 left uterine tube 5 47346 -UBERON:0003974 upper part of vagina 5 47347 -UBERON:0016632 isthmus of fallopian tube 5 47348 -UBERON:0003890 Mullerian duct 4 47349 -UBERON:0003997 hyoid bone greater horn 4 47350 -UBERON:0003998 hyoid bone lesser horn 4 47351 -UBERON:0004084 genital labium 4 47352 -UBERON:0004014 labium minora 5 47353 -UBERON:0004085 labium majora 5 47354 -UBERON:0004450 gastric vein 4 47355 -UBERON:0014690 left gastric vein 5 47356 -UBERON:0014691 right gastric vein 5 47357 -UBERON:0004533 left testis 4 47358 -UBERON:0004534 right testis 4 47359 -UBERON:0004548 left eye 4 47360 -UBERON:0004549 right eye 4 47361 -UBERON:0004649 sphenoid bone pterygoid process 4 47362 -UBERON:0004742 dentary 4 47363 -UBERON:0001684 mandible 5 47364 -UBERON:0005062 neural fold 4 47365 -UBERON:0009748 cephalic neural fold 5 47366 -UBERON:0005459 left umbilical vein 4 47367 -UBERON:0005460 left vitelline vein 4 47368 -UBERON:0005471 right umbilical vein 4 47369 -UBERON:0005472 right vitelline vein 4 47370 -UBERON:0005483 thymus lobe 4 47371 -UBERON:0005457 left thymus lobe 5 47372 -UBERON:0005469 right thymus lobe 5 47373 -UBERON:0005611 inner canthus 4 47374 -UBERON:0013679 inner canthus of right eye 5 47375 -UBERON:0013680 inner canthus of left eye 5 47376 -UBERON:0005745 optic foramen 4 47377 -UBERON:0005922 inferior nasal concha 4 47378 -UBERON:0005986 left branch of atrioventricular bundle 4 47379 -UBERON:0005987 right branch of atrioventricular bundle 4 47380 -UBERON:0006062 zygapophysis 4 47381 -UBERON:0001079 prezygapophysis 5 47382 -UBERON:0008456 prezygapophysis of lumbar vertebra 6 47383 -UBERON:0008457 prezygapophysis of sacral vertebra 6 47384 -UBERON:0008459 prezygapophysis of cervical vertebra 6 47385 -UBERON:0008460 prezygapophysis of thoracic vertebra 6 47386 -UBERON:0001080 postzygapophysis 5 47387 -UBERON:0008461 postzygapophysis of lumbar vertebra 6 47388 -UBERON:0008462 postzygapophysis of cervical vertebra 6 47389 -UBERON:0008463 postzygapophysis of thoracic vertebra 6 47390 -UBERON:0006597 quadrate bone 4 47391 -UBERON:0006721 alisphenoid bone 4 47392 -UBERON:0006726 outer canthus 4 47393 -UBERON:0015120 right outer canthus 5 47394 -UBERON:0015121 left outer canthus 5 47395 -UBERON:0006749 superior parathyroid gland 4 47396 -UBERON:0006755 inferior parathyroid gland 4 47397 -UBERON:0006906 ala of nose 4 47398 -UBERON:0006947 male genital duct 4 47399 -UBERON:0006958 great vein of heart 4 47400 -UBERON:0007250 lingual tonsil 4 47401 -UBERON:0007315 internal pudendal artery 4 47402 -UBERON:0008427 transverse foramen of axis 4 47403 -UBERON:0008596 mentalis muscle 4 47404 -UBERON:0008804 stylopharyngeus muscle 4 47405 -UBERON:0009064 cervical air sac 4 47406 -UBERON:0009065 anterior thoracic air sac 4 47407 -UBERON:0009066 posterior thoracic air sac 4 47408 -UBERON:0009067 abdominal air sac 4 47409 -UBERON:0009139 right posterior cardinal vein 4 47410 -UBERON:0009140 right subcardinal vein 4 47411 -UBERON:0009771 left anterior cardinal vein 4 47412 -UBERON:0009772 right anterior cardinal vein 4 47413 -UBERON:0009778 pleural sac 4 47414 -UBERON:0009897 right auditory cortex 4 47415 -UBERON:0009898 left auditory cortex 4 47416 -UBERON:0010014 epigonal organ 4 47417 -UBERON:0010234 palatopharyngeus muscle 4 47418 -UBERON:0010707 appendage girdle complex 4 47419 -UBERON:0010708 pectoral complex 5 47420 -UBERON:0010709 pelvic complex 5 47421 -UBERON:0010937 salpingopharyngeus muscle 4 47422 -UBERON:0010953 nasalis muscle 4 47423 -UBERON:0011079 angular bone 4 47424 -UBERON:0011370 transverse process of atlas 4 47425 -UBERON:2001392 parapophysis 1 5 47426 -UBERON:0011627 orbital part of frontal bone 4 47427 -UBERON:0011658 epiplastron 4 47428 -UBERON:0011660 hypoplastron 4 47429 -UBERON:0011661 xiphiplastron 4 47430 -UBERON:0011667 pleural plate of carapace 4 47431 -UBERON:0013124 left posterior cardinal vein 4 47432 -UBERON:0013125 left subcardinal vein 4 47433 -UBERON:0013129 bulb of vestibule 4 47434 -UBERON:0013161 left lateral ventricle 4 47435 -UBERON:0013162 right lateral ventricle 4 47436 -UBERON:0013177 dorsal bursa 4 47437 -UBERON:0013178 anterior dorsal bursa 5 47438 -UBERON:0013179 posterior dorsal bursa 5 47439 -UBERON:0013188 monkey lips dorsal bursa complex 4 47440 -UBERON:0013204 epipubic bone 4 47441 -UBERON:0013523 lateral vaginal canal 4 47442 -UBERON:0013637 prostate gland lateral lobe 4 47443 -UBERON:0013683 left dorsal thalamus 4 47444 -UBERON:0013684 right dorsal thalamus 4 47445 -UBERON:0013691 buttock 4 47446 -UBERON:0013772 left nipple 4 47447 -UBERON:0013773 right nipple 4 47448 -UBERON:0014385 aryepiglottic fold 4 47449 -UBERON:0014707 hyoplastron 4 47450 -UBERON:0014708 costal plate of carapace 4 47451 -UBERON:0014766 right crus of diaphragm 4 47452 -UBERON:0014767 left crus of diaphragm 4 47453 -UBERON:0014787 left extraembryonic umbilical vein 4 47454 -UBERON:0014788 right extraembryonic umbilical vein 4 47455 -UBERON:0015280 pancreas left lobe 4 47456 -UBERON:0015281 pancreas right lobe 4 47457 -UBERON:0015847 upper left incisor tooth 4 47458 -UBERON:0015850 upper left incisor tusk 5 47459 -UBERON:0015851 upper right incisor tusk 4 47460 -UBERON:0016629 branch of Y-shaped fibrocartilage skeleton of ventral pouch 4 47461 -UBERON:0017635 paired venous dural sinus 4 47462 -UBERON:0001641 transverse sinus 5 47463 -UBERON:0005475 sigmoid sinus 5 47464 -UBERON:0007160 inferior petrosal sinus 5 47465 -UBERON:0017637 marginal venous sinus 5 47466 -UBERON:0017638 primitive marginal sinus 5 47467 -UBERON:0035338 sphenoparietal sinus 5 47468 -UBERON:0018552 lateral incisor tooth 4 47469 -UBERON:0018554 primary lateral incisor tooth 5 47470 -UBERON:0018594 upper lateral primary incisor tooth 6 47471 -UBERON:0018596 lower lateral primary incisor tooth 6 47472 -UBERON:0018602 lower lateral incisor tooth 5 47473 -UBERON:0018570 lower lateral secondary incisor tooth 6 47474 -UBERON:0018596 lower lateral primary incisor tooth 6 47475 -UBERON:0018604 upper lateral incisor tooth 5 47476 -UBERON:0016455 upper lateral secondary incisor tooth 6 47477 -UBERON:0018594 upper lateral primary incisor tooth 6 47478 -UBERON:0034959 right lymph heart 4 47479 -UBERON:0034960 left lymph heart 4 47480 -UBERON:0035174 right ear 4 47481 -UBERON:0035252 left subcostal vein 4 47482 -UBERON:0035286 lateral wall of oropharynx 4 47483 -UBERON:0035295 left ear 4 47484 -UBERON:0035322 right common iliac artery 4 47485 -UBERON:0035383 lateral wall of nasopharynx 4 47486 -UBERON:0035410 left inguinal part of abdomen 4 47487 -UBERON:0035435 right suprarenal vein 4 47488 -UBERON:0035474 right subcostal vein 4 47489 -UBERON:0035483 left suprarenal vein 4 47490 -UBERON:0035505 right inguinal part of abdomen 4 47491 -UBERON:0035529 left common iliac artery 4 47492 -UBERON:0035553 left cardiac chamber 4 47493 -UBERON:0002079 left cardiac atrium 5 47494 -UBERON:0002084 heart left ventricle 5 47495 -UBERON:0035554 right cardiac chamber 4 47496 -UBERON:0002078 right cardiac atrium 5 47497 -UBERON:0002080 heart right ventricle 5 47498 -UBERON:0035637 inner quadrant of breast 4 47499 -UBERON:0035477 lower inner quadrant of breast 5 47500 -UBERON:0035542 upper inner quadrant of breast 5 47501 -UBERON:0035638 outer quadrant of breast 4 47502 -UBERON:0035328 upper outer quadrant of breast 5 47503 -UBERON:0035365 lower outer quadrant of breast 5 47504 -UBERON:0035831 costal diaphragm 4 47505 -UBERON:1000008 left part of face 4 47506 -UBERON:1000014 right part of face 4 47507 -UBERON:8000006 left side of back 4 47508 -UBERON:8000007 right side of back 4 47509 -UBERON:8300001 right forelimb 4 47510 -UBERON:8300002 left forelimb 4 47511 -UBERON:8300003 right hindlimb 4 47512 -UBERON:8300004 left hindlimb 4 47513 -UBERON:0018254 skeletal musculature 3 47514 -UBERON:0034768 morphological feature 3 47515 -UBERON:0000200 gyrus 4 47516 -UBERON:0002581 postcentral gyrus 5 47517 -UBERON:0002599 medial olfactory gyrus 5 47518 -UBERON:0002657 posterior parahippocampal gyrus 5 47519 -UBERON:0002665 supracallosal gyrus 5 47520 -UBERON:0002603 paraterminal gyrus 6 47521 -UBERON:0002686 angular gyrus 5 47522 -UBERON:0002688 supramarginal gyrus 5 47523 -UBERON:0002724 limen of insula 5 47524 -UBERON:0002740 posterior cingulate gyrus 5 47525 -UBERON:0002751 inferior temporal gyrus 5 47526 -UBERON:0002756 anterior cingulate gyrus 5 47527 -UBERON:0002766 fusiform gyrus 5 47528 -UBERON:0002769 superior temporal gyrus 5 47529 -UBERON:0002771 middle temporal gyrus 5 47530 -UBERON:0002967 cingulate gyrus 5 47531 -UBERON:0002973 parahippocampal gyrus 5 47532 -UBERON:0003939 transverse gyrus of Heschl 5 47533 -UBERON:0002773 anterior transverse temporal gyrus 6 47534 -UBERON:0002774 posterior transverse temporal gyrus 6 47535 -UBERON:0004671 gyrus rectus 5 47536 -UBERON:0006093 precuneus cortex 5 47537 -UBERON:0007190 paracentral gyrus 5 47538 -UBERON:0007191 anterior paracentral gyrus 6 47539 -UBERON:0007192 posterior paracentral gyrus 6 47540 -UBERON:0007193 orbital gyrus 5 47541 -UBERON:0002564 lateral orbital gyrus 6 47542 -UBERON:0002570 medial orbital gyrus 6 47543 -UBERON:0002575 posterior orbital gyrus 6 47544 -UBERON:0002644 intermediate orbital gyrus 6 47545 -UBERON:0009836 fronto-orbital gyrus 6 47546 -UBERON:0022244 anterior orbital gyrus 6 47547 -UBERON:0014640 occipital gyrus 5 47548 -UBERON:0002943 lingual gyrus 6 47549 -UBERON:0002948 superior occipital gyrus 6 47550 -UBERON:0006092 cuneus cortex 6 47551 -UBERON:0006114 lateral occipital cortex 6 47552 -UBERON:0014608 inferior occipital gyrus 6 47553 -UBERON:0026137 annectant gyrus 6 47554 -UBERON:0015593 frontal gyrus 5 47555 -UBERON:0002624 orbital part of inferior frontal gyrus 6 47556 -UBERON:0002661 superior frontal gyrus 6 47557 -UBERON:0002702 middle frontal gyrus 6 47558 -UBERON:0002703 precentral gyrus 6 47559 -UBERON:0002998 inferior frontal gyrus 6 47560 -UBERON:0004167 orbitofrontal cortex 6 47561 -UBERON:0006445 caudal middle frontal gyrus 6 47562 -UBERON:0006446 rostral middle frontal gyrus 6 47563 -UBERON:0009836 fronto-orbital gyrus 6 47564 -UBERON:0019280 rostral gyrus 5 47565 -UBERON:0035933 paracentral lobule 5 47566 -UBERON:0004529 anatomical projection 4 47567 -UBERON:0001734 palatine uvula 5 47568 -UBERON:0005813 tubercle 5 47569 -UBERON:0002235 tubercle of rib 6 47570 -UBERON:0002498 deltopectoral crest 6 47571 -UBERON:0005810 cervical vertebra 1 anterior tubercle 6 47572 -UBERON:0005815 anterior tubercle of transverse process of cervical vertebra 6 47573 -UBERON:0005816 posterior tubercle of transverse process of cervical vertebra 6 47574 -UBERON:0006685 pharyngeal tubercle 6 47575 -UBERON:0010724 lateral tubercle of talus 6 47576 -UBERON:0010760 supraglenoid tubercle 6 47577 -UBERON:0011187 ventral tubercle of humerus 6 47578 -UBERON:0011188 lesser tubercle of humerus 6 47579 -UBERON:0011828 areolar tubercle 6 47580 -UBERON:0013527 pectoral flipper tubercle 6 47581 -UBERON:0017163 skin bony tubercle 6 47582 -UBERON:0018362 supracondylar tubercle 7 47583 -UBERON:0034983 ischial tuberosity 6 47584 -UBERON:3010172 subarticular tubercles 6 47585 -UBERON:3010173 supernumerary tubercles 6 47586 -UBERON:3010184 inner metatarsal tubercle 6 47587 -UBERON:3010186 outer metatarsal tubercle 6 47588 -UBERON:3010187 inner metacarpal tubercle 6 47589 -UBERON:3010188 outer metacarpal tubercle 6 47590 -UBERON:4200177 supracondyle tubercle 6 47591 -UBERON:0018371 ventral supracondylar tubercle 7 47592 -UBERON:0018372 dorsal supracondylar tubercle 7 47593 -UBERON:4200182 lateral tubercle of astragalus 6 47594 -UBERON:4200183 bicipital tuberosity 6 47595 -UBERON:4200184 ulnar tuberosity 6 47596 -UBERON:4200212 pectoral process of humerus 6 47597 -UBERON:4200213 deltoid process 6 47598 -UBERON:0006969 cranial appendage 5 47599 -UBERON:0006967 horn 6 47600 -UBERON:0006971 antler 6 47601 -UBERON:0013213 ossicone 6 47602 -UBERON:0010153 rumen papilla 5 47603 -UBERON:0010373 uncinate process of pancreas 5 47604 -UBERON:0011769 cartilaginous projection 5 47605 -UBERON:3000688 prominentia apicalis dorsalis 6 47606 -UBERON:3000689 prominentia apicalis ventralis 6 47607 -UBERON:0013073 rattle 5 47608 -UBERON:0013153 arachnoid villus 5 47609 -UBERON:0013703 integumentary projection 5 47610 -UBERON:0000021 cutaneous appendage 6 47611 -UBERON:0000022 feather 7 47612 -UBERON:0008291 down feather 8 47613 -UBERON:0008292 vaned feather 8 47614 -UBERON:0008297 pennaceous feather 9 47615 -UBERON:0011793 flight feather 10 47616 -UBERON:0011794 rectrix feather 11 47617 -UBERON:0011795 remex feather 11 47618 -UBERON:0011796 primary remex feather 12 47619 -UBERON:0011797 secondary remex feather 12 47620 -UBERON:0011798 tertial remex feather 12 47621 -UBERON:0008293 filoplume feather 8 47622 -UBERON:0014480 blood feather 8 47623 -UBERON:0018355 rictal bristle 8 47624 -UBERON:0018535 forelimb feather 8 47625 -UBERON:0018536 wing feather 9 47626 -UBERON:0011795 remex feather 10 47627 -UBERON:0011796 primary remex feather 11 47628 -UBERON:0011797 secondary remex feather 11 47629 -UBERON:0011798 tertial remex feather 11 47630 -UBERON:0018537 tail feather 8 47631 -UBERON:0011794 rectrix feather 9 47632 -UBERON:0018538 breast feather 8 47633 -UBERON:0018539 dorsal feather 8 47634 -UBERON:0018688 hindlimb feather 8 47635 -UBERON:0018689 crural feather 9 47636 -UBERON:0034930 auricular feather 8 47637 -UBERON:0000329 hair root 7 47638 -UBERON:0001037 strand of hair 7 47639 -UBERON:0001702 eyelash 8 47640 -UBERON:0019254 upper eyelash 9 47641 -UBERON:0019255 lower eyelash 9 47642 -UBERON:0006378 strand of vibrissa hair 8 47643 -UBERON:0010509 strand of pelage hair 8 47644 -UBERON:0010510 strand of auchene hair 9 47645 -UBERON:0010511 strand of awl hair 9 47646 -UBERON:0010512 strand of guard hair 9 47647 -UBERON:0010513 strand of zigzag hair 9 47648 -UBERON:0013196 strand of wool 9 47649 -UBERON:0010514 strand of duvet hair 8 47650 -UBERON:0013494 keratin-coated spine 8 47651 -UBERON:0013495 barbed keratin-coated spine 9 47652 -UBERON:0013496 unbarbed keratin-coated spine 9 47653 -UBERON:0013698 strand of pubic hair 8 47654 -UBERON:0013699 strand of axillary hair 8 47655 -UBERON:0015144 autopod hair 8 47656 -UBERON:0015145 pes hair 9 47657 -UBERON:0015146 manus hair 9 47658 -UBERON:0015148 tail hair 8 47659 -UBERON:0015149 ventral hair 8 47660 -UBERON:0015150 dorsal hair 8 47661 -UBERON:0016446 hair of head 8 47662 -UBERON:0010171 strand of hair of face 9 47663 -UBERON:0011931 nasal hair 10 47664 -UBERON:0019254 upper eyelash 10 47665 -UBERON:0019255 lower eyelash 10 47666 -UBERON:0022279 strand of hair on external ear 9 47667 -UBERON:0015147 pinna hair 10 47668 -UBERON:0016447 hair of trunk 8 47669 -UBERON:0010513 strand of zigzag hair 9 47670 -UBERON:0022285 strand of tylotrich hair 8 47671 -UBERON:0002074 hair shaft 7 47672 -UBERON:0007623 comb and wattle 7 47673 -UBERON:0011901 hair matrix 7 47674 -UBERON:0012176 comb 7 47675 -UBERON:0013206 nasal tentacle 7 47676 -UBERON:0008294 feather barb 6 47677 -UBERON:0008295 feather barbule 6 47678 -UBERON:0009564 distal limb integumentary appendage 6 47679 -UBERON:0001705 nail 7 47680 -UBERON:0000212 toilet claw 8 47681 -UBERON:0009565 nail of manual digit 8 47682 -UBERON:0011273 nail of manual digit 1 9 47683 -UBERON:0011274 nail of manual digit 2 9 47684 -UBERON:0011275 nail of manual digit 3 9 47685 -UBERON:0011276 nail of manual digit 4 9 47686 -UBERON:0011277 nail of manual digit 5 9 47687 -UBERON:0009567 nail of pedal digit 8 47688 -UBERON:0011278 nail of pedal digit 1 9 47689 -UBERON:0011279 nail of pedal digit 2 9 47690 -UBERON:0011280 nail of pedal digit 3 9 47691 -UBERON:0011281 nail of pedal digit 4 9 47692 -UBERON:0011282 nail of pedal digit 5 9 47693 -UBERON:0008963 hoof 7 47694 -UBERON:4100008 pedal claws 7 47695 -UBERON:4200179 manual claw 7 47696 -UBERON:0011785 ramus of feather barb 6 47697 -UBERON:0011786 ramus of feather barbule 6 47698 -UBERON:0012127 feather barbicel 6 47699 -UBERON:0017163 skin bony tubercle 6 47700 -UBERON:0018362 supracondylar tubercle 7 47701 -UBERON:2002249 ctenius 6 47702 -UBERON:3010093 villosities 6 47703 -UBERON:4200092 flexor tubercle of ungual 6 47704 -UBERON:0016477 zygomatic process of maxilla 5 47705 -UBERON:0017294 horn of hemipenis 5 47706 -UBERON:0017624 pseudoclasper 5 47707 -UBERON:0018307 keel 5 47708 -UBERON:0018361 suborbital shelf 5 47709 -UBERON:2002004 anterior dentation of dorsal fin spine 2 5 47710 -UBERON:3000059 capsular process 5 47711 -UBERON:3000101 hyale 5 47712 -UBERON:3000113 crista intermedia 5 47713 -UBERON:3000117 crista subnasalis 5 47714 -UBERON:3000118 crista supraorbitalis 5 47715 -UBERON:3000294 median prenasal process 5 47716 -UBERON:3000448 posterior maxillary process 5 47717 -UBERON:3000449 posterior maxillary process dorsal process 5 47718 -UBERON:3000450 posterior mental process 5 47719 -UBERON:3000644 processus lingularis of nasal skeleton 5 47720 -UBERON:3000672 posterolateral process 5 47721 -UBERON:3000673 posteromedial process 5 47722 -UBERON:3010557 triangular process 5 47723 -UBERON:3010584 mandibular arch neural crest 5 47724 -UBERON:3010653 ramus nasalis medialis 5 47725 -UBERON:3010693 ramus posterior profundus of V3 5 47726 -UBERON:3010720 ramus hyomandibularis 5 47727 -UBERON:3010735 ramus anterior of CN VIII 5 47728 -UBERON:3010736 ramus posterior of CN VIII 5 47729 -UBERON:3010754 ramus recurrens 5 47730 -UBERON:4100000 skeletal element projection 5 47731 -UBERON:0002207 xiphoid process 6 47732 -UBERON:0002235 tubercle of rib 6 47733 -UBERON:0002498 deltopectoral crest 6 47734 -UBERON:0004530 bony projection 6 47735 -UBERON:0002497 acromion 7 47736 -UBERON:0003960 styloid process of temporal bone 7 47737 -UBERON:0003996 cervical vertebra 1 arcus anterior 7 47738 -UBERON:0004096 odontoid process of cervical vertebra 2 7 47739 -UBERON:0005869 maxillary process of inferior nasal concha 7 47740 -UBERON:0005925 ethmoidal process of inferior nasal concha 7 47741 -UBERON:0006770 apophysis 7 47742 -UBERON:0018349 pharyngeal apophysis 8 47743 -UBERON:0006959 mandible angular process 7 47744 -UBERON:0006970 bony core of horn 7 47745 -UBERON:0008959 auditory bulla 7 47746 -UBERON:0011599 lenticular process of incus bone 7 47747 -UBERON:0011620 basihyal lingual process 7 47748 -UBERON:0013174 sigmoid process of tympanic bone 7 47749 -UBERON:0013677 serrated projection of ctenactinium 7 47750 -UBERON:0013706 bone spine 7 47751 -UBERON:0009000 ischial spine 8 47752 -UBERON:0013707 iliac spine 8 47753 -UBERON:0013712 anterior iliac spine 9 47754 -UBERON:0013708 anterior superior iliac spine 10 47755 -UBERON:0013709 anterior inferior iliac spine 10 47756 -UBERON:0013713 posterior iliac spine 9 47757 -UBERON:0013710 posterior superior iliac spine 10 47758 -UBERON:0013711 posterior inferior iliac spine 10 47759 -UBERON:0014409 metacromion 7 47760 -UBERON:0018358 spina externa 7 47761 -UBERON:0018367 processus ventralis of thoracic vertebra 7 47762 -UBERON:0018368 processus ventrolateralis of thoracic vertebra 7 47763 -UBERON:2001578 anterior dorsomedial process of autopalatine 7 47764 -UBERON:2001604 lateral ethmoid palatine process 7 47765 -UBERON:2001607 basipterygoid process of parasphenoid 7 47766 -UBERON:2001929 epioccipital posterior process 7 47767 -UBERON:2002013 ascending limb of ceratobranchial 5 bone 7 47768 -UBERON:2002017 anterior limb of ceratobranchial 5 bone 7 47769 -UBERON:2002021 ascending process of the parasphenoid 7 47770 -UBERON:2002044 anterior limb of parapophysis 4 7 47771 -UBERON:3000003 alary process of premaxilla 7 47772 -UBERON:3000012 angulosplenial coronoid process 7 47773 -UBERON:3000015 anterior maxillary process 7 47774 -UBERON:3000017 anterior process of pars palatina of maxilla 7 47775 -UBERON:3000018 anterior ramus of pterygoid 7 47776 -UBERON:3000020 anterolateral process of frontoparietal 7 47777 -UBERON:3000022 antorbital process 7 47778 -UBERON:3000031 ascending process of palatoquadrate 7 47779 -UBERON:3000036 basal process of palatoquadrate 7 47780 -UBERON:3000505 processus pterygoideus of maxilla 7 47781 -UBERON:3000543 retroarticular process 7 47782 -UBERON:3000649 anterior process of vomer 7 47783 -UBERON:3000773 ilial ridge 7 47784 -UBERON:3000792 anterior ramus of cleithrum 7 47785 -UBERON:3000869 ilial protuberance 7 47786 -UBERON:3000948 articular process 7 47787 -UBERON:3010092 basitrabecular process 7 47788 -UBERON:3010560 anterior process of the palatoquadrate 7 47789 -UBERON:4100004 ischial peduncle 7 47790 -UBERON:4100010 post-glenoid process 7 47791 -UBERON:4100011 postacetabular buttress 7 47792 -UBERON:4100016 posterior process of ilium 7 47793 -UBERON:4200001 postpubis 7 47794 -UBERON:4200010 ventral humeral ridge 7 47795 -UBERON:4200012 ectepicondylar flange 7 47796 -UBERON:4200014 lateral tuber of ulna 7 47797 -UBERON:4200016 postbranchial lamina 7 47798 -UBERON:4200018 calcaneal tuber 7 47799 -UBERON:4200019 preacetabular process 7 47800 -UBERON:4200025 ascending process of the astragalus 7 47801 -UBERON:4200027 supraglenoid buttress 7 47802 -UBERON:4200028 adductor blade 7 47803 -UBERON:4200029 adductor crest 7 47804 -UBERON:4200034 cnemial crest 7 47805 -UBERON:4200036 internal trochanter 7 47806 -UBERON:4200048 bicipital crest 7 47807 -UBERON:4200063 ectocondylar tubercle 7 47808 -UBERON:4200079 dorsal iliac process 7 47809 -UBERON:4200080 fibular crest 7 47810 -UBERON:4200087 iliac peduncle 7 47811 -UBERON:4200088 iliac peduncle of the pubis 7 47812 -UBERON:4200118 pubic peduncle 7 47813 -UBERON:4200176 ascending process of clavicle 7 47814 -UBERON:4200190 zygosphene 7 47815 -UBERON:4300002 palatine prong 7 47816 -UBERON:4300127 nuchal crest 7 47817 -UBERON:4300154 procurrent spur 7 47818 -UBERON:4300196 processus descendens of sphenoid 7 47819 -UBERON:0004649 sphenoid bone pterygoid process 6 47820 -UBERON:0004654 temporal process of zygomatic bone 6 47821 -UBERON:0004655 zygomatic process of temporal bone 6 47822 -UBERON:0004657 mandible condylar process 6 47823 -UBERON:0004660 mandible coronoid process 6 47824 -UBERON:0005354 malleus processus brevis 6 47825 -UBERON:0005810 cervical vertebra 1 anterior tubercle 6 47826 -UBERON:0005815 anterior tubercle of transverse process of cervical vertebra 6 47827 -UBERON:0005816 posterior tubercle of transverse process of cervical vertebra 6 47828 -UBERON:0005871 palatine process of maxilla 6 47829 -UBERON:0006061 process of vertebra 6 47830 -UBERON:0001076 neural spine 7 47831 -UBERON:2000660 epural 8 47832 -UBERON:2002250 epural 2 9 47833 -UBERON:2002251 epural 3 9 47834 -UBERON:2002252 epural 1 9 47835 -UBERON:2001546 neural spine 4 8 47836 -UBERON:2001885 neural spine 1 8 47837 -UBERON:2001886 neural spine 2 8 47838 -UBERON:2001887 neural spine 3 8 47839 -UBERON:4300090 X bone 8 47840 -UBERON:4300091 Y bone 8 47841 -UBERON:4300184 neural spine 5 8 47842 -UBERON:4300185 neural spine 6 8 47843 -UBERON:4300186 neural spine 7 8 47844 -UBERON:0001077 transverse process of vertebra 7 47845 -UBERON:0003109 parapophysis 8 47846 -UBERON:2001392 parapophysis 1 9 47847 -UBERON:2001393 parapophysis 2 9 47848 -UBERON:2001971 parapophysis 4 9 47849 -UBERON:2002041 parapophysis 6 9 47850 -UBERON:2002042 parapophysis 5 9 47851 -UBERON:4300189 parapophysis 3 9 47852 -UBERON:0011370 transverse process of atlas 8 47853 -UBERON:2001392 parapophysis 1 9 47854 -UBERON:0018143 transverse process of cervical vertebra 8 47855 -UBERON:0018146 transverse process of lumbar vertebra 8 47856 -UBERON:0035102 transverse process of caudal vertebra 8 47857 -UBERON:0001078 pedicle of vertebra 7 47858 -UBERON:0006062 zygapophysis 7 47859 -UBERON:0001079 prezygapophysis 8 47860 -UBERON:0008456 prezygapophysis of lumbar vertebra 9 47861 -UBERON:0008457 prezygapophysis of sacral vertebra 9 47862 -UBERON:0008459 prezygapophysis of cervical vertebra 9 47863 -UBERON:0008460 prezygapophysis of thoracic vertebra 9 47864 -UBERON:0001080 postzygapophysis 8 47865 -UBERON:0008461 postzygapophysis of lumbar vertebra 9 47866 -UBERON:0008462 postzygapophysis of cervical vertebra 9 47867 -UBERON:0008463 postzygapophysis of thoracic vertebra 9 47868 -UBERON:0010372 uncinate process of ethmoid 6 47869 -UBERON:0010760 supraglenoid tubercle 6 47870 -UBERON:0010994 coronoid process of ulna 6 47871 -UBERON:0011187 ventral tubercle of humerus 6 47872 -UBERON:0011188 lesser tubercle of humerus 6 47873 -UBERON:0011575 styloid process of ulna 6 47874 -UBERON:0011653 diapophysis of neural arch 6 47875 -UBERON:0013217 zygomatic plate 6 47876 -UBERON:0013767 frontal process of maxilla 6 47877 -UBERON:0014397 lateral process of malleus 6 47878 -UBERON:0016930 ridge of tooth 6 47879 -UBERON:0016931 transverse ridge of tooth 7 47880 -UBERON:0016932 triangular ridge of tooth 7 47881 -UBERON:0016933 oblique ridge of tooth 7 47882 -UBERON:0016934 marginal ridge of tooth 7 47883 -UBERON:0016937 transverse marginal ridge of tooth 8 47884 -UBERON:0016938 mesial marginal ridge of tooth 8 47885 -UBERON:0016939 distal marginal ridge of tooth 8 47886 -UBERON:0017295 cingulum of tooth 7 47887 -UBERON:0013612 lower jaw cingulum 8 47888 -UBERON:0017299 cingulum of lower incisor tooth 9 47889 -UBERON:0017313 cingulum of lower canine tooth 9 47890 -UBERON:0017612 cingulum of lower jaw molar 9 47891 -UBERON:0013613 upper jaw cingulum 8 47892 -UBERON:0017298 cingulum of upper incisor tooth 9 47893 -UBERON:0017312 cingulum of upper canine tooth 9 47894 -UBERON:0017613 cingulum of upper jaw molar 9 47895 -UBERON:0017296 cingulum of incisor tooth 8 47896 -UBERON:0017298 cingulum of upper incisor tooth 9 47897 -UBERON:0017299 cingulum of lower incisor tooth 9 47898 -UBERON:0017297 cingulum of canine tooth 8 47899 -UBERON:0017312 cingulum of upper canine tooth 9 47900 -UBERON:0017313 cingulum of lower canine tooth 9 47901 -UBERON:0017614 cingulum of molar tooth 8 47902 -UBERON:0017612 cingulum of lower jaw molar 9 47903 -UBERON:0017613 cingulum of upper jaw molar 9 47904 -UBERON:0018289 paracristid 7 47905 -UBERON:0018290 postcingulum 7 47906 -UBERON:0018274 postcingulum of deciduous premolar 5 8 47907 -UBERON:0018291 posteroloph 7 47908 -UBERON:0018286 molar 1 posteroloph 8 47909 -UBERON:0018292 posthypocrista 7 47910 -UBERON:0018275 posthypocrista of deciduous premolar 5 8 47911 -UBERON:0018293 precingulum 7 47912 -UBERON:0018295 preprotocrista 7 47913 -UBERON:0017249 incisive process of premaxilla 6 47914 -UBERON:0018160 anterior process of malleus 6 47915 -UBERON:0018341 nasal process of premaxilla 6 47916 -UBERON:0018345 stylar shelf 6 47917 -UBERON:0018365 supratemporal process 6 47918 -UBERON:0034900 palatine process of premaxilla 6 47919 -UBERON:0035139 anterior nasal spine of maxilla 6 47920 -UBERON:2000224 quadrate ventral process 6 47921 -UBERON:2000699 entopterygoid vertical strut 6 47922 -UBERON:2000911 transverse process of neural arch 3 6 47923 -UBERON:2001028 hypurapophysis 6 47924 -UBERON:2001382 epibranchial bone uncinate process 6 47925 -UBERON:2001796 epibranchial 2 bone uncinate process 7 47926 -UBERON:2001797 epibranchial 1 bone uncinate process 7 47927 -UBERON:2001822 epibranchial 3 bone uncinate process 7 47928 -UBERON:2001823 epibranchial 4 bone uncinate process 7 47929 -UBERON:2001548 intercalarium ascending process 6 47930 -UBERON:2001577 premaxilla ascending process 6 47931 -UBERON:2001603 maxilla ascending process 6 47932 -UBERON:2001609 pharyngobranchial 2 bone uncinate process 6 47933 -UBERON:2001610 quadrate dorsal process 6 47934 -UBERON:2001611 quadrate posterodorsal process 6 47935 -UBERON:2001615 sphenotic spine 6 47936 -UBERON:2001616 lateral ethmoid wing 6 47937 -UBERON:2001675 mesethmoid cornu 6 47938 -UBERON:2001681 cornu mesial process 6 47939 -UBERON:2001733 mesethmoid ventral diverging lamella 6 47940 -UBERON:2001734 posterior process of basipterygium 6 47941 -UBERON:2001747 lateral mesethmoid wing 6 47942 -UBERON:2001783 supraoccipital crest 6 47943 -UBERON:2001792 pharyngobranchial 3 bone uncinate process 6 47944 -UBERON:2001793 pharyngobranchial 4 bone uncinate process 6 47945 -UBERON:2001825 urohyal lateral process 6 47946 -UBERON:2001826 urohyal median process 6 47947 -UBERON:2001948 anal-fin hook 6 47948 -UBERON:2001949 caudal-fin hook 6 47949 -UBERON:2001999 posterior cleithral process 6 47950 -UBERON:2002000 posterior dentation of pectoral fin spine 6 47951 -UBERON:2002001 anterior dentation of pectoral fin spine 6 47952 -UBERON:2002002 anterior distal serration of pectoral fin spine 6 47953 -UBERON:2002003 posterior dentation of dorsal fin spine 2 6 47954 -UBERON:2002008 neural lamina 6 47955 -UBERON:2002014 ascending limb of ceratobranchial 5 cartilage 6 47956 -UBERON:2002018 anterior limb of ceratobranchial 5 cartilage 6 47957 -UBERON:2002030 ventral keel of coracoid 6 47958 -UBERON:2002043 posterior limb of parapophysis 4 6 47959 -UBERON:2002069 distal cartilage of posterior process of basipterygium 6 47960 -UBERON:2002070 internal anterior process of basipterygium 6 47961 -UBERON:2002071 distal cartilage of internal anterior process of basipterygium 6 47962 -UBERON:2002072 middle anterior process of basipterygium 6 47963 -UBERON:2002073 distal cartilage of middle anterior process of basipterygium 6 47964 -UBERON:2002074 external anterior process of basipterygium 6 47965 -UBERON:2002075 distal cartilage of external anterior process of basipterygium 6 47966 -UBERON:2002076 lateral process of basipterygium 6 47967 -UBERON:2002080 spina occipitalis 6 47968 -UBERON:2002166 pseudourostyle 6 47969 -UBERON:2002249 ctenius 6 47970 -UBERON:2002257 premaxilla dentigerous process 6 47971 -UBERON:3000110 crista contacta 6 47972 -UBERON:3000111 crista dentalis of maxilla 6 47973 -UBERON:3000112 crista dentalis of premaxilla 6 47974 -UBERON:3000115 crista lateralis of premaxilla 6 47975 -UBERON:3000177 flange of quadratojugal 6 47976 -UBERON:3000259 lamina inferior 6 47977 -UBERON:3000260 lamina nariochoanalis 6 47978 -UBERON:3000292 medial ramus of pterygoid 6 47979 -UBERON:3000365 otic process 6 47980 -UBERON:3000367 otic ramus of squamosal 6 47981 -UBERON:3000375 palatine process of the pars facialis of the maxilla 6 47982 -UBERON:3000380 palatoquadrate articular process 6 47983 -UBERON:3000386 cultriform process 6 47984 -UBERON:3000387 subotic alae 6 47985 -UBERON:3000453 posterolateral vomerine process 6 47986 -UBERON:3000459 prearticular coronoid process 6 47987 -UBERON:3000467 preorbital process of the pars facialis of the maxilla 6 47988 -UBERON:3000486 processus ascendens plectri 6 47989 -UBERON:3000492 processus infrafenestralis 6 47990 -UBERON:3000493 processus internus of pseudoangular 6 47991 -UBERON:3000494 processus lingualis of pterygoid 6 47992 -UBERON:3000500 processus posterior of maxilla 6 47993 -UBERON:3000509 processus suprafenestralis 6 47994 -UBERON:3000512 processus zygomatico-maxillaris 6 47995 -UBERON:3000516 pseudobasal process 6 47996 -UBERON:3000523 pterygoid process of palatoquadrate 6 47997 -UBERON:3000527 quadrate process of palatoquadrate 6 47998 -UBERON:3000547 rostral process 6 47999 -UBERON:3000563 seydels palatal process 6 48000 -UBERON:3000590 supraorbital flange 6 48001 -UBERON:3000639 zygomatic ramus of squamosal 6 48002 -UBERON:3000647 crista interna 6 48003 -UBERON:3000648 crista praeopercularis 6 48004 -UBERON:3000650 processus frontalis of maxilla 6 48005 -UBERON:3000655 processus dorsalis of lamella alaris 6 48006 -UBERON:3000656 processus posterodorsalis of lamella alaris 6 48007 -UBERON:3000657 dentigerous process 6 48008 -UBERON:3000658 prechoanal process 6 48009 -UBERON:3000659 postchoanal process 6 48010 -UBERON:3000661 crista vomeri 6 48011 -UBERON:3000662 processus posterior of parasphenoid 6 48012 -UBERON:3000670 anterior process of hyoid apparatus 6 48013 -UBERON:3000671 anterolateral process of hyoid plate 6 48014 -UBERON:3000676 bronchial process 6 48015 -UBERON:3000677 lateral process of cricoid cartilage 6 48016 -UBERON:3000678 esophageal process 6 48017 -UBERON:3000688 prominentia apicalis dorsalis 6 48018 -UBERON:3000689 prominentia apicalis ventralis 6 48019 -UBERON:3000727 haemal arch lamina 6 48020 -UBERON:3000728 nucal keel 6 48021 -UBERON:3000756 crista dorsalis humeri 6 48022 -UBERON:3000808 parasagittal processes 6 48023 -UBERON:3000825 crista longitudinalis scapula 6 48024 -UBERON:3000831 spina acromioidea 6 48025 -UBERON:3000836 crista lateralis humeri 6 48026 -UBERON:3000837 crista medialis humeri 6 48027 -UBERON:3000839 crista radii 6 48028 -UBERON:3000874 crista ischii 6 48029 -UBERON:3000875 spina pelvis posterior 6 48030 -UBERON:3000876 spina pelvis anterior 6 48031 -UBERON:3000878 intumescentia bilateralis superior 6 48032 -UBERON:3000880 crista hypertrophica ischium 6 48033 -UBERON:3000894 femoral ridge 6 48034 -UBERON:3000898 trochanteric crest 6 48035 -UBERON:3000903 tibial crest 6 48036 -UBERON:3010094 quadratoethmoid process 6 48037 -UBERON:3010559 retroarticular process of the palatoquadrate 6 48038 -UBERON:3010719 dilated medial process of metacarpal IV 6 48039 -UBERON:3010824 processus triangularis of palatoquadrate cartilage 6 48040 -UBERON:4100100 parasphenoid flange 6 48041 -UBERON:4200006 infraglenoid buttress 6 48042 -UBERON:4200037 supinator process 6 48043 -UBERON:4200039 supraacetabular buttress 6 48044 -UBERON:4200040 acrocoracoid process 6 48045 -UBERON:4200042 brevis shelf 6 48046 -UBERON:4200052 crista tibiofibularis 6 48047 -UBERON:4200095 infraspinous process 6 48048 -UBERON:4200100 latissimus dorsi process 6 48049 -UBERON:4200107 obturator process of ischium 6 48050 -UBERON:4200114 prepubic process 6 48051 -UBERON:4200123 scapular process 6 48052 -UBERON:4200124 sternal trabecula 6 48053 -UBERON:4200125 supraacetabular crest 6 48054 -UBERON:4200126 supraacetabular rim 6 48055 -UBERON:4200131 trochanteric shelf 6 48056 -UBERON:4200169 process 2 6 48057 -UBERON:4200170 process 3 6 48058 -UBERON:4200171 process 4 6 48059 -UBERON:4200173 dorsal ridge 6 48060 -UBERON:4200177 supracondyle tubercle 6 48061 -UBERON:0018371 ventral supracondylar tubercle 7 48062 -UBERON:0018372 dorsal supracondylar tubercle 7 48063 -UBERON:4200182 lateral tubercle of astragalus 6 48064 -UBERON:4200183 bicipital tuberosity 6 48065 -UBERON:4200184 ulnar tuberosity 6 48066 -UBERON:4200186 distal keel of metacarpal III 6 48067 -UBERON:4200193 posterodorsal process of ilium 6 48068 -UBERON:4200197 anterior humeral ridge 6 48069 -UBERON:4200198 incisor process 6 48070 -UBERON:4200209 postaxial process of the ulnare 6 48071 -UBERON:4200210 postaxial process of the femur 6 48072 -UBERON:4200211 postaxial process of the fibula 6 48073 -UBERON:4200212 pectoral process of humerus 6 48074 -UBERON:4200213 deltoid process 6 48075 -UBERON:4200233 dorsal clavicular process 6 48076 -UBERON:4300007 medial pelvic process 6 48077 -UBERON:4300125 dorsal iliac ridge 6 48078 -UBERON:4300156 anterodorsal crest 6 48079 -UBERON:4300261 pectoral fin hook 6 48080 -UBERON:4300262 pelvic fin hook 6 48081 -UBERON:4300275 suborbital stay 6 48082 -UBERON:4500016 premaxilla articular process 6 48083 -UBERON:4500018 premaxilla maxillary process 6 48084 -UBERON:4200097 intermediate spine 5 48085 -UBERON:4200110 prepectoral spine 5 48086 -UBERON:4200111 prepelvic fin spine 5 48087 -UBERON:4200132 tuber 5 48088 -UBERON:4200133 crest 5 48089 -UBERON:4200167 mesial pelvic ridge 5 48090 -UBERON:4100121 thagomizer 4 48091 -UBERON:0035118 material entity in digestive tract 3 48092 -UBERON:0010016 spiral valve of intestine 4 48093 -UBERON:0036304 anatomical border 3 48094 -UBERON:0007171 border of scapula 4 48095 -UBERON:0007173 lateral border of scapula 5 48096 -UBERON:0007174 medial border of scapula 5 48097 -UBERON:4200047 attachment site 3 48098 -UBERON:0014801 nuchal line attachment site 4 48099 -UBERON:0014802 highest nuchal line attachment site 5 48100 -UBERON:0014803 superior nuchal line attachment site 5 48101 -UBERON:0014804 median nuchal line attachment site 5 48102 -UBERON:0014805 inferior nuchal line attachment site 5 48103 -UBERON:4200106 muscle scar 4 48104 -UBERON:0000463 organism substance 2 48105 -UBERON:0000038 follicular fluid 3 48106 -UBERON:0000173 amniotic fluid 3 48107 -UBERON:0000174 excreta 3 48108 -UBERON:0001088 urine 4 48109 -UBERON:0001988 feces 4 48110 -UBERON:0007109 meconium 5 48111 -UBERON:0034945 excreted gas 4 48112 -UBERON:0034946 gas excreted from digestive tract 5 48113 -UBERON:0000176 oronasal secretion 3 48114 -UBERON:0000177 pus 3 48115 -UBERON:0000456 secretion of exocrine gland 3 48116 -UBERON:0000326 pancreatic juice 4 48117 -UBERON:0000912 mucus 4 48118 -UBERON:0000316 cervical mucus 5 48119 -UBERON:0010152 skin mucus 5 48120 -UBERON:0016926 mucus body coating 6 48121 -UBERON:0016552 phlegm 5 48122 -UBERON:0016553 respiratory system mucus 5 48123 -UBERON:0002306 nasal mucus 6 48124 -UBERON:0016927 mucus cocoon 5 48125 -UBERON:0001089 sweat 4 48126 -UBERON:0002297 cerumen 5 48127 -UBERON:0007772 scrotal sweat 5 48128 -UBERON:0014392 sweat of palm 5 48129 -UBERON:0014393 sweat of axilla 5 48130 -UBERON:0001827 secretion of lacrimal gland 4 48131 -UBERON:0001836 saliva 4 48132 -UBERON:0001866 sebum 4 48133 -UBERON:0019315 meibum 5 48134 -UBERON:0001970 bile 4 48135 -UBERON:0001971 gastric juice 4 48136 -UBERON:0002466 intestine secretion 4 48137 -UBERON:0003670 smegma 4 48138 -UBERON:0004794 esophagus secretion 4 48139 -UBERON:0004795 pancreas secretion 4 48140 -UBERON:0004792 secretion of endocrine pancreas 5 48141 -UBERON:0004793 secretion of exocrine pancreas 5 48142 -UBERON:0006530 seminal fluid 4 48143 -UBERON:0004691 bulbourethral gland secretion 5 48144 -UBERON:0004796 prostate gland secretion 5 48145 -UBERON:0010143 seminal vesicle fluid 5 48146 -UBERON:0018148 ampullary gland secretion 5 48147 -UBERON:0006539 mammary gland fluid/secretion 4 48148 -UBERON:0001913 milk 5 48149 -UBERON:0001914 colostrum 5 48150 -UBERON:0007108 vernix caseosa 4 48151 -UBERON:0007113 venom 4 48152 -UBERON:0008274 mollusc venom 5 48153 -UBERON:0008280 cnidarian venom 5 48154 -UBERON:0013076 snake venom 5 48155 -UBERON:0013106 elapid venom 6 48156 -UBERON:0013110 hydrophid venom 6 48157 -UBERON:0013112 viper venom 6 48158 -UBERON:0007794 secretion of serous gland 4 48159 -UBERON:0001090 synovial fluid 5 48160 -UBERON:0001268 peritoneal fluid 5 48161 -UBERON:0007795 ascitic fluid 6 48162 -UBERON:0002409 pericardial fluid 5 48163 -UBERON:0011893 endoneurial fluid 5 48164 -UBERON:0007803 preen oil 4 48165 -UBERON:0013212 anal sac gland secretion 4 48166 -UBERON:0022282 secretion of Harderian gland 4 48167 -UBERON:0022286 secretion of nictitans gland 4 48168 -UBERON:0022287 tear film 4 48169 -UBERON:0036015 castoreum 4 48170 -UBERON:0000911 chyle 3 48171 -UBERON:0000913 interstitial fluid 3 48172 -UBERON:0001011 hemolymph 3 48173 -UBERON:0001968 semen 3 48174 -UBERON:0035784 seminal clot 4 48175 -UBERON:0010148 mating plug 5 48176 -UBERON:0006312 ocular refractive media 3 48177 -UBERON:0001796 aqueous humor of eyeball 4 48178 -UBERON:0001797 vitreous humor 4 48179 -UBERON:0006314 bodily fluid 3 48180 -UBERON:0000179 haemolymphatic fluid 4 48181 -UBERON:0000178 blood 5 48182 -UBERON:0012168 umbilical cord blood 6 48183 -UBERON:0013755 arterial blood 6 48184 -UBERON:0013756 venous blood 6 48185 -UBERON:0013757 capillary blood 6 48186 -UBERON:0001969 blood plasma 5 48187 -UBERON:0001977 blood serum 5 48188 -UBERON:0002391 lymph 5 48189 -UBERON:0000910 chyme 4 48190 -UBERON:0000912 mucus 4 48191 -UBERON:0000316 cervical mucus 5 48192 -UBERON:0010152 skin mucus 5 48193 -UBERON:0016926 mucus body coating 6 48194 -UBERON:0016552 phlegm 5 48195 -UBERON:0016553 respiratory system mucus 5 48196 -UBERON:0002306 nasal mucus 6 48197 -UBERON:0016927 mucus cocoon 5 48198 -UBERON:0001089 sweat 4 48199 -UBERON:0002297 cerumen 5 48200 -UBERON:0007772 scrotal sweat 5 48201 -UBERON:0014392 sweat of palm 5 48202 -UBERON:0014393 sweat of axilla 5 48203 -UBERON:0001796 aqueous humor of eyeball 4 48204 -UBERON:0001913 milk 4 48205 -UBERON:0001970 bile 4 48206 -UBERON:0004691 bulbourethral gland secretion 4 48207 -UBERON:0007779 transudate 4 48208 -UBERON:0001090 synovial fluid 5 48209 -UBERON:0001268 peritoneal fluid 5 48210 -UBERON:0007795 ascitic fluid 6 48211 -UBERON:0001359 cerebrospinal fluid 5 48212 -UBERON:0006586 otolymph 5 48213 -UBERON:0001845 perilymph 6 48214 -UBERON:0001852 endolymph 6 48215 -UBERON:0036244 secretion of serous membrane 5 48216 -UBERON:0001087 pleural fluid 6 48217 -UBERON:0000175 pleural effusion 7 48218 -UBERON:0007794 secretion of serous gland 4 48219 -UBERON:0001090 synovial fluid 5 48220 -UBERON:0001268 peritoneal fluid 5 48221 -UBERON:0007795 ascitic fluid 6 48222 -UBERON:0002409 pericardial fluid 5 48223 -UBERON:0011893 endoneurial fluid 5 48224 -UBERON:0013727 notochordal fluid 4 48225 -UBERON:0022287 tear film 4 48226 -UBERON:0035963 epithelial lining fluid 4 48227 -UBERON:0036217 coelomic fluid 4 48228 -UBERON:0001268 peritoneal fluid 5 48229 -UBERON:0007795 ascitic fluid 6 48230 -UBERON:0002409 pericardial fluid 5 48231 -UBERON:0036243 vaginal fluid 4 48232 -UBERON:0006535 skin secretion 3 48233 -UBERON:0006538 respiratory system fluid/secretion 3 48234 -UBERON:0007311 sputum 4 48235 -UBERON:0008826 pulmonary surfactant 4 48236 -UBERON:0006911 digestive system secreted substance 3 48237 -UBERON:0007780 exudate 3 48238 -UBERON:0008269 nacre 3 48239 -UBERON:0008944 albumen 3 48240 -UBERON:0009755 spermaceti 3 48241 -UBERON:0009757 ambergris 3 48242 -UBERON:0010210 blood clot 3 48243 -UBERON:0010228 ruminal fluid 3 48244 -UBERON:0012112 ingested food 3 48245 -UBERON:0000910 chyme 4 48246 -UBERON:0012113 bolus of food 4 48247 -UBERON:0012245 silk 3 48248 -UBERON:0012352 mesangial matrix 3 48249 -UBERON:0012364 colloid of thyroid follicle 3 48250 -UBERON:0012422 secretion of crop 3 48251 -UBERON:0016482 dental plaque 3 48252 -UBERON:0016484 subgingival dental plaque 4 48253 -UBERON:0016485 supragingival dental plaque 4 48254 -UBERON:0022293 reproductive gland secretion 3 48255 -UBERON:0006536 male reproductive gland secretion 4 48256 -UBERON:0006530 seminal fluid 5 48257 -UBERON:0004691 bulbourethral gland secretion 6 48258 -UBERON:0004796 prostate gland secretion 6 48259 -UBERON:0010143 seminal vesicle fluid 6 48260 -UBERON:0018148 ampullary gland secretion 6 48261 -UBERON:0007772 scrotal sweat 5 48262 -UBERON:0006537 female reproductive gland secretion 4 48263 -UBERON:0034873 bodily gas 3 48264 -UBERON:0034945 excreted gas 4 48265 -UBERON:0034946 gas excreted from digestive tract 5 48266 -UBERON:0034947 gas in respiratory system 4 48267 -UBERON:0034874 air in respiratory system 5 48268 -UBERON:0034948 carbon dioxide in respiratory system 5 48269 -UBERON:0036017 regurgitated substance 3 48270 -UBERON:0000172 vomit 4 48271 -UBERON:0012114 cud 4 48272 -UBERON:0036016 honey 4 48273 -UBERON:0036018 regurgitated pellet 4 48274 -UBERON:0005423 developing anatomical structure 2 48275 -UBERON:0000478 extraembryonic structure 3 48276 -UBERON:0000453 decidua basalis 4 48277 -UBERON:0002331 umbilical cord 4 48278 -UBERON:0002450 decidua 4 48279 -UBERON:0003224 chorion syncytiotrophoblast 4 48280 -UBERON:0003254 amniotic ectoderm 4 48281 -UBERON:0003257 yolk sac endoderm 4 48282 -UBERON:0003262 amniotic mesoderm 4 48283 -UBERON:0003265 chorionic mesenchyme 4 48284 -UBERON:0003374 chorionic ectoderm 4 48285 -UBERON:0004366 extraembryonic ectoderm 4 48286 -UBERON:0004547 decidua capsularis 4 48287 -UBERON:0005971 amniotic fold 4 48288 -UBERON:0006265 mural trophectoderm 4 48289 -UBERON:0006280 polar trophectoderm 4 48290 -UBERON:0006878 decidua parietalis 4 48291 -UBERON:0007106 chorionic villus 4 48292 -UBERON:0009993 primary chorionic villus 5 48293 -UBERON:0009994 secondary chorionic villus 5 48294 -UBERON:0009995 tertiary chorionic villus 5 48295 -UBERON:0007806 connecting stalk 4 48296 -UBERON:0008800 parietal endoderm 4 48297 -UBERON:0008992 chorion frondosum 4 48298 -UBERON:0010008 placental cotyledon 4 48299 -UBERON:0011693 extraembryonic portion of umbilical artery 4 48300 -UBERON:0011696 left extraembryonic umbilical artery 5 48301 -UBERON:0011697 right extraembryonic umbilical artery 5 48302 -UBERON:0011919 yolk sac blood island 4 48303 -UBERON:0017259 placental caruncle 4 48304 -UBERON:3010303 fasciculated network of fibrils 4 48305 -UBERON:3010636 egg capsule 4 48306 -UBERON:0001048 primordium 3 48307 -UBERON:0003071 eye primordium 4 48308 -UBERON:0003084 heart primordium 4 48309 -UBERON:0003091 thyroid primordium 4 48310 -UBERON:0003894 liver primordium 4 48311 -UBERON:0003921 pancreas primordium 4 48312 -UBERON:0005085 ectodermal placode 4 48313 -UBERON:0002546 cranial placode 5 48314 -UBERON:0003073 lens placode 6 48315 -UBERON:0009122 adenohypophyseal placode 6 48316 -UBERON:0009955 neurogenic placode 6 48317 -UBERON:0003050 olfactory placode 7 48318 -UBERON:0003067 dorsolateral placode 7 48319 -UBERON:0003069 otic placode 8 48320 -UBERON:0003070 trigeminal placode complex 8 48321 -UBERON:0009128 lateral line placode 8 48322 -UBERON:2001156 posterior lateral line placode 8 48323 -UBERON:2001316 anterior lateral line placode 8 48324 -UBERON:2005121 middle lateral line placode 8 48325 -UBERON:0003078 epibranchial placode 7 48326 -UBERON:0009124 geniculate placode 8 48327 -UBERON:0009125 petrosal placode 8 48328 -UBERON:0009126 nodosal placode 8 48329 -UBERON:2001297 vagal placode 1 8 48330 -UBERON:2001298 vagal placode 2 8 48331 -UBERON:2001299 vagal placode 3 8 48332 -UBERON:2001300 vagal placode 4 8 48333 -UBERON:0035597 profundal placode 7 48334 -UBERON:0035598 maxillomandibular placode 7 48335 -UBERON:0011814 non-neurogenic ectodermal placode 5 48336 -UBERON:0003073 lens placode 6 48337 -UBERON:0005087 tooth placode 6 48338 -UBERON:0005088 sebaceous gland placode 6 48339 -UBERON:0005089 sweat gland placode 6 48340 -UBERON:0005311 mammary placode 6 48341 -UBERON:0009122 adenohypophyseal placode 6 48342 -UBERON:0011817 skin appendage placode 6 48343 -UBERON:0005086 hair follicle placode 7 48344 -UBERON:0011783 feather follicle placode 7 48345 -UBERON:0005427 corneal primordium 4 48346 -UBERON:0005562 thymus primordium 4 48347 -UBERON:0005564 gonad primordium 4 48348 -UBERON:0005597 lung primordium 4 48349 -UBERON:0006215 rhombic lip 4 48350 -UBERON:0006224 elbow joint primordium 4 48351 -UBERON:0006227 ethmoid bone primordium 4 48352 -UBERON:0006236 tetrapod frontal bone primordium 4 48353 -UBERON:0006242 gall bladder primordium 4 48354 -UBERON:0006244 hip joint primordium 4 48355 -UBERON:0006251 interparietal bone primordium 4 48356 -UBERON:0006256 knee joint primordium 4 48357 -UBERON:0006274 tetrapod parietal bone primordium 4 48358 -UBERON:0006293 spleen primordium 4 48359 -UBERON:0006857 interrenal primordium 4 48360 -UBERON:0007689 thyroid diverticulum 4 48361 -UBERON:0008801 parotid gland primordium 4 48362 -UBERON:0008894 pharyngeal gill precursor 4 48363 -UBERON:0008947 respiratory primordium 4 48364 -UBERON:0009867 Hatschek's diverticulum 4 48365 -UBERON:0009868 Hatschek's left diverticulum 5 48366 -UBERON:0009869 Hatschek's right diverticulum 5 48367 -UBERON:0010375 pancreas dorsal primordium 4 48368 -UBERON:0010376 pancreas ventral primordium 4 48369 -UBERON:0010751 squamous part of temporal bone primordium 4 48370 -UBERON:0010905 clavicle bone primordium 4 48371 -UBERON:0011130 temporomandibular joint primordium 4 48372 -UBERON:0012172 stomach primordium 4 48373 -UBERON:0014903 primordial vasculature 4 48374 -UBERON:0017651 salivary gland primordium 4 48375 -UBERON:0006297 sublingual gland primordium 5 48376 -UBERON:0006298 submandibular gland primordium 5 48377 -UBERON:0034877 angioblastic cord 4 48378 -UBERON:2000468 anterior crista primordium 4 48379 -UBERON:2002242 scale primordium 4 48380 -UBERON:6000186 embryonic optic lobe primordium 4 48381 -UBERON:6001059 visual primordium 4 48382 -UBERON:6001649 imaginal disc primordium 4 48383 -UBERON:6001650 labial disc primordium 5 48384 -UBERON:6001652 eye-antennal disc primordium 5 48385 -UBERON:6001653 dorsal thoracic disc primordium 5 48386 -UBERON:6001655 dorsal mesothoracic disc primordium 6 48387 -UBERON:6001656 dorsal metathoracic disc primordium 6 48388 -UBERON:6001657 ventral thoracic disc primordium 5 48389 -UBERON:6001658 ventral prothoracic disc primordium 6 48390 -UBERON:6001661 genital disc primordium 5 48391 -UBERON:6001662 male genital disc primordium 6 48392 -UBERON:6001663 female genital disc primordium 6 48393 -UBERON:6005037 tracheal primordium 4 48394 -UBERON:6005036 tracheal pit 5 48395 -UBERON:6005461 circulatory system primordium 4 48396 -UBERON:6005467 lymph gland primordium 5 48397 -UBERON:6005514 adult clypeo-labral primordium 4 48398 -UBERON:6005526 dorsal epidermis primordium 4 48399 -UBERON:6005533 ventral epidermis primordium 4 48400 -UBERON:6005538 clypeo-labral primordium 4 48401 -UBERON:6005830 Bolwig organ primordium 4 48402 -UBERON:6016022 abdominal histoblast primordium 4 48403 -UBERON:0002050 embryonic structure 3 48404 -UBERON:0000087 inner cell mass 4 48405 -UBERON:0000088 trophoblast 4 48406 -UBERON:0000089 hypoblast (generic) 4 48407 -UBERON:0004046 anterior definitive endoderm 5 48408 -UBERON:0008776 inner cell mass derived hypoblast 5 48409 -UBERON:0000091 bilaminar disc 4 48410 -UBERON:0000100 blastopore 4 48411 -UBERON:0000164 primitive urogenital sinus 4 48412 -UBERON:0000319 cytotrophoblast 4 48413 -UBERON:0000358 blastocyst 4 48414 -UBERON:0000371 syncytiotrophoblast 4 48415 -UBERON:0000426 extravillous trophoblast 4 48416 -UBERON:0002061 truncus arteriosus 4 48417 -UBERON:0002062 endocardial cushion 4 48418 -UBERON:0036066 inferior endocardial cushion 5 48419 -UBERON:0036067 superior endocardial cushion 5 48420 -UBERON:0002064 common cardinal vein 4 48421 -UBERON:0009138 right common cardinal vein 5 48422 -UBERON:0009769 left common cardinal vein 5 48423 -UBERON:0002086 sinoatrial valve 4 48424 -UBERON:0002087 atrioventricular canal 4 48425 -UBERON:0003907 left atrioventricular canal 5 48426 -UBERON:0003908 right atrioventricular canal 5 48427 -UBERON:0002532 epiblast (generic) 4 48428 -UBERON:0008780 inner cell mass derived epiblast 5 48429 -UBERON:0008781 blastodisc derived epiblast 5 48430 -UBERON:0002541 germ ring 4 48431 -UBERON:0003057 chordal neural plate 4 48432 -UBERON:0003062 primitive knot 4 48433 -UBERON:0003063 prechordal plate 4 48434 -UBERON:0003064 intermediate mesoderm 4 48435 -UBERON:0003068 axial mesoderm 4 48436 -UBERON:0003076 posterior neural tube 4 48437 -UBERON:0003080 anterior neural tube 4 48438 -UBERON:0003081 lateral plate mesoderm 4 48439 -UBERON:0003887 intraembryonic coelom 4 48440 -UBERON:0004023 ganglionic eminence 4 48441 -UBERON:0004024 medial ganglionic eminence 4 48442 -UBERON:0004025 lateral ganglionic eminence 4 48443 -UBERON:0004026 caudal ganglionic eminence 4 48444 -UBERON:0004056 primitive groove 4 48445 -UBERON:0004117 pharyngeal pouch 4 48446 -UBERON:0007122 pharyngeal pouch 1 5 48447 -UBERON:0007123 pharyngeal pouch 2 5 48448 -UBERON:0007124 pharyngeal pouch 3 5 48449 -UBERON:0007125 pharyngeal pouch 4 5 48450 -UBERON:0007126 pharyngeal pouch 5 5 48451 -UBERON:0007127 pharyngeal pouch 6 5 48452 -UBERON:2001129 pharyngeal pouches 2-6 5 48453 -UBERON:0004139 cardiogenic plate 4 48454 -UBERON:0004140 primary heart field 4 48455 -UBERON:0004356 apical ectodermal ridge 4 48456 -UBERON:0005421 pectoral appendage apical ectodermal ridge 5 48457 -UBERON:0005422 pelvic appendage apical ectodermal ridge 5 48458 -UBERON:0005719 footplate apical ectodermal ridge 5 48459 -UBERON:0006872 handplate apical ectodermal ridge 5 48460 -UBERON:2000090 apical ectodermal ridge dorsal fin 5 48461 -UBERON:2000717 apical ectodermal ridge median fin fold 5 48462 -UBERON:2001450 apical ectodermal ridge pelvic fin 5 48463 -UBERON:0004364 ectoplacental cone 4 48464 -UBERON:0004706 bulbus cordis 4 48465 -UBERON:0004735 archenteron 4 48466 -UBERON:0004749 blastodisc 4 48467 -UBERON:0004750 blastoderm 4 48468 -UBERON:0004871 somatic layer of lateral plate mesoderm 4 48469 -UBERON:0004872 splanchnic layer of lateral plate mesoderm 4 48470 -UBERON:0004873 splanchnopleure 4 48471 -UBERON:0004874 somatopleure 4 48472 -UBERON:0004875 nephrogenic cord 4 48473 -UBERON:0004879 marginal zone of embryo 4 48474 -UBERON:3010449 dorsal marginal zone 5 48475 -UBERON:3010450 dorso-lateral marginal zone 5 48476 -UBERON:3010451 involuting marginal zone 5 48477 -UBERON:3010452 non-involuting marginal zone 5 48478 -UBERON:3010453 ventral marginal zone 5 48479 -UBERON:3010454 ventro-lateral marginal zone 5 48480 -UBERON:0004880 chordamesoderm 4 48481 -UBERON:0005051 mediastinum testis 4 48482 -UBERON:0005061 neural groove 4 48483 -UBERON:0005062 neural fold 4 48484 -UBERON:0009748 cephalic neural fold 5 48485 -UBERON:0005069 neural fold hinge point 4 48486 -UBERON:0005085 ectodermal placode 4 48487 -UBERON:0002546 cranial placode 5 48488 -UBERON:0003073 lens placode 6 48489 -UBERON:0009122 adenohypophyseal placode 6 48490 -UBERON:0009955 neurogenic placode 6 48491 -UBERON:0003050 olfactory placode 7 48492 -UBERON:0003067 dorsolateral placode 7 48493 -UBERON:0003069 otic placode 8 48494 -UBERON:0003070 trigeminal placode complex 8 48495 -UBERON:0009128 lateral line placode 8 48496 -UBERON:2001156 posterior lateral line placode 8 48497 -UBERON:2001316 anterior lateral line placode 8 48498 -UBERON:2005121 middle lateral line placode 8 48499 -UBERON:0003078 epibranchial placode 7 48500 -UBERON:0009124 geniculate placode 8 48501 -UBERON:0009125 petrosal placode 8 48502 -UBERON:0009126 nodosal placode 8 48503 -UBERON:2001297 vagal placode 1 8 48504 -UBERON:2001298 vagal placode 2 8 48505 -UBERON:2001299 vagal placode 3 8 48506 -UBERON:2001300 vagal placode 4 8 48507 -UBERON:0035597 profundal placode 7 48508 -UBERON:0035598 maxillomandibular placode 7 48509 -UBERON:0011814 non-neurogenic ectodermal placode 5 48510 -UBERON:0003073 lens placode 6 48511 -UBERON:0005087 tooth placode 6 48512 -UBERON:0005088 sebaceous gland placode 6 48513 -UBERON:0005089 sweat gland placode 6 48514 -UBERON:0005311 mammary placode 6 48515 -UBERON:0009122 adenohypophyseal placode 6 48516 -UBERON:0011817 skin appendage placode 6 48517 -UBERON:0005086 hair follicle placode 7 48518 -UBERON:0011783 feather follicle placode 7 48519 -UBERON:0005091 left horn of sinus venosus 4 48520 -UBERON:0005092 right horn of sinus venosus 4 48521 -UBERON:0005095 kidney rudiment 4 48522 -UBERON:0005107 metanephric cap 4 48523 -UBERON:0005294 gonadal ridge 4 48524 -UBERON:0005432 aortic sac 4 48525 -UBERON:0005439 definitive endoderm 4 48526 -UBERON:0005594 head somite 4 48527 -UBERON:0005732 paired limb/fin field 4 48528 -UBERON:0005729 pectoral appendage field 5 48529 -UBERON:0005730 pelvic appendage field 5 48530 -UBERON:0005731 fin field 5 48531 -UBERON:0005733 limb field 5 48532 -UBERON:0005753 caudal part of nephrogenic cord 4 48533 -UBERON:0005754 rostral part of nephrogenic cord 4 48534 -UBERON:0005792 nephric ridge 4 48535 -UBERON:0005868 maxillary prominence 4 48536 -UBERON:0005876 undifferentiated genital tubercle 4 48537 -UBERON:0005882 neural tube alar plate 4 48538 -UBERON:0004063 spinal cord alar plate 5 48539 -UBERON:0006060 conotruncus 4 48540 -UBERON:0006212 bulbo-ventricular groove 4 48541 -UBERON:0006218 common atrial chamber 4 48542 -UBERON:0006223 dorsal meso-oesophagus 4 48543 -UBERON:0006231 facial bone primordium 4 48544 -UBERON:0006232 facio-acoustic VII-VIII preganglion complex 4 48545 -UBERON:0006243 glossopharyngeal IX preganglion 4 48546 -UBERON:0006250 infundibular recess of 3rd ventricle 4 48547 -UBERON:0006252 intersubcardinal venous anastomosis 4 48548 -UBERON:0006260 lingual swellings 4 48549 -UBERON:0006267 notochordal plate 4 48550 -UBERON:0006275 pericardio-peritoneal canal 4 48551 -UBERON:0006276 perioptic mesenchyme 4 48552 -UBERON:0006277 pleuropericardial canals 4 48553 -UBERON:0006278 pleuropericardial folds 4 48554 -UBERON:0006293 spleen primordium 4 48555 -UBERON:0006303 tracheal diverticulum 4 48556 -UBERON:0006305 tunica vasculosa lentis 4 48557 -UBERON:0006307 urogenital membrane 4 48558 -UBERON:0006309 venous vitelline plexus 4 48559 -UBERON:0006310 vitelline venous plexus 4 48560 -UBERON:0006358 vasa hyaloidea propria 4 48561 -UBERON:0006598 presumptive structure 4 48562 -UBERON:0002296 dorsal mesentery 5 48563 -UBERON:0005685 midgut dorsal mesentery 6 48564 -UBERON:0005686 caecum dorsal mesentery 6 48565 -UBERON:0002533 post-anal tail bud 5 48566 -UBERON:0003051 ear vesicle 5 48567 -UBERON:0003059 presomitic mesoderm 5 48568 -UBERON:0003061 blood island 5 48569 -UBERON:0003304 mesoderm blood island 6 48570 -UBERON:0011919 yolk sac blood island 6 48571 -UBERON:0003071 eye primordium 5 48572 -UBERON:0003073 lens placode 5 48573 -UBERON:0003220 metanephric mesenchyme 5 48574 -UBERON:0003869 presumptive ganglion 5 48575 -UBERON:0006304 future trigeminal ganglion 6 48576 -UBERON:0003894 liver primordium 5 48577 -UBERON:0003921 pancreas primordium 5 48578 -UBERON:0004348 optic eminence 5 48579 -UBERON:0004357 paired limb/fin bud 5 48580 -UBERON:0002531 paired fin bud 6 48581 -UBERON:4300172 pectoral fin bud 7 48582 -UBERON:4300173 pelvic fin bud 7 48583 -UBERON:0004347 limb bud 6 48584 -UBERON:0005417 forelimb bud 7 48585 -UBERON:4300230 forelimb wing bud 8 48586 -UBERON:0005418 hindlimb bud 7 48587 -UBERON:0005419 pectoral appendage bud 6 48588 -UBERON:0005417 forelimb bud 7 48589 -UBERON:4300230 forelimb wing bud 8 48590 -UBERON:4300172 pectoral fin bud 7 48591 -UBERON:0005420 pelvic appendage bud 6 48592 -UBERON:0005418 hindlimb bud 7 48593 -UBERON:0004363 pharyngeal arch artery 5 48594 -UBERON:0003118 pharyngeal arch artery 1 6 48595 -UBERON:0003119 pharyngeal arch artery 2 6 48596 -UBERON:0003120 pharyngeal arch artery 3 6 48597 -UBERON:0003121 pharyngeal arch artery 4 6 48598 -UBERON:0003122 pharyngeal arch artery 5 6 48599 -UBERON:0003123 pharyngeal arch artery 6 6 48600 -UBERON:0004876 urogenital fold 5 48601 -UBERON:0005087 tooth placode 5 48602 -UBERON:0005088 sebaceous gland placode 5 48603 -UBERON:0005089 sweat gland placode 5 48604 -UBERON:0005424 presumptive retinal pigmented epithelium 5 48605 -UBERON:0005425 presumptive neural retina 5 48606 -UBERON:0005721 pronephric mesoderm 5 48607 -UBERON:0005729 pectoral appendage field 5 48608 -UBERON:0005730 pelvic appendage field 5 48609 -UBERON:0005795 embryonic uterus 5 48610 -UBERON:0006213 carpus cartilage element 5 48611 -UBERON:0006214 carpus pre-cartilage condensation 5 48612 -UBERON:0006215 rhombic lip 5 48613 -UBERON:0006222 future diencephalon 5 48614 -UBERON:0006226 endolymphatic appendage 5 48615 -UBERON:0006238 future brain 5 48616 -UBERON:0006239 future central tendon 5 48617 -UBERON:0006240 future forebrain 5 48618 -UBERON:0006241 future spinal cord 5 48619 -UBERON:0006242 gall bladder primordium 5 48620 -UBERON:0006256 knee joint primordium 5 48621 -UBERON:0006263 Meckel's cartilage pre-cartilage condensation 5 48622 -UBERON:0006274 tetrapod parietal bone primordium 5 48623 -UBERON:0006283 future cardiac ventricle 5 48624 -UBERON:0006595 presumptive endoderm 5 48625 -UBERON:0006596 presumptive blood 5 48626 -UBERON:0006599 presumptive hypochord 5 48627 -UBERON:0006600 presumptive enteric nervous system 5 48628 -UBERON:0006601 presumptive ectoderm 5 48629 -UBERON:0006603 presumptive mesoderm 5 48630 -UBERON:2002235 presumptive ventral mesoderm 6 48631 -UBERON:0006859 swim bladder bud 5 48632 -UBERON:0007026 presumptive gut 5 48633 -UBERON:0007277 presumptive hindbrain 5 48634 -UBERON:0007278 presumptive sinus venosus 5 48635 -UBERON:0007279 presumptive atrioventricular canal 5 48636 -UBERON:0007280 presumptive endocardium 5 48637 -UBERON:0007281 presumptive midbrain hindbrain boundary 5 48638 -UBERON:0007282 presumptive segmental plate 5 48639 -UBERON:0007283 presumptive shield 5 48640 -UBERON:0007285 presumptive paraxial mesoderm 5 48641 -UBERON:0007286 presumptive floor plate 5 48642 -UBERON:0007287 presumptive bulbus arteriosus 5 48643 -UBERON:0007288 presumptive forebrain midbrain boundary 5 48644 -UBERON:0007289 presumptive rhombomere 1 5 48645 -UBERON:0007290 presumptive rhombomere 3 5 48646 -UBERON:0007291 presumptive rhombomere 4 5 48647 -UBERON:0007292 presumptive rhombomere 5 5 48648 -UBERON:0007293 presumptive rhombomere 6 5 48649 -UBERON:0007294 presumptive rhombomere 7 5 48650 -UBERON:0007295 presumptive rhombomere 8 5 48651 -UBERON:0007296 presumptive rhombomere 2 5 48652 -UBERON:0007297 presumptive pronephric mesoderm 5 48653 -UBERON:0007645 future meninx 5 48654 -UBERON:0007646 endomeninx 6 48655 -UBERON:0007647 ectomeninx 6 48656 -UBERON:0010091 future hindbrain meninx 6 48657 -UBERON:0007687 kidney field 5 48658 -UBERON:0008425 mammary ridge 5 48659 -UBERON:0009128 lateral line placode 5 48660 -UBERON:0009615 midbrain hindbrain boundary neural plate 5 48661 -UBERON:0009616 presumptive midbrain 5 48662 -UBERON:0009847 prostate field 5 48663 -UBERON:0010084 future diaphragm 5 48664 -UBERON:0010090 future falx cerebri 5 48665 -UBERON:0010092 future metencephalon 5 48666 -UBERON:0010096 future myelencephalon 5 48667 -UBERON:0010127 future dorsal motor nucleus of vagus 5 48668 -UBERON:0010130 embryonic autopod plate 5 48669 -UBERON:0006871 embryonic footplate 6 48670 -UBERON:0006875 embryonic handplate 6 48671 -UBERON:0010227 future cardiac atrium 5 48672 -UBERON:0010375 pancreas dorsal primordium 5 48673 -UBERON:0010376 pancreas ventral primordium 5 48674 -UBERON:0011817 skin appendage placode 5 48675 -UBERON:0005086 hair follicle placode 6 48676 -UBERON:0011783 feather follicle placode 6 48677 -UBERON:0014371 future telencephalon 5 48678 -UBERON:0014709 carapace primordium 5 48679 -UBERON:0016879 future central nervous system 5 48680 -UBERON:0001049 neural tube 6 48681 -UBERON:0003075 neural plate 6 48682 -UBERON:0003854 spinal cord neural plate 7 48683 -UBERON:0009610 forebrain neural plate 7 48684 -UBERON:0009611 midbrain neural plate 7 48685 -UBERON:0009614 hindbrain neural plate 7 48686 -UBERON:0005068 neural rod 6 48687 -UBERON:0007135 neural keel 6 48688 -UBERON:0007284 presumptive neural plate 6 48689 -UBERON:0016880 future nervous system 5 48690 -UBERON:0017651 salivary gland primordium 5 48691 -UBERON:0006297 sublingual gland primordium 6 48692 -UBERON:0006298 submandibular gland primordium 6 48693 -UBERON:0034875 future pituitary gland 5 48694 -UBERON:0034876 future neurohypophysis 5 48695 -UBERON:2005102 presumptive median fin fold 5 48696 -UBERON:2005103 presumptive ventral fin fold 6 48697 -UBERON:2005104 presumptive dorsal fin fold 6 48698 -UBERON:0006756 median lingual swelling 4 48699 -UBERON:0006757 lateral lingual swelling 4 48700 -UBERON:0006777 tectal plate 4 48701 -UBERON:0006857 interrenal primordium 4 48702 -UBERON:0007106 chorionic villus 4 48703 -UBERON:0009993 primary chorionic villus 5 48704 -UBERON:0009994 secondary chorionic villus 5 48705 -UBERON:0009995 tertiary chorionic villus 5 48706 -UBERON:0007128 glomeral mesenchyme 4 48707 -UBERON:0007144 embryonic post-anal tail 4 48708 -UBERON:0007237 1st arch mandibular component 4 48709 -UBERON:0007238 1st arch maxillary component 4 48710 -UBERON:0007378 egg yolk 4 48711 -UBERON:0007379 shelled egg 4 48712 -UBERON:0009130 dorsal meso-duodenum 4 48713 -UBERON:0009133 pleuroperitoneal membrane 4 48714 -UBERON:0009195 anal membrane 4 48715 -UBERON:0009210 pharyngeal membrane 4 48716 -UBERON:0009213 pharyngeal membrane of 1st arch 5 48717 -UBERON:0009215 pharyngeal membrane of 2nd arch 5 48718 -UBERON:0009216 pharyngeal membrane of 3rd arch 5 48719 -UBERON:0009217 pharyngeal membrane of 4th arch 5 48720 -UBERON:0009571 ventral midline 4 48721 -UBERON:0009668 ventral mesentery 4 48722 -UBERON:0009888 Koller's sickle 4 48723 -UBERON:0009889 secondary heart field 4 48724 -UBERON:0010277 mesocardium 4 48725 -UBERON:0005601 dorsal mesocardium 5 48726 -UBERON:0010316 germ layer / neural crest 4 48727 -UBERON:0000923 germ layer 5 48728 -UBERON:0000924 ectoderm 6 48729 -UBERON:0003373 ectoderm of footplate 7 48730 -UBERON:0005233 medial-nasal process ectoderm 7 48731 -UBERON:0005234 optic eminence ectoderm 7 48732 -UBERON:0005660 2nd arch ectoderm 7 48733 -UBERON:0005661 3rd arch ectoderm 7 48734 -UBERON:0005662 4th arch ectoderm 7 48735 -UBERON:0009206 lateral nasal process surface ectoderm 7 48736 -UBERON:0009479 ectoderm of buccopharyngeal membrane 7 48737 -UBERON:0000925 endoderm 6 48738 -UBERON:0003261 thyroid primordium endoderm 7 48739 -UBERON:0005664 2nd arch endoderm 7 48740 -UBERON:0005665 3rd arch endoderm 7 48741 -UBERON:0005666 4th arch endoderm 7 48742 -UBERON:0008817 thymus primordium endoderm 7 48743 -UBERON:0009480 endoderm of buccopharyngeal membrane 7 48744 -UBERON:0009550 endoderm of foregut-midgut junction 7 48745 -UBERON:0000926 mesoderm 6 48746 -UBERON:0005721 pronephric mesoderm 7 48747 -UBERON:0009910 posterior lateral plate mesoderm 7 48748 -UBERON:2000083 ventral mesoderm 7 48749 -UBERON:2001201 ventral lateral mesoderm 8 48750 -UBERON:2001467 pharyngeal mesoderm 7 48751 -UBERON:6000128 trunk mesoderm 7 48752 -UBERON:0000927 mesectoderm 6 48753 -UBERON:0002346 neurectoderm 6 48754 -UBERON:0002342 neural crest 5 48755 -UBERON:0003849 mesencephalic neural crest 6 48756 -UBERON:0003850 telencephalon neural crest 6 48757 -UBERON:0003851 diencephalon neural crest 6 48758 -UBERON:0003852 rhombencephalon neural crest 6 48759 -UBERON:0003853 spinal cord neural crest 6 48760 -UBERON:3010587 hyoid arch neural crest 6 48761 -UBERON:0010963 trunk and cervical myotome group 4 48762 -UBERON:0012286 hemisphere of embryo 4 48763 -UBERON:0012284 animal hemisphere 5 48764 -UBERON:0012285 vegetal hemisphere 5 48765 -UBERON:0012314 embryonic facial prominence 4 48766 -UBERON:0005867 mandibular prominence 5 48767 -UBERON:0009292 embryonic nasal process 5 48768 -UBERON:0004066 frontonasal prominence 6 48769 -UBERON:0004067 lateral nasal prominence 6 48770 -UBERON:0004068 medial nasal prominence 6 48771 -UBERON:0009714 intermaxillary process 6 48772 -UBERON:0009293 embryonic frontal process 5 48773 -UBERON:0013241 embryonic urethral groove 4 48774 -UBERON:0013244 vaginal plate 4 48775 -UBERON:0013245 sinovaginal bulb 4 48776 -UBERON:0013499 glossopharyngeal-vagus IX-X preganglion complex 4 48777 -UBERON:0014374 embryoid body 4 48778 -UBERON:0014710 carapacial ridge 4 48779 -UBERON:0015855 ventral ectodermal ridge 4 48780 -UBERON:0016505 Mullerian tubercle 4 48781 -UBERON:0017639 sinus of von Szily 4 48782 -UBERON:0018264 dorsal lateral ganglionic eminence 4 48783 -UBERON:0034878 prechordal mesoderm 4 48784 -UBERON:0035004 preputial swelling 4 48785 -UBERON:0035005 preputial swelling of male 5 48786 -UBERON:0035006 preputial swelling of female 5 48787 -UBERON:0036069 tracheoesophageal fold 4 48788 -UBERON:0036146 cardiopharyngeal field 4 48789 -UBERON:2000000 Brachet's cleft 4 48790 -UBERON:2000001 Kupffer's vesicle 4 48791 -UBERON:2000058 polster 4 48792 -UBERON:2000068 neural plate proneural cluster 4 48793 -UBERON:2000084 yolk 4 48794 -UBERON:2000088 yolk syncytial layer 4 48795 -UBERON:2000414 presumptive cephalic mesoderm 4 48796 -UBERON:2000711 DEL 4 48797 -UBERON:2000820 presumptive neuron neural tube 4 48798 -UBERON:2001095 immature macula 4 48799 -UBERON:2001096 immature anterior macula 5 48800 -UBERON:2001097 immature posterior macula 5 48801 -UBERON:2001342 presumptive intervening zone 4 48802 -UBERON:3010431 archenteron floor 4 48803 -UBERON:3010432 archenteron roof 4 48804 -UBERON:3010436 blastocoel roof 4 48805 -UBERON:3010437 post-anal gut 4 48806 -UBERON:3010455 blastopore lip 4 48807 -UBERON:3010456 lower blastopore lip 5 48808 -UBERON:3010457 upper blastopore lip 5 48809 -UBERON:3010463 animal cap 4 48810 -UBERON:3010464 animal cap inner layer 4 48811 -UBERON:3010465 animal cap outer layer 4 48812 -UBERON:3011040 first pancreatic bud 4 48813 -UBERON:3011120 early proximal tubule 4 48814 -UBERON:6000000 germ layer derivative 4 48815 -UBERON:6000104 mesoderm anlage 4 48816 -UBERON:6000130 visceral mesoderm 4 48817 -UBERON:6001057 neurogenic region 4 48818 -UBERON:6001059 visual primordium 4 48819 -UBERON:6001648 embryonic imaginal precursor 4 48820 -UBERON:6001649 imaginal disc primordium 5 48821 -UBERON:6001650 labial disc primordium 6 48822 -UBERON:6001652 eye-antennal disc primordium 6 48823 -UBERON:6001653 dorsal thoracic disc primordium 6 48824 -UBERON:6001655 dorsal mesothoracic disc primordium 7 48825 -UBERON:6001656 dorsal metathoracic disc primordium 7 48826 -UBERON:6001657 ventral thoracic disc primordium 6 48827 -UBERON:6001658 ventral prothoracic disc primordium 7 48828 -UBERON:6001661 genital disc primordium 6 48829 -UBERON:6001662 male genital disc primordium 7 48830 -UBERON:6001663 female genital disc primordium 7 48831 -UBERON:6005514 adult clypeo-labral primordium 5 48832 -UBERON:6001789 histoblast 4 48833 -UBERON:6001790 histoblast nest 5 48834 -UBERON:6001791 dorsal histoblast nest abdominal 6 48835 -UBERON:6001792 anterior dorsal histoblast nest abdominal 7 48836 -UBERON:6001809 posterior dorsal histoblast nest abdominal 6 48837 -UBERON:6004203 adult clypeo-labral anlage 4 48838 -UBERON:6005037 tracheal primordium 4 48839 -UBERON:6005036 tracheal pit 5 48840 -UBERON:6005413 anlage in statu nascendi 4 48841 -UBERON:6000094 clypeo-labral anlage in statu nascendi 5 48842 -UBERON:6005425 visual anlage in statu nascendi 5 48843 -UBERON:6005434 visual anlage 4 48844 -UBERON:6005436 trunk mesoderm anlage 4 48845 -UBERON:6005439 clypeo-labral anlage 4 48846 -UBERON:6005467 lymph gland primordium 4 48847 -UBERON:6005526 dorsal epidermis primordium 4 48848 -UBERON:6005533 ventral epidermis primordium 4 48849 -UBERON:6005538 clypeo-labral primordium 4 48850 -UBERON:6005558 ventral ectoderm 4 48851 -UBERON:6005830 Bolwig organ primordium 4 48852 -UBERON:6007045 trunk ectoderm 4 48853 -UBERON:6007116 presumptive embryonic/larval system 4 48854 -UBERON:6001055 presumptive embryonic/larval nervous system 5 48855 -UBERON:6001056 presumptive embryonic/larval central nervous system 5 48856 -UBERON:6005569 presumptive embryonic/larval tracheal system 5 48857 -UBERON:6016022 abdominal histoblast primordium 4 48858 -UBERON:6017021 abdominal histoblast anlage 4 48859 -UBERON:0002120 pronephros 3 48860 -UBERON:0002329 somite 3 48861 -UBERON:0005594 head somite 4 48862 -UBERON:0005598 trunk somite 4 48863 -UBERON:0009621 tail somite 4 48864 -UBERON:2000072 somite 1 4 48865 -UBERON:2000073 somite 5 4 48866 -UBERON:2000074 somite 26 4 48867 -UBERON:2000156 somite 20 4 48868 -UBERON:2000157 somite 30 4 48869 -UBERON:2000725 somite 11 4 48870 -UBERON:2000726 somite 14 4 48871 -UBERON:2000727 somite 17 4 48872 -UBERON:2000728 somite 2 4 48873 -UBERON:2000730 somite 23 4 48874 -UBERON:2000731 somite 27 4 48875 -UBERON:2000732 somite 3 4 48876 -UBERON:2000733 somite 7 4 48877 -UBERON:2000851 somite 12 4 48878 -UBERON:2000852 somite 15 4 48879 -UBERON:2000853 somite 18 4 48880 -UBERON:2000854 somite 21 4 48881 -UBERON:2000855 somite 24 4 48882 -UBERON:2000856 somite 28 4 48883 -UBERON:2000857 somite 4 4 48884 -UBERON:2000858 somite 8 4 48885 -UBERON:2000974 somite 10 4 48886 -UBERON:2000975 somite 13 4 48887 -UBERON:2000976 somite 16 4 48888 -UBERON:2000977 somite 19 4 48889 -UBERON:2000978 somite 22 4 48890 -UBERON:2000980 somite 25 4 48891 -UBERON:2000981 somite 29 4 48892 -UBERON:2000982 somite 6 4 48893 -UBERON:2000983 somite 9 4 48894 -UBERON:0004198 comma-shaped body 3 48895 -UBERON:0005145 metanephric comma-shaped body 4 48896 -UBERON:0005328 mesonephric comma-shaped body 4 48897 -UBERON:0004199 S-shaped body 3 48898 -UBERON:0005148 metanephric S-shaped body 4 48899 -UBERON:0005332 mesonephric S-shaped body 4 48900 -UBERON:0005356 Rathke's pouch 3 48901 -UBERON:0006268 notochordal process 3 48902 -UBERON:0006306 ulna cartilage element 3 48903 -UBERON:0006965 vascular cord 3 48904 -UBERON:0007688 anlage 3 48905 -UBERON:0004140 primary heart field 4 48906 -UBERON:0005732 paired limb/fin field 4 48907 -UBERON:0005729 pectoral appendage field 5 48908 -UBERON:0005730 pelvic appendage field 5 48909 -UBERON:0005731 fin field 5 48910 -UBERON:0005733 limb field 5 48911 -UBERON:0007687 kidney field 4 48912 -UBERON:0009847 prostate field 4 48913 -UBERON:0009889 secondary heart field 4 48914 -UBERON:0022361 lung field 4 48915 -UBERON:0036146 cardiopharyngeal field 4 48916 -UBERON:6000104 mesoderm anlage 4 48917 -UBERON:6001135 proneural cluster 4 48918 -UBERON:6004203 adult clypeo-labral anlage 4 48919 -UBERON:6005427 ectoderm anlage 4 48920 -UBERON:6005428 dorsal ectoderm anlage 4 48921 -UBERON:6005434 visual anlage 4 48922 -UBERON:6005436 trunk mesoderm anlage 4 48923 -UBERON:6005439 clypeo-labral anlage 4 48924 -UBERON:6017021 abdominal histoblast anlage 4 48925 -UBERON:6110746 presumptive prothoracic metatarsus 4 48926 -UBERON:6110811 presumptive arista 4 48927 -UBERON:0008281 tooth bud 3 48928 -UBERON:0009099 typhlosole 3 48929 -UBERON:0009100 nephric fold 3 48930 -UBERON:0009145 pharyngeal region of foregut 3 48931 -UBERON:0009871 nephrogenic zone 3 48932 -UBERON:0009894 siphon primordium 3 48933 -UBERON:0009895 atrial siphon primordia 4 48934 -UBERON:0009896 oral siphon primordia 4 48935 -UBERON:0010020 tubotympanic recess epithelium 3 48936 -UBERON:0010034 copula linguae 3 48937 -UBERON:0010056 future tongue 3 48938 -UBERON:0010057 hypopharyngeal eminence 3 48939 -UBERON:0010312 immature eye 3 48940 -UBERON:0003073 lens placode 4 48941 -UBERON:0005424 presumptive retinal pigmented epithelium 4 48942 -UBERON:0005425 presumptive neural retina 4 48943 -UBERON:0005427 corneal primordium 4 48944 -UBERON:0006276 perioptic mesenchyme 4 48945 -UBERON:0017639 sinus of von Szily 4 48946 -UBERON:0010403 brain marginal zone 3 48947 -UBERON:0010531 metanephros induced blastemal cells 3 48948 -UBERON:0011757 differentiated genital tubercle 3 48949 -UBERON:0006233 female genital tubercle 4 48950 -UBERON:0006261 male genital tubercle 4 48951 -UBERON:0011802 feather bud 3 48952 -UBERON:0012300 limb paddle 3 48953 -UBERON:0013238 future glans 3 48954 -UBERON:0013239 future glans penis 4 48955 -UBERON:0013240 future glans clitoris 4 48956 -UBERON:0014950 layer of developing cerebral cortex 3 48957 -UBERON:0004035 cortical subplate 4 48958 -UBERON:0004040 cortical intermediate zone 4 48959 -UBERON:0034994 hindbrain cortical intermediate zone 5 48960 -UBERON:0005343 cortical plate 4 48961 -UBERON:0014935 cerebral cortex marginal layer 4 48962 -UBERON:0014936 cerebral cortex ventricular layer 4 48963 -UBERON:0014940 cerebral cortex subventricular zone 4 48964 -UBERON:0034711 cortical preplate 4 48965 -UBERON:0016888 transitional anatomical structure 3 48966 -UBERON:0004290 dermomyotome 4 48967 -UBERON:0006265 mural trophectoderm 4 48968 -UBERON:0006280 polar trophectoderm 4 48969 -UBERON:0008800 parietal endoderm 4 48970 -UBERON:0017650 developing mesenchymal structure 3 48971 -UBERON:0003082 myotome 4 48972 -UBERON:0010963 trunk and cervical myotome group 5 48973 -UBERON:2000044 myotome somite 14 5 48974 -UBERON:2000801 myotome somite 11 5 48975 -UBERON:2000802 myotome somite 15 5 48976 -UBERON:2000803 myotome somite 18 5 48977 -UBERON:2000804 myotome somite 20 5 48978 -UBERON:2000805 myotome somite 23 5 48979 -UBERON:2000807 myotome somite 26 5 48980 -UBERON:2000808 myotome somite 29 5 48981 -UBERON:2000809 myotome somite 4 5 48982 -UBERON:2000810 myotome somite 7 5 48983 -UBERON:2000924 myotome somite 1 5 48984 -UBERON:2000926 myotome somite 12 5 48985 -UBERON:2000927 myotome somite 16 5 48986 -UBERON:2000928 myotome somite 19 5 48987 -UBERON:2000929 myotome somite 21 5 48988 -UBERON:2000930 myotome somite 24 5 48989 -UBERON:2000931 myotome somite 27 5 48990 -UBERON:2000932 myotome somite 3 5 48991 -UBERON:2000933 myotome somite 5 5 48992 -UBERON:2000934 myotome somite 8 5 48993 -UBERON:2001013 myotome somite 10 5 48994 -UBERON:2001014 myotome somite 13 5 48995 -UBERON:2001015 myotome somite 17 5 48996 -UBERON:2001016 myotome somite 2 5 48997 -UBERON:2001017 myotome somite 22 5 48998 -UBERON:2001018 myotome somite 25 5 48999 -UBERON:2001019 myotome somite 28 5 49000 -UBERON:2001020 myotome somite 30 5 49001 -UBERON:2001021 myotome somite 6 5 49002 -UBERON:2001022 myotome somite 9 5 49003 -UBERON:0004016 dermatome 4 49004 -UBERON:0035611 hair peg 3 49005 -UBERON:6005023 imaginal precursor 3 49006 -UBERON:6001648 embryonic imaginal precursor 4 49007 -UBERON:6001649 imaginal disc primordium 5 49008 -UBERON:6001650 labial disc primordium 6 49009 -UBERON:6001652 eye-antennal disc primordium 6 49010 -UBERON:6001653 dorsal thoracic disc primordium 6 49011 -UBERON:6001655 dorsal mesothoracic disc primordium 7 49012 -UBERON:6001656 dorsal metathoracic disc primordium 7 49013 -UBERON:6001657 ventral thoracic disc primordium 6 49014 -UBERON:6001658 ventral prothoracic disc primordium 7 49015 -UBERON:6001661 genital disc primordium 6 49016 -UBERON:6001662 male genital disc primordium 7 49017 -UBERON:6001663 female genital disc primordium 7 49018 -UBERON:6005514 adult clypeo-labral primordium 5 49019 -UBERON:6001760 embryonic/larval imaginal precursor 4 49020 -UBERON:6001789 histoblast 5 49021 -UBERON:6001790 histoblast nest 6 49022 -UBERON:6001791 dorsal histoblast nest abdominal 7 49023 -UBERON:6001792 anterior dorsal histoblast nest abdominal 8 49024 -UBERON:6001809 posterior dorsal histoblast nest abdominal 7 49025 -UBERON:6005831 dorsal imaginal precursor 4 49026 -UBERON:6001791 dorsal histoblast nest abdominal 5 49027 -UBERON:6001792 anterior dorsal histoblast nest abdominal 6 49028 -UBERON:6040003 non-connected developing system 3 49029 -UBERON:6007116 presumptive embryonic/larval system 4 49030 -UBERON:6001055 presumptive embryonic/larval nervous system 5 49031 -UBERON:6001056 presumptive embryonic/larval central nervous system 5 49032 -UBERON:6005569 presumptive embryonic/larval tracheal system 5 49033 -UBERON:0034923 disconnected anatomical group 2 49034 -UBERON:0010009 aggregate regional part of brain 3 49035 -UBERON:0000431 ventral medial complex of thalamus 4 49036 -UBERON:0010011 collection of basal ganglia 4 49037 -UBERON:0023920 basal ganglia of rodent 5 49038 -UBERON:0014370 extrastriate cortex 4 49039 -UBERON:0034924 aligned anatomical group 3 49040 -UBERON:0034925 anatomical collection 2 49041 -UBERON:0000170 pair of lungs 3 49042 -UBERON:0002109 pair of nares 3 49043 -UBERON:0003672 dentition 3 49044 -UBERON:0007116 primary dentition 4 49045 -UBERON:0007774 secondary dentition 4 49046 -UBERON:0007799 mixed dentition 4 49047 -UBERON:0009678 tooth row 4 49048 -UBERON:0009679 set of lower jaw teeth 5 49049 -UBERON:0014683 parasymphisial tooth whorl 6 49050 -UBERON:0014684 Helicoprion tooth whorl 6 49051 -UBERON:0009680 set of upper jaw teeth 5 49052 -UBERON:0012115 dental comb 5 49053 -UBERON:0014682 tooth whorl 5 49054 -UBERON:0014683 parasymphisial tooth whorl 6 49055 -UBERON:0014684 Helicoprion tooth whorl 6 49056 -UBERON:2001137 ventral tooth row 5 49057 -UBERON:2001139 mediodorsal tooth row 5 49058 -UBERON:2001140 dorsal tooth row 5 49059 -UBERON:2001833 premaxillary tooth row 5 49060 -UBERON:4300179 inner tooth row of premaxilla 6 49061 -UBERON:4300270 outer tooth row of premaxilla 6 49062 -UBERON:2001952 dentary tooth row 5 49063 -UBERON:4300178 inner tooth row of dentary 6 49064 -UBERON:2001978 maxillary tooth row 5 49065 -UBERON:4200239 shagreen tooth field 5 49066 -UBERON:4300177 replacement tooth row 5 49067 -UBERON:0017615 vomerine dentition 4 49068 -UBERON:0004288 skeleton 3 49069 -UBERON:0004770 articular system 3 49070 -UBERON:0010164 collection of hairs 3 49071 -UBERON:0010166 coat of hair 4 49072 -UBERON:0014381 whorl of hair 4 49073 -UBERON:0014382 collection of hairs on head or neck 4 49074 -UBERON:0010165 collection of hair on face 5 49075 -UBERON:0010163 eyebrow 6 49076 -UBERON:0010167 beard 6 49077 -UBERON:0010168 collection of eyelashes 6 49078 -UBERON:0010169 moustache 6 49079 -UBERON:1000006 collection of hair on forehead 6 49080 -UBERON:1000020 collection of hair on snout 6 49081 -UBERON:1000001 collection of hairs on vertex 5 49082 -UBERON:1000004 collection of hair on external ear 5 49083 -UBERON:1000018 cluster of hairs 4 49084 -UBERON:0010743 meningeal cluster 3 49085 -UBERON:0011810 collection of feathers 3 49086 -UBERON:0013512 row of feathers 4 49087 -UBERON:0013513 anal pterya 5 49088 -UBERON:0018540 breast feather tract 5 49089 -UBERON:0018690 feather covering of ventral part of tail 5 49090 -UBERON:0014447 feathered facial disc 4 49091 -UBERON:0014448 feathered ear tuft 4 49092 -UBERON:0022776 composite part spanning multiple base regional parts of brain 3 49093 -UBERON:0024151 tegmentum 4 49094 -UBERON:0034926 anatomical row 3 49095 -UBERON:0009678 tooth row 4 49096 -UBERON:0009679 set of lower jaw teeth 5 49097 -UBERON:0014683 parasymphisial tooth whorl 6 49098 -UBERON:0014684 Helicoprion tooth whorl 6 49099 -UBERON:0009680 set of upper jaw teeth 5 49100 -UBERON:0012115 dental comb 5 49101 -UBERON:0014682 tooth whorl 5 49102 -UBERON:0014683 parasymphisial tooth whorl 6 49103 -UBERON:0014684 Helicoprion tooth whorl 6 49104 -UBERON:2001137 ventral tooth row 5 49105 -UBERON:2001139 mediodorsal tooth row 5 49106 -UBERON:2001140 dorsal tooth row 5 49107 -UBERON:2001833 premaxillary tooth row 5 49108 -UBERON:4300179 inner tooth row of premaxilla 6 49109 -UBERON:4300270 outer tooth row of premaxilla 6 49110 -UBERON:2001952 dentary tooth row 5 49111 -UBERON:4300178 inner tooth row of dentary 6 49112 -UBERON:2001978 maxillary tooth row 5 49113 -UBERON:4200239 shagreen tooth field 5 49114 -UBERON:4300177 replacement tooth row 5 49115 -UBERON:0012443 row of scales 4 49116 -UBERON:0012444 gastropege 5 49117 -UBERON:0013512 row of feathers 4 49118 -UBERON:0013513 anal pterya 5 49119 -UBERON:0018540 breast feather tract 5 49120 -UBERON:0018690 feather covering of ventral part of tail 5 49121 -UBERON:6100153 sensilla row 4 49122 -UBERON:6004296 sex comb 5 49123 -UBERON:0036215 anatomical surface region 2 49124 -UBERON:0003369 fossa ovalis of heart 3 49125 -UBERON:0006056 posterior surface of head 3 49126 -UBERON:0003155 arthropod occiput 4 49127 -UBERON:0006054 surface of occiput 4 49128 -UBERON:0006677 surface of epithelium 3 49129 -UBERON:0007367 surface of tongue 3 49130 -UBERON:0007371 superior surface of tongue 4 49131 -UBERON:0007373 inferior surface of tongue 4 49132 -UBERON:0008115 surface of cartilage 3 49133 -UBERON:0008124 joint articular surface 4 49134 -UBERON:0011342 surface of mandible 3 49135 -UBERON:0011343 medial surface of mandible 4 49136 -UBERON:0011344 lateral surface of mandible 4 49137 -UBERON:0016566 pit 3 49138 -UBERON:0000931 proctodeum 4 49139 -UBERON:0001761 future foramen cecum 4 49140 -UBERON:0004055 primitive pit 4 49141 -UBERON:0004885 hilum 4 49142 -UBERON:0001248 hilum of spleen 5 49143 -UBERON:0004886 lung hilus 5 49144 -UBERON:0004887 left lung hilus 6 49145 -UBERON:0004888 right lung hilus 6 49146 -UBERON:0008716 hilum of kidney 5 49147 -UBERON:0035495 hilum of lymph node 5 49148 -UBERON:0005870 olfactory pit 4 49149 -UBERON:0006216 cervical sinus of His 4 49150 -UBERON:0006259 lens pit 4 49151 -UBERON:0006273 otic pit 4 49152 -UBERON:0017659 ventral surface of penis 3 49153 -UBERON:0018305 bicipital surface 3 49154 -UBERON:0022288 surface of eyeball 3 49155 -UBERON:0034928 dorsal surface of penis 3 49156 -UBERON:0035310 inferolateral surface of prostate 3 49157 -UBERON:0035368 anterior surface of kidney 3 49158 -UBERON:0035471 posterior surface of kidney 3 49159 -UBERON:0035480 surface of prostate 3 49160 -UBERON:0035165 posterior surface of prostate 4 49161 -UBERON:0035523 anterior surface of prostate 4 49162 -UBERON:0000466 immaterial anatomical entity 1 49163 -UBERON:0000015 non-material anatomical boundary 2 49164 -UBERON:0003678 tooth apex 3 49165 -UBERON:0018272 apex of paracone 4 49166 -UBERON:0004015 embryonic-extraembryonic boundary 3 49167 -UBERON:0006206 iridocorneal angle 3 49168 -UBERON:0006800 anatomical line 3 49169 -UBERON:0002225 costal arch 4 49170 -UBERON:0004104 hairline 4 49171 -UBERON:0009038 sulcus ampullaris 4 49172 -UBERON:0009612 forebrain midbrain boundary neural plate 4 49173 -UBERON:0009848 zona limitans intrathalamica 4 49174 -UBERON:0010222 anatomical line between pupils 4 49175 -UBERON:0010231 anatomical line between outer ears 4 49176 -UBERON:0011877 margin of tongue 4 49177 -UBERON:0011918 line of Schwalbe 4 49178 -UBERON:0012079 metapterygial axis 4 49179 -UBERON:0012437 epithelial-mesenchymal boundary 4 49180 -UBERON:2001388 epithelial mesenchymal boundary of regenerating fin/limb 5 49181 -UBERON:0013445 pterygomaxillary fissure 4 49182 -UBERON:0013455 spheno-petrosal fissure 4 49183 -UBERON:0013633 intertrochanteric crest 4 49184 -UBERON:0013634 intertrochanteric line 4 49185 -UBERON:0013670 midline of corpus cavernosum maxillaris 4 49186 -UBERON:0013678 anatomical line between inner canthi 4 49187 -UBERON:0013692 inframammary fold 4 49188 -UBERON:0013770 intermammary cleft 4 49189 -UBERON:0013771 line connecting laterally paired nipples 4 49190 -UBERON:0014764 anatomical line along groove 4 49191 -UBERON:0015122 anatomical line between outer canthi 4 49192 -UBERON:0015854 interpedicular line 4 49193 -UBERON:0036013 intergluteal cleft 4 49194 -UBERON:2001343 telencephalon diencephalon boundary 4 49195 -UBERON:2002051 scale circulus 4 49196 -UBERON:2007027 forebrain midbrain boundary neural keel 4 49197 -UBERON:2007033 forebrain midbrain boundary neural rod 4 49198 -UBERON:2007040 forebrain midbrain boundary neural tube 4 49199 -UBERON:2007045 midbrain hindbrain boundary neural keel 4 49200 -UBERON:2007046 midbrain hindbrain boundary neural rod 4 49201 -UBERON:2007047 midbrain hindbrain boundary neural tube 4 49202 -UBERON:4200221 growth line 4 49203 -UBERON:7500036 line from caundal-sacral region of the vertebral column to the last vertebra 4 49204 -UBERON:7500037 line from helix of outer ear to intertragus incisure 4 49205 -UBERON:7500038 line from the distal-most end of the longest nail to the posterior-most part of the foot 4 49206 -UBERON:7500042 line from the distal-most end of the longest phalax of the foot to the posterior-most part of the foot 4 49207 -UBERON:7500043 line from tip of nose to the caudal-sacral region of the vertebral column 4 49208 -UBERON:7500044 line from tip of nose to the posterior-most part of the last caudal vertebra 4 49209 -UBERON:7500045 line of medial condyle of femur to greater trochanter 4 49210 -UBERON:7500050 line of medial condyle of femur to head of femur 4 49211 -UBERON:7500051 line from trochlea of humerus to proximal head of humerus 4 49212 -UBERON:7500060 line from trochlea of humerus to ventral tubercle of humerus 4 49213 -UBERON:0000464 anatomical space 2 49214 -UBERON:0000039 follicular antrum 3 49215 -UBERON:0000093 sulcus 3 49216 -UBERON:0002277 spiral sulcus 4 49217 -UBERON:0008831 inner spiral sulcus 5 49218 -UBERON:0008832 outer spiral sulcus 5 49219 -UBERON:0008805 gingival groove 4 49220 -UBERON:0013118 sulcus of brain 4 49221 -UBERON:0002562 superior frontal sulcus 5 49222 -UBERON:0002566 superior precentral sulcus 5 49223 -UBERON:0002582 anterior calcarine sulcus 5 49224 -UBERON:0002586 calcarine sulcus 5 49225 -UBERON:0002598 paracentral sulcus 5 49226 -UBERON:0002607 superior rostral sulcus 5 49227 -UBERON:0002683 rhinal sulcus 5 49228 -UBERON:0002761 inferior frontal sulcus 5 49229 -UBERON:0002767 inferior rostral sulcus 5 49230 -UBERON:0002772 olfactory sulcus 5 49231 -UBERON:0002904 lateral occipital sulcus 5 49232 -UBERON:0002907 superior postcentral sulcus 5 49233 -UBERON:0002908 subparietal sulcus 5 49234 -UBERON:0002909 posterior subcentral sulcus 5 49235 -UBERON:0002916 central sulcus 5 49236 -UBERON:0003989 medulla oblongata anterior median fissure 5 49237 -UBERON:0008334 subarachnoid sulcus 5 49238 -UBERON:0002569 transverse temporal sulcus 6 49239 -UBERON:0002595 orbital sulcus 6 49240 -UBERON:0002612 transverse orbital sulcus 7 49241 -UBERON:0002669 anterior horizontal limb of lateral sulcus 6 49242 -UBERON:0002670 anterior ascending limb of lateral sulcus 6 49243 -UBERON:0002672 anterior subcentral sulcus 6 49244 -UBERON:0002675 diagonal sulcus 6 49245 -UBERON:0002693 occipitotemporal sulcus 6 49246 -UBERON:0002695 parieto-occipital sulcus 6 49247 -UBERON:0002710 cingulate sulcus 6 49248 -UBERON:0002716 collateral sulcus 6 49249 -UBERON:0002721 lateral sulcus 6 49250 -UBERON:0002737 lateral inferior limiting sulcus 6 49251 -UBERON:0002799 fronto-orbital sulcus 6 49252 -UBERON:0002899 hippocampal sulcus 6 49253 -UBERON:0002903 lunate sulcus 6 49254 -UBERON:0002905 intralingual sulcus 6 49255 -UBERON:0002906 anterior occipital sulcus 6 49256 -UBERON:0002910 posterior ascending limb of lateral sulcus 6 49257 -UBERON:0002912 marginal sulcus 6 49258 -UBERON:0002713 circular sulcus of insula 7 49259 -UBERON:0002914 inferior postcentral sulcus 6 49260 -UBERON:0002919 anterior parolfactory sulcus 6 49261 -UBERON:0002920 callosal sulcus 6 49262 -UBERON:0002923 posterior parolfactory sulcus 6 49263 -UBERON:0008335 ventrolateral sulcus of medulla oblongata 6 49264 -UBERON:0013591 postsylvian sulcus 6 49265 -UBERON:0013592 presylvian sulcus 6 49266 -UBERON:0013593 suprasylvian sulcus 6 49267 -UBERON:0013594 ectosylvian sulcus 6 49268 -UBERON:0013595 postlateral sulcus 6 49269 -UBERON:0013596 brain coronal sulcus 6 49270 -UBERON:0022252 precentral sulcus 6 49271 -UBERON:0035925 central sulcus of insula 6 49272 -UBERON:0013590 cruciate sulcus 5 49273 -UBERON:0014544 frontomarginal sulcus 5 49274 -UBERON:0014639 frontal sulcus 5 49275 -UBERON:0002669 anterior horizontal limb of lateral sulcus 6 49276 -UBERON:0002670 anterior ascending limb of lateral sulcus 6 49277 -UBERON:0002672 anterior subcentral sulcus 6 49278 -UBERON:0002675 diagonal sulcus 6 49279 -UBERON:0002764 inferior precentral sulcus 6 49280 -UBERON:0002799 fronto-orbital sulcus 6 49281 -UBERON:0014618 middle frontal sulcus 6 49282 -UBERON:0022252 precentral sulcus 6 49283 -UBERON:0014687 temporal sulcus 5 49284 -UBERON:0002569 transverse temporal sulcus 6 49285 -UBERON:0002734 superior temporal sulcus 6 49286 -UBERON:0002969 inferior temporal sulcus 6 49287 -UBERON:0014689 middle temporal sulcus 6 49288 -UBERON:0025768 posterior middle temporal sulcus 6 49289 -UBERON:0026725 angular sulcus 6 49290 -UBERON:0027113 anterior middle temporal sulcus 6 49291 -UBERON:0019303 occipital sulcus 5 49292 -UBERON:0002900 transverse occipital sulcus 6 49293 -UBERON:0002901 posterior calcarine sulcus 6 49294 -UBERON:0002903 lunate sulcus 6 49295 -UBERON:0002905 intralingual sulcus 6 49296 -UBERON:0002906 anterior occipital sulcus 6 49297 -UBERON:0025096 superior calcarine sulcus 6 49298 -UBERON:0025102 inferior occipital sulcus 6 49299 -UBERON:0025103 inferior calcarine sulcus 6 49300 -UBERON:0025104 ectocalcarine sulcus 6 49301 -UBERON:0035925 central sulcus of insula 6 49302 -UBERON:0025763 rostral sulcus 5 49303 -UBERON:0025772 spur of arcuate sulcus 5 49304 -UBERON:0025829 anterior parieto-occipital sulcus 5 49305 -UBERON:0025883 superior ramus of arcuate sulcus 5 49306 -UBERON:0025903 principal sulcus 5 49307 -UBERON:0026382 inferior ramus of arcuate sulcus 5 49308 -UBERON:0026384 lateral orbital sulcus 5 49309 -UBERON:0026391 medial orbital sulcus 5 49310 -UBERON:0026719 intermediate frontal sulcus 5 49311 -UBERON:0026721 medial precentral sulcus 5 49312 -UBERON:0034671 arcuate sulcus 5 49313 -UBERON:0034674 sulcus of limbic lobe 5 49314 -UBERON:0034968 sagittal sulcus 5 49315 -UBERON:0026760 inferior sagittal sulcus 6 49316 -UBERON:0026761 superior sagittal sulcus 6 49317 -UBERON:0035927 sulcus of parietal lobe 5 49318 -UBERON:0002913 intraparietal sulcus 6 49319 -UBERON:0002915 postcentral sulcus of parietal lobe 6 49320 -UBERON:0026722 transverse parietal sulcus 6 49321 -UBERON:0026723 inferior parietal sulcus 6 49322 -UBERON:0026724 superior parietal sulcus 6 49323 -UBERON:0026725 angular sulcus 6 49324 -UBERON:0035210 paracolic gutter 4 49325 -UBERON:0000315 subarachnoid space 3 49326 -UBERON:0004050 subarachnoid cistern 4 49327 -UBERON:0002897 cistern of lamina terminalis 5 49328 -UBERON:0002898 chiasmatic cistern 5 49329 -UBERON:0004047 basal cistern 5 49330 -UBERON:0004048 pontine cistern 5 49331 -UBERON:0004049 cerebellomedullary cistern 5 49332 -UBERON:0004051 lateral cerebellomedullary cistern 6 49333 -UBERON:0005974 posterior cerebellomedullary cistern 6 49334 -UBERON:0004052 quadrigeminal cistern 5 49335 -UBERON:0011155 Sylvian cistern 5 49336 -UBERON:0005217 midbrain subarachnoid space 4 49337 -UBERON:0005218 diencephalon subarachnoid space 4 49338 -UBERON:0005219 hindbrain subarachnoid space 4 49339 -UBERON:0004048 pontine cistern 5 49340 -UBERON:0000416 subdural space 3 49341 -UBERON:0001283 bile canaliculus 3 49342 -UBERON:0001286 Bowman's space 3 49343 -UBERON:0001731 cavity of pharynx 3 49344 -UBERON:0001771 pupil 3 49345 -UBERON:0010223 left pupil 4 49346 -UBERON:0010224 right pupil 4 49347 -UBERON:0002192 ventricular system choroidal fissure 3 49348 -UBERON:0002224 thoracic cavity 3 49349 -UBERON:0008818 superior mediastinum 4 49350 -UBERON:0008819 inferior mediastinum 4 49351 -UBERON:0008820 anterior mediastinum 4 49352 -UBERON:0008821 middle mediastinum 4 49353 -UBERON:0008822 posterior mediastinum 4 49354 -UBERON:0002553 anatomical cavity 3 49355 -UBERON:0000051 fornix of vagina 4 49356 -UBERON:0016486 posterior fornix of vagina 5 49357 -UBERON:0016487 anterior fornix of vagina 5 49358 -UBERON:0034963 lateral fornix of vagina 5 49359 -UBERON:0000090 blastocele 4 49360 -UBERON:0000167 oral cavity 4 49361 -UBERON:0000402 nasal vestibule 4 49362 -UBERON:0000424 gastric pit 4 49363 -UBERON:0001180 superior recess of lesser sac 4 49364 -UBERON:0001181 inferior recess of lesser sac 4 49365 -UBERON:0001349 externally connecting tube lumen 4 49366 -UBERON:0008330 vestibule of vagina 5 49367 -UBERON:0013732 vestibule of nasal cavity 5 49368 -UBERON:0001707 nasal cavity 4 49369 -UBERON:3000085 cavum inferius 5 49370 -UBERON:3000086 cavum internasale 5 49371 -UBERON:3000087 cavum medius 5 49372 -UBERON:3000088 cavum praenasale 5 49373 -UBERON:3000089 cavum principale 5 49374 -UBERON:0001825 paranasal sinus 4 49375 -UBERON:0001724 sphenoidal sinus 5 49376 -UBERON:0001760 frontal sinus 5 49377 -UBERON:0001764 maxillary sinus 5 49378 -UBERON:0002453 ethmoid sinus 5 49379 -UBERON:0011985 infraorbital sinus 5 49380 -UBERON:0002278 perilymphatic space 4 49381 -UBERON:0002287 optic recess of third ventricle 4 49382 -UBERON:0002323 coelemic cavity lumen 4 49383 -UBERON:0001074 pericardial cavity 5 49384 -UBERON:0002484 bone marrow cavity 4 49385 -UBERON:0016413 medullary cavity of long bone 5 49386 -UBERON:0002558 organ cavity 4 49387 -UBERON:0002487 tooth cavity 5 49388 -UBERON:0002561 lumen of central nervous system 5 49389 -UBERON:0006171 renal sinus 5 49390 -UBERON:0006174 pronephric sinus 6 49391 -UBERON:0006194 renal sinus of right kidney 6 49392 -UBERON:0006195 renal sinus of left kidney 6 49393 -UBERON:0006196 mesonephric sinus 6 49394 -UBERON:0009692 lumen of pharyngotympanic tube 5 49395 -UBERON:0010527 cavity of bone organ 5 49396 -UBERON:0010528 pneumatic cavity of bone 6 49397 -UBERON:0011894 lumen of vagina 5 49398 -UBERON:0013769 uterine lumen 5 49399 -UBERON:0003686 tooth socket 4 49400 -UBERON:0003728 mediastinum 4 49401 -UBERON:0004110 midnasal cavity 4 49402 -UBERON:0004114 tympanic cavity 4 49403 -UBERON:0004704 bone fossa 4 49404 -UBERON:0006657 glenoid fossa 5 49405 -UBERON:0008789 cranial fossa 5 49406 -UBERON:0003720 anterior cranial fossa 6 49407 -UBERON:0003722 middle cranial fossa 6 49408 -UBERON:0003995 subarcuate fossa 6 49409 -UBERON:0008788 posterior cranial fossa 6 49410 -UBERON:0013468 zygomatic fossa 6 49411 -UBERON:0018318 entocarotid fossa 6 49412 -UBERON:4300201 subepiotic fossa 6 49413 -UBERON:0013422 infratemporal fossa 5 49414 -UBERON:0013454 spheno-maxillary fossa 5 49415 -UBERON:0013460 suprainiac fossa 5 49416 -UBERON:0013463 temporal fossa 5 49417 -UBERON:0014445 acetabular fossa 5 49418 -UBERON:0018328 incisura fossa 5 49419 -UBERON:0018330 interpterygoid vacuity 5 49420 -UBERON:2001753 posttemporal fossa 5 49421 -UBERON:2001807 preepiotic fossa 5 49422 -UBERON:2001926 posterior myodome 5 49423 -UBERON:2001927 anterior myodome 5 49424 -UBERON:2001928 articular fossa of opercle 5 49425 -UBERON:2001974 subtemporal fossa 5 49426 -UBERON:2002039 dilatator fossa 5 49427 -UBERON:2002090 pro-otic fossa 5 49428 -UBERON:2005266 pterotic fossa 5 49429 -UBERON:3000652 fossa maxillaris 5 49430 -UBERON:3000786 fossa cubitalis ventralis 5 49431 -UBERON:3000896 foveal depression 5 49432 -UBERON:4200004 intertrochanteric fossa 5 49433 -UBERON:4200020 suprascapular fossa 5 49434 -UBERON:4200038 subscapular fossa 5 49435 -UBERON:4200043 brevis fossa 5 49436 -UBERON:4200096 intercondylar fossa 5 49437 -UBERON:4200104 metacarpal extensor pit 5 49438 -UBERON:4200185 entepicondyle fossa 5 49439 -UBERON:4200222 distal groove of humerus 5 49440 -UBERON:4300121 zygantrum 5 49441 -UBERON:4300158 ectepicondylar depression 5 49442 -UBERON:0004705 fenestra 4 49443 -UBERON:0014459 temporal fenestra 5 49444 -UBERON:0014460 supratemporal fenestra 6 49445 -UBERON:0014461 infratemporal fenestra 6 49446 -UBERON:0014465 antorbital fenestra 5 49447 -UBERON:0018136 maxillary fenestra 5 49448 -UBERON:0018137 premaxillary fenestra 5 49449 -UBERON:2002095 ventromedial opening of posttemporal fossa 5 49450 -UBERON:3000051 braincase and otic capsule opening 5 49451 -UBERON:0018351 precerebral fontanelle 6 49452 -UBERON:3000037 basicranial fenestra 6 49453 -UBERON:3000179 foramen acusticum 6 49454 -UBERON:3000180 foramen acusticum anterius 6 49455 -UBERON:3000181 foramen acusticum maius 6 49456 -UBERON:3000182 foramen acusticum minus 6 49457 -UBERON:3000183 foramen acusticum posterius 6 49458 -UBERON:3000185 foramen endolymphaticum 6 49459 -UBERON:3000192 foramen perilymphaticum 6 49460 -UBERON:3000193 foramen perilymphaticum accessorium 6 49461 -UBERON:3000195 foramen perilymphaticus inferius 6 49462 -UBERON:3000209 frontoparietal fontanelle 6 49463 -UBERON:3000332 oculomotor foramen 6 49464 -UBERON:3000341 optic fenestra 6 49465 -UBERON:3000344 orbitonasal foramen 6 49466 -UBERON:3000610 trochlear foramen 6 49467 -UBERON:3010525 frontoparietal fenestra 6 49468 -UBERON:3010562 suboccular foramen 6 49469 -UBERON:3010563 craniopalatine foramen 6 49470 -UBERON:3010564 carotid foramen 6 49471 -UBERON:3010566 prootic foramen 6 49472 -UBERON:4300132 glossopharyngeal nerve foramen 6 49473 -UBERON:4300142 internal carotid foramen 6 49474 -UBERON:4300144 profundus foramen 6 49475 -UBERON:4200046 astragalo-calcaneal canal 5 49476 -UBERON:0004867 orbital cavity 4 49477 -UBERON:0005251 yolk sac cavity 4 49478 -UBERON:0035676 secondary yolk sac cavity 5 49479 -UBERON:0035677 primary yolk sac cavity 5 49480 -UBERON:0005252 lesser sac cavity 4 49481 -UBERON:0005606 hyaloid cavity 4 49482 -UBERON:0005625 tubotympanic recess lumen 4 49483 -UBERON:0005981 vena cava sinus 4 49484 -UBERON:0006272 oronasal cavity 4 49485 -UBERON:0006442 subhepatic recess 4 49486 -UBERON:0006342 left subhepatic recess 5 49487 -UBERON:0006343 right subhepatic recess 5 49488 -UBERON:0006667 pituitary fossa 4 49489 -UBERON:0007617 synovial cavity of joint 4 49490 -UBERON:0007618 synovial cavity of hip joint 5 49491 -UBERON:0008203 pelvic cavity 4 49492 -UBERON:0009573 sulcus limitans of fourth ventricle 4 49493 -UBERON:0009742 proamniotic cavity 4 49494 -UBERON:0010006 placenta intervillous maternal lacunae 4 49495 -UBERON:0010007 placenta fetal blood space 4 49496 -UBERON:0010279 pericardial sinus 4 49497 -UBERON:0002248 transverse pericardial sinus 5 49498 -UBERON:0010283 oblique pericardial sinus 5 49499 -UBERON:0011078 endolymphatic space 4 49500 -UBERON:0011204 rectovesical pouch 4 49501 -UBERON:0011565 lumen of gastrointestinal system 4 49502 -UBERON:0011799 cavity of feather shaft 4 49503 -UBERON:0011805 cavity of feather follicle 4 49504 -UBERON:0012054 myocoele 4 49505 -UBERON:0013074 cornual diverticulum 4 49506 -UBERON:0013411 cranial cavity 4 49507 -UBERON:0013526 otocyst lumen 4 49508 -UBERON:0013761 cervical cavity 4 49509 -UBERON:0015216 nasal meatus 4 49510 -UBERON:0007163 superior nasal meatus 5 49511 -UBERON:0015219 middle nasal meatus 5 49512 -UBERON:0015220 inferior nasal meatus 5 49513 -UBERON:0015221 common nasal meatus 5 49514 -UBERON:0015222 ventral nasal meatus 5 49515 -UBERON:0015223 dorsal nasal meatus 5 49516 -UBERON:0018297 resorption pit 4 49517 -UBERON:0022283 pineal recess of third ventricle 4 49518 -UBERON:0035465 endometrial cavity 4 49519 -UBERON:0035763 cavity of cardiac chamber 4 49520 -UBERON:0016509 cavity of right ventricle 5 49521 -UBERON:0016513 cavity of left atrium 5 49522 -UBERON:0016514 cavity of left ventricle 5 49523 -UBERON:0016522 cavity of right atrium 5 49524 -UBERON:0035809 serous cavity 4 49525 -UBERON:0001074 pericardial cavity 5 49526 -UBERON:0001179 peritoneal cavity 5 49527 -UBERON:0002402 pleural cavity 5 49528 -UBERON:0002698 preoccipital notch 3 49529 -UBERON:0003199 egg chamber 3 49530 -UBERON:0003684 abdominal cavity 3 49531 -UBERON:0003693 retroperitoneal space 3 49532 -UBERON:0003842 neural tube lumen 3 49533 -UBERON:0003886 future coelemic cavity lumen 3 49534 -UBERON:0003950 inner ear canal 3 49535 -UBERON:0004099 joint space of elbow 3 49536 -UBERON:0004754 foramen ovale of heart 3 49537 -UBERON:0005082 tube lumen 3 49538 -UBERON:0004114 tympanic cavity 4 49539 -UBERON:0009481 cavity of pericardio-peritoneal canal 4 49540 -UBERON:0009692 lumen of pharyngotympanic tube 4 49541 -UBERON:0009974 lumen of Rathke's pouch 4 49542 -UBERON:0009975 remnant of lumen of Rathke's pouch 4 49543 -UBERON:0011574 mesonephric duct lumen 4 49544 -UBERON:0011819 lumen of atrioventricular canal 4 49545 -UBERON:0005450 greater sac cavity 3 49546 -UBERON:0005463 subcapsular sinus of lymph node 3 49547 -UBERON:0005688 lens vesicle cavity 3 49548 -UBERON:0005972 tunnel of Corti 3 49549 -UBERON:0006580 mantle cavity 3 49550 -UBERON:0006729 liver perisinusoidal space 3 49551 -UBERON:0006832 lumen of open tracheal system trachea 3 49552 -UBERON:0006833 lumen of trachea 3 49553 -UBERON:0006909 lumen of digestive tract 3 49554 -UBERON:0007147 lumen of midgut 3 49555 -UBERON:0007148 lumen of hindgut 3 49556 -UBERON:0007158 lumen of anal canal 3 49557 -UBERON:0007159 lumen of colon 3 49558 -UBERON:0007656 lateral recess of fourth ventricle 3 49559 -UBERON:0008809 foramina of scarpa 3 49560 -UBERON:0008851 ectoplacental cavity 3 49561 -UBERON:0008902 lateral recess of third vetricle 3 49562 -UBERON:0008915 pore 3 49563 -UBERON:0018357 sensory pore 4 49564 -UBERON:2002006 axillary pore 4 49565 -UBERON:0009572 lumen of central canal of spinal cord 3 49566 -UBERON:0009670 rectal lumen 3 49567 -UBERON:0009715 stomodeal lumen 3 49568 -UBERON:0009844 urogenital sinus lumen 3 49569 -UBERON:0009857 cavum septum pellucidum 3 49570 -UBERON:0009958 bladder lumen 3 49571 -UBERON:0009959 lumen of oropharynx 3 49572 -UBERON:0010060 pharyngeal opening of pharyngotympanic tube 3 49573 -UBERON:0010061 lumen of nasopharynx 3 49574 -UBERON:0010064 open anatomical space 3 49575 -UBERON:0004114 tympanic cavity 4 49576 -UBERON:0013150 future brain vesicle 4 49577 -UBERON:0006284 early prosencephalic vesicle 5 49578 -UBERON:0009676 early telencephalic vesicle 5 49579 -UBERON:0013147 early mesencephalic vesicle 5 49580 -UBERON:0013148 early midbrain vesicle 5 49581 -UBERON:0013149 hindbrain vesicle 5 49582 -UBERON:0010076 network of trabecular spaces in bone tissue 3 49583 -UBERON:0010160 lumen of lymphatic vessel 3 49584 -UBERON:0010161 lumen of blood vessel 3 49585 -UBERON:0014399 sinusoidal space 4 49586 -UBERON:0014400 hepatic sinusoidal space 5 49587 -UBERON:0034940 venous sinus cavity 4 49588 -UBERON:0010276 space in vertebral column 3 49589 -UBERON:0003691 epidural space 4 49590 -UBERON:0018328 incisura fossa 4 49591 -UBERON:3000696 posterior intervertebral notch 4 49592 -UBERON:3000701 intervertebral space 4 49593 -UBERON:3000704 anterior intervertebral notch 4 49594 -UBERON:3000730 foramen nutritium 4 49595 -UBERON:3000800 intercotylar space 4 49596 -UBERON:4300121 zygantrum 4 49597 -UBERON:0010384 lumen of laryngopharynx 3 49598 -UBERON:0010390 lumen of urethra 3 49599 -UBERON:0011360 ampulla caudalis 3 49600 -UBERON:0011566 lumen of esophagus 3 49601 -UBERON:0011772 lower jaw opening 3 49602 -UBERON:3000006 alveolar foramen 4 49603 -UBERON:0011773 upper jaw opening 3 49604 -UBERON:3000605 tentacular foramen 4 49605 -UBERON:0012082 bronchial lumen 3 49606 -UBERON:0012083 lumen of primary bronchus 4 49607 -UBERON:0012084 lumen of secondary bronchus 4 49608 -UBERON:0012085 lumen of tertiary bronchus 4 49609 -UBERON:0012086 lumen of parabronchus 5 49610 -UBERON:0012111 diastema 3 49611 -UBERON:0035119 diastema between incisors 4 49612 -UBERON:0035115 diastema between central incisors 5 49613 -UBERON:0035116 diastema between upper central incisors 6 49614 -UBERON:0035117 diastema between lower central incisors 6 49615 -UBERON:0012117 lumen of nutrient foramen 3 49616 -UBERON:0012198 intercostal space 3 49617 -UBERON:0012246 thyroid follicular lumen 3 49618 -UBERON:0012351 urachal lumen 3 49619 -UBERON:0012442 epiploic foramen 3 49620 -UBERON:0012463 cloacal lumen 3 49621 -UBERON:0009669 embryonic cloacal lumen 4 49622 -UBERON:0012465 lumen of terminal part of digestive tract 3 49623 -UBERON:0012466 extraembryonic cavity 3 49624 -UBERON:0000301 amniotic cavity 4 49625 -UBERON:0003888 extraembryonic coelomic cavity 4 49626 -UBERON:0005251 yolk sac cavity 4 49627 -UBERON:0035676 secondary yolk sac cavity 5 49628 -UBERON:0035677 primary yolk sac cavity 5 49629 -UBERON:0009743 visceral yolk sac cavity 4 49630 -UBERON:0035676 secondary yolk sac cavity 5 49631 -UBERON:0010006 placenta intervillous maternal lacunae 4 49632 -UBERON:0010007 placenta fetal blood space 4 49633 -UBERON:0012467 enclosed anatomical space 3 49634 -UBERON:0000301 amniotic cavity 4 49635 -UBERON:0005606 hyaloid cavity 4 49636 -UBERON:0006253 embryonic intraretinal space 4 49637 -UBERON:0007473 lumen of epithelial sac 4 49638 -UBERON:0005251 yolk sac cavity 5 49639 -UBERON:0035676 secondary yolk sac cavity 6 49640 -UBERON:0035677 primary yolk sac cavity 6 49641 -UBERON:0005625 tubotympanic recess lumen 5 49642 -UBERON:0009743 visceral yolk sac cavity 5 49643 -UBERON:0035676 secondary yolk sac cavity 6 49644 -UBERON:0009974 lumen of Rathke's pouch 5 49645 -UBERON:0013526 otocyst lumen 5 49646 -UBERON:0013220 foramen of Panizza 3 49647 -UBERON:0013471 retromolar space 3 49648 -UBERON:0013514 space surrounding organism 3 49649 -UBERON:0013525 stomach lumen 3 49650 -UBERON:0013686 anatomical conduit space 3 49651 -UBERON:0035186 valve of foramen ovale 4 49652 -UBERON:0036144 incisive duct 4 49653 -UBERON:0014456 extraperitoneal space 3 49654 -UBERON:0014466 subarachnoid fissure 3 49655 -UBERON:0002896 telodiencephalic fissure 4 49656 -UBERON:0002921 longitudinal fissure 4 49657 -UBERON:0003980 cerebellum fissure 4 49658 -UBERON:0002814 posterior superior fissure of cerebellum 5 49659 -UBERON:0002815 horizontal fissure of cerebellum 5 49660 -UBERON:0002816 prepyramidal fissure of cerebellum 5 49661 -UBERON:0002817 secondary fissure of cerebellum 5 49662 -UBERON:0002818 posterolateral fissure of cerebellum 5 49663 -UBERON:0014468 ansoparamedian fissure of cerebellum 5 49664 -UBERON:0014471 primary fissure of cerebellum 5 49665 -UBERON:0014473 precentral fissure of cerebellum 5 49666 -UBERON:0014474 postcentral fissure of cerebellum 5 49667 -UBERON:0035922 intraculminate fissure of cerebellum 5 49668 -UBERON:0035926 preculminate fissure of cerebellum 5 49669 -UBERON:0035319 anterior median fissure of spinal cord 4 49670 -UBERON:0014704 pleuroperitoneal canal lumen 3 49671 -UBERON:0014930 perivascular space 3 49672 -UBERON:0015155 conjunctival space 3 49673 -UBERON:0016502 stomach fundus lumen 3 49674 -UBERON:0016512 lumen of duodenum 3 49675 -UBERON:0016517 lumen of jejunum 3 49676 -UBERON:0016883 ovarian fossa 3 49677 -UBERON:0017160 lumen of hemipenial sheath 3 49678 -UBERON:0018354 recessus vena jugularis 3 49679 -UBERON:0018543 lumen of intestine 3 49680 -UBERON:0018652 maxillary recess 3 49681 -UBERON:0027513 posterior superior frontal sulcus 3 49682 -UBERON:0027716 anterior superior frontal sulcus 3 49683 -UBERON:0028395 calcarine sulcus (dorsal) 3 49684 -UBERON:0028396 calcarine sulcus (ventral) 3 49685 -UBERON:0028622 banks of superior temporal sulcus 3 49686 -UBERON:0034767 buccal vestibule 3 49687 -UBERON:0034905 gland lumen 3 49688 -UBERON:0035144 preputial space 3 49689 -UBERON:0035142 preputial space of male 4 49690 -UBERON:0035143 preputial space of female 4 49691 -UBERON:0035228 tonsillar fossa 3 49692 -UBERON:0035243 anal sinus 3 49693 -UBERON:0035386 space of Mall 3 49694 -UBERON:0035617 peripharyngeal space 3 49695 -UBERON:0035618 parapharyngeal space 4 49696 -UBERON:0035619 retropharyngeal space 4 49697 -UBERON:0035819 abdominopelvic cavity 3 49698 -UBERON:0035942 space between upper and lower jaws 3 49699 -UBERON:0035956 epididymal lumen 3 49700 -UBERON:0036252 interdigital space 3 49701 -UBERON:1500003 lateral line canal lumen 3 49702 -UBERON:2002248 supratemporal commissure 4 49703 -UBERON:2000695 labial cavities 3 49704 -UBERON:2001055 pronephric duct opening 3 49705 -UBERON:2001744 replacement tooth trench 3 49706 -UBERON:2001745 premaxilla replacement tooth trench 4 49707 -UBERON:2001746 dentary replacement tooth trench 4 49708 -UBERON:2001799 recessus lateralis 3 49709 -UBERON:2002052 prootic depression 3 49710 -UBERON:2002057 gill opening 3 49711 -UBERON:2002118 scale radius 3 49712 -UBERON:2002128 cavum sinus imparis 3 49713 -UBERON:2002154 opercular cavity 3 49714 -UBERON:2002224 pleuroperitoneal cavity 3 49715 -UBERON:2005338 posterior recess 3 49716 -UBERON:3000539 recessus marsupiatus of premaxilla 3 49717 -UBERON:3000540 recessus vaginiformis 3 49718 -UBERON:3000581 sulcus dentalis of maxilla 3 49719 -UBERON:3000582 sulcus dentalis of premaxilla 3 49720 -UBERON:3000583 sulcus for Meckels cartilage 3 49721 -UBERON:3000668 hyoglossal sinus 3 49722 -UBERON:3000755 pectoral girdle opening 3 49723 -UBERON:3000776 glenoid foramen 4 49724 -UBERON:3000778 supracoracoid foramen 4 49725 -UBERON:3000779 pectoral fenestra 4 49726 -UBERON:4200076 trunk armor pectoral fenestra 4 49727 -UBERON:3000780 incisura coracoidea 3 49728 -UBERON:3000813 sulcus pro cartilagine praecoracoidealis 3 49729 -UBERON:3000823 sinus interglenoidalis 3 49730 -UBERON:3000833 sinus dorsalis 3 49731 -UBERON:3000915 spatium intertarsale 3 49732 -UBERON:3010197 lateral recess 3 49733 -UBERON:3010613 laryngo-tracheal chamber 3 49734 -UBERON:4100115 spiracular notch 3 49735 -UBERON:4200166 hindlimb interepipodial space 3 49736 -UBERON:4300005 aphakic space 3 49737 -UBERON:0001149 bare area of liver 2 49738 -UBERON:0002823 clivus of fovea centralis 2 49739 -UBERON:0006983 anatomical point 2 49740 -UBERON:0000221 supraauricular point 3 49741 -UBERON:0002098 apex of heart 3 49742 -UBERON:0012128 nose tip 3 49743 -UBERON:0013403 asterion of skull 3 49744 -UBERON:0013406 bregma 3 49745 -UBERON:0013412 crotaphion 3 49746 -UBERON:0013423 jugal point 3 49747 -UBERON:0013424 anatomical point connecting sagittal and lambdoidal sutures 3 49748 -UBERON:0013426 obelion 3 49749 -UBERON:0013428 ophryon 3 49750 -UBERON:0013436 porion 3 49751 -UBERON:0013459 stephanion 3 49752 -UBERON:0013462 sylvian point 3 49753 -UBERON:0014611 apex of thoracic spinal cord dorsal horn 3 49754 -UBERON:0014622 apex of cervical spinal cord dorsal horn 3 49755 -UBERON:0014632 apex of lumbar spinal cord dorsal horn 3 49756 -UBERON:0016418 nasion 3 49757 -UBERON:0035441 apex of prostate 3 49758 -UBERON:2001840 tip 3 49759 -UBERON:7500033 distal-most point of medial condyle of femur 3 49760 -UBERON:7500034 distal-most point of trochlea of humerus 3 49761 -UBERON:7500035 tip of tail 3 49762 -UBERON:7500039 posterior of pes 3 49763 -UBERON:7500040 tip of nail 3 49764 -UBERON:7500041 tip of digit 3 49765 -UBERON:7500046 proximal-most point of head of femur 3 49766 -UBERON:7500047 proximal-most point of head of humerus 3 49767 -UBERON:7500048 proximal-most point of ventral tubercle of humerus 3 49768 -UBERON:7500049 proximal-most point of greater trochanter of femur 3 49769 -UBERON:0010199 bona-fide anatomical boundary 2 49770 -UBERON:0006984 anatomical surface 3 49771 -UBERON:0035085 anatomical plane 4 49772 -UBERON:0035086 plane of autotomy 5 49773 -UBERON:0035087 fracture plane 6 49774 -UBERON:0035088 vertebral fracture plane 7 49775 -UBERON:0035089 plane of autotomy bisecting joint 6 49776 -UBERON:0035090 plane of autotomy bisecting intervertebral joint 7 49777 -UBERON:0035159 entire surface of organism 4 49778 -UBERON:4100003 articular surface 4 49779 -UBERON:4100007 pectoral articular facet 5 49780 -UBERON:4200044 articular surface for the calcaneum on the astragalus 5 49781 -UBERON:4200045 articular surface for the astragalus on the calcaneum 5 49782 -UBERON:4200050 cotyla 5 49783 -UBERON:0018338 medial cotyla 6 49784 -UBERON:4200089 fibular facet of the calcaneum 5 49785 -UBERON:4200090 fibular facet of the astragalus 5 49786 -UBERON:4200130 tibial facet of astragalus 5 49787 -UBERON:4200230 surface of bone 4 49788 -UBERON:0013420 groove for sigmoid sinus 5 49789 -UBERON:0018316 cuboid facet of calcaneum 5 49790 -UBERON:4100112 radial facet 5 49791 -UBERON:4200013 flexor surface 5 49792 -UBERON:4200044 articular surface for the calcaneum on the astragalus 5 49793 -UBERON:4200045 articular surface for the astragalus on the calcaneum 5 49794 -UBERON:4200089 fibular facet of the calcaneum 5 49795 -UBERON:4200090 fibular facet of the astragalus 5 49796 -UBERON:4200130 tibial facet of astragalus 5 49797 -UBERON:4200192 ulnar facet of the humerus 5 49798 -UBERON:4200203 humeral facet on the ulna 5 49799 -UBERON:4200204 humeral facet on radius 5 49800 -UBERON:4200216 fibula facet of femur 5 49801 -UBERON:4200217 tibial facet of femur 5 49802 -UBERON:4200231 unfinished bone surface 5 49803 -UBERON:4200232 finished bone surface 5 49804 -UBERON:4300038 facet 4 49805 -UBERON:0018316 cuboid facet of calcaneum 5 49806 -UBERON:4200203 humeral facet on the ulna 5 49807 -UBERON:4200204 humeral facet on radius 5 49808 -UBERON:4200214 epipodial facet 5 49809 -UBERON:4100112 radial facet 6 49810 -UBERON:4200192 ulnar facet of the humerus 6 49811 -UBERON:4200216 fibula facet of femur 6 49812 -UBERON:4200217 tibial facet of femur 6 49813 -UBERON:0022294 morphological boundary 3 49814 -UBERON:0022295 integumental surface 4 49815 -UBERON:0000477 anatomical cluster 1 49816 -UBERON:0001058 mushroom body 2 49817 -UBERON:0001556 lower urinary tract 2 49818 -UBERON:0001733 soft palate 2 49819 -UBERON:0002049 vasculature 2 49820 -UBERON:0002200 vasculature of head 3 49821 -UBERON:0002203 vasculature of eye 4 49822 -UBERON:0001776 optic choroid 5 49823 -UBERON:0004118 vasculature of iris 5 49824 -UBERON:0004864 vasculature of retina 5 49825 -UBERON:0007622 pecten oculi 5 49826 -UBERON:0010078 optic choroid vascular plexus 5 49827 -UBERON:0010366 conjunctival vasculature 5 49828 -UBERON:0013398 choroidal gland 5 49829 -UBERON:2005054 inner optic circle 5 49830 -UBERON:0007352 stria vascularis vasculature 4 49831 -UBERON:0011362 cranial blood vasculature 4 49832 -UBERON:0013398 choroidal gland 5 49833 -UBERON:0014685 pterygoid plexus 5 49834 -UBERON:0011363 cranial lymph vasculature 4 49835 -UBERON:0002201 vasculature of trunk 3 49836 -UBERON:0000102 lung vasculature 4 49837 -UBERON:0004889 lobar bronchus vasculature 5 49838 -UBERON:0009536 vascular element of left lung 5 49839 -UBERON:0009537 vascular element of right lung 5 49840 -UBERON:0006544 kidney vasculature 4 49841 -UBERON:0004190 renal glomerulus vasculature 5 49842 -UBERON:0005133 metanephric glomerulus vasculature 6 49843 -UBERON:0005326 mesonephric glomerulus vasculature 6 49844 -UBERON:0010181 straight venules of kidney 5 49845 -UBERON:0035762 capillary network of kidney 5 49846 -UBERON:0035758 peritubular capillary plexus of kidney 6 49847 -UBERON:0006877 vasculature of liver 4 49848 -UBERON:0035756 capillary network of liver 5 49849 -UBERON:0008888 vesical venous plexus 4 49850 -UBERON:0009044 pudendal venous plexus 4 49851 -UBERON:0012239 urinary bladder vasculature 4 49852 -UBERON:0018674 heart vasculature 4 49853 -UBERON:0036301 vasculature of spleen 4 49854 -UBERON:0004374 vitelline vasculature 3 49855 -UBERON:0004522 vasculature of musculoskeletal system 3 49856 -UBERON:0004521 vasculature of muscle organ 4 49857 -UBERON:0004536 lymph vasculature 3 49858 -UBERON:0011363 cranial lymph vasculature 4 49859 -UBERON:2005106 longitudinal lateral lymphatic vessel 4 49860 -UBERON:2005319 intersegmental lymph vessel 4 49861 -UBERON:2005320 dorsal longitudinal lymphatic vessel 4 49862 -UBERON:0004537 blood vasculature 3 49863 -UBERON:0001593 venous plexus 4 49864 -UBERON:0001330 pampiniform plexus 5 49865 -UBERON:0001472 vaginal venous plexus 5 49866 -UBERON:0008887 rectal venous plexus 5 49867 -UBERON:0008888 vesical venous plexus 5 49868 -UBERON:0008889 uterine venous plexus 5 49869 -UBERON:0009042 prostatic venous plexus 5 49870 -UBERON:0009044 pudendal venous plexus 5 49871 -UBERON:0013398 choroidal gland 5 49872 -UBERON:0014685 pterygoid plexus 5 49873 -UBERON:0011362 cranial blood vasculature 4 49874 -UBERON:0013398 choroidal gland 5 49875 -UBERON:0014685 pterygoid plexus 5 49876 -UBERON:0035753 capillary plexus 4 49877 -UBERON:0035754 pulmonary capillary plexus 5 49878 -UBERON:0035755 systemic capillary plexus 5 49879 -UBERON:0035756 capillary network of liver 6 49880 -UBERON:0035757 embryonic capillary plexus 5 49881 -UBERON:0035762 capillary network of kidney 5 49882 -UBERON:0035758 peritubular capillary plexus of kidney 6 49883 -UBERON:2000096 cardinal system 4 49884 -UBERON:0004581 systemic venous system 3 49885 -UBERON:0005629 vascular plexus 3 49886 -UBERON:0001593 venous plexus 4 49887 -UBERON:0001330 pampiniform plexus 5 49888 -UBERON:0001472 vaginal venous plexus 5 49889 -UBERON:0008887 rectal venous plexus 5 49890 -UBERON:0008888 vesical venous plexus 5 49891 -UBERON:0008889 uterine venous plexus 5 49892 -UBERON:0009042 prostatic venous plexus 5 49893 -UBERON:0009044 pudendal venous plexus 5 49894 -UBERON:0013398 choroidal gland 5 49895 -UBERON:0014685 pterygoid plexus 5 49896 -UBERON:0001886 choroid plexus 4 49897 -UBERON:0002288 choroid plexus of third ventricle 5 49898 -UBERON:0002290 choroid plexus of fourth ventricle 5 49899 -UBERON:0002307 choroid plexus of lateral ventricle 5 49900 -UBERON:0007299 choroid plexus of tectal ventricle 5 49901 -UBERON:0005607 hyaloid vascular plexus 4 49902 -UBERON:0009536 vascular element of left lung 4 49903 -UBERON:0009537 vascular element of right lung 4 49904 -UBERON:0010078 optic choroid vascular plexus 4 49905 -UBERON:0010181 straight venules of kidney 4 49906 -UBERON:0005806 portal system 3 49907 -UBERON:0009976 hypothalamo-hypophyseal system 4 49908 -UBERON:0010194 hepatic portal system 4 49909 -UBERON:0010195 renal portal system 4 49910 -UBERON:0006876 vasculature of organ 3 49911 -UBERON:0000102 lung vasculature 4 49912 -UBERON:0004889 lobar bronchus vasculature 5 49913 -UBERON:0009536 vascular element of left lung 5 49914 -UBERON:0009537 vascular element of right lung 5 49915 -UBERON:0001472 vaginal venous plexus 4 49916 -UBERON:0001886 choroid plexus 4 49917 -UBERON:0002288 choroid plexus of third ventricle 5 49918 -UBERON:0002290 choroid plexus of fourth ventricle 5 49919 -UBERON:0002307 choroid plexus of lateral ventricle 5 49920 -UBERON:0007299 choroid plexus of tectal ventricle 5 49921 -UBERON:0002203 vasculature of eye 4 49922 -UBERON:0001776 optic choroid 5 49923 -UBERON:0004118 vasculature of iris 5 49924 -UBERON:0004864 vasculature of retina 5 49925 -UBERON:0007622 pecten oculi 5 49926 -UBERON:0010078 optic choroid vascular plexus 5 49927 -UBERON:0010366 conjunctival vasculature 5 49928 -UBERON:0013398 choroidal gland 5 49929 -UBERON:2005054 inner optic circle 5 49930 -UBERON:0003970 placental labyrinth vasculature 4 49931 -UBERON:0004521 vasculature of muscle organ 4 49932 -UBERON:0006544 kidney vasculature 4 49933 -UBERON:0004190 renal glomerulus vasculature 5 49934 -UBERON:0005133 metanephric glomerulus vasculature 6 49935 -UBERON:0005326 mesonephric glomerulus vasculature 6 49936 -UBERON:0010181 straight venules of kidney 5 49937 -UBERON:0035762 capillary network of kidney 5 49938 -UBERON:0035758 peritubular capillary plexus of kidney 6 49939 -UBERON:0006694 cerebellum vasculature 4 49940 -UBERON:0002290 choroid plexus of fourth ventricle 5 49941 -UBERON:0006877 vasculature of liver 4 49942 -UBERON:0035756 capillary network of liver 5 49943 -UBERON:0007303 pharyngeal vasculature 4 49944 -UBERON:0007352 stria vascularis vasculature 4 49945 -UBERON:0008998 vasculature of brain 4 49946 -UBERON:2005219 choroid plexus vascular circuit 5 49947 -UBERON:0009042 prostatic venous plexus 4 49948 -UBERON:0012239 urinary bladder vasculature 4 49949 -UBERON:0018674 heart vasculature 4 49950 -UBERON:0036301 vasculature of spleen 4 49951 -UBERON:0007204 brachiocephalic vasculature 3 49952 -UBERON:0007304 appendage vasculature 3 49953 -UBERON:0007302 pectoral appendage vasculature 4 49954 -UBERON:2005097 caudal fin vasculature 4 49955 -UBERON:2005098 central ray artery 4 49956 -UBERON:2005099 ray vein 4 49957 -UBERON:2005100 intervessel commissure 4 49958 -UBERON:2005101 interray vessel 4 49959 -UBERON:0007807 connecting stalk vasculature 3 49960 -UBERON:0010204 tail vasculature 3 49961 -UBERON:2001286 caudal vein plexus 4 49962 -UBERON:0013127 pulmonary venous system 3 49963 -UBERON:0013218 rete mirabile 3 49964 -UBERON:0035549 vasculature of integument 3 49965 -UBERON:0035551 deep vasculature 3 49966 -UBERON:0036302 vasculature of central nervous system plus retina 3 49967 -UBERON:0004864 vasculature of retina 4 49968 -UBERON:0036303 vasculature of central nervous system 4 49969 -UBERON:0001886 choroid plexus 5 49970 -UBERON:0002288 choroid plexus of third ventricle 6 49971 -UBERON:0002290 choroid plexus of fourth ventricle 6 49972 -UBERON:0002307 choroid plexus of lateral ventricle 6 49973 -UBERON:0007299 choroid plexus of tectal ventricle 6 49974 -UBERON:0006694 cerebellum vasculature 5 49975 -UBERON:0002290 choroid plexus of fourth ventricle 6 49976 -UBERON:0008998 vasculature of brain 5 49977 -UBERON:2005219 choroid plexus vascular circuit 6 49978 -UBERON:2001073 axial vasculature 3 49979 -UBERON:2005295 axial blood vessel 4 49980 -UBERON:0002303 juxtaglomerular apparatus 2 49981 -UBERON:0004738 metanephric juxtaglomerular apparatus 3 49982 -UBERON:0005320 mesonephric juxtaglomerular apparatus 3 49983 -UBERON:0002486 glottis 2 49984 -UBERON:0003053 ventricular zone 2 49985 -UBERON:0003153 head capsule 2 49986 -UBERON:0003216 hard palate 2 49987 -UBERON:0003683 rotator cuff 2 49988 -UBERON:0003718 muscle spindle 2 49989 -UBERON:0004010 primary muscle spindle 3 49990 -UBERON:0004011 secondary muscle spindle 3 49991 -UBERON:0004105 subungual region 2 49992 -UBERON:0005162 multi cell part structure 2 49993 -UBERON:0000122 neuron projection bundle 3 49994 -UBERON:0001018 axon tract 4 49995 -UBERON:0001020 nervous system commissure 5 49996 -UBERON:0005970 brain commissure 6 49997 -UBERON:0002583 commissure of superior colliculus 7 49998 -UBERON:0003028 commissure of inferior colliculus 7 49999 -UBERON:0011590 commissure of diencephalon 7 50000 -UBERON:0000936 posterior commissure 8 50001 -UBERON:0001909 habenular commissure 8 50002 -UBERON:0002676 ventral supraoptic decussation 8 50003 -UBERON:0002694 anterior hypothalamic commissure 8 50004 -UBERON:0002697 dorsal supraoptic decussation 8 50005 -UBERON:0002991 supramammillary commissure 8 50006 -UBERON:0003936 postoptic commissure 8 50007 -UBERON:0019294 commissure of telencephalon 7 50008 -UBERON:0002473 intercerebral commissure 8 50009 -UBERON:0000935 anterior commissure 9 50010 -UBERON:0002336 corpus callosum 9 50011 -UBERON:0013614 fasciculus aberans 9 50012 -UBERON:0003039 anterior commissure anterior part 8 50013 -UBERON:0003043 posterior part of anterior commissure 8 50014 -UBERON:0005340 dorsal telencephalic commissure 8 50015 -UBERON:0000908 hippocampal commissure 9 50016 -UBERON:0002336 corpus callosum 9 50017 -UBERON:0005341 ventral commissure 8 50018 -UBERON:0000935 anterior commissure 9 50019 -UBERON:0001909 habenular commissure 9 50020 -UBERON:0034763 hindbrain commissure 7 50021 -UBERON:0015250 inferior olivary commissure 8 50022 -UBERON:0006681 interthalamic adhesion 6 50023 -UBERON:0006847 cerebellar commissure 6 50024 -UBERON:0008882 spinal cord commissure 6 50025 -UBERON:0007838 spinal cord white commissure 7 50026 -UBERON:0004170 spinal cord ventral commissure 8 50027 -UBERON:0007834 lumbar spinal cord ventral commissure 9 50028 -UBERON:0007835 sacral spinal cord ventral commissure 9 50029 -UBERON:0007836 cervical spinal cord ventral commissure 9 50030 -UBERON:0007837 thoracic spinal cord ventral commissure 9 50031 -UBERON:0007840 spinal cord dorsal white commissure 8 50032 -UBERON:0002707 corticospinal tract 5 50033 -UBERON:0002753 posterior spinocerebellar tract 5 50034 -UBERON:0002760 ventral corticospinal tract 5 50035 -UBERON:0004171 trigeminothalamic tract 5 50036 -UBERON:0002549 ventral trigeminal tract 6 50037 -UBERON:0002797 dorsal trigeminal tract 6 50038 -UBERON:0004172 pons reticulospinal tract 5 50039 -UBERON:0004173 medulla reticulospinal tract 5 50040 -UBERON:0005413 spinocerebellar tract 5 50041 -UBERON:0005832 cuneate fasciculus 5 50042 -UBERON:0002642 cuneate fasciculus of medulla 6 50043 -UBERON:0005835 cuneate fasciculus of spinal cord 6 50044 -UBERON:0007699 tract of spinal cord 5 50045 -UBERON:0005835 cuneate fasciculus of spinal cord 6 50046 -UBERON:0008882 spinal cord commissure 6 50047 -UBERON:0007838 spinal cord white commissure 7 50048 -UBERON:0004170 spinal cord ventral commissure 8 50049 -UBERON:0007834 lumbar spinal cord ventral commissure 9 50050 -UBERON:0007835 sacral spinal cord ventral commissure 9 50051 -UBERON:0007836 cervical spinal cord ventral commissure 9 50052 -UBERON:0007837 thoracic spinal cord ventral commissure 9 50053 -UBERON:0007840 spinal cord dorsal white commissure 8 50054 -UBERON:0007702 tract of brain 5 50055 -UBERON:0000052 fornix of brain 6 50056 -UBERON:0002164 tectobulbar tract 6 50057 -UBERON:2000296 uncrossed tecto-bulbar tract 7 50058 -UBERON:2000335 crossed tecto-bulbar tract 7 50059 -UBERON:0002265 olfactory tract 6 50060 -UBERON:0034730 olfactory tract linking bulb to ipsilateral dorsal telencephalon 7 50061 -UBERON:0001888 lateral olfactory stria 8 50062 -UBERON:2000238 olfactory tract linking bulb to ipsilateral ventral telencephalon 7 50063 -UBERON:0002549 ventral trigeminal tract 6 50064 -UBERON:0002552 vestibulocerebellar tract 6 50065 -UBERON:0002556 corticotectal tract 6 50066 -UBERON:0002585 central tegmental tract of midbrain 6 50067 -UBERON:0002589 lateral corticospinal tract 6 50068 -UBERON:0002594 dentatothalamic tract 6 50069 -UBERON:0002609 spinothalamic tract of midbrain 6 50070 -UBERON:0002640 cuneocerebellar tract 6 50071 -UBERON:0002642 cuneate fasciculus of medulla 6 50072 -UBERON:0002649 dorsolateral fasciculus of medulla 6 50073 -UBERON:0002666 mesencephalic tract of trigeminal nerve 6 50074 -UBERON:0002671 pallidotegmental fasciculus 6 50075 -UBERON:0002714 rubrospinal tract 6 50076 -UBERON:0002718 solitary tract 6 50077 -UBERON:0002719 spino-olivary tract 6 50078 -UBERON:0002732 longitudinal pontine fibers 6 50079 -UBERON:0002735 transverse pontine fibers 6 50080 -UBERON:0002745 ventral amygdalofugal projection 6 50081 -UBERON:0002752 olivocerebellar tract 6 50082 -UBERON:0002768 vestibulospinal tract 6 50083 -UBERON:0002775 olivocochlear bundle 6 50084 -UBERON:0002783 central tegmental tract of pons 6 50085 -UBERON:0002797 dorsal trigeminal tract 6 50086 -UBERON:0002798 spinothalamic tract of pons 6 50087 -UBERON:0002930 tectopontine tract 6 50088 -UBERON:0002944 spinothalamic tract of medulla 6 50089 -UBERON:0002949 tectospinal tract 6 50090 -UBERON:0002987 anterior spinocerebellar tract 6 50091 -UBERON:0003961 cingulum of brain 6 50092 -UBERON:0022428 cingulate cortex cingulum 7 50093 -UBERON:0022429 temporal cortex cingulum 7 50094 -UBERON:0022430 hippocampus cortex cingulum 7 50095 -UBERON:0005970 brain commissure 6 50096 -UBERON:0002583 commissure of superior colliculus 7 50097 -UBERON:0003028 commissure of inferior colliculus 7 50098 -UBERON:0011590 commissure of diencephalon 7 50099 -UBERON:0000936 posterior commissure 8 50100 -UBERON:0001909 habenular commissure 8 50101 -UBERON:0002676 ventral supraoptic decussation 8 50102 -UBERON:0002694 anterior hypothalamic commissure 8 50103 -UBERON:0002697 dorsal supraoptic decussation 8 50104 -UBERON:0002991 supramammillary commissure 8 50105 -UBERON:0003936 postoptic commissure 8 50106 -UBERON:0019294 commissure of telencephalon 7 50107 -UBERON:0002473 intercerebral commissure 8 50108 -UBERON:0000935 anterior commissure 9 50109 -UBERON:0002336 corpus callosum 9 50110 -UBERON:0013614 fasciculus aberans 9 50111 -UBERON:0003039 anterior commissure anterior part 8 50112 -UBERON:0003043 posterior part of anterior commissure 8 50113 -UBERON:0005340 dorsal telencephalic commissure 8 50114 -UBERON:0000908 hippocampal commissure 9 50115 -UBERON:0002336 corpus callosum 9 50116 -UBERON:0005341 ventral commissure 8 50117 -UBERON:0000935 anterior commissure 9 50118 -UBERON:0001909 habenular commissure 9 50119 -UBERON:0034763 hindbrain commissure 7 50120 -UBERON:0015250 inferior olivary commissure 8 50121 -UBERON:0007703 spinothalamic tract 6 50122 -UBERON:0009643 central tegmental tract 6 50123 -UBERON:0011591 tract of diencephalon 6 50124 -UBERON:0001908 optic tract 7 50125 -UBERON:0002699 supraopticohypophysial tract 7 50126 -UBERON:0002723 mammillary princeps fasciculus 7 50127 -UBERON:0002990 mammillothalamic tract of hypothalamus 7 50128 -UBERON:0003016 postcommissural fornix of brain 7 50129 -UBERON:0006696 mammillothalamic axonal tract 7 50130 -UBERON:0006697 mammillotectal axonal tract 7 50131 -UBERON:0006698 mammillotegmental axonal tract 7 50132 -UBERON:0011590 commissure of diencephalon 7 50133 -UBERON:0000936 posterior commissure 8 50134 -UBERON:0001909 habenular commissure 8 50135 -UBERON:0002676 ventral supraoptic decussation 8 50136 -UBERON:0002694 anterior hypothalamic commissure 8 50137 -UBERON:0002697 dorsal supraoptic decussation 8 50138 -UBERON:0002991 supramammillary commissure 8 50139 -UBERON:0003936 postoptic commissure 8 50140 -UBERON:0025261 thalamic fiber tract 7 50141 -UBERON:0001909 habenular commissure 8 50142 -UBERON:0035570 tectothalamic tract 7 50143 -UBERON:0035595 accessory optic tract 7 50144 -UBERON:0014169 nigrostriatal tract 6 50145 -UBERON:0014539 precommissural fornix of forebrain 6 50146 -UBERON:0014761 spinal trigeminal tract 6 50147 -UBERON:0002715 spinal trigeminal tract of medulla 7 50148 -UBERON:0002800 spinal trigeminal tract of pons 7 50149 -UBERON:0014915 genu of facial nerve 6 50150 -UBERON:0022272 corticobulbar tract 6 50151 -UBERON:0022421 pontocerebellar tract 6 50152 -UBERON:0034931 perforant path 6 50153 -UBERON:0035931 sagittal stratum 6 50154 -UBERON:0022943 reticulospinal tract 5 50155 -UBERON:0023983 central cervical spinocerebellar tract 5 50156 -UBERON:0023984 rostral spinocerebellar tract 5 50157 -UBERON:0035146 tractus sacci vasculosi 5 50158 -UBERON:0036224 corticobulbar and corticospinal tracts 5 50159 -UBERON:0001019 nerve fasciculus 4 50160 -UBERON:0005821 gracile fasciculus 5 50161 -UBERON:0002653 gracile fasciculus of medulla 6 50162 -UBERON:0005826 gracile fasciculus of spinal cord 6 50163 -UBERON:0005832 cuneate fasciculus 5 50164 -UBERON:0002642 cuneate fasciculus of medulla 6 50165 -UBERON:0005835 cuneate fasciculus of spinal cord 6 50166 -UBERON:0005837 fasciculus of spinal cord 5 50167 -UBERON:0005826 gracile fasciculus of spinal cord 6 50168 -UBERON:0005835 cuneate fasciculus of spinal cord 6 50169 -UBERON:0005838 fasciculus of brain 5 50170 -UBERON:0001910 medial forebrain bundle 6 50171 -UBERON:0002138 habenulo-interpeduncular tract 6 50172 -UBERON:0002309 medial longitudinal fasciculus 6 50173 -UBERON:0002660 medial longitudinal fasciculus of midbrain 7 50174 -UBERON:0002750 medial longitudinal fasciculus of medulla 7 50175 -UBERON:0002794 medial longitudinal fasciculus of pons 7 50176 -UBERON:0002642 cuneate fasciculus of medulla 6 50177 -UBERON:0002646 dorsal longitudinal fasciculus of medulla 6 50178 -UBERON:0002653 gracile fasciculus of medulla 6 50179 -UBERON:0002754 predorsal bundle 6 50180 -UBERON:0002793 dorsal longitudinal fasciculus of pons 6 50181 -UBERON:0003005 dorsal longitudinal fasciculus of midbrain 6 50182 -UBERON:0003008 dorsal longitudinal fasciculus of hypothalamus 6 50183 -UBERON:0003044 uncinate fasciculus 6 50184 -UBERON:0003045 dorsal longitudinal fasciculus 6 50185 -UBERON:0022247 forebrain ipsilateral fiber tracts 6 50186 -UBERON:0022248 cerebral nerve fasciculus 6 50187 -UBERON:0013614 fasciculus aberans 7 50188 -UBERON:0022246 superior longitudinal fasciculus 7 50189 -UBERON:0022420 temporal part of superior longitudinal fasciculus 7 50190 -UBERON:0034743 inferior longitudinal fasciculus 7 50191 -UBERON:0034754 occipitofrontal fasciculus 7 50192 -UBERON:0022250 subcallosal fasciculus 8 50193 -UBERON:0034753 inferior occipitofrontal fasciculus 8 50194 -UBERON:0035937 arcuate fasciculus 7 50195 -UBERON:0022254 ventral thalamic fasciculus 6 50196 -UBERON:0014529 lenticular fasciculus 7 50197 -UBERON:0022256 subthalamic fasciculus 6 50198 -UBERON:0022649 habenulo-interpeduncular tract of diencephalon 6 50199 -UBERON:0023740 habenulo-interpeduncular tract of midbrain 6 50200 -UBERON:0001021 nerve 4 50201 -UBERON:0001027 sensory nerve 5 50202 -UBERON:0018406 mental nerve 6 50203 -UBERON:0001322 sciatic nerve 5 50204 -UBERON:0001780 spinal nerve 5 50205 -UBERON:0000962 nerve of cervical vertebra 6 50206 -UBERON:0003726 thoracic nerve 6 50207 -UBERON:0003727 intercostal nerve 6 50208 -UBERON:0005197 segmental spinal nerve 6 50209 -UBERON:0009624 lumbar nerve 6 50210 -UBERON:0009625 sacral nerve 6 50211 -UBERON:0009629 coccygeal nerve 6 50212 -UBERON:0009674 accessory XI nerve spinal component 6 50213 -UBERON:0003430 neck nerve 5 50214 -UBERON:0003436 shoulder nerve 5 50215 -UBERON:0003437 eyelid nerve 5 50216 -UBERON:0022297 palpebral branch of infra-orbital nerve 6 50217 -UBERON:0022296 inferior palpebral branch of infra-orbital nerve 7 50218 -UBERON:0022298 lower eyelid nerve 6 50219 -UBERON:0018408 infra-orbital nerve 7 50220 -UBERON:0022296 inferior palpebral branch of infra-orbital nerve 7 50221 -UBERON:0022299 upper eyelid nerve 6 50222 -UBERON:0003438 iris nerve 5 50223 -UBERON:0022301 long ciliary nerve 6 50224 -UBERON:0022302 short ciliary nerve 6 50225 -UBERON:0003439 nerve of trunk region 5 50226 -UBERON:0003824 nerve of thoracic segment 6 50227 -UBERON:0003432 chest nerve 7 50228 -UBERON:0018679 thoracic splanchnic nerve 7 50229 -UBERON:0001964 least splanchnic nerve 8 50230 -UBERON:0018680 greater splanchnic nerve 8 50231 -UBERON:0018681 lesser splanchnic nerve 8 50232 -UBERON:0003825 nerve of abdominal segment 6 50233 -UBERON:0003429 abdomen nerve 7 50234 -UBERON:0003444 pelvis nerve 7 50235 -UBERON:0011390 pudendal nerve 8 50236 -UBERON:0011391 perineal nerve 8 50237 -UBERON:0019197 dorsal nerve of penis 8 50238 -UBERON:0019198 dorsal nerve of clitoris 8 50239 -UBERON:0003440 limb nerve 5 50240 -UBERON:0003441 forelimb nerve 6 50241 -UBERON:0003433 arm nerve 7 50242 -UBERON:0001148 median nerve 8 50243 -UBERON:0001492 radial nerve 8 50244 -UBERON:0001493 axillary nerve 8 50245 -UBERON:0001494 ulnar nerve 8 50246 -UBERON:0004216 lower arm nerve 8 50247 -UBERON:0004217 upper arm nerve 8 50248 -UBERON:0016430 palmar branch of median nerve 8 50249 -UBERON:0003448 manus nerve 7 50250 -UBERON:0003434 wrist nerve 8 50251 -UBERON:0003447 digit nerve of manus 8 50252 -UBERON:0003442 hindlimb nerve 6 50253 -UBERON:0003431 leg nerve 7 50254 -UBERON:0001267 femoral nerve 8 50255 -UBERON:0001323 tibial nerve 8 50256 -UBERON:0001324 common fibular nerve 8 50257 -UBERON:0002475 saphenous nerve 8 50258 -UBERON:0004214 upper leg nerve 8 50259 -UBERON:0004218 lower leg nerve 8 50260 -UBERON:0015488 sural nerve 8 50261 -UBERON:0035109 plantar nerve 8 50262 -UBERON:0035110 lateral plantar nerve 9 50263 -UBERON:0035111 medial plantar nerve 9 50264 -UBERON:0035207 deep fibular nerve 8 50265 -UBERON:0035526 superficial fibular nerve 8 50266 -UBERON:0003445 pes nerve 7 50267 -UBERON:0003435 pedal digit nerve 8 50268 -UBERON:0003446 ankle nerve 8 50269 -UBERON:0003443 thoracic cavity nerve 5 50270 -UBERON:0001884 phrenic nerve 6 50271 -UBERON:0003724 musculocutaneous nerve 5 50272 -UBERON:0004215 back nerve 5 50273 -UBERON:0004293 parasympathetic nerve 5 50274 -UBERON:0018675 pelvic splanchnic nerve 6 50275 -UBERON:0022302 short ciliary nerve 6 50276 -UBERON:0005430 ansa cervicalis 5 50277 -UBERON:0005465 obturator nerve 5 50278 -UBERON:0006798 efferent nerve 5 50279 -UBERON:0006838 ventral ramus of spinal nerve 5 50280 -UBERON:0006839 dorsal ramus of spinal nerve 5 50281 -UBERON:0010380 enteric nerve 5 50282 -UBERON:0010406 cholinergic enteric nerve 6 50283 -UBERON:0011322 mylohyoid nerve 5 50284 -UBERON:0011779 nerve of head region 5 50285 -UBERON:0000348 ophthalmic nerve 6 50286 -UBERON:3010661 ramus nasalis internus 7 50287 -UBERON:3010665 ramule palatinus 8 50288 -UBERON:0000375 mandibular nerve 6 50289 -UBERON:0000377 maxillary nerve 6 50290 -UBERON:0000929 pharyngeal branch of vagus nerve 6 50291 -UBERON:0000942 frontal nerve (branch of ophthalmic) 6 50292 -UBERON:0001785 cranial nerve 6 50293 -UBERON:0001579 olfactory nerve 7 50294 -UBERON:0001643 oculomotor nerve 7 50295 -UBERON:0001644 trochlear nerve 7 50296 -UBERON:0001645 trigeminal nerve 7 50297 -UBERON:0001646 abducens nerve 7 50298 -UBERON:0001647 facial nerve 7 50299 -UBERON:3010722 ramus palatinus 8 50300 -UBERON:0001648 vestibulocochlear nerve 7 50301 -UBERON:0001649 glossopharyngeal nerve 7 50302 -UBERON:0001650 hypoglossal nerve 7 50303 -UBERON:0001759 vagus nerve 7 50304 -UBERON:3010740 ramus auricularis of the vagus nerve 8 50305 -UBERON:0002924 terminal nerve 7 50306 -UBERON:0008906 lateral line nerve 7 50307 -UBERON:2000175 posterior lateral line nerve 8 50308 -UBERON:2000425 anterior lateral line nerve 8 50309 -UBERON:2001480 dorsal anterior lateral line nerve 8 50310 -UBERON:2001481 ventral anterior lateral line nerve 8 50311 -UBERON:2001482 middle lateral line nerve 8 50312 -UBERON:3010105 anterodorsal lateral line nerve (ADLLN) 8 50313 -UBERON:3010757 ramus superficial ophthalmic 9 50314 -UBERON:3010759 ramus buccal 9 50315 -UBERON:3010109 anteroventral lateral line nerve (AVLLN) 8 50316 -UBERON:3010765 ramus mandibularis externus 9 50317 -UBERON:3010778 jugal ramule 10 50318 -UBERON:3010794 oral ramule 10 50319 -UBERON:3010795 preopercular ramule 10 50320 -UBERON:3010115 posterior lateral line nerve (PLLN) 8 50321 -UBERON:3010801 ramus lateral 9 50322 -UBERON:3010804 ramus ventral 9 50323 -UBERON:3010126 middle lateral line nerve (MLLN) 8 50324 -UBERON:3010796 ramus supraotic 9 50325 -UBERON:3010798 ramulus suprabranchialis anterior 9 50326 -UBERON:3010799 ramulus suprabranchialis posterior 9 50327 -UBERON:0009121 vomeronasal nerve 7 50328 -UBERON:0009673 accessory XI nerve cranial component 7 50329 -UBERON:0009675 chorda tympani branch of facial nerve 7 50330 -UBERON:0003716 recurrent laryngeal nerve 6 50331 -UBERON:0011766 left recurrent laryngeal nerve 7 50332 -UBERON:0011767 right recurrent laryngeal nerve 7 50333 -UBERON:0003721 lingual nerve 6 50334 -UBERON:0003723 vestibular nerve 6 50335 -UBERON:0004116 nerve of tympanic cavity 6 50336 -UBERON:0004727 cochlear nerve 6 50337 -UBERON:0008810 nasopalatine nerve 6 50338 -UBERON:0009009 carotid sinus nerve 6 50339 -UBERON:0011096 lacrimal nerve 6 50340 -UBERON:0011315 digastric branch of facial nerve 6 50341 -UBERON:0011316 nerve to stylohyoid from facial nerve 6 50342 -UBERON:0011317 nerve to stylopharyngeus from glossopharyngeal nerve 6 50343 -UBERON:0011321 masseteric nerve 6 50344 -UBERON:0011326 superior laryngeal nerve 6 50345 -UBERON:0011327 deep temporal nerve 6 50346 -UBERON:0013646 buccal nerve 6 50347 -UBERON:0013647 lateral pterygoid nerve 6 50348 -UBERON:0015161 inferior branch of oculomotor nerve 6 50349 -UBERON:0015162 superior branch of oculomotor nerve 6 50350 -UBERON:0018398 superior alveolar nerve 6 50351 -UBERON:0018401 posterior superior alveolar nerve 7 50352 -UBERON:0035646 anterior superior alveolar nerve 7 50353 -UBERON:0018405 inferior alveolar nerve 6 50354 -UBERON:0018406 mental nerve 6 50355 -UBERON:0018408 infra-orbital nerve 6 50356 -UBERON:0018412 vidian nerve 6 50357 -UBERON:0022297 palpebral branch of infra-orbital nerve 6 50358 -UBERON:0022296 inferior palpebral branch of infra-orbital nerve 7 50359 -UBERON:0022300 nasociliary nerve 6 50360 -UBERON:0022301 long ciliary nerve 6 50361 -UBERON:0022302 short ciliary nerve 6 50362 -UBERON:0034725 pterygopalatine nerve 6 50363 -UBERON:0034728 autonomic nerve 6 50364 -UBERON:0035648 nerve innervating pinna 6 50365 -UBERON:0008833 great auricular nerve 7 50366 -UBERON:0035647 posterior auricular nerve 7 50367 -UBERON:0036143 meningeal branch of mandibular nerve 6 50368 -UBERON:0036216 tympanic nerve 6 50369 -UBERON:0036264 zygomaticotemporal nerve 6 50370 -UBERON:2005144 ampullary nerve 6 50371 -UBERON:3010652 ramules nasalis lateralis 6 50372 -UBERON:3010668 ramules cutaneous 6 50373 -UBERON:3010669 trunk maxillary-mandibularis 6 50374 -UBERON:3010764 laryngeus ventralis 6 50375 -UBERON:0017641 meningeal branch of spinal nerve 5 50376 -UBERON:0017642 communicating branch of spinal nerve 5 50377 -UBERON:0034729 sympathetic nerve 5 50378 -UBERON:0003715 splanchnic nerve 6 50379 -UBERON:0018675 pelvic splanchnic nerve 7 50380 -UBERON:0018679 thoracic splanchnic nerve 7 50381 -UBERON:0001964 least splanchnic nerve 8 50382 -UBERON:0018680 greater splanchnic nerve 8 50383 -UBERON:0018681 lesser splanchnic nerve 8 50384 -UBERON:0018683 lumbar splanchnic nerve 7 50385 -UBERON:0018684 sacral splanchnic nerve 7 50386 -UBERON:0034984 nerve to quadratus femoris 5 50387 -UBERON:0035642 laryngeal nerve 5 50388 -UBERON:0002019 accessory XI nerve 6 50389 -UBERON:0003716 recurrent laryngeal nerve 6 50390 -UBERON:0011766 left recurrent laryngeal nerve 7 50391 -UBERON:0011767 right recurrent laryngeal nerve 7 50392 -UBERON:0011326 superior laryngeal nerve 6 50393 -UBERON:0035649 nerve of penis 5 50394 -UBERON:0019197 dorsal nerve of penis 6 50395 -UBERON:0035650 nerve of clitoris 5 50396 -UBERON:0019198 dorsal nerve of clitoris 6 50397 -UBERON:0035652 fibular nerve 5 50398 -UBERON:0001324 common fibular nerve 6 50399 -UBERON:0035207 deep fibular nerve 6 50400 -UBERON:0035526 superficial fibular nerve 6 50401 -UBERON:2002010 hyoideomandibular nerve 5 50402 -UBERON:0002211 nerve root 4 50403 -UBERON:0006843 root of cranial nerve 5 50404 -UBERON:0002618 root of trochlear nerve 6 50405 -UBERON:0002668 oculomotor nerve root 6 50406 -UBERON:0002731 vestibulocochlear nerve root 6 50407 -UBERON:0002786 root of abducens nerve 6 50408 -UBERON:0009908 caudal root of abducens nerve 7 50409 -UBERON:0009909 rostral root of abducens nerve 7 50410 -UBERON:0004673 trigeminal nerve root 6 50411 -UBERON:0002796 motor root of trigeminal nerve 7 50412 -UBERON:0009907 sensory root of trigeminal nerve 7 50413 -UBERON:0004674 facial nerve root 6 50414 -UBERON:0001699 sensory root of facial nerve 7 50415 -UBERON:0010287 motor root of facial nerve 7 50416 -UBERON:0004675 hypoglossal nerve root 6 50417 -UBERON:0009906 root of optic nerve 6 50418 -UBERON:0019310 glossopharyngeal nerve root 6 50419 -UBERON:0009623 spinal nerve root 5 50420 -UBERON:0002260 ventral root of spinal cord 6 50421 -UBERON:0014634 ventral nerve root of cervical spinal cord 7 50422 -UBERON:0002261 dorsal root of spinal cord 6 50423 -UBERON:0014635 dorsal nerve root of cervical spinal cord 7 50424 -UBERON:0009630 root of thoracic nerve 6 50425 -UBERON:0014616 dorsal nerve root of thoracic spinal cord 7 50426 -UBERON:0014617 ventral nerve root of thoracic spinal cord 7 50427 -UBERON:0009631 root of lumbar spinal nerve 6 50428 -UBERON:0024382 ventral nerve root of lumbar spinal cord 7 50429 -UBERON:0026006 dorsal nerve root of lumbar spinal cord 7 50430 -UBERON:0009632 root of cervical nerve 6 50431 -UBERON:0014634 ventral nerve root of cervical spinal cord 7 50432 -UBERON:0014635 dorsal nerve root of cervical spinal cord 7 50433 -UBERON:0009633 root of sacral nerve 6 50434 -UBERON:0022941 dorsal nerve root of sacral spinal cord 7 50435 -UBERON:0023623 ventral nerve root of sacral spinal cord 7 50436 -UBERON:0009634 root of coccygeal nerve 6 50437 -UBERON:0011213 root of vagus nerve 5 50438 -UBERON:0014615 accessory nerve root 5 50439 -UBERON:0014641 terminal nerve root 5 50440 -UBERON:0019311 root of olfactory nerve 5 50441 -UBERON:0002464 nerve trunk 4 50442 -UBERON:0002004 trunk of sciatic nerve 5 50443 -UBERON:0002442 axillary nerve trunk 5 50444 -UBERON:0003535 vagus X nerve trunk 5 50445 -UBERON:0035020 left vagus X nerve trunk 6 50446 -UBERON:0035021 right vagus X nerve trunk 6 50447 -UBERON:0004295 sympathetic nerve trunk 5 50448 -UBERON:0004863 thoracic sympathetic nerve trunk 6 50449 -UBERON:0009646 lumbar sympathetic nerve trunk 6 50450 -UBERON:0034901 cervical sympathetic nerve trunk 6 50451 -UBERON:0034902 sacral sympathetic nerve trunk 6 50452 -UBERON:0005476 spinal nerve trunk 5 50453 -UBERON:0001889 trunk of phrenic nerve 6 50454 -UBERON:0002327 trunk of intercostal nerve 6 50455 -UBERON:0035022 trunk of segmental spinal nerve 6 50456 -UBERON:0002580 brachium of superior colliculus 4 50457 -UBERON:0002741 diagonal band of Broca 4 50458 -UBERON:0003001 nervous system lemniscus 4 50459 -UBERON:0002658 medial lemniscus of midbrain 5 50460 -UBERON:0002748 medial lemniscus of medulla 5 50461 -UBERON:0002953 lateral lemniscus 5 50462 -UBERON:0002958 medial lemniscus of pons 5 50463 -UBERON:0003002 medial lemniscus 5 50464 -UBERON:0003010 lateral pes lemniscus 5 50465 -UBERON:0003025 brachium of inferior colliculus 4 50466 -UBERON:0004904 neuron projection bundle connecting eye with brain 4 50467 -UBERON:0006087 internal arcuate fiber bundle 4 50468 -UBERON:0006089 dorsal external arcuate fiber bundle 4 50469 -UBERON:0006090 glossopharyngeal nerve fiber bundle 4 50470 -UBERON:0006097 ventral external arcuate fiber bundle 4 50471 -UBERON:0006115 posterior column of fornix 4 50472 -UBERON:0006116 vagal nerve fiber bundle 4 50473 -UBERON:0006117 accessory nerve fiber bundle 4 50474 -UBERON:0006133 funiculus of neuraxis 4 50475 -UBERON:0006127 funiculus of spinal cord 5 50476 -UBERON:0002179 lateral funiculus of spinal cord 6 50477 -UBERON:0002180 ventral funiculus of spinal cord 6 50478 -UBERON:0002258 dorsal funiculus of spinal cord 6 50479 -UBERON:0007418 neural decussation 4 50480 -UBERON:0002588 decussation of superior cerebellar peduncle 5 50481 -UBERON:0002615 ventral tegmental decussation 5 50482 -UBERON:0002643 decussation of medial lemniscus 5 50483 -UBERON:0002755 pyramidal decussation 5 50484 -UBERON:0002787 decussation of trochlear nerve 5 50485 -UBERON:0003009 dorsal tegmental decussation 5 50486 -UBERON:0007425 decussation of diencephalon 5 50487 -UBERON:0000959 optic chiasma 6 50488 -UBERON:0013201 olfactory pathway 4 50489 -UBERON:0018237 dorsal column-medial lemniscus pathway 4 50490 -UBERON:0022271 corticopontine fibers 4 50491 -UBERON:0034713 cranial neuron projection bundle 4 50492 -UBERON:0000941 cranial nerve II 5 50493 -UBERON:0001785 cranial nerve 5 50494 -UBERON:0001579 olfactory nerve 6 50495 -UBERON:0001643 oculomotor nerve 6 50496 -UBERON:0001644 trochlear nerve 6 50497 -UBERON:0001645 trigeminal nerve 6 50498 -UBERON:0001646 abducens nerve 6 50499 -UBERON:0001647 facial nerve 6 50500 -UBERON:3010722 ramus palatinus 7 50501 -UBERON:0001648 vestibulocochlear nerve 6 50502 -UBERON:0001649 glossopharyngeal nerve 6 50503 -UBERON:0001650 hypoglossal nerve 6 50504 -UBERON:0001759 vagus nerve 6 50505 -UBERON:3010740 ramus auricularis of the vagus nerve 7 50506 -UBERON:0002924 terminal nerve 6 50507 -UBERON:0008906 lateral line nerve 6 50508 -UBERON:2000175 posterior lateral line nerve 7 50509 -UBERON:2000425 anterior lateral line nerve 7 50510 -UBERON:2001480 dorsal anterior lateral line nerve 7 50511 -UBERON:2001481 ventral anterior lateral line nerve 7 50512 -UBERON:2001482 middle lateral line nerve 7 50513 -UBERON:3010105 anterodorsal lateral line nerve (ADLLN) 7 50514 -UBERON:3010757 ramus superficial ophthalmic 8 50515 -UBERON:3010759 ramus buccal 8 50516 -UBERON:3010109 anteroventral lateral line nerve (AVLLN) 7 50517 -UBERON:3010765 ramus mandibularis externus 8 50518 -UBERON:3010778 jugal ramule 9 50519 -UBERON:3010794 oral ramule 9 50520 -UBERON:3010795 preopercular ramule 9 50521 -UBERON:3010115 posterior lateral line nerve (PLLN) 7 50522 -UBERON:3010801 ramus lateral 8 50523 -UBERON:3010804 ramus ventral 8 50524 -UBERON:3010126 middle lateral line nerve (MLLN) 7 50525 -UBERON:3010796 ramus supraotic 8 50526 -UBERON:3010798 ramulus suprabranchialis anterior 8 50527 -UBERON:3010799 ramulus suprabranchialis posterior 8 50528 -UBERON:0009121 vomeronasal nerve 6 50529 -UBERON:0009673 accessory XI nerve cranial component 6 50530 -UBERON:0009675 chorda tympani branch of facial nerve 6 50531 -UBERON:0034714 epiphyseal tract 5 50532 -UBERON:0034715 pineal tract 5 50533 -UBERON:0034716 rostral epiphyseal tract 5 50534 -UBERON:0034896 ansa peduncularis 4 50535 -UBERON:0035924 radiation of corpus callosum 4 50536 -UBERON:0000347 entire myelin sheath 3 50537 -UBERON:0004062 neural tube marginal layer 3 50538 -UBERON:0034709 hindbrain marginal layer 4 50539 -UBERON:0034708 cerebellum marginal layer 5 50540 -UBERON:0006134 nerve fiber 3 50541 -UBERON:0003041 trigeminal nerve fibers 4 50542 -UBERON:0011924 postganglionic autonomic fiber 5 50543 -UBERON:0011926 postganglionic sympathetic fiber 6 50544 -UBERON:0011929 postganglionic parasympathetic fiber 6 50545 -UBERON:0011925 preganglionic autonomic fiber 5 50546 -UBERON:0011927 preganglionic sympathetic fiber 6 50547 -UBERON:0011930 preganglionic parasympathetic fiber 6 50548 -UBERON:0003965 sympathetic afferent fiber 4 50549 -UBERON:0006135 myelinated nerve fiber 4 50550 -UBERON:0006136 unmyelinated nerve fiber 4 50551 -UBERON:0011215 central nervous system cell part cluster 3 50552 -UBERON:0000125 neural nucleus 4 50553 -UBERON:0002308 nucleus of brain 5 50554 -UBERON:0000126 cranial nerve nucleus 6 50555 -UBERON:0000127 facial nucleus 7 50556 -UBERON:0003011 facial motor nucleus 8 50557 -UBERON:0002149 superior salivatory nucleus 7 50558 -UBERON:0002682 abducens nucleus 7 50559 -UBERON:0002722 trochlear nucleus 7 50560 -UBERON:0002871 hypoglossal nucleus 7 50561 -UBERON:0002872 inferior salivatory nucleus 7 50562 -UBERON:0002925 trigeminal nucleus 7 50563 -UBERON:0002633 motor nucleus of trigeminal nerve 8 50564 -UBERON:2000502 dorsal motor nucleus trigeminal nerve 9 50565 -UBERON:2000703 ventral motor nucleus trigeminal nerve 9 50566 -UBERON:0004132 trigeminal sensory nucleus 8 50567 -UBERON:0001717 spinal nucleus of trigeminal nerve 9 50568 -UBERON:0001718 mesencephalic nucleus of trigeminal nerve 9 50569 -UBERON:0002597 principal sensory nucleus of trigeminal nerve 9 50570 -UBERON:2000222 isthmic primary nucleus 9 50571 -UBERON:2000245 nucleus of the descending root 9 50572 -UBERON:2000399 secondary gustatory nucleus trigeminal nuclei 9 50573 -UBERON:2000997 medial funicular nucleus trigeminal nuclei 9 50574 -UBERON:0011775 vagus nerve nucleus 7 50575 -UBERON:0001719 nucleus ambiguus 8 50576 -UBERON:0002868 commissural nucleus of vagus nerve 8 50577 -UBERON:0009050 nucleus of solitary tract 8 50578 -UBERON:0009051 gelatinous nucleus of solitary tract 9 50579 -UBERON:0009052 medial nucleus of solitary tract 9 50580 -UBERON:0014760 gustatory nucleus 9 50581 -UBERON:0019312 ventrolateral nucleus of solitary tract 9 50582 -UBERON:0023390 medial subnucleus of solitary tract 9 50583 -UBERON:0023855 commissural nucleus of the solitary tract 9 50584 -UBERON:0035575 paracommissural nucleus of solitary tract 9 50585 -UBERON:0011778 motor nucleus of vagal nerve 8 50586 -UBERON:0002870 dorsal motor nucleus of vagus nerve 9 50587 -UBERON:0020358 accessory XI nerve nucleus 7 50588 -UBERON:2000401 octaval nerve sensory nucleus 7 50589 -UBERON:2000274 rostral octaval nerve sensory nucleus 8 50590 -UBERON:2000322 caudal octaval nerve sensory nucleus 8 50591 -UBERON:2000540 magnocellular octaval nucleus 8 50592 -UBERON:2000645 descending octaval nucleus 8 50593 -UBERON:2000693 tangential nucleus 8 50594 -UBERON:2002174 octaval nerve motor nucleus 7 50595 -UBERON:2002175 rostral octaval nerve motor nucleus 8 50596 -UBERON:2002176 caudal octaval nerve motor nucleus 8 50597 -UBERON:0002322 periventricular nucleus 6 50598 -UBERON:0002587 nucleus subceruleus 6 50599 -UBERON:0002997 nucleus of medial eminence 6 50600 -UBERON:0003026 limitans nucleus 6 50601 -UBERON:0003033 suprageniculate nucleus of thalamus 6 50602 -UBERON:0006331 brainstem nucleus 6 50603 -UBERON:0000127 facial nucleus 7 50604 -UBERON:0003011 facial motor nucleus 8 50605 -UBERON:0001718 mesencephalic nucleus of trigeminal nerve 7 50606 -UBERON:0001947 red nucleus 7 50607 -UBERON:0002044 ventral nucleus of posterior commissure 7 50608 -UBERON:0002047 pontine raphe nucleus 7 50609 -UBERON:0002141 parvocellular oculomotor nucleus 7 50610 -UBERON:0002143 dorsal tegmental nucleus 7 50611 -UBERON:0002144 peripeduncular nucleus 7 50612 -UBERON:0002145 interpeduncular nucleus 7 50613 -UBERON:0002147 reticulotegmental nucleus 7 50614 -UBERON:0002148 locus ceruleus 7 50615 -UBERON:0002151 pontine nuclear group 7 50616 -UBERON:0002267 laterodorsal tegmental nucleus 7 50617 -UBERON:0002438 ventral tegmental nucleus 7 50618 -UBERON:0002551 interstitial nucleus of Cajal 7 50619 -UBERON:0002557 linear nucleus 7 50620 -UBERON:0002597 principal sensory nucleus of trigeminal nerve 7 50621 -UBERON:0002604 ventral nucleus of lateral lemniscus 7 50622 -UBERON:0002633 motor nucleus of trigeminal nerve 7 50623 -UBERON:2000502 dorsal motor nucleus trigeminal nerve 8 50624 -UBERON:2000703 ventral motor nucleus trigeminal nerve 8 50625 -UBERON:0002682 abducens nucleus 7 50626 -UBERON:0002701 anterior median oculomotor nucleus 7 50627 -UBERON:0002711 nucleus of posterior commissure 7 50628 -UBERON:0002717 rostral interstitial nucleus of medial longitudinal fasciculus 7 50629 -UBERON:0002722 trochlear nucleus 7 50630 -UBERON:0002934 ventral oculomotor nucleus 7 50631 -UBERON:0002957 caudal central oculomotor nucleus 7 50632 -UBERON:0002960 central oculomotor nucleus 7 50633 -UBERON:0002964 dorsal oculomotor nucleus 7 50634 -UBERON:0002970 intermediate oculomotor nucleus 7 50635 -UBERON:0002975 medial oculomotor nucleus 7 50636 -UBERON:0004133 salivatory nucleus 7 50637 -UBERON:0002149 superior salivatory nucleus 8 50638 -UBERON:0002872 inferior salivatory nucleus 8 50639 -UBERON:0007247 nucleus of superior olivary complex 7 50640 -UBERON:0002779 lateral superior olivary nucleus 8 50641 -UBERON:0002782 medial superior olivary nucleus 8 50642 -UBERON:0002971 periolivary nucleus 8 50643 -UBERON:0016637 lateral periolivary nucleus 9 50644 -UBERON:0002976 preolivary nucleus 8 50645 -UBERON:0007633 nucleus of trapezoid body 8 50646 -UBERON:0002832 ventral nucleus of trapezoid body 9 50647 -UBERON:0002833 medial nucleus of trapezoid body 9 50648 -UBERON:0009053 dorsal nucleus of trapezoid body 9 50649 -UBERON:0016843 lateral nucleus of trapezoid body 8 50650 -UBERON:0022437 dorsal periolivary nucleus 8 50651 -UBERON:0035930 retro-olivary nucleus 8 50652 -UBERON:0007413 nucleus of pontine reticular formation 7 50653 -UBERON:0002963 caudal pontine reticular nucleus 8 50654 -UBERON:0002993 inferior central nucleus 8 50655 -UBERON:0002999 oral pontine reticular nucleus 8 50656 -UBERON:0035976 accessory abducens nucleus 8 50657 -UBERON:0007415 nucleus of midbrain reticular formation 7 50658 -UBERON:0002043 dorsal raphe nucleus 8 50659 -UBERON:0002142 pedunculopontine tegmental nucleus 8 50660 -UBERON:0002696 cuneiform nucleus 8 50661 -UBERON:0002700 subcuneiform nucleus 8 50662 -UBERON:0003004 median raphe nucleus 8 50663 -UBERON:0007632 Barrington's nucleus 7 50664 -UBERON:0007634 parabrachial nucleus 7 50665 -UBERON:0002869 diffuse reticular nucleus 8 50666 -UBERON:0002918 medial parabrachial nucleus 8 50667 -UBERON:0003007 lateral parabrachial nucleus 8 50668 -UBERON:0007635 nucleus of medulla oblongata 7 50669 -UBERON:0001717 spinal nucleus of trigeminal nerve 8 50670 -UBERON:0001719 nucleus ambiguus 8 50671 -UBERON:0001720 cochlear nucleus 8 50672 -UBERON:0002828 ventral cochlear nucleus 9 50673 -UBERON:0002829 dorsal cochlear nucleus 9 50674 -UBERON:0002830 anteroventral cochlear nucleus 9 50675 -UBERON:0002831 posteroventral cochlear nucleus 9 50676 -UBERON:0002149 superior salivatory nucleus 8 50677 -UBERON:0002154 lateral reticular nucleus 8 50678 -UBERON:0016633 parvocellular reticular nucleus 9 50679 -UBERON:0002155 gigantocellular nucleus 8 50680 -UBERON:0002156 nucleus raphe magnus 8 50681 -UBERON:0002157 nucleus raphe pallidus 8 50682 -UBERON:0002160 nucleus prepositus 8 50683 -UBERON:0002684 nucleus raphe obscurus 8 50684 -UBERON:0002864 accessory cuneate nucleus 8 50685 -UBERON:0002865 arcuate nucleus of medulla 8 50686 -UBERON:0002868 commissural nucleus of vagus nerve 8 50687 -UBERON:0002870 dorsal motor nucleus of vagus nerve 8 50688 -UBERON:0002871 hypoglossal nucleus 8 50689 -UBERON:0002872 inferior salivatory nucleus 8 50690 -UBERON:0002874 lateral pericuneate nucleus 8 50691 -UBERON:0002875 medial pericuneate nucleus 8 50692 -UBERON:0002876 nucleus intercalatus 8 50693 -UBERON:0002877 parasolitary nucleus 8 50694 -UBERON:0002879 peritrigeminal nucleus 8 50695 -UBERON:0002880 pontobulbar nucleus 8 50696 -UBERON:0002881 sublingual nucleus 8 50697 -UBERON:0002882 supraspinal nucleus 8 50698 -UBERON:0007228 vestibular nucleus 8 50699 -UBERON:0001721 inferior vestibular nucleus 9 50700 -UBERON:0001722 medial vestibular nucleus 9 50701 -UBERON:0007227 superior vestibular nucleus 9 50702 -UBERON:0007230 lateral vestibular nucleus 9 50703 -UBERON:0007244 inferior olivary nucleus 8 50704 -UBERON:0002158 principal inferior olivary nucleus 9 50705 -UBERON:0002159 medial accessory inferior olivary nucleus 9 50706 -UBERON:0007249 dorsal accessory inferior olivary nucleus 9 50707 -UBERON:0013608 inferior olive dorsal accessory nucleus 9 50708 -UBERON:0013609 inferior olive medial accessory nucleus 9 50709 -UBERON:0013610 inferior olive ventral accessory nucleus 9 50710 -UBERON:0035019 inferior olive, beta nucleus 9 50711 -UBERON:0007764 paramedian reticular nucleus 8 50712 -UBERON:0009050 nucleus of solitary tract 8 50713 -UBERON:0009051 gelatinous nucleus of solitary tract 9 50714 -UBERON:0009052 medial nucleus of solitary tract 9 50715 -UBERON:0014760 gustatory nucleus 9 50716 -UBERON:0019312 ventrolateral nucleus of solitary tract 9 50717 -UBERON:0023390 medial subnucleus of solitary tract 9 50718 -UBERON:0023855 commissural nucleus of the solitary tract 9 50719 -UBERON:0035575 paracommissural nucleus of solitary tract 9 50720 -UBERON:0009777 intermediate reticular nucleus 8 50721 -UBERON:0009918 retrotrapezoid nucleus 8 50722 -UBERON:0016635 paragigantocellular nucleus 8 50723 -UBERON:0016824 lateral paragigantocellular nucleus 9 50724 -UBERON:0016825 dorsal paragigantocellular nucleus 9 50725 -UBERON:0016827 dorsal paramedian reticular nucleus 8 50726 -UBERON:0016832 paratrigeminal nucleus 8 50727 -UBERON:0016848 retroambiguus nucleus 8 50728 -UBERON:0018238 dorsal column nucleus 8 50729 -UBERON:0002045 cuneate nucleus 9 50730 -UBERON:0002161 gracile nucleus 9 50731 -UBERON:0018236 nucleus of Bischoff 9 50732 -UBERON:0020358 accessory XI nerve nucleus 8 50733 -UBERON:2000278 secondary gustatory nucleus medulla oblongata 8 50734 -UBERON:2000297 vagal lobe 8 50735 -UBERON:2002192 dorsolateral motor nucleus of vagal nerve 9 50736 -UBERON:2002207 medial motor nucleus of vagal nerve 9 50737 -UBERON:2000372 interpeduncular nucleus medulla oblongata 8 50738 -UBERON:2000381 lateral line sensory nucleus 8 50739 -UBERON:2000291 medial octavolateralis nucleus 9 50740 -UBERON:2000480 caudal octavolateralis nucleus 9 50741 -UBERON:2000389 medial funicular nucleus medulla oblongata 8 50742 -UBERON:2000398 nucleus isthmi 8 50743 -UBERON:2000401 octaval nerve sensory nucleus 8 50744 -UBERON:2000274 rostral octaval nerve sensory nucleus 9 50745 -UBERON:2000322 caudal octaval nerve sensory nucleus 9 50746 -UBERON:2000540 magnocellular octaval nucleus 9 50747 -UBERON:2000645 descending octaval nucleus 9 50748 -UBERON:2000693 tangential nucleus 9 50749 -UBERON:2000512 facial lobe 8 50750 -UBERON:2000523 inferior reticular formation 8 50751 -UBERON:2000551 nucleus lateralis valvulae 8 50752 -UBERON:2000593 superior reticular formation medial column 8 50753 -UBERON:2000710 viscerosensory commissural nucleus of Cajal 8 50754 -UBERON:2000815 nucleus of medial longitudinal fasciculus of medulla 8 50755 -UBERON:2002174 octaval nerve motor nucleus 8 50756 -UBERON:2002175 rostral octaval nerve motor nucleus 9 50757 -UBERON:2002176 caudal octaval nerve motor nucleus 9 50758 -UBERON:0010036 anterior tegmental nucleus 7 50759 -UBERON:0013734 rostral linear nucleus 7 50760 -UBERON:0013737 paranigral nucleus 7 50761 -UBERON:0013738 parabrachial pigmental nucleus 7 50762 -UBERON:0014522 dorsolateral oculomotor nucleus 7 50763 -UBERON:0014645 nucleus H of ventral tegmentum 7 50764 -UBERON:0014646 nucleus K of ventral tegmentum 7 50765 -UBERON:0022424 supragenual nucleus of pontine tegmentum 7 50766 -UBERON:0035973 nucleus incertus 7 50767 -UBERON:2000440 superior raphe nucleus 7 50768 -UBERON:2000629 caudal motor nucleus of abducens 7 50769 -UBERON:2000654 rostral motor nucleus of abducens 7 50770 -UBERON:2000984 superior reticular formation tegmentum 7 50771 -UBERON:0006569 diencephalic nucleus 6 50772 -UBERON:0006568 hypothalamic nucleus 7 50773 -UBERON:0000435 lateral tuberal nucleus 8 50774 -UBERON:0001929 supraoptic nucleus 8 50775 -UBERON:0001930 paraventricular nucleus of hypothalamus 8 50776 -UBERON:0001931 lateral preoptic nucleus 8 50777 -UBERON:0001932 arcuate nucleus of hypothalamus 8 50778 -UBERON:0001934 dorsomedial nucleus of hypothalamus 8 50779 -UBERON:0001935 ventromedial nucleus of hypothalamus 8 50780 -UBERON:0001936 tuberomammillary nucleus 8 50781 -UBERON:0001937 lateral hypothalamic nucleus 8 50782 -UBERON:0001938 lateral mammillary nucleus 8 50783 -UBERON:0001939 medial mammillary nucleus 8 50784 -UBERON:0001940 supramammillary nucleus 8 50785 -UBERON:0002034 suprachiasmatic nucleus 8 50786 -UBERON:0002035 medial preoptic nucleus 8 50787 -UBERON:0002274 perifornical nucleus 8 50788 -UBERON:0002690 anteroventral periventricular nucleus 8 50789 -UBERON:0002706 posterior nucleus of hypothalamus 8 50790 -UBERON:0002708 posterior periventricular nucleus 8 50791 -UBERON:0002712 premammillary nucleus 8 50792 -UBERON:0007767 dorsal premammillary nucleus 9 50793 -UBERON:0007768 ventral premammillary nucleus 9 50794 -UBERON:0002746 intermediate periventricular nucleus 8 50795 -UBERON:0014650 dorsal hypothalamic nucleus 8 50796 -UBERON:0014665 nucleus preopticus 8 50797 -UBERON:0014666 nucleus recessus preopticus 8 50798 -UBERON:0014667 periventricular nucleus of hypothalamus 8 50799 -UBERON:0024079 tuberal supraoptic nucleus 8 50800 -UBERON:0035596 circular nucleus of antherior hypothalamic nucleus 8 50801 -UBERON:0036177 nucleus recessus 8 50802 -UBERON:0014663 nucleus recessus lateralis 9 50803 -UBERON:0014664 nucleus recessus posterioris 9 50804 -UBERON:2000193 diffuse nuclei 8 50805 -UBERON:2000324 caudal periventricular hypothalamus 8 50806 -UBERON:2000485 central nucleus inferior lobe 8 50807 -UBERON:2000581 rostral tuberal nucleus 8 50808 -UBERON:2005339 nucleus of the lateral recess 8 50809 -UBERON:2005340 nucleus of the posterior recess 8 50810 -UBERON:0006848 posterior pretectal nucleus 7 50811 -UBERON:0007251 preoptic nucleus 7 50812 -UBERON:0002034 suprachiasmatic nucleus 8 50813 -UBERON:0002035 medial preoptic nucleus 8 50814 -UBERON:0002622 preoptic periventricular nucleus 8 50815 -UBERON:0002625 median preoptic nucleus 8 50816 -UBERON:0002634 anterior nucleus of hypothalamus 8 50817 -UBERON:0035974 anteroventral preoptic nucleus 8 50818 -UBERON:2000248 magnocellular preoptic nucleus 8 50819 -UBERON:2000426 rostral parvocellular preoptic nucleus 8 50820 -UBERON:2000630 caudal parvocellular preoptic nucleus 8 50821 -UBERON:0007692 nucleus of thalamus 7 50822 -UBERON:0008993 habenular nucleus 8 50823 -UBERON:0001941 lateral habenular nucleus 9 50824 -UBERON:0001942 medial habenular nucleus 9 50825 -UBERON:0015233 nucleus of dorsal thalamus 8 50826 -UBERON:0001906 subthalamic nucleus 9 50827 -UBERON:0001920 paraventricular nucleus of thalamus 9 50828 -UBERON:0000433 posterior paraventricular nucleus of thalamus 10 50829 -UBERON:0000434 anterior paraventricular nucleus of thalamus 10 50830 -UBERON:0001921 reuniens nucleus 9 50831 -UBERON:0001922 parafascicular nucleus 9 50832 -UBERON:0001923 central medial nucleus 9 50833 -UBERON:0001924 paracentral nucleus 9 50834 -UBERON:0001925 ventral lateral nucleus of thalamus 9 50835 -UBERON:0001926 lateral geniculate body 9 50836 -UBERON:0002479 dorsal lateral geniculate nucleus 9 50837 -UBERON:0002480 ventral lateral geniculate nucleus 9 50838 -UBERON:0002596 ventral posterior nucleus of thalamus 9 50839 -UBERON:0002636 lateral pulvinar nucleus 9 50840 -UBERON:0002637 ventral anterior nucleus of thalamus 9 50841 -UBERON:0002638 medial pulvinar nucleus 9 50842 -UBERON:0002641 oral pulvinar nucleus 9 50843 -UBERON:0002679 anterodorsal nucleus of thalamus 9 50844 -UBERON:0002681 anteromedial nucleus of thalamus 9 50845 -UBERON:0002685 anteroventral nucleus of thalamus 9 50846 -UBERON:0002704 metathalamus 9 50847 -UBERON:0002705 midline nuclear group 9 50848 -UBERON:0002733 intralaminar nuclear group 9 50849 -UBERON:0002736 lateral nuclear group of thalamus 9 50850 -UBERON:0002739 medial dorsal nucleus of thalamus 9 50851 -UBERON:0002758 dorsal nucleus of medial geniculate body 9 50852 -UBERON:0002759 magnocellular nucleus of medial geniculate body 9 50853 -UBERON:0002776 ventral nuclear group 9 50854 -UBERON:0002788 anterior nuclear group 9 50855 -UBERON:0002939 ventral posteroinferior nucleus 9 50856 -UBERON:0002942 ventral posterolateral nucleus 9 50857 -UBERON:0002945 ventral posteromedial nucleus of thalamus 9 50858 -UBERON:0002955 rhomboidal nucleus 9 50859 -UBERON:0002959 subfascicular nucleus 9 50860 -UBERON:0002965 rostral intralaminar nuclear group 9 50861 -UBERON:0002972 centromedian nucleus of thalamus 9 50862 -UBERON:0002981 pulvinar nucleus 9 50863 -UBERON:0002982 inferior pulvinar nucleus 9 50864 -UBERON:0002983 lateral posterior nucleus of thalamus 9 50865 -UBERON:0002984 lateral dorsal nucleus 9 50866 -UBERON:0002985 ventral nucleus of medial geniculate body 9 50867 -UBERON:0002992 paratenial nucleus 9 50868 -UBERON:0003030 posterior nucleus of thalamus 9 50869 -UBERON:0003031 submedial nucleus of thalamus 10 50870 -UBERON:0003034 central dorsal nucleus of thalamus 9 50871 -UBERON:0003036 central lateral nucleus 9 50872 -UBERON:0014521 anterodorsal nucleus of medial geniculate body 9 50873 -UBERON:0019295 caudal intralaminar nuclear group 9 50874 -UBERON:0023094 posterodorsal nucleus of medial geniculate body 9 50875 -UBERON:0034993 basal ventral medial nucleus of thalamus 9 50876 -UBERON:2000182 central caudal thalamic nucleus 9 50877 -UBERON:2000647 dorsal caudal thalamic nucleus 9 50878 -UBERON:0015234 nucleus of ventral thalamus 8 50879 -UBERON:0000430 ventral intermediate nucleus of thalamus 9 50880 -UBERON:0000432 endopeduncular nucleus 9 50881 -UBERON:0001903 thalamic reticular nucleus 9 50882 -UBERON:0001906 subthalamic nucleus 9 50883 -UBERON:0001907 zona incerta 9 50884 -UBERON:0001925 ventral lateral nucleus of thalamus 9 50885 -UBERON:0034993 basal ventral medial nucleus of thalamus 9 50886 -UBERON:2000276 rostrolateral thalamic nucleus of Butler & Saidel 9 50887 -UBERON:2000459 ventromedial thalamic nucleus 9 50888 -UBERON:0016641 subparafascicular nucleus 7 50889 -UBERON:0035563 magnocellular superficial pretectal nucleus 7 50890 -UBERON:0035564 parvocellular superficial pretectal nucleus 7 50891 -UBERON:0035565 caudal pretectal nucleus 7 50892 -UBERON:0035567 accessory pretectal nucleus 7 50893 -UBERON:0035569 periventricular pretectal nucleus 7 50894 -UBERON:0035573 dorsal pretectal periventricular nucleus 8 50895 -UBERON:0035574 ventral pretectal periventricular nucleus 8 50896 -UBERON:0035577 paracommissural periventricular pretectal nucleus 8 50897 -UBERON:2000294 torus lateralis 7 50898 -UBERON:2000397 nucleus subglomerulosis 7 50899 -UBERON:2000408 periventricular nucleus of caudal tuberculum 7 50900 -UBERON:2000448 tertiary gustatory nucleus 7 50901 -UBERON:2000475 paraventricular organ 7 50902 -UBERON:2000482 caudal tuberal nucleus 7 50903 -UBERON:2000941 nucleus of the medial longitudinal fasciculus synencephalon 7 50904 -UBERON:2001340 nucleus of the tract of the postoptic commissure 7 50905 -UBERON:2002202 intermediate nucleus 7 50906 -UBERON:2002219 parvocellular preoptic nucleus 7 50907 -UBERON:2000426 rostral parvocellular preoptic nucleus 8 50908 -UBERON:2000630 caudal parvocellular preoptic nucleus 8 50909 -UBERON:2002226 preglomerular nucleus 7 50910 -UBERON:2000209 lateral preglomerular nucleus 8 50911 -UBERON:2000390 medial preglomerular nucleus 8 50912 -UBERON:2000481 caudal preglomerular nucleus 8 50913 -UBERON:2000580 rostral preglomerular nucleus 8 50914 -UBERON:2007002 ventro-rostral cluster 7 50915 -UBERON:0006840 nucleus of lateral lemniscus 6 50916 -UBERON:0002604 ventral nucleus of lateral lemniscus 7 50917 -UBERON:0003006 dorsal nucleus of lateral lemniscus 7 50918 -UBERON:0007710 intermediate nucleus of lateral lemniscus 7 50919 -UBERON:0009661 midbrain nucleus 6 50920 -UBERON:0001718 mesencephalic nucleus of trigeminal nerve 7 50921 -UBERON:0001947 red nucleus 7 50922 -UBERON:0002038 substantia nigra 7 50923 -UBERON:0002044 ventral nucleus of posterior commissure 7 50924 -UBERON:0002141 parvocellular oculomotor nucleus 7 50925 -UBERON:0002143 dorsal tegmental nucleus 7 50926 -UBERON:0002144 peripeduncular nucleus 7 50927 -UBERON:0002145 interpeduncular nucleus 7 50928 -UBERON:0002438 ventral tegmental nucleus 7 50929 -UBERON:0002551 interstitial nucleus of Cajal 7 50930 -UBERON:0002557 linear nucleus 7 50931 -UBERON:0002701 anterior median oculomotor nucleus 7 50932 -UBERON:0002711 nucleus of posterior commissure 7 50933 -UBERON:0002717 rostral interstitial nucleus of medial longitudinal fasciculus 7 50934 -UBERON:0002722 trochlear nucleus 7 50935 -UBERON:0002934 ventral oculomotor nucleus 7 50936 -UBERON:0002957 caudal central oculomotor nucleus 7 50937 -UBERON:0002960 central oculomotor nucleus 7 50938 -UBERON:0002964 dorsal oculomotor nucleus 7 50939 -UBERON:0002970 intermediate oculomotor nucleus 7 50940 -UBERON:0002975 medial oculomotor nucleus 7 50941 -UBERON:0007415 nucleus of midbrain reticular formation 7 50942 -UBERON:0002043 dorsal raphe nucleus 8 50943 -UBERON:0002142 pedunculopontine tegmental nucleus 8 50944 -UBERON:0002696 cuneiform nucleus 8 50945 -UBERON:0002700 subcuneiform nucleus 8 50946 -UBERON:0003004 median raphe nucleus 8 50947 -UBERON:0010036 anterior tegmental nucleus 7 50948 -UBERON:0011214 nucleus of midbrain tectum 7 50949 -UBERON:0002140 parabigeminal nucleus 8 50950 -UBERON:0002563 central nucleus of inferior colliculus 8 50951 -UBERON:0002565 olivary pretectal nucleus 8 50952 -UBERON:0002571 external nucleus of inferior colliculus 8 50953 -UBERON:0002572 principal pretectal nucleus 8 50954 -UBERON:0002577 pericentral nucleus of inferior colliculus 8 50955 -UBERON:0002578 sublentiform nucleus 8 50956 -UBERON:0002996 nucleus of optic tract 8 50957 -UBERON:0006119 subbrachial nucleus 8 50958 -UBERON:0023927 subbrachial nucleus of mouse of Franklin and Paxinos 2008 9 50959 -UBERON:0022423 sagulum nucleus 8 50960 -UBERON:0034910 medial pretectal nucleus 8 50961 -UBERON:0034918 anterior pretectal nucleus 8 50962 -UBERON:2000609 ventrolateral nucleus 8 50963 -UBERON:2000826 central nucleus torus semicircularis 8 50964 -UBERON:0013598 accessory nucleus of optic tract 7 50965 -UBERON:0013599 dorsal accessory nucleus of optic tract 8 50966 -UBERON:0013600 lateral accessory nucleus of optic tract 8 50967 -UBERON:0013601 medial accessory nucleus of optic tract 8 50968 -UBERON:0013734 rostral linear nucleus 7 50969 -UBERON:0013737 paranigral nucleus 7 50970 -UBERON:0013738 parabrachial pigmental nucleus 7 50971 -UBERON:0014522 dorsolateral oculomotor nucleus 7 50972 -UBERON:0014645 nucleus H of ventral tegmentum 7 50973 -UBERON:0014646 nucleus K of ventral tegmentum 7 50974 -UBERON:2000984 superior reticular formation tegmentum 7 50975 -UBERON:0009662 hindbrain nucleus 6 50976 -UBERON:0000127 facial nucleus 7 50977 -UBERON:0003011 facial motor nucleus 8 50978 -UBERON:0002047 pontine raphe nucleus 7 50979 -UBERON:0002147 reticulotegmental nucleus 7 50980 -UBERON:0002148 locus ceruleus 7 50981 -UBERON:0002151 pontine nuclear group 7 50982 -UBERON:0002597 principal sensory nucleus of trigeminal nerve 7 50983 -UBERON:0002604 ventral nucleus of lateral lemniscus 7 50984 -UBERON:0002633 motor nucleus of trigeminal nerve 7 50985 -UBERON:2000502 dorsal motor nucleus trigeminal nerve 8 50986 -UBERON:2000703 ventral motor nucleus trigeminal nerve 8 50987 -UBERON:0002682 abducens nucleus 7 50988 -UBERON:0004133 salivatory nucleus 7 50989 -UBERON:0002149 superior salivatory nucleus 8 50990 -UBERON:0002872 inferior salivatory nucleus 8 50991 -UBERON:0007247 nucleus of superior olivary complex 7 50992 -UBERON:0002779 lateral superior olivary nucleus 8 50993 -UBERON:0002782 medial superior olivary nucleus 8 50994 -UBERON:0002971 periolivary nucleus 8 50995 -UBERON:0016637 lateral periolivary nucleus 9 50996 -UBERON:0002976 preolivary nucleus 8 50997 -UBERON:0007633 nucleus of trapezoid body 8 50998 -UBERON:0002832 ventral nucleus of trapezoid body 9 50999 -UBERON:0002833 medial nucleus of trapezoid body 9 51000 -UBERON:0009053 dorsal nucleus of trapezoid body 9 51001 -UBERON:0016843 lateral nucleus of trapezoid body 8 51002 -UBERON:0022437 dorsal periolivary nucleus 8 51003 -UBERON:0035930 retro-olivary nucleus 8 51004 -UBERON:0007413 nucleus of pontine reticular formation 7 51005 -UBERON:0002963 caudal pontine reticular nucleus 8 51006 -UBERON:0002993 inferior central nucleus 8 51007 -UBERON:0002999 oral pontine reticular nucleus 8 51008 -UBERON:0035976 accessory abducens nucleus 8 51009 -UBERON:0007632 Barrington's nucleus 7 51010 -UBERON:0007634 parabrachial nucleus 7 51011 -UBERON:0002869 diffuse reticular nucleus 8 51012 -UBERON:0002918 medial parabrachial nucleus 8 51013 -UBERON:0003007 lateral parabrachial nucleus 8 51014 -UBERON:0007635 nucleus of medulla oblongata 7 51015 -UBERON:0001717 spinal nucleus of trigeminal nerve 8 51016 -UBERON:0001719 nucleus ambiguus 8 51017 -UBERON:0001720 cochlear nucleus 8 51018 -UBERON:0002828 ventral cochlear nucleus 9 51019 -UBERON:0002829 dorsal cochlear nucleus 9 51020 -UBERON:0002830 anteroventral cochlear nucleus 9 51021 -UBERON:0002831 posteroventral cochlear nucleus 9 51022 -UBERON:0002149 superior salivatory nucleus 8 51023 -UBERON:0002154 lateral reticular nucleus 8 51024 -UBERON:0016633 parvocellular reticular nucleus 9 51025 -UBERON:0002155 gigantocellular nucleus 8 51026 -UBERON:0002156 nucleus raphe magnus 8 51027 -UBERON:0002157 nucleus raphe pallidus 8 51028 -UBERON:0002160 nucleus prepositus 8 51029 -UBERON:0002684 nucleus raphe obscurus 8 51030 -UBERON:0002864 accessory cuneate nucleus 8 51031 -UBERON:0002865 arcuate nucleus of medulla 8 51032 -UBERON:0002868 commissural nucleus of vagus nerve 8 51033 -UBERON:0002870 dorsal motor nucleus of vagus nerve 8 51034 -UBERON:0002871 hypoglossal nucleus 8 51035 -UBERON:0002872 inferior salivatory nucleus 8 51036 -UBERON:0002874 lateral pericuneate nucleus 8 51037 -UBERON:0002875 medial pericuneate nucleus 8 51038 -UBERON:0002876 nucleus intercalatus 8 51039 -UBERON:0002877 parasolitary nucleus 8 51040 -UBERON:0002879 peritrigeminal nucleus 8 51041 -UBERON:0002880 pontobulbar nucleus 8 51042 -UBERON:0002881 sublingual nucleus 8 51043 -UBERON:0002882 supraspinal nucleus 8 51044 -UBERON:0007228 vestibular nucleus 8 51045 -UBERON:0001721 inferior vestibular nucleus 9 51046 -UBERON:0001722 medial vestibular nucleus 9 51047 -UBERON:0007227 superior vestibular nucleus 9 51048 -UBERON:0007230 lateral vestibular nucleus 9 51049 -UBERON:0007244 inferior olivary nucleus 8 51050 -UBERON:0002158 principal inferior olivary nucleus 9 51051 -UBERON:0002159 medial accessory inferior olivary nucleus 9 51052 -UBERON:0007249 dorsal accessory inferior olivary nucleus 9 51053 -UBERON:0013608 inferior olive dorsal accessory nucleus 9 51054 -UBERON:0013609 inferior olive medial accessory nucleus 9 51055 -UBERON:0013610 inferior olive ventral accessory nucleus 9 51056 -UBERON:0035019 inferior olive, beta nucleus 9 51057 -UBERON:0007764 paramedian reticular nucleus 8 51058 -UBERON:0009050 nucleus of solitary tract 8 51059 -UBERON:0009051 gelatinous nucleus of solitary tract 9 51060 -UBERON:0009052 medial nucleus of solitary tract 9 51061 -UBERON:0014760 gustatory nucleus 9 51062 -UBERON:0019312 ventrolateral nucleus of solitary tract 9 51063 -UBERON:0023390 medial subnucleus of solitary tract 9 51064 -UBERON:0023855 commissural nucleus of the solitary tract 9 51065 -UBERON:0035575 paracommissural nucleus of solitary tract 9 51066 -UBERON:0009777 intermediate reticular nucleus 8 51067 -UBERON:0009918 retrotrapezoid nucleus 8 51068 -UBERON:0016635 paragigantocellular nucleus 8 51069 -UBERON:0016824 lateral paragigantocellular nucleus 9 51070 -UBERON:0016825 dorsal paragigantocellular nucleus 9 51071 -UBERON:0016827 dorsal paramedian reticular nucleus 8 51072 -UBERON:0016832 paratrigeminal nucleus 8 51073 -UBERON:0016848 retroambiguus nucleus 8 51074 -UBERON:0018238 dorsal column nucleus 8 51075 -UBERON:0002045 cuneate nucleus 9 51076 -UBERON:0002161 gracile nucleus 9 51077 -UBERON:0018236 nucleus of Bischoff 9 51078 -UBERON:0020358 accessory XI nerve nucleus 8 51079 -UBERON:2000278 secondary gustatory nucleus medulla oblongata 8 51080 -UBERON:2000297 vagal lobe 8 51081 -UBERON:2002192 dorsolateral motor nucleus of vagal nerve 9 51082 -UBERON:2002207 medial motor nucleus of vagal nerve 9 51083 -UBERON:2000372 interpeduncular nucleus medulla oblongata 8 51084 -UBERON:2000381 lateral line sensory nucleus 8 51085 -UBERON:2000291 medial octavolateralis nucleus 9 51086 -UBERON:2000480 caudal octavolateralis nucleus 9 51087 -UBERON:2000389 medial funicular nucleus medulla oblongata 8 51088 -UBERON:2000398 nucleus isthmi 8 51089 -UBERON:2000401 octaval nerve sensory nucleus 8 51090 -UBERON:2000274 rostral octaval nerve sensory nucleus 9 51091 -UBERON:2000322 caudal octaval nerve sensory nucleus 9 51092 -UBERON:2000540 magnocellular octaval nucleus 9 51093 -UBERON:2000645 descending octaval nucleus 9 51094 -UBERON:2000693 tangential nucleus 9 51095 -UBERON:2000512 facial lobe 8 51096 -UBERON:2000523 inferior reticular formation 8 51097 -UBERON:2000551 nucleus lateralis valvulae 8 51098 -UBERON:2000593 superior reticular formation medial column 8 51099 -UBERON:2000710 viscerosensory commissural nucleus of Cajal 8 51100 -UBERON:2000815 nucleus of medial longitudinal fasciculus of medulla 8 51101 -UBERON:2002174 octaval nerve motor nucleus 8 51102 -UBERON:2002175 rostral octaval nerve motor nucleus 9 51103 -UBERON:2002176 caudal octaval nerve motor nucleus 9 51104 -UBERON:0008995 nucleus of cerebellar nuclear complex 7 51105 -UBERON:0002132 dentate nucleus 8 51106 -UBERON:0002153 fastigial nucleus 8 51107 -UBERON:0004073 cerebellum interpositus nucleus 8 51108 -UBERON:0002602 emboliform nucleus 9 51109 -UBERON:0002613 cerebellum globose nucleus 9 51110 -UBERON:0011775 vagus nerve nucleus 7 51111 -UBERON:0001719 nucleus ambiguus 8 51112 -UBERON:0002868 commissural nucleus of vagus nerve 8 51113 -UBERON:0009050 nucleus of solitary tract 8 51114 -UBERON:0009051 gelatinous nucleus of solitary tract 9 51115 -UBERON:0009052 medial nucleus of solitary tract 9 51116 -UBERON:0014760 gustatory nucleus 9 51117 -UBERON:0019312 ventrolateral nucleus of solitary tract 9 51118 -UBERON:0023390 medial subnucleus of solitary tract 9 51119 -UBERON:0023855 commissural nucleus of the solitary tract 9 51120 -UBERON:0035575 paracommissural nucleus of solitary tract 9 51121 -UBERON:0011778 motor nucleus of vagal nerve 8 51122 -UBERON:0002870 dorsal motor nucleus of vagus nerve 9 51123 -UBERON:0019314 epifascicular nucleus 7 51124 -UBERON:0022258 endolemniscal nucleus 7 51125 -UBERON:0022424 supragenual nucleus of pontine tegmentum 7 51126 -UBERON:0035973 nucleus incertus 7 51127 -UBERON:2000440 superior raphe nucleus 7 51128 -UBERON:2000629 caudal motor nucleus of abducens 7 51129 -UBERON:2000654 rostral motor nucleus of abducens 7 51130 -UBERON:2002105 electrosensory lateral line lobe 7 51131 -UBERON:0009663 telencephalic nucleus 6 51132 -UBERON:0001873 caudate nucleus 7 51133 -UBERON:0001874 putamen 7 51134 -UBERON:0008884 left putamen 8 51135 -UBERON:0008885 right putamen 8 51136 -UBERON:0001875 globus pallidus 7 51137 -UBERON:0001877 medial septal nucleus 7 51138 -UBERON:0001878 septofimbrial nucleus 7 51139 -UBERON:0001879 nucleus of diagonal band 7 51140 -UBERON:0001880 bed nucleus of stria terminalis 7 51141 -UBERON:0001881 island of Calleja 7 51142 -UBERON:0001882 nucleus accumbens 7 51143 -UBERON:0001883 olfactory tubercle 7 51144 -UBERON:0002263 lentiform nucleus 7 51145 -UBERON:0002266 anterior olfactory nucleus 7 51146 -UBERON:0002667 lateral septal nucleus 7 51147 -UBERON:0002883 central amygdaloid nucleus 7 51148 -UBERON:0002884 intercalated amygdaloid nuclei 7 51149 -UBERON:0002885 accessory basal amygdaloid nucleus 7 51150 -UBERON:0002886 lateral amygdaloid nucleus 7 51151 -UBERON:0002887 basal amygdaloid nucleus 7 51152 -UBERON:0002891 cortical amygdaloid nucleus 7 51153 -UBERON:0002892 medial amygdaloid nucleus 7 51154 -UBERON:0002893 nucleus of lateral olfactory tract 7 51155 -UBERON:0002931 dorsal septal nucleus 7 51156 -UBERON:0002933 nucleus of anterior commissure 7 51157 -UBERON:0002977 triangular septal nucleus 7 51158 -UBERON:0003017 substantia innominata 7 51159 -UBERON:0007351 nucleus isthmo-opticus 7 51160 -UBERON:0007627 magnocellular nucleus of stria terminalis 7 51161 -UBERON:0007630 septohippocampal nucleus 7 51162 -UBERON:0010010 basal nucleus of telencephalon 7 51163 -UBERON:0011175 fusiform nucleus of stria terminalis 7 51164 -UBERON:0011176 oval nucleus of stria terminalis 7 51165 -UBERON:0011178 principal nucleus of stria terminalis 7 51166 -UBERON:0011179 transverse nucleus of stria terminalis 7 51167 -UBERON:0014284 endopiriform nucleus 7 51168 -UBERON:0014742 central nucleus of pallium 7 51169 -UBERON:0019308 septohypothalamic nucleus 7 51170 -UBERON:0022229 posterior amygdaloid nucleus 7 51171 -UBERON:0034894 lateral nucleus of stria terminalis 7 51172 -UBERON:0034895 medial nucleus of stria terminalis 7 51173 -UBERON:0034991 anterior cortical amygdaloid nucleus 7 51174 -UBERON:0034999 posterolateral cortical amygdaloid nucleus 7 51175 -UBERON:0035001 posteromedial cortical amygdaloid nucleus 7 51176 -UBERON:0035785 telencephalic song nucleus HVC 7 51177 -UBERON:0035808 robust nucleus of arcopallium 7 51178 -UBERON:0035977 bed nucleus of the accessory olfactory tract 7 51179 -UBERON:2000176 lateral entopeduncular nucleus 7 51180 -UBERON:0013733 caudal linear nucleus 6 51181 -UBERON:0013736 interfascicular linear nucleus 6 51182 -UBERON:0014450 pretectal nucleus 6 51183 -UBERON:0002565 olivary pretectal nucleus 7 51184 -UBERON:0002572 principal pretectal nucleus 7 51185 -UBERON:0002578 sublentiform nucleus 7 51186 -UBERON:0002996 nucleus of optic tract 7 51187 -UBERON:0034910 medial pretectal nucleus 7 51188 -UBERON:0034918 anterior pretectal nucleus 7 51189 -UBERON:0035562 intermediate pretectal nucleus 7 51190 -UBERON:0035566 central pretectal nucleus 7 51191 -UBERON:0035567 accessory pretectal nucleus 8 51192 -UBERON:2000194 dorsal accessory optic nucleus 8 51193 -UBERON:2000454 ventral accessory optic nucleus 8 51194 -UBERON:0035568 superficial pretectal nucleus 7 51195 -UBERON:0035563 magnocellular superficial pretectal nucleus 8 51196 -UBERON:0035564 parvocellular superficial pretectal nucleus 8 51197 -UBERON:0035565 caudal pretectal nucleus 8 51198 -UBERON:0035569 periventricular pretectal nucleus 7 51199 -UBERON:0035573 dorsal pretectal periventricular nucleus 8 51200 -UBERON:0035574 ventral pretectal periventricular nucleus 8 51201 -UBERON:0035577 paracommissural periventricular pretectal nucleus 8 51202 -UBERON:0035572 nucleus praetectalis profundus 7 51203 -UBERON:0035580 nucleus geniculatus of pretectum 7 51204 -UBERON:0035581 nucleus lentiformis of pretectum 7 51205 -UBERON:0035582 nucleus posteriodorsalis of pretectum 7 51206 -UBERON:0035583 nucleus lentiformis thalamus 7 51207 -UBERON:0035584 ventral pretectal nucleus (sauropsida) 7 51208 -UBERON:0035585 tectal gray nucleus (Testudines) 7 51209 -UBERON:0035586 nucleus lentiformis mesencephali (Aves) 7 51210 -UBERON:0035587 nucleus pretectalis diffusus 7 51211 -UBERON:0035589 nucleus subpretectalis 7 51212 -UBERON:0035590 nucleus interstitio-pretectalis-subpretectalis 7 51213 -UBERON:0035591 lateral spiriform nucleus 7 51214 -UBERON:0035592 medial spiriform nucleus 7 51215 -UBERON:0035593 nucleus circularis of pretectum 7 51216 -UBERON:0035807 area X of basal ganglion 6 51217 -UBERON:0007414 nucleus of midbrain tegmentum 5 51218 -UBERON:0002144 peripeduncular nucleus 6 51219 -UBERON:0002267 laterodorsal tegmental nucleus 6 51220 -UBERON:0002717 rostral interstitial nucleus of medial longitudinal fasciculus 6 51221 -UBERON:0013737 paranigral nucleus 6 51222 -UBERON:0013738 parabrachial pigmental nucleus 6 51223 -UBERON:0011777 nucleus of spinal cord 5 51224 -UBERON:0002175 intermediolateral nucleus 6 51225 -UBERON:0002176 lateral cervical nucleus 6 51226 -UBERON:0002246 dorsal thoracic nucleus 6 51227 -UBERON:0006319 spinal cord reticular nucleus 6 51228 -UBERON:0011776 dorsal commissural nucleus of spinal cord 6 51229 -UBERON:0016850 nucleus of phrenic nerve 6 51230 -UBERON:0018545 nucleus of the bulbocavernosus 6 51231 -UBERON:0022278 nucleus of pudendal nerve 6 51232 -UBERON:0034771 ventral commissural nucleus of spinal cord 6 51233 -UBERON:0035024 lateral spinal nucleus 6 51234 -UBERON:0035145 nucleus sacci vasculosi 5 51235 -UBERON:0000941 cranial nerve II 4 51236 -UBERON:0000956 cerebral cortex 4 51237 -UBERON:0001018 axon tract 4 51238 -UBERON:0001020 nervous system commissure 5 51239 -UBERON:0005970 brain commissure 6 51240 -UBERON:0002583 commissure of superior colliculus 7 51241 -UBERON:0003028 commissure of inferior colliculus 7 51242 -UBERON:0011590 commissure of diencephalon 7 51243 -UBERON:0000936 posterior commissure 8 51244 -UBERON:0001909 habenular commissure 8 51245 -UBERON:0002676 ventral supraoptic decussation 8 51246 -UBERON:0002694 anterior hypothalamic commissure 8 51247 -UBERON:0002697 dorsal supraoptic decussation 8 51248 -UBERON:0002991 supramammillary commissure 8 51249 -UBERON:0003936 postoptic commissure 8 51250 -UBERON:0019294 commissure of telencephalon 7 51251 -UBERON:0002473 intercerebral commissure 8 51252 -UBERON:0000935 anterior commissure 9 51253 -UBERON:0002336 corpus callosum 9 51254 -UBERON:0013614 fasciculus aberans 9 51255 -UBERON:0003039 anterior commissure anterior part 8 51256 -UBERON:0003043 posterior part of anterior commissure 8 51257 -UBERON:0005340 dorsal telencephalic commissure 8 51258 -UBERON:0000908 hippocampal commissure 9 51259 -UBERON:0002336 corpus callosum 9 51260 -UBERON:0005341 ventral commissure 8 51261 -UBERON:0000935 anterior commissure 9 51262 -UBERON:0001909 habenular commissure 9 51263 -UBERON:0034763 hindbrain commissure 7 51264 -UBERON:0015250 inferior olivary commissure 8 51265 -UBERON:0006681 interthalamic adhesion 6 51266 -UBERON:0006847 cerebellar commissure 6 51267 -UBERON:0008882 spinal cord commissure 6 51268 -UBERON:0007838 spinal cord white commissure 7 51269 -UBERON:0004170 spinal cord ventral commissure 8 51270 -UBERON:0007834 lumbar spinal cord ventral commissure 9 51271 -UBERON:0007835 sacral spinal cord ventral commissure 9 51272 -UBERON:0007836 cervical spinal cord ventral commissure 9 51273 -UBERON:0007837 thoracic spinal cord ventral commissure 9 51274 -UBERON:0007840 spinal cord dorsal white commissure 8 51275 -UBERON:0002707 corticospinal tract 5 51276 -UBERON:0002753 posterior spinocerebellar tract 5 51277 -UBERON:0002760 ventral corticospinal tract 5 51278 -UBERON:0004171 trigeminothalamic tract 5 51279 -UBERON:0002549 ventral trigeminal tract 6 51280 -UBERON:0002797 dorsal trigeminal tract 6 51281 -UBERON:0004172 pons reticulospinal tract 5 51282 -UBERON:0004173 medulla reticulospinal tract 5 51283 -UBERON:0005413 spinocerebellar tract 5 51284 -UBERON:0005832 cuneate fasciculus 5 51285 -UBERON:0002642 cuneate fasciculus of medulla 6 51286 -UBERON:0005835 cuneate fasciculus of spinal cord 6 51287 -UBERON:0007699 tract of spinal cord 5 51288 -UBERON:0005835 cuneate fasciculus of spinal cord 6 51289 -UBERON:0008882 spinal cord commissure 6 51290 -UBERON:0007838 spinal cord white commissure 7 51291 -UBERON:0004170 spinal cord ventral commissure 8 51292 -UBERON:0007834 lumbar spinal cord ventral commissure 9 51293 -UBERON:0007835 sacral spinal cord ventral commissure 9 51294 -UBERON:0007836 cervical spinal cord ventral commissure 9 51295 -UBERON:0007837 thoracic spinal cord ventral commissure 9 51296 -UBERON:0007840 spinal cord dorsal white commissure 8 51297 -UBERON:0007702 tract of brain 5 51298 -UBERON:0000052 fornix of brain 6 51299 -UBERON:0002164 tectobulbar tract 6 51300 -UBERON:2000296 uncrossed tecto-bulbar tract 7 51301 -UBERON:2000335 crossed tecto-bulbar tract 7 51302 -UBERON:0002265 olfactory tract 6 51303 -UBERON:0034730 olfactory tract linking bulb to ipsilateral dorsal telencephalon 7 51304 -UBERON:0001888 lateral olfactory stria 8 51305 -UBERON:2000238 olfactory tract linking bulb to ipsilateral ventral telencephalon 7 51306 -UBERON:0002549 ventral trigeminal tract 6 51307 -UBERON:0002552 vestibulocerebellar tract 6 51308 -UBERON:0002556 corticotectal tract 6 51309 -UBERON:0002585 central tegmental tract of midbrain 6 51310 -UBERON:0002589 lateral corticospinal tract 6 51311 -UBERON:0002594 dentatothalamic tract 6 51312 -UBERON:0002609 spinothalamic tract of midbrain 6 51313 -UBERON:0002640 cuneocerebellar tract 6 51314 -UBERON:0002642 cuneate fasciculus of medulla 6 51315 -UBERON:0002649 dorsolateral fasciculus of medulla 6 51316 -UBERON:0002666 mesencephalic tract of trigeminal nerve 6 51317 -UBERON:0002671 pallidotegmental fasciculus 6 51318 -UBERON:0002714 rubrospinal tract 6 51319 -UBERON:0002718 solitary tract 6 51320 -UBERON:0002719 spino-olivary tract 6 51321 -UBERON:0002732 longitudinal pontine fibers 6 51322 -UBERON:0002735 transverse pontine fibers 6 51323 -UBERON:0002745 ventral amygdalofugal projection 6 51324 -UBERON:0002752 olivocerebellar tract 6 51325 -UBERON:0002768 vestibulospinal tract 6 51326 -UBERON:0002775 olivocochlear bundle 6 51327 -UBERON:0002783 central tegmental tract of pons 6 51328 -UBERON:0002797 dorsal trigeminal tract 6 51329 -UBERON:0002798 spinothalamic tract of pons 6 51330 -UBERON:0002930 tectopontine tract 6 51331 -UBERON:0002944 spinothalamic tract of medulla 6 51332 -UBERON:0002949 tectospinal tract 6 51333 -UBERON:0002987 anterior spinocerebellar tract 6 51334 -UBERON:0003961 cingulum of brain 6 51335 -UBERON:0022428 cingulate cortex cingulum 7 51336 -UBERON:0022429 temporal cortex cingulum 7 51337 -UBERON:0022430 hippocampus cortex cingulum 7 51338 -UBERON:0005970 brain commissure 6 51339 -UBERON:0002583 commissure of superior colliculus 7 51340 -UBERON:0003028 commissure of inferior colliculus 7 51341 -UBERON:0011590 commissure of diencephalon 7 51342 -UBERON:0000936 posterior commissure 8 51343 -UBERON:0001909 habenular commissure 8 51344 -UBERON:0002676 ventral supraoptic decussation 8 51345 -UBERON:0002694 anterior hypothalamic commissure 8 51346 -UBERON:0002697 dorsal supraoptic decussation 8 51347 -UBERON:0002991 supramammillary commissure 8 51348 -UBERON:0003936 postoptic commissure 8 51349 -UBERON:0019294 commissure of telencephalon 7 51350 -UBERON:0002473 intercerebral commissure 8 51351 -UBERON:0000935 anterior commissure 9 51352 -UBERON:0002336 corpus callosum 9 51353 -UBERON:0013614 fasciculus aberans 9 51354 -UBERON:0003039 anterior commissure anterior part 8 51355 -UBERON:0003043 posterior part of anterior commissure 8 51356 -UBERON:0005340 dorsal telencephalic commissure 8 51357 -UBERON:0000908 hippocampal commissure 9 51358 -UBERON:0002336 corpus callosum 9 51359 -UBERON:0005341 ventral commissure 8 51360 -UBERON:0000935 anterior commissure 9 51361 -UBERON:0001909 habenular commissure 9 51362 -UBERON:0034763 hindbrain commissure 7 51363 -UBERON:0015250 inferior olivary commissure 8 51364 -UBERON:0007703 spinothalamic tract 6 51365 -UBERON:0009643 central tegmental tract 6 51366 -UBERON:0011591 tract of diencephalon 6 51367 -UBERON:0001908 optic tract 7 51368 -UBERON:0002699 supraopticohypophysial tract 7 51369 -UBERON:0002723 mammillary princeps fasciculus 7 51370 -UBERON:0002990 mammillothalamic tract of hypothalamus 7 51371 -UBERON:0003016 postcommissural fornix of brain 7 51372 -UBERON:0006696 mammillothalamic axonal tract 7 51373 -UBERON:0006697 mammillotectal axonal tract 7 51374 -UBERON:0006698 mammillotegmental axonal tract 7 51375 -UBERON:0011590 commissure of diencephalon 7 51376 -UBERON:0000936 posterior commissure 8 51377 -UBERON:0001909 habenular commissure 8 51378 -UBERON:0002676 ventral supraoptic decussation 8 51379 -UBERON:0002694 anterior hypothalamic commissure 8 51380 -UBERON:0002697 dorsal supraoptic decussation 8 51381 -UBERON:0002991 supramammillary commissure 8 51382 -UBERON:0003936 postoptic commissure 8 51383 -UBERON:0025261 thalamic fiber tract 7 51384 -UBERON:0001909 habenular commissure 8 51385 -UBERON:0035570 tectothalamic tract 7 51386 -UBERON:0035595 accessory optic tract 7 51387 -UBERON:0014169 nigrostriatal tract 6 51388 -UBERON:0014539 precommissural fornix of forebrain 6 51389 -UBERON:0014761 spinal trigeminal tract 6 51390 -UBERON:0002715 spinal trigeminal tract of medulla 7 51391 -UBERON:0002800 spinal trigeminal tract of pons 7 51392 -UBERON:0014915 genu of facial nerve 6 51393 -UBERON:0022272 corticobulbar tract 6 51394 -UBERON:0022421 pontocerebellar tract 6 51395 -UBERON:0034931 perforant path 6 51396 -UBERON:0035931 sagittal stratum 6 51397 -UBERON:0022943 reticulospinal tract 5 51398 -UBERON:0023983 central cervical spinocerebellar tract 5 51399 -UBERON:0023984 rostral spinocerebellar tract 5 51400 -UBERON:0035146 tractus sacci vasculosi 5 51401 -UBERON:0036224 corticobulbar and corticospinal tracts 5 51402 -UBERON:0001059 pars intercerebralis 4 51403 -UBERON:0002020 gray matter 4 51404 -UBERON:0002315 gray matter of spinal cord 5 51405 -UBERON:0004678 apex of spinal cord dorsal horn 6 51406 -UBERON:0006319 spinal cord reticular nucleus 6 51407 -UBERON:0014613 cervical spinal cord gray matter 6 51408 -UBERON:0029626 cervical spinal cord gray commissure 7 51409 -UBERON:0014630 ventral gray commissure of spinal cord 6 51410 -UBERON:0014631 dorsal gray commissure of spinal cord 6 51411 -UBERON:0026293 thoracic spinal cord gray commissure 7 51412 -UBERON:0029626 cervical spinal cord gray commissure 7 51413 -UBERON:0031111 sacral spinal cord gray commissure 7 51414 -UBERON:0033483 lumbar spinal cord gray commissure 7 51415 -UBERON:0014636 thoracic spinal cord gray matter 6 51416 -UBERON:0026293 thoracic spinal cord gray commissure 7 51417 -UBERON:0016610 nucleus proprius of spinal cord 6 51418 -UBERON:0029503 sacral spinal cord gray matter 6 51419 -UBERON:0031111 sacral spinal cord gray commissure 7 51420 -UBERON:0029636 lumbar spinal cord gray matter 6 51421 -UBERON:0033483 lumbar spinal cord gray commissure 7 51422 -UBERON:0003528 brain gray matter 5 51423 -UBERON:0001944 pretectal region 6 51424 -UBERON:0002420 basal ganglion 6 51425 -UBERON:0001876 amygdala 7 51426 -UBERON:0002023 claustrum of brain 7 51427 -UBERON:0006514 pallidum 6 51428 -UBERON:0002778 ventral pallidum 7 51429 -UBERON:0006516 dorsal pallidum 7 51430 -UBERON:0014933 periventricular gray matter 6 51431 -UBERON:0019263 gray matter of hindbrain 6 51432 -UBERON:0002126 solitary tract nuclear complex 7 51433 -UBERON:0002127 inferior olivary complex 7 51434 -UBERON:0002128 superior olivary complex 7 51435 -UBERON:0002129 cerebellar cortex 7 51436 -UBERON:0002130 cerebellar nuclear complex 7 51437 -UBERON:0002559 medullary reticular formation 7 51438 -UBERON:0002573 pontine reticular formation 7 51439 -UBERON:0002591 oral part of spinal trigeminal nucleus 7 51440 -UBERON:0002610 cochlear nuclear complex 7 51441 -UBERON:0002673 vestibular nuclear complex 7 51442 -UBERON:0002692 medullary raphe nuclear complex 7 51443 -UBERON:0002747 neodentate part of dentate nucleus 7 51444 -UBERON:0002866 caudal part of spinal trigeminal nucleus 7 51445 -UBERON:0002867 central gray substance of medulla 7 51446 -UBERON:0002873 interpolar part of spinal trigeminal nucleus 7 51447 -UBERON:0002968 central gray substance of pons 7 51448 -UBERON:0004166 superior reticular formation 7 51449 -UBERON:0006743 paleodentate of dentate nucleus 7 51450 -UBERON:0009775 lateral medullary reticular complex 7 51451 -UBERON:0009776 intermediate reticular formation 7 51452 -UBERON:0016826 paramedian medullary reticular complex 7 51453 -UBERON:0022434 primary superior olive 7 51454 -UBERON:0023378 medullary anterior horn 7 51455 -UBERON:0026541 dorsomedial subnucleus of solitary tract 7 51456 -UBERON:0026663 dorsolateral subnucleus of solitary tract 7 51457 -UBERON:0026666 parvicellular subnucleus of solitary tract 7 51458 -UBERON:0035940 central medullary reticular nuclear complex 7 51459 -UBERON:0019264 gray matter of forebrain 6 51460 -UBERON:0006098 basal nuclear complex 7 51461 -UBERON:0011300 gray matter of telencephalon 7 51462 -UBERON:0002435 striatum 8 51463 -UBERON:0002626 head of caudate nucleus 8 51464 -UBERON:0002628 tail of caudate nucleus 8 51465 -UBERON:0002630 body of caudate nucleus 8 51466 -UBERON:0003020 subcallosal area 8 51467 -UBERON:0005382 dorsal striatum 8 51468 -UBERON:0005401 cerebral hemisphere gray matter 8 51469 -UBERON:0000446 septum of telencephalon 9 51470 -UBERON:0001876 amygdala 9 51471 -UBERON:0002022 insula 9 51472 -UBERON:0002023 claustrum of brain 9 51473 -UBERON:0002136 hilus of dentate gyrus 9 51474 -UBERON:0002476 lateral globus pallidus 9 51475 -UBERON:0002477 medial globus pallidus 9 51476 -UBERON:0002656 periamygdaloid area 9 51477 -UBERON:0002663 septal nuclear complex 9 51478 -UBERON:0007628 lateral septal complex 10 51479 -UBERON:0007629 medial septal complex 10 51480 -UBERON:0002729 claustral amygdaloid area 9 51481 -UBERON:0002778 ventral pallidum 9 51482 -UBERON:0002888 lateral part of basal amygdaloid nucleus 9 51483 -UBERON:0002889 medial part of basal amygdaloid nucleus 9 51484 -UBERON:0002890 anterior amygdaloid area 9 51485 -UBERON:0006107 basolateral amygdaloid nuclear complex 9 51486 -UBERON:0006108 corticomedial nuclear complex 9 51487 -UBERON:0006516 dorsal pallidum 9 51488 -UBERON:0016529 cortex of cerebral lobe 9 51489 -UBERON:0001870 frontal cortex 10 51490 -UBERON:0002810 right frontal lobe 11 51491 -UBERON:0002811 left frontal lobe 11 51492 -UBERON:0016530 parietal cortex 10 51493 -UBERON:0016538 temporal cortex 10 51494 -UBERON:0016540 occipital cortex 10 51495 -UBERON:0016542 limbic cortex 10 51496 -UBERON:0034891 insular cortex 10 51497 -UBERON:0034673 amygdalohippocampal area 9 51498 -UBERON:0005403 ventral striatum 8 51499 -UBERON:0014756 Wulst 8 51500 -UBERON:0019269 gray matter of diencephalon 7 51501 -UBERON:0001927 medial geniculate body 8 51502 -UBERON:0002608 caudal part of ventral lateral nucleus 8 51503 -UBERON:0002614 medial part of ventral lateral nucleus 8 51504 -UBERON:0002617 pars postrema of ventral lateral nucleus 8 51505 -UBERON:0002632 medial part of medial mammillary nucleus 8 51506 -UBERON:0002645 densocellular part of medial dorsal nucleus 8 51507 -UBERON:0002647 magnocellular part of medial dorsal nucleus 8 51508 -UBERON:0002650 paralaminar part of medial dorsal nucleus 8 51509 -UBERON:0002654 parvicellular part of medial dorsal nucleus 8 51510 -UBERON:0002664 lateral part of medial mammillary nucleus 8 51511 -UBERON:0002687 area X of ventral lateral nucleus 8 51512 -UBERON:0002709 posterior nuclear complex of thalamus 8 51513 -UBERON:0002781 caudal part of ventral posterolateral nucleus of thalamus 8 51514 -UBERON:0002935 magnocellular part of ventral anterior nucleus 8 51515 -UBERON:0002937 parvicellular part of ventral anterior nucleus 8 51516 -UBERON:0002978 oral part of ventral lateral nucleus 8 51517 -UBERON:0003018 parvicellular part of ventral posteromedial nucleus 8 51518 -UBERON:0003019 oral part of ventral posterolateral nucleus 8 51519 -UBERON:0003024 principal part of ventral posteromedial nucleus 8 51520 -UBERON:0010225 thalamic complex 8 51521 -UBERON:0035113 central part of mediodorsal nucleus of the thalamus 8 51522 -UBERON:0035114 lateral part of mediodorsal nucleus of the thalamus 8 51523 -UBERON:0019267 gray matter of midbrain 6 51524 -UBERON:0001715 oculomotor nuclear complex 7 51525 -UBERON:0002639 midbrain reticular formation 7 51526 -UBERON:0002936 magnocellular part of red nucleus 7 51527 -UBERON:0002938 parvocellular part of red nucleus 7 51528 -UBERON:0003040 central gray substance of midbrain 7 51529 -UBERON:0014523 oculomotor division of oculomotor nuclear complex 7 51530 -UBERON:0014524 electromotor division of oculomotor nuclear complex 7 51531 -UBERON:0035588 subpretectal complex of Aves 6 51532 -UBERON:0007245 nuclear complex of neuraxis 5 51533 -UBERON:0001715 oculomotor nuclear complex 6 51534 -UBERON:0001927 medial geniculate body 6 51535 -UBERON:0001944 pretectal region 6 51536 -UBERON:0002126 solitary tract nuclear complex 6 51537 -UBERON:0002127 inferior olivary complex 6 51538 -UBERON:0002128 superior olivary complex 6 51539 -UBERON:0002130 cerebellar nuclear complex 6 51540 -UBERON:0002420 basal ganglion 6 51541 -UBERON:0001876 amygdala 7 51542 -UBERON:0002023 claustrum of brain 7 51543 -UBERON:0002559 medullary reticular formation 6 51544 -UBERON:0002573 pontine reticular formation 6 51545 -UBERON:0002639 midbrain reticular formation 6 51546 -UBERON:0002663 septal nuclear complex 6 51547 -UBERON:0007628 lateral septal complex 7 51548 -UBERON:0007629 medial septal complex 7 51549 -UBERON:0002673 vestibular nuclear complex 6 51550 -UBERON:0002692 medullary raphe nuclear complex 6 51551 -UBERON:0002709 posterior nuclear complex of thalamus 6 51552 -UBERON:0004166 superior reticular formation 6 51553 -UBERON:0006098 basal nuclear complex 6 51554 -UBERON:0006107 basolateral amygdaloid nuclear complex 6 51555 -UBERON:0006108 corticomedial nuclear complex 6 51556 -UBERON:0007641 trigeminal nuclear complex 6 51557 -UBERON:0009775 lateral medullary reticular complex 6 51558 -UBERON:0009776 intermediate reticular formation 6 51559 -UBERON:0010225 thalamic complex 6 51560 -UBERON:0014523 oculomotor division of oculomotor nuclear complex 6 51561 -UBERON:0014524 electromotor division of oculomotor nuclear complex 6 51562 -UBERON:0014756 Wulst 6 51563 -UBERON:0016826 paramedian medullary reticular complex 6 51564 -UBERON:0022434 primary superior olive 6 51565 -UBERON:0034673 amygdalohippocampal area 6 51566 -UBERON:0035588 subpretectal complex of Aves 6 51567 -UBERON:0035940 central medullary reticular nuclear complex 6 51568 -UBERON:0010123 future facial nucleus 5 51569 -UBERON:0010124 future inferior salivatory nucleus 5 51570 -UBERON:0010125 future superior salivatory nucleus 5 51571 -UBERON:0010126 future nucleus ambiguus 5 51572 -UBERON:0010285 midbrain basal plate 5 51573 -UBERON:0035011 central gray substance 5 51574 -UBERON:0002867 central gray substance of medulla 6 51575 -UBERON:0002968 central gray substance of pons 6 51576 -UBERON:0003040 central gray substance of midbrain 6 51577 -UBERON:0002301 layer of neocortex 4 51578 -UBERON:0005390 cortical layer I 5 51579 -UBERON:0035153 dorsolateral prefrontal cortex layer 1 6 51580 -UBERON:0005391 cortical layer II 5 51581 -UBERON:0035154 dorsolateral prefrontal cortex layer 2 6 51582 -UBERON:0005392 cortical layer III 5 51583 -UBERON:0035155 dorsolateral prefrontal cortex layer 3 6 51584 -UBERON:0005393 cortical layer IV 5 51585 -UBERON:0035156 dorsolateral prefrontal cortex layer 4 6 51586 -UBERON:0005394 cortical layer V 5 51587 -UBERON:0035157 dorsolateral prefrontal cortex layer 5 6 51588 -UBERON:0005395 cortical layer VI 5 51589 -UBERON:0035158 dorsolateral prefrontal cortex layer 6 6 51590 -UBERON:0022315 primary motor cortex layer 5 5 51591 -UBERON:0022316 primary motor cortex layer 6 5 51592 -UBERON:0023859 primary somatosensory cortex layer 6 5 51593 -UBERON:0034888 primary motor cortex layer 1 5 51594 -UBERON:0035872 primary somatosensory area barrel field layer 5 5 51595 -UBERON:0035873 primary somatosensory area barrel field layer 1 5 51596 -UBERON:0035874 primary somatosensory area barrel field layer 2/3 5 51597 -UBERON:0035875 primary somatosensory area barrel field layer 6b 5 51598 -UBERON:0035876 primary somatosensory area barrel field layer 6a 5 51599 -UBERON:0035877 primary somatosensory area barrel field layer 4 5 51600 -UBERON:0002304 layer of dentate gyrus 4 51601 -UBERON:0002928 dentate gyrus polymorphic layer 5 51602 -UBERON:0002929 dentate gyrus pyramidal layer 5 51603 -UBERON:0004679 dentate gyrus molecular layer 5 51604 -UBERON:0005381 dentate gyrus granule cell layer 5 51605 -UBERON:0022346 dentate gyrus molecular layer middle 5 51606 -UBERON:0022347 dentate gyrus molecular layer inner 5 51607 -UBERON:0022348 dentate gyrus granule cell layer inner blade 5 51608 -UBERON:0022349 dentate gyrus granule cell layer outer blade 5 51609 -UBERON:0002305 layer of hippocampus 4 51610 -UBERON:0002313 hippocampus pyramidal layer 5 51611 -UBERON:0005367 hippocampus granule cell layer 5 51612 -UBERON:0005368 hippocampus molecular layer 5 51613 -UBERON:0005370 hippocampus stratum lacunosum 5 51614 -UBERON:0005371 hippocampus stratum oriens 5 51615 -UBERON:0005372 hippocampus stratum radiatum 5 51616 -UBERON:0007637 hippocampus stratum lucidum 5 51617 -UBERON:0007640 hippocampus stratum lacunosum moleculare 5 51618 -UBERON:0035786 layer of CA1 field 5 51619 -UBERON:0014548 pyramidal layer of CA1 6 51620 -UBERON:0014552 CA1 stratum oriens 6 51621 -UBERON:0014554 CA1 stratum radiatum 6 51622 -UBERON:0014557 CA1 stratum lacunosum moleculare 6 51623 -UBERON:0014570 CA1 alveus 6 51624 -UBERON:0035787 layer of CA2 field 5 51625 -UBERON:0014549 pyramidal layer of CA2 6 51626 -UBERON:0014551 CA2 stratum oriens 6 51627 -UBERON:0014555 CA2 stratum radiatum 6 51628 -UBERON:0014558 CA2 stratum lacunosum moleculare 6 51629 -UBERON:0035802 alveus of CA2 field 6 51630 -UBERON:0035788 layer of CA3 field 5 51631 -UBERON:0014550 pyramidal layer of CA3 6 51632 -UBERON:0014553 CA3 stratum oriens 6 51633 -UBERON:0014556 CA3 stratum radiatum 6 51634 -UBERON:0014559 CA3 stratum lacunosum moleculare 6 51635 -UBERON:0014571 CA3 alveus 6 51636 -UBERON:0002310 hippocampus fimbria 4 51637 -UBERON:0002316 white matter 4 51638 -UBERON:0002317 white matter of cerebellum 5 51639 -UBERON:0027333 arbor vitae 6 51640 -UBERON:2000174 caudal cerebellar tract 6 51641 -UBERON:2000639 commissure of the secondary gustatory nuclei 6 51642 -UBERON:0002318 white matter of spinal cord 5 51643 -UBERON:0014614 cervical spinal cord white matter 6 51644 -UBERON:0014637 thoracic spinal cord white matter 6 51645 -UBERON:0026246 sacral spinal cord white matter 6 51646 -UBERON:0026386 lumbar spinal cord white matter 6 51647 -UBERON:0003544 brain white matter 5 51648 -UBERON:0014891 brainstem white matter 6 51649 -UBERON:0002662 medial pes lemniscus 7 51650 -UBERON:0002941 capsule of red nucleus 7 51651 -UBERON:0007416 cerebellar peduncle 7 51652 -UBERON:0002150 superior cerebellar peduncle 8 51653 -UBERON:0002152 middle cerebellar peduncle 8 51654 -UBERON:0002163 inferior cerebellar peduncle 8 51655 -UBERON:0014649 white matter of medulla oblongata 7 51656 -UBERON:0002163 inferior cerebellar peduncle 8 51657 -UBERON:0002592 juxtarestiform body 8 51658 -UBERON:2000430 secondary gustatory tract 8 51659 -UBERON:2000985 ventral rhombencephalic commissure medulla oblongata 8 51660 -UBERON:0019292 white matter of pons 7 51661 -UBERON:0002152 middle cerebellar peduncle 8 51662 -UBERON:0019293 white matter of pontine tegmentum 8 51663 -UBERON:0002790 dorsal acoustic stria 9 51664 -UBERON:0002932 trapezoid body 9 51665 -UBERON:0002952 intermediate acoustic stria 9 51666 -UBERON:0003046 ventral acoustic stria 9 51667 -UBERON:0016554 white matter of midbrain 6 51668 -UBERON:0002623 cerebral peduncle 7 51669 -UBERON:0002631 cerebral crus 7 51670 -UBERON:0002662 medial pes lemniscus 7 51671 -UBERON:0002941 capsule of red nucleus 7 51672 -UBERON:0019258 white matter of hindbrain 6 51673 -UBERON:0019262 white matter of myelencephalon 7 51674 -UBERON:0014649 white matter of medulla oblongata 8 51675 -UBERON:0002163 inferior cerebellar peduncle 9 51676 -UBERON:0002592 juxtarestiform body 9 51677 -UBERON:2000430 secondary gustatory tract 9 51678 -UBERON:2000985 ventral rhombencephalic commissure medulla oblongata 9 51679 -UBERON:0035938 amiculum of inferior olive 8 51680 -UBERON:0019291 white matter of metencephalon 7 51681 -UBERON:0002568 amiculum of dentate nucleus 8 51682 -UBERON:0002659 superior medullary velum 8 51683 -UBERON:0019292 white matter of pons 8 51684 -UBERON:0002152 middle cerebellar peduncle 9 51685 -UBERON:0019293 white matter of pontine tegmentum 9 51686 -UBERON:0002790 dorsal acoustic stria 10 51687 -UBERON:0002932 trapezoid body 10 51688 -UBERON:0002952 intermediate acoustic stria 10 51689 -UBERON:0003046 ventral acoustic stria 10 51690 -UBERON:0024045 white matter of the cerebellar cortex 8 51691 -UBERON:0019261 white matter of forebrain 6 51692 -UBERON:0003931 diencephalic white matter 7 51693 -UBERON:0002627 capsule of medial geniculate body 8 51694 -UBERON:0002801 stratum zonale of thalamus 8 51695 -UBERON:0006086 stria medullaris 8 51696 -UBERON:0009641 ansa lenticularis 8 51697 -UBERON:0022235 peduncle of diencephalon 8 51698 -UBERON:0002720 mammillary peduncle 9 51699 -UBERON:0022236 peduncle of thalamus 9 51700 -UBERON:0022237 anterior thalamic peduncle 10 51701 -UBERON:0022241 superior thalamic peduncle 10 51702 -UBERON:0022242 inferior thalamic peduncle 10 51703 -UBERON:0022243 posterior thalamic peduncle 10 51704 -UBERON:0034745 radiation of thalamus 8 51705 -UBERON:0034746 anterior thalamic radiation 9 51706 -UBERON:0034747 posterior thalamic radiation 9 51707 -UBERON:2000910 medial forebrain bundle telencephalon 8 51708 -UBERON:2001366 tract of the postoptic commissure 8 51709 -UBERON:0011299 white matter of telencephalon 7 51710 -UBERON:0002437 cerebral hemisphere white matter 8 51711 -UBERON:0000373 tapetum of corpus callosum 9 51712 -UBERON:0001887 internal capsule of telencephalon 9 51713 -UBERON:0002940 anterior column of fornix 9 51714 -UBERON:0003029 stria terminalis 9 51715 -UBERON:0004545 external capsule of telencephalon 9 51716 -UBERON:0004682 corona radiata of neuraxis 9 51717 -UBERON:0008967 centrum semiovale 9 51718 -UBERON:0014525 limb of internal capsule of telencephalon 9 51719 -UBERON:0014526 anterior limb of internal capsule 10 51720 -UBERON:0014527 posterior limb of internal capsule 10 51721 -UBERON:0014528 extreme capsule 9 51722 -UBERON:0015510 body of corpus callosum 9 51723 -UBERON:0015703 rostrum of corpus callosum 9 51724 -UBERON:0015708 splenium of the corpus callosum 9 51725 -UBERON:0016527 white matter of cerebral lobe 9 51726 -UBERON:0016528 white matter of frontal lobe 10 51727 -UBERON:0016531 white matter of parietal lobe 10 51728 -UBERON:0016534 white matter of temporal lobe 10 51729 -UBERON:0022394 posterior parahippocampal white matter 11 51730 -UBERON:0016535 white matter of occipital lobe 10 51731 -UBERON:0016536 white matter of limbic lobe 10 51732 -UBERON:0015793 induseum griseum 11 51733 -UBERON:0015800 taenia tectum of brain 11 51734 -UBERON:0019283 lateral longitudinal stria 11 51735 -UBERON:0022234 medial longitudinal stria 11 51736 -UBERON:0022394 posterior parahippocampal white matter 11 51737 -UBERON:0022260 radiation of cerebral hemisphere 9 51738 -UBERON:0022262 auditory radiation 10 51739 -UBERON:0022264 optic radiation 10 51740 -UBERON:0034746 anterior thalamic radiation 10 51741 -UBERON:0034747 posterior thalamic radiation 10 51742 -UBERON:0035935 Meyer's loop of optic radiation 10 51743 -UBERON:0034676 forceps major of corpus callosum 9 51744 -UBERON:0034678 forceps minor of corpus callosum 9 51745 -UBERON:2000185 commissura rostral, pars ventralis 9 51746 -UBERON:2000638 commissura rostral, pars dorsalis 9 51747 -UBERON:0016555 stria of telencephalon 8 51748 -UBERON:0003029 stria terminalis 9 51749 -UBERON:0015793 induseum griseum 9 51750 -UBERON:0015800 taenia tectum of brain 9 51751 -UBERON:0019283 lateral longitudinal stria 9 51752 -UBERON:0022234 medial longitudinal stria 9 51753 -UBERON:0022237 anterior thalamic peduncle 8 51754 -UBERON:2000597 telencephalic tracts 8 51755 -UBERON:2000779 lateral forebrain bundle telencephalon 9 51756 -UBERON:2000910 medial forebrain bundle telencephalon 9 51757 -UBERON:2002244 supraoptic tract 6 51758 -UBERON:0007417 peduncle of neuraxis 5 51759 -UBERON:0002623 cerebral peduncle 6 51760 -UBERON:0007416 cerebellar peduncle 6 51761 -UBERON:0002150 superior cerebellar peduncle 7 51762 -UBERON:0002152 middle cerebellar peduncle 7 51763 -UBERON:0002163 inferior cerebellar peduncle 7 51764 -UBERON:0022235 peduncle of diencephalon 6 51765 -UBERON:0002720 mammillary peduncle 7 51766 -UBERON:0022236 peduncle of thalamus 7 51767 -UBERON:0022237 anterior thalamic peduncle 8 51768 -UBERON:0022241 superior thalamic peduncle 8 51769 -UBERON:0022242 inferior thalamic peduncle 8 51770 -UBERON:0022243 posterior thalamic peduncle 8 51771 -UBERON:0013199 stria of neuraxis 5 51772 -UBERON:0002790 dorsal acoustic stria 6 51773 -UBERON:0002952 intermediate acoustic stria 6 51774 -UBERON:0003046 ventral acoustic stria 6 51775 -UBERON:0006086 stria medullaris 6 51776 -UBERON:0016555 stria of telencephalon 6 51777 -UBERON:0003029 stria terminalis 7 51778 -UBERON:0015793 induseum griseum 7 51779 -UBERON:0015800 taenia tectum of brain 7 51780 -UBERON:0019283 lateral longitudinal stria 7 51781 -UBERON:0022234 medial longitudinal stria 7 51782 -UBERON:0034734 medial olfactory stria 6 51783 -UBERON:0014932 periventricular white matter 5 51784 -UBERON:0022259 white matter radiation 5 51785 -UBERON:0022260 radiation of cerebral hemisphere 6 51786 -UBERON:0022262 auditory radiation 7 51787 -UBERON:0022264 optic radiation 7 51788 -UBERON:0034746 anterior thalamic radiation 7 51789 -UBERON:0034747 posterior thalamic radiation 7 51790 -UBERON:0035935 Meyer's loop of optic radiation 7 51791 -UBERON:0034745 radiation of thalamus 6 51792 -UBERON:0034746 anterior thalamic radiation 7 51793 -UBERON:0034747 posterior thalamic radiation 7 51794 -UBERON:0035939 amiculum 5 51795 -UBERON:0002568 amiculum of dentate nucleus 6 51796 -UBERON:0035938 amiculum of inferior olive 6 51797 -UBERON:2000318 brainstem and spinal white matter 5 51798 -UBERON:2000579 rostral mesencephalo-cerebellar tract 5 51799 -UBERON:2000643 rostral cerebellar tract 5 51800 -UBERON:2005341 medial longitudinal catecholaminergic tract 5 51801 -UBERON:2005343 endohypothalamic tract 5 51802 -UBERON:2005344 preopticohypothalamic tract 5 51803 -UBERON:2007012 lateral forebrain bundle 5 51804 -UBERON:0002580 brachium of superior colliculus 4 51805 -UBERON:0002606 neuropil 4 51806 -UBERON:0001047 neural glomerulus 5 51807 -UBERON:0005387 olfactory glomerulus 6 51808 -UBERON:0011915 cerebellar glomerulus 6 51809 -UBERON:0011917 thalamic glomerulus 6 51810 -UBERON:0013693 cerebral cortex neuropil 5 51811 -UBERON:0002741 diagonal band of Broca 4 51812 -UBERON:0002742 lamina of septum pellucidum 4 51813 -UBERON:0003001 nervous system lemniscus 4 51814 -UBERON:0002658 medial lemniscus of midbrain 5 51815 -UBERON:0002748 medial lemniscus of medulla 5 51816 -UBERON:0002953 lateral lemniscus 5 51817 -UBERON:0002958 medial lemniscus of pons 5 51818 -UBERON:0003002 medial lemniscus 5 51819 -UBERON:0003010 lateral pes lemniscus 5 51820 -UBERON:0003025 brachium of inferior colliculus 4 51821 -UBERON:0004001 olfactory bulb layer 4 51822 -UBERON:0004186 olfactory bulb mitral cell layer 5 51823 -UBERON:0005377 olfactory bulb glomerular layer 5 51824 -UBERON:0023934 olfactory bulb main glomerular layer 6 51825 -UBERON:0005378 olfactory bulb granule cell layer 5 51826 -UBERON:0005380 olfactory bulb subependymal zone 5 51827 -UBERON:0005978 olfactory bulb outer nerve layer 5 51828 -UBERON:0009950 olfactory bulb plexiform layer 5 51829 -UBERON:0005376 olfactory bulb external plexiform layer 6 51830 -UBERON:0005379 olfactory bulb internal plexiform layer 6 51831 -UBERON:0015244 accessory olfactory bulb granule cell layer 5 51832 -UBERON:0015432 accessory olfactory bulb mitral cell layer 5 51833 -UBERON:0019289 accessory olfactory bulb external plexiform layer 5 51834 -UBERON:0019290 accessory olfactory bulb internal plexiform layer 5 51835 -UBERON:0004130 cerebellar layer 4 51836 -UBERON:0002956 granular layer of cerebellar cortex 5 51837 -UBERON:0008829 cerebellum external granule cell layer 6 51838 -UBERON:0008830 cerebellum internal granule cell layer 6 51839 -UBERON:0002974 molecular layer of cerebellar cortex 5 51840 -UBERON:0002979 Purkinje cell layer of cerebellar cortex 5 51841 -UBERON:0015828 cerebellum ventricular layer 5 51842 -UBERON:0004680 body of fornix 4 51843 -UBERON:0004922 postnatal subventricular zone 4 51844 -UBERON:0005053 primary nerve cord 4 51845 -UBERON:0000934 ventral nerve cord 5 51846 -UBERON:0005054 primary dorsal nerve cord 5 51847 -UBERON:0035602 collar nerve cord 5 51848 -UBERON:0005383 caudate-putamen 4 51849 -UBERON:0005821 gracile fasciculus 4 51850 -UBERON:0002653 gracile fasciculus of medulla 5 51851 -UBERON:0005826 gracile fasciculus of spinal cord 5 51852 -UBERON:0005837 fasciculus of spinal cord 4 51853 -UBERON:0005826 gracile fasciculus of spinal cord 5 51854 -UBERON:0005835 cuneate fasciculus of spinal cord 5 51855 -UBERON:0005838 fasciculus of brain 4 51856 -UBERON:0001910 medial forebrain bundle 5 51857 -UBERON:0002138 habenulo-interpeduncular tract 5 51858 -UBERON:0002309 medial longitudinal fasciculus 5 51859 -UBERON:0002660 medial longitudinal fasciculus of midbrain 6 51860 -UBERON:0002750 medial longitudinal fasciculus of medulla 6 51861 -UBERON:0002794 medial longitudinal fasciculus of pons 6 51862 -UBERON:0002642 cuneate fasciculus of medulla 5 51863 -UBERON:0002646 dorsal longitudinal fasciculus of medulla 5 51864 -UBERON:0002653 gracile fasciculus of medulla 5 51865 -UBERON:0002754 predorsal bundle 5 51866 -UBERON:0002793 dorsal longitudinal fasciculus of pons 5 51867 -UBERON:0003005 dorsal longitudinal fasciculus of midbrain 5 51868 -UBERON:0003008 dorsal longitudinal fasciculus of hypothalamus 5 51869 -UBERON:0003044 uncinate fasciculus 5 51870 -UBERON:0003045 dorsal longitudinal fasciculus 5 51871 -UBERON:0022247 forebrain ipsilateral fiber tracts 5 51872 -UBERON:0022248 cerebral nerve fasciculus 5 51873 -UBERON:0013614 fasciculus aberans 6 51874 -UBERON:0022246 superior longitudinal fasciculus 6 51875 -UBERON:0022420 temporal part of superior longitudinal fasciculus 6 51876 -UBERON:0034743 inferior longitudinal fasciculus 6 51877 -UBERON:0034754 occipitofrontal fasciculus 6 51878 -UBERON:0022250 subcallosal fasciculus 7 51879 -UBERON:0034753 inferior occipitofrontal fasciculus 7 51880 -UBERON:0035937 arcuate fasciculus 6 51881 -UBERON:0022254 ventral thalamic fasciculus 5 51882 -UBERON:0014529 lenticular fasciculus 6 51883 -UBERON:0022256 subthalamic fasciculus 5 51884 -UBERON:0022649 habenulo-interpeduncular tract of diencephalon 5 51885 -UBERON:0023740 habenulo-interpeduncular tract of midbrain 5 51886 -UBERON:0006087 internal arcuate fiber bundle 4 51887 -UBERON:0006089 dorsal external arcuate fiber bundle 4 51888 -UBERON:0006090 glossopharyngeal nerve fiber bundle 4 51889 -UBERON:0006097 ventral external arcuate fiber bundle 4 51890 -UBERON:0006115 posterior column of fornix 4 51891 -UBERON:0006116 vagal nerve fiber bundle 4 51892 -UBERON:0006117 accessory nerve fiber bundle 4 51893 -UBERON:0006133 funiculus of neuraxis 4 51894 -UBERON:0006127 funiculus of spinal cord 5 51895 -UBERON:0002179 lateral funiculus of spinal cord 6 51896 -UBERON:0002180 ventral funiculus of spinal cord 6 51897 -UBERON:0002258 dorsal funiculus of spinal cord 6 51898 -UBERON:0006695 mammillary axonal complex 4 51899 -UBERON:0006783 layer of superior colliculus 4 51900 -UBERON:0006785 gray matter layer of superior colliculus 5 51901 -UBERON:0006120 superior colliculus superficial gray layer 6 51902 -UBERON:0006780 zonal layer of superior colliculus 6 51903 -UBERON:0006782 stratum lemnisci of superior colliculus 6 51904 -UBERON:0006788 middle gray layer of superior colliculus 6 51905 -UBERON:0006789 deep gray layer of superior colliculus 6 51906 -UBERON:0006786 white matter of superior colliculus 5 51907 -UBERON:0006779 superficial white layer of superior colliculus 6 51908 -UBERON:0006787 middle white layer of superior colliculus 6 51909 -UBERON:0006790 deep white layer of superior colliculus 6 51910 -UBERON:0006791 superficial layer of superior colliculus 5 51911 -UBERON:0006120 superior colliculus superficial gray layer 6 51912 -UBERON:0006779 superficial white layer of superior colliculus 6 51913 -UBERON:0006780 zonal layer of superior colliculus 6 51914 -UBERON:0006792 intermediate layer of superior colliculus 5 51915 -UBERON:0006787 middle white layer of superior colliculus 6 51916 -UBERON:0006788 middle gray layer of superior colliculus 6 51917 -UBERON:0006793 deep layer of superior colliculus 5 51918 -UBERON:0006789 deep gray layer of superior colliculus 6 51919 -UBERON:0006790 deep white layer of superior colliculus 6 51920 -UBERON:0022314 superior colliculus stratum zonale 5 51921 -UBERON:0006843 root of cranial nerve 4 51922 -UBERON:0002618 root of trochlear nerve 5 51923 -UBERON:0002668 oculomotor nerve root 5 51924 -UBERON:0002731 vestibulocochlear nerve root 5 51925 -UBERON:0002786 root of abducens nerve 5 51926 -UBERON:0009908 caudal root of abducens nerve 6 51927 -UBERON:0009909 rostral root of abducens nerve 6 51928 -UBERON:0004673 trigeminal nerve root 5 51929 -UBERON:0002796 motor root of trigeminal nerve 6 51930 -UBERON:0009907 sensory root of trigeminal nerve 6 51931 -UBERON:0004674 facial nerve root 5 51932 -UBERON:0001699 sensory root of facial nerve 6 51933 -UBERON:0010287 motor root of facial nerve 6 51934 -UBERON:0004675 hypoglossal nerve root 5 51935 -UBERON:0009906 root of optic nerve 5 51936 -UBERON:0019310 glossopharyngeal nerve root 5 51937 -UBERON:0007418 neural decussation 4 51938 -UBERON:0002588 decussation of superior cerebellar peduncle 5 51939 -UBERON:0002615 ventral tegmental decussation 5 51940 -UBERON:0002643 decussation of medial lemniscus 5 51941 -UBERON:0002755 pyramidal decussation 5 51942 -UBERON:0002787 decussation of trochlear nerve 5 51943 -UBERON:0003009 dorsal tegmental decussation 5 51944 -UBERON:0007425 decussation of diencephalon 5 51945 -UBERON:0000959 optic chiasma 6 51946 -UBERON:0007631 accessory olfactory bulb glomerular layer 4 51947 -UBERON:0007639 hippocampus alveus 4 51948 -UBERON:0008332 hilum of neuraxis 4 51949 -UBERON:0002744 hilum of dentate nucleus 5 51950 -UBERON:0008333 hilum of inferior olivary complex 5 51951 -UBERON:0013201 olfactory pathway 4 51952 -UBERON:0013605 layer of lateral geniculate body 4 51953 -UBERON:0013606 magnocellular layer of dorsal nucleus of lateral geniculate body 5 51954 -UBERON:0013607 parvocellular layer of dorsal nucleus of lateral geniculate body 5 51955 -UBERON:0013615 koniocellular layer of dorsal nucleus of lateral geniculate body 5 51956 -UBERON:0022319 lateral geniculate nucleus parvocellular layer 5 51957 -UBERON:0014277 piriform cortex layer 1 4 51958 -UBERON:0014280 piriform cortex layer 2 4 51959 -UBERON:0014283 piriform cortex layer 3 4 51960 -UBERON:0014530 white matter lamina of neuraxis 4 51961 -UBERON:0014531 white matter lamina of diencephalon 5 51962 -UBERON:0014533 medullary lamina of thalamus 6 51963 -UBERON:0002762 internal medullary lamina of thalamus 7 51964 -UBERON:0014534 external medullary lamina of thalamus 7 51965 -UBERON:0014532 white matter lamina of cerebral hemisphere 5 51966 -UBERON:0002727 medial medullary lamina of globus pallidus 6 51967 -UBERON:0002763 accessory medullary lamina of globus pallidus 6 51968 -UBERON:0002765 lateral medullary lamina of globus pallidus 6 51969 -UBERON:0015117 lamina terminalis of cerebral hemisphere 6 51970 -UBERON:0014540 white matter lamina of cerebellum 5 51971 -UBERON:0015829 forebrain ventricular layer 4 51972 -UBERON:0016550 spinal cord column 4 51973 -UBERON:0002256 dorsal horn of spinal cord 5 51974 -UBERON:0014609 thoracic spinal cord dorsal horn 6 51975 -UBERON:0014620 cervical spinal cord dorsal horn 6 51976 -UBERON:0014638 lumbar spinal cord dorsal horn 6 51977 -UBERON:0033939 sacral spinal cord dorsal horn 6 51978 -UBERON:0002257 ventral horn of spinal cord 5 51979 -UBERON:0014610 thoracic spinal cord ventral horn 6 51980 -UBERON:0014621 cervical spinal cord ventral horn 6 51981 -UBERON:0030276 lumbar spinal cord ventral horn 6 51982 -UBERON:0032748 sacral spinal cord ventral horn 6 51983 -UBERON:0003990 spinal cord motor column 5 51984 -UBERON:0004059 spinal cord medial motor column 6 51985 -UBERON:0010405 spinal cord lateral motor column 6 51986 -UBERON:0004676 spinal cord lateral horn 5 51987 -UBERON:0014607 thoracic spinal cord lateral horn 6 51988 -UBERON:0014619 cervical spinal cord lateral horn 6 51989 -UBERON:0029538 sacral spinal cord lateral horn 6 51990 -UBERON:0031906 lumbar spinal cord lateral horn 6 51991 -UBERON:0005373 spinal cord dorsal column 5 51992 -UBERON:0005374 spinal cord lateral column 5 51993 -UBERON:0010405 spinal cord lateral motor column 6 51994 -UBERON:0005375 spinal cord ventral column 5 51995 -UBERON:0006078 subdivision of spinal cord lateral column 5 51996 -UBERON:0005847 thoracic spinal cord lateral column 6 51997 -UBERON:0005848 sacral spinal cord lateral column 6 51998 -UBERON:0005849 cervical spinal cord lateral column 6 51999 -UBERON:0005850 lumbar spinal cord lateral column 6 52000 -UBERON:0006079 subdivision of spinal cord dorsal column 5 52001 -UBERON:0005839 thoracic spinal cord dorsal column 6 52002 -UBERON:0005840 sacral spinal cord dorsal column 6 52003 -UBERON:0005841 cervical spinal cord dorsal column 6 52004 -UBERON:0005842 lumbar spinal cord dorsal column 6 52005 -UBERON:0016551 subdivision of spinal cord ventral column 5 52006 -UBERON:0005852 thoracic spinal cord ventral column 6 52007 -UBERON:0005853 sacral spinal cord ventral column 6 52008 -UBERON:0005854 cervical spinal cord ventral column 6 52009 -UBERON:0005855 lumbar spinal cord ventral column 6 52010 -UBERON:0016570 lamina of gray matter of spinal cord 4 52011 -UBERON:0002181 substantia gelatinosa 5 52012 -UBERON:0014612 substantia gelatinosa of thoracic spinal cord dorsal horn 6 52013 -UBERON:0014623 substantia gelatinosa of cervical spinal cord dorsal horn 6 52014 -UBERON:0014633 substantia gelatinosa of lumbar spinal cord dorsal horn 6 52015 -UBERON:0004677 spinal cord gray commissure 5 52016 -UBERON:0006118 lamina I of gray matter of spinal cord 5 52017 -UBERON:0016574 lamina III of gray matter of spinal cord 5 52018 -UBERON:0016575 lamina IV of gray matter of spinal cord 5 52019 -UBERON:0016576 lamina V of gray matter of spinal cord 5 52020 -UBERON:0016577 lamina VI of gray matter of spinal cord 5 52021 -UBERON:0016578 lamina VII of gray matter of spinal cord 5 52022 -UBERON:0016579 lamina VIII of gray matter of spinal cord 5 52023 -UBERON:0016580 lamina IX of gray matter of spinal cord 5 52024 -UBERON:0022271 corticopontine fibers 4 52025 -UBERON:0022317 olfactory cortex layer 1 4 52026 -UBERON:0022318 olfactory cortex layer 2 4 52027 -UBERON:0022320 dorsal cochlear nucleus pyramidal cell layer 4 52028 -UBERON:0022323 entorhinal cortex layer 4 4 52029 -UBERON:0022325 entorhinal cortex layer 5 4 52030 -UBERON:0022326 molecular layer of dorsal cochlear nucleus 4 52031 -UBERON:0022327 entorhinal cortex layer 3 4 52032 -UBERON:0022329 entorhinal cortex layer 6 4 52033 -UBERON:0022336 entorhinal cortex layer 1 4 52034 -UBERON:0022337 entorhinal cortex layer 2 4 52035 -UBERON:0022340 piriform cortex layer 2a 4 52036 -UBERON:0022341 piriform cortex layer 2b 4 52037 -UBERON:0023900 piriform cortex layer 1a 4 52038 -UBERON:0023901 piriform cortex layer 1b 4 52039 -UBERON:0029009 granular cell layer of dorsal cochlear nucleus 4 52040 -UBERON:0034709 hindbrain marginal layer 4 52041 -UBERON:0034708 cerebellum marginal layer 5 52042 -UBERON:0034714 epiphyseal tract 4 52043 -UBERON:0034715 pineal tract 4 52044 -UBERON:0034716 rostral epiphyseal tract 4 52045 -UBERON:0034896 ansa peduncularis 4 52046 -UBERON:0035044 olfactory cortex layer 3 4 52047 -UBERON:0035607 accessory nerve cord of dorsal region 4 52048 -UBERON:0035924 radiation of corpus callosum 4 52049 -UBERON:6040007 synaptic neuropil domain 4 52050 -UBERON:6007070 centro-posterior medial synaptic neuropil domain 5 52051 -UBERON:0011945 luminal layer of epithelium 3 52052 -UBERON:0011947 ureter luminal urothelium 4 52053 -UBERON:0011949 endometrium luminal epithelium 4 52054 -UBERON:0011950 mammary gland luminal epithelium 4 52055 -UBERON:0011951 prostate luminal epithelium 4 52056 -UBERON:0011946 subluminal layer of epithelium 3 52057 -UBERON:0011948 ureter subluminal urothelium 4 52058 -UBERON:0012256 digestive syncytial vacuole 3 52059 -UBERON:0012337 cauda equina 3 52060 -UBERON:0012423 layer of microvilli 3 52061 -UBERON:0012424 brush border layer 4 52062 -UBERON:0012427 intestinal brush border layer 5 52063 -UBERON:0012428 proximal convoluted tubule brush border 5 52064 -UBERON:0012425 striated border microvillus layer 4 52065 -UBERON:0012426 short microvillus layer 4 52066 -UBERON:0012485 cloacal villus 4 52067 -UBERON:0012453 nerve ending 3 52068 -UBERON:0012451 sensory receptor 4 52069 -UBERON:0012449 mechanoreceptor 5 52070 -UBERON:0003719 Pacinian corpuscle 6 52071 -UBERON:0012448 Herbst's corpuscle 6 52072 -UBERON:0012450 Meissner's corpuscle 6 52073 -UBERON:0012456 Merkel nerve ending 6 52074 -UBERON:0012457 Ruffini nerve ending 6 52075 -UBERON:0035016 tactile mechanoreceptor 6 52076 -UBERON:0035501 unencapsulated tactile receptor 7 52077 -UBERON:0035969 encapsulated tactile receptor 7 52078 -UBERON:0035017 nociceptor 6 52079 -UBERON:0018389 interoceptor 5 52080 -UBERON:0004019 baroreceptor 6 52081 -UBERON:0018392 arterial baroreceptor 7 52082 -UBERON:0018393 low-pressure baroreceptor 7 52083 -UBERON:0018394 vein baroreceptor 8 52084 -UBERON:0018395 cardiac baroreceptor 8 52085 -UBERON:0018396 pulmonary baroreceptor 8 52086 -UBERON:0018391 chemoreceptor 6 52087 -UBERON:0034942 vibrissal follicle-sinus complex 5 52088 -UBERON:0035018 thermoreceptor 5 52089 -UBERON:0035968 bulboid corpuscle 5 52090 -UBERON:0013671 nerve ending of of corpus cavernosum maxillaris 4 52091 -UBERON:0018687 glial limiting membrane 3 52092 -UBERON:0022303 nervous system cell part layer 3 52093 -UBERON:0001781 layer of retina 4 52094 -UBERON:0001782 pigmented layer of retina 5 52095 -UBERON:0001787 photoreceptor layer of retina 5 52096 -UBERON:0001789 outer nuclear layer of retina 5 52097 -UBERON:0001790 outer plexiform layer of retina 5 52098 -UBERON:0001791 inner nuclear layer of retina 5 52099 -UBERON:0001792 ganglionic layer of retina 5 52100 -UBERON:0001793 nerve fiber layer of retina 5 52101 -UBERON:0001795 inner plexiform layer of retina 5 52102 -UBERON:0003902 retinal neural layer 5 52103 -UBERON:0003925 photoreceptor inner segment layer 5 52104 -UBERON:0003926 photoreceptor outer segment layer 5 52105 -UBERON:0007619 limiting membrane of retina 5 52106 -UBERON:0001788 outer limiting layer of retina 6 52107 -UBERON:0001794 inner limiting layer of retina 6 52108 -UBERON:0002301 layer of neocortex 4 52109 -UBERON:0005390 cortical layer I 5 52110 -UBERON:0035153 dorsolateral prefrontal cortex layer 1 6 52111 -UBERON:0005391 cortical layer II 5 52112 -UBERON:0035154 dorsolateral prefrontal cortex layer 2 6 52113 -UBERON:0005392 cortical layer III 5 52114 -UBERON:0035155 dorsolateral prefrontal cortex layer 3 6 52115 -UBERON:0005393 cortical layer IV 5 52116 -UBERON:0035156 dorsolateral prefrontal cortex layer 4 6 52117 -UBERON:0005394 cortical layer V 5 52118 -UBERON:0035157 dorsolateral prefrontal cortex layer 5 6 52119 -UBERON:0005395 cortical layer VI 5 52120 -UBERON:0035158 dorsolateral prefrontal cortex layer 6 6 52121 -UBERON:0022315 primary motor cortex layer 5 5 52122 -UBERON:0022316 primary motor cortex layer 6 5 52123 -UBERON:0023859 primary somatosensory cortex layer 6 5 52124 -UBERON:0034888 primary motor cortex layer 1 5 52125 -UBERON:0035872 primary somatosensory area barrel field layer 5 5 52126 -UBERON:0035873 primary somatosensory area barrel field layer 1 5 52127 -UBERON:0035874 primary somatosensory area barrel field layer 2/3 5 52128 -UBERON:0035875 primary somatosensory area barrel field layer 6b 5 52129 -UBERON:0035876 primary somatosensory area barrel field layer 6a 5 52130 -UBERON:0035877 primary somatosensory area barrel field layer 4 5 52131 -UBERON:0002304 layer of dentate gyrus 4 52132 -UBERON:0002928 dentate gyrus polymorphic layer 5 52133 -UBERON:0002929 dentate gyrus pyramidal layer 5 52134 -UBERON:0004679 dentate gyrus molecular layer 5 52135 -UBERON:0005381 dentate gyrus granule cell layer 5 52136 -UBERON:0022346 dentate gyrus molecular layer middle 5 52137 -UBERON:0022347 dentate gyrus molecular layer inner 5 52138 -UBERON:0022348 dentate gyrus granule cell layer inner blade 5 52139 -UBERON:0022349 dentate gyrus granule cell layer outer blade 5 52140 -UBERON:0002742 lamina of septum pellucidum 4 52141 -UBERON:0004001 olfactory bulb layer 4 52142 -UBERON:0004186 olfactory bulb mitral cell layer 5 52143 -UBERON:0005377 olfactory bulb glomerular layer 5 52144 -UBERON:0023934 olfactory bulb main glomerular layer 6 52145 -UBERON:0005378 olfactory bulb granule cell layer 5 52146 -UBERON:0005380 olfactory bulb subependymal zone 5 52147 -UBERON:0005978 olfactory bulb outer nerve layer 5 52148 -UBERON:0009950 olfactory bulb plexiform layer 5 52149 -UBERON:0005376 olfactory bulb external plexiform layer 6 52150 -UBERON:0005379 olfactory bulb internal plexiform layer 6 52151 -UBERON:0015244 accessory olfactory bulb granule cell layer 5 52152 -UBERON:0015432 accessory olfactory bulb mitral cell layer 5 52153 -UBERON:0019289 accessory olfactory bulb external plexiform layer 5 52154 -UBERON:0019290 accessory olfactory bulb internal plexiform layer 5 52155 -UBERON:0004922 postnatal subventricular zone 4 52156 -UBERON:0006783 layer of superior colliculus 4 52157 -UBERON:0006785 gray matter layer of superior colliculus 5 52158 -UBERON:0006120 superior colliculus superficial gray layer 6 52159 -UBERON:0006780 zonal layer of superior colliculus 6 52160 -UBERON:0006782 stratum lemnisci of superior colliculus 6 52161 -UBERON:0006788 middle gray layer of superior colliculus 6 52162 -UBERON:0006789 deep gray layer of superior colliculus 6 52163 -UBERON:0006786 white matter of superior colliculus 5 52164 -UBERON:0006779 superficial white layer of superior colliculus 6 52165 -UBERON:0006787 middle white layer of superior colliculus 6 52166 -UBERON:0006790 deep white layer of superior colliculus 6 52167 -UBERON:0006791 superficial layer of superior colliculus 5 52168 -UBERON:0006120 superior colliculus superficial gray layer 6 52169 -UBERON:0006779 superficial white layer of superior colliculus 6 52170 -UBERON:0006780 zonal layer of superior colliculus 6 52171 -UBERON:0006792 intermediate layer of superior colliculus 5 52172 -UBERON:0006787 middle white layer of superior colliculus 6 52173 -UBERON:0006788 middle gray layer of superior colliculus 6 52174 -UBERON:0006793 deep layer of superior colliculus 5 52175 -UBERON:0006789 deep gray layer of superior colliculus 6 52176 -UBERON:0006790 deep white layer of superior colliculus 6 52177 -UBERON:0022314 superior colliculus stratum zonale 5 52178 -UBERON:0008921 substratum of layer of retina 4 52179 -UBERON:0008927 sublaminar layers S1 or S2 5 52180 -UBERON:0008922 sublaminar layer S1 6 52181 -UBERON:0008923 sublaminar layer S2 6 52182 -UBERON:0008928 sublaminar layers S2 or S3 5 52183 -UBERON:0008923 sublaminar layer S2 6 52184 -UBERON:0008924 sublaminar layer S3 6 52185 -UBERON:0008929 sublaminar layers S4 or S5 5 52186 -UBERON:0008925 sublaminar layer S4 6 52187 -UBERON:0008926 sublaminar layer S5 6 52188 -UBERON:0009731 sublaminar layers S3 or S4 5 52189 -UBERON:0008924 sublaminar layer S3 6 52190 -UBERON:0008925 sublaminar layer S4 6 52191 -UBERON:0009732 sublaminar layers S1 or S2 or S5 5 52192 -UBERON:0008922 sublaminar layer S1 6 52193 -UBERON:0008923 sublaminar layer S2 6 52194 -UBERON:0008926 sublaminar layer S5 6 52195 -UBERON:0009733 sublaminar layers S1 or S2 or S3 5 52196 -UBERON:0008922 sublaminar layer S1 6 52197 -UBERON:0008923 sublaminar layer S2 6 52198 -UBERON:0008924 sublaminar layer S3 6 52199 -UBERON:0009734 sublaminar layers S2 or S3 or S4 5 52200 -UBERON:0008923 sublaminar layer S2 6 52201 -UBERON:0008924 sublaminar layer S3 6 52202 -UBERON:0008925 sublaminar layer S4 6 52203 -UBERON:0009735 sublaminar layers S1 or S3 or S4 5 52204 -UBERON:0008922 sublaminar layer S1 6 52205 -UBERON:0008924 sublaminar layer S3 6 52206 -UBERON:0008925 sublaminar layer S4 6 52207 -UBERON:0009736 sublaminar layers S3 or S4 or S5 5 52208 -UBERON:0008924 sublaminar layer S3 6 52209 -UBERON:0008925 sublaminar layer S4 6 52210 -UBERON:0008926 sublaminar layer S5 6 52211 -UBERON:0009737 sublaminar layers S1 or S2 or S3 or S4 5 52212 -UBERON:0008922 sublaminar layer S1 6 52213 -UBERON:0008923 sublaminar layer S2 6 52214 -UBERON:0008924 sublaminar layer S3 6 52215 -UBERON:0008925 sublaminar layer S4 6 52216 -UBERON:0009740 border between sublaminar layers 4 52217 -UBERON:0009738 border of sublaminar layers S1 and S2 5 52218 -UBERON:0009739 border of sublaminar layers S3 and S4 5 52219 -UBERON:0009851 border of sublaminar layers S4 and S5 5 52220 -UBERON:0009852 border of sublaminar layers S2 and S3 5 52221 -UBERON:0013605 layer of lateral geniculate body 4 52222 -UBERON:0013606 magnocellular layer of dorsal nucleus of lateral geniculate body 5 52223 -UBERON:0013607 parvocellular layer of dorsal nucleus of lateral geniculate body 5 52224 -UBERON:0013615 koniocellular layer of dorsal nucleus of lateral geniculate body 5 52225 -UBERON:0022319 lateral geniculate nucleus parvocellular layer 5 52226 -UBERON:0014277 piriform cortex layer 1 4 52227 -UBERON:0014280 piriform cortex layer 2 4 52228 -UBERON:0014283 piriform cortex layer 3 4 52229 -UBERON:0014530 white matter lamina of neuraxis 4 52230 -UBERON:0014531 white matter lamina of diencephalon 5 52231 -UBERON:0014533 medullary lamina of thalamus 6 52232 -UBERON:0002762 internal medullary lamina of thalamus 7 52233 -UBERON:0014534 external medullary lamina of thalamus 7 52234 -UBERON:0014532 white matter lamina of cerebral hemisphere 5 52235 -UBERON:0002727 medial medullary lamina of globus pallidus 6 52236 -UBERON:0002763 accessory medullary lamina of globus pallidus 6 52237 -UBERON:0002765 lateral medullary lamina of globus pallidus 6 52238 -UBERON:0015117 lamina terminalis of cerebral hemisphere 6 52239 -UBERON:0014540 white matter lamina of cerebellum 5 52240 -UBERON:0015829 forebrain ventricular layer 4 52241 -UBERON:0016548 central nervous system gray matter layer 4 52242 -UBERON:0000956 cerebral cortex 5 52243 -UBERON:0002305 layer of hippocampus 5 52244 -UBERON:0002313 hippocampus pyramidal layer 6 52245 -UBERON:0005367 hippocampus granule cell layer 6 52246 -UBERON:0005368 hippocampus molecular layer 6 52247 -UBERON:0005370 hippocampus stratum lacunosum 6 52248 -UBERON:0005371 hippocampus stratum oriens 6 52249 -UBERON:0005372 hippocampus stratum radiatum 6 52250 -UBERON:0007637 hippocampus stratum lucidum 6 52251 -UBERON:0007640 hippocampus stratum lacunosum moleculare 6 52252 -UBERON:0035786 layer of CA1 field 6 52253 -UBERON:0014548 pyramidal layer of CA1 7 52254 -UBERON:0014552 CA1 stratum oriens 7 52255 -UBERON:0014554 CA1 stratum radiatum 7 52256 -UBERON:0014557 CA1 stratum lacunosum moleculare 7 52257 -UBERON:0014570 CA1 alveus 7 52258 -UBERON:0035787 layer of CA2 field 6 52259 -UBERON:0014549 pyramidal layer of CA2 7 52260 -UBERON:0014551 CA2 stratum oriens 7 52261 -UBERON:0014555 CA2 stratum radiatum 7 52262 -UBERON:0014558 CA2 stratum lacunosum moleculare 7 52263 -UBERON:0035802 alveus of CA2 field 7 52264 -UBERON:0035788 layer of CA3 field 6 52265 -UBERON:0014550 pyramidal layer of CA3 7 52266 -UBERON:0014553 CA3 stratum oriens 7 52267 -UBERON:0014556 CA3 stratum radiatum 7 52268 -UBERON:0014559 CA3 stratum lacunosum moleculare 7 52269 -UBERON:0014571 CA3 alveus 7 52270 -UBERON:0004130 cerebellar layer 5 52271 -UBERON:0002956 granular layer of cerebellar cortex 6 52272 -UBERON:0008829 cerebellum external granule cell layer 7 52273 -UBERON:0008830 cerebellum internal granule cell layer 7 52274 -UBERON:0002974 molecular layer of cerebellar cortex 6 52275 -UBERON:0002979 Purkinje cell layer of cerebellar cortex 6 52276 -UBERON:0015828 cerebellum ventricular layer 6 52277 -UBERON:0006785 gray matter layer of superior colliculus 5 52278 -UBERON:0006120 superior colliculus superficial gray layer 6 52279 -UBERON:0006780 zonal layer of superior colliculus 6 52280 -UBERON:0006782 stratum lemnisci of superior colliculus 6 52281 -UBERON:0006788 middle gray layer of superior colliculus 6 52282 -UBERON:0006789 deep gray layer of superior colliculus 6 52283 -UBERON:0016549 central nervous system white matter layer 4 52284 -UBERON:0006786 white matter of superior colliculus 5 52285 -UBERON:0006779 superficial white layer of superior colliculus 6 52286 -UBERON:0006787 middle white layer of superior colliculus 6 52287 -UBERON:0006790 deep white layer of superior colliculus 6 52288 -UBERON:0007639 hippocampus alveus 5 52289 -UBERON:0016570 lamina of gray matter of spinal cord 4 52290 -UBERON:0002181 substantia gelatinosa 5 52291 -UBERON:0014612 substantia gelatinosa of thoracic spinal cord dorsal horn 6 52292 -UBERON:0014623 substantia gelatinosa of cervical spinal cord dorsal horn 6 52293 -UBERON:0014633 substantia gelatinosa of lumbar spinal cord dorsal horn 6 52294 -UBERON:0004677 spinal cord gray commissure 5 52295 -UBERON:0006118 lamina I of gray matter of spinal cord 5 52296 -UBERON:0016574 lamina III of gray matter of spinal cord 5 52297 -UBERON:0016575 lamina IV of gray matter of spinal cord 5 52298 -UBERON:0016576 lamina V of gray matter of spinal cord 5 52299 -UBERON:0016577 lamina VI of gray matter of spinal cord 5 52300 -UBERON:0016578 lamina VII of gray matter of spinal cord 5 52301 -UBERON:0016579 lamina VIII of gray matter of spinal cord 5 52302 -UBERON:0016580 lamina IX of gray matter of spinal cord 5 52303 -UBERON:0022317 olfactory cortex layer 1 4 52304 -UBERON:0022318 olfactory cortex layer 2 4 52305 -UBERON:0022320 dorsal cochlear nucleus pyramidal cell layer 4 52306 -UBERON:0022323 entorhinal cortex layer 4 4 52307 -UBERON:0022325 entorhinal cortex layer 5 4 52308 -UBERON:0022326 molecular layer of dorsal cochlear nucleus 4 52309 -UBERON:0022327 entorhinal cortex layer 3 4 52310 -UBERON:0022329 entorhinal cortex layer 6 4 52311 -UBERON:0022336 entorhinal cortex layer 1 4 52312 -UBERON:0022337 entorhinal cortex layer 2 4 52313 -UBERON:0022340 piriform cortex layer 2a 4 52314 -UBERON:0022341 piriform cortex layer 2b 4 52315 -UBERON:0023900 piriform cortex layer 1a 4 52316 -UBERON:0023901 piriform cortex layer 1b 4 52317 -UBERON:0029009 granular cell layer of dorsal cochlear nucleus 4 52318 -UBERON:0035044 olfactory cortex layer 3 4 52319 -UBERON:8000005 Henle's fiber layer 4 52320 -UBERON:0006208 auditory hillocks 2 52321 -UBERON:0006611 exoskeleton 2 52322 -UBERON:0006612 shell 2 52323 -UBERON:0008270 mollusc shell 3 52324 -UBERON:0008271 turtle shell 3 52325 -UBERON:0007223 osseus cochlea 2 52326 -UBERON:0008814 pharyngeal arch system 2 52327 -UBERON:0009142 entire embryonic mesenchyme 2 52328 -UBERON:0010170 region of neural crest 2 52329 -UBERON:0011143 upper urinary tract 2 52330 -UBERON:0011640 palatoglossal arch 2 52331 -UBERON:0015238 pineal complex 2 52332 -UBERON:0016611 auditory hillocks, pharyngeal arch 1 derived 2 52333 -UBERON:0016612 auditory hillocks, pharyngeal arch 2 derived 2 52334 -UBERON:0035639 ocular adnexa 2 52335 -UBERON:0036295 renal pelvis/ureter 2 52336 -UBERON:2000098 proliferative region 2 52337 -UBERON:2000241 midline column 2 52338 -UBERON:2000542 medial column 2 52339 -UBERON:2000611 visceromotor column 2 52340 -UBERON:2001188 Weberian apparatus 2 52341 -UBERON:2001248 dorsal scute series 2 52342 -UBERON:2001254 abdominal scute series 2 52343 -UBERON:2001341 intervening zone 2 52344 -UBERON:2001363 neural complex of Weberian apparatus 2 52345 -UBERON:2001419 dorsal fin pterygiophore 2 52346 -UBERON:2002094 dorsal fin pterygiophore 1 3 52347 -UBERON:2005365 dorsal fin pterygiophore 2 3 52348 -UBERON:2005366 dorsal fin pterygiophore 3 3 52349 -UBERON:2005367 dorsal fin pterygiophore 4 3 52350 -UBERON:2005368 dorsal fin pterygiophore 5 3 52351 -UBERON:2005369 dorsal fin pterygiophore 6 3 52352 -UBERON:2005370 dorsal fin pterygiophore 7 3 52353 -UBERON:2005371 dorsal fin pterygiophore 8 3 52354 -UBERON:2001420 anal fin pterygiophore 2 52355 -UBERON:4300096 anal fin pterygiophore 1 3 52356 -UBERON:2001474 sublingual dorsal and ventral separate 2 52357 -UBERON:2001605 caudal scute series 2 52358 -UBERON:2001709 infraorbital series 2 52359 -UBERON:2001871 Weberian ossicle set 2 52360 -UBERON:2001875 opercular series 2 52361 -UBERON:2001976 interorbital septum 2 52362 -UBERON:2001990 epibranchial arborescent organ 2 52363 -UBERON:2001994 gill raker row 2 52364 -UBERON:2002063 nuchal plate series 2 52365 -UBERON:2002067 upper hypural set 2 52366 -UBERON:2002068 lower hypural set 2 52367 -UBERON:2002097 sensory canal pore series 2 52368 -UBERON:2002098 hemal spine series 2 52369 -UBERON:2002099 lateral line scale series 2 52370 -UBERON:2002101 branchiostegal ray series 2 52371 -UBERON:2002102 epibranchial series 2 52372 -UBERON:2002103 ceratobranchial series 2 52373 -UBERON:3000953 ceratobranchials II--IV 3 52374 -UBERON:2002126 caudal-fin ray pump 2 52375 -UBERON:2002164 caudal principal ray set 2 52376 -UBERON:2002165 caudal procurrent ray set 2 52377 -UBERON:2005227 protoneuromast 2 52378 -UBERON:2005409 pars superior ear 2 52379 -UBERON:2005410 pars inferior ear 2 52380 -UBERON:3000226 hyolaryngeal complex 2 52381 -UBERON:3000757 zonal area 2 52382 -UBERON:3000809 accessory articulation 2 52383 -UBERON:3000937 prezonal element 2 52384 -UBERON:3000938 postzonal element 2 52385 -UBERON:3010243 ventricular musculature 2 52386 -UBERON:4200248 hypophysial region 2 52387 -UBERON:4300006 scale row 2 52388 -UBERON:0018313 cheek scale row 3 52389 -UBERON:4300008 epipleural series 2 52390 -UBERON:4300187 buccopharyngeal complex 2 52391 -UBERON:4300208 submandibular series 2 52392 -UBERON:4300234 scale sheath 2 52393 -UBERON:4500012 hypobranchial series 2 52394 -UBERON:4500013 pharyngobranchial series 2 52395 -UBERON:4500014 basibranchial series 2 52396 -UBERON:6001722 ring gland 2 52397 -UBERON:6004823 analia 2 52398 -UBERON:6004824 female analia 3 52399 -UBERON:6004825 male analia 3 52400 -UBERON:6004520 mouthpart 1 52401 diff --git a/rsrc/classificationTrees/cellosaurus/QA.txt b/rsrc/classificationTrees/cellosaurus/QA.txt deleted file mode 100644 index ee6edce6..00000000 --- a/rsrc/classificationTrees/cellosaurus/QA.txt +++ /dev/null @@ -1,15 +0,0 @@ -{'cellosaurus:CVCL_A137': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1529': {'outliers': '', 'bad_quality': 'pgxbs-kftvkjpw,pgxbs-kftvj8fd'}, 'cellosaurus:CVCL_0209': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_1581': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2588': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5051': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0334': {'outliers': '?', 'bad_quality': '?'}, 'cellosaurus:CVCL_1377': {'outliers': '', 'bad_quality': 'pgxbs-kftvkstg'}, 'cellosaurus:CVCL_8706': {'outliers': 'pgxbs-kftvjv93', 'bad_quality': ''}, 'cellosaurus:CVCL_2741': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0022': {'outliers': '', 'bad_quality': 'pgxbs-kftvkokv,pgxbs-kftvkokx'}, 'cellosaurus:CVCL_A198': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1060': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2187': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_1722': {'outliers': 'pgxbs-kftvktd5', 'bad_quality': ''}, 'cellosaurus:CVCL_1526': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_W084': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_IR88': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A139': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1235': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_6102': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1794': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5059': {'outliers': '?', 'bad_quality': '?'}, 'cellosaurus:CVCL_1587': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_8878': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1877': {'outliers': '?', 'bad_quality': '?'}, 'cellosaurus:CVCL_5462': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0200': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0858': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_7781': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0609': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5480': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5189': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1730': {'outliers': 'pgxbs-kftvkmqz,pgxbs-kftvkmr1', 'bad_quality': ''}, 'cellosaurus:CVCL_S982': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1629': {'outliers': '?', 'bad_quality': '?'}, 'cellosaurus:CVCL_9681': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1317': {'outliers': '', 'bad_quality': 'pgxbs-kftvkt4a'}, 'cellosaurus:CVCL_DI45': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_5080': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_X482': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3299': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_0037': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2873': {'outliers': '', 'bad_quality': 'pgxbs-kftvkscq'}, 'cellosaurus:CVCL_B077': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A341': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_C505': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1146': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1100': {'outliers': 'pgxbs-kftvija0,pgxbs-kftvjtfn', 'bad_quality': 'pgxbs-kftvj5cu'}, 'cellosaurus:CVCL_2658': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_D748': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_8877': {'outliers': '?', 'bad_quality': '?'}, 'cellosaurus:CVCL_1693': {'outliers': '', 'bad_quality': 'pgxbs-kftvkjq4,pgxbs-kftvkt7w'}, 'cellosaurus:CVCL_1492': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2989': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0243': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2526': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_1261': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DH89': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_IR96': {'outliers': 'X', 'bad_quality': 'X'},'cellosaurus:CVCL_1414': {'outliers': '', 'bad_quality': 'pgxbs-kftvkn1z'}, 'cellosaurus:CVCL_2923': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_9680': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1716': {'outliers': '', 'bad_quality': 'pgxbs-kftvkjqe'}, 'cellosaurus:CVCL_1265': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1501': {'outliers': '', 'bad_quality': 'pgxbs-kftvkjqk'}, 'cellosaurus:CVCL_IR72': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DG50': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_8929': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1692': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1250': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_1630': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1536': {'outliers': 'pgxbs-kftvkt08', 'bad_quality': ''}, 'cellosaurus:CVCL_0428': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_B228': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0623': {'outliers': '?', 'bad_quality': '?'}, 'cellosaurus:CVCL_3153': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5003': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_IR85': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_7044': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1996': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_H944': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A214': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1285': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_C266': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1344': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1503': {'outliers': '?', 'bad_quality': '?'}, 'cellosaurus:CVCL_0580': {'outliers': 'pgxbs-kftvieu1,pgxbs-kftvimf7,pgxbs-kftvimf9', 'bad_quality': ''}, 'cellosaurus:CVCL_A344': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_6104': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0903': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_AX39': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2956': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2063': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DH90': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0035': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_S993': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1123': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DG78': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_7753': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_9892': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_B412': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_9674': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0367': {'outliers': 'pgxbs-kftvj3gc', 'bad_quality': ''}, 'cellosaurus:CVCL_S641': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1532': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1878': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DH61': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2522': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3008': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3160': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5180': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_6774': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2250': {'outliers': '', 'bad_quality': 'X'}, 'cellosaurus:CVCL_DH58': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_M704': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DH29': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1638': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_M705': {'outliers': '?', 'bad_quality': '?'}, 'cellosaurus:CVCL_A144': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1085': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1382': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_8082': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1087': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_4056': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1448': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DH96': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0527': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0660': {'outliers': 'X', 'bad_quality': 'X'},'cellosaurus:CVCL_0528':{'outliers': 'pgxbs-kftviwd0', 'bad_quality': ''}, -'cellosaurus:CVCL_V744': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_2450': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_1601': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0041': {'outliers': 'pgxbs-kftvimdt,pgxbs-kftvimdv', 'bad_quality': 'pgxbs-kftvkt6e'}, 'cellosaurus:CVCL_6076': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_7828': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1091': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_IS04': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1302': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1288': {'outliers': '', 'bad_quality': 'pgxbs-kftvksn6'}, 'cellosaurus:CVCL_1885': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_M891': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DI18': {'outliers': '', 'bad_quality': 'pgxbs-kftvjvgf'}, 'cellosaurus:CVCL_5953': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DG96': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1409': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_1639': {'outliers': '', 'bad_quality': 'pgxbs-kftvkt4n'}, 'cellosaurus:CVCL_0598': {'outliers': '?', 'bad_quality': '?'}, 'cellosaurus:CVCL_W872': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1126': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_4645': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1170': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DH70': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_6101': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1631': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1787': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_4450': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_IR62': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_DH43': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1381': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1724': {'outliers': '', 'bad_quality': 'pgxbs-kftvktda'}, 'cellosaurus:CVCL_0248': {'outliers': '', 'bad_quality': 'pgxbs-kftvksfd'}, 'cellosaurus:CVCL_8800': {'outliers': '', 'bad_quality': 'pgxbs-kftvkt34'}, 'cellosaurus:CVCL_3696': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A222': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_4897': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DG69': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0093': {'outliers': '?', 'bad_quality': '?'}, 'cellosaurus:CVCL_DI20': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_6573': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_IR99': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_6675': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0234': {'outliers': 'pgxbs-kftvkmif,pgxbs-kftvkmih', 'bad_quality': 'pgxbs-kftvkjx6,pgxbs-kftvkjx8'}, 'cellosaurus:CVCL_8200': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0823': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5239': {'outliers': '', 'bad_quality': 'pgxbs-kftvjs1s'}, 'cellosaurus:CVCL_8803': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1218': {'outliers': '', 'bad_quality': 'pgxbs-kftvksh2'}, 'cellosaurus:CVCL_1887': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_H608': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_iz34': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1806': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_v618': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_C280': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1781': {'outliers': 'pgxbs-kftvjuxo', 'bad_quality': ''}, 'cellosaurus:CVCL_2319': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1560': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1902': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1521': {'outliers': '', 'bad_quality': 'pgxbs-kftvkszo'}, 'cellosaurus:CVCL_0006': {'outliers': '', 'bad_quality': 'pgxbs-kftvjtdp,pgxbs-kftvjtdq,pgxbs-kftvjtdn,pgxbs-kftvjtds,pgxbs-kftvjtdk'}, 'cellosaurus:CVCL_0434': {'outliers': '', 'bad_quality': 'pgxbs-kftvjtsd,pgxbs-kftvjv9h,pgxbs-kftvksw2'}, 'cellosaurus:CVCL_3077': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1460': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_8632': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1283': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1220': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3143': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0550': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0480': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_C283': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1555': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DA03': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2123': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2003': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_7146': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0008': {'outliers': '', 'bad_quality': 'pgxbs-kftvksf3'}, 'cellosaurus:CVCL_2955': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1883': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1712': {'outliers': '', 'bad_quality': 'pgxbs-kftvktc5'}, 'cellosaurus:CVCL_A212': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1157': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_6786': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1268': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_1419': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0548': {'outliers': '', 'bad_quality': 'pgxbs-kftvjvbi'}, 'cellosaurus:CVCL_1353': {'outliers': '?', 'bad_quality': '?'}, 'cellosaurus:CVCL_1009': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_2546': {'outliers': 'pgxbs-kftvj3r5,pgxbs-kftvimcr,pgxbs-kftvimct', 'bad_quality': ''}, 'cellosaurus:CVCL_s740': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DH93': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DI46': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_2438': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_6073': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3326': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1096': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_IR87': {'outliers': '', 'bad_quality': 'pgxbs-kftvjvin'}, 'cellosaurus:CVCL_C847': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_6198': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_8461': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_C270': {'outliers': 'pgxbs-kftvju1n', 'bad_quality': ''}, 'cellosaurus:CVCL_5213': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0360': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A138': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1788': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2972': {'outliers': '/', 'bad_quality': '?'}, 'cellosaurus:CVCL_H631': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_C599': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DG32': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_8876': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1151': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1728': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_4012': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_8788': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0099': {'outliers': '', 'bad_quality': 'pgxbs-kftvi9y8,pgxbs-kftvjtss,pgxbs-kftvkt9l'}, 'cellosaurus:CVCL_9885': {'outliers': 'pgxbs-kftviwcu,pgxbs-kftviwcw', 'bad_quality': ''}, 'cellosaurus:CVCL_1036': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5112': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5058': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1031': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_3167': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1059': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1129': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DH98': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0004': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_l079': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DG38': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_S607': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DH88': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1893': {'outliers': 'pgxbs-kftvjuyw', 'bad_quality': ''}, 'cellosaurus:CVCL_1543': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1733': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5237': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_A220': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_IR91': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_0293': {'outliers': 'pgxbs-kftvksjw', 'bad_quality': ''}, 'cellosaurus:CVCL_2037': {'outliers': '', 'bad_quality': 'pgxbs-kftvksgy'}, 'cellosaurus:CVCL_C840': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1622': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DH74': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1701': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2220': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1708': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1181': {'outliers': 'pgxbs-kftvjtfp', 'bad_quality': 'pgxbs-kftvj104'}, 'cellosaurus:CVCL_1102': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1579': {'outliers': '', 'bad_quality': 'pgxbs-kftvkjqf,pgxbs-kftvj8fi,pgxbs-kftvkt1p'}, 'cellosaurus:CVCL_1628': {'outliers': 'pgxbs-kftvjuwm', 'bad_quality': ''}, 'cellosaurus:CVCL_A339': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_IR58': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_IR65': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_3336': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_N786': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_DH81': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3502': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_4717': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DF78': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2420': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5412': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5181': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5310': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DG54': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0504': {'outliers': '', 'bad_quality': 'pgxbs-kftvkt6k'}, 'cellosaurus:CVCL_8824': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_4658': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_5401': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1520': {'outliers': '', 'bad_quality': ''}, -'cellosaurus:CVCL_DH85': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0455': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1856': {'outliers': '', 'bad_quality': 'pgxbs-kftvj4dr'}, 'cellosaurus:CVCL_2451': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1228': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_IR68': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_DH28': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A228': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1427': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1998': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1291': {'outliers': '', 'bad_quality': 'pgxbs-kftvikk1'}, 'cellosaurus:CVCL_1104': {'outliers': '', 'bad_quality': 'pgxbs-kftviccy'}, 'cellosaurus:CVCL_1518': {'outliers': 'pgxbs-kftviedg', 'bad_quality': ''}, 'cellosaurus:CVCL_3880': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DI30': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1092': {'outliers': 'pgxbs-kftvj3pw', 'bad_quality': 'pgxbs-kftvjtqn'}, 'cellosaurus:CVCL_DH24': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1743': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_1497': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1509': {'outliers': '', 'bad_quality': 'pgxbs-kftvkjqc'}, 'cellosaurus:CVCL_1876': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5054': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_4380': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_6027': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2949': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0292': {'outliers': '?', 'bad_quality': '?'}, 'cellosaurus:CVCL_1307': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_D788': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_6069': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1125': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1888': {'outliers': '', 'bad_quality': 'pgxbs-kftvjk78'}, 'cellosaurus:CVCL_W874': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DH67': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5114': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1987': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1340': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A207': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3012': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2917': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1184': {'outliers': '', 'bad_quality': 'pgxbs-kftvjurl'}, 'cellosaurus:CVCL_v609': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_4655': {'outliers': '?', 'bad_quality': '?'}, 'cellosaurus:CVCL_0078': {'outliers': 'pgxbs-kftvi9yj', 'bad_quality': 'pgxbs-kftvjtsv'}, 'cellosaurus:CVCL_1685': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1128': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0067': {'outliers': 'pgxbs-kftvjk7d', 'bad_quality': ''}, 'cellosaurus:CVCL_D709': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_4748': {'outliers': 'pgxbs-kftviytz', 'bad_quality': ''}, 'cellosaurus:CVCL_2309': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_7796': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2161': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DH17': {'outliers': '?', 'bad_quality': '?'}, 'cellosaurus:CVCL_7733': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1227': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5136': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_L296': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_2620': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_DH04': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1594': {'outliers': '', 'bad_quality': 'pgxbs-kftvkt1z'}, 'cellosaurus:CVCL_9972': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_CZ93': {'outliers': 'X', 'bad_quality': 'X'},'cellosaurus:CVCL_S807': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1896': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_9920': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_0019': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0425': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1652': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1711': {'outliers': 'pgxbs-kftvktc3', 'bad_quality': ''},'cellosaurus:CVCL_D284': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1050': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1583': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0312': {'outliers': '', 'bad_quality': 'pgxbs-kftvj7cy,pgxbs-kftvj7cr,pgxbs-kftvks8i,pgxbs-kftvksnm'},'cellosaurus:CVCL_1415': {'outliers': '', 'bad_quality': 'pgxbs-kftvjtsc'},'cellosaurus:CVCL_8207': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1374': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1759': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3526': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_C836': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_W082': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1845': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1468': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DA00': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5015': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_VS67': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1499': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1613': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0092': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1656': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1776': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_A119': {'outliers': '', 'bad_quality': ''},'cellosaurus:CVCL_5187': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2689': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DH87': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_8631': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2787': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_H619': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2514': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5555': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0417': {'outliers': 'pgxbs-kftvikye,pgxbs-kftvikxo,pgxbs-kftviky1', 'bad_quality': ''}, 'cellosaurus:CVCL_1556': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_8719': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DI48': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_DG75': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_6807': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_8870': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1655': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3946': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_U957': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A193': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_IR75': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_a472': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3007': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_7725': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1346': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_V624': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A593': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1537': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_6889': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DI13': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A180': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A580': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1644': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_4849': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5381': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2690': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3495': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5552': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1408': {'outliers': '', 'bad_quality': 'pgxbs-kftvj0xt'}, 'cellosaurus:CVCL_1766': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_S967': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1178': {'outliers': '', 'bad_quality': 'pgxbs-kftvkjq1'}, 'cellosaurus:CVCL_5100': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_6074': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1736': {'outliers': '', 'bad_quality': 'pgxbs-kftvknh3'}, 'cellosaurus:CVCL_4747': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DF75': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1694': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1207': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DI35': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0028': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2739': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1654': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2075': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2973': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3424': {'outliers': 'pgxbs-kftvjv6c', 'bad_quality': ''}, 'cellosaurus:CVCL_4455': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_C609': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0217': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_7948': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5173': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1567': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1754': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5014': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_9889': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_7735': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0544': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_M574': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1588': {'outliers': '', 'bad_quality': 'pgxbs-kftvkjpz'}, 'cellosaurus:CVCL_1121': {'outliers': 'pgxbs-kftvj3uu', 'bad_quality': ''}, 'cellosaurus:CVCL_H607': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DH27': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DG42': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0589': {'outliers': '', 'bad_quality': 'pgxbs-kftvknae'}, 'cellosaurus:CVCL_IR78': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1479': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1194': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_DG58': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1571': {'outliers': 'pgxbs-kftvkmtf,pgxbs-kftvkmtg', 'bad_quality': ''}, 'cellosaurus:CVCL_DH39': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1660': {'outliers': 'pgxbs-kftvjuoi', 'bad_quality': ''}, 'cellosaurus:CVCL_3043': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0026': {'outliers': 'pgxbs-kftvkmmg,pgxbs-kftvkmmh', 'bad_quality': ''}, 'cellosaurus:CVCL_0711': {'outliers': 'X', 'bad_quality': 'X'}, -'cellosaurus:CVCL_1083': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1547': {'outliers': 'pgxbs-kftvkmsz,pgxbs-kftvkmt0', 'bad_quality': 'pgxbs-kftvkt0l'}, 'cellosaurus:CVCL_DI47': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_2984': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1234': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0236': {'outliers': '', 'bad_quality': 'pgxbs-kftvkscc,pgxbs-kftvitxl'}, 'cellosaurus:CVCL_DH08': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1103': {'outliers': '', 'bad_quality': 'pgxbs-kftvksbm'}, 'cellosaurus:CVCL_1254': {'outliers': '', 'bad_quality': 'pgxbs-kftvksik'}, 'cellosaurus:CVCL_2320': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2002': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1155': {'outliers': '', 'bad_quality': 'pgxbs-kftvj34d,pgxbs-kftvksex'}, 'cellosaurus:CVCL_1055': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5098': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_u797': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1706': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3941': {'outliers': 'pgxbs-kftvjuwt', 'bad_quality': ''}, 'cellosaurus:CVCL_2792': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1062': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_0816': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_2986': {'outliers': '', 'bad_quality': 'pgxbs-kftvksr4'}, 'cellosaurus:CVCL_3111': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5451': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1852': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1860': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_5044': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_IR59': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_7714': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1071': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1438': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1821': {'outliers': '', 'bad_quality': 'pgxbs-kftvjuy8'}, 'cellosaurus:CVCL_1177': {'outliers': '', 'bad_quality': 'pgxbs-kftvkjqm'}, 'cellosaurus:CVCL_1244': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_IS00': {'outliers': '', 'bad_quality': 'pgxbs-kftvjvj7'}, 'cellosaurus:CVCL_R580': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A777': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2120': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0B72': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_M599': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DF76': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_M172': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_9646': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5105': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_9648': {'outliers': '', 'bad_quality': 'pgxbs-kftvjtt2'}, 'cellosaurus:CVCL_1508': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1725': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1290': {'outliers': '', 'bad_quality': 'pgxbs-kftvjcd3,pgxbs-kftvksna'}, 'cellosaurus:CVCL_C602': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1093': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1871': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1681': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2991': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0105': {'outliers': 'pgxbs-kftvjt4d,pgxbs-kftvjt4h,pgxbs-kftvjt7r,pgxbs-kftvjt7w', 'bad_quality': 'pgxbs-kftvikkh,pgxbs-kftvikkj'}, 'cellosaurus:CVCL_A152': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1490': {'outliers': '', 'bad_quality': 'pgxbs-kftvksyo'}, 'cellosaurus:CVCL_5008': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_5083': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0018': {'outliers': '', 'bad_quality': 'pgxbs-kftvjhiz'}, 'cellosaurus:CVCL_7156': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1796': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1647': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0025': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_4643': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_3156': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1523': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_6948': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_1079': {'outliers': '', 'bad_quality': 'pgxbs-kftvj4ef'}, 'cellosaurus:CVCL_6995': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1111': {'outliers': '', 'bad_quality': 'pgxbs-kftvksc2'}, 'cellosaurus:CVCL_7042': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_3605': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_4784': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_CZ97': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_L298': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1292': {'outliers': '', 'bad_quality': 'pgxbs-kftvikk3,pgxbs-kftvikk9'}, 'cellosaurus:CVCL_0258': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0B67': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2759': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1112': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_U799': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5087': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_8058': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1577': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_M653': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2210': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_0080': {'outliers': '', 'bad_quality': 'pgxbs-kftvks9n'}, 'cellosaurus:CVCL_C595': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_M005': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_V620': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0630': {'outliers': '', 'bad_quality': 'pgxbs-kftvj3o2,pgxbs-kftvjumk'}, 'cellosaurus:CVCL_4998': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2992': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_2092': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DG33': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3599': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1454': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5711': {'outliers': 'pgxbs-kftvjj41', 'bad_quality': ''}, 'cellosaurus:CVCL_0165': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2240': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0393': {'outliers': '', 'bad_quality': 'pgxbs-kftvkokp,pgxbs-kftvkokq'}, 'cellosaurus:CVCL_1695': {'outliers': '', 'bad_quality': 'pgxbs-kftvkt81'}, 'cellosaurus:CVCL_IR80': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_v626': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_6192': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1819': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_4384': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3375': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2682': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_C291': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1361': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1897': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3119': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_7820': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2755': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1546': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_M516': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_U801': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5172': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1667': {'outliers': '', 'bad_quality': 'pgxbs-kftvknh1'}, 'cellosaurus:CVCL_7712': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1525': {'outliers': '', 'bad_quality': 'pgxbs-kftvkjqo'}, 'cellosaurus:CVCL_1549': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3088': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_6186': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_C123': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1941': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2804': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1875': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1635': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1569': {'outliers': 'pgxbs-kftviek9,pgxbs-kftvirrz', 'bad_quality': 'pgxbs-kftvkt1g'}, 'cellosaurus:CVCL_5218': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DH14': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_M710': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1426': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1127': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_9679': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0136': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_S597': {'outliers': '', 'bad_quality': 'pgxbs-kftvjvjw,pgxbs-kftvjvju,pgxbs-kftvjvjr,pgxbs-kftvjvjs'}, 'cellosaurus:CVCL_1045': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0631': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1205': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2788': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2691': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1185': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_B260': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_9989': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_S611': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1620': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_CZ95': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1281': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3298': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_4996': {'outliers': '', 'bad_quality': 'pgxbs-kftvj109'}, 'cellosaurus:CVCL_DH13': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_7041': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1051': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1489': {'outliers': '', 'bad_quality': 'pgxbs-kftvksyn'}, 'cellosaurus:CVCL_M711': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_1538': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1075': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2412': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_M815': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DA01': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3378': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5102': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1684': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1139': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1764': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0814': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_2536': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3613': {'outliers': '', 'bad_quality': 'pgxbs-kftvktf5'}, 'cellosaurus:CVCL_2312': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2447': {'outliers': '?', 'bad_quality': '?'}, 'cellosaurus:CVCL_1880': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1273': {'outliers': '', 'bad_quality': 'pgxbs-kftvksjo'}, 'cellosaurus:CVCL_4666': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0020': {'outliers': '', 'bad_quality': 'pgxbs-kftvkokf,pgxbs-kftvkokg,pgxbs-kftvib28,pgxbs-kftvj3st'}, 'cellosaurus:CVCL_C587': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1672': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3876': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1130': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DI37': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0475': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1161': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0060': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5079': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A211': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DI38': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1249': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1670': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0002': {'outliers': 'pgxbs-kftvjhqr,pgxbs-kftvjhq', 'bad_quality': 'pgxbs-kftvkskk'}, 'cellosaurus:CVCL_A338': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DH30': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0009': {'outliers': '?', 'bad_quality': '?'}, 'cellosaurus:CVCL_5065': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3812': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1808': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_7772': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1835': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1378': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1498': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_C850': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_C851': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0379': {'outliers': '', 'bad_quality': 'pgxbs-kftvkssb '}, 'cellosaurus:CVCL_1116': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_4644': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DH33': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1222': {'outliers': '', 'bad_quality': 'pgxbs-kftvkshh'}, 'cellosaurus:CVCL_0627': {'outliers': '', 'bad_quality': 'pgxbs-kftvj40l,pgxbs-kftvkt89'}, 'cellosaurus:CVCL_C845': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_X481': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_a637': {'outliers': '?', 'bad_quality': '?'}, 'cellosaurus:CVCL_2127': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3811': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0844': {'outliers': '?', 'bad_quality': '?'}, 'cellosaurus:CVCL_ws60': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_0244': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2927': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5759': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1251': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2605': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0588': {'outliers': '', 'bad_quality': 'pgxbs-kftvktha,pgxbs-kftvkth8'}, 'cellosaurus:CVCL_5133': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DI11': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1765': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_iw56': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_2929': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_V608': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1524': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_4992': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_W531': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DH11': {'outliers': 'X', 'bad_quality': 'X'}, -'cellosaurus:CVCL_C843': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DI58': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3178': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1216': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0C69': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2112': {'outliers': '', 'bad_quality': 'pgxbs-kftvicvt,pgxbs-kftvksvl'}, 'cellosaurus:CVCL_V623': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2076': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1258': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0363': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1406': {'outliers': '', 'bad_quality': 'pgxbs-kftvksvj,pgxbs-kftvicvs'}, 'cellosaurus:CVCL_1709': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_7759': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DH95': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_6021': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1851': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_7713': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DH25': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_7674': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1239': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1534': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2129': {'outliers': '', 'bad_quality': 'pgxbs-kftvjv03,pgxbs-kftvjv0h,pgxbs-kftvjv13,pgxbs-kftvjv3o,pgxbs-kftvjv3p,pgxbs-kftvjv52'}, 'cellosaurus:CVCL_1452': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_H668': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1188': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1058': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_1606': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_IR71': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0556': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1226': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1349': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1992': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1110': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_1469': {'outliers': '', 'bad_quality': 'pgxbs-kftvkjqh'}, 'cellosaurus:CVCL_2324': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2057': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1191': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0553': {'outliers': 'pgxbs-kftvikxj,pgxbs-kftvikxx,pgxbs-kftvirc0,pgxbs-kftvjtq8,pgxbs-kftvikya,pgxbs-kftvimeb,pgxbs-kftvimed', 'bad_quality': 'pgxbs-kftvjulp'}, 'cellosaurus:CVCL_1768': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1124': {'outliers': 'pgxbs-kftvjufy', 'bad_quality': ''}, 'cellosaurus:CVCL_M823': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_C583': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_JY36': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_1403': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1605': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2599': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A155': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_E321': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_9567': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5159': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_6344': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_C606': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1333': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5174': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1862': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_4W88': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_8801': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DI29': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0497': {'outliers': '', 'bad_quality': 'pgxbs-kftviwub'}, 'cellosaurus:CVCL_1070': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_2047': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1475': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_6958': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0076': {'outliers': '', 'bad_quality': 'pgxbs-kftvjtsu,pgxbs-kftvkta3'}, 'cellosaurus:CVCL_A776': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1675': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1913': {'outliers': '', 'bad_quality': 'pgxbs-kftvknh4'}, 'cellosaurus:CVCL_2094': {'outliers': '', 'bad_quality': 'pgxbs-kftvicb6,pgxbs-kftvicd9'}, 'cellosaurus:CVCL_4213': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A197': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_AW96': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_8795': {'outliers': 'pgxbs-kftvkt31', 'bad_quality': ''}, 'cellosaurus:CVCL_1729': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DH15': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_0337': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A194': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DH83': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1097': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DG74': {'outliers': 'pgxbs-kftvimeg,pgxbs-kftvimei', 'bad_quality': ''}, 'cellosaurus:CVCL_0485': {'outliers': 'pgxbs-kftvin42,pgxbs-kftvj3gl', 'bad_quality': ''}, 'cellosaurus:CVCL_2612': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_V606': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2169': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3013': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1098': {'outliers': 'pgxbs-kftvksbj', 'bad_quality': ''}, 'cellosaurus:CVCL_9686': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1400': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5010': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DG67': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_6795': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1516': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1289': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_W131': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0278': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0401': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0090': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DH32': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2539': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DH65': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_l083': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1356': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2765': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2791': {'outliers': '', 'bad_quality': 'pgxbs-kftvjtsf'}, 'cellosaurus:CVCL_3385': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0202': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_6798': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_C615': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5135': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A673': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1505': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0C71': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3567': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0A72': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5072': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1559': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_6224': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DF87': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DI27': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1323': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0622': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_3603': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0624': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1609': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1047': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_DH79': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_6090': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_F755': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0621': {'outliers': '', 'bad_quality': 'pgxbs-kftvimdb'}, 'cellosaurus:CVCL_5182': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A192': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1542': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1615': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A172': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_S667': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3117': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2977': {'outliers': '', 'bad_quality': ''}, -'cellosaurus:CVCL_6805': {'outliers': '', 'bad_quality': 'pgxbs-kftvktgs'}, 'cellosaurus:CVCL_1726': {'outliers': '', 'bad_quality': 'pgxbs-kftvilyr,pgxbs-kftvilys'}, 'cellosaurus:CVCL_9875': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0871': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_v616': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_1189': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1074': {'outliers': '', 'bad_quality': 'pgxbs-kftvksa7'}, 'cellosaurus:CVCL_1108': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5952': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_H945': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DI14': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2478': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1720': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2291': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_M821': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3377': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1557': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1771': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3169': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A124': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_C827': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1287': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DH02': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_3040': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A170': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1107': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0554': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0891': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_0389': {'outliers': '', 'bad_quality': 'pgxbs-kftviayl'}, 'cellosaurus:CVCL_1440': {'outliers': '', 'bad_quality': 'pgxbs-kftvksxa'}, 'cellosaurus:CVCL_2062': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_C607': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2805': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1662': {'outliers': '', 'bad_quality': '?'}, 'cellosaurus:CVCL_1325': {'outliers': '?', 'bad_quality': '?'}, 'cellosaurus:CVCL_1327': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_5179': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2050': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_0029': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_IR93': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5466': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0851': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_1493': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1401': {'outliers': '', 'bad_quality': 'pgxbs-kftvjtfs,pgxbs-kftvj107,pgxbs-kftviljw,pgxbs-kftviljy'}, 'cellosaurus:CVCL_1617': {'outliers': 'x', 'bad_quality': 'X'}, 'cellosaurus:CVCL_1767': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1598': {'outliers': '', 'bad_quality': 'pgxbs-kftvkjpu'}, 'cellosaurus:CVCL_3423': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1715': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0079': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1485': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3509': {'outliers': '', 'bad_quality': 'pgxbs-kftvjdxl'}, 'cellosaurus:CVCL_M839': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1580': {'outliers': '', 'bad_quality': 'pgxbs-kftvkjq2'}, 'cellosaurus:CVCL_1101': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_CZ92': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_C852': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1568': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1866': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_1471': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0110': {'outliers': '?', 'bad_quality': '?'}, 'cellosaurus:CVCL_2974': {'outliers': '?', 'bad_quality': '?'}, 'cellosaurus:CVCL_C501': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_M372': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_IR66': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DG15': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_W869': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2080': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0526': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3376': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1790': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1879': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_H946': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A121': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1495': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0804': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_1481': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5238': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_0064': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A649': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_B426': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_9677': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1608': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1052': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_CZ98': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1676': {'outliers': '?', 'bad_quality': '?'}, 'cellosaurus:CVCL_6793': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2030': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1348': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_6791': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_6030': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A147': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_DG09': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5178': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1252': {'outliers': '', 'bad_quality': 'pgxbs-kftvjliu'}, 'cellosaurus:CVCL_DI23': {'outliers': '', 'bad_quality': 'pgxbs-kftvjvgo'}, 'cellosaurus:CVCL_v606': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3055': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1347': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1522': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A590': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_7166': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_8821': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1137': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2106': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_2034': {'outliers': '?', 'bad_quality': '?'}, 'cellosaurus:CVCL_1106': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3087': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_6080': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1619': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_7783': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3005': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1978': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1238': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_DH73': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A442': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0846': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_1335': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_2598': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0566': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DH31': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DI36': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1678': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0524': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_9991': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_1626': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DG37': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1357': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1167': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1530': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DI21': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_4641': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1279': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_6735': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_6785': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1134': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_IR67': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_7768': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1614': {'outliers': '?', 'bad_quality': '?'}, 'cellosaurus:CVCL_1269': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1430': {'outliers': 'pgxbs-kftvkswz', 'bad_quality': ''}, 'cellosaurus:CVCL_DG31': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1192': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0608': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1561': {'outliers': 'pgxbs-kftviitv,pgxbs-kftvjuvj', 'bad_quality': ''}, 'cellosaurus:CVCL_F639': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_2862': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_5038': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3317': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5393': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_7739': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0065': {'outliers': 'pgxbs-kftvj3gc', 'bad_quality': 'pgxbs-kftvknhc'}, 'cellosaurus:CVCL_0069': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1761': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0459': {'outliers': '', 'bad_quality': 'pgxbs-kftvjt61,pgxbs-kftvjtes '}, 'cellosaurus:CVCL_3532': {'outliers': '', 'bad_quality': 'pgxbs-kftvkspm'}, 'cellosaurus:CVCL_1616': {'outliers': '', 'bad_quality': 'pgxbs-kftvird5'}, 'cellosaurus:CVCL_3152': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1375': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0279': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1339': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0959': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_3827': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_4974': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2760': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1827': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1780': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5707': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_7755': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1379': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_2148': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1341': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1343': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A677': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1735': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_C281': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1147': {'outliers': 'pgxbs-kftvj4do', 'bad_quality': ''}, 'cellosaurus:CVCL_0505': {'outliers': '', 'bad_quality': ''}, -'cellosaurus:CVCL_6796': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_IR81': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_7855': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1386': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1991': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3352': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1138': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3171': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0218': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1294': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_H669': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_7814': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1496': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0131': {'outliers': '', 'bad_quality': 'pgxbs-kftvks96,pgxbs-kftvkoki,pgxbs-kftvkokk'}, 'cellosaurus:CVCL_1384': {'outliers': '', 'bad_quality': 'pgxbs-kftvjv03,pgxbs-kftvjv0h,pgxbs-kftvjv13,pgxbs-kftvjv3o,pgxbs-kftvjv3p,pgxbs-kftvjv52,pgxbs-kftvkmiv,pgxbs-kftvkmix,pgxbs-kftviteq,pgxbs-kftvj3pa'}, 'cellosaurus:CVCL_1195': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_F650': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_2529': {'outliers': 'pgxbs-kftvj3qh', 'bad_quality': ''}, 'cellosaurus:CVCL_0153': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1388': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5957': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DI12': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1284': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0715': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_7928': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0397': {'outliers': '', 'bad_quality': 'pgxbs-kftvjv03,pgxbs-kftvjv0h,pgxbs-kftvjv13,pgxbs-kftvksu0,pgxbs-kftvitfj,pgxbs-kftvjv3o,pgxbs-kftvjv3p,pgxbs-kftvjv52,pgxbs-kftvj3pc,pgxbs-kftvjugh,pgxbs-kftvkmiv,pgxbs-kftvkmix,pgxbs-kftviteq,pgxbs-kftvj3pa'}, 'cellosaurus:CVCL_IR83': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_1337': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1611': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DH12': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_4995': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_v612': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_L280': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1175': {'outliers': '', 'bad_quality': 'pgxbs-kftvksfi'}, 'cellosaurus:CVCL_1873': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_5129': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2985': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1049': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1562': {'outliers': '', 'bad_quality': 'pgxbs-kftvkjq5'}, 'cellosaurus:CVCL_1732': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1740': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_5033': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3177': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1566': {'outliers': '', 'bad_quality': 'pgxbs-kftvjuvp,pgxbs-kftvjuvr'}, 'cellosaurus:CVCL_A174': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_B450': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_1411': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2308': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0250': {'outliers': '', 'bad_quality': 'pgxbs-kftviwud,pgxbs-kftvjucz'}, 'cellosaurus:CVCL_1640': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_IS02': {'outliers': '', 'bad_quality': 'pgxbs-kftvjvjb'}, 'cellosaurus:CVCL_1165': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_6473': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_6109': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DG53': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1500': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_IR77': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_W527': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0095': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0091': {'outliers': 'pgxbs-kftvksx4', 'bad_quality': ''}, 'cellosaurus:CVCL_1372': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1140': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A188': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_7833': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_C594': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1176': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0347': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_V610': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_IR92': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0320': {'outliers': 'pgxbs-kftvjswt', 'bad_quality': ''}, 'cellosaurus:CVCL_DH76': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_6888': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0366': {'outliers': '', 'bad_quality': 'pgxbs-kftviwug'}, 'cellosaurus:CVCL_5121': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_S669': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0101': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2607': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_H677': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A203': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2079': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A205': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A451': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3806': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_S968': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1180': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1650': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2687': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_C839': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1980': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3728': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_v611': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3116': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_6802': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2091': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_F001': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5031': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1119': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2803': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_1882': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1697': {'outliers': 'pgxbs-kftvkt84', 'bad_quality': ''}, 'cellosaurus:CVCL_1798': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1527': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0538': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_4451': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2058': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1545': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1473': {'outliers': 'pgxbs-kftvjuu9', 'bad_quality': 'pgxbs-kftvkjqj'}, 'cellosaurus:CVCL_5184': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0132': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2996': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_C603': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_8033': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_8823': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DG01': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1809': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2409': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_b076': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2421': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0473': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_A158': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DH26': {'outliers': '', 'bad_quality': ''}, -'cellosaurus:CVCL_5171': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_S857': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_7738': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_a758': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5007': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_AP95': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_7811': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_M597': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1890': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1330': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2756': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1066': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1829': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_8812': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0291': {'outliers': '', 'bad_quality': 'pgxbs-kftvkna2,pgxbs-kftvkna1,pgxbs-kftvkn9z,pgxbs-kftvkn9x,pgxbs-kftvkn9u,pgxbs-kftvkn9w'}, 'cellosaurus:CVCL_0832': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1133': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2683': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5096': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5157': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1865': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1280': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0388': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1402': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1053': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5I00': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1173': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_9971': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1321': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1783': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_C590': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_F638': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_4042': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1413': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_H604': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5169': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_4649': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_6804': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3792': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_9993': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1548': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1474': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0346': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_C265': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1395': {'outliers': 'pgxbs-kftvicai,pgxbs-kftvikye,pgxbs-kftvikxo,pgxbs-kftviky1', 'bad_quality': 'pgxbs-kftvjt5l'}, 'cellosaurus:CVCL_1590': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1149': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0313': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1082': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_9652': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5215': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1484': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_4452': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1099': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1553': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2086': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5147': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1033': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1551': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_C301': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A131': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1048': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_v607': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1394': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0201': {'outliers': 'pgxbs-kftvju55', 'bad_quality': 'pgxbs-kftvirdb,pgxbs-kftvilkj,pgxbs-kftvilkl'}, 'cellosaurus:CVCL_DF83': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0863': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_2761': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_B323': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1511': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DG95': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5064': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1700': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1418': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_S678': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0511': {'outliers': '', 'bad_quality': 'pgxbs-kftvkmhq'}, 'cellosaurus:CVCL_D034': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1256': {'outliers': '', 'bad_quality': 'pgxbs-kftvksin,pgxbs-kftvjtqj'}, 'cellosaurus:CVCL_D732': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1425': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2124': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DF85': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0364': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2077': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_7775': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3810': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DH35': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_C292': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3083': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_9724': {'outliers': '', 'bad_quality': 'pgxbs-kftviljs,pgxbs-kftviljv'}, 'cellosaurus:CVCL_C581': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1531': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1714': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1565': {'outliers': 'pgxbs-kftvjuvm', 'bad_quality': ''}, 'cellosaurus:CVCL_3768': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1086': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2947': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_W886': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_H633': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_6093': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_L028': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1637': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A145': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5111': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_8030': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_7761': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A148': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1286': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_7717': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A146': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0555': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2798': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0014': {'outliers': '', 'bad_quality': 'pgxbs-kftvjte5,pgxbs-kftvjte2,pgxbs-kftvjte3'}, 'cellosaurus:CVCL_1539': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0036': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1820': {'outliers': '', 'bad_quality': 'pgxbs-kftvknh6'}, 'cellosaurus:CVCL_0445': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2098': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1171': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1612': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DG24': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_N787': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_7043': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1550': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_U798': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0302': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2908': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DG10': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_C269': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1602': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_8204': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_7707': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0698': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_5589': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1775': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1533': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1080': {'outliers': '', 'bad_quality': 'pgxbs-kftvj4dt'}, 'cellosaurus:CVCL_1233': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0882': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_2424': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_8818': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1311': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_AS75': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1301': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_7956': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1465': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1186': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0030': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2930': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1784': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5131': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2909': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5016': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_7151': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A149': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0618': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5130': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_7719': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_9549': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_IS01': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_IR57': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1196': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1350': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3236': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_1404': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1329': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2004': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0139': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2235': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_8147': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DH59': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3110': {'outliers': '', 'bad_quality': ''}, -'cellosaurus:CVCL_5132': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_1380': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_0374': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1591': {'outliers': 'pgxbs-kftvirs9', 'bad_quality': 'pgxbs-kftvkjqa'}, 'cellosaurus:CVCL_W132': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0599': {'outliers': '', 'bad_quality': 'pgxbs-kftvjulw'}, 'cellosaurus:CVCL_2614': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2208': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A176': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DG84': {'outliers': '', 'bad_quality': 'pgxbs-kftvinjm'}, 'cellosaurus:CVCL_0395': {'outliers': 'pgxbs-kftviytr', 'bad_quality': ''}, 'cellosaurus:CVCL_D853': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1792': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_B476': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_1595': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_9990': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_DA02': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2604': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1751': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1274': {'outliers': 'pgxbs-kftvksjw', 'bad_quality': ''}, 'cellosaurus:CVCL_6543': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1661': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1817': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1467': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1721': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_6792': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2466': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0235': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0135': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_DF80': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0253': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0270': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_7715': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1988': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2090': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5183': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3082': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1592': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1362': {'outliers': '', 'bad_quality': 'pgxbs-kftvjuth'}, 'cellosaurus:CVCL_1141': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1847': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_4019': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_C267': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1702': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2993': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1398': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1067': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0294': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1263': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_E325': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_a584': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0021': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0950': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A125': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DG66': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_6813': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_6357': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3001': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1649': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1689': {'outliers': '', 'bad_quality': 'pgxbs-kftvkokc,pgxbs-kftvkokd'}, 'cellosaurus:CVCL_1889': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3513': {'outliers': '', 'bad_quality': 'pgxbs-kftvkjqf,pgxbs-kftvj8fi'}, 'cellosaurus:CVCL_A215': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1844': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_9893': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3004': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1429': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DH78': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2162': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1870': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1267': {'outliers': '', 'bad_quality': 'pgxbs-kftvjusa'}, 'cellosaurus:CVCL_1270': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2061': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DG63': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DI28': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0168': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_4613': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_1755': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_DG36': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2870': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1410': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_W530': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_C268': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_H681': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_v613': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_7770': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_VS68': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1648': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0619': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2981': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_8930': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3496': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_IR64': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_0979': {'outliers': 'X', 'bad_quality': ''}, 'cellosaurus:CVCL_2994': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_C837': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2544': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_V609': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1352': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_7758': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_S670': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2233': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A201': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_4633': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_C503': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_W871': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5924': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0001': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_9657': {'outliers': '', 'bad_quality': 'pgxbs-kftvjtwz'}, 'cellosaurus:CVCL_C842': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5760': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DF84': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2461': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1822': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_H943': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3611': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5170': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_6026': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1507': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2415': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0547': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_6748': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2785': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A480': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_6122': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_IR84': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_1478': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0545': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A731': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2416': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DI43': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1304': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2601': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A796': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A127': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0928': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_2681': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_6070': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2096': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0614': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_6831': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_IR60': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1417': {'outliers': '', 'bad_quality': 'pgxbs-kftvjty5'}, 'cellosaurus:CVCL_1760': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_1324': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0178': {'outliers': '', 'bad_quality': 'pgxbs-kftvilk6,pgxbs-kftvilwo'}, 'cellosaurus:CVCL_1514': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_8253': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1633': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1682': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DG86': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1219': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0582': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1989': {'outliers': '', 'bad_quality': 'pgxbs-kftvju5a'}, 'cellosaurus:CVCL_C610': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_F504': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1666': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_7988': {'outliers': '', 'bad_quality': ''}, -'cellosaurus:CVCL_1105': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_D880': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_6472': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_4569': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5529': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2545': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A229': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DI25': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_W083': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_IR90': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_1510': {'outliers': '', 'bad_quality': 'pgxbs-kftviejx,pgxbs-kftvkjq9'}, 'cellosaurus:CVCL_0179': {'outliers': 'pgxbs-kftvikxl,pgxbs-kftvikxy,pgxbs-kftvikyb,pgxbs-kftvj0x1,pgxbs-kftvjtqo', 'bad_quality': 'pgxbs-kftvju4z,pgxbs-kftvju4x,pgxbs-kftvilk9,pgxbs-kftvilkb'}, 'cellosaurus:CVCL_8900': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1540': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1229': {'outliers': '', 'bad_quality': 'pgxbs-kftvilkq,pgxbs-kftvilkr'}, 'cellosaurus:CVCL_0378': {'outliers': '', 'bad_quality': 'pgxbs-kftvkokl,pgxbs-kftvkokn'}, 'cellosaurus:CVCL_1046': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1259': {'outliers': 'pgxbs-kftviz8z', 'bad_quality': ''}, 'cellosaurus:CVCL_5048': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_4004': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0220': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_C279': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2314': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1861': {'outliers': 'x', 'bad_quality': 'X'}, 'cellosaurus:CVCL_1054': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A195': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_E322': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5078': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_9533': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5408': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0532': {'outliers': 'pgxbs-kftvjul4', 'bad_quality': ''}, 'cellosaurus:CVCL_A189': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2928': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_7668': {'outliers': '', 'bad_quality': 'pgxbs-kftvjv9h'}, 'cellosaurus:CVCL_0B68': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1627': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A221': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DH09': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_5400': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1168': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1823': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2856': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1968': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_F645': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1723': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1707': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_C273': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1428': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_6429': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_0007': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_H614': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A160': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1494': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1636': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1246': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DH94': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2673': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0864': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_1793': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DG51': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5086': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_7933': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0107': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1316': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_3084': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_IR98': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A662': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_F641': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0471': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2186': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_C848': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2931': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1331': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_8799': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_6008': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2582': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_IR97': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_6683': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2960': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_AP77': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1038': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_DI22': {'outliers': '', 'bad_quality': 'pgxbs-kftvjvgk,pgxbs-kftvjvgm'}, 'cellosaurus:CVCL_2961': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_8226': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1476': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1117': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1599': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_C582': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_S808': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1634': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1585': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5146': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0219': {'outliers': '', 'bad_quality': 'pgxbs-kftvju5a'}, 'cellosaurus:CVCL_4402': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1457': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1719': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2671': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2093': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A163': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_C586': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5471': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DH06': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_ye28': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1472': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1376': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_C122': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A795': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1734': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A162': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5190': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DG88': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_4449': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_C588': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1576': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_4993': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0463': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DG49': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1812': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_IR61': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_0024': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DI34': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0031': {'outliers': 'pgxbs-kftvil0l', 'bad_quality': 'pgxbs-kftvjeow,pgxbs-kftvjtgg,pgxbs-kftvjtgf,pgxbs-kftvjtgd,pgxbs-kftvjtgc,pgxbs-kftvjtga,pgxbs-kftvjtg3,pgxbs-kftvjtg5'}, 'cellosaurus:CVCL_W085': {'outliers': 'x', 'bad_quality': 'X'}, 'cellosaurus:CVCL_2425': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DH40': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1679': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0068': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_4657': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1470': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_7711': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_6789': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_E997': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_6788': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DG30': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2675': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2207': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A156': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_6067': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_4846': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2313': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1393': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2310': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DI31': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1399': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_8787': {'outliers': 'pgxbs-kftvjs1s', 'bad_quality': ''}, 'cellosaurus:CVCL_6189': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1738': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5142': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1334': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1455': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0023': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1360': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0033': {'outliers': 'pgxbs-kftvikxt,pgxbs-kftvikxg,pgxbs-kftviky6', 'bad_quality': 'pgxbs-kftviyvo'}, 'cellosaurus:CVCL_0542': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_4632': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0993': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_6803': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1300': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1338': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0089': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_CZ99': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2270': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DH72': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2307': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0324': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_M646': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_6245': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0633': {'outliers': '', 'bad_quality': 'pgxbs-kftvkokf,pgxbs-kftvkokg'}, 'cellosaurus:CVCL_1731': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1131': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1600': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2219': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5160': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_M814': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_L297': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_C593': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0290': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DH71': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DH60': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1958': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_6410': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0336': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3612': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0836': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_1782': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_6031': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_V621': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_4656': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_9676': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5081': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3090': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0825': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_8820': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0726': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_8051': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0098': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_D035': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3840': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0062': {'outliers': '', 'bad_quality': 'pgxbs-kftvjliv'}, 'cellosaurus:CVCL_3421': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1881': {'outliers': '', 'bad_quality': ''}, -'cellosaurus:CVCL_3042': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0152': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_7801': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2209': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_W875': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_v578': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1187': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0758': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_1094': {'outliers': '', 'bad_quality': 'pgxbs-kftvj0zz'}, 'cellosaurus:CVCL_1544': {'outliers': 'pgxbs-kftvjt6j', 'bad_quality': ''}, 'cellosaurus:CVCL_DH86': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_v617': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_5138': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2661': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1466': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2019': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_3158': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DH18': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1491': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1095': {'outliers': '', 'bad_quality': 'pgxbs-kftvj103'}, 'cellosaurus:CVCL_2814': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_C272': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0106': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_7825': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_CZ94': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DH38': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_9682': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_IS03': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_3216': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DH80': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1517': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_D029': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DH20': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_2213': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1423': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_1705': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_D710': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_IR82': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0529': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0418': {'outliers': 'pgxbs-kftviism', 'bad_quality': ''}, 'cellosaurus:CVCL_5128': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A118': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2081': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_S664': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5168': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2516': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_8641': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1230': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_7165': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_4778': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DH75': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0479': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_1464': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_9888': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1563': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_D751': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0590': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1275': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A444': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1183': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1453': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1174': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3172': {'outliers': 'pgxbs-kftvktci', 'bad_quality': ''}, 'cellosaurus:CVCL_0628': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5017': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A578': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2295': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_V607': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1584': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0042': {'outliers': 'pgxbs-kftvilz0,pgxbs-kftvilz2', 'bad_quality': 'pgxbs-kftvknaf'}, 'cellosaurus:CVCL_2795': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0032': {'outliers': 'pgxbs-kftvj5d1,pgxbs-kftvj5d2', 'bad_quality': 'pgxbs-kftvj10b,pgxbs-kftvjtfv'}, 'cellosaurus:CVCL_7784': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0888': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_1179': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_G209': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DG03': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_5923': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2786': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0546': {'outliers': '', 'bad_quality': 'pgxbs-kftvkjwh,pgxbs-kftvkjwj'}, 'cellosaurus:CVCL_0040': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_6808': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0827': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_1727': {'outliers': '', 'bad_quality': 'pgxbs-kftvj10c'}, 'cellosaurus:CVCL_IR56': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_9655': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1132': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DH97': {'outliers': '?', 'bad_quality': '?'}, 'cellosaurus:CVCL_2439': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DH62': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_6809': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_W086': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1763': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3015': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1674': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_IR73': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0535': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A116': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A533': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0317': {'outliers': '', 'bad_quality': 'pgxbs-kftvilwv,pgxbs-kftvilwx'}, 'cellosaurus:CVCL_DH69': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5071': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1515': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_C434': {'outliers': 'x', 'bad_quality': 'X'}, 'cellosaurus:CVCL_2659': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1351': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1942': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5185': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2799': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1412': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1779': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0331': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1564': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1245': {'outliers': '', 'bad_quality': 'pgxbs-kftvksi7,pgxbs-kftvizjh,pgxbs-kftvize4,pgxbs-kftvilkt,pgxbs-kftvilkv'}, 'cellosaurus:CVCL_2995': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3775': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0626': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A133': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_V625': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_C529': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DG89': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1355': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2613': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2609': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_B040': {'outliers': '', 'bad_quality': 'pgxbs-kftvj4em'}, 'cellosaurus:CVCL_0237': {'outliers': 'pgxbs-kftvjucx', 'bad_quality': ''}, 'cellosaurus:CVCL_L791': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3374': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1994': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_C618': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1483': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A134': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2891': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1118': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1673': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DI24': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_4377': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0579': {'outliers': '', 'bad_quality': 'pgxbs-kftvj3oa'}, 'cellosaurus:CVCL_0392': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0005': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DH34': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2754': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0543': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_a341': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A208': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1084': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_h525': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3034': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_3936': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1795': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_V612': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0525': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0126': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1115': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DF77': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_C528': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DH66': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2945': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DH63': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0498': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3968': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5728': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3787': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_6105': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1535': {'outliers': 'pgxbs-kftvijph', 'bad_quality': ''}, 'cellosaurus:CVCL_0942': {'outliers': 'X', 'bad_quality': 'X'}, -'cellosaurus:CVCL_0400': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0802': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1552': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1699': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2686': {'outliers': '', 'bad_quality': 'pgxbs-kftvjfxz,pgxbs-kftvirdj'}, 'cellosaurus:CVCL_9647': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_4373': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2481': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2610': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DI59': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0530': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2443': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0426': {'outliers': '', 'bad_quality': 'pgxbs-kftvjugv'}, 'cellosaurus:CVCL_0419': {'outliers': 'pgxbs-kftvirch,pgxbs-kftvilx5,pgxbs-kftvilx7,pgxbs-kftvjtpk', 'bad_quality': 'pgxbs-kftvican,pgxbs-kftviccp'}, 'cellosaurus:CVCL_1247': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2714': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_LC71': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_M137': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2046': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0399': {'outliers': '', 'bad_quality': 'pgxbs-kftvju2b,pgxbs-kftvju29,pgxbs-kftvju2j,pgxbs-kftvju2i,pgxbs-kftvju2e,pgxbs-kftvju2g'}, 'cellosaurus:CVCL_0332': {'outliers': '', 'bad_quality': 'pgxbs-kftvicc8'}, 'cellosaurus:CVCL_5137': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5167': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1512': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1818': {'outliers': '', 'bad_quality': 'pgxbs-kftvjk73'}, 'cellosaurus:CVCL_0439': {'outliers': '', 'bad_quality': 'pgxbs-kftvj7cy'}, 'cellosaurus:CVCL_2022': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0933': {'outliers': 'x', 'bad_quality': 'X'}, 'cellosaurus:CVCL_1558': {'outliers': '', 'bad_quality': 'pgxbs-kftvkjpx'}, 'cellosaurus:CVCL_1255': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0966': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_2581': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2758': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3524': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_6097': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2713': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1884': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5127': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0938': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_0C61': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1979': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_6121': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_X904': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5134': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_8792': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1136': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1293': {'outliers': '', 'bad_quality': 'pgxbs-kftvj106'}, 'cellosaurus:CVCL_2255': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_2676': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_C600': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2925': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_1392': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1632': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1691': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1997': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A165': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_8032': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_7727': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1320': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1625': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0632': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_IR70': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_0318': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0620': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1120': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1359': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A583': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1773': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3020': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0216': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DF82': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_T324': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DG02': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_9654': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1148': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2122': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1345': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1456': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_9672': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_AP86': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2679': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_6025': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2602': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_IR74': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1872': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_D702': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1791': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5423': {'outliers': '', 'bad_quality': 'pgxbs-kftvjv55,pgxbs-kftvjv3j,pgxbs-kftvjv3m,pgxbs-kftvjv1h,pgxbs-kftvjv0g,pgxbs-kftvjv11 '}, 'cellosaurus:CVCL_1624': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_4381': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0181': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_CZ96': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DI33': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5006': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A670': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DH41': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3791': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1056': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1982': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0077': {'outliers': 'pgxbs-kftviwuf', 'bad_quality': ''}, 'cellosaurus:CVCL_1683': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1088': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3041': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0985': {'outliers': 'x', 'bad_quality': 'X'}, 'cellosaurus:CVCL_2010': {'outliers': '', 'bad_quality': 'pgxbs-kftvksep'}, 'cellosaurus:CVCL_1846': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0617': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_D022': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3302': {'outliers': '', 'bad_quality': 'pgxbs-kftvjv67,pgxbs-kftvkmzb,pgxbs-kftvkmzd'}, 'cellosaurus:CVCL_2253': {'outliers': '', 'bad_quality': 'pgxbs-kftvj101'}, 'cellosaurus:CVCL_0134': {'outliers': '', 'bad_quality': 'pgxbs-kftvilkd,pgxbs-kftvju2d,pgxbs-kftvju2o,pgxbs-kftvju2n,pgxbs-kftvju2l,pgxbs-kftvilko,pgxbs-kftvilkm,pgxbs-kftvilkh,pgxbs-kftvilkg,pgxbs-kftvilke,pgxbs-kftvilk3,pgxbs-kftvilk4'}, 'cellosaurus:CVCL_DI15': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1057': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0697': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_5034': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_7943': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_8825': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3813': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A452': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0207': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0531': {'outliers': 'pgxbs-kftviaz8', 'bad_quality': 'pgxbs-kftvjtef,pgxbs-kftvjteg'}, 'cellosaurus:CVCL_IR95': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_3793': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_S959': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_7040': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1424': {'outliers': '', 'bad_quality': 'pgxbs-kftvkmo5,pgxbs-kftvkmo7'}, 'cellosaurus:CVCL_0371': {'outliers': 'pgxbs-kftvi9yg', 'bad_quality': 'pgxbs-kftvjtsq,pgxbs-kftvi9y5'}, 'cellosaurus:CVCL_1114': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0629': {'outliers': '', 'bad_quality': 'pgxbs-kftviect'}, 'cellosaurus:CVCL_1299': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A479': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_9649': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1688': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0559': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3114': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0B66': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3770': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0390': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_1805': {'outliers': '', 'bad_quality': 'pgxbs-kftvknh9'}, 'cellosaurus:CVCL_1271': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2218': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DG79': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_S856': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DI44': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_0333': {'outliers': 'pgxbs-kftvi9y3,pgxbs-kftvi9ye', 'bad_quality': 'pgxbs-kftvjtsn'}, 'cellosaurus:CVCL_IR94': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2914': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DI17': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1718': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0932': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_9717': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_D130': {'outliers': '', 'bad_quality': 'pgxbs-kftvjtqb'}, 'cellosaurus:CVCL_4744': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_8063': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1458': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2007': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_S680': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_U797': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1575': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0013': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5122': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0819': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_C288': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1319': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1621': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_e063': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1911': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1641': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A183': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_2971': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2104': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5143': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2743': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2990': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5404': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1910': {'outliers': '', 'bad_quality': ''}, -'cellosaurus:CVCL_2784': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0458': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0539': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0465': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1303': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1312': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1064': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_UE17': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_6797': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1482': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1463': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1422': {'outliers': 'x', 'bad_quality': 'X'}, 'cellosaurus:CVCL_DI32': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2444': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1603': {'outliers': '', 'bad_quality': 'pgxbs-kftvkt28,pgxbs-kftvjty6'}, 'cellosaurus:CVCL_1282': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5069': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DF79': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A171': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2678': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1774': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2095': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_9662': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3174': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1487': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DG76': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2983': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_4640': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_C838': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1687': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_1405': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_IR76': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_3175': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0012': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_9988': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_5063': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1135': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_V611': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3332': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1266': {'outliers': 'pgxbs-kftvjt5g', 'bad_quality': ''}, 'cellosaurus:CVCL_1169': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_C841': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3168': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1122': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3002': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_8218': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DH64': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1231': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2060': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A123': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2005': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3112': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_7123': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A167': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0326': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3386': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_1221': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_E219': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5113': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0B77': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_9663': {'outliers': '', 'bad_quality': 'pgxbs-kftvjtsi,pgxbs-kftvjvam'}, 'cellosaurus:CVCL_IR63': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3517': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2067': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_8585': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1717': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A186': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_ws59': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3881': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2608': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DH37': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2027': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DI16': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_LC74': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2110': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0855': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_9664': {'outliers': '', 'bad_quality': 'pgxbs-kftvjtsz'}, 'cellosaurus:CVCL_5921': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2419': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0600': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_7788': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0103': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1488': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2141': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1354': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1604': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A175': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0044': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_8822': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5158': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_5126': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_C846': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_6111': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3425': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2059': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_V622': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1383': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1651': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0941': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_2149': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_6806': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_4900': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2892': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0533': {'outliers': '', 'bad_quality': 'pgxbs-kftvilyn,pgxbs-kftvilyp'}, 'cellosaurus:CVCL_5186': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2315': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_IR69': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_IR79': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_W878': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_IR86': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_9995': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_0027': {'outliers': 'pgxbs-kftvksbj', 'bad_quality': ''}, 'cellosaurus:CVCL_0C73': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_L031': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1385': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_S666': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_W879': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0454': {'outliers': 'pgxbs-kftvktat', 'bad_quality': 'pgxbs-kftviwui'}, 'cellosaurus:CVCL_1416': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0186': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1197': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1040': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1574': {'outliers': 'pgxbs-kftvj40i', 'bad_quality': ''}, 'cellosaurus:CVCL_DH03': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_9714': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3757': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1690': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DH92': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3422': {'outliers': 'pgxbs-kftviiti', 'bad_quality': ''}, 'cellosaurus:CVCL_9553': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_Y285': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_8215': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_5103': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0878': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_2176': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A232': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_C171': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2680': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_4647': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2418': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_A136': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_5089': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2119': {'outliers': '', 'bad_quality': 'pgxbs-kftvjqxb'}, 'cellosaurus:CVCL_1065': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1480': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1786': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0359': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_2520': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_1618': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_AP88': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_0039': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_DG85': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_8784': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_C576': {'outliers': '', 'bad_quality': ''}, 'cellosaurus:CVCL_3337': {'outliers': 'X', 'bad_quality': 'X'}, 'cellosaurus:CVCL_2206': {'outliers': '', 'bad_quality': ''} -} - diff --git a/rsrc/classificationTrees/cellosaurus/SMOL.txt b/rsrc/classificationTrees/cellosaurus/SMOL.txt deleted file mode 100644 index 667b81b0..00000000 --- a/rsrc/classificationTrees/cellosaurus/SMOL.txt +++ /dev/null @@ -1,455 +0,0 @@ -pgxbs-kftvksbm - SMALL SEGMENTS -pgxbs-kftvkt7f -pgxbs-kftvkse9 -pgxbs-kftvj3t3 -CVCL_1764 -pgxbs-kftvjdxk -pgxbs-kftvksaw -CVCL_4666 -CVCL_1672 -CVCL_3876 -CVCL_1130 -CVCL_1161 -pgxbs-kftvksxn -CVCL_5079 -pgxbs-kftvihxu -pgxbs-kftvjush -pgxbs-kftvihxx -pgxbs-kftvihxz -pgxbs-kftvihxw -pgxbs-kftvihxk -pgxbs-kftvihxm -pgxbs-kftvihyc -pgxbs-kftvihxr -pgxbs-kftvihxs -pgxbs-kftvj3tl -pgxbs-kftvkt6z -pgxbs-kftvkt70 -pgxbs-kftvkskk -pgxbs-kftvjte0 -pgxbs-kftvj1ic -pgxbs-kftvksjm -CVCL_1835 -pgxbs-kftvj8fk -pgxbs-kftvksyy -pgxbs-kftvj3p7 -pgxbs-kftvkshh -pgxbs-kftvkme3 -pgxbs-kftvkmzi -CVCL_a637 -CVCL_2127 -pgxbs-kftvib29 -pgxbs-kftvkslw -CVCL_2927 -pgxbs-kftvktha -CVCL_2929 -CVCL_1189 -CVCL_1108 -pgxbs-kftvj3p9 -pgxbs-kftvj3id -pgxbs-kftvksbw -Pgxbs-kftvktdo -pgxbs-kftvins2 -pgxbs-kftvj3tt -CVCL_2805 -CVCL_1662 -pgxbs-kftvksq2 -pgxbs-kftvjj44 -pgxbs-kftvjk74 -CVCL_1327 -CVCL_1767 -CVCL_0079 -pgxbs-kftvksyj -pgxbs-kftvksbk -pgxbs-kftvkt1e -pgxbs-kftvksy0 -CVCL_0110 -CVCL_2974 -CVCL_2080 -pgxbs-kftvjsy9 -pgxbs-kftvkt8l -pgxbs-kftvktgi -pgxbs-kftvjj3x -pgxbs-kftvksyv -pgxbs-kftvksx2 -pgxbs-kftvkt2e -pgxbs-kftvks93 -CVCL_1676 -pgxbs-kftvksgi -pgxbs-kftvkssj -CVCL_DG09 -pgxbs-kftvjliu -CVCL_v606 -CVCL_2034 -pgxbs-kftvksbu -pgxbs-kftvkt2w -pgxbs-kftvksd5 -CVCL_A442 -pgxbs-kftvktfp -CVCL_1678 -pgxbs-kftvj34k -pgxbs-kftvksf2 -CVCL_4641 -pgxbs-kftvj3q9 -pgxbs-kftvkskg -pgxbs-kftvj3tg -pgxbs-kftvkt2q -CVCL_1192 -pgxbs-kftvksc9 -pgxbs-kftvkspp -pgxbs-kftvkt8i -pgxbs-kftvkt2t -pgxbs-kftvkt2v -pgxbs-kftvkstb -pgxbs-kftvirrp -pgxbs-kftvirrq -CVCL_1339 -pgxbs-kftvktfx -CVCL_1341 -pgxbs-kftvjcd2 -pgxbs-kftvktcd -pgxbs-kftvkt6o -pgxbs-kftvkt7x -pgxbs-kftvksvz -CVCL_2923 -pgxbs-kftvktcv -pgxbs-kftvj8fs -pgxbs-kftvj8fg -CVCL_5003 -CVCL_1344 -pgxbs-kftvj8fp -pgxbs-kftvjtep -CVCL_DH90 -pgxbs-kftvkscy -CVCL_B412 -pgxbs-kftvkt03 -pgxbs-kftvkstw -CVCL_8082 -pgxbs-kftvksb2 -pgxbs-kftvkt8 -pgxbs-kftvksu3 -pgxbs-kftvksdi -pgxbs-kftvipz3 -pgxbs-kftvjswq -pgxbs-kftvksnl -pgxbs-kftvksyw -pgxbs-kftvjuzk -pgxbs-kftvjv1a -pgxbs-kftvjv0q -pgxbs-kftvksok -CVCL_0153 -pgxbs-kftviwe3 -pgxbs-kftvjuzk -pgxbs-kftvjv1a -pgxbs-kftvjv0q -pgxbs-kftvkt14 -pgxbs-kftviwde -pgxbs-kftvksx4 -pgxbs-kftvjufh -pgxbs-kftvjufg -pgxbs-kftvjufj -pgxbs-kftvjufe -pgxbs-kftvksn -CVCL_0101 -pgxbs-kftvkt61 -pgxbs-kftvjclr -pgxbs-kftvirdo -pgxbs-kftvksd8 -pgxbs-kftvj4e3 -pgxbs-kftvjdxs -pgxbs-kftvkt3x -CVCL_2091 -CVCL_5031 -CVCL_1882 -pgxbs-kftvkt84 -pgxbs-kftvj7d0 -pgxbs-kftvj3x2 -pgxbs-kftvksy3 -pgxbs-kftvj8ff -pgxbs-kftvj3oi -CVCL_2996 -CVCL_1809 -CVCL_2176 -pgxbs-kftvks8w -pgxbs-kftvkskz -pgxbs-kftvksw1 -pgxbs-kftvixt0 -pgxbs-kftvksqy -pgxbs-kftvksjj -CVCL_2683 -pgxbs-kftvjk76 -pgxbs-kftvksfb -pgxbs-kftvksrt -pgxbs-kftvksoh -pgxbs-kftvjt45 -pgxbs-kftvipwt -CVCL_2086 -pgxbs-kftvkt0p -pgxbs-kftvksmy -pgxbs-kftvks8s -pgxbs-kftvkszd -pgxbs-kftvkt5o -pgxbs-kftvkswr -CVCL_DF85 -pgxbs-kftvktcp -pgxbs-kftvkt3s -CVCL_1637 -CVCL_5111 -pgxbs-kftvksl4 -pgxbs-kftvksvg -CVCL_2930 -pgxbs-kftvksha -CVCL_5016 -pgxbs-kftvkssm -pgxbs-kftvjts8 -pgxbs-kftvks9v -pgxbs-kftviyu4 -pgxbs-kftvktgc -gxbs-kftvktcm -pgxbs-kftvkstn -pgxbs-kftvj8fl -pgxbs-kftvksju -pgxbs-kftvksok -pgxbs-kftvkst4 -gxbs-kftvkt4s -pgxbs-kftvkt92 -CVCL_2993 -pgxbs-kftvksiy -pgxbs-kftvksmo -pgxbs-kftviwe3 -pgxbs-kftvjj3n -pgxbs-kftvktca -pgxbs-kftvkt2y -pgxbs-kftvksv6 -pgxbs-kftvksj6 -pgxbs-kftvksje -CVCL_W530 -pgxbs-kftvjk7i -pgxbs-kftvksz6 -pgxbs-kftvktdf -CVCL_A480 -pgxbs-kftvksoe -CVCL_0614 -CVCL_7988 -pgxbs-kftvjdy5 -pgxbs-kftvjdy3 -pgxbs-kftvjdy7 -pgxbs-kftvjdy8 -pgxbs-kftvjdy0 -pgxbs-kftvjdy2 -pgxbs-kftvkt2d -pgxbs-kftvkt3f -pgxbs-kftviq0i -pgxbs-kftvjsxn -CVCL_1064 -pgxbs-kftvj8fn -pgxbs-kftvksxq -pgxbs-kftvj8fa -pgxbs-kftvksr1 -pgxbs-kftvksja -pgxbs-kftvkshf -pgxbs-kftvksl1 -CVCL_8585 -CVCL_ws59 -CVCL_DH37 -pgxbs-kftvksfy -CVCL_2110 -pgxbs-kftvkt98 -pgxbs-kftvkskc -pgxbs-kftvksu1 -pgxbs-kftvkt7r -pgxbs-kftvkswd -pgxbs-kftvks9O -pgxbs-kftvinrz -pgxbs-kftvksnd -CVCL_1618 -pgxbs-kftvktcf -pgxbs-kftviwe1 -pgxbs-kftvkskm -pgxbs-kftvkszb -pgxbs-kftvjlhv -pgxbs-kftvksb8 -CVCL_1540 -pgxbs-kftvj3w9 -pgxbs-kftvkshn -pgxbs-kftvks8l -pgxbs-kftvizlq -pgxbs-kftvizl6 -pgxbs-kftvizld -pgxbs-kftvizle -pgxbs-kftvizlb -pgxbs-kftvizlg -pgxbs-kftvizl8 -pgxbs-kftvizl9 -pgxbs-kftvicdi -pgxbs-kftvizli -pgxbs-kftvizlj -pgxbs-kftvizll -pgxbs-kftvizln -pgxbs-kftvizlo -pgxbs-kftvjfq4 -pgxbs-kftvksit -pgxbs-kftviq0o -pgxbs-kftvjsxt -pgxbs-kftvkt96 -pgxbs-kftvj3o8 -pgxbs-kftvjt74 -pgxbs-kftvkt9j -CVCL_2673 -CVCL_7933 -pgxbs-kftvj4dz -pgxbs-kftvksac -pgxbs-kftvkt3c -pgxbs-kftvksqv -pgxbs-kftvipzb -CVCL_8226 -pgxbs-kftvjtsp -pgxbs-kftvksof -CVCL_1585 -pgxbs-kftvicb6 -pgxbs-kftvicd9 -pgxbs-kftvjlhs -pgxbs-kftvjlhy -CVCL_DH40 -pgxbs-kftvj8gb -pgxbs-kftvj3zj -pgxbs-kftvkt79 -pgxbs-kftvktch -pgxbs-kftvksug -pgxbs-kftvktgq -pgxbs-kftvks9l -pgxbs-kftvjtek -pgxbs-kftvjtel -pgxbs-kftvkso1 -CVCL_0089 -pgxbs-kftvj7cr -pgxbs-kftvks8i -pgxbs-kftvj3st -pgxbs-kftvks8g -CVCL_1958 -pgxbs-kftviwdk -CVCL_4656 -CVCL_3090 -pgxbs-kftvkt8f -pgxbs-kftvksuq -CVCL_2689 -pgxbs-kftvj3t9 -pgxbs-kftvksl6 -pgxbs-kftvkt6b -pgxbs-kftvksse -pgxbs-kftvirdl -pgxbs-kftvktdx -CVCL_1754 -pgxbs-kftvkscv -pgxbs-kftvj4e5 -pgxbs-kftvksq5 -pgxbs-kftvkt0g -pgxbs-kftvkth8 -pgxbs-kftvjlhg -pgxbs-kftvksuy -pgxbs-kftviccn -pgxbs-kftvical -CVCL_2081 -pgxbs-kftvkshp -CVCL_DH39 -pgxbs-kftvkt6m -pgxbs-kftvksq7 -pgxbs-kftvj34h -pgxbs-kftvicca -pgxbs-kftvksfv -pgxbs-kftvksfg -CVCL_5017 -CVCL_2295 -pgxbs-kftvktfq -pgxbs-kftvksfs -pgxbs-kftvktgm -pgxbs-kftvksdr -pgxbs-kftvksnb -pgxbs-kftvj3t6 -pgxbs-kftvkssn -CVCL_2995 -pgxbs-kftvksdt -pgxbs-kftvjgf0 -pgxbs-kftvksyg -pgxbs-kftvib26 -pgxbs-kftvksco -pgxbs-kftvkt93 -CVCL_2443 -gxbs-kftvkt70 -CVCL_M137 -pgxbs-kftvksts -pgxbs-kftvkshx -CVCL_2022 -pgxbs-kftvksi -pgxbs-kftvkt4a -pgxbs-kftvksu5 -pgxbs-kftvkt49 -pgxbs-kftvkspu -pgxbs-kftvksct -pgxbs-kftvksde -pgxbs-kftvksxk -pgxbs-kftvjk7b -pgxbs-kftvksvx -pgxbs-kftvjlho -pgxbs-kftvjlhx -pgxbs-kftvjv0b -pgxbs-kftvjuzm -pgxbs-kftvjv1m -pgxbs-kftvj34p -CVCL_4381 -pgxbs-kftvksbc -CVCL_DH41 -pgxbs-kftvksda -CVCL_1088 -CVCL_1846 -pgxbs-kftvksul -pgxbs-kftvks9d -pgxbs-kftvipze -pgxbs-kftvjt5x -pgxbs-kftvkt95 -pgxbs-kftvkt7x -pgxbs-kftvkswn -CVCL_A479 -CVCL_1688 -CVCL_3770 -pgxbs-kftvks9y -pgxbs-kftvkswp -pgxbs-kftvjk7f -CVCL_1641 -pgxbs-kftvkstq -pgxbs-kftvj1nh -pgxbs-kftvj1ne -pgxbs-kftvksoc -CVCL_1709 -pgxbs-kftvkt5 -pgxbs-kftvib2b -pgxbs-kftvksi4 -pgxbs-kftvjuzk -pgxbs-kftvjv1a -pgxbs-kftvjv0q -CVCL_1606 -pgxbs-kftvj3q6 -pgxbs-kftvksg8 -CVCL_1768 -CVCL_1403 -pgxbs-kftvktax -pgxbs-kftvixxu -pgxbs-kftvksh8 -pgxbs-kftvkt55 -pgxbs-kftvkt31 -pgxbs-kftvjj3s -pgxbs-kftvksbh -pgxbs-kftvkt5y -CVCL_5010 -pgxbs-kftvkta6 -CVCL_l083 -pgxbs-kftvkssw -pgxbs-kftvj3z3 -pgxbs-kftvjtta -pgxbs-kftvksw5 -pgxbs-kftviety -pgxbs-kftvksz4 -pgxbs-kftvksct -pgxbs-kftvkt2g -pgxbs-kftvkt46 -pgxbs-kftvjdxv \ No newline at end of file diff --git a/rsrc/classificationTrees/cellosaurus/numbered_hierarchies.tsv b/rsrc/classificationTrees/cellosaurus/numbered_hierarchies.tsv deleted file mode 100644 index 1752f6aa..00000000 --- a/rsrc/classificationTrees/cellosaurus/numbered_hierarchies.tsv +++ /dev/null @@ -1,29289 +0,0 @@ -cellosaurus:CVCL_0312 HOS 0 1 -cellosaurus:CVCL_2270 143B 1 2 -cellosaurus:CVCL_3477 143B pML BK TK 2 3 -cellosaurus:CVCL_ZL52 143B rho-0 EtBr 2 4 -cellosaurus:CVCL_XF76 143B rho-0#25 2 5 -cellosaurus:CVCL_C0Q7 143B-GFP-HK2 2 6 -cellosaurus:CVCL_U923 143B.206 2 7 -cellosaurus:CVCL_9W36 143BTK- 2 8 -cellosaurus:CVCL_S489 GHOST(3) 1 9 -cellosaurus:CVCL_1E05 GHOST(3).BOB/GPR15 2 10 -cellosaurus:CVCL_1E06 GHOST(3).CCR1 2 11 -cellosaurus:CVCL_1E07 GHOST(3).CCR2b 2 12 -cellosaurus:CVCL_S490 GHOST(3).CCR3 2 13 -cellosaurus:CVCL_S497 GHOST(3).CCR4 2 14 -cellosaurus:CVCL_S491 GHOST(3).CCR5 2 15 -cellosaurus:CVCL_LI03 GHOST(3)-CCR5 DRiP78 and NHERF1 knockdown 3 16 -cellosaurus:CVCL_S494 GHOST(3).CCR8 2 17 -cellosaurus:CVCL_S492 GHOST(3).CXCR4 2 18 -cellosaurus:CVCL_LI04 GHOST(3)-CXCR4 DRiP78 and NHERF1 knockdown 3 19 -cellosaurus:CVCL_S493 GHOST(3).CXCR6 2 20 -cellosaurus:CVCL_1E17 GHOST(3).Hi-5 2 21 -cellosaurus:CVCL_1E08 GHOST(3).R3/X4/R5 2 22 -cellosaurus:CVCL_1E09 GHOST(3).V28/CX3CR1 2 23 -cellosaurus:CVCL_1E10 GHOST(3).X4/R5 2 24 -cellosaurus:CVCL_WK80 HOS-B55 1 25 -cellosaurus:CVCL_W650 HOS-CD4 1 27 -cellosaurus:CVCL_1D94 HOS-CD4-CCR1 2 28 -cellosaurus:CVCL_1D95 HOS-CD4-CCR2b 2 29 -cellosaurus:CVCL_1D96 HOS-CD4-CCR3 2 30 -cellosaurus:CVCL_1D97 HOS-CD4-CCR4 2 31 -cellosaurus:CVCL_1D98 HOS-CD4-CCR5 2 32 -cellosaurus:CVCL_1D99 HOS-CD4-Fusin 2 33 -cellosaurus:CVCL_1E00 HOS-CD4-pBABE-puro 2 34 -cellosaurus:CVCL_XD62 HOS-Luc2-tdT 1 35 -cellosaurus:CVCL_XD63 HOS-mCherry 1 36 -cellosaurus:CVCL_1H17 HOS-pBABE-puro 1 37 -cellosaurus:CVCL_1H19 HOS-CCR5 2 38 -cellosaurus:CVCL_1H18 HOS-CXCR4 2 39 -cellosaurus:CVCL_XD64 HOS-tdT 1 40 -cellosaurus:CVCL_JG33 HOS/CMV-Luc#2(c-1) 1 41 -cellosaurus:CVCL_A9JG HOS/GFP 1 42 -cellosaurus:CVCL_2522 HTK- 1 43 -cellosaurus:CVCL_0439 MNNG/HOS Cl #5 1 44 -cellosaurus:CVCL_ZZ44 FNR-85-Cl 1 2 45 -cellosaurus:CVCL_ZZ45 FNR-85-Cl 2 2 46 -cellosaurus:CVCL_ZZ46 FNR-85-Cl 3 2 47 -cellosaurus:CVCL_ZZ47 FNR-85-Cl 5 2 48 -cellosaurus:CVCL_2546 KHOS/NP 2 49 -cellosaurus:CVCL_T431 KH OS R1 3 50 -cellosaurus:CVCL_T432 KH OS R2 4 51 -cellosaurus:CVCL_T433 KH OS R3 5 52 -cellosaurus:CVCL_2544 KHOS-240S 3 53 -cellosaurus:CVCL_A9AN HOS-SL 4 54 -cellosaurus:CVCL_2545 KHOS-312H 3 55 -cellosaurus:CVCL_AU05 KRIB 2 56 -cellosaurus:CVCL_9U38 MNNG/HOS/DXR1000 2 57 -cellosaurus:CVCL_YE14 TE-85-SF 2 58 -cellosaurus:CVCL_B0F2 ZOSL-1 1 59 -cellosaurus:CVCL_1575 NCI-H650 0 60 -cellosaurus:CVCL_4Y16 NCI-H650-Luc 1 61 -cellosaurus:CVCL_6C67 HPC-3 0 62 -cellosaurus:CVCL_6C68 HPC-3H4 1 63 -cellosaurus:CVCL_6C69 HPC-3P4a 1 64 -cellosaurus:CVCL_A1RH Yana-1 0 65 -cellosaurus:CVCL_A1RI Yana-2 1 66 -cellosaurus:CVCL_5499 EM-G3 0 67 -cellosaurus:CVCL_5507 G3S1 1 68 -cellosaurus:CVCL_1783 UM-UC-3 0 69 -cellosaurus:CVCL_A5WS UM-UC-3 LLWO1 1 70 -cellosaurus:CVCL_A5WT UM-UC-3 LLWO2F 2 71 -cellosaurus:CVCL_VL56 UM-UC-3-Luc 1 72 -cellosaurus:CVCL_VL57 UM-UC-3-LuL-1 2 73 -cellosaurus:CVCL_VL58 UM-UC-3-LuL-2 3 74 -cellosaurus:CVCL_0004 K-562 0 75 -cellosaurus:CVCL_B0ZA Abcam K-562 ADAM17 KO 1 76 -cellosaurus:CVCL_B0ZB Abcam K-562 CSF3 KO 1 77 -cellosaurus:CVCL_B7VR Abcam K-562 EP300 KO 1 78 -cellosaurus:CVCL_J651 DD 1 79 -cellosaurus:CVCL_1G55 EGFP-K562 1 80 -cellosaurus:CVCL_WU73 HL-CZ 1 81 -cellosaurus:CVCL_C0UP HP-CD36 1 82 -cellosaurus:CVCL_C0UQ HP-mock 1 83 -cellosaurus:CVCL_B7RN K-3501 1 84 -cellosaurus:CVCL_B7RP K-3502 1 85 -cellosaurus:CVCL_B7RQ K-3503 1 86 -cellosaurus:CVCL_B7RR K-3504 1 87 -cellosaurus:CVCL_B7RS K-3506 1 88 -cellosaurus:CVCL_B7RT K-3508 1 89 -cellosaurus:CVCL_RY26 K-562 CRISPRa 1 90 -cellosaurus:CVCL_RY28 K-562 CRISPRa+SaCas9 clone C11 2 91 -cellosaurus:CVCL_RY27 K-562 CRISPRa+SaCas9 clone C7 2 92 -cellosaurus:CVCL_S029 K-562 SimpleCell O-GalNAc 1 93 -cellosaurus:CVCL_LH52 K-562-B1-V-2 p17 1 94 -cellosaurus:CVCL_LH51 K-562-C-1 p365 1 95 -cellosaurus:CVCL_JM00 K-562-GFP 1 96 -cellosaurus:CVCL_UR39 K-562-luc2 1 97 -cellosaurus:CVCL_LH50 K-562-RH 1 98 -cellosaurus:CVCL_5950 K-562R 1 99 -cellosaurus:CVCL_2967 K562 AZQR 1 100 -cellosaurus:CVCL_B502 K562 BZQR 1 101 -cellosaurus:CVCL_2968 K562 cl.6 1 102 -cellosaurus:CVCL_GZ75 K562 eGFP-ADNP 1 103 -cellosaurus:CVCL_AW13 K562 eGFP-ATF1 1 104 -cellosaurus:CVCL_GZ76 K562 eGFP-ATF3 1 105 -cellosaurus:CVCL_AW14 K562 eGFP-BACH1 1 106 -cellosaurus:CVCL_AW15 K562 eGFP-CEBPB 1 107 -cellosaurus:CVCL_GZ77 K562 eGFP-CEBPG 1 108 -cellosaurus:CVCL_AW16 K562 eGFP-CREB3 1 109 -cellosaurus:CVCL_GZ78 K562 eGFP-CUX1 1 110 -cellosaurus:CVCL_AW17 K562 eGFP-DDX20 1 111 -cellosaurus:CVCL_AW18 K562 eGFP-DIDO1 1 112 -cellosaurus:CVCL_AW19 K562 eGFP-E2F1 1 113 -cellosaurus:CVCL_GZ79 K562 eGFP-E2F4 1 114 -cellosaurus:CVCL_GZ80 K562 eGFP-E2F5 1 115 -cellosaurus:CVCL_GZ81 K562 eGFP-ELF1 1 116 -cellosaurus:CVCL_GZ82 K562 eGFP-ELK1 1 117 -cellosaurus:CVCL_GZ83 K562 eGFP-ETS2 1 118 -cellosaurus:CVCL_AW20 K562 eGFP-ETV1 1 119 -cellosaurus:CVCL_AW21 K562 eGFP-FOS 1 120 -cellosaurus:CVCL_GZ84 K562 eGFP-FOSL1 1 121 -cellosaurus:CVCL_GZ85 K562 eGFP-FOXJ2 1 122 -cellosaurus:CVCL_GZ86 K562 eGFP-GABPA 1 123 -cellosaurus:CVCL_AW22 K562 eGFP-GATA2 1 124 -cellosaurus:CVCL_GZ87 K562 eGFP-GTF2A2 1 125 -cellosaurus:CVCL_GZ88 K562 eGFP-GTF2E2 1 126 -cellosaurus:CVCL_AW23 K562 eGFP-HDAC8 1 127 -cellosaurus:CVCL_AW24 K562 eGFP-HINFP 1 128 -cellosaurus:CVCL_AW25 K562 eGFP-HMGB1 1 129 -cellosaurus:CVCL_AW26 K562 eGFP-ID3 1 130 -cellosaurus:CVCL_AW27 K562 eGFP-ILK 1 131 -cellosaurus:CVCL_AW28 K562 eGFP-IRF1 1 132 -cellosaurus:CVCL_AW29 K562 eGFP-IRF9 1 133 -cellosaurus:CVCL_AW30 K562 eGFP-JUNB 1 134 -cellosaurus:CVCL_AW31 K562 eGFP-JUND 1 135 -cellosaurus:CVCL_AW32 K562 eGFP-KLF1 1 136 -cellosaurus:CVCL_AW33 K562 eGFP-KLF13 1 137 -cellosaurus:CVCL_AW34 K562 eGFP-MAFG 1 138 -cellosaurus:CVCL_GZ89 K562 eGFP-MEF2D 1 139 -cellosaurus:CVCL_GZ90 K562 eGFP-NFE2 1 140 -cellosaurus:CVCL_AW35 K562 eGFP-NFE2L1 1 141 -cellosaurus:CVCL_AW36 K562 eGFP-NR2C1 1 142 -cellosaurus:CVCL_GZ91 K562 eGFP-NR2C2 1 143 -cellosaurus:CVCL_AW37 K562 eGFP-NR4A1 1 144 -cellosaurus:CVCL_GZ92 K562 eGFP-PBX2 1 145 -cellosaurus:CVCL_GZ93 K562 eGFP-POLR2H 1 146 -cellosaurus:CVCL_AW38 K562 eGFP-PTRF 1 147 -cellosaurus:CVCL_AW39 K562 eGFP-PTTG1 1 148 -cellosaurus:CVCL_AW40 K562 eGFP-PYGO2 1 149 -cellosaurus:CVCL_AW41 K562 eGFP-RELA 1 150 -cellosaurus:CVCL_AW42 K562 eGFP-SMARCA1 1 151 -cellosaurus:CVCL_AW43 K562 eGFP-SMARCA2 1 152 -cellosaurus:CVCL_AW44 K562 eGFP-TAF7 1 153 -cellosaurus:CVCL_AW45 K562 eGFP-TEAD2 1 154 -cellosaurus:CVCL_GZ94 K562 eGFP-TFDP1 1 155 -cellosaurus:CVCL_AW46 K562 eGFP-TSC22D4 1 156 -cellosaurus:CVCL_GZ95 K562 eGFP-USF2 1 157 -cellosaurus:CVCL_GZ96 K562 eGFP-ZBTB11 1 158 -cellosaurus:CVCL_GZ97 K562 eGFP-ZFX 1 159 -cellosaurus:CVCL_GZ98 K562 eGFP-ZKSCAN8 1 160 -cellosaurus:CVCL_GZ99 K562 eGFP-ZNF148 1 161 -cellosaurus:CVCL_HA00 K562 eGFP-ZNF175 1 162 -cellosaurus:CVCL_HA01 K562 eGFP-ZNF197 1 163 -cellosaurus:CVCL_AW47 K562 eGFP-ZNF24 1 164 -cellosaurus:CVCL_XW96 K562 eGFP-ZNF354B 1 165 -cellosaurus:CVCL_HA02 K562 eGFP-ZNF395 1 166 -cellosaurus:CVCL_XW97 K562 eGFP-ZNF507 1 167 -cellosaurus:CVCL_HA03 K562 eGFP-ZNF512 1 168 -cellosaurus:CVCL_HA04 K562 eGFP-ZNF584 1 169 -cellosaurus:CVCL_HA05 K562 eGFP-ZNF589 1 170 -cellosaurus:CVCL_HA06 K562 eGFP-ZNF639 1 171 -cellosaurus:CVCL_HA07 K562 eGFP-ZNF644 1 172 -cellosaurus:CVCL_HA08 K562 eGFP-ZNF740 1 173 -cellosaurus:CVCL_HA09 K562 eGFP-ZNF766 1 174 -cellosaurus:CVCL_HA10 K562 eGFP-ZNF83 1 175 -cellosaurus:CVCL_AW48 K562 eGFP-ZSCAN9 1 176 -cellosaurus:CVCL_IM25 K562 HHT 1 177 -cellosaurus:CVCL_ZL53 K562 NGLY1 KO c15 1 178 -cellosaurus:CVCL_ZL54 K562 NGLY1 KO c20 1 179 -cellosaurus:CVCL_9120 K562(A) 1 180 -cellosaurus:CVCL_9119 K562(S) 1 181 -cellosaurus:CVCL_Z732 K562-ARA-C 1 182 -cellosaurus:CVCL_JX91 K562-AVB3 1 183 -cellosaurus:CVCL_4V54 K562-BMS-R 1 184 -cellosaurus:CVCL_Z733 K562-CdA 1 185 -cellosaurus:CVCL_4V59 K562-DAS[r] 1 186 -cellosaurus:CVCL_Z734 K562-FLUD 1 187 -cellosaurus:CVCL_Z735 K562-GEM 1 188 -cellosaurus:CVCL_9121 K562-H 1 189 -cellosaurus:CVCL_4V60 K562-IMA[r] 1 190 -cellosaurus:CVCL_4V61 K562-IMA[r]+DAS[r] 1 191 -cellosaurus:CVCL_4V62 K562-IMA[r]+PON[r] 1 192 -cellosaurus:CVCL_D201 K562-IMR 1 193 -cellosaurus:CVCL_9122 K562-L 1 194 -cellosaurus:CVCL_J257 K562-Luc 1 195 -cellosaurus:CVCL_5J21 K562-luc2 1 196 -cellosaurus:CVCL_D162 K562-Lucena 1 1 197 -cellosaurus:CVCL_4V63 K562-NIL[r] 1 198 -cellosaurus:CVCL_4V64 K562-PON[r] 1 199 -cellosaurus:CVCL_UC14 K562-r 1 200 -cellosaurus:CVCL_B0FH K562-R 1 201 -cellosaurus:CVCL_5J01 K562-Red-FLuc 1 202 -cellosaurus:CVCL_DP55 K562-rn 1 203 -cellosaurus:CVCL_UC15 K562-s 1 204 -cellosaurus:CVCL_XE50 K562-Wnt5a 1 205 -cellosaurus:CVCL_0368 K562/A02 1 206 -cellosaurus:CVCL_B7RM K562/A*0201 1 207 -cellosaurus:CVCL_Y198 K562/AC 1 208 -cellosaurus:CVCL_3827 K562/Adr 1 209 -cellosaurus:CVCL_4V20 K562/ara-C 1 210 -cellosaurus:CVCL_4V84 K562/AS-3 1 211 -cellosaurus:CVCL_4V85 K562/AS2 1 212 -cellosaurus:CVCL_AZ73 K562/CP 1 213 -cellosaurus:CVCL_D205 K562/D1-9 1 214 -cellosaurus:CVCL_WI19 K562/DAC 1 215 -cellosaurus:CVCL_4T87 K562/DNR 1 216 -cellosaurus:CVCL_Y168 K562/etop20 1 217 -cellosaurus:CVCL_Y169 K562/etop80 1 218 -cellosaurus:CVCL_C0HT K562/G 1 219 -cellosaurus:CVCL_4V47 K562/G01 1 220 -cellosaurus:CVCL_A8HT K562/GM-CSF 1 221 -cellosaurus:CVCL_A9BR K562/HHT 1 222 -cellosaurus:CVCL_5144 K562/MTX-2 1 223 -cellosaurus:CVCL_KS44 K562/NFAT-luc 1 224 -cellosaurus:CVCL_4V51 K562/NIL-50 1 225 -cellosaurus:CVCL_D573 K562/R7 1 226 -cellosaurus:CVCL_5145 K562/Vin 1 227 -cellosaurus:CVCL_S663 K562/ZD1694.C 1 228 -cellosaurus:CVCL_0369 K562YO 1 229 -cellosaurus:CVCL_9V30 KDI/20 1 230 -cellosaurus:CVCL_3000 KO51 1 231 -cellosaurus:CVCL_IQ44 NM-D4 1 232 -cellosaurus:CVCL_IQ45 NM-F9 1 233 -cellosaurus:CVCL_L434 P2UR/K-562 1 234 -cellosaurus:CVCL_1Q81 PC-MDS 1 235 -cellosaurus:CVCL_8463 RM10 1 236 -cellosaurus:CVCL_8423 RS-1 [Human leukemia] 1 237 -cellosaurus:CVCL_8440 SAM-1 1 238 -cellosaurus:CVCL_2200 SPI-801 1 239 -cellosaurus:CVCL_2201 SPI-802 1 240 -cellosaurus:CVCL_8427 T-33 1 241 -cellosaurus:CVCL_L806 TI-1 [Human leukemia] 1 242 -cellosaurus:CVCL_0589 Kasumi-1 0 243 -cellosaurus:CVCL_JY44 Kasumi-1 R48 1 244 -cellosaurus:CVCL_JY45 Kasumi-1 PR48 2 245 -cellosaurus:CVCL_Y276 NB5-B2 0 246 -cellosaurus:CVCL_F013 NBFL 1 247 -cellosaurus:CVCL_XK00 M397 0 248 -cellosaurus:CVCL_XK13 M397-AR 1 249 -cellosaurus:CVCL_1650 Reh 0 250 -cellosaurus:CVCL_8857 EU-1 1 251 -cellosaurus:CVCL_0011 KM-3 1 252 -cellosaurus:CVCL_8462 NOI-90 1 253 -cellosaurus:CVCL_ZV66 Reh/EphA3 1 254 -cellosaurus:CVCL_A049 WSU-CLL 1 255 -cellosaurus:CVCL_L997 KOA-1 0 256 -cellosaurus:CVCL_L998 KOA-1L3 1 257 -cellosaurus:CVCL_C591 FM55p 0 258 -cellosaurus:CVCL_C592 FM55p.R22.2 1 259 -cellosaurus:CVCL_M656 HF-1 [Human follicular lymphoma] 0 260 -cellosaurus:CVCL_M661 HF-1.3.4 1 261 -cellosaurus:CVCL_M662 HF-1A3 1 262 -cellosaurus:CVCL_2063 HCC827 0 263 -cellosaurus:CVCL_EJ07 HCC827 ER1 1 264 -cellosaurus:CVCL_EJ08 HCC827 ER2 1 265 -cellosaurus:CVCL_EJ09 HCC827 ER3 1 266 -cellosaurus:CVCL_EJ10 HCC827 ER4 1 267 -cellosaurus:CVCL_EJ11 HCC827 ER5 1 268 -cellosaurus:CVCL_V620 HCC827 GR1 1 269 -cellosaurus:CVCL_V621 HCC827 GR2 1 270 -cellosaurus:CVCL_V622 HCC827 GR5 1 271 -cellosaurus:CVCL_V623 HCC827 GR6 1 272 -cellosaurus:CVCL_V624 HCC827 GR7 1 273 -cellosaurus:CVCL_V625 HCC827 GR8 1 274 -cellosaurus:CVCL_DH92 HCC827 PFR1 1 275 -cellosaurus:CVCL_DH93 HCC827 PFR3 1 276 -cellosaurus:CVCL_DH94 HCC827 PFR4 1 277 -cellosaurus:CVCL_DH95 HCC827 PFR5 1 278 -cellosaurus:CVCL_DH96 HCC827 PFR6 1 279 -cellosaurus:CVCL_S703 HCC827-GR-high1 1 280 -cellosaurus:CVCL_S704 HCC827-GR-high2 1 281 -cellosaurus:CVCL_S705 HCC827-GR-step 1 282 -cellosaurus:CVCL_B7N2 HCC827-HGF1 1 283 -cellosaurus:CVCL_B7N3 HCC827-HGF2 1 284 -cellosaurus:CVCL_4W94 HCC827-Luc 1 285 -cellosaurus:CVCL_B3SC HCC827-Luc-mCh-Puro 1 286 -cellosaurus:CVCL_EQ68 HCC827-PR 1 287 -cellosaurus:CVCL_S748 HCC827/R1 1 288 -cellosaurus:CVCL_S749 HCC827/R2 1 289 -cellosaurus:CVCL_DG26 HCC827/WR 1 290 -cellosaurus:CVCL_V407 HCC827EPR 1 291 -cellosaurus:CVCL_V406 HCC827CLR 2 292 -cellosaurus:CVCL_V408 HCC827ER 1 293 -cellosaurus:CVCL_0428 MIA PaCa-2 0 294 -cellosaurus:CVCL_HA89 GEM-MIA PaCa-2 1 295 -cellosaurus:CVCL_WI23 MIA PaCa-2 GR2000 1 296 -cellosaurus:CVCL_WI24 MIA PaCa-2 GR300 1 297 -cellosaurus:CVCL_WI25 MIA PaCa-2 GR800 1 298 -cellosaurus:CVCL_JG54 MIA PaCa-2/CMV-Luc 1 299 -cellosaurus:CVCL_D282 PH61-N 1 300 -cellosaurus:CVCL_1616 OC 314 0 301 -cellosaurus:CVCL_1618 OC 316 1 302 -cellosaurus:CVCL_7071 Ma-44 0 303 -cellosaurus:CVCL_W133 Ma44-3 1 304 -cellosaurus:CVCL_W134 Ma44-3-GFP 2 305 -cellosaurus:CVCL_1792 WERI-Rb-1 0 306 -cellosaurus:CVCL_B7IE WERI-Rb-1 CDDP-R 1 307 -cellosaurus:CVCL_B7ID WERI-Rb-1 Eto-R 1 308 -cellosaurus:CVCL_0548 SaOS-2 0 309 -cellosaurus:CVCL_KU47 Saos-2 Tet-Off 1 310 -cellosaurus:CVCL_X642 SAOS-alpha2beta1 1 311 -cellosaurus:CVCL_9563 SaOS-LM1 1 312 -cellosaurus:CVCL_9564 SaOS-LM2 2 313 -cellosaurus:CVCL_9565 SaOS-LM3 3 314 -cellosaurus:CVCL_9566 SaOS-LM4 4 315 -cellosaurus:CVCL_9567 SaOS-LM5 5 316 -cellosaurus:CVCL_9568 SaOS-LM6 6 317 -cellosaurus:CVCL_0515 SaOS-LM7 7 318 -cellosaurus:CVCL_9U47 Saos2-I 1 319 -cellosaurus:CVCL_XF78 STA5 1 320 -cellosaurus:CVCL_SA52 SuperSOST C9 1 321 -cellosaurus:CVCL_SA53 SuperSOST G5 1 322 -cellosaurus:CVCL_X333 EPG85-257P 0 323 -cellosaurus:CVCL_X177 EPG85-257DAU 1 324 -cellosaurus:CVCL_X178 EPG85-257P-TR 1 325 -cellosaurus:CVCL_X175 EPG85-257RDB 1 326 -cellosaurus:CVCL_X179 EPG85-257RDB-TR 2 327 -cellosaurus:CVCL_X176 EPG85-257RNOV 1 328 -cellosaurus:CVCL_X180 EPG85-257RNOV-TR 2 329 -cellosaurus:CVCL_1636 Panc 04.03 0 330 -cellosaurus:CVCL_HE14 Panc 04.03 MAP2K4(-/-) 1 331 -cellosaurus:CVCL_1859 CCRF-HSB-2 0 332 -cellosaurus:CVCL_A0DR HSB.2-A7-D2 1 333 -cellosaurus:CVCL_A0DS HSB.2-A7-D9 1 334 -cellosaurus:CVCL_A0DT HSB.2-C5-B2 1 335 -cellosaurus:CVCL_1Y12 HSB2/GS 1 336 -cellosaurus:CVCL_3425 SUM52PE 0 337 -cellosaurus:CVCL_A1FM SUM52PE GDC-0941_resistant 1 338 -cellosaurus:CVCL_6809 WM983B 0 339 -cellosaurus:CVCL_AP81 WM983B-BR 1 340 -cellosaurus:CVCL_2076 IGR-39 0 341 -cellosaurus:CVCL_B491 IGR-39D 1 342 -cellosaurus:CVCL_RR33 IGR-39rPLX4032_20muM 1 343 -cellosaurus:CVCL_RR34 IGR-39rPLX4720_20muM 1 344 -cellosaurus:CVCL_RR35 IGR-39rVCR10 1 345 -cellosaurus:CVCL_8125 HN-2 0 346 -cellosaurus:CVCL_LI54 LICR-HN2 R10.3 1 347 -cellosaurus:CVCL_N845 GRU-1 0 348 -cellosaurus:CVCL_N846 GRU-1A 1 349 -cellosaurus:CVCL_N847 GRU-1B 1 350 -cellosaurus:CVCL_N848 GRU-1C 1 351 -cellosaurus:CVCL_1544 NCI-H226 0 352 -cellosaurus:CVCL_VK08 NCI-H226b 1 353 -cellosaurus:CVCL_AX73 NCI-H226Br 1 354 -cellosaurus:CVCL_0201 Caov-3 0 355 -cellosaurus:CVCL_4Y66 CA-CD437R 1 356 -cellosaurus:CVCL_0550 SK-MEL-3 0 357 -cellosaurus:CVCL_RS85 SK-MEL-3rCDDP1000 1 358 -cellosaurus:CVCL_RS86 SK-MEL-3rDACARB20 1 359 -cellosaurus:CVCL_3509 ES-2 0 360 -cellosaurus:CVCL_JY93 ES-2/GFP 1 361 -cellosaurus:CVCL_CZ94 ES-2/T80 1 362 -cellosaurus:CVCL_CZ95 ES-2/TxT50 1 363 -cellosaurus:CVCL_M715 ES-2R 1 364 -cellosaurus:CVCL_QW62 ALL-2 0 365 -cellosaurus:CVCL_QW67 ALL-2B 1 366 -cellosaurus:CVCL_0480 PANC-1 0 367 -cellosaurus:CVCL_3002 KP-1N 1 368 -cellosaurus:CVCL_3003 KP-1NL 2 369 -cellosaurus:CVCL_4Y21 KP-1NL-Luc#2 3 370 -cellosaurus:CVCL_A4BT PANC-1 Ecadherin EmGFP 1 371 -cellosaurus:CVCL_WL48 PANC-1-Cas9-554 1 372 -cellosaurus:CVCL_WL49 PANC-1-Cas9-555 1 373 -cellosaurus:CVCL_WL50 PANC-1-Cas9-556 1 374 -cellosaurus:CVCL_WL51 PANC-1-Cas9-557 1 375 -cellosaurus:CVCL_WL52 PANC-1-Cas9-558 1 376 -cellosaurus:CVCL_WL53 PANC-1-Cas9-559 1 377 -cellosaurus:CVCL_VQ69 Panc-1-CTC 1 378 -cellosaurus:CVCL_A4BU PANC-1-Luc2 1 379 -cellosaurus:CVCL_C0WS PANC-1/Gem 1 380 -cellosaurus:CVCL_WS13 PANC-1RG7 1 381 -cellosaurus:CVCL_0Q68 Panc1-MUC1 1 382 -cellosaurus:CVCL_0Q69 Panc1-bC2GnT-M 2 383 -cellosaurus:CVCL_B6JK Mel Ibr 0 384 -cellosaurus:CVCL_B6KC Mel Ibr subclone 1 385 -cellosaurus:CVCL_B6L2 Mel IG 1 386 -cellosaurus:CVCL_0100 SNU-484 0 387 -cellosaurus:CVCL_C1NA SNU-484 Ola-R 1 388 -cellosaurus:CVCL_2H53 OX-CO-2 0 389 -cellosaurus:CVCL_A2CH OX-CO-2 R1 Cetux 1 390 -cellosaurus:CVCL_A2CI OX-CO-2 R2 Cetux 1 391 -cellosaurus:CVCL_A2CJ OXCO-2 R3 Cetux 1 392 -cellosaurus:CVCL_9720 HepaRG 0 393 -cellosaurus:CVCL_FA14 Hepa-SC 1 394 -cellosaurus:CVCL_FA15 Hepa-RP3 2 395 -cellosaurus:CVCL_B6A6 HepaRG 5F 1 396 -cellosaurus:CVCL_B6A7 HepaRG AHR KO 2 397 -cellosaurus:CVCL_B6A8 HepaRG BCRP KO 2 398 -cellosaurus:CVCL_B6A9 HepaRG BSEP KO 2 399 -cellosaurus:CVCL_B6AA HepaRG CAR KO 2 400 -cellosaurus:CVCL_B6AB HepaRG CYP3A4 KO 2 401 -cellosaurus:CVCL_B6AC HepaRG FXR KO 2 402 -cellosaurus:CVCL_B6AD HepaRG MATE1 KO 2 403 -cellosaurus:CVCL_B6AE HepaRG MDR1 KO 2 404 -cellosaurus:CVCL_B6AF HepaRG MDR3 KO 2 405 -cellosaurus:CVCL_B6AG HepaRG MRP2 KO 2 406 -cellosaurus:CVCL_B6AH HepaRG MRP2/MRP4 KO 2 407 -cellosaurus:CVCL_B6AI HepaRG MRP3 KO 2 408 -cellosaurus:CVCL_B6AJ HepaRG MRP4 KO 2 409 -cellosaurus:CVCL_B6AK HepaRG MRP6 KO 2 410 -cellosaurus:CVCL_B6AL HepaRG OATP1B1 KO 2 411 -cellosaurus:CVCL_B6AM HepaRG OATP1B1/OATP1B3 KO 2 412 -cellosaurus:CVCL_B6AN HepaRG OATP1B3 KO 2 413 -cellosaurus:CVCL_B6AP HepaRG P66SHC KO 2 414 -cellosaurus:CVCL_B6AQ HepaRG PERK KO 2 415 -cellosaurus:CVCL_B6AR HepaRG POR KO 2 416 -cellosaurus:CVCL_B6AS HepaRG PXR KO 2 417 -cellosaurus:CVCL_B6AT HepaRG PXR/CAR KO 2 418 -cellosaurus:CVCL_B6AU HepaRG SOD2 KO 2 419 -cellosaurus:CVCL_JJ68 HepaRG CYP3A4G/7R clone 3 1 420 -cellosaurus:CVCL_XI49 HepaRG-CAR 1 421 -cellosaurus:CVCL_JY39 HepaRG-hNTCP 1 422 -cellosaurus:CVCL_C0QZ HepaRG(VC) 1 423 -cellosaurus:CVCL_C0R0 HepaRG-POR#1 2 424 -cellosaurus:CVCL_C0R1 HepaRG-POR#2 2 425 -cellosaurus:CVCL_WL73 HPR116 1 426 -cellosaurus:CVCL_D174 RW-2982 0 427 -cellosaurus:CVCL_C3I3 RW-2982-NS 1 428 -cellosaurus:CVCL_M512 HSM-2 0 429 -cellosaurus:CVCL_M513 HSM-2.3 1 430 -cellosaurus:CVCL_M534 JK-6 0 431 -cellosaurus:CVCL_0C41 JK-6L 1 432 -cellosaurus:CVCL_A5DY JK-6L.31H 2 433 -cellosaurus:CVCL_A5DZ JK-6L.39L 2 434 -cellosaurus:CVCL_B464 SOJ 0 435 -cellosaurus:CVCL_WI59 SOJ-3 1 436 -cellosaurus:CVCL_WI60 SOJ-4 1 437 -cellosaurus:CVCL_B465 SOJ-6 1 438 -cellosaurus:CVCL_D267 KU-2 0 439 -cellosaurus:CVCL_W867 KU2-TP15 1 440 -cellosaurus:CVCL_7040 GIST430 0 441 -cellosaurus:CVCL_A9N1 GIST430B 1 442 -cellosaurus:CVCL_M793 GN-1 0 443 -cellosaurus:CVCL_M794 GN-3 1 444 -cellosaurus:CVCL_M795 GN-CL-1 1 445 -cellosaurus:CVCL_M796 GN-CL-2 1 446 -cellosaurus:CVCL_F249 INT-MEL-58 0 447 -cellosaurus:CVCL_HE38 Me9229/18 1 448 -cellosaurus:CVCL_2214 TFK-1 0 449 -cellosaurus:CVCL_QZ53 RTFK-1 1 450 -cellosaurus:CVCL_0278 GI-101A 0 451 -cellosaurus:CVCL_D255 GILM1 1 452 -cellosaurus:CVCL_D256 GILM2 2 453 -cellosaurus:CVCL_S917 GILM3 3 454 -cellosaurus:CVCL_C614 FM91 0 455 -cellosaurus:CVCL_UI34 FM91.2 1 456 -cellosaurus:CVCL_UI35 FM91.5 1 457 -cellosaurus:CVCL_1269 HCC4006 0 458 -cellosaurus:CVCL_S698 HCC4006-GR-high 1 459 -cellosaurus:CVCL_S699 HCC4006-GR-step 1 460 -cellosaurus:CVCL_A7EW HCC4006-OsiR 1 461 -cellosaurus:CVCL_S746 HCC4006/R 1 462 -cellosaurus:CVCL_RS46 HCC4006rERLO1mUM 1 463 -cellosaurus:CVCL_RS47 HCC4006rGEFI1muM 1 464 -cellosaurus:CVCL_0547 SW620 0 465 -cellosaurus:CVCL_A9MJ SW620-EGFP 1 466 -cellosaurus:CVCL_J268 SW620-Luc 1 467 -cellosaurus:CVCL_A9MK SW620-Luc2-tdT 1 468 -cellosaurus:CVCL_B7Q5 SW620-Lv-T7 R1C11 1 469 -cellosaurus:CVCL_B7Q6 SW620-Lv-T7 R3C5 1 470 -cellosaurus:CVCL_B7Q7 SW620-Lv-T7 R3E6 1 471 -cellosaurus:CVCL_A9ML SW620-mCherry 1 472 -cellosaurus:CVCL_4V76 SW620-OX 1 473 -cellosaurus:CVCL_A9MM SW620-tdT 1 474 -cellosaurus:CVCL_ZZ39 SW620/AD300 1 475 -cellosaurus:CVCL_B6Y0 SW620/Ad300-ABCB1ko 2 476 -cellosaurus:CVCL_4V77 SW620/L-OHP 1 477 -cellosaurus:CVCL_C3GN SW620_6244R 1 478 -cellosaurus:CVCL_M687 HCCM-5 0 479 -cellosaurus:CVCL_W857 HCCM-5MTXr 1 480 -cellosaurus:CVCL_YD25 SNU-2563 0 481 -cellosaurus:CVCL_YD50 SNU-2563CR 1 482 -cellosaurus:CVCL_4882 PC-346 0 483 -cellosaurus:CVCL_4883 PC-346C 1 484 -cellosaurus:CVCL_B7J2 PC-346CF 2 485 -cellosaurus:CVCL_RA53 PC346Abi101 2 486 -cellosaurus:CVCL_IP21 PC346DCC 2 487 -cellosaurus:CVCL_RA54 PC346Enza 2 488 -cellosaurus:CVCL_IP22 PC346Flu1 2 489 -cellosaurus:CVCL_IP23 PC346Flu2 2 490 -cellosaurus:CVCL_M597 C666 0 491 -cellosaurus:CVCL_7949 C666-1 1 492 -cellosaurus:CVCL_2914 HARA [Human squamous cell lung carcinoma] 0 493 -cellosaurus:CVCL_2915 HARA-B 1 494 -cellosaurus:CVCL_A9FF HARA-B-GFP 2 495 -cellosaurus:CVCL_4W91 HARA-B4 2 496 -cellosaurus:CVCL_JG55 HARA/CMV-Luc 1 497 -cellosaurus:CVCL_1738 TCCSUP 0 498 -cellosaurus:CVCL_RR24 TCC-SUPrCDDP1000 1 499 -cellosaurus:CVCL_RR25 TCC-SUPrGEMCI20 1 500 -cellosaurus:CVCL_RR26 TCC-SUPrVINB20 1 501 -cellosaurus:CVCL_B410 IIB-BR-G 0 502 -cellosaurus:CVCL_T742 IIB-BR-G-MT 1 503 -cellosaurus:CVCL_3768 OV-90 0 504 -cellosaurus:CVCL_4Z23 OV90C-A 1 505 -cellosaurus:CVCL_4Z24 OV90C-D 1 506 -cellosaurus:CVCL_4Z25 OV90D-6 1 507 -cellosaurus:CVCL_4Z26 OV90D-7 1 508 -cellosaurus:CVCL_4Z27 OV90P-3 1 509 -cellosaurus:CVCL_4Z28 OV90P-7 1 510 -cellosaurus:CVCL_1641 PF-382 0 511 -cellosaurus:CVCL_H267 ST-4 1 512 -cellosaurus:CVCL_U096 A925L 0 513 -cellosaurus:CVCL_TZ85 A925LPE3 1 514 -cellosaurus:CVCL_6878 AGZY83-a 0 515 -cellosaurus:CVCL_6879 Anip-973 1 516 -cellosaurus:CVCL_W193 Anip973/CDDP 2 517 -cellosaurus:CVCL_W194 Anip973/NVB 2 518 -cellosaurus:CVCL_0186 BxPC-3 0 519 -cellosaurus:CVCL_XZ31 BxPC-3 human CLDN18.2 1 520 -cellosaurus:CVCL_J246 BxPC-3-Luc#2 1 521 -cellosaurus:CVCL_5J14 BxPc-3-luc2 1 522 -cellosaurus:CVCL_XX78 BxPC3-R 1 523 -cellosaurus:CVCL_5I88 BxPC3-Red-FLuc 1 524 -cellosaurus:CVCL_1303 IGR-1 0 525 -cellosaurus:CVCL_B5LI IGR-10 1 526 -cellosaurus:CVCL_RS51 IGR-1rCDDP2000 1 527 -cellosaurus:CVCL_RS52 IGR-1rDACARB40 1 528 -cellosaurus:CVCL_0076 SNU-16 0 529 -cellosaurus:CVCL_L043 SNU-16-DOX 1 530 -cellosaurus:CVCL_WY37 SNU-16Ad 1 531 -cellosaurus:CVCL_WY38 SNU-16alpha5 1 532 -cellosaurus:CVCL_2110 ME-1 [Human leukemia] 0 533 -cellosaurus:CVCL_WS58 ME-1f2 1 534 -cellosaurus:CVCL_RL95 ME-2 1 535 -cellosaurus:CVCL_G313 ME-F2 2 536 -cellosaurus:CVCL_G315 ME-F2/ADM100 3 537 -cellosaurus:CVCL_G316 ME-F2/ADM200 3 538 -cellosaurus:CVCL_RM25 ME-3 1 539 -cellosaurus:CVCL_G314 ME-F3 2 540 -cellosaurus:CVCL_G312 ME-F1 1 541 -cellosaurus:CVCL_3019 Marcus 0 542 -cellosaurus:CVCL_3154 RERF-LC-OK 1 543 -cellosaurus:CVCL_1698 SK-MG-1 1 544 -cellosaurus:CVCL_B260 PC-9 0 545 -cellosaurus:CVCL_1640 PC-14 1 546 -cellosaurus:CVCL_9W69 PC-14-PM4 2 547 -cellosaurus:CVCL_9W71 PC14Br 2 548 -cellosaurus:CVCL_J032 PC14HM 2 549 -cellosaurus:CVCL_9W70 PC14PE6 2 550 -cellosaurus:CVCL_9W72 PC14PE6/AS2 3 551 -cellosaurus:CVCL_S706 PC-9-GR-high 1 552 -cellosaurus:CVCL_S707 PC-9-GR-step 1 553 -cellosaurus:CVCL_T015 PC-9/BR 1 554 -cellosaurus:CVCL_ZZ72 PC-9/CDDP 1 555 -cellosaurus:CVCL_DG28 PC-9/ER/WR 1 556 -cellosaurus:CVCL_D778 PC-9/ER1 1 557 -cellosaurus:CVCL_D726 PC-9/ER3 1 558 -cellosaurus:CVCL_U149 PC-9/f14 1 559 -cellosaurus:CVCL_U150 PC-9/f9 1 560 -cellosaurus:CVCL_DG27 PC-9/GR/WR 1 561 -cellosaurus:CVCL_DI28 PC-9/GR1 1 562 -cellosaurus:CVCL_DI29 PC-9/GR2 1 563 -cellosaurus:CVCL_DI30 PC-9/GR3 1 564 -cellosaurus:CVCL_DH34 PC-9/GR4 1 565 -cellosaurus:CVCL_DI33 PC-9/DR1 2 566 -cellosaurus:CVCL_DI34 PC-9/DR2 2 567 -cellosaurus:CVCL_DI35 PC-9/DR3 2 568 -cellosaurus:CVCL_DI36 PC-9/DR4 2 569 -cellosaurus:CVCL_DI37 PC-9/DR5 2 570 -cellosaurus:CVCL_DI38 PC-9/DR6 2 571 -cellosaurus:CVCL_DG30 PC-9/WZR09 2 572 -cellosaurus:CVCL_DG31 PC-9/WZR10 2 573 -cellosaurus:CVCL_DG32 PC-9/WZR11 2 574 -cellosaurus:CVCL_DG33 PC-9/WZR12 2 575 -cellosaurus:CVCL_DI31 PC-9/GR5 1 576 -cellosaurus:CVCL_DI32 PC-9/GR6 1 577 -cellosaurus:CVCL_DP47 PC-9/IR 1 578 -cellosaurus:CVCL_S750 PC-9/R 1 579 -cellosaurus:CVCL_T016 PC-9/S2 1 580 -cellosaurus:CVCL_DG29 PC-9/WR 1 581 -cellosaurus:CVCL_V337 PC-9/ZD 1 582 -cellosaurus:CVCL_S977 PC9-DPE2 1 583 -cellosaurus:CVCL_XA18 PC9-TGL 1 584 -cellosaurus:CVCL_XA19 PC9-BrM3 2 585 -cellosaurus:CVCL_XA20 PC9-LeptoM 2 586 -cellosaurus:CVCL_B7N9 PC9/TS1 1 587 -cellosaurus:CVCL_B7NA PC9/TS2 1 588 -cellosaurus:CVCL_B263 RPC-9 1 589 -cellosaurus:CVCL_3956 LN-382 0 590 -cellosaurus:CVCL_6839 LN-382T 1 591 -cellosaurus:CVCL_2176 Rh41 0 592 -cellosaurus:CVCL_8670 Rh41-807R 1 593 -cellosaurus:CVCL_8751 Rh41-MAB391R 1 594 -cellosaurus:CVCL_U098 B901L 0 595 -cellosaurus:CVCL_A5AT B901L-CD80 1 596 -cellosaurus:CVCL_M481 LOPRA-1 0 597 -cellosaurus:CVCL_M482 LOPRA-1/4 1 598 -cellosaurus:CVCL_M483 LOPRA-1/5 1 599 -cellosaurus:CVCL_6298 TPC-1 0 600 -cellosaurus:CVCL_6278 BHP 10-3 1 601 -cellosaurus:CVCL_6283 BHP 2-7 1 602 -cellosaurus:CVCL_4W01 BHP2-7 Pazopanib selected 2 603 -cellosaurus:CVCL_6285 BHP 7-13 1 604 -cellosaurus:CVCL_9917 FB-2 1 605 -cellosaurus:CVCL_V277 RPTC-1 1 606 -cellosaurus:CVCL_8054 624-mel 0 607 -cellosaurus:CVCL_A1DV 624-mel/A31 1 608 -cellosaurus:CVCL_C586 624.28 Mel 1 609 -cellosaurus:CVCL_C588 624.38 Mel 1 610 -cellosaurus:CVCL_0V14 Mel501A 1 611 -cellosaurus:CVCL_RA30 Mel624-CMV-hNIS-Neo 1 612 -cellosaurus:CVCL_RA31 Mel624-CMV-hNIS-Neo/eGFP-Puro 1 613 -cellosaurus:CVCL_RA32 Mel624-hNIS-Neo 1 614 -cellosaurus:CVCL_1207 Evsa-T 0 615 -cellosaurus:CVCL_A1FL Evsa-T GDC-0941-resistant clone 1 1 616 -cellosaurus:CVCL_1192 EFO-27 0 617 -cellosaurus:CVCL_RS28 EFO-27rCDDP2000 1 618 -cellosaurus:CVCL_W332 MISK81-5 0 619 -cellosaurus:CVCL_W333 sMISK 1 620 -cellosaurus:CVCL_1F89 L0301 0 621 -cellosaurus:CVCL_1F90 L0301/CDDP 1 622 -cellosaurus:CVCL_1361 L-428 0 623 -cellosaurus:CVCL_X206 L-428 KS 1 624 -cellosaurus:CVCL_X207 L-428 KSA 2 625 -cellosaurus:CVCL_3034 MY 0 626 -cellosaurus:CVCL_3035 MY-M12 1 627 -cellosaurus:CVCL_3036 MY-M13 1 628 -cellosaurus:CVCL_8700 HOC719 0 629 -cellosaurus:CVCL_8701 HOC719-NE 1 630 -cellosaurus:CVCL_8702 HOC719-PE 1 631 -cellosaurus:CVCL_4Z17 UKF-Rhb-1 0 632 -cellosaurus:CVCL_RQ48 UKF-Rhb-1rCDDP1000 1 633 -cellosaurus:CVCL_RQ49 UKF-Rhb-1rDOCE10 1 634 -cellosaurus:CVCL_RT27 UKF-Rhb-1rDOCE20 1 635 -cellosaurus:CVCL_RQ56 UKF-Rhb-1rDOX10 1 636 -cellosaurus:CVCL_RT28 UKF-Rhb-1rDOX20 1 637 -cellosaurus:CVCL_RQ57 UKF-Rhb-1rGEMCI10 1 638 -cellosaurus:CVCL_RQ58 UKF-Rhb-1rIRINO200 1 639 -cellosaurus:CVCL_RQ59 UKF-Rhb-1rMEL400 1 640 -cellosaurus:CVCL_RS17 UKF-Rhb-1rNutlin10muM 1 641 -cellosaurus:CVCL_RQ60 UKF-Rhb-1rOXALI1000 1 642 -cellosaurus:CVCL_4Z18 UKF-Rhb-1rVCR10 1 643 -cellosaurus:CVCL_0020 U-138MG 0 644 -cellosaurus:CVCL_0633 U-118MG 1 645 -cellosaurus:CVCL_D317 1181N1 2 646 -cellosaurus:CVCL_0110 1321N1 3 647 -cellosaurus:CVCL_5I82 1321N1 (+Galpha16) AequoScreen 4 648 -cellosaurus:CVCL_5I83 1321N1 AequoScreen 4 649 -cellosaurus:CVCL_C3IQ 1321N1 MRTFA KO 4 650 -cellosaurus:CVCL_KU48 1321N1 P2RY1 Gq 4 651 -cellosaurus:CVCL_C3IR 1321N1 RHOA KO 4 652 -cellosaurus:CVCL_C3IS 1321N1 YAP1 KO 4 653 -cellosaurus:CVCL_ZD90 1321N1-HA-P2Y1 4 654 -cellosaurus:CVCL_ZD94 1321N1-HA-P2Y11 4 655 -cellosaurus:CVCL_ZD95 1321N1-HA-P2Y12 4 656 -cellosaurus:CVCL_ZD96 1321N1-HA-P2Y13 4 657 -cellosaurus:CVCL_ZD97 1321N1-HA-P2Y14 4 658 -cellosaurus:CVCL_ZD91 1321N1-HA-P2Y2 4 659 -cellosaurus:CVCL_ZD92 1321N1-HA-P2Y4 4 660 -cellosaurus:CVCL_ZD93 1321N1-HA-P2Y6 4 661 -cellosaurus:CVCL_KT02 1321N1/FFAR1 4 662 -cellosaurus:CVCL_H355 1321N1/P2Y1 4 663 -cellosaurus:CVCL_H356 1321N1/P2Y11 4 664 -cellosaurus:CVCL_H357 1321N1/P2Y12/Galpha15 4 665 -cellosaurus:CVCL_H358 1321N1/P2Y2 4 666 -cellosaurus:CVCL_H359 1321N1/P2Y4 4 667 -cellosaurus:CVCL_H360 1321N1/P2Y6 4 668 -cellosaurus:CVCL_KU71 cAMP Hunter 1321N1 CALCR-RAMP3 Gs 4 669 -cellosaurus:CVCL_T435 V-1181N1 3 670 -cellosaurus:CVCL_T447 EH-118MG 2 671 -cellosaurus:CVCL_S097 KC 2 672 -cellosaurus:CVCL_0419 MDA-MB-468 0 673 -cellosaurus:CVCL_KS13 CellSensor DBE-bla MDA-MB-468 1 674 -cellosaurus:CVCL_RA91 MDA-MB-468 shPARG 1 675 -cellosaurus:CVCL_YJ27 MDA-MB-468 shWDR12-4 1 676 -cellosaurus:CVCL_JZ00 MDA-MB-468/GFP 1 677 -cellosaurus:CVCL_DH83 MDA-MB-468GFP 1 678 -cellosaurus:CVCL_M372 MDA-MB-468LN 2 679 -cellosaurus:CVCL_1517 NCI-H2030 0 680 -cellosaurus:CVCL_XA21 H2030-TGL 1 681 -cellosaurus:CVCL_XA22 H2030-BrM3 2 682 -cellosaurus:CVCL_B450 OHS 0 683 -cellosaurus:CVCL_R724 OHS-4 1 684 -cellosaurus:CVCL_5451 COLO 316 0 685 -cellosaurus:CVCL_U288 COLO/B 1 686 -cellosaurus:CVCL_U289 COLO/C 1 687 -cellosaurus:CVCL_U290 COLO/D 1 688 -cellosaurus:CVCL_U291 COLO/DDP50 1 689 -cellosaurus:CVCL_3945 T-47 0 690 -cellosaurus:CVCL_0553 T-47D 1 691 -cellosaurus:CVCL_ZM08 T-47D Control-PEROXO 2 692 -cellosaurus:CVCL_ZM09 T-47D HA-PEROXO 2 693 -cellosaurus:CVCL_RA94 T-47D shPARG 2 694 -cellosaurus:CVCL_S034 T-47D SimpleCell O-GalNAc 2 695 -cellosaurus:CVCL_A4AN T-47D Tam1 2 696 -cellosaurus:CVCL_A4AP T-47D Tam2 2 697 -cellosaurus:CVCL_KU40 T-47D Tet-Off 2 698 -cellosaurus:CVCL_V334 T-47D Tet-On 2 699 -cellosaurus:CVCL_AS01 T-47D-Luc 2 700 -cellosaurus:CVCL_ZZ43 T-47D/BCRP 2 701 -cellosaurus:CVCL_9582 T-47Daro 2 702 -cellosaurus:CVCL_ZZ24 T47D Ad12 2 703 -cellosaurus:CVCL_ZZ25 T47D Ad60 2 704 -cellosaurus:CVCL_XZ63 T47D HER2 2 705 -cellosaurus:CVCL_XZ64 T47D P95HER2 2 706 -cellosaurus:CVCL_HG14 T47D-E2J 2 707 -cellosaurus:CVCL_HG16 T47D-StN 3 708 -cellosaurus:CVCL_K229 T47D-KBluc 2 709 -cellosaurus:CVCL_YX85 T47D-LTED 2 710 -cellosaurus:CVCL_HG15 T47D-ST3 2 711 -cellosaurus:CVCL_HG17 T47D-ST3-STn 3 712 -cellosaurus:CVCL_1H30 T47D-Y 2 713 -cellosaurus:CVCL_1H31 T47D-YA 3 714 -cellosaurus:CVCL_1H32 T47D-YB 3 715 -cellosaurus:CVCL_0I95 T47D/A1-2 2 716 -cellosaurus:CVCL_JY86 T47D/GFP 2 717 -cellosaurus:CVCL_1D45 T47D/S2 2 718 -cellosaurus:CVCL_1D36 T47D/TR-1 3 719 -cellosaurus:CVCL_1D37 T47D/TR-2 3 720 -cellosaurus:CVCL_1D46 T47D/S5 2 721 -cellosaurus:CVCL_1D34 T47D/182R-1 3 722 -cellosaurus:CVCL_1D35 T47D/182R-2 3 723 -cellosaurus:CVCL_GY01 T47D:A18 2 724 -cellosaurus:CVCL_GY02 T47D:C4 2 725 -cellosaurus:CVCL_GY03 T47D:C4:2 3 726 -cellosaurus:CVCL_8585 UW228 0 727 -cellosaurus:CVCL_4460 UW228-1 1 728 -cellosaurus:CVCL_0572 UW228-2 1 729 -cellosaurus:CVCL_0573 UW228-3 1 730 -cellosaurus:CVCL_A9J1 PK565C 0 731 -cellosaurus:CVCL_A9J2 PK565C CMV-Luc#7 1 732 -cellosaurus:CVCL_A9J3 PK565C CMV-Luc/EF-1a/RFP-Pur#1 1 733 -cellosaurus:CVCL_J391 HOB1 0 734 -cellosaurus:CVCL_J392 HOB1/ADR2.0 1 735 -cellosaurus:CVCL_J393 HOB1/VCR0.1 1 736 -cellosaurus:CVCL_II74 HOB1/VCR0.5 1 737 -cellosaurus:CVCL_II75 HOB1/VCR1.0 1 738 -cellosaurus:CVCL_LK78 SK-BR-1 II 0 739 -cellosaurus:CVCL_T283 SK-BR-1 III 1 740 -cellosaurus:CVCL_0456 NCI-H295 0 741 -cellosaurus:CVCL_0457 NCI-H295A 1 742 -cellosaurus:CVCL_0458 NCI-H295R 1 743 -cellosaurus:CVCL_5V09 HAC13 2 744 -cellosaurus:CVCL_S898 HAC15 2 745 -cellosaurus:CVCL_5V08 HAC50 2 746 -cellosaurus:CVCL_S901 NCI-H295R-S2 1 747 -cellosaurus:CVCL_S902 NCI-H295R-S3 1 748 -cellosaurus:CVCL_1842 OACM5.1 C 0 749 -cellosaurus:CVCL_JX13 OACM5 1.C SC1 1 750 -cellosaurus:CVCL_1656 RERF-LC-Sq1 0 751 -cellosaurus:CVCL_JG36 RERF-LC-Sq1/CMV-Luc 1 752 -cellosaurus:CVCL_1033 Hs 936.T 0 753 -cellosaurus:CVCL_1034 Hs 936.T(C1) 1 754 -cellosaurus:CVCL_8663 CJM [Human OCSCC] 0 755 -cellosaurus:CVCL_8664 CJM Cl4 1 756 -cellosaurus:CVCL_8665 CJM Cl5 1 757 -cellosaurus:CVCL_8666 CJM Cl6 1 758 -cellosaurus:CVCL_8667 CJM Cl7 1 759 -cellosaurus:CVCL_8668 CJM Cl8 1 760 -cellosaurus:CVCL_5801 MM.1 0 761 -cellosaurus:CVCL_EI97 MM.1-144 1 762 -cellosaurus:CVCL_8794 MM1.R 1 763 -cellosaurus:CVCL_8793 MM1.R(E) 1 764 -cellosaurus:CVCL_8792 MM1.S 1 765 -cellosaurus:CVCL_B7F7 MM.1S-luc 2 766 -cellosaurus:CVCL_0531 SK-N-SH 0 767 -cellosaurus:CVCL_0524 SH-EP 1 768 -cellosaurus:CVCL_VL18 MYCN-2 Tet-on 2 769 -cellosaurus:CVCL_VL19 MYCN-3 Tet-on 2 770 -cellosaurus:CVCL_0522 SH-EP007 2 771 -cellosaurus:CVCL_0575 WAC2 3 772 -cellosaurus:CVCL_0F47 SH-EP1 2 773 -cellosaurus:CVCL_2A38 SHEP-SF 2 774 -cellosaurus:CVCL_HF70 Tet2 3 775 -cellosaurus:CVCL_9812 Tet21N 3 776 -cellosaurus:CVCL_EI12 SHEP-TR-miR-17-92 2 777 -cellosaurus:CVCL_RR78 SHEPrCDDP1000 2 778 -cellosaurus:CVCL_RS82 SHEPrDOX100 2 779 -cellosaurus:CVCL_RR79 SHEPrETO100 2 780 -cellosaurus:CVCL_RS18 SHEPrSNS-032_2000nM 2 781 -cellosaurus:CVCL_RR80 SHEPrVCR1 2 782 -cellosaurus:CVCL_RS83 SHEPrVCR10 2 783 -cellosaurus:CVCL_RS84 SHEPrVCR20 2 784 -cellosaurus:CVCL_IY16 SH-F 1 785 -cellosaurus:CVCL_W973 SH-FE 1 786 -cellosaurus:CVCL_W974 SH-IN 1 787 -cellosaurus:CVCL_IY17 SH-N 1 788 -cellosaurus:CVCL_0019 SH-SY5Y 1 789 -cellosaurus:CVCL_B0YJ Abcam SH-SY5Y DLG4 KO 2 790 -cellosaurus:CVCL_B7VN Abcam SH-SY5Y EFNB2 KO 2 791 -cellosaurus:CVCL_B7VQ Abcam SH-SY5Y LMOD1 KO 2 792 -cellosaurus:CVCL_B0YH Abcam SH-SY5Y PDGFRA KO 2 793 -cellosaurus:CVCL_B0YI Abcam SH-SY5Y PDGFRB KO 2 794 -cellosaurus:CVCL_B0YK Abcam SH-SY5Y PINK1 KO 2 795 -cellosaurus:CVCL_B0N9 Abcam SH-SY5Y PRKN KO 2 796 -cellosaurus:CVCL_B7VP Abcam SH-SY5Y SNAP25 KO 2 797 -cellosaurus:CVCL_YJ91 LINTERNA SH-SY5Y 2 798 -cellosaurus:CVCL_U924 SH-SY5Y Rho0 64/5 2 799 -cellosaurus:CVCL_YK67 SH-SY5Y TagGFP2-SNCA 2 800 -cellosaurus:CVCL_C0U0 SH-SY5Y-FLAG-NGB 2 801 -cellosaurus:CVCL_5I52 SH-SY5Y-HFE 2 802 -cellosaurus:CVCL_5I53 SH-SY5Y-HFE C282Y 2 803 -cellosaurus:CVCL_5I54 SH-SY5Y-HFE H63D 2 804 -cellosaurus:CVCL_C3I6 SH-SY5Y-parkin clone 1 2 805 -cellosaurus:CVCL_C3I7 SH-SY5Y-parkin clone 2 2 806 -cellosaurus:CVCL_C3I8 SH-SY5Y-parkin clone 6 2 807 -cellosaurus:CVCL_C3I9 SH-SY5Y-parkin p.A82E 2 808 -cellosaurus:CVCL_C3IA SH-SY5Y-parkin p.T240R 2 809 -cellosaurus:CVCL_UJ96 SH-SY5Y-pLNCX2 empty vector 2 810 -cellosaurus:CVCL_0523 SH-SY5Y-SPA4CT 2 811 -cellosaurus:CVCL_UJ94 SH-SY5Y-TrkA, clone P23A 2 812 -cellosaurus:CVCL_UJ95 SH-SY5Y-TrkB, clone BR6 2 813 -cellosaurus:CVCL_ZL49 SH-SY5Y/VCR 2 814 -cellosaurus:CVCL_RR81 SH-SY5YrCDDP200 2 815 -cellosaurus:CVCL_RS23 SH-SY5YrCDDP500 2 816 -cellosaurus:CVCL_RS80 SH-SY5YrDOX10 2 817 -cellosaurus:CVCL_RS81 SH-SY5YrDOX20 2 818 -cellosaurus:CVCL_RR53 SH-SY5YrVCR10 2 819 -cellosaurus:CVCL_A7QJ SHSY-5Y Tet-On SNCA 2 820 -cellosaurus:CVCL_VA24 SHSY5Y-B7H6 2 821 -cellosaurus:CVCL_YJ70 VAMPIRO SH-SY5Y 2 822 -cellosaurus:CVCL_B0GN SK-N-SH D 1 823 -cellosaurus:CVCL_D044 SK-N-SH-RA 1 824 -cellosaurus:CVCL_V416 LM-1 [Human osteosarcoma] 0 825 -cellosaurus:CVCL_YE13 LM-1-SF 1 826 -cellosaurus:CVCL_4381 HuH-6 0 827 -cellosaurus:CVCL_1296 HuH-6 Clone 5 1 828 -cellosaurus:CVCL_6907 HB611 2 829 -cellosaurus:CVCL_JF84 HuH-6-Luc 1 830 -cellosaurus:CVCL_M176 HUH6-eGFP 1 831 -cellosaurus:CVCL_8697 HOC519 0 832 -cellosaurus:CVCL_A1KG HOC519PF 1 833 -cellosaurus:CVCL_X937 HIOAnu 0 834 -cellosaurus:CVCL_X941 HIOAnu2 1 835 -cellosaurus:CVCL_8757 S/RR 0 836 -cellosaurus:CVCL_8758 S/RR/Cl 1 837 -cellosaurus:CVCL_5079 SNU-620 0 838 -cellosaurus:CVCL_L044 SNU-620-5FU 1 839 -cellosaurus:CVCL_L084 SNU-620-ADR 1 840 -cellosaurus:CVCL_L045 SNU-620-CIS 1 841 -cellosaurus:CVCL_L046 SNU-620-DOX 1 842 -cellosaurus:CVCL_4402 RERF-LC-A1 0 843 -cellosaurus:CVCL_1237 GT3TKB 1 844 -cellosaurus:CVCL_S732 ONS-12 0 845 -cellosaurus:CVCL_QY37 ONS-12/ACNU 1 846 -cellosaurus:CVCL_0022 U-87MG ATCC 0 847 -cellosaurus:CVCL_B0ZG Abcam U-87MG MAPT KO 1 848 -cellosaurus:CVCL_C0BJ Abcam U-87MG SNCA KO 1 849 -cellosaurus:CVCL_5J15 U-87 MG-luc2 1 850 -cellosaurus:CVCL_UR33 U-87 MG-Luc2 1 851 -cellosaurus:CVCL_UE09 U-87MG ATCC IDH1 p.R132H 1 852 -cellosaurus:CVCL_UR35 U-87MG ATCC IDH1 p.R132H-Luc2 2 853 -cellosaurus:CVCL_C3IF U-87MG-parkin clone 19 1 854 -cellosaurus:CVCL_C3IG U-87MG-parkin clone 25 1 855 -cellosaurus:CVCL_C3IE U-87MG-parkin clone 7 1 856 -cellosaurus:CVCL_VL16 U-87MG/DDP 1 857 -cellosaurus:CVCL_5J12 U87 MG-Red-FLuc 1 858 -cellosaurus:CVCL_X702 U87-CD4 clone 2 1 859 -cellosaurus:CVCL_4V16 U87-MG/Pt 1 860 -cellosaurus:CVCL_X626 U87.CD4 1 861 -cellosaurus:CVCL_X627 U87.CD4.CCR1 2 862 -cellosaurus:CVCL_X628 U87.CD4.CCR2 2 863 -cellosaurus:CVCL_X629 U87.CD4.CCR3 2 864 -cellosaurus:CVCL_X630 U87.CD4.CCR5 2 865 -cellosaurus:CVCL_X631 U87.CD4.CCR5.CXCR4 2 866 -cellosaurus:CVCL_X632 U87.CD4.CXCR4 2 867 -cellosaurus:CVCL_3428 U87/DK 1 868 -cellosaurus:CVCL_3429 U87/WT 1 869 -cellosaurus:CVCL_A5CL U87DND 1 870 -cellosaurus:CVCL_XZ66 U87MG Human EGFR vIII 1 871 -cellosaurus:CVCL_JY78 U87MG.deltaEGFR 1 872 -cellosaurus:CVCL_JY80 U87MG.DY1 1 873 -cellosaurus:CVCL_JY81 U87MG.DY2 1 874 -cellosaurus:CVCL_JY82 U87MG.DY3 1 875 -cellosaurus:CVCL_JY83 U87MG.DY4 1 876 -cellosaurus:CVCL_JY84 U87MG.DY5 1 877 -cellosaurus:CVCL_3007 KYM-1 0 878 -cellosaurus:CVCL_5616 KYM-1D4 1 879 -cellosaurus:CVCL_X951 OV-MZ-2 0 880 -cellosaurus:CVCL_X955 OV-MZ-2a 1 881 -cellosaurus:CVCL_0539 SU-DHL-4 0 882 -cellosaurus:CVCL_KU32 SU-DHL-4/12V 1 883 -cellosaurus:CVCL_0291 HCT 116 0 884 -cellosaurus:CVCL_B8AQ Abcam HCT 116 ABCC1 KO 1 885 -cellosaurus:CVCL_B8AR Abcam HCT 116 ABL2 KO 1 886 -cellosaurus:CVCL_B8AS Abcam HCT 116 ACKR3 KO 1 887 -cellosaurus:CVCL_B8AT Abcam HCT 116 ACTA2 KO 1 888 -cellosaurus:CVCL_B8AU Abcam HCT 116 ACVR1B KO 1 889 -cellosaurus:CVCL_B8AV Abcam HCT 116 ADA KO 1 890 -cellosaurus:CVCL_B8AW Abcam HCT 116 ADAM10 KO 1 891 -cellosaurus:CVCL_B1D7 Abcam HCT 116 ADAM17 KO 1 892 -cellosaurus:CVCL_B8AX Abcam HCT 116 ADAR KO 1 893 -cellosaurus:CVCL_B8AY Abcam HCT 116 ADK KO 1 894 -cellosaurus:CVCL_B8AZ Abcam HCT 116 ADORA2A KO 1 895 -cellosaurus:CVCL_B8B0 Abcam HCT 116 ADRA2B KO 1 896 -cellosaurus:CVCL_B8B1 Abcam HCT 116 ADRB2 KO 1 897 -cellosaurus:CVCL_B8B2 Abcam HCT 116 AFP KO 1 898 -cellosaurus:CVCL_B8B3 Abcam HCT 116 AGO2 KO 1 899 -cellosaurus:CVCL_B8B4 Abcam HCT 116 AGO4 KO 1 900 -cellosaurus:CVCL_B8B5 Abcam HCT 116 AKT1 KO 1 901 -cellosaurus:CVCL_B8B6 Abcam HCT 116 AKT2 KO 1 902 -cellosaurus:CVCL_B8B7 Abcam HCT 116 AKT3 KO 1 903 -cellosaurus:CVCL_B8B8 Abcam HCT 116 ANGPT1 KO 1 904 -cellosaurus:CVCL_B8B9 Abcam HCT 116 ANGPT2 KO 1 905 -cellosaurus:CVCL_B8BA Abcam HCT 116 ANXA1 KO 1 906 -cellosaurus:CVCL_B8BB Abcam HCT 116 APC KO 1 907 -cellosaurus:CVCL_B8BC Abcam HCT 116 AQP4 KO 1 908 -cellosaurus:CVCL_B8BD Abcam HCT 116 AR KO 1 909 -cellosaurus:CVCL_B8BE Abcam HCT 116 ARAF KO 1 910 -cellosaurus:CVCL_B8BF Abcam HCT 116 AREG KO 1 911 -cellosaurus:CVCL_B7PS Abcam HCT 116 ARID1A KO 1 912 -cellosaurus:CVCL_B8BG Abcam HCT 116 ARID1B KO 1 913 -cellosaurus:CVCL_B8BH Abcam HCT 116 ARNT KO 1 914 -cellosaurus:CVCL_B8BI Abcam HCT 116 ARNTL KO 1 915 -cellosaurus:CVCL_B8BJ Abcam HCT 116 ASH2L KO 1 916 -cellosaurus:CVCL_B8BK Abcam HCT 116 ATF2 KO 1 917 -cellosaurus:CVCL_B1D8 Abcam HCT 116 ATF3 KO 1 918 -cellosaurus:CVCL_B8BL Abcam HCT 116 ATF6 KO 1 919 -cellosaurus:CVCL_B8BM Abcam HCT 116 ATG14 KO 1 920 -cellosaurus:CVCL_B8BN Abcam HCT 116 ATRX KO 1 921 -cellosaurus:CVCL_B8BP Abcam HCT 116 AXIN1 KO 1 922 -cellosaurus:CVCL_B8BQ Abcam HCT 116 B2M KO 1 923 -cellosaurus:CVCL_B8BR Abcam HCT 116 BAD KO 1 924 -cellosaurus:CVCL_B8BS Abcam HCT 116 BAX KO 1 925 -cellosaurus:CVCL_B8BT Abcam HCT 116 BCAR1 KO 1 926 -cellosaurus:CVCL_B8BU Abcam HCT 116 BCL10 KO 1 927 -cellosaurus:CVCL_B8BV Abcam HCT 116 BCL11A KO 1 928 -cellosaurus:CVCL_B8BW Abcam HCT 116 BCL11B KO 1 929 -cellosaurus:CVCL_B8BX Abcam HCT 116 BCL2 KO 1 930 -cellosaurus:CVCL_B8BY Abcam HCT 116 BCL3 KO 1 931 -cellosaurus:CVCL_B8BZ Abcam HCT 116 BCL6 KO 1 932 -cellosaurus:CVCL_B8C0 Abcam HCT 116 BHLHE40 KO 1 933 -cellosaurus:CVCL_B8C1 Abcam HCT 116 BLM KO 1 934 -cellosaurus:CVCL_B8C2 Abcam HCT 116 BMPR1A KO 1 935 -cellosaurus:CVCL_B8C3 Abcam HCT 116 BRAF KO 1 936 -cellosaurus:CVCL_B8C4 Abcam HCT 116 BRD3 KO 1 937 -cellosaurus:CVCL_B8C5 Abcam HCT 116 BRD4 KO 1 938 -cellosaurus:CVCL_B8C6 Abcam HCT 116 BRD7 KO 1 939 -cellosaurus:CVCL_B8C7 Abcam HCT 116 BRIP1 KO 1 940 -cellosaurus:CVCL_B8C8 Abcam HCT 116 C3AR1 KO 1 941 -cellosaurus:CVCL_B8C9 Abcam HCT 116 C5AR1 KO 1 942 -cellosaurus:CVCL_B8CA Abcam HCT 116 CA9 KO 1 943 -cellosaurus:CVCL_B8CB Abcam HCT 116 CACNA1D KO 1 944 -cellosaurus:CVCL_B8CC Abcam HCT 116 CALR KO 1 945 -cellosaurus:CVCL_B8CD Abcam HCT 116 CARD11 KO 1 946 -cellosaurus:CVCL_B8CE Abcam HCT 116 CARD9 KO 1 947 -cellosaurus:CVCL_B8CF Abcam HCT 116 CARM1 KO 1 948 -cellosaurus:CVCL_B8CG Abcam HCT 116 CASP8 KO 1 949 -cellosaurus:CVCL_B8CH Abcam HCT 116 CBL KO 1 950 -cellosaurus:CVCL_B8CI Abcam HCT 116 CBLB KO 1 951 -cellosaurus:CVCL_B8CJ Abcam HCT 116 CCL3 KO 1 952 -cellosaurus:CVCL_B8CK Abcam HCT 116 CCND2 KO 1 953 -cellosaurus:CVCL_B8CL Abcam HCT 116 CCNE1 KO 1 954 -cellosaurus:CVCL_B8CM Abcam HCT 116 CCR3 KO 1 955 -cellosaurus:CVCL_B8CN Abcam HCT 116 CCR4 KO 1 956 -cellosaurus:CVCL_B8CP Abcam HCT 116 CCR5 KO 1 957 -cellosaurus:CVCL_B8CQ Abcam HCT 116 CCR6 KO 1 958 -cellosaurus:CVCL_B8CR Abcam HCT 116 CCR7 KO 1 959 -cellosaurus:CVCL_B8CS Abcam HCT 116 CCR9 KO 1 960 -cellosaurus:CVCL_B8CT Abcam HCT 116 CD14 KO 1 961 -cellosaurus:CVCL_B8CU Abcam HCT 116 CD163 KO 1 962 -cellosaurus:CVCL_B8CV Abcam HCT 116 CD19 KO 1 963 -cellosaurus:CVCL_B8CW Abcam HCT 116 CD209 KO 1 964 -cellosaurus:CVCL_B8CX Abcam HCT 116 CD226 KO 1 965 -cellosaurus:CVCL_B8CY Abcam HCT 116 CD28 KO 1 966 -cellosaurus:CVCL_B1D9 Abcam HCT 116 CD2BP2 KO 1 967 -cellosaurus:CVCL_B8CZ Abcam HCT 116 CD34 KO 1 968 -cellosaurus:CVCL_B8D0 Abcam HCT 116 CD38 KO 1 969 -cellosaurus:CVCL_B8D1 Abcam HCT 116 CD3E KO 1 970 -cellosaurus:CVCL_B8D2 Abcam HCT 116 CD4 KO 1 971 -cellosaurus:CVCL_B8D3 Abcam HCT 116 CD40LG KO 1 972 -cellosaurus:CVCL_B8D4 Abcam HCT 116 CD5 KO 1 973 -cellosaurus:CVCL_B8D5 Abcam HCT 116 CD69 KO 1 974 -cellosaurus:CVCL_B8D6 Abcam HCT 116 CD7 KO 1 975 -cellosaurus:CVCL_B8D7 Abcam HCT 116 CD74 KO 1 976 -cellosaurus:CVCL_B8D8 Abcam HCT 116 CD79A KO 1 977 -cellosaurus:CVCL_B8D9 Abcam HCT 116 CD80 KO 1 978 -cellosaurus:CVCL_B8DA Abcam HCT 116 CD86 KO 1 979 -cellosaurus:CVCL_B8DB Abcam HCT 116 CD8A KO 1 980 -cellosaurus:CVCL_B8DC Abcam HCT 116 CDH11 KO 1 981 -cellosaurus:CVCL_B8DD Abcam HCT 116 CDK4 KO 1 982 -cellosaurus:CVCL_B8DE Abcam HCT 116 CDK5 KO 1 983 -cellosaurus:CVCL_B8DF Abcam HCT 116 CDK6 KO 1 984 -cellosaurus:CVCL_B8DG Abcam HCT 116 CDK8 KO 1 985 -cellosaurus:CVCL_B1DA Abcam HCT 116 CDKN1A KO 1 1 986 -cellosaurus:CVCL_B8AN Abcam HCT 116 CDKN1A KO 2 1 987 -cellosaurus:CVCL_B8DH Abcam HCT 116 CDKN1B KO 1 988 -cellosaurus:CVCL_B8DI Abcam HCT 116 CDKN1C KO 1 989 -cellosaurus:CVCL_B8DJ Abcam HCT 116 CDX2 KO 1 990 -cellosaurus:CVCL_B8DK Abcam HCT 116 CEACAM5 KO 1 991 -cellosaurus:CVCL_B8DL Abcam HCT 116 CEBPA KO 1 992 -cellosaurus:CVCL_B8DM Abcam HCT 116 CHD5 KO 1 993 -cellosaurus:CVCL_B8DN Abcam HCT 116 CHD7 KO 1 994 -cellosaurus:CVCL_B8DP Abcam HCT 116 CHD8 KO 1 995 -cellosaurus:CVCL_B8DQ Abcam HCT 116 CHD9 KO 1 996 -cellosaurus:CVCL_B8DR Abcam HCT 116 CHUK KO 1 997 -cellosaurus:CVCL_B8DS Abcam HCT 116 CIRBP KO 1 998 -cellosaurus:CVCL_B8DT Abcam HCT 116 CISH KO 1 999 -cellosaurus:CVCL_B8DU Abcam HCT 116 CLDN18 KO 1 1000 -cellosaurus:CVCL_B8DV Abcam HCT 116 CLOCK KO 1 1001 -cellosaurus:CVCL_B8DW Abcam HCT 116 CNOT6 KO 1 1002 -cellosaurus:CVCL_B8DX Abcam HCT 116 CNTNAP2 KO 1 1003 -cellosaurus:CVCL_B8DY Abcam HCT 116 COL1A1 KO 1 1004 -cellosaurus:CVCL_B8DZ Abcam HCT 116 CR2 KO 1 1005 -cellosaurus:CVCL_B8E0 Abcam HCT 116 CRBN KO 1 1006 -cellosaurus:CVCL_B8E1 Abcam HCT 116 CREB1 KO 1 1007 -cellosaurus:CVCL_B8E2 Abcam HCT 116 CREBBP KO 1 1008 -cellosaurus:CVCL_B8E3 Abcam HCT 116 CRLF2 KO 1 1009 -cellosaurus:CVCL_B8E4 Abcam HCT 116 CSF1 KO 1 1010 -cellosaurus:CVCL_B8E5 Abcam HCT 116 CSF1R KO 1 1011 -cellosaurus:CVCL_B8E6 Abcam HCT 116 CSF3R KO 1 1012 -cellosaurus:CVCL_B1DB Abcam HCT 116 CSNK2A1 KO 1 1013 -cellosaurus:CVCL_B8E7 Abcam HCT 116 CSPG4 KO 1 1014 -cellosaurus:CVCL_B8E8 Abcam HCT 116 CTLA4 KO 1 1015 -cellosaurus:CVCL_B1DC Abcam HCT 116 CTNNB1 KO 1 1016 -cellosaurus:CVCL_B8E9 Abcam HCT 116 CX3CL1 KO 1 1017 -cellosaurus:CVCL_B8EA Abcam HCT 116 CXCL11 KO 1 1018 -cellosaurus:CVCL_B8EB Abcam HCT 116 CXCL13 KO 1 1019 -cellosaurus:CVCL_B8EC Abcam HCT 116 CXCR1 KO 1 1020 -cellosaurus:CVCL_B8ED Abcam HCT 116 CXCR3 KO 1 1021 -cellosaurus:CVCL_B8EE Abcam HCT 116 CXCR4 KO 1 1022 -cellosaurus:CVCL_B8EF Abcam HCT 116 CXCR6 KO 1 1023 -cellosaurus:CVCL_B8EG Abcam HCT 116 CYBB KO 1 1024 -cellosaurus:CVCL_B8EH Abcam HCT 116 CYLD KO 1 1025 -cellosaurus:CVCL_B8EI Abcam HCT 116 DAXX KO 1 1026 -cellosaurus:CVCL_B8EJ Abcam HCT 116 DCC KO 1 1027 -cellosaurus:CVCL_B8EK Abcam HCT 116 DDB2 KO 1 1028 -cellosaurus:CVCL_B8EL Abcam HCT 116 DDR2 KO 1 1029 -cellosaurus:CVCL_B8EM Abcam HCT 116 DDX4 KO 1 1030 -cellosaurus:CVCL_B8EN Abcam HCT 116 DGCR8 KO 1 1031 -cellosaurus:CVCL_B1DD Abcam HCT 116 DIAPH1 KO 1 1032 -cellosaurus:CVCL_B8EP Abcam HCT 116 DLL3 KO 1 1033 -cellosaurus:CVCL_B8EQ Abcam HCT 116 DMC1 KO 1 1034 -cellosaurus:CVCL_B1DE Abcam HCT 116 DMPK KO 1 1035 -cellosaurus:CVCL_B8ER Abcam HCT 116 DNAJB1 KO 1 1036 -cellosaurus:CVCL_B8ES Abcam HCT 116 DNMT1 KO 1 1037 -cellosaurus:CVCL_B8ET Abcam HCT 116 DNMT3B KO 1 1038 -cellosaurus:CVCL_B8EU Abcam HCT 116 DOT1L KO 1 1039 -cellosaurus:CVCL_B8EV Abcam HCT 116 DPP4 KO 1 1040 -cellosaurus:CVCL_B8EW Abcam HCT 116 DROSHA KO 1 1041 -cellosaurus:CVCL_B8EX Abcam HCT 116 DUSP4 KO 1 1042 -cellosaurus:CVCL_B8EY Abcam HCT 116 E2F1 KO 1 1043 -cellosaurus:CVCL_B8EZ Abcam HCT 116 E2F2 KO 1 1044 -cellosaurus:CVCL_B8F0 Abcam HCT 116 EBF1 KO 1 1045 -cellosaurus:CVCL_B8F1 Abcam HCT 116 EBI3 KO 1 1046 -cellosaurus:CVCL_B8F2 Abcam HCT 116 EGF KO 1 1047 -cellosaurus:CVCL_B8F3 Abcam HCT 116 EGFR KO 1 1048 -cellosaurus:CVCL_B8F4 Abcam HCT 116 EGLN3 KO 1 1049 -cellosaurus:CVCL_B8F5 Abcam HCT 116 EGR1 KO 1 1050 -cellosaurus:CVCL_B8F6 Abcam HCT 116 EHMT1 KO 1 1051 -cellosaurus:CVCL_B1DF Abcam HCT 116 EIF1 KO 1 1052 -cellosaurus:CVCL_B8F7 Abcam HCT 116 EIF2AK3 KO 1 1053 -cellosaurus:CVCL_B8F8 Abcam HCT 116 ELK1 KO 1 1054 -cellosaurus:CVCL_B8F9 Abcam HCT 116 ENTPD1 KO 1 1055 -cellosaurus:CVCL_B8FA Abcam HCT 116 EOMES KO 1 1056 -cellosaurus:CVCL_B8FB Abcam HCT 116 EP300 KO 1 1057 -cellosaurus:CVCL_B8FC Abcam HCT 116 EPC1 KO 1 1058 -cellosaurus:CVCL_B1DG Abcam HCT 116 EPHA2 KO 1 1059 -cellosaurus:CVCL_B8FD Abcam HCT 116 EPHA3 KO 1 1060 -cellosaurus:CVCL_B8FE Abcam HCT 116 EPHB2 KO 1 1061 -cellosaurus:CVCL_B8FF Abcam HCT 116 ERBB2 KO 1 1062 -cellosaurus:CVCL_B8FG Abcam HCT 116 ERBB3 KO 1 1063 -cellosaurus:CVCL_B8FH Abcam HCT 116 ERBB4 KO 1 1064 -cellosaurus:CVCL_B8FI Abcam HCT 116 ERCC4 KO 1 1065 -cellosaurus:CVCL_B8FJ Abcam HCT 116 ERCC5 KO 1 1066 -cellosaurus:CVCL_B8FK Abcam HCT 116 ESR1 KO 1 1067 -cellosaurus:CVCL_B8FL Abcam HCT 116 ESRRA KO 1 1068 -cellosaurus:CVCL_B8FM Abcam HCT 116 ETS1 KO 1 1069 -cellosaurus:CVCL_B8FN Abcam HCT 116 ETV6 KO 1 1070 -cellosaurus:CVCL_B8FP Abcam HCT 116 EZH1 KO 1 1071 -cellosaurus:CVCL_B8FQ Abcam HCT 116 FANCA KO 1 1072 -cellosaurus:CVCL_B8FR Abcam HCT 116 FANCD2 KO 1 1073 -cellosaurus:CVCL_B8FS Abcam HCT 116 FAP KO 1 1074 -cellosaurus:CVCL_B8FT Abcam HCT 116 FAS KO 1 1075 -cellosaurus:CVCL_B8FU Abcam HCT 116 FBXO38 KO 1 1076 -cellosaurus:CVCL_B8FV Abcam HCT 116 FCER2 KO 1 1077 -cellosaurus:CVCL_B8FW Abcam HCT 116 FCGR2A KO 1 1078 -cellosaurus:CVCL_B8FX Abcam HCT 116 FCGR2B KO 1 1079 -cellosaurus:CVCL_B8FY Abcam HCT 116 FCGR3A KO 1 1080 -cellosaurus:CVCL_B8FZ Abcam HCT 116 FEN1 KO 1 1081 -cellosaurus:CVCL_B8G0 Abcam HCT 116 FGF2 KO 1 1082 -cellosaurus:CVCL_B8G1 Abcam HCT 116 FGFR2 KO 1 1083 -cellosaurus:CVCL_B1DH Abcam HCT 116 FGFR4 KO 1 1 1084 -cellosaurus:CVCL_B8AP Abcam HCT 116 FGFR4 KO 2 1 1085 -cellosaurus:CVCL_B8G2 Abcam HCT 116 FLI1 KO 1 1086 -cellosaurus:CVCL_B8G3 Abcam HCT 116 FLT1 KO 1 1087 -cellosaurus:CVCL_B8GK Abcam HCT 116 FLT3LG KO 1 1088 -cellosaurus:CVCL_B8G4 Abcam HCT 116 FLT4 KO 1 1089 -cellosaurus:CVCL_B8G5 Abcam HCT 116 FMR1 KO 1 1090 -cellosaurus:CVCL_B8G6 Abcam HCT 116 FN1 KO 1 1091 -cellosaurus:CVCL_B8G7 Abcam HCT 116 FOLH1 KO 1 1092 -cellosaurus:CVCL_B8G8 Abcam HCT 116 FOLR1 KO 1 1093 -cellosaurus:CVCL_B8G9 Abcam HCT 116 FOS KO 1 1094 -cellosaurus:CVCL_B8GA Abcam HCT 116 FOSL1 KO 1 1095 -cellosaurus:CVCL_B8GB Abcam HCT 116 FOXA1 KO 1 1096 -cellosaurus:CVCL_B8GC Abcam HCT 116 FOXA2 KO 1 1097 -cellosaurus:CVCL_B8GD Abcam HCT 116 FOXC1 KO 1 1098 -cellosaurus:CVCL_B8GE Abcam HCT 116 FOXC2 KO 1 1099 -cellosaurus:CVCL_B8GF Abcam HCT 116 FOXG1 KO 1 1100 -cellosaurus:CVCL_B8GG Abcam HCT 116 FOXM1 KO 1 1101 -cellosaurus:CVCL_B8GH Abcam HCT 116 FOXO4 KO 1 1102 -cellosaurus:CVCL_B8GI Abcam HCT 116 FOXP1 KO 1 1103 -cellosaurus:CVCL_B8GJ Abcam HCT 116 FOXP3 KO 1 1104 -cellosaurus:CVCL_B1DI Abcam HCT 116 FSCN1 KO 1 1105 -cellosaurus:CVCL_B8GL Abcam HCT 116 GABRA1 KO 1 1106 -cellosaurus:CVCL_B8GM Abcam HCT 116 GABRG2 KO 1 1107 -cellosaurus:CVCL_B8GN Abcam HCT 116 GADD45B KO 1 1108 -cellosaurus:CVCL_B8GP Abcam HCT 116 GATA1 KO 1 1109 -cellosaurus:CVCL_B8GQ Abcam HCT 116 GATA2 KO 1 1110 -cellosaurus:CVCL_B8GR Abcam HCT 116 GATA3 KO 1 1111 -cellosaurus:CVCL_B8GS Abcam HCT 116 GATA4 KO 1 1112 -cellosaurus:CVCL_B8GT Abcam HCT 116 GATA6 KO 1 1113 -cellosaurus:CVCL_B8GU Abcam HCT 116 GLI2 KO 1 1114 -cellosaurus:CVCL_B8GV Abcam HCT 116 GLI3 KO 1 1115 -cellosaurus:CVCL_B1DJ Abcam HCT 116 GLI4 KO 1 1116 -cellosaurus:CVCL_B8GW Abcam HCT 116 GLS KO 1 1117 -cellosaurus:CVCL_B1DK Abcam HCT 116 GNA13 KO 1 1118 -cellosaurus:CVCL_B1DL Abcam HCT 116 GNB1 KO 1 1119 -cellosaurus:CVCL_B8GX Abcam HCT 116 GP1BA KO 1 1120 -cellosaurus:CVCL_B8GY Abcam HCT 116 GPC1 KO 1 1121 -cellosaurus:CVCL_B8GZ Abcam HCT 116 GPER1 KO 1 1122 -cellosaurus:CVCL_B8H0 Abcam HCT 116 GPNMB KO 1 1123 -cellosaurus:CVCL_B1DM Abcam HCT 116 GRB2 KO 1 1124 -cellosaurus:CVCL_B8H1 Abcam HCT 116 GSR KO 1 1125 -cellosaurus:CVCL_B8H2 Abcam HCT 116 GZMB KO 1 1126 -cellosaurus:CVCL_B8H3 Abcam HCT 116 H2BC21 KO 1 1127 -cellosaurus:CVCL_B8H4 Abcam HCT 116 HAT1 KO 1 1128 -cellosaurus:CVCL_B8H5 Abcam HCT 116 HAVCR2 KO 1 1129 -cellosaurus:CVCL_B8H6 Abcam HCT 116 HDAC1 KO 1 1130 -cellosaurus:CVCL_B8H7 Abcam HCT 116 HDAC2 KO 1 1131 -cellosaurus:CVCL_B8H8 Abcam HCT 116 HDAC4 KO 1 1132 -cellosaurus:CVCL_B8H9 Abcam HCT 116 HDAC5 KO 1 1133 -cellosaurus:CVCL_B8HA Abcam HCT 116 HDAC6 KO 1 1134 -cellosaurus:CVCL_B8HB Abcam HCT 116 HDAC7 KO 1 1135 -cellosaurus:CVCL_B1DN Abcam HCT 116 HELLS KO 1 1136 -cellosaurus:CVCL_B8HC Abcam HCT 116 HELQ KO 1 1137 -cellosaurus:CVCL_B8HD Abcam HCT 116 HEY1 KO 1 1138 -cellosaurus:CVCL_B8HE Abcam HCT 116 HGF KO 1 1139 -cellosaurus:CVCL_B1DP Abcam HCT 116 HIF1A KO 1 1140 -cellosaurus:CVCL_B1DQ Abcam HCT 116 HK2 KO 1 1141 -cellosaurus:CVCL_B8HF Abcam HCT 116 HLA-A KO 1 1142 -cellosaurus:CVCL_B8HG Abcam HCT 116 HLA-DRA KO 1 1143 -cellosaurus:CVCL_B8HH Abcam HCT 116 HLA-G KO 1 1144 -cellosaurus:CVCL_B8HI Abcam HCT 116 HMGA2 KO 1 1145 -cellosaurus:CVCL_B8HJ Abcam HCT 116 HNF1A KO 1 1146 -cellosaurus:CVCL_B8HK Abcam HCT 116 HNF4A KO 1 1147 -cellosaurus:CVCL_B8HL Abcam HCT 116 HOXA9 KO 1 1148 -cellosaurus:CVCL_B8HM Abcam HCT 116 HPSE KO 1 1149 -cellosaurus:CVCL_B8HN Abcam HCT 116 HRAS KO 1 1150 -cellosaurus:CVCL_B8HP Abcam HCT 116 ICAM1 KO 1 1151 -cellosaurus:CVCL_B8HQ Abcam HCT 116 ICOS KO 1 1152 -cellosaurus:CVCL_B8HR Abcam HCT 116 ICOSLG KO 1 1153 -cellosaurus:CVCL_B8HS Abcam HCT 116 IDH1 KO 1 1154 -cellosaurus:CVCL_B8HT Abcam HCT 116 IDH2 KO 1 1155 -cellosaurus:CVCL_B8HU Abcam HCT 116 IFITM1 KO 1 1156 -cellosaurus:CVCL_B8HV Abcam HCT 116 IFNAR1 KO 1 1157 -cellosaurus:CVCL_B8HW Abcam HCT 116 IFNB1 KO 1 1158 -cellosaurus:CVCL_B8HX Abcam HCT 116 IFNGR1 KO 1 1159 -cellosaurus:CVCL_B8HY Abcam HCT 116 IFNGR2 KO 1 1160 -cellosaurus:CVCL_B8HZ Abcam HCT 116 IGF1 KO 1 1161 -cellosaurus:CVCL_B8I0 Abcam HCT 116 IGF1R KO 1 1162 -cellosaurus:CVCL_B8I1 Abcam HCT 116 IGF2BP1 KO 1 1163 -cellosaurus:CVCL_B8I2 Abcam HCT 116 IGF2BP2 KO 1 1164 -cellosaurus:CVCL_B8I3 Abcam HCT 116 IGF2BP3 KO 1 1165 -cellosaurus:CVCL_B8I4 Abcam HCT 116 IHH KO 1 1166 -cellosaurus:CVCL_B8I5 Abcam HCT 116 IKBKE KO 1 1167 -cellosaurus:CVCL_B8I6 Abcam HCT 116 IL12A KO 1 1168 -cellosaurus:CVCL_B8I7 Abcam HCT 116 IL15 KO 1 1169 -cellosaurus:CVCL_B8I8 Abcam HCT 116 IL17A KO 1 1170 -cellosaurus:CVCL_B8I9 Abcam HCT 116 IL18 KO 1 1171 -cellosaurus:CVCL_B8IA Abcam HCT 116 IL1A KO 1 1172 -cellosaurus:CVCL_B8IB Abcam HCT 116 IL1B KO 1 1173 -cellosaurus:CVCL_B8IC Abcam HCT 116 IL23A KO 1 1174 -cellosaurus:CVCL_B8ID Abcam HCT 116 IL23R KO 1 1175 -cellosaurus:CVCL_B8IE Abcam HCT 116 IL27 KO 1 1176 -cellosaurus:CVCL_B8IF Abcam HCT 116 IL2RB KO 1 1177 -cellosaurus:CVCL_B8IG Abcam HCT 116 IL3RA KO 1 1178 -cellosaurus:CVCL_B8IH Abcam HCT 116 IL6R KO 1 1179 -cellosaurus:CVCL_B8II Abcam HCT 116 IL7R KO 1 1180 -cellosaurus:CVCL_B8IJ Abcam HCT 116 IL9 KO 1 1181 -cellosaurus:CVCL_B8IK Abcam HCT 116 INPP5D KO 1 1182 -cellosaurus:CVCL_B8IL Abcam HCT 116 IQGAP1 KO 1 1183 -cellosaurus:CVCL_B8IM Abcam HCT 116 IRAK1 KO 1 1184 -cellosaurus:CVCL_B8IN Abcam HCT 116 IRAK4 KO 1 1185 -cellosaurus:CVCL_B8IP Abcam HCT 116 IRF4 KO 1 1186 -cellosaurus:CVCL_B8IQ Abcam HCT 116 ITGA2 KO 1 1187 -cellosaurus:CVCL_B8IR Abcam HCT 116 ITGAE KO 1 1188 -cellosaurus:CVCL_B8IS Abcam HCT 116 ITGAL KO 1 1189 -cellosaurus:CVCL_B8IT Abcam HCT 116 ITGAM KO 1 1190 -cellosaurus:CVCL_B8IU Abcam HCT 116 ITGAV KO 1 1191 -cellosaurus:CVCL_B8IV Abcam HCT 116 ITGAX KO 1 1192 -cellosaurus:CVCL_B1DR Abcam HCT 116 ITGB1 KO 1 1193 -cellosaurus:CVCL_B8IW Abcam HCT 116 ITK KO 1 1194 -cellosaurus:CVCL_B8IX Abcam HCT 116 ITPR1 KO 1 1195 -cellosaurus:CVCL_B8IY Abcam HCT 116 JAK1 KO 1 1196 -cellosaurus:CVCL_B8IZ Abcam HCT 116 JAK3 KO 1 1197 -cellosaurus:CVCL_B8J0 Abcam HCT 116 JARID2 KO 1 1198 -cellosaurus:CVCL_B8J1 Abcam HCT 116 KAT2A KO 1 1199 -cellosaurus:CVCL_B8J2 Abcam HCT 116 KAT2B KO 1 1200 -cellosaurus:CVCL_B8J3 Abcam HCT 116 KDM1A KO 1 1201 -cellosaurus:CVCL_B8J4 Abcam HCT 116 KDM3A KO 1 1202 -cellosaurus:CVCL_B8J5 Abcam HCT 116 KDM5A KO 1 1203 -cellosaurus:CVCL_B8J6 Abcam HCT 116 KDM5B KO 1 1204 -cellosaurus:CVCL_B8J7 Abcam HCT 116 KDM6A KO 1 1205 -cellosaurus:CVCL_B8J8 Abcam HCT 116 KDR KO 1 1206 -cellosaurus:CVCL_B8J9 Abcam HCT 116 KEAP1 KO 1 1207 -cellosaurus:CVCL_B8JA Abcam HCT 116 KIT KO 1 1208 -cellosaurus:CVCL_B8JB Abcam HCT 116 KITLG KO 1 1209 -cellosaurus:CVCL_B8JC Abcam HCT 116 KLF4 KO 1 1210 -cellosaurus:CVCL_B8JD Abcam HCT 116 KLRB1 KO 1 1211 -cellosaurus:CVCL_B8JE Abcam HCT 116 KLRC1 KO 1 1212 -cellosaurus:CVCL_B8JF Abcam HCT 116 KMT2A KO 1 1213 -cellosaurus:CVCL_B8JG Abcam HCT 116 KMT2D KO 1 1214 -cellosaurus:CVCL_B8JH Abcam HCT 116 KMT5A KO 1 1215 -cellosaurus:CVCL_B1DS Abcam HCT 116 KRAS KO 1 1216 -cellosaurus:CVCL_B8JI Abcam HCT 116 KRT1 KO 1 1217 -cellosaurus:CVCL_B8JJ Abcam HCT 116 LAMP1 KO 1 1218 -cellosaurus:CVCL_B8JK Abcam HCT 116 LATS1 KO 1 1219 -cellosaurus:CVCL_B8JL Abcam HCT 116 LATS2 KO 1 1220 -cellosaurus:CVCL_B8JM Abcam HCT 116 LCK KO 1 1221 -cellosaurus:CVCL_B8JN Abcam HCT 116 LGALS1 KO 1 1222 -cellosaurus:CVCL_B8JP Abcam HCT 116 LGALS3 KO 1 1223 -cellosaurus:CVCL_B8JQ Abcam HCT 116 LGR5 KO 1 1224 -cellosaurus:CVCL_B8JR Abcam HCT 116 LILRB1 KO 1 1225 -cellosaurus:CVCL_B8JS Abcam HCT 116 LIN28A KO 1 1226 -cellosaurus:CVCL_B8JT Abcam HCT 116 LIN28B KO 1 1227 -cellosaurus:CVCL_B8JU Abcam HCT 116 LMNA KO 1 1228 -cellosaurus:CVCL_B8JV Abcam HCT 116 LRP5 KO 1 1229 -cellosaurus:CVCL_B8JW Abcam HCT 116 LYN KO 1 1230 -cellosaurus:CVCL_B8JX Abcam HCT 116 MAF KO 1 1231 -cellosaurus:CVCL_B8JY Abcam HCT 116 MALT1 KO 1 1232 -cellosaurus:CVCL_B8JZ Abcam HCT 116 MAP2K1 KO 1 1233 -cellosaurus:CVCL_B8K0 Abcam HCT 116 MAP2K2 KO 1 1234 -cellosaurus:CVCL_B8K1 Abcam HCT 116 MAP2K4 KO 1 1235 -cellosaurus:CVCL_B8K2 Abcam HCT 116 MAP3K11 KO 1 1236 -cellosaurus:CVCL_B8K3 Abcam HCT 116 MAP3K7 KO 1 1237 -cellosaurus:CVCL_B8K4 Abcam HCT 116 MAPK1 KO 1 1238 -cellosaurus:CVCL_B8K5 Abcam HCT 116 MAPK14 KO 1 1239 -cellosaurus:CVCL_B8K6 Abcam HCT 116 MAPK3 KO 1 1240 -cellosaurus:CVCL_B8K7 Abcam HCT 116 MDC1 KO 1 1241 -cellosaurus:CVCL_B8K8 Abcam HCT 116 MECOM KO 1 1242 -cellosaurus:CVCL_B8K9 Abcam HCT 116 MECP2 KO 1 1243 -cellosaurus:CVCL_B8KA Abcam HCT 116 MED12 KO 1 1244 -cellosaurus:CVCL_B8KB Abcam HCT 116 MEF2A KO 1 1245 -cellosaurus:CVCL_B8KC Abcam HCT 116 MEF2C KO 1 1246 -cellosaurus:CVCL_B1DT Abcam HCT 116 MELK KO 1 1247 -cellosaurus:CVCL_B8KD Abcam HCT 116 MEN1 KO 1 1248 -cellosaurus:CVCL_B8KE Abcam HCT 116 MET KO 1 1249 -cellosaurus:CVCL_B8KF Abcam HCT 116 MGMT KO 1 1250 -cellosaurus:CVCL_B8KG Abcam HCT 116 MICA KO 1 1251 -cellosaurus:CVCL_B8KH Abcam HCT 116 MICB KO 1 1252 -cellosaurus:CVCL_B8KI Abcam HCT 116 MITF KO 1 1253 -cellosaurus:CVCL_B8KJ Abcam HCT 116 MKI67 KO 1 1254 -cellosaurus:CVCL_B8KK Abcam HCT 116 MLH1 KO 1 1255 -cellosaurus:CVCL_B1DU Abcam HCT 116 MLST8 KO 1 1256 -cellosaurus:CVCL_B8KL Abcam HCT 116 MMP1 KO 1 1257 -cellosaurus:CVCL_B8KM Abcam HCT 116 MMP12 KO 1 1258 -cellosaurus:CVCL_B8KN Abcam HCT 116 MMP2 KO 1 1259 -cellosaurus:CVCL_B8KP Abcam HCT 116 MMP9 KO 1 1260 -cellosaurus:CVCL_B1DV Abcam HCT 116 MORF4L2 KO 1 1261 -cellosaurus:CVCL_B8KQ Abcam HCT 116 MPO KO 1 1262 -cellosaurus:CVCL_B8KR Abcam HCT 116 MRC1 KO 1 1263 -cellosaurus:CVCL_B8KS Abcam HCT 116 MRE11 KO 1 1264 -cellosaurus:CVCL_B8KT Abcam HCT 116 MSH2 KO 1 1265 -cellosaurus:CVCL_B8KU Abcam HCT 116 MSH3 KO 1 1266 -cellosaurus:CVCL_B8KV Abcam HCT 116 MSH6 KO 1 1267 -cellosaurus:CVCL_B8KW Abcam HCT 116 MSLN KO 1 1268 -cellosaurus:CVCL_B8KX Abcam HCT 116 MSR1 KO 1 1269 -cellosaurus:CVCL_B8KY Abcam HCT 116 MTA2 KO 1 1270 -cellosaurus:CVCL_B8KZ Abcam HCT 116 MUC1 KO 1 1271 -cellosaurus:CVCL_B8L0 Abcam HCT 116 MUC16 KO 1 1272 -cellosaurus:CVCL_B8L1 Abcam HCT 116 MYB KO 1 1273 -cellosaurus:CVCL_B8L2 Abcam HCT 116 MYD88 KO 1 1274 -cellosaurus:CVCL_B8L3 Abcam HCT 116 MYOD1 KO 1 1275 -cellosaurus:CVCL_B8L4 Abcam HCT 116 NANOG KO 1 1276 -cellosaurus:CVCL_B8L5 Abcam HCT 116 NBN KO 1 1277 -cellosaurus:CVCL_B8L6 Abcam HCT 116 NCAM1 KO 1 1278 -cellosaurus:CVCL_B8L7 Abcam HCT 116 NCAM2 KO 1 1279 -cellosaurus:CVCL_B8L8 Abcam HCT 116 NCF4 KO 1 1280 -cellosaurus:CVCL_B8L9 Abcam HCT 116 NCOA1 KO 1 1281 -cellosaurus:CVCL_B8LA Abcam HCT 116 NCR1 KO 1 1282 -cellosaurus:CVCL_B8LB Abcam HCT 116 NECTIN2 KO 1 1283 -cellosaurus:CVCL_B8LC Abcam HCT 116 NECTIN3 KO 1 1284 -cellosaurus:CVCL_B8LD Abcam HCT 116 NF1 KO 1 1285 -cellosaurus:CVCL_B8LE Abcam HCT 116 NF2 KO 1 1286 -cellosaurus:CVCL_B8LF Abcam HCT 116 NFATC1 KO 1 1287 -cellosaurus:CVCL_B8LG Abcam HCT 116 NFATC2 KO 1 1288 -cellosaurus:CVCL_B8LH Abcam HCT 116 NFE2L2 KO 1 1289 -cellosaurus:CVCL_B1DW Abcam HCT 116 NFKB2 KO 1 1290 -cellosaurus:CVCL_B8LI Abcam HCT 116 NOS2 KO 1 1291 -cellosaurus:CVCL_B8LJ Abcam HCT 116 NOTCH1 KO 1 1292 -cellosaurus:CVCL_B8LK Abcam HCT 116 NOTCH2 KO 1 1293 -cellosaurus:CVCL_B8LL Abcam HCT 116 NR1H3 KO 1 1294 -cellosaurus:CVCL_B1DX Abcam HCT 116 NR2F2 KO 1 1295 -cellosaurus:CVCL_B8LM Abcam HCT 116 NR4A1 KO 1 1296 -cellosaurus:CVCL_B8LN Abcam HCT 116 NR4A3 KO 1 1297 -cellosaurus:CVCL_B8LP Abcam HCT 116 NRAS KO 1 1298 -cellosaurus:CVCL_B8LQ Abcam HCT 116 NSD2 KO 1 1299 -cellosaurus:CVCL_B8LR Abcam HCT 116 NTRK2 KO 1 1300 -cellosaurus:CVCL_B8LS Abcam HCT 116 NTRK3 KO 1 1301 -cellosaurus:CVCL_B8LT Abcam HCT 116 OLIG2 KO 1 1302 -cellosaurus:CVCL_B8LU Abcam HCT 116 OPRM1 KO 1 1303 -cellosaurus:CVCL_B8LV Abcam HCT 116 PADI4 KO 1 1304 -cellosaurus:CVCL_B8LW Abcam HCT 116 PAK1 KO 1 1305 -cellosaurus:CVCL_B8LX Abcam HCT 116 PAK2 KO 1 1306 -cellosaurus:CVCL_B8LY Abcam HCT 116 PAK4 KO 1 1307 -cellosaurus:CVCL_B8LZ Abcam HCT 116 PALB2 KO 1 1308 -cellosaurus:CVCL_B8M0 Abcam HCT 116 PARP3 KO 1 1309 -cellosaurus:CVCL_B8M1 Abcam HCT 116 PAX5 KO 1 1310 -cellosaurus:CVCL_B8M2 Abcam HCT 116 PAX6 KO 1 1311 -cellosaurus:CVCL_B8M3 Abcam HCT 116 PAX7 KO 1 1312 -cellosaurus:CVCL_B8M4 Abcam HCT 116 PAX8 KO 1 1313 -cellosaurus:CVCL_B8M5 Abcam HCT 116 PBK KO 1 1314 -cellosaurus:CVCL_B8M6 Abcam HCT 116 PBRM1 KO 1 1315 -cellosaurus:CVCL_B8M7 Abcam HCT 116 PDCD1 KO 1 1316 -cellosaurus:CVCL_B8M8 Abcam HCT 116 PDGFB KO 1 1317 -cellosaurus:CVCL_B8M9 Abcam HCT 116 PDGFRA KO 1 1318 -cellosaurus:CVCL_B8MA Abcam HCT 116 PDGFRB KO 1 1319 -cellosaurus:CVCL_B8MB Abcam HCT 116 PDPK1 KO 1 1320 -cellosaurus:CVCL_B8MC Abcam HCT 116 PDPN KO 1 1321 -cellosaurus:CVCL_B8MD Abcam HCT 116 PEBP1 KO 1 1322 -cellosaurus:CVCL_B8ME Abcam HCT 116 PECAM1 KO 1 1323 -cellosaurus:CVCL_B8MF Abcam HCT 116 PER1 KO 1 1324 -cellosaurus:CVCL_B8MG Abcam HCT 116 PGF KO 1 1325 -cellosaurus:CVCL_B8MH Abcam HCT 116 PGR KO 1 1326 -cellosaurus:CVCL_B8MI Abcam HCT 116 PHF1 KO 1 1327 -cellosaurus:CVCL_B8MJ Abcam HCT 116 PHLPP1 KO 1 1328 -cellosaurus:CVCL_B8MK Abcam HCT 116 PIK3R1 KO 1 1329 -cellosaurus:CVCL_B8ML Abcam HCT 116 PIK3R2 KO 1 1330 -cellosaurus:CVCL_B8MM Abcam HCT 116 PIWIL4 KO 1 1331 -cellosaurus:CVCL_B1DY Abcam HCT 116 PKN2 KO 1 1332 -cellosaurus:CVCL_B1DZ Abcam HCT 116 PLK2 KO 1 1333 -cellosaurus:CVCL_B8MN Abcam HCT 116 PMEL KO 1 1334 -cellosaurus:CVCL_B8MP Abcam HCT 116 PML KO 1 1335 -cellosaurus:CVCL_B8MQ Abcam HCT 116 PMS2 KO 1 1336 -cellosaurus:CVCL_B1E0 Abcam HCT 116 PODXL KO 1 1337 -cellosaurus:CVCL_B8MR Abcam HCT 116 POLQ KO 1 1338 -cellosaurus:CVCL_B8MS Abcam HCT 116 POLR2A KO 1 1339 -cellosaurus:CVCL_B1E1 Abcam HCT 116 POR KO 1 1340 -cellosaurus:CVCL_B8MT Abcam HCT 116 POU2F2 KO 1 1341 -cellosaurus:CVCL_B8MU Abcam HCT 116 POU5F1 KO 1 1342 -cellosaurus:CVCL_B8MV Abcam HCT 116 PPARA KO 1 1343 -cellosaurus:CVCL_B8MW Abcam HCT 116 PPARD KO 1 1344 -cellosaurus:CVCL_B8MX Abcam HCT 116 PPARG KO 1 1345 -cellosaurus:CVCL_B8MY Abcam HCT 116 PRDM1 KO 1 1346 -cellosaurus:CVCL_B8MZ Abcam HCT 116 PRDM16 KO 1 1347 -cellosaurus:CVCL_B8N0 Abcam HCT 116 PRF1 KO 1 1348 -cellosaurus:CVCL_B8N1 Abcam HCT 116 PRKAA1 KO 1 1349 -cellosaurus:CVCL_B8N2 Abcam HCT 116 PRKAA2 KO 1 1350 -cellosaurus:CVCL_B8N3 Abcam HCT 116 PRKAR1A KO 1 1351 -cellosaurus:CVCL_B8N4 Abcam HCT 116 PRKCA KO 1 1352 -cellosaurus:CVCL_B8N5 Abcam HCT 116 PRKCB KO 1 1353 -cellosaurus:CVCL_B8N6 Abcam HCT 116 PROCR KO 1 1354 -cellosaurus:CVCL_B8N7 Abcam HCT 116 PROM1 KO 1 1355 -cellosaurus:CVCL_B8N8 Abcam HCT 116 PROX1 KO 1 1356 -cellosaurus:CVCL_B8N9 Abcam HCT 116 PTCH1 KO 1 1357 -cellosaurus:CVCL_B8NA Abcam HCT 116 PTCH2 KO 1 1358 -cellosaurus:CVCL_B8NB Abcam HCT 116 PTEN KO 1 1359 -cellosaurus:CVCL_B8NC Abcam HCT 116 PTGS1 KO 1 1360 -cellosaurus:CVCL_B8ND Abcam HCT 116 PTK6 KO 1 1361 -cellosaurus:CVCL_B8NE Abcam HCT 116 PTN KO 1 1362 -cellosaurus:CVCL_B8NF Abcam HCT 116 PTPN1 KO 1 1363 -cellosaurus:CVCL_B8NG Abcam HCT 116 PTPN11 KO 1 1364 -cellosaurus:CVCL_B8NH Abcam HCT 116 PTPN2 KO 1 1365 -cellosaurus:CVCL_B8NI Abcam HCT 116 PTPN6 KO 1 1366 -cellosaurus:CVCL_B8NJ Abcam HCT 116 RAD50 KO 1 1367 -cellosaurus:CVCL_B8NK Abcam HCT 116 RAD51D KO 1 1368 -cellosaurus:CVCL_B8NL Abcam HCT 116 RAET1E KO 1 1369 -cellosaurus:CVCL_B8NM Abcam HCT 116 RAF1 KO 1 1370 -cellosaurus:CVCL_B8NN Abcam HCT 116 RARB KO 1 1371 -cellosaurus:CVCL_B8NP Abcam HCT 116 RB1 KO 1 1372 -cellosaurus:CVCL_B1E2 Abcam HCT 116 RBBP7 KO 1 1373 -cellosaurus:CVCL_B8NQ Abcam HCT 116 REL KO 1 1374 -cellosaurus:CVCL_B8NR Abcam HCT 116 RELA KO 1 1375 -cellosaurus:CVCL_B8NS Abcam HCT 116 REST KO 1 1376 -cellosaurus:CVCL_B8NT Abcam HCT 116 RET KO 1 1377 -cellosaurus:CVCL_B8NU Abcam HCT 116 RICTOR KO 1 1378 -cellosaurus:CVCL_B8NV Abcam HCT 116 RNF2 KO 1 1379 -cellosaurus:CVCL_B8NW Abcam HCT 116 RORC KO 1 1380 -cellosaurus:CVCL_B8NX Abcam HCT 116 ROS1 KO 1 1381 -cellosaurus:CVCL_B8NY Abcam HCT 116 RPS6KA1 KO 1 1382 -cellosaurus:CVCL_B8NZ Abcam HCT 116 RPS6KA3 KO 1 1383 -cellosaurus:CVCL_B1E3 Abcam HCT 116 RRM2B KO 1 1384 -cellosaurus:CVCL_B8P0 Abcam HCT 116 RSF1 KO 1 1385 -cellosaurus:CVCL_B8P1 Abcam HCT 116 RSPO2 KO 1 1386 -cellosaurus:CVCL_B8P2 Abcam HCT 116 RUNX1 KO 1 1387 -cellosaurus:CVCL_B8P3 Abcam HCT 116 RUNX3 KO 1 1388 -cellosaurus:CVCL_B1E4 Abcam HCT 116 RXRA KO 1 1389 -cellosaurus:CVCL_B8P4 Abcam HCT 116 S100A8 KO 1 1390 -cellosaurus:CVCL_B8P5 Abcam HCT 116 SALL4 KO 1 1391 -cellosaurus:CVCL_B8P6 Abcam HCT 116 SEMA4D KO 1 1392 -cellosaurus:CVCL_B8P7 Abcam HCT 116 SEMA7A KO 1 1393 -cellosaurus:CVCL_B8P8 Abcam HCT 116 SENP1 KO 1 1394 -cellosaurus:CVCL_B8P9 Abcam HCT 116 SERPINE1 KO 1 1395 -cellosaurus:CVCL_B8PA Abcam HCT 116 SETD7 KO 1 1396 -cellosaurus:CVCL_B8PB Abcam HCT 116 SIRPA KO 1 1397 -cellosaurus:CVCL_B8PC Abcam HCT 116 SIRT1 KO 1 1398 -cellosaurus:CVCL_B8PD Abcam HCT 116 SIRT2 KO 1 1399 -cellosaurus:CVCL_B8PE Abcam HCT 116 SIRT3 KO 1 1400 -cellosaurus:CVCL_B8PF Abcam HCT 116 SIRT4 KO 1 1401 -cellosaurus:CVCL_B8PG Abcam HCT 116 SIRT6 KO 1 1402 -cellosaurus:CVCL_B8PH Abcam HCT 116 SIRT7 KO 1 1403 -cellosaurus:CVCL_B8PI Abcam HCT 116 SLAMF1 KO 1 1404 -cellosaurus:CVCL_B1E5 Abcam HCT 116 SLC9A3R1 KO 1 1405 -cellosaurus:CVCL_B8PJ Abcam HCT 116 SMAD2 KO 1 1406 -cellosaurus:CVCL_B8PK Abcam HCT 116 SMAD3 KO 1 1407 -cellosaurus:CVCL_B8PL Abcam HCT 116 SMAD4 KO 1 1408 -cellosaurus:CVCL_B8PM Abcam HCT 116 SMAD7 KO 1 1409 -cellosaurus:CVCL_B8PN Abcam HCT 116 SMARCA1 KO 1 1410 -cellosaurus:CVCL_B8PP Abcam HCT 116 SMARCA4 KO 1 1411 -cellosaurus:CVCL_B8PQ Abcam HCT 116 SMARCC1 KO 1 1412 -cellosaurus:CVCL_B8PR Abcam HCT 116 SMARCD3 KO 1 1413 -cellosaurus:CVCL_B8PS Abcam HCT 116 SMO KO 1 1414 -cellosaurus:CVCL_B8PT Abcam HCT 116 SNAI1 KO 1 1415 -cellosaurus:CVCL_B8PU Abcam HCT 116 SNAI2 KO 1 1416 -cellosaurus:CVCL_B8PV Abcam HCT 116 SOS1 KO 1 1417 -cellosaurus:CVCL_B8PW Abcam HCT 116 SOX10 KO 1 1418 -cellosaurus:CVCL_B8PX Abcam HCT 116 SOX11 KO 1 1419 -cellosaurus:CVCL_B8PY Abcam HCT 116 SOX17 KO 1 1420 -cellosaurus:CVCL_B8PZ Abcam HCT 116 SOX2 KO 1 1421 -cellosaurus:CVCL_B8Q0 Abcam HCT 116 SOX6 KO 1 1422 -cellosaurus:CVCL_B8Q1 Abcam HCT 116 SP1 KO 1 1423 -cellosaurus:CVCL_B1E6 Abcam HCT 116 SP3 KO 1 1424 -cellosaurus:CVCL_B8Q2 Abcam HCT 116 SPI1 KO 1 1425 -cellosaurus:CVCL_B8Q3 Abcam HCT 116 SPN KO 1 1426 -cellosaurus:CVCL_B8Q4 Abcam HCT 116 SPP1 KO 1 1427 -cellosaurus:CVCL_B1E7 Abcam HCT 116 SQSTM1 KO 1 1428 -cellosaurus:CVCL_B8Q5 Abcam HCT 116 SRC KO 1 1429 -cellosaurus:CVCL_B8Q6 Abcam HCT 116 SREBF1 KO 1 1430 -cellosaurus:CVCL_B8Q7 Abcam HCT 116 SREBF2 KO 1 1431 -cellosaurus:CVCL_B8Q8 Abcam HCT 116 SS18 KO 1 1432 -cellosaurus:CVCL_B8Q9 Abcam HCT 116 STAG2 KO 1 1433 -cellosaurus:CVCL_B8QA Abcam HCT 116 STAT3 KO 1 1434 -cellosaurus:CVCL_B8QB Abcam HCT 116 STAT5B KO 1 1435 -cellosaurus:CVCL_B8QC Abcam HCT 116 STAT6 KO 1 1436 -cellosaurus:CVCL_B8QD Abcam HCT 116 STK11 KO 1 1437 -cellosaurus:CVCL_B8QE Abcam HCT 116 SUFU KO 1 1438 -cellosaurus:CVCL_B8QF Abcam HCT 116 SYK KO 1 1439 -cellosaurus:CVCL_B8QG Abcam HCT 116 TACSTD2 KO 1 1440 -cellosaurus:CVCL_B8QH Abcam HCT 116 TAFFAZIN KO 1 1441 -cellosaurus:CVCL_B8QI Abcam HCT 116 TBX21 KO 1 1442 -cellosaurus:CVCL_B8QJ Abcam HCT 116 TDO2 KO 1 1443 -cellosaurus:CVCL_B8QK Abcam HCT 116 TEK KO 1 1444 -cellosaurus:CVCL_B8QL Abcam HCT 116 TERT KO 1 1445 -cellosaurus:CVCL_B8QM Abcam HCT 116 TET1 KO 1 1446 -cellosaurus:CVCL_B8QN Abcam HCT 116 TET2 KO 1 1447 -cellosaurus:CVCL_B8QP Abcam HCT 116 TET3 KO 1 1448 -cellosaurus:CVCL_B8QQ Abcam HCT 116 TFAP2A KO 1 1449 -cellosaurus:CVCL_B8QR Abcam HCT 116 TGFB1 KO 1 1450 -cellosaurus:CVCL_B8QS Abcam HCT 116 TGFBR1 KO 1 1451 -cellosaurus:CVCL_B8QT Abcam HCT 116 TGFBR2 KO 1 1452 -cellosaurus:CVCL_B8QU Abcam HCT 116 THBD KO 1 1453 -cellosaurus:CVCL_B8QV Abcam HCT 116 TIA1 KO 1 1454 -cellosaurus:CVCL_B1E8 Abcam HCT 116 TLE5 KO 1 1455 -cellosaurus:CVCL_B8QW Abcam HCT 116 TLR1 KO 1 1456 -cellosaurus:CVCL_B8QX Abcam HCT 116 TLR2 KO 1 1457 -cellosaurus:CVCL_B8QY Abcam HCT 116 TLR3 KO 1 1458 -cellosaurus:CVCL_B8QZ Abcam HCT 116 TLR4 KO 1 1459 -cellosaurus:CVCL_B8R0 Abcam HCT 116 TLR6 KO 1 1460 -cellosaurus:CVCL_B8R1 Abcam HCT 116 TLR7 KO 1 1461 -cellosaurus:CVCL_B8R2 Abcam HCT 116 TMEM173 KO 1 1462 -cellosaurus:CVCL_B1E9 Abcam HCT 116 TMSB10 KO 1 1463 -cellosaurus:CVCL_B8R3 Abcam HCT 116 TNFRSF17 KO 1 1464 -cellosaurus:CVCL_B8R4 Abcam HCT 116 TNFRSF18 KO 1 1465 -cellosaurus:CVCL_B8R5 Abcam HCT 116 TNFRSF4 KO 1 1466 -cellosaurus:CVCL_B8R6 Abcam HCT 116 TNFRSF8 KO 1 1467 -cellosaurus:CVCL_B8R7 Abcam HCT 116 TNFRSF9 KO 1 1468 -cellosaurus:CVCL_B8R8 Abcam HCT 116 TNFSF11 KO 1 1469 -cellosaurus:CVCL_B8R9 Abcam HCT 116 TP53BP1 KO 1 1470 -cellosaurus:CVCL_B8RA Abcam HCT 116 TP63 KO 1 1471 -cellosaurus:CVCL_B8RB Abcam HCT 116 TRAF1 KO 1 1472 -cellosaurus:CVCL_B1EA Abcam HCT 116 TRIB3 KO 1 1473 -cellosaurus:CVCL_B8RC Abcam HCT 116 TRIM24 KO 1 1474 -cellosaurus:CVCL_B8RD Abcam HCT 116 TRIM28 KO 1 1475 -cellosaurus:CVCL_B8RE Abcam HCT 116 TRIM33 KO 1 1476 -cellosaurus:CVCL_B8RF Abcam HCT 116 TSC1 KO 1 1477 -cellosaurus:CVCL_B8RG Abcam HCT 116 TSC2 KO 1 1478 -cellosaurus:CVCL_B1EB Abcam HCT 116 TSPO KO 1 1479 -cellosaurus:CVCL_B1EC Abcam HCT 116 TUBB3 KO 1 1480 -cellosaurus:CVCL_B8RH Abcam HCT 116 UBB KO 1 1481 -cellosaurus:CVCL_B1ED Abcam HCT 116 UBE2H KO 1 1482 -cellosaurus:CVCL_B1EE Abcam HCT 116 UBE2K KO 1 1483 -cellosaurus:CVCL_B8RI Abcam HCT 116 UHRF1 KO 1 1484 -cellosaurus:CVCL_B8RJ Abcam HCT 116 USP22 KO 1 1485 -cellosaurus:CVCL_B8RK Abcam HCT 116 USP8 KO 1 1486 -cellosaurus:CVCL_B8RL Abcam HCT 116 VDR KO 1 1487 -cellosaurus:CVCL_B8RM Abcam HCT 116 VEGFA KO 1 1488 -cellosaurus:CVCL_B8RN Abcam HCT 116 VEGFC KO 1 1489 -cellosaurus:CVCL_B8RP Abcam HCT 116 VIM KO 1 1490 -cellosaurus:CVCL_B8RQ Abcam HCT 116 VSIR KO 1 1491 -cellosaurus:CVCL_B8RR Abcam HCT 116 VTCN1 KO 1 1492 -cellosaurus:CVCL_B8RS Abcam HCT 116 WT1 KO 1 1493 -cellosaurus:CVCL_B8RT Abcam HCT 116 WWTR1 KO 1 1494 -cellosaurus:CVCL_B8RU Abcam HCT 116 WNT3A KO 1 1495 -cellosaurus:CVCL_B8RV Abcam HCT 116 XIAP KO 1 1496 -cellosaurus:CVCL_B8RW Abcam HCT 116 XPC KO 1 1497 -cellosaurus:CVCL_B7VM Abcam HCT 116 XPO1 KO 1 1498 -cellosaurus:CVCL_B8RX Abcam HCT 116 YTHDF2 KO 1 1499 -cellosaurus:CVCL_B8RY Abcam HCT 116 YWHAB KO 1 1500 -cellosaurus:CVCL_B8RZ Abcam HCT 116 ZBTB16 KO 1 1501 -cellosaurus:CVCL_B8S0 Abcam HCT 116 ZEB1 KO 1 1502 -cellosaurus:CVCL_B1EF Abcam HCT 116 ZFYVE16 KO 1 1503 -cellosaurus:CVCL_JY79 AT506.C2 1 1504 -cellosaurus:CVCL_2299 ATRFLOX 1 1505 -cellosaurus:CVCL_KS06 CellSensor HRE-bla HCT-116 1 1506 -cellosaurus:CVCL_KS04 CellSensor LEF/TCF-bla HCT-116 1 1507 -cellosaurus:CVCL_KS14 CellSensor Myc-bla HCT-116 1 1508 -cellosaurus:CVCL_KS15 CellSensor p53RE-bla HCT-116 1 1509 -cellosaurus:CVCL_1Q94 H414 1 1510 -cellosaurus:CVCL_1Q95 H414-LIG4(+/-) 2 1511 -cellosaurus:CVCL_1Q96 H414-MDC1(+/-) 2 1512 -cellosaurus:CVCL_1Q97 H414-MDC1(-/-) 2 1513 -cellosaurus:CVCL_1Q98 H414-RAD18(+/-) 2 1514 -cellosaurus:CVCL_1Q99 H414-RAD18(-/-) 2 1515 -cellosaurus:CVCL_LD40 HCT 116 ABL1 (T315I/+) 1 1516 -cellosaurus:CVCL_HG03 HCT 116 ADAM17 1 1517 -cellosaurus:CVCL_HD66 HCT 116 AKT1(-/-) 1 1518 -cellosaurus:CVCL_HD67 HCT 116 AKT2(-/-) 1 1519 -cellosaurus:CVCL_LD41 HCT 116 ALK (F1174L/+) 1 1520 -cellosaurus:CVCL_HD68 HCT 116 APOC1(-/-) 1 1521 -cellosaurus:CVCL_HG04 HCT 116 AXL KO Tet-inducible 1 1522 -cellosaurus:CVCL_HD69 HCT 116 BAX(-/-) 1 1523 -cellosaurus:CVCL_HD70 HCT 116 BBC3(-/-) 1 1524 -cellosaurus:CVCL_HD71 HCT 116 BLM(-/-) 1 1525 -cellosaurus:CVCL_LD61 HCT 116 BRAF (V600A/+) 1 1526 -cellosaurus:CVCL_LD62 HCT 116 BRAF (V600E/+) 1 1527 -cellosaurus:CVCL_LD63 HCT 116 BRAF (V600G/+) 1 1528 -cellosaurus:CVCL_LD64 HCT 116 BRAF (V600K/+) 1 1529 -cellosaurus:CVCL_LD65 HCT 116 BRAF (V600M/+) 1 1530 -cellosaurus:CVCL_LD66 HCT 116 BRAF (V600R/+) 1 1531 -cellosaurus:CVCL_AS10 HCT 116 BRCA2(-/-) clone 42 1 1532 -cellosaurus:CVCL_VP26 HCT 116 BRCA2(-/-) clone 46 1 1533 -cellosaurus:CVCL_LD87 HCT 116 CDK2 (D145N/+) 1 1534 -cellosaurus:CVCL_HD72 HCT 116 CDK2(-/-) 1 1535 -cellosaurus:CVCL_HD73 HCT 116 CDKN1A(-/-) 1 1536 -cellosaurus:CVCL_RJ11 HCT 116 CMV-OsTIR1 1 1537 -cellosaurus:CVCL_HD74 HCT 116 CTNNB1(+/-) 1 1538 -cellosaurus:CVCL_HD75 HCT 116 DIABLO(-/-) 1 1539 -cellosaurus:CVCL_HD76 HCT 116 DICER1(-/-) 1 1540 -cellosaurus:CVCL_HD77 HCT 116 DNMT3B(-/-) 1 1541 -cellosaurus:CVCL_HG26 HCT 116 EP300 WT 1 1542 -cellosaurus:CVCL_HG27 HCT 116 EP300(-) clone D10 2 1543 -cellosaurus:CVCL_HG28 HCT 116 EP300(-) clone F2 2 1544 -cellosaurus:CVCL_HG29 HCT 116 EP300(-) clone F5 2 1545 -cellosaurus:CVCL_HG30 HCT 116 EP300(-) rescued 3 1546 -cellosaurus:CVCL_HG05 HCT 116 EphA2 KO Tet-inducible 1 1547 -cellosaurus:CVCL_HD78 HCT 116 FBXW7(-/-) 1 1548 -cellosaurus:CVCL_LD88 HCT 116 FGFR2 (S252W/+/+) 1 1549 -cellosaurus:CVCL_LD89 HCT 116 FGFR3 (S249C/+) 1 1550 -cellosaurus:CVCL_LD90 HCT 116 FLT3 (D835Y/+) 1 1551 -cellosaurus:CVCL_LD91 HCT 116 GNA11 (Q209L/+) 1 1552 -cellosaurus:CVCL_LD92 HCT 116 GNAQ (Q209L/+) 1 1553 -cellosaurus:CVCL_LD67 HCT 116 GNAS (R201C/+) 1 1554 -cellosaurus:CVCL_LD68 HCT 116 IDH1 (R132C/+) 1 1555 -cellosaurus:CVCL_LD69 HCT 116 IDH1 (R132H/+) 1 1556 -cellosaurus:CVCL_LD70 HCT 116 IDH2 (R140Q/+) 1 1557 -cellosaurus:CVCL_LD71 HCT 116 IDH2 (R172K/+) 1 1558 -cellosaurus:CVCL_LD93 HCT 116 JAK2 (V617F/+) 1 1559 -cellosaurus:CVCL_HD79 HCT 116 KDM5A(+/-) 1 1560 -cellosaurus:CVCL_HD80 HCT 116 KDM5A(-/-) 1 1561 -cellosaurus:CVCL_LD94 HCT 116 KIT (D816V/+) 1 1562 -cellosaurus:CVCL_HD81 HCT 116 KRAS(+/-) 1 1563 -cellosaurus:CVCL_HD82 HCT 116 LIG4(+/-) 1 1564 -cellosaurus:CVCL_HD83 HCT 116 LIG4(-/-) 1 1565 -cellosaurus:CVCL_LD95 HCT 116 MAP2K1 (P124L/+) 1 1566 -cellosaurus:CVCL_LD96 HCT 116 MET (Y1253D/+) 1 1567 -cellosaurus:CVCL_HD84 HCT 116 MLH1(+/-) 1 1568 -cellosaurus:CVCL_LD97 HCT 116 MTOR (S2035I/+) 1 1569 -cellosaurus:CVCL_LD98 HCT 116 NFE2L2 (E79K/+) 1 1570 -cellosaurus:CVCL_HD85 HCT 116 NHEJ1(+/-) 1 1571 -cellosaurus:CVCL_HD86 HCT 116 NHEJ1(-/-) 1 1572 -cellosaurus:CVCL_LD99 HCT 116 NOTCH1 (L1601P/+) 1 1573 -cellosaurus:CVCL_UF05 HCT 116 NUF2mCherry/mCherry 1 1574 -cellosaurus:CVCL_LE00 HCT 116 PDGFRA (D842V/+) 1 1575 -cellosaurus:CVCL_HD87 HCT 116 PDPK1(+/-) 1 1576 -cellosaurus:CVCL_LD54 HCT 116 PIK3CA (H1047R/-) 1 1577 -cellosaurus:CVCL_RQ06 HCT 116 PIK3CA H1047R KO 1 1578 -cellosaurus:CVCL_HD88 HCT 116 PPARD(-/-) 1 1579 -cellosaurus:CVCL_HD89 HCT 116 PRKDC(+/-) 1 1580 -cellosaurus:CVCL_HD90 HCT 116 PRKDC(-/-) 1 1581 -cellosaurus:CVCL_HD91 HCT 116 PTEN(+/-) 1 1582 -cellosaurus:CVCL_HD92 HCT 116 PTEN(-/-) 1 1583 -cellosaurus:CVCL_HD93 HCT 116 PTTG1(-/-) 1 1584 -cellosaurus:CVCL_HD94 HCT 116 SFN(-/-) 1 1585 -cellosaurus:CVCL_QZ52 HCT 116 shPARG 1 1586 -cellosaurus:CVCL_HD95 HCT 116 SMAD4(-/-) 1 1587 -cellosaurus:CVCL_B3P8 HCT 116 SYT1 KO 1 1588 -cellosaurus:CVCL_RJ69 HCT 116 TP53 (R248W/+) 1 1589 -cellosaurus:CVCL_RJ68 HCT 116 TP53 (R248W/-) 1 1590 -cellosaurus:CVCL_HD96 HCT 116 TP53(+/-) 1 1591 -cellosaurus:CVCL_HD97 HCT 116 TP53(-/-) 1 1592 -cellosaurus:CVCL_HD98 HCT 116 USP7(+/-) 1 1593 -cellosaurus:CVCL_HD99 HCT 116 USP7(-/-) 1 1594 -cellosaurus:CVCL_HE00 HCT 116 XRCC4(-/-) 1 1595 -cellosaurus:CVCL_HE01 HCT 116 XRCC6(+/-) 1 1596 -cellosaurus:CVCL_HG06 HCT 116-I6 1 1597 -cellosaurus:CVCL_VU38 HCT 116-Luc2 [ATCC] 1 1598 -cellosaurus:CVCL_5J19 HCT 116-luc2 [Caliper] 1 1599 -cellosaurus:CVCL_4V73 HCT 116-OX 1 1600 -cellosaurus:CVCL_5I94 HCT 116-Red-FLuc 1 1601 -cellosaurus:CVCL_C3GH HCT 116_184R 1 1602 -cellosaurus:CVCL_C3GI HCT 116_6244R 1 1603 -cellosaurus:CVCL_4V28 HCT 116R11 1 1604 -cellosaurus:CVCL_4V29 HCT 116R26 1 1605 -cellosaurus:CVCL_J254 HCT-116 clone#2-Luc 1 1606 -cellosaurus:CVCL_C3EY HCT-116 Safe Harbor Landing Pad 1 1607 -cellosaurus:CVCL_V401 HCT-116-MEK-R 1 1608 -cellosaurus:CVCL_WV82 HCT-116/SN-38 1 1609 -cellosaurus:CVCL_4V05 HCT-116/VM34 1 1610 -cellosaurus:CVCL_N508 HCT-116/VM46 1 1611 -cellosaurus:CVCL_N509 HCT-116/VP35 1 1612 -cellosaurus:CVCL_IU66 HCT-116RB 1 1613 -cellosaurus:CVCL_IU67 HCT-116RC 1 1614 -cellosaurus:CVCL_IU68 HCT-116RD 1 1615 -cellosaurus:CVCL_UR40 HCT116 VIM RFP 1 1616 -cellosaurus:CVCL_1R00 HCT116-53BPI(+/-) 1 1617 -cellosaurus:CVCL_T770 HCT116-Artemis(+/-) 1 1618 -cellosaurus:CVCL_T771 HCT116-Artemis(-/-) 1 1619 -cellosaurus:CVCL_XC97 HCT116-Cas9-565 1 1620 -cellosaurus:CVCL_XC98 HCT116-Cas9-566 1 1621 -cellosaurus:CVCL_XC99 HCT116-Cas9-567 1 1622 -cellosaurus:CVCL_XD00 HCT116-Cas9-568 1 1623 -cellosaurus:CVCL_XD01 HCT116-Cas9-TSC22KO-569 1 1624 -cellosaurus:CVCL_1R01 HCT116-DNAPKcs(+/-) 1 1625 -cellosaurus:CVCL_5I74 HCT116-Dual 1 1626 -cellosaurus:CVCL_XE63 HCT116-EGFP 1 1627 -cellosaurus:CVCL_RA37 HCT116-eGFP-Puro 1 1628 -cellosaurus:CVCL_RA38 HCT116-Fluc-Neo/eGFP-Puro 1 1629 -cellosaurus:CVCL_RA39 HCT116-Fluc-Neo/iRFP-Puro 1 1630 -cellosaurus:CVCL_RA40 HCT116-Fluc-Puro 1 1631 -cellosaurus:CVCL_RA41 HCT116-hNIS-Neo 1 1632 -cellosaurus:CVCL_RA42 HCT116-hNIS-Neo/eGFP-Puro 1 1633 -cellosaurus:CVCL_RA43 HCT116-hNIS-Neo/Fluc-Puro 1 1634 -cellosaurus:CVCL_RA44 HCT116-hNIS-Neo/iRFP-Puro 1 1635 -cellosaurus:CVCL_RA45 HCT116-iRFP-Puro 1 1636 -cellosaurus:CVCL_1R02 HCT116-Ku70(+/-) 1 1637 -cellosaurus:CVCL_1R03 HCT116-LIG3(+/-) 1 1638 -cellosaurus:CVCL_1R04 HCT116-LIG4(+/-) 1 1639 -cellosaurus:CVCL_B7NU HCT116-Luc-GFP 1 1640 -cellosaurus:CVCL_1R05 HCT116-MDC1(+/-) 1 1641 -cellosaurus:CVCL_1R06 HCT116-MDC1(-/-) 1 1642 -cellosaurus:CVCL_B7NV HCT116-NanoLuc-RFP 1 1643 -cellosaurus:CVCL_1R07 HCT116-POLM(+/-) 1 1644 -cellosaurus:CVCL_1R08 HCT116-RAD18(+/-) 1 1645 -cellosaurus:CVCL_1R09 HCT116-RAD18(-/-) 1 1646 -cellosaurus:CVCL_1R10 HCT116-REV1(+/-) 1 1647 -cellosaurus:CVCL_1R11 HCT116-REV1(-/-) 1 1648 -cellosaurus:CVCL_1R12 HCT116-REV3L(+/-) 1 1649 -cellosaurus:CVCL_B7PT HCT116-s 1 1650 -cellosaurus:CVCL_B7PU HCT116-A2 2 1651 -cellosaurus:CVCL_B7PV HCT116-C8 2 1652 -cellosaurus:CVCL_B7PW HCT116-G7 2 1653 -cellosaurus:CVCL_Y553 HCT116-SN50 2 1654 -cellosaurus:CVCL_Y554 HCT116-SN6 2 1655 -cellosaurus:CVCL_T772 HCT116-XRCC4(+/-) 1 1656 -cellosaurus:CVCL_T773 HCT116-XRCC4(-/-) 1 1657 -cellosaurus:CVCL_C0DW HCT116/4008#13 rho-0 1 1658 -cellosaurus:CVCL_AU09 HCT116/5FUR 1 1659 -cellosaurus:CVCL_AU10 HCT116/BEVA 1 1660 -cellosaurus:CVCL_AU11 HCT116/SN38R 1 1661 -cellosaurus:CVCL_C0UT HCT116nut 1 1662 -cellosaurus:CVCL_C0UU HCT116tax 1 1663 -cellosaurus:CVCL_9796 HKe-3 1 1664 -cellosaurus:CVCL_9797 HKh-2 1 1665 -cellosaurus:CVCL_C3GJ HKh-2_6244R 2 1666 -cellosaurus:CVCL_A9P2 NF-KappaB reporter (Luc)-HCT-116 1 1667 -cellosaurus:CVCL_4627 OE47 1 1668 -cellosaurus:CVCL_4628 OE50 1 1669 -cellosaurus:CVCL_S744 p53HCT116 1 1670 -cellosaurus:CVCL_RU11 PPT2 1 1671 -cellosaurus:CVCL_D722 hmel1 0 1672 -cellosaurus:CVCL_A2GA hmel1R 1 1673 -cellosaurus:CVCL_0337 HuT 78 0 1674 -cellosaurus:CVCL_1240 H9 1 1675 -cellosaurus:CVCL_X680 H9/HIV-2MVP-11971 2 1676 -cellosaurus:CVCL_X681 H9/HIV-2MVP-15132 2 1677 -cellosaurus:CVCL_3514 H9/HTLV-IIIB 2 1678 -cellosaurus:CVCL_X621 H9/HTLV-IIICC 2 1679 -cellosaurus:CVCL_X620 H9/HTLV-IIIMN 2 1680 -cellosaurus:CVCL_X619 H9/HTLV-IIIRF 2 1681 -cellosaurus:CVCL_X610 H9/SIVmac186 2 1682 -cellosaurus:CVCL_D536 H938 2 1683 -cellosaurus:CVCL_U264 RH9 2 1684 -cellosaurus:CVCL_U265 RH9/CB 3 1685 -cellosaurus:CVCL_X617 HUT 78/HIV-1SF2 1 1686 -cellosaurus:CVCL_X682 HUT 78/HIV-2D194 1 1687 -cellosaurus:CVCL_X683 HUT 78/HIV-2D205 1 1688 -cellosaurus:CVCL_X611 HUT 78/SIV-BK28 1 1689 -cellosaurus:CVCL_X616 HUT 78/SIV-BK44 1 1690 -cellosaurus:CVCL_X609 HUT 78/SIVmac251 1 1691 -cellosaurus:CVCL_0325 HuT78B1 1 1692 -cellosaurus:CVCL_9472 PM1 1 1693 -cellosaurus:CVCL_YX97 PM1-Luc 2 1694 -cellosaurus:CVCL_YX98 PM1-CCR5-Luc 3 1695 -cellosaurus:CVCL_1239 H4 0 1696 -cellosaurus:CVCL_D601 H4-APP751 1 1697 -cellosaurus:CVCL_U993 H4-C99 1 1698 -cellosaurus:CVCL_B7R9 85HG-66 0 1699 -cellosaurus:CVCL_B7RA TH4-7-5 1 1700 -cellosaurus:CVCL_0098 SKM-1 0 1701 -cellosaurus:CVCL_IM24 SKM-1/HHT 1 1702 -cellosaurus:CVCL_IW92 HBG 0 1703 -cellosaurus:CVCL_IW93 HBG BC2 1 1704 -cellosaurus:CVCL_Z604 OS2-RA 0 1705 -cellosaurus:CVCL_A1LM OS2-RA-R 1 1706 -cellosaurus:CVCL_3612 TOV-112D 0 1707 -cellosaurus:CVCL_IQ56 TOV-112DR 1 1708 -cellosaurus:CVCL_3517 HPAC 0 1709 -cellosaurus:CVCL_2090 KCI-MOH1 1 1710 -cellosaurus:CVCL_6614 CHP-902 0 1711 -cellosaurus:CVCL_6615 CHP-902R 1 1712 -cellosaurus:CVCL_0527 SK-MEL-5 0 1713 -cellosaurus:CVCL_IW12 SKMEL5/R 1 1714 -cellosaurus:CVCL_5G77 CHP-382 0 1715 -cellosaurus:CVCL_5G78 CHP-382/JK 1 1716 -cellosaurus:CVCL_1524 NCI-H2087 0 1717 -cellosaurus:CVCL_VR27 H2087-TGL 1 1718 -cellosaurus:CVCL_VR28 H2087-LCC1-1 2 1719 -cellosaurus:CVCL_VR29 H2087-LCC1-2 2 1720 -cellosaurus:CVCL_H737 DLKP 0 1721 -cellosaurus:CVCL_H741 DLKP-A 1 1722 -cellosaurus:CVCL_H742 DLKP-A10 2 1723 -cellosaurus:CVCL_H744 DLKP-A2B 2 1724 -cellosaurus:CVCL_H743 DLKP-A5F 2 1725 -cellosaurus:CVCL_H738 DLKP-I 1 1726 -cellosaurus:CVCL_H739 DLKP-M 1 1727 -cellosaurus:CVCL_4U31 DLKP-Mitox 1 1728 -cellosaurus:CVCL_H740 DLKP-SQ 1 1729 -cellosaurus:CVCL_4U25 SQ-Mitox-BCRP 2 1730 -cellosaurus:CVCL_4U26 SQ-Mitox-MDR 1 1731 -cellosaurus:CVCL_5707 BALM-9 0 1732 -cellosaurus:CVCL_5708 BALM-9K 1 1733 -cellosaurus:CVCL_5709 BALM-9KL 1 1734 -cellosaurus:CVCL_QX21 BALM-9L 1 1735 -cellosaurus:CVCL_5710 BALM-9N 1 1736 -cellosaurus:CVCL_DG43 ChaGo 0 1737 -cellosaurus:CVCL_DG44 ChaGo-C-5 1 1738 -cellosaurus:CVCL_1121 ChaGo-K-1 1 1739 -cellosaurus:CVCL_0525 SK-HEP-1 0 1740 -cellosaurus:CVCL_A040 F2.4E5 1 1741 -cellosaurus:CVCL_A041 F2.5B6 1 1742 -cellosaurus:CVCL_A042 P1.1A3 1 1743 -cellosaurus:CVCL_A046 P1.4D6 1 1744 -cellosaurus:CVCL_XD84 SK-HEP-1-Cas9-726 1 1745 -cellosaurus:CVCL_XD85 SK-HEP-1-Cas9-727 1 1746 -cellosaurus:CVCL_XD86 SK-HEP-1-Cas9-728 1 1747 -cellosaurus:CVCL_XD87 SK-HEP-1-Cas9-729 1 1748 -cellosaurus:CVCL_XD88 SK-HEP-1-Cas9-730 1 1749 -cellosaurus:CVCL_XD89 SK-HEP-1-Cas9-731 1 1750 -cellosaurus:CVCL_XD90 SK-HEP-1-Cas9-732 1 1751 -cellosaurus:CVCL_XD91 SK-HEP-1-Cas9-733 1 1752 -cellosaurus:CVCL_XD92 SK-HEP-1-Cas9-734 1 1753 -cellosaurus:CVCL_XD93 SK-HEP-1-Cas9-735 1 1754 -cellosaurus:CVCL_AU01 SK-HEP-1-FIX 1 1755 -cellosaurus:CVCL_6019 SK-Hep-1-NIS 1 1756 -cellosaurus:CVCL_M182 SK-Hep-1/CDDP 1 1757 -cellosaurus:CVCL_0608 Calu-1 0 1758 -cellosaurus:CVCL_WS71 Calu-1 W5S2 1 1759 -cellosaurus:CVCL_0U29 Calu-1 W5-6 2 1760 -cellosaurus:CVCL_0566 U266B1 0 1761 -cellosaurus:CVCL_C833 AF10 1 1762 -cellosaurus:CVCL_J235 FU-266 1 1763 -cellosaurus:CVCL_J236 FU-266 clone E1 2 1764 -cellosaurus:CVCL_4974 SKO-007 1 1765 -cellosaurus:CVCL_4975 SKO-007 clone J3 2 1766 -cellosaurus:CVCL_0015 U-266/70 1 1767 -cellosaurus:CVCL_0016 U-266/84 1 1768 -cellosaurus:CVCL_GZ72 U266/ADM 1 1769 -cellosaurus:CVCL_VJ36 U266/BR 1 1770 -cellosaurus:CVCL_T031 U266/velR 1 1771 -cellosaurus:CVCL_C828 U266R 1 1772 -cellosaurus:CVCL_6659 11-18 0 1773 -cellosaurus:CVCL_D856 11-18-ER1-7 1 1774 -cellosaurus:CVCL_D857 11-18-ER2-1 1 1775 -cellosaurus:CVCL_D776 11-18-GEF10-1 1 1776 -cellosaurus:CVCL_D777 11-18-GEF20-1 1 1777 -cellosaurus:CVCL_S745 11-18/R 1 1778 -cellosaurus:CVCL_1184 DV-90 0 1779 -cellosaurus:CVCL_LM80 DV-90-GFP 1 1780 -cellosaurus:CVCL_A417 OUR-20 0 1781 -cellosaurus:CVCL_A418 OUR-20P 1 1782 -cellosaurus:CVCL_A419 OUR-20S 1 1783 -cellosaurus:CVCL_0148 Akata 0 1784 -cellosaurus:CVCL_6247 Akata 2A8 1 1785 -cellosaurus:CVCL_6248 Akata 2C1 1 1786 -cellosaurus:CVCL_6249 Akata 3F2 1 1787 -cellosaurus:CVCL_6250 Akata EG 1 1788 -cellosaurus:CVCL_VN89 Akata-EBV-N 1 1789 -cellosaurus:CVCL_A2HR Akata (-) EBV-neoR 2 1790 -cellosaurus:CVCL_B6R7 Akata deltagp85 2 1791 -cellosaurus:CVCL_B6R4 Akata deltaLMP2A 2 1792 -cellosaurus:CVCL_B3LU Akata EBER(-) EBV 2 1793 -cellosaurus:CVCL_B6R3 Akata delta1 EBER2(+) 3 1794 -cellosaurus:CVCL_B3MK Akata delta2 EBER1(+) 3 1795 -cellosaurus:CVCL_B3M6 Akata EBER(+) EBV 3 1796 -cellosaurus:CVCL_B6R6 Akata ZKO 2 1797 -cellosaurus:CVCL_VN87 Akata-EBV-P 1 1798 -cellosaurus:CVCL_VN88 Akata-eGFP-EBV 1 1799 -cellosaurus:CVCL_T324 CaCL 73-36 0 1800 -cellosaurus:CVCL_D034 M6/B7 1 1801 -cellosaurus:CVCL_3968 NCI-H125 0 1802 -cellosaurus:CVCL_A570 NCI-H513 1 1803 -cellosaurus:CVCL_A789 SCL-I 0 1804 -cellosaurus:CVCL_A0CN SCL1-CD4 clone 6 1 1805 -cellosaurus:CVCL_9724 A1847 0 1806 -cellosaurus:CVCL_B7S3 A1847/CP6 1 1807 -cellosaurus:CVCL_QW50 BLIN-4 0 1808 -cellosaurus:CVCL_QW51 BLIN-4E 1 1809 -cellosaurus:CVCL_QW52 BLIN-4L 1 1810 -cellosaurus:CVCL_F953 SC-6-JCK 0 1811 -cellosaurus:CVCL_4384 TMK-1 1 1812 -cellosaurus:CVCL_8422 RMZ 0 1813 -cellosaurus:CVCL_L510 RMZ-RC2 1 1814 -cellosaurus:CVCL_L511 RMZ-RC5 1 1815 -cellosaurus:CVCL_2209 SUP-M2 0 1816 -cellosaurus:CVCL_V405 SUP-M2-CR03 1 1817 -cellosaurus:CVCL_B228 Sup-M2-TS 1 1818 -cellosaurus:CVCL_0033 SK-BR-3 0 1819 -cellosaurus:CVCL_YJ92 LINTERNA SK-BR-3 1 1820 -cellosaurus:CVCL_A2GI LR-SKBR3 1 1821 -cellosaurus:CVCL_RA92 SK-BR-3 shPARG 1 1822 -cellosaurus:CVCL_YJ28 SK-BR-3 shWDR12-4 1 1823 -cellosaurus:CVCL_4V52 SK-BR-3-LR 1 1824 -cellosaurus:CVCL_4Y11 SK-BR-3-Luc 1 1825 -cellosaurus:CVCL_B6Y6 SK-BR-3/nab-P 1 1826 -cellosaurus:CVCL_B7P8 SK-BR-3/PacR 1 1827 -cellosaurus:CVCL_A2FE SKBR-3-OE 1 1828 -cellosaurus:CVCL_YX81 SKBR3 A3 1 1829 -cellosaurus:CVCL_EI04 SKBR3-AZDRa 1 1830 -cellosaurus:CVCL_EI05 SKBR3-AZDRb 1 1831 -cellosaurus:CVCL_EI06 SKBR3-AZDRc 1 1832 -cellosaurus:CVCL_4V68 SKBR3-LAP[r] 1 1833 -cellosaurus:CVCL_EI07 SKBR3-LAPRa 1 1834 -cellosaurus:CVCL_EI08 SKBR3-LAPRb 1 1835 -cellosaurus:CVCL_LG17 SKBR3-LR 1 1836 -cellosaurus:CVCL_LG18 SKBR3-NR 1 1837 -cellosaurus:CVCL_EQ69 SKBR3-PR 1 1838 -cellosaurus:CVCL_LG19 SKBR3-TR 1 1839 -cellosaurus:CVCL_B3MN SKBR3/TDR 1 1840 -cellosaurus:CVCL_YJ71 VAMPIRO SK-BR-3 1 1841 -cellosaurus:CVCL_1119 CFPAC-1 0 1842 -cellosaurus:CVCL_0486 PLJ-4.7 1 1843 -cellosaurus:CVCL_0479 PA-1 0 1844 -cellosaurus:CVCL_1T15 222 1 1845 -cellosaurus:CVCL_1T16 222TR 2 1846 -cellosaurus:CVCL_4992 CH1 [Human ovarian carcinoma] 1 1847 -cellosaurus:CVCL_X012 CH1-cisR 2 1848 -cellosaurus:CVCL_Y426 CH1:RD1694 2 1849 -cellosaurus:CVCL_3121 PA-1/6TG-r 1 1850 -cellosaurus:CVCL_3422 SUM149PT 0 1851 -cellosaurus:CVCL_DH44 SUM149-Luc 1 1852 -cellosaurus:CVCL_DH45 SUM149-Luc/MA1 2 1853 -cellosaurus:CVCL_DH46 SUM149-Luc/MA2 2 1854 -cellosaurus:CVCL_0010 Karpas-707 0 1855 -cellosaurus:CVCL_9552 Karpas-707H 1 1856 -cellosaurus:CVCL_8493 KMP-5 0 1857 -cellosaurus:CVCL_XD22 KMP5-Luc#9 1 1858 -cellosaurus:CVCL_1681 SCC-15 0 1859 -cellosaurus:CVCL_B5MP SCC15/R1 1 1860 -cellosaurus:CVCL_B5MQ SCC15/R2 1 1861 -cellosaurus:CVCL_B5MR SCC15/R3 1 1862 -cellosaurus:CVCL_B5MS SCC15/R4 1 1863 -cellosaurus:CVCL_2799 KNS-81 0 1864 -cellosaurus:CVCL_1336 KNS-81-FD 1 1865 -cellosaurus:CVCL_4765 Ten12 0 1866 -cellosaurus:CVCL_K060 TEN12C 1 1867 -cellosaurus:CVCL_K061 TEN12F 1 1868 -cellosaurus:CVCL_B261 PC/AA 0 1869 -cellosaurus:CVCL_IQ04 PC/AA/C1 1 1870 -cellosaurus:CVCL_IQ05 PC/AA/C1/SB 2 1871 -cellosaurus:CVCL_IQ06 PC/AA/C1/SB10 3 1872 -cellosaurus:CVCL_ZE74 HR 0 1873 -cellosaurus:CVCL_ZE75 HR-1 1 1874 -cellosaurus:CVCL_U986 HRA 1 1875 -cellosaurus:CVCL_7044 GIST882 0 1876 -cellosaurus:CVCL_A9N2 GIST882IMR 1 1877 -cellosaurus:CVCL_0630 SK-MES-1 0 1878 -cellosaurus:CVCL_3153 RERF-LC-MA 1 1879 -cellosaurus:CVCL_X336 SKMES-1-Taxol 1 1880 -cellosaurus:CVCL_X337 SKMES-1-Taxotere 1 1881 -cellosaurus:CVCL_A616 HSC-60 0 1882 -cellosaurus:CVCL_A9J4 60As6Luc 1 1883 -cellosaurus:CVCL_1492 NCI-H1755 0 1884 -cellosaurus:CVCL_L169 NCI-H1755A 1 1885 -cellosaurus:CVCL_0459 NCI-H460 0 1886 -cellosaurus:CVCL_A9CH H460/CIS 1 1887 -cellosaurus:CVCL_UW76 H460R 1 1888 -cellosaurus:CVCL_1D09 HROBML03 1 1889 -cellosaurus:CVCL_LB67 NCI-H460 MX10 1 1890 -cellosaurus:CVCL_RW33 NCI-H460-LNM35 1 1891 -cellosaurus:CVCL_J264 NCI-H460-Luc 1 1892 -cellosaurus:CVCL_5J23 NCI-H460-luc2 1 1893 -cellosaurus:CVCL_5J07 NCI-H460-Red-Fluc 1 1894 -cellosaurus:CVCL_A5XQ NCI-H460/TPT10 1 1895 -cellosaurus:CVCL_A5XR NCI-H460/TPT10 ABCG2 KO 2 1896 -cellosaurus:CVCL_3969 NCI-H460M 1 1897 -cellosaurus:CVCL_KZ69 PathHunter NCI-H460 CDC25A Degradation 1 1898 -cellosaurus:CVCL_VQ68 RR-H460 1 1899 -cellosaurus:CVCL_8113 SEG-1 1 1900 -cellosaurus:CVCL_5T98 RBM1 [Human renal cell carcinoma] 0 1901 -cellosaurus:CVCL_WK99 RBM1-IT4 1 1902 -cellosaurus:CVCL_5402 VACO 432 0 1903 -cellosaurus:CVCL_A4IM VACO 432 MAP2K1 (-/-) 1 1904 -cellosaurus:CVCL_A4IN VACO 432 MAP2K2 (-/-) 1 1905 -cellosaurus:CVCL_LD57 VACO 432 PIK3CA (H1047R/+) 1 1906 -cellosaurus:CVCL_1564 NCI-H508 0 1907 -cellosaurus:CVCL_A2CF NCI-H508 R1 Cetux 1 1908 -cellosaurus:CVCL_A2CG NCI-H508 R2 Cetux 1 1909 -cellosaurus:CVCL_1386 LS513 0 1910 -cellosaurus:CVCL_T040 SNU-1958 1 1911 -cellosaurus:CVCL_0395 LNCaP 0 1912 -cellosaurus:CVCL_M126 LNCaP 104-S 1 1913 -cellosaurus:CVCL_M127 LNCaP 104-R1 2 1914 -cellosaurus:CVCL_M128 LNCaP 104-R2 3 1915 -cellosaurus:CVCL_M129 LNCaP C-33 1 1916 -cellosaurus:CVCL_M130 LNCaP C-51 2 1917 -cellosaurus:CVCL_M131 LNCaP C-81 2 1918 -cellosaurus:CVCL_4783 LNCaP C4 1 1919 -cellosaurus:CVCL_4782 LNCaP C4-2 2 1920 -cellosaurus:CVCL_4784 LNCaP C4-2B 3 1921 -cellosaurus:CVCL_4785 LNCaP C4-2B2 4 1922 -cellosaurus:CVCL_4786 LNCaP C4-2B3 4 1923 -cellosaurus:CVCL_4787 LNCaP C4-2B4 4 1924 -cellosaurus:CVCL_4788 LNCaP C4-2B5 4 1925 -cellosaurus:CVCL_6E92 LNCaP C4-2Ln 3 1926 -cellosaurus:CVCL_6E93 LNCaP C4-2Pr 3 1927 -cellosaurus:CVCL_M132 LNCaP C5 1 1928 -cellosaurus:CVCL_1379 LNCaP clone FGC 1 1929 -cellosaurus:CVCL_C0BI Abcam LNCaP clone FGC TMPRSS2 KO 2 1930 -cellosaurus:CVCL_U984 AILNCaP 2 1931 -cellosaurus:CVCL_C0Z9 JHU-LNCaP-SM 2 1932 -cellosaurus:CVCL_A1BN LNCaP AR-NTD/pHage 2 1933 -cellosaurus:CVCL_A1BM LNCaP AR-V7/pHage 2 1934 -cellosaurus:CVCL_A1BL LNCaP AR-V7/pLenti 2 1935 -cellosaurus:CVCL_A4BQ LNCaP clone FGC-Luc2 2 1936 -cellosaurus:CVCL_W668 LNCaP clone FGC.10 2 1937 -cellosaurus:CVCL_B413 LNCaP-17 2 1938 -cellosaurus:CVCL_WW88 LNCaP-19 2 1939 -cellosaurus:CVCL_B414 LNCaP-34 2 1940 -cellosaurus:CVCL_ZC87 LNCaP-95 2 1941 -cellosaurus:CVCL_A4DX LNCaP95 clone 2-C6 3 1942 -cellosaurus:CVCL_A4DY LNCaP95 clone 2-D3 3 1943 -cellosaurus:CVCL_A4DZ LNCaP95 clone A7 3 1944 -cellosaurus:CVCL_A4EA LNCaP95 clone D2 3 1945 -cellosaurus:CVCL_A4EB LNCaP95 clone D3 3 1946 -cellosaurus:CVCL_A4EC LNCaP95 clone E2 3 1947 -cellosaurus:CVCL_A4ED LNCaP95 clone F2 3 1948 -cellosaurus:CVCL_ZX07 LNCAP-AAR 2 1949 -cellosaurus:CVCL_4791 LNCaP-AI 2 1950 -cellosaurus:CVCL_5J30 LNCaP-luc-M6 2 1951 -cellosaurus:CVCL_WZ25 LNCaP-SL 2 1952 -cellosaurus:CVCL_M133 LNCaP M 1 1953 -cellosaurus:CVCL_4793 LNCaP-abl 1 1954 -cellosaurus:CVCL_3872 LNCaP-CL1 1 1955 -cellosaurus:CVCL_4924 LNCaP-CL1-GFP 2 1956 -cellosaurus:CVCL_RK71 LNCaP-CL2 2 1957 -cellosaurus:CVCL_8986 LNCaP-CR 1 1958 -cellosaurus:CVCL_V260 LNCaP-CS10 1 1959 -cellosaurus:CVCL_RA57 LNCaP-EnzR 1 1960 -cellosaurus:CVCL_L160 LNCaP-LN1 1 1961 -cellosaurus:CVCL_L161 LNCaP-LN2 2 1962 -cellosaurus:CVCL_L162 LNCaP-LN3 3 1963 -cellosaurus:CVCL_L163 LNCaP-LN4 4 1964 -cellosaurus:CVCL_5J24 LNCaP-luc2 1 1965 -cellosaurus:CVCL_9U27 LNCaP-OM 1 1966 -cellosaurus:CVCL_C0RR LNCaP-PDR1 1 1967 -cellosaurus:CVCL_C0RS LNCaP-PDR2 1 1968 -cellosaurus:CVCL_L164 LNCaP-Pro1 1 1969 -cellosaurus:CVCL_L165 LNCaP-Pro2 2 1970 -cellosaurus:CVCL_L166 LNCaP-Pro3 3 1971 -cellosaurus:CVCL_L167 LNCaP-Pro4 4 1972 -cellosaurus:CVCL_L168 LNCaP-Pro5 5 1973 -cellosaurus:CVCL_5J03 LNCaP-Red-FLuc 1 1974 -cellosaurus:CVCL_4792 LNCaP-Rf 1 1975 -cellosaurus:CVCL_D575 LNGK9 1 1976 -cellosaurus:CVCL_UD76 LREX' 1 1977 -cellosaurus:CVCL_RW50 MR42D 1 1978 -cellosaurus:CVCL_RW51 MR42F 1 1979 -cellosaurus:CVCL_RW52 MR49C 1 1980 -cellosaurus:CVCL_RW53 MR49F 1 1981 -cellosaurus:CVCL_0629 SK-LU-1 0 1982 -cellosaurus:CVCL_YJ93 LINTERNA SK-LU-1 1 1983 -cellosaurus:CVCL_IV51 SK-LU-1b 1 1984 -cellosaurus:CVCL_M848 SN 0 1985 -cellosaurus:CVCL_M849 SN-T4 1 1986 -cellosaurus:CVCL_6728 SHG-44 0 1987 -cellosaurus:CVCL_L602 MCHR2-SHG-44 1 1988 -cellosaurus:CVCL_HF68 SHG-44/ADM 1 1989 -cellosaurus:CVCL_1067 ACHN 0 1990 -cellosaurus:CVCL_W666 ACHN-IL2 1 1991 -cellosaurus:CVCL_5J27 ACHN-luc2 1 1992 -cellosaurus:CVCL_XI64 ACSuR 1 1993 -cellosaurus:CVCL_0279 GLC-4 0 1994 -cellosaurus:CVCL_4997 GLC-4/ADR 1 1995 -cellosaurus:CVCL_A5AZ GLC-4/ADRpr 2 1996 -cellosaurus:CVCL_Y299 GLC-4/AM3x 1 1997 -cellosaurus:CVCL_4998 GLC-4/CDDP 1 1998 -cellosaurus:CVCL_Y297 GLC-4/CDDP11 1 1999 -cellosaurus:CVCL_Y298 GLC-4/CDDP3 1 2000 -cellosaurus:CVCL_4999 GLC-4/MIT60x 1 2001 -cellosaurus:CVCL_Y301 GLC-4/VM20x 1 2002 -cellosaurus:CVCL_VQ17 ATL-55T 0 2003 -cellosaurus:CVCL_A6SG ATL-55T(-) 1 2004 -cellosaurus:CVCL_2791 MKN74 0 2005 -cellosaurus:CVCL_1416 MKN28 1 2006 -cellosaurus:CVCL_UW56 MKN28-EGFP 2 2007 -cellosaurus:CVCL_QZ55 RMKN-28 2 2008 -cellosaurus:CVCL_4Y06 MKN74/CMV-Luc 1 2009 -cellosaurus:CVCL_0290 HCC1937 0 2010 -cellosaurus:CVCL_RA87 HCC1937 shPARG 1 2011 -cellosaurus:CVCL_4W92 HCC1937/CMV-Luc 1 2012 -cellosaurus:CVCL_1543 NCI-H2228 0 2013 -cellosaurus:CVCL_4V13 NCI-H2228-Luc 1 2014 -cellosaurus:CVCL_1700 SK-N-AS 0 2015 -cellosaurus:CVCL_C0QD SK-N-AS RET KO clone C17 1 2016 -cellosaurus:CVCL_C0QE SK-N-AS RET KO clone C19 1 2017 -cellosaurus:CVCL_C0QA SK-N-AS RET KO clone C2 1 2018 -cellosaurus:CVCL_C0QB SK-N-AS RET KO clone C5 1 2019 -cellosaurus:CVCL_C0QC SK-N-AS RET KO clone C9 1 2020 -cellosaurus:CVCL_C0Q9 SK-N-AS RET overexpressing clone C1 1 2021 -cellosaurus:CVCL_RS87 SK-N-ASrCARBO2000 1 2022 -cellosaurus:CVCL_RS88 SK-N-ASrCDDP1000 1 2023 -cellosaurus:CVCL_RS24 SK-N-ASrCDDP500 1 2024 -cellosaurus:CVCL_RS89 SK-N-ASrDACARB16 1 2025 -cellosaurus:CVCL_RS90 SK-N-ASrDOCE10 1 2026 -cellosaurus:CVCL_RS91 SK-N-ASrDOX10 1 2027 -cellosaurus:CVCL_RS92 SK-N-ASrETO100 1 2028 -cellosaurus:CVCL_RS93 SK-N-ASrETO200 1 2029 -cellosaurus:CVCL_RS94 SK-N-ASrGEMCI10 1 2030 -cellosaurus:CVCL_RS95 SK-N-ASrIRINO500 1 2031 -cellosaurus:CVCL_RS96 SK-N-ASrMEL1000 1 2032 -cellosaurus:CVCL_RR29 SK-N-ASrOXALI4000 1 2033 -cellosaurus:CVCL_RS97 SK-N-ASrOXALI4000(-) 1 2034 -cellosaurus:CVCL_RS98 SK-N-ASrPCL20 1 2035 -cellosaurus:CVCL_RS99 SK-N-ASrTOPO20 1 2036 -cellosaurus:CVCL_RR31 SK-N-ASrVCR20 1 2037 -cellosaurus:CVCL_RT00 SK-N-ASrVINB10 1 2038 -cellosaurus:CVCL_RT01 SK-N-ASrVINOR20 1 2039 -cellosaurus:CVCL_AQ53 SK-N-RA 1 2040 -cellosaurus:CVCL_1058 A-204 0 2041 -cellosaurus:CVCL_QY40 A-204/DasR 1 2042 -cellosaurus:CVCL_QY41 A-204/PazR 1 2043 -cellosaurus:CVCL_L305 A204.1 1 2044 -cellosaurus:CVCL_2807 HSC-1 0 2045 -cellosaurus:CVCL_JG49 HSC-1-Luc 1 2046 -cellosaurus:CVCL_2H45 XL-2 0 2047 -cellosaurus:CVCL_2H46 XL-2sci 1 2048 -cellosaurus:CVCL_2235 VCaP 0 2049 -cellosaurus:CVCL_A1BP VCaP AR-V7/pHag 1 2050 -cellosaurus:CVCL_A0BX VCaP-CR 1 2051 -cellosaurus:CVCL_RA58 VCaP-EnzR 1 2052 -cellosaurus:CVCL_C0QQ VCaP-R 1 2053 -cellosaurus:CVCL_WZ27 VCaP-SL 1 2054 -cellosaurus:CVCL_2195 SK-GT-4 0 2055 -cellosaurus:CVCL_C0X0 SK4-Rf 1 2056 -cellosaurus:CVCL_0434 MKN45 0 2057 -cellosaurus:CVCL_7668 GTL-16 1 2058 -cellosaurus:CVCL_VS67 GTL16R1 2 2059 -cellosaurus:CVCL_VS68 GTL16R3 2 2060 -cellosaurus:CVCL_VS69 GTL16S5 2 2061 -cellosaurus:CVCL_7696 PR-GTL-16 2 2062 -cellosaurus:CVCL_XE84 MKN45-Cas9-526 1 2063 -cellosaurus:CVCL_UW57 MKN45-EGFP 1 2064 -cellosaurus:CVCL_J262 MKN45-Luc 1 2065 -cellosaurus:CVCL_YX96 MKN45/CDDP/R1 1 2066 -cellosaurus:CVCL_A9J7 MKN45/DR 1 2067 -cellosaurus:CVCL_QY39 MKN45/F2R 1 2068 -cellosaurus:CVCL_9645 MKN45/TP 1 2069 -cellosaurus:CVCL_RM02 MKN45G 1 2070 -cellosaurus:CVCL_RM03 MGLVA1 2 2071 -cellosaurus:CVCL_Y476 MKN45P 1 2072 -cellosaurus:CVCL_Z941 MKN45R0.05 1 2073 -cellosaurus:CVCL_Z942 MKN45R0.08 1 2074 -cellosaurus:CVCL_YL63 MU2 0 2075 -cellosaurus:CVCL_YL05 MU2F 1 2076 -cellosaurus:CVCL_2420 COV362 0 2077 -cellosaurus:CVCL_2421 COV362.4 1 2078 -cellosaurus:CVCL_0035 PC-3 0 2079 -cellosaurus:CVCL_L211 1-LN 1 2080 -cellosaurus:CVCL_B0ZD Abcam PC-3 CXCL8 KO 1 2081 -cellosaurus:CVCL_4735 ALVA-101 1 2082 -cellosaurus:CVCL_4737 ALVA-31 1 2083 -cellosaurus:CVCL_4734 ALVA-41 1 2084 -cellosaurus:CVCL_4736 ALVA-55 1 2085 -cellosaurus:CVCL_4738 DuPro-1 1 2086 -cellosaurus:CVCL_5989 JHU-019 1 2087 -cellosaurus:CVCL_YJ90 LINTERNA PC-3 1 2088 -cellosaurus:CVCL_4868 MPC-3-10 1 2089 -cellosaurus:CVCL_4Y40 PC-3 D12 1 2090 -cellosaurus:CVCL_4Y41 PC-3 D8 1 2091 -cellosaurus:CVCL_6E88 PC-3 MC 1 2092 -cellosaurus:CVCL_6E89 PC-3 MK 1 2093 -cellosaurus:CVCL_6E90 PC-3 ML 1 2094 -cellosaurus:CVCL_ZC63 PC-3 ML-Luc 2 2095 -cellosaurus:CVCL_6E91 PC-3 MR 1 2096 -cellosaurus:CVCL_4877 PC-3-1A 1 2097 -cellosaurus:CVCL_C3HH PC-3-AR 1 2098 -cellosaurus:CVCL_XD72 PC-3-Cas9-576 1 2099 -cellosaurus:CVCL_XD73 PC-3-Cas9-577 1 2100 -cellosaurus:CVCL_XD74 PC-3-Cas9-578 1 2101 -cellosaurus:CVCL_XD75 PC-3-Cas9-579 1 2102 -cellosaurus:CVCL_J265 PC-3-Luc 1 2103 -cellosaurus:CVCL_A4BV PC-3-Luc2 1 2104 -cellosaurus:CVCL_5J26 PC-3-luc2 1 2105 -cellosaurus:CVCL_5J29 PC-3-luc2-GFP 1 2106 -cellosaurus:CVCL_C0QS PC-3-R 1 2107 -cellosaurus:CVCL_5J08 PC-3-Red-FLuc 1 2108 -cellosaurus:CVCL_5J09 PC-3-Red-FLuc-GFP 1 2109 -cellosaurus:CVCL_ZX05 PC-3-TxR 1 2110 -cellosaurus:CVCL_ZX06 PC-3-TxR/CxR 2 2111 -cellosaurus:CVCL_A2FD PC-3/DTX 1 2112 -cellosaurus:CVCL_M060 PC-3/nKR 1 2113 -cellosaurus:CVCL_B289 PC-3H 1 2114 -cellosaurus:CVCL_9555 PC-3M 1 2115 -cellosaurus:CVCL_5J43 hVEGF-luc/PC3M 2 2116 -cellosaurus:CVCL_6E87 PC-3/MA2 2 2117 -cellosaurus:CVCL_G257 PC-3M-1E8 2 2118 -cellosaurus:CVCL_G256 PC-3M-2B4 2 2119 -cellosaurus:CVCL_L155 PC-3M-LN1 2 2120 -cellosaurus:CVCL_L156 PC-3M-LN2 3 2121 -cellosaurus:CVCL_L157 PC-3M-LN3 4 2122 -cellosaurus:CVCL_D578 PC-3M-LN4 5 2123 -cellosaurus:CVCL_D577 PC-3M-luc-C6 2 2124 -cellosaurus:CVCL_5J25 PC-3M-luc2 2 2125 -cellosaurus:CVCL_L158 PC-3M-Pro1 2 2126 -cellosaurus:CVCL_L159 PC-3M-Pro2 3 2127 -cellosaurus:CVCL_L301 PC-3M-Pro3 4 2128 -cellosaurus:CVCL_D579 PC-3M-Pro4 5 2129 -cellosaurus:CVCL_5J10 PC-3M-Red-FLuc 2 2130 -cellosaurus:CVCL_4885 PC3-MM2 2 2131 -cellosaurus:CVCL_4886 PC-3N 1 2132 -cellosaurus:CVCL_RS45 PC-3rVCR20 1 2133 -cellosaurus:CVCL_RS41 PC-3rYM155_20nM 1 2134 -cellosaurus:CVCL_0482 PC-3U 1 2135 -cellosaurus:CVCL_M124 PC-5 [Human prostate carcinoma] 1 2136 -cellosaurus:CVCL_X641 PC-J 1 2137 -cellosaurus:CVCL_B0CB PC3-epi 1 2138 -cellosaurus:CVCL_B0CN PC3-EMT1 2 2139 -cellosaurus:CVCL_B0E4 PC3-EMT12 2 2140 -cellosaurus:CVCL_B0E3 PC3-EMT14 2 2141 -cellosaurus:CVCL_WM76 PC3-R-caba 1 2142 -cellosaurus:CVCL_D689 PC3B1 1 2143 -cellosaurus:CVCL_B7P9 PC3PR 1 2144 -cellosaurus:CVCL_C169 PCI-03 1 2145 -cellosaurus:CVCL_4778 PPC-1 1 2146 -cellosaurus:CVCL_YJ69 VAMPIRO PC-3 1 2147 -cellosaurus:CVCL_1338 KP-4 0 2148 -cellosaurus:CVCL_8727 KP-4-1 1 2149 -cellosaurus:CVCL_8728 KP-4-2 1 2150 -cellosaurus:CVCL_8729 KP-4-3 1 2151 -cellosaurus:CVCL_Y142 KP-4-4 1 2152 -cellosaurus:CVCL_B112 UOK130 0 2153 -cellosaurus:CVCL_4Z16 UOKCR 1 2154 -cellosaurus:CVCL_WK56 MAMIYA 0 2155 -cellosaurus:CVCL_WK57 MAMIYA-HLAG 1 2156 -cellosaurus:CVCL_H623 NSCLC-N6 0 2157 -cellosaurus:CVCL_H624 NSCLC-N6 clone C15 1 2158 -cellosaurus:CVCL_H625 NSCLC-N6 clone C65 1 2159 -cellosaurus:CVCL_H626 NSCLC-N6 clone C92 1 2160 -cellosaurus:CVCL_H627 NSCLC-N6 clone C98 1 2161 -cellosaurus:CVCL_DH35 MCM1 0 2162 -cellosaurus:CVCL_DH36 MCM1G 1 2163 -cellosaurus:CVCL_1066 ABC-1 0 2164 -cellosaurus:CVCL_Y023 ABC-1#IL-6 1 2165 -cellosaurus:CVCL_5411 VACO 8 0 2166 -cellosaurus:CVCL_VK10 VACO 8-2 1 2167 -cellosaurus:CVCL_1304 IGROV-1 0 2168 -cellosaurus:CVCL_C1M7 IGROV(CDDP) 1 2169 -cellosaurus:CVCL_4V48 IGROV(T100r) 1 2170 -cellosaurus:CVCL_8723 IGROV-1/25 ET 1 2171 -cellosaurus:CVCL_4Y61 IGROV-1/APL 1 2172 -cellosaurus:CVCL_IQ21 IGROV-1/CP 1 2173 -cellosaurus:CVCL_EQ59 IGROV-1/MX3 1 2174 -cellosaurus:CVCL_EQ61 IGROV-1/Pt0.5 1 2175 -cellosaurus:CVCL_EQ62 IGROV-1/Pt1 1 2176 -cellosaurus:CVCL_EQ60 IGROV-1/T8 1 2177 -cellosaurus:CVCL_8744 OV1/ADR 1 2178 -cellosaurus:CVCL_8745 OV1/CDDP 1 2179 -cellosaurus:CVCL_8746 OV1/VCR 1 2180 -cellosaurus:CVCL_0498 RCC4 0 2181 -cellosaurus:CVCL_UY81 RCC4/empty vector 1 2182 -cellosaurus:CVCL_2706 RCC4/VHL 1 2183 -cellosaurus:CVCL_V610 SLR24 1 2184 -cellosaurus:CVCL_1252 HCC1428 0 2185 -cellosaurus:CVCL_YX83 HCC1428-LTED 1 2186 -cellosaurus:CVCL_5160 NCI-H3122 0 2187 -cellosaurus:CVCL_4Y37 NCI-H3122-CHR-A1 1 2188 -cellosaurus:CVCL_AY53 NCI-H3122-CR1 1 2189 -cellosaurus:CVCL_0181 BV-173 0 2190 -cellosaurus:CVCL_5K95 BV-173/E255K 1 2191 -cellosaurus:CVCL_U345 M14P 0 2192 -cellosaurus:CVCL_U460 M14M 1 2193 -cellosaurus:CVCL_XF39 UISO-MEL-2 0 2194 -cellosaurus:CVCL_XF40 UISO-H-MEL-2-IL-2 1 2195 -cellosaurus:CVCL_0526 SK-MEL-28 0 2196 -cellosaurus:CVCL_6937 OCM-3 1 2197 -cellosaurus:CVCL_6938 OCM-8 1 2198 -cellosaurus:CVCL_J267 SK-MEL-28-Luc 1 2199 -cellosaurus:CVCL_AP99 SK-MEL-28-VR 1 2200 -cellosaurus:CVCL_IM75 SK-MEL-28DDR1-PLXAZD 1 2201 -cellosaurus:CVCL_IM76 SK-MEL-28R1-PLX 1 2202 -cellosaurus:CVCL_Y076 HxGC3 0 2203 -cellosaurus:CVCL_1B32 GC3/M 1 2204 -cellosaurus:CVCL_1B34 GC3/Cl 2 2205 -cellosaurus:CVCL_1B33 GC3/M TK- 2 2206 -cellosaurus:CVCL_8787 WM793 0 2207 -cellosaurus:CVCL_5239 1205Lu 1 2208 -cellosaurus:CVCL_A800 WM793-P1N1 1 2209 -cellosaurus:CVCL_A801 WM793-P1N2 1 2210 -cellosaurus:CVCL_A802 WM793-P1N3 1 2211 -cellosaurus:CVCL_A803 WM793-P2N1 1 2212 -cellosaurus:CVCL_A804 WM793-P2N2 1 2213 -cellosaurus:CVCL_A805 WM793-P2N3 1 2214 -cellosaurus:CVCL_5175 VACO 235 0 2215 -cellosaurus:CVCL_5176 VACO 411 1 2216 -cellosaurus:CVCL_0393 LN-229 0 2217 -cellosaurus:CVCL_WS33 LN-229_indWIF1 1 2218 -cellosaurus:CVCL_A8V5 LN229/CD20 1 2219 -cellosaurus:CVCL_0101 SNU-601 0 2220 -cellosaurus:CVCL_C1NB SNU-601 Ola-R 1 2221 -cellosaurus:CVCL_C516 ISO-HAS 0 2222 -cellosaurus:CVCL_C518 ISO-HAS-1 1 2223 -cellosaurus:CVCL_AS11 ISO-HAS-B 1 2224 -cellosaurus:CVCL_0099 SNU-1 0 2225 -cellosaurus:CVCL_L042 SNU-1-DOX 1 2226 -cellosaurus:CVCL_M474 UKF-NB-6 0 2227 -cellosaurus:CVCL_RR93 UKF-NB-6rCARBO2000 1 2228 -cellosaurus:CVCL_M475 UKF-NB-6rCDDP1000 1 2229 -cellosaurus:CVCL_RS09 UKF-NB-6rCDDP2000 1 2230 -cellosaurus:CVCL_RS10 UKF-NB-6rDACARB8 1 2231 -cellosaurus:CVCL_RS11 UKF-NB-6rDOCE10 1 2232 -cellosaurus:CVCL_M476 UKF-NB-6rDOX20 1 2233 -cellosaurus:CVCL_RS12 UKF-NB-6rDOX60 1 2234 -cellosaurus:CVCL_RR94 UKF-NB-6rETO200 1 2235 -cellosaurus:CVCL_RS13 UKF-NB-6rGEMCI10 1 2236 -cellosaurus:CVCL_RT25 UKF-NB-6rIRINO1000 1 2237 -cellosaurus:CVCL_RR95 UKF-NB-6rMEL1000 1 2238 -cellosaurus:CVCL_RS14 UKF-NB-6rMEL2000 1 2239 -cellosaurus:CVCL_RS15 UKF-NB-6rNutlin10muM 1 2240 -cellosaurus:CVCL_RR96 UKF-NB-6rOXALI4000 1 2241 -cellosaurus:CVCL_RR97 UKF-NB-6rPCL20 1 2242 -cellosaurus:CVCL_RR98 UKF-NB-6rTOPO20 1 2243 -cellosaurus:CVCL_M477 UKF-NB-6rVCR10 1 2244 -cellosaurus:CVCL_RS16 UKF-NB-6rVINB10 1 2245 -cellosaurus:CVCL_RR99 UKF-NB-6rVINOR40 1 2246 -cellosaurus:CVCL_RT26 UKF-NB-6rYM155_20nM 1 2247 -cellosaurus:CVCL_1670 RT-112 0 2248 -cellosaurus:CVCL_2714 RT112/84 1 2249 -cellosaurus:CVCL_6215 RT112/D21 1 2250 -cellosaurus:CVCL_B7BP RT112-CP 1 2251 -cellosaurus:CVCL_RR17 RT112rCDDP1000 1 2252 -cellosaurus:CVCL_RR18 RT112rGEMCI20 1 2253 -cellosaurus:CVCL_U097 B203L 0 2254 -cellosaurus:CVCL_A5AS B203L-CD80 1 2255 -cellosaurus:CVCL_9657 YCC-3 0 2256 -cellosaurus:CVCL_9658 YCC-3/R 1 2257 -cellosaurus:CVCL_9659 YCC-3/TP 1 2258 -cellosaurus:CVCL_5425 ANBL-6 0 2259 -cellosaurus:CVCL_QZ43 ANBL-6 BR 1 2260 -cellosaurus:CVCL_B7F5 ANBL-6-luc 1 2261 -cellosaurus:CVCL_1525 NCI-H209 0 2262 -cellosaurus:CVCL_9V41 H209/CP 1 2263 -cellosaurus:CVCL_9V42 H209/VP 1 2264 -cellosaurus:CVCL_W477 KE-43 0 2265 -cellosaurus:CVCL_W478 KE-43C4 1 2266 -cellosaurus:CVCL_6813 C8161 0 2267 -cellosaurus:CVCL_WS19 C8161-GFP 1 2268 -cellosaurus:CVCL_WS20 C8161-PEDF 1 2269 -cellosaurus:CVCL_0196 C8161.9 1 2270 -cellosaurus:CVCL_6814 C8161.9KFM 2 2271 -cellosaurus:CVCL_C583 FM28 0 2272 -cellosaurus:CVCL_UI33 FM28.4 1 2273 -cellosaurus:CVCL_S879 621-101 0 2274 -cellosaurus:CVCL_S880 621NST 1 2275 -cellosaurus:CVCL_JK08 TRI102 1 2276 -cellosaurus:CVCL_JK09 TRI103 2 2277 -cellosaurus:CVCL_X015 CPA-Yang1 0 2278 -cellosaurus:CVCL_X016 CPA-Yang1-BR 1 2279 -cellosaurus:CVCL_1251 HCC1419 0 2280 -cellosaurus:CVCL_J253 HCC1419-Luc 1 2281 -cellosaurus:CVCL_B3ML HCC1419/TDR 1 2282 -cellosaurus:CVCL_1292 HT-1376 0 2283 -cellosaurus:CVCL_C3H1 HT1376 FOXP3 1 2284 -cellosaurus:CVCL_C3H2 HT1376 FOXP3Delta3 1 2285 -cellosaurus:CVCL_RR15 HT1376rCDDP1000 1 2286 -cellosaurus:CVCL_RR16 HT1376rGEMCI20 1 2287 -cellosaurus:CVCL_5650 SK-MEL-93 DX-3 0 2288 -cellosaurus:CVCL_LI22 DX3-LT5.1 1 2289 -cellosaurus:CVCL_VS22 DX3-LT5.1 HmR1 2 2290 -cellosaurus:CVCL_1D33 DX3-puro/beta6 1 2291 -cellosaurus:CVCL_VV72 MUG-Mel1 0 2292 -cellosaurus:CVCL_VV73 MUG-Mel1 clone C8 1 2293 -cellosaurus:CVCL_VV74 MUG-Mel1 clone D5 1 2294 -cellosaurus:CVCL_0360 JAR 0 2295 -cellosaurus:CVCL_XY25 JAR-G1 1 2296 -cellosaurus:CVCL_XY26 JAR-G1s 1 2297 -cellosaurus:CVCL_B7MU JAR-Smad3/c 1 2298 -cellosaurus:CVCL_3840 Li-7 0 2299 -cellosaurus:CVCL_XE71 Li-7-Cas9-751 1 2300 -cellosaurus:CVCL_XE72 Li-7-Cas9-752 1 2301 -cellosaurus:CVCL_XE73 Li-7-Cas9-753 1 2302 -cellosaurus:CVCL_XE74 Li-7-Cas9-754 1 2303 -cellosaurus:CVCL_XE75 Li-7-Cas9-755 1 2304 -cellosaurus:CVCL_XE76 Li-7-Cas9-756 1 2305 -cellosaurus:CVCL_XE77 Li-7-Cas9-757 1 2306 -cellosaurus:CVCL_XE78 Li-7-Cas9-758 1 2307 -cellosaurus:CVCL_XE79 Li-7-Cas9-759 1 2308 -cellosaurus:CVCL_XE80 Li-7-Cas9-760 1 2309 -cellosaurus:CVCL_XE70 Li-7-Luc2-tdT 1 2310 -cellosaurus:CVCL_7036 BRO 0 2311 -cellosaurus:CVCL_7035 BLM 1 2312 -cellosaurus:CVCL_RL86 BRO/pFRmdr1.6 clone 1.1 1 2313 -cellosaurus:CVCL_RL87 BRO/pFRmdr1.6 clone 1.4 1 2314 -cellosaurus:CVCL_A035 BCWM.1 0 2315 -cellosaurus:CVCL_VJ29 BCWM.1/BR 1 2316 -cellosaurus:CVCL_VJ30 BCWM.1/IR 1 2317 -cellosaurus:CVCL_6903 GBC-SD 0 2318 -cellosaurus:CVCL_A9DL GBC-SD-Cas9-766 1 2319 -cellosaurus:CVCL_A9DM GBC-SD-Cas9-767 1 2320 -cellosaurus:CVCL_A9DN GBC-SD-Cas9-768 1 2321 -cellosaurus:CVCL_A9DP GBC-SD-Cas9-769 1 2322 -cellosaurus:CVCL_A9DQ GBC-SD-Cas9-770 1 2323 -cellosaurus:CVCL_A9DR GBC-SD-Cas9-771 1 2324 -cellosaurus:CVCL_A9DS GBC-SD-Cas9-772 1 2325 -cellosaurus:CVCL_A9DT GBC-SD-Cas9-773 1 2326 -cellosaurus:CVCL_A9DU GBC-SD-Cas9-774 1 2327 -cellosaurus:CVCL_A9DV GBC-SD-Cas9-775 1 2328 -cellosaurus:CVCL_A9DK GBC-SD-Luc2-tdT 1 2329 -cellosaurus:CVCL_M738 GBC-SD/ATO 1 2330 -cellosaurus:CVCL_M739 GBC-SD/HL 1 2331 -cellosaurus:CVCL_IU74 GBC-SD/M 1 2332 -cellosaurus:CVCL_M740 GBC-SD/M3 1 2333 -cellosaurus:CVCL_9810 UWOV2 0 2334 -cellosaurus:CVCL_9811 UWOV2 Sf 1 2335 -cellosaurus:CVCL_3871 CL1-0 0 2336 -cellosaurus:CVCL_D517 CL1-1 1 2337 -cellosaurus:CVCL_D518 CL1-2 1 2338 -cellosaurus:CVCL_D519 CL1-3 1 2339 -cellosaurus:CVCL_D520 CL1-4 1 2340 -cellosaurus:CVCL_D521 CL1-5 1 2341 -cellosaurus:CVCL_IN56 CL1-5-F4 2 2342 -cellosaurus:CVCL_A5BR CL1-5-F4-Luc 3 2343 -cellosaurus:CVCL_A5BS Bm7 4 2344 -cellosaurus:CVCL_A5BT Bm7brm 5 2345 -cellosaurus:CVCL_0008 Daudi 0 2346 -cellosaurus:CVCL_6220 Daudi-TG 1 2347 -cellosaurus:CVCL_UF09 DIF10 1 2348 -cellosaurus:CVCL_UF10 DIF2 1 2349 -cellosaurus:CVCL_UF11 DIF3 1 2350 -cellosaurus:CVCL_UF12 DIF3-17 2 2351 -cellosaurus:CVCL_UF13 DIF3REV5 2 2352 -cellosaurus:CVCL_UF14 DIF8 1 2353 -cellosaurus:CVCL_UF15 DIF9 1 2354 -cellosaurus:CVCL_ZI16 DUT 1 2355 -cellosaurus:CVCL_5I55 RST2 1 2356 -cellosaurus:CVCL_0465 OVCAR-3 0 2357 -cellosaurus:CVCL_1882 ONCO-DG-1 1 2358 -cellosaurus:CVCL_Y033 OV(hyg)CAR3 1 2359 -cellosaurus:CVCL_S033 OVCAR-3 SimpleCell O-GalNAc 1 2360 -cellosaurus:CVCL_4Y18 OVCAR-3/CMV-Luc 1 2361 -cellosaurus:CVCL_DA03 OVCAR-3/T40 1 2362 -cellosaurus:CVCL_DA02 OVCAR-3/TxT5 1 2363 -cellosaurus:CVCL_DH37 OVCAR3-533533-R1 1 2364 -cellosaurus:CVCL_DH38 OVCAR3-533533-R3 1 2365 -cellosaurus:CVCL_DH39 OVCAR3-533533-R5 1 2366 -cellosaurus:CVCL_DH40 OVCAR3-533533-R6 1 2367 -cellosaurus:CVCL_DH41 OVCAR3-533533-R7 1 2368 -cellosaurus:CVCL_0065 Jurkat 0 2369 -cellosaurus:CVCL_B7V8 Abcam Jurkat CD1A KO 1 2370 -cellosaurus:CVCL_B0Z5 Abcam Jurkat CD1C KO 1 2371 -cellosaurus:CVCL_B7V9 Abcam Jurkat CD247 KO 1 2372 -cellosaurus:CVCL_B7VD Abcam Jurkat IDH2 KO 1 2373 -cellosaurus:CVCL_B0Z6 Abcam Jurkat IFNG KO 1 2374 -cellosaurus:CVCL_B0Z7 Abcam Jurkat IKZF1 KO 1 2375 -cellosaurus:CVCL_B7VA Abcam Jurkat LCK KO 1 2376 -cellosaurus:CVCL_B7VB Abcam Jurkat LEF1 KO 1 2377 -cellosaurus:CVCL_B0Z8 Abcam Jurkat PTPN2 KO 1 2378 -cellosaurus:CVCL_B7VF Abcam Jurkat PVRIG KO 1 2379 -cellosaurus:CVCL_B0Z9 Abcam Jurkat TAL1 KO 1 2380 -cellosaurus:CVCL_B7VE Abcam Jurkat TP53 KO 1 2381 -cellosaurus:CVCL_B7VC Abcam Jurkat ZAP70 KO 1 2382 -cellosaurus:CVCL_U618 BCL2 (AAA) Jurkat 1 2383 -cellosaurus:CVCL_U619 BCL2 (S70A) Jurkat 1 2384 -cellosaurus:CVCL_U620 BCL2 (S87A) Jurkat 1 2385 -cellosaurus:CVCL_U617 BCL2 Jurkat 1 2386 -cellosaurus:CVCL_KS58 CellSensor CRE-bla Jurkat 1 2387 -cellosaurus:CVCL_KS63 CellSensor ISRE-bla Jurkat 1 2388 -cellosaurus:CVCL_KB42 CellSensor NFAT-bla Jurkat 1 2389 -cellosaurus:CVCL_ZK76 GeneBLAzer M1-NFAT-bla Jurkat 2 2390 -cellosaurus:CVCL_KB43 CellSensor NFkB-bla Jurkat 1 2391 -cellosaurus:CVCL_U426 Flp-In-Jurkat 1 2392 -cellosaurus:CVCL_ZK91 GeneBLAzer CMV-bla Jurkat 1 2393 -cellosaurus:CVCL_LB63 GloResponse NFAT-RE-luc2 Jurkat 1 2394 -cellosaurus:CVCL_2461 H33HJ-JA1 1 2395 -cellosaurus:CVCL_U324 J-A1886 1 2396 -cellosaurus:CVCL_1H08 J-Jhan 1 2397 -cellosaurus:CVCL_1H09 J-Jhan/U1102 2 2398 -cellosaurus:CVCL_8281 J-Lat 10.6 1 2399 -cellosaurus:CVCL_8282 J-Lat 15.4 1 2400 -cellosaurus:CVCL_8280 J-Lat 6.3 1 2401 -cellosaurus:CVCL_8284 J-Lat 8.4 1 2402 -cellosaurus:CVCL_8285 J-Lat 9.2 1 2403 -cellosaurus:CVCL_1H28 J-Lat GFP Clone A72 1 2404 -cellosaurus:CVCL_1G41 J-Lat Tat-GFP Clone 82 1 2405 -cellosaurus:CVCL_1G42 J-Lat Tat-GFP Clone A1 1 2406 -cellosaurus:CVCL_1G43 J-Lat Tat-GFP Clone A2 1 2407 -cellosaurus:CVCL_1G44 J-Lat Tat-GFP Clone A7 1 2408 -cellosaurus:CVCL_1G45 J-Lat Tat-GFP Clone H2 1 2409 -cellosaurus:CVCL_8279 J1.1 1 2410 -cellosaurus:CVCL_R861 J14 1 2411 -cellosaurus:CVCL_B7PR JcTaxWT-Neo7 1 2412 -cellosaurus:CVCL_XF35 JGFP1 1 2413 -cellosaurus:CVCL_XF36 JPM50.6 2 2414 -cellosaurus:CVCL_1Y74 JinB8 1 2415 -cellosaurus:CVCL_2966 JKT-beta-del 1 2416 -cellosaurus:CVCL_4V24 JL/AMSA 1 2417 -cellosaurus:CVCL_1E01 JLTRG 1 2418 -cellosaurus:CVCL_1E02 JLTRG-R5 2 2419 -cellosaurus:CVCL_0D86 JPX-9 1 2420 -cellosaurus:CVCL_XF44 JSL1 1 2421 -cellosaurus:CVCL_XF45 JSL4 1 2422 -cellosaurus:CVCL_IR10 Jurkat 1G4 1 2423 -cellosaurus:CVCL_1061 Jurkat clone A3 1 2424 -cellosaurus:CVCL_3724 I 2.1 2 2425 -cellosaurus:CVCL_3725 I 9.2 2 2426 -cellosaurus:CVCL_HF44 Jurkat-FADD-/- 2 2427 -cellosaurus:CVCL_3502 Jurkat D1.1 1 2428 -cellosaurus:CVCL_0367 Jurkat E6.1 1 2429 -cellosaurus:CVCL_6819 10B10 2 2430 -cellosaurus:CVCL_X694 1G5 [Human Jurkat derivative] 2 2431 -cellosaurus:CVCL_A9P6 Foxp3 reporter (Luc)-Jurkat 2 2432 -cellosaurus:CVCL_J124 J-beta2.7 2 2433 -cellosaurus:CVCL_0354 J.CaM1.6 2 2434 -cellosaurus:CVCL_B7TT J.CaM1.7 3 2435 -cellosaurus:CVCL_XF41 JCaM1/TAg 3 2436 -cellosaurus:CVCL_XF42 JCaM1/Lck+ 4 2437 -cellosaurus:CVCL_XF43 JCaM1/LckR154K 4 2438 -cellosaurus:CVCL_R862 J.CaM2 2 2439 -cellosaurus:CVCL_DR61 J.CaM2.5 3 2440 -cellosaurus:CVCL_6410 J.gamma1 2 2441 -cellosaurus:CVCL_6411 J.gamma1.WT 3 2442 -cellosaurus:CVCL_1316 J.RT3-T3.5 2 2443 -cellosaurus:CVCL_GX97 CH7C17 3 2444 -cellosaurus:CVCL_2530 J45.01 2 2445 -cellosaurus:CVCL_JL96 JKBulk 2 2446 -cellosaurus:CVCL_JL97 JK28 3 2447 -cellosaurus:CVCL_LH47 Jurkat 1F2 2 2448 -cellosaurus:CVCL_LH48 Jurkat 1F2-hGITR 3 2449 -cellosaurus:CVCL_C3CE Jurkat B2M KO 2 2450 -cellosaurus:CVCL_C3CQ Jurkat HLA-A*01:01 3 2451 -cellosaurus:CVCL_C3CR Jurkat HLA-A*02:01 3 2452 -cellosaurus:CVCL_C3CS Jurkat HLA-A*03:01 3 2453 -cellosaurus:CVCL_C3CT Jurkat HLA-A*11:01 3 2454 -cellosaurus:CVCL_C3CU Jurkat HLA-A*24:02 3 2455 -cellosaurus:CVCL_C3CV Jurkat HLA-B*07:02 3 2456 -cellosaurus:CVCL_C3CW Jurkat HLA-B*08:01 3 2457 -cellosaurus:CVCL_C3CX Jurkat HLA-B*15:10 3 2458 -cellosaurus:CVCL_C3CY Jurkat HLA-B*35:01 3 2459 -cellosaurus:CVCL_C3CZ Jurkat HLA-B*40:01 3 2460 -cellosaurus:CVCL_WN96 Jurkat E6.1 NF-kappaB::eGFP 2 2461 -cellosaurus:CVCL_WN97 JE6-1REP-iNKT 3 2462 -cellosaurus:CVCL_DS01 Jurkat J77 2 2463 -cellosaurus:CVCL_HE54 Jurkat clone 77-6.8 3 2464 -cellosaurus:CVCL_HE55 J31.13 4 2465 -cellosaurus:CVCL_DS02 Jurkat J77 cl20 3 2466 -cellosaurus:CVCL_DF51 Jurkat NucLight Red 2 2467 -cellosaurus:CVCL_C3EZ Jurkat Safe Harbor Landing Pad 2 2468 -cellosaurus:CVCL_JL98 JXBulk 2 2469 -cellosaurus:CVCL_JL99 JX17 3 2470 -cellosaurus:CVCL_A9P4 NF-kappaB reporter (Luc)-Jurkat 2 2471 -cellosaurus:CVCL_6429 P116 2 2472 -cellosaurus:CVCL_6430 P116.cl39 3 2473 -cellosaurus:CVCL_D588 T-REx-Jurkat 2 2474 -cellosaurus:CVCL_4530 Jurkat J6 1 2475 -cellosaurus:CVCL_KU30 Jurkat KZ142 clone #24 1 2476 -cellosaurus:CVCL_XZ57 Jurkat NF-kb luciferase reporter 1 2477 -cellosaurus:CVCL_YB71 Jurkat pNFAT-EGFP 1 2478 -cellosaurus:CVCL_EG05 Jurkat R3.25 1 2479 -cellosaurus:CVCL_C3G2 Jurkat RB1-KO 1 2480 -cellosaurus:CVCL_KU38 Jurkat Tet-Off 1 2481 -cellosaurus:CVCL_KU35 Jurkat Tet-On 1 2482 -cellosaurus:CVCL_V356 Jurkat Tet-On 3G 1 2483 -cellosaurus:CVCL_W813 Jurkat tet-on clone 1 1 2484 -cellosaurus:CVCL_W814 Jurkat tet-on clone 2 1 2485 -cellosaurus:CVCL_0584 Jurkat Wurzburg 1 2486 -cellosaurus:CVCL_U326 Jurkat-111 1 2487 -cellosaurus:CVCL_1G47 Jurkat-522 F/Y 1 2488 -cellosaurus:CVCL_1G48 Jurkat-7/3 STOP 1 2489 -cellosaurus:CVCL_6925 Jurkat-77 1 2490 -cellosaurus:CVCL_U323 Jurkat-99 1 2491 -cellosaurus:CVCL_X703 Jurkat-A2 1 2492 -cellosaurus:CVCL_X704 JA2/R7Hyg 2 2493 -cellosaurus:CVCL_1G46 Jurkat-deltaKS 1 2494 -cellosaurus:CVCL_X593 Jurkat-Dual 1 2495 -cellosaurus:CVCL_JZ99 Jurkat-F9-1906LUC 1 2496 -cellosaurus:CVCL_1F94 Jurkat-HXBc2(4) 1 2497 -cellosaurus:CVCL_1F95 Jurkat-HXBc2(6) 1 2498 -cellosaurus:CVCL_B332 Jurkat-JMN 1 2499 -cellosaurus:CVCL_XX92 Jurkat-LTRGT 1 2500 -cellosaurus:CVCL_B7NZ Jurkat-Luc-RFP 1 2501 -cellosaurus:CVCL_KS47 Jurkat-Lucia NFAT 1 2502 -cellosaurus:CVCL_A7ZT Jurkat-Lucia NFAT-CD16 2 2503 -cellosaurus:CVCL_A7ZU Jurkat-Lucia NFAT-CD32 2 2504 -cellosaurus:CVCL_C831 Jurkat-TAg 1 2505 -cellosaurus:CVCL_X692 Jurkat-tat 1 2506 -cellosaurus:CVCL_AR84 Jurkat/A4 1 2507 -cellosaurus:CVCL_YJ84 LINTERNA Jurkat 1 2508 -cellosaurus:CVCL_L807 MDS 1 2509 -cellosaurus:CVCL_8894 MHH225 1 2510 -cellosaurus:CVCL_U621 Neo Jurkat 1 2511 -cellosaurus:CVCL_KZ68 PathHunter Jurkat IkappaB Degradation 1 2512 -cellosaurus:CVCL_1H23 PPIA-/- Jurkat 1 2513 -cellosaurus:CVCL_GY10 UCDK9B1 1 2514 -cellosaurus:CVCL_GY11 UCDK9B2 1 2515 -cellosaurus:CVCL_GY12 UCDK9B3 1 2516 -cellosaurus:CVCL_GY13 UCDK9B4 1 2517 -cellosaurus:CVCL_GY14 UCDK9B5 1 2518 -cellosaurus:CVCL_A633 KHM-11 0 2519 -cellosaurus:CVCL_A634 KHM-11ad 1 2520 -cellosaurus:CVCL_0029 EFO-21 0 2521 -cellosaurus:CVCL_RT14 EFO-21rCDDP2000 1 2522 -cellosaurus:CVCL_1135 COLO 800 0 2523 -cellosaurus:CVCL_1998 COLO 818 1 2524 -cellosaurus:CVCL_G364 KH88 0 2525 -cellosaurus:CVCL_V005 KH88 B4D6 1 2526 -cellosaurus:CVCL_W721 KH88 C2F8 1 2527 -cellosaurus:CVCL_8752 Rh28 0 2528 -cellosaurus:CVCL_Y584 Rh28/L-PAM 1 2529 -cellosaurus:CVCL_B6YP ZYXY-M1 0 2530 -cellosaurus:CVCL_B6YQ ZYXY-M1 luc 1 2531 -cellosaurus:CVCL_6949 SF763 0 2532 -cellosaurus:CVCL_V613 SF172 1 2533 -cellosaurus:CVCL_8567 SK-AO2 0 2534 -cellosaurus:CVCL_Z597 AO2V4 1 2535 -cellosaurus:CVCL_5423 SUM159PT 0 2536 -cellosaurus:CVCL_RA93 SUM159PT shPARG 1 2537 -cellosaurus:CVCL_C002 PC-6 0 2538 -cellosaurus:CVCL_ZZ74 PC-6/ADM2-1 1 2539 -cellosaurus:CVCL_ZZ79 PC-6/AMR-OH 1 2540 -cellosaurus:CVCL_ZZ75 PC-6/CDDP2-7 1 2541 -cellosaurus:CVCL_ZZ76 PC-6/CPT2-2 1 2542 -cellosaurus:CVCL_ZZ73 PC-6/FU23-26 1 2543 -cellosaurus:CVCL_S850 PC-6/SN2-5 1 2544 -cellosaurus:CVCL_S849 PC-6/TAX1-1 1 2545 -cellosaurus:CVCL_ZZ77 PC-6/VCR29-9 1 2546 -cellosaurus:CVCL_ZZ78 PC-6/VP1-1 1 2547 -cellosaurus:CVCL_D200 KT-1 [Human leukemia] 0 2548 -cellosaurus:CVCL_JH29 KT-1/A3 1 2549 -cellosaurus:CVCL_JH31 KT-1/A3R 2 2550 -cellosaurus:CVCL_JH30 KT-1/B7 1 2551 -cellosaurus:CVCL_0624 MOLT-3 0 2552 -cellosaurus:CVCL_S660 MOLT-3/MTX.P-9 1 2553 -cellosaurus:CVCL_S658 MOLT-3/MTX10000 1 2554 -cellosaurus:CVCL_S659 MOLT-3/MTX200 1 2555 -cellosaurus:CVCL_S652 MOLT-3/MTXt 1 2556 -cellosaurus:CVCL_S653 MOLT-3/TMQ200 1 2557 -cellosaurus:CVCL_S654 MOLT-3/TMQ200-CB371730 2 2558 -cellosaurus:CVCL_S657 MOLT-3/TMQ200-MTX500 2 2559 -cellosaurus:CVCL_S655 MOLT-3/TMQ2500 1 2560 -cellosaurus:CVCL_S656 MOLT-3/TMQ800 1 2561 -cellosaurus:CVCL_M774 MOLT-3/Z29 1 2562 -cellosaurus:CVCL_S661 MOLT-3/ZD1694.C 1 2563 -cellosaurus:CVCL_S662 MOLT-3/ZD1694.P9 1 2564 -cellosaurus:CVCL_N031 MOVP-3 1 2565 -cellosaurus:CVCL_8236 Hu1703He 0 2566 -cellosaurus:CVCL_C0RM Hu1703He/lacZ 1 2567 -cellosaurus:CVCL_8253 KK47 0 2568 -cellosaurus:CVCL_8254 KK47/ADM 1 2569 -cellosaurus:CVCL_8255 KK47/DDP10 1 2570 -cellosaurus:CVCL_8256 KK47/DDP20 1 2571 -cellosaurus:CVCL_X213 HC-7 0 2572 -cellosaurus:CVCL_X215 HC-7-5 1 2573 -cellosaurus:CVCL_X216 HC-7-5/VCR 2 2574 -cellosaurus:CVCL_2947 HLF 0 2575 -cellosaurus:CVCL_JG48 HLF-Luc 1 2576 -cellosaurus:CVCL_M180 HLF-R10 1 2577 -cellosaurus:CVCL_M181 HLF-R4 1 2578 -cellosaurus:CVCL_1724 SW48 0 2579 -cellosaurus:CVCL_LD77 SW48 BRAF (V600E/+/+/+) 1 2580 -cellosaurus:CVCL_LD11 SW48 EGFR (I491M/+/+) 1 2581 -cellosaurus:CVCL_LD12 SW48 EGFR (L65V/+/+) 1 2582 -cellosaurus:CVCL_LD13 SW48 EGFR (L858R/+/+) 1 2583 -cellosaurus:CVCL_LD14 SW48 EGFR (S492R/+/+) 1 2584 -cellosaurus:CVCL_LD78 SW48 GNAS (R201C/+) 1 2585 -cellosaurus:CVCL_LC87 SW48 HRAS (G12V/+) 1 2586 -cellosaurus:CVCL_LD79 SW48 JAK2 (V617F/+) 1 2587 -cellosaurus:CVCL_LC88 SW48 KRAS (A146T/+) 1 2588 -cellosaurus:CVCL_LC89 SW48 KRAS (A59T/+) 1 2589 -cellosaurus:CVCL_LC90 SW48 KRAS (G12A/+) 1 2590 -cellosaurus:CVCL_LC91 SW48 KRAS (G12C/+) 1 2591 -cellosaurus:CVCL_LC92 SW48 KRAS (G12D/+) 1 2592 -cellosaurus:CVCL_LC94 SW48 KRAS (G12R/+) 1 2593 -cellosaurus:CVCL_LC93 SW48 KRAS (G12S/+) 1 2594 -cellosaurus:CVCL_LC95 SW48 KRAS (G12V/+) 1 2595 -cellosaurus:CVCL_LC96 SW48 KRAS (G13D/+) 1 2596 -cellosaurus:CVCL_LC97 SW48 KRAS (Q61H/+) 1 2597 -cellosaurus:CVCL_LC98 SW48 NRAS (A59T/+) 1 2598 -cellosaurus:CVCL_LD00 SW48 NRAS (G12D/+) 1 2599 -cellosaurus:CVCL_A2PP SW48 NRAS (G12V/+) 1 2600 -cellosaurus:CVCL_LC99 SW48 NRAS (K117N/+) 1 2601 -cellosaurus:CVCL_LD01 SW48 NRAS (Q61H/+) 1 2602 -cellosaurus:CVCL_LD03 SW48 NRAS (Q61K/+) 1 2603 -cellosaurus:CVCL_LD02 SW48 NRAS (Q61L/+) 1 2604 -cellosaurus:CVCL_LD04 SW48 NRAS (Q61R/+) 1 2605 -cellosaurus:CVCL_LD80 SW48 PIK3CA (E542K/+) 1 2606 -cellosaurus:CVCL_LD81 SW48 PIK3CA (E545K/+) 1 2607 -cellosaurus:CVCL_LD56 SW48 PIK3CA (H1047R/+) 1 2608 -cellosaurus:CVCL_LD82 SW48 RAC1 (Q61L/+/+) 1 2609 -cellosaurus:CVCL_LD83 SW48 TP53 (R273H/+) 1 2610 -cellosaurus:CVCL_HE26 SW48 TP53(+/-) 1 2611 -cellosaurus:CVCL_HE27 SW48 TP53(-/-) 1 2612 -cellosaurus:CVCL_0289 HCA7 0 2613 -cellosaurus:CVCL_2469 HCA7 colony 1 1 2614 -cellosaurus:CVCL_C1KR HCA7 colony 1 C1Y1-15 2 2615 -cellosaurus:CVCL_C1KM HCA7 colony 1 C1Y1-6 2 2616 -cellosaurus:CVCL_C1KS HCA7 colony 1 C1Y1C-3 2 2617 -cellosaurus:CVCL_C1KT HCA7 colony 1 C1Y1C-5 2 2618 -cellosaurus:CVCL_2470 HCA7 colony 11 1 2619 -cellosaurus:CVCL_2471 HCA7 colony 24 1 2620 -cellosaurus:CVCL_2472 HCA7 colony 26 1 2621 -cellosaurus:CVCL_2473 HCA7 colony 27 1 2622 -cellosaurus:CVCL_2474 HCA7 colony 29 1 2623 -cellosaurus:CVCL_2475 HCA7 colony 3 1 2624 -cellosaurus:CVCL_2476 HCA7 colony 30 1 2625 -cellosaurus:CVCL_2477 HCA7 colony 6 1 2626 -cellosaurus:CVCL_5334 MGC-803 0 2627 -cellosaurus:CVCL_UI41 MGC-803/5FU 1 2628 -cellosaurus:CVCL_UI42 MGC-803/DDP 1 2629 -cellosaurus:CVCL_VG42 MGC-803/PTX 1 2630 -cellosaurus:CVCL_UI43 MGC-803/TA 1 2631 -cellosaurus:CVCL_6017 OCUT-1 0 2632 -cellosaurus:CVCL_B5GE OCUT-1C 1 2633 -cellosaurus:CVCL_B5GF OCUT-1F 1 2634 -cellosaurus:CVCL_C679 INT-MEL-52 0 2635 -cellosaurus:CVCL_V022 Me4024/1 1 2636 -cellosaurus:CVCL_V023 Me4024/2 1 2637 -cellosaurus:CVCL_D075 U-1906 0 2638 -cellosaurus:CVCL_LM75 U-1906E 1 2639 -cellosaurus:CVCL_LM76 U-1906L 1 2640 -cellosaurus:CVCL_2061 HCC78 0 2641 -cellosaurus:CVCL_UJ33 HCC78-TR 1 2642 -cellosaurus:CVCL_D630 M-07 0 2643 -cellosaurus:CVCL_2106 M-07e 1 2644 -cellosaurus:CVCL_RM07 M-07e/TPO 2 2645 -cellosaurus:CVCL_0218 COLO 205 0 2646 -cellosaurus:CVCL_A8GH CLC12N2 1 2647 -cellosaurus:CVCL_S023 COLO 205 SimpleCell O-GalNAc 1 2648 -cellosaurus:CVCL_A9DG COLO 205-EGFP 1 2649 -cellosaurus:CVCL_A9DH COLO 205-Luc2-tdT 1 2650 -cellosaurus:CVCL_A9DI COLO 205-mCherry 1 2651 -cellosaurus:CVCL_A9DJ COLO 205-tdT 1 2652 -cellosaurus:CVCL_J248 COLO 205/CMV-Luc 1 2653 -cellosaurus:CVCL_C3GG COLO 205_6244R 1 2654 -cellosaurus:CVCL_8290 CoLo-TC 1 2655 -cellosaurus:CVCL_5J18 Colo205-luc2 1 2656 -cellosaurus:CVCL_5I92 Colo205-Red-FLuc 1 2657 -cellosaurus:CVCL_2233 UT-7 0 2658 -cellosaurus:CVCL_5202 UT-7/Epo 1 2659 -cellosaurus:CVCL_5203 UT-7/GM 1 2660 -cellosaurus:CVCL_5204 UT-7/TPO 2 2661 -cellosaurus:CVCL_0397 LS180 0 2662 -cellosaurus:CVCL_KS51 CellSensor CYP1A1-bla LS-180 1 2663 -cellosaurus:CVCL_1384 LS174T 1 2664 -cellosaurus:CVCL_D240 LiM6 2 2665 -cellosaurus:CVCL_B6NT LIM6-TR 3 2666 -cellosaurus:CVCL_YJ85 LINTERNA LS 174 2 2667 -cellosaurus:CVCL_0306 LS174T-HM3 2 2668 -cellosaurus:CVCL_6670 LS174T-HM7 2 2669 -cellosaurus:CVCL_B6NS LS174T-LM12 2 2670 -cellosaurus:CVCL_J074 LS174T-W4 2 2671 -cellosaurus:CVCL_A5BI LS174T/R 2 2672 -cellosaurus:CVCL_2129 MT-3 [Human contaminated breast cancer] 2 2673 -cellosaurus:CVCL_0H88 S1 2 2674 -cellosaurus:CVCL_0H85 S1-B1-20 3 2675 -cellosaurus:CVCL_A9DE S1-IR20 3 2676 -cellosaurus:CVCL_0H86 S1-M1-3.2 3 2677 -cellosaurus:CVCL_0H87 S1-M1-80 4 2678 -cellosaurus:CVCL_5143 K029 0 2679 -cellosaurus:CVCL_8784 K029AX 1 2680 -cellosaurus:CVCL_GZ67 TAB1 0 2681 -cellosaurus:CVCL_JJ76 TAB1/C2-2 1 2682 -cellosaurus:CVCL_1084 BFTC-909 0 2683 -cellosaurus:CVCL_YB38 BFTC-909 pBabeAR1 1 2684 -cellosaurus:CVCL_YB39 BFTC-909 pBabeAR2 1 2685 -cellosaurus:CVCL_E115 EMTOKA 0 2686 -cellosaurus:CVCL_A1IL EMTOKA 107 1 2687 -cellosaurus:CVCL_A1IM EMTOKA 107-D1 2 2688 -cellosaurus:CVCL_A1IN EMTOKA 117 1 2689 -cellosaurus:CVCL_A1IP EMTOKA 124 1 2690 -cellosaurus:CVCL_A1IQ EMTOKA 2B10 1 2691 -cellosaurus:CVCL_A1IR EMTOKA 5D9 1 2692 -cellosaurus:CVCL_A1IS EMTOKA 5E4 1 2693 -cellosaurus:CVCL_4845 HuG-1 0 2694 -cellosaurus:CVCL_4846 HuG1-N 1 2695 -cellosaurus:CVCL_4847 HuG1-PI 1 2696 -cellosaurus:CVCL_9478 AR230 0 2697 -cellosaurus:CVCL_DP56 AR230-r 1 2698 -cellosaurus:CVCL_DP53 AR230-rn 1 2699 -cellosaurus:CVCL_UC13 AR230-s 1 2700 -cellosaurus:CVCL_B6L0 Mel 263 0 2701 -cellosaurus:CVCL_B6L1 Mel 26G 1 2702 -cellosaurus:CVCL_1644 PSN1 0 2703 -cellosaurus:CVCL_2451 GR-M 1 2704 -cellosaurus:CVCL_8337 M4Be 0 2705 -cellosaurus:CVCL_8331 7GP 1 2706 -cellosaurus:CVCL_8332 7GP122 2 2707 -cellosaurus:CVCL_8333 T1P26 1 2708 -cellosaurus:CVCL_8334 T1P26L 2 2709 -cellosaurus:CVCL_8335 T1P26R 2 2710 -cellosaurus:CVCL_1Y17 SUIT-58 0 2711 -cellosaurus:CVCL_1Y18 S58-SF 1 2712 -cellosaurus:CVCL_H589 SACC-83 0 2713 -cellosaurus:CVCL_H590 SACC-LM 1 2714 -cellosaurus:CVCL_A5UD SACC-LM-KRT19-KD 2 2715 -cellosaurus:CVCL_W471 H-1 [Human gingival squamous cell carcinoma] 0 2716 -cellosaurus:CVCL_GZ06 H-1R 1 2717 -cellosaurus:CVCL_1561 NCI-H441 0 2718 -cellosaurus:CVCL_M254 NCI-H441/CMV-Luc 1 2719 -cellosaurus:CVCL_3449 __Parent_cell_line_of_DLD-1/HCT 8/HCT 15/HRT-18 0 2720 -cellosaurus:CVCL_0248 DLD-1 1 2721 -cellosaurus:CVCL_KV91 cAMP Hunter DLD1 ADRB3 Gs 2 2722 -cellosaurus:CVCL_KV92 cAMP Hunter DLD1 HTR7D Gs 2 2723 -cellosaurus:CVCL_KV93 cAMP Hunter DLD1 PTGER2 Gs 2 2724 -cellosaurus:CVCL_9798 DKO-1 2 2725 -cellosaurus:CVCL_9799 DKO-3 2 2726 -cellosaurus:CVCL_9800 DKO-4 2 2727 -cellosaurus:CVCL_9801 DKs-5 2 2728 -cellosaurus:CVCL_9802 DKs-8 2 2729 -cellosaurus:CVCL_HD52 DLD-1 AKT1(-/-) 2 2730 -cellosaurus:CVCL_HD53 DLD-1 AKT2(-/-) 2 2731 -cellosaurus:CVCL_A2PQ DLD-1 AKT3(-/-) 2 2732 -cellosaurus:CVCL_HD54 DLD-1 ATG7(+/-) 2 2733 -cellosaurus:CVCL_HD55 DLD-1 BBC3(-/-) 2 2734 -cellosaurus:CVCL_HD56 DLD-1 BRCA2(+/-) 2 2735 -cellosaurus:CVCL_HD57 DLD-1 BRCA2(-/-) 2 2736 -cellosaurus:CVCL_HD58 DLD-1 CDKN1A(-/-) 2 2737 -cellosaurus:CVCL_V011 DLD-1 clone A 2 2738 -cellosaurus:CVCL_V012 DLD-1 clone D 2 2739 -cellosaurus:CVCL_J250 DLD-1 clone#1-Luc 2 2740 -cellosaurus:CVCL_HD59 DLD-1 DICER1(-/-) 2 2741 -cellosaurus:CVCL_HD60 DLD-1 FBXW7(+/-) 2 2742 -cellosaurus:CVCL_HD61 DLD-1 FBXW7(-/-) 2 2743 -cellosaurus:CVCL_XZ51 DLD-1 human PDL1 2 2744 -cellosaurus:CVCL_HD62 DLD-1 KRAS(+/-) 1 2 2745 -cellosaurus:CVCL_HE28 DLD-1 KRAS(+/-) 2 2 2746 -cellosaurus:CVCL_RQ05 DLD-1 PIK3CA E545K KO 2 2747 -cellosaurus:CVCL_ZC13 DLD-1 SIRT1 Het 2 2748 -cellosaurus:CVCL_ZC12 DLD-1 SIRT1 KO 2 2749 -cellosaurus:CVCL_HD63 DLD-1 SLC2A1(-/-) 2 2750 -cellosaurus:CVCL_HD64 DLD-1 USP7(-/-) 2 2751 -cellosaurus:CVCL_1Y04 DLD-1/delta-alpha 2 2752 -cellosaurus:CVCL_1Y05 DLD-1/alpha-cat cell 3 2753 -cellosaurus:CVCL_4V49 DLDSNR6 2 2754 -cellosaurus:CVCL_KZ27 PathHunter DLD1 FFAR1 beta-arrestin 2 2755 -cellosaurus:CVCL_KZ28 PathHunter DLD1 HTR6 beta-arrestin 2 2756 -cellosaurus:CVCL_KZ29 PathHunter DLD1 mPTGER4 beta-arrestin 2 2757 -cellosaurus:CVCL_KZ30 PathHunter DLD1 MTNR1A Total GPCR Internalization 2 2758 -cellosaurus:CVCL_QZ54 RDLD-1 2 2759 -cellosaurus:CVCL_0292 HCT 15 1 2760 -cellosaurus:CVCL_4Y02 HCT 15-Luc#1 2 2761 -cellosaurus:CVCL_A4BZ HCT-15-Luc2 2 2762 -cellosaurus:CVCL_1R50 OS 187 2 2763 -cellosaurus:CVCL_2478 HCT 8 1 2764 -cellosaurus:CVCL_5679 HCT-8/E11 2 2765 -cellosaurus:CVCL_5945 HCT-8/R1 2 2766 -cellosaurus:CVCL_5947 HCT-8/S10 2 2767 -cellosaurus:CVCL_5682 HCT-8/S11 2 2768 -cellosaurus:CVCL_A9CF HCT-8/VCR 2 2769 -cellosaurus:CVCL_A9CQ HCT-8-Luc2-tdT 2 2770 -cellosaurus:CVCL_A9CR HCT-8-mCherry 2 2771 -cellosaurus:CVCL_A9CS HCT-8-tdT 2 2772 -cellosaurus:CVCL_S851 HCT-8R 2 2773 -cellosaurus:CVCL_2514 HRT-18 1 2774 -cellosaurus:CVCL_2515 HRT-18G 2 2775 -cellosaurus:CVCL_M705 BEVA 0 2776 -cellosaurus:CVCL_6G76 BEVA-FBS 1 2777 -cellosaurus:CVCL_B326 TK-1 [Human myeloid leukemia] 0 2778 -cellosaurus:CVCL_B331 TK-1B 1 2779 -cellosaurus:CVCL_B327 TK-1D 1 2780 -cellosaurus:CVCL_4748 MDA-PCa-2b 0 2781 -cellosaurus:CVCL_4867 MDA-PCa-2b-hr 1 2782 -cellosaurus:CVCL_C047 UPCI-SCC-084 0 2783 -cellosaurus:CVCL_WH59 SCC084/R 1 2784 -cellosaurus:CVCL_4005 OV-MZ-6 0 2785 -cellosaurus:CVCL_X988 OV-MZ-6#8 1 2786 -cellosaurus:CVCL_2194 SK-GT-2 0 2787 -cellosaurus:CVCL_8114 SK-GT-5 1 2788 -cellosaurus:CVCL_1511 NCI-H1975 0 2789 -cellosaurus:CVCL_B0JT H1975/OR [China Dongguan] 1 2790 -cellosaurus:CVCL_B0JS H1975/OR [China Guangzhou] 1 2791 -cellosaurus:CVCL_DG25 H1975/WR 1 2792 -cellosaurus:CVCL_A7EX NCI-H1975 CS 1 2793 -cellosaurus:CVCL_UE30 NCI-H1975 EGFR T790M/C797S/L858R 1 2794 -cellosaurus:CVCL_LC85 NCI-H1975 KRAS (G12D/+) 1 2795 -cellosaurus:CVCL_XD02 NCI-H1975-Cas9-594 1 2796 -cellosaurus:CVCL_XD03 NCI-H1975-Cas9-595 1 2797 -cellosaurus:CVCL_XD04 NCI-H1975-Cas9-596 1 2798 -cellosaurus:CVCL_4W96 NCI-H1975-Luc 1 2799 -cellosaurus:CVCL_B0JK NCI-H1975/AR 1 2800 -cellosaurus:CVCL_HF59 NCI-H1975/GR 1 2801 -cellosaurus:CVCL_HF60 NCI-H1975/GR/XR 2 2802 -cellosaurus:CVCL_WV99 NCI-H1975/OSIR 1 2803 -cellosaurus:CVCL_0504 RKO 0 2804 -cellosaurus:CVCL_9807 EcR-RKO/KLF4 1 2805 -cellosaurus:CVCL_J916 p53R 1 2806 -cellosaurus:CVCL_HE15 RKO BRAF(+/-/-) 1 2807 -cellosaurus:CVCL_HE16 RKO BRAF(V600E/+/-) 1 2808 -cellosaurus:CVCL_HE17 RKO BRAF(V600E/-/-) 1 2809 -cellosaurus:CVCL_HE18 RKO DICER1(-/-) 1 2810 -cellosaurus:CVCL_LD06 RKO EGFR (C240Y/+) 1 2811 -cellosaurus:CVCL_LE01 RKO EGFR (delE746-A750/+) 1 2812 -cellosaurus:CVCL_LD07 RKO EGFR (L858R/+) 1 2813 -cellosaurus:CVCL_LD08 RKO EGFR (L861Q/+) 1 2814 -cellosaurus:CVCL_LD09 RKO EGFR (S768I/+) 1 2815 -cellosaurus:CVCL_LD10 RKO EGFR (T790M/+) 1 2816 -cellosaurus:CVCL_HE19 RKO FANCC(+/-/-) 1 2817 -cellosaurus:CVCL_HE20 RKO FANCC(-/-/-) 1 2818 -cellosaurus:CVCL_HE21 RKO FANCG(+/-) 1 2819 -cellosaurus:CVCL_HE22 RKO FANCG(-/-) 1 2820 -cellosaurus:CVCL_HE23 RKO MIR21(-/-) 1 2821 -cellosaurus:CVCL_ZC46 RKO SIRT1 KO 1 2822 -cellosaurus:CVCL_HE24 RKO SLC2A1(-/-) 1 2823 -cellosaurus:CVCL_HE25 RKO TP53(-/-) 1 2824 -cellosaurus:CVCL_3786 RKO-AS45-1 1 2825 -cellosaurus:CVCL_3787 RKO-E6 1 2826 -cellosaurus:CVCL_AU13 RKO/5FUR 1 2827 -cellosaurus:CVCL_AU14 RKO/BEVA 1 2828 -cellosaurus:CVCL_AU15 RKO/OXR 1 2829 -cellosaurus:CVCL_DD45 LB583-MEL 0 2830 -cellosaurus:CVCL_VV13 LB583-MEL.6 1 2831 -cellosaurus:CVCL_2602 MM138 0 2832 -cellosaurus:CVCL_UM64 MM138-2T 1 2833 -cellosaurus:CVCL_CZ92 MES-OV 0 2834 -cellosaurus:CVCL_CZ97 MES-OV/T40 1 2835 -cellosaurus:CVCL_CZ96 MES-OV/TxT50 1 2836 -cellosaurus:CVCL_5341 MyLa 2039 0 2837 -cellosaurus:CVCL_5342 MyLa 2059 1 2838 -cellosaurus:CVCL_A3BM SA146 I 0 2839 -cellosaurus:CVCL_A3BN SA146 II 1 2840 -cellosaurus:CVCL_K592 TCAF 0 2841 -cellosaurus:CVCL_K692 TCAF-DAX 1 2842 -cellosaurus:CVCL_0270 G-401 0 2843 -cellosaurus:CVCL_QW55 G-401 BAF47 1 2844 -cellosaurus:CVCL_J252 G-401-Luc 1 2845 -cellosaurus:CVCL_L269 G401.6 1 2846 -cellosaurus:CVCL_7133 SMS-KCN 0 2847 -cellosaurus:CVCL_RK69 SMS-KCN-69n 1 2848 -cellosaurus:CVCL_WM95 SMS-KCN-A 1 2849 -cellosaurus:CVCL_WZ30 SMS-KCN11s 1 2850 -cellosaurus:CVCL_WZ31 SMS-KCN5n 1 2851 -cellosaurus:CVCL_WJ31 CDS17 0 2852 -cellosaurus:CVCL_WJ32 T-CDS17 1 2853 -cellosaurus:CVCL_6845 LN-992 0 2854 -cellosaurus:CVCL_3958 LN-319 1 2855 -cellosaurus:CVCL_RN09 PDIS-6 2 2856 -cellosaurus:CVCL_L442 HX155c 0 2857 -cellosaurus:CVCL_M691 HX155cisR 1 2858 -cellosaurus:CVCL_2229 UPCI-SCC-131 0 2859 -cellosaurus:CVCL_WH60 SCC131/R 1 2860 -cellosaurus:CVCL_8691 HFWT 0 2861 -cellosaurus:CVCL_W390 GHINK-1 1 2862 -cellosaurus:CVCL_1298 HuO9 0 2863 -cellosaurus:CVCL_WL11 HuO9-H3 1 2864 -cellosaurus:CVCL_WL12 HuO9-L12 1 2865 -cellosaurus:CVCL_WL13 HuO9-L13 1 2866 -cellosaurus:CVCL_WL14 HuO9-L6 1 2867 -cellosaurus:CVCL_R725 HuO9-M112 1 2868 -cellosaurus:CVCL_R726 HuO9-M132 1 2869 -cellosaurus:CVCL_JG37 HuO9/CMV-Luc 1 2870 -cellosaurus:CVCL_8289 T3M-1 0 2871 -cellosaurus:CVCL_8761 T3M-1 Cl-10 1 2872 -cellosaurus:CVCL_8762 T3M-1 Cl-2 1 2873 -cellosaurus:CVCL_1232 GI-ME-N 0 2874 -cellosaurus:CVCL_RS22 GI-ME-NrCDDP500 1 2875 -cellosaurus:CVCL_RS07 GI-ME-NrDOX5 1 2876 -cellosaurus:CVCL_RR32 GI-ME-NrVCR14 1 2877 -cellosaurus:CVCL_6646 HMB-2 0 2878 -cellosaurus:CVCL_S514 HMB2-5 1 2879 -cellosaurus:CVCL_S515 HMB2-8 1 2880 -cellosaurus:CVCL_S516 HMB2-LacZ 1 2881 -cellosaurus:CVCL_WS83 MW [Human breast carcinoma] 0 2882 -cellosaurus:CVCL_A8VC MW1C 6.3 1 2883 -cellosaurus:CVCL_3629 YSCCC 0 2884 -cellosaurus:CVCL_QZ46 YSCCC-G10 1 2885 -cellosaurus:CVCL_QZ47 YSCCC-G100 1 2886 -cellosaurus:CVCL_1415 MKN1 0 2887 -cellosaurus:CVCL_J261 MKN1/CMV-Luc 1 2888 -cellosaurus:CVCL_L280 SuSa 0 2889 -cellosaurus:CVCL_B7BN SuSa-CP 1 2890 -cellosaurus:CVCL_D605 JJ012 0 2891 -cellosaurus:CVCL_D901 JJ012-TS4 1 2892 -cellosaurus:CVCL_T292 XH1 [Human cervical carcinoma] 0 2893 -cellosaurus:CVCL_JF77 XH1a 1 2894 -cellosaurus:CVCL_JF78 XH1b 1 2895 -cellosaurus:CVCL_U144 FU-MMT-2 0 2896 -cellosaurus:CVCL_U145 FU-MMT-2-C1 1 2897 -cellosaurus:CVCL_U146 FU-MMT-2-S1 1 2898 -cellosaurus:CVCL_1102 Ca9-22 0 2899 -cellosaurus:CVCL_HM42 Ca9-22PF 1 2900 -cellosaurus:CVCL_HM41 Ca9-22SF 1 2901 -cellosaurus:CVCL_2789 KOSC-3 1 2902 -cellosaurus:CVCL_3171 STC 1 0 2903 -cellosaurus:CVCL_1F88 STC1/CDDP 1 2904 -cellosaurus:CVCL_1401 ME-180 0 2905 -cellosaurus:CVCL_KS60 CellSensor AP1-bla ME-180 1 2906 -cellosaurus:CVCL_KS68 CellSensor c-fos-bla ME-180 1 2907 -cellosaurus:CVCL_KS52 CellSensor GAS-bla ME-180 1 2908 -cellosaurus:CVCL_KS07 CellSensor HRE-bla ME-180 1 2909 -cellosaurus:CVCL_KB44 CellSensor NFkB-bla ME-180 1 2910 -cellosaurus:CVCL_KS28 CellSensor SIE-bla ME-180 1 2911 -cellosaurus:CVCL_0473 OV-2008 1 2912 -cellosaurus:CVCL_0114 2008/C13*5.25 2 2913 -cellosaurus:CVCL_W373 PX2 2 2914 -cellosaurus:CVCL_W374 PX24 2 2915 -cellosaurus:CVCL_6950 SF767 1 2916 -cellosaurus:CVCL_A342 TSGH-8301 1 2917 -cellosaurus:CVCL_C867 ASTC-a-1 0 2918 -cellosaurus:CVCL_A8JW ASTC-a-1 SCAT3 1 2919 -cellosaurus:CVCL_8380 OCUM-12 0 2920 -cellosaurus:CVCL_8381 OCUM-12/Hypo 1 2921 -cellosaurus:CVCL_C843 MM418 0 2922 -cellosaurus:CVCL_UM71 MM418-1 1 2923 -cellosaurus:CVCL_UM72 MM418-5 1 2924 -cellosaurus:CVCL_0628 SK-LMS-1 0 2925 -cellosaurus:CVCL_8591 SK-Ala-1 1 2926 -cellosaurus:CVCL_8592 SK-Ala-10 1 2927 -cellosaurus:CVCL_8593 SK-Ala-14 1 2928 -cellosaurus:CVCL_8594 SK-Ala-2 1 2929 -cellosaurus:CVCL_8595 SK-Ala-21 1 2930 -cellosaurus:CVCL_8596 SK-Ala-3 1 2931 -cellosaurus:CVCL_8597 SK-Neo 1 2932 -cellosaurus:CVCL_8598 SK-p53-1 1 2933 -cellosaurus:CVCL_8599 SK-p53-2 1 2934 -cellosaurus:CVCL_8600 SK-p53-3 1 2935 -cellosaurus:CVCL_0475 OVCA433 0 2936 -cellosaurus:CVCL_DA01 OVCA433/T40 1 2937 -cellosaurus:CVCL_DA00 OVCA433/TxT50 1 2938 -cellosaurus:CVCL_C122 SP-53 0 2939 -cellosaurus:CVCL_UW48 SP-53 EBV-infected 1 2940 -cellosaurus:CVCL_1682 SCC-25 0 2941 -cellosaurus:CVCL_EI28 ER-SCC-25 1 2942 -cellosaurus:CVCL_A5BQ SCC-25/CP 1 2943 -cellosaurus:CVCL_2220 U-HO1 0 2944 -cellosaurus:CVCL_UI40 U-HO1-PTPN1 1 2945 -cellosaurus:CVCL_5226 OCI-AML-6 0 2946 -cellosaurus:CVCL_5227 OCI-AML-6.2 1 2947 -cellosaurus:CVCL_1150 CTV-1 0 2948 -cellosaurus:CVCL_8150 MOLT-15 1 2949 -cellosaurus:CVCL_4W69 Onda 9R 0 2950 -cellosaurus:CVCL_4W70 Onda 9R-B12 1 2951 -cellosaurus:CVCL_3603 SW579 0 2952 -cellosaurus:CVCL_1120 CGTH-W-1 1 2953 -cellosaurus:CVCL_0597 Ramos 0 2954 -cellosaurus:CVCL_KS64 CellSensor ISRE-bla RA-1 1 2955 -cellosaurus:CVCL_KS46 CellSensor NFAT-bla RA-1 1 2956 -cellosaurus:CVCL_KB47 CellSensor NFkB-bla RA-1 1 2957 -cellosaurus:CVCL_KS55 CellSensor STAT6-bla RA-1 1 2958 -cellosaurus:CVCL_B6UL II-WA-Ramos 1 2959 -cellosaurus:CVCL_JL65 Ramos B7 1 2960 -cellosaurus:CVCL_2702 Ramos-AW 1 2961 -cellosaurus:CVCL_X591 Ramos-Blue 1 2962 -cellosaurus:CVCL_X592 Ramos-Blue KD-Myd 1 2963 -cellosaurus:CVCL_C003 Ramos-EHRA 1 2964 -cellosaurus:CVCL_2703 Ramos-EHRB 1 2965 -cellosaurus:CVCL_1646 Ramos.2G6.4C10 1 2966 -cellosaurus:CVCL_ZU79 Ramos/B95-8 1 2967 -cellosaurus:CVCL_S546 Ramos/DC-SIGN 1 2968 -cellosaurus:CVCL_ZU80 Ramos/NPC 1 2969 -cellosaurus:CVCL_WS53 sfRamos 1 2970 -cellosaurus:CVCL_Y429 DF15 0 2971 -cellosaurus:CVCL_Y430 DF15R 1 2972 -cellosaurus:CVCL_7114 RH-SLC-L11 0 2973 -cellosaurus:CVCL_7083 NE-18 1 2974 -cellosaurus:CVCL_7085 Nu6-1 1 2975 -cellosaurus:CVCL_D031 M21 0 2976 -cellosaurus:CVCL_JZ12 M21L 1 2977 -cellosaurus:CVCL_JZ14 M21L22 2 2978 -cellosaurus:CVCL_JZ13 M21L4 2 2979 -cellosaurus:CVCL_A1FB M21R 1 2980 -cellosaurus:CVCL_0316 HSC-42 0 2981 -cellosaurus:CVCL_8355 HSC-41 1 2982 -cellosaurus:CVCL_8160 TCS 0 2983 -cellosaurus:CVCL_3179 TCO-1 [Human cervical carcinoma] 1 2984 -cellosaurus:CVCL_1547 NCI-H23 0 2985 -cellosaurus:CVCL_G002 HCC60 1 2986 -cellosaurus:CVCL_4W97 NCI-H23-Luc 1 2987 -cellosaurus:CVCL_ZZ80 NCI-H23/GEM-R 1 2988 -cellosaurus:CVCL_2H40 KCI-MENG1-LP 0 2989 -cellosaurus:CVCL_2H42 KCI-MENG1-HP 1 2990 -cellosaurus:CVCL_2H43 KCI-MENG1-HPSX-CL 2 2991 -cellosaurus:CVCL_2H41 KCI-MENG1-LPSX-CL 1 2992 -cellosaurus:CVCL_D843 NZM007 0 2993 -cellosaurus:CVCL_D844 NZM007.2 1 2994 -cellosaurus:CVCL_D845 NZM007.4 1 2995 -cellosaurus:CVCL_E298 Panc 3.014 0 2996 -cellosaurus:CVCL_C3HK Panc 3.014-EYA2 1 2997 -cellosaurus:CVCL_0832 Hs 633.T 0 2998 -cellosaurus:CVCL_G137 HuT-11 1 2999 -cellosaurus:CVCL_G138 HuT-12 1 3000 -cellosaurus:CVCL_G139 HuT-13 1 3001 -cellosaurus:CVCL_G140 HuT-14 1 3002 -cellosaurus:CVCL_L787 CPA-Yang3 0 3003 -cellosaurus:CVCL_L788 CPA-Yang3BM 1 3004 -cellosaurus:CVCL_1063 A-388 0 3005 -cellosaurus:CVCL_ZF53 A388.6TG.c2 1 3006 -cellosaurus:CVCL_ZF54 A388.6TG.c2.neoc1 2 3007 -cellosaurus:CVCL_H760 HX138 0 3008 -cellosaurus:CVCL_Y052 Hx138A 1 3009 -cellosaurus:CVCL_W126 MN-1 0 3010 -cellosaurus:CVCL_A1GU MN-1A 1 3011 -cellosaurus:CVCL_A1GV MN-1B 1 3012 -cellosaurus:CVCL_H724 IOR/BRZ 0 3013 -cellosaurus:CVCL_QW75 BRZ-CD99-shRNA#1 1 3014 -cellosaurus:CVCL_QW76 BRZ-CD99-shRNA#2 1 3015 -cellosaurus:CVCL_QW74 BRZ-CTR-shRNA 1 3016 -cellosaurus:CVCL_0463 NCI-H157 0 3017 -cellosaurus:CVCL_VD88 H157R 1 3018 -cellosaurus:CVCL_1317 Jiyoye 0 3019 -cellosaurus:CVCL_1Q45 F-137 1 3020 -cellosaurus:CVCL_1Q46 G3.32.2 2 3021 -cellosaurus:CVCL_2516 HS-Sultan 1 3022 -cellosaurus:CVCL_2676 P3HR-1 1 3023 -cellosaurus:CVCL_IU56 FF452-3 2 3024 -cellosaurus:CVCL_IU57 GG618-13 2 3025 -cellosaurus:CVCL_W740 HH514-16 2 3026 -cellosaurus:CVCL_6354 2B8 [Human Burkitt lymphoma] 3 3027 -cellosaurus:CVCL_W741 HH543-5 2 3028 -cellosaurus:CVCL_B066 P3H3 2 3029 -cellosaurus:CVCL_ZI14 PICAT 2 3030 -cellosaurus:CVCL_ZI12 PUT 2 3031 -cellosaurus:CVCL_8428 TDL-1 2 3032 -cellosaurus:CVCL_8429 TDL-2 2 3033 -cellosaurus:CVCL_Z606 OS3-R5 0 3034 -cellosaurus:CVCL_A1JA OS3-R5-GFP 1 3035 -cellosaurus:CVCL_A1JB OS3-R5-GFP-CD9 1 3036 -cellosaurus:CVCL_1675 SAS 0 3037 -cellosaurus:CVCL_R859 SAS-H1 1 3038 -cellosaurus:CVCL_R860 SAS-L1 1 3039 -cellosaurus:CVCL_A8GP SAS-R 1 3040 -cellosaurus:CVCL_VU70 HSJD-DIPG-007 0 3041 -cellosaurus:CVCL_C1MT HSJD-DIPG-007-NTC 1 3042 -cellosaurus:CVCL_C1MU HSJD-DIPG-007-TP53 KO 1 3043 -cellosaurus:CVCL_8379 OCUM-11 0 3044 -cellosaurus:CVCL_8387 OCUM-6 1 3045 -cellosaurus:CVCL_0152 AsPC-1 0 3046 -cellosaurus:CVCL_J243 AsPC-1/CMV-Luc 1 3047 -cellosaurus:CVCL_XX79 AsPC1-R 1 3048 -cellosaurus:CVCL_7165 MPanc-96 1 3049 -cellosaurus:CVCL_0207 CCRF-CEM 0 3050 -cellosaurus:CVCL_2265 1301 1 3051 -cellosaurus:CVCL_IS05 1301-U1 2 3052 -cellosaurus:CVCL_IS06 1301-U2 2 3053 -cellosaurus:CVCL_6869 6T-CEM 1 3054 -cellosaurus:CVCL_U293 6T-CEM20 2 3055 -cellosaurus:CVCL_D101 AG-F 1 3056 -cellosaurus:CVCL_GZ09 ARAC-8C 1 3057 -cellosaurus:CVCL_GZ10 ARAC-8D 1 3058 -cellosaurus:CVCL_G691 BUC 1 3059 -cellosaurus:CVCL_B7A8 CCRF-CEM C1 1 3060 -cellosaurus:CVCL_B7A9 CCRF-CEM C1-15 2 3061 -cellosaurus:CVCL_6825 CCRF-CEM C7 1 3062 -cellosaurus:CVCL_B7AA CCRF-CEM C7-14 2 3063 -cellosaurus:CVCL_B7AG CCRF-CEM C7-SC14 3 3064 -cellosaurus:CVCL_B7AH CCRF-CEM C7-SC14/H 4 3065 -cellosaurus:CVCL_B7AI CCRF-CEM C7-SC14/HDR 4 3066 -cellosaurus:CVCL_B7AJ CCRF-CEM-C7-SC2 3 3067 -cellosaurus:CVCL_B7AK CCRF-CEM-C7-SC2/H 4 3068 -cellosaurus:CVCL_B7AL CCRF-CEM-C7-SC2/HDR 4 3069 -cellosaurus:CVCL_B7AB CCRF-CEM C7/H 3 3070 -cellosaurus:CVCL_B7AC CCRF-CEM C7/HDR 3 3071 -cellosaurus:CVCL_B7AD CCRF-CEM C7/HDR-C2 4 3072 -cellosaurus:CVCL_6826 CCRF-CEM C7A 2 3073 -cellosaurus:CVCL_EP75 CCRF-CEM C7H2 2 3074 -cellosaurus:CVCL_EP76 CCRF-CEM C7H2-2C8 3 3075 -cellosaurus:CVCL_V324 CCRF-CEM R3/7 1 3076 -cellosaurus:CVCL_V323 CCRF-CEM R30/6 1 3077 -cellosaurus:CVCL_V325 CCRF-CEM R30dm 2 3078 -cellosaurus:CVCL_5H79 CCRF-CEM/HU-R 1 3079 -cellosaurus:CVCL_5H80 CCRF-CEM/MTX R1 1 3080 -cellosaurus:CVCL_5H81 CCRF-CEM/MTX R2 1 3081 -cellosaurus:CVCL_5H82 CCRF-CEM/MTX R3 1 3082 -cellosaurus:CVCL_5H83 CCRF-CEM/MTX140-LV 1 3083 -cellosaurus:CVCL_5H84 CCRF-CEM/MTX1500-LV 1 3084 -cellosaurus:CVCL_5H85 CCRF-CEM/MTX5000-PGA 1 3085 -cellosaurus:CVCL_5H86 CCRF-CEM/MTX60-PGA 1 3086 -cellosaurus:CVCL_S649 CCRF-CEM/R1 1 3087 -cellosaurus:CVCL_S650 CCRF-CEM/R2 2 3088 -cellosaurus:CVCL_S651 CCRF-CEM/R3 1 3089 -cellosaurus:CVCL_D545 CCRF/ACTD400 1 3090 -cellosaurus:CVCL_D544 CCRF/ADR5000 1 3091 -cellosaurus:CVCL_4V17 CCRF/CEM/ara-C/3A 1 3092 -cellosaurus:CVCL_4V18 CCRF/CEM/ara-C/7A 1 3093 -cellosaurus:CVCL_A5TY CCRF/CEM/ara-C/B 1 3094 -cellosaurus:CVCL_A5UY CCRF/CEM/ara-C/C 1 3095 -cellosaurus:CVCL_A5TZ CCRF/CEM/ara-C/D 1 3096 -cellosaurus:CVCL_A5UA CCRF/CEM/ara-C/G 1 3097 -cellosaurus:CVCL_A5UB CCRF/CEM/ara-C/I 1 3098 -cellosaurus:CVCL_A5UC CCRF/CEM/ara-C/J 1 3099 -cellosaurus:CVCL_D546 CCRF/VCR1000 1 3100 -cellosaurus:CVCL_6244 CEM A3.01 1 3101 -cellosaurus:CVCL_W647 12D7 2 3102 -cellosaurus:CVCL_A9MA 12D7-MDR1 3 3103 -cellosaurus:CVCL_3484 8E5 2 3104 -cellosaurus:CVCL_S540 A3R5.7 2 3105 -cellosaurus:CVCL_0138 ACH-2 2 3106 -cellosaurus:CVCL_X698 CEM A2.01 2 3107 -cellosaurus:CVCL_V186 CEM cl13 1 3108 -cellosaurus:CVCL_J396 CEM-AGR 1 3109 -cellosaurus:CVCL_J395 CEM-ON 2 3110 -cellosaurus:CVCL_X635 CEM-CL10 1 3111 -cellosaurus:CVCL_3930 CEM-CM3 1 3112 -cellosaurus:CVCL_1G53 CEM-GFP 1 3113 -cellosaurus:CVCL_3931 CEM-LAV-2 1 3114 -cellosaurus:CVCL_HF38 CEM-R6 1 3115 -cellosaurus:CVCL_J318 CEM-SS 1 3116 -cellosaurus:CVCL_WU90 CEMss/CCR5 2 3117 -cellosaurus:CVCL_1E04 Rev-CEM 2 3118 -cellosaurus:CVCL_A9NQ Rev-CEM-D4 3 3119 -cellosaurus:CVCL_A9NR Rev-CEM-E7 3 3120 -cellosaurus:CVCL_A9NS Rev-CEM-G2 4 3121 -cellosaurus:CVCL_8178 CEM-T4 1 3122 -cellosaurus:CVCL_X697 CEM-TART 1 3123 -cellosaurus:CVCL_0R18 CEM-TART clone 1A2 2 3124 -cellosaurus:CVCL_D598 CEM-VBL16 1 3125 -cellosaurus:CVCL_3933 CEM-VCR R 1 3126 -cellosaurus:CVCL_4V08 CEM-VLB 1 3127 -cellosaurus:CVCL_X622 CEM.NKR 1 3128 -cellosaurus:CVCL_X623 CEM.NKR-CCR5 2 3129 -cellosaurus:CVCL_X624 CEM.NKR-CCR5-Luc 3 3130 -cellosaurus:CVCL_1G54 EGFP-CEM-NKr 2 3131 -cellosaurus:CVCL_U260 CEM/A5 1 3132 -cellosaurus:CVCL_U261 CEM/A7 1 3133 -cellosaurus:CVCL_4V21 CEM/ara-C 1 3134 -cellosaurus:CVCL_A5TX CEM/ara-G 1 3135 -cellosaurus:CVCL_3496 CEM/C1 1 3136 -cellosaurus:CVCL_3497 CEM/C2 1 3137 -cellosaurus:CVCL_S256 CEM/DNR 1 3138 -cellosaurus:CVCL_0U11 CEM/MX1 1 3139 -cellosaurus:CVCL_A1BA CEM/P 1 3140 -cellosaurus:CVCL_D597 CEM/VLB10 1 3141 -cellosaurus:CVCL_4V10 CEM/VLB10-2 2 3142 -cellosaurus:CVCL_3932 CEM/VLB100 1 3143 -cellosaurus:CVCL_4V12 CEM/VLB500 1 3144 -cellosaurus:CVCL_4V09 CEM/VLB55 1 3145 -cellosaurus:CVCL_4V11 CEM/VLB55-8 2 3146 -cellosaurus:CVCL_1B35 CEM/VM-1 1 3147 -cellosaurus:CVCL_7905 CEMR.3 1 3148 -cellosaurus:CVCL_J653 CO 1 3149 -cellosaurus:CVCL_8865 EU-7 1 3150 -cellosaurus:CVCL_8265 MKB-1 1 3151 -cellosaurus:CVCL_L808 RC-2A 1 3152 -cellosaurus:CVCL_GZ11 TUB-4D 1 3153 -cellosaurus:CVCL_8276 UTMB-460 1 3154 -cellosaurus:CVCL_A036 WSU-ALCL 1 3155 -cellosaurus:CVCL_JF68 ED-40515 0 3156 -cellosaurus:CVCL_JF70 ED-40515(-) 1 3157 -cellosaurus:CVCL_2142 NK-92 0 3158 -cellosaurus:CVCL_W733 GFP-CD16-F/F.NK-92 1 3159 -cellosaurus:CVCL_W734 GFP-CD16-V/V.NK-92 1 3160 -cellosaurus:CVCL_IM23 haNK 1 3161 -cellosaurus:CVCL_VN53 haNK GFP 2 3162 -cellosaurus:CVCL_VN54 laNK 1 3163 -cellosaurus:CVCL_VN55 laNK GFP 2 3164 -cellosaurus:CVCL_VN56 NK-92 GFP 1 3165 -cellosaurus:CVCL_VN57 NK-92.26.5 1 3166 -cellosaurus:CVCL_U271 NK-92CI 1 3167 -cellosaurus:CVCL_3755 NK-92MI 1 3168 -cellosaurus:CVCL_XZ60 NK-92MI human CD16a-V158 2 3169 -cellosaurus:CVCL_JX95 NK-92MIhCD16 2 3170 -cellosaurus:CVCL_JX96 NK-92MIhCD64 2 3171 -cellosaurus:CVCL_B5ZF NK92-41BB 1 3172 -cellosaurus:CVCL_B5ZE NK92-CD16 1 3173 -cellosaurus:CVCL_V429 NoGFP-CD16.NK92 1 3174 -cellosaurus:CVCL_B3PC TR-IL2-NK-92 1 3175 -cellosaurus:CVCL_0542 SW13 0 3176 -cellosaurus:CVCL_WY51 SW13/cl.1 vim+ 1 3177 -cellosaurus:CVCL_WY52 SW13/cl.2 vim- 1 3178 -cellosaurus:CVCL_RT29 SH101 0 3179 -cellosaurus:CVCL_A669 SH101-P4 1 3180 -cellosaurus:CVCL_0554 T24 0 3181 -cellosaurus:CVCL_6876 ACCS 1 3182 -cellosaurus:CVCL_2029 ECV-304 1 3183 -cellosaurus:CVCL_KS70 CellSensor IL-1-bla ECV304 2 3184 -cellosaurus:CVCL_UY91 t-HUE1 2 3185 -cellosaurus:CVCL_J427 t-HUE2 2 3186 -cellosaurus:CVCL_J428 t-HUE4 3 3187 -cellosaurus:CVCL_2893 EJ-1 1 3188 -cellosaurus:CVCL_2443 Ej138 1 3189 -cellosaurus:CVCL_LN34 EJ-30 2 3190 -cellosaurus:CVCL_LN35 EJ-30 clone A3 3 3191 -cellosaurus:CVCL_LN36 EJ-30 clone B3 3 3192 -cellosaurus:CVCL_LN37 EJ-30 clone B3-WrnDN1 4 3193 -cellosaurus:CVCL_F666 EJ-30tgr 3 3194 -cellosaurus:CVCL_H544 GHR3 4 3195 -cellosaurus:CVCL_LN38 MGH-U1/OCI 2 3196 -cellosaurus:CVCL_LN39 OCI-m/F1 3 3197 -cellosaurus:CVCL_8199 GHE 1 3198 -cellosaurus:CVCL_8223 hAG 1 3199 -cellosaurus:CVCL_AT91 HBMEC-2 1 3200 -cellosaurus:CVCL_8229 HCV-29TMV 1 3201 -cellosaurus:CVCL_8238 Hu456 1 3202 -cellosaurus:CVCL_8239 Hu549 1 3203 -cellosaurus:CVCL_8242 Hu609Tmv 1 3204 -cellosaurus:CVCL_8243 Hu961a 1 3205 -cellosaurus:CVCL_4015 JCA-1 1 3206 -cellosaurus:CVCL_F660 KS Y-1 1 3207 -cellosaurus:CVCL_9826 MGH-U2 1 3208 -cellosaurus:CVCL_8271 RAMAK-1 1 3209 -cellosaurus:CVCL_V606 SLR20 1 3210 -cellosaurus:CVCL_UY80 SLR20.A2 2 3211 -cellosaurus:CVCL_C3GX T24 FOXP3 1 3212 -cellosaurus:CVCL_C3GY T24 FOXP3Delta3 1 3213 -cellosaurus:CVCL_2728 T24/83 1 3214 -cellosaurus:CVCL_Y181 T24/DDP10 1 3215 -cellosaurus:CVCL_Y182 T24/DDP5 1 3216 -cellosaurus:CVCL_Y183 T24/DDP7 1 3217 -cellosaurus:CVCL_XX49 T24/MMC 1 3218 -cellosaurus:CVCL_VL60 T24M [Human bladder carcinoma] 1 3219 -cellosaurus:CVCL_RR21 T24rCDDP1000 1 3220 -cellosaurus:CVCL_RR22 T24rGEMCI20 1 3221 -cellosaurus:CVCL_RR23 T24rVINB20 1 3222 -cellosaurus:CVCL_RS42 T24rYM155_20nM 1 3223 -cellosaurus:CVCL_M892 T24T 1 3224 -cellosaurus:CVCL_M895 T24T FL1 2 3225 -cellosaurus:CVCL_M896 T24T FL2 3 3226 -cellosaurus:CVCL_M897 T24T FL3 4 3227 -cellosaurus:CVCL_RN62 T24T FL4 5 3228 -cellosaurus:CVCL_RN63 T24T SL1 2 3229 -cellosaurus:CVCL_RN64 T24T SL2 3 3230 -cellosaurus:CVCL_RN65 T24T SL3 4 3231 -cellosaurus:CVCL_3922 T24T SLT4 5 3232 -cellosaurus:CVCL_4014 TSU-Pr1 1 3233 -cellosaurus:CVCL_M904 TSU-Pr1-B1 2 3234 -cellosaurus:CVCL_M905 TSU-Pr1-B2 3 3235 -cellosaurus:CVCL_M134 TsuGK27 2 3236 -cellosaurus:CVCL_8155 UM-UC-2 1 3237 -cellosaurus:CVCL_M721 UROtsa/F35 1 3238 -cellosaurus:CVCL_3770 OVK18 0 3239 -cellosaurus:CVCL_7171 OVK18#102 1 3240 -cellosaurus:CVCL_M261 KKU-213A 0 3241 -cellosaurus:CVCL_M264 KKU-213B 1 3242 -cellosaurus:CVCL_C1L6 KKU-M214/246 2 3243 -cellosaurus:CVCL_C1L7 KKU-M214/9 2 3244 -cellosaurus:CVCL_HF58 KKU-M214/GEM 2 3245 -cellosaurus:CVCL_M260 KKU-213C 1 3246 -cellosaurus:CVCL_M262 KKU-M213L0H 1 3247 -cellosaurus:CVCL_M263 KKU-M213L5H 1 3248 -cellosaurus:CVCL_WU93 US8-93 0 3249 -cellosaurus:CVCL_WV03 US8-93A 1 3250 -cellosaurus:CVCL_WU95 US8-93B 1 3251 -cellosaurus:CVCL_WU96 US8-93C 1 3252 -cellosaurus:CVCL_8161 HKBML 0 3253 -cellosaurus:CVCL_B3QK MTX-HKBML 1 3254 -cellosaurus:CVCL_0095 SEM 0 3255 -cellosaurus:CVCL_S906 SEMK2 1 3256 -cellosaurus:CVCL_S907 SEMK2-M1 2 3257 -cellosaurus:CVCL_3172 SUIT-2 0 3258 -cellosaurus:CVCL_B279 S2-007 1 3259 -cellosaurus:CVCL_B280 S2-013 1 3260 -cellosaurus:CVCL_B281 S2-020 1 3261 -cellosaurus:CVCL_B282 S2-028 1 3262 -cellosaurus:CVCL_F971 S2-CP8 1 3263 -cellosaurus:CVCL_F972 S2-VP10 1 3264 -cellosaurus:CVCL_B283 S2/TXT 1 3265 -cellosaurus:CVCL_2961 IM95 0 3266 -cellosaurus:CVCL_4Y04 IM95/CMV-Luc 1 3267 -cellosaurus:CVCL_2962 IM95m 1 3268 -cellosaurus:CVCL_7928 WM164 0 3269 -cellosaurus:CVCL_6357 451Lu 1 3270 -cellosaurus:CVCL_AP83 451Lu-BR 2 3271 -cellosaurus:CVCL_DG54 451Lu-MR 2 3272 -cellosaurus:CVCL_B6Q1 WM164 VDR KO 1 3273 -cellosaurus:CVCL_B6Q0 WM164-Bch4 1 3274 -cellosaurus:CVCL_1087 BL-41 0 3275 -cellosaurus:CVCL_9667 BL41-K3 1 3276 -cellosaurus:CVCL_M258 KKU-M055 0 3277 -cellosaurus:CVCL_C1L4 KKU-M055/46 1 3278 -cellosaurus:CVCL_C1L5 KKU-M055/8 1 3279 -cellosaurus:CVCL_7019 ACC-LC-49 0 3280 -cellosaurus:CVCL_Y204 MOA1 1 3281 -cellosaurus:CVCL_Y205 MOA2 1 3282 -cellosaurus:CVCL_Y206 MOA2/CDDP 2 3283 -cellosaurus:CVCL_2095 KYO-1 0 3284 -cellosaurus:CVCL_5308 KPB-M15 1 3285 -cellosaurus:CVCL_IW16 SaTM-1 0 3286 -cellosaurus:CVCL_IW17 SaTM-1A 1 3287 -cellosaurus:CVCL_IW18 SaTM-1B 1 3288 -cellosaurus:CVCL_IW19 SaTM-1C 1 3289 -cellosaurus:CVCL_IW20 SaTM-1D 1 3290 -cellosaurus:CVCL_IW21 SaTM-1E 1 3291 -cellosaurus:CVCL_IW22 SaTM-1F 1 3292 -cellosaurus:CVCL_1827 LA-N-1 0 3293 -cellosaurus:CVCL_2549 LA1-5s 1 3294 -cellosaurus:CVCL_2548 LA1-55n 2 3295 -cellosaurus:CVCL_5723 CH-157MN 0 3296 -cellosaurus:CVCL_HA68 CH-157MN-LucNeo 1 3297 -cellosaurus:CVCL_1342 KP-N-YS 0 3298 -cellosaurus:CVCL_Y132 KP-N-YS1n 1 3299 -cellosaurus:CVCL_Y133 KP-N-YS2s 1 3300 -cellosaurus:CVCL_JH11 HSA/c 0 3301 -cellosaurus:CVCL_A9A6 Hsa/TR/mock 1 3302 -cellosaurus:CVCL_A9A7 Hsa/TR/OPN1 1 3303 -cellosaurus:CVCL_A9A8 Hsa/TR/OPN2 1 3304 -cellosaurus:CVCL_1851 RCH-ACV 0 3305 -cellosaurus:CVCL_VQ57 BLaER1 1 3306 -cellosaurus:CVCL_1579 NCI-H69 0 3307 -cellosaurus:CVCL_0B21 H69/BCNU 1 3308 -cellosaurus:CVCL_0B22 H69/DAU 1 3309 -cellosaurus:CVCL_X029 H69/Txl 1 3310 -cellosaurus:CVCL_AZ78 H69/VDS 1 3311 -cellosaurus:CVCL_0B23 H69/VP 1 3312 -cellosaurus:CVCL_3513 H69AR 1 3313 -cellosaurus:CVCL_4T78 H69PR 2 3314 -cellosaurus:CVCL_RS65 H69R 1 3315 -cellosaurus:CVCL_2466 H69V 1 3316 -cellosaurus:CVCL_S830 H69VZ 1 3317 -cellosaurus:CVCL_A537 NCI-H249 1 3318 -cellosaurus:CVCL_2137 NCI-H69/CPR 1 3319 -cellosaurus:CVCL_2138 NCI-H69/LX10 1 3320 -cellosaurus:CVCL_2139 NCI-H69/LX20 1 3321 -cellosaurus:CVCL_2140 NCI-H69/LX4 1 3322 -cellosaurus:CVCL_3058 NCI-H69VCR/R 1 3323 -cellosaurus:CVCL_A590 NCI-N592 1 3324 -cellosaurus:CVCL_0237 Capan-1 0 3325 -cellosaurus:CVCL_S022 Capan-1 SimpleCell O-GalNAc 1 3326 -cellosaurus:CVCL_0A59 Capan1M9 1 3327 -cellosaurus:CVCL_1604 NEC8 0 3328 -cellosaurus:CVCL_IW43 NEC8 cl-1 1 3329 -cellosaurus:CVCL_8407 PT45 0 3330 -cellosaurus:CVCL_8408 PT45-P1 1 3331 -cellosaurus:CVCL_8409 PT45-P1res 2 3332 -cellosaurus:CVCL_F869 DM150 0 3333 -cellosaurus:CVCL_ZL68 DM150/B7-8 1 3334 -cellosaurus:CVCL_1628 OVCAR-5 0 3335 -cellosaurus:CVCL_UI87 OVCAR-5-CisR 1 3336 -cellosaurus:CVCL_JY85 OVCAR-5/RFP 1 3337 -cellosaurus:CVCL_1994 COLO 704 0 3338 -cellosaurus:CVCL_AV69 COLO 720E contaminated 1 3339 -cellosaurus:CVCL_RS29 COLO-704rCDDP1000 1 3340 -cellosaurus:CVCL_H632 Mac-2 0 3341 -cellosaurus:CVCL_H637 Mac-2A 1 3342 -cellosaurus:CVCL_H638 Mac-2B 1 3343 -cellosaurus:CVCL_8656 AS-M 0 3344 -cellosaurus:CVCL_8657 AS-M.5 1 3345 -cellosaurus:CVCL_RN36 AS-M.5 SOCS3-Luc clone E 2 3346 -cellosaurus:CVCL_S468 U-2987MG 0 3347 -cellosaurus:CVCL_S469 U-2987-P3 1 3348 -cellosaurus:CVCL_S470 U-2987-P6 1 3349 -cellosaurus:CVCL_M005 JMN 0 3350 -cellosaurus:CVCL_M006 JMN-1B 1 3351 -cellosaurus:CVCL_9U24 LISP-1 0 3352 -cellosaurus:CVCL_9U25 LISP-A10 1 3353 -cellosaurus:CVCL_9U26 LISP-E11 1 3354 -cellosaurus:CVCL_W773 Fen 0 3355 -cellosaurus:CVCL_W774 Fen Cl 3.7 1 3356 -cellosaurus:CVCL_0I22 sHPT-1 0 3357 -cellosaurus:CVCL_A8V1 sHPT-1/TET1 1 3358 -cellosaurus:CVCL_1494 NCI-H1781 0 3359 -cellosaurus:CVCL_JG93 NCI-H1781/CMV-Luc polyclone 1 3360 -cellosaurus:CVCL_JG95 NCI-H1781/CMV-Luc#6 1 3361 -cellosaurus:CVCL_0528 SK-N-BE(2) 0 3362 -cellosaurus:CVCL_B0ZE Abcam SK-N-BE(2) GRM5 KO 1 3363 -cellosaurus:CVCL_0529 SK-N-BE(2)-C 1 3364 -cellosaurus:CVCL_V006 BE(2)-C/ADR(5) 2 3365 -cellosaurus:CVCL_V007 BE(2)-C/ACT(0.2) 2 3366 -cellosaurus:CVCL_V008 BE(2)-C/CHC(1) 2 3367 -cellosaurus:CVCL_V009 BE(2)-C/CHCb 2 3368 -cellosaurus:CVCL_V010 BE(2)-C/CHCg 2 3369 -cellosaurus:CVCL_B7TE SK/IFN-gamma 2 3370 -cellosaurus:CVCL_B7TF SK/neo 2 3371 -cellosaurus:CVCL_0167 SK-N-BE(2)-M17 1 3372 -cellosaurus:CVCL_7986 LK63 [Melbourne] 0 3373 -cellosaurus:CVCL_ZV65 LK63/A3KD 1 3374 -cellosaurus:CVCL_K236 MO-LAS 0 3375 -cellosaurus:CVCL_AS12 MO-LAS-B 1 3376 -cellosaurus:CVCL_1290 HT 0 3377 -cellosaurus:CVCL_ZC30 HT TRAF6 KD 1 3378 -cellosaurus:CVCL_1D72 UOK262 0 3379 -cellosaurus:CVCL_RN43 UOK262-WT 1 3380 -cellosaurus:CVCL_0485 PLC/PRF/5 0 3381 -cellosaurus:CVCL_A8RU N1380 1 3382 -cellosaurus:CVCL_B449 NPLC/PRF/5 1 3383 -cellosaurus:CVCL_LJ87 PLC/PRF/5 Luciferase/GFP 1 3384 -cellosaurus:CVCL_XB32 PLC/PRF/5-Cas9-705 1 3385 -cellosaurus:CVCL_XB33 PLC/PRF/5-Cas9-706 1 3386 -cellosaurus:CVCL_XB34 PLC/PRF/5-Cas9-707 1 3387 -cellosaurus:CVCL_XB35 PLC/PRF/5-Cas9-708 1 3388 -cellosaurus:CVCL_XB36 PLC/PRF/5-Cas9-709 1 3389 -cellosaurus:CVCL_XB37 PLC/PRF/5-Cas9-710 1 3390 -cellosaurus:CVCL_XB38 PLC/PRF/5-Cas9-711 1 3391 -cellosaurus:CVCL_XB39 PLC/PRF/5-Cas9-712 1 3392 -cellosaurus:CVCL_XB40 PLC/PRF/5-Cas9-713 1 3393 -cellosaurus:CVCL_XB41 PLC/PRF/5-Cas9-714 1 3394 -cellosaurus:CVCL_XB42 PLC/PRF/5-Cas9-715 1 3395 -cellosaurus:CVCL_6774 DOV13 0 3396 -cellosaurus:CVCL_X010 NOSE-06 1 3397 -cellosaurus:CVCL_X011 NOSE-07 1 3398 -cellosaurus:CVCL_1255 HCC1569 0 3399 -cellosaurus:CVCL_A1FP HCC1569 GDC-0941_resistant 1 3400 -cellosaurus:CVCL_2989 KMS-11 0 3401 -cellosaurus:CVCL_HE02 KMS-11 WHSC1(+/-) 1 3402 -cellosaurus:CVCL_HE03 KMS-11 WHSC1(trans/-) 1 3403 -cellosaurus:CVCL_4V71 KMS-11/BTZ 1 3404 -cellosaurus:CVCL_IQ84 KMS-11/Cfz 1 3405 -cellosaurus:CVCL_D705 KMS-11R 1 3406 -cellosaurus:CVCL_JM66 OC002 0 3407 -cellosaurus:CVCL_JM67 OC002Cis 1 3408 -cellosaurus:CVCL_9814 OCUT-2 0 3409 -cellosaurus:CVCL_W915 OCUT-2C 1 3410 -cellosaurus:CVCL_1259 HCC1954 0 3411 -cellosaurus:CVCL_LG20 HCC1954-LR 1 3412 -cellosaurus:CVCL_4W93 HCC1954-Luc 1 3413 -cellosaurus:CVCL_LG21 HCC1954-NR 1 3414 -cellosaurus:CVCL_VR24 HCC1954-TGL 1 3415 -cellosaurus:CVCL_VR25 HCC1954-LCC1 2 3416 -cellosaurus:CVCL_VR26 HCC1954-LCC2 3 3417 -cellosaurus:CVCL_XA23 HCC1954-LeptoM 2 3418 -cellosaurus:CVCL_B3MM HCC1954/TDR 1 3419 -cellosaurus:CVCL_B6KB Mel Kor 0 3420 -cellosaurus:CVCL_B6LQ Mel KG 1 3421 -cellosaurus:CVCL_B6KK Mel Kor-TurboRFP 1 3422 -cellosaurus:CVCL_5209 INA-6 0 3423 -cellosaurus:CVCL_0C40 INA-6.Tu1 1 3424 -cellosaurus:CVCL_1612 NUGC-3 0 3425 -cellosaurus:CVCL_4Y07 NUGC-3-Luc 1 3426 -cellosaurus:CVCL_L502 NUGC-3/5-FU/L 1 3427 -cellosaurus:CVCL_6C64 HPC-1 0 3428 -cellosaurus:CVCL_6C65 HPC-1H5 1 3429 -cellosaurus:CVCL_6C66 HPC-1P5 1 3430 -cellosaurus:CVCL_1568 NCI-H524 0 3431 -cellosaurus:CVCL_WM69 NCI-H524-A 1 3432 -cellosaurus:CVCL_1075 BALL-1 0 3433 -cellosaurus:CVCL_A8V6 BALL-1/CD20-KO 1 3434 -cellosaurus:CVCL_F843 KF-1 0 3435 -cellosaurus:CVCL_V533 KF28 1 3436 -cellosaurus:CVCL_X936 KF28Tx 2 3437 -cellosaurus:CVCL_V534 KFr13 2 3438 -cellosaurus:CVCL_V535 KFr13Tx 3 3439 -cellosaurus:CVCL_M713 KFra 1 3440 -cellosaurus:CVCL_M714 KFrb 1 3441 -cellosaurus:CVCL_1056 A-498 0 3442 -cellosaurus:CVCL_J241 A-498-Luc 1 3443 -cellosaurus:CVCL_5674 NALM-36 0 3444 -cellosaurus:CVCL_5675 NALM-36KL 1 3445 -cellosaurus:CVCL_1051 786-O 0 3446 -cellosaurus:CVCL_VR30 786-M1A 1 3447 -cellosaurus:CVCL_VR32 786-M2A 2 3448 -cellosaurus:CVCL_VR33 786-M2B 2 3449 -cellosaurus:CVCL_VR31 786-M1B 1 3450 -cellosaurus:CVCL_J240 786-O-Luc 1 3451 -cellosaurus:CVCL_AS74 786-O/Luc 1 3452 -cellosaurus:CVCL_WV95 786-OR 1 3453 -cellosaurus:CVCL_VR34 786-TGL 1 3454 -cellosaurus:CVCL_XI63 7SuR 1 3455 -cellosaurus:CVCL_IS21 Bo-786-O 1 3456 -cellosaurus:CVCL_4834 E006AA 1 3457 -cellosaurus:CVCL_YI81 E006AA ZIC2-/- E5 2 3458 -cellosaurus:CVCL_YI82 E006AA ZIC2-/- G12 2 3459 -cellosaurus:CVCL_X480 E006AA-hT 2 3460 -cellosaurus:CVCL_0062 MDA-MB-231 0 3461 -cellosaurus:CVCL_EQ20 2LMP 1 3462 -cellosaurus:CVCL_A9BP Ecad-231-7 1 3463 -cellosaurus:CVCL_A9BQ Ecad-231-9 1 3464 -cellosaurus:CVCL_YJ86 LINTERNA MDA-MB-231 1 3465 -cellosaurus:CVCL_DP48 MDA-BoM-1833 1 3466 -cellosaurus:CVCL_4Y38 MDA-MB-231 25PACR 1 3467 -cellosaurus:CVCL_4Y39 MDA-MB-231 50PACR 1 3468 -cellosaurus:CVCL_A9AZ MDA-MB-231 CAPN2 KO 1 3469 -cellosaurus:CVCL_IN16 MDA-MB-231 CMV 1 3470 -cellosaurus:CVCL_IN17 MDA-MB-231 ERalpha 1 3471 -cellosaurus:CVCL_IN15 MDA-MB-231 ERalpha203/4/11 1 3472 -cellosaurus:CVCL_IN18 MDA-MB-231 ERbeta 1 3473 -cellosaurus:CVCL_IN19 MDA-MB-231 ERbetaDBD 1 3474 -cellosaurus:CVCL_A5ER MDA-MB-231 met2 1 3475 -cellosaurus:CVCL_A9BB MDA-MB-231 NAT1 down 1 3476 -cellosaurus:CVCL_A9BA MDA-MB-231 NAT1 scrambled 1 3477 -cellosaurus:CVCL_A9BE MDA-MB-231 NAT1-/- 2-19 2 3478 -cellosaurus:CVCL_A9BF MDA-MB-231 NAT1-/- 5-50 2 3479 -cellosaurus:CVCL_A9BD MDA-MB-231 NAT1+/- 2-12 2 3480 -cellosaurus:CVCL_A9BC MDA-MB-231 NAT1 up 1 3481 -cellosaurus:CVCL_DF47 MDA-MB-231 NucLight Green 1 3482 -cellosaurus:CVCL_DF48 MDA-MB-231 NucLight Red 1 3483 -cellosaurus:CVCL_RA90 MDA-MB-231 shPARG 1 3484 -cellosaurus:CVCL_YJ26 MDA-MB-231 shWDR12-4 1 3485 -cellosaurus:CVCL_S031 MDA-MB-231 SimpleCell O-GalNAc 1 3486 -cellosaurus:CVCL_S032 MDA-MB-231 SimpleCell O-GalNAC/O-Man 2 3487 -cellosaurus:CVCL_VR67 MDA-MB-231 VIM RFP 1 3488 -cellosaurus:CVCL_ZZ22 MDA-MB-231 Vb100 1 3489 -cellosaurus:CVCL_9U30 MDA-MB-231-5a 1 3490 -cellosaurus:CVCL_9U31 MDA-MB-231-5a-D 2 3491 -cellosaurus:CVCL_9U32 MDA-MB-231-5a-D-TbetaFluc/Rluc 3 3492 -cellosaurus:CVCL_9U33 MDA-MB-231-5a-D-TbetaFluc/Rluc-ZsGreen 4 3493 -cellosaurus:CVCL_R956 MDA-MB-231-BAG 1 3494 -cellosaurus:CVCL_UJ21 MDA-MB-231-Dox 1 3495 -cellosaurus:CVCL_JG53 MDA-MB-231-Luc 1 3496 -cellosaurus:CVCL_1D88 MDA-MB-231-luc-D3H1 1 3497 -cellosaurus:CVCL_D257 MDA-MB-231-luc-D3H2LN 2 3498 -cellosaurus:CVCL_D582 MDA-MB-231-luc2 1 3499 -cellosaurus:CVCL_1D89 MDA-MB-231-luc2-GFP 2 3500 -cellosaurus:CVCL_1D92 MDA-MB-231-luc2-LN 2 3501 -cellosaurus:CVCL_1D90 MDA-MB-231-luc2-tdTomato 2 3502 -cellosaurus:CVCL_1E88 MDA-MB-231-luc2-tdTomato-LN 3 3503 -cellosaurus:CVCL_V403 MDA-MB-231-MEK-R 1 3504 -cellosaurus:CVCL_5J05 MDA-MB-231-Red-FLuc 1 3505 -cellosaurus:CVCL_5J06 MDA-MB-231-Red-FLuc-GFP 1 3506 -cellosaurus:CVCL_1D91 MDA-MB-231-tdTomato 1 3507 -cellosaurus:CVCL_S511 MDA-MB-231/5-FU 1 3508 -cellosaurus:CVCL_5T76 MDA-MB-231/B02 1 3509 -cellosaurus:CVCL_5T77 B02/GFP.2 2 3510 -cellosaurus:CVCL_ZZ41 MDA-MB-231/BCRP 1 3511 -cellosaurus:CVCL_JZ03 MDA-MB-231/GFP 1 3512 -cellosaurus:CVCL_JZ04 MDA-MB-231/GFP-RFP 1 3513 -cellosaurus:CVCL_JZ05 MDA-MB-231/Luc 1 3514 -cellosaurus:CVCL_YZ80 MDA-MB-231/Luciferase-2A-RFP 1 3515 -cellosaurus:CVCL_4Z64 MDA-MB-231/PacR 1 3516 -cellosaurus:CVCL_JZ06 MDA-MB-231/RFP 1 3517 -cellosaurus:CVCL_A0YX MDA-MB-231bo 1 3518 -cellosaurus:CVCL_A0YY MDA-MB-231br 1 3519 -cellosaurus:CVCL_B0A0 MDA-MB-231br/eGFP 2 3520 -cellosaurus:CVCL_4Z65 MDA-MB-231DR 1 3521 -cellosaurus:CVCL_M354 MDA-MB-231LLM 1 3522 -cellosaurus:CVCL_XE60 MDA-MB-231sci 1 3523 -cellosaurus:CVCL_YA89 MDA-MB-231T 1 3524 -cellosaurus:CVCL_4V67 MDA231-DOX[r] 1 3525 -cellosaurus:CVCL_VR35 MDA231-TGL 1 3526 -cellosaurus:CVCL_VR36 MDA231-BrM2-831 2 3527 -cellosaurus:CVCL_XB00 MDA231-LeptoM 2 3528 -cellosaurus:CVCL_DG21 MDA231-LM2-4142 2 3529 -cellosaurus:CVCL_5998 MDA231-LM2-4175 2 3530 -cellosaurus:CVCL_YJ68 VAMPIRO MDA-MB-231 1 3531 -cellosaurus:CVCL_E060 HIRS-BM 0 3532 -cellosaurus:CVCL_VS99 HIRS-BMA 1 3533 -cellosaurus:CVCL_VT00 HIRS-BMS 1 3534 -cellosaurus:CVCL_1130 COLO 679 0 3535 -cellosaurus:CVCL_J249 COLO 679-Luc 1 3536 -cellosaurus:CVCL_RT15 COLO-679rNutlin20muM 1 3537 -cellosaurus:CVCL_RT16 COLO-679rPLX4032_10muM 1 3538 -cellosaurus:CVCL_RQ50 COLO-679rVCR20 1 3539 -cellosaurus:CVCL_1331 KM12 0 3540 -cellosaurus:CVCL_LB66 KM12 MX10 1 3541 -cellosaurus:CVCL_9547 KM12-C 1 3542 -cellosaurus:CVCL_4M93 KM12-HX 2 3543 -cellosaurus:CVCL_4M94 KM12-LX 2 3544 -cellosaurus:CVCL_9548 KM12-SM 2 3545 -cellosaurus:CVCL_5946 KM12-L4 1 3546 -cellosaurus:CVCL_W220 KM12-L4A 2 3547 -cellosaurus:CVCL_5920 KM12-OxR 2 3548 -cellosaurus:CVCL_AU12 KM12L4/OXR 2 3549 -cellosaurus:CVCL_J258 KM12-Luc 1 3550 -cellosaurus:CVCL_JM64 M019i 0 3551 -cellosaurus:CVCL_JM65 M019iCis 1 3552 -cellosaurus:CVCL_6806 WM9 0 3553 -cellosaurus:CVCL_VS30 WM9-HmR 1 3554 -cellosaurus:CVCL_1654 RERF-LC-KJ 0 3555 -cellosaurus:CVCL_4Y17 RERF-LC-KJ/CMV-Luc 1 3556 -cellosaurus:CVCL_1649 RD 0 3557 -cellosaurus:CVCL_LM95 3AB-OS 1 3558 -cellosaurus:CVCL_0350 IN157 1 3559 -cellosaurus:CVCL_C1YP RD rho-0 1 3560 -cellosaurus:CVCL_XD25 RD-Luc 1 3561 -cellosaurus:CVCL_A5IA RD-SCARB2 1 3562 -cellosaurus:CVCL_DP30 RD.TG6 1 3563 -cellosaurus:CVCL_IU94 RD/12 1 3564 -cellosaurus:CVCL_VH40 RD/15 1 3565 -cellosaurus:CVCL_IU87 RD/18 1 3566 -cellosaurus:CVCL_VH41 RD/19 1 3567 -cellosaurus:CVCL_VH39 RD/7 1 3568 -cellosaurus:CVCL_A2HQ RD/VCR-F3 1 3569 -cellosaurus:CVCL_1756 TE 671 1 3570 -cellosaurus:CVCL_2731 TE 671 Subline No.2 2 3571 -cellosaurus:CVCL_9U63 TE-FLY-A8 2 3572 -cellosaurus:CVCL_9U64 TE-FLY-GALV 2 3573 -cellosaurus:CVCL_9U65 TELac2 2 3574 -cellosaurus:CVCL_9U66 TELCeB6 3 3575 -cellosaurus:CVCL_9U67 TeLFBASAF 2 3576 -cellosaurus:CVCL_A620 HUOCA-II 0 3577 -cellosaurus:CVCL_X940 W3UF 1 3578 -cellosaurus:CVCL_5711 BJAB 0 3579 -cellosaurus:CVCL_8659 BBF 1 3580 -cellosaurus:CVCL_VD92 BJAB GFP-CD20 1 3581 -cellosaurus:CVCL_VD93 BJAB GFP-MS4A4A 1 3582 -cellosaurus:CVCL_VD94 BJAB GFP-MS4A6A 1 3583 -cellosaurus:CVCL_VD95 BJAB GFP-MS4A7 1 3584 -cellosaurus:CVCL_VD96 BJAB GFP-MS4A8B 1 3585 -cellosaurus:CVCL_VE00 BJAB HA-MS4A4A 1 3586 -cellosaurus:CVCL_VE01 BJAB HA-MS4A8B 1 3587 -cellosaurus:CVCL_B6UM BJAB-B95.8.6 1 3588 -cellosaurus:CVCL_B6UN BM1.5 2 3589 -cellosaurus:CVCL_B6UX BM10.1 2 3590 -cellosaurus:CVCL_B6UY BM11.1 2 3591 -cellosaurus:CVCL_B6UZ BM12.1 2 3592 -cellosaurus:CVCL_B6V0 BM13.1 2 3593 -cellosaurus:CVCL_B6V1 BM14.1 2 3594 -cellosaurus:CVCL_B6V2 BM15.3 2 3595 -cellosaurus:CVCL_B6V3 BM19 2 3596 -cellosaurus:CVCL_B6UP BM2.2 2 3597 -cellosaurus:CVCL_B6V4 BM2.2.3 3 3598 -cellosaurus:CVCL_B6UQ BM3.1 2 3599 -cellosaurus:CVCL_B6UR BM4.1 2 3600 -cellosaurus:CVCL_B6US BM5.2 2 3601 -cellosaurus:CVCL_B6UT BM6.3 2 3602 -cellosaurus:CVCL_B6UU BM7.4 2 3603 -cellosaurus:CVCL_B6UV BM8.5 2 3604 -cellosaurus:CVCL_B6UW BM9.1 2 3605 -cellosaurus:CVCL_IZ94 BJAB-K20 1 3606 -cellosaurus:CVCL_9876 BJAB-K3 1 3607 -cellosaurus:CVCL_IZ95 BJAB-K43 1 3608 -cellosaurus:CVCL_9666 BJAB-K5 1 3609 -cellosaurus:CVCL_IZ96 BJAB-K6 1 3610 -cellosaurus:CVCL_IZ97 BJAB-K88 1 3611 -cellosaurus:CVCL_YY30 BJAB-L-YFP 1 3612 -cellosaurus:CVCL_YY31 BJAB-YFP 1 3613 -cellosaurus:CVCL_VC38 BJAB/ADR 1 3614 -cellosaurus:CVCL_B6UK BJAB/HR1K 1 3615 -cellosaurus:CVCL_8660 BREM 1 3616 -cellosaurus:CVCL_5758 GC-BJAB 1 3617 -cellosaurus:CVCL_1G52 TF228.1.16 1 3618 -cellosaurus:CVCL_0003 HMC-1 0 3619 -cellosaurus:CVCL_4T80 HMC-1 5C6 1 3620 -cellosaurus:CVCL_H206 HMC-1.1 1 3621 -cellosaurus:CVCL_H205 HMC-1.2 1 3622 -cellosaurus:CVCL_X181 EPP85-181P 0 3623 -cellosaurus:CVCL_X182 EPP85-181RDB 1 3624 -cellosaurus:CVCL_X183 EPP85-181RNOV 1 3625 -cellosaurus:CVCL_X186 WCQH-9801 0 3626 -cellosaurus:CVCL_X188 L9981 1 3627 -cellosaurus:CVCL_X189 L9981-Luc 2 3628 -cellosaurus:CVCL_X190 L9981-BoM 3 3629 -cellosaurus:CVCL_X191 L9981-BrM 3 3630 -cellosaurus:CVCL_X192 L9981-LnM 3 3631 -cellosaurus:CVCL_X193 L9981-LuM 3 3632 -cellosaurus:CVCL_X187 NL9980 1 3633 -cellosaurus:CVCL_DG51 Mel1617 0 3634 -cellosaurus:CVCL_DG52 Mel1617-BR 1 3635 -cellosaurus:CVCL_DG53 Mel1617-MR 1 3636 -cellosaurus:CVCL_1315 ITO-II 0 3637 -cellosaurus:CVCL_IW42 ITO-II cl-5 1 3638 -cellosaurus:CVCL_0P30 NOY1 0 3639 -cellosaurus:CVCL_0P32 NOY1-CR 1 3640 -cellosaurus:CVCL_W188 Am1010 0 3641 -cellosaurus:CVCL_ZZ60 Am1010-GFP 1 3642 -cellosaurus:CVCL_ZZ61 Am1010-RFP 1 3643 -cellosaurus:CVCL_1332 KMOE-2 0 3644 -cellosaurus:CVCL_UF71 KMOE-2/05 1 3645 -cellosaurus:CVCL_0036 RT-4 0 3646 -cellosaurus:CVCL_2715 RT4/31 1 3647 -cellosaurus:CVCL_RR19 RT4rCDDP1000 1 3648 -cellosaurus:CVCL_RR20 RT4rGEMCI10 1 3649 -cellosaurus:CVCL_T027 RT4v6 1 3650 -cellosaurus:CVCL_N826 CL97 0 3651 -cellosaurus:CVCL_IQ77 CL97-L2G 1 3652 -cellosaurus:CVCL_0P33 JTG-1 0 3653 -cellosaurus:CVCL_0P34 TG-1 1 3654 -cellosaurus:CVCL_0346 IMR-32 0 3655 -cellosaurus:CVCL_B0GV I3.4.2 1 3656 -cellosaurus:CVCL_S028 IMR-32 SimpleCell O-GalNAc 1 3657 -cellosaurus:CVCL_A9J0 IMR-32/CMV-Luc 1 3658 -cellosaurus:CVCL_ER17 IMR-32_pCMV-DPP3 1 3659 -cellosaurus:CVCL_ER18 IMR-32_pCMV-SQSTM1 1 3660 -cellosaurus:CVCL_RS60 IMR-32rBORTE10 1 3661 -cellosaurus:CVCL_ZX18 IMR-32rCARBO1000 1 3662 -cellosaurus:CVCL_RR66 IMR-32rCARBO4000 1 3663 -cellosaurus:CVCL_RS61 IMR-32rCARBO5000 1 3664 -cellosaurus:CVCL_RR67 IMR-32rCDDP1000 1 3665 -cellosaurus:CVCL_RS27 IMR-32rCDDP500 1 3666 -cellosaurus:CVCL_RR68 IMR-32rDOX20 1 3667 -cellosaurus:CVCL_RR69 IMR-32rETO100 1 3668 -cellosaurus:CVCL_RS53 IMR-32rGEMCI20 1 3669 -cellosaurus:CVCL_RR70 IMR-32rGEMCI25 1 3670 -cellosaurus:CVCL_RS54 IMR-32rMEL2000 1 3671 -cellosaurus:CVCL_RR71 IMR-32rMEL500 1 3672 -cellosaurus:CVCL_RR72 IMR-32rOXALI4000 1 3673 -cellosaurus:CVCL_RS55 IMR-32rOXALI800 1 3674 -cellosaurus:CVCL_RS56 IMR-32rTOPO20 1 3675 -cellosaurus:CVCL_RR73 IMR-32rTOPO7.5 1 3676 -cellosaurus:CVCL_RS57 IMR-32rTOPO8 1 3677 -cellosaurus:CVCL_RR36 IMR-32rVCR10 1 3678 -cellosaurus:CVCL_RS58 IMR-32rVINOR20 1 3679 -cellosaurus:CVCL_RR75 IMR-32rVINOR5 1 3680 -cellosaurus:CVCL_1306 IMR-5 1 3681 -cellosaurus:CVCL_M473 IMR-5/75 2 3682 -cellosaurus:CVCL_M472 IMR-5/M-1 2 3683 -cellosaurus:CVCL_RT17 IMR-5rCARBO5000 2 3684 -cellosaurus:CVCL_RR56 IMR-5rCDDP1000 2 3685 -cellosaurus:CVCL_RS59 IMR-5rDACARB20 2 3686 -cellosaurus:CVCL_ZX19 IMR-5rDACARB40 2 3687 -cellosaurus:CVCL_RR57 IMR-5rDOCE20 2 3688 -cellosaurus:CVCL_RR58 IMR-5rDOX20 2 3689 -cellosaurus:CVCL_RR59 IMR-5rETO100 2 3690 -cellosaurus:CVCL_RR60 IMR-5rGEMCI20 2 3691 -cellosaurus:CVCL_RS63 IMR-5rIRINO1000 2 3692 -cellosaurus:CVCL_RS62 IMR-5rMEL1000 2 3693 -cellosaurus:CVCL_RR61 IMR-5rMEL3000 2 3694 -cellosaurus:CVCL_RR62 IMR-5rOXALI4000 2 3695 -cellosaurus:CVCL_RR63 IMR-5rPCL20 2 3696 -cellosaurus:CVCL_RR64 IMR-5rTOPO20 2 3697 -cellosaurus:CVCL_RR37 IMR-5rVCR10 2 3698 -cellosaurus:CVCL_RS64 IMR-5rVINB20 2 3699 -cellosaurus:CVCL_RR65 IMR-5rVINOR20 2 3700 -cellosaurus:CVCL_A8UT IMR/KAT100 1 3701 -cellosaurus:CVCL_A8SG IMR32.CMV.neo 1 3702 -cellosaurus:CVCL_A8SH IMR32.ODC.CE 1 3703 -cellosaurus:CVCL_U873 Panc 09.06 0 3704 -cellosaurus:CVCL_E297 Panc 09.06.94 1 3705 -cellosaurus:CVCL_8730 KU-SN 0 3706 -cellosaurus:CVCL_E131 KU-YS 1 3707 -cellosaurus:CVCL_6629 DM93 0 3708 -cellosaurus:CVCL_ZL69 DM93/B7-3 1 3709 -cellosaurus:CVCL_0044 BeWo 0 3710 -cellosaurus:CVCL_LB82 BeWo b24 1 3711 -cellosaurus:CVCL_LB83 BeWo b30 1 3712 -cellosaurus:CVCL_XF88 Bewo31 1 3713 -cellosaurus:CVCL_R702 Hs 630.T 1 3714 -cellosaurus:CVCL_1404 MES-SA 0 3715 -cellosaurus:CVCL_4T93 MES-SA/Dx1 1 3716 -cellosaurus:CVCL_2598 MES-SA/Dx5 1 3717 -cellosaurus:CVCL_4T94 MES-SA/DxP5002 2 3718 -cellosaurus:CVCL_2599 MES-SA/MX2 1 3719 -cellosaurus:CVCL_6736 TMCC-2 0 3720 -cellosaurus:CVCL_6737 TMCC-2.U 1 3721 -cellosaurus:CVCL_0374 KG-1 0 3722 -cellosaurus:CVCL_1824 KG-1a 1 3723 -cellosaurus:CVCL_5301 KMT-2 1 3724 -cellosaurus:CVCL_E918 LB373-MEL 0 3725 -cellosaurus:CVCL_1367 LB373-MEL-D 1 3726 -cellosaurus:CVCL_1614 OAW28 0 3727 -cellosaurus:CVCL_4993 41M 1 3728 -cellosaurus:CVCL_N788 41M-cisR 2 3729 -cellosaurus:CVCL_Y427 41M:RD1694 2 3730 -cellosaurus:CVCL_Y037 41M47 2 3731 -cellosaurus:CVCL_2508 HRA-19 0 3732 -cellosaurus:CVCL_2509 HRA-19a1.1 1 3733 -cellosaurus:CVCL_2512 HRA-19a1.1 Alpha2 B 2 3734 -cellosaurus:CVCL_2513 HRA-19a1.1 Alpha2 F 2 3735 -cellosaurus:CVCL_2510 HRA-19a1.1 Alpha2Alpha1 B 2 3736 -cellosaurus:CVCL_2511 HRA-19a1.1 Alpha2Alpha1 E 2 3737 -cellosaurus:CVCL_0336 Huh-7 0 3738 -cellosaurus:CVCL_U442 B76/Huh7 1 3739 -cellosaurus:CVCL_U443 B76.1/Huh7 2 3740 -cellosaurus:CVCL_RW46 HG23 1 3741 -cellosaurus:CVCL_X943 Huh-5-2 1 3742 -cellosaurus:CVCL_ZW90 HuH-7-END 1 3743 -cellosaurus:CVCL_JG51 Huh-7-Luc 1 3744 -cellosaurus:CVCL_U459 Huh-7-Lunet 1 3745 -cellosaurus:CVCL_CW91 Huh-7-Lunet/Con1 2 3746 -cellosaurus:CVCL_7927 Huh-7.5 1 3747 -cellosaurus:CVCL_C2UW Huh-7.5 STAT1 KO #1 2 3748 -cellosaurus:CVCL_C2UX Huh-7.5 STAT1 KO #2 2 3749 -cellosaurus:CVCL_C2UY Huh-7.5 STAT2 KO #1 2 3750 -cellosaurus:CVCL_C2UZ Huh-7.5 STAT2 KO #2 2 3751 -cellosaurus:CVCL_A0TI Huh-7.5 Tet-On 2 3752 -cellosaurus:CVCL_E049 Huh-7.5.1 2 3753 -cellosaurus:CVCL_YU21 Huh7.5.1-5 3 3754 -cellosaurus:CVCL_YU20 Huh7.5.1-8 3 3755 -cellosaurus:CVCL_WJ09 Huh-7/F24 1 3756 -cellosaurus:CVCL_XE85 Huh-7/M8 1 3757 -cellosaurus:CVCL_2957 Huh-7D12 1 3758 -cellosaurus:CVCL_LG22 HuH-7T1 1 3759 -cellosaurus:CVCL_UZ56 Huh7 IFITM2-/- 1 3760 -cellosaurus:CVCL_HA62 HUH7-ins 1 3761 -cellosaurus:CVCL_HA63 Melligen 2 3762 -cellosaurus:CVCL_B7TI HUH7-R 1 3763 -cellosaurus:CVCL_B7TJ HUH7-R-LUC 2 3764 -cellosaurus:CVCL_4W53 Huh7S1 1 3765 -cellosaurus:CVCL_VN30 OR6 [Human] 1 3766 -cellosaurus:CVCL_UF76 SCMC-MM-1 0 3767 -cellosaurus:CVCL_UF77 SCMC-MM-1-19P 1 3768 -cellosaurus:CVCL_UF78 SCMC-MM-1-1T 1 3769 -cellosaurus:CVCL_VQ16 ATL-48T 0 3770 -cellosaurus:CVCL_A6SH ATL-48Tb(-) 1 3771 -cellosaurus:CVCL_7138 SQ-20B 0 3772 -cellosaurus:CVCL_EI29 ER-SQ20B 1 3773 -cellosaurus:CVCL_D774 SQD9 1 3774 -cellosaurus:CVCL_D775 SQG6 1 3775 -cellosaurus:CVCL_2046 FM3 0 3776 -cellosaurus:CVCL_C578 FM3.13 1 3777 -cellosaurus:CVCL_C579 FM3.26 1 3778 -cellosaurus:CVCL_C580 FM3.29 1 3779 -cellosaurus:CVCL_UI31 FM3.D 1 3780 -cellosaurus:CVCL_UI32 FM3.P 1 3781 -cellosaurus:CVCL_1180 DOK 0 3782 -cellosaurus:CVCL_2H27 OSCC-BD 1 3783 -cellosaurus:CVCL_2169 RD-ES 0 3784 -cellosaurus:CVCL_4J79 C-378 1 3785 -cellosaurus:CVCL_U332 C-386 1 3786 -cellosaurus:CVCL_4J80 C-430 1 3787 -cellosaurus:CVCL_1969 C-433 1 3788 -cellosaurus:CVCL_5779 IOMM-Lee 0 3789 -cellosaurus:CVCL_HA67 IOMM-Lee-LucNeo 1 3790 -cellosaurus:CVCL_N718 CM-2 [Human leukemia] 0 3791 -cellosaurus:CVCL_N719 CM-3 [Human leukemia] 1 3792 -cellosaurus:CVCL_N720 CM-4 [Human leukemia] 1 3793 -cellosaurus:CVCL_N721 CM-5 [Human leukemia] 1 3794 -cellosaurus:CVCL_T743 KSU 0 3795 -cellosaurus:CVCL_T744 KSU.C3 1 3796 -cellosaurus:CVCL_0C61 PT1590 0 3797 -cellosaurus:CVCL_0C62 PT1590-GFP 1 3798 -cellosaurus:CVCL_1Y70 S462 0 3799 -cellosaurus:CVCL_JK02 S462.TY 1 3800 -cellosaurus:CVCL_A391 HSC-58 0 3801 -cellosaurus:CVCL_XG63 58As1 1 3802 -cellosaurus:CVCL_A9K1 58As1mLuc 2 3803 -cellosaurus:CVCL_XG64 58As9 1 3804 -cellosaurus:CVCL_5105 SNU-899 0 3805 -cellosaurus:CVCL_A6IV SNU-899 R1 1 3806 -cellosaurus:CVCL_1107 CAL-27 0 3807 -cellosaurus:CVCL_C0RK CAL-27 2B1 1 3808 -cellosaurus:CVCL_C0RL CAL-27 2B3 1 3809 -cellosaurus:CVCL_GY99 CAL-27 TPFR 1 3810 -cellosaurus:CVCL_EI26 ER-Cal-27 1 3811 -cellosaurus:CVCL_0064 MV4-11 0 3812 -cellosaurus:CVCL_C3HG MV-4-11B 1 3813 -cellosaurus:CVCL_2207 SU-DHL-8 0 3814 -cellosaurus:CVCL_4379 SU-DHL-9 1 3815 -cellosaurus:CVCL_8731 M-MOK 0 3816 -cellosaurus:CVCL_RM05 M-MOK/TPO 1 3817 -cellosaurus:CVCL_X173 HC-2 0 3818 -cellosaurus:CVCL_RJ61 HC-2-6 1 3819 -cellosaurus:CVCL_S852 HROC113 0 3820 -cellosaurus:CVCL_AN12 HROC113 cT0 M1 1 3821 -cellosaurus:CVCL_A2FY MBA72 0 3822 -cellosaurus:CVCL_A2FZ MBA72R 1 3823 -cellosaurus:CVCL_A425 KBM-3 0 3824 -cellosaurus:CVCL_IP19 KBM-3/AMSA 1 3825 -cellosaurus:CVCL_H688 KBM-3/DOX 1 3826 -cellosaurus:CVCL_0179 BT-474 0 3827 -cellosaurus:CVCL_AQ07 BT-474 Clone 5 1 3828 -cellosaurus:CVCL_A4CL BT-474 Ecadherin EmGFP 1 3829 -cellosaurus:CVCL_AR96 BT-474 EEI 1 3830 -cellosaurus:CVCL_AR86 BT-474 Tam1 1 3831 -cellosaurus:CVCL_A4AK BT-474 Tam2 1 3832 -cellosaurus:CVCL_4Y08 BT-474/CMV-Luc 1 3833 -cellosaurus:CVCL_IP20 BT-474c1 1 3834 -cellosaurus:CVCL_YX79 BT474 A3 1 3835 -cellosaurus:CVCL_4V65 BT474-5FU[r] 1 3836 -cellosaurus:CVCL_ZL46 BT474-J4 1 3837 -cellosaurus:CVCL_EI02 BT474-LAPRa 1 3838 -cellosaurus:CVCL_EI03 BT474-LAPRb 1 3839 -cellosaurus:CVCL_VL01 BT474-LR 1 3840 -cellosaurus:CVCL_A2GH LR-BT474 1 3841 -cellosaurus:CVCL_2148 NW145 0 3842 -cellosaurus:CVCL_C538 NW145/E7 1 3843 -cellosaurus:CVCL_YD22 SNU-2550 0 3844 -cellosaurus:CVCL_YD49 SNU-2550CR 1 3845 -cellosaurus:CVCL_U093 A110L 0 3846 -cellosaurus:CVCL_YD59 A110L-B35 1 3847 -cellosaurus:CVCL_1234 GOTO 0 3848 -cellosaurus:CVCL_2911 GOTO.P3 1 3849 -cellosaurus:CVCL_C1MA MEO 0 3850 -cellosaurus:CVCL_C1MB MEO clone 515 1 3851 -cellosaurus:CVCL_0U26 XGC9811 0 3852 -cellosaurus:CVCL_0U28 GC9811-P 1 3853 -cellosaurus:CVCL_0U27 XGC9811-L 1 3854 -cellosaurus:CVCL_4654 JHUEM-14 0 3855 -cellosaurus:CVCL_A8Q4 JHUEM-14 Prex2a shRNA type 1 1 3856 -cellosaurus:CVCL_A8Q5 JHUEM-14 Prex2a shRNA type 2 1 3857 -cellosaurus:CVCL_2600 MKL-1 0 3858 -cellosaurus:CVCL_EQ70 MKL-1 subclone 1 1 3859 -cellosaurus:CVCL_EQ71 MKL-1 subclone 2 1 3860 -cellosaurus:CVCL_0532 SK-OV-3 0 3861 -cellosaurus:CVCL_F642 IST-1 [Human contaminated placenta] 1 3862 -cellosaurus:CVCL_YJ94 LINTERNA SK-OV-3 1 3863 -cellosaurus:CVCL_XB82 SK-OV-3-Cas9-560 1 3864 -cellosaurus:CVCL_XB83 SK-OV-3-Cas9-561 1 3865 -cellosaurus:CVCL_XB84 SK-OV-3-Cas9-562 1 3866 -cellosaurus:CVCL_XB85 SK-OV-3-Cas9-563 1 3867 -cellosaurus:CVCL_XB86 SK-OV-3-Cas9-564 1 3868 -cellosaurus:CVCL_YU10 SK-OV-3-hCD271 1 3869 -cellosaurus:CVCL_4Y20 SK-OV-3-Luc 1 3870 -cellosaurus:CVCL_D621 SK-OV-3/CBP 1 3871 -cellosaurus:CVCL_D622 SK-OV-3/CDDP 1 3872 -cellosaurus:CVCL_4Y19 SK-OV-3/CMV-Luc 1 3873 -cellosaurus:CVCL_ZZ42 SKOV-3/BCRP 1 3874 -cellosaurus:CVCL_JY94 SKOV-3/GFP-Luc 1 3875 -cellosaurus:CVCL_M089 SKOV-3/Luc 1 3876 -cellosaurus:CVCL_M090 SKOV-3/RFP 1 3877 -cellosaurus:CVCL_4V89 SKOV-3TR 1 3878 -cellosaurus:CVCL_VS41 SKOV3-A2 1 3879 -cellosaurus:CVCL_UI88 SKOV3-CisR 1 3880 -cellosaurus:CVCL_C3C2 SKOV3-GFP-HER2 1 3881 -cellosaurus:CVCL_C3C3 SKOV3-GFP-HER2 RFP-EGFR 2 3882 -cellosaurus:CVCL_C3C1 SKOV3-GFP-STAT3 1 3883 -cellosaurus:CVCL_5J38 SKOV3-luc-D3 1 3884 -cellosaurus:CVCL_5J11 SKOV3-Red-FLuc 1 3885 -cellosaurus:CVCL_B0WE SKOV3-TAX/CBP 1 3886 -cellosaurus:CVCL_0C84 SKOV3.ip1 1 3887 -cellosaurus:CVCL_B3Q0 SKOV3/MRP7 1 3888 -cellosaurus:CVCL_HF69 SKOV3/TR 1 3889 -cellosaurus:CVCL_Y280 SKOV3/VP 1 3890 -cellosaurus:CVCL_XB81 SKOV3/VP16 1 3891 -cellosaurus:CVCL_IN06 SKVCR0.015 1 3892 -cellosaurus:CVCL_IN07 SKVCR0.1 1 3893 -cellosaurus:CVCL_IN08 SKVCR0.25 1 3894 -cellosaurus:CVCL_IN09 SKVCR2.0 1 3895 -cellosaurus:CVCL_IN03 SKVLB0.03 1 3896 -cellosaurus:CVCL_IN04 SKVLB0.06 1 3897 -cellosaurus:CVCL_IN05 SKVLB1 1 3898 -cellosaurus:CVCL_A227 Ma-Mel-93 0 3899 -cellosaurus:CVCL_VK42 Ma-Mel-93I 1 3900 -cellosaurus:CVCL_B6K8 Mel Cher 0 3901 -cellosaurus:CVCL_B6K9 Mel Cher 5C 1 3902 -cellosaurus:CVCL_S994 Mel-RMu 0 3903 -cellosaurus:CVCL_T017 Mel-RMu/DR2 1 3904 -cellosaurus:CVCL_T018 Mel-RMu/DR4 1 3905 -cellosaurus:CVCL_T019 Mel-RMu/DR6 1 3906 -cellosaurus:CVCL_T020 Mel-RMu/DR8 1 3907 -cellosaurus:CVCL_T021 Mel-RMu/DR9 1 3908 -cellosaurus:CVCL_0G05 ST-1 [Human leukemia] 0 3909 -cellosaurus:CVCL_A2CM RST1 1 3910 -cellosaurus:CVCL_3941 OVCAR-2 0 3911 -cellosaurus:CVCL_6861 Caov-2 1 3912 -cellosaurus:CVCL_2529 Ishikawa 0 3913 -cellosaurus:CVCL_W441 EIIL 1 3914 -cellosaurus:CVCL_9996 IK-90 1 3915 -cellosaurus:CVCL_IR24 ISH/DDP 1 3916 -cellosaurus:CVCL_6543 Ishikawa (Heraklio) 02 ER- 1 3917 -cellosaurus:CVCL_8783 Ishikawa (London) 02 ER+ 1 3918 -cellosaurus:CVCL_W420 Ishikawa 1-A-12 1 3919 -cellosaurus:CVCL_W421 Ishikawa 1-A-9 1 3920 -cellosaurus:CVCL_W422 Ishikawa 1-C-10 1 3921 -cellosaurus:CVCL_W423 Ishikawa 1-D-9 1 3922 -cellosaurus:CVCL_W424 Ishikawa 1-E-8 1 3923 -cellosaurus:CVCL_W425 Ishikawa 1-F-6 1 3924 -cellosaurus:CVCL_W426 Ishikawa 1-H-6 1 3925 -cellosaurus:CVCL_W427 Ishikawa 2-B-12 1 3926 -cellosaurus:CVCL_W428 Ishikawa 2-C-3 1 3927 -cellosaurus:CVCL_W429 Ishikawa 2-C-7 1 3928 -cellosaurus:CVCL_W430 Ishikawa 2-E-7 1 3929 -cellosaurus:CVCL_W431 Ishikawa 2-F-4 1 3930 -cellosaurus:CVCL_W432 Ishikawa 3-D-7 1 3931 -cellosaurus:CVCL_W433 Ishikawa 3-D-9 1 3932 -cellosaurus:CVCL_D199 Ishikawa 3-H-12 1 3933 -cellosaurus:CVCL_7260 ECC-1 2 3934 -cellosaurus:CVCL_C3G7 Ishikawa 3-H-12 PRA-14 2 3935 -cellosaurus:CVCL_C3G8 Ishikawa 3-H-12 PRB-59 2 3936 -cellosaurus:CVCL_JG52 Ishikawa 3-H-12-Luc 2 3937 -cellosaurus:CVCL_W434 Ishikawa 3-H-3 1 3938 -cellosaurus:CVCL_W435 Ishikawa 3-H-4 1 3939 -cellosaurus:CVCL_W436 Ishikawa 3-H-7 1 3940 -cellosaurus:CVCL_IJ14 Ishikawa-RP 1 3941 -cellosaurus:CVCL_5015 SNU-1196 0 3942 -cellosaurus:CVCL_C1L2 SNU-1196/GR 1 3943 -cellosaurus:CVCL_0093 RS4;11 0 3944 -cellosaurus:CVCL_XZ61 RS4;11 BCL2-F104L 1 3945 -cellosaurus:CVCL_XZ62 RS4;11 BCL2-G101V 1 3946 -cellosaurus:CVCL_0134 A2780 0 3947 -cellosaurus:CVCL_C0D6 A2780 PTX(4) 1 3948 -cellosaurus:CVCL_C0D7 A2780 PTX(8) 2 3949 -cellosaurus:CVCL_C0D8 A2780 PTX(16) 3 3950 -cellosaurus:CVCL_C0D9 A2780 PTX(32) 4 3951 -cellosaurus:CVCL_C0DA A2780 PTX(64) 5 3952 -cellosaurus:CVCL_C0DB A2780 PTX(128) 6 3953 -cellosaurus:CVCL_H619 A2780-1A9 1 3954 -cellosaurus:CVCL_B7S4 1A9/CP10 2 3955 -cellosaurus:CVCL_CZ93 1A9/T80 2 3956 -cellosaurus:CVCL_H620 1A9PTX10 2 3957 -cellosaurus:CVCL_H622 1A9PTX15 2 3958 -cellosaurus:CVCL_H621 1A9PTX22 2 3959 -cellosaurus:CVCL_S476 A2780-E(80) 2 3960 -cellosaurus:CVCL_ZE22 A2780-CBDCA-R 1 3961 -cellosaurus:CVCL_H745 A2780-cisR 1 3962 -cellosaurus:CVCL_EG64 A2780-DR 1 3963 -cellosaurus:CVCL_4T95 A2780-DX1 1 3964 -cellosaurus:CVCL_4T96 A2780-DX2 2 3965 -cellosaurus:CVCL_7225 A2780-DX3 3 3966 -cellosaurus:CVCL_4T97 A2780-DX4 4 3967 -cellosaurus:CVCL_4T98 A2780-DX5 5 3968 -cellosaurus:CVCL_4T99 A2780-DX6 6 3969 -cellosaurus:CVCL_TZ68 A2780-M 1 3970 -cellosaurus:CVCL_DI16 A2780-SCA 1 3971 -cellosaurus:CVCL_1F93 A2780-TC1 1 3972 -cellosaurus:CVCL_7224 A2780/100 1 3973 -cellosaurus:CVCL_D156 A2780/ACR6 1 3974 -cellosaurus:CVCL_D157 A2780/ACRP 1 3975 -cellosaurus:CVCL_B037 A2780/AD10 1 3976 -cellosaurus:CVCL_D537 A2780/ADDP 1 3977 -cellosaurus:CVCL_B7S7 A2780/C100 1 3978 -cellosaurus:CVCL_F638 A2780/C200 1 3979 -cellosaurus:CVCL_F639 A2780/C30 1 3980 -cellosaurus:CVCL_B7S6 A2780/C300 1 3981 -cellosaurus:CVCL_B7S8 A2780/C50 1 3982 -cellosaurus:CVCL_B7S5 A2780/C80 1 3983 -cellosaurus:CVCL_D620 A2780/CBP 1 3984 -cellosaurus:CVCL_Y180 A2780/cDDP 1 3985 -cellosaurus:CVCL_D619 A2780/CDDP 1 3986 -cellosaurus:CVCL_A5AB A2780/cmv 1 3987 -cellosaurus:CVCL_A5PS A2780/CP20 1 3988 -cellosaurus:CVCL_0135 A2780/CP70 1 3989 -cellosaurus:CVCL_A5PT A2780/CP8 1 3990 -cellosaurus:CVCL_A5AC A2780/m175 1 3991 -cellosaurus:CVCL_A5AD A2780/m248 1 3992 -cellosaurus:CVCL_A5AE A2780/m273 1 3993 -cellosaurus:CVCL_4862 A2780/R 1 3994 -cellosaurus:CVCL_4863 A2780/S 1 3995 -cellosaurus:CVCL_IJ13 A2780/Taxol 1 3996 -cellosaurus:CVCL_4V45 A2780/TPT 1 3997 -cellosaurus:CVCL_UJ39 A2780AD 1 3998 -cellosaurus:CVCL_1941 A2780ADR 1 3999 -cellosaurus:CVCL_1942 A2780cis 1 4000 -cellosaurus:CVCL_UJ38 A2780ME 1 4001 -cellosaurus:CVCL_C1NE A2780veliR 1 4002 -cellosaurus:CVCL_A018 IGR-CaP1 0 4003 -cellosaurus:CVCL_WM75 IGR-CaP1-R-caba 1 4004 -cellosaurus:CVCL_IR45 IGR-CaP1-R100 1 4005 -cellosaurus:CVCL_0425 MEG-01 0 4006 -cellosaurus:CVCL_3022 MEG-01s 1 4007 -cellosaurus:CVCL_3023 MEG-01SSF 2 4008 -cellosaurus:CVCL_0546 SW480 0 4009 -cellosaurus:CVCL_B0YQ Abcam SW480 ACAT1 KO 1 4010 -cellosaurus:CVCL_B0YR Abcam SW480 ALDH2 KO 1 4011 -cellosaurus:CVCL_B0YS Abcam SW480 DDIT3 KO 1 4012 -cellosaurus:CVCL_B0YT Abcam SW480 ELAVL1 KO 1 4013 -cellosaurus:CVCL_B0YU Abcam SW480 ITGA6 KO 1 4014 -cellosaurus:CVCL_B0YV Abcam SW480 LCN2 KO 1 4015 -cellosaurus:CVCL_B0YW Abcam SW480 SERPINA1 KO 1 4016 -cellosaurus:CVCL_8092 BIC-1 1 4017 -cellosaurus:CVCL_Y097 CC-M2 1 4018 -cellosaurus:CVCL_Y099 CC-M3 1 4019 -cellosaurus:CVCL_F654 CC-ML3 1 4020 -cellosaurus:CVCL_KS03 CellSensor LEF/TCF-bla SW480 1 4021 -cellosaurus:CVCL_A9MF SW480-EGFP 1 4022 -cellosaurus:CVCL_A4BX SW480-Luc2 1 4023 -cellosaurus:CVCL_A9MG SW480-Luc2-tdT 1 4024 -cellosaurus:CVCL_A9MH SW480-mCherry 1 4025 -cellosaurus:CVCL_A9MI SW480-tdT 1 4026 -cellosaurus:CVCL_AU16 SW480/5FUR 1 4027 -cellosaurus:CVCL_AU17 SW480/BEVA 1 4028 -cellosaurus:CVCL_4Y13 SW480/CMV-Luc 1 4029 -cellosaurus:CVCL_AT66 SW480/nkR 1 4030 -cellosaurus:CVCL_AT65 SW480/nkS 1 4031 -cellosaurus:CVCL_AU18 SW480/OXR 1 4032 -cellosaurus:CVCL_C3GM SW480_6244R 1 4033 -cellosaurus:CVCL_AT67 SW480E 1 4034 -cellosaurus:CVCL_AT68 SW480R 1 4035 -cellosaurus:CVCL_3799 SW527 1 4036 -cellosaurus:CVCL_F649 SW598 1 4037 -cellosaurus:CVCL_F653 SW608 1 4038 -cellosaurus:CVCL_F650 SW613 1 4039 -cellosaurus:CVCL_F651 SW732 1 4040 -cellosaurus:CVCL_F652 SW733 1 4041 -cellosaurus:CVCL_9475 TMC-1 1 4042 -cellosaurus:CVCL_W022 KMOE-1 0 4043 -cellosaurus:CVCL_W023 KMOE-3N 1 4044 -cellosaurus:CVCL_7166 CHP-100 0 4045 -cellosaurus:CVCL_IV94 CHP-100L 1 4046 -cellosaurus:CVCL_IV95 CHP-100S 1 4047 -cellosaurus:CVCL_1341 KP-N-YN 0 4048 -cellosaurus:CVCL_7913 KP-N-YN1s 1 4049 -cellosaurus:CVCL_7914 KP-N-YN2n 1 4050 -cellosaurus:CVCL_7915 KP-N-YN3s 1 4051 -cellosaurus:CVCL_1678 SBC-3 0 4052 -cellosaurus:CVCL_M841 SBC-3/ADM 1 4053 -cellosaurus:CVCL_UW53 SBC-3/ADM100 2 4054 -cellosaurus:CVCL_M842 SBC-3/CDDP 1 4055 -cellosaurus:CVCL_M843 SBC-3/DXCL1 1 4056 -cellosaurus:CVCL_W529 SBC-3/ETP 1 4057 -cellosaurus:CVCL_W535 SBC-3/SN-38 1 4058 -cellosaurus:CVCL_5759 H-MESO-1 0 4059 -cellosaurus:CVCL_5760 H-MESO-1A 1 4060 -cellosaurus:CVCL_W526 KUM.LK-2 0 4061 -cellosaurus:CVCL_VG93 HAL-24 1 4062 -cellosaurus:CVCL_VG96 HAL-24Luc 2 4063 -cellosaurus:CVCL_VG94 HAL-33 1 4064 -cellosaurus:CVCL_VG95 HAL-8 1 4065 -cellosaurus:CVCL_VG97 HAL-8Luc 2 4066 -cellosaurus:CVCL_3302 Farage 0 4067 -cellosaurus:CVCL_J602 Farage 10.6.1 1 4068 -cellosaurus:CVCL_L114 OCUB-1 0 4069 -cellosaurus:CVCL_3352 OCUB-F 1 4070 -cellosaurus:CVCL_1621 OCUB-M 1 4071 -cellosaurus:CVCL_B7GH CTCL-3 0 4072 -cellosaurus:CVCL_C3BX CR-M2 1 4073 -cellosaurus:CVCL_1705 SN12C 0 4074 -cellosaurus:CVCL_9549 SN12C-PM6 1 4075 -cellosaurus:CVCL_DG80 SN12C-PM6-2 2 4076 -cellosaurus:CVCL_D718 BT142 0 4077 -cellosaurus:CVCL_X501 BT142 mut/- 1 4078 -cellosaurus:CVCL_8002 TTC-1240 0 4079 -cellosaurus:CVCL_QW57 TTC-1240 BAF47 1 4080 -cellosaurus:CVCL_C0WL SNU-4210 0 4081 -cellosaurus:CVCL_C0WM SNU-4210 #11 1 4082 -cellosaurus:CVCL_C0WN SNU-4210 #5 1 4083 -cellosaurus:CVCL_2996 KMS-34 0 4084 -cellosaurus:CVCL_IQ85 KMS-34/Cfz 1 4085 -cellosaurus:CVCL_A5SA KMS-34-SCC1 1 4086 -cellosaurus:CVCL_A5SB KMS-34-SCC2 1 4087 -cellosaurus:CVCL_0318 HT-144 0 4088 -cellosaurus:CVCL_A1VJ HT-144 Dab-R 1 4089 -cellosaurus:CVCL_A1VK HT-144 Dab-R/Rox-R 1 4090 -cellosaurus:CVCL_A1VL HT-144 Dab-R/Tram-R 1 4091 -cellosaurus:CVCL_RB32 MLS 0 4092 -cellosaurus:CVCL_RB33 MLS/ADRR2 1 4093 -cellosaurus:CVCL_7910 KP-N-SI(LA) 0 4094 -cellosaurus:CVCL_7911 KP-N-SI4n 1 4095 -cellosaurus:CVCL_7912 KP-N-SI8s 1 4096 -cellosaurus:CVCL_1340 KP-N-SI9s 1 4097 -cellosaurus:CVCL_A747 YUSIT1 0 4098 -cellosaurus:CVCL_R736 YUSIT1-B11 1 4099 -cellosaurus:CVCL_R737 YUSIT1-B31 1 4100 -cellosaurus:CVCL_R738 YUSIT1-B5 1 4101 -cellosaurus:CVCL_6858 HMT-3909 0 4102 -cellosaurus:CVCL_6856 HMT-3909S1 1 4103 -cellosaurus:CVCL_6857 HMT-3909S8 1 4104 -cellosaurus:CVCL_UW65 HMT-3909S13 2 4105 -cellosaurus:CVCL_UW66 HMT-3909S13 clone A4 3 4106 -cellosaurus:CVCL_UW67 HMT-3909S13 clone G4 3 4107 -cellosaurus:CVCL_UW68 HMT-3909S16 3 4108 -cellosaurus:CVCL_D748 M229 0 4109 -cellosaurus:CVCL_EI76 M229 R1 1 4110 -cellosaurus:CVCL_EI77 M229 R10 1 4111 -cellosaurus:CVCL_EI78 M229 R11 1 4112 -cellosaurus:CVCL_EI79 M229 R12 1 4113 -cellosaurus:CVCL_EI80 M229 R13 1 4114 -cellosaurus:CVCL_EI81 M229 R14 1 4115 -cellosaurus:CVCL_EI82 M229 R15 1 4116 -cellosaurus:CVCL_EI83 M229 R2 1 4117 -cellosaurus:CVCL_EI84 M229 R3 1 4118 -cellosaurus:CVCL_EI85 M229 R4 1 4119 -cellosaurus:CVCL_EI86 M229 R5 1 4120 -cellosaurus:CVCL_EI87 M229 R6 1 4121 -cellosaurus:CVCL_EI88 M229 R7 1 4122 -cellosaurus:CVCL_EI89 M229 R8 1 4123 -cellosaurus:CVCL_EI90 M229 R9 1 4124 -cellosaurus:CVCL_IM72 M229DDRpoly-PLXAZD 1 4125 -cellosaurus:CVCL_IM73 M229R5-PLX 1 4126 -cellosaurus:CVCL_8714 HS-ES-2M 0 4127 -cellosaurus:CVCL_QW56 HS-ES-2M BAF47 1 4128 -cellosaurus:CVCL_9680 FM93 0 4129 -cellosaurus:CVCL_C617 FM93/2 1 4130 -cellosaurus:CVCL_J063 JR-1 0 4131 -cellosaurus:CVCL_A8SL JR1cmyc5 1 4132 -cellosaurus:CVCL_A8SI JR1neo20 1 4133 -cellosaurus:CVCL_A8SJ JR1Nmyc6 1 4134 -cellosaurus:CVCL_A8SK JR1Nmyc9 1 4135 -cellosaurus:CVCL_9T72 NAB 0 4136 -cellosaurus:CVCL_E219 NAB-2 1 4137 -cellosaurus:CVCL_7016 ACC-LC-35 0 4138 -cellosaurus:CVCL_Z024 ACC-LC-35D 1 4139 -cellosaurus:CVCL_D543 SO-Rb50 0 4140 -cellosaurus:CVCL_0U08 SO-Rb50/CBP 1 4141 -cellosaurus:CVCL_9V17 DFB 0 4142 -cellosaurus:CVCL_9V18 DFW 1 4143 -cellosaurus:CVCL_B398 ESKOL 0 4144 -cellosaurus:CVCL_W994 IREs-4 1 4145 -cellosaurus:CVCL_VN48 SO-4 0 4146 -cellosaurus:CVCL_A2CL RSO4 1 4147 -cellosaurus:CVCL_1049 647V 0 4148 -cellosaurus:CVCL_A666 RO-H85-1 1 4149 -cellosaurus:CVCL_6895 DiFi 0 4150 -cellosaurus:CVCL_EI68 DCR10 1 4151 -cellosaurus:CVCL_EI69 DCR7 1 4152 -cellosaurus:CVCL_EI70 DCR9 1 4153 -cellosaurus:CVCL_A2BW DiFi R1 Cetux 1 4154 -cellosaurus:CVCL_A2BX DiFi R2 Cetux 1 4155 -cellosaurus:CVCL_A011 FEMX-I 0 4156 -cellosaurus:CVCL_HA94 FEMX-I/SUPER733 1 4157 -cellosaurus:CVCL_HA93 FEMX-I/SUPERctr 1 4158 -cellosaurus:CVCL_HA92 FEMX-V 1 4159 -cellosaurus:CVCL_0001 HEL 0 4160 -cellosaurus:CVCL_KS72 CellSensor irf1-bla HEL 1 4161 -cellosaurus:CVCL_4360 Dami 1 4162 -cellosaurus:CVCL_2481 HEL 92.1.7 1 4163 -cellosaurus:CVCL_C0D1 HEL 92.1.7 SOD2 KO clone 13 2 4164 -cellosaurus:CVCL_C0D0 HEL 92.1.7 SOD2 KO clone 5 2 4165 -cellosaurus:CVCL_4Z61 HEL/TGR 2 4166 -cellosaurus:CVCL_A5ZL HEL-N1 1 4167 -cellosaurus:CVCL_A5ZM HEL-P1 1 4168 -cellosaurus:CVCL_RS48 HELrARA-C2mug/ML 1 4169 -cellosaurus:CVCL_H689 MIP-101 0 4170 -cellosaurus:CVCL_HE61 MIP/5FU 1 4171 -cellosaurus:CVCL_HE62 MIP/CIS 1 4172 -cellosaurus:CVCL_HE63 MIP/CPT 1 4173 -cellosaurus:CVCL_HE64 MIP/ETO 1 4174 -cellosaurus:CVCL_IZ35 NUOC-1 0 4175 -cellosaurus:CVCL_IZ36 NUOC-1-A1 1 4176 -cellosaurus:CVCL_IZ37 NUOC-1-A2 1 4177 -cellosaurus:CVCL_M522 UHKT-893 0 4178 -cellosaurus:CVCL_HX22 UHKT-893a 1 4179 -cellosaurus:CVCL_6898 Eca-109 0 4180 -cellosaurus:CVCL_6897 EC109/CDDP 1 4181 -cellosaurus:CVCL_T047 EC109/Taxol 1 4182 -cellosaurus:CVCL_0080 A-673 0 4183 -cellosaurus:CVCL_JM58 A-673 clone Asp114 1 4184 -cellosaurus:CVCL_0364 JHH-5 0 4185 -cellosaurus:CVCL_JF88 JHH-5-Luc 1 4186 -cellosaurus:CVCL_6986 MDA-886 0 4187 -cellosaurus:CVCL_6987 MDA-886Ln 1 4188 -cellosaurus:CVCL_5081 SNU-668 0 4189 -cellosaurus:CVCL_C1NC SNU-668 Ola-R 1 4190 -cellosaurus:CVCL_L049 SNU-668-5FU 1 4191 -cellosaurus:CVCL_L050 SNU-668-CIS 1 4192 -cellosaurus:CVCL_L051 SNU-668-DOX 1 4193 -cellosaurus:CVCL_5443 Kit225 0 4194 -cellosaurus:CVCL_5445 Kit225/K6 1 4195 -cellosaurus:CVCL_3116 OVISE 0 4196 -cellosaurus:CVCL_U211 OVISE-3 1 4197 -cellosaurus:CVCL_IK53 AGP01 0 4198 -cellosaurus:CVCL_UK16 AGP01 PIWIL1 KO 1 4199 -cellosaurus:CVCL_4897 PK-59 0 4200 -cellosaurus:CVCL_0B32 RPK-59 1 4201 -cellosaurus:CVCL_R731 MOSER 0 4202 -cellosaurus:CVCL_R732 MOSERSF 1 4203 -cellosaurus:CVCL_E051 SK-DHL2A 0 4204 -cellosaurus:CVCL_E052 SK-DHL2B 1 4205 -cellosaurus:CVCL_4632 888-mel 0 4206 -cellosaurus:CVCL_C612 888A2 mel 1 4207 -cellosaurus:CVCL_3020 MCAS 0 4208 -cellosaurus:CVCL_U210 MCAS-3 1 4209 -cellosaurus:CVCL_1609 NOMO-1 0 4210 -cellosaurus:CVCL_3077 NOMO-1/ADM 1 4211 -cellosaurus:CVCL_3078 NOMO-1s 1 4212 -cellosaurus:CVCL_0399 LoVo 0 4213 -cellosaurus:CVCL_5J42 LoVo-6-luc-1 1 4214 -cellosaurus:CVCL_5237 LoVo-92 1 4215 -cellosaurus:CVCL_6A75 Lovo-143X19 2 4216 -cellosaurus:CVCL_6A76 Lovo-143X3 2 4217 -cellosaurus:CVCL_5235 Lovo-175X2 2 4218 -cellosaurus:CVCL_5236 Lovo-273X17 2 4219 -cellosaurus:CVCL_5238 LoVo-li 2 4220 -cellosaurus:CVCL_4Y03 LoVo-Luc#2 1 4221 -cellosaurus:CVCL_V402 LoVo-MEK-R 1 4222 -cellosaurus:CVCL_6C49 LoVo/DR5 1 4223 -cellosaurus:CVCL_4V50 LoVo/irinotecan 1 4224 -cellosaurus:CVCL_4V75 LoVo/L-OHP 1 4225 -cellosaurus:CVCL_C3GL LoVo_6244R 1 4226 -cellosaurus:CVCL_8375 NCOL-1 1 4227 -cellosaurus:CVCL_3178 TCC-Pan2 0 4228 -cellosaurus:CVCL_A1II Pan2M 1 4229 -cellosaurus:CVCL_A1IJ Pan2MmLuc 2 4230 -cellosaurus:CVCL_GZ65 KM3 [Human myeloma] 0 4231 -cellosaurus:CVCL_GZ66 KM3/BTZ 1 4232 -cellosaurus:CVCL_GZ71 KM3/DDP 1 4233 -cellosaurus:CVCL_0530 SK-N-MC 0 4234 -cellosaurus:CVCL_1398 SK-N-MC-IXC 1 4235 -cellosaurus:CVCL_B0FD SK-N-MC-IXC/VCR 2 4236 -cellosaurus:CVCL_WY49 SKF5 1 4237 -cellosaurus:CVCL_WY50 SKF6 1 4238 -cellosaurus:CVCL_2787 JHH-4 0 4239 -cellosaurus:CVCL_D204 FLC-4 1 4240 -cellosaurus:CVCL_B6GU HCS-TG 0 4241 -cellosaurus:CVCL_B6GV HCS-TG C3 1 4242 -cellosaurus:CVCL_B6GW HCS-TG E2 1 4243 -cellosaurus:CVCL_9899 NBL-W 0 4244 -cellosaurus:CVCL_9900 NBL-W N 1 4245 -cellosaurus:CVCL_9901 NBL-W S 1 4246 -cellosaurus:CVCL_AS99 KLC 0 4247 -cellosaurus:CVCL_AT00 KLC-HSV2 1 4248 -cellosaurus:CVCL_VT19 Me59 0 4249 -cellosaurus:CVCL_VT21 Me59/4 1 4250 -cellosaurus:CVCL_VT22 Me59/7 1 4251 -cellosaurus:CVCL_DF81 CC-11 0 4252 -cellosaurus:CVCL_DF82 CC-11+ 1 4253 -cellosaurus:CVCL_DF83 CC-11- 1 4254 -cellosaurus:CVCL_2119 MOLM-13 0 4255 -cellosaurus:CVCL_D779 MOLM-13-RES 1 4256 -cellosaurus:CVCL_D780 MOLM-13-RES-AC 2 4257 -cellosaurus:CVCL_C0WJ MOLM-13/AZA 1 4258 -cellosaurus:CVCL_C0WK MOLM-13/DAC 1 4259 -cellosaurus:CVCL_WI20 MOLM/AZA-1 1 4260 -cellosaurus:CVCL_WI21 MOLM/DEC-5 1 4261 -cellosaurus:CVCL_RS50 MOLM13rARA-C2mug/ML 1 4262 -cellosaurus:CVCL_M605 105KC 0 4263 -cellosaurus:CVCL_M609 105AJ 1 4264 -cellosaurus:CVCL_M610 105AJ1.1 2 4265 -cellosaurus:CVCL_M611 105AJ3.1 2 4266 -cellosaurus:CVCL_M612 105AJ5.1 2 4267 -cellosaurus:CVCL_M608 KC2H3 1 4268 -cellosaurus:CVCL_9898 SK-N-BE(1) 0 4269 -cellosaurus:CVCL_A8RV SK-N-BE(1)n 1 4270 -cellosaurus:CVCL_A8RW SK-N-BE(1)s 1 4271 -cellosaurus:CVCL_7724 UM-SCC-17A 0 4272 -cellosaurus:CVCL_9T71 UM-SCC-17As 1 4273 -cellosaurus:CVCL_5531 INER-51 0 4274 -cellosaurus:CVCL_5622 INER-51/PSC-1 1 4275 -cellosaurus:CVCL_5623 INER-51/VP-1 1 4276 -cellosaurus:CVCL_3526 HuT 102 0 4277 -cellosaurus:CVCL_8329 HuT 102B 1 4278 -cellosaurus:CVCL_1776 TYK-nu 0 4279 -cellosaurus:CVCL_3221 TYK-nu.CP-r 1 4280 -cellosaurus:CVCL_8496 KMP-8 0 4281 -cellosaurus:CVCL_XD24 KMP8-Luc#8 1 4282 -cellosaurus:CVCL_0006 THP-1 0 4283 -cellosaurus:CVCL_5115 A-THP-1 1 4284 -cellosaurus:CVCL_B9W7 Abcam THP-1 AATF KO 1 4285 -cellosaurus:CVCL_B9W8 Abcam THP-1 ABCB1 KO 1 4286 -cellosaurus:CVCL_B9W9 Abcam THP-1 ABL1 KO 1 4287 -cellosaurus:CVCL_B9WA Abcam THP-1 ACVR1B KO 1 4288 -cellosaurus:CVCL_B9WB Abcam THP-1 ADGRG1 KO 1 4289 -cellosaurus:CVCL_B9WC Abcam THP-1 AGTR1 KO 1 4290 -cellosaurus:CVCL_B9WD Abcam THP-1 AHR KO 1 4291 -cellosaurus:CVCL_B9WE Abcam THP-1 AIM2 KO 1 4292 -cellosaurus:CVCL_B9WF Abcam THP-1 ALCAM KO 1 4293 -cellosaurus:CVCL_B9WG Abcam THP-1 ALKBH1 KO 1 4294 -cellosaurus:CVCL_B9WH Abcam THP-1 ALYREF KO 1 4295 -cellosaurus:CVCL_B1A1 Abcam THP-1 ANPEP KO 1 4296 -cellosaurus:CVCL_B9WI Abcam THP-1 APOBEC3B KO 1 4297 -cellosaurus:CVCL_B9WJ Abcam THP-1 ASAH1 KO 1 4298 -cellosaurus:CVCL_B9WK Abcam THP-1 ATF5 KO 1 4299 -cellosaurus:CVCL_B1A2 Abcam THP-1 ATG12 KO 1 4300 -cellosaurus:CVCL_B1A3 Abcam THP-1 ATG14 KO 1 4301 -cellosaurus:CVCL_B1A4 Abcam THP-1 ATG16L1 KO 1 4302 -cellosaurus:CVCL_B9WL Abcam THP-1 ATG3 KO 1 4303 -cellosaurus:CVCL_B1A5 Abcam THP-1 ATG5 KO 1 4304 -cellosaurus:CVCL_B1A6 Abcam THP-1 ATG7 KO 1 4305 -cellosaurus:CVCL_B9WM Abcam THP-1 ATG9A KO 1 4306 -cellosaurus:CVCL_B9WN Abcam THP-1 BAK1 KO 1 4307 -cellosaurus:CVCL_B1A7 Abcam THP-1 BCL2 KO 1 4308 -cellosaurus:CVCL_B9WP Abcam THP-1 BMPR2 KO 1 4309 -cellosaurus:CVCL_B9WQ Abcam THP-1 BRD1 KO 1 4310 -cellosaurus:CVCL_B9WR Abcam THP-1 BRD2 KO 1 4311 -cellosaurus:CVCL_B9WS Abcam THP-1 BRD9 KO 1 4312 -cellosaurus:CVCL_B9WT Abcam THP-1 BTG1 KO 1 4313 -cellosaurus:CVCL_B9WU Abcam THP-1 BTK KO 1 4314 -cellosaurus:CVCL_B9WV Abcam THP-1 BTRC KO 1 4315 -cellosaurus:CVCL_B9WW Abcam THP-1 C3 KO 1 4316 -cellosaurus:CVCL_B1A8 Abcam THP-1 CASP1 KO 1 4317 -cellosaurus:CVCL_B9WX Abcam THP-1 CASP3 KO 1 4318 -cellosaurus:CVCL_B1A9 Abcam THP-1 CASP9 KO 1 4319 -cellosaurus:CVCL_B1AA Abcam THP-1 CCL3 KO 1 4320 -cellosaurus:CVCL_B9WY Abcam THP-1 CCL4 KO 1 4321 -cellosaurus:CVCL_B9WZ Abcam THP-1 CCR2 KO 1 4322 -cellosaurus:CVCL_B9X0 Abcam THP-1 CCRL2 KO 1 4323 -cellosaurus:CVCL_B9X1 Abcam THP-1 CCL22 KO 1 4324 -cellosaurus:CVCL_B9X2 Abcam THP-1 CD36 KO 1 4325 -cellosaurus:CVCL_B9X3 Abcam THP-1 CD48 KO 1 4326 -cellosaurus:CVCL_B9X4 Abcam THP-1 CD58 KO 1 4327 -cellosaurus:CVCL_B9X5 Abcam THP-1 CD59 KO 1 4328 -cellosaurus:CVCL_B9X6 Abcam THP-1 CD81 KO 1 4329 -cellosaurus:CVCL_B1AB Abcam THP-1 CHI3L1 KO 1 4330 -cellosaurus:CVCL_B9X7 Abcam THP-1 CITED2 KO 1 4331 -cellosaurus:CVCL_B9X8 Abcam THP-1 CLU KO 1 4332 -cellosaurus:CVCL_B9X9 Abcam THP-1 CMKLR1 KO 1 4333 -cellosaurus:CVCL_B9XA Abcam THP-1 CMTM6 KO 1 4334 -cellosaurus:CVCL_B9XB Abcam THP-1 CNR2 KO 1 4335 -cellosaurus:CVCL_B9XC Abcam THP-1 CST3 KO 1 4336 -cellosaurus:CVCL_B9XD Abcam THP-1 CTSB KO 1 4337 -cellosaurus:CVCL_B9XE Abcam THP-1 CTSS KO 1 4338 -cellosaurus:CVCL_B9XF Abcam THP-1 CUL2 KO 1 4339 -cellosaurus:CVCL_B9XG Abcam THP-1 CUL3 KO 1 4340 -cellosaurus:CVCL_B9XH Abcam THP-1 CUL4B KO 1 4341 -cellosaurus:CVCL_B9XI Abcam THP-1 CX3CR1 KO 1 4342 -cellosaurus:CVCL_B1AC Abcam THP-1 CXCL10 KO 1 4343 -cellosaurus:CVCL_B1AD Abcam THP-1 CXCR2 KO 1 4344 -cellosaurus:CVCL_B9XJ Abcam THP-1 CXXC1 KO 1 4345 -cellosaurus:CVCL_B9XK Abcam THP-1 DCP2 KO 1 4346 -cellosaurus:CVCL_B9XL Abcam THP-1 DLL1 KO 1 4347 -cellosaurus:CVCL_B9XM Abcam THP-1 DVL3 KO 1 4348 -cellosaurus:CVCL_B9XN Abcam THP-1 EGLN1 KO 1 4349 -cellosaurus:CVCL_B9XP Abcam THP-1 EHMT2 KO 1 4350 -cellosaurus:CVCL_B9XQ Abcam THP-1 EIF2AK4 KO 1 4351 -cellosaurus:CVCL_B9XR Abcam THP-1 ENG KO 1 4352 -cellosaurus:CVCL_B9XS Abcam THP-1 EPHB4 KO 1 4353 -cellosaurus:CVCL_B9XT Abcam THP-1 ERAP1 KO 1 4354 -cellosaurus:CVCL_B9XU Abcam THP-1 ETS2 KO 1 4355 -cellosaurus:CVCL_B9XV Abcam THP-1 EXO1 KO 1 4356 -cellosaurus:CVCL_B9XW Abcam THP-1 FABP4 KO 1 4357 -cellosaurus:CVCL_B9XX Abcam THP-1 FCGR1A KO 1 4358 -cellosaurus:CVCL_B9XY Abcam THP-1 FGF23 KO 1 4359 -cellosaurus:CVCL_B9XZ Abcam THP-1 FKBP5 KO 1 4360 -cellosaurus:CVCL_B9Y0 Abcam THP-1 FOXO1 KO 1 4361 -cellosaurus:CVCL_B9Y1 Abcam THP-1 FOXO3 KO 1 4362 -cellosaurus:CVCL_B9Y2 Abcam THP-1 FST KO 1 4363 -cellosaurus:CVCL_B9Y3 Abcam THP-1 FTL KO 1 4364 -cellosaurus:CVCL_B9Y4 Abcam THP-1 FZD7 KO 1 4365 -cellosaurus:CVCL_B9Y5 Abcam THP-1 GAB1 KO 1 4366 -cellosaurus:CVCL_B9Y6 Abcam THP-1 GLB1 KO 1 4367 -cellosaurus:CVCL_B9Y7 Abcam THP-1 GPR132 KO 1 4368 -cellosaurus:CVCL_B9Y8 Abcam THP-1 GZMA KO 1 4369 -cellosaurus:CVCL_B9Y9 Abcam THP-1 HLA-B KO 1 4370 -cellosaurus:CVCL_B9YA Abcam THP-1 HNF1B KO 1 4371 -cellosaurus:CVCL_B9YB Abcam THP-1 HSPG2 KO 1 4372 -cellosaurus:CVCL_B9YC Abcam THP-1 ID2 KO 1 4373 -cellosaurus:CVCL_B9YD Abcam THP-1 IL17RB KO 1 4374 -cellosaurus:CVCL_B1AE Abcam THP-1 IL1B KO 1 4375 -cellosaurus:CVCL_B9YE Abcam THP-1 IRAK3 KO 1 4376 -cellosaurus:CVCL_B9YF Abcam THP-1 ITPR3 KO 1 4377 -cellosaurus:CVCL_B9YG Abcam THP-1 JAG1 KO 1 4378 -cellosaurus:CVCL_B9YH Abcam THP-1 JMJD6 KO 1 4379 -cellosaurus:CVCL_B9YI Abcam THP-1 KAT7 KO 1 4380 -cellosaurus:CVCL_B9YJ Abcam THP-1 KDM1B KO 1 4381 -cellosaurus:CVCL_B9YK Abcam THP-1 KDM6B KO 1 4382 -cellosaurus:CVCL_B9YL Abcam THP-1 KPNA2 KO 1 4383 -cellosaurus:CVCL_B9YM Abcam THP-1 LAIR1 KO 1 4384 -cellosaurus:CVCL_B9YN Abcam THP-1 LAMP2 KO 1 4385 -cellosaurus:CVCL_B1AF Abcam THP-1 LATS1 KO 1 4386 -cellosaurus:CVCL_B9YP Abcam THP-1 LDHA KO 1 4387 -cellosaurus:CVCL_B1AG Abcam THP-1 LGALS9 KO 1 4388 -cellosaurus:CVCL_B9YQ Abcam THP-1 LGR6 KO 1 4389 -cellosaurus:CVCL_B9YR Abcam THP-1 LMNB1 KO 1 4390 -cellosaurus:CVCL_B1AH Abcam THP-1 LYZ KO 1 4391 -cellosaurus:CVCL_B9YS Abcam THP-1 MACROH2A1 KO 1 4392 -cellosaurus:CVCL_B9YT Abcam THP-1 MAGEA3 KO 1 4393 -cellosaurus:CVCL_B9YU Abcam THP-1 MAP2K3 KO 1 4394 -cellosaurus:CVCL_B9YV Abcam THP-1 MAP3K3 KO 1 4395 -cellosaurus:CVCL_B9YW Abcam THP-1 MAPK7 KO 1 4396 -cellosaurus:CVCL_B9YX Abcam THP-1 MBD1 KO 1 4397 -cellosaurus:CVCL_B9YY Abcam THP-1 MBD3 KO 1 4398 -cellosaurus:CVCL_B9YZ Abcam THP-1 MME KO 1 4399 -cellosaurus:CVCL_B9Z0 Abcam THP-1 MMP13 KO 1 4400 -cellosaurus:CVCL_B9Z1 Abcam THP-1 MMP8 KO 1 4401 -cellosaurus:CVCL_B9Z2 Abcam THP-1 MTA3 KO 1 4402 -cellosaurus:CVCL_B9Z3 Abcam THP-1 NBR1 KO 1 4403 -cellosaurus:CVCL_B9Z4 Abcam THP-1 NCR3LG1 KO 1 4404 -cellosaurus:CVCL_B9Z5 Abcam THP-1 NFKB1 KO 1 4405 -cellosaurus:CVCL_B9Z6 Abcam THP-1 NLRC4 KO 1 4406 -cellosaurus:CVCL_B9Z7 Abcam THP-1 NLRP3 KO 1 4407 -cellosaurus:CVCL_B9Z8 Abcam THP-1 NOTCH3 KO 1 4408 -cellosaurus:CVCL_B9Z9 Abcam THP-1 NOTCH4 KO 1 4409 -cellosaurus:CVCL_B9ZA Abcam THP-1 NQO1 KO 1 4410 -cellosaurus:CVCL_B9ZB Abcam THP-1 NR1H4 KO 1 4411 -cellosaurus:CVCL_B9ZC Abcam THP-1 NR3C2 KO 1 4412 -cellosaurus:CVCL_B9ZD Abcam THP-1 PDCD1LG2 KO 1 4413 -cellosaurus:CVCL_B9ZE Abcam THP-1 PHF8 KO 1 4414 -cellosaurus:CVCL_B9ZF Abcam THP-1 PIK3CA KO 1 4415 -cellosaurus:CVCL_B9ZG Abcam THP-1 PIK3CD KO 1 4416 -cellosaurus:CVCL_B9ZH Abcam THP-1 PIK3R4 KO 1 4417 -cellosaurus:CVCL_B9ZI Abcam THP-1 PLA2G4A KO 1 4418 -cellosaurus:CVCL_B9ZJ Abcam THP-1 PLAU KO 1 4419 -cellosaurus:CVCL_B9ZK Abcam THP-1 PLCB3 KO 1 4420 -cellosaurus:CVCL_B9ZL Abcam THP-1 PLCG1 KO 1 4421 -cellosaurus:CVCL_B9ZM Abcam THP-1 PRMT7 KO 1 4422 -cellosaurus:CVCL_B9ZN Abcam THP-1 PSEN1 KO 1 4423 -cellosaurus:CVCL_B9ZP Abcam THP-1 PTGER4 KO 1 4424 -cellosaurus:CVCL_B9ZQ Abcam THP-1 PTGES2 KO 1 4425 -cellosaurus:CVCL_B9ZR Abcam THP-1 PTK2 KO 1 4426 -cellosaurus:CVCL_B9ZS Abcam THP-1 PTP4A3 KO 1 4427 -cellosaurus:CVCL_B9ZT Abcam THP-1 PTPN12 KO 1 4428 -cellosaurus:CVCL_B1AI Abcam THP-1 PTPN6 KO 1 4429 -cellosaurus:CVCL_B9ZU Abcam THP-1 PUS1 KO 1 4430 -cellosaurus:CVCL_B9ZV Abcam THP-1 RAC2 KO 1 4431 -cellosaurus:CVCL_B9ZW Abcam THP-1 RING1 KO 1 4432 -cellosaurus:CVCL_B1AJ Abcam THP-1 RIPK1 KO 1 4433 -cellosaurus:CVCL_B9ZX Abcam THP-1 ROCK2 KO 1 4434 -cellosaurus:CVCL_B9ZY Abcam THP-1 ROR2 KO 1 4435 -cellosaurus:CVCL_B9ZZ Abcam THP-1 RUNX2 KO 1 4436 -cellosaurus:CVCL_C0A0 Abcam THP-1 RYBP KO 1 4437 -cellosaurus:CVCL_C0A1 Abcam THP-1 S100A8 KO 1 4438 -cellosaurus:CVCL_C0A2 Abcam THP-1 SCARB1 KO 1 4439 -cellosaurus:CVCL_C0A3 Abcam THP-1 SDC4 KO 1 4440 -cellosaurus:CVCL_C0A4 Abcam THP-1 SETD2 KO 1 4441 -cellosaurus:CVCL_C0A5 Abcam THP-1 SLFN11 KO 1 4442 -cellosaurus:CVCL_C0A6 Abcam THP-1 SMARCAL1 KO 1 4443 -cellosaurus:CVCL_C0A7 Abcam THP-1 SMARCC2 KO 1 4444 -cellosaurus:CVCL_C0A8 Abcam THP-1 SMARCE1 KO 1 4445 -cellosaurus:CVCL_C0A9 Abcam THP-1 SMURF1 KO 1 4446 -cellosaurus:CVCL_C0AA Abcam THP-1 SMYD2 KO 1 4447 -cellosaurus:CVCL_C0AB Abcam THP-1 SMYD3 KO 1 4448 -cellosaurus:CVCL_C0AC Abcam THP-1 SOCS3 KO 1 4449 -cellosaurus:CVCL_C0AD Abcam THP-1 SRF KO 1 4450 -cellosaurus:CVCL_C0AE Abcam THP-1 SRPK1 KO 1 4451 -cellosaurus:CVCL_C0AF Abcam THP-1 STAT4 KO 1 4452 -cellosaurus:CVCL_C0AG Abcam THP-1 STAT5A KO 1 4453 -cellosaurus:CVCL_B1AK Abcam THP-1 STING1 KO 1 4454 -cellosaurus:CVCL_C0AH Abcam THP-1 STK4 KO 1 4455 -cellosaurus:CVCL_C0AI Abcam THP-1 SUV39H1 KO 1 4456 -cellosaurus:CVCL_C0AJ Abcam THP-1 SUZ12 KO 1 4457 -cellosaurus:CVCL_C0AK Abcam THP-1 TAPBP KO 1 4458 -cellosaurus:CVCL_C0AL Abcam THP-1 TBK1 KO 1 4459 -cellosaurus:CVCL_C0AM Abcam THP-1 TBP KO 1 4460 -cellosaurus:CVCL_C0AN Abcam THP-1 TCF7L2 KO 1 4461 -cellosaurus:CVCL_C0AP Abcam THP-1 TFDP1 KO 1 4462 -cellosaurus:CVCL_C0AQ Abcam THP-1 THBS1 KO 1 4463 -cellosaurus:CVCL_C0AR Abcam THP-1 TIMP3 KO 1 4464 -cellosaurus:CVCL_C0AS Abcam THP-1 TLN1 KO 1 4465 -cellosaurus:CVCL_B1AL Abcam THP-1 TNF KO 1 4466 -cellosaurus:CVCL_C0AT Abcam THP-1 TNFRSF10B KO 1 4467 -cellosaurus:CVCL_C0AU Abcam THP-1 TNFRSF1B KO 1 4468 -cellosaurus:CVCL_C0AV Abcam THP-1 TP73 KO 1 4469 -cellosaurus:CVCL_C0AW Abcam THP-1 TRADD KO 1 4470 -cellosaurus:CVCL_C0AX Abcam THP-1 TRAF2 KO 1 4471 -cellosaurus:CVCL_B1AM Abcam THP-1 TREM2 KO 1 4472 -cellosaurus:CVCL_C0AY Abcam THP-1 TRMT2A KO 1 4473 -cellosaurus:CVCL_C0AZ Abcam THP-1 TWIST1 KO 1 4474 -cellosaurus:CVCL_C0B0 Abcam THP-1 TWIST2 KO 1 4475 -cellosaurus:CVCL_B7TG Abcam THP-1 TYROBP KO 1 4476 -cellosaurus:CVCL_C0B1 Abcam THP-1 U2AF1 KO 1 4477 -cellosaurus:CVCL_C0B2 Abcam THP-1 UBA1 KO 1 4478 -cellosaurus:CVCL_C0B3 Abcam THP-1 UBE2D2 KO 1 4479 -cellosaurus:CVCL_C0B4 Abcam THP-1 UCHL5 KO 1 4480 -cellosaurus:CVCL_C0B5 Abcam THP-1 ULBP2 KO 1 4481 -cellosaurus:CVCL_C0B6 Abcam THP-1 ULBP3 KO 1 4482 -cellosaurus:CVCL_C0B7 Abcam THP-1 UVRAG KO 1 4483 -cellosaurus:CVCL_C0B8 Abcam THP-1 VAV1 KO 1 4484 -cellosaurus:CVCL_C0B9 Abcam THP-1 VCAN KO 1 4485 -cellosaurus:CVCL_C0BA Abcam THP-1 WDR77 KO 1 4486 -cellosaurus:CVCL_C0BB Abcam THP-1 WNT11 KO 1 4487 -cellosaurus:CVCL_C0BC Abcam THP-1 YTHDC2 KO 1 4488 -cellosaurus:CVCL_C0BD Abcam THP-1 YTHDF1 KO 1 4489 -cellosaurus:CVCL_C0BE Abcam THP-1 YTHDF3 KO 1 4490 -cellosaurus:CVCL_C0BF Abcam THP-1 YY1 KO 1 4491 -cellosaurus:CVCL_C0BG Abcam THP-1 ZEB2 KO 1 4492 -cellosaurus:CVCL_X687 BF24 1 4493 -cellosaurus:CVCL_KB46 CellSensor NFkB-bla THP-1 1 4494 -cellosaurus:CVCL_KS29 CellSensor SIE-bla THP-1 1 4495 -cellosaurus:CVCL_KS30 CellSensor TNFalpha-bla THP-1 1 4496 -cellosaurus:CVCL_KZ70 PathHunter THP-1 IkappaB Degradation 1 4497 -cellosaurus:CVCL_IR08 PSC-THP1 1 4498 -cellosaurus:CVCL_IR09 PSC-THP1-chondrocyte-like 2 4499 -cellosaurus:CVCL_W367 PSC-THP1-EP 2 4500 -cellosaurus:CVCL_W368 PSC-THP1-EP-FAST 3 4501 -cellosaurus:CVCL_A4CA THP-1 AP1-Luc2 1 4502 -cellosaurus:CVCL_A4CB THP-1 CRE-Luc2 1 4503 -cellosaurus:CVCL_A4CD THP-1 GAS-Luc2 1 4504 -cellosaurus:CVCL_A4CC THP-1 ISRE-Luc2 1 4505 -cellosaurus:CVCL_XZ65 THP-1 NF-kb luciferase reporter 1 4506 -cellosaurus:CVCL_A4CE THP-1 NF-kB-Luc2 1 4507 -cellosaurus:CVCL_DF52 THP-1 NucLight Red 1 4508 -cellosaurus:CVCL_C3EW THP-1 Safe Harbor Landing Pad 1 4509 -cellosaurus:CVCL_XI47 THP-1 TLR9 mCherry 1 4510 -cellosaurus:CVCL_0R25 THP-1(NCI) 1 4511 -cellosaurus:CVCL_0R26 THP-1(NCI)/DC-SIGN 2 4512 -cellosaurus:CVCL_C0YT THP-1-Cs5 1 4513 -cellosaurus:CVCL_C0YQ THP-1-R 1 4514 -cellosaurus:CVCL_WI26 THP-1/AR 1 4515 -cellosaurus:CVCL_4V22 THP-1/ara-C 1 4516 -cellosaurus:CVCL_0R21 THP-1/DC-SIGN 1 4517 -cellosaurus:CVCL_A1RT THP-1/E 1 4518 -cellosaurus:CVCL_XD94 THP-1/IL15 1 4519 -cellosaurus:CVCL_XD95 THP-1/IL21 1 4520 -cellosaurus:CVCL_3426 THP-1h 1 4521 -cellosaurus:CVCL_3427 THP-1l 1 4522 -cellosaurus:CVCL_C0QX THP1 GFP-PEAK3 1 4523 -cellosaurus:CVCL_C0QY THP1 ST-PEAK3 1 4524 -cellosaurus:CVCL_A8AT THP1-ASC-GFP 1 4525 -cellosaurus:CVCL_X588 THP1-Blue ISG 1 4526 -cellosaurus:CVCL_X589 THP1-Blue ISG-KD-STING 1 4527 -cellosaurus:CVCL_X585 THP1-Blue NF-kappaB 1 4528 -cellosaurus:CVCL_A8CC THP1-Blue KI-IP10 2 4529 -cellosaurus:CVCL_X599 THP1-Dual 1 4530 -cellosaurus:CVCL_A8AI THP1-Dual KO-cGAS 2 4531 -cellosaurus:CVCL_A8AU THP1-Dual KO-IFI16 2 4532 -cellosaurus:CVCL_A8AL THP1-Dual KO-IFNAR2 2 4533 -cellosaurus:CVCL_A8AZ THP1-Dual KO-IKKepsilon 2 4534 -cellosaurus:CVCL_A8AV THP1-Dual KO-IRF3 2 4535 -cellosaurus:CVCL_A8BA THP1-Dual KO-MAVS 2 4536 -cellosaurus:CVCL_A8BB THP1-Dual KO-MDA5 2 4537 -cellosaurus:CVCL_5J54 THP1-Dual KO-MyD 2 4538 -cellosaurus:CVCL_A8BC THP1-Dual KO-RIG-I 2 4539 -cellosaurus:CVCL_A8AH THP1-Dual KO-STING 2 4540 -cellosaurus:CVCL_A8BF THP1-Dual KI-hSTING-A162 3 4541 -cellosaurus:CVCL_A8BG THP1-Dual KI-hSTING-H232 3 4542 -cellosaurus:CVCL_A8BH THP1-Dual KI-hSTING-M155 3 4543 -cellosaurus:CVCL_A8BI THP1-Dual KI-hSTING-R232 3 4544 -cellosaurus:CVCL_A8BJ THP1-Dual KI-hSTING-S154 3 4545 -cellosaurus:CVCL_A8BD THP1-Dual KI-mSTING 3 4546 -cellosaurus:CVCL_A8AY THP1-Dual KO-TBK1 2 4547 -cellosaurus:CVCL_A8AW THP1-Dual KO-TLR2 2 4548 -cellosaurus:CVCL_A8AX THP1-Dual KO-TLR4 2 4549 -cellosaurus:CVCL_A8BW THP1-Dual KO-TLR8 2 4550 -cellosaurus:CVCL_A8AJ THP1-Dual KO-TREX1 2 4551 -cellosaurus:CVCL_A8AM THP1-Dual KO-TRIF 2 4552 -cellosaurus:CVCL_A8BE THP1-HMGB1-Lucia 1 4553 -cellosaurus:CVCL_X587 THP1-Lucia ISG 1 4554 -cellosaurus:CVCL_X590 THP1-Lucia NF-kappaB 1 4555 -cellosaurus:CVCL_5I77 THP1-NLRC4 1 4556 -cellosaurus:CVCL_X601 THP1-Null 1 4557 -cellosaurus:CVCL_X598 THP1-defASC 2 4558 -cellosaurus:CVCL_5I76 THP1-defCASP1 2 4559 -cellosaurus:CVCL_X600 THP1-defNLRP3 2 4560 -cellosaurus:CVCL_A8BZ THP1-Difluo hLC3 2 4561 -cellosaurus:CVCL_A8AK THP1-Null2 1 4562 -cellosaurus:CVCL_A8AN THP1-KO-ASC 2 4563 -cellosaurus:CVCL_A8AP THP1-KO-CASP4 2 4564 -cellosaurus:CVCL_A8AQ THP1-KO-GSDMD 2 4565 -cellosaurus:CVCL_A8AR THP1-KO-NLRC4 2 4566 -cellosaurus:CVCL_A8AS THP1-KO-NLRP3 2 4567 -cellosaurus:CVCL_X582 THP1-Xblue 1 4568 -cellosaurus:CVCL_X583 THP1-Xblue-CD14 2 4569 -cellosaurus:CVCL_X586 THP1-XBlue-defMyD 2 4570 -cellosaurus:CVCL_X584 THP1-Xblue-MD2-CD14 2 4571 -cellosaurus:CVCL_A0HA THP18 1 4572 -cellosaurus:CVCL_A0HB THP18-deltaA3A 2 4573 -cellosaurus:CVCL_A0HC THP18-deltaA3A/B 2 4574 -cellosaurus:CVCL_M498 B104 [Human lymphoma] 0 4575 -cellosaurus:CVCL_2863 B104-R3 1 4576 -cellosaurus:CVCL_8050 397-mel 0 4577 -cellosaurus:CVCL_A1DW 397-mel/A31 1 4578 -cellosaurus:CVCL_1610 NOS-1 [Human osteosarcoma] 0 4579 -cellosaurus:CVCL_T745 NOS-1.C8 1 4580 -cellosaurus:CVCL_0013 MOLT-4 0 4581 -cellosaurus:CVCL_A6KJ A4H12 1 4582 -cellosaurus:CVCL_M771 M311 [Human leukemia] 1 4583 -cellosaurus:CVCL_F827 MOLT-4 clone 8 1 4584 -cellosaurus:CVCL_WU92 MOLT-4.CCR5 2 4585 -cellosaurus:CVCL_S545 MOLT-4/CCR5 2 4586 -cellosaurus:CVCL_0C87 MOCHA 3 4587 -cellosaurus:CVCL_5J16 MOLT-4-luc2 1 4588 -cellosaurus:CVCL_4Y72 MOLT-4/ADR 1 4589 -cellosaurus:CVCL_2792 MOLT-4F 1 4590 -cellosaurus:CVCL_F830 MOLT-4V 1 4591 -cellosaurus:CVCL_A1BB MOLT4/P 1 4592 -cellosaurus:CVCL_2657 NH17 1 4593 -cellosaurus:CVCL_S551 GBM-18 0 4594 -cellosaurus:CVCL_S552 GBM-18-A3 1 4595 -cellosaurus:CVCL_S553 GBM-18-B3 1 4596 -cellosaurus:CVCL_8693 HOC119 0 4597 -cellosaurus:CVCL_A1KH HOC119PF 1 4598 -cellosaurus:CVCL_A660 NG97 0 4599 -cellosaurus:CVCL_A661 NG97ht 1 4600 -cellosaurus:CVCL_VV18 MSR3-mel 0 4601 -cellosaurus:CVCL_VV14 MSR3-A1 1 4602 -cellosaurus:CVCL_VV15 MSR3-B37 1 4603 -cellosaurus:CVCL_VV16 MSR3-B52 1 4604 -cellosaurus:CVCL_VN26 Li-23 0 4605 -cellosaurus:CVCL_VN28 ORL11 1 4606 -cellosaurus:CVCL_VN29 ORL8 1 4607 -cellosaurus:CVCL_G297 UACC-1273 0 4608 -cellosaurus:CVCL_A8JY UACC-1273-4-3 1 4609 -cellosaurus:CVCL_A8JZ UACC-1273-4-7 1 4610 -cellosaurus:CVCL_4039 UACC-1273EV 1 4611 -cellosaurus:CVCL_4744 LAPC-4 0 4612 -cellosaurus:CVCL_4745 LAPC-4*2 1 4613 -cellosaurus:CVCL_RA56 LAPC-4-EnzR 1 4614 -cellosaurus:CVCL_A0BW LAPC4-CR 1 4615 -cellosaurus:CVCL_C0RQ LAPC4-PDR1 1 4616 -cellosaurus:CVCL_WZ26 LAPC4-SL 1 4617 -cellosaurus:CVCL_0031 MCF-7 0 4618 -cellosaurus:CVCL_B8S1 Abcam MCF-7 ABCC1 KO 1 4619 -cellosaurus:CVCL_B8S2 Abcam MCF-7 ABL2 KO 1 4620 -cellosaurus:CVCL_B8S3 Abcam MCF-7 ACKR3 KO 1 4621 -cellosaurus:CVCL_B8S4 Abcam MCF-7 ACTA2 KO 1 4622 -cellosaurus:CVCL_B8S5 Abcam MCF-7 ACVR1B KO 1 4623 -cellosaurus:CVCL_B8S6 Abcam MCF-7 ADAM10 KO 1 4624 -cellosaurus:CVCL_B8S7 Abcam MCF-7 ADRB2 KO 1 4625 -cellosaurus:CVCL_B8S8 Abcam MCF-7 AGO2 KO 1 4626 -cellosaurus:CVCL_B8S9 Abcam MCF-7 AKT1 KO 1 4627 -cellosaurus:CVCL_B8SA Abcam MCF-7 AKT2 KO 1 4628 -cellosaurus:CVCL_B8SB Abcam MCF-7 AKT3 KO 1 4629 -cellosaurus:CVCL_B8SC Abcam MCF-7 ALKBH5 KO 1 4630 -cellosaurus:CVCL_B8SD Abcam MCF-7 ANGPT1 KO 1 4631 -cellosaurus:CVCL_B8SE Abcam MCF-7 ANGPT2 KO 1 4632 -cellosaurus:CVCL_B8SF Abcam MCF-7 ANXA1 KO 1 4633 -cellosaurus:CVCL_B8SG Abcam MCF-7 AQP4 KO 1 4634 -cellosaurus:CVCL_B8SH Abcam MCF-7 AR KO 1 4635 -cellosaurus:CVCL_B8SI Abcam MCF-7 ARAF KO 1 4636 -cellosaurus:CVCL_B8SJ Abcam MCF-7 ARID1A KO 1 4637 -cellosaurus:CVCL_B8SK Abcam MCF-7 ARID1B KO 1 4638 -cellosaurus:CVCL_B8SL Abcam MCF-7 ARNT KO 1 4639 -cellosaurus:CVCL_B0ZT Abcam MCF-7 ATAD2 KO 1 4640 -cellosaurus:CVCL_B8SM Abcam MCF-7 ATF2 KO 1 4641 -cellosaurus:CVCL_B0ZU Abcam MCF-7 ATM KO 1 4642 -cellosaurus:CVCL_B8SN Abcam MCF-7 ATRX KO 1 4643 -cellosaurus:CVCL_B8SP Abcam MCF-7 AXIN1 KO 1 4644 -cellosaurus:CVCL_B8SQ Abcam MCF-7 B2M KO 1 4645 -cellosaurus:CVCL_B8SR Abcam MCF-7 BARD1 KO 1 4646 -cellosaurus:CVCL_B8SS Abcam MCF-7 BAX KO 1 4647 -cellosaurus:CVCL_B8ST Abcam MCF-7 BCL10 KO 1 4648 -cellosaurus:CVCL_B8SU Abcam MCF-7 BCL11A KO 1 4649 -cellosaurus:CVCL_B8SV Abcam MCF-7 BCL11B KO 1 4650 -cellosaurus:CVCL_B8SW Abcam MCF-7 BCL2 KO 1 4651 -cellosaurus:CVCL_B8SX Abcam MCF-7 BCL3 KO 1 4652 -cellosaurus:CVCL_B8SY Abcam MCF-7 BCL6 KO 1 4653 -cellosaurus:CVCL_B8SZ Abcam MCF-7 BLM KO 1 4654 -cellosaurus:CVCL_B0ZV Abcam MCF-7 BMI1 KO 1 4655 -cellosaurus:CVCL_B8T0 Abcam MCF-7 BMPR1A KO 1 4656 -cellosaurus:CVCL_B8T1 Abcam MCF-7 BRAF KO 1 4657 -cellosaurus:CVCL_B8T2 Abcam MCF-7 BRCA1 KO 1 4658 -cellosaurus:CVCL_B8T3 Abcam MCF-7 BRCA2 KO 1 4659 -cellosaurus:CVCL_B8T4 Abcam MCF-7 BRD3 KO 1 4660 -cellosaurus:CVCL_B0ZW Abcam MCF-7 BRD4 KO 1 4661 -cellosaurus:CVCL_B8T5 Abcam MCF-7 BRD7 KO 1 4662 -cellosaurus:CVCL_B8T6 Abcam MCF-7 BRIP1 KO 1 4663 -cellosaurus:CVCL_B8T7 Abcam MCF-7 CA9 KO 1 4664 -cellosaurus:CVCL_B8T8 Abcam MCF-7 CALR KO 1 4665 -cellosaurus:CVCL_B8T9 Abcam MCF-7 CARD11 KO 1 4666 -cellosaurus:CVCL_B8TA Abcam MCF-7 CARM1 KO 1 4667 -cellosaurus:CVCL_B8TB Abcam MCF-7 CASP8 KO 1 4668 -cellosaurus:CVCL_B8TC Abcam MCF-7 CBL KO 1 4669 -cellosaurus:CVCL_B8TD Abcam MCF-7 CBLB KO 1 4670 -cellosaurus:CVCL_B8TE Abcam MCF-7 CCND2 KO 1 4671 -cellosaurus:CVCL_B8TF Abcam MCF-7 CCNE1 KO 1 4672 -cellosaurus:CVCL_B8TG Abcam MCF-7 CCR4 KO 1 4673 -cellosaurus:CVCL_B8TH Abcam MCF-7 CCR6 KO 1 4674 -cellosaurus:CVCL_B8TI Abcam MCF-7 CCR7 KO 1 4675 -cellosaurus:CVCL_B8TJ Abcam MCF-7 CD14 KO 1 4676 -cellosaurus:CVCL_B8TK Abcam MCF-7 CD19 KO 1 4677 -cellosaurus:CVCL_B8TL Abcam MCF-7 CD209 KO 1 4678 -cellosaurus:CVCL_B8TM Abcam MCF-7 CD28 KO 1 4679 -cellosaurus:CVCL_B8TN Abcam MCF-7 CD3E KO 1 4680 -cellosaurus:CVCL_B8TP Abcam MCF-7 CD4 KO 1 4681 -cellosaurus:CVCL_B8TQ Abcam MCF-7 CD74 KO 1 4682 -cellosaurus:CVCL_B8TR Abcam MCF-7 CD79A KO 1 4683 -cellosaurus:CVCL_B8TS Abcam MCF-7 CD80 KO 1 4684 -cellosaurus:CVCL_B8TT Abcam MCF-7 CD86 KO 1 4685 -cellosaurus:CVCL_B8TU Abcam MCF-7 CDH11 KO 1 4686 -cellosaurus:CVCL_B8TV Abcam MCF-7 CDK2 KO 1 4687 -cellosaurus:CVCL_B8TW Abcam MCF-7 CDK5 KO 1 4688 -cellosaurus:CVCL_B8TX Abcam MCF-7 CDK6 KO 1 4689 -cellosaurus:CVCL_B8TY Abcam MCF-7 CDK8 KO 1 4690 -cellosaurus:CVCL_B8TZ Abcam MCF-7 CDKN1A KO 1 4691 -cellosaurus:CVCL_B8U0 Abcam MCF-7 CDKN1B KO 1 4692 -cellosaurus:CVCL_B8U1 Abcam MCF-7 CDX2 KO 1 4693 -cellosaurus:CVCL_B8U2 Abcam MCF-7 CEACAM5 KO 1 4694 -cellosaurus:CVCL_B8U3 Abcam MCF-7 CEBPA KO 1 4695 -cellosaurus:CVCL_B8U4 Abcam MCF-7 CHD5 KO 1 4696 -cellosaurus:CVCL_B8U5 Abcam MCF-7 CHD9 KO 1 4697 -cellosaurus:CVCL_B8U6 Abcam MCF-7 CHUK KO 1 4698 -cellosaurus:CVCL_B8U7 Abcam MCF-7 CLOCK KO 1 4699 -cellosaurus:CVCL_B8U8 Abcam MCF-7 CNTNAP2 KO 1 4700 -cellosaurus:CVCL_B8U9 Abcam MCF-7 COL1A1 KO 1 4701 -cellosaurus:CVCL_B8UA Abcam MCF-7 CREB1 KO 1 4702 -cellosaurus:CVCL_B8UB Abcam MCF-7 CREBBP KO 1 4703 -cellosaurus:CVCL_B8UC Abcam MCF-7 CRLF2 KO 1 4704 -cellosaurus:CVCL_B8UD Abcam MCF-7 CSF1R KO 1 4705 -cellosaurus:CVCL_B8UE Abcam MCF-7 CSF3R KO 1 4706 -cellosaurus:CVCL_B8UF Abcam MCF-7 CTLA4 KO 1 4707 -cellosaurus:CVCL_B8UG Abcam MCF-7 CTNNB1 KO 1 4708 -cellosaurus:CVCL_B8UH Abcam MCF-7 CXCR1 KO 1 4709 -cellosaurus:CVCL_B8UI Abcam MCF-7 CXCR4 KO 1 4710 -cellosaurus:CVCL_B8UJ Abcam MCF-7 CYBB KO 1 4711 -cellosaurus:CVCL_B8UK Abcam MCF-7 CYLD KO 1 4712 -cellosaurus:CVCL_B8UL Abcam MCF-7 DAXX KO 1 4713 -cellosaurus:CVCL_B8UM Abcam MCF-7 DCC KO 1 4714 -cellosaurus:CVCL_B8UN Abcam MCF-7 DDB2 KO 1 4715 -cellosaurus:CVCL_B8UP Abcam MCF-7 DDR1 KO 1 4716 -cellosaurus:CVCL_B8UQ Abcam MCF-7 DDR2 KO 1 4717 -cellosaurus:CVCL_B8UR Abcam MCF-7 DDX5 KO 1 4718 -cellosaurus:CVCL_B8US Abcam MCF-7 DEPTOR KO 1 4719 -cellosaurus:CVCL_B8UT Abcam MCF-7 DGCR8 KO 1 4720 -cellosaurus:CVCL_B8UU Abcam MCF-7 DMC1 KO 1 4721 -cellosaurus:CVCL_B8UV Abcam MCF-7 DNAJB1 KO 1 4722 -cellosaurus:CVCL_B8UW Abcam MCF-7 DNMT1 KO 1 4723 -cellosaurus:CVCL_B8UX Abcam MCF-7 DNMT3B KO 1 4724 -cellosaurus:CVCL_B8UY Abcam MCF-7 DOT1L KO 1 4725 -cellosaurus:CVCL_B8UZ Abcam MCF-7 DROSHA KO 1 4726 -cellosaurus:CVCL_B8V0 Abcam MCF-7 DUSP4 KO 1 4727 -cellosaurus:CVCL_B8V1 Abcam MCF-7 E2F1 KO 1 4728 -cellosaurus:CVCL_B8V2 Abcam MCF-7 EBF1 KO 1 4729 -cellosaurus:CVCL_B8V3 Abcam MCF-7 EBI3 KO 1 4730 -cellosaurus:CVCL_B8V4 Abcam MCF-7 EGF KO 1 4731 -cellosaurus:CVCL_B8V5 Abcam MCF-7 EGFR KO 1 4732 -cellosaurus:CVCL_B8V6 Abcam MCF-7 EHMT1 KO 1 4733 -cellosaurus:CVCL_B8V7 Abcam MCF-7 EP300 KO 1 4734 -cellosaurus:CVCL_B8V8 Abcam MCF-7 EPC1 KO 1 4735 -cellosaurus:CVCL_B8V9 Abcam MCF-7 EPHA3 KO 1 4736 -cellosaurus:CVCL_B8VA Abcam MCF-7 EPHB2 KO 1 4737 -cellosaurus:CVCL_B8VB Abcam MCF-7 ERBB2 KO 1 4738 -cellosaurus:CVCL_B8VC Abcam MCF-7 ERBB3 KO 1 4739 -cellosaurus:CVCL_B8VD Abcam MCF-7 ERBB4 KO 1 4740 -cellosaurus:CVCL_B8VE Abcam MCF-7 ERCC4 KO 1 4741 -cellosaurus:CVCL_B8VF Abcam MCF-7 ERCC5 KO 1 4742 -cellosaurus:CVCL_B8VG Abcam MCF-7 ESR1 KO 1 4743 -cellosaurus:CVCL_B8VH Abcam MCF-7 ETS1 KO 1 4744 -cellosaurus:CVCL_B8VI Abcam MCF-7 ETV6 KO 1 4745 -cellosaurus:CVCL_B8VJ Abcam MCF-7 EZH1 KO 1 4746 -cellosaurus:CVCL_B8VK Abcam MCF-7 FANCA KO 1 4747 -cellosaurus:CVCL_B8VL Abcam MCF-7 FANCD2 KO 1 4748 -cellosaurus:CVCL_B8VM Abcam MCF-7 FAS KO 1 4749 -cellosaurus:CVCL_B8VN Abcam MCF-7 FBXO38 KO 1 4750 -cellosaurus:CVCL_B8VP Abcam MCF-7 FCER2 KO 1 4751 -cellosaurus:CVCL_B8VQ Abcam MCF-7 FCGR2A KO 1 4752 -cellosaurus:CVCL_B8VR Abcam MCF-7 FCGR2B KO 1 4753 -cellosaurus:CVCL_B8VS Abcam MCF-7 FCGR3A KO 1 4754 -cellosaurus:CVCL_B8VT Abcam MCF-7 FEN1 KO 1 4755 -cellosaurus:CVCL_B8VU Abcam MCF-7 FGFR2 KO 1 4756 -cellosaurus:CVCL_B8VV Abcam MCF-7 FGFR4 KO 1 4757 -cellosaurus:CVCL_B8VW Abcam MCF-7 FLI1 KO 1 4758 -cellosaurus:CVCL_B8VX Abcam MCF-7 FLT1 KO 1 4759 -cellosaurus:CVCL_B8VY Abcam MCF-7 FLT4 KO 1 4760 -cellosaurus:CVCL_B8VZ Abcam MCF-7 FN1 KO 1 4761 -cellosaurus:CVCL_B8W0 Abcam MCF-7 FOS KO 1 4762 -cellosaurus:CVCL_B8W1 Abcam MCF-7 FOSL1 KO 1 4763 -cellosaurus:CVCL_B8W2 Abcam MCF-7 FOXM1 KO 1 4764 -cellosaurus:CVCL_B8W3 Abcam MCF-7 FOXO4 KO 1 4765 -cellosaurus:CVCL_B8W4 Abcam MCF-7 FOXP1 KO 1 4766 -cellosaurus:CVCL_B8W5 Abcam MCF-7 FTO KO 1 4767 -cellosaurus:CVCL_B8W6 Abcam MCF-7 GABRA1 KO 1 4768 -cellosaurus:CVCL_B8W7 Abcam MCF-7 GABRG2 KO 1 4769 -cellosaurus:CVCL_B8W8 Abcam MCF-7 GATA1 KO 1 4770 -cellosaurus:CVCL_B8W9 Abcam MCF-7 GATA2 KO 1 4771 -cellosaurus:CVCL_B8WA Abcam MCF-7 GLI1 KO 1 4772 -cellosaurus:CVCL_B8WB Abcam MCF-7 GLI2 KO 1 4773 -cellosaurus:CVCL_B8WC Abcam MCF-7 GLS KO 1 4774 -cellosaurus:CVCL_B8WD Abcam MCF-7 GP1BA KO 1 4775 -cellosaurus:CVCL_B8WE Abcam MCF-7 GPNMB KO 1 4776 -cellosaurus:CVCL_B8WF Abcam MCF-7 GSK3B KO 1 4777 -cellosaurus:CVCL_B8WG Abcam MCF-7 GSR KO 1 4778 -cellosaurus:CVCL_B8WH Abcam MCF-7 HAT1 KO 1 4779 -cellosaurus:CVCL_B8WI Abcam MCF-7 HCN1 KO 1 4780 -cellosaurus:CVCL_B8WJ Abcam MCF-7 HDAC1 KO 1 4781 -cellosaurus:CVCL_B8WK Abcam MCF-7 HDAC2 KO 1 4782 -cellosaurus:CVCL_B8WL Abcam MCF-7 HDAC4 KO 1 4783 -cellosaurus:CVCL_B8WM Abcam MCF-7 HDAC5 KO 1 4784 -cellosaurus:CVCL_B8WN Abcam MCF-7 HDAC6 KO 1 4785 -cellosaurus:CVCL_B8WP Abcam MCF-7 HDAC7 KO 1 4786 -cellosaurus:CVCL_B8WQ Abcam MCF-7 HELQ KO 1 4787 -cellosaurus:CVCL_B0ZX Abcam MCF-7 HES1 KO 1 4788 -cellosaurus:CVCL_B8WR Abcam MCF-7 HEY1 KO 1 4789 -cellosaurus:CVCL_B8WS Abcam MCF-7 HGF KO 1 4790 -cellosaurus:CVCL_B8WT Abcam MCF-7 HLA-A KO 1 4791 -cellosaurus:CVCL_B8WU Abcam MCF-7 HLA-DRA KO 1 4792 -cellosaurus:CVCL_B8WV Abcam MCF-7 HMGA2 KO 1 4793 -cellosaurus:CVCL_B8WW Abcam MCF-7 HNF1A KO 1 4794 -cellosaurus:CVCL_B8WX Abcam MCF-7 HOXA9 KO 1 4795 -cellosaurus:CVCL_B8WY Abcam MCF-7 HRAS KO 1 4796 -cellosaurus:CVCL_B8WZ Abcam MCF-7 ICOS KO 1 4797 -cellosaurus:CVCL_B8X0 Abcam MCF-7 IDH1 KO 1 4798 -cellosaurus:CVCL_B8X1 Abcam MCF-7 IDH2 KO 1 4799 -cellosaurus:CVCL_B8X2 Abcam MCF-7 IFNB1 KO 1 4800 -cellosaurus:CVCL_B8X3 Abcam MCF-7 IFNGR1 KO 1 4801 -cellosaurus:CVCL_B8X4 Abcam MCF-7 IFNGR2 KO 1 4802 -cellosaurus:CVCL_B8X5 Abcam MCF-7 IGF1 KO 1 4803 -cellosaurus:CVCL_B8X6 Abcam MCF-7 IGF1R KO 1 4804 -cellosaurus:CVCL_B8X7 Abcam MCF-7 IGF2BP2 KO 1 4805 -cellosaurus:CVCL_B8X8 Abcam MCF-7 IL12A KO 1 4806 -cellosaurus:CVCL_B8X9 Abcam MCF-7 IL18 KO 1 4807 -cellosaurus:CVCL_B8XA Abcam MCF-7 IL1A KO 1 4808 -cellosaurus:CVCL_B8XB Abcam MCF-7 IL1B KO 1 4809 -cellosaurus:CVCL_B8XC Abcam MCF-7 IL27 KO 1 4810 -cellosaurus:CVCL_B8XD Abcam MCF-7 IL2RB KO 1 4811 -cellosaurus:CVCL_B8XE Abcam MCF-7 IL3RA KO 1 4812 -cellosaurus:CVCL_B8XF Abcam MCF-7 IL6R KO 1 4813 -cellosaurus:CVCL_B8XG Abcam MCF-7 IL7R KO 1 4814 -cellosaurus:CVCL_B8XH Abcam MCF-7 INPP5D KO 1 4815 -cellosaurus:CVCL_B8XI Abcam MCF-7 IRAK4 KO 1 4816 -cellosaurus:CVCL_B8XJ Abcam MCF-7 IRF4 KO 1 4817 -cellosaurus:CVCL_B8XK Abcam MCF-7 ITGA2 KO 1 4818 -cellosaurus:CVCL_B8XL Abcam MCF-7 ITGAE KO 1 4819 -cellosaurus:CVCL_B8XM Abcam MCF-7 ITGAL KO 1 4820 -cellosaurus:CVCL_B8XN Abcam MCF-7 ITGAM KO 1 4821 -cellosaurus:CVCL_B8XP Abcam MCF-7 ITGAV KO 1 4822 -cellosaurus:CVCL_B8XQ Abcam MCF-7 ITGAX KO 1 4823 -cellosaurus:CVCL_B8XR Abcam MCF-7 ITGB1 KO 1 4824 -cellosaurus:CVCL_B8XS Abcam MCF-7 ITK KO 1 4825 -cellosaurus:CVCL_B8XT Abcam MCF-7 ITPR1 KO 1 4826 -cellosaurus:CVCL_B8XU Abcam MCF-7 JAK1 KO 1 4827 -cellosaurus:CVCL_B8XV Abcam MCF-7 JAK3 KO 1 4828 -cellosaurus:CVCL_B8XW Abcam MCF-7 KAT2B KO 1 4829 -cellosaurus:CVCL_B8XX Abcam MCF-7 KDM1A KO 1 4830 -cellosaurus:CVCL_B8XY Abcam MCF-7 KDM3A KO 1 4831 -cellosaurus:CVCL_B8XZ Abcam MCF-7 KDM5A KO 1 4832 -cellosaurus:CVCL_B8Y0 Abcam MCF-7 KDM5B KO 1 4833 -cellosaurus:CVCL_B8Y1 Abcam MCF-7 KDM6A KO 1 4834 -cellosaurus:CVCL_B8Y2 Abcam MCF-7 KDR KO 1 4835 -cellosaurus:CVCL_B8Y3 Abcam MCF-7 KEAP1 KO 1 4836 -cellosaurus:CVCL_B8Y4 Abcam MCF-7 KIT KO 1 4837 -cellosaurus:CVCL_B8Y5 Abcam MCF-7 KLF4 KO 1 4838 -cellosaurus:CVCL_B8Y6 Abcam MCF-7 KMT2A KO 1 4839 -cellosaurus:CVCL_B8Y7 Abcam MCF-7 KMT2D KO 1 4840 -cellosaurus:CVCL_B8Y8 Abcam MCF-7 LATS1 KO 1 4841 -cellosaurus:CVCL_B8Y9 Abcam MCF-7 LATS2 KO 1 4842 -cellosaurus:CVCL_B8YA Abcam MCF-7 LCK KO 1 4843 -cellosaurus:CVCL_B8YB Abcam MCF-7 LMNA KO 1 4844 -cellosaurus:CVCL_B8YC Abcam MCF-7 LRP5 KO 1 4845 -cellosaurus:CVCL_B8YD Abcam MCF-7 LYN KO 1 4846 -cellosaurus:CVCL_B8YE Abcam MCF-7 MAF KO 1 4847 -cellosaurus:CVCL_B8YF Abcam MCF-7 MALT1 KO 1 4848 -cellosaurus:CVCL_B8YG Abcam MCF-7 MAP2K1 KO 1 4849 -cellosaurus:CVCL_B8YH Abcam MCF-7 MAP2K2 KO 1 4850 -cellosaurus:CVCL_B8YI Abcam MCF-7 MAP2K4 KO 1 4851 -cellosaurus:CVCL_B8YJ Abcam MCF-7 MAP3K11 KO 1 4852 -cellosaurus:CVCL_B8YK Abcam MCF-7 MAP3K7 KO 1 4853 -cellosaurus:CVCL_B8YL Abcam MCF-7 MAPK1 KO 1 4854 -cellosaurus:CVCL_B8YM Abcam MCF-7 MAPK14 KO 1 4855 -cellosaurus:CVCL_B8YN Abcam MCF-7 MAPK3 KO 1 4856 -cellosaurus:CVCL_B8YP Abcam MCF-7 MDC1 KO 1 4857 -cellosaurus:CVCL_B8YQ Abcam MCF-7 MECOM KO 1 4858 -cellosaurus:CVCL_B8YR Abcam MCF-7 MED12 KO 1 4859 -cellosaurus:CVCL_B8YS Abcam MCF-7 MEN1 KO 1 4860 -cellosaurus:CVCL_B8YT Abcam MCF-7 MET KO 1 4861 -cellosaurus:CVCL_B8YU Abcam MCF-7 MGMT KO 1 4862 -cellosaurus:CVCL_B8YV Abcam MCF-7 MITF KO 1 4863 -cellosaurus:CVCL_B8YW Abcam MCF-7 MLH1 KO 1 4864 -cellosaurus:CVCL_B8YX Abcam MCF-7 MMP1 KO 1 4865 -cellosaurus:CVCL_B8YY Abcam MCF-7 MMP12 KO 1 4866 -cellosaurus:CVCL_B8YZ Abcam MCF-7 MMP2 KO 1 4867 -cellosaurus:CVCL_B8Z0 Abcam MCF-7 MMP9 KO 1 4868 -cellosaurus:CVCL_B8Z1 Abcam MCF-7 MRE11 KO 1 4869 -cellosaurus:CVCL_B8Z2 Abcam MCF-7 MSH2 KO 1 4870 -cellosaurus:CVCL_B8Z3 Abcam MCF-7 MSH6 KO 1 4871 -cellosaurus:CVCL_B8Z4 Abcam MCF-7 MSR1 KO 1 4872 -cellosaurus:CVCL_B8Z5 Abcam MCF-7 MTA2 KO 1 4873 -cellosaurus:CVCL_B8Z6 Abcam MCF-7 MUC1 KO 1 4874 -cellosaurus:CVCL_B8Z7 Abcam MCF-7 MUC16 KO 1 4875 -cellosaurus:CVCL_B8Z8 Abcam MCF-7 MYB KO 1 4876 -cellosaurus:CVCL_B8Z9 Abcam MCF-7 MYD88 KO 1 4877 -cellosaurus:CVCL_B8ZA Abcam MCF-7 MYOD1 KO 1 4878 -cellosaurus:CVCL_B8ZB Abcam MCF-7 NBN KO 1 4879 -cellosaurus:CVCL_B8ZC Abcam MCF-7 NCAM1 KO 1 4880 -cellosaurus:CVCL_B8ZD Abcam MCF-7 NCOA1 KO 1 4881 -cellosaurus:CVCL_B8ZE Abcam MCF-7 NF1 KO 1 4882 -cellosaurus:CVCL_B8ZF Abcam MCF-7 NF2 KO 1 4883 -cellosaurus:CVCL_B8ZG Abcam MCF-7 NFATC2 KO 1 4884 -cellosaurus:CVCL_B8ZH Abcam MCF-7 NFE2L2 KO 1 4885 -cellosaurus:CVCL_B8ZI Abcam MCF-7 NOS2 KO 1 4886 -cellosaurus:CVCL_B8ZJ Abcam MCF-7 NOTCH1 KO 1 4887 -cellosaurus:CVCL_B8ZK Abcam MCF-7 NOTCH2 KO 1 4888 -cellosaurus:CVCL_B8ZL Abcam MCF-7 NR4A1 KO 1 4889 -cellosaurus:CVCL_B8ZM Abcam MCF-7 NR4A3 KO 1 4890 -cellosaurus:CVCL_B8ZN Abcam MCF-7 NRAS KO 1 4891 -cellosaurus:CVCL_B8ZP Abcam MCF-7 NSD2 KO 1 4892 -cellosaurus:CVCL_B8ZQ Abcam MCF-7 NTRK3 KO 1 4893 -cellosaurus:CVCL_B8ZR Abcam MCF-7 OLIG2 KO 1 4894 -cellosaurus:CVCL_B8ZS Abcam MCF-7 OPRM1 KO 1 4895 -cellosaurus:CVCL_B8ZT Abcam MCF-7 PAK1 KO 1 4896 -cellosaurus:CVCL_B8ZU Abcam MCF-7 PAK2 KO 1 4897 -cellosaurus:CVCL_B8ZV Abcam MCF-7 PALB2 KO 1 4898 -cellosaurus:CVCL_B8ZW Abcam MCF-7 PARP1 KO 1 4899 -cellosaurus:CVCL_B8ZX Abcam MCF-7 PARP3 KO 1 4900 -cellosaurus:CVCL_B8ZY Abcam MCF-7 PAX5 KO 1 4901 -cellosaurus:CVCL_B8ZZ Abcam MCF-7 PAX7 KO 1 4902 -cellosaurus:CVCL_B9A0 Abcam MCF-7 PAX8 KO 1 4903 -cellosaurus:CVCL_B9A1 Abcam MCF-7 PBRM1 KO 1 4904 -cellosaurus:CVCL_B9A2 Abcam MCF-7 PDCD1 KO 1 4905 -cellosaurus:CVCL_B0ZY Abcam MCF-7 PDE3B KO 1 4906 -cellosaurus:CVCL_B9A3 Abcam MCF-7 PDGFB KO 1 4907 -cellosaurus:CVCL_B9A4 Abcam MCF-7 PDGFRA KO 1 4908 -cellosaurus:CVCL_B9A5 Abcam MCF-7 PDGFRB KO 1 4909 -cellosaurus:CVCL_B9A6 Abcam MCF-7 PER1 KO 1 4910 -cellosaurus:CVCL_B9A7 Abcam MCF-7 PGF KO 1 4911 -cellosaurus:CVCL_B9A8 Abcam MCF-7 PGR KO 1 4912 -cellosaurus:CVCL_B9A9 Abcam MCF-7 PHF1 KO 1 4913 -cellosaurus:CVCL_B9AA Abcam MCF-7 PHLPP1 KO 1 4914 -cellosaurus:CVCL_B9AB Abcam MCF-7 PIK3R1 KO 1 4915 -cellosaurus:CVCL_B9AC Abcam MCF-7 PIK3R2 KO 1 4916 -cellosaurus:CVCL_B9AD Abcam MCF-7 PML KO 1 4917 -cellosaurus:CVCL_B9AE Abcam MCF-7 PMS2 KO 1 4918 -cellosaurus:CVCL_B9AF Abcam MCF-7 POLQ KO 1 4919 -cellosaurus:CVCL_B9AG Abcam MCF-7 POLR2A KO 1 4920 -cellosaurus:CVCL_B9AH Abcam MCF-7 POU5F1 KO 1 4921 -cellosaurus:CVCL_B9AI Abcam MCF-7 PPARG KO 1 4922 -cellosaurus:CVCL_B9AJ Abcam MCF-7 PRDM1 KO 1 4923 -cellosaurus:CVCL_B9AK Abcam MCF-7 PRDM16 KO 1 4924 -cellosaurus:CVCL_B9AL Abcam MCF-7 PRF1 KO 1 4925 -cellosaurus:CVCL_B9AM Abcam MCF-7 PRKAA1 KO 1 4926 -cellosaurus:CVCL_B9AN Abcam MCF-7 PRKAA2 KO 1 4927 -cellosaurus:CVCL_B9AP Abcam MCF-7 PRKCA KO 1 4928 -cellosaurus:CVCL_B9AQ Abcam MCF-7 PRKCB KO 1 4929 -cellosaurus:CVCL_B9AR Abcam MCF-7 PROCR KO 1 4930 -cellosaurus:CVCL_B9AS Abcam MCF-7 PROX1 KO 1 4931 -cellosaurus:CVCL_B9AT Abcam MCF-7 PTEN KO 1 4932 -cellosaurus:CVCL_B9AU Abcam MCF-7 PTGS1 KO 1 4933 -cellosaurus:CVCL_B9AV Abcam MCF-7 PTPN2 KO 1 4934 -cellosaurus:CVCL_B9AW Abcam MCF-7 PTPN6 KO 1 4935 -cellosaurus:CVCL_B9AX Abcam MCF-7 RAD50 KO 1 4936 -cellosaurus:CVCL_B9AY Abcam MCF-7 RAD51D KO 1 4937 -cellosaurus:CVCL_B9AZ Abcam MCF-7 RAF1 KO 1 4938 -cellosaurus:CVCL_B9B0 Abcam MCF-7 RARB KO 1 4939 -cellosaurus:CVCL_B9B1 Abcam MCF-7 RB1 KO 1 4940 -cellosaurus:CVCL_B9B2 Abcam MCF-7 REL KO 1 4941 -cellosaurus:CVCL_B9B3 Abcam MCF-7 RELA KO 1 4942 -cellosaurus:CVCL_B9B4 Abcam MCF-7 REST KO 1 4943 -cellosaurus:CVCL_B9B5 Abcam MCF-7 RET KO 1 4944 -cellosaurus:CVCL_B9B6 Abcam MCF-7 RICTOR KO 1 4945 -cellosaurus:CVCL_B9B7 Abcam MCF-7 RNF2 KO 1 4946 -cellosaurus:CVCL_B9B8 Abcam MCF-7 ROS1 KO 1 4947 -cellosaurus:CVCL_B9B9 Abcam MCF-7 RPS6KA3 KO 1 4948 -cellosaurus:CVCL_B9BA Abcam MCF-7 RSF1 KO 1 4949 -cellosaurus:CVCL_B9BB Abcam MCF-7 RSPO2 KO 1 4950 -cellosaurus:CVCL_B9BC Abcam MCF-7 RUNX1 KO 1 4951 -cellosaurus:CVCL_B9BD Abcam MCF-7 SALL4 KO 1 4952 -cellosaurus:CVCL_B9BE Abcam MCF-7 SCARB2 KO 1 4953 -cellosaurus:CVCL_B9BF Abcam MCF-7 SETD7 KO 1 4954 -cellosaurus:CVCL_B9BG Abcam MCF-7 SIRPA KO 1 4955 -cellosaurus:CVCL_B9BH Abcam MCF-7 SIRT1 KO 1 4956 -cellosaurus:CVCL_B9BI Abcam MCF-7 SMAD2 KO 1 4957 -cellosaurus:CVCL_B9BJ Abcam MCF-7 SMAD3 KO 1 4958 -cellosaurus:CVCL_B9BK Abcam MCF-7 SMAD4 KO 1 4959 -cellosaurus:CVCL_B9BL Abcam MCF-7 SMARCA1 KO 1 4960 -cellosaurus:CVCL_B9BM Abcam MCF-7 SMARCA4 KO 1 4961 -cellosaurus:CVCL_B9BN Abcam MCF-7 SMARCC1 KO 1 4962 -cellosaurus:CVCL_B9BP Abcam MCF-7 SMARCD3 KO 1 4963 -cellosaurus:CVCL_B9BQ Abcam MCF-7 SOS1 KO 1 4964 -cellosaurus:CVCL_B9BR Abcam MCF-7 SOX2 KO 1 4965 -cellosaurus:CVCL_B9BS Abcam MCF-7 SP1 KO 1 4966 -cellosaurus:CVCL_B9BT Abcam MCF-7 SPN KO 1 4967 -cellosaurus:CVCL_B9BU Abcam MCF-7 SPP1 KO 1 4968 -cellosaurus:CVCL_B9BV Abcam MCF-7 SRC KO 1 4969 -cellosaurus:CVCL_B9BW Abcam MCF-7 SS18 KO 1 4970 -cellosaurus:CVCL_B9BX Abcam MCF-7 STAG2 KO 1 4971 -cellosaurus:CVCL_B9BY Abcam MCF-7 STAT1 KO 1 4972 -cellosaurus:CVCL_B9BZ Abcam MCF-7 STAT3 KO 1 4973 -cellosaurus:CVCL_B9C0 Abcam MCF-7 STAT6 KO 1 4974 -cellosaurus:CVCL_B9C1 Abcam MCF-7 STING1 KO 1 4975 -cellosaurus:CVCL_B9C2 Abcam MCF-7 STK11 KO 1 4976 -cellosaurus:CVCL_B9C3 Abcam MCF-7 SUFU KO 1 4977 -cellosaurus:CVCL_B9C4 Abcam MCF-7 TACSTD2 KO 1 4978 -cellosaurus:CVCL_B9C5 Abcam MCF-7 TAFFAZIN KO 1 4979 -cellosaurus:CVCL_B9C6 Abcam MCF-7 TET2 KO 1 4980 -cellosaurus:CVCL_B9C7 Abcam MCF-7 TFF3 KO 1 4981 -cellosaurus:CVCL_B9C8 Abcam MCF-7 TGFB1 KO 1 4982 -cellosaurus:CVCL_B9C9 Abcam MCF-7 TGFBR2 KO 1 4983 -cellosaurus:CVCL_B0ZZ Abcam MCF-7 TLE1 KO 1 4984 -cellosaurus:CVCL_B9CA Abcam MCF-7 TNFSF11 KO 1 4985 -cellosaurus:CVCL_B9CB Abcam MCF-7 TP53 KO 1 4986 -cellosaurus:CVCL_B9CC Abcam MCF-7 TP63 KO 1 4987 -cellosaurus:CVCL_B1A0 Abcam MCF-7 TPBG KO 1 4988 -cellosaurus:CVCL_B9CD Abcam MCF-7 TSC1 KO 1 4989 -cellosaurus:CVCL_B9CE Abcam MCF-7 TSC2 KO 1 4990 -cellosaurus:CVCL_B9CF Abcam MCF-7 USP8 KO 1 4991 -cellosaurus:CVCL_B9CG Abcam MCF-7 WRN KO 1 4992 -cellosaurus:CVCL_B9CH Abcam MCF-7 WWTR1 KO 1 4993 -cellosaurus:CVCL_B9CI Abcam MCF-7 XPC KO 1 4994 -cellosaurus:CVCL_B9CJ Abcam MCF-7 YAP1 KO 1 4995 -cellosaurus:CVCL_B9CK Abcam MCF-7 ZBTB16 KO 1 4996 -cellosaurus:CVCL_B9CL Abcam MCF-7 ZEB1 KO 1 4997 -cellosaurus:CVCL_X007 hTERT-EEC-B37 1 4998 -cellosaurus:CVCL_2094 KPL-1 1 4999 -cellosaurus:CVCL_0404 M7TS90 1 5000 -cellosaurus:CVCL_YX80 MCF-7 A2 1 5001 -cellosaurus:CVCL_ZZ17 MCF-7 Ad75 1 5002 -cellosaurus:CVCL_ZZ18 MCF-7 AdP500 1 5003 -cellosaurus:CVCL_4Y65 MCF-7 clone 33 1 5004 -cellosaurus:CVCL_4Y63 MCF-7/TMX2 2 5005 -cellosaurus:CVCL_4Y64 MCF-7/TMX2-11 3 5006 -cellosaurus:CVCL_6957 MCF-7/TMX2-28 3 5007 -cellosaurus:CVCL_HA11 MCF-7 eGFP-CEBPG 1 5008 -cellosaurus:CVCL_HA12 MCF-7 eGFP-E2F4 1 5009 -cellosaurus:CVCL_HA13 MCF-7 eGFP-ELF1 1 5010 -cellosaurus:CVCL_HA14 MCF-7 eGFP-GABPA 1 5011 -cellosaurus:CVCL_HA15 MCF-7 eGFP-GTF2E2 1 5012 -cellosaurus:CVCL_HA16 MCF-7 eGFP-HBP1 1 5013 -cellosaurus:CVCL_HA17 MCF-7 eGFP-KLF4 1 5014 -cellosaurus:CVCL_HA18 MCF-7 eGFP-KLF9 1 5015 -cellosaurus:CVCL_HA19 MCF-7 eGFP-ZNF148 1 5016 -cellosaurus:CVCL_ZZ19 MCF-7 Ida6 1 5017 -cellosaurus:CVCL_UU87 MCF-7 M13 1 5018 -cellosaurus:CVCL_UU88 MCF-7 M21 1 5019 -cellosaurus:CVCL_UU89 MCF-7 M27 1 5020 -cellosaurus:CVCL_LB51 MCF-7 MX20 1 5021 -cellosaurus:CVCL_LB52 MCF-7 MX40 2 5022 -cellosaurus:CVCL_LB53 MCF-7 MX80 3 5023 -cellosaurus:CVCL_LB54 MCF-7 MX100 4 5024 -cellosaurus:CVCL_LB50 MCF-7 MX8 1 5025 -cellosaurus:CVCL_B7K1 MCF-7 PRODH KO 1 5026 -cellosaurus:CVCL_WK73 MCF-7 R27 1 5027 -cellosaurus:CVCL_IU96 MCF-7 RR1 1 5028 -cellosaurus:CVCL_IU97 MCF-7 RR2 1 5029 -cellosaurus:CVCL_RA89 MCF-7 shPARG 1 5030 -cellosaurus:CVCL_YJ25 MCF-7 shWDR12-4 1 5031 -cellosaurus:CVCL_S030 MCF-7 SimpleCell O-GalNAc 1 5032 -cellosaurus:CVCL_A4AQ MCF-7 Tam1 1 5033 -cellosaurus:CVCL_IU98 MCF-7 TKi-R 1 5034 -cellosaurus:CVCL_A8P5 MCF-7 TTE-MBD2 1 5035 -cellosaurus:CVCL_ZZ20 MCF-7 Tx200 1 5036 -cellosaurus:CVCL_ZZ21 MCF-7 Tx8 1 5037 -cellosaurus:CVCL_4Y54 MCF-7-2a 1 5038 -cellosaurus:CVCL_R954 MCF-7-BAG 1 5039 -cellosaurus:CVCL_4V96 MCF-7-EpiR 1 5040 -cellosaurus:CVCL_5I64 MCF-7-FLV1000 1 5041 -cellosaurus:CVCL_J259 MCF-7-Luc 1 5042 -cellosaurus:CVCL_5J35 MCF-7-luc-F5 1 5043 -cellosaurus:CVCL_5J04 MCF-7-Red-Fluc 1 5044 -cellosaurus:CVCL_4V97 MCF-7-TaxR 1 5045 -cellosaurus:CVCL_DC70 MCF-7.5C 1 5046 -cellosaurus:CVCL_0412 MCF-7/2a 1 5047 -cellosaurus:CVCL_4V53 MCF-7/4-HC 1 5048 -cellosaurus:CVCL_4V44 MCF-7/5-23 1 5049 -cellosaurus:CVCL_W972 MCF-7/6 1 5050 -cellosaurus:CVCL_4Y46 MCF-7/AdrVp 1 5051 -cellosaurus:CVCL_KS20 MCF-7/AdVp3000 2 5052 -cellosaurus:CVCL_W971 MCF-7/AZ 1 5053 -cellosaurus:CVCL_ZZ40 MCF-7/BCRP 1 5054 -cellosaurus:CVCL_GX99 MCF-7/C4-12 1 5055 -cellosaurus:CVCL_4D03 MCF-7/CG-4 1 5056 -cellosaurus:CVCL_4D04 MCF-7/CG-5 1 5057 -cellosaurus:CVCL_4D05 MCF-7/CG-5/Dx 2 5058 -cellosaurus:CVCL_HA20 MCF-7/E2F1 1 5059 -cellosaurus:CVCL_M439 MCF-7/E6 1 5060 -cellosaurus:CVCL_5J37 MCF-7/GFP 1 5061 -cellosaurus:CVCL_0U80 MCF-7/HER2-18 1 5062 -cellosaurus:CVCL_5J36 MCF-7/Luc 1 5063 -cellosaurus:CVCL_9579 MCF-7/LY2 1 5064 -cellosaurus:CVCL_Z704 MCF-7/MDD2 1 5065 -cellosaurus:CVCL_Z705 MCF-7/MN1 1 5066 -cellosaurus:CVCL_B7P7 MCF-7/PacR 1 5067 -cellosaurus:CVCL_4V43 MCF-7/RTx6 1 5068 -cellosaurus:CVCL_K235 MCF-7/RU58R-1 1 5069 -cellosaurus:CVCL_1D47 MCF-7/S0.5 1 5070 -cellosaurus:CVCL_1D48 MCF-7/164R-1 2 5071 -cellosaurus:CVCL_1D49 MCF-7/164R-4 2 5072 -cellosaurus:CVCL_1D38 MCF-7/164R-5 2 5073 -cellosaurus:CVCL_1D39 MCF-7/164R-7 2 5074 -cellosaurus:CVCL_1D40 MCF-7/182R-1 2 5075 -cellosaurus:CVCL_W536 MCF-7/182R-6 2 5076 -cellosaurus:CVCL_1D41 MCF-7/182R-7 2 5077 -cellosaurus:CVCL_5A09 MCF-7/AnaR-1 2 5078 -cellosaurus:CVCL_5A10 MCF-7/AnaR-2 2 5079 -cellosaurus:CVCL_5A11 MCF-7/AnaR-3 2 5080 -cellosaurus:CVCL_5A12 MCF-7/AnaR-4 2 5081 -cellosaurus:CVCL_5A13 MCF-7/ExeR-1 2 5082 -cellosaurus:CVCL_5A14 MCF-7/ExeR-2 2 5083 -cellosaurus:CVCL_5A15 MCF-7/ExeR-3 2 5084 -cellosaurus:CVCL_5A16 MCF-7/ExeR-4 2 5085 -cellosaurus:CVCL_5A17 MCF-7/LetR-1 2 5086 -cellosaurus:CVCL_5A18 MCF-7/LetR-2 2 5087 -cellosaurus:CVCL_5A19 MCF-7/LetR-3 2 5088 -cellosaurus:CVCL_5A20 MCF-7/LetR-4 2 5089 -cellosaurus:CVCL_M436 MCF-7/TAMR-1 2 5090 -cellosaurus:CVCL_1D42 MCF-7/TAMR-4 2 5091 -cellosaurus:CVCL_1D43 MCF-7/TAMR-7 2 5092 -cellosaurus:CVCL_1D44 MCF-7/TAMR-8 2 5093 -cellosaurus:CVCL_WK28 MCF-7/S7 1 5094 -cellosaurus:CVCL_AS09 MCF-7/S9 1 5095 -cellosaurus:CVCL_C0CU MCF-7/SB-T-0035R 1 5096 -cellosaurus:CVCL_IJ26 MCF-7/TAX 1 5097 -cellosaurus:CVCL_M355 MCF-7/Taxol 1 5098 -cellosaurus:CVCL_4V42 MCF-7/TPT300 1 5099 -cellosaurus:CVCL_B7JP MCF7/TROP2-KO 1 5100 -cellosaurus:CVCL_DR99 MCF-7/Twist 1 5101 -cellosaurus:CVCL_2Z97 MCF-7/VD(R) 1 5102 -cellosaurus:CVCL_5I65 MCF-7/VP 1 5103 -cellosaurus:CVCL_4Y53 MCF-7:2A 1 5104 -cellosaurus:CVCL_9580 MCF-7aro 1 5105 -cellosaurus:CVCL_W348 MCF-7aro Let-R 2 5106 -cellosaurus:CVCL_9581 MCF-7aro/ERE 2 5107 -cellosaurus:CVCL_6860 MCF-7B 1 5108 -cellosaurus:CVCL_2Z98 MCF-7D3Res 1 5109 -cellosaurus:CVCL_0088 MCF-7L 1 5110 -cellosaurus:CVCL_6672 MCF-7M 1 5111 -cellosaurus:CVCL_6673 MCF-7N 1 5112 -cellosaurus:CVCL_6674 MCF-7TN-R 2 5113 -cellosaurus:CVCL_Y493 MCF-7R 1 5114 -cellosaurus:CVCL_9V74 MCF-hGH 1 5115 -cellosaurus:CVCL_4Y47 MCF/MX 1 5116 -cellosaurus:CVCL_M373 MCF3B 1 5117 -cellosaurus:CVCL_1D32 MCF7 AREc32 1 5118 -cellosaurus:CVCL_A4CH MCF7 dCas9-KRAB 1 5119 -cellosaurus:CVCL_DF45 MCF7 NucLight Green 1 5120 -cellosaurus:CVCL_DF46 MCF7 NucLight Red 1 5121 -cellosaurus:CVCL_V357 MCF7 Tet-Off 1 5122 -cellosaurus:CVCL_KU37 MCF7 Tet-Off advanced 1 5123 -cellosaurus:CVCL_V332 MCF7 Tet-On 1 5124 -cellosaurus:CVCL_JX63 MCF7EL 2 5125 -cellosaurus:CVCL_JX64 MCF7T1 2 5126 -cellosaurus:CVCL_JX65 MCF7T2 2 5127 -cellosaurus:CVCL_KU45 MCF7 Tet-On Advanced 1 5128 -cellosaurus:CVCL_V358 MCF7 tTS 1 5129 -cellosaurus:CVCL_3397 MCF7-382 1 5130 -cellosaurus:CVCL_3398 MCF7-422 1 5131 -cellosaurus:CVCL_3399 MCF7-432 1 5132 -cellosaurus:CVCL_3400 MCF7-488X1 1 5133 -cellosaurus:CVCL_3401 MCF7-490X1 1 5134 -cellosaurus:CVCL_3402 MCF7-492X1 1 5135 -cellosaurus:CVCL_4V66 MCF7-AFA[r] 1 5136 -cellosaurus:CVCL_VH35 MCF7-B7-TS 1 5137 -cellosaurus:CVCL_XD68 MCF7-Cas9-542 1 5138 -cellosaurus:CVCL_XD69 MCF7-Cas9-543 1 5139 -cellosaurus:CVCL_XD70 MCF7-Cas9-544 1 5140 -cellosaurus:CVCL_B5PF MCF7-FGFR1 1 5141 -cellosaurus:CVCL_VR08 MCF7-h14 1 5142 -cellosaurus:CVCL_YX84 MCF7-LTED 1 5143 -cellosaurus:CVCL_A4CI MCF7-Luc2 1 5144 -cellosaurus:CVCL_C3ID MCF7-parkin clone 11 1 5145 -cellosaurus:CVCL_C3IB MCF7-parkin clone 5 1 5146 -cellosaurus:CVCL_C3IC MCF7-parkin clone 7 1 5147 -cellosaurus:CVCL_EG55 MCF7-TamR 1 5148 -cellosaurus:CVCL_0413 MCF7/BUS 1 5149 -cellosaurus:CVCL_EQ28 MCF7/c 1 5150 -cellosaurus:CVCL_M437 MCF7/D40 1 5151 -cellosaurus:CVCL_DP49 MCF7/MIII 1 5152 -cellosaurus:CVCL_DP50 MCF7/LCC1 2 5153 -cellosaurus:CVCL_DP51 MCF7/LCC2 3 5154 -cellosaurus:CVCL_DP52 MCF7/LCC9 3 5155 -cellosaurus:CVCL_M438 MCF7/Mitox 1 5156 -cellosaurus:CVCL_EQ29 MCF7/XBP1 1 5157 -cellosaurus:CVCL_0415 MCF7mp53 1 5158 -cellosaurus:CVCL_R955 MCS-2 [Human breast carcinoma] 1 5159 -cellosaurus:CVCL_WI91 MELN 1 5160 -cellosaurus:CVCL_4Y56 MVLN 1 5161 -cellosaurus:CVCL_1327 KE-37 0 5162 -cellosaurus:CVCL_L699 KE 37.3.2 1 5163 -cellosaurus:CVCL_B7RK KE37/1 1 5164 -cellosaurus:CVCL_C0UC KE37/1-IIIB 2 5165 -cellosaurus:CVCL_2197 SKW-3 1 5166 -cellosaurus:CVCL_J125 SK-beta2.7 2 5167 -cellosaurus:CVCL_4V58 SKW3/Clo 2 5168 -cellosaurus:CVCL_AQ27 CHLA-255 0 5169 -cellosaurus:CVCL_LI08 CHLA-255/MYCN 1 5170 -cellosaurus:CVCL_1092 BT-549 0 5171 -cellosaurus:CVCL_5948 11-9-1-4 1 5172 -cellosaurus:CVCL_WG97 11-YX-1 1 5173 -cellosaurus:CVCL_UJ22 BT-549-Dox 1 5174 -cellosaurus:CVCL_J245 BT-549-Luc 1 5175 -cellosaurus:CVCL_JY91 BT-549/RFP 1 5176 -cellosaurus:CVCL_8383 OCUM-2M 0 5177 -cellosaurus:CVCL_IV67 OCUM-2M/5-FU 1 5178 -cellosaurus:CVCL_8384 OCUM-2M/DDP 1 5179 -cellosaurus:CVCL_IV68 OCUM-2M/GEM 1 5180 -cellosaurus:CVCL_IV69 OCUM-2M/OXA 1 5181 -cellosaurus:CVCL_IV70 OCUM-2M/PTX 1 5182 -cellosaurus:CVCL_IV71 OCUM-2M/SN38 1 5183 -cellosaurus:CVCL_8385 OCUM-2MD3 1 5184 -cellosaurus:CVCL_8386 OCUM-2MLN 1 5185 -cellosaurus:CVCL_1594 NCI-H838 0 5186 -cellosaurus:CVCL_LE02 NCI-H838 EGFR (delE746-A750/+) 1 5187 -cellosaurus:CVCL_LD05 NCI-H838 EGFR (L858R/+) 1 5188 -cellosaurus:CVCL_A4IK NCI-H838 KRAS (G12D/+9n) 1 5189 -cellosaurus:CVCL_A4IL NCI-H838 KRAS (G12V/+9n) 1 5190 -cellosaurus:CVCL_M693 HDLM-1 0 5191 -cellosaurus:CVCL_M695 HDLM-1d 1 5192 -cellosaurus:CVCL_0580 WM35 0 5193 -cellosaurus:CVCL_A806 WM35-P1N1 1 5194 -cellosaurus:CVCL_A807 WM35-P1N2 1 5195 -cellosaurus:CVCL_A808 WM35-P1N3 1 5196 -cellosaurus:CVCL_A809 WM35-P2N1 1 5197 -cellosaurus:CVCL_A810 WM35-P2N2 1 5198 -cellosaurus:CVCL_A811 WM35-P2N3 1 5199 -cellosaurus:CVCL_L892 JSQ-3 0 5200 -cellosaurus:CVCL_V281 JSQ-3B 1 5201 -cellosaurus:CVCL_4V80 SOSP-9607 0 5202 -cellosaurus:CVCL_4V81 SOSP-9607/CDDP 1 5203 -cellosaurus:CVCL_4V82 SOSP-9607/F4 1 5204 -cellosaurus:CVCL_4V83 SOSP-9607/F5M2 1 5205 -cellosaurus:CVCL_S700 HCC4011 0 5206 -cellosaurus:CVCL_S701 HCC4011-GR-high 1 5207 -cellosaurus:CVCL_S702 HCC4011-GR-step 1 5208 -cellosaurus:CVCL_S747 HCC4011/R 1 5209 -cellosaurus:CVCL_1274 HEC-1 0 5210 -cellosaurus:CVCL_0293 HEC-1-A 1 5211 -cellosaurus:CVCL_AR90 HEC-1-A-OZA1 2 5212 -cellosaurus:CVCL_AR91 HEC-1-A-OZA2 2 5213 -cellosaurus:CVCL_AR92 HEC-1-A-OZA3 2 5214 -cellosaurus:CVCL_AR93 HEC-1-A-OZA4 2 5215 -cellosaurus:CVCL_AR94 HEC-1-A-OZA5 2 5216 -cellosaurus:CVCL_AR95 HEC-1-A-OZA6 2 5217 -cellosaurus:CVCL_0294 HEC-1-B 2 5218 -cellosaurus:CVCL_XC84 HEC-1-B-Cas9-580 3 5219 -cellosaurus:CVCL_XC85 HEC-1-B-Cas9-581 3 5220 -cellosaurus:CVCL_XC86 HEC-1-B-Cas9-582 3 5221 -cellosaurus:CVCL_XC87 HEC-1-B-Cas9-583 3 5222 -cellosaurus:CVCL_XC88 HEC-1-B-Cas9-584 3 5223 -cellosaurus:CVCL_XC89 HEC-1-B-Cas9-585 3 5224 -cellosaurus:CVCL_XC90 HEC-1-B-Cas9-586 3 5225 -cellosaurus:CVCL_XC91 HEC-1-B-Cas9-587 3 5226 -cellosaurus:CVCL_XC92 HEC-1-B-Cas9-588 3 5227 -cellosaurus:CVCL_XC93 HEC-1-B-Cas9-589 3 5228 -cellosaurus:CVCL_XC94 HEC-1-B-Cas9-590 3 5229 -cellosaurus:CVCL_XC95 HEC-1-B-Cas9-591 3 5230 -cellosaurus:CVCL_XC96 HEC-1-B-Cas9-592 3 5231 -cellosaurus:CVCL_YJ46 HEC-1BE 3 5232 -cellosaurus:CVCL_S835 HEC-1C 1 5233 -cellosaurus:CVCL_S836 HEC-1D 1 5234 -cellosaurus:CVCL_M429 KT21-MG1 0 5235 -cellosaurus:CVCL_JK00 KT21-MG1-Luc5D 1 5236 -cellosaurus:CVCL_0623 MDA-MB-436 0 5237 -cellosaurus:CVCL_JY98 MDA-MB-436/GFP 1 5238 -cellosaurus:CVCL_JY99 MDA-MB-436/RFP 1 5239 -cellosaurus:CVCL_1728 SW780 0 5240 -cellosaurus:CVCL_C3GV SW780 FOXP3 1 5241 -cellosaurus:CVCL_C3GW SW780 FOXP3Delta3 1 5242 -cellosaurus:CVCL_VT20 Me67 0 5243 -cellosaurus:CVCL_VT26 Me67.10 1 5244 -cellosaurus:CVCL_VT23 Me67.3 1 5245 -cellosaurus:CVCL_VT24 Me67.5 1 5246 -cellosaurus:CVCL_VT25 Me67.9 1 5247 -cellosaurus:CVCL_QW81 KU-Lu-MPPt3 0 5248 -cellosaurus:CVCL_B7AS KU-Lu-MPPt3 AD 1 5249 -cellosaurus:CVCL_B7AT KU-Lu-MPPt3 CS 1 5250 -cellosaurus:CVCL_D032 M24 0 5251 -cellosaurus:CVCL_3915 M24met 1 5252 -cellosaurus:CVCL_3916 M24met H1.11 2 5253 -cellosaurus:CVCL_VQ65 DKAT 0 5254 -cellosaurus:CVCL_VQ66 DKAT-SCGM 1 5255 -cellosaurus:CVCL_S637 KFR 0 5256 -cellosaurus:CVCL_RR38 KFRrVCR10 1 5257 -cellosaurus:CVCL_2618 MOR 0 5258 -cellosaurus:CVCL_2126 MOR/0.2R 1 5259 -cellosaurus:CVCL_2619 MOR/0.4R 1 5260 -cellosaurus:CVCL_2620 MOR/CPR 1 5261 -cellosaurus:CVCL_A6SI ED-41214 0 5262 -cellosaurus:CVCL_A6TV ED-41214(-) 1 5263 -cellosaurus:CVCL_1720 SW1573 0 5264 -cellosaurus:CVCL_A5BA SW1573/S1 1 5265 -cellosaurus:CVCL_WG69 SW1573/1R10000 2 5266 -cellosaurus:CVCL_WG67 SW1573/1R50 2 5267 -cellosaurus:CVCL_WG68 SW1573/1R500 2 5268 -cellosaurus:CVCL_WG70 SW1573/2R120 2 5269 -cellosaurus:CVCL_WG75 SW1573/2R50 2 5270 -cellosaurus:CVCL_WG76 SW1573/2R80 3 5271 -cellosaurus:CVCL_WG71 SW1573/2R160 4 5272 -cellosaurus:CVCL_WG77 SW1573/2R250 5 5273 -cellosaurus:CVCL_WG72 SW1573/3R80 2 5274 -cellosaurus:CVCL_A5BB SW1573/S1(MDR1) 2 5275 -cellosaurus:CVCL_A5BC SW1573/S1(MRP) 2 5276 -cellosaurus:CVCL_A5BD SW1573/S1neo 2 5277 -cellosaurus:CVCL_A5BE SW1573/S1ou 2 5278 -cellosaurus:CVCL_9885 STA-NB-10 0 5279 -cellosaurus:CVCL_DG49 STA-NB-10/dmin 1 5280 -cellosaurus:CVCL_DG50 STA-NB-10/hsr 1 5281 -cellosaurus:CVCL_M706 JOK-1 [Human hairy cell leukemia] 0 5282 -cellosaurus:CVCL_A5ZI JOK-1/5.3 1 5283 -cellosaurus:CVCL_6795 WM239A 0 5284 -cellosaurus:CVCL_VS31 WM239A HmR 1 5285 -cellosaurus:CVCL_0555 T84 0 5286 -cellosaurus:CVCL_A9Y0 HC84S 1 5287 -cellosaurus:CVCL_0103 SUP-B15 0 5288 -cellosaurus:CVCL_S642 SUP-B15/RI 1 5289 -cellosaurus:CVCL_DR65 SupB15RT 1 5290 -cellosaurus:CVCL_1989 COLO 320 0 5291 -cellosaurus:CVCL_0219 COLO 320DM 1 5292 -cellosaurus:CVCL_XD07 COLO 320DM-EGFP 2 5293 -cellosaurus:CVCL_XD08 COLO 320DM-RFP 2 5294 -cellosaurus:CVCL_A6UJ COLO 320DM#3 2 5295 -cellosaurus:CVCL_A6UK COLO 320DM#3 SIRT1 KO cl.1 2 5296 -cellosaurus:CVCL_A6UL COLO 320DM#3 SIRT1 KO cl.2 2 5297 -cellosaurus:CVCL_A6UM COLO 320DM#3 SIRT1 KO cl.3 2 5298 -cellosaurus:CVCL_A6UN COLO 320DM#3 SIRT1 KO cl.4 2 5299 -cellosaurus:CVCL_A6UP COLO 320DM#3 SIRT1 KO cl.5 2 5300 -cellosaurus:CVCL_A6UQ COLO 320DM#3 SIRT1 KO cl.6 2 5301 -cellosaurus:CVCL_1990 COLO 320DMF 2 5302 -cellosaurus:CVCL_0220 COLO 320HSR 2 5303 -cellosaurus:CVCL_F641 COLO 587 2 5304 -cellosaurus:CVCL_S463 D-32MG 0 5305 -cellosaurus:CVCL_S464 D-32MGCl2 1 5306 -cellosaurus:CVCL_6008 NPC-TW01 0 5307 -cellosaurus:CVCL_DG71 NA-NP15 1 5308 -cellosaurus:CVCL_DG72 NA-NR1 1 5309 -cellosaurus:CVCL_DG73 NA-NR15 2 5310 -cellosaurus:CVCL_4440 LIM2463 0 5311 -cellosaurus:CVCL_A456 LIM2463B 1 5312 -cellosaurus:CVCL_3961 LN-444 0 5313 -cellosaurus:CVCL_3960 LN-443 1 5314 -cellosaurus:CVCL_0588 ZR-75-1 0 5315 -cellosaurus:CVCL_2814 YMB-1 1 5316 -cellosaurus:CVCL_B372 YMB-1-C 2 5317 -cellosaurus:CVCL_2815 YMB-1-E 2 5318 -cellosaurus:CVCL_0586 YMB-A 2 5319 -cellosaurus:CVCL_D103 YMB-S 2 5320 -cellosaurus:CVCL_A1FN ZR-75-1 GDC-0941-resistant 1 5321 -cellosaurus:CVCL_RA95 ZR-75-1 shPARG 1 5322 -cellosaurus:CVCL_YJ29 ZR-75-1 shWDR12-4 1 5323 -cellosaurus:CVCL_A4AL ZR-75-1 Tam1 1 5324 -cellosaurus:CVCL_A4AM ZR-75-1 Tam2 1 5325 -cellosaurus:CVCL_UJ20 ZR-75-1-Dox 1 5326 -cellosaurus:CVCL_JY90 ZR-75-1/GFP 1 5327 -cellosaurus:CVCL_5613 ZR-75-9a1 1 5328 -cellosaurus:CVCL_5614 ZR-75-B 1 5329 -cellosaurus:CVCL_ZZ26 ZR75B Ad120 2 5330 -cellosaurus:CVCL_ZZ27 ZR75B Ad24 2 5331 -cellosaurus:CVCL_ZZ28 ZR75B Tx10 2 5332 -cellosaurus:CVCL_ZZ29 ZR75B Tx40 2 5333 -cellosaurus:CVCL_ZZ30 ZR75B Vb10 2 5334 -cellosaurus:CVCL_4Y42 ZR75-1 25DOCR 1 5335 -cellosaurus:CVCL_4Y44 ZR75-1 25PACR 1 5336 -cellosaurus:CVCL_4Y43 ZR75-1 50DOCR 1 5337 -cellosaurus:CVCL_4Y45 ZR75-1 50PACR 1 5338 -cellosaurus:CVCL_YX86 ZR75-LTED 1 5339 -cellosaurus:CVCL_YX82 ZR75.1 A3 1 5340 -cellosaurus:CVCL_IW49 ZR75T 1 5341 -cellosaurus:CVCL_B6PW TJU-UM001 0 5342 -cellosaurus:CVCL_B6PZ TJU-UM001-tdTomato 1 5343 -cellosaurus:CVCL_0021 U-251MG 0 5344 -cellosaurus:CVCL_2864 B2-17 1 5345 -cellosaurus:CVCL_2800 KNS-89 1 5346 -cellosaurus:CVCL_0535 SNB-19 1 5347 -cellosaurus:CVCL_B325 TK-1 [Human astrocytoma] 1 5348 -cellosaurus:CVCL_2809 U-251MG (KO) 1 5349 -cellosaurus:CVCL_5G63 U-251MG AgCl1 1 5350 -cellosaurus:CVCL_A5HP U-251MG IDH1 R132C 1 5351 -cellosaurus:CVCL_A5HQ U-251MG IDH1 R132H 1 5352 -cellosaurus:CVCL_A5HR U-251MG IDH1 WT 1 5353 -cellosaurus:CVCL_A5TU U-251MG PAX6-/- 2.10 1 5354 -cellosaurus:CVCL_A5TV U-251MG PAX6-/- 2A.28 1 5355 -cellosaurus:CVCL_A5TW U-251MG PAX6-/- 2A.3 1 5356 -cellosaurus:CVCL_5G56 U-251MG sp 1 5357 -cellosaurus:CVCL_C3I5 U-251MG-GFP 1 5358 -cellosaurus:CVCL_J269 U-251MG-Luc 1 5359 -cellosaurus:CVCL_C3I4 U-251MG-PARK2 1 5360 -cellosaurus:CVCL_2219 U-373MG ATCC 1 5361 -cellosaurus:CVCL_1F84 U373-MAGI 2 5362 -cellosaurus:CVCL_1F85 U373-MAGI-CCR5 3 5363 -cellosaurus:CVCL_1F86 U373-MAGI-CXCR4 3 5364 -cellosaurus:CVCL_C1CP U251-NF-kappaB-GFP-Luc-A1 1 5365 -cellosaurus:CVCL_1G29 U251-TR3 1 5366 -cellosaurus:CVCL_E046 MZ1973RC 0 5367 -cellosaurus:CVCL_7684 MZ1973/10-4 1 5368 -cellosaurus:CVCL_1662 RMG-I 0 5369 -cellosaurus:CVCL_IS64 RMG-I-C 1 5370 -cellosaurus:CVCL_IS65 RMG-I-H 1 5371 -cellosaurus:CVCL_M538 MM-S1 0 5372 -cellosaurus:CVCL_A1SE S6B45 1 5373 -cellosaurus:CVCL_2091 KCL-22 0 5374 -cellosaurus:CVCL_DP58 KCL22-r 1 5375 -cellosaurus:CVCL_4V46 KCL22/SR 1 5376 -cellosaurus:CVCL_0455 NCI-H292 0 5377 -cellosaurus:CVCL_B409 Hut292DM 1 5378 -cellosaurus:CVCL_M543 RPM-MC 0 5379 -cellosaurus:CVCL_3486 M2A7 1 5380 -cellosaurus:CVCL_7108 PLA-801 0 5381 -cellosaurus:CVCL_WW01 PLA-801A 1 5382 -cellosaurus:CVCL_7109 PLA-801C 1 5383 -cellosaurus:CVCL_7110 PLA-801D 1 5384 -cellosaurus:CVCL_4389 PG [Human lung carcinoma] 2 5385 -cellosaurus:CVCL_4390 PG-BE1 3 5386 -cellosaurus:CVCL_4391 PG-CL3 3 5387 -cellosaurus:CVCL_4392 PG-LH7 3 5388 -cellosaurus:CVCL_WW02 PLA-801E 1 5389 -cellosaurus:CVCL_1071 AML-193 0 5390 -cellosaurus:CVCL_8441 SR-91 1 5391 -cellosaurus:CVCL_2462 H357 0 5392 -cellosaurus:CVCL_JY67 H357-V3 1 5393 -cellosaurus:CVCL_JY68 H357-VB6 2 5394 -cellosaurus:CVCL_0030 HeLa 0 5395 -cellosaurus:CVCL_2260 1-5c-4 1 5396 -cellosaurus:CVCL_2819 11-4 1 5397 -cellosaurus:CVCL_M629 2563 1 5398 -cellosaurus:CVCL_2821 4-11 1 5399 -cellosaurus:CVCL_B1IJ Abcam HeLa AAK1 KO 1 5400 -cellosaurus:CVCL_B1IK Abcam HeLa ABCC1 KO 1 5401 -cellosaurus:CVCL_B1IL Abcam HeLa ABCC3 KO 1 5402 -cellosaurus:CVCL_B1IM Abcam HeLa ABCF3 KO 1 5403 -cellosaurus:CVCL_B1IN Abcam HeLa ABHD17A KO 1 5404 -cellosaurus:CVCL_B1IP Abcam HeLa ABHD6 KO 1 5405 -cellosaurus:CVCL_B1IQ Abcam HeLa ABL1 KO 1 5406 -cellosaurus:CVCL_B1IR Abcam HeLa ACAD9 KO 1 5407 -cellosaurus:CVCL_B1IS Abcam HeLa ACHE KO 1 5408 -cellosaurus:CVCL_B1IT Abcam HeLa ACOT9 KO 1 5409 -cellosaurus:CVCL_B1IU Abcam HeLa ACOX3 KO 1 5410 -cellosaurus:CVCL_B1IV Abcam HeLa ACSL1 KO 1 5411 -cellosaurus:CVCL_B1IW Abcam HeLa ACSL3 KO 1 5412 -cellosaurus:CVCL_B1IX Abcam HeLa ACTA2 KO 1 5413 -cellosaurus:CVCL_B1IY Abcam HeLa ACTN1 KO 1 5414 -cellosaurus:CVCL_B1IZ Abcam HeLa ADAM17 KO 1 5415 -cellosaurus:CVCL_B1J0 Abcam HeLa ADAM9 KO 1 5416 -cellosaurus:CVCL_B1J1 Abcam HeLa ADARB1 KO 1 5417 -cellosaurus:CVCL_B1J2 Abcam HeLa ADCK2 KO 1 5418 -cellosaurus:CVCL_B1J3 Abcam HeLa ADCY3 KO 1 5419 -cellosaurus:CVCL_B1J4 Abcam HeLa ADCY7 KO 1 5420 -cellosaurus:CVCL_B1R8 Abcam HeLa ADGRE1 KO 1 5421 -cellosaurus:CVCL_B1J5 Abcam HeLa ADK KO 1 5422 -cellosaurus:CVCL_B9VD Abcam HeLa ADORA2A KO 1 5423 -cellosaurus:CVCL_B1J6 Abcam HeLa ADRB1 KO 1 5424 -cellosaurus:CVCL_B1J7 Abcam HeLa AGO1 KO 1 5425 -cellosaurus:CVCL_B1J8 Abcam HeLa AGO3 KO 1 5426 -cellosaurus:CVCL_B1J9 Abcam HeLa AIP KO 1 5427 -cellosaurus:CVCL_B1JA Abcam HeLa AK1 KO 1 5428 -cellosaurus:CVCL_B1JB Abcam HeLa AK4 KO 1 5429 -cellosaurus:CVCL_B1JC Abcam HeLa AKAP11 KO 1 5430 -cellosaurus:CVCL_B1JD Abcam HeLa AKT1 KO 1 5431 -cellosaurus:CVCL_B1JE Abcam HeLa AKT3 KO 1 5432 -cellosaurus:CVCL_B1JF Abcam HeLa ALDH3A2 KO 1 5433 -cellosaurus:CVCL_B1JG Abcam HeLa ALK KO 1 5434 -cellosaurus:CVCL_B1JH Abcam HeLa ALPP KO 1 5435 -cellosaurus:CVCL_B1JI Abcam HeLa ANKRD13A KO 1 5436 -cellosaurus:CVCL_B1JJ Abcam HeLa ANKRD17 KO 1 5437 -cellosaurus:CVCL_B1JK Abcam HeLa ANTXR1 KO 1 5438 -cellosaurus:CVCL_B1JL Abcam HeLa ANXA3 KO 1 5439 -cellosaurus:CVCL_B1JM Abcam HeLa ANXA6 KO 1 5440 -cellosaurus:CVCL_B1JN Abcam HeLa AP1M1 KO 1 5441 -cellosaurus:CVCL_B1JP Abcam HeLa AP1M2 KO 1 5442 -cellosaurus:CVCL_B1JQ Abcam HeLa APH1A KO 1 5443 -cellosaurus:CVCL_B1JR Abcam HeLa APLNR KO 1 5444 -cellosaurus:CVCL_B1JS Abcam HeLa APPL1 KO 1 5445 -cellosaurus:CVCL_B1JT Abcam HeLa APTX KO 1 5446 -cellosaurus:CVCL_B1JU Abcam HeLa ARAP3 KO 1 5447 -cellosaurus:CVCL_B1JV Abcam HeLa ARF1 KO 1 5448 -cellosaurus:CVCL_B1JW Abcam HeLa ARFIP2 KO 1 5449 -cellosaurus:CVCL_B1JX Abcam HeLa ARHGEF2 KO 1 5450 -cellosaurus:CVCL_B1JY Abcam HeLa ARID2 KO 1 5451 -cellosaurus:CVCL_B1JZ Abcam HeLa ARL13B KO 1 5452 -cellosaurus:CVCL_B1K0 Abcam HeLa ARL2BP KO 1 5453 -cellosaurus:CVCL_B1K1 Abcam HeLa ARL8B KO 1 5454 -cellosaurus:CVCL_B1K2 Abcam HeLa ARNTL KO 1 5455 -cellosaurus:CVCL_B1K3 Abcam HeLa ASAP1 KO 1 5456 -cellosaurus:CVCL_B1K4 Abcam HeLa ASCC2 KO 1 5457 -cellosaurus:CVCL_B1K5 Abcam HeLa ASH1L KO 1 5458 -cellosaurus:CVCL_B1K6 Abcam HeLa ASS1 KO 1 5459 -cellosaurus:CVCL_B1K7 Abcam HeLa ASXL1 KO 1 5460 -cellosaurus:CVCL_B1K8 Abcam HeLa ATAD2 KO 1 5461 -cellosaurus:CVCL_B1K9 Abcam HeLa ATF3 KO 1 5462 -cellosaurus:CVCL_B1KA Abcam HeLa ATF6 KO 1 5463 -cellosaurus:CVCL_B1KB Abcam HeLa ATG10 KO 1 5464 -cellosaurus:CVCL_B1KC Abcam HeLa ATG101 KO 1 5465 -cellosaurus:CVCL_B1KD Abcam HeLa ATG14 KO 1 5466 -cellosaurus:CVCL_B1KE Abcam HeLa ATG16L1 KO 1 1 5467 -cellosaurus:CVCL_B1KF Abcam HeLa ATG16L1 KO 2 1 5468 -cellosaurus:CVCL_B1KG Abcam HeLa ATG16L1 KO 3 1 5469 -cellosaurus:CVCL_B1KH Abcam HeLa ATG16L2 KO 1 5470 -cellosaurus:CVCL_B1KI Abcam HeLa ATG2A KO 1 5471 -cellosaurus:CVCL_B1KJ Abcam HeLa ATG2B KO 1 5472 -cellosaurus:CVCL_B1KK Abcam HeLa ATG4A KO 1 5473 -cellosaurus:CVCL_B1KL Abcam HeLa ATG4B KO 1 5474 -cellosaurus:CVCL_B1KM Abcam HeLa ATG4D KO 1 5475 -cellosaurus:CVCL_B9VE Abcam HeLa ATG7 KO 1 5476 -cellosaurus:CVCL_B1KN Abcam HeLa ATP13A3 KO 1 5477 -cellosaurus:CVCL_B1KP Abcam HeLa ATP2B1 KO 1 5478 -cellosaurus:CVCL_B1KQ Abcam HeLa ATP2B4 KO 1 5479 -cellosaurus:CVCL_B1KR Abcam HeLa ATP5F1E KO 1 5480 -cellosaurus:CVCL_B1KS Abcam HeLa AXL KO 1 1 5481 -cellosaurus:CVCL_B1KT Abcam HeLa AXL KO 2 1 5482 -cellosaurus:CVCL_B1KU Abcam HeLa AZI2 KO 1 5483 -cellosaurus:CVCL_B1KV Abcam HeLa AZIN1 KO 1 5484 -cellosaurus:CVCL_B1KW Abcam HeLa B4GALT1 KO 1 5485 -cellosaurus:CVCL_B1KX Abcam HeLa BAG2 KO 1 5486 -cellosaurus:CVCL_B1KY Abcam HeLa BAK1 KO 1 5487 -cellosaurus:CVCL_B1KZ Abcam HeLa BAX KO 1 5488 -cellosaurus:CVCL_B1L0 Abcam HeLa BAZ1A KO 1 5489 -cellosaurus:CVCL_B1L1 Abcam HeLa BAZ1B KO 1 5490 -cellosaurus:CVCL_B1L2 Abcam HeLa BBC3 KO 1 5491 -cellosaurus:CVCL_B1L3 Abcam HeLa BCAR3 KO 1 5492 -cellosaurus:CVCL_B1L4 Abcam HeLa BCL10 KO 1 5493 -cellosaurus:CVCL_B1L5 Abcam HeLa BCL2L2 KO 1 5494 -cellosaurus:CVCL_B1L6 Abcam HeLa BCL6 KO 1 5495 -cellosaurus:CVCL_B1L7 Abcam HeLa BCOR KO 1 5496 -cellosaurus:CVCL_B1L8 Abcam HeLa BECN1 KO 1 5497 -cellosaurus:CVCL_B1L9 Abcam HeLa BIRC2 KO 1 5498 -cellosaurus:CVCL_B1LA Abcam HeLa BLMH KO 1 5499 -cellosaurus:CVCL_B1LB Abcam HeLa BLOC1S1 KO 1 5500 -cellosaurus:CVCL_B1LC Abcam HeLa BMP2 KO 1 5501 -cellosaurus:CVCL_B1LD Abcam HeLa BMP2K KO 1 5502 -cellosaurus:CVCL_B1LE Abcam HeLa BMPR1A KO 1 5503 -cellosaurus:CVCL_B1LF Abcam HeLa BOD1 KO 1 5504 -cellosaurus:CVCL_B1LG Abcam HeLa BRAF KO 1 5505 -cellosaurus:CVCL_B1LH Abcam HeLa BRE KO 1 5506 -cellosaurus:CVCL_B1LI Abcam HeLa BRK1 KO 1 5507 -cellosaurus:CVCL_B1LJ Abcam HeLa BRSK1 KO 1 5508 -cellosaurus:CVCL_B1LK Abcam HeLa BRSK2 KO 1 5509 -cellosaurus:CVCL_B1LL Abcam HeLa BRWD1 KO 1 5510 -cellosaurus:CVCL_B1LM Abcam HeLa BTN3A2 KO 1 5511 -cellosaurus:CVCL_B1LN Abcam HeLa BUB1 KO 1 5512 -cellosaurus:CVCL_B1LP Abcam HeLa C11orf58 KO 1 5513 -cellosaurus:CVCL_B1LQ Abcam HeLa C19orf33 KO 1 5514 -cellosaurus:CVCL_B1LR Abcam HeLa C1D KO 1 5515 -cellosaurus:CVCL_B1LS Abcam HeLa C1orf131 KO 1 5516 -cellosaurus:CVCL_B1LT Abcam HeLa C5orf51 KO 1 5517 -cellosaurus:CVCL_B1LU Abcam HeLa C6orf62 KO 1 5518 -cellosaurus:CVCL_B1LV Abcam HeLa C9orf69 KO 1 5519 -cellosaurus:CVCL_B1LW Abcam HeLa C9orf78 KO 1 5520 -cellosaurus:CVCL_B1LX Abcam HeLa CACNA2D1 KO 1 5521 -cellosaurus:CVCL_B1LY Abcam HeLa CACNB3 KO 1 5522 -cellosaurus:CVCL_B1LZ Abcam HeLa CALD1 KO 1 5523 -cellosaurus:CVCL_B1M0 Abcam HeLa CALM2 KO 1 5524 -cellosaurus:CVCL_B1M1 Abcam HeLa CAMK2G KO 1 5525 -cellosaurus:CVCL_B1M2 Abcam HeLa CAMKK1 KO 1 5526 -cellosaurus:CVCL_B1M3 Abcam HeLa CAPG KO 1 5527 -cellosaurus:CVCL_B1M4 Abcam HeLa CASP3 KO 1 5528 -cellosaurus:CVCL_B1M5 Abcam HeLa CASP7 KO 1 5529 -cellosaurus:CVCL_B1M6 Abcam HeLa CASP8 KO 1 5530 -cellosaurus:CVCL_B1M7 Abcam HeLa CAT KO 1 1 5531 -cellosaurus:CVCL_B1M8 Abcam HeLa CAT KO 2 1 5532 -cellosaurus:CVCL_B1M9 Abcam HeLa CAV1 KO 1 5533 -cellosaurus:CVCL_B1MA Abcam HeLa CAVIN1 KO 1 5534 -cellosaurus:CVCL_B1MB Abcam HeLa CBLB KO 1 5535 -cellosaurus:CVCL_B1MC Abcam HeLa CBLL1 KO 1 5536 -cellosaurus:CVCL_B1MD Abcam HeLa CBS KO 1 5537 -cellosaurus:CVCL_B1ME Abcam HeLa CBX3 KO 1 5538 -cellosaurus:CVCL_B1MF Abcam HeLa CCDC137 KO 1 5539 -cellosaurus:CVCL_B1MG Abcam HeLa CCDC6 KO 1 5540 -cellosaurus:CVCL_B1MH Abcam HeLa CCL2 KO 1 5541 -cellosaurus:CVCL_B1MI Abcam HeLa CCL20 KO 1 5542 -cellosaurus:CVCL_B1PR Abcam HeLa CCN1 KO 1 5543 -cellosaurus:CVCL_B1MJ Abcam HeLa CCN2 KO 1 5544 -cellosaurus:CVCL_B1MK Abcam HeLa CCND1 KO 1 1 5545 -cellosaurus:CVCL_B1ML Abcam HeLa CCND1 KO 2 1 5546 -cellosaurus:CVCL_B1MM Abcam HeLa CD160 KO 1 5547 -cellosaurus:CVCL_B1MN Abcam HeLa CD276 KO 1 5548 -cellosaurus:CVCL_B1MP Abcam HeLa CD28 KO 1 5549 -cellosaurus:CVCL_B1MQ Abcam HeLa CD38 KO 1 5550 -cellosaurus:CVCL_B1MR Abcam HeLa CD44 KO 1 5551 -cellosaurus:CVCL_B1MS Abcam HeLa CD58 KO 1 5552 -cellosaurus:CVCL_B1MT Abcam HeLa CD70 KO 1 5553 -cellosaurus:CVCL_B1MU Abcam HeLa CD9 KO 1 5554 -cellosaurus:CVCL_B1MV Abcam HeLa CDC25C KO 1 5555 -cellosaurus:CVCL_B1MW Abcam HeLa CDC42BPA KO 1 5556 -cellosaurus:CVCL_B1MX Abcam HeLa CDC42EP4 KO 1 5557 -cellosaurus:CVCL_B1MY Abcam HeLa CDC42SE1 KO 1 5558 -cellosaurus:CVCL_B1MZ Abcam HeLa CDK12 KO 1 5559 -cellosaurus:CVCL_B1N0 Abcam HeLa CDK17 KO 1 5560 -cellosaurus:CVCL_B1N1 Abcam HeLa CDK19 KO 1 5561 -cellosaurus:CVCL_B1N2 Abcam HeLa CDK3 KO 1 5562 -cellosaurus:CVCL_B1N3 Abcam HeLa CDK4 KO 1 5563 -cellosaurus:CVCL_B1N4 Abcam HeLa CDK6 KO 1 5564 -cellosaurus:CVCL_B1N5 Abcam HeLa CDK8 KO 1 5565 -cellosaurus:CVCL_B1N6 Abcam HeLa CDKL1 KO 1 5566 -cellosaurus:CVCL_B1N7 Abcam HeLa CDKN1A KO 1 5567 -cellosaurus:CVCL_B9VF Abcam HeLa CDKN1C KO 1 5568 -cellosaurus:CVCL_B1N8 Abcam HeLa CDKN2B KO 1 5569 -cellosaurus:CVCL_B1N9 Abcam HeLa CEBPB KO 1 5570 -cellosaurus:CVCL_B1NA Abcam HeLa CEP57 KO 1 5571 -cellosaurus:CVCL_B1NB Abcam HeLa CHAT KO 1 5572 -cellosaurus:CVCL_B1NC Abcam HeLa CHEK2 KO 1 5573 -cellosaurus:CVCL_B1ND Abcam HeLa CHMP4A KO 1 5574 -cellosaurus:CVCL_B1NE Abcam HeLa CIC KO 1 5575 -cellosaurus:CVCL_B1NF Abcam HeLa CISD1 KO 1 5576 -cellosaurus:CVCL_B1NG Abcam HeLa CLCN7 KO 1 5577 -cellosaurus:CVCL_B1NH Abcam HeLa CLK1 KO 1 5578 -cellosaurus:CVCL_B1NI Abcam HeLa CLK3 KO 1 5579 -cellosaurus:CVCL_B1NJ Abcam HeLa CLK4 KO 1 5580 -cellosaurus:CVCL_B1NK Abcam HeLa CLOCK KO 1 1 5581 -cellosaurus:CVCL_B1NL Abcam HeLa CLOCK KO 2 1 5582 -cellosaurus:CVCL_B1NM Abcam HeLa CLPX KO 1 5583 -cellosaurus:CVCL_B1NN Abcam HeLa CLTCL1 KO 1 5584 -cellosaurus:CVCL_B1NP Abcam HeLa CNN1 KO 1 5585 -cellosaurus:CVCL_B1NQ Abcam HeLa CNOT7 KO 1 5586 -cellosaurus:CVCL_B1NR Abcam HeLa CNOT9 KO 1 5587 -cellosaurus:CVCL_B1NS Abcam HeLa CNP KO 1 5588 -cellosaurus:CVCL_B1NT Abcam HeLa COIL KO 1 5589 -cellosaurus:CVCL_B1NU Abcam HeLa COL4A1 KO 1 5590 -cellosaurus:CVCL_B1NV Abcam HeLa COL4A2 KO 1 5591 -cellosaurus:CVCL_B1NW Abcam HeLa COL4A3 KO 1 5592 -cellosaurus:CVCL_B1NX Abcam HeLa COL4A4 KO 1 5593 -cellosaurus:CVCL_B1NY Abcam HeLa COL4A5 KO 1 5594 -cellosaurus:CVCL_B1NZ Abcam HeLa COL4A6 KO 1 5595 -cellosaurus:CVCL_B1P0 Abcam HeLa COL5A1 KO 1 5596 -cellosaurus:CVCL_B1P1 Abcam HeLa COL9A3 KO 1 5597 -cellosaurus:CVCL_B1P2 Abcam HeLa COP1 KO 1 5598 -cellosaurus:CVCL_B1P3 Abcam HeLa COQ8B KO 1 5599 -cellosaurus:CVCL_B1P4 Abcam HeLa CPA4 KO 1 5600 -cellosaurus:CVCL_B1P5 Abcam HeLa CPS1 KO 1 5601 -cellosaurus:CVCL_B1P6 Abcam HeLa CPT2 KO 1 5602 -cellosaurus:CVCL_B1P7 Abcam HeLa CREB3L2 KO 1 5603 -cellosaurus:CVCL_B1P8 Abcam HeLa CREB5 KO 1 5604 -cellosaurus:CVCL_B1P9 Abcam HeLa CRK KO 1 5605 -cellosaurus:CVCL_B1PA Abcam HeLa CRKL KO 1 5606 -cellosaurus:CVCL_B1PB Abcam HeLa CRY1 KO 1 5607 -cellosaurus:CVCL_B1PC Abcam HeLa CSAD KO 1 5608 -cellosaurus:CVCL_B1PD Abcam HeLa CSF1R KO 1 5609 -cellosaurus:CVCL_B1PE Abcam HeLa CSNK1D KO 1 5610 -cellosaurus:CVCL_B1PF Abcam HeLa CSNK1E KO 1 5611 -cellosaurus:CVCL_B1PG Abcam HeLa CSNK1G1 KO 1 5612 -cellosaurus:CVCL_B1PH Abcam HeLa CSRP1 KO 1 5613 -cellosaurus:CVCL_B1PI Abcam HeLa CSTF2 KO 1 5614 -cellosaurus:CVCL_B1PJ Abcam HeLa CTDSPL KO 1 5615 -cellosaurus:CVCL_B1PK Abcam HeLa CTNNB1 KO 1 5616 -cellosaurus:CVCL_B1PL Abcam HeLa CTSC KO 1 5617 -cellosaurus:CVCL_B1PM Abcam HeLa CUTC KO 1 5618 -cellosaurus:CVCL_B1PN Abcam HeLa CXCL1 KO 1 5619 -cellosaurus:CVCL_B1PP Abcam HeLa CXCR4 KO 1 5620 -cellosaurus:CVCL_B1PQ Abcam HeLa CYRIB KO 1 5621 -cellosaurus:CVCL_B1PS Abcam HeLa DAB2 KO 1 5622 -cellosaurus:CVCL_B1PT Abcam HeLa DAXX KO 1 5623 -cellosaurus:CVCL_B1PU Abcam HeLa DCAF12 KO 1 5624 -cellosaurus:CVCL_B1PV Abcam HeLa DDB2 KO 1 5625 -cellosaurus:CVCL_B1PW Abcam HeLa DDIT3 KO 1 5626 -cellosaurus:CVCL_B1PX Abcam HeLa DDR1 KO 1 5627 -cellosaurus:CVCL_B1PY Abcam HeLa DDR2 KO 1 5628 -cellosaurus:CVCL_B1PZ Abcam HeLa DENND4B KO 1 5629 -cellosaurus:CVCL_B1Q0 Abcam HeLa DENND5A KO 1 5630 -cellosaurus:CVCL_B1Q1 Abcam HeLa DENR KO 1 5631 -cellosaurus:CVCL_B1Q2 Abcam HeLa DGKD KO 1 5632 -cellosaurus:CVCL_B1Q3 Abcam HeLa DHCR7 KO 1 5633 -cellosaurus:CVCL_B1Q4 Abcam HeLa DHRS13 KO 1 5634 -cellosaurus:CVCL_B1Q5 Abcam HeLa DLD KO 1 5635 -cellosaurus:CVCL_B1Q6 Abcam HeLa DMAC2 KO 1 5636 -cellosaurus:CVCL_B1Q7 Abcam HeLa DNAJB4 KO 1 5637 -cellosaurus:CVCL_B1Q8 Abcam HeLa DNAJC10 KO 1 5638 -cellosaurus:CVCL_B1Q9 Abcam HeLa DNAJC13 KO 1 5639 -cellosaurus:CVCL_B1QA Abcam HeLa DNAJC14 KO 1 5640 -cellosaurus:CVCL_B1QB Abcam HeLa DNMT3A KO 1 5641 -cellosaurus:CVCL_B1QC Abcam HeLa DPH2 KO 1 5642 -cellosaurus:CVCL_B1QD Abcam HeLa DPM2 KO 1 5643 -cellosaurus:CVCL_B1QE Abcam HeLa DSG2 KO 1 5644 -cellosaurus:CVCL_B1QF Abcam HeLa DSTYK KO 1 5645 -cellosaurus:CVCL_B1QG Abcam HeLa DTX3 KO 1 5646 -cellosaurus:CVCL_B1QH Abcam HeLa DYNLL1 KO 1 5647 -cellosaurus:CVCL_B1QI Abcam HeLa DYNLT3 KO 1 5648 -cellosaurus:CVCL_B1QJ Abcam HeLa DYRK3 KO 1 5649 -cellosaurus:CVCL_B1QK Abcam HeLa DYRK4 KO 1 5650 -cellosaurus:CVCL_B1QL Abcam HeLa DYSF KO 1 5651 -cellosaurus:CVCL_B1QM Abcam HeLa E2F3 KO 1 5652 -cellosaurus:CVCL_B1QN Abcam HeLa ECE2 KO 1 5653 -cellosaurus:CVCL_B1QP Abcam HeLa ECHDC1 KO 1 5654 -cellosaurus:CVCL_B1QQ Abcam HeLa EEA1 KO 1 5655 -cellosaurus:CVCL_B1QR Abcam HeLa EFNA1 KO 1 5656 -cellosaurus:CVCL_B1QS Abcam HeLa EGF KO 1 5657 -cellosaurus:CVCL_B1QT Abcam HeLa EGFR KO 1 5658 -cellosaurus:CVCL_B9VG Abcam HeLa EHMT2 KO 1 5659 -cellosaurus:CVCL_B1QU Abcam HeLa EI24 KO 1 5660 -cellosaurus:CVCL_B1QV Abcam HeLa EIF2AK2 KO 1 5661 -cellosaurus:CVCL_B1QW Abcam HeLa EIF3H KO 1 5662 -cellosaurus:CVCL_B1QX Abcam HeLa EIF4EBP1 KO 1 5663 -cellosaurus:CVCL_B1QY Abcam HeLa EIPR1 KO 1 5664 -cellosaurus:CVCL_B1QZ Abcam HeLa ELK1 KO 1 5665 -cellosaurus:CVCL_B1R0 Abcam HeLa ELL2 KO 1 5666 -cellosaurus:CVCL_B1R1 Abcam HeLa ELOVL5 KO 1 5667 -cellosaurus:CVCL_B1R2 Abcam HeLa EMC10 KO 1 5668 -cellosaurus:CVCL_B1R3 Abcam HeLa EMC2 KO 1 5669 -cellosaurus:CVCL_B1R4 Abcam HeLa EMC6 KO 1 5670 -cellosaurus:CVCL_B1R5 Abcam HeLa EMC8 KO 1 5671 -cellosaurus:CVCL_B1R6 Abcam HeLa EML4 KO 1 5672 -cellosaurus:CVCL_B1R7 Abcam HeLa EMP1 KO 1 5673 -cellosaurus:CVCL_B1R9 Abcam HeLa ENG KO 1 5674 -cellosaurus:CVCL_B1RA Abcam HeLa ENPP2 KO 1 5675 -cellosaurus:CVCL_B1RB Abcam HeLa EPHA1 KO 1 5676 -cellosaurus:CVCL_B1RC Abcam HeLa EPHA2 KO 1 5677 -cellosaurus:CVCL_B1RD Abcam HeLa EPHA4 KO 1 5678 -cellosaurus:CVCL_B1RE Abcam HeLa EPHB3 KO 1 5679 -cellosaurus:CVCL_B1RF Abcam HeLa EPS8L2 KO 1 5680 -cellosaurus:CVCL_B9VH Abcam HeLa ERCC4 KO 1 5681 -cellosaurus:CVCL_B1RG Abcam HeLa ERGIC2 KO 1 5682 -cellosaurus:CVCL_B1RH Abcam HeLa ERI3 KO 1 5683 -cellosaurus:CVCL_B1RI Abcam HeLa ERMP1 KO 1 5684 -cellosaurus:CVCL_B1RJ Abcam HeLa ERN1 KO 1 5685 -cellosaurus:CVCL_B1RK Abcam HeLa ESRP2 KO 1 5686 -cellosaurus:CVCL_B1RL Abcam HeLa ETNK1 KO 1 5687 -cellosaurus:CVCL_B1RM Abcam HeLa ETV5 KO 1 5688 -cellosaurus:CVCL_B1RN Abcam HeLa EXOC2 KO 1 5689 -cellosaurus:CVCL_B1RP Abcam HeLa EXOC7 KO 1 5690 -cellosaurus:CVCL_B1RQ Abcam HeLa EXOSC1 KO 1 5691 -cellosaurus:CVCL_B1RR Abcam HeLa EZR KO 1 5692 -cellosaurus:CVCL_B1RS Abcam HeLa FABP5 KO 1 5693 -cellosaurus:CVCL_B1RT Abcam HeLa FADD KO 1 5694 -cellosaurus:CVCL_B1RU Abcam HeLa FAM20B KO 1 5695 -cellosaurus:CVCL_B1RV Abcam HeLa FAM3C KO 1 5696 -cellosaurus:CVCL_B1RW Abcam HeLa FAM98A KO 1 5697 -cellosaurus:CVCL_B1RX Abcam HeLa FANCD2 KO 1 5698 -cellosaurus:CVCL_B1RY Abcam HeLa FAS KO 1 5699 -cellosaurus:CVCL_B1RZ Abcam HeLa FASTK KO 1 5700 -cellosaurus:CVCL_B1S0 Abcam HeLa FBXO11 KO 1 5701 -cellosaurus:CVCL_B1S1 Abcam HeLa FCER2 KO 1 5702 -cellosaurus:CVCL_B1S2 Abcam HeLa FER KO 1 5703 -cellosaurus:CVCL_B1S3 Abcam HeLa FERMT2 KO 1 5704 -cellosaurus:CVCL_B9VI Abcam HeLa FGF21 KO 1 5705 -cellosaurus:CVCL_B1S4 Abcam HeLa FHL1 KO 1 5706 -cellosaurus:CVCL_B1S5 Abcam HeLa FHL2 KO 1 5707 -cellosaurus:CVCL_B1S6 Abcam HeLa FIBP KO 1 5708 -cellosaurus:CVCL_B9VJ Abcam HeLa FLCN KO 1 5709 -cellosaurus:CVCL_B1S7 Abcam HeLa FLII KO 1 5710 -cellosaurus:CVCL_B1S8 Abcam HeLa FLYWCH1 KO 1 5711 -cellosaurus:CVCL_B1S9 Abcam HeLa FOCAD KO 1 5712 -cellosaurus:CVCL_B1SA Abcam HeLa FOLR1 KO 1 5713 -cellosaurus:CVCL_B1SB Abcam HeLa FOXA1 KO 1 5714 -cellosaurus:CVCL_B1SC Abcam HeLa FOXA2 KO 1 5715 -cellosaurus:CVCL_B1SD Abcam HeLa FTL KO 1 1 5716 -cellosaurus:CVCL_B1SE Abcam HeLa FTL KO 2 1 5717 -cellosaurus:CVCL_B1SF Abcam HeLa FXR1 KO 1 5718 -cellosaurus:CVCL_B1SG Abcam HeLa FZD1 KO 1 5719 -cellosaurus:CVCL_B1SH Abcam HeLa FZD2 KO 1 5720 -cellosaurus:CVCL_B1SI Abcam HeLa FZD6 KO 1 5721 -cellosaurus:CVCL_B1SJ Abcam HeLa GABRE KO 1 5722 -cellosaurus:CVCL_B1SK Abcam HeLa GADD45B KO 1 5723 -cellosaurus:CVCL_B1SL Abcam HeLa GAGE12J KO 1 5724 -cellosaurus:CVCL_B1SM Abcam HeLa GAL KO 1 5725 -cellosaurus:CVCL_B1SN Abcam HeLa GALK1 KO 1 5726 -cellosaurus:CVCL_B1SP Abcam HeLa GANC KO 1 5727 -cellosaurus:CVCL_B1SQ Abcam HeLa GBA KO 1 5728 -cellosaurus:CVCL_B1SR Abcam HeLa GDA KO 1 5729 -cellosaurus:CVCL_B1SS Abcam HeLa GDE1 KO 1 5730 -cellosaurus:CVCL_B1ST Abcam HeLa GEMIN6 KO 1 5731 -cellosaurus:CVCL_B1SU Abcam HeLa GGCX KO 1 5732 -cellosaurus:CVCL_B1SV Abcam HeLa GIT1 KO 1 5733 -cellosaurus:CVCL_B1SW Abcam HeLa GLA KO 1 5734 -cellosaurus:CVCL_B1SX Abcam HeLa GLOD4 KO 1 5735 -cellosaurus:CVCL_B1SY Abcam HeLa GLRX2 KO 1 5736 -cellosaurus:CVCL_B1SZ Abcam HeLa GMNN KO 1 5737 -cellosaurus:CVCL_B1T0 Abcam HeLa GNA13 KO 1 5738 -cellosaurus:CVCL_B1T1 Abcam HeLa GNB1 KO 1 5739 -cellosaurus:CVCL_B1T2 Abcam HeLa GNB4 KO 1 5740 -cellosaurus:CVCL_B1T3 Abcam HeLa GNG11 KO 1 5741 -cellosaurus:CVCL_B1T4 Abcam HeLa GNPAT KO 1 5742 -cellosaurus:CVCL_B1T5 Abcam HeLa GNS KO 1 5743 -cellosaurus:CVCL_B1T6 Abcam HeLa GOLM2 KO 1 5744 -cellosaurus:CVCL_B1T7 Abcam HeLa GPSM2 KO 1 5745 -cellosaurus:CVCL_B1T8 Abcam HeLa GPX4 KO 1 5746 -cellosaurus:CVCL_B1T9 Abcam HeLa GRK4 KO 1 5747 -cellosaurus:CVCL_B9VK Abcam HeLa GSN KO 1 5748 -cellosaurus:CVCL_B1TA Abcam HeLa GSTM4 KO 1 5749 -cellosaurus:CVCL_B1TB Abcam HeLa GSTT2B KO 1 5750 -cellosaurus:CVCL_B1TC Abcam HeLa GTPBP2 KO 1 5751 -cellosaurus:CVCL_B1TD Abcam HeLa GYS1 KO 1 5752 -cellosaurus:CVCL_B1TE Abcam HeLa H1-2 KO 1 5753 -cellosaurus:CVCL_B1TF Abcam HeLa HAGH KO 1 5754 -cellosaurus:CVCL_B1TG Abcam HeLa HAO1 KO 1 5755 -cellosaurus:CVCL_B1TH Abcam HeLa HELLS KO 1 5756 -cellosaurus:CVCL_B1TI Abcam HeLa HENMT1 KO 1 5757 -cellosaurus:CVCL_B1TJ Abcam HeLa HERC4 KO 1 5758 -cellosaurus:CVCL_B1TK Abcam HeLa HES1 KO 1 5759 -cellosaurus:CVCL_B1TL Abcam HeLa HGF KO 1 5760 -cellosaurus:CVCL_B1TM Abcam HeLa HIBADH KO 1 5761 -cellosaurus:CVCL_B1TN Abcam HeLa HINT1 KO 1 5762 -cellosaurus:CVCL_B1TP Abcam HeLa HIPK3 KO 1 5763 -cellosaurus:CVCL_B1TQ Abcam HeLa HMGB1 KO 1 5764 -cellosaurus:CVCL_B1TR Abcam HeLa HMGN4 KO 1 5765 -cellosaurus:CVCL_B1TS Abcam HeLa HNRNPDL KO 1 5766 -cellosaurus:CVCL_B1TT Abcam HeLa HPCAL1 KO 1 5767 -cellosaurus:CVCL_B1TU Abcam HeLa HPDL KO 1 5768 -cellosaurus:CVCL_B1TV Abcam HeLa HPS5 KO 1 5769 -cellosaurus:CVCL_B1TW Abcam HeLa HPSE KO 1 5770 -cellosaurus:CVCL_B1TX Abcam HeLa HR KO 1 5771 -cellosaurus:CVCL_B1TY Abcam HeLa HSD3B7 KO 1 5772 -cellosaurus:CVCL_B1TZ Abcam HeLa HSPA8 KO 1 5773 -cellosaurus:CVCL_B1U0 Abcam HeLa HSPB1 KO 1 5774 -cellosaurus:CVCL_B1U1 Abcam HeLa HSPB8 KO 1 5775 -cellosaurus:CVCL_B1U2 Abcam HeLa HTT KO 1 5776 -cellosaurus:CVCL_B1U3 Abcam HeLa ICAM1 KO 1 5777 -cellosaurus:CVCL_B1U4 Abcam HeLa IDE KO 1 5778 -cellosaurus:CVCL_B1U5 Abcam HeLa IDH1 KO 1 5779 -cellosaurus:CVCL_B1U6 Abcam HeLa IDS KO 1 5780 -cellosaurus:CVCL_B1U7 Abcam HeLa IER2 KO 1 5781 -cellosaurus:CVCL_B1U8 Abcam HeLa IFITM3 KO 1 5782 -cellosaurus:CVCL_B9VL Abcam HeLa IFNAR1 KO 1 5783 -cellosaurus:CVCL_B1U9 Abcam HeLa IFNE KO 1 5784 -cellosaurus:CVCL_B1UA Abcam HeLa IFNGR1 KO 1 5785 -cellosaurus:CVCL_B1UB Abcam HeLa IGF1R KO 1 5786 -cellosaurus:CVCL_B1UC Abcam HeLa IKBKB KO 1 5787 -cellosaurus:CVCL_B1UD Abcam HeLa IL13RA1 KO 1 5788 -cellosaurus:CVCL_B1UE Abcam HeLa IL18 KO 1 5789 -cellosaurus:CVCL_B1UF Abcam HeLa IL1RAP KO 1 5790 -cellosaurus:CVCL_B1UG Abcam HeLa IL20 KO 1 5791 -cellosaurus:CVCL_B1UH Abcam HeLa IL6ST KO 1 5792 -cellosaurus:CVCL_B1UI Abcam HeLa INA KO 1 5793 -cellosaurus:CVCL_B1UJ Abcam HeLa INF2 KO 1 5794 -cellosaurus:CVCL_B1UK Abcam HeLa INPP5K KO 1 5795 -cellosaurus:CVCL_B1UL Abcam HeLa IP6K2 KO 1 5796 -cellosaurus:CVCL_B1UM Abcam HeLa IPO9 KO 1 5797 -cellosaurus:CVCL_B1UN Abcam HeLa IRF1 KO 1 5798 -cellosaurus:CVCL_B1UP Abcam HeLa IRF3 KO 1 5799 -cellosaurus:CVCL_B1UQ Abcam HeLa IRF7 KO 1 5800 -cellosaurus:CVCL_B1UR Abcam HeLa IRF9 KO 1 5801 -cellosaurus:CVCL_B1US Abcam HeLa ITCH KO 1 5802 -cellosaurus:CVCL_B1UT Abcam HeLa ITFG1 KO 1 5803 -cellosaurus:CVCL_B1UU Abcam HeLa ITGA11 KO 1 5804 -cellosaurus:CVCL_B1UV Abcam HeLa ITGA2 KO 1 5805 -cellosaurus:CVCL_B1UW Abcam HeLa ITGA6 KO 1 5806 -cellosaurus:CVCL_B1UX Abcam HeLa IVNS1ABP KO 1 5807 -cellosaurus:CVCL_B1UY Abcam HeLa IWS1 KO 1 5808 -cellosaurus:CVCL_B1UZ Abcam HeLa JAG2 KO 1 5809 -cellosaurus:CVCL_B1V0 Abcam HeLa JKAMP KO 1 5810 -cellosaurus:CVCL_B1V1 Abcam HeLa KCNJ11 KO 1 5811 -cellosaurus:CVCL_B1V2 Abcam HeLa KCNN4 KO 1 5812 -cellosaurus:CVCL_B1V3 Abcam HeLa KDM1A KO 1 5813 -cellosaurus:CVCL_B1V4 Abcam HeLa KDM1B KO 1 5814 -cellosaurus:CVCL_B1V5 Abcam HeLa KDM6A KO 1 5815 -cellosaurus:CVCL_B1V6 Abcam HeLa KHDC4 KO 1 5816 -cellosaurus:CVCL_B1V7 Abcam HeLa KIAA1191 KO 1 5817 -cellosaurus:CVCL_B1V8 Abcam HeLa KIF7 KO 1 5818 -cellosaurus:CVCL_B1V9 Abcam HeLa KIFC3 KO 1 5819 -cellosaurus:CVCL_B1VA Abcam HeLa KIT KO 1 5820 -cellosaurus:CVCL_B1VB Abcam HeLa KLC1 KO 1 5821 -cellosaurus:CVCL_B1VC Abcam HeLa KMT2C KO 1 5822 -cellosaurus:CVCL_B1VD Abcam HeLa KRT8 KO 1 5823 -cellosaurus:CVCL_B1VE Abcam HeLa L1CAM KO 1 1 5824 -cellosaurus:CVCL_B1VF Abcam HeLa L1CAM KO 2 1 5825 -cellosaurus:CVCL_B1VG Abcam HeLa L3MBTL2 KO 1 5826 -cellosaurus:CVCL_B1VH Abcam HeLa LAMA3 KO 1 5827 -cellosaurus:CVCL_B1VI Abcam HeLa LAMB1 KO 1 5828 -cellosaurus:CVCL_B1VJ Abcam HeLa LAMP2 KO 1 5829 -cellosaurus:CVCL_B1VK Abcam HeLa LAMP3 KO 1 5830 -cellosaurus:CVCL_B1VL Abcam HeLa LAMTOR1 KO 1 5831 -cellosaurus:CVCL_B1VM Abcam HeLa LAMTOR2 KO 1 5832 -cellosaurus:CVCL_B1VN Abcam HeLa LAMTOR3 KO 1 5833 -cellosaurus:CVCL_B1VP Abcam HeLa LANCL1 KO 1 5834 -cellosaurus:CVCL_B1VQ Abcam HeLa LARP4B KO 1 5835 -cellosaurus:CVCL_B1VR Abcam HeLa LDB1 KO 1 5836 -cellosaurus:CVCL_B1VS Abcam HeLa LIF KO 1 5837 -cellosaurus:CVCL_B1VT Abcam HeLa LIMCH1 KO 1 5838 -cellosaurus:CVCL_B1VU Abcam HeLa LIN7C KO 1 5839 -cellosaurus:CVCL_B1VV Abcam HeLa LITAF KO 1 5840 -cellosaurus:CVCL_B1VW Abcam HeLa LIX1L KO 1 5841 -cellosaurus:CVCL_B1VX Abcam HeLa LMF2 KO 1 5842 -cellosaurus:CVCL_B1VY Abcam HeLa LMNA KO 1 5843 -cellosaurus:CVCL_B1VZ Abcam HeLa LMNB1 KO 1 5844 -cellosaurus:CVCL_B1W0 Abcam HeLa LOX KO 1 5845 -cellosaurus:CVCL_B1W1 Abcam HeLa LOXL2 KO 1 5846 -cellosaurus:CVCL_B1W2 Abcam HeLa LPGAT1 KO 1 5847 -cellosaurus:CVCL_B1W3 Abcam HeLa LPL KO 1 5848 -cellosaurus:CVCL_B1W4 Abcam HeLa LRRC41 KO 1 5849 -cellosaurus:CVCL_B1W5 Abcam HeLa LRRC58 KO 1 5850 -cellosaurus:CVCL_B1W6 Abcam HeLa LRRK1 KO 1 5851 -cellosaurus:CVCL_B1W7 Abcam HeLa LRWD1 KO 1 5852 -cellosaurus:CVCL_B1W8 Abcam HeLa LTB4R2 KO 1 5853 -cellosaurus:CVCL_B1W9 Abcam HeLa LXN KO 1 5854 -cellosaurus:CVCL_B1WA Abcam HeLa LY6K KO 1 5855 -cellosaurus:CVCL_B1WB Abcam HeLa LYPLA2 KO 1 5856 -cellosaurus:CVCL_B9VM Abcam HeLa MAD2L1BP KO 1 5857 -cellosaurus:CVCL_B1WC Abcam HeLa MAGEA6 KO 1 5858 -cellosaurus:CVCL_B1WD Abcam HeLa MAGT1 KO 1 5859 -cellosaurus:CVCL_B1WE Abcam HeLa MALT1 KO 1 5860 -cellosaurus:CVCL_B1WF Abcam HeLa MAN1C1 KO 1 5861 -cellosaurus:CVCL_B1WG Abcam HeLa MAP3K1 KO 1 5862 -cellosaurus:CVCL_B1WH Abcam HeLa MAP3K11 KO 1 5863 -cellosaurus:CVCL_B1WI Abcam HeLa MAP3K12 KO 1 5864 -cellosaurus:CVCL_B1WJ Abcam HeLa MAP3K2 KO 1 5865 -cellosaurus:CVCL_B1WK Abcam HeLa MAP3K20 KO 1 5866 -cellosaurus:CVCL_B1WL Abcam HeLa MAP3K8 KO 1 5867 -cellosaurus:CVCL_B1WM Abcam HeLa MAP4 KO 1 5868 -cellosaurus:CVCL_B1WN Abcam HeLa MAP4K3 KO 1 5869 -cellosaurus:CVCL_B1WP Abcam HeLa MAPK1 KO 1 5870 -cellosaurus:CVCL_B1WQ Abcam HeLa MAPK6 KO 1 5871 -cellosaurus:CVCL_B1WR Abcam HeLa MAPK7 KO 1 5872 -cellosaurus:CVCL_B1WS Abcam HeLa MAST2 KO 1 5873 -cellosaurus:CVCL_B1WT Abcam HeLa MBD1 KO 1 5874 -cellosaurus:CVCL_B1WU Abcam HeLa MBD4 KO 1 5875 -cellosaurus:CVCL_B1WV Abcam HeLa MC2R KO 1 5876 -cellosaurus:CVCL_B1WW Abcam HeLa MCAM KO 1 5877 -cellosaurus:CVCL_B1WX Abcam HeLa MCFD2 KO 1 5878 -cellosaurus:CVCL_B1WY Abcam HeLa MEOX1 KO 1 5879 -cellosaurus:CVCL_B1WZ Abcam HeLa MERTK KO 1 5880 -cellosaurus:CVCL_B1X0 Abcam HeLa MET KO 1 5881 -cellosaurus:CVCL_B1X1 Abcam HeLa METTL5 KO 1 5882 -cellosaurus:CVCL_B1X2 Abcam HeLa MFSD1 KO 1 5883 -cellosaurus:CVCL_B1X3 Abcam HeLa MIOS KO 1 5884 -cellosaurus:CVCL_B1X4 Abcam HeLa MISP KO 1 5885 -cellosaurus:CVCL_B1X5 Abcam HeLa MKI67 KO 1 5886 -cellosaurus:CVCL_B1X6 Abcam HeLa MKNK1 KO 1 5887 -cellosaurus:CVCL_B1X7 Abcam HeLa MLEC KO 1 5888 -cellosaurus:CVCL_B1X8 Abcam HeLa MLH1 KO 1 5889 -cellosaurus:CVCL_B1X9 Abcam HeLa MLKL KO 1 5890 -cellosaurus:CVCL_B1XA Abcam HeLa MME KO 1 5891 -cellosaurus:CVCL_B1XB Abcam HeLa MMP24 KO 1 5892 -cellosaurus:CVCL_B1XC Abcam HeLa MMRN1 KO 1 5893 -cellosaurus:CVCL_B1XD Abcam HeLa MOK KO 1 5894 -cellosaurus:CVCL_B1XE Abcam HeLa MPLKIP KO 1 5895 -cellosaurus:CVCL_B1XF Abcam HeLa MPND KO 1 5896 -cellosaurus:CVCL_B1XG Abcam HeLa MPRIP KO 1 5897 -cellosaurus:CVCL_B1XH Abcam HeLa MPV17 KO 1 5898 -cellosaurus:CVCL_B1XI Abcam HeLa MPZL1 KO 1 5899 -cellosaurus:CVCL_B1XJ Abcam HeLa MRAS KO 1 5900 -cellosaurus:CVCL_B1XK Abcam HeLa MRPL40 KO 1 5901 -cellosaurus:CVCL_B1XL Abcam HeLa MRPS7 KO 1 5902 -cellosaurus:CVCL_B1XM Abcam HeLa MSH5 KO 1 5903 -cellosaurus:CVCL_B1XN Abcam HeLa MSH6 KO 1 5904 -cellosaurus:CVCL_B1XP Abcam HeLa MSL1 KO 1 5905 -cellosaurus:CVCL_B9VN Abcam HeLa MSN KO 1 5906 -cellosaurus:CVCL_B1XQ Abcam HeLa MT1X KO 1 5907 -cellosaurus:CVCL_B1XR Abcam HeLa MTAP KO 1 5908 -cellosaurus:CVCL_B1XS Abcam HeLa MTCH1 KO 1 5909 -cellosaurus:CVCL_B1XT Abcam HeLa MTFP1 KO 1 5910 -cellosaurus:CVCL_B1XU Abcam HeLa MTMR14 KO 1 5911 -cellosaurus:CVCL_B1XV Abcam HeLa MTMR2 KO 1 5912 -cellosaurus:CVCL_B1XW Abcam HeLa MTMR3 KO 1 5913 -cellosaurus:CVCL_B1XX Abcam HeLa MUC1 KO 1 5914 -cellosaurus:CVCL_B1XY Abcam HeLa MVB12A KO 1 5915 -cellosaurus:CVCL_B1XZ Abcam HeLa MVP KO 1 5916 -cellosaurus:CVCL_B1Y0 Abcam HeLa MYG1 KO 1 5917 -cellosaurus:CVCL_B1Y1 Abcam HeLa MYL9 KO 1 5918 -cellosaurus:CVCL_B1Y2 Abcam HeLa MYOF KO 1 5919 -cellosaurus:CVCL_B1Y3 Abcam HeLa MYPN KO 1 5920 -cellosaurus:CVCL_B1Y4 Abcam HeLa MZT1 KO 1 5921 -cellosaurus:CVCL_B1Y5 Abcam HeLa NAA60 KO 1 5922 -cellosaurus:CVCL_B1Y6 Abcam HeLa NARF KO 1 5923 -cellosaurus:CVCL_B9VP Abcam HeLa NBN KO 1 5924 -cellosaurus:CVCL_B1Y7 Abcam HeLa NCAM1 KO 1 5925 -cellosaurus:CVCL_B1Y8 Abcam HeLa NCAPD3 KO 1 5926 -cellosaurus:CVCL_B1Y9 Abcam HeLa NCK1 KO 1 5927 -cellosaurus:CVCL_B1YA Abcam HeLa NCL KO 1 5928 -cellosaurus:CVCL_B1YB Abcam HeLa NDC1 KO 1 5929 -cellosaurus:CVCL_B1YC Abcam HeLa NDUFA13 KO 1 5930 -cellosaurus:CVCL_B1YD Abcam HeLa NDUFA2 KO 1 5931 -cellosaurus:CVCL_B1YE Abcam HeLa NDUFA6 KO 1 5932 -cellosaurus:CVCL_B1YF Abcam HeLa NDUFB5 KO 1 5933 -cellosaurus:CVCL_B1YG Abcam HeLa NDUFB9 KO 1 5934 -cellosaurus:CVCL_B1YH Abcam HeLa NEFH KO 1 5935 -cellosaurus:CVCL_B9VQ Abcam HeLa NEK2 KO 1 5936 -cellosaurus:CVCL_B1YI Abcam HeLa NEK6 KO 1 5937 -cellosaurus:CVCL_B1YJ Abcam HeLa NF1 KO 1 5938 -cellosaurus:CVCL_B1YK Abcam HeLa NF2 KO 1 5939 -cellosaurus:CVCL_B1YL Abcam HeLa NFATC1 KO 1 5940 -cellosaurus:CVCL_B9VR Abcam HeLa NFE2L2 KO 1 5941 -cellosaurus:CVCL_B1YM Abcam HeLa NLGN4X KO 1 5942 -cellosaurus:CVCL_B1YN Abcam HeLa NLK KO 1 5943 -cellosaurus:CVCL_B1YP Abcam HeLa NLRX1 KO 1 5944 -cellosaurus:CVCL_B1YQ Abcam HeLa NNMT KO 1 5945 -cellosaurus:CVCL_B1YR Abcam HeLa NOMO2 KO 1 5946 -cellosaurus:CVCL_B1YS Abcam HeLa NOS2 KO 1 5947 -cellosaurus:CVCL_B1YT Abcam HeLa NOTCH1 KO 1 5948 -cellosaurus:CVCL_B1YU Abcam HeLa NPHS1 KO 1 5949 -cellosaurus:CVCL_B1YV Abcam HeLa NPPB KO 1 5950 -cellosaurus:CVCL_B1YW Abcam HeLa NPR1 KO 1 5951 -cellosaurus:CVCL_B1YX Abcam HeLa NPTX1 KO 1 5952 -cellosaurus:CVCL_B1YY Abcam HeLa NPY4R KO 1 5953 -cellosaurus:CVCL_B1YZ Abcam HeLa NR2F2 KO 1 5954 -cellosaurus:CVCL_B1Z0 Abcam HeLa NR3C1 KO 1 5955 -cellosaurus:CVCL_B1Z1 Abcam HeLa NR3C2 KO 1 5956 -cellosaurus:CVCL_B9VS Abcam HeLa NR4A1 KO 1 5957 -cellosaurus:CVCL_B1Z2 Abcam HeLa NRAS KO 1 1 5958 -cellosaurus:CVCL_B1Z3 Abcam HeLa NRAS KO 2 1 5959 -cellosaurus:CVCL_B1Z4 Abcam HeLa NRAS KO 3 1 5960 -cellosaurus:CVCL_B1Z5 Abcam HeLa NRBF2 KO 1 5961 -cellosaurus:CVCL_B1Z6 Abcam HeLa NRBP2 KO 1 5962 -cellosaurus:CVCL_B1Z7 Abcam HeLa NRG2 KO 1 5963 -cellosaurus:CVCL_B1Z8 Abcam HeLa NRG4 KO 1 5964 -cellosaurus:CVCL_B1Z9 Abcam HeLa NSD2 KO 1 5965 -cellosaurus:CVCL_B1ZA Abcam HeLa NTRK2 KO 1 5966 -cellosaurus:CVCL_B1ZB Abcam HeLa NUDT2 KO 1 5967 -cellosaurus:CVCL_B1ZC Abcam HeLa NUDT3 KO 1 5968 -cellosaurus:CVCL_B1ZD Abcam HeLa NUP153 KO 1 5969 -cellosaurus:CVCL_B1ZE Abcam HeLa NUPR1 KO 1 5970 -cellosaurus:CVCL_B1ZF Abcam HeLa OAS1 KO 1 5971 -cellosaurus:CVCL_B1ZG Abcam HeLa OBSCN KO 1 5972 -cellosaurus:CVCL_B1ZH Abcam HeLa OGA KO 1 5973 -cellosaurus:CVCL_B1ZI Abcam HeLa OGFR KO 1 5974 -cellosaurus:CVCL_B1ZJ Abcam HeLa OSBPL5 KO 1 5975 -cellosaurus:CVCL_B1ZK Abcam HeLa OSMR KO 1 5976 -cellosaurus:CVCL_B1ZL Abcam HeLa OTUD4 KO 1 5977 -cellosaurus:CVCL_B1ZM Abcam HeLa OTUD7B KO 1 5978 -cellosaurus:CVCL_B1ZN Abcam HeLa OTX2 KO 1 5979 -cellosaurus:CVCL_B1ZP Abcam HeLa OXCT1 KO 1 5980 -cellosaurus:CVCL_B1ZQ Abcam HeLa P2RX5 KO 1 5981 -cellosaurus:CVCL_B1ZR Abcam HeLa PACSIN2 KO 1 5982 -cellosaurus:CVCL_B1ZS Abcam HeLa PAK1 KO 1 5983 -cellosaurus:CVCL_B1ZT Abcam HeLa PAK2 KO 1 5984 -cellosaurus:CVCL_B1ZU Abcam HeLa PALM KO 1 5985 -cellosaurus:CVCL_B1ZV Abcam HeLa PALS1 KO 1 5986 -cellosaurus:CVCL_B1ZW Abcam HeLa PAPSS2 KO 1 5987 -cellosaurus:CVCL_B1ZX Abcam HeLa PAQR4 KO 1 5988 -cellosaurus:CVCL_B1ZY Abcam HeLa PAQR5 KO 1 5989 -cellosaurus:CVCL_B1ZZ Abcam HeLa PARD6A KO 1 5990 -cellosaurus:CVCL_B2A0 Abcam HeLa PARP3 KO 1 5991 -cellosaurus:CVCL_B2A1 Abcam HeLa PATL1 KO 1 5992 -cellosaurus:CVCL_B2A2 Abcam HeLa PCNT KO 1 5993 -cellosaurus:CVCL_B2A3 Abcam HeLa PCOLCE2 KO 1 5994 -cellosaurus:CVCL_B2A4 Abcam HeLa PDCD1 KO 1 5995 -cellosaurus:CVCL_B2A5 Abcam HeLa PDCD10 KO 1 5996 -cellosaurus:CVCL_B2A6 Abcam HeLa PDCD4 KO 1 5997 -cellosaurus:CVCL_B2A7 Abcam HeLa PDE3B KO 1 5998 -cellosaurus:CVCL_B2A8 Abcam HeLa PDE4B KO 1 5999 -cellosaurus:CVCL_B2A9 Abcam HeLa PDGFC KO 1 6000 -cellosaurus:CVCL_B2AA Abcam HeLa PDGFD KO 1 6001 -cellosaurus:CVCL_B2AB Abcam HeLa PDGFRA KO 1 6002 -cellosaurus:CVCL_B2AC Abcam HeLa PDHA1 KO 1 6003 -cellosaurus:CVCL_B2AD Abcam HeLa PDIA5 KO 1 6004 -cellosaurus:CVCL_B2AE Abcam HeLa PDK4 KO 1 6005 -cellosaurus:CVCL_B2AF Abcam HeLa PEG10 KO 1 6006 -cellosaurus:CVCL_B2AG Abcam HeLa PERP KO 1 6007 -cellosaurus:CVCL_C0BK Abcam HeLa PFN2 KO 1 6008 -cellosaurus:CVCL_B2AH Abcam HeLa PFKP KO 1 6009 -cellosaurus:CVCL_B2AI Abcam HeLa PGAM5 KO 1 6010 -cellosaurus:CVCL_B2AJ Abcam HeLa PGR KO 1 6011 -cellosaurus:CVCL_B2AK Abcam HeLa PHF6 KO 1 6012 -cellosaurus:CVCL_B2AL Abcam HeLa PHIP KO 1 6013 -cellosaurus:CVCL_B2AM Abcam HeLa PHLDA3 KO 1 6014 -cellosaurus:CVCL_B2AN Abcam HeLa PI4K2A KO 1 6015 -cellosaurus:CVCL_B2AP Abcam HeLa PI4K2B KO 1 6016 -cellosaurus:CVCL_B2AQ Abcam HeLa PICALM KO 1 6017 -cellosaurus:CVCL_B2AR Abcam HeLa PIK3C2A KO 1 6018 -cellosaurus:CVCL_B2AS Abcam HeLa PIK3R1 KO 1 6019 -cellosaurus:CVCL_B2AT Abcam HeLa PIP4K2A KO 1 6020 -cellosaurus:CVCL_B2AU Abcam HeLa PIP4K2C KO 1 6021 -cellosaurus:CVCL_B2AV Abcam HeLa PIP5K1C KO 1 6022 -cellosaurus:CVCL_B2AW Abcam HeLa PITPNB KO 1 6023 -cellosaurus:CVCL_B2AX Abcam HeLa PKDCC KO 1 6024 -cellosaurus:CVCL_B2AY Abcam HeLa PKN2 KO 1 6025 -cellosaurus:CVCL_B2AZ Abcam HeLa PKP3 KO 1 6026 -cellosaurus:CVCL_B2B0 Abcam HeLa PLA2G12A KO 1 6027 -cellosaurus:CVCL_B2B1 Abcam HeLa PLA2G15 KO 1 6028 -cellosaurus:CVCL_B2B2 Abcam HeLa PLA2G4A KO 1 6029 -cellosaurus:CVCL_B2B3 Abcam HeLa PLAA KO 1 6030 -cellosaurus:CVCL_B2B4 Abcam HeLa PLCB1 KO 1 6031 -cellosaurus:CVCL_B2B5 Abcam HeLa PLCB3 KO 1 6032 -cellosaurus:CVCL_B2B6 Abcam HeLa PLD2 KO 1 6033 -cellosaurus:CVCL_B2B7 Abcam HeLa PLK2 KO 1 6034 -cellosaurus:CVCL_B2B8 Abcam HeLa PML KO 1 6035 -cellosaurus:CVCL_B2B9 Abcam HeLa PMS2 KO 1 6036 -cellosaurus:CVCL_B2BA Abcam HeLa PNKD KO 1 6037 -cellosaurus:CVCL_B2BB Abcam HeLa PODXL KO 1 6038 -cellosaurus:CVCL_B2BC Abcam HeLa POGK KO 1 6039 -cellosaurus:CVCL_B2BD Abcam HeLa POLB KO 1 6040 -cellosaurus:CVCL_B2BE Abcam HeLa POLDIP3 KO 1 6041 -cellosaurus:CVCL_B2BF Abcam HeLa POLE4 KO 1 6042 -cellosaurus:CVCL_B2BG Abcam HeLa POLL KO 1 6043 -cellosaurus:CVCL_B2BH Abcam HeLa POLM KO 1 6044 -cellosaurus:CVCL_B2BI Abcam HeLa POLR1D KO 1 6045 -cellosaurus:CVCL_B2BJ Abcam HeLa PON2 KO 1 6046 -cellosaurus:CVCL_B2BK Abcam HeLa POR KO 1 6047 -cellosaurus:CVCL_B2BL Abcam HeLa PORCN KO 1 6048 -cellosaurus:CVCL_B2BM Abcam HeLa POSTN KO 1 6049 -cellosaurus:CVCL_B2BN Abcam HeLa PPIB KO 1 6050 -cellosaurus:CVCL_B2BP Abcam HeLa PPID KO 1 6051 -cellosaurus:CVCL_B2BQ Abcam HeLa PPM1A KO 1 6052 -cellosaurus:CVCL_B2BR Abcam HeLa PPM1H KO 1 6053 -cellosaurus:CVCL_B2BS Abcam HeLa PPP1CC KO 1 6054 -cellosaurus:CVCL_B2BT Abcam HeLa PPP1R13L KO 1 6055 -cellosaurus:CVCL_B2BU Abcam HeLa PPP1R15B KO 1 6056 -cellosaurus:CVCL_B2BV Abcam HeLa PPP1R2 KO 1 6057 -cellosaurus:CVCL_B2BW Abcam HeLa PPP1R26 KO 1 6058 -cellosaurus:CVCL_B2BX Abcam HeLa PPP1R3C KO 1 6059 -cellosaurus:CVCL_B2BY Abcam HeLa PPP2R5E KO 1 6060 -cellosaurus:CVCL_B2BZ Abcam HeLa PPP3CA KO 1 6061 -cellosaurus:CVCL_B2C0 Abcam HeLa PPP4R3B KO 1 6062 -cellosaurus:CVCL_B2C1 Abcam HeLa PRAP1 KO 1 6063 -cellosaurus:CVCL_B2C2 Abcam HeLa PRKACB KO 1 6064 -cellosaurus:CVCL_B2C3 Abcam HeLa PRKAR1B KO 1 6065 -cellosaurus:CVCL_B2C4 Abcam HeLa PRKAR2A KO 1 6066 -cellosaurus:CVCL_B2C5 Abcam HeLa PRKCD KO 1 6067 -cellosaurus:CVCL_B2C6 Abcam HeLa PRKCI KO 1 6068 -cellosaurus:CVCL_B2C7 Abcam HeLa PRKD3 KO 1 6069 -cellosaurus:CVCL_B2C8 Abcam HeLa PRRT2 KO 1 6070 -cellosaurus:CVCL_B2C9 Abcam HeLa PRSS21 KO 1 6071 -cellosaurus:CVCL_B2CA Abcam HeLa PRSS23 KO 1 6072 -cellosaurus:CVCL_B2CB Abcam HeLa PSAP KO 1 6073 -cellosaurus:CVCL_B2CC Abcam HeLa PSCA KO 1 6074 -cellosaurus:CVCL_B2CD Abcam HeLa PSENEN KO 1 6075 -cellosaurus:CVCL_B2CE Abcam HeLa PSKH1 KO 1 6076 -cellosaurus:CVCL_B2CF Abcam HeLa PSMB10 KO 1 6077 -cellosaurus:CVCL_B2CG Abcam HeLa PSMD10 KO 1 6078 -cellosaurus:CVCL_B2CH Abcam HeLa PSMD5 KO 1 6079 -cellosaurus:CVCL_B2CI Abcam HeLa PSME4 KO 1 6080 -cellosaurus:CVCL_B2CJ Abcam HeLa PSRC1 KO 1 6081 -cellosaurus:CVCL_B2CK Abcam HeLa PTBP1 KO 1 6082 -cellosaurus:CVCL_B2CL Abcam HeLa PTEN KO 1 6083 -cellosaurus:CVCL_B2CM Abcam HeLa PTGER3 KO 1 6084 -cellosaurus:CVCL_B2CN Abcam HeLa PTGFRN KO 1 6085 -cellosaurus:CVCL_B2CP Abcam HeLa PTGR1 KO 1 6086 -cellosaurus:CVCL_B2CQ Abcam HeLa PTGS2 KO 1 6087 -cellosaurus:CVCL_B2CR Abcam HeLa PTPN1 KO 1 6088 -cellosaurus:CVCL_B2CS Abcam HeLa PTPN13 KO 1 6089 -cellosaurus:CVCL_B2CT Abcam HeLa PTPRS KO 1 6090 -cellosaurus:CVCL_B2CU Abcam HeLa PTS KO 1 6091 -cellosaurus:CVCL_B2CV Abcam HeLa PUM1 KO 1 6092 -cellosaurus:CVCL_B2CW Abcam HeLa PUS7 KO 1 6093 -cellosaurus:CVCL_B2CX Abcam HeLa PXN KO 1 6094 -cellosaurus:CVCL_B2CY Abcam HeLa QRICH1 KO 1 6095 -cellosaurus:CVCL_B2CZ Abcam HeLa QTRT1 KO 1 6096 -cellosaurus:CVCL_B2D0 Abcam HeLa RAB20 KO 1 6097 -cellosaurus:CVCL_B2D1 Abcam HeLa RAB27A KO 1 6098 -cellosaurus:CVCL_B2D2 Abcam HeLa RAB31 KO 1 6099 -cellosaurus:CVCL_B2D3 Abcam HeLa RAB35 KO 1 6100 -cellosaurus:CVCL_B2D4 Abcam HeLa RAB7A KO 1 6101 -cellosaurus:CVCL_B2D5 Abcam HeLa RAB8A KO 1 6102 -cellosaurus:CVCL_B2D6 Abcam HeLa RAB9A KO 1 6103 -cellosaurus:CVCL_B2D7 Abcam HeLa RABAC1 KO 1 6104 -cellosaurus:CVCL_B2D8 Abcam HeLa RAD1 KO 1 6105 -cellosaurus:CVCL_B2D9 Abcam HeLa RAF1 KO 1 6106 -cellosaurus:CVCL_B2DA Abcam HeLa RALA KO 1 6107 -cellosaurus:CVCL_B2DB Abcam HeLa RALBP1 KO 1 6108 -cellosaurus:CVCL_B2DC Abcam HeLa RANBP10 KO 1 6109 -cellosaurus:CVCL_B2DD Abcam HeLa RANBP2 KO 1 6110 -cellosaurus:CVCL_B2DE Abcam HeLa RAP1GDS1 KO 1 6111 -cellosaurus:CVCL_B2DF Abcam HeLa RARA KO 1 6112 -cellosaurus:CVCL_B2DG Abcam HeLa RAVER1 KO 1 6113 -cellosaurus:CVCL_B2DH Abcam HeLa RBBP7 KO 1 6114 -cellosaurus:CVCL_B2DI Abcam HeLa RBL1 KO 1 6115 -cellosaurus:CVCL_B2DJ Abcam HeLa RBPMS KO 1 6116 -cellosaurus:CVCL_B2DK Abcam HeLa RCHY1 KO 1 6117 -cellosaurus:CVCL_B2DL Abcam HeLa RELA KO 1 6118 -cellosaurus:CVCL_B2DM Abcam HeLa RELB KO 1 6119 -cellosaurus:CVCL_B9VT Abcam HeLa REST KO 1 6120 -cellosaurus:CVCL_B2DN Abcam HeLa REXO4 KO 1 6121 -cellosaurus:CVCL_B2DP Abcam HeLa RFWD3 KO 1 6122 -cellosaurus:CVCL_B2DQ Abcam HeLa RHOT1 KO 1 6123 -cellosaurus:CVCL_B2DR Abcam HeLa RHOT2 KO 1 6124 -cellosaurus:CVCL_B2DS Abcam HeLa RIN1 KO 1 6125 -cellosaurus:CVCL_B2DT Abcam HeLa RIOK3 KO 1 6126 -cellosaurus:CVCL_B2DU Abcam HeLa RIPK2 KO 1 6127 -cellosaurus:CVCL_B2DV Abcam HeLa RIPOR1 KO 1 6128 -cellosaurus:CVCL_B2DW Abcam HeLa RMDN3 KO 1 6129 -cellosaurus:CVCL_B2DX Abcam HeLa RNF149 KO 1 6130 -cellosaurus:CVCL_B2DY Abcam HeLa RNF2 KO 1 6131 -cellosaurus:CVCL_B2DZ Abcam HeLa RNF4 KO 1 6132 -cellosaurus:CVCL_B2E0 Abcam HeLa RNF41 KO 1 6133 -cellosaurus:CVCL_B2E1 Abcam HeLa ROCK2 KO 1 6134 -cellosaurus:CVCL_B2E2 Abcam HeLa RORC KO 1 6135 -cellosaurus:CVCL_B2E3 Abcam HeLa RPL36A KO 1 6136 -cellosaurus:CVCL_B2E4 Abcam HeLa RPRM KO 1 6137 -cellosaurus:CVCL_B2E5 Abcam HeLa RPS27L KO 1 6138 -cellosaurus:CVCL_B2E6 Abcam HeLa RRAGB KO 1 6139 -cellosaurus:CVCL_B2E7 Abcam HeLa RRAGC KO 1 6140 -cellosaurus:CVCL_B2E8 Abcam HeLa RRAS KO 1 6141 -cellosaurus:CVCL_B2E9 Abcam HeLa RRBP1 KO 1 6142 -cellosaurus:CVCL_B2EA Abcam HeLa RRM2B KO 1 6143 -cellosaurus:CVCL_B2EB Abcam HeLa RRP36 KO 1 6144 -cellosaurus:CVCL_B2EC Abcam HeLa RTN4RL2 KO 1 6145 -cellosaurus:CVCL_B2ED Abcam HeLa RUNX1 KO 1 6146 -cellosaurus:CVCL_B2EE Abcam HeLa RYK KO 1 6147 -cellosaurus:CVCL_B2EF Abcam HeLa S100A11 KO 1 6148 -cellosaurus:CVCL_B2EG Abcam HeLa S100A16 KO 1 6149 -cellosaurus:CVCL_B2EH Abcam HeLa S100A4 KO 1 6150 -cellosaurus:CVCL_B2EI Abcam HeLa S100A8 KO 1 6151 -cellosaurus:CVCL_B2EJ Abcam HeLa S100P KO 1 6152 -cellosaurus:CVCL_B2EK Abcam HeLa S1PR1 KO 1 6153 -cellosaurus:CVCL_B2EL Abcam HeLa SCAF11 KO 1 6154 -cellosaurus:CVCL_B2EM Abcam HeLa SCAMP1 KO 1 6155 -cellosaurus:CVCL_B2EN Abcam HeLa SCAND1 KO 1 6156 -cellosaurus:CVCL_B2EP Abcam HeLa SCD KO 1 6157 -cellosaurus:CVCL_B2EQ Abcam HeLa SCD5 KO 1 6158 -cellosaurus:CVCL_B2ER Abcam HeLa SCFD2 KO 1 6159 -cellosaurus:CVCL_B2ES Abcam HeLa SCN1B KO 1 6160 -cellosaurus:CVCL_B2ET Abcam HeLa SCNN1D KO 1 6161 -cellosaurus:CVCL_B2EU Abcam HeLa SCRIB KO 1 6162 -cellosaurus:CVCL_B2EV Abcam HeLa SCYL2 KO 1 6163 -cellosaurus:CVCL_B2EW Abcam HeLa SDHAF2 KO 1 6164 -cellosaurus:CVCL_B2EX Abcam HeLa SEC16A KO 1 6165 -cellosaurus:CVCL_B2EY Abcam HeLa SELENBP1 KO 1 6166 -cellosaurus:CVCL_B2EZ Abcam HeLa SELENOS KO 1 6167 -cellosaurus:CVCL_B2F0 Abcam HeLa SENP5 KO 1 6168 -cellosaurus:CVCL_B2F1 Abcam HeLa SERPINB5 KO 1 6169 -cellosaurus:CVCL_B2F2 Abcam HeLa SERTAD3 KO 1 6170 -cellosaurus:CVCL_B2F3 Abcam HeLa SESN2 KO 1 6171 -cellosaurus:CVCL_B9VV Abcam HeLa SETD2 KO 1 6172 -cellosaurus:CVCL_B2F4 Abcam HeLa SETD7 KO 1 6173 -cellosaurus:CVCL_B2F5 Abcam HeLa SFN KO 1 6174 -cellosaurus:CVCL_B2F6 Abcam HeLa SH2D4A KO 1 6175 -cellosaurus:CVCL_B2F7 Abcam HeLa SHC2 KO 1 6176 -cellosaurus:CVCL_B2F8 Abcam HeLa SHC3 KO 1 6177 -cellosaurus:CVCL_B2F9 Abcam HeLa SHC4 KO 1 6178 -cellosaurus:CVCL_B2FA Abcam HeLa SHKBP1 KO 1 6179 -cellosaurus:CVCL_B2FB Abcam HeLa SIAH1 KO 1 6180 -cellosaurus:CVCL_B2FC Abcam HeLa SIK1 KO 1 6181 -cellosaurus:CVCL_B2FD Abcam HeLa SIKE1 KO 1 6182 -cellosaurus:CVCL_B2FE Abcam HeLa SIPA1 KO 1 6183 -cellosaurus:CVCL_B2FF Abcam HeLa SIRT5 KO 1 6184 -cellosaurus:CVCL_B2FG Abcam HeLa SIRT6 KO 1 6185 -cellosaurus:CVCL_B2FH Abcam HeLa SLC11A2 KO 1 6186 -cellosaurus:CVCL_B2FI Abcam HeLa SLC12A9 KO 1 6187 -cellosaurus:CVCL_B2FJ Abcam HeLa SLC17A5 KO 1 6188 -cellosaurus:CVCL_B2FK Abcam HeLa SLC1A4 KO 1 6189 -cellosaurus:CVCL_B2FL Abcam HeLa SLC20A2 KO 1 6190 -cellosaurus:CVCL_B2FM Abcam HeLa SLC22A5 KO 1 6191 -cellosaurus:CVCL_B2FN Abcam HeLa SLC25A13 KO 1 6192 -cellosaurus:CVCL_B2FP Abcam HeLa SLC25A20 KO 1 6193 -cellosaurus:CVCL_B2FQ Abcam HeLa SLC25A29 KO 1 6194 -cellosaurus:CVCL_B2FR Abcam HeLa SLC25A40 KO 1 6195 -cellosaurus:CVCL_B2FS Abcam HeLa SLC25A5 KO 1 6196 -cellosaurus:CVCL_B2FT Abcam HeLa SLC2A4 KO 1 6197 -cellosaurus:CVCL_B2FU Abcam HeLa SLC2A8 KO 1 6198 -cellosaurus:CVCL_B2FV Abcam HeLa SLC30A1 KO 1 6199 -cellosaurus:CVCL_B2FW Abcam HeLa SLC30A7 KO 1 6200 -cellosaurus:CVCL_B2FX Abcam HeLa SLC35A1 KO 1 6201 -cellosaurus:CVCL_B2FY Abcam HeLa SLC35A2 KO 1 6202 -cellosaurus:CVCL_B2FZ Abcam HeLa SLC35A5 KO 1 6203 -cellosaurus:CVCL_B2G0 Abcam HeLa SLC35B2 KO 1 6204 -cellosaurus:CVCL_B2G1 Abcam HeLa SLC35C1 KO 1 6205 -cellosaurus:CVCL_B2G2 Abcam HeLa SLC35E2B KO 1 6206 -cellosaurus:CVCL_B2G3 Abcam HeLa SLC38A5 KO 1 6207 -cellosaurus:CVCL_B2G4 Abcam HeLa SLC38A9 KO 1 6208 -cellosaurus:CVCL_B2G5 Abcam HeLa SLC39A1 KO 1 6209 -cellosaurus:CVCL_B2G6 Abcam HeLa SLC39A8 KO 1 6210 -cellosaurus:CVCL_B2G7 Abcam HeLa SLC39A9 KO 1 6211 -cellosaurus:CVCL_B2G8 Abcam HeLa SLC3A2 KO 1 6212 -cellosaurus:CVCL_B2G9 Abcam HeLa SLC43A3 KO 1 6213 -cellosaurus:CVCL_B2GA Abcam HeLa SLC44A1 KO 1 6214 -cellosaurus:CVCL_B2GB Abcam HeLa SLC50A1 KO 1 6215 -cellosaurus:CVCL_B2GC Abcam HeLa SLC52A2 KO 1 6216 -cellosaurus:CVCL_B2GD Abcam HeLa SLC7A6 KO 1 6217 -cellosaurus:CVCL_B2GE Abcam HeLa SLC9A3R1 KO 1 6218 -cellosaurus:CVCL_B2GF Abcam HeLa SLCO4A1 KO 1 6219 -cellosaurus:CVCL_B2GG Abcam HeLa SLPI KO 1 6220 -cellosaurus:CVCL_B2GH Abcam HeLa SMAD1 KO 1 6221 -cellosaurus:CVCL_B2GI Abcam HeLa SMAD2 KO 1 6222 -cellosaurus:CVCL_B2GJ Abcam HeLa SMAD3 KO 1 6223 -cellosaurus:CVCL_B2GK Abcam HeLa SMAD7 KO 1 6224 -cellosaurus:CVCL_B2GL Abcam HeLa SMARCA2 KO 1 6225 -cellosaurus:CVCL_B2GM Abcam HeLa SMARCC1 KO 1 6226 -cellosaurus:CVCL_B2GN Abcam HeLa SMC1B KO 1 6227 -cellosaurus:CVCL_B2GP Abcam HeLa SMIM4 KO 1 6228 -cellosaurus:CVCL_B2GQ Abcam HeLa SMURF2 KO 1 6229 -cellosaurus:CVCL_B2GR Abcam HeLa SNAI1 KO 1 6230 -cellosaurus:CVCL_B2GS Abcam HeLa SNAP29 KO 1 6231 -cellosaurus:CVCL_B2GT Abcam HeLa SNAPIN KO 1 6232 -cellosaurus:CVCL_B2GU Abcam HeLa SNCG KO 1 6233 -cellosaurus:CVCL_B2GV Abcam HeLa SNRK KO 1 6234 -cellosaurus:CVCL_B2GW Abcam HeLa SNRPB2 KO 1 6235 -cellosaurus:CVCL_B2GX Abcam HeLa SNX12 KO 1 6236 -cellosaurus:CVCL_B2GY Abcam HeLa SNX17 KO 1 6237 -cellosaurus:CVCL_B2GZ Abcam HeLa SNX2 KO 1 6238 -cellosaurus:CVCL_B2H0 Abcam HeLa SOAT1 KO 1 6239 -cellosaurus:CVCL_B2H1 Abcam HeLa SOCS4 KO 1 6240 -cellosaurus:CVCL_B0XV Abcam HeLa SORT1 KO 1 6241 -cellosaurus:CVCL_B2H2 Abcam HeLa SOX17 KO 1 6242 -cellosaurus:CVCL_B2H3 Abcam HeLa SP1 KO 1 6243 -cellosaurus:CVCL_B2H4 Abcam HeLa SP100 KO 1 6244 -cellosaurus:CVCL_B2H5 Abcam HeLa SPCS3 KO 1 6245 -cellosaurus:CVCL_B2H6 Abcam HeLa SPG11 KO 1 6246 -cellosaurus:CVCL_B2H7 Abcam HeLa SPOP KO 1 6247 -cellosaurus:CVCL_B2H8 Abcam HeLa SPP1 KO 1 6248 -cellosaurus:CVCL_B2H9 Abcam HeLa SPR KO 1 6249 -cellosaurus:CVCL_B2HA Abcam HeLa SQLE KO 1 6250 -cellosaurus:CVCL_B2HB Abcam HeLa SRD5A1 KO 1 6251 -cellosaurus:CVCL_B2HC Abcam HeLa SRGN KO 1 6252 -cellosaurus:CVCL_B2HD Abcam HeLa SS18 KO 1 6253 -cellosaurus:CVCL_B2HE Abcam HeLa SSBP3 KO 1 6254 -cellosaurus:CVCL_B2HF Abcam HeLa STAG2 KO 1 6255 -cellosaurus:CVCL_B2HG Abcam HeLa STAMBP KO 1 6256 -cellosaurus:CVCL_B2HH Abcam HeLa STAR KO 1 6257 -cellosaurus:CVCL_B2HI Abcam HeLa STAT1 KO 1 6258 -cellosaurus:CVCL_B2HJ Abcam HeLa STAT2 KO 1 6259 -cellosaurus:CVCL_B2HK Abcam HeLa STAT3 KO 1 6260 -cellosaurus:CVCL_B2HL Abcam HeLa STAT5B KO 1 6261 -cellosaurus:CVCL_B2HM Abcam HeLa STK10 KO 1 6262 -cellosaurus:CVCL_B2HN Abcam HeLa STK17A KO 1 6263 -cellosaurus:CVCL_B2HP Abcam HeLa STK3 KO 1 6264 -cellosaurus:CVCL_B2HQ Abcam HeLa STK38L KO 1 6265 -cellosaurus:CVCL_B2HR Abcam HeLa STK4 KO 1 6266 -cellosaurus:CVCL_B2HS Abcam HeLa STK40 KO 1 6267 -cellosaurus:CVCL_B2HT Abcam HeLa STS KO 1 6268 -cellosaurus:CVCL_B2HU Abcam HeLa STX17 KO 1 6269 -cellosaurus:CVCL_B2HV Abcam HeLa SUGP2 KO 1 6270 -cellosaurus:CVCL_B2HW Abcam HeLa SUGT1 KO 1 6271 -cellosaurus:CVCL_B2HX Abcam HeLa SURF6 KO 1 6272 -cellosaurus:CVCL_B2HY Abcam HeLa SUZ12 KO 1 6273 -cellosaurus:CVCL_B2HZ Abcam HeLa SYNJ1 KO 1 6274 -cellosaurus:CVCL_B2I0 Abcam HeLa SYNJ2 KO 1 6275 -cellosaurus:CVCL_B2I1 Abcam HeLa TACC2 KO 1 6276 -cellosaurus:CVCL_B2I2 Abcam HeLa TAF11 KO 1 6277 -cellosaurus:CVCL_B2I3 Abcam HeLa TAF12 KO 1 6278 -cellosaurus:CVCL_B2I4 Abcam HeLa TANK KO 1 6279 -cellosaurus:CVCL_B2I5 Abcam HeLa TAOK3 KO 1 6280 -cellosaurus:CVCL_B2I6 Abcam HeLa TAP2 KO 1 6281 -cellosaurus:CVCL_B2I7 Abcam HeLa TBC1D7 KO 1 6282 -cellosaurus:CVCL_B2I8 Abcam HeLa TBKBP1 KO 1 6283 -cellosaurus:CVCL_B2I9 Abcam HeLa TBL1X KO 1 6284 -cellosaurus:CVCL_B2IA Abcam HeLa TCF7 KO 1 6285 -cellosaurus:CVCL_B2IB Abcam HeLa TDP2 KO 1 6286 -cellosaurus:CVCL_B2IC Abcam HeLa TFAP2A KO 1 6287 -cellosaurus:CVCL_B2ID Abcam HeLa TFAP4 KO 1 6288 -cellosaurus:CVCL_B2IE Abcam HeLa TFG KO 1 6289 -cellosaurus:CVCL_B2IF Abcam HeLa TGFB1 KO 1 6290 -cellosaurus:CVCL_B2IG Abcam HeLa TGM2 KO 1 6291 -cellosaurus:CVCL_B2IH Abcam HeLa THAP7 KO 1 6292 -cellosaurus:CVCL_B2II Abcam HeLa THOC3 KO 1 6293 -cellosaurus:CVCL_B2IJ Abcam HeLa THY1 KO 1 6294 -cellosaurus:CVCL_B2IK Abcam HeLa TIAL1 KO 1 6295 -cellosaurus:CVCL_B2IL Abcam HeLa TJP1 KO 1 6296 -cellosaurus:CVCL_B2IM Abcam HeLa TLE1 KO 1 6297 -cellosaurus:CVCL_B2IN Abcam HeLa TLK1 KO 1 6298 -cellosaurus:CVCL_B2IP Abcam HeLa TM4SF1 KO 1 6299 -cellosaurus:CVCL_B2IQ Abcam HeLa TM9SF4 KO 1 6300 -cellosaurus:CVCL_B2IR Abcam HeLa TMEM126A KO 1 6301 -cellosaurus:CVCL_B2IS Abcam HeLa TMEM175 KO 1 6302 -cellosaurus:CVCL_B2IT Abcam HeLa TMEM30A KO 1 6303 -cellosaurus:CVCL_B2IU Abcam HeLa TMEM69 KO 1 6304 -cellosaurus:CVCL_B2IV Abcam HeLa TMOD3 KO 1 6305 -cellosaurus:CVCL_B2IW Abcam HeLa TMPRSS6 KO 1 6306 -cellosaurus:CVCL_B2IX Abcam HeLa TMUB1 KO 1 6307 -cellosaurus:CVCL_B2IY Abcam HeLa TMUB1 partial KO 1 6308 -cellosaurus:CVCL_B2IZ Abcam HeLa TNC KO 1 6309 -cellosaurus:CVCL_B2J0 Abcam HeLa TNFAIP3 KO 1 6310 -cellosaurus:CVCL_B2J1 Abcam HeLa TNFRSF10A KO 1 6311 -cellosaurus:CVCL_B2J2 Abcam HeLa TNFRSF10B KO 1 6312 -cellosaurus:CVCL_B2J3 Abcam HeLa TNFRSF1A KO 1 6313 -cellosaurus:CVCL_B2J4 Abcam HeLa TNFRSF8 KO 1 6314 -cellosaurus:CVCL_B2J5 Abcam HeLa TNFSF10 KO 1 6315 -cellosaurus:CVCL_B2J6 Abcam HeLa TNIP1 KO 1 6316 -cellosaurus:CVCL_B2J7 Abcam HeLa TNK1 KO 1 6317 -cellosaurus:CVCL_B2J8 Abcam HeLa TNKS1BP1 KO 1 6318 -cellosaurus:CVCL_B2J9 Abcam HeLa TOB1 KO 1 6319 -cellosaurus:CVCL_B2JA Abcam HeLa TOMM34 KO 1 6320 -cellosaurus:CVCL_B2JB Abcam HeLa TOMM70A KO 1 6321 -cellosaurus:CVCL_B2JC Abcam HeLa TOR3A KO 1 6322 -cellosaurus:CVCL_B2JD Abcam HeLa TP53I3 KO 1 6323 -cellosaurus:CVCL_B2JE Abcam HeLa TPD52L1 KO 1 6324 -cellosaurus:CVCL_B2JF Abcam HeLa TPGS2 KO 1 6325 -cellosaurus:CVCL_B2JG Abcam HeLa TRAF3 KO 1 6326 -cellosaurus:CVCL_B2JH Abcam HeLa TRAF5 KO 1 6327 -cellosaurus:CVCL_B2JI Abcam HeLa TRAF6 KO 1 6328 -cellosaurus:CVCL_B2JJ Abcam HeLa TRAF7 KO 1 6329 -cellosaurus:CVCL_B2JK Abcam HeLa TREX1 KO 1 6330 -cellosaurus:CVCL_B2JL Abcam HeLa TRIB3 KO 1 6331 -cellosaurus:CVCL_B2JM Abcam HeLa TRIM16 KO 1 6332 -cellosaurus:CVCL_B2JN Abcam HeLa TRIM24 KO 1 6333 -cellosaurus:CVCL_B2JP Abcam HeLa TRIM29 KO 1 6334 -cellosaurus:CVCL_B2JQ Abcam HeLa TRIM7 KO 1 6335 -cellosaurus:CVCL_B2JR Abcam HeLa TRMT2A KO 1 6336 -cellosaurus:CVCL_B2JS Abcam HeLa TRPM7 KO 1 6337 -cellosaurus:CVCL_B2JT Abcam HeLa TSC22D4 KO 1 6338 -cellosaurus:CVCL_B2JU Abcam HeLa TSPO KO 1 6339 -cellosaurus:CVCL_B2JV Abcam HeLa TSSK3 KO 1 6340 -cellosaurus:CVCL_B2JW Abcam HeLa TSSK4 KO 1 6341 -cellosaurus:CVCL_B2JX Abcam HeLa TTC3 KO 1 6342 -cellosaurus:CVCL_B2JY Abcam HeLa TUBB3 KO 1 6343 -cellosaurus:CVCL_B2JZ Abcam HeLa TWF1 KO 1 6344 -cellosaurus:CVCL_B2K0 Abcam HeLa TXLNA KO 1 6345 -cellosaurus:CVCL_B2K1 Abcam HeLa TXNDC9 KO 1 6346 -cellosaurus:CVCL_B2K2 Abcam HeLa TYMP KO 1 6347 -cellosaurus:CVCL_B9VW Abcam HeLa UBE2C KO 1 6348 -cellosaurus:CVCL_B2K3 Abcam HeLa UBE2D4 KO 1 6349 -cellosaurus:CVCL_B2K4 Abcam HeLa UBE2F KO 1 6350 -cellosaurus:CVCL_B2K5 Abcam HeLa UBE2H KO 1 6351 -cellosaurus:CVCL_B2K6 Abcam HeLa UBE2J1 KO 1 6352 -cellosaurus:CVCL_B2K7 Abcam HeLa UBE2K KO 1 6353 -cellosaurus:CVCL_B2K8 Abcam HeLa UBE2O KO 1 6354 -cellosaurus:CVCL_B2K9 Abcam HeLa UBE3B KO 1 1 6355 -cellosaurus:CVCL_B2KA Abcam HeLa UBE3B KO 2 1 6356 -cellosaurus:CVCL_B2KB Abcam HeLa UBQLN1 KO 1 6357 -cellosaurus:CVCL_B2KC Abcam HeLa UBXN4 KO 1 6358 -cellosaurus:CVCL_B2KD Abcam HeLa UGCG KO 1 6359 -cellosaurus:CVCL_B2KE Abcam HeLa UHMK1 KO 1 6360 -cellosaurus:CVCL_B2KF Abcam HeLa UNG KO 1 6361 -cellosaurus:CVCL_B2KG Abcam HeLa USB1 KO 1 6362 -cellosaurus:CVCL_B2KH Abcam HeLa USP1 KO 1 6363 -cellosaurus:CVCL_B2KI Abcam HeLa USP14 KO 1 6364 -cellosaurus:CVCL_B2KJ Abcam HeLa USP18 KO 1 6365 -cellosaurus:CVCL_B2KK Abcam HeLa USP22 KO 1 6366 -cellosaurus:CVCL_B2KL Abcam HeLa USP34 KO 1 6367 -cellosaurus:CVCL_B2KM Abcam HeLa USP40 KO 1 1 6368 -cellosaurus:CVCL_B2KN Abcam HeLa USP40 KO 2 1 6369 -cellosaurus:CVCL_B2KP Abcam HeLa USP42 KO 1 6370 -cellosaurus:CVCL_B2KQ Abcam HeLa USP54 KO 1 6371 -cellosaurus:CVCL_B2KR Abcam HeLa USP8 KO 1 6372 -cellosaurus:CVCL_B2KS Abcam HeLa USP9X KO 1 6373 -cellosaurus:CVCL_B2KT Abcam HeLa VAC14 KO 1 6374 -cellosaurus:CVCL_B2KU Abcam HeLa VASP KO 1 6375 -cellosaurus:CVCL_B2KV Abcam HeLa VAV1 KO 1 6376 -cellosaurus:CVCL_B2KW Abcam HeLa VAV2 KO 1 6377 -cellosaurus:CVCL_B2KX Abcam HeLa VAV3 KO 1 6378 -cellosaurus:CVCL_B2KY Abcam HeLa VCL KO 1 6379 -cellosaurus:CVCL_B2KZ Abcam HeLa VCPIP1 KO 1 6380 -cellosaurus:CVCL_B2L0 Abcam HeLa VDR KO 1 6381 -cellosaurus:CVCL_B2L1 Abcam HeLa VEGFA KO 1 6382 -cellosaurus:CVCL_B2L2 Abcam HeLa VIM KO 1 6383 -cellosaurus:CVCL_B2L3 Abcam HeLa VKORC1 KO 1 6384 -cellosaurus:CVCL_B2L4 Abcam HeLa VOPP1 KO 1 6385 -cellosaurus:CVCL_B2L5 Abcam HeLa VRK2 KO 1 6386 -cellosaurus:CVCL_B2L6 Abcam HeLa VRK3 KO 1 6387 -cellosaurus:CVCL_B2L7 Abcam HeLa VTI1B KO 1 6388 -cellosaurus:CVCL_B2L8 Abcam HeLa WASF2 KO 1 6389 -cellosaurus:CVCL_B2L9 Abcam HeLa WBP2 KO 1 6390 -cellosaurus:CVCL_B2LA Abcam HeLa WDR13 KO 1 6391 -cellosaurus:CVCL_B2LB Abcam HeLa WDR4 KO 1 6392 -cellosaurus:CVCL_B2LC Abcam HeLa WDR41 KO 1 6393 -cellosaurus:CVCL_B2LD Abcam HeLa WDR45 KO 1 6394 -cellosaurus:CVCL_B2LE Abcam HeLa WDR59 KO 1 6395 -cellosaurus:CVCL_B2LF Abcam HeLa WDR6 KO 1 6396 -cellosaurus:CVCL_B2LG Abcam HeLa WNT5A KO 1 6397 -cellosaurus:CVCL_B2LH Abcam HeLa WRNIP1 KO 1 6398 -cellosaurus:CVCL_B2LI Abcam HeLa WSB2 KO 1 6399 -cellosaurus:CVCL_B2LJ Abcam HeLa WWC2 KO 1 6400 -cellosaurus:CVCL_B9VX Abcam HeLa WWTR1 KO 1 6401 -cellosaurus:CVCL_B2LK Abcam HeLa YES1 KO 1 6402 -cellosaurus:CVCL_B2LL Abcam HeLa YY1AP1 KO 1 6403 -cellosaurus:CVCL_B2LM Abcam HeLa ZAP70 KO 1 6404 -cellosaurus:CVCL_B2LN Abcam HeLa ZCCHC17 KO 1 6405 -cellosaurus:CVCL_B2LP Abcam HeLa ZDHHC6 KO 1 6406 -cellosaurus:CVCL_B2LQ Abcam HeLa ZDHHC7 KO 1 6407 -cellosaurus:CVCL_B2LR Abcam HeLa ZMAT3 KO 1 6408 -cellosaurus:CVCL_B2LS Abcam HeLa ZMPSTE24 KO 1 6409 -cellosaurus:CVCL_B2LT Abcam HeLa ZMYM3 KO 1 6410 -cellosaurus:CVCL_B2LU Abcam HeLa ZNF326 KO 1 6411 -cellosaurus:CVCL_B2LV Abcam HeLa ZNF609 KO 1 6412 -cellosaurus:CVCL_B2LW Abcam HeLa ZNF622 KO 1 6413 -cellosaurus:CVCL_B2LX Abcam HeLa ZNF692 KO 1 6414 -cellosaurus:CVCL_B2LY Abcam HeLa ZNHIT6 KO 1 6415 -cellosaurus:CVCL_B2LZ Abcam HeLa ZRANB1 KO 1 6416 -cellosaurus:CVCL_6872 ACC-2 1 6417 -cellosaurus:CVCL_6874 ACC-M 2 6418 -cellosaurus:CVCL_6873 ACC-3 1 6419 -cellosaurus:CVCL_8169 ADLC-5M2 1 6420 -cellosaurus:CVCL_8170 AKI 1 6421 -cellosaurus:CVCL_D631 AO 1 6422 -cellosaurus:CVCL_1904 AV3 1 6423 -cellosaurus:CVCL_A5VW F-49-1 2 6424 -cellosaurus:CVCL_0164 BCaP-37 1 6425 -cellosaurus:CVCL_WX21 BC-DS 2 6426 -cellosaurus:CVCL_WX22 BC-TS 2 6427 -cellosaurus:CVCL_A033 BCC-1/KMC 1 6428 -cellosaurus:CVCL_5492 BEL-7402 1 6429 -cellosaurus:CVCL_5493 BEL-7402/5-FU 2 6430 -cellosaurus:CVCL_M184 BEL-7402/5'-DFUR 2 6431 -cellosaurus:CVCL_6568 BEL-7404 1 6432 -cellosaurus:CVCL_IP16 BEL-7404-CP.3 2 6433 -cellosaurus:CVCL_IP07 BEL-7404-CP1 3 6434 -cellosaurus:CVCL_IP08 BEL-7404-CP7.5 4 6435 -cellosaurus:CVCL_IP09 BEL-7404-CP20 5 6436 -cellosaurus:CVCL_3360 BGC-823 1 6437 -cellosaurus:CVCL_D280 BrCA 5 1 6438 -cellosaurus:CVCL_1858 BT-B [Human HeLa contaminated cell line] 1 6439 -cellosaurus:CVCL_2322 C16 1 6440 -cellosaurus:CVCL_UY83 CaES-17 1 6441 -cellosaurus:CVCL_M091 CaOV 1 6442 -cellosaurus:CVCL_8444 CaVe 1 6443 -cellosaurus:CVCL_WN72 CaVe K-10V 2 6444 -cellosaurus:CVCL_KS05 CellSensor ESRE-bla HeLa 1 6445 -cellosaurus:CVCL_KS08 CellSensor HSE-bla HeLa 1 6446 -cellosaurus:CVCL_KS75 CellSensor MMTV-bla HeLa 1 6447 -cellosaurus:CVCL_KS77 CellSensor T-REx FOXO3-DBE-bla HeLa 1 6448 -cellosaurus:CVCL_KS76 CellSensor T-REx NICD-CSL-bla HeLa 1 6449 -cellosaurus:CVCL_0238 Chang Liver 1 6450 -cellosaurus:CVCL_M022 CM-319 1 6451 -cellosaurus:CVCL_D297 CMP [Human contaminated rectal cancer] 1 6452 -cellosaurus:CVCL_L115 CMPII C2 1 6453 -cellosaurus:CVCL_8669 D18T 1 6454 -cellosaurus:CVCL_D279 DAPT 1 6455 -cellosaurus:CVCL_8674 Detroit 30A 1 6456 -cellosaurus:CVCL_2436 Detroit 6 1 6457 -cellosaurus:CVCL_M618 Detroit 6 clone 12 2 6458 -cellosaurus:CVCL_8188 Detroit 98 1 6459 -cellosaurus:CVCL_8192 Detroit 98S 2 6460 -cellosaurus:CVCL_8189 Detroit 98/AG 3 6461 -cellosaurus:CVCL_A9AQ Detroit 98/AGR 4 6462 -cellosaurus:CVCL_U961 Detroit 98/AH 4 6463 -cellosaurus:CVCL_8191 Detroit 98/AH-R 5 6464 -cellosaurus:CVCL_8190 Detroit 98/AH-2 4 6465 -cellosaurus:CVCL_2884 D98/AH2 Clone B 5 6466 -cellosaurus:CVCL_A9AR Detroit 98/Apt 3 6467 -cellosaurus:CVCL_8344 EB33 1 6468 -cellosaurus:CVCL_8686 ElCo 1 6469 -cellosaurus:CVCL_8193 EPLC-32M1 1 6470 -cellosaurus:CVCL_8194 EPLC-65H 1 6471 -cellosaurus:CVCL_WM74 EPLC-65M2 2 6472 -cellosaurus:CVCL_8351 ESP-1 1 6473 -cellosaurus:CVCL_7262 EUE 1 6474 -cellosaurus:CVCL_A5LI EUE6 2 6475 -cellosaurus:CVCL_8688 F255A4 1 6476 -cellosaurus:CVCL_1905 FL 1 6477 -cellosaurus:CVCL_6395 GH329 1 6478 -cellosaurus:CVCL_6396 GH354 1 6479 -cellosaurus:CVCL_K171 GH364 1 6480 -cellosaurus:CVCL_2254 Girardi Heart 1 6481 -cellosaurus:CVCL_1815 Girardi Heart clone 2 2 6482 -cellosaurus:CVCL_1816 Girardi Heart clone 7 2 6483 -cellosaurus:CVCL_3371 GLC-82 1 6484 -cellosaurus:CVCL_6906 HAC-84 2 6485 -cellosaurus:CVCL_WL58 GNM 1 6486 -cellosaurus:CVCL_7669 H-494 1 6487 -cellosaurus:CVCL_3334 H1HeLa 1 6488 -cellosaurus:CVCL_F269 H454 1 6489 -cellosaurus:CVCL_D281 HBT-3 1 6490 -cellosaurus:CVCL_U962 G-11 2 6491 -cellosaurus:CVCL_M746 HBT-E 2 6492 -cellosaurus:CVCL_J652 HBT-39b 1 6493 -cellosaurus:CVCL_M619 HCE 1 6494 -cellosaurus:CVCL_M624 HEK 1 6495 -cellosaurus:CVCL_M625 HEK/HRV 2 6496 -cellosaurus:CVCL_1276 HeLa 229 1 6497 -cellosaurus:CVCL_B3LW HeLa-ACE2 2 6498 -cellosaurus:CVCL_B3LV HeLa-ACE2-TMPRSS2 2 6499 -cellosaurus:CVCL_B3M4 HeLa-TMPRSS2 2 6500 -cellosaurus:CVCL_3379 HeLa 382 1 6501 -cellosaurus:CVCL_3380 HeLa 422 1 6502 -cellosaurus:CVCL_3381 HeLa 432 1 6503 -cellosaurus:CVCL_2933 HeLa AG 1 6504 -cellosaurus:CVCL_B3SH HeLa ANXA11 KO 1 6505 -cellosaurus:CVCL_2482 HeLa B 1 6506 -cellosaurus:CVCL_W341 HeLa B-50 1 6507 -cellosaurus:CVCL_W342 HeLa C12 1 6508 -cellosaurus:CVCL_U339 HeLa CD4+ Clone1022 1 6509 -cellosaurus:CVCL_X634 HeLa CD4-Clone 6C 1 6510 -cellosaurus:CVCL_2483 HeLa DH 1 6511 -cellosaurus:CVCL_ZF12 HeLa E 1 6512 -cellosaurus:CVCL_JA21 HeLa EV2 1 6513 -cellosaurus:CVCL_ZM01 HeLa FLAG-SNAP-hTERT 1 6514 -cellosaurus:CVCL_A8VH HeLa FUS KO 1 6515 -cellosaurus:CVCL_UP51 HeLa GFP-LC3-RFP-LC3deltaG 1 6516 -cellosaurus:CVCL_C0QV HeLa GFP-PEAK3 1 6517 -cellosaurus:CVCL_ZM02 HeLa H2B-GFP 1 6518 -cellosaurus:CVCL_RJ62 HeLa His10-SUMO-2 K0-Q87R 1 6519 -cellosaurus:CVCL_C0RH HeLa HNRNPD-/- cl10 1 6520 -cellosaurus:CVCL_C0RI HeLa HNRNPD-/- cl4 1 6521 -cellosaurus:CVCL_9T98 HeLa ICRP 1 6522 -cellosaurus:CVCL_9T99 HeLa ICRP Bcl-2-mCherry 2 6523 -cellosaurus:CVCL_9U00 HeLa ICRP Bcl-XL-mCherry 2 6524 -cellosaurus:CVCL_9U01 HeLa ICRP FLIP-L-mCherry 2 6525 -cellosaurus:CVCL_9U02 HeLa ICRP FLIP-S-mCherry 2 6526 -cellosaurus:CVCL_B0A4 HeLa IFITM1/2/3-KO 1 6527 -cellosaurus:CVCL_B0A5 HeLa IFITM2/3-KO 1 6528 -cellosaurus:CVCL_B7MV HeLa ITCH KO 1 6529 -cellosaurus:CVCL_W331 HeLa JW36 1 6530 -cellosaurus:CVCL_V312 HeLa K11 1 6531 -cellosaurus:CVCL_V313 HeLa K11A-HG-1 2 6532 -cellosaurus:CVCL_1922 HeLa Kyoto 1 6533 -cellosaurus:CVCL_L802 HeLa Kyoto EGFP-alpha-tubulin/H2B-mCherry 2 6534 -cellosaurus:CVCL_1D60 HeLa Kyoto EGFP-Cap-D2 2 6535 -cellosaurus:CVCL_1D61 HeLa Kyoto EGFP-EB3 2 6536 -cellosaurus:CVCL_1D63 HeLa Kyoto EGFP-H2B 2 6537 -cellosaurus:CVCL_1D64 HeLa Kyoto EGFP-Kleisin-beta 2 6538 -cellosaurus:CVCL_1D62 HeLa Kyoto EGFP-LaminA/H2B-mCherry 2 6539 -cellosaurus:CVCL_UR41 HeLa Kyoto EGFP-LaminB1/H2B-mCherry 2 6540 -cellosaurus:CVCL_1D65 HeLa Kyoto Mad2-LAP/H2B-mCherry 2 6541 -cellosaurus:CVCL_UR42 HK-2xCRISPR-CAP-D2-mEGFP no.272-78 2 6542 -cellosaurus:CVCL_VL12 HK-2xZFN-mEGFP-Nup107 2 6543 -cellosaurus:CVCL_B7FT HK-2xZFN-Smc4-mEGFP no.82-68 2 6544 -cellosaurus:CVCL_UR44 HK-CRISPR-CAP-D3-mEGFP no.16 2 6545 -cellosaurus:CVCL_UR43 HK-CRISPR-CAP-H-mEGFP no.86 2 6546 -cellosaurus:CVCL_UR45 HK-CRISPR-CAP-H2-mEGFP no.67 2 6547 -cellosaurus:CVCL_UR46 HK-CRISPR-mEGFP-CAP-H2 2 6548 -cellosaurus:CVCL_B7FS HK-CRISPR-mEGFP-Nup358 no.97 2 6549 -cellosaurus:CVCL_UR49 HK-CRISPR-NUP205-mEGFP no.81 2 6550 -cellosaurus:CVCL_VL13 HK-ZFN-AURKB-mEGFP 2 6551 -cellosaurus:CVCL_VL14 HK-ZFN-AURKB-mEGFP/ZFN-INCENP-mCherry 2 6552 -cellosaurus:CVCL_UR47 HK-ZFN-mEGFP-CAP-H 2 6553 -cellosaurus:CVCL_UR48 HK-ZFN-SMC4-mEGFP 2 6554 -cellosaurus:CVCL_IM62 HeLa LChm 1 6555 -cellosaurus:CVCL_R965 HeLa M 1 6556 -cellosaurus:CVCL_A6ZZ HeLa M KIF13A-KO 2 6557 -cellosaurus:CVCL_A7AA HeLa M KIF13B-KO 2 6558 -cellosaurus:CVCL_A7AB HeLa M KIF13A/B-DKO 2 6559 -cellosaurus:CVCL_A7AI HeLa M Rab10-KO 2 6560 -cellosaurus:CVCL_A7AJ HeLa M Rab22-DKO 2 6561 -cellosaurus:CVCL_A6ZY HeLa M Rab8-DKO 2 6562 -cellosaurus:CVCL_AR66 HeLa-Mitotrap 2 6563 -cellosaurus:CVCL_AR67 HeLa-Mitotrap-Ap1g1-FKBP 3 6564 -cellosaurus:CVCL_AR69 HeLa-Mitotrap-Ap2a2-FKBP 3 6565 -cellosaurus:CVCL_AR70 HeLa-Mitotrap-GGA2-FKBP 3 6566 -cellosaurus:CVCL_A8DV HeLa NEK1 KO 1 6567 -cellosaurus:CVCL_1277 HeLa NR1 1 6568 -cellosaurus:CVCL_DF41 HeLa NucLight Green 1 6569 -cellosaurus:CVCL_DF42 HeLa NucLight Red 1 6570 -cellosaurus:CVCL_2484 HeLa Ohio 1 6571 -cellosaurus:CVCL_WH95 HeLa P110 1 6572 -cellosaurus:CVCL_UF72 HeLa P75 1 6573 -cellosaurus:CVCL_JA22 HeLa PF 1 6574 -cellosaurus:CVCL_A9I6 HeLa POM121-mCherry 1 6575 -cellosaurus:CVCL_A7AS HeLa PRDX6 KO 1 6576 -cellosaurus:CVCL_M763 HeLa R19 1 6577 -cellosaurus:CVCL_UR50 HeLa R19 FlpIn TREx 2 6578 -cellosaurus:CVCL_UR51 HeLa R19 FlpIn TREx H2B-Cherry/NS3-CMPK-hLBR1TM-mEGFP 3 6579 -cellosaurus:CVCL_0058 HeLa S3 1 6580 -cellosaurus:CVCL_WH96 HeLa 292 2 6581 -cellosaurus:CVCL_2320 HeLa BU-25 2 6582 -cellosaurus:CVCL_VS42 HeLa EGFP-654 2 6583 -cellosaurus:CVCL_WH97 HeLa MR 2 6584 -cellosaurus:CVCL_4W41 HeLa PurRII7 2 6585 -cellosaurus:CVCL_2934 HeLa S3 (sc) 2 6586 -cellosaurus:CVCL_ZM48 HeLa S3 9IV 2 6587 -cellosaurus:CVCL_A0DW HeLa S3 AGO2KO 2 6588 -cellosaurus:CVCL_HP86 HeLa S3 EGFP-alpha-tubulin/H2B-mCherry 2 6589 -cellosaurus:CVCL_HP87 HeLa S3 EGFP-H2B 2 6590 -cellosaurus:CVCL_U209 HeLa S3 mer- 2 6591 -cellosaurus:CVCL_U180 MR1-3 3 6592 -cellosaurus:CVCL_U181 MR10-1 3 6593 -cellosaurus:CVCL_U185 ACr41 4 6594 -cellosaurus:CVCL_U186 ACr42 4 6595 -cellosaurus:CVCL_U182 MR11 3 6596 -cellosaurus:CVCL_U183 MR6 3 6597 -cellosaurus:CVCL_U184 MR8 3 6598 -cellosaurus:CVCL_C2VN HeLa S3 penta KO 2 6599 -cellosaurus:CVCL_C2VP HeLa S3 penta KO-ATG13 KO 3 6600 -cellosaurus:CVCL_C2VQ HeLa S3 penta KO-ATG14 KO 3 6601 -cellosaurus:CVCL_C2VR HeLa S3 penta KO-TBK1 KO 3 6602 -cellosaurus:CVCL_C2VS HeLa S3 penta KO-ULK1/ULK2 DKO 3 6603 -cellosaurus:CVCL_C2VT HeLa S3 penta KO-TBK1/ULK1/ULK2 TKO 4 6604 -cellosaurus:CVCL_KU44 HeLa S3 Tet-Off 2 6605 -cellosaurus:CVCL_XV61 HeLa S3/HA-E2F1 2 6606 -cellosaurus:CVCL_UM63 HeLa-2T 2 6607 -cellosaurus:CVCL_VM98 HeLa/Fucci(CA)2 2 6608 -cellosaurus:CVCL_A7AU HeLa/Fucci(CA)5 2 6609 -cellosaurus:CVCL_A7AV HeLa/Fucci(SA)5 2 6610 -cellosaurus:CVCL_A7NW PRHC-1 2 6611 -cellosaurus:CVCL_B0XU HeLa SIGMAR1 KO 1 6612 -cellosaurus:CVCL_KT28 HeLa SilenciX ABL1 1 6613 -cellosaurus:CVCL_KT29 HeLa SilenciX ADAM17 1 6614 -cellosaurus:CVCL_KT30 HeLa SilenciX AKT1 1 6615 -cellosaurus:CVCL_KT31 HeLa SilenciX APE1 1 6616 -cellosaurus:CVCL_KT32 HeLa SilenciX Argonaute 2 1 6617 -cellosaurus:CVCL_KT33 HeLa SilenciX Artemis 1 6618 -cellosaurus:CVCL_KT34 HeLa SilenciX ATM 1 6619 -cellosaurus:CVCL_KT35 HeLa SilenciX ATP6AP2 1 6620 -cellosaurus:CVCL_KT36 HeLa SilenciX ATR 1 6621 -cellosaurus:CVCL_KT37 HeLa SilenciX BAP1 1 6622 -cellosaurus:CVCL_KT38 HeLa SilenciX BAX 1 6623 -cellosaurus:CVCL_KT39 HeLa SilenciX BCL2 1 6624 -cellosaurus:CVCL_KT40 HeLa SilenciX BID 1 6625 -cellosaurus:CVCL_KT41 HeLa SilenciX BLM 1 6626 -cellosaurus:CVCL_KT42 HeLa SilenciX BRCA1 1 6627 -cellosaurus:CVCL_KT43 HeLa SilenciX BRCA2 1 6628 -cellosaurus:CVCL_KT44 HeLa SilenciX BTG2 1 6629 -cellosaurus:CVCL_KT45 HeLa SilenciX Caspase 3 1 6630 -cellosaurus:CVCL_KT46 HeLa SilenciX Caspase 9 1 6631 -cellosaurus:CVCL_KT47 HeLa SilenciX CDK2 1 6632 -cellosaurus:CVCL_KT27 HeLa SilenciX Control 1 6633 -cellosaurus:CVCL_KT48 HeLa SilenciX COX2 1 6634 -cellosaurus:CVCL_KT49 HeLa SilenciX CTNNB1 1 6635 -cellosaurus:CVCL_KT50 HeLa SilenciX DDB2 1 6636 -cellosaurus:CVCL_KT51 HeLa SilenciX DIABLO 1 6637 -cellosaurus:CVCL_KT52 HeLa SilenciX DNA-PKcs 1 6638 -cellosaurus:CVCL_KT53 HeLa SilenciX ERCC1 1 6639 -cellosaurus:CVCL_KT54 HeLa SilenciX Exportin 5 1 6640 -cellosaurus:CVCL_KT55 HeLa SilenciX FADD 1 6641 -cellosaurus:CVCL_KT56 HeLa SilenciX FancD2 1 6642 -cellosaurus:CVCL_KT57 HeLa SilenciX FEN1 1 6643 -cellosaurus:CVCL_KT58 HeLa SilenciX GNAQ 1 6644 -cellosaurus:CVCL_KT59 HeLa SilenciX GPS1 1 6645 -cellosaurus:CVCL_KT60 HeLa SilenciX GPX8 1 6646 -cellosaurus:CVCL_KT61 HeLa SilenciX HDAC1 1 6647 -cellosaurus:CVCL_KT62 HeLa SilenciX HIF1A 1 6648 -cellosaurus:CVCL_KT63 HeLa SilenciX Hif2alpha 1 6649 -cellosaurus:CVCL_KT64 HeLa SilenciX HMG1L1 1 6650 -cellosaurus:CVCL_KT65 HeLa SilenciX HMGB1 1 6651 -cellosaurus:CVCL_KT66 HeLa SilenciX HR23A 1 6652 -cellosaurus:CVCL_KT67 HeLa SilenciX HR23B 1 6653 -cellosaurus:CVCL_KT68 HeLa SilenciX HuR 1 6654 -cellosaurus:CVCL_KT69 HeLa SilenciX KIN17 1 6655 -cellosaurus:CVCL_KT70 HeLa SilenciX LigI 1 6656 -cellosaurus:CVCL_KT71 HeLa SilenciX LigIII 1 6657 -cellosaurus:CVCL_KT72 HeLa SilenciX LigIV 1 6658 -cellosaurus:CVCL_KT73 HeLa SilenciX MAPK1 1 6659 -cellosaurus:CVCL_KT74 HeLa SilenciX MCU 1 6660 -cellosaurus:CVCL_KT75 HeLa SilenciX MLH1 1 6661 -cellosaurus:CVCL_KT76 HeLa SilenciX MRE11 1 6662 -cellosaurus:CVCL_KT77 HeLa SilenciX MSH2 1 6663 -cellosaurus:CVCL_KT78 HeLa SilenciX MTERFD2 1 6664 -cellosaurus:CVCL_KT79 HeLa SilenciX NBS1 1 6665 -cellosaurus:CVCL_KT80 HeLa SilenciX NCL 1 6666 -cellosaurus:CVCL_KT81 HeLa SilenciX NEIL1 1 6667 -cellosaurus:CVCL_KT82 HeLa SilenciX NF1 1 6668 -cellosaurus:CVCL_KT83 HeLa SilenciX NRF2 1 6669 -cellosaurus:CVCL_KT84 HeLa SilenciX NUDCD1 1 6670 -cellosaurus:CVCL_KT85 HeLa SilenciX Ogg1 1 6671 -cellosaurus:CVCL_KT86 HeLa SilenciX p21 1 6672 -cellosaurus:CVCL_KT87 HeLa SilenciX p53 1 6673 -cellosaurus:CVCL_KT88 HeLa SilenciX PARG 1 6674 -cellosaurus:CVCL_KT89 HeLa SilenciX PARP1 1 6675 -cellosaurus:CVCL_KT90 HeLa SilenciX PARP2 1 6676 -cellosaurus:CVCL_KT91 HeLa SilenciX PCNA 1 6677 -cellosaurus:CVCL_KT92 HeLa SilenciX PIK3CD 1 6678 -cellosaurus:CVCL_KT93 HeLa SilenciX PKCalpha 1 6679 -cellosaurus:CVCL_KT94 HeLa SilenciX PolH 1 6680 -cellosaurus:CVCL_KT95 HeLa SilenciX PRDX1 1 6681 -cellosaurus:CVCL_KT96 HeLa SilenciX PRDX2 1 6682 -cellosaurus:CVCL_KT97 HeLa SilenciX Rad50 1 6683 -cellosaurus:CVCL_KT98 HeLa SilenciX Rad54A 1 6684 -cellosaurus:CVCL_KT99 HeLa SilenciX Rad54B 1 6685 -cellosaurus:CVCL_KU00 HeLa SilenciX RB 1 6686 -cellosaurus:CVCL_KU01 HeLa SilenciX RHOQ 1 6687 -cellosaurus:CVCL_KU02 HeLa SilenciX Septin 9 1 6688 -cellosaurus:CVCL_KU03 HeLa SilenciX SIRT1 1 6689 -cellosaurus:CVCL_KU04 HeLa SilenciX SNAPIN 1 6690 -cellosaurus:CVCL_KU05 HeLa SilenciX SOD2 1 6691 -cellosaurus:CVCL_KU06 HeLa SilenciX SORCIN 1 6692 -cellosaurus:CVCL_KU07 HeLa SilenciX SSX2IP 1 6693 -cellosaurus:CVCL_KU08 HeLa SilenciX STAT1 1 6694 -cellosaurus:CVCL_KU09 HeLa SilenciX THTPA 1 6695 -cellosaurus:CVCL_KU10 HeLa SilenciX TMSB4X 1 6696 -cellosaurus:CVCL_KU11 HeLa SilenciX TNFR1 1 6697 -cellosaurus:CVCL_KU12 HeLa SilenciX TP53BP1 1 6698 -cellosaurus:CVCL_KU13 HeLa SilenciX TRAILR2 1 6699 -cellosaurus:CVCL_KU14 HeLa SilenciX TRIO 1 6700 -cellosaurus:CVCL_KU15 HeLa SilenciX TXNRD2 1 6701 -cellosaurus:CVCL_KU16 HeLa SilenciX USP11 1 6702 -cellosaurus:CVCL_KU17 HeLa SilenciX USP14 1 6703 -cellosaurus:CVCL_KU18 HeLa SilenciX USP19 1 6704 -cellosaurus:CVCL_KU19 HeLa SilenciX USP7 1 6705 -cellosaurus:CVCL_KU20 HeLa SilenciX USP9X 1 6706 -cellosaurus:CVCL_KU21 HeLa SilenciX WDR8 1 6707 -cellosaurus:CVCL_KU22 HeLa SilenciX WIP1 1 6708 -cellosaurus:CVCL_KU23 HeLa SilenciX XIAP 1 6709 -cellosaurus:CVCL_KU24 HeLa SilenciX XLF 1 6710 -cellosaurus:CVCL_KU25 HeLa SilenciX XPA 1 6711 -cellosaurus:CVCL_KU26 HeLa SilenciX XPC 1 6712 -cellosaurus:CVCL_KU27 HeLa SilenciX XPF 1 6713 -cellosaurus:CVCL_KU28 HeLa SilenciX XRCC1 1 6714 -cellosaurus:CVCL_KU29 HeLa SilenciX XRCC4 1 6715 -cellosaurus:CVCL_S026 HeLa SimpleCell O-GalNAc 1 6716 -cellosaurus:CVCL_B7DT HeLa SMOC1 KO 1 6717 -cellosaurus:CVCL_A8PZ HeLa SOD1 KO 1 6718 -cellosaurus:CVCL_R768 HeLa SS6 1 6719 -cellosaurus:CVCL_C0QW HeLa ST-PEAK3 1 6720 -cellosaurus:CVCL_V352 HeLa Tet-Off 1 6721 -cellosaurus:CVCL_IY74 HeLa Tet-On 1 6722 -cellosaurus:CVCL_JL47 HeLa-R5 2 6723 -cellosaurus:CVCL_JL48 HeLa-X4 2 6724 -cellosaurus:CVCL_V353 HeLa Tet-On 3G 1 6725 -cellosaurus:CVCL_KU41 HeLa Tet-On Advanced 1 6726 -cellosaurus:CVCL_2935 HeLa TG 1 6727 -cellosaurus:CVCL_2936 HeLa TG Cap 1 6728 -cellosaurus:CVCL_9497 HeLa TK- 1 6729 -cellosaurus:CVCL_V354 HeLa tTS 1 6730 -cellosaurus:CVCL_B4H8 HeLa TUBA4A KO 1 6731 -cellosaurus:CVCL_B6RU HeLa VAPB KO 1 6732 -cellosaurus:CVCL_6E62 HeLa(tTA)1 1 6733 -cellosaurus:CVCL_4776 HeLa-80 1 6734 -cellosaurus:CVCL_VU54 HeLa-AC free 1 6735 -cellosaurus:CVCL_9493 HeLa-APL 1 6736 -cellosaurus:CVCL_W646 HeLa-APOBEC3G 1 6737 -cellosaurus:CVCL_XE39 HeLa-Cas9-527 1 6738 -cellosaurus:CVCL_XE40 HeLa-Cas9-528 1 6739 -cellosaurus:CVCL_XE41 HeLa-Cas9-529 1 6740 -cellosaurus:CVCL_XE42 HeLa-Cas9-530 1 6741 -cellosaurus:CVCL_XE43 HeLa-Cas9-531 1 6742 -cellosaurus:CVCL_XE44 HeLa-Cas9-532 1 6743 -cellosaurus:CVCL_XE45 HeLa-Cas9-533 1 6744 -cellosaurus:CVCL_XE46 HeLa-Cas9-534 1 6745 -cellosaurus:CVCL_XE47 HeLa-Cas9-535 1 6746 -cellosaurus:CVCL_XE48 HeLa-Cas9-536 1 6747 -cellosaurus:CVCL_XE49 HeLa-Cas9-537 1 6748 -cellosaurus:CVCL_H339 HeLa-CD14 1 6749 -cellosaurus:CVCL_A8CA HeLa-Difluo hLC3 1 6750 -cellosaurus:CVCL_WN71 HeLa-EM2-11ht 1 6751 -cellosaurus:CVCL_1H14 HeLa-env-Eli 1 6752 -cellosaurus:CVCL_1H15 HeLa-env-IIIB 1 6753 -cellosaurus:CVCL_1H16 HeLa-env-Mal 1 6754 -cellosaurus:CVCL_VJ28 HeLa-G63 1 6755 -cellosaurus:CVCL_A8JX HeLa-LTRHIV-1-Luc 1 6756 -cellosaurus:CVCL_5J41 HeLa-luc 1 6757 -cellosaurus:CVCL_YA88 HeLa-Luc 1 6758 -cellosaurus:CVCL_B7NT HeLa-Luc-RFP 1 6759 -cellosaurus:CVCL_D259 HeLa-MAGI 1 6760 -cellosaurus:CVCL_D260 HeLa-MAGI-CCR5 2 6761 -cellosaurus:CVCL_B3SU HeLa-mCAT#8 1 6762 -cellosaurus:CVCL_B3T5 HeLa-mCAT#8 TAL-B4G5#2 2 6763 -cellosaurus:CVCL_B3SY HeLa-mCAT#8 TAL-CE#1 2 6764 -cellosaurus:CVCL_B3SZ HeLa-mCAT#8 TAL-CE#14 2 6765 -cellosaurus:CVCL_B3T4 HeLa-mCAT#8 TAL-CE#14-UG#2 3 6766 -cellosaurus:CVCL_B3T0 HeLa-mCAT#8 TAL-CE#3 2 6767 -cellosaurus:CVCL_B3SV HeLa-mCAT#8 TAL-CERS2#13 2 6768 -cellosaurus:CVCL_B3SW HeLa-mCAT#8 TAL-CERS2#16 2 6769 -cellosaurus:CVCL_B3SX HeLa-mCAT#8 TAL-CERS2#18 2 6770 -cellosaurus:CVCL_B3T1 HeLa-mCAT#8 TAL-CERS2#18-CERT#10 3 6771 -cellosaurus:CVCL_B3T2 HeLa-mCAT#8 TAL-UG#3 2 6772 -cellosaurus:CVCL_B3T3 HeLa-mCAT#8 TAL-UG#7 2 6773 -cellosaurus:CVCL_GR67 HeLa-Munc18b 1 6774 -cellosaurus:CVCL_RX06 HeLa-Mx2/EGFP C5G6 1 6775 -cellosaurus:CVCL_RX07 HeLa-Mx2/EGFP C6C3 1 6776 -cellosaurus:CVCL_A8GG HeLa-R 1 6777 -cellosaurus:CVCL_1J89 HeLa-RR-B51S 1 6778 -cellosaurus:CVCL_S495 HeLa-T4+ 1 6779 -cellosaurus:CVCL_S496 HeLa-LAV 2 6780 -cellosaurus:CVCL_X686 HLCD4-CAT 2 6781 -cellosaurus:CVCL_X699 HLM1 2 6782 -cellosaurus:CVCL_X700 HLM107 2 6783 -cellosaurus:CVCL_X701 HLM30 2 6784 -cellosaurus:CVCL_WN04 HLM34 2 6785 -cellosaurus:CVCL_1D87 HeLa-T8+ 1 6786 -cellosaurus:CVCL_1H25 HeLa-tat-III 1 6787 -cellosaurus:CVCL_1H26 HeLa-tat-III/CMV/d1EGFP 2 6788 -cellosaurus:CVCL_1H13 HeLa-tat-III/LTR/d1EGFP 2 6789 -cellosaurus:CVCL_C3IN HeLa-TFEB 1 6790 -cellosaurus:CVCL_C3IP HeLa-TFEB-3xFLAG 1 6791 -cellosaurus:CVCL_9U03 HeLa-UGT1A9 1 6792 -cellosaurus:CVCL_4Z13 HeLa.EpoA9 1 6793 -cellosaurus:CVCL_4Z14 HeLa.EpoB1.8 1 6794 -cellosaurus:CVCL_2937 HeLa.P3 1 6795 -cellosaurus:CVCL_2938 HeLa.P3(S) 2 6796 -cellosaurus:CVCL_JG57 HeLa/CMV-Luc 1 6797 -cellosaurus:CVCL_JZ15 HeLa/crmA 1 6798 -cellosaurus:CVCL_C869 HeLa/DDP 1 6799 -cellosaurus:CVCL_E070 HeLa/Fucci 1 6800 -cellosaurus:CVCL_VM99 HeLa/Fucci(SCA)2 1 6801 -cellosaurus:CVCL_U187 HeLa/Fucci2 1 6802 -cellosaurus:CVCL_JY89 HeLa/GFP 1 6803 -cellosaurus:CVCL_UG45 HeLa/GSTP1 1 6804 -cellosaurus:CVCL_2939 HeLa/MMTV-luc 1 6805 -cellosaurus:CVCL_KS39 HeLa/NFAT-luc 1 6806 -cellosaurus:CVCL_KS40 HeLa/NFkB-luc 1 6807 -cellosaurus:CVCL_HF87 HeLa/PTX 1 6808 -cellosaurus:CVCL_JQ52 HeLa/SN1 1 6809 -cellosaurus:CVCL_JQ53 HeLa/SN10 1 6810 -cellosaurus:CVCL_JQ54 HeLa/SN100 2 6811 -cellosaurus:CVCL_KS42 HeLa/SRF-luc 1 6812 -cellosaurus:CVCL_KS41 HeLa/STAT1-luc 1 6813 -cellosaurus:CVCL_KS43 HeLa/STAT3-luc 1 6814 -cellosaurus:CVCL_2485 HeLa9903 1 6815 -cellosaurus:CVCL_B5D4 HeLaI 1 6816 -cellosaurus:CVCL_B5D9 HeLa1.2.11 2 6817 -cellosaurus:CVCL_B5DA HeLa1.3 3 6818 -cellosaurus:CVCL_B5DF HeLa1.3 hTR-50-3xMS2 4 6819 -cellosaurus:CVCL_B5DG HeLa1.3 hTR-50-3xMS2 TCAB1-/- 5 6820 -cellosaurus:CVCL_B5DH HeLa1.3 hTR-50-3xMS2 TERT-/- 5 6821 -cellosaurus:CVCL_B5D5 HeLaII 1 6822 -cellosaurus:CVCL_B5DB HeLa204 2 6823 -cellosaurus:CVCL_A9H3 HeLap121G 1 6824 -cellosaurus:CVCL_B053 HeLaRC32 1 6825 -cellosaurus:CVCL_1278 HeLaSF 1 6826 -cellosaurus:CVCL_WI87 HELN 1 6827 -cellosaurus:CVCL_WI88 HELN(alpha) 2 6828 -cellosaurus:CVCL_WI89 HELN(beta) 2 6829 -cellosaurus:CVCL_1906 HEp-2 1 6830 -cellosaurus:CVCL_WH94 Ban 2 6831 -cellosaurus:CVCL_W888 DRHEp2 2 6832 -cellosaurus:CVCL_2817 HEp-2 clone 2B 2 6833 -cellosaurus:CVCL_GZ00 Hep-2 TPFR 2 6834 -cellosaurus:CVCL_A8JP HEp-2-NS1 2 6835 -cellosaurus:CVCL_B7H7 HEp-2/VCR 2 6836 -cellosaurus:CVCL_2940 HEp-2C 2 6837 -cellosaurus:CVCL_RX04 HEp2-Mx2/EGFP L1D7 2 6838 -cellosaurus:CVCL_RX05 HEp2-Mx2/EGFP L1G5 2 6839 -cellosaurus:CVCL_WI90 HGELN 1 6840 -cellosaurus:CVCL_8231 HL111783 1 6841 -cellosaurus:CVCL_X685 HL2/3 1 6842 -cellosaurus:CVCL_8232 HL3T1 1 6843 -cellosaurus:CVCL_X688 HLfB 1 6844 -cellosaurus:CVCL_KB15 HLR 1 6845 -cellosaurus:CVCL_KB17 HLR-CHOP 2 6846 -cellosaurus:CVCL_KB16 HLR-cJun 2 6847 -cellosaurus:CVCL_KB18 HLR-CREB 2 6848 -cellosaurus:CVCL_KB19 HLR-Elk1 2 6849 -cellosaurus:CVCL_8164 HLtat 1 6850 -cellosaurus:CVCL_U968 HML-Gb3 1 6851 -cellosaurus:CVCL_8233 HMV-I 1 6852 -cellosaurus:CVCL_6868 HO-8910 1 6853 -cellosaurus:CVCL_0310 HO-8910PM 2 6854 -cellosaurus:CVCL_B0WD HO8910-TAX/CBP 2 6855 -cellosaurus:CVCL_8446 HPC-36M 1 6856 -cellosaurus:CVCL_2505 HR5 1 6857 -cellosaurus:CVCL_2506 HR5-CL11 2 6858 -cellosaurus:CVCL_GZ13 HRL9 2 6859 -cellosaurus:CVCL_2517 HSG 1 6860 -cellosaurus:CVCL_A047 HSG-AZA1 2 6861 -cellosaurus:CVCL_A048 HSG-AZA3 2 6862 -cellosaurus:CVCL_WL39 HSG-S6 2 6863 -cellosaurus:CVCL_WL38 HSG-S8 2 6864 -cellosaurus:CVCL_2951 HSGc-C5 2 6865 -cellosaurus:CVCL_B032 HSY 1 6866 -cellosaurus:CVCL_U462 HSY-EB 2 6867 -cellosaurus:CVCL_WU77 HT [Human HeLa contaminated cell line] 1 6868 -cellosaurus:CVCL_2523 HtTA-1 1 6869 -cellosaurus:CVCL_1H05 Clone 69T1RevEnv 2 6870 -cellosaurus:CVCL_1H06 Clone HXBdeltaPdeltaEnv-T1RevEnv 2 6871 -cellosaurus:CVCL_2768 X1/5 2 6872 -cellosaurus:CVCL_8283 HuKo39 1 6873 -cellosaurus:CVCL_8357 HuL-1 1 6874 -cellosaurus:CVCL_WH70 HuL-1.P3 2 6875 -cellosaurus:CVCL_WH71 HuL-1-317 3 6876 -cellosaurus:CVCL_M861 Hut 1 6877 -cellosaurus:CVCL_8245 IMC-2 1 6878 -cellosaurus:CVCL_8246 IMC-3 1 6879 -cellosaurus:CVCL_8247 IMC-4 1 6880 -cellosaurus:CVCL_1907 Intestine 407 1 6881 -cellosaurus:CVCL_2965 J-111 1 6882 -cellosaurus:CVCL_3990 J-96 1 6883 -cellosaurus:CVCL_7170 L-41 2 6884 -cellosaurus:CVCL_M093 JHC 1 6885 -cellosaurus:CVCL_M620 JHT 2 6886 -cellosaurus:CVCL_8362 JTC-17 1 6887 -cellosaurus:CVCL_A034 JTC-3 1 6888 -cellosaurus:CVCL_0372 KB 1 6889 -cellosaurus:CVCL_D680 KB 16 2 6890 -cellosaurus:CVCL_D681 KB 18 2 6891 -cellosaurus:CVCL_2088 KB-3-1 2 6892 -cellosaurus:CVCL_1D82 KB-A1 3 6893 -cellosaurus:CVCL_5994 KB-ChR-8-5 3 6894 -cellosaurus:CVCL_5997 KB-ChR-8-5-11 4 6895 -cellosaurus:CVCL_M125 KB-ChR-8-5-11-24 5 6896 -cellosaurus:CVCL_1D83 KB-C1-R1 6 6897 -cellosaurus:CVCL_1D80 KB-C1.5 6 6898 -cellosaurus:CVCL_D600 KB-C2 7 6899 -cellosaurus:CVCL_1D81 KB-C2.5 8 6900 -cellosaurus:CVCL_IP04 KB-CP.5 3 6901 -cellosaurus:CVCL_IP17 KB-CP5 3 6902 -cellosaurus:CVCL_IP05 KB-CP10 4 6903 -cellosaurus:CVCL_IP06 KB-CP20 5 6904 -cellosaurus:CVCL_X335 KB-CV60 3 6905 -cellosaurus:CVCL_2089 KB-V1 3 6906 -cellosaurus:CVCL_D644 KBH5.0 3 6907 -cellosaurus:CVCL_M123 KCP-4 3 6908 -cellosaurus:CVCL_M096 KB-R 2 6909 -cellosaurus:CVCL_HA90 KB/BF-1 2 6910 -cellosaurus:CVCL_HA91 KB/BF-2 2 6911 -cellosaurus:CVCL_AE00 KB/STP-1 2 6912 -cellosaurus:CVCL_AE01 KB/STP-2 2 6913 -cellosaurus:CVCL_D599 KBv200 2 6914 -cellosaurus:CVCL_U657 KE2a 2 6915 -cellosaurus:CVCL_6B18 Kst-6 2 6916 -cellosaurus:CVCL_6B19 Kst-V100 3 6917 -cellosaurus:CVCL_X217 VJ-300 2 6918 -cellosaurus:CVCL_7963 KCC-MS871 1 6919 -cellosaurus:CVCL_7966 KCC-TCM901 1 6920 -cellosaurus:CVCL_D283 KP-P1 1 6921 -cellosaurus:CVCL_4714 KU-7 1 6922 -cellosaurus:CVCL_M894 KU-7-luc2-GFP 2 6923 -cellosaurus:CVCL_6926 L-02 1 6924 -cellosaurus:CVCL_WN40 HL-7702BaPT 2 6925 -cellosaurus:CVCL_1908 L-132 1 6926 -cellosaurus:CVCL_M623 L132 clone G-38-7 2 6927 -cellosaurus:CVCL_5G52 LC5 2 6928 -cellosaurus:CVCL_5G53 LC5-HIV 3 6929 -cellosaurus:CVCL_ZJ09 LanthaScreen c-Jun (1-79) HeLa 1 6930 -cellosaurus:CVCL_8438 Led-T1 1 6931 -cellosaurus:CVCL_YJ81 LINTERNA HeLa 1 6932 -cellosaurus:CVCL_6929 LTEP-a2 1 6933 -cellosaurus:CVCL_M631 LU 1 6934 -cellosaurus:CVCL_8892 Lu 106 1 6935 -cellosaurus:CVCL_M094 M10T 1 6936 -cellosaurus:CVCL_8261 MA-160 1 6937 -cellosaurus:CVCL_M627 MAC-21 1 6938 -cellosaurus:CVCL_5328 MaTu 1 6939 -cellosaurus:CVCL_5329 MaTu/Ham 2 6940 -cellosaurus:CVCL_5331 MC4000 1 6941 -cellosaurus:CVCL_8264 Minnesota EE 1 6942 -cellosaurus:CVCL_4243 MS [Human HeLa contaminated cell line] 1 6943 -cellosaurus:CVCL_0441 MT-1 [Human contaminated breast cancer] 1 6944 -cellosaurus:CVCL_0461 NCTC 2544 1 6945 -cellosaurus:CVCL_8156 NCTC 3075 1 6946 -cellosaurus:CVCL_J350 OE 1 6947 -cellosaurus:CVCL_M621 OF 1 6948 -cellosaurus:CVCL_LI06 OMC685 1 6949 -cellosaurus:CVCL_8399 OST 1 6950 -cellosaurus:CVCL_WW21 OST-1-PF 2 6951 -cellosaurus:CVCL_1H21 P4 MAGI CCR5+ 1 6952 -cellosaurus:CVCL_4888 PC-93 1 6953 -cellosaurus:CVCL_6859 QGY-7701 1 6954 -cellosaurus:CVCL_6715 QGY-7703 1 6955 -cellosaurus:CVCL_M360 QGY/cDDP 2 6956 -cellosaurus:CVCL_6944 QSG-7701 1 6957 -cellosaurus:CVCL_0U46 RPMI-4788 1 6958 -cellosaurus:CVCL_8910 SA-4 1 6959 -cellosaurus:CVCL_1677 SBC-2 [Human contaminated bladder carcinoma] 1 6960 -cellosaurus:CVCL_1680 SBC-7 [Human contaminated bladder carcinoma] 1 6961 -cellosaurus:CVCL_0520 SGC-7901 1 6962 -cellosaurus:CVCL_RK37 SGC-7901/B1 2 6963 -cellosaurus:CVCL_RK36 SGC-7901/B2 2 6964 -cellosaurus:CVCL_VU57 SGC7901/ADR 2 6965 -cellosaurus:CVCL_B0A1 SGC7901/OXA 2 6966 -cellosaurus:CVCL_VU58 SGC7901/VCR 2 6967 -cellosaurus:CVCL_M622 SH-2 [Human contaminated breast cancer] 1 6968 -cellosaurus:CVCL_M383 SH-3 1 6969 -cellosaurus:CVCL_0534 SMMC-7721 1 6970 -cellosaurus:CVCL_6955 SPC-A1 1 6971 -cellosaurus:CVCL_YP05 SPC-A-1BM 2 6972 -cellosaurus:CVCL_W217 SPC-A1/DTX 2 6973 -cellosaurus:CVCL_8273 SQ-5 1 6974 -cellosaurus:CVCL_M858 T-1 1 6975 -cellosaurus:CVCL_A5XX T91M 2 6976 -cellosaurus:CVCL_M092 T-9 1 6977 -cellosaurus:CVCL_D587 T-REx-HeLa 1 6978 -cellosaurus:CVCL_A1AR HeLa-SHMT2-shSHMT2 2 6979 -cellosaurus:CVCL_1U15 T1 [Human contaminated neural stem cell] 1 6980 -cellosaurus:CVCL_6851 Tca8113 1 6981 -cellosaurus:CVCL_7906 Tca8113-P160 2 6982 -cellosaurus:CVCL_7907 Tca8113-P60 2 6983 -cellosaurus:CVCL_9U53 Tca8113/CBP [Chengdu] 2 6984 -cellosaurus:CVCL_T058 Tca8113/CBP [Chongqing] 2 6985 -cellosaurus:CVCL_9U54 Tca8113/PYM [Changsha] 2 6986 -cellosaurus:CVCL_9U55 Tca8113/PYM [Chengdu] 2 6987 -cellosaurus:CVCL_WU76 TLouaR 1 6988 -cellosaurus:CVCL_VL15 TSCCa 1 6989 -cellosaurus:CVCL_8275 TuWi 1 6990 -cellosaurus:CVCL_B478 TZM-bl 1 6991 -cellosaurus:CVCL_1F83 TZM-bl/FcalphaR 2 6992 -cellosaurus:CVCL_1E18 TZM-bl/FcgammaRI 2 6993 -cellosaurus:CVCL_1E19 TZM-bl/FcgammaRIIa 2 6994 -cellosaurus:CVCL_1E20 TZM-bl/FcgammaRIIb 2 6995 -cellosaurus:CVCL_1E21 TZM-bl/FcgammaRIIIa 2 6996 -cellosaurus:CVCL_0A24 TZM-tfLC3B 2 6997 -cellosaurus:CVCL_1909 WISH 1 6998 -cellosaurus:CVCL_8345 ED(27) 2 6999 -cellosaurus:CVCL_W635 HES [Human contaminated endometrial epithelial] 2 7000 -cellosaurus:CVCL_A8RR WISH-Mx2/EGFP 2 7001 -cellosaurus:CVCL_2764 WKD 1 7002 -cellosaurus:CVCL_0581 WRL 68 1 7003 -cellosaurus:CVCL_4W86 WRLS1 2 7004 -cellosaurus:CVCL_8017 YCU-H891 1 7005 -cellosaurus:CVCL_RL03 Z-HL16C 1 7006 -cellosaurus:CVCL_1403 Mel JuSo 0 7007 -cellosaurus:CVCL_B7EF Mel JuSo ABCB5 KO clone HO1 1 7008 -cellosaurus:CVCL_B7EG Mel JuSo ABCB5 KO clone HO2 1 7009 -cellosaurus:CVCL_B7EH Mel JuSo ABCB5 KO clone HO3 1 7010 -cellosaurus:CVCL_B7EI Mel JuSo ABCB5 KO clone HO4 1 7011 -cellosaurus:CVCL_0126 5637 0 7012 -cellosaurus:CVCL_6344 5637 subclone 1A6 1 7013 -cellosaurus:CVCL_RR13 5637rCDDP1000 1 7014 -cellosaurus:CVCL_RR14 5637rGEMCI20 1 7015 -cellosaurus:CVCL_JE91 H/Rb-CL2 1 7016 -cellosaurus:CVCL_JE92 H/Rb-M 1 7017 -cellosaurus:CVCL_1105 CAL-12T 0 7018 -cellosaurus:CVCL_A4II CAL-12T KRAS (G12C/+) 1 7019 -cellosaurus:CVCL_5951 MMAc 0 7020 -cellosaurus:CVCL_8158 Mash-1 1 7021 -cellosaurus:CVCL_1420 MMAc-SF 1 7022 -cellosaurus:CVCL_LI51 NKI-SC263 0 7023 -cellosaurus:CVCL_LI56 SC263 R10.2 1 7024 -cellosaurus:CVCL_1220 G-361 0 7025 -cellosaurus:CVCL_4Y12 G-361/CMV-Luc 1 7026 -cellosaurus:CVCL_VN82 G-361/CMV-Luc#1(c-1) 1 7027 -cellosaurus:CVCL_JG86 G-361/CMV-Luc#2(c-2.5) 1 7028 -cellosaurus:CVCL_IW13 G361/R 1 7029 -cellosaurus:CVCL_1363 LA-N-6 0 7030 -cellosaurus:CVCL_C1HR LA-N-6 MUT p53 1 7031 -cellosaurus:CVCL_JH26 FA-AML1A 0 7032 -cellosaurus:CVCL_JK50 KH-AML-B2 1 7033 -cellosaurus:CVCL_0418 MDA-MB-453 0 7034 -cellosaurus:CVCL_6421 MDA-kb2 1 7035 -cellosaurus:CVCL_ZZ23 MDA-MB-453 Ad15 1 7036 -cellosaurus:CVCL_5362 SCCKN 0 7037 -cellosaurus:CVCL_0517 SCCTF 1 7038 -cellosaurus:CVCL_UZ94 SCCTF TF-R 2 7039 -cellosaurus:CVCL_UZ95 SCCTF TF-S 2 7040 -cellosaurus:CVCL_8655 A529L 0 7041 -cellosaurus:CVCL_A5AQ A529L-CD80 1 7042 -cellosaurus:CVCL_W144 CL2 [Human lung carcinoma] 0 7043 -cellosaurus:CVCL_A5VX NCL2 [Human lung carcinoma] 1 7044 -cellosaurus:CVCL_0005 NB4 0 7045 -cellosaurus:CVCL_VV77 NB4-A1 1 7046 -cellosaurus:CVCL_U080 NB4-AsR 1 7047 -cellosaurus:CVCL_VV78 NB4-B1 1 7048 -cellosaurus:CVCL_VV79 NB4-D5 1 7049 -cellosaurus:CVCL_VV80 NB4-MR2 2 7050 -cellosaurus:CVCL_VV81 NB4-MR6 2 7051 -cellosaurus:CVCL_VV82 NB4-R4 2 7052 -cellosaurus:CVCL_U085 NB4-DR1 1 7053 -cellosaurus:CVCL_8811 NB4-LR1 1 7054 -cellosaurus:CVCL_U081 NB4-LR2 2 7055 -cellosaurus:CVCL_U086 NB4-S1 1 7056 -cellosaurus:CVCL_U087 NB4-DR2 2 7057 -cellosaurus:CVCL_U088 NB4-DR3 2 7058 -cellosaurus:CVCL_U083 NB4.007/6 1 7059 -cellosaurus:CVCL_U084 NB4.306 1 7060 -cellosaurus:CVCL_U112 NB4.437r 1 7061 -cellosaurus:CVCL_U082 NB4/As 1 7062 -cellosaurus:CVCL_IY15 NB4R 1 7063 -cellosaurus:CVCL_W910 LGW01 0 7064 -cellosaurus:CVCL_0C33 LGW01-G600 1 7065 -cellosaurus:CVCL_1797 YT 0 7066 -cellosaurus:CVCL_A1JN YT clone 2C2 1 7067 -cellosaurus:CVCL_B3PD TR-IL2-YT 2 7068 -cellosaurus:CVCL_EJ05 YT-1 1 7069 -cellosaurus:CVCL_A1JP YTC3 1 7070 -cellosaurus:CVCL_D324 YTS 1 7071 -cellosaurus:CVCL_EG36 YTS-Eco 2 7072 -cellosaurus:CVCL_6300 KTC-1 0 7073 -cellosaurus:CVCL_A2CS KTC1res.1 1 7074 -cellosaurus:CVCL_A2CT KTC1res.2 1 7075 -cellosaurus:CVCL_L805 HK 0 7076 -cellosaurus:CVCL_L804 EH 1 7077 -cellosaurus:CVCL_1346 KY821 0 7078 -cellosaurus:CVCL_Z940 KY-ADR2 1 7079 -cellosaurus:CVCL_W293 KY-MTX 1 7080 -cellosaurus:CVCL_W294 KY-Ra 1 7081 -cellosaurus:CVCL_Z939 KY-ADR1 2 7082 -cellosaurus:CVCL_5A05 KY-Rb 1 7083 -cellosaurus:CVCL_W295 KY-VCR 1 7084 -cellosaurus:CVCL_2806 KY821A3 1 7085 -cellosaurus:CVCL_2929 HEC-50B 0 7086 -cellosaurus:CVCL_4Y59 Hec50Co 1 7087 -cellosaurus:CVCL_3326 Pfeiffer 0 7088 -cellosaurus:CVCL_M665 MA-1 [Human contaminated lymphoma] 1 7089 -cellosaurus:CVCL_VU97 EB81-MEL 0 7090 -cellosaurus:CVCL_VU98 EB81-MEL.2 1 7091 -cellosaurus:CVCL_1697 SJSA-1 0 7092 -cellosaurus:CVCL_HG09 S_M6R1 1 7093 -cellosaurus:CVCL_HG10 S_N40R2 1 7094 -cellosaurus:CVCL_2686 PEO1 0 7095 -cellosaurus:CVCL_Y032 PEO1-CDDP 1 7096 -cellosaurus:CVCL_B3UQ PEO1X 1 7097 -cellosaurus:CVCL_1714 SUP-T1 0 7098 -cellosaurus:CVCL_1E03 BC7 1 7099 -cellosaurus:CVCL_ZX81 BC7/CCR5 2 7100 -cellosaurus:CVCL_A9NU Sup-T1 CCR5+ H6 1 7101 -cellosaurus:CVCL_A9NV Sup-T1 CCR5+ L23 1 7102 -cellosaurus:CVCL_A9NW Sup-T1 CCR5+ M10 1 7103 -cellosaurus:CVCL_1H35 Sup-T1 Nef-ER 31 1 7104 -cellosaurus:CVCL_X633 Sup-T1-CCR5 1 7105 -cellosaurus:CVCL_M773 Sup-T1/JI 1 7106 -cellosaurus:CVCL_M772 SUP-T1/Z29 1 7107 -cellosaurus:CVCL_WU89 SupT1-R5 1 7108 -cellosaurus:CVCL_WU88 SupT1.CCR5 1 7109 -cellosaurus:CVCL_WV22 SupT1/Blam 1 7110 -cellosaurus:CVCL_WU94 SupT1/CCR5/Blam 2 7111 -cellosaurus:CVCL_3967 CWR22 0 7112 -cellosaurus:CVCL_1045 22Rv1 1 7113 -cellosaurus:CVCL_4Y35 22Rv1 R 2 7114 -cellosaurus:CVCL_A6PG 22Rv1-CabR1 2 7115 -cellosaurus:CVCL_A6PH 22Rv1-CabR2 2 7116 -cellosaurus:CVCL_WZ28 22Rv1-SL 2 7117 -cellosaurus:CVCL_ZC64 22Rv1-undup1 2 7118 -cellosaurus:CVCL_ZC65 22Rv1-undup2 2 7119 -cellosaurus:CVCL_ZC66 22Rv1-undup3 2 7120 -cellosaurus:CVCL_RS39 22RV1rYM155_300nM 2 7121 -cellosaurus:CVCL_KS53 CellSensor Gli-bla 22Rv1 2 7122 -cellosaurus:CVCL_WK44 CWR22Rv1-AR-EK 2 7123 -cellosaurus:CVCL_4833 CWR-R1 1 7124 -cellosaurus:CVCL_ZC60 CWR-R1-AD1 2 7125 -cellosaurus:CVCL_ZC61 CWR-R1-D567 3 7126 -cellosaurus:CVCL_ZC62 CWR-R1-I567 3 7127 -cellosaurus:CVCL_RA55 CWR-R1-EnzR 2 7128 -cellosaurus:CVCL_LI36 CWR-R1ca 2 7129 -cellosaurus:CVCL_LI37 CWR-R1fb 2 7130 -cellosaurus:CVCL_LI38 CWR22Pc 1 7131 -cellosaurus:CVCL_B411 JA-1 0 7132 -cellosaurus:CVCL_D239 JAM 1 7133 -cellosaurus:CVCL_0102 SNU-638 0 7134 -cellosaurus:CVCL_L047 SNU-638-5FU 1 7135 -cellosaurus:CVCL_L048 SNU-638-CIS 1 7136 -cellosaurus:CVCL_D859 OC3 0 7137 -cellosaurus:CVCL_JY54 OC3-I5 1 7138 -cellosaurus:CVCL_JY43 OC3-IV2 1 7139 -cellosaurus:CVCL_3936 OVCA429 0 7140 -cellosaurus:CVCL_JY92 OVCA429/GFP 1 7141 -cellosaurus:CVCL_CZ99 OVCA429/T40 1 7142 -cellosaurus:CVCL_CZ98 OVCA429/TxT50 1 7143 -cellosaurus:CVCL_IQ07 PC/BH 0 7144 -cellosaurus:CVCL_IQ08 PC/BH/C1 1 7145 -cellosaurus:CVCL_7041 GIST48 0 7146 -cellosaurus:CVCL_M441 GIST48B 1 7147 -cellosaurus:CVCL_A619 HU-3 0 7148 -cellosaurus:CVCL_RM04 HU-3/TPO 1 7149 -cellosaurus:CVCL_3082 NUGC-4 0 7150 -cellosaurus:CVCL_A8GI NUC12N2 1 7151 -cellosaurus:CVCL_4995 HX/62 0 7152 -cellosaurus:CVCL_0297 HEY 1 7153 -cellosaurus:CVCL_L041 HEY A4 2 7154 -cellosaurus:CVCL_8878 HEY A8 2 7155 -cellosaurus:CVCL_IW34 HeyA8-IP 3 7156 -cellosaurus:CVCL_8879 HeyA8-MDR 3 7157 -cellosaurus:CVCL_L040 HEY AS1 2 7158 -cellosaurus:CVCL_X009 HEY C2 2 7159 -cellosaurus:CVCL_AZ64 HEY-1B 2 7160 -cellosaurus:CVCL_2Z96 HEY-T30 2 7161 -cellosaurus:CVCL_JZ11 HEY/GFP 2 7162 -cellosaurus:CVCL_Y036 Hx62-26 1 7163 -cellosaurus:CVCL_1672 RVH-421 0 7164 -cellosaurus:CVCL_A1VM RVH-421 Dab-R 1 7165 -cellosaurus:CVCL_RR54 RVH-421rPLX4720_10muM 1 7166 -cellosaurus:CVCL_0153 B-CPAP 0 7167 -cellosaurus:CVCL_A8S1 BCPAP-R 1 7168 -cellosaurus:CVCL_0007 U-937 0 7169 -cellosaurus:CVCL_3680 EL 1 1 7170 -cellosaurus:CVCL_2082 JOSK-I 1 7171 -cellosaurus:CVCL_8141 JOSK-K 1 7172 -cellosaurus:CVCL_2083 JOSK-M 1 7173 -cellosaurus:CVCL_8142 JOSK-S 1 7174 -cellosaurus:CVCL_B3XU MBU-7 1 7175 -cellosaurus:CVCL_B3XV MBU-8 1 7176 -cellosaurus:CVCL_8442 MOBS-1 1 7177 -cellosaurus:CVCL_RX32 MABS-1 2 7178 -cellosaurus:CVCL_VN20 ELD-1 3 7179 -cellosaurus:CVCL_VN21 ELD-1 C-11 4 7180 -cellosaurus:CVCL_VN22 ELD-1 C-8 4 7181 -cellosaurus:CVCL_VN23 ELD-1 D-9 4 7182 -cellosaurus:CVCL_L107 PH [Human] 1 7183 -cellosaurus:CVCL_9997 SAML-1 1 7184 -cellosaurus:CVCL_6444 SC [Human contaminated U-937] 1 7185 -cellosaurus:CVCL_EP74 28SC-ES 2 7186 -cellosaurus:CVCL_1775 TUR 1 7187 -cellosaurus:CVCL_2810 U-937 cl1-14 1 7188 -cellosaurus:CVCL_2811 U-937 cl1-22 1 7189 -cellosaurus:CVCL_8765 U-937 DE-4 1 7190 -cellosaurus:CVCL_U631 U-937 GTB 1 7191 -cellosaurus:CVCL_WV56 U-937 RERC 1 7192 -cellosaurus:CVCL_X000 U-937-AG 1 7193 -cellosaurus:CVCL_WV55 U-937/CR 1 7194 -cellosaurus:CVCL_VG84 U-M 1 7195 -cellosaurus:CVCL_M769 U1/HIV-1 1 7196 -cellosaurus:CVCL_M770 U38 1 7197 -cellosaurus:CVCL_8927 U937(CD59+) 1 7198 -cellosaurus:CVCL_8932 U937(CD59-) 1 7199 -cellosaurus:CVCL_A5BW U937-ASPI3K 1 7200 -cellosaurus:CVCL_2Z95 U937-DC-SIGN 1 7201 -cellosaurus:CVCL_4V23 U937/ara-C 1 7202 -cellosaurus:CVCL_Y170 U937/clone21 1 7203 -cellosaurus:CVCL_Y171 U937/clone36 1 7204 -cellosaurus:CVCL_Y172 U937/clone41 1 7205 -cellosaurus:CVCL_Y173 U937/clone49 1 7206 -cellosaurus:CVCL_A5ZK U937/EVI1 1 7207 -cellosaurus:CVCL_X608 U937/HIV-2MS 1 7208 -cellosaurus:CVCL_Y174 U937/UK110 1 7209 -cellosaurus:CVCL_Y175 U937/UK711 1 7210 -cellosaurus:CVCL_8466 YAA 1 7211 -cellosaurus:CVCL_8467 YAP 1 7212 -cellosaurus:CVCL_4896 RBE 0 7213 -cellosaurus:CVCL_A9CU RBE-Luc2-tdT 1 7214 -cellosaurus:CVCL_2891 EBC-1 0 7215 -cellosaurus:CVCL_LC83 EBC-1 KRAS (G12D/+/+/+) 1 7216 -cellosaurus:CVCL_U892 EBC-1/bone 1 7217 -cellosaurus:CVCL_U893 EBC-1/brain 1 7218 -cellosaurus:CVCL_7118 SCC-61 0 7219 -cellosaurus:CVCL_7086 Nu61 1 7220 -cellosaurus:CVCL_V282 SCC-61B 1 7221 -cellosaurus:CVCL_0234 Caki-1 0 7222 -cellosaurus:CVCL_WZ60 Caki-1-Cas9-593 1 7223 -cellosaurus:CVCL_J247 Caki-1-Luc 1 7224 -cellosaurus:CVCL_0B30 Caki-dTub 1 7225 -cellosaurus:CVCL_AT71 R1192 1 7226 -cellosaurus:CVCL_9569 SLK 1 7227 -cellosaurus:CVCL_B6YU iSLK 2 7228 -cellosaurus:CVCL_B6YV iSLK.219 3 7229 -cellosaurus:CVCL_4988 U-CH1 0 7230 -cellosaurus:CVCL_4990 U-CH1-N 1 7231 -cellosaurus:CVCL_M344 HHS-85 0 7232 -cellosaurus:CVCL_LJ91 HHS-85Nu 1 7233 -cellosaurus:CVCL_B368 T98 0 7234 -cellosaurus:CVCL_0556 T98G 1 7235 -cellosaurus:CVCL_2777 Tera-2 0 7236 -cellosaurus:CVCL_0034 NTERA-2 1 7237 -cellosaurus:CVCL_4U33 NT2-B9 2 7238 -cellosaurus:CVCL_3407 NT2-D1 2 7239 -cellosaurus:CVCL_7929 NT2-N 3 7240 -cellosaurus:CVCL_A5AF Tera-CP 3 7241 -cellosaurus:CVCL_4U27 NT2-D3 2 7242 -cellosaurus:CVCL_K047 NT2-Rho0 2 7243 -cellosaurus:CVCL_C0QJ NTERA-2-R 2 7244 -cellosaurus:CVCL_XI45 Tera-2_CDDP 1 7245 -cellosaurus:CVCL_W835 SBL-HSC-1000 0 7246 -cellosaurus:CVCL_IS34 SBL-HSC-1802 1 7247 -cellosaurus:CVCL_IW14 M7609 0 7248 -cellosaurus:CVCL_IW15 M7609/ADR 1 7249 -cellosaurus:CVCL_M200 I-45 0 7250 -cellosaurus:CVCL_M201 I-45-BTZ-R 1 7251 -cellosaurus:CVCL_B096 UOK117 0 7252 -cellosaurus:CVCL_IS29 UOK117-5 1 7253 -cellosaurus:CVCL_RN44 UOK117C4 1 7254 -cellosaurus:CVCL_4Z41 MT-CHC01 0 7255 -cellosaurus:CVCL_C1L3 MT-CHC01R1.5 1 7256 -cellosaurus:CVCL_1139 COR-L23 0 7257 -cellosaurus:CVCL_2006 COR-L23/5010 1 7258 -cellosaurus:CVCL_2007 COR-L23/CPR 1 7259 -cellosaurus:CVCL_2008 COR-L23/R 1 7260 -cellosaurus:CVCL_2009 COR-L23/R23- 2 7261 -cellosaurus:CVCL_1110 CAL-51 0 7262 -cellosaurus:CVCL_RR30 CALDOX 1 7263 -cellosaurus:CVCL_5228 OCI-AML-1 0 7264 -cellosaurus:CVCL_5225 OCI-AML-1a 1 7265 -cellosaurus:CVCL_4717 PK-1 0 7266 -cellosaurus:CVCL_5146 KLM-1 1 7267 -cellosaurus:CVCL_0B31 RPK-1 1 7268 -cellosaurus:CVCL_A647 MDS92 0 7269 -cellosaurus:CVCL_A8QV MDS-L 1 7270 -cellosaurus:CVCL_A8QY MDS-L-2007 2 7271 -cellosaurus:CVCL_A8QW MDS-L/GFP-N 2 7272 -cellosaurus:CVCL_A8QX MDS-L/GR-GFP-N 2 7273 -cellosaurus:CVCL_A8QZ MDS-LGF 2 7274 -cellosaurus:CVCL_4971 MHCC97 0 7275 -cellosaurus:CVCL_4972 MHCC97-H 1 7276 -cellosaurus:CVCL_6832 HCCLM3 2 7277 -cellosaurus:CVCL_WJ13 HCCLM3-GFP-LC3 3 7278 -cellosaurus:CVCL_7680 HCCLM6 3 7279 -cellosaurus:CVCL_A5CU HCCLM9 4 7280 -cellosaurus:CVCL_VU22 MHCC97-H c-Met shRNA 2 7281 -cellosaurus:CVCL_VU23 MHCC97-H CD44s shRNA 2 7282 -cellosaurus:CVCL_VU24 MHCC97-H Scrm shRNA 2 7283 -cellosaurus:CVCL_A9LY MHCC97H-GFP-LC3 2 7284 -cellosaurus:CVCL_4973 MHCC97-L 1 7285 -cellosaurus:CVCL_6648 HLaC-79 0 7286 -cellosaurus:CVCL_7000 8029 NA 1 7287 -cellosaurus:CVCL_7001 8029 DDP4 2 7288 -cellosaurus:CVCL_XF37 GCTB28 0 7289 -cellosaurus:CVCL_XG83 GCTB28-luc 1 7290 -cellosaurus:CVCL_1324 Karpas-299 0 7291 -cellosaurus:CVCL_V404 Karpas-299-CR06 1 7292 -cellosaurus:CVCL_D848 MM96 0 7293 -cellosaurus:CVCL_GR30 MM96 1 TgR 1 7294 -cellosaurus:CVCL_D852 MM96E 1 7295 -cellosaurus:CVCL_D853 MM96L 1 7296 -cellosaurus:CVCL_RL80 MT-ALL 0 7297 -cellosaurus:CVCL_RL81 MT-ALL MN1.1 1 7298 -cellosaurus:CVCL_M007 UCRU-BL-17 0 7299 -cellosaurus:CVCL_M008 UCRU-BL-23 1 7300 -cellosaurus:CVCL_0317 HT-1080 0 7301 -cellosaurus:CVCL_1D50 2C4 [Human fibrosarcoma] 1 7302 -cellosaurus:CVCL_C0D3 2C4 gamma1A 2 7303 -cellosaurus:CVCL_1D51 2C4 gamma1A/JAK2 3 7304 -cellosaurus:CVCL_C0D4 2C4 gamma2A 2 7305 -cellosaurus:CVCL_C0D5 2C4 gamma2A/JAK2 3 7306 -cellosaurus:CVCL_0115 2fTGH 1 7307 -cellosaurus:CVCL_A3FC 2fTGH-U1A 2 7308 -cellosaurus:CVCL_M019 2fTGH-U2A 2 7309 -cellosaurus:CVCL_9469 2fTGH-U3A 2 7310 -cellosaurus:CVCL_9470 2fTGH-U4A 2 7311 -cellosaurus:CVCL_D314 2fTGH-U4C 2 7312 -cellosaurus:CVCL_D315 2fTGH-U5A 2 7313 -cellosaurus:CVCL_D316 2fTGH-U6A 2 7314 -cellosaurus:CVCL_8870 FLYA13 1 7315 -cellosaurus:CVCL_EG37 FLYA-JET 2 7316 -cellosaurus:CVCL_8871 FLYRD18 1 7317 -cellosaurus:CVCL_RW47 HL116 1 7318 -cellosaurus:CVCL_3715 HP 1 7319 -cellosaurus:CVCL_XG90 HT-1080 JH-1/FIX 1 7320 -cellosaurus:CVCL_DF43 HT-1080 NucLight Green 1 7321 -cellosaurus:CVCL_DF44 HT-1080 NucLight Red 1 7322 -cellosaurus:CVCL_V355 HT-1080 Tet-Off 1 7323 -cellosaurus:CVCL_UZ99 HT-1080-Luc2 1 7324 -cellosaurus:CVCL_JG56 HT-1080/CMV-Luc 1 7325 -cellosaurus:CVCL_AR54 HT-STAR 1 7326 -cellosaurus:CVCL_AR55 HT-STAR-A 2 7327 -cellosaurus:CVCL_C0RF HT1080 EGFP 1 7328 -cellosaurus:CVCL_C0RG HT1080 EWSR1-FLI1-EGFP 1 7329 -cellosaurus:CVCL_AX37 HT1080 FUS-DDIT3-EGFP 1 7330 -cellosaurus:CVCL_XZ54 HT1080 human CD137 1 7331 -cellosaurus:CVCL_XZ55 HT1080 human CD27 1 7332 -cellosaurus:CVCL_XZ56 HT1080 human CD40 1 7333 -cellosaurus:CVCL_UE32 HT1080 human GITR 1 7334 -cellosaurus:CVCL_UE31 HT1080 human OX40 1 7335 -cellosaurus:CVCL_RA09 HT1080-eGFP-Puro 1 7336 -cellosaurus:CVCL_RA10 HT1080-Fluc-Neo/eGFP-Puro 1 7337 -cellosaurus:CVCL_RA11 HT1080-Fluc-Neo/iRFP-Puro 1 7338 -cellosaurus:CVCL_RA12 HT1080-Fluc-Puro 1 7339 -cellosaurus:CVCL_RA13 HT1080-hNIS-Neo/eGFP-Puro 1 7340 -cellosaurus:CVCL_RA14 HT1080-hNIS-Neo/Fluc-Puro 1 7341 -cellosaurus:CVCL_RA15 HT1080-hNIS-Neo/iRFP-Puro 1 7342 -cellosaurus:CVCL_RA16 HT1080-hNIS-Puro 1 7343 -cellosaurus:CVCL_RA17 HT1080-iRFP-Puro 1 7344 -cellosaurus:CVCL_L898 HT1080-luc2 1 7345 -cellosaurus:CVCL_ZJ81 HT1080-MFAP4 W235F-MH 1 7346 -cellosaurus:CVCL_ZJ80 HT1080-MFAP4 wt-MH 1 7347 -cellosaurus:CVCL_5I99 HT1080-Red-FLuc 1 7348 -cellosaurus:CVCL_6C48 HT1080/DR4 1 7349 -cellosaurus:CVCL_WM79 HTC75 1 7350 -cellosaurus:CVCL_WM80 HTC75 T19 2 7351 -cellosaurus:CVCL_WM81 HTC75 T4 2 7352 -cellosaurus:CVCL_D683 HTD114 1 7353 -cellosaurus:CVCL_3318 HX 1 7354 -cellosaurus:CVCL_V634 JH-2/TPA 1 7355 -cellosaurus:CVCL_8437 PEAZ-1 1 7356 -cellosaurus:CVCL_0069 SK-MEL-2 0 7357 -cellosaurus:CVCL_J266 SK-MEL-2-Luc 1 7358 -cellosaurus:CVCL_2423 COV413B 0 7359 -cellosaurus:CVCL_4Y49 COV353 1 7360 -cellosaurus:CVCL_E941 TK [Human brain lymphoma] 0 7361 -cellosaurus:CVCL_B3QM MTX-TK 1 7362 -cellosaurus:CVCL_8200 GLC-1 0 7363 -cellosaurus:CVCL_8201 GLC-1-M13 1 7364 -cellosaurus:CVCL_0314 HSC-5 [Human skin squamous cell carcinoma] 0 7365 -cellosaurus:CVCL_JG50 HSC-5-Luc 1 7366 -cellosaurus:CVCL_4U12 SV-BR-1 0 7367 -cellosaurus:CVCL_4U13 SV-BR-1-GM 1 7368 -cellosaurus:CVCL_0388 LAMA-84 0 7369 -cellosaurus:CVCL_1826 LAMA-87 1 7370 -cellosaurus:CVCL_9540 LAMA-88 1 7371 -cellosaurus:CVCL_DP57 LAMA84-r 1 7372 -cellosaurus:CVCL_DP54 LAMA84-rn 1 7373 -cellosaurus:CVCL_UE08 LAMA84-s 1 7374 -cellosaurus:CVCL_AE17 LAMA84R 1 7375 -cellosaurus:CVCL_3115 OVSAYO 0 7376 -cellosaurus:CVCL_3112 OVMIU 1 7377 -cellosaurus:CVCL_M651 QIMR-AMB 0 7378 -cellosaurus:CVCL_M649 QIMR-AMB/1 1 7379 -cellosaurus:CVCL_M650 QIMR-AMB/2 1 7380 -cellosaurus:CVCL_1913 Peer 0 7381 -cellosaurus:CVCL_1081 BE-13 1 7382 -cellosaurus:CVCL_7047 HK-1 0 7383 -cellosaurus:CVCL_7048 HK-2 [Human lung carcinoma] 1 7384 -cellosaurus:CVCL_6027 SK-MEL-23 0 7385 -cellosaurus:CVCL_VS13 SK-MEL-23-neoR 1 7386 -cellosaurus:CVCL_JF69 ED-40810 0 7387 -cellosaurus:CVCL_A6TT ED-40810(-) 1 7388 -cellosaurus:CVCL_A7QM ED-S/ADM 1 7389 -cellosaurus:CVCL_1556 NCI-H322 0 7390 -cellosaurus:CVCL_3971 NCI-H1334 1 7391 -cellosaurus:CVCL_1557 NCI-H322M 1 7392 -cellosaurus:CVCL_B367 HD-Mar 0 7393 -cellosaurus:CVCL_2247 HD-Mar-2 1 7394 -cellosaurus:CVCL_6948 SF188 0 7395 -cellosaurus:CVCL_D590 SF-xL 1 7396 -cellosaurus:CVCL_M828 MMF-1 0 7397 -cellosaurus:CVCL_VG64 MMF-2 1 7398 -cellosaurus:CVCL_VG65 MMF-3 1 7399 -cellosaurus:CVCL_8775 YN-1 0 7400 -cellosaurus:CVCL_F916 YN-1-0-A 1 7401 -cellosaurus:CVCL_6265 RCC10 0 7402 -cellosaurus:CVCL_6266 RCC63 1 7403 -cellosaurus:CVCL_0014 RPMI-8226 0 7404 -cellosaurus:CVCL_1862 COLO 677 1 7405 -cellosaurus:CVCL_1996 COLO 775 1 7406 -cellosaurus:CVCL_A9CZ RPMI-8226-EGFP 1 7407 -cellosaurus:CVCL_A9DA RPMI-8226-Luc2-tdT 1 7408 -cellosaurus:CVCL_A9DB RPMI-8226-mCherry 1 7409 -cellosaurus:CVCL_A9DC RPMI-8226-tdT 1 7410 -cellosaurus:CVCL_XK17 RPMI-8226-R 1 7411 -cellosaurus:CVCL_J431 RPMI-8226/Dox40 1 7412 -cellosaurus:CVCL_J433 RPMI-8226/MDR10V 2 7413 -cellosaurus:CVCL_J432 RPMI-8226/Dox6 1 7414 -cellosaurus:CVCL_J434 RPMI-8226/LR-5 1 7415 -cellosaurus:CVCL_4V90 RPMI-8226/MR4 1 7416 -cellosaurus:CVCL_0509 RPMI-8226/MR20 2 7417 -cellosaurus:CVCL_1222 GA-10 0 7418 -cellosaurus:CVCL_1223 GA-10 clone 20 1 7419 -cellosaurus:CVCL_1224 GA-10 clone 4 1 7420 -cellosaurus:CVCL_2317 Bob 0 7421 -cellosaurus:CVCL_2720 SerBob 1 7422 -cellosaurus:CVCL_1395 M14 0 7423 -cellosaurus:CVCL_6279 BHP 14-9 1 7424 -cellosaurus:CVCL_6280 BHP 15-3 1 7425 -cellosaurus:CVCL_6281 BHP 17-10 1 7426 -cellosaurus:CVCL_6284 BHP 5-16 1 7427 -cellosaurus:CVCL_3934 COLO 38 1 7428 -cellosaurus:CVCL_A1FC COLO 38R 2 7429 -cellosaurus:CVCL_A779 M14-A 1 7430 -cellosaurus:CVCL_ZZ71 M14-CDM 1 7431 -cellosaurus:CVCL_0417 MDA-MB-435 1 7432 -cellosaurus:CVCL_0124 435.eB 2 7433 -cellosaurus:CVCL_B057 M4A4 2 7434 -cellosaurus:CVCL_B058 M4A4 GFP 3 7435 -cellosaurus:CVCL_B059 M4A4 LM3-2 GFP 4 7436 -cellosaurus:CVCL_B060 M4A4 LM3-4 CL16 GFP 4 7437 -cellosaurus:CVCL_J435 MDA 435TR 2 7438 -cellosaurus:CVCL_R957 MDA-MB-435-BAG 2 7439 -cellosaurus:CVCL_B055 MDA-MB-435-LCC15 2 7440 -cellosaurus:CVCL_4Y10 MDA-MB-435-Luc#1 2 7441 -cellosaurus:CVCL_0622 MDA-MB-435S 2 7442 -cellosaurus:CVCL_A6LJ MDA-MB-435S/1 3 7443 -cellosaurus:CVCL_6684 MDA-MB-435HGF 4 7444 -cellosaurus:CVCL_5T70 MDA-MB-435s-mKate2 3 7445 -cellosaurus:CVCL_1910 MDA-N 2 7446 -cellosaurus:CVCL_IN99 MDA435/LCC6 2 7447 -cellosaurus:CVCL_IP00 MDA435/LCC6MDR1 3 7448 -cellosaurus:CVCL_B064 NM2C5 2 7449 -cellosaurus:CVCL_B065 NM2C5 GFP 3 7450 -cellosaurus:CVCL_3448 MuM-2C 1 7451 -cellosaurus:CVCL_0467 NPA 1 7452 -cellosaurus:CVCL_6934 OCM-1 1 7453 -cellosaurus:CVCL_6935 OCM-1A 2 7454 -cellosaurus:CVCL_1R15 NP-2 0 7455 -cellosaurus:CVCL_1R19 NP-2/APJ 1 7456 -cellosaurus:CVCL_1R20 NP-2/CCR3 1 7457 -cellosaurus:CVCL_1R21 NP-2/CCR5 1 7458 -cellosaurus:CVCL_1R22 NP-2/CCR8 1 7459 -cellosaurus:CVCL_1R18 NP-2/CD4 1 7460 -cellosaurus:CVCL_1R25 NP-2/CD4/APJ 2 7461 -cellosaurus:CVCL_1R26 NP-2/CD4/CCR3 2 7462 -cellosaurus:CVCL_1R27 NP-2/CD4/CCR5 2 7463 -cellosaurus:CVCL_A6UR NP-2/CD4/CCR6 2 7464 -cellosaurus:CVCL_1R28 NP-2/CD4/CCR8 2 7465 -cellosaurus:CVCL_1R29 NP-2/CD4/CXCR4 2 7466 -cellosaurus:CVCL_A6US NP-2/CD4/FPRL1 2 7467 -cellosaurus:CVCL_1R30 NP-2/CD4/GPR1 2 7468 -cellosaurus:CVCL_A7BP NP-2/CD4/RDC1 2 7469 -cellosaurus:CVCL_1R23 NP-2/CXCR4 1 7470 -cellosaurus:CVCL_1R24 NP-2/GPR1 1 7471 -cellosaurus:CVCL_UE99 NP-2/iGFP 1 7472 -cellosaurus:CVCL_UF01 NP-2/CCR5/iGFP 2 7473 -cellosaurus:CVCL_UF00 NP-2/CD4/iGFP 2 7474 -cellosaurus:CVCL_UF02 NP-2/CD4/CCR5/iGFP 3 7475 -cellosaurus:CVCL_A670 SHIN-3 0 7476 -cellosaurus:CVCL_W128 SHIN-3/PTEN 1 7477 -cellosaurus:CVCL_WH02 AKG 0 7478 -cellosaurus:CVCL_WH03 AKG HR 1 7479 -cellosaurus:CVCL_1629 OVCAR-8 0 7480 -cellosaurus:CVCL_B0CC ART [Human OVCAR-8 contaminated cell line] 1 7481 -cellosaurus:CVCL_ZZ16 MCF-7 TH 1 7482 -cellosaurus:CVCL_1452 NCI-ADR-RES 1 7483 -cellosaurus:CVCL_D703 OV-1847 1 7484 -cellosaurus:CVCL_IM65 OVCAR-8 RIA 1 7485 -cellosaurus:CVCL_IM66 OVCAR-8 RIIB 1 7486 -cellosaurus:CVCL_H242 MM-RU 0 7487 -cellosaurus:CVCL_J263 MM-RU-Luc 1 7488 -cellosaurus:CVCL_WV59 MMRU/CR1 1 7489 -cellosaurus:CVCL_WV60 MMRU/CR2 1 7490 -cellosaurus:CVCL_6621 DM13 0 7491 -cellosaurus:CVCL_ZL67 DM13/B7-7 1 7492 -cellosaurus:CVCL_1785 VA-ES-BJ 0 7493 -cellosaurus:CVCL_QW58 VA-ES-BJ BAF47 1 7494 -cellosaurus:CVCL_1765 TE-6 0 7495 -cellosaurus:CVCL_8325 TE-6/Hypo 1 7496 -cellosaurus:CVCL_1987 COLO 201 0 7497 -cellosaurus:CVCL_A9CV COLO 201-EGFP 1 7498 -cellosaurus:CVCL_A9CW COLO 201-Luc2-tdT 1 7499 -cellosaurus:CVCL_A9CX COLO 201-mCherry 1 7500 -cellosaurus:CVCL_A9CY COLO 201-tdT 1 7501 -cellosaurus:CVCL_4V91 COLO201-AR 1 7502 -cellosaurus:CVCL_8377 NS-3 1 7503 -cellosaurus:CVCL_0363 JEG-3 0 7504 -cellosaurus:CVCL_9559 AC1 [Human gestational choriocarcinoma] 1 7505 -cellosaurus:CVCL_9560 AC1-1 2 7506 -cellosaurus:CVCL_9561 AC1-5 2 7507 -cellosaurus:CVCL_9562 AC1-9 2 7508 -cellosaurus:CVCL_IV65 JEG-3/A3-1A7 1 7509 -cellosaurus:CVCL_6922 JEG-3/VP16 1 7510 -cellosaurus:CVCL_6923 JEG-3/VP16-IL-2 2 7511 -cellosaurus:CVCL_6924 JEG-3/VP16-TNFa 2 7512 -cellosaurus:CVCL_7167 TEC61 1 7513 -cellosaurus:CVCL_0559 TF-1 0 7514 -cellosaurus:CVCL_KS74 CellSensor irf1-bla TF1 1 7515 -cellosaurus:CVCL_8059 D2 [Human erythroleukemia] 1 7516 -cellosaurus:CVCL_8060 D8 1 7517 -cellosaurus:CVCL_ZJ11 LanthaScreen STAT5 TF-1 1 7518 -cellosaurus:CVCL_J294 TF-1 BCR/ABL 1 7519 -cellosaurus:CVCL_UE10 TF-1 IDH2 p.R140Q 1 7520 -cellosaurus:CVCL_A4BL TF-1 IDH2 p.R140Q-Luc2 2 7521 -cellosaurus:CVCL_A4BP TF-1-Luc2 1 7522 -cellosaurus:CVCL_3607 TF-1.CN5a.1 1 7523 -cellosaurus:CVCL_RM06 TF-1/TPO 1 7524 -cellosaurus:CVCL_3608 TF-1a 1 7525 -cellosaurus:CVCL_1603 NCI-N87 0 7526 -cellosaurus:CVCL_JY25 NCI-hTERT-CL5 1 7527 -cellosaurus:CVCL_JY26 NCI-hTERT-CL6 1 7528 -cellosaurus:CVCL_WH01 NCI-N87 HR 1 7529 -cellosaurus:CVCL_XZ59 NCI-N87 human CLDN18.2 1 7530 -cellosaurus:CVCL_IL03 NCI-N87/TR 1 7531 -cellosaurus:CVCL_6570 BG1 0 7532 -cellosaurus:CVCL_6571 BG1Luc4E2 1 7533 -cellosaurus:CVCL_DD13 BG1LucERbc9 2 7534 -cellosaurus:CVCL_S530 YES-6 0 7535 -cellosaurus:CVCL_C0WZ YES-6-Rf 1 7536 -cellosaurus:CVCL_1228 GCIY 0 7537 -cellosaurus:CVCL_UW55 GCIY-EGFP 1 7538 -cellosaurus:CVCL_B051 GBM8401 0 7539 -cellosaurus:CVCL_C0UX GBM8401/Luc2 1 7540 -cellosaurus:CVCL_C0UW GBM8401/TMZR 1 7541 -cellosaurus:CVCL_B052 GBM8901 1 7542 -cellosaurus:CVCL_H265 St-4 0 7543 -cellosaurus:CVCL_Y176 St-4/cDDP 1 7544 -cellosaurus:CVCL_H266 St-4/CPT 1 7545 -cellosaurus:CVCL_0221 COLO 357 0 7546 -cellosaurus:CVCL_RL60 COLO 357-TRS4 1 7547 -cellosaurus:CVCL_8196 COLO 357/FG 1 7548 -cellosaurus:CVCL_N514 COLO 357/FG-2 2 7549 -cellosaurus:CVCL_8149 L3.1 2 7550 -cellosaurus:CVCL_8148 L3.2 3 7551 -cellosaurus:CVCL_8147 L3.3 4 7552 -cellosaurus:CVCL_8146 L3.4 5 7553 -cellosaurus:CVCL_8145 L3.5 6 7554 -cellosaurus:CVCL_0384 L3.6pl 5 7555 -cellosaurus:CVCL_8144 L3.6sl 5 7556 -cellosaurus:CVCL_IP74 COLO 357/SG 1 7557 -cellosaurus:CVCL_A360 HDC-9 0 7558 -cellosaurus:CVCL_EI74 HDC-9NMI 1 7559 -cellosaurus:CVCL_0092 NALM-6 0 7560 -cellosaurus:CVCL_8173 BLIN-1 1 7561 -cellosaurus:CVCL_L811 1E8 [Human leukemia] 2 7562 -cellosaurus:CVCL_8260 LR10.6 1 7563 -cellosaurus:CVCL_UJ07 N6-1000 1 7564 -cellosaurus:CVCL_UJ08 N6-500 1 7565 -cellosaurus:CVCL_UJ06 N6/ADR 1 7566 -cellosaurus:CVCL_HE04 NALM-6 DCLRE1C(-/-) 1 7567 -cellosaurus:CVCL_HE05 NALM-6 LIG4(-/-) 1 7568 -cellosaurus:CVCL_HE06 NALM-6 MUS81(-/-) 1 7569 -cellosaurus:CVCL_A4IJ NALM-6 POLB (-/-) 1 7570 -cellosaurus:CVCL_HE07 NALM-6 PRKDC(+/-) 1 7571 -cellosaurus:CVCL_HE08 NALM-6 RAD54L(-/-) 1 7572 -cellosaurus:CVCL_HE09 NALM-6 TOP1(+/-) 1 7573 -cellosaurus:CVCL_HE10 NALM-6 TOP2B(-/-) 1 7574 -cellosaurus:CVCL_HE11 NALM-6 TP53(+/-) 1 7575 -cellosaurus:CVCL_HE12 NALM-6 TP53(-/-) 1 7576 -cellosaurus:CVCL_HE13 NALM-6 XRCC5(+/-) 1 7577 -cellosaurus:CVCL_J365 Nalm-6-MSH+ 1 7578 -cellosaurus:CVCL_M248 POLZ KO 2 7579 -cellosaurus:CVCL_UD71 Nalm-6-MSH+/TK+/- 1 7580 -cellosaurus:CVCL_J376 POLH KO 2 7581 -cellosaurus:CVCL_JH01 POLK CD 2 7582 -cellosaurus:CVCL_JH05 POLK KO 2 7583 -cellosaurus:CVCL_JH00 POLK KO-CD comp 2 7584 -cellosaurus:CVCL_JH07 POLK KO-comp 2 7585 -cellosaurus:CVCL_JG97 POLK KO-POLH-/- 2 7586 -cellosaurus:CVCL_JH09 POLZ D2781N 2 7587 -cellosaurus:CVCL_JH04 POLZ L2618F 2 7588 -cellosaurus:CVCL_M250 POLZ L2618M 2 7589 -cellosaurus:CVCL_JH06 POLZ Y2779F 2 7590 -cellosaurus:CVCL_JG99 POLZ Y2779F-POLH+/- 2 7591 -cellosaurus:CVCL_JG98 POLZ Y2779F-POLK+/- 2 7592 -cellosaurus:CVCL_UD96 Nalm-6-TK+/- 1 7593 -cellosaurus:CVCL_M247 POLH KO MSH- 2 7594 -cellosaurus:CVCL_JH02 POLK CD MSH- 2 7595 -cellosaurus:CVCL_4W71 POLK F171A MSH- 2 7596 -cellosaurus:CVCL_4W72 POLK KO hetero MSH- 2 7597 -cellosaurus:CVCL_4W73 POLK KO homo MSH- 2 7598 -cellosaurus:CVCL_JH03 POLK SG MSH- 2 7599 -cellosaurus:CVCL_B7AM NALM-6/H 1 7600 -cellosaurus:CVCL_B7AN NALM-6/HDR 1 7601 -cellosaurus:CVCL_B7AP NALM-6/HDR-C5 2 7602 -cellosaurus:CVCL_0U51 NALM-6/SP-B 1 7603 -cellosaurus:CVCL_UJ05 NALM6, clone G5 1 7604 -cellosaurus:CVCL_RA33 Nalm6-eGFP-Puro 1 7605 -cellosaurus:CVCL_RA35 Nalm6-Fluc-hNIS 1 7606 -cellosaurus:CVCL_RA34 Nalm6-Fluc-Neo/eGFP-Puro 1 7607 -cellosaurus:CVCL_RA36 Nalm6-Fluc-Puro 1 7608 -cellosaurus:CVCL_4V57 NALM6/Clo 1 7609 -cellosaurus:CVCL_8270 PBEI 1 7610 -cellosaurus:CVCL_JH08 POLZ CD MSH- 1 7611 -cellosaurus:CVCL_M249 POLZ KO MSH- 1 7612 -cellosaurus:CVCL_3985 BON-1 0 7613 -cellosaurus:CVCL_WV97 BON1 RR1 1 7614 -cellosaurus:CVCL_WV98 BON1 RR2 1 7615 -cellosaurus:CVCL_A1AU BON1-MEN1-KO 1 7616 -cellosaurus:CVCL_0D20 Nialym 0 7617 -cellosaurus:CVCL_0D21 Nialymx 1 7618 -cellosaurus:CVCL_W880 BRG-P 0 7619 -cellosaurus:CVCL_W881 BRG-A 1 7620 -cellosaurus:CVCL_W882 BRG-M 1 7621 -cellosaurus:CVCL_1068 ACN 0 7622 -cellosaurus:CVCL_B7TC ACN/IFN-gamma 1 7623 -cellosaurus:CVCL_B7TD ACN/neo 1 7624 -cellosaurus:CVCL_1624 ONS-76 0 7625 -cellosaurus:CVCL_S734 ONS-B11 1 7626 -cellosaurus:CVCL_S735 ONS-F11 1 7627 -cellosaurus:CVCL_S736 ONS-F8 1 7628 -cellosaurus:CVCL_4067 OV202 0 7629 -cellosaurus:CVCL_4068 OV202 hp 1 7630 -cellosaurus:CVCL_AR87 GCH-nu 0 7631 -cellosaurus:CVCL_2910 GCH-nu-YS 1 7632 -cellosaurus:CVCL_UI50 SU-Ph2 0 7633 -cellosaurus:CVCL_UI51 SU/SR 1 7634 -cellosaurus:CVCL_0620 MDA-MB-361 0 7635 -cellosaurus:CVCL_EQ21 DY36T2 1 7636 -cellosaurus:CVCL_4Y09 MDA-MB-361-Luc#1 1 7637 -cellosaurus:CVCL_1281 HLE 0 7638 -cellosaurus:CVCL_JF92 HLE-LUC 1 7639 -cellosaurus:CVCL_X149 HLE/2E1 1 7640 -cellosaurus:CVCL_0002 HL-60 0 7641 -cellosaurus:CVCL_2892 Eos-HL-60 1 7642 -cellosaurus:CVCL_8439 HIMeg-1 1 7643 -cellosaurus:CVCL_UM46 HL-60 248 1 7644 -cellosaurus:CVCL_VK43 HL-60 blast 1 7645 -cellosaurus:CVCL_2493 HL-60 clone 15 1 7646 -cellosaurus:CVCL_2494 HL-60 clone 15-12 2 7647 -cellosaurus:CVCL_B6DR HL-60 clone F8 1 7648 -cellosaurus:CVCL_B6DS HL-60 clone H6 1 7649 -cellosaurus:CVCL_WZ17 HL-60 DeltaF508-CF 1 7650 -cellosaurus:CVCL_UM47 HL-60 SCX3 1 7651 -cellosaurus:CVCL_UM48 HL-60 SN3 1 7652 -cellosaurus:CVCL_A794 HL-60(TB) 1 7653 -cellosaurus:CVCL_A4BY HL-60-Luc2 1 7654 -cellosaurus:CVCL_4635 HL-60-R2 1 7655 -cellosaurus:CVCL_WW75 HL-60-Y3 1 7656 -cellosaurus:CVCL_YP33 HL-60/5FU 1 7657 -cellosaurus:CVCL_0304 HL-60/ADR 1 7658 -cellosaurus:CVCL_IP18 HL-60/AMSA 1 7659 -cellosaurus:CVCL_WR44 HL-60/AR 1 7660 -cellosaurus:CVCL_4V19 HL-60/ara-C [Japan 2011] 1 7661 -cellosaurus:CVCL_Z938 HL-60/ara-C [USA 1984] 1 7662 -cellosaurus:CVCL_4458 HL-60/DNR 1 7663 -cellosaurus:CVCL_3332 HL-60/MX1 1 7664 -cellosaurus:CVCL_3333 HL-60/MX2 2 7665 -cellosaurus:CVCL_II78 HL-60/R3 1 7666 -cellosaurus:CVCL_XE38 HL-60/RS 1 7667 -cellosaurus:CVCL_II77 HL-60/S4 1 7668 -cellosaurus:CVCL_0305 HL-60/VCR 1 7669 -cellosaurus:CVCL_4967 HL-60/Vinc 1 7670 -cellosaurus:CVCL_YT56 HL-60R 1 7671 -cellosaurus:CVCL_RS49 HL-60rARA-C2mug/ML 1 7672 -cellosaurus:CVCL_4V55 HL/CAFdA20 1 7673 -cellosaurus:CVCL_4V56 HL/CAFdA80 2 7674 -cellosaurus:CVCL_AR88 HL60 Ast.1 1 7675 -cellosaurus:CVCL_AR85 HL60 Ast.25 1 7676 -cellosaurus:CVCL_2495 HL60 Ast.3 1 7677 -cellosaurus:CVCL_2496 HL60 Ast.4 1 7678 -cellosaurus:CVCL_2497 HL60 M2 1 7679 -cellosaurus:CVCL_2498 HL60 M4 1 7680 -cellosaurus:CVCL_AR89 HL60 Sp1 1 7681 -cellosaurus:CVCL_2944 HL60(S) 1 7682 -cellosaurus:CVCL_C1LK HL60-CDR 1 7683 -cellosaurus:CVCL_WI27 HL60/AR 1 7684 -cellosaurus:CVCL_A0ST HL60/MRI 1 7685 -cellosaurus:CVCL_2945 HL60RG 1 7686 -cellosaurus:CVCL_8710 HP100-1 1 7687 -cellosaurus:CVCL_8711 HP50-2 1 7688 -cellosaurus:CVCL_D567 OM10.1 1 7689 -cellosaurus:CVCL_0478 P39 1 7690 -cellosaurus:CVCL_2162 PLB-985 1 7691 -cellosaurus:CVCL_C3HD PLB-985 CYBB KO 2 7692 -cellosaurus:CVCL_8907 RED-3 1 7693 -cellosaurus:CVCL_J128 VXG3 1 7694 -cellosaurus:CVCL_J129 XQH 1 7695 -cellosaurus:CVCL_8931 YJ 1 7696 -cellosaurus:CVCL_E217 NLF 0 7697 -cellosaurus:CVCL_UJ92 NLF-TrkA, clone #2 1 7698 -cellosaurus:CVCL_UJ93 NLF-TrkB, clone #6 1 7699 -cellosaurus:CVCL_RR42 NLFrCARBO5000 1 7700 -cellosaurus:CVCL_RR43 NLFrCDDP1000 1 7701 -cellosaurus:CVCL_RS77 NLFrCDDP500 1 7702 -cellosaurus:CVCL_RR44 NLFrDACARB20 1 7703 -cellosaurus:CVCL_RR45 NLFrDOCE20 1 7704 -cellosaurus:CVCL_RR46 NLFrDOX40 1 7705 -cellosaurus:CVCL_RR47 NLFrETO100 1 7706 -cellosaurus:CVCL_RR48 NLFrGEMCI20 1 7707 -cellosaurus:CVCL_RS78 NLFrIRINO1000 1 7708 -cellosaurus:CVCL_RR49 NLFrMEL3000 1 7709 -cellosaurus:CVCL_RR50 NLFrOXALI4000 1 7710 -cellosaurus:CVCL_RR76 NLFrPCL20 1 7711 -cellosaurus:CVCL_RR74 NLFrTOPO10 1 7712 -cellosaurus:CVCL_RR51 NLFrVCR10 1 7713 -cellosaurus:CVCL_RR52 NLFrVCR5 1 7714 -cellosaurus:CVCL_RR77 NLFrVINB10 1 7715 -cellosaurus:CVCL_RS79 NLFrVINOR10 1 7716 -cellosaurus:CVCL_D755 M249 0 7717 -cellosaurus:CVCL_EI93 M249 R4 1 7718 -cellosaurus:CVCL_T011 JKT-1 0 7719 -cellosaurus:CVCL_T014 JKT-HM 1 7720 -cellosaurus:CVCL_3083 OCUG-1 0 7721 -cellosaurus:CVCL_XD21 OCUG-1-Luc#5 1 7722 -cellosaurus:CVCL_C137 BL-16 0 7723 -cellosaurus:CVCL_0082 CL-01 1 7724 -cellosaurus:CVCL_1865 JeKo-1 0 7725 -cellosaurus:CVCL_HF56 JEKO-1 R 1 7726 -cellosaurus:CVCL_T747 NOS2 0 7727 -cellosaurus:CVCL_RN33 NOS2AR 1 7728 -cellosaurus:CVCL_RN29 NOS2CR 1 7729 -cellosaurus:CVCL_RN30 NOS2SNR 1 7730 -cellosaurus:CVCL_RN31 NOS2VR 1 7731 -cellosaurus:CVCL_0359 J82 0 7732 -cellosaurus:CVCL_8240 Hu609 1 7733 -cellosaurus:CVCL_8241 Hu609T 2 7734 -cellosaurus:CVCL_4V98 J82-NVB 1 7735 -cellosaurus:CVCL_5G46 CAL-1 [Human plasmacytoid dendritic] 0 7736 -cellosaurus:CVCL_XI46 CAL-1 TLR9 mCherry 1 7737 -cellosaurus:CVCL_N714 TC 620 0 7738 -cellosaurus:CVCL_UJ23 TC620 1.0 1 7739 -cellosaurus:CVCL_UJ24 TC620 1.3 2 7740 -cellosaurus:CVCL_5G72 TC620.6A2 1 7741 -cellosaurus:CVCL_1780 UACC-62 0 7742 -cellosaurus:CVCL_A1VN UACC62-RMR 1 7743 -cellosaurus:CVCL_WU69 UACC62R 1 7744 -cellosaurus:CVCL_0104 UKE-1 0 7745 -cellosaurus:CVCL_4Z62 UKE-1/TGR 1 7746 -cellosaurus:CVCL_5G58 ONS-21 0 7747 -cellosaurus:CVCL_5G59 ONS-21-C2 1 7748 -cellosaurus:CVCL_9904 UKF-NB-3 0 7749 -cellosaurus:CVCL_RT07 UKF-NB-3rBORTE20 1 7750 -cellosaurus:CVCL_RT08 UKF-NB-3rCABAZI2 1 7751 -cellosaurus:CVCL_RR89 UKF-NB-3rCARBO2000 1 7752 -cellosaurus:CVCL_M478 UKF-NB-3rCDDP1000 1 7753 -cellosaurus:CVCL_RQ61 UKF-NB-3rDACARB8 1 7754 -cellosaurus:CVCL_RS03 UKF-NB-3rDOCE10 1 7755 -cellosaurus:CVCL_RR90 UKF-NB-3rDOCE20 1 7756 -cellosaurus:CVCL_9906 UKF-NB-3rDOX100 1 7757 -cellosaurus:CVCL_RS04 UKF-NB-3rDOX20 1 7758 -cellosaurus:CVCL_RR91 UKF-NB-3rETO100 1 7759 -cellosaurus:CVCL_RT09 UKF-NB-3rETO200 1 7760 -cellosaurus:CVCL_RQ62 UKF-NB-3rGEMCI10 1 7761 -cellosaurus:CVCL_RT10 UKF-NB-3rGEMCI20 1 7762 -cellosaurus:CVCL_RQ63 UKF-NB-3rIRINO800 1 7763 -cellosaurus:CVCL_RS06 UKF-NB-3rMEL2000 1 7764 -cellosaurus:CVCL_RQ64 UKF-NB-3rMEL400 1 7765 -cellosaurus:CVCL_RS05 UKF-NB-3rNutlin10muM 1 7766 -cellosaurus:CVCL_RQ65 UKF-NB-3rOXALI2000 1 7767 -cellosaurus:CVCL_RT11 UKF-NB-3rOXALI4000 1 7768 -cellosaurus:CVCL_RQ66 UKF-NB-3rPCL20 1 7769 -cellosaurus:CVCL_RS21 UKF-NB-3rRITA10muM 1 7770 -cellosaurus:CVCL_RS19 UKF-NB-3rSNS-032_300nM 1 7771 -cellosaurus:CVCL_RQ67 UKF-NB-3rTOPO15 1 7772 -cellosaurus:CVCL_RT12 UKF-NB-3rTOPO20 1 7773 -cellosaurus:CVCL_9905 UKF-NB-3rVCR10 1 7774 -cellosaurus:CVCL_RS08 UKF-NB-3rVCR20 1 7775 -cellosaurus:CVCL_RR82 UKF-NB-3rVINB10 1 7776 -cellosaurus:CVCL_RQ68 UKF-NB-3rVINOR20 1 7777 -cellosaurus:CVCL_RT24 UKF-NB-3rYM155_20nM 1 7778 -cellosaurus:CVCL_6200 SK-RC-54 0 7779 -cellosaurus:CVCL_6201 SK-RC-54V 1 7780 -cellosaurus:CVCL_S717 UOK257 0 7781 -cellosaurus:CVCL_1D69 UOK257-2 1 7782 -cellosaurus:CVCL_A6SJ ED-70423C 0 7783 -cellosaurus:CVCL_A6TW ED-70423C(-) 1 7784 -cellosaurus:CVCL_A786 PC-7 0 7785 -cellosaurus:CVCL_A787 PC-7/CPT 1 7786 -cellosaurus:CVCL_2292 833K-E 0 7787 -cellosaurus:CVCL_1B36 64CP 1 7788 -cellosaurus:CVCL_7077 Me665/2 0 7789 -cellosaurus:CVCL_7078 Me665/2/21 1 7790 -cellosaurus:CVCL_7079 Me665/2/60 1 7791 -cellosaurus:CVCL_W187 Me665/R 1 7792 -cellosaurus:CVCL_9918 GLAG-66 0 7793 -cellosaurus:CVCL_2537 K1 1 7794 -cellosaurus:CVCL_6308 K2 [Human thyroid carcinoma] 1 7795 -cellosaurus:CVCL_1322 K5 1 7796 -cellosaurus:CVCL_6686 MM5.1 [Human myeloma] 0 7797 -cellosaurus:CVCL_6687 MM5.2 1 7798 -cellosaurus:CVCL_D202 MYL 0 7799 -cellosaurus:CVCL_D203 MYL-R 1 7800 -cellosaurus:CVCL_D721 PK-9 [Human] 0 7801 -cellosaurus:CVCL_0B33 RPK-9 1 7802 -cellosaurus:CVCL_D684 MSK-Leuk1 0 7803 -cellosaurus:CVCL_AT81 MSK-Leuk1S 1 7804 -cellosaurus:CVCL_S889 PNUH-12 0 7805 -cellosaurus:CVCL_A6IU PNUH-12 R1 1 7806 -cellosaurus:CVCL_1059 A2058 0 7807 -cellosaurus:CVCL_XH73 A2058-RFP/H2B-GFP 1 7808 -cellosaurus:CVCL_XH74 A2058-RFP/H2B-GFP BrM 2 7809 -cellosaurus:CVCL_2H38 HT168 1 7810 -cellosaurus:CVCL_2H39 HT168-M1 2 7811 -cellosaurus:CVCL_1820 HPB-ALL 0 7812 -cellosaurus:CVCL_7959 HPB-MLT 1 7813 -cellosaurus:CVCL_UJ09 HPB/ADR 2 7814 -cellosaurus:CVCL_UJ10 HPB/VP-16 2 7815 -cellosaurus:CVCL_0379 Ku812 0 7816 -cellosaurus:CVCL_0615 Ku812E 1 7817 -cellosaurus:CVCL_0616 Ku812F 1 7818 -cellosaurus:CVCL_6984 MDA-686Ln 0 7819 -cellosaurus:CVCL_D099 686LN-M3e 1 7820 -cellosaurus:CVCL_D097 686LN-M4e 1 7821 -cellosaurus:CVCL_D098 686LN-R30 1 7822 -cellosaurus:CVCL_WH05 KKP 0 7823 -cellosaurus:CVCL_WH06 KKP HR 1 7824 -cellosaurus:CVCL_5364 Sez627 0 7825 -cellosaurus:CVCL_A6TG Sez627(-) 1 7826 -cellosaurus:CVCL_1083 BFTC-905 0 7827 -cellosaurus:CVCL_M888 BFTC-905-compact 1 7828 -cellosaurus:CVCL_M889 BFTC-905-diffuse 1 7829 -cellosaurus:CVCL_M890 BFTC-905-diffuse M 1 7830 -cellosaurus:CVCL_4V69 BFTC-905-DOXO-II 1 7831 -cellosaurus:CVCL_M581 U-2030 0 7832 -cellosaurus:CVCL_M582 U-2030 TG 1 7833 -cellosaurus:CVCL_E212 MDAH041 0 7834 -cellosaurus:CVCL_IM77 TR9-7 1 7835 -cellosaurus:CVCL_XF81 UISO-MEL-4 0 7836 -cellosaurus:CVCL_ZL45 UISO-MEL-4WP 1 7837 -cellosaurus:CVCL_M087 RPCI-WM1 0 7838 -cellosaurus:CVCL_VJ33 RPCI-WM1/IR 1 7839 -cellosaurus:CVCL_1615 OAW42 0 7840 -cellosaurus:CVCL_W125 OAW42-A 1 7841 -cellosaurus:CVCL_1514 NCI-H2009 0 7842 -cellosaurus:CVCL_4Y15 NCI-H2009-Luc 1 7843 -cellosaurus:CVCL_0009 HDLM-2 0 7844 -cellosaurus:CVCL_M696 HDLM-2d 1 7845 -cellosaurus:CVCL_0533 SK-UT-1 0 7846 -cellosaurus:CVCL_2250 SK-UT-1B 1 7847 -cellosaurus:CVCL_6031 SK-MEL-29 0 7848 -cellosaurus:CVCL_IY54 SK-MEL-29.1 1 7849 -cellosaurus:CVCL_IY55 SK-MEL-29.2 1 7850 -cellosaurus:CVCL_IY56 SK-MEL-29.3 1 7851 -cellosaurus:CVCL_IY57 SK-MEL-29.4 1 7852 -cellosaurus:CVCL_IY58 SK-MEL-29.5 1 7853 -cellosaurus:CVCL_T739 SSTW 0 7854 -cellosaurus:CVCL_WK59 SSTW-9 1 7855 -cellosaurus:CVCL_8128 HN-5 0 7856 -cellosaurus:CVCL_LI55 LICR-HN5 R9.1 1 7857 -cellosaurus:CVCL_D568 HKESC-1 0 7858 -cellosaurus:CVCL_S525 HKESC-1/cis 1 7859 -cellosaurus:CVCL_B6L3 Mel 311 0 7860 -cellosaurus:CVCL_B6L4 Mel 31G 1 7861 -cellosaurus:CVCL_C123 SSK41 0 7862 -cellosaurus:CVCL_VC39 SSKWB 1 7863 -cellosaurus:CVCL_Y560 IGR-22 0 7864 -cellosaurus:CVCL_Y561 IGR-36 1 7865 -cellosaurus:CVCL_2713 RPMI-7932 0 7866 -cellosaurus:CVCL_1122 CHL-1 1 7867 -cellosaurus:CVCL_V643 CHL-2 2 7868 -cellosaurus:CVCL_RW16 RPMI-7932 COL-1 1 7869 -cellosaurus:CVCL_RW17 RPMI-7932 VBL-4 1 7870 -cellosaurus:CVCL_RW18 RPMI-7932 VCR-4.5/4 1 7871 -cellosaurus:CVCL_4837 FU-RPNT-1 0 7872 -cellosaurus:CVCL_4838 FU-RPNT-2 1 7873 -cellosaurus:CVCL_7714 UM-SCC-10B 0 7874 -cellosaurus:CVCL_A5TP UM-SCC-10BPT 1 7875 -cellosaurus:CVCL_A7NQ SALT-3 0 7876 -cellosaurus:CVCL_A7PZ SALT-3/ADM cl-2 1 7877 -cellosaurus:CVCL_1695 SiMa 0 7878 -cellosaurus:CVCL_RG05 SiMa GFP-VAMP2 1 7879 -cellosaurus:CVCL_7012 ACC-LC-319 0 7880 -cellosaurus:CVCL_A1GQ ACC-LC-319/bone2 1 7881 -cellosaurus:CVCL_6942 QBC939 0 7882 -cellosaurus:CVCL_LJ49 QBC939/ADM 1 7883 -cellosaurus:CVCL_2574 LIM1215 0 7884 -cellosaurus:CVCL_LC77 LIM1215 KRAS (G12A/+) 1 7885 -cellosaurus:CVCL_LC81 LIM1215 KRAS (G12C/+) 1 7886 -cellosaurus:CVCL_LC80 LIM1215 KRAS (G12D/+) 1 7887 -cellosaurus:CVCL_LC76 LIM1215 KRAS (G12R/+) 1 7888 -cellosaurus:CVCL_LC78 LIM1215 KRAS (G12S/+) 1 7889 -cellosaurus:CVCL_LC79 LIM1215 KRAS (G12V/+) 1 7890 -cellosaurus:CVCL_LC82 LIM1215 KRAS (G13D/+) 1 7891 -cellosaurus:CVCL_A4IG LIM1215 PIK3CA (H1047R/+) 1 7892 -cellosaurus:CVCL_A4IH LIM1215 PIK3CA (E545K/+) 1 7893 -cellosaurus:CVCL_A2CA LIM1215 R1 Cetux 1 7894 -cellosaurus:CVCL_A2CB LIM1215 R2 Cetux 1 7895 -cellosaurus:CVCL_A2CC LIM1215 R3 Cetux 1 7896 -cellosaurus:CVCL_A2CD LIM1215 R4 Cetux 1 7897 -cellosaurus:CVCL_A2CE LIM1215 R5 Cetux 1 7898 -cellosaurus:CVCL_0609 Calu-3 0 7899 -cellosaurus:CVCL_B0ZC Abcam Calu-3 TMPRSS2 KO 1 7900 -cellosaurus:CVCL_YZ47 Calu-3 2B4 1 7901 -cellosaurus:CVCL_EQ19 Calu3-GemR 1 7902 -cellosaurus:CVCL_4026 SCC-12 0 7903 -cellosaurus:CVCL_4027 SCC-12B 1 7904 -cellosaurus:CVCL_M672 SCC-12B.2 2 7905 -cellosaurus:CVCL_4028 SCC-12F 1 7906 -cellosaurus:CVCL_M673 SCC-12F.2 2 7907 -cellosaurus:CVCL_M674 SCC-12F.2a 3 7908 -cellosaurus:CVCL_M675 SCC-12F.2b 3 7909 -cellosaurus:CVCL_M676 SCC-12V 1 7910 -cellosaurus:CVCL_S444 BS153 0 7911 -cellosaurus:CVCL_B3PI BS153-ResE 1 7912 -cellosaurus:CVCL_9907 UKF-NB-4 0 7913 -cellosaurus:CVCL_RS20 UKF-NB-4AD169 1 7914 -cellosaurus:CVCL_9913 UKF-NB-4rCDDP1000 1 7915 -cellosaurus:CVCL_9914 UKF-NB-4rDOX350 1 7916 -cellosaurus:CVCL_9915 UKF-NB-4rVCR50 1 7917 -cellosaurus:CVCL_7153 U-1285 0 7918 -cellosaurus:CVCL_7154 U-1285dox 1 7919 -cellosaurus:CVCL_0324 HuCC-T1 0 7920 -cellosaurus:CVCL_QZ44 HuCC-T1-G10 1 7921 -cellosaurus:CVCL_QZ45 HuCC-T1-G100 1 7922 -cellosaurus:CVCL_1691 SF539 0 7923 -cellosaurus:CVCL_B0CD SFT 1 7924 -cellosaurus:CVCL_0024 SCLC-21H 0 7925 -cellosaurus:CVCL_X025 SCLC-16HC 1 7926 -cellosaurus:CVCL_X026 SCLC-16HV 2 7927 -cellosaurus:CVCL_8262 SCLC-24H 1 7928 -cellosaurus:CVCL_6010 NPC-TW03 0 7929 -cellosaurus:CVCL_ZF72 NPC-TW03 EBV(+) 1 7930 -cellosaurus:CVCL_SA02 HKCI-5 0 7931 -cellosaurus:CVCL_SA13 HKCI-5A 1 7932 -cellosaurus:CVCL_SA09 HKCI-5B 1 7933 -cellosaurus:CVCL_1258 HCC1806 0 7934 -cellosaurus:CVCL_RS40 HCC-1806rYM155_20nM 1 7935 -cellosaurus:CVCL_XX32 PM-LGSOC-01 0 7936 -cellosaurus:CVCL_ZE89 PM-LGSOC-01 luc-EGFP 1 7937 -cellosaurus:CVCL_4976 GIST-T1 0 7938 -cellosaurus:CVCL_QW91 GIST-T1-117 1 7939 -cellosaurus:CVCL_QW82 GIST-T1-R2 1 7940 -cellosaurus:CVCL_QW86 GIST-T1-R8 1 7941 -cellosaurus:CVCL_QW90 GIST-T1-R9 1 7942 -cellosaurus:CVCL_QW89 GIST-T1-RA2 1 7943 -cellosaurus:CVCL_A9M9 GIST-T1/670 1 7944 -cellosaurus:CVCL_A9N0 GIST-T1/816 1 7945 -cellosaurus:CVCL_S983 GIST-T1/829 1 7946 -cellosaurus:CVCL_M882 KATO II 0 7947 -cellosaurus:CVCL_0371 KATO III 1 7948 -cellosaurus:CVCL_C1ND KATO III Ola-R 2 7949 -cellosaurus:CVCL_M251 KATO III/CMV-Luc 2 7950 -cellosaurus:CVCL_VL11 TU-KATO-III 2 7951 -cellosaurus:CVCL_LL63 132P1 0 7952 -cellosaurus:CVCL_LL64 132P1 CD44+/CD90+ 1 7953 -cellosaurus:CVCL_LL65 132P1 CD44+/CD90- 1 7954 -cellosaurus:CVCL_LM70 132P1 CD44-/CD90+ 1 7955 -cellosaurus:CVCL_LM71 132P1 CD44-/CD90- 1 7956 -cellosaurus:CVCL_D029 M18 0 7957 -cellosaurus:CVCL_D030 M18/B7 1 7958 -cellosaurus:CVCL_1392 Lu-65 0 7959 -cellosaurus:CVCL_3012 Lu-65A 1 7960 -cellosaurus:CVCL_3013 Lu-65B 1 7961 -cellosaurus:CVCL_3014 Lu-65C 1 7962 -cellosaurus:CVCL_0216 CMK 0 7963 -cellosaurus:CVCL_RM24 CMK-6 1 7964 -cellosaurus:CVCL_2804 CMK-86 1 7965 -cellosaurus:CVCL_0217 CMK-11-5 2 7966 -cellosaurus:CVCL_WS21 UCD-Mel-N 0 7967 -cellosaurus:CVCL_WS22 UCD-Mel-N(Ski+) 1 7968 -cellosaurus:CVCL_WS23 UCD-Mel-N(Ski+/Fhl2+) 2 7969 -cellosaurus:CVCL_WS24 UCD-Mel-N-GFP 1 7970 -cellosaurus:CVCL_WS25 UCD-Mel-N-PEDF 1 7971 -cellosaurus:CVCL_3005 KP-3 0 7972 -cellosaurus:CVCL_3006 KP-3L 1 7973 -cellosaurus:CVCL_4Y22 KP-3L-Luc#5 2 7974 -cellosaurus:CVCL_0U13 KP-3N 1 7975 -cellosaurus:CVCL_M558 BL-14 0 7976 -cellosaurus:CVCL_ZI23 BL-14B 1 7977 -cellosaurus:CVCL_3015 Lu-99 0 7978 -cellosaurus:CVCL_1393 Lu-99A 1 7979 -cellosaurus:CVCL_2801 Lu-99B 1 7980 -cellosaurus:CVCL_2802 Lu-99C 1 7981 -cellosaurus:CVCL_0131 A-172 0 7982 -cellosaurus:CVCL_5735 D-54MG 1 7983 -cellosaurus:CVCL_8760 T-289 0 7984 -cellosaurus:CVCL_GZ32 289 DPP3 1 7985 -cellosaurus:CVCL_GZ33 289 TAM6 1 7986 -cellosaurus:CVCL_2141 NGP 0 7987 -cellosaurus:CVCL_HG07 N_M5R1 1 7988 -cellosaurus:CVCL_HG08 N_N20R1 1 7989 -cellosaurus:CVCL_0B58 NGP-C4 1 7990 -cellosaurus:CVCL_AX38 NGP.1A.TR1 1 7991 -cellosaurus:CVCL_RS68 NGPrBORTE20 1 7992 -cellosaurus:CVCL_RS30 NGPrCARBO5000 1 7993 -cellosaurus:CVCL_RS31 NGPrCDDP1000 1 7994 -cellosaurus:CVCL_RT19 NGPrDACARB18 1 7995 -cellosaurus:CVCL_RS32 NGPrDOCE20 1 7996 -cellosaurus:CVCL_RS33 NGPrDOX20 1 7997 -cellosaurus:CVCL_RS69 NGPrETO200 1 7998 -cellosaurus:CVCL_RS34 NGPrETO400 1 7999 -cellosaurus:CVCL_RR55 NGPrGEMCI20 1 8000 -cellosaurus:CVCL_RS70 NGPrIRINO1000 1 8001 -cellosaurus:CVCL_RS71 NGPrMEL2000 1 8002 -cellosaurus:CVCL_RS35 NGPrMEL3000 1 8003 -cellosaurus:CVCL_RS72 NGPrMEL4000 1 8004 -cellosaurus:CVCL_RS36 NGPrOXALI4000 1 8005 -cellosaurus:CVCL_RS73 NGPrPCL20 1 8006 -cellosaurus:CVCL_RS37 NGPrTOPO20 1 8007 -cellosaurus:CVCL_RR40 NGPrVCR10 1 8008 -cellosaurus:CVCL_RR41 NGPrVCR100 1 8009 -cellosaurus:CVCL_RS74 NGPrVCR20 1 8010 -cellosaurus:CVCL_RS75 NGPrVINB20 1 8011 -cellosaurus:CVCL_RS76 NGPrVINOR20 1 8012 -cellosaurus:CVCL_0445 MeWo 0 8013 -cellosaurus:CVCL_AZ60 MeWo CIS 0.01 1 8014 -cellosaurus:CVCL_AZ74 MeWo CIS 1 1 8015 -cellosaurus:CVCL_AZ61 MeWo ETO 0.1 1 8016 -cellosaurus:CVCL_AZ62 MeWo ETO 1 1 8017 -cellosaurus:CVCL_AZ75 MeWo FOTE 4 1 8018 -cellosaurus:CVCL_AZ76 MeWo FOTE 40 1 8019 -cellosaurus:CVCL_Y663 MeWo LNI 6I 1 8020 -cellosaurus:CVCL_AZ63 MeWo VIN 0.5 1 8021 -cellosaurus:CVCL_AZ77 MeWo VIN 5 1 8022 -cellosaurus:CVCL_U937 MeWo-LC1 1 8023 -cellosaurus:CVCL_J260 MeWo-Luc 1 8024 -cellosaurus:CVCL_A667 SCMC-RM2 0 8025 -cellosaurus:CVCL_A668 SCMC-RM2-1 1 8026 -cellosaurus:CVCL_8706 HONE-1 0 8027 -cellosaurus:CVCL_M595 HONE-1/CPT30 1 8028 -cellosaurus:CVCL_M596 HONE-1/CPT30R 2 8029 -cellosaurus:CVCL_7005 ACC-LC-172 0 8030 -cellosaurus:CVCL_Y202 ACC-LC-172/CDDP 1 8031 -cellosaurus:CVCL_Y203 SK3/VP16 1 8032 -cellosaurus:CVCL_A1TQ Nakajima 0 8033 -cellosaurus:CVCL_A1TR Nakajima-S1 1 8034 -cellosaurus:CVCL_A1TS Nakajima-S2 1 8035 -cellosaurus:CVCL_0067 Namalwa 0 8036 -cellosaurus:CVCL_1431 MUTZ-1 1 8037 -cellosaurus:CVCL_4Y60 Namalwa KJM-1 1 8038 -cellosaurus:CVCL_1838 Namalwa.CSN/70 1 8039 -cellosaurus:CVCL_1839 Namalwa.IPN/45 1 8040 -cellosaurus:CVCL_1840 Namalwa.KN2 1 8041 -cellosaurus:CVCL_1841 Namalwa.PNT 1 8042 -cellosaurus:CVCL_KU34 Namalwa/21V 1 8043 -cellosaurus:CVCL_KU33 Namalwa/MDR1 1 8044 -cellosaurus:CVCL_U821 NAT-30 1 8045 -cellosaurus:CVCL_E056 RCC6 0 8046 -cellosaurus:CVCL_UY82 RCC6/VHL 1 8047 -cellosaurus:CVCL_1559 NCI-H358 0 8048 -cellosaurus:CVCL_VK07 NCI-H358a 1 8049 -cellosaurus:CVCL_JA53 NCI-H358M 1 8050 -cellosaurus:CVCL_1659 Rh18 0 8051 -cellosaurus:CVCL_DG02 Rh18c 1 8052 -cellosaurus:CVCL_4Z11 M1RW 0 8053 -cellosaurus:CVCL_4Z12 M1RW5 1 8054 -cellosaurus:CVCL_N724 NCE-G 28 0 8055 -cellosaurus:CVCL_0V15 NCE-G 28T 1 8056 -cellosaurus:CVCL_2143 NMB 0 8057 -cellosaurus:CVCL_8901 NMB-7 1 8058 -cellosaurus:CVCL_5086 SNU-719 0 8059 -cellosaurus:CVCL_L052 SNU-719-5FU 1 8060 -cellosaurus:CVCL_L053 SNU-719-DOX 1 8061 -cellosaurus:CVCL_C522 2102EP 0 8062 -cellosaurus:CVCL_C0QK 2102EP-R 1 8063 -cellosaurus:CVCL_3037 N2102Ep Clone 2/A6 1 8064 -cellosaurus:CVCL_6C70 HPC-4 0 8065 -cellosaurus:CVCL_6C71 HPC-4H4 1 8066 -cellosaurus:CVCL_6C72 HPC-4P4a 1 8067 -cellosaurus:CVCL_3883 SW1736 0 8068 -cellosaurus:CVCL_IY89 SW1736 eGFP-H2B 1 8069 -cellosaurus:CVCL_E278 Panc 02.05 0 8070 -cellosaurus:CVCL_C3HL Panc 02.05-EYA2 1 8071 -cellosaurus:CVCL_X950 OV-MZ-1 0 8072 -cellosaurus:CVCL_X962 OV-MZ-1a 1 8073 -cellosaurus:CVCL_X947 HWUS-1 0 8074 -cellosaurus:CVCL_X949 HWUS-1a 1 8075 -cellosaurus:CVCL_5112 SNU-C5 0 8076 -cellosaurus:CVCL_V482 SNU-C5/5FU-R 1 8077 -cellosaurus:CVCL_V483 SNU-C5/IRT-R 1 8078 -cellosaurus:CVCL_V484 SNU-C5/OXT-R 1 8079 -cellosaurus:CVCL_B079 UWB1.289 0 8080 -cellosaurus:CVCL_B078 UWB1.289+BRCA1 1 8081 -cellosaurus:CVCL_1172 DJM-1 0 8082 -cellosaurus:CVCL_8157 BSCC-93 1 8083 -cellosaurus:CVCL_A788 NCI-N231 0 8084 -cellosaurus:CVCL_1602 NCI-N417 1 8085 -cellosaurus:CVCL_A592 NCI-H60 2 8086 -cellosaurus:CVCL_L091 OCUCh-LM1 0 8087 -cellosaurus:CVCL_L092 OCUCh-LM1-H1 1 8088 -cellosaurus:CVCL_M718 SYM-I 0 8089 -cellosaurus:CVCL_M719 SYM-I clone K-104 1 8090 -cellosaurus:CVCL_RN12 MC-B11/14 0 8091 -cellosaurus:CVCL_RN13 MC-B11/14IgA- 1 8092 -cellosaurus:CVCL_5749 FAMPAC 0 8093 -cellosaurus:CVCL_5750 FAMPAC-A 1 8094 -cellosaurus:CVCL_1094 C-33 A 0 8095 -cellosaurus:CVCL_4J71 HOE6V 1 8096 -cellosaurus:CVCL_X008 SK-OV-4 1 8097 -cellosaurus:CVCL_A457 SK-OV-6 1 8098 -cellosaurus:CVCL_B0P4 AHM-1 0 8099 -cellosaurus:CVCL_B0P5 AHM-3D3 1 8100 -cellosaurus:CVCL_1483 NCI-H1650 0 8101 -cellosaurus:CVCL_4V01 H1650-ER1 1 8102 -cellosaurus:CVCL_4W95 NCI-H1650-Luc 1 8103 -cellosaurus:CVCL_1619 OCI-AML-2 0 8104 -cellosaurus:CVCL_8391 OU-AML-1 1 8105 -cellosaurus:CVCL_8392 OU-AML-2 1 8106 -cellosaurus:CVCL_8393 OU-AML-3 1 8107 -cellosaurus:CVCL_8394 OU-AML-4 1 8108 -cellosaurus:CVCL_8395 OU-AML-5 1 8109 -cellosaurus:CVCL_8396 OU-AML-6 1 8110 -cellosaurus:CVCL_8397 OU-AML-7 1 8111 -cellosaurus:CVCL_8398 OU-AML-8 1 8112 -cellosaurus:CVCL_1852 Tanoue 0 8113 -cellosaurus:CVCL_U347 ST [Human leukemia] 1 8114 -cellosaurus:CVCL_1236 GR-ST 2 8115 -cellosaurus:CVCL_8658 B1203L 0 8116 -cellosaurus:CVCL_A5AR B1203L-CD80 1 8117 -cellosaurus:CVCL_DH47 MGH119 0 8118 -cellosaurus:CVCL_DH48 MGH119-R 1 8119 -cellosaurus:CVCL_6807 WM902B 0 8120 -cellosaurus:CVCL_VK52 WM902B-BR 1 8121 -cellosaurus:CVCL_5991 JHU-022 0 8122 -cellosaurus:CVCL_5987 JHU-012 1 8123 -cellosaurus:CVCL_3170 SNG-II 0 8124 -cellosaurus:CVCL_3157 RMUG-L 1 8125 -cellosaurus:CVCL_1671 RTSG 1 8126 -cellosaurus:CVCL_C0UY NOKT-1 0 8127 -cellosaurus:CVCL_C0UZ NOKT-1-XG 1 8128 -cellosaurus:CVCL_E307 EC9706 0 8129 -cellosaurus:CVCL_5V05 EC9706 clone EC1 1 8130 -cellosaurus:CVCL_5V06 EC9706 clone EC2 1 8131 -cellosaurus:CVCL_5V07 EC9706 clone EC3 1 8132 -cellosaurus:CVCL_2291 59M 0 8133 -cellosaurus:CVCL_6E55 59M13 1 8134 -cellosaurus:CVCL_0042 U2OS 0 8135 -cellosaurus:CVCL_B0YX Abcam U2OS ACO1 KO 1 8136 -cellosaurus:CVCL_B0YY Abcam U2OS CD40 KO 1 8137 -cellosaurus:CVCL_C0BN Abcam U2OS COL1A1 KO 1 8138 -cellosaurus:CVCL_C0BP Abcam U2OS EZHIP KO 1 8139 -cellosaurus:CVCL_B0YZ Abcam U2OS FHL2 KO 1 8140 -cellosaurus:CVCL_B0Z0 Abcam U2OS HNRNPD KO 1 8141 -cellosaurus:CVCL_C0BQ Abcam U2OS KDM4C KO 1 8142 -cellosaurus:CVCL_C0BR Abcam U2OS PARP2 KO 1 8143 -cellosaurus:CVCL_B0Z1 Abcam U2OS PICALM KO 1 8144 -cellosaurus:CVCL_B0Z2 Abcam U2OS SUV39H2 KO 1 8145 -cellosaurus:CVCL_B0Z3 Abcam U2OS THY1 KO 1 8146 -cellosaurus:CVCL_B0Z4 Abcam U2OS TNC KO 1 8147 -cellosaurus:CVCL_KV94 cAMP Hunter U2OS HTR7B Gs 1 8148 -cellosaurus:CVCL_KV95 cAMP Hunter U2OS mGLP1R Gs 1 8149 -cellosaurus:CVCL_KW11 InCELL Hunter U2OS BCL2-BAX Protein Binding 1 8150 -cellosaurus:CVCL_KW12 InCELL Hunter U2OS BCL2-BIM Protein Binding 1 8151 -cellosaurus:CVCL_KW13 InCELL Hunter U2OS BCL2L1-BAX Protein Binding 1 8152 -cellosaurus:CVCL_KW14 InCELL Hunter U2OS BCL2L1-BIM Protein Binding 1 8153 -cellosaurus:CVCL_KW15 InCELL Hunter U2OS MCL1-BIM Protein Binding 1 8154 -cellosaurus:CVCL_ZJ00 LanthaScreen ERK2 U2OS 1 8155 -cellosaurus:CVCL_ZJ04 LanthaScreen STAT1 U2OS 1 8156 -cellosaurus:CVCL_ZJ10 LanthaScreen STAT5 (JAK2 V617F) U2OS 1 8157 -cellosaurus:CVCL_YJ95 LINTERNA U2OS 1 8158 -cellosaurus:CVCL_KZ71 PathHunter U2OS ADCYAP1R1 Total GPCR Internalization 1 8159 -cellosaurus:CVCL_KZ72 PathHunter U2OS ADRA2C Total GPCR Internalization 1 8160 -cellosaurus:CVCL_KZ73 PathHunter U2OS AGTRL1 Activated GPCR Internalization 1 8161 -cellosaurus:CVCL_KZ74 PathHunter U2OS AHR Protein Interaction 1 8162 -cellosaurus:CVCL_KZ75 PathHunter U2OS AVPR1A beta-arrestin 1 8163 -cellosaurus:CVCL_KZ76 PathHunter U2OS AVPR1A Total GPCR Internalization 1 8164 -cellosaurus:CVCL_KZ77 PathHunter U2OS AVPR1B Activated GPCR Internalization 1 8165 -cellosaurus:CVCL_KZ78 PathHunter U2OS AVPR2 Activated GPCR Internalization 1 8166 -cellosaurus:CVCL_KZ79 PathHunter U2OS BDKRB2 Activated GPCR Internalization 1 8167 -cellosaurus:CVCL_KZ80 PathHunter U2OS beta-arrestin1-EA Parental 1 8168 -cellosaurus:CVCL_KZ81 PathHunter U2OS beta-arrestin2-EA Parental 1 8169 -cellosaurus:CVCL_KZ82 PathHunter U2OS beta-Catenin Nuclear Translocation 1 8170 -cellosaurus:CVCL_KZ83 PathHunter U2OS C3AR1 Activated GPCR Internalization 1 8171 -cellosaurus:CVCL_KZ84 PathHunter U2OS C3AR1 beta-arrestin 1 8172 -cellosaurus:CVCL_KZ85 PathHunter U2OS C5AR1 Activated GPCR Internalization 1 8173 -cellosaurus:CVCL_KZ86 PathHunter U2OS C5L2 Activated GPCR Internalization 1 8174 -cellosaurus:CVCL_KZ87 PathHunter U2OS CALCR beta-arrestin 1 8175 -cellosaurus:CVCL_KZ88 PathHunter U2OS CCKAR Activated GPCR Internalization 1 8176 -cellosaurus:CVCL_KZ89 PathHunter U2OS CCKBR Activated GPCR Internalization 1 8177 -cellosaurus:CVCL_KZ90 PathHunter U2OS CCR1 Activated GPCR Internalization 1 8178 -cellosaurus:CVCL_KZ91 PathHunter U2OS CCR1 beta-arrestin-1 1 8179 -cellosaurus:CVCL_KZ92 PathHunter U2OS CCR10 Activated GPCR Internalization 1 8180 -cellosaurus:CVCL_KZ93 PathHunter U2OS CCR10 beta-arrestin 1 8181 -cellosaurus:CVCL_KZ94 PathHunter U2OS CCR2 Total GPCR Internalization 1 8182 -cellosaurus:CVCL_KZ95 PathHunter U2OS CCR4 Total GPCR Internalization 1 8183 -cellosaurus:CVCL_KZ96 PathHunter U2OS CCR5 Activated GPCR Internalization 1 8184 -cellosaurus:CVCL_KZ97 PathHunter U2OS CCR6 Activated GPCR Internalization 1 8185 -cellosaurus:CVCL_KZ98 PathHunter U2OS CCR7 Activated GPCR Internalization 1 8186 -cellosaurus:CVCL_KZ99 PathHunter U2OS CDC25A Degradation 1 8187 -cellosaurus:CVCL_LA00 PathHunter U2OS CHRM1 Activated GPCR Internalization 1 8188 -cellosaurus:CVCL_LA01 PathHunter U2OS CHRM1 beta-arrestin 1 8189 -cellosaurus:CVCL_LA02 PathHunter U2OS CHRM2 Activated GPCR Internalization 1 8190 -cellosaurus:CVCL_LA03 PathHunter U2OS CHRM3 beta-arrestin 1 8191 -cellosaurus:CVCL_LA04 PathHunter U2OS CHRM3 Total GPCR Internalization 1 8192 -cellosaurus:CVCL_LA05 PathHunter U2OS CHRM4 Total GPCR Internalization 1 8193 -cellosaurus:CVCL_LA06 PathHunter U2OS CHRM5 Activated GPCR Internalization 1 8194 -cellosaurus:CVCL_LA07 PathHunter U2OS CMKLR1 Activated GPCR Internalization 1 8195 -cellosaurus:CVCL_LA08 PathHunter U2OS CRHR1 Activated GPCR Internalization 1 8196 -cellosaurus:CVCL_LA09 PathHunter U2OS CRHR2 Activated GPCR Internalization 1 8197 -cellosaurus:CVCL_LA10 PathHunter U2OS CRTH2 beta-arrestin 1 8198 -cellosaurus:CVCL_LA11 PathHunter U2OS CXCR1 Activated GPCR Internalization 1 8199 -cellosaurus:CVCL_LA12 PathHunter U2OS CXCR1 beta-arrestin 1 8200 -cellosaurus:CVCL_LA13 PathHunter U2OS CXCR2 Activated GPCR Internalization 1 8201 -cellosaurus:CVCL_LA14 PathHunter U2OS CXCR3 Activated GPCR Internalization 1 8202 -cellosaurus:CVCL_LA15 PathHunter U2OS CXCR3 beta-arrestin 1 8203 -cellosaurus:CVCL_LA16 PathHunter U2OS CXCR4 Total GPCR Internalization 1 8204 -cellosaurus:CVCL_RQ22 PathHunter U2OS CXCR5 beta-arrestin 1 8205 -cellosaurus:CVCL_LA17 PathHunter U2OS CXCR6 Total GPCR Internalization 1 8206 -cellosaurus:CVCL_LA18 PathHunter U2OS CXCR7 Activated GPCR Internalization 1 8207 -cellosaurus:CVCL_LA19 PathHunter U2OS DRD1 Total GPCR Internalization 1 8208 -cellosaurus:CVCL_LA20 PathHunter U2OS DRD3 beta-arrestin 1 8209 -cellosaurus:CVCL_LA21 PathHunter U2OS EBI2 Total GPCR Internalization 1 8210 -cellosaurus:CVCL_LA22 PathHunter U2OS EDG2 Activated GPCR Internalization 1 8211 -cellosaurus:CVCL_LA23 PathHunter U2OS EDG3 Activated GPCR Internalization 1 8212 -cellosaurus:CVCL_LA24 PathHunter U2OS EDG5 Activated GPCR Internalization 1 8213 -cellosaurus:CVCL_LA25 PathHunter U2OS EDG7 Activated GPCR Internalization 1 8214 -cellosaurus:CVCL_LA26 PathHunter U2OS EDNRB Total GPCR Internalization 1 8215 -cellosaurus:CVCL_LA27 PathHunter U2OS F2RL1 Activated GPCR Internalization 1 8216 -cellosaurus:CVCL_LA28 PathHunter U2OS F2RL1 beta-arrestin 1 8217 -cellosaurus:CVCL_LA29 PathHunter U2OS F2RL3 Activated GPCR Internalization 1 8218 -cellosaurus:CVCL_LA30 PathHunter U2OS FOXO3 Nuclear Translocation 1 8219 -cellosaurus:CVCL_LA31 PathHunter U2OS FPR1 Total GPCR Internalization 1 8220 -cellosaurus:CVCL_LA32 PathHunter U2OS FPRL1 Activated GPCR Internalization 1 8221 -cellosaurus:CVCL_LA33 PathHunter U2OS GALR1 Total GPCR Internalization 1 8222 -cellosaurus:CVCL_LA34 PathHunter U2OS GHSR1a beta-arrestin-1 1 8223 -cellosaurus:CVCL_LA35 PathHunter U2OS GLP1R Activated GPCR Internalization 1 8224 -cellosaurus:CVCL_LA36 PathHunter U2OS GLP1R Total GPCR Internalization 1 8225 -cellosaurus:CVCL_LA37 PathHunter U2OS GLP2R Activated GPCR Internalization 1 8226 -cellosaurus:CVCL_LA38 PathHunter U2OS GPBAR1 beta-arrestin 1 8227 -cellosaurus:CVCL_LA39 PathHunter U2OS GPR1 Total GPCR Internalization 1 8228 -cellosaurus:CVCL_LA40 PathHunter U2OS GPR119 beta-arrestin 1 8229 -cellosaurus:CVCL_LA41 PathHunter U2OS GPR17 beta-arrestin 1 8230 -cellosaurus:CVCL_LA42 PathHunter U2OS GPR22 beta-arrestin 1 8231 -cellosaurus:CVCL_LA43 PathHunter U2OS GPR35 Activated GPCR Internalization 1 8232 -cellosaurus:CVCL_LA44 PathHunter U2OS GPR52 beta-arrestin 1 8233 -cellosaurus:CVCL_LA45 PathHunter U2OS GPR6 beta-arrestin 1 8234 -cellosaurus:CVCL_LA46 PathHunter U2OS GPR85 beta-arrestin 1 8235 -cellosaurus:CVCL_LA47 PathHunter U2OS GRPR Activated GPCR Internalization 1 8236 -cellosaurus:CVCL_LA48 PathHunter U2OS GRPR beta-arrestin 1 8237 -cellosaurus:CVCL_LA49 PathHunter U2OS HCRTR1 Total GPCR Internalization 1 8238 -cellosaurus:CVCL_LA50 PathHunter U2OS HCRTR2 Total GPCR Internalization 1 8239 -cellosaurus:CVCL_LA51 PathHunter U2OS HRH4 beta-arrestin 1 8240 -cellosaurus:CVCL_LA52 PathHunter U2OS HTR1B beta-arrestin 1 8241 -cellosaurus:CVCL_LA53 PathHunter U2OS HTR1E beta-arrestin 1 8242 -cellosaurus:CVCL_LA54 PathHunter U2OS HTR1F beta-arrestin 1 8243 -cellosaurus:CVCL_LA55 PathHunter U2OS HTR2A beta-arrestin 1 8244 -cellosaurus:CVCL_LA56 PathHunter U2OS HTR2A Total GPCR Internalization 1 8245 -cellosaurus:CVCL_LA57 PathHunter U2OS HTR2C Activated GPCR Internalization 1 8246 -cellosaurus:CVCL_LA58 PathHunter U2OS HTR2C beta-arrestin 1 8247 -cellosaurus:CVCL_LA59 PathHunter U2OS HTR2C(VGV) beta-arrestin 1 8248 -cellosaurus:CVCL_LA60 PathHunter U2OS HTR2C(VNV) beta-arrestin 1 8249 -cellosaurus:CVCL_LA61 PathHunter U2OS HTR2C(VSV) beta-arrestin 1 8250 -cellosaurus:CVCL_LA62 PathHunter U2OS HTR5A beta-arrestin 1 8251 -cellosaurus:CVCL_LA63 PathHunter U2OS IkappaB Degradation 1 8252 -cellosaurus:CVCL_LA64 PathHunter U2OS Keap1-NRF2 Nuclear Translocation 1 8253 -cellosaurus:CVCL_LA65 PathHunter U2OS KISS1R beta-arrestin 1 8254 -cellosaurus:CVCL_LA66 PathHunter U2OS LTB4R Total GPCR Internalization 1 8255 -cellosaurus:CVCL_LA67 PathHunter U2OS MC1R beta-arrestin 1 8256 -cellosaurus:CVCL_LA68 PathHunter U2OS MC3R beta-arrestin 1 8257 -cellosaurus:CVCL_LA69 PathHunter U2OS MC3R Total GPCR Internalization 1 8258 -cellosaurus:CVCL_LA70 PathHunter U2OS MC4R beta-arrestin 1 8259 -cellosaurus:CVCL_LA71 PathHunter U2OS MC5R beta-arrestin 1 8260 -cellosaurus:CVCL_LA72 PathHunter U2OS mCCR1 beta-arrestin 1 8261 -cellosaurus:CVCL_LA73 PathHunter U2OS mCCR2 beta-arrestin 1 8262 -cellosaurus:CVCL_LA74 PathHunter U2OS MCHR1 beta-arrestin 1 8263 -cellosaurus:CVCL_LA75 PathHunter U2OS MCHR1 beta-arrestin-1 1 8264 -cellosaurus:CVCL_LA76 PathHunter U2OS MCHR1 Total GPCR Internalization 1 8265 -cellosaurus:CVCL_LA77 PathHunter U2OS MCHR2 beta-arrestin 1 8266 -cellosaurus:CVCL_LA78 PathHunter U2OS mCXCR4 beta-arrestin 1 8267 -cellosaurus:CVCL_LA79 PathHunter U2OS mCXCR7 beta-arrestin 1 8268 -cellosaurus:CVCL_LA80 PathHunter U2OS mFFAR1 beta-arrestin 1 8269 -cellosaurus:CVCL_LA81 PathHunter U2OS mGIPR beta-arrestin 1 8270 -cellosaurus:CVCL_LA82 PathHunter U2OS mHTR2C beta-arrestin 1 8271 -cellosaurus:CVCL_LA83 PathHunter U2OS MLNR Activated GPCR Internalization 1 8272 -cellosaurus:CVCL_LA84 PathHunter U2OS mNPY1R beta-arrestin 1 8273 -cellosaurus:CVCL_LA85 PathHunter U2OS mOPRM1 beta-arrestin 1 8274 -cellosaurus:CVCL_LA86 PathHunter U2OS mP2RY12 beta-arrestin 1 8275 -cellosaurus:CVCL_LA87 PathHunter U2OS MTNR1B Total GPCR Internalization 1 8276 -cellosaurus:CVCL_LA88 PathHunter U2OS NMBR Total GPCR Internalization 1 8277 -cellosaurus:CVCL_LA89 PathHunter U2OS NMU1R beta-arrestin 1 8278 -cellosaurus:CVCL_LA90 PathHunter U2OS NMU1R Total GPCR Internalization 1 8279 -cellosaurus:CVCL_LA91 PathHunter U2OS NPSR1 beta-arrestin 1 8280 -cellosaurus:CVCL_LA92 PathHunter U2OS NPY2R Activated GPCR Internalization 1 8281 -cellosaurus:CVCL_LA93 PathHunter U2OS NTSR1 Activated GPCR Internalization 1 8282 -cellosaurus:CVCL_LA94 PathHunter U2OS OPRD1 Activated GPCR Internalization 1 8283 -cellosaurus:CVCL_LA95 PathHunter U2OS OPRD1 beta-arrestin 1 8284 -cellosaurus:CVCL_LA96 PathHunter U2OS OPRD1 beta-arrestin-1 1 8285 -cellosaurus:CVCL_LA97 PathHunter U2OS OPRK1 beta-arrestin 1 8286 -cellosaurus:CVCL_LA98 PathHunter U2OS OPRK1 Total GPCR Internalization 1 8287 -cellosaurus:CVCL_LA99 PathHunter U2OS OPRL1 Total GPCR Internalization 1 8288 -cellosaurus:CVCL_LB00 PathHunter U2OS OPRM1 beta-arrestin 1 8289 -cellosaurus:CVCL_LB01 PathHunter U2OS OPRM1 beta-arrestin-1 1 8290 -cellosaurus:CVCL_LB02 PathHunter U2OS OPRM1 Total GPCR Internalization 1 8291 -cellosaurus:CVCL_LB03 PathHunter U2OS OXER1 Total GPCR Internalization 1 8292 -cellosaurus:CVCL_LB04 PathHunter U2OS OXTR Activated GPCR Internalization 1 8293 -cellosaurus:CVCL_LB05 PathHunter U2OS P2RY1 Activated GPCR Internalization 1 8294 -cellosaurus:CVCL_LB06 PathHunter U2OS P2RY1 beta-arrestin 1 8295 -cellosaurus:CVCL_LB07 PathHunter U2OS P2RY12 Total GPCR Internalization 1 8296 -cellosaurus:CVCL_LB08 PathHunter U2OS P2RY2 Activated GPCR Internalization 1 8297 -cellosaurus:CVCL_LB09 PathHunter U2OS P2RY2 beta-arrestin 1 8298 -cellosaurus:CVCL_LB10 PathHunter U2OS P2RY4 Activated GPCR Internalization 1 8299 -cellosaurus:CVCL_LB11 PathHunter U2OS p53 Nuclear Translocation 1 8300 -cellosaurus:CVCL_LB12 PathHunter U2OS PRalpha Protein Interaction 1 8301 -cellosaurus:CVCL_LB13 PathHunter U2OS PRbeta Protein Interaction 1 8302 -cellosaurus:CVCL_LB14 PathHunter U2OS PRLHR Activated GPCR Internalization 1 8303 -cellosaurus:CVCL_LB15 PathHunter U2OS PROKR1 Total GPCR Internalization 1 8304 -cellosaurus:CVCL_LB16 PathHunter U2OS PROKR2 Total GPCR Internalization 1 8305 -cellosaurus:CVCL_LB17 PathHunter U2OS PTAFR Activated GPCR Internalization 1 8306 -cellosaurus:CVCL_LB18 PathHunter U2OS PTGER1 beta-arrestin 1 8307 -cellosaurus:CVCL_LB19 PathHunter U2OS PTGER4 Activated GPCR Internalization 1 8308 -cellosaurus:CVCL_LB20 PathHunter U2OS PTGER4 beta-arrestin 1 8309 -cellosaurus:CVCL_LB21 PathHunter U2OS PTGFR beta-arrestin 1 8310 -cellosaurus:CVCL_LB22 PathHunter U2OS PTGFR Total GPCR Internalization 1 8311 -cellosaurus:CVCL_LB23 PathHunter U2OS PTGIR Total GPCR Internalization 1 8312 -cellosaurus:CVCL_LB24 PathHunter U2OS PTHR1 Activated GPCR Internalization 1 8313 -cellosaurus:CVCL_LB25 PathHunter U2OS PTHR2 Total GPCR Internalization 1 8314 -cellosaurus:CVCL_LB26 PathHunter U2OS RANK-IkappaB Functional Assay 1 8315 -cellosaurus:CVCL_LB27 PathHunter U2OS rFFAR1 beta-arrestin 1 8316 -cellosaurus:CVCL_LB28 PathHunter U2OS rHTR2C beta-arrestin 1 8317 -cellosaurus:CVCL_LB29 PathHunter U2OS RXFP3 Total GPCR Internalization 1 8318 -cellosaurus:CVCL_LB30 PathHunter U2OS RXRalpha Protein Interaction 1 8319 -cellosaurus:CVCL_LB31 PathHunter U2OS SCTR Activated GPCR Internalization 1 8320 -cellosaurus:CVCL_LB32 PathHunter U2OS SREBP2 Nuclear Translocation 1 8321 -cellosaurus:CVCL_LB33 PathHunter U2OS SSTR1 beta-arrestin 1 8322 -cellosaurus:CVCL_LB34 PathHunter U2OS SSTR5 beta-arrestin 1 8323 -cellosaurus:CVCL_LB35 PathHunter U2OS TACR1 Activated GPCR Internalization 1 8324 -cellosaurus:CVCL_LB36 PathHunter U2OS TACR2 Activated GPCR Internalization 1 8325 -cellosaurus:CVCL_LB37 PathHunter U2OS TACR3 Activated GPCR Internalization 1 8326 -cellosaurus:CVCL_LB38 PathHunter U2OS TBXA2R Activated GPCR Internalization 1 8327 -cellosaurus:CVCL_LB39 PathHunter U2OS TBXA2R beta-arrestin 1 8328 -cellosaurus:CVCL_LB40 PathHunter U2OS TORC1 Nuclear Translocation 1 8329 -cellosaurus:CVCL_LB41 PathHunter U2OS TORC2 Nuclear Translocation 1 8330 -cellosaurus:CVCL_LB42 PathHunter U2OS TORC3 Nuclear Translocation 1 8331 -cellosaurus:CVCL_LB43 PathHunter U2OS TRHR Total GPCR Internalization 1 8332 -cellosaurus:CVCL_LB44 PathHunter U2OS TSHR(L) beta-arrestin 1 8333 -cellosaurus:CVCL_LB45 PathHunter U2OS TSHR(L) beta-arrestin-1 1 8334 -cellosaurus:CVCL_LB46 PathHunter U2OS UTR2 Total GPCR Internalization 1 8335 -cellosaurus:CVCL_LB47 PathHunter U2OS VIPR1 Activated GPCR Internalization 1 8336 -cellosaurus:CVCL_LB48 PathHunter U2OS VIPR2 Total GPCR Internalization 1 8337 -cellosaurus:CVCL_LB49 PathHunter U2OS XBP1 Nuclear Translocation 1 8338 -cellosaurus:CVCL_ZJ93 Tango GPCR-bla U2OS 1 8339 -cellosaurus:CVCL_ZK27 T-REx Tango GHSR-bla U2OS 2 8340 -cellosaurus:CVCL_ZK28 T-REx Tango P2RY14-bla U2OS 2 8341 -cellosaurus:CVCL_ZK53 Tango ADORA1-bla U2OS 2 8342 -cellosaurus:CVCL_ZJ94 Tango ADORA3-bla U2OS 2 8343 -cellosaurus:CVCL_ZJ95 Tango ADRA2A-bla U2OS 2 8344 -cellosaurus:CVCL_ZJ96 Tango AGTR1-bla U2OS 2 8345 -cellosaurus:CVCL_ZJ97 Tango AGTRL1-bla U2OS 2 8346 -cellosaurus:CVCL_ZJ98 Tango CCR1-bla U2OS 2 8347 -cellosaurus:CVCL_ZJ99 Tango CCR2-bla U2OS 2 8348 -cellosaurus:CVCL_ZK00 Tango CCR3-bla U2OS 2 8349 -cellosaurus:CVCL_ZK01 Tango CCR4-bla U2OS 2 8350 -cellosaurus:CVCL_ZK02 Tango CCR5-bla U2OS 2 8351 -cellosaurus:CVCL_ZK03 Tango CCR6-bla U2OS 2 8352 -cellosaurus:CVCL_ZK04 Tango CCR7-bla U2OS 2 8353 -cellosaurus:CVCL_ZK05 Tango CHRM2-bla U2OS 2 8354 -cellosaurus:CVCL_ZK06 Tango CMKLR1-bla U2OS 2 8355 -cellosaurus:CVCL_ZK07 Tango CNR1-bla U2OS 2 8356 -cellosaurus:CVCL_ZK08 Tango CNR2-bla U2OS 2 8357 -cellosaurus:CVCL_ZK09 Tango CXCR1-bla U2OS 2 8358 -cellosaurus:CVCL_ZK10 Tango CXCR2-bla U2OS 2 8359 -cellosaurus:CVCL_ZK11 Tango CXCR3-bla U2OS 2 8360 -cellosaurus:CVCL_ZK12 Tango CXCR4-bla U2OS 2 8361 -cellosaurus:CVCL_ZK13 Tango CXCR6-bla U2OS 2 8362 -cellosaurus:CVCL_ZK14 Tango CXCR7-bla U2OS 2 8363 -cellosaurus:CVCL_ZK15 Tango DRD1-bla U2OS 2 8364 -cellosaurus:CVCL_ZK16 Tango EDG1-bla U2OS 2 8365 -cellosaurus:CVCL_ZK17 Tango EDG2-bla U2OS 2 8366 -cellosaurus:CVCL_ZK18 Tango EDG3-bla U2OS 2 8367 -cellosaurus:CVCL_ZK37 Tango EDG4-bla U2OS 2 8368 -cellosaurus:CVCL_ZK38 Tango EDG5-bla U2OS 2 8369 -cellosaurus:CVCL_ZK30 Tango EDG6-bla U2OS 2 8370 -cellosaurus:CVCL_ZK32 Tango EDG7-bla U2OS 2 8371 -cellosaurus:CVCL_ZK33 Tango EDG8-bla U2OS 2 8372 -cellosaurus:CVCL_ZL09 Tango F2RL1-bla U2OS 2 8373 -cellosaurus:CVCL_ZL03 Tango GALR2-bla U2OS 2 8374 -cellosaurus:CVCL_ZK95 Tango GLP2R-bla U2OS 2 8375 -cellosaurus:CVCL_ZL12 Tango GPR1-bla U2OS 2 8376 -cellosaurus:CVCL_ZL11 Tango GPR109A-bla U2OS 2 8377 -cellosaurus:CVCL_ZL13 Tango GPR119-bla U2OS 2 8378 -cellosaurus:CVCL_ZK31 Tango GPR120-bla U2OS 2 8379 -cellosaurus:CVCL_ZK34 Tango GPR23-bla U2OS 2 8380 -cellosaurus:CVCL_ZL10 Tango GPR35-bla U2OS 2 8381 -cellosaurus:CVCL_ZL14 Tango GPR44 (CRTH2)-bla U2OS 2 8382 -cellosaurus:CVCL_ZK29 Tango GPR8-bla U2OS 2 8383 -cellosaurus:CVCL_ZK36 Tango GPR87-bla U2OS 2 8384 -cellosaurus:CVCL_ZK35 Tango GPR92-bla U2OS 2 8385 -cellosaurus:CVCL_ZL06 Tango HTR1A-bla U2OS 2 8386 -cellosaurus:CVCL_ZK94 Tango HTR1D-bla U2OS 2 8387 -cellosaurus:CVCL_ZK96 Tango HTR2A-bla U2OS 2 8388 -cellosaurus:CVCL_ZL05 Tango M1-bla U2OS 2 8389 -cellosaurus:CVCL_ZL04 Tango M4-bla U2OS 2 8390 -cellosaurus:CVCL_ZL00 Tango MTNR1B-bla U2OS 2 8391 -cellosaurus:CVCL_ZL02 Tango NPY1R-bla U2OS 2 8392 -cellosaurus:CVCL_ZK92 Tango NPY2R-bla U2OS 2 8393 -cellosaurus:CVCL_ZL01 Tango NPY5R-bla U2OS 2 8394 -cellosaurus:CVCL_ZL07 Tango OPRD1-bla U2OS 2 8395 -cellosaurus:CVCL_ZK97 Tango OPRK1-bla U2OS 2 8396 -cellosaurus:CVCL_ZL08 Tango OPRL1-bla U2OS 2 8397 -cellosaurus:CVCL_ZK93 Tango OPRM1-bla U2OS 2 8398 -cellosaurus:CVCL_ZK19 Tango PTAFR-bla U2OS 2 8399 -cellosaurus:CVCL_ZK20 Tango RLN3R1-bla U2OS 2 8400 -cellosaurus:CVCL_ZK21 Tango SSTR1-bla U2OS 2 8401 -cellosaurus:CVCL_ZK22 Tango SSTR2-bla U2OS 2 8402 -cellosaurus:CVCL_ZK23 Tango SSTR5-bla U2OS 2 8403 -cellosaurus:CVCL_ZK24 Tango TACR1-bla U2OS 2 8404 -cellosaurus:CVCL_ZK25 Tango TACR3-bla U2OS 2 8405 -cellosaurus:CVCL_ZK26 Tango TBXA2R-bla U2OS 2 8406 -cellosaurus:CVCL_B7FI U-2 OS-CRISPR-NUP96-Halo clone no.252 1 8407 -cellosaurus:CVCL_B7FJ U-2 OS-CRISPR-NUP96-mEGFP clone no.195 1 8408 -cellosaurus:CVCL_B7FK U-2 OS-CRISPR-NUP96-mMaple clone no.16 1 8409 -cellosaurus:CVCL_B7FL U-2 OS-CRISPR-NUP96-SNAP clone #33 1 8410 -cellosaurus:CVCL_B7FM U-2 OS-ZFN-SNAP-Nup107 no.294 1 8411 -cellosaurus:CVCL_A4CF U-2 OS-Luc2 1 8412 -cellosaurus:CVCL_T429 U-2 OS R1 1 8413 -cellosaurus:CVCL_T430 U-2 OS R2 2 8414 -cellosaurus:CVCL_C0ZD U-2OS-Cas9-4 1 8415 -cellosaurus:CVCL_A5VB U-2OSMR 1 8416 -cellosaurus:CVCL_A5VC U-2OSTR 1 8417 -cellosaurus:CVCL_V335 U2-OS Tet-On 1 8418 -cellosaurus:CVCL_V336 U2-OS-Luc Tet-On 1 8419 -cellosaurus:CVCL_YK25 U2OS ADCYAP1R1 cAMP-Nomad 1 8420 -cellosaurus:CVCL_YK26 U2OS ADRA1A DAG-Nomad 1 8421 -cellosaurus:CVCL_YK27 U2OS ADRA1A HiTSeeker 1 8422 -cellosaurus:CVCL_YK28 U2OS ADRA1B DAG-Nomad 1 8423 -cellosaurus:CVCL_YK29 U2OS ADRA1B HiTSeeker 1 8424 -cellosaurus:CVCL_YK30 U2OS ADRB2 cAMP-Nomad 1 8425 -cellosaurus:CVCL_A0SQ U2OS ATXN3 KO 1 8426 -cellosaurus:CVCL_YK31 U2OS AVPR2 cAMP-Nomad 1 8427 -cellosaurus:CVCL_YK32 U2OS BDKRB2 HiTSeeker 1 8428 -cellosaurus:CVCL_C3CB U2OS BFP-LMNB1 RFP-ACTB 1 8429 -cellosaurus:CVCL_C3C9 U2OS BFP-LMNB1 GFP-TUBA1B RFP-ACTB 2 8430 -cellosaurus:CVCL_A4HP U2OS C9orf72-/- 1 8431 -cellosaurus:CVCL_KU66 U2OS CASR Gq 1 8432 -cellosaurus:CVCL_YK33 U2OS CCKAR calcium-Nomad 1 8433 -cellosaurus:CVCL_YK34 U2OS CCKAR DAG-Nomad 1 8434 -cellosaurus:CVCL_YK35 U2OS CCKAR HiTSeeker 1 8435 -cellosaurus:CVCL_YK36 U2OS CCKBR HiTSeeker 1 8436 -cellosaurus:CVCL_B6JX U2OS CHMP2B KO 1 8437 -cellosaurus:CVCL_YK37 U2OS CHRM1 HiTSeeker 1 8438 -cellosaurus:CVCL_YK68 U2OS CHRM3 HiTSeeker 1 8439 -cellosaurus:CVCL_YK38 U2OS CHRM4 PKA-Nomad 1 8440 -cellosaurus:CVCL_YK39 U2OS CHRM5 calcium-Nomad 1 8441 -cellosaurus:CVCL_YK40 U2OS CHRM5 DAG-Nomad 1 8442 -cellosaurus:CVCL_YK41 U2OS CHRM5 HiTSeeker 1 8443 -cellosaurus:CVCL_YK42 U2OS CRHR2 cAMP-Nomad 1 8444 -cellosaurus:CVCL_A4NZ U2OS DNM1 KO 1 8445 -cellosaurus:CVCL_B0A7 U2OS DR-GFP 1 8446 -cellosaurus:CVCL_YK43 U2OS EDNRA HiTSeeker 1 8447 -cellosaurus:CVCL_YK44 U2OS EDNRB HiTSeeker 1 8448 -cellosaurus:CVCL_A7QQ U2OS EGFP-H2B 1 8449 -cellosaurus:CVCL_KA03 U2OS FKHR-EGFP 1 8450 -cellosaurus:CVCL_KA04 U2OS FKHRL1-EGFP 1 8451 -cellosaurus:CVCL_RQ90 U2OS GFP-ACTB 1 8452 -cellosaurus:CVCL_C3CA U2OS GFP-ACTB RFP-TUBA1B 1 8453 -cellosaurus:CVCL_RQ91 U2OS GFP-HMGA1 1 8454 -cellosaurus:CVCL_RQ92 U2OS GFP-LMNB1 1 8455 -cellosaurus:CVCL_RQ88 U2OS GFP-NUP98 1 8456 -cellosaurus:CVCL_C0QT U2OS GFP-PEAK3 1 8457 -cellosaurus:CVCL_RQ93 U2OS GFP-TUBA1B 1 8458 -cellosaurus:CVCL_YK45 U2OS GLP1R cAMP-Nomad 1 8459 -cellosaurus:CVCL_YK46 U2OS GLP2R cAMP-Nomad 1 8460 -cellosaurus:CVCL_KU67 U2OS GPR39 Gq 1 8461 -cellosaurus:CVCL_KU68 U2OS GRM1 Gq 1 8462 -cellosaurus:CVCL_KU69 U2OS GRM5 Gq 1 8463 -cellosaurus:CVCL_YK47 U2OS GRPR calcium-Nomad 1 8464 -cellosaurus:CVCL_YK48 U2OS GRPR HiTSeeker 1 8465 -cellosaurus:CVCL_RJ63 U2OS His10-SUMO-2-K0-Q87R 1 8466 -cellosaurus:CVCL_A4PA U2OS GSN KO 1 8467 -cellosaurus:CVCL_YK49 U2OS HRH1 HiTSeeker 1 8468 -cellosaurus:CVCL_YK50 U2OS HTR2A HiTSeeker 1 8469 -cellosaurus:CVCL_YK51 U2OS HTR2C HiTSeeker 1 8470 -cellosaurus:CVCL_YK52 U2OS LHCGR cAMP-Nomad 1 8471 -cellosaurus:CVCL_YK53 U2OS LPAR3 HiTSeeker 1 8472 -cellosaurus:CVCL_YK54 U2OS MC3R cAMP-Nomad 1 8473 -cellosaurus:CVCL_YK69 U2OS MPX-Nomad 1 8474 -cellosaurus:CVCL_YK70 U2OS MPX-Nomad ETBR 2 8475 -cellosaurus:CVCL_YK71 U2OS MPX-Nomad NK2R 2 8476 -cellosaurus:CVCL_YK55 U2OS NTSR1 HiTSeeker 1 8477 -cellosaurus:CVCL_A6LN U2OS OPTN KO 1 8478 -cellosaurus:CVCL_KU70 U2OS OXGR1 Gq 1 8479 -cellosaurus:CVCL_A4GM U2OS PLEC KO 1 8480 -cellosaurus:CVCL_A4GN U2OS PRDX1 KO 1 8481 -cellosaurus:CVCL_YK56 U2OS PTGER1 HiTSeeker 1 8482 -cellosaurus:CVCL_YK57 U2OS PTGFR HiTSeeker 1 8483 -cellosaurus:CVCL_B5DC U2OS RAD52 KO clone #1 1 8484 -cellosaurus:CVCL_B5DD U2OS RAD52 KO clone #2 1 8485 -cellosaurus:CVCL_B5DE U2OS RAD52 KO clone #3 1 8486 -cellosaurus:CVCL_RQ95 U2OS RFP-ACTB 1 8487 -cellosaurus:CVCL_RQ94 U2OS RFP-TUBA1B 1 8488 -cellosaurus:CVCL_A6LP U2OS SQSTM1 KO 1 8489 -cellosaurus:CVCL_C0QU U2OS ST-PEAK3 1 8490 -cellosaurus:CVCL_YK58 U2OS TACR1 calcium-Nomad 1 8491 -cellosaurus:CVCL_YK59 U2OS TACR2 HiTSeeker 1 8492 -cellosaurus:CVCL_YK60 U2OS TACR3 calcium-Nomad 1 8493 -cellosaurus:CVCL_YK61 U2OS TACR3 HiTSeeker 1 8494 -cellosaurus:CVCL_A6LQ U2OS TBK1 KO 1 8495 -cellosaurus:CVCL_B5WM U2OS tGFP-ADCYAP1R1 1 8496 -cellosaurus:CVCL_YK62 U2OS tGFP-PFN1 1 8497 -cellosaurus:CVCL_YK63 U2OS TRH1 HiTSeeker 1 8498 -cellosaurus:CVCL_YK64 U2OS UTS2R HiTSeeker 1 8499 -cellosaurus:CVCL_B5CQ U2OS VGF KO 1 8500 -cellosaurus:CVCL_YK65 U2OS VIPR1 cAMP-Nomad 1 8501 -cellosaurus:CVCL_YK66 U2OS VIPR2 cAMP-Nomad 1 8502 -cellosaurus:CVCL_VR75 U2OS#18 1 8503 -cellosaurus:CVCL_VR78 U2OS#18-RAD51B-8 2 8504 -cellosaurus:CVCL_VR79 U2OS#18-RAD51B-8/B+ 3 8505 -cellosaurus:CVCL_VR80 U2OS#18-RAD51C-15 2 8506 -cellosaurus:CVCL_VR81 U2OS#18-RAD51C-15/C+ 3 8507 -cellosaurus:CVCL_VR82 U2OS#18-RAD51D-4 2 8508 -cellosaurus:CVCL_VR83 U2OS#18-RAD51D-4/D+ 3 8509 -cellosaurus:CVCL_VR84 U2OS#18-XRCC2-5E 2 8510 -cellosaurus:CVCL_VR85 U2OS#18-XRCC2-5E/X2+ 3 8511 -cellosaurus:CVCL_VR86 U2OS#18-XRCC3-6A 2 8512 -cellosaurus:CVCL_YL50 U2OS#18-XRCC3-6A/X3+ 3 8513 -cellosaurus:CVCL_VR87 U2OS#24 1 8514 -cellosaurus:CVCL_A5LZ U2OS-ATRkd 1 8515 -cellosaurus:CVCL_C0QG U2OS-BioID2 1 8516 -cellosaurus:CVCL_C0Q8 U2OS-GFP-HK2 1 8517 -cellosaurus:CVCL_ZC51 U2OS-LacO-I-SceI-TetO 1 8518 -cellosaurus:CVCL_C0QF U2OS-PER2-BioID2 1 8519 -cellosaurus:CVCL_RQ87 U2OS-S1P1 1 8520 -cellosaurus:CVCL_XZ88 U2OS-tetR 1 8521 -cellosaurus:CVCL_XZ89 U2OS-tetR-PAmCherry1-KRAS G12D 2 8522 -cellosaurus:CVCL_XF79 UTA6 1 8523 -cellosaurus:CVCL_XF82 UTA21.15 2 8524 -cellosaurus:CVCL_XF83 UTA21.9 2 8525 -cellosaurus:CVCL_YJ72 VAMPIRO U2OS 1 8526 -cellosaurus:CVCL_A071 COGA-1 0 8527 -cellosaurus:CVCL_Z583 COGA-1A 1 8528 -cellosaurus:CVCL_M569 STKM-1 0 8529 -cellosaurus:CVCL_RX84 STKM-1 clone R3 1 8530 -cellosaurus:CVCL_RX85 STKM-1 clone S4 1 8531 -cellosaurus:CVCL_6288 HTh74 0 8532 -cellosaurus:CVCL_AT82 HTh74 clone 7 1 8533 -cellosaurus:CVCL_M486 CMA-03 0 8534 -cellosaurus:CVCL_2G61 CMA-03/06 1 8535 -cellosaurus:CVCL_WS29 LN-2669GS 0 8536 -cellosaurus:CVCL_WS32 LN-2669GS_WIF1 1 8537 -cellosaurus:CVCL_1893 Y-79 0 8538 -cellosaurus:CVCL_S611 RB355 1 8539 -cellosaurus:CVCL_B7IH RB355 CDDP-R 2 8540 -cellosaurus:CVCL_B7II RB355 Eto-R 2 8541 -cellosaurus:CVCL_S610 WERI-Rb-27 1 8542 -cellosaurus:CVCL_B7IF Y-79 CDDP-R 1 8543 -cellosaurus:CVCL_B7IG Y-79 Eto-R 1 8544 -cellosaurus:CVCL_VA40 Y79-6 1 8545 -cellosaurus:CVCL_ZF06 Y79-Luc 1 8546 -cellosaurus:CVCL_A5SR Y79/EDR 1 8547 -cellosaurus:CVCL_XD83 ARD 0 8548 -cellosaurus:CVCL_A5RY ARD-EZH2i-R 1 8549 -cellosaurus:CVCL_A5RZ ARD-pUTX 1 8550 -cellosaurus:CVCL_0511 Raji 0 8551 -cellosaurus:CVCL_B7VS Abcam Raji AATF KO 1 8552 -cellosaurus:CVCL_B7VT Abcam Raji ABCB1 KO 1 8553 -cellosaurus:CVCL_B7VU Abcam Raji AGTR1 KO 1 8554 -cellosaurus:CVCL_B7VV Abcam Raji AHR KO 1 8555 -cellosaurus:CVCL_B7VW Abcam Raji AIM2 KO 1 8556 -cellosaurus:CVCL_B7VX Abcam Raji ALCAM KO 1 8557 -cellosaurus:CVCL_B7VY Abcam Raji ALKBH1 KO 1 8558 -cellosaurus:CVCL_B7VZ Abcam Raji ALYREF KO 1 8559 -cellosaurus:CVCL_B7W0 Abcam Raji APOBEC3B KO 1 8560 -cellosaurus:CVCL_B7W1 Abcam Raji ASAH1 KO 1 8561 -cellosaurus:CVCL_B7W2 Abcam Raji ATF5 KO 1 8562 -cellosaurus:CVCL_B7W3 Abcam Raji ATG3 KO 1 8563 -cellosaurus:CVCL_B7W4 Abcam Raji ATG9A KO 1 8564 -cellosaurus:CVCL_B7W5 Abcam Raji BAK1 KO 1 8565 -cellosaurus:CVCL_B7W6 Abcam Raji BMPR2 KO 1 8566 -cellosaurus:CVCL_B7W7 Abcam Raji BRD1 KO 1 8567 -cellosaurus:CVCL_B7W8 Abcam Raji BRD2 KO 1 8568 -cellosaurus:CVCL_B7W9 Abcam Raji BRD9 KO 1 8569 -cellosaurus:CVCL_B7WA Abcam Raji BTG1 KO 1 8570 -cellosaurus:CVCL_B7WB Abcam Raji BTK KO 1 8571 -cellosaurus:CVCL_B7WC Abcam Raji BTRC KO 1 8572 -cellosaurus:CVCL_B7WD Abcam Raji C3 KO 1 8573 -cellosaurus:CVCL_B7WE Abcam Raji CASP3 KO 1 8574 -cellosaurus:CVCL_B7WF Abcam Raji CCRL2 KO 1 8575 -cellosaurus:CVCL_B7WG Abcam Raji CCL22 KO 1 8576 -cellosaurus:CVCL_B1BK Abcam Raji CD27 KO 1 8577 -cellosaurus:CVCL_B7WH Abcam Raji CD36 KO 1 8578 -cellosaurus:CVCL_B7WI Abcam Raji CD48 KO 1 8579 -cellosaurus:CVCL_B7WJ Abcam Raji CD58 KO 1 8580 -cellosaurus:CVCL_B7WK Abcam Raji CD59 KO 1 8581 -cellosaurus:CVCL_B1BL Abcam Raji CD74 KO 1 1 8582 -cellosaurus:CVCL_B1BM Abcam Raji CD74 KO 2 1 8583 -cellosaurus:CVCL_B8AM Abcam Raji CD79A KO 1 8584 -cellosaurus:CVCL_B1BN Abcam Raji CD80 KO 1 8585 -cellosaurus:CVCL_B7WL Abcam Raji CD81 KO 1 8586 -cellosaurus:CVCL_B7WM Abcam Raji CD83 KO 1 8587 -cellosaurus:CVCL_B1BP Abcam Raji CD86 KO 1 8588 -cellosaurus:CVCL_B7WN Abcam Raji CITED2 KO 1 8589 -cellosaurus:CVCL_B7WP Abcam Raji CLU KO 1 8590 -cellosaurus:CVCL_B7WQ Abcam Raji CMKLR1 KO 1 8591 -cellosaurus:CVCL_B7WR Abcam Raji CMTM6 KO 1 8592 -cellosaurus:CVCL_B7WS Abcam Raji CNR2 KO 1 8593 -cellosaurus:CVCL_B7WT Abcam Raji CST3 KO 1 8594 -cellosaurus:CVCL_B7WU Abcam Raji CTSB KO 1 8595 -cellosaurus:CVCL_B7WV Abcam Raji CUL2 KO 1 8596 -cellosaurus:CVCL_B7WW Abcam Raji CUL3 KO 1 8597 -cellosaurus:CVCL_B7WX Abcam Raji CUL4B KO 1 8598 -cellosaurus:CVCL_B1BQ Abcam Raji CXCR5 KO 1 8599 -cellosaurus:CVCL_B7WY Abcam Raji CXXC1 KO 1 8600 -cellosaurus:CVCL_B7WZ Abcam Raji DCP2 KO 1 8601 -cellosaurus:CVCL_B7X0 Abcam Raji DLL1 KO 1 8602 -cellosaurus:CVCL_B7X1 Abcam Raji DVL3 KO 1 8603 -cellosaurus:CVCL_B7X2 Abcam Raji EGLN1 KO 1 8604 -cellosaurus:CVCL_B7X3 Abcam Raji EHMT2 KO 1 8605 -cellosaurus:CVCL_B7X4 Abcam Raji EIF2AK4 KO 1 8606 -cellosaurus:CVCL_B7X5 Abcam Raji EPHB4 KO 1 8607 -cellosaurus:CVCL_B7X6 Abcam Raji ERAP1 KO 1 8608 -cellosaurus:CVCL_B7X7 Abcam Raji ETS2 KO 1 8609 -cellosaurus:CVCL_B7X8 Abcam Raji EXO1 KO 1 8610 -cellosaurus:CVCL_B7X9 Abcam Raji FABP4 KO 1 8611 -cellosaurus:CVCL_B7XA Abcam Raji FKBP5 KO 1 8612 -cellosaurus:CVCL_B7XB Abcam Raji FOXO1 KO 1 8613 -cellosaurus:CVCL_B7XC Abcam Raji FOXO3 KO 1 8614 -cellosaurus:CVCL_B7XD Abcam Raji FST KO 1 8615 -cellosaurus:CVCL_B7XE Abcam Raji FTL KO 1 8616 -cellosaurus:CVCL_B7XF Abcam Raji FZD7 KO 1 8617 -cellosaurus:CVCL_B7XG Abcam Raji GAB1 KO 1 8618 -cellosaurus:CVCL_B7XH Abcam Raji GLB1 KO 1 8619 -cellosaurus:CVCL_B7XI Abcam Raji GPR132 KO 1 8620 -cellosaurus:CVCL_B7XJ Abcam Raji GZMA KO 1 8621 -cellosaurus:CVCL_B7XK Abcam Raji HLA-B KO 1 8622 -cellosaurus:CVCL_B7XL Abcam Raji HNF1B KO 1 8623 -cellosaurus:CVCL_B7XM Abcam Raji HSPG2 KO 1 8624 -cellosaurus:CVCL_B7XN Abcam Raji ID2 KO 1 8625 -cellosaurus:CVCL_B7XP Abcam Raji IL17RB KO 1 8626 -cellosaurus:CVCL_B7XQ Abcam Raji ITPR3 KO 1 8627 -cellosaurus:CVCL_B7XR Abcam Raji JAG1 KO 1 8628 -cellosaurus:CVCL_B7XS Abcam Raji JMJD6 KO 1 8629 -cellosaurus:CVCL_B7XT Abcam Raji KAT7 KO 1 8630 -cellosaurus:CVCL_B7XU Abcam Raji KDM1B KO 1 8631 -cellosaurus:CVCL_B7XV Abcam Raji KDM6B KO 1 8632 -cellosaurus:CVCL_B7XW Abcam Raji KPNA2 KO 1 8633 -cellosaurus:CVCL_B7XX Abcam Raji LAIR1 KO 1 8634 -cellosaurus:CVCL_B7XY Abcam Raji LAMP2 KO 1 8635 -cellosaurus:CVCL_B7XZ Abcam Raji LDHA KO 1 8636 -cellosaurus:CVCL_B7Y0 Abcam Raji LGR6 KO 1 8637 -cellosaurus:CVCL_B7Y1 Abcam Raji LMNB1 KO 1 8638 -cellosaurus:CVCL_B7Y2 Abcam Raji MACROH2A1 KO 1 8639 -cellosaurus:CVCL_B7Y3 Abcam Raji MAGEA3 KO 1 8640 -cellosaurus:CVCL_B7Y4 Abcam Raji MAP2K3 KO 1 8641 -cellosaurus:CVCL_B7Y5 Abcam Raji MAP3K3 KO 1 8642 -cellosaurus:CVCL_B7Y6 Abcam Raji MAPK7 KO 1 8643 -cellosaurus:CVCL_B7Y7 Abcam Raji MBD1 KO 1 8644 -cellosaurus:CVCL_B7Y8 Abcam Raji MBD3 KO 1 8645 -cellosaurus:CVCL_B7Y9 Abcam Raji MME KO 1 8646 -cellosaurus:CVCL_B7YA Abcam Raji MMP13 KO 1 8647 -cellosaurus:CVCL_B7YB Abcam Raji MMP8 KO 1 8648 -cellosaurus:CVCL_B7YC Abcam Raji MS4A1 KO 1 8649 -cellosaurus:CVCL_B7YD Abcam Raji MTA3 KO 1 8650 -cellosaurus:CVCL_B7YE Abcam Raji NBR1 KO 1 8651 -cellosaurus:CVCL_B7YF Abcam Raji NCR3LG1 KO 1 8652 -cellosaurus:CVCL_B7YG Abcam Raji NFATC2 KO 1 8653 -cellosaurus:CVCL_B7YH Abcam Raji NFKB1 KO 1 8654 -cellosaurus:CVCL_B7YI Abcam Raji NLRC4 KO 1 8655 -cellosaurus:CVCL_B7YJ Abcam Raji NOTCH3 KO 1 8656 -cellosaurus:CVCL_B7YK Abcam Raji NOTCH4 KO 1 8657 -cellosaurus:CVCL_B7YL Abcam Raji NR1H4 KO 1 8658 -cellosaurus:CVCL_B7YM Abcam Raji NR3C2 KO 1 8659 -cellosaurus:CVCL_B7YN Abcam Raji PDCD1LG2 KO 1 8660 -cellosaurus:CVCL_B7YP Abcam Raji PHF8 KO 1 8661 -cellosaurus:CVCL_B7YQ Abcam Raji PIK3CA KO 1 8662 -cellosaurus:CVCL_B7YR Abcam Raji PIK3CD KO 1 8663 -cellosaurus:CVCL_B7YS Abcam Raji PIK3R4 KO 1 8664 -cellosaurus:CVCL_B7YT Abcam Raji PLA2G4A KO 1 8665 -cellosaurus:CVCL_B7YU Abcam Raji PLCB3 KO 1 8666 -cellosaurus:CVCL_B7YV Abcam Raji PLCG1 KO 1 8667 -cellosaurus:CVCL_B7YW Abcam Raji PRMT7 KO 1 8668 -cellosaurus:CVCL_B7YX Abcam Raji PSEN1 KO 1 8669 -cellosaurus:CVCL_B7YY Abcam Raji PTGER4 KO 1 8670 -cellosaurus:CVCL_B7YZ Abcam Raji PTGES2 KO 1 8671 -cellosaurus:CVCL_B7Z0 Abcam Raji PTK2 KO 1 8672 -cellosaurus:CVCL_B7Z1 Abcam Raji PTP4A3 KO 1 8673 -cellosaurus:CVCL_B7Z2 Abcam Raji PTPN12 KO 1 8674 -cellosaurus:CVCL_B7Z3 Abcam Raji PUS1 KO 1 8675 -cellosaurus:CVCL_B7Z4 Abcam Raji RAC2 KO 1 8676 -cellosaurus:CVCL_B7Z5 Abcam Raji RING1 KO 1 8677 -cellosaurus:CVCL_B7Z6 Abcam Raji ROCK2 KO 1 8678 -cellosaurus:CVCL_B7Z7 Abcam Raji ROR2 KO 1 8679 -cellosaurus:CVCL_B7Z8 Abcam Raji RYBP KO 1 8680 -cellosaurus:CVCL_B7Z9 Abcam Raji SCARB1 KO 1 8681 -cellosaurus:CVCL_B7ZA Abcam Raji SDC4 KO 1 8682 -cellosaurus:CVCL_B7ZB Abcam Raji SETD2 KO 1 8683 -cellosaurus:CVCL_B7ZC Abcam Raji SLFN11 KO 1 8684 -cellosaurus:CVCL_B7ZD Abcam Raji SMARCAL1 KO 1 8685 -cellosaurus:CVCL_B7ZE Abcam Raji SMARCC2 KO 1 8686 -cellosaurus:CVCL_B7ZF Abcam Raji SMARCE1 KO 1 8687 -cellosaurus:CVCL_B7ZG Abcam Raji SMURF1 KO 1 8688 -cellosaurus:CVCL_B7ZH Abcam Raji SMYD2 KO 1 8689 -cellosaurus:CVCL_B7ZI Abcam Raji SMYD3 KO 1 8690 -cellosaurus:CVCL_B7ZJ Abcam Raji SOCS3 KO 1 8691 -cellosaurus:CVCL_B7ZK Abcam Raji SRF KO 1 8692 -cellosaurus:CVCL_B7ZL Abcam Raji SRPK1 KO 1 8693 -cellosaurus:CVCL_B7ZM Abcam Raji STAT4 KO 1 8694 -cellosaurus:CVCL_B7ZN Abcam Raji STAT5A KO 1 8695 -cellosaurus:CVCL_B7ZP Abcam Raji STK4 KO 1 8696 -cellosaurus:CVCL_B7ZQ Abcam Raji SUV39H1 KO 1 8697 -cellosaurus:CVCL_B7ZR Abcam Raji SUZ12 KO 1 8698 -cellosaurus:CVCL_B7ZS Abcam Raji TAPBP KO 1 8699 -cellosaurus:CVCL_B7ZT Abcam Raji TBK1 KO 1 8700 -cellosaurus:CVCL_B7ZU Abcam Raji TBP KO 1 8701 -cellosaurus:CVCL_B7ZV Abcam Raji TCF7L2 KO 1 8702 -cellosaurus:CVCL_B7ZW Abcam Raji TFDP1 KO 1 8703 -cellosaurus:CVCL_B7ZX Abcam Raji TIMP3 KO 1 8704 -cellosaurus:CVCL_B7ZY Abcam Raji TLN1 KO 1 8705 -cellosaurus:CVCL_B7ZZ Abcam Raji TNFRSF10B KO 1 8706 -cellosaurus:CVCL_B8A0 Abcam Raji TNFRSF1B KO 1 8707 -cellosaurus:CVCL_B8A1 Abcam Raji TP73 KO 1 8708 -cellosaurus:CVCL_B8A2 Abcam Raji TRADD KO 1 8709 -cellosaurus:CVCL_B8A3 Abcam Raji TRAF2 KO 1 8710 -cellosaurus:CVCL_B8A4 Abcam Raji TRMT2A KO 1 8711 -cellosaurus:CVCL_B8A5 Abcam Raji TWIST1 KO 1 8712 -cellosaurus:CVCL_B8A6 Abcam Raji TWIST2 KO 1 8713 -cellosaurus:CVCL_B8A7 Abcam Raji U2AF1 KO 1 8714 -cellosaurus:CVCL_B8A8 Abcam Raji UBA1 KO 1 8715 -cellosaurus:CVCL_B8A9 Abcam Raji UBE2D2 KO 1 8716 -cellosaurus:CVCL_B8AA Abcam Raji UCHL5 KO 1 8717 -cellosaurus:CVCL_B8AB Abcam Raji ULBP3 KO 1 8718 -cellosaurus:CVCL_B8AC Abcam Raji UVRAG KO 1 8719 -cellosaurus:CVCL_B8AD Abcam Raji VAV1 KO 1 8720 -cellosaurus:CVCL_B8AE Abcam Raji VCAN KO 1 8721 -cellosaurus:CVCL_B8AF Abcam Raji WDR77 KO 1 8722 -cellosaurus:CVCL_B8AG Abcam Raji WNT11 KO 1 8723 -cellosaurus:CVCL_B8AH Abcam Raji YTHDC2 KO 1 8724 -cellosaurus:CVCL_B8AI Abcam Raji YTHDF1 KO 1 8725 -cellosaurus:CVCL_B8AJ Abcam Raji YTHDF3 KO 1 8726 -cellosaurus:CVCL_B8AK Abcam Raji YY1 KO 1 8727 -cellosaurus:CVCL_B8AL Abcam Raji ZEB2 KO 1 8728 -cellosaurus:CVCL_0R19 B-THP-1 1 8729 -cellosaurus:CVCL_0R20 B-THP-1/DC-SIGN 2 8730 -cellosaurus:CVCL_B3QL MTX-RAJI 1 8731 -cellosaurus:CVCL_3042 NC-37 1 8732 -cellosaurus:CVCL_S547 NC-37/DC-SIGN 2 8733 -cellosaurus:CVCL_UJ11 R/ADR 1 8734 -cellosaurus:CVCL_UJ12 R/VP-16 1 8735 -cellosaurus:CVCL_2699 RAJI 'A' 1 8736 -cellosaurus:CVCL_Y035 Raji 6-TGR 1 8737 -cellosaurus:CVCL_C3CD Raji B2M KO 1 8738 -cellosaurus:CVCL_C3D0 Raji HLA-A*01:01 2 8739 -cellosaurus:CVCL_C3D1 Raji HLA-A*02:01 2 8740 -cellosaurus:CVCL_C3D2 Raji HLA-A*03:01 2 8741 -cellosaurus:CVCL_C3D3 Raji HLA-A*11:01 2 8742 -cellosaurus:CVCL_C3D4 Raji HLA-A*24:02 2 8743 -cellosaurus:CVCL_C3D5 Raji HLA-B*07:02 2 8744 -cellosaurus:CVCL_C3D6 Raji HLA-B*15:10 2 8745 -cellosaurus:CVCL_C3D7 Raji HLA-B*40:01 2 8746 -cellosaurus:CVCL_YN94 Raji CD19 Knockout 1 8747 -cellosaurus:CVCL_YN95 Raji CD19 High 2 8748 -cellosaurus:CVCL_YN96 Raji CD19 Low 2 8749 -cellosaurus:CVCL_2700 RAJI TK+ 1 8750 -cellosaurus:CVCL_2701 RAJI TK- 1 8751 -cellosaurus:CVCL_A7ZV Raji-h4-1BB 1 8752 -cellosaurus:CVCL_A7ZW Raji-hCTLA4 1 8753 -cellosaurus:CVCL_A7ZX Raji-hEGFR 1 8754 -cellosaurus:CVCL_A7ZY Raji-HER2 1 8755 -cellosaurus:CVCL_A7ZZ Raji-hICOS 1 8756 -cellosaurus:CVCL_A8AA Raji-hLAG3 1 8757 -cellosaurus:CVCL_A8AC Raji-hOX40 1 8758 -cellosaurus:CVCL_A8AD Raji-hPD-1 1 8759 -cellosaurus:CVCL_A8AE Raji-hPD-L1 1 8760 -cellosaurus:CVCL_A8AF Raji-hTIGIT 1 8761 -cellosaurus:CVCL_A8AG Raji-hVISTA 1 8762 -cellosaurus:CVCL_A8AB Raji-Null 1 8763 -cellosaurus:CVCL_VL72 Raji(A44) 1 8764 -cellosaurus:CVCL_LK62 Raji-GFP 1 8765 -cellosaurus:CVCL_DD98 Raji-TG 1 8766 -cellosaurus:CVCL_KU31 Raji/18V 1 8767 -cellosaurus:CVCL_C0HU Raji/A 1 8768 -cellosaurus:CVCL_0R22 Raji/DC-SIGN 1 8769 -cellosaurus:CVCL_3414 Rj2.2.5 1 8770 -cellosaurus:CVCL_ZI13 RUD 1 8771 -cellosaurus:CVCL_8431 TDL-4 1 8772 -cellosaurus:CVCL_AQ36 CHLA-215 0 8773 -cellosaurus:CVCL_ZF05 CHLA-215-Luc 1 8774 -cellosaurus:CVCL_8895 MTC-F 0 8775 -cellosaurus:CVCL_8896 MTC-SK 1 8776 -cellosaurus:CVCL_5529 HLC-1 0 8777 -cellosaurus:CVCL_4Y14 HLC-1-Luc 1 8778 -cellosaurus:CVCL_M267 KMBC 0 8779 -cellosaurus:CVCL_0T72 KMBC-Hep 1 8780 -cellosaurus:CVCL_A389 HSC-45 0 8781 -cellosaurus:CVCL_A390 HSC-45M2 1 8782 -cellosaurus:CVCL_1206 ETK-1 0 8783 -cellosaurus:CVCL_4902 SSP-25 1 8784 -cellosaurus:CVCL_8756 S/RG 0 8785 -cellosaurus:CVCL_IQ11 S/RG/C2 1 8786 -cellosaurus:CVCL_1387 Lu-134-A 0 8787 -cellosaurus:CVCL_6862 Lu-130 1 8788 -cellosaurus:CVCL_4W84 TYUC-1 0 8789 -cellosaurus:CVCL_JG96 TYUC-1-Luc 1 8790 -cellosaurus:CVCL_7202 Mutu-1 0 8791 -cellosaurus:CVCL_ZY05 Mutu- 1 8792 -cellosaurus:CVCL_7203 Mutu-3 1 8793 -cellosaurus:CVCL_T746 NOS3 0 8794 -cellosaurus:CVCL_RN34 NOS3AR 1 8795 -cellosaurus:CVCL_1625 OPM-2 0 8796 -cellosaurus:CVCL_VJ35 OPM-2/BR 1 8797 -cellosaurus:CVCL_4V72 OPM-2/BTZ 1 8798 -cellosaurus:CVCL_4773 U-343MGa 0 8799 -cellosaurus:CVCL_2050 GOS-3 1 8800 -cellosaurus:CVCL_S472 U-343MGa 31L 1 8801 -cellosaurus:CVCL_S474 U-343MGa Cl2 1 8802 -cellosaurus:CVCL_S473 U-343MGa Cl2:6 2 8803 -cellosaurus:CVCL_S475 U-343MGa Cl3 1 8804 -cellosaurus:CVCL_C542 RPMI-8322 0 8805 -cellosaurus:CVCL_C543 RPMI8322/CDDP-300 1 8806 -cellosaurus:CVCL_1562 NCI-H446 0 8807 -cellosaurus:CVCL_RT21 H446/CDDP 1 8808 -cellosaurus:CVCL_RT18 H446/EP 1 8809 -cellosaurus:CVCL_C1MD H446/VP 1 8810 -cellosaurus:CVCL_A359 HDC-8 0 8811 -cellosaurus:CVCL_EI73 HDC-8NMIIK1 1 8812 -cellosaurus:CVCL_7707 UM-SCC-1 0 8813 -cellosaurus:CVCL_L893 1Cc8 1 8814 -cellosaurus:CVCL_4V02 SCC-1-Cet-R 1 8815 -cellosaurus:CVCL_4V03 SCC-1-Erl-R 1 8816 -cellosaurus:CVCL_4V04 SCC-1-Gef-R 1 8817 -cellosaurus:CVCL_1Q88 T409 1 8818 -cellosaurus:CVCL_4912 Tu 167 1 8819 -cellosaurus:CVCL_1Q83 DM12 [Human OCSCC] 2 8820 -cellosaurus:CVCL_1Q84 DM14 [Human OCSCC] 2 8821 -cellosaurus:CVCL_1Q86 JMAR 2 8822 -cellosaurus:CVCL_WI16 JMAR C39 2 8823 -cellosaurus:CVCL_WI17 JMAR C42 2 8824 -cellosaurus:CVCL_WI18 Tu 167 c2 2 8825 -cellosaurus:CVCL_1Q85 Tu167LN1 2 8826 -cellosaurus:CVCL_7259 86HG39 0 8827 -cellosaurus:CVCL_7892 2D9 [Human glioblastoma] 1 8828 -cellosaurus:CVCL_M835 RDD8107 0 8829 -cellosaurus:CVCL_RT58 RDD8107-2 1 8830 -cellosaurus:CVCL_6028 SK-MEL-25 0 8831 -cellosaurus:CVCL_B5AE SK-MEL-25 subclone-5 1 8832 -cellosaurus:CVCL_B6JM Mel P 0 8833 -cellosaurus:CVCL_B6KZ Mel PG 1 8834 -cellosaurus:CVCL_B6JN PiGAS 1 8835 -cellosaurus:CVCL_0023 A-549 0 8836 -cellosaurus:CVCL_UJ32 A549 ATGL-KO 1 8837 -cellosaurus:CVCL_C3CC A549 B2M KO 1 8838 -cellosaurus:CVCL_C3CF A549 HLA-A*01:01 2 8839 -cellosaurus:CVCL_C3CG A549 HLA-A*02:01 2 8840 -cellosaurus:CVCL_C3CH A549 HLA-A*03:01 2 8841 -cellosaurus:CVCL_C3CI A549 HLA-A*11:01 2 8842 -cellosaurus:CVCL_C3CJ A549 HLA-A*24:02 2 8843 -cellosaurus:CVCL_C3CK A549 HLA-B*07:02 2 8844 -cellosaurus:CVCL_C3CL A549 HLA-B*08:01 2 8845 -cellosaurus:CVCL_C3CM A549 HLA-B*15:10 2 8846 -cellosaurus:CVCL_C3CN A549 HLA-B*35:01 2 8847 -cellosaurus:CVCL_C3CP A549 HLA-B*40:01 2 8848 -cellosaurus:CVCL_VR73 A549 dCas9-KRAB 1 8849 -cellosaurus:CVCL_YZ46 A549 DHODH-/- 1 8850 -cellosaurus:CVCL_C3DB A549 EGFR Knockout 1 8851 -cellosaurus:CVCL_C3DD A549 EGFR High 2 8852 -cellosaurus:CVCL_C3DC A549 EGFR Low 2 8853 -cellosaurus:CVCL_C3EU A549 EGFRvIII High 2 8854 -cellosaurus:CVCL_C3ET A549 EGFR Biosensor 1 8855 -cellosaurus:CVCL_JK07 A549 EML4-ALK 1 8856 -cellosaurus:CVCL_VR66 A549 EML4-ALK-Luc2 2 8857 -cellosaurus:CVCL_C3C7 A549 GFP-CTNNB1 RFP-LMNB1 1 8858 -cellosaurus:CVCL_RT13 A549 GFP-EGFR 1 8859 -cellosaurus:CVCL_C3C6 A549 GFP-SMAD4 1 8860 -cellosaurus:CVCL_RQ89 A549 GFP-STAT1 1 8861 -cellosaurus:CVCL_C3C5 A549 HIF1A -/-/- 1 8862 -cellosaurus:CVCL_B0A6 A549 IFITM2/3-KO 1 8863 -cellosaurus:CVCL_C3IT A549 MIR1343 KO 1 8864 -cellosaurus:CVCL_LB65 A549 MX10 1 8865 -cellosaurus:CVCL_DF39 A549 NucLight Green 1 8866 -cellosaurus:CVCL_DF40 A549 NucLight Red 1 8867 -cellosaurus:CVCL_XY99 A549 OS8 1 8868 -cellosaurus:CVCL_C3C8 A549 RFP-STAT3 1 8869 -cellosaurus:CVCL_C0DV A549 rho-0#1a 1 8870 -cellosaurus:CVCL_C3EV A549 Safe Harbor Landing Pad 1 8871 -cellosaurus:CVCL_C3C4 A549 SMAD4 -/- 1 8872 -cellosaurus:CVCL_LI35 A549 VIM RFP 1 8873 -cellosaurus:CVCL_4V06 A549(VM)28 1 8874 -cellosaurus:CVCL_4V07 A549(VP)28 1 8875 -cellosaurus:CVCL_A1ZW A549-1 1 8876 -cellosaurus:CVCL_XE67 A549-5Fu 1 8877 -cellosaurus:CVCL_C0Q5 A549-ACE2 1 8878 -cellosaurus:CVCL_XE68 A549-Cas9-538 1 8879 -cellosaurus:CVCL_A9MB A549-Cas9-860 1 8880 -cellosaurus:CVCL_A9MC A549-Cas9-861 1 8881 -cellosaurus:CVCL_A9MD A549-Cas9-862 1 8882 -cellosaurus:CVCL_A9ME A549-Cas9-863 1 8883 -cellosaurus:CVCL_A0VZ A549-CBG 1 8884 -cellosaurus:CVCL_A0WA A549-A2-ESO 2 8885 -cellosaurus:CVCL_C0DZ A549-CEACAM1-4L 1 8886 -cellosaurus:CVCL_IP03 A549-CR 1 8887 -cellosaurus:CVCL_5I73 A549-Dual 1 8888 -cellosaurus:CVCL_A7ZQ A549-Dual hACE2-TMPRSS2 2 8889 -cellosaurus:CVCL_A7ZM A549-Dual KO-MAVS 2 8890 -cellosaurus:CVCL_A7ZP A549-Dual KO-MDA5 2 8891 -cellosaurus:CVCL_A7ZR A549-Dual KO-MDA5 hACE2-TMPRSS2 3 8892 -cellosaurus:CVCL_A7ZN A549-Dual KO-RIG-I 2 8893 -cellosaurus:CVCL_A7ZS A549-Dual KO-RIG-I hACE2-TMPRSS2 3 8894 -cellosaurus:CVCL_XB31 A549-EGFP 1 8895 -cellosaurus:CVCL_QZ76 A549-eGFP-Puro 1 8896 -cellosaurus:CVCL_XI06 A549-ESM 1 8897 -cellosaurus:CVCL_QZ77 A549-Fluc-Neo/eGFP-Puro 1 8898 -cellosaurus:CVCL_QZ78 A549-Fluc-Neo/iRFP-Puro 1 8899 -cellosaurus:CVCL_QZ79 A549-Fluc-Puro 1 8900 -cellosaurus:CVCL_A7UV A549-hACE2 [BEI resources] 1 8901 -cellosaurus:CVCL_A5KA A549-hACE2 [Invivogen] 1 8902 -cellosaurus:CVCL_A5KB A549-hACE2-TMPRSS2 2 8903 -cellosaurus:CVCL_A7UW A549-hACE2 (HA-FLAG) 1 8904 -cellosaurus:CVCL_QZ80 A549-hNIS-Neo 1 8905 -cellosaurus:CVCL_QZ81 A549-hNIS-Neo/eGFP-Puro 1 8906 -cellosaurus:CVCL_QZ82 A549-hNIS-Neo/Fluc-Puro 1 8907 -cellosaurus:CVCL_QZ83 A549-hNIS-Neo/iRFP-Puro 1 8908 -cellosaurus:CVCL_QZ84 A549-iRFP-Neo 1 8909 -cellosaurus:CVCL_QZ85 A549-iRFP-Puro 1 8910 -cellosaurus:CVCL_J242 A549-Luc 1 8911 -cellosaurus:CVCL_5J13 A549-luc-C8 1 8912 -cellosaurus:CVCL_UR31 A549-Luc2 1 8913 -cellosaurus:CVCL_XE69 A549-Luc2-tdT-2 1 8914 -cellosaurus:CVCL_XB30 A549-mCherry 1 8915 -cellosaurus:CVCL_RX08 A549-Mx2/EGFP L2A6 1 8916 -cellosaurus:CVCL_RX09 A549-Mx2/EGFP L2G9 1 8917 -cellosaurus:CVCL_A1ZX A549-R0 1 8918 -cellosaurus:CVCL_5I86 A549-Red-FLuc 1 8919 -cellosaurus:CVCL_W218 A549-Taxol 1 8920 -cellosaurus:CVCL_XB27 A549-tdT 1 8921 -cellosaurus:CVCL_4Z15 A549.EpoB40 1 8922 -cellosaurus:CVCL_IY87 A549/8 1 8923 -cellosaurus:CVCL_YA87 A549/Asc-1 1 8924 -cellosaurus:CVCL_H268 A549/CPT 1 8925 -cellosaurus:CVCL_C0W4 A549/DDP 1 8926 -cellosaurus:CVCL_JY87 A549/GFP 1 8927 -cellosaurus:CVCL_KS36 A549/NFkB-luc 1 8928 -cellosaurus:CVCL_UJ49 A549/SF 1 8929 -cellosaurus:CVCL_B7N5 A549/TS1 1 8930 -cellosaurus:CVCL_B7N6 A549/TS2 1 8931 -cellosaurus:CVCL_W190 A549/TXL10 1 8932 -cellosaurus:CVCL_W191 A549/TXL20 1 8933 -cellosaurus:CVCL_W192 A549/TXL5 1 8934 -cellosaurus:CVCL_ZX73 A549L0 1 8935 -cellosaurus:CVCL_ZX74 A549L6 2 8936 -cellosaurus:CVCL_RQ47 A549rCDDP2000 1 8937 -cellosaurus:CVCL_B1EG Abcam A-549 ABCC1 KO 1 8938 -cellosaurus:CVCL_B2M0 Abcam A-549 ABCC2 KO 1 8939 -cellosaurus:CVCL_B1EH Abcam A-549 ABCG2 KO 1 8940 -cellosaurus:CVCL_B9CT Abcam A-549 ABL2 KO 1 8941 -cellosaurus:CVCL_B9CU Abcam A-549 ACKR3 KO 1 8942 -cellosaurus:CVCL_B9CV Abcam A-549 ACTA2 KO 1 8943 -cellosaurus:CVCL_B9CW Abcam A-549 ACVR1B KO 1 8944 -cellosaurus:CVCL_B9CX Abcam A-549 ADA KO 1 8945 -cellosaurus:CVCL_B9CY Abcam A-549 ADAM10 KO 1 8946 -cellosaurus:CVCL_B9CZ Abcam A-549 ADAR KO 1 8947 -cellosaurus:CVCL_B9D0 Abcam A-549 ADK KO 1 8948 -cellosaurus:CVCL_B9D1 Abcam A-549 ADORA2A KO 1 8949 -cellosaurus:CVCL_B9D2 Abcam A-549 ADRA2B KO 1 8950 -cellosaurus:CVCL_B9D3 Abcam A-549 ADRB2 KO 1 8951 -cellosaurus:CVCL_B9D4 Abcam A-549 AFP KO 1 8952 -cellosaurus:CVCL_B9D5 Abcam A-549 AGO2 KO 1 8953 -cellosaurus:CVCL_B9D6 Abcam A-549 AGO4 KO 1 8954 -cellosaurus:CVCL_B9D7 Abcam A-549 AKT1 KO 1 8955 -cellosaurus:CVCL_B9D8 Abcam A-549 AKT2 KO 1 8956 -cellosaurus:CVCL_B9D9 Abcam A-549 AKT3 KO 1 8957 -cellosaurus:CVCL_B2M1 Abcam A-549 ALDH1A1 KO 1 8958 -cellosaurus:CVCL_B9DA Abcam A-549 ALK KO 1 8959 -cellosaurus:CVCL_B9DB Abcam A-549 ANGPT1 KO 1 8960 -cellosaurus:CVCL_B9DC Abcam A-549 ANGPT2 KO 1 8961 -cellosaurus:CVCL_B1EI Abcam A-549 ANGPTL6 KO 1 8962 -cellosaurus:CVCL_B9DD Abcam A-549 ANXA1 KO 1 8963 -cellosaurus:CVCL_B9DE Abcam A-549 APEX1 KO 1 8964 -cellosaurus:CVCL_B2M2 Abcam A-549 APOL2 KO 1 1 8965 -cellosaurus:CVCL_B1EJ Abcam A-549 APOL2 KO 2 1 8966 -cellosaurus:CVCL_B2M3 Abcam A-549 APOL6 KO 1 1 8967 -cellosaurus:CVCL_B1EK Abcam A-549 APOL6 KO 2 1 8968 -cellosaurus:CVCL_B9DF Abcam A-549 AQP4 KO 1 8969 -cellosaurus:CVCL_B9DG Abcam A-549 AR KO 1 8970 -cellosaurus:CVCL_B9DH Abcam A-549 ARAF KO 1 8971 -cellosaurus:CVCL_B9DI Abcam A-549 AREG KO 1 8972 -cellosaurus:CVCL_B7Q1 Abcam A-549 ARID1A KO 1 8973 -cellosaurus:CVCL_B9DJ Abcam A-549 ARID1B KO 1 8974 -cellosaurus:CVCL_B9DK Abcam A-549 ARNT KO 1 8975 -cellosaurus:CVCL_B9DL Abcam A-549 ARNTL KO 1 8976 -cellosaurus:CVCL_B9DM Abcam A-549 ARRB1 KO 1 8977 -cellosaurus:CVCL_B9DN Abcam A-549 ARRB2 KO 1 8978 -cellosaurus:CVCL_B2M4 Abcam A-549 ARRDC3 KO 1 8979 -cellosaurus:CVCL_B9DP Abcam A-549 ASH2L KO 1 8980 -cellosaurus:CVCL_B9DQ Abcam A-549 ATF2 KO 1 8981 -cellosaurus:CVCL_B1EL Abcam A-549 ATF3 KO 1 8982 -cellosaurus:CVCL_B9DR Abcam A-549 ATF6 KO 1 8983 -cellosaurus:CVCL_B2M5 Abcam A-549 ATM KO 1 8984 -cellosaurus:CVCL_B1EM Abcam A-549 ATP10A KO 1 8985 -cellosaurus:CVCL_B2M6 Abcam A-549 ATR KO 1 8986 -cellosaurus:CVCL_B9DS Abcam A-549 ATRX KO 1 8987 -cellosaurus:CVCL_B9DT Abcam A-549 AXIN1 KO 1 8988 -cellosaurus:CVCL_B9DU Abcam A-549 B2M KO 1 8989 -cellosaurus:CVCL_B9DV Abcam A-549 BAD KO 1 8990 -cellosaurus:CVCL_B1EN Abcam A-549 BATF2 KO 1 1 8991 -cellosaurus:CVCL_B2M7 Abcam A-549 BATF2 KO 2 1 8992 -cellosaurus:CVCL_B9DW Abcam A-549 BAX KO 1 8993 -cellosaurus:CVCL_B9DX Abcam A-549 BCAR1 KO 1 8994 -cellosaurus:CVCL_B9DY Abcam A-549 BCL10 KO 1 8995 -cellosaurus:CVCL_B9DZ Abcam A-549 BCL11A KO 1 8996 -cellosaurus:CVCL_B9E0 Abcam A-549 BCL11B KO 1 8997 -cellosaurus:CVCL_B9E1 Abcam A-549 BCL2 KO 1 8998 -cellosaurus:CVCL_B9E2 Abcam A-549 BCL3 KO 1 8999 -cellosaurus:CVCL_B9E3 Abcam A-549 BCL6 KO 1 9000 -cellosaurus:CVCL_B9E4 Abcam A-549 BDNF KO 1 9001 -cellosaurus:CVCL_B9E5 Abcam A-549 BHLHE40 KO 1 9002 -cellosaurus:CVCL_B9E6 Abcam A-549 BLM KO 1 9003 -cellosaurus:CVCL_B9E7 Abcam A-549 BMP4 KO 1 9004 -cellosaurus:CVCL_B9E8 Abcam A-549 BMPR1A KO 1 9005 -cellosaurus:CVCL_B9E9 Abcam A-549 BRAF KO 1 9006 -cellosaurus:CVCL_B1EP Abcam A-549 BRCA1 KO 1 9007 -cellosaurus:CVCL_B9EA Abcam A-549 BRD3 KO 1 9008 -cellosaurus:CVCL_B9EB Abcam A-549 BRD4 KO 1 9009 -cellosaurus:CVCL_B9EC Abcam A-549 BRD7 KO 1 9010 -cellosaurus:CVCL_B9ED Abcam A-549 BRIP1 KO 1 9011 -cellosaurus:CVCL_B2M8 Abcam A-549 BSG KO 1 9012 -cellosaurus:CVCL_B9EE Abcam A-549 C3AR1 KO 1 9013 -cellosaurus:CVCL_B9EF Abcam A-549 C5AR1 KO 1 9014 -cellosaurus:CVCL_B1EQ Abcam A-549 CA12 KO 1 9015 -cellosaurus:CVCL_B9EG Abcam A-549 CA9 KO 1 9016 -cellosaurus:CVCL_B9EH Abcam A-549 CACNA1D KO 1 9017 -cellosaurus:CVCL_B9EI Abcam A-549 CALR KO 1 9018 -cellosaurus:CVCL_B9EJ Abcam A-549 CARD11 KO 1 9019 -cellosaurus:CVCL_B9EK Abcam A-549 CARD9 KO 1 9020 -cellosaurus:CVCL_B9EL Abcam A-549 CARM1 KO 1 9021 -cellosaurus:CVCL_B9EM Abcam A-549 CASP8 KO 1 9022 -cellosaurus:CVCL_B9EN Abcam A-549 CBL KO 1 9023 -cellosaurus:CVCL_B9EP Abcam A-549 CBLB KO 1 9024 -cellosaurus:CVCL_B2M9 Abcam A-549 CBR1 KO 1 9025 -cellosaurus:CVCL_B9EQ Abcam A-549 CCL3 KO 1 9026 -cellosaurus:CVCL_B9ER Abcam A-549 CCNB1 KO 1 9027 -cellosaurus:CVCL_B9ES Abcam A-549 CCND1 KO 1 9028 -cellosaurus:CVCL_B9ET Abcam A-549 CCND2 KO 1 9029 -cellosaurus:CVCL_B9EU Abcam A-549 CCNE1 KO 1 9030 -cellosaurus:CVCL_B9EV Abcam A-549 CCR3 KO 1 9031 -cellosaurus:CVCL_B9EW Abcam A-549 CCR4 KO 1 9032 -cellosaurus:CVCL_B9EX Abcam A-549 CCR5 KO 1 9033 -cellosaurus:CVCL_B9EY Abcam A-549 CCR6 KO 1 9034 -cellosaurus:CVCL_B9EZ Abcam A-549 CCR7 KO 1 9035 -cellosaurus:CVCL_B9F0 Abcam A-549 CCR9 KO 1 9036 -cellosaurus:CVCL_B9F1 Abcam A-549 CD14 KO 1 9037 -cellosaurus:CVCL_B9F2 Abcam A-549 CD163 KO 1 9038 -cellosaurus:CVCL_B9F3 Abcam A-549 CD19 KO 1 9039 -cellosaurus:CVCL_B9F4 Abcam A-549 CD209 KO 1 9040 -cellosaurus:CVCL_B9F5 Abcam A-549 CD226 KO 1 9041 -cellosaurus:CVCL_B1ER Abcam A-549 CD274 KO 1 1 9042 -cellosaurus:CVCL_B2MA Abcam A-549 CD274 KO 2 1 9043 -cellosaurus:CVCL_B9F6 Abcam A-549 CD28 KO 1 9044 -cellosaurus:CVCL_B9F7 Abcam A-549 CD34 KO 1 9045 -cellosaurus:CVCL_B9F8 Abcam A-549 CD38 KO 1 9046 -cellosaurus:CVCL_B9UM Abcam A-549 CD3E KO 1 9047 -cellosaurus:CVCL_B9F9 Abcam A-549 CD4 KO 1 9048 -cellosaurus:CVCL_B9FA Abcam A-549 CD40LG KO 1 9049 -cellosaurus:CVCL_B9FB Abcam A-549 CD5 KO 1 9050 -cellosaurus:CVCL_B9FC Abcam A-549 CD69 KO 1 9051 -cellosaurus:CVCL_B9FD Abcam A-549 CD7 KO 1 9052 -cellosaurus:CVCL_B9FE Abcam A-549 CD74 KO 1 9053 -cellosaurus:CVCL_B9FF Abcam A-549 CD79A KO 1 9054 -cellosaurus:CVCL_B9FG Abcam A-549 CD80 KO 1 9055 -cellosaurus:CVCL_B9FH Abcam A-549 CD86 KO 1 9056 -cellosaurus:CVCL_B9FI Abcam A-549 CD8A KO 1 9057 -cellosaurus:CVCL_B1ES Abcam A-549 CD9 KO 1 9058 -cellosaurus:CVCL_B9FJ Abcam A-549 CDH11 KO 1 9059 -cellosaurus:CVCL_B9FK Abcam A-549 CDK4 KO 1 9060 -cellosaurus:CVCL_B9FL Abcam A-549 CDK5 KO 1 9061 -cellosaurus:CVCL_B9FM Abcam A-549 CDK6 KO 1 9062 -cellosaurus:CVCL_B9FN Abcam A-549 CDK8 KO 1 9063 -cellosaurus:CVCL_B9FP Abcam A-549 CDKN1A KO 1 9064 -cellosaurus:CVCL_B9FQ Abcam A-549 CDKN1B KO 1 9065 -cellosaurus:CVCL_B9FR Abcam A-549 CDKN1C KO 1 9066 -cellosaurus:CVCL_B9FS Abcam A-549 CDX2 KO 1 9067 -cellosaurus:CVCL_B2MB Abcam A-549 CEACAM1 KO 1 1 9068 -cellosaurus:CVCL_B1ET Abcam A-549 CEACAM1 KO 2 1 9069 -cellosaurus:CVCL_B9FT Abcam A-549 CEACAM5 KO 1 9070 -cellosaurus:CVCL_B9FU Abcam A-549 CEBPA KO 1 9071 -cellosaurus:CVCL_B2MC Abcam A-549 CFH KO 1 9072 -cellosaurus:CVCL_B1EU Abcam A-549 CFHR3 KO 1 1 9073 -cellosaurus:CVCL_B2MD Abcam A-549 CFHR3 KO 2 1 9074 -cellosaurus:CVCL_B9FV Abcam A-549 CHD5 KO 1 9075 -cellosaurus:CVCL_B9FW Abcam A-549 CHD7 KO 1 9076 -cellosaurus:CVCL_B9FX Abcam A-549 CHD8 KO 1 9077 -cellosaurus:CVCL_B9FY Abcam A-549 CHD9 KO 1 9078 -cellosaurus:CVCL_B1EV Abcam A-549 CHEK1 KO 1 9079 -cellosaurus:CVCL_B2ME Abcam A-549 CHEK2 KO 1 9080 -cellosaurus:CVCL_B1EW Abcam A-549 CHMP2B KO 1 9081 -cellosaurus:CVCL_B9FZ Abcam A-549 CHUK KO 1 9082 -cellosaurus:CVCL_B9G0 Abcam A-549 CIRBP KO 1 9083 -cellosaurus:CVCL_B9G1 Abcam A-549 CISH KO 1 9084 -cellosaurus:CVCL_B9G2 Abcam A-549 CLDN18 KO 1 9085 -cellosaurus:CVCL_B9G3 Abcam A-549 CLOCK KO 1 9086 -cellosaurus:CVCL_B2MF Abcam A-549 CMPK2 KO 1 1 9087 -cellosaurus:CVCL_B1EX Abcam A-549 CMPK2 KO 2 1 9088 -cellosaurus:CVCL_B9G4 Abcam A-549 CNOT6 KO 1 9089 -cellosaurus:CVCL_B9G5 Abcam A-549 CNTNAP2 KO 1 9090 -cellosaurus:CVCL_B9G6 Abcam A-549 COL1A1 KO 1 9091 -cellosaurus:CVCL_B9G7 Abcam A-549 CR2 KO 1 9092 -cellosaurus:CVCL_B9G8 Abcam A-549 CRBN KO 1 9093 -cellosaurus:CVCL_B9G9 Abcam A-549 CREB1 KO 1 9094 -cellosaurus:CVCL_B9GA Abcam A-549 CREBBP KO 1 9095 -cellosaurus:CVCL_B9GB Abcam A-549 CRLF2 KO 1 9096 -cellosaurus:CVCL_B9GC Abcam A-549 CSF1 KO 1 9097 -cellosaurus:CVCL_B9GD Abcam A-549 CSF1R KO 1 9098 -cellosaurus:CVCL_B9GE Abcam A-549 CSF3R KO 1 9099 -cellosaurus:CVCL_B9GF Abcam A-549 CSPG4 KO 1 9100 -cellosaurus:CVCL_B9GG Abcam A-549 CTLA4 KO 1 9101 -cellosaurus:CVCL_B9GH Abcam A-549 CTNNB1 KO 1 9102 -cellosaurus:CVCL_B9GI Abcam A-549 CX3CL1 KO 1 9103 -cellosaurus:CVCL_B2MG Abcam A-549 CXCL10 KO 1 1 9104 -cellosaurus:CVCL_B1EY Abcam A-549 CXCL10 KO 2 1 9105 -cellosaurus:CVCL_B2MH Abcam A-549 CXCL10 KO 3 1 9106 -cellosaurus:CVCL_C0BH Abcam A-549 CXCL11 KO 1 9107 -cellosaurus:CVCL_B9GJ Abcam A-549 CXCL13 KO 1 9108 -cellosaurus:CVCL_B9GK Abcam A-549 CXCR1 KO 1 9109 -cellosaurus:CVCL_B9GL Abcam A-549 CXCR3 KO 1 9110 -cellosaurus:CVCL_B9GM Abcam A-549 CXCR4 KO 1 9111 -cellosaurus:CVCL_B9GN Abcam A-549 CXCR6 KO 1 9112 -cellosaurus:CVCL_B9GP Abcam A-549 CYBB KO 1 9113 -cellosaurus:CVCL_B9GQ Abcam A-549 CYLD KO 1 9114 -cellosaurus:CVCL_B1EZ Abcam A-549 CYP1B1 KO 1 1 9115 -cellosaurus:CVCL_B9CP Abcam A-549 CYP1B1 KO 2 1 9116 -cellosaurus:CVCL_B2MI Abcam A-549 CYP24A1 KO 1 9117 -cellosaurus:CVCL_B9GR Abcam A-549 DAXX KO 1 9118 -cellosaurus:CVCL_B9GS Abcam A-549 DCC KO 1 9119 -cellosaurus:CVCL_B9GT Abcam A-549 DDB2 KO 1 9120 -cellosaurus:CVCL_B9GU Abcam A-549 DDR2 KO 1 9121 -cellosaurus:CVCL_B9GV Abcam A-549 DDX3X KO 1 9122 -cellosaurus:CVCL_B9GW Abcam A-549 DDX4 KO 1 9123 -cellosaurus:CVCL_B1F0 Abcam A-549 DDX58 KO 1 1 9124 -cellosaurus:CVCL_B2MJ Abcam A-549 DDX58 KO 2 1 9125 -cellosaurus:CVCL_B1F1 Abcam A-549 DDX60 KO 1 9126 -cellosaurus:CVCL_B2MK Abcam A-549 DDX60L KO 1 9127 -cellosaurus:CVCL_B1F2 Abcam A-549 DEPDC5 KO 1 9128 -cellosaurus:CVCL_B9GX Abcam A-549 DGCR8 KO 1 9129 -cellosaurus:CVCL_B2ML Abcam A-549 DHX58 KO 1 9130 -cellosaurus:CVCL_B9GY Abcam A-549 DLL3 KO 1 9131 -cellosaurus:CVCL_B9GZ Abcam A-549 DMC1 KO 1 9132 -cellosaurus:CVCL_B1F3 Abcam A-549 DNAH5 KO 1 9133 -cellosaurus:CVCL_B9H0 Abcam A-549 DNAJB1 KO 1 9134 -cellosaurus:CVCL_B9H1 Abcam A-549 DNMT3B KO 1 9135 -cellosaurus:CVCL_B9H2 Abcam A-549 DOT1L KO 1 9136 -cellosaurus:CVCL_B9H3 Abcam A-549 DPP4 KO 1 9137 -cellosaurus:CVCL_B9H4 Abcam A-549 DROSHA KO 1 9138 -cellosaurus:CVCL_B2MM Abcam A-549 DSG2 KO 1 1 9139 -cellosaurus:CVCL_B1F4 Abcam A-549 DSG2 KO 2 1 9140 -cellosaurus:CVCL_B2MN Abcam A-549 DTX3L KO 1 1 9141 -cellosaurus:CVCL_B1F5 Abcam A-549 DTX3L KO 2 1 9142 -cellosaurus:CVCL_B2MP Abcam A-549 DUSP4 KO 1 9143 -cellosaurus:CVCL_B9H5 Abcam A-549 DVL2 KO 1 9144 -cellosaurus:CVCL_B9H6 Abcam A-549 E2F1 KO 1 9145 -cellosaurus:CVCL_B9H7 Abcam A-549 E2F2 KO 1 9146 -cellosaurus:CVCL_B9H8 Abcam A-549 EBF1 KO 1 9147 -cellosaurus:CVCL_B9H9 Abcam A-549 EBI3 KO 1 9148 -cellosaurus:CVCL_B9HA Abcam A-549 EGF KO 1 9149 -cellosaurus:CVCL_B9HB Abcam A-549 EGFR KO 1 9150 -cellosaurus:CVCL_B9HC Abcam A-549 EGLN3 KO 1 9151 -cellosaurus:CVCL_B9HD Abcam A-549 EGR1 KO 1 9152 -cellosaurus:CVCL_B9HE Abcam A-549 EHMT1 KO 1 9153 -cellosaurus:CVCL_B1F6 Abcam A-549 EIF2AK2 KO 1 1 9154 -cellosaurus:CVCL_B2MQ Abcam A-549 EIF2AK2 KO 2 1 9155 -cellosaurus:CVCL_B9HF Abcam A-549 EIF2AK3 KO 1 9156 -cellosaurus:CVCL_B9HG Abcam A-549 ELK1 KO 1 9157 -cellosaurus:CVCL_B9HH Abcam A-549 ENTPD1 KO 1 9158 -cellosaurus:CVCL_B9HI Abcam A-549 EOMES KO 1 9159 -cellosaurus:CVCL_B9HJ Abcam A-549 EP300 KO 1 9160 -cellosaurus:CVCL_B1F7 Abcam A-549 EPAS1 KO 1 9161 -cellosaurus:CVCL_B9HK Abcam A-549 EPC1 KO 1 9162 -cellosaurus:CVCL_B9HL Abcam A-549 EPHA3 KO 1 9163 -cellosaurus:CVCL_B9HM Abcam A-549 EPHB2 KO 1 9164 -cellosaurus:CVCL_B2MR Abcam A-549 EPSTI1 KO 1 1 9165 -cellosaurus:CVCL_B1F8 Abcam A-549 EPSTI1 KO 2 1 9166 -cellosaurus:CVCL_B9HN Abcam A-549 ERBB2 KO 1 9167 -cellosaurus:CVCL_B9HP Abcam A-549 ERBB3 KO 1 9168 -cellosaurus:CVCL_B9HQ Abcam A-549 ERBB4 KO 1 9169 -cellosaurus:CVCL_B2MS Abcam A-549 ERCC1 KO 1 9170 -cellosaurus:CVCL_B9HR Abcam A-549 ERCC4 KO 1 9171 -cellosaurus:CVCL_B9HS Abcam A-549 ERCC5 KO 1 9172 -cellosaurus:CVCL_B9HT Abcam A-549 ESR1 KO 1 9173 -cellosaurus:CVCL_B9HU Abcam A-549 ESRRA KO 1 9174 -cellosaurus:CVCL_B9HV Abcam A-549 ETS1 KO 1 9175 -cellosaurus:CVCL_B1F9 Abcam A-549 ETV6 KO 1 1 9176 -cellosaurus:CVCL_B2MT Abcam A-549 ETV6 KO 2 1 9177 -cellosaurus:CVCL_B9UK Abcam A-549 ETV6 KO 3 1 9178 -cellosaurus:CVCL_B1FA Abcam A-549 ETV7 KO 1 1 9179 -cellosaurus:CVCL_B2MU Abcam A-549 ETV7 KO 2 1 9180 -cellosaurus:CVCL_B9HW Abcam A-549 EZH1 KO 1 9181 -cellosaurus:CVCL_B9HX Abcam A-549 FANCA KO 1 9182 -cellosaurus:CVCL_B9HY Abcam A-549 FANCD2 KO 1 9183 -cellosaurus:CVCL_B9HZ Abcam A-549 FAP KO 1 9184 -cellosaurus:CVCL_B9I0 Abcam A-549 FAS KO 1 9185 -cellosaurus:CVCL_B9I1 Abcam A-549 FBXO38 KO 1 9186 -cellosaurus:CVCL_B9I2 Abcam A-549 FCER2 KO 1 9187 -cellosaurus:CVCL_B9I3 Abcam A-549 FCGR2A KO 1 9188 -cellosaurus:CVCL_B9I4 Abcam A-549 FCGR2B KO 1 9189 -cellosaurus:CVCL_B9I5 Abcam A-549 FCGR3A KO 1 9190 -cellosaurus:CVCL_B9I6 Abcam A-549 FEN1 KO 1 9191 -cellosaurus:CVCL_B9I7 Abcam A-549 FGF2 KO 1 9192 -cellosaurus:CVCL_B9I8 Abcam A-549 FGFR2 KO 1 9193 -cellosaurus:CVCL_B9I9 Abcam A-549 FGFR4 KO 1 9194 -cellosaurus:CVCL_B9IA Abcam A-549 FLI1 KO 1 9195 -cellosaurus:CVCL_B9IB Abcam A-549 FLT1 KO 1 9196 -cellosaurus:CVCL_B9IC Abcam A-549 FLT3LG KO 1 9197 -cellosaurus:CVCL_B9ID Abcam A-549 FLT4 KO 1 9198 -cellosaurus:CVCL_B9IE Abcam A-549 FMR1 KO 1 9199 -cellosaurus:CVCL_B9IF Abcam A-549 FN1 KO 1 9200 -cellosaurus:CVCL_B9IG Abcam A-549 FOLH1 KO 1 9201 -cellosaurus:CVCL_B9IH Abcam A-549 FOLR1 KO 1 9202 -cellosaurus:CVCL_B9II Abcam A-549 FOS KO 1 9203 -cellosaurus:CVCL_B9IJ Abcam A-549 FOSL1 KO 1 9204 -cellosaurus:CVCL_B9IK Abcam A-549 FOXA1 KO 1 9205 -cellosaurus:CVCL_B9IL Abcam A-549 FOXA2 KO 1 9206 -cellosaurus:CVCL_B9IM Abcam A-549 FOXC1 KO 1 9207 -cellosaurus:CVCL_B9IN Abcam A-549 FOXC2 KO 1 9208 -cellosaurus:CVCL_B9IP Abcam A-549 FOXG1 KO 1 9209 -cellosaurus:CVCL_B9IQ Abcam A-549 FOXM1 KO 1 9210 -cellosaurus:CVCL_B9IR Abcam A-549 FOXO4 KO 1 9211 -cellosaurus:CVCL_B9IS Abcam A-549 FOXP1 KO 1 9212 -cellosaurus:CVCL_B9IT Abcam A-549 FOXP3 KO 1 9213 -cellosaurus:CVCL_B9IU Abcam A-549 GABRA1 KO 1 9214 -cellosaurus:CVCL_B9IV Abcam A-549 GABRG2 KO 1 9215 -cellosaurus:CVCL_B9IW Abcam A-549 GADD45B KO 1 9216 -cellosaurus:CVCL_B9IX Abcam A-549 GATA1 KO 1 9217 -cellosaurus:CVCL_B9IY Abcam A-549 GATA2 KO 1 9218 -cellosaurus:CVCL_B9IZ Abcam A-549 GATA3 KO 1 9219 -cellosaurus:CVCL_B9J0 Abcam A-549 GATA4 KO 1 9220 -cellosaurus:CVCL_B9J1 Abcam A-549 GATA6 KO 1 9221 -cellosaurus:CVCL_B1FB Abcam A-549 GBP1 KO 1 9222 -cellosaurus:CVCL_B2MV Abcam A-549 GBP2 KO 1 1 9223 -cellosaurus:CVCL_B1FC Abcam A-549 GBP2 KO 2 1 9224 -cellosaurus:CVCL_B2MW Abcam A-549 GBP3 KO 1 9225 -cellosaurus:CVCL_B1FD Abcam A-549 GBP4 KO 1 1 9226 -cellosaurus:CVCL_B2MX Abcam A-549 GBP4 KO 2 1 9227 -cellosaurus:CVCL_B1FE Abcam A-549 GCH1 KO 1 1 9228 -cellosaurus:CVCL_B2MY Abcam A-549 GCH1 KO 2 1 9229 -cellosaurus:CVCL_B9J2 Abcam A-549 GLI1 KO 1 9230 -cellosaurus:CVCL_B9J3 Abcam A-549 GLI2 KO 1 9231 -cellosaurus:CVCL_B9J4 Abcam A-549 GLI3 KO 1 9232 -cellosaurus:CVCL_B9J5 Abcam A-549 GLS KO 1 9233 -cellosaurus:CVCL_B1FF Abcam A-549 GMPR KO 1 1 9234 -cellosaurus:CVCL_B2MZ Abcam A-549 GMPR KO 2 1 9235 -cellosaurus:CVCL_B9J6 Abcam A-549 GP1BA KO 1 9236 -cellosaurus:CVCL_B9J7 Abcam A-549 GPC1 KO 1 9237 -cellosaurus:CVCL_B9J8 Abcam A-549 GPER1 KO 1 9238 -cellosaurus:CVCL_B9J9 Abcam A-549 GPNMB KO 1 9239 -cellosaurus:CVCL_B9JA Abcam A-549 GSK3B KO 1 9240 -cellosaurus:CVCL_B9JB Abcam A-549 GSR KO 1 9241 -cellosaurus:CVCL_B9JC Abcam A-549 GZMB KO 1 9242 -cellosaurus:CVCL_B1FK Abcam A-549 H1-2 KO 1 9243 -cellosaurus:CVCL_B9JD Abcam A-549 H2BC21 KO 1 9244 -cellosaurus:CVCL_B1FG Abcam A-549 HAPLN3 KO 1 1 9245 -cellosaurus:CVCL_B2N0 Abcam A-549 HAPLN3 KO 2 1 9246 -cellosaurus:CVCL_B9JE Abcam A-549 HAT1 KO 1 9247 -cellosaurus:CVCL_B9JF Abcam A-549 HAVCR2 KO 1 9248 -cellosaurus:CVCL_B9JG Abcam A-549 HDAC1 KO 1 9249 -cellosaurus:CVCL_B9JH Abcam A-549 HDAC2 KO 1 9250 -cellosaurus:CVCL_B9JI Abcam A-549 HDAC4 KO 1 9251 -cellosaurus:CVCL_B9JJ Abcam A-549 HDAC5 KO 1 9252 -cellosaurus:CVCL_B9JK Abcam A-549 HDAC6 KO 1 9253 -cellosaurus:CVCL_B9JL Abcam A-549 HELQ KO 1 9254 -cellosaurus:CVCL_B1FH Abcam A-549 HELZ2 KO 1 1 9255 -cellosaurus:CVCL_B2N1 Abcam A-549 HELZ2 KO 2 1 9256 -cellosaurus:CVCL_B1FI Abcam A-549 HERC5 KO 1 1 9257 -cellosaurus:CVCL_B2N2 Abcam A-549 HERC5 KO 2 1 9258 -cellosaurus:CVCL_B1FJ Abcam A-549 HERC6 KO 1 9259 -cellosaurus:CVCL_B2N3 Abcam A-549 HES4 KO 1 9260 -cellosaurus:CVCL_B9JM Abcam A-549 HEY1 KO 1 9261 -cellosaurus:CVCL_B9JN Abcam A-549 HGF KO 1 9262 -cellosaurus:CVCL_B9JP Abcam A-549 HIF1A KO 1 9263 -cellosaurus:CVCL_B9JQ Abcam A-549 HLA-A KO 1 9264 -cellosaurus:CVCL_B9JR Abcam A-549 HLA-DRA KO 1 9265 -cellosaurus:CVCL_B2N4 Abcam A-549 HLA-E KO 1 1 9266 -cellosaurus:CVCL_B1FL Abcam A-549 HLA-E KO 2 1 9267 -cellosaurus:CVCL_B9JS Abcam A-549 HLA-G KO 1 9268 -cellosaurus:CVCL_B9JT Abcam A-549 HMGA2 KO 1 9269 -cellosaurus:CVCL_B2N5 Abcam A-549 HMOX1 KO 1 9270 -cellosaurus:CVCL_B9JU Abcam A-549 HNF1A KO 1 9271 -cellosaurus:CVCL_B9JV Abcam A-549 HNF4A KO 1 9272 -cellosaurus:CVCL_B9JW Abcam A-549 HOXA9 KO 1 9273 -cellosaurus:CVCL_B9JX Abcam A-549 HPSE KO 1 9274 -cellosaurus:CVCL_B9JY Abcam A-549 HRAS KO 1 9275 -cellosaurus:CVCL_B1FM Abcam A-549 HTR3D KO 1 1 9276 -cellosaurus:CVCL_B2N6 Abcam A-549 HTR3D KO 2 1 9277 -cellosaurus:CVCL_B9JZ Abcam A-549 ICAM1 KO 1 9278 -cellosaurus:CVCL_B9K0 Abcam A-549 ICOS KO 1 9279 -cellosaurus:CVCL_B9K1 Abcam A-549 ICOSLG KO 1 9280 -cellosaurus:CVCL_B9K2 Abcam A-549 IDH1 KO 1 9281 -cellosaurus:CVCL_B9K3 Abcam A-549 IDH2 KO 1 9282 -cellosaurus:CVCL_B1FN Abcam A-549 IDO1 KO 1 1 9283 -cellosaurus:CVCL_B2N7 Abcam A-549 IDO1 KO 2 1 9284 -cellosaurus:CVCL_B1FP Abcam A-549 IFI16 KO 1 1 9285 -cellosaurus:CVCL_B2N8 Abcam A-549 IFI16 KO 2 1 9286 -cellosaurus:CVCL_B1FQ Abcam A-549 IFI27 KO 1 9287 -cellosaurus:CVCL_B2N9 Abcam A-549 IFI35 KO 1 9288 -cellosaurus:CVCL_B1FR Abcam A-549 IFI44 KO 1 1 9289 -cellosaurus:CVCL_B2NA Abcam A-549 IFI44 KO 2 1 9290 -cellosaurus:CVCL_B1FS Abcam A-549 IFI44L KO 1 1 9291 -cellosaurus:CVCL_B2NB Abcam A-549 IFI44L KO 2 1 9292 -cellosaurus:CVCL_B1FT Abcam A-549 IFI6 KO 1 1 9293 -cellosaurus:CVCL_B2NC Abcam A-549 IFI6 KO 2 1 9294 -cellosaurus:CVCL_B1FU Abcam A-549 IFIH1 KO 1 1 9295 -cellosaurus:CVCL_B2ND Abcam A-549 IFIH1 KO 2 1 9296 -cellosaurus:CVCL_B1FV Abcam A-549 IFIT2 KO 1 1 9297 -cellosaurus:CVCL_B2NE Abcam A-549 IFIT2 KO 2 1 9298 -cellosaurus:CVCL_B1FW Abcam A-549 IFIT3 KO 1 9299 -cellosaurus:CVCL_B2NF Abcam A-549 IFIT5 KO 1 1 9300 -cellosaurus:CVCL_B1FX Abcam A-549 IFIT5 KO 2 1 9301 -cellosaurus:CVCL_B9K4 Abcam A-549 IFITM1 KO 1 9302 -cellosaurus:CVCL_B9K5 Abcam A-549 IFNAR1 KO 1 9303 -cellosaurus:CVCL_B9K6 Abcam A-549 IFNB1 KO 1 9304 -cellosaurus:CVCL_B9K7 Abcam A-549 IFNGR1 KO 1 9305 -cellosaurus:CVCL_B9K8 Abcam A-549 IFNGR2 KO 1 9306 -cellosaurus:CVCL_B2NG Abcam A-549 IFNL3 KO 1 9307 -cellosaurus:CVCL_B9K9 Abcam A-549 IGF1 KO 1 9308 -cellosaurus:CVCL_B9KA Abcam A-549 IGF2BP1 KO 1 9309 -cellosaurus:CVCL_B9KB Abcam A-549 IGF2BP2 KO 1 9310 -cellosaurus:CVCL_B9KC Abcam A-549 IGF2BP3 KO 1 9311 -cellosaurus:CVCL_B9KD Abcam A-549 IHH KO 1 9312 -cellosaurus:CVCL_B9KE Abcam A-549 IKBKE KO 1 9313 -cellosaurus:CVCL_B9KF Abcam A-549 IL12A KO 1 9314 -cellosaurus:CVCL_B9KG Abcam A-549 IL15 KO 1 9315 -cellosaurus:CVCL_B1FY Abcam A-549 IL15RA KO 1 1 9316 -cellosaurus:CVCL_B2NH Abcam A-549 IL15RA KO 2 1 9317 -cellosaurus:CVCL_B9KH Abcam A-549 IL17A KO 1 9318 -cellosaurus:CVCL_B9KI Abcam A-549 IL18 KO 1 9319 -cellosaurus:CVCL_B9KJ Abcam A-549 IL1A KO 1 9320 -cellosaurus:CVCL_B9KK Abcam A-549 IL1B KO 1 9321 -cellosaurus:CVCL_B9KL Abcam A-549 IL23A KO 1 9322 -cellosaurus:CVCL_B9KM Abcam A-549 IL23R KO 1 9323 -cellosaurus:CVCL_B9KN Abcam A-549 IL27 KO 1 9324 -cellosaurus:CVCL_B9KP Abcam A-549 IL2RB KO 1 9325 -cellosaurus:CVCL_B9KQ Abcam A-549 IL3RA KO 1 9326 -cellosaurus:CVCL_B1FZ Abcam A-549 IL6 KO 1 9327 -cellosaurus:CVCL_B9KR Abcam A-549 IL6R KO 1 9328 -cellosaurus:CVCL_B2NI Abcam A-549 IL6ST KO 1 9329 -cellosaurus:CVCL_B9KS Abcam A-549 IL7R KO 1 9330 -cellosaurus:CVCL_B9KT Abcam A-549 IL9 KO 1 9331 -cellosaurus:CVCL_B9KU Abcam A-549 INHBA KO 1 9332 -cellosaurus:CVCL_B9KV Abcam A-549 INPP5D KO 1 9333 -cellosaurus:CVCL_B9KW Abcam A-549 IQGAP1 KO 1 9334 -cellosaurus:CVCL_B9KX Abcam A-549 IRAK1 KO 1 9335 -cellosaurus:CVCL_B9KY Abcam A-549 IRAK4 KO 1 9336 -cellosaurus:CVCL_B1G0 Abcam A-549 IRF1 KO 1 9337 -cellosaurus:CVCL_B2NJ Abcam A-549 IRF2 KO 1 1 9338 -cellosaurus:CVCL_B1G1 Abcam A-549 IRF2 KO 2 1 9339 -cellosaurus:CVCL_B2NK Abcam A-549 IRF3 KO 1 1 9340 -cellosaurus:CVCL_B1G2 Abcam A-549 IRF3 KO 2 1 9341 -cellosaurus:CVCL_B9KZ Abcam A-549 IRF4 KO 1 9342 -cellosaurus:CVCL_B2NL Abcam A-549 IRF7 KO 1 1 9343 -cellosaurus:CVCL_B1G3 Abcam A-549 IRF7 KO 2 1 9344 -cellosaurus:CVCL_B2NM Abcam A-549 IRF9 KO 1 9345 -cellosaurus:CVCL_B1G4 Abcam A-549 ISM1 KO 1 1 9346 -cellosaurus:CVCL_B2NN Abcam A-549 ISM1 KO 2 1 9347 -cellosaurus:CVCL_B9L0 Abcam A-549 ITGA2 KO 1 9348 -cellosaurus:CVCL_B9L1 Abcam A-549 ITGAE KO 1 9349 -cellosaurus:CVCL_B9L2 Abcam A-549 ITGAL KO 1 9350 -cellosaurus:CVCL_B9L3 Abcam A-549 ITGAM KO 1 9351 -cellosaurus:CVCL_B9L4 Abcam A-549 ITGAV KO 1 9352 -cellosaurus:CVCL_B9L5 Abcam A-549 ITGAX KO 1 9353 -cellosaurus:CVCL_B9L6 Abcam A-549 ITGB1 KO 1 9354 -cellosaurus:CVCL_B9L7 Abcam A-549 ITK KO 1 9355 -cellosaurus:CVCL_B9L8 Abcam A-549 ITPR1 KO 1 9356 -cellosaurus:CVCL_B9L9 Abcam A-549 JAK1 KO 1 9357 -cellosaurus:CVCL_B1G5 Abcam A-549 JAK2 KO 1 9358 -cellosaurus:CVCL_B9LA Abcam A-549 JAK3 KO 1 9359 -cellosaurus:CVCL_B9LB Abcam A-549 JARID2 KO 1 9360 -cellosaurus:CVCL_B9LC Abcam A-549 KAT2A KO 1 9361 -cellosaurus:CVCL_B9LD Abcam A-549 KAT2B KO 1 9362 -cellosaurus:CVCL_B9LE Abcam A-549 KDM1A KO 1 9363 -cellosaurus:CVCL_B9LF Abcam A-549 KDM3A KO 1 9364 -cellosaurus:CVCL_B9LG Abcam A-549 KDM5A KO 1 9365 -cellosaurus:CVCL_B9LH Abcam A-549 KDM5B KO 1 9366 -cellosaurus:CVCL_B9LI Abcam A-549 KDM6A KO 1 9367 -cellosaurus:CVCL_B2NP Abcam A-549 KDM7A KO 1 1 9368 -cellosaurus:CVCL_B1G6 Abcam A-549 KDM7A KO 2 1 9369 -cellosaurus:CVCL_B9LJ Abcam A-549 KEAP1 KO 1 9370 -cellosaurus:CVCL_B9LK Abcam A-549 KIT KO 1 9371 -cellosaurus:CVCL_B9LL Abcam A-549 KITLG KO 1 9372 -cellosaurus:CVCL_B9LM Abcam A-549 KLF4 KO 1 9373 -cellosaurus:CVCL_B9LN Abcam A-549 KLRB1 KO 1 9374 -cellosaurus:CVCL_B9LP Abcam A-549 KLRC1 KO 1 9375 -cellosaurus:CVCL_B9LQ Abcam A-549 KMT2A KO 1 9376 -cellosaurus:CVCL_B9LR Abcam A-549 KMT2D KO 1 9377 -cellosaurus:CVCL_B9LS Abcam A-549 KRT1 KO 1 9378 -cellosaurus:CVCL_B2NQ Abcam A-549 KRT7 KO 1 9379 -cellosaurus:CVCL_B9LT Abcam A-549 LAMP1 KO 1 9380 -cellosaurus:CVCL_B1G7 Abcam A-549 LAMP3 KO 1 1 9381 -cellosaurus:CVCL_B2NR Abcam A-549 LAMP3 KO 2 1 9382 -cellosaurus:CVCL_B1G8 Abcam A-549 LAP3 KO 1 9383 -cellosaurus:CVCL_B9LU Abcam A-549 LATS1 KO 1 9384 -cellosaurus:CVCL_B9LV Abcam A-549 LATS2 KO 1 9385 -cellosaurus:CVCL_B9LW Abcam A-549 LCK KO 1 9386 -cellosaurus:CVCL_B9LX Abcam A-549 LGALS1 KO 1 9387 -cellosaurus:CVCL_B9LY Abcam A-549 LGALS3 KO 1 9388 -cellosaurus:CVCL_B2NS Abcam A-549 LGALS9 KO 1 9389 -cellosaurus:CVCL_B1G9 Abcam A-549 LGALS9C KO 1 9390 -cellosaurus:CVCL_B9LZ Abcam A-549 LGR5 KO 1 9391 -cellosaurus:CVCL_B9M0 Abcam A-549 LILRB1 KO 1 9392 -cellosaurus:CVCL_B2NT Abcam A-549 LILRB4 KO 1 9393 -cellosaurus:CVCL_B9M1 Abcam A-549 LIN28A KO 1 9394 -cellosaurus:CVCL_B9M2 Abcam A-549 LIN28B KO 1 9395 -cellosaurus:CVCL_B9M3 Abcam A-549 LMNA KO 1 9396 -cellosaurus:CVCL_B1GA Abcam A-549 LMO2 KO 1 9397 -cellosaurus:CVCL_B2NU Abcam A-549 LRRK2 KO 1 9398 -cellosaurus:CVCL_B9M4 Abcam A-549 LRP5 KO 1 9399 -cellosaurus:CVCL_B9M5 Abcam A-549 LYN KO 1 9400 -cellosaurus:CVCL_B9M6 Abcam A-549 MAF KO 1 9401 -cellosaurus:CVCL_B9M7 Abcam A-549 MALT1 KO 1 9402 -cellosaurus:CVCL_B9M8 Abcam A-549 MAP2K1 KO 1 9403 -cellosaurus:CVCL_B9M9 Abcam A-549 MAP2K2 KO 1 9404 -cellosaurus:CVCL_B9MA Abcam A-549 MAP2K4 KO 1 9405 -cellosaurus:CVCL_B1GB Abcam A-549 MAP2K7 KO 1 1 9406 -cellosaurus:CVCL_B2NV Abcam A-549 MAP2K7 KO 2 1 9407 -cellosaurus:CVCL_B1GC Abcam A-549 MAP3K11 KO 1 1 9408 -cellosaurus:CVCL_B2NW Abcam A-549 MAP3K11 KO 2 1 9409 -cellosaurus:CVCL_B9CQ Abcam A-549 MAP3K11 KO 3 1 9410 -cellosaurus:CVCL_B1GD Abcam A-549 MAP3K14 KO 1 9411 -cellosaurus:CVCL_B2NX Abcam A-549 MAP3K15 KO 1 1 9412 -cellosaurus:CVCL_B1GE Abcam A-549 MAP3K15 KO 2 1 9413 -cellosaurus:CVCL_B2NY Abcam A-549 MAP3K2 KO 1 1 9414 -cellosaurus:CVCL_B1GF Abcam A-549 MAP3K2 KO 2 1 9415 -cellosaurus:CVCL_B9MB Abcam A-549 MAP3K7 KO 1 9416 -cellosaurus:CVCL_B9MC Abcam A-549 MAPK1 KO 1 9417 -cellosaurus:CVCL_B9MD Abcam A-549 MAPK14 KO 1 9418 -cellosaurus:CVCL_B9ME Abcam A-549 MAPK3 KO 1 9419 -cellosaurus:CVCL_B9MF Abcam A-549 MAVS KO 1 9420 -cellosaurus:CVCL_B9MG Abcam A-549 MDC1 KO 1 9421 -cellosaurus:CVCL_B9MH Abcam A-549 MECOM KO 1 9422 -cellosaurus:CVCL_B9MI Abcam A-549 MECP2 KO 1 9423 -cellosaurus:CVCL_B9MJ Abcam A-549 MED12 KO 1 9424 -cellosaurus:CVCL_B9MK Abcam A-549 MEF2A KO 1 9425 -cellosaurus:CVCL_B9ML Abcam A-549 MEF2C KO 1 9426 -cellosaurus:CVCL_B9MM Abcam A-549 MEN1 KO 1 9427 -cellosaurus:CVCL_B9MN Abcam A-549 MET KO 1 9428 -cellosaurus:CVCL_B9MP Abcam A-549 MGMT KO 1 9429 -cellosaurus:CVCL_B9MQ Abcam A-549 MICA KO 1 9430 -cellosaurus:CVCL_B9MR Abcam A-549 MICB KO 1 9431 -cellosaurus:CVCL_B9MS Abcam A-549 MITF KO 1 9432 -cellosaurus:CVCL_B9MT Abcam A-549 MKI67 KO 1 9433 -cellosaurus:CVCL_B2NZ Abcam A-549 MLH1 KO 1 9434 -cellosaurus:CVCL_B9MU Abcam A-549 MMP1 KO 1 9435 -cellosaurus:CVCL_B9MV Abcam A-549 MMP12 KO 1 9436 -cellosaurus:CVCL_B9MW Abcam A-549 MMP2 KO 1 9437 -cellosaurus:CVCL_B9MX Abcam A-549 MMP9 KO 1 9438 -cellosaurus:CVCL_B9MY Abcam A-549 MPO KO 1 9439 -cellosaurus:CVCL_B9MZ Abcam A-549 MRC1 KO 1 9440 -cellosaurus:CVCL_B9N0 Abcam A-549 MSH2 KO 1 9441 -cellosaurus:CVCL_B9N1 Abcam A-549 MSH3 KO 1 9442 -cellosaurus:CVCL_B9N2 Abcam A-549 MSH6 KO 1 9443 -cellosaurus:CVCL_B9N3 Abcam A-549 MSLN KO 1 9444 -cellosaurus:CVCL_B9N4 Abcam A-549 MSR1 KO 1 9445 -cellosaurus:CVCL_B1GG Abcam A-549 MSX1 KO 1 1 9446 -cellosaurus:CVCL_B2P0 Abcam A-549 MSX1 KO 2 1 9447 -cellosaurus:CVCL_B9N5 Abcam A-549 MTA2 KO 1 9448 -cellosaurus:CVCL_B9N6 Abcam A-549 MUC1 KO 1 9449 -cellosaurus:CVCL_B9N7 Abcam A-549 MUC16 KO 1 9450 -cellosaurus:CVCL_B1GH Abcam A-549 MX1 KO 1 9451 -cellosaurus:CVCL_B2P1 Abcam A-549 MX2 KO 1 1 9452 -cellosaurus:CVCL_B1GI Abcam A-549 MX2 KO 2 1 9453 -cellosaurus:CVCL_B9N8 Abcam A-549 MYB KO 1 9454 -cellosaurus:CVCL_B9N9 Abcam A-549 MYD88 KO 1 9455 -cellosaurus:CVCL_B2P2 Abcam A-549 MYH2 KO 1 1 9456 -cellosaurus:CVCL_B1GJ Abcam A-549 MYH2 KO 2 1 9457 -cellosaurus:CVCL_B9NA Abcam A-549 MYOD1 KO 1 9458 -cellosaurus:CVCL_B9NB Abcam A-549 NANOG KO 1 9459 -cellosaurus:CVCL_B2P3 Abcam A-549 NBN KO 1 9460 -cellosaurus:CVCL_B9NC Abcam A-549 NCAM1 KO 1 9461 -cellosaurus:CVCL_B9ND Abcam A-549 NCAM2 KO 1 9462 -cellosaurus:CVCL_B9NE Abcam A-549 NCF4 KO 1 9463 -cellosaurus:CVCL_B9NF Abcam A-549 NCOA1 KO 1 9464 -cellosaurus:CVCL_B1GK Abcam A-549 NCOA7 KO 1 1 9465 -cellosaurus:CVCL_B2P4 Abcam A-549 NCOA7 KO 2 1 9466 -cellosaurus:CVCL_B9NG Abcam A-549 NCR1 KO 1 9467 -cellosaurus:CVCL_B9NH Abcam A-549 NECTIN2 KO 1 9468 -cellosaurus:CVCL_B9NI Abcam A-549 NECTIN3 KO 1 9469 -cellosaurus:CVCL_B9NJ Abcam A-549 NF1 KO 1 9470 -cellosaurus:CVCL_B9NK Abcam A-549 NF2 KO 1 9471 -cellosaurus:CVCL_B9NL Abcam A-549 NFATC1 KO 1 9472 -cellosaurus:CVCL_B9NM Abcam A-549 NFATC2 KO 1 9473 -cellosaurus:CVCL_B1GL Abcam A-549 NLRC5 KO 1 9474 -cellosaurus:CVCL_B2P5 Abcam A-549 NMI KO 1 9475 -cellosaurus:CVCL_B9NN Abcam A-549 NOS2 KO 1 9476 -cellosaurus:CVCL_B9NP Abcam A-549 NOTCH1 KO 1 9477 -cellosaurus:CVCL_B9NQ Abcam A-549 NOTCH2 KO 1 9478 -cellosaurus:CVCL_B1GM Abcam A-549 NR1H2 KO 1 9479 -cellosaurus:CVCL_B9NR Abcam A-549 NR1H3 KO 1 9480 -cellosaurus:CVCL_B2P6 Abcam A-549 NR3C1 KO 1 9481 -cellosaurus:CVCL_B9NS Abcam A-549 NR4A1 KO 1 9482 -cellosaurus:CVCL_B9NT Abcam A-549 NR4A3 KO 1 9483 -cellosaurus:CVCL_B9NU Abcam A-549 NRAS KO 1 9484 -cellosaurus:CVCL_B1GN Abcam A-549 NRP1 KO 1 9485 -cellosaurus:CVCL_B9NV Abcam A-549 NSD2 KO 1 9486 -cellosaurus:CVCL_B2P7 Abcam A-549 NT5C3A KO 1 1 9487 -cellosaurus:CVCL_B1GP Abcam A-549 NT5C3A KO 2 1 9488 -cellosaurus:CVCL_B9NW Abcam A-549 NTRK2 KO 1 9489 -cellosaurus:CVCL_B9NX Abcam A-549 NTRK3 KO 1 9490 -cellosaurus:CVCL_B9CR Abcam A-549 OAS1 KO 1 1 9491 -cellosaurus:CVCL_B2P8 Abcam A-549 OAS1 KO 2 1 9492 -cellosaurus:CVCL_B1GQ Abcam A-549 OAS2 KO 1 1 9493 -cellosaurus:CVCL_B2P9 Abcam A-549 OAS2 KO 2 1 9494 -cellosaurus:CVCL_B1GR Abcam A-549 OAS2 KO 3 1 9495 -cellosaurus:CVCL_B2PA Abcam A-549 OAS3 KO 1 9496 -cellosaurus:CVCL_B1GS Abcam A-549 OASL KO 1 1 9497 -cellosaurus:CVCL_B2PB Abcam A-549 OASL KO 2 1 9498 -cellosaurus:CVCL_B9NY Abcam A-549 OGT KO 1 9499 -cellosaurus:CVCL_B9NZ Abcam A-549 OLIG2 KO 1 9500 -cellosaurus:CVCL_B9P0 Abcam A-549 OPRM1 KO 1 9501 -cellosaurus:CVCL_B1GT Abcam A-549 OTOP3 KO 1 1 9502 -cellosaurus:CVCL_B2PC Abcam A-549 OTOP3 KO 2 1 9503 -cellosaurus:CVCL_B9P1 Abcam A-549 PADI4 KO 1 9504 -cellosaurus:CVCL_B9P2 Abcam A-549 PAK1 KO 1 9505 -cellosaurus:CVCL_B9P3 Abcam A-549 PAK2 KO 1 9506 -cellosaurus:CVCL_B9P4 Abcam A-549 PAK4 KO 1 9507 -cellosaurus:CVCL_B9P5 Abcam A-549 PALB2 KO 1 9508 -cellosaurus:CVCL_B9P6 Abcam A-549 PARP1 KO 1 9509 -cellosaurus:CVCL_B1GU Abcam A-549 PARP10 KO 1 1 9510 -cellosaurus:CVCL_B2PD Abcam A-549 PARP10 KO 2 1 9511 -cellosaurus:CVCL_B1GV Abcam A-549 PARP12 KO 1 9512 -cellosaurus:CVCL_B2PE Abcam A-549 PARP14 KO 1 1 9513 -cellosaurus:CVCL_B1GW Abcam A-549 PARP14 KO 2 1 9514 -cellosaurus:CVCL_B9P7 Abcam A-549 PARP3 KO 1 9515 -cellosaurus:CVCL_B2PF Abcam A-549 PARP9 KO 1 1 9516 -cellosaurus:CVCL_B1GX Abcam A-549 PARP9 KO 2 1 9517 -cellosaurus:CVCL_B9P8 Abcam A-549 PAX5 KO 1 9518 -cellosaurus:CVCL_B9P9 Abcam A-549 PAX6 KO 1 9519 -cellosaurus:CVCL_B9PA Abcam A-549 PAX7 KO 1 9520 -cellosaurus:CVCL_B9PB Abcam A-549 PAX8 KO 1 9521 -cellosaurus:CVCL_B9PC Abcam A-549 PBK KO 1 9522 -cellosaurus:CVCL_B9PD Abcam A-549 PBRM1 KO 1 9523 -cellosaurus:CVCL_B9PE Abcam A-549 PDCD1 KO 1 9524 -cellosaurus:CVCL_B2PG Abcam A-549 PDCD1LG2 KO 1 9525 -cellosaurus:CVCL_B9PF Abcam A-549 PDGFB KO 1 9526 -cellosaurus:CVCL_B9PG Abcam A-549 PDGFRA KO 1 9527 -cellosaurus:CVCL_B9PH Abcam A-549 PDGFRB KO 1 9528 -cellosaurus:CVCL_B9PI Abcam A-549 PDPN KO 1 9529 -cellosaurus:CVCL_B9PJ Abcam A-549 PEBP1 KO 1 9530 -cellosaurus:CVCL_B9PK Abcam A-549 PECAM1 KO 1 9531 -cellosaurus:CVCL_B9PL Abcam A-549 PER1 KO 1 9532 -cellosaurus:CVCL_B9PM Abcam A-549 PGF KO 1 9533 -cellosaurus:CVCL_B9PN Abcam A-549 PGR KO 1 9534 -cellosaurus:CVCL_B9PP Abcam A-549 PHF1 KO 1 9535 -cellosaurus:CVCL_B9PQ Abcam A-549 PHLPP1 KO 1 9536 -cellosaurus:CVCL_B9PR Abcam A-549 PIK3CA KO 1 9537 -cellosaurus:CVCL_B9PS Abcam A-549 PIK3R1 KO 1 9538 -cellosaurus:CVCL_B9PT Abcam A-549 PIK3R2 KO 1 9539 -cellosaurus:CVCL_B9PU Abcam A-549 PINK1 KO 1 9540 -cellosaurus:CVCL_B9PV Abcam A-549 PIWIL4 KO 1 9541 -cellosaurus:CVCL_B1GY Abcam A-549 PLAAT4 KO 1 1 9542 -cellosaurus:CVCL_B2PH Abcam A-549 PLAAT4 KO 2 1 9543 -cellosaurus:CVCL_B1GZ Abcam A-549 PLEKHA4 KO 1 1 9544 -cellosaurus:CVCL_B2PI Abcam A-549 PLEKHA4 KO 2 1 9545 -cellosaurus:CVCL_B1H0 Abcam A-549 PLSCR1 KO 1 1 9546 -cellosaurus:CVCL_B2PJ Abcam A-549 PLSCR1 KO 2 1 9547 -cellosaurus:CVCL_B1H1 Abcam A-549 PMAIP1 KO 1 1 9548 -cellosaurus:CVCL_B2PK Abcam A-549 PMAIP1 KO 2 1 9549 -cellosaurus:CVCL_B9PW Abcam A-549 PMEL KO 1 9550 -cellosaurus:CVCL_B9PX Abcam A-549 PML KO 1 1 9551 -cellosaurus:CVCL_B9PY Abcam A-549 PML KO 2 1 9552 -cellosaurus:CVCL_B9PZ Abcam A-549 PMS2 KO 1 9553 -cellosaurus:CVCL_B9Q0 Abcam A-549 POLQ KO 1 9554 -cellosaurus:CVCL_B9Q1 Abcam A-549 POLR2A KO 1 9555 -cellosaurus:CVCL_B9Q2 Abcam A-549 POU2F2 KO 1 9556 -cellosaurus:CVCL_B9Q3 Abcam A-549 POU5F1 KO 1 9557 -cellosaurus:CVCL_B9Q4 Abcam A-549 PPARA KO 1 9558 -cellosaurus:CVCL_B9Q5 Abcam A-549 PPARD KO 1 9559 -cellosaurus:CVCL_B9Q6 Abcam A-549 PPARG KO 1 9560 -cellosaurus:CVCL_B9Q7 Abcam A-549 PRDM1 KO 1 9561 -cellosaurus:CVCL_B9Q8 Abcam A-549 PRDM16 KO 1 9562 -cellosaurus:CVCL_B9Q9 Abcam A-549 PRF1 KO 1 9563 -cellosaurus:CVCL_B9QA Abcam A-549 PRKAA1 KO 1 9564 -cellosaurus:CVCL_B9QB Abcam A-549 PRKAA2 KO 1 9565 -cellosaurus:CVCL_B9QC Abcam A-549 PRKAR1A KO 1 9566 -cellosaurus:CVCL_B9QD Abcam A-549 PRKCA KO 1 9567 -cellosaurus:CVCL_B9QE Abcam A-549 PRKCB KO 1 9568 -cellosaurus:CVCL_B9QF Abcam A-549 PRKDC KO 1 9569 -cellosaurus:CVCL_B9QG Abcam A-549 PROCR KO 1 9570 -cellosaurus:CVCL_B9QH Abcam A-549 PROM1 KO 1 9571 -cellosaurus:CVCL_B9QI Abcam A-549 PROX1 KO 1 9572 -cellosaurus:CVCL_B1H2 Abcam A-549 PSMB8 KO 1 1 9573 -cellosaurus:CVCL_B2PL Abcam A-549 PSMB8 KO 2 1 9574 -cellosaurus:CVCL_B9QJ Abcam A-549 PTCH1 KO 1 9575 -cellosaurus:CVCL_B9QK Abcam A-549 PTCH2 KO 1 9576 -cellosaurus:CVCL_B9QL Abcam A-549 PTEN KO 1 9577 -cellosaurus:CVCL_B9QM Abcam A-549 PTGS1 KO 1 9578 -cellosaurus:CVCL_B1H3 Abcam A-549 PTGS2 KO 1 9579 -cellosaurus:CVCL_B9QN Abcam A-549 PTK6 KO 1 9580 -cellosaurus:CVCL_B9QP Abcam A-549 PTN KO 1 9581 -cellosaurus:CVCL_B9QQ Abcam A-549 PTPN1 KO 1 9582 -cellosaurus:CVCL_B9QR Abcam A-549 PTPN11 KO 1 9583 -cellosaurus:CVCL_B9QS Abcam A-549 PTPN2 KO 1 9584 -cellosaurus:CVCL_B9QT Abcam A-549 PTPN6 KO 1 9585 -cellosaurus:CVCL_B2PM Abcam A-549 PTPRK KO 1 1 9586 -cellosaurus:CVCL_B1H4 Abcam A-549 PTPRK KO 2 1 9587 -cellosaurus:CVCL_B2PN Abcam A-549 PVR KO 1 9588 -cellosaurus:CVCL_B1H5 Abcam A-549 PYHIN1 KO 1 1 9589 -cellosaurus:CVCL_B2PP Abcam A-549 PYHIN1 KO 2 1 9590 -cellosaurus:CVCL_B1H6 Abcam A-549 RAB10 KO 1 9591 -cellosaurus:CVCL_B2PQ Abcam A-549 RAB27A KO 1 9592 -cellosaurus:CVCL_B1H7 Abcam A-549 RAB29 KO 1 9593 -cellosaurus:CVCL_B9QU Abcam A-549 RAB8 KO 1 9594 -cellosaurus:CVCL_B9QV Abcam A-549 RAD50 KO 1 9595 -cellosaurus:CVCL_B9QW Abcam A-549 RAD51D KO 1 9596 -cellosaurus:CVCL_B9QX Abcam A-549 RAET1E KO 1 9597 -cellosaurus:CVCL_B9QY Abcam A-549 RAF1 KO 1 9598 -cellosaurus:CVCL_B9QZ Abcam A-549 RARB KO 1 9599 -cellosaurus:CVCL_B2PR Abcam A-549 RASGRP3 KO 1 1 9600 -cellosaurus:CVCL_B1H8 Abcam A-549 RASGRP3 KO 2 1 9601 -cellosaurus:CVCL_B9R0 Abcam A-549 RB1 KO 1 9602 -cellosaurus:CVCL_B9R1 Abcam A-549 RB1CC1 KO 1 9603 -cellosaurus:CVCL_B2PS Abcam A-549 REC8 KO 1 9604 -cellosaurus:CVCL_B9R2 Abcam A-549 REL KO 1 9605 -cellosaurus:CVCL_B9R3 Abcam A-549 RELA KO 1 9606 -cellosaurus:CVCL_B9R4 Abcam A-549 REST KO 1 9607 -cellosaurus:CVCL_B9R5 Abcam A-549 RET KO 1 9608 -cellosaurus:CVCL_B1H9 Abcam A-549 RICTOR KO 1 9609 -cellosaurus:CVCL_B2PT Abcam A-549 RNF19B KO 1 1 9610 -cellosaurus:CVCL_B1HA Abcam A-549 RNF19B KO 2 1 9611 -cellosaurus:CVCL_B9R6 Abcam A-549 RNF2 KO 1 9612 -cellosaurus:CVCL_B9R7 Abcam A-549 ROR1 KO 1 9613 -cellosaurus:CVCL_B9R8 Abcam A-549 RORC KO 1 9614 -cellosaurus:CVCL_B9R9 Abcam A-549 ROS1 KO 1 9615 -cellosaurus:CVCL_B9RA Abcam A-549 RPS6KA1 KO 1 9616 -cellosaurus:CVCL_B9RB Abcam A-549 RPS6KA3 KO 1 9617 -cellosaurus:CVCL_B2PU Abcam A-549 RSAD2 KO 1 9618 -cellosaurus:CVCL_B9RC Abcam A-549 RSF1 KO 1 9619 -cellosaurus:CVCL_B9RD Abcam A-549 RSPO2 KO 1 9620 -cellosaurus:CVCL_B1HB Abcam A-549 RTP4 KO 1 1 9621 -cellosaurus:CVCL_B2PV Abcam A-549 RTP4 KO 2 1 9622 -cellosaurus:CVCL_B9RE Abcam A-549 RUNX1 KO 1 9623 -cellosaurus:CVCL_B9RF Abcam A-549 RUNX3 KO 1 9624 -cellosaurus:CVCL_B1HC Abcam A-549 S100A4 KO 1 9625 -cellosaurus:CVCL_B9RG Abcam A-549 S100A8 KO 1 9626 -cellosaurus:CVCL_B2PW Abcam A-549 SAA1 KO 1 1 9627 -cellosaurus:CVCL_B1HD Abcam A-549 SAA1 KO 2 1 9628 -cellosaurus:CVCL_B9RH Abcam A-549 SALL4 KO 1 9629 -cellosaurus:CVCL_B2PX Abcam A-549 SAMD9 KO 1 1 9630 -cellosaurus:CVCL_B1HE Abcam A-549 SAMD9 KO 2 1 9631 -cellosaurus:CVCL_B2PY Abcam A-549 SAMD9L KO 1 1 9632 -cellosaurus:CVCL_B1HF Abcam A-549 SAMD9L KO 2 1 9633 -cellosaurus:CVCL_B9RI Abcam A-549 SAV1 KO 1 9634 -cellosaurus:CVCL_B2PZ Abcam A-549 SECTM1 KO 1 1 9635 -cellosaurus:CVCL_B1HG Abcam A-549 SECTM1 KO 2 1 9636 -cellosaurus:CVCL_B9RJ Abcam A-549 SEMA4D KO 1 9637 -cellosaurus:CVCL_B9RK Abcam A-549 SEMA7A KO 1 9638 -cellosaurus:CVCL_B9RL Abcam A-549 SENP1 KO 1 9639 -cellosaurus:CVCL_B9RM Abcam A-549 SERPINE1 KO 1 9640 -cellosaurus:CVCL_B2Q0 Abcam A-549 SERPING1 KO 1 1 9641 -cellosaurus:CVCL_B1HH Abcam A-549 SERPING1 KO 2 1 9642 -cellosaurus:CVCL_B9RN Abcam A-549 SETD7 KO 1 9643 -cellosaurus:CVCL_B2Q1 Abcam A-549 SFRP1 KO 1 9644 -cellosaurus:CVCL_B1HI Abcam A-549 SHFL KO 1 1 9645 -cellosaurus:CVCL_B2Q2 Abcam A-549 SHFL KO 2 1 9646 -cellosaurus:CVCL_B1HJ Abcam A-549 SIDT1 KO 1 1 9647 -cellosaurus:CVCL_B2Q3 Abcam A-549 SIDT1 KO 2 1 9648 -cellosaurus:CVCL_B9RP Abcam A-549 SIRPA KO 1 9649 -cellosaurus:CVCL_B9RQ Abcam A-549 SIRT1 KO 1 9650 -cellosaurus:CVCL_B9RR Abcam A-549 SIRT2 KO 1 9651 -cellosaurus:CVCL_B9RS Abcam A-549 SIRT3 KO 1 9652 -cellosaurus:CVCL_B9RT Abcam A-549 SIRT4 KO 1 9653 -cellosaurus:CVCL_B9RU Abcam A-549 SIRT5 KO 1 9654 -cellosaurus:CVCL_B9RV Abcam A-549 SIRT6 KO 1 9655 -cellosaurus:CVCL_B9RW Abcam A-549 SIRT7 KO 1 9656 -cellosaurus:CVCL_B9RX Abcam A-549 SLAMF1 KO 1 9657 -cellosaurus:CVCL_B1HK Abcam A-549 SLC15A3 KO 1 9658 -cellosaurus:CVCL_B2Q4 Abcam A-549 SLC25A28 KO 1 1 9659 -cellosaurus:CVCL_B1HL Abcam A-549 SLC25A28 KO 2 1 9660 -cellosaurus:CVCL_B2Q5 Abcam A-549 SLC2A1 KO 1 9661 -cellosaurus:CVCL_B9RY Abcam A-549 SMAD1 KO 1 9662 -cellosaurus:CVCL_B9RZ Abcam A-549 SMAD2 KO 1 9663 -cellosaurus:CVCL_B1HM Abcam A-549 SMAD3 KO 1 1 9664 -cellosaurus:CVCL_B2Q6 Abcam A-549 SMAD3 KO 2 1 9665 -cellosaurus:CVCL_B9S0 Abcam A-549 SMAD4 KO 1 9666 -cellosaurus:CVCL_B9S1 Abcam A-549 SMAD5 KO 1 9667 -cellosaurus:CVCL_B1HN Abcam A-549 SMAD6 KO 1 9668 -cellosaurus:CVCL_B9S2 Abcam A-549 SMAD7 KO 1 9669 -cellosaurus:CVCL_B9S3 Abcam A-549 SMARCA1 KO 1 9670 -cellosaurus:CVCL_B9S4 Abcam A-549 SMARCA2 KO 1 9671 -cellosaurus:CVCL_B9S5 Abcam A-549 SMARCA4 KO 1 9672 -cellosaurus:CVCL_B9S6 Abcam A-549 SMARCC1 KO 1 9673 -cellosaurus:CVCL_B9S7 Abcam A-549 SMARCD3 KO 1 9674 -cellosaurus:CVCL_B9S8 Abcam A-549 SMO KO 1 9675 -cellosaurus:CVCL_B9S9 Abcam A-549 SNAI1 KO 1 9676 -cellosaurus:CVCL_B9SA Abcam A-549 SNAI2 KO 1 9677 -cellosaurus:CVCL_B2Q7 Abcam A-549 SOCS1 KO 1 9678 -cellosaurus:CVCL_B9SB Abcam A-549 SOS1 KO 1 9679 -cellosaurus:CVCL_B9SC Abcam A-549 SOX10 KO 1 9680 -cellosaurus:CVCL_B9SD Abcam A-549 SOX11 KO 1 9681 -cellosaurus:CVCL_B9SE Abcam A-549 SOX17 KO 1 9682 -cellosaurus:CVCL_B9SF Abcam A-549 SOX2 KO 1 9683 -cellosaurus:CVCL_B9SG Abcam A-549 SOX6 KO 1 9684 -cellosaurus:CVCL_B9SH Abcam A-549 SP1 KO 1 9685 -cellosaurus:CVCL_B1HP Abcam A-549 SP100 KO 1 9686 -cellosaurus:CVCL_B2Q8 Abcam A-549 SP110 KO 1 9687 -cellosaurus:CVCL_B1HQ Abcam A-549 SP140 KO 1 1 9688 -cellosaurus:CVCL_B2Q9 Abcam A-549 SP140 KO 2 1 9689 -cellosaurus:CVCL_B9SI Abcam A-549 SPI1 KO 1 9690 -cellosaurus:CVCL_B1HR Abcam A-549 SPINK1 KO 1 1 9691 -cellosaurus:CVCL_B2QA Abcam A-549 SPINK1 KO 2 1 9692 -cellosaurus:CVCL_B1HS Abcam A-549 SPINK1 KO 3 1 9693 -cellosaurus:CVCL_B9SJ Abcam A-549 SPN KO 1 9694 -cellosaurus:CVCL_B9SK Abcam A-549 SPP1 KO 1 9695 -cellosaurus:CVCL_B9SL Abcam A-549 SRC KO 1 9696 -cellosaurus:CVCL_B9SM Abcam A-549 SREBF1 KO 1 9697 -cellosaurus:CVCL_B9SN Abcam A-549 SREBF2 KO 1 9698 -cellosaurus:CVCL_B9SP Abcam A-549 SS18 KO 1 9699 -cellosaurus:CVCL_B9SQ Abcam A-549 STAG2 KO 1 9700 -cellosaurus:CVCL_B2QB Abcam A-549 STAT2 KO 1 1 9701 -cellosaurus:CVCL_B1HT Abcam A-549 STAT2 KO 2 1 9702 -cellosaurus:CVCL_B2QC Abcam A-549 STAT2 KO 3 1 9703 -cellosaurus:CVCL_B9SR Abcam A-549 STAT3 KO 1 9704 -cellosaurus:CVCL_B9SS Abcam A-549 STAT5B KO 1 9705 -cellosaurus:CVCL_B9ST Abcam A-549 STAT6 KO 1 9706 -cellosaurus:CVCL_B9SU Abcam A-549 STK11 KO 1 9707 -cellosaurus:CVCL_B9SV Abcam A-549 SUFU KO 1 9708 -cellosaurus:CVCL_B9SW Abcam A-549 SYK KO 1 9709 -cellosaurus:CVCL_B1HU Abcam A-549 SYN1 KO 1 9710 -cellosaurus:CVCL_B9SX Abcam A-549 TACSTD2 KO 1 9711 -cellosaurus:CVCL_B9SY Abcam A-549 TAFAZZIN KO 1 9712 -cellosaurus:CVCL_B2QD Abcam A-549 TAP2 KO 1 9713 -cellosaurus:CVCL_B9SZ Abcam A-549 TBX21 KO 1 9714 -cellosaurus:CVCL_B9T0 Abcam A-549 TDO2 KO 1 9715 -cellosaurus:CVCL_B1HV Abcam A-549 TDRD7 KO 1 1 9716 -cellosaurus:CVCL_B2QE Abcam A-549 TDRD7 KO 2 1 9717 -cellosaurus:CVCL_B1HW Abcam A-549 TEAD1 KO 1 9718 -cellosaurus:CVCL_B2QF Abcam A-549 TEAD2 KO 1 9719 -cellosaurus:CVCL_B1HX Abcam A-549 TEAD4 KO 1 9720 -cellosaurus:CVCL_B9T1 Abcam A-549 TEK KO 1 9721 -cellosaurus:CVCL_B2QG Abcam A-549 TENT5A KO 1 1 9722 -cellosaurus:CVCL_B1HY Abcam A-549 TENT5A KO 2 1 9723 -cellosaurus:CVCL_B9T2 Abcam A-549 TERT KO 1 9724 -cellosaurus:CVCL_B9T3 Abcam A-549 TET1 KO 1 9725 -cellosaurus:CVCL_B9T4 Abcam A-549 TET2 KO 1 9726 -cellosaurus:CVCL_B9T5 Abcam A-549 TET3 KO 1 9727 -cellosaurus:CVCL_B9T6 Abcam A-549 TFAP2A KO 1 9728 -cellosaurus:CVCL_B2QH Abcam A-549 TGFB1 KO 1 9729 -cellosaurus:CVCL_B1HZ Abcam A-549 TGFBR1 KO 1 9730 -cellosaurus:CVCL_B2QI Abcam A-549 TGFBR2 KO 1 1 9731 -cellosaurus:CVCL_B9CS Abcam A-549 TGFBR2 KO 2 1 9732 -cellosaurus:CVCL_B9T7 Abcam A-549 TGFBR3 KO 1 9733 -cellosaurus:CVCL_B1I0 Abcam A-549 TGM2 KO 1 1 9734 -cellosaurus:CVCL_B2QJ Abcam A-549 TGM2 KO 2 1 9735 -cellosaurus:CVCL_B1I1 Abcam A-549 TGOLN2 KO 1 9736 -cellosaurus:CVCL_B9T8 Abcam A-549 THBD KO 1 9737 -cellosaurus:CVCL_B2QK Abcam A-549 THEMIS2 KO 1 1 9738 -cellosaurus:CVCL_B1I2 Abcam A-549 THEMIS2 KO 2 1 9739 -cellosaurus:CVCL_B9T9 Abcam A-549 TIA1 KO 1 9740 -cellosaurus:CVCL_B2QL Abcam A-549 TLDC2 KO 1 1 9741 -cellosaurus:CVCL_B1I3 Abcam A-549 TLDC2 KO 2 1 9742 -cellosaurus:CVCL_B9TA Abcam A-549 TLR1 KO 1 9743 -cellosaurus:CVCL_B9TB Abcam A-549 TLR2 KO 1 9744 -cellosaurus:CVCL_B9TC Abcam A-549 TLR3 KO 1 9745 -cellosaurus:CVCL_B9TD Abcam A-549 TLR4 KO 1 9746 -cellosaurus:CVCL_B9TE Abcam A-549 TLR6 KO 1 9747 -cellosaurus:CVCL_B9TF Abcam A-549 TLR7 KO 1 9748 -cellosaurus:CVCL_B2QM Abcam A-549 TMEM106B KO 1 9749 -cellosaurus:CVCL_B1I4 Abcam A-549 TMEM140 KO 1 1 9750 -cellosaurus:CVCL_B2QN Abcam A-549 TMEM140 KO 2 1 9751 -cellosaurus:CVCL_B9TG Abcam A-549 TMEM173 KO 1 9752 -cellosaurus:CVCL_B1I5 Abcam A-549 TMEM64 KO 1 1 9753 -cellosaurus:CVCL_B2QP Abcam A-549 TMEM64 KO 2 1 9754 -cellosaurus:CVCL_B1I6 Abcam A-549 TNFAIP3 KO 1 1 9755 -cellosaurus:CVCL_B2QQ Abcam A-549 TNFAIP3 KO 2 1 9756 -cellosaurus:CVCL_B9TH Abcam A-549 TNFRSF17 KO 1 9757 -cellosaurus:CVCL_B9TI Abcam A-549 TNFRSF18 KO 1 9758 -cellosaurus:CVCL_B9TJ Abcam A-549 TNFRSF4 KO 1 9759 -cellosaurus:CVCL_B9TK Abcam A-549 TNFRSF8 KO 1 9760 -cellosaurus:CVCL_B1I7 Abcam A-549 TNFSF10 KO 1 9761 -cellosaurus:CVCL_B9TL Abcam A-549 TNFRSF9 KO 1 9762 -cellosaurus:CVCL_B9TM Abcam A-549 TNFSF11 KO 1 9763 -cellosaurus:CVCL_B2QR Abcam A-549 TP53 KO 1 9764 -cellosaurus:CVCL_B9TN Abcam A-549 TP53BP1 KO 1 9765 -cellosaurus:CVCL_B9TP Abcam A-549 TP63 KO 1 9766 -cellosaurus:CVCL_B9TQ Abcam A-549 TRAF1 KO 1 9767 -cellosaurus:CVCL_B1I8 Abcam A-549 TRANK1 KO 1 1 9768 -cellosaurus:CVCL_B2QS Abcam A-549 TRANK1 KO 2 1 9769 -cellosaurus:CVCL_B1I9 Abcam A-549 TREX1 KO 1 9770 -cellosaurus:CVCL_B2QT Abcam A-549 TRIM14 KO 1 1 9771 -cellosaurus:CVCL_B1IA Abcam A-549 TRIM14 KO 2 1 9772 -cellosaurus:CVCL_B2QU Abcam A-549 TRIM21 KO 1 1 9773 -cellosaurus:CVCL_B1IB Abcam A-549 TRIM21 KO 2 1 9774 -cellosaurus:CVCL_B2QV Abcam A-549 TRIM22 KO 1 9775 -cellosaurus:CVCL_B9TR Abcam A-549 TRIM24 KO 1 9776 -cellosaurus:CVCL_B9TS Abcam A-549 TRIM28 KO 1 9777 -cellosaurus:CVCL_B9TT Abcam A-549 TRIM33 KO 1 9778 -cellosaurus:CVCL_B1IC Abcam A-549 TRIM34 KO 1 1 9779 -cellosaurus:CVCL_B2QW Abcam A-549 TRIM34 KO 2 1 9780 -cellosaurus:CVCL_B1ID Abcam A-549 TRIM38 KO 1 1 9781 -cellosaurus:CVCL_B2QX Abcam A-549 TRIM38 KO 2 1 9782 -cellosaurus:CVCL_B1IE Abcam A-549 TRIM56 KO 1 1 9783 -cellosaurus:CVCL_B2QY Abcam A-549 TRIM56 KO 2 1 9784 -cellosaurus:CVCL_B9TU Abcam A-549 TSC1 KO 1 9785 -cellosaurus:CVCL_B9TV Abcam A-549 TSC2 KO 1 9786 -cellosaurus:CVCL_B9TW Abcam A-549 UBB KO 1 9787 -cellosaurus:CVCL_B9TX Abcam A-549 UHRF1 KO 1 9788 -cellosaurus:CVCL_B9TY Abcam A-549 ULK1 KO 1 9789 -cellosaurus:CVCL_B1IF Abcam A-549 USP18 KO 1 1 9790 -cellosaurus:CVCL_B2QZ Abcam A-549 USP18 KO 2 1 9791 -cellosaurus:CVCL_B9TZ Abcam A-549 USP22 KO 1 9792 -cellosaurus:CVCL_B9U0 Abcam A-549 USP8 KO 1 9793 -cellosaurus:CVCL_B1IG Abcam A-549 VCAM1 KO 1 9794 -cellosaurus:CVCL_B9U1 Abcam A-549 VDR KO 1 9795 -cellosaurus:CVCL_B9U2 Abcam A-549 VEGFA KO 1 9796 -cellosaurus:CVCL_B9U3 Abcam A-549 VEGFC KO 1 9797 -cellosaurus:CVCL_B9U4 Abcam A-549 VIM KO 1 9798 -cellosaurus:CVCL_B9U5 Abcam A-549 VSIR KO 1 9799 -cellosaurus:CVCL_B9U6 Abcam A-549 VTCN1 KO 1 9800 -cellosaurus:CVCL_B9U7 Abcam A-549 WIF1 KO 1 9801 -cellosaurus:CVCL_B9U8 Abcam A-549 WNT3A KO 1 9802 -cellosaurus:CVCL_B9U9 Abcam A-549 WNT5A KO 1 9803 -cellosaurus:CVCL_B9UA Abcam A-549 WRN KO 1 9804 -cellosaurus:CVCL_B9UB Abcam A-549 WT1 KO 1 9805 -cellosaurus:CVCL_B9UC Abcam A-549 WWTR1 KO 1 9806 -cellosaurus:CVCL_B9UD Abcam A-549 XIAP KO 1 9807 -cellosaurus:CVCL_B9UE Abcam A-549 XPC KO 1 9808 -cellosaurus:CVCL_B7VL Abcam A-549 XPO1 KO 1 9809 -cellosaurus:CVCL_B9UF Abcam A-549 YTHDF2 KO 1 9810 -cellosaurus:CVCL_B9UG Abcam A-549 YWHAB KO 1 9811 -cellosaurus:CVCL_B9UH Abcam A-549 YWHAQ KO 1 9812 -cellosaurus:CVCL_B9UI Abcam A-549 ZBTB16 KO 1 9813 -cellosaurus:CVCL_B2R0 Abcam A-549 ZC3HAV1 KO 1 1 9814 -cellosaurus:CVCL_B1IH Abcam A-549 ZC3HAV1 KO 2 1 9815 -cellosaurus:CVCL_B2R1 Abcam A-549 ZCCHC2 KO 1 1 9816 -cellosaurus:CVCL_B1II Abcam A-549 ZCCHC2 KO 2 1 9817 -cellosaurus:CVCL_B9UJ Abcam A-549 ZEB1 KO 1 9818 -cellosaurus:CVCL_U656 AE1-2a 1 9819 -cellosaurus:CVCL_U662 601 2 9820 -cellosaurus:CVCL_E066 633 2 9821 -cellosaurus:CVCL_8470 AE1201 1 9822 -cellosaurus:CVCL_KV97 InCELL Hunter A549 EP300 Bromodomain 1 9823 -cellosaurus:CVCL_KV98 InCELL Hunter A549 G9a Methyltransferase 1 9824 -cellosaurus:CVCL_KV99 InCELL Hunter A549 GLP Methyltransferase 1 9825 -cellosaurus:CVCL_KW00 InCELL Hunter A549 PRMT3 Methyltransferase 1 9826 -cellosaurus:CVCL_5992 JHU-028 1 9827 -cellosaurus:CVCL_W340 K209 1 9828 -cellosaurus:CVCL_ZI99 LanthaScreen ATF2 (19-106) A549 1 9829 -cellosaurus:CVCL_YJ75 LINTERNA A549 1 9830 -cellosaurus:CVCL_A9P0 NF-KappaB reporter (Luc)-A549 1 9831 -cellosaurus:CVCL_5J44 p53-RE-luc/A549 1 9832 -cellosaurus:CVCL_KW16 PathHunter A549 IkappaB Degradation 1 9833 -cellosaurus:CVCL_TZ89 SL0003 1 9834 -cellosaurus:CVCL_TZ90 SL0006 1 9835 -cellosaurus:CVCL_8389 OCUM-8 0 9836 -cellosaurus:CVCL_IG91 OCUM-8/5-FU 1 9837 -cellosaurus:CVCL_II63 OCUM-8/GEM 1 9838 -cellosaurus:CVCL_IL00 OCUM-8/OXA 1 9839 -cellosaurus:CVCL_IP78 OCUM-8/PTX 1 9840 -cellosaurus:CVCL_IV66 OCUM-8/SN38 1 9841 -cellosaurus:CVCL_1723 SW1990 0 9842 -cellosaurus:CVCL_ZW95 SW1990-GZ 1 9843 -cellosaurus:CVCL_ZW96 SW1990/ADM 1 9844 -cellosaurus:CVCL_ZW97 SW1990/FU 1 9845 -cellosaurus:CVCL_ZW98 SW1990/GEM 1 9846 -cellosaurus:CVCL_WS12 SW1990/GZ 1 9847 -cellosaurus:CVCL_M657 HF-4b 0 9848 -cellosaurus:CVCL_M664 HF-4.9 1 9849 -cellosaurus:CVCL_6891 CoC1 0 9850 -cellosaurus:CVCL_6892 CoC1/DDP 1 9851 -cellosaurus:CVCL_1060 A-253 0 9852 -cellosaurus:CVCL_A2EP A-253 clone B2 1 9853 -cellosaurus:CVCL_A2EQ A-253 clone B4 1 9854 -cellosaurus:CVCL_A2ER A-253 clone B9 1 9855 -cellosaurus:CVCL_A2ES A-253 clone D3 1 9856 -cellosaurus:CVCL_A2ET A-253 clone F11 1 9857 -cellosaurus:CVCL_1402 Mel Ho 0 9858 -cellosaurus:CVCL_RQ53 MelHOrCDDP1000 1 9859 -cellosaurus:CVCL_RQ54 MelHOrDACARB20 1 9860 -cellosaurus:CVCL_RQ51 MelHOrNutlin20muM 1 9861 -cellosaurus:CVCL_RQ55 MelHOrPLX4032_10muM 1 9862 -cellosaurus:CVCL_RS67 MelHOrPLX4720_10muM 1 9863 -cellosaurus:CVCL_RQ52 MelHOrVCR20 1 9864 -cellosaurus:CVCL_Y585 RhRKM-P4 0 9865 -cellosaurus:CVCL_Y586 RhRKM-T4 1 9866 -cellosaurus:CVCL_8286 AML14 [Human leukemia] 0 9867 -cellosaurus:CVCL_0141 AML14.3D10 1 9868 -cellosaurus:CVCL_6337 AML14.3D10/CCCKR3 Clone 16 2 9869 -cellosaurus:CVCL_ZC59 AML14.eos 1 9870 -cellosaurus:CVCL_D785 JoN 0 9871 -cellosaurus:CVCL_D786 JoN HDF 1 9872 -cellosaurus:CVCL_D787 JoN LDF 1 9873 -cellosaurus:CVCL_L293 CNDT2 0 9874 -cellosaurus:CVCL_L294 CNDT2.5 1 9875 -cellosaurus:CVCL_1097 C32 [Human melanoma] 0 9876 -cellosaurus:CVCL_2324 C32TG 1 9877 -cellosaurus:CVCL_M255 HuCC-A1 0 9878 -cellosaurus:CVCL_HF36 HuCC-A1Nu 1 9879 -cellosaurus:CVCL_2T27 GaL23 0 9880 -cellosaurus:CVCL_2T28 GaL23LZ 1 9881 -cellosaurus:CVCL_3008 LC-1/sq 0 9882 -cellosaurus:CVCL_5480 LC-1/sq-SF 1 9883 -cellosaurus:CVCL_1372 LC-1F 1 9884 -cellosaurus:CVCL_HE42 INT-MEL-8 0 9885 -cellosaurus:CVCL_C677 Me3046/2 1 9886 -cellosaurus:CVCL_D591 RWLeu-4 0 9887 -cellosaurus:CVCL_D592 JMRD3 1 9888 -cellosaurus:CVCL_F690 K-T1 0 9889 -cellosaurus:CVCL_RL82 K-T1a 1 9890 -cellosaurus:CVCL_2500 HMT-3522 S2 0 9891 -cellosaurus:CVCL_2501 HMT-3522 T4-2 1 9892 -cellosaurus:CVCL_C1ME ALL-VG 0 9893 -cellosaurus:CVCL_C1MF ALL-VG TKI-resistant 1 9894 -cellosaurus:CVCL_D656 USC-HN1 0 9895 -cellosaurus:CVCL_LG26 USC-HN1-GFP 1 9896 -cellosaurus:CVCL_LG27 USC-HN1-GFP-G1 2 9897 -cellosaurus:CVCL_LG28 USC-HN1-GFP-G2 3 9898 -cellosaurus:CVCL_1279 HGC-27 0 9899 -cellosaurus:CVCL_XB28 HGC27-EGFP 1 9900 -cellosaurus:CVCL_XD65 HGC27-mCherry-2 1 9901 -cellosaurus:CVCL_XB29 HGC27-tdT 1 9902 -cellosaurus:CVCL_WL67 HXEX-ALL1 0 9903 -cellosaurus:CVCL_B7A7 HXEX-ALL1/HDR 1 9904 -cellosaurus:CVCL_1771 TGW 0 9905 -cellosaurus:CVCL_3180 TGW.P3 1 9906 -cellosaurus:CVCL_A443 TNB1 1 9907 -cellosaurus:CVCL_1451 NCC-IT 0 9908 -cellosaurus:CVCL_3045 NCC-IT-A3 1 9909 -cellosaurus:CVCL_C0QL NCCIT-R 1 9910 -cellosaurus:CVCL_XI44 NCCIT_CDDP 1 9911 -cellosaurus:CVCL_RW29 NTUB1 0 9912 -cellosaurus:CVCL_RW30 NTUB1/As 1 9913 -cellosaurus:CVCL_RW31 NTUB1/P[14] 1 9914 -cellosaurus:CVCL_UN52 NTUB1/P[3] 1 9915 -cellosaurus:CVCL_UN53 NTUB1/P[9] 1 9916 -cellosaurus:CVCL_0326 Hep 3B2.1-7 0 9917 -cellosaurus:CVCL_B6FG F6D2 1 9918 -cellosaurus:CVCL_XE51 Hep3b-Cas9-741 1 9919 -cellosaurus:CVCL_XE52 Hep3b-Cas9-742 1 9920 -cellosaurus:CVCL_XE53 Hep3b-Cas9-743 1 9921 -cellosaurus:CVCL_XE54 Hep3b-Cas9-744 1 9922 -cellosaurus:CVCL_XE55 Hep3b-Cas9-745 1 9923 -cellosaurus:CVCL_DI39 Hep3BLAP-I 1 9924 -cellosaurus:CVCL_DI40 Hep3BLAP-II 1 9925 -cellosaurus:CVCL_DI41 Hep3BLIP-I 1 9926 -cellosaurus:CVCL_DI42 Hep3BLIP-II 1 9927 -cellosaurus:CVCL_W815 REPC 1 9928 -cellosaurus:CVCL_0394 LN-308 0 9929 -cellosaurus:CVCL_3539 LNZTA3WT11 1 9930 -cellosaurus:CVCL_3540 LNZTA3WT4 1 9931 -cellosaurus:CVCL_2873 CCK-81 0 9932 -cellosaurus:CVCL_A2BT CCK-81 R1 Cetux 1 9933 -cellosaurus:CVCL_A2BU CCK-81 R2 Cetux 1 9934 -cellosaurus:CVCL_A2BV CCK-81 R3 Cetux 1 9935 -cellosaurus:CVCL_1417 MKN7 0 9936 -cellosaurus:CVCL_4Y05 MKN7/CMV-Luc 1 9937 -cellosaurus:CVCL_1690 SF295 0 9938 -cellosaurus:CVCL_LB68 SF295 MX10 1 9939 -cellosaurus:CVCL_WV57 SF295/BN50 1 9940 -cellosaurus:CVCL_WV58 SF295/hCPT50 1 9941 -cellosaurus:CVCL_0041 Rh30 0 9942 -cellosaurus:CVCL_RR39 Rh30rVCR10 1 9943 -cellosaurus:CVCL_C1D0 SJCRH30 POLG Y955C 1 9944 -cellosaurus:CVCL_1137 COLO 829 0 9945 -cellosaurus:CVCL_IW11 Colo829/R 1 9946 -cellosaurus:CVCL_VQ70 RCC-26 0 9947 -cellosaurus:CVCL_C3HQ RCC-26/CD80 1 9948 -cellosaurus:CVCL_C3HM RCC-26/CD80/IL-2 1 9949 -cellosaurus:CVCL_C3HN RCC-26/CD80/IL-7 1 9950 -cellosaurus:CVCL_1591 NCI-H82 0 9951 -cellosaurus:CVCL_RS66 H82R 1 9952 -cellosaurus:CVCL_WM70 NCI-H82-A 1 9953 -cellosaurus:CVCL_W138 HeRo [Human glioblastoma] 0 9954 -cellosaurus:CVCL_W139 HeRo-SV 1 9955 -cellosaurus:CVCL_0132 A-375 0 9956 -cellosaurus:CVCL_6546 4-1.10 1 9957 -cellosaurus:CVCL_UD29 A-375 KRAS p.G13D 1 9958 -cellosaurus:CVCL_UR34 A-375 KRAS p.G13D-Luc2 2 9959 -cellosaurus:CVCL_UD28 A-375 MEK1 p.Q56P 1 9960 -cellosaurus:CVCL_JF22 A-375 NRAS p.Q61K 1 9961 -cellosaurus:CVCL_VR65 A-375 NRAS p.Q61K-Luc2 2 9962 -cellosaurus:CVCL_LC86 A375 NRAS (Q61K/+/+) 1 9963 -cellosaurus:CVCL_C3D8 A375 NY-ESO-1 Knockout 1 9964 -cellosaurus:CVCL_C3DA A375 NY-ESO-1 High 2 9965 -cellosaurus:CVCL_C3D9 A375 NY-ESO-1 Low 2 9966 -cellosaurus:CVCL_C0Q6 A375 PLX/AZD-resistant 1 9967 -cellosaurus:CVCL_C3EX A375 Safe Harbor Landing Pad 1 9968 -cellosaurus:CVCL_2294 A375-C5 1 9969 -cellosaurus:CVCL_2295 A375-C6 1 9970 -cellosaurus:CVCL_QZ67 A375-eGFP-Puro 1 9971 -cellosaurus:CVCL_QZ68 A375-Fluc-Neo/eGFP-Puro 1 9972 -cellosaurus:CVCL_QZ69 A375-Fluc-Neo/hNIS-Puro 1 9973 -cellosaurus:CVCL_QZ70 A375-Fluc-Puro 1 9974 -cellosaurus:CVCL_QZ71 A375-hNIS-Neo/eGFP-Puro 1 9975 -cellosaurus:CVCL_QZ72 A375-hNIS-Puro 1 9976 -cellosaurus:CVCL_QZ73 A375-iRFP-Neo 1 9977 -cellosaurus:CVCL_QZ74 A375-iRFP-Neo/Fluc-Puro 1 9978 -cellosaurus:CVCL_QZ75 A375-iRFP-Neo/hNIS-Puro 1 9979 -cellosaurus:CVCL_B7NR A375-Luc-RFP 1 9980 -cellosaurus:CVCL_UR32 A375-Luc2 1 9981 -cellosaurus:CVCL_B222 A375-M 1 9982 -cellosaurus:CVCL_X494 A375-MA1 1 9983 -cellosaurus:CVCL_X495 A375-MA2 2 9984 -cellosaurus:CVCL_6233 A375-P 1 9985 -cellosaurus:CVCL_C0RN A375M1 2 9986 -cellosaurus:CVCL_C0RP A375M2 3 9987 -cellosaurus:CVCL_RN37 A375P-5 2 9988 -cellosaurus:CVCL_5F66 A375P-beta6/puro 2 9989 -cellosaurus:CVCL_6234 A375-R 1 9990 -cellosaurus:CVCL_A2CR A375-R1 1 9991 -cellosaurus:CVCL_A1VP A375-RMR 1 9992 -cellosaurus:CVCL_B3PJ A375 RMR SCH 0.25 2 9993 -cellosaurus:CVCL_5649 A375-SM 1 9994 -cellosaurus:CVCL_AP96 A375-VR [2014] 1 9995 -cellosaurus:CVCL_AQ00 A375-VR [2015] 1 9996 -cellosaurus:CVCL_0136 A375.S2 1 9997 -cellosaurus:CVCL_IW10 A375/R 1 9998 -cellosaurus:CVCL_R745 A375PF11 1 9999 -cellosaurus:CVCL_R746 A375-12R5-1 2 10000 -cellosaurus:CVCL_R747 A375-12R5-3 2 10001 -cellosaurus:CVCL_R748 A375-12R5-5 2 10002 -cellosaurus:CVCL_R749 A375-12R8-1 2 10003 -cellosaurus:CVCL_R750 A375-12R8-3 2 10004 -cellosaurus:CVCL_R751 A375-16R5-2 2 10005 -cellosaurus:CVCL_R752 A375-16R5-5 2 10006 -cellosaurus:CVCL_R753 A375-16R6-2 2 10007 -cellosaurus:CVCL_R754 A375-16R6-3 2 10008 -cellosaurus:CVCL_R755 A375-16R6-4 2 10009 -cellosaurus:CVCL_Y439 A375S1 1 10010 -cellosaurus:CVCL_XE59 A375sci 1 10011 -cellosaurus:CVCL_B0ZF Abcam A-375 IL13RA2 KO 1 10012 -cellosaurus:CVCL_B7V4 Abcam A-375 NT5E KO 1 10013 -cellosaurus:CVCL_KS59 CellSensor AP1-bla A375 1 10014 -cellosaurus:CVCL_KS16 CellSensor SBE-bla A375 1 10015 -cellosaurus:CVCL_6286 DRO 1 10016 -cellosaurus:CVCL_ZJ05 LanthaScreen ERK2 A375 1 10017 -cellosaurus:CVCL_YJ74 LINTERNA A375 1 10018 -cellosaurus:CVCL_Y011 CE81T/VGH 0 10019 -cellosaurus:CVCL_Y184 CE81T1 1 10020 -cellosaurus:CVCL_Y186 CE81T1-0 2 10021 -cellosaurus:CVCL_Y187 CE81T1-1 2 10022 -cellosaurus:CVCL_Y188 CE81T1-2 2 10023 -cellosaurus:CVCL_Y189 CE81T1-3 2 10024 -cellosaurus:CVCL_Y190 CE81T1-4 2 10025 -cellosaurus:CVCL_Y185 CE81T2 1 10026 -cellosaurus:CVCL_Y191 CE81T2-1 2 10027 -cellosaurus:CVCL_Y192 CE81T2-4 2 10028 -cellosaurus:CVCL_0027 Hep-G2 0 10029 -cellosaurus:CVCL_B0ZH Abcam Hep-G2 ACE2 KO 1 10030 -cellosaurus:CVCL_B7V5 Abcam Hep-G2 APOE KO 1 10031 -cellosaurus:CVCL_B0ZI Abcam Hep-G2 ARRB2 KO 1 10032 -cellosaurus:CVCL_B7V6 Abcam Hep-G2 ARG1 KO 1 10033 -cellosaurus:CVCL_B0ZJ Abcam Hep-G2 B2M KO 1 10034 -cellosaurus:CVCL_B0ZK Abcam Hep-G2 CD63 KO 1 10035 -cellosaurus:CVCL_B0ZL Abcam Hep-G2 CTNNB1 KO 1 10036 -cellosaurus:CVCL_B0ZM Abcam Hep-G2 LRP6 KO 1 10037 -cellosaurus:CVCL_B0ZN Abcam Hep-G2 MTOR KO 1 10038 -cellosaurus:CVCL_B0ZP Abcam Hep-G2 NF2 KO 1 10039 -cellosaurus:CVCL_B0ZQ Abcam Hep-G2 NFKB2 KO 1 10040 -cellosaurus:CVCL_B0ZR Abcam Hep-G2 SLC2A1 KO 1 10041 -cellosaurus:CVCL_B7V7 Abcam Hep-G2 SLC7A11 KO 1 10042 -cellosaurus:CVCL_B0ZS Abcam Hep-G2 TFEB KO 1 10043 -cellosaurus:CVCL_KS12 CellSensor ARE-bla Hep G2 1 10044 -cellosaurus:CVCL_UK01 DPX2 1 10045 -cellosaurus:CVCL_1T06 H7D7A 1 10046 -cellosaurus:CVCL_1T07 H7D7B 1 10047 -cellosaurus:CVCL_1T10 H7D7BD5 2 10048 -cellosaurus:CVCL_1T08 H7D7C 1 10049 -cellosaurus:CVCL_1T09 H7D7D 1 10050 -cellosaurus:CVCL_Z631 HC-04 1 10051 -cellosaurus:CVCL_B7D7 HC-04.J7 2 10052 -cellosaurus:CVCL_A2HD Hep G2-C34 1 10053 -cellosaurus:CVCL_A2HE Hep G2-C37 1 10054 -cellosaurus:CVCL_A2HF Hep G2-E43 1 10055 -cellosaurus:CVCL_A2HG Hep G2-E47 1 10056 -cellosaurus:CVCL_A2HB Hep G2-MV2E1-9 1 10057 -cellosaurus:CVCL_A2HC Hep G2-MV-5 1 10058 -cellosaurus:CVCL_HA60 HEP G2ins 1 10059 -cellosaurus:CVCL_HA61 HEP G2ins/g 2 10060 -cellosaurus:CVCL_VA32 Hep-G2 A-1 1 10061 -cellosaurus:CVCL_VA33 Hep-G2 B-1 1 10062 -cellosaurus:CVCL_VA34 Hep-G2 C-1 1 10063 -cellosaurus:CVCL_S027 Hep-G2 SimpleCell O-GalNAc 1 10064 -cellosaurus:CVCL_EI11 Hep-G2 SimpleCell O-GalNAc KI GalNAc-T3 2 10065 -cellosaurus:CVCL_EI09 Hep-G2 SimpleCell O-GalNAc KO GalNAc-T1 2 10066 -cellosaurus:CVCL_EI10 Hep-G2 SimpleCell O-GalNAc KO GalNAc-T2 2 10067 -cellosaurus:CVCL_A5CQ Hep-G2 VA-13 1 10068 -cellosaurus:CVCL_A5CT Hep-G2 VL-17A 2 10069 -cellosaurus:CVCL_A5CR Hep-G2 VA-28 1 10070 -cellosaurus:CVCL_A5CS Hep-G2 VI-7 1 10071 -cellosaurus:CVCL_C3G9 Hep-G2-THRA 1 10072 -cellosaurus:CVCL_C3GA Hep-G2-THRA MUT p.I116N;A225T;M388I 1 10073 -cellosaurus:CVCL_C3GB Hep-G2-THRA MUT p.K74E;A264V 1 10074 -cellosaurus:CVCL_C3GC Hep-G2-THRB 1 10075 -cellosaurus:CVCL_C3GD Hep-G2-THRB MUT p.K113N;T329P 1 10076 -cellosaurus:CVCL_C3GE Hep-G2-THRB MUT p.K155E;K411E 1 10077 -cellosaurus:CVCL_3701 Hep-G2/2.2.1 1 10078 -cellosaurus:CVCL_L855 Hep-G2/2.2.15 1 10079 -cellosaurus:CVCL_EQ66 Hep-G2/BGAL 1 10080 -cellosaurus:CVCL_1098 Hep-G2/C3A 1 10081 -cellosaurus:CVCL_1N69 C3A clone 2.5B1 2 10082 -cellosaurus:CVCL_YN88 Hep-G2/C3A-hARG1 2 10083 -cellosaurus:CVCL_YN89 Hep-G2/C3A-hARG1/hOTC 2 10084 -cellosaurus:CVCL_YN90 Hep-G2/C3A-hOTC 2 10085 -cellosaurus:CVCL_EQ63 Hep-G2/PGC-1alpha 2x9 mutant 1 10086 -cellosaurus:CVCL_EQ64 Hep-G2/PGC-1alpha L2L3 mutant 1 10087 -cellosaurus:CVCL_EQ65 Hep-G2/PGC-1alpha wt 1 10088 -cellosaurus:CVCL_AS98 Hep-G2/SF 1 10089 -cellosaurus:CVCL_M177 HepAD38 1 10090 -cellosaurus:CVCL_DE22 HepAD43 1 10091 -cellosaurus:CVCL_DE23 HepAD79 1 10092 -cellosaurus:CVCL_DF32 HepBHAe82 1 10093 -cellosaurus:CVCL_B5VV Hepc/1A1.4 1 10094 -cellosaurus:CVCL_B5VW Hepc/1A2.9 1 10095 -cellosaurus:CVCL_B5VX Hepc/2A6L.14 1 10096 -cellosaurus:CVCL_B5VY Hepc/2B6.68 1 10097 -cellosaurus:CVCL_B5VZ Hepc/2C19.12 1 10098 -cellosaurus:CVCL_B5W0 Hepc/2C8.46 1 10099 -cellosaurus:CVCL_B5W1 Hepc/2C9.1 1 10100 -cellosaurus:CVCL_B5W2 Hepc/2D6.39 1 10101 -cellosaurus:CVCL_B5W3 Hepc/2E1.3-8 1 10102 -cellosaurus:CVCL_B5W4 Hepc/3A4.2-30 1 10103 -cellosaurus:CVCL_M178 HepDE19 1 10104 -cellosaurus:CVCL_M179 HepDES19 1 10105 -cellosaurus:CVCL_C0V3 HepG2 AhR-CYP1A1 clone 10 1 10106 -cellosaurus:CVCL_C0V1 HepG2 AhR-CYP1A1 clone 4 1 10107 -cellosaurus:CVCL_C0V2 HepG2 AhR-CYP1A1 clone 9 1 10108 -cellosaurus:CVCL_C0V6 HepG2 CAR-CYP2B6 clone 10 1 10109 -cellosaurus:CVCL_C0V4 HepG2 CAR-CYP2B6 clone 6 1 10110 -cellosaurus:CVCL_C0V5 HepG2 CAR-CYP2B6 clone 7 1 10111 -cellosaurus:CVCL_IX10 HepG2 CYP3A4G/7R clone 87 1 10112 -cellosaurus:CVCL_W371 HepG2 hALR 1 10113 -cellosaurus:CVCL_C0V7 HepG2 PXR-CYP3A4 clone 1 1 10114 -cellosaurus:CVCL_C0V8 HepG2 PXR-CYP3A4 clone 3 1 10115 -cellosaurus:CVCL_C0V9 HepG2 PXR-CYP3A4 clone 8 1 10116 -cellosaurus:CVCL_KU36 HepG2 Tet-Off Advanced 1 10117 -cellosaurus:CVCL_V331 HepG2 Tet-On 1 10118 -cellosaurus:CVCL_KT01 HepG2 Tet-On Advanced 1 10119 -cellosaurus:CVCL_A5AW HepG2.105 1 10120 -cellosaurus:CVCL_A5AX HepG2.117 1 10121 -cellosaurus:CVCL_B0UH HepG2.A64 1 10122 -cellosaurus:CVCL_A8FS HepG2-8960-R 1 10123 -cellosaurus:CVCL_XI50 HepG2-CAR 1 10124 -cellosaurus:CVCL_XI69 HepG2-CYP2B6-hCAR 1 10125 -cellosaurus:CVCL_A2HH HepG2-CYP2E1 1 10126 -cellosaurus:CVCL_A9JD HepG2-CYP3A29 1 10127 -cellosaurus:CVCL_9874 HepG2-DM2 1 10128 -cellosaurus:CVCL_A8BS HepG2-Dual 1 10129 -cellosaurus:CVCL_H214 HepG2-GS 1 10130 -cellosaurus:CVCL_8560 HepG2-GS-CYP3A4 1 10131 -cellosaurus:CVCL_JY40 HepG2-hNTCP 1 10132 -cellosaurus:CVCL_JG47 HepG2-Luc 1 10133 -cellosaurus:CVCL_5I95 HepG2-luc2 1 10134 -cellosaurus:CVCL_XD61 HepG2-Luc2-tdT 1 10135 -cellosaurus:CVCL_A8BT HepG2-Lucia AhR 1 10136 -cellosaurus:CVCL_A8IF HepG2-N10 1 10137 -cellosaurus:CVCL_A7DQ HepG2-NIAS 1 10138 -cellosaurus:CVCL_A8FT HepG2-R 1 10139 -cellosaurus:CVCL_5I98 HepG2-Red-FLuc 1 10140 -cellosaurus:CVCL_XB55 HepG2-RHBV 1 10141 -cellosaurus:CVCL_JY38 HepG2-rNTCP-eGFP 1 10142 -cellosaurus:CVCL_9873 HepG2-SM1 1 10143 -cellosaurus:CVCL_9872 HepG2-WT10 1 10144 -cellosaurus:CVCL_M187 HepG2/Adm 1 10145 -cellosaurus:CVCL_M186 HepG2/mdr1 1 10146 -cellosaurus:CVCL_B0UI HepG2/TC155 1 10147 -cellosaurus:CVCL_4W42 HepG2S1 1 10148 -cellosaurus:CVCL_4W43 HepG2S2 1 10149 -cellosaurus:CVCL_4W44 HepG2S3 1 10150 -cellosaurus:CVCL_HE77 HepG2T14 1 10151 -cellosaurus:CVCL_HE78 HepG2T14.1 2 10152 -cellosaurus:CVCL_Y479 HepG3 1 10153 -cellosaurus:CVCL_DF33 HepHA-HBe4 1 10154 -cellosaurus:CVCL_RW48 HepJ5 1 10155 -cellosaurus:CVCL_DC29 HG2L1.1c3 1 10156 -cellosaurus:CVCL_DC30 HG2L6.1c1 1 10157 -cellosaurus:CVCL_DC31 HG2L6.1c3 1 10158 -cellosaurus:CVCL_DC32 HG2L7.5c1 1 10159 -cellosaurus:CVCL_6G77 HPLA-A3 1 10160 -cellosaurus:CVCL_YJ82 LINTERNA HEP-G2 1 10161 -cellosaurus:CVCL_JA65 NtG20.i7 1 10162 -cellosaurus:CVCL_C0NN PZ-TR 1 10163 -cellosaurus:CVCL_D636 RzM6 1 10164 -cellosaurus:CVCL_D637 RzM6-LC 2 10165 -cellosaurus:CVCL_0578 WGA 1 10166 -cellosaurus:CVCL_0105 DU145 0 10167 -cellosaurus:CVCL_1968 BM-1604 1 10168 -cellosaurus:CVCL_4Y36 DU-145 R 1 10169 -cellosaurus:CVCL_J251 DU-145-Luc 1 10170 -cellosaurus:CVCL_VE02 DU145-AR 1 10171 -cellosaurus:CVCL_A9CI DU145-Cas9-539 1 10172 -cellosaurus:CVCL_A9CJ DU145-Cas9-540 1 10173 -cellosaurus:CVCL_A9CK DU145-Cas9-541 1 10174 -cellosaurus:CVCL_C0QR DU145-R 1 10175 -cellosaurus:CVCL_ZX03 DU145-TxR 1 10176 -cellosaurus:CVCL_ZX04 DU145-TxR/CxR 2 10177 -cellosaurus:CVCL_AS75 DU145/RC0.1 1 10178 -cellosaurus:CVCL_D639 DU145/RC1 1 10179 -cellosaurus:CVCL_4781 ND-1 1 10180 -cellosaurus:CVCL_4901 SR DU-145 1 10181 -cellosaurus:CVCL_H207 HLY-1 0 10182 -cellosaurus:CVCL_IN94 HLY-1 eIF4E1 1 10183 -cellosaurus:CVCL_IN95 HLY-1 eIF4E3 1 10184 -cellosaurus:CVCL_B6KD Mel Il 0 10185 -cellosaurus:CVCL_B6KF Mel IL/R 1 10186 -cellosaurus:CVCL_B6LC Mel ILG 1 10187 -cellosaurus:CVCL_8708 HOTHC 0 10188 -cellosaurus:CVCL_8709 HOTHC-SF 1 10189 -cellosaurus:CVCL_A426 KBM-7 0 10190 -cellosaurus:CVCL_Y019 HAP1 1 10191 -cellosaurus:CVCL_5J32 eHAP A11 2 10192 -cellosaurus:CVCL_5J33 eHAP E9 2 10193 -cellosaurus:CVCL_SA85 HAP1 AAK1 (-) 2 10194 -cellosaurus:CVCL_SA86 HAP1 AATK (-) 1 2 10195 -cellosaurus:CVCL_SA87 HAP1 AATK (-) 2 2 10196 -cellosaurus:CVCL_SA88 HAP1 AATK (-) 3 2 10197 -cellosaurus:CVCL_SA89 HAP1 ABAT (-) 2 10198 -cellosaurus:CVCL_SA90 HAP1 ABCA1 (-) 1 2 10199 -cellosaurus:CVCL_SA91 HAP1 ABCA1 (-) 2 2 10200 -cellosaurus:CVCL_SA92 HAP1 ABCA3 (-) 1 2 10201 -cellosaurus:CVCL_XK88 HAP1 ABCA3 (-) 2 2 10202 -cellosaurus:CVCL_SA93 HAP1 ABCA7 (-) 1 2 10203 -cellosaurus:CVCL_SA94 HAP1 ABCA7 (-) 2 2 10204 -cellosaurus:CVCL_SA95 HAP1 ABCB1 (-) 1 2 10205 -cellosaurus:CVCL_SA96 HAP1 ABCB1 (-) 2 2 10206 -cellosaurus:CVCL_SA97 HAP1 ABCB5 (-) 1 2 10207 -cellosaurus:CVCL_SA98 HAP1 ABCB5 (-) 2 2 10208 -cellosaurus:CVCL_SA99 HAP1 ABCB5 (-) 3 2 10209 -cellosaurus:CVCL_SB00 HAP1 ABCB5 (-) 4 2 10210 -cellosaurus:CVCL_SB01 HAP1 ABCB5 (-) 5 2 10211 -cellosaurus:CVCL_SB02 HAP1 ABCB5 (-) 6 2 10212 -cellosaurus:CVCL_XK95 HAP1 ABCB8 (-) 2 10213 -cellosaurus:CVCL_SB03 HAP1 ABCC1 (-) 1 2 10214 -cellosaurus:CVCL_SB04 HAP1 ABCC1 (-) 2 2 10215 -cellosaurus:CVCL_SB05 HAP1 ABCC1 (-) 3 2 10216 -cellosaurus:CVCL_SB06 HAP1 ABCC4 (-) 1 2 10217 -cellosaurus:CVCL_XK89 HAP1 ABCC4 (-) 2 2 10218 -cellosaurus:CVCL_XK90 HAP1 ABCC4 (-) 3 2 10219 -cellosaurus:CVCL_SB07 HAP1 ABCD1 (-) 1 2 10220 -cellosaurus:CVCL_XK91 HAP1 ABCD1 (-) 2 2 10221 -cellosaurus:CVCL_XK92 HAP1 ABCD1 (-) 3 2 10222 -cellosaurus:CVCL_XK93 HAP1 ABCD1 (-) 4 2 10223 -cellosaurus:CVCL_SB08 HAP1 ABCD3 (-) 1 2 10224 -cellosaurus:CVCL_XK94 HAP1 ABCD3 (-) 2 2 10225 -cellosaurus:CVCL_SB09 HAP1 ABL1 (-) 2 10226 -cellosaurus:CVCL_SB10 HAP1 ABL2 (-) 1 2 10227 -cellosaurus:CVCL_SB11 HAP1 ABL2 (-) 2 2 10228 -cellosaurus:CVCL_SB12 HAP1 ABL2 (-) 3 2 10229 -cellosaurus:CVCL_SB13 HAP1 ACACA (-) 1 2 10230 -cellosaurus:CVCL_SB14 HAP1 ACACA (-) 2 2 10231 -cellosaurus:CVCL_SB15 HAP1 ACAD10 (-) 1 2 10232 -cellosaurus:CVCL_XK96 HAP1 ACAD10 (-) 2 2 10233 -cellosaurus:CVCL_SB16 HAP1 ACBD3 (-) 2 10234 -cellosaurus:CVCL_SB17 HAP1 ACD (-) 1 2 10235 -cellosaurus:CVCL_SB18 HAP1 ACD (-) 2 2 10236 -cellosaurus:CVCL_SB19 HAP1 ACE (-) 1 2 10237 -cellosaurus:CVCL_SB20 HAP1 ACE (-) 2 2 10238 -cellosaurus:CVCL_SB21 HAP1 ACHE (-) 1 2 10239 -cellosaurus:CVCL_SB22 HAP1 ACHE (-) 2 2 10240 -cellosaurus:CVCL_SB23 HAP1 ACLY (-) 1 2 10241 -cellosaurus:CVCL_XK97 HAP1 ACLY (-) 2 2 10242 -cellosaurus:CVCL_SB24 HAP1 ACO2 (-) 1 2 10243 -cellosaurus:CVCL_SB25 HAP1 ACO2 (-) 2 2 10244 -cellosaurus:CVCL_XK98 HAP1 ACSL3 (-) 2 10245 -cellosaurus:CVCL_XK99 HAP1 ACSL4 (-) 1 2 10246 -cellosaurus:CVCL_B5JF HAP1 ACSL4 (-) 2 2 10247 -cellosaurus:CVCL_SB26 HAP1 ACSS2 (-) 1 2 10248 -cellosaurus:CVCL_XL00 HAP1 ACSS2 (-) 2 2 10249 -cellosaurus:CVCL_SB27 HAP1 ACTB (-) 1 2 10250 -cellosaurus:CVCL_SB28 HAP1 ACTB (-) 2 2 10251 -cellosaurus:CVCL_SB29 HAP1 ACTN1 (-) 1 2 10252 -cellosaurus:CVCL_XL01 HAP1 ACTN1 (-) 2 2 10253 -cellosaurus:CVCL_SB30 HAP1 ACTN4 (-) 1 2 10254 -cellosaurus:CVCL_XL02 HAP1 ACTN4 (-) 2 2 10255 -cellosaurus:CVCL_SB31 HAP1 ACVR1 (-) 2 10256 -cellosaurus:CVCL_SB32 HAP1 ACVR1B (-) 2 10257 -cellosaurus:CVCL_SB33 HAP1 ACVR2A (-) 1 2 10258 -cellosaurus:CVCL_SB34 HAP1 ACVR2A (-) 2 2 10259 -cellosaurus:CVCL_SB35 HAP1 ACVR2A (-) 3 2 10260 -cellosaurus:CVCL_SB36 HAP1 ACVR2A (-) 4 2 10261 -cellosaurus:CVCL_SB37 HAP1 ACVR2A (-) 5 2 10262 -cellosaurus:CVCL_SB38 HAP1 ACVR2B (-) 1 2 10263 -cellosaurus:CVCL_SB39 HAP1 ACVR2B (-) 2 2 10264 -cellosaurus:CVCL_SB40 HAP1 ACVR2B (-) 3 2 10265 -cellosaurus:CVCL_SB41 HAP1 ACVR2B (-) 4 2 10266 -cellosaurus:CVCL_SB42 HAP1 ACVR2B (-) 5 2 10267 -cellosaurus:CVCL_SB43 HAP1 ACVR2B (-) 6 2 10268 -cellosaurus:CVCL_SB44 HAP1 ADA (-) 2 10269 -cellosaurus:CVCL_SB45 HAP1 ADAM10 (-) 1 2 10270 -cellosaurus:CVCL_SB46 HAP1 ADAM10 (-) 2 2 10271 -cellosaurus:CVCL_SB47 HAP1 ADAM17 (-) 1 2 10272 -cellosaurus:CVCL_SB48 HAP1 ADAM17 (-) 2 2 10273 -cellosaurus:CVCL_SB49 HAP1 ADAM9 (-) 1 2 10274 -cellosaurus:CVCL_SB50 HAP1 ADAM9 (-) 2 2 10275 -cellosaurus:CVCL_SB51 HAP1 ADAM9 (-) 3 2 10276 -cellosaurus:CVCL_SB52 HAP1 ADAM9 (-) 4 2 10277 -cellosaurus:CVCL_SB53 HAP1 ADAR (-) 1 2 10278 -cellosaurus:CVCL_SB54 HAP1 ADAR (-) 2 2 10279 -cellosaurus:CVCL_SB55 HAP1 ADARB1 (-) 2 10280 -cellosaurus:CVCL_SB56 HAP1 ADCK1 (-) 1 2 10281 -cellosaurus:CVCL_SB57 HAP1 ADCK1 (-) 2 2 10282 -cellosaurus:CVCL_SB58 HAP1 ADCK2 (-) 1 2 10283 -cellosaurus:CVCL_SB59 HAP1 ADCK2 (-) 2 2 10284 -cellosaurus:CVCL_SB60 HAP1 ADCK2 (-) 3 2 10285 -cellosaurus:CVCL_SB61 HAP1 ADCK3 (-) 1 2 10286 -cellosaurus:CVCL_SB62 HAP1 ADCK3 (-) 2 2 10287 -cellosaurus:CVCL_SB63 HAP1 ADCK4 (-) 1 2 10288 -cellosaurus:CVCL_SB64 HAP1 ADCK4 (-) 2 2 10289 -cellosaurus:CVCL_SB65 HAP1 ADCK5 (-) 1 2 10290 -cellosaurus:CVCL_SB66 HAP1 ADCK5 (-) 2 2 10291 -cellosaurus:CVCL_SB67 HAP1 ADCY3 (-) 1 2 10292 -cellosaurus:CVCL_XL04 HAP1 ADCY3 (-) 2 2 10293 -cellosaurus:CVCL_SB68 HAP1 ADCY6 (-) 1 2 10294 -cellosaurus:CVCL_XL05 HAP1 ADCY6 (-) 2 2 10295 -cellosaurus:CVCL_SB69 HAP1 ADCY7 (-) 1 2 10296 -cellosaurus:CVCL_XL06 HAP1 ADCY7 (-) 2 2 10297 -cellosaurus:CVCL_SB70 HAP1 ADCY9 (-) 1 2 10298 -cellosaurus:CVCL_XL07 HAP1 ADCY9 (-) 2 2 10299 -cellosaurus:CVCL_XL08 HAP1 ADH5 (-) 2 10300 -cellosaurus:CVCL_SB71 HAP1 ADIPOR1 (-) 1 2 10301 -cellosaurus:CVCL_XL09 HAP1 ADIPOR1 (-) 2 2 10302 -cellosaurus:CVCL_XL10 HAP1 ADIPOR1 (-) 3 2 10303 -cellosaurus:CVCL_XL11 HAP1 ADIPOR1 (-) 4 2 10304 -cellosaurus:CVCL_SB72 HAP1 ADIPOR2 (-) 1 2 10305 -cellosaurus:CVCL_XL12 HAP1 ADIPOR2 (-) 2 2 10306 -cellosaurus:CVCL_SB73 HAP1 ADK (-) 1 2 10307 -cellosaurus:CVCL_SB74 HAP1 ADK (-) 2 2 10308 -cellosaurus:CVCL_SB75 HAP1 ADORA2A (-) 1 2 10309 -cellosaurus:CVCL_SB76 HAP1 ADORA2A (-) 2 2 10310 -cellosaurus:CVCL_SB77 HAP1 ADORA2B (-) 1 2 10311 -cellosaurus:CVCL_SB78 HAP1 ADORA2B (-) 2 2 10312 -cellosaurus:CVCL_SB79 HAP1 ADRA1A (-) 1 2 10313 -cellosaurus:CVCL_SB80 HAP1 ADRA1A (-) 2 2 10314 -cellosaurus:CVCL_SB81 HAP1 ADRBK1 (-) 2 10315 -cellosaurus:CVCL_SB82 HAP1 ADRBK2 (-) 1 2 10316 -cellosaurus:CVCL_SB83 HAP1 ADRBK2 (-) 2 2 10317 -cellosaurus:CVCL_SB84 HAP1 ADRBK2 (-) 3 2 10318 -cellosaurus:CVCL_SB85 HAP1 AEBP2 (-) 1 2 10319 -cellosaurus:CVCL_SB86 HAP1 AEBP2 (-) 2 2 10320 -cellosaurus:CVCL_SB87 HAP1 AEBP2 (-) 3 2 10321 -cellosaurus:CVCL_SB88 HAP1 AEBP2 (-) 4 2 10322 -cellosaurus:CVCL_SB89 HAP1 AFTPH (-) 1 2 10323 -cellosaurus:CVCL_SB90 HAP1 AFTPH (-) 2 2 10324 -cellosaurus:CVCL_SB91 HAP1 AGER (-) 1 2 10325 -cellosaurus:CVCL_XL13 HAP1 AGER (-) 2 2 10326 -cellosaurus:CVCL_SB92 HAP1 AGL (-) 1 2 10327 -cellosaurus:CVCL_SB93 HAP1 AGL (-) 2 2 10328 -cellosaurus:CVCL_SB94 HAP1 AGO1 (-) 1 2 10329 -cellosaurus:CVCL_SB95 HAP1 AGO1 (-) 2 2 10330 -cellosaurus:CVCL_SB96 HAP1 AGO1 (-) 3 2 10331 -cellosaurus:CVCL_SB97 HAP1 AGO1 (-) 4 2 10332 -cellosaurus:CVCL_SB98 HAP1 AGRN (-) 1 2 10333 -cellosaurus:CVCL_SB99 HAP1 AGRN (-) 2 2 10334 -cellosaurus:CVCL_SC00 HAP1 AHR (-) 1 2 10335 -cellosaurus:CVCL_SC01 HAP1 AHR (-) 2 2 10336 -cellosaurus:CVCL_XL14 HAP1 AHSA1 (-) 2 10337 -cellosaurus:CVCL_SC02 HAP1 AIFM1 (-) 2 10338 -cellosaurus:CVCL_XL15 HAP1 AJUBA (-) 2 10339 -cellosaurus:CVCL_SC03 HAP1 AKAP1 (-) 1 2 10340 -cellosaurus:CVCL_SC04 HAP1 AKAP1 (-) 2 2 10341 -cellosaurus:CVCL_SC05 HAP1 AKAP11 (-) 1 2 10342 -cellosaurus:CVCL_SC06 HAP1 AKAP11 (-) 2 2 10343 -cellosaurus:CVCL_XL16 HAP1 AKAP8 (-) 2 10344 -cellosaurus:CVCL_SC07 HAP1 AKAP9 (-) 1 2 10345 -cellosaurus:CVCL_SC08 HAP1 AKAP9 (-) 2 2 10346 -cellosaurus:CVCL_SC09 HAP1 AKR1B1 (-) 1 2 10347 -cellosaurus:CVCL_XL17 HAP1 AKR1B1 (-) 2 2 10348 -cellosaurus:CVCL_XL18 HAP1 AKR1B1 (-) 3 2 10349 -cellosaurus:CVCL_XL19 HAP1 AKR1B1 (-) 4 2 10350 -cellosaurus:CVCL_SC10 HAP1 AKR1B10 (-) 2 10351 -cellosaurus:CVCL_SC11 HAP1 AKT1 (-) 1 2 10352 -cellosaurus:CVCL_SC12 HAP1 AKT1 (-) 2 2 10353 -cellosaurus:CVCL_SC13 HAP1 AKT1S1 (-) 1 2 10354 -cellosaurus:CVCL_XL20 HAP1 AKT1S1 (-) 2 2 10355 -cellosaurus:CVCL_XL21 HAP1 AKT1S1 (-) 3 2 10356 -cellosaurus:CVCL_XL22 HAP1 AKT1S1 (-) 4 2 10357 -cellosaurus:CVCL_SC14 HAP1 AKT2 (-) 2 10358 -cellosaurus:CVCL_SC15 HAP1 AKT3 (-) 1 2 10359 -cellosaurus:CVCL_SC16 HAP1 AKT3 (-) 2 2 10360 -cellosaurus:CVCL_SC17 HAP1 AKTIP (-) 1 2 10361 -cellosaurus:CVCL_SC18 HAP1 AKTIP (-) 2 2 10362 -cellosaurus:CVCL_SC19 HAP1 ALAS1 (-) 1 2 10363 -cellosaurus:CVCL_SC20 HAP1 ALAS1 (-) 2 2 10364 -cellosaurus:CVCL_SC21 HAP1 ALCAM (-) 1 2 10365 -cellosaurus:CVCL_XL23 HAP1 ALCAM (-) 2 2 10366 -cellosaurus:CVCL_XL24 HAP1 ALDH18A1 (-) 2 10367 -cellosaurus:CVCL_SC22 HAP1 ALDH3A2 (-) 1 2 10368 -cellosaurus:CVCL_XL25 HAP1 ALDH3A2 (-) 2 2 10369 -cellosaurus:CVCL_SC23 HAP1 ALDH9A1 (-) 1 2 10370 -cellosaurus:CVCL_XL26 HAP1 ALDH9A1 (-) 2 2 10371 -cellosaurus:CVCL_SC24 HAP1 ALG12 (-) 1 2 10372 -cellosaurus:CVCL_SC25 HAP1 ALG12 (-) 2 2 10373 -cellosaurus:CVCL_SC26 HAP1 ALG3 (-) 1 2 10374 -cellosaurus:CVCL_SC27 HAP1 ALG3 (-) 2 2 10375 -cellosaurus:CVCL_SC28 HAP1 ALG6 (-) 1 2 10376 -cellosaurus:CVCL_SC29 HAP1 ALG6 (-) 2 2 10377 -cellosaurus:CVCL_SC30 HAP1 ALG8 (-) 1 2 10378 -cellosaurus:CVCL_SC31 HAP1 ALG8 (-) 2 2 10379 -cellosaurus:CVCL_SC32 HAP1 ALG9 (-) 1 2 10380 -cellosaurus:CVCL_SC33 HAP1 ALG9 (-) 2 2 10381 -cellosaurus:CVCL_SC34 HAP1 ALK (-) 1 2 10382 -cellosaurus:CVCL_SC35 HAP1 ALK (-) 2 2 10383 -cellosaurus:CVCL_SC36 HAP1 ALKBH1 (-) 1 2 10384 -cellosaurus:CVCL_XL27 HAP1 ALKBH1 (-) 2 2 10385 -cellosaurus:CVCL_SC37 HAP1 ALKBH2 (-) 1 2 10386 -cellosaurus:CVCL_SC38 HAP1 ALKBH2 (-) 2 2 10387 -cellosaurus:CVCL_SC39 HAP1 ALKBH3 (-) 1 2 10388 -cellosaurus:CVCL_XL28 HAP1 ALKBH3 (-) 2 2 10389 -cellosaurus:CVCL_XL29 HAP1 ALKBH6 (-) 2 10390 -cellosaurus:CVCL_XL30 HAP1 ALKBH8 (-) 2 10391 -cellosaurus:CVCL_XL31 HAP1 ALOX5 (-) 1 2 10392 -cellosaurus:CVCL_B5JG HAP1 ALOX5 (-) 2 2 10393 -cellosaurus:CVCL_B5JH HAP1 ALOX5 (-) 3 2 10394 -cellosaurus:CVCL_SC40 HAP1 ALPK1 (-) 1 2 10395 -cellosaurus:CVCL_SC41 HAP1 ALPK1 (-) 2 2 10396 -cellosaurus:CVCL_SC42 HAP1 ALPK1 (-) 3 2 10397 -cellosaurus:CVCL_SC43 HAP1 ALPK2 (-) 1 2 10398 -cellosaurus:CVCL_SC44 HAP1 ALPK2 (-) 2 2 10399 -cellosaurus:CVCL_SC45 HAP1 ALPK2 (-) 3 2 10400 -cellosaurus:CVCL_SC46 HAP1 ALPL (-) 2 10401 -cellosaurus:CVCL_XL32 HAP1 ANAPC16 (-) 2 10402 -cellosaurus:CVCL_SC47 HAP1 ANAPC7 (-) 1 2 10403 -cellosaurus:CVCL_SC48 HAP1 ANAPC7 (-) 2 2 10404 -cellosaurus:CVCL_SC49 HAP1 ANG (-) 1 2 10405 -cellosaurus:CVCL_SC50 HAP1 ANG (-) 2 2 10406 -cellosaurus:CVCL_SC51 HAP1 ANGPTL4 (-) 1 2 10407 -cellosaurus:CVCL_XL33 HAP1 ANGPTL4 (-) 2 2 10408 -cellosaurus:CVCL_XL34 HAP1 ANKHD1 (-) 1 2 10409 -cellosaurus:CVCL_XL35 HAP1 ANKHD1 (-) 2 2 10410 -cellosaurus:CVCL_SC52 HAP1 ANKRD17 (-) 1 2 10411 -cellosaurus:CVCL_SC53 HAP1 ANKRD17 (-) 2 2 10412 -cellosaurus:CVCL_SC54 HAP1 ANKRD28 (-) 1 2 10413 -cellosaurus:CVCL_SC55 HAP1 ANKRD28 (-) 2 2 10414 -cellosaurus:CVCL_SC56 HAP1 ANKRD44 (-) 1 2 10415 -cellosaurus:CVCL_SC57 HAP1 ANKRD44 (-) 2 2 10416 -cellosaurus:CVCL_SC58 HAP1 ANKRD52 (-) 1 2 10417 -cellosaurus:CVCL_SC59 HAP1 ANKRD52 (-) 2 2 10418 -cellosaurus:CVCL_SC60 HAP1 ANO10 (-) 1 2 10419 -cellosaurus:CVCL_XL36 HAP1 ANO10 (-) 2 2 10420 -cellosaurus:CVCL_SC61 HAP1 ANO5 (-) 2 10421 -cellosaurus:CVCL_RX74 HAP1 ANO6(-) 1 2 10422 -cellosaurus:CVCL_SA81 HAP1 ANO6(-) 2 2 10423 -cellosaurus:CVCL_SC62 HAP1 ANPEP (-) 2 10424 -cellosaurus:CVCL_SC63 HAP1 ANTXR1 (-) 1 2 10425 -cellosaurus:CVCL_SC64 HAP1 ANTXR1 (-) 2 2 10426 -cellosaurus:CVCL_SC65 HAP1 ANTXR2 (-) 2 10427 -cellosaurus:CVCL_SC66 HAP1 ANXA1 (-) 1 2 10428 -cellosaurus:CVCL_SC67 HAP1 ANXA1 (-) 2 2 10429 -cellosaurus:CVCL_SC68 HAP1 ANXA5 (-) 1 2 10430 -cellosaurus:CVCL_XL37 HAP1 ANXA5 (-) 2 2 10431 -cellosaurus:CVCL_SC69 HAP1 AP1G1 (-) 1 2 10432 -cellosaurus:CVCL_SC70 HAP1 AP1G1 (-) 2 2 10433 -cellosaurus:CVCL_SC71 HAP1 AP1G2 (-) 2 10434 -cellosaurus:CVCL_SC72 HAP1 AP1S1 (-) 1 2 10435 -cellosaurus:CVCL_SC73 HAP1 AP1S1 (-) 2 2 10436 -cellosaurus:CVCL_SC74 HAP1 AP1S2 (-) 1 2 10437 -cellosaurus:CVCL_SC75 HAP1 AP1S2 (-) 2 2 10438 -cellosaurus:CVCL_SC76 HAP1 AP1S3 (-) 1 2 10439 -cellosaurus:CVCL_SC77 HAP1 AP1S3 (-) 2 2 10440 -cellosaurus:CVCL_SC78 HAP1 AP2M1 (-) 1 2 10441 -cellosaurus:CVCL_SC79 HAP1 AP2M1 (-) 2 2 10442 -cellosaurus:CVCL_SC80 HAP1 AP3D1 (-) 1 2 10443 -cellosaurus:CVCL_SC81 HAP1 AP3D1 (-) 2 2 10444 -cellosaurus:CVCL_SC82 HAP1 AP4E1 (-) 1 2 10445 -cellosaurus:CVCL_SC83 HAP1 AP4E1 (-) 2 2 10446 -cellosaurus:CVCL_SC84 HAP1 AP4E1 (-) 3 2 10447 -cellosaurus:CVCL_SC85 HAP1 AP5Z1 (-) 1 2 10448 -cellosaurus:CVCL_SC86 HAP1 AP5Z1 (-) 2 2 10449 -cellosaurus:CVCL_SC87 HAP1 APAF1 (-) 1 2 10450 -cellosaurus:CVCL_SC88 HAP1 APAF1 (-) 2 2 10451 -cellosaurus:CVCL_SC89 HAP1 APAF1 (-) 3 2 10452 -cellosaurus:CVCL_SC90 HAP1 APAF1 (-) 4 2 10453 -cellosaurus:CVCL_SC91 HAP1 APC (-) 2 10454 -cellosaurus:CVCL_SC92 HAP1 APEX1 (-) 1 2 10455 -cellosaurus:CVCL_XL38 HAP1 APEX1 (-) 2 2 10456 -cellosaurus:CVCL_SC93 HAP1 APLP2 (-) 1 2 10457 -cellosaurus:CVCL_SC94 HAP1 APLP2 (-) 2 2 10458 -cellosaurus:CVCL_SC95 HAP1 APOBEC3C (-) 1 2 10459 -cellosaurus:CVCL_SC96 HAP1 APOBEC3C (-) 2 2 10460 -cellosaurus:CVCL_SC97 HAP1 APOE (-) 1 2 10461 -cellosaurus:CVCL_XL39 HAP1 APOE (-) 2 2 10462 -cellosaurus:CVCL_SC98 HAP1 APOO (-) 1 2 10463 -cellosaurus:CVCL_SC99 HAP1 APOO (-) 2 2 10464 -cellosaurus:CVCL_SD00 HAP1 APOO (-) 3 2 10465 -cellosaurus:CVCL_SD01 HAP1 APOOL (-) 1 2 10466 -cellosaurus:CVCL_SD02 HAP1 APOOL (-) 2 2 10467 -cellosaurus:CVCL_SD03 HAP1 APOOL (-) 3 2 10468 -cellosaurus:CVCL_SD04 HAP1 APP (-) 1 2 10469 -cellosaurus:CVCL_XL40 HAP1 APP (-) 2 2 10470 -cellosaurus:CVCL_XL41 HAP1 APPL1 (-) 2 10471 -cellosaurus:CVCL_SD05 HAP1 APRT (-) 1 2 10472 -cellosaurus:CVCL_SD06 HAP1 APRT (-) 2 2 10473 -cellosaurus:CVCL_SD07 HAP1 APTX (-) 1 2 10474 -cellosaurus:CVCL_SD08 HAP1 APTX (-) 2 2 10475 -cellosaurus:CVCL_SD09 HAP1 APTX (-) 3 2 10476 -cellosaurus:CVCL_SD10 HAP1 AQP3 (-) 1 2 10477 -cellosaurus:CVCL_XL42 HAP1 AQP3 (-) 2 2 10478 -cellosaurus:CVCL_SD11 HAP1 AR (-) 1 2 10479 -cellosaurus:CVCL_SD12 HAP1 AR (-) 2 2 10480 -cellosaurus:CVCL_SD13 HAP1 AR (-) 3 2 10481 -cellosaurus:CVCL_SD14 HAP1 AR (-) 4 2 10482 -cellosaurus:CVCL_SD15 HAP1 ARAF (-) 1 2 10483 -cellosaurus:CVCL_SD16 HAP1 ARAF (-) 2 2 10484 -cellosaurus:CVCL_SD17 HAP1 ARAF (-) 3 2 10485 -cellosaurus:CVCL_SD18 HAP1 ARAF (-) 4 2 10486 -cellosaurus:CVCL_SD19 HAP1 ARAF (-) 5 2 10487 -cellosaurus:CVCL_SD20 HAP1 ARAF (-) 6 2 10488 -cellosaurus:CVCL_SD21 HAP1 ARAF (-) 7 2 10489 -cellosaurus:CVCL_SD22 HAP1 ARAF (-) 8 2 10490 -cellosaurus:CVCL_SD23 HAP1 ARAP3 (-) 1 2 10491 -cellosaurus:CVCL_SD24 HAP1 ARAP3 (-) 2 2 10492 -cellosaurus:CVCL_SD25 HAP1 ARF1 (-) 1 2 10493 -cellosaurus:CVCL_SD26 HAP1 ARF1 (-) 2 2 10494 -cellosaurus:CVCL_SD27 HAP1 ARF3 (-) 1 2 10495 -cellosaurus:CVCL_SD28 HAP1 ARF3 (-) 2 2 10496 -cellosaurus:CVCL_SD29 HAP1 ARF4 (-) 2 10497 -cellosaurus:CVCL_SD30 HAP1 ARF6 (-) 1 2 10498 -cellosaurus:CVCL_SD31 HAP1 ARF6 (-) 2 2 10499 -cellosaurus:CVCL_SD32 HAP1 ARF6 (-) 3 2 10500 -cellosaurus:CVCL_XL43 HAP1 ARFGAP2 (-) 2 10501 -cellosaurus:CVCL_XL44 HAP1 ARFGAP3 (-) 2 10502 -cellosaurus:CVCL_SD33 HAP1 ARHGAP31 (-) 1 2 10503 -cellosaurus:CVCL_SD34 HAP1 ARHGAP31 (-) 2 2 10504 -cellosaurus:CVCL_SD35 HAP1 ARHGAP32 (-) 1 2 10505 -cellosaurus:CVCL_SD36 HAP1 ARHGAP32 (-) 2 2 10506 -cellosaurus:CVCL_XL45 HAP1 ARHGAP32 (-) 3 2 10507 -cellosaurus:CVCL_XL46 HAP1 ARHGAP32 (-) 4 2 10508 -cellosaurus:CVCL_SD37 HAP1 ARHGEF1 (-) 1 2 10509 -cellosaurus:CVCL_SD38 HAP1 ARHGEF1 (-) 2 2 10510 -cellosaurus:CVCL_XL47 HAP1 ARHGEF39 (-) 1 2 10511 -cellosaurus:CVCL_XL48 HAP1 ARHGEF39 (-) 2 2 10512 -cellosaurus:CVCL_XL49 HAP1 ARHGEF39 (-) 3 2 10513 -cellosaurus:CVCL_SD39 HAP1 ARID1A (-) 1 2 10514 -cellosaurus:CVCL_SD40 HAP1 ARID1A (-) 2 2 10515 -cellosaurus:CVCL_SD41 HAP1 ARID1A (-) 3 2 10516 -cellosaurus:CVCL_SD42 HAP1 ARID1A (-) 4 2 10517 -cellosaurus:CVCL_SD43 HAP1 ARID1A (-) 5 2 10518 -cellosaurus:CVCL_SD44 HAP1 ARID1B (-) 1 2 10519 -cellosaurus:CVCL_SD45 HAP1 ARID1B (-) 2 2 10520 -cellosaurus:CVCL_SD46 HAP1 ARID2 (-) 1 2 10521 -cellosaurus:CVCL_SD47 HAP1 ARID2 (-) 2 2 10522 -cellosaurus:CVCL_SD48 HAP1 ARID5B (-) 2 10523 -cellosaurus:CVCL_SD49 HAP1 ARIH1 (-) 1 2 10524 -cellosaurus:CVCL_XL50 HAP1 ARIH1 (-) 2 2 10525 -cellosaurus:CVCL_SD50 HAP1 ARMC10 (-) 1 2 10526 -cellosaurus:CVCL_SD51 HAP1 ARMC10 (-) 2 2 10527 -cellosaurus:CVCL_SD52 HAP1 ARMC5 (-) 1 2 10528 -cellosaurus:CVCL_SD53 HAP1 ARMC5 (-) 2 2 10529 -cellosaurus:CVCL_XL51 HAP1 ARMCX2 (-) 2 10530 -cellosaurus:CVCL_XL52 HAP1 ARNT (-) 2 10531 -cellosaurus:CVCL_SD54 HAP1 ARNTL (-) 1 2 10532 -cellosaurus:CVCL_XL53 HAP1 ARNTL (-) 2 2 10533 -cellosaurus:CVCL_SD55 HAP1 ARPC5 (-) 2 10534 -cellosaurus:CVCL_SD56 HAP1 ARRB1 (-) 1 2 10535 -cellosaurus:CVCL_XL54 HAP1 ARRB1 (-) 2 2 10536 -cellosaurus:CVCL_XL55 HAP1 ARRDC1 (-) 1 2 10537 -cellosaurus:CVCL_B5JI HAP1 ARRDC1 (-) 2 2 10538 -cellosaurus:CVCL_B5JJ HAP1 ARRDC1 (-) 3 2 10539 -cellosaurus:CVCL_XL56 HAP1 ARSB (-) 2 10540 -cellosaurus:CVCL_SD57 HAP1 ASCC1 (-) 1 2 10541 -cellosaurus:CVCL_XL57 HAP1 ASCC1 (-) 2 2 10542 -cellosaurus:CVCL_SD58 HAP1 ASCC2 (-) 2 10543 -cellosaurus:CVCL_XL58 HAP1 ASF1A (-) 2 10544 -cellosaurus:CVCL_XL59 HAP1 ASF1B (-) 2 10545 -cellosaurus:CVCL_SD59 HAP1 ASGR1 (-) 1 2 10546 -cellosaurus:CVCL_SD60 HAP1 ASGR1 (-) 2 2 10547 -cellosaurus:CVCL_SD61 HAP1 ASH1L (-) 1 2 10548 -cellosaurus:CVCL_SD62 HAP1 ASH1L (-) 2 2 10549 -cellosaurus:CVCL_SD63 HAP1 ASIC1 (-) 2 10550 -cellosaurus:CVCL_SD64 HAP1 ASMTL (-) 1 2 10551 -cellosaurus:CVCL_XL60 HAP1 ASMTL (-) 2 2 10552 -cellosaurus:CVCL_SD65 HAP1 ASPH (-) 1 2 10553 -cellosaurus:CVCL_SD66 HAP1 ASPH (-) 2 2 10554 -cellosaurus:CVCL_SD67 HAP1 ASPM (-) 1 2 10555 -cellosaurus:CVCL_XL61 HAP1 ASPM (-) 2 2 10556 -cellosaurus:CVCL_XL62 HAP1 ASPM (-) 3 2 10557 -cellosaurus:CVCL_SD68 HAP1 ASPSCR1 (-) 1 2 10558 -cellosaurus:CVCL_SD69 HAP1 ASPSCR1 (-) 2 2 10559 -cellosaurus:CVCL_SD70 HAP1 ASPSCR1 (-) 3 2 10560 -cellosaurus:CVCL_SD71 HAP1 ASS1 (-) 1 2 10561 -cellosaurus:CVCL_XL63 HAP1 ASS1 (-) 2 2 10562 -cellosaurus:CVCL_SD72 HAP1 ASXL1 (-) 1 2 10563 -cellosaurus:CVCL_SD73 HAP1 ASXL1 (-) 2 2 10564 -cellosaurus:CVCL_SD74 HAP1 ASXL1 (-) 3 2 10565 -cellosaurus:CVCL_SD75 HAP1 ASXL2 (-) 1 2 10566 -cellosaurus:CVCL_SD76 HAP1 ASXL2 (-) 2 2 10567 -cellosaurus:CVCL_SD77 HAP1 ASXL2 (-) 3 2 10568 -cellosaurus:CVCL_SD78 HAP1 ATAD1 (-) 2 10569 -cellosaurus:CVCL_SD79 HAP1 ATAD2 (-) 1 2 10570 -cellosaurus:CVCL_SD80 HAP1 ATAD2 (-) 2 2 10571 -cellosaurus:CVCL_SD81 HAP1 ATAD2B (-) 1 2 10572 -cellosaurus:CVCL_SD82 HAP1 ATAD2B (-) 2 2 10573 -cellosaurus:CVCL_XL64 HAP1 ATE1 (-) 1 2 10574 -cellosaurus:CVCL_B5JK HAP1 ATE1 (-) 2 2 10575 -cellosaurus:CVCL_SD83 HAP1 ATF3 (-) 1 2 10576 -cellosaurus:CVCL_XL65 HAP1 ATF3 (-) 2 2 10577 -cellosaurus:CVCL_XL66 HAP1 ATF3 (-) 3 2 10578 -cellosaurus:CVCL_XL67 HAP1 ATF3 (-) 4 2 10579 -cellosaurus:CVCL_SD84 HAP1 ATF5 (-) 1 2 10580 -cellosaurus:CVCL_SD85 HAP1 ATF5 (-) 2 2 10581 -cellosaurus:CVCL_XL68 HAP1 ATF5 (-) 3 2 10582 -cellosaurus:CVCL_SD86 HAP1 ATF6 (-) 1 2 10583 -cellosaurus:CVCL_SD87 HAP1 ATF6 (-) 2 2 10584 -cellosaurus:CVCL_SD88 HAP1 ATF6 (-) 3 2 10585 -cellosaurus:CVCL_SD89 HAP1 ATF6 (-) 4 2 10586 -cellosaurus:CVCL_SD90 HAP1 ATG12 (-) 1 2 10587 -cellosaurus:CVCL_SD91 HAP1 ATG12 (-) 2 2 10588 -cellosaurus:CVCL_SD92 HAP1 ATG13 (-) 2 10589 -cellosaurus:CVCL_SD93 HAP1 ATG14 (-) 1 2 10590 -cellosaurus:CVCL_SD94 HAP1 ATG14 (-) 2 2 10591 -cellosaurus:CVCL_SD95 HAP1 ATG14 (-) 3 2 10592 -cellosaurus:CVCL_SD96 HAP1 ATG16L1 (-) 1 2 10593 -cellosaurus:CVCL_SD97 HAP1 ATG16L1 (-) 2 2 10594 -cellosaurus:CVCL_SD98 HAP1 ATG4B (-) 1 2 10595 -cellosaurus:CVCL_SD99 HAP1 ATG4B (-) 2 2 10596 -cellosaurus:CVCL_SE00 HAP1 ATG5 (-) 1 2 10597 -cellosaurus:CVCL_SE01 HAP1 ATG5 (-) 2 2 10598 -cellosaurus:CVCL_SE02 HAP1 ATG7 (-) 1 2 10599 -cellosaurus:CVCL_SE03 HAP1 ATG7 (-) 2 2 10600 -cellosaurus:CVCL_SE04 HAP1 ATG7 (-) 3 2 10601 -cellosaurus:CVCL_SE05 HAP1 ATG9A (-) 1 2 10602 -cellosaurus:CVCL_SE06 HAP1 ATG9A (-) 2 2 10603 -cellosaurus:CVCL_SE07 HAP1 ATG9A (-) 3 2 10604 -cellosaurus:CVCL_SE08 HAP1 ATP11C (-) 1 2 10605 -cellosaurus:CVCL_XL69 HAP1 ATP11C (-) 2 2 10606 -cellosaurus:CVCL_SE09 HAP1 ATP13A2 (-) 1 2 10607 -cellosaurus:CVCL_SE10 HAP1 ATP13A2 (-) 2 2 10608 -cellosaurus:CVCL_SE11 HAP1 ATP1A3 (-) 1 2 10609 -cellosaurus:CVCL_XL70 HAP1 ATP1A3 (-) 2 2 10610 -cellosaurus:CVCL_XL71 HAP1 ATP1A3 (-) 3 2 10611 -cellosaurus:CVCL_XL72 HAP1 ATP1A3 (-) 4 2 10612 -cellosaurus:CVCL_SE12 HAP1 ATP5I (-) 1 2 10613 -cellosaurus:CVCL_SE13 HAP1 ATP5I (-) 2 2 10614 -cellosaurus:CVCL_SE14 HAP1 ATP5I (-) 3 2 10615 -cellosaurus:CVCL_XL73 HAP1 ATP5I (-) 4 2 10616 -cellosaurus:CVCL_SE15 HAP1 ATP5J (-) 1 2 10617 -cellosaurus:CVCL_SE16 HAP1 ATP5J (-) 2 2 10618 -cellosaurus:CVCL_XL74 HAP1 ATP5L (-) 1 2 10619 -cellosaurus:CVCL_XL75 HAP1 ATP5L (-) 2 2 10620 -cellosaurus:CVCL_XL76 HAP1 ATP5L (-) 3 2 10621 -cellosaurus:CVCL_SE17 HAP1 ATP6V0A2 (-) 1 2 10622 -cellosaurus:CVCL_SE18 HAP1 ATP6V0A2 (-) 2 2 10623 -cellosaurus:CVCL_SE19 HAP1 ATP6V1H (-) 1 2 10624 -cellosaurus:CVCL_SE20 HAP1 ATP6V1H (-) 2 2 10625 -cellosaurus:CVCL_XL77 HAP1 ATP7B (-) 2 10626 -cellosaurus:CVCL_SE21 HAP1 ATP9A (-) 1 2 10627 -cellosaurus:CVCL_XL78 HAP1 ATP9A (-) 2 2 10628 -cellosaurus:CVCL_SE22 HAP1 ATP9B (-) 1 2 10629 -cellosaurus:CVCL_XL79 HAP1 ATP9B (-) 2 2 10630 -cellosaurus:CVCL_XL80 HAP1 ATP9B (-) 3 2 10631 -cellosaurus:CVCL_SE23 HAP1 ATPAF1 (-) 1 2 10632 -cellosaurus:CVCL_SE24 HAP1 ATPAF1 (-) 2 2 10633 -cellosaurus:CVCL_SE25 HAP1 ATPAF2 (-) 1 2 10634 -cellosaurus:CVCL_SE26 HAP1 ATPAF2 (-) 2 2 10635 -cellosaurus:CVCL_SE27 HAP1 ATPIF1 (-) 1 2 10636 -cellosaurus:CVCL_SE28 HAP1 ATPIF1 (-) 2 2 10637 -cellosaurus:CVCL_SE29 HAP1 ATRX (-) 1 2 10638 -cellosaurus:CVCL_XL81 HAP1 ATRX (-) 2 2 10639 -cellosaurus:CVCL_XL82 HAP1 ATRX (-) 3 2 10640 -cellosaurus:CVCL_SE30 HAP1 ATXN2 (-) 1 2 10641 -cellosaurus:CVCL_SE31 HAP1 ATXN2 (-) 2 2 10642 -cellosaurus:CVCL_SE32 HAP1 ATXN3 (-) 2 10643 -cellosaurus:CVCL_XL83 HAP1 AUNIP (-) 2 10644 -cellosaurus:CVCL_SE33 HAP1 AXIN1 (-) 1 2 10645 -cellosaurus:CVCL_SE34 HAP1 AXIN1 (-) 2 2 10646 -cellosaurus:CVCL_SE35 HAP1 AXIN1 (-) 3 2 10647 -cellosaurus:CVCL_SE36 HAP1 AXIN1 (-) 4 2 10648 -cellosaurus:CVCL_SE37 HAP1 AXIN1 (-) 5 2 10649 -cellosaurus:CVCL_SE38 HAP1 AXIN2 (-) 1 2 10650 -cellosaurus:CVCL_XL84 HAP1 AXIN2 (-) 2 2 10651 -cellosaurus:CVCL_XL85 HAP1 AXIN2 (-) 3 2 10652 -cellosaurus:CVCL_SE39 HAP1 AXL (-) 2 10653 -cellosaurus:CVCL_SE40 HAP1 AZI2 (-) 1 2 10654 -cellosaurus:CVCL_SE41 HAP1 AZI2 (-) 2 2 10655 -cellosaurus:CVCL_SE42 HAP1 B2M (-) 1 2 10656 -cellosaurus:CVCL_XL86 HAP1 B2M (-) 2 2 10657 -cellosaurus:CVCL_SE43 HAP1 B3GALNT2 (-) 2 10658 -cellosaurus:CVCL_SE44 HAP1 B3GALTL (-) 1 2 10659 -cellosaurus:CVCL_SE45 HAP1 B3GALTL (-) 2 2 10660 -cellosaurus:CVCL_SE46 HAP1 B3GNT1 (-) 1 2 10661 -cellosaurus:CVCL_SE47 HAP1 B3GNT1 (-) 2 2 10662 -cellosaurus:CVCL_SE48 HAP1 B3GNT4 (-) 1 2 10663 -cellosaurus:CVCL_XL87 HAP1 B3GNT4 (-) 2 2 10664 -cellosaurus:CVCL_XL88 HAP1 B4GALNT1 (-) 2 10665 -cellosaurus:CVCL_SE49 HAP1 B4GALNT2 (-) 1 2 10666 -cellosaurus:CVCL_XL89 HAP1 B4GALNT2 (-) 2 2 10667 -cellosaurus:CVCL_XL90 HAP1 B4GALNT2 (-) 3 2 10668 -cellosaurus:CVCL_SE50 HAP1 B4GALNT3 (-) 1 2 10669 -cellosaurus:CVCL_SE51 HAP1 B4GALNT3 (-) 2 2 10670 -cellosaurus:CVCL_SE52 HAP1 B4GALNT4 (-) 1 2 10671 -cellosaurus:CVCL_SE53 HAP1 B4GALNT4 (-) 2 2 10672 -cellosaurus:CVCL_SE54 HAP1 B4GALT1 (-) 1 2 10673 -cellosaurus:CVCL_SE55 HAP1 B4GALT1 (-) 2 2 10674 -cellosaurus:CVCL_XL91 HAP1 B4GALT5 (-) 2 10675 -cellosaurus:CVCL_SE56 HAP1 B4GALT7 (-) 1 2 10676 -cellosaurus:CVCL_SE57 HAP1 B4GALT7 (-) 2 2 10677 -cellosaurus:CVCL_SE58 HAP1 BACE1 (-) 1 2 10678 -cellosaurus:CVCL_XL92 HAP1 BACE1 (-) 2 2 10679 -cellosaurus:CVCL_SE59 HAP1 BACH1 (-) 1 2 10680 -cellosaurus:CVCL_XL93 HAP1 BACH1 (-) 2 2 10681 -cellosaurus:CVCL_SE60 HAP1 BAD (-) 1 2 10682 -cellosaurus:CVCL_XL94 HAP1 BAD (-) 2 2 10683 -cellosaurus:CVCL_SE61 HAP1 BAG3 (-) 1 2 10684 -cellosaurus:CVCL_XL95 HAP1 BAG3 (-) 2 2 10685 -cellosaurus:CVCL_SE62 HAP1 BAG4 (-) 1 2 10686 -cellosaurus:CVCL_SE63 HAP1 BAG4 (-) 2 2 10687 -cellosaurus:CVCL_SE64 HAP1 BAG6 (-) 1 2 10688 -cellosaurus:CVCL_SE65 HAP1 BAG6 (-) 2 2 10689 -cellosaurus:CVCL_SE66 HAP1 BAK1 (-) 1 2 10690 -cellosaurus:CVCL_XL96 HAP1 BAK1 (-) 2 2 10691 -cellosaurus:CVCL_SE67 HAP1 BAP1 (-) 2 10692 -cellosaurus:CVCL_SE68 HAP1 BAX (-) 1 2 10693 -cellosaurus:CVCL_SE69 HAP1 BAX (-) 2 2 10694 -cellosaurus:CVCL_SE70 HAP1 BAZ1A (-) 1 2 10695 -cellosaurus:CVCL_SE71 HAP1 BAZ1A (-) 2 2 10696 -cellosaurus:CVCL_SE72 HAP1 BAZ1B (-) 2 10697 -cellosaurus:CVCL_SE73 HAP1 BAZ2A (-) 1 2 10698 -cellosaurus:CVCL_SE74 HAP1 BAZ2A (-) 2 2 10699 -cellosaurus:CVCL_SE75 HAP1 BAZ2A (-) 3 2 10700 -cellosaurus:CVCL_SE76 HAP1 BAZ2B (-) 1 2 10701 -cellosaurus:CVCL_SE77 HAP1 BAZ2B (-) 2 2 10702 -cellosaurus:CVCL_SE78 HAP1 BAZ2B (-) 3 2 10703 -cellosaurus:CVCL_SE79 HAP1 BAZ2B (-) 4 2 10704 -cellosaurus:CVCL_SE80 HAP1 BAZ2B (-) 5 2 10705 -cellosaurus:CVCL_SE81 HAP1 BAZ2B (-) 6 2 10706 -cellosaurus:CVCL_SE82 HAP1 BBC3 (-) 2 10707 -cellosaurus:CVCL_XL97 HAP1 BCAT2 (-) 2 10708 -cellosaurus:CVCL_XL98 HAP1 BCDIN3D (-) 2 10709 -cellosaurus:CVCL_SE83 HAP1 BCHE (-) 1 2 10710 -cellosaurus:CVCL_SE84 HAP1 BCHE (-) 2 2 10711 -cellosaurus:CVCL_SE85 HAP1 BCHE (-) 3 2 10712 -cellosaurus:CVCL_XL99 HAP1 BCKDHA (-) 1 2 10713 -cellosaurus:CVCL_B5JL HAP1 BCKDHA (-) 2 2 10714 -cellosaurus:CVCL_SE86 HAP1 BCKDK (-) 2 10715 -cellosaurus:CVCL_SE87 HAP1 BCL11A (-) 1 2 10716 -cellosaurus:CVCL_SE88 HAP1 BCL11A (-) 2 2 10717 -cellosaurus:CVCL_SE89 HAP1 BCL11B (-) 1 2 10718 -cellosaurus:CVCL_SE90 HAP1 BCL11B (-) 2 2 10719 -cellosaurus:CVCL_SE91 HAP1 BCL2 (-) 1 2 10720 -cellosaurus:CVCL_SE92 HAP1 BCL2 (-) 2 2 10721 -cellosaurus:CVCL_SE93 HAP1 BCL2 (-) 3 2 10722 -cellosaurus:CVCL_SE94 HAP1 BCL2 (-) 4 2 10723 -cellosaurus:CVCL_SE95 HAP1 BCL2L2 (-) 1 2 10724 -cellosaurus:CVCL_SE96 HAP1 BCL2L2 (-) 2 2 10725 -cellosaurus:CVCL_SE97 HAP1 BCL2L2 (-) 3 2 10726 -cellosaurus:CVCL_SE98 HAP1 BCL3 (-) 1 2 10727 -cellosaurus:CVCL_SE99 HAP1 BCL3 (-) 2 2 10728 -cellosaurus:CVCL_SF00 HAP1 BCL6 (-) 1 2 10729 -cellosaurus:CVCL_XM00 HAP1 BCL6 (-) 2 2 10730 -cellosaurus:CVCL_SF01 HAP1 BCL7A (-) 1 2 10731 -cellosaurus:CVCL_XM01 HAP1 BCL7A (-) 2 2 10732 -cellosaurus:CVCL_XM02 HAP1 BCL7A (-) 3 2 10733 -cellosaurus:CVCL_SF02 HAP1 BCL7B (-) 1 2 10734 -cellosaurus:CVCL_SF03 HAP1 BCL7B (-) 2 2 10735 -cellosaurus:CVCL_SF04 HAP1 BCL7B (-) 3 2 10736 -cellosaurus:CVCL_SF05 HAP1 BCL9 (-) 1 2 10737 -cellosaurus:CVCL_SF06 HAP1 BCL9 (-) 2 2 10738 -cellosaurus:CVCL_SF07 HAP1 BCOR (-) 1 2 10739 -cellosaurus:CVCL_SF08 HAP1 BCOR (-) 2 2 10740 -cellosaurus:CVCL_SF09 HAP1 BCR (-) 1 2 10741 -cellosaurus:CVCL_SF10 HAP1 BCR (-) 2 2 10742 -cellosaurus:CVCL_SF11 HAP1 BCR (-) 3 2 10743 -cellosaurus:CVCL_SF12 HAP1 BEND3 (-) 1 2 10744 -cellosaurus:CVCL_SF13 HAP1 BEND3 (-) 2 2 10745 -cellosaurus:CVCL_SF14 HAP1 BIN1 (-) 1 2 10746 -cellosaurus:CVCL_SF15 HAP1 BIN1 (-) 2 2 10747 -cellosaurus:CVCL_SF16 HAP1 BIRC2 (-) 1 2 10748 -cellosaurus:CVCL_SF17 HAP1 BIRC2 (-) 2 2 10749 -cellosaurus:CVCL_SF18 HAP1 BIRC3 (-) 1 2 10750 -cellosaurus:CVCL_SF19 HAP1 BIRC3 (-) 2 2 10751 -cellosaurus:CVCL_SF20 HAP1 BIRC3 (-) 3 2 10752 -cellosaurus:CVCL_SF21 HAP1 BIRC6 (-) 1 2 10753 -cellosaurus:CVCL_SF22 HAP1 BIRC6 (-) 2 2 10754 -cellosaurus:CVCL_SF23 HAP1 BIVM-ERCC5 (-) 1 2 10755 -cellosaurus:CVCL_SF24 HAP1 BIVM-ERCC5 (-) 2 2 10756 -cellosaurus:CVCL_SF25 HAP1 BLM (-) 1 2 10757 -cellosaurus:CVCL_SF26 HAP1 BLM (-) 2 2 10758 -cellosaurus:CVCL_SF27 HAP1 BLVRB (-) 1 2 10759 -cellosaurus:CVCL_SF28 HAP1 BLVRB (-) 2 2 10760 -cellosaurus:CVCL_SF29 HAP1 BLVRB (-) 3 2 10761 -cellosaurus:CVCL_SF30 HAP1 BLVRB (-) 4 2 10762 -cellosaurus:CVCL_SF31 HAP1 BMI1 (-) 1 2 10763 -cellosaurus:CVCL_SF32 HAP1 BMI1 (-) 2 2 10764 -cellosaurus:CVCL_SF33 HAP1 BMI1 (-) 3 2 10765 -cellosaurus:CVCL_SF34 HAP1 BMP2K (-) 1 2 10766 -cellosaurus:CVCL_SF35 HAP1 BMP2K (-) 2 2 10767 -cellosaurus:CVCL_SF36 HAP1 BMP4 (-) 1 2 10768 -cellosaurus:CVCL_XM03 HAP1 BMP4 (-) 2 2 10769 -cellosaurus:CVCL_SF37 HAP1 BMP7 (-) 1 2 10770 -cellosaurus:CVCL_XM04 HAP1 BMP7 (-) 2 2 10771 -cellosaurus:CVCL_SF38 HAP1 BMPR1A (-) 1 2 10772 -cellosaurus:CVCL_SF39 HAP1 BMPR1A (-) 2 2 10773 -cellosaurus:CVCL_SF40 HAP1 BMPR1B (-) 2 10774 -cellosaurus:CVCL_SF41 HAP1 BMPR2 (-) 1 2 10775 -cellosaurus:CVCL_SF42 HAP1 BMPR2 (-) 2 2 10776 -cellosaurus:CVCL_SF43 HAP1 BNIP3 (-) 1 2 10777 -cellosaurus:CVCL_XM05 HAP1 BNIP3 (-) 2 2 10778 -cellosaurus:CVCL_XM06 HAP1 BOLA3 (-) 2 10779 -cellosaurus:CVCL_SF44 HAP1 BPGM (-) 1 2 10780 -cellosaurus:CVCL_XM07 HAP1 BPGM (-) 2 2 10781 -cellosaurus:CVCL_SF45 HAP1 BPTF (-) 1 2 10782 -cellosaurus:CVCL_SF46 HAP1 BPTF (-) 2 2 10783 -cellosaurus:CVCL_SF47 HAP1 BRAF (-) 1 2 10784 -cellosaurus:CVCL_SF48 HAP1 BRAF (-) 2 2 10785 -cellosaurus:CVCL_SF49 HAP1 BRAF (-) 3 2 10786 -cellosaurus:CVCL_SF50 HAP1 BRCC3 (-) 1 2 10787 -cellosaurus:CVCL_SF51 HAP1 BRCC3 (-) 2 2 10788 -cellosaurus:CVCL_SF52 HAP1 BRD1 (-) 1 2 10789 -cellosaurus:CVCL_XM08 HAP1 BRD1 (-) 2 2 10790 -cellosaurus:CVCL_XM09 HAP1 BRD1 (-) 3 2 10791 -cellosaurus:CVCL_XM10 HAP1 BRD1 (-) 4 2 10792 -cellosaurus:CVCL_XM11 HAP1 BRD1 (-) 5 2 10793 -cellosaurus:CVCL_SF53 HAP1 BRD2 (-) 1 2 10794 -cellosaurus:CVCL_SF54 HAP1 BRD2 (-) 2 2 10795 -cellosaurus:CVCL_SF55 HAP1 BRD2 (-) 3 2 10796 -cellosaurus:CVCL_SF56 HAP1 BRD3 (-) 1 2 10797 -cellosaurus:CVCL_SF57 HAP1 BRD3 (-) 2 2 10798 -cellosaurus:CVCL_SF58 HAP1 BRD3 (-) 3 2 10799 -cellosaurus:CVCL_SF59 HAP1 BRD4 (-) 1 2 10800 -cellosaurus:CVCL_SF60 HAP1 BRD4 (-) 2 2 10801 -cellosaurus:CVCL_SF61 HAP1 BRD4 (-) 3 2 10802 -cellosaurus:CVCL_SF62 HAP1 BRD4 (-) 4 2 10803 -cellosaurus:CVCL_SF63 HAP1 BRD4 (-) 5 2 10804 -cellosaurus:CVCL_SF64 HAP1 BRD7 (-) 2 10805 -cellosaurus:CVCL_SF65 HAP1 BRD8 (-) 1 2 10806 -cellosaurus:CVCL_SF66 HAP1 BRD8 (-) 2 2 10807 -cellosaurus:CVCL_SF67 HAP1 BRD9 (-) 1 2 10808 -cellosaurus:CVCL_SF68 HAP1 BRD9 (-) 2 2 10809 -cellosaurus:CVCL_SF69 HAP1 BRDT (-) 1 2 10810 -cellosaurus:CVCL_SF70 HAP1 BRDT (-) 2 2 10811 -cellosaurus:CVCL_SF71 HAP1 BRIP1 (-) 1 2 10812 -cellosaurus:CVCL_XM12 HAP1 BRIP1 (-) 2 2 10813 -cellosaurus:CVCL_SF72 HAP1 BRK1 (-) 1 2 10814 -cellosaurus:CVCL_SF73 HAP1 BRK1 (-) 2 2 10815 -cellosaurus:CVCL_SF74 HAP1 BRK1 (-) 3 2 10816 -cellosaurus:CVCL_SF75 HAP1 BRPF1 (-) 1 2 10817 -cellosaurus:CVCL_SF76 HAP1 BRPF1 (-) 2 2 10818 -cellosaurus:CVCL_SF77 HAP1 BRPF1 (-) 3 2 10819 -cellosaurus:CVCL_SF78 HAP1 BRPF3 (-) 1 2 10820 -cellosaurus:CVCL_SF79 HAP1 BRPF3 (-) 2 2 10821 -cellosaurus:CVCL_SF80 HAP1 BRSK1 (-) 1 2 10822 -cellosaurus:CVCL_SF81 HAP1 BRSK1 (-) 2 2 10823 -cellosaurus:CVCL_SF82 HAP1 BRSK2 (-) 1 2 10824 -cellosaurus:CVCL_SF83 HAP1 BRSK2 (-) 2 2 10825 -cellosaurus:CVCL_SF84 HAP1 BRWD1 (-) 1 2 10826 -cellosaurus:CVCL_SF85 HAP1 BRWD1 (-) 2 2 10827 -cellosaurus:CVCL_SF86 HAP1 BRWD3 (-) 2 10828 -cellosaurus:CVCL_SF87 HAP1 BSG (-) 2 10829 -cellosaurus:CVCL_SF88 HAP1 BST2 (-) 1 2 10830 -cellosaurus:CVCL_SF89 HAP1 BST2 (-) 2 2 10831 -cellosaurus:CVCL_SF90 HAP1 BTD (-) 1 2 10832 -cellosaurus:CVCL_XM13 HAP1 BTD (-) 2 2 10833 -cellosaurus:CVCL_XM14 HAP1 BTG1 (-) 2 10834 -cellosaurus:CVCL_SF91 HAP1 BTRC (-) 1 2 10835 -cellosaurus:CVCL_SF92 HAP1 BTRC (-) 2 2 10836 -cellosaurus:CVCL_SF93 HAP1 BUB1 (-) 1 2 10837 -cellosaurus:CVCL_SF94 HAP1 BUB1 (-) 2 2 10838 -cellosaurus:CVCL_SF95 HAP1 BUB1 (-) 3 2 10839 -cellosaurus:CVCL_XM15 HAP1 C10orf2 (-) 2 10840 -cellosaurus:CVCL_SF96 HAP1 C10orf32 (-) 1 2 10841 -cellosaurus:CVCL_SF97 HAP1 C10orf32 (-) 2 2 10842 -cellosaurus:CVCL_SF98 HAP1 C11orf30 (-) 1 2 10843 -cellosaurus:CVCL_SF99 HAP1 C11orf30 (-) 2 2 10844 -cellosaurus:CVCL_SG00 HAP1 C12orf10 (-) 1 2 10845 -cellosaurus:CVCL_XM16 HAP1 C12orf10 (-) 2 2 10846 -cellosaurus:CVCL_SG01 HAP1 C12orf44 (-) 1 2 10847 -cellosaurus:CVCL_SG02 HAP1 C12orf44 (-) 2 2 10848 -cellosaurus:CVCL_SG03 HAP1 C14orf159 (-) 1 2 10849 -cellosaurus:CVCL_XM17 HAP1 C14orf159 (-) 2 2 10850 -cellosaurus:CVCL_XM18 HAP1 C14orf159 (-) 3 2 10851 -cellosaurus:CVCL_XM19 HAP1 C14orf159 (-) 4 2 10852 -cellosaurus:CVCL_SG04 HAP1 C14orf2 (-) 1 2 10853 -cellosaurus:CVCL_SG05 HAP1 C14orf2 (-) 2 2 10854 -cellosaurus:CVCL_SG06 HAP1 C15orf40 (-) 1 2 10855 -cellosaurus:CVCL_XM20 HAP1 C15orf40 (-) 2 2 10856 -cellosaurus:CVCL_XM21 HAP1 C15orf40 (-) 3 2 10857 -cellosaurus:CVCL_SG07 HAP1 C15orf61 (-) 1 2 10858 -cellosaurus:CVCL_XM22 HAP1 C15orf61 (-) 2 2 10859 -cellosaurus:CVCL_XM23 HAP1 C15orf61 (-) 3 2 10860 -cellosaurus:CVCL_XM24 HAP1 C15orf61 (-) 4 2 10861 -cellosaurus:CVCL_XM25 HAP1 C15orf61 (-) 5 2 10862 -cellosaurus:CVCL_SG08 HAP1 C17orf103 (-) 1 2 10863 -cellosaurus:CVCL_SG09 HAP1 C17orf103 (-) 2 2 10864 -cellosaurus:CVCL_SG10 HAP1 C17orf59 (-) 2 10865 -cellosaurus:CVCL_SG11 HAP1 C17orf70 (-) 1 2 10866 -cellosaurus:CVCL_SG12 HAP1 C17orf70 (-) 2 2 10867 -cellosaurus:CVCL_XM26 HAP1 C17orf80 (-) 1 2 10868 -cellosaurus:CVCL_B5JM HAP1 C17orf80 (-) 2 2 10869 -cellosaurus:CVCL_B5JN HAP1 C17orf80 (-) 3 2 10870 -cellosaurus:CVCL_B5JP HAP1 C17orf80 (-) 4 2 10871 -cellosaurus:CVCL_B5JQ HAP1 C17orf80 (-) 5 2 10872 -cellosaurus:CVCL_SG13 HAP1 C19orf70 (-) 1 2 10873 -cellosaurus:CVCL_SG14 HAP1 C19orf70 (-) 2 2 10874 -cellosaurus:CVCL_SG15 HAP1 C1GALT1C1 (-) 1 2 10875 -cellosaurus:CVCL_SG16 HAP1 C1GALT1C1 (-) 2 2 10876 -cellosaurus:CVCL_SG17 HAP1 C1orf112 (-) 1 2 10877 -cellosaurus:CVCL_SG18 HAP1 C1orf112 (-) 2 2 10878 -cellosaurus:CVCL_XM27 HAP1 C1orf112 (-) 3 2 10879 -cellosaurus:CVCL_XM28 HAP1 C1orf112 (-) 4 2 10880 -cellosaurus:CVCL_SG19 HAP1 C1orf115 (-) 1 2 10881 -cellosaurus:CVCL_SG20 HAP1 C1orf115 (-) 2 2 10882 -cellosaurus:CVCL_SG21 HAP1 C1orf115 (-) 3 2 10883 -cellosaurus:CVCL_SG22 HAP1 C1orf115 (-) 4 2 10884 -cellosaurus:CVCL_SG23 HAP1 C1orf43 (-) 1 2 10885 -cellosaurus:CVCL_SG24 HAP1 C1orf43 (-) 2 2 10886 -cellosaurus:CVCL_SG25 HAP1 C1orf43 (-) 3 2 10887 -cellosaurus:CVCL_SG26 HAP1 C1orf43 (-) 4 2 10888 -cellosaurus:CVCL_SG27 HAP1 C1QBP (-) 2 10889 -cellosaurus:CVCL_SG28 HAP1 C20orf24 (-) 1 2 10890 -cellosaurus:CVCL_XM29 HAP1 C20orf24 (-) 2 2 10891 -cellosaurus:CVCL_SG29 HAP1 C2orf69 (-) 1 2 10892 -cellosaurus:CVCL_XM30 HAP1 C2orf69 (-) 2 2 10893 -cellosaurus:CVCL_XM31 HAP1 C2orf69 (-) 3 2 10894 -cellosaurus:CVCL_XM32 HAP1 C2orf69 (-) 4 2 10895 -cellosaurus:CVCL_XM33 HAP1 C2orf69 (-) 5 2 10896 -cellosaurus:CVCL_XM34 HAP1 C3 (-) 2 10897 -cellosaurus:CVCL_SG30 HAP1 C3orf33 (-) 1 2 10898 -cellosaurus:CVCL_XM35 HAP1 C3orf33 (-) 2 2 10899 -cellosaurus:CVCL_XM36 HAP1 C3orf33 (-) 3 2 10900 -cellosaurus:CVCL_XM37 HAP1 C3orf33 (-) 4 2 10901 -cellosaurus:CVCL_SG31 HAP1 C5 (-) 1 2 10902 -cellosaurus:CVCL_SG32 HAP1 C5 (-) 2 2 10903 -cellosaurus:CVCL_XM38 HAP1 C6orf106 (-) 2 10904 -cellosaurus:CVCL_SG33 HAP1 C6orf203 (-) 1 2 10905 -cellosaurus:CVCL_SG34 HAP1 C6orf203 (-) 2 2 10906 -cellosaurus:CVCL_SG35 HAP1 C7orf49 (-) 1 2 10907 -cellosaurus:CVCL_SG36 HAP1 C7orf49 (-) 2 2 10908 -cellosaurus:CVCL_XM39 HAP1 C7orf55 (-) 1 2 10909 -cellosaurus:CVCL_B5JR HAP1 C7orf55 (-) 2 2 10910 -cellosaurus:CVCL_SG37 HAP1 C9orf142 (-) 1 2 10911 -cellosaurus:CVCL_SG38 HAP1 C9orf142 (-) 2 2 10912 -cellosaurus:CVCL_SG39 HAP1 C9orf72 (-) 1 2 10913 -cellosaurus:CVCL_SG40 HAP1 C9orf72 (-) 2 2 10914 -cellosaurus:CVCL_SG41 HAP1 CA2 (-) 1 2 10915 -cellosaurus:CVCL_SG42 HAP1 CA2 (-) 2 2 10916 -cellosaurus:CVCL_SG43 HAP1 CABIN1 (-) 1 2 10917 -cellosaurus:CVCL_XM40 HAP1 CABIN1 (-) 2 2 10918 -cellosaurus:CVCL_XM41 HAP1 CABIN1 (-) 3 2 10919 -cellosaurus:CVCL_SG44 HAP1 CACNA1H (-) 1 2 10920 -cellosaurus:CVCL_SG45 HAP1 CACNA1H (-) 2 2 10921 -cellosaurus:CVCL_SG46 HAP1 CACNA2D1 (-) 2 10922 -cellosaurus:CVCL_SG47 HAP1 CACNA2D2 (-) 1 2 10923 -cellosaurus:CVCL_SG48 HAP1 CACNA2D2 (-) 2 2 10924 -cellosaurus:CVCL_SG49 HAP1 CACNB1 (-) 2 10925 -cellosaurus:CVCL_SG50 HAP1 CACNB2 (-) 1 2 10926 -cellosaurus:CVCL_SG51 HAP1 CACNB2 (-) 2 2 10927 -cellosaurus:CVCL_SG52 HAP1 CACNB3 (-) 1 2 10928 -cellosaurus:CVCL_SG53 HAP1 CACNB3 (-) 2 2 10929 -cellosaurus:CVCL_SG54 HAP1 CACNB4 (-) 1 2 10930 -cellosaurus:CVCL_SG55 HAP1 CACNB4 (-) 2 2 10931 -cellosaurus:CVCL_XM42 HAP1 CAD (-) 2 10932 -cellosaurus:CVCL_SG56 HAP1 CALB1 (-) 1 2 10933 -cellosaurus:CVCL_XM43 HAP1 CALB1 (-) 2 2 10934 -cellosaurus:CVCL_SG57 HAP1 CALM2 (-) 1 2 10935 -cellosaurus:CVCL_SG58 HAP1 CALM2 (-) 2 2 10936 -cellosaurus:CVCL_SG59 HAP1 CALM3 (-) 1 2 10937 -cellosaurus:CVCL_SG60 HAP1 CALM3 (-) 2 2 10938 -cellosaurus:CVCL_SG61 HAP1 CALR (-) 1 2 10939 -cellosaurus:CVCL_SG62 HAP1 CALR (-) 2 2 10940 -cellosaurus:CVCL_SG63 HAP1 CALR (-) 3 2 10941 -cellosaurus:CVCL_SG64 HAP1 CAMK1D (-) 1 2 10942 -cellosaurus:CVCL_SG65 HAP1 CAMK1D (-) 2 2 10943 -cellosaurus:CVCL_SG66 HAP1 CAMK2D (-) 2 10944 -cellosaurus:CVCL_SG67 HAP1 CAMK2G (-) 2 10945 -cellosaurus:CVCL_SG68 HAP1 CAMKK1 (-) 1 2 10946 -cellosaurus:CVCL_SG69 HAP1 CAMKK1 (-) 2 2 10947 -cellosaurus:CVCL_SG70 HAP1 CAMKK1 (-) 3 2 10948 -cellosaurus:CVCL_SG71 HAP1 CAMKK2 (-) 2 10949 -cellosaurus:CVCL_SG72 HAP1 CAMKV (-) 1 2 10950 -cellosaurus:CVCL_SG73 HAP1 CAMKV (-) 2 2 10951 -cellosaurus:CVCL_SG74 HAP1 CAMKV (-) 3 2 10952 -cellosaurus:CVCL_SG75 HAP1 CANX (-) 1 2 10953 -cellosaurus:CVCL_SG76 HAP1 CANX (-) 2 2 10954 -cellosaurus:CVCL_SG77 HAP1 CAPN1 (-) 2 10955 -cellosaurus:CVCL_XM44 HAP1 CAPN2 (-) 2 10956 -cellosaurus:CVCL_SG78 HAP1 CAPNS1 (-) 1 2 10957 -cellosaurus:CVCL_SG79 HAP1 CAPNS1 (-) 2 2 10958 -cellosaurus:CVCL_SG80 HAP1 CARKD (-) 1 2 10959 -cellosaurus:CVCL_SG81 HAP1 CARKD (-) 2 2 10960 -cellosaurus:CVCL_SG82 HAP1 CARM1 (-) 1 2 10961 -cellosaurus:CVCL_SG83 HAP1 CARM1 (-) 2 2 10962 -cellosaurus:CVCL_SG84 HAP1 CARM1 (-) 3 2 10963 -cellosaurus:CVCL_SG85 HAP1 CASC3 (-) 1 2 10964 -cellosaurus:CVCL_SG86 HAP1 CASC3 (-) 2 2 10965 -cellosaurus:CVCL_SG87 HAP1 CASC3 (-) 3 2 10966 -cellosaurus:CVCL_SG88 HAP1 CASD1 (-) 2 10967 -cellosaurus:CVCL_SG89 HAP1 CASK (-) 2 10968 -cellosaurus:CVCL_SG90 HAP1 CASP2 (-) 1 2 10969 -cellosaurus:CVCL_SG91 HAP1 CASP2 (-) 2 2 10970 -cellosaurus:CVCL_SG92 HAP1 CASP2 (-) 3 2 10971 -cellosaurus:CVCL_SG93 HAP1 CASP3 (-) 2 10972 -cellosaurus:CVCL_SG94 HAP1 CASP6 (-) 1 2 10973 -cellosaurus:CVCL_SG95 HAP1 CASP6 (-) 2 2 10974 -cellosaurus:CVCL_SG96 HAP1 CASP7 (-) 1 2 10975 -cellosaurus:CVCL_SG97 HAP1 CASP7 (-) 2 2 10976 -cellosaurus:CVCL_SG98 HAP1 CASP8 (-) 1 2 10977 -cellosaurus:CVCL_SG99 HAP1 CASP8 (-) 2 2 10978 -cellosaurus:CVCL_SH00 HAP1 CASP9 (-) 2 10979 -cellosaurus:CVCL_SH01 HAP1 CAST (-) 1 2 10980 -cellosaurus:CVCL_SH02 HAP1 CAST (-) 2 2 10981 -cellosaurus:CVCL_SH03 HAP1 CAT (-) 1 2 10982 -cellosaurus:CVCL_SH04 HAP1 CAT (-) 2 2 10983 -cellosaurus:CVCL_SH05 HAP1 CBL (-) 1 2 10984 -cellosaurus:CVCL_XM45 HAP1 CBL (-) 2 2 10985 -cellosaurus:CVCL_SH06 HAP1 CBX1 (-) 1 2 10986 -cellosaurus:CVCL_SH07 HAP1 CBX1 (-) 2 2 10987 -cellosaurus:CVCL_SH08 HAP1 CBX1 (-) 3 2 10988 -cellosaurus:CVCL_SH09 HAP1 CBX3 (-) 1 2 10989 -cellosaurus:CVCL_SH10 HAP1 CBX3 (-) 2 2 10990 -cellosaurus:CVCL_SH11 HAP1 CBX3 (-) 3 2 10991 -cellosaurus:CVCL_SH12 HAP1 CBX5 (-) 1 2 10992 -cellosaurus:CVCL_SH13 HAP1 CBX5 (-) 2 2 10993 -cellosaurus:CVCL_SH14 HAP1 CBX5 (-) 3 2 10994 -cellosaurus:CVCL_SH15 HAP1 CBX5 (-) 4 2 10995 -cellosaurus:CVCL_SH16 HAP1 CBX5 (-) 5 2 10996 -cellosaurus:CVCL_SH17 HAP1 CBX5 (-) 6 2 10997 -cellosaurus:CVCL_SH18 HAP1 CCDC101 (-) 2 10998 -cellosaurus:CVCL_XM46 HAP1 CCDC109B (-) 2 10999 -cellosaurus:CVCL_SH19 HAP1 CCDC132 (-) 2 11000 -cellosaurus:CVCL_SH20 HAP1 CCDC51 (-) 1 2 11001 -cellosaurus:CVCL_XM47 HAP1 CCDC51 (-) 2 2 11002 -cellosaurus:CVCL_XM48 HAP1 CCDC51 (-) 3 2 11003 -cellosaurus:CVCL_XM49 HAP1 CCDC51 (-) 4 2 11004 -cellosaurus:CVCL_XM50 HAP1 CCDC51 (-) 5 2 11005 -cellosaurus:CVCL_SH21 HAP1 CCDC53 (-) 1 2 11006 -cellosaurus:CVCL_SH22 HAP1 CCDC53 (-) 2 2 11007 -cellosaurus:CVCL_SH23 HAP1 CCDC53 (-) 3 2 11008 -cellosaurus:CVCL_SH24 HAP1 CCDC6 (-) 1 2 11009 -cellosaurus:CVCL_SH25 HAP1 CCDC6 (-) 2 2 11010 -cellosaurus:CVCL_SH26 HAP1 CCDC6 (-) 3 2 11011 -cellosaurus:CVCL_XM51 HAP1 CCDC92 (-) 1 2 11012 -cellosaurus:CVCL_B5JS HAP1 CCDC92 (-) 2 2 11013 -cellosaurus:CVCL_B5JT HAP1 CCDC92 (-) 3 2 11014 -cellosaurus:CVCL_SH27 HAP1 CCKBR (-) 1 2 11015 -cellosaurus:CVCL_SH28 HAP1 CCKBR (-) 2 2 11016 -cellosaurus:CVCL_SH29 HAP1 CCL2 (-) 1 2 11017 -cellosaurus:CVCL_XM52 HAP1 CCL2 (-) 2 2 11018 -cellosaurus:CVCL_SH30 HAP1 CCNB1 (-) 1 2 11019 -cellosaurus:CVCL_SH31 HAP1 CCNB1 (-) 2 2 11020 -cellosaurus:CVCL_SH32 HAP1 CCNB1IP1 (-) 1 2 11021 -cellosaurus:CVCL_XM53 HAP1 CCNB1IP1 (-) 2 2 11022 -cellosaurus:CVCL_SH33 HAP1 CCND1 (-) 1 2 11023 -cellosaurus:CVCL_SH34 HAP1 CCND1 (-) 2 2 11024 -cellosaurus:CVCL_SH35 HAP1 CCND2 (-) 1 2 11025 -cellosaurus:CVCL_SH36 HAP1 CCND2 (-) 2 2 11026 -cellosaurus:CVCL_SH37 HAP1 CCND3 (-) 2 11027 -cellosaurus:CVCL_SH38 HAP1 CCNE1 (-) 1 2 11028 -cellosaurus:CVCL_XM54 HAP1 CCNE1 (-) 2 2 11029 -cellosaurus:CVCL_SH39 HAP1 CCNE2 (-) 1 2 11030 -cellosaurus:CVCL_SH40 HAP1 CCNE2 (-) 2 2 11031 -cellosaurus:CVCL_SH41 HAP1 CCNG1 (-) 1 2 11032 -cellosaurus:CVCL_SH42 HAP1 CCNG1 (-) 2 2 11033 -cellosaurus:CVCL_SH43 HAP1 CCNG2 (-) 1 2 11034 -cellosaurus:CVCL_XM55 HAP1 CCNG2 (-) 2 2 11035 -cellosaurus:CVCL_SH44 HAP1 CCNJ (-) 2 11036 -cellosaurus:CVCL_SH45 HAP1 CCNL2 (-) 2 11037 -cellosaurus:CVCL_SH46 HAP1 CCNO (-) 1 2 11038 -cellosaurus:CVCL_SH47 HAP1 CCNO (-) 2 2 11039 -cellosaurus:CVCL_SH48 HAP1 CCNT1 (-) 1 2 11040 -cellosaurus:CVCL_SH49 HAP1 CCNT1 (-) 2 2 11041 -cellosaurus:CVCL_SH50 HAP1 CCNT2 (-) 1 2 11042 -cellosaurus:CVCL_SH51 HAP1 CCNT2 (-) 2 2 11043 -cellosaurus:CVCL_SH52 HAP1 CCNY (-) 1 2 11044 -cellosaurus:CVCL_SH53 HAP1 CCNY (-) 2 2 11045 -cellosaurus:CVCL_SH54 HAP1 CCNYL1 (-) 2 11046 -cellosaurus:CVCL_SH55 HAP1 CCR5 (-) 1 2 11047 -cellosaurus:CVCL_SH56 HAP1 CCR5 (-) 2 2 11048 -cellosaurus:CVCL_SH57 HAP1 CCSER1 (-) 1 2 11049 -cellosaurus:CVCL_XM56 HAP1 CCSER1 (-) 2 2 11050 -cellosaurus:CVCL_SH58 HAP1 CD226 (-) 1 2 11051 -cellosaurus:CVCL_SH59 HAP1 CD226 (-) 2 2 11052 -cellosaurus:CVCL_SH60 HAP1 CD24 (-) 1 2 11053 -cellosaurus:CVCL_SH61 HAP1 CD24 (-) 2 2 11054 -cellosaurus:CVCL_SH62 HAP1 CD24 (-) 3 2 11055 -cellosaurus:CVCL_SH63 HAP1 CD24 (-) 4 2 11056 -cellosaurus:CVCL_SH64 HAP1 CD24 (-) 5 2 11057 -cellosaurus:CVCL_SH65 HAP1 CD24 (-) 6 2 11058 -cellosaurus:CVCL_SH66 HAP1 CD24 (-) 7 2 11059 -cellosaurus:CVCL_SH67 HAP1 CD24 (-) 8 2 11060 -cellosaurus:CVCL_SH68 HAP1 CD274 (-) 1 2 11061 -cellosaurus:CVCL_XM57 HAP1 CD274 (-) 2 2 11062 -cellosaurus:CVCL_SH69 HAP1 CD2BP2 (-) 1 2 11063 -cellosaurus:CVCL_SH70 HAP1 CD2BP2 (-) 2 2 11064 -cellosaurus:CVCL_SH71 HAP1 CD36 (-) 1 2 11065 -cellosaurus:CVCL_XM58 HAP1 CD36 (-) 2 2 11066 -cellosaurus:CVCL_SH72 HAP1 CD44 (-) 1 2 11067 -cellosaurus:CVCL_XM59 HAP1 CD44 (-) 2 2 11068 -cellosaurus:CVCL_SH73 HAP1 CD46 (-) 1 2 11069 -cellosaurus:CVCL_SH82 HAP1 CD46 (-) 10 2 11070 -cellosaurus:CVCL_SH83 HAP1 CD46 (-) 11 2 11071 -cellosaurus:CVCL_SH74 HAP1 CD46 (-) 2 2 11072 -cellosaurus:CVCL_SH75 HAP1 CD46 (-) 3 2 11073 -cellosaurus:CVCL_SH76 HAP1 CD46 (-) 4 2 11074 -cellosaurus:CVCL_SH77 HAP1 CD46 (-) 5 2 11075 -cellosaurus:CVCL_SH78 HAP1 CD46 (-) 6 2 11076 -cellosaurus:CVCL_SH79 HAP1 CD46 (-) 7 2 11077 -cellosaurus:CVCL_SH80 HAP1 CD46 (-) 8 2 11078 -cellosaurus:CVCL_SH81 HAP1 CD46 (-) 9 2 11079 -cellosaurus:CVCL_SH84 HAP1 CD47 (-) 1 2 11080 -cellosaurus:CVCL_XM60 HAP1 CD47 (-) 2 2 11081 -cellosaurus:CVCL_SH85 HAP1 CD55 (-) 1 2 11082 -cellosaurus:CVCL_SH86 HAP1 CD55 (-) 2 2 11083 -cellosaurus:CVCL_SH87 HAP1 CD58 (-) 2 11084 -cellosaurus:CVCL_SH88 HAP1 CD59 (-) 1 2 11085 -cellosaurus:CVCL_SH89 HAP1 CD59 (-) 2 2 11086 -cellosaurus:CVCL_SH90 HAP1 CD63 (-) 2 11087 -cellosaurus:CVCL_XM61 HAP1 CD74 (-) 2 11088 -cellosaurus:CVCL_SH91 HAP1 CD81 (-) 1 2 11089 -cellosaurus:CVCL_SH92 HAP1 CD81 (-) 2 2 11090 -cellosaurus:CVCL_SH93 HAP1 CD81 (-) 3 2 11091 -cellosaurus:CVCL_SH94 HAP1 CD81 (-) 4 2 11092 -cellosaurus:CVCL_SH95 HAP1 CD81 (-) 5 2 11093 -cellosaurus:CVCL_SH96 HAP1 CD81 (-) 6 2 11094 -cellosaurus:CVCL_SH97 HAP1 CD81 (-) 7 2 11095 -cellosaurus:CVCL_SH98 HAP1 CD81 (-) 8 2 11096 -cellosaurus:CVCL_SH99 HAP1 CD81 (-) 9 2 11097 -cellosaurus:CVCL_SI00 HAP1 CD9 (-) 1 2 11098 -cellosaurus:CVCL_XM62 HAP1 CD9 (-) 2 2 11099 -cellosaurus:CVCL_XM63 HAP1 CDAN1 (-) 2 11100 -cellosaurus:CVCL_SI01 HAP1 CDC25A (-) 1 2 11101 -cellosaurus:CVCL_XM64 HAP1 CDC25A (-) 2 2 11102 -cellosaurus:CVCL_SI02 HAP1 CDC25C (-) 2 11103 -cellosaurus:CVCL_SI03 HAP1 CDC34 (-) 1 2 11104 -cellosaurus:CVCL_SI04 HAP1 CDC34 (-) 2 2 11105 -cellosaurus:CVCL_SI05 HAP1 CDC42 (-) 1 2 11106 -cellosaurus:CVCL_SI06 HAP1 CDC42 (-) 2 2 11107 -cellosaurus:CVCL_XM65 HAP1 CDC42BPA (-) 1 2 11108 -cellosaurus:CVCL_XM66 HAP1 CDC42BPA (-) 2 2 11109 -cellosaurus:CVCL_SI07 HAP1 CDC42BPB (-) 1 2 11110 -cellosaurus:CVCL_SI08 HAP1 CDC42BPB (-) 2 2 11111 -cellosaurus:CVCL_SI09 HAP1 CDC42BPG (-) 2 11112 -cellosaurus:CVCL_SI10 HAP1 CDCA2 (-) 1 2 11113 -cellosaurus:CVCL_SI11 HAP1 CDCA2 (-) 2 2 11114 -cellosaurus:CVCL_SI12 HAP1 CDCA7 (-) 1 2 11115 -cellosaurus:CVCL_SI13 HAP1 CDCA7 (-) 2 2 11116 -cellosaurus:CVCL_SI14 HAP1 CDH2 (-) 1 2 11117 -cellosaurus:CVCL_XM67 HAP1 CDH2 (-) 2 2 11118 -cellosaurus:CVCL_SI15 HAP1 CDH3 (-) 1 2 11119 -cellosaurus:CVCL_SI16 HAP1 CDH3 (-) 2 2 11120 -cellosaurus:CVCL_SI17 HAP1 CDH3 (-) 3 2 11121 -cellosaurus:CVCL_SI18 HAP1 CDH3 (-) 4 2 11122 -cellosaurus:CVCL_XM68 HAP1 CDH6 (-) 2 11123 -cellosaurus:CVCL_SI19 HAP1 CDK10 (-) 2 11124 -cellosaurus:CVCL_SI20 HAP1 CDK11A (-) 2 11125 -cellosaurus:CVCL_SI21 HAP1 CDK13 (-) 1 2 11126 -cellosaurus:CVCL_SI22 HAP1 CDK13 (-) 2 2 11127 -cellosaurus:CVCL_SI23 HAP1 CDK13 (-) 3 2 11128 -cellosaurus:CVCL_SI24 HAP1 CDK14 (-) 2 11129 -cellosaurus:CVCL_SI25 HAP1 CDK16 (-) 2 11130 -cellosaurus:CVCL_SI26 HAP1 CDK17 (-) 1 2 11131 -cellosaurus:CVCL_SI27 HAP1 CDK17 (-) 2 2 11132 -cellosaurus:CVCL_SI28 HAP1 CDK18 (-) 1 2 11133 -cellosaurus:CVCL_SI29 HAP1 CDK18 (-) 2 2 11134 -cellosaurus:CVCL_SI30 HAP1 CDK18 (-) 3 2 11135 -cellosaurus:CVCL_SI31 HAP1 CDK19 (-) 2 11136 -cellosaurus:CVCL_SI32 HAP1 CDK2 (-) 2 11137 -cellosaurus:CVCL_SI33 HAP1 CDK3 (-) 1 2 11138 -cellosaurus:CVCL_SI34 HAP1 CDK3 (-) 2 2 11139 -cellosaurus:CVCL_SI35 HAP1 CDK3 (-) 3 2 11140 -cellosaurus:CVCL_SI36 HAP1 CDK4 (-) 1 2 11141 -cellosaurus:CVCL_SI37 HAP1 CDK4 (-) 2 2 11142 -cellosaurus:CVCL_SI38 HAP1 CDK5 (-) 1 2 11143 -cellosaurus:CVCL_SI39 HAP1 CDK5 (-) 2 2 11144 -cellosaurus:CVCL_SI40 HAP1 CDK5RAP1 (-) 1 2 11145 -cellosaurus:CVCL_SI41 HAP1 CDK5RAP1 (-) 2 2 11146 -cellosaurus:CVCL_SI42 HAP1 CDK6 (-) 2 11147 -cellosaurus:CVCL_SI43 HAP1 CDK8 (-) 2 11148 -cellosaurus:CVCL_SI44 HAP1 CDKL1 (-) 1 2 11149 -cellosaurus:CVCL_SI45 HAP1 CDKL1 (-) 2 2 11150 -cellosaurus:CVCL_SI46 HAP1 CDKL3 (-) 1 2 11151 -cellosaurus:CVCL_SI47 HAP1 CDKL3 (-) 2 2 11152 -cellosaurus:CVCL_SI48 HAP1 CDKL5 (-) 1 2 11153 -cellosaurus:CVCL_SI49 HAP1 CDKL5 (-) 2 2 11154 -cellosaurus:CVCL_SI50 HAP1 CDKL5 (-) 3 2 11155 -cellosaurus:CVCL_SI51 HAP1 CDKN1A (-) 1 2 11156 -cellosaurus:CVCL_SI52 HAP1 CDKN1A (-) 2 2 11157 -cellosaurus:CVCL_SI53 HAP1 CDKN1A (-) 3 2 11158 -cellosaurus:CVCL_SI54 HAP1 CDKN1B (-) 1 2 11159 -cellosaurus:CVCL_SI55 HAP1 CDKN1B (-) 2 2 11160 -cellosaurus:CVCL_SI56 HAP1 CDKN1B (-) 3 2 11161 -cellosaurus:CVCL_SI57 HAP1 CDKN1C (-) 1 2 11162 -cellosaurus:CVCL_XM69 HAP1 CDKN1C (-) 2 2 11163 -cellosaurus:CVCL_SI58 HAP1 CDKN2A (-) 1 2 11164 -cellosaurus:CVCL_SI59 HAP1 CDKN2A (-) 2 2 11165 -cellosaurus:CVCL_SI60 HAP1 CDKN2B (-) 2 11166 -cellosaurus:CVCL_SI61 HAP1 CDS1 (-) 2 11167 -cellosaurus:CVCL_SI62 HAP1 CEBPA (-) 1 2 11168 -cellosaurus:CVCL_SI63 HAP1 CEBPA (-) 2 2 11169 -cellosaurus:CVCL_SI64 HAP1 CEBPA (-) 3 2 11170 -cellosaurus:CVCL_SI65 HAP1 CEBPB (-) 1 2 11171 -cellosaurus:CVCL_SI66 HAP1 CEBPB (-) 2 2 11172 -cellosaurus:CVCL_SI67 HAP1 CECR2 (-) 1 2 11173 -cellosaurus:CVCL_SI68 HAP1 CECR2 (-) 2 2 11174 -cellosaurus:CVCL_SI69 HAP1 CECR5 (-) 1 2 11175 -cellosaurus:CVCL_XM70 HAP1 CECR5 (-) 2 2 11176 -cellosaurus:CVCL_XM71 HAP1 CECR5 (-) 3 2 11177 -cellosaurus:CVCL_XM72 HAP1 CECR5 (-) 4 2 11178 -cellosaurus:CVCL_XM73 HAP1 CECR5 (-) 5 2 11179 -cellosaurus:CVCL_SI70 HAP1 CENPE (-) 1 2 11180 -cellosaurus:CVCL_SI71 HAP1 CENPE (-) 2 2 11181 -cellosaurus:CVCL_XM74 HAP1 CERS2 (-) 2 11182 -cellosaurus:CVCL_SI72 HAP1 CFLAR (-) 1 2 11183 -cellosaurus:CVCL_XM75 HAP1 CFLAR (-) 2 2 11184 -cellosaurus:CVCL_SI73 HAP1 CH25H (-) 2 11185 -cellosaurus:CVCL_SI74 HAP1 CHAMP1 (-) 2 11186 -cellosaurus:CVCL_SI75 HAP1 CHCHD10 (-) 1 2 11187 -cellosaurus:CVCL_SI76 HAP1 CHCHD10 (-) 2 2 11188 -cellosaurus:CVCL_SI77 HAP1 CHCHD10 (-) 3 2 11189 -cellosaurus:CVCL_SI78 HAP1 CHCHD10 (-) 4 2 11190 -cellosaurus:CVCL_SI79 HAP1 CHCHD2 (-) 1 2 11191 -cellosaurus:CVCL_SI80 HAP1 CHCHD2 (-) 2 2 11192 -cellosaurus:CVCL_SI81 HAP1 CHCHD3 (-) 1 2 11193 -cellosaurus:CVCL_SI82 HAP1 CHCHD3 (-) 2 2 11194 -cellosaurus:CVCL_SI83 HAP1 CHCHD6 (-) 1 2 11195 -cellosaurus:CVCL_SI84 HAP1 CHCHD6 (-) 2 2 11196 -cellosaurus:CVCL_SI85 HAP1 CHD1 (-) 1 2 11197 -cellosaurus:CVCL_SI86 HAP1 CHD1 (-) 2 2 11198 -cellosaurus:CVCL_SI87 HAP1 CHD1L (-) 1 2 11199 -cellosaurus:CVCL_SI88 HAP1 CHD1L (-) 2 2 11200 -cellosaurus:CVCL_SI89 HAP1 CHD2 (-) 1 2 11201 -cellosaurus:CVCL_SI90 HAP1 CHD2 (-) 2 2 11202 -cellosaurus:CVCL_SI91 HAP1 CHD2 (-) 3 2 11203 -cellosaurus:CVCL_SI92 HAP1 CHD2 (-) 4 2 11204 -cellosaurus:CVCL_SI93 HAP1 CHD3 (-) 1 2 11205 -cellosaurus:CVCL_SI94 HAP1 CHD3 (-) 2 2 11206 -cellosaurus:CVCL_SI95 HAP1 CHEK2 (-) 1 2 11207 -cellosaurus:CVCL_SI96 HAP1 CHEK2 (-) 2 2 11208 -cellosaurus:CVCL_SI97 HAP1 CHEK2 (-) 3 2 11209 -cellosaurus:CVCL_SI98 HAP1 CHMP1A (-) 1 2 11210 -cellosaurus:CVCL_XM76 HAP1 CHMP1A (-) 2 2 11211 -cellosaurus:CVCL_XM77 HAP1 CHMP1A (-) 3 2 11212 -cellosaurus:CVCL_XM78 HAP1 CHMP1A (-) 4 2 11213 -cellosaurus:CVCL_XM79 HAP1 CHMP1B (-) 2 11214 -cellosaurus:CVCL_SI99 HAP1 CHMP7 (-) 1 2 11215 -cellosaurus:CVCL_XM80 HAP1 CHMP7 (-) 2 2 11216 -cellosaurus:CVCL_SJ00 HAP1 CHRNA7 (-) 2 11217 -cellosaurus:CVCL_SJ01 HAP1 CHRNB2 (-) 1 2 11218 -cellosaurus:CVCL_SJ02 HAP1 CHRNB2 (-) 2 2 11219 -cellosaurus:CVCL_SJ03 HAP1 CHST10 (-) 1 2 11220 -cellosaurus:CVCL_XM81 HAP1 CHST10 (-) 2 2 11221 -cellosaurus:CVCL_SJ04 HAP1 CHUK (-) 2 11222 -cellosaurus:CVCL_SJ05 HAP1 CIC (-) 1 2 11223 -cellosaurus:CVCL_SJ06 HAP1 CIC (-) 2 2 11224 -cellosaurus:CVCL_SJ07 HAP1 CIC (-) 3 2 11225 -cellosaurus:CVCL_SJ08 HAP1 CIC (-) 4 2 11226 -cellosaurus:CVCL_SJ09 HAP1 CISD2 (-) 1 2 11227 -cellosaurus:CVCL_SJ10 HAP1 CISD2 (-) 2 2 11228 -cellosaurus:CVCL_SJ11 HAP1 CKAP4 (-) 2 11229 -cellosaurus:CVCL_SJ12 HAP1 CKB (-) 2 11230 -cellosaurus:CVCL_SJ13 HAP1 CLASP1 (-) 1 2 11231 -cellosaurus:CVCL_SJ14 HAP1 CLASP1 (-) 2 2 11232 -cellosaurus:CVCL_SJ15 HAP1 CLCN2 (-) 1 2 11233 -cellosaurus:CVCL_SJ16 HAP1 CLCN2 (-) 2 2 11234 -cellosaurus:CVCL_XM82 HAP1 CLCN5 (-) 2 11235 -cellosaurus:CVCL_SJ17 HAP1 CLCN7 (-) 2 11236 -cellosaurus:CVCL_SJ18 HAP1 CLK1 (-) 1 2 11237 -cellosaurus:CVCL_SJ19 HAP1 CLK1 (-) 2 2 11238 -cellosaurus:CVCL_SJ20 HAP1 CLK2 (-) 1 2 11239 -cellosaurus:CVCL_SJ21 HAP1 CLK2 (-) 2 2 11240 -cellosaurus:CVCL_SJ22 HAP1 CLK2 (-) 3 2 11241 -cellosaurus:CVCL_SJ23 HAP1 CLK3 (-) 2 11242 -cellosaurus:CVCL_SJ24 HAP1 CLK4 (-) 1 2 11243 -cellosaurus:CVCL_SJ25 HAP1 CLK4 (-) 2 2 11244 -cellosaurus:CVCL_SJ26 HAP1 CLK4 (-) 3 2 11245 -cellosaurus:CVCL_SJ27 HAP1 CLN3 (-) 1 2 11246 -cellosaurus:CVCL_SJ28 HAP1 CLN3 (-) 2 2 11247 -cellosaurus:CVCL_XM83 HAP1 CLN5 (-) 2 11248 -cellosaurus:CVCL_SJ29 HAP1 CLN6 (-) 2 11249 -cellosaurus:CVCL_XM84 HAP1 CLN8 (-) 2 11250 -cellosaurus:CVCL_XM85 HAP1 CLPP (-) 2 11251 -cellosaurus:CVCL_SJ30 HAP1 CLPTM1 (-) 1 2 11252 -cellosaurus:CVCL_XM86 HAP1 CLPTM1 (-) 2 2 11253 -cellosaurus:CVCL_XM87 HAP1 CLPX (-) 2 11254 -cellosaurus:CVCL_SJ31 HAP1 CLU (-) 1 2 11255 -cellosaurus:CVCL_XM88 HAP1 CLU (-) 2 2 11256 -cellosaurus:CVCL_SJ32 HAP1 CMAS (-) 2 11257 -cellosaurus:CVCL_XM89 HAP1 CMTM6 (-) 2 11258 -cellosaurus:CVCL_SJ33 HAP1 CMTR1 (-) 1 2 11259 -cellosaurus:CVCL_SJ34 HAP1 CMTR1 (-) 2 2 11260 -cellosaurus:CVCL_SJ35 HAP1 CNKSR1 (-) 1 2 11261 -cellosaurus:CVCL_SJ36 HAP1 CNKSR1 (-) 2 2 11262 -cellosaurus:CVCL_SJ37 HAP1 CNKSR1 (-) 3 2 11263 -cellosaurus:CVCL_SJ38 HAP1 CNKSR2 (-) 1 2 11264 -cellosaurus:CVCL_SJ39 HAP1 CNKSR2 (-) 2 2 11265 -cellosaurus:CVCL_SJ40 HAP1 CNKSR2 (-) 3 2 11266 -cellosaurus:CVCL_SJ41 HAP1 CNP (-) 1 2 11267 -cellosaurus:CVCL_XM90 HAP1 CNP (-) 2 2 11268 -cellosaurus:CVCL_SJ42 HAP1 CNR1 (-) 1 2 11269 -cellosaurus:CVCL_SJ43 HAP1 CNR1 (-) 2 2 11270 -cellosaurus:CVCL_SJ44 HAP1 CNST (-) 1 2 11271 -cellosaurus:CVCL_SJ45 HAP1 CNST (-) 2 2 11272 -cellosaurus:CVCL_SJ46 HAP1 CNTNAP1 (-) 1 2 11273 -cellosaurus:CVCL_XM91 HAP1 CNTNAP1 (-) 2 2 11274 -cellosaurus:CVCL_SJ47 HAP1 COL1A1 (-) 1 2 11275 -cellosaurus:CVCL_XM92 HAP1 COL1A1 (-) 2 2 11276 -cellosaurus:CVCL_SJ48 HAP1 COL4A3BP (-) 1 2 11277 -cellosaurus:CVCL_XM93 HAP1 COL4A3BP (-) 2 2 11278 -cellosaurus:CVCL_SJ49 HAP1 COMT (-) 1 2 11279 -cellosaurus:CVCL_SJ50 HAP1 COMT (-) 2 2 11280 -cellosaurus:CVCL_SJ51 HAP1 COMTD1 (-) 2 11281 -cellosaurus:CVCL_SJ52 HAP1 COPS6 (-) 1 2 11282 -cellosaurus:CVCL_SJ53 HAP1 COPS6 (-) 2 2 11283 -cellosaurus:CVCL_SJ54 HAP1 COPS7A (-) 1 2 11284 -cellosaurus:CVCL_SJ55 HAP1 COPS7A (-) 2 2 11285 -cellosaurus:CVCL_SJ56 HAP1 COPS7B (-) 1 2 11286 -cellosaurus:CVCL_SJ57 HAP1 COPS7B (-) 2 2 11287 -cellosaurus:CVCL_SJ58 HAP1 COQ2 (-) 1 2 11288 -cellosaurus:CVCL_SJ59 HAP1 COQ2 (-) 2 2 11289 -cellosaurus:CVCL_SJ60 HAP1 COQ5 (-) 2 11290 -cellosaurus:CVCL_SJ61 HAP1 COQ7 (-) 1 2 11291 -cellosaurus:CVCL_SJ62 HAP1 COQ7 (-) 2 2 11292 -cellosaurus:CVCL_SJ63 HAP1 COQ9 (-) 1 2 11293 -cellosaurus:CVCL_SJ64 HAP1 COQ9 (-) 2 2 11294 -cellosaurus:CVCL_SJ65 HAP1 COX11 (-) 2 11295 -cellosaurus:CVCL_XM94 HAP1 COX6A1 (-) 2 11296 -cellosaurus:CVCL_SJ66 HAP1 CPT1A (-) 1 2 11297 -cellosaurus:CVCL_SJ67 HAP1 CPT1A (-) 2 2 11298 -cellosaurus:CVCL_SJ68 HAP1 CPT2 (-) 2 11299 -cellosaurus:CVCL_SJ69 HAP1 CRBN (-) 1 2 11300 -cellosaurus:CVCL_SJ70 HAP1 CRBN (-) 2 2 11301 -cellosaurus:CVCL_SJ71 HAP1 CRBN (-) 3 2 11302 -cellosaurus:CVCL_SJ72 HAP1 CREB1 (-) 1 2 11303 -cellosaurus:CVCL_SJ73 HAP1 CREB1 (-) 2 2 11304 -cellosaurus:CVCL_SJ74 HAP1 CREBBP (-) 1 2 11305 -cellosaurus:CVCL_XM95 HAP1 CREBBP (-) 2 2 11306 -cellosaurus:CVCL_SJ75 HAP1 CRELD1 (-) 1 2 11307 -cellosaurus:CVCL_SJ76 HAP1 CRELD1 (-) 2 2 11308 -cellosaurus:CVCL_SJ77 HAP1 CSF1 (-) 1 2 11309 -cellosaurus:CVCL_XM96 HAP1 CSF1 (-) 2 2 11310 -cellosaurus:CVCL_XM97 HAP1 CSF1 (-) 3 2 11311 -cellosaurus:CVCL_XM98 HAP1 CSF1 (-) 4 2 11312 -cellosaurus:CVCL_SJ78 HAP1 CSK (-) 2 11313 -cellosaurus:CVCL_SJ79 HAP1 CSMD1 (-) 1 2 11314 -cellosaurus:CVCL_SJ80 HAP1 CSMD1 (-) 2 2 11315 -cellosaurus:CVCL_SJ81 HAP1 CSNK1D (-) 1 2 11316 -cellosaurus:CVCL_SJ82 HAP1 CSNK1D (-) 2 2 11317 -cellosaurus:CVCL_SJ83 HAP1 CSNK1E (-) 2 11318 -cellosaurus:CVCL_SJ84 HAP1 CSNK1G1 (-) 1 2 11319 -cellosaurus:CVCL_SJ85 HAP1 CSNK1G1 (-) 2 2 11320 -cellosaurus:CVCL_SJ86 HAP1 CSNK1G1 (-) 3 2 11321 -cellosaurus:CVCL_SJ87 HAP1 CSNK1G2 (-) 1 2 11322 -cellosaurus:CVCL_SJ88 HAP1 CSNK1G2 (-) 2 2 11323 -cellosaurus:CVCL_SJ89 HAP1 CSNK1G3 (-) 1 2 11324 -cellosaurus:CVCL_SJ90 HAP1 CSNK1G3 (-) 2 2 11325 -cellosaurus:CVCL_SJ91 HAP1 CSNK2A1 (-) 1 2 11326 -cellosaurus:CVCL_SJ92 HAP1 CSNK2A1 (-) 2 2 11327 -cellosaurus:CVCL_SJ93 HAP1 CSNK2A2 (-) 1 2 11328 -cellosaurus:CVCL_SJ94 HAP1 CSNK2A2 (-) 2 2 11329 -cellosaurus:CVCL_SJ95 HAP1 CSRNP2 (-) 1 2 11330 -cellosaurus:CVCL_SJ96 HAP1 CSRNP2 (-) 2 2 11331 -cellosaurus:CVCL_SJ97 HAP1 CST3 (-) 2 11332 -cellosaurus:CVCL_SJ98 HAP1 CTDNEP1 (-) 1 2 11333 -cellosaurus:CVCL_SJ99 HAP1 CTDNEP1 (-) 2 2 11334 -cellosaurus:CVCL_SK00 HAP1 CTDSP1 (-) 1 2 11335 -cellosaurus:CVCL_SK01 HAP1 CTDSP1 (-) 2 2 11336 -cellosaurus:CVCL_SK02 HAP1 CTDSP2 (-) 1 2 11337 -cellosaurus:CVCL_SK03 HAP1 CTDSP2 (-) 2 2 11338 -cellosaurus:CVCL_SK04 HAP1 CTDSPL (-) 1 2 11339 -cellosaurus:CVCL_SK05 HAP1 CTDSPL (-) 2 2 11340 -cellosaurus:CVCL_SK06 HAP1 CTDSPL (-) 3 2 11341 -cellosaurus:CVCL_SK07 HAP1 CTH (-) 1 2 11342 -cellosaurus:CVCL_XM99 HAP1 CTH (-) 2 2 11343 -cellosaurus:CVCL_SK08 HAP1 CTIF (-) 1 2 11344 -cellosaurus:CVCL_SK09 HAP1 CTIF (-) 2 2 11345 -cellosaurus:CVCL_SK10 HAP1 CTNNA1 (-) 1 2 11346 -cellosaurus:CVCL_XN00 HAP1 CTNNA1 (-) 2 2 11347 -cellosaurus:CVCL_SK11 HAP1 CTNNB1 (-) 1 2 11348 -cellosaurus:CVCL_SK12 HAP1 CTNNB1 (-) 2 2 11349 -cellosaurus:CVCL_SK13 HAP1 CTNNB1 (-) 3 2 11350 -cellosaurus:CVCL_SK14 HAP1 CTNNB1 (-) 4 2 11351 -cellosaurus:CVCL_SK15 HAP1 CTNS (-) 1 2 11352 -cellosaurus:CVCL_XN01 HAP1 CTNS (-) 2 2 11353 -cellosaurus:CVCL_SK16 HAP1 CTSB (-) 1 2 11354 -cellosaurus:CVCL_XN02 HAP1 CTSB (-) 2 2 11355 -cellosaurus:CVCL_XN03 HAP1 CTSB (-) 3 2 11356 -cellosaurus:CVCL_SK17 HAP1 CTTN (-) 1 2 11357 -cellosaurus:CVCL_SK18 HAP1 CTTN (-) 2 2 11358 -cellosaurus:CVCL_SK19 HAP1 CTTN (-) 3 2 11359 -cellosaurus:CVCL_SK20 HAP1 CTTN (-) 4 2 11360 -cellosaurus:CVCL_SK21 HAP1 CXADR (-) 1 2 11361 -cellosaurus:CVCL_XN04 HAP1 CXADR (-) 2 2 11362 -cellosaurus:CVCL_SK22 HAP1 CXXC1 (-) 1 2 11363 -cellosaurus:CVCL_SK23 HAP1 CXXC1 (-) 2 2 11364 -cellosaurus:CVCL_XN05 HAP1 CYC1 (-) 2 11365 -cellosaurus:CVCL_SK24 HAP1 CYLD (-) 1 2 11366 -cellosaurus:CVCL_SK25 HAP1 CYLD (-) 2 2 11367 -cellosaurus:CVCL_XN06 HAP1 CYP19A1 (-) 2 11368 -cellosaurus:CVCL_SK26 HAP1 CYP51A1 (-) 1 2 11369 -cellosaurus:CVCL_SK27 HAP1 CYP51A1 (-) 2 2 11370 -cellosaurus:CVCL_SK28 HAP1 CYR61 (-) 1 2 11371 -cellosaurus:CVCL_XN07 HAP1 CYR61 (-) 2 2 11372 -cellosaurus:CVCL_XN08 HAP1 CYR61 (-) 3 2 11373 -cellosaurus:CVCL_SK29 HAP1 DAG1 (-) 1 2 11374 -cellosaurus:CVCL_SK30 HAP1 DAG1 (-) 2 2 11375 -cellosaurus:CVCL_XN09 HAP1 DALRD3 (-) 2 11376 -cellosaurus:CVCL_SK31 HAP1 DAPK1 (-) 1 2 11377 -cellosaurus:CVCL_SK32 HAP1 DAPK1 (-) 2 2 11378 -cellosaurus:CVCL_SK33 HAP1 DAPK2 (-) 2 11379 -cellosaurus:CVCL_SK34 HAP1 DAPK3 (-) 1 2 11380 -cellosaurus:CVCL_SK35 HAP1 DAPK3 (-) 2 2 11381 -cellosaurus:CVCL_SK36 HAP1 DAXX (-) 1 2 11382 -cellosaurus:CVCL_SK37 HAP1 DAXX (-) 2 2 11383 -cellosaurus:CVCL_SK38 HAP1 DBF4 (-) 2 11384 -cellosaurus:CVCL_SK39 HAP1 DBF4B (-) 1 2 11385 -cellosaurus:CVCL_SK40 HAP1 DBF4B (-) 2 2 11386 -cellosaurus:CVCL_SK41 HAP1 DBN1 (-) 1 2 11387 -cellosaurus:CVCL_XN10 HAP1 DBN1 (-) 2 2 11388 -cellosaurus:CVCL_SK42 HAP1 DBT (-) 1 2 11389 -cellosaurus:CVCL_SK43 HAP1 DBT (-) 2 2 11390 -cellosaurus:CVCL_SK44 HAP1 DCAKD (-) 1 2 11391 -cellosaurus:CVCL_XN11 HAP1 DCAKD (-) 2 2 11392 -cellosaurus:CVCL_XN12 HAP1 DCAKD (-) 3 2 11393 -cellosaurus:CVCL_XN13 HAP1 DCAKD (-) 4 2 11394 -cellosaurus:CVCL_XN14 HAP1 DCAKD (-) 5 2 11395 -cellosaurus:CVCL_SK45 HAP1 DCK (-) 1 2 11396 -cellosaurus:CVCL_XN15 HAP1 DCK (-) 2 2 11397 -cellosaurus:CVCL_SK46 HAP1 DCLK1 (-) 1 2 11398 -cellosaurus:CVCL_SK47 HAP1 DCLK1 (-) 2 2 11399 -cellosaurus:CVCL_XN16 HAP1 DCLK2 (-) 2 11400 -cellosaurus:CVCL_SK48 HAP1 DCLRE1C (-) 1 2 11401 -cellosaurus:CVCL_SK49 HAP1 DCLRE1C (-) 2 2 11402 -cellosaurus:CVCL_SK50 HAP1 DCLRE1C (-) 3 2 11403 -cellosaurus:CVCL_XN17 HAP1 DCTD (-) 2 11404 -cellosaurus:CVCL_SK51 HAP1 DCTPP1 (-) 1 2 11405 -cellosaurus:CVCL_SK52 HAP1 DCTPP1 (-) 2 2 11406 -cellosaurus:CVCL_XN18 HAP1 DDHD2 (-) 2 11407 -cellosaurus:CVCL_SK53 HAP1 DDI2 (-) 1 2 11408 -cellosaurus:CVCL_SK54 HAP1 DDI2 (-) 2 2 11409 -cellosaurus:CVCL_SK55 HAP1 DDI2 (-) 3 2 11410 -cellosaurus:CVCL_SK56 HAP1 DDI2 (-) 4 2 11411 -cellosaurus:CVCL_SK57 HAP1 DDIT4 (-) 1 2 11412 -cellosaurus:CVCL_SK58 HAP1 DDIT4 (-) 2 2 11413 -cellosaurus:CVCL_SK59 HAP1 DDIT4L (-) 2 11414 -cellosaurus:CVCL_SK60 HAP1 DDR1 (-) 2 11415 -cellosaurus:CVCL_SK61 HAP1 DDR2 (-) 1 2 11416 -cellosaurus:CVCL_SK62 HAP1 DDR2 (-) 2 2 11417 -cellosaurus:CVCL_SK63 HAP1 DDX1 (-) 1 2 11418 -cellosaurus:CVCL_XN19 HAP1 DDX1 (-) 2 2 11419 -cellosaurus:CVCL_XN20 HAP1 DDX17 (-) 2 11420 -cellosaurus:CVCL_SK64 HAP1 DDX31 (-) 1 2 11421 -cellosaurus:CVCL_SK65 HAP1 DDX31 (-) 2 2 11422 -cellosaurus:CVCL_SK66 HAP1 DDX3X (-) 2 11423 -cellosaurus:CVCL_SK67 HAP1 DDX41 (-) 1 2 11424 -cellosaurus:CVCL_SK68 HAP1 DDX41 (-) 2 2 11425 -cellosaurus:CVCL_SK69 HAP1 DDX5 (-) 1 2 11426 -cellosaurus:CVCL_XN21 HAP1 DDX5 (-) 2 2 11427 -cellosaurus:CVCL_SK70 HAP1 DDX58 (-) 1 2 11428 -cellosaurus:CVCL_SK71 HAP1 DDX58 (-) 2 2 11429 -cellosaurus:CVCL_SK72 HAP1 DDX6 (-) 1 2 11430 -cellosaurus:CVCL_SK73 HAP1 DDX6 (-) 2 2 11431 -cellosaurus:CVCL_SK74 HAP1 DEPDC5 (-) 1 2 11432 -cellosaurus:CVCL_SK75 HAP1 DEPDC5 (-) 2 2 11433 -cellosaurus:CVCL_XN22 HAP1 DGUOK (-) 1 2 11434 -cellosaurus:CVCL_B5JU HAP1 DGUOK (-) 2 2 11435 -cellosaurus:CVCL_B5JV HAP1 DGUOK (-) 3 2 11436 -cellosaurus:CVCL_SK76 HAP1 DHCR7 (-) 1 2 11437 -cellosaurus:CVCL_XN23 HAP1 DHCR7 (-) 2 2 11438 -cellosaurus:CVCL_XN24 HAP1 DHODH (-) 2 11439 -cellosaurus:CVCL_SK77 HAP1 DHRS1 (-) 1 2 11440 -cellosaurus:CVCL_XN25 HAP1 DHRS1 (-) 2 2 11441 -cellosaurus:CVCL_XN26 HAP1 DHRS1 (-) 3 2 11442 -cellosaurus:CVCL_XN27 HAP1 DHRS1 (-) 4 2 11443 -cellosaurus:CVCL_SK78 HAP1 DHRS4 (-) 1 2 11444 -cellosaurus:CVCL_SK79 HAP1 DHRS4 (-) 2 2 11445 -cellosaurus:CVCL_XN28 HAP1 DHTKD1 (-) 1 2 11446 -cellosaurus:CVCL_B5JW HAP1 DHTKD1 (-) 2 2 11447 -cellosaurus:CVCL_B5JX HAP1 DHTKD1 (-) 3 2 11448 -cellosaurus:CVCL_B5JY HAP1 DHTKD1 (-) 4 2 11449 -cellosaurus:CVCL_B5JZ HAP1 DHTKD1 (-) 5 2 11450 -cellosaurus:CVCL_B5K0 HAP1 DHTKD1 (-) 6 2 11451 -cellosaurus:CVCL_B5J6 HAP1 DHX30 (-) 2 11452 -cellosaurus:CVCL_XN29 HAP1 DHX40 (-) 2 11453 -cellosaurus:CVCL_SK80 HAP1 DHX58 (-) 1 2 11454 -cellosaurus:CVCL_SK81 HAP1 DHX58 (-) 2 2 11455 -cellosaurus:CVCL_SK82 HAP1 DIAPH1 (-) 1 2 11456 -cellosaurus:CVCL_SK83 HAP1 DIAPH1 (-) 2 2 11457 -cellosaurus:CVCL_SK84 HAP1 DICER1 (-) 1 2 11458 -cellosaurus:CVCL_SK85 HAP1 DICER1 (-) 2 2 11459 -cellosaurus:CVCL_SK86 HAP1 DICER1 (-) 3 2 11460 -cellosaurus:CVCL_SK87 HAP1 DIRC2 (-) 1 2 11461 -cellosaurus:CVCL_SK88 HAP1 DIRC2 (-) 2 2 11462 -cellosaurus:CVCL_SK89 HAP1 DIS3L (-) 1 2 11463 -cellosaurus:CVCL_SK90 HAP1 DIS3L (-) 2 2 11464 -cellosaurus:CVCL_SK91 HAP1 DLAT (-) 1 2 11465 -cellosaurus:CVCL_XN30 HAP1 DLAT (-) 2 2 11466 -cellosaurus:CVCL_SK92 HAP1 DLG2 (-) 2 11467 -cellosaurus:CVCL_SK93 HAP1 DMD (-) 1 2 11468 -cellosaurus:CVCL_SK94 HAP1 DMD (-) 2 2 11469 -cellosaurus:CVCL_SK95 HAP1 DMD (-) 3 2 11470 -cellosaurus:CVCL_SK96 HAP1 DMD (-) 4 2 11471 -cellosaurus:CVCL_SK97 HAP1 DMPK (-) 1 2 11472 -cellosaurus:CVCL_SK98 HAP1 DMPK (-) 2 2 11473 -cellosaurus:CVCL_SK99 HAP1 DMPK (-) 3 2 11474 -cellosaurus:CVCL_SL00 HAP1 DNAJA1 (-) 1 2 11475 -cellosaurus:CVCL_SL01 HAP1 DNAJA1 (-) 2 2 11476 -cellosaurus:CVCL_SL02 HAP1 DNMT1 (-) 1 2 11477 -cellosaurus:CVCL_SL03 HAP1 DNMT1 (-) 2 2 11478 -cellosaurus:CVCL_SL04 HAP1 DNMT3A (-) 1 2 11479 -cellosaurus:CVCL_SL05 HAP1 DNMT3A (-) 2 2 11480 -cellosaurus:CVCL_SL06 HAP1 DNMT3B (-) 1 2 11481 -cellosaurus:CVCL_SL07 HAP1 DNMT3B (-) 2 2 11482 -cellosaurus:CVCL_SL08 HAP1 DOT1L (-) 2 11483 -cellosaurus:CVCL_SL09 HAP1 DPF1 (-) 1 2 11484 -cellosaurus:CVCL_SL10 HAP1 DPF1 (-) 2 2 11485 -cellosaurus:CVCL_SL11 HAP1 DPF2 (-) 2 11486 -cellosaurus:CVCL_SL12 HAP1 DPF3 (-) 1 2 11487 -cellosaurus:CVCL_SL13 HAP1 DPF3 (-) 2 2 11488 -cellosaurus:CVCL_SL14 HAP1 DPM1 (-) 1 2 11489 -cellosaurus:CVCL_SL15 HAP1 DPM1 (-) 2 2 11490 -cellosaurus:CVCL_SL16 HAP1 DPP4 (-) 1 2 11491 -cellosaurus:CVCL_SL17 HAP1 DPP4 (-) 2 2 11492 -cellosaurus:CVCL_SL18 HAP1 DSG2 (-) 1 2 11493 -cellosaurus:CVCL_XN31 HAP1 DSG2 (-) 2 2 11494 -cellosaurus:CVCL_SL19 HAP1 DSTYK (-) 1 2 11495 -cellosaurus:CVCL_SL20 HAP1 DSTYK (-) 2 2 11496 -cellosaurus:CVCL_SL21 HAP1 DXO (-) 1 2 11497 -cellosaurus:CVCL_SL22 HAP1 DXO (-) 2 2 11498 -cellosaurus:CVCL_SL23 HAP1 DYRK1B (-) 2 11499 -cellosaurus:CVCL_SL24 HAP1 DYRK2 (-) 1 2 11500 -cellosaurus:CVCL_SL25 HAP1 DYRK2 (-) 2 2 11501 -cellosaurus:CVCL_SL26 HAP1 DYRK2 (-) 3 2 11502 -cellosaurus:CVCL_SL27 HAP1 DYRK3 (-) 2 11503 -cellosaurus:CVCL_SL28 HAP1 DYRK4 (-) 2 11504 -cellosaurus:CVCL_SL29 HAP1 DZIP3 (-) 2 11505 -cellosaurus:CVCL_SL30 HAP1 E2F1 (-) 1 2 11506 -cellosaurus:CVCL_SL31 HAP1 E2F1 (-) 2 2 11507 -cellosaurus:CVCL_SL32 HAP1 E2F8 (-) 1 2 11508 -cellosaurus:CVCL_XN32 HAP1 E2F8 (-) 2 2 11509 -cellosaurus:CVCL_SL33 HAP1 EAPP (-) 1 2 11510 -cellosaurus:CVCL_SL34 HAP1 EAPP (-) 2 2 11511 -cellosaurus:CVCL_SL35 HAP1 EAPP (-) 3 2 11512 -cellosaurus:CVCL_SL36 HAP1 EAPP (-) 4 2 11513 -cellosaurus:CVCL_SL37 HAP1 ECE2 (-) 1 2 11514 -cellosaurus:CVCL_SL38 HAP1 ECE2 (-) 2 2 11515 -cellosaurus:CVCL_SL39 HAP1 ECH1 (-) 1 2 11516 -cellosaurus:CVCL_XN33 HAP1 ECH1 (-) 2 2 11517 -cellosaurus:CVCL_XN34 HAP1 ECH1 (-) 3 2 11518 -cellosaurus:CVCL_XN35 HAP1 ECHS1 (-) 1 2 11519 -cellosaurus:CVCL_B5K1 HAP1 ECHS1 (-) 2 2 11520 -cellosaurus:CVCL_B5K2 HAP1 ECHS1 (-) 3 2 11521 -cellosaurus:CVCL_B5K3 HAP1 ECHS1 (-) 4 2 11522 -cellosaurus:CVCL_B5K4 HAP1 ECHS1 (-) 5 2 11523 -cellosaurus:CVCL_SL40 HAP1 ECI2 (-) 1 2 11524 -cellosaurus:CVCL_XN36 HAP1 ECI2 (-) 2 2 11525 -cellosaurus:CVCL_SL41 HAP1 EEA1 (-) 2 11526 -cellosaurus:CVCL_SL42 HAP1 EED (-) 1 2 11527 -cellosaurus:CVCL_SL43 HAP1 EED (-) 2 2 11528 -cellosaurus:CVCL_SL44 HAP1 EEF1A2 (-) 1 2 11529 -cellosaurus:CVCL_SL45 HAP1 EEF1A2 (-) 2 2 11530 -cellosaurus:CVCL_SL46 HAP1 EEF2K (-) 1 2 11531 -cellosaurus:CVCL_SL47 HAP1 EEF2K (-) 2 2 11532 -cellosaurus:CVCL_SL48 HAP1 EFR3A (-) 2 11533 -cellosaurus:CVCL_SL49 HAP1 EGFL6 (-) 1 2 11534 -cellosaurus:CVCL_SL50 HAP1 EGFL6 (-) 2 2 11535 -cellosaurus:CVCL_SL51 HAP1 EGLN1 (-) 2 11536 -cellosaurus:CVCL_XN37 HAP1 EGLN2 (-) 2 11537 -cellosaurus:CVCL_XN38 HAP1 EGR1 (-) 2 11538 -cellosaurus:CVCL_SL52 HAP1 EHMT1 (-) 1 2 11539 -cellosaurus:CVCL_SL53 HAP1 EHMT1 (-) 2 2 11540 -cellosaurus:CVCL_SL54 HAP1 EHMT1 (-) 3 2 11541 -cellosaurus:CVCL_SL55 HAP1 EHMT1 (-) 4 2 11542 -cellosaurus:CVCL_SL56 HAP1 EHMT2 (-) 1 2 11543 -cellosaurus:CVCL_SL57 HAP1 EHMT2 (-) 2 2 11544 -cellosaurus:CVCL_SL58 HAP1 EIF1 (-) 1 2 11545 -cellosaurus:CVCL_SL59 HAP1 EIF1 (-) 2 2 11546 -cellosaurus:CVCL_SL60 HAP1 EIF1B (-) 1 2 11547 -cellosaurus:CVCL_SL61 HAP1 EIF1B (-) 2 2 11548 -cellosaurus:CVCL_SL62 HAP1 EIF2A (-) 2 11549 -cellosaurus:CVCL_SL63 HAP1 EIF2AK1 (-) 2 11550 -cellosaurus:CVCL_SL64 HAP1 EIF2AK2 (-) 1 2 11551 -cellosaurus:CVCL_SL65 HAP1 EIF2AK2 (-) 2 2 11552 -cellosaurus:CVCL_SL66 HAP1 EIF2AK3 (-) 1 2 11553 -cellosaurus:CVCL_SL67 HAP1 EIF2AK3 (-) 2 2 11554 -cellosaurus:CVCL_SL68 HAP1 EIF2AK3 (-) 3 2 11555 -cellosaurus:CVCL_SL69 HAP1 EIF2AK4 (-) 1 2 11556 -cellosaurus:CVCL_SL70 HAP1 EIF2AK4 (-) 2 2 11557 -cellosaurus:CVCL_SL71 HAP1 EIF2AK4 (-) 3 2 11558 -cellosaurus:CVCL_SL72 HAP1 EIF2D (-) 1 2 11559 -cellosaurus:CVCL_SL73 HAP1 EIF2D (-) 2 2 11560 -cellosaurus:CVCL_SL74 HAP1 EIF2D (-) 3 2 11561 -cellosaurus:CVCL_SL75 HAP1 EIF2D (-) 4 2 11562 -cellosaurus:CVCL_SL76 HAP1 EIF4E2 (-) 1 2 11563 -cellosaurus:CVCL_SL77 HAP1 EIF4E2 (-) 2 2 11564 -cellosaurus:CVCL_SL78 HAP1 EIF4E2 (-) 3 2 11565 -cellosaurus:CVCL_SL79 HAP1 EIF4EBP1 (-) 2 11566 -cellosaurus:CVCL_SL80 HAP1 EIF4EBP2 (-) 1 2 11567 -cellosaurus:CVCL_SL81 HAP1 EIF4EBP2 (-) 2 2 11568 -cellosaurus:CVCL_SL82 HAP1 ELAC1 (-) 2 11569 -cellosaurus:CVCL_SL83 HAP1 ELAVL1 (-) 1 2 11570 -cellosaurus:CVCL_SL84 HAP1 ELAVL1 (-) 2 2 11571 -cellosaurus:CVCL_SL85 HAP1 ELAVL1 (-) 3 2 11572 -cellosaurus:CVCL_SL86 HAP1 ELAVL1 (-) 4 2 11573 -cellosaurus:CVCL_SL87 HAP1 ELFN1 (-) 1 2 11574 -cellosaurus:CVCL_SL88 HAP1 ELFN1 (-) 2 2 11575 -cellosaurus:CVCL_SL89 HAP1 ELFN2 (-) 1 2 11576 -cellosaurus:CVCL_SL90 HAP1 ELFN2 (-) 2 2 11577 -cellosaurus:CVCL_SL91 HAP1 ELK1 (-) 1 2 11578 -cellosaurus:CVCL_XN39 HAP1 ELK1 (-) 2 2 11579 -cellosaurus:CVCL_SL92 HAP1 ELOVL1 (-) 1 2 11580 -cellosaurus:CVCL_XN40 HAP1 ELOVL1 (-) 2 2 11581 -cellosaurus:CVCL_XN41 HAP1 ELOVL1 (-) 3 2 11582 -cellosaurus:CVCL_XN42 HAP1 ELOVL1 (-) 4 2 11583 -cellosaurus:CVCL_SL93 HAP1 EMC6 (-) 1 2 11584 -cellosaurus:CVCL_SL94 HAP1 EMC6 (-) 2 2 11585 -cellosaurus:CVCL_SL95 HAP1 EMD (-) 1 2 11586 -cellosaurus:CVCL_XN43 HAP1 EMD (-) 2 2 11587 -cellosaurus:CVCL_XN44 HAP1 EMD (-) 3 2 11588 -cellosaurus:CVCL_XN45 HAP1 EMD (-) 4 2 11589 -cellosaurus:CVCL_SL96 HAP1 EME1 (-) 1 2 11590 -cellosaurus:CVCL_SL97 HAP1 EME1 (-) 2 2 11591 -cellosaurus:CVCL_SL98 HAP1 EME2 (-) 1 2 11592 -cellosaurus:CVCL_SL99 HAP1 EME2 (-) 2 2 11593 -cellosaurus:CVCL_SM00 HAP1 EME2 (-) 3 2 11594 -cellosaurus:CVCL_SM01 HAP1 ENDOG (-) 1 2 11595 -cellosaurus:CVCL_SM02 HAP1 ENDOG (-) 2 2 11596 -cellosaurus:CVCL_SM03 HAP1 ENDOG (-) 3 2 11597 -cellosaurus:CVCL_SM04 HAP1 ENDOG (-) 4 2 11598 -cellosaurus:CVCL_SM05 HAP1 ENDOV (-) 2 11599 -cellosaurus:CVCL_SM06 HAP1 ENTHD2 (-) 1 2 11600 -cellosaurus:CVCL_SM07 HAP1 ENTHD2 (-) 2 2 11601 -cellosaurus:CVCL_SM08 HAP1 ENTHD2 (-) 3 2 11602 -cellosaurus:CVCL_SM09 HAP1 ENTPD1 (-) 1 2 11603 -cellosaurus:CVCL_XN46 HAP1 ENTPD1 (-) 2 2 11604 -cellosaurus:CVCL_SM10 HAP1 EP300 (-) 1 2 11605 -cellosaurus:CVCL_SM11 HAP1 EP300 (-) 2 2 11606 -cellosaurus:CVCL_XN47 HAP1 EP400 (-) 2 11607 -cellosaurus:CVCL_SM12 HAP1 EPHA2 (-) 2 11608 -cellosaurus:CVCL_SM13 HAP1 EPHA3 (-) 1 2 11609 -cellosaurus:CVCL_SM14 HAP1 EPHA3 (-) 2 2 11610 -cellosaurus:CVCL_SM15 HAP1 EPHA4 (-) 2 11611 -cellosaurus:CVCL_SM16 HAP1 EPHA6 (-) 1 2 11612 -cellosaurus:CVCL_SM17 HAP1 EPHA6 (-) 2 2 11613 -cellosaurus:CVCL_SM18 HAP1 EPHB1 (-) 2 11614 -cellosaurus:CVCL_SM19 HAP1 EPHB2 (-) 1 2 11615 -cellosaurus:CVCL_SM20 HAP1 EPHB2 (-) 2 2 11616 -cellosaurus:CVCL_SM21 HAP1 EPHB2 (-) 3 2 11617 -cellosaurus:CVCL_SM22 HAP1 EPHB3 (-) 2 11618 -cellosaurus:CVCL_SM23 HAP1 EPHB4 (-) 2 11619 -cellosaurus:CVCL_SM24 HAP1 EPHB6 (-) 2 11620 -cellosaurus:CVCL_SM25 HAP1 EPOR (-) 1 2 11621 -cellosaurus:CVCL_SM26 HAP1 EPOR (-) 2 2 11622 -cellosaurus:CVCL_SM27 HAP1 EPS15 (-) 1 2 11623 -cellosaurus:CVCL_XN48 HAP1 EPS15 (-) 2 2 11624 -cellosaurus:CVCL_XN49 HAP1 EPSTI1 (-) 2 11625 -cellosaurus:CVCL_XN50 HAP1 ERAP1 (-) 2 11626 -cellosaurus:CVCL_SM28 HAP1 ERBB2 (-) 1 2 11627 -cellosaurus:CVCL_SM29 HAP1 ERBB2 (-) 2 2 11628 -cellosaurus:CVCL_SM30 HAP1 ERBB2 (-) 3 2 11629 -cellosaurus:CVCL_SM31 HAP1 ERBB3 (-) 2 11630 -cellosaurus:CVCL_SM32 HAP1 ERCC1 (-) 2 11631 -cellosaurus:CVCL_SM33 HAP1 ERCC6 (-) 1 2 11632 -cellosaurus:CVCL_SM34 HAP1 ERCC6 (-) 2 2 11633 -cellosaurus:CVCL_SM35 HAP1 ERCC6 (-) 3 2 11634 -cellosaurus:CVCL_SM36 HAP1 ERCC6L (-) 1 2 11635 -cellosaurus:CVCL_SM37 HAP1 ERCC6L (-) 2 2 11636 -cellosaurus:CVCL_SM38 HAP1 ERCC6L (-) 3 2 11637 -cellosaurus:CVCL_SM39 HAP1 ERCC6L (-) 4 2 11638 -cellosaurus:CVCL_SM40 HAP1 ERCC6L2 (-) 1 2 11639 -cellosaurus:CVCL_XN51 HAP1 ERCC6L2 (-) 2 2 11640 -cellosaurus:CVCL_SM41 HAP1 ERCC8 (-) 1 2 11641 -cellosaurus:CVCL_SM42 HAP1 ERCC8 (-) 2 2 11642 -cellosaurus:CVCL_SM43 HAP1 ERN1 (-) 1 2 11643 -cellosaurus:CVCL_XN52 HAP1 ERN1 (-) 2 2 11644 -cellosaurus:CVCL_XN53 HAP1 ESR1 (-) 1 2 11645 -cellosaurus:CVCL_B5K5 HAP1 ESR1 (-) 2 2 11646 -cellosaurus:CVCL_XN54 HAP1 ESR2 (-) 2 11647 -cellosaurus:CVCL_SM44 HAP1 ESRRA (-) 1 2 11648 -cellosaurus:CVCL_XN55 HAP1 ESRRA (-) 2 2 11649 -cellosaurus:CVCL_SM45 HAP1 ESRRG (-) 2 11650 -cellosaurus:CVCL_SM46 HAP1 ESYT1 (-) 1 2 11651 -cellosaurus:CVCL_SM47 HAP1 ESYT1 (-) 2 2 11652 -cellosaurus:CVCL_SM48 HAP1 ESYT2 (-) 1 2 11653 -cellosaurus:CVCL_SM49 HAP1 ESYT2 (-) 2 2 11654 -cellosaurus:CVCL_SM50 HAP1 ETFB (-) 1 2 11655 -cellosaurus:CVCL_SM51 HAP1 ETFB (-) 2 2 11656 -cellosaurus:CVCL_XN56 HAP1 ETHE1 (-) 2 11657 -cellosaurus:CVCL_SM52 HAP1 ETV6 (-) 1 2 11658 -cellosaurus:CVCL_SM53 HAP1 ETV6 (-) 2 2 11659 -cellosaurus:CVCL_SM54 HAP1 ETV6 (-) 3 2 11660 -cellosaurus:CVCL_SM55 HAP1 ETV6 (-) 4 2 11661 -cellosaurus:CVCL_SM56 HAP1 EXD2 (-) 1 2 11662 -cellosaurus:CVCL_SM57 HAP1 EXD2 (-) 2 2 11663 -cellosaurus:CVCL_SM58 HAP1 EXO1 (-) 1 2 11664 -cellosaurus:CVCL_XN57 HAP1 EXO1 (-) 2 2 11665 -cellosaurus:CVCL_SM59 HAP1 EXO5 (-) 1 2 11666 -cellosaurus:CVCL_XN58 HAP1 EXO5 (-) 2 2 11667 -cellosaurus:CVCL_XN59 HAP1 EXOG (-) 2 11668 -cellosaurus:CVCL_SM60 HAP1 EXT1 (-) 1 2 11669 -cellosaurus:CVCL_SM61 HAP1 EXT1 (-) 2 2 11670 -cellosaurus:CVCL_SM62 HAP1 EXT2 (-) 1 2 11671 -cellosaurus:CVCL_SM63 HAP1 EXT2 (-) 2 2 11672 -cellosaurus:CVCL_SM64 HAP1 EZH1 (-) 1 2 11673 -cellosaurus:CVCL_SM65 HAP1 EZH1 (-) 2 2 11674 -cellosaurus:CVCL_SM66 HAP1 EZH2 (-) 1 2 11675 -cellosaurus:CVCL_SM67 HAP1 EZH2 (-) 2 2 11676 -cellosaurus:CVCL_SM68 HAP1 EZH2 (-) 3 2 11677 -cellosaurus:CVCL_SM69 HAP1 EZR (-) 1 2 11678 -cellosaurus:CVCL_XN60 HAP1 EZR (-) 2 2 11679 -cellosaurus:CVCL_SM70 HAP1 F11R (-) 1 2 11680 -cellosaurus:CVCL_XN61 HAP1 F11R (-) 2 2 11681 -cellosaurus:CVCL_SM71 HAP1 F2RL1 (-) 1 2 11682 -cellosaurus:CVCL_XN62 HAP1 F2RL1 (-) 2 2 11683 -cellosaurus:CVCL_SM72 HAP1 F3 (-) 1 2 11684 -cellosaurus:CVCL_SM73 HAP1 F3 (-) 2 2 11685 -cellosaurus:CVCL_SM74 HAP1 FADD (-) 1 2 11686 -cellosaurus:CVCL_SM75 HAP1 FADD (-) 2 2 11687 -cellosaurus:CVCL_SM76 HAP1 FADS1 (-) 1 2 11688 -cellosaurus:CVCL_SM77 HAP1 FADS1 (-) 2 2 11689 -cellosaurus:CVCL_SM78 HAP1 FAM111A (-) 1 2 11690 -cellosaurus:CVCL_SM79 HAP1 FAM111A (-) 2 2 11691 -cellosaurus:CVCL_SM80 HAP1 FAM111A (-) 3 2 11692 -cellosaurus:CVCL_SM81 HAP1 FAM111A (-) 4 2 11693 -cellosaurus:CVCL_SM82 HAP1 FAM122A (-) 1 2 11694 -cellosaurus:CVCL_XN63 HAP1 FAM122A (-) 2 2 11695 -cellosaurus:CVCL_SM83 HAP1 FAM134B (-) 1 2 11696 -cellosaurus:CVCL_XN64 HAP1 FAM134B (-) 2 2 11697 -cellosaurus:CVCL_SM84 HAP1 FAM136A (-) 1 2 11698 -cellosaurus:CVCL_XN65 HAP1 FAM136A (-) 2 2 11699 -cellosaurus:CVCL_XN66 HAP1 FAM168A (-) 2 11700 -cellosaurus:CVCL_SM85 HAP1 FAM173A (-) 2 11701 -cellosaurus:CVCL_SM86 HAP1 FAM173B (-) 1 2 11702 -cellosaurus:CVCL_SM87 HAP1 FAM173B (-) 2 2 11703 -cellosaurus:CVCL_SM88 HAP1 FAM173B (-) 3 2 11704 -cellosaurus:CVCL_SM89 HAP1 FAM175A (-) 1 2 11705 -cellosaurus:CVCL_SM90 HAP1 FAM175A (-) 2 2 11706 -cellosaurus:CVCL_SM91 HAP1 FAM195A (-) 1 2 11707 -cellosaurus:CVCL_SM92 HAP1 FAM195A (-) 2 2 11708 -cellosaurus:CVCL_SM93 HAP1 FAM195A (-) 3 2 11709 -cellosaurus:CVCL_SM94 HAP1 FAM195B (-) 1 2 11710 -cellosaurus:CVCL_SM95 HAP1 FAM195B (-) 2 2 11711 -cellosaurus:CVCL_XN67 HAP1 FAM20B (-) 2 11712 -cellosaurus:CVCL_SM96 HAP1 FAM91A1 (-) 1 2 11713 -cellosaurus:CVCL_SM97 HAP1 FAM91A1 (-) 2 2 11714 -cellosaurus:CVCL_SM98 HAP1 FANCA (-) 1 2 11715 -cellosaurus:CVCL_SM99 HAP1 FANCA (-) 2 2 11716 -cellosaurus:CVCL_SN00 HAP1 FANCA (-) 3 2 11717 -cellosaurus:CVCL_SN01 HAP1 FANCA (-) 4 2 11718 -cellosaurus:CVCL_SN02 HAP1 FANCA (-) 5 2 11719 -cellosaurus:CVCL_SN03 HAP1 FANCB (-) 2 11720 -cellosaurus:CVCL_SN04 HAP1 FANCD2 (-) 1 2 11721 -cellosaurus:CVCL_SN05 HAP1 FANCD2 (-) 2 2 11722 -cellosaurus:CVCL_SN06 HAP1 FANCE (-) 1 2 11723 -cellosaurus:CVCL_SN07 HAP1 FANCE (-) 2 2 11724 -cellosaurus:CVCL_SN08 HAP1 FANCG (-) 2 11725 -cellosaurus:CVCL_SN09 HAP1 FANCI (-) 2 11726 -cellosaurus:CVCL_SN10 HAP1 FANCL (-) 2 11727 -cellosaurus:CVCL_SN11 HAP1 FARP1 (-) 1 2 11728 -cellosaurus:CVCL_SN12 HAP1 FARP1 (-) 2 2 11729 -cellosaurus:CVCL_SN13 HAP1 FAS (-) 2 11730 -cellosaurus:CVCL_SN14 HAP1 FASLG (-) 1 2 11731 -cellosaurus:CVCL_SN15 HAP1 FASLG (-) 2 2 11732 -cellosaurus:CVCL_SN16 HAP1 FASN (-) 1 2 11733 -cellosaurus:CVCL_SN17 HAP1 FASN (-) 2 2 11734 -cellosaurus:CVCL_SN18 HAP1 FASTK (-) 1 2 11735 -cellosaurus:CVCL_SN19 HAP1 FASTK (-) 2 2 11736 -cellosaurus:CVCL_SN20 HAP1 FASTK (-) 3 2 11737 -cellosaurus:CVCL_XN68 HAP1 FASTKD2 (-) 1 2 11738 -cellosaurus:CVCL_B5J3 HAP1 FASTKD2 (-) 2 2 11739 -cellosaurus:CVCL_B5J4 HAP1 FASTKD2 (-) 3 2 11740 -cellosaurus:CVCL_B5J5 HAP1 FASTKD2 (-) 4 2 11741 -cellosaurus:CVCL_SN21 HAP1 FASTKD3 (-) 1 2 11742 -cellosaurus:CVCL_XN69 HAP1 FASTKD3 (-) 2 2 11743 -cellosaurus:CVCL_SN22 HAP1 FAT1 (-) 1 2 11744 -cellosaurus:CVCL_XN70 HAP1 FAT1 (-) 2 2 11745 -cellosaurus:CVCL_SN23 HAP1 FBXO18 (-) 1 2 11746 -cellosaurus:CVCL_XN71 HAP1 FBXO18 (-) 2 2 11747 -cellosaurus:CVCL_XN72 HAP1 FBXO18 (-) 3 2 11748 -cellosaurus:CVCL_SN24 HAP1 FBXO34 (-) 1 2 11749 -cellosaurus:CVCL_SN25 HAP1 FBXO34 (-) 2 2 11750 -cellosaurus:CVCL_SN26 HAP1 FBXO34 (-) 3 2 11751 -cellosaurus:CVCL_SN27 HAP1 FBXO7 (-) 1 2 11752 -cellosaurus:CVCL_SN28 HAP1 FBXO7 (-) 2 2 11753 -cellosaurus:CVCL_SN29 HAP1 FBXW11 (-) 1 2 11754 -cellosaurus:CVCL_XN73 HAP1 FBXW11 (-) 2 2 11755 -cellosaurus:CVCL_SN30 HAP1 FBXW7 (-) 1 2 11756 -cellosaurus:CVCL_SN31 HAP1 FBXW7 (-) 2 2 11757 -cellosaurus:CVCL_SN32 HAP1 FCHO1 (-) 1 2 11758 -cellosaurus:CVCL_SN33 HAP1 FCHO1 (-) 2 2 11759 -cellosaurus:CVCL_SN34 HAP1 FCHO1 (-) 3 2 11760 -cellosaurus:CVCL_SN35 HAP1 FCHO1 (-) 4 2 11761 -cellosaurus:CVCL_SN36 HAP1 FCHO1 (-) 5 2 11762 -cellosaurus:CVCL_SN37 HAP1 FCHO2 (-) 1 2 11763 -cellosaurus:CVCL_SN38 HAP1 FCHO2 (-) 2 2 11764 -cellosaurus:CVCL_SN39 HAP1 FCHO2 (-) 3 2 11765 -cellosaurus:CVCL_SN40 HAP1 FCHO2 (-) 4 2 11766 -cellosaurus:CVCL_SN41 HAP1 FER (-) 1 2 11767 -cellosaurus:CVCL_SN42 HAP1 FER (-) 2 2 11768 -cellosaurus:CVCL_SN43 HAP1 FES (-) 1 2 11769 -cellosaurus:CVCL_SN44 HAP1 FES (-) 2 2 11770 -cellosaurus:CVCL_SN45 HAP1 FES (-) 3 2 11771 -cellosaurus:CVCL_SN46 HAP1 FGD4 (-) 1 2 11772 -cellosaurus:CVCL_SN47 HAP1 FGD4 (-) 2 2 11773 -cellosaurus:CVCL_SN48 HAP1 FGF2 (-) 1 2 11774 -cellosaurus:CVCL_SN49 HAP1 FGF2 (-) 2 2 11775 -cellosaurus:CVCL_SN50 HAP1 FGFR1 (-) 1 2 11776 -cellosaurus:CVCL_SN51 HAP1 FGFR1 (-) 2 2 11777 -cellosaurus:CVCL_XN74 HAP1 FGFR1 (-) 3 2 11778 -cellosaurus:CVCL_XN75 HAP1 FGFR1 (-) 4 2 11779 -cellosaurus:CVCL_SN52 HAP1 FGFR2 (-) 2 11780 -cellosaurus:CVCL_SN53 HAP1 FGFR3 (-) 2 11781 -cellosaurus:CVCL_SN54 HAP1 FGFR4 (-) 2 11782 -cellosaurus:CVCL_SN55 HAP1 FGGY (-) 1 2 11783 -cellosaurus:CVCL_XN76 HAP1 FGGY (-) 2 2 11784 -cellosaurus:CVCL_SN56 HAP1 FHIT (-) 2 11785 -cellosaurus:CVCL_SN57 HAP1 FIG4 (-) 1 2 11786 -cellosaurus:CVCL_SN58 HAP1 FIG4 (-) 2 2 11787 -cellosaurus:CVCL_SN59 HAP1 FKBP15 (-) 1 2 11788 -cellosaurus:CVCL_SN60 HAP1 FKBP15 (-) 2 2 11789 -cellosaurus:CVCL_SN61 HAP1 FKBP1A (-) 1 2 11790 -cellosaurus:CVCL_XN77 HAP1 FKBP1A (-) 2 2 11791 -cellosaurus:CVCL_XN78 HAP1 FKBP1A (-) 3 2 11792 -cellosaurus:CVCL_SN62 HAP1 FKBP5 (-) 1 2 11793 -cellosaurus:CVCL_XN79 HAP1 FKBP5 (-) 2 2 11794 -cellosaurus:CVCL_SN63 HAP1 FKBP8 (-) 1 2 11795 -cellosaurus:CVCL_SN64 HAP1 FKBP8 (-) 2 2 11796 -cellosaurus:CVCL_SN65 HAP1 FKRP (-) 1 2 11797 -cellosaurus:CVCL_SN66 HAP1 FKRP (-) 2 2 11798 -cellosaurus:CVCL_SN67 HAP1 FKTN (-) 1 2 11799 -cellosaurus:CVCL_SN68 HAP1 FKTN (-) 2 2 11800 -cellosaurus:CVCL_SN69 HAP1 FKTN (-) 3 2 11801 -cellosaurus:CVCL_SN70 HAP1 FKTN (-) 4 2 11802 -cellosaurus:CVCL_SN71 HAP1 FLCN (-) 2 11803 -cellosaurus:CVCL_SN72 HAP1 FLNA (-) 1 2 11804 -cellosaurus:CVCL_XN80 HAP1 FLNA (-) 2 2 11805 -cellosaurus:CVCL_SN73 HAP1 FLOT1 (-) 1 2 11806 -cellosaurus:CVCL_XN81 HAP1 FLOT1 (-) 2 2 11807 -cellosaurus:CVCL_SN74 HAP1 FLT1 (-) 1 2 11808 -cellosaurus:CVCL_SN75 HAP1 FLT1 (-) 2 2 11809 -cellosaurus:CVCL_SN76 HAP1 FLT4 (-) 2 11810 -cellosaurus:CVCL_SN77 HAP1 FLVCR1 (-) 1 2 11811 -cellosaurus:CVCL_SN78 HAP1 FLVCR1 (-) 2 2 11812 -cellosaurus:CVCL_SN79 HAP1 FMR1 (-) 1 2 11813 -cellosaurus:CVCL_XN82 HAP1 FMR1 (-) 2 2 11814 -cellosaurus:CVCL_XN83 HAP1 FMR1 (-) 3 2 11815 -cellosaurus:CVCL_XN84 HAP1 FMR1 (-) 4 2 11816 -cellosaurus:CVCL_SN80 HAP1 FN1 (-) 1 2 11817 -cellosaurus:CVCL_SN81 HAP1 FN1 (-) 2 2 11818 -cellosaurus:CVCL_SN82 HAP1 FNDC5 (-) 1 2 11819 -cellosaurus:CVCL_XN85 HAP1 FNDC5 (-) 2 2 11820 -cellosaurus:CVCL_XN86 HAP1 FNIP1 (-) 2 11821 -cellosaurus:CVCL_XN87 HAP1 FNIP2 (-) 2 11822 -cellosaurus:CVCL_SN83 HAP1 FOLH1 (-) 2 11823 -cellosaurus:CVCL_SN84 HAP1 FOLR1 (-) 1 2 11824 -cellosaurus:CVCL_XN88 HAP1 FOLR1 (-) 2 2 11825 -cellosaurus:CVCL_SN85 HAP1 FOS (-) 1 2 11826 -cellosaurus:CVCL_SN86 HAP1 FOS (-) 2 2 11827 -cellosaurus:CVCL_SN87 HAP1 FOXA1 (-) 1 2 11828 -cellosaurus:CVCL_XN89 HAP1 FOXA1 (-) 2 2 11829 -cellosaurus:CVCL_SN88 HAP1 FOXM1 (-) 1 2 11830 -cellosaurus:CVCL_SN89 HAP1 FOXM1 (-) 2 2 11831 -cellosaurus:CVCL_SN90 HAP1 FOXO1 (-) 1 2 11832 -cellosaurus:CVCL_XN90 HAP1 FOXO1 (-) 2 2 11833 -cellosaurus:CVCL_XN91 HAP1 FOXO1 (-) 3 2 11834 -cellosaurus:CVCL_SN91 HAP1 FOXRED1 (-) 1 2 11835 -cellosaurus:CVCL_SN92 HAP1 FOXRED1 (-) 2 2 11836 -cellosaurus:CVCL_SN93 HAP1 FRYL (-) 1 2 11837 -cellosaurus:CVCL_XN92 HAP1 FRYL (-) 2 2 11838 -cellosaurus:CVCL_XN93 HAP1 FRYL (-) 3 2 11839 -cellosaurus:CVCL_SN94 HAP1 FSCN1 (-) 2 11840 -cellosaurus:CVCL_SN95 HAP1 FTL (-) 1 2 11841 -cellosaurus:CVCL_SN96 HAP1 FTL (-) 2 2 11842 -cellosaurus:CVCL_SN97 HAP1 FTO (-) 1 2 11843 -cellosaurus:CVCL_SN98 HAP1 FTO (-) 2 2 11844 -cellosaurus:CVCL_SN99 HAP1 FTO (-) 3 2 11845 -cellosaurus:CVCL_SP00 HAP1 FTSJ1 (-) 1 2 11846 -cellosaurus:CVCL_XN94 HAP1 FTSJ1 (-) 2 2 11847 -cellosaurus:CVCL_SP01 HAP1 FUNDC2 (-) 1 2 11848 -cellosaurus:CVCL_XN95 HAP1 FUNDC2 (-) 2 2 11849 -cellosaurus:CVCL_XN96 HAP1 FUNDC2 (-) 3 2 11850 -cellosaurus:CVCL_XN97 HAP1 FUNDC2 (-) 4 2 11851 -cellosaurus:CVCL_XN98 HAP1 FUNDC2 (-) 5 2 11852 -cellosaurus:CVCL_SP02 HAP1 FURIN (-) 1 2 11853 -cellosaurus:CVCL_SP03 HAP1 FURIN (-) 2 2 11854 -cellosaurus:CVCL_SP04 HAP1 FUS (-) 1 2 11855 -cellosaurus:CVCL_SP05 HAP1 FUS (-) 2 2 11856 -cellosaurus:CVCL_SP06 HAP1 FXR1 (-) 1 2 11857 -cellosaurus:CVCL_XN99 HAP1 FXR1 (-) 2 2 11858 -cellosaurus:CVCL_XP00 HAP1 FXR1 (-) 3 2 11859 -cellosaurus:CVCL_XP01 HAP1 FXR1 (-) 4 2 11860 -cellosaurus:CVCL_SP07 HAP1 FYN (-) 1 2 11861 -cellosaurus:CVCL_SP08 HAP1 FYN (-) 2 2 11862 -cellosaurus:CVCL_SP09 HAP1 FYN (-) 3 2 11863 -cellosaurus:CVCL_SP10 HAP1 FZD1 (-) 1 2 11864 -cellosaurus:CVCL_SP11 HAP1 FZD1 (-) 2 2 11865 -cellosaurus:CVCL_SP12 HAP1 FZD2 (-) 2 11866 -cellosaurus:CVCL_SP13 HAP1 FZD3 (-) 1 2 11867 -cellosaurus:CVCL_SP14 HAP1 FZD3 (-) 2 2 11868 -cellosaurus:CVCL_SP15 HAP1 FZD4 (-) 1 2 11869 -cellosaurus:CVCL_SP16 HAP1 FZD4 (-) 2 2 11870 -cellosaurus:CVCL_SP17 HAP1 FZD4 (-) 3 2 11871 -cellosaurus:CVCL_SP18 HAP1 FZD5 (-) 2 11872 -cellosaurus:CVCL_SP19 HAP1 FZD6 (-) 1 2 11873 -cellosaurus:CVCL_SP20 HAP1 FZD6 (-) 2 2 11874 -cellosaurus:CVCL_SP21 HAP1 FZD7 (-) 1 2 11875 -cellosaurus:CVCL_SP22 HAP1 FZD7 (-) 2 2 11876 -cellosaurus:CVCL_SP23 HAP1 FZD8 (-) 1 2 11877 -cellosaurus:CVCL_SP24 HAP1 FZD8 (-) 2 2 11878 -cellosaurus:CVCL_SP25 HAP1 FZD9 (-) 1 2 11879 -cellosaurus:CVCL_SP26 HAP1 FZD9 (-) 2 2 11880 -cellosaurus:CVCL_SP27 HAP1 FZD9 (-) 3 2 11881 -cellosaurus:CVCL_SP28 HAP1 FZD9 (-) 4 2 11882 -cellosaurus:CVCL_SP29 HAP1 FZD9 (-) 5 2 11883 -cellosaurus:CVCL_SP30 HAP1 GAA (-) 2 11884 -cellosaurus:CVCL_SP31 HAP1 GAB1 (-) 1 2 11885 -cellosaurus:CVCL_XP02 HAP1 GAB1 (-) 2 2 11886 -cellosaurus:CVCL_SP32 HAP1 GABARAP (-) 1 2 11887 -cellosaurus:CVCL_SP33 HAP1 GABARAP (-) 2 2 11888 -cellosaurus:CVCL_SP34 HAP1 GABARAP (-) 3 2 11889 -cellosaurus:CVCL_SP35 HAP1 GABARAP (-) 4 2 11890 -cellosaurus:CVCL_SP36 HAP1 GABARAP (-) 5 2 11891 -cellosaurus:CVCL_SP37 HAP1 GABARAPL1 (-) 1 2 11892 -cellosaurus:CVCL_SP38 HAP1 GABARAPL1 (-) 2 2 11893 -cellosaurus:CVCL_SP39 HAP1 GABARAPL2 (-) 1 2 11894 -cellosaurus:CVCL_SP40 HAP1 GABARAPL2 (-) 2 2 11895 -cellosaurus:CVCL_SP41 HAP1 GABBR1 (-) 1 2 11896 -cellosaurus:CVCL_SP42 HAP1 GABBR1 (-) 2 2 11897 -cellosaurus:CVCL_SP43 HAP1 GABRA5 (-) 1 2 11898 -cellosaurus:CVCL_SP44 HAP1 GABRA5 (-) 2 2 11899 -cellosaurus:CVCL_SP45 HAP1 GABRB3 (-) 1 2 11900 -cellosaurus:CVCL_SP46 HAP1 GABRB3 (-) 2 2 11901 -cellosaurus:CVCL_SP47 HAP1 GAD1 (-) 1 2 11902 -cellosaurus:CVCL_XP03 HAP1 GAD1 (-) 2 2 11903 -cellosaurus:CVCL_SP48 HAP1 GAK (-) 1 2 11904 -cellosaurus:CVCL_SP49 HAP1 GAK (-) 2 2 11905 -cellosaurus:CVCL_SP50 HAP1 GAK (-) 3 2 11906 -cellosaurus:CVCL_SP51 HAP1 GALT (-) 1 2 11907 -cellosaurus:CVCL_SP52 HAP1 GALT (-) 2 2 11908 -cellosaurus:CVCL_SP53 HAP1 GAMT (-) 2 11909 -cellosaurus:CVCL_SP54 HAP1 GANAB (-) 1 2 11910 -cellosaurus:CVCL_SP55 HAP1 GANAB (-) 2 2 11911 -cellosaurus:CVCL_SP56 HAP1 GANC (-) 1 2 11912 -cellosaurus:CVCL_SP57 HAP1 GANC (-) 2 2 11913 -cellosaurus:CVCL_SP58 HAP1 GATA2 (-) 1 2 11914 -cellosaurus:CVCL_XP04 HAP1 GATA2 (-) 2 2 11915 -cellosaurus:CVCL_XP05 HAP1 GATA2 (-) 3 2 11916 -cellosaurus:CVCL_XP06 HAP1 GATA2 (-) 4 2 11917 -cellosaurus:CVCL_SP59 HAP1 GATA3 (-) 1 2 11918 -cellosaurus:CVCL_XP07 HAP1 GATA3 (-) 2 2 11919 -cellosaurus:CVCL_SP60 HAP1 GBA (-) 1 2 11920 -cellosaurus:CVCL_SP61 HAP1 GBA (-) 2 2 11921 -cellosaurus:CVCL_SP62 HAP1 GBA (-) 3 2 11922 -cellosaurus:CVCL_SP63 HAP1 GBA (-) 4 2 11923 -cellosaurus:CVCL_SP64 HAP1 GBA (-) 5 2 11924 -cellosaurus:CVCL_SP65 HAP1 GBA (-) 6 2 11925 -cellosaurus:CVCL_SP66 HAP1 GBA (-) 7 2 11926 -cellosaurus:CVCL_SP67 HAP1 GBA (-) 8 2 11927 -cellosaurus:CVCL_SP68 HAP1 GBA2 (-) 1 2 11928 -cellosaurus:CVCL_SP69 HAP1 GBA2 (-) 2 2 11929 -cellosaurus:CVCL_SP70 HAP1 GBE1 (-) 1 2 11930 -cellosaurus:CVCL_XP08 HAP1 GBE1 (-) 2 2 11931 -cellosaurus:CVCL_SP71 HAP1 GBP1 (-) 1 2 11932 -cellosaurus:CVCL_SP72 HAP1 GBP1 (-) 2 2 11933 -cellosaurus:CVCL_SP73 HAP1 GBP2 (-) 1 2 11934 -cellosaurus:CVCL_SP74 HAP1 GBP2 (-) 2 2 11935 -cellosaurus:CVCL_SP75 HAP1 GBP2 (-) 3 2 11936 -cellosaurus:CVCL_SP76 HAP1 GBP5 (-) 1 2 11937 -cellosaurus:CVCL_SP77 HAP1 GBP5 (-) 2 2 11938 -cellosaurus:CVCL_SP78 HAP1 GCDH (-) 1 2 11939 -cellosaurus:CVCL_SP79 HAP1 GCDH (-) 2 2 11940 -cellosaurus:CVCL_SP80 HAP1 GCDH (-) 3 2 11941 -cellosaurus:CVCL_SP81 HAP1 GCH1 (-) 1 2 11942 -cellosaurus:CVCL_SP82 HAP1 GCH1 (-) 2 2 11943 -cellosaurus:CVCL_SP83 HAP1 GCLM (-) 1 2 11944 -cellosaurus:CVCL_SP84 HAP1 GCLM (-) 2 2 11945 -cellosaurus:CVCL_SP85 HAP1 GCN1L1 (-) 1 2 11946 -cellosaurus:CVCL_SP86 HAP1 GCN1L1 (-) 2 2 11947 -cellosaurus:CVCL_SP87 HAP1 GCN1L1 (-) 3 2 11948 -cellosaurus:CVCL_SP88 HAP1 GCN1L1 (-) 4 2 11949 -cellosaurus:CVCL_SP89 HAP1 GEN1 (-) 2 11950 -cellosaurus:CVCL_SP90 HAP1 GFPT1 (-) 2 11951 -cellosaurus:CVCL_SP91 HAP1 GGA1 (-) 1 2 11952 -cellosaurus:CVCL_SP92 HAP1 GGA1 (-) 2 2 11953 -cellosaurus:CVCL_SP93 HAP1 GGA1 (-) 3 2 11954 -cellosaurus:CVCL_SP94 HAP1 GGA1 (-) 4 2 11955 -cellosaurus:CVCL_SP95 HAP1 GGA1 (-) 5 2 11956 -cellosaurus:CVCL_SP96 HAP1 GGCX (-) 2 11957 -cellosaurus:CVCL_SP97 HAP1 GGT7 (-) 2 11958 -cellosaurus:CVCL_SP98 HAP1 GHITM (-) 1 2 11959 -cellosaurus:CVCL_SP99 HAP1 GHITM (-) 2 2 11960 -cellosaurus:CVCL_SQ00 HAP1 GHITM (-) 3 2 11961 -cellosaurus:CVCL_SQ01 HAP1 GID4 (-) 1 2 11962 -cellosaurus:CVCL_XP09 HAP1 GID4 (-) 2 2 11963 -cellosaurus:CVCL_XP10 HAP1 GID4 (-) 3 2 11964 -cellosaurus:CVCL_XP11 HAP1 GID4 (-) 4 2 11965 -cellosaurus:CVCL_SQ02 HAP1 GIT1 (-) 1 2 11966 -cellosaurus:CVCL_XP12 HAP1 GIT1 (-) 2 2 11967 -cellosaurus:CVCL_SQ03 HAP1 GLA (-) 1 2 11968 -cellosaurus:CVCL_XP13 HAP1 GLA (-) 2 2 11969 -cellosaurus:CVCL_XP14 HAP1 GLB1 (-) 1 2 11970 -cellosaurus:CVCL_B5K6 HAP1 GLB1 (-) 2 2 11971 -cellosaurus:CVCL_SQ04 HAP1 GLO1 (-) 1 2 11972 -cellosaurus:CVCL_XP15 HAP1 GLO1 (-) 2 2 11973 -cellosaurus:CVCL_SQ05 HAP1 GLOD4 (-) 1 2 11974 -cellosaurus:CVCL_XP16 HAP1 GLOD4 (-) 2 2 11975 -cellosaurus:CVCL_XP17 HAP1 GLOD4 (-) 3 2 11976 -cellosaurus:CVCL_SQ06 HAP1 GLRB (-) 1 2 11977 -cellosaurus:CVCL_SQ07 HAP1 GLRB (-) 2 2 11978 -cellosaurus:CVCL_XP18 HAP1 GLRX5 (-) 2 11979 -cellosaurus:CVCL_SQ08 HAP1 GLS (-) 1 2 11980 -cellosaurus:CVCL_SQ09 HAP1 GLS (-) 2 2 11981 -cellosaurus:CVCL_SQ10 HAP1 GLUD1 (-) 1 2 11982 -cellosaurus:CVCL_XP19 HAP1 GLUD1 (-) 2 2 11983 -cellosaurus:CVCL_XP20 HAP1 GLUD1 (-) 3 2 11984 -cellosaurus:CVCL_XP21 HAP1 GLUD1 (-) 4 2 11985 -cellosaurus:CVCL_XP22 HAP1 GLUD1 (-) 5 2 11986 -cellosaurus:CVCL_SQ11 HAP1 GLUL (-) 1 2 11987 -cellosaurus:CVCL_XP23 HAP1 GLUL (-) 2 2 11988 -cellosaurus:CVCL_SQ12 HAP1 GMDS (-) 2 11989 -cellosaurus:CVCL_SQ13 HAP1 GNAQ (-) 1 2 11990 -cellosaurus:CVCL_SQ14 HAP1 GNAQ (-) 2 2 11991 -cellosaurus:CVCL_SQ15 HAP1 GNE (-) 1 2 11992 -cellosaurus:CVCL_SQ16 HAP1 GNE (-) 2 2 11993 -cellosaurus:CVCL_SQ17 HAP1 GNE (-) 3 2 11994 -cellosaurus:CVCL_SQ18 HAP1 GNG5 (-) 1 2 11995 -cellosaurus:CVCL_XP24 HAP1 GNG5 (-) 2 2 11996 -cellosaurus:CVCL_XP25 HAP1 GNPDA2 (-) 2 11997 -cellosaurus:CVCL_SQ19 HAP1 GNPTAB (-) 2 11998 -cellosaurus:CVCL_SQ20 HAP1 GNPTG (-) 1 2 11999 -cellosaurus:CVCL_SQ21 HAP1 GNPTG (-) 2 2 12000 -cellosaurus:CVCL_SQ22 HAP1 GNPTG (-) 3 2 12001 -cellosaurus:CVCL_SQ23 HAP1 GNPTG (-) 4 2 12002 -cellosaurus:CVCL_SQ24 HAP1 GNPTG (-) 5 2 12003 -cellosaurus:CVCL_SQ25 HAP1 GOLGA2 (-) 1 2 12004 -cellosaurus:CVCL_XP26 HAP1 GOLGA2 (-) 2 2 12005 -cellosaurus:CVCL_SQ26 HAP1 GOLGB1 (-) 1 2 12006 -cellosaurus:CVCL_XP27 HAP1 GOLGB1 (-) 2 2 12007 -cellosaurus:CVCL_XP28 HAP1 GOLM1 (-) 2 12008 -cellosaurus:CVCL_SQ27 HAP1 GOLPH3 (-) 1 2 12009 -cellosaurus:CVCL_SQ28 HAP1 GOLPH3 (-) 2 2 12010 -cellosaurus:CVCL_SQ29 HAP1 GORAB (-) 1 2 12011 -cellosaurus:CVCL_XP29 HAP1 GORAB (-) 2 2 12012 -cellosaurus:CVCL_XP30 HAP1 GORAB (-) 3 2 12013 -cellosaurus:CVCL_SQ30 HAP1 GOT1 (-) 1 2 12014 -cellosaurus:CVCL_SQ31 HAP1 GOT1 (-) 2 2 12015 -cellosaurus:CVCL_XP31 HAP1 GOT2 (-) 2 12016 -cellosaurus:CVCL_SQ32 HAP1 GPATCH2 (-) 1 2 12017 -cellosaurus:CVCL_SQ33 HAP1 GPATCH2 (-) 2 2 12018 -cellosaurus:CVCL_SQ34 HAP1 GPATCH2 (-) 3 2 12019 -cellosaurus:CVCL_SQ35 HAP1 GPATCH2 (-) 4 2 12020 -cellosaurus:CVCL_SQ36 HAP1 GPC3 (-) 2 12021 -cellosaurus:CVCL_SQ37 HAP1 GPC4 (-) 1 2 12022 -cellosaurus:CVCL_SQ38 HAP1 GPC4 (-) 2 2 12023 -cellosaurus:CVCL_XP32 HAP1 GPD2 (-) 2 12024 -cellosaurus:CVCL_SQ39 HAP1 GPHN (-) 2 12025 -cellosaurus:CVCL_SQ40 HAP1 GPR137 (-) 1 2 12026 -cellosaurus:CVCL_SQ41 HAP1 GPR137 (-) 2 2 12027 -cellosaurus:CVCL_SQ42 HAP1 GPR137 (-) 3 2 12028 -cellosaurus:CVCL_SQ43 HAP1 GPR137 (-) 4 2 12029 -cellosaurus:CVCL_SQ44 HAP1 GPR137B (-) 1 2 12030 -cellosaurus:CVCL_SQ45 HAP1 GPR137B (-) 2 2 12031 -cellosaurus:CVCL_SQ46 HAP1 GPR137C (-) 1 2 12032 -cellosaurus:CVCL_SQ47 HAP1 GPR137C (-) 2 2 12033 -cellosaurus:CVCL_XP33 HAP1 GPR137C (-) 3 2 12034 -cellosaurus:CVCL_XP34 HAP1 GPR78 (-) 2 12035 -cellosaurus:CVCL_SQ48 HAP1 GPT2 (-) 1 2 12036 -cellosaurus:CVCL_SQ49 HAP1 GPT2 (-) 2 2 12037 -cellosaurus:CVCL_SQ50 HAP1 GPX1 (-) 1 2 12038 -cellosaurus:CVCL_SQ51 HAP1 GPX1 (-) 2 2 12039 -cellosaurus:CVCL_SQ52 HAP1 GPX4 (-) 1 2 12040 -cellosaurus:CVCL_XP35 HAP1 GPX4 (-) 2 2 12041 -cellosaurus:CVCL_XP36 HAP1 GRHL1 (-) 2 12042 -cellosaurus:CVCL_SQ53 HAP1 GRINA (-) 1 2 12043 -cellosaurus:CVCL_XP37 HAP1 GRINA (-) 2 2 12044 -cellosaurus:CVCL_XP38 HAP1 GRINA (-) 3 2 12045 -cellosaurus:CVCL_XP39 HAP1 GRINA (-) 4 2 12046 -cellosaurus:CVCL_SQ54 HAP1 GRK5 (-) 1 2 12047 -cellosaurus:CVCL_SQ55 HAP1 GRK5 (-) 2 2 12048 -cellosaurus:CVCL_SQ56 HAP1 GRK5 (-) 3 2 12049 -cellosaurus:CVCL_SQ57 HAP1 GRK6 (-) 1 2 12050 -cellosaurus:CVCL_SQ58 HAP1 GRK6 (-) 2 2 12051 -cellosaurus:CVCL_SQ59 HAP1 GRM8 (-) 1 2 12052 -cellosaurus:CVCL_SQ60 HAP1 GRM8 (-) 2 2 12053 -cellosaurus:CVCL_SQ61 HAP1 GRN (-) 1 2 12054 -cellosaurus:CVCL_SQ62 HAP1 GRN (-) 2 2 12055 -cellosaurus:CVCL_XP40 HAP1 GSDMD (-) 1 2 12056 -cellosaurus:CVCL_B5K7 HAP1 GSDMD (-) 2 2 12057 -cellosaurus:CVCL_SQ63 HAP1 GSG2 (-) 2 12058 -cellosaurus:CVCL_SQ64 HAP1 GSK3A (-) 1 2 12059 -cellosaurus:CVCL_SQ65 HAP1 GSK3A (-) 2 2 12060 -cellosaurus:CVCL_SQ66 HAP1 GSK3B (-) 1 2 12061 -cellosaurus:CVCL_SQ67 HAP1 GSK3B (-) 2 2 12062 -cellosaurus:CVCL_XP41 HAP1 GSKIP (-) 2 12063 -cellosaurus:CVCL_SQ68 HAP1 GSN (-) 1 2 12064 -cellosaurus:CVCL_XP42 HAP1 GSN (-) 2 2 12065 -cellosaurus:CVCL_SQ69 HAP1 GSR (-) 2 12066 -cellosaurus:CVCL_SQ70 HAP1 GSTM2 (-) 1 2 12067 -cellosaurus:CVCL_XP43 HAP1 GSTM2 (-) 2 2 12068 -cellosaurus:CVCL_SQ71 HAP1 GSTP1 (-) 2 12069 -cellosaurus:CVCL_SQ72 HAP1 GTF2I (-) 1 2 12070 -cellosaurus:CVCL_XP44 HAP1 GTF2I (-) 2 2 12071 -cellosaurus:CVCL_SQ73 HAP1 GUSB (-) 1 2 12072 -cellosaurus:CVCL_SQ74 HAP1 GUSB (-) 2 2 12073 -cellosaurus:CVCL_SQ75 HAP1 H2AFX (-) 2 12074 -cellosaurus:CVCL_SQ76 HAP1 H2AFY (-) 1 2 12075 -cellosaurus:CVCL_XP45 HAP1 H2AFY (-) 2 2 12076 -cellosaurus:CVCL_SQ77 HAP1 H2AFZ (-) 1 2 12077 -cellosaurus:CVCL_SQ78 HAP1 H2AFZ (-) 2 2 12078 -cellosaurus:CVCL_SQ79 HAP1 H2AFZ (-) 3 2 12079 -cellosaurus:CVCL_SQ80 HAP1 H3F3A (-) 1 2 12080 -cellosaurus:CVCL_SQ81 HAP1 H3F3A (-) 2 2 12081 -cellosaurus:CVCL_SQ82 HAP1 H3F3A (-) 3 2 12082 -cellosaurus:CVCL_SQ83 HAP1 H3F3B (-) 1 2 12083 -cellosaurus:CVCL_SQ84 HAP1 H3F3B (-) 2 2 12084 -cellosaurus:CVCL_SQ85 HAP1 HADHA (-) 1 2 12085 -cellosaurus:CVCL_SQ86 HAP1 HADHA (-) 2 2 12086 -cellosaurus:CVCL_SQ87 HAP1 HAGH (-) 1 2 12087 -cellosaurus:CVCL_SQ88 HAP1 HAGH (-) 2 2 12088 -cellosaurus:CVCL_SQ89 HAP1 HARBI1 (-) 2 12089 -cellosaurus:CVCL_SQ90 HAP1 HAT1 (-) 1 2 12090 -cellosaurus:CVCL_SQ91 HAP1 HAT1 (-) 2 2 12091 -cellosaurus:CVCL_SQ92 HAP1 HAX1 (-) 1 2 12092 -cellosaurus:CVCL_SQ93 HAP1 HAX1 (-) 2 2 12093 -cellosaurus:CVCL_SQ94 HAP1 HBEGF (-) 1 2 12094 -cellosaurus:CVCL_SQ95 HAP1 HBEGF (-) 2 2 12095 -cellosaurus:CVCL_SQ96 HAP1 HCK (-) 1 2 12096 -cellosaurus:CVCL_SQ97 HAP1 HCK (-) 2 2 12097 -cellosaurus:CVCL_SQ98 HAP1 HDAC1 (-) 1 2 12098 -cellosaurus:CVCL_SQ99 HAP1 HDAC1 (-) 2 2 12099 -cellosaurus:CVCL_SR00 HAP1 HDAC1 (-) 3 2 12100 -cellosaurus:CVCL_SR01 HAP1 HDAC1 (-) 4 2 12101 -cellosaurus:CVCL_SR02 HAP1 HDAC10 (-) 1 2 12102 -cellosaurus:CVCL_SR03 HAP1 HDAC10 (-) 2 2 12103 -cellosaurus:CVCL_SR04 HAP1 HDAC11 (-) 1 2 12104 -cellosaurus:CVCL_SR05 HAP1 HDAC11 (-) 2 2 12105 -cellosaurus:CVCL_SR06 HAP1 HDAC2 (-) 1 2 12106 -cellosaurus:CVCL_SR07 HAP1 HDAC2 (-) 2 2 12107 -cellosaurus:CVCL_SR08 HAP1 HDAC3 (-) 2 12108 -cellosaurus:CVCL_SR09 HAP1 HDAC4 (-) 1 2 12109 -cellosaurus:CVCL_SR10 HAP1 HDAC4 (-) 2 2 12110 -cellosaurus:CVCL_SR11 HAP1 HDAC5 (-) 1 2 12111 -cellosaurus:CVCL_SR12 HAP1 HDAC5 (-) 2 2 12112 -cellosaurus:CVCL_SR13 HAP1 HDAC6 (-) 1 2 12113 -cellosaurus:CVCL_SR14 HAP1 HDAC6 (-) 2 2 12114 -cellosaurus:CVCL_SR15 HAP1 HDAC6 (-) 3 2 12115 -cellosaurus:CVCL_SR16 HAP1 HDAC7 (-) 1 2 12116 -cellosaurus:CVCL_SR17 HAP1 HDAC7 (-) 2 2 12117 -cellosaurus:CVCL_SR18 HAP1 HDAC8 (-) 1 2 12118 -cellosaurus:CVCL_SR19 HAP1 HDAC8 (-) 2 2 12119 -cellosaurus:CVCL_SR20 HAP1 HDAC8 (-) 3 2 12120 -cellosaurus:CVCL_SR21 HAP1 HDAC8 (-) 4 2 12121 -cellosaurus:CVCL_SR22 HAP1 HDAC9 (-) 1 2 12122 -cellosaurus:CVCL_SR23 HAP1 HDAC9 (-) 2 2 12123 -cellosaurus:CVCL_SR24 HAP1 HDHD3 (-) 1 2 12124 -cellosaurus:CVCL_XP46 HAP1 HDHD3 (-) 2 2 12125 -cellosaurus:CVCL_XP47 HAP1 HDHD3 (-) 3 2 12126 -cellosaurus:CVCL_XP48 HAP1 HDHD3 (-) 4 2 12127 -cellosaurus:CVCL_XP49 HAP1 HDHD3 (-) 5 2 12128 -cellosaurus:CVCL_XP50 HAP1 HECTD1 (-) 1 2 12129 -cellosaurus:CVCL_B5K8 HAP1 HECTD1 (-) 2 2 12130 -cellosaurus:CVCL_SR25 HAP1 HELLS (-) 2 12131 -cellosaurus:CVCL_XP51 HAP1 HERC1 (-) 2 12132 -cellosaurus:CVCL_SR26 HAP1 HERPUD2 (-) 1 2 12133 -cellosaurus:CVCL_XP52 HAP1 HERPUD2 (-) 2 2 12134 -cellosaurus:CVCL_SR27 HAP1 HES1 (-) 2 12135 -cellosaurus:CVCL_SR28 HAP1 HEXA (-) 2 12136 -cellosaurus:CVCL_SR29 HAP1 HEXB (-) 1 2 12137 -cellosaurus:CVCL_SR30 HAP1 HEXB (-) 2 2 12138 -cellosaurus:CVCL_SR31 HAP1 HEXB (-) 3 2 12139 -cellosaurus:CVCL_SR32 HAP1 HEXDC (-) 1 2 12140 -cellosaurus:CVCL_SR33 HAP1 HEXDC (-) 2 2 12141 -cellosaurus:CVCL_SR34 HAP1 HGS (-) 1 2 12142 -cellosaurus:CVCL_SR35 HAP1 HGS (-) 2 2 12143 -cellosaurus:CVCL_SR36 HAP1 HGS (-) 3 2 12144 -cellosaurus:CVCL_SR37 HAP1 HIAT1 (-) 1 2 12145 -cellosaurus:CVCL_XP53 HAP1 HIAT1 (-) 2 2 12146 -cellosaurus:CVCL_SR38 HAP1 HIF1A (-) 1 2 12147 -cellosaurus:CVCL_SR39 HAP1 HIF1A (-) 2 2 12148 -cellosaurus:CVCL_XP54 HAP1 HIF1AN (-) 1 2 12149 -cellosaurus:CVCL_B5K9 HAP1 HIF1AN (-) 2 2 12150 -cellosaurus:CVCL_SR40 HAP1 HIP1 (-) 1 2 12151 -cellosaurus:CVCL_XP55 HAP1 HIP1 (-) 2 2 12152 -cellosaurus:CVCL_SR41 HAP1 HIPK1 (-) 1 2 12153 -cellosaurus:CVCL_SR42 HAP1 HIPK1 (-) 2 2 12154 -cellosaurus:CVCL_SR43 HAP1 HIPK1 (-) 3 2 12155 -cellosaurus:CVCL_SR44 HAP1 HIPK2 (-) 1 2 12156 -cellosaurus:CVCL_SR45 HAP1 HIPK2 (-) 2 2 12157 -cellosaurus:CVCL_SR46 HAP1 HIPK2 (-) 3 2 12158 -cellosaurus:CVCL_SR47 HAP1 HIPK3 (-) 1 2 12159 -cellosaurus:CVCL_SR48 HAP1 HIPK3 (-) 2 2 12160 -cellosaurus:CVCL_XP56 HAP1 HLA-E (-) 2 12161 -cellosaurus:CVCL_SR49 HAP1 HLA-G (-) 1 2 12162 -cellosaurus:CVCL_XP57 HAP1 HLA-G (-) 2 2 12163 -cellosaurus:CVCL_SR50 HAP1 HLTF (-) 1 2 12164 -cellosaurus:CVCL_SR51 HAP1 HLTF (-) 2 2 12165 -cellosaurus:CVCL_SR52 HAP1 HLTF (-) 3 2 12166 -cellosaurus:CVCL_SR53 HAP1 HMGB2 (-) 1 2 12167 -cellosaurus:CVCL_SR54 HAP1 HMGB2 (-) 2 2 12168 -cellosaurus:CVCL_SR55 HAP1 HMMR (-) 1 2 12169 -cellosaurus:CVCL_SR56 HAP1 HMMR (-) 2 2 12170 -cellosaurus:CVCL_SR57 HAP1 HMOX1 (-) 1 2 12171 -cellosaurus:CVCL_XP58 HAP1 HMOX1 (-) 2 2 12172 -cellosaurus:CVCL_SR58 HAP1 HMOX2 (-) 1 2 12173 -cellosaurus:CVCL_XP59 HAP1 HMOX2 (-) 2 2 12174 -cellosaurus:CVCL_SR59 HAP1 HNRNPDL (-) 1 2 12175 -cellosaurus:CVCL_SR60 HAP1 HNRNPDL (-) 2 2 12176 -cellosaurus:CVCL_SR61 HAP1 HOOK3 (-) 2 12177 -cellosaurus:CVCL_SR62 HAP1 HPRT1 (-) 1 2 12178 -cellosaurus:CVCL_SR63 HAP1 HPRT1 (-) 2 2 12179 -cellosaurus:CVCL_SR64 HAP1 HPS1 (-) 1 2 12180 -cellosaurus:CVCL_XP60 HAP1 HPS1 (-) 2 2 12181 -cellosaurus:CVCL_XP61 HAP1 HPS1 (-) 3 2 12182 -cellosaurus:CVCL_SR65 HAP1 HPSE (-) 2 12183 -cellosaurus:CVCL_SR66 HAP1 HRSP12 (-) 1 2 12184 -cellosaurus:CVCL_SR67 HAP1 HRSP12 (-) 2 2 12185 -cellosaurus:CVCL_SR68 HAP1 HRSP12 (-) 3 2 12186 -cellosaurus:CVCL_XP62 HAP1 HSD17B12 (-) 2 12187 -cellosaurus:CVCL_SR69 HAP1 HSD17B4 (-) 1 2 12188 -cellosaurus:CVCL_SR70 HAP1 HSD17B4 (-) 2 2 12189 -cellosaurus:CVCL_SR71 HAP1 HSF1 (-) 1 2 12190 -cellosaurus:CVCL_SR72 HAP1 HSF1 (-) 2 2 12191 -cellosaurus:CVCL_SR73 HAP1 HSF1 (-) 3 2 12192 -cellosaurus:CVCL_SR74 HAP1 HSP90AA1 (-) 1 2 12193 -cellosaurus:CVCL_XP63 HAP1 HSP90AA1 (-) 2 2 12194 -cellosaurus:CVCL_SR75 HAP1 HSPA1L (-) 1 2 12195 -cellosaurus:CVCL_SR76 HAP1 HSPA1L (-) 2 2 12196 -cellosaurus:CVCL_SR77 HAP1 HSPB1 (-) 1 2 12197 -cellosaurus:CVCL_SR78 HAP1 HSPB1 (-) 2 2 12198 -cellosaurus:CVCL_SR79 HAP1 HSPB1 (-) 3 2 12199 -cellosaurus:CVCL_SR80 HAP1 HSPB1 (-) 4 2 12200 -cellosaurus:CVCL_SR81 HAP1 HSPG2 (-) 1 2 12201 -cellosaurus:CVCL_SR82 HAP1 HSPG2 (-) 2 2 12202 -cellosaurus:CVCL_SR83 HAP1 HSPG2 (-) 3 2 12203 -cellosaurus:CVCL_SR84 HAP1 HTR6 (-) 1 2 12204 -cellosaurus:CVCL_SR85 HAP1 HTR6 (-) 2 2 12205 -cellosaurus:CVCL_C1LH HAP1 HTRA1 (-) 1 2 12206 -cellosaurus:CVCL_C1LI HAP1 HTRA1 (-) 2 2 12207 -cellosaurus:CVCL_XP64 HAP1 HTRA2 (-) 2 12208 -cellosaurus:CVCL_SR86 HAP1 HTT (-) 1 2 12209 -cellosaurus:CVCL_SR87 HAP1 HTT (-) 2 2 12210 -cellosaurus:CVCL_SR88 HAP1 HUNK (-) 2 12211 -cellosaurus:CVCL_SR89 HAP1 HUWE1 (-) 1 2 12212 -cellosaurus:CVCL_SR90 HAP1 HUWE1 (-) 2 2 12213 -cellosaurus:CVCL_SR91 HAP1 IBTK (-) 1 2 12214 -cellosaurus:CVCL_SR92 HAP1 IBTK (-) 2 2 12215 -cellosaurus:CVCL_SR93 HAP1 ICAM1 (-) 1 2 12216 -cellosaurus:CVCL_XP65 HAP1 ICAM1 (-) 2 2 12217 -cellosaurus:CVCL_SR94 HAP1 ICAM5 (-) 1 2 12218 -cellosaurus:CVCL_XP66 HAP1 ICAM5 (-) 2 2 12219 -cellosaurus:CVCL_XP67 HAP1 ICAM5 (-) 3 2 12220 -cellosaurus:CVCL_XP68 HAP1 ICAM5 (-) 4 2 12221 -cellosaurus:CVCL_SR95 HAP1 ICK (-) 2 12222 -cellosaurus:CVCL_SR96 HAP1 ICMT (-) 1 2 12223 -cellosaurus:CVCL_SR97 HAP1 ICMT (-) 2 2 12224 -cellosaurus:CVCL_SR98 HAP1 ID1 (-) 1 2 12225 -cellosaurus:CVCL_XP69 HAP1 ID1 (-) 2 2 12226 -cellosaurus:CVCL_XP70 HAP1 ID1 (-) 3 2 12227 -cellosaurus:CVCL_SR99 HAP1 IDE (-) 1 2 12228 -cellosaurus:CVCL_SS00 HAP1 IDE (-) 2 2 12229 -cellosaurus:CVCL_SS01 HAP1 IDE (-) 3 2 12230 -cellosaurus:CVCL_SS02 HAP1 IDE (-) 4 2 12231 -cellosaurus:CVCL_SS03 HAP1 IDH1 (-) 1 2 12232 -cellosaurus:CVCL_SS04 HAP1 IDH1 (-) 2 2 12233 -cellosaurus:CVCL_SS05 HAP1 IDH1 (-) 3 2 12234 -cellosaurus:CVCL_SS06 HAP1 IDH2 (-) 1 2 12235 -cellosaurus:CVCL_SS07 HAP1 IDH2 (-) 2 2 12236 -cellosaurus:CVCL_SS08 HAP1 IDS (-) 2 12237 -cellosaurus:CVCL_SS09 HAP1 IDUA (-) 1 2 12238 -cellosaurus:CVCL_SS10 HAP1 IDUA (-) 2 2 12239 -cellosaurus:CVCL_SS11 HAP1 IFI16 (-) 1 2 12240 -cellosaurus:CVCL_SS12 HAP1 IFI16 (-) 2 2 12241 -cellosaurus:CVCL_SS13 HAP1 IFI35 (-) 1 2 12242 -cellosaurus:CVCL_SS14 HAP1 IFI35 (-) 2 2 12243 -cellosaurus:CVCL_XP71 HAP1 IFI44 (-) 2 12244 -cellosaurus:CVCL_XP72 HAP1 IFI44L (-) 2 12245 -cellosaurus:CVCL_XP73 HAP1 IFI6 (-) 2 12246 -cellosaurus:CVCL_SS15 HAP1 IFIH1 (-) 1 2 12247 -cellosaurus:CVCL_SS16 HAP1 IFIH1 (-) 2 2 12248 -cellosaurus:CVCL_SS17 HAP1 IFITM1 (-) 1 2 12249 -cellosaurus:CVCL_SS18 HAP1 IFITM1 (-) 2 2 12250 -cellosaurus:CVCL_SS19 HAP1 IFITM2 (-) 1 2 12251 -cellosaurus:CVCL_SS20 HAP1 IFITM2 (-) 2 2 12252 -cellosaurus:CVCL_SS21 HAP1 IFITM3 (-) 1 2 12253 -cellosaurus:CVCL_SS22 HAP1 IFITM3 (-) 2 2 12254 -cellosaurus:CVCL_SS23 HAP1 IFNAR1 (-) 1 2 12255 -cellosaurus:CVCL_SS24 HAP1 IFNAR1 (-) 2 2 12256 -cellosaurus:CVCL_SS25 HAP1 IFNAR2 (-) 1 2 12257 -cellosaurus:CVCL_SS26 HAP1 IFNAR2 (-) 2 2 12258 -cellosaurus:CVCL_SS27 HAP1 IFNGR1 (-) 1 2 12259 -cellosaurus:CVCL_SS28 HAP1 IFNGR1 (-) 2 2 12260 -cellosaurus:CVCL_SS29 HAP1 IFNGR2 (-) 1 2 12261 -cellosaurus:CVCL_SS30 HAP1 IFNGR2 (-) 2 2 12262 -cellosaurus:CVCL_SS31 HAP1 IGF1R (-) 2 12263 -cellosaurus:CVCL_SS32 HAP1 IGF2BP3 (-) 1 2 12264 -cellosaurus:CVCL_SS33 HAP1 IGF2BP3 (-) 2 2 12265 -cellosaurus:CVCL_XP74 HAP1 IGF2BP3 (-) 3 2 12266 -cellosaurus:CVCL_XP75 HAP1 IGF2BP3 (-) 4 2 12267 -cellosaurus:CVCL_SS34 HAP1 IGF2R (-) 1 2 12268 -cellosaurus:CVCL_XP76 HAP1 IGF2R (-) 2 2 12269 -cellosaurus:CVCL_SS35 HAP1 IKBKB (-) 1 2 12270 -cellosaurus:CVCL_SS36 HAP1 IKBKB (-) 2 2 12271 -cellosaurus:CVCL_SS37 HAP1 IKBKB (-) 3 2 12272 -cellosaurus:CVCL_SS38 HAP1 IKBKE (-) 1 2 12273 -cellosaurus:CVCL_SS39 HAP1 IKBKE (-) 2 2 12274 -cellosaurus:CVCL_SS40 HAP1 IKBKG (-) 1 2 12275 -cellosaurus:CVCL_SS41 HAP1 IKBKG (-) 2 2 12276 -cellosaurus:CVCL_SS42 HAP1 IL11RA (-) 1 2 12277 -cellosaurus:CVCL_SS43 HAP1 IL11RA (-) 2 2 12278 -cellosaurus:CVCL_SS44 HAP1 IL17RA (-) 1 2 12279 -cellosaurus:CVCL_XP77 HAP1 IL17RA (-) 2 2 12280 -cellosaurus:CVCL_XP78 HAP1 IL32 (-) 2 12281 -cellosaurus:CVCL_SS45 HAP1 IL4R (-) 1 2 12282 -cellosaurus:CVCL_XP79 HAP1 IL4R (-) 2 2 12283 -cellosaurus:CVCL_SS46 HAP1 IL6R (-) 1 2 12284 -cellosaurus:CVCL_SS47 HAP1 IL6R (-) 2 2 12285 -cellosaurus:CVCL_SS48 HAP1 IL6ST (-) 1 2 12286 -cellosaurus:CVCL_SS49 HAP1 IL6ST (-) 2 2 12287 -cellosaurus:CVCL_SS50 HAP1 ILK (-) 2 12288 -cellosaurus:CVCL_SS51 HAP1 ILKAP (-) 1 2 12289 -cellosaurus:CVCL_SS52 HAP1 ILKAP (-) 2 2 12290 -cellosaurus:CVCL_SS53 HAP1 IMMP2L (-) 1 2 12291 -cellosaurus:CVCL_XP80 HAP1 IMMP2L (-) 2 2 12292 -cellosaurus:CVCL_SS54 HAP1 IMMT (-) 1 2 12293 -cellosaurus:CVCL_SS55 HAP1 IMMT (-) 2 2 12294 -cellosaurus:CVCL_SS56 HAP1 IMPDH1 (-) 1 2 12295 -cellosaurus:CVCL_SS57 HAP1 IMPDH1 (-) 2 2 12296 -cellosaurus:CVCL_SS58 HAP1 INF2 (-) 1 2 12297 -cellosaurus:CVCL_SS59 HAP1 INF2 (-) 2 2 12298 -cellosaurus:CVCL_SS60 HAP1 INF2 (-) 3 2 12299 -cellosaurus:CVCL_SS61 HAP1 INO80E (-) 1 2 12300 -cellosaurus:CVCL_SS62 HAP1 INO80E (-) 2 2 12301 -cellosaurus:CVCL_SS63 HAP1 INPP4A (-) 1 2 12302 -cellosaurus:CVCL_SS64 HAP1 INPP4A (-) 2 2 12303 -cellosaurus:CVCL_SS65 HAP1 INPP4A (-) 3 2 12304 -cellosaurus:CVCL_SS66 HAP1 INPP4A (-) 4 2 12305 -cellosaurus:CVCL_SS67 HAP1 INPP5A (-) 1 2 12306 -cellosaurus:CVCL_XP81 HAP1 INPP5A (-) 2 2 12307 -cellosaurus:CVCL_XP82 HAP1 INPP5A (-) 3 2 12308 -cellosaurus:CVCL_SS68 HAP1 INPP5E (-) 1 2 12309 -cellosaurus:CVCL_SS69 HAP1 INPP5E (-) 2 2 12310 -cellosaurus:CVCL_SS70 HAP1 INPP5E (-) 3 2 12311 -cellosaurus:CVCL_SS71 HAP1 INPP5J (-) 2 12312 -cellosaurus:CVCL_SS72 HAP1 INPP5K (-) 1 2 12313 -cellosaurus:CVCL_SS73 HAP1 INPP5K (-) 2 2 12314 -cellosaurus:CVCL_SS74 HAP1 INPPL1 (-) 1 2 12315 -cellosaurus:CVCL_SS75 HAP1 INPPL1 (-) 2 2 12316 -cellosaurus:CVCL_SS76 HAP1 INSR (-) 2 12317 -cellosaurus:CVCL_SS77 HAP1 IQGAP1 (-) 1 2 12318 -cellosaurus:CVCL_SS78 HAP1 IQGAP1 (-) 2 2 12319 -cellosaurus:CVCL_SS79 HAP1 IQGAP2 (-) 1 2 12320 -cellosaurus:CVCL_XP83 HAP1 IQGAP2 (-) 2 2 12321 -cellosaurus:CVCL_SS80 HAP1 IQSEC1 (-) 1 2 12322 -cellosaurus:CVCL_SS81 HAP1 IQSEC1 (-) 2 2 12323 -cellosaurus:CVCL_SS82 HAP1 IQSEC2 (-) 2 12324 -cellosaurus:CVCL_SS83 HAP1 IRAK1 (-) 1 2 12325 -cellosaurus:CVCL_SS84 HAP1 IRAK1 (-) 2 2 12326 -cellosaurus:CVCL_SS85 HAP1 IRAK2 (-) 1 2 12327 -cellosaurus:CVCL_XP84 HAP1 IRAK2 (-) 2 2 12328 -cellosaurus:CVCL_SS86 HAP1 IRAK3 (-) 2 12329 -cellosaurus:CVCL_SS87 HAP1 IRAK4 (-) 2 12330 -cellosaurus:CVCL_SS88 HAP1 IRF1 (-) 1 2 12331 -cellosaurus:CVCL_SS89 HAP1 IRF1 (-) 2 2 12332 -cellosaurus:CVCL_SS90 HAP1 IRF2 (-) 1 2 12333 -cellosaurus:CVCL_SS91 HAP1 IRF2 (-) 2 2 12334 -cellosaurus:CVCL_SS92 HAP1 IRF2 (-) 3 2 12335 -cellosaurus:CVCL_SS93 HAP1 IRF2 (-) 4 2 12336 -cellosaurus:CVCL_SS94 HAP1 IRF2BPL (-) 1 2 12337 -cellosaurus:CVCL_XP85 HAP1 IRF2BPL (-) 2 2 12338 -cellosaurus:CVCL_SS95 HAP1 IRF3 (-) 1 2 12339 -cellosaurus:CVCL_SS96 HAP1 IRF3 (-) 2 2 12340 -cellosaurus:CVCL_SS97 HAP1 IRF5 (-) 1 2 12341 -cellosaurus:CVCL_SS98 HAP1 IRF5 (-) 2 2 12342 -cellosaurus:CVCL_SS99 HAP1 IRF5 (-) 3 2 12343 -cellosaurus:CVCL_ST00 HAP1 IRF7 (-) 1 2 12344 -cellosaurus:CVCL_ST01 HAP1 IRF7 (-) 2 2 12345 -cellosaurus:CVCL_ST02 HAP1 IRF7 (-) 3 2 12346 -cellosaurus:CVCL_ST03 HAP1 IRF8 (-) 2 12347 -cellosaurus:CVCL_ST04 HAP1 IRG1 (-) 1 2 12348 -cellosaurus:CVCL_ST05 HAP1 IRG1 (-) 2 2 12349 -cellosaurus:CVCL_ST06 HAP1 IRS1 (-) 1 2 12350 -cellosaurus:CVCL_ST07 HAP1 IRS1 (-) 2 2 12351 -cellosaurus:CVCL_ST08 HAP1 ISG15 (-) 1 2 12352 -cellosaurus:CVCL_ST09 HAP1 ISG15 (-) 2 2 12353 -cellosaurus:CVCL_ST10 HAP1 ISL1 (-) 1 2 12354 -cellosaurus:CVCL_XP86 HAP1 ISL1 (-) 2 2 12355 -cellosaurus:CVCL_ST11 HAP1 ISOC2 (-) 1 2 12356 -cellosaurus:CVCL_XP87 HAP1 ISOC2 (-) 2 2 12357 -cellosaurus:CVCL_ST12 HAP1 ISPD (-) 1 2 12358 -cellosaurus:CVCL_ST13 HAP1 ISPD (-) 2 2 12359 -cellosaurus:CVCL_ST14 HAP1 ISPD (-) 3 2 12360 -cellosaurus:CVCL_ST15 HAP1 ISPD (-) 4 2 12361 -cellosaurus:CVCL_ST16 HAP1 ITCH (-) 2 12362 -cellosaurus:CVCL_ST17 HAP1 ITGA1 (-) 1 2 12363 -cellosaurus:CVCL_ST18 HAP1 ITGA1 (-) 2 2 12364 -cellosaurus:CVCL_ST19 HAP1 ITGA1 (-) 3 2 12365 -cellosaurus:CVCL_ST20 HAP1 ITGA1 (-) 4 2 12366 -cellosaurus:CVCL_ST21 HAP1 ITGA2 (-) 1 2 12367 -cellosaurus:CVCL_ST22 HAP1 ITGA2 (-) 2 2 12368 -cellosaurus:CVCL_ST23 HAP1 ITGA2B (-) 1 2 12369 -cellosaurus:CVCL_ST24 HAP1 ITGA2B (-) 2 2 12370 -cellosaurus:CVCL_ST25 HAP1 ITGA3 (-) 1 2 12371 -cellosaurus:CVCL_ST26 HAP1 ITGA3 (-) 2 2 12372 -cellosaurus:CVCL_ST27 HAP1 ITGA4 (-) 1 2 12373 -cellosaurus:CVCL_ST28 HAP1 ITGA4 (-) 2 2 12374 -cellosaurus:CVCL_ST29 HAP1 ITGA5 (-) 1 2 12375 -cellosaurus:CVCL_ST30 HAP1 ITGA5 (-) 2 2 12376 -cellosaurus:CVCL_ST31 HAP1 ITGA6 (-) 1 2 12377 -cellosaurus:CVCL_ST32 HAP1 ITGA6 (-) 2 2 12378 -cellosaurus:CVCL_ST33 HAP1 ITGA7 (-) 1 2 12379 -cellosaurus:CVCL_ST34 HAP1 ITGA7 (-) 2 2 12380 -cellosaurus:CVCL_ST35 HAP1 ITGA7 (-) 3 2 12381 -cellosaurus:CVCL_ST36 HAP1 ITGA7 (-) 4 2 12382 -cellosaurus:CVCL_ST37 HAP1 ITGA9 (-) 1 2 12383 -cellosaurus:CVCL_ST38 HAP1 ITGA9 (-) 2 2 12384 -cellosaurus:CVCL_ST39 HAP1 ITGAE (-) 1 2 12385 -cellosaurus:CVCL_ST40 HAP1 ITGAE (-) 2 2 12386 -cellosaurus:CVCL_ST41 HAP1 ITGAE (-) 3 2 12387 -cellosaurus:CVCL_ST42 HAP1 ITGAE (-) 4 2 12388 -cellosaurus:CVCL_ST43 HAP1 ITGB1 (-) 1 2 12389 -cellosaurus:CVCL_ST44 HAP1 ITGB1 (-) 2 2 12390 -cellosaurus:CVCL_ST45 HAP1 ITGB1 (-) 3 2 12391 -cellosaurus:CVCL_ST46 HAP1 ITGB4 (-) 1 2 12392 -cellosaurus:CVCL_ST47 HAP1 ITGB4 (-) 2 2 12393 -cellosaurus:CVCL_ST48 HAP1 ITGB4 (-) 3 2 12394 -cellosaurus:CVCL_ST49 HAP1 ITGB5 (-) 1 2 12395 -cellosaurus:CVCL_ST50 HAP1 ITGB5 (-) 2 2 12396 -cellosaurus:CVCL_ST51 HAP1 ITGB5 (-) 3 2 12397 -cellosaurus:CVCL_ST52 HAP1 ITGB5 (-) 4 2 12398 -cellosaurus:CVCL_ST53 HAP1 ITK (-) 2 12399 -cellosaurus:CVCL_ST54 HAP1 ITPR1 (-) 1 2 12400 -cellosaurus:CVCL_ST55 HAP1 ITPR1 (-) 2 2 12401 -cellosaurus:CVCL_ST56 HAP1 ITPR1 (-) 3 2 12402 -cellosaurus:CVCL_ST57 HAP1 ITPR1 (-) 4 2 12403 -cellosaurus:CVCL_ST58 HAP1 ITPR1 (-) 5 2 12404 -cellosaurus:CVCL_ST59 HAP1 ITPR1 (-) 6 2 12405 -cellosaurus:CVCL_ST60 HAP1 ITPR2 (-) 1 2 12406 -cellosaurus:CVCL_ST61 HAP1 ITPR2 (-) 2 2 12407 -cellosaurus:CVCL_ST62 HAP1 ITPR2 (-) 3 2 12408 -cellosaurus:CVCL_ST63 HAP1 ITPR2 (-) 4 2 12409 -cellosaurus:CVCL_ST64 HAP1 ITPR3 (-) 2 12410 -cellosaurus:CVCL_ST65 HAP1 IVNS1ABP (-) 1 2 12411 -cellosaurus:CVCL_ST66 HAP1 IVNS1ABP (-) 2 2 12412 -cellosaurus:CVCL_ST67 HAP1 IVNS1ABP (-) 3 2 12413 -cellosaurus:CVCL_ST68 HAP1 IVNS1ABP (-) 4 2 12414 -cellosaurus:CVCL_ST69 HAP1 JAG1 (-) 1 2 12415 -cellosaurus:CVCL_XP88 HAP1 JAG1 (-) 2 2 12416 -cellosaurus:CVCL_ST70 HAP1 JAK1 (-) 1 2 12417 -cellosaurus:CVCL_ST71 HAP1 JAK1 (-) 2 2 12418 -cellosaurus:CVCL_ST72 HAP1 JAK2 (-) 2 12419 -cellosaurus:CVCL_ST73 HAP1 JARID2 (-) 1 2 12420 -cellosaurus:CVCL_ST74 HAP1 JARID2 (-) 2 2 12421 -cellosaurus:CVCL_ST75 HAP1 JARID2 (-) 3 2 12422 -cellosaurus:CVCL_ST76 HAP1 JMJD1C (-) 1 2 12423 -cellosaurus:CVCL_ST77 HAP1 JMJD1C (-) 2 2 12424 -cellosaurus:CVCL_ST78 HAP1 JMJD1C (-) 3 2 12425 -cellosaurus:CVCL_ST79 HAP1 JMJD6 (-) 2 12426 -cellosaurus:CVCL_ST80 HAP1 JMY (-) 1 2 12427 -cellosaurus:CVCL_ST81 HAP1 JMY (-) 2 2 12428 -cellosaurus:CVCL_ST82 HAP1 JMY (-) 3 2 12429 -cellosaurus:CVCL_ST83 HAP1 JOSD1 (-) 2 12430 -cellosaurus:CVCL_ST84 HAP1 JOSD2 (-) 2 12431 -cellosaurus:CVCL_ST85 HAP1 JUN (-) 1 2 12432 -cellosaurus:CVCL_ST86 HAP1 JUN (-) 2 2 12433 -cellosaurus:CVCL_ST87 HAP1 KAT2A (-) 1 2 12434 -cellosaurus:CVCL_ST88 HAP1 KAT2A (-) 2 2 12435 -cellosaurus:CVCL_ST89 HAP1 KAT2B (-) 1 2 12436 -cellosaurus:CVCL_ST90 HAP1 KAT2B (-) 2 2 12437 -cellosaurus:CVCL_ST91 HAP1 KAT6A (-) 1 2 12438 -cellosaurus:CVCL_XP89 HAP1 KAT6A (-) 2 2 12439 -cellosaurus:CVCL_ST92 HAP1 KAT6B (-) 1 2 12440 -cellosaurus:CVCL_XP90 HAP1 KAT6B (-) 2 2 12441 -cellosaurus:CVCL_XP91 HAP1 KAT6B (-) 3 2 12442 -cellosaurus:CVCL_ST93 HAP1 KAT7 (-) 1 2 12443 -cellosaurus:CVCL_ST94 HAP1 KAT7 (-) 2 2 12444 -cellosaurus:CVCL_XP92 HAP1 KAT7 (-) 3 2 12445 -cellosaurus:CVCL_XP93 HAP1 KAT7 (-) 4 2 12446 -cellosaurus:CVCL_ST95 HAP1 KCNC1 (-) 1 2 12447 -cellosaurus:CVCL_ST96 HAP1 KCNC1 (-) 2 2 12448 -cellosaurus:CVCL_XP94 HAP1 KCNC3 (-) 2 12449 -cellosaurus:CVCL_ST97 HAP1 KCND2 (-) 1 2 12450 -cellosaurus:CVCL_ST98 HAP1 KCND2 (-) 2 2 12451 -cellosaurus:CVCL_ST99 HAP1 KCNH2 (-) 1 2 12452 -cellosaurus:CVCL_SU00 HAP1 KCNH2 (-) 2 2 12453 -cellosaurus:CVCL_SU01 HAP1 KCNJ11 (-) 1 2 12454 -cellosaurus:CVCL_SU02 HAP1 KCNJ11 (-) 2 2 12455 -cellosaurus:CVCL_SU03 HAP1 KCNK1 (-) 1 2 12456 -cellosaurus:CVCL_SU04 HAP1 KCNK1 (-) 2 2 12457 -cellosaurus:CVCL_SU05 HAP1 KCNK1 (-) 3 2 12458 -cellosaurus:CVCL_SU06 HAP1 KCNK2 (-) 1 2 12459 -cellosaurus:CVCL_SU07 HAP1 KCNK2 (-) 2 2 12460 -cellosaurus:CVCL_SU08 HAP1 KCNQ1 (-) 1 2 12461 -cellosaurus:CVCL_SU09 HAP1 KCNQ1 (-) 2 2 12462 -cellosaurus:CVCL_SU10 HAP1 KCNQ1 (-) 3 2 12463 -cellosaurus:CVCL_SU11 HAP1 KCNQ1 (-) 4 2 12464 -cellosaurus:CVCL_SU12 HAP1 KCNQ2 (-) 1 2 12465 -cellosaurus:CVCL_SU13 HAP1 KCNQ2 (-) 2 2 12466 -cellosaurus:CVCL_SU14 HAP1 KDELR1 (-) 1 2 12467 -cellosaurus:CVCL_XP95 HAP1 KDELR1 (-) 2 2 12468 -cellosaurus:CVCL_XP96 HAP1 KDELR2 (-) 2 12469 -cellosaurus:CVCL_RK67 HAP1 KDM1A(-) 1 2 12470 -cellosaurus:CVCL_SA82 HAP1 KDM1A(-) 2 2 12471 -cellosaurus:CVCL_SU15 HAP1 KDM1B (-) 1 2 12472 -cellosaurus:CVCL_SU16 HAP1 KDM1B (-) 2 2 12473 -cellosaurus:CVCL_SU17 HAP1 KDM2A (-) 1 2 12474 -cellosaurus:CVCL_SU18 HAP1 KDM2A (-) 2 2 12475 -cellosaurus:CVCL_SU19 HAP1 KDM2A (-) 3 2 12476 -cellosaurus:CVCL_SU20 HAP1 KDM2A (-) 4 2 12477 -cellosaurus:CVCL_SU21 HAP1 KDM2B (-) 2 12478 -cellosaurus:CVCL_SU22 HAP1 KDM3A (-) 1 2 12479 -cellosaurus:CVCL_SU23 HAP1 KDM3A (-) 2 2 12480 -cellosaurus:CVCL_SU24 HAP1 KDM3B (-) 1 2 12481 -cellosaurus:CVCL_SU25 HAP1 KDM3B (-) 2 2 12482 -cellosaurus:CVCL_SU26 HAP1 KDM3B (-) 3 2 12483 -cellosaurus:CVCL_SU27 HAP1 KDM4A (-) 1 2 12484 -cellosaurus:CVCL_SU28 HAP1 KDM4A (-) 2 2 12485 -cellosaurus:CVCL_SU29 HAP1 KDM4A (-) 3 2 12486 -cellosaurus:CVCL_SU30 HAP1 KDM4B (-) 1 2 12487 -cellosaurus:CVCL_SU31 HAP1 KDM4B (-) 2 2 12488 -cellosaurus:CVCL_SU32 HAP1 KDM4C (-) 2 12489 -cellosaurus:CVCL_SU33 HAP1 KDM4D (-) 1 2 12490 -cellosaurus:CVCL_SU34 HAP1 KDM4D (-) 2 2 12491 -cellosaurus:CVCL_SU35 HAP1 KDM4E (-) 1 2 12492 -cellosaurus:CVCL_SU36 HAP1 KDM4E (-) 2 2 12493 -cellosaurus:CVCL_SU37 HAP1 KDM4E (-) 3 2 12494 -cellosaurus:CVCL_SU38 HAP1 KDM4E (-) 4 2 12495 -cellosaurus:CVCL_SU39 HAP1 KDM4E (-) 5 2 12496 -cellosaurus:CVCL_SU40 HAP1 KDM5A (-) 1 2 12497 -cellosaurus:CVCL_SU41 HAP1 KDM5A (-) 2 2 12498 -cellosaurus:CVCL_SU42 HAP1 KDM5B (-) 1 2 12499 -cellosaurus:CVCL_SU43 HAP1 KDM5B (-) 2 2 12500 -cellosaurus:CVCL_SU44 HAP1 KDM5B (-) 3 2 12501 -cellosaurus:CVCL_SU45 HAP1 KDM5C (-) 1 2 12502 -cellosaurus:CVCL_SU46 HAP1 KDM5C (-) 2 2 12503 -cellosaurus:CVCL_SU47 HAP1 KDM5C (-) 3 2 12504 -cellosaurus:CVCL_SU48 HAP1 KDM6A (-) 1 2 12505 -cellosaurus:CVCL_SU49 HAP1 KDM6A (-) 2 2 12506 -cellosaurus:CVCL_SU50 HAP1 KDM6A (-) 3 2 12507 -cellosaurus:CVCL_SU51 HAP1 KDM6B (-) 1 2 12508 -cellosaurus:CVCL_SU52 HAP1 KDM6B (-) 2 2 12509 -cellosaurus:CVCL_SU53 HAP1 KDM7A (-) 1 2 12510 -cellosaurus:CVCL_SU54 HAP1 KDM7A (-) 2 2 12511 -cellosaurus:CVCL_SU55 HAP1 KDR (-) 1 2 12512 -cellosaurus:CVCL_SU56 HAP1 KDR (-) 2 2 12513 -cellosaurus:CVCL_SU57 HAP1 KEAP1 (-) 1 2 12514 -cellosaurus:CVCL_SU58 HAP1 KEAP1 (-) 2 2 12515 -cellosaurus:CVCL_SU59 HAP1 KIAA0100 (-) 1 2 12516 -cellosaurus:CVCL_XP97 HAP1 KIAA0100 (-) 2 2 12517 -cellosaurus:CVCL_XP98 HAP1 KIAA0100 (-) 3 2 12518 -cellosaurus:CVCL_XP99 HAP1 KIAA0100 (-) 4 2 12519 -cellosaurus:CVCL_SU60 HAP1 KIAA0196 (-) 1 2 12520 -cellosaurus:CVCL_SU61 HAP1 KIAA0196 (-) 2 2 12521 -cellosaurus:CVCL_SU62 HAP1 KIAA0196 (-) 3 2 12522 -cellosaurus:CVCL_XQ00 HAP1 KIAA0319L (-) 2 12523 -cellosaurus:CVCL_SU63 HAP1 KIAA1244 (-) 1 2 12524 -cellosaurus:CVCL_SU64 HAP1 KIAA1244 (-) 2 2 12525 -cellosaurus:CVCL_SU65 HAP1 KIAA1524 (-) 1 2 12526 -cellosaurus:CVCL_XQ01 HAP1 KIAA1524 (-) 2 2 12527 -cellosaurus:CVCL_SU66 HAP1 KIAA1804 (-) 1 2 12528 -cellosaurus:CVCL_SU67 HAP1 KIAA1804 (-) 2 2 12529 -cellosaurus:CVCL_SU68 HAP1 KIAA1804 (-) 3 2 12530 -cellosaurus:CVCL_SU69 HAP1 KIAA1804 (-) 4 2 12531 -cellosaurus:CVCL_SU70 HAP1 KIF15 (-) 1 2 12532 -cellosaurus:CVCL_SU71 HAP1 KIF15 (-) 2 2 12533 -cellosaurus:CVCL_SU72 HAP1 KIF18B (-) 1 2 12534 -cellosaurus:CVCL_XQ02 HAP1 KIF18B (-) 2 2 12535 -cellosaurus:CVCL_SU73 HAP1 KIF1C (-) 1 2 12536 -cellosaurus:CVCL_SU74 HAP1 KIF1C (-) 2 2 12537 -cellosaurus:CVCL_SU75 HAP1 KIF1C (-) 3 2 12538 -cellosaurus:CVCL_SU76 HAP1 KIF1C (-) 4 2 12539 -cellosaurus:CVCL_SU77 HAP1 KIF1C (-) 5 2 12540 -cellosaurus:CVCL_SU78 HAP1 KIF2A (-) 1 2 12541 -cellosaurus:CVCL_SU79 HAP1 KIF2A (-) 2 2 12542 -cellosaurus:CVCL_SU80 HAP1 KIF2C (-) 1 2 12543 -cellosaurus:CVCL_SU81 HAP1 KIF2C (-) 2 2 12544 -cellosaurus:CVCL_SU82 HAP1 KIF4A (-) 2 12545 -cellosaurus:CVCL_SU83 HAP1 KIF5B (-) 1 2 12546 -cellosaurus:CVCL_SU84 HAP1 KIF5B (-) 2 2 12547 -cellosaurus:CVCL_SU85 HAP1 KIF7 (-) 1 2 12548 -cellosaurus:CVCL_SU86 HAP1 KIF7 (-) 2 2 12549 -cellosaurus:CVCL_SU87 HAP1 KIF7 (-) 3 2 12550 -cellosaurus:CVCL_SU88 HAP1 KIFC1 (-) 1 2 12551 -cellosaurus:CVCL_SU89 HAP1 KIFC1 (-) 2 2 12552 -cellosaurus:CVCL_SU90 HAP1 KIT (-) 1 2 12553 -cellosaurus:CVCL_SU91 HAP1 KIT (-) 2 2 12554 -cellosaurus:CVCL_SU92 HAP1 KITLG (-) 2 12555 -cellosaurus:CVCL_SU93 HAP1 KLF10 (-) 1 2 12556 -cellosaurus:CVCL_SU94 HAP1 KLF10 (-) 2 2 12557 -cellosaurus:CVCL_SU95 HAP1 KLHL3 (-) 1 2 12558 -cellosaurus:CVCL_SU96 HAP1 KLHL3 (-) 2 2 12559 -cellosaurus:CVCL_SU97 HAP1 KMT2A (-) 1 2 12560 -cellosaurus:CVCL_SU98 HAP1 KMT2A (-) 2 2 12561 -cellosaurus:CVCL_SU99 HAP1 KMT2B (-) 1 2 12562 -cellosaurus:CVCL_SV00 HAP1 KMT2B (-) 2 2 12563 -cellosaurus:CVCL_SV01 HAP1 KMT2B (-) 3 2 12564 -cellosaurus:CVCL_SV02 HAP1 KMT2C (-) 1 2 12565 -cellosaurus:CVCL_SV03 HAP1 KMT2C (-) 2 2 12566 -cellosaurus:CVCL_SV04 HAP1 KMT2D (-) 2 12567 -cellosaurus:CVCL_SV05 HAP1 KRAS (-) 1 2 12568 -cellosaurus:CVCL_XQ03 HAP1 KRAS (-) 2 2 12569 -cellosaurus:CVCL_XQ04 HAP1 KRAS (-) 3 2 12570 -cellosaurus:CVCL_SV06 HAP1 KRT10 (-) 1 2 12571 -cellosaurus:CVCL_SV07 HAP1 KRT10 (-) 2 2 12572 -cellosaurus:CVCL_SV08 HAP1 KRT18 (-) 1 2 12573 -cellosaurus:CVCL_SV09 HAP1 KRT18 (-) 2 2 12574 -cellosaurus:CVCL_SV10 HAP1 KRT8 (-) 1 2 12575 -cellosaurus:CVCL_SV11 HAP1 KRT8 (-) 2 2 12576 -cellosaurus:CVCL_SV12 HAP1 KSR1 (-) 1 2 12577 -cellosaurus:CVCL_SV13 HAP1 KSR1 (-) 2 2 12578 -cellosaurus:CVCL_SV14 HAP1 KSR2 (-) 1 2 12579 -cellosaurus:CVCL_SV15 HAP1 KSR2 (-) 2 2 12580 -cellosaurus:CVCL_SV16 HAP1 KXD1 (-) 1 2 12581 -cellosaurus:CVCL_SV17 HAP1 KXD1 (-) 2 2 12582 -cellosaurus:CVCL_SV18 HAP1 L1TD1 (-) 1 2 12583 -cellosaurus:CVCL_SV19 HAP1 L1TD1 (-) 2 2 12584 -cellosaurus:CVCL_XQ05 HAP1 L2HGDH (-) 2 12585 -cellosaurus:CVCL_SV20 HAP1 L3MBTL2 (-) 1 2 12586 -cellosaurus:CVCL_SV21 HAP1 L3MBTL2 (-) 2 2 12587 -cellosaurus:CVCL_SV22 HAP1 L3MBTL2 (-) 3 2 12588 -cellosaurus:CVCL_SV23 HAP1 LACTB2 (-) 1 2 12589 -cellosaurus:CVCL_SV24 HAP1 LACTB2 (-) 2 2 12590 -cellosaurus:CVCL_SV25 HAP1 LACTB2 (-) 3 2 12591 -cellosaurus:CVCL_SV26 HAP1 LAMP1 (-) 1 2 12592 -cellosaurus:CVCL_SV27 HAP1 LAMP1 (-) 2 2 12593 -cellosaurus:CVCL_SV28 HAP1 LAMTOR4 (-) 1 2 12594 -cellosaurus:CVCL_SV29 HAP1 LAMTOR4 (-) 2 2 12595 -cellosaurus:CVCL_SV30 HAP1 LAMTOR4 (-) 3 2 12596 -cellosaurus:CVCL_SV31 HAP1 LARGE (-) 2 12597 -cellosaurus:CVCL_XQ06 HAP1 LARP1 (-) 2 12598 -cellosaurus:CVCL_SV32 HAP1 LAT (-) 1 2 12599 -cellosaurus:CVCL_XQ07 HAP1 LAT (-) 2 2 12600 -cellosaurus:CVCL_XQ08 HAP1 LAT (-) 3 2 12601 -cellosaurus:CVCL_XQ09 HAP1 LAT (-) 4 2 12602 -cellosaurus:CVCL_SV33 HAP1 LATS1 (-) 1 2 12603 -cellosaurus:CVCL_SV34 HAP1 LATS1 (-) 2 2 12604 -cellosaurus:CVCL_SV35 HAP1 LATS2 (-) 1 2 12605 -cellosaurus:CVCL_SV36 HAP1 LATS2 (-) 2 2 12606 -cellosaurus:CVCL_SV37 HAP1 LCMT1 (-) 1 2 12607 -cellosaurus:CVCL_SV38 HAP1 LCMT1 (-) 2 2 12608 -cellosaurus:CVCL_SV39 HAP1 LCMT1 (-) 3 2 12609 -cellosaurus:CVCL_SV40 HAP1 LDHA (-) 1 2 12610 -cellosaurus:CVCL_SV41 HAP1 LDHA (-) 2 2 12611 -cellosaurus:CVCL_SV42 HAP1 LDHB (-) 2 12612 -cellosaurus:CVCL_SV43 HAP1 LDLR (-) 2 12613 -cellosaurus:CVCL_SV44 HAP1 LEF1 (-) 1 2 12614 -cellosaurus:CVCL_XQ10 HAP1 LEF1 (-) 2 2 12615 -cellosaurus:CVCL_SV45 HAP1 LEPR (-) 2 12616 -cellosaurus:CVCL_SV46 HAP1 LETMD1 (-) 1 2 12617 -cellosaurus:CVCL_XQ11 HAP1 LETMD1 (-) 2 2 12618 -cellosaurus:CVCL_XQ12 HAP1 LETMD1 (-) 3 2 12619 -cellosaurus:CVCL_XQ13 HAP1 LETMD1 (-) 4 2 12620 -cellosaurus:CVCL_SV47 HAP1 LGALS1 (-) 1 2 12621 -cellosaurus:CVCL_XQ14 HAP1 LGALS1 (-) 2 2 12622 -cellosaurus:CVCL_SV48 HAP1 LGALS3 (-) 1 2 12623 -cellosaurus:CVCL_XQ15 HAP1 LGALS3 (-) 2 2 12624 -cellosaurus:CVCL_SV49 HAP1 LGR4 (-) 1 2 12625 -cellosaurus:CVCL_SV50 HAP1 LGR4 (-) 2 2 12626 -cellosaurus:CVCL_SV51 HAP1 LGR4 (-) 3 2 12627 -cellosaurus:CVCL_SV52 HAP1 LGR4 (-) 4 2 12628 -cellosaurus:CVCL_XQ16 HAP1 LIAS (-) 2 12629 -cellosaurus:CVCL_SV53 HAP1 LIG3 (-) 1 2 12630 -cellosaurus:CVCL_SV54 HAP1 LIG3 (-) 2 2 12631 -cellosaurus:CVCL_SV55 HAP1 LIG4 (-) 1 2 12632 -cellosaurus:CVCL_SV56 HAP1 LIG4 (-) 2 2 12633 -cellosaurus:CVCL_SV57 HAP1 LIMCH1 (-) 1 2 12634 -cellosaurus:CVCL_XQ17 HAP1 LIMCH1 (-) 2 2 12635 -cellosaurus:CVCL_XQ18 HAP1 LIMCH1 (-) 3 2 12636 -cellosaurus:CVCL_SV58 HAP1 LIMK1 (-) 1 2 12637 -cellosaurus:CVCL_SV59 HAP1 LIMK1 (-) 2 2 12638 -cellosaurus:CVCL_SV60 HAP1 LIMK2 (-) 2 12639 -cellosaurus:CVCL_SV61 HAP1 LITAF (-) 1 2 12640 -cellosaurus:CVCL_SV62 HAP1 LITAF (-) 2 2 12641 -cellosaurus:CVCL_XQ19 HAP1 LMBRD1 (-) 2 12642 -cellosaurus:CVCL_SV63 HAP1 LMNA (-) 1 2 12643 -cellosaurus:CVCL_SV64 HAP1 LMNA (-) 2 2 12644 -cellosaurus:CVCL_SV65 HAP1 LMNA (-) 3 2 12645 -cellosaurus:CVCL_SV66 HAP1 LMNB1 (-) 1 2 12646 -cellosaurus:CVCL_SV67 HAP1 LMNB1 (-) 2 2 12647 -cellosaurus:CVCL_SV68 HAP1 LMNB1 (-) 3 2 12648 -cellosaurus:CVCL_SV69 HAP1 LMNB2 (-) 1 2 12649 -cellosaurus:CVCL_XQ20 HAP1 LMNB2 (-) 2 2 12650 -cellosaurus:CVCL_SV70 HAP1 LMO4 (-) 1 2 12651 -cellosaurus:CVCL_SV71 HAP1 LMO4 (-) 2 2 12652 -cellosaurus:CVCL_SV72 HAP1 LMTK2 (-) 2 12653 -cellosaurus:CVCL_SV73 HAP1 LMTK3 (-) 1 2 12654 -cellosaurus:CVCL_SV74 HAP1 LMTK3 (-) 2 2 12655 -cellosaurus:CVCL_SV75 HAP1 LMTK3 (-) 3 2 12656 -cellosaurus:CVCL_SV76 HAP1 LOH12CR1 (-) 1 2 12657 -cellosaurus:CVCL_SV77 HAP1 LOH12CR1 (-) 2 2 12658 -cellosaurus:CVCL_SV78 HAP1 LOX (-) 1 2 12659 -cellosaurus:CVCL_XQ21 HAP1 LOX (-) 2 2 12660 -cellosaurus:CVCL_XQ22 HAP1 LPIN1 (-) 1 2 12661 -cellosaurus:CVCL_B5KA HAP1 LPIN1 (-) 2 2 12662 -cellosaurus:CVCL_SV79 HAP1 LPPR5 (-) 2 12663 -cellosaurus:CVCL_SV80 HAP1 LRBA (-) 1 2 12664 -cellosaurus:CVCL_SV81 HAP1 LRBA (-) 2 2 12665 -cellosaurus:CVCL_SV82 HAP1 LRBA (-) 3 2 12666 -cellosaurus:CVCL_SV83 HAP1 LRBA (-) 4 2 12667 -cellosaurus:CVCL_SV84 HAP1 LRP1 (-) 1 2 12668 -cellosaurus:CVCL_SV85 HAP1 LRP1 (-) 2 2 12669 -cellosaurus:CVCL_SV86 HAP1 LRP1 (-) 3 2 12670 -cellosaurus:CVCL_SV87 HAP1 LRP1 (-) 4 2 12671 -cellosaurus:CVCL_SV88 HAP1 LRP5 (-) 1 2 12672 -cellosaurus:CVCL_SV89 HAP1 LRP5 (-) 2 2 12673 -cellosaurus:CVCL_SV90 HAP1 LRP5 (-) 3 2 12674 -cellosaurus:CVCL_SV91 HAP1 LRP6 (-) 1 2 12675 -cellosaurus:CVCL_SV92 HAP1 LRP6 (-) 2 2 12676 -cellosaurus:CVCL_SV93 HAP1 LRP8 (-) 2 12677 -cellosaurus:CVCL_XQ23 HAP1 LRRC16A (-) 2 12678 -cellosaurus:CVCL_SV94 HAP1 LRRC8A (-) 1 2 12679 -cellosaurus:CVCL_SV95 HAP1 LRRC8A (-) 2 2 12680 -cellosaurus:CVCL_SV96 HAP1 LRRC8D (-) 1 2 12681 -cellosaurus:CVCL_SV97 HAP1 LRRC8D (-) 2 2 12682 -cellosaurus:CVCL_SV98 HAP1 LRRC8D (-) 3 2 12683 -cellosaurus:CVCL_SV99 HAP1 LRRC8D (-) 4 2 12684 -cellosaurus:CVCL_SW00 HAP1 LRRK1 (-) 1 2 12685 -cellosaurus:CVCL_SW01 HAP1 LRRK1 (-) 2 2 12686 -cellosaurus:CVCL_SW02 HAP1 LRRK1 (-) 3 2 12687 -cellosaurus:CVCL_SW03 HAP1 LRRK2 (-) 1 2 12688 -cellosaurus:CVCL_SW04 HAP1 LRRK2 (-) 2 2 12689 -cellosaurus:CVCL_SW05 HAP1 LRSAM1 (-) 1 2 12690 -cellosaurus:CVCL_SW06 HAP1 LRSAM1 (-) 2 2 12691 -cellosaurus:CVCL_XQ24 HAP1 LTF (-) 2 12692 -cellosaurus:CVCL_SW07 HAP1 LTK (-) 1 2 12693 -cellosaurus:CVCL_SW08 HAP1 LTK (-) 2 2 12694 -cellosaurus:CVCL_SW09 HAP1 LYN (-) 2 12695 -cellosaurus:CVCL_SW10 HAP1 LYPLA1 (-) 1 2 12696 -cellosaurus:CVCL_SW11 HAP1 LYPLA1 (-) 2 2 12697 -cellosaurus:CVCL_SW12 HAP1 LYPLA2 (-) 1 2 12698 -cellosaurus:CVCL_SW13 HAP1 LYPLA2 (-) 2 2 12699 -cellosaurus:CVCL_SW14 HAP1 LYPLAL1 (-) 1 2 12700 -cellosaurus:CVCL_SW15 HAP1 LYPLAL1 (-) 2 2 12701 -cellosaurus:CVCL_SW16 HAP1 LYPLAL1 (-) 3 2 12702 -cellosaurus:CVCL_SW17 HAP1 LYRM2 (-) 1 2 12703 -cellosaurus:CVCL_XQ25 HAP1 LYRM2 (-) 2 2 12704 -cellosaurus:CVCL_SW18 HAP1 M6PR (-) 1 2 12705 -cellosaurus:CVCL_SW19 HAP1 M6PR (-) 2 2 12706 -cellosaurus:CVCL_SW20 HAP1 MAD2L1 (-) 1 2 12707 -cellosaurus:CVCL_XQ26 HAP1 MAD2L1 (-) 2 2 12708 -cellosaurus:CVCL_SW21 HAP1 MADD (-) 1 2 12709 -cellosaurus:CVCL_SW22 HAP1 MADD (-) 2 2 12710 -cellosaurus:CVCL_XQ27 HAP1 MAGT1 (-) 2 12711 -cellosaurus:CVCL_SW23 HAP1 MAK (-) 1 2 12712 -cellosaurus:CVCL_SW24 HAP1 MAK (-) 2 2 12713 -cellosaurus:CVCL_SW25 HAP1 MAML2 (-) 1 2 12714 -cellosaurus:CVCL_SW26 HAP1 MAML2 (-) 2 2 12715 -cellosaurus:CVCL_SW27 HAP1 MAOA (-) 1 2 12716 -cellosaurus:CVCL_SW28 HAP1 MAOA (-) 2 2 12717 -cellosaurus:CVCL_SW29 HAP1 MAP1A (-) 1 2 12718 -cellosaurus:CVCL_SW30 HAP1 MAP1A (-) 2 2 12719 -cellosaurus:CVCL_SW31 HAP1 MAP1A (-) 3 2 12720 -cellosaurus:CVCL_SW32 HAP1 MAP1LC3B (-) 1 2 12721 -cellosaurus:CVCL_SW33 HAP1 MAP1LC3B (-) 2 2 12722 -cellosaurus:CVCL_SW34 HAP1 MAP1LC3C (-) 2 12723 -cellosaurus:CVCL_SW35 HAP1 MAP2 (-) 1 2 12724 -cellosaurus:CVCL_SW36 HAP1 MAP2 (-) 2 2 12725 -cellosaurus:CVCL_SW37 HAP1 MAP2K1 (-) 1 2 12726 -cellosaurus:CVCL_SW38 HAP1 MAP2K1 (-) 2 2 12727 -cellosaurus:CVCL_SW39 HAP1 MAP2K2 (-) 1 2 12728 -cellosaurus:CVCL_SW40 HAP1 MAP2K2 (-) 2 2 12729 -cellosaurus:CVCL_SW41 HAP1 MAP2K2 (-) 3 2 12730 -cellosaurus:CVCL_SW42 HAP1 MAP2K3 (-) 1 2 12731 -cellosaurus:CVCL_SW43 HAP1 MAP2K3 (-) 2 2 12732 -cellosaurus:CVCL_SW44 HAP1 MAP2K4 (-) 1 2 12733 -cellosaurus:CVCL_SW45 HAP1 MAP2K4 (-) 2 2 12734 -cellosaurus:CVCL_SW46 HAP1 MAP2K4 (-) 3 2 12735 -cellosaurus:CVCL_SW47 HAP1 MAP2K5 (-) 2 12736 -cellosaurus:CVCL_SW48 HAP1 MAP2K6 (-) 2 12737 -cellosaurus:CVCL_SW49 HAP1 MAP2K7 (-) 1 2 12738 -cellosaurus:CVCL_SW50 HAP1 MAP2K7 (-) 2 2 12739 -cellosaurus:CVCL_SW51 HAP1 MAP2K7 (-) 3 2 12740 -cellosaurus:CVCL_SW52 HAP1 MAP3K1 (-) 1 2 12741 -cellosaurus:CVCL_SW53 HAP1 MAP3K1 (-) 2 2 12742 -cellosaurus:CVCL_SW54 HAP1 MAP3K1 (-) 3 2 12743 -cellosaurus:CVCL_SW55 HAP1 MAP3K10 (-) 1 2 12744 -cellosaurus:CVCL_SW56 HAP1 MAP3K10 (-) 2 2 12745 -cellosaurus:CVCL_SW57 HAP1 MAP3K10 (-) 3 2 12746 -cellosaurus:CVCL_SW58 HAP1 MAP3K11 (-) 1 2 12747 -cellosaurus:CVCL_SW59 HAP1 MAP3K11 (-) 2 2 12748 -cellosaurus:CVCL_SW60 HAP1 MAP3K12 (-) 1 2 12749 -cellosaurus:CVCL_SW61 HAP1 MAP3K12 (-) 2 2 12750 -cellosaurus:CVCL_SW62 HAP1 MAP3K12 (-) 3 2 12751 -cellosaurus:CVCL_SW63 HAP1 MAP3K14 (-) 2 12752 -cellosaurus:CVCL_SW64 HAP1 MAP3K2 (-) 1 2 12753 -cellosaurus:CVCL_SW65 HAP1 MAP3K2 (-) 2 2 12754 -cellosaurus:CVCL_SW66 HAP1 MAP3K2 (-) 3 2 12755 -cellosaurus:CVCL_SW67 HAP1 MAP3K3 (-) 2 12756 -cellosaurus:CVCL_SW68 HAP1 MAP3K4 (-) 1 2 12757 -cellosaurus:CVCL_SW69 HAP1 MAP3K4 (-) 2 2 12758 -cellosaurus:CVCL_SW70 HAP1 MAP3K4 (-) 3 2 12759 -cellosaurus:CVCL_SW71 HAP1 MAP3K5 (-) 2 12760 -cellosaurus:CVCL_SW72 HAP1 MAP3K6 (-) 2 12761 -cellosaurus:CVCL_SW73 HAP1 MAP3K7 (-) 2 12762 -cellosaurus:CVCL_SW74 HAP1 MAP3K8 (-) 1 2 12763 -cellosaurus:CVCL_SW75 HAP1 MAP3K8 (-) 2 2 12764 -cellosaurus:CVCL_SW76 HAP1 MAP3K8 (-) 3 2 12765 -cellosaurus:CVCL_SW77 HAP1 MAP3K9 (-) 1 2 12766 -cellosaurus:CVCL_SW78 HAP1 MAP3K9 (-) 2 2 12767 -cellosaurus:CVCL_SW79 HAP1 MAP4 (-) 1 2 12768 -cellosaurus:CVCL_SW80 HAP1 MAP4 (-) 2 2 12769 -cellosaurus:CVCL_SW81 HAP1 MAP4K3 (-) 1 2 12770 -cellosaurus:CVCL_SW82 HAP1 MAP4K3 (-) 2 2 12771 -cellosaurus:CVCL_SW83 HAP1 MAP4K4 (-) 2 12772 -cellosaurus:CVCL_SW84 HAP1 MAP4K5 (-) 2 12773 -cellosaurus:CVCL_SW85 HAP1 MAPK11 (-) 2 12774 -cellosaurus:CVCL_SW86 HAP1 MAPK12 (-) 2 12775 -cellosaurus:CVCL_SW87 HAP1 MAPK13 (-) 1 2 12776 -cellosaurus:CVCL_SW88 HAP1 MAPK13 (-) 2 2 12777 -cellosaurus:CVCL_SW89 HAP1 MAPK14 (-) 1 2 12778 -cellosaurus:CVCL_SW90 HAP1 MAPK14 (-) 2 2 12779 -cellosaurus:CVCL_SW91 HAP1 MAPK15 (-) 2 12780 -cellosaurus:CVCL_SW92 HAP1 MAPK4 (-) 1 2 12781 -cellosaurus:CVCL_SW93 HAP1 MAPK4 (-) 2 2 12782 -cellosaurus:CVCL_SW94 HAP1 MAPK4 (-) 3 2 12783 -cellosaurus:CVCL_SW95 HAP1 MAPK6 (-) 1 2 12784 -cellosaurus:CVCL_SW96 HAP1 MAPK6 (-) 2 2 12785 -cellosaurus:CVCL_SW97 HAP1 MAPK7 (-) 1 2 12786 -cellosaurus:CVCL_SW98 HAP1 MAPK7 (-) 2 2 12787 -cellosaurus:CVCL_SW99 HAP1 MAPK8 (-) 1 2 12788 -cellosaurus:CVCL_SX00 HAP1 MAPK8 (-) 2 2 12789 -cellosaurus:CVCL_SX01 HAP1 MAPK9 (-) 2 12790 -cellosaurus:CVCL_SX02 HAP1 MAPKAP1 (-) 1 2 12791 -cellosaurus:CVCL_SX03 HAP1 MAPKAP1 (-) 2 2 12792 -cellosaurus:CVCL_SX04 HAP1 MAPKAPK2 (-) 1 2 12793 -cellosaurus:CVCL_SX05 HAP1 MAPKAPK2 (-) 2 2 12794 -cellosaurus:CVCL_SX06 HAP1 MAPKAPK3 (-) 2 12795 -cellosaurus:CVCL_SX07 HAP1 MAPKAPK5 (-) 1 2 12796 -cellosaurus:CVCL_XQ28 HAP1 MAPKAPK5 (-) 2 2 12797 -cellosaurus:CVCL_XQ29 HAP1 MAPKAPK5 (-) 3 2 12798 -cellosaurus:CVCL_XQ30 HAP1 MAPKBP1 (-) 2 12799 -cellosaurus:CVCL_SX08 HAP1 MAPT (-) 1 2 12800 -cellosaurus:CVCL_SX09 HAP1 MAPT (-) 2 2 12801 -cellosaurus:CVCL_SX10 HAP1 MARK1 (-) 1 2 12802 -cellosaurus:CVCL_SX11 HAP1 MARK1 (-) 2 2 12803 -cellosaurus:CVCL_SX12 HAP1 MARK1 (-) 3 2 12804 -cellosaurus:CVCL_SX13 HAP1 MARK2 (-) 1 2 12805 -cellosaurus:CVCL_SX14 HAP1 MARK2 (-) 2 2 12806 -cellosaurus:CVCL_SX15 HAP1 MARK3 (-) 1 2 12807 -cellosaurus:CVCL_SX16 HAP1 MARK3 (-) 2 2 12808 -cellosaurus:CVCL_SX17 HAP1 MARK3 (-) 3 2 12809 -cellosaurus:CVCL_SX18 HAP1 MARK4 (-) 1 2 12810 -cellosaurus:CVCL_SX19 HAP1 MARK4 (-) 2 2 12811 -cellosaurus:CVCL_SX20 HAP1 MAST1 (-) 2 12812 -cellosaurus:CVCL_SX21 HAP1 MAST2 (-) 2 12813 -cellosaurus:CVCL_SX22 HAP1 MAST3 (-) 1 2 12814 -cellosaurus:CVCL_SX23 HAP1 MAST3 (-) 2 2 12815 -cellosaurus:CVCL_SX24 HAP1 MAST4 (-) 1 2 12816 -cellosaurus:CVCL_SX25 HAP1 MAST4 (-) 2 2 12817 -cellosaurus:CVCL_SX26 HAP1 MAST4 (-) 3 2 12818 -cellosaurus:CVCL_SX27 HAP1 MAST4 (-) 4 2 12819 -cellosaurus:CVCL_SX28 HAP1 MAST4 (-) 5 2 12820 -cellosaurus:CVCL_SX29 HAP1 MAST4 (-) 6 2 12821 -cellosaurus:CVCL_SX30 HAP1 MAT2B (-) 1 2 12822 -cellosaurus:CVCL_SX31 HAP1 MAT2B (-) 2 2 12823 -cellosaurus:CVCL_SX32 HAP1 MAT2B (-) 3 2 12824 -cellosaurus:CVCL_SX33 HAP1 MAT2B (-) 4 2 12825 -cellosaurus:CVCL_SX34 HAP1 MATK (-) 1 2 12826 -cellosaurus:CVCL_SX35 HAP1 MATK (-) 2 2 12827 -cellosaurus:CVCL_SX36 HAP1 MAVS (-) 1 2 12828 -cellosaurus:CVCL_SX37 HAP1 MAVS (-) 2 2 12829 -cellosaurus:CVCL_SX38 HAP1 MB21D1 (-) 1 2 12830 -cellosaurus:CVCL_SX39 HAP1 MB21D1 (-) 2 2 12831 -cellosaurus:CVCL_SX40 HAP1 MBD1 (-) 1 2 12832 -cellosaurus:CVCL_SX41 HAP1 MBD1 (-) 2 2 12833 -cellosaurus:CVCL_SX42 HAP1 MBD1 (-) 3 2 12834 -cellosaurus:CVCL_SX43 HAP1 MBD2 (-) 1 2 12835 -cellosaurus:CVCL_SX44 HAP1 MBD2 (-) 2 2 12836 -cellosaurus:CVCL_XQ31 HAP1 MBD2 (-) 3 2 12837 -cellosaurus:CVCL_SX45 HAP1 MBD3 (-) 1 2 12838 -cellosaurus:CVCL_SX46 HAP1 MBD3 (-) 2 2 12839 -cellosaurus:CVCL_SX47 HAP1 MBD3 (-) 3 2 12840 -cellosaurus:CVCL_SX48 HAP1 MBD4 (-) 1 2 12841 -cellosaurus:CVCL_SX49 HAP1 MBD4 (-) 2 2 12842 -cellosaurus:CVCL_SX50 HAP1 MBD4 (-) 3 2 12843 -cellosaurus:CVCL_SX51 HAP1 MBD4 (-) 4 2 12844 -cellosaurus:CVCL_SX52 HAP1 MBP (-) 1 2 12845 -cellosaurus:CVCL_XQ32 HAP1 MBP (-) 2 2 12846 -cellosaurus:CVCL_SX53 HAP1 MBTPS1 (-) 1 2 12847 -cellosaurus:CVCL_SX54 HAP1 MBTPS1 (-) 2 2 12848 -cellosaurus:CVCL_SX55 HAP1 MBTPS1 (-) 3 2 12849 -cellosaurus:CVCL_SX56 HAP1 MBTPS2 (-) 2 12850 -cellosaurus:CVCL_SX57 HAP1 MCAM (-) 2 12851 -cellosaurus:CVCL_SX58 HAP1 MCOLN1 (-) 1 2 12852 -cellosaurus:CVCL_SX59 HAP1 MCOLN1 (-) 2 2 12853 -cellosaurus:CVCL_SX60 HAP1 MCOLN1 (-) 3 2 12854 -cellosaurus:CVCL_SX61 HAP1 MCOLN1 (-) 4 2 12855 -cellosaurus:CVCL_SX62 HAP1 MCOLN1 (-) 5 2 12856 -cellosaurus:CVCL_SX63 HAP1 MCOLN1 (-) 6 2 12857 -cellosaurus:CVCL_SX64 HAP1 MCOLN1 (-) 7 2 12858 -cellosaurus:CVCL_SX65 HAP1 MCOLN3 (-) 1 2 12859 -cellosaurus:CVCL_XQ33 HAP1 MCOLN3 (-) 2 2 12860 -cellosaurus:CVCL_XQ34 HAP1 MCUR1 (-) 2 12861 -cellosaurus:CVCL_SX66 HAP1 MDC1 (-) 2 12862 -cellosaurus:CVCL_XQ35 HAP1 MDH1 (-) 2 12863 -cellosaurus:CVCL_XQ36 HAP1 MDH2 (-) 1 2 12864 -cellosaurus:CVCL_B5KB HAP1 MDH2 (-) 2 2 12865 -cellosaurus:CVCL_SX67 HAP1 MDM2 (-) 1 2 12866 -cellosaurus:CVCL_SX68 HAP1 MDM2 (-) 2 2 12867 -cellosaurus:CVCL_SX69 HAP1 ME1 (-) 1 2 12868 -cellosaurus:CVCL_XQ37 HAP1 ME1 (-) 2 2 12869 -cellosaurus:CVCL_SX70 HAP1 ME2 (-) 1 2 12870 -cellosaurus:CVCL_XQ38 HAP1 ME2 (-) 2 2 12871 -cellosaurus:CVCL_SX71 HAP1 MECP2 (-) 1 2 12872 -cellosaurus:CVCL_SX72 HAP1 MECP2 (-) 2 2 12873 -cellosaurus:CVCL_XQ39 HAP1 MECR (-) 2 12874 -cellosaurus:CVCL_SX73 HAP1 MED13L (-) 1 2 12875 -cellosaurus:CVCL_SX74 HAP1 MED13L (-) 2 2 12876 -cellosaurus:CVCL_SX75 HAP1 MEF2B (-) 1 2 12877 -cellosaurus:CVCL_SX76 HAP1 MEF2B (-) 2 2 12878 -cellosaurus:CVCL_SX77 HAP1 MEIS1 (-) 1 2 12879 -cellosaurus:CVCL_XQ40 HAP1 MEIS1 (-) 2 2 12880 -cellosaurus:CVCL_XQ41 HAP1 MEIS1 (-) 3 2 12881 -cellosaurus:CVCL_SX78 HAP1 MELK (-) 2 12882 -cellosaurus:CVCL_SX79 HAP1 MEN1 (-) 1 2 12883 -cellosaurus:CVCL_SX80 HAP1 MEN1 (-) 2 2 12884 -cellosaurus:CVCL_SX81 HAP1 MEN1 (-) 3 2 12885 -cellosaurus:CVCL_SX82 HAP1 MEN1 (-) 4 2 12886 -cellosaurus:CVCL_SX83 HAP1 MERTK (-) 1 2 12887 -cellosaurus:CVCL_SX84 HAP1 MERTK (-) 2 2 12888 -cellosaurus:CVCL_SX85 HAP1 MERTK (-) 3 2 12889 -cellosaurus:CVCL_XQ42 HAP1 MERTK (-) 4 2 12890 -cellosaurus:CVCL_SX86 HAP1 MET (-) 2 12891 -cellosaurus:CVCL_SX87 HAP1 METTL10 (-) 1 2 12892 -cellosaurus:CVCL_XQ43 HAP1 METTL10 (-) 2 2 12893 -cellosaurus:CVCL_SX88 HAP1 METTL12 (-) 2 12894 -cellosaurus:CVCL_SX89 HAP1 METTL13 (-) 1 2 12895 -cellosaurus:CVCL_SX90 HAP1 METTL13 (-) 2 2 12896 -cellosaurus:CVCL_SX91 HAP1 METTL13 (-) 3 2 12897 -cellosaurus:CVCL_SX92 HAP1 METTL13 (-) 4 2 12898 -cellosaurus:CVCL_SX93 HAP1 METTL14 (-) 2 12899 -cellosaurus:CVCL_SX94 HAP1 METTL15 (-) 1 2 12900 -cellosaurus:CVCL_SX95 HAP1 METTL15 (-) 2 2 12901 -cellosaurus:CVCL_SX96 HAP1 METTL18 (-) 1 2 12902 -cellosaurus:CVCL_SX97 HAP1 METTL18 (-) 2 2 12903 -cellosaurus:CVCL_SX98 HAP1 METTL18 (-) 3 2 12904 -cellosaurus:CVCL_XQ44 HAP1 METTL20 (-) 1 2 12905 -cellosaurus:CVCL_XQ45 HAP1 METTL20 (-) 2 2 12906 -cellosaurus:CVCL_SX99 HAP1 METTL21B (-) 1 2 12907 -cellosaurus:CVCL_SY00 HAP1 METTL21B (-) 2 2 12908 -cellosaurus:CVCL_SY01 HAP1 METTL22 (-) 1 2 12909 -cellosaurus:CVCL_SY02 HAP1 METTL22 (-) 2 2 12910 -cellosaurus:CVCL_SY03 HAP1 METTL23 (-) 1 2 12911 -cellosaurus:CVCL_SY04 HAP1 METTL23 (-) 2 2 12912 -cellosaurus:CVCL_XQ46 HAP1 METTL4 (-) 2 12913 -cellosaurus:CVCL_SY05 HAP1 METTL5 (-) 1 2 12914 -cellosaurus:CVCL_SY06 HAP1 METTL5 (-) 2 2 12915 -cellosaurus:CVCL_SY07 HAP1 METTL5 (-) 3 2 12916 -cellosaurus:CVCL_SY08 HAP1 METTL5 (-) 5 2 12917 -cellosaurus:CVCL_SY09 HAP1 METTL6 (-) 1 2 12918 -cellosaurus:CVCL_SY10 HAP1 METTL6 (-) 2 2 12919 -cellosaurus:CVCL_SY11 HAP1 METTL6 (-) 3 2 12920 -cellosaurus:CVCL_SY12 HAP1 METTL6 (-) 4 2 12921 -cellosaurus:CVCL_SY13 HAP1 METTL8 (-) 1 2 12922 -cellosaurus:CVCL_SY14 HAP1 METTL8 (-) 2 2 12923 -cellosaurus:CVCL_SY15 HAP1 METTL9 (-) 1 2 12924 -cellosaurus:CVCL_SY16 HAP1 METTL9 (-) 2 2 12925 -cellosaurus:CVCL_SY17 HAP1 MEX3C (-) 2 12926 -cellosaurus:CVCL_XQ47 HAP1 MFF (-) 2 12927 -cellosaurus:CVCL_SY18 HAP1 MFN1 (-) 2 12928 -cellosaurus:CVCL_XQ48 HAP1 MFN2 (-) 2 12929 -cellosaurus:CVCL_SY19 HAP1 MFSD2A (-) 2 12930 -cellosaurus:CVCL_SY20 HAP1 MFSD7 (-) 1 2 12931 -cellosaurus:CVCL_SY21 HAP1 MFSD7 (-) 2 2 12932 -cellosaurus:CVCL_SY22 HAP1 MFSD8 (-) 1 2 12933 -cellosaurus:CVCL_XQ49 HAP1 MFSD8 (-) 2 2 12934 -cellosaurus:CVCL_SY23 HAP1 MFSD9 (-) 1 2 12935 -cellosaurus:CVCL_XQ50 HAP1 MFSD9 (-) 2 2 12936 -cellosaurus:CVCL_SY24 HAP1 MGAT1 (-) 1 2 12937 -cellosaurus:CVCL_XQ51 HAP1 MGAT1 (-) 2 2 12938 -cellosaurus:CVCL_XQ52 HAP1 MGAT1 (-) 3 2 12939 -cellosaurus:CVCL_SY25 HAP1 MGAT2 (-) 1 2 12940 -cellosaurus:CVCL_SY26 HAP1 MGAT2 (-) 2 2 12941 -cellosaurus:CVCL_SY27 HAP1 MGAT5 (-) 2 12942 -cellosaurus:CVCL_SY28 HAP1 MGEA5 (-) 1 2 12943 -cellosaurus:CVCL_XQ53 HAP1 MGEA5 (-) 2 2 12944 -cellosaurus:CVCL_SY29 HAP1 MGME1 (-) 1 2 12945 -cellosaurus:CVCL_SY30 HAP1 MGME1 (-) 2 2 12946 -cellosaurus:CVCL_SY31 HAP1 MGME1 (-) 3 2 12947 -cellosaurus:CVCL_SY32 HAP1 MGME1 (-) 4 2 12948 -cellosaurus:CVCL_SY33 HAP1 MGME1 (-) 5 2 12949 -cellosaurus:CVCL_SY34 HAP1 MGMT (-) 1 2 12950 -cellosaurus:CVCL_SY35 HAP1 MGMT (-) 2 2 12951 -cellosaurus:CVCL_SY36 HAP1 MGMT (-) 3 2 12952 -cellosaurus:CVCL_XQ54 HAP1 MIEN1 (-) 2 12953 -cellosaurus:CVCL_SY37 HAP1 MIF (-) 1 2 12954 -cellosaurus:CVCL_XQ55 HAP1 MIF (-) 2 2 12955 -cellosaurus:CVCL_SY38 HAP1 MINK1 (-) 2 12956 -cellosaurus:CVCL_SY39 HAP1 MINOS1 (-) 2 12957 -cellosaurus:CVCL_SY40 HAP1 MIOS (-) 2 12958 -cellosaurus:CVCL_SY41 HAP1 MIPEP (-) 2 12959 -cellosaurus:CVCL_XQ56 HAP1 MISP (-) 2 12960 -cellosaurus:CVCL_SY42 HAP1 MITF (-) 2 12961 -cellosaurus:CVCL_SY43 HAP1 MKI67 (-) 1 2 12962 -cellosaurus:CVCL_SY44 HAP1 MKI67 (-) 2 2 12963 -cellosaurus:CVCL_SY45 HAP1 MKI67 (-) 3 2 12964 -cellosaurus:CVCL_SY46 HAP1 MKI67 (-) 4 2 12965 -cellosaurus:CVCL_SY47 HAP1 MKNK1 (-) 1 2 12966 -cellosaurus:CVCL_SY48 HAP1 MKNK1 (-) 2 2 12967 -cellosaurus:CVCL_SY49 HAP1 MKNK1 (-) 3 2 12968 -cellosaurus:CVCL_SY50 HAP1 MKNK2 (-) 1 2 12969 -cellosaurus:CVCL_SY51 HAP1 MKNK2 (-) 2 2 12970 -cellosaurus:CVCL_SY52 HAP1 MLH1 (-) 1 2 12971 -cellosaurus:CVCL_SY53 HAP1 MLH1 (-) 2 2 12972 -cellosaurus:CVCL_SY54 HAP1 MLKL (-) 2 12973 -cellosaurus:CVCL_SY55 HAP1 MLST8 (-) 2 12974 -cellosaurus:CVCL_SY56 HAP1 MLXIP (-) 1 2 12975 -cellosaurus:CVCL_XQ57 HAP1 MLXIP (-) 2 2 12976 -cellosaurus:CVCL_SY57 HAP1 MME (-) 2 12977 -cellosaurus:CVCL_SY58 HAP1 MMP11 (-) 1 2 12978 -cellosaurus:CVCL_SY59 HAP1 MMP11 (-) 2 2 12979 -cellosaurus:CVCL_SY60 HAP1 MMP15 (-) 1 2 12980 -cellosaurus:CVCL_SY61 HAP1 MMP15 (-) 2 2 12981 -cellosaurus:CVCL_SY62 HAP1 MMP16 (-) 1 2 12982 -cellosaurus:CVCL_SY63 HAP1 MMP16 (-) 2 2 12983 -cellosaurus:CVCL_SY64 HAP1 MMP17 (-) 1 2 12984 -cellosaurus:CVCL_SY65 HAP1 MMP17 (-) 2 2 12985 -cellosaurus:CVCL_XQ58 HAP1 MMP2 (-) 2 12986 -cellosaurus:CVCL_SY66 HAP1 MMP24 (-) 1 2 12987 -cellosaurus:CVCL_SY67 HAP1 MMP24 (-) 2 2 12988 -cellosaurus:CVCL_SY68 HAP1 MMP24 (-) 3 2 12989 -cellosaurus:CVCL_SY69 HAP1 MMP25 (-) 1 2 12990 -cellosaurus:CVCL_SY70 HAP1 MMP25 (-) 2 2 12991 -cellosaurus:CVCL_SY71 HAP1 MNT (-) 1 2 12992 -cellosaurus:CVCL_SY72 HAP1 MNT (-) 2 2 12993 -cellosaurus:CVCL_SY73 HAP1 MNT (-) 3 2 12994 -cellosaurus:CVCL_SY74 HAP1 MOK (-) 1 2 12995 -cellosaurus:CVCL_SY75 HAP1 MOK (-) 2 2 12996 -cellosaurus:CVCL_SY76 HAP1 MOK (-) 3 2 12997 -cellosaurus:CVCL_XQ59 HAP1 MPC1 (-) 2 12998 -cellosaurus:CVCL_SY77 HAP1 MPDU1 (-) 1 2 12999 -cellosaurus:CVCL_SY78 HAP1 MPDU1 (-) 2 2 13000 -cellosaurus:CVCL_SY79 HAP1 MPG (-) 1 2 13001 -cellosaurus:CVCL_SY80 HAP1 MPG (-) 2 2 13002 -cellosaurus:CVCL_SY81 HAP1 MPI (-) 1 2 13003 -cellosaurus:CVCL_SY82 HAP1 MPI (-) 2 2 13004 -cellosaurus:CVCL_SY83 HAP1 MPND (-) 1 2 13005 -cellosaurus:CVCL_SY84 HAP1 MPND (-) 2 2 13006 -cellosaurus:CVCL_XQ60 HAP1 MPND (-) 3 2 13007 -cellosaurus:CVCL_SY85 HAP1 MPV17 (-) 1 2 13008 -cellosaurus:CVCL_XQ61 HAP1 MPV17 (-) 2 2 13009 -cellosaurus:CVCL_XQ62 HAP1 MPV17 (-) 3 2 13010 -cellosaurus:CVCL_XQ63 HAP1 MRPS22 (-) 2 13011 -cellosaurus:CVCL_SY86 HAP1 MS4A2 (-) 1 2 13012 -cellosaurus:CVCL_SY87 HAP1 MS4A2 (-) 2 2 13013 -cellosaurus:CVCL_SY88 HAP1 MSANTD3-TMEFF1 (-) 1 2 13014 -cellosaurus:CVCL_SY89 HAP1 MSANTD3-TMEFF1 (-) 2 2 13015 -cellosaurus:CVCL_SY90 HAP1 MSANTD3-TMEFF1 (-) 3 2 13016 -cellosaurus:CVCL_SY91 HAP1 MSANTD3-TMEFF1 (-) 4 2 13017 -cellosaurus:CVCL_SY92 HAP1 MSH2 (-) 1 2 13018 -cellosaurus:CVCL_SY93 HAP1 MSH2 (-) 2 2 13019 -cellosaurus:CVCL_SY94 HAP1 MSH2 (-) 3 2 13020 -cellosaurus:CVCL_SY95 HAP1 MSH2 (-) 4 2 13021 -cellosaurus:CVCL_SY96 HAP1 MSH3 (-) 1 2 13022 -cellosaurus:CVCL_SY97 HAP1 MSH3 (-) 2 2 13023 -cellosaurus:CVCL_SY98 HAP1 MSH3 (-) 3 2 13024 -cellosaurus:CVCL_SY99 HAP1 MSH5 (-) 1 2 13025 -cellosaurus:CVCL_SZ00 HAP1 MSH5 (-) 2 2 13026 -cellosaurus:CVCL_SZ01 HAP1 MSH6 (-) 1 2 13027 -cellosaurus:CVCL_SZ02 HAP1 MSH6 (-) 2 2 13028 -cellosaurus:CVCL_SZ03 HAP1 MSH6 (-) 3 2 13029 -cellosaurus:CVCL_SZ04 HAP1 MSI1 (-) 1 2 13030 -cellosaurus:CVCL_XQ64 HAP1 MSI1 (-) 2 2 13031 -cellosaurus:CVCL_SZ05 HAP1 MSI2 (-) 1 2 13032 -cellosaurus:CVCL_XQ65 HAP1 MSI2 (-) 2 2 13033 -cellosaurus:CVCL_XQ66 HAP1 MSI2 (-) 3 2 13034 -cellosaurus:CVCL_SZ06 HAP1 MSN (-) 2 13035 -cellosaurus:CVCL_SZ07 HAP1 MST4 (-) 1 2 13036 -cellosaurus:CVCL_SZ08 HAP1 MST4 (-) 2 2 13037 -cellosaurus:CVCL_SZ09 HAP1 MTAP (-) 1 2 13038 -cellosaurus:CVCL_SZ10 HAP1 MTAP (-) 2 2 13039 -cellosaurus:CVCL_SZ11 HAP1 MTCH1 (-) 1 2 13040 -cellosaurus:CVCL_SZ12 HAP1 MTCH1 (-) 2 2 13041 -cellosaurus:CVCL_SZ13 HAP1 MTCH1 (-) 3 2 13042 -cellosaurus:CVCL_XQ67 HAP1 MTERF (-) 2 13043 -cellosaurus:CVCL_XQ68 HAP1 MTERFD1 (-) 2 13044 -cellosaurus:CVCL_XQ69 HAP1 MTERFD3 (-) 2 13045 -cellosaurus:CVCL_SZ14 HAP1 MTF2 (-) 1 2 13046 -cellosaurus:CVCL_SZ15 HAP1 MTF2 (-) 2 2 13047 -cellosaurus:CVCL_SZ16 HAP1 MTF2 (-) 3 2 13048 -cellosaurus:CVCL_SZ17 HAP1 MTF2 (-) 4 2 13049 -cellosaurus:CVCL_SZ18 HAP1 MTF2 (-) 5 2 13050 -cellosaurus:CVCL_SZ19 HAP1 MTFR1L (-) 1 2 13051 -cellosaurus:CVCL_XQ71 HAP1 MTFR1L (-) 2 2 13052 -cellosaurus:CVCL_XQ72 HAP1 MTFR1L (-) 3 2 13053 -cellosaurus:CVCL_XQ73 HAP1 MTFR1L (-) 4 2 13054 -cellosaurus:CVCL_SZ20 HAP1 MTHFD1L (-) 1 2 13055 -cellosaurus:CVCL_XQ74 HAP1 MTHFD1L (-) 2 2 13056 -cellosaurus:CVCL_SZ21 HAP1 MTHFD2 (-) 1 2 13057 -cellosaurus:CVCL_XQ75 HAP1 MTHFD2 (-) 2 2 13058 -cellosaurus:CVCL_XQ76 HAP1 MTHFD2 (-) 3 2 13059 -cellosaurus:CVCL_SZ22 HAP1 MTM1 (-) 1 2 13060 -cellosaurus:CVCL_SZ23 HAP1 MTM1 (-) 2 2 13061 -cellosaurus:CVCL_SZ24 HAP1 MTMR1 (-) 2 13062 -cellosaurus:CVCL_SZ25 HAP1 MTMR14 (-) 1 2 13063 -cellosaurus:CVCL_SZ26 HAP1 MTMR14 (-) 2 2 13064 -cellosaurus:CVCL_SZ27 HAP1 MTMR2 (-) 1 2 13065 -cellosaurus:CVCL_SZ28 HAP1 MTMR2 (-) 2 2 13066 -cellosaurus:CVCL_SZ29 HAP1 MTMR3 (-) 2 13067 -cellosaurus:CVCL_SZ30 HAP1 MTMR4 (-) 1 2 13068 -cellosaurus:CVCL_SZ31 HAP1 MTMR4 (-) 2 2 13069 -cellosaurus:CVCL_SZ32 HAP1 MTMR6 (-) 2 13070 -cellosaurus:CVCL_SZ33 HAP1 MTMR7 (-) 1 2 13071 -cellosaurus:CVCL_SZ34 HAP1 MTMR7 (-) 2 2 13072 -cellosaurus:CVCL_XQ77 HAP1 MTO1 (-) 2 13073 -cellosaurus:CVCL_SZ35 HAP1 MTR (-) 1 2 13074 -cellosaurus:CVCL_SZ36 HAP1 MTR (-) 2 2 13075 -cellosaurus:CVCL_XQ78 HAP1 MUM1 (-) 2 13076 -cellosaurus:CVCL_SZ37 HAP1 MUS81 (-) 1 2 13077 -cellosaurus:CVCL_SZ38 HAP1 MUS81 (-) 2 2 13078 -cellosaurus:CVCL_SZ39 HAP1 MUS81 (-) 3 2 13079 -cellosaurus:CVCL_SZ40 HAP1 MUS81 (-) 4 2 13080 -cellosaurus:CVCL_SZ41 HAP1 MUS81 (-) 5 2 13081 -cellosaurus:CVCL_SZ42 HAP1 MUS81 (-) 6 2 13082 -cellosaurus:CVCL_SZ43 HAP1 MUS81 (-) 7 2 13083 -cellosaurus:CVCL_SZ44 HAP1 MUS81 (-) 8 2 13084 -cellosaurus:CVCL_SZ45 HAP1 MUS81 (-) 9 2 13085 -cellosaurus:CVCL_SZ46 HAP1 MUT (-) 1 2 13086 -cellosaurus:CVCL_SZ47 HAP1 MUT (-) 2 2 13087 -cellosaurus:CVCL_SZ48 HAP1 MUTYH (-) 1 2 13088 -cellosaurus:CVCL_SZ49 HAP1 MUTYH (-) 2 2 13089 -cellosaurus:CVCL_SZ50 HAP1 MVP (-) 1 2 13090 -cellosaurus:CVCL_SZ51 HAP1 MVP (-) 2 2 13091 -cellosaurus:CVCL_SZ52 HAP1 MX2 (-) 1 2 13092 -cellosaurus:CVCL_XQ79 HAP1 MX2 (-) 2 2 13093 -cellosaurus:CVCL_SZ53 HAP1 MYB (-) 1 2 13094 -cellosaurus:CVCL_XQ80 HAP1 MYB (-) 2 2 13095 -cellosaurus:CVCL_SZ54 HAP1 MYD88 (-) 1 2 13096 -cellosaurus:CVCL_SZ55 HAP1 MYD88 (-) 2 2 13097 -cellosaurus:CVCL_SZ56 HAP1 MYEOV2 (-) 1 2 13098 -cellosaurus:CVCL_SZ57 HAP1 MYEOV2 (-) 2 2 13099 -cellosaurus:CVCL_SZ58 HAP1 MYH9 (-) 1 2 13100 -cellosaurus:CVCL_SZ59 HAP1 MYH9 (-) 2 2 13101 -cellosaurus:CVCL_SZ60 HAP1 MYLK (-) 1 2 13102 -cellosaurus:CVCL_SZ61 HAP1 MYLK (-) 2 2 13103 -cellosaurus:CVCL_SZ62 HAP1 MYLK3 (-) 1 2 13104 -cellosaurus:CVCL_SZ63 HAP1 MYLK3 (-) 2 2 13105 -cellosaurus:CVCL_SZ64 HAP1 MYLK3 (-) 3 2 13106 -cellosaurus:CVCL_SZ65 HAP1 MYLK3 (-) 4 2 13107 -cellosaurus:CVCL_XQ81 HAP1 MYO18A (-) 1 2 13108 -cellosaurus:CVCL_B5KC HAP1 MYO18A (-) 2 2 13109 -cellosaurus:CVCL_B5KD HAP1 MYO18A (-) 3 2 13110 -cellosaurus:CVCL_SZ66 HAP1 MYO5B (-) 1 2 13111 -cellosaurus:CVCL_XQ82 HAP1 MYO5B (-) 2 2 13112 -cellosaurus:CVCL_SZ67 HAP1 MYSM1 (-) 1 2 13113 -cellosaurus:CVCL_SZ68 HAP1 MYSM1 (-) 2 2 13114 -cellosaurus:CVCL_SZ69 HAP1 MYT1 (-) 1 2 13115 -cellosaurus:CVCL_SZ70 HAP1 MYT1 (-) 2 2 13116 -cellosaurus:CVCL_SZ71 HAP1 MYT1 (-) 3 2 13117 -cellosaurus:CVCL_SZ72 HAP1 N6AMT2 (-) 2 13118 -cellosaurus:CVCL_SZ73 HAP1 NAA16 (-) 2 13119 -cellosaurus:CVCL_SZ74 HAP1 NAA30 (-) 1 2 13120 -cellosaurus:CVCL_XQ83 HAP1 NAA30 (-) 2 2 13121 -cellosaurus:CVCL_SZ75 HAP1 NAA35 (-) 2 13122 -cellosaurus:CVCL_SZ76 HAP1 NAA40 (-) 1 2 13123 -cellosaurus:CVCL_SZ77 HAP1 NAA40 (-) 2 2 13124 -cellosaurus:CVCL_SZ78 HAP1 NAA40 (-) 3 2 13125 -cellosaurus:CVCL_SZ79 HAP1 NAA40 (-) 4 2 13126 -cellosaurus:CVCL_SZ80 HAP1 NAA40 (-) 5 2 13127 -cellosaurus:CVCL_SZ81 HAP1 NAA40 (-) 6 2 13128 -cellosaurus:CVCL_SZ82 HAP1 NAA60 (-) 1 2 13129 -cellosaurus:CVCL_SZ83 HAP1 NAA60 (-) 2 2 13130 -cellosaurus:CVCL_XQ84 HAP1 NADK (-) 2 13131 -cellosaurus:CVCL_XQ85 HAP1 NADK2 (-) 2 13132 -cellosaurus:CVCL_SZ84 HAP1 NAGK (-) 1 2 13133 -cellosaurus:CVCL_XQ86 HAP1 NAGK (-) 2 2 13134 -cellosaurus:CVCL_SZ85 HAP1 NAIF1 (-) 1 2 13135 -cellosaurus:CVCL_SZ86 HAP1 NAIF1 (-) 2 2 13136 -cellosaurus:CVCL_SZ87 HAP1 NAIF1 (-) 3 2 13137 -cellosaurus:CVCL_SZ88 HAP1 NANP (-) 1 2 13138 -cellosaurus:CVCL_SZ89 HAP1 NANP (-) 2 2 13139 -cellosaurus:CVCL_SZ90 HAP1 NANP (-) 3 2 13140 -cellosaurus:CVCL_SZ91 HAP1 NANS (-) 1 2 13141 -cellosaurus:CVCL_SZ92 HAP1 NANS (-) 2 2 13142 -cellosaurus:CVCL_SZ93 HAP1 NAT14 (-) 1 2 13143 -cellosaurus:CVCL_SZ94 HAP1 NAT14 (-) 2 2 13144 -cellosaurus:CVCL_SZ95 HAP1 NAT14 (-) 3 2 13145 -cellosaurus:CVCL_SZ96 HAP1 NAT14 (-) 4 2 13146 -cellosaurus:CVCL_SZ97 HAP1 NAT6 (-) 1 2 13147 -cellosaurus:CVCL_SZ98 HAP1 NAT6 (-) 2 2 13148 -cellosaurus:CVCL_SZ99 HAP1 NAT9 (-) 1 2 13149 -cellosaurus:CVCL_TA00 HAP1 NAT9 (-) 2 2 13150 -cellosaurus:CVCL_TA01 HAP1 NBEA (-) 1 2 13151 -cellosaurus:CVCL_TA02 HAP1 NBEA (-) 2 2 13152 -cellosaurus:CVCL_TA03 HAP1 NBEAL1 (-) 2 13153 -cellosaurus:CVCL_TA04 HAP1 NBEAL2 (-) 1 2 13154 -cellosaurus:CVCL_TA05 HAP1 NBEAL2 (-) 2 2 13155 -cellosaurus:CVCL_TA06 HAP1 NCKAP1 (-) 1 2 13156 -cellosaurus:CVCL_TA07 HAP1 NCKAP1 (-) 2 2 13157 -cellosaurus:CVCL_TA08 HAP1 NCKIPSD (-) 1 2 13158 -cellosaurus:CVCL_TA09 HAP1 NCKIPSD (-) 2 2 13159 -cellosaurus:CVCL_TA10 HAP1 NCOA4 (-) 2 2 13160 -cellosaurus:CVCL_TA11 HAP1 NCOA4 (-) 3 2 13161 -cellosaurus:CVCL_TA12 HAP1 NDUFA2 (-) 1 2 13162 -cellosaurus:CVCL_TA13 HAP1 NDUFA2 (-) 2 2 13163 -cellosaurus:CVCL_TA14 HAP1 NDUFA9 (-) 1 2 13164 -cellosaurus:CVCL_TA15 HAP1 NDUFA9 (-) 2 2 13165 -cellosaurus:CVCL_XQ87 HAP1 NDUFAF6 (-) 2 13166 -cellosaurus:CVCL_TA16 HAP1 NDUFB10 (-) 2 13167 -cellosaurus:CVCL_TA17 HAP1 NDUFB8 (-) 1 2 13168 -cellosaurus:CVCL_XQ88 HAP1 NDUFB8 (-) 2 2 13169 -cellosaurus:CVCL_TA18 HAP1 NDUFS2 (-) 1 2 13170 -cellosaurus:CVCL_TA19 HAP1 NDUFS2 (-) 2 2 13171 -cellosaurus:CVCL_XQ89 HAP1 NDUFS3 (-) 1 2 13172 -cellosaurus:CVCL_B5KF HAP1 NDUFS3 (-) 2 2 13173 -cellosaurus:CVCL_B5KG HAP1 NDUFS3 (-) 3 2 13174 -cellosaurus:CVCL_B5KH HAP1 NDUFS3 (-) 4 2 13175 -cellosaurus:CVCL_TA20 HAP1 NDUFS4 (-) 1 2 13176 -cellosaurus:CVCL_TA21 HAP1 NDUFS4 (-) 2 2 13177 -cellosaurus:CVCL_TA22 HAP1 NEDD4 (-) 1 2 13178 -cellosaurus:CVCL_TA23 HAP1 NEDD4 (-) 2 2 13179 -cellosaurus:CVCL_TA24 HAP1 NEDD4L (-) 1 2 13180 -cellosaurus:CVCL_XQ90 HAP1 NEDD4L (-) 2 2 13181 -cellosaurus:CVCL_TA25 HAP1 NEIL1 (-) 2 13182 -cellosaurus:CVCL_TA26 HAP1 NEIL2 (-) 1 2 13183 -cellosaurus:CVCL_TA27 HAP1 NEIL2 (-) 2 2 13184 -cellosaurus:CVCL_TA28 HAP1 NEIL3 (-) 1 2 13185 -cellosaurus:CVCL_TA29 HAP1 NEIL3 (-) 2 2 13186 -cellosaurus:CVCL_TA30 HAP1 NEK1 (-) 1 2 13187 -cellosaurus:CVCL_TA31 HAP1 NEK1 (-) 2 2 13188 -cellosaurus:CVCL_TA32 HAP1 NEK10 (-) 1 2 13189 -cellosaurus:CVCL_TA33 HAP1 NEK10 (-) 2 2 13190 -cellosaurus:CVCL_TA34 HAP1 NEK10 (-) 3 2 13191 -cellosaurus:CVCL_TA35 HAP1 NEK2 (-) 1 2 13192 -cellosaurus:CVCL_TA36 HAP1 NEK2 (-) 2 2 13193 -cellosaurus:CVCL_TA37 HAP1 NEK3 (-) 1 2 13194 -cellosaurus:CVCL_TA38 HAP1 NEK3 (-) 2 2 13195 -cellosaurus:CVCL_TA39 HAP1 NEK3 (-) 3 2 13196 -cellosaurus:CVCL_TA40 HAP1 NEK4 (-) 1 2 13197 -cellosaurus:CVCL_TA41 HAP1 NEK4 (-) 2 2 13198 -cellosaurus:CVCL_TA42 HAP1 NEK7 (-) 1 2 13199 -cellosaurus:CVCL_TA43 HAP1 NEK7 (-) 2 2 13200 -cellosaurus:CVCL_TA44 HAP1 NEK7 (-) 3 2 13201 -cellosaurus:CVCL_TA45 HAP1 NEK8 (-) 1 2 13202 -cellosaurus:CVCL_TA46 HAP1 NEK8 (-) 2 2 13203 -cellosaurus:CVCL_TA47 HAP1 NEK8 (-) 3 2 13204 -cellosaurus:CVCL_TA48 HAP1 NEK8 (-) 4 2 13205 -cellosaurus:CVCL_TA49 HAP1 NEK9 (-) 2 13206 -cellosaurus:CVCL_TA50 HAP1 NES (-) 1 2 13207 -cellosaurus:CVCL_XQ91 HAP1 NES (-) 2 2 13208 -cellosaurus:CVCL_TA51 HAP1 NF1 (-) 1 2 13209 -cellosaurus:CVCL_TA52 HAP1 NF1 (-) 2 2 13210 -cellosaurus:CVCL_TA53 HAP1 NF1 (-) 3 2 13211 -cellosaurus:CVCL_TA54 HAP1 NF1 (-) 4 2 13212 -cellosaurus:CVCL_TA55 HAP1 NF2 (-) 2 13213 -cellosaurus:CVCL_TA56 HAP1 NFATC1 (-) 1 2 13214 -cellosaurus:CVCL_XQ92 HAP1 NFATC1 (-) 2 2 13215 -cellosaurus:CVCL_TA57 HAP1 NFE2L1 (-) 1 2 13216 -cellosaurus:CVCL_XQ93 HAP1 NFE2L1 (-) 2 2 13217 -cellosaurus:CVCL_XQ94 HAP1 NFE2L2 (-) 2 13218 -cellosaurus:CVCL_XQ95 HAP1 NFIL3 (-) 2 13219 -cellosaurus:CVCL_TA58 HAP1 NFKB1 (-) 1 2 13220 -cellosaurus:CVCL_TA59 HAP1 NFKB1 (-) 2 2 13221 -cellosaurus:CVCL_TA60 HAP1 NFKB2 (-) 1 2 13222 -cellosaurus:CVCL_TA61 HAP1 NFKB2 (-) 2 2 13223 -cellosaurus:CVCL_TA62 HAP1 NFKBIA (-) 1 2 13224 -cellosaurus:CVCL_TA63 HAP1 NFKBIA (-) 2 2 13225 -cellosaurus:CVCL_TA64 HAP1 NFKBIA (-) 3 2 13226 -cellosaurus:CVCL_TA65 HAP1 NFKBIB (-) 2 13227 -cellosaurus:CVCL_TA66 HAP1 NFKBIE (-) 1 2 13228 -cellosaurus:CVCL_TA67 HAP1 NFKBIE (-) 2 2 13229 -cellosaurus:CVCL_TA68 HAP1 NGFR (-) 1 2 13230 -cellosaurus:CVCL_TA69 HAP1 NGFR (-) 2 2 13231 -cellosaurus:CVCL_TA70 HAP1 NGLY1 (-) 1 2 13232 -cellosaurus:CVCL_TA71 HAP1 NGLY1 (-) 2 2 13233 -cellosaurus:CVCL_TA72 HAP1 NHEJ1 (-) 1 2 13234 -cellosaurus:CVCL_TA73 HAP1 NHEJ1 (-) 2 2 13235 -cellosaurus:CVCL_TA74 HAP1 NIPSNAP3A (-) 1 2 13236 -cellosaurus:CVCL_XQ96 HAP1 NIPSNAP3A (-) 2 2 13237 -cellosaurus:CVCL_XQ97 HAP1 NIPSNAP3A (-) 3 2 13238 -cellosaurus:CVCL_XQ98 HAP1 NIPSNAP3A (-) 4 2 13239 -cellosaurus:CVCL_TA75 HAP1 NLK (-) 1 2 13240 -cellosaurus:CVCL_TA76 HAP1 NLK (-) 2 2 13241 -cellosaurus:CVCL_TA77 HAP1 NMI (-) 2 13242 -cellosaurus:CVCL_TA78 HAP1 NMNAT3 (-) 1 2 13243 -cellosaurus:CVCL_XQ99 HAP1 NMNAT3 (-) 2 2 13244 -cellosaurus:CVCL_TA79 HAP1 NMRAL1 (-) 1 2 13245 -cellosaurus:CVCL_XR00 HAP1 NMRAL1 (-) 2 2 13246 -cellosaurus:CVCL_XR01 HAP1 NMRK1 (-) 1 2 13247 -cellosaurus:CVCL_B5KI HAP1 NMRK1 (-) 2 2 13248 -cellosaurus:CVCL_TA80 HAP1 NMT1 (-) 1 2 13249 -cellosaurus:CVCL_TA81 HAP1 NMT1 (-) 2 2 13250 -cellosaurus:CVCL_TA82 HAP1 NMT1 (-) 3 2 13251 -cellosaurus:CVCL_TA83 HAP1 NMT1 (-) 4 2 13252 -cellosaurus:CVCL_TA84 HAP1 NMT2 (-) 2 13253 -cellosaurus:CVCL_TA85 HAP1 NOS2 (-) 1 2 13254 -cellosaurus:CVCL_TA86 HAP1 NOS2 (-) 2 2 13255 -cellosaurus:CVCL_TA87 HAP1 NOTCH1 (-) 2 13256 -cellosaurus:CVCL_TA88 HAP1 NOTCH3 (-) 1 2 13257 -cellosaurus:CVCL_XR02 HAP1 NOTCH3 (-) 2 2 13258 -cellosaurus:CVCL_TA89 HAP1 NOXA1 (-) 1 2 13259 -cellosaurus:CVCL_TA90 HAP1 NOXA1 (-) 2 2 13260 -cellosaurus:CVCL_TA91 HAP1 NPC1 (-) 1 2 13261 -cellosaurus:CVCL_XR03 HAP1 NPC1 (-) 2 2 13262 -cellosaurus:CVCL_XR04 HAP1 NPC2 (-) 2 13263 -cellosaurus:CVCL_TA92 HAP1 NPL (-) 1 2 13264 -cellosaurus:CVCL_XR05 HAP1 NPL (-) 2 2 13265 -cellosaurus:CVCL_XR06 HAP1 NPL (-) 3 2 13266 -cellosaurus:CVCL_TA93 HAP1 NPRL2 (-) 1 2 13267 -cellosaurus:CVCL_TA94 HAP1 NPRL2 (-) 2 2 13268 -cellosaurus:CVCL_TA95 HAP1 NPRL2 (-) 3 2 13269 -cellosaurus:CVCL_TA96 HAP1 NPRL3 (-) 1 2 13270 -cellosaurus:CVCL_TA97 HAP1 NPRL3 (-) 2 2 13271 -cellosaurus:CVCL_TA98 HAP1 NQO1 (-) 2 13272 -cellosaurus:CVCL_TA99 HAP1 NQO2 (-) 1 2 13273 -cellosaurus:CVCL_XR07 HAP1 NQO2 (-) 2 2 13274 -cellosaurus:CVCL_TB00 HAP1 NR2F2 (-) 2 13275 -cellosaurus:CVCL_XR08 HAP1 NR3C1 (-) 2 13276 -cellosaurus:CVCL_TB01 HAP1 NR3C2 (-) 1 2 13277 -cellosaurus:CVCL_TB02 HAP1 NR3C2 (-) 2 2 13278 -cellosaurus:CVCL_TB03 HAP1 NR4A1 (-) 1 2 13279 -cellosaurus:CVCL_XR09 HAP1 NR4A1 (-) 2 2 13280 -cellosaurus:CVCL_XR10 HAP1 NR5A2 (-) 1 2 13281 -cellosaurus:CVCL_B5KJ HAP1 NR5A2 (-) 2 2 13282 -cellosaurus:CVCL_TB04 HAP1 NRBP1 (-) 1 2 13283 -cellosaurus:CVCL_XR11 HAP1 NRBP1 (-) 2 2 13284 -cellosaurus:CVCL_XR12 HAP1 NRBP1 (-) 3 2 13285 -cellosaurus:CVCL_XR13 HAP1 NRBP1 (-) 4 2 13286 -cellosaurus:CVCL_TB05 HAP1 NRBP2 (-) 1 2 13287 -cellosaurus:CVCL_TB06 HAP1 NRBP2 (-) 2 2 13288 -cellosaurus:CVCL_TB07 HAP1 NRBP2 (-) 3 2 13289 -cellosaurus:CVCL_TB08 HAP1 NRD1 (-) 2 13290 -cellosaurus:CVCL_TB09 HAP1 NRP1 (-) 1 2 13291 -cellosaurus:CVCL_XR14 HAP1 NRP1 (-) 2 2 13292 -cellosaurus:CVCL_TB10 HAP1 NRP2 (-) 1 2 13293 -cellosaurus:CVCL_XR15 HAP1 NRP2 (-) 2 2 13294 -cellosaurus:CVCL_TB11 HAP1 NSD1 (-) 1 2 13295 -cellosaurus:CVCL_TB12 HAP1 NSD1 (-) 2 2 13296 -cellosaurus:CVCL_TB13 HAP1 NSD1 (-) 3 2 13297 -cellosaurus:CVCL_TB14 HAP1 NSD1 (-) 4 2 13298 -cellosaurus:CVCL_TB15 HAP1 NSUN2 (-) 1 2 13299 -cellosaurus:CVCL_XR16 HAP1 NSUN2 (-) 2 2 13300 -cellosaurus:CVCL_TB16 HAP1 NSUN3 (-) 1 2 13301 -cellosaurus:CVCL_TB17 HAP1 NSUN3 (-) 2 2 13302 -cellosaurus:CVCL_TB18 HAP1 NSUN3 (-) 3 2 13303 -cellosaurus:CVCL_TB19 HAP1 NSUN5 (-) 1 2 13304 -cellosaurus:CVCL_XR17 HAP1 NSUN5 (-) 2 2 13305 -cellosaurus:CVCL_XR18 HAP1 NSUN5 (-) 3 2 13306 -cellosaurus:CVCL_XR19 HAP1 NSUN5 (-) 4 2 13307 -cellosaurus:CVCL_TB20 HAP1 NT5C3A (-) 1 2 13308 -cellosaurus:CVCL_TB21 HAP1 NT5C3A (-) 2 2 13309 -cellosaurus:CVCL_TB22 HAP1 NT5C3A (-) 3 2 13310 -cellosaurus:CVCL_TB23 HAP1 NT5C3A (-) 4 2 13311 -cellosaurus:CVCL_TB24 HAP1 NT5DC2 (-) 1 2 13312 -cellosaurus:CVCL_XR20 HAP1 NT5DC2 (-) 2 2 13313 -cellosaurus:CVCL_XR21 HAP1 NT5DC2 (-) 3 2 13314 -cellosaurus:CVCL_XR22 HAP1 NT5DC2 (-) 4 2 13315 -cellosaurus:CVCL_TB25 HAP1 NTHL1 (-) 1 2 13316 -cellosaurus:CVCL_TB26 HAP1 NTHL1 (-) 2 2 13317 -cellosaurus:CVCL_TB27 HAP1 NTHL1 (-) 3 2 13318 -cellosaurus:CVCL_TB28 HAP1 NTHL1 (-) 4 2 13319 -cellosaurus:CVCL_TB29 HAP1 NTHL1 (-) 5 2 13320 -cellosaurus:CVCL_TB30 HAP1 NTRK1 (-) 2 13321 -cellosaurus:CVCL_TB31 HAP1 NUAK1 (-) 2 13322 -cellosaurus:CVCL_RQ86 HAP1 NUDT1(-) 1 2 13323 -cellosaurus:CVCL_SA83 HAP1 NUDT1(-) 2 2 13324 -cellosaurus:CVCL_TB32 HAP1 NUDT15 (-) 1 2 13325 -cellosaurus:CVCL_TB33 HAP1 NUDT15 (-) 2 2 13326 -cellosaurus:CVCL_TB34 HAP1 NUDT16 (-) 1 2 13327 -cellosaurus:CVCL_TB35 HAP1 NUDT16 (-) 2 2 13328 -cellosaurus:CVCL_TB36 HAP1 NUDT19 (-) 1 2 13329 -cellosaurus:CVCL_TB37 HAP1 NUDT19 (-) 2 2 13330 -cellosaurus:CVCL_TB38 HAP1 NUDT2 (-) 1 2 13331 -cellosaurus:CVCL_TB39 HAP1 NUDT2 (-) 2 2 13332 -cellosaurus:CVCL_TB40 HAP1 NUDT3 (-) 1 2 13333 -cellosaurus:CVCL_TB41 HAP1 NUDT3 (-) 2 2 13334 -cellosaurus:CVCL_TB42 HAP1 NUDT6 (-) 1 2 13335 -cellosaurus:CVCL_TB43 HAP1 NUDT6 (-) 2 2 13336 -cellosaurus:CVCL_TB44 HAP1 NUDT7 (-) 1 2 13337 -cellosaurus:CVCL_TB45 HAP1 NUDT7 (-) 2 2 13338 -cellosaurus:CVCL_XR23 HAP1 NUDT9 (-) 1 2 13339 -cellosaurus:CVCL_B5KK HAP1 NUDT9 (-) 2 2 13340 -cellosaurus:CVCL_TB46 HAP1 NUMB (-) 1 2 13341 -cellosaurus:CVCL_XR24 HAP1 NUMB (-) 2 2 13342 -cellosaurus:CVCL_XR25 HAP1 NUMB (-) 3 2 13343 -cellosaurus:CVCL_TB47 HAP1 NUP210 (-) 1 2 13344 -cellosaurus:CVCL_TB48 HAP1 NUP210 (-) 2 2 13345 -cellosaurus:CVCL_TB49 HAP1 NUP210 (-) 3 2 13346 -cellosaurus:CVCL_TB50 HAP1 NUP210 (-) 4 2 13347 -cellosaurus:CVCL_TB51 HAP1 NUSAP1 (-) 1 2 13348 -cellosaurus:CVCL_TB52 HAP1 NUSAP1 (-) 2 2 13349 -cellosaurus:CVCL_TB53 HAP1 NXN (-) 2 13350 -cellosaurus:CVCL_TB54 HAP1 OBSCN (-) 1 2 13351 -cellosaurus:CVCL_TB55 HAP1 OBSCN (-) 2 2 13352 -cellosaurus:CVCL_TB56 HAP1 OBSCN (-) 3 2 13353 -cellosaurus:CVCL_TB57 HAP1 OCIAD1 (-) 1 2 13354 -cellosaurus:CVCL_XR26 HAP1 OCIAD1 (-) 2 2 13355 -cellosaurus:CVCL_XR27 HAP1 OCIAD1 (-) 3 2 13356 -cellosaurus:CVCL_TB58 HAP1 OCLN (-) 1 2 13357 -cellosaurus:CVCL_XR28 HAP1 OCLN (-) 2 2 13358 -cellosaurus:CVCL_TB59 HAP1 OCRL (-) 1 2 13359 -cellosaurus:CVCL_TB60 HAP1 OCRL (-) 2 2 13360 -cellosaurus:CVCL_TB61 HAP1 OGG1 (-) 1 2 13361 -cellosaurus:CVCL_TB62 HAP1 OGG1 (-) 2 2 13362 -cellosaurus:CVCL_TB63 HAP1 OGG1 (-) 3 2 13363 -cellosaurus:CVCL_TB64 HAP1 OSR1 (-) 1 2 13364 -cellosaurus:CVCL_TB65 HAP1 OSR1 (-) 2 2 13365 -cellosaurus:CVCL_TB66 HAP1 OSR1 (-) 3 2 13366 -cellosaurus:CVCL_TB67 HAP1 OTUB1 (-) 2 13367 -cellosaurus:CVCL_TB68 HAP1 OTUB2 (-) 1 2 13368 -cellosaurus:CVCL_TB69 HAP1 OTUB2 (-) 2 2 13369 -cellosaurus:CVCL_TB70 HAP1 OTUD1 (-) 1 2 13370 -cellosaurus:CVCL_TB71 HAP1 OTUD1 (-) 2 2 13371 -cellosaurus:CVCL_TB72 HAP1 OTUD3 (-) 1 2 13372 -cellosaurus:CVCL_TB73 HAP1 OTUD3 (-) 2 2 13373 -cellosaurus:CVCL_TB74 HAP1 OTUD4 (-) 2 13374 -cellosaurus:CVCL_TB75 HAP1 OTUD5 (-) 1 2 13375 -cellosaurus:CVCL_TB76 HAP1 OTUD5 (-) 2 2 13376 -cellosaurus:CVCL_TB77 HAP1 OTUD6B (-) 2 13377 -cellosaurus:CVCL_TB78 HAP1 OTUD7B (-) 1 2 13378 -cellosaurus:CVCL_TB79 HAP1 OTUD7B (-) 2 2 13379 -cellosaurus:CVCL_TB80 HAP1 OXLD1 (-) 1 2 13380 -cellosaurus:CVCL_TB81 HAP1 OXLD1 (-) 2 2 13381 -cellosaurus:CVCL_TB82 HAP1 OXNAD1 (-) 1 2 13382 -cellosaurus:CVCL_XR29 HAP1 OXNAD1 (-) 2 2 13383 -cellosaurus:CVCL_XR30 HAP1 OXNAD1 (-) 3 2 13384 -cellosaurus:CVCL_TB83 HAP1 PABPC4 (-) 1 2 13385 -cellosaurus:CVCL_TB84 HAP1 PABPC4 (-) 2 2 13386 -cellosaurus:CVCL_TB85 HAP1 PABPC4 (-) 3 2 13387 -cellosaurus:CVCL_TB86 HAP1 PACRG (-) 1 2 13388 -cellosaurus:CVCL_XR31 HAP1 PACRG (-) 2 2 13389 -cellosaurus:CVCL_TB87 HAP1 PAK1 (-) 1 2 13390 -cellosaurus:CVCL_TB88 HAP1 PAK1 (-) 2 2 13391 -cellosaurus:CVCL_TB89 HAP1 PAK1 (-) 3 2 13392 -cellosaurus:CVCL_TB90 HAP1 PAK2 (-) 1 2 13393 -cellosaurus:CVCL_TB91 HAP1 PAK2 (-) 2 2 13394 -cellosaurus:CVCL_TB92 HAP1 PAK2 (-) 3 2 13395 -cellosaurus:CVCL_TB93 HAP1 PAK2 (-) 4 2 13396 -cellosaurus:CVCL_TB94 HAP1 PAK4 (-) 1 2 13397 -cellosaurus:CVCL_TB95 HAP1 PAK4 (-) 2 2 13398 -cellosaurus:CVCL_TB96 HAP1 PAK4 (-) 3 2 13399 -cellosaurus:CVCL_TB97 HAP1 PAK6 (-) 2 13400 -cellosaurus:CVCL_TB98 HAP1 PALM (-) 1 2 13401 -cellosaurus:CVCL_TB99 HAP1 PALM (-) 2 2 13402 -cellosaurus:CVCL_TC00 HAP1 PALM (-) 3 2 13403 -cellosaurus:CVCL_TC01 HAP1 PAN2 (-) 1 2 13404 -cellosaurus:CVCL_TC02 HAP1 PAN2 (-) 2 2 13405 -cellosaurus:CVCL_XR32 HAP1 PAN3 (-) 1 2 13406 -cellosaurus:CVCL_B5KL HAP1 PAN3 (-) 2 2 13407 -cellosaurus:CVCL_XR33 HAP1 PANX2 (-) 2 13408 -cellosaurus:CVCL_TC03 HAP1 PAPSS2 (-) 1 2 13409 -cellosaurus:CVCL_TC04 HAP1 PAPSS2 (-) 2 2 13410 -cellosaurus:CVCL_TC05 HAP1 PAPSS2 (-) 3 2 13411 -cellosaurus:CVCL_TC06 HAP1 PARG (-) 1 2 13412 -cellosaurus:CVCL_XR34 HAP1 PARG (-) 2 2 13413 -cellosaurus:CVCL_TC07 HAP1 PARK2 (-) 1 2 13414 -cellosaurus:CVCL_TC08 HAP1 PARK2 (-) 2 2 13415 -cellosaurus:CVCL_TC09 HAP1 PARK7 (-) 1 2 13416 -cellosaurus:CVCL_TC10 HAP1 PARK7 (-) 2 2 13417 -cellosaurus:CVCL_TC11 HAP1 PARP1 (-) 1 2 13418 -cellosaurus:CVCL_TC12 HAP1 PARP1 (-) 2 2 13419 -cellosaurus:CVCL_TC13 HAP1 PARP12 (-) 1 2 13420 -cellosaurus:CVCL_XR35 HAP1 PARP12 (-) 2 2 13421 -cellosaurus:CVCL_TC14 HAP1 PARP16 (-) 1 2 13422 -cellosaurus:CVCL_XR36 HAP1 PARP16 (-) 2 2 13423 -cellosaurus:CVCL_TC15 HAP1 PARP2 (-) 1 2 13424 -cellosaurus:CVCL_TC16 HAP1 PARP2 (-) 2 2 13425 -cellosaurus:CVCL_XR37 HAP1 PARP2 (-) 3 2 13426 -cellosaurus:CVCL_XR38 HAP1 PARP2 (-) 4 2 13427 -cellosaurus:CVCL_TC17 HAP1 PARP3 (-) 1 2 13428 -cellosaurus:CVCL_TC18 HAP1 PARP3 (-) 2 2 13429 -cellosaurus:CVCL_TC19 HAP1 PARP4 (-) 1 2 13430 -cellosaurus:CVCL_TC20 HAP1 PARP4 (-) 2 2 13431 -cellosaurus:CVCL_TC21 HAP1 PARP6 (-) 1 2 13432 -cellosaurus:CVCL_TC22 HAP1 PARP6 (-) 2 2 13433 -cellosaurus:CVCL_TC23 HAP1 PARP6 (-) 3 2 13434 -cellosaurus:CVCL_TC24 HAP1 PARP9 (-) 1 2 13435 -cellosaurus:CVCL_TC25 HAP1 PARP9 (-) 2 2 13436 -cellosaurus:CVCL_TC26 HAP1 PARPBP (-) 1 2 13437 -cellosaurus:CVCL_TC27 HAP1 PARPBP (-) 2 2 13438 -cellosaurus:CVCL_TC28 HAP1 PASK (-) 1 2 13439 -cellosaurus:CVCL_TC29 HAP1 PASK (-) 2 2 13440 -cellosaurus:CVCL_TC30 HAP1 PASK (-) 3 2 13441 -cellosaurus:CVCL_TC31 HAP1 PAX8 (-) 1 2 13442 -cellosaurus:CVCL_XR39 HAP1 PAX8 (-) 2 2 13443 -cellosaurus:CVCL_TC32 HAP1 PAXIP1 (-) 1 2 13444 -cellosaurus:CVCL_TC33 HAP1 PAXIP1 (-) 2 2 13445 -cellosaurus:CVCL_TC34 HAP1 PBK (-) 1 2 13446 -cellosaurus:CVCL_TC35 HAP1 PBK (-) 2 2 13447 -cellosaurus:CVCL_XR40 HAP1 PBK (-) 3 2 13448 -cellosaurus:CVCL_XR41 HAP1 PBK (-) 4 2 13449 -cellosaurus:CVCL_XR42 HAP1 PBK (-) 5 2 13450 -cellosaurus:CVCL_TC36 HAP1 PBRM1 (-) 1 2 13451 -cellosaurus:CVCL_TC37 HAP1 PBRM1 (-) 2 2 13452 -cellosaurus:CVCL_TC38 HAP1 PBRM1 (-) 3 2 13453 -cellosaurus:CVCL_TC39 HAP1 PC (-) 2 13454 -cellosaurus:CVCL_TC40 HAP1 PCCA (-) 1 2 13455 -cellosaurus:CVCL_XR43 HAP1 PCCA (-) 2 2 13456 -cellosaurus:CVCL_TC41 HAP1 PCDH1 (-) 1 2 13457 -cellosaurus:CVCL_TC42 HAP1 PCDH1 (-) 2 2 13458 -cellosaurus:CVCL_TC43 HAP1 PCDH1 (-) 3 2 13459 -cellosaurus:CVCL_TC44 HAP1 PCDH1 (-) 4 2 13460 -cellosaurus:CVCL_TC45 HAP1 PCDH7 (-) 1 2 13461 -cellosaurus:CVCL_TC46 HAP1 PCDH7 (-) 2 2 13462 -cellosaurus:CVCL_TC47 HAP1 PCDH9 (-) 1 2 13463 -cellosaurus:CVCL_TC48 HAP1 PCDH9 (-) 2 2 13464 -cellosaurus:CVCL_TC49 HAP1 PCDH9 (-) 3 2 13465 -cellosaurus:CVCL_TC50 HAP1 PCDHA1 (-) 1 2 13466 -cellosaurus:CVCL_TC51 HAP1 PCDHA1 (-) 2 2 13467 -cellosaurus:CVCL_TC52 HAP1 PCDHA3 (-) 2 13468 -cellosaurus:CVCL_TC53 HAP1 PCMT1 (-) 1 2 13469 -cellosaurus:CVCL_TC54 HAP1 PCMT1 (-) 2 2 13470 -cellosaurus:CVCL_TC55 HAP1 PCSK6 (-) 1 2 13471 -cellosaurus:CVCL_TC56 HAP1 PCSK6 (-) 2 2 13472 -cellosaurus:CVCL_TC57 HAP1 PCSK6 (-) 3 2 13473 -cellosaurus:CVCL_TC58 HAP1 PDCD10 (-) 1 2 13474 -cellosaurus:CVCL_XR44 HAP1 PDCD10 (-) 2 2 13475 -cellosaurus:CVCL_TC59 HAP1 PDCD1LG2 (-) 1 2 13476 -cellosaurus:CVCL_XR45 HAP1 PDCD1LG2 (-) 2 2 13477 -cellosaurus:CVCL_TC60 HAP1 PDCD4 (-) 1 2 13478 -cellosaurus:CVCL_TC61 HAP1 PDCD4 (-) 2 2 13479 -cellosaurus:CVCL_TC62 HAP1 PDCD5 (-) 1 2 13480 -cellosaurus:CVCL_XR46 HAP1 PDCD5 (-) 2 2 13481 -cellosaurus:CVCL_TC63 HAP1 PDE10A (-) 1 2 13482 -cellosaurus:CVCL_TC64 HAP1 PDE10A (-) 2 2 13483 -cellosaurus:CVCL_TC65 HAP1 PDE4A (-) 1 2 13484 -cellosaurus:CVCL_TC66 HAP1 PDE4A (-) 2 2 13485 -cellosaurus:CVCL_TC67 HAP1 PDE5A (-) 2 13486 -cellosaurus:CVCL_TC68 HAP1 PDE6D (-) 1 2 13487 -cellosaurus:CVCL_XR47 HAP1 PDE6D (-) 2 2 13488 -cellosaurus:CVCL_TC69 HAP1 PDE7A (-) 1 2 13489 -cellosaurus:CVCL_TC70 HAP1 PDE7A (-) 2 2 13490 -cellosaurus:CVCL_TC71 HAP1 PDE8A (-) 2 13491 -cellosaurus:CVCL_TC72 HAP1 PDGFRA (-) 2 13492 -cellosaurus:CVCL_TC73 HAP1 PDIA2 (-) 1 2 13493 -cellosaurus:CVCL_XR48 HAP1 PDIA2 (-) 2 2 13494 -cellosaurus:CVCL_TC74 HAP1 PDIA3 (-) 1 2 13495 -cellosaurus:CVCL_XR49 HAP1 PDIA3 (-) 2 2 13496 -cellosaurus:CVCL_TC75 HAP1 PDIK1L (-) 1 2 13497 -cellosaurus:CVCL_TC76 HAP1 PDIK1L (-) 2 2 13498 -cellosaurus:CVCL_TC77 HAP1 PDIK1L (-) 3 2 13499 -cellosaurus:CVCL_TC78 HAP1 PDK1 (-) 1 2 13500 -cellosaurus:CVCL_TC79 HAP1 PDK1 (-) 2 2 13501 -cellosaurus:CVCL_TC80 HAP1 PDK2 (-) 1 2 13502 -cellosaurus:CVCL_TC81 HAP1 PDK2 (-) 2 2 13503 -cellosaurus:CVCL_TC82 HAP1 PDK2 (-) 3 2 13504 -cellosaurus:CVCL_TC83 HAP1 PDK3 (-) 2 13505 -cellosaurus:CVCL_TC84 HAP1 PDP1 (-) 2 13506 -cellosaurus:CVCL_TC85 HAP1 PDP2 (-) 2 13507 -cellosaurus:CVCL_TC86 HAP1 PDPK1 (-) 2 13508 -cellosaurus:CVCL_TC87 HAP1 PDPN (-) 1 2 13509 -cellosaurus:CVCL_XR50 HAP1 PDPN (-) 2 2 13510 -cellosaurus:CVCL_TC88 HAP1 PDXK (-) 1 2 13511 -cellosaurus:CVCL_XR51 HAP1 PDXK (-) 2 2 13512 -cellosaurus:CVCL_TC89 HAP1 PEAK1 (-) 2 13513 -cellosaurus:CVCL_TC90 HAP1 PEG10 (-) 1 2 13514 -cellosaurus:CVCL_XR52 HAP1 PEG10 (-) 2 2 13515 -cellosaurus:CVCL_TC91 HAP1 PELO (-) 1 2 13516 -cellosaurus:CVCL_TC92 HAP1 PELO (-) 2 2 13517 -cellosaurus:CVCL_TC93 HAP1 PEX13 (-) 1 2 13518 -cellosaurus:CVCL_TC94 HAP1 PEX13 (-) 2 2 13519 -cellosaurus:CVCL_XR53 HAP1 PEX3 (-) 1 2 13520 -cellosaurus:CVCL_B5KM HAP1 PEX3 (-) 2 2 13521 -cellosaurus:CVCL_B5KN HAP1 PEX3 (-) 3 2 13522 -cellosaurus:CVCL_TC95 HAP1 PFKFB3 (-) 1 2 13523 -cellosaurus:CVCL_TC96 HAP1 PFKFB3 (-) 2 2 13524 -cellosaurus:CVCL_TC97 HAP1 PFN1 (-) 1 2 13525 -cellosaurus:CVCL_XR54 HAP1 PFN1 (-) 2 2 13526 -cellosaurus:CVCL_TC98 HAP1 PFN2 (-) 1 2 13527 -cellosaurus:CVCL_XR55 HAP1 PFN2 (-) 2 2 13528 -cellosaurus:CVCL_TC99 HAP1 PGAP3 (-) 2 13529 -cellosaurus:CVCL_TD00 HAP1 PGF (-) 1 2 13530 -cellosaurus:CVCL_TD01 HAP1 PGF (-) 2 2 13531 -cellosaurus:CVCL_TD02 HAP1 PGLS (-) 2 13532 -cellosaurus:CVCL_TD03 HAP1 PGP (-) 1 2 13533 -cellosaurus:CVCL_TD04 HAP1 PGP (-) 2 2 13534 -cellosaurus:CVCL_TD05 HAP1 PGP (-) 3 2 13535 -cellosaurus:CVCL_TD06 HAP1 PGP (-) 4 2 13536 -cellosaurus:CVCL_XR56 HAP1 PGR (-) 2 13537 -cellosaurus:CVCL_TD07 HAP1 PHF10 (-) 1 2 13538 -cellosaurus:CVCL_TD08 HAP1 PHF10 (-) 2 2 13539 -cellosaurus:CVCL_TD09 HAP1 PHF13 (-) 1 2 13540 -cellosaurus:CVCL_TD10 HAP1 PHF13 (-) 2 2 13541 -cellosaurus:CVCL_TD11 HAP1 PHF2 (-) 1 2 13542 -cellosaurus:CVCL_TD12 HAP1 PHF2 (-) 2 2 13543 -cellosaurus:CVCL_TD13 HAP1 PHF3 (-) 1 2 13544 -cellosaurus:CVCL_TD14 HAP1 PHF3 (-) 2 2 13545 -cellosaurus:CVCL_TD15 HAP1 PHF3 (-) 3 2 13546 -cellosaurus:CVCL_TD16 HAP1 PHF3 (-) 4 2 13547 -cellosaurus:CVCL_TD17 HAP1 PHF6 (-) 1 2 13548 -cellosaurus:CVCL_TD18 HAP1 PHF6 (-) 2 2 13549 -cellosaurus:CVCL_TD19 HAP1 PHF6 (-) 3 2 13550 -cellosaurus:CVCL_TD20 HAP1 PHF6 (-) 4 2 13551 -cellosaurus:CVCL_XR57 HAP1 PHF6 (-) 5 2 13552 -cellosaurus:CVCL_XR58 HAP1 PHF6 (-) 6 2 13553 -cellosaurus:CVCL_TD21 HAP1 PHF8 (-) 1 2 13554 -cellosaurus:CVCL_TD22 HAP1 PHF8 (-) 2 2 13555 -cellosaurus:CVCL_TD23 HAP1 PHGDH (-) 1 2 13556 -cellosaurus:CVCL_TD24 HAP1 PHGDH (-) 2 2 13557 -cellosaurus:CVCL_TD25 HAP1 PHIP (-) 1 2 13558 -cellosaurus:CVCL_TD26 HAP1 PHIP (-) 2 2 13559 -cellosaurus:CVCL_TD27 HAP1 PHKG1 (-) 1 2 13560 -cellosaurus:CVCL_TD28 HAP1 PHKG1 (-) 2 2 13561 -cellosaurus:CVCL_TD29 HAP1 PHKG1 (-) 3 2 13562 -cellosaurus:CVCL_TD30 HAP1 PHKG2 (-) 2 13563 -cellosaurus:CVCL_TD31 HAP1 PHLPP1 (-) 1 2 13564 -cellosaurus:CVCL_TD32 HAP1 PHLPP1 (-) 2 2 13565 -cellosaurus:CVCL_TD33 HAP1 PHLPP2 (-) 1 2 13566 -cellosaurus:CVCL_TD34 HAP1 PHLPP2 (-) 2 2 13567 -cellosaurus:CVCL_TD35 HAP1 PHLPP2 (-) 3 2 13568 -cellosaurus:CVCL_XR59 HAP1 PHRF1 (-) 2 13569 -cellosaurus:CVCL_TD36 HAP1 PI4K2A (-) 1 2 13570 -cellosaurus:CVCL_TD37 HAP1 PI4K2A (-) 2 2 13571 -cellosaurus:CVCL_TD38 HAP1 PI4K2B (-) 1 2 13572 -cellosaurus:CVCL_TD39 HAP1 PI4K2B (-) 2 2 13573 -cellosaurus:CVCL_TD40 HAP1 PI4KB (-) 1 2 13574 -cellosaurus:CVCL_TD41 HAP1 PI4KB (-) 2 2 13575 -cellosaurus:CVCL_TD42 HAP1 PIAS1 (-) 2 13576 -cellosaurus:CVCL_TD43 HAP1 PIAS2 (-) 1 2 13577 -cellosaurus:CVCL_TD44 HAP1 PIAS2 (-) 2 2 13578 -cellosaurus:CVCL_TD45 HAP1 PIEZO1 (-) 1 2 13579 -cellosaurus:CVCL_TD46 HAP1 PIEZO1 (-) 2 2 13580 -cellosaurus:CVCL_TD47 HAP1 PIF1 (-) 2 13581 -cellosaurus:CVCL_TD48 HAP1 PIGA (-) 1 2 13582 -cellosaurus:CVCL_TD49 HAP1 PIGA (-) 2 2 13583 -cellosaurus:CVCL_TD50 HAP1 PIGM (-) 1 2 13584 -cellosaurus:CVCL_TD51 HAP1 PIGM (-) 2 2 13585 -cellosaurus:CVCL_TD52 HAP1 PIGM (-) 3 2 13586 -cellosaurus:CVCL_TD53 HAP1 PIGT (-) 1 2 13587 -cellosaurus:CVCL_TD54 HAP1 PIGT (-) 2 2 13588 -cellosaurus:CVCL_TD55 HAP1 PIGT (-) 3 2 13589 -cellosaurus:CVCL_XR60 HAP1 PIH1D1 (-) 2 13590 -cellosaurus:CVCL_TD56 HAP1 PIK3C2A (-) 1 2 13591 -cellosaurus:CVCL_TD57 HAP1 PIK3C2A (-) 2 2 13592 -cellosaurus:CVCL_TD58 HAP1 PIK3C2B (-) 1 2 13593 -cellosaurus:CVCL_TD59 HAP1 PIK3C2B (-) 2 2 13594 -cellosaurus:CVCL_TD60 HAP1 PIK3CA (-) 1 2 13595 -cellosaurus:CVCL_TD61 HAP1 PIK3CA (-) 2 2 13596 -cellosaurus:CVCL_TD62 HAP1 PIK3CB (-) 2 13597 -cellosaurus:CVCL_TD63 HAP1 PIK3CD (-) 1 2 13598 -cellosaurus:CVCL_TD64 HAP1 PIK3CD (-) 2 2 13599 -cellosaurus:CVCL_TD65 HAP1 PIK3CD (-) 3 2 13600 -cellosaurus:CVCL_TD66 HAP1 PIK3R1 (-) 1 2 13601 -cellosaurus:CVCL_TD67 HAP1 PIK3R1 (-) 2 2 13602 -cellosaurus:CVCL_TD68 HAP1 PIK3R2 (-) 1 2 13603 -cellosaurus:CVCL_TD69 HAP1 PIK3R2 (-) 2 2 13604 -cellosaurus:CVCL_TD70 HAP1 PIK3R3 (-) 1 2 13605 -cellosaurus:CVCL_TD71 HAP1 PIK3R3 (-) 2 2 13606 -cellosaurus:CVCL_TD72 HAP1 PIK3R6 (-) 1 2 13607 -cellosaurus:CVCL_TD73 HAP1 PIK3R6 (-) 2 2 13608 -cellosaurus:CVCL_TD74 HAP1 PIKFYVE (-) 1 2 13609 -cellosaurus:CVCL_TD75 HAP1 PIKFYVE (-) 2 2 13610 -cellosaurus:CVCL_TD76 HAP1 PIM1 (-) 1 2 13611 -cellosaurus:CVCL_TD77 HAP1 PIM1 (-) 2 2 13612 -cellosaurus:CVCL_TD78 HAP1 PIM1 (-) 3 2 13613 -cellosaurus:CVCL_TD79 HAP1 PIM2 (-) 1 2 13614 -cellosaurus:CVCL_TD80 HAP1 PIM2 (-) 2 2 13615 -cellosaurus:CVCL_TD81 HAP1 PIM2 (-) 3 2 13616 -cellosaurus:CVCL_TD82 HAP1 PIM3 (-) 1 2 13617 -cellosaurus:CVCL_TD83 HAP1 PIM3 (-) 2 2 13618 -cellosaurus:CVCL_TD84 HAP1 PIM3 (-) 3 2 13619 -cellosaurus:CVCL_TD85 HAP1 PINK1 (-) 1 2 13620 -cellosaurus:CVCL_TD86 HAP1 PINK1 (-) 2 2 13621 -cellosaurus:CVCL_TD87 HAP1 PIP4K2A (-) 1 2 13622 -cellosaurus:CVCL_TD88 HAP1 PIP4K2A (-) 2 2 13623 -cellosaurus:CVCL_TD89 HAP1 PIP4K2B (-) 1 2 13624 -cellosaurus:CVCL_TD90 HAP1 PIP4K2B (-) 2 2 13625 -cellosaurus:CVCL_TD91 HAP1 PIP4K2C (-) 2 13626 -cellosaurus:CVCL_TD92 HAP1 PIP5K1A (-) 1 2 13627 -cellosaurus:CVCL_TD93 HAP1 PIP5K1A (-) 2 2 13628 -cellosaurus:CVCL_TD94 HAP1 PIP5K1C (-) 1 2 13629 -cellosaurus:CVCL_TD95 HAP1 PIP5K1C (-) 2 2 13630 -cellosaurus:CVCL_XR61 HAP1 PISD (-) 2 13631 -cellosaurus:CVCL_TD96 HAP1 PITPNB (-) 2 13632 -cellosaurus:CVCL_TD97 HAP1 PKD2 (-) 2 13633 -cellosaurus:CVCL_TD98 HAP1 PKDCC (-) 1 2 13634 -cellosaurus:CVCL_TD99 HAP1 PKDCC (-) 2 2 13635 -cellosaurus:CVCL_TE00 HAP1 PKN1 (-) 1 2 13636 -cellosaurus:CVCL_TE01 HAP1 PKN1 (-) 2 2 13637 -cellosaurus:CVCL_TE02 HAP1 PKN2 (-) 2 13638 -cellosaurus:CVCL_TE03 HAP1 PKN3 (-) 1 2 13639 -cellosaurus:CVCL_TE04 HAP1 PKN3 (-) 2 2 13640 -cellosaurus:CVCL_TE05 HAP1 PLA2G12A (-) 1 2 13641 -cellosaurus:CVCL_TE06 HAP1 PLA2G12A (-) 2 2 13642 -cellosaurus:CVCL_TE07 HAP1 PLA2G15 (-) 1 2 13643 -cellosaurus:CVCL_TE08 HAP1 PLA2G15 (-) 2 2 13644 -cellosaurus:CVCL_TE09 HAP1 PLA2G4A (-) 1 2 13645 -cellosaurus:CVCL_TE10 HAP1 PLA2G4A (-) 2 2 13646 -cellosaurus:CVCL_TE11 HAP1 PLA2G4A (-) 3 2 13647 -cellosaurus:CVCL_TE12 HAP1 PLA2G4B (-) 1 2 13648 -cellosaurus:CVCL_TE13 HAP1 PLA2G4B (-) 2 2 13649 -cellosaurus:CVCL_TE14 HAP1 PLA2G6 (-) 1 2 13650 -cellosaurus:CVCL_TE15 HAP1 PLA2G6 (-) 2 2 13651 -cellosaurus:CVCL_TE16 HAP1 PLAU (-) 1 2 13652 -cellosaurus:CVCL_TE17 HAP1 PLAU (-) 2 2 13653 -cellosaurus:CVCL_TE18 HAP1 PLAUR (-) 1 2 13654 -cellosaurus:CVCL_TE19 HAP1 PLAUR (-) 2 2 13655 -cellosaurus:CVCL_TE20 HAP1 PLCB1 (-) 1 2 13656 -cellosaurus:CVCL_TE21 HAP1 PLCB1 (-) 2 2 13657 -cellosaurus:CVCL_TE22 HAP1 PLCB3 (-) 1 2 13658 -cellosaurus:CVCL_TE23 HAP1 PLCB3 (-) 2 2 13659 -cellosaurus:CVCL_TE24 HAP1 PLCB4 (-) 1 2 13660 -cellosaurus:CVCL_TE25 HAP1 PLCB4 (-) 2 2 13661 -cellosaurus:CVCL_TE26 HAP1 PLCD1 (-) 1 2 13662 -cellosaurus:CVCL_TE27 HAP1 PLCD1 (-) 2 2 13663 -cellosaurus:CVCL_TE28 HAP1 PLCD3 (-) 1 2 13664 -cellosaurus:CVCL_TE29 HAP1 PLCD3 (-) 2 2 13665 -cellosaurus:CVCL_TE30 HAP1 PLCD3 (-) 3 2 13666 -cellosaurus:CVCL_TE31 HAP1 PLCD4 (-) 1 2 13667 -cellosaurus:CVCL_TE32 HAP1 PLCD4 (-) 2 2 13668 -cellosaurus:CVCL_TE33 HAP1 PLCE1 (-) 1 2 13669 -cellosaurus:CVCL_TE34 HAP1 PLCE1 (-) 2 2 13670 -cellosaurus:CVCL_TE35 HAP1 PLCE1 (-) 3 2 13671 -cellosaurus:CVCL_TE36 HAP1 PLCG1 (-) 1 2 13672 -cellosaurus:CVCL_TE37 HAP1 PLCG1 (-) 2 2 13673 -cellosaurus:CVCL_TE38 HAP1 PLCG2 (-) 1 2 13674 -cellosaurus:CVCL_TE39 HAP1 PLCG2 (-) 2 2 13675 -cellosaurus:CVCL_TE40 HAP1 PLCH1 (-) 1 2 13676 -cellosaurus:CVCL_TE41 HAP1 PLCH1 (-) 2 2 13677 -cellosaurus:CVCL_TE42 HAP1 PLD1 (-) 1 2 13678 -cellosaurus:CVCL_TE43 HAP1 PLD1 (-) 2 2 13679 -cellosaurus:CVCL_TE44 HAP1 PLD2 (-) 1 2 13680 -cellosaurus:CVCL_TE45 HAP1 PLD2 (-) 2 2 13681 -cellosaurus:CVCL_TE46 HAP1 PLD2 (-) 3 2 13682 -cellosaurus:CVCL_TE47 HAP1 PLD3 (-) 1 2 13683 -cellosaurus:CVCL_TE48 HAP1 PLD3 (-) 2 2 13684 -cellosaurus:CVCL_TE49 HAP1 PLD5 (-) 1 2 13685 -cellosaurus:CVCL_TE50 HAP1 PLD5 (-) 2 2 13686 -cellosaurus:CVCL_TE51 HAP1 PLD6 (-) 2 13687 -cellosaurus:CVCL_TE52 HAP1 PLEKHA1 (-) 1 2 13688 -cellosaurus:CVCL_TE53 HAP1 PLEKHA1 (-) 2 2 13689 -cellosaurus:CVCL_TE54 HAP1 PLEKHM2 (-) 1 2 13690 -cellosaurus:CVCL_TE55 HAP1 PLEKHM2 (-) 2 2 13691 -cellosaurus:CVCL_TE56 HAP1 PLGRKT (-) 1 2 13692 -cellosaurus:CVCL_TE57 HAP1 PLGRKT (-) 2 2 13693 -cellosaurus:CVCL_TE58 HAP1 PLIN2 (-) 1 2 13694 -cellosaurus:CVCL_XR62 HAP1 PLIN2 (-) 2 2 13695 -cellosaurus:CVCL_TE59 HAP1 PLIN3 (-) 1 2 13696 -cellosaurus:CVCL_TE60 HAP1 PLIN3 (-) 2 2 13697 -cellosaurus:CVCL_TE61 HAP1 PLIN3 (-) 3 2 13698 -cellosaurus:CVCL_TE62 HAP1 PLK2 (-) 2 13699 -cellosaurus:CVCL_TE63 HAP1 PLK2 (-) 1 2 13700 -cellosaurus:CVCL_TE64 HAP1 PLK2 (-) 2 2 13701 -cellosaurus:CVCL_TE65 HAP1 PLK2 (-) 3 2 13702 -cellosaurus:CVCL_TE66 HAP1 PLK2 (-) 4 2 13703 -cellosaurus:CVCL_TE67 HAP1 PLK3 (-) 1 2 13704 -cellosaurus:CVCL_TE68 HAP1 PLK3 (-) 2 2 13705 -cellosaurus:CVCL_XR63 HAP1 PLOD1 (-) 2 13706 -cellosaurus:CVCL_TE69 HAP1 PLOD2 (-) 1 2 13707 -cellosaurus:CVCL_XR64 HAP1 PLOD2 (-) 2 2 13708 -cellosaurus:CVCL_TE70 HAP1 PLP2 (-) 1 2 13709 -cellosaurus:CVCL_TE71 HAP1 PLP2 (-) 2 2 13710 -cellosaurus:CVCL_TE72 HAP1 PMAIP1 (-) 1 2 13711 -cellosaurus:CVCL_XR65 HAP1 PMAIP1 (-) 2 2 13712 -cellosaurus:CVCL_TE73 HAP1 PML (-) 1 2 13713 -cellosaurus:CVCL_XR66 HAP1 PML (-) 2 2 13714 -cellosaurus:CVCL_XR67 HAP1 PML (-) 3 2 13715 -cellosaurus:CVCL_XR68 HAP1 PMS1 (-) 1 2 13716 -cellosaurus:CVCL_B5KP HAP1 PMS1 (-) 2 2 13717 -cellosaurus:CVCL_TE74 HAP1 PMS2 (-) 2 13718 -cellosaurus:CVCL_TE75 HAP1 PNCK (-) 1 2 13719 -cellosaurus:CVCL_TE76 HAP1 PNCK (-) 2 2 13720 -cellosaurus:CVCL_TE77 HAP1 PNP (-) 1 2 13721 -cellosaurus:CVCL_TE78 HAP1 PNP (-) 2 2 13722 -cellosaurus:CVCL_TE79 HAP1 PNPLA2 (-) 1 2 13723 -cellosaurus:CVCL_XR69 HAP1 PNPLA2 (-) 2 2 13724 -cellosaurus:CVCL_TE80 HAP1 PODXL (-) 1 2 13725 -cellosaurus:CVCL_XR70 HAP1 PODXL (-) 2 2 13726 -cellosaurus:CVCL_XR71 HAP1 PODXL (-) 3 2 13727 -cellosaurus:CVCL_XR72 HAP1 PODXL (-) 4 2 13728 -cellosaurus:CVCL_TE81 HAP1 POGK (-) 1 2 13729 -cellosaurus:CVCL_TE82 HAP1 POGK (-) 2 2 13730 -cellosaurus:CVCL_TE83 HAP1 POGK (-) 3 2 13731 -cellosaurus:CVCL_TE84 HAP1 POGK (-) 4 2 13732 -cellosaurus:CVCL_TE85 HAP1 POGZ (-) 1 2 13733 -cellosaurus:CVCL_TE86 HAP1 POGZ (-) 2 2 13734 -cellosaurus:CVCL_TE87 HAP1 POGZ (-) 3 2 13735 -cellosaurus:CVCL_TE88 HAP1 POLB (-) 1 2 13736 -cellosaurus:CVCL_TE89 HAP1 POLB (-) 2 2 13737 -cellosaurus:CVCL_TE90 HAP1 POLDIP2 (-) 1 2 13738 -cellosaurus:CVCL_TE91 HAP1 POLDIP2 (-) 2 2 13739 -cellosaurus:CVCL_TE92 HAP1 POLE (-) 1 2 13740 -cellosaurus:CVCL_TE93 HAP1 POLE (-) 2 2 13741 -cellosaurus:CVCL_TE94 HAP1 POLE (-) 3 2 13742 -cellosaurus:CVCL_TE95 HAP1 POLE4 (-) 2 13743 -cellosaurus:CVCL_TE96 HAP1 POLH (-) 1 2 13744 -cellosaurus:CVCL_TE97 HAP1 POLH (-) 2 2 13745 -cellosaurus:CVCL_TE98 HAP1 POLI (-) 1 2 13746 -cellosaurus:CVCL_TE99 HAP1 POLI (-) 2 2 13747 -cellosaurus:CVCL_TF00 HAP1 POLK (-) 1 2 13748 -cellosaurus:CVCL_TF01 HAP1 POLK (-) 2 2 13749 -cellosaurus:CVCL_TF02 HAP1 POLK (-) 3 2 13750 -cellosaurus:CVCL_TF03 HAP1 POLL (-) 1 2 13751 -cellosaurus:CVCL_TF04 HAP1 POLL (-) 2 2 13752 -cellosaurus:CVCL_TF05 HAP1 POLL (-) 3 2 13753 -cellosaurus:CVCL_TF06 HAP1 POLM (-) 1 2 13754 -cellosaurus:CVCL_TF07 HAP1 POLM (-) 2 2 13755 -cellosaurus:CVCL_TF08 HAP1 POLM (-) 3 2 13756 -cellosaurus:CVCL_TF09 HAP1 POLN (-) 1 2 13757 -cellosaurus:CVCL_TF10 HAP1 POLN (-) 2 2 13758 -cellosaurus:CVCL_TF11 HAP1 POLN (-) 3 2 13759 -cellosaurus:CVCL_TF12 HAP1 POLQ (-) 1 2 13760 -cellosaurus:CVCL_TF13 HAP1 POLQ (-) 2 2 13761 -cellosaurus:CVCL_TF14 HAP1 POMGNT1 (-) 1 2 13762 -cellosaurus:CVCL_TF15 HAP1 POMGNT1 (-) 2 2 13763 -cellosaurus:CVCL_TF16 HAP1 POMGNT2 (-) 1 2 13764 -cellosaurus:CVCL_TF17 HAP1 POMGNT2 (-) 2 2 13765 -cellosaurus:CVCL_TF18 HAP1 POMK (-) 1 2 13766 -cellosaurus:CVCL_TF19 HAP1 POMK (-) 2 2 13767 -cellosaurus:CVCL_A1CH HAP1 POMK/LARGE1 (-) 3 13768 -cellosaurus:CVCL_TF20 HAP1 POMT1 (-) 1 2 13769 -cellosaurus:CVCL_TF21 HAP1 POMT1 (-) 2 2 13770 -cellosaurus:CVCL_TF22 HAP1 POMT2 (-) 1 2 13771 -cellosaurus:CVCL_TF23 HAP1 POMT2 (-) 2 2 13772 -cellosaurus:CVCL_XR73 HAP1 POR (-) 2 13773 -cellosaurus:CVCL_TF24 HAP1 POT1 (-) 1 2 13774 -cellosaurus:CVCL_XR74 HAP1 POT1 (-) 2 2 13775 -cellosaurus:CVCL_TF25 HAP1 PPARA (-) 2 13776 -cellosaurus:CVCL_TF26 HAP1 PPARD (-) 1 2 13777 -cellosaurus:CVCL_TF27 HAP1 PPARD (-) 2 2 13778 -cellosaurus:CVCL_XR75 HAP1 PPARG (-) 2 13779 -cellosaurus:CVCL_XR76 HAP1 PPARGC1A (-) 1 2 13780 -cellosaurus:CVCL_B5KQ HAP1 PPARGC1A (-) 2 2 13781 -cellosaurus:CVCL_B5KR HAP1 PPARGC1A (-) 3 2 13782 -cellosaurus:CVCL_B5KS HAP1 PPARGC1A (-) 4 2 13783 -cellosaurus:CVCL_TF28 HAP1 PPEF1 (-) 2 13784 -cellosaurus:CVCL_TF29 HAP1 PPIB (-) 1 2 13785 -cellosaurus:CVCL_XR77 HAP1 PPIB (-) 2 2 13786 -cellosaurus:CVCL_XR78 HAP1 PPIB (-) 3 2 13787 -cellosaurus:CVCL_TF30 HAP1 PPIF (-) 1 2 13788 -cellosaurus:CVCL_TF31 HAP1 PPIF (-) 2 2 13789 -cellosaurus:CVCL_TF32 HAP1 PPIL1 (-) 1 2 13790 -cellosaurus:CVCL_XR79 HAP1 PPIL1 (-) 2 2 13791 -cellosaurus:CVCL_TF33 HAP1 PPM1A (-) 1 2 13792 -cellosaurus:CVCL_TF34 HAP1 PPM1A (-) 2 2 13793 -cellosaurus:CVCL_TF35 HAP1 PPM1B (-) 2 13794 -cellosaurus:CVCL_TF36 HAP1 PPM1D (-) 2 13795 -cellosaurus:CVCL_TF37 HAP1 PPM1E (-) 1 2 13796 -cellosaurus:CVCL_TF38 HAP1 PPM1E (-) 2 2 13797 -cellosaurus:CVCL_TF39 HAP1 PPM1E (-) 3 2 13798 -cellosaurus:CVCL_TF40 HAP1 PPM1F (-) 1 2 13799 -cellosaurus:CVCL_TF41 HAP1 PPM1F (-) 2 2 13800 -cellosaurus:CVCL_TF42 HAP1 PPM1G (-) 2 13801 -cellosaurus:CVCL_TF43 HAP1 PPM1H (-) 2 13802 -cellosaurus:CVCL_TF44 HAP1 PPM1J (-) 1 2 13803 -cellosaurus:CVCL_TF45 HAP1 PPM1J (-) 2 2 13804 -cellosaurus:CVCL_TF46 HAP1 PPM1K (-) 1 2 13805 -cellosaurus:CVCL_TF47 HAP1 PPM1K (-) 2 2 13806 -cellosaurus:CVCL_TF48 HAP1 PPM1L (-) 1 2 13807 -cellosaurus:CVCL_TF49 HAP1 PPM1L (-) 2 2 13808 -cellosaurus:CVCL_TF50 HAP1 PPM1M (-) 2 13809 -cellosaurus:CVCL_TF51 HAP1 PPM1N (-) 1 2 13810 -cellosaurus:CVCL_TF52 HAP1 PPM1N (-) 2 2 13811 -cellosaurus:CVCL_TF53 HAP1 PPOX (-) 2 13812 -cellosaurus:CVCL_TF54 HAP1 PPP1CA (-) 1 2 13813 -cellosaurus:CVCL_TF55 HAP1 PPP1CA (-) 2 2 13814 -cellosaurus:CVCL_TF56 HAP1 PPP1R12C (-) 1 2 13815 -cellosaurus:CVCL_TF57 HAP1 PPP1R12C (-) 2 2 13816 -cellosaurus:CVCL_TF58 HAP1 PPP1R12C (-) 3 2 13817 -cellosaurus:CVCL_TF59 HAP1 PPP1R12C (-) 4 2 13818 -cellosaurus:CVCL_TF60 HAP1 PPP1R13B (-) 1 2 13819 -cellosaurus:CVCL_TF61 HAP1 PPP1R13B (-) 2 2 13820 -cellosaurus:CVCL_TF62 HAP1 PPP1R14A (-) 2 13821 -cellosaurus:CVCL_TF63 HAP1 PPP1R14B (-) 2 13822 -cellosaurus:CVCL_TF64 HAP1 PPP1R14C (-) 2 13823 -cellosaurus:CVCL_TF65 HAP1 PPP1R15A (-) 2 13824 -cellosaurus:CVCL_TF66 HAP1 PPP1R16A (-) 2 13825 -cellosaurus:CVCL_TF67 HAP1 PPP1R16B (-) 2 13826 -cellosaurus:CVCL_TF68 HAP1 PPP1R18 (-) 1 2 13827 -cellosaurus:CVCL_TF69 HAP1 PPP1R18 (-) 2 2 13828 -cellosaurus:CVCL_TF70 HAP1 PPP1R1A (-) 1 2 13829 -cellosaurus:CVCL_TF71 HAP1 PPP1R1A (-) 2 2 13830 -cellosaurus:CVCL_TF72 HAP1 PPP1R1A (-) 3 2 13831 -cellosaurus:CVCL_TF73 HAP1 PPP1R1A (-) 4 2 13832 -cellosaurus:CVCL_TF74 HAP1 PPP1R21 (-) 1 2 13833 -cellosaurus:CVCL_TF75 HAP1 PPP1R21 (-) 2 2 13834 -cellosaurus:CVCL_TF76 HAP1 PPP1R26 (-) 2 13835 -cellosaurus:CVCL_TF77 HAP1 PPP1R32 (-) 2 13836 -cellosaurus:CVCL_TF78 HAP1 PPP1R37 (-) 1 2 13837 -cellosaurus:CVCL_TF79 HAP1 PPP1R37 (-) 2 2 13838 -cellosaurus:CVCL_TF80 HAP1 PPP1R3B (-) 1 2 13839 -cellosaurus:CVCL_TF81 HAP1 PPP1R3B (-) 2 2 13840 -cellosaurus:CVCL_TF82 HAP1 PPP1R3D (-) 1 2 13841 -cellosaurus:CVCL_TF83 HAP1 PPP1R3D (-) 2 2 13842 -cellosaurus:CVCL_TF84 HAP1 PPP1R3F (-) 1 2 13843 -cellosaurus:CVCL_TF85 HAP1 PPP1R3F (-) 2 2 13844 -cellosaurus:CVCL_TF86 HAP1 PPP1R9A (-) 1 2 13845 -cellosaurus:CVCL_TF87 HAP1 PPP1R9A (-) 2 2 13846 -cellosaurus:CVCL_TF88 HAP1 PPP1R9B (-) 1 2 13847 -cellosaurus:CVCL_TF89 HAP1 PPP1R9B (-) 2 2 13848 -cellosaurus:CVCL_TF90 HAP1 PPP2CB (-) 1 2 13849 -cellosaurus:CVCL_TF91 HAP1 PPP2CB (-) 2 2 13850 -cellosaurus:CVCL_TF92 HAP1 PPP2CB (-) 3 2 13851 -cellosaurus:CVCL_TF93 HAP1 PPP2R1B (-) 1 2 13852 -cellosaurus:CVCL_TF94 HAP1 PPP2R1B (-) 2 2 13853 -cellosaurus:CVCL_TF95 HAP1 PPP2R2B (-) 1 2 13854 -cellosaurus:CVCL_TF96 HAP1 PPP2R2B (-) 2 2 13855 -cellosaurus:CVCL_TF97 HAP1 PPP2R2C (-) 2 13856 -cellosaurus:CVCL_TF98 HAP1 PPP2R2D (-) 1 2 13857 -cellosaurus:CVCL_TF99 HAP1 PPP2R2D (-) 2 2 13858 -cellosaurus:CVCL_TG00 HAP1 PPP2R2D (-) 3 2 13859 -cellosaurus:CVCL_TG01 HAP1 PPP2R3A (-) 1 2 13860 -cellosaurus:CVCL_TG02 HAP1 PPP2R3A (-) 2 2 13861 -cellosaurus:CVCL_TG03 HAP1 PPP2R4 (-) 1 2 13862 -cellosaurus:CVCL_TG04 HAP1 PPP2R4 (-) 2 2 13863 -cellosaurus:CVCL_TG05 HAP1 PPP2R5A (-) 1 2 13864 -cellosaurus:CVCL_TG06 HAP1 PPP2R5A (-) 2 2 13865 -cellosaurus:CVCL_TG07 HAP1 PPP2R5B (-) 1 2 13866 -cellosaurus:CVCL_TG08 HAP1 PPP2R5B (-) 2 2 13867 -cellosaurus:CVCL_TG09 HAP1 PPP2R5C (-) 1 2 13868 -cellosaurus:CVCL_TG10 HAP1 PPP2R5C (-) 2 2 13869 -cellosaurus:CVCL_TG11 HAP1 PPP2R5D (-) 2 13870 -cellosaurus:CVCL_TG12 HAP1 PPP2R5E (-) 1 2 13871 -cellosaurus:CVCL_TG13 HAP1 PPP2R5E (-) 2 2 13872 -cellosaurus:CVCL_TG14 HAP1 PPP3CA (-) 1 2 13873 -cellosaurus:CVCL_TG15 HAP1 PPP3CA (-) 2 2 13874 -cellosaurus:CVCL_TG16 HAP1 PPP3CB (-) 1 2 13875 -cellosaurus:CVCL_TG17 HAP1 PPP3CB (-) 2 2 13876 -cellosaurus:CVCL_TG18 HAP1 PPP3CC (-) 1 2 13877 -cellosaurus:CVCL_TG19 HAP1 PPP3CC (-) 2 2 13878 -cellosaurus:CVCL_TG20 HAP1 PPP3R1 (-) 1 2 13879 -cellosaurus:CVCL_TG21 HAP1 PPP3R1 (-) 2 2 13880 -cellosaurus:CVCL_TG22 HAP1 PPP4R1 (-) 1 2 13881 -cellosaurus:CVCL_TG23 HAP1 PPP4R1 (-) 2 2 13882 -cellosaurus:CVCL_TG24 HAP1 PPP4R2 (-) 1 2 13883 -cellosaurus:CVCL_TG25 HAP1 PPP4R2 (-) 2 2 13884 -cellosaurus:CVCL_TG26 HAP1 PPP4R4 (-) 1 2 13885 -cellosaurus:CVCL_TG27 HAP1 PPP4R4 (-) 2 2 13886 -cellosaurus:CVCL_TG28 HAP1 PPP5C (-) 1 2 13887 -cellosaurus:CVCL_TG29 HAP1 PPP5C (-) 2 2 13888 -cellosaurus:CVCL_TG30 HAP1 PPP6R1 (-) 1 2 13889 -cellosaurus:CVCL_TG31 HAP1 PPP6R1 (-) 2 2 13890 -cellosaurus:CVCL_TG32 HAP1 PPP6R2 (-) 1 2 13891 -cellosaurus:CVCL_TG33 HAP1 PPP6R2 (-) 2 2 13892 -cellosaurus:CVCL_TG34 HAP1 PPTC7 (-) 2 13893 -cellosaurus:CVCL_TG35 HAP1 PQLC1 (-) 1 2 13894 -cellosaurus:CVCL_XR80 HAP1 PQLC1 (-) 2 2 13895 -cellosaurus:CVCL_TG36 HAP1 PQLC2 (-) 1 2 13896 -cellosaurus:CVCL_XR81 HAP1 PQLC2 (-) 2 2 13897 -cellosaurus:CVCL_TG37 HAP1 PRDX1 (-) 1 2 13898 -cellosaurus:CVCL_TG38 HAP1 PRDX1 (-) 2 2 13899 -cellosaurus:CVCL_TG39 HAP1 PRDX1 (-) 3 2 13900 -cellosaurus:CVCL_TG40 HAP1 PRDX1 (-) 4 2 13901 -cellosaurus:CVCL_TG41 HAP1 PRDX1 (-) 5 2 13902 -cellosaurus:CVCL_TG42 HAP1 PRDX1 (-) 6 2 13903 -cellosaurus:CVCL_TG43 HAP1 PRDX1 (-) 7 2 13904 -cellosaurus:CVCL_TG44 HAP1 PRDX2 (-) 1 2 13905 -cellosaurus:CVCL_TG45 HAP1 PRDX2 (-) 2 2 13906 -cellosaurus:CVCL_TG46 HAP1 PRDX2 (-) 3 2 13907 -cellosaurus:CVCL_TG47 HAP1 PRDX2 (-) 4 2 13908 -cellosaurus:CVCL_TG48 HAP1 PRDX3 (-) 1 2 13909 -cellosaurus:CVCL_TG49 HAP1 PRDX3 (-) 2 2 13910 -cellosaurus:CVCL_TG50 HAP1 PRDX3 (-) 3 2 13911 -cellosaurus:CVCL_TG51 HAP1 PRDX3 (-) 4 2 13912 -cellosaurus:CVCL_TG52 HAP1 PRDX3 (-) 5 2 13913 -cellosaurus:CVCL_TG53 HAP1 PRDX5 (-) 1 2 13914 -cellosaurus:CVCL_TG54 HAP1 PRDX5 (-) 2 2 13915 -cellosaurus:CVCL_TG55 HAP1 PRDX6 (-) 1 2 13916 -cellosaurus:CVCL_XR82 HAP1 PRDX6 (-) 2 2 13917 -cellosaurus:CVCL_TG56 HAP1 PREP (-) 1 2 13918 -cellosaurus:CVCL_XR83 HAP1 PREP (-) 2 2 13919 -cellosaurus:CVCL_XR84 HAP1 PREP (-) 3 2 13920 -cellosaurus:CVCL_XR85 HAP1 PREP (-) 4 2 13921 -cellosaurus:CVCL_XR86 HAP1 PREP (-) 5 2 13922 -cellosaurus:CVCL_TG57 HAP1 PREPL (-) 1 2 13923 -cellosaurus:CVCL_XR87 HAP1 PREPL (-) 2 2 13924 -cellosaurus:CVCL_XR88 HAP1 PREPL (-) 3 2 13925 -cellosaurus:CVCL_TG58 HAP1 PRIMPOL (-) 1 2 13926 -cellosaurus:CVCL_TG59 HAP1 PRIMPOL (-) 2 2 13927 -cellosaurus:CVCL_TG60 HAP1 PRKAA1 (-) 1 2 13928 -cellosaurus:CVCL_TG61 HAP1 PRKAA1 (-) 2 2 13929 -cellosaurus:CVCL_TG62 HAP1 PRKAA2 (-) 1 2 13930 -cellosaurus:CVCL_TG63 HAP1 PRKAA2 (-) 2 2 13931 -cellosaurus:CVCL_TG64 HAP1 PRKAB1 (-) 1 2 13932 -cellosaurus:CVCL_TG65 HAP1 PRKAB1 (-) 2 2 13933 -cellosaurus:CVCL_TG66 HAP1 PRKAB1 (-) 3 2 13934 -cellosaurus:CVCL_TG67 HAP1 PRKAB1 (-) 4 2 13935 -cellosaurus:CVCL_TG68 HAP1 PRKAB2 (-) 1 2 13936 -cellosaurus:CVCL_TG69 HAP1 PRKAB2 (-) 2 2 13937 -cellosaurus:CVCL_TG70 HAP1 PRKACA (-) 1 2 13938 -cellosaurus:CVCL_TG71 HAP1 PRKACA (-) 2 2 13939 -cellosaurus:CVCL_TG72 HAP1 PRKACB (-) 1 2 13940 -cellosaurus:CVCL_TG73 HAP1 PRKACB (-) 2 2 13941 -cellosaurus:CVCL_TG74 HAP1 PRKAG1 (-) 1 2 13942 -cellosaurus:CVCL_TG75 HAP1 PRKAG1 (-) 2 2 13943 -cellosaurus:CVCL_TG76 HAP1 PRKAG1 (-) 3 2 13944 -cellosaurus:CVCL_TG77 HAP1 PRKAG1 (-) 4 2 13945 -cellosaurus:CVCL_TG78 HAP1 PRKAG2 (-) 1 2 13946 -cellosaurus:CVCL_TG79 HAP1 PRKAG2 (-) 2 2 13947 -cellosaurus:CVCL_TG80 HAP1 PRKCA (-) 1 2 13948 -cellosaurus:CVCL_TG81 HAP1 PRKCA (-) 2 2 13949 -cellosaurus:CVCL_TG82 HAP1 PRKCD (-) 1 2 13950 -cellosaurus:CVCL_TG83 HAP1 PRKCD (-) 2 2 13951 -cellosaurus:CVCL_TG84 HAP1 PRKCE (-) 1 2 13952 -cellosaurus:CVCL_TG85 HAP1 PRKCE (-) 2 2 13953 -cellosaurus:CVCL_TG86 HAP1 PRKCE (-) 3 2 13954 -cellosaurus:CVCL_TG87 HAP1 PRKCG (-) 1 2 13955 -cellosaurus:CVCL_TG88 HAP1 PRKCG (-) 2 2 13956 -cellosaurus:CVCL_TG89 HAP1 PRKCG (-) 3 2 13957 -cellosaurus:CVCL_TG90 HAP1 PRKCI (-) 1 2 13958 -cellosaurus:CVCL_TG91 HAP1 PRKCI (-) 2 2 13959 -cellosaurus:CVCL_TG92 HAP1 PRKCQ (-) 2 13960 -cellosaurus:CVCL_TG93 HAP1 PRKCZ (-) 1 2 13961 -cellosaurus:CVCL_TG94 HAP1 PRKCZ (-) 2 2 13962 -cellosaurus:CVCL_TG95 HAP1 PRKCZ (-) 3 2 13963 -cellosaurus:CVCL_TG96 HAP1 PRKD1 (-) 1 2 13964 -cellosaurus:CVCL_TG97 HAP1 PRKD1 (-) 2 2 13965 -cellosaurus:CVCL_TG98 HAP1 PRKD2 (-) 1 2 13966 -cellosaurus:CVCL_TG99 HAP1 PRKD2 (-) 2 2 13967 -cellosaurus:CVCL_TH00 HAP1 PRKD3 (-) 2 13968 -cellosaurus:CVCL_TH01 HAP1 PRKDC (-) 1 2 13969 -cellosaurus:CVCL_TH02 HAP1 PRKDC (-) 2 2 13970 -cellosaurus:CVCL_TH03 HAP1 PRKG2 (-) 1 2 13971 -cellosaurus:CVCL_TH04 HAP1 PRKG2 (-) 2 2 13972 -cellosaurus:CVCL_TH05 HAP1 PRKRA (-) 1 2 13973 -cellosaurus:CVCL_TH06 HAP1 PRKRA (-) 2 2 13974 -cellosaurus:CVCL_TH07 HAP1 PRKRA (-) 3 2 13975 -cellosaurus:CVCL_TH08 HAP1 PRKX (-) 1 2 13976 -cellosaurus:CVCL_TH09 HAP1 PRKX (-) 2 2 13977 -cellosaurus:CVCL_TH10 HAP1 PRLR (-) 1 2 13978 -cellosaurus:CVCL_TH11 HAP1 PRLR (-) 2 2 13979 -cellosaurus:CVCL_TH12 HAP1 PRMT3 (-) 1 2 13980 -cellosaurus:CVCL_TH13 HAP1 PRMT3 (-) 2 2 13981 -cellosaurus:CVCL_TH14 HAP1 PRMT6 (-) 1 2 13982 -cellosaurus:CVCL_XR89 HAP1 PRMT6 (-) 2 2 13983 -cellosaurus:CVCL_TH15 HAP1 PRNP (-) 1 2 13984 -cellosaurus:CVCL_TH16 HAP1 PRNP (-) 2 2 13985 -cellosaurus:CVCL_TH17 HAP1 PROCR (-) 2 13986 -cellosaurus:CVCL_TH18 HAP1 PRODH (-) 1 2 13987 -cellosaurus:CVCL_XR90 HAP1 PRODH (-) 2 2 13988 -cellosaurus:CVCL_XR91 HAP1 PRODH (-) 3 2 13989 -cellosaurus:CVCL_XR92 HAP1 PROM1 (-) 2 13990 -cellosaurus:CVCL_TH19 HAP1 PROS1 (-) 1 2 13991 -cellosaurus:CVCL_TH20 HAP1 PROS1 (-) 2 2 13992 -cellosaurus:CVCL_TH21 HAP1 PRPF39 (-) 2 13993 -cellosaurus:CVCL_TH22 HAP1 PRPF40B (-) 1 2 13994 -cellosaurus:CVCL_XR93 HAP1 PRPF40B (-) 2 2 13995 -cellosaurus:CVCL_TH23 HAP1 PRPS1 (-) 1 2 13996 -cellosaurus:CVCL_TH24 HAP1 PRPS1 (-) 2 2 13997 -cellosaurus:CVCL_TH25 HAP1 PSAT1 (-) 1 2 13998 -cellosaurus:CVCL_XR94 HAP1 PSAT1 (-) 2 2 13999 -cellosaurus:CVCL_XR95 HAP1 PSAT1 (-) 3 2 14000 -cellosaurus:CVCL_XR96 HAP1 PSAT1 (-) 4 2 14001 -cellosaurus:CVCL_TH26 HAP1 PSEN1 (-) 1 2 14002 -cellosaurus:CVCL_XR97 HAP1 PSEN1 (-) 2 2 14003 -cellosaurus:CVCL_XR98 HAP1 PSEN1 (-) 3 2 14004 -cellosaurus:CVCL_XR99 HAP1 PSEN1 (-) 4 2 14005 -cellosaurus:CVCL_XS00 HAP1 PSENEN (-) 2 14006 -cellosaurus:CVCL_TH27 HAP1 PSKH1 (-) 2 14007 -cellosaurus:CVCL_TH28 HAP1 PSMB10 (-) 1 2 14008 -cellosaurus:CVCL_TH29 HAP1 PSMB10 (-) 2 2 14009 -cellosaurus:CVCL_TH30 HAP1 PSMB8 (-) 1 2 14010 -cellosaurus:CVCL_TH31 HAP1 PSMB8 (-) 2 2 14011 -cellosaurus:CVCL_TH32 HAP1 PSMB8 (-) 3 2 14012 -cellosaurus:CVCL_TH33 HAP1 PSMB9 (-) 1 2 14013 -cellosaurus:CVCL_TH34 HAP1 PSMB9 (-) 2 2 14014 -cellosaurus:CVCL_TH35 HAP1 PSMB9 (-) 3 2 14015 -cellosaurus:CVCL_TH36 HAP1 PSMF1 (-) 1 2 14016 -cellosaurus:CVCL_TH37 HAP1 PSMF1 (-) 2 2 14017 -cellosaurus:CVCL_TH38 HAP1 PSPC1 (-) 1 2 14018 -cellosaurus:CVCL_XS01 HAP1 PSPC1 (-) 2 2 14019 -cellosaurus:CVCL_XS02 HAP1 PSPC1 (-) 3 2 14020 -cellosaurus:CVCL_TH39 HAP1 PTAR1 (-) 1 2 14021 -cellosaurus:CVCL_TH40 HAP1 PTAR1 (-) 2 2 14022 -cellosaurus:CVCL_TH41 HAP1 PTBP1 (-) 2 14023 -cellosaurus:CVCL_TH42 HAP1 PTCH1 (-) 1 2 14024 -cellosaurus:CVCL_TH43 HAP1 PTCH1 (-) 2 2 14025 -cellosaurus:CVCL_TH44 HAP1 PTCHD4 (-) 1 2 14026 -cellosaurus:CVCL_TH45 HAP1 PTCHD4 (-) 2 2 14027 -cellosaurus:CVCL_TH46 HAP1 PTEN (-) 1 2 14028 -cellosaurus:CVCL_TH47 HAP1 PTEN (-) 2 2 14029 -cellosaurus:CVCL_TH48 HAP1 PTEN (-) 3 2 14030 -cellosaurus:CVCL_TH49 HAP1 PTEN (-) 4 2 14031 -cellosaurus:CVCL_TH50 HAP1 PTGER3 (-) 1 2 14032 -cellosaurus:CVCL_TH51 HAP1 PTGER3 (-) 2 2 14033 -cellosaurus:CVCL_TH52 HAP1 PTH1R (-) 2 14034 -cellosaurus:CVCL_TH53 HAP1 PTK2B (-) 1 2 14035 -cellosaurus:CVCL_TH54 HAP1 PTK2B (-) 2 2 14036 -cellosaurus:CVCL_TH55 HAP1 PTK7 (-) 1 2 14037 -cellosaurus:CVCL_TH56 HAP1 PTK7 (-) 2 2 14038 -cellosaurus:CVCL_TH57 HAP1 PTPN1 (-) 1 2 14039 -cellosaurus:CVCL_TH58 HAP1 PTPN1 (-) 2 2 14040 -cellosaurus:CVCL_TH59 HAP1 PTPN11 (-) 1 2 14041 -cellosaurus:CVCL_TH60 HAP1 PTPN11 (-) 2 2 14042 -cellosaurus:CVCL_TH61 HAP1 PTPN3 (-) 1 2 14043 -cellosaurus:CVCL_TH62 HAP1 PTPN3 (-) 2 2 14044 -cellosaurus:CVCL_TH63 HAP1 PTPRC (-) 1 2 14045 -cellosaurus:CVCL_TH64 HAP1 PTPRC (-) 2 2 14046 -cellosaurus:CVCL_TH65 HAP1 PTPRC (-) 3 2 14047 -cellosaurus:CVCL_TH66 HAP1 PTPRD (-) 1 2 14048 -cellosaurus:CVCL_XS03 HAP1 PTPRD (-) 2 2 14049 -cellosaurus:CVCL_TH67 HAP1 PTPRJ (-) 1 2 14050 -cellosaurus:CVCL_XS04 HAP1 PTPRJ (-) 2 2 14051 -cellosaurus:CVCL_TH68 HAP1 PTPRK (-) 1 2 14052 -cellosaurus:CVCL_TH69 HAP1 PTPRK (-) 2 2 14053 -cellosaurus:CVCL_TH70 HAP1 PTPRK (-) 3 2 14054 -cellosaurus:CVCL_TH71 HAP1 PTPRK (-) 4 2 14055 -cellosaurus:CVCL_TH72 HAP1 PTPRS (-) 1 2 14056 -cellosaurus:CVCL_TH73 HAP1 PTPRS (-) 2 2 14057 -cellosaurus:CVCL_TH74 HAP1 PTPRS (-) 3 2 14058 -cellosaurus:CVCL_TH75 HAP1 PUSL1 (-) 1 2 14059 -cellosaurus:CVCL_XS05 HAP1 PUSL1 (-) 2 2 14060 -cellosaurus:CVCL_TH76 HAP1 PVR (-) 1 2 14061 -cellosaurus:CVCL_TH77 HAP1 PVR (-) 2 2 14062 -cellosaurus:CVCL_TH78 HAP1 PWWP2B (-) 1 2 14063 -cellosaurus:CVCL_TH79 HAP1 PWWP2B (-) 2 2 14064 -cellosaurus:CVCL_TH80 HAP1 PXK (-) 1 2 14065 -cellosaurus:CVCL_TH81 HAP1 PXK (-) 2 2 14066 -cellosaurus:CVCL_TH82 HAP1 PYCARD (-) 1 2 14067 -cellosaurus:CVCL_TH83 HAP1 PYCARD (-) 2 2 14068 -cellosaurus:CVCL_TH84 HAP1 PYCR1 (-) 1 2 14069 -cellosaurus:CVCL_TH85 HAP1 PYCR1 (-) 2 2 14070 -cellosaurus:CVCL_TH86 HAP1 PYCR1 (-) 3 2 14071 -cellosaurus:CVCL_TH87 HAP1 PYURF (-) 1 2 14072 -cellosaurus:CVCL_TH88 HAP1 PYURF (-) 2 2 14073 -cellosaurus:CVCL_TH89 HAP1 QKI (-) 1 2 14074 -cellosaurus:CVCL_XS06 HAP1 QKI (-) 2 2 14075 -cellosaurus:CVCL_TH90 HAP1 QPRT (-) 1 2 14076 -cellosaurus:CVCL_TH91 HAP1 QPRT (-) 2 2 14077 -cellosaurus:CVCL_TH92 HAP1 QSOX1 (-) 1 2 14078 -cellosaurus:CVCL_TH93 HAP1 QSOX1 (-) 2 2 14079 -cellosaurus:CVCL_TH94 HAP1 RAB11B (-) 1 2 14080 -cellosaurus:CVCL_XS07 HAP1 RAB11B (-) 2 2 14081 -cellosaurus:CVCL_XS08 HAP1 RAB11B (-) 3 2 14082 -cellosaurus:CVCL_TH95 HAP1 RAB12 (-) 2 14083 -cellosaurus:CVCL_TH96 HAP1 RAB13 (-) 1 2 14084 -cellosaurus:CVCL_TH97 HAP1 RAB13 (-) 2 2 14085 -cellosaurus:CVCL_TH98 HAP1 RAB14 (-) 2 14086 -cellosaurus:CVCL_XS09 HAP1 RAB1A (-) 1 2 14087 -cellosaurus:CVCL_B5KT HAP1 RAB1A (-) 2 2 14088 -cellosaurus:CVCL_TH99 HAP1 RAB1B (-) 1 2 14089 -cellosaurus:CVCL_TI00 HAP1 RAB1B (-) 2 2 14090 -cellosaurus:CVCL_TI01 HAP1 RAB20 (-) 1 2 14091 -cellosaurus:CVCL_TI02 HAP1 RAB20 (-) 2 2 14092 -cellosaurus:CVCL_TI03 HAP1 RAB20 (-) 3 2 14093 -cellosaurus:CVCL_TI04 HAP1 RAB21 (-) 1 2 14094 -cellosaurus:CVCL_TI05 HAP1 RAB21 (-) 2 2 14095 -cellosaurus:CVCL_TI06 HAP1 RAB27A (-) 1 2 14096 -cellosaurus:CVCL_TI07 HAP1 RAB27A (-) 2 2 14097 -cellosaurus:CVCL_TI08 HAP1 RAB2A (-) 1 2 14098 -cellosaurus:CVCL_TI09 HAP1 RAB2A (-) 2 2 14099 -cellosaurus:CVCL_TI10 HAP1 RAB2A (-) 3 2 14100 -cellosaurus:CVCL_TI11 HAP1 RAB31 (-) 1 2 14101 -cellosaurus:CVCL_TI12 HAP1 RAB31 (-) 2 2 14102 -cellosaurus:CVCL_TI13 HAP1 RAB32 (-) 1 2 14103 -cellosaurus:CVCL_TI14 HAP1 RAB32 (-) 2 2 14104 -cellosaurus:CVCL_TI15 HAP1 RAB35 (-) 1 2 14105 -cellosaurus:CVCL_XS10 HAP1 RAB35 (-) 2 2 14106 -cellosaurus:CVCL_XS11 HAP1 RAB35 (-) 3 2 14107 -cellosaurus:CVCL_XS12 HAP1 RAB35 (-) 4 2 14108 -cellosaurus:CVCL_TI16 HAP1 RAB3A (-) 1 2 14109 -cellosaurus:CVCL_TI17 HAP1 RAB3A (-) 2 2 14110 -cellosaurus:CVCL_TI18 HAP1 RAB4A (-) 1 2 14111 -cellosaurus:CVCL_TI19 HAP1 RAB4A (-) 2 2 14112 -cellosaurus:CVCL_TI20 HAP1 RAB5A (-) 1 2 14113 -cellosaurus:CVCL_TI21 HAP1 RAB5A (-) 2 2 14114 -cellosaurus:CVCL_TI22 HAP1 RAB6A (-) 1 2 14115 -cellosaurus:CVCL_TI23 HAP1 RAB6A (-) 2 2 14116 -cellosaurus:CVCL_TI24 HAP1 RAB7A (-) 1 2 14117 -cellosaurus:CVCL_TI25 HAP1 RAB7A (-) 2 2 14118 -cellosaurus:CVCL_TI26 HAP1 RAB8A (-) 1 2 14119 -cellosaurus:CVCL_TI27 HAP1 RAB8A (-) 2 2 14120 -cellosaurus:CVCL_TI28 HAP1 RAB8A (-) 3 2 14121 -cellosaurus:CVCL_TI29 HAP1 RAB8A (-) 4 2 14122 -cellosaurus:CVCL_TI30 HAP1 RAB9A (-) 2 14123 -cellosaurus:CVCL_TI31 HAP1 RABGAP1 (-) 1 2 14124 -cellosaurus:CVCL_TI32 HAP1 RABGAP1 (-) 2 2 14125 -cellosaurus:CVCL_TI33 HAP1 RAC1 (-) 2 14126 -cellosaurus:CVCL_TI34 HAP1 RAD51B (-) 2 14127 -cellosaurus:CVCL_TI35 HAP1 RAD52 (-) 2 14128 -cellosaurus:CVCL_TI36 HAP1 RAF1 (-) 1 2 14129 -cellosaurus:CVCL_TI37 HAP1 RAF1 (-) 2 2 14130 -cellosaurus:CVCL_TI38 HAP1 RAF1 (-) 3 2 14131 -cellosaurus:CVCL_TI39 HAP1 RAF1 (-) 4 2 14132 -cellosaurus:CVCL_TI40 HAP1 RAF1 (-) 5 2 14133 -cellosaurus:CVCL_TI41 HAP1 RAF1 (-) 6 2 14134 -cellosaurus:CVCL_TI42 HAP1 RAF1 (-) 7 2 14135 -cellosaurus:CVCL_TI43 HAP1 RAMP1 (-) 1 2 14136 -cellosaurus:CVCL_TI44 HAP1 RAMP1 (-) 2 2 14137 -cellosaurus:CVCL_TI45 HAP1 RAMP2 (-) 1 2 14138 -cellosaurus:CVCL_TI46 HAP1 RAMP2 (-) 2 2 14139 -cellosaurus:CVCL_TI47 HAP1 RAP1GAP (-) 1 2 14140 -cellosaurus:CVCL_XS13 HAP1 RAP1GAP (-) 2 2 14141 -cellosaurus:CVCL_TI48 HAP1 RARA (-) 2 14142 -cellosaurus:CVCL_TI49 HAP1 RARG (-) 1 2 14143 -cellosaurus:CVCL_TI50 HAP1 RARG (-) 2 2 14144 -cellosaurus:CVCL_TI51 HAP1 RASD1 (-) 1 2 14145 -cellosaurus:CVCL_TI52 HAP1 RASD1 (-) 2 2 14146 -cellosaurus:CVCL_TI53 HAP1 RASGRP1 (-) 1 2 14147 -cellosaurus:CVCL_TI54 HAP1 RASGRP1 (-) 2 2 14148 -cellosaurus:CVCL_XS14 HAP1 RASSF4 (-) 2 14149 -cellosaurus:CVCL_TI55 HAP1 RASSF5 (-) 2 14150 -cellosaurus:CVCL_TI56 HAP1 RB1 (-) 1 2 14151 -cellosaurus:CVCL_TI57 HAP1 RB1 (-) 2 2 14152 -cellosaurus:CVCL_TI58 HAP1 RB1 (-) 3 2 14153 -cellosaurus:CVCL_TI59 HAP1 RB1CC1 (-) 2 14154 -cellosaurus:CVCL_TI60 HAP1 RBBP7 (-) 1 2 14155 -cellosaurus:CVCL_TI61 HAP1 RBBP7 (-) 2 2 14156 -cellosaurus:CVCL_TI62 HAP1 RBBP7 (-) 3 2 14157 -cellosaurus:CVCL_TI63 HAP1 RBKS (-) 1 2 14158 -cellosaurus:CVCL_XS15 HAP1 RBKS (-) 2 2 14159 -cellosaurus:CVCL_XS16 HAP1 RBKS (-) 3 2 14160 -cellosaurus:CVCL_XS17 HAP1 RBKS (-) 4 2 14161 -cellosaurus:CVCL_TI64 HAP1 RCAN1 (-) 2 14162 -cellosaurus:CVCL_TI65 HAP1 RCBTB2 (-) 1 2 14163 -cellosaurus:CVCL_XS18 HAP1 RCBTB2 (-) 2 2 14164 -cellosaurus:CVCL_XS19 HAP1 RCBTB2 (-) 3 2 14165 -cellosaurus:CVCL_TI66 HAP1 RCC2 (-) 1 2 14166 -cellosaurus:CVCL_TI67 HAP1 RCC2 (-) 2 2 14167 -cellosaurus:CVCL_TI68 HAP1 RDH13 (-) 1 2 14168 -cellosaurus:CVCL_XS20 HAP1 RDH13 (-) 2 2 14169 -cellosaurus:CVCL_TI69 HAP1 RECQL (-) 1 2 14170 -cellosaurus:CVCL_TI70 HAP1 RECQL (-) 2 2 14171 -cellosaurus:CVCL_TI71 HAP1 RECQL4 (-) 1 2 14172 -cellosaurus:CVCL_TI72 HAP1 RECQL4 (-) 2 2 14173 -cellosaurus:CVCL_TI73 HAP1 RECQL4 (-) 3 2 14174 -cellosaurus:CVCL_TI74 HAP1 REL (-) 2 14175 -cellosaurus:CVCL_TI75 HAP1 RELA (-) 1 2 14176 -cellosaurus:CVCL_TI76 HAP1 RELA (-) 2 2 14177 -cellosaurus:CVCL_TI77 HAP1 RELA (-) 3 2 14178 -cellosaurus:CVCL_TI78 HAP1 RELB (-) 2 14179 -cellosaurus:CVCL_TI79 HAP1 RENBP (-) 1 2 14180 -cellosaurus:CVCL_XS21 HAP1 RENBP (-) 2 2 14181 -cellosaurus:CVCL_XS22 HAP1 REPS1 (-) 2 14182 -cellosaurus:CVCL_TI80 HAP1 RER1 (-) 1 2 14183 -cellosaurus:CVCL_TI81 HAP1 RER1 (-) 2 2 14184 -cellosaurus:CVCL_TI82 HAP1 RERE (-) 1 2 14185 -cellosaurus:CVCL_XS23 HAP1 RERE (-) 2 2 14186 -cellosaurus:CVCL_TI83 HAP1 REST (-) 1 2 14187 -cellosaurus:CVCL_XS24 HAP1 REST (-) 2 2 14188 -cellosaurus:CVCL_TI84 HAP1 RET (-) 2 14189 -cellosaurus:CVCL_TI85 HAP1 REV1 (-) 1 2 14190 -cellosaurus:CVCL_TI86 HAP1 REV1 (-) 2 2 14191 -cellosaurus:CVCL_TI87 HAP1 REXO2 (-) 2 14192 -cellosaurus:CVCL_TI88 HAP1 REXO4 (-) 1 2 14193 -cellosaurus:CVCL_XS25 HAP1 REXO4 (-) 2 2 14194 -cellosaurus:CVCL_TI89 HAP1 RFWD3 (-) 1 2 14195 -cellosaurus:CVCL_TI90 HAP1 RFWD3 (-) 2 2 14196 -cellosaurus:CVCL_TI91 HAP1 RFX5 (-) 1 2 14197 -cellosaurus:CVCL_TI92 HAP1 RFX5 (-) 2 2 14198 -cellosaurus:CVCL_TI93 HAP1 RFX5 (-) 3 2 14199 -cellosaurus:CVCL_TI94 HAP1 RFX5 (-) 4 2 14200 -cellosaurus:CVCL_TI95 HAP1 RHBDD2 (-) 1 2 14201 -cellosaurus:CVCL_TI96 HAP1 RHBDD2 (-) 2 2 14202 -cellosaurus:CVCL_TI97 HAP1 RHOD (-) 1 2 14203 -cellosaurus:CVCL_TI98 HAP1 RHOD (-) 2 2 14204 -cellosaurus:CVCL_XS26 HAP1 RIC3 (-) 2 14205 -cellosaurus:CVCL_TI99 HAP1 RICTOR (-) 1 2 14206 -cellosaurus:CVCL_TJ00 HAP1 RICTOR (-) 2 2 14207 -cellosaurus:CVCL_TJ01 HAP1 RIF1 (-) 1 2 14208 -cellosaurus:CVCL_TJ02 HAP1 RIF1 (-) 2 2 14209 -cellosaurus:CVCL_TJ03 HAP1 RIF1 (-) 3 2 14210 -cellosaurus:CVCL_TJ04 HAP1 RIF1 (-) 4 2 14211 -cellosaurus:CVCL_TJ05 HAP1 RIF1 (-) 5 2 14212 -cellosaurus:CVCL_TJ06 HAP1 RING1 (-) 1 2 14213 -cellosaurus:CVCL_TJ07 HAP1 RING1 (-) 2 2 14214 -cellosaurus:CVCL_TJ08 HAP1 RING1 (-) 3 2 14215 -cellosaurus:CVCL_TJ09 HAP1 RIOK3 (-) 2 14216 -cellosaurus:CVCL_TJ10 HAP1 RIPK1 (-) 1 2 14217 -cellosaurus:CVCL_TJ11 HAP1 RIPK1 (-) 2 2 14218 -cellosaurus:CVCL_TJ12 HAP1 RIPK2 (-) 2 14219 -cellosaurus:CVCL_XS27 HAP1 RIPK3 (-) 2 14220 -cellosaurus:CVCL_TJ13 HAP1 RLIM (-) 1 2 14221 -cellosaurus:CVCL_TJ14 HAP1 RLIM (-) 2 2 14222 -cellosaurus:CVCL_TJ15 HAP1 RNASEH2C (-) 1 2 14223 -cellosaurus:CVCL_TJ16 HAP1 RNASEH2C (-) 2 2 14224 -cellosaurus:CVCL_TJ17 HAP1 RNASEK (-) 1 2 14225 -cellosaurus:CVCL_TJ18 HAP1 RNASEK (-) 2 2 14226 -cellosaurus:CVCL_TJ19 HAP1 RNASEK (-) 3 2 14227 -cellosaurus:CVCL_TJ20 HAP1 RNASEK (-) 4 2 14228 -cellosaurus:CVCL_TJ21 HAP1 RNASEL (-) 1 2 14229 -cellosaurus:CVCL_TJ22 HAP1 RNASEL (-) 2 2 14230 -cellosaurus:CVCL_TJ23 HAP1 RNF111 (-) 1 2 14231 -cellosaurus:CVCL_TJ24 HAP1 RNF111 (-) 2 2 14232 -cellosaurus:CVCL_TJ25 HAP1 RNF123 (-) 1 2 14233 -cellosaurus:CVCL_TJ26 HAP1 RNF123 (-) 2 2 14234 -cellosaurus:CVCL_TJ27 HAP1 RNF123 (-) 3 2 14235 -cellosaurus:CVCL_TJ28 HAP1 RNF123 (-) 4 2 14236 -cellosaurus:CVCL_TJ29 HAP1 RNF123 (-) 5 2 14237 -cellosaurus:CVCL_TJ30 HAP1 RNF2 (-) 1 2 14238 -cellosaurus:CVCL_TJ31 HAP1 RNF2 (-) 2 2 14239 -cellosaurus:CVCL_TJ32 HAP1 RNF2 (-) 3 2 14240 -cellosaurus:CVCL_TJ33 HAP1 RNF2 (-) 4 2 14241 -cellosaurus:CVCL_TJ34 HAP1 RNF2 (-) 5 2 14242 -cellosaurus:CVCL_TJ35 HAP1 RNF216 (-) 2 14243 -cellosaurus:CVCL_TJ36 HAP1 RNF31 (-) 1 2 14244 -cellosaurus:CVCL_TJ37 HAP1 RNF31 (-) 2 2 14245 -cellosaurus:CVCL_TJ38 HAP1 RNF41 (-) 1 2 14246 -cellosaurus:CVCL_TJ39 HAP1 RNF41 (-) 2 2 14247 -cellosaurus:CVCL_TJ40 HAP1 RNF41 (-) 3 2 14248 -cellosaurus:CVCL_TJ41 HAP1 RNF41 (-) 4 2 14249 -cellosaurus:CVCL_TJ42 HAP1 RNF43 (-) 1 2 14250 -cellosaurus:CVCL_TJ43 HAP1 RNF43 (-) 2 2 14251 -cellosaurus:CVCL_TJ44 HAP1 RNF43 (-) 3 2 14252 -cellosaurus:CVCL_TJ45 HAP1 RNF8 (-) 2 14253 -cellosaurus:CVCL_TJ46 HAP1 ROBO1 (-) 1 2 14254 -cellosaurus:CVCL_XS28 HAP1 ROBO1 (-) 2 2 14255 -cellosaurus:CVCL_TJ47 HAP1 ROCK1 (-) 1 2 14256 -cellosaurus:CVCL_TJ48 HAP1 ROCK1 (-) 2 2 14257 -cellosaurus:CVCL_TJ49 HAP1 ROCK1 (-) 3 2 14258 -cellosaurus:CVCL_TJ50 HAP1 ROCK2 (-) 1 2 14259 -cellosaurus:CVCL_TJ51 HAP1 ROCK2 (-) 2 2 14260 -cellosaurus:CVCL_TJ52 HAP1 ROCK2 (-) 3 2 14261 -cellosaurus:CVCL_TJ53 HAP1 ROR1 (-) 1 2 14262 -cellosaurus:CVCL_TJ54 HAP1 ROR1 (-) 2 2 14263 -cellosaurus:CVCL_TJ55 HAP1 ROR1 (-) 3 2 14264 -cellosaurus:CVCL_TJ56 HAP1 ROR2 (-) 4 2 14265 -cellosaurus:CVCL_TJ57 HAP1 ROR2 (-) 5 2 14266 -cellosaurus:CVCL_TJ58 HAP1 RPS25 (-) 1 2 14267 -cellosaurus:CVCL_TJ59 HAP1 RPS25 (-) 2 2 14268 -cellosaurus:CVCL_TJ60 HAP1 RPS6KA1 (-) 2 14269 -cellosaurus:CVCL_TJ61 HAP1 RPS6KA2 (-) 2 14270 -cellosaurus:CVCL_TJ62 HAP1 RPS6KA3 (-) 2 14271 -cellosaurus:CVCL_TJ63 HAP1 RPS6KA4 (-) 1 2 14272 -cellosaurus:CVCL_TJ64 HAP1 RPS6KA4 (-) 2 2 14273 -cellosaurus:CVCL_TJ65 HAP1 RPS6KA4 (-) 3 2 14274 -cellosaurus:CVCL_TJ66 HAP1 RPS6KA5 (-) 1 2 14275 -cellosaurus:CVCL_TJ67 HAP1 RPS6KA5 (-) 2 2 14276 -cellosaurus:CVCL_TJ68 HAP1 RPS6KA6 (-) 2 14277 -cellosaurus:CVCL_TJ69 HAP1 RPS6KB1 (-) 2 14278 -cellosaurus:CVCL_TJ70 HAP1 RPS6KB2 (-) 2 14279 -cellosaurus:CVCL_TJ71 HAP1 RPS6KC1 (-) 1 2 14280 -cellosaurus:CVCL_TJ72 HAP1 RPS6KC1 (-) 2 2 14281 -cellosaurus:CVCL_TJ73 HAP1 RPS6KL1 (-) 1 2 14282 -cellosaurus:CVCL_TJ74 HAP1 RPS6KL1 (-) 2 2 14283 -cellosaurus:CVCL_TJ75 HAP1 RPS6KL1 (-) 3 2 14284 -cellosaurus:CVCL_TJ76 HAP1 RRAGA (-) 1 2 14285 -cellosaurus:CVCL_XS29 HAP1 RRAGA (-) 2 2 14286 -cellosaurus:CVCL_TJ77 HAP1 RRM2B (-) 1 2 14287 -cellosaurus:CVCL_TJ78 HAP1 RRM2B (-) 2 2 14288 -cellosaurus:CVCL_TJ79 HAP1 RRNAD1 (-) 1 2 14289 -cellosaurus:CVCL_XS30 HAP1 RRNAD1 (-) 2 2 14290 -cellosaurus:CVCL_XS31 HAP1 RRNAD1 (-) 3 2 14291 -cellosaurus:CVCL_TJ80 HAP1 RSAD1 (-) 1 2 14292 -cellosaurus:CVCL_XS32 HAP1 RSAD1 (-) 2 2 14293 -cellosaurus:CVCL_XS33 HAP1 RSAD1 (-) 3 2 14294 -cellosaurus:CVCL_XS34 HAP1 RSAD1 (-) 4 2 14295 -cellosaurus:CVCL_TJ81 HAP1 RTN4 (-) 1 2 14296 -cellosaurus:CVCL_TJ82 HAP1 RTN4 (-) 2 2 14297 -cellosaurus:CVCL_TJ83 HAP1 RTN4 (-) 3 2 14298 -cellosaurus:CVCL_TJ84 HAP1 RTN4 (-) 4 2 14299 -cellosaurus:CVCL_TJ85 HAP1 RUNX1 (-) 2 14300 -cellosaurus:CVCL_TJ86 HAP1 RUNX3 (-) 1 2 14301 -cellosaurus:CVCL_XS35 HAP1 RUNX3 (-) 2 2 14302 -cellosaurus:CVCL_XS36 HAP1 RUNX3 (-) 3 2 14303 -cellosaurus:CVCL_TJ87 HAP1 RXRA (-) 1 2 14304 -cellosaurus:CVCL_TJ88 HAP1 RXRA (-) 2 2 14305 -cellosaurus:CVCL_TJ89 HAP1 RXRB (-) 1 2 14306 -cellosaurus:CVCL_TJ90 HAP1 RXRB (-) 2 2 14307 -cellosaurus:CVCL_TJ91 HAP1 RYK (-) 1 2 14308 -cellosaurus:CVCL_TJ92 HAP1 RYK (-) 2 2 14309 -cellosaurus:CVCL_TJ93 HAP1 RYK (-) 3 2 14310 -cellosaurus:CVCL_TJ94 HAP1 RYR2 (-) 1 2 14311 -cellosaurus:CVCL_XS37 HAP1 RYR2 (-) 2 2 14312 -cellosaurus:CVCL_TJ95 HAP1 S100A10 (-) 1 2 14313 -cellosaurus:CVCL_XS38 HAP1 S100A10 (-) 2 2 14314 -cellosaurus:CVCL_XS39 HAP1 S100PBP (-) 2 14315 -cellosaurus:CVCL_TJ96 HAP1 S1PR1 (-) 1 2 14316 -cellosaurus:CVCL_XS40 HAP1 S1PR1 (-) 2 2 14317 -cellosaurus:CVCL_XS41 HAP1 S1PR1 (-) 3 2 14318 -cellosaurus:CVCL_TJ97 HAP1 S1PR5 (-) 1 2 14319 -cellosaurus:CVCL_TJ98 HAP1 S1PR5 (-) 2 2 14320 -cellosaurus:CVCL_TJ99 HAP1 SAMD9 (-) 2 14321 -cellosaurus:CVCL_TK00 HAP1 SAMHD1 (-) 1 2 14322 -cellosaurus:CVCL_TK01 HAP1 SAMHD1 (-) 2 2 14323 -cellosaurus:CVCL_TK02 HAP1 SAMHD1 (-) 3 2 14324 -cellosaurus:CVCL_TK03 HAP1 SAT2 (-) 1 2 14325 -cellosaurus:CVCL_XS42 HAP1 SAT2 (-) 2 2 14326 -cellosaurus:CVCL_TK04 HAP1 SATB1 (-) 1 2 14327 -cellosaurus:CVCL_XS43 HAP1 SATB1 (-) 2 2 14328 -cellosaurus:CVCL_TK05 HAP1 SATB2 (-) 2 14329 -cellosaurus:CVCL_TK06 HAP1 SAV1 (-) 1 2 14330 -cellosaurus:CVCL_XS44 HAP1 SAV1 (-) 2 2 14331 -cellosaurus:CVCL_XS45 HAP1 SAV1 (-) 3 2 14332 -cellosaurus:CVCL_XS46 HAP1 SAV1 (-) 4 2 14333 -cellosaurus:CVCL_TK07 HAP1 SBK1 (-) 1 2 14334 -cellosaurus:CVCL_TK08 HAP1 SBK1 (-) 2 2 14335 -cellosaurus:CVCL_TK09 HAP1 SBK1 (-) 3 2 14336 -cellosaurus:CVCL_TK10 HAP1 SCARB1 (-) 1 2 14337 -cellosaurus:CVCL_XS47 HAP1 SCARB1 (-) 2 2 14338 -cellosaurus:CVCL_TK11 HAP1 SCCPDH (-) 1 2 14339 -cellosaurus:CVCL_XS48 HAP1 SCCPDH (-) 2 2 14340 -cellosaurus:CVCL_XS49 HAP1 SCCPDH (-) 3 2 14341 -cellosaurus:CVCL_TK12 HAP1 SCFD2 (-) 1 2 14342 -cellosaurus:CVCL_TK13 HAP1 SCFD2 (-) 2 2 14343 -cellosaurus:CVCL_TK14 HAP1 SCML2 (-) 1 2 14344 -cellosaurus:CVCL_XS50 HAP1 SCML2 (-) 2 2 14345 -cellosaurus:CVCL_TK15 HAP1 SCN1B (-) 1 2 14346 -cellosaurus:CVCL_TK16 HAP1 SCN1B (-) 2 2 14347 -cellosaurus:CVCL_TK17 HAP1 SCNN1D (-) 2 14348 -cellosaurus:CVCL_TK18 HAP1 SCYL1 (-) 1 2 14349 -cellosaurus:CVCL_TK19 HAP1 SCYL1 (-) 2 2 14350 -cellosaurus:CVCL_TK20 HAP1 SCYL2 (-) 1 2 14351 -cellosaurus:CVCL_TK21 HAP1 SCYL2 (-) 2 2 14352 -cellosaurus:CVCL_TK22 HAP1 SCYL3 (-) 1 2 14353 -cellosaurus:CVCL_TK23 HAP1 SCYL3 (-) 2 2 14354 -cellosaurus:CVCL_TK24 HAP1 SDC1 (-) 1 2 14355 -cellosaurus:CVCL_XS51 HAP1 SDC1 (-) 2 2 14356 -cellosaurus:CVCL_TK25 HAP1 SDC2 (-) 1 2 14357 -cellosaurus:CVCL_TK26 HAP1 SDC2 (-) 2 2 14358 -cellosaurus:CVCL_TK27 HAP1 SDC2 (-) 3 2 14359 -cellosaurus:CVCL_TK28 HAP1 SDC2 (-) 4 2 14360 -cellosaurus:CVCL_TK29 HAP1 SDCBP (-) 1 2 14361 -cellosaurus:CVCL_XS52 HAP1 SDCBP (-) 2 2 14362 -cellosaurus:CVCL_XS53 HAP1 SDHAF2 (-) 2 14363 -cellosaurus:CVCL_TK30 HAP1 SDR39U1 (-) 2 14364 -cellosaurus:CVCL_TK31 HAP1 SEC22A (-) 1 2 14365 -cellosaurus:CVCL_TK32 HAP1 SEC22A (-) 2 2 14366 -cellosaurus:CVCL_TK33 HAP1 SEC22A (-) 3 2 14367 -cellosaurus:CVCL_TK34 HAP1 SEC22C (-) 1 2 14368 -cellosaurus:CVCL_TK35 HAP1 SEC22C (-) 2 2 14369 -cellosaurus:CVCL_TK36 HAP1 SEC23A (-) 1 2 14370 -cellosaurus:CVCL_TK37 HAP1 SEC23A (-) 2 2 14371 -cellosaurus:CVCL_TK38 HAP1 SEC23B (-) 1 2 14372 -cellosaurus:CVCL_TK39 HAP1 SEC23B (-) 2 2 14373 -cellosaurus:CVCL_TK40 HAP1 SEC23B (-) 3 2 14374 -cellosaurus:CVCL_TK41 HAP1 SEC23IP (-) 1 2 14375 -cellosaurus:CVCL_TK42 HAP1 SEC23IP (-) 2 2 14376 -cellosaurus:CVCL_TK43 HAP1 SEC24A (-) 1 2 14377 -cellosaurus:CVCL_TK44 HAP1 SEC24A (-) 2 2 14378 -cellosaurus:CVCL_TK45 HAP1 SEC24B (-) 1 2 14379 -cellosaurus:CVCL_TK46 HAP1 SEC24B (-) 2 2 14380 -cellosaurus:CVCL_TK47 HAP1 SEC24C (-) 2 14381 -cellosaurus:CVCL_TK48 HAP1 SEC24D (-) 2 14382 -cellosaurus:CVCL_XS54 HAP1 SEC31A (-) 2 14383 -cellosaurus:CVCL_XS55 HAP1 SEC31B (-) 1 2 14384 -cellosaurus:CVCL_B5KU HAP1 SEC31B (-) 2 2 14385 -cellosaurus:CVCL_TK49 HAP1 SECISBP2 (-) 2 14386 -cellosaurus:CVCL_TK50 HAP1 SECISBP2L (-) 1 2 14387 -cellosaurus:CVCL_TK51 HAP1 SECISBP2L (-) 2 2 14388 -cellosaurus:CVCL_TK52 HAP1 SELK (-) 1 2 14389 -cellosaurus:CVCL_TK53 HAP1 SELK (-) 2 2 14390 -cellosaurus:CVCL_TK54 HAP1 SELK (-) 3 2 14391 -cellosaurus:CVCL_TK55 HAP1 SEMA7A (-) 2 14392 -cellosaurus:CVCL_TK56 HAP1 SENP1 (-) 2 14393 -cellosaurus:CVCL_TK57 HAP1 SENP2 (-) 1 2 14394 -cellosaurus:CVCL_TK58 HAP1 SENP2 (-) 2 2 14395 -cellosaurus:CVCL_TK59 HAP1 SENP3 (-) 1 2 14396 -cellosaurus:CVCL_TK60 HAP1 SENP3 (-) 2 2 14397 -cellosaurus:CVCL_TK61 HAP1 SENP5 (-) 2 14398 -cellosaurus:CVCL_XS56 HAP1 SENP7 (-) 2 14399 -cellosaurus:CVCL_TK62 HAP1 SEPT6 (-) 1 2 14400 -cellosaurus:CVCL_TK63 HAP1 SEPT6 (-) 2 2 14401 -cellosaurus:CVCL_TK64 HAP1 SEPT6 (-) 3 2 14402 -cellosaurus:CVCL_XS57 HAP1 SEPT6 (-) 4 2 14403 -cellosaurus:CVCL_TK65 HAP1 SERPINF1 (-) 1 2 14404 -cellosaurus:CVCL_XS58 HAP1 SERPINF1 (-) 2 2 14405 -cellosaurus:CVCL_TK66 HAP1 SERPINH1 (-) 1 2 14406 -cellosaurus:CVCL_XS59 HAP1 SERPINH1 (-) 2 2 14407 -cellosaurus:CVCL_TK67 HAP1 SETD2 (-) 1 2 14408 -cellosaurus:CVCL_TK68 HAP1 SETD2 (-) 2 2 14409 -cellosaurus:CVCL_TK69 HAP1 SETD4 (-) 1 2 14410 -cellosaurus:CVCL_XS60 HAP1 SETD4 (-) 2 2 14411 -cellosaurus:CVCL_TK70 HAP1 SETD8 (-) 1 2 14412 -cellosaurus:CVCL_XS61 HAP1 SETD8 (-) 2 2 14413 -cellosaurus:CVCL_TK71 HAP1 SETD9 (-) 1 2 14414 -cellosaurus:CVCL_TK72 HAP1 SETD9 (-) 2 2 14415 -cellosaurus:CVCL_TK73 HAP1 SETDB1 (-) 1 2 14416 -cellosaurus:CVCL_TK74 HAP1 SETDB1 (-) 2 2 14417 -cellosaurus:CVCL_TK75 HAP1 SETDB2 (-) 1 2 14418 -cellosaurus:CVCL_TK76 HAP1 SETDB2 (-) 2 2 14419 -cellosaurus:CVCL_TK77 HAP1 SETDB2 (-) 3 2 14420 -cellosaurus:CVCL_TK78 HAP1 SETMAR (-) 1 2 14421 -cellosaurus:CVCL_TK79 HAP1 SETMAR (-) 2 2 14422 -cellosaurus:CVCL_TK80 HAP1 SETX (-) 1 2 14423 -cellosaurus:CVCL_TK81 HAP1 SETX (-) 2 2 14424 -cellosaurus:CVCL_XS62 HAP1 SFI1 (-) 1 2 14425 -cellosaurus:CVCL_XS63 HAP1 SFI1 (-) 2 2 14426 -cellosaurus:CVCL_TK82 HAP1 SFR1 (-) 1 2 14427 -cellosaurus:CVCL_XS64 HAP1 SFR1 (-) 2 2 14428 -cellosaurus:CVCL_XS65 HAP1 SFR1 (-) 3 2 14429 -cellosaurus:CVCL_XS66 HAP1 SFR1 (-) 4 2 14430 -cellosaurus:CVCL_XS67 HAP1 SFR1 (-) 5 2 14431 -cellosaurus:CVCL_TK83 HAP1 SFXN3 (-) 1 2 14432 -cellosaurus:CVCL_XS68 HAP1 SFXN3 (-) 2 2 14433 -cellosaurus:CVCL_XS69 HAP1 SFXN3 (-) 3 2 14434 -cellosaurus:CVCL_XS70 HAP1 SGCB (-) 2 14435 -cellosaurus:CVCL_TK84 HAP1 SGK1 (-) 1 2 14436 -cellosaurus:CVCL_TK85 HAP1 SGK1 (-) 2 2 14437 -cellosaurus:CVCL_TK86 HAP1 SGK1 (-) 3 2 14438 -cellosaurus:CVCL_TK87 HAP1 SGK223 (-) 1 2 14439 -cellosaurus:CVCL_TK88 HAP1 SGK223 (-) 2 2 14440 -cellosaurus:CVCL_TK89 HAP1 SGK223 (-) 3 2 14441 -cellosaurus:CVCL_TK90 HAP1 SGK3 (-) 2 14442 -cellosaurus:CVCL_TK91 HAP1 SGK494 (-) 1 2 14443 -cellosaurus:CVCL_TK92 HAP1 SGK494 (-) 2 2 14444 -cellosaurus:CVCL_TK93 HAP1 SGPL1 (-) 1 2 14445 -cellosaurus:CVCL_XS71 HAP1 SGPL1 (-) 2 2 14446 -cellosaurus:CVCL_XS72 HAP1 SGPL1 (-) 3 2 14447 -cellosaurus:CVCL_XS73 HAP1 SGSH (-) 1 2 14448 -cellosaurus:CVCL_B5KV HAP1 SGSH (-) 2 2 14449 -cellosaurus:CVCL_TK94 HAP1 SH3BP5 (-) 1 2 14450 -cellosaurus:CVCL_XS74 HAP1 SH3BP5 (-) 2 2 14451 -cellosaurus:CVCL_XS75 HAP1 SH3BP5 (-) 3 2 14452 -cellosaurus:CVCL_TK95 HAP1 SH3BP5L (-) 1 2 14453 -cellosaurus:CVCL_XS76 HAP1 SH3BP5L (-) 2 2 14454 -cellosaurus:CVCL_TK96 HAP1 SH3GLB1 (-) 1 2 14455 -cellosaurus:CVCL_TK97 HAP1 SH3GLB1 (-) 2 2 14456 -cellosaurus:CVCL_TK98 HAP1 SHARPIN (-) 1 2 14457 -cellosaurus:CVCL_XS77 HAP1 SHARPIN (-) 2 2 14458 -cellosaurus:CVCL_TK99 HAP1 SHC1 (-) 1 2 14459 -cellosaurus:CVCL_XS78 HAP1 SHC1 (-) 2 2 14460 -cellosaurus:CVCL_TL00 HAP1 SHMT1 (-) 1 2 14461 -cellosaurus:CVCL_TL01 HAP1 SHMT1 (-) 2 2 14462 -cellosaurus:CVCL_TL02 HAP1 SHMT2 (-) 2 14463 -cellosaurus:CVCL_TL03 HAP1 SHOX2 (-) 1 2 14464 -cellosaurus:CVCL_TL04 HAP1 SHOX2 (-) 2 2 14465 -cellosaurus:CVCL_TL05 HAP1 SHOX2 (-) 3 2 14466 -cellosaurus:CVCL_TL06 HAP1 SHOX2 (-) 4 2 14467 -cellosaurus:CVCL_XS79 HAP1 SHPRH (-) 1 2 14468 -cellosaurus:CVCL_B5KX HAP1 SHPRH (-) 2 2 14469 -cellosaurus:CVCL_B5KY HAP1 SHPRH (-) 3 2 14470 -cellosaurus:CVCL_TL07 HAP1 SIAE (-) 1 2 14471 -cellosaurus:CVCL_TL08 HAP1 SIAE (-) 2 2 14472 -cellosaurus:CVCL_TL09 HAP1 SIAE (-) 3 2 14473 -cellosaurus:CVCL_TL10 HAP1 SIGMAR1 (-) 1 2 14474 -cellosaurus:CVCL_TL11 HAP1 SIGMAR1 (-) 2 2 14475 -cellosaurus:CVCL_TL12 HAP1 SIK1 (-) 1 2 14476 -cellosaurus:CVCL_XS80 HAP1 SIK1 (-) 2 2 14477 -cellosaurus:CVCL_TL13 HAP1 SIK2 (-) 2 14478 -cellosaurus:CVCL_TL14 HAP1 SIK3 (-) 1 2 14479 -cellosaurus:CVCL_TL15 HAP1 SIK3 (-) 2 2 14480 -cellosaurus:CVCL_TL16 HAP1 SIK3 (-) 3 2 14481 -cellosaurus:CVCL_TL17 HAP1 SIKE1 (-) 1 2 14482 -cellosaurus:CVCL_TL18 HAP1 SIKE1 (-) 2 2 14483 -cellosaurus:CVCL_TL19 HAP1 SIN3A (-) 1 2 14484 -cellosaurus:CVCL_TL20 HAP1 SIN3A (-) 2 2 14485 -cellosaurus:CVCL_TL21 HAP1 SIN3A (-) 3 2 14486 -cellosaurus:CVCL_TL22 HAP1 SIRPA (-) 1 2 14487 -cellosaurus:CVCL_XS81 HAP1 SIRPA (-) 2 2 14488 -cellosaurus:CVCL_TL23 HAP1 SIRT1 (-) 1 2 14489 -cellosaurus:CVCL_TL24 HAP1 SIRT1 (-) 2 2 14490 -cellosaurus:CVCL_TL25 HAP1 SIRT1 (-) 3 2 14491 -cellosaurus:CVCL_TL26 HAP1 SIRT1 (-) 4 2 14492 -cellosaurus:CVCL_TL27 HAP1 SIRT2 (-) 1 2 14493 -cellosaurus:CVCL_TL28 HAP1 SIRT2 (-) 2 2 14494 -cellosaurus:CVCL_TL29 HAP1 SIRT2 (-) 3 2 14495 -cellosaurus:CVCL_TL30 HAP1 SIRT3 (-) 1 2 14496 -cellosaurus:CVCL_TL31 HAP1 SIRT3 (-) 2 2 14497 -cellosaurus:CVCL_TL32 HAP1 SIRT4 (-) 1 2 14498 -cellosaurus:CVCL_TL33 HAP1 SIRT4 (-) 2 2 14499 -cellosaurus:CVCL_TL34 HAP1 SIRT5 (-) 2 14500 -cellosaurus:CVCL_TL35 HAP1 SIRT6 (-) 1 2 14501 -cellosaurus:CVCL_TL36 HAP1 SIRT6 (-) 2 2 14502 -cellosaurus:CVCL_TL37 HAP1 SIRT7 (-) 2 14503 -cellosaurus:CVCL_TL38 HAP1 SKOR1 (-) 1 2 14504 -cellosaurus:CVCL_XS82 HAP1 SKOR1 (-) 2 2 14505 -cellosaurus:CVCL_XS83 HAP1 SKOR1 (-) 3 2 14506 -cellosaurus:CVCL_TL39 HAP1 SKP2 (-) 1 2 14507 -cellosaurus:CVCL_TL40 HAP1 SKP2 (-) 2 2 14508 -cellosaurus:CVCL_TL41 HAP1 SLC10A3 (-) 2 14509 -cellosaurus:CVCL_TL42 HAP1 SLC10A4 (-) 1 2 14510 -cellosaurus:CVCL_XS84 HAP1 SLC10A4 (-) 2 2 14511 -cellosaurus:CVCL_TL43 HAP1 SLC10A7 (-) 1 2 14512 -cellosaurus:CVCL_XS85 HAP1 SLC10A7 (-) 2 2 14513 -cellosaurus:CVCL_XS86 HAP1 SLC10A7 (-) 3 2 14514 -cellosaurus:CVCL_XS87 HAP1 SLC10A7 (-) 4 2 14515 -cellosaurus:CVCL_TL44 HAP1 SLC11A2 (-) 1 2 14516 -cellosaurus:CVCL_TL45 HAP1 SLC11A2 (-) 2 2 14517 -cellosaurus:CVCL_TL46 HAP1 SLC11A2 (-) 3 2 14518 -cellosaurus:CVCL_TL47 HAP1 SLC12A2 (-) 4 2 14519 -cellosaurus:CVCL_TL48 HAP1 SLC12A2 (-) 5 2 14520 -cellosaurus:CVCL_TL49 HAP1 SLC12A2 (-) 6 2 14521 -cellosaurus:CVCL_TL50 HAP1 SLC12A4 (-) 1 2 14522 -cellosaurus:CVCL_TL51 HAP1 SLC12A4 (-) 2 2 14523 -cellosaurus:CVCL_TL52 HAP1 SLC12A5 (-) 1 2 14524 -cellosaurus:CVCL_TL53 HAP1 SLC12A5 (-) 2 2 14525 -cellosaurus:CVCL_TL54 HAP1 SLC12A6 (-) 2 14526 -cellosaurus:CVCL_TL55 HAP1 SLC12A7 (-) 1 2 14527 -cellosaurus:CVCL_TL56 HAP1 SLC12A7 (-) 2 2 14528 -cellosaurus:CVCL_TL57 HAP1 SLC12A9 (-) 1 2 14529 -cellosaurus:CVCL_TL58 HAP1 SLC12A9 (-) 2 2 14530 -cellosaurus:CVCL_TL59 HAP1 SLC15A4 (-) 1 2 14531 -cellosaurus:CVCL_TL60 HAP1 SLC15A4 (-) 2 2 14532 -cellosaurus:CVCL_TL61 HAP1 SLC16A1 (-) 1 2 14533 -cellosaurus:CVCL_TL62 HAP1 SLC16A1 (-) 2 2 14534 -cellosaurus:CVCL_TL63 HAP1 SLC16A10 (-) 1 2 14535 -cellosaurus:CVCL_TL64 HAP1 SLC16A10 (-) 2 2 14536 -cellosaurus:CVCL_TL65 HAP1 SLC16A13 (-) 2 14537 -cellosaurus:CVCL_TL66 HAP1 SLC16A14 (-) 2 14538 -cellosaurus:CVCL_TL67 HAP1 SLC16A2 (-) 1 2 14539 -cellosaurus:CVCL_XS88 HAP1 SLC16A2 (-) 2 2 14540 -cellosaurus:CVCL_TL68 HAP1 SLC16A3 (-) 1 2 14541 -cellosaurus:CVCL_TL69 HAP1 SLC16A3 (-) 2 2 14542 -cellosaurus:CVCL_TL70 HAP1 SLC16A9 (-) 1 2 14543 -cellosaurus:CVCL_XS89 HAP1 SLC16A9 (-) 2 2 14544 -cellosaurus:CVCL_TL71 HAP1 SLC17A5 (-) 1 2 14545 -cellosaurus:CVCL_TL72 HAP1 SLC17A5 (-) 2 2 14546 -cellosaurus:CVCL_TL73 HAP1 SLC17A9 (-) 2 14547 -cellosaurus:CVCL_TL74 HAP1 SLC18A2 (-) 1 2 14548 -cellosaurus:CVCL_TL75 HAP1 SLC18A2 (-) 2 2 14549 -cellosaurus:CVCL_TL76 HAP1 SLC18B1 (-) 1 2 14550 -cellosaurus:CVCL_XS90 HAP1 SLC18B1 (-) 2 2 14551 -cellosaurus:CVCL_TL77 HAP1 SLC19A1 (-) 1 2 14552 -cellosaurus:CVCL_TL78 HAP1 SLC19A1 (-) 2 2 14553 -cellosaurus:CVCL_TL79 HAP1 SLC19A2 (-) 1 2 14554 -cellosaurus:CVCL_TL80 HAP1 SLC19A2 (-) 2 2 14555 -cellosaurus:CVCL_TL81 HAP1 SLC19A3 (-) 1 2 14556 -cellosaurus:CVCL_XS91 HAP1 SLC19A3 (-) 2 2 14557 -cellosaurus:CVCL_TL82 HAP1 SLC1A1 (-) 2 14558 -cellosaurus:CVCL_TL83 HAP1 SLC1A3 (-) 1 2 14559 -cellosaurus:CVCL_TL84 HAP1 SLC1A3 (-) 2 2 14560 -cellosaurus:CVCL_TL85 HAP1 SLC1A4 (-) 2 14561 -cellosaurus:CVCL_TL86 HAP1 SLC1A5 (-) 1 2 14562 -cellosaurus:CVCL_TL87 HAP1 SLC1A5 (-) 2 2 14563 -cellosaurus:CVCL_TL88 HAP1 SLC1A5 (-) 3 2 14564 -cellosaurus:CVCL_TL89 HAP1 SLC20A1 (-) 1 2 14565 -cellosaurus:CVCL_TL90 HAP1 SLC20A1 (-) 2 2 14566 -cellosaurus:CVCL_TL91 HAP1 SLC20A2 (-) 1 2 14567 -cellosaurus:CVCL_XS92 HAP1 SLC20A2 (-) 2 2 14568 -cellosaurus:CVCL_XS93 HAP1 SLC20A2 (-) 3 2 14569 -cellosaurus:CVCL_XS94 HAP1 SLC20A2 (-) 4 2 14570 -cellosaurus:CVCL_XS95 HAP1 SLC20A2 (-) 5 2 14571 -cellosaurus:CVCL_TL92 HAP1 SLC22A1 (-) 1 2 14572 -cellosaurus:CVCL_TL93 HAP1 SLC22A1 (-) 2 2 14573 -cellosaurus:CVCL_TL94 HAP1 SLC22A1 (-) 3 2 14574 -cellosaurus:CVCL_TL95 HAP1 SLC22A1 (-) 4 2 14575 -cellosaurus:CVCL_TL96 HAP1 SLC22A15 (-) 1 2 14576 -cellosaurus:CVCL_XS96 HAP1 SLC22A15 (-) 2 2 14577 -cellosaurus:CVCL_TL97 HAP1 SLC22A18 (-) 1 2 14578 -cellosaurus:CVCL_TL98 HAP1 SLC22A18 (-) 2 2 14579 -cellosaurus:CVCL_TL99 HAP1 SLC22A23 (-) 1 2 14580 -cellosaurus:CVCL_XS97 HAP1 SLC22A23 (-) 2 2 14581 -cellosaurus:CVCL_TM00 HAP1 SLC22A5 (-) 2 14582 -cellosaurus:CVCL_TM01 HAP1 SLC23A2 (-) 1 2 14583 -cellosaurus:CVCL_XS98 HAP1 SLC23A2 (-) 2 2 14584 -cellosaurus:CVCL_TM02 HAP1 SLC24A1 (-) 1 2 14585 -cellosaurus:CVCL_XT00 HAP1 SLC24A1 (-) 2 2 14586 -cellosaurus:CVCL_TM03 HAP1 SLC25A1 (-) 1 2 14587 -cellosaurus:CVCL_TM04 HAP1 SLC25A1 (-) 2 2 14588 -cellosaurus:CVCL_TM05 HAP1 SLC25A1 (-) 3 2 14589 -cellosaurus:CVCL_TM06 HAP1 SLC25A10 (-) 1 2 14590 -cellosaurus:CVCL_TM07 HAP1 SLC25A10 (-) 2 2 14591 -cellosaurus:CVCL_TM08 HAP1 SLC25A11 (-) 1 2 14592 -cellosaurus:CVCL_TM09 HAP1 SLC25A11 (-) 2 2 14593 -cellosaurus:CVCL_TM10 HAP1 SLC25A12 (-) 1 2 14594 -cellosaurus:CVCL_TM11 HAP1 SLC25A12 (-) 2 2 14595 -cellosaurus:CVCL_TM12 HAP1 SLC25A13 (-) 2 14596 -cellosaurus:CVCL_TM13 HAP1 SLC25A14 (-) 1 2 14597 -cellosaurus:CVCL_TM14 HAP1 SLC25A14 (-) 2 2 14598 -cellosaurus:CVCL_TM15 HAP1 SLC25A15 (-) 1 2 14599 -cellosaurus:CVCL_TM16 HAP1 SLC25A15 (-) 2 2 14600 -cellosaurus:CVCL_TM17 HAP1 SLC25A17 (-) 1 2 14601 -cellosaurus:CVCL_TM18 HAP1 SLC25A17 (-) 2 2 14602 -cellosaurus:CVCL_TM19 HAP1 SLC25A18 (-) 1 2 14603 -cellosaurus:CVCL_TM20 HAP1 SLC25A18 (-) 2 2 14604 -cellosaurus:CVCL_TM21 HAP1 SLC25A20 (-) 1 2 14605 -cellosaurus:CVCL_TM22 HAP1 SLC25A20 (-) 2 2 14606 -cellosaurus:CVCL_TM23 HAP1 SLC25A22 (-) 2 14607 -cellosaurus:CVCL_TM24 HAP1 SLC25A23 (-) 1 2 14608 -cellosaurus:CVCL_XT01 HAP1 SLC25A23 (-) 2 2 14609 -cellosaurus:CVCL_XT02 HAP1 SLC25A23 (-) 3 2 14610 -cellosaurus:CVCL_TM25 HAP1 SLC25A24 (-) 1 2 14611 -cellosaurus:CVCL_XT03 HAP1 SLC25A24 (-) 2 2 14612 -cellosaurus:CVCL_TM26 HAP1 SLC25A25 (-) 1 2 14613 -cellosaurus:CVCL_TM27 HAP1 SLC25A25 (-) 2 2 14614 -cellosaurus:CVCL_TM28 HAP1 SLC25A28 (-) 1 2 14615 -cellosaurus:CVCL_XT04 HAP1 SLC25A28 (-) 2 2 14616 -cellosaurus:CVCL_TM29 HAP1 SLC25A29 (-) 2 14617 -cellosaurus:CVCL_TM30 HAP1 SLC25A3 (-) 1 2 14618 -cellosaurus:CVCL_TM31 HAP1 SLC25A3 (-) 2 2 14619 -cellosaurus:CVCL_TM32 HAP1 SLC25A30 (-) 2 14620 -cellosaurus:CVCL_TM33 HAP1 SLC25A32 (-) 2 14621 -cellosaurus:CVCL_TM34 HAP1 SLC25A33 (-) 1 2 14622 -cellosaurus:CVCL_TM35 HAP1 SLC25A33 (-) 2 2 14623 -cellosaurus:CVCL_TM36 HAP1 SLC25A35 (-) 2 14624 -cellosaurus:CVCL_TM37 HAP1 SLC25A36 (-) 2 14625 -cellosaurus:CVCL_TM38 HAP1 SLC25A37 (-) 1 2 14626 -cellosaurus:CVCL_TM39 HAP1 SLC25A37 (-) 2 2 14627 -cellosaurus:CVCL_TM40 HAP1 SLC25A38 (-) 2 14628 -cellosaurus:CVCL_TM41 HAP1 SLC25A39 (-) 1 2 14629 -cellosaurus:CVCL_TM42 HAP1 SLC25A39 (-) 2 2 14630 -cellosaurus:CVCL_TM43 HAP1 SLC25A39 (-) 3 2 14631 -cellosaurus:CVCL_TM44 HAP1 SLC25A4 (-) 1 2 14632 -cellosaurus:CVCL_TM45 HAP1 SLC25A4 (-) 2 2 14633 -cellosaurus:CVCL_TM46 HAP1 SLC25A40 (-) 1 2 14634 -cellosaurus:CVCL_TM47 HAP1 SLC25A40 (-) 2 2 14635 -cellosaurus:CVCL_TM48 HAP1 SLC25A40 (-) 3 2 14636 -cellosaurus:CVCL_TM49 HAP1 SLC25A42 (-) 1 2 14637 -cellosaurus:CVCL_XT05 HAP1 SLC25A42 (-) 2 2 14638 -cellosaurus:CVCL_TM50 HAP1 SLC25A43 (-) 1 2 14639 -cellosaurus:CVCL_XT06 HAP1 SLC25A43 (-) 2 2 14640 -cellosaurus:CVCL_TM51 HAP1 SLC25A44 (-) 1 2 14641 -cellosaurus:CVCL_XT07 HAP1 SLC25A44 (-) 2 2 14642 -cellosaurus:CVCL_TM52 HAP1 SLC25A45 (-) 2 14643 -cellosaurus:CVCL_TM53 HAP1 SLC25A46 (-) 1 2 14644 -cellosaurus:CVCL_TM54 HAP1 SLC25A46 (-) 2 2 14645 -cellosaurus:CVCL_TM55 HAP1 SLC25A5 (-) 2 14646 -cellosaurus:CVCL_TM56 HAP1 SLC25A51 (-) 1 2 14647 -cellosaurus:CVCL_TM57 HAP1 SLC25A51 (-) 2 2 14648 -cellosaurus:CVCL_TM58 HAP1 SLC25A6 (-) 2 14649 -cellosaurus:CVCL_XT08 HAP1 SLC26A10 (-) 1 2 14650 -cellosaurus:CVCL_XT09 HAP1 SLC26A10 (-) 2 2 14651 -cellosaurus:CVCL_TM59 HAP1 SLC26A11 (-) 2 14652 -cellosaurus:CVCL_TM60 HAP1 SLC26A2 (-) 1 2 14653 -cellosaurus:CVCL_TM61 HAP1 SLC26A2 (-) 2 2 14654 -cellosaurus:CVCL_TM62 HAP1 SLC26A6 (-) 2 14655 -cellosaurus:CVCL_TM63 HAP1 SLC27A1 (-) 1 2 14656 -cellosaurus:CVCL_TM64 HAP1 SLC27A1 (-) 2 2 14657 -cellosaurus:CVCL_TM65 HAP1 SLC27A2 (-) 1 2 14658 -cellosaurus:CVCL_TM66 HAP1 SLC27A2 (-) 2 2 14659 -cellosaurus:CVCL_TM67 HAP1 SLC27A2 (-) 3 2 14660 -cellosaurus:CVCL_TM68 HAP1 SLC27A3 (-) 2 14661 -cellosaurus:CVCL_TM69 HAP1 SLC27A4 (-) 1 2 14662 -cellosaurus:CVCL_TM70 HAP1 SLC27A4 (-) 2 2 14663 -cellosaurus:CVCL_TM71 HAP1 SLC27A5 (-) 1 2 14664 -cellosaurus:CVCL_XT10 HAP1 SLC27A5 (-) 2 2 14665 -cellosaurus:CVCL_TM72 HAP1 SLC27A6 (-) 1 2 14666 -cellosaurus:CVCL_TM73 HAP1 SLC27A6 (-) 2 2 14667 -cellosaurus:CVCL_TM74 HAP1 SLC29A1 (-) 2 14668 -cellosaurus:CVCL_TM75 HAP1 SLC29A2 (-) 1 2 14669 -cellosaurus:CVCL_XT11 HAP1 SLC29A2 (-) 2 2 14670 -cellosaurus:CVCL_TM76 HAP1 SLC29A3 (-) 1 2 14671 -cellosaurus:CVCL_TM77 HAP1 SLC29A3 (-) 2 2 14672 -cellosaurus:CVCL_TM78 HAP1 SLC29A4 (-) 1 2 14673 -cellosaurus:CVCL_TM79 HAP1 SLC29A4 (-) 2 2 14674 -cellosaurus:CVCL_TM80 HAP1 SLC29A4 (-) 3 2 14675 -cellosaurus:CVCL_XT12 HAP1 SLC2A11 (-) 1 2 14676 -cellosaurus:CVCL_XT13 HAP1 SLC2A11 (-) 2 2 14677 -cellosaurus:CVCL_TM82 HAP1 SLC2A4RG (-) 2 14678 -cellosaurus:CVCL_TM83 HAP1 SLC2A6 (-) 1 2 14679 -cellosaurus:CVCL_XT14 HAP1 SLC2A6 (-) 2 2 14680 -cellosaurus:CVCL_TM84 HAP1 SLC2A8 (-) 1 2 14681 -cellosaurus:CVCL_TM85 HAP1 SLC2A8 (-) 2 2 14682 -cellosaurus:CVCL_TM86 HAP1 SLC30A1 (-) 2 14683 -cellosaurus:CVCL_TM87 HAP1 SLC30A10 (-) 1 2 14684 -cellosaurus:CVCL_TM88 HAP1 SLC30A10 (-) 2 2 14685 -cellosaurus:CVCL_TM89 HAP1 SLC30A10 (-) 3 2 14686 -cellosaurus:CVCL_TM90 HAP1 SLC30A3 (-) 1 2 14687 -cellosaurus:CVCL_TM91 HAP1 SLC30A3 (-) 2 2 14688 -cellosaurus:CVCL_TM92 HAP1 SLC30A5 (-) 1 2 14689 -cellosaurus:CVCL_XT15 HAP1 SLC30A5 (-) 2 2 14690 -cellosaurus:CVCL_XT16 HAP1 SLC30A5 (-) 3 2 14691 -cellosaurus:CVCL_TM93 HAP1 SLC30A6 (-) 2 14692 -cellosaurus:CVCL_TM94 HAP1 SLC30A7 (-) 1 2 14693 -cellosaurus:CVCL_TM95 HAP1 SLC30A7 (-) 2 2 14694 -cellosaurus:CVCL_TM96 HAP1 SLC30A9 (-) 2 14695 -cellosaurus:CVCL_TM97 HAP1 SLC31A1 (-) 2 14696 -cellosaurus:CVCL_TM98 HAP1 SLC31A2 (-) 1 2 14697 -cellosaurus:CVCL_XT17 HAP1 SLC31A2 (-) 2 2 14698 -cellosaurus:CVCL_TM99 HAP1 SLC33A1 (-) 1 2 14699 -cellosaurus:CVCL_TN00 HAP1 SLC33A1 (-) 2 2 14700 -cellosaurus:CVCL_TN01 HAP1 SLC34A2 (-) 1 2 14701 -cellosaurus:CVCL_TN02 HAP1 SLC34A2 (-) 2 2 14702 -cellosaurus:CVCL_TN03 HAP1 SLC35A1 (-) 1 2 14703 -cellosaurus:CVCL_TN04 HAP1 SLC35A1 (-) 2 2 14704 -cellosaurus:CVCL_TN05 HAP1 SLC35A3 (-) 1 2 14705 -cellosaurus:CVCL_TN06 HAP1 SLC35A3 (-) 2 2 14706 -cellosaurus:CVCL_TN07 HAP1 SLC35A4 (-) 1 2 14707 -cellosaurus:CVCL_XT18 HAP1 SLC35A4 (-) 2 2 14708 -cellosaurus:CVCL_TN08 HAP1 SLC35A5 (-) 1 2 14709 -cellosaurus:CVCL_TN09 HAP1 SLC35A5 (-) 2 2 14710 -cellosaurus:CVCL_TN10 HAP1 SLC35B2 (-) 1 2 14711 -cellosaurus:CVCL_XT19 HAP1 SLC35B2 (-) 2 2 14712 -cellosaurus:CVCL_TN11 HAP1 SLC35B3 (-) 1 2 14713 -cellosaurus:CVCL_XT20 HAP1 SLC35B3 (-) 2 2 14714 -cellosaurus:CVCL_TN12 HAP1 SLC35B4 (-) 1 2 14715 -cellosaurus:CVCL_TN13 HAP1 SLC35B4 (-) 2 2 14716 -cellosaurus:CVCL_TN14 HAP1 SLC35C1 (-) 1 2 14717 -cellosaurus:CVCL_XT21 HAP1 SLC35C1 (-) 2 2 14718 -cellosaurus:CVCL_TN15 HAP1 SLC35C2 (-) 1 2 14719 -cellosaurus:CVCL_XT22 HAP1 SLC35C2 (-) 2 2 14720 -cellosaurus:CVCL_TN16 HAP1 SLC35D1 (-) 1 2 14721 -cellosaurus:CVCL_TN17 HAP1 SLC35D1 (-) 2 2 14722 -cellosaurus:CVCL_TN18 HAP1 SLC35D2 (-) 1 2 14723 -cellosaurus:CVCL_XT23 HAP1 SLC35D2 (-) 2 2 14724 -cellosaurus:CVCL_TN19 HAP1 SLC35E1 (-) 1 2 14725 -cellosaurus:CVCL_TN20 HAP1 SLC35E1 (-) 2 2 14726 -cellosaurus:CVCL_TN21 HAP1 SLC35E2B (-) 1 2 14727 -cellosaurus:CVCL_TN22 HAP1 SLC35E2B (-) 2 2 14728 -cellosaurus:CVCL_TN23 HAP1 SLC35E3 (-) 1 2 14729 -cellosaurus:CVCL_XT24 HAP1 SLC35E3 (-) 2 2 14730 -cellosaurus:CVCL_TN24 HAP1 SLC35E4 (-) 1 2 14731 -cellosaurus:CVCL_XT25 HAP1 SLC35E4 (-) 2 2 14732 -cellosaurus:CVCL_TN25 HAP1 SLC35F1 (-) 1 2 14733 -cellosaurus:CVCL_TN26 HAP1 SLC35F1 (-) 2 2 14734 -cellosaurus:CVCL_TN27 HAP1 SLC35F2 (-) 1 2 14735 -cellosaurus:CVCL_TN28 HAP1 SLC35F2 (-) 2 2 14736 -cellosaurus:CVCL_TN29 HAP1 SLC35F5 (-) 1 2 14737 -cellosaurus:CVCL_XT26 HAP1 SLC35F5 (-) 2 2 14738 -cellosaurus:CVCL_TN30 HAP1 SLC35G1 (-) 2 14739 -cellosaurus:CVCL_TN31 HAP1 SLC35G2 (-) 2 14740 -cellosaurus:CVCL_TN32 HAP1 SLC36A1 (-) 1 2 14741 -cellosaurus:CVCL_XT27 HAP1 SLC36A1 (-) 2 2 14742 -cellosaurus:CVCL_XT28 HAP1 SLC36A1 (-) 3 2 14743 -cellosaurus:CVCL_TN33 HAP1 SLC36A4 (-) 1 2 14744 -cellosaurus:CVCL_TN34 HAP1 SLC36A4 (-) 2 2 14745 -cellosaurus:CVCL_TN35 HAP1 SLC36A4 (-) 3 2 14746 -cellosaurus:CVCL_TN36 HAP1 SLC37A1 (-) 1 2 14747 -cellosaurus:CVCL_XT29 HAP1 SLC37A1 (-) 2 2 14748 -cellosaurus:CVCL_TN37 HAP1 SLC37A4 (-) 1 2 14749 -cellosaurus:CVCL_TN38 HAP1 SLC37A4 (-) 2 2 14750 -cellosaurus:CVCL_TN39 HAP1 SLC38A1 (-) 2 14751 -cellosaurus:CVCL_TN40 HAP1 SLC38A10 (-) 1 2 14752 -cellosaurus:CVCL_TN41 HAP1 SLC38A10 (-) 2 2 14753 -cellosaurus:CVCL_TN42 HAP1 SLC38A2 (-) 1 2 14754 -cellosaurus:CVCL_TN43 HAP1 SLC38A2 (-) 2 2 14755 -cellosaurus:CVCL_TN44 HAP1 SLC38A5 (-) 1 2 14756 -cellosaurus:CVCL_TN45 HAP1 SLC38A5 (-) 2 2 14757 -cellosaurus:CVCL_TN46 HAP1 SLC38A6 (-) 2 14758 -cellosaurus:CVCL_TN47 HAP1 SLC38A7 (-) 2 14759 -cellosaurus:CVCL_TN48 HAP1 SLC38A9 (-) 1 2 14760 -cellosaurus:CVCL_TN49 HAP1 SLC38A9 (-) 2 2 14761 -cellosaurus:CVCL_TN50 HAP1 SLC39A1 (-) 1 2 14762 -cellosaurus:CVCL_TN51 HAP1 SLC39A1 (-) 2 2 14763 -cellosaurus:CVCL_TN52 HAP1 SLC39A11 (-) 2 14764 -cellosaurus:CVCL_TN53 HAP1 SLC39A13 (-) 1 2 14765 -cellosaurus:CVCL_XT30 HAP1 SLC39A13 (-) 2 2 14766 -cellosaurus:CVCL_TN54 HAP1 SLC39A14 (-) 1 2 14767 -cellosaurus:CVCL_TN55 HAP1 SLC39A14 (-) 2 2 14768 -cellosaurus:CVCL_TN56 HAP1 SLC39A3 (-) 1 2 14769 -cellosaurus:CVCL_TN57 HAP1 SLC39A3 (-) 2 2 14770 -cellosaurus:CVCL_TN58 HAP1 SLC39A6 (-) 2 14771 -cellosaurus:CVCL_TN59 HAP1 SLC39A8 (-) 1 2 14772 -cellosaurus:CVCL_TN60 HAP1 SLC39A8 (-) 2 2 14773 -cellosaurus:CVCL_TN61 HAP1 SLC39A8 (-) 3 2 14774 -cellosaurus:CVCL_TN62 HAP1 SLC39A9 (-) 1 2 14775 -cellosaurus:CVCL_TN63 HAP1 SLC39A9 (-) 2 2 14776 -cellosaurus:CVCL_TN64 HAP1 SLC40A1 (-) 1 2 14777 -cellosaurus:CVCL_TN65 HAP1 SLC40A1 (-) 2 2 14778 -cellosaurus:CVCL_TN66 HAP1 SLC41A1 (-) 2 14779 -cellosaurus:CVCL_TN67 HAP1 SLC41A2 (-) 2 14780 -cellosaurus:CVCL_TN68 HAP1 SLC41A3 (-) 1 2 14781 -cellosaurus:CVCL_TN69 HAP1 SLC41A3 (-) 2 2 14782 -cellosaurus:CVCL_TN70 HAP1 SLC43A1 (-) 2 14783 -cellosaurus:CVCL_TN71 HAP1 SLC43A2 (-) 1 2 14784 -cellosaurus:CVCL_TN72 HAP1 SLC43A2 (-) 2 2 14785 -cellosaurus:CVCL_TN73 HAP1 SLC43A3 (-) 1 2 14786 -cellosaurus:CVCL_TN74 HAP1 SLC43A3 (-) 2 2 14787 -cellosaurus:CVCL_TN75 HAP1 SLC44A1 (-) 2 14788 -cellosaurus:CVCL_TN76 HAP1 SLC44A2 (-) 1 2 14789 -cellosaurus:CVCL_TN77 HAP1 SLC44A2 (-) 2 2 14790 -cellosaurus:CVCL_TN78 HAP1 SLC44A3 (-) 1 2 14791 -cellosaurus:CVCL_XT31 HAP1 SLC44A3 (-) 2 2 14792 -cellosaurus:CVCL_TN79 HAP1 SLC45A3 (-) 1 2 14793 -cellosaurus:CVCL_TN80 HAP1 SLC45A3 (-) 2 2 14794 -cellosaurus:CVCL_TN81 HAP1 SLC46A1 (-) 1 2 14795 -cellosaurus:CVCL_XT32 HAP1 SLC46A1 (-) 2 2 14796 -cellosaurus:CVCL_TN82 HAP1 SLC46A3 (-) 1 2 14797 -cellosaurus:CVCL_TN83 HAP1 SLC46A3 (-) 2 2 14798 -cellosaurus:CVCL_TN84 HAP1 SLC46A3 (-) 3 2 14799 -cellosaurus:CVCL_TN85 HAP1 SLC47A1 (-) 2 14800 -cellosaurus:CVCL_TN86 HAP1 SLC48A1 (-) 2 14801 -cellosaurus:CVCL_TN87 HAP1 SLC4A10 (-) 2 14802 -cellosaurus:CVCL_TN88 HAP1 SLC4A11 (-) 2 14803 -cellosaurus:CVCL_TN89 HAP1 SLC4A1AP (-) 2 14804 -cellosaurus:CVCL_TN90 HAP1 SLC4A2 (-) 1 2 14805 -cellosaurus:CVCL_TN91 HAP1 SLC4A2 (-) 2 2 14806 -cellosaurus:CVCL_TN92 HAP1 SLC4A3 (-) 2 14807 -cellosaurus:CVCL_TN93 HAP1 SLC4A8 (-) 1 2 14808 -cellosaurus:CVCL_TN94 HAP1 SLC4A8 (-) 2 2 14809 -cellosaurus:CVCL_TN95 HAP1 SLC50A1 (-) 2 14810 -cellosaurus:CVCL_TN96 HAP1 SLC5A2 (-) 1 2 14811 -cellosaurus:CVCL_TN97 HAP1 SLC5A2 (-) 2 2 14812 -cellosaurus:CVCL_TN98 HAP1 SLC5A3 (-) 2 14813 -cellosaurus:CVCL_TN99 HAP1 SLC5A4 (-) 2 14814 -cellosaurus:CVCL_TP00 HAP1 SLC5A6 (-) 1 2 14815 -cellosaurus:CVCL_TP01 HAP1 SLC5A6 (-) 2 2 14816 -cellosaurus:CVCL_TP02 HAP1 SLC5A7 (-) 1 2 14817 -cellosaurus:CVCL_TP03 HAP1 SLC5A7 (-) 2 2 14818 -cellosaurus:CVCL_TP04 HAP1 SLC6A6 (-) 1 2 14819 -cellosaurus:CVCL_XT33 HAP1 SLC6A6 (-) 2 2 14820 -cellosaurus:CVCL_TP05 HAP1 SLC6A8 (-) 1 2 14821 -cellosaurus:CVCL_TP06 HAP1 SLC6A8 (-) 2 2 14822 -cellosaurus:CVCL_TP07 HAP1 SLC6A9 (-) 1 2 14823 -cellosaurus:CVCL_XT34 HAP1 SLC6A9 (-) 2 2 14824 -cellosaurus:CVCL_TP08 HAP1 SLC7A1 (-) 1 2 14825 -cellosaurus:CVCL_TP09 HAP1 SLC7A1 (-) 2 2 14826 -cellosaurus:CVCL_TP10 HAP1 SLC7A2 (-) 1 2 14827 -cellosaurus:CVCL_TP11 HAP1 SLC7A2 (-) 2 2 14828 -cellosaurus:CVCL_TP12 HAP1 SLC7A3 (-) 1 2 14829 -cellosaurus:CVCL_TP13 HAP1 SLC7A3 (-) 2 2 14830 -cellosaurus:CVCL_TP14 HAP1 SLC7A5 (-) 1 2 14831 -cellosaurus:CVCL_XT35 HAP1 SLC7A5 (-) 2 2 14832 -cellosaurus:CVCL_TP15 HAP1 SLC7A6 (-) 2 14833 -cellosaurus:CVCL_TP16 HAP1 SLC7A8 (-) 1 2 14834 -cellosaurus:CVCL_XT36 HAP1 SLC7A8 (-) 2 2 14835 -cellosaurus:CVCL_XT37 HAP1 SLC7A8 (-) 3 2 14836 -cellosaurus:CVCL_TP17 HAP1 SLC8B1 (-) 1 2 14837 -cellosaurus:CVCL_XT38 HAP1 SLC8B1 (-) 2 2 14838 -cellosaurus:CVCL_XT39 HAP1 SLC8B1 (-) 3 2 14839 -cellosaurus:CVCL_TP18 HAP1 SLC9A1 (-) 1 2 14840 -cellosaurus:CVCL_XT40 HAP1 SLC9A1 (-) 2 2 14841 -cellosaurus:CVCL_TP19 HAP1 SLC9A3 (-) 2 14842 -cellosaurus:CVCL_TP20 HAP1 SLC9A3R1 (-) 1 2 14843 -cellosaurus:CVCL_TP21 HAP1 SLC9A3R1 (-) 2 2 14844 -cellosaurus:CVCL_TP22 HAP1 SLC9A3R2 (-) 1 2 14845 -cellosaurus:CVCL_TP23 HAP1 SLC9A3R2 (-) 2 2 14846 -cellosaurus:CVCL_TP24 HAP1 SLC9A6 (-) 1 2 14847 -cellosaurus:CVCL_TP25 HAP1 SLC9A6 (-) 2 2 14848 -cellosaurus:CVCL_TP26 HAP1 SLC9A6 (-) 3 2 14849 -cellosaurus:CVCL_TP27 HAP1 SLC9A7 (-) 1 2 14850 -cellosaurus:CVCL_TP28 HAP1 SLC9A7 (-) 2 2 14851 -cellosaurus:CVCL_TP29 HAP1 SLC9A7 (-) 3 2 14852 -cellosaurus:CVCL_TP30 HAP1 SLC9A8 (-) 1 2 14853 -cellosaurus:CVCL_XT41 HAP1 SLC9A8 (-) 2 2 14854 -cellosaurus:CVCL_XT42 HAP1 SLC9A8 (-) 3 2 14855 -cellosaurus:CVCL_TP31 HAP1 SLC9A9 (-) 1 2 14856 -cellosaurus:CVCL_TP32 HAP1 SLC9A9 (-) 2 2 14857 -cellosaurus:CVCL_TP33 HAP1 SLC9A9 (-) 3 2 14858 -cellosaurus:CVCL_TP34 HAP1 SLC9B2 (-) 2 14859 -cellosaurus:CVCL_TP35 HAP1 SLC9C1 (-) 1 2 14860 -cellosaurus:CVCL_TP36 HAP1 SLC9C1 (-) 2 2 14861 -cellosaurus:CVCL_XT43 HAP1 SLCO1A2 (-) 2 14862 -cellosaurus:CVCL_TP37 HAP1 SLCO3A1 (-) 1 2 14863 -cellosaurus:CVCL_XT44 HAP1 SLCO3A1 (-) 2 2 14864 -cellosaurus:CVCL_TP38 HAP1 SLCO4A1 (-) 1 2 14865 -cellosaurus:CVCL_XT45 HAP1 SLCO4A1 (-) 2 2 14866 -cellosaurus:CVCL_XT46 HAP1 SLCO4A1 (-) 3 2 14867 -cellosaurus:CVCL_TP39 HAP1 SLCO5A1 (-) 1 2 14868 -cellosaurus:CVCL_XT47 HAP1 SLCO5A1 (-) 2 2 14869 -cellosaurus:CVCL_XT48 HAP1 SLCO5A1 (-) 3 2 14870 -cellosaurus:CVCL_TP40 HAP1 SLFN11 (-) 1 2 14871 -cellosaurus:CVCL_XT49 HAP1 SLFN11 (-) 2 2 14872 -cellosaurus:CVCL_TP41 HAP1 SLIT2 (-) 1 2 14873 -cellosaurus:CVCL_XT50 HAP1 SLIT2 (-) 2 2 14874 -cellosaurus:CVCL_XT51 HAP1 SLIT2 (-) 3 2 14875 -cellosaurus:CVCL_TP42 HAP1 SLK (-) 1 2 14876 -cellosaurus:CVCL_TP43 HAP1 SLK (-) 2 2 14877 -cellosaurus:CVCL_TP44 HAP1 SLX1B (-) 1 2 14878 -cellosaurus:CVCL_TP45 HAP1 SLX1B (-) 2 2 14879 -cellosaurus:CVCL_TP46 HAP1 SLX4 (-) 2 14880 -cellosaurus:CVCL_TP47 HAP1 SMAD4 (-) 1 2 14881 -cellosaurus:CVCL_XT52 HAP1 SMAD4 (-) 2 2 14882 -cellosaurus:CVCL_XT53 HAP1 SMAD4 (-) 3 2 14883 -cellosaurus:CVCL_TP48 HAP1 SMARCA2 (-) 1 2 14884 -cellosaurus:CVCL_TP49 HAP1 SMARCA2 (-) 2 2 14885 -cellosaurus:CVCL_TP50 HAP1 SMARCA4 (-) 1 2 14886 -cellosaurus:CVCL_TP51 HAP1 SMARCA4 (-) 2 2 14887 -cellosaurus:CVCL_TP52 HAP1 SMARCA4 (-) 3 2 14888 -cellosaurus:CVCL_TP53 HAP1 SMARCA4 (-) 4 2 14889 -cellosaurus:CVCL_TP54 HAP1 SMARCA4 (-) 5 2 14890 -cellosaurus:CVCL_TP55 HAP1 SMARCC1 (-) 1 2 14891 -cellosaurus:CVCL_TP56 HAP1 SMARCC1 (-) 2 2 14892 -cellosaurus:CVCL_TP57 HAP1 SMARCC2 (-) 1 2 14893 -cellosaurus:CVCL_XT54 HAP1 SMARCC2 (-) 2 2 14894 -cellosaurus:CVCL_TP58 HAP1 SMARCD1 (-) 1 2 14895 -cellosaurus:CVCL_TP59 HAP1 SMARCD1 (-) 2 2 14896 -cellosaurus:CVCL_TP60 HAP1 SMARCD1 (-) 3 2 14897 -cellosaurus:CVCL_TP61 HAP1 SMARCD2 (-) 2 14898 -cellosaurus:CVCL_TP62 HAP1 SMARCD3 (-) 1 2 14899 -cellosaurus:CVCL_TP63 HAP1 SMARCD3 (-) 2 2 14900 -cellosaurus:CVCL_XT55 HAP1 SMCHD1 (-) 2 14901 -cellosaurus:CVCL_TP64 HAP1 SMCR8 (-) 2 14902 -cellosaurus:CVCL_TP65 HAP1 SMO (-) 1 2 14903 -cellosaurus:CVCL_TP66 HAP1 SMO (-) 2 2 14904 -cellosaurus:CVCL_TP67 HAP1 SMOX (-) 1 2 14905 -cellosaurus:CVCL_TP68 HAP1 SMOX (-) 2 2 14906 -cellosaurus:CVCL_TP69 HAP1 SMPD1 (-) 1 2 14907 -cellosaurus:CVCL_TP70 HAP1 SMPD1 (-) 2 2 14908 -cellosaurus:CVCL_TP71 HAP1 SMS (-) 2 14909 -cellosaurus:CVCL_TP72 HAP1 SMTN (-) 1 2 14910 -cellosaurus:CVCL_XT56 HAP1 SMTN (-) 2 2 14911 -cellosaurus:CVCL_TP73 HAP1 SMUG1 (-) 2 14912 -cellosaurus:CVCL_XT57 HAP1 SMURF1 (-) 2 14913 -cellosaurus:CVCL_XT58 HAP1 SMURF2 (-) 2 14914 -cellosaurus:CVCL_TP74 HAP1 SMYD3 (-) 1 2 14915 -cellosaurus:CVCL_XT59 HAP1 SMYD3 (-) 2 2 14916 -cellosaurus:CVCL_TP75 HAP1 SMYD5 (-) 1 2 14917 -cellosaurus:CVCL_XT60 HAP1 SMYD5 (-) 2 2 14918 -cellosaurus:CVCL_TP76 HAP1 SNAP23 (-) 1 2 14919 -cellosaurus:CVCL_TP77 HAP1 SNAP23 (-) 2 2 14920 -cellosaurus:CVCL_TP78 HAP1 SNAP23 (-) 3 2 14921 -cellosaurus:CVCL_TP79 HAP1 SNAP23 (-) 4 2 14922 -cellosaurus:CVCL_TP80 HAP1 SNAP23 (-) 5 2 14923 -cellosaurus:CVCL_TP81 HAP1 SNCA (-) 1 2 14924 -cellosaurus:CVCL_TP82 HAP1 SNCA (-) 2 2 14925 -cellosaurus:CVCL_TP83 HAP1 SNCA (-) 3 2 14926 -cellosaurus:CVCL_TP84 HAP1 SNRK (-) 2 14927 -cellosaurus:CVCL_TP85 HAP1 SNX10 (-) 1 2 14928 -cellosaurus:CVCL_TP86 HAP1 SNX10 (-) 2 2 14929 -cellosaurus:CVCL_XT61 HAP1 SNX10 (-) 3 2 14930 -cellosaurus:CVCL_XT62 HAP1 SNX10 (-) 4 2 14931 -cellosaurus:CVCL_TP87 HAP1 SNX17 (-) 1 2 14932 -cellosaurus:CVCL_TP88 HAP1 SNX17 (-) 2 2 14933 -cellosaurus:CVCL_XT63 HAP1 SNX19 (-) 2 14934 -cellosaurus:CVCL_TP89 HAP1 SNX3 (-) 1 2 14935 -cellosaurus:CVCL_TP90 HAP1 SNX3 (-) 2 2 14936 -cellosaurus:CVCL_TP91 HAP1 SNX9 (-) 1 2 14937 -cellosaurus:CVCL_TP92 HAP1 SNX9 (-) 2 2 14938 -cellosaurus:CVCL_TP93 HAP1 SNX9 (-) 3 2 14939 -cellosaurus:CVCL_TP94 HAP1 SOAT1 (-) 1 2 14940 -cellosaurus:CVCL_TP95 HAP1 SOAT1 (-) 2 2 14941 -cellosaurus:CVCL_TP96 HAP1 SOAT1 (-) 3 2 14942 -cellosaurus:CVCL_XT64 HAP1 SOCS2 (-) 2 14943 -cellosaurus:CVCL_TP97 HAP1 SOCS3 (-) 1 2 14944 -cellosaurus:CVCL_XT65 HAP1 SOCS3 (-) 2 2 14945 -cellosaurus:CVCL_XT66 HAP1 SOCS3 (-) 3 2 14946 -cellosaurus:CVCL_TP98 HAP1 SOD2 (-) 2 14947 -cellosaurus:CVCL_TP99 HAP1 SORD (-) 1 2 14948 -cellosaurus:CVCL_XT68 HAP1 SORD (-) 2 2 14949 -cellosaurus:CVCL_TQ00 HAP1 SORT1 (-) 1 2 14950 -cellosaurus:CVCL_TQ01 HAP1 SORT1 (-) 2 2 14951 -cellosaurus:CVCL_TQ02 HAP1 SOX5 (-) 1 2 14952 -cellosaurus:CVCL_TQ03 HAP1 SOX5 (-) 2 2 14953 -cellosaurus:CVCL_TQ04 HAP1 SP1 (-) 2 14954 -cellosaurus:CVCL_TQ05 HAP1 SP100 (-) 1 2 14955 -cellosaurus:CVCL_TQ06 HAP1 SP100 (-) 2 2 14956 -cellosaurus:CVCL_TQ07 HAP1 SP110 (-) 1 2 14957 -cellosaurus:CVCL_TQ08 HAP1 SP110 (-) 2 2 14958 -cellosaurus:CVCL_TQ09 HAP1 SP140 (-) 1 2 14959 -cellosaurus:CVCL_TQ10 HAP1 SP140 (-) 2 2 14960 -cellosaurus:CVCL_TQ11 HAP1 SP3 (-) 1 2 14961 -cellosaurus:CVCL_TQ12 HAP1 SP3 (-) 2 2 14962 -cellosaurus:CVCL_XT69 HAP1 SPAG9 (-) 2 14963 -cellosaurus:CVCL_TQ13 HAP1 SPARC (-) 1 2 14964 -cellosaurus:CVCL_XT70 HAP1 SPARC (-) 2 2 14965 -cellosaurus:CVCL_TQ14 HAP1 SPATA20 (-) 1 2 14966 -cellosaurus:CVCL_XT71 HAP1 SPATA20 (-) 2 2 14967 -cellosaurus:CVCL_XT72 HAP1 SPATA20 (-) 3 2 14968 -cellosaurus:CVCL_XT73 HAP1 SPATA20 (-) 4 2 14969 -cellosaurus:CVCL_TQ15 HAP1 SPEG (-) 1 2 14970 -cellosaurus:CVCL_TQ16 HAP1 SPEG (-) 2 2 14971 -cellosaurus:CVCL_TQ17 HAP1 SPEG (-) 3 2 14972 -cellosaurus:CVCL_TQ18 HAP1 SPG21 (-) 2 14973 -cellosaurus:CVCL_TQ19 HAP1 SPIRE1 (-) 1 2 14974 -cellosaurus:CVCL_TQ20 HAP1 SPIRE1 (-) 2 2 14975 -cellosaurus:CVCL_TQ21 HAP1 SPNS1 (-) 1 2 14976 -cellosaurus:CVCL_XT74 HAP1 SPNS1 (-) 2 2 14977 -cellosaurus:CVCL_XT75 HAP1 SPNS1 (-) 3 2 14978 -cellosaurus:CVCL_XT76 HAP1 SPNS1 (-) 4 2 14979 -cellosaurus:CVCL_XT77 HAP1 SPNS1 (-) 5 2 14980 -cellosaurus:CVCL_XT78 HAP1 SPOP (-) 2 14981 -cellosaurus:CVCL_TQ22 HAP1 SPP1 (-) 1 2 14982 -cellosaurus:CVCL_XT79 HAP1 SPP1 (-) 2 2 14983 -cellosaurus:CVCL_XT80 HAP1 SPP1 (-) 3 2 14984 -cellosaurus:CVCL_TQ23 HAP1 SPR (-) 1 2 14985 -cellosaurus:CVCL_TQ24 HAP1 SPR (-) 2 2 14986 -cellosaurus:CVCL_TQ25 HAP1 SPRED2 (-) 1 2 14987 -cellosaurus:CVCL_TQ26 HAP1 SPRED2 (-) 2 2 14988 -cellosaurus:CVCL_TQ27 HAP1 SPRYD4 (-) 1 2 14989 -cellosaurus:CVCL_XT81 HAP1 SPRYD4 (-) 2 2 14990 -cellosaurus:CVCL_XT82 HAP1 SPRYD4 (-) 3 2 14991 -cellosaurus:CVCL_XT83 HAP1 SPRYD4 (-) 4 2 14992 -cellosaurus:CVCL_TQ28 HAP1 SPTLC1 (-) 1 2 14993 -cellosaurus:CVCL_TQ29 HAP1 SPTLC1 (-) 2 2 14994 -cellosaurus:CVCL_TQ30 HAP1 SPTLC2 (-) 1 2 14995 -cellosaurus:CVCL_XT84 HAP1 SPTLC2 (-) 2 2 14996 -cellosaurus:CVCL_XT85 HAP1 SPTLC2 (-) 3 2 14997 -cellosaurus:CVCL_TQ31 HAP1 SQLE (-) 1 2 14998 -cellosaurus:CVCL_TQ32 HAP1 SQLE (-) 2 2 14999 -cellosaurus:CVCL_TQ33 HAP1 SQRDL (-) 2 15000 -cellosaurus:CVCL_TQ34 HAP1 SQSTM1 (-) 1 2 15001 -cellosaurus:CVCL_TQ35 HAP1 SQSTM1 (-) 2 2 15002 -cellosaurus:CVCL_TQ36 HAP1 SRC (-) 1 2 15003 -cellosaurus:CVCL_TQ37 HAP1 SRC (-) 2 2 15004 -cellosaurus:CVCL_TQ38 HAP1 SRC (-) 3 2 15005 -cellosaurus:CVCL_TQ39 HAP1 SRD5A1 (-) 1 2 15006 -cellosaurus:CVCL_TQ40 HAP1 SRD5A1 (-) 2 2 15007 -cellosaurus:CVCL_TQ41 HAP1 SREBF1 (-) 2 15008 -cellosaurus:CVCL_TQ42 HAP1 SREBF2 (-) 1 2 15009 -cellosaurus:CVCL_TQ43 HAP1 SREBF2 (-) 2 2 15010 -cellosaurus:CVCL_TQ44 HAP1 SREBF2 (-) 3 2 15011 -cellosaurus:CVCL_TQ45 HAP1 SREBF2 (-) 4 2 15012 -cellosaurus:CVCL_TQ46 HAP1 SRPK1 (-) 1 2 15013 -cellosaurus:CVCL_TQ47 HAP1 SRPK1 (-) 2 2 15014 -cellosaurus:CVCL_TQ48 HAP1 SRPK2 (-) 2 15015 -cellosaurus:CVCL_TQ49 HAP1 SRPK3 (-) 2 15016 -cellosaurus:CVCL_TQ50 HAP1 SRXN1 (-) 1 2 15017 -cellosaurus:CVCL_XT86 HAP1 SRXN1 (-) 2 2 15018 -cellosaurus:CVCL_XT87 HAP1 SRXN1 (-) 3 2 15019 -cellosaurus:CVCL_TQ51 HAP1 SSBP4 (-) 1 2 15020 -cellosaurus:CVCL_XT88 HAP1 SSBP4 (-) 2 2 15021 -cellosaurus:CVCL_XT89 HAP1 SSBP4 (-) 3 2 15022 -cellosaurus:CVCL_TQ52 HAP1 ST3GAL5 (-) 1 2 15023 -cellosaurus:CVCL_TQ53 HAP1 ST3GAL5 (-) 2 2 15024 -cellosaurus:CVCL_TQ54 HAP1 STAMBP (-) 2 15025 -cellosaurus:CVCL_TQ55 HAP1 STAMBPL1 (-) 1 2 15026 -cellosaurus:CVCL_TQ56 HAP1 STAMBPL1 (-) 2 2 15027 -cellosaurus:CVCL_TQ57 HAP1 STAT1 (-) 1 2 15028 -cellosaurus:CVCL_TQ58 HAP1 STAT1 (-) 2 2 15029 -cellosaurus:CVCL_TQ59 HAP1 STAT1 (-) 3 2 15030 -cellosaurus:CVCL_TQ60 HAP1 STAT1 (-) 4 2 15031 -cellosaurus:CVCL_TQ61 HAP1 STAT2 (-) 1 2 15032 -cellosaurus:CVCL_XT90 HAP1 STAT2 (-) 2 2 15033 -cellosaurus:CVCL_XT91 HAP1 STAT2 (-) 3 2 15034 -cellosaurus:CVCL_TQ62 HAP1 STAT3 (-) 1 2 15035 -cellosaurus:CVCL_TQ63 HAP1 STAT3 (-) 2 2 15036 -cellosaurus:CVCL_TQ64 HAP1 STAT5B (-) 1 2 15037 -cellosaurus:CVCL_TQ65 HAP1 STAT5B (-) 2 2 15038 -cellosaurus:CVCL_TQ66 HAP1 STAT6 (-) 1 2 15039 -cellosaurus:CVCL_XT92 HAP1 STAT6 (-) 2 2 15040 -cellosaurus:CVCL_XT93 HAP1 STIM1 (-) 1 2 15041 -cellosaurus:CVCL_XT94 HAP1 STIM1 (-) 2 2 15042 -cellosaurus:CVCL_XT95 HAP1 STIM1 (-) 3 2 15043 -cellosaurus:CVCL_XT96 HAP1 STIM1 (-) 4 2 15044 -cellosaurus:CVCL_TQ68 HAP1 STIP1 (-) 1 2 15045 -cellosaurus:CVCL_XT97 HAP1 STIP1 (-) 2 2 15046 -cellosaurus:CVCL_TQ69 HAP1 STK10 (-) 1 2 15047 -cellosaurus:CVCL_TQ70 HAP1 STK10 (-) 2 2 15048 -cellosaurus:CVCL_TQ71 HAP1 STK11 (-) 1 2 15049 -cellosaurus:CVCL_TQ72 HAP1 STK11 (-) 2 2 15050 -cellosaurus:CVCL_TQ73 HAP1 STK16 (-) 1 2 15051 -cellosaurus:CVCL_TQ74 HAP1 STK16 (-) 2 2 15052 -cellosaurus:CVCL_TQ75 HAP1 STK17A (-) 2 15053 -cellosaurus:CVCL_TQ76 HAP1 STK17B (-) 1 2 15054 -cellosaurus:CVCL_TQ77 HAP1 STK17B (-) 2 2 15055 -cellosaurus:CVCL_TQ78 HAP1 STK19 (-) 1 2 15056 -cellosaurus:CVCL_TQ79 HAP1 STK19 (-) 2 2 15057 -cellosaurus:CVCL_TQ80 HAP1 STK25 (-) 1 2 15058 -cellosaurus:CVCL_TQ81 HAP1 STK25 (-) 2 2 15059 -cellosaurus:CVCL_TQ82 HAP1 STK25 (-) 3 2 15060 -cellosaurus:CVCL_TQ83 HAP1 STK3 (-) 1 2 15061 -cellosaurus:CVCL_TQ84 HAP1 STK3 (-) 2 2 15062 -cellosaurus:CVCL_TQ85 HAP1 STK3 (-) 3 2 15063 -cellosaurus:CVCL_TQ86 HAP1 STK32B (-) 1 2 15064 -cellosaurus:CVCL_TQ87 HAP1 STK32B (-) 2 2 15065 -cellosaurus:CVCL_TQ88 HAP1 STK32C (-) 1 2 15066 -cellosaurus:CVCL_TQ89 HAP1 STK32C (-) 2 2 15067 -cellosaurus:CVCL_XT98 HAP1 STK33 (-) 1 2 15068 -cellosaurus:CVCL_XT99 HAP1 STK33 (-) 2 2 15069 -cellosaurus:CVCL_XU00 HAP1 STK33 (-) 3 2 15070 -cellosaurus:CVCL_TQ90 HAP1 STK38 (-) 2 15071 -cellosaurus:CVCL_TQ91 HAP1 STK38L (-) 2 15072 -cellosaurus:CVCL_TQ92 HAP1 STK39 (-) 1 2 15073 -cellosaurus:CVCL_TQ93 HAP1 STK39 (-) 2 2 15074 -cellosaurus:CVCL_TQ94 HAP1 STK39 (-) 3 2 15075 -cellosaurus:CVCL_TQ95 HAP1 STK4 (-) 1 2 15076 -cellosaurus:CVCL_TQ96 HAP1 STK4 (-) 2 2 15077 -cellosaurus:CVCL_TQ97 HAP1 STK40 (-) 2 15078 -cellosaurus:CVCL_TQ98 HAP1 STRADA (-) 1 2 15079 -cellosaurus:CVCL_TQ99 HAP1 STRADA (-) 2 2 15080 -cellosaurus:CVCL_TR00 HAP1 STRADB (-) 1 2 15081 -cellosaurus:CVCL_TR01 HAP1 STRADB (-) 2 2 15082 -cellosaurus:CVCL_TR02 HAP1 STRADB (-) 3 2 15083 -cellosaurus:CVCL_TR03 HAP1 STRN3 (-) 1 2 15084 -cellosaurus:CVCL_TR04 HAP1 STRN3 (-) 2 2 15085 -cellosaurus:CVCL_TR05 HAP1 STRN3 (-) 3 2 15086 -cellosaurus:CVCL_TR06 HAP1 STRN3 (-) 4 2 15087 -cellosaurus:CVCL_TR07 HAP1 STS (-) 2 15088 -cellosaurus:CVCL_TR08 HAP1 STX17 (-) 1 2 15089 -cellosaurus:CVCL_XU01 HAP1 STX17 (-) 2 2 15090 -cellosaurus:CVCL_XU02 HAP1 STX17 (-) 3 2 15091 -cellosaurus:CVCL_TR09 HAP1 STX2 (-) 1 2 15092 -cellosaurus:CVCL_TR10 HAP1 STX2 (-) 2 2 15093 -cellosaurus:CVCL_TR11 HAP1 STX2 (-) 3 2 15094 -cellosaurus:CVCL_TR12 HAP1 STX2 (-) 4 2 15095 -cellosaurus:CVCL_TR13 HAP1 STX4 (-) 1 2 15096 -cellosaurus:CVCL_TR14 HAP1 STX4 (-) 2 2 15097 -cellosaurus:CVCL_TR15 HAP1 STYK1 (-) 1 2 15098 -cellosaurus:CVCL_TR16 HAP1 STYK1 (-) 2 2 15099 -cellosaurus:CVCL_TR17 HAP1 STYK1 (-) 3 2 15100 -cellosaurus:CVCL_TR18 HAP1 SUFU (-) 1 2 15101 -cellosaurus:CVCL_TR19 HAP1 SUFU (-) 2 2 15102 -cellosaurus:CVCL_TR20 HAP1 SUMO1 (-) 1 2 15103 -cellosaurus:CVCL_TR21 HAP1 SUMO1 (-) 2 2 15104 -cellosaurus:CVCL_TR22 HAP1 SUMO1 (-) 3 2 15105 -cellosaurus:CVCL_TR23 HAP1 SUMO1 (-) 4 2 15106 -cellosaurus:CVCL_TR24 HAP1 SUMO3 (-) 1 2 15107 -cellosaurus:CVCL_TR25 HAP1 SUMO3 (-) 2 2 15108 -cellosaurus:CVCL_XU03 HAP1 SUN2 (-) 2 15109 -cellosaurus:CVCL_XU04 HAP1 SURF1 (-) 2 15110 -cellosaurus:CVCL_TR26 HAP1 SURF4 (-) 1 2 15111 -cellosaurus:CVCL_TR27 HAP1 SURF4 (-) 2 2 15112 -cellosaurus:CVCL_TR28 HAP1 SUV39H1 (-) 1 2 15113 -cellosaurus:CVCL_TR29 HAP1 SUV39H1 (-) 2 2 15114 -cellosaurus:CVCL_TR30 HAP1 SUZ12 (-) 1 2 15115 -cellosaurus:CVCL_TR31 HAP1 SUZ12 (-) 2 2 15116 -cellosaurus:CVCL_TR32 HAP1 SYK (-) 2 15117 -cellosaurus:CVCL_XU05 HAP1 SYNCRIP (-) 2 15118 -cellosaurus:CVCL_TR33 HAP1 SYNJ1 (-) 1 2 15119 -cellosaurus:CVCL_TR34 HAP1 SYNJ1 (-) 2 2 15120 -cellosaurus:CVCL_TR35 HAP1 SYNJ2 (-) 1 2 15121 -cellosaurus:CVCL_TR36 HAP1 SYNJ2 (-) 2 2 15122 -cellosaurus:CVCL_TR37 HAP1 SYNJ2 (-) 3 2 15123 -cellosaurus:CVCL_TR38 HAP1 SYT2 (-) 1 2 15124 -cellosaurus:CVCL_TR39 HAP1 SYT2 (-) 2 2 15125 -cellosaurus:CVCL_TR40 HAP1 SZT2 (-) 3 2 15126 -cellosaurus:CVCL_TR41 HAP1 TAB1 (-) 1 2 15127 -cellosaurus:CVCL_TR42 HAP1 TAB1 (-) 2 2 15128 -cellosaurus:CVCL_TR43 HAP1 TAB2 (-) 1 2 15129 -cellosaurus:CVCL_TR44 HAP1 TAB2 (-) 2 2 15130 -cellosaurus:CVCL_TR45 HAP1 TAB3 (-) 2 15131 -cellosaurus:CVCL_TR46 HAP1 TAF15 (-) 1 2 15132 -cellosaurus:CVCL_TR47 HAP1 TAF15 (-) 2 2 15133 -cellosaurus:CVCL_TR48 HAP1 TAF1L (-) 2 15134 -cellosaurus:CVCL_TR49 HAP1 TAF5L (-) 1 2 15135 -cellosaurus:CVCL_TR50 HAP1 TAF5L (-) 2 2 15136 -cellosaurus:CVCL_TR51 HAP1 TAGLN2 (-) 1 2 15137 -cellosaurus:CVCL_XU06 HAP1 TAGLN2 (-) 2 2 15138 -cellosaurus:CVCL_TR52 HAP1 TANK (-) 1 2 15139 -cellosaurus:CVCL_TR53 HAP1 TANK (-) 2 2 15140 -cellosaurus:CVCL_TR54 HAP1 TAOK1 (-) 1 2 15141 -cellosaurus:CVCL_TR55 HAP1 TAOK1 (-) 2 2 15142 -cellosaurus:CVCL_TR56 HAP1 TAOK2 (-) 1 2 15143 -cellosaurus:CVCL_TR57 HAP1 TAOK2 (-) 2 2 15144 -cellosaurus:CVCL_TR58 HAP1 TAOK3 (-) 1 2 15145 -cellosaurus:CVCL_TR59 HAP1 TAOK3 (-) 2 2 15146 -cellosaurus:CVCL_TR60 HAP1 TARBP2 (-) 1 2 15147 -cellosaurus:CVCL_TR61 HAP1 TARBP2 (-) 2 2 15148 -cellosaurus:CVCL_TR62 HAP1 TARBP2 (-) 3 2 15149 -cellosaurus:CVCL_TR63 HAP1 TARBP2 (-) 4 2 15150 -cellosaurus:CVCL_TR64 HAP1 TARDBP (-) 1 2 15151 -cellosaurus:CVCL_TR65 HAP1 TARDBP (-) 2 2 15152 -cellosaurus:CVCL_TR66 HAP1 TASP1 (-) 1 2 15153 -cellosaurus:CVCL_XU07 HAP1 TASP1 (-) 2 2 15154 -cellosaurus:CVCL_TR67 HAP1 TAZ (-) 1 2 15155 -cellosaurus:CVCL_TR68 HAP1 TAZ (-) 2 2 15156 -cellosaurus:CVCL_XU08 HAP1 TAZ (-) 3 2 15157 -cellosaurus:CVCL_TR69 HAP1 TBC1D24 (-) 1 2 15158 -cellosaurus:CVCL_TR70 HAP1 TBC1D24 (-) 2 2 15159 -cellosaurus:CVCL_TR71 HAP1 TBCK (-) 2 15160 -cellosaurus:CVCL_TR72 HAP1 TBK1 (-) 1 2 15161 -cellosaurus:CVCL_TR73 HAP1 TBK1 (-) 2 2 15162 -cellosaurus:CVCL_TR74 HAP1 TBKBP1 (-) 1 2 15163 -cellosaurus:CVCL_TR75 HAP1 TBKBP1 (-) 2 2 15164 -cellosaurus:CVCL_TR76 HAP1 TBX21 (-) 1 2 15165 -cellosaurus:CVCL_XU09 HAP1 TBX21 (-) 2 2 15166 -cellosaurus:CVCL_TR77 HAP1 TBX3 (-) 1 2 15167 -cellosaurus:CVCL_TR78 HAP1 TBX3 (-) 2 2 15168 -cellosaurus:CVCL_TR79 HAP1 TCERG1 (-) 2 15169 -cellosaurus:CVCL_TR80 HAP1 TCF19 (-) 1 2 15170 -cellosaurus:CVCL_XU10 HAP1 TCF19 (-) 2 2 15171 -cellosaurus:CVCL_TR81 HAP1 TCF7L2 (-) 1 2 15172 -cellosaurus:CVCL_XU11 HAP1 TCF7L2 (-) 2 2 15173 -cellosaurus:CVCL_TR82 HAP1 TDG (-) 1 2 15174 -cellosaurus:CVCL_XU12 HAP1 TDG (-) 2 2 15175 -cellosaurus:CVCL_XU13 HAP1 TDG (-) 3 2 15176 -cellosaurus:CVCL_TR83 HAP1 TDP1 (-) 1 2 15177 -cellosaurus:CVCL_TR84 HAP1 TDP1 (-) 2 2 15178 -cellosaurus:CVCL_TR85 HAP1 TDP1 (-) 3 2 15179 -cellosaurus:CVCL_XU14 HAP1 TDP2 (-) 2 15180 -cellosaurus:CVCL_TR86 HAP1 TEAD4 (-) 1 2 15181 -cellosaurus:CVCL_XU16 HAP1 TEAD4 (-) 2 2 15182 -cellosaurus:CVCL_TR87 HAP1 TEC (-) 2 15183 -cellosaurus:CVCL_TR88 HAP1 TECPR2 (-) 1 2 15184 -cellosaurus:CVCL_TR89 HAP1 TECPR2 (-) 2 2 15185 -cellosaurus:CVCL_TR90 HAP1 TECPR2 (-) 3 2 15186 -cellosaurus:CVCL_TR91 HAP1 TEK (-) 1 2 15187 -cellosaurus:CVCL_TR92 HAP1 TEK (-) 2 2 15188 -cellosaurus:CVCL_TR93 HAP1 TEK (-) 3 2 15189 -cellosaurus:CVCL_TR94 HAP1 TEP1 (-) 1 2 15190 -cellosaurus:CVCL_TR95 HAP1 TEP1 (-) 2 2 15191 -cellosaurus:CVCL_TR96 HAP1 TEP1 (-) 3 2 15192 -cellosaurus:CVCL_TR97 HAP1 TERT (-) 1 2 15193 -cellosaurus:CVCL_TR98 HAP1 TERT (-) 2 2 15194 -cellosaurus:CVCL_TR99 HAP1 TESK1 (-) 1 2 15195 -cellosaurus:CVCL_TS00 HAP1 TESK1 (-) 2 2 15196 -cellosaurus:CVCL_TS01 HAP1 TESK2 (-) 1 2 15197 -cellosaurus:CVCL_TS02 HAP1 TESK2 (-) 2 2 15198 -cellosaurus:CVCL_TS03 HAP1 TET1 (-) 1 2 15199 -cellosaurus:CVCL_TS04 HAP1 TET1 (-) 2 2 15200 -cellosaurus:CVCL_TS05 HAP1 TET2 (-) 1 2 15201 -cellosaurus:CVCL_TS06 HAP1 TET2 (-) 2 2 15202 -cellosaurus:CVCL_TS07 HAP1 TET2 (-) 3 2 15203 -cellosaurus:CVCL_TS08 HAP1 TET2 (-) 4 2 15204 -cellosaurus:CVCL_TS09 HAP1 TET2 (-) 5 2 15205 -cellosaurus:CVCL_TS10 HAP1 TET3 (-) 1 2 15206 -cellosaurus:CVCL_TS11 HAP1 TET3 (-) 2 2 15207 -cellosaurus:CVCL_TS12 HAP1 TET3 (-) 3 2 15208 -cellosaurus:CVCL_TS13 HAP1 TEX2 (-) 1 2 15209 -cellosaurus:CVCL_TS14 HAP1 TEX2 (-) 2 2 15210 -cellosaurus:CVCL_TS15 HAP1 TFAP2A (-) 2 15211 -cellosaurus:CVCL_TS16 HAP1 TFE3 (-) 1 2 15212 -cellosaurus:CVCL_TS17 HAP1 TFE3 (-) 2 2 15213 -cellosaurus:CVCL_TS18 HAP1 TFEB (-) 1 2 15214 -cellosaurus:CVCL_TS19 HAP1 TFEB (-) 2 2 15215 -cellosaurus:CVCL_TS20 HAP1 TFG (-) 1 2 15216 -cellosaurus:CVCL_XU17 HAP1 TFG (-) 2 2 15217 -cellosaurus:CVCL_XU18 HAP1 TGFB1 (-) 2 15218 -cellosaurus:CVCL_TS21 HAP1 TGFBR1 (-) 1 2 15219 -cellosaurus:CVCL_TS22 HAP1 TGFBR1 (-) 2 2 15220 -cellosaurus:CVCL_TS23 HAP1 TGFBR2 (-) 1 2 15221 -cellosaurus:CVCL_TS24 HAP1 TGFBR2 (-) 2 2 15222 -cellosaurus:CVCL_TS25 HAP1 TGFBR2 (-) 3 2 15223 -cellosaurus:CVCL_XU19 HAP1 TGFBR2 (-) 4 2 15224 -cellosaurus:CVCL_XU20 HAP1 TGFBR2 (-) 5 2 15225 -cellosaurus:CVCL_XU21 HAP1 TGFBR2 (-) 6 2 15226 -cellosaurus:CVCL_XU22 HAP1 TGFBR2 (-) 7 2 15227 -cellosaurus:CVCL_TS26 HAP1 TGOLN2 (-) 2 15228 -cellosaurus:CVCL_TS27 HAP1 THRB (-) 1 2 15229 -cellosaurus:CVCL_TS28 HAP1 THRB (-) 2 2 15230 -cellosaurus:CVCL_TS29 HAP1 TIA1 (-) 1 2 15231 -cellosaurus:CVCL_TS30 HAP1 TIA1 (-) 2 2 15232 -cellosaurus:CVCL_TS31 HAP1 TIA1 (-) 3 2 15233 -cellosaurus:CVCL_TS32 HAP1 TICAM1 (-) 1 2 15234 -cellosaurus:CVCL_TS33 HAP1 TICAM1 (-) 2 2 15235 -cellosaurus:CVCL_TS34 HAP1 TICAM2 (-) 2 15236 -cellosaurus:CVCL_TS35 HAP1 TIGIT (-) 1 2 15237 -cellosaurus:CVCL_TS36 HAP1 TIGIT (-) 2 2 15238 -cellosaurus:CVCL_XU23 HAP1 TIMM17B (-) 2 15239 -cellosaurus:CVCL_TS37 HAP1 TIMM8A (-) 1 2 15240 -cellosaurus:CVCL_XU24 HAP1 TIMM8A (-) 2 2 15241 -cellosaurus:CVCL_XU25 HAP1 TIMM8A (-) 3 2 15242 -cellosaurus:CVCL_TS38 HAP1 TIMP1 (-) 1 2 15243 -cellosaurus:CVCL_XU26 HAP1 TIMP1 (-) 2 2 15244 -cellosaurus:CVCL_TS39 HAP1 TIMP2 (-) 1 2 15245 -cellosaurus:CVCL_XU27 HAP1 TIMP2 (-) 2 2 15246 -cellosaurus:CVCL_TS40 HAP1 TIPARP (-) 1 2 15247 -cellosaurus:CVCL_TS41 HAP1 TIPARP (-) 2 2 15248 -cellosaurus:CVCL_TS42 HAP1 TIPRL (-) 2 15249 -cellosaurus:CVCL_TS43 HAP1 TIRAP (-) 1 2 15250 -cellosaurus:CVCL_TS44 HAP1 TIRAP (-) 2 2 15251 -cellosaurus:CVCL_TS45 HAP1 TJP1 (-) 1 2 15252 -cellosaurus:CVCL_XU28 HAP1 TJP1 (-) 2 2 15253 -cellosaurus:CVCL_TS46 HAP1 TK1 (-) 1 2 15254 -cellosaurus:CVCL_TS47 HAP1 TK1 (-) 2 2 15255 -cellosaurus:CVCL_TS48 HAP1 TLE1 (-) 1 2 15256 -cellosaurus:CVCL_TS49 HAP1 TLE1 (-) 2 2 15257 -cellosaurus:CVCL_TS50 HAP1 TLE3 (-) 1 2 15258 -cellosaurus:CVCL_TS51 HAP1 TLE3 (-) 2 2 15259 -cellosaurus:CVCL_TS52 HAP1 TLK1 (-) 2 15260 -cellosaurus:CVCL_TS53 HAP1 TLR2 (-) 1 2 15261 -cellosaurus:CVCL_TS54 HAP1 TLR2 (-) 2 2 15262 -cellosaurus:CVCL_XU29 HAP1 TLR4 (-) 1 2 15263 -cellosaurus:CVCL_B5KZ HAP1 TLR4 (-) 2 2 15264 -cellosaurus:CVCL_B5L0 HAP1 TLR4 (-) 3 2 15265 -cellosaurus:CVCL_TS55 HAP1 TM6SF1 (-) 1 2 15266 -cellosaurus:CVCL_XU30 HAP1 TM6SF1 (-) 2 2 15267 -cellosaurus:CVCL_TS56 HAP1 TM9SF1 (-) 1 2 15268 -cellosaurus:CVCL_TS57 HAP1 TM9SF1 (-) 2 2 15269 -cellosaurus:CVCL_TS58 HAP1 TM9SF2 (-) 1 2 15270 -cellosaurus:CVCL_TS59 HAP1 TM9SF2 (-) 2 2 15271 -cellosaurus:CVCL_TS60 HAP1 TM9SF3 (-) 1 2 15272 -cellosaurus:CVCL_TS61 HAP1 TM9SF3 (-) 2 2 15273 -cellosaurus:CVCL_TS62 HAP1 TM9SF4 (-) 1 2 15274 -cellosaurus:CVCL_TS63 HAP1 TM9SF4 (-) 2 2 15275 -cellosaurus:CVCL_TS64 HAP1 TMBIM6 (-) 1 2 15276 -cellosaurus:CVCL_TS65 HAP1 TMBIM6 (-) 2 2 15277 -cellosaurus:CVCL_TS66 HAP1 TMBIM6 (-) 3 2 15278 -cellosaurus:CVCL_TS67 HAP1 TMBIM6 (-) 4 2 15279 -cellosaurus:CVCL_TS68 HAP1 TMBIM6 (-) 5 2 15280 -cellosaurus:CVCL_TS69 HAP1 TMC1 (-) 1 2 15281 -cellosaurus:CVCL_TS70 HAP1 TMC1 (-) 2 2 15282 -cellosaurus:CVCL_TS71 HAP1 TMCC3 (-) 1 2 15283 -cellosaurus:CVCL_XU31 HAP1 TMCC3 (-) 2 2 15284 -cellosaurus:CVCL_XU32 HAP1 TMCC3 (-) 3 2 15285 -cellosaurus:CVCL_TS72 HAP1 TMED5 (-) 1 2 15286 -cellosaurus:CVCL_XU33 HAP1 TMED5 (-) 2 2 15287 -cellosaurus:CVCL_TS73 HAP1 TMED7 (-) 1 2 15288 -cellosaurus:CVCL_XU34 HAP1 TMED7 (-) 2 2 15289 -cellosaurus:CVCL_TS74 HAP1 TMED9 (-) 1 2 15290 -cellosaurus:CVCL_XU35 HAP1 TMED9 (-) 2 2 15291 -cellosaurus:CVCL_XU36 HAP1 TMED9 (-) 3 2 15292 -cellosaurus:CVCL_TS75 HAP1 TMEM106B (-) 1 2 15293 -cellosaurus:CVCL_XU37 HAP1 TMEM106B (-) 2 2 15294 -cellosaurus:CVCL_XU38 HAP1 TMEM106B (-) 3 2 15295 -cellosaurus:CVCL_TS76 HAP1 TMEM126A (-) 1 2 15296 -cellosaurus:CVCL_XU39 HAP1 TMEM126A (-) 2 2 15297 -cellosaurus:CVCL_XU40 HAP1 TMEM126A (-) 3 2 15298 -cellosaurus:CVCL_XU41 HAP1 TMEM126A (-) 4 2 15299 -cellosaurus:CVCL_TS77 HAP1 TMEM150A (-) 1 2 15300 -cellosaurus:CVCL_TS78 HAP1 TMEM150A (-) 2 2 15301 -cellosaurus:CVCL_TS79 HAP1 TMEM150C (-) 1 2 15302 -cellosaurus:CVCL_TS80 HAP1 TMEM150C (-) 2 2 15303 -cellosaurus:CVCL_TS81 HAP1 TMEM173 (-) 1 2 15304 -cellosaurus:CVCL_TS82 HAP1 TMEM173 (-) 2 2 15305 -cellosaurus:CVCL_TS83 HAP1 TMEM173 (-) 3 2 15306 -cellosaurus:CVCL_TS84 HAP1 TMEM173 (-) 4 2 15307 -cellosaurus:CVCL_TS85 HAP1 TMEM175 (-) 1 2 15308 -cellosaurus:CVCL_XU42 HAP1 TMEM175 (-) 2 2 15309 -cellosaurus:CVCL_XU43 HAP1 TMEM175 (-) 3 2 15310 -cellosaurus:CVCL_TS86 HAP1 TMEM177 (-) 1 2 15311 -cellosaurus:CVCL_TS87 HAP1 TMEM177 (-) 2 2 15312 -cellosaurus:CVCL_XU44 HAP1 TMEM189 (-) 1 2 15313 -cellosaurus:CVCL_B5L1 HAP1 TMEM189 (-) 2 2 15314 -cellosaurus:CVCL_B5L2 HAP1 TMEM189 (-) 3 2 15315 -cellosaurus:CVCL_TS88 HAP1 TMEM2 (-) 1 2 15316 -cellosaurus:CVCL_XU45 HAP1 TMEM2 (-) 2 2 15317 -cellosaurus:CVCL_TS89 HAP1 TMEM205 (-) 1 2 15318 -cellosaurus:CVCL_XU46 HAP1 TMEM205 (-) 2 2 15319 -cellosaurus:CVCL_XU47 HAP1 TMEM205 (-) 3 2 15320 -cellosaurus:CVCL_XU48 HAP1 TMEM205 (-) 4 2 15321 -cellosaurus:CVCL_XU49 HAP1 TMEM205 (-) 5 2 15322 -cellosaurus:CVCL_TS90 HAP1 TMEM209 (-) 1 2 15323 -cellosaurus:CVCL_TS91 HAP1 TMEM209 (-) 2 2 15324 -cellosaurus:CVCL_TS92 HAP1 TMEM223 (-) 1 2 15325 -cellosaurus:CVCL_TS93 HAP1 TMEM223 (-) 2 2 15326 -cellosaurus:CVCL_TS94 HAP1 TMEM30A (-) 1 2 15327 -cellosaurus:CVCL_XU50 HAP1 TMEM30A (-) 2 2 15328 -cellosaurus:CVCL_TS95 HAP1 TMEM38B (-) 1 2 15329 -cellosaurus:CVCL_XU51 HAP1 TMEM38B (-) 2 2 15330 -cellosaurus:CVCL_XU52 HAP1 TMEM39B (-) 1 2 15331 -cellosaurus:CVCL_B5L3 HAP1 TMEM39B (-) 2 2 15332 -cellosaurus:CVCL_TS96 HAP1 TMEM5 (-) 1 2 15333 -cellosaurus:CVCL_TS97 HAP1 TMEM5 (-) 2 2 15334 -cellosaurus:CVCL_TS98 HAP1 TMEM5 (-) 3 2 15335 -cellosaurus:CVCL_TS99 HAP1 TMEM5 (-) 4 2 15336 -cellosaurus:CVCL_TT00 HAP1 TMEM5 (-) 5 2 15337 -cellosaurus:CVCL_TT01 HAP1 TMEM5 (-) 6 2 15338 -cellosaurus:CVCL_TT02 HAP1 TMEM56 (-) 1 2 15339 -cellosaurus:CVCL_TT03 HAP1 TMEM56 (-) 2 2 15340 -cellosaurus:CVCL_XU53 HAP1 TMEM69 (-) 1 2 15341 -cellosaurus:CVCL_B5L4 HAP1 TMEM69 (-) 2 2 15342 -cellosaurus:CVCL_TT04 HAP1 TMEM70 (-) 1 2 15343 -cellosaurus:CVCL_TT05 HAP1 TMEM70 (-) 2 2 15344 -cellosaurus:CVCL_XU54 HAP1 TMEM8A (-) 1 2 15345 -cellosaurus:CVCL_B5L5 HAP1 TMEM8A (-) 2 2 15346 -cellosaurus:CVCL_TT06 HAP1 TNFRSF10B (-) 2 15347 -cellosaurus:CVCL_TT07 HAP1 TNFRSF12A (-) 1 2 15348 -cellosaurus:CVCL_XU55 HAP1 TNFRSF12A (-) 2 2 15349 -cellosaurus:CVCL_XU56 HAP1 TNFRSF12A (-) 3 2 15350 -cellosaurus:CVCL_XU57 HAP1 TNFRSF12A (-) 4 2 15351 -cellosaurus:CVCL_XU58 HAP1 TNFRSF12A (-) 5 2 15352 -cellosaurus:CVCL_TT08 HAP1 TNFRSF1A (-) 1 2 15353 -cellosaurus:CVCL_TT09 HAP1 TNFRSF1A (-) 2 2 15354 -cellosaurus:CVCL_TT10 HAP1 TNFRSF1B (-) 1 2 15355 -cellosaurus:CVCL_TT11 HAP1 TNFRSF1B (-) 2 2 15356 -cellosaurus:CVCL_TT12 HAP1 TNFSF9 (-) 1 2 15357 -cellosaurus:CVCL_XU59 HAP1 TNFSF9 (-) 2 2 15358 -cellosaurus:CVCL_XU60 HAP1 TNFSF9 (-) 3 2 15359 -cellosaurus:CVCL_TT13 HAP1 TNIK (-) 1 2 15360 -cellosaurus:CVCL_TT14 HAP1 TNK1 (-) 2 15361 -cellosaurus:CVCL_TT15 HAP1 TNK2 (-) 2 15362 -cellosaurus:CVCL_TT16 HAP1 TNKS (-) 2 15363 -cellosaurus:CVCL_TT17 HAP1 TNKS2 (-) 1 2 15364 -cellosaurus:CVCL_XU61 HAP1 TNKS2 (-) 2 2 15365 -cellosaurus:CVCL_TT18 HAP1 TNPO1 (-) 1 2 15366 -cellosaurus:CVCL_TT19 HAP1 TNPO1 (-) 2 2 15367 -cellosaurus:CVCL_TT20 HAP1 TNPO1 (-) 3 2 15368 -cellosaurus:CVCL_XU62 HAP1 TNPO1 (-) 4 2 15369 -cellosaurus:CVCL_TT21 HAP1 TNRC6A (-) 1 2 15370 -cellosaurus:CVCL_XU63 HAP1 TNRC6A (-) 2 2 15371 -cellosaurus:CVCL_TT22 HAP1 TOM1 (-) 1 2 15372 -cellosaurus:CVCL_TT23 HAP1 TOM1 (-) 2 2 15373 -cellosaurus:CVCL_TT24 HAP1 TOM1 (-) 3 2 15374 -cellosaurus:CVCL_TT25 HAP1 TOM1 (-) 4 2 15375 -cellosaurus:CVCL_TT26 HAP1 TOMM7 (-) 1 2 15376 -cellosaurus:CVCL_TT27 HAP1 TOMM7 (-) 2 2 15377 -cellosaurus:CVCL_TT28 HAP1 TOP1 (-) 1 2 15378 -cellosaurus:CVCL_TT29 HAP1 TOP1 (-) 2 2 15379 -cellosaurus:CVCL_TT30 HAP1 TOP1MT (-) 1 2 15380 -cellosaurus:CVCL_TT31 HAP1 TOP1MT (-) 2 2 15381 -cellosaurus:CVCL_TT32 HAP1 TOP2B (-) 1 2 15382 -cellosaurus:CVCL_TT33 HAP1 TOP2B (-) 2 2 15383 -cellosaurus:CVCL_TT34 HAP1 TOX (-) 1 2 15384 -cellosaurus:CVCL_TT35 HAP1 TOX (-) 2 2 15385 -cellosaurus:CVCL_TT36 HAP1 TOX3 (-) 1 2 15386 -cellosaurus:CVCL_TT37 HAP1 TOX3 (-) 2 2 15387 -cellosaurus:CVCL_RJ70 HAP1 TP53(-) 1 2 15388 -cellosaurus:CVCL_SA84 HAP1 TP53(-) 2 2 15389 -cellosaurus:CVCL_TT38 HAP1 TP53BP1 (-) 1 2 15390 -cellosaurus:CVCL_TT39 HAP1 TP53BP1 (-) 2 2 15391 -cellosaurus:CVCL_TT40 HAP1 TP53BP1 (-) 3 2 15392 -cellosaurus:CVCL_TT41 HAP1 TP53BP1 (-) 4 2 15393 -cellosaurus:CVCL_TT42 HAP1 TP53BP1 (-) 5 2 15394 -cellosaurus:CVCL_TT43 HAP1 TP53BP2 (-) 1 2 15395 -cellosaurus:CVCL_TT44 HAP1 TP53BP2 (-) 2 2 15396 -cellosaurus:CVCL_TT45 HAP1 TP53BP2 (-) 3 2 15397 -cellosaurus:CVCL_TT46 HAP1 TP53INP2 (-) 1 2 15398 -cellosaurus:CVCL_TT47 HAP1 TP53INP2 (-) 2 2 15399 -cellosaurus:CVCL_TT48 HAP1 TP53INP2 (-) 3 2 15400 -cellosaurus:CVCL_TT49 HAP1 TP73 (-) 1 2 15401 -cellosaurus:CVCL_XU64 HAP1 TP73 (-) 2 2 15402 -cellosaurus:CVCL_XU65 HAP1 TP73 (-) 3 2 15403 -cellosaurus:CVCL_TT50 HAP1 TPMT (-) 1 2 15404 -cellosaurus:CVCL_TT51 HAP1 TPMT (-) 2 2 15405 -cellosaurus:CVCL_XU66 HAP1 TPP1 (-) 2 15406 -cellosaurus:CVCL_TT52 HAP1 TRA2A (-) 1 2 15407 -cellosaurus:CVCL_XU67 HAP1 TRA2A (-) 2 2 15408 -cellosaurus:CVCL_XU68 HAP1 TRA2A (-) 3 2 15409 -cellosaurus:CVCL_TT53 HAP1 TRAF1 (-) 2 15410 -cellosaurus:CVCL_TT54 HAP1 TRAF2 (-) 1 2 15411 -cellosaurus:CVCL_TT55 HAP1 TRAF2 (-) 2 2 15412 -cellosaurus:CVCL_TT56 HAP1 TRAF3 (-) 1 2 15413 -cellosaurus:CVCL_TT57 HAP1 TRAF3 (-) 2 2 15414 -cellosaurus:CVCL_TT58 HAP1 TRAF3 (-) 3 2 15415 -cellosaurus:CVCL_TT59 HAP1 TRAF3IP2 (-) 1 2 15416 -cellosaurus:CVCL_TT60 HAP1 TRAF3IP2 (-) 2 2 15417 -cellosaurus:CVCL_TT61 HAP1 TRAF3IP2 (-) 3 2 15418 -cellosaurus:CVCL_TT62 HAP1 TRAF5 (-) 2 15419 -cellosaurus:CVCL_TT63 HAP1 TRAF6 (-) 1 2 15420 -cellosaurus:CVCL_TT64 HAP1 TRAF6 (-) 2 2 15421 -cellosaurus:CVCL_TT65 HAP1 TRAF7 (-) 1 2 15422 -cellosaurus:CVCL_TT66 HAP1 TRAF7 (-) 2 2 15423 -cellosaurus:CVCL_TT67 HAP1 TRAK1 (-) 1 2 15424 -cellosaurus:CVCL_XU69 HAP1 TRAK1 (-) 2 2 15425 -cellosaurus:CVCL_A9H4 HAP1 TRAP1 (-) 1 2 15426 -cellosaurus:CVCL_XU70 HAP1 TRAPPC10 (-) 2 15427 -cellosaurus:CVCL_XU71 HAP1 TRAPPC9 (-) 2 15428 -cellosaurus:CVCL_TT68 HAP1 TRDMT1 (-) 1 2 15429 -cellosaurus:CVCL_TT69 HAP1 TRDMT1 (-) 2 2 15430 -cellosaurus:CVCL_TT70 HAP1 TRDMT1 (-) 3 2 15431 -cellosaurus:CVCL_TT71 HAP1 TREX1 (-) 1 2 15432 -cellosaurus:CVCL_TT72 HAP1 TREX1 (-) 2 2 15433 -cellosaurus:CVCL_TT73 HAP1 TREX1 (-) 3 2 15434 -cellosaurus:CVCL_TT74 HAP1 TRIB1 (-) 1 2 15435 -cellosaurus:CVCL_TT75 HAP1 TRIB1 (-) 2 2 15436 -cellosaurus:CVCL_TT76 HAP1 TRIB1 (-) 3 2 15437 -cellosaurus:CVCL_TT77 HAP1 TRIB2 (-) 2 15438 -cellosaurus:CVCL_TT78 HAP1 TRIB3 (-) 1 2 15439 -cellosaurus:CVCL_TT79 HAP1 TRIB3 (-) 2 2 15440 -cellosaurus:CVCL_TT80 HAP1 TRIB3 (-) 3 2 15441 -cellosaurus:CVCL_TT81 HAP1 TRIM11 (-) 2 15442 -cellosaurus:CVCL_TT82 HAP1 TRIM14 (-) 1 2 15443 -cellosaurus:CVCL_TT83 HAP1 TRIM14 (-) 2 2 15444 -cellosaurus:CVCL_TT84 HAP1 TRIM16 (-) 2 15445 -cellosaurus:CVCL_TT85 HAP1 TRIM2 (-) 1 2 15446 -cellosaurus:CVCL_TT86 HAP1 TRIM2 (-) 2 2 15447 -cellosaurus:CVCL_TT87 HAP1 TRIM21 (-) 1 2 15448 -cellosaurus:CVCL_TT88 HAP1 TRIM21 (-) 2 2 15449 -cellosaurus:CVCL_TT89 HAP1 TRIM22 (-) 1 2 15450 -cellosaurus:CVCL_TT90 HAP1 TRIM22 (-) 2 2 15451 -cellosaurus:CVCL_TT91 HAP1 TRIM23 (-) 1 2 15452 -cellosaurus:CVCL_TT92 HAP1 TRIM23 (-) 2 2 15453 -cellosaurus:CVCL_TT93 HAP1 TRIM24 (-) 1 2 15454 -cellosaurus:CVCL_TT94 HAP1 TRIM24 (-) 2 2 15455 -cellosaurus:CVCL_TT95 HAP1 TRIM25 (-) 1 2 15456 -cellosaurus:CVCL_TT96 HAP1 TRIM25 (-) 2 2 15457 -cellosaurus:CVCL_TT97 HAP1 TRIM25 (-) 3 2 15458 -cellosaurus:CVCL_TT98 HAP1 TRIM26 (-) 1 2 15459 -cellosaurus:CVCL_TT99 HAP1 TRIM26 (-) 2 2 15460 -cellosaurus:CVCL_TU00 HAP1 TRIM27 (-) 1 2 15461 -cellosaurus:CVCL_TU01 HAP1 TRIM27 (-) 3 2 15462 -cellosaurus:CVCL_TU02 HAP1 TRIM28 (-) 1 2 15463 -cellosaurus:CVCL_TU03 HAP1 TRIM28 (-) 2 2 15464 -cellosaurus:CVCL_TU04 HAP1 TRIM3 (-) 1 2 15465 -cellosaurus:CVCL_TU05 HAP1 TRIM3 (-) 2 2 15466 -cellosaurus:CVCL_TU06 HAP1 TRIM32 (-) 1 2 15467 -cellosaurus:CVCL_TU07 HAP1 TRIM32 (-) 2 2 15468 -cellosaurus:CVCL_TU08 HAP1 TRIM32 (-) 3 2 15469 -cellosaurus:CVCL_TU09 HAP1 TRIM33 (-) 1 2 15470 -cellosaurus:CVCL_TU10 HAP1 TRIM33 (-) 2 2 15471 -cellosaurus:CVCL_TU11 HAP1 TRIM33 (-) 3 2 15472 -cellosaurus:CVCL_TU12 HAP1 TRIM34 (-) 1 2 15473 -cellosaurus:CVCL_TU13 HAP1 TRIM34 (-) 2 2 15474 -cellosaurus:CVCL_TU14 HAP1 TRIM35 (-) 2 15475 -cellosaurus:CVCL_TU15 HAP1 TRIM37 (-) 1 2 15476 -cellosaurus:CVCL_TU16 HAP1 TRIM37 (-) 2 2 15477 -cellosaurus:CVCL_TU17 HAP1 TRIM38 (-) 1 2 15478 -cellosaurus:CVCL_TU18 HAP1 TRIM38 (-) 2 2 15479 -cellosaurus:CVCL_TU19 HAP1 TRIM39 (-) 1 2 15480 -cellosaurus:CVCL_TU20 HAP1 TRIM39 (-) 2 2 15481 -cellosaurus:CVCL_TU21 HAP1 TRIM4 (-) 1 2 15482 -cellosaurus:CVCL_TU22 HAP1 TRIM4 (-) 2 2 15483 -cellosaurus:CVCL_TU23 HAP1 TRIM41 (-) 1 2 15484 -cellosaurus:CVCL_TU24 HAP1 TRIM41 (-) 2 2 15485 -cellosaurus:CVCL_TU25 HAP1 TRIM44 (-) 1 2 15486 -cellosaurus:CVCL_TU26 HAP1 TRIM44 (-) 2 2 15487 -cellosaurus:CVCL_TU27 HAP1 TRIM44 (-) 3 2 15488 -cellosaurus:CVCL_TU28 HAP1 TRIM45 (-) 2 15489 -cellosaurus:CVCL_TU29 HAP1 TRIM46 (-) 2 15490 -cellosaurus:CVCL_TU30 HAP1 TRIM47 (-) 1 2 15491 -cellosaurus:CVCL_TU31 HAP1 TRIM47 (-) 2 2 15492 -cellosaurus:CVCL_TU32 HAP1 TRIM5 (-) 1 2 15493 -cellosaurus:CVCL_TU33 HAP1 TRIM5 (-) 2 2 15494 -cellosaurus:CVCL_TU34 HAP1 TRIM52 (-) 1 2 15495 -cellosaurus:CVCL_TU35 HAP1 TRIM52 (-) 2 2 15496 -cellosaurus:CVCL_TU36 HAP1 TRIM54 (-) 1 2 15497 -cellosaurus:CVCL_TU37 HAP1 TRIM54 (-) 2 2 15498 -cellosaurus:CVCL_TU38 HAP1 TRIM56 (-) 2 15499 -cellosaurus:CVCL_TU39 HAP1 TRIM58 (-) 1 2 15500 -cellosaurus:CVCL_TU40 HAP1 TRIM58 (-) 2 2 15501 -cellosaurus:CVCL_TU41 HAP1 TRIM59 (-) 2 15502 -cellosaurus:CVCL_TU42 HAP1 TRIM6 (-) 1 2 15503 -cellosaurus:CVCL_TU43 HAP1 TRIM6 (-) 2 2 15504 -cellosaurus:CVCL_TU44 HAP1 TRIM62 (-) 1 2 15505 -cellosaurus:CVCL_TU45 HAP1 TRIM62 (-) 2 2 15506 -cellosaurus:CVCL_TU46 HAP1 TRIM65 (-) 1 2 15507 -cellosaurus:CVCL_TU47 HAP1 TRIM65 (-) 2 2 15508 -cellosaurus:CVCL_TU48 HAP1 TRIM65 (-) 3 2 15509 -cellosaurus:CVCL_TU49 HAP1 TRIM66 (-) 1 2 15510 -cellosaurus:CVCL_TU50 HAP1 TRIM66 (-) 2 2 15511 -cellosaurus:CVCL_TU51 HAP1 TRIM68 (-) 1 2 15512 -cellosaurus:CVCL_TU52 HAP1 TRIM68 (-) 2 2 15513 -cellosaurus:CVCL_TU53 HAP1 TRIM69 (-) 1 2 15514 -cellosaurus:CVCL_TU54 HAP1 TRIM69 (-) 2 2 15515 -cellosaurus:CVCL_TU55 HAP1 TRIM71 (-) 1 2 15516 -cellosaurus:CVCL_TU56 HAP1 TRIM71 (-) 2 2 15517 -cellosaurus:CVCL_TU57 HAP1 TRIM72 (-) 1 2 15518 -cellosaurus:CVCL_TU58 HAP1 TRIM72 (-) 2 2 15519 -cellosaurus:CVCL_TU59 HAP1 TRIM8 (-) 1 2 15520 -cellosaurus:CVCL_TU60 HAP1 TRIM8 (-) 3 2 15521 -cellosaurus:CVCL_TU61 HAP1 TRIM9 (-) 1 2 15522 -cellosaurus:CVCL_TU62 HAP1 TRIM9 (-) 2 2 15523 -cellosaurus:CVCL_TU63 HAP1 TRIO (-) 2 15524 -cellosaurus:CVCL_TU64 HAP1 TRIP13 (-) 1 2 15525 -cellosaurus:CVCL_XU72 HAP1 TRIP13 (-) 2 2 15526 -cellosaurus:CVCL_XU73 HAP1 TRIP13 (-) 3 2 15527 -cellosaurus:CVCL_TU65 HAP1 TRIP4 (-) 1 2 15528 -cellosaurus:CVCL_XU74 HAP1 TRIP4 (-) 2 2 15529 -cellosaurus:CVCL_TU66 HAP1 TRIT1 (-) 2 15530 -cellosaurus:CVCL_TU67 HAP1 TRMT1 (-) 1 2 15531 -cellosaurus:CVCL_TU68 HAP1 TRMT1 (-) 2 2 15532 -cellosaurus:CVCL_TU69 HAP1 TRMT1 (-) 3 2 15533 -cellosaurus:CVCL_TU70 HAP1 TRMT10A (-) 1 2 15534 -cellosaurus:CVCL_TU71 HAP1 TRMT10A (-) 2 2 15535 -cellosaurus:CVCL_TU72 HAP1 TRMT10A (-) 3 2 15536 -cellosaurus:CVCL_TU73 HAP1 TRMT10A (-) 4 2 15537 -cellosaurus:CVCL_TU74 HAP1 TRMT10B (-) 1 2 15538 -cellosaurus:CVCL_TU75 HAP1 TRMT10B (-) 2 2 15539 -cellosaurus:CVCL_TU76 HAP1 TRMT2A (-) 1 2 15540 -cellosaurus:CVCL_TU77 HAP1 TRMT2A (-) 2 2 15541 -cellosaurus:CVCL_TU78 HAP1 TRMT2A (-) 3 2 15542 -cellosaurus:CVCL_TU79 HAP1 TRMT2A (-) 4 2 15543 -cellosaurus:CVCL_TU80 HAP1 TRMT2B (-) 1 2 15544 -cellosaurus:CVCL_TU81 HAP1 TRMT2B (-) 2 2 15545 -cellosaurus:CVCL_TU82 HAP1 TRMT2B (-) 3 2 15546 -cellosaurus:CVCL_TU83 HAP1 TROVE2 (-) 1 2 15547 -cellosaurus:CVCL_TU84 HAP1 TROVE2 (-) 2 2 15548 -cellosaurus:CVCL_TU85 HAP1 TROVE2 (-) 3 2 15549 -cellosaurus:CVCL_TU86 HAP1 TROVE2 (-) 4 2 15550 -cellosaurus:CVCL_TU87 HAP1 TRPM7 (-) 2 15551 -cellosaurus:CVCL_XU75 HAP1 TRPV5 (-) 2 15552 -cellosaurus:CVCL_TU88 HAP1 TRPV6 (-) 1 2 15553 -cellosaurus:CVCL_XU76 HAP1 TRPV6 (-) 2 2 15554 -cellosaurus:CVCL_XU77 HAP1 TRPV6 (-) 3 2 15555 -cellosaurus:CVCL_TU89 HAP1 TSC1 (-) 1 2 15556 -cellosaurus:CVCL_TU90 HAP1 TSC1 (-) 2 2 15557 -cellosaurus:CVCL_TU91 HAP1 TSC2 (-) 1 2 15558 -cellosaurus:CVCL_TU92 HAP1 TSC2 (-) 2 2 15559 -cellosaurus:CVCL_XU78 HAP1 TSFM (-) 2 15560 -cellosaurus:CVCL_TU93 HAP1 TSPAN13 (-) 1 2 15561 -cellosaurus:CVCL_TU94 HAP1 TSPAN13 (-) 2 2 15562 -cellosaurus:CVCL_XU79 HAP1 TSPAN4 (-) 2 15563 -cellosaurus:CVCL_TU95 HAP1 TSPO (-) 1 2 15564 -cellosaurus:CVCL_TU96 HAP1 TSPO (-) 2 2 15565 -cellosaurus:CVCL_TU97 HAP1 TSSC1 (-) 1 2 15566 -cellosaurus:CVCL_TU98 HAP1 TSSC1 (-) 2 2 15567 -cellosaurus:CVCL_TU99 HAP1 TSSK2 (-) 2 15568 -cellosaurus:CVCL_TV00 HAP1 TSSK3 (-) 2 15569 -cellosaurus:CVCL_TV01 HAP1 TSSK4 (-) 1 2 15570 -cellosaurus:CVCL_TV02 HAP1 TSSK4 (-) 2 2 15571 -cellosaurus:CVCL_TV03 HAP1 TTBK2 (-) 1 2 15572 -cellosaurus:CVCL_TV04 HAP1 TTBK2 (-) 2 2 15573 -cellosaurus:CVCL_TV05 HAP1 TTBK2 (-) 3 2 15574 -cellosaurus:CVCL_TV06 HAP1 TTC38 (-) 1 2 15575 -cellosaurus:CVCL_XU80 HAP1 TTC38 (-) 2 2 15576 -cellosaurus:CVCL_TV07 HAP1 TTC7A (-) 1 2 15577 -cellosaurus:CVCL_XU81 HAP1 TTC7A (-) 2 2 15578 -cellosaurus:CVCL_XU82 HAP1 TTL (-) 2 15579 -cellosaurus:CVCL_TV08 HAP1 TUBA1A (-) 1 2 15580 -cellosaurus:CVCL_TV09 HAP1 TUBA1A (-) 2 2 15581 -cellosaurus:CVCL_TV10 HAP1 TUBA1C (-) 1 2 15582 -cellosaurus:CVCL_TV11 HAP1 TUBA1C (-) 2 2 15583 -cellosaurus:CVCL_TV12 HAP1 TUBA1C (-) 3 2 15584 -cellosaurus:CVCL_TV13 HAP1 TUBA1C (-) 4 2 15585 -cellosaurus:CVCL_TV14 HAP1 TUBA4A (-) 1 2 15586 -cellosaurus:CVCL_TV15 HAP1 TUBA4A (-) 2 2 15587 -cellosaurus:CVCL_TV16 HAP1 TUBB1 (-) 1 2 15588 -cellosaurus:CVCL_TV17 HAP1 TUBB1 (-) 2 2 15589 -cellosaurus:CVCL_TV18 HAP1 TUBB1 (-) 3 2 15590 -cellosaurus:CVCL_TV19 HAP1 TUBB3 (-) 1 2 15591 -cellosaurus:CVCL_TV20 HAP1 TUBB3 (-) 2 2 15592 -cellosaurus:CVCL_TV21 HAP1 TUBB4B (-) 1 2 15593 -cellosaurus:CVCL_TV22 HAP1 TUBB4B (-) 2 2 15594 -cellosaurus:CVCL_TV23 HAP1 TUSC3 (-) 1 2 15595 -cellosaurus:CVCL_TV24 HAP1 TUSC3 (-) 2 2 15596 -cellosaurus:CVCL_TV25 HAP1 TWF1 (-) 2 15597 -cellosaurus:CVCL_TV26 HAP1 TWF2 (-) 1 2 15598 -cellosaurus:CVCL_TV27 HAP1 TWF2 (-) 2 2 15599 -cellosaurus:CVCL_TV28 HAP1 TWIST1 (-) 2 15600 -cellosaurus:CVCL_TV29 HAP1 TXNIP (-) 1 2 15601 -cellosaurus:CVCL_XU83 HAP1 TXNIP (-) 2 2 15602 -cellosaurus:CVCL_TV30 HAP1 TYK2 (-) 1 2 15603 -cellosaurus:CVCL_TV31 HAP1 TYK2 (-) 2 2 15604 -cellosaurus:CVCL_TV32 HAP1 TYK2 (-) 3 2 15605 -cellosaurus:CVCL_TV33 HAP1 TYK2 (-) 4 2 15606 -cellosaurus:CVCL_TV34 HAP1 TYK2 (-) 5 2 15607 -cellosaurus:CVCL_TV35 HAP1 TYRO3 (-) 1 2 15608 -cellosaurus:CVCL_TV36 HAP1 TYRO3 (-) 2 2 15609 -cellosaurus:CVCL_TV37 HAP1 TYRO3 (-) 3 2 15610 -cellosaurus:CVCL_XU84 HAP1 UBA6 (-) 2 15611 -cellosaurus:CVCL_TV38 HAP1 UBA7 (-) 1 2 15612 -cellosaurus:CVCL_TV39 HAP1 UBA7 (-) 2 2 15613 -cellosaurus:CVCL_TV40 HAP1 UBA7 (-) 3 2 15614 -cellosaurus:CVCL_TV41 HAP1 UBAC1 (-) 1 2 15615 -cellosaurus:CVCL_TV42 HAP1 UBAC1 (-) 2 2 15616 -cellosaurus:CVCL_TV43 HAP1 UBAC1 (-) 3 2 15617 -cellosaurus:CVCL_TV44 HAP1 UBAC2 (-) 1 2 15618 -cellosaurus:CVCL_TV45 HAP1 UBAC2 (-) 2 2 15619 -cellosaurus:CVCL_TV46 HAP1 UBE2A (-) 1 2 15620 -cellosaurus:CVCL_TV47 HAP1 UBE2A (-) 2 2 15621 -cellosaurus:CVCL_TV48 HAP1 UBE2B (-) 1 2 15622 -cellosaurus:CVCL_TV49 HAP1 UBE2B (-) 2 2 15623 -cellosaurus:CVCL_TV50 HAP1 UBE2C (-) 1 2 15624 -cellosaurus:CVCL_TV51 HAP1 UBE2C (-) 2 2 15625 -cellosaurus:CVCL_TV52 HAP1 UBE2C (-) 3 2 15626 -cellosaurus:CVCL_TV53 HAP1 UBE2D1 (-) 1 2 15627 -cellosaurus:CVCL_TV54 HAP1 UBE2D1 (-) 2 2 15628 -cellosaurus:CVCL_TV55 HAP1 UBE2D2 (-) 1 2 15629 -cellosaurus:CVCL_TV56 HAP1 UBE2D2 (-) 2 2 15630 -cellosaurus:CVCL_TV57 HAP1 UBE2D2 (-) 3 2 15631 -cellosaurus:CVCL_TV58 HAP1 UBE2D3 (-) 1 2 15632 -cellosaurus:CVCL_TV59 HAP1 UBE2D3 (-) 2 2 15633 -cellosaurus:CVCL_TV60 HAP1 UBE2D4 (-) 1 2 15634 -cellosaurus:CVCL_TV61 HAP1 UBE2D4 (-) 2 2 15635 -cellosaurus:CVCL_TV62 HAP1 UBE2E1 (-) 1 2 15636 -cellosaurus:CVCL_TV63 HAP1 UBE2E1 (-) 2 2 15637 -cellosaurus:CVCL_TV64 HAP1 UBE2E2 (-) 2 15638 -cellosaurus:CVCL_TV65 HAP1 UBE2E3 (-) 1 2 15639 -cellosaurus:CVCL_TV66 HAP1 UBE2E3 (-) 2 2 15640 -cellosaurus:CVCL_TV67 HAP1 UBE2F (-) 2 15641 -cellosaurus:CVCL_TV68 HAP1 UBE2G1 (-) 1 2 15642 -cellosaurus:CVCL_TV69 HAP1 UBE2G1 (-) 2 2 15643 -cellosaurus:CVCL_TV70 HAP1 UBE2G2 (-) 1 2 15644 -cellosaurus:CVCL_TV71 HAP1 UBE2G2 (-) 2 2 15645 -cellosaurus:CVCL_TV72 HAP1 UBE2H (-) 1 2 15646 -cellosaurus:CVCL_TV73 HAP1 UBE2H (-) 2 2 15647 -cellosaurus:CVCL_TV74 HAP1 UBE2J1 (-) 1 2 15648 -cellosaurus:CVCL_TV75 HAP1 UBE2J1 (-) 2 2 15649 -cellosaurus:CVCL_TV76 HAP1 UBE2J2 (-) 1 2 15650 -cellosaurus:CVCL_TV77 HAP1 UBE2J2 (-) 2 2 15651 -cellosaurus:CVCL_TV78 HAP1 UBE2K (-) 1 2 15652 -cellosaurus:CVCL_TV79 HAP1 UBE2K (-) 2 2 15653 -cellosaurus:CVCL_TV80 HAP1 UBE2L6 (-) 1 2 15654 -cellosaurus:CVCL_TV81 HAP1 UBE2L6 (-) 2 2 15655 -cellosaurus:CVCL_TV82 HAP1 UBE2O (-) 1 2 15656 -cellosaurus:CVCL_TV83 HAP1 UBE2O (-) 2 2 15657 -cellosaurus:CVCL_TV84 HAP1 UBE2Q1 (-) 1 2 15658 -cellosaurus:CVCL_TV85 HAP1 UBE2Q1 (-) 2 2 15659 -cellosaurus:CVCL_TV86 HAP1 UBE2Q1 (-) 3 2 15660 -cellosaurus:CVCL_TV87 HAP1 UBE2R2 (-) 1 2 15661 -cellosaurus:CVCL_TV88 HAP1 UBE2R2 (-) 2 2 15662 -cellosaurus:CVCL_TV89 HAP1 UBE2T (-) 2 15663 -cellosaurus:CVCL_XU85 HAP1 UBE2V1 (-) 1 2 15664 -cellosaurus:CVCL_XU86 HAP1 UBE2V1 (-) 2 2 15665 -cellosaurus:CVCL_TV90 HAP1 UBE2V2 (-) 1 2 15666 -cellosaurus:CVCL_TV91 HAP1 UBE2V2 (-) 2 2 15667 -cellosaurus:CVCL_TV92 HAP1 UBE2W (-) 1 2 15668 -cellosaurus:CVCL_TV93 HAP1 UBE2W (-) 2 2 15669 -cellosaurus:CVCL_TV94 HAP1 UBE2W (-) 3 2 15670 -cellosaurus:CVCL_TV95 HAP1 UBE2Z (-) 1 2 15671 -cellosaurus:CVCL_TV96 HAP1 UBE2Z (-) 2 2 15672 -cellosaurus:CVCL_TV97 HAP1 UBE3A (-) 1 2 15673 -cellosaurus:CVCL_XU87 HAP1 UBE3A (-) 2 2 15674 -cellosaurus:CVCL_TV98 HAP1 UBE4A (-) 1 2 15675 -cellosaurus:CVCL_TV99 HAP1 UBE4A (-) 2 2 15676 -cellosaurus:CVCL_TW00 HAP1 UBE4B (-) 1 2 15677 -cellosaurus:CVCL_TW01 HAP1 UBE4B (-) 2 2 15678 -cellosaurus:CVCL_TW02 HAP1 UBL3 (-) 1 2 15679 -cellosaurus:CVCL_TW03 HAP1 UBL3 (-) 2 2 15680 -cellosaurus:CVCL_TW04 HAP1 UBL4A (-) 2 15681 -cellosaurus:CVCL_TW05 HAP1 UBLCP1 (-) 1 2 15682 -cellosaurus:CVCL_TW06 HAP1 UBLCP1 (-) 2 2 15683 -cellosaurus:CVCL_TW07 HAP1 UBQLN1 (-) 2 2 15684 -cellosaurus:CVCL_TW08 HAP1 UBQLN1 (-) 3 2 15685 -cellosaurus:CVCL_TW09 HAP1 UBQLN2 (-) 1 2 15686 -cellosaurus:CVCL_TW10 HAP1 UBQLN2 (-) 2 2 15687 -cellosaurus:CVCL_TW11 HAP1 UCHL1 (-) 1 2 15688 -cellosaurus:CVCL_TW12 HAP1 UCHL1 (-) 2 2 15689 -cellosaurus:CVCL_TW13 HAP1 UCHL1 (-) 3 2 15690 -cellosaurus:CVCL_TW14 HAP1 UCHL3 (-) 1 2 15691 -cellosaurus:CVCL_TW15 HAP1 UCHL3 (-) 2 2 15692 -cellosaurus:CVCL_XU88 HAP1 UCK2 (-) 2 15693 -cellosaurus:CVCL_TW16 HAP1 UCP1 (-) 1 2 15694 -cellosaurus:CVCL_TW17 HAP1 UCP1 (-) 2 2 15695 -cellosaurus:CVCL_TW18 HAP1 UEVLD (-) 1 2 15696 -cellosaurus:CVCL_TW19 HAP1 UEVLD (-) 2 2 15697 -cellosaurus:CVCL_TW20 HAP1 UFC1 (-) 1 2 15698 -cellosaurus:CVCL_TW21 HAP1 UFC1 (-) 2 2 15699 -cellosaurus:CVCL_TW22 HAP1 UFM1 (-) 2 15700 -cellosaurus:CVCL_TW23 HAP1 UGCG (-) 1 2 15701 -cellosaurus:CVCL_TW24 HAP1 UGCG (-) 2 2 15702 -cellosaurus:CVCL_TW25 HAP1 UGCG (-) 3 2 15703 -cellosaurus:CVCL_TW26 HAP1 UHMK1 (-) 1 2 15704 -cellosaurus:CVCL_TW27 HAP1 UHMK1 (-) 2 2 15705 -cellosaurus:CVCL_TW28 HAP1 UHMK1 (-) 3 2 15706 -cellosaurus:CVCL_TW29 HAP1 UIMC1 (-) 1 2 15707 -cellosaurus:CVCL_TW30 HAP1 UIMC1 (-) 2 2 15708 -cellosaurus:CVCL_TW31 HAP1 ULK1 (-) 2 15709 -cellosaurus:CVCL_TW32 HAP1 ULK2 (-) 1 2 15710 -cellosaurus:CVCL_TW33 HAP1 ULK2 (-) 2 2 15711 -cellosaurus:CVCL_TW34 HAP1 ULK3 (-) 1 2 15712 -cellosaurus:CVCL_TW35 HAP1 ULK3 (-) 2 2 15713 -cellosaurus:CVCL_TW36 HAP1 ULK3 (-) 3 2 15714 -cellosaurus:CVCL_TW37 HAP1 ULK4 (-) 2 15715 -cellosaurus:CVCL_TW38 HAP1 UNG (-) 1 2 15716 -cellosaurus:CVCL_TW39 HAP1 UNG (-) 2 2 15717 -cellosaurus:CVCL_TW40 HAP1 UNG (-) 3 2 15718 -cellosaurus:CVCL_TW41 HAP1 UNG (-) 4 2 15719 -cellosaurus:CVCL_TW42 HAP1 USMG5 (-) 1 2 15720 -cellosaurus:CVCL_TW43 HAP1 USMG5 (-) 2 2 15721 -cellosaurus:CVCL_TW44 HAP1 USP1 (-) 1 2 15722 -cellosaurus:CVCL_TW45 HAP1 USP1 (-) 2 2 15723 -cellosaurus:CVCL_TW46 HAP1 USP1 (-) 3 2 15724 -cellosaurus:CVCL_TW47 HAP1 USP1 (-) 4 2 15725 -cellosaurus:CVCL_TW48 HAP1 USP10 (-) 2 15726 -cellosaurus:CVCL_TW49 HAP1 USP11 (-) 1 2 15727 -cellosaurus:CVCL_TW50 HAP1 USP11 (-) 2 2 15728 -cellosaurus:CVCL_TW51 HAP1 USP11 (-) 3 2 15729 -cellosaurus:CVCL_TW52 HAP1 USP11 (-) 4 2 15730 -cellosaurus:CVCL_TW53 HAP1 USP12 (-) 1 2 15731 -cellosaurus:CVCL_TW54 HAP1 USP12 (-) 2 2 15732 -cellosaurus:CVCL_TW55 HAP1 USP13 (-) 2 15733 -cellosaurus:CVCL_TW56 HAP1 USP14 (-) 1 2 15734 -cellosaurus:CVCL_TW57 HAP1 USP14 (-) 2 2 15735 -cellosaurus:CVCL_TW58 HAP1 USP15 (-) 1 2 15736 -cellosaurus:CVCL_TW59 HAP1 USP15 (-) 2 2 15737 -cellosaurus:CVCL_TW60 HAP1 USP15 (-) 3 2 15738 -cellosaurus:CVCL_TW61 HAP1 USP16 (-) 1 2 15739 -cellosaurus:CVCL_TW62 HAP1 USP16 (-) 2 2 15740 -cellosaurus:CVCL_TW63 HAP1 USP16 (-) 3 2 15741 -cellosaurus:CVCL_TW64 HAP1 USP16 (-) 4 2 15742 -cellosaurus:CVCL_TW65 HAP1 USP16 (-) 5 2 15743 -cellosaurus:CVCL_TW66 HAP1 USP18 (-) 1 2 15744 -cellosaurus:CVCL_TW67 HAP1 USP18 (-) 2 2 15745 -cellosaurus:CVCL_TW68 HAP1 USP19 (-) 1 2 15746 -cellosaurus:CVCL_TW69 HAP1 USP19 (-) 2 2 15747 -cellosaurus:CVCL_TW70 HAP1 USP2 (-) 1 2 15748 -cellosaurus:CVCL_TW71 HAP1 USP2 (-) 2 2 15749 -cellosaurus:CVCL_XU89 HAP1 USP2 (-) 3 2 15750 -cellosaurus:CVCL_XU90 HAP1 USP2 (-) 4 2 15751 -cellosaurus:CVCL_TW72 HAP1 USP20 (-) 1 2 15752 -cellosaurus:CVCL_TW73 HAP1 USP20 (-) 2 2 15753 -cellosaurus:CVCL_TW74 HAP1 USP21 (-) 1 2 15754 -cellosaurus:CVCL_TW75 HAP1 USP21 (-) 2 2 15755 -cellosaurus:CVCL_TW76 HAP1 USP22 (-) 1 2 15756 -cellosaurus:CVCL_TW77 HAP1 USP22 (-) 2 2 15757 -cellosaurus:CVCL_TW78 HAP1 USP24 (-) 2 15758 -cellosaurus:CVCL_TW79 HAP1 USP25 (-) 2 15759 -cellosaurus:CVCL_TW80 HAP1 USP27X (-) 2 15760 -cellosaurus:CVCL_TW81 HAP1 USP28 (-) 1 2 15761 -cellosaurus:CVCL_TW82 HAP1 USP28 (-) 2 2 15762 -cellosaurus:CVCL_XU91 HAP1 USP28 (-) 3 2 15763 -cellosaurus:CVCL_XU92 HAP1 USP28 (-) 4 2 15764 -cellosaurus:CVCL_XU93 HAP1 USP28 (-) 5 2 15765 -cellosaurus:CVCL_TW83 HAP1 USP3 (-) 2 15766 -cellosaurus:CVCL_TW84 HAP1 USP30 (-) 1 2 15767 -cellosaurus:CVCL_TW85 HAP1 USP30 (-) 2 2 15768 -cellosaurus:CVCL_TW86 HAP1 USP31 (-) 1 2 15769 -cellosaurus:CVCL_TW87 HAP1 USP31 (-) 2 2 15770 -cellosaurus:CVCL_TW88 HAP1 USP32 (-) 1 2 15771 -cellosaurus:CVCL_TW89 HAP1 USP32 (-) 2 2 15772 -cellosaurus:CVCL_TW90 HAP1 USP33 (-) 1 2 15773 -cellosaurus:CVCL_TW91 HAP1 USP33 (-) 2 2 15774 -cellosaurus:CVCL_TW92 HAP1 USP34 (-) 2 15775 -cellosaurus:CVCL_TW93 HAP1 USP35 (-) 2 15776 -cellosaurus:CVCL_TW94 HAP1 USP38 (-) 1 2 15777 -cellosaurus:CVCL_TW95 HAP1 USP38 (-) 2 2 15778 -cellosaurus:CVCL_TW96 HAP1 USP4 (-) 1 2 15779 -cellosaurus:CVCL_XU94 HAP1 USP4 (-) 2 2 15780 -cellosaurus:CVCL_XU95 HAP1 USP4 (-) 3 2 15781 -cellosaurus:CVCL_TW97 HAP1 USP40 (-) 1 2 15782 -cellosaurus:CVCL_TW98 HAP1 USP40 (-) 2 2 15783 -cellosaurus:CVCL_XU96 HAP1 USP42 (-) 2 15784 -cellosaurus:CVCL_TW99 HAP1 USP45 (-) 1 2 15785 -cellosaurus:CVCL_TX00 HAP1 USP45 (-) 2 2 15786 -cellosaurus:CVCL_TX01 HAP1 USP46 (-) 2 15787 -cellosaurus:CVCL_TX02 HAP1 USP47 (-) 1 2 15788 -cellosaurus:CVCL_TX03 HAP1 USP47 (-) 2 2 15789 -cellosaurus:CVCL_TX04 HAP1 USP48 (-) 1 2 15790 -cellosaurus:CVCL_TX05 HAP1 USP48 (-) 2 2 15791 -cellosaurus:CVCL_TX06 HAP1 USP49 (-) 1 2 15792 -cellosaurus:CVCL_TX07 HAP1 USP49 (-) 2 2 15793 -cellosaurus:CVCL_TX08 HAP1 USP53 (-) 1 2 15794 -cellosaurus:CVCL_TX09 HAP1 USP53 (-) 2 2 15795 -cellosaurus:CVCL_TX10 HAP1 USP54 (-) 2 15796 -cellosaurus:CVCL_TX11 HAP1 USP6 (-) 1 2 15797 -cellosaurus:CVCL_TX12 HAP1 USP6 (-) 2 2 15798 -cellosaurus:CVCL_TX13 HAP1 USP7 (-) 2 15799 -cellosaurus:CVCL_TX14 HAP1 USP8 (-) 1 2 15800 -cellosaurus:CVCL_TX15 HAP1 USP8 (-) 2 2 15801 -cellosaurus:CVCL_TX16 HAP1 USP9X (-) 1 2 15802 -cellosaurus:CVCL_TX17 HAP1 USP9X (-) 2 2 15803 -cellosaurus:CVCL_TX18 HAP1 UTRN (-) 1 2 15804 -cellosaurus:CVCL_TX19 HAP1 UTRN (-) 2 2 15805 -cellosaurus:CVCL_TX20 HAP1 UTRN (-) 3 2 15806 -cellosaurus:CVCL_TX21 HAP1 UTRN (-) 4 2 15807 -cellosaurus:CVCL_TX22 HAP1 UVSSA (-) 2 15808 -cellosaurus:CVCL_TX23 HAP1 VAC14 (-) 1 2 15809 -cellosaurus:CVCL_TX24 HAP1 VAC14 (-) 2 2 15810 -cellosaurus:CVCL_TX25 HAP1 VAMP1 (-) 1 2 15811 -cellosaurus:CVCL_TX26 HAP1 VAMP1 (-) 2 2 15812 -cellosaurus:CVCL_TX27 HAP1 VAPA (-) 1 2 15813 -cellosaurus:CVCL_TX28 HAP1 VAPA (-) 2 2 15814 -cellosaurus:CVCL_TX29 HAP1 VAPB (-) 1 2 15815 -cellosaurus:CVCL_TX30 HAP1 VAPB (-) 2 2 15816 -cellosaurus:CVCL_TX31 HAP1 VAV2 (-) 1 2 15817 -cellosaurus:CVCL_TX32 HAP1 VAV2 (-) 2 2 15818 -cellosaurus:CVCL_TX33 HAP1 VAV2 (-) 3 2 15819 -cellosaurus:CVCL_TX34 HAP1 VAV2 (-) 4 2 15820 -cellosaurus:CVCL_TX35 HAP1 VCPIP1 (-) 1 2 15821 -cellosaurus:CVCL_TX36 HAP1 VCPIP1 (-) 2 2 15822 -cellosaurus:CVCL_TX37 HAP1 VDAC1 (-) 1 2 15823 -cellosaurus:CVCL_XU97 HAP1 VDAC1 (-) 2 2 15824 -cellosaurus:CVCL_TX38 HAP1 VDAC3 (-) 1 2 15825 -cellosaurus:CVCL_XU98 HAP1 VDAC3 (-) 2 2 15826 -cellosaurus:CVCL_XU99 HAP1 VDR (-) 2 15827 -cellosaurus:CVCL_TX39 HAP1 VEGFA (-) 1 2 15828 -cellosaurus:CVCL_TX40 HAP1 VEGFA (-) 2 2 15829 -cellosaurus:CVCL_TX41 HAP1 VEGFB (-) 1 2 15830 -cellosaurus:CVCL_TX42 HAP1 VEGFB (-) 2 2 15831 -cellosaurus:CVCL_XV00 HAP1 VHL (-) 2 15832 -cellosaurus:CVCL_TX43 HAP1 VIM (-) 1 2 15833 -cellosaurus:CVCL_TX44 HAP1 VIM (-) 2 2 15834 -cellosaurus:CVCL_XV01 HAP1 VIMP (-) 2 15835 -cellosaurus:CVCL_TX45 HAP1 VKORC1 (-) 1 2 15836 -cellosaurus:CVCL_TX46 HAP1 VKORC1 (-) 2 2 15837 -cellosaurus:CVCL_TX47 HAP1 VKORC1L1 (-) 1 2 15838 -cellosaurus:CVCL_TX48 HAP1 VKORC1L1 (-) 2 2 15839 -cellosaurus:CVCL_TX49 HAP1 VPS13A (-) 1 2 15840 -cellosaurus:CVCL_XV02 HAP1 VPS13A (-) 2 2 15841 -cellosaurus:CVCL_TX50 HAP1 VPS13C (-) 2 15842 -cellosaurus:CVCL_TX51 HAP1 VPS26A (-) 1 2 15843 -cellosaurus:CVCL_TX52 HAP1 VPS26A (-) 2 2 15844 -cellosaurus:CVCL_TX53 HAP1 VPS35 (-) 1 2 15845 -cellosaurus:CVCL_TX54 HAP1 VPS35 (-) 2 2 15846 -cellosaurus:CVCL_TX55 HAP1 VPS35 (-) 3 2 15847 -cellosaurus:CVCL_TX56 HAP1 VPS35 (-) 4 2 15848 -cellosaurus:CVCL_TX57 HAP1 VPS35 (-) 5 2 15849 -cellosaurus:CVCL_TX58 HAP1 VPS36 (-) 2 15850 -cellosaurus:CVCL_TX59 HAP1 VPS4A (-) 1 2 15851 -cellosaurus:CVCL_TX60 HAP1 VPS4A (-) 2 2 15852 -cellosaurus:CVCL_TX61 HAP1 VPS4A (-) 3 2 15853 -cellosaurus:CVCL_TX62 HAP1 VPS4A (-) 4 2 15854 -cellosaurus:CVCL_TX63 HAP1 VPS4A (-) 5 2 15855 -cellosaurus:CVCL_TX64 HAP1 VPS4A (-) 6 2 15856 -cellosaurus:CVCL_TX65 HAP1 VPS4A (-) 7 2 15857 -cellosaurus:CVCL_TX66 HAP1 VPS4A (-) 8 2 15858 -cellosaurus:CVCL_XV03 HAP1 VPS4B (-) 2 15859 -cellosaurus:CVCL_TX67 HAP1 VPS51 (-) 2 15860 -cellosaurus:CVCL_TX68 HAP1 VPS52 (-) 1 2 15861 -cellosaurus:CVCL_TX69 HAP1 VPS52 (-) 2 2 15862 -cellosaurus:CVCL_TX70 HAP1 VPS54 (-) 1 2 15863 -cellosaurus:CVCL_TX71 HAP1 VPS54 (-) 2 2 15864 -cellosaurus:CVCL_TX72 HAP1 VRK1 (-) 1 2 15865 -cellosaurus:CVCL_TX73 HAP1 VRK1 (-) 2 2 15866 -cellosaurus:CVCL_TX74 HAP1 VRK1 (-) 3 2 15867 -cellosaurus:CVCL_TX75 HAP1 VRK2 (-) 2 15868 -cellosaurus:CVCL_TX76 HAP1 VRK3 (-) 2 15869 -cellosaurus:CVCL_TX77 HAP1 WAS (-) 1 2 15870 -cellosaurus:CVCL_XV04 HAP1 WAS (-) 2 2 15871 -cellosaurus:CVCL_TX78 HAP1 WASF1 (-) 1 2 15872 -cellosaurus:CVCL_TX79 HAP1 WASF1 (-) 2 2 15873 -cellosaurus:CVCL_TX80 HAP1 WASF2 (-) 2 15874 -cellosaurus:CVCL_TX81 HAP1 WASF3 (-) 1 2 15875 -cellosaurus:CVCL_TX82 HAP1 WASF3 (-) 2 2 15876 -cellosaurus:CVCL_TX83 HAP1 WASL (-) 1 2 15877 -cellosaurus:CVCL_TX84 HAP1 WASL (-) 2 2 15878 -cellosaurus:CVCL_TX85 HAP1 WASL (-) 3 2 15879 -cellosaurus:CVCL_TX86 HAP1 WDR24 (-) 1 2 15880 -cellosaurus:CVCL_TX87 HAP1 WDR24 (-) 2 2 15881 -cellosaurus:CVCL_TX88 HAP1 WDR37 (-) 1 2 15882 -cellosaurus:CVCL_TX89 HAP1 WDR37 (-) 2 2 15883 -cellosaurus:CVCL_TX90 HAP1 WDR37 (-) 3 2 15884 -cellosaurus:CVCL_XV05 HAP1 WDR45 (-) 1 2 15885 -cellosaurus:CVCL_B5L6 HAP1 WDR45 (-) 2 2 15886 -cellosaurus:CVCL_TX91 HAP1 WDR6 (-) 1 2 15887 -cellosaurus:CVCL_XV06 HAP1 WDR6 (-) 2 2 15888 -cellosaurus:CVCL_XV07 HAP1 WDR6 (-) 3 2 15889 -cellosaurus:CVCL_XV08 HAP1 WDR6 (-) 4 2 15890 -cellosaurus:CVCL_TX92 HAP1 WDR73 (-) 2 15891 -cellosaurus:CVCL_TX93 HAP1 WDR76 (-) 1 2 15892 -cellosaurus:CVCL_TX94 HAP1 WDR76 (-) 2 2 15893 -cellosaurus:CVCL_TX95 HAP1 WDR81 (-) 2 15894 -cellosaurus:CVCL_TX96 HAP1 WDR91 (-) 1 2 15895 -cellosaurus:CVCL_XV09 HAP1 WDR91 (-) 2 2 15896 -cellosaurus:CVCL_TX97 HAP1 WHAMM (-) 1 2 15897 -cellosaurus:CVCL_TX98 HAP1 WHAMM (-) 2 2 15898 -cellosaurus:CVCL_TX99 HAP1 WHAMM (-) 3 2 15899 -cellosaurus:CVCL_TY00 HAP1 WHAMM (-) 4 2 15900 -cellosaurus:CVCL_TY01 HAP1 WHSC1 (-) 1 2 15901 -cellosaurus:CVCL_XV10 HAP1 WHSC1 (-) 2 2 15902 -cellosaurus:CVCL_XV12 HAP1 WHSC1 (-) 3 2 15903 -cellosaurus:CVCL_TY02 HAP1 WHSC1L1 (-) 1 2 15904 -cellosaurus:CVCL_TY03 HAP1 WHSC1L1 (-) 2 2 15905 -cellosaurus:CVCL_TY04 HAP1 WIPI2 (-) 1 2 15906 -cellosaurus:CVCL_XV13 HAP1 WIPI2 (-) 2 2 15907 -cellosaurus:CVCL_TY05 HAP1 WNK1 (-) 1 2 15908 -cellosaurus:CVCL_TY06 HAP1 WNK1 (-) 2 2 15909 -cellosaurus:CVCL_TY07 HAP1 WNK1 (-) 3 2 15910 -cellosaurus:CVCL_TY08 HAP1 WNK1 (-) 4 2 15911 -cellosaurus:CVCL_TY09 HAP1 WNK2 (-) 1 2 15912 -cellosaurus:CVCL_TY10 HAP1 WNK2 (-) 2 2 15913 -cellosaurus:CVCL_TY11 HAP1 WNK3 (-) 1 2 15914 -cellosaurus:CVCL_TY12 HAP1 WNK3 (-) 2 2 15915 -cellosaurus:CVCL_TY13 HAP1 WNK3 (-) 3 2 15916 -cellosaurus:CVCL_TY14 HAP1 WNK3 (-) 4 2 15917 -cellosaurus:CVCL_TY15 HAP1 WNK3 (-) 5 2 15918 -cellosaurus:CVCL_TY16 HAP1 WNK4 (-) 1 2 15919 -cellosaurus:CVCL_TY17 HAP1 WNK4 (-) 2 2 15920 -cellosaurus:CVCL_TY18 HAP1 WRN (-) 1 2 15921 -cellosaurus:CVCL_TY19 HAP1 WRN (-) 2 2 15922 -cellosaurus:CVCL_TY20 HAP1 WT1 (-) 1 2 15923 -cellosaurus:CVCL_TY21 HAP1 WT1 (-) 2 2 15924 -cellosaurus:CVCL_TY22 HAP1 WT1 (-) 3 2 15925 -cellosaurus:CVCL_TY23 HAP1 WTAP (-) 1 2 15926 -cellosaurus:CVCL_TY24 HAP1 WTAP (-) 2 2 15927 -cellosaurus:CVCL_TY25 HAP1 WTAP (-) 3 2 15928 -cellosaurus:CVCL_TY26 HAP1 WWOX (-) 1 2 15929 -cellosaurus:CVCL_XV14 HAP1 WWOX (-) 2 2 15930 -cellosaurus:CVCL_TY27 HAP1 WWP1 (-) 1 2 15931 -cellosaurus:CVCL_TY28 HAP1 WWP1 (-) 2 2 15932 -cellosaurus:CVCL_TY29 HAP1 WWTR1 (-) 1 2 15933 -cellosaurus:CVCL_XV15 HAP1 WWTR1 (-) 2 2 15934 -cellosaurus:CVCL_TY30 HAP1 XBP1 (-) 1 2 15935 -cellosaurus:CVCL_TY31 HAP1 XBP1 (-) 2 2 15936 -cellosaurus:CVCL_TY32 HAP1 XKR8 (-) 1 2 15937 -cellosaurus:CVCL_XV16 HAP1 XKR8 (-) 2 2 15938 -cellosaurus:CVCL_TY33 HAP1 XPA (-) 1 2 15939 -cellosaurus:CVCL_TY34 HAP1 XPA (-) 2 2 15940 -cellosaurus:CVCL_TY35 HAP1 XPC (-) 1 2 15941 -cellosaurus:CVCL_TY36 HAP1 XPC (-) 2 2 15942 -cellosaurus:CVCL_TY37 HAP1 XPC (-) 3 2 15943 -cellosaurus:CVCL_TY38 HAP1 XPR1 (-) 1 2 15944 -cellosaurus:CVCL_TY39 HAP1 XPR1 (-) 2 2 15945 -cellosaurus:CVCL_TY40 HAP1 XRCC4 (-) 2 15946 -cellosaurus:CVCL_XV17 HAP1 XYLT2 (-) 2 15947 -cellosaurus:CVCL_TY41 HAP1 YAP1 (-) 1 2 15948 -cellosaurus:CVCL_TY42 HAP1 YAP1 (-) 2 2 15949 -cellosaurus:CVCL_TY43 HAP1 YBEY (-) 1 2 15950 -cellosaurus:CVCL_TY44 HAP1 YBEY (-) 2 2 15951 -cellosaurus:CVCL_TY45 HAP1 YES1 (-) 1 2 15952 -cellosaurus:CVCL_TY46 HAP1 YES1 (-) 2 2 15953 -cellosaurus:CVCL_XV18 HAP1 YTHDC2 (-) 2 15954 -cellosaurus:CVCL_XV19 HAP1 YTHDF1 (-) 1 2 15955 -cellosaurus:CVCL_B5L7 HAP1 YTHDF1 (-) 2 2 15956 -cellosaurus:CVCL_B5L8 HAP1 YTHDF1 (-) 3 2 15957 -cellosaurus:CVCL_TY47 HAP1 YTHDF2 (-) 1 2 15958 -cellosaurus:CVCL_XV20 HAP1 YTHDF2 (-) 2 2 15959 -cellosaurus:CVCL_XV21 HAP1 YTHDF3 (-) 2 15960 -cellosaurus:CVCL_TY48 HAP1 ZADH2 (-) 1 2 15961 -cellosaurus:CVCL_XV22 HAP1 ZADH2 (-) 2 2 15962 -cellosaurus:CVCL_XV23 HAP1 ZADH2 (-) 3 2 15963 -cellosaurus:CVCL_XV24 HAP1 ZADH2 (-) 4 2 15964 -cellosaurus:CVCL_TY49 HAP1 ZAK (-) 1 2 15965 -cellosaurus:CVCL_TY50 HAP1 ZAK (-) 2 2 15966 -cellosaurus:CVCL_TY51 HAP1 ZBTB24 (-) 1 2 15967 -cellosaurus:CVCL_TY52 HAP1 ZBTB24 (-) 2 2 15968 -cellosaurus:CVCL_TY53 HAP1 ZBTB24 (-) 3 2 15969 -cellosaurus:CVCL_TY54 HAP1 ZBTB33 (-) 1 2 15970 -cellosaurus:CVCL_TY55 HAP1 ZBTB33 (-) 2 2 15971 -cellosaurus:CVCL_TY56 HAP1 ZC3H12A (-) 1 2 15972 -cellosaurus:CVCL_XV25 HAP1 ZC3H12A (-) 2 2 15973 -cellosaurus:CVCL_TY57 HAP1 ZCCHC4 (-) 1 2 15974 -cellosaurus:CVCL_TY58 HAP1 ZCCHC4 (-) 2 2 15975 -cellosaurus:CVCL_TY59 HAP1 ZCCHC4 (-) 3 2 15976 -cellosaurus:CVCL_TY60 HAP1 ZCCHC4 (-) 4 2 15977 -cellosaurus:CVCL_TY61 HAP1 ZCCHC8 (-) 2 15978 -cellosaurus:CVCL_TY62 HAP1 ZDHHC1 (-) 2 15979 -cellosaurus:CVCL_TY63 HAP1 ZDHHC11 (-) 1 2 15980 -cellosaurus:CVCL_TY64 HAP1 ZDHHC11 (-) 2 2 15981 -cellosaurus:CVCL_TY65 HAP1 ZDHHC12 (-) 1 2 15982 -cellosaurus:CVCL_TY66 HAP1 ZDHHC12 (-) 2 2 15983 -cellosaurus:CVCL_TY67 HAP1 ZDHHC12 (-) 3 2 15984 -cellosaurus:CVCL_TY68 HAP1 ZDHHC13 (-) 1 2 15985 -cellosaurus:CVCL_TY69 HAP1 ZDHHC13 (-) 2 2 15986 -cellosaurus:CVCL_TY70 HAP1 ZDHHC14 (-) 1 2 15987 -cellosaurus:CVCL_TY71 HAP1 ZDHHC14 (-) 2 2 15988 -cellosaurus:CVCL_TY72 HAP1 ZDHHC15 (-) 2 15989 -cellosaurus:CVCL_TY73 HAP1 ZDHHC16 (-) 1 2 15990 -cellosaurus:CVCL_TY74 HAP1 ZDHHC16 (-) 2 2 15991 -cellosaurus:CVCL_TY75 HAP1 ZDHHC17 (-) 1 2 15992 -cellosaurus:CVCL_TY76 HAP1 ZDHHC17 (-) 2 2 15993 -cellosaurus:CVCL_TY77 HAP1 ZDHHC17 (-) 3 2 15994 -cellosaurus:CVCL_TY78 HAP1 ZDHHC18 (-) 1 2 15995 -cellosaurus:CVCL_TY79 HAP1 ZDHHC18 (-) 2 2 15996 -cellosaurus:CVCL_TY80 HAP1 ZDHHC19 (-) 1 2 15997 -cellosaurus:CVCL_TY81 HAP1 ZDHHC19 (-) 2 2 15998 -cellosaurus:CVCL_TY82 HAP1 ZDHHC19 (-) 3 2 15999 -cellosaurus:CVCL_TY83 HAP1 ZDHHC2 (-) 1 2 16000 -cellosaurus:CVCL_TY84 HAP1 ZDHHC2 (-) 2 2 16001 -cellosaurus:CVCL_TY85 HAP1 ZDHHC20 (-) 1 2 16002 -cellosaurus:CVCL_TY86 HAP1 ZDHHC20 (-) 2 2 16003 -cellosaurus:CVCL_TY87 HAP1 ZDHHC21 (-) 2 16004 -cellosaurus:CVCL_TY88 HAP1 ZDHHC22 (-) 1 2 16005 -cellosaurus:CVCL_TY89 HAP1 ZDHHC22 (-) 2 2 16006 -cellosaurus:CVCL_TY90 HAP1 ZDHHC23 (-) 1 2 16007 -cellosaurus:CVCL_TY91 HAP1 ZDHHC23 (-) 2 2 16008 -cellosaurus:CVCL_TY92 HAP1 ZDHHC24 (-) 1 2 16009 -cellosaurus:CVCL_TY93 HAP1 ZDHHC24 (-) 2 2 16010 -cellosaurus:CVCL_TY94 HAP1 ZDHHC3 (-) 1 2 16011 -cellosaurus:CVCL_TY95 HAP1 ZDHHC3 (-) 2 2 16012 -cellosaurus:CVCL_TY96 HAP1 ZDHHC4 (-) 1 2 16013 -cellosaurus:CVCL_TY97 HAP1 ZDHHC4 (-) 2 2 16014 -cellosaurus:CVCL_TY98 HAP1 ZDHHC4 (-) 3 2 16015 -cellosaurus:CVCL_TY99 HAP1 ZDHHC4 (-) 4 2 16016 -cellosaurus:CVCL_TZ00 HAP1 ZDHHC5 (-) 1 2 16017 -cellosaurus:CVCL_TZ01 HAP1 ZDHHC5 (-) 2 2 16018 -cellosaurus:CVCL_TZ02 HAP1 ZDHHC6 (-) 1 2 16019 -cellosaurus:CVCL_TZ03 HAP1 ZDHHC6 (-) 2 2 16020 -cellosaurus:CVCL_TZ04 HAP1 ZDHHC7 (-) 1 2 16021 -cellosaurus:CVCL_TZ05 HAP1 ZDHHC7 (-) 2 2 16022 -cellosaurus:CVCL_TZ06 HAP1 ZDHHC8 (-) 1 2 16023 -cellosaurus:CVCL_TZ07 HAP1 ZDHHC8 (-) 2 2 16024 -cellosaurus:CVCL_TZ08 HAP1 ZDHHC8 (-) 3 2 16025 -cellosaurus:CVCL_TZ09 HAP1 ZDHHC9 (-) 1 2 16026 -cellosaurus:CVCL_TZ10 HAP1 ZDHHC9 (-) 2 2 16027 -cellosaurus:CVCL_TZ11 HAP1 ZEB1 (-) 1 2 16028 -cellosaurus:CVCL_XV26 HAP1 ZEB1 (-) 2 2 16029 -cellosaurus:CVCL_XV27 HAP1 ZEB1 (-) 3 2 16030 -cellosaurus:CVCL_XV28 HAP1 ZEB1 (-) 4 2 16031 -cellosaurus:CVCL_TZ12 HAP1 ZEB2 (-) 1 2 16032 -cellosaurus:CVCL_XV29 HAP1 ZEB2 (-) 2 2 16033 -cellosaurus:CVCL_TZ13 HAP1 ZFP36 (-) 1 2 16034 -cellosaurus:CVCL_TZ14 HAP1 ZFP36 (-) 2 2 16035 -cellosaurus:CVCL_XV30 HAP1 ZFX (-) 2 16036 -cellosaurus:CVCL_TZ15 HAP1 ZFYVE1 (-) 1 2 16037 -cellosaurus:CVCL_TZ16 HAP1 ZFYVE1 (-) 2 2 16038 -cellosaurus:CVCL_TZ17 HAP1 ZFYVE1 (-) 3 2 16039 -cellosaurus:CVCL_TZ18 HAP1 ZFYVE1 (-) 4 2 16040 -cellosaurus:CVCL_TZ19 HAP1 ZFYVE1 (-) 5 2 16041 -cellosaurus:CVCL_TZ20 HAP1 ZFYVE16 (-) 1 2 16042 -cellosaurus:CVCL_TZ21 HAP1 ZFYVE16 (-) 2 2 16043 -cellosaurus:CVCL_TZ22 HAP1 ZMIZ2 (-) 1 2 16044 -cellosaurus:CVCL_TZ23 HAP1 ZMIZ2 (-) 2 2 16045 -cellosaurus:CVCL_TZ24 HAP1 ZMPSTE24 (-) 1 2 16046 -cellosaurus:CVCL_TZ25 HAP1 ZMPSTE24 (-) 2 2 16047 -cellosaurus:CVCL_TZ26 HAP1 ZMYM3 (-) 1 2 16048 -cellosaurus:CVCL_TZ27 HAP1 ZMYM3 (-) 2 2 16049 -cellosaurus:CVCL_TZ28 HAP1 ZMYM3 (-) 3 2 16050 -cellosaurus:CVCL_TZ29 HAP1 ZMYM3 (-) 4 2 16051 -cellosaurus:CVCL_TZ30 HAP1 ZMYND11 (-) 1 2 16052 -cellosaurus:CVCL_TZ31 HAP1 ZMYND11 (-) 2 2 16053 -cellosaurus:CVCL_TZ32 HAP1 ZMYND8 (-) 1 2 16054 -cellosaurus:CVCL_TZ33 HAP1 ZMYND8 (-) 2 2 16055 -cellosaurus:CVCL_TZ34 HAP1 ZNF10 (-) 2 16056 -cellosaurus:CVCL_XV31 HAP1 ZNF143 (-) 2 16057 -cellosaurus:CVCL_TZ35 HAP1 ZNF174 (-) 1 2 16058 -cellosaurus:CVCL_TZ36 HAP1 ZNF174 (-) 2 2 16059 -cellosaurus:CVCL_TZ37 HAP1 ZNF267 (-) 1 2 16060 -cellosaurus:CVCL_TZ38 HAP1 ZNF267 (-) 2 2 16061 -cellosaurus:CVCL_TZ39 HAP1 ZNF367 (-) 1 2 16062 -cellosaurus:CVCL_XV32 HAP1 ZNF367 (-) 2 2 16063 -cellosaurus:CVCL_XV33 HAP1 ZNF536 (-) 2 16064 -cellosaurus:CVCL_TZ40 HAP1 ZNF589 (-) 1 2 16065 -cellosaurus:CVCL_TZ41 HAP1 ZNF589 (-) 2 2 16066 -cellosaurus:CVCL_TZ42 HAP1 ZNF646 (-) 1 2 16067 -cellosaurus:CVCL_XV34 HAP1 ZNF646 (-) 2 2 16068 -cellosaurus:CVCL_XV35 HAP1 ZNF646 (-) 3 2 16069 -cellosaurus:CVCL_TZ43 HAP1 ZNF74 (-) 1 2 16070 -cellosaurus:CVCL_TZ44 HAP1 ZNF74 (-) 2 2 16071 -cellosaurus:CVCL_TZ45 HAP1 ZNF746 (-) 2 16072 -cellosaurus:CVCL_TZ46 HAP1 ZNF764 (-) 1 2 16073 -cellosaurus:CVCL_TZ47 HAP1 ZNF764 (-) 2 2 16074 -cellosaurus:CVCL_TZ48 HAP1 ZNF777 (-) 1 2 16075 -cellosaurus:CVCL_TZ49 HAP1 ZNF777 (-) 2 2 16076 -cellosaurus:CVCL_TZ50 HAP1 ZNF816 (-) 1 2 16077 -cellosaurus:CVCL_TZ51 HAP1 ZNF816 (-) 2 2 16078 -cellosaurus:CVCL_TZ52 HAP1 ZNF91 (-) 1 2 16079 -cellosaurus:CVCL_TZ53 HAP1 ZNF91 (-) 2 2 16080 -cellosaurus:CVCL_TZ54 HAP1 ZNF91 (-) 3 2 16081 -cellosaurus:CVCL_TZ55 HAP1 ZNRF3 (-) 1 2 16082 -cellosaurus:CVCL_XV36 HAP1 ZNRF3 (-) 2 2 16083 -cellosaurus:CVCL_XV37 HAP1 ZNRF3 (-) 3 2 16084 -cellosaurus:CVCL_XV38 HAP1 ZNRF3 (-) 4 2 16085 -cellosaurus:CVCL_TZ56 HAP1 ZRANB1 (-) 1 2 16086 -cellosaurus:CVCL_TZ57 HAP1 ZRANB1 (-) 2 2 16087 -cellosaurus:CVCL_B253 KBM-7 P1-55 1 16088 -cellosaurus:CVCL_B254 KBM-7/B5 1 16089 -cellosaurus:CVCL_8Z14 KBM-7/B5-1803 2 16090 -cellosaurus:CVCL_1339 KP-N-RT-BM-1 0 16091 -cellosaurus:CVCL_9512 KP-N-RT-RT-BMV-C6 1 16092 -cellosaurus:CVCL_8207 GLC-2 0 16093 -cellosaurus:CVCL_0B24 NYH/187/162 1 16094 -cellosaurus:CVCL_0B25 NYH/187/165 1 16095 -cellosaurus:CVCL_0B26 NYH/CAM 1 16096 -cellosaurus:CVCL_0B27 NYH/CIS 1 16097 -cellosaurus:CVCL_0B28 NYH/TPT 1 16098 -cellosaurus:CVCL_0B29 NYH/VM 1 16099 -cellosaurus:CVCL_6007 NPC-BM1 0 16100 -cellosaurus:CVCL_B3QC NPC-BM00 1 16101 -cellosaurus:CVCL_B3QB NPC-BM29 1 16102 -cellosaurus:CVCL_4923 TALL-103 0 16103 -cellosaurus:CVCL_4805 TALL-103/2 1 16104 -cellosaurus:CVCL_5619 MEL-CLS-1 0 16105 -cellosaurus:CVCL_GZ38 FO1-12 1 16106 -cellosaurus:CVCL_3086 OSC-19 0 16107 -cellosaurus:CVCL_AT74 OSC-19LN1 1 16108 -cellosaurus:CVCL_AT75 OSC-19LN2 2 16109 -cellosaurus:CVCL_AT76 OSC-19LN3 3 16110 -cellosaurus:CVCL_AT77 OSC-19LN4 4 16111 -cellosaurus:CVCL_AT78 OSC-19LN5 5 16112 -cellosaurus:CVCL_C830 AMOC-2 0 16113 -cellosaurus:CVCL_AT98 AMOC-2 Subclone #10 1 16114 -cellosaurus:CVCL_AT99 AMOC-2 Subclone #11 1 16115 -cellosaurus:CVCL_AT95 AMOC-2 Subclone #2 1 16116 -cellosaurus:CVCL_AT96 AMOC-2 Subclone #4 1 16117 -cellosaurus:CVCL_AT97 AMOC-2 Subclone #6 1 16118 -cellosaurus:CVCL_3353 OMC-2 0 16119 -cellosaurus:CVCL_A8Q6 OMC-2 Prex2a shRNA type 1 1 16120 -cellosaurus:CVCL_A8Q7 OMC-2 Prex2a shRNA type 2 1 16121 -cellosaurus:CVCL_7935 253J 0 16122 -cellosaurus:CVCL_7936 253J laval 1 16123 -cellosaurus:CVCL_7937 253J-BV 1 16124 -cellosaurus:CVCL_6G34 253J-Lung-IV 1 16125 -cellosaurus:CVCL_B7HV NSG-70 0 16126 -cellosaurus:CVCL_B7HW NSG-70-GFP 1 16127 -cellosaurus:CVCL_B7HX NSG-70-WNT5A-GFP 1 16128 -cellosaurus:CVCL_2794 SKG-II 0 16129 -cellosaurus:CVCL_8159 SKG-II-SF 1 16130 -cellosaurus:CVCL_8776 HKMUS 2 16131 -cellosaurus:CVCL_8230 HKMUS-SF 3 16132 -cellosaurus:CVCL_4J76 SKG-II/LUC 1 16133 -cellosaurus:CVCL_4J77 SKG-II/TS 1 16134 -cellosaurus:CVCL_0178 BT-20 0 16135 -cellosaurus:CVCL_J244 BT-20/CMV-Luc 1 16136 -cellosaurus:CVCL_M061 BT-20/nKR 1 16137 -cellosaurus:CVCL_2037 F-36P 0 16138 -cellosaurus:CVCL_7227 F-36E 1 16139 -cellosaurus:CVCL_JX49 NEO217 0 16140 -cellosaurus:CVCL_XU15 NEO217-luc 1 16141 -cellosaurus:CVCL_0320 HT-29 0 16142 -cellosaurus:CVCL_9556 2474/90 1 16143 -cellosaurus:CVCL_9557 2957/90 1 16144 -cellosaurus:CVCL_9558 3051/80 1 16145 -cellosaurus:CVCL_0144 ARO 1 16146 -cellosaurus:CVCL_2011 CX-1 1 16147 -cellosaurus:CVCL_DH88 HT-29 BR100 1 16148 -cellosaurus:CVCL_DH89 HT-29 BR200 1 16149 -cellosaurus:CVCL_DH90 HT-29 BR300 1 16150 -cellosaurus:CVCL_H252 HT-29 HD3 1 16151 -cellosaurus:CVCL_H253 HT-29 HD4 1 16152 -cellosaurus:CVCL_H254 HT-29 HD6 1 16153 -cellosaurus:CVCL_H255 HT-29 HD8 1 16154 -cellosaurus:CVCL_C1KN HT-29 Y1-16 1 16155 -cellosaurus:CVCL_C1KP HT-29 Y1-4 1 16156 -cellosaurus:CVCL_C1KQ HT-29 Y1-7 1 16157 -cellosaurus:CVCL_8118 HT-29-D4 1 16158 -cellosaurus:CVCL_4Z22 HT-29-D9 1 16159 -cellosaurus:CVCL_6833 HT-29-G 1 16160 -cellosaurus:CVCL_J256 HT-29-Luc 1 16161 -cellosaurus:CVCL_5J34 HT-29-luc-D6 1 16162 -cellosaurus:CVCL_G077 HT-29-M6 1 16163 -cellosaurus:CVCL_6834 HT-29-MTX 1 16164 -cellosaurus:CVCL_G356 HT-29-MTX-E12 2 16165 -cellosaurus:CVCL_5J00 HT-29-Red-FLuc 1 16166 -cellosaurus:CVCL_0I27 HT-29/5-FU 1 16167 -cellosaurus:CVCL_0T66 HT-29/5-FU/S 1 16168 -cellosaurus:CVCL_Y178 HT-29/ADM 1 16169 -cellosaurus:CVCL_LJ30 HT-29/B6 1 16170 -cellosaurus:CVCL_Y177 HT-29/cDDP 1 16171 -cellosaurus:CVCL_DE12 HT-29/cl.f8 1 16172 -cellosaurus:CVCL_H269 HT-29/CPT 1 16173 -cellosaurus:CVCL_Y179 HT-29/ETP 1 16174 -cellosaurus:CVCL_WV61 HT-29/SN-38 1 16175 -cellosaurus:CVCL_C3GK HT-29_6244R 1 16176 -cellosaurus:CVCL_WN77 HT-29KM 1 16177 -cellosaurus:CVCL_EQ49 HT-29R 1 16178 -cellosaurus:CVCL_4V27 HT-29R13 1 16179 -cellosaurus:CVCL_5U94 HT29 LM1 1 16180 -cellosaurus:CVCL_5U95 HT29 LM2 2 16181 -cellosaurus:CVCL_5U96 HT29 LM3 3 16182 -cellosaurus:CVCL_C764 HT29-12B 1 16183 -cellosaurus:CVCL_C765 HT29-13G 1 16184 -cellosaurus:CVCL_C763 HT29-16E 1 16185 -cellosaurus:CVCL_5940 HT29-18 1 16186 -cellosaurus:CVCL_5941 HT29-18-C1 2 16187 -cellosaurus:CVCL_0322 HT29 gluc C1 3 16188 -cellosaurus:CVCL_5942 HT29-18-N2 2 16189 -cellosaurus:CVCL_C766 HT29-18A 2 16190 -cellosaurus:CVCL_0323 HT29-19A 1 16191 -cellosaurus:CVCL_A3CP HT29-5FU resistant (1 microMolar) 1 16192 -cellosaurus:CVCL_A8P6 HT29-5FU resistant (10 microMolar) 1 16193 -cellosaurus:CVCL_A8P7 HT29-5F12 2 16194 -cellosaurus:CVCL_A8P8 HT29-5F7 2 16195 -cellosaurus:CVCL_A8P9 HT29-5M12 1 16196 -cellosaurus:CVCL_A8Q0 HT29-5M21 1 16197 -cellosaurus:CVCL_5J20 HT29-luc2 1 16198 -cellosaurus:CVCL_A8BX HT29-Lucia AhR 1 16199 -cellosaurus:CVCL_5949 HT29-OxR 1 16200 -cellosaurus:CVCL_EQ23 HT29-R 1 16201 -cellosaurus:CVCL_2521 HT29/219 1 16202 -cellosaurus:CVCL_4V74 HT29/L-OHP 1 16203 -cellosaurus:CVCL_8476 HTOXAR3 1 16204 -cellosaurus:CVCL_6301 KAK-1 1 16205 -cellosaurus:CVCL_6302 KAT-10 1 16206 -cellosaurus:CVCL_6304 KAT-4 1 16207 -cellosaurus:CVCL_0370 KAT-5 1 16208 -cellosaurus:CVCL_6305 KAT-50 1 16209 -cellosaurus:CVCL_6306 KAT-7 1 16210 -cellosaurus:CVCL_L095 KM20 1 16211 -cellosaurus:CVCL_0B38 KM20-C 2 16212 -cellosaurus:CVCL_D889 KM20L2 1 16213 -cellosaurus:CVCL_YJ83 LINTERNA HT-29 1 16214 -cellosaurus:CVCL_6310 MRO 1 16215 -cellosaurus:CVCL_7204 MV-522 1 16216 -cellosaurus:CVCL_0E37 MV522/MDR1 2 16217 -cellosaurus:CVCL_0E38 MV522/MRP 2 16218 -cellosaurus:CVCL_M779 RO-D81-1 1 16219 -cellosaurus:CVCL_2760 WiDr 1 16220 -cellosaurus:CVCL_2N03 WiDr/R 2 16221 -cellosaurus:CVCL_0426 MG-63 0 16222 -cellosaurus:CVCL_IR36 MG-63.3A 1 16223 -cellosaurus:CVCL_R705 MG63.2 1 16224 -cellosaurus:CVCL_WL01 MG63.3 2 16225 -cellosaurus:CVCL_9U34 MG63/DXR1000 1 16226 -cellosaurus:CVCL_WR53 OSE-MG63 1 16227 -cellosaurus:CVCL_N728 NCE-G 55 0 16228 -cellosaurus:CVCL_BW88 NCE-G 55T2 1 16229 -cellosaurus:CVCL_N745 NCE-G 123 0 16230 -cellosaurus:CVCL_BW89 NCE-G 123T2 1 16231 -cellosaurus:CVCL_2793 SKG-I 0 16232 -cellosaurus:CVCL_4J75 SKG-I/TS 1 16233 -cellosaurus:CVCL_2960 IHH-4 0 16234 -cellosaurus:CVCL_3219 TMH-1 1 16235 -cellosaurus:CVCL_M259 KKU-M139 0 16236 -cellosaurus:CVCL_HF57 KKU-M139/GEM 1 16237 -cellosaurus:CVCL_2213 TC-71 0 16238 -cellosaurus:CVCL_QW72 TC-CD99-shRNA#1 1 16239 -cellosaurus:CVCL_QW73 TC-CD99-shRNA#2 1 16240 -cellosaurus:CVCL_QW71 TC-CTR-shRNA 1 16241 -cellosaurus:CVCL_JL55 SR8 0 16242 -cellosaurus:CVCL_JL56 SR8CT 1 16243 -cellosaurus:CVCL_3890 A818 0 16244 -cellosaurus:CVCL_3891 A818-1 1 16245 -cellosaurus:CVCL_3892 A818-4 1 16246 -cellosaurus:CVCL_3893 A818-6 1 16247 -cellosaurus:CVCL_8777 A818-7 1 16248 -cellosaurus:CVCL_M086 MWCL-1 0 16249 -cellosaurus:CVCL_VJ31 MWCL-1/BR 1 16250 -cellosaurus:CVCL_VJ32 MWCL-1/IR 1 16251 -cellosaurus:CVCL_1667 RPMI-8402 0 16252 -cellosaurus:CVCL_2878 CPT-K5 1 16253 -cellosaurus:CVCL_H580 BE [Human colon carcinoma] 0 16254 -cellosaurus:CVCL_H581 BE-NQ2 1 16255 -cellosaurus:CVCL_H582 BE-NQ3 1 16256 -cellosaurus:CVCL_H583 BE-NQ4 1 16257 -cellosaurus:CVCL_H584 BE-NQ5 1 16258 -cellosaurus:CVCL_H585 BE-NQ7 1 16259 -cellosaurus:CVCL_1600 NCI-H929 0 16260 -cellosaurus:CVCL_M400 NCI-H929B 1 16261 -cellosaurus:CVCL_0032 SiHa 0 16262 -cellosaurus:CVCL_C0TY SiHa-APOA1 1 16263 -cellosaurus:CVCL_X529 SiHa-NTRpuro 1 16264 -cellosaurus:CVCL_K031 SiHa/cDDP 1 16265 -cellosaurus:CVCL_XB80 SiHa/VP16 1 16266 -cellosaurus:CVCL_WU75 TL [Human SiHa contaminated cell line] 1 16267 -cellosaurus:CVCL_0139 AGS 0 16268 -cellosaurus:CVCL_VP28 AGS NOD1 KO clone 41A8 1 16269 -cellosaurus:CVCL_VP29 AGS NOD1 KO clone 41H8 1 16270 -cellosaurus:CVCL_B7H2 AGS-5FU-R 1 16271 -cellosaurus:CVCL_A4BR AGS-Luc2 1 16272 -cellosaurus:CVCL_B7H3 AGS-PTX-R 1 16273 -cellosaurus:CVCL_Y085 AGS/EPI 1 16274 -cellosaurus:CVCL_VZ57 mAGS(1) 1 16275 -cellosaurus:CVCL_VZ58 mAGS(2) 1 16276 -cellosaurus:CVCL_VZ59 mAGS(3) 1 16277 -cellosaurus:CVCL_VZ60 mAGS(4) 1 16278 -cellosaurus:CVCL_VZ61 mAGS(5) 1 16279 -cellosaurus:CVCL_B262 PC/JW 0 16280 -cellosaurus:CVCL_IQ10 PC/JW/FI 1 16281 -cellosaurus:CVCL_E322 YES-2 0 16282 -cellosaurus:CVCL_S526 YES-2CSC 1 16283 -cellosaurus:CVCL_XK04 M409 [Human melanoma] 0 16284 -cellosaurus:CVCL_XK14 M409-AR 1 16285 -cellosaurus:CVCL_9902 UKF-NB-2 0 16286 -cellosaurus:CVCL_9903 UKF-NB-2AD169 1 16287 -cellosaurus:CVCL_RT20 UKF-NB-2rCARBO2000 1 16288 -cellosaurus:CVCL_9908 UKF-NB-2rCDDP1000 1 16289 -cellosaurus:CVCL_RT02 UKF-NB-2rDACARB4 1 16290 -cellosaurus:CVCL_RR83 UKF-NB-2rDOCE10 1 16291 -cellosaurus:CVCL_9909 UKF-NB-2rDOX100 1 16292 -cellosaurus:CVCL_RS01 UKF-NB-2rDOX20 1 16293 -cellosaurus:CVCL_RT03 UKF-NB-2rETO40 1 16294 -cellosaurus:CVCL_RT04 UKF-NB-2rETO400 1 16295 -cellosaurus:CVCL_RT05 UKF-NB-2rIRINO400 1 16296 -cellosaurus:CVCL_RR84 UKF-NB-2rMEL600 1 16297 -cellosaurus:CVCL_RS02 UKF-NB-2rNutlin10muM 1 16298 -cellosaurus:CVCL_RR85 UKF-NB-2rOXALI600 1 16299 -cellosaurus:CVCL_RT06 UKF-NB-2rPCL20 1 16300 -cellosaurus:CVCL_RR86 UKF-NB-2rTOPO10 1 16301 -cellosaurus:CVCL_9910 UKF-NB-2rVCR10 1 16302 -cellosaurus:CVCL_RS00 UKF-NB-2rVCR20 1 16303 -cellosaurus:CVCL_RR87 UKF-NB-2rVINB10 1 16304 -cellosaurus:CVCL_RR88 UKF-NB-2rVINOR10 1 16305 -cellosaurus:CVCL_W852 GCH-1 0 16306 -cellosaurus:CVCL_W855 GCH-1:RI 1 16307 -cellosaurus:CVCL_W856 GCH-1:RII 1 16308 -cellosaurus:CVCL_W854 GCH-1m 1 16309 -cellosaurus:CVCL_2123 MOLP-2 0 16310 -cellosaurus:CVCL_4V88 MOLP-2/R 1 16311 -cellosaurus:CVCL_3004 KP-2 0 16312 -cellosaurus:CVCL_4W98 KP-2/CMV-Luc 1 16313 -cellosaurus:CVCL_0U12 KP-2N 1 16314 -cellosaurus:CVCL_B284 HPAF 0 16315 -cellosaurus:CVCL_0313 HPAF-II 1 16316 -cellosaurus:CVCL_B285 HPAF/CD11 1 16317 -cellosaurus:CVCL_AV53 HOVTAX2 0 16318 -cellosaurus:CVCL_AV60 HOVTAX2-paclitaxel resistant 1 16319 -cellosaurus:CVCL_G136 HuT11 0 16320 -cellosaurus:CVCL_VL79 HuT11-1 1 16321 -cellosaurus:CVCL_VL80 HuT11-2 1 16322 -cellosaurus:CVCL_VL81 HuT11-5 1 16323 -cellosaurus:CVCL_VL82 HuT11-6 1 16324 -cellosaurus:CVCL_6030 SK-MEL-27 0 16325 -cellosaurus:CVCL_U913 SK-MEL-27-1 1 16326 -cellosaurus:CVCL_U914 SK-MEL-27-2 1 16327 -cellosaurus:CVCL_L066 JJN-1 0 16328 -cellosaurus:CVCL_L067 JJN-2 1 16329 -cellosaurus:CVCL_2078 JJN-3 1 16330 -cellosaurus:CVCL_0037 A-431 0 16331 -cellosaurus:CVCL_A4BS A-431-Luc2 1 16332 -cellosaurus:CVCL_QX11 A431 siYAP 1 16333 -cellosaurus:CVCL_QX12 A431 YAP-5SA 1 16334 -cellosaurus:CVCL_B5YD A431-AC3 1 16335 -cellosaurus:CVCL_EQ67 A431-PR 1 16336 -cellosaurus:CVCL_GY97 A431/CDDP1 1 16337 -cellosaurus:CVCL_GY98 A431/CDDP2 1 16338 -cellosaurus:CVCL_4V41 A431/TPT 1 16339 -cellosaurus:CVCL_3485 A431NS 1 16340 -cellosaurus:CVCL_WS72 A431PF 1 16341 -cellosaurus:CVCL_B1BR Abcam A-431 ADRB2 KO 1 16342 -cellosaurus:CVCL_B1BS Abcam A-431 B2M KO 1 16343 -cellosaurus:CVCL_B1BT Abcam A-431 BST2 KO 1 16344 -cellosaurus:CVCL_B1BU Abcam A-431 CAV1 KO 1 16345 -cellosaurus:CVCL_B1BV Abcam A-431 CBFB KO 1 16346 -cellosaurus:CVCL_B1BW Abcam A-431 CENPB KO 1 16347 -cellosaurus:CVCL_B1BX Abcam A-431 CLDN1 KO 1 16348 -cellosaurus:CVCL_B1BY Abcam A-431 CTNNB1 KO 1 16349 -cellosaurus:CVCL_B1BZ Abcam A-431 CTSD KO 1 16350 -cellosaurus:CVCL_B1C0 Abcam A-431 DDAH1 KO 1 16351 -cellosaurus:CVCL_B1C1 Abcam A-431 DHCR24 KO 1 16352 -cellosaurus:CVCL_B1C2 Abcam A-431 DPF2 KO 1 16353 -cellosaurus:CVCL_B1C3 Abcam A-431 DUSP6 KO 1 16354 -cellosaurus:CVCL_B1C4 Abcam A-431 EPCAM KO 1 16355 -cellosaurus:CVCL_B1C5 Abcam A-431 G3BP1 KO 1 16356 -cellosaurus:CVCL_B1C6 Abcam A-431 GRB2 KO 1 16357 -cellosaurus:CVCL_B1C7 Abcam A-431 H1-0 KO 1 16358 -cellosaurus:CVCL_B1C8 Abcam A-431 HLA-A KO 1 16359 -cellosaurus:CVCL_B1C9 Abcam A-431 HSP90AB1 KO 1 16360 -cellosaurus:CVCL_B1CA Abcam A-431 IL1RN KO 1 16361 -cellosaurus:CVCL_B1CB Abcam A-431 KRT13 KO 1 16362 -cellosaurus:CVCL_B1CC Abcam A-431 KRT14 KO 1 16363 -cellosaurus:CVCL_B1CD Abcam A-431 KRT15 KO 1 16364 -cellosaurus:CVCL_B1CE Abcam A-431 MMP14 KO 1 16365 -cellosaurus:CVCL_B1CF Abcam A-431 MYL9 KO 1 16366 -cellosaurus:CVCL_B1CG Abcam A-431 NBN KO 1 16367 -cellosaurus:CVCL_B1CS Abcam A-431 NDRG1 KO 1 16368 -cellosaurus:CVCL_B1CH Abcam A-431 NEK9 KO 1 16369 -cellosaurus:CVCL_B1CI Abcam A-431 NT5E KO 1 16370 -cellosaurus:CVCL_B1CJ Abcam A-431 P4HB KO 1 16371 -cellosaurus:CVCL_B1CK Abcam A-431 PERP KO 1 16372 -cellosaurus:CVCL_B1CL Abcam A-431 PPP2R5D KO 1 16373 -cellosaurus:CVCL_B1CM Abcam A-431 PXN KO 1 16374 -cellosaurus:CVCL_B1CN Abcam A-431 SOS1 KO 1 16375 -cellosaurus:CVCL_B1CP Abcam A-431 STK24 KO 1 16376 -cellosaurus:CVCL_B1CQ Abcam A-431 VAMP8 KO 1 16377 -cellosaurus:CVCL_B1CR Abcam A-431 VCL KO 1 16378 -cellosaurus:CVCL_J307 VUP-1 0 16379 -cellosaurus:CVCL_VP04 VUP-1 V+B2 1 16380 -cellosaurus:CVCL_VP05 VUP-1 V+D9H 1 16381 -cellosaurus:CVCL_VP03 VUP-1 V-C10 1 16382 -cellosaurus:CVCL_VN99 VUP-1 V-D9 1 16383 -cellosaurus:CVCL_J305 VUP15 1 16384 -cellosaurus:CVCL_J306 VUP20 1 16385 -cellosaurus:CVCL_5215 PMC42 0 16386 -cellosaurus:CVCL_5216 PMC42-LA 1 16387 -cellosaurus:CVCL_A388 HSC-44PE 0 16388 -cellosaurus:CVCL_XG62 44As3 1 16389 -cellosaurus:CVCL_2604 MM253 0 16390 -cellosaurus:CVCL_D849 MM253-12M 1 16391 -cellosaurus:CVCL_UM65 MM253-3D 1 16392 -cellosaurus:CVCL_UM66 MM253c1 1 16393 -cellosaurus:CVCL_UM69 MM253c1-1G 2 16394 -cellosaurus:CVCL_UM67 MM253c1-1T 2 16395 -cellosaurus:CVCL_UM70 MM253c1-3D 2 16396 -cellosaurus:CVCL_UM68 MM253c1-4CG 2 16397 -cellosaurus:CVCL_D751 M238 0 16398 -cellosaurus:CVCL_EI91 M238 R1 1 16399 -cellosaurus:CVCL_EI92 M238 R2 1 16400 -cellosaurus:CVCL_IM74 M238R1-PLX 1 16401 -cellosaurus:CVCL_1288 HSC-3 0 16402 -cellosaurus:CVCL_8323 HSC-3-M3 1 16403 -cellosaurus:CVCL_JF94 HSC-3/CMV-Luc 1 16404 -cellosaurus:CVCL_YA14 HSC3-hPDPN 1 16405 -cellosaurus:CVCL_W514 LMF3 1 16406 -cellosaurus:CVCL_W515 LMF4 1 16407 -cellosaurus:CVCL_W516 LMF5 1 16408 -cellosaurus:CVCL_1218 FaDu 0 16409 -cellosaurus:CVCL_0D71 2A3 [Human squamous cell carcinoma] 1 16410 -cellosaurus:CVCL_EI27 ER-Fadu 1 16411 -cellosaurus:CVCL_VP44 FaDu(DD) 1 16412 -cellosaurus:CVCL_A4CG FaDu-Luc2 1 16413 -cellosaurus:CVCL_SA75 FaDu-R 1 16414 -cellosaurus:CVCL_EG58 FaDu/T 1 16415 -cellosaurus:CVCL_5988 JHU-013 1 16416 -cellosaurus:CVCL_6831 NCI-H3255 0 16417 -cellosaurus:CVCL_DI55 NCI-H3255GR 1 16418 -cellosaurus:CVCL_DI56 NCI-H3255DR 2 16419 -cellosaurus:CVCL_U095 A904L 0 16420 -cellosaurus:CVCL_A5AM A904L-CD80 1 16421 -cellosaurus:CVCL_A5AN A904L-A26 2 16422 -cellosaurus:CVCL_A5AP A904L-B39 2 16423 -cellosaurus:CVCL_0025 Caco-2 0 16424 -cellosaurus:CVCL_B0YL Abcam Caco-2 ACE2 KO 1 16425 -cellosaurus:CVCL_C0BL Abcam Caco-2 BMP2 KO 1 16426 -cellosaurus:CVCL_C0BM Abcam Caco-2 TMPRSS2 KO 1 16427 -cellosaurus:CVCL_1096 C2BBe1 1 16428 -cellosaurus:CVCL_B5ZS C2BBe1 BCRP KO 2 16429 -cellosaurus:CVCL_B5ZT C2BBe1 MDR1 KO 2 16430 -cellosaurus:CVCL_B5ZU C2BBe1 MDR1/BCRP KO 2 16431 -cellosaurus:CVCL_B5ZY C2BBe1 MRP1 KO 2 16432 -cellosaurus:CVCL_B5ZV C2BBe1 MRP2 KO 2 16433 -cellosaurus:CVCL_B5ZW C2BBe1 MDR1/MRP2 KO 3 16434 -cellosaurus:CVCL_B5ZX C2BBe1 MRP2/BCRP KO 3 16435 -cellosaurus:CVCL_B6A2 C2BBe1 MRP3 KO 2 16436 -cellosaurus:CVCL_B6A4 C2BBe1 MRP3/MRP4 KO 2 16437 -cellosaurus:CVCL_B6A1 C2BBe1 MRP4 KO 2 16438 -cellosaurus:CVCL_B5ZZ C2BBe1 MRP5 KO 2 16439 -cellosaurus:CVCL_B6A3 C2BBe1 MRP6 KO 2 16440 -cellosaurus:CVCL_B6A0 C2BBe1 MRP7 KO 2 16441 -cellosaurus:CVCL_Z582 C2BBe2 1 16442 -cellosaurus:CVCL_YP11 Caco-2 Cu Pro-R 1 16443 -cellosaurus:CVCL_YP12 Caco-2 CuSO4-R 1 16444 -cellosaurus:CVCL_C0R8 Caco-2 DUSP6 KO 1 16445 -cellosaurus:CVCL_HA82 Caco-2-RCAr clone 2 1 16446 -cellosaurus:CVCL_B6E1 Caco-2-SF 1 16447 -cellosaurus:CVCL_0232 Caco-2/15 1 16448 -cellosaurus:CVCL_Z585 Caco-2/AQ 2 16449 -cellosaurus:CVCL_Z578 Caco-2/3 1 16450 -cellosaurus:CVCL_Z579 Caco-2/PD-10 1 16451 -cellosaurus:CVCL_Z580 Caco-2/PD-7 1 16452 -cellosaurus:CVCL_Z581 Caco-2/PF-11 1 16453 -cellosaurus:CVCL_0233 Caco-2/TC-7 1 16454 -cellosaurus:CVCL_0060 NCI-H1299 0 16455 -cellosaurus:CVCL_B7N7 H1299/TS1 1 16456 -cellosaurus:CVCL_B7N8 H1299/TS2 1 16457 -cellosaurus:CVCL_Y296 H273 1 16458 -cellosaurus:CVCL_XB25 NCI-H1299-EGFP 1 16459 -cellosaurus:CVCL_XE62 NCI-H1299-Luc2-tdT-2 1 16460 -cellosaurus:CVCL_XB24 NCI-H1299-mCherry 1 16461 -cellosaurus:CVCL_XB26 NCI-H1299-tdT 1 16462 -cellosaurus:CVCL_7762 UM-SCC-5 0 16463 -cellosaurus:CVCL_A5TN UM-SCC-5PT 1 16464 -cellosaurus:CVCL_0563 TSE 0 16465 -cellosaurus:CVCL_UI44 TSE.06 1 16466 -cellosaurus:CVCL_0332 Hs 578T 0 16467 -cellosaurus:CVCL_YL24 Hs578T-delta-hTfR1 1 16468 -cellosaurus:CVCL_IR02 Hs578T-Dox 1 16469 -cellosaurus:CVCL_J255 Hs578T-Luc 1 16470 -cellosaurus:CVCL_M363 Hs578Ts(i)8 1 16471 -cellosaurus:CVCL_RL96 HML 0 16472 -cellosaurus:CVCL_RL97 HML-2 [Human leukemia] 1 16473 -cellosaurus:CVCL_RL98 HML/SE 1 16474 -cellosaurus:CVCL_1301 HuTu 80 0 16475 -cellosaurus:CVCL_2862 AZ-521 1 16476 -cellosaurus:CVCL_9480 AZ-H3c 2 16477 -cellosaurus:CVCL_9479 AZ-H6c 2 16478 -cellosaurus:CVCL_8228 HCV-29 0 16479 -cellosaurus:CVCL_8451 Hu1734 1 16480 -cellosaurus:CVCL_1988 COLO 206F 0 16481 -cellosaurus:CVCL_4V92 COLO206F-AR 1 16482 -cellosaurus:CVCL_VG99 (L)PC6 0 16483 -cellosaurus:CVCL_XB90 0225-02Sp 0 16484 -cellosaurus:CVCL_IP58 0308 0 16485 -cellosaurus:CVCL_WU68 04T036 0 16486 -cellosaurus:CVCL_IP59 0822 0 16487 -cellosaurus:CVCL_D231 1-87 0 16488 -cellosaurus:CVCL_A1ZY 1000T 0 16489 -cellosaurus:CVCL_WM18 1007P 0 16490 -cellosaurus:CVCL_A2AA 101-87T 0 16491 -cellosaurus:CVCL_7942 1011-mel 0 16492 -cellosaurus:CVCL_4806 1013L 0 16493 -cellosaurus:CVCL_6G35 1016T 0 16494 -cellosaurus:CVCL_WM48 10249M 0 16495 -cellosaurus:CVCL_WM22 10538P 0 16496 -cellosaurus:CVCL_6G38 1072F 0 16497 -cellosaurus:CVCL_GR77 1074-mel 0 16498 -cellosaurus:CVCL_8029 1088-mel 0 16499 -cellosaurus:CVCL_A2AB 109-87T 0 16500 -cellosaurus:CVCL_R704 10C9 [Human lymphoma] 0 16501 -cellosaurus:CVCL_VJ83 10CM 0 16502 -cellosaurus:CVCL_A0XD 11 029 0 16503 -cellosaurus:CVCL_A0XE 11 030 0 16504 -cellosaurus:CVCL_A0XF 11 045 0 16505 -cellosaurus:CVCL_A0XG 11 068 0 16506 -cellosaurus:CVCL_A0XH 11 091 0 16507 -cellosaurus:CVCL_A2AC 110-87T 0 16508 -cellosaurus:CVCL_8030 1102-mel 0 16509 -cellosaurus:CVCL_GR78 1106-mel 0 16510 -cellosaurus:CVCL_S406 1123-mel 0 16511 -cellosaurus:CVCL_A2AD 114-87T 0 16512 -cellosaurus:CVCL_8031 1143-mel 0 16513 -cellosaurus:CVCL_2262 1156QE/8 0 16514 -cellosaurus:CVCL_A1DT 1173-mel 0 16515 -cellosaurus:CVCL_DI59 1174 0 16516 -cellosaurus:CVCL_GR79 1174-mel 0 16517 -cellosaurus:CVCL_GR80 1180-mel 0 16518 -cellosaurus:CVCL_8032 1182-mel 0 16519 -cellosaurus:CVCL_A2AE 119-87T 0 16520 -cellosaurus:CVCL_8033 1195-mel 0 16521 -cellosaurus:CVCL_8034 1199-mel 0 16522 -cellosaurus:CVCL_VJ84 11CM 0 16523 -cellosaurus:CVCL_A0XI 12 040 0 16524 -cellosaurus:CVCL_A0XJ 12 041 0 16525 -cellosaurus:CVCL_A0XK 12 046 0 16526 -cellosaurus:CVCL_A0XL 12 058 0 16527 -cellosaurus:CVCL_A0XM 12 059 0 16528 -cellosaurus:CVCL_A0XN 12 060 0 16529 -cellosaurus:CVCL_A0XP 12 073 0 16530 -cellosaurus:CVCL_A0XQ 12 075 0 16531 -cellosaurus:CVCL_A0XR 12 079 0 16532 -cellosaurus:CVCL_VL59 1207 0 16533 -cellosaurus:CVCL_C524 1218E 0 16534 -cellosaurus:CVCL_IP60 1228 0 16535 -cellosaurus:CVCL_JY27 12370 0 16536 -cellosaurus:CVCL_C525 1242B 0 16537 -cellosaurus:CVCL_C526 1255O 0 16538 -cellosaurus:CVCL_GR81 1259-mel 0 16539 -cellosaurus:CVCL_N588 1273/99 0 16540 -cellosaurus:CVCL_8035 1278-mel 0 16541 -cellosaurus:CVCL_A2AG 128-88T 0 16542 -cellosaurus:CVCL_8036 1280-mel 0 16543 -cellosaurus:CVCL_8037 1286-mel 0 16544 -cellosaurus:CVCL_8038 1287-mel 0 16545 -cellosaurus:CVCL_RW69 1290-2 0 16546 -cellosaurus:CVCL_7943 1290-mel 0 16547 -cellosaurus:CVCL_A0XS 13 019 0 16548 -cellosaurus:CVCL_A0XT 13 025 0 16549 -cellosaurus:CVCL_8039 1300-mel 0 16550 -cellosaurus:CVCL_A1DQ 1308-mel 0 16551 -cellosaurus:CVCL_8040 1317-mel 0 16552 -cellosaurus:CVCL_Z019 1335-mel 0 16553 -cellosaurus:CVCL_JY28 13363 0 16554 -cellosaurus:CVCL_A1DR 1338-mel 0 16555 -cellosaurus:CVCL_A1DS 1351-mel 0 16556 -cellosaurus:CVCL_Z020 1352-mel 0 16557 -cellosaurus:CVCL_8041 1359-mel 0 16558 -cellosaurus:CVCL_W281 136-2 0 16559 -cellosaurus:CVCL_S560 1362-mel 0 16560 -cellosaurus:CVCL_8042 1363-mel 0 16561 -cellosaurus:CVCL_JY29 13699 0 16562 -cellosaurus:CVCL_8043 1376-mel 0 16563 -cellosaurus:CVCL_WY90 13781 0 16564 -cellosaurus:CVCL_8044 1383-mel 0 16565 -cellosaurus:CVCL_8045 1388-mel 0 16566 -cellosaurus:CVCL_5446 138D 0 16567 -cellosaurus:CVCL_8046 1390-mel 0 16568 -cellosaurus:CVCL_JY30 13914_1 0 16569 -cellosaurus:CVCL_WM36 13923M 0 16570 -cellosaurus:CVCL_WM21 1402P 0 16571 -cellosaurus:CVCL_WM25 1402R 0 16572 -cellosaurus:CVCL_2268 1411H 0 16573 -cellosaurus:CVCL_L942 1411HRQmet 0 16574 -cellosaurus:CVCL_WM42 14362M 0 16575 -cellosaurus:CVCL_JY31 14433_1 0 16576 -cellosaurus:CVCL_WM31 14464M 0 16577 -cellosaurus:CVCL_UT96 1455 0 16578 -cellosaurus:CVCL_8047 1479-mel 0 16579 -cellosaurus:CVCL_8048 1495-mel 0 16580 -cellosaurus:CVCL_VF96 149RCa 0 16581 -cellosaurus:CVCL_VL37 149RM 0 16582 -cellosaurus:CVCL_A1VU 150057 0 16583 -cellosaurus:CVCL_1Y71 1507.2 0 16584 -cellosaurus:CVCL_8049 1520-mel 0 16585 -cellosaurus:CVCL_JY32 15233_nov 0 16586 -cellosaurus:CVCL_WM29 15392M 0 16587 -cellosaurus:CVCL_WM58 1568M 0 16588 -cellosaurus:CVCL_M136 1580WU 0 16589 -cellosaurus:CVCL_WY92 15876 0 16590 -cellosaurus:CVCL_WJ10 1590 0 16591 -cellosaurus:CVCL_D647 15PC3 0 16592 -cellosaurus:CVCL_WY93 16106 0 16593 -cellosaurus:CVCL_S505 1618-K 0 16594 -cellosaurus:CVCL_WM57 16396M 0 16595 -cellosaurus:CVCL_WY99 16471 0 16596 -cellosaurus:CVCL_A2AF 166T 0 16597 -cellosaurus:CVCL_A1EB 1685M 0 16598 -cellosaurus:CVCL_0B41 169A [Human embryonal carcinoma] 0 16599 -cellosaurus:CVCL_D704 17-94 0 16600 -cellosaurus:CVCL_LM81 170-MG-BA 0 16601 -cellosaurus:CVCL_RW70 1704 0 16602 -cellosaurus:CVCL_WY94 17066 0 16603 -cellosaurus:CVCL_WZ00 17142 0 16604 -cellosaurus:CVCL_WY95 17201 0 16605 -cellosaurus:CVCL_WZ01 17249 0 16606 -cellosaurus:CVCL_WY96 17268 0 16607 -cellosaurus:CVCL_WZ02 17330 0 16608 -cellosaurus:CVCL_WZ03 17399 0 16609 -cellosaurus:CVCL_WZ06 17457 0 16610 -cellosaurus:CVCL_WZ08 17480 0 16611 -cellosaurus:CVCL_WM37 17697M 0 16612 -cellosaurus:CVCL_A1EA 1777N Pr 0 16613 -cellosaurus:CVCL_2277 1777N Rpmet 0 16614 -cellosaurus:CVCL_U758 1783 0 16615 -cellosaurus:CVCL_AX27 1795/4A 0 16616 -cellosaurus:CVCL_WZ13 17978 0 16617 -cellosaurus:CVCL_5447 180D 0 16618 -cellosaurus:CVCL_A2AH 180T 0 16619 -cellosaurus:CVCL_WZ14 18483 0 16620 -cellosaurus:CVCL_WZ15 18507 0 16621 -cellosaurus:CVCL_DI11 1858-mel a 0 16622 -cellosaurus:CVCL_DI12 1858-mel b 0 16623 -cellosaurus:CVCL_DI13 1858-mel c 0 16624 -cellosaurus:CVCL_WM47 18588M 0 16625 -cellosaurus:CVCL_KB78 186-NWT 0 16626 -cellosaurus:CVCL_WZ16 18605 0 16627 -cellosaurus:CVCL_WM30 18656M 0 16628 -cellosaurus:CVCL_WM39 18732M 0 16629 -cellosaurus:CVCL_7930 192B 0 16630 -cellosaurus:CVCL_DI14 1936-mel 0 16631 -cellosaurus:CVCL_DI15 1962-mel 0 16632 -cellosaurus:CVCL_A1YJ 2/11 0 16633 -cellosaurus:CVCL_U759 2004 0 16634 -cellosaurus:CVCL_5448 200D 0 16635 -cellosaurus:CVCL_X481 201T 0 16636 -cellosaurus:CVCL_C520 2044L 0 16637 -cellosaurus:CVCL_WY47 2048-mel 0 16638 -cellosaurus:CVCL_C521 2061H 0 16639 -cellosaurus:CVCL_WM50 20706M 0 16640 -cellosaurus:CVCL_WM26 20842M1 0 16641 -cellosaurus:CVCL_WM46 20842M2 0 16642 -cellosaurus:CVCL_WM19 20842P 0 16643 -cellosaurus:CVCL_C523 2102ER 0 16644 -cellosaurus:CVCL_M068 2106LN 0 16645 -cellosaurus:CVCL_M069 2106T 0 16646 -cellosaurus:CVCL_WM55 21545M 0 16647 -cellosaurus:CVCL_WM54 21768M 0 16648 -cellosaurus:CVCL_0B42 218A 0 16649 -cellosaurus:CVCL_7931 21MT-1 0 16650 -cellosaurus:CVCL_7932 21MT-2 0 16651 -cellosaurus:CVCL_7933 21NT 0 16652 -cellosaurus:CVCL_7934 21PT 0 16653 -cellosaurus:CVCL_WM38 2211M 0 16654 -cellosaurus:CVCL_0B43 228A 0 16655 -cellosaurus:CVCL_1046 23132/87 0 16656 -cellosaurus:CVCL_A2AI 239T 0 16657 -cellosaurus:CVCL_M070 2427T 0 16658 -cellosaurus:CVCL_D570 243 0 16659 -cellosaurus:CVCL_5449 253D 0 16660 -cellosaurus:CVCL_WM49 26258M 0 16661 -cellosaurus:CVCL_WM44 26396M 0 16662 -cellosaurus:CVCL_WM53 26414M 0 16663 -cellosaurus:CVCL_X482 273T 0 16664 -cellosaurus:CVCL_0B44 27X1 0 16665 -cellosaurus:CVCL_6G30 292W 0 16666 -cellosaurus:CVCL_WM32 2934M 0 16667 -cellosaurus:CVCL_3482 2F7 0 16668 -cellosaurus:CVCL_QW59 2L1 0 16669 -cellosaurus:CVCL_A7NI 2XSB 0 16670 -cellosaurus:CVCL_WM43 30966M 0 16671 -cellosaurus:CVCL_WM45 33365M 0 16672 -cellosaurus:CVCL_A2AK 343T 0 16673 -cellosaurus:CVCL_W438 371M 0 16674 -cellosaurus:CVCL_1047 380 0 16675 -cellosaurus:CVCL_A2AJ 390T 0 16676 -cellosaurus:CVCL_WM52 3962M 0 16677 -cellosaurus:CVCL_WM51 3988M 0 16678 -cellosaurus:CVCL_A2AL 399T 0 16679 -cellosaurus:CVCL_Y457 3D5 [Human melanoma] 0 16680 -cellosaurus:CVCL_L498 4-1st 0 16681 -cellosaurus:CVCL_WM33 4023M 0 16682 -cellosaurus:CVCL_IV49 4143 0 16683 -cellosaurus:CVCL_1798 42-MG-BA 0 16684 -cellosaurus:CVCL_WM23 4405P 0 16685 -cellosaurus:CVCL_WM41 4473M 0 16686 -cellosaurus:CVCL_UM75 453A0 0 16687 -cellosaurus:CVCL_UM87 453B 0 16688 -cellosaurus:CVCL_WM34 4686M 0 16689 -cellosaurus:CVCL_A2CQ 471L 0 16690 -cellosaurus:CVCL_B7UY 485 colo can 0 16691 -cellosaurus:CVCL_7940 486P 0 16692 -cellosaurus:CVCL_M614 4BG 0 16693 -cellosaurus:CVCL_B7D6 4Z-B-1 0 16694 -cellosaurus:CVCL_4633 501-mel 0 16695 -cellosaurus:CVCL_UM76 513D 0 16696 -cellosaurus:CVCL_UM86 513E 0 16697 -cellosaurus:CVCL_UM89 518A1 0 16698 -cellosaurus:CVCL_UM77 518A2 0 16699 -cellosaurus:CVCL_UM90 518B 0 16700 -cellosaurus:CVCL_8051 526-mel 0 16701 -cellosaurus:CVCL_UM85 528 [Human melanoma] 0 16702 -cellosaurus:CVCL_W282 530 0 16703 -cellosaurus:CVCL_B7UZ 533 OOS 0 16704 -cellosaurus:CVCL_8052 537-mel 0 16705 -cellosaurus:CVCL_LM82 538-MG-BA 0 16706 -cellosaurus:CVCL_A2AM 54T 0 16707 -cellosaurus:CVCL_8053 553-mel 0 16708 -cellosaurus:CVCL_W285 553B-mel 0 16709 -cellosaurus:CVCL_7941 575A 0 16710 -cellosaurus:CVCL_2290 577MF 0 16711 -cellosaurus:CVCL_C509 577ML 0 16712 -cellosaurus:CVCL_C510 577MR 0 16713 -cellosaurus:CVCL_WM20 5810P 0 16714 -cellosaurus:CVCL_Z021 586-mel 0 16715 -cellosaurus:CVCL_VK11 587X 0 16716 -cellosaurus:CVCL_B384 598RCC 0 16717 -cellosaurus:CVCL_6G42 6005 0 16718 -cellosaurus:CVCL_9875 600MPE 0 16719 -cellosaurus:CVCL_UM78 603 0 16720 -cellosaurus:CVCL_UM79 607B 0 16721 -cellosaurus:CVCL_4065 60905OM 0 16722 -cellosaurus:CVCL_UM80 610 0 16723 -cellosaurus:CVCL_LK65 6278 0 16724 -cellosaurus:CVCL_UM81 634 0 16725 -cellosaurus:CVCL_1048 639V 0 16726 -cellosaurus:CVCL_H722 6647 0 16727 -cellosaurus:CVCL_8055 677-mel 0 16728 -cellosaurus:CVCL_WG96 682B 0 16729 -cellosaurus:CVCL_WM56 6854M 0 16730 -cellosaurus:CVCL_0079 697 0 16731 -cellosaurus:CVCL_8056 697-mel 0 16732 -cellosaurus:CVCL_A2AN 7-90T 0 16733 -cellosaurus:CVCL_B7V0 716 SS MNV 0 16734 -cellosaurus:CVCL_S561 729-mel 0 16735 -cellosaurus:CVCL_S562 731-mel 0 16736 -cellosaurus:CVCL_7944 743E 0 16737 -cellosaurus:CVCL_7945 751G 0 16738 -cellosaurus:CVCL_Z022 76-2 0 16739 -cellosaurus:CVCL_1050 769-P 0 16740 -cellosaurus:CVCL_A2AP 76T 0 16741 -cellosaurus:CVCL_A5MS 77-1 0 16742 -cellosaurus:CVCL_RA79 77-3 0 16743 -cellosaurus:CVCL_Z023 77-4 0 16744 -cellosaurus:CVCL_A2AQ 784T 0 16745 -cellosaurus:CVCL_RA80 79-1 0 16746 -cellosaurus:CVCL_A2SU 793 OsSar RVV 0 16747 -cellosaurus:CVCL_EJ06 794CSF 0 16748 -cellosaurus:CVCL_S563 798-mel 0 16749 -cellosaurus:CVCL_1052 8-MG-BA 0 16750 -cellosaurus:CVCL_TZ87 803YT 0 16751 -cellosaurus:CVCL_A2AR 81-86T 0 16752 -cellosaurus:CVCL_A7NJ 82.3 0 16753 -cellosaurus:CVCL_1053 8305C 0 16754 -cellosaurus:CVCL_8057 836-mel 0 16755 -cellosaurus:CVCL_A2AS 84T 0 16756 -cellosaurus:CVCL_1054 8505C 0 16757 -cellosaurus:CVCL_WY91 8540 0 16758 -cellosaurus:CVCL_JY33 8587 0 16759 -cellosaurus:CVCL_B7R4 85HG-3 0 16760 -cellosaurus:CVCL_B7R5 85HG-59 0 16761 -cellosaurus:CVCL_B7R6 85HG-63 0 16762 -cellosaurus:CVCL_B7R7 85HG-64 0 16763 -cellosaurus:CVCL_B7R8 85HG-65 0 16764 -cellosaurus:CVCL_UJ62 86-11 0 16765 -cellosaurus:CVCL_UJ63 86-14 0 16766 -cellosaurus:CVCL_6757 86-2 0 16767 -cellosaurus:CVCL_UJ57 86-4 0 16768 -cellosaurus:CVCL_UJ58 86-5 0 16769 -cellosaurus:CVCL_UJ59 86-6 0 16770 -cellosaurus:CVCL_UJ60 86-7 0 16771 -cellosaurus:CVCL_UJ61 86-8 0 16772 -cellosaurus:CVCL_S564 865-mel 0 16773 -cellosaurus:CVCL_8090 866MT 0 16774 -cellosaurus:CVCL_WY98 8684 0 16775 -cellosaurus:CVCL_UJ53 87-1 0 16776 -cellosaurus:CVCL_RA81 87-13 0 16777 -cellosaurus:CVCL_UJ54 87-2 0 16778 -cellosaurus:CVCL_UJ55 87-3 0 16779 -cellosaurus:CVCL_UJ56 87-4 0 16780 -cellosaurus:CVCL_6750 87-5 0 16781 -cellosaurus:CVCL_UJ52 87-6 0 16782 -cellosaurus:CVCL_H610 8701-BC 0 16783 -cellosaurus:CVCL_WZ04 8713 0 16784 -cellosaurus:CVCL_WZ05 8714 0 16785 -cellosaurus:CVCL_WZ09 8715 0 16786 -cellosaurus:CVCL_WZ10 8716 0 16787 -cellosaurus:CVCL_WZ11 8724 0 16788 -cellosaurus:CVCL_WZ12 8732 0 16789 -cellosaurus:CVCL_WM40 879M 0 16790 -cellosaurus:CVCL_V026 87HG28 0 16791 -cellosaurus:CVCL_V027 87HG31 0 16792 -cellosaurus:CVCL_RA75 88-2 0 16793 -cellosaurus:CVCL_RA76 88-2F 0 16794 -cellosaurus:CVCL_RA77 88-2FA 0 16795 -cellosaurus:CVCL_RA78 88-2T 0 16796 -cellosaurus:CVCL_RA82 88-3 0 16797 -cellosaurus:CVCL_UM82 8823 0 16798 -cellosaurus:CVCL_S565 883-mel 0 16799 -cellosaurus:CVCL_S566 894-mel 0 16800 -cellosaurus:CVCL_WM35 8959M 0 16801 -cellosaurus:CVCL_1B47 90-8 0 16802 -cellosaurus:CVCL_UM83 9007 0 16803 -cellosaurus:CVCL_A2AT 91T 0 16804 -cellosaurus:CVCL_W909 92-1 [Human bladder carcinoma] 0 16805 -cellosaurus:CVCL_8607 92-1 [Human uveal melanoma] 0 16806 -cellosaurus:CVCL_C300 92-2 0 16807 -cellosaurus:CVCL_UM84 9304 0 16808 -cellosaurus:CVCL_A2AU 936T 0 16809 -cellosaurus:CVCL_8058 938-mel 0 16810 -cellosaurus:CVCL_U614 93T449 0 16811 -cellosaurus:CVCL_8608 94-10 0 16812 -cellosaurus:CVCL_WM28 9460M 0 16813 -cellosaurus:CVCL_A2AV 94T 0 16814 -cellosaurus:CVCL_U613 94T778 0 16815 -cellosaurus:CVCL_A1UH 950-5-BIK 0 16816 -cellosaurus:CVCL_S567 952-mel 0 16817 -cellosaurus:CVCL_WU67 95T1000 0 16818 -cellosaurus:CVCL_8609 96-1 0 16819 -cellosaurus:CVCL_8610 96-11 0 16820 -cellosaurus:CVCL_8611 96-12 0 16821 -cellosaurus:CVCL_8612 96-13 0 16822 -cellosaurus:CVCL_8613 96-16 0 16823 -cellosaurus:CVCL_8614 96-2 0 16824 -cellosaurus:CVCL_8615 96-9 0 16825 -cellosaurus:CVCL_8616 97-1 0 16826 -cellosaurus:CVCL_8617 97-10 0 16827 -cellosaurus:CVCL_8618 97-15 0 16828 -cellosaurus:CVCL_8619 97-18-I 0 16829 -cellosaurus:CVCL_8620 97-21-M 0 16830 -cellosaurus:CVCL_8621 97-24 0 16831 -cellosaurus:CVCL_8622 97-29 0 16832 -cellosaurus:CVCL_8623 97-5 0 16833 -cellosaurus:CVCL_8624 97-6 0 16834 -cellosaurus:CVCL_8625 97-7 0 16835 -cellosaurus:CVCL_A2AW 98T 0 16836 -cellosaurus:CVCL_WM27 9923M 0 16837 -cellosaurus:CVCL_WM24 9923P 0 16838 -cellosaurus:CVCL_ZZ70 A-1095 0 16839 -cellosaurus:CVCL_D135 A-1165 0 16840 -cellosaurus:CVCL_8481 A-1207 0 16841 -cellosaurus:CVCL_7002 A-1235 0 16842 -cellosaurus:CVCL_ZZ48 A-1306 0 16843 -cellosaurus:CVCL_ZZ49 A-1336 0 16844 -cellosaurus:CVCL_ZZ50 A-1383 0 16845 -cellosaurus:CVCL_ZZ51 A-1498 0 16846 -cellosaurus:CVCL_D136 A-1589 0 16847 -cellosaurus:CVCL_V398 A-1604 0 16848 -cellosaurus:CVCL_ZZ52 A-1617 0 16849 -cellosaurus:CVCL_ZZ53 A-1632 0 16850 -cellosaurus:CVCL_D137 A-1663 0 16851 -cellosaurus:CVCL_ZZ54 A-1673 0 16852 -cellosaurus:CVCL_UW32 A-1684 0 16853 -cellosaurus:CVCL_ZZ55 A-1690 0 16854 -cellosaurus:CVCL_V399 A-1698 0 16855 -cellosaurus:CVCL_UW33 A-1723 0 16856 -cellosaurus:CVCL_ZZ57 A-2095 0 16857 -cellosaurus:CVCL_8091 A-2182 0 16858 -cellosaurus:CVCL_V400 A-2233 0 16859 -cellosaurus:CVCL_ZZ69 A-2394 0 16860 -cellosaurus:CVCL_ZZ58 A-2984 0 16861 -cellosaurus:CVCL_ZZ59 A-3008 0 16862 -cellosaurus:CVCL_ZZ56 A-3243 0 16863 -cellosaurus:CVCL_S186 A-382 0 16864 -cellosaurus:CVCL_1055 A-427 0 16865 -cellosaurus:CVCL_1065 A-704 0 16866 -cellosaurus:CVCL_4733 A-875 0 16867 -cellosaurus:CVCL_W335 A-PTC 0 16868 -cellosaurus:CVCL_W875 A02-JLO 0 16869 -cellosaurus:CVCL_S856 A04-GEH 0 16870 -cellosaurus:CVCL_W876 A05 0 16871 -cellosaurus:CVCL_S857 A06-MLC 0 16872 -cellosaurus:CVCL_W879 A07-RM 0 16873 -cellosaurus:CVCL_6G43 A1 [Human leukemia] 0 16874 -cellosaurus:CVCL_A8KH A1 [Human ovarian carcinoma] 0 16875 -cellosaurus:CVCL_E301 A10.7 0 16876 -cellosaurus:CVCL_1057 A101D 0 16877 -cellosaurus:CVCL_W877 A11 [Human melanoma] 0 16878 -cellosaurus:CVCL_DH60 A12 0 16879 -cellosaurus:CVCL_A8KL A121(A) 0 16880 -cellosaurus:CVCL_G294 A121(P) 0 16881 -cellosaurus:CVCL_U094 A129L 0 16882 -cellosaurus:CVCL_DH61 A13 0 16883 -cellosaurus:CVCL_6309 A14 0 16884 -cellosaurus:CVCL_W878 A15 [Human melanoma] 0 16885 -cellosaurus:CVCL_A8KI A175 0 16886 -cellosaurus:CVCL_E303 A2.1 0 16887 -cellosaurus:CVCL_Y038 A2095 0 16888 -cellosaurus:CVCL_D277 A224 0 16889 -cellosaurus:CVCL_F682 A2243 0 16890 -cellosaurus:CVCL_U376 A2774 0 16891 -cellosaurus:CVCL_1062 A3/Kawakami 0 16892 -cellosaurus:CVCL_E275 A32-1 0 16893 -cellosaurus:CVCL_6561 A364 0 16894 -cellosaurus:CVCL_E276 A38-5 0 16895 -cellosaurus:CVCL_1064 A4/Fukuda 0 16896 -cellosaurus:CVCL_6245 A4573 0 16897 -cellosaurus:CVCL_6562 A547 0 16898 -cellosaurus:CVCL_6A73 A590 0 16899 -cellosaurus:CVCL_E281 A61-5 0 16900 -cellosaurus:CVCL_5968 A64-CLS 0 16901 -cellosaurus:CVCL_A8KJ A69 0 16902 -cellosaurus:CVCL_E302 A6L 0 16903 -cellosaurus:CVCL_D595 A716 0 16904 -cellosaurus:CVCL_A8KK A90 0 16905 -cellosaurus:CVCL_N715 A924 0 16906 -cellosaurus:CVCL_W143 A9423 0 16907 -cellosaurus:CVCL_N716 A964 0 16908 -cellosaurus:CVCL_D699 A99 0 16909 -cellosaurus:CVCL_YZ42 AA-103A 0 16910 -cellosaurus:CVCL_N701 Abana 0 16911 -cellosaurus:CVCL_Y477 ABC-11 0 16912 -cellosaurus:CVCL_A1EF ABC-14 0 16913 -cellosaurus:CVCL_A1EG ABC-17 0 16914 -cellosaurus:CVCL_UW51 ABC-3 0 16915 -cellosaurus:CVCL_A6ZT ABC-31 0 16916 -cellosaurus:CVCL_UW52 ABC-5 0 16917 -cellosaurus:CVCL_D321 ABL-2 0 16918 -cellosaurus:CVCL_E133 ABS-9 0 16919 -cellosaurus:CVCL_RW21 AC-258 0 16920 -cellosaurus:CVCL_M488 ACB-1085 0 16921 -cellosaurus:CVCL_M487 ACB-885 0 16922 -cellosaurus:CVCL_A5YM ACB-985 0 16923 -cellosaurus:CVCL_7003 ACC-LC-170 0 16924 -cellosaurus:CVCL_7004 ACC-LC-171 0 16925 -cellosaurus:CVCL_7006 ACC-LC-173 0 16926 -cellosaurus:CVCL_7007 ACC-LC-174 0 16927 -cellosaurus:CVCL_Z026 ACC-LC-175 0 16928 -cellosaurus:CVCL_7008 ACC-LC-176 0 16929 -cellosaurus:CVCL_7009 ACC-LC-177 0 16930 -cellosaurus:CVCL_7010 ACC-LC-178 0 16931 -cellosaurus:CVCL_JY53 ACC-LC-180 0 16932 -cellosaurus:CVCL_7011 ACC-LC-314 0 16933 -cellosaurus:CVCL_7013 ACC-LC-321 0 16934 -cellosaurus:CVCL_7014 ACC-LC-323 0 16935 -cellosaurus:CVCL_7015 ACC-LC-33 0 16936 -cellosaurus:CVCL_7017 ACC-LC-36 0 16937 -cellosaurus:CVCL_7018 ACC-LC-48 0 16938 -cellosaurus:CVCL_7020 ACC-LC-5 0 16939 -cellosaurus:CVCL_Y208 ACC-LC-51 0 16940 -cellosaurus:CVCL_7021 ACC-LC-52 0 16941 -cellosaurus:CVCL_7022 ACC-LC-60 0 16942 -cellosaurus:CVCL_7023 ACC-LC-61 0 16943 -cellosaurus:CVCL_Z028 ACC-LC-66 0 16944 -cellosaurus:CVCL_7024 ACC-LC-67 0 16945 -cellosaurus:CVCL_7025 ACC-LC-71 0 16946 -cellosaurus:CVCL_7026 ACC-LC-73 0 16947 -cellosaurus:CVCL_7027 ACC-LC-76 0 16948 -cellosaurus:CVCL_Z027 ACC-LC-78 0 16949 -cellosaurus:CVCL_7028 ACC-LC-80 0 16950 -cellosaurus:CVCL_7029 ACC-LC-87 0 16951 -cellosaurus:CVCL_7030 ACC-LC-91 0 16952 -cellosaurus:CVCL_7031 ACC-LC-93 0 16953 -cellosaurus:CVCL_7032 ACC-LC-94 0 16954 -cellosaurus:CVCL_7033 ACC-LC-96 0 16955 -cellosaurus:CVCL_Z025 ACC-LC-97 0 16956 -cellosaurus:CVCL_5113 ACC-MESO-1 0 16957 -cellosaurus:CVCL_5114 ACC-MESO-4 0 16958 -cellosaurus:CVCL_DG87 ACC-OV43 0 16959 -cellosaurus:CVCL_DG88 ACC-OV551 0 16960 -cellosaurus:CVCL_DG89 ACC-OV552 0 16961 -cellosaurus:CVCL_DG90 ACC-OV60 0 16962 -cellosaurus:CVCL_DG91 ACC-OV614 0 16963 -cellosaurus:CVCL_DG92 ACC-OV616 0 16964 -cellosaurus:CVCL_DG93 ACC-OV62 0 16965 -cellosaurus:CVCL_DG94 ACC-OV682 0 16966 -cellosaurus:CVCL_DG95 ACC-OV684 0 16967 -cellosaurus:CVCL_DG96 ACC-OV68A 0 16968 -cellosaurus:CVCL_DG86 ACC-OV7 0 16969 -cellosaurus:CVCL_DG97 ACC-OV77 0 16970 -cellosaurus:CVCL_DG98 ACC-OV79 0 16971 -cellosaurus:CVCL_DG99 ACC-OV84 0 16972 -cellosaurus:CVCL_D074 ACC212102 0 16973 -cellosaurus:CVCL_UD36 ACCAY 0 16974 -cellosaurus:CVCL_6877 ACCY 0 16975 -cellosaurus:CVCL_IU11 ACI-1 0 16976 -cellosaurus:CVCL_N827 ACI-126 0 16977 -cellosaurus:CVCL_D716 ACI-158 0 16978 -cellosaurus:CVCL_IU12 ACI-17 0 16979 -cellosaurus:CVCL_N828 ACI-181 0 16980 -cellosaurus:CVCL_N830 ACI-23 0 16981 -cellosaurus:CVCL_N831 ACI-27 0 16982 -cellosaurus:CVCL_IU13 ACI-35 0 16983 -cellosaurus:CVCL_N833 ACI-45 0 16984 -cellosaurus:CVCL_N834 ACI-52 0 16985 -cellosaurus:CVCL_N832 ACI-54 0 16986 -cellosaurus:CVCL_N835 ACI-61 0 16987 -cellosaurus:CVCL_N836 ACI-68 0 16988 -cellosaurus:CVCL_N837 ACI-70 0 16989 -cellosaurus:CVCL_N829 ACI-8 0 16990 -cellosaurus:CVCL_N838 ACI-80 0 16991 -cellosaurus:CVCL_D717 ACI-89 0 16992 -cellosaurus:CVCL_N839 ACI-98 0 16993 -cellosaurus:CVCL_VV84 ACOSC16 0 16994 -cellosaurus:CVCL_VV85 ACOSC3 0 16995 -cellosaurus:CVCL_VV86 ACOSC4 0 16996 -cellosaurus:CVCL_9490 ACP01 0 16997 -cellosaurus:CVCL_IK51 ACP02 0 16998 -cellosaurus:CVCL_IK52 ACP03 0 16999 -cellosaurus:CVCL_B6XF ACRJ-PC28 0 17000 -cellosaurus:CVCL_6290 ACT-1 [Human adrenocortical carcinoma] 0 17001 -cellosaurus:CVCL_6291 ACT-1 [Human thyroid carcinoma] 0 17002 -cellosaurus:CVCL_M606 AD [Human chondrosarcoma] 0 17003 -cellosaurus:CVCL_0C05 AD-A 0 17004 -cellosaurus:CVCL_M504 AD3 0 17005 -cellosaurus:CVCL_4689 ADF 0 17006 -cellosaurus:CVCL_5K96 Adult/T315I 0 17007 -cellosaurus:CVCL_L849 AE1 0 17008 -cellosaurus:CVCL_L850 AE2 0 17009 -cellosaurus:CVCL_L851 AE3 [Human SCLC] 0 17010 -cellosaurus:CVCL_U801 AF-6 0 17011 -cellosaurus:CVCL_A422 AG876 0 17012 -cellosaurus:CVCL_1Q43 Agnes 0 17013 -cellosaurus:CVCL_X981 AGPN 0 17014 -cellosaurus:CVCL_D263 AH125 0 17015 -cellosaurus:CVCL_LK89 AHE-1 0 17016 -cellosaurus:CVCL_XH23 AHOL1 0 17017 -cellosaurus:CVCL_ZI22 AK-Caren 0 17018 -cellosaurus:CVCL_W745 AK778 0 17019 -cellosaurus:CVCL_ZV95 AKU-MY01 0 17020 -cellosaurus:CVCL_W933 Akuba 0 17021 -cellosaurus:CVCL_X931 AL1 0 17022 -cellosaurus:CVCL_J358 ALA 0 17023 -cellosaurus:CVCL_U957 AlAb 0 17024 -cellosaurus:CVCL_LC71 AlDo 0 17025 -cellosaurus:CVCL_M035 ALF [Human gastric carcinoma] 0 17026 -cellosaurus:CVCL_7172 Ali-BL 0 17027 -cellosaurus:CVCL_QW61 ALL-1 0 17028 -cellosaurus:CVCL_QW63 ALL-3 0 17029 -cellosaurus:CVCL_0B39 ALL-7031-B 0 17030 -cellosaurus:CVCL_1069 ALL-PO 0 17031 -cellosaurus:CVCL_1805 ALL-SIL 0 17032 -cellosaurus:CVCL_W883 ALL/MIK 0 17033 -cellosaurus:CVCL_M525 ALMC-1 0 17034 -cellosaurus:CVCL_M526 ALMC-2 0 17035 -cellosaurus:CVCL_VP89 Alo 39 0 17036 -cellosaurus:CVCL_VP90 Alo 40 0 17037 -cellosaurus:CVCL_W778 ALST 0 17038 -cellosaurus:CVCL_B328 ALT-F 0 17039 -cellosaurus:CVCL_B329 ALT-G 0 17040 -cellosaurus:CVCL_B330 ALT-I 0 17041 -cellosaurus:CVCL_Y656 ALVA-38 0 17042 -cellosaurus:CVCL_1070 AM-38 0 17043 -cellosaurus:CVCL_IP72 AM-HLH 0 17044 -cellosaurus:CVCL_9477 AMC-106 0 17045 -cellosaurus:CVCL_5959 AMC-HN-1 0 17046 -cellosaurus:CVCL_5960 AMC-HN-2 0 17047 -cellosaurus:CVCL_5961 AMC-HN-3 0 17048 -cellosaurus:CVCL_5962 AMC-HN-4 0 17049 -cellosaurus:CVCL_5963 AMC-HN-5 0 17050 -cellosaurus:CVCL_5964 AMC-HN-6 0 17051 -cellosaurus:CVCL_5965 AMC-HN-7 0 17052 -cellosaurus:CVCL_5966 AMC-HN-8 0 17053 -cellosaurus:CVCL_5967 AMC-HN-9 0 17054 -cellosaurus:CVCL_JX52 AMCPAC01 0 17055 -cellosaurus:CVCL_JX53 AMCPAC02 0 17056 -cellosaurus:CVCL_JX54 AMCPAC03 0 17057 -cellosaurus:CVCL_JX55 AMCPAC04 0 17058 -cellosaurus:CVCL_JX56 AMCPAC05 0 17059 -cellosaurus:CVCL_JX57 AMCPAC06 0 17060 -cellosaurus:CVCL_JM02 AME-1 [Gastric carcinoma] 0 17061 -cellosaurus:CVCL_4U92 AMJ13 0 17062 -cellosaurus:CVCL_LK51 AML-004 0 17063 -cellosaurus:CVCL_S481 AML-1 0 17064 -cellosaurus:CVCL_UI48 AML10 0 17065 -cellosaurus:CVCL_1806 AMO1 0 17066 -cellosaurus:CVCL_0E45 AMOS-III 0 17067 -cellosaurus:CVCL_H629 AMS3 0 17068 -cellosaurus:CVCL_B386 Amsalem 0 17069 -cellosaurus:CVCL_M584 AMU-AML1 0 17070 -cellosaurus:CVCL_M583 AMU-ML1 0 17071 -cellosaurus:CVCL_0028 AN3-CA 0 17072 -cellosaurus:CVCL_AY52 AN4;11 0 17073 -cellosaurus:CVCL_VP94 ANAD 63 0 17074 -cellosaurus:CVCL_M523 ANBM-6 0 17075 -cellosaurus:CVCL_U287 Anglne 0 17076 -cellosaurus:CVCL_2297 ANGM-CSS 0 17077 -cellosaurus:CVCL_ZV39 ANGM5 0 17078 -cellosaurus:CVCL_7173 Angu-BL 0 17079 -cellosaurus:CVCL_ZU72 Annah 0 17080 -cellosaurus:CVCL_HF85 AP-1 0 17081 -cellosaurus:CVCL_1807 AP-1060 0 17082 -cellosaurus:CVCL_A052 AP-217 0 17083 -cellosaurus:CVCL_LI52 AP3 0 17084 -cellosaurus:CVCL_LI53 AP8 0 17085 -cellosaurus:CVCL_M613 AQ 0 17086 -cellosaurus:CVCL_A053 ARA-10 0 17087 -cellosaurus:CVCL_4830 ARCaP 0 17088 -cellosaurus:CVCL_W396 ARH-DR 0 17089 -cellosaurus:CVCL_A760 ARK 0 17090 -cellosaurus:CVCL_IW83 ARM-C 0 17091 -cellosaurus:CVCL_IW84 ARM-E 0 17092 -cellosaurus:CVCL_IW85 ARM-G 0 17093 -cellosaurus:CVCL_IW86 ARM-H 0 17094 -cellosaurus:CVCL_IW87 ARM-X 0 17095 -cellosaurus:CVCL_UF74 ARMS1 0 17096 -cellosaurus:CVCL_D523 ARP-1 0 17097 -cellosaurus:CVCL_WV44 ARR 0 17098 -cellosaurus:CVCL_S099 AS [Human neuroblastoma] 0 17099 -cellosaurus:CVCL_B3QE AS [Human rhabdoid tumor] 0 17100 -cellosaurus:CVCL_6769 AS-E2 0 17101 -cellosaurus:CVCL_A761 AS283A 0 17102 -cellosaurus:CVCL_UW34 ASA 0 17103 -cellosaurus:CVCL_GP71 ASAN-PaCa 0 17104 -cellosaurus:CVCL_D299 Asano 0 17105 -cellosaurus:CVCL_2856 ASH-3 0 17106 -cellosaurus:CVCL_6C43 Aska-SS 0 17107 -cellosaurus:CVCL_S738 ASPS-1 0 17108 -cellosaurus:CVCL_S737 ASPS-KY 0 17109 -cellosaurus:CVCL_W949 Asra-EPS 0 17110 -cellosaurus:CVCL_S100 AST [Human neuroblastoma] 0 17111 -cellosaurus:CVCL_LK72 Ast-1 0 17112 -cellosaurus:CVCL_0G16 AST-1 0 17113 -cellosaurus:CVCL_A3BB Ast718 0 17114 -cellosaurus:CVCL_A3BA Ast812 0 17115 -cellosaurus:CVCL_W198 AT-MS-1 0 17116 -cellosaurus:CVCL_A415 ATL-10Y 0 17117 -cellosaurus:CVCL_A406 ATL-1K 0 17118 -cellosaurus:CVCL_A407 ATL-2M 0 17119 -cellosaurus:CVCL_A408 ATL-3I 0 17120 -cellosaurus:CVCL_A6SL ATL-42T 0 17121 -cellosaurus:CVCL_8340 ATL-43T 0 17122 -cellosaurus:CVCL_A409 ATL-4K 0 17123 -cellosaurus:CVCL_A410 ATL-5S 0 17124 -cellosaurus:CVCL_X530 ATL-5T 0 17125 -cellosaurus:CVCL_A411 ATL-6A 0 17126 -cellosaurus:CVCL_A412 ATL-7S 0 17127 -cellosaurus:CVCL_A413 ATL-8K 0 17128 -cellosaurus:CVCL_A414 ATL-9Y 0 17129 -cellosaurus:CVCL_1073 ATN-1 0 17130 -cellosaurus:CVCL_M154 Atrt95 0 17131 -cellosaurus:CVCL_UD50 ATW 0 17132 -cellosaurus:CVCL_1074 AU565 0 17133 -cellosaurus:CVCL_7174 Ava-BL 0 17134 -cellosaurus:CVCL_W927 AVC1 0 17135 -cellosaurus:CVCL_VU91 AVL3-MEL 0 17136 -cellosaurus:CVCL_EI30 AVO 0 17137 -cellosaurus:CVCL_D651 AW 10498 0 17138 -cellosaurus:CVCL_D652 AW 13516 0 17139 -cellosaurus:CVCL_D653 AW 8507 0 17140 -cellosaurus:CVCL_D654 AW 9803 0 17141 -cellosaurus:CVCL_ER22 AWCA 0 17142 -cellosaurus:CVCL_ZU71 Awia-BL 0 17143 -cellosaurus:CVCL_D300 AZ303 0 17144 -cellosaurus:CVCL_D302 AZ364 0 17145 -cellosaurus:CVCL_D301 AZ382 0 17146 -cellosaurus:CVCL_D303 AZ390 0 17147 -cellosaurus:CVCL_D304 AZ402 0 17148 -cellosaurus:CVCL_D305 AZ403 0 17149 -cellosaurus:CVCL_D306 AZ418 0 17150 -cellosaurus:CVCL_D307 AZ419 0 17151 -cellosaurus:CVCL_J313 B-HM8 0 17152 -cellosaurus:CVCL_A1AS B1 [Human hepatocellular carcinoma] 0 17153 -cellosaurus:CVCL_QW66 B1 [Human leukemia] 0 17154 -cellosaurus:CVCL_3357 B1647 0 17155 -cellosaurus:CVCL_D319 B35M 0 17156 -cellosaurus:CVCL_D320 B46M 0 17157 -cellosaurus:CVCL_TZ86 B514L 0 17158 -cellosaurus:CVCL_U803 BA 0 17159 -cellosaurus:CVCL_QX98 BAL-KHc 0 17160 -cellosaurus:CVCL_C884 BAL-KHs 0 17161 -cellosaurus:CVCL_B388 BALL-2 0 17162 -cellosaurus:CVCL_5687 BALM-1 0 17163 -cellosaurus:CVCL_5688 BALM-10 0 17164 -cellosaurus:CVCL_5689 BALM-11 0 17165 -cellosaurus:CVCL_5690 BALM-12 0 17166 -cellosaurus:CVCL_5691 BALM-13 0 17167 -cellosaurus:CVCL_5692 BALM-14 0 17168 -cellosaurus:CVCL_5693 BALM-16 0 17169 -cellosaurus:CVCL_5694 BALM-18 0 17170 -cellosaurus:CVCL_5695 BALM-19 0 17171 -cellosaurus:CVCL_5696 BALM-2 0 17172 -cellosaurus:CVCL_5697 BALM-20 0 17173 -cellosaurus:CVCL_5698 BALM-21 0 17174 -cellosaurus:CVCL_5699 BALM-22 0 17175 -cellosaurus:CVCL_5700 BALM-23 0 17176 -cellosaurus:CVCL_B3M5 BALM-24 0 17177 -cellosaurus:CVCL_5701 BALM-25 0 17178 -cellosaurus:CVCL_5702 BALM-26 0 17179 -cellosaurus:CVCL_5703 BALM-27 0 17180 -cellosaurus:CVCL_5426 BALM-3 0 17181 -cellosaurus:CVCL_5427 BALM-4 0 17182 -cellosaurus:CVCL_5205 BALM-5 0 17183 -cellosaurus:CVCL_5704 BALM-6 0 17184 -cellosaurus:CVCL_5705 BALM-7 0 17185 -cellosaurus:CVCL_5706 BALM-8 0 17186 -cellosaurus:CVCL_M658 Bay91 0 17187 -cellosaurus:CVCL_A1GW BB [Human ovarian carcinoma] 0 17188 -cellosaurus:CVCL_M777 BB132-MEL 0 17189 -cellosaurus:CVCL_1076 BB30-HNC 0 17190 -cellosaurus:CVCL_1077 BB49-HNC 0 17191 -cellosaurus:CVCL_E907 BB64-RCC 0 17192 -cellosaurus:CVCL_1078 BB65-RCC 0 17193 -cellosaurus:CVCL_VU92 BB90-MEL 0 17194 -cellosaurus:CVCL_8606 BBG1 0 17195 -cellosaurus:CVCL_M380 BC 1217 0 17196 -cellosaurus:CVCL_U286 BC-009 0 17197 -cellosaurus:CVCL_U250 BC-019 0 17198 -cellosaurus:CVCL_U251 BC-020 0 17199 -cellosaurus:CVCL_U252 BC-021 0 17200 -cellosaurus:CVCL_U253 BC-022 0 17201 -cellosaurus:CVCL_U254 BC-023 0 17202 -cellosaurus:CVCL_U255 BC-024 0 17203 -cellosaurus:CVCL_U256 BC-025 0 17204 -cellosaurus:CVCL_U257 BC-027 0 17205 -cellosaurus:CVCL_U258 BC-028 0 17206 -cellosaurus:CVCL_YP93 BC-034 0 17207 -cellosaurus:CVCL_1079 BC-1 0 17208 -cellosaurus:CVCL_1856 BC-2 0 17209 -cellosaurus:CVCL_1080 BC-3 0 17210 -cellosaurus:CVCL_1958 BC-3C 0 17211 -cellosaurus:CVCL_B040 BC-5 0 17212 -cellosaurus:CVCL_AS91 BC-M1 [Human breast carcinoma Germany] 0 17213 -cellosaurus:CVCL_AS89 BC-M1 [Human breast carcinoma Taiwan] 0 17214 -cellosaurus:CVCL_B7IM BC-PAK1 0 17215 -cellosaurus:CVCL_M898 BC16.1 0 17216 -cellosaurus:CVCL_D724 BC44 0 17217 -cellosaurus:CVCL_D725 BC61 0 17218 -cellosaurus:CVCL_M364 BCa-11 0 17219 -cellosaurus:CVCL_M365 BCa-15 0 17220 -cellosaurus:CVCL_D655 BcaCD885 0 17221 -cellosaurus:CVCL_0165 BCBL-1 0 17222 -cellosaurus:CVCL_A5ZN BCBL-2 0 17223 -cellosaurus:CVCL_DQ00 BCC/P 0 17224 -cellosaurus:CVCL_B7KB BCH-N-AD 0 17225 -cellosaurus:CVCL_B7KC BCH-N-DR 0 17226 -cellosaurus:CVCL_B7KD BCH-N-DW 0 17227 -cellosaurus:CVCL_B7KE BCH-N-JW 0 17228 -cellosaurus:CVCL_B7KF BCH-N-KB 0 17229 -cellosaurus:CVCL_B7KG BCH-N-KE 0 17230 -cellosaurus:CVCL_B7KH BCH-N-LR 0 17231 -cellosaurus:CVCL_B7KI BCH-N-MS 0 17232 -cellosaurus:CVCL_B7KJ BCH-N-NS 0 17233 -cellosaurus:CVCL_B7KK BCH-N-SL 0 17234 -cellosaurus:CVCL_B7LF BCH-P-SS 0 17235 -cellosaurus:CVCL_B7KL BCH-RB31 0 17236 -cellosaurus:CVCL_B7KM BCH-RB32 0 17237 -cellosaurus:CVCL_B7KN BCH-RB33 0 17238 -cellosaurus:CVCL_B7KP BCH-RB34 0 17239 -cellosaurus:CVCL_B7KQ BCH-RB35 0 17240 -cellosaurus:CVCL_B7KR BCH-RB36 0 17241 -cellosaurus:CVCL_B7KS BCH-RB37 0 17242 -cellosaurus:CVCL_B7KT BCH-RB38 0 17243 -cellosaurus:CVCL_B7KU BCH-RB39 0 17244 -cellosaurus:CVCL_B7KV BCH-RB40 0 17245 -cellosaurus:CVCL_B7KW BCH-RB41 0 17246 -cellosaurus:CVCL_B7KX BCH-RB42 0 17247 -cellosaurus:CVCL_B7KY BCH-RB43 0 17248 -cellosaurus:CVCL_B7KZ BCH-RB44 0 17249 -cellosaurus:CVCL_B7L0 BCH-RB45 0 17250 -cellosaurus:CVCL_B7L1 BCH-RB46 0 17251 -cellosaurus:CVCL_B7L2 BCH-RB47 0 17252 -cellosaurus:CVCL_B7L3 BCH-RB48 0 17253 -cellosaurus:CVCL_B7L4 BCH-RB49 0 17254 -cellosaurus:CVCL_B7L5 BCH-RB50 0 17255 -cellosaurus:CVCL_B7L6 BCH-RB51 0 17256 -cellosaurus:CVCL_B7L7 BCH-RB52 0 17257 -cellosaurus:CVCL_B7L8 BCH-RB53 0 17258 -cellosaurus:CVCL_B7L9 BCH-RB54 0 17259 -cellosaurus:CVCL_B7LA BCH-RB55 0 17260 -cellosaurus:CVCL_B7LB BCH-RB56 0 17261 -cellosaurus:CVCL_B7LC BCH-RB57 0 17262 -cellosaurus:CVCL_B7LD BCH-RB58 0 17263 -cellosaurus:CVCL_B7LE BCH-RB59 0 17264 -cellosaurus:CVCL_C1MH BCH869 0 17265 -cellosaurus:CVCL_VP49 BCJ-4T 0 17266 -cellosaurus:CVCL_A9A5 BCK4 0 17267 -cellosaurus:CVCL_9637 BCKN-1 0 17268 -cellosaurus:CVCL_LC46 BCLC-1 0 17269 -cellosaurus:CVCL_LC52 BCLC-10 0 17270 -cellosaurus:CVCL_LC47 BCLC-2 0 17271 -cellosaurus:CVCL_LC48 BCLC-3 0 17272 -cellosaurus:CVCL_LC49 BCLC-4 0 17273 -cellosaurus:CVCL_LC50 BCLC-5 0 17274 -cellosaurus:CVCL_LC51 BCLC-6 0 17275 -cellosaurus:CVCL_9483 BCLC-9 0 17276 -cellosaurus:CVCL_HX06 BCN 0 17277 -cellosaurus:CVCL_0107 BCP-1 0 17278 -cellosaurus:CVCL_M578 BCS-6 0 17279 -cellosaurus:CVCL_B041 BCS-TC2 0 17280 -cellosaurus:CVCL_4613 BDCM 0 17281 -cellosaurus:CVCL_9U99 BE [Human melanoma] 0 17282 -cellosaurus:CVCL_JY35 BE3 0 17283 -cellosaurus:CVCL_A4BJ BECK-1 0 17284 -cellosaurus:CVCL_1093 Becker 0 17285 -cellosaurus:CVCL_0081 BEL-1 0 17286 -cellosaurus:CVCL_6569 BEL-7405 0 17287 -cellosaurus:CVCL_1082 BEN 0 17288 -cellosaurus:CVCL_B5EH BER-DSRCT 0 17289 -cellosaurus:CVCL_VP38 BexBra1 0 17290 -cellosaurus:CVCL_VP39 BexBra2 0 17291 -cellosaurus:CVCL_VP40 BexBra4 0 17292 -cellosaurus:CVCL_IR46 bGB1 0 17293 -cellosaurus:CVCL_0C06 BH-E 0 17294 -cellosaurus:CVCL_IR12 BHD-F59RSVT 0 17295 -cellosaurus:CVCL_2306 BHL-89 0 17296 -cellosaurus:CVCL_D017 BHP 19-24 0 17297 -cellosaurus:CVCL_1085 BHT-101 0 17298 -cellosaurus:CVCL_1086 BHY 0 17299 -cellosaurus:CVCL_LI17 BI 0 17300 -cellosaurus:CVCL_2307 BICR 10 0 17301 -cellosaurus:CVCL_2308 BICR 16 0 17302 -cellosaurus:CVCL_2309 BICR 18 0 17303 -cellosaurus:CVCL_2310 BICR 22 0 17304 -cellosaurus:CVCL_2311 BICR 3 0 17305 -cellosaurus:CVCL_2312 BICR 31 0 17306 -cellosaurus:CVCL_2313 BICR 56 0 17307 -cellosaurus:CVCL_2314 BICR 6 0 17308 -cellosaurus:CVCL_S694 BICR 63 0 17309 -cellosaurus:CVCL_S695 BICR 68 0 17310 -cellosaurus:CVCL_2315 BICR 78 0 17311 -cellosaurus:CVCL_2316 BICR 82 0 17312 -cellosaurus:CVCL_W890 BID007 0 17313 -cellosaurus:CVCL_QX91 BIN-14 0 17314 -cellosaurus:CVCL_S984 BIN-16 0 17315 -cellosaurus:CVCL_S985 BIN-22 0 17316 -cellosaurus:CVCL_QX92 BIN-36 0 17317 -cellosaurus:CVCL_S986 BIN-53 0 17318 -cellosaurus:CVCL_S987 BIN-67 0 17319 -cellosaurus:CVCL_LI18 BJ [Human pancreatic adenocarcinoma] 0 17320 -cellosaurus:CVCL_S718 BK-10 0 17321 -cellosaurus:CVCL_0C07 BK-T 0 17322 -cellosaurus:CVCL_1K06 BKP1 0 17323 -cellosaurus:CVCL_A2WM BKZ-1 0 17324 -cellosaurus:CVCL_A2FV BKZ-2 0 17325 -cellosaurus:CVCL_A2FW BKZ-3 0 17326 -cellosaurus:CVCL_U802 BL 0 17327 -cellosaurus:CVCL_C131 BL-10 0 17328 -cellosaurus:CVCL_1965 BL-100 0 17329 -cellosaurus:CVCL_ZJ22 BL-103 0 17330 -cellosaurus:CVCL_IU51 BL-104 0 17331 -cellosaurus:CVCL_IV12 BL-108 0 17332 -cellosaurus:CVCL_C132 BL-113 0 17333 -cellosaurus:CVCL_C133 BL-116 0 17334 -cellosaurus:CVCL_M640 BL-12 0 17335 -cellosaurus:CVCL_C160 BL-121 0 17336 -cellosaurus:CVCL_ZJ23 BL-123 0 17337 -cellosaurus:CVCL_C161 BL-125 0 17338 -cellosaurus:CVCL_C134 BL-126 0 17339 -cellosaurus:CVCL_C135 BL-13 0 17340 -cellosaurus:CVCL_IV13 BL-135 0 17341 -cellosaurus:CVCL_C136 BL-136 0 17342 -cellosaurus:CVCL_ZU69 BL-137 0 17343 -cellosaurus:CVCL_C138 BL-17 0 17344 -cellosaurus:CVCL_C139 BL-18 0 17345 -cellosaurus:CVCL_1966 BL-2 0 17346 -cellosaurus:CVCL_M639 BL-21 0 17347 -cellosaurus:CVCL_C140 BL-22 0 17348 -cellosaurus:CVCL_M567 BL-28 0 17349 -cellosaurus:CVCL_C141 BL-29 0 17350 -cellosaurus:CVCL_M562 BL-3 [Human Burkitt lymphoma] 0 17351 -cellosaurus:CVCL_C142 BL-30 0 17352 -cellosaurus:CVCL_C143 BL-31 0 17353 -cellosaurus:CVCL_C144 BL-32 0 17354 -cellosaurus:CVCL_M557 BL-33 0 17355 -cellosaurus:CVCL_C145 BL-35 0 17356 -cellosaurus:CVCL_C146 BL-36 0 17357 -cellosaurus:CVCL_C147 BL-37 0 17358 -cellosaurus:CVCL_C148 BL-38 0 17359 -cellosaurus:CVCL_VQ32 BL-39 0 17360 -cellosaurus:CVCL_C149 BL-40 0 17361 -cellosaurus:CVCL_M641 BL-42 0 17362 -cellosaurus:CVCL_M565 BL-43 0 17363 -cellosaurus:CVCL_M566 BL-44 0 17364 -cellosaurus:CVCL_M642 BL-45 0 17365 -cellosaurus:CVCL_M559 BL-46 0 17366 -cellosaurus:CVCL_M643 BL-47 0 17367 -cellosaurus:CVCL_M644 BL-48 0 17368 -cellosaurus:CVCL_C150 BL-49 0 17369 -cellosaurus:CVCL_M563 BL-5 0 17370 -cellosaurus:CVCL_IV15 BL-50 0 17371 -cellosaurus:CVCL_VQ33 BL-52 0 17372 -cellosaurus:CVCL_C151 BL-53 0 17373 -cellosaurus:CVCL_M645 BL-54 0 17374 -cellosaurus:CVCL_VQ30 BL-55 0 17375 -cellosaurus:CVCL_VQ37 BL-56 0 17376 -cellosaurus:CVCL_C152 BL-57 0 17377 -cellosaurus:CVCL_C153 BL-58 0 17378 -cellosaurus:CVCL_M568 BL-59 0 17379 -cellosaurus:CVCL_M564 BL-6 0 17380 -cellosaurus:CVCL_7034 BL-60 0 17381 -cellosaurus:CVCL_M556 BL-61 0 17382 -cellosaurus:CVCL_C162 BL-62 0 17383 -cellosaurus:CVCL_C154 BL-63 0 17384 -cellosaurus:CVCL_C155 BL-64 0 17385 -cellosaurus:CVCL_C163 BL-65 0 17386 -cellosaurus:CVCL_VQ35 BL-66 0 17387 -cellosaurus:CVCL_C156 BL-67 0 17388 -cellosaurus:CVCL_VQ34 BL-68 0 17389 -cellosaurus:CVCL_M560 BL-69 0 17390 -cellosaurus:CVCL_M555 BL-7 0 17391 -cellosaurus:CVCL_1088 BL-70 0 17392 -cellosaurus:CVCL_VQ36 BL-71 0 17393 -cellosaurus:CVCL_C157 BL-72 0 17394 -cellosaurus:CVCL_C164 BL-73 0 17395 -cellosaurus:CVCL_C158 BL-74 0 17396 -cellosaurus:CVCL_C1JI BL-75 0 17397 -cellosaurus:CVCL_C1JJ BL-76 0 17398 -cellosaurus:CVCL_A1DZ BL-78 0 17399 -cellosaurus:CVCL_C165 BL-79 0 17400 -cellosaurus:CVCL_M561 BL-8 0 17401 -cellosaurus:CVCL_ZJ24 BL-81 0 17402 -cellosaurus:CVCL_IU52 BL-84 0 17403 -cellosaurus:CVCL_ZJ25 BL-86 0 17404 -cellosaurus:CVCL_C166 BL-89 0 17405 -cellosaurus:CVCL_N271 BL-9 0 17406 -cellosaurus:CVCL_IV16 BL-90 0 17407 -cellosaurus:CVCL_ZI24 BL-92 0 17408 -cellosaurus:CVCL_IU53 BL-99 0 17409 -cellosaurus:CVCL_A9SX BL1391 0 17410 -cellosaurus:CVCL_T741 Black93 0 17411 -cellosaurus:CVCL_0C42 BLC-1 0 17412 -cellosaurus:CVCL_0C43 BLC-2 0 17413 -cellosaurus:CVCL_0C44 BLC-4 0 17414 -cellosaurus:CVCL_0C45 BLC-6 0 17415 -cellosaurus:CVCL_0C46 BLC-7 0 17416 -cellosaurus:CVCL_QW48 BLIN-2 0 17417 -cellosaurus:CVCL_QW47 BLIN-3 0 17418 -cellosaurus:CVCL_B7G1 BLN-1 0 17419 -cellosaurus:CVCL_B7G2 BLN-2 0 17420 -cellosaurus:CVCL_6G24 BLN-3 0 17421 -cellosaurus:CVCL_B7G3 BLN-4 0 17422 -cellosaurus:CVCL_B7G0 BLN-5 0 17423 -cellosaurus:CVCL_B7G4 BLN-6 0 17424 -cellosaurus:CVCL_6G25 BLN-7 0 17425 -cellosaurus:CVCL_B7G5 BLN-8 0 17426 -cellosaurus:CVCL_B7G6 BLN-9 0 17427 -cellosaurus:CVCL_1967 BLUE-1 0 17428 -cellosaurus:CVCL_W999 BM 2.2.1 0 17429 -cellosaurus:CVCL_3895 BM-314 0 17430 -cellosaurus:CVCL_4832 BM18 0 17431 -cellosaurus:CVCL_ZE82 BMA19 0 17432 -cellosaurus:CVCL_DF74 BMG-1 0 17433 -cellosaurus:CVCL_QX73 BML01 0 17434 -cellosaurus:CVCL_IV45 BML895 0 17435 -cellosaurus:CVCL_Y432 BN 0 17436 -cellosaurus:CVCL_M707 BNBH-1 0 17437 -cellosaurus:CVCL_C0X2 BNI-FNS-51 0 17438 -cellosaurus:CVCL_C0X3 BNI-VS-50 0 17439 -cellosaurus:CVCL_C0X4 BNI-VS-52 0 17440 -cellosaurus:CVCL_1E39 BO #2 0 17441 -cellosaurus:CVCL_M140 BO-101 0 17442 -cellosaurus:CVCL_M958 Boar88 0 17443 -cellosaurus:CVCL_B5EI BOD-DSRCT 0 17444 -cellosaurus:CVCL_M784 BOJO 0 17445 -cellosaurus:CVCL_1089 BOKU 0 17446 -cellosaurus:CVCL_1090 BONNA-12 0 17447 -cellosaurus:CVCL_A1YK BORRU 0 17448 -cellosaurus:CVCL_T293 BOT-2 0 17449 -cellosaurus:CVCL_7948 BOY-12E 0 17450 -cellosaurus:CVCL_C0UF BP50 0 17451 -cellosaurus:CVCL_M382 Br-NHF-1 0 17452 -cellosaurus:CVCL_M099 BRC-230 0 17453 -cellosaurus:CVCL_5495 BrCa-MZ-01 0 17454 -cellosaurus:CVCL_5496 BrCa-MZ-02 0 17455 -cellosaurus:CVCL_LF98 BRL-4143 0 17456 -cellosaurus:CVCL_B4K3 BRL-6005 0 17457 -cellosaurus:CVCL_B4K4 BRL-6278 0 17458 -cellosaurus:CVCL_E997 BroLi 0 17459 -cellosaurus:CVCL_IW38 BS125 0 17460 -cellosaurus:CVCL_IW39 BS149 0 17461 -cellosaurus:CVCL_HF86 BSC-OF 0 17462 -cellosaurus:CVCL_JX46 BSCC 0 17463 -cellosaurus:CVCL_M100 BSMZ 0 17464 -cellosaurus:CVCL_B499 BSY-1 0 17465 -cellosaurus:CVCL_B500 BSY-2 0 17466 -cellosaurus:CVCL_WW37 BT 112 0 17467 -cellosaurus:CVCL_WW38 BT 131 0 17468 -cellosaurus:CVCL_WW39 BT 139 0 17469 -cellosaurus:CVCL_IP10 BT 145 0 17470 -cellosaurus:CVCL_WW40 BT 147 0 17471 -cellosaurus:CVCL_IP11 BT 159 0 17472 -cellosaurus:CVCL_WW41 BT 164 0 17473 -cellosaurus:CVCL_WW42 BT 168 0 17474 -cellosaurus:CVCL_IP12 BT 172 0 17475 -cellosaurus:CVCL_WW43 BT 179 0 17476 -cellosaurus:CVCL_WW44 BT 181 0 17477 -cellosaurus:CVCL_WW45 BT 182 0 17478 -cellosaurus:CVCL_WW46 BT 187 0 17479 -cellosaurus:CVCL_WW47 BT 188 0 17480 -cellosaurus:CVCL_WW48 BT 189 0 17481 -cellosaurus:CVCL_WW49 BT 216 0 17482 -cellosaurus:CVCL_WW50 BT 224 0 17483 -cellosaurus:CVCL_WW51 BT 228 0 17484 -cellosaurus:CVCL_WW52 BT 231 0 17485 -cellosaurus:CVCL_WW53 BT 232 0 17486 -cellosaurus:CVCL_WW54 BT 239 0 17487 -cellosaurus:CVCL_WW73 BT 240 0 17488 -cellosaurus:CVCL_IP13 BT 245 0 17489 -cellosaurus:CVCL_WW55 BT 248 0 17490 -cellosaurus:CVCL_WW56 BT 271 0 17491 -cellosaurus:CVCL_WW57 BT 286 0 17492 -cellosaurus:CVCL_WW58 BT 320 0 17493 -cellosaurus:CVCL_WW59 BT 328 0 17494 -cellosaurus:CVCL_WW60 BT 330 0 17495 -cellosaurus:CVCL_WW61 BT 333 0 17496 -cellosaurus:CVCL_WW62 BT 340 0 17497 -cellosaurus:CVCL_WW63 BT 359 0 17498 -cellosaurus:CVCL_WW64 BT 416 0 17499 -cellosaurus:CVCL_WW65 BT 422 0 17500 -cellosaurus:CVCL_WW66 BT 428 0 17501 -cellosaurus:CVCL_WW67 BT 440 0 17502 -cellosaurus:CVCL_WW68 BT 444 0 17503 -cellosaurus:CVCL_WW69 BT 482 0 17504 -cellosaurus:CVCL_WW70 BT 484 0 17505 -cellosaurus:CVCL_WW71 BT 498 0 17506 -cellosaurus:CVCL_WW72 BT 504 0 17507 -cellosaurus:CVCL_M155 BT-12 0 17508 -cellosaurus:CVCL_M156 BT-16 0 17509 -cellosaurus:CVCL_5120 BT-325 0 17510 -cellosaurus:CVCL_JL57 BT-37 0 17511 -cellosaurus:CVCL_X209 BT-410 0 17512 -cellosaurus:CVCL_2319 BT-483 0 17513 -cellosaurus:CVCL_RU28 BT012 0 17514 -cellosaurus:CVCL_UK46 BT018 0 17515 -cellosaurus:CVCL_UK47 BT019 0 17516 -cellosaurus:CVCL_UK48 BT020 0 17517 -cellosaurus:CVCL_UK49 BT023 0 17518 -cellosaurus:CVCL_UK41 BT025 0 17519 -cellosaurus:CVCL_UK44 BT028 0 17520 -cellosaurus:CVCL_UK45 BT030 0 17521 -cellosaurus:CVCL_UK50 BT033 0 17522 -cellosaurus:CVCL_UK51 BT034 0 17523 -cellosaurus:CVCL_UK42 BT042 0 17524 -cellosaurus:CVCL_RU29 BT048 0 17525 -cellosaurus:CVCL_UK38 BT050 0 17526 -cellosaurus:CVCL_RU30 BT053 0 17527 -cellosaurus:CVCL_N707 BT054 0 17528 -cellosaurus:CVCL_UK43 BT060 0 17529 -cellosaurus:CVCL_UK39 BT067 0 17530 -cellosaurus:CVCL_UK52 BT068 0 17531 -cellosaurus:CVCL_UK37 BT069 0 17532 -cellosaurus:CVCL_UK53 BT071 0 17533 -cellosaurus:CVCL_UK54 BT073 0 17534 -cellosaurus:CVCL_UK55 BT074 0 17535 -cellosaurus:CVCL_UK56 BT075 0 17536 -cellosaurus:CVCL_UK69 BT084 0 17537 -cellosaurus:CVCL_UK70 BT085 0 17538 -cellosaurus:CVCL_N708 BT088 0 17539 -cellosaurus:CVCL_UK40 BT089 0 17540 -cellosaurus:CVCL_UK71 BT090 0 17541 -cellosaurus:CVCL_UK57 BT092 0 17542 -cellosaurus:CVCL_UK72 BT094 0 17543 -cellosaurus:CVCL_UK58 BT100 0 17544 -cellosaurus:CVCL_UK59 BT108 0 17545 -cellosaurus:CVCL_UK60 BT119 0 17546 -cellosaurus:CVCL_UK73 BT121 0 17547 -cellosaurus:CVCL_UK61 BT124 0 17548 -cellosaurus:CVCL_UK65 BT126 0 17549 -cellosaurus:CVCL_UK66 BT127 0 17550 -cellosaurus:CVCL_UK67 BT134 0 17551 -cellosaurus:CVCL_UK62 BT143 0 17552 -cellosaurus:CVCL_UK63 BT147 0 17553 -cellosaurus:CVCL_UK68 BT164 0 17554 -cellosaurus:CVCL_VV25 BT169 0 17555 -cellosaurus:CVCL_UK74 BT189 0 17556 -cellosaurus:CVCL_UK64 BT206 0 17557 -cellosaurus:CVCL_A4AY BT238 0 17558 -cellosaurus:CVCL_A4AZ BT301 0 17559 -cellosaurus:CVCL_M366 BTIC 0 17560 -cellosaurus:CVCL_5G43 BTM-1 0 17561 -cellosaurus:CVCL_LJ53 BUG 0 17562 -cellosaurus:CVCL_VP96 BUMA 31 0 17563 -cellosaurus:CVCL_QW60 BW-1 0 17564 -cellosaurus:CVCL_Y431 BW288 0 17565 -cellosaurus:CVCL_Y105 BXD-1425EPN 0 17566 -cellosaurus:CVCL_5U42 C-1509 0 17567 -cellosaurus:CVCL_1E27 C-33 B 0 17568 -cellosaurus:CVCL_2253 C-4-I 0 17569 -cellosaurus:CVCL_1095 C-4-II 0 17570 -cellosaurus:CVCL_5969 C-643 0 17571 -cellosaurus:CVCL_W518 C-HC-20 0 17572 -cellosaurus:CVCL_RJ64 C-HC-32 0 17573 -cellosaurus:CVCL_W519 C-HC-4 0 17574 -cellosaurus:CVCL_B4K8 C001 0 17575 -cellosaurus:CVCL_EI31 C002 0 17576 -cellosaurus:CVCL_B4KF C003 0 17577 -cellosaurus:CVCL_EI32 C004 0 17578 -cellosaurus:CVCL_B4KI C004-2 0 17579 -cellosaurus:CVCL_B4K9 C006 0 17580 -cellosaurus:CVCL_EI33 C008 0 17581 -cellosaurus:CVCL_EI34 C011 0 17582 -cellosaurus:CVCL_EI35 C013 0 17583 -cellosaurus:CVCL_B4KA C016 0 17584 -cellosaurus:CVCL_EI36 C017 0 17585 -cellosaurus:CVCL_EI37 C021 0 17586 -cellosaurus:CVCL_EI38 C022 0 17587 -cellosaurus:CVCL_EI39 C025 0 17588 -cellosaurus:CVCL_EI40 C027 0 17589 -cellosaurus:CVCL_EI41 C028 0 17590 -cellosaurus:CVCL_B4KH C028-2 0 17591 -cellosaurus:CVCL_EI42 C037 0 17592 -cellosaurus:CVCL_EI43 C038 0 17593 -cellosaurus:CVCL_EI44 C042 0 17594 -cellosaurus:CVCL_B4KJ C042-2 0 17595 -cellosaurus:CVCL_EI45 C044 0 17596 -cellosaurus:CVCL_B4KK C045 0 17597 -cellosaurus:CVCL_EI46 C052 0 17598 -cellosaurus:CVCL_EI47 C054 0 17599 -cellosaurus:CVCL_VK09 C055 0 17600 -cellosaurus:CVCL_EI48 C057 0 17601 -cellosaurus:CVCL_EI49 C058 0 17602 -cellosaurus:CVCL_EI50 C060 0 17603 -cellosaurus:CVCL_EI51 C062 0 17604 -cellosaurus:CVCL_EI52 C065 0 17605 -cellosaurus:CVCL_EI53 C067 0 17606 -cellosaurus:CVCL_EI54 C071 0 17607 -cellosaurus:CVCL_B4KB C074 0 17608 -cellosaurus:CVCL_B4KC C076 0 17609 -cellosaurus:CVCL_EI55 C077 0 17610 -cellosaurus:CVCL_EI56 C078 0 17611 -cellosaurus:CVCL_EI57 C081 0 17612 -cellosaurus:CVCL_EI58 C083 0 17613 -cellosaurus:CVCL_EI59 C084 0 17614 -cellosaurus:CVCL_EI60 C086 0 17615 -cellosaurus:CVCL_B4KD C088 0 17616 -cellosaurus:CVCL_B4KL C088-2 0 17617 -cellosaurus:CVCL_EI61 C089 0 17618 -cellosaurus:CVCL_EI62 C091 0 17619 -cellosaurus:CVCL_EI63 C092 0 17620 -cellosaurus:CVCL_B4KE C094 0 17621 -cellosaurus:CVCL_EI64 C096 0 17622 -cellosaurus:CVCL_EI65 C097 0 17623 -cellosaurus:CVCL_5245 C10 0 17624 -cellosaurus:CVCL_EI66 C100 0 17625 -cellosaurus:CVCL_U099 C1026L 0 17626 -cellosaurus:CVCL_EI67 C106 [Human melanoma] 0 17627 -cellosaurus:CVCL_M011 C106 [Human rectal adenocarcinoma] 0 17628 -cellosaurus:CVCL_8175 C125-PM 0 17629 -cellosaurus:CVCL_DG70 C135 0 17630 -cellosaurus:CVCL_HE29 C14 0 17631 -cellosaurus:CVCL_S958 C146 0 17632 -cellosaurus:CVCL_IY90 C168 0 17633 -cellosaurus:CVCL_VT47 C17 [Human nasopharyngeal carcinoma] 0 17634 -cellosaurus:CVCL_S959 C170 0 17635 -cellosaurus:CVCL_1B28 C180-13S 0 17636 -cellosaurus:CVCL_HE30 C23 0 17637 -cellosaurus:CVCL_U100 C311L 0 17638 -cellosaurus:CVCL_5246 C32 [Human colon adenocarcinoma] 0 17639 -cellosaurus:CVCL_B042 C3842 0 17640 -cellosaurus:CVCL_XY60 C3948 0 17641 -cellosaurus:CVCL_A1UX C396 0 17642 -cellosaurus:CVCL_U101 C422L 0 17643 -cellosaurus:CVCL_HE31 C6 [Human colon adenocarcinoma] 0 17644 -cellosaurus:CVCL_X905 C6-3 0 17645 -cellosaurus:CVCL_5247 C70 0 17646 -cellosaurus:CVCL_5248 C75 0 17647 -cellosaurus:CVCL_B4N3 C8 [Human colon adenocarcinoma] 0 17648 -cellosaurus:CVCL_5249 C80 0 17649 -cellosaurus:CVCL_4Z02 C8054 0 17650 -cellosaurus:CVCL_4Z03 C8130 0 17651 -cellosaurus:CVCL_4Z04 C8146A 0 17652 -cellosaurus:CVCL_4Z05 C8146C 0 17653 -cellosaurus:CVCL_4Z06 C8157 0 17654 -cellosaurus:CVCL_4Z07 C822 0 17655 -cellosaurus:CVCL_4Z08 C827A 0 17656 -cellosaurus:CVCL_8662 C831L 0 17657 -cellosaurus:CVCL_4Z09 C832C 0 17658 -cellosaurus:CVCL_5250 C84 0 17659 -cellosaurus:CVCL_4Z10 C8442 0 17660 -cellosaurus:CVCL_B7P0 C8ID 0 17661 -cellosaurus:CVCL_8471 C918 0 17662 -cellosaurus:CVCL_8176 C99 0 17663 -cellosaurus:CVCL_E319 CA 0 17664 -cellosaurus:CVCL_1E40 CA #12 0 17665 -cellosaurus:CVCL_RP29 Ca 18/3 0 17666 -cellosaurus:CVCL_RP30 Ca 286 0 17667 -cellosaurus:CVCL_RP31 Ca 298 0 17668 -cellosaurus:CVCL_RP32 Ca 300 0 17669 -cellosaurus:CVCL_RP33 Ca 301 0 17670 -cellosaurus:CVCL_1100 Ca Ski 0 17671 -cellosaurus:CVCL_8840 CA-2E 0 17672 -cellosaurus:CVCL_A5TQ Ca1 0 17673 -cellosaurus:CVCL_WS76 Ca2-83 0 17674 -cellosaurus:CVCL_1101 CA46 0 17675 -cellosaurus:CVCL_4U23 CA5171 0 17676 -cellosaurus:CVCL_4769 CABA I 0 17677 -cellosaurus:CVCL_JX14 CAC-1 [Human cervical carcinoma] 0 17678 -cellosaurus:CVCL_A421 CAC-1 [Human endometrial adenocarcinoma] 0 17679 -cellosaurus:CVCL_T325 CaCL 74-36 0 17680 -cellosaurus:CVCL_T326 CaCL 78-1 0 17681 -cellosaurus:CVCL_T327 CaCL 78-4 0 17682 -cellosaurus:CVCL_T328 CaCL 79-3 0 17683 -cellosaurus:CVCL_QW78 Caco-3 0 17684 -cellosaurus:CVCL_1103 CADO-ES1 0 17685 -cellosaurus:CVCL_Z047 CADO-LC1 0 17686 -cellosaurus:CVCL_Z054 CADO-LC10 0 17687 -cellosaurus:CVCL_Z055 CADO-LC11 0 17688 -cellosaurus:CVCL_Z056 CADO-LC15 0 17689 -cellosaurus:CVCL_RQ33 CADO-LC16 0 17690 -cellosaurus:CVCL_Z057 CADO-LC17 0 17691 -cellosaurus:CVCL_RQ34 CADO-LC19 0 17692 -cellosaurus:CVCL_RQ35 CADO-LC2 0 17693 -cellosaurus:CVCL_Z058 CADO-LC20 0 17694 -cellosaurus:CVCL_Z059 CADO-LC21 0 17695 -cellosaurus:CVCL_Z060 CADO-LC22 0 17696 -cellosaurus:CVCL_Z061 CADO-LC24 0 17697 -cellosaurus:CVCL_Z062 CADO-LC26 0 17698 -cellosaurus:CVCL_RQ36 CADO-LC27 0 17699 -cellosaurus:CVCL_RQ37 CADO-LC28 0 17700 -cellosaurus:CVCL_RQ38 CADO-LC29 0 17701 -cellosaurus:CVCL_Z048 CADO-LC3 0 17702 -cellosaurus:CVCL_RQ39 CADO-LC4 0 17703 -cellosaurus:CVCL_Z063 CADO-LC41 0 17704 -cellosaurus:CVCL_Z049 CADO-LC5 0 17705 -cellosaurus:CVCL_Z050 CADO-LC6 0 17706 -cellosaurus:CVCL_Z051 CADO-LC7 0 17707 -cellosaurus:CVCL_Z052 CADO-LC8 0 17708 -cellosaurus:CVCL_Z053 CADO-LC9 0 17709 -cellosaurus:CVCL_B7GW CAE606 0 17710 -cellosaurus:CVCL_WH08 CAEP [Human lung carcinoma] 0 17711 -cellosaurus:CVCL_D569 CAG 0 17712 -cellosaurus:CVCL_A5TC CAISMOV24 0 17713 -cellosaurus:CVCL_0235 Caki-2 0 17714 -cellosaurus:CVCL_G085 CAL-1 [Human melanoma] 0 17715 -cellosaurus:CVCL_1104 CAL-120 0 17716 -cellosaurus:CVCL_1106 CAL-148 0 17717 -cellosaurus:CVCL_G081 CAL-185 0 17718 -cellosaurus:CVCL_G083 CAL-18A 0 17719 -cellosaurus:CVCL_G084 CAL-18B 0 17720 -cellosaurus:CVCL_5V17 CAL-2 0 17721 -cellosaurus:CVCL_5V13 CAL-23 0 17722 -cellosaurus:CVCL_5V14 CAL-24 0 17723 -cellosaurus:CVCL_X042 CAL-26 0 17724 -cellosaurus:CVCL_1808 CAL-29 0 17725 -cellosaurus:CVCL_X043 CAL-32 0 17726 -cellosaurus:CVCL_1108 CAL-33 0 17727 -cellosaurus:CVCL_1109 CAL-39 0 17728 -cellosaurus:CVCL_G086 CAL-4 0 17729 -cellosaurus:CVCL_5V16 CAL-41 0 17730 -cellosaurus:CVCL_X044 CAL-43 0 17731 -cellosaurus:CVCL_G082 CAL-44 0 17732 -cellosaurus:CVCL_RL40 CAL-48A 0 17733 -cellosaurus:CVCL_1111 CAL-54 0 17734 -cellosaurus:CVCL_1112 CAL-62 0 17735 -cellosaurus:CVCL_G087 CAL-7 0 17736 -cellosaurus:CVCL_1113 CAL-72 0 17737 -cellosaurus:CVCL_1809 CAL-78 0 17738 -cellosaurus:CVCL_1114 CAL-85-1 0 17739 -cellosaurus:CVCL_B7MJ CAL-85-2 0 17740 -cellosaurus:CVCL_5V15 CAL-9 0 17741 -cellosaurus:CVCL_A5TR CalH2 0 17742 -cellosaurus:CVCL_A5TS CalH3 0 17743 -cellosaurus:CVCL_RP61 Cali-1 0 17744 -cellosaurus:CVCL_5121 CaLo 0 17745 -cellosaurus:CVCL_1E46 Calu-2 0 17746 -cellosaurus:CVCL_LK95 Calu-4 0 17747 -cellosaurus:CVCL_U901 Calu-5 0 17748 -cellosaurus:CVCL_0236 Calu-6 0 17749 -cellosaurus:CVCL_1115 CAMA-1 0 17750 -cellosaurus:CVCL_LK71 Cama-2 0 17751 -cellosaurus:CVCL_0200 Caov-1 0 17752 -cellosaurus:CVCL_0202 Caov-4 0 17753 -cellosaurus:CVCL_1U09 CaPa 0 17754 -cellosaurus:CVCL_V028 CaPA-4 0 17755 -cellosaurus:CVCL_0026 Capan-2 0 17756 -cellosaurus:CVCL_C0VB Capan-26 0 17757 -cellosaurus:CVCL_IV96 CAR #1 0 17758 -cellosaurus:CVCL_1116 CaR-1 0 17759 -cellosaurus:CVCL_D330 CARNAVAL 0 17760 -cellosaurus:CVCL_B6PR Carousel 0 17761 -cellosaurus:CVCL_1117 CAS-1 0 17762 -cellosaurus:CVCL_1E91 Casa-1 0 17763 -cellosaurus:CVCL_W772 CAT(Wil) 0 17764 -cellosaurus:CVCL_3296 Cates-1B 0 17765 -cellosaurus:CVCL_LM72 CAV 0 17766 -cellosaurus:CVCL_D308 CAVEOC-2 0 17767 -cellosaurus:CVCL_WH62 CB-JMN 0 17768 -cellosaurus:CVCL_Y580 CB-NJR 0 17769 -cellosaurus:CVCL_D298 CBS [Human colon carcinoma] 0 17770 -cellosaurus:CVCL_UH62 CBT026T 0 17771 -cellosaurus:CVCL_WP72 cc-006cpm8 0 17772 -cellosaurus:CVCL_DF79 CC-10A 0 17773 -cellosaurus:CVCL_DF80 CC-10B 0 17774 -cellosaurus:CVCL_GT23 CC-135-VGH 0 17775 -cellosaurus:CVCL_DF78 CC-8 0 17776 -cellosaurus:CVCL_M733 CC-CL-1 0 17777 -cellosaurus:CVCL_0205 CC-LP-1 0 17778 -cellosaurus:CVCL_Y096 CC-M1 0 17779 -cellosaurus:CVCL_Y098 CC-M2MN 0 17780 -cellosaurus:CVCL_Y100 CC-M4 0 17781 -cellosaurus:CVCL_A429 CC-SW-1 0 17782 -cellosaurus:CVCL_9V76 CC1-PI 19 0 17783 -cellosaurus:CVCL_2H54 CC20 [Human colon adenocarcinoma] 0 17784 -cellosaurus:CVCL_2H55 CC21 [Human colon adenocarcinoma] 0 17785 -cellosaurus:CVCL_2H56 CC22 0 17786 -cellosaurus:CVCL_S964 CC3/CUHK3 0 17787 -cellosaurus:CVCL_K269 CC7T/VGH 0 17788 -cellosaurus:CVCL_N717 CCA 0 17789 -cellosaurus:CVCL_LM83 CCC-5 0 17790 -cellosaurus:CVCL_J320 CCCL-1 0 17791 -cellosaurus:CVCL_J321 CCCL-10 0 17792 -cellosaurus:CVCL_J322 CCCL-11 0 17793 -cellosaurus:CVCL_J341 CCCL-13 0 17794 -cellosaurus:CVCL_J324 CCCL-14 0 17795 -cellosaurus:CVCL_J342 CCCL-15 0 17796 -cellosaurus:CVCL_J343 CCCL-16 0 17797 -cellosaurus:CVCL_J325 CCCL-18 0 17798 -cellosaurus:CVCL_J326 CCCL-19 0 17799 -cellosaurus:CVCL_J327 CCCL-2 0 17800 -cellosaurus:CVCL_J328 CCCL-20 0 17801 -cellosaurus:CVCL_J329 CCCL-21 0 17802 -cellosaurus:CVCL_J344 CCCL-22 0 17803 -cellosaurus:CVCL_J330 CCCL-23 0 17804 -cellosaurus:CVCL_J331 CCCL-26 0 17805 -cellosaurus:CVCL_J332 CCCL-28 0 17806 -cellosaurus:CVCL_J333 CCCL-3 0 17807 -cellosaurus:CVCL_J334 CCCL-30 0 17808 -cellosaurus:CVCL_J335 CCCL-4 0 17809 -cellosaurus:CVCL_J337 CCCL-5 0 17810 -cellosaurus:CVCL_J336 CCCL-6 0 17811 -cellosaurus:CVCL_J338 CCCL-7 0 17812 -cellosaurus:CVCL_J339 CCCL-8 0 17813 -cellosaurus:CVCL_J340 CCCL-9 0 17814 -cellosaurus:CVCL_9703 CCF-RC1 0 17815 -cellosaurus:CVCL_9704 CCF-RC2 0 17816 -cellosaurus:CVCL_1118 CCF-STTG1 0 17817 -cellosaurus:CVCL_XX31 CCH-FAHNSCC-2 0 17818 -cellosaurus:CVCL_XG73 CCH-OS-C 0 17819 -cellosaurus:CVCL_XG67 CCH-OS-D 0 17820 -cellosaurus:CVCL_XG74 CCH-OS-G 0 17821 -cellosaurus:CVCL_XG71 CCH-OS-K 0 17822 -cellosaurus:CVCL_XG75 CCH-OS-M 0 17823 -cellosaurus:CVCL_XG72 CCH-OS-O 0 17824 -cellosaurus:CVCL_XG76 CCH-OS-R 0 17825 -cellosaurus:CVCL_XG77 CCH-OS-T 0 17826 -cellosaurus:CVCL_M024 CCL4 0 17827 -cellosaurus:CVCL_B3PK CCLF-PEDS-0001-T 0 17828 -cellosaurus:CVCL_B3PL CCLF-PEDS-0003-T 0 17829 -cellosaurus:CVCL_B3PM CCLF-PEDS-0008-T 0 17830 -cellosaurus:CVCL_B3PN CCLF-PEDS-0009-T 0 17831 -cellosaurus:CVCL_B4KV CCLF-UPGI-0005-T 0 17832 -cellosaurus:CVCL_B4KW CCLF-UPGI-0061-T 0 17833 -cellosaurus:CVCL_RU10 CCMCL1 0 17834 -cellosaurus:CVCL_D879 CCO7 0 17835 -cellosaurus:CVCL_JE72 CCOC-T 0 17836 -cellosaurus:CVCL_6G39 CCRF-6 0 17837 -cellosaurus:CVCL_1860 CCRF-SB 0 17838 -cellosaurus:CVCL_0J30 CCS292 0 17839 -cellosaurus:CVCL_W955 CD 0 17840 -cellosaurus:CVCL_WJ29 CDS06 0 17841 -cellosaurus:CVCL_WJ30 CDS11 0 17842 -cellosaurus:CVCL_Y008 CE146T/VGH 0 17843 -cellosaurus:CVCL_Y009 CE48T/VGH 0 17844 -cellosaurus:CVCL_Y010 CE69T/VGH 0 17845 -cellosaurus:CVCL_VL83 CEB001 0 17846 -cellosaurus:CVCL_Y484 CEM 2cl 0 17847 -cellosaurus:CVCL_9489 CEMO-1 0 17848 -cellosaurus:CVCL_5720 CERV-186 0 17849 -cellosaurus:CVCL_5721 CERV-196 0 17850 -cellosaurus:CVCL_5722 CERV-215 0 17851 -cellosaurus:CVCL_Y433 CF [Human plasma cell myeloma] 0 17852 -cellosaurus:CVCL_4J65 CG-1 0 17853 -cellosaurus:CVCL_1K03 CG-SH 0 17854 -cellosaurus:CVCL_J445 CG1 [Human nasopharyngeal carcinoma] 0 17855 -cellosaurus:CVCL_A9AL CG2 0 17856 -cellosaurus:CVCL_A9AM CG3 0 17857 -cellosaurus:CVCL_VG71 CGBC 01 0 17858 -cellosaurus:CVCL_VG72 CGBC 02 0 17859 -cellosaurus:CVCL_3897 CGTH-W-2 0 17860 -cellosaurus:CVCL_3898 CGTH-W-3 0 17861 -cellosaurus:CVCL_M020 CH 8 0 17862 -cellosaurus:CVCL_M602 Ch-1 0 17863 -cellosaurus:CVCL_5724 CH-235MG 0 17864 -cellosaurus:CVCL_9921 ch-2879 0 17865 -cellosaurus:CVCL_A013 CH-3573 0 17866 -cellosaurus:CVCL_B392 Ch-Huang-1 0 17867 -cellosaurus:CVCL_W520 CH-N-1 0 17868 -cellosaurus:CVCL_V562 CH03 0 17869 -cellosaurus:CVCL_C159 CH22 0 17870 -cellosaurus:CVCL_7177 CH27 [Human lung carcinoma] 0 17871 -cellosaurus:CVCL_W889 CH34 0 17872 -cellosaurus:CVCL_V563 CH56 0 17873 -cellosaurus:CVCL_GZ61 CHA59 0 17874 -cellosaurus:CVCL_3899 CHCY-1 0 17875 -cellosaurus:CVCL_EP71 CHD-1 0 17876 -cellosaurus:CVCL_M652 Cheptage 0 17877 -cellosaurus:CVCL_Y271 CHEULL1F 0 17878 -cellosaurus:CVCL_ZU70 CHEV 0 17879 -cellosaurus:CVCL_B267 CHG-5 0 17880 -cellosaurus:CVCL_M272 CHGS 0 17881 -cellosaurus:CVCL_A061 CHI52 0 17882 -cellosaurus:CVCL_B044 CHLA-01-MED 0 17883 -cellosaurus:CVCL_N534 CHLA-01R-MED 0 17884 -cellosaurus:CVCL_B045 CHLA-02-ATRT 0 17885 -cellosaurus:CVCL_U616 CHLA-03-AA 0 17886 -cellosaurus:CVCL_0F38 CHLA-04-ATRT 0 17887 -cellosaurus:CVCL_AQ41 CHLA-05-ATRT 0 17888 -cellosaurus:CVCL_AQ42 CHLA-06-ATRT 0 17889 -cellosaurus:CVCL_AQ43 CHLA-07-BSGBM 0 17890 -cellosaurus:CVCL_6583 CHLA-10 0 17891 -cellosaurus:CVCL_6584 CHLA-101 0 17892 -cellosaurus:CVCL_6585 CHLA-103 0 17893 -cellosaurus:CVCL_6586 CHLA-108 0 17894 -cellosaurus:CVCL_AQ10 CHLA-11 0 17895 -cellosaurus:CVCL_A055 CHLA-119 0 17896 -cellosaurus:CVCL_AQ11 CHLA-12 0 17897 -cellosaurus:CVCL_A054 CHLA-122 0 17898 -cellosaurus:CVCL_A060 CHLA-123 0 17899 -cellosaurus:CVCL_6587 CHLA-124 0 17900 -cellosaurus:CVCL_6588 CHLA-132 0 17901 -cellosaurus:CVCL_6589 CHLA-134 0 17902 -cellosaurus:CVCL_6590 CHLA-136 0 17903 -cellosaurus:CVCL_6591 CHLA-138 0 17904 -cellosaurus:CVCL_6592 CHLA-140 0 17905 -cellosaurus:CVCL_6593 CHLA-143 0 17906 -cellosaurus:CVCL_AQ12 CHLA-144 0 17907 -cellosaurus:CVCL_AQ13 CHLA-145 0 17908 -cellosaurus:CVCL_6594 CHLA-15 0 17909 -cellosaurus:CVCL_A059 CHLA-150 0 17910 -cellosaurus:CVCL_AX41 CHLA-151 0 17911 -cellosaurus:CVCL_6595 CHLA-152 0 17912 -cellosaurus:CVCL_6596 CHLA-153 0 17913 -cellosaurus:CVCL_6597 CHLA-171 0 17914 -cellosaurus:CVCL_A056 CHLA-172 0 17915 -cellosaurus:CVCL_6598 CHLA-174 0 17916 -cellosaurus:CVCL_6599 CHLA-178 0 17917 -cellosaurus:CVCL_6600 CHLA-179 0 17918 -cellosaurus:CVCL_6601 CHLA-185 0 17919 -cellosaurus:CVCL_AQ34 CHLA-192 0 17920 -cellosaurus:CVCL_AQ35 CHLA-194 0 17921 -cellosaurus:CVCL_6602 CHLA-20 0 17922 -cellosaurus:CVCL_M147 CHLA-200 0 17923 -cellosaurus:CVCL_0B48 CHLA-218 0 17924 -cellosaurus:CVCL_B3TF CHLA-221 0 17925 -cellosaurus:CVCL_AQ37 CHLA-222 0 17926 -cellosaurus:CVCL_AQ38 CHLA-223 0 17927 -cellosaurus:CVCL_AQ39 CHLA-224 0 17928 -cellosaurus:CVCL_A057 CHLA-225 0 17929 -cellosaurus:CVCL_B3TG CHLA-233 0 17930 -cellosaurus:CVCL_AQ40 CHLA-246 0 17931 -cellosaurus:CVCL_AQ14 CHLA-247 0 17932 -cellosaurus:CVCL_M152 CHLA-25 0 17933 -cellosaurus:CVCL_AQ15 CHLA-253 0 17934 -cellosaurus:CVCL_AX48 CHLA-253h 0 17935 -cellosaurus:CVCL_A058 CHLA-258 0 17936 -cellosaurus:CVCL_M148 CHLA-259 0 17937 -cellosaurus:CVCL_M149 CHLA-266 0 17938 -cellosaurus:CVCL_M151 CHLA-32 0 17939 -cellosaurus:CVCL_6603 CHLA-42 0 17940 -cellosaurus:CVCL_6604 CHLA-51 0 17941 -cellosaurus:CVCL_6605 CHLA-52 0 17942 -cellosaurus:CVCL_AQ16 CHLA-53 0 17943 -cellosaurus:CVCL_6606 CHLA-54 0 17944 -cellosaurus:CVCL_0B49 CHLA-57 0 17945 -cellosaurus:CVCL_6607 CHLA-60 0 17946 -cellosaurus:CVCL_AQ17 CHLA-61 0 17947 -cellosaurus:CVCL_6608 CHLA-79 0 17948 -cellosaurus:CVCL_6609 CHLA-8 0 17949 -cellosaurus:CVCL_M150 CHLA-9 0 17950 -cellosaurus:CVCL_6610 CHLA-90 0 17951 -cellosaurus:CVCL_6611 CHLA-95 0 17952 -cellosaurus:CVCL_6612 CHLA-98 0 17953 -cellosaurus:CVCL_0B50 CHLA-99 0 17954 -cellosaurus:CVCL_M268 Cho-CK 0 17955 -cellosaurus:CVCL_M269 Choi-CK 0 17956 -cellosaurus:CVCL_AV04 Chor-IN-1 0 17957 -cellosaurus:CVCL_CW30 CHOS 0 17958 -cellosaurus:CVCL_1123 CHP-126 0 17959 -cellosaurus:CVCL_9506 CHP-126BL 0 17960 -cellosaurus:CVCL_1124 CHP-134 0 17961 -cellosaurus:CVCL_9507 CHP-166 0 17962 -cellosaurus:CVCL_1125 CHP-212 0 17963 -cellosaurus:CVCL_4359 CHP-234 0 17964 -cellosaurus:CVCL_5G79 CHP-404 0 17965 -cellosaurus:CVCL_6613 CHP-901 0 17966 -cellosaurus:CVCL_6616 CHP-903 0 17967 -cellosaurus:CVCL_A280 CHRF-288-11 0 17968 -cellosaurus:CVCL_X544 Chromphi-1 0 17969 -cellosaurus:CVCL_X545 Chromphi-2 0 17970 -cellosaurus:CVCL_X546 Chromphi-3 0 17971 -cellosaurus:CVCL_X547 Chromphi-4 0 17972 -cellosaurus:CVCL_X536 Chrompho-A 0 17973 -cellosaurus:CVCL_X537 Chrompho-B 0 17974 -cellosaurus:CVCL_X483 CHSA0011 0 17975 -cellosaurus:CVCL_X484 CHSA0108 0 17976 -cellosaurus:CVCL_X485 CHSA8926 0 17977 -cellosaurus:CVCL_U416 CHU-2 0 17978 -cellosaurus:CVCL_1861 Ci-1 0 17979 -cellosaurus:CVCL_V526 CI78-1 0 17980 -cellosaurus:CVCL_D286 CI79-36 0 17981 -cellosaurus:CVCL_D287 CI80-13A 0 17982 -cellosaurus:CVCL_D285 CI80-13S 0 17983 -cellosaurus:CVCL_D288 CI81-1 0 17984 -cellosaurus:CVCL_VP97 CIMA 62 0 17985 -cellosaurus:CVCL_VP98 CIMA 73 0 17986 -cellosaurus:CVCL_A8Q1 CIOV1 0 17987 -cellosaurus:CVCL_A8Q2 CIOV2 0 17988 -cellosaurus:CVCL_A8Q3 CIOV3 0 17989 -cellosaurus:CVCL_M711 CIPULLO 0 17990 -cellosaurus:CVCL_VP99 CIR 229 0 17991 -cellosaurus:CVCL_UI83 CJ 0 17992 -cellosaurus:CVCL_M708 CJ18 0 17993 -cellosaurus:CVCL_XE61 CJF 0 17994 -cellosaurus:CVCL_U797 CJM [Human melanoma] 0 17995 -cellosaurus:CVCL_4826 CKS 0 17996 -cellosaurus:CVCL_1978 CL-11 0 17997 -cellosaurus:CVCL_D331 CL-11m 0 17998 -cellosaurus:CVCL_1979 CL-14 0 17999 -cellosaurus:CVCL_D332 CL-19 0 18000 -cellosaurus:CVCL_D333 CL-21 0 18001 -cellosaurus:CVCL_D334 CL-23 0 18002 -cellosaurus:CVCL_D335 CL-30 0 18003 -cellosaurus:CVCL_1980 CL-34 0 18004 -cellosaurus:CVCL_D336 CL-36 0 18005 -cellosaurus:CVCL_V481 CL-39 0 18006 -cellosaurus:CVCL_1982 CL-40 0 18007 -cellosaurus:CVCL_D337 CL-9 0 18008 -cellosaurus:CVCL_Y428 CL100 0 18009 -cellosaurus:CVCL_N822 CL141 0 18010 -cellosaurus:CVCL_N823 CL152 0 18011 -cellosaurus:CVCL_N824 CL25 0 18012 -cellosaurus:CVCL_W145 CL3 [Human lung carcinoma] 0 18013 -cellosaurus:CVCL_N825 CL83 0 18014 -cellosaurus:CVCL_WY83 CL89-12117 0 18015 -cellosaurus:CVCL_WY84 CL89-17872 0 18016 -cellosaurus:CVCL_9517 CLB-Ba 0 18017 -cellosaurus:CVCL_9518 CLB-Bac 0 18018 -cellosaurus:CVCL_9519 CLB-Bar 0 18019 -cellosaurus:CVCL_GP62 CLB-BARrec 0 18020 -cellosaurus:CVCL_9520 CLB-Be 0 18021 -cellosaurus:CVCL_9521 CLB-Bel 0 18022 -cellosaurus:CVCL_9522 CLB-BerLud1 0 18023 -cellosaurus:CVCL_9523 CLB-BerLud2 0 18024 -cellosaurus:CVCL_9524 CLB-Bou 0 18025 -cellosaurus:CVCL_9525 CLB-Br 0 18026 -cellosaurus:CVCL_9526 CLB-Ca 0 18027 -cellosaurus:CVCL_9527 CLB-Chas 0 18028 -cellosaurus:CVCL_9528 CLB-Es 0 18029 -cellosaurus:CVCL_9529 CLB-Ga 0 18030 -cellosaurus:CVCL_9530 CLB-Ge1 0 18031 -cellosaurus:CVCL_9531 CLB-Ge2 0 18032 -cellosaurus:CVCL_EY24 CLB-Hut 0 18033 -cellosaurus:CVCL_9532 CLB-Ma1 0 18034 -cellosaurus:CVCL_9533 CLB-Ma2 0 18035 -cellosaurus:CVCL_9534 CLB-Pe 0 18036 -cellosaurus:CVCL_9535 CLB-Re 0 18037 -cellosaurus:CVCL_9536 CLB-Sedp 0 18038 -cellosaurus:CVCL_9537 CLB-Tr 0 18039 -cellosaurus:CVCL_9538 CLB-VolMo 0 18040 -cellosaurus:CVCL_RH12 CLC1 0 18041 -cellosaurus:CVCL_ZF73 CLC10 0 18042 -cellosaurus:CVCL_RH18 CLC11 0 18043 -cellosaurus:CVCL_ZF74 CLC12 0 18044 -cellosaurus:CVCL_RH19 CLC13 0 18045 -cellosaurus:CVCL_ZF75 CLC14 0 18046 -cellosaurus:CVCL_ZF76 CLC15 0 18047 -cellosaurus:CVCL_RH20 CLC16 0 18048 -cellosaurus:CVCL_ZF77 CLC17 0 18049 -cellosaurus:CVCL_ZF78 CLC18 0 18050 -cellosaurus:CVCL_ZF79 CLC19 0 18051 -cellosaurus:CVCL_RH13 CLC2 0 18052 -cellosaurus:CVCL_ZF80 CLC20 0 18053 -cellosaurus:CVCL_ZF81 CLC21 0 18054 -cellosaurus:CVCL_ZF82 CLC22 0 18055 -cellosaurus:CVCL_ZF83 CLC23 0 18056 -cellosaurus:CVCL_ZF84 CLC24 0 18057 -cellosaurus:CVCL_ZF85 CLC25 0 18058 -cellosaurus:CVCL_ZF86 CLC26 0 18059 -cellosaurus:CVCL_ZF87 CLC27 0 18060 -cellosaurus:CVCL_ZF88 CLC28 0 18061 -cellosaurus:CVCL_ZF89 CLC29 0 18062 -cellosaurus:CVCL_ZF90 CLC3 0 18063 -cellosaurus:CVCL_ZF91 CLC30 0 18064 -cellosaurus:CVCL_ZF92 CLC31 0 18065 -cellosaurus:CVCL_ZF93 CLC32 0 18066 -cellosaurus:CVCL_ZF94 CLC33 0 18067 -cellosaurus:CVCL_ZF95 CLC34 0 18068 -cellosaurus:CVCL_ZF96 CLC35 0 18069 -cellosaurus:CVCL_ZF97 CLC36 0 18070 -cellosaurus:CVCL_ZF98 CLC37 0 18071 -cellosaurus:CVCL_ZF99 CLC38 0 18072 -cellosaurus:CVCL_ZG00 CLC39 0 18073 -cellosaurus:CVCL_RH14 CLC4 0 18074 -cellosaurus:CVCL_ZG01 CLC40 0 18075 -cellosaurus:CVCL_ZG02 CLC41 0 18076 -cellosaurus:CVCL_ZG03 CLC42 0 18077 -cellosaurus:CVCL_ZG04 CLC43 0 18078 -cellosaurus:CVCL_ZG05 CLC44 0 18079 -cellosaurus:CVCL_ZG06 CLC45 0 18080 -cellosaurus:CVCL_ZG07 CLC46 0 18081 -cellosaurus:CVCL_ZG08 CLC47 0 18082 -cellosaurus:CVCL_ZG09 CLC48 0 18083 -cellosaurus:CVCL_ZG10 CLC49 0 18084 -cellosaurus:CVCL_RH15 CLC5 0 18085 -cellosaurus:CVCL_ZG11 CLC50 0 18086 -cellosaurus:CVCL_RH16 CLC6 0 18087 -cellosaurus:CVCL_RH17 CLC7 0 18088 -cellosaurus:CVCL_ZG12 CLC8 0 18089 -cellosaurus:CVCL_ZG13 CLC9 0 18090 -cellosaurus:CVCL_X548 ClearCa-1 0 18091 -cellosaurus:CVCL_X549 ClearCa-10 0 18092 -cellosaurus:CVCL_X550 ClearCa-11 0 18093 -cellosaurus:CVCL_X551 ClearCa-12 0 18094 -cellosaurus:CVCL_X552 ClearCa-13 0 18095 -cellosaurus:CVCL_X553 ClearCa-14 0 18096 -cellosaurus:CVCL_X554 ClearCa-15 0 18097 -cellosaurus:CVCL_X555 ClearCa-16 0 18098 -cellosaurus:CVCL_X556 ClearCa-17 0 18099 -cellosaurus:CVCL_X557 ClearCa-18 0 18100 -cellosaurus:CVCL_X558 ClearCa-19 0 18101 -cellosaurus:CVCL_X559 ClearCa-2 0 18102 -cellosaurus:CVCL_X560 ClearCa-20 0 18103 -cellosaurus:CVCL_X561 ClearCa-21 0 18104 -cellosaurus:CVCL_X562 ClearCa-22 0 18105 -cellosaurus:CVCL_X563 ClearCa-23 0 18106 -cellosaurus:CVCL_X564 ClearCa-24 0 18107 -cellosaurus:CVCL_X565 ClearCa-25 0 18108 -cellosaurus:CVCL_X566 ClearCa-26 0 18109 -cellosaurus:CVCL_X567 ClearCa-27 0 18110 -cellosaurus:CVCL_X579 ClearCa-28 0 18111 -cellosaurus:CVCL_X581 ClearCa-29 0 18112 -cellosaurus:CVCL_X568 ClearCa-3 0 18113 -cellosaurus:CVCL_X569 ClearCa-31 0 18114 -cellosaurus:CVCL_X570 ClearCa-32 0 18115 -cellosaurus:CVCL_RJ66 ClearCa-33 0 18116 -cellosaurus:CVCL_X571 ClearCa-35 0 18117 -cellosaurus:CVCL_X572 ClearCa-36 0 18118 -cellosaurus:CVCL_X580 ClearCa-39 0 18119 -cellosaurus:CVCL_X573 ClearCa-4 0 18120 -cellosaurus:CVCL_RJ67 ClearCa-43 0 18121 -cellosaurus:CVCL_X574 ClearCa-5 0 18122 -cellosaurus:CVCL_X575 ClearCa-6 0 18123 -cellosaurus:CVCL_X576 ClearCa-7 0 18124 -cellosaurus:CVCL_X577 ClearCa-8 0 18125 -cellosaurus:CVCL_X578 ClearCa-9 0 18126 -cellosaurus:CVCL_RS38 CLF-PED-015-T 0 18127 -cellosaurus:CVCL_CY99 CLL-AAT 0 18128 -cellosaurus:CVCL_5727 CLS-145 0 18129 -cellosaurus:CVCL_5971 CLS-354 0 18130 -cellosaurus:CVCL_5982 CLS-439 0 18131 -cellosaurus:CVCL_5728 CLS-54 0 18132 -cellosaurus:CVCL_IQ58 CLY 0 18133 -cellosaurus:CVCL_H246 CM 0 18134 -cellosaurus:CVCL_VE09 CM-AS16 0 18135 -cellosaurus:CVCL_M592 CM2005.1 0 18136 -cellosaurus:CVCL_M484 CMA-01 0 18137 -cellosaurus:CVCL_M485 CMA-02 0 18138 -cellosaurus:CVCL_S716 CMBS-BS 0 18139 -cellosaurus:CVCL_0I25 CMCSCC-1 0 18140 -cellosaurus:CVCL_U910 CMel 136 0 18141 -cellosaurus:CVCL_X930 CML-C-1 0 18142 -cellosaurus:CVCL_1126 CML-T1 0 18143 -cellosaurus:CVCL_H248 CMS 0 18144 -cellosaurus:CVCL_A602 CMY 0 18145 -cellosaurus:CVCL_7037 CN-Mel 0 18146 -cellosaurus:CVCL_M598 CNE-3 0 18147 -cellosaurus:CVCL_UT97 CNIO AA 0 18148 -cellosaurus:CVCL_UU15 CNIO AB 0 18149 -cellosaurus:CVCL_UU16 CNIO AC 0 18150 -cellosaurus:CVCL_UU17 CNIO AD 0 18151 -cellosaurus:CVCL_UU18 CNIO AE 0 18152 -cellosaurus:CVCL_UU19 CNIO AF 0 18153 -cellosaurus:CVCL_UU20 CNIO AG 0 18154 -cellosaurus:CVCL_UU21 CNIO AH 0 18155 -cellosaurus:CVCL_UU22 CNIO AI 0 18156 -cellosaurus:CVCL_UU23 CNIO AJ 0 18157 -cellosaurus:CVCL_UU24 CNIO AK 0 18158 -cellosaurus:CVCL_UU25 CNIO AL 0 18159 -cellosaurus:CVCL_UU26 CNIO AM 0 18160 -cellosaurus:CVCL_UU27 CNIO AN 0 18161 -cellosaurus:CVCL_UU28 CNIO AO 0 18162 -cellosaurus:CVCL_UU29 CNIO AP 0 18163 -cellosaurus:CVCL_UU30 CNIO AQ 0 18164 -cellosaurus:CVCL_UU31 CNIO AR 0 18165 -cellosaurus:CVCL_UU32 CNIO AS 0 18166 -cellosaurus:CVCL_UU33 CNIO AT 0 18167 -cellosaurus:CVCL_UU34 CNIO AU 0 18168 -cellosaurus:CVCL_UU35 CNIO AV 0 18169 -cellosaurus:CVCL_UT98 CNIO AW 0 18170 -cellosaurus:CVCL_UT99 CNIO AX 0 18171 -cellosaurus:CVCL_UU00 CNIO AY 0 18172 -cellosaurus:CVCL_UU01 CNIO AZ 0 18173 -cellosaurus:CVCL_UU36 CNIO BA 0 18174 -cellosaurus:CVCL_UU02 CNIO BB 0 18175 -cellosaurus:CVCL_UU03 CNIO BC 0 18176 -cellosaurus:CVCL_UU37 CNIO BD 0 18177 -cellosaurus:CVCL_UU38 CNIO BE 0 18178 -cellosaurus:CVCL_UU04 CNIO BF 0 18179 -cellosaurus:CVCL_UU05 CNIO BG 0 18180 -cellosaurus:CVCL_UU39 CNIO BH 0 18181 -cellosaurus:CVCL_UU06 CNIO BI 0 18182 -cellosaurus:CVCL_UU07 CNIO BJ 0 18183 -cellosaurus:CVCL_UU08 CNIO BK 0 18184 -cellosaurus:CVCL_UU40 CNIO BL 0 18185 -cellosaurus:CVCL_UU09 CNIO BM 0 18186 -cellosaurus:CVCL_UU10 CNIO BN 0 18187 -cellosaurus:CVCL_UU41 CNIO BO 0 18188 -cellosaurus:CVCL_UU11 CNIO BP 0 18189 -cellosaurus:CVCL_UU42 CNIO BQ 0 18190 -cellosaurus:CVCL_UU43 CNIO BR 0 18191 -cellosaurus:CVCL_UU44 CNIO BT 0 18192 -cellosaurus:CVCL_UU45 CNIO BU 0 18193 -cellosaurus:CVCL_UU46 CNIO BV 0 18194 -cellosaurus:CVCL_UU47 CNIO BW 0 18195 -cellosaurus:CVCL_UU48 CNIO BX 0 18196 -cellosaurus:CVCL_UU49 CNIO BY 0 18197 -cellosaurus:CVCL_UU50 CNIO BZ 0 18198 -cellosaurus:CVCL_UU51 CNIO CB 0 18199 -cellosaurus:CVCL_UU52 CNIO CC 0 18200 -cellosaurus:CVCL_UU53 CNIO CD 0 18201 -cellosaurus:CVCL_UU12 CNIO CE 0 18202 -cellosaurus:CVCL_UU54 CNIO CF 0 18203 -cellosaurus:CVCL_UU55 CNIO CG 0 18204 -cellosaurus:CVCL_UU57 CNIO CL 0 18205 -cellosaurus:CVCL_UU59 CNIO CP 0 18206 -cellosaurus:CVCL_UU60 CNIO CQ 0 18207 -cellosaurus:CVCL_V650 CNLBC1 0 18208 -cellosaurus:CVCL_S890 CNUH-HNSCC-1 0 18209 -cellosaurus:CVCL_D102 Co-115 0 18210 -cellosaurus:CVCL_W157 CO-MZ-1 0 18211 -cellosaurus:CVCL_W158 CO-MZ-2 0 18212 -cellosaurus:CVCL_W159 CO-MZ-4 0 18213 -cellosaurus:CVCL_F745 CO-MZ-5 0 18214 -cellosaurus:CVCL_F746 CO-MZ-6 0 18215 -cellosaurus:CVCL_D109 Co108 0 18216 -cellosaurus:CVCL_VK05 Co53 0 18217 -cellosaurus:CVCL_D110 Co74 0 18218 -cellosaurus:CVCL_D111 Co79 0 18219 -cellosaurus:CVCL_D112 Co82 0 18220 -cellosaurus:CVCL_D113 Co84 0 18221 -cellosaurus:CVCL_D114 Co92 0 18222 -cellosaurus:CVCL_D115 Co94 0 18223 -cellosaurus:CVCL_9T89 CO95 0 18224 -cellosaurus:CVCL_1127 CoCM-1 0 18225 -cellosaurus:CVCL_RS25 COG-AR-359 0 18226 -cellosaurus:CVCL_RS26 COG-AR-382 0 18227 -cellosaurus:CVCL_M153 COG-E-352 0 18228 -cellosaurus:CVCL_M159 COG-LL-317 0 18229 -cellosaurus:CVCL_M160 COG-LL-317h 0 18230 -cellosaurus:CVCL_B3TH COG-LL-319 0 18231 -cellosaurus:CVCL_M161 COG-LL-319h 0 18232 -cellosaurus:CVCL_B3TI COG-LL-329 0 18233 -cellosaurus:CVCL_M162 COG-LL-329h 0 18234 -cellosaurus:CVCL_B3TJ COG-LL-332 0 18235 -cellosaurus:CVCL_M163 COG-LL-332h 0 18236 -cellosaurus:CVCL_B3TK COG-LL-355 0 18237 -cellosaurus:CVCL_M164 COG-LL-355h 0 18238 -cellosaurus:CVCL_B3TL COG-LL-356 0 18239 -cellosaurus:CVCL_M165 COG-LL-356h 0 18240 -cellosaurus:CVCL_M166 COG-LL-384h 0 18241 -cellosaurus:CVCL_AQ49 COG-LL-402h 0 18242 -cellosaurus:CVCL_B3TE COG-LY-457 0 18243 -cellosaurus:CVCL_B3TD COG-LY-458 0 18244 -cellosaurus:CVCL_B3TC COG-LY-459 0 18245 -cellosaurus:CVCL_B3TB COG-LY-460 0 18246 -cellosaurus:CVCL_AX66 COG-N-253 0 18247 -cellosaurus:CVCL_AX54 COG-N-261h 0 18248 -cellosaurus:CVCL_AX46 COG-N-263 0 18249 -cellosaurus:CVCL_AX55 COG-N-265 0 18250 -cellosaurus:CVCL_AX56 COG-N-276h 0 18251 -cellosaurus:CVCL_AX49 COG-N-278 0 18252 -cellosaurus:CVCL_AX45 COG-N-289 0 18253 -cellosaurus:CVCL_AQ18 COG-N-291 0 18254 -cellosaurus:CVCL_AX67 COG-N-294 0 18255 -cellosaurus:CVCL_AX43 COG-N-295 0 18256 -cellosaurus:CVCL_AX57 COG-N-297 0 18257 -cellosaurus:CVCL_AX58 COG-N-299 0 18258 -cellosaurus:CVCL_AX42 COG-N-305 0 18259 -cellosaurus:CVCL_AQ19 COG-N-316 0 18260 -cellosaurus:CVCL_AX44 COG-N-318 0 18261 -cellosaurus:CVCL_AQ20 COG-N-321 0 18262 -cellosaurus:CVCL_AX59 COG-N-324 0 18263 -cellosaurus:CVCL_AX47 COG-N-327h 0 18264 -cellosaurus:CVCL_AX60 COG-N-328h 0 18265 -cellosaurus:CVCL_AX61 COG-N-331 0 18266 -cellosaurus:CVCL_AX62 COG-N-334 0 18267 -cellosaurus:CVCL_AX63 COG-N-346h 0 18268 -cellosaurus:CVCL_AQ21 COG-N-347 0 18269 -cellosaurus:CVCL_AX50 COG-N-349 0 18270 -cellosaurus:CVCL_AX64 COG-N-354 0 18271 -cellosaurus:CVCL_AX65 COG-N-354h 0 18272 -cellosaurus:CVCL_AX51 COG-N-367h 0 18273 -cellosaurus:CVCL_AX52 COG-N-386h 0 18274 -cellosaurus:CVCL_AX53 COG-N-387h 0 18275 -cellosaurus:CVCL_AQ22 COG-N-399 0 18276 -cellosaurus:CVCL_AQ23 COG-N-415 0 18277 -cellosaurus:CVCL_AQ24 COG-N-421 0 18278 -cellosaurus:CVCL_LF58 COG-N-426 0 18279 -cellosaurus:CVCL_AQ25 COG-N-440 0 18280 -cellosaurus:CVCL_VS96 COG-N-452 0 18281 -cellosaurus:CVCL_LF59 COG-N-453 0 18282 -cellosaurus:CVCL_LF60 COG-N-471nb 0 18283 -cellosaurus:CVCL_LF61 COG-N-496 0 18284 -cellosaurus:CVCL_LF62 COG-N-519 0 18285 -cellosaurus:CVCL_LF63 COG-N-534 0 18286 -cellosaurus:CVCL_LF64 COG-N-549 0 18287 -cellosaurus:CVCL_LF65 COG-N-557nb 0 18288 -cellosaurus:CVCL_LF66 COG-N-561 0 18289 -cellosaurus:CVCL_LF67 COG-N-573 0 18290 -cellosaurus:CVCL_A072 COGA-10 0 18291 -cellosaurus:CVCL_A073 COGA-12 0 18292 -cellosaurus:CVCL_Z584 COGA-13 0 18293 -cellosaurus:CVCL_A074 COGA-2 0 18294 -cellosaurus:CVCL_A075 COGA-3 0 18295 -cellosaurus:CVCL_A076 COGA-5 0 18296 -cellosaurus:CVCL_A077 COGA-5L 0 18297 -cellosaurus:CVCL_A078 COGA-8 0 18298 -cellosaurus:CVCL_WV04 COH [Human colon adenocarcinoma] 0 18299 -cellosaurus:CVCL_U564 COH [Human Ewing sarcoma] 0 18300 -cellosaurus:CVCL_C1GL COH-DHL1 0 18301 -cellosaurus:CVCL_C1GM COH-THL1 0 18302 -cellosaurus:CVCL_FA09 COL [Human neuroblastoma] 0 18303 -cellosaurus:CVCL_A6IS COL [Human plasma cell myeloma] 0 18304 -cellosaurus:CVCL_D645 Col 2 0 18305 -cellosaurus:CVCL_W467 COLM-6 0 18306 -cellosaurus:CVCL_X381 COLO 103 0 18307 -cellosaurus:CVCL_5450 COLO 110 0 18308 -cellosaurus:CVCL_D607 COLO 16 0 18309 -cellosaurus:CVCL_WH78 COLO 229 0 18310 -cellosaurus:CVCL_L279 COLO 232 0 18311 -cellosaurus:CVCL_9975 COLO 239F 0 18312 -cellosaurus:CVCL_A1BQ COLO 251 0 18313 -cellosaurus:CVCL_X397 COLO 293 0 18314 -cellosaurus:CVCL_X382 COLO 297F 0 18315 -cellosaurus:CVCL_X388 COLO 298 0 18316 -cellosaurus:CVCL_5452 COLO 319 0 18317 -cellosaurus:CVCL_K030 COLO 321 0 18318 -cellosaurus:CVCL_X383 COLO 324 0 18319 -cellosaurus:CVCL_5453 COLO 330 0 18320 -cellosaurus:CVCL_X394 COLO 338 0 18321 -cellosaurus:CVCL_X404 COLO 346 0 18322 -cellosaurus:CVCL_X385 COLO 349 0 18323 -cellosaurus:CVCL_X392 COLO 353 0 18324 -cellosaurus:CVCL_X389 COLO 368 0 18325 -cellosaurus:CVCL_X384 COLO 381 0 18326 -cellosaurus:CVCL_6976 COLO 394 0 18327 -cellosaurus:CVCL_X398 COLO 397 0 18328 -cellosaurus:CVCL_X386 COLO 415 0 18329 -cellosaurus:CVCL_X387 COLO 417 0 18330 -cellosaurus:CVCL_X399 COLO 463 0 18331 -cellosaurus:CVCL_X402 COLO 508 0 18332 -cellosaurus:CVCL_X395 COLO 509 0 18333 -cellosaurus:CVCL_X401 COLO 510 0 18334 -cellosaurus:CVCL_X396 COLO 511 0 18335 -cellosaurus:CVCL_X378 COLO 52 0 18336 -cellosaurus:CVCL_X390 COLO 525 0 18337 -cellosaurus:CVCL_X400 COLO 526 0 18338 -cellosaurus:CVCL_X391 COLO 527 0 18339 -cellosaurus:CVCL_X379 COLO 53 0 18340 -cellosaurus:CVCL_X393 COLO 534 0 18341 -cellosaurus:CVCL_X380 COLO 55 0 18342 -cellosaurus:CVCL_A1CX COLO 591 0 18343 -cellosaurus:CVCL_4572 COLO 60H 0 18344 -cellosaurus:CVCL_A1BS COLO 660 0 18345 -cellosaurus:CVCL_A430 COLO 667 0 18346 -cellosaurus:CVCL_1128 COLO 668 0 18347 -cellosaurus:CVCL_1129 COLO 678 0 18348 -cellosaurus:CVCL_1131 COLO 680N 0 18349 -cellosaurus:CVCL_1132 COLO 684 0 18350 -cellosaurus:CVCL_1991 COLO 685 0 18351 -cellosaurus:CVCL_1992 COLO 699 0 18352 -cellosaurus:CVCL_1993 COLO 699N 0 18353 -cellosaurus:CVCL_A1BU COLO 716 0 18354 -cellosaurus:CVCL_A1CW COLO 719 0 18355 -cellosaurus:CVCL_1995 COLO 720E 0 18356 -cellosaurus:CVCL_A1FU COLO 736 0 18357 -cellosaurus:CVCL_2407 COLO 738 0 18358 -cellosaurus:CVCL_1133 COLO 741 0 18359 -cellosaurus:CVCL_A1BT COLO 742 0 18360 -cellosaurus:CVCL_1997 COLO 783 0 18361 -cellosaurus:CVCL_1134 COLO 792 0 18362 -cellosaurus:CVCL_2408 COLO 794 0 18363 -cellosaurus:CVCL_1136 COLO 824 0 18364 -cellosaurus:CVCL_L503 COLO 831 0 18365 -cellosaurus:CVCL_2000 COLO 832 0 18366 -cellosaurus:CVCL_L504 COLO 833 0 18367 -cellosaurus:CVCL_L505 COLO 834 0 18368 -cellosaurus:CVCL_L506 COLO 835 0 18369 -cellosaurus:CVCL_L507 COLO 838 0 18370 -cellosaurus:CVCL_L508 COLO 845 0 18371 -cellosaurus:CVCL_L509 COLO 848 0 18372 -cellosaurus:CVCL_2002 COLO 849 0 18373 -cellosaurus:CVCL_2003 COLO 853 0 18374 -cellosaurus:CVCL_2004 COLO 857 0 18375 -cellosaurus:CVCL_2005 COLO 858 0 18376 -cellosaurus:CVCL_X377 COLO 93 0 18377 -cellosaurus:CVCL_4573 COLO 94H 0 18378 -cellosaurus:CVCL_M813 COMA 0 18379 -cellosaurus:CVCL_A1YL COMI 0 18380 -cellosaurus:CVCL_XI61 COMM-1 0 18381 -cellosaurus:CVCL_VQ00 CON 242 0 18382 -cellosaurus:CVCL_VP95 COPA 159 0 18383 -cellosaurus:CVCL_D744 COR-L103 0 18384 -cellosaurus:CVCL_1138 COR-L105 0 18385 -cellosaurus:CVCL_2409 COR-L24 0 18386 -cellosaurus:CVCL_2410 COR-L26 0 18387 -cellosaurus:CVCL_D745 COR-L266 0 18388 -cellosaurus:CVCL_D733 COR-L27 0 18389 -cellosaurus:CVCL_1140 COR-L279 0 18390 -cellosaurus:CVCL_7215 COR-L283R 0 18391 -cellosaurus:CVCL_D734 COR-L30 0 18392 -cellosaurus:CVCL_2411 COR-L303 0 18393 -cellosaurus:CVCL_D735 COR-L31 0 18394 -cellosaurus:CVCL_2412 COR-L311 0 18395 -cellosaurus:CVCL_2413 COR-L32 0 18396 -cellosaurus:CVCL_2414 COR-L321 0 18397 -cellosaurus:CVCL_D736 COR-L41 0 18398 -cellosaurus:CVCL_D737 COR-L42 0 18399 -cellosaurus:CVCL_2415 COR-L47 0 18400 -cellosaurus:CVCL_2416 COR-L51 0 18401 -cellosaurus:CVCL_D738 COR-L54 0 18402 -cellosaurus:CVCL_D739 COR-L59 0 18403 -cellosaurus:CVCL_2417 COR-L64 0 18404 -cellosaurus:CVCL_D740 COR-L65 0 18405 -cellosaurus:CVCL_D741 COR-L71 0 18406 -cellosaurus:CVCL_D742 COR-L80 0 18407 -cellosaurus:CVCL_D743 COR-L84 0 18408 -cellosaurus:CVCL_1141 COR-L88 0 18409 -cellosaurus:CVCL_2418 COR-L95 0 18410 -cellosaurus:CVCL_1142 COR-L96-CAR 0 18411 -cellosaurus:CVCL_A8S2 COS-33 0 18412 -cellosaurus:CVCL_9491 COST 0 18413 -cellosaurus:CVCL_1K09 Cou-L 0 18414 -cellosaurus:CVCL_1K08 Cou-L3 0 18415 -cellosaurus:CVCL_1K07 Cou-LS 0 18416 -cellosaurus:CVCL_2419 COV318 0 18417 -cellosaurus:CVCL_2422 COV413A 0 18418 -cellosaurus:CVCL_2010 COV434 0 18419 -cellosaurus:CVCL_2424 COV504 0 18420 -cellosaurus:CVCL_2425 COV644 0 18421 -cellosaurus:CVCL_1143 CP50-MEL-B 0 18422 -cellosaurus:CVCL_1144 CP66-MEL 0 18423 -cellosaurus:CVCL_1145 CP67-MEL 0 18424 -cellosaurus:CVCL_X017 CPA-Yang2 0 18425 -cellosaurus:CVCL_ZX76 CPA-Yang5 0 18426 -cellosaurus:CVCL_ZX75 CPA-Yang6 0 18427 -cellosaurus:CVCL_F922 CPC-2 0 18428 -cellosaurus:CVCL_1146 CPC-N 0 18429 -cellosaurus:CVCL_8180 CPH-54A 0 18430 -cellosaurus:CVCL_8181 CPH-54B 0 18431 -cellosaurus:CVCL_V633 CPL0903 0 18432 -cellosaurus:CVCL_YJ11 CPP19 0 18433 -cellosaurus:CVCL_YJ12 CPP24 0 18434 -cellosaurus:CVCL_YJ13 CPP25 0 18435 -cellosaurus:CVCL_YJ14 CPP30 0 18436 -cellosaurus:CVCL_YJ15 CPP44 0 18437 -cellosaurus:CVCL_YJ16 CPP45 0 18438 -cellosaurus:CVCL_7038 CR-Mel 0 18439 -cellosaurus:CVCL_X142 CR4 [Human colon carcinoma] 0 18440 -cellosaurus:CVCL_6893 CRBM-1990 0 18441 -cellosaurus:CVCL_M593 CRMM-1 0 18442 -cellosaurus:CVCL_M594 CRMM-2 0 18443 -cellosaurus:CVCL_C414 CRO-AP1 0 18444 -cellosaurus:CVCL_1147 CRO-AP2 0 18445 -cellosaurus:CVCL_1810 CRO-AP3 0 18446 -cellosaurus:CVCL_1148 CRO-AP5 0 18447 -cellosaurus:CVCL_1811 CRO-AP6 0 18448 -cellosaurus:CVCL_T023 CS-1 [Human chondrosarcoma] 0 18449 -cellosaurus:CVCL_T022 CS-1 [Human leukemia] 0 18450 -cellosaurus:CVCL_U142 CS-99 0 18451 -cellosaurus:CVCL_W808 CS-C1 0 18452 -cellosaurus:CVCL_D043 CS-OKB 0 18453 -cellosaurus:CVCL_A7NP CS-R 0 18454 -cellosaurus:CVCL_W809 CS-S1 0 18455 -cellosaurus:CVCL_W810 CS-S2 0 18456 -cellosaurus:CVCL_W811 CS-S3 0 18457 -cellosaurus:CVCL_C1GK CS-THL1 0 18458 -cellosaurus:CVCL_DF76 CSCC-1 0 18459 -cellosaurus:CVCL_DF77 CSCC-7 0 18460 -cellosaurus:CVCL_E309 CSEC [Human] 0 18461 -cellosaurus:CVCL_ZL35 CSEC216 0 18462 -cellosaurus:CVCL_L039 CSOC 882 0 18463 -cellosaurus:CVCL_XE56 CSQT-1 0 18464 -cellosaurus:CVCL_M183 CSQT-2 0 18465 -cellosaurus:CVCL_XI62 CSRCC01 0 18466 -cellosaurus:CVCL_N821 CT-TC 0 18467 -cellosaurus:CVCL_C1I4 CT305X1 0 18468 -cellosaurus:CVCL_C1I5 CT306X1 0 18469 -cellosaurus:CVCL_C1I6 CT307X1 0 18470 -cellosaurus:CVCL_C1I7 CT310X6 0 18471 -cellosaurus:CVCL_C1I8 CT314X6 0 18472 -cellosaurus:CVCL_C1I9 CT316X5 0 18473 -cellosaurus:CVCL_C1IA CT320 0 18474 -cellosaurus:CVCL_C1IB CT320X6 0 18475 -cellosaurus:CVCL_C1IC CT329 0 18476 -cellosaurus:CVCL_C1ID CT329X12 0 18477 -cellosaurus:CVCL_C1IE CT339X 0 18478 -cellosaurus:CVCL_C1IF CT343 0 18479 -cellosaurus:CVCL_1149 CTB-1 0 18480 -cellosaurus:CVCL_YI80 CTC-3 0 18481 -cellosaurus:CVCL_0I26 CTC-MCC-41 0 18482 -cellosaurus:CVCL_YJ17 CTC41 0 18483 -cellosaurus:CVCL_YJ18 CTC44 0 18484 -cellosaurus:CVCL_YJ19 CTC45 0 18485 -cellosaurus:CVCL_VT59 CTCC-1 0 18486 -cellosaurus:CVCL_B7GI CTCL-2 0 18487 -cellosaurus:CVCL_VJ59 CTO11-NS 0 18488 -cellosaurus:CVCL_VJ60 CTO12-NS 0 18489 -cellosaurus:CVCL_VJ61 CTO15-AC 0 18490 -cellosaurus:CVCL_VJ62 CTO15-NS 0 18491 -cellosaurus:CVCL_VJ63 CTO16-AC 0 18492 -cellosaurus:CVCL_VJ64 CTO20-AC 0 18493 -cellosaurus:CVCL_VJ65 CTO21-AC 0 18494 -cellosaurus:CVCL_VJ66 CTO22-NS 0 18495 -cellosaurus:CVCL_VJ67 CTO3-AC 0 18496 -cellosaurus:CVCL_VJ68 CTO3-NS 0 18497 -cellosaurus:CVCL_A431 CTS 0 18498 -cellosaurus:CVCL_W664 CTSC-1 0 18499 -cellosaurus:CVCL_XB88 CTSC-2 0 18500 -cellosaurus:CVCL_XB89 CTSC-3 0 18501 -cellosaurus:CVCL_A9WH CTSC#1.1 0 18502 -cellosaurus:CVCL_A9WI CTSC#1.2 0 18503 -cellosaurus:CVCL_A9WJ CTSC#18 0 18504 -cellosaurus:CVCL_A9WM CTSC#383 0 18505 -cellosaurus:CVCL_A9WN CTSC#389 0 18506 -cellosaurus:CVCL_A9WP CTSC#393 0 18507 -cellosaurus:CVCL_A9WQ CTSC#398 0 18508 -cellosaurus:CVCL_A9WR CTSC#416 0 18509 -cellosaurus:CVCL_A9WS CTSC#417 0 18510 -cellosaurus:CVCL_A9WT CTSC#430 0 18511 -cellosaurus:CVCL_A9WU CTSC#432 0 18512 -cellosaurus:CVCL_A9WV CTSC#438 0 18513 -cellosaurus:CVCL_A9WW CTSC#446 0 18514 -cellosaurus:CVCL_A9WX CTSC#482 0 18515 -cellosaurus:CVCL_A9WY CTSC#510 0 18516 -cellosaurus:CVCL_A9WZ CTSC#553 0 18517 -cellosaurus:CVCL_A9WL CTSC#85 0 18518 -cellosaurus:CVCL_A9WK CTSC#CRO 0 18519 -cellosaurus:CVCL_RX77 CTV-2 0 18520 -cellosaurus:CVCL_RQ00 CU-ACC1 0 18521 -cellosaurus:CVCL_RQ01 CU-ACC2 0 18522 -cellosaurus:CVCL_RV35 CUMC-2 0 18523 -cellosaurus:CVCL_7950 CUMC-3 0 18524 -cellosaurus:CVCL_7951 CUMC-6 0 18525 -cellosaurus:CVCL_S913 CUME-1 0 18526 -cellosaurus:CVCL_W917 CUTC48 0 18527 -cellosaurus:CVCL_W916 CUTC5 0 18528 -cellosaurus:CVCL_VM61 CUTC60 0 18529 -cellosaurus:CVCL_VM62 CUTC61 0 18530 -cellosaurus:CVCL_4966 CUTLL1 0 18531 -cellosaurus:CVCL_UJ34 CUTO-2 0 18532 -cellosaurus:CVCL_UJ35 CUTO-3.29 0 18533 -cellosaurus:CVCL_VJ69 CV10-AC 0 18534 -cellosaurus:CVCL_VJ70 CV13-NS 0 18535 -cellosaurus:CVCL_VJ71 CV2-AC 0 18536 -cellosaurus:CVCL_VJ72 CV21-AC 0 18537 -cellosaurus:CVCL_VJ73 CV21-NS 0 18538 -cellosaurus:CVCL_VJ74 CV6-AC 0 18539 -cellosaurus:CVCL_VJ75 CV8-AC 0 18540 -cellosaurus:CVCL_VJ76 CV9-AC 0 18541 -cellosaurus:CVCL_VL95 CVG-1 0 18542 -cellosaurus:CVCL_1151 CW-2 0 18543 -cellosaurus:CVCL_7952 CW12 0 18544 -cellosaurus:CVCL_IU54 CW678 0 18545 -cellosaurus:CVCL_N820 CW9019 0 18546 -cellosaurus:CVCL_4741 CWR21 0 18547 -cellosaurus:CVCL_4740 CWR31 0 18548 -cellosaurus:CVCL_4739 CWR91 0 18549 -cellosaurus:CVCL_RQ40 CX-03 0 18550 -cellosaurus:CVCL_4574 CX-2 0 18551 -cellosaurus:CVCL_A1SD CY-6 0 18552 -cellosaurus:CVCL_M489 CZ-1 0 18553 -cellosaurus:CVCL_A1TW CZ2 0 18554 -cellosaurus:CVCL_5G62 D-18MG 0 18555 -cellosaurus:CVCL_1152 D-245MG 0 18556 -cellosaurus:CVCL_1153 D-247MG 0 18557 -cellosaurus:CVCL_5G57 D-259MG 0 18558 -cellosaurus:CVCL_1154 D-263MG 0 18559 -cellosaurus:CVCL_S751 D-270MG 0 18560 -cellosaurus:CVCL_1156 D-336MG 0 18561 -cellosaurus:CVCL_5734 D-37MG 0 18562 -cellosaurus:CVCL_1158 D-392MG 0 18563 -cellosaurus:CVCL_1159 D-397MG 0 18564 -cellosaurus:CVCL_1160 D-423MG 0 18565 -cellosaurus:CVCL_DG16 D-431 0 18566 -cellosaurus:CVCL_1162 D-502MG 0 18567 -cellosaurus:CVCL_1163 D-538MG 0 18568 -cellosaurus:CVCL_1164 D-542MG 0 18569 -cellosaurus:CVCL_1166 D-566MG 0 18570 -cellosaurus:CVCL_5736 D-65MG 0 18571 -cellosaurus:CVCL_W336 D-PTC 0 18572 -cellosaurus:CVCL_S635 D-RHA1 0 18573 -cellosaurus:CVCL_DH62 D01 0 18574 -cellosaurus:CVCL_DH63 D03 0 18575 -cellosaurus:CVCL_H604 D04 0 18576 -cellosaurus:CVCL_H607 D05 0 18577 -cellosaurus:CVCL_H608 D08 0 18578 -cellosaurus:CVCL_H945 D10 0 18579 -cellosaurus:CVCL_U102 D1008L 0 18580 -cellosaurus:CVCL_H946 D11 0 18581 -cellosaurus:CVCL_B4KM D11-M2 0 18582 -cellosaurus:CVCL_B4KN D11-M3 0 18583 -cellosaurus:CVCL_Y039 D13 0 18584 -cellosaurus:CVCL_H944 D14 0 18585 -cellosaurus:CVCL_B4KP D14-M1 0 18586 -cellosaurus:CVCL_B4KQ D14-M2 0 18587 -cellosaurus:CVCL_H943 D17 0 18588 -cellosaurus:CVCL_B4KG D18 0 18589 -cellosaurus:CVCL_H223 D19 0 18590 -cellosaurus:CVCL_W869 D20 0 18591 -cellosaurus:CVCL_DH67 D22 [Human melanoma] 0 18592 -cellosaurus:CVCL_W870 D23 0 18593 -cellosaurus:CVCL_W871 D24 [Human melanoma] 0 18594 -cellosaurus:CVCL_W872 D25 0 18595 -cellosaurus:CVCL_DH68 D26 0 18596 -cellosaurus:CVCL_DH69 D28 0 18597 -cellosaurus:CVCL_1155 D283 Med 0 18598 -cellosaurus:CVCL_DH70 D29 0 18599 -cellosaurus:CVCL_H222 D3 [Human glioblastoma] 0 18600 -cellosaurus:CVCL_DH71 D30 0 18601 -cellosaurus:CVCL_DH72 D32 0 18602 -cellosaurus:CVCL_HF98 D34 0 18603 -cellosaurus:CVCL_0018 D341 Med 0 18604 -cellosaurus:CVCL_DG37 D35 0 18605 -cellosaurus:CVCL_DH73 D36 0 18606 -cellosaurus:CVCL_HF99 D38 [Human leukoplakia] 0 18607 -cellosaurus:CVCL_DH74 D38 [Human melanoma] 0 18608 -cellosaurus:CVCL_1157 D384 Med 0 18609 -cellosaurus:CVCL_DH75 D40 0 18610 -cellosaurus:CVCL_DH76 D41 0 18611 -cellosaurus:CVCL_1275 D425 Med 0 18612 -cellosaurus:CVCL_1161 D458 Med 0 18613 -cellosaurus:CVCL_7902 D487 Med 0 18614 -cellosaurus:CVCL_DH66 D49 0 18615 -cellosaurus:CVCL_7185 D54 [Human glioblastoma] 0 18616 -cellosaurus:CVCL_DH65 D54 [Human melanoma] 0 18617 -cellosaurus:CVCL_1165 D556 Med 0 18618 -cellosaurus:CVCL_7900 D581 Med 0 18619 -cellosaurus:CVCL_U103 D611L 0 18620 -cellosaurus:CVCL_DH64 D64 0 18621 -cellosaurus:CVCL_7901 D721 Med 0 18622 -cellosaurus:CVCL_ZV50 D77 0 18623 -cellosaurus:CVCL_R801 DAC/E 0 18624 -cellosaurus:CVCL_R802 DAC/S 0 18625 -cellosaurus:CVCL_W521 DAIT-6 0 18626 -cellosaurus:CVCL_ZU73 Dalmas 0 18627 -cellosaurus:CVCL_0243 DAN-G 0 18628 -cellosaurus:CVCL_7186 Dante 0 18629 -cellosaurus:CVCL_1167 Daoy 0 18630 -cellosaurus:CVCL_A9DF Daoy-luc2-tdT 0 18631 -cellosaurus:CVCL_1168 DB 0 18632 -cellosaurus:CVCL_D902 DB-1 [Human melanoma] 0 18633 -cellosaurus:CVCL_D903 DB-8 0 18634 -cellosaurus:CVCL_W884 DB1 0 18635 -cellosaurus:CVCL_ZC17 DBr 0 18636 -cellosaurus:CVCL_1169 DBTRG-05MG 0 18637 -cellosaurus:CVCL_B6GT DDCS2 0 18638 -cellosaurus:CVCL_VU93 DDHK62-MEL 0 18639 -cellosaurus:CVCL_M814 DDLS8817 0 18640 -cellosaurus:CVCL_H210 DEAU 0 18641 -cellosaurus:CVCL_0083 DeFew 0 18642 -cellosaurus:CVCL_A793 Deglis 0 18643 -cellosaurus:CVCL_6894 DeH128 (M) 0 18644 -cellosaurus:CVCL_1170 DEL 0 18645 -cellosaurus:CVCL_LJ93 DELSH-5 0 18646 -cellosaurus:CVCL_2887 delta-47 0 18647 -cellosaurus:CVCL_W330 Demel 0 18648 -cellosaurus:CVCL_A1YM DEMI 0 18649 -cellosaurus:CVCL_4161 DEOC-1 0 18650 -cellosaurus:CVCL_2016 DERL-2 0 18651 -cellosaurus:CVCL_2017 DERL-7 0 18652 -cellosaurus:CVCL_8672 Detroit 116P 0 18653 -cellosaurus:CVCL_8675 Detroit 32 0 18654 -cellosaurus:CVCL_8676 Detroit 34 0 18655 -cellosaurus:CVCL_1171 Detroit 562 0 18656 -cellosaurus:CVCL_8679 Detroit 56A 0 18657 -cellosaurus:CVCL_7187 DEV [Human lymphoma] 0 18658 -cellosaurus:CVCL_M703 DEV [Human medulloblastoma] 0 18659 -cellosaurus:CVCL_W108 DF 0 18660 -cellosaurus:CVCL_A1FG DF-15 0 18661 -cellosaurus:CVCL_A1FH DF-22 0 18662 -cellosaurus:CVCL_A1FI DF-23 0 18663 -cellosaurus:CVCL_0F29 DFCI-LU011 0 18664 -cellosaurus:CVCL_A762 DFCI024 0 18665 -cellosaurus:CVCL_A763 DFCI032 0 18666 -cellosaurus:CVCL_N706 DFSP 0 18667 -cellosaurus:CVCL_S101 DG 0 18668 -cellosaurus:CVCL_0244 DG-75 0 18669 -cellosaurus:CVCL_L852 DG1 0 18670 -cellosaurus:CVCL_L853 DG2 0 18671 -cellosaurus:CVCL_L854 DG3 0 18672 -cellosaurus:CVCL_RW76 DH-BL 0 18673 -cellosaurus:CVCL_WV40 DH-My6 0 18674 -cellosaurus:CVCL_W746 DH679 0 18675 -cellosaurus:CVCL_IV32 DH978 0 18676 -cellosaurus:CVCL_C0V0 DHSF-BR16 0 18677 -cellosaurus:CVCL_S873 DI-OH1 0 18678 -cellosaurus:CVCL_IP14 DIPG 4 0 18679 -cellosaurus:CVCL_IP15 DIPG 6 0 18680 -cellosaurus:CVCL_1173 DK-MG 0 18681 -cellosaurus:CVCL_IU50 DK1631 0 18682 -cellosaurus:CVCL_JX58 DKFZ-BT66 0 18683 -cellosaurus:CVCL_U760 DL [Human lung rhabdoid tumor] 0 18684 -cellosaurus:CVCL_9V00 DL [Human melanoma] 0 18685 -cellosaurus:CVCL_IR14 DL-110 0 18686 -cellosaurus:CVCL_DQ91 DL-221 0 18687 -cellosaurus:CVCL_IU45 DL-4 0 18688 -cellosaurus:CVCL_2889 DL-40 0 18689 -cellosaurus:CVCL_IR15 DL-95 0 18690 -cellosaurus:CVCL_Y034 DLD-2 0 18691 -cellosaurus:CVCL_J019 DLRP 0 18692 -cellosaurus:CVCL_2019 DM-3 0 18693 -cellosaurus:CVCL_5644 DM-4 0 18694 -cellosaurus:CVCL_ZL64 DM100 0 18695 -cellosaurus:CVCL_F867 DM105 0 18696 -cellosaurus:CVCL_ZL62 DM12 [Human melanoma] 0 18697 -cellosaurus:CVCL_6623 DM122 0 18698 -cellosaurus:CVCL_F868 DM128 0 18699 -cellosaurus:CVCL_6622 DM14 [Human melanoma] 0 18700 -cellosaurus:CVCL_ZL65 DM141 0 18701 -cellosaurus:CVCL_ZL66 DM144 0 18702 -cellosaurus:CVCL_F870 DM154 0 18703 -cellosaurus:CVCL_F871 DM161 0 18704 -cellosaurus:CVCL_ZM05 DM165 0 18705 -cellosaurus:CVCL_F872 DM166 0 18706 -cellosaurus:CVCL_F873 DM169 0 18707 -cellosaurus:CVCL_F874 DM175 0 18708 -cellosaurus:CVCL_F875 DM179 0 18709 -cellosaurus:CVCL_F876 DM196 0 18710 -cellosaurus:CVCL_F877 DM208 0 18711 -cellosaurus:CVCL_F878 DM268 0 18712 -cellosaurus:CVCL_ZL71 DM277 0 18713 -cellosaurus:CVCL_6624 DM281 0 18714 -cellosaurus:CVCL_6625 DM319 0 18715 -cellosaurus:CVCL_6626 DM331 0 18716 -cellosaurus:CVCL_F879 DM336 0 18717 -cellosaurus:CVCL_ZL72 DM341 0 18718 -cellosaurus:CVCL_ZL73 DM343 0 18719 -cellosaurus:CVCL_ZL74 DM349 0 18720 -cellosaurus:CVCL_F880 DM366 0 18721 -cellosaurus:CVCL_F881 DM368 0 18722 -cellosaurus:CVCL_F882 DM377 0 18723 -cellosaurus:CVCL_IS49 DM382 0 18724 -cellosaurus:CVCL_ZL75 DM385 0 18725 -cellosaurus:CVCL_ZL76 DM387 0 18726 -cellosaurus:CVCL_ZL77 DM390 0 18727 -cellosaurus:CVCL_F883 DM391 0 18728 -cellosaurus:CVCL_ZL78 DM400 0 18729 -cellosaurus:CVCL_IS50 DM401 0 18730 -cellosaurus:CVCL_ZL79 DM406 0 18731 -cellosaurus:CVCL_F884 DM414 0 18732 -cellosaurus:CVCL_F885 DM422 0 18733 -cellosaurus:CVCL_F886 DM424 0 18734 -cellosaurus:CVCL_F887 DM425 0 18735 -cellosaurus:CVCL_ZL80 DM426 0 18736 -cellosaurus:CVCL_ZL81 DM434 0 18737 -cellosaurus:CVCL_F888 DM440 0 18738 -cellosaurus:CVCL_ZL82 DM441 0 18739 -cellosaurus:CVCL_F889 DM443 0 18740 -cellosaurus:CVCL_F890 DM451 0 18741 -cellosaurus:CVCL_IS51 DM459 0 18742 -cellosaurus:CVCL_ZL83 DM465 0 18743 -cellosaurus:CVCL_IS52 DM467 0 18744 -cellosaurus:CVCL_6627 DM472 0 18745 -cellosaurus:CVCL_ZL63 DM49 0 18746 -cellosaurus:CVCL_IS53 DM497 0 18747 -cellosaurus:CVCL_F891 DM515 0 18748 -cellosaurus:CVCL_IS54 DM555 0 18749 -cellosaurus:CVCL_F892 DM578 0 18750 -cellosaurus:CVCL_IS55 DM589 0 18751 -cellosaurus:CVCL_IS56 DM595 0 18752 -cellosaurus:CVCL_F893 DM598 0 18753 -cellosaurus:CVCL_6628 DM6 0 18754 -cellosaurus:CVCL_IS57 DM602 0 18755 -cellosaurus:CVCL_F895 DM608 0 18756 -cellosaurus:CVCL_F896 DM636 0 18757 -cellosaurus:CVCL_IS58 DM643 0 18758 -cellosaurus:CVCL_F897 DM646 0 18759 -cellosaurus:CVCL_F898 DM7 0 18760 -cellosaurus:CVCL_F899 DM711 0 18761 -cellosaurus:CVCL_F900 DM733 0 18762 -cellosaurus:CVCL_F901 DM738 0 18763 -cellosaurus:CVCL_IS59 DM745 0 18764 -cellosaurus:CVCL_F902 DM751 0 18765 -cellosaurus:CVCL_IS60 DM779 0 18766 -cellosaurus:CVCL_IS61 DM787 0 18767 -cellosaurus:CVCL_F903 DM792 0 18768 -cellosaurus:CVCL_IS62 DM798 0 18769 -cellosaurus:CVCL_IS63 DM806 0 18770 -cellosaurus:CVCL_F904 DM833 0 18771 -cellosaurus:CVCL_F905 DM868 0 18772 -cellosaurus:CVCL_F906 DM92 0 18773 -cellosaurus:CVCL_Z037 DMS 106 0 18774 -cellosaurus:CVCL_1174 DMS 114 0 18775 -cellosaurus:CVCL_Z038 DMS 139 0 18776 -cellosaurus:CVCL_Z039 DMS 148 0 18777 -cellosaurus:CVCL_Z040 DMS 149 0 18778 -cellosaurus:CVCL_1175 DMS 153 0 18779 -cellosaurus:CVCL_Z033 DMS 154 0 18780 -cellosaurus:CVCL_Z041 DMS 187 0 18781 -cellosaurus:CVCL_Z042 DMS 217 0 18782 -cellosaurus:CVCL_Z043 DMS 235 0 18783 -cellosaurus:CVCL_JZ18 DMS 240 0 18784 -cellosaurus:CVCL_1176 DMS 273 0 18785 -cellosaurus:CVCL_0B91 DMS 406 0 18786 -cellosaurus:CVCL_Z034 DMS 44 0 18787 -cellosaurus:CVCL_2438 DMS 454 0 18788 -cellosaurus:CVCL_0B92 DMS 456 0 18789 -cellosaurus:CVCL_Z035 DMS 47 0 18790 -cellosaurus:CVCL_1177 DMS 53 0 18791 -cellosaurus:CVCL_Z036 DMS 55 0 18792 -cellosaurus:CVCL_1178 DMS 79 0 18793 -cellosaurus:CVCL_2439 DMS 92 0 18794 -cellosaurus:CVCL_E994 DND-10B 0 18795 -cellosaurus:CVCL_2021 DND-39 0 18796 -cellosaurus:CVCL_2022 DND-41 0 18797 -cellosaurus:CVCL_5478 DO-s 0 18798 -cellosaurus:CVCL_M490 DOBIL-6 0 18799 -cellosaurus:CVCL_2023 DoGKiT 0 18800 -cellosaurus:CVCL_2024 DOGUM 0 18801 -cellosaurus:CVCL_1179 DoHH2 0 18802 -cellosaurus:CVCL_RL91 DOP-M1 0 18803 -cellosaurus:CVCL_VN18 DOR-1 0 18804 -cellosaurus:CVCL_C1HQ DOS16 0 18805 -cellosaurus:CVCL_CZ87 DoSmi 0 18806 -cellosaurus:CVCL_1181 DoTc2 4510 0 18807 -cellosaurus:CVCL_RK28 DOVC-1 0 18808 -cellosaurus:CVCL_RK29 DOVC-2 0 18809 -cellosaurus:CVCL_9542 DP-6 0 18810 -cellosaurus:CVCL_A1YN DR177 0 18811 -cellosaurus:CVCL_QX99 DS 0 18812 -cellosaurus:CVCL_5278 DS-1 [Human] 0 18813 -cellosaurus:CVCL_W747 DS179 0 18814 -cellosaurus:CVCL_1182 DSH1 0 18815 -cellosaurus:CVCL_YQ04 DT-6I 0 18816 -cellosaurus:CVCL_0J31 DTC1 0 18817 -cellosaurus:CVCL_5528 DU #2 0 18818 -cellosaurus:CVCL_1183 DU4475 0 18819 -cellosaurus:CVCL_5617 DU528 0 18820 -cellosaurus:CVCL_6G37 DU5873 0 18821 -cellosaurus:CVCL_4828 DU9479 0 18822 -cellosaurus:CVCL_2025 DuCaP 0 18823 -cellosaurus:CVCL_VU94 Dun 0 18824 -cellosaurus:CVCL_QW68 Dunatis 0 18825 -cellosaurus:CVCL_A1IA DW 0 18826 -cellosaurus:CVCL_N702 DW6 0 18827 -cellosaurus:CVCL_B4P5 E14 0 18828 -cellosaurus:CVCL_DH86 E3GS2.4 0 18829 -cellosaurus:CVCL_U104 E522L 0 18830 -cellosaurus:CVCL_IR16 EA-1 0 18831 -cellosaurus:CVCL_A9CE EAG3 0 18832 -cellosaurus:CVCL_AV62 EAM306 0 18833 -cellosaurus:CVCL_F287 EB [Human colon carcinoma] 0 18834 -cellosaurus:CVCL_WY97 EB0405 0 18835 -cellosaurus:CVCL_2027 EB1 0 18836 -cellosaurus:CVCL_VU95 EB16-MEL 0 18837 -cellosaurus:CVCL_1186 EB2 0 18838 -cellosaurus:CVCL_1185 EB3 [Human Burkitt lymphoma] 0 18839 -cellosaurus:CVCL_W738 EB4 0 18840 -cellosaurus:CVCL_W739 EB5 [Human Burkitt lymphoma] 0 18841 -cellosaurus:CVCL_DH99 EBC-2 0 18842 -cellosaurus:CVCL_DI00 EBC-2/R 0 18843 -cellosaurus:CVCL_8445 EBT-8 0 18844 -cellosaurus:CVCL_A5PU EC [Human ovarian carcinoma] 0 18845 -cellosaurus:CVCL_W130 EC [Human ovarian yolk sac tumor] 0 18846 -cellosaurus:CVCL_IR37 EC-50 0 18847 -cellosaurus:CVCL_IR38 EC-82 0 18848 -cellosaurus:CVCL_1187 EC-GI-10 0 18849 -cellosaurus:CVCL_L445 EC-MZ-1 0 18850 -cellosaurus:CVCL_L446 EC-MZ-11 0 18851 -cellosaurus:CVCL_L447 EC-MZ-2 0 18852 -cellosaurus:CVCL_L448 EC-MZ-3 0 18853 -cellosaurus:CVCL_L449 EC-MZ-5 0 18854 -cellosaurus:CVCL_L450 EC-MZ-9 0 18855 -cellosaurus:CVCL_RY08 EC/CUHK1 0 18856 -cellosaurus:CVCL_RX98 EC/CUHK2 0 18857 -cellosaurus:CVCL_4N02 EC8501 0 18858 -cellosaurus:CVCL_E314 EC8712 0 18859 -cellosaurus:CVCL_E315 EC8733 0 18860 -cellosaurus:CVCL_1188 ECC10 0 18861 -cellosaurus:CVCL_1189 ECC12 0 18862 -cellosaurus:CVCL_L207 ECC18 0 18863 -cellosaurus:CVCL_A1UI ECC2 0 18864 -cellosaurus:CVCL_1190 ECC4 0 18865 -cellosaurus:CVCL_A1QK ECMA-1 0 18866 -cellosaurus:CVCL_GR69 Ed141.MEL 0 18867 -cellosaurus:CVCL_GR70 Ed147.BT 0 18868 -cellosaurus:CVCL_GR71 Ed149.BT 0 18869 -cellosaurus:CVCL_9978 EE39C 0 18870 -cellosaurus:CVCL_9979 EE39LN 0 18871 -cellosaurus:CVCL_8685 EEB 0 18872 -cellosaurus:CVCL_W468 EES-1 0 18873 -cellosaurus:CVCL_T757 EES1 0 18874 -cellosaurus:CVCL_ZV49 EFC-2 0 18875 -cellosaurus:CVCL_1191 EFE-184 0 18876 -cellosaurus:CVCL_0253 EFM-19 0 18877 -cellosaurus:CVCL_1812 EFM-192A 0 18878 -cellosaurus:CVCL_1813 EFM-192B 0 18879 -cellosaurus:CVCL_1814 EFM-192C 0 18880 -cellosaurus:CVCL_1B48 EFM-30 0 18881 -cellosaurus:CVCL_1B49 EFM-36 0 18882 -cellosaurus:CVCL_1B50 EFM-40 0 18883 -cellosaurus:CVCL_1B51 EFM-49 0 18884 -cellosaurus:CVCL_1B52 EFM-55 0 18885 -cellosaurus:CVCL_1B53 EFM-56 0 18886 -cellosaurus:CVCL_1B54 EFM-61 0 18887 -cellosaurus:CVCL_W957 EFM-63 0 18888 -cellosaurus:CVCL_1B55 EFM-76 0 18889 -cellosaurus:CVCL_D309 EFO-3 0 18890 -cellosaurus:CVCL_D310 EFO-47 0 18891 -cellosaurus:CVCL_A5PV EG [Human ovarian carcinoma] 0 18892 -cellosaurus:CVCL_1193 EGI-1 0 18893 -cellosaurus:CVCL_IU73 EH-GB1 0 18894 -cellosaurus:CVCL_6899 EH-GB2 0 18895 -cellosaurus:CVCL_WI70 EHBC-512 0 18896 -cellosaurus:CVCL_M207 EHMES-1 0 18897 -cellosaurus:CVCL_M208 EHMES-10 0 18898 -cellosaurus:CVCL_F958 EI 0 18899 -cellosaurus:CVCL_ZC18 EJ [Human diffuse large B-cell lymphoma] 0 18900 -cellosaurus:CVCL_7039 EJ [Human endometrial adenocarcinoma] 0 18901 -cellosaurus:CVCL_5983 EJ-28 0 18902 -cellosaurus:CVCL_2030 EJM 0 18903 -cellosaurus:CVCL_WZ07 EK_R1 0 18904 -cellosaurus:CVCL_5283 EKS3 0 18905 -cellosaurus:CVCL_1195 EKVX 0 18906 -cellosaurus:CVCL_0C08 EL-E 0 18907 -cellosaurus:CVCL_2031 ELF-153 0 18908 -cellosaurus:CVCL_CZ88 ElFa 0 18909 -cellosaurus:CVCL_M653 Elijah 0 18910 -cellosaurus:CVCL_1196 EM-2 0 18911 -cellosaurus:CVCL_2033 EM-3 0 18912 -cellosaurus:CVCL_X486 EMC-BAC-1 0 18913 -cellosaurus:CVCL_X487 EMC-BAC-2 0 18914 -cellosaurus:CVCL_B7S1 EMF-011 0 18915 -cellosaurus:CVCL_2034 EN 0 18916 -cellosaurus:CVCL_A423 EN-1078D 0 18917 -cellosaurus:CVCL_DH77 EN-TRL-67T 0 18918 -cellosaurus:CVCL_RX89 ENAMI-1 0 18919 -cellosaurus:CVCL_B5JE END-1 0 18920 -cellosaurus:CVCL_B5KE END-2 0 18921 -cellosaurus:CVCL_A2BM Endo-kun 0 18922 -cellosaurus:CVCL_B3N8 ENTZ HLC 1 0 18923 -cellosaurus:CVCL_B3N9 ENTZ HLC 2 0 18924 -cellosaurus:CVCL_B3NA ENTZ HTC 1 0 18925 -cellosaurus:CVCL_B3NB ENTZ HTC 2 0 18926 -cellosaurus:CVCL_0258 EoL-1 0 18927 -cellosaurus:CVCL_S960 EoL-2 0 18928 -cellosaurus:CVCL_4069 EoL-3 0 18929 -cellosaurus:CVCL_6900 EOM-29 0 18930 -cellosaurus:CVCL_6901 EOM-3 0 18931 -cellosaurus:CVCL_WS82 EP 0 18932 -cellosaurus:CVCL_N843 Epi-544 0 18933 -cellosaurus:CVCL_1197 EPLC-272H 0 18934 -cellosaurus:CVCL_9492 ERY-1 0 18935 -cellosaurus:CVCL_5122 ES-1-OT 0 18936 -cellosaurus:CVCL_6255 ES-5838 0 18937 -cellosaurus:CVCL_5242 ES-OMC-MN 0 18938 -cellosaurus:CVCL_N844 ES020488 0 18939 -cellosaurus:CVCL_1198 ES1 0 18940 -cellosaurus:CVCL_AX39 ES2 0 18941 -cellosaurus:CVCL_1199 ES3 0 18942 -cellosaurus:CVCL_1200 ES4 0 18943 -cellosaurus:CVCL_1201 ES5 0 18944 -cellosaurus:CVCL_1202 ES6 0 18945 -cellosaurus:CVCL_1203 ES7 0 18946 -cellosaurus:CVCL_1204 ES8 0 18947 -cellosaurus:CVCL_J512 Esa-1 0 18948 -cellosaurus:CVCL_E310 ESC-410 0 18949 -cellosaurus:CVCL_Y209 ESC/LCM10T-N 0 18950 -cellosaurus:CVCL_Y210 ESC/LCM11T-N 0 18951 -cellosaurus:CVCL_Y211 ESC/LCM12T-N 0 18952 -cellosaurus:CVCL_Y212 ESC/LCM14T-N 0 18953 -cellosaurus:CVCL_Y213 ESC/LCM15T-N 0 18954 -cellosaurus:CVCL_Y214 ESC/LCM16T-N 0 18955 -cellosaurus:CVCL_Y215 ESC/LCM17T-N 0 18956 -cellosaurus:CVCL_Y216 ESC/LCM18T 0 18957 -cellosaurus:CVCL_Y279 ESC/LCM1T 0 18958 -cellosaurus:CVCL_Y218 ESC/LCM20T-N 0 18959 -cellosaurus:CVCL_Y219 ESC/LCM21T-N 0 18960 -cellosaurus:CVCL_Y220 ESC/LCM22T-N 0 18961 -cellosaurus:CVCL_Y221 ESC/LCM23T 0 18962 -cellosaurus:CVCL_Y222 ESC/LCM24T-N 0 18963 -cellosaurus:CVCL_Y223 ESC/LCM25T-N 0 18964 -cellosaurus:CVCL_Y224 ESC/LCM26T-N 0 18965 -cellosaurus:CVCL_Y225 ESC/LCM27T-N 0 18966 -cellosaurus:CVCL_Y226 ESC/LCM29T-N 0 18967 -cellosaurus:CVCL_Y217 ESC/LCM2T-N 0 18968 -cellosaurus:CVCL_Y228 ESC/LCM31T-N 0 18969 -cellosaurus:CVCL_Y229 ESC/LCM32T-N 0 18970 -cellosaurus:CVCL_Y230 ESC/LCM33T 0 18971 -cellosaurus:CVCL_Y231 ESC/LCM34T-N 0 18972 -cellosaurus:CVCL_Y232 ESC/LCM35T-N 0 18973 -cellosaurus:CVCL_Y233 ESC/LCM36T 0 18974 -cellosaurus:CVCL_Y234 ESC/LCM37T-N 0 18975 -cellosaurus:CVCL_Y235 ESC/LCM38T-N 0 18976 -cellosaurus:CVCL_Y236 ESC/LCM39T-N 0 18977 -cellosaurus:CVCL_Y227 ESC/LCM3T-N 0 18978 -cellosaurus:CVCL_Y238 ESC/LCM40T 0 18979 -cellosaurus:CVCL_Y239 ESC/LCM41T-N 0 18980 -cellosaurus:CVCL_Y240 ESC/LCM42T-N 0 18981 -cellosaurus:CVCL_Y241 ESC/LCM43T-N 0 18982 -cellosaurus:CVCL_Y242 ESC/LCM44T-N 0 18983 -cellosaurus:CVCL_Y243 ESC/LCM45T-N 0 18984 -cellosaurus:CVCL_Y244 ESC/LCM46T-N 0 18985 -cellosaurus:CVCL_Y245 ESC/LCM47T-N 0 18986 -cellosaurus:CVCL_Y246 ESC/LCM48T-N 0 18987 -cellosaurus:CVCL_Y247 ESC/LCM49T-N 0 18988 -cellosaurus:CVCL_Y237 ESC/LCM4T-N 0 18989 -cellosaurus:CVCL_Y249 ESC/LCM50T-N 0 18990 -cellosaurus:CVCL_Y250 ESC/LCM51T-N 0 18991 -cellosaurus:CVCL_Y251 ESC/LCM52T-N 0 18992 -cellosaurus:CVCL_Y252 ESC/LCM53T-N 0 18993 -cellosaurus:CVCL_Y253 ESC/LCM54T-N 0 18994 -cellosaurus:CVCL_Y254 ESC/LCM55T-N 0 18995 -cellosaurus:CVCL_Y255 ESC/LCM56T-N 0 18996 -cellosaurus:CVCL_Y256 ESC/LCM57T-N 0 18997 -cellosaurus:CVCL_Y257 ESC/LCM58T-N 0 18998 -cellosaurus:CVCL_Y258 ESC/LCM59T-N 0 18999 -cellosaurus:CVCL_Y248 ESC/LCM5T 0 19000 -cellosaurus:CVCL_Y260 ESC/LCM60T-N 0 19001 -cellosaurus:CVCL_Y261 ESC/LCM61T-N 0 19002 -cellosaurus:CVCL_Y262 ESC/LCM62T-N 0 19003 -cellosaurus:CVCL_Y263 ESC/LCM66T-N 0 19004 -cellosaurus:CVCL_Y264 ESC/LCM67T-N 0 19005 -cellosaurus:CVCL_Y265 ESC/LCM69T-N 0 19006 -cellosaurus:CVCL_Y259 ESC/LCM6T 0 19007 -cellosaurus:CVCL_Y267 ESC/LCM70T-N 0 19008 -cellosaurus:CVCL_Y268 ESC/LCM71T-N 0 19009 -cellosaurus:CVCL_Y266 ESC/LCM7T 0 19010 -cellosaurus:CVCL_Y269 ESC/LCM8T-N 0 19011 -cellosaurus:CVCL_Y270 ESC/LCM9T-N 0 19012 -cellosaurus:CVCL_A8WC ESCC-CL-Iran 0 19013 -cellosaurus:CVCL_2035 ESO-26 0 19014 -cellosaurus:CVCL_2036 ESO-51 0 19015 -cellosaurus:CVCL_1205 ESS-1 0 19016 -cellosaurus:CVCL_X932 Esther 0 19017 -cellosaurus:CVCL_Y086 ETCC016 0 19018 -cellosaurus:CVCL_7954 ETN-1 0 19019 -cellosaurus:CVCL_LI24 EU-10 0 19020 -cellosaurus:CVCL_LI25 EU-11 0 19021 -cellosaurus:CVCL_8858 EU-12 0 19022 -cellosaurus:CVCL_8859 EU-13 0 19023 -cellosaurus:CVCL_LI26 EU-18 0 19024 -cellosaurus:CVCL_K034 EU-2 0 19025 -cellosaurus:CVCL_8862 EU-4 0 19026 -cellosaurus:CVCL_8863 EU-5 0 19027 -cellosaurus:CVCL_8864 EU-6 0 19028 -cellosaurus:CVCL_8866 EU-8 0 19029 -cellosaurus:CVCL_8867 EU-9 0 19030 -cellosaurus:CVCL_WT21 EuHe 0 19031 -cellosaurus:CVCL_RK00 EV-SCC-1 0 19032 -cellosaurus:CVCL_RK05 EV-SCC-10M 0 19033 -cellosaurus:CVCL_RK06 EV-SCC-14M 0 19034 -cellosaurus:CVCL_RK07 EV-SCC-17M 0 19035 -cellosaurus:CVCL_RK08 EV-SCC-17P 0 19036 -cellosaurus:CVCL_RK09 EV-SCC-18 0 19037 -cellosaurus:CVCL_RK10 EV-SCC-19M 0 19038 -cellosaurus:CVCL_RK11 EV-SCC-19P 0 19039 -cellosaurus:CVCL_RK01 EV-SCC-2 0 19040 -cellosaurus:CVCL_RK02 EV-SCC-3 0 19041 -cellosaurus:CVCL_RK03 EV-SCC-4 0 19042 -cellosaurus:CVCL_RK04 EV-SCC-7 0 19043 -cellosaurus:CVCL_5G37 Evsa-E 0 19044 -cellosaurus:CVCL_EQ72 EW 7476 0 19045 -cellosaurus:CVCL_1208 EW-1 0 19046 -cellosaurus:CVCL_1209 EW-11 0 19047 -cellosaurus:CVCL_1210 EW-12 0 19048 -cellosaurus:CVCL_1211 EW-13 0 19049 -cellosaurus:CVCL_1212 EW-16 0 19050 -cellosaurus:CVCL_3445 EW-17 0 19051 -cellosaurus:CVCL_1213 EW-18 0 19052 -cellosaurus:CVCL_A463 EW-19 0 19053 -cellosaurus:CVCL_3446 EW-2 0 19054 -cellosaurus:CVCL_1214 EW-22 0 19055 -cellosaurus:CVCL_EI71 EW-23 0 19056 -cellosaurus:CVCL_1215 EW-24 0 19057 -cellosaurus:CVCL_1216 EW-3 0 19058 -cellosaurus:CVCL_1217 EW-7 0 19059 -cellosaurus:CVCL_1658 EW-8 0 19060 -cellosaurus:CVCL_W742 EW36 0 19061 -cellosaurus:CVCL_VK44 EW93 0 19062 -cellosaurus:CVCL_WN30 Ewing1 0 19063 -cellosaurus:CVCL_S740 EWS-502 0 19064 -cellosaurus:CVCL_AW95 EWS-834 0 19065 -cellosaurus:CVCL_M142 EWS-925 0 19066 -cellosaurus:CVCL_A5GV EZB-ICR 0 19067 -cellosaurus:CVCL_7192 Ezem-BL 0 19068 -cellosaurus:CVCL_DG17 F-502 0 19069 -cellosaurus:CVCL_TZ79 F1012L 0 19070 -cellosaurus:CVCL_U092 F1121L 0 19071 -cellosaurus:CVCL_V616 F5 0 19072 -cellosaurus:CVCL_ZV51 F60 0 19073 -cellosaurus:CVCL_B7P1 F6T 0 19074 -cellosaurus:CVCL_A6IQ FA-AML1 0 19075 -cellosaurus:CVCL_A6IR FA-AML1C 0 19076 -cellosaurus:CVCL_IU78 FA34 0 19077 -cellosaurus:CVCL_IU79 FA44 0 19078 -cellosaurus:CVCL_IU80 FA49 0 19079 -cellosaurus:CVCL_4034 FA6 0 19080 -cellosaurus:CVCL_IU81 FA98 0 19081 -cellosaurus:CVCL_6G29 Fang-8 0 19082 -cellosaurus:CVCL_IU69 Faraz-ICR 0 19083 -cellosaurus:CVCL_A603 FB-1 0 19084 -cellosaurus:CVCL_B7S0 FC-IBC-02 0 19085 -cellosaurus:CVCL_RJ65 FCC-1 0 19086 -cellosaurus:CVCL_X045 FCCM-2 0 19087 -cellosaurus:CVCL_F730 FCCM-9 0 19088 -cellosaurus:CVCL_DH00 FCI-P1p 0 19089 -cellosaurus:CVCL_DH01 FCI-P2p 0 19090 -cellosaurus:CVCL_S891 FD-LSC-1 0 19091 -cellosaurus:CVCL_VL77 FDOV1 0 19092 -cellosaurus:CVCL_B7MN FDOVL 0 19093 -cellosaurus:CVCL_H614 FE-PD 0 19094 -cellosaurus:CVCL_B6PS Ferry 0 19095 -cellosaurus:CVCL_A604 FET 0 19096 -cellosaurus:CVCL_RP34 FF-1 0 19097 -cellosaurus:CVCL_L437 FHCC-98 0 19098 -cellosaurus:CVCL_2041 FKH-1 0 19099 -cellosaurus:CVCL_8093 FL-18 0 19100 -cellosaurus:CVCL_8094 FL-218 0 19101 -cellosaurus:CVCL_8095 FL-318 0 19102 -cellosaurus:CVCL_IU40 FL-418 0 19103 -cellosaurus:CVCL_IU41 FL-518 0 19104 -cellosaurus:CVCL_IU42 FL-618 0 19105 -cellosaurus:CVCL_IU43 FL-718 0 19106 -cellosaurus:CVCL_IU44 FL-818 0 19107 -cellosaurus:CVCL_S870 FL-OH1 0 19108 -cellosaurus:CVCL_ZU78 FL-SJC 0 19109 -cellosaurus:CVCL_2901 FLAM-76 0 19110 -cellosaurus:CVCL_0I20 FLFMM-34 0 19111 -cellosaurus:CVCL_RL92 FLG 29.1 0 19112 -cellosaurus:CVCL_M788 FLK-1 0 19113 -cellosaurus:CVCL_2045 FLO-1 0 19114 -cellosaurus:CVCL_UI98 FM 0 19115 -cellosaurus:CVCL_9706 FM-62 0 19116 -cellosaurus:CVCL_4W88 FM116 0 19117 -cellosaurus:CVCL_C576 FM2 0 19118 -cellosaurus:CVCL_C584 FM37 0 19119 -cellosaurus:CVCL_9673 FM39 0 19120 -cellosaurus:CVCL_9674 FM45 0 19121 -cellosaurus:CVCL_C587 FM48 0 19122 -cellosaurus:CVCL_9675 FM49 0 19123 -cellosaurus:CVCL_C589 FM55M1 0 19124 -cellosaurus:CVCL_C590 FM55M2 0 19125 -cellosaurus:CVCL_C593 FM56 0 19126 -cellosaurus:CVCL_C594 FM57 0 19127 -cellosaurus:CVCL_C595 FM58 0 19128 -cellosaurus:CVCL_C596 FM59 0 19129 -cellosaurus:CVCL_C581 FM6 0 19130 -cellosaurus:CVCL_C597 FM60 0 19131 -cellosaurus:CVCL_9676 FM62 0 19132 -cellosaurus:CVCL_C599 FM66 0 19133 -cellosaurus:CVCL_C600 FM69 0 19134 -cellosaurus:CVCL_C601 FM70 0 19135 -cellosaurus:CVCL_C602 FM72 0 19136 -cellosaurus:CVCL_C603 FM74 0 19137 -cellosaurus:CVCL_9677 FM76 0 19138 -cellosaurus:CVCL_C605 FM77 0 19139 -cellosaurus:CVCL_C606 FM78 0 19140 -cellosaurus:CVCL_C607 FM79 0 19141 -cellosaurus:CVCL_9678 FM81 0 19142 -cellosaurus:CVCL_C609 FM82 0 19143 -cellosaurus:CVCL_C610 FM86 0 19144 -cellosaurus:CVCL_C611 FM87 0 19145 -cellosaurus:CVCL_9679 FM88 0 19146 -cellosaurus:CVCL_C613 FM89 0 19147 -cellosaurus:CVCL_C582 FM9 0 19148 -cellosaurus:CVCL_C615 FM92 0 19149 -cellosaurus:CVCL_UI29 FM94 0 19150 -cellosaurus:CVCL_C618 FM95 0 19151 -cellosaurus:CVCL_UI30 FM97 0 19152 -cellosaurus:CVCL_QY00 FMC-Hu-1-B 0 19153 -cellosaurus:CVCL_S615 FMC-RB1 0 19154 -cellosaurus:CVCL_0B57 FME 0 19155 -cellosaurus:CVCL_9V01 FMS 0 19156 -cellosaurus:CVCL_IS33 FMS-1 0 19157 -cellosaurus:CVCL_ZC19 FN 0 19158 -cellosaurus:CVCL_0C09 FN-E 0 19159 -cellosaurus:CVCL_7955 FOCUS 0 19160 -cellosaurus:CVCL_F123 FPBH 0 19161 -cellosaurus:CVCL_M792 FPS-1 0 19162 -cellosaurus:CVCL_0C10 FR-E 0 19163 -cellosaurus:CVCL_C544 FR-M-101 0 19164 -cellosaurus:CVCL_C545 FR-M-119 0 19165 -cellosaurus:CVCL_C546 FR-M-134 0 19166 -cellosaurus:CVCL_C547 FR-M-170 0 19167 -cellosaurus:CVCL_C548 FR-M-204 0 19168 -cellosaurus:CVCL_M505 FR4 0 19169 -cellosaurus:CVCL_M509 Fravel 0 19170 -cellosaurus:CVCL_0B88 FRE 0 19171 -cellosaurus:CVCL_J359 FRI 0 19172 -cellosaurus:CVCL_M212 FRM [Human melanoma] 0 19173 -cellosaurus:CVCL_6287 FRO 0 19174 -cellosaurus:CVCL_4W35 FRTK-1 0 19175 -cellosaurus:CVCL_2907 FS-1 [Human leukemia] 0 19176 -cellosaurus:CVCL_W511 FS-1 [Human maxillary sinus SCC] 0 19177 -cellosaurus:CVCL_AS90 FS-M1 0 19178 -cellosaurus:CVCL_M616 FSCP-1 0 19179 -cellosaurus:CVCL_A2BS FT-MZ-1 0 19180 -cellosaurus:CVCL_1219 FTC-133 0 19181 -cellosaurus:CVCL_2446 FTC-236 0 19182 -cellosaurus:CVCL_2447 FTC-238 0 19183 -cellosaurus:CVCL_M815 FU-DDLS-1 0 19184 -cellosaurus:CVCL_E311 FU-EPS-1 0 19185 -cellosaurus:CVCL_H703 FU-GBC-1 0 19186 -cellosaurus:CVCL_H704 FU-GBC-2 0 19187 -cellosaurus:CVCL_A5XE FU-GC-16 0 19188 -cellosaurus:CVCL_M816 FU-MFH-1 0 19189 -cellosaurus:CVCL_M817 FU-MFH-2 0 19190 -cellosaurus:CVCL_U143 FU-MMT-1 0 19191 -cellosaurus:CVCL_U148 FU-MMT-3 0 19192 -cellosaurus:CVCL_AQ51 FU-NB-2006 0 19193 -cellosaurus:CVCL_2047 FU-OV-1 0 19194 -cellosaurus:CVCL_IU17 FU-PNET-3 0 19195 -cellosaurus:CVCL_IU18 FU-PNET-4 0 19196 -cellosaurus:CVCL_ZE76 FU-SFT8611 0 19197 -cellosaurus:CVCL_ZE77 FU-SFT8710 0 19198 -cellosaurus:CVCL_ZE78 FU-SFT9817 0 19199 -cellosaurus:CVCL_N583 FU-SY-1 0 19200 -cellosaurus:CVCL_6997 FU-UR-1 0 19201 -cellosaurus:CVCL_W469 FU-UrC-1 0 19202 -cellosaurus:CVCL_2908 Fu97 0 19203 -cellosaurus:CVCL_L351 FUHS-1 0 19204 -cellosaurus:CVCL_D880 Fuji 0 19205 -cellosaurus:CVCL_JF82 Fujimaki-I 0 19206 -cellosaurus:CVCL_JF83 Fujimaki-II 0 19207 -cellosaurus:CVCL_VV76 FUN 0 19208 -cellosaurus:CVCL_UN47 G-1163GM 0 19209 -cellosaurus:CVCL_UN48 G-1187GM 0 19210 -cellosaurus:CVCL_UN49 G-1265GM 0 19211 -cellosaurus:CVCL_UN50 G-1301GM 0 19212 -cellosaurus:CVCL_UN51 G-1408GM 0 19213 -cellosaurus:CVCL_UN43 G-210GM 0 19214 -cellosaurus:CVCL_UN44 G-211GM 0 19215 -cellosaurus:CVCL_2909 G-292 clone A141B1 0 19216 -cellosaurus:CVCL_1221 G-402 0 19217 -cellosaurus:CVCL_8198 G-415 0 19218 -cellosaurus:CVCL_UN45 G-599GM 0 19219 -cellosaurus:CVCL_UN46 G-750GM 0 19220 -cellosaurus:CVCL_W798 G-mel 0 19221 -cellosaurus:CVCL_H221 G12 0 19222 -cellosaurus:CVCL_DG64 G144 0 19223 -cellosaurus:CVCL_DG65 G144ED 0 19224 -cellosaurus:CVCL_DG66 G166 0 19225 -cellosaurus:CVCL_DG68 G174 0 19226 -cellosaurus:CVCL_DG69 G179 0 19227 -cellosaurus:CVCL_FG73 G1M2 0 19228 -cellosaurus:CVCL_R868 G2 [Human leukemia] 0 19229 -cellosaurus:CVCL_B4P6 G523 0 19230 -cellosaurus:CVCL_B4P7 G567 0 19231 -cellosaurus:CVCL_B4P8 G583 0 19232 -cellosaurus:CVCL_M731 G5T/VGH 0 19233 -cellosaurus:CVCL_U090 G603AD 0 19234 -cellosaurus:CVCL_U091 G603L 0 19235 -cellosaurus:CVCL_A5AK G613M 0 19236 -cellosaurus:CVCL_U108 G821L 0 19237 -cellosaurus:CVCL_D276 G9T/VGH 0 19238 -cellosaurus:CVCL_W470 GAC-1 0 19239 -cellosaurus:CVCL_1225 GAK 0 19240 -cellosaurus:CVCL_M549 GAL-01 0 19241 -cellosaurus:CVCL_M550 GAL-02 0 19242 -cellosaurus:CVCL_1226 GaMG 0 19243 -cellosaurus:CVCL_7194 Gan-BL 0 19244 -cellosaurus:CVCL_V418 Gard 0 19245 -cellosaurus:CVCL_Y588 Garvin-1 0 19246 -cellosaurus:CVCL_M709 GASH 0 19247 -cellosaurus:CVCL_W350 GATAGM-96 0 19248 -cellosaurus:CVCL_7956 GAY2911 0 19249 -cellosaurus:CVCL_1227 GB-1 0 19250 -cellosaurus:CVCL_S826 GB-2 0 19251 -cellosaurus:CVCL_S827 GB-3 0 19252 -cellosaurus:CVCL_M732 GB-CL-1 0 19253 -cellosaurus:CVCL_H705 GB-d1 0 19254 -cellosaurus:CVCL_H706 GB-d2 0 19255 -cellosaurus:CVCL_H707 GB-h3 0 19256 -cellosaurus:CVCL_XZ67 GB-val4 0 19257 -cellosaurus:CVCL_M021 GB60 0 19258 -cellosaurus:CVCL_M736 GBK-1 0 19259 -cellosaurus:CVCL_7195 GBL-HU12 0 19260 -cellosaurus:CVCL_W351 GBM-HSF 0 19261 -cellosaurus:CVCL_DG57 GBM1 0 19262 -cellosaurus:CVCL_DG58 GBM2 0 19263 -cellosaurus:CVCL_4W89 GBM2603 0 19264 -cellosaurus:CVCL_DG59 GBM3 0 19265 -cellosaurus:CVCL_DG60 GBM4 0 19266 -cellosaurus:CVCL_DG61 GBM5 0 19267 -cellosaurus:CVCL_DG62 GBM6 0 19268 -cellosaurus:CVCL_B050 GBM6840 0 19269 -cellosaurus:CVCL_DG63 GBM7 0 19270 -cellosaurus:CVCL_A9Z0 GBM8902 0 19271 -cellosaurus:CVCL_M818 GBS-1 0 19272 -cellosaurus:CVCL_C3GF GBS6 0 19273 -cellosaurus:CVCL_A2BE GC-006-03 0 19274 -cellosaurus:CVCL_VT58 GC-030-35 0 19275 -cellosaurus:CVCL_GS26 GCC-SV(c) 0 19276 -cellosaurus:CVCL_U178 GCCOT-1 0 19277 -cellosaurus:CVCL_U179 GCCRK 0 19278 -cellosaurus:CVCL_W853 GCH-2 0 19279 -cellosaurus:CVCL_HF51 GCSR1 0 19280 -cellosaurus:CVCL_1229 GCT 0 19281 -cellosaurus:CVCL_A344 GCT 27 0 19282 -cellosaurus:CVCL_A345 GCT 35 0 19283 -cellosaurus:CVCL_A346 GCT 44 0 19284 -cellosaurus:CVCL_A347 GCT 46 0 19285 -cellosaurus:CVCL_A348 GCT 48 0 19286 -cellosaurus:CVCL_A349 GCT 72 0 19287 -cellosaurus:CVCL_JL58 GCTTSC 0 19288 -cellosaurus:CVCL_1230 GDM-1 0 19289 -cellosaurus:CVCL_ZW85 GEAMP 0 19290 -cellosaurus:CVCL_5G44 GEN2.2 0 19291 -cellosaurus:CVCL_5G45 GEN3 0 19292 -cellosaurus:CVCL_0271 GEO 0 19293 -cellosaurus:CVCL_8353 Ger 0 19294 -cellosaurus:CVCL_0272 GF-D8 0 19295 -cellosaurus:CVCL_A1IB GG 0 19296 -cellosaurus:CVCL_9707 GG-62 0 19297 -cellosaurus:CVCL_LM99 GH [Human embryonal carcinoma] 0 19298 -cellosaurus:CVCL_1231 GI-1 0 19299 -cellosaurus:CVCL_D589 GI-102 0 19300 -cellosaurus:CVCL_D616 GI-103 0 19301 -cellosaurus:CVCL_D617 GI-112 0 19302 -cellosaurus:CVCL_D618 GI-117 0 19303 -cellosaurus:CVCL_3369 GI-CA-N 0 19304 -cellosaurus:CVCL_8874 GI-LA-N 0 19305 -cellosaurus:CVCL_3370 GI-LI-N 0 19306 -cellosaurus:CVCL_9476 GICIN-1 0 19307 -cellosaurus:CVCL_M440 GIST-H1 0 19308 -cellosaurus:CVCL_C1HV GIST-M 0 19309 -cellosaurus:CVCL_A9N3 GIST-R1 0 19310 -cellosaurus:CVCL_A9N4 GIST-R2m 0 19311 -cellosaurus:CVCL_A9N5 GIST-R3 0 19312 -cellosaurus:CVCL_A9N6 GIST-R4ma 0 19313 -cellosaurus:CVCL_A9N7 GIST-R5 0 19314 -cellosaurus:CVCL_A9M8 GIST226 0 19315 -cellosaurus:CVCL_7042 GIST522 0 19316 -cellosaurus:CVCL_7043 GIST62 0 19317 -cellosaurus:CVCL_Z598 GJC 0 19318 -cellosaurus:CVCL_Z599 GJR 0 19319 -cellosaurus:CVCL_M442 GK1C 0 19320 -cellosaurus:CVCL_WH04 GK2 0 19321 -cellosaurus:CVCL_M443 GK3C 0 19322 -cellosaurus:CVCL_6G36 GKA 0 19323 -cellosaurus:CVCL_0C11 GL-E 0 19324 -cellosaurus:CVCL_M741 GL-Mel 0 19325 -cellosaurus:CVCL_5H95 GL15 0 19326 -cellosaurus:CVCL_5H96 GL22 0 19327 -cellosaurus:CVCL_8202 GLC-11 0 19328 -cellosaurus:CVCL_8203 GLC-12 0 19329 -cellosaurus:CVCL_8204 GLC-14 0 19330 -cellosaurus:CVCL_6904 GLC-15 0 19331 -cellosaurus:CVCL_8205 GLC-16 0 19332 -cellosaurus:CVCL_8206 GLC-19 0 19333 -cellosaurus:CVCL_8208 GLC-20 0 19334 -cellosaurus:CVCL_8209 GLC-22 0 19335 -cellosaurus:CVCL_8210 GLC-26 0 19336 -cellosaurus:CVCL_8211 GLC-28 0 19337 -cellosaurus:CVCL_8212 GLC-3 0 19338 -cellosaurus:CVCL_8213 GLC-33 0 19339 -cellosaurus:CVCL_8214 GLC-34 0 19340 -cellosaurus:CVCL_0B61 GLC-35 0 19341 -cellosaurus:CVCL_8215 GLC-36 0 19342 -cellosaurus:CVCL_8216 GLC-42 0 19343 -cellosaurus:CVCL_0B62 GLC-44 0 19344 -cellosaurus:CVCL_0B63 GLC-45 0 19345 -cellosaurus:CVCL_WM59 GLC-5 0 19346 -cellosaurus:CVCL_8217 GLC-7 0 19347 -cellosaurus:CVCL_8218 GLC-8 0 19348 -cellosaurus:CVCL_WM60 GLC-A1 0 19349 -cellosaurus:CVCL_WM61 GLC-A2 0 19350 -cellosaurus:CVCL_WM62 GLC-A3 0 19351 -cellosaurus:CVCL_0B59 GLC-P1 0 19352 -cellosaurus:CVCL_0B60 GLC-P2 0 19353 -cellosaurus:CVCL_A600 Gli-6 0 19354 -cellosaurus:CVCL_RL88 Gli36 0 19355 -cellosaurus:CVCL_DG67 GliNS2 0 19356 -cellosaurus:CVCL_W996 GLL-1 0 19357 -cellosaurus:CVCL_W181 GLL-19 0 19358 -cellosaurus:CVCL_X019 GLM-1 0 19359 -cellosaurus:CVCL_X020 GLM-2 0 19360 -cellosaurus:CVCL_X021 GLM-3 0 19361 -cellosaurus:CVCL_7196 Glor-BL 0 19362 -cellosaurus:CVCL_R733 GLY 0 19363 -cellosaurus:CVCL_F263 GM-490 0 19364 -cellosaurus:CVCL_6905 GM/SO 0 19365 -cellosaurus:CVCL_9Z58 GM01858 0 19366 -cellosaurus:CVCL_F188 GM03639 0 19367 -cellosaurus:CVCL_F668 GM07489 0 19368 -cellosaurus:CVCL_UH45 GM11027 0 19369 -cellosaurus:CVCL_UH46 GM11028 0 19370 -cellosaurus:CVCL_B4FS GM133 0 19371 -cellosaurus:CVCL_B4FT GM139 0 19372 -cellosaurus:CVCL_B4FU GM1578 0 19373 -cellosaurus:CVCL_B4FV GM1592 0 19374 -cellosaurus:CVCL_B4FW GM1596 0 19375 -cellosaurus:CVCL_B4FX GM1600 0 19376 -cellosaurus:CVCL_B4FY GM2217 0 19377 -cellosaurus:CVCL_B4FZ GM2300 0 19378 -cellosaurus:CVCL_B4G0 GM2313 0 19379 -cellosaurus:CVCL_B4G1 GM2328 0 19380 -cellosaurus:CVCL_CW86 GM23312 0 19381 -cellosaurus:CVCL_B4G2 GM2345 0 19382 -cellosaurus:CVCL_B4G3 GM2401 0 19383 -cellosaurus:CVCL_B4G4 GM2455 0 19384 -cellosaurus:CVCL_B4G5 GM2493 0 19385 -cellosaurus:CVCL_IR55 GM7 0 19386 -cellosaurus:CVCL_B4G6 GM97 0 19387 -cellosaurus:CVCL_L499 GMK-2 0 19388 -cellosaurus:CVCL_F643 GMK-5 0 19389 -cellosaurus:CVCL_1233 GMS-10 0 19390 -cellosaurus:CVCL_V740 Gor 0 19391 -cellosaurus:CVCL_A3BD GOS-1 0 19392 -cellosaurus:CVCL_A3BE GOS-2 0 19393 -cellosaurus:CVCL_L306 GOT1 0 19394 -cellosaurus:CVCL_M819 GOT3 0 19395 -cellosaurus:CVCL_S967 GP202 0 19396 -cellosaurus:CVCL_S968 GP220 0 19397 -cellosaurus:CVCL_2450 GP2d 0 19398 -cellosaurus:CVCL_1235 GP5d 0 19399 -cellosaurus:CVCL_S833 GPM-1 0 19400 -cellosaurus:CVCL_S834 GPM-2 0 19401 -cellosaurus:CVCL_RB21 GPSM4 0 19402 -cellosaurus:CVCL_RB22 GPSM5 0 19403 -cellosaurus:CVCL_VU52 GR-34 0 19404 -cellosaurus:CVCL_7045 GR-Mel 0 19405 -cellosaurus:CVCL_C497 GR-Mel-3 0 19406 -cellosaurus:CVCL_C498 GR-Mel-8 0 19407 -cellosaurus:CVCL_C499 GR-Mel-9 0 19408 -cellosaurus:CVCL_S864 GR-OH1 0 19409 -cellosaurus:CVCL_UD51 GRA 0 19410 -cellosaurus:CVCL_DH42 Granta-380 0 19411 -cellosaurus:CVCL_1817 Granta-452 0 19412 -cellosaurus:CVCL_1818 Granta-519 0 19413 -cellosaurus:CVCL_0T64 Granta-56 0 19414 -cellosaurus:CVCL_X046 Gratch 0 19415 -cellosaurus:CVCL_M785 GRS-IV 0 19416 -cellosaurus:CVCL_M786 GRS-V 0 19417 -cellosaurus:CVCL_DR55 GSC11 0 19418 -cellosaurus:CVCL_DR56 GSC13 0 19419 -cellosaurus:CVCL_DR57 GSC17 0 19420 -cellosaurus:CVCL_DR58 GSC2 0 19421 -cellosaurus:CVCL_DR59 GSC23 0 19422 -cellosaurus:CVCL_DR60 GSC8-11 0 19423 -cellosaurus:CVCL_A9T7 GSC#1 0 19424 -cellosaurus:CVCL_A9T8 GSC#10 0 19425 -cellosaurus:CVCL_A9TN GSC#112 0 19426 -cellosaurus:CVCL_A9TP GSC#120 0 19427 -cellosaurus:CVCL_A9TQ GSC#142 0 19428 -cellosaurus:CVCL_A9TR GSC#147 0 19429 -cellosaurus:CVCL_A9TS GSC#148 0 19430 -cellosaurus:CVCL_A9TT GSC#151 0 19431 -cellosaurus:CVCL_A9TU GSC#163 0 19432 -cellosaurus:CVCL_A9TV GSC#169 0 19433 -cellosaurus:CVCL_A9TW GSC#170 0 19434 -cellosaurus:CVCL_A9TX GSC#171 0 19435 -cellosaurus:CVCL_A9TY GSC#172 0 19436 -cellosaurus:CVCL_A9TZ GSC#181 0 19437 -cellosaurus:CVCL_A9U0 GSC#184 0 19438 -cellosaurus:CVCL_A9U1 GSC#188 0 19439 -cellosaurus:CVCL_A9U2 GSC#191 0 19440 -cellosaurus:CVCL_A9U3 GSC#195 0 19441 -cellosaurus:CVCL_A9U4 GSC#195V 0 19442 -cellosaurus:CVCL_A9U5 GSC#196 0 19443 -cellosaurus:CVCL_A9U6 GSC#204 0 19444 -cellosaurus:CVCL_A9U7 GSC#206 0 19445 -cellosaurus:CVCL_A9U8 GSC#208 0 19446 -cellosaurus:CVCL_A9U9 GSC#209 0 19447 -cellosaurus:CVCL_A9UA GSC#210 0 19448 -cellosaurus:CVCL_A9UB GSC#213 0 19449 -cellosaurus:CVCL_A9UC GSC#220C 0 19450 -cellosaurus:CVCL_A9UD GSC#221 0 19451 -cellosaurus:CVCL_A9T9 GSC#23C 0 19452 -cellosaurus:CVCL_A9TA GSC#23P 0 19453 -cellosaurus:CVCL_A9UE GSC#242 0 19454 -cellosaurus:CVCL_A9UF GSC#257 0 19455 -cellosaurus:CVCL_A9UG GSC#262 0 19456 -cellosaurus:CVCL_A9UH GSC#275 0 19457 -cellosaurus:CVCL_A9UI GSC#275bis 0 19458 -cellosaurus:CVCL_A9UJ GSC#277 0 19459 -cellosaurus:CVCL_A9TB GSC#28 0 19460 -cellosaurus:CVCL_A9UK GSC#284 0 19461 -cellosaurus:CVCL_A9UL GSC#290 0 19462 -cellosaurus:CVCL_A9UM GSC#291 0 19463 -cellosaurus:CVCL_A9UN GSC#298 0 19464 -cellosaurus:CVCL_A9UP GSC#309S 0 19465 -cellosaurus:CVCL_A9TC GSC#30P 0 19466 -cellosaurus:CVCL_A9TD GSC#30PT 0 19467 -cellosaurus:CVCL_A9UQ GSC#314C 0 19468 -cellosaurus:CVCL_A9UR GSC#314P 0 19469 -cellosaurus:CVCL_A9US GSC#315 0 19470 -cellosaurus:CVCL_A9UT GSC#318 0 19471 -cellosaurus:CVCL_A9UU GSC#323 0 19472 -cellosaurus:CVCL_A9UV GSC#326 0 19473 -cellosaurus:CVCL_A9UW GSC#327 0 19474 -cellosaurus:CVCL_A9UX GSC#329 0 19475 -cellosaurus:CVCL_A9UY GSC#352 0 19476 -cellosaurus:CVCL_A9UZ GSC#361 0 19477 -cellosaurus:CVCL_A9V0 GSC#365 0 19478 -cellosaurus:CVCL_A9V1 GSC#366 0 19479 -cellosaurus:CVCL_A9V2 GSC#369 0 19480 -cellosaurus:CVCL_A9V3 GSC#381 0 19481 -cellosaurus:CVCL_A9V4 GSC#384 0 19482 -cellosaurus:CVCL_A9V5 GSC#389 0 19483 -cellosaurus:CVCL_A9V6 GSC#391 0 19484 -cellosaurus:CVCL_A9V7 GSC#393 0 19485 -cellosaurus:CVCL_A9V8 GSC#394 0 19486 -cellosaurus:CVCL_A9V9 GSC#394bis 0 19487 -cellosaurus:CVCL_A9VA GSC#395 0 19488 -cellosaurus:CVCL_A9VB GSC#397 0 19489 -cellosaurus:CVCL_A9VC GSC#399 0 19490 -cellosaurus:CVCL_A9VD GSC#401 0 19491 -cellosaurus:CVCL_A9VE GSC#403 0 19492 -cellosaurus:CVCL_A9VF GSC#406 0 19493 -cellosaurus:CVCL_A9VG GSC#407 0 19494 -cellosaurus:CVCL_A9VH GSC#411 0 19495 -cellosaurus:CVCL_A9VI GSC#413 0 19496 -cellosaurus:CVCL_A9VJ GSC#415 0 19497 -cellosaurus:CVCL_A9VK GSC#416 0 19498 -cellosaurus:CVCL_A9VL GSC#420 0 19499 -cellosaurus:CVCL_A9VM GSC#421 0 19500 -cellosaurus:CVCL_A9VN GSC#426 0 19501 -cellosaurus:CVCL_A9VP GSC#429 0 19502 -cellosaurus:CVCL_A9VQ GSC#431 0 19503 -cellosaurus:CVCL_A9VR GSC#432 0 19504 -cellosaurus:CVCL_A9VS GSC#433 0 19505 -cellosaurus:CVCL_A9VT GSC#440 0 19506 -cellosaurus:CVCL_A9VU GSC#441 0 19507 -cellosaurus:CVCL_A9VV GSC#442 0 19508 -cellosaurus:CVCL_A9VW GSC#445 0 19509 -cellosaurus:CVCL_A9VX GSC#447P 0 19510 -cellosaurus:CVCL_A9VY GSC#448 0 19511 -cellosaurus:CVCL_A9VZ GSC#449 0 19512 -cellosaurus:CVCL_A9W0 GSC#450 0 19513 -cellosaurus:CVCL_A9W1 GSC#452C 0 19514 -cellosaurus:CVCL_A9W2 GSC#452P 0 19515 -cellosaurus:CVCL_A9W3 GSC#454 0 19516 -cellosaurus:CVCL_A9W4 GSC#455 0 19517 -cellosaurus:CVCL_A9TE GSC#61 0 19518 -cellosaurus:CVCL_A9TF GSC#62 0 19519 -cellosaurus:CVCL_A9TG GSC#67 0 19520 -cellosaurus:CVCL_A9TH GSC#68 0 19521 -cellosaurus:CVCL_A9TI GSC#70 0 19522 -cellosaurus:CVCL_A9TJ GSC#74 0 19523 -cellosaurus:CVCL_A9TK GSC#76 0 19524 -cellosaurus:CVCL_A9TL GSC#83 0 19525 -cellosaurus:CVCL_A9TM GSC#83.2 0 19526 -cellosaurus:CVCL_M780 GSJO 0 19527 -cellosaurus:CVCL_8876 GSS 0 19528 -cellosaurus:CVCL_8877 GSU 0 19529 -cellosaurus:CVCL_IR53 GT9 0 19530 -cellosaurus:CVCL_T064 GTO 0 19531 -cellosaurus:CVCL_C1HW GTX-006 0 19532 -cellosaurus:CVCL_C1HX GTX-007 0 19533 -cellosaurus:CVCL_C1HY GTX-085 0 19534 -cellosaurus:CVCL_C1HZ GTX-086 0 19535 -cellosaurus:CVCL_C1I0 GTX-087 0 19536 -cellosaurus:CVCL_C1I1 GTX-103 0 19537 -cellosaurus:CVCL_C1I2 GTX-116 0 19538 -cellosaurus:CVCL_C1I3 GTX-139 0 19539 -cellosaurus:CVCL_2051 GUMBUS 0 19540 -cellosaurus:CVCL_N589 GUSS-1 0 19541 -cellosaurus:CVCL_N590 GUSS-2 0 19542 -cellosaurus:CVCL_N591 GUSS-3 0 19543 -cellosaurus:CVCL_LG31 GUSS-3b 0 19544 -cellosaurus:CVCL_C0W3 GWH04 0 19545 -cellosaurus:CVCL_ZV99 GX 0 19546 -cellosaurus:CVCL_D243 GXF 251L 0 19547 -cellosaurus:CVCL_5511 H-111-TC 0 19548 -cellosaurus:CVCL_1E31 H-15 0 19549 -cellosaurus:CVCL_1E32 H-22 0 19550 -cellosaurus:CVCL_1E33 H-825 0 19551 -cellosaurus:CVCL_BT00 H-bc 0 19552 -cellosaurus:CVCL_1238 H-EMC-SS 0 19553 -cellosaurus:CVCL_JB74 H.Emb.Rh. #1 0 19554 -cellosaurus:CVCL_JB75 H.S. #1 0 19555 -cellosaurus:CVCL_2457 H103 0 19556 -cellosaurus:CVCL_U109 H1215L 0 19557 -cellosaurus:CVCL_U107 H1224L 0 19558 -cellosaurus:CVCL_S697 H140 0 19559 -cellosaurus:CVCL_2458 H157 0 19560 -cellosaurus:CVCL_S696 H191 [Human tongue SCC] 0 19561 -cellosaurus:CVCL_D345 H2669 0 19562 -cellosaurus:CVCL_LG10 H2964 0 19563 -cellosaurus:CVCL_D346 H2981 0 19564 -cellosaurus:CVCL_D347 H2987 0 19565 -cellosaurus:CVCL_M189 H2M 0 19566 -cellosaurus:CVCL_M190 H2P 0 19567 -cellosaurus:CVCL_2460 H314 0 19568 -cellosaurus:CVCL_LG07 H3347 0 19569 -cellosaurus:CVCL_D348 H3396 0 19570 -cellosaurus:CVCL_D349 H3464 0 19571 -cellosaurus:CVCL_D350 H3477 0 19572 -cellosaurus:CVCL_LG11 H3600 0 19573 -cellosaurus:CVCL_LG03 H3606 0 19574 -cellosaurus:CVCL_LG04 H3614 0 19575 -cellosaurus:CVCL_LG09 H3619 0 19576 -cellosaurus:CVCL_LG05 H3620 0 19577 -cellosaurus:CVCL_LF99 H3630 0 19578 -cellosaurus:CVCL_D351 H3639 0 19579 -cellosaurus:CVCL_LG06 H3650 0 19580 -cellosaurus:CVCL_H603 H3677 0 19581 -cellosaurus:CVCL_LG00 H3680B 0 19582 -cellosaurus:CVCL_LG23 H3719 0 19583 -cellosaurus:CVCL_D352 H3723 0 19584 -cellosaurus:CVCL_LG01 H3730 0 19585 -cellosaurus:CVCL_LG25 H3737 0 19586 -cellosaurus:CVCL_2463 H376 0 19587 -cellosaurus:CVCL_D353 H3774 0 19588 -cellosaurus:CVCL_LG08 H3802 0 19589 -cellosaurus:CVCL_LG02 H3914 0 19590 -cellosaurus:CVCL_0283 H3922 0 19591 -cellosaurus:CVCL_HE79 H4-M 0 19592 -cellosaurus:CVCL_2464 H400 0 19593 -cellosaurus:CVCL_2465 H413 0 19594 -cellosaurus:CVCL_D554 H48N 0 19595 -cellosaurus:CVCL_WG78 H534C 0 19596 -cellosaurus:CVCL_WG79 H542C 0 19597 -cellosaurus:CVCL_WG80 H566C 0 19598 -cellosaurus:CVCL_YP34 H58 0 19599 -cellosaurus:CVCL_0C12 HA-E 0 19600 -cellosaurus:CVCL_S869 HA-OH1 0 19601 -cellosaurus:CVCL_7046 HA22T/VGH 0 19602 -cellosaurus:CVCL_LJ94 HA47T/VGH 0 19603 -cellosaurus:CVCL_Y018 HA59T/VGH 0 19604 -cellosaurus:CVCL_1241 HA7-RCC 0 19605 -cellosaurus:CVCL_8354 HAC-2 0 19606 -cellosaurus:CVCL_8690 HAEND 0 19607 -cellosaurus:CVCL_VS97 HAEST 0 19608 -cellosaurus:CVCL_8225 HAG-1 0 19609 -cellosaurus:CVCL_B401 Hair-M 0 19610 -cellosaurus:CVCL_7957 HAK-1A 0 19611 -cellosaurus:CVCL_7958 HAK-1B 0 19612 -cellosaurus:CVCL_W445 HAK-2 0 19613 -cellosaurus:CVCL_E419 HAK-3 0 19614 -cellosaurus:CVCL_JL52 HAK-4 0 19615 -cellosaurus:CVCL_JL53 HAK-5 0 19616 -cellosaurus:CVCL_JL54 HAK-6 0 19617 -cellosaurus:CVCL_D788 HAL 0 19618 -cellosaurus:CVCL_1242 HAL-01 0 19619 -cellosaurus:CVCL_D248 HAMT-1 0 19620 -cellosaurus:CVCL_0G14 Handman 0 19621 -cellosaurus:CVCL_8226 HANK1 0 19622 -cellosaurus:CVCL_HA65 HATAK 0 19623 -cellosaurus:CVCL_LI16 HATL 0 19624 -cellosaurus:CVCL_IW44 Hattori 0 19625 -cellosaurus:CVCL_N813 HAY 0 19626 -cellosaurus:CVCL_ZC20 HB [Human diffuse large B-cell lymphoma] 0 19627 -cellosaurus:CVCL_A1GX HB [Human ovarian carcinoma] 0 19628 -cellosaurus:CVCL_6213 HB-CLS-1 0 19629 -cellosaurus:CVCL_6214 HB-CLS-2 0 19630 -cellosaurus:CVCL_8227 HB11;19 0 19631 -cellosaurus:CVCL_B496 HBC-4 0 19632 -cellosaurus:CVCL_B497 HBC-5 0 19633 -cellosaurus:CVCL_B498 HBC-7 0 19634 -cellosaurus:CVCL_L496 HBC-8 0 19635 -cellosaurus:CVCL_L497 HBC-9 0 19636 -cellosaurus:CVCL_0U06 HBC2 0 19637 -cellosaurus:CVCL_B6Z7 HBCC/HL-004 0 19638 -cellosaurus:CVCL_M273 HBDC 0 19639 -cellosaurus:CVCL_J075 HBL 0 19640 -cellosaurus:CVCL_M572 HBL-1 [Human AIDS-related non-Hodgkin lymphoma] 0 19641 -cellosaurus:CVCL_4213 HBL-1 [Human diffuse large B-cell lymphoma] 0 19642 -cellosaurus:CVCL_4214 HBL-10 0 19643 -cellosaurus:CVCL_4215 HBL-11 0 19644 -cellosaurus:CVCL_M574 HBL-2 [Human AIDS-related non-Hodgkin lymphoma] 0 19645 -cellosaurus:CVCL_M573 HBL-2 [Human B-cell lymphoma] 0 19646 -cellosaurus:CVCL_4216 HBL-2 [Human mantle cell lymphoma] 0 19647 -cellosaurus:CVCL_M575 HBL-3 [Human AIDS-related non-Hodgkin lymphoma] 0 19648 -cellosaurus:CVCL_4217 HBL-3 [Human leukemia] 0 19649 -cellosaurus:CVCL_LI27 HBL-4 [Human AIDS-related non-Hodgkin lymphoma] 0 19650 -cellosaurus:CVCL_4218 HBL-4 [Human Burkitt lymphoma] 0 19651 -cellosaurus:CVCL_4219 HBL-5 0 19652 -cellosaurus:CVCL_4220 HBL-52 0 19653 -cellosaurus:CVCL_4221 HBL-6 0 19654 -cellosaurus:CVCL_4222 HBL-7 0 19655 -cellosaurus:CVCL_4223 HBL-8 0 19656 -cellosaurus:CVCL_4224 HBL-9 0 19657 -cellosaurus:CVCL_WT67 HBM-Noda 0 19658 -cellosaurus:CVCL_1243 HC-1 0 19659 -cellosaurus:CVCL_X211 HC-3 0 19660 -cellosaurus:CVCL_X212 HC-4 0 19661 -cellosaurus:CVCL_X214 HC-9 0 19662 -cellosaurus:CVCL_M172 HC-AFW1 0 19663 -cellosaurus:CVCL_2916 HCA1 0 19664 -cellosaurus:CVCL_2056 HCA2 0 19665 -cellosaurus:CVCL_2467 HCA24 0 19666 -cellosaurus:CVCL_2468 HCA46 0 19667 -cellosaurus:CVCL_A2BY HCA46 R1 Cetux 0 19668 -cellosaurus:CVCL_A2BZ HCA46 R2 Cetux 0 19669 -cellosaurus:CVCL_UZ55 HCB-514 0 19670 -cellosaurus:CVCL_0C52 HCC-1.1 0 19671 -cellosaurus:CVCL_0C53 HCC-1.2 0 19672 -cellosaurus:CVCL_0C54 HCC-2 0 19673 -cellosaurus:CVCL_0C57 HCC-3 0 19674 -cellosaurus:CVCL_T732 HCC-48 0 19675 -cellosaurus:CVCL_T733 HCC-50 0 19676 -cellosaurus:CVCL_2917 HCC-56 0 19677 -cellosaurus:CVCL_YI86 HCC-DJ711 0 19678 -cellosaurus:CVCL_V641 HCC-M 0 19679 -cellosaurus:CVCL_M359 HCC-S102 0 19680 -cellosaurus:CVCL_V642 HCC-T 0 19681 -cellosaurus:CVCL_V708 HCC10 0 19682 -cellosaurus:CVCL_3374 HCC1007 0 19683 -cellosaurus:CVCL_1244 HCC1008 0 19684 -cellosaurus:CVCL_V674 HCC1010 0 19685 -cellosaurus:CVCL_V675 HCC1011 0 19686 -cellosaurus:CVCL_V705 HCC103 0 19687 -cellosaurus:CVCL_V676 HCC1033 0 19688 -cellosaurus:CVCL_V677 HCC1042 0 19689 -cellosaurus:CVCL_V678 HCC1054 0 19690 -cellosaurus:CVCL_V679 HCC1057 0 19691 -cellosaurus:CVCL_V680 HCC1068 0 19692 -cellosaurus:CVCL_V681 HCC1106 0 19693 -cellosaurus:CVCL_1245 HCC1143 0 19694 -cellosaurus:CVCL_9699 HCC1159 0 19695 -cellosaurus:CVCL_V651 HCC1162 0 19696 -cellosaurus:CVCL_5126 HCC1171 0 19697 -cellosaurus:CVCL_1247 HCC1187 0 19698 -cellosaurus:CVCL_V709 HCC1192 0 19699 -cellosaurus:CVCL_5127 HCC1195 0 19700 -cellosaurus:CVCL_V719 HCC12 0 19701 -cellosaurus:CVCL_V683 HCC1205 0 19702 -cellosaurus:CVCL_V682 HCC1210 0 19703 -cellosaurus:CVCL_V684 HCC1217 0 19704 -cellosaurus:CVCL_V704 HCC122 0 19705 -cellosaurus:CVCL_V685 HCC1261 0 19706 -cellosaurus:CVCL_V686 HCC1263 0 19707 -cellosaurus:CVCL_V687 HCC1266 0 19708 -cellosaurus:CVCL_V703 HCC128 0 19709 -cellosaurus:CVCL_V688 HCC1311 0 19710 -cellosaurus:CVCL_L087 HCC1313 0 19711 -cellosaurus:CVCL_V670 HCC1314 0 19712 -cellosaurus:CVCL_V671 HCC1319 0 19713 -cellosaurus:CVCL_V672 HCC1323 0 19714 -cellosaurus:CVCL_V673 HCC1347 0 19715 -cellosaurus:CVCL_V663 HCC1354 0 19716 -cellosaurus:CVCL_5128 HCC1359 0 19717 -cellosaurus:CVCL_V664 HCC1360 0 19718 -cellosaurus:CVCL_V665 HCC1367 0 19719 -cellosaurus:CVCL_V666 HCC1375 0 19720 -cellosaurus:CVCL_V667 HCC1385 0 19721 -cellosaurus:CVCL_V668 HCC1386 0 19722 -cellosaurus:CVCL_1249 HCC1395 0 19723 -cellosaurus:CVCL_V689 HCC1426 0 19724 -cellosaurus:CVCL_L088 HCC1438 0 19725 -cellosaurus:CVCL_V589 HCC1445 0 19726 -cellosaurus:CVCL_V590 HCC1448 0 19727 -cellosaurus:CVCL_V591 HCC1482 0 19728 -cellosaurus:CVCL_V702 HCC149 0 19729 -cellosaurus:CVCL_V592 HCC1493 0 19730 -cellosaurus:CVCL_V706 HCC1498 0 19731 -cellosaurus:CVCL_2057 HCC15 0 19732 -cellosaurus:CVCL_1254 HCC1500 0 19733 -cellosaurus:CVCL_V594 HCC1501 0 19734 -cellosaurus:CVCL_V595 HCC1534 0 19735 -cellosaurus:CVCL_V596 HCC1561 0 19736 -cellosaurus:CVCL_V597 HCC1576 0 19737 -cellosaurus:CVCL_V598 HCC1581 0 19738 -cellosaurus:CVCL_A351 HCC1588 0 19739 -cellosaurus:CVCL_1256 HCC1599 0 19740 -cellosaurus:CVCL_V657 HCC1623 0 19741 -cellosaurus:CVCL_V656 HCC1629 0 19742 -cellosaurus:CVCL_9Y85 HCC1637 0 19743 -cellosaurus:CVCL_V655 HCC1671 0 19744 -cellosaurus:CVCL_V658 HCC1685 0 19745 -cellosaurus:CVCL_V659 HCC1686 0 19746 -cellosaurus:CVCL_V660 HCC1688 0 19747 -cellosaurus:CVCL_V654 HCC1705 0 19748 -cellosaurus:CVCL_L089 HCC1719 0 19749 -cellosaurus:CVCL_9877 HCC1739 0 19750 -cellosaurus:CVCL_V653 HCC1772 0 19751 -cellosaurus:CVCL_V652 HCC1820 0 19752 -cellosaurus:CVCL_5129 HCC1833 0 19753 -cellosaurus:CVCL_V578 HCC1897 0 19754 -cellosaurus:CVCL_V720 HCC19 0 19755 -cellosaurus:CVCL_V639 HCC1908 0 19756 -cellosaurus:CVCL_5130 HCC193 0 19757 -cellosaurus:CVCL_V661 HCC1943 0 19758 -cellosaurus:CVCL_V603 HCC1944 0 19759 -cellosaurus:CVCL_V604 HCC1945 0 19760 -cellosaurus:CVCL_V614 HCC1963 0 19761 -cellosaurus:CVCL_V739 HCC1972 0 19762 -cellosaurus:CVCL_V615 HCC1974 0 19763 -cellosaurus:CVCL_WG81 HCC20 0 19764 -cellosaurus:CVCL_2062 HCC202 0 19765 -cellosaurus:CVCL_9Y86 HCC2036 0 19766 -cellosaurus:CVCL_V619 HCC2041 0 19767 -cellosaurus:CVCL_VF97 HCC21 0 19768 -cellosaurus:CVCL_A352 HCC2108 0 19769 -cellosaurus:CVCL_1261 HCC2157 0 19770 -cellosaurus:CVCL_3375 HCC2185 0 19771 -cellosaurus:CVCL_1263 HCC2218 0 19772 -cellosaurus:CVCL_V635 HCC2270 0 19773 -cellosaurus:CVCL_5131 HCC2279 0 19774 -cellosaurus:CVCL_V721 HCC229 0 19775 -cellosaurus:CVCL_V636 HCC2302 0 19776 -cellosaurus:CVCL_V662 HCC2308 0 19777 -cellosaurus:CVCL_V669 HCC2312 0 19778 -cellosaurus:CVCL_V638 HCC2344 0 19779 -cellosaurus:CVCL_V637 HCC2352 0 19780 -cellosaurus:CVCL_L090 HCC2373 0 19781 -cellosaurus:CVCL_A353 HCC2374 0 19782 -cellosaurus:CVCL_V600 HCC2389 0 19783 -cellosaurus:CVCL_V601 HCC2393 0 19784 -cellosaurus:CVCL_V602 HCC2414 0 19785 -cellosaurus:CVCL_V722 HCC242 0 19786 -cellosaurus:CVCL_5132 HCC2429 0 19787 -cellosaurus:CVCL_V599 HCC2433 0 19788 -cellosaurus:CVCL_5133 HCC2450 0 19789 -cellosaurus:CVCL_V723 HCC267 0 19790 -cellosaurus:CVCL_V584 HCC2677 0 19791 -cellosaurus:CVCL_3376 HCC2688 0 19792 -cellosaurus:CVCL_A350 HCC2713 0 19793 -cellosaurus:CVCL_V583 HCC2771 0 19794 -cellosaurus:CVCL_V585 HCC2783 0 19795 -cellosaurus:CVCL_V586 HCC2814 0 19796 -cellosaurus:CVCL_V587 HCC2846 0 19797 -cellosaurus:CVCL_9Y87 HCC2858 0 19798 -cellosaurus:CVCL_9Y88 HCC2879 0 19799 -cellosaurus:CVCL_V588 HCC2885 0 19800 -cellosaurus:CVCL_0V16 HCC2911 0 19801 -cellosaurus:CVCL_1265 HCC2935 0 19802 -cellosaurus:CVCL_9Y89 HCC2962 0 19803 -cellosaurus:CVCL_9Y90 HCC2974 0 19804 -cellosaurus:CVCL_1266 HCC2998 0 19805 -cellosaurus:CVCL_V582 HCC3051 0 19806 -cellosaurus:CVCL_V724 HCC31 0 19807 -cellosaurus:CVCL_3377 HCC3153 0 19808 -cellosaurus:CVCL_V725 HCC317 0 19809 -cellosaurus:CVCL_9Y91 HCC3172 0 19810 -cellosaurus:CVCL_0V17 HCC3212 0 19811 -cellosaurus:CVCL_9Y92 HCC3270 0 19812 -cellosaurus:CVCL_2058 HCC33 0 19813 -cellosaurus:CVCL_0V18 HCC3303 0 19814 -cellosaurus:CVCL_9Y93 HCC3321 0 19815 -cellosaurus:CVCL_9Y94 HCC3335 0 19816 -cellosaurus:CVCL_9Y95 HCC3350 0 19817 -cellosaurus:CVCL_9Y96 HCC3369 0 19818 -cellosaurus:CVCL_9Y97 HCC3388 0 19819 -cellosaurus:CVCL_9Y98 HCC3410 0 19820 -cellosaurus:CVCL_9Y99 HCC3418 0 19821 -cellosaurus:CVCL_9Z00 HCC3440 0 19822 -cellosaurus:CVCL_V726 HCC345 0 19823 -cellosaurus:CVCL_9Z01 HCC3498 0 19824 -cellosaurus:CVCL_9Z02 HCC3524 0 19825 -cellosaurus:CVCL_9Z03 HCC3531 0 19826 -cellosaurus:CVCL_VI90 HCC36 0 19827 -cellosaurus:CVCL_5134 HCC364 0 19828 -cellosaurus:CVCL_2059 HCC366 0 19829 -cellosaurus:CVCL_V727 HCC374 0 19830 -cellosaurus:CVCL_V728 HCC379 0 19831 -cellosaurus:CVCL_1267 HCC38 0 19832 -cellosaurus:CVCL_VG04 HCC40-CL 0 19833 -cellosaurus:CVCL_9Z04 HCC4000 0 19834 -cellosaurus:CVCL_9Z05 HCC4001 0 19835 -cellosaurus:CVCL_9Z06 HCC4002 0 19836 -cellosaurus:CVCL_9Z07 HCC4003 0 19837 -cellosaurus:CVCL_9Z08 HCC4004 0 19838 -cellosaurus:CVCL_9Z09 HCC4005 0 19839 -cellosaurus:CVCL_V579 HCC4017 0 19840 -cellosaurus:CVCL_V580 HCC4018 0 19841 -cellosaurus:CVCL_V581 HCC4019 0 19842 -cellosaurus:CVCL_9Z10 HCC4021 0 19843 -cellosaurus:CVCL_9Z11 HCC4034 0 19844 -cellosaurus:CVCL_9Z12 HCC4037 0 19845 -cellosaurus:CVCL_9Z13 HCC4038 0 19846 -cellosaurus:CVCL_9Z14 HCC4047 0 19847 -cellosaurus:CVCL_9Z15 HCC4054 0 19848 -cellosaurus:CVCL_9Z16 HCC4058 0 19849 -cellosaurus:CVCL_9Z17 HCC4059 0 19850 -cellosaurus:CVCL_V707 HCC407 0 19851 -cellosaurus:CVCL_9Z18 HCC4087 0 19852 -cellosaurus:CVCL_V733 HCC41 0 19853 -cellosaurus:CVCL_V734 HCC420 0 19854 -cellosaurus:CVCL_V735 HCC435 0 19855 -cellosaurus:CVCL_2060 HCC44 0 19856 -cellosaurus:CVCL_V736 HCC446 0 19857 -cellosaurus:CVCL_5135 HCC461 0 19858 -cellosaurus:CVCL_E050 HCC4977 0 19859 -cellosaurus:CVCL_5136 HCC515 0 19860 -cellosaurus:CVCL_V700 HCC590 0 19861 -cellosaurus:CVCL_V701 HCC597 0 19862 -cellosaurus:CVCL_V729 HCC630 0 19863 -cellosaurus:CVCL_V730 HCC653 0 19864 -cellosaurus:CVCL_1270 HCC70 0 19865 -cellosaurus:CVCL_V698 HCC711 0 19866 -cellosaurus:CVCL_3378 HCC712 0 19867 -cellosaurus:CVCL_V699 HCC815 0 19868 -cellosaurus:CVCL_V738 HCC824 0 19869 -cellosaurus:CVCL_V593 HCC826 0 19870 -cellosaurus:CVCL_V693 HCC845 0 19871 -cellosaurus:CVCL_V694 HCC850 0 19872 -cellosaurus:CVCL_V695 HCC853 0 19873 -cellosaurus:CVCL_V691 HCC880 0 19874 -cellosaurus:CVCL_V692 HCC889 0 19875 -cellosaurus:CVCL_V731 HCC89 0 19876 -cellosaurus:CVCL_V732 HCC90 0 19877 -cellosaurus:CVCL_A605 HCC9204 0 19878 -cellosaurus:CVCL_6945 HCC94 0 19879 -cellosaurus:CVCL_5137 HCC95 0 19880 -cellosaurus:CVCL_V697 HCC954 0 19881 -cellosaurus:CVCL_A354 HCC970 0 19882 -cellosaurus:CVCL_A606 HCC9724 0 19883 -cellosaurus:CVCL_V696 HCC973 0 19884 -cellosaurus:CVCL_V690 HCC985 0 19885 -cellosaurus:CVCL_6908 HCCC-9810 0 19886 -cellosaurus:CVCL_A8SM HCE-1(NM) 0 19887 -cellosaurus:CVCL_A355 HCE-3 0 19888 -cellosaurus:CVCL_1271 HCE-4 0 19889 -cellosaurus:CVCL_A356 HCE-5 0 19890 -cellosaurus:CVCL_A357 HCE-6 0 19891 -cellosaurus:CVCL_5138 HCE-7 0 19892 -cellosaurus:CVCL_A358 HCE-8 0 19893 -cellosaurus:CVCL_6909 HCe-8693 0 19894 -cellosaurus:CVCL_S846 HCE-9 0 19895 -cellosaurus:CVCL_WT68 HCF-MLp-N 0 19896 -cellosaurus:CVCL_5762 HCFMK-1 0 19897 -cellosaurus:CVCL_DF05 HCH-1 0 19898 -cellosaurus:CVCL_KV96 HCH-3 0 19899 -cellosaurus:CVCL_M256 HChol-Y1 0 19900 -cellosaurus:CVCL_C0ML HCINC/HL-017 0 19901 -cellosaurus:CVCL_0B40 HCLL-7876 0 19902 -cellosaurus:CVCL_M353 HCLO 0 19903 -cellosaurus:CVCL_EI72 HCLv-07 0 19904 -cellosaurus:CVCL_B7H4 HCM-MEC010 0 19905 -cellosaurus:CVCL_C1L1 HCM-SqCC010 0 19906 -cellosaurus:CVCL_2918 HCS-2 0 19907 -cellosaurus:CVCL_E261 HCS-2/8 0 19908 -cellosaurus:CVCL_E262 HCS-2/A 0 19909 -cellosaurus:CVCL_UF06 HCS1220 0 19910 -cellosaurus:CVCL_2919 HCSC-1 0 19911 -cellosaurus:CVCL_R729 HCT 116a 0 19912 -cellosaurus:CVCL_R730 HCT 116b 0 19913 -cellosaurus:CVCL_A607 HCT C 0 19914 -cellosaurus:CVCL_A608 HCT C Col 0 19915 -cellosaurus:CVCL_RB18 HCT R 0 19916 -cellosaurus:CVCL_5763 HCTK-1 0 19917 -cellosaurus:CVCL_M850 HCu 10 0 19918 -cellosaurus:CVCL_M851 HCu 13 0 19919 -cellosaurus:CVCL_M852 HCu 18 0 19920 -cellosaurus:CVCL_M853 HCu 22 0 19921 -cellosaurus:CVCL_M854 HCu 27 0 19922 -cellosaurus:CVCL_M855 HCu 33 0 19923 -cellosaurus:CVCL_M859 HCu 35 0 19924 -cellosaurus:CVCL_M856 HCu 37 0 19925 -cellosaurus:CVCL_M857 HCu 39 0 19926 -cellosaurus:CVCL_M860 HCu 57 0 19927 -cellosaurus:CVCL_A1IC HD-10 0 19928 -cellosaurus:CVCL_2921 HD-70 0 19929 -cellosaurus:CVCL_S506 HD-MB03 0 19930 -cellosaurus:CVCL_1273 HD-MY-Z 0 19931 -cellosaurus:CVCL_A372 HDC-101 0 19932 -cellosaurus:CVCL_A373 HDC-102 0 19933 -cellosaurus:CVCL_A374 HDC-108 0 19934 -cellosaurus:CVCL_A375 HDC-111 0 19935 -cellosaurus:CVCL_A376 HDC-114 0 19936 -cellosaurus:CVCL_A377 HDC-117 0 19937 -cellosaurus:CVCL_A378 HDC-119 0 19938 -cellosaurus:CVCL_A379 HDC-120 0 19939 -cellosaurus:CVCL_W278 HDC-127 0 19940 -cellosaurus:CVCL_A380 HDC-133 0 19941 -cellosaurus:CVCL_A381 HDC-135 0 19942 -cellosaurus:CVCL_A382 HDC-137 0 19943 -cellosaurus:CVCL_A383 HDC-142 0 19944 -cellosaurus:CVCL_A384 HDC-143 0 19945 -cellosaurus:CVCL_A361 HDC-15 0 19946 -cellosaurus:CVCL_W279 HDC-150 0 19947 -cellosaurus:CVCL_A362 HDC-54 0 19948 -cellosaurus:CVCL_A363 HDC-57 0 19949 -cellosaurus:CVCL_A364 HDC-63 0 19950 -cellosaurus:CVCL_A365 HDC-73 0 19951 -cellosaurus:CVCL_A366 HDC-75 0 19952 -cellosaurus:CVCL_A367 HDC-77 0 19953 -cellosaurus:CVCL_A368 HDC-82 0 19954 -cellosaurus:CVCL_A369 HDC-87 0 19955 -cellosaurus:CVCL_A370 HDC-90 0 19956 -cellosaurus:CVCL_A371 HDC-97 0 19957 -cellosaurus:CVCL_M697 HDLM-3 0 19958 -cellosaurus:CVCL_D019 HDN-16 0 19959 -cellosaurus:CVCL_D020 HDN-3 0 19960 -cellosaurus:CVCL_2067 HDQ-P1 0 19961 -cellosaurus:CVCL_W592 HDS 0 19962 -cellosaurus:CVCL_N814 HEC 0 19963 -cellosaurus:CVCL_2923 HEC-108 0 19964 -cellosaurus:CVCL_2924 HEC-116 0 19965 -cellosaurus:CVCL_2925 HEC-151 0 19966 -cellosaurus:CVCL_2926 HEC-155 0 19967 -cellosaurus:CVCL_8313 HEC-180 0 19968 -cellosaurus:CVCL_2927 HEC-251 0 19969 -cellosaurus:CVCL_2928 HEC-265 0 19970 -cellosaurus:CVCL_T734 HEC-46 0 19971 -cellosaurus:CVCL_2930 HEC-59 0 19972 -cellosaurus:CVCL_2931 HEC-6 0 19973 -cellosaurus:CVCL_2932 HEC-88nu 0 19974 -cellosaurus:CVCL_M603 HEEM 0 19975 -cellosaurus:CVCL_EI25 Hep 40 0 19976 -cellosaurus:CVCL_JB76 HEp-1 0 19977 -cellosaurus:CVCL_A1RR Hep-11 0 19978 -cellosaurus:CVCL_A1RS Hep-12 0 19979 -cellosaurus:CVCL_JB77 HEp-3 0 19980 -cellosaurus:CVCL_JC28 HEp-5 0 19981 -cellosaurus:CVCL_Y143 Hep-KANO clone 1 0 19982 -cellosaurus:CVCL_Y144 Hep-KANO clone 2 0 19983 -cellosaurus:CVCL_Y145 Hep-Tabata 0 19984 -cellosaurus:CVCL_S801 Hep-Y1 0 19985 -cellosaurus:CVCL_S802 Hep-Y2 0 19986 -cellosaurus:CVCL_HE80 Hep10 0 19987 -cellosaurus:CVCL_D139 Hep293TT 0 19988 -cellosaurus:CVCL_TZ61 HepF 0 19989 -cellosaurus:CVCL_M185 HEPFT 0 19990 -cellosaurus:CVCL_G003 HepT1 0 19991 -cellosaurus:CVCL_G004 HepT3 0 19992 -cellosaurus:CVCL_M170 HepU1 0 19993 -cellosaurus:CVCL_M171 HepU2 0 19994 -cellosaurus:CVCL_F000 HeRo [Human Merkel cell carcinoma] 0 19995 -cellosaurus:CVCL_W380 HES [Human endometrial carcinoma] 0 19996 -cellosaurus:CVCL_Y193 HEVE-II 0 19997 -cellosaurus:CVCL_0J32 Hewga-CCS 0 19998 -cellosaurus:CVCL_UI84 HF 0 19999 -cellosaurus:CVCL_M663 HF-28 0 20000 -cellosaurus:CVCL_M660 HF-4a 0 20001 -cellosaurus:CVCL_6257 HFB-1 0 20002 -cellosaurus:CVCL_VT01 HFUA 0 20003 -cellosaurus:CVCL_0C13 HG-E 0 20004 -cellosaurus:CVCL_C827 HGC-25 0 20005 -cellosaurus:CVCL_IR54 HGG-02 0 20006 -cellosaurus:CVCL_A609 HGT-1 0 20007 -cellosaurus:CVCL_1J99 HGUE-C-1 0 20008 -cellosaurus:CVCL_1280 HH [Human lymphoma] 0 20009 -cellosaurus:CVCL_DF85 HH-B2 0 20010 -cellosaurus:CVCL_X531 HH050 0 20011 -cellosaurus:CVCL_X532 HH244 0 20012 -cellosaurus:CVCL_Y513 HH315 0 20013 -cellosaurus:CVCL_X533 HH332 0 20014 -cellosaurus:CVCL_Y514 HH375 0 20015 -cellosaurus:CVCL_4839 HH870 0 20016 -cellosaurus:CVCL_1U94 HHC6548 T1 M1 0 20017 -cellosaurus:CVCL_9V82 HHCL-PI 48 0 20018 -cellosaurus:CVCL_M339 HHP-16 0 20019 -cellosaurus:CVCL_M340 HHP-40 0 20020 -cellosaurus:CVCL_M341 HHS-20 0 20021 -cellosaurus:CVCL_LJ90 HHS-25 0 20022 -cellosaurus:CVCL_M342 HHS-26 0 20023 -cellosaurus:CVCL_M343 HHS-56 0 20024 -cellosaurus:CVCL_M345 HHS-89 0 20025 -cellosaurus:CVCL_3866 HHUA 0 20026 -cellosaurus:CVCL_W446 HHUABM 0 20027 -cellosaurus:CVCL_U340 HHUS 0 20028 -cellosaurus:CVCL_A1GY HI 0 20029 -cellosaurus:CVCL_U566 HIBCPP 0 20030 -cellosaurus:CVCL_WJ24 HIC 0 20031 -cellosaurus:CVCL_C0IA HIE1 0 20032 -cellosaurus:CVCL_X933 HIG 0 20033 -cellosaurus:CVCL_E061 HIRS-PB 0 20034 -cellosaurus:CVCL_W383 HIUML 0 20035 -cellosaurus:CVCL_SA76 HJS-1 0 20036 -cellosaurus:CVCL_2943 HKA-1 0 20037 -cellosaurus:CVCL_5290 HKB-1 0 20038 -cellosaurus:CVCL_8162 HKBMM 0 20039 -cellosaurus:CVCL_E308 HKCI-1 0 20040 -cellosaurus:CVCL_SA08 HKCI-10 0 20041 -cellosaurus:CVCL_SA10 HKCI-11 0 20042 -cellosaurus:CVCL_M173 HKCI-2 0 20043 -cellosaurus:CVCL_M174 HKCI-3 0 20044 -cellosaurus:CVCL_M175 HKCI-4 0 20045 -cellosaurus:CVCL_SA04 HKCI-6 0 20046 -cellosaurus:CVCL_SA05 HKCI-7 0 20047 -cellosaurus:CVCL_SA06 HKCI-8 0 20048 -cellosaurus:CVCL_SA07 HKCI-9 0 20049 -cellosaurus:CVCL_SA00 HKCI-C1 0 20050 -cellosaurus:CVCL_SA01 HKCI-C2 0 20051 -cellosaurus:CVCL_SA03 HKCI-C3 0 20052 -cellosaurus:CVCL_D571 HKESC-2 0 20053 -cellosaurus:CVCL_D572 HKESC-3 0 20054 -cellosaurus:CVCL_E304 HKESC-4 0 20055 -cellosaurus:CVCL_E329 HKGZ-CC 0 20056 -cellosaurus:CVCL_W460 HKMFH 0 20057 -cellosaurus:CVCL_W524 HKMS 0 20058 -cellosaurus:CVCL_VT02 HKOA 0 20059 -cellosaurus:CVCL_M686 HKRT-II 0 20060 -cellosaurus:CVCL_Y024 HKT-2 0 20061 -cellosaurus:CVCL_Y025 HKT-3 0 20062 -cellosaurus:CVCL_Y026 HKT-5 0 20063 -cellosaurus:CVCL_Y027 HKT-6 0 20064 -cellosaurus:CVCL_Y028 HKT-7 0 20065 -cellosaurus:CVCL_Y029 HKT-8 0 20066 -cellosaurus:CVCL_VT03 HKUA 0 20067 -cellosaurus:CVCL_A392 HKULC 1 0 20068 -cellosaurus:CVCL_A393 HKULC 2 0 20069 -cellosaurus:CVCL_A394 HKULC 3 0 20070 -cellosaurus:CVCL_A395 HKULC 4 0 20071 -cellosaurus:CVCL_X942 HKUS 0 20072 -cellosaurus:CVCL_X144 HL165 0 20073 -cellosaurus:CVCL_M510 HL407 0 20074 -cellosaurus:CVCL_M511 HL461 0 20075 -cellosaurus:CVCL_6647 HLaC-78 0 20076 -cellosaurus:CVCL_6649 HLaC-82 0 20077 -cellosaurus:CVCL_WZ42 HLC-2 0 20078 -cellosaurus:CVCL_1J92 HLCZ01 0 20079 -cellosaurus:CVCL_VN75 HLN-ATL-O 0 20080 -cellosaurus:CVCL_WT56 HLN-GAC-5 0 20081 -cellosaurus:CVCL_WT64 HLN-Ret-1 0 20082 -cellosaurus:CVCL_WT65 HLN-Ret-2 0 20083 -cellosaurus:CVCL_X751 HLN-STL-C 0 20084 -cellosaurus:CVCL_WT50 HLT-Oat-1 0 20085 -cellosaurus:CVCL_WT51 HLT-Oat-2 0 20086 -cellosaurus:CVCL_M679 HM [Human gestational choriocarcinoma] 0 20087 -cellosaurus:CVCL_IW97 HM [Human mesothelioma] 0 20088 -cellosaurus:CVCL_W442 HM 162 0 20089 -cellosaurus:CVCL_VI96 HM-1 [Human cervical carcinoma] 0 20090 -cellosaurus:CVCL_RX75 HM02 0 20091 -cellosaurus:CVCL_5620 HM3KO 0 20092 -cellosaurus:CVCL_A1SA HM4KO 0 20093 -cellosaurus:CVCL_RX76 HM51 0 20094 -cellosaurus:CVCL_A1SB HM5KO 0 20095 -cellosaurus:CVCL_A1SC HM6KO 0 20096 -cellosaurus:CVCL_M378 HMA-1 0 20097 -cellosaurus:CVCL_2949 HMC-1-8 0 20098 -cellosaurus:CVCL_WW77 HMC-2-1 0 20099 -cellosaurus:CVCL_B402 HMCa 0 20100 -cellosaurus:CVCL_3317 HMCB 0 20101 -cellosaurus:CVCL_M576 hmel11 0 20102 -cellosaurus:CVCL_D723 hmel9 0 20103 -cellosaurus:CVCL_W288 HMG 0 20104 -cellosaurus:CVCL_X938 HMKOA 0 20105 -cellosaurus:CVCL_8163 HMMME 0 20106 -cellosaurus:CVCL_W379 HMMMF 0 20107 -cellosaurus:CVCL_A610 HMOA 0 20108 -cellosaurus:CVCL_A2BF HMOS-1 0 20109 -cellosaurus:CVCL_6E82 HMOS-A 0 20110 -cellosaurus:CVCL_6E83 HMOS-P 0 20111 -cellosaurus:CVCL_UD56 HMS-1 0 20112 -cellosaurus:CVCL_UD59 HMS-3 0 20113 -cellosaurus:CVCL_UD68 HMS-4 0 20114 -cellosaurus:CVCL_UD57 HMS-XC 0 20115 -cellosaurus:CVCL_UH26 HMS001 0 20116 -cellosaurus:CVCL_1282 HMV-II 0 20117 -cellosaurus:CVCL_S803 HMVC 0 20118 -cellosaurus:CVCL_2950 HMY-1 0 20119 -cellosaurus:CVCL_D850 HMY-2 0 20120 -cellosaurus:CVCL_1283 HN 0 20121 -cellosaurus:CVCL_8123 HN-1 0 20122 -cellosaurus:CVCL_8124 HN-10 0 20123 -cellosaurus:CVCL_W944 HN-11 0 20124 -cellosaurus:CVCL_W297 HN-15 0 20125 -cellosaurus:CVCL_EJ04 HN-16 0 20126 -cellosaurus:CVCL_8126 HN-3 0 20127 -cellosaurus:CVCL_8127 HN-4 0 20128 -cellosaurus:CVCL_8129 HN-6 0 20129 -cellosaurus:CVCL_EJ03 HN-6n1 0 20130 -cellosaurus:CVCL_A1TI HN-6n2 0 20131 -cellosaurus:CVCL_A1TJ HN-6Rr 0 20132 -cellosaurus:CVCL_8130 HN-7 0 20133 -cellosaurus:CVCL_8131 HN-8 0 20134 -cellosaurus:CVCL_8132 HN-9 0 20135 -cellosaurus:CVCL_RK49 HN-SCC-104 0 20136 -cellosaurus:CVCL_RK50 HN-SCC-109A 0 20137 -cellosaurus:CVCL_RK51 HN-SCC-131 0 20138 -cellosaurus:CVCL_RK52 HN-SCC-135 0 20139 -cellosaurus:CVCL_RK53 HN-SCC-143 0 20140 -cellosaurus:CVCL_RK54 HN-SCC-147 0 20141 -cellosaurus:CVCL_RK55 HN-SCC-151 0 20142 -cellosaurus:CVCL_RK56 HN-SCC-152 0 20143 -cellosaurus:CVCL_RK57 HN-SCC-153 0 20144 -cellosaurus:CVCL_RK58 HN-SCC-161 0 20145 -cellosaurus:CVCL_RK59 HN-SCC-166 0 20146 -cellosaurus:CVCL_RK60 HN-SCC-170A 0 20147 -cellosaurus:CVCL_RK61 HN-SCC-170B 0 20148 -cellosaurus:CVCL_RK44 HN-SCC-19 0 20149 -cellosaurus:CVCL_UT88 HN-SCC-257 0 20150 -cellosaurus:CVCL_RK45 HN-SCC-28 0 20151 -cellosaurus:CVCL_RK62 HN-SCC-288B 0 20152 -cellosaurus:CVCL_V279 HN-SCC-29 0 20153 -cellosaurus:CVCL_RK63 HN-SCC-294 0 20154 -cellosaurus:CVCL_RK64 HN-SCC-296A 0 20155 -cellosaurus:CVCL_RK43 HN-SCC-3 0 20156 -cellosaurus:CVCL_UT89 HN-SCC-301B 0 20157 -cellosaurus:CVCL_RK46 HN-SCC-42 0 20158 -cellosaurus:CVCL_RK47 HN-SCC-58 0 20159 -cellosaurus:CVCL_V280 HN-SCC-68 0 20160 -cellosaurus:CVCL_RK48 HN-SCC-80 0 20161 -cellosaurus:CVCL_IS30 HN4 0 20162 -cellosaurus:CVCL_IS31 HN51 0 20163 -cellosaurus:CVCL_0308 HNE-1 0 20164 -cellosaurus:CVCL_FA07 HNE-2 0 20165 -cellosaurus:CVCL_FA08 HNE-3 0 20166 -cellosaurus:CVCL_WT61 HNGA 0 20167 -cellosaurus:CVCL_D207 HNO124 0 20168 -cellosaurus:CVCL_D208 HNO136 0 20169 -cellosaurus:CVCL_D209 HNO147 0 20170 -cellosaurus:CVCL_D210 HNO150 0 20171 -cellosaurus:CVCL_D211 HNO160 0 20172 -cellosaurus:CVCL_D212 HNO180 0 20173 -cellosaurus:CVCL_D213 HNO199 0 20174 -cellosaurus:CVCL_D214 HNO206 0 20175 -cellosaurus:CVCL_D215 HNO210 0 20176 -cellosaurus:CVCL_D216 HNO211 0 20177 -cellosaurus:CVCL_D217 HNO212 0 20178 -cellosaurus:CVCL_D218 HNO222 0 20179 -cellosaurus:CVCL_D219 HNO223 0 20180 -cellosaurus:CVCL_D220 HNO237 0 20181 -cellosaurus:CVCL_D221 HNO258 0 20182 -cellosaurus:CVCL_D222 HNO268 0 20183 -cellosaurus:CVCL_D223 HNO306 0 20184 -cellosaurus:CVCL_D224 HNO41 0 20185 -cellosaurus:CVCL_D225 HNO89 0 20186 -cellosaurus:CVCL_D226 HNO91 0 20187 -cellosaurus:CVCL_D227 HNO97 0 20188 -cellosaurus:CVCL_S919 HNOA 0 20189 -cellosaurus:CVCL_WY81 HNROA 0 20190 -cellosaurus:CVCL_2071 HNT-34 0 20191 -cellosaurus:CVCL_M698 Ho 0 20192 -cellosaurus:CVCL_1E42 HO #1 0 20193 -cellosaurus:CVCL_1284 HO-1-N-1 0 20194 -cellosaurus:CVCL_2784 HO-1-u-1 0 20195 -cellosaurus:CVCL_A2CK HO1 0 20196 -cellosaurus:CVCL_W086 HO275 0 20197 -cellosaurus:CVCL_5454 HOC-1 0 20198 -cellosaurus:CVCL_8692 HOC-21 0 20199 -cellosaurus:CVCL_5455 HOC-7 0 20200 -cellosaurus:CVCL_5456 HOC-8 0 20201 -cellosaurus:CVCL_A5HC HOC-I 0 20202 -cellosaurus:CVCL_S689 HOC1119 0 20203 -cellosaurus:CVCL_8694 HOC1208 0 20204 -cellosaurus:CVCL_JK56 HOC1A 0 20205 -cellosaurus:CVCL_8695 HOC313 0 20206 -cellosaurus:CVCL_8696 HOC512 0 20207 -cellosaurus:CVCL_8698 HOC605 0 20208 -cellosaurus:CVCL_8699 HOC621 0 20209 -cellosaurus:CVCL_8703 HOC815 0 20210 -cellosaurus:CVCL_8704 HOC927 0 20211 -cellosaurus:CVCL_M684 HOCC 0 20212 -cellosaurus:CVCL_4840 HOCE 0 20213 -cellosaurus:CVCL_D354 HOG 0 20214 -cellosaurus:CVCL_JF79 HOG-1 0 20215 -cellosaurus:CVCL_B403 HOK-1 0 20216 -cellosaurus:CVCL_X902 HOKN9 0 20217 -cellosaurus:CVCL_8705 HOKUG 0 20218 -cellosaurus:CVCL_4842 HOMM 0 20219 -cellosaurus:CVCL_IN52 HOON 0 20220 -cellosaurus:CVCL_H642 HOP-18 0 20221 -cellosaurus:CVCL_H643 HOP-19 0 20222 -cellosaurus:CVCL_YA86 HOP-27 0 20223 -cellosaurus:CVCL_1285 HOP-62 0 20224 -cellosaurus:CVCL_1286 HOP-92 0 20225 -cellosaurus:CVCL_IW50 HOSC1 0 20226 -cellosaurus:CVCL_A2BI HOSM-1 0 20227 -cellosaurus:CVCL_A2BJ HOSM-2 0 20228 -cellosaurus:CVCL_A2BK HOSMN-1C 0 20229 -cellosaurus:CVCL_A8UN HOT 0 20230 -cellosaurus:CVCL_A2BN HOT-1 0 20231 -cellosaurus:CVCL_8707 HOTC-3 0 20232 -cellosaurus:CVCL_3867 HOUA-I 0 20233 -cellosaurus:CVCL_0B90 HOV 0 20234 -cellosaurus:CVCL_C309 HP-1 0 20235 -cellosaurus:CVCL_C310 HP-2 0 20236 -cellosaurus:CVCL_C311 HP-3 0 20237 -cellosaurus:CVCL_W418 HPA [Human oral cavity adenoma] 0 20238 -cellosaurus:CVCL_ZV97 HPA [Human pituitary adenoma] 0 20239 -cellosaurus:CVCL_M121 HPaC-79 0 20240 -cellosaurus:CVCL_VN78 HPB-ATL-2 0 20241 -cellosaurus:CVCL_VN76 HPB-ATL-O 0 20242 -cellosaurus:CVCL_VN77 HPB-ATL-T 0 20243 -cellosaurus:CVCL_VN79 HPB-CTL-I 0 20244 -cellosaurus:CVCL_WU13 HPB-MLp-2 0 20245 -cellosaurus:CVCL_RL83 HPB-MLp-W 0 20246 -cellosaurus:CVCL_7960 HPB-Null 0 20247 -cellosaurus:CVCL_M169 HPC-36 0 20248 -cellosaurus:CVCL_6912 HPC-Y0 0 20249 -cellosaurus:CVCL_6913 HPC-Y1 0 20250 -cellosaurus:CVCL_6914 HPC-Y11 0 20251 -cellosaurus:CVCL_6915 HPC-Y15 0 20252 -cellosaurus:CVCL_6916 HPC-Y19 0 20253 -cellosaurus:CVCL_A069 HPC-Y21 0 20254 -cellosaurus:CVCL_A068 HPC-Y23 0 20255 -cellosaurus:CVCL_6917 HPC-Y25 0 20256 -cellosaurus:CVCL_A066 HPC-Y3 0 20257 -cellosaurus:CVCL_6918 HPC-Y5 0 20258 -cellosaurus:CVCL_6919 HPC-Y9 0 20259 -cellosaurus:CVCL_6920 HPC-YP 0 20260 -cellosaurus:CVCL_6921 HPC-YS 0 20261 -cellosaurus:CVCL_A070 HPC-YT 0 20262 -cellosaurus:CVCL_WL66 HPE-15 0 20263 -cellosaurus:CVCL_WT53 HPE-GAC-2 0 20264 -cellosaurus:CVCL_WT54 HPE-GAC-3 0 20265 -cellosaurus:CVCL_WT55 HPE-GAC-4 0 20266 -cellosaurus:CVCL_WT57 HPE-GAC-T 0 20267 -cellosaurus:CVCL_WT69 HPE-MLp-K 0 20268 -cellosaurus:CVCL_WT70 HPE-MLp-M 0 20269 -cellosaurus:CVCL_WT66 HPE-Ret-3 0 20270 -cellosaurus:CVCL_WT47 HPL-Ad-K 0 20271 -cellosaurus:CVCL_WT48 HPL-GCC-1 0 20272 -cellosaurus:CVCL_WT49 HPL-GCC-2 0 20273 -cellosaurus:CVCL_WT62 HPL-Hod-1 0 20274 -cellosaurus:CVCL_WT63 HPL-Hod-2 0 20275 -cellosaurus:CVCL_WT58 HPL-MmC 0 20276 -cellosaurus:CVCL_WT52 HPL-Oat-3 0 20277 -cellosaurus:CVCL_9U05 HPR600 0 20278 -cellosaurus:CVCL_WL61 HPS-11 0 20279 -cellosaurus:CVCL_W821 HR-8348 0 20280 -cellosaurus:CVCL_2507 HRA-16 0 20281 -cellosaurus:CVCL_IR28 HRC-99 0 20282 -cellosaurus:CVCL_IS22 HRC24 0 20283 -cellosaurus:CVCL_IS23 HRC31 0 20284 -cellosaurus:CVCL_IS24 HRC45 0 20285 -cellosaurus:CVCL_IS25 HRC63 0 20286 -cellosaurus:CVCL_IS26 HRC78 0 20287 -cellosaurus:CVCL_A1FV HRI 0 20288 -cellosaurus:CVCL_1D08 HROBMC01 0 20289 -cellosaurus:CVCL_LP00 HROBMC01 T0 M4 0 20290 -cellosaurus:CVCL_2U69 HROBML01 0 20291 -cellosaurus:CVCL_1D10 HROC103 T0 M1 0 20292 -cellosaurus:CVCL_1V01 HROC103Met 0 20293 -cellosaurus:CVCL_1D11 HROC107 cT0 M2 0 20294 -cellosaurus:CVCL_VQ90 HROC111 T4 M1 0 20295 -cellosaurus:CVCL_VQ91 HROC111Met1 T0 M2 0 20296 -cellosaurus:CVCL_1U83 HROC112Met T0 M2 0 20297 -cellosaurus:CVCL_1D12 HROC126 0 20298 -cellosaurus:CVCL_1D13 HROC131 T0 M3 0 20299 -cellosaurus:CVCL_1G09 HROC147 T0 M1 0 20300 -cellosaurus:CVCL_1D14 HROC147Met 0 20301 -cellosaurus:CVCL_1D15 HROC173 0 20302 -cellosaurus:CVCL_0B45 HROC18 0 20303 -cellosaurus:CVCL_1D16 HROC183 0 20304 -cellosaurus:CVCL_1D17 HROC183 T0 M2 0 20305 -cellosaurus:CVCL_1U84 HROC212 0 20306 -cellosaurus:CVCL_1U85 HROC212 T0 M1 0 20307 -cellosaurus:CVCL_VQ92 HROC217 T1 M2 0 20308 -cellosaurus:CVCL_VQ93 HROC222 T1 M2 0 20309 -cellosaurus:CVCL_1U93 HROC239 T0 M1 0 20310 -cellosaurus:CVCL_S853 HROC24 0 20311 -cellosaurus:CVCL_1U80 HROC24 T1 M1 0 20312 -cellosaurus:CVCL_AN14 HROC24 T3 M1 #2 0 20313 -cellosaurus:CVCL_1U96 HROC257 0 20314 -cellosaurus:CVCL_1U97 HROC257 T0 M1 0 20315 -cellosaurus:CVCL_1U86 HROC277 T0 M1 0 20316 -cellosaurus:CVCL_1U87 HROC277Met1 T0 M2 0 20317 -cellosaurus:CVCL_1U88 HROC277Met2 0 20318 -cellosaurus:CVCL_AP59 HROC277Met2 T0 M1 0 20319 -cellosaurus:CVCL_1U89 HROC278 T0 M1 0 20320 -cellosaurus:CVCL_1U90 HROC278Met T2 M2 0 20321 -cellosaurus:CVCL_1U91 HROC284Met 0 20322 -cellosaurus:CVCL_1U92 HROC285 T0 M2 0 20323 -cellosaurus:CVCL_1V02 HROC296 0 20324 -cellosaurus:CVCL_VQ94 HROC300 T2 M1 0 20325 -cellosaurus:CVCL_VQ95 HROC300Met T3 M4 0 20326 -cellosaurus:CVCL_1U95 HROC309 0 20327 -cellosaurus:CVCL_1U98 HROC313Met 0 20328 -cellosaurus:CVCL_AP60 HROC313Met1 T0 M1 0 20329 -cellosaurus:CVCL_1D06 HROC32 0 20330 -cellosaurus:CVCL_1D07 HROC32 T3 M1 0 20331 -cellosaurus:CVCL_1V00 HROC324 0 20332 -cellosaurus:CVCL_1D18 HROC334 0 20333 -cellosaurus:CVCL_AN13 HROC348 0 20334 -cellosaurus:CVCL_1U99 HROC348Met 0 20335 -cellosaurus:CVCL_AP61 HROC357 0 20336 -cellosaurus:CVCL_UC02 HROC357 T0 M1 0 20337 -cellosaurus:CVCL_AP62 HROC364 0 20338 -cellosaurus:CVCL_VQ96 HROC370 0 20339 -cellosaurus:CVCL_VQ97 HROC370 T0 M2 0 20340 -cellosaurus:CVCL_VQ98 HROC374 0 20341 -cellosaurus:CVCL_VQ99 HROC383 0 20342 -cellosaurus:CVCL_VR00 HROC383 T0 M2 0 20343 -cellosaurus:CVCL_VR01 HROC385Met1 0 20344 -cellosaurus:CVCL_1U81 HROC39 0 20345 -cellosaurus:CVCL_1U82 HROC39 T0 M2 0 20346 -cellosaurus:CVCL_1G01 HROC40 0 20347 -cellosaurus:CVCL_1D20 HROC43 0 20348 -cellosaurus:CVCL_1D21 HROC46 T0 M1 0 20349 -cellosaurus:CVCL_1G02 HROC50 T1 M5 0 20350 -cellosaurus:CVCL_1G03 HROC57 0 20351 -cellosaurus:CVCL_1G04 HROC59 T1 M1 0 20352 -cellosaurus:CVCL_1G05 HROC60 0 20353 -cellosaurus:CVCL_1G06 HROC69 0 20354 -cellosaurus:CVCL_1G07 HROC69 T0 M2 0 20355 -cellosaurus:CVCL_1G08 HROC80 T1 M1 0 20356 -cellosaurus:CVCL_0B46 HROC85 0 20357 -cellosaurus:CVCL_0B47 HROC86 0 20358 -cellosaurus:CVCL_S854 HROC87 T0 M2 0 20359 -cellosaurus:CVCL_4U38 HROG02 0 20360 -cellosaurus:CVCL_4U39 HROG04 0 20361 -cellosaurus:CVCL_4U40 HROG05 0 20362 -cellosaurus:CVCL_4U41 HROG06 0 20363 -cellosaurus:CVCL_B7FP HROG06 T0 M2 0 20364 -cellosaurus:CVCL_4U42 HROG07 0 20365 -cellosaurus:CVCL_4U43 HROG10 0 20366 -cellosaurus:CVCL_B7FR HROG12 T0 M1 0 20367 -cellosaurus:CVCL_4U44 HROG13 0 20368 -cellosaurus:CVCL_LD58 HROG15 0 20369 -cellosaurus:CVCL_LD59 HROG16 0 20370 -cellosaurus:CVCL_4U45 HROG17 0 20371 -cellosaurus:CVCL_B7FQ HROG17 T1 M1 0 20372 -cellosaurus:CVCL_4U46 HROG24 0 20373 -cellosaurus:CVCL_4U47 HROG33 0 20374 -cellosaurus:CVCL_4U48 HROG33 T0 M1 0 20375 -cellosaurus:CVCL_4U49 HROG36 0 20376 -cellosaurus:CVCL_4U50 HROG38 0 20377 -cellosaurus:CVCL_4U51 HROG59 0 20378 -cellosaurus:CVCL_4U52 HROG63 0 20379 -cellosaurus:CVCL_2U70 HROGas03 0 20380 -cellosaurus:CVCL_2U71 HROGas16 0 20381 -cellosaurus:CVCL_2U72 HROHep03 0 20382 -cellosaurus:CVCL_VQ81 HROP04 T0 M1 0 20383 -cellosaurus:CVCL_W404 Hs 0 20384 -cellosaurus:CVCL_N606 Hs 101.T 0 20385 -cellosaurus:CVCL_N499 Hs 126.T 0 20386 -cellosaurus:CVCL_0646 Hs 127.T 0 20387 -cellosaurus:CVCL_N305 Hs 13.T 0 20388 -cellosaurus:CVCL_0648 Hs 132.T 0 20389 -cellosaurus:CVCL_0650 Hs 14.T 0 20390 -cellosaurus:CVCL_S296 Hs 140.T 0 20391 -cellosaurus:CVCL_N635 Hs 141.T 0 20392 -cellosaurus:CVCL_N637 Hs 148.T 0 20393 -cellosaurus:CVCL_0655 Hs 15.T 0 20394 -cellosaurus:CVCL_N567 Hs 175.T 0 20395 -cellosaurus:CVCL_S299 Hs 183.T 0 20396 -cellosaurus:CVCL_0668 Hs 184.T 0 20397 -cellosaurus:CVCL_N466 Hs 185.T 0 20398 -cellosaurus:CVCL_N467 Hs 187.T 0 20399 -cellosaurus:CVCL_0670 Hs 188.T 0 20400 -cellosaurus:CVCL_0671 Hs 190.T 0 20401 -cellosaurus:CVCL_N579 Hs 191.T 0 20402 -cellosaurus:CVCL_N580 Hs 192.T 0 20403 -cellosaurus:CVCL_0673 Hs 195.T 0 20404 -cellosaurus:CVCL_N582 Hs 197.T 0 20405 -cellosaurus:CVCL_0676 Hs 200.T 0 20406 -cellosaurus:CVCL_N460 Hs 205.T 0 20407 -cellosaurus:CVCL_S445 Hs 206.T 0 20408 -cellosaurus:CVCL_3519 Hs 207.T 0 20409 -cellosaurus:CVCL_N468 Hs 210.T 0 20410 -cellosaurus:CVCL_N647 Hs 214.T 0 20411 -cellosaurus:CVCL_N469 Hs 217.T 0 20412 -cellosaurus:CVCL_0692 Hs 219.T 0 20413 -cellosaurus:CVCL_N653 Hs 224.T 0 20414 -cellosaurus:CVCL_N470 Hs 227.T 0 20415 -cellosaurus:CVCL_0697 Hs 228.T 0 20416 -cellosaurus:CVCL_M903 Hs 237.T 0 20417 -cellosaurus:CVCL_M899 Hs 238.T 0 20418 -cellosaurus:CVCL_M901 Hs 239.Pe 0 20419 -cellosaurus:CVCL_M902 Hs 240.Pe 0 20420 -cellosaurus:CVCL_N471 Hs 241.T 0 20421 -cellosaurus:CVCL_N618 Hs 242T 0 20422 -cellosaurus:CVCL_M900 Hs 243.T 0 20423 -cellosaurus:CVCL_N277 Hs 246.T 0 20424 -cellosaurus:CVCL_N655 Hs 248.T 0 20425 -cellosaurus:CVCL_N304 Hs 249.T 0 20426 -cellosaurus:CVCL_N521 Hs 25.T 0 20427 -cellosaurus:CVCL_N472 Hs 252.T 0 20428 -cellosaurus:CVCL_S447 Hs 254.T 0 20429 -cellosaurus:CVCL_0708 Hs 257.T 0 20430 -cellosaurus:CVCL_N657 Hs 265.T 0 20431 -cellosaurus:CVCL_0709 Hs 268.T 0 20432 -cellosaurus:CVCL_0714 Hs 280.T 0 20433 -cellosaurus:CVCL_0716 Hs 284.Pe 0 20434 -cellosaurus:CVCL_N661 Hs 285.T 0 20435 -cellosaurus:CVCL_S454 Hs 291.T 0 20436 -cellosaurus:CVCL_N663 Hs 293.T 0 20437 -cellosaurus:CVCL_0331 Hs 294T 0 20438 -cellosaurus:CVCL_0718 Hs 295.T 0 20439 -cellosaurus:CVCL_0720 Hs 3.T 0 20440 -cellosaurus:CVCL_0721 Hs 313.T 0 20441 -cellosaurus:CVCL_0722 Hs 319.T 0 20442 -cellosaurus:CVCL_0723 Hs 324.T 0 20443 -cellosaurus:CVCL_0725 Hs 329.T 0 20444 -cellosaurus:CVCL_S293 Hs 34.T 0 20445 -cellosaurus:CVCL_N807 Hs 341.T 0 20446 -cellosaurus:CVCL_0727 Hs 344.T 0 20447 -cellosaurus:CVCL_N611 Hs 347.T 0 20448 -cellosaurus:CVCL_N525 Hs 35.T 0 20449 -cellosaurus:CVCL_0728 Hs 350.T 0 20450 -cellosaurus:CVCL_N614 Hs 355.T 0 20451 -cellosaurus:CVCL_0729 Hs 357.T 0 20452 -cellosaurus:CVCL_N526 Hs 36.T 0 20453 -cellosaurus:CVCL_0730 Hs 362.T 0 20454 -cellosaurus:CVCL_0733 Hs 371.T 0 20455 -cellosaurus:CVCL_N810 Hs 377.T 0 20456 -cellosaurus:CVCL_0735 Hs 38.T 0 20457 -cellosaurus:CVCL_N683 Hs 382.T 0 20458 -cellosaurus:CVCL_N684 Hs 383.T 0 20459 -cellosaurus:CVCL_N685 Hs 385.T 0 20460 -cellosaurus:CVCL_0737 Hs 387.T 0 20461 -cellosaurus:CVCL_N615 Hs 388.T 0 20462 -cellosaurus:CVCL_0740 Hs 39.T 0 20463 -cellosaurus:CVCL_3520 Hs 398.T 0 20464 -cellosaurus:CVCL_N475 Hs 402.T 0 20465 -cellosaurus:CVCL_0755 Hs 414.T 0 20466 -cellosaurus:CVCL_0757 Hs 416.T 0 20467 -cellosaurus:CVCL_S294 Hs 42.T 0 20468 -cellosaurus:CVCL_N617 Hs 422.T 0 20469 -cellosaurus:CVCL_N691 Hs 425.T 0 20470 -cellosaurus:CVCL_N692 Hs 426.T 0 20471 -cellosaurus:CVCL_S453 Hs 430.T 0 20472 -cellosaurus:CVCL_0759 Hs 431.T 0 20473 -cellosaurus:CVCL_2256 Hs 432.T 0 20474 -cellosaurus:CVCL_S451 Hs 439.T 0 20475 -cellosaurus:CVCL_S246 Hs 444(A).T 0 20476 -cellosaurus:CVCL_S251 Hs 444(B).T 0 20477 -cellosaurus:CVCL_0764 Hs 454.T 0 20478 -cellosaurus:CVCL_S252 Hs 455.T 0 20479 -cellosaurus:CVCL_D782 Hs 456.T 0 20480 -cellosaurus:CVCL_D783 Hs 467.T 0 20481 -cellosaurus:CVCL_S288 Hs 474.T 0 20482 -cellosaurus:CVCL_0772 Hs 479.T 0 20483 -cellosaurus:CVCL_S289 Hs 484.T 0 20484 -cellosaurus:CVCL_S290 Hs 485.T 0 20485 -cellosaurus:CVCL_0777 Hs 491.T 0 20486 -cellosaurus:CVCL_G021 Hs 496.T 0 20487 -cellosaurus:CVCL_0778 Hs 5.T 0 20488 -cellosaurus:CVCL_N697 Hs 504.T 0 20489 -cellosaurus:CVCL_0779 Hs 505.T 0 20490 -cellosaurus:CVCL_N698 Hs 507.T 0 20491 -cellosaurus:CVCL_3521 Hs 51.T 0 20492 -cellosaurus:CVCL_N757 Hs 517.T 0 20493 -cellosaurus:CVCL_0782 Hs 518.T 0 20494 -cellosaurus:CVCL_0786 Hs 53.T 0 20495 -cellosaurus:CVCL_N476 Hs 54.T 0 20496 -cellosaurus:CVCL_0788 Hs 540.T 0 20497 -cellosaurus:CVCL_N299 Hs 564(A).T 0 20498 -cellosaurus:CVCL_N294 Hs 566(A).T 0 20499 -cellosaurus:CVCL_0799 Hs 566(B).T 0 20500 -cellosaurus:CVCL_N763 Hs 567(A).T 0 20501 -cellosaurus:CVCL_0801 Hs 57.T 0 20502 -cellosaurus:CVCL_N765 Hs 570.T 0 20503 -cellosaurus:CVCL_0802 Hs 571.T 0 20504 -cellosaurus:CVCL_0804 Hs 573.T 0 20505 -cellosaurus:CVCL_0806 Hs 574.T 0 20506 -cellosaurus:CVCL_F647 Hs 579.T 0 20507 -cellosaurus:CVCL_N478 Hs 586.T 0 20508 -cellosaurus:CVCL_0810 Hs 587.Int 0 20509 -cellosaurus:CVCL_0811 Hs 588.T 0 20510 -cellosaurus:CVCL_R689 Hs 593.T 0 20511 -cellosaurus:CVCL_G017 Hs 597.T 0 20512 -cellosaurus:CVCL_R692 Hs 601.T 0 20513 -cellosaurus:CVCL_0815 Hs 602 0 20514 -cellosaurus:CVCL_0818 Hs 605.T 0 20515 -cellosaurus:CVCL_N479 Hs 607.T 0 20516 -cellosaurus:CVCL_N772 Hs 608.T 0 20517 -cellosaurus:CVCL_0823 Hs 611.T 0 20518 -cellosaurus:CVCL_S303 Hs 612.T 0 20519 -cellosaurus:CVCL_N480 Hs 614.T 0 20520 -cellosaurus:CVCL_N767 Hs 615.T 0 20521 -cellosaurus:CVCL_N769 Hs 619.T 0 20522 -cellosaurus:CVCL_D784 Hs 621.T 0 20523 -cellosaurus:CVCL_F648 Hs 622.T 0 20524 -cellosaurus:CVCL_R695 Hs 623.T 0 20525 -cellosaurus:CVCL_R697 Hs 625.T 0 20526 -cellosaurus:CVCL_R698 Hs 626.T 0 20527 -cellosaurus:CVCL_0831 Hs 63.T 0 20528 -cellosaurus:CVCL_N481 Hs 631.T 0 20529 -cellosaurus:CVCL_N622 Hs 64.T 0 20530 -cellosaurus:CVCL_S305 Hs 653.T 0 20531 -cellosaurus:CVCL_N491 Hs 674.T 0 20532 -cellosaurus:CVCL_N482 Hs 674.T/cc 0 20533 -cellosaurus:CVCL_R711 Hs 679.T 0 20534 -cellosaurus:CVCL_N483 Hs 682.T 0 20535 -cellosaurus:CVCL_0844 Hs 683 0 20536 -cellosaurus:CVCL_0847 Hs 688(B).T 0 20537 -cellosaurus:CVCL_0849 Hs 692(A).T 0 20538 -cellosaurus:CVCL_C119 Hs 692(B).T 0 20539 -cellosaurus:CVCL_0851 Hs 695T 0 20540 -cellosaurus:CVCL_0852 Hs 696 0 20541 -cellosaurus:CVCL_R721 Hs 699.T 0 20542 -cellosaurus:CVCL_0858 Hs 700T 0 20543 -cellosaurus:CVCL_0859 Hs 701.T 0 20544 -cellosaurus:CVCL_S306 Hs 702.T 0 20545 -cellosaurus:CVCL_N488 Hs 703.T 0 20546 -cellosaurus:CVCL_0861 Hs 704.T 0 20547 -cellosaurus:CVCL_R723 Hs 705.T 0 20548 -cellosaurus:CVCL_0863 Hs 706.T 0 20549 -cellosaurus:CVCL_0864 Hs 707(A).T 0 20550 -cellosaurus:CVCL_R758 Hs 708.T 0 20551 -cellosaurus:CVCL_0866 Hs 709.T 0 20552 -cellosaurus:CVCL_R829 Hs 715.T 0 20553 -cellosaurus:CVCL_N342 Hs 717.T 0 20554 -cellosaurus:CVCL_S307 Hs 718.T 0 20555 -cellosaurus:CVCL_0868 Hs 722.T 0 20556 -cellosaurus:CVCL_0871 Hs 729.T 0 20557 -cellosaurus:CVCL_0877 Hs 735.T 0 20558 -cellosaurus:CVCL_0884 Hs 740.T 0 20559 -cellosaurus:CVCL_0886 Hs 741.T 0 20560 -cellosaurus:CVCL_N485 Hs 743.T 0 20561 -cellosaurus:CVCL_0333 Hs 746.T 0 20562 -cellosaurus:CVCL_0889 Hs 748.T 0 20563 -cellosaurus:CVCL_S402 Hs 749.T 0 20564 -cellosaurus:CVCL_N486 Hs 750.T 0 20565 -cellosaurus:CVCL_S069 Hs 754.T 0 20566 -cellosaurus:CVCL_N346 Hs 755(A).T 0 20567 -cellosaurus:CVCL_0892 Hs 755(B).T 0 20568 -cellosaurus:CVCL_S070 Hs 756.T 0 20569 -cellosaurus:CVCL_S066 Hs 758.T 0 20570 -cellosaurus:CVCL_R831 Hs 760.T 0 20571 -cellosaurus:CVCL_R830 Hs 761.T 0 20572 -cellosaurus:CVCL_R832 Hs 762.T 0 20573 -cellosaurus:CVCL_0334 Hs 766T 0 20574 -cellosaurus:CVCL_S068 Hs 767.T 0 20575 -cellosaurus:CVCL_S038 Hs 768(A).T 0 20576 -cellosaurus:CVCL_0896 Hs 769.T 0 20577 -cellosaurus:CVCL_S043 Hs 773.T 0 20578 -cellosaurus:CVCL_S045 Hs 775.T 0 20579 -cellosaurus:CVCL_S047 Hs 776.T 0 20580 -cellosaurus:CVCL_0899 Hs 777.T 0 20581 -cellosaurus:CVCL_0900 Hs 778(A).T 0 20582 -cellosaurus:CVCL_0901 Hs 778(B).T 0 20583 -cellosaurus:CVCL_N600 Hs 78.T 0 20584 -cellosaurus:CVCL_0903 Hs 781.T 0 20585 -cellosaurus:CVCL_S049 Hs 783.T 0 20586 -cellosaurus:CVCL_N487 Hs 785.T 0 20587 -cellosaurus:CVCL_S051 Hs 788.T 0 20588 -cellosaurus:CVCL_0908 Hs 789.T 0 20589 -cellosaurus:CVCL_N601 Hs 79.T 0 20590 -cellosaurus:CVCL_S301 Hs 791.T 0 20591 -cellosaurus:CVCL_0910 Hs 792(A).T 0 20592 -cellosaurus:CVCL_0911 Hs 792(B).T 0 20593 -cellosaurus:CVCL_S053 Hs 794.T 0 20594 -cellosaurus:CVCL_S057 Hs 800.T 0 20595 -cellosaurus:CVCL_S058 Hs 802.T 0 20596 -cellosaurus:CVCL_0921 Hs 803.T 0 20597 -cellosaurus:CVCL_G026 Hs 804.T 0 20598 -cellosaurus:CVCL_0922 Hs 805.T 0 20599 -cellosaurus:CVCL_S059 Hs 806.T 0 20600 -cellosaurus:CVCL_S061 Hs 807.T 0 20601 -cellosaurus:CVCL_0923 Hs 811.T 0 20602 -cellosaurus:CVCL_0926 Hs 814.T 0 20603 -cellosaurus:CVCL_N536 Hs 818.T 0 20604 -cellosaurus:CVCL_0930 Hs 820.T 0 20605 -cellosaurus:CVCL_S074 Hs 823.T 0 20606 -cellosaurus:CVCL_S075 Hs 824.T 0 20607 -cellosaurus:CVCL_S077 Hs 826.T 0 20608 -cellosaurus:CVCL_S079 Hs 828.T 0 20609 -cellosaurus:CVCL_0939 Hs 835.T 0 20610 -cellosaurus:CVCL_G025 Hs 836.T 0 20611 -cellosaurus:CVCL_0943 Hs 841.T 0 20612 -cellosaurus:CVCL_S080 Hs 843.T 0 20613 -cellosaurus:CVCL_N489 Hs 844.T 0 20614 -cellosaurus:CVCL_0945 Hs 845.T 0 20615 -cellosaurus:CVCL_0947 Hs 846.T 0 20616 -cellosaurus:CVCL_S082 Hs 848.T 0 20617 -cellosaurus:CVCL_0948 Hs 849.T 0 20618 -cellosaurus:CVCL_0949 Hs 851.T 0 20619 -cellosaurus:CVCL_0950 Hs 852.T 0 20620 -cellosaurus:CVCL_N021 Hs 853.T 0 20621 -cellosaurus:CVCL_N306 Hs 854.T 0 20622 -cellosaurus:CVCL_0954 Hs 856.T 0 20623 -cellosaurus:CVCL_0957 Hs 860.T 0 20624 -cellosaurus:CVCL_0958 Hs 861.T 0 20625 -cellosaurus:CVCL_N020 Hs 862.T 0 20626 -cellosaurus:CVCL_0961 Hs 864.T 0 20627 -cellosaurus:CVCL_0963 Hs 866.T 0 20628 -cellosaurus:CVCL_0965 Hs 868.T 0 20629 -cellosaurus:CVCL_N599 Hs 869.T 0 20630 -cellosaurus:CVCL_3522 Hs 871.T 0 20631 -cellosaurus:CVCL_0968 Hs 873.T 0 20632 -cellosaurus:CVCL_0969 Hs 874.T 0 20633 -cellosaurus:CVCL_0970 Hs 875.T 0 20634 -cellosaurus:CVCL_0971 Hs 877.T 0 20635 -cellosaurus:CVCL_0973 Hs 88.T 0 20636 -cellosaurus:CVCL_0974 Hs 880.T 0 20637 -cellosaurus:CVCL_0975 Hs 883.T 0 20638 -cellosaurus:CVCL_0976 Hs 885.T 0 20639 -cellosaurus:CVCL_N343 Hs 887.T 0 20640 -cellosaurus:CVCL_0982 Hs 889.T 0 20641 -cellosaurus:CVCL_0984 Hs 890.T 0 20642 -cellosaurus:CVCL_0985 Hs 891.T 0 20643 -cellosaurus:CVCL_0986 Hs 892.T 0 20644 -cellosaurus:CVCL_0987 Hs 894(A).T 0 20645 -cellosaurus:CVCL_0988 Hs 894(B).T 0 20646 -cellosaurus:CVCL_0989 Hs 894(C).T 0 20647 -cellosaurus:CVCL_0990 Hs 894(D).T 0 20648 -cellosaurus:CVCL_S012 Hs 897.T 0 20649 -cellosaurus:CVCL_0995 Hs 898.T 0 20650 -cellosaurus:CVCL_0996 Hs 899(A).T 0 20651 -cellosaurus:CVCL_0997 Hs 899(B).T 0 20652 -cellosaurus:CVCL_0998 Hs 899(C).T 0 20653 -cellosaurus:CVCL_0999 Hs 899(D).T 0 20654 -cellosaurus:CVCL_1000 Hs 900.T 0 20655 -cellosaurus:CVCL_S013 Hs 902.T 0 20656 -cellosaurus:CVCL_1002 Hs 903.T 0 20657 -cellosaurus:CVCL_1004 Hs 904.T 0 20658 -cellosaurus:CVCL_1005 Hs 905.T 0 20659 -cellosaurus:CVCL_1006 Hs 906(A).M 0 20660 -cellosaurus:CVCL_1007 Hs 906(B).T 0 20661 -cellosaurus:CVCL_1009 Hs 908.T 0 20662 -cellosaurus:CVCL_N671 Hs 910.T 0 20663 -cellosaurus:CVCL_1012 Hs 912.T 0 20664 -cellosaurus:CVCL_N665 Hs 913(A).T 0 20665 -cellosaurus:CVCL_1013 Hs 913(B).T 0 20666 -cellosaurus:CVCL_1014 Hs 913(C).T 0 20667 -cellosaurus:CVCL_1015 Hs 913(D).T 0 20668 -cellosaurus:CVCL_N664 Hs 913(E).T 0 20669 -cellosaurus:CVCL_1016 Hs 913(F).T 0 20670 -cellosaurus:CVCL_1017 Hs 913T 0 20671 -cellosaurus:CVCL_1023 Hs 919.T 0 20672 -cellosaurus:CVCL_S019 Hs 924.LiT 0 20673 -cellosaurus:CVCL_S446 Hs 924.T 0 20674 -cellosaurus:CVCL_1026 Hs 925.T 0 20675 -cellosaurus:CVCL_1027 Hs 926.T 0 20676 -cellosaurus:CVCL_S020 Hs 927.T 0 20677 -cellosaurus:CVCL_S086 Hs 929.T 0 20678 -cellosaurus:CVCL_1029 Hs 93.T 0 20679 -cellosaurus:CVCL_1032 Hs 935.T 0 20680 -cellosaurus:CVCL_1036 Hs 939.T 0 20681 -cellosaurus:CVCL_1037 Hs 94.T 0 20682 -cellosaurus:CVCL_1039 Hs 941.T 0 20683 -cellosaurus:CVCL_1040 Hs 944.T 0 20684 -cellosaurus:CVCL_S295 Hs 99.T 0 20685 -cellosaurus:CVCL_J345 HS-16 0 20686 -cellosaurus:CVCL_J346 HS-18 0 20687 -cellosaurus:CVCL_Y110 HS-24 0 20688 -cellosaurus:CVCL_J347 HS-30 0 20689 -cellosaurus:CVCL_J348 HS-42 0 20690 -cellosaurus:CVCL_Y111 HS-57 0 20691 -cellosaurus:CVCL_9708 HS-80 0 20692 -cellosaurus:CVCL_8713 HS-ES-1 0 20693 -cellosaurus:CVCL_8715 HS-ES-2R 0 20694 -cellosaurus:CVCL_W472 HS-MM 0 20695 -cellosaurus:CVCL_8716 HS-Os-1 0 20696 -cellosaurus:CVCL_8717 HS-PSS 0 20697 -cellosaurus:CVCL_A791 HS-RMS-1 0 20698 -cellosaurus:CVCL_Y582 HS-RMS-2 0 20699 -cellosaurus:CVCL_8718 HS-Sch-2 0 20700 -cellosaurus:CVCL_8719 HS-SY-2 0 20701 -cellosaurus:CVCL_N587 HS-SY-3 0 20702 -cellosaurus:CVCL_5978 HS1-CLS 0 20703 -cellosaurus:CVCL_X901 HsBt 0 20704 -cellosaurus:CVCL_M669 HSC-1b 0 20705 -cellosaurus:CVCL_1287 HSC-2 0 20706 -cellosaurus:CVCL_A385 HSC-39 0 20707 -cellosaurus:CVCL_1289 HSC-4 0 20708 -cellosaurus:CVCL_A386 HSC-40A 0 20709 -cellosaurus:CVCL_A387 HSC-43 0 20710 -cellosaurus:CVCL_W943 HSC-5 [Human OCSCC] 0 20711 -cellosaurus:CVCL_A613 HSC-57 0 20712 -cellosaurus:CVCL_A614 HSC-59 0 20713 -cellosaurus:CVCL_A615 HSC-6 0 20714 -cellosaurus:CVCL_A617 HSC-64 0 20715 -cellosaurus:CVCL_A618 HSC-7 0 20716 -cellosaurus:CVCL_S965 HSC-GRW 0 20717 -cellosaurus:CVCL_H630 HSC-M1 0 20718 -cellosaurus:CVCL_C1N2 HSJD-DIPG-008 0 20719 -cellosaurus:CVCL_VU71 HSJD-DIPG-012 0 20720 -cellosaurus:CVCL_C1MI HSJD-DIPG-013 0 20721 -cellosaurus:CVCL_C1N3 HSJD-DIPG-014b 0 20722 -cellosaurus:CVCL_8234 HSKT-C 0 20723 -cellosaurus:CVCL_8235 HSKT-F 0 20724 -cellosaurus:CVCL_5U53 HSM-1 0 20725 -cellosaurus:CVCL_M122 HSmC-78 0 20726 -cellosaurus:CVCL_L554 HSNB 0 20727 -cellosaurus:CVCL_6655 HSOGT 0 20728 -cellosaurus:CVCL_7674 HSQ-89 0 20729 -cellosaurus:CVCL_DI57 HSR-GBM1A 0 20730 -cellosaurus:CVCL_DI58 HSR-GBM1B 0 20731 -cellosaurus:CVCL_A2EV hSS-005R 0 20732 -cellosaurus:CVCL_N592 HSS-84 0 20733 -cellosaurus:CVCL_E316 HST-1 0 20734 -cellosaurus:CVCL_T740 HST2 0 20735 -cellosaurus:CVCL_VT04 HSUA 0 20736 -cellosaurus:CVCL_Y005 HT [Human ovarian serous cystadenocarcinoma] 0 20737 -cellosaurus:CVCL_5T93 HT-1 [Human lymphoma] 0 20738 -cellosaurus:CVCL_1291 HT-1197 0 20739 -cellosaurus:CVCL_3523 HT-1417 0 20740 -cellosaurus:CVCL_B408 HT-17 0 20741 -cellosaurus:CVCL_N341 HT-295.T 0 20742 -cellosaurus:CVCL_1293 HT-3 0 20743 -cellosaurus:CVCL_1294 HT-55 0 20744 -cellosaurus:CVCL_3524 HT-728.T 0 20745 -cellosaurus:CVCL_N465 HT-738.T 0 20746 -cellosaurus:CVCL_N462 HT-756.T 0 20747 -cellosaurus:CVCL_3525 HT-762.T 0 20748 -cellosaurus:CVCL_9709 HT-78 0 20749 -cellosaurus:CVCL_9710 HT-M1-78 0 20750 -cellosaurus:CVCL_2520 HT115 0 20751 -cellosaurus:CVCL_QY02 HT58 [Human lymphoma] 0 20752 -cellosaurus:CVCL_E331 HT93A 0 20753 -cellosaurus:CVCL_X939 HTBOA 0 20754 -cellosaurus:CVCL_1295 HTC-C3 0 20755 -cellosaurus:CVCL_A427 HTh104 0 20756 -cellosaurus:CVCL_A428 HTh112 0 20757 -cellosaurus:CVCL_6289 HTh7 0 20758 -cellosaurus:CVCL_0046 HTh83 0 20759 -cellosaurus:CVCL_W846 HTLA145 0 20760 -cellosaurus:CVCL_C834 HTLA161 0 20761 -cellosaurus:CVCL_W847 HTLA195 0 20762 -cellosaurus:CVCL_8881 HTLA230 0 20763 -cellosaurus:CVCL_W385 HTLS 0 20764 -cellosaurus:CVCL_8720 HTMM 0 20765 -cellosaurus:CVCL_8721 HTMMT 0 20766 -cellosaurus:CVCL_5457 HTOA 0 20767 -cellosaurus:CVCL_6656 HTOG 0 20768 -cellosaurus:CVCL_6657 HTOT 0 20769 -cellosaurus:CVCL_VS98 HTUS 0 20770 -cellosaurus:CVCL_IS45 HTZ-19 dM 0 20771 -cellosaurus:CVCL_W443 HU 214 0 20772 -cellosaurus:CVCL_HE65 HU-01 0 20773 -cellosaurus:CVCL_0C14 HU-E 0 20774 -cellosaurus:CVCL_A3BG Hu104 0 20775 -cellosaurus:CVCL_A3BH Hu112 0 20776 -cellosaurus:CVCL_8237 Hu1922 0 20777 -cellosaurus:CVCL_A3BI Hu195 0 20778 -cellosaurus:CVCL_A3BJ Hu197 0 20779 -cellosaurus:CVCL_8453 Hu564 0 20780 -cellosaurus:CVCL_A3BF Hu70 0 20781 -cellosaurus:CVCL_M875 HUB-41 0 20782 -cellosaurus:CVCL_C1L8 HubCCA-1 0 20783 -cellosaurus:CVCL_S812 HUBT-n 0 20784 -cellosaurus:CVCL_VR04 HUG-11 0 20785 -cellosaurus:CVCL_VR05 HUG-15 0 20786 -cellosaurus:CVCL_VR02 HUG-2 0 20787 -cellosaurus:CVCL_VR06 HUG-27 0 20788 -cellosaurus:CVCL_VR07 HUG-31 0 20789 -cellosaurus:CVCL_VR03 HUG-9 0 20790 -cellosaurus:CVCL_5292 HuGC-OOHIRA 0 20791 -cellosaurus:CVCL_2956 HuH-1 0 20792 -cellosaurus:CVCL_W463 HuH-2 0 20793 -cellosaurus:CVCL_2955 HuH-28 0 20794 -cellosaurus:CVCL_B373 HuH-4 0 20795 -cellosaurus:CVCL_A5AV Huh7.93 0 20796 -cellosaurus:CVCL_YA04 HUL-42 0 20797 -cellosaurus:CVCL_S872 HUMEMS 0 20798 -cellosaurus:CVCL_W948 HuNET 0 20799 -cellosaurus:CVCL_1297 HuO-3N1 0 20800 -cellosaurus:CVCL_2958 HuO9N2 0 20801 -cellosaurus:CVCL_X935 HUOA 0 20802 -cellosaurus:CVCL_A6RQ HuOS 0 20803 -cellosaurus:CVCL_VS95 HUOT 0 20804 -cellosaurus:CVCL_1299 HuP-T3 0 20805 -cellosaurus:CVCL_1300 HuP-T4 0 20806 -cellosaurus:CVCL_S874 HUS-2 0 20807 -cellosaurus:CVCL_Y030 HUT15 0 20808 -cellosaurus:CVCL_Y031 HUT29 0 20809 -cellosaurus:CVCL_Y129 HUT70 0 20810 -cellosaurus:CVCL_J314 HUUCLEC 0 20811 -cellosaurus:CVCL_A1FR HWL 0 20812 -cellosaurus:CVCL_VT05 HWTUA 0 20813 -cellosaurus:CVCL_X945 HWUA-1 0 20814 -cellosaurus:CVCL_X946 HWUA-2 0 20815 -cellosaurus:CVCL_X948 HWUS-2 0 20816 -cellosaurus:CVCL_Y040 Hx104 0 20817 -cellosaurus:CVCL_Y041 Hx109 0 20818 -cellosaurus:CVCL_Y042 Hx110a 0 20819 -cellosaurus:CVCL_Y043 Hx110b 0 20820 -cellosaurus:CVCL_Y044 Hx113 0 20821 -cellosaurus:CVCL_Y045 Hx117 0 20822 -cellosaurus:CVCL_H762 HX118 0 20823 -cellosaurus:CVCL_Y046 Hx122 0 20824 -cellosaurus:CVCL_Y047 Hx124 0 20825 -cellosaurus:CVCL_Y048 Hx126 0 20826 -cellosaurus:CVCL_Y049 Hx128 0 20827 -cellosaurus:CVCL_Y050 Hx129 0 20828 -cellosaurus:CVCL_Y051 Hx132 0 20829 -cellosaurus:CVCL_H761 HX142 0 20830 -cellosaurus:CVCL_Y053 Hx147 0 20831 -cellosaurus:CVCL_L441 HX151c 0 20832 -cellosaurus:CVCL_L443 HX156c 0 20833 -cellosaurus:CVCL_Y054 Hx159 0 20834 -cellosaurus:CVCL_L444 HX160c 0 20835 -cellosaurus:CVCL_Y055 Hx163 0 20836 -cellosaurus:CVCL_N849 HX165c 0 20837 -cellosaurus:CVCL_Y056 Hx169 0 20838 -cellosaurus:CVCL_N850 HX170c 0 20839 -cellosaurus:CVCL_M690 HX171c 0 20840 -cellosaurus:CVCL_Y057 Hx29 0 20841 -cellosaurus:CVCL_H763 Hx34 0 20842 -cellosaurus:CVCL_Y058 Hx39 0 20843 -cellosaurus:CVCL_Y059 Hx53 0 20844 -cellosaurus:CVCL_Y060 Hx55 0 20845 -cellosaurus:CVCL_Y061 Hx60 0 20846 -cellosaurus:CVCL_Y062 Hx71 0 20847 -cellosaurus:CVCL_Y063 Hx72 0 20848 -cellosaurus:CVCL_Y064 Hx74 0 20849 -cellosaurus:CVCL_Y065 Hx78 0 20850 -cellosaurus:CVCL_Y066 Hx81 0 20851 -cellosaurus:CVCL_Y067 Hx83 0 20852 -cellosaurus:CVCL_Y068 Hx87 0 20853 -cellosaurus:CVCL_Y069 Hx88 0 20854 -cellosaurus:CVCL_Y070 Hx90 0 20855 -cellosaurus:CVCL_Y071 Hx93 0 20856 -cellosaurus:CVCL_Y072 Hx94 0 20857 -cellosaurus:CVCL_Y073 Hx96 0 20858 -cellosaurus:CVCL_Y074 HxAC4 0 20859 -cellosaurus:CVCL_Y075 HxEC4 0 20860 -cellosaurus:CVCL_Y077 HxGo 0 20861 -cellosaurus:CVCL_Y078 HxHC1 0 20862 -cellosaurus:CVCL_X163 HxLe 0 20863 -cellosaurus:CVCL_X164 HxLL 0 20864 -cellosaurus:CVCL_Y079 HxLo 0 20865 -cellosaurus:CVCL_X165 HxMm 0 20866 -cellosaurus:CVCL_Y080 HxMu 0 20867 -cellosaurus:CVCL_D542 HXO-Rb44 0 20868 -cellosaurus:CVCL_Y081 HxURC 0 20869 -cellosaurus:CVCL_Y082 HxWe 0 20870 -cellosaurus:CVCL_W382 HYKSSPC 0 20871 -cellosaurus:CVCL_VT06 HYOA 0 20872 -cellosaurus:CVCL_IN53 HYON 0 20873 -cellosaurus:CVCL_4639 HYT-1 0 20874 -cellosaurus:CVCL_S743 HYVC 0 20875 -cellosaurus:CVCL_IY40 hZK-1 0 20876 -cellosaurus:CVCL_0T74 Ia-270 0 20877 -cellosaurus:CVCL_6658 IA-5 0 20878 -cellosaurus:CVCL_1302 IA-LM 0 20879 -cellosaurus:CVCL_IX45 IARC-186 0 20880 -cellosaurus:CVCL_IU92 IARC-317 0 20881 -cellosaurus:CVCL_IU84 IARC-318 0 20882 -cellosaurus:CVCL_IU90 IARC-518 0 20883 -cellosaurus:CVCL_G209 IBEP-1 0 20884 -cellosaurus:CVCL_0340 IBEP-2 0 20885 -cellosaurus:CVCL_G210 IBEP-3 0 20886 -cellosaurus:CVCL_M356 IBH-4 0 20887 -cellosaurus:CVCL_M357 IBH-6 0 20888 -cellosaurus:CVCL_M358 IBH-7 0 20889 -cellosaurus:CVCL_9638 IBL-1 0 20890 -cellosaurus:CVCL_9639 IBL-4 0 20891 -cellosaurus:CVCL_W328 ICB-104 0 20892 -cellosaurus:CVCL_1H29 ICB-112 0 20893 -cellosaurus:CVCL_L093 ICBD-1 0 20894 -cellosaurus:CVCL_VV26 ICC1 0 20895 -cellosaurus:CVCL_A1VB ICC10 0 20896 -cellosaurus:CVCL_A1UZ ICC10-6 0 20897 -cellosaurus:CVCL_A1VA ICC10-8 0 20898 -cellosaurus:CVCL_A1VC ICC12 0 20899 -cellosaurus:CVCL_A1VD ICC13-7 0 20900 -cellosaurus:CVCL_A1VE ICC15 0 20901 -cellosaurus:CVCL_VV27 ICC2 0 20902 -cellosaurus:CVCL_A1ZB ICC3 0 20903 -cellosaurus:CVCL_A1VI ICC4 0 20904 -cellosaurus:CVCL_VV28 ICC5 0 20905 -cellosaurus:CVCL_A1VF ICC6 0 20906 -cellosaurus:CVCL_A1VG ICC8 0 20907 -cellosaurus:CVCL_A1VH ICC9 0 20908 -cellosaurus:CVCL_EG67 ICH-ERMS-1 0 20909 -cellosaurus:CVCL_WG90 ICI 101 0 20910 -cellosaurus:CVCL_WG91 ICI 104A 0 20911 -cellosaurus:CVCL_WG92 ICI 104B 0 20912 -cellosaurus:CVCL_WG93 ICI 104C 0 20913 -cellosaurus:CVCL_WG98 ICI 106 0 20914 -cellosaurus:CVCL_WG99 ICI 107 0 20915 -cellosaurus:CVCL_WG94 ICI 202 0 20916 -cellosaurus:CVCL_6999 IF6 0 20917 -cellosaurus:CVCL_VG00 Igaki 0 20918 -cellosaurus:CVCL_Y557 IGR-2 0 20919 -cellosaurus:CVCL_Y558 IGR-3 0 20920 -cellosaurus:CVCL_GR50 IGR-31 0 20921 -cellosaurus:CVCL_2075 IGR-37 0 20922 -cellosaurus:CVCL_GR46 IGR-4 0 20923 -cellosaurus:CVCL_A2AZ IGR-BLA 0 20924 -cellosaurus:CVCL_A2BA IGR-HEU 0 20925 -cellosaurus:CVCL_A2BG IGR-N-331 0 20926 -cellosaurus:CVCL_A2BH IGR-N-337 0 20927 -cellosaurus:CVCL_8882 IGR-N-835 0 20928 -cellosaurus:CVCL_8883 IGR-N-91 0 20929 -cellosaurus:CVCL_A2BB IGR-PUB 0 20930 -cellosaurus:CVCL_A9AP IGR/Cut40 0 20931 -cellosaurus:CVCL_B4KT IGRMel1 0 20932 -cellosaurus:CVCL_GR51 IGRT-27 0 20933 -cellosaurus:CVCL_S832 IGSK-1 0 20934 -cellosaurus:CVCL_W378 IGSK-2 0 20935 -cellosaurus:CVCL_W377 IGSK-3 0 20936 -cellosaurus:CVCL_WZ44 IH-1 0 20937 -cellosaurus:CVCL_F928 IHGGK 0 20938 -cellosaurus:CVCL_JA50 IIB-MEL-IAN 0 20939 -cellosaurus:CVCL_JA51 IIB-MEL-J 0 20940 -cellosaurus:CVCL_JA52 IIB-MEL-LES 0 20941 -cellosaurus:CVCL_M544 ILKM10 0 20942 -cellosaurus:CVCL_M499 ILKM12 0 20943 -cellosaurus:CVCL_M500 ILKM13 0 20944 -cellosaurus:CVCL_A621 ILKM2 0 20945 -cellosaurus:CVCL_A622 ILKM3 0 20946 -cellosaurus:CVCL_M497 ILKM8 0 20947 -cellosaurus:CVCL_W444 IM 0 20948 -cellosaurus:CVCL_UF41 IM-MFS-1 0 20949 -cellosaurus:CVCL_M688 IMa 0 20950 -cellosaurus:CVCL_EQ57 IMC-1 0 20951 -cellosaurus:CVCL_4061 IMIM-PC1 0 20952 -cellosaurus:CVCL_0345 IMIM-PC2 0 20953 -cellosaurus:CVCL_5421 IMR-6 0 20954 -cellosaurus:CVCL_A7NE IMS-BC1 0 20955 -cellosaurus:CVCL_A7NF IMS-BC2 0 20956 -cellosaurus:CVCL_A623 IMS-M1 0 20957 -cellosaurus:CVCL_RL93 IMS-M2 0 20958 -cellosaurus:CVCL_W473 IN-1 0 20959 -cellosaurus:CVCL_AU96 IN699 0 20960 -cellosaurus:CVCL_5140 INBL 0 20961 -cellosaurus:CVCL_QX03 INC 0 20962 -cellosaurus:CVCL_5621 INER-37 0 20963 -cellosaurus:CVCL_VK12 Ins-1 0 20964 -cellosaurus:CVCL_C682 INT-MEL-1 0 20965 -cellosaurus:CVCL_HE45 INT-MEL-10 0 20966 -cellosaurus:CVCL_HE36 INT-MEL-11 0 20967 -cellosaurus:CVCL_A648 INT-MEL-12 0 20968 -cellosaurus:CVCL_C683 INT-MEL-13 0 20969 -cellosaurus:CVCL_QY42 INT-MEL-14 0 20970 -cellosaurus:CVCL_C672 INT-MEL-15/2 0 20971 -cellosaurus:CVCL_F250 INT-MEL-16/1 0 20972 -cellosaurus:CVCL_HE37 INT-MEL-16/2 0 20973 -cellosaurus:CVCL_C680 INT-MEL-17 0 20974 -cellosaurus:CVCL_QY43 INT-MEL-18 0 20975 -cellosaurus:CVCL_C673 INT-MEL-19 0 20976 -cellosaurus:CVCL_C668 INT-MEL-20 0 20977 -cellosaurus:CVCL_QY44 INT-MEL-22 0 20978 -cellosaurus:CVCL_C670 INT-MEL-23 0 20979 -cellosaurus:CVCL_QY45 INT-MEL-25 0 20980 -cellosaurus:CVCL_QY46 INT-MEL-26 0 20981 -cellosaurus:CVCL_QY47 INT-MEL-27 0 20982 -cellosaurus:CVCL_QY48 INT-MEL-28 0 20983 -cellosaurus:CVCL_QY49 INT-MEL-31 0 20984 -cellosaurus:CVCL_QY50 INT-MEL-32 0 20985 -cellosaurus:CVCL_QY61 INT-MEL-33 0 20986 -cellosaurus:CVCL_QY62 INT-MEL-38/1 0 20987 -cellosaurus:CVCL_QY63 INT-MEL-38/2 0 20988 -cellosaurus:CVCL_C674 INT-MEL-39 0 20989 -cellosaurus:CVCL_HE33 INT-MEL-4 0 20990 -cellosaurus:CVCL_QY51 INT-MEL-40 0 20991 -cellosaurus:CVCL_QY72 INT-MEL-41 0 20992 -cellosaurus:CVCL_QY52 INT-MEL-42 0 20993 -cellosaurus:CVCL_HE40 INT-MEL-43 0 20994 -cellosaurus:CVCL_QY53 INT-MEL-44 0 20995 -cellosaurus:CVCL_QY73 INT-MEL-45 0 20996 -cellosaurus:CVCL_QY64 INT-MEL-46 0 20997 -cellosaurus:CVCL_QY65 INT-MEL-47/1 0 20998 -cellosaurus:CVCL_QY66 INT-MEL-47/2 0 20999 -cellosaurus:CVCL_QY67 INT-MEL-47/3 0 21000 -cellosaurus:CVCL_QY68 INT-MEL-48/1 0 21001 -cellosaurus:CVCL_QY69 INT-MEL-48/2 0 21002 -cellosaurus:CVCL_QY54 INT-MEL-49 0 21003 -cellosaurus:CVCL_HE43 INT-MEL-50 0 21004 -cellosaurus:CVCL_QY55 INT-MEL-51 0 21005 -cellosaurus:CVCL_QY56 INT-MEL-53 0 21006 -cellosaurus:CVCL_QY57 INT-MEL-54 0 21007 -cellosaurus:CVCL_QY58 INT-MEL-55 0 21008 -cellosaurus:CVCL_QY59 INT-MEL-56 0 21009 -cellosaurus:CVCL_QY60 INT-MEL-57 0 21010 -cellosaurus:CVCL_C685 INT-MEL-59/1 0 21011 -cellosaurus:CVCL_QY70 INT-MEL-6 0 21012 -cellosaurus:CVCL_QY71 INT-MEL-7 0 21013 -cellosaurus:CVCL_HE35 INT-MEL-9 0 21014 -cellosaurus:CVCL_DF86 INT.Ov1 0 21015 -cellosaurus:CVCL_DF87 INT.Ov2 0 21016 -cellosaurus:CVCL_DF88 INT.Ov3 0 21017 -cellosaurus:CVCL_DF89 INT.Ov4 0 21018 -cellosaurus:CVCL_DF90 INT.Ov5 0 21019 -cellosaurus:CVCL_DF91 INT.Ov6 0 21020 -cellosaurus:CVCL_DF92 INT.Ov7 0 21021 -cellosaurus:CVCL_DF93 INT.Ov8 0 21022 -cellosaurus:CVCL_DF94 INT.Ov9 0 21023 -cellosaurus:CVCL_0C65 INV-3 0 21024 -cellosaurus:CVCL_H723 IOR/BER 0 21025 -cellosaurus:CVCL_H725 IOR/CAR 0 21026 -cellosaurus:CVCL_H726 IOR/CLB 0 21027 -cellosaurus:CVCL_A624 IOR/EW4 0 21028 -cellosaurus:CVCL_9986 IOR/MOS 0 21029 -cellosaurus:CVCL_H727 IOR/NGR 0 21030 -cellosaurus:CVCL_9989 IOR/OS10 0 21031 -cellosaurus:CVCL_9990 IOR/OS14 0 21032 -cellosaurus:CVCL_9991 IOR/OS15 0 21033 -cellosaurus:CVCL_9992 IOR/OS17 0 21034 -cellosaurus:CVCL_9993 IOR/OS18 0 21035 -cellosaurus:CVCL_9994 IOR/OS19 0 21036 -cellosaurus:CVCL_9987 IOR/OS7 0 21037 -cellosaurus:CVCL_9988 IOR/OS9 0 21038 -cellosaurus:CVCL_H728 IOR/RCH 0 21039 -cellosaurus:CVCL_9995 IOR/SARG 0 21040 -cellosaurus:CVCL_VQ44 iOvCa241 0 21041 -cellosaurus:CVCL_VQ45 iOvCa250 0 21042 -cellosaurus:CVCL_6G16 IOWA-1T 0 21043 -cellosaurus:CVCL_0G01 IPAT-1 0 21044 -cellosaurus:CVCL_B5LK IPC-164 0 21045 -cellosaurus:CVCL_B5LH IPC-167 0 21046 -cellosaurus:CVCL_M213 IPC-209 0 21047 -cellosaurus:CVCL_M215 IPC-211 0 21048 -cellosaurus:CVCL_M216 IPC-227E 0 21049 -cellosaurus:CVCL_M217 IPC-227F 0 21050 -cellosaurus:CVCL_M218 IPC-281 0 21051 -cellosaurus:CVCL_M214 IPC-285 0 21052 -cellosaurus:CVCL_M219 IPC-292 0 21053 -cellosaurus:CVCL_1307 IPC-298 0 21054 -cellosaurus:CVCL_WG89 IPC-48 0 21055 -cellosaurus:CVCL_GR48 IPC-501 0 21056 -cellosaurus:CVCL_GR49 IPC-502 0 21057 -cellosaurus:CVCL_A625 IPH-926 0 21058 -cellosaurus:CVCL_5G67 IPNN-8 0 21059 -cellosaurus:CVCL_5G65 IPNT-H 0 21060 -cellosaurus:CVCL_C0Z8 IPO43 0 21061 -cellosaurus:CVCL_5G68 IPPS-11 0 21062 -cellosaurus:CVCL_5G66 IPRM-5 0 21063 -cellosaurus:CVCL_5G64 IPSB-18 0 21064 -cellosaurus:CVCL_5G69 IPTR-6 0 21065 -cellosaurus:CVCL_IU71 IRB-1 0 21066 -cellosaurus:CVCL_B1D2 IRCC-Neuromed-CG 0 21067 -cellosaurus:CVCL_B1CV IRCC-Neuromed-CL 0 21068 -cellosaurus:CVCL_B1CU IRCC-Neuromed-COGI 0 21069 -cellosaurus:CVCL_B1D3 IRCC-Neuromed-DA 0 21070 -cellosaurus:CVCL_B1CX IRCC-Neuromed-DNA 0 21071 -cellosaurus:CVCL_B1D4 IRCC-Neuromed-FL 0 21072 -cellosaurus:CVCL_B1D0 IRCC-Neuromed-IP 0 21073 -cellosaurus:CVCL_B1D5 IRCC-Neuromed-MI 0 21074 -cellosaurus:CVCL_B1D1 IRCC-Neuromed-NULU 0 21075 -cellosaurus:CVCL_B1CW IRCC-Neuromed-PAP 0 21076 -cellosaurus:CVCL_B1CZ IRCC-Neuromed-VEM 0 21077 -cellosaurus:CVCL_B1CY IRCC-Neuromed-ZAR 0 21078 -cellosaurus:CVCL_AW96 IRM2 0 21079 -cellosaurus:CVCL_C263 IRNE 0 21080 -cellosaurus:CVCL_RW24 IRSC-10M 0 21081 -cellosaurus:CVCL_RW22 IRSC-2M 0 21082 -cellosaurus:CVCL_RW25 IRSC-61M 0 21083 -cellosaurus:CVCL_RW23 IRSC-6M 0 21084 -cellosaurus:CVCL_RW26 IRSC-74M 0 21085 -cellosaurus:CVCL_A7NL IRTA17 0 21086 -cellosaurus:CVCL_A7NM IRTA21 0 21087 -cellosaurus:CVCL_A626 ISI-1 0 21088 -cellosaurus:CVCL_A627 Isreco-1 0 21089 -cellosaurus:CVCL_A628 Isreco-2 0 21090 -cellosaurus:CVCL_A629 Isreco-3 0 21091 -cellosaurus:CVCL_IU27 Issac IV 0 21092 -cellosaurus:CVCL_F645 ISt-1 0 21093 -cellosaurus:CVCL_1308 IST-MEL1 0 21094 -cellosaurus:CVCL_1309 IST-MEL2 0 21095 -cellosaurus:CVCL_1310 IST-MEL3 0 21096 -cellosaurus:CVCL_F328 IST-MELA 16 0 21097 -cellosaurus:CVCL_1311 IST-Mes1 0 21098 -cellosaurus:CVCL_1312 IST-Mes2 0 21099 -cellosaurus:CVCL_C312 IST-Mes3 0 21100 -cellosaurus:CVCL_1313 IST-SL1 0 21101 -cellosaurus:CVCL_1314 IST-SL2 0 21102 -cellosaurus:CVCL_W522 IT-25 0 21103 -cellosaurus:CVCL_F945 IT832 0 21104 -cellosaurus:CVCL_A015 ITAC-3 0 21105 -cellosaurus:CVCL_WZ70 ITO-I 0 21106 -cellosaurus:CVCL_WS66 ITOC-01 0 21107 -cellosaurus:CVCL_WS67 ITOC-02 0 21108 -cellosaurus:CVCL_WS68 ITOC-03 0 21109 -cellosaurus:CVCL_WS69 ITOC-04 0 21110 -cellosaurus:CVCL_D551 IU-TAB-1 0 21111 -cellosaurus:CVCL_A6JG IWT-1 0 21112 -cellosaurus:CVCL_UF73 J-113 0 21113 -cellosaurus:CVCL_U110 J206L 0 21114 -cellosaurus:CVCL_4Z68 J5 [Human hepatocellular carcinoma] 0 21115 -cellosaurus:CVCL_W797 J6 0 21116 -cellosaurus:CVCL_4Z69 J7 0 21117 -cellosaurus:CVCL_W874 JA 0 21118 -cellosaurus:CVCL_S855 JA-M 0 21119 -cellosaurus:CVCL_B6PT Jacket 0 21120 -cellosaurus:CVCL_7197 Jada-BL 0 21121 -cellosaurus:CVCL_A9QB JAM-ICR 0 21122 -cellosaurus:CVCL_A593 JAMA-2 0 21123 -cellosaurus:CVCL_Y434 JB 0 21124 -cellosaurus:CVCL_H633 JB6 [Human anaplastic large cell lymphoma] 0 21125 -cellosaurus:CVCL_IW32 JBL-1 0 21126 -cellosaurus:CVCL_A630 JBL-2 0 21127 -cellosaurus:CVCL_IW51 JBL-3 0 21128 -cellosaurus:CVCL_IW53 JBL-4 0 21129 -cellosaurus:CVCL_IW52 JBL-5 0 21130 -cellosaurus:CVCL_IW54 JBL-6 0 21131 -cellosaurus:CVCL_ZF47 JBSA 0 21132 -cellosaurus:CVCL_A1EH JC-20 0 21133 -cellosaurus:CVCL_A1EI JC-32 0 21134 -cellosaurus:CVCL_A1EJ JC-33 0 21135 -cellosaurus:CVCL_A1EK JC-35 0 21136 -cellosaurus:CVCL_A1EL JC-36 0 21137 -cellosaurus:CVCL_A1EM JC-37 0 21138 -cellosaurus:CVCL_A1EN JC-39 0 21139 -cellosaurus:CVCL_A1EP JC-47 0 21140 -cellosaurus:CVCL_A1EQ JC-49 0 21141 -cellosaurus:CVCL_A1ER JC-52 0 21142 -cellosaurus:CVCL_A1ES JC-54 0 21143 -cellosaurus:CVCL_A1ET JC-55 0 21144 -cellosaurus:CVCL_A1EU JC-56 0 21145 -cellosaurus:CVCL_A1EV JC-58 0 21146 -cellosaurus:CVCL_A1EW JC-61 0 21147 -cellosaurus:CVCL_A1EX JC-7 0 21148 -cellosaurus:CVCL_M270 JCK 0 21149 -cellosaurus:CVCL_GR47 JD-MEL 0 21150 -cellosaurus:CVCL_E299 JD13D 0 21151 -cellosaurus:CVCL_A631 JD38 0 21152 -cellosaurus:CVCL_W743 JD39 0 21153 -cellosaurus:CVCL_W744 JD40 0 21154 -cellosaurus:CVCL_RP37 JEM493 0 21155 -cellosaurus:CVCL_A1ID JFCR-OCCA-1 0 21156 -cellosaurus:CVCL_X151 JFEN 0 21157 -cellosaurus:CVCL_S102 JH 0 21158 -cellosaurus:CVCL_8098 JH-EsoAd1 0 21159 -cellosaurus:CVCL_E279 JH024 0 21160 -cellosaurus:CVCL_E280 JH029 0 21161 -cellosaurus:CVCL_M097 JHC-2 0 21162 -cellosaurus:CVCL_L154 JHC7 0 21163 -cellosaurus:CVCL_E075 JHCA-ov 0 21164 -cellosaurus:CVCL_E076 JHCOLOYI 0 21165 -cellosaurus:CVCL_2785 JHH-1 0 21166 -cellosaurus:CVCL_VT28 JHH-136 0 21167 -cellosaurus:CVCL_2786 JHH-2 0 21168 -cellosaurus:CVCL_VT29 JHH-211 0 21169 -cellosaurus:CVCL_VT30 JHH-227 0 21170 -cellosaurus:CVCL_VT31 JHH-245 0 21171 -cellosaurus:CVCL_VT32 JHH-505 0 21172 -cellosaurus:CVCL_VT33 JHH-520 0 21173 -cellosaurus:CVCL_2788 JHH-6 0 21174 -cellosaurus:CVCL_VT34 JHH-66 0 21175 -cellosaurus:CVCL_2805 JHH-7 0 21176 -cellosaurus:CVCL_VT35 JHH-75 0 21177 -cellosaurus:CVCL_IT47 JHH-DIPG-1 0 21178 -cellosaurus:CVCL_ZU38 JHH_ONB_1903 0 21179 -cellosaurus:CVCL_ZU39 JHH_ONB_1904 0 21180 -cellosaurus:CVCL_4640 JHOC-5 0 21181 -cellosaurus:CVCL_M712 JHOC-6 0 21182 -cellosaurus:CVCL_4641 JHOC-7 0 21183 -cellosaurus:CVCL_4642 JHOC-8 0 21184 -cellosaurus:CVCL_4643 JHOC-9 0 21185 -cellosaurus:CVCL_4644 JHOM-1 0 21186 -cellosaurus:CVCL_4645 JHOM-2B 0 21187 -cellosaurus:CVCL_4646 JHONA 0 21188 -cellosaurus:CVCL_4647 JHOS-2 0 21189 -cellosaurus:CVCL_4648 JHOS-3 0 21190 -cellosaurus:CVCL_4649 JHOS-4 0 21191 -cellosaurus:CVCL_W523 JHP-1 0 21192 -cellosaurus:CVCL_6661 JHSK-rec 0 21193 -cellosaurus:CVCL_S903 JHTK-1 0 21194 -cellosaurus:CVCL_H734 JHTKI-col-L 0 21195 -cellosaurus:CVCL_E077 JHTSK-col-L 0 21196 -cellosaurus:CVCL_5986 JHU-011 0 21197 -cellosaurus:CVCL_5990 JHU-020 0 21198 -cellosaurus:CVCL_5993 JHU-029 0 21199 -cellosaurus:CVCL_5985 JHU-06 0 21200 -cellosaurus:CVCL_VT36 JHU-0879 0 21201 -cellosaurus:CVCL_VT37 JHU-0937 0 21202 -cellosaurus:CVCL_VT38 JHU-1014 0 21203 -cellosaurus:CVCL_VT39 JHU-1016A 0 21204 -cellosaurus:CVCL_VT40 JHU-1016B 0 21205 -cellosaurus:CVCL_S824 JHU-ESS1 0 21206 -cellosaurus:CVCL_4650 JHUAS-1 0 21207 -cellosaurus:CVCL_4651 JHUAS-2-L 0 21208 -cellosaurus:CVCL_4652 JHUCS-1 0 21209 -cellosaurus:CVCL_4653 JHUCS-3 0 21210 -cellosaurus:CVCL_4655 JHUEM-1 0 21211 -cellosaurus:CVCL_4656 JHUEM-2 0 21212 -cellosaurus:CVCL_4657 JHUEM-3 0 21213 -cellosaurus:CVCL_4658 JHUEM-7 0 21214 -cellosaurus:CVCL_3729 JHUS-nk1 0 21215 -cellosaurus:CVCL_W934 JI 0 21216 -cellosaurus:CVCL_8884 JIH-3 0 21217 -cellosaurus:CVCL_A454 JIH-4 0 21218 -cellosaurus:CVCL_EQ76 JIH-5 0 21219 -cellosaurus:CVCL_A1TT JIL-O 0 21220 -cellosaurus:CVCL_2532 JIM1 0 21221 -cellosaurus:CVCL_2533 JIM3 0 21222 -cellosaurus:CVCL_2077 JIMT-1 0 21223 -cellosaurus:CVCL_H635 JK [Human anaplastic large cell lymphoma] 0 21224 -cellosaurus:CVCL_2079 JK-1 0 21225 -cellosaurus:CVCL_T755 JK-GMS 0 21226 -cellosaurus:CVCL_W474 JK-NB1 0 21227 -cellosaurus:CVCL_DD43 JK-T1 0 21228 -cellosaurus:CVCL_QW92 JKB-1 0 21229 -cellosaurus:CVCL_QW93 JKB-2 0 21230 -cellosaurus:CVCL_2080 JL-1 0 21231 -cellosaurus:CVCL_N703 JLP 0 21232 -cellosaurus:CVCL_W748 JLPC119 0 21233 -cellosaurus:CVCL_ZC21 JM [Human diffuse large B-cell lymphoma] 0 21234 -cellosaurus:CVCL_S103 JM [Human neuroblastoma] 0 21235 -cellosaurus:CVCL_3532 JM-1 0 21236 -cellosaurus:CVCL_UJ14 JMP-1 0 21237 -cellosaurus:CVCL_2081 JMSU-1 0 21238 -cellosaurus:CVCL_4W57 JMU-RTK-1 0 21239 -cellosaurus:CVCL_4W58 JMU-RTK-2 0 21240 -cellosaurus:CVCL_YQ05 JMW 0 21241 -cellosaurus:CVCL_9W68 JN-DSRCT-1 0 21242 -cellosaurus:CVCL_0C15 JN-M 0 21243 -cellosaurus:CVCL_0C16 JO-E 0 21244 -cellosaurus:CVCL_RP10 JO38 0 21245 -cellosaurus:CVCL_0P35 JOG-9 0 21246 -cellosaurus:CVCL_M891 JON 0 21247 -cellosaurus:CVCL_S507 JoPaca-1 0 21248 -cellosaurus:CVCL_8250 JOV675 0 21249 -cellosaurus:CVCL_RT33 JR 0 21250 -cellosaurus:CVCL_0365 JR-St 0 21251 -cellosaurus:CVCL_L880 JR1 0 21252 -cellosaurus:CVCL_5780 JR8 0 21253 -cellosaurus:CVCL_9711 JS-73 0 21254 -cellosaurus:CVCL_0C17 JS-E 0 21255 -cellosaurus:CVCL_3728 JSC-1 0 21256 -cellosaurus:CVCL_JX16 JSK-1 0 21257 -cellosaurus:CVCL_RK13 JSQ-11 0 21258 -cellosaurus:CVCL_RK12 JSQ-13 0 21259 -cellosaurus:CVCL_UI97 JT 0 21260 -cellosaurus:CVCL_M876 JTC-29 0 21261 -cellosaurus:CVCL_M877 JTC-30 0 21262 -cellosaurus:CVCL_M878 JTC-31 0 21263 -cellosaurus:CVCL_M879 JTC-32 0 21264 -cellosaurus:CVCL_M880 JTC-33 0 21265 -cellosaurus:CVCL_M881 JTC-34 0 21266 -cellosaurus:CVCL_WY82 JU-PI 0 21267 -cellosaurus:CVCL_2536 JU77 0 21268 -cellosaurus:CVCL_ZU74 Juma 0 21269 -cellosaurus:CVCL_2086 JURL-MK1 0 21270 -cellosaurus:CVCL_2087 JURL-MK2 0 21271 -cellosaurus:CVCL_R734 JVC 0 21272 -cellosaurus:CVCL_EG16 JVE015 0 21273 -cellosaurus:CVCL_IZ58 JVE017 0 21274 -cellosaurus:CVCL_EG17 JVE044 0 21275 -cellosaurus:CVCL_EG18 JVE059 0 21276 -cellosaurus:CVCL_EG19 JVE103 0 21277 -cellosaurus:CVCL_EG20 JVE109 0 21278 -cellosaurus:CVCL_EG21 JVE114 0 21279 -cellosaurus:CVCL_EG22 JVE127 0 21280 -cellosaurus:CVCL_EG23 JVE187 0 21281 -cellosaurus:CVCL_EG24 JVE192 0 21282 -cellosaurus:CVCL_EG25 JVE207 0 21283 -cellosaurus:CVCL_EG26 JVE222 0 21284 -cellosaurus:CVCL_EG27 JVE241 0 21285 -cellosaurus:CVCL_EG28 JVE253 0 21286 -cellosaurus:CVCL_EG29 JVE367 0 21287 -cellosaurus:CVCL_EG30 JVE371 0 21288 -cellosaurus:CVCL_EG31 JVE528 0 21289 -cellosaurus:CVCL_EG32 JVE774 0 21290 -cellosaurus:CVCL_M085 JX-G 0 21291 -cellosaurus:CVCL_A8TC JXQ-3D-1279R1 0 21292 -cellosaurus:CVCL_A8TD JXQ-3D-1279R2 0 21293 -cellosaurus:CVCL_A8TE JXQ-3D-1279R3 0 21294 -cellosaurus:CVCL_A8TF JXQ-3D-1279R4 0 21295 -cellosaurus:CVCL_A8TG JXQ-3D-1279R5 0 21296 -cellosaurus:CVCL_A8TH JXQ-3D-1279R6 0 21297 -cellosaurus:CVCL_A8TI JXQ-3D-1279R7 0 21298 -cellosaurus:CVCL_A8TJ JXQ-3D-1279R8 0 21299 -cellosaurus:CVCL_A8TK JXQ-3D-1279R9 0 21300 -cellosaurus:CVCL_A8TL JXQ-3D-1405R1 0 21301 -cellosaurus:CVCL_A8TM JXQ-3D-1405R2 0 21302 -cellosaurus:CVCL_A8TN JXQ-3D-1405R3 0 21303 -cellosaurus:CVCL_A8TP JXQ-3D-1405R4 0 21304 -cellosaurus:CVCL_A8TQ JXQ-3D-1436R1 0 21305 -cellosaurus:CVCL_A8TR JXQ-3D-1436R2 0 21306 -cellosaurus:CVCL_A8TS JXQ-3D-1436R3 0 21307 -cellosaurus:CVCL_A8TT JXQ-3D-1436R4 0 21308 -cellosaurus:CVCL_A8TU JXQ-3D-1436R5 0 21309 -cellosaurus:CVCL_A8TV JXQ-3D-1436R6 0 21310 -cellosaurus:CVCL_A8UF JXQ-3D-4160R1 0 21311 -cellosaurus:CVCL_A8UG JXQ-3D-4160R2 0 21312 -cellosaurus:CVCL_A8UH JXQ-3D-4160R3 0 21313 -cellosaurus:CVCL_A8UI JXQ-3D-4256R1 0 21314 -cellosaurus:CVCL_A8UJ JXQ-3D-4256R2 0 21315 -cellosaurus:CVCL_A8UK JXQ-3D-4256R3 0 21316 -cellosaurus:CVCL_A8SY JXQ-3D-668R1 0 21317 -cellosaurus:CVCL_A8SZ JXQ-3D-668R2 0 21318 -cellosaurus:CVCL_A8TA JXQ-3D-668R3 0 21319 -cellosaurus:CVCL_A8TB JXQ-3D-668R4 0 21320 -cellosaurus:CVCL_A8TW JXQ-3D-902R1 0 21321 -cellosaurus:CVCL_A8TX JXQ-3D-902R2 0 21322 -cellosaurus:CVCL_A8TY JXQ-3D-902R3 0 21323 -cellosaurus:CVCL_A8TZ JXQ-3D-902R4 0 21324 -cellosaurus:CVCL_A8UA JXQ-3D-902R5 0 21325 -cellosaurus:CVCL_A8UB JXQ-3D-902R6 0 21326 -cellosaurus:CVCL_A8UC JXQ-3D-902R7 0 21327 -cellosaurus:CVCL_A8UD JXQ-3D-902R8 0 21328 -cellosaurus:CVCL_A8UE JXQ-3D-902R9 0 21329 -cellosaurus:CVCL_6292 K-119 0 21330 -cellosaurus:CVCL_VK45 K-EW1 0 21331 -cellosaurus:CVCL_VK49 K-EW2 0 21332 -cellosaurus:CVCL_VK50 K-EW3 0 21333 -cellosaurus:CVCL_M820 K-MFH-1 0 21334 -cellosaurus:CVCL_WH99 K-MK-2 0 21335 -cellosaurus:CVCL_A7PB K-TL-1 0 21336 -cellosaurus:CVCL_5142 K008 0 21337 -cellosaurus:CVCL_M764 K028 0 21338 -cellosaurus:CVCL_8785 K033 0 21339 -cellosaurus:CVCL_V409 K1-Mel 0 21340 -cellosaurus:CVCL_W796 K19 0 21341 -cellosaurus:CVCL_AT85 K2 [Human melanoma] 0 21342 -cellosaurus:CVCL_B7P2 K3T 0 21343 -cellosaurus:CVCL_AT86 K4 [Human melanoma] 0 21344 -cellosaurus:CVCL_TZ80 K420L 0 21345 -cellosaurus:CVCL_IP01 K457 0 21346 -cellosaurus:CVCL_6307 K7 [Human thyroid carcinoma] 0 21347 -cellosaurus:CVCL_EQ75 K8 [Human melanoma] 0 21348 -cellosaurus:CVCL_EI75 K8 [Human thyroid carcinoma] 0 21349 -cellosaurus:CVCL_RW19 KAIMRC1 0 21350 -cellosaurus:CVCL_B7K2 KAIMRC2 0 21351 -cellosaurus:CVCL_QY03 KAL-1 0 21352 -cellosaurus:CVCL_1323 KALS-1 0 21353 -cellosaurus:CVCL_W532 KaMi 0 21354 -cellosaurus:CVCL_IU58 Kamoti 0 21355 -cellosaurus:CVCL_7198 Kan-BL 0 21356 -cellosaurus:CVCL_1F87 KAN-ES 0 21357 -cellosaurus:CVCL_W455 KAO 0 21358 -cellosaurus:CVCL_LK73 Kap 13 0 21359 -cellosaurus:CVCL_LK74 Kap 16 0 21360 -cellosaurus:CVCL_LK75 Kap 19 0 21361 -cellosaurus:CVCL_LK76 Kap 22 0 21362 -cellosaurus:CVCL_LK77 Kap 9 0 21363 -cellosaurus:CVCL_LC72 KaRi 0 21364 -cellosaurus:CVCL_QY35 Karpas-1106A 0 21365 -cellosaurus:CVCL_1821 Karpas-1106P 0 21366 -cellosaurus:CVCL_9Y63 Karpas-120 0 21367 -cellosaurus:CVCL_9554 Karpas-1272 0 21368 -cellosaurus:CVCL_2539 Karpas-1718 0 21369 -cellosaurus:CVCL_RM21 Karpas-190 0 21370 -cellosaurus:CVCL_7705 Karpas-230 0 21371 -cellosaurus:CVCL_1822 Karpas-231 0 21372 -cellosaurus:CVCL_7706 Karpas-241 0 21373 -cellosaurus:CVCL_0T65 Karpas-247 0 21374 -cellosaurus:CVCL_2540 Karpas-25 0 21375 -cellosaurus:CVCL_9553 Karpas-353 0 21376 -cellosaurus:CVCL_2541 Karpas-384 0 21377 -cellosaurus:CVCL_2542 Karpas-417 0 21378 -cellosaurus:CVCL_1325 Karpas-422 0 21379 -cellosaurus:CVCL_1326 Karpas-45 0 21380 -cellosaurus:CVCL_1823 Karpas-620 0 21381 -cellosaurus:CVCL_2543 Karpas-929 0 21382 -cellosaurus:CVCL_9544 KAS-6/1 0 21383 -cellosaurus:CVCL_M524 KAS-6/2 0 21384 -cellosaurus:CVCL_8485 Kasumi-10 0 21385 -cellosaurus:CVCL_0590 Kasumi-2 0 21386 -cellosaurus:CVCL_0612 Kasumi-3 0 21387 -cellosaurus:CVCL_0613 Kasumi-4 0 21388 -cellosaurus:CVCL_6864 Kasumi-5 0 21389 -cellosaurus:CVCL_0614 Kasumi-6 0 21390 -cellosaurus:CVCL_8486 Kasumi-7 0 21391 -cellosaurus:CVCL_8487 Kasumi-8 0 21392 -cellosaurus:CVCL_8488 Kasumi-9 0 21393 -cellosaurus:CVCL_8523 KasumiA-541 0 21394 -cellosaurus:CVCL_8524 KasumiA-554 0 21395 -cellosaurus:CVCL_8525 KasumiA-568 0 21396 -cellosaurus:CVCL_6303 KAT-18 0 21397 -cellosaurus:CVCL_S308 KAT45 0 21398 -cellosaurus:CVCL_M551 Katata 0 21399 -cellosaurus:CVCL_0373 KBM-5 0 21400 -cellosaurus:CVCL_W475 KC-1 [Human colon carcinoma] 0 21401 -cellosaurus:CVCL_X904 KC12 0 21402 -cellosaurus:CVCL_7961 KCC-L871 0 21403 -cellosaurus:CVCL_7962 KCC-M871 0 21404 -cellosaurus:CVCL_7964 KCC-T871 0 21405 -cellosaurus:CVCL_7965 KCC-T873 0 21406 -cellosaurus:CVCL_7967 KCC-TCM902 0 21407 -cellosaurus:CVCL_7968 KCC-TCM903 0 21408 -cellosaurus:CVCL_M157 KCCF1 0 21409 -cellosaurus:CVCL_A632 KCMC-T 0 21410 -cellosaurus:CVCL_U757 KD [Human abdomen rhabdoid tumor] 0 21411 -cellosaurus:CVCL_ZV52 KE 0 21412 -cellosaurus:CVCL_WK75 KE-10 0 21413 -cellosaurus:CVCL_W476 KE-24 0 21414 -cellosaurus:CVCL_D883 KE-3 0 21415 -cellosaurus:CVCL_3385 KE-39 0 21416 -cellosaurus:CVCL_D884 KE-4 0 21417 -cellosaurus:CVCL_WK76 KE-5 0 21418 -cellosaurus:CVCL_WK77 KE-6 0 21419 -cellosaurus:CVCL_WK78 KE-7 0 21420 -cellosaurus:CVCL_WK79 KE-8 0 21421 -cellosaurus:CVCL_2092 Kelly 0 21422 -cellosaurus:CVCL_7199 Kem-BL 0 21423 -cellosaurus:CVCL_W124 KEN-3 0 21424 -cellosaurus:CVCL_H579 Ketr-3 0 21425 -cellosaurus:CVCL_S636 KF-RMS-1 0 21426 -cellosaurus:CVCL_2971 KG-1-C 0 21427 -cellosaurus:CVCL_W464 KG55T 0 21428 -cellosaurus:CVCL_C1CT KGK 0 21429 -cellosaurus:CVCL_0375 KGN 0 21430 -cellosaurus:CVCL_JF66 KH-1 0 21431 -cellosaurus:CVCL_JF67 KH-2 0 21432 -cellosaurus:CVCL_W214 KH-39 0 21433 -cellosaurus:CVCL_QW94 KH-3A 0 21434 -cellosaurus:CVCL_QW95 KH-3B 0 21435 -cellosaurus:CVCL_QW96 KH-4 0 21436 -cellosaurus:CVCL_RM08 KH184 0 21437 -cellosaurus:CVCL_W210 KHm-1 0 21438 -cellosaurus:CVCL_2973 KHM-10B 0 21439 -cellosaurus:CVCL_9546 KHM-1A 0 21440 -cellosaurus:CVCL_2972 KHM-1B 0 21441 -cellosaurus:CVCL_8526 KHM-2B 0 21442 -cellosaurus:CVCL_W211 KHm-3 0 21443 -cellosaurus:CVCL_2974 KHM-3S 0 21444 -cellosaurus:CVCL_VP58 KHm-4 0 21445 -cellosaurus:CVCL_9545 KHM-4 0 21446 -cellosaurus:CVCL_W212 KHm-5 0 21447 -cellosaurus:CVCL_2975 KHM-5M 0 21448 -cellosaurus:CVCL_W213 KHm-6 0 21449 -cellosaurus:CVCL_2976 KHYG-1 0 21450 -cellosaurus:CVCL_2093 Ki-JK 0 21451 -cellosaurus:CVCL_C022 Ki-PeCa-L1 0 21452 -cellosaurus:CVCL_C023 Ki-PeCa-P1 0 21453 -cellosaurus:CVCL_A088 Kid92 0 21454 -cellosaurus:CVCL_W937 Kie-BL 0 21455 -cellosaurus:CVCL_AV54 KIJ265T 0 21456 -cellosaurus:CVCL_A4ZZ KIJ308T 0 21457 -cellosaurus:CVCL_D885 KiKu 0 21458 -cellosaurus:CVCL_T738 KiKu-M 0 21459 -cellosaurus:CVCL_7969 KIM-1 0 21460 -cellosaurus:CVCL_W479 KIMI-1 0 21461 -cellosaurus:CVCL_W480 KIMI-2 0 21462 -cellosaurus:CVCL_IU38 Kimura 0 21463 -cellosaurus:CVCL_1328 KINGS-1 0 21464 -cellosaurus:CVCL_M506 KIS-1 0 21465 -cellosaurus:CVCL_YI69 Kitra-SRS 0 21466 -cellosaurus:CVCL_8252 KJ29 0 21467 -cellosaurus:CVCL_WZ45 KJON 0 21468 -cellosaurus:CVCL_M781 KJOS-II 0 21469 -cellosaurus:CVCL_F844 KK 0 21470 -cellosaurus:CVCL_X908 KK-1 [Human leukemia] 0 21471 -cellosaurus:CVCL_VK46 KK-2 0 21472 -cellosaurus:CVCL_X909 KK-5 0 21473 -cellosaurus:CVCL_HF89 KK-m 0 21474 -cellosaurus:CVCL_HF90 KK-p 0 21475 -cellosaurus:CVCL_Z615 KK0206 0 21476 -cellosaurus:CVCL_N704 KK124 0 21477 -cellosaurus:CVCL_B495 KK125 0 21478 -cellosaurus:CVCL_XD17 KKK-D049 0 21479 -cellosaurus:CVCL_XD18 KKK-D068 0 21480 -cellosaurus:CVCL_XD19 KKK-D131 0 21481 -cellosaurus:CVCL_XD20 KKK-D138 0 21482 -cellosaurus:CVCL_1B37 KKLS 0 21483 -cellosaurus:CVCL_X152 KKM-A 0 21484 -cellosaurus:CVCL_X153 KKM-B 0 21485 -cellosaurus:CVCL_X154 KKM-C 0 21486 -cellosaurus:CVCL_X155 KKM-D 0 21487 -cellosaurus:CVCL_VG86 KKNS-1 0 21488 -cellosaurus:CVCL_VG87 KKNS-2 0 21489 -cellosaurus:CVCL_VG88 KKNS-3 0 21490 -cellosaurus:CVCL_Y277 KKS-2 0 21491 -cellosaurus:CVCL_VF98 KKU-023 0 21492 -cellosaurus:CVCL_3996 KKU-100 0 21493 -cellosaurus:CVCL_VF99 KKU-452 0 21494 -cellosaurus:CVCL_M265 KKU-OCA17 0 21495 -cellosaurus:CVCL_1329 KLE 0 21496 -cellosaurus:CVCL_W405 KM-1 0 21497 -cellosaurus:CVCL_W410 KM-11 0 21498 -cellosaurus:CVCL_C1CU KM-4 [Human gingival carcinoma] 0 21499 -cellosaurus:CVCL_W406 KM-4 [Human plasma cell myeloma] 0 21500 -cellosaurus:CVCL_W407 KM-5 0 21501 -cellosaurus:CVCL_W408 KM-6 0 21502 -cellosaurus:CVCL_W409 KM-7 0 21503 -cellosaurus:CVCL_1330 KM-H2 0 21504 -cellosaurus:CVCL_WJ11 KM22 0 21505 -cellosaurus:CVCL_2977 KMBC-2 0 21506 -cellosaurus:CVCL_B269 KMC-1 0 21507 -cellosaurus:CVCL_A635 KMC-2 0 21508 -cellosaurus:CVCL_7970 KMCH-1 0 21509 -cellosaurus:CVCL_7971 KMCH-2 0 21510 -cellosaurus:CVCL_A1KQ KMG-14 0 21511 -cellosaurus:CVCL_A1KR KMG-15 0 21512 -cellosaurus:CVCL_A1KS KMG-16 0 21513 -cellosaurus:CVCL_A1KT KMG-17 0 21514 -cellosaurus:CVCL_A1KK KMG-2 0 21515 -cellosaurus:CVCL_A1KL KMG-3 0 21516 -cellosaurus:CVCL_JZ69 KMG-4 0 21517 -cellosaurus:CVCL_A1KM KMG-5 0 21518 -cellosaurus:CVCL_A1KN KMG-8 0 21519 -cellosaurus:CVCL_A1KP KMG-9 0 21520 -cellosaurus:CVCL_D882 KMG-A 0 21521 -cellosaurus:CVCL_M735 KMG-C 0 21522 -cellosaurus:CVCL_S641 KMH-2 0 21523 -cellosaurus:CVCL_A1IZ KMK-2 0 21524 -cellosaurus:CVCL_2979 KML-1 0 21525 -cellosaurus:CVCL_2980 KMLS-1 0 21526 -cellosaurus:CVCL_2981 KMM-1 0 21527 -cellosaurus:CVCL_M491 KMM-56 0 21528 -cellosaurus:CVCL_A636 KMO-90 0 21529 -cellosaurus:CVCL_QW97 KMO-R 0 21530 -cellosaurus:CVCL_8489 KMP-1 0 21531 -cellosaurus:CVCL_8490 KMP-2 0 21532 -cellosaurus:CVCL_8491 KMP-3 0 21533 -cellosaurus:CVCL_8492 KMP-4 0 21534 -cellosaurus:CVCL_8494 KMP-6 0 21535 -cellosaurus:CVCL_8495 KMP-7 0 21536 -cellosaurus:CVCL_2982 KMPC-3 0 21537 -cellosaurus:CVCL_2983 KMRC-1 0 21538 -cellosaurus:CVCL_2984 KMRC-2 0 21539 -cellosaurus:CVCL_2986 KMRC-20 0 21540 -cellosaurus:CVCL_AR99 KMRC-21 0 21541 -cellosaurus:CVCL_2985 KMRC-3 0 21542 -cellosaurus:CVCL_2987 KMRC-5 0 21543 -cellosaurus:CVCL_AS00 KMRM-A1 0 21544 -cellosaurus:CVCL_2988 KMRM-M1 0 21545 -cellosaurus:CVCL_4W62 KMRM-S2 0 21546 -cellosaurus:CVCL_A1KI KMS II 0 21547 -cellosaurus:CVCL_VJ34 KMS-11/BR 0 21548 -cellosaurus:CVCL_1334 KMS-12-BM 0 21549 -cellosaurus:CVCL_1333 KMS-12-PE 0 21550 -cellosaurus:CVCL_A637 KMS-18 0 21551 -cellosaurus:CVCL_2990 KMS-20 0 21552 -cellosaurus:CVCL_A445 KMS-21-PE 0 21553 -cellosaurus:CVCL_8312 KMS-24 0 21554 -cellosaurus:CVCL_2992 KMS-26 0 21555 -cellosaurus:CVCL_2993 KMS-27 0 21556 -cellosaurus:CVCL_2994 KMS-28BM 0 21557 -cellosaurus:CVCL_2995 KMS-28PE 0 21558 -cellosaurus:CVCL_8527 KMS-33 0 21559 -cellosaurus:CVCL_D657 KMS-4 0 21560 -cellosaurus:CVCL_A446 KMS-5 0 21561 -cellosaurus:CVCL_W481 KMU100 0 21562 -cellosaurus:CVCL_IU95 KN 0 21563 -cellosaurus:CVCL_W215 KN-41 0 21564 -cellosaurus:CVCL_S865 KN-OH1 0 21565 -cellosaurus:CVCL_8885 KNA 0 21566 -cellosaurus:CVCL_0378 KNS-42 0 21567 -cellosaurus:CVCL_2798 KNS-60 0 21568 -cellosaurus:CVCL_1335 KNS-62 0 21569 -cellosaurus:CVCL_WI01 KO-RCC-1 0 21570 -cellosaurus:CVCL_1321 KO52 0 21571 -cellosaurus:CVCL_VN49 KOB 0 21572 -cellosaurus:CVCL_J354 Kobayashi 0 21573 -cellosaurus:CVCL_W265 KOBK-101 0 21574 -cellosaurus:CVCL_W266 KOBK-130 0 21575 -cellosaurus:CVCL_W270 KOBK-134 0 21576 -cellosaurus:CVCL_W269 KOBK-96 0 21577 -cellosaurus:CVCL_L701 KOC-1S 0 21578 -cellosaurus:CVCL_L702 KOC-2S 0 21579 -cellosaurus:CVCL_L703 KOC-4C 0 21580 -cellosaurus:CVCL_5306 KOC-5C 0 21581 -cellosaurus:CVCL_5307 KOC-7C 0 21582 -cellosaurus:CVCL_3991 KOCL-33 0 21583 -cellosaurus:CVCL_3992 KOCL-44 0 21584 -cellosaurus:CVCL_3993 KOCL-45 0 21585 -cellosaurus:CVCL_6867 KOCL-48 0 21586 -cellosaurus:CVCL_6866 KOCL-50 0 21587 -cellosaurus:CVCL_6865 KOCL-51 0 21588 -cellosaurus:CVCL_3994 KOCL-58 0 21589 -cellosaurus:CVCL_3995 KOCL-69 0 21590 -cellosaurus:CVCL_XY75 KOG-1 0 21591 -cellosaurus:CVCL_3001 KON 0 21592 -cellosaurus:CVCL_7972 KOPB-26 0 21593 -cellosaurus:CVCL_W277 KOPB-38 0 21594 -cellosaurus:CVCL_7973 KOPM-28 0 21595 -cellosaurus:CVCL_7974 KOPM-30 0 21596 -cellosaurus:CVCL_7975 KOPM-53 0 21597 -cellosaurus:CVCL_M647 KOPM-88 0 21598 -cellosaurus:CVCL_3937 KOPN-1 0 21599 -cellosaurus:CVCL_7976 KOPN-30bi 0 21600 -cellosaurus:CVCL_A325 KOPN-32 0 21601 -cellosaurus:CVCL_A326 KOPN-34 0 21602 -cellosaurus:CVCL_A327 KOPN-35 0 21603 -cellosaurus:CVCL_A328 KOPN-36 0 21604 -cellosaurus:CVCL_W273 KOPN-39 0 21605 -cellosaurus:CVCL_LI34 KOPN-40 0 21606 -cellosaurus:CVCL_3943 KOPN-41 0 21607 -cellosaurus:CVCL_W274 KOPN-46 0 21608 -cellosaurus:CVCL_W275 KOPN-47 0 21609 -cellosaurus:CVCL_W276 KOPN-49 0 21610 -cellosaurus:CVCL_A329 KOPN-54 0 21611 -cellosaurus:CVCL_7977 KOPN-55bi 0 21612 -cellosaurus:CVCL_7978 KOPN-57bi 0 21613 -cellosaurus:CVCL_A330 KOPN-60 0 21614 -cellosaurus:CVCL_A331 KOPN-61 0 21615 -cellosaurus:CVCL_A332 KOPN-62 0 21616 -cellosaurus:CVCL_A333 KOPN-63 0 21617 -cellosaurus:CVCL_7979 KOPN-66bi 0 21618 -cellosaurus:CVCL_7980 KOPN-67 0 21619 -cellosaurus:CVCL_7981 KOPN-72bi 0 21620 -cellosaurus:CVCL_A334 KOPN-79 0 21621 -cellosaurus:CVCL_1866 KOPN-8 0 21622 -cellosaurus:CVCL_W271 KOPN-83bi 0 21623 -cellosaurus:CVCL_A335 KOPN-84 0 21624 -cellosaurus:CVCL_A638 KOPN-K 0 21625 -cellosaurus:CVCL_A111 KOPT-11 0 21626 -cellosaurus:CVCL_A112 KOPT-4 0 21627 -cellosaurus:CVCL_A113 KOPT-5 0 21628 -cellosaurus:CVCL_A114 KOPT-6 0 21629 -cellosaurus:CVCL_4965 KOPT-K1 0 21630 -cellosaurus:CVCL_A7NT KOS-1 0 21631 -cellosaurus:CVCL_1337 KOSC-2 0 21632 -cellosaurus:CVCL_S681 KOSCC-11 0 21633 -cellosaurus:CVCL_S682 KOSCC-25A 0 21634 -cellosaurus:CVCL_S683 KOSCC-25B 0 21635 -cellosaurus:CVCL_S684 KOSCC-25C 0 21636 -cellosaurus:CVCL_S685 KOSCC-25D 0 21637 -cellosaurus:CVCL_S686 KOSCC-25E 0 21638 -cellosaurus:CVCL_S687 KOSCC-33A 0 21639 -cellosaurus:CVCL_S688 KOSCC-33B 0 21640 -cellosaurus:CVCL_N511 KOT-1 0 21641 -cellosaurus:CVCL_N512 KOT-2 0 21642 -cellosaurus:CVCL_A1IF KP 1 0 21643 -cellosaurus:CVCL_RL94 KP-1 0 21644 -cellosaurus:CVCL_9543 KP-6 0 21645 -cellosaurus:CVCL_A2FR KP-EW-AK 0 21646 -cellosaurus:CVCL_7982 KP-EW-MS 0 21647 -cellosaurus:CVCL_7983 KP-EW-YI 0 21648 -cellosaurus:CVCL_7984 KP-L-RY 0 21649 -cellosaurus:CVCL_7985 KP-MO-TS 0 21650 -cellosaurus:CVCL_A2FQ KP-MRT-HS 0 21651 -cellosaurus:CVCL_A2FN KP-MRT-KS 0 21652 -cellosaurus:CVCL_A2FP KP-MRT-KSa 0 21653 -cellosaurus:CVCL_7050 KP-MRT-NS 0 21654 -cellosaurus:CVCL_7051 KP-MRT-RY 0 21655 -cellosaurus:CVCL_7052 KP-MRT-YM 0 21656 -cellosaurus:CVCL_9508 KP-N-AY 0 21657 -cellosaurus:CVCL_9509 KP-N-AYR 0 21658 -cellosaurus:CVCL_Y134 KP-N-HN 0 21659 -cellosaurus:CVCL_4771 KP-N-NS 0 21660 -cellosaurus:CVCL_Y135 KP-N-NY 0 21661 -cellosaurus:CVCL_9511 KP-N-RT-LN 0 21662 -cellosaurus:CVCL_9510 KP-N-SI(FA) 0 21663 -cellosaurus:CVCL_Y136 KP-N-SK 0 21664 -cellosaurus:CVCL_Y137 KP-N-TK 0 21665 -cellosaurus:CVCL_Y138 KP-N-YuNo 0 21666 -cellosaurus:CVCL_5147 KP-PN-TTBm2 0 21667 -cellosaurus:CVCL_A2FU KP-PNET-TO 0 21668 -cellosaurus:CVCL_A2FS KP-RMS-DH 0 21669 -cellosaurus:CVCL_A2FT KP-RMS-KH 0 21670 -cellosaurus:CVCL_EG33 KP283T 0 21671 -cellosaurus:CVCL_EG34 KP363T 0 21672 -cellosaurus:CVCL_EG35 KP7038T 0 21673 -cellosaurus:CVCL_A107 KPAM1 0 21674 -cellosaurus:CVCL_W861 KPB-L2 0 21675 -cellosaurus:CVCL_5309 KPB-M8 0 21676 -cellosaurus:CVCL_M532 KPC-32 0 21677 -cellosaurus:CVCL_B412 KPD 0 21678 -cellosaurus:CVCL_F947 KPK1 0 21679 -cellosaurus:CVCL_F948 KPK13 0 21680 -cellosaurus:CVCL_E122 KPL-3C 0 21681 -cellosaurus:CVCL_5310 KPL-4 0 21682 -cellosaurus:CVCL_9541 KPMM1 0 21683 -cellosaurus:CVCL_5311 KPMM2 0 21684 -cellosaurus:CVCL_0G02 KPNT-1 0 21685 -cellosaurus:CVCL_A1JT KPUM-MS3 0 21686 -cellosaurus:CVCL_A1JU KPUM-UH1 0 21687 -cellosaurus:CVCL_HL92 KRC-7 [Human RCC] 0 21688 -cellosaurus:CVCL_A448 KRC/Y 0 21689 -cellosaurus:CVCL_L295 KRJ-II 0 21690 -cellosaurus:CVCL_1343 KS-1 [Human glioblastoma] 0 21691 -cellosaurus:CVCL_D284 KS-1 [Human Krukenberg tumour] 0 21692 -cellosaurus:CVCL_4J72 KS-1 [Human primary effusion lymphoma] 0 21693 -cellosaurus:CVCL_W862 KS-Bu3 0 21694 -cellosaurus:CVCL_9805 KS-IMM 0 21695 -cellosaurus:CVCL_VJ85 KSE-1 0 21696 -cellosaurus:CVCL_VJ86 KSE-2 0 21697 -cellosaurus:CVCL_IW66 KSNY 0 21698 -cellosaurus:CVCL_M379 KT [Human breast carcinoma] 0 21699 -cellosaurus:CVCL_LI23 KT [Human leukemia] 0 21700 -cellosaurus:CVCL_7055 KT-2 0 21701 -cellosaurus:CVCL_6293 KT-3 0 21702 -cellosaurus:CVCL_7056 KT-4 0 21703 -cellosaurus:CVCL_W485 KT-COLO-8 0 21704 -cellosaurus:CVCL_9572 KTA-1 0 21705 -cellosaurus:CVCL_9573 KTA-2 0 21706 -cellosaurus:CVCL_9574 KTA-3 0 21707 -cellosaurus:CVCL_9575 KTA-4 0 21708 -cellosaurus:CVCL_A105 KTA7 0 21709 -cellosaurus:CVCL_6476 KTC-2 0 21710 -cellosaurus:CVCL_W911 KTC-3 0 21711 -cellosaurus:CVCL_B273 KTCTL-104 0 21712 -cellosaurus:CVCL_RW15 KTCTL-107 0 21713 -cellosaurus:CVCL_B272 KTCTL-111 0 21714 -cellosaurus:CVCL_5883 KTCTL-120 0 21715 -cellosaurus:CVCL_B274 KTCTL-128 0 21716 -cellosaurus:CVCL_5885 KTCTL-129 0 21717 -cellosaurus:CVCL_5870 KTCTL-13 0 21718 -cellosaurus:CVCL_5869 KTCTL-135 0 21719 -cellosaurus:CVCL_5879 KTCTL-140 0 21720 -cellosaurus:CVCL_5875 KTCTL-185 0 21721 -cellosaurus:CVCL_B275 KTCTL-187 0 21722 -cellosaurus:CVCL_5880 KTCTL-195 0 21723 -cellosaurus:CVCL_5884 KTCTL-1M 0 21724 -cellosaurus:CVCL_5871 KTCTL-2 0 21725 -cellosaurus:CVCL_RV73 KTCTL-20 0 21726 -cellosaurus:CVCL_5868 KTCTL-21 0 21727 -cellosaurus:CVCL_5872 KTCTL-26 0 21728 -cellosaurus:CVCL_5873 KTCTL-26A 0 21729 -cellosaurus:CVCL_B276 KTCTL-28 0 21730 -cellosaurus:CVCL_5878 KTCTL-30 0 21731 -cellosaurus:CVCL_RW13 KTCTL-31 0 21732 -cellosaurus:CVCL_B277 KTCTL-33 0 21733 -cellosaurus:CVCL_5877 KTCTL-48 0 21734 -cellosaurus:CVCL_5882 KTCTL-53 0 21735 -cellosaurus:CVCL_5886 KTCTL-54 0 21736 -cellosaurus:CVCL_RW14 KTCTL-61 0 21737 -cellosaurus:CVCL_B278 KTCTL-84 0 21738 -cellosaurus:CVCL_5888 KTCTL-87 0 21739 -cellosaurus:CVCL_T737 KTHOS 0 21740 -cellosaurus:CVCL_A106 KTSq-1 0 21741 -cellosaurus:CVCL_4712 KU-1 0 21742 -cellosaurus:CVCL_1344 KU-19-19 0 21743 -cellosaurus:CVCL_5213 KU-19-20 0 21744 -cellosaurus:CVCL_5212 KU-20-01 0 21745 -cellosaurus:CVCL_E330 KU-8 0 21746 -cellosaurus:CVCL_JM01 KU-9 0 21747 -cellosaurus:CVCL_B7HY KU-CAS3 0 21748 -cellosaurus:CVCL_B7HZ KU-CAS5 0 21749 -cellosaurus:CVCL_X903 Ku-Ep 0 21750 -cellosaurus:CVCL_GS50 KU-MELTC-1 0 21751 -cellosaurus:CVCL_E118 KU-SS-1 0 21752 -cellosaurus:CVCL_C0UV KUCaP13 0 21753 -cellosaurus:CVCL_V743 Kudi 0 21754 -cellosaurus:CVCL_VU99 KUL84-MEL 0 21755 -cellosaurus:CVCL_A8QM KUL98-MELA 0 21756 -cellosaurus:CVCL_A8QN KUL98-MELB 0 21757 -cellosaurus:CVCL_W512 KUMA-1 0 21758 -cellosaurus:CVCL_W513 KUMA-2 0 21759 -cellosaurus:CVCL_SA77 KUMA-3 0 21760 -cellosaurus:CVCL_WK63 KUR-11 0 21761 -cellosaurus:CVCL_WK64 KUR-20 0 21762 -cellosaurus:CVCL_WK65 KUR-21 0 21763 -cellosaurus:CVCL_WK66 KUR-62 0 21764 -cellosaurus:CVCL_1345 Kuramochi 0 21765 -cellosaurus:CVCL_YP90 KURATOU 0 21766 -cellosaurus:CVCL_G036 KUT-1 0 21767 -cellosaurus:CVCL_G037 KUT-2 0 21768 -cellosaurus:CVCL_G038 KUT-3 0 21769 -cellosaurus:CVCL_W940 KV6 0 21770 -cellosaurus:CVCL_W216 KW-103 0 21771 -cellosaurus:CVCL_0B93 KW1 0 21772 -cellosaurus:CVCL_0B94 KW10 0 21773 -cellosaurus:CVCL_0B95 KW13 0 21774 -cellosaurus:CVCL_0B96 KW15 0 21775 -cellosaurus:CVCL_0B97 KW17 0 21776 -cellosaurus:CVCL_0B98 KW2 0 21777 -cellosaurus:CVCL_0B99 KW22 0 21778 -cellosaurus:CVCL_0C00 KW24 0 21779 -cellosaurus:CVCL_0C01 KW3 0 21780 -cellosaurus:CVCL_0C02 KW6 0 21781 -cellosaurus:CVCL_0C03 KW7 0 21782 -cellosaurus:CVCL_0C04 KW9 0 21783 -cellosaurus:CVCL_X541 KWA-RC 0 21784 -cellosaurus:CVCL_9816 KWS-I 0 21785 -cellosaurus:CVCL_LH78 KY-1 0 21786 -cellosaurus:CVCL_LH79 KY-2 0 21787 -cellosaurus:CVCL_LH80 KY-3 0 21788 -cellosaurus:CVCL_1825 KYAE-1 0 21789 -cellosaurus:CVCL_4W63 KYAE-2 0 21790 -cellosaurus:CVCL_UZ50 KYMM-1 0 21791 -cellosaurus:CVCL_UZ51 KYMM-2 0 21792 -cellosaurus:CVCL_7925 KYN-1 0 21793 -cellosaurus:CVCL_0381 KYN-2 0 21794 -cellosaurus:CVCL_7926 KYN-3 0 21795 -cellosaurus:CVCL_1643 KYSE-110 0 21796 -cellosaurus:CVCL_A097 KYSE-1140 0 21797 -cellosaurus:CVCL_A098 KYSE-1170 0 21798 -cellosaurus:CVCL_8501 KYSE-1190 0 21799 -cellosaurus:CVCL_8502 KYSE-1230 0 21800 -cellosaurus:CVCL_A099 KYSE-1240 0 21801 -cellosaurus:CVCL_A100 KYSE-1250 0 21802 -cellosaurus:CVCL_8503 KYSE-1260 0 21803 -cellosaurus:CVCL_1347 KYSE-140 0 21804 -cellosaurus:CVCL_8504 KYSE-1440 0 21805 -cellosaurus:CVCL_1348 KYSE-150 0 21806 -cellosaurus:CVCL_1358 KYSE-170 0 21807 -cellosaurus:CVCL_1349 KYSE-180 0 21808 -cellosaurus:CVCL_A101 KYSE-1860 0 21809 -cellosaurus:CVCL_8301 KYSE-190 0 21810 -cellosaurus:CVCL_G698 KYSE-200 0 21811 -cellosaurus:CVCL_A102 KYSE-201 0 21812 -cellosaurus:CVCL_1359 KYSE-220 0 21813 -cellosaurus:CVCL_J284 KYSE-2270 0 21814 -cellosaurus:CVCL_4W14 KYSE-2300 0 21815 -cellosaurus:CVCL_8505 KYSE-2400 0 21816 -cellosaurus:CVCL_Y278 KYSE-2650 0 21817 -cellosaurus:CVCL_1350 KYSE-270 0 21818 -cellosaurus:CVCL_4W15 KYSE-2710 0 21819 -cellosaurus:CVCL_A104 KYSE-273 0 21820 -cellosaurus:CVCL_J283 KYSE-2780 0 21821 -cellosaurus:CVCL_S527 KYSE-280 0 21822 -cellosaurus:CVCL_4W16 KYSE-2880 0 21823 -cellosaurus:CVCL_1351 KYSE-30 0 21824 -cellosaurus:CVCL_J285 KYSE-3210 0 21825 -cellosaurus:CVCL_8506 KYSE-3410 0 21826 -cellosaurus:CVCL_8507 KYSE-350 0 21827 -cellosaurus:CVCL_G699 KYSE-360 0 21828 -cellosaurus:CVCL_M252 KYSE-3650 0 21829 -cellosaurus:CVCL_4W17 KYSE-3940 0 21830 -cellosaurus:CVCL_1352 KYSE-410 0 21831 -cellosaurus:CVCL_1353 KYSE-450 0 21832 -cellosaurus:CVCL_1360 KYSE-50 0 21833 -cellosaurus:CVCL_1354 KYSE-510 0 21834 -cellosaurus:CVCL_1355 KYSE-520 0 21835 -cellosaurus:CVCL_8508 KYSE-590 0 21836 -cellosaurus:CVCL_1356 KYSE-70 0 21837 -cellosaurus:CVCL_8509 KYSE-770 0 21838 -cellosaurus:CVCL_8510 KYSE-790 0 21839 -cellosaurus:CVCL_8511 KYSE-850 0 21840 -cellosaurus:CVCL_A103 KYSE-890 0 21841 -cellosaurus:CVCL_8512 KYSE-960 0 21842 -cellosaurus:CVCL_W938 Kyu-BL 0 21843 -cellosaurus:CVCL_IV20 L 660 0 21844 -cellosaurus:CVCL_S918 L-1 [Human ovarian carcinoma] 0 21845 -cellosaurus:CVCL_M348 L-1062 0 21846 -cellosaurus:CVCL_W858 L-1091 0 21847 -cellosaurus:CVCL_2096 L-1236 0 21848 -cellosaurus:CVCL_1357 L-363 0 21849 -cellosaurus:CVCL_M699 L-439 0 21850 -cellosaurus:CVCL_M700 L-538 0 21851 -cellosaurus:CVCL_1362 L-540 0 21852 -cellosaurus:CVCL_1867 L-591 0 21853 -cellosaurus:CVCL_2098 L-82 0 21854 -cellosaurus:CVCL_M347 L-872 0 21855 -cellosaurus:CVCL_UI52 L-HIRO 0 21856 -cellosaurus:CVCL_A639 L-KAW 0 21857 -cellosaurus:CVCL_UI53 L-KAZ 0 21858 -cellosaurus:CVCL_UI54 L-KUM 0 21859 -cellosaurus:CVCL_A640 L-MAT 0 21860 -cellosaurus:CVCL_UI55 L-MEG 0 21861 -cellosaurus:CVCL_A641 L-SAK 0 21862 -cellosaurus:CVCL_A642 L-SMY 0 21863 -cellosaurus:CVCL_0C34 L100 0 21864 -cellosaurus:CVCL_TZ81 L1023L 0 21865 -cellosaurus:CVCL_JX44 L11 0 21866 -cellosaurus:CVCL_JX45 L14 [Human leukemia] 0 21867 -cellosaurus:CVCL_FG74 L1M1 0 21868 -cellosaurus:CVCL_0C35 L266 0 21869 -cellosaurus:CVCL_W926 L27 0 21870 -cellosaurus:CVCL_D706 L2975 0 21871 -cellosaurus:CVCL_H586 L2987 0 21872 -cellosaurus:CVCL_9668 L3055 0 21873 -cellosaurus:CVCL_0C36 L32 0 21874 -cellosaurus:CVCL_D707 L3252 0 21875 -cellosaurus:CVCL_0C37 L361 0 21876 -cellosaurus:CVCL_DF84 L56Br-C1 0 21877 -cellosaurus:CVCL_TZ82 L619L 0 21878 -cellosaurus:CVCL_Y197 L804L 0 21879 -cellosaurus:CVCL_D708 L835 0 21880 -cellosaurus:CVCL_0C38 L96 0 21881 -cellosaurus:CVCL_M531 LA-49 0 21882 -cellosaurus:CVCL_1829 LA-N-2 0 21883 -cellosaurus:CVCL_M158 LA-N-4 0 21884 -cellosaurus:CVCL_0389 LA-N-5 0 21885 -cellosaurus:CVCL_A1ZZ LA10-1 0 21886 -cellosaurus:CVCL_9U23 LACC-1 0 21887 -cellosaurus:CVCL_K244 LALW-2 0 21888 -cellosaurus:CVCL_W912 LAM1 0 21889 -cellosaurus:CVCL_RP38 LAM136 0 21890 -cellosaurus:CVCL_A096 LAP-35 0 21891 -cellosaurus:CVCL_4743 LAPC-3 0 21892 -cellosaurus:CVCL_4746 LAPC-9 0 21893 -cellosaurus:CVCL_UE17 LASCPC-01 0 21894 -cellosaurus:CVCL_IP27 LAU-Me190 0 21895 -cellosaurus:CVCL_IP28 LAU-Me200 0 21896 -cellosaurus:CVCL_IP29 LAU-Me204.A1 0 21897 -cellosaurus:CVCL_IP30 LAU-Me215 0 21898 -cellosaurus:CVCL_DI17 LAU-Me235 0 21899 -cellosaurus:CVCL_IP31 LAU-Me242.B1 0 21900 -cellosaurus:CVCL_IP32 LAU-Me243 0 21901 -cellosaurus:CVCL_DI18 LAU-Me246.M1 0 21902 -cellosaurus:CVCL_IP33 LAU-Me248.3 0 21903 -cellosaurus:CVCL_S595 LAU-Me256 0 21904 -cellosaurus:CVCL_S596 LAU-Me260.LN 0 21905 -cellosaurus:CVCL_IP34 LAU-Me261 0 21906 -cellosaurus:CVCL_S597 LAU-Me275 0 21907 -cellosaurus:CVCL_IP35 LAU-Me276 0 21908 -cellosaurus:CVCL_DI20 LAU-Me280.R.LN 0 21909 -cellosaurus:CVCL_IP36 LAU-Me281.M1 0 21910 -cellosaurus:CVCL_IP37 LAU-Me281.M3 0 21911 -cellosaurus:CVCL_S598 LAU-Me290 0 21912 -cellosaurus:CVCL_IP38 LAU-Me300 0 21913 -cellosaurus:CVCL_IP39 LAU-Me305 0 21914 -cellosaurus:CVCL_IP40 LAU-Me312 0 21915 -cellosaurus:CVCL_IP41 LAU-Me317 0 21916 -cellosaurus:CVCL_IP42 LAU-Me337 0 21917 -cellosaurus:CVCL_IP43 LAU-T1255A.b1 0 21918 -cellosaurus:CVCL_IP44 LAU-T1255A.g2 0 21919 -cellosaurus:CVCL_IP45 LAU-T1257A 0 21920 -cellosaurus:CVCL_IP46 LAU-T1257C 0 21921 -cellosaurus:CVCL_IP47 LAU-T1262A 0 21922 -cellosaurus:CVCL_IP48 LAU-T1262B 0 21923 -cellosaurus:CVCL_DI21 LAU-T149D 0 21924 -cellosaurus:CVCL_IP49 LAU-T331A 0 21925 -cellosaurus:CVCL_IP50 LAU-T333A 0 21926 -cellosaurus:CVCL_IP51 LAU-T42B 0 21927 -cellosaurus:CVCL_IP52 LAU-T441A 0 21928 -cellosaurus:CVCL_DI22 LAU-T50B 0 21929 -cellosaurus:CVCL_DI23 LAU-T618A 0 21930 -cellosaurus:CVCL_1830 LAZ-221 0 21931 -cellosaurus:CVCL_M514 LB 84-1 0 21932 -cellosaurus:CVCL_W399 LB 84-2 0 21933 -cellosaurus:CVCL_W400 LB 84-3 0 21934 -cellosaurus:CVCL_W401 LB 84-4 0 21935 -cellosaurus:CVCL_W402 LB 84-5 0 21936 -cellosaurus:CVCL_W403 LB 85-1 0 21937 -cellosaurus:CVCL_E903 LB-831 0 21938 -cellosaurus:CVCL_E904 LB-832 0 21939 -cellosaurus:CVCL_F234 LB1017-HNSC 0 21940 -cellosaurus:CVCL_1364 LB1047-RCC 0 21941 -cellosaurus:CVCL_VV00 LB11-SCLC/OC1 0 21942 -cellosaurus:CVCL_VV01 LB12-SCLC/OC2 0 21943 -cellosaurus:CVCL_F235 LB126-SCLC 0 21944 -cellosaurus:CVCL_DQ75 LB129-SLCL 0 21945 -cellosaurus:CVCL_VV02 LB13-SCLC/OC3 0 21946 -cellosaurus:CVCL_F239 LB1319-MEL 0 21947 -cellosaurus:CVCL_RY29 LB1358-RCC 0 21948 -cellosaurus:CVCL_VV03 LB1448-MEL.2 0 21949 -cellosaurus:CVCL_E915 LB1610-MEL 0 21950 -cellosaurus:CVCL_F238 LB1622-MEL 0 21951 -cellosaurus:CVCL_VV05 LB1751-MEL 0 21952 -cellosaurus:CVCL_VV06 LB1781-MEL 0 21953 -cellosaurus:CVCL_VV07 LB1828-RCC 0 21954 -cellosaurus:CVCL_F232 LB188-SAR 0 21955 -cellosaurus:CVCL_DD44 LB2033-MEL 0 21956 -cellosaurus:CVCL_ZG19 LB2077-MELA 0 21957 -cellosaurus:CVCL_ZG20 LB2077-MELB 0 21958 -cellosaurus:CVCL_ZG21 LB2077-MELC 0 21959 -cellosaurus:CVCL_VV08 LB2117-MEL 0 21960 -cellosaurus:CVCL_1365 LB2241-RCC 0 21961 -cellosaurus:CVCL_VV09 LB2259-MEL 0 21962 -cellosaurus:CVCL_E936 LB23-SAR 0 21963 -cellosaurus:CVCL_E932 LB24-MEL 0 21964 -cellosaurus:CVCL_1366 LB2518-MEL 0 21965 -cellosaurus:CVCL_V410 LB2531-MEL-Z 0 21966 -cellosaurus:CVCL_VV10 LB2586-MEL 0 21967 -cellosaurus:CVCL_VV11 LB265-MEL 0 21968 -cellosaurus:CVCL_ZG26 LB2687-MEL 0 21969 -cellosaurus:CVCL_ZG22 LB2784-MEL 0 21970 -cellosaurus:CVCL_ZG23 LB2805-MEL 0 21971 -cellosaurus:CVCL_ZG24 LB2813-MEL 0 21972 -cellosaurus:CVCL_ZG25 LB2840-MEL 0 21973 -cellosaurus:CVCL_ZG27 LB2870-MEL 0 21974 -cellosaurus:CVCL_ZG28 LB2901-MEL 0 21975 -cellosaurus:CVCL_ZG29 LB2929-MEL 0 21976 -cellosaurus:CVCL_E935 LB30-MEL 0 21977 -cellosaurus:CVCL_ZG30 LB3080-MELA 0 21978 -cellosaurus:CVCL_ZG31 LB3110-MEL 0 21979 -cellosaurus:CVCL_ZG32 LB3129-MELA 0 21980 -cellosaurus:CVCL_ZG33 LB3129-MELB 0 21981 -cellosaurus:CVCL_E933 LB33-MELA 0 21982 -cellosaurus:CVCL_E934 LB33-MELB 0 21983 -cellosaurus:CVCL_ZG34 LB33-MELC 0 21984 -cellosaurus:CVCL_ZG35 LB33-MELD 0 21985 -cellosaurus:CVCL_DQ76 LB37-NSLCL 0 21986 -cellosaurus:CVCL_F240 LB39-MEL 0 21987 -cellosaurus:CVCL_F241 LB4-MEL 0 21988 -cellosaurus:CVCL_VV12 LB43-MEL 0 21989 -cellosaurus:CVCL_E937 LB45-MEL 0 21990 -cellosaurus:CVCL_WV41 LB5848-LYMP 0 21991 -cellosaurus:CVCL_WV42 LB5871-LYMP 0 21992 -cellosaurus:CVCL_1368 LB647-SCLC 0 21993 -cellosaurus:CVCL_F237 LB70-MEL 0 21994 -cellosaurus:CVCL_1369 LB771-HNC 0 21995 -cellosaurus:CVCL_E906 LB796-BLC 0 21996 -cellosaurus:CVCL_F236 LB804-ALL 0 21997 -cellosaurus:CVCL_1370 LB831-BLC 0 21998 -cellosaurus:CVCL_E905 LB905-BLC 0 21999 -cellosaurus:CVCL_A8QP LB919-SCCHN 0 22000 -cellosaurus:CVCL_F233 LB929-MEL 0 22001 -cellosaurus:CVCL_E916 LB951-MEL 0 22002 -cellosaurus:CVCL_1371 LB996-RCC 0 22003 -cellosaurus:CVCL_D550 LC-06-JCK 0 22004 -cellosaurus:CVCL_1373 LC-2/ad 0 22005 -cellosaurus:CVCL_A1KU LC-65A 0 22006 -cellosaurus:CVCL_A1KV LC-99A 0 22007 -cellosaurus:CVCL_0B64 LC-T 0 22008 -cellosaurus:CVCL_Y146 LC01 0 22009 -cellosaurus:CVCL_Y147 LC02 0 22010 -cellosaurus:CVCL_Y148 LC02-No.2 0 22011 -cellosaurus:CVCL_Y149 LC03 0 22012 -cellosaurus:CVCL_Y150 LC04 0 22013 -cellosaurus:CVCL_Y151 LC05 0 22014 -cellosaurus:CVCL_Y152 LC06 0 22015 -cellosaurus:CVCL_Y153 LC07 0 22016 -cellosaurus:CVCL_Y154 LC08 0 22017 -cellosaurus:CVCL_Y155 LC09 0 22018 -cellosaurus:CVCL_Y156 LC10 0 22019 -cellosaurus:CVCL_Y157 LC11 0 22020 -cellosaurus:CVCL_W458 LC114 0 22021 -cellosaurus:CVCL_Y158 LC15 0 22022 -cellosaurus:CVCL_Y159 LC16 0 22023 -cellosaurus:CVCL_Y160 LC17 0 22024 -cellosaurus:CVCL_Y161 LC18 0 22025 -cellosaurus:CVCL_Y162 LC20 0 22026 -cellosaurus:CVCL_Y163 LC21 0 22027 -cellosaurus:CVCL_Y164 LC23 0 22028 -cellosaurus:CVCL_Y165 LC25 0 22029 -cellosaurus:CVCL_Y166 LC26 0 22030 -cellosaurus:CVCL_Y167 LC27 0 22031 -cellosaurus:CVCL_1374 LC4-1 0 22032 -cellosaurus:CVCL_D230 Lc817 0 22033 -cellosaurus:CVCL_E062 LCAM1 0 22034 -cellosaurus:CVCL_W648 LCC-18 0 22035 -cellosaurus:CVCL_1375 LCLC-103H 0 22036 -cellosaurus:CVCL_1376 LCLC-97TM1 0 22037 -cellosaurus:CVCL_M742 LCM-Mel 0 22038 -cellosaurus:CVCL_7053 LCP-Mel 0 22039 -cellosaurus:CVCL_A643 LCSC#1 0 22040 -cellosaurus:CVCL_A644 LCSC#2 0 22041 -cellosaurus:CVCL_A5XF LCT-6 0 22042 -cellosaurus:CVCL_Y435 LD 0 22043 -cellosaurus:CVCL_0C18 LD-T 0 22044 -cellosaurus:CVCL_EJ12 LD137 0 22045 -cellosaurus:CVCL_EJ13 LD583 0 22046 -cellosaurus:CVCL_EJ14 LD600 0 22047 -cellosaurus:CVCL_EJ15 LD605 0 22048 -cellosaurus:CVCL_EJ16 LD611 0 22049 -cellosaurus:CVCL_EJ17 LD627 0 22050 -cellosaurus:CVCL_EJ18 LD630 0 22051 -cellosaurus:CVCL_EJ19 LD660 0 22052 -cellosaurus:CVCL_EJ20 LD692 0 22053 -cellosaurus:CVCL_EJ21 LD700 0 22054 -cellosaurus:CVCL_EJ22 LD71 0 22055 -cellosaurus:CVCL_T756 LDS-Falck 01 0 22056 -cellosaurus:CVCL_RA47 LE8915-RCC 0 22057 -cellosaurus:CVCL_RA48 LE9001-RCC 0 22058 -cellosaurus:CVCL_RY30 LE9004-RCC 0 22059 -cellosaurus:CVCL_RA49 LE9104-RCC 0 22060 -cellosaurus:CVCL_E911 LE9211-RCC 0 22061 -cellosaurus:CVCL_RA50 LE9415-RCC 0 22062 -cellosaurus:CVCL_1E34 LeCa 19.4 0 22063 -cellosaurus:CVCL_1E35 LeCa 26.5 0 22064 -cellosaurus:CVCL_QW98 LEF1 0 22065 -cellosaurus:CVCL_W486 LEIO-2 0 22066 -cellosaurus:CVCL_D524 LES 0 22067 -cellosaurus:CVCL_ZV48 LG-11 0 22068 -cellosaurus:CVCL_0C19 LG-T 0 22069 -cellosaurus:CVCL_0B86 LH6215 0 22070 -cellosaurus:CVCL_8889 LH86 0 22071 -cellosaurus:CVCL_D228 LHK2 0 22072 -cellosaurus:CVCL_D698 LHY-821 0 22073 -cellosaurus:CVCL_L881 LI 0 22074 -cellosaurus:CVCL_VN24 Li-21 0 22075 -cellosaurus:CVCL_VN25 Li-22 0 22076 -cellosaurus:CVCL_VN27 Li-24 0 22077 -cellosaurus:CVCL_0390 LI90 0 22078 -cellosaurus:CVCL_H209 LIB 0 22079 -cellosaurus:CVCL_JZ84 LICM 107 0 22080 -cellosaurus:CVCL_JZ85 LICM 124 0 22081 -cellosaurus:CVCL_JZ86 LICM 154 0 22082 -cellosaurus:CVCL_JZ87 LICM 158 0 22083 -cellosaurus:CVCL_JZ88 LICM 196 0 22084 -cellosaurus:CVCL_JZ89 LICM 204 0 22085 -cellosaurus:CVCL_JZ90 LICM 209 0 22086 -cellosaurus:CVCL_JZ78 LICM 222 0 22087 -cellosaurus:CVCL_JZ82 LICM 44 0 22088 -cellosaurus:CVCL_JZ83 LICM 56 0 22089 -cellosaurus:CVCL_JZ79 LICM 95 0 22090 -cellosaurus:CVCL_7987 LiLa-1 0 22091 -cellosaurus:CVCL_4433 LIM1839 0 22092 -cellosaurus:CVCL_4434 LIM1863 0 22093 -cellosaurus:CVCL_4435 LIM1899 0 22094 -cellosaurus:CVCL_DG01 LIM2045 0 22095 -cellosaurus:CVCL_4436 LIM2099 0 22096 -cellosaurus:CVCL_G358 LIM2358 0 22097 -cellosaurus:CVCL_4437 LIM2405 0 22098 -cellosaurus:CVCL_4438 LIM2408 0 22099 -cellosaurus:CVCL_4439 LIM2412 0 22100 -cellosaurus:CVCL_4441 LIM2537 0 22101 -cellosaurus:CVCL_4442 LIM2550 0 22102 -cellosaurus:CVCL_4443 LIM2551 0 22103 -cellosaurus:CVCL_VQ01 LIMA 97 0 22104 -cellosaurus:CVCL_4U68 Lipo-DUE1 0 22105 -cellosaurus:CVCL_4U71 Lipo203 0 22106 -cellosaurus:CVCL_4U72 Lipo224 0 22107 -cellosaurus:CVCL_4U73 Lipo246 0 22108 -cellosaurus:CVCL_4U74 Lipo256 0 22109 -cellosaurus:CVCL_4U80 Lipo573 0 22110 -cellosaurus:CVCL_4U87 Lipo815 0 22111 -cellosaurus:CVCL_4U88 Lipo863 0 22112 -cellosaurus:CVCL_M821 LiSa-2 0 22113 -cellosaurus:CVCL_W939 Liv-BL 0 22114 -cellosaurus:CVCL_V627 LIXC002 0 22115 -cellosaurus:CVCL_V628 LIXC003 0 22116 -cellosaurus:CVCL_V629 LIXC004 0 22117 -cellosaurus:CVCL_V630 LIXC006 0 22118 -cellosaurus:CVCL_V631 LIXC011 0 22119 -cellosaurus:CVCL_V632 LIXC012 0 22120 -cellosaurus:CVCL_B7AQ LIXC127 0 22121 -cellosaurus:CVCL_8652 LK-1 0 22122 -cellosaurus:CVCL_W487 LK-17 0 22123 -cellosaurus:CVCL_1377 LK-2 0 22124 -cellosaurus:CVCL_W488 LK-52 0 22125 -cellosaurus:CVCL_DG35 LK0412 0 22126 -cellosaurus:CVCL_W131 LK1 [Human ovarian carcinoma] 0 22127 -cellosaurus:CVCL_ZV67 LK1D 0 22128 -cellosaurus:CVCL_W132 LK2 0 22129 -cellosaurus:CVCL_ZV68 LK57 0 22130 -cellosaurus:CVCL_ZV69 LK60 0 22131 -cellosaurus:CVCL_ZV70 LK63 [Philadelphia] 0 22132 -cellosaurus:CVCL_A645 LK79 0 22133 -cellosaurus:CVCL_A646 LK87 0 22134 -cellosaurus:CVCL_ZV71 LK87A 0 22135 -cellosaurus:CVCL_ZV72 LK91 0 22136 -cellosaurus:CVCL_B3QF LM 0 22137 -cellosaurus:CVCL_UC71 LM-MEL-100 0 22138 -cellosaurus:CVCL_UC72 LM-MEL-101 0 22139 -cellosaurus:CVCL_UH50 LM-MEL-102 0 22140 -cellosaurus:CVCL_UH51 LM-MEL-103 0 22141 -cellosaurus:CVCL_UH52 LM-MEL-104 0 22142 -cellosaurus:CVCL_UH53 LM-MEL-105 0 22143 -cellosaurus:CVCL_UC25 LM-MEL-12 0 22144 -cellosaurus:CVCL_UC26 LM-MEL-14 0 22145 -cellosaurus:CVCL_UC27 LM-MEL-15 0 22146 -cellosaurus:CVCL_UC28 LM-MEL-16 0 22147 -cellosaurus:CVCL_UC29 LM-MEL-17 0 22148 -cellosaurus:CVCL_UC30 LM-MEL-19 0 22149 -cellosaurus:CVCL_UC16 LM-MEL-1a 0 22150 -cellosaurus:CVCL_UC17 LM-MEL-2 0 22151 -cellosaurus:CVCL_UC31 LM-MEL-20 0 22152 -cellosaurus:CVCL_UC32 LM-MEL-24 0 22153 -cellosaurus:CVCL_UC33 LM-MEL-25 0 22154 -cellosaurus:CVCL_UC34 LM-MEL-26 0 22155 -cellosaurus:CVCL_UC35 LM-MEL-27 0 22156 -cellosaurus:CVCL_UC36 LM-MEL-28 0 22157 -cellosaurus:CVCL_UC37 LM-MEL-29 0 22158 -cellosaurus:CVCL_UC18 LM-MEL-3 0 22159 -cellosaurus:CVCL_UC38 LM-MEL-30 0 22160 -cellosaurus:CVCL_UC39 LM-MEL-31 0 22161 -cellosaurus:CVCL_UC40 LM-MEL-33 0 22162 -cellosaurus:CVCL_UC41 LM-MEL-34 0 22163 -cellosaurus:CVCL_UC42 LM-MEL-35 0 22164 -cellosaurus:CVCL_UC43 LM-MEL-36 0 22165 -cellosaurus:CVCL_UC44 LM-MEL-38a 0 22166 -cellosaurus:CVCL_UC45 LM-MEL-39 0 22167 -cellosaurus:CVCL_UC19 LM-MEL-4 0 22168 -cellosaurus:CVCL_UC46 LM-MEL-40 0 22169 -cellosaurus:CVCL_UC47 LM-MEL-41 0 22170 -cellosaurus:CVCL_UC48 LM-MEL-42 0 22171 -cellosaurus:CVCL_UC49 LM-MEL-44 0 22172 -cellosaurus:CVCL_UC50 LM-MEL-45 0 22173 -cellosaurus:CVCL_UC51 LM-MEL-46 0 22174 -cellosaurus:CVCL_UC52 LM-MEL-47 0 22175 -cellosaurus:CVCL_UC53 LM-MEL-48 0 22176 -cellosaurus:CVCL_UC54 LM-MEL-49 0 22177 -cellosaurus:CVCL_UC55 LM-MEL-50 0 22178 -cellosaurus:CVCL_UH54 LM-MEL-51 0 22179 -cellosaurus:CVCL_UC56 LM-MEL-53 0 22180 -cellosaurus:CVCL_UC57 LM-MEL-57 0 22181 -cellosaurus:CVCL_UC58 LM-MEL-59 0 22182 -cellosaurus:CVCL_UC20 LM-MEL-5a 0 22183 -cellosaurus:CVCL_UC21 LM-MEL-6 0 22184 -cellosaurus:CVCL_UC59 LM-MEL-60 0 22185 -cellosaurus:CVCL_UC60 LM-MEL-62 0 22186 -cellosaurus:CVCL_UC61 LM-MEL-64 0 22187 -cellosaurus:CVCL_UC62 LM-MEL-69 0 22188 -cellosaurus:CVCL_UC22 LM-MEL-7 0 22189 -cellosaurus:CVCL_UC63 LM-MEL-70 0 22190 -cellosaurus:CVCL_UC64 LM-MEL-71 0 22191 -cellosaurus:CVCL_UC65 LM-MEL-73 0 22192 -cellosaurus:CVCL_UC66 LM-MEL-75 0 22193 -cellosaurus:CVCL_UC67 LM-MEL-77 0 22194 -cellosaurus:CVCL_UC23 LM-MEL-8 0 22195 -cellosaurus:CVCL_UC68 LM-MEL-82 0 22196 -cellosaurus:CVCL_UC24 LM-MEL-9 0 22197 -cellosaurus:CVCL_UC69 LM-MEL-97 0 22198 -cellosaurus:CVCL_UC70 LM-MEL-98 0 22199 -cellosaurus:CVCL_VN50 LM-Y1 0 22200 -cellosaurus:CVCL_VN51 LM-Y2 0 22201 -cellosaurus:CVCL_VL38 LM156 0 22202 -cellosaurus:CVCL_5H98 LMS03 0 22203 -cellosaurus:CVCL_5H99 LMS04 0 22204 -cellosaurus:CVCL_5I00 LMS05 0 22205 -cellosaurus:CVCL_M822 LMS148L 0 22206 -cellosaurus:CVCL_WV02 LMS6-93 0 22207 -cellosaurus:CVCL_4849 LMSU 0 22208 -cellosaurus:CVCL_VN52 LMWT5 0 22209 -cellosaurus:CVCL_LI20 LN-1049 0 22210 -cellosaurus:CVCL_0392 LN-18 0 22211 -cellosaurus:CVCL_3954 LN-215 0 22212 -cellosaurus:CVCL_S442 LN-2207 0 22213 -cellosaurus:CVCL_WS27 LN-2207GS 0 22214 -cellosaurus:CVCL_3957 LN-235 0 22215 -cellosaurus:CVCL_WS28 LN-2540GS 0 22216 -cellosaurus:CVCL_S443 LN-2669 0 22217 -cellosaurus:CVCL_WS30 LN-2683GS 0 22218 -cellosaurus:CVCL_WS31 LN-2826GS 0 22219 -cellosaurus:CVCL_3955 LN-340 0 22220 -cellosaurus:CVCL_6840 LN-401 0 22221 -cellosaurus:CVCL_1378 LN-405 0 22222 -cellosaurus:CVCL_6841 LN-427 0 22223 -cellosaurus:CVCL_3959 LN-428 0 22224 -cellosaurus:CVCL_3962 LN-464 0 22225 -cellosaurus:CVCL_3963 LN-702 0 22226 -cellosaurus:CVCL_6842 LN-71 0 22227 -cellosaurus:CVCL_3964 LN-751 0 22228 -cellosaurus:CVCL_3965 LN-774 0 22229 -cellosaurus:CVCL_3966 LN-784 0 22230 -cellosaurus:CVCL_6843 LN-827 0 22231 -cellosaurus:CVCL_6844 LN-859 0 22232 -cellosaurus:CVCL_9U28 LN1 0 22233 -cellosaurus:CVCL_0C60 LN1590 0 22234 -cellosaurus:CVCL_0C58 LN6216c 0 22235 -cellosaurus:CVCL_J076 LND1 0 22236 -cellosaurus:CVCL_D229 LNY1 0 22237 -cellosaurus:CVCL_2581 LO68 0 22238 -cellosaurus:CVCL_LI10 LOHG-I 0 22239 -cellosaurus:CVCL_F001 LoKe 0 22240 -cellosaurus:CVCL_M533 LOPRA-2 0 22241 -cellosaurus:CVCL_UE00 LOPRA-3 0 22242 -cellosaurus:CVCL_2104 LOU-NH91 0 22243 -cellosaurus:CVCL_1380 Loucy 0 22244 -cellosaurus:CVCL_8259 Loukes 0 22245 -cellosaurus:CVCL_1381 LOX-IMVI 0 22246 -cellosaurus:CVCL_ZC22 LP [Human diffuse large B-cell lymphoma] 0 22247 -cellosaurus:CVCL_U761 LP [Human kidney rhabdoid tumor] 0 22248 -cellosaurus:CVCL_0012 LP-1 0 22249 -cellosaurus:CVCL_V413 LP6 0 22250 -cellosaurus:CVCL_1Y62 LPC10m 0 22251 -cellosaurus:CVCL_1Y63 LPC11m 0 22252 -cellosaurus:CVCL_1Y64 LPC11p 0 22253 -cellosaurus:CVCL_1Y65 LPC12m 0 22254 -cellosaurus:CVCL_1Y66 LPC13p 0 22255 -cellosaurus:CVCL_1Y67 LPC14p 0 22256 -cellosaurus:CVCL_1Y68 LPC15p 0 22257 -cellosaurus:CVCL_1Y53 LPC1p 0 22258 -cellosaurus:CVCL_1Y54 LPC2p 0 22259 -cellosaurus:CVCL_1Y55 LPC3p 0 22260 -cellosaurus:CVCL_A1AQ LPC43 0 22261 -cellosaurus:CVCL_1Y56 LPC4p 0 22262 -cellosaurus:CVCL_1Y57 LPC5m 0 22263 -cellosaurus:CVCL_1Y58 LPC6p 0 22264 -cellosaurus:CVCL_1Y59 LPC7m 0 22265 -cellosaurus:CVCL_1Y60 LPC8p 0 22266 -cellosaurus:CVCL_1Y61 LPC9p 0 22267 -cellosaurus:CVCL_A1UY LPS067 0 22268 -cellosaurus:CVCL_SA54 LPS1 0 22269 -cellosaurus:CVCL_M823 LPS141 0 22270 -cellosaurus:CVCL_SA55 LPS2 0 22271 -cellosaurus:CVCL_AU06 LPS224 0 22272 -cellosaurus:CVCL_AU07 LPS246 0 22273 -cellosaurus:CVCL_A1VQ LPS27 0 22274 -cellosaurus:CVCL_SA56 LPS3 0 22275 -cellosaurus:CVCL_V414 LPS510 0 22276 -cellosaurus:CVCL_A1VR LPS6 0 22277 -cellosaurus:CVCL_V415 LPS853 0 22278 -cellosaurus:CVCL_AU08 LPS863 0 22279 -cellosaurus:CVCL_ZC23 LR 0 22280 -cellosaurus:CVCL_A5PI LRVA-4 0 22281 -cellosaurus:CVCL_WH68 LRWZ 0 22282 -cellosaurus:CVCL_2105 LS 0 22283 -cellosaurus:CVCL_IW35 LS030609 0 22284 -cellosaurus:CVCL_IW36 LS060208 0 22285 -cellosaurus:CVCL_1382 LS1034 0 22286 -cellosaurus:CVCL_1D76 LS106 0 22287 -cellosaurus:CVCL_1D77 LS111 0 22288 -cellosaurus:CVCL_1D79 LS112 0 22289 -cellosaurus:CVCL_1383 LS123 0 22290 -cellosaurus:CVCL_DH87 LS14 0 22291 -cellosaurus:CVCL_N595 LS274 0 22292 -cellosaurus:CVCL_1D78 LS277 0 22293 -cellosaurus:CVCL_N596 LS310 0 22294 -cellosaurus:CVCL_1385 LS411N 0 22295 -cellosaurus:CVCL_E320 Lscc-02 0 22296 -cellosaurus:CVCL_J319 LSHM7 0 22297 -cellosaurus:CVCL_EG59 LSP.M2 0 22298 -cellosaurus:CVCL_E054 LST-R1 0 22299 -cellosaurus:CVCL_HX23 LT2 [Human vulvar squamous cell carcinoma] 0 22300 -cellosaurus:CVCL_VU35 LT215 0 22301 -cellosaurus:CVCL_VU36 LT259 0 22302 -cellosaurus:CVCL_VU37 LT73 0 22303 -cellosaurus:CVCL_A9BJ LT97 0 22304 -cellosaurus:CVCL_6927 LTEP-78 0 22305 -cellosaurus:CVCL_6928 LTEP-a1 0 22306 -cellosaurus:CVCL_HA47 LTEP-a3 0 22307 -cellosaurus:CVCL_6930 LTEP-s 0 22308 -cellosaurus:CVCL_6931 LTEP-sm 0 22309 -cellosaurus:CVCL_1388 Lu-134-B 0 22310 -cellosaurus:CVCL_1389 Lu-135 0 22311 -cellosaurus:CVCL_3350 Lu-138 0 22312 -cellosaurus:CVCL_1390 Lu-139 0 22313 -cellosaurus:CVCL_3335 Lu-140 0 22314 -cellosaurus:CVCL_3347 Lu-141 0 22315 -cellosaurus:CVCL_3348 Lu-143 0 22316 -cellosaurus:CVCL_1391 Lu-165 0 22317 -cellosaurus:CVCL_3349 Lu-24 0 22318 -cellosaurus:CVCL_GS27 Lu-75(c) 0 22319 -cellosaurus:CVCL_L178 LU-HNSCC-3 0 22320 -cellosaurus:CVCL_L179 LU-HNSCC-4 0 22321 -cellosaurus:CVCL_L180 LU-HNSCC-5 0 22322 -cellosaurus:CVCL_L181 LU-HNSCC-6 0 22323 -cellosaurus:CVCL_L182 LU-HNSCC-7 0 22324 -cellosaurus:CVCL_L183 LU-HNSCC-8 0 22325 -cellosaurus:CVCL_W819 Lu-YePa 0 22326 -cellosaurus:CVCL_4850 LuCaP 23.1 0 22327 -cellosaurus:CVCL_4851 LuCaP 23.12 0 22328 -cellosaurus:CVCL_4852 LuCaP 23.8 0 22329 -cellosaurus:CVCL_4853 LuCaP 35 0 22330 -cellosaurus:CVCL_4854 LuCaP 35V 0 22331 -cellosaurus:CVCL_4855 LuCaP 41 0 22332 -cellosaurus:CVCL_4750 LuCaP 49 0 22333 -cellosaurus:CVCL_4857 LuCaP 58 0 22334 -cellosaurus:CVCL_4858 LuCap 73 0 22335 -cellosaurus:CVCL_W892 LUCC1 0 22336 -cellosaurus:CVCL_W893 LUCC2 0 22337 -cellosaurus:CVCL_W894 LUCC3 0 22338 -cellosaurus:CVCL_W895 LUCC4 0 22339 -cellosaurus:CVCL_W896 LUCC5 0 22340 -cellosaurus:CVCL_W897 LUCC6 0 22341 -cellosaurus:CVCL_W898 LUCC7 0 22342 -cellosaurus:CVCL_W899 LUCC8 0 22343 -cellosaurus:CVCL_W900 LUCC9 0 22344 -cellosaurus:CVCL_2582 LUDLU-1 0 22345 -cellosaurus:CVCL_E340 LUDLU-23 0 22346 -cellosaurus:CVCL_RP41 LUTC-1 0 22347 -cellosaurus:CVCL_RP46 LUTC-10 0 22348 -cellosaurus:CVCL_RP47 LUTC-12 0 22349 -cellosaurus:CVCL_RP48 LUTC-13 0 22350 -cellosaurus:CVCL_RP49 LUTC-14 0 22351 -cellosaurus:CVCL_RP50 LUTC-17 0 22352 -cellosaurus:CVCL_RP42 LUTC-2 0 22353 -cellosaurus:CVCL_RP43 LUTC-4 0 22354 -cellosaurus:CVCL_RP44 LUTC-5 0 22355 -cellosaurus:CVCL_RP45 LUTC-8 0 22356 -cellosaurus:CVCL_0C20 LV-E 0 22357 -cellosaurus:CVCL_ZC24 LVP-03 0 22358 -cellosaurus:CVCL_RL90 LW/SO 0 22359 -cellosaurus:CVCL_IV44 LW878 0 22360 -cellosaurus:CVCL_5791 LX-1 [Human lung carcinoma] 0 22361 -cellosaurus:CVCL_1394 LXF 289 0 22362 -cellosaurus:CVCL_5901 LXF 297 0 22363 -cellosaurus:CVCL_D189 LXFA 629L 0 22364 -cellosaurus:CVCL_D085 LXFL 529L 0 22365 -cellosaurus:CVCL_ZU83 Ly1 0 22366 -cellosaurus:CVCL_ZU81 Ly11 0 22367 -cellosaurus:CVCL_ZU84 Ly2 0 22368 -cellosaurus:CVCL_ZU82 Ly28 0 22369 -cellosaurus:CVCL_IU21 Ly46 0 22370 -cellosaurus:CVCL_N273 Ly47 0 22371 -cellosaurus:CVCL_IU48 Ly65 0 22372 -cellosaurus:CVCL_N274 Ly66 0 22373 -cellosaurus:CVCL_N275 Ly67 0 22374 -cellosaurus:CVCL_IU49 Ly74 0 22375 -cellosaurus:CVCL_N276 Ly91 0 22376 -cellosaurus:CVCL_YQ06 LYMM 0 22377 -cellosaurus:CVCL_9494 M-1 [Human mantle cell lymphoma] 0 22378 -cellosaurus:CVCL_D028 M-17 0 22379 -cellosaurus:CVCL_R727 M-OS 0 22380 -cellosaurus:CVCL_1Q82 M-TAT 0 22381 -cellosaurus:CVCL_0086 M0-91 0 22382 -cellosaurus:CVCL_S806 M000216 0 22383 -cellosaurus:CVCL_S807 M000907 0 22384 -cellosaurus:CVCL_S808 M000921 0 22385 -cellosaurus:CVCL_S671 M010119 0 22386 -cellosaurus:CVCL_S809 M010308 0 22387 -cellosaurus:CVCL_S672 M010322 0 22388 -cellosaurus:CVCL_S673 M010718 0 22389 -cellosaurus:CVCL_S674 M010817 0 22390 -cellosaurus:CVCL_A1UF M040416 0 22391 -cellosaurus:CVCL_AT59 M050829 0 22392 -cellosaurus:CVCL_0400 M059J 0 22393 -cellosaurus:CVCL_0401 M059K 0 22394 -cellosaurus:CVCL_AT44 M060125 0 22395 -cellosaurus:CVCL_AT45 M060621 0 22396 -cellosaurus:CVCL_AT60 M061103 0 22397 -cellosaurus:CVCL_AT46 M070112 0 22398 -cellosaurus:CVCL_AT61 M080201 0 22399 -cellosaurus:CVCL_AT62 M080214 0 22400 -cellosaurus:CVCL_AT47 M080221 0 22401 -cellosaurus:CVCL_AT48 M080228 0 22402 -cellosaurus:CVCL_AT49 M080306 0 22403 -cellosaurus:CVCL_AT63 M080310 0 22404 -cellosaurus:CVCL_AT50 M080326 0 22405 -cellosaurus:CVCL_AT51 M080423 0 22406 -cellosaurus:CVCL_AT52 M080729 0 22407 -cellosaurus:CVCL_AT53 M080904 0 22408 -cellosaurus:CVCL_AT54 M080904B 0 22409 -cellosaurus:CVCL_AT64 M081008 0 22410 -cellosaurus:CVCL_AT55 M081021 0 22411 -cellosaurus:CVCL_AT56 M081028 0 22412 -cellosaurus:CVCL_4715 M10 [Human melanoma] 0 22413 -cellosaurus:CVCL_L438 M101 [Human melanoma] 0 22414 -cellosaurus:CVCL_8100 M10K 0 22415 -cellosaurus:CVCL_5T78 M12 [Human melanoma] 0 22416 -cellosaurus:CVCL_VS55 M120326_2 0 22417 -cellosaurus:CVCL_VS56 M120327_3 0 22418 -cellosaurus:CVCL_C3FK M121008 0 22419 -cellosaurus:CVCL_C3FI M121102 0 22420 -cellosaurus:CVCL_A1FE M13 0 22421 -cellosaurus:CVCL_C3FJ M130107 0 22422 -cellosaurus:CVCL_C3FV M130420 0 22423 -cellosaurus:CVCL_C3FW M130421 0 22424 -cellosaurus:CVCL_C3FX M130425 0 22425 -cellosaurus:CVCL_C3FU M130830 0 22426 -cellosaurus:CVCL_A1UE M140325 0 22427 -cellosaurus:CVCL_8102 M14K 0 22428 -cellosaurus:CVCL_U344 M15 [Human mesothelioma] 0 22429 -cellosaurus:CVCL_C3G0 M150404 0 22430 -cellosaurus:CVCL_M198 M19 0 22431 -cellosaurus:CVCL_B415 M19-MEL 0 22432 -cellosaurus:CVCL_W290 M1Do 0 22433 -cellosaurus:CVCL_DI51 M20 [Human melanoma] 0 22434 -cellosaurus:CVCL_8103 M20 [Human mesothelioma] 0 22435 -cellosaurus:CVCL_D746 M202 0 22436 -cellosaurus:CVCL_D747 M207 0 22437 -cellosaurus:CVCL_M197 M22K 0 22438 -cellosaurus:CVCL_RT32 M23 0 22439 -cellosaurus:CVCL_D749 M230 0 22440 -cellosaurus:CVCL_D750 M233 0 22441 -cellosaurus:CVCL_D752 M243 0 22442 -cellosaurus:CVCL_D753 M244 0 22443 -cellosaurus:CVCL_D754 M245 0 22444 -cellosaurus:CVCL_8104 M24K 0 22445 -cellosaurus:CVCL_D756 M255 0 22446 -cellosaurus:CVCL_D757 M257 0 22447 -cellosaurus:CVCL_8105 M25K 0 22448 -cellosaurus:CVCL_B416 M26 0 22449 -cellosaurus:CVCL_D758 M262 0 22450 -cellosaurus:CVCL_D759 M263 0 22451 -cellosaurus:CVCL_D760 M275 0 22452 -cellosaurus:CVCL_D761 M285 0 22453 -cellosaurus:CVCL_D762 M288 0 22454 -cellosaurus:CVCL_8106 M28K 0 22455 -cellosaurus:CVCL_D763 M296 0 22456 -cellosaurus:CVCL_D764 M297 0 22457 -cellosaurus:CVCL_D765 M299 0 22458 -cellosaurus:CVCL_W291 M2Ge 0 22459 -cellosaurus:CVCL_D766 M308 0 22460 -cellosaurus:CVCL_B4KR M311 [Human melanoma] 0 22461 -cellosaurus:CVCL_D767 M318 0 22462 -cellosaurus:CVCL_D768 M321 0 22463 -cellosaurus:CVCL_IW41 M328 0 22464 -cellosaurus:CVCL_U343 M32K 0 22465 -cellosaurus:CVCL_8107 M33K 0 22466 -cellosaurus:CVCL_S680 M34 0 22467 -cellosaurus:CVCL_M577 M35/01 0 22468 -cellosaurus:CVCL_D769 M368 0 22469 -cellosaurus:CVCL_XJ97 M370 0 22470 -cellosaurus:CVCL_D770 M375 0 22471 -cellosaurus:CVCL_XK11 M376 0 22472 -cellosaurus:CVCL_XK12 M380 0 22473 -cellosaurus:CVCL_XJ98 M381 0 22474 -cellosaurus:CVCL_8108 M38K 0 22475 -cellosaurus:CVCL_XK07 M390 0 22476 -cellosaurus:CVCL_XJ99 M395 0 22477 -cellosaurus:CVCL_XK01 M399 0 22478 -cellosaurus:CVCL_8336 M3Da 0 22479 -cellosaurus:CVCL_V744 M40 0 22480 -cellosaurus:CVCL_XK02 M403 0 22481 -cellosaurus:CVCL_XK03 M406 0 22482 -cellosaurus:CVCL_XK08 M407 0 22483 -cellosaurus:CVCL_B4KS M408 0 22484 -cellosaurus:CVCL_XK05 M410 0 22485 -cellosaurus:CVCL_XK06 M411 0 22486 -cellosaurus:CVCL_XK09 M414 0 22487 -cellosaurus:CVCL_XK10 M424 0 22488 -cellosaurus:CVCL_8472 M619 0 22489 -cellosaurus:CVCL_A1FF M7 [Human melanoma Berlin] 0 22490 -cellosaurus:CVCL_DI52 M7 [Human melanoma UCLA] 0 22491 -cellosaurus:CVCL_D035 M88 0 22492 -cellosaurus:CVCL_1G26 M91-054 0 22493 -cellosaurus:CVCL_1G27 M92-001 0 22494 -cellosaurus:CVCL_LM77 M93-007 0 22495 -cellosaurus:CVCL_G298 M93-047 0 22496 -cellosaurus:CVCL_DI46 M950322 0 22497 -cellosaurus:CVCL_DI47 M950504 0 22498 -cellosaurus:CVCL_DI48 M961121 0 22499 -cellosaurus:CVCL_DI43 M970109 0 22500 -cellosaurus:CVCL_DI44 M970131 0 22501 -cellosaurus:CVCL_DI45 M970805 0 22502 -cellosaurus:CVCL_AT57 M971219 0 22503 -cellosaurus:CVCL_S675 M980513 0 22504 -cellosaurus:CVCL_S676 M990115 0 22505 -cellosaurus:CVCL_AT58 M990203 0 22506 -cellosaurus:CVCL_S677 M990514 0 22507 -cellosaurus:CVCL_S678 M990802 0 22508 -cellosaurus:CVCL_S679 M991121 0 22509 -cellosaurus:CVCL_8109 M9K 0 22510 -cellosaurus:CVCL_7057 MA 2 0 22511 -cellosaurus:CVCL_7058 MA 3 0 22512 -cellosaurus:CVCL_WT59 MA IV 0 22513 -cellosaurus:CVCL_7059 Ma-1 0 22514 -cellosaurus:CVCL_7061 Ma-10 0 22515 -cellosaurus:CVCL_D064 Ma-11 0 22516 -cellosaurus:CVCL_7062 Ma-12 0 22517 -cellosaurus:CVCL_D065 Ma-13 0 22518 -cellosaurus:CVCL_D066 Ma-14 0 22519 -cellosaurus:CVCL_D067 Ma-15 0 22520 -cellosaurus:CVCL_D068 Ma-16 0 22521 -cellosaurus:CVCL_7063 Ma-17 0 22522 -cellosaurus:CVCL_D069 Ma-18 0 22523 -cellosaurus:CVCL_D070 Ma-19 0 22524 -cellosaurus:CVCL_7060 Ma-2 0 22525 -cellosaurus:CVCL_D071 Ma-20 0 22526 -cellosaurus:CVCL_7064 Ma-24 0 22527 -cellosaurus:CVCL_7065 Ma-25 0 22528 -cellosaurus:CVCL_7066 Ma-26 0 22529 -cellosaurus:CVCL_7067 Ma-29 0 22530 -cellosaurus:CVCL_7068 Ma-3 0 22531 -cellosaurus:CVCL_7069 Ma-31 0 22532 -cellosaurus:CVCL_7070 Ma-34 0 22533 -cellosaurus:CVCL_D058 Ma-4 0 22534 -cellosaurus:CVCL_IQ46 Ma-43 0 22535 -cellosaurus:CVCL_7072 Ma-45 0 22536 -cellosaurus:CVCL_7073 Ma-46 0 22537 -cellosaurus:CVCL_D059 Ma-5 0 22538 -cellosaurus:CVCL_7074 Ma-53 0 22539 -cellosaurus:CVCL_D060 Ma-6 0 22540 -cellosaurus:CVCL_D061 Ma-7 0 22541 -cellosaurus:CVCL_D062 Ma-8 0 22542 -cellosaurus:CVCL_D063 Ma-9 0 22543 -cellosaurus:CVCL_4571 MA-CLS-2 0 22544 -cellosaurus:CVCL_A115 Ma-Mel-01 0 22545 -cellosaurus:CVCL_A116 Ma-Mel-02 0 22546 -cellosaurus:CVCL_A117 Ma-Mel-04 0 22547 -cellosaurus:CVCL_A118 Ma-Mel-05 0 22548 -cellosaurus:CVCL_A119 Ma-Mel-06 0 22549 -cellosaurus:CVCL_A120 Ma-Mel-07 0 22550 -cellosaurus:CVCL_A121 Ma-Mel-08a 0 22551 -cellosaurus:CVCL_A122 Ma-Mel-08b 0 22552 -cellosaurus:CVCL_A123 Ma-Mel-10 0 22553 -cellosaurus:CVCL_A124 Ma-Mel-100a 0 22554 -cellosaurus:CVCL_A1DY Ma-Mel-100b 0 22555 -cellosaurus:CVCL_A125 Ma-Mel-101 0 22556 -cellosaurus:CVCL_A126 Ma-Mel-102a 0 22557 -cellosaurus:CVCL_A127 Ma-Mel-103a 0 22558 -cellosaurus:CVCL_A128 Ma-Mel-103b 0 22559 -cellosaurus:CVCL_A129 Ma-Mel-104 0 22560 -cellosaurus:CVCL_A130 Ma-Mel-105 0 22561 -cellosaurus:CVCL_A131 Ma-Mel-107 0 22562 -cellosaurus:CVCL_A132 Ma-Mel-108 0 22563 -cellosaurus:CVCL_A133 Ma-Mel-11 0 22564 -cellosaurus:CVCL_A134 Ma-Mel-110 0 22565 -cellosaurus:CVCL_A135 Ma-Mel-112 0 22566 -cellosaurus:CVCL_A136 Ma-Mel-113 0 22567 -cellosaurus:CVCL_A137 Ma-Mel-114 0 22568 -cellosaurus:CVCL_A138 Ma-Mel-119 0 22569 -cellosaurus:CVCL_A139 Ma-Mel-12 0 22570 -cellosaurus:CVCL_A140 Ma-Mel-120 0 22571 -cellosaurus:CVCL_A141 Ma-Mel-121a 0 22572 -cellosaurus:CVCL_A142 Ma-Mel-122 0 22573 -cellosaurus:CVCL_A143 Ma-Mel-123 0 22574 -cellosaurus:CVCL_A144 Ma-Mel-126 0 22575 -cellosaurus:CVCL_A145 Ma-Mel-128a 0 22576 -cellosaurus:CVCL_A146 Ma-Mel-13 0 22577 -cellosaurus:CVCL_A147 Ma-Mel-130 0 22578 -cellosaurus:CVCL_A148 Ma-Mel-134 0 22579 -cellosaurus:CVCL_A149 Ma-Mel-136 0 22580 -cellosaurus:CVCL_A150 Ma-Mel-14 0 22581 -cellosaurus:CVCL_A151 Ma-Mel-15 0 22582 -cellosaurus:CVCL_A152 Ma-Mel-150a 0 22583 -cellosaurus:CVCL_A153 Ma-Mel-16 0 22584 -cellosaurus:CVCL_A154 Ma-Mel-16a 0 22585 -cellosaurus:CVCL_A155 Ma-Mel-17 0 22586 -cellosaurus:CVCL_A156 Ma-Mel-19 0 22587 -cellosaurus:CVCL_A157 Ma-Mel-20 0 22588 -cellosaurus:CVCL_A158 Ma-Mel-21 0 22589 -cellosaurus:CVCL_A159 Ma-Mel-22 0 22590 -cellosaurus:CVCL_A160 Ma-Mel-23 0 22591 -cellosaurus:CVCL_N784 Ma-Mel-24 0 22592 -cellosaurus:CVCL_A161 Ma-Mel-25 0 22593 -cellosaurus:CVCL_A162 Ma-Mel-26a 0 22594 -cellosaurus:CVCL_N785 Ma-Mel-26b 0 22595 -cellosaurus:CVCL_A163 Ma-Mel-27 0 22596 -cellosaurus:CVCL_A164 Ma-Mel-28 0 22597 -cellosaurus:CVCL_A165 Ma-Mel-30 0 22598 -cellosaurus:CVCL_A166 Ma-Mel-31 0 22599 -cellosaurus:CVCL_A167 Ma-Mel-32 0 22600 -cellosaurus:CVCL_A168 Ma-Mel-33 0 22601 -cellosaurus:CVCL_A169 Ma-Mel-34 0 22602 -cellosaurus:CVCL_A170 Ma-Mel-35 0 22603 -cellosaurus:CVCL_A171 Ma-Mel-36 0 22604 -cellosaurus:CVCL_A172 Ma-Mel-37a 0 22605 -cellosaurus:CVCL_A173 Ma-Mel-37b 0 22606 -cellosaurus:CVCL_A174 Ma-Mel-38 0 22607 -cellosaurus:CVCL_A175 Ma-Mel-39a 0 22608 -cellosaurus:CVCL_A176 Ma-Mel-40 0 22609 -cellosaurus:CVCL_A177 Ma-Mel-41 0 22610 -cellosaurus:CVCL_A178 Ma-Mel-42 0 22611 -cellosaurus:CVCL_C572 Ma-Mel-42a 0 22612 -cellosaurus:CVCL_C287 Ma-Mel-42b 0 22613 -cellosaurus:CVCL_A179 Ma-Mel-43 0 22614 -cellosaurus:CVCL_A180 Ma-Mel-45a 0 22615 -cellosaurus:CVCL_C262 Ma-Mel-45b 0 22616 -cellosaurus:CVCL_A181 Ma-Mel-46 0 22617 -cellosaurus:CVCL_A182 Ma-Mel-47 0 22618 -cellosaurus:CVCL_A183 Ma-Mel-48a 0 22619 -cellosaurus:CVCL_N786 Ma-Mel-48b 0 22620 -cellosaurus:CVCL_N787 Ma-Mel-48c 0 22621 -cellosaurus:CVCL_A184 Ma-Mel-49 0 22622 -cellosaurus:CVCL_A185 Ma-Mel-50 0 22623 -cellosaurus:CVCL_RN38 Ma-Mel-50b 0 22624 -cellosaurus:CVCL_A186 Ma-Mel-51 0 22625 -cellosaurus:CVCL_A187 Ma-Mel-52 0 22626 -cellosaurus:CVCL_A188 Ma-Mel-53 0 22627 -cellosaurus:CVCL_A189 Ma-Mel-54a 0 22628 -cellosaurus:CVCL_C288 Ma-Mel-54b 0 22629 -cellosaurus:CVCL_A190 Ma-Mel-55 0 22630 -cellosaurus:CVCL_A191 Ma-Mel-56 0 22631 -cellosaurus:CVCL_A192 Ma-Mel-57 0 22632 -cellosaurus:CVCL_A193 Ma-Mel-58 0 22633 -cellosaurus:CVCL_A194 Ma-Mel-59a 0 22634 -cellosaurus:CVCL_C289 Ma-Mel-59b 0 22635 -cellosaurus:CVCL_C290 Ma-Mel-59c 0 22636 -cellosaurus:CVCL_A195 Ma-Mel-60 0 22637 -cellosaurus:CVCL_C291 Ma-Mel-61a 0 22638 -cellosaurus:CVCL_C292 Ma-Mel-61b 0 22639 -cellosaurus:CVCL_S666 Ma-Mel-61c 0 22640 -cellosaurus:CVCL_S667 Ma-Mel-61e 0 22641 -cellosaurus:CVCL_S668 Ma-Mel-61f 0 22642 -cellosaurus:CVCL_S669 Ma-Mel-61g 0 22643 -cellosaurus:CVCL_S670 Ma-Mel-61h 0 22644 -cellosaurus:CVCL_A197 Ma-Mel-62 0 22645 -cellosaurus:CVCL_A198 Ma-Mel-63a 0 22646 -cellosaurus:CVCL_C293 Ma-Mel-63b 0 22647 -cellosaurus:CVCL_A199 Ma-Mel-64 0 22648 -cellosaurus:CVCL_A200 Ma-Mel-65 0 22649 -cellosaurus:CVCL_A201 Ma-Mel-66a 0 22650 -cellosaurus:CVCL_A202 Ma-Mel-66b 0 22651 -cellosaurus:CVCL_A203 Ma-Mel-67 0 22652 -cellosaurus:CVCL_A204 Ma-Mel-68 0 22653 -cellosaurus:CVCL_A205 Ma-Mel-69 0 22654 -cellosaurus:CVCL_A206 Ma-Mel-70 0 22655 -cellosaurus:CVCL_A207 Ma-Mel-71 0 22656 -cellosaurus:CVCL_A208 Ma-Mel-73a 0 22657 -cellosaurus:CVCL_A209 Ma-Mel-73b 0 22658 -cellosaurus:CVCL_A210 Ma-Mel-74 0 22659 -cellosaurus:CVCL_A211 Ma-Mel-75 0 22660 -cellosaurus:CVCL_A212 Ma-Mel-76 0 22661 -cellosaurus:CVCL_A213 Ma-Mel-79 0 22662 -cellosaurus:CVCL_A214 Ma-Mel-79b 0 22663 -cellosaurus:CVCL_A215 Ma-Mel-80a 0 22664 -cellosaurus:CVCL_A216 Ma-Mel-81 0 22665 -cellosaurus:CVCL_A217 Ma-Mel-82 0 22666 -cellosaurus:CVCL_A218 Ma-Mel-83 0 22667 -cellosaurus:CVCL_A219 Ma-Mel-84 0 22668 -cellosaurus:CVCL_A220 Ma-Mel-85 0 22669 -cellosaurus:CVCL_A221 Ma-Mel-86a 0 22670 -cellosaurus:CVCL_A222 Ma-Mel-86b 0 22671 -cellosaurus:CVCL_A223 Ma-Mel-90 0 22672 -cellosaurus:CVCL_A224 Ma-Mel-91 0 22673 -cellosaurus:CVCL_A225 Ma-Mel-92 0 22674 -cellosaurus:CVCL_A226 Ma-Mel-92d 0 22675 -cellosaurus:CVCL_A228 Ma-Mel-94 0 22676 -cellosaurus:CVCL_A229 Ma-Mel-95 0 22677 -cellosaurus:CVCL_A230 Ma-Mel-96 0 22678 -cellosaurus:CVCL_A231 Ma-Mel-97 0 22679 -cellosaurus:CVCL_A232 Ma-Mel-99 0 22680 -cellosaurus:CVCL_C505 Ma-Mel-KNUD 0 22681 -cellosaurus:CVCL_B7HQ MA11 0 22682 -cellosaurus:CVCL_AK47 MA148 0 22683 -cellosaurus:CVCL_X194 Maben 0 22684 -cellosaurus:CVCL_H631 Mac-1 0 22685 -cellosaurus:CVCL_S921 MAC-2 0 22686 -cellosaurus:CVCL_M375 MaCa 1 0 22687 -cellosaurus:CVCL_M376 MaCa 2 0 22688 -cellosaurus:CVCL_6846 MACL-1 0 22689 -cellosaurus:CVCL_M139 Madsen 0 22690 -cellosaurus:CVCL_0405 Mahlavu 0 22691 -cellosaurus:CVCL_7200 Mais-BL 0 22692 -cellosaurus:CVCL_1Q44 Maku 0 22693 -cellosaurus:CVCL_1438 Malme-3M 0 22694 -cellosaurus:CVCL_1E90 Malme-3S 0 22695 -cellosaurus:CVCL_5796 MaMi 0 22696 -cellosaurus:CVCL_B7RH MANACA-2 0 22697 -cellosaurus:CVCL_W901 Mano 0 22698 -cellosaurus:CVCL_LM84 MaPaC-HS-77 0 22699 -cellosaurus:CVCL_0B87 MAR 0 22700 -cellosaurus:CVCL_VQ11 MAR-Mel 0 22701 -cellosaurus:CVCL_X929 Margret 0 22702 -cellosaurus:CVCL_6992 Marimo 0 22703 -cellosaurus:CVCL_VQ02 MARO 54 0 22704 -cellosaurus:CVCL_A8UM MaS-3 0 22705 -cellosaurus:CVCL_IW67 Maska-98 0 22706 -cellosaurus:CVCL_M374 MAST 0 22707 -cellosaurus:CVCL_RL79 MAT 0 22708 -cellosaurus:CVCL_E999 MaTi 0 22709 -cellosaurus:CVCL_1831 MAVER-1 0 22710 -cellosaurus:CVCL_VQ03 MAVI 74 0 22711 -cellosaurus:CVCL_S810 MaWi 0 22712 -cellosaurus:CVCL_D131 MAXF 401NL 0 22713 -cellosaurus:CVCL_D246 MAXF 449 0 22714 -cellosaurus:CVCL_D245 MAXF 583 0 22715 -cellosaurus:CVCL_D247 MAXF 713 0 22716 -cellosaurus:CVCL_7075 MB-02 0 22717 -cellosaurus:CVCL_2109 MB-1 0 22718 -cellosaurus:CVCL_0A72 MB-9812 0 22719 -cellosaurus:CVCL_VU79 MB002 0 22720 -cellosaurus:CVCL_VU80 MB004 0 22721 -cellosaurus:CVCL_A7PG MBC-1 0 22722 -cellosaurus:CVCL_UZ93 MBC02 0 22723 -cellosaurus:CVCL_T035 MBC1 0 22724 -cellosaurus:CVCL_T036 MBC2 0 22725 -cellosaurus:CVCL_UB97 MBC647 0 22726 -cellosaurus:CVCL_W203 MC 0 22727 -cellosaurus:CVCL_LI46 MC-1 [Human breast carcinoma] 0 22728 -cellosaurus:CVCL_1396 MC-1010 0 22729 -cellosaurus:CVCL_B7JZ MC-BR-BTY-0006 0 22730 -cellosaurus:CVCL_B7K0 MC-BR-BTY-0019 0 22731 -cellosaurus:CVCL_D025 MC-MA1 0 22732 -cellosaurus:CVCL_E058 MC-NB-1 0 22733 -cellosaurus:CVCL_1399 MC116 0 22734 -cellosaurus:CVCL_0087 MC3 0 22735 -cellosaurus:CVCL_D730 MCC-1 0 22736 -cellosaurus:CVCL_A1QL MCC-38 0 22737 -cellosaurus:CVCL_LM85 MCC-60 0 22738 -cellosaurus:CVCL_4558 MCC1 [Human Merkel cell carcinoma] 0 22739 -cellosaurus:CVCL_D729 MCC1 [Human mucinous cystic carcinoma] 0 22740 -cellosaurus:CVCL_4446 MCC12 0 22741 -cellosaurus:CVCL_A7AP MCC121c 0 22742 -cellosaurus:CVCL_2583 MCC13 0 22743 -cellosaurus:CVCL_A7AQ MCC138c 0 22744 -cellosaurus:CVCL_4447 MCC14/1 0 22745 -cellosaurus:CVCL_2584 MCC14/2 0 22746 -cellosaurus:CVCL_A7AR MCC148c 0 22747 -cellosaurus:CVCL_D021 MCC15 0 22748 -cellosaurus:CVCL_4448 MCC19 0 22749 -cellosaurus:CVCL_2585 MCC26 0 22750 -cellosaurus:CVCL_4444 MCC5 0 22751 -cellosaurus:CVCL_4445 MCC6 0 22752 -cellosaurus:CVCL_D026 MCCL-1 0 22753 -cellosaurus:CVCL_IR17 MCCL-2 0 22754 -cellosaurus:CVCL_IR18 MCCL-3 0 22755 -cellosaurus:CVCL_IR19 MCCL-4 0 22756 -cellosaurus:CVCL_IR20 MCCL-5 0 22757 -cellosaurus:CVCL_IR21 MCCL-6 0 22758 -cellosaurus:CVCL_M701 MCD-1 0 22759 -cellosaurus:CVCL_YQ07 MCG 0 22760 -cellosaurus:CVCL_C855 MCH-MN-1 0 22761 -cellosaurus:CVCL_A0DE MCIR1 0 22762 -cellosaurus:CVCL_AV59 MCJB2 0 22763 -cellosaurus:CVCL_JY20 MCP-5 [Human cystosarcoma phyllodes] 0 22764 -cellosaurus:CVCL_D709 MD901 0 22765 -cellosaurus:CVCL_D710 MD903 0 22766 -cellosaurus:CVCL_6977 MDA-1186 0 22767 -cellosaurus:CVCL_6979 MDA-1386 0 22768 -cellosaurus:CVCL_H541 MDA-1386Ln 0 22769 -cellosaurus:CVCL_H542 MDA-1386Tu 0 22770 -cellosaurus:CVCL_6980 MDA-1483 0 22771 -cellosaurus:CVCL_6981 MDA-1586 0 22772 -cellosaurus:CVCL_AT79 MDA-1686 0 22773 -cellosaurus:CVCL_6978 MDA-183 0 22774 -cellosaurus:CVCL_6982 MDA-1986 0 22775 -cellosaurus:CVCL_AT80 MDA-1986LN 0 22776 -cellosaurus:CVCL_V278 MDA-584 0 22777 -cellosaurus:CVCL_6983 MDA-686 0 22778 -cellosaurus:CVCL_6985 MDA-686Tu 0 22779 -cellosaurus:CVCL_H539 MDA-8788-6 0 22780 -cellosaurus:CVCL_H540 MDA-8788-7 0 22781 -cellosaurus:CVCL_EI94 MDA-AMP7 0 22782 -cellosaurus:CVCL_UI82 MDA-EJ-1 0 22783 -cellosaurus:CVCL_HC47 MDA-IBC-3 0 22784 -cellosaurus:CVCL_0617 MDA-MB-134-VI 0 22785 -cellosaurus:CVCL_0618 MDA-MB-157 0 22786 -cellosaurus:CVCL_1400 MDA-MB-175-VII 0 22787 -cellosaurus:CVCL_M384 MDA-MB-253 0 22788 -cellosaurus:CVCL_M385 MDA-MB-309 0 22789 -cellosaurus:CVCL_0619 MDA-MB-330 0 22790 -cellosaurus:CVCL_M386 MDA-MB-331 0 22791 -cellosaurus:CVCL_M387 MDA-MB-390 0 22792 -cellosaurus:CVCL_M388 MDA-MB-411 0 22793 -cellosaurus:CVCL_0621 MDA-MB-415 0 22794 -cellosaurus:CVCL_M389 MDA-MB-416 0 22795 -cellosaurus:CVCL_M390 MDA-MB-431 0 22796 -cellosaurus:CVCL_M391 MDA-MB-461 0 22797 -cellosaurus:CVCL_M392 MDA-MB-469 0 22798 -cellosaurus:CVCL_3917 MDA-Panc-28 0 22799 -cellosaurus:CVCL_3918 MDA-Panc-3 0 22800 -cellosaurus:CVCL_VR70 MDA-PATC43 0 22801 -cellosaurus:CVCL_VR71 MDA-PATC50 0 22802 -cellosaurus:CVCL_VR69 MDA-PATC53 0 22803 -cellosaurus:CVCL_VR72 MDA-PATC66 0 22804 -cellosaurus:CVCL_4747 MDA-PCa-2a 0 22805 -cellosaurus:CVCL_QW85 MDA-T120 0 22806 -cellosaurus:CVCL_A1CS MDA-T187 0 22807 -cellosaurus:CVCL_QW80 MDA-T22 0 22808 -cellosaurus:CVCL_A1CT MDA-T248 0 22809 -cellosaurus:CVCL_A1CU MDA-T269 0 22810 -cellosaurus:CVCL_A1CV MDA-T273 0 22811 -cellosaurus:CVCL_W913 MDA-T32 0 22812 -cellosaurus:CVCL_W914 MDA-T41 0 22813 -cellosaurus:CVCL_QW83 MDA-T68 0 22814 -cellosaurus:CVCL_QW84 MDA-T85 0 22815 -cellosaurus:CVCL_0420 MDAH 2774 0 22816 -cellosaurus:CVCL_E213 MDAH087 0 22817 -cellosaurus:CVCL_E214 MDAH172 0 22818 -cellosaurus:CVCL_E215 MDAH174 0 22819 -cellosaurus:CVCL_HX07 MDN 0 22820 -cellosaurus:CVCL_2588 MDST8 0 22821 -cellosaurus:CVCL_WK60 ME [Human hepatocellular carcinoma] 0 22822 -cellosaurus:CVCL_C666 ME [Human melanoma] 0 22823 -cellosaurus:CVCL_JB73 ME 1 [Human melanoma] 0 22824 -cellosaurus:CVCL_M535 ME-1 [Human myeloma] 0 22825 -cellosaurus:CVCL_C598 Me-116 0 22826 -cellosaurus:CVCL_L911 ME1 0 22827 -cellosaurus:CVCL_L917 ME10 0 22828 -cellosaurus:CVCL_HF01 Me10258 0 22829 -cellosaurus:CVCL_A1SG ME1042 0 22830 -cellosaurus:CVCL_HF02 Me1274 0 22831 -cellosaurus:CVCL_C669 Me1340 0 22832 -cellosaurus:CVCL_VU55 Me1386 0 22833 -cellosaurus:CVCL_HE94 Me13923 0 22834 -cellosaurus:CVCL_C671 Me13924 0 22835 -cellosaurus:CVCL_HF03 Me14362 0 22836 -cellosaurus:CVCL_HF04 Me14464 0 22837 -cellosaurus:CVCL_VT17 Me15 0 22838 -cellosaurus:CVCL_HF05 Me15094 0 22839 -cellosaurus:CVCL_C604 Me15392 0 22840 -cellosaurus:CVCL_HF06 Me15479 0 22841 -cellosaurus:CVCL_L918 ME16 0 22842 -cellosaurus:CVCL_L919 ME17 [Human melanoma] 0 22843 -cellosaurus:CVCL_V024 Me17088/1 0 22844 -cellosaurus:CVCL_V019 Me17697 0 22845 -cellosaurus:CVCL_L920 ME18 0 22846 -cellosaurus:CVCL_VU56 Me18105 0 22847 -cellosaurus:CVCL_C675 Me1811 0 22848 -cellosaurus:CVCL_HF07 Me18656 0 22849 -cellosaurus:CVCL_C676 Me18732 0 22850 -cellosaurus:CVCL_HF08 Me18816 0 22851 -cellosaurus:CVCL_L921 ME19 0 22852 -cellosaurus:CVCL_HF09 Me19410 0 22853 -cellosaurus:CVCL_L912 ME2 0 22854 -cellosaurus:CVCL_L922 ME20 0 22855 -cellosaurus:CVCL_V020 Me20842 0 22856 -cellosaurus:CVCL_HE92 Me20842M1 0 22857 -cellosaurus:CVCL_HE93 Me20842M2 0 22858 -cellosaurus:CVCL_L923 ME21 0 22859 -cellosaurus:CVCL_HE95 Me21158 0 22860 -cellosaurus:CVCL_L924 ME22 0 22861 -cellosaurus:CVCL_HF10 Me2211 0 22862 -cellosaurus:CVCL_L925 ME23 0 22863 -cellosaurus:CVCL_HF11 Me23526 0 22864 -cellosaurus:CVCL_HF12 Me23682 0 22865 -cellosaurus:CVCL_V025 Me2559/1 0 22866 -cellosaurus:CVCL_HF13 Me26635 0 22867 -cellosaurus:CVCL_HE39 Me28 0 22868 -cellosaurus:CVCL_HF14 Me29318 0 22869 -cellosaurus:CVCL_HE96 Me2934 0 22870 -cellosaurus:CVCL_HF15 Me3044 0 22871 -cellosaurus:CVCL_C678 Me3068 0 22872 -cellosaurus:CVCL_HF16 Me32562 0 22873 -cellosaurus:CVCL_HF17 Me32669 0 22874 -cellosaurus:CVCL_HE97 Me3700 0 22875 -cellosaurus:CVCL_V021 Me4023 0 22876 -cellosaurus:CVCL_C665 Me43 0 22877 -cellosaurus:CVCL_HE98 Me4473 0 22878 -cellosaurus:CVCL_K048 Me45 0 22879 -cellosaurus:CVCL_HE99 Me4686 0 22880 -cellosaurus:CVCL_C681 Me4855 0 22881 -cellosaurus:CVCL_L913 ME5 0 22882 -cellosaurus:CVCL_VT18 Me51 0 22883 -cellosaurus:CVCL_C667 Me665/1 0 22884 -cellosaurus:CVCL_HE41 Me665/3 0 22885 -cellosaurus:CVCL_HF18 Me6824 0 22886 -cellosaurus:CVCL_L914 ME7 0 22887 -cellosaurus:CVCL_L915 ME8 0 22888 -cellosaurus:CVCL_HE44 Me8530 0 22889 -cellosaurus:CVCL_HF19 Me879 0 22890 -cellosaurus:CVCL_L916 ME9 0 22891 -cellosaurus:CVCL_C684 Me9460 0 22892 -cellosaurus:CVCL_B270 MEC 0 22893 -cellosaurus:CVCL_1870 MEC-1 0 22894 -cellosaurus:CVCL_1871 MEC-2 0 22895 -cellosaurus:CVCL_3403 MeCo 05 0 22896 -cellosaurus:CVCL_M137 MED-MEB-8A 0 22897 -cellosaurus:CVCL_M138 MED-MEB-8S 0 22898 -cellosaurus:CVCL_IR47 MED1 0 22899 -cellosaurus:CVCL_IR48 MED2 0 22900 -cellosaurus:CVCL_VU74 MED3 0 22901 -cellosaurus:CVCL_VU75 MED4 0 22902 -cellosaurus:CVCL_VU76 MED4R 0 22903 -cellosaurus:CVCL_VU77 MED5R 0 22904 -cellosaurus:CVCL_VU78 MED6 0 22905 -cellosaurus:CVCL_A649 MedB-1 0 22906 -cellosaurus:CVCL_C1M8 MEF 0 22907 -cellosaurus:CVCL_M515 MEF-1 [Human myeloma] 0 22908 -cellosaurus:CVCL_1832 MEG-A2 0 22909 -cellosaurus:CVCL_G311 Meg-J 0 22910 -cellosaurus:CVCL_1833 MEGAL 0 22911 -cellosaurus:CVCL_UZ66 MeGo 0 22912 -cellosaurus:CVCL_F329 MEGR 07 0 22913 -cellosaurus:CVCL_U105 Mehr-80 0 22914 -cellosaurus:CVCL_ZD07 Mel 00.08 0 22915 -cellosaurus:CVCL_VU40 Mel 01.12 0 22916 -cellosaurus:CVCL_VU41 Mel 02.02 0 22917 -cellosaurus:CVCL_ZD03 Mel 04.01 0 22918 -cellosaurus:CVCL_ZD08 Mel 04.07 0 22919 -cellosaurus:CVCL_ZD04 Mel 05.18 0 22920 -cellosaurus:CVCL_ZD10 Mel 06.04 0 22921 -cellosaurus:CVCL_ZD05 Mel 06.07 0 22922 -cellosaurus:CVCL_ZD11 Mel 07.16 0 22923 -cellosaurus:CVCL_ZD06 Mel 12.07 0 22924 -cellosaurus:CVCL_C616 Mel 1241 0 22925 -cellosaurus:CVCL_ZD13 Mel 13.03 0 22926 -cellosaurus:CVCL_U915 Mel 224 0 22927 -cellosaurus:CVCL_B6L6 Mel 226 0 22928 -cellosaurus:CVCL_B6L7 Mel 259 0 22929 -cellosaurus:CVCL_VQ12 Mel 3.0 0 22930 -cellosaurus:CVCL_U916 Mel 505 0 22931 -cellosaurus:CVCL_RA52 Mel 603 0 22932 -cellosaurus:CVCL_B6L8 Mel 82 0 22933 -cellosaurus:CVCL_VU42 Mel 90.07 0 22934 -cellosaurus:CVCL_C694 Mel 928 0 22935 -cellosaurus:CVCL_ZD09 Mel 93.03 0 22936 -cellosaurus:CVCL_ZD14 Mel 93.05 0 22937 -cellosaurus:CVCL_ZD12 Mel 93.15.2 0 22938 -cellosaurus:CVCL_ZD15 Mel 95.23 0 22939 -cellosaurus:CVCL_VU43 Mel 99.08 0 22940 -cellosaurus:CVCL_B6KL Mel Bgf 0 22941 -cellosaurus:CVCL_B6KM Mel Ch 0 22942 -cellosaurus:CVCL_B6L9 Mel E 0 22943 -cellosaurus:CVCL_3978 Mel Ei 0 22944 -cellosaurus:CVCL_IS37 Mel Gerlach 0 22945 -cellosaurus:CVCL_B6KN Mel Gi 0 22946 -cellosaurus:CVCL_B6KP Mel Gus 0 22947 -cellosaurus:CVCL_B6KQ Mel H 0 22948 -cellosaurus:CVCL_B6KR Mel Hn 0 22949 -cellosaurus:CVCL_3980 Mel Im 0 22950 -cellosaurus:CVCL_B6KS Mel Is 0 22951 -cellosaurus:CVCL_3979 Mel Ju 0 22952 -cellosaurus:CVCL_B6LA Mel Kis 0 22953 -cellosaurus:CVCL_B6KT Mel Ksen 0 22954 -cellosaurus:CVCL_B7MW Mel Ku 0 22955 -cellosaurus:CVCL_B6KH Mel Me 0 22956 -cellosaurus:CVCL_B6JP Mel min-1 0 22957 -cellosaurus:CVCL_B6JZ Mel min-10 0 22958 -cellosaurus:CVCL_B6K0 Mel min-11 0 22959 -cellosaurus:CVCL_B6K1 Mel min-12 0 22960 -cellosaurus:CVCL_B6K2 Mel min-13 0 22961 -cellosaurus:CVCL_B6K3 Mel min-14 0 22962 -cellosaurus:CVCL_B6K4 Mel min-15 0 22963 -cellosaurus:CVCL_B6K5 Mel min-16 0 22964 -cellosaurus:CVCL_B6K6 Mel min-17 0 22965 -cellosaurus:CVCL_B6K7 Mel min-18 0 22966 -cellosaurus:CVCL_B6JQ Mel min-2 0 22967 -cellosaurus:CVCL_B6JR Mel min-3 0 22968 -cellosaurus:CVCL_B6JS Mel min-4 0 22969 -cellosaurus:CVCL_B6JT Mel min-5 0 22970 -cellosaurus:CVCL_B6JU Mel min-6 0 22971 -cellosaurus:CVCL_B6JV Mel min-7 0 22972 -cellosaurus:CVCL_B6JW Mel min-8 0 22973 -cellosaurus:CVCL_B6JY Mel min-9 0 22974 -cellosaurus:CVCL_B6KG Mel Mtp 0 22975 -cellosaurus:CVCL_B6KU Mel R 0 22976 -cellosaurus:CVCL_B6KA Mel Rac 0 22977 -cellosaurus:CVCL_B6LB Mel S 0 22978 -cellosaurus:CVCL_B6KV Mel Si 0 22979 -cellosaurus:CVCL_3981 Mel Wei 0 22980 -cellosaurus:CVCL_B6KE Mel Z 0 22981 -cellosaurus:CVCL_A8RI MEL-11 0 22982 -cellosaurus:CVCL_H201 Mel-18 0 22983 -cellosaurus:CVCL_H203 Mel-2 0 22984 -cellosaurus:CVCL_L268 Mel-2183 0 22985 -cellosaurus:CVCL_A759 Mel-2a 0 22986 -cellosaurus:CVCL_A8RJ MEL-31 0 22987 -cellosaurus:CVCL_W284 Mel-34 0 22988 -cellosaurus:CVCL_4454 Mel-57 0 22989 -cellosaurus:CVCL_WG85 Mel-67 0 22990 -cellosaurus:CVCL_D549 MEL-AC 0 22991 -cellosaurus:CVCL_S995 Mel-AT 0 22992 -cellosaurus:CVCL_GR36 Mel-BH 0 22993 -cellosaurus:CVCL_GR37 Mel-BP 0 22994 -cellosaurus:CVCL_6001 MEL-CLS-2 0 22995 -cellosaurus:CVCL_6002 MEL-CLS-3 0 22996 -cellosaurus:CVCL_6003 MEL-CLS-4 0 22997 -cellosaurus:CVCL_S996 Mel-CV 0 22998 -cellosaurus:CVCL_GR35 Mel-DA 0 22999 -cellosaurus:CVCL_GR38 Mel-DH 0 23000 -cellosaurus:CVCL_C500 Mel-DO 0 23001 -cellosaurus:CVCL_GR33 Mel-DP 0 23002 -cellosaurus:CVCL_GR39 Mel-FC 0 23003 -cellosaurus:CVCL_D547 Mel-FH 0 23004 -cellosaurus:CVCL_GR44 Mel-FHH 0 23005 -cellosaurus:CVCL_S997 Mel-GL 0 23006 -cellosaurus:CVCL_S998 Mel-JB 0 23007 -cellosaurus:CVCL_S999 Mel-JC 0 23008 -cellosaurus:CVCL_BS80 Mel-JD 0 23009 -cellosaurus:CVCL_T000 Mel-JF 0 23010 -cellosaurus:CVCL_T001 Mel-JG 0 23011 -cellosaurus:CVCL_GR41 Mel-JN 0 23012 -cellosaurus:CVCL_T002 Mel-JS 0 23013 -cellosaurus:CVCL_GR40 Mel-JW 0 23014 -cellosaurus:CVCL_T003 Mel-KN 0 23015 -cellosaurus:CVCL_C501 Mel-LE 0 23016 -cellosaurus:CVCL_C502 Mel-LG 0 23017 -cellosaurus:CVCL_T004 Mel-LT 0 23018 -cellosaurus:CVCL_T005 Mel-MC 0 23019 -cellosaurus:CVCL_T006 Mel-MI 0 23020 -cellosaurus:CVCL_T007 Mel-MM 0 23021 -cellosaurus:CVCL_T008 Mel-MS 0 23022 -cellosaurus:CVCL_GR42 Mel-NG 0 23023 -cellosaurus:CVCL_C530 Mel-NT1-00 0 23024 -cellosaurus:CVCL_C531 Mel-NT2-00 0 23025 -cellosaurus:CVCL_C532 Mel-NT3-00 0 23026 -cellosaurus:CVCL_C533 Mel-NT4-00 0 23027 -cellosaurus:CVCL_C534 Mel-NT5-00 0 23028 -cellosaurus:CVCL_C535 Mel-NT6-00 0 23029 -cellosaurus:CVCL_UW19 Mel-NT7-00 0 23030 -cellosaurus:CVCL_C536 Mel-NT8-00 0 23031 -cellosaurus:CVCL_C537 Mel-NT9-00 0 23032 -cellosaurus:CVCL_B6JG MEL-P 0 23033 -cellosaurus:CVCL_A012 MEL-RC08 0 23034 -cellosaurus:CVCL_B6L5 MEL-REO 0 23035 -cellosaurus:CVCL_D548 Mel-RM 0 23036 -cellosaurus:CVCL_ZL70 MEL-SLM2 0 23037 -cellosaurus:CVCL_C503 Mel-SOE 0 23038 -cellosaurus:CVCL_T009 Mel-SP 0 23039 -cellosaurus:CVCL_A650 Mel-Swift 0 23040 -cellosaurus:CVCL_T010 Mel-WB 0 23041 -cellosaurus:CVCL_GR45 Mel-WD 0 23042 -cellosaurus:CVCL_C504 Mel-WL 0 23043 -cellosaurus:CVCL_A0GS Mel-XX4 0 23044 -cellosaurus:CVCL_A0GT Mel-XY1 0 23045 -cellosaurus:CVCL_A0GU Mel-XY2 0 23046 -cellosaurus:CVCL_A0GV Mel-XY3 0 23047 -cellosaurus:CVCL_GR34 Mel-WN 0 23048 -cellosaurus:CVCL_DG36 MEL1 0 23049 -cellosaurus:CVCL_D648 Mel120 0 23050 -cellosaurus:CVCL_8473 Mel20-06-039 0 23051 -cellosaurus:CVCL_8474 Mel20-06-045 0 23052 -cellosaurus:CVCL_8475 Mel20-07-070 0 23053 -cellosaurus:CVCL_D714 Mel20-08-128 0 23054 -cellosaurus:CVCL_D715 Mel20-09-196 0 23055 -cellosaurus:CVCL_C301 Mel202 0 23056 -cellosaurus:CVCL_3974 Mel249 0 23057 -cellosaurus:CVCL_C302 Mel270 0 23058 -cellosaurus:CVCL_C303 Mel285 0 23059 -cellosaurus:CVCL_C304 Mel290 0 23060 -cellosaurus:CVCL_3975 Mel499 0 23061 -cellosaurus:CVCL_3976 Mel505 0 23062 -cellosaurus:CVCL_3977 Mel592 0 23063 -cellosaurus:CVCL_VP45 Mela11 0 23064 -cellosaurus:CVCL_VP46 Mela14 0 23065 -cellosaurus:CVCL_VN58 Mela15 0 23066 -cellosaurus:CVCL_VP47 Mela16 0 23067 -cellosaurus:CVCL_VP48 Mela17 0 23068 -cellosaurus:CVCL_6G44 MELBA 0 23069 -cellosaurus:CVCL_B7H6 MELS 0 23070 -cellosaurus:CVCL_B5D6 Melu 0 23071 -cellosaurus:CVCL_L300 MEMO 0 23072 -cellosaurus:CVCL_F330 MeMo 05 0 23073 -cellosaurus:CVCL_F331 MEMOR 06 0 23074 -cellosaurus:CVCL_C1M9 MEN 0 23075 -cellosaurus:CVCL_C1MC MEP 0 23076 -cellosaurus:CVCL_A5YL MER 0 23077 -cellosaurus:CVCL_2590 Mero-14 0 23078 -cellosaurus:CVCL_2591 Mero-25 0 23079 -cellosaurus:CVCL_2592 Mero-41 0 23080 -cellosaurus:CVCL_2593 Mero-48a 0 23081 -cellosaurus:CVCL_W102 Mero-48b 0 23082 -cellosaurus:CVCL_W103 Mero-48c 0 23083 -cellosaurus:CVCL_W104 Mero-48d 0 23084 -cellosaurus:CVCL_W105 Mero-72 0 23085 -cellosaurus:CVCL_2594 Mero-82 0 23086 -cellosaurus:CVCL_2595 Mero-83 0 23087 -cellosaurus:CVCL_2596 Mero-84 0 23088 -cellosaurus:CVCL_W106 Mero-91 0 23089 -cellosaurus:CVCL_2597 Mero-95 0 23090 -cellosaurus:CVCL_W107 Mero-96 0 23091 -cellosaurus:CVCL_H665 Mes-1 0 23092 -cellosaurus:CVCL_H657 Mes-10 0 23093 -cellosaurus:CVCL_H661 Mes-11 0 23094 -cellosaurus:CVCL_H662 Mes-15 0 23095 -cellosaurus:CVCL_H647 Mes-17 0 23096 -cellosaurus:CVCL_H656 Mes-19 0 23097 -cellosaurus:CVCL_H666 Mes-2 0 23098 -cellosaurus:CVCL_H663 Mes-20 0 23099 -cellosaurus:CVCL_H651 Mes-29 0 23100 -cellosaurus:CVCL_H650 Mes-30 0 23101 -cellosaurus:CVCL_H648 Mes-35 0 23102 -cellosaurus:CVCL_H652 Mes-36 0 23103 -cellosaurus:CVCL_H649 Mes-37 0 23104 -cellosaurus:CVCL_H653 Mes-45 0 23105 -cellosaurus:CVCL_H654 Mes-49 0 23106 -cellosaurus:CVCL_H667 Mes-5 0 23107 -cellosaurus:CVCL_H655 Mes-50 0 23108 -cellosaurus:CVCL_H664 Mes-54 0 23109 -cellosaurus:CVCL_H660 Mes-7 0 23110 -cellosaurus:CVCL_H659 Mes-8 0 23111 -cellosaurus:CVCL_H658 Mes-9 0 23112 -cellosaurus:CVCL_UW42 Mes.Cl.-1 0 23113 -cellosaurus:CVCL_UW43 Mes.Cl.-2 0 23114 -cellosaurus:CVCL_UW44 Mes.Cl.-3 0 23115 -cellosaurus:CVCL_UW45 Mes.Cl.-4 0 23116 -cellosaurus:CVCL_H668 Meso-10 0 23117 -cellosaurus:CVCL_RP25 MESO-12T 0 23118 -cellosaurus:CVCL_RP26 MESO-14T 0 23119 -cellosaurus:CVCL_RP27 MESO-17T 0 23120 -cellosaurus:CVCL_RP28 MESO-27T 0 23121 -cellosaurus:CVCL_RP21 MESO-3T 0 23122 -cellosaurus:CVCL_RP22 MESO-7T 0 23123 -cellosaurus:CVCL_RP23 MESO-8T 0 23124 -cellosaurus:CVCL_H669 Meso-9 0 23125 -cellosaurus:CVCL_RP24 MESO-9T 0 23126 -cellosaurus:CVCL_IW94 Meso-CL1 0 23127 -cellosaurus:CVCL_IW95 Meso-CL2 0 23128 -cellosaurus:CVCL_IW96 Meso-CL3 0 23129 -cellosaurus:CVCL_H670 Meso11 0 23130 -cellosaurus:CVCL_H671 Meso122 0 23131 -cellosaurus:CVCL_H672 Meso13 0 23132 -cellosaurus:CVCL_H673 Meso144 0 23133 -cellosaurus:CVCL_H674 Meso148 0 23134 -cellosaurus:CVCL_H675 Meso34 0 23135 -cellosaurus:CVCL_H676 Meso35 0 23136 -cellosaurus:CVCL_H677 Meso37 0 23137 -cellosaurus:CVCL_H678 Meso4 0 23138 -cellosaurus:CVCL_H679 Meso45 0 23139 -cellosaurus:CVCL_H680 Meso47 0 23140 -cellosaurus:CVCL_H681 Meso56 0 23141 -cellosaurus:CVCL_H682 Meso62 0 23142 -cellosaurus:CVCL_H683 Meso96 0 23143 -cellosaurus:CVCL_LN09 MET-1 0 23144 -cellosaurus:CVCL_LN10 MET-2 0 23145 -cellosaurus:CVCL_VS57 MET-2B 0 23146 -cellosaurus:CVCL_LN11 MET-3 0 23147 -cellosaurus:CVCL_LN12 MET-4 0 23148 -cellosaurus:CVCL_T055 METON 0 23149 -cellosaurus:CVCL_D132 MEXF 276L 0 23150 -cellosaurus:CVCL_D128 MEXF 462NL 0 23151 -cellosaurus:CVCL_D129 MEXF 514L 0 23152 -cellosaurus:CVCL_0C47 MF-1 [Human] 0 23153 -cellosaurus:CVCL_0C48 MF-2 0 23154 -cellosaurus:CVCL_0C49 MF-3 0 23155 -cellosaurus:CVCL_0C50 MF-5 0 23156 -cellosaurus:CVCL_0C51 MF-6 0 23157 -cellosaurus:CVCL_JY36 MFD-1 0 23158 -cellosaurus:CVCL_1405 MFE-280 0 23159 -cellosaurus:CVCL_DI49 MFE-294 0 23160 -cellosaurus:CVCL_1406 MFE-296 0 23161 -cellosaurus:CVCL_2112 MFE-319 0 23162 -cellosaurus:CVCL_W489 MFH-3 0 23163 -cellosaurus:CVCL_M824 MFH-H 0 23164 -cellosaurus:CVCL_M790 MFH-I 0 23165 -cellosaurus:CVCL_M791 MFH-II 0 23166 -cellosaurus:CVCL_1407 MFH-ino 0 23167 -cellosaurus:CVCL_M825 MFH-ToE 0 23168 -cellosaurus:CVCL_LF73 Mfh-val2 0 23169 -cellosaurus:CVCL_W490 MFHm-2 0 23170 -cellosaurus:CVCL_1408 MFM-223 0 23171 -cellosaurus:CVCL_B5N7 MFUM-BrTNBC-1 0 23172 -cellosaurus:CVCL_LM96 MG-34 0 23173 -cellosaurus:CVCL_LM97 MG-57 0 23174 -cellosaurus:CVCL_LM98 MG-72 0 23175 -cellosaurus:CVCL_RM09 MG-S 0 23176 -cellosaurus:CVCL_W788 MGH-13 0 23177 -cellosaurus:CVCL_W789 MGH-14 0 23178 -cellosaurus:CVCL_W790 MGH-24 0 23179 -cellosaurus:CVCL_W791 MGH-26 0 23180 -cellosaurus:CVCL_W792 MGH-30 0 23181 -cellosaurus:CVCL_W785 MGH-4 0 23182 -cellosaurus:CVCL_W786 MGH-7 0 23183 -cellosaurus:CVCL_W787 MGH-8 0 23184 -cellosaurus:CVCL_A651 MGH-BA-1 0 23185 -cellosaurus:CVCL_A652 MGH-BO-1 0 23186 -cellosaurus:CVCL_W794 MGH-GO-1 0 23187 -cellosaurus:CVCL_W795 MGH-LA-1 0 23188 -cellosaurus:CVCL_9878 MGH-MC-1 0 23189 -cellosaurus:CVCL_9879 MGH-MC-2 0 23190 -cellosaurus:CVCL_D781 MGH-mcc1 0 23191 -cellosaurus:CVCL_A653 MGH-PO-1 0 23192 -cellosaurus:CVCL_9827 MGH-U3 0 23193 -cellosaurus:CVCL_9828 MGH-U4 0 23194 -cellosaurus:CVCL_AY54 MGH021-4 0 23195 -cellosaurus:CVCL_AY55 MGH045 0 23196 -cellosaurus:CVCL_AY56 MGH051 0 23197 -cellosaurus:CVCL_EI95 MGH056-1 0 23198 -cellosaurus:CVCL_DH49 MGH121 0 23199 -cellosaurus:CVCL_DH50 MGH125 0 23200 -cellosaurus:CVCL_DH51 MGH126 0 23201 -cellosaurus:CVCL_DH52 MGH131-1 0 23202 -cellosaurus:CVCL_DH53 MGH131-2 0 23203 -cellosaurus:CVCL_DH54 MGH134 0 23204 -cellosaurus:CVCL_DH55 MGH141 0 23205 -cellosaurus:CVCL_DH56 MGH156 0 23206 -cellosaurus:CVCL_DH57 MGH157 0 23207 -cellosaurus:CVCL_A7PC MGH9009-1 0 23208 -cellosaurus:CVCL_W447 MGM-1 0 23209 -cellosaurus:CVCL_W448 MGM-2 0 23210 -cellosaurus:CVCL_W449 MGM-3 0 23211 -cellosaurus:CVCL_8563 MGR1 0 23212 -cellosaurus:CVCL_8564 MGR2 0 23213 -cellosaurus:CVCL_8565 MGR3 0 23214 -cellosaurus:CVCL_6847 MGSO-3 0 23215 -cellosaurus:CVCL_W085 MH [Human mesothelioma] 0 23216 -cellosaurus:CVCL_F845 MH [Human ovarian carcinoma] 0 23217 -cellosaurus:CVCL_H639 MH-1 [Human lymphoma] 0 23218 -cellosaurus:CVCL_AT87 MH-12 0 23219 -cellosaurus:CVCL_AT88 MH-17 0 23220 -cellosaurus:CVCL_AT89 MH-2 [Human melanoma] 0 23221 -cellosaurus:CVCL_B7GX MhCT08-E 0 23222 -cellosaurus:CVCL_B7GY MhCT08-F 0 23223 -cellosaurus:CVCL_B7GZ MhCT12-E 0 23224 -cellosaurus:CVCL_B7H0 MhCT12-F 0 23225 -cellosaurus:CVCL_1409 MHH-CALL-2 0 23226 -cellosaurus:CVCL_0089 MHH-CALL-3 0 23227 -cellosaurus:CVCL_1410 MHH-CALL-4 0 23228 -cellosaurus:CVCL_1411 MHH-ES-1 0 23229 -cellosaurus:CVCL_7988 MHH-MED-1 0 23230 -cellosaurus:CVCL_7989 MHH-MED-2 0 23231 -cellosaurus:CVCL_7990 MHH-MED-3 0 23232 -cellosaurus:CVCL_7991 MHH-MED-4 0 23233 -cellosaurus:CVCL_1412 MHH-NB-11 0 23234 -cellosaurus:CVCL_7992 MHH-PNET-5 0 23235 -cellosaurus:CVCL_1413 MHH-PREB-1 0 23236 -cellosaurus:CVCL_9824 MHH-TALL-1 0 23237 -cellosaurus:CVCL_9825 MHH-TALL-2 0 23238 -cellosaurus:CVCL_B426 MHM 0 23239 -cellosaurus:CVCL_GZ63 MHM-25 0 23240 -cellosaurus:CVCL_GZ64 MHM-8 0 23241 -cellosaurus:CVCL_1E43 MI #1 0 23242 -cellosaurus:CVCL_JX98 MI-31 0 23243 -cellosaurus:CVCL_N722 MI-4 [Human glioblastoma] 0 23244 -cellosaurus:CVCL_6294 MI-4 [Human lung carcinoma] 0 23245 -cellosaurus:CVCL_EI96 MIC 0 23246 -cellosaurus:CVCL_W860 Middle91 0 23247 -cellosaurus:CVCL_QW69 Mieliki 0 23248 -cellosaurus:CVCL_H208 MIEU 0 23249 -cellosaurus:CVCL_Y662 MIM/8 0 23250 -cellosaurus:CVCL_8528 Minami-1 0 23251 -cellosaurus:CVCL_8529 Minami-2 0 23252 -cellosaurus:CVCL_1872 Mino 0 23253 -cellosaurus:CVCL_UW35 MINO 0 23254 -cellosaurus:CVCL_A5XK MINT1 0 23255 -cellosaurus:CVCL_A5XL MINT2 0 23256 -cellosaurus:CVCL_A5XM MINT3 0 23257 -cellosaurus:CVCL_M826 MIPS-2 0 23258 -cellosaurus:CVCL_D526 MIT 0 23259 -cellosaurus:CVCL_1414 MJ 0 23260 -cellosaurus:CVCL_J312 MJM 0 23261 -cellosaurus:CVCL_WH98 MK 2 0 23262 -cellosaurus:CVCL_W863 MK-1 [Human gingival squamous cell carcinoma] 0 23263 -cellosaurus:CVCL_A1JM MK2 0 23264 -cellosaurus:CVCL_D027 MKL-2 0 23265 -cellosaurus:CVCL_WT60 MKO 0 23266 -cellosaurus:CVCL_2116 MKPL-1 0 23267 -cellosaurus:CVCL_7080 MKT-BR 0 23268 -cellosaurus:CVCL_W799 ML 0 23269 -cellosaurus:CVCL_0436 ML-1 [Human leukemia] 0 23270 -cellosaurus:CVCL_H525 ML-1 [Human thyroid carcinoma] 0 23271 -cellosaurus:CVCL_0435 ML-1a 0 23272 -cellosaurus:CVCL_1418 ML-2 0 23273 -cellosaurus:CVCL_H526 ML-3 0 23274 -cellosaurus:CVCL_M827 ML2308 0 23275 -cellosaurus:CVCL_1419 MLMA 0 23276 -cellosaurus:CVCL_IS38 MM-031 0 23277 -cellosaurus:CVCL_0C21 MM-1 [Human small cell lung carcinoma] 0 23278 -cellosaurus:CVCL_IS39 MM-194 0 23279 -cellosaurus:CVCL_IS40 MM-195 0 23280 -cellosaurus:CVCL_IS41 MM-201 0 23281 -cellosaurus:CVCL_IS42 MM-232 0 23282 -cellosaurus:CVCL_IS43 MM-254 0 23283 -cellosaurus:CVCL_IS44 MM-358 0 23284 -cellosaurus:CVCL_9712 MM-83 0 23285 -cellosaurus:CVCL_M536 MM-A1 0 23286 -cellosaurus:CVCL_H241 MM-AN 0 23287 -cellosaurus:CVCL_IW98 MM-B1 0 23288 -cellosaurus:CVCL_M540 MM-BP 0 23289 -cellosaurus:CVCL_M537 MM-C1 0 23290 -cellosaurus:CVCL_IW99 MM-F1 0 23291 -cellosaurus:CVCL_M541 MM-LH 0 23292 -cellosaurus:CVCL_M547 MM-M1 0 23293 -cellosaurus:CVCL_M539 MM-Y1 0 23294 -cellosaurus:CVCL_C3FS MM121224 0 23295 -cellosaurus:CVCL_2601 MM127 0 23296 -cellosaurus:CVCL_C3FM MM130106 0 23297 -cellosaurus:CVCL_C3FY MM130427 0 23298 -cellosaurus:CVCL_C3FR MM130434 0 23299 -cellosaurus:CVCL_C3FL MM130626 0 23300 -cellosaurus:CVCL_C3FE MM130820 0 23301 -cellosaurus:CVCL_C3FQ MM130926 0 23302 -cellosaurus:CVCL_C3FN MM131205 0 23303 -cellosaurus:CVCL_C3FP MM131206 0 23304 -cellosaurus:CVCL_C3FT MM140902 0 23305 -cellosaurus:CVCL_C3FH MM140905 0 23306 -cellosaurus:CVCL_C3FF MM150325 0 23307 -cellosaurus:CVCL_C3FZ MM150405 0 23308 -cellosaurus:CVCL_C3FG MM150604 0 23309 -cellosaurus:CVCL_L789 MM16 0 23310 -cellosaurus:CVCL_B4KU MM160113 0 23311 -cellosaurus:CVCL_9482 MM17 0 23312 -cellosaurus:CVCL_2603 MM170 0 23313 -cellosaurus:CVCL_C836 MM200 0 23314 -cellosaurus:CVCL_L790 MM21 0 23315 -cellosaurus:CVCL_W453 MM214 0 23316 -cellosaurus:CVCL_C837 MM229 0 23317 -cellosaurus:CVCL_L791 MM26 0 23318 -cellosaurus:CVCL_DH59 MM266 0 23319 -cellosaurus:CVCL_4D15 MM28 0 23320 -cellosaurus:CVCL_C838 MM329 0 23321 -cellosaurus:CVCL_4D16 MM33 0 23322 -cellosaurus:CVCL_GR28 MM339 0 23323 -cellosaurus:CVCL_GR29 MM344 0 23324 -cellosaurus:CVCL_L792 MM35 0 23325 -cellosaurus:CVCL_C839 MM369 0 23326 -cellosaurus:CVCL_2605 MM370 0 23327 -cellosaurus:CVCL_2606 MM383 0 23328 -cellosaurus:CVCL_C840 MM384 0 23329 -cellosaurus:CVCL_2607 MM386 0 23330 -cellosaurus:CVCL_UM60 MM387 0 23331 -cellosaurus:CVCL_UM61 MM392 0 23332 -cellosaurus:CVCL_C841 MM396 0 23333 -cellosaurus:CVCL_S405 MM4 0 23334 -cellosaurus:CVCL_UM62 MM408 0 23335 -cellosaurus:CVCL_C842 MM409 0 23336 -cellosaurus:CVCL_2608 MM415 0 23337 -cellosaurus:CVCL_2609 MM426 0 23338 -cellosaurus:CVCL_UM73 MM446 0 23339 -cellosaurus:CVCL_C835 MM455 0 23340 -cellosaurus:CVCL_L793 MM46 [Human mesothelioma] 0 23341 -cellosaurus:CVCL_4449 MM466 0 23342 -cellosaurus:CVCL_C844 MM470 0 23343 -cellosaurus:CVCL_C845 MM472 0 23344 -cellosaurus:CVCL_4450 MM473 0 23345 -cellosaurus:CVCL_2610 MM485 0 23346 -cellosaurus:CVCL_C846 MM488 0 23347 -cellosaurus:CVCL_4451 MM537 0 23348 -cellosaurus:CVCL_C847 MM540 0 23349 -cellosaurus:CVCL_C848 MM548 0 23350 -cellosaurus:CVCL_L794 MM56 0 23351 -cellosaurus:CVCL_2611 MM576 0 23352 -cellosaurus:CVCL_4452 MM595 0 23353 -cellosaurus:CVCL_C849 MM598 0 23354 -cellosaurus:CVCL_2612 MM603 0 23355 -cellosaurus:CVCL_DG38 MM604 0 23356 -cellosaurus:CVCL_4453 MM608 0 23357 -cellosaurus:CVCL_UM74 MM612 0 23358 -cellosaurus:CVCL_C850 MM622 0 23359 -cellosaurus:CVCL_C851 MM628 0 23360 -cellosaurus:CVCL_W873 MM629 0 23361 -cellosaurus:CVCL_DH58 MM636 0 23362 -cellosaurus:CVCL_C852 MM647 0 23363 -cellosaurus:CVCL_A777 MM648 0 23364 -cellosaurus:CVCL_A776 MM649 0 23365 -cellosaurus:CVCL_4D17 MM66 0 23366 -cellosaurus:CVCL_H198 MMG1 0 23367 -cellosaurus:CVCL_S559 MMG2 0 23368 -cellosaurus:CVCL_H729 MMG3 0 23369 -cellosaurus:CVCL_W450 MMJ-2 0 23370 -cellosaurus:CVCL_9Q62 MML-1 [Human leukemia] 0 23371 -cellosaurus:CVCL_6004 MML-1 [Human melanoma] 0 23372 -cellosaurus:CVCL_U249 MMLAL 0 23373 -cellosaurus:CVCL_Z616 MN-1112 0 23374 -cellosaurus:CVCL_1421 MN-60 0 23375 -cellosaurus:CVCL_VQ10 MNG-Mel 0 23376 -cellosaurus:CVCL_5624 MNT-1 0 23377 -cellosaurus:CVCL_5625 MNT-3 0 23378 -cellosaurus:CVCL_1439 Mo 0 23379 -cellosaurus:CVCL_0C22 MO-A 0 23380 -cellosaurus:CVCL_HF80 MO-N-1 0 23381 -cellosaurus:CVCL_HF81 MO-N-2 0 23382 -cellosaurus:CVCL_HF82 MO-T 0 23383 -cellosaurus:CVCL_Y383 MO1043 0 23384 -cellosaurus:CVCL_A1LA MOG-G-ATA 0 23385 -cellosaurus:CVCL_2613 MOG-G-CCM 0 23386 -cellosaurus:CVCL_S831 MOG-G-IJK 0 23387 -cellosaurus:CVCL_A1LB MOG-G-RAT 0 23388 -cellosaurus:CVCL_2614 MOG-G-UVW 0 23389 -cellosaurus:CVCL_2118 MOLM-1 0 23390 -cellosaurus:CVCL_7920 MOLM-10 0 23391 -cellosaurus:CVCL_7921 MOLM-11 0 23392 -cellosaurus:CVCL_L075 MOLM-12 0 23393 -cellosaurus:CVCL_7916 MOLM-14 0 23394 -cellosaurus:CVCL_2120 MOLM-16 0 23395 -cellosaurus:CVCL_7922 MOLM-17 0 23396 -cellosaurus:CVCL_7923 MOLM-18 0 23397 -cellosaurus:CVCL_2121 MOLM-20 0 23398 -cellosaurus:CVCL_2122 MOLM-6 0 23399 -cellosaurus:CVCL_7917 MOLM-7 0 23400 -cellosaurus:CVCL_7918 MOLM-8 0 23401 -cellosaurus:CVCL_7919 MOLM-9 0 23402 -cellosaurus:CVCL_5764 MOLP-3 0 23403 -cellosaurus:CVCL_5842 MOLP-5 0 23404 -cellosaurus:CVCL_9984 MOLP-6 0 23405 -cellosaurus:CVCL_9985 MOLP-7 0 23406 -cellosaurus:CVCL_2124 MOLP-8 0 23407 -cellosaurus:CVCL_7924 MOLT-10 0 23408 -cellosaurus:CVCL_8152 MOLT-11 0 23409 -cellosaurus:CVCL_8151 MOLT-12 0 23410 -cellosaurus:CVCL_1422 MOLT-13 0 23411 -cellosaurus:CVCL_1423 MOLT-14 0 23412 -cellosaurus:CVCL_1424 MOLT-16 0 23413 -cellosaurus:CVCL_2125 MOLT-17 0 23414 -cellosaurus:CVCL_M846 MON 0 23415 -cellosaurus:CVCL_0G15 Monca 0 23416 -cellosaurus:CVCL_A654 MONO-7 0 23417 -cellosaurus:CVCL_1425 Mono-Mac-1 0 23418 -cellosaurus:CVCL_1426 Mono-Mac-6 0 23419 -cellosaurus:CVCL_2127 MOTN-1 0 23420 -cellosaurus:CVCL_7993 MP-ASKIN-SA 0 23421 -cellosaurus:CVCL_0J33 MP-CCS-SY 0 23422 -cellosaurus:CVCL_7049 MP-MRT-AN 0 23423 -cellosaurus:CVCL_Y139 MP-N-MS 0 23424 -cellosaurus:CVCL_Y140 MP-N-TS 0 23425 -cellosaurus:CVCL_4D11 MP38 0 23426 -cellosaurus:CVCL_4D12 MP41 0 23427 -cellosaurus:CVCL_4D13 MP46 0 23428 -cellosaurus:CVCL_VJ89 MP57 0 23429 -cellosaurus:CVCL_4D14 MP65 0 23430 -cellosaurus:CVCL_UB98 MPC298 0 23431 -cellosaurus:CVCL_UB99 MPC600 0 23432 -cellosaurus:CVCL_UC00 MPC7105 0 23433 -cellosaurus:CVCL_UC01 MPC960 0 23434 -cellosaurus:CVCL_D527 MPM1 0 23435 -cellosaurus:CVCL_A1YP MPM176 0 23436 -cellosaurus:CVCL_D528 MPM2 0 23437 -cellosaurus:CVCL_D529 MPM3 0 23438 -cellosaurus:CVCL_AU21 MPNST-14 0 23439 -cellosaurus:CVCL_AU19 MPNST-642 0 23440 -cellosaurus:CVCL_AU20 MPNST-724 0 23441 -cellosaurus:CVCL_J355 MPNST-90 0 23442 -cellosaurus:CVCL_J356 MPNST-91 0 23443 -cellosaurus:CVCL_J357 MPNST-92 0 23444 -cellosaurus:CVCL_1427 MPP 89 0 23445 -cellosaurus:CVCL_9822 MPSC1 0 23446 -cellosaurus:CVCL_B7GV MPT-S1 0 23447 -cellosaurus:CVCL_JZ43 MR-103 0 23448 -cellosaurus:CVCL_JZ25 MR-13 0 23449 -cellosaurus:CVCL_JZ26 MR-16 0 23450 -cellosaurus:CVCL_JZ19 MR-2 0 23451 -cellosaurus:CVCL_JZ27 MR-20 0 23452 -cellosaurus:CVCL_JZ28 MR-21 0 23453 -cellosaurus:CVCL_JZ29 MR-22 0 23454 -cellosaurus:CVCL_JZ30 MR-25 0 23455 -cellosaurus:CVCL_JZ31 MR-26 0 23456 -cellosaurus:CVCL_JZ32 MR-27 0 23457 -cellosaurus:CVCL_JZ33 MR-28 0 23458 -cellosaurus:CVCL_JZ34 MR-32 0 23459 -cellosaurus:CVCL_JZ35 MR-33 0 23460 -cellosaurus:CVCL_JZ20 MR-4 0 23461 -cellosaurus:CVCL_JZ21 MR-5 0 23462 -cellosaurus:CVCL_JZ36 MR-50 0 23463 -cellosaurus:CVCL_JZ37 MR-55 0 23464 -cellosaurus:CVCL_JZ38 MR-58 0 23465 -cellosaurus:CVCL_JZ39 MR-65 0 23466 -cellosaurus:CVCL_JZ22 MR-7 0 23467 -cellosaurus:CVCL_JZ23 MR-8 0 23468 -cellosaurus:CVCL_JZ40 MR-86 0 23469 -cellosaurus:CVCL_A655 MR-87 0 23470 -cellosaurus:CVCL_JZ24 MR-9 0 23471 -cellosaurus:CVCL_JZ41 MR-90 0 23472 -cellosaurus:CVCL_JZ42 MR-97 0 23473 -cellosaurus:CVCL_7081 MR-Mel 0 23474 -cellosaurus:CVCL_U325 MRCC 0 23475 -cellosaurus:CVCL_1428 MRK-nu-1 0 23476 -cellosaurus:CVCL_WZ71 MRK-nu-2 0 23477 -cellosaurus:CVCL_5626 MRN-1 0 23478 -cellosaurus:CVCL_W491 MRT-1 0 23479 -cellosaurus:CVCL_ZC25 MS [Human diffuse large B-cell lymphoma] 0 23480 -cellosaurus:CVCL_1429 MS-1 [Human lung carcinoma] 0 23481 -cellosaurus:CVCL_E995 MS-1 [Human Merkel cell carcinoma] 0 23482 -cellosaurus:CVCL_E993 MS-1 [Human mesothelioma] 0 23483 -cellosaurus:CVCL_IQ55 Ms-1 0 23484 -cellosaurus:CVCL_ZD39 Ms-10 0 23485 -cellosaurus:CVCL_IQ49 Ms-11 0 23486 -cellosaurus:CVCL_IQ50 Ms-13 0 23487 -cellosaurus:CVCL_IQ51 Ms-16 0 23488 -cellosaurus:CVCL_ZD40 Ms-19 0 23489 -cellosaurus:CVCL_E992 MS-2 [Human mesothelioma] 0 23490 -cellosaurus:CVCL_IQ54 Ms-2 0 23491 -cellosaurus:CVCL_IQ53 Ms-3 0 23492 -cellosaurus:CVCL_IQ52 Ms-8 0 23493 -cellosaurus:CVCL_A0VK MS-EwS-1 0 23494 -cellosaurus:CVCL_A0VP MS-EwS-15 0 23495 -cellosaurus:CVCL_A0VQ MS-EwS-16 0 23496 -cellosaurus:CVCL_A0VL MS-EwS-3 0 23497 -cellosaurus:CVCL_A0VR MS-EwS-34 0 23498 -cellosaurus:CVCL_A0VM MS-EwS-4 0 23499 -cellosaurus:CVCL_A0VS MS-EwS-5 0 23500 -cellosaurus:CVCL_A0VN MS-EwS-6 0 23501 -cellosaurus:CVCL_IK99 MS0812 0 23502 -cellosaurus:CVCL_N705 MS115 0 23503 -cellosaurus:CVCL_9823 MS18 0 23504 -cellosaurus:CVCL_9834 MS257 0 23505 -cellosaurus:CVCL_9835 MS428 0 23506 -cellosaurus:CVCL_9836 MS589 0 23507 -cellosaurus:CVCL_4996 MS751 0 23508 -cellosaurus:CVCL_9833 MS924 0 23509 -cellosaurus:CVCL_0G10 MSG1 0 23510 -cellosaurus:CVCL_6988 MSK-921 0 23511 -cellosaurus:CVCL_6989 MSK-922 0 23512 -cellosaurus:CVCL_6990 MSK-QLL1 0 23513 -cellosaurus:CVCL_6991 MSK-QLL2 0 23514 -cellosaurus:CVCL_9882 MSN 0 23515 -cellosaurus:CVCL_LB72 MSP-1 0 23516 -cellosaurus:CVCL_0J34 MST-1 0 23517 -cellosaurus:CVCL_0J35 MST-2 0 23518 -cellosaurus:CVCL_0J36 MST-3 0 23519 -cellosaurus:CVCL_1430 MSTO-211H 0 23520 -cellosaurus:CVCL_M829 MSUMFH 0 23521 -cellosaurus:CVCL_B3QG MT [Human rhabdoid tumor] 0 23522 -cellosaurus:CVCL_M518 MT-1 [Human leukemia] 0 23523 -cellosaurus:CVCL_M519 MT-1 [Human mesothelioma] 0 23524 -cellosaurus:CVCL_W812 MT-213-VGH 0 23525 -cellosaurus:CVCL_M520 MT-3 [Human mesothelioma] 0 23526 -cellosaurus:CVCL_W492 MT-428 0 23527 -cellosaurus:CVCL_M516 MT3 0 23528 -cellosaurus:CVCL_3032 MTA 0 23529 -cellosaurus:CVCL_W534 MTO-94 0 23530 -cellosaurus:CVCL_X540 MTS-RC 0 23531 -cellosaurus:CVCL_B432 MTT-95 0 23532 -cellosaurus:CVCL_YL64 MU7 0 23533 -cellosaurus:CVCL_YL65 MU8 [Human uveal melanoma] 0 23534 -cellosaurus:CVCL_AV05 MUG-CC1 0 23535 -cellosaurus:CVCL_9277 MUG-Chor1 0 23536 -cellosaurus:CVCL_JQ50 MUG-Mel2 0 23537 -cellosaurus:CVCL_T030 MUG-Myx1 0 23538 -cellosaurus:CVCL_VJ87 MUG-Myx2a 0 23539 -cellosaurus:CVCL_VJ88 MUG-Myx2b 0 23540 -cellosaurus:CVCL_W775 Muk-BL 0 23541 -cellosaurus:CVCL_A5AI Mull 0 23542 -cellosaurus:CVCL_3447 MuM-2B 0 23543 -cellosaurus:CVCL_M521 MUM24 0 23544 -cellosaurus:CVCL_B3S8 MUPS-1 0 23545 -cellosaurus:CVCL_E042 Muraoka 0 23546 -cellosaurus:CVCL_IU23 Muriungi 0 23547 -cellosaurus:CVCL_3549 Murphy 0 23548 -cellosaurus:CVCL_EI98 MUTJ 0 23549 -cellosaurus:CVCL_8288 MUTZ-11 0 23550 -cellosaurus:CVCL_1432 MUTZ-2 0 23551 -cellosaurus:CVCL_1433 MUTZ-3 0 23552 -cellosaurus:CVCL_1873 MUTZ-5 0 23553 -cellosaurus:CVCL_L068 MUTZ-6 0 23554 -cellosaurus:CVCL_L069 MUTZ-7 0 23555 -cellosaurus:CVCL_2130 MUTZ-8 0 23556 -cellosaurus:CVCL_W280 MV3 0 23557 -cellosaurus:CVCL_WS84 MW [Human chondrosarcoma] 0 23558 -cellosaurus:CVCL_U799 MW [Human melanoma] 0 23559 -cellosaurus:CVCL_M367 MW1 [Human breast carcinoma] 0 23560 -cellosaurus:CVCL_ZI20 Mwanzia 0 23561 -cellosaurus:CVCL_7205 Mwika 0 23562 -cellosaurus:CVCL_4774 MX-1 0 23563 -cellosaurus:CVCL_2633 My-La CD4+ 0 23564 -cellosaurus:CVCL_2634 My-La CD8+ 0 23565 -cellosaurus:CVCL_5340 MyLa 1929 0 23566 -cellosaurus:CVCL_8328 MyLa 2000 0 23567 -cellosaurus:CVCL_8326 MyLa 3675 0 23568 -cellosaurus:CVCL_ZC26 MZ 0 23569 -cellosaurus:CVCL_M407 MZ-159 0 23570 -cellosaurus:CVCL_M404 MZ-18 0 23571 -cellosaurus:CVCL_RX80 MZ-226 0 23572 -cellosaurus:CVCL_M408 MZ-256 0 23573 -cellosaurus:CVCL_M409 MZ-257 0 23574 -cellosaurus:CVCL_RX81 MZ-290 0 23575 -cellosaurus:CVCL_M410 MZ-294 0 23576 -cellosaurus:CVCL_M411 MZ-304 0 23577 -cellosaurus:CVCL_M412 MZ-327 0 23578 -cellosaurus:CVCL_M413 MZ-348 0 23579 -cellosaurus:CVCL_M414 MZ-373 0 23580 -cellosaurus:CVCL_M405 MZ-51 0 23581 -cellosaurus:CVCL_M406 MZ-54 0 23582 -cellosaurus:CVCL_6932 Mz-ChA-1 0 23583 -cellosaurus:CVCL_6933 Mz-ChA-2 0 23584 -cellosaurus:CVCL_H708 Mz-ChA-3 0 23585 -cellosaurus:CVCL_7685 MZ-CO-1 0 23586 -cellosaurus:CVCL_A656 MZ-CRC-1 0 23587 -cellosaurus:CVCL_4U28 MZ-GC-1 0 23588 -cellosaurus:CVCL_4U29 MZ-GC-2 0 23589 -cellosaurus:CVCL_5A02 Mz-Hep-1 0 23590 -cellosaurus:CVCL_7686 MZ-LC-1 0 23591 -cellosaurus:CVCL_7687 MZ-MEL-11 0 23592 -cellosaurus:CVCL_A1LG MZ-MEL-12 0 23593 -cellosaurus:CVCL_B286 MZ-MEL-13 0 23594 -cellosaurus:CVCL_7688 MZ-MEL-18 0 23595 -cellosaurus:CVCL_8061 MZ-MEL-19 0 23596 -cellosaurus:CVCL_1435 MZ-MEL-2 0 23597 -cellosaurus:CVCL_7689 MZ-MEL-3.1 0 23598 -cellosaurus:CVCL_B287 MZ-MEL-4 0 23599 -cellosaurus:CVCL_A468 MZ-MEL-5 0 23600 -cellosaurus:CVCL_7690 MZ-MEL-6 0 23601 -cellosaurus:CVCL_1436 MZ-MEL-7 0 23602 -cellosaurus:CVCL_C619 MZ-MEL-9 0 23603 -cellosaurus:CVCL_1434 MZ-PC-1 0 23604 -cellosaurus:CVCL_A658 MZ-PC-2 0 23605 -cellosaurus:CVCL_4U30 MZ-PC-3 0 23606 -cellosaurus:CVCL_A659 MZ-PC-4 0 23607 -cellosaurus:CVCL_A1LE MZ-RCC-1790 0 23608 -cellosaurus:CVCL_A1LF MZ-RCC-1795 0 23609 -cellosaurus:CVCL_S859 Mz-Sto-1 0 23610 -cellosaurus:CVCL_E044 MZ1257RC 0 23611 -cellosaurus:CVCL_X415 MZ1774RC 0 23612 -cellosaurus:CVCL_X409 MZ1790RC 0 23613 -cellosaurus:CVCL_X416 MZ1795RC 0 23614 -cellosaurus:CVCL_M401 Mz18 0 23615 -cellosaurus:CVCL_X417 MZ1846RC 0 23616 -cellosaurus:CVCL_X418 MZ1851LN 0 23617 -cellosaurus:CVCL_E045 MZ1851RC 0 23618 -cellosaurus:CVCL_X406 MZ1879RC 0 23619 -cellosaurus:CVCL_X407 MZ1940RC 0 23620 -cellosaurus:CVCL_X408 MZ1979RC 0 23621 -cellosaurus:CVCL_M402 Mz21 0 23622 -cellosaurus:CVCL_RV30 MZ2175RC 0 23623 -cellosaurus:CVCL_X419 MZ2733RC 0 23624 -cellosaurus:CVCL_RV36 MZ2789RC 0 23625 -cellosaurus:CVCL_X420 MZ2858RC 0 23626 -cellosaurus:CVCL_X421 MZ2861RC 0 23627 -cellosaurus:CVCL_X422 MZ2862RC 0 23628 -cellosaurus:CVCL_E047 MZ2865RC 0 23629 -cellosaurus:CVCL_RV37 MZ2872RC 0 23630 -cellosaurus:CVCL_RV38 MZ2875RC 0 23631 -cellosaurus:CVCL_X423 MZ2877RC 0 23632 -cellosaurus:CVCL_X424 MZ2885RC 0 23633 -cellosaurus:CVCL_RV39 MZ2901RC 0 23634 -cellosaurus:CVCL_X425 MZ2902RC 0 23635 -cellosaurus:CVCL_RV40 MZ2904RC 0 23636 -cellosaurus:CVCL_X426 MZ2905RC 0 23637 -cellosaurus:CVCL_RV41 MZ2907RC 0 23638 -cellosaurus:CVCL_RV31 MZ2931RC 0 23639 -cellosaurus:CVCL_M403 Mz35 0 23640 -cellosaurus:CVCL_F999 MZ93 0 23641 -cellosaurus:CVCL_F671 N1000 0 23642 -cellosaurus:CVCL_F672 N1001 0 23643 -cellosaurus:CVCL_F673 N1002 0 23644 -cellosaurus:CVCL_X410 N1003 0 23645 -cellosaurus:CVCL_X411 N1007 0 23646 -cellosaurus:CVCL_F674 N1008 0 23647 -cellosaurus:CVCL_F675 N1016 0 23648 -cellosaurus:CVCL_X412 N1024 0 23649 -cellosaurus:CVCL_F676 N1043 0 23650 -cellosaurus:CVCL_X413 N1046 0 23651 -cellosaurus:CVCL_X414 N1050 0 23652 -cellosaurus:CVCL_C885 N206 0 23653 -cellosaurus:CVCL_5343 N521J 0 23654 -cellosaurus:CVCL_7082 NA 0 23655 -cellosaurus:CVCL_S599 NA8-MEL 0 23656 -cellosaurus:CVCL_IU55 NAB9B 0 23657 -cellosaurus:CVCL_M368 NABCA 0 23658 -cellosaurus:CVCL_6E84 Nagai 0 23659 -cellosaurus:CVCL_3038 NAGL-1 0 23660 -cellosaurus:CVCL_D116 Nagoya-78 0 23661 -cellosaurus:CVCL_M587 Nak-Pc2 0 23662 -cellosaurus:CVCL_8266 Naliaka 0 23663 -cellosaurus:CVCL_3039 NALL-1 0 23664 -cellosaurus:CVCL_0091 NALM-1 0 23665 -cellosaurus:CVCL_L059 NALM-10 0 23666 -cellosaurus:CVCL_L060 NALM-11 0 23667 -cellosaurus:CVCL_5660 NALM-12 0 23668 -cellosaurus:CVCL_L061 NALM-13 0 23669 -cellosaurus:CVCL_QX00 NALM-14 0 23670 -cellosaurus:CVCL_1834 NALM-16 0 23671 -cellosaurus:CVCL_3887 NALM-17 0 23672 -cellosaurus:CVCL_5661 NALM-18 0 23673 -cellosaurus:CVCL_1835 NALM-19 0 23674 -cellosaurus:CVCL_1836 NALM-20 0 23675 -cellosaurus:CVCL_1837 NALM-21 0 23676 -cellosaurus:CVCL_5662 NALM-22 0 23677 -cellosaurus:CVCL_5663 NALM-23 0 23678 -cellosaurus:CVCL_3888 NALM-24 0 23679 -cellosaurus:CVCL_5664 NALM-25 0 23680 -cellosaurus:CVCL_3889 NALM-26 0 23681 -cellosaurus:CVCL_5665 NALM-27 0 23682 -cellosaurus:CVCL_5666 NALM-28 0 23683 -cellosaurus:CVCL_5667 NALM-29 0 23684 -cellosaurus:CVCL_5668 NALM-30 0 23685 -cellosaurus:CVCL_5669 NALM-31 0 23686 -cellosaurus:CVCL_5670 NALM-32 0 23687 -cellosaurus:CVCL_5671 NALM-33 0 23688 -cellosaurus:CVCL_5672 NALM-34 0 23689 -cellosaurus:CVCL_5673 NALM-35 0 23690 -cellosaurus:CVCL_5676 NALM-37 0 23691 -cellosaurus:CVCL_5677 NALM-7 0 23692 -cellosaurus:CVCL_L057 NALM-8 0 23693 -cellosaurus:CVCL_L058 NALM-9 0 23694 -cellosaurus:CVCL_R913 NAMO-2 0 23695 -cellosaurus:CVCL_A775 NAN-1 0 23696 -cellosaurus:CVCL_WR54 NAN-10 0 23697 -cellosaurus:CVCL_WR55 NAN-11 0 23698 -cellosaurus:CVCL_HX08 NAN-2 0 23699 -cellosaurus:CVCL_B318 NAN-3 0 23700 -cellosaurus:CVCL_B319 NAN-4 0 23701 -cellosaurus:CVCL_B324 NAN-5 0 23702 -cellosaurus:CVCL_HX09 NAN-6 0 23703 -cellosaurus:CVCL_WR58 NAN-7 0 23704 -cellosaurus:CVCL_WR56 NAN-8 0 23705 -cellosaurus:CVCL_WR57 NAN-9 0 23706 -cellosaurus:CVCL_B317 NAN2 0 23707 -cellosaurus:CVCL_HF46 NAP 0 23708 -cellosaurus:CVCL_W997 Nara-F 0 23709 -cellosaurus:CVCL_W998 Nara-H 0 23710 -cellosaurus:CVCL_M830 NATO 0 23711 -cellosaurus:CVCL_M680 NaUCC-1 0 23712 -cellosaurus:CVCL_M681 NaUCC-2 0 23713 -cellosaurus:CVCL_M682 NaUCC-3 0 23714 -cellosaurus:CVCL_M683 NaUCC-4 0 23715 -cellosaurus:CVCL_3041 NB(TU)1 0 23716 -cellosaurus:CVCL_GZ01 NB-1 0 23717 -cellosaurus:CVCL_5627 NB-1643 0 23718 -cellosaurus:CVCL_5628 NB-1691 0 23719 -cellosaurus:CVCL_E216 NB-1771 0 23720 -cellosaurus:CVCL_B229 NB-39-nu 0 23721 -cellosaurus:CVCL_E218 NB-EbC1 0 23722 -cellosaurus:CVCL_QW53 NB-NR 0 23723 -cellosaurus:CVCL_LF68 NB-SD 0 23724 -cellosaurus:CVCL_1440 NB1 0 23725 -cellosaurus:CVCL_W493 NB1-G 0 23726 -cellosaurus:CVCL_B323 NB16 0 23727 -cellosaurus:CVCL_L112 NB56 0 23728 -cellosaurus:CVCL_1448 NB69 0 23729 -cellosaurus:CVCL_L111 NB76 0 23730 -cellosaurus:CVCL_A5PQ NB90-4 0 23731 -cellosaurus:CVCL_A5PR NB90-6 0 23732 -cellosaurus:CVCL_2136 NBL-S 0 23733 -cellosaurus:CVCL_VJ90 NBLW 0 23734 -cellosaurus:CVCL_VJ91 NBLW-R 0 23735 -cellosaurus:CVCL_1450 NBsusSR 0 23736 -cellosaurus:CVCL_6545 NBT-2 0 23737 -cellosaurus:CVCL_T312 NC 65-R 0 23738 -cellosaurus:CVCL_T311 NC 65-Sp 0 23739 -cellosaurus:CVCL_W389 NC-HIMT 0 23740 -cellosaurus:CVCL_WW15 NCC-375 0 23741 -cellosaurus:CVCL_A1ST NCC-aRMS1-C1 0 23742 -cellosaurus:CVCL_ZZ81 NCC-ASPS1-C1 0 23743 -cellosaurus:CVCL_7883 NCC-BD1 0 23744 -cellosaurus:CVCL_7884 NCC-BD2 0 23745 -cellosaurus:CVCL_A8DN NCC-BD3 0 23746 -cellosaurus:CVCL_A8DP NCC-BD4-1 0 23747 -cellosaurus:CVCL_A8DQ NCC-BD4-2 0 23748 -cellosaurus:CVCL_IM30 NCC-c-CX-1 0 23749 -cellosaurus:CVCL_7885 NCC-CC1 0 23750 -cellosaurus:CVCL_7886 NCC-CC3-1 0 23751 -cellosaurus:CVCL_7887 NCC-CC3-2 0 23752 -cellosaurus:CVCL_7888 NCC-CC4-1 0 23753 -cellosaurus:CVCL_A8DR NCC-CC4-2 0 23754 -cellosaurus:CVCL_A8DS NCC-CC4-3 0 23755 -cellosaurus:CVCL_A8DT NCC-CC6-1 0 23756 -cellosaurus:CVCL_A8DU NCC-CC6-2 0 23757 -cellosaurus:CVCL_B3TR NCC-CCS1-X4-C1 0 23758 -cellosaurus:CVCL_B3TS NCC-CCS1B-C1 0 23759 -cellosaurus:CVCL_B3TT NCC-CCS1B-X2-C1 0 23760 -cellosaurus:CVCL_YL54 NCC-CDS1-X1-C1 0 23761 -cellosaurus:CVCL_YL55 NCC-CDS1-X3-C1 0 23762 -cellosaurus:CVCL_YL70 NCC-CDS2-C1 0 23763 -cellosaurus:CVCL_8320 NCC-CoC-K115L 0 23764 -cellosaurus:CVCL_8319 NCC-CoC-K115P 0 23765 -cellosaurus:CVCL_A0GE NCC-cOV1-C1 0 23766 -cellosaurus:CVCL_UZ21 NCC-dCS1-C1 0 23767 -cellosaurus:CVCL_A1BV NCC-DDLPS1-C1 0 23768 -cellosaurus:CVCL_A5IJ NCC-DDLPS2-C1 0 23769 -cellosaurus:CVCL_A6FB NCC-DDLPS3-C1 0 23770 -cellosaurus:CVCL_B3TQ NCC-DDLPS4-C1 0 23771 -cellosaurus:CVCL_B7EM NCC-DDLPS5-C1 0 23772 -cellosaurus:CVCL_C1GH NCC-DDLPS6-C1 0 23773 -cellosaurus:CVCL_UR53 NCC-DFSP1-C1 0 23774 -cellosaurus:CVCL_UR54 NCC-DFSP2-C1 0 23775 -cellosaurus:CVCL_ZE79 NCC-DFSP3-C1 0 23776 -cellosaurus:CVCL_B5PV NCC-DMM1-C1 0 23777 -cellosaurus:CVCL_8316 NCC-EC-1 0 23778 -cellosaurus:CVCL_8317 NCC-EC-2 0 23779 -cellosaurus:CVCL_8318 NCC-EC-3 0 23780 -cellosaurus:CVCL_UK81 NCC-ES1-C1 0 23781 -cellosaurus:CVCL_B7PH NCC-ES2-C1 0 23782 -cellosaurus:CVCL_YD21 NCC-ESOS1-C1 0 23783 -cellosaurus:CVCL_A9QC NCC-GCTB1-C1 0 23784 -cellosaurus:CVCL_A0SR NCC-GCTB2-C1 0 23785 -cellosaurus:CVCL_A0SS NCC-GCTB3-C1 0 23786 -cellosaurus:CVCL_B3VJ NCC-GCTB4-C1 0 23787 -cellosaurus:CVCL_C1GF NCC-GCTB5-C1 0 23788 -cellosaurus:CVCL_GS47 NCC-KT 0 23789 -cellosaurus:CVCL_B0W9 NCC-LGFMS1-C1 0 23790 -cellosaurus:CVCL_LK56 NCC-LMS1-C1 0 23791 -cellosaurus:CVCL_VM07 NCC-LMS1-X3-C1 0 23792 -cellosaurus:CVCL_A4EE NCC-LMS2-C1 0 23793 -cellosaurus:CVCL_VT41 NCC-MFS1-C1 0 23794 -cellosaurus:CVCL_A2EI NCC-MFS2-C1 0 23795 -cellosaurus:CVCL_B3RM NCC-MFS3-C1 0 23796 -cellosaurus:CVCL_B3RL NCC-MFS4-C1 0 23797 -cellosaurus:CVCL_B5YX NCC-MFS5-C1 0 23798 -cellosaurus:CVCL_A1VS NCC-MLPS1-C1 0 23799 -cellosaurus:CVCL_C1GI NCC-MLPS2-C1 0 23800 -cellosaurus:CVCL_C1GJ NCC-MLPS3-C1 0 23801 -cellosaurus:CVCL_YU12 NCC-MPNST1-C1 0 23802 -cellosaurus:CVCL_YU13 NCC-MPNST2-C1 0 23803 -cellosaurus:CVCL_YU14 NCC-MPNST3-C1 0 23804 -cellosaurus:CVCL_YU15 NCC-MPNST3-X2-C1 0 23805 -cellosaurus:CVCL_YU16 NCC-MPNST4-C1 0 23806 -cellosaurus:CVCL_YU17 NCC-MPNST5-C1 0 23807 -cellosaurus:CVCL_B4H4 NCC-MPNST6-C1 0 23808 -cellosaurus:CVCL_VM08 NCC-OS1-X2-C1 0 23809 -cellosaurus:CVCL_3046 NCC-OvC-K119 0 23810 -cellosaurus:CVCL_A2BR NCC-PLPS1-C1 0 23811 -cellosaurus:CVCL_B7BM NCC-PMP1-C1 0 23812 -cellosaurus:CVCL_B3TM NCC-pRMS1-C1 0 23813 -cellosaurus:CVCL_B3TN NCC-pRMS1-X4-C1 0 23814 -cellosaurus:CVCL_U796 NCC-RbC-30 0 23815 -cellosaurus:CVCL_3047 NCC-RbC-39 0 23816 -cellosaurus:CVCL_3048 NCC-RbC-51 0 23817 -cellosaurus:CVCL_8309 NCC-RbC-53 0 23818 -cellosaurus:CVCL_3049 NCC-RbC-54 0 23819 -cellosaurus:CVCL_3050 NCC-RbC-56 0 23820 -cellosaurus:CVCL_3051 NCC-RbC-57 0 23821 -cellosaurus:CVCL_U795 NCC-RbC-58 0 23822 -cellosaurus:CVCL_4072 NCC-RbC-59 0 23823 -cellosaurus:CVCL_4073 NCC-RbC-60 0 23824 -cellosaurus:CVCL_3052 NCC-RbC-67 0 23825 -cellosaurus:CVCL_8143 NCC-RbC-70 0 23826 -cellosaurus:CVCL_4074 NCC-RbC-83 0 23827 -cellosaurus:CVCL_3053 NCC-RbC-92 0 23828 -cellosaurus:CVCL_3054 NCC-RbC-T1 0 23829 -cellosaurus:CVCL_VG70 NCC-SS1-C1 0 23830 -cellosaurus:CVCL_VE84 NCC-SS2-C1 0 23831 -cellosaurus:CVCL_ZC97 NCC-SS3-C1 0 23832 -cellosaurus:CVCL_A6FC NCC-SS4-C1 0 23833 -cellosaurus:CVCL_C1GG NCC-SS5-C1 0 23834 -cellosaurus:CVCL_ZE13 NCC-ssRMS1-C1 0 23835 -cellosaurus:CVCL_A0BR NCC-ssRMS2-C1 0 23836 -cellosaurus:CVCL_3055 NCC-StC-K140 0 23837 -cellosaurus:CVCL_A9YZ NCC-TGCT1-C1 0 23838 -cellosaurus:CVCL_B3TP NCC-UPS1-C1 0 23839 -cellosaurus:CVCL_VR16 NCC-UPS1-X3-C1 0 23840 -cellosaurus:CVCL_RP62 NCC-UPS2-C1 0 23841 -cellosaurus:CVCL_B3RN NCC-UPS3-C1 0 23842 -cellosaurus:CVCL_B6KI NCC-UPS4-C1 0 23843 -cellosaurus:CVCL_X505 NCC010 0 23844 -cellosaurus:CVCL_X506 NCC021 0 23845 -cellosaurus:CVCL_N738 NCE-G 102 0 23846 -cellosaurus:CVCL_N739 NCE-G 111 0 23847 -cellosaurus:CVCL_N740 NCE-G 112 0 23848 -cellosaurus:CVCL_N741 NCE-G 118 0 23849 -cellosaurus:CVCL_N742 NCE-G 120 0 23850 -cellosaurus:CVCL_N743 NCE-G 121 0 23851 -cellosaurus:CVCL_N744 NCE-G 122 0 23852 -cellosaurus:CVCL_N746 NCE-G 124 0 23853 -cellosaurus:CVCL_N747 NCE-G 130 0 23854 -cellosaurus:CVCL_N748 NCE-G 140 0 23855 -cellosaurus:CVCL_N749 NCE-G 141 0 23856 -cellosaurus:CVCL_N750 NCE-G 142 0 23857 -cellosaurus:CVCL_N751 NCE-G 151 0 23858 -cellosaurus:CVCL_N752 NCE-G 167 0 23859 -cellosaurus:CVCL_N753 NCE-G 168 0 23860 -cellosaurus:CVCL_N754 NCE-G 169 0 23861 -cellosaurus:CVCL_N755 NCE-G 195 0 23862 -cellosaurus:CVCL_N723 NCE-G 22 0 23863 -cellosaurus:CVCL_N725 NCE-G 30 0 23864 -cellosaurus:CVCL_N756 NCE-G 350 0 23865 -cellosaurus:CVCL_N726 NCE-G 38 0 23866 -cellosaurus:CVCL_N727 NCE-G 44 0 23867 -cellosaurus:CVCL_N729 NCE-G 59 0 23868 -cellosaurus:CVCL_N730 NCE-G 60 0 23869 -cellosaurus:CVCL_N731 NCE-G 61 0 23870 -cellosaurus:CVCL_N732 NCE-G 62 0 23871 -cellosaurus:CVCL_N733 NCE-G 63 0 23872 -cellosaurus:CVCL_N734 NCE-G 80 0 23873 -cellosaurus:CVCL_N735 NCE-G 84 0 23874 -cellosaurus:CVCL_N736 NCE-G 96 0 23875 -cellosaurus:CVCL_N737 NCE-G 98 0 23876 -cellosaurus:CVCL_S818 NCH125 0 23877 -cellosaurus:CVCL_S819 NCH149 0 23878 -cellosaurus:CVCL_A5HV NCH1681 0 23879 -cellosaurus:CVCL_S820 NCH37 0 23880 -cellosaurus:CVCL_X910 NCH421k 0 23881 -cellosaurus:CVCL_X911 NCH440 0 23882 -cellosaurus:CVCL_X912 NCH441 0 23883 -cellosaurus:CVCL_X944 NCH465 0 23884 -cellosaurus:CVCL_A5HU NCH551b 0 23885 -cellosaurus:CVCL_S821 NCH57 0 23886 -cellosaurus:CVCL_X913 NCH612 0 23887 -cellosaurus:CVCL_A5HS NCH620 0 23888 -cellosaurus:CVCL_X914 NCH644 0 23889 -cellosaurus:CVCL_A5HT NCH645 0 23890 -cellosaurus:CVCL_X915 NCH690 0 23891 -cellosaurus:CVCL_S822 NCH82 0 23892 -cellosaurus:CVCL_S823 NCH89 0 23893 -cellosaurus:CVCL_N841 NCI-EC1 0 23894 -cellosaurus:CVCL_N842 NCI-EC2 0 23895 -cellosaurus:CVCL_M143 NCI-EWS-011 0 23896 -cellosaurus:CVCL_M144 NCI-EWS-021 0 23897 -cellosaurus:CVCL_M145 NCI-EWS-94 0 23898 -cellosaurus:CVCL_M146 NCI-EWS-95 0 23899 -cellosaurus:CVCL_A481 NCI-H1008 0 23900 -cellosaurus:CVCL_A482 NCI-H1011 0 23901 -cellosaurus:CVCL_A469 NCI-H1045 0 23902 -cellosaurus:CVCL_1453 NCI-H1048 0 23903 -cellosaurus:CVCL_A483 NCI-H1059 0 23904 -cellosaurus:CVCL_A484 NCI-H1061 0 23905 -cellosaurus:CVCL_A470 NCI-H1062 0 23906 -cellosaurus:CVCL_A471 NCI-H1086 0 23907 -cellosaurus:CVCL_1454 NCI-H1092 0 23908 -cellosaurus:CVCL_1455 NCI-H1105 0 23909 -cellosaurus:CVCL_A485 NCI-H1112 0 23910 -cellosaurus:CVCL_1456 NCI-H1155 0 23911 -cellosaurus:CVCL_1457 NCI-H1173 0 23912 -cellosaurus:CVCL_1458 NCI-H1184 0 23913 -cellosaurus:CVCL_A486 NCI-H1185 0 23914 -cellosaurus:CVCL_A487 NCI-H123 0 23915 -cellosaurus:CVCL_1459 NCI-H1238 0 23916 -cellosaurus:CVCL_3970 NCI-H1264 0 23917 -cellosaurus:CVCL_1460 NCI-H128 0 23918 -cellosaurus:CVCL_1461 NCI-H1284 0 23919 -cellosaurus:CVCL_1462 NCI-H1304 0 23920 -cellosaurus:CVCL_A488 NCI-H1315 0 23921 -cellosaurus:CVCL_A489 NCI-H1330 0 23922 -cellosaurus:CVCL_A472 NCI-H1339 0 23923 -cellosaurus:CVCL_HA42 NCI-H134 0 23924 -cellosaurus:CVCL_1463 NCI-H1341 0 23925 -cellosaurus:CVCL_1464 NCI-H1355 0 23926 -cellosaurus:CVCL_1465 NCI-H1373 0 23927 -cellosaurus:CVCL_A490 NCI-H1378 0 23928 -cellosaurus:CVCL_1466 NCI-H1385 0 23929 -cellosaurus:CVCL_A491 NCI-H1387 0 23930 -cellosaurus:CVCL_1467 NCI-H1395 0 23931 -cellosaurus:CVCL_JZ80 NCI-H140 0 23932 -cellosaurus:CVCL_1468 NCI-H1404 0 23933 -cellosaurus:CVCL_A492 NCI-H1412 0 23934 -cellosaurus:CVCL_1469 NCI-H1417 0 23935 -cellosaurus:CVCL_1470 NCI-H1435 0 23936 -cellosaurus:CVCL_1471 NCI-H1436 0 23937 -cellosaurus:CVCL_1472 NCI-H1437 0 23938 -cellosaurus:CVCL_A493 NCI-H1440 0 23939 -cellosaurus:CVCL_A494 NCI-H1447 0 23940 -cellosaurus:CVCL_A466 NCI-H1450 0 23941 -cellosaurus:CVCL_A495 NCI-H1451 0 23942 -cellosaurus:CVCL_1473 NCI-H146 0 23943 -cellosaurus:CVCL_A496 NCI-H1466 0 23944 -cellosaurus:CVCL_A497 NCI-H1498 0 23945 -cellosaurus:CVCL_A498 NCI-H1512 0 23946 -cellosaurus:CVCL_4363 NCI-H1514 0 23947 -cellosaurus:CVCL_1474 NCI-H1522 0 23948 -cellosaurus:CVCL_A499 NCI-H1548 0 23949 -cellosaurus:CVCL_1475 NCI-H1563 0 23950 -cellosaurus:CVCL_1476 NCI-H1568 0 23951 -cellosaurus:CVCL_A500 NCI-H1570 0 23952 -cellosaurus:CVCL_1478 NCI-H1573 0 23953 -cellosaurus:CVCL_1479 NCI-H1581 0 23954 -cellosaurus:CVCL_A501 NCI-H1592 0 23955 -cellosaurus:CVCL_A467 NCI-H1607 0 23956 -cellosaurus:CVCL_A502 NCI-H1608 0 23957 -cellosaurus:CVCL_1480 NCI-H1618 0 23958 -cellosaurus:CVCL_4364 NCI-H1622 0 23959 -cellosaurus:CVCL_1481 NCI-H1623 0 23960 -cellosaurus:CVCL_A503 NCI-H1628 0 23961 -cellosaurus:CVCL_1482 NCI-H1648 0 23962 -cellosaurus:CVCL_1484 NCI-H1651 0 23963 -cellosaurus:CVCL_A504 NCI-H1652 0 23964 -cellosaurus:CVCL_1485 NCI-H1666 0 23965 -cellosaurus:CVCL_A505 NCI-H1670 0 23966 -cellosaurus:CVCL_1486 NCI-H1672 0 23967 -cellosaurus:CVCL_3972 NCI-H1684 0 23968 -cellosaurus:CVCL_1487 NCI-H1688 0 23969 -cellosaurus:CVCL_1488 NCI-H1693 0 23970 -cellosaurus:CVCL_1489 NCI-H1694 0 23971 -cellosaurus:CVCL_1490 NCI-H1703 0 23972 -cellosaurus:CVCL_A506 NCI-H1710 0 23973 -cellosaurus:CVCL_A507 NCI-H1717 0 23974 -cellosaurus:CVCL_A508 NCI-H1725 0 23975 -cellosaurus:CVCL_A476 NCI-H1726 0 23976 -cellosaurus:CVCL_1491 NCI-H1734 0 23977 -cellosaurus:CVCL_JZ17 NCI-H175 0 23978 -cellosaurus:CVCL_A509 NCI-H1769 0 23979 -cellosaurus:CVCL_1493 NCI-H1770 0 23980 -cellosaurus:CVCL_A510 NCI-H1788 0 23981 -cellosaurus:CVCL_1495 NCI-H1792 0 23982 -cellosaurus:CVCL_1496 NCI-H1793 0 23983 -cellosaurus:CVCL_1497 NCI-H1819 0 23984 -cellosaurus:CVCL_A511 NCI-H182 0 23985 -cellosaurus:CVCL_A512 NCI-H1824 0 23986 -cellosaurus:CVCL_1498 NCI-H1836 0 23987 -cellosaurus:CVCL_1499 NCI-H1838 0 23988 -cellosaurus:CVCL_1500 NCI-H1869 0 23989 -cellosaurus:CVCL_1501 NCI-H187 0 23990 -cellosaurus:CVCL_1502 NCI-H1870 0 23991 -cellosaurus:CVCL_1503 NCI-H1876 0 23992 -cellosaurus:CVCL_A513 NCI-H1881 0 23993 -cellosaurus:CVCL_1504 NCI-H1882 0 23994 -cellosaurus:CVCL_A514 NCI-H1904 0 23995 -cellosaurus:CVCL_1505 NCI-H1915 0 23996 -cellosaurus:CVCL_1506 NCI-H1926 0 23997 -cellosaurus:CVCL_1507 NCI-H1930 0 23998 -cellosaurus:CVCL_A515 NCI-H1934 0 23999 -cellosaurus:CVCL_1508 NCI-H1944 0 24000 -cellosaurus:CVCL_A516 NCI-H1954 0 24001 -cellosaurus:CVCL_1509 NCI-H196 0 24002 -cellosaurus:CVCL_1510 NCI-H1963 0 24003 -cellosaurus:CVCL_A517 NCI-H1968 0 24004 -cellosaurus:CVCL_A518 NCI-H1971 0 24005 -cellosaurus:CVCL_A519 NCI-H1974 0 24006 -cellosaurus:CVCL_A520 NCI-H1977 0 24007 -cellosaurus:CVCL_1512 NCI-H1993 0 24008 -cellosaurus:CVCL_1513 NCI-H1994 0 24009 -cellosaurus:CVCL_WS70 NCI-H2004RT 0 24010 -cellosaurus:CVCL_A521 NCI-H2007 0 24011 -cellosaurus:CVCL_1515 NCI-H2023 0 24012 -cellosaurus:CVCL_A522 NCI-H2028 0 24013 -cellosaurus:CVCL_1516 NCI-H2029 0 24014 -cellosaurus:CVCL_1518 NCI-H2052 0 24015 -cellosaurus:CVCL_A523 NCI-H2058 0 24016 -cellosaurus:CVCL_1519 NCI-H2059 0 24017 -cellosaurus:CVCL_1520 NCI-H2066 0 24018 -cellosaurus:CVCL_1521 NCI-H2073 0 24019 -cellosaurus:CVCL_5157 NCI-H2077 0 24020 -cellosaurus:CVCL_1522 NCI-H2081 0 24021 -cellosaurus:CVCL_1523 NCI-H2085 0 24022 -cellosaurus:CVCL_A524 NCI-H2086 0 24023 -cellosaurus:CVCL_1526 NCI-H2106 0 24024 -cellosaurus:CVCL_1527 NCI-H2107 0 24025 -cellosaurus:CVCL_1528 NCI-H2108 0 24026 -cellosaurus:CVCL_1529 NCI-H211 0 24027 -cellosaurus:CVCL_1530 NCI-H2110 0 24028 -cellosaurus:CVCL_E104 NCI-H2115 0 24029 -cellosaurus:CVCL_1531 NCI-H2122 0 24030 -cellosaurus:CVCL_1532 NCI-H2126 0 24031 -cellosaurus:CVCL_A525 NCI-H2127 0 24032 -cellosaurus:CVCL_1533 NCI-H2135 0 24033 -cellosaurus:CVCL_1534 NCI-H2141 0 24034 -cellosaurus:CVCL_A526 NCI-H2145 0 24035 -cellosaurus:CVCL_1535 NCI-H2170 0 24036 -cellosaurus:CVCL_1536 NCI-H2171 0 24037 -cellosaurus:CVCL_1537 NCI-H2172 0 24038 -cellosaurus:CVCL_1538 NCI-H2195 0 24039 -cellosaurus:CVCL_1539 NCI-H2196 0 24040 -cellosaurus:CVCL_1540 NCI-H2198 0 24041 -cellosaurus:CVCL_1541 NCI-H220 0 24042 -cellosaurus:CVCL_1542 NCI-H2227 0 24043 -cellosaurus:CVCL_A527 NCI-H2250 0 24044 -cellosaurus:CVCL_A528 NCI-H2258 0 24045 -cellosaurus:CVCL_9642 NCI-H2279 0 24046 -cellosaurus:CVCL_S142 NCI-H2280 0 24047 -cellosaurus:CVCL_9643 NCI-H2282 0 24048 -cellosaurus:CVCL_A529 NCI-H2284 0 24049 -cellosaurus:CVCL_1545 NCI-H2286 0 24050 -cellosaurus:CVCL_9644 NCI-H2287 0 24051 -cellosaurus:CVCL_1546 NCI-H2291 0 24052 -cellosaurus:CVCL_1548 NCI-H2330 0 24053 -cellosaurus:CVCL_A530 NCI-H2332 0 24054 -cellosaurus:CVCL_1549 NCI-H2342 0 24055 -cellosaurus:CVCL_1550 NCI-H2347 0 24056 -cellosaurus:CVCL_A531 NCI-H2365 0 24057 -cellosaurus:CVCL_A532 NCI-H2369 0 24058 -cellosaurus:CVCL_A533 NCI-H2373 0 24059 -cellosaurus:CVCL_A534 NCI-H2380 0 24060 -cellosaurus:CVCL_1551 NCI-H2405 0 24061 -cellosaurus:CVCL_A535 NCI-H2409 0 24062 -cellosaurus:CVCL_Y288 NCI-H2427 0 24063 -cellosaurus:CVCL_1552 NCI-H2444 0 24064 -cellosaurus:CVCL_1553 NCI-H2452 0 24065 -cellosaurus:CVCL_A536 NCI-H2461 0 24066 -cellosaurus:CVCL_1554 NCI-H250 0 24067 -cellosaurus:CVCL_A538 NCI-H2509 0 24068 -cellosaurus:CVCL_A539 NCI-H2527 0 24069 -cellosaurus:CVCL_A540 NCI-H2540 0 24070 -cellosaurus:CVCL_A541 NCI-H2552 0 24071 -cellosaurus:CVCL_X977 NCI-H2562 0 24072 -cellosaurus:CVCL_A542 NCI-H2580 0 24073 -cellosaurus:CVCL_A543 NCI-H2591 0 24074 -cellosaurus:CVCL_A544 NCI-H2594 0 24075 -cellosaurus:CVCL_A545 NCI-H2595 0 24076 -cellosaurus:CVCL_A546 NCI-H2596 0 24077 -cellosaurus:CVCL_A547 NCI-H2597 0 24078 -cellosaurus:CVCL_A548 NCI-H2600 0 24079 -cellosaurus:CVCL_A549 NCI-H2618 0 24080 -cellosaurus:CVCL_A550 NCI-H2679 0 24081 -cellosaurus:CVCL_A551 NCI-H2691 0 24082 -cellosaurus:CVCL_A552 NCI-H2706 0 24083 -cellosaurus:CVCL_Y289 NCI-H2712 0 24084 -cellosaurus:CVCL_U994 NCI-H2722 0 24085 -cellosaurus:CVCL_U995 NCI-H2731 0 24086 -cellosaurus:CVCL_U996 NCI-H2795 0 24087 -cellosaurus:CVCL_1555 NCI-H28 0 24088 -cellosaurus:CVCL_U997 NCI-H2803 0 24089 -cellosaurus:CVCL_U998 NCI-H2804 0 24090 -cellosaurus:CVCL_U999 NCI-H2810 0 24091 -cellosaurus:CVCL_V000 NCI-H2818 0 24092 -cellosaurus:CVCL_A553 NCI-H285 0 24093 -cellosaurus:CVCL_Y290 NCI-H2850 0 24094 -cellosaurus:CVCL_V001 NCI-H2869 0 24095 -cellosaurus:CVCL_5158 NCI-H2882 0 24096 -cellosaurus:CVCL_5159 NCI-H2887 0 24097 -cellosaurus:CVCL_A554 NCI-H289 0 24098 -cellosaurus:CVCL_A555 NCI-H290 0 24099 -cellosaurus:CVCL_Y291 NCI-H2925 0 24100 -cellosaurus:CVCL_E105 NCI-H2973 0 24101 -cellosaurus:CVCL_A556 NCI-H298 0 24102 -cellosaurus:CVCL_Y292 NCI-H3026 0 24103 -cellosaurus:CVCL_Y293 NCI-H3030 0 24104 -cellosaurus:CVCL_Y294 NCI-H3072 0 24105 -cellosaurus:CVCL_A464 NCI-H3118 0 24106 -cellosaurus:CVCL_Y295 NCI-H3123 0 24107 -cellosaurus:CVCL_X979 NCI-H3166 0 24108 -cellosaurus:CVCL_X978 NCI-H3211 0 24109 -cellosaurus:CVCL_3953 NCI-H324 0 24110 -cellosaurus:CVCL_X980 NCI-H3282 0 24111 -cellosaurus:CVCL_1558 NCI-H345 0 24112 -cellosaurus:CVCL_A557 NCI-H360 0 24113 -cellosaurus:CVCL_A558 NCI-H369 0 24114 -cellosaurus:CVCL_A559 NCI-H372 0 24115 -cellosaurus:CVCL_1560 NCI-H378 0 24116 -cellosaurus:CVCL_A560 NCI-H379 0 24117 -cellosaurus:CVCL_A563 NCI-H432 0 24118 -cellosaurus:CVCL_A564 NCI-H433 0 24119 -cellosaurus:CVCL_A565 NCI-H449 0 24120 -cellosaurus:CVCL_A566 NCI-H450 0 24121 -cellosaurus:CVCL_A567 NCI-H462 0 24122 -cellosaurus:CVCL_A568 NCI-H463 0 24123 -cellosaurus:CVCL_A569 NCI-H478 0 24124 -cellosaurus:CVCL_1563 NCI-H498 0 24125 -cellosaurus:CVCL_1565 NCI-H510A 0 24126 -cellosaurus:CVCL_1566 NCI-H520 0 24127 -cellosaurus:CVCL_1567 NCI-H522 0 24128 -cellosaurus:CVCL_1569 NCI-H526 0 24129 -cellosaurus:CVCL_1570 NCI-H548 0 24130 -cellosaurus:CVCL_A571 NCI-H568 0 24131 -cellosaurus:CVCL_A572 NCI-H571 0 24132 -cellosaurus:CVCL_A573 NCI-H578 0 24133 -cellosaurus:CVCL_A574 NCI-H580 0 24134 -cellosaurus:CVCL_1571 NCI-H596 0 24135 -cellosaurus:CVCL_A575 NCI-H606 0 24136 -cellosaurus:CVCL_A576 NCI-H615 0 24137 -cellosaurus:CVCL_A577 NCI-H618 0 24138 -cellosaurus:CVCL_A578 NCI-H620 0 24139 -cellosaurus:CVCL_1573 NCI-H64 0 24140 -cellosaurus:CVCL_A579 NCI-H640 0 24141 -cellosaurus:CVCL_1574 NCI-H647 0 24142 -cellosaurus:CVCL_1576 NCI-H660 0 24143 -cellosaurus:CVCL_1577 NCI-H661 0 24144 -cellosaurus:CVCL_1578 NCI-H676B 0 24145 -cellosaurus:CVCL_A580 NCI-H678 0 24146 -cellosaurus:CVCL_A581 NCI-H679 0 24147 -cellosaurus:CVCL_9980 NCI-H684 0 24148 -cellosaurus:CVCL_A582 NCI-H689 0 24149 -cellosaurus:CVCL_1580 NCI-H711 0 24150 -cellosaurus:CVCL_1581 NCI-H716 0 24151 -cellosaurus:CVCL_1582 NCI-H719 0 24152 -cellosaurus:CVCL_1583 NCI-H720 0 24153 -cellosaurus:CVCL_A465 NCI-H726 0 24154 -cellosaurus:CVCL_1584 NCI-H727 0 24155 -cellosaurus:CVCL_1585 NCI-H735 0 24156 -cellosaurus:CVCL_4365 NCI-H738 0 24157 -cellosaurus:CVCL_1586 NCI-H740 0 24158 -cellosaurus:CVCL_9981 NCI-H742 0 24159 -cellosaurus:CVCL_1587 NCI-H747 0 24160 -cellosaurus:CVCL_1588 NCI-H748 0 24161 -cellosaurus:CVCL_9982 NCI-H768 0 24162 -cellosaurus:CVCL_1589 NCI-H774 0 24163 -cellosaurus:CVCL_A583 NCI-H792 0 24164 -cellosaurus:CVCL_1590 NCI-H810 0 24165 -cellosaurus:CVCL_1592 NCI-H820 0 24166 -cellosaurus:CVCL_1593 NCI-H835 0 24167 -cellosaurus:CVCL_1595 NCI-H841 0 24168 -cellosaurus:CVCL_1596 NCI-H847 0 24169 -cellosaurus:CVCL_A584 NCI-H854 0 24170 -cellosaurus:CVCL_A585 NCI-H862 0 24171 -cellosaurus:CVCL_1597 NCI-H865 0 24172 -cellosaurus:CVCL_1598 NCI-H889 0 24173 -cellosaurus:CVCL_A586 NCI-H890 0 24174 -cellosaurus:CVCL_1599 NCI-H920 0 24175 -cellosaurus:CVCL_A587 NCI-H930 0 24176 -cellosaurus:CVCL_9983 NCI-H958 0 24177 -cellosaurus:CVCL_A588 NCI-H962 0 24178 -cellosaurus:CVCL_1601 NCI-H969 0 24179 -cellosaurus:CVCL_A589 NCI-N177 0 24180 -cellosaurus:CVCL_D056 NCI-N179 0 24181 -cellosaurus:CVCL_D057 NCI-N230 0 24182 -cellosaurus:CVCL_A561 NCI-N390 0 24183 -cellosaurus:CVCL_A562 NCI-N408 0 24184 -cellosaurus:CVCL_C2W0 NCI-N464 0 24185 -cellosaurus:CVCL_A591 NCI-N691 0 24186 -cellosaurus:CVCL_Z438 NCI-N857 0 24187 -cellosaurus:CVCL_3043 NCO2 0 24188 -cellosaurus:CVCL_IR52 ncPNET1 0 24189 -cellosaurus:CVCL_F677 NCR-EW1 0 24190 -cellosaurus:CVCL_F678 NCR-EW2 0 24191 -cellosaurus:CVCL_F679 NCR-EW3 0 24192 -cellosaurus:CVCL_F680 NCR-EW4 0 24193 -cellosaurus:CVCL_3059 NCR-G1 0 24194 -cellosaurus:CVCL_3060 NCR-G2 0 24195 -cellosaurus:CVCL_3061 NCR-G3 0 24196 -cellosaurus:CVCL_3062 NCR-G4 0 24197 -cellosaurus:CVCL_W451 NCS-1 0 24198 -cellosaurus:CVCL_0G11 NCU-L-1 0 24199 -cellosaurus:CVCL_0G12 NCU-L-3 0 24200 -cellosaurus:CVCL_0G13 NCU-L-4 0 24201 -cellosaurus:CVCL_M492 NCU-MM-1 0 24202 -cellosaurus:CVCL_M507 NCU-MM-2 0 24203 -cellosaurus:CVCL_M508 NCU-MM-3 0 24204 -cellosaurus:CVCL_0B85 ND238 0 24205 -cellosaurus:CVCL_EJ23 NDCS-1 0 24206 -cellosaurus:CVCL_M831 NDDLS-1 0 24207 -cellosaurus:CVCL_AS96 NEC-DUE1 0 24208 -cellosaurus:CVCL_AS97 NEC-DUE2 0 24209 -cellosaurus:CVCL_UD77 NEC-DUE3 0 24210 -cellosaurus:CVCL_3070 NEC14 0 24211 -cellosaurus:CVCL_3929 NEC15 0 24212 -cellosaurus:CVCL_L212 NECS-L 0 24213 -cellosaurus:CVCL_L213 NECS-P 0 24214 -cellosaurus:CVCL_ZU75 Nelson 0 24215 -cellosaurus:CVCL_IT35 NEM157 0 24216 -cellosaurus:CVCL_IT36 NEM163 0 24217 -cellosaurus:CVCL_IT37 NEM165 0 24218 -cellosaurus:CVCL_IT38 NEM168 0 24219 -cellosaurus:CVCL_1E49 Nemo-1 0 24220 -cellosaurus:CVCL_IR49 nEPN1 0 24221 -cellosaurus:CVCL_IR50 nEPN2 0 24222 -cellosaurus:CVCL_IS66 NEPS 0 24223 -cellosaurus:CVCL_U800 Newton 0 24224 -cellosaurus:CVCL_M893 NEYS 0 24225 -cellosaurus:CVCL_W770 NF 0 24226 -cellosaurus:CVCL_1Y69 NFS-1 0 24227 -cellosaurus:CVCL_W494 NFS-2 0 24228 -cellosaurus:CVCL_UF75 NGP-127 0 24229 -cellosaurus:CVCL_A5ZJ NH 0 24230 -cellosaurus:CVCL_1605 NH-12 0 24231 -cellosaurus:CVCL_1606 NH-6 0 24232 -cellosaurus:CVCL_LK79 NH-AR 0 24233 -cellosaurus:CVCL_VG80 NHBL2 0 24234 -cellosaurus:CVCL_Z877 NHIK 3016 0 24235 -cellosaurus:CVCL_Z878 NHIK 3017 0 24236 -cellosaurus:CVCL_U089 NHIK 3025 0 24237 -cellosaurus:CVCL_Z879 NHIK 3043 0 24238 -cellosaurus:CVCL_5344 NIM-1 0 24239 -cellosaurus:CVCL_U921 NIPBC-1 0 24240 -cellosaurus:CVCL_U922 NIPBC-2 0 24241 -cellosaurus:CVCL_6005 NIS-G 0 24242 -cellosaurus:CVCL_L113 NJB 0 24243 -cellosaurus:CVCL_3073 NJG 0 24244 -cellosaurus:CVCL_8461 NK-YS 0 24245 -cellosaurus:CVCL_WN95 NK101 0 24246 -cellosaurus:CVCL_3919 NKB-1 0 24247 -cellosaurus:CVCL_LI44 NKI-1 0 24248 -cellosaurus:CVCL_LI43 NKI-10 0 24249 -cellosaurus:CVCL_LI41 NKI-2 0 24250 -cellosaurus:CVCL_LI47 NKI-3 0 24251 -cellosaurus:CVCL_DG47 NKI-4 0 24252 -cellosaurus:CVCL_LI48 NKI-6 0 24253 -cellosaurus:CVCL_LI45 NKI-7 0 24254 -cellosaurus:CVCL_LI42 NKI-8 0 24255 -cellosaurus:CVCL_LI49 NKI-SC173 0 24256 -cellosaurus:CVCL_LI50 NKI-SC179 0 24257 -cellosaurus:CVCL_G365 NKK1 0 24258 -cellosaurus:CVCL_0466 NKL 0 24259 -cellosaurus:CVCL_1607 NKM-1 0 24260 -cellosaurus:CVCL_WM65 NL-AC1 0 24261 -cellosaurus:CVCL_WM63 NL-SCLC2 0 24262 -cellosaurus:CVCL_WM64 NL-SCLC3 0 24263 -cellosaurus:CVCL_W755 NM008 0 24264 -cellosaurus:CVCL_W756 NM1007 0 24265 -cellosaurus:CVCL_W757 NM112 0 24266 -cellosaurus:CVCL_W758 NM123 0 24267 -cellosaurus:CVCL_W759 NM16 0 24268 -cellosaurus:CVCL_W760 NM176 0 24269 -cellosaurus:CVCL_W761 NM177 0 24270 -cellosaurus:CVCL_W762 NM179 0 24271 -cellosaurus:CVCL_W763 NM182 0 24272 -cellosaurus:CVCL_W764 NM39 0 24273 -cellosaurus:CVCL_W765 NM47 0 24274 -cellosaurus:CVCL_W286 NM78-AM 0 24275 -cellosaurus:CVCL_W287 NM78-MM 0 24276 -cellosaurus:CVCL_W766 NM88 0 24277 -cellosaurus:CVCL_1608 NMC-G1 0 24278 -cellosaurus:CVCL_JZ68 NMC-G2 0 24279 -cellosaurus:CVCL_AT70 NMFH-1 [JCRB] 0 24280 -cellosaurus:CVCL_4661 NMFH-1 [RCB] 0 24281 -cellosaurus:CVCL_4W18 NMFH-2 0 24282 -cellosaurus:CVCL_4662 NMS-2 0 24283 -cellosaurus:CVCL_L810 NMS-2PC 0 24284 -cellosaurus:CVCL_M832 NMSG 10 0 24285 -cellosaurus:CVCL_A1IX NN [Human astrocytoma Bethesda] 0 24286 -cellosaurus:CVCL_Z600 NN [Human glioblastoma Arizona] 0 24287 -cellosaurus:CVCL_Z601 NNR 0 24288 -cellosaurus:CVCL_VJ77 NO3-AC 0 24289 -cellosaurus:CVCL_VJ78 NO3-NS 0 24290 -cellosaurus:CVCL_2658 NO36 0 24291 -cellosaurus:CVCL_VJ79 NO4-AC 0 24292 -cellosaurus:CVCL_VJ80 NO6-NS 0 24293 -cellosaurus:CVCL_W495 NOC-S 0 24294 -cellosaurus:CVCL_W496 NOC-Ts 0 24295 -cellosaurus:CVCL_GQ01 NOCC 0 24296 -cellosaurus:CVCL_VQ04 NOCI 16 0 24297 -cellosaurus:CVCL_VQ29 NOCS-1 0 24298 -cellosaurus:CVCL_W381 NOE 0 24299 -cellosaurus:CVCL_Y587 NOL-3 0 24300 -cellosaurus:CVCL_IR51 nOLIG1 0 24301 -cellosaurus:CVCL_RN35 NOM1 0 24302 -cellosaurus:CVCL_L038 NOMH-1 0 24303 -cellosaurus:CVCL_M503 NOP-1 0 24304 -cellosaurus:CVCL_M502 NOP-2 0 24305 -cellosaurus:CVCL_4716 NOR-P1 0 24306 -cellosaurus:CVCL_M837 NOS-1 [Human HNSCC] 0 24307 -cellosaurus:CVCL_4663 NOS-10 0 24308 -cellosaurus:CVCL_3351 NOS-2 0 24309 -cellosaurus:CVCL_RN32 NOS1 0 24310 -cellosaurus:CVCL_4464 NOS4 0 24311 -cellosaurus:CVCL_A5GW NOSCC1 0 24312 -cellosaurus:CVCL_S912 NOU-1 0 24313 -cellosaurus:CVCL_0P31 NOY2 0 24314 -cellosaurus:CVCL_3079 NOZ 0 24315 -cellosaurus:CVCL_1R16 NP-3 0 24316 -cellosaurus:CVCL_1R17 NP-5 0 24317 -cellosaurus:CVCL_4W66 NP-8 0 24318 -cellosaurus:CVCL_A5WV NPC-204 0 24319 -cellosaurus:CVCL_6009 NPC-TW02 0 24320 -cellosaurus:CVCL_6011 NPC-TW04 0 24321 -cellosaurus:CVCL_6012 NPC-TW05 0 24322 -cellosaurus:CVCL_6013 NPC-TW06 0 24323 -cellosaurus:CVCL_6014 NPC-TW07 0 24324 -cellosaurus:CVCL_6015 NPC-TW08 0 24325 -cellosaurus:CVCL_6016 NPC-TW09 0 24326 -cellosaurus:CVCL_A5WW NPC-TY861 0 24327 -cellosaurus:CVCL_7084 NPC/HK1 0 24328 -cellosaurus:CVCL_UH63 NPC38 0 24329 -cellosaurus:CVCL_UH64 NPC43 0 24330 -cellosaurus:CVCL_UH65 NPC53 0 24331 -cellosaurus:CVCL_WI00 NRC-12 0 24332 -cellosaurus:CVCL_U280 NRCC 0 24333 -cellosaurus:CVCL_4871 NRS-1 0 24334 -cellosaurus:CVCL_G372 NS-8 0 24335 -cellosaurus:CVCL_S966 NS-Meg 0 24336 -cellosaurus:CVCL_X542 NSK-RC 0 24337 -cellosaurus:CVCL_X338 NT-1 [Human leukemia] 0 24338 -cellosaurus:CVCL_GZ02 NT-1 [Human tongue SCC] 0 24339 -cellosaurus:CVCL_GZ03 NT-2 0 24340 -cellosaurus:CVCL_VG81 NT-3 0 24341 -cellosaurus:CVCL_9713 NT-68 0 24342 -cellosaurus:CVCL_E328 NT-8e 0 24343 -cellosaurus:CVCL_WT16 NTS-1 0 24344 -cellosaurus:CVCL_WT17 NTS-2 0 24345 -cellosaurus:CVCL_WT18 NTS-3 0 24346 -cellosaurus:CVCL_M031 NTU-G 0 24347 -cellosaurus:CVCL_UH56 NTU-h3 0 24348 -cellosaurus:CVCL_WI75 NU 0 24349 -cellosaurus:CVCL_Y104 NU 2-26 0 24350 -cellosaurus:CVCL_C249 NU-AmB-1 0 24351 -cellosaurus:CVCL_1876 NU-DHL-1 0 24352 -cellosaurus:CVCL_1877 NU-DUL-1 0 24353 -cellosaurus:CVCL_5G81 NUB-20 0 24354 -cellosaurus:CVCL_9896 NUB-6 0 24355 -cellosaurus:CVCL_9897 NUB-7 0 24356 -cellosaurus:CVCL_M685 NUC-1 [Human choriocarcinoma] 0 24357 -cellosaurus:CVCL_VN96 NUCOLL43 0 24358 -cellosaurus:CVCL_YJ45 NUE-1 0 24359 -cellosaurus:CVCL_1611 NUGC-2 0 24360 -cellosaurus:CVCL_A5XB NULC-1 0 24361 -cellosaurus:CVCL_A5XC NULC-2 0 24362 -cellosaurus:CVCL_1Q60 Nur-1 0 24363 -cellosaurus:CVCL_WI02 NUT 0 24364 -cellosaurus:CVCL_L423 NUTLC-1 0 24365 -cellosaurus:CVCL_L424 NUTLC-2 0 24366 -cellosaurus:CVCL_L425 NUTLC-3 0 24367 -cellosaurus:CVCL_L427 NUTLC-5 0 24368 -cellosaurus:CVCL_D658 NUTOS 0 24369 -cellosaurus:CVCL_V411 NUZ 0 24370 -cellosaurus:CVCL_S590 NW1539 0 24371 -cellosaurus:CVCL_S591 NW38 0 24372 -cellosaurus:CVCL_S592 NW450 0 24373 -cellosaurus:CVCL_S589 NW624 0 24374 -cellosaurus:CVCL_S593 NW726 0 24375 -cellosaurus:CVCL_S594 NW745 0 24376 -cellosaurus:CVCL_1613 NY 0 24377 -cellosaurus:CVCL_IU24 Nyevu 0 24378 -cellosaurus:CVCL_9278 NYGM 0 24379 -cellosaurus:CVCL_T592 NYU08-175 0 24380 -cellosaurus:CVCL_T593 NYU09-085 0 24381 -cellosaurus:CVCL_T594 NYU09-203 0 24382 -cellosaurus:CVCL_T595 NYU10-040 0 24383 -cellosaurus:CVCL_T596 NYU10-230 0 24384 -cellosaurus:CVCL_D815 NZM001 0 24385 -cellosaurus:CVCL_D823 NZM002 0 24386 -cellosaurus:CVCL_D828 NZM003 0 24387 -cellosaurus:CVCL_D831 NZM004 0 24388 -cellosaurus:CVCL_D837 NZM005 0 24389 -cellosaurus:CVCL_D842 NZM006 0 24390 -cellosaurus:CVCL_D846 NZM008 0 24391 -cellosaurus:CVCL_D847 NZM009 0 24392 -cellosaurus:CVCL_D816 NZM010 0 24393 -cellosaurus:CVCL_D817 NZM011 0 24394 -cellosaurus:CVCL_D818 NZM012 0 24395 -cellosaurus:CVCL_D819 NZM013 0 24396 -cellosaurus:CVCL_D820 NZM014 0 24397 -cellosaurus:CVCL_D821 NZM015 0 24398 -cellosaurus:CVCL_S436 NZM016 0 24399 -cellosaurus:CVCL_S437 NZM017 0 24400 -cellosaurus:CVCL_S438 NZM018 0 24401 -cellosaurus:CVCL_D822 NZM019 0 24402 -cellosaurus:CVCL_D824 NZM020 0 24403 -cellosaurus:CVCL_S435 NZM021 0 24404 -cellosaurus:CVCL_D825 NZM022 0 24405 -cellosaurus:CVCL_D826 NZM023 0 24406 -cellosaurus:CVCL_D827 NZM024 0 24407 -cellosaurus:CVCL_S430 NZM025 0 24408 -cellosaurus:CVCL_S431 NZM026 0 24409 -cellosaurus:CVCL_S432 NZM027 0 24410 -cellosaurus:CVCL_S433 NZM028 0 24411 -cellosaurus:CVCL_S434 NZM029 0 24412 -cellosaurus:CVCL_D829 NZM030 0 24413 -cellosaurus:CVCL_S439 NZM031 0 24414 -cellosaurus:CVCL_0D28 NZM032 0 24415 -cellosaurus:CVCL_S440 NZM033 0 24416 -cellosaurus:CVCL_D830 NZM034 0 24417 -cellosaurus:CVCL_S427 NZM035 0 24418 -cellosaurus:CVCL_S428 NZM036 0 24419 -cellosaurus:CVCL_S449 NZM037 0 24420 -cellosaurus:CVCL_S450 NZM038 0 24421 -cellosaurus:CVCL_S429 NZM039 0 24422 -cellosaurus:CVCL_D832 NZM040 0 24423 -cellosaurus:CVCL_S426 NZM041 0 24424 -cellosaurus:CVCL_D833 NZM042 0 24425 -cellosaurus:CVCL_D834 NZM043 0 24426 -cellosaurus:CVCL_S425 NZM044 0 24427 -cellosaurus:CVCL_D835 NZM045 0 24428 -cellosaurus:CVCL_D836 NZM046 0 24429 -cellosaurus:CVCL_S424 NZM047 0 24430 -cellosaurus:CVCL_S423 NZM048 0 24431 -cellosaurus:CVCL_S422 NZM049 0 24432 -cellosaurus:CVCL_S421 NZM050 0 24433 -cellosaurus:CVCL_S420 NZM051 0 24434 -cellosaurus:CVCL_D838 NZM052 0 24435 -cellosaurus:CVCL_D839 NZM053 0 24436 -cellosaurus:CVCL_0D29 NZM054 0 24437 -cellosaurus:CVCL_S419 NZM055 0 24438 -cellosaurus:CVCL_S418 NZM056 0 24439 -cellosaurus:CVCL_D840 NZM057 0 24440 -cellosaurus:CVCL_D841 NZM058 0 24441 -cellosaurus:CVCL_0B54 NZM059 0 24442 -cellosaurus:CVCL_S416 NZM060 0 24443 -cellosaurus:CVCL_S417 NZM061 0 24444 -cellosaurus:CVCL_0D26 NZM062 0 24445 -cellosaurus:CVCL_S441 NZM063 0 24446 -cellosaurus:CVCL_0D27 NZM064 0 24447 -cellosaurus:CVCL_0D30 NZM065 0 24448 -cellosaurus:CVCL_0D31 NZM066 0 24449 -cellosaurus:CVCL_0D32 NZM067 0 24450 -cellosaurus:CVCL_0D33 NZM068 0 24451 -cellosaurus:CVCL_0D34 NZM069 0 24452 -cellosaurus:CVCL_0D35 NZM070 0 24453 -cellosaurus:CVCL_0C85 NZM071 0 24454 -cellosaurus:CVCL_0D36 NZM072 0 24455 -cellosaurus:CVCL_0D37 NZM073 0 24456 -cellosaurus:CVCL_0D38 NZM074 0 24457 -cellosaurus:CVCL_0D39 NZM075 0 24458 -cellosaurus:CVCL_0B51 NZM076 0 24459 -cellosaurus:CVCL_0D40 NZM077 0 24460 -cellosaurus:CVCL_0D41 NZM078 0 24461 -cellosaurus:CVCL_0D42 NZM079 0 24462 -cellosaurus:CVCL_0D43 NZM080 0 24463 -cellosaurus:CVCL_0D44 NZM081 0 24464 -cellosaurus:CVCL_0B55 NZM082 0 24465 -cellosaurus:CVCL_0D45 NZM083 0 24466 -cellosaurus:CVCL_0D46 NZM084 0 24467 -cellosaurus:CVCL_0B56 NZM085 0 24468 -cellosaurus:CVCL_0B52 NZM086 0 24469 -cellosaurus:CVCL_0D47 NZM087 0 24470 -cellosaurus:CVCL_0D48 NZM088 0 24471 -cellosaurus:CVCL_0D49 NZM089 0 24472 -cellosaurus:CVCL_0D50 NZM090 0 24473 -cellosaurus:CVCL_0D51 NZM091 0 24474 -cellosaurus:CVCL_0D52 NZM092 0 24475 -cellosaurus:CVCL_0D53 NZM093 0 24476 -cellosaurus:CVCL_0D54 NZM094 0 24477 -cellosaurus:CVCL_0D55 NZM095 0 24478 -cellosaurus:CVCL_0D56 NZM096 0 24479 -cellosaurus:CVCL_0D57 NZM097 0 24480 -cellosaurus:CVCL_0D58 NZM098 0 24481 -cellosaurus:CVCL_0D59 NZM099 0 24482 -cellosaurus:CVCL_0B53 NZM100 0 24483 -cellosaurus:CVCL_0D60 NZM101 0 24484 -cellosaurus:CVCL_0D61 NZM102 0 24485 -cellosaurus:CVCL_0D62 NZM103 0 24486 -cellosaurus:CVCL_0D63 NZM104 0 24487 -cellosaurus:CVCL_0D64 NZM105 0 24488 -cellosaurus:CVCL_0D65 NZM106 0 24489 -cellosaurus:CVCL_D811 NZOV1 0 24490 -cellosaurus:CVCL_D814 NZOV10 0 24491 -cellosaurus:CVCL_D810 NZOV11 0 24492 -cellosaurus:CVCL_LJ77 NZOV13 0 24493 -cellosaurus:CVCL_D812 NZOV2 0 24494 -cellosaurus:CVCL_LJ74 NZOV4 0 24495 -cellosaurus:CVCL_LJ75 NZOV5 0 24496 -cellosaurus:CVCL_LJ76 NZOV7 0 24497 -cellosaurus:CVCL_D813 NZOV8 0 24498 -cellosaurus:CVCL_LJ73 NZOV9 0 24499 -cellosaurus:CVCL_W083 O24B 0 24500 -cellosaurus:CVCL_2249 OACM4.1 C 0 24501 -cellosaurus:CVCL_1843 OACP4 C 0 24502 -cellosaurus:CVCL_Z080 OAD2 0 24503 -cellosaurus:CVCL_UZ64 OAL-1 0 24504 -cellosaurus:CVCL_UZ65 OAL-2 0 24505 -cellosaurus:CVCL_W891 OANC1 0 24506 -cellosaurus:CVCL_JE77 OAT 0 24507 -cellosaurus:CVCL_X185 OAT-1975 0 24508 -cellosaurus:CVCL_B7P6 OATL4 0 24509 -cellosaurus:CVCL_B7H5 OATL9 0 24510 -cellosaurus:CVCL_W931 Oba-BL 0 24511 -cellosaurus:CVCL_A1GZ OC 0 24512 -cellosaurus:CVCL_1617 OC 315 0 24513 -cellosaurus:CVCL_WL07 OC-1 0 24514 -cellosaurus:CVCL_GT33 OC-109 0 24515 -cellosaurus:CVCL_GT34 OC-109-VGH 0 24516 -cellosaurus:CVCL_GT35 OC-117-VGH 0 24517 -cellosaurus:CVCL_WL08 OC-2 0 24518 -cellosaurus:CVCL_GT36 OC-238 0 24519 -cellosaurus:CVCL_WL09 OC-3 0 24520 -cellosaurus:CVCL_GT37 OC-3-VGH 0 24521 -cellosaurus:CVCL_GT38 OC-7-NU 0 24522 -cellosaurus:CVCL_GT39 OC-89-VGH 0 24523 -cellosaurus:CVCL_RV33 OC1 0 24524 -cellosaurus:CVCL_RV34 OC2 0 24525 -cellosaurus:CVCL_EG06 OCC/PI 0 24526 -cellosaurus:CVCL_EG07 OCC/PII 0 24527 -cellosaurus:CVCL_C829 OCC1 0 24528 -cellosaurus:CVCL_EI99 OCCC33 0 24529 -cellosaurus:CVCL_A1GR OCGH_ATRT 0 24530 -cellosaurus:CVCL_QX97 OCI-AML-11 0 24531 -cellosaurus:CVCL_UE33 OCI-AML-20 0 24532 -cellosaurus:CVCL_1844 OCI-AML-3 0 24533 -cellosaurus:CVCL_5224 OCI-AML-4 0 24534 -cellosaurus:CVCL_1620 OCI-AML-5 0 24535 -cellosaurus:CVCL_QX96 OCI-AML-8 0 24536 -cellosaurus:CVCL_DH02 OCI-C1p 0 24537 -cellosaurus:CVCL_DH03 OCI-C2p 0 24538 -cellosaurus:CVCL_DH04 OCI-C3x 0 24539 -cellosaurus:CVCL_DH05 OCI-C4p 0 24540 -cellosaurus:CVCL_DH06 OCI-C5x 0 24541 -cellosaurus:CVCL_DH07 OCI-CSp 0 24542 -cellosaurus:CVCL_DH08 OCI-D1p 0 24543 -cellosaurus:CVCL_DH09 OCI-E1p 0 24544 -cellosaurus:CVCL_DH10 OCI-E2p 0 24545 -cellosaurus:CVCL_DH11 OCI-E3x 0 24546 -cellosaurus:CVCL_DH12 OCI-EP1p 0 24547 -cellosaurus:CVCL_1879 OCI-Ly1 0 24548 -cellosaurus:CVCL_8795 OCI-Ly10 0 24549 -cellosaurus:CVCL_M071 OCI-Ly11 0 24550 -cellosaurus:CVCL_8796 OCI-Ly12 0 24551 -cellosaurus:CVCL_M072 OCI-Ly13.1 0 24552 -cellosaurus:CVCL_8797 OCI-Ly13.2 0 24553 -cellosaurus:CVCL_M073 OCI-Ly14 0 24554 -cellosaurus:CVCL_M074 OCI-Ly15 0 24555 -cellosaurus:CVCL_M076 OCI-Ly16 0 24556 -cellosaurus:CVCL_8798 OCI-Ly17 0 24557 -cellosaurus:CVCL_1880 OCI-Ly18 0 24558 -cellosaurus:CVCL_1878 OCI-Ly19 0 24559 -cellosaurus:CVCL_8799 OCI-Ly2 0 24560 -cellosaurus:CVCL_8800 OCI-Ly3 0 24561 -cellosaurus:CVCL_8801 OCI-Ly4 0 24562 -cellosaurus:CVCL_M075 OCI-Ly5 0 24563 -cellosaurus:CVCL_8802 OCI-Ly6 0 24564 -cellosaurus:CVCL_1881 OCI-Ly7 0 24565 -cellosaurus:CVCL_8803 OCI-Ly8 0 24566 -cellosaurus:CVCL_QW65 OCI-Ly9 0 24567 -cellosaurus:CVCL_2149 OCI-M1 0 24568 -cellosaurus:CVCL_DH13 OCI-M1p 0 24569 -cellosaurus:CVCL_2150 OCI-M2 0 24570 -cellosaurus:CVCL_E338 OCI-My1 0 24571 -cellosaurus:CVCL_E337 OCI-My2 0 24572 -cellosaurus:CVCL_E336 OCI-My3 0 24573 -cellosaurus:CVCL_E334 OCI-My4 0 24574 -cellosaurus:CVCL_E332 OCI-My5 0 24575 -cellosaurus:CVCL_E335 OCI-My6 0 24576 -cellosaurus:CVCL_E333 OCI-My7 0 24577 -cellosaurus:CVCL_DH14 OCI-P1a 0 24578 -cellosaurus:CVCL_DH15 OCI-P2a 0 24579 -cellosaurus:CVCL_DH16 OCI-P3a 0 24580 -cellosaurus:CVCL_DH17 OCI-P4p 0 24581 -cellosaurus:CVCL_DH18 OCI-P5x 0 24582 -cellosaurus:CVCL_DH19 OCI-P6p 0 24583 -cellosaurus:CVCL_DH20 OCI-P7a 0 24584 -cellosaurus:CVCL_DH21 OCI-P8p 0 24585 -cellosaurus:CVCL_DH22 OCI-P9a1 0 24586 -cellosaurus:CVCL_DH23 OCI-P9a2 0 24587 -cellosaurus:CVCL_DH24 OCI-U1a 0 24588 -cellosaurus:CVCL_6701 OCL-1 0 24589 -cellosaurus:CVCL_6702 OCL-3 0 24590 -cellosaurus:CVCL_6936 OCM-2 0 24591 -cellosaurus:CVCL_GT40 OCPC-2-VGH 0 24592 -cellosaurus:CVCL_3084 OCUM-1 0 24593 -cellosaurus:CVCL_VV83 OCUM-14 0 24594 -cellosaurus:CVCL_8382 OCUM-2D 0 24595 -cellosaurus:CVCL_8388 OCUM-7 0 24596 -cellosaurus:CVCL_8390 OCUM-9 0 24597 -cellosaurus:CVCL_CW20 OCUP-A1 0 24598 -cellosaurus:CVCL_CW21 OCUP-A2 0 24599 -cellosaurus:CVCL_B5GA OCUT-3 0 24600 -cellosaurus:CVCL_B5GB OCUT-4 0 24601 -cellosaurus:CVCL_B5GC OCUT-5 0 24602 -cellosaurus:CVCL_B5GD OCUT-6 0 24603 -cellosaurus:CVCL_HF21 OCUU-1 0 24604 -cellosaurus:CVCL_HF22 OCUU-2 0 24605 -cellosaurus:CVCL_HF23 OCUU-3 0 24606 -cellosaurus:CVCL_HF24 OCUU-4 0 24607 -cellosaurus:CVCL_HF25 OCUU-5 0 24608 -cellosaurus:CVCL_M615 OCUU-6 0 24609 -cellosaurus:CVCL_0G09 ODA 0 24610 -cellosaurus:CVCL_W935 Odour 0 24611 -cellosaurus:CVCL_1622 OE19 0 24612 -cellosaurus:CVCL_2661 OE21 0 24613 -cellosaurus:CVCL_0471 OE33 0 24614 -cellosaurus:CVCL_6782 OECM-1 0 24615 -cellosaurus:CVCL_A764 OEE-III 0 24616 -cellosaurus:CVCL_JF81 OG 0 24617 -cellosaurus:CVCL_RP35 OGK-M 0 24618 -cellosaurus:CVCL_RP36 OGK-P 0 24619 -cellosaurus:CVCL_4664 OGU1 0 24620 -cellosaurus:CVCL_V742 Ogun 0 24621 -cellosaurus:CVCL_A765 OH-1 0 24622 -cellosaurus:CVCL_X427 OH-2 [Human lung carcinoma] 0 24623 -cellosaurus:CVCL_5442 OH-2 [Human plasma cell myeloma] 0 24624 -cellosaurus:CVCL_A766 OH-3 0 24625 -cellosaurus:CVCL_B7P3 Oh13T 0 24626 -cellosaurus:CVCL_M833 OH931 0 24627 -cellosaurus:CVCL_RN46 OH94 0 24628 -cellosaurus:CVCL_W730 OHK [Human primary effusion lymphoma] 0 24629 -cellosaurus:CVCL_W731 OHK [Human ovarian tumor] 0 24630 -cellosaurus:CVCL_A662 OHN-GM 0 24631 -cellosaurus:CVCL_F503 OHR 0 24632 -cellosaurus:CVCL_A4BI OHRI-MEL-13 0 24633 -cellosaurus:CVCL_D244 OHSTMAM-4 0 24634 -cellosaurus:CVCL_XX23 OHSU-974 0 24635 -cellosaurus:CVCL_4872 OIH-1 0 24636 -cellosaurus:CVCL_A767 OK-92 0 24637 -cellosaurus:CVCL_3085 OKa-C-1 0 24638 -cellosaurus:CVCL_9815 Okajima 0 24639 -cellosaurus:CVCL_A5XG OKK-1 0 24640 -cellosaurus:CVCL_5849 OKM-2T 0 24641 -cellosaurus:CVCL_VG03 OKM-3T 0 24642 -cellosaurus:CVCL_L980 OKP-GS 0 24643 -cellosaurus:CVCL_E233 OKT1 0 24644 -cellosaurus:CVCL_7206 Oku-BL 0 24645 -cellosaurus:CVCL_IU25 Olare 0 24646 -cellosaurus:CVCL_F504 OLD1612 0 24647 -cellosaurus:CVCL_EJ00 OLGS1 0 24648 -cellosaurus:CVCL_W941 OM-1 0 24649 -cellosaurus:CVCL_W942 OM-2 0 24650 -cellosaurus:CVCL_X145 OM421 0 24651 -cellosaurus:CVCL_J308 OM431 0 24652 -cellosaurus:CVCL_X146 OM439 0 24653 -cellosaurus:CVCL_X147 OM443 0 24654 -cellosaurus:CVCL_X148 OM449 0 24655 -cellosaurus:CVCL_J309 OM464 0 24656 -cellosaurus:CVCL_J310 OM467 0 24657 -cellosaurus:CVCL_J311 OM482 0 24658 -cellosaurus:CVCL_A663 OM9;22 0 24659 -cellosaurus:CVCL_A110 OMA-AML-1 0 24660 -cellosaurus:CVCL_M553 OMA-BL-1 0 24661 -cellosaurus:CVCL_1623 OMC-1 [Human cervical carcinoma] 0 24662 -cellosaurus:CVCL_9T73 OMC-1 [Human ovarian carcinoma] 0 24663 -cellosaurus:CVCL_3354 OMC-3 0 24664 -cellosaurus:CVCL_A108 OMC-4 0 24665 -cellosaurus:CVCL_A109 OMC-6 0 24666 -cellosaurus:CVCL_3355 OMC-9 0 24667 -cellosaurus:CVCL_DC35 OMEGA-Z 0 24668 -cellosaurus:CVCL_6939 OMM-1 0 24669 -cellosaurus:CVCL_6940 OMM-2 0 24670 -cellosaurus:CVCL_6941 OMM-3 0 24671 -cellosaurus:CVCL_C305 OMM2.2 0 24672 -cellosaurus:CVCL_C306 OMM2.3 0 24673 -cellosaurus:CVCL_C307 OMM2.5 0 24674 -cellosaurus:CVCL_C308 OMM2.6 0 24675 -cellosaurus:CVCL_IW23 OMMT-ARK-1 0 24676 -cellosaurus:CVCL_IW24 OMMT-ARK-2 0 24677 -cellosaurus:CVCL_0G03 OMT-1 0 24678 -cellosaurus:CVCL_3075 Onda 10 0 24679 -cellosaurus:CVCL_3076 Onda 11 0 24680 -cellosaurus:CVCL_4W67 Onda 7 0 24681 -cellosaurus:CVCL_4W68 Onda 8 0 24682 -cellosaurus:CVCL_1R14 Onda 9 0 24683 -cellosaurus:CVCL_2671 ONE58 0 24684 -cellosaurus:CVCL_IU26 Onesmas 0 24685 -cellosaurus:CVCL_QY36 ONHL-1 0 24686 -cellosaurus:CVCL_JZ70 ONS-16 0 24687 -cellosaurus:CVCL_A5XN ONS-20 0 24688 -cellosaurus:CVCL_JZ67 ONS-6 0 24689 -cellosaurus:CVCL_S733 ONS-75 0 24690 -cellosaurus:CVCL_M702 ONS-81 0 24691 -cellosaurus:CVCL_A6FF ONS-82 0 24692 -cellosaurus:CVCL_A6FD ONS-84 0 24693 -cellosaurus:CVCL_A6FE ONS-86 0 24694 -cellosaurus:CVCL_A5XJ ONS-99 0 24695 -cellosaurus:CVCL_M601 ONSA-8 0 24696 -cellosaurus:CVCL_DG77 OP-1 0 24697 -cellosaurus:CVCL_ZU77 Opasa 0 24698 -cellosaurus:CVCL_X743 OPL-1 0 24699 -cellosaurus:CVCL_X744 OPL-2 0 24700 -cellosaurus:CVCL_X745 OPL-3 0 24701 -cellosaurus:CVCL_X746 OPL-4 0 24702 -cellosaurus:CVCL_X747 OPL-5 0 24703 -cellosaurus:CVCL_X748 OPL-7 0 24704 -cellosaurus:CVCL_5210 OPM-1 0 24705 -cellosaurus:CVCL_M529 OPM-3 0 24706 -cellosaurus:CVCL_S690 ORL-115 0 24707 -cellosaurus:CVCL_S691 ORL-136 0 24708 -cellosaurus:CVCL_VJ37 ORL-150 0 24709 -cellosaurus:CVCL_VJ38 ORL-153 0 24710 -cellosaurus:CVCL_VJ39 ORL-156 0 24711 -cellosaurus:CVCL_VJ40 ORL-166 0 24712 -cellosaurus:CVCL_VJ41 ORL-174 0 24713 -cellosaurus:CVCL_VJ42 ORL-188 0 24714 -cellosaurus:CVCL_VJ43 ORL-195 0 24715 -cellosaurus:CVCL_VJ44 ORL-196 0 24716 -cellosaurus:CVCL_VJ45 ORL-204 0 24717 -cellosaurus:CVCL_VJ46 ORL-207 0 24718 -cellosaurus:CVCL_VJ47 ORL-214 0 24719 -cellosaurus:CVCL_VJ48 ORL-215 0 24720 -cellosaurus:CVCL_VJ49 ORL-247 0 24721 -cellosaurus:CVCL_S692 ORL-48 0 24722 -cellosaurus:CVCL_U565 ORS [Human Ewing sarcoma] 0 24723 -cellosaurus:CVCL_N815 ORT 0 24724 -cellosaurus:CVCL_FA10 OS 179 0 24725 -cellosaurus:CVCL_F502 OS 99-1 0 24726 -cellosaurus:CVCL_S988 OS-1 0 24727 -cellosaurus:CVCL_0C23 OS-A 0 24728 -cellosaurus:CVCL_VG01 OS-F 0 24729 -cellosaurus:CVCL_1626 OS-RC-2 0 24730 -cellosaurus:CVCL_Z602 OS1 [Human lung carcinoma] 0 24731 -cellosaurus:CVCL_F864 OS1 [Human osteosarcoma] 0 24732 -cellosaurus:CVCL_Z611 OS10 0 24733 -cellosaurus:CVCL_Z612 OS15 0 24734 -cellosaurus:CVCL_Z613 OS17 0 24735 -cellosaurus:CVCL_Z614 OS18A 0 24736 -cellosaurus:CVCL_Z603 OS2 [Human lung carcinoma] 0 24737 -cellosaurus:CVCL_F865 OS2 [Human osteosarcoma] 0 24738 -cellosaurus:CVCL_D881 OS2000 0 24739 -cellosaurus:CVCL_WU66 OS252 0 24740 -cellosaurus:CVCL_Z605 OS3 [Human lung carcinoma] 0 24741 -cellosaurus:CVCL_F866 OS3 [Human osteosarcoma] 0 24742 -cellosaurus:CVCL_Z607 OS4 0 24743 -cellosaurus:CVCL_Z608 OS5 0 24744 -cellosaurus:CVCL_Z609 OS6 0 24745 -cellosaurus:CVCL_Z610 OS7 0 24746 -cellosaurus:CVCL_ZV94 OSA 1777 0 24747 -cellosaurus:CVCL_EQ73 OSA-80 0 24748 -cellosaurus:CVCL_6264 OSA344 0 24749 -cellosaurus:CVCL_E312 OSC-1 [Human esophageal squamous cell carcinoma] 0 24750 -cellosaurus:CVCL_HF91 OSC-1 [Human tongue SCC] 0 24751 -cellosaurus:CVCL_E313 OSC-2 [Human esophageal squamous cell carcinoma] 0 24752 -cellosaurus:CVCL_HF92 OSC-2 [Human gingival squamous cell carcinoma] 0 24753 -cellosaurus:CVCL_3087 OSC-20 0 24754 -cellosaurus:CVCL_HF93 OSC-3 0 24755 -cellosaurus:CVCL_A399 OSC-30 0 24756 -cellosaurus:CVCL_HF94 OSC-4 0 24757 -cellosaurus:CVCL_A400 OSC-40 0 24758 -cellosaurus:CVCL_HF95 OSC-5 0 24759 -cellosaurus:CVCL_HF96 OSC-6 0 24760 -cellosaurus:CVCL_HF97 OSC-7 0 24761 -cellosaurus:CVCL_A401 OSC-70 0 24762 -cellosaurus:CVCL_KR33 OSCC-1/KMC 0 24763 -cellosaurus:CVCL_L894 OSCC-3 0 24764 -cellosaurus:CVCL_A5LR OSEV 0 24765 -cellosaurus:CVCL_A5LS OSFL 0 24766 -cellosaurus:CVCL_A5LT OSFN 0 24767 -cellosaurus:CVCL_M604 OSHU-1 0 24768 -cellosaurus:CVCL_A5LU OSON 0 24769 -cellosaurus:CVCL_A5LV OSPR 0 24770 -cellosaurus:CVCL_Z081 OSQ1 0 24771 -cellosaurus:CVCL_IP67 OSrb/N-M 0 24772 -cellosaurus:CVCL_A5LW OSSK 0 24773 -cellosaurus:CVCL_A5LX OSSM 0 24774 -cellosaurus:CVCL_W923 OST 10 PT 0 24775 -cellosaurus:CVCL_W924 OST 7 PT 0 24776 -cellosaurus:CVCL_W925 OST 8 PT 0 24777 -cellosaurus:CVCL_WW20 OST-II 0 24778 -cellosaurus:CVCL_A5LY OSWO 0 24779 -cellosaurus:CVCL_DI01 OU-LC-A1 0 24780 -cellosaurus:CVCL_DI02 OU-LC-A2 0 24781 -cellosaurus:CVCL_DI03 OU-LC-A3 0 24782 -cellosaurus:CVCL_DI04 OU-LC-A4 0 24783 -cellosaurus:CVCL_DI05 OU-LC-AS1 0 24784 -cellosaurus:CVCL_DI06 OU-LC-KI 0 24785 -cellosaurus:CVCL_DI09 OU-LC-KM 0 24786 -cellosaurus:CVCL_DI07 OU-LC-OK 0 24787 -cellosaurus:CVCL_DI08 OU-LC-ON 0 24788 -cellosaurus:CVCL_DI10 OU-LC-SK 0 24789 -cellosaurus:CVCL_3088 OUMS-23 0 24790 -cellosaurus:CVCL_3090 OUMS-27 0 24791 -cellosaurus:CVCL_JH32 OUN-1 0 24792 -cellosaurus:CVCL_A416 OUR-10 0 24793 -cellosaurus:CVCL_UY92 OUR-19 0 24794 -cellosaurus:CVCL_UY93 OUR-21 0 24795 -cellosaurus:CVCL_UY94 OUR-23 0 24796 -cellosaurus:CVCL_A420 OUR-30 0 24797 -cellosaurus:CVCL_4366 OV-1063 0 24798 -cellosaurus:CVCL_9T12 OV-1369(R2) 0 24799 -cellosaurus:CVCL_4375 OV-1946 0 24800 -cellosaurus:CVCL_A1SI OV-2085 0 24801 -cellosaurus:CVCL_9T13 OV-2295 0 24802 -cellosaurus:CVCL_9T14 OV-2295(R2) 0 24803 -cellosaurus:CVCL_A1SM OV-2978 0 24804 -cellosaurus:CVCL_9T15 OV-3133(R) 0 24805 -cellosaurus:CVCL_9T16 OV-3133(R2) 0 24806 -cellosaurus:CVCL_A1SP OV-3291 0 24807 -cellosaurus:CVCL_A1SQ OV-3331 0 24808 -cellosaurus:CVCL_9T20 OV-4453 0 24809 -cellosaurus:CVCL_9T21 OV-4485 0 24810 -cellosaurus:CVCL_9T22 OV-866(2) 0 24811 -cellosaurus:CVCL_4003 OV-MZ-10 0 24812 -cellosaurus:CVCL_X965 OV-MZ-12 0 24813 -cellosaurus:CVCL_WH80 OV-MZ-13 0 24814 -cellosaurus:CVCL_X966 OV-MZ-14 0 24815 -cellosaurus:CVCL_4004 OV-MZ-15 0 24816 -cellosaurus:CVCL_X959 OV-MZ-16 0 24817 -cellosaurus:CVCL_6863 OV-MZ-19 0 24818 -cellosaurus:CVCL_X967 OV-MZ-20 0 24819 -cellosaurus:CVCL_X968 OV-MZ-21 0 24820 -cellosaurus:CVCL_E117 OV-MZ-22 0 24821 -cellosaurus:CVCL_X969 OV-MZ-26 0 24822 -cellosaurus:CVCL_X970 OV-MZ-27 0 24823 -cellosaurus:CVCL_X952 OV-MZ-3 0 24824 -cellosaurus:CVCL_X971 OV-MZ-30 0 24825 -cellosaurus:CVCL_X972 OV-MZ-31 0 24826 -cellosaurus:CVCL_X956 OV-MZ-32 0 24827 -cellosaurus:CVCL_X973 OV-MZ-33 0 24828 -cellosaurus:CVCL_X957 OV-MZ-35 0 24829 -cellosaurus:CVCL_X987 OV-MZ-36 0 24830 -cellosaurus:CVCL_X960 OV-MZ-37 0 24831 -cellosaurus:CVCL_X961 OV-MZ-38 0 24832 -cellosaurus:CVCL_X953 OV-MZ-4 0 24833 -cellosaurus:CVCL_X954 OV-MZ-5 0 24834 -cellosaurus:CVCL_X974 OV-MZ-7a 0 24835 -cellosaurus:CVCL_X958 OV-MZ-8 0 24836 -cellosaurus:CVCL_X964 OV-MZ-9 0 24837 -cellosaurus:CVCL_DH78 OV-TRL-12B 0 24838 -cellosaurus:CVCL_DH79 OV-TRL-90T 0 24839 -cellosaurus:CVCL_X963 OV-UL-2 0 24840 -cellosaurus:CVCL_A402 OV167 0 24841 -cellosaurus:CVCL_6E73 OV176 0 24842 -cellosaurus:CVCL_A403 OV177 0 24843 -cellosaurus:CVCL_2672 OV17R 0 24844 -cellosaurus:CVCL_A404 OV207 0 24845 -cellosaurus:CVCL_X502 OV25R 0 24846 -cellosaurus:CVCL_A405 OV266 0 24847 -cellosaurus:CVCL_2673 OV56 0 24848 -cellosaurus:CVCL_2674 OV58 0 24849 -cellosaurus:CVCL_2675 OV7 0 24850 -cellosaurus:CVCL_0V12 OVAS 0 24851 -cellosaurus:CVCL_A768 OVAS-21 0 24852 -cellosaurus:CVCL_UY59 OvBH-1 0 24853 -cellosaurus:CVCL_RK14 OVC-1 0 24854 -cellosaurus:CVCL_RK24 OVC-100 0 24855 -cellosaurus:CVCL_RK25 OVC-102 0 24856 -cellosaurus:CVCL_RK26 OVC-105 0 24857 -cellosaurus:CVCL_RK27 OVC-106 0 24858 -cellosaurus:CVCL_RK15 OVC-2 0 24859 -cellosaurus:CVCL_RK16 OVC-23 0 24860 -cellosaurus:CVCL_RK17 OVC-44 0 24861 -cellosaurus:CVCL_RK18 OVC-50 0 24862 -cellosaurus:CVCL_RK19 OVC-52 0 24863 -cellosaurus:CVCL_RK20 OVC-62 0 24864 -cellosaurus:CVCL_RK21 OVC-66 0 24865 -cellosaurus:CVCL_RK22 OVC-73 0 24866 -cellosaurus:CVCL_RK23 OVC-77 0 24867 -cellosaurus:CVCL_9U97 OVC1-PI 32 0 24868 -cellosaurus:CVCL_DH80 OVCA-X 0 24869 -cellosaurus:CVCL_WS41 OVCA12 0 24870 -cellosaurus:CVCL_IQ31 OVCA400 0 24871 -cellosaurus:CVCL_3935 OVCA420 0 24872 -cellosaurus:CVCL_IQ30 OVCA424 0 24873 -cellosaurus:CVCL_3769 OVCA432 0 24874 -cellosaurus:CVCL_W776 OVCA633 0 24875 -cellosaurus:CVCL_W781 OVCA680 0 24876 -cellosaurus:CVCL_W782 OVCA702 0 24877 -cellosaurus:CVCL_W783 OVCA810 0 24878 -cellosaurus:CVCL_ZL29 OVCA832 0 24879 -cellosaurus:CVCL_4377 OVCAR-10 0 24880 -cellosaurus:CVCL_1627 OVCAR-4 0 24881 -cellosaurus:CVCL_DG79 OVCAR-7 0 24882 -cellosaurus:CVCL_A769 OVHS-1 0 24883 -cellosaurus:CVCL_W129 OVI-P 0 24884 -cellosaurus:CVCL_3110 OVKATE 0 24885 -cellosaurus:CVCL_3111 OVMANA 0 24886 -cellosaurus:CVCL_3113 OVMIU-II 0 24887 -cellosaurus:CVCL_UC75 OVPA8 0 24888 -cellosaurus:CVCL_3114 OVSAHO 0 24889 -cellosaurus:CVCL_W292 OVT2 0 24890 -cellosaurus:CVCL_3117 OVTOKO 0 24891 -cellosaurus:CVCL_D166 OVXF 1023 0 24892 -cellosaurus:CVCL_D167 OVXF 1353 0 24893 -cellosaurus:CVCL_D168 OVXF 1544 0 24894 -cellosaurus:CVCL_D169 OVXF 1619L 0 24895 -cellosaurus:CVCL_D170 OVXF 899L 0 24896 -cellosaurus:CVCL_UD52 OW-1 0 24897 -cellosaurus:CVCL_B451 OX-CO-1 0 24898 -cellosaurus:CVCL_B452 OX-CO-3 0 24899 -cellosaurus:CVCL_B3QP OYB 0 24900 -cellosaurus:CVCL_3118 OZ [Human cholangiocarcinoma] 0 24901 -cellosaurus:CVCL_M710 OZ [Human diffuse large B-cell lymphoma] 0 24902 -cellosaurus:CVCL_W200 OzA 0 24903 -cellosaurus:CVCL_L298 P-STS 0 24904 -cellosaurus:CVCL_W189 P0318 0 24905 -cellosaurus:CVCL_1630 P12-Ichikawa 0 24906 -cellosaurus:CVCL_1631 P30/OHK 0 24907 -cellosaurus:CVCL_1632 P31/FUJ 0 24908 -cellosaurus:CVCL_3119 P32/ISH 0 24909 -cellosaurus:CVCL_UW54 p34 0 24910 -cellosaurus:CVCL_T056 P6C 0 24911 -cellosaurus:CVCL_RY01 P7731 0 24912 -cellosaurus:CVCL_1E44 PA #2 0 24913 -cellosaurus:CVCL_AX17 PA 3 0 24914 -cellosaurus:CVCL_5852 PA-CLS-52 0 24915 -cellosaurus:CVCL_1G11 PA018 0 24916 -cellosaurus:CVCL_1G12 PA028 0 24917 -cellosaurus:CVCL_1G13 PA055 0 24918 -cellosaurus:CVCL_1G14 PA086 0 24919 -cellosaurus:CVCL_1G15 PA090 0 24920 -cellosaurus:CVCL_1G16 PA107 0 24921 -cellosaurus:CVCL_1G17 PA122 0 24922 -cellosaurus:CVCL_1G18 PA167 0 24923 -cellosaurus:CVCL_1G19 PA182 0 24924 -cellosaurus:CVCL_1G20 PA195 0 24925 -cellosaurus:CVCL_1G21 PA202 0 24926 -cellosaurus:CVCL_1G22 PA215 0 24927 -cellosaurus:CVCL_1G23 PA254 0 24928 -cellosaurus:CVCL_1G24 PA285 0 24929 -cellosaurus:CVCL_1G25 PA333 0 24930 -cellosaurus:CVCL_IV25 PA682 BM1 0 24931 -cellosaurus:CVCL_C539 PA682 PB 0 24932 -cellosaurus:CVCL_IV26 PA682 PE1 0 24933 -cellosaurus:CVCL_C886 PaCa 5061 0 24934 -cellosaurus:CVCL_C887 PaCa 5072 0 24935 -cellosaurus:CVCL_LM69 PaCa 5156 0 24936 -cellosaurus:CVCL_4011 PaCa-3 0 24937 -cellosaurus:CVCL_7087 PaCa-44 0 24938 -cellosaurus:CVCL_1848 PaCaDD-119 0 24939 -cellosaurus:CVCL_1849 PaCaDD-135 0 24940 -cellosaurus:CVCL_1850 PaCaDD-137 0 24941 -cellosaurus:CVCL_M464 PaCaDD-141 0 24942 -cellosaurus:CVCL_M465 PaCaDD-159 0 24943 -cellosaurus:CVCL_M466 PaCaDD-161 0 24944 -cellosaurus:CVCL_M467 PaCaDD-165 0 24945 -cellosaurus:CVCL_M468 PaCaDD-183 0 24946 -cellosaurus:CVCL_M469 PaCaDD-188 0 24947 -cellosaurus:CVCL_8781 PaCaDD-43 0 24948 -cellosaurus:CVCL_8782 PaCaDD-60 0 24949 -cellosaurus:CVCL_U415 Paju 0 24950 -cellosaurus:CVCL_X749 Pal-1 0 24951 -cellosaurus:CVCL_D694 PALL-1 0 24952 -cellosaurus:CVCL_3122 PALL-2 0 24953 -cellosaurus:CVCL_H271 PAMC82 0 24954 -cellosaurus:CVCL_B454 PAN-03-JCK 0 24955 -cellosaurus:CVCL_B455 PAN-07-JCK 0 24956 -cellosaurus:CVCL_B456 PAN-08-JCK 0 24957 -cellosaurus:CVCL_B457 PAN-09-JCK 0 24958 -cellosaurus:CVCL_7666 Panc 01.28 0 24959 -cellosaurus:CVCL_U875 Panc 02.02 0 24960 -cellosaurus:CVCL_1633 Panc 02.03 0 24961 -cellosaurus:CVCL_E277 Panc 02.08 0 24962 -cellosaurus:CVCL_1634 Panc 02.13 0 24963 -cellosaurus:CVCL_E282 Panc 02.43 0 24964 -cellosaurus:CVCL_1635 Panc 03.27 0 24965 -cellosaurus:CVCL_U872 Panc 04.14 0 24966 -cellosaurus:CVCL_7664 Panc 04.21 0 24967 -cellosaurus:CVCL_1637 Panc 05.04 0 24968 -cellosaurus:CVCL_7665 Panc 06.03 0 24969 -cellosaurus:CVCL_1638 Panc 08.13 0 24970 -cellosaurus:CVCL_1639 Panc 10.05 0 24971 -cellosaurus:CVCL_E283 PANC 1002 0 24972 -cellosaurus:CVCL_Y004 Panc 12.01 0 24973 -cellosaurus:CVCL_E284 PANC 185 0 24974 -cellosaurus:CVCL_E285 PANC 198 0 24975 -cellosaurus:CVCL_E286 PANC 215 0 24976 -cellosaurus:CVCL_E300 PANC 233 0 24977 -cellosaurus:CVCL_E287 PANC 247 0 24978 -cellosaurus:CVCL_E288 PANC 253 0 24979 -cellosaurus:CVCL_H598 PANC 430 0 24980 -cellosaurus:CVCL_E289 PANC 480 0 24981 -cellosaurus:CVCL_E290 PANC 486 0 24982 -cellosaurus:CVCL_E291 PANC 502 0 24983 -cellosaurus:CVCL_E292 PANC 503 0 24984 -cellosaurus:CVCL_E293 PANC 504 0 24985 -cellosaurus:CVCL_IU72 Panc-4 0 24986 -cellosaurus:CVCL_3921 PANC3 0 24987 -cellosaurus:CVCL_4012 PancTu-I 0 24988 -cellosaurus:CVCL_4013 PancTu-II 0 24989 -cellosaurus:CVCL_B7A6 PANDA 0 24990 -cellosaurus:CVCL_LI19 PAPLiGs 0 24991 -cellosaurus:CVCL_VR47 Pari-ICR 0 24992 -cellosaurus:CVCL_IU34 Patrick 0 24993 -cellosaurus:CVCL_8400 Patscl-52 0 24994 -cellosaurus:CVCL_1845 PaTu 8902 0 24995 -cellosaurus:CVCL_1846 PaTu 8988s 0 24996 -cellosaurus:CVCL_1847 PaTu 8988t 0 24997 -cellosaurus:CVCL_L218 PaTuO2 0 24998 -cellosaurus:CVCL_8443 PB-1 [Human] 0 24999 -cellosaurus:CVCL_LH74 PBL-1 0 25000 -cellosaurus:CVCL_UU13 PC 0 25001 -cellosaurus:CVCL_S978 PC-1 [Human lung carcinoma] 0 25002 -cellosaurus:CVCL_S969 PC-1 [Human pancreatic carcinoma] 0 25003 -cellosaurus:CVCL_7088 PC-10 0 25004 -cellosaurus:CVCL_S979 PC-12 0 25005 -cellosaurus:CVCL_B259 PC-13 0 25006 -cellosaurus:CVCL_S970 PC-2 [Human pancreatic carcinoma China] 0 25007 -cellosaurus:CVCL_C1YF PC-2 [Human pancreatic carcinoma Germany] 0 25008 -cellosaurus:CVCL_4876 PC-295 0 25009 -cellosaurus:CVCL_S982 PC-3 [Human lung carcinoma] 0 25010 -cellosaurus:CVCL_X130 PC-3 [Human pancreatic carcinoma] 0 25011 -cellosaurus:CVCL_4878 PC-310 0 25012 -cellosaurus:CVCL_4879 PC-324 0 25013 -cellosaurus:CVCL_4880 PC-329 0 25014 -cellosaurus:CVCL_4881 PC-339 0 25015 -cellosaurus:CVCL_4884 PC-374 0 25016 -cellosaurus:CVCL_X128 PC-4 0 25017 -cellosaurus:CVCL_A1IE PC-5 [Human lung carcinoma] 0 25018 -cellosaurus:CVCL_W802 PC-53 0 25019 -cellosaurus:CVCL_W803 PC-53A 0 25020 -cellosaurus:CVCL_X129 PC-7 [Human pancreatic carcinoma] 0 25021 -cellosaurus:CVCL_4Z01 PC-8 0 25022 -cellosaurus:CVCL_4887 PC-82 0 25023 -cellosaurus:CVCL_B7I1 PC-B-142CA 0 25024 -cellosaurus:CVCL_B7I2 PC-B-148CA 0 25025 -cellosaurus:CVCL_X063 PC-EN 0 25026 -cellosaurus:CVCL_IQ09 PC/FF 0 25027 -cellosaurus:CVCL_U147 PC880 0 25028 -cellosaurus:CVCL_W864 PCA-23 0 25029 -cellosaurus:CVCL_VF94 PCA-5 0 25030 -cellosaurus:CVCL_LE04 PcBra1 0 25031 -cellosaurus:CVCL_LE05 PcBra2 0 25032 -cellosaurus:CVCL_LE06 PcBra3 0 25033 -cellosaurus:CVCL_C167 PCI-01 0 25034 -cellosaurus:CVCL_C168 PCI-02 0 25035 -cellosaurus:CVCL_C170 PCI-04A 0 25036 -cellosaurus:CVCL_C171 PCI-04B 0 25037 -cellosaurus:CVCL_C172 PCI-05 0 25038 -cellosaurus:CVCL_C173 PCI-06A 0 25039 -cellosaurus:CVCL_C174 PCI-06B 0 25040 -cellosaurus:CVCL_C175 PCI-07 0 25041 -cellosaurus:CVCL_C176 PCI-08 0 25042 -cellosaurus:CVCL_C177 PCI-09A 0 25043 -cellosaurus:CVCL_C178 PCI-09B 0 25044 -cellosaurus:CVCL_C179 PCI-10 [Human HNSCC] 0 25045 -cellosaurus:CVCL_5193 PCI-10 [Human pancreatic adenocarcinoma] 0 25046 -cellosaurus:CVCL_C180 PCI-11 0 25047 -cellosaurus:CVCL_C181 PCI-12 0 25048 -cellosaurus:CVCL_C182 PCI-13 0 25049 -cellosaurus:CVCL_C183 PCI-14 0 25050 -cellosaurus:CVCL_C184 PCI-15A 0 25051 -cellosaurus:CVCL_C756 PCI-15B 0 25052 -cellosaurus:CVCL_C185 PCI-16 0 25053 -cellosaurus:CVCL_C186 PCI-17 0 25054 -cellosaurus:CVCL_C187 PCI-18 0 25055 -cellosaurus:CVCL_RJ83 PCI-19 [Human HNSCC] 0 25056 -cellosaurus:CVCL_5194 PCI-19 [Human pancreatic adenocarcinoma] 0 25057 -cellosaurus:CVCL_RJ72 PCI-20 0 25058 -cellosaurus:CVCL_RJ73 PCI-21 0 25059 -cellosaurus:CVCL_1T56 PCI-22A 0 25060 -cellosaurus:CVCL_1T57 PCI-22B 0 25061 -cellosaurus:CVCL_AT94 PCI-24 [Human OCSCC] 0 25062 -cellosaurus:CVCL_5195 PCI-24 [Human pancreatic adenocarcinoma] 0 25063 -cellosaurus:CVCL_RJ74 PCI-25 0 25064 -cellosaurus:CVCL_RJ75 PCI-26 0 25065 -cellosaurus:CVCL_RJ76 PCI-27 0 25066 -cellosaurus:CVCL_RJ77 PCI-28 0 25067 -cellosaurus:CVCL_RJ78 PCI-29 0 25068 -cellosaurus:CVCL_C757 PCI-30 0 25069 -cellosaurus:CVCL_RJ79 PCI-31 0 25070 -cellosaurus:CVCL_RJ80 PCI-32 0 25071 -cellosaurus:CVCL_RJ81 PCI-33 0 25072 -cellosaurus:CVCL_RJ82 PCI-34 0 25073 -cellosaurus:CVCL_RJ84 PCI-35 [Human OCSCC] 0 25074 -cellosaurus:CVCL_5191 PCI-35 [Human pancreatic adenocarcinoma] 0 25075 -cellosaurus:CVCL_RJ85 PCI-36 0 25076 -cellosaurus:CVCL_C758 PCI-37A 0 25077 -cellosaurus:CVCL_C759 PCI-37B 0 25078 -cellosaurus:CVCL_M471 PCI-38 0 25079 -cellosaurus:CVCL_RJ86 PCI-39 0 25080 -cellosaurus:CVCL_RJ87 PCI-40 0 25081 -cellosaurus:CVCL_RJ88 PCI-41 0 25082 -cellosaurus:CVCL_RJ89 PCI-42 0 25083 -cellosaurus:CVCL_RJ90 PCI-43 [Human OCSCC] 0 25084 -cellosaurus:CVCL_5139 PCI-43 [Human pancreatic adenocarcinoma] 0 25085 -cellosaurus:CVCL_RJ91 PCI-44 0 25086 -cellosaurus:CVCL_RJ92 PCI-45 0 25087 -cellosaurus:CVCL_RJ93 PCI-46 0 25088 -cellosaurus:CVCL_RJ94 PCI-47 0 25089 -cellosaurus:CVCL_M470 PCI-50 0 25090 -cellosaurus:CVCL_RJ98 PCI-51 0 25091 -cellosaurus:CVCL_RJ99 PCI-52 0 25092 -cellosaurus:CVCL_5196 PCI-55 0 25093 -cellosaurus:CVCL_5197 PCI-6 0 25094 -cellosaurus:CVCL_5198 PCI-64 0 25095 -cellosaurus:CVCL_5199 PCI-66 0 25096 -cellosaurus:CVCL_5200 PCI-68 0 25097 -cellosaurus:CVCL_5201 PCI-72 0 25098 -cellosaurus:CVCL_5422 PCI-79 0 25099 -cellosaurus:CVCL_F002 PCL1643 0 25100 -cellosaurus:CVCL_F003 PCL1691 0 25101 -cellosaurus:CVCL_F004 PCL1771 0 25102 -cellosaurus:CVCL_B3QQ PCL2021 0 25103 -cellosaurus:CVCL_F005 PCL3014 0 25104 -cellosaurus:CVCL_F006 PCL3091 0 25105 -cellosaurus:CVCL_M496 PCL4199 0 25106 -cellosaurus:CVCL_4666 PCM6 0 25107 -cellosaurus:CVCL_B3QJ PCNSL-MSK 0 25108 -cellosaurus:CVCL_M743 PD-Mel 0 25109 -cellosaurus:CVCL_M435 PDFS 0 25110 -cellosaurus:CVCL_B458 PDSS-26 0 25111 -cellosaurus:CVCL_YP13 PDXPC1 0 25112 -cellosaurus:CVCL_QX06 PE-1 [Human] 0 25113 -cellosaurus:CVCL_QX07 PE-2 0 25114 -cellosaurus:CVCL_2678 PE/CA-PJ15 0 25115 -cellosaurus:CVCL_2679 PE/CA-PJ34 (clone C12) 0 25116 -cellosaurus:CVCL_2680 PE/CA-PJ41 (clone D2) 0 25117 -cellosaurus:CVCL_2681 PE/CA-PJ49 0 25118 -cellosaurus:CVCL_UD53 PEA 0 25119 -cellosaurus:CVCL_2682 PEA1 0 25120 -cellosaurus:CVCL_2683 PEA2 0 25121 -cellosaurus:CVCL_5860 PECA-4197 0 25122 -cellosaurus:CVCL_5861 PECA-4451 0 25123 -cellosaurus:CVCL_2H31 PeCa-UkHb-01 0 25124 -cellosaurus:CVCL_9583 PEL-5 0 25125 -cellosaurus:CVCL_B7AR Pell-1 0 25126 -cellosaurus:CVCL_VF93 Penl1 0 25127 -cellosaurus:CVCL_VF95 Penl2 0 25128 -cellosaurus:CVCL_2687 PEO14 0 25129 -cellosaurus:CVCL_2688 PEO16 0 25130 -cellosaurus:CVCL_2689 PEO23 0 25131 -cellosaurus:CVCL_2690 PEO4 0 25132 -cellosaurus:CVCL_2691 PEO6 0 25133 -cellosaurus:CVCL_8904 PER-106 0 25134 -cellosaurus:CVCL_8905 PER-107 0 25135 -cellosaurus:CVCL_8906 PER-108 0 25136 -cellosaurus:CVCL_W979 PER-117 0 25137 -cellosaurus:CVCL_W976 PER-145 0 25138 -cellosaurus:CVCL_W977 PER-163 0 25139 -cellosaurus:CVCL_W978 PER-164 0 25140 -cellosaurus:CVCL_W980 PER-255 0 25141 -cellosaurus:CVCL_RM22 PER-271 0 25142 -cellosaurus:CVCL_W981 PER-278 0 25143 -cellosaurus:CVCL_RM23 PER-288 0 25144 -cellosaurus:CVCL_A474 PER-365 0 25145 -cellosaurus:CVCL_W982 PER-371 0 25146 -cellosaurus:CVCL_A475 PER-377 0 25147 -cellosaurus:CVCL_K242 PER-423 0 25148 -cellosaurus:CVCL_W983 PER-427 0 25149 -cellosaurus:CVCL_RN50 PER-450 0 25150 -cellosaurus:CVCL_IX11 PER-452 0 25151 -cellosaurus:CVCL_IX12 PER-453 0 25152 -cellosaurus:CVCL_IX13 PER-480 0 25153 -cellosaurus:CVCL_W984 PER-485 0 25154 -cellosaurus:CVCL_W985 PER-487 0 25155 -cellosaurus:CVCL_W986 PER-490 0 25156 -cellosaurus:CVCL_A8JU PER-494 0 25157 -cellosaurus:CVCL_W987 PER-495 0 25158 -cellosaurus:CVCL_W988 PER-537 0 25159 -cellosaurus:CVCL_IX14 PER-547 0 25160 -cellosaurus:CVCL_W989 PER-550 0 25161 -cellosaurus:CVCL_IX15 PER-568 0 25162 -cellosaurus:CVCL_W990 PER-604 0 25163 -cellosaurus:CVCL_W991 PER-606 0 25164 -cellosaurus:CVCL_W993 PER-608 0 25165 -cellosaurus:CVCL_IY99 PER-703 0 25166 -cellosaurus:CVCL_IZ00 PER-703S 0 25167 -cellosaurus:CVCL_IZ01 PER-733S 0 25168 -cellosaurus:CVCL_IZ02 PER-784 0 25169 -cellosaurus:CVCL_IZ03 PER-785 0 25170 -cellosaurus:CVCL_IZ04 PER-785S 0 25171 -cellosaurus:CVCL_IZ05 PER-826 0 25172 -cellosaurus:CVCL_A8JV PER-910 0 25173 -cellosaurus:CVCL_A1YQ PERU 0 25174 -cellosaurus:CVCL_VP91 PES 41 0 25175 -cellosaurus:CVCL_VP92 PES 43 0 25176 -cellosaurus:CVCL_VP93 PES 47 0 25177 -cellosaurus:CVCL_N816 PET 0 25178 -cellosaurus:CVCL_LC73 PeTa 0 25179 -cellosaurus:CVCL_ZI19 Peter 0 25180 -cellosaurus:CVCL_UJ04 PF-1 0 25181 -cellosaurus:CVCL_UJ27 PF-2 0 25182 -cellosaurus:CVCL_UJ28 PF-3 0 25183 -cellosaurus:CVCL_UJ29 PF-4 0 25184 -cellosaurus:CVCL_UJ30 PF-5 0 25185 -cellosaurus:CVCL_UJ31 PF-6 0 25186 -cellosaurus:CVCL_A7EV PF130 0 25187 -cellosaurus:CVCL_ZF49 PFAT 0 25188 -cellosaurus:CVCL_ZF48 PFGC 0 25189 -cellosaurus:CVCL_A664 PFI-285 0 25190 -cellosaurus:CVCL_1642 PFSK-1 0 25191 -cellosaurus:CVCL_D539 PG-49 0 25192 -cellosaurus:CVCL_Z278 PG100 0 25193 -cellosaurus:CVCL_Y545 PGA-1 0 25194 -cellosaurus:CVCL_ZV53 PH-2 [Human glioblastoma] 0 25195 -cellosaurus:CVCL_RT30 PH101 0 25196 -cellosaurus:CVCL_VK97 PH5T 0 25197 -cellosaurus:CVCL_LF69 PiCa 0 25198 -cellosaurus:CVCL_ZY04 PIS-1 0 25199 -cellosaurus:CVCL_D338 PJ-2 0 25200 -cellosaurus:CVCL_A1RQ PK [Human penis carcinoma] 0 25201 -cellosaurus:CVCL_D711 PK-12 0 25202 -cellosaurus:CVCL_D712 PK-14 0 25203 -cellosaurus:CVCL_D713 PK-16 0 25204 -cellosaurus:CVCL_D719 PK-36 0 25205 -cellosaurus:CVCL_6748 PK-45H 0 25206 -cellosaurus:CVCL_6749 PK-45P 0 25207 -cellosaurus:CVCL_D720 PK-47 0 25208 -cellosaurus:CVCL_4718 PK-8 0 25209 -cellosaurus:CVCL_ZC27 PL [Human diffuse large B-cell lymphoma] 0 25210 -cellosaurus:CVCL_L412 PL-14 0 25211 -cellosaurus:CVCL_2161 PL-21 0 25212 -cellosaurus:CVCL_M704 PL-29018 0 25213 -cellosaurus:CVCL_X982 PL14 [Human pancreatic adenocarcinoma] 0 25214 -cellosaurus:CVCL_S875 PL377 0 25215 -cellosaurus:CVCL_S976 PL4 0 25216 -cellosaurus:CVCL_3567 PL45 0 25217 -cellosaurus:CVCL_AX34 PLA-802 0 25218 -cellosaurus:CVCL_5A03 PLC/AN/2 0 25219 -cellosaurus:CVCL_LJ92 PLC/NUT/1 0 25220 -cellosaurus:CVCL_VQ08 PLF1 0 25221 -cellosaurus:CVCL_VQ09 PLF2 0 25222 -cellosaurus:CVCL_4U94 PLS-1 0 25223 -cellosaurus:CVCL_L208 PLT-2 0 25224 -cellosaurus:CVCL_H636 PlyI 0 25225 -cellosaurus:CVCL_A665 PM-WK 0 25226 -cellosaurus:CVCL_UD97 PM1015 0 25227 -cellosaurus:CVCL_B7B0 PMAC1 0 25228 -cellosaurus:CVCL_B7B1 PMAC2 0 25229 -cellosaurus:CVCL_B7B2 PMAC3 0 25230 -cellosaurus:CVCL_B7B3 PMAC4 0 25231 -cellosaurus:CVCL_B7B4 PMAC5 0 25232 -cellosaurus:CVCL_5G47 PMDC05 0 25233 -cellosaurus:CVCL_IU82 PME1 0 25234 -cellosaurus:CVCL_8747 PMF-ko14 0 25235 -cellosaurus:CVCL_VK47 PN-1 0 25236 -cellosaurus:CVCL_4431 PNET 0 25237 -cellosaurus:CVCL_A5PP PNET-1 0 25238 -cellosaurus:CVCL_4432 PNET-2 0 25239 -cellosaurus:CVCL_M744 PNM-Mel 0 25240 -cellosaurus:CVCL_1K10 Pno 0 25241 -cellosaurus:CVCL_G320 PNP-Mel 0 25242 -cellosaurus:CVCL_0B89 POC 0 25243 -cellosaurus:CVCL_EJ01 POE 0 25244 -cellosaurus:CVCL_9513 POG-1382.2 0 25245 -cellosaurus:CVCL_9514 POG-1643 0 25246 -cellosaurus:CVCL_9515 POG-1691 0 25247 -cellosaurus:CVCL_9516 POG-1771 0 25248 -cellosaurus:CVCL_Y194 POVD 0 25249 -cellosaurus:CVCL_B6PU Powder 0 25250 -cellosaurus:CVCL_5J49 PP1084 0 25251 -cellosaurus:CVCL_C233 PP109 0 25252 -cellosaurus:CVCL_C234 PP117 0 25253 -cellosaurus:CVCL_C235 PP161 0 25254 -cellosaurus:CVCL_C236 PP78 0 25255 -cellosaurus:CVCL_F007 PP984 0 25256 -cellosaurus:CVCL_E110 PPM-Mill 0 25257 -cellosaurus:CVCL_V417 PPM-Phi 0 25258 -cellosaurus:CVCL_7113 PR-Mel 0 25259 -cellosaurus:CVCL_DH43 PR1 [Human diffuse large B-cell lymphoma] 0 25260 -cellosaurus:CVCL_H730 PR310 0 25261 -cellosaurus:CVCL_L210 PR371 0 25262 -cellosaurus:CVCL_IU85 Pre-Alp 0 25263 -cellosaurus:CVCL_N817 PRO 0 25264 -cellosaurus:CVCL_7207 PRT-HU2 0 25265 -cellosaurus:CVCL_VN19 PRU-1 0 25266 -cellosaurus:CVCL_4892 PS-1 [Human urinary bladder carcinoma] 0 25267 -cellosaurus:CVCL_4894 PSK-1 0 25268 -cellosaurus:CVCL_0I21 Pt.Kich-1 0 25269 -cellosaurus:CVCL_8404 PT101 0 25270 -cellosaurus:CVCL_8405 PT103 0 25271 -cellosaurus:CVCL_8406 PT115 0 25272 -cellosaurus:CVCL_A9E6 PT12 0 25273 -cellosaurus:CVCL_0C59 PT6216 0 25274 -cellosaurus:CVCL_8410 PT64 0 25275 -cellosaurus:CVCL_8411 PT89 0 25276 -cellosaurus:CVCL_8412 PT96 0 25277 -cellosaurus:CVCL_W918 PTC032210 0 25278 -cellosaurus:CVCL_IU76 PTHrP-GBK 0 25279 -cellosaurus:CVCL_W353 PTLC-1 0 25280 -cellosaurus:CVCL_ZE15 PUC-GBC1 0 25281 -cellosaurus:CVCL_ZE16 PUC-GBC2 0 25282 -cellosaurus:CVCL_ZE17 PUC-GBC3 0 25283 -cellosaurus:CVCL_A9DD PUMC-CRC1 0 25284 -cellosaurus:CVCL_C856 PV10 0 25285 -cellosaurus:CVCL_QY93 PW 0 25286 -cellosaurus:CVCL_V487 PWH-S1 0 25287 -cellosaurus:CVCL_4994 PXN/94 0 25288 -cellosaurus:CVCL_6943 QG-56 0 25289 -cellosaurus:CVCL_S980 QG-90 0 25290 -cellosaurus:CVCL_S847 QG-95 0 25291 -cellosaurus:CVCL_S981 QG-96 0 25292 -cellosaurus:CVCL_A462 QG-H 0 25293 -cellosaurus:CVCL_IM29 QG-K 0 25294 -cellosaurus:CVCL_3778 QG-U 0 25295 -cellosaurus:CVCL_3143 QGP-1 0 25296 -cellosaurus:CVCL_M346 QGY-8105 0 25297 -cellosaurus:CVCL_VS43 QIMR-BAH1 0 25298 -cellosaurus:CVCL_W752 QIMR-FIN 0 25299 -cellosaurus:CVCL_VS44 QIMR-FPW1 0 25300 -cellosaurus:CVCL_M648 QIMR-GOR 0 25301 -cellosaurus:CVCL_VS45 QIMR-HW1 0 25302 -cellosaurus:CVCL_VS46 QIMR-JK2 0 25303 -cellosaurus:CVCL_VS47 QIMR-MMK1 0 25304 -cellosaurus:CVCL_VS48 QIMR-MN1 0 25305 -cellosaurus:CVCL_VS49 QIMR-PB1 0 25306 -cellosaurus:CVCL_VS50 QIMR-RKI1 0 25307 -cellosaurus:CVCL_VS51 QIMR-RN1 0 25308 -cellosaurus:CVCL_VS52 QIMR-SB2b 0 25309 -cellosaurus:CVCL_VS53 QIMR-SJH1 0 25310 -cellosaurus:CVCL_1645 QIMR-WIL 0 25311 -cellosaurus:CVCL_VS54 QIMR-WK1 0 25312 -cellosaurus:CVCL_W779 QIMR-WW1-BL 0 25313 -cellosaurus:CVCL_W780 QIMR-WW2-BL 0 25314 -cellosaurus:CVCL_U106 QU-DB 0 25315 -cellosaurus:CVCL_M670 R105 0 25316 -cellosaurus:CVCL_4895 R198 0 25317 -cellosaurus:CVCL_UJ98 R2J 0 25318 -cellosaurus:CVCL_F276 R59 0 25319 -cellosaurus:CVCL_8413 R89 0 25320 -cellosaurus:CVCL_7208 Rael 0 25321 -cellosaurus:CVCL_WH09 RAL 0 25322 -cellosaurus:CVCL_M787 RARE 0 25323 -cellosaurus:CVCL_ZF24 RB(E)-3 0 25324 -cellosaurus:CVCL_ZF25 RB(E)-5 0 25325 -cellosaurus:CVCL_S624 RB1021 0 25326 -cellosaurus:CVCL_ZF17 RB1037 0 25327 -cellosaurus:CVCL_S608 RB116 0 25328 -cellosaurus:CVCL_ZF19 RB1210 0 25329 -cellosaurus:CVCL_ZF20 RB1224 0 25330 -cellosaurus:CVCL_ZF21 RB1335 0 25331 -cellosaurus:CVCL_ZF22 RB1355 0 25332 -cellosaurus:CVCL_5I30 RB143 0 25333 -cellosaurus:CVCL_ZF39 RB1442 0 25334 -cellosaurus:CVCL_ZF23 RB1518 0 25335 -cellosaurus:CVCL_JG69 RB188Tu 0 25336 -cellosaurus:CVCL_2704 RB247C 0 25337 -cellosaurus:CVCL_HF31 RB267 0 25338 -cellosaurus:CVCL_S625 RB381 0 25339 -cellosaurus:CVCL_ZF07 RB3823 0 25340 -cellosaurus:CVCL_S626 RB383 0 25341 -cellosaurus:CVCL_S628 RB409 0 25342 -cellosaurus:CVCL_S629 RB412 0 25343 -cellosaurus:CVCL_HF32 RB429 0 25344 -cellosaurus:CVCL_S631 RB430 0 25345 -cellosaurus:CVCL_VA41 RB507 0 25346 -cellosaurus:CVCL_ZF04 RB522 0 25347 -cellosaurus:CVCL_S634 RB522A 0 25348 -cellosaurus:CVCL_ZF14 RB778 0 25349 -cellosaurus:CVCL_ZF15 RB805 0 25350 -cellosaurus:CVCL_ZF16 RB893 0 25351 -cellosaurus:CVCL_ZF18 RB898 0 25352 -cellosaurus:CVCL_S616 RBL13 0 25353 -cellosaurus:CVCL_S617 RBL14 0 25354 -cellosaurus:CVCL_S618 RBL15 0 25355 -cellosaurus:CVCL_S619 RBL18 0 25356 -cellosaurus:CVCL_S620 RBL20 0 25357 -cellosaurus:CVCL_S621 RBL30 0 25358 -cellosaurus:CVCL_S622 RBL7 0 25359 -cellosaurus:CVCL_WL02 RBM1 [Human esophagogastric carcinoma] 0 25360 -cellosaurus:CVCL_WL03 RBM2 0 25361 -cellosaurus:CVCL_WL04 RBM3 0 25362 -cellosaurus:CVCL_WL05 RBM4 0 25363 -cellosaurus:CVCL_WL06 RBM5 0 25364 -cellosaurus:CVCL_9U45 RC 0 25365 -cellosaurus:CVCL_LF74 RC-1 [Human renal cell carcinoma] 0 25366 -cellosaurus:CVCL_1883 RC-K8 0 25367 -cellosaurus:CVCL_M834 RC5397 0 25368 -cellosaurus:CVCL_R735 RCA 0 25369 -cellosaurus:CVCL_T986 RCC BA85#21 0 25370 -cellosaurus:CVCL_C3HR RCC-53 0 25371 -cellosaurus:CVCL_AX15 RCC-AL4 0 25372 -cellosaurus:CVCL_5874 RCC-GH 0 25373 -cellosaurus:CVCL_5876 RCC-GW 0 25374 -cellosaurus:CVCL_5881 RCC-KL 0 25375 -cellosaurus:CVCL_5887 RCC-PR 0 25376 -cellosaurus:CVCL_U284 RCC09HYF 0 25377 -cellosaurus:CVCL_1647 RCC10RGB 0 25378 -cellosaurus:CVCL_W849 RCC11 0 25379 -cellosaurus:CVCL_X893 RCC149 0 25380 -cellosaurus:CVCL_X890 RCC19 0 25381 -cellosaurus:CVCL_X894 RCC213 0 25382 -cellosaurus:CVCL_X895 RCC217 0 25383 -cellosaurus:CVCL_X891 RCC23 0 25384 -cellosaurus:CVCL_X898 RCC266 0 25385 -cellosaurus:CVCL_X896 RCC270 0 25386 -cellosaurus:CVCL_X892 RCC31 0 25387 -cellosaurus:CVCL_E055 RCC5 0 25388 -cellosaurus:CVCL_X534 RCC52 0 25389 -cellosaurus:CVCL_E057 RCC7 0 25390 -cellosaurus:CVCL_X897 RCC826 0 25391 -cellosaurus:CVCL_IV50 RCC96 0 25392 -cellosaurus:CVCL_X535 RCC98 0 25393 -cellosaurus:CVCL_1648 RCM-1 [Human rectal adenocarcinoma] 0 25394 -cellosaurus:CVCL_WL36 RCM-2 0 25395 -cellosaurus:CVCL_WL37 RCM-3 0 25396 -cellosaurus:CVCL_RT60 RDD6960-2 0 25397 -cellosaurus:CVCL_C577 RE-25-HOM 0 25398 -cellosaurus:CVCL_1884 REC-1 0 25399 -cellosaurus:CVCL_ER23 RECA 0 25400 -cellosaurus:CVCL_M202 REN 0 25401 -cellosaurus:CVCL_3152 RERF-GC-1B 0 25402 -cellosaurus:CVCL_1651 RERF-LC-Ad1 0 25403 -cellosaurus:CVCL_1652 RERF-LC-Ad2 0 25404 -cellosaurus:CVCL_1653 RERF-LC-FM 0 25405 -cellosaurus:CVCL_A1FQ RERF-LC-MK 0 25406 -cellosaurus:CVCL_1655 RERF-LC-MS 0 25407 -cellosaurus:CVCL_A473 RERF-LC-MT 0 25408 -cellosaurus:CVCL_DG03 Res186 0 25409 -cellosaurus:CVCL_DG04 Res196 0 25410 -cellosaurus:CVCL_DG05 Res199 0 25411 -cellosaurus:CVCL_DG06 Res251 0 25412 -cellosaurus:CVCL_DG07 Res253 0 25413 -cellosaurus:CVCL_DG08 Res254 0 25414 -cellosaurus:CVCL_DG09 Res256 0 25415 -cellosaurus:CVCL_DG10 Res259 0 25416 -cellosaurus:CVCL_VU83 Res262 0 25417 -cellosaurus:CVCL_DG11 Res280 0 25418 -cellosaurus:CVCL_DG12 Res286 0 25419 -cellosaurus:CVCL_VU84 Res300 0 25420 -cellosaurus:CVCL_VU85 Res308 0 25421 -cellosaurus:CVCL_VJ81 RET981 0 25422 -cellosaurus:CVCL_B501 REX 0 25423 -cellosaurus:CVCL_3580 RF-1 0 25424 -cellosaurus:CVCL_1657 RF-48 0 25425 -cellosaurus:CVCL_0C24 RG-1 [Human lung carcinoma] 0 25426 -cellosaurus:CVCL_K240 RH-L4 0 25427 -cellosaurus:CVCL_U974 RH-SCC-L10 0 25428 -cellosaurus:CVCL_U972 RH-SLC-L12 0 25429 -cellosaurus:CVCL_U973 RH-SLC-L13 0 25430 -cellosaurus:CVCL_8750 Rh10 0 25431 -cellosaurus:CVCL_S638 Rh12 0 25432 -cellosaurus:CVCL_A460 Rh2 0 25433 -cellosaurus:CVCL_L415 Rh3 0 25434 -cellosaurus:CVCL_M599 Rh36 0 25435 -cellosaurus:CVCL_5916 Rh4 0 25436 -cellosaurus:CVCL_5917 Rh5 0 25437 -cellosaurus:CVCL_S639 Rh6 0 25438 -cellosaurus:CVCL_Y583 Rh7 0 25439 -cellosaurus:CVCL_RY57 RHB1 0 25440 -cellosaurus:CVCL_VU81 RhJT 0 25441 -cellosaurus:CVCL_1885 Ri-1 0 25442 -cellosaurus:CVCL_S922 RIC-2 0 25443 -cellosaurus:CVCL_A8US RIT-1b 0 25444 -cellosaurus:CVCL_RK39 RIT-2 0 25445 -cellosaurus:CVCL_RK40 RIT-3 0 25446 -cellosaurus:CVCL_RK41 RIT-5 0 25447 -cellosaurus:CVCL_RK42 RIT-6 0 25448 -cellosaurus:CVCL_H197 RJ002L 0 25449 -cellosaurus:CVCL_3156 RKN 0 25450 -cellosaurus:CVCL_1660 RL 0 25451 -cellosaurus:CVCL_S900 RL-251 0 25452 -cellosaurus:CVCL_AS76 RL159 0 25453 -cellosaurus:CVCL_0505 RL95-2 0 25454 -cellosaurus:CVCL_9714 RM-82 0 25455 -cellosaurus:CVCL_N851 RM-HS1 0 25456 -cellosaurus:CVCL_JG30 RM-P1 0 25457 -cellosaurus:CVCL_M845 RM1 [Human Wilms tumor] 0 25458 -cellosaurus:CVCL_YQ08 RM43 0 25459 -cellosaurus:CVCL_B3PS RMC2C 0 25460 -cellosaurus:CVCL_M257 RMCCA-1 0 25461 -cellosaurus:CVCL_2803 RMG-II 0 25462 -cellosaurus:CVCL_M716 RMG-V 0 25463 -cellosaurus:CVCL_W527 RMS 0 25464 -cellosaurus:CVCL_UF94 RMS-1 0 25465 -cellosaurus:CVCL_UF97 RMS-11 0 25466 -cellosaurus:CVCL_UF99 RMS-14 0 25467 -cellosaurus:CVCL_UG00 RMS-15 0 25468 -cellosaurus:CVCL_UG01 RMS-16 0 25469 -cellosaurus:CVCL_UG02 RMS-17 0 25470 -cellosaurus:CVCL_UG03 RMS-18 0 25471 -cellosaurus:CVCL_UG04 RMS-19 0 25472 -cellosaurus:CVCL_UG05 RMS-20 0 25473 -cellosaurus:CVCL_UG06 RMS-21 0 25474 -cellosaurus:CVCL_UF95 RMS-4 0 25475 -cellosaurus:CVCL_UF96 RMS-5 0 25476 -cellosaurus:CVCL_EJ67 RMS-A1 0 25477 -cellosaurus:CVCL_EJ68 RMS-E2 0 25478 -cellosaurus:CVCL_EJ69 RMS-E3 0 25479 -cellosaurus:CVCL_Y577 RMS-GR 0 25480 -cellosaurus:CVCL_A792 RMS-YM 0 25481 -cellosaurus:CVCL_QW87 RMS176 0 25482 -cellosaurus:CVCL_S640 RMS559 0 25483 -cellosaurus:CVCL_3158 RMUG-S 0 25484 -cellosaurus:CVCL_9895 RN-GA 0 25485 -cellosaurus:CVCL_U878 Ro 0 25486 -cellosaurus:CVCL_N818 ROB [Human mesothelioma] 0 25487 -cellosaurus:CVCL_VQ05 ROS 184 0 25488 -cellosaurus:CVCL_ZU68 ROS-16 0 25489 -cellosaurus:CVCL_QZ50 ROS-17 0 25490 -cellosaurus:CVCL_1887 ROS-50 0 25491 -cellosaurus:CVCL_A5AJ Rosi 0 25492 -cellosaurus:CVCL_5166 ROVA 0 25493 -cellosaurus:CVCL_M542 RPM-EP 0 25494 -cellosaurus:CVCL_UJ86 RPMI-1358 0 25495 -cellosaurus:CVCL_T297 RPMI-1694 0 25496 -cellosaurus:CVCL_T298 RPMI-1695 0 25497 -cellosaurus:CVCL_LK70 RPMI-1720 0 25498 -cellosaurus:CVCL_RP63 RPMI-1922 0 25499 -cellosaurus:CVCL_1664 RPMI-2650 0 25500 -cellosaurus:CVCL_T295 RPMI-3236 0 25501 -cellosaurus:CVCL_F530 RPMI-4265 0 25502 -cellosaurus:CVCL_T296 RPMI-4445 0 25503 -cellosaurus:CVCL_UJ65 RPMI-4666 0 25504 -cellosaurus:CVCL_LH81 RPMI-4767 0 25505 -cellosaurus:CVCL_LH82 RPMI-5615 0 25506 -cellosaurus:CVCL_UJ66 RPMI-5866 0 25507 -cellosaurus:CVCL_1E28 RPMI-5959 0 25508 -cellosaurus:CVCL_T294 RPMI-5966 0 25509 -cellosaurus:CVCL_8074 RPMI-6410 0 25510 -cellosaurus:CVCL_LH83 RPMI-6642 0 25511 -cellosaurus:CVCL_LH84 RPMI-6738 0 25512 -cellosaurus:CVCL_LH85 RPMI-7031 0 25513 -cellosaurus:CVCL_T313 RPMI-7262 0 25514 -cellosaurus:CVCL_T314 RPMI-7272 0 25515 -cellosaurus:CVCL_UJ83 RPMI-7437 0 25516 -cellosaurus:CVCL_LH86 RPMI-7449 0 25517 -cellosaurus:CVCL_X403 RPMI-7451 0 25518 -cellosaurus:CVCL_LH87 RPMI-7821 0 25519 -cellosaurus:CVCL_T299 RPMI-7865 0 25520 -cellosaurus:CVCL_3951 RPMI-7931 0 25521 -cellosaurus:CVCL_1666 RPMI-7951 0 25522 -cellosaurus:CVCL_T319 RPMI-7962 0 25523 -cellosaurus:CVCL_T320 RPMI-7972 0 25524 -cellosaurus:CVCL_T301 RPMI-8195 0 25525 -cellosaurus:CVCL_T302 RPMI-8205 0 25526 -cellosaurus:CVCL_T303 RPMI-8235 0 25527 -cellosaurus:CVCL_T323 RPMI-8252 0 25528 -cellosaurus:CVCL_UJ84 RPMI-8265 0 25529 -cellosaurus:CVCL_LH88 RPMI-8312 0 25530 -cellosaurus:CVCL_UJ85 RPMI-8337 0 25531 -cellosaurus:CVCL_U115 RPMI-8342 0 25532 -cellosaurus:CVCL_X375 RPMI-8362 0 25533 -cellosaurus:CVCL_X376 RPMI-8372 0 25534 -cellosaurus:CVCL_T300 RPMI-9154 0 25535 -cellosaurus:CVCL_DD42 RPMI-M7021 0 25536 -cellosaurus:CVCL_LH89 RPMI-M7041 0 25537 -cellosaurus:CVCL_UI85 RR 0 25538 -cellosaurus:CVCL_A7NK RRBL1 0 25539 -cellosaurus:CVCL_JL75 RS-1 [Human primitive neuroectodermal tumor] 0 25540 -cellosaurus:CVCL_8424 RS-2 0 25541 -cellosaurus:CVCL_2182 RS-5 0 25542 -cellosaurus:CVCL_9715 RS-63 0 25543 -cellosaurus:CVCL_E048 RS11846 0 25544 -cellosaurus:CVCL_X900 RSC261 0 25545 -cellosaurus:CVCL_UI99 RT [Human] 0 25546 -cellosaurus:CVCL_X899 RTC274 0 25547 -cellosaurus:CVCL_M748 RTCC-1/KMC 0 25548 -cellosaurus:CVCL_4W74 RTK [Human kidney tumor] 0 25549 -cellosaurus:CVCL_EJ24 RTK(J)-4N 0 25550 -cellosaurus:CVCL_C540 RUCH-2 0 25551 -cellosaurus:CVCL_C541 RUCH-3 0 25552 -cellosaurus:CVCL_W793 RVH-6849 0 25553 -cellosaurus:CVCL_D176 RW-5928 0 25554 -cellosaurus:CVCL_D175 RW-7213 0 25555 -cellosaurus:CVCL_WS77 RW-972 0 25556 -cellosaurus:CVCL_RT61 RWD3051 0 25557 -cellosaurus:CVCL_RT62 RWD5700-1 0 25558 -cellosaurus:CVCL_4373 RWP-1 0 25559 -cellosaurus:CVCL_4374 RWP-2 0 25560 -cellosaurus:CVCL_AV57 RWV366T 0 25561 -cellosaurus:CVCL_1673 RXF 393L 0 25562 -cellosaurus:CVCL_D126 RXF 486L 0 25563 -cellosaurus:CVCL_A780 RXF 631L 0 25564 -cellosaurus:CVCL_D127 RXF 944L 0 25565 -cellosaurus:CVCL_B374 S-1 0 25566 -cellosaurus:CVCL_1674 S-117 0 25567 -cellosaurus:CVCL_4719 S-2 0 25568 -cellosaurus:CVCL_DG18 S-496 0 25569 -cellosaurus:CVCL_IW25 S-7512 0 25570 -cellosaurus:CVCL_R854 S-TFE 0 25571 -cellosaurus:CVCL_8754 S/AN 0 25572 -cellosaurus:CVCL_8755 S/BR 0 25573 -cellosaurus:CVCL_IM71 S19L 0 25574 -cellosaurus:CVCL_B7P4 S1T 0 25575 -cellosaurus:CVCL_AX35 S520 0 25576 -cellosaurus:CVCL_5585 S68 0 25577 -cellosaurus:CVCL_AX36 S805 0 25578 -cellosaurus:CVCL_8908 SA101 0 25579 -cellosaurus:CVCL_A3BK SA134 0 25580 -cellosaurus:CVCL_A3BL SA137 0 25581 -cellosaurus:CVCL_8063 Sa3 0 25582 -cellosaurus:CVCL_8909 SA39 0 25583 -cellosaurus:CVCL_X210 SA4 [Human glioblastoma] 0 25584 -cellosaurus:CVCL_8911 SA44 0 25585 -cellosaurus:CVCL_8912 SA45 0 25586 -cellosaurus:CVCL_M546 Sa5 0 25587 -cellosaurus:CVCL_U956 SaBa 0 25588 -cellosaurus:CVCL_M501 SACHI 0 25589 -cellosaurus:CVCL_1E92 Safi-1 0 25590 -cellosaurus:CVCL_7209 Sal-BL 0 25591 -cellosaurus:CVCL_S862 SAL1 0 25592 -cellosaurus:CVCL_F122 SAL2 0 25593 -cellosaurus:CVCL_ZI21 Salim Mwalin 0 25594 -cellosaurus:CVCL_QZ48 SALT-12 0 25595 -cellosaurus:CVCL_9998 SAML-2 0 25596 -cellosaurus:CVCL_1E51 SaOS-1 0 25597 -cellosaurus:CVCL_HE81 SAR-HCV 0 25598 -cellosaurus:CVCL_5G89 Sarc9371 0 25599 -cellosaurus:CVCL_N852 SARCCR2 0 25600 -cellosaurus:CVCL_5890 SAS-1 0 25601 -cellosaurus:CVCL_RM18 SAS413 0 25602 -cellosaurus:CVCL_RM19 SAS527 0 25603 -cellosaurus:CVCL_3160 SAT [Human HNSCC] 0 25604 -cellosaurus:CVCL_UD54 SAU 0 25605 -cellosaurus:CVCL_7210 Sav-BL 0 25606 -cellosaurus:CVCL_4898 Sawano 0 25607 -cellosaurus:CVCL_0516 SB-2 0 25608 -cellosaurus:CVCL_9U48 SB-3 0 25609 -cellosaurus:CVCL_VJ93 SB.06 0 25610 -cellosaurus:CVCL_VJ94 SB.07 0 25611 -cellosaurus:CVCL_VJ95 SB.12 0 25612 -cellosaurus:CVCL_UI93 SB1685CB 0 25613 -cellosaurus:CVCL_UI94 SB1690CB 0 25614 -cellosaurus:CVCL_C394 SB247 0 25615 -cellosaurus:CVCL_A2CN SBA-16 0 25616 -cellosaurus:CVCL_A2CP SBA-6 0 25617 -cellosaurus:CVCL_1676 SBC-1 0 25618 -cellosaurus:CVCL_UW50 SBC-10 0 25619 -cellosaurus:CVCL_W531 SBC-2 [Human SCLC] 0 25620 -cellosaurus:CVCL_A479 SBC-4 0 25621 -cellosaurus:CVCL_1679 SBC-5 0 25622 -cellosaurus:CVCL_DH97 SBC-6 0 25623 -cellosaurus:CVCL_W530 SBC-7 [Human SCLC] 0 25624 -cellosaurus:CVCL_DH98 SBC-9A 0 25625 -cellosaurus:CVCL_UW49 SBC-9B 0 25626 -cellosaurus:CVCL_D731 SBcl1 0 25627 -cellosaurus:CVCL_D732 SBcl2 0 25628 -cellosaurus:CVCL_VW99 SBcl3 0 25629 -cellosaurus:CVCL_RL85 SBH-1 0 25630 -cellosaurus:CVCL_A8HX SBKMS-KS1 0 25631 -cellosaurus:CVCL_HX10 SBN 0 25632 -cellosaurus:CVCL_E269 SBOT-3.1 0 25633 -cellosaurus:CVCL_1888 Sc-1 0 25634 -cellosaurus:CVCL_G299 SC-M1 0 25635 -cellosaurus:CVCL_3599 SCaBER 0 25636 -cellosaurus:CVCL_4029 SCC-13 0 25637 -cellosaurus:CVCL_M668 SCC-1CB 0 25638 -cellosaurus:CVCL_1683 SCC-3 0 25639 -cellosaurus:CVCL_7115 SCC-35 0 25640 -cellosaurus:CVCL_1684 SCC-4 0 25641 -cellosaurus:CVCL_M666 SCC-40 0 25642 -cellosaurus:CVCL_7116 SCC-49 0 25643 -cellosaurus:CVCL_7117 SCC-50 0 25644 -cellosaurus:CVCL_7119 SCC-66 0 25645 -cellosaurus:CVCL_M667 SCC-68 0 25646 -cellosaurus:CVCL_7120 SCC-71 0 25647 -cellosaurus:CVCL_7121 SCC-73 0 25648 -cellosaurus:CVCL_7122 SCC-76 0 25649 -cellosaurus:CVCL_1685 SCC-9 0 25650 -cellosaurus:CVCL_1R13 SCC-TC 0 25651 -cellosaurus:CVCL_D072 SCC210011 0 25652 -cellosaurus:CVCL_D073 SCC211441 0 25653 -cellosaurus:CVCL_9U49 SCC60 0 25654 -cellosaurus:CVCL_3161 SCCH-196 0 25655 -cellosaurus:CVCL_1686 SCCH-26 0 25656 -cellosaurus:CVCL_G300 SCCIC1 0 25657 -cellosaurus:CVCL_G301 SCCIC12 0 25658 -cellosaurus:CVCL_VJ51 SCCIC15 0 25659 -cellosaurus:CVCL_VJ52 SCCIC18 0 25660 -cellosaurus:CVCL_VJ53 SCCIC19 0 25661 -cellosaurus:CVCL_VJ58 SCCIC1Met 0 25662 -cellosaurus:CVCL_VJ54 SCCIC21 0 25663 -cellosaurus:CVCL_VJ55 SCCIC4 0 25664 -cellosaurus:CVCL_G302 SCCIC8 0 25665 -cellosaurus:CVCL_X162 SCCMM 0 25666 -cellosaurus:CVCL_X156 SCCNC1 0 25667 -cellosaurus:CVCL_X157 SCCNC2 0 25668 -cellosaurus:CVCL_X158 SCCNC4 0 25669 -cellosaurus:CVCL_X159 SCCNC5 0 25670 -cellosaurus:CVCL_X160 SCCNC6 0 25671 -cellosaurus:CVCL_X161 SCCNC7 0 25672 -cellosaurus:CVCL_A7DR SCCNij153 0 25673 -cellosaurus:CVCL_A7DS SCCNij167 0 25674 -cellosaurus:CVCL_A7DT SCCNij172 0 25675 -cellosaurus:CVCL_A7DU SCCNij185 0 25676 -cellosaurus:CVCL_A7DV SCCNij202 0 25677 -cellosaurus:CVCL_VU69 SCCOHT-1 0 25678 -cellosaurus:CVCL_G303 SCCRDEB2 0 25679 -cellosaurus:CVCL_G304 SCCRDEB3 0 25680 -cellosaurus:CVCL_G305 SCCRDEB4 0 25681 -cellosaurus:CVCL_G306 SCCRDEB5 0 25682 -cellosaurus:CVCL_G307 SCCT1 0 25683 -cellosaurus:CVCL_VJ56 SCCT10 0 25684 -cellosaurus:CVCL_VJ57 SCCT11 0 25685 -cellosaurus:CVCL_G308 SCCT2 0 25686 -cellosaurus:CVCL_G309 SCCT3 0 25687 -cellosaurus:CVCL_G310 SCCT8 0 25688 -cellosaurus:CVCL_VJ50 SCCT9 0 25689 -cellosaurus:CVCL_1687 SCH 0 25690 -cellosaurus:CVCL_S923 SCHM-1 0 25691 -cellosaurus:CVCL_M271 SCK 0 25692 -cellosaurus:CVCL_B462 SCKO-1 0 25693 -cellosaurus:CVCL_A790 SCL-II 0 25694 -cellosaurus:CVCL_X023 SCLC-203H 0 25695 -cellosaurus:CVCL_2186 SCLC-22H 0 25696 -cellosaurus:CVCL_8263 SCLC-86M1 0 25697 -cellosaurus:CVCL_X024 SCLC-86M2 0 25698 -cellosaurus:CVCL_B7JK SCLC-J1 0 25699 -cellosaurus:CVCL_WH07 SCLC-R1 0 25700 -cellosaurus:CVCL_7123 SCMC-ES1 0 25701 -cellosaurus:CVCL_7124 SCMC-ES2 0 25702 -cellosaurus:CVCL_7125 SCMC-L1 0 25703 -cellosaurus:CVCL_7126 SCMC-L10 0 25704 -cellosaurus:CVCL_7127 SCMC-L11 0 25705 -cellosaurus:CVCL_7128 SCMC-L2 0 25706 -cellosaurus:CVCL_7129 SCMC-L20 0 25707 -cellosaurus:CVCL_G318 SCMC-L3 0 25708 -cellosaurus:CVCL_G319 SCMC-L4 0 25709 -cellosaurus:CVCL_7130 SCMC-L9 0 25710 -cellosaurus:CVCL_5921 SCMC-N2 0 25711 -cellosaurus:CVCL_5922 SCMC-N3 0 25712 -cellosaurus:CVCL_5923 SCMC-N4 0 25713 -cellosaurus:CVCL_5924 SCMC-N5 0 25714 -cellosaurus:CVCL_UF92 SCMC-RM1 0 25715 -cellosaurus:CVCL_UF79 SCMC-W1 0 25716 -cellosaurus:CVCL_UF80 SCMC-W2 0 25717 -cellosaurus:CVCL_W962 SCRC-1 0 25718 -cellosaurus:CVCL_WU91 SCS214 0 25719 -cellosaurus:CVCL_GZ04 SCSC [Human gingival carcinoma] 0 25720 -cellosaurus:CVCL_W902 SD 0 25721 -cellosaurus:CVCL_0G04 SD-4 0 25722 -cellosaurus:CVCL_AV63 SDAR1 0 25723 -cellosaurus:CVCL_AV64 SDAR2 0 25724 -cellosaurus:CVCL_AV65 SDAR3 0 25725 -cellosaurus:CVCL_D313 SDM103T2 0 25726 -cellosaurus:CVCL_B7MS SDM117 0 25727 -cellosaurus:CVCL_B7MT SDM161 0 25728 -cellosaurus:CVCL_IT31 SDM34 0 25729 -cellosaurus:CVCL_IT32 SDM4 0 25730 -cellosaurus:CVCL_IT33 SDM5 0 25731 -cellosaurus:CVCL_5363 Se-Ax 0 25732 -cellosaurus:CVCL_IV33 SE686 0 25733 -cellosaurus:CVCL_3162 SEKI 0 25734 -cellosaurus:CVCL_AS13 Seki 0 25735 -cellosaurus:CVCL_JG84 SEKI-45 0 25736 -cellosaurus:CVCL_T013 SEM-1 0 25737 -cellosaurus:CVCL_M646 Seraphina 0 25738 -cellosaurus:CVCL_M778 SESX 0 25739 -cellosaurus:CVCL_2187 SET-2 0 25740 -cellosaurus:CVCL_8330 Sez-4 0 25741 -cellosaurus:CVCL_A6TM Sez507 0 25742 -cellosaurus:CVCL_ZC28 SF [Human diffuse large B-cell lymphoma] 0 25743 -cellosaurus:CVCL_1688 SF126 0 25744 -cellosaurus:CVCL_6947 SF17 0 25745 -cellosaurus:CVCL_M425 SF210 0 25746 -cellosaurus:CVCL_1689 SF268 0 25747 -cellosaurus:CVCL_IT46 SF8628 0 25748 -cellosaurus:CVCL_JX15 SFCC 0 25749 -cellosaurus:CVCL_IS67 SFT-8606 0 25750 -cellosaurus:CVCL_M617 SG 0 25751 -cellosaurus:CVCL_0519 SG231 0 25752 -cellosaurus:CVCL_A1ZU SG568 0 25753 -cellosaurus:CVCL_M737 SGC-996 0 25754 -cellosaurus:CVCL_X538 SGE-RC 0 25755 -cellosaurus:CVCL_A1RU SGF-3 0 25756 -cellosaurus:CVCL_A1RV SGF-4 0 25757 -cellosaurus:CVCL_A1RW SGF-5 0 25758 -cellosaurus:CVCL_A1RX SGF-7 0 25759 -cellosaurus:CVCL_A1RY SGF-8 0 25760 -cellosaurus:CVCL_A1RZ SGF-9 0 25761 -cellosaurus:CVCL_VS33 SGM2 0 25762 -cellosaurus:CVCL_VS34 SGM3 0 25763 -cellosaurus:CVCL_VS35 SGM4 0 25764 -cellosaurus:CVCL_VS36 SGM5 0 25765 -cellosaurus:CVCL_VS37 SGM6 0 25766 -cellosaurus:CVCL_1E45 Sh #1 0 25767 -cellosaurus:CVCL_5167 SH-10-TC 0 25768 -cellosaurus:CVCL_2190 SH-2 [Human leukemia] 0 25769 -cellosaurus:CVCL_S708 SH-224 0 25770 -cellosaurus:CVCL_S709 SH-289 0 25771 -cellosaurus:CVCL_C585 SH-39-HOM 0 25772 -cellosaurus:CVCL_1692 SH-4 0 25773 -cellosaurus:CVCL_S710 SH-405 0 25774 -cellosaurus:CVCL_S711 SH-416 0 25775 -cellosaurus:CVCL_S712 SH-437 0 25776 -cellosaurus:CVCL_S713 SH-450 0 25777 -cellosaurus:CVCL_S714 SH-498 0 25778 -cellosaurus:CVCL_S715 SH-543 0 25779 -cellosaurus:CVCL_0C25 SH-A 0 25780 -cellosaurus:CVCL_HE82 SH-J1 0 25781 -cellosaurus:CVCL_D522 SHAC 0 25782 -cellosaurus:CVCL_HE83 sHCC29 0 25783 -cellosaurus:CVCL_HE84 sHCC63 0 25784 -cellosaurus:CVCL_HE85 sHCC74 0 25785 -cellosaurus:CVCL_M782 SHER-I 0 25786 -cellosaurus:CVCL_2H28 SHG-139 0 25787 -cellosaurus:CVCL_A0XC SHG-140 0 25788 -cellosaurus:CVCL_IQ83 SHH-1 0 25789 -cellosaurus:CVCL_2191 SHI-1 0 25790 -cellosaurus:CVCL_B3QN ShK 0 25791 -cellosaurus:CVCL_A1ZT SHO 0 25792 -cellosaurus:CVCL_XJ63 SHOV4 0 25793 -cellosaurus:CVCL_1693 SHP-77 0 25794 -cellosaurus:CVCL_IQ81 SHT-1 0 25795 -cellosaurus:CVCL_VJ92 SIAC1 0 25796 -cellosaurus:CVCL_S924 SIB-1 0 25797 -cellosaurus:CVCL_1694 SIG-M5 0 25798 -cellosaurus:CVCL_W318 SIHN-005A 0 25799 -cellosaurus:CVCL_W319 SIHN-005B 0 25800 -cellosaurus:CVCL_H947 SIHN-006 0 25801 -cellosaurus:CVCL_W320 SIHN-008 0 25802 -cellosaurus:CVCL_W321 SIHN-011A 0 25803 -cellosaurus:CVCL_W322 SIHN-011B 0 25804 -cellosaurus:CVCL_W323 SIHN-013 0 25805 -cellosaurus:CVCL_W325 SIHN-013/2 0 25806 -cellosaurus:CVCL_W324 SIHN-015B 0 25807 -cellosaurus:CVCL_W326 SIHN-034B 0 25808 -cellosaurus:CVCL_D525 SIK 0 25809 -cellosaurus:CVCL_W936 Silfere 0 25810 -cellosaurus:CVCL_QW70 Silvanus 0 25811 -cellosaurus:CVCL_0097 SIM/EW27 0 25812 -cellosaurus:CVCL_M783 SINJ 0 25813 -cellosaurus:CVCL_2193 SiSo 0 25814 -cellosaurus:CVCL_S860 SJ-89 0 25815 -cellosaurus:CVCL_C1NF SJ-DIPGX29c 0 25816 -cellosaurus:CVCL_C1NG SJ-DIPGX37c 0 25817 -cellosaurus:CVCL_C1NH SJ-DIPGX7c 0 25818 -cellosaurus:CVCL_C1NI SJ-DIPGX9c 0 25819 -cellosaurus:CVCL_M141 SJ-GBM2 0 25820 -cellosaurus:CVCL_A8SF SJ-GBM3 0 25821 -cellosaurus:CVCL_A8SE SJ-GBM5 0 25822 -cellosaurus:CVCL_C1NJ SJ-HGGX2c 0 25823 -cellosaurus:CVCL_C1NK SJ-HGGX39c 0 25824 -cellosaurus:CVCL_C1NL SJ-HGGX42c 0 25825 -cellosaurus:CVCL_C1NM SJ-HGGX6c 0 25826 -cellosaurus:CVCL_Y141 SJ-N-CG 0 25827 -cellosaurus:CVCL_4608 SJ-N-KP 0 25828 -cellosaurus:CVCL_AQ32 SJ-S6 0 25829 -cellosaurus:CVCL_5168 SJES-1 0 25830 -cellosaurus:CVCL_5169 SJES-2 0 25831 -cellosaurus:CVCL_5170 SJES-3 0 25832 -cellosaurus:CVCL_A459 SJES-4 0 25833 -cellosaurus:CVCL_5171 SJES-5 0 25834 -cellosaurus:CVCL_5172 SJES-6 0 25835 -cellosaurus:CVCL_5173 SJES-7 0 25836 -cellosaurus:CVCL_5174 SJES-8 0 25837 -cellosaurus:CVCL_WV25 SJG-1 0 25838 -cellosaurus:CVCL_WV30 SJG-12 0 25839 -cellosaurus:CVCL_WV10 SJG-13 0 25840 -cellosaurus:CVCL_WV31 SJG-14 0 25841 -cellosaurus:CVCL_WV24 SJG-15 0 25842 -cellosaurus:CVCL_WV32 SJG-16 0 25843 -cellosaurus:CVCL_WV11 SJG-17 0 25844 -cellosaurus:CVCL_WV12 SJG-18 0 25845 -cellosaurus:CVCL_WV33 SJG-19 0 25846 -cellosaurus:CVCL_WV26 SJG-2 0 25847 -cellosaurus:CVCL_WV34 SJG-20 0 25848 -cellosaurus:CVCL_WV35 SJG-21 0 25849 -cellosaurus:CVCL_WV36 SJG-22 0 25850 -cellosaurus:CVCL_WV37 SJG-23 0 25851 -cellosaurus:CVCL_WV38 SJG-24 0 25852 -cellosaurus:CVCL_WV39 SJG-25 0 25853 -cellosaurus:CVCL_WV13 SJG-26 0 25854 -cellosaurus:CVCL_WV14 SJG-27 0 25855 -cellosaurus:CVCL_WV15 SJG-28 0 25856 -cellosaurus:CVCL_WV46 SJG-29 0 25857 -cellosaurus:CVCL_WV06 SJG-3 0 25858 -cellosaurus:CVCL_WV45 SJG-30 0 25859 -cellosaurus:CVCL_WV16 SJG-31 0 25860 -cellosaurus:CVCL_WV17 SJG-32 0 25861 -cellosaurus:CVCL_WV18 SJG-33 0 25862 -cellosaurus:CVCL_WV47 SJG-34 0 25863 -cellosaurus:CVCL_WV48 SJG-35 0 25864 -cellosaurus:CVCL_WV49 SJG-36 0 25865 -cellosaurus:CVCL_WV19 SJG-37 0 25866 -cellosaurus:CVCL_WV50 SJG-38 0 25867 -cellosaurus:CVCL_WV51 SJG-39 0 25868 -cellosaurus:CVCL_WV07 SJG-4 0 25869 -cellosaurus:CVCL_WV52 SJG-40 0 25870 -cellosaurus:CVCL_WV20 SJG-41 0 25871 -cellosaurus:CVCL_WV21 SJG-42 0 25872 -cellosaurus:CVCL_WV53 SJG-43 0 25873 -cellosaurus:CVCL_WV54 SJG-44 0 25874 -cellosaurus:CVCL_WV27 SJG-5 0 25875 -cellosaurus:CVCL_WV08 SJG-6 0 25876 -cellosaurus:CVCL_WV28 SJG-7 0 25877 -cellosaurus:CVCL_WV09 SJG-8 0 25878 -cellosaurus:CVCL_WV29 SJG-9 0 25879 -cellosaurus:CVCL_8812 SJNB-1 0 25880 -cellosaurus:CVCL_1441 SJNB-10 0 25881 -cellosaurus:CVCL_8813 SJNB-11 0 25882 -cellosaurus:CVCL_1442 SJNB-12 0 25883 -cellosaurus:CVCL_1443 SJNB-13 0 25884 -cellosaurus:CVCL_1444 SJNB-14 0 25885 -cellosaurus:CVCL_8814 SJNB-15 0 25886 -cellosaurus:CVCL_8815 SJNB-16 0 25887 -cellosaurus:CVCL_1445 SJNB-17 0 25888 -cellosaurus:CVCL_8816 SJNB-18 0 25889 -cellosaurus:CVCL_8817 SJNB-19 0 25890 -cellosaurus:CVCL_8818 SJNB-2 0 25891 -cellosaurus:CVCL_8819 SJNB-20 0 25892 -cellosaurus:CVCL_8820 SJNB-3 0 25893 -cellosaurus:CVCL_8821 SJNB-4 0 25894 -cellosaurus:CVCL_8822 SJNB-5 0 25895 -cellosaurus:CVCL_8823 SJNB-6 0 25896 -cellosaurus:CVCL_8824 SJNB-7 0 25897 -cellosaurus:CVCL_8825 SJNB-8 0 25898 -cellosaurus:CVCL_8826 SJNB-9 0 25899 -cellosaurus:CVCL_B7RZ SJSC 0 25900 -cellosaurus:CVCL_D593 SK-9 0 25901 -cellosaurus:CVCL_T284 SK-BR-2 III 0 25902 -cellosaurus:CVCL_5217 SK-BR-5 0 25903 -cellosaurus:CVCL_5218 SK-BR-7 0 25904 -cellosaurus:CVCL_6952 SK-ChA-1 0 25905 -cellosaurus:CVCL_0626 SK-CO-1 0 25906 -cellosaurus:CVCL_GS25 SK-CO-10 0 25907 -cellosaurus:CVCL_A337 SK-CO-15 0 25908 -cellosaurus:CVCL_B5EF SK-DSRCT1 0 25909 -cellosaurus:CVCL_B5EG SK-DSRCT2 0 25910 -cellosaurus:CVCL_IX46 SK-EPD-2-R 0 25911 -cellosaurus:CVCL_0627 SK-ES-1 0 25912 -cellosaurus:CVCL_T285 SK-ES-2 0 25913 -cellosaurus:CVCL_9585 SK-GT-1 0 25914 -cellosaurus:CVCL_9584 SK-GT-3 0 25915 -cellosaurus:CVCL_1E50 SK-HD-1 0 25916 -cellosaurus:CVCL_LL62 SK-HNF-5 0 25917 -cellosaurus:CVCL_Z029 SK-JHRCC-12 0 25918 -cellosaurus:CVCL_Z030 SK-JHRCC-120 0 25919 -cellosaurus:CVCL_B3PV SK-JHRCC-219 0 25920 -cellosaurus:CVCL_B3PT SK-JHRCC-228 0 25921 -cellosaurus:CVCL_Z031 SK-JHRCC-3 0 25922 -cellosaurus:CVCL_B3PU SK-JHRCC-62-LN 0 25923 -cellosaurus:CVCL_Z032 SK-JHRCC-92 0 25924 -cellosaurus:CVCL_IU60 SK-L1 0 25925 -cellosaurus:CVCL_LK92 SK-L10 0 25926 -cellosaurus:CVCL_LK80 SK-L2 0 25927 -cellosaurus:CVCL_LK81 SK-L3 0 25928 -cellosaurus:CVCL_LK82 SK-L4 0 25929 -cellosaurus:CVCL_LK83 SK-L5 0 25930 -cellosaurus:CVCL_LK84 SK-L6 0 25931 -cellosaurus:CVCL_LK85 SK-L7 0 25932 -cellosaurus:CVCL_UH48 SK-L8 0 25933 -cellosaurus:CVCL_LK93 SK-L9 0 25934 -cellosaurus:CVCL_5458 SK-LC-1 0 25935 -cellosaurus:CVCL_5459 SK-LC-10 0 25936 -cellosaurus:CVCL_5460 SK-LC-11 0 25937 -cellosaurus:CVCL_5461 SK-LC-12 0 25938 -cellosaurus:CVCL_5462 SK-LC-13 0 25939 -cellosaurus:CVCL_5463 SK-LC-14 0 25940 -cellosaurus:CVCL_5464 SK-LC-15 0 25941 -cellosaurus:CVCL_5465 SK-LC-16 0 25942 -cellosaurus:CVCL_5466 SK-LC-17 0 25943 -cellosaurus:CVCL_5467 SK-LC-19 0 25944 -cellosaurus:CVCL_5468 SK-LC-2 0 25945 -cellosaurus:CVCL_5469 SK-LC-20 0 25946 -cellosaurus:CVCL_5470 SK-LC-21 0 25947 -cellosaurus:CVCL_5471 SK-LC-3 0 25948 -cellosaurus:CVCL_5472 SK-LC-4 0 25949 -cellosaurus:CVCL_5473 SK-LC-5 0 25950 -cellosaurus:CVCL_5474 SK-LC-6 0 25951 -cellosaurus:CVCL_5475 SK-LC-7 0 25952 -cellosaurus:CVCL_5476 SK-LC-8 0 25953 -cellosaurus:CVCL_5477 SK-LC-9 0 25954 -cellosaurus:CVCL_GS22 SK-LY-16 0 25955 -cellosaurus:CVCL_GS23 SK-LY-18 0 25956 -cellosaurus:CVCL_IX47 SK-MBL-10 0 25957 -cellosaurus:CVCL_0068 SK-MEL-1 0 25958 -cellosaurus:CVCL_6020 SK-MEL-10 0 25959 -cellosaurus:CVCL_6067 SK-MEL-100 0 25960 -cellosaurus:CVCL_6068 SK-MEL-101 0 25961 -cellosaurus:CVCL_4U05 SK-MEL-102 0 25962 -cellosaurus:CVCL_6069 SK-MEL-103 0 25963 -cellosaurus:CVCL_4U06 SK-MEL-104 0 25964 -cellosaurus:CVCL_6070 SK-MEL-105 0 25965 -cellosaurus:CVCL_6071 SK-MEL-106 0 25966 -cellosaurus:CVCL_6072 SK-MEL-108 0 25967 -cellosaurus:CVCL_6073 SK-MEL-109 0 25968 -cellosaurus:CVCL_D702 SK-MEL-11 0 25969 -cellosaurus:CVCL_3875 SK-MEL-110 0 25970 -cellosaurus:CVCL_U938 SK-MEL-111 0 25971 -cellosaurus:CVCL_6963 SK-MEL-112 0 25972 -cellosaurus:CVCL_6074 SK-MEL-113 0 25973 -cellosaurus:CVCL_U936 SK-MEL-114 0 25974 -cellosaurus:CVCL_8075 SK-MEL-115 0 25975 -cellosaurus:CVCL_6075 SK-MEL-117 0 25976 -cellosaurus:CVCL_6076 SK-MEL-118 0 25977 -cellosaurus:CVCL_6077 SK-MEL-119 0 25978 -cellosaurus:CVCL_6021 SK-MEL-12 0 25979 -cellosaurus:CVCL_4U00 SK-MEL-122 0 25980 -cellosaurus:CVCL_4U01 SK-MEL-123 0 25981 -cellosaurus:CVCL_8076 SK-MEL-124 0 25982 -cellosaurus:CVCL_4U02 SK-MEL-125 0 25983 -cellosaurus:CVCL_6078 SK-MEL-127 0 25984 -cellosaurus:CVCL_6079 SK-MEL-128 0 25985 -cellosaurus:CVCL_4U03 SK-MEL-129 0 25986 -cellosaurus:CVCL_6022 SK-MEL-13 0 25987 -cellosaurus:CVCL_6080 SK-MEL-130 0 25988 -cellosaurus:CVCL_6081 SK-MEL-131 0 25989 -cellosaurus:CVCL_4U04 SK-MEL-132 0 25990 -cellosaurus:CVCL_6082 SK-MEL-133 0 25991 -cellosaurus:CVCL_6083 SK-MEL-135 0 25992 -cellosaurus:CVCL_8077 SK-MEL-136 0 25993 -cellosaurus:CVCL_4U07 SK-MEL-139 0 25994 -cellosaurus:CVCL_6023 SK-MEL-14 0 25995 -cellosaurus:CVCL_U907 SK-MEL-140 0 25996 -cellosaurus:CVCL_6084 SK-MEL-144 0 25997 -cellosaurus:CVCL_8078 SK-MEL-145 0 25998 -cellosaurus:CVCL_6085 SK-MEL-146 0 25999 -cellosaurus:CVCL_3876 SK-MEL-147 0 26000 -cellosaurus:CVCL_6964 SK-MEL-15 0 26001 -cellosaurus:CVCL_8079 SK-MEL-150 0 26002 -cellosaurus:CVCL_IY53 SK-MEL-152 0 26003 -cellosaurus:CVCL_6087 SK-MEL-153 0 26004 -cellosaurus:CVCL_8080 SK-MEL-158 0 26005 -cellosaurus:CVCL_1E23 SK-MEL-16 0 26006 -cellosaurus:CVCL_6088 SK-MEL-161 0 26007 -cellosaurus:CVCL_4U08 SK-MEL-162 0 26008 -cellosaurus:CVCL_U940 SK-MEL-163 0 26009 -cellosaurus:CVCL_J708 SK-MEL-165 0 26010 -cellosaurus:CVCL_8081 SK-MEL-166 0 26011 -cellosaurus:CVCL_U941 SK-MEL-168 0 26012 -cellosaurus:CVCL_U942 SK-MEL-169 0 26013 -cellosaurus:CVCL_6024 SK-MEL-17 0 26014 -cellosaurus:CVCL_6089 SK-MEL-170 0 26015 -cellosaurus:CVCL_J709 SK-MEL-172 0 26016 -cellosaurus:CVCL_6090 SK-MEL-173 0 26017 -cellosaurus:CVCL_6091 SK-MEL-174 0 26018 -cellosaurus:CVCL_6092 SK-MEL-176 0 26019 -cellosaurus:CVCL_4U09 SK-MEL-177 0 26020 -cellosaurus:CVCL_6093 SK-MEL-178 0 26021 -cellosaurus:CVCL_U933 SK-MEL-18 0 26022 -cellosaurus:CVCL_6094 SK-MEL-181 0 26023 -cellosaurus:CVCL_6095 SK-MEL-182 0 26024 -cellosaurus:CVCL_6096 SK-MEL-186 0 26025 -cellosaurus:CVCL_6097 SK-MEL-187 0 26026 -cellosaurus:CVCL_6098 SK-MEL-188 0 26027 -cellosaurus:CVCL_6025 SK-MEL-19 0 26028 -cellosaurus:CVCL_6099 SK-MEL-190 0 26029 -cellosaurus:CVCL_6100 SK-MEL-191 0 26030 -cellosaurus:CVCL_6101 SK-MEL-192 0 26031 -cellosaurus:CVCL_6102 SK-MEL-196 0 26032 -cellosaurus:CVCL_8082 SK-MEL-197 0 26033 -cellosaurus:CVCL_6103 SK-MEL-198 0 26034 -cellosaurus:CVCL_6104 SK-MEL-199 0 26035 -cellosaurus:CVCL_U925 SK-MEL-20 0 26036 -cellosaurus:CVCL_6105 SK-MEL-200 0 26037 -cellosaurus:CVCL_6106 SK-MEL-202 0 26038 -cellosaurus:CVCL_U908 SK-MEL-203 0 26039 -cellosaurus:CVCL_U909 SK-MEL-204 0 26040 -cellosaurus:CVCL_6107 SK-MEL-205 0 26041 -cellosaurus:CVCL_6108 SK-MEL-207 0 26042 -cellosaurus:CVCL_6109 SK-MEL-208 0 26043 -cellosaurus:CVCL_6110 SK-MEL-209 0 26044 -cellosaurus:CVCL_3877 SK-MEL-21 0 26045 -cellosaurus:CVCL_D772 SK-MEL-210-3 0 26046 -cellosaurus:CVCL_U911 SK-MEL-215-1 0 26047 -cellosaurus:CVCL_6111 SK-MEL-217 0 26048 -cellosaurus:CVCL_6026 SK-MEL-22 0 26049 -cellosaurus:CVCL_6112 SK-MEL-222 0 26050 -cellosaurus:CVCL_6113 SK-MEL-227 0 26051 -cellosaurus:CVCL_6114 SK-MEL-228 0 26052 -cellosaurus:CVCL_6115 SK-MEL-229 0 26053 -cellosaurus:CVCL_6116 SK-MEL-230 0 26054 -cellosaurus:CVCL_6117 SK-MEL-232 0 26055 -cellosaurus:CVCL_6118 SK-MEL-233 0 26056 -cellosaurus:CVCL_6119 SK-MEL-234 0 26057 -cellosaurus:CVCL_4Z29 SK-MEL-235 0 26058 -cellosaurus:CVCL_6120 SK-MEL-237 0 26059 -cellosaurus:CVCL_6121 SK-MEL-238 0 26060 -cellosaurus:CVCL_6122 SK-MEL-239 0 26061 -cellosaurus:CVCL_0599 SK-MEL-24 0 26062 -cellosaurus:CVCL_8083 SK-MEL-241 0 26063 -cellosaurus:CVCL_6123 SK-MEL-243 0 26064 -cellosaurus:CVCL_6124 SK-MEL-244 0 26065 -cellosaurus:CVCL_6125 SK-MEL-245 0 26066 -cellosaurus:CVCL_6126 SK-MEL-246 0 26067 -cellosaurus:CVCL_6961 SK-MEL-249 0 26068 -cellosaurus:CVCL_6962 SK-MEL-250 0 26069 -cellosaurus:CVCL_6127 SK-MEL-252 0 26070 -cellosaurus:CVCL_6128 SK-MEL-256 0 26071 -cellosaurus:CVCL_6129 SK-MEL-258 0 26072 -cellosaurus:CVCL_6029 SK-MEL-26 0 26073 -cellosaurus:CVCL_6130 SK-MEL-263 0 26074 -cellosaurus:CVCL_6131 SK-MEL-264 0 26075 -cellosaurus:CVCL_6132 SK-MEL-265 0 26076 -cellosaurus:CVCL_6133 SK-MEL-266 0 26077 -cellosaurus:CVCL_6134 SK-MEL-267 0 26078 -cellosaurus:CVCL_6135 SK-MEL-268 0 26079 -cellosaurus:CVCL_6136 SK-MEL-269 0 26080 -cellosaurus:CVCL_6137 SK-MEL-271 0 26081 -cellosaurus:CVCL_6138 SK-MEL-272 0 26082 -cellosaurus:CVCL_6139 SK-MEL-275 0 26083 -cellosaurus:CVCL_6140 SK-MEL-276 0 26084 -cellosaurus:CVCL_6141 SK-MEL-279 0 26085 -cellosaurus:CVCL_6142 SK-MEL-281 0 26086 -cellosaurus:CVCL_6143 SK-MEL-282 0 26087 -cellosaurus:CVCL_6144 SK-MEL-283 0 26088 -cellosaurus:CVCL_6145 SK-MEL-284 0 26089 -cellosaurus:CVCL_6146 SK-MEL-285 0 26090 -cellosaurus:CVCL_0039 SK-MEL-30 0 26091 -cellosaurus:CVCL_6147 SK-MEL-301 0 26092 -cellosaurus:CVCL_6148 SK-MEL-304 0 26093 -cellosaurus:CVCL_6149 SK-MEL-306 0 26094 -cellosaurus:CVCL_6150 SK-MEL-307 0 26095 -cellosaurus:CVCL_U912 SK-MEL-309B 0 26096 -cellosaurus:CVCL_0600 SK-MEL-31 0 26097 -cellosaurus:CVCL_1T59 SK-MEL-313 0 26098 -cellosaurus:CVCL_E090 SK-MEL-315-02 0 26099 -cellosaurus:CVCL_E091 SK-MEL-315-03 0 26100 -cellosaurus:CVCL_E092 SK-MEL-315-05 0 26101 -cellosaurus:CVCL_6151 SK-MEL-316 0 26102 -cellosaurus:CVCL_1T60 SK-MEL-318 0 26103 -cellosaurus:CVCL_6032 SK-MEL-32 0 26104 -cellosaurus:CVCL_D771 SK-MEL-321A 0 26105 -cellosaurus:CVCL_E089 SK-MEL-321B 0 26106 -cellosaurus:CVCL_6152 SK-MEL-323 0 26107 -cellosaurus:CVCL_6153 SK-MEL-325 0 26108 -cellosaurus:CVCL_6154 SK-MEL-326 0 26109 -cellosaurus:CVCL_6033 SK-MEL-33 0 26110 -cellosaurus:CVCL_6155 SK-MEL-330 0 26111 -cellosaurus:CVCL_1T61 SK-MEL-332 0 26112 -cellosaurus:CVCL_6156 SK-MEL-334 0 26113 -cellosaurus:CVCL_6157 SK-MEL-339 0 26114 -cellosaurus:CVCL_8084 SK-MEL-34 0 26115 -cellosaurus:CVCL_6158 SK-MEL-341 0 26116 -cellosaurus:CVCL_6159 SK-MEL-346 0 26117 -cellosaurus:CVCL_6034 SK-MEL-35 0 26118 -cellosaurus:CVCL_6160 SK-MEL-351 0 26119 -cellosaurus:CVCL_6161 SK-MEL-359 0 26120 -cellosaurus:CVCL_6035 SK-MEL-36 0 26121 -cellosaurus:CVCL_6162 SK-MEL-364 0 26122 -cellosaurus:CVCL_6163 SK-MEL-366 0 26123 -cellosaurus:CVCL_6164 SK-MEL-367 0 26124 -cellosaurus:CVCL_6165 SK-MEL-369 0 26125 -cellosaurus:CVCL_3878 SK-MEL-37 0 26126 -cellosaurus:CVCL_U926 SK-MEL-38 0 26127 -cellosaurus:CVCL_6166 SK-MEL-380 0 26128 -cellosaurus:CVCL_6167 SK-MEL-381 0 26129 -cellosaurus:CVCL_6036 SK-MEL-39 0 26130 -cellosaurus:CVCL_6168 SK-MEL-390 0 26131 -cellosaurus:CVCL_1T62 SK-MEL-391 0 26132 -cellosaurus:CVCL_1T63 SK-MEL-393 0 26133 -cellosaurus:CVCL_1T64 SK-MEL-394 0 26134 -cellosaurus:CVCL_1T65 SK-MEL-398 0 26135 -cellosaurus:CVCL_6037 SK-MEL-40 0 26136 -cellosaurus:CVCL_1T66 SK-MEL-400 0 26137 -cellosaurus:CVCL_1T67 SK-MEL-406 0 26138 -cellosaurus:CVCL_1T68 SK-MEL-408 0 26139 -cellosaurus:CVCL_6038 SK-MEL-41 0 26140 -cellosaurus:CVCL_1T69 SK-MEL-410 0 26141 -cellosaurus:CVCL_1T70 SK-MEL-411 0 26142 -cellosaurus:CVCL_1T71 SK-MEL-412Parotid 0 26143 -cellosaurus:CVCL_1T72 SK-MEL-413-2 0 26144 -cellosaurus:CVCL_6039 SK-MEL-42 0 26145 -cellosaurus:CVCL_1T73 SK-MEL-423A 0 26146 -cellosaurus:CVCL_1T74 SK-MEL-423B 0 26147 -cellosaurus:CVCL_1T75 SK-MEL-426 0 26148 -cellosaurus:CVCL_1T76 SK-MEL-427 0 26149 -cellosaurus:CVCL_1T77 SK-MEL-428 0 26150 -cellosaurus:CVCL_U927 SK-MEL-43 0 26151 -cellosaurus:CVCL_1T78 SK-MEL-430 0 26152 -cellosaurus:CVCL_1T79 SK-MEL-431 0 26153 -cellosaurus:CVCL_1T80 SK-MEL-432 0 26154 -cellosaurus:CVCL_1T81 SK-MEL-435 0 26155 -cellosaurus:CVCL_1T82 SK-MEL-439 0 26156 -cellosaurus:CVCL_6040 SK-MEL-44 0 26157 -cellosaurus:CVCL_1T83 SK-MEL-441 0 26158 -cellosaurus:CVCL_1T84 SK-MEL-444 0 26159 -cellosaurus:CVCL_1T85 SK-MEL-445 0 26160 -cellosaurus:CVCL_1T86 SK-MEL-446 0 26161 -cellosaurus:CVCL_1T87 SK-MEL-447 0 26162 -cellosaurus:CVCL_U928 SK-MEL-45 0 26163 -cellosaurus:CVCL_1T88 SK-MEL-451 0 26164 -cellosaurus:CVCL_1T89 SK-MEL-452 0 26165 -cellosaurus:CVCL_1T90 SK-MEL-455 0 26166 -cellosaurus:CVCL_1T91 SK-MEL-457 0 26167 -cellosaurus:CVCL_1T92 SK-MEL-459 0 26168 -cellosaurus:CVCL_U929 SK-MEL-46 0 26169 -cellosaurus:CVCL_1T93 SK-MEL-462 0 26170 -cellosaurus:CVCL_1T94 SK-MEL-464A 0 26171 -cellosaurus:CVCL_1T95 SK-MEL-464B 0 26172 -cellosaurus:CVCL_U930 SK-MEL-47 0 26173 -cellosaurus:CVCL_1T96 SK-MEL-479 0 26174 -cellosaurus:CVCL_U931 SK-MEL-48 0 26175 -cellosaurus:CVCL_1T97 SK-MEL-481 0 26176 -cellosaurus:CVCL_1T98 SK-MEL-483 0 26177 -cellosaurus:CVCL_6229 SK-MEL-49 0 26178 -cellosaurus:CVCL_1T99 SK-MEL-495 0 26179 -cellosaurus:CVCL_1U00 SK-MEL-498 0 26180 -cellosaurus:CVCL_U935 SK-MEL-50 0 26181 -cellosaurus:CVCL_1U01 SK-MEL-506 0 26182 -cellosaurus:CVCL_1U02 SK-MEL-507 0 26183 -cellosaurus:CVCL_1U03 SK-MEL-509 0 26184 -cellosaurus:CVCL_6041 SK-MEL-51 0 26185 -cellosaurus:CVCL_1U04 SK-MEL-513 0 26186 -cellosaurus:CVCL_8085 SK-MEL-52 0 26187 -cellosaurus:CVCL_1U05 SK-MEL-524 0 26188 -cellosaurus:CVCL_1U06 SK-MEL-529 0 26189 -cellosaurus:CVCL_1U07 SK-MEL-534 0 26190 -cellosaurus:CVCL_1U08 SK-MEL-538 0 26191 -cellosaurus:CVCL_6042 SK-MEL-55 0 26192 -cellosaurus:CVCL_6046 SK-MEL-56 0 26193 -cellosaurus:CVCL_6043 SK-MEL-57 0 26194 -cellosaurus:CVCL_VA39 SK-MEL-59 0 26195 -cellosaurus:CVCL_U932 SK-MEL-6 0 26196 -cellosaurus:CVCL_6047 SK-MEL-60 0 26197 -cellosaurus:CVCL_6044 SK-MEL-61 0 26198 -cellosaurus:CVCL_8086 SK-MEL-62 0 26199 -cellosaurus:CVCL_6045 SK-MEL-63 0 26200 -cellosaurus:CVCL_6048 SK-MEL-64 0 26201 -cellosaurus:CVCL_6050 SK-MEL-65 0 26202 -cellosaurus:CVCL_6051 SK-MEL-68 0 26203 -cellosaurus:CVCL_6058 SK-MEL-69 0 26204 -cellosaurus:CVCL_D854 SK-MEL-7 0 26205 -cellosaurus:CVCL_6052 SK-MEL-72 0 26206 -cellosaurus:CVCL_6053 SK-MEL-73 0 26207 -cellosaurus:CVCL_6054 SK-MEL-75 0 26208 -cellosaurus:CVCL_6221 SK-MEL-76 0 26209 -cellosaurus:CVCL_6056 SK-MEL-78 0 26210 -cellosaurus:CVCL_6222 SK-MEL-79 0 26211 -cellosaurus:CVCL_6960 SK-MEL-8 0 26212 -cellosaurus:CVCL_6057 SK-MEL-80 0 26213 -cellosaurus:CVCL_6223 SK-MEL-81 0 26214 -cellosaurus:CVCL_6059 SK-MEL-83 0 26215 -cellosaurus:CVCL_6224 SK-MEL-85 0 26216 -cellosaurus:CVCL_6225 SK-MEL-86 0 26217 -cellosaurus:CVCL_6060 SK-MEL-87 0 26218 -cellosaurus:CVCL_6049 SK-MEL-88 0 26219 -cellosaurus:CVCL_6226 SK-MEL-89 0 26220 -cellosaurus:CVCL_U934 SK-MEL-9 0 26221 -cellosaurus:CVCL_6227 SK-MEL-90 0 26222 -cellosaurus:CVCL_6228 SK-MEL-91 0 26223 -cellosaurus:CVCL_5651 SK-MEL-93 DX-1 0 26224 -cellosaurus:CVCL_5652 SK-MEL-93 DX-2 0 26225 -cellosaurus:CVCL_A432 SK-MEL-93 DX-4 0 26226 -cellosaurus:CVCL_A433 SK-MEL-93 DX-5 0 26227 -cellosaurus:CVCL_A434 SK-MEL-93 DX-6 0 26228 -cellosaurus:CVCL_3880 SK-MEL-94 0 26229 -cellosaurus:CVCL_6064 SK-MEL-95 0 26230 -cellosaurus:CVCL_U939 SK-MEL-96 0 26231 -cellosaurus:CVCL_6065 SK-MEL-97 0 26232 -cellosaurus:CVCL_6066 SK-MEL-98 0 26233 -cellosaurus:CVCL_8568 SK-MG-10 0 26234 -cellosaurus:CVCL_8569 SK-MG-11 0 26235 -cellosaurus:CVCL_8570 SK-MG-12 0 26236 -cellosaurus:CVCL_8571 SK-MG-13 0 26237 -cellosaurus:CVCL_GS21 SK-MG-14 0 26238 -cellosaurus:CVCL_8572 SK-MG-15 0 26239 -cellosaurus:CVCL_8573 SK-MG-16 0 26240 -cellosaurus:CVCL_8574 SK-MG-17 0 26241 -cellosaurus:CVCL_8575 SK-MG-2 0 26242 -cellosaurus:CVCL_Y195 SK-MG-21 0 26243 -cellosaurus:CVCL_D701 SK-MG-26 0 26244 -cellosaurus:CVCL_8576 SK-MG-3 0 26245 -cellosaurus:CVCL_8577 SK-MG-4 0 26246 -cellosaurus:CVCL_GS19 SK-MG-5 0 26247 -cellosaurus:CVCL_GS20 SK-MG-6 0 26248 -cellosaurus:CVCL_8578 SK-MG-7 0 26249 -cellosaurus:CVCL_Y196 SK-MG-8 0 26250 -cellosaurus:CVCL_8579 SK-MG-9 0 26251 -cellosaurus:CVCL_A478 SK-MM-1 0 26252 -cellosaurus:CVCL_1699 SK-MM-2 0 26253 -cellosaurus:CVCL_1701 SK-N-DZ 0 26254 -cellosaurus:CVCL_WH10 SK-N-ER 0 26255 -cellosaurus:CVCL_1702 SK-N-FI 0 26256 -cellosaurus:CVCL_WH11 SK-N-HM 0 26257 -cellosaurus:CVCL_WH12 SK-N-JD 0 26258 -cellosaurus:CVCL_5G80 SK-N-LE 0 26259 -cellosaurus:CVCL_4569 SK-N-LO 0 26260 -cellosaurus:CVCL_WH13 SK-N-LP 0 26261 -cellosaurus:CVCL_S664 SK-N-PI 0 26262 -cellosaurus:CVCL_0631 SK-NEP-1 0 26263 -cellosaurus:CVCL_1E47 SK-OS-10 0 26264 -cellosaurus:CVCL_1E41 SK-OS-3B 0 26265 -cellosaurus:CVCL_LK69 SK-OS-5 0 26266 -cellosaurus:CVCL_X208 SK-OV-1 0 26267 -cellosaurus:CVCL_A458 SK-OV-8 0 26268 -cellosaurus:CVCL_IX48 SK-PBL-1-R 0 26269 -cellosaurus:CVCL_4054 SK-PC-1 0 26270 -cellosaurus:CVCL_4055 SK-PC-3 0 26271 -cellosaurus:CVCL_M167 SK-PN-AG 0 26272 -cellosaurus:CVCL_1703 SK-PN-DW 0 26273 -cellosaurus:CVCL_A748 SK-PN-LI 0 26274 -cellosaurus:CVCL_M168 SK-PN-WA 0 26275 -cellosaurus:CVCL_4017 SK-RC-1 0 26276 -cellosaurus:CVCL_6175 SK-RC-10 0 26277 -cellosaurus:CVCL_6176 SK-RC-11 0 26278 -cellosaurus:CVCL_6177 SK-RC-12 0 26279 -cellosaurus:CVCL_6178 SK-RC-13 0 26280 -cellosaurus:CVCL_6179 SK-RC-14 0 26281 -cellosaurus:CVCL_6180 SK-RC-15 0 26282 -cellosaurus:CVCL_GS24 SK-RC-16 0 26283 -cellosaurus:CVCL_4018 SK-RC-17 0 26284 -cellosaurus:CVCL_6181 SK-RC-18 0 26285 -cellosaurus:CVCL_6169 SK-RC-2 0 26286 -cellosaurus:CVCL_V605 SK-RC-20 0 26287 -cellosaurus:CVCL_6182 SK-RC-21 0 26288 -cellosaurus:CVCL_VR18 SK-RC-22 0 26289 -cellosaurus:CVCL_VR19 SK-RC-24 0 26290 -cellosaurus:CVCL_VR20 SK-RC-25 0 26291 -cellosaurus:CVCL_6183 SK-RC-26A 0 26292 -cellosaurus:CVCL_3120 SK-RC-26B 0 26293 -cellosaurus:CVCL_6184 SK-RC-28 0 26294 -cellosaurus:CVCL_4019 SK-RC-29 0 26295 -cellosaurus:CVCL_6170 SK-RC-3 0 26296 -cellosaurus:CVCL_6185 SK-RC-30 0 26297 -cellosaurus:CVCL_6186 SK-RC-31 0 26298 -cellosaurus:CVCL_6187 SK-RC-33 0 26299 -cellosaurus:CVCL_VR21 SK-RC-34 0 26300 -cellosaurus:CVCL_4020 SK-RC-35 0 26301 -cellosaurus:CVCL_VR22 SK-RC-36 0 26302 -cellosaurus:CVCL_6188 SK-RC-37 0 26303 -cellosaurus:CVCL_6189 SK-RC-38 0 26304 -cellosaurus:CVCL_4021 SK-RC-39 0 26305 -cellosaurus:CVCL_6171 SK-RC-4 0 26306 -cellosaurus:CVCL_6190 SK-RC-40 0 26307 -cellosaurus:CVCL_6191 SK-RC-41 0 26308 -cellosaurus:CVCL_6192 SK-RC-42 0 26309 -cellosaurus:CVCL_4022 SK-RC-44 0 26310 -cellosaurus:CVCL_4016 SK-RC-45 0 26311 -cellosaurus:CVCL_6193 SK-RC-46 0 26312 -cellosaurus:CVCL_6194 SK-RC-47 0 26313 -cellosaurus:CVCL_6195 SK-RC-48 0 26314 -cellosaurus:CVCL_6196 SK-RC-49 0 26315 -cellosaurus:CVCL_6172 SK-RC-5 0 26316 -cellosaurus:CVCL_6197 SK-RC-51 0 26317 -cellosaurus:CVCL_6198 SK-RC-52 0 26318 -cellosaurus:CVCL_6199 SK-RC-53 0 26319 -cellosaurus:CVCL_6202 SK-RC-55 0 26320 -cellosaurus:CVCL_6203 SK-RC-56 0 26321 -cellosaurus:CVCL_6204 SK-RC-57 0 26322 -cellosaurus:CVCL_6205 SK-RC-58 0 26323 -cellosaurus:CVCL_6206 SK-RC-59 0 26324 -cellosaurus:CVCL_4023 SK-RC-6 0 26325 -cellosaurus:CVCL_6207 SK-RC-60 0 26326 -cellosaurus:CVCL_6208 SK-RC-61 0 26327 -cellosaurus:CVCL_6209 SK-RC-62 0 26328 -cellosaurus:CVCL_VR23 SK-RC-63 0 26329 -cellosaurus:CVCL_4024 SK-RC-7 0 26330 -cellosaurus:CVCL_6173 SK-RC-8 0 26331 -cellosaurus:CVCL_6174 SK-RC-9 0 26332 -cellosaurus:CVCL_4025 SK-RC-99 0 26333 -cellosaurus:CVCL_LK88 SK-RCS1 0 26334 -cellosaurus:CVCL_1E48 SK-SC-1 0 26335 -cellosaurus:CVCL_IW37 SK-UT-2 0 26336 -cellosaurus:CVCL_IY59 SK2 0 26337 -cellosaurus:CVCL_UD55 SKA 0 26338 -cellosaurus:CVCL_S488 Ska-3-68 0 26339 -cellosaurus:CVCL_VI91 SKG-IIB 0 26340 -cellosaurus:CVCL_1704 SKG-IIIa 0 26341 -cellosaurus:CVCL_2795 SKG-IIIb 0 26342 -cellosaurus:CVCL_C124 SKH1 [Human leukemia] 0 26343 -cellosaurus:CVCL_E053 SKI-DLCL-1 0 26344 -cellosaurus:CVCL_S607 SKK-1 0 26345 -cellosaurus:CVCL_3167 SKN 0 26346 -cellosaurus:CVCL_3168 SKN-3 0 26347 -cellosaurus:CVCL_2196 SKNO-1 0 26348 -cellosaurus:CVCL_G366 SKR1 0 26349 -cellosaurus:CVCL_S989 SKS 0 26350 -cellosaurus:CVCL_Y112 SKT-1A 0 26351 -cellosaurus:CVCL_Y113 SKT-1B 0 26352 -cellosaurus:CVCL_A477 SKW-4 0 26353 -cellosaurus:CVCL_VP43 SKX 0 26354 -cellosaurus:CVCL_X934 SL1 0 26355 -cellosaurus:CVCL_E305 SLMT-1 0 26356 -cellosaurus:CVCL_V607 SLR21 0 26357 -cellosaurus:CVCL_V608 SLR22 0 26358 -cellosaurus:CVCL_V609 SLR23 0 26359 -cellosaurus:CVCL_V611 SLR25 0 26360 -cellosaurus:CVCL_V612 SLR26 0 26361 -cellosaurus:CVCL_M607 SM [Human chondrosarcoma] 0 26362 -cellosaurus:CVCL_IU19 SM-1 0 26363 -cellosaurus:CVCL_D117 SM-AP1 0 26364 -cellosaurus:CVCL_D118 SM-AP2 0 26365 -cellosaurus:CVCL_D119 SM-AP3 0 26366 -cellosaurus:CVCL_D120 SM-AP4 0 26367 -cellosaurus:CVCL_D121 SM-AP5 0 26368 -cellosaurus:CVCL_0C26 SM-E 0 26369 -cellosaurus:CVCL_W283 SM-MI-1 0 26370 -cellosaurus:CVCL_H200 SM2-1 0 26371 -cellosaurus:CVCL_H202 SM3 0 26372 -cellosaurus:CVCL_S863 SMB [Human] 0 26373 -cellosaurus:CVCL_J121 SMC-1 0 26374 -cellosaurus:CVCL_X018 SMC-L001 0 26375 -cellosaurus:CVCL_W397 SMITH 0 26376 -cellosaurus:CVCL_A749 SMKT-R1 0 26377 -cellosaurus:CVCL_A750 SMKT-R2 0 26378 -cellosaurus:CVCL_A751 SMKT-R3 0 26379 -cellosaurus:CVCL_A752 SMKT-R4 0 26380 -cellosaurus:CVCL_DG22 SMMU-1 0 26381 -cellosaurus:CVCL_DG23 SMMU-2 0 26382 -cellosaurus:CVCL_S916 SMOV-1 0 26383 -cellosaurus:CVCL_S920 SMOV-2 0 26384 -cellosaurus:CVCL_5898 SMRC-1 0 26385 -cellosaurus:CVCL_5899 SMRC-3 0 26386 -cellosaurus:CVCL_A770 SMS-CTR 0 26387 -cellosaurus:CVCL_7131 SMS-KAN 0 26388 -cellosaurus:CVCL_7132 SMS-KANR 0 26389 -cellosaurus:CVCL_7134 SMS-KCNR 0 26390 -cellosaurus:CVCL_9539 SMS-LHN 0 26391 -cellosaurus:CVCL_7135 SMS-MSN 0 26392 -cellosaurus:CVCL_7136 SMS-SAN 0 26393 -cellosaurus:CVCL_AQ30 SMS-SB 0 26394 -cellosaurus:CVCL_GS48 SMTK-1 0 26395 -cellosaurus:CVCL_H199 SMYM-PRGP 0 26396 -cellosaurus:CVCL_RL84 SMZ-1 0 26397 -cellosaurus:CVCL_B075 SN-1 0 26398 -cellosaurus:CVCL_8759 SN-512 0 26399 -cellosaurus:CVCL_7137 SN-Mel 0 26400 -cellosaurus:CVCL_RN47 SN-Ow1 0 26401 -cellosaurus:CVCL_N584 SN-SY-1 0 26402 -cellosaurus:CVCL_D105 SN12A1 0 26403 -cellosaurus:CVCL_D106 SN12K1 0 26404 -cellosaurus:CVCL_D107 SN12L1 0 26405 -cellosaurus:CVCL_D108 SN12S1 0 26406 -cellosaurus:CVCL_A1IU SNB-1 0 26407 -cellosaurus:CVCL_A1IT SNB-2 0 26408 -cellosaurus:CVCL_A1IV SNB-3 0 26409 -cellosaurus:CVCL_A1IW SNB-4 0 26410 -cellosaurus:CVCL_YA90 SNB-44 0 26411 -cellosaurus:CVCL_B320 SNB-56 0 26412 -cellosaurus:CVCL_IZ73 SNB-7 0 26413 -cellosaurus:CVCL_1706 SNB-75 0 26414 -cellosaurus:CVCL_B321 SNB-78 0 26415 -cellosaurus:CVCL_9481 SNEC-MI 0 26416 -cellosaurus:CVCL_K280 sNF02.2 0 26417 -cellosaurus:CVCL_K164 sNF94.3 0 26418 -cellosaurus:CVCL_K281 sNF96.2 0 26419 -cellosaurus:CVCL_1707 SNG-M 0 26420 -cellosaurus:CVCL_S914 SNG-P 0 26421 -cellosaurus:CVCL_A671 SNK-1 0 26422 -cellosaurus:CVCL_3923 SNK-57 0 26423 -cellosaurus:CVCL_A673 SNK-6 0 26424 -cellosaurus:CVCL_A677 SNT-8 0 26425 -cellosaurus:CVCL_5000 SNU-1000 0 26426 -cellosaurus:CVCL_5001 SNU-1005 0 26427 -cellosaurus:CVCL_5002 SNU-1033 0 26428 -cellosaurus:CVCL_5003 SNU-1040 0 26429 -cellosaurus:CVCL_L085 SNU-1041 0 26430 -cellosaurus:CVCL_5004 SNU-1047 0 26431 -cellosaurus:CVCL_5005 SNU-1066 0 26432 -cellosaurus:CVCL_5006 SNU-1076 0 26433 -cellosaurus:CVCL_5007 SNU-1077 0 26434 -cellosaurus:CVCL_5008 SNU-1079 0 26435 -cellosaurus:CVCL_5010 SNU-1105 0 26436 -cellosaurus:CVCL_5011 SNU-1118 0 26437 -cellosaurus:CVCL_5012 SNU-1160 0 26438 -cellosaurus:CVCL_5013 SNU-1181 0 26439 -cellosaurus:CVCL_5014 SNU-119 0 26440 -cellosaurus:CVCL_5016 SNU-1197 0 26441 -cellosaurus:CVCL_5017 SNU-1214 0 26442 -cellosaurus:CVCL_5018 SNU-1235 0 26443 -cellosaurus:CVCL_5019 SNU-1245 0 26444 -cellosaurus:CVCL_8788 SNU-1272 0 26445 -cellosaurus:CVCL_5021 SNU-1299 0 26446 -cellosaurus:CVCL_5022 SNU-1327 0 26447 -cellosaurus:CVCL_5023 SNU-1330 0 26448 -cellosaurus:CVCL_5024 SNU-1406 0 26449 -cellosaurus:CVCL_5025 SNU-1411 0 26450 -cellosaurus:CVCL_5026 SNU-1460 0 26451 -cellosaurus:CVCL_T037 SNU-1528 0 26452 -cellosaurus:CVCL_5027 SNU-1544 0 26453 -cellosaurus:CVCL_T038 SNU-1553 0 26454 -cellosaurus:CVCL_ZE50 SNU-1566 0 26455 -cellosaurus:CVCL_T039 SNU-1581 0 26456 -cellosaurus:CVCL_5028 SNU-1684 0 26457 -cellosaurus:CVCL_5029 SNU-17 0 26458 -cellosaurus:CVCL_5030 SNU-1746 0 26459 -cellosaurus:CVCL_5031 SNU-175 0 26460 -cellosaurus:CVCL_8914 SNU-1750 0 26461 -cellosaurus:CVCL_0090 SNU-182 0 26462 -cellosaurus:CVCL_WW16 SNU-1826 0 26463 -cellosaurus:CVCL_8915 SNU-1967 0 26464 -cellosaurus:CVCL_ZE51 SNU-1983 0 26465 -cellosaurus:CVCL_5033 SNU-201 0 26466 -cellosaurus:CVCL_5034 SNU-213 0 26467 -cellosaurus:CVCL_3946 SNU-216 0 26468 -cellosaurus:CVCL_ZE52 SNU-2172 0 26469 -cellosaurus:CVCL_5035 SNU-228 0 26470 -cellosaurus:CVCL_5036 SNU-2292 0 26471 -cellosaurus:CVCL_ZE53 SNU-2297 0 26472 -cellosaurus:CVCL_ZE54 SNU-2303 0 26473 -cellosaurus:CVCL_5037 SNU-2315 0 26474 -cellosaurus:CVCL_UR60 SNU-2335A 0 26475 -cellosaurus:CVCL_UR61 SNU-2335D 0 26476 -cellosaurus:CVCL_UR62 SNU-2335E 0 26477 -cellosaurus:CVCL_ZE55 SNU-2353B 0 26478 -cellosaurus:CVCL_ZE56 SNU-2359 0 26479 -cellosaurus:CVCL_T041 SNU-2372 0 26480 -cellosaurus:CVCL_ZE57 SNU-2373B 0 26481 -cellosaurus:CVCL_UR63 SNU-2404A 0 26482 -cellosaurus:CVCL_UR64 SNU-2404B 0 26483 -cellosaurus:CVCL_ZE58 SNU-2407 0 26484 -cellosaurus:CVCL_UR65 SNU-2414A 0 26485 -cellosaurus:CVCL_UR66 SNU-2414B 0 26486 -cellosaurus:CVCL_ZE59 SNU-2423 0 26487 -cellosaurus:CVCL_ZE60 SNU-2431 0 26488 -cellosaurus:CVCL_WW17 SNU-2446 0 26489 -cellosaurus:CVCL_5038 SNU-245 0 26490 -cellosaurus:CVCL_ZE61 SNU-2465 0 26491 -cellosaurus:CVCL_YI70 SNU-2466 0 26492 -cellosaurus:CVCL_YI71 SNU-2469 0 26493 -cellosaurus:CVCL_YI72 SNU-2485 0 26494 -cellosaurus:CVCL_YI73 SNU-2491 0 26495 -cellosaurus:CVCL_ZE62 SNU-2493 0 26496 -cellosaurus:CVCL_5040 SNU-251 0 26497 -cellosaurus:CVCL_R756 SNU-2535 0 26498 -cellosaurus:CVCL_ZE63 SNU-2536C 0 26499 -cellosaurus:CVCL_5041 SNU-254 0 26500 -cellosaurus:CVCL_YI74 SNU-2543 0 26501 -cellosaurus:CVCL_YD23 SNU-2553 0 26502 -cellosaurus:CVCL_YD24 SNU-2556 0 26503 -cellosaurus:CVCL_YI75 SNU-2564 0 26504 -cellosaurus:CVCL_YI76 SNU-2570 0 26505 -cellosaurus:CVCL_YI77 SNU-2571 0 26506 -cellosaurus:CVCL_YD26 SNU-2585 0 26507 -cellosaurus:CVCL_YD27 SNU-2588 0 26508 -cellosaurus:CVCL_YD28 SNU-2589 0 26509 -cellosaurus:CVCL_YD29 SNU-2606 0 26510 -cellosaurus:CVCL_YI78 SNU-2608 0 26511 -cellosaurus:CVCL_YD30 SNU-2612A 0 26512 -cellosaurus:CVCL_YI79 SNU-2617 0 26513 -cellosaurus:CVCL_ZE64 SNU-2621B 0 26514 -cellosaurus:CVCL_YD31 SNU-2627 0 26515 -cellosaurus:CVCL_YD32 SNU-2637 0 26516 -cellosaurus:CVCL_YD33 SNU-2641 0 26517 -cellosaurus:CVCL_YD34 SNU-2643 0 26518 -cellosaurus:CVCL_YD35 SNU-2657 0 26519 -cellosaurus:CVCL_5043 SNU-267 0 26520 -cellosaurus:CVCL_YD36 SNU-2681 0 26521 -cellosaurus:CVCL_YD37 SNU-2689 0 26522 -cellosaurus:CVCL_YD38 SNU-2693 0 26523 -cellosaurus:CVCL_YD39 SNU-2708.1 0 26524 -cellosaurus:CVCL_YD40 SNU-2727 0 26525 -cellosaurus:CVCL_YD41 SNU-2741 0 26526 -cellosaurus:CVCL_YD42 SNU-2749 0 26527 -cellosaurus:CVCL_YD43 SNU-2778 0 26528 -cellosaurus:CVCL_5044 SNU-283 0 26529 -cellosaurus:CVCL_YD44 SNU-2832 0 26530 -cellosaurus:CVCL_YD45 SNU-2867 0 26531 -cellosaurus:CVCL_YD46 SNU-2887 0 26532 -cellosaurus:CVCL_YD47 SNU-2964 0 26533 -cellosaurus:CVCL_UD98 SNU-2972-1 0 26534 -cellosaurus:CVCL_YD48 SNU-3023 0 26535 -cellosaurus:CVCL_T042 SNU-306 0 26536 -cellosaurus:CVCL_5048 SNU-308 0 26537 -cellosaurus:CVCL_UD99 SNU-3178S 0 26538 -cellosaurus:CVCL_5051 SNU-324 0 26539 -cellosaurus:CVCL_5052 SNU-328 0 26540 -cellosaurus:CVCL_5053 SNU-333 0 26541 -cellosaurus:CVCL_T043 SNU-334 0 26542 -cellosaurus:CVCL_5054 SNU-349 0 26543 -cellosaurus:CVCL_3947 SNU-354 0 26544 -cellosaurus:CVCL_3948 SNU-368 0 26545 -cellosaurus:CVCL_5055 SNU-371 0 26546 -cellosaurus:CVCL_5056 SNU-373 0 26547 -cellosaurus:CVCL_0250 SNU-387 0 26548 -cellosaurus:CVCL_0077 SNU-398 0 26549 -cellosaurus:CVCL_5058 SNU-407 0 26550 -cellosaurus:CVCL_5059 SNU-410 0 26551 -cellosaurus:CVCL_0366 SNU-423 0 26552 -cellosaurus:CVCL_5060 SNU-444 0 26553 -cellosaurus:CVCL_0454 SNU-449 0 26554 -cellosaurus:CVCL_5063 SNU-46 0 26555 -cellosaurus:CVCL_5064 SNU-466 0 26556 -cellosaurus:CVCL_0497 SNU-475 0 26557 -cellosaurus:CVCL_5065 SNU-478 0 26558 -cellosaurus:CVCL_5066 SNU-479 0 26559 -cellosaurus:CVCL_5067 SNU-482 0 26560 -cellosaurus:CVCL_5068 SNU-487 0 26561 -cellosaurus:CVCL_5069 SNU-489 0 26562 -cellosaurus:CVCL_5070 SNU-494 0 26563 -cellosaurus:CVCL_0078 SNU-5 0 26564 -cellosaurus:CVCL_5071 SNU-503 0 26565 -cellosaurus:CVCL_5072 SNU-520 0 26566 -cellosaurus:CVCL_5073 SNU-523 0 26567 -cellosaurus:CVCL_5075 SNU-539 0 26568 -cellosaurus:CVCL_E107 SNU-55 0 26569 -cellosaurus:CVCL_5076 SNU-563 0 26570 -cellosaurus:CVCL_5077 SNU-585 0 26571 -cellosaurus:CVCL_5078 SNU-61 0 26572 -cellosaurus:CVCL_5080 SNU-626 0 26573 -cellosaurus:CVCL_5082 SNU-682 0 26574 -cellosaurus:CVCL_5083 SNU-685 0 26575 -cellosaurus:CVCL_5084 SNU-70 0 26576 -cellosaurus:CVCL_5085 SNU-703 0 26577 -cellosaurus:CVCL_5087 SNU-738 0 26578 -cellosaurus:CVCL_5088 SNU-739 0 26579 -cellosaurus:CVCL_5089 SNU-761 0 26580 -cellosaurus:CVCL_5090 SNU-769A 0 26581 -cellosaurus:CVCL_5091 SNU-769B 0 26582 -cellosaurus:CVCL_5092 SNU-778 0 26583 -cellosaurus:CVCL_5093 SNU-790 0 26584 -cellosaurus:CVCL_5094 SNU-791 0 26585 -cellosaurus:CVCL_5095 SNU-796 0 26586 -cellosaurus:CVCL_5096 SNU-8 0 26587 -cellosaurus:CVCL_5097 SNU-80 0 26588 -cellosaurus:CVCL_5098 SNU-81 0 26589 -cellosaurus:CVCL_5100 SNU-840 0 26590 -cellosaurus:CVCL_5101 SNU-869 0 26591 -cellosaurus:CVCL_5102 SNU-878 0 26592 -cellosaurus:CVCL_5103 SNU-886 0 26593 -cellosaurus:CVCL_5107 SNU-902 0 26594 -cellosaurus:CVCL_5108 SNU-963 0 26595 -cellosaurus:CVCL_5109 SNU-977 0 26596 -cellosaurus:CVCL_1708 SNU-C1 0 26597 -cellosaurus:CVCL_1709 SNU-C2A 0 26598 -cellosaurus:CVCL_1710 SNU-C2B 0 26599 -cellosaurus:CVCL_5111 SNU-C4 0 26600 -cellosaurus:CVCL_8897 SNU-NCC-19 0 26601 -cellosaurus:CVCL_8898 SNU-NCC-20 0 26602 -cellosaurus:CVCL_8899 SNU-NCC-24 0 26603 -cellosaurus:CVCL_ZE65 SNU-NCC-376 0 26604 -cellosaurus:CVCL_ZE66 SNU-NCC-377 0 26605 -cellosaurus:CVCL_8900 SNU-NCC-59 0 26606 -cellosaurus:CVCL_ZE67 SNU-NCC-61 0 26607 -cellosaurus:CVCL_IW63 SNU_MM1393_BM 0 26608 -cellosaurus:CVCL_IW64 SNU_MM1393_SC 0 26609 -cellosaurus:CVCL_D773 SNUCML-02 0 26610 -cellosaurus:CVCL_6210 SNUOT-Rb1 0 26611 -cellosaurus:CVCL_IQ57 SNUOT-Rb4 0 26612 -cellosaurus:CVCL_4764 SO-MI 0 26613 -cellosaurus:CVCL_W459 SO-Rb70 0 26614 -cellosaurus:CVCL_D022 SP-49 0 26615 -cellosaurus:CVCL_7997 SP-6.5 0 26616 -cellosaurus:CVCL_W928 SP-8.0 0 26617 -cellosaurus:CVCL_IW47 SPAC-1-L 0 26618 -cellosaurus:CVCL_IW48 SPAC-1-S 0 26619 -cellosaurus:CVCL_1B41 SPC-A4 0 26620 -cellosaurus:CVCL_D311 SPC111 0 26621 -cellosaurus:CVCL_D312 SPC212 0 26622 -cellosaurus:CVCL_T736 SPC78 0 26623 -cellosaurus:CVCL_A678 SPEC-1 0 26624 -cellosaurus:CVCL_A679 SPEC-2 0 26625 -cellosaurus:CVCL_A680 SPEC-3 0 26626 -cellosaurus:CVCL_IU20 SPEL 0 26627 -cellosaurus:CVCL_0A29 SPH [Human pancreatic adenocarcinoma] 0 26628 -cellosaurus:CVCL_LH75 SPIBL-I 0 26629 -cellosaurus:CVCL_LH76 SPIBL-II 0 26630 -cellosaurus:CVCL_LH77 SPIBL-III 0 26631 -cellosaurus:CVCL_B7IW SPNE1 0 26632 -cellosaurus:CVCL_4900 Sq-1 0 26633 -cellosaurus:CVCL_6998 Sq-19 0 26634 -cellosaurus:CVCL_7139 SQ-29 0 26635 -cellosaurus:CVCL_7140 SQ-31 0 26636 -cellosaurus:CVCL_7141 SQ-38 0 26637 -cellosaurus:CVCL_7142 SQ-39 0 26638 -cellosaurus:CVCL_7143 SQ-43 0 26639 -cellosaurus:CVCL_7144 SQ-9G 0 26640 -cellosaurus:CVCL_0551 SqCC/Y1 0 26641 -cellosaurus:CVCL_1711 SR 0 26642 -cellosaurus:CVCL_J389 SR-1 0 26643 -cellosaurus:CVCL_AT72 SRB-1 0 26644 -cellosaurus:CVCL_AT73 SRB-12 0 26645 -cellosaurus:CVCL_A0XB SRH 0 26646 -cellosaurus:CVCL_IP68 SRIK-NKL 0 26647 -cellosaurus:CVCL_W497 SRM 0 26648 -cellosaurus:CVCL_W375 SS-1 0 26649 -cellosaurus:CVCL_YD51 SS-2 0 26650 -cellosaurus:CVCL_A681 SS-ES-1 0 26651 -cellosaurus:CVCL_X166 SS78 0 26652 -cellosaurus:CVCL_A682 SS9;22 0 26653 -cellosaurus:CVCL_M362 SSILY 0 26654 -cellosaurus:CVCL_W289 SSM-1 0 26655 -cellosaurus:CVCL_7145 ST-Mel 0 26656 -cellosaurus:CVCL_RM01 St16 0 26657 -cellosaurus:CVCL_RM00 St42 0 26658 -cellosaurus:CVCL_1712 ST486 0 26659 -cellosaurus:CVCL_8916 ST88-14 0 26660 -cellosaurus:CVCL_IU70 ST88-3 0 26661 -cellosaurus:CVCL_B466 STA-BT-1 0 26662 -cellosaurus:CVCL_B467 STA-BT-15 0 26663 -cellosaurus:CVCL_B468 STA-BT-3 0 26664 -cellosaurus:CVCL_B469 STA-BT-6 0 26665 -cellosaurus:CVCL_9681 STA-ET-1 0 26666 -cellosaurus:CVCL_9682 STA-ET-10 0 26667 -cellosaurus:CVCL_9683 STA-ET-11 0 26668 -cellosaurus:CVCL_9684 STA-ET-12 0 26669 -cellosaurus:CVCL_9685 STA-ET-14 0 26670 -cellosaurus:CVCL_9686 STA-ET-2.1 0 26671 -cellosaurus:CVCL_9687 STA-ET-2.2 0 26672 -cellosaurus:CVCL_9688 STA-ET-3 0 26673 -cellosaurus:CVCL_9689 STA-ET-4 0 26674 -cellosaurus:CVCL_9690 STA-ET-5 0 26675 -cellosaurus:CVCL_9691 STA-ET-6 0 26676 -cellosaurus:CVCL_9692 STA-ET-7.1 0 26677 -cellosaurus:CVCL_9693 STA-ET-7.2 0 26678 -cellosaurus:CVCL_9694 STA-ET-7.3 0 26679 -cellosaurus:CVCL_9695 STA-ET-8.1 0 26680 -cellosaurus:CVCL_9696 STA-ET-8.2 0 26681 -cellosaurus:CVCL_9697 STA-ET-9 0 26682 -cellosaurus:CVCL_9883 STA-NB-1.1 0 26683 -cellosaurus:CVCL_9884 STA-NB-1.2 0 26684 -cellosaurus:CVCL_9886 STA-NB-11 0 26685 -cellosaurus:CVCL_A450 STA-NB-12 0 26686 -cellosaurus:CVCL_A451 STA-NB-13 0 26687 -cellosaurus:CVCL_A452 STA-NB-15 0 26688 -cellosaurus:CVCL_9887 STA-NB-2 0 26689 -cellosaurus:CVCL_9888 STA-NB-3 0 26690 -cellosaurus:CVCL_9889 STA-NB-4 0 26691 -cellosaurus:CVCL_9890 STA-NB-5 0 26692 -cellosaurus:CVCL_9891 STA-NB-6 0 26693 -cellosaurus:CVCL_9892 STA-NB-7 0 26694 -cellosaurus:CVCL_9893 STA-NB-8 0 26695 -cellosaurus:CVCL_9894 STA-NB-9 0 26696 -cellosaurus:CVCL_6D50 STA-OS-1 0 26697 -cellosaurus:CVCL_6D51 STA-OS-2 0 26698 -cellosaurus:CVCL_6D52 STA-OS-3 0 26699 -cellosaurus:CVCL_6D53 STA-OS-5 0 26700 -cellosaurus:CVCL_6D54 STA-OS-6 0 26701 -cellosaurus:CVCL_6D82 STA-WT-1 0 26702 -cellosaurus:CVCL_6D49 STA-WT-3 0 26703 -cellosaurus:CVCL_7998 STAV-AB 0 26704 -cellosaurus:CVCL_7999 STAV-FCS 0 26705 -cellosaurus:CVCL_AT90 Steele 0 26706 -cellosaurus:CVCL_M570 STKM-2 0 26707 -cellosaurus:CVCL_XE86 STL-C1 0 26708 -cellosaurus:CVCL_XE87 STL-C2 0 26709 -cellosaurus:CVCL_8000 STM91-01 0 26710 -cellosaurus:CVCL_RW71 STP-1 0 26711 -cellosaurus:CVCL_UY58 STP54 0 26712 -cellosaurus:CVCL_8533 STR-428 0 26713 -cellosaurus:CVCL_X508 STS-0421 0 26714 -cellosaurus:CVCL_8917 STS-26T 0 26715 -cellosaurus:CVCL_N585 STS255 0 26716 -cellosaurus:CVCL_U567 STSAR-10 0 26717 -cellosaurus:CVCL_U568 STSAR-100 0 26718 -cellosaurus:CVCL_U569 STSAR-104 0 26719 -cellosaurus:CVCL_U570 STSAR-11 0 26720 -cellosaurus:CVCL_U571 STSAR-13 0 26721 -cellosaurus:CVCL_U572 STSAR-14 0 26722 -cellosaurus:CVCL_U573 STSAR-169 0 26723 -cellosaurus:CVCL_U574 STSAR-19 0 26724 -cellosaurus:CVCL_U575 STSAR-198 0 26725 -cellosaurus:CVCL_U576 STSAR-2 0 26726 -cellosaurus:CVCL_U577 STSAR-20 0 26727 -cellosaurus:CVCL_U578 STSAR-21 0 26728 -cellosaurus:CVCL_U579 STSAR-210 0 26729 -cellosaurus:CVCL_U580 STSAR-217 0 26730 -cellosaurus:CVCL_U581 STSAR-22 0 26731 -cellosaurus:CVCL_U582 STSAR-23 0 26732 -cellosaurus:CVCL_U583 STSAR-255 0 26733 -cellosaurus:CVCL_U584 STSAR-26 0 26734 -cellosaurus:CVCL_U585 STSAR-28 0 26735 -cellosaurus:CVCL_U586 STSAR-33 0 26736 -cellosaurus:CVCL_U587 STSAR-34 0 26737 -cellosaurus:CVCL_U588 STSAR-35 0 26738 -cellosaurus:CVCL_U589 STSAR-43 0 26739 -cellosaurus:CVCL_U590 STSAR-48 0 26740 -cellosaurus:CVCL_U591 STSAR-49 0 26741 -cellosaurus:CVCL_U592 STSAR-5 0 26742 -cellosaurus:CVCL_U593 STSAR-6 0 26743 -cellosaurus:CVCL_U594 STSAR-64 0 26744 -cellosaurus:CVCL_U595 STSAR-7 0 26745 -cellosaurus:CVCL_U596 STSAR-75 0 26746 -cellosaurus:CVCL_U597 STSAR-8 0 26747 -cellosaurus:CVCL_U598 STSAR-84 0 26748 -cellosaurus:CVCL_U599 STSAR-88 0 26749 -cellosaurus:CVCL_U600 STSAR-90 0 26750 -cellosaurus:CVCL_U601 STSAR-91 0 26751 -cellosaurus:CVCL_W828 STW-1 0 26752 -cellosaurus:CVCL_S993 STY51 0 26753 -cellosaurus:CVCL_W201 SU 0 26754 -cellosaurus:CVCL_IV39 SU-ALL-1 0 26755 -cellosaurus:CVCL_IV40 SU-ALL-2 0 26756 -cellosaurus:CVCL_IV29 SU-AmB-1 0 26757 -cellosaurus:CVCL_IV30 SU-AmB-2 0 26758 -cellosaurus:CVCL_IV31 SU-AmB-3 0 26759 -cellosaurus:CVCL_B470 SU-CCS-1 0 26760 -cellosaurus:CVCL_0538 SU-DHL-1 0 26761 -cellosaurus:CVCL_1889 SU-DHL-10 0 26762 -cellosaurus:CVCL_W958 SU-DHL-11 0 26763 -cellosaurus:CVCL_W959 SU-DHL-12 0 26764 -cellosaurus:CVCL_H736 SU-DHL-13 0 26765 -cellosaurus:CVCL_W960 SU-DHL-14 0 26766 -cellosaurus:CVCL_W961 SU-DHL-15 0 26767 -cellosaurus:CVCL_1890 SU-DHL-16 0 26768 -cellosaurus:CVCL_9550 SU-DHL-2 0 26769 -cellosaurus:CVCL_W769 SU-DHL-3 0 26770 -cellosaurus:CVCL_1735 SU-DHL-5 0 26771 -cellosaurus:CVCL_2206 SU-DHL-6 0 26772 -cellosaurus:CVCL_4380 SU-DHL-7 0 26773 -cellosaurus:CVCL_IT39 SU-DIPG-IV 0 26774 -cellosaurus:CVCL_IT40 SU-DIPG-VI 0 26775 -cellosaurus:CVCL_IT41 SU-DIPG-XIII 0 26776 -cellosaurus:CVCL_C1MV SU-DIPG-XIX 0 26777 -cellosaurus:CVCL_C1N7 SU-DIPG-XLVIII 0 26778 -cellosaurus:CVCL_C1MW SU-DIPG-XVII 0 26779 -cellosaurus:CVCL_C1MX SU-DIPG-XXI 0 26780 -cellosaurus:CVCL_C1MY SU-DIPG-XXIV 0 26781 -cellosaurus:CVCL_C1MZ SU-DIPG-XXIX 0 26782 -cellosaurus:CVCL_C1N0 SU-DIPG-XXV 0 26783 -cellosaurus:CVCL_C1N1 SU-DIPG-XXVII 0 26784 -cellosaurus:CVCL_C1N4 SU-DIPG-XXXIII 0 26785 -cellosaurus:CVCL_C1MJ SU-DIPG-XXXV 0 26786 -cellosaurus:CVCL_C1N5 SU-DIPG-XXXVI 0 26787 -cellosaurus:CVCL_C1N6 SU-DIPG-XXXVIII 0 26788 -cellosaurus:CVCL_IV41 SU-DUL-1 0 26789 -cellosaurus:CVCL_IV42 SU-DUL-2 0 26790 -cellosaurus:CVCL_IV43 SU-DUL-3 0 26791 -cellosaurus:CVCL_B5D7 SU-LL-1 0 26792 -cellosaurus:CVCL_IT42 SU-pcGBM-2 0 26793 -cellosaurus:CVCL_C1N8 SU-pGBM3 0 26794 -cellosaurus:CVCL_C1N9 SU-pSCG-1 0 26795 -cellosaurus:CVCL_3881 SU.86.86 0 26796 -cellosaurus:CVCL_M692 SU/RH-HD-1 0 26797 -cellosaurus:CVCL_RQ43 SU1 0 26798 -cellosaurus:CVCL_RQ44 SU2 0 26799 -cellosaurus:CVCL_RQ45 SU3 0 26800 -cellosaurus:CVCL_W082 SU511 0 26801 -cellosaurus:CVCL_S719 SU706A 0 26802 -cellosaurus:CVCL_B7P5 Su9T01 0 26803 -cellosaurus:CVCL_M554 SUBL 0 26804 -cellosaurus:CVCL_HE76 SUHC-1 0 26805 -cellosaurus:CVCL_UM50 Sui65 0 26806 -cellosaurus:CVCL_UM51 Sui66 0 26807 -cellosaurus:CVCL_UM52 Sui67 0 26808 -cellosaurus:CVCL_UM53 Sui68 0 26809 -cellosaurus:CVCL_UM54 Sui69 0 26810 -cellosaurus:CVCL_UM55 Sui70 0 26811 -cellosaurus:CVCL_UM56 Sui71 0 26812 -cellosaurus:CVCL_UM57 Sui72 0 26813 -cellosaurus:CVCL_UM58 Sui73 0 26814 -cellosaurus:CVCL_UM59 Sui74 0 26815 -cellosaurus:CVCL_9280 SUIT-4 0 26816 -cellosaurus:CVCL_IU22 Sulubo 0 26817 -cellosaurus:CVCL_JH10 SUm/C 0 26818 -cellosaurus:CVCL_3421 SUM102PT 0 26819 -cellosaurus:CVCL_5589 SUM1315MO2 0 26820 -cellosaurus:CVCL_5591 SUM185PE 0 26821 -cellosaurus:CVCL_3423 SUM190PT 0 26822 -cellosaurus:CVCL_5593 SUM225CWN 0 26823 -cellosaurus:CVCL_5594 SUM229PE 0 26824 -cellosaurus:CVCL_3424 SUM44PE 0 26825 -cellosaurus:CVCL_A309 SUP-B1 0 26826 -cellosaurus:CVCL_A319 SUP-B12 0 26827 -cellosaurus:CVCL_A308 SUP-B13 0 26828 -cellosaurus:CVCL_A310 SUP-B16 0 26829 -cellosaurus:CVCL_A322 SUP-B17 0 26830 -cellosaurus:CVCL_A321 SUP-B19 0 26831 -cellosaurus:CVCL_A312 SUP-B2 0 26832 -cellosaurus:CVCL_A313 SUP-B24 0 26833 -cellosaurus:CVCL_A314 SUP-B26 0 26834 -cellosaurus:CVCL_A315 SUP-B27 0 26835 -cellosaurus:CVCL_A316 SUP-B28 0 26836 -cellosaurus:CVCL_A317 SUP-B31 0 26837 -cellosaurus:CVCL_A318 SUP-B7 0 26838 -cellosaurus:CVCL_1713 SUP-B8 0 26839 -cellosaurus:CVCL_2208 SUP-HD1 0 26840 -cellosaurus:CVCL_F689 SUP-T10 0 26841 -cellosaurus:CVCL_2210 SUP-T11 0 26842 -cellosaurus:CVCL_F691 SUP-T12 0 26843 -cellosaurus:CVCL_9973 SUP-T13 0 26844 -cellosaurus:CVCL_F692 SUP-T14 0 26845 -cellosaurus:CVCL_9974 SUP-T19 0 26846 -cellosaurus:CVCL_F693 SUP-T2 0 26847 -cellosaurus:CVCL_F694 SUP-T3 0 26848 -cellosaurus:CVCL_F695 SUP-T4 0 26849 -cellosaurus:CVCL_F686 SUP-T5 0 26850 -cellosaurus:CVCL_F687 SUP-T6 0 26851 -cellosaurus:CVCL_A449 SUP-T7 0 26852 -cellosaurus:CVCL_F685 SUP-T8 0 26853 -cellosaurus:CVCL_F688 SUP-T9 0 26854 -cellosaurus:CVCL_0C27 SV-E 0 26855 -cellosaurus:CVCL_S868 SW-OH1 0 26856 -cellosaurus:CVCL_1E30 SW1007 0 26857 -cellosaurus:CVCL_1E29 SW1016 0 26858 -cellosaurus:CVCL_7164 SW1045 0 26859 -cellosaurus:CVCL_L215 SW1083 0 26860 -cellosaurus:CVCL_1715 SW1088 0 26861 -cellosaurus:CVCL_0544 SW1116 0 26862 -cellosaurus:CVCL_3886 SW1222 0 26863 -cellosaurus:CVCL_WS74 SW1231 0 26864 -cellosaurus:CVCL_1716 SW1271 0 26865 -cellosaurus:CVCL_6G40 SW1318 0 26866 -cellosaurus:CVCL_0543 SW1353 0 26867 -cellosaurus:CVCL_6G41 SW1370 0 26868 -cellosaurus:CVCL_3885 SW1398 0 26869 -cellosaurus:CVCL_1717 SW1417 0 26870 -cellosaurus:CVCL_1718 SW1463 0 26871 -cellosaurus:CVCL_LK66 SW1494 0 26872 -cellosaurus:CVCL_LK67 SW1503 0 26873 -cellosaurus:CVCL_1719 SW156 0 26874 -cellosaurus:CVCL_1E52 SW161 0 26875 -cellosaurus:CVCL_LK68 SW1614 0 26876 -cellosaurus:CVCL_B0T2 SW1687 0 26877 -cellosaurus:CVCL_B0T3 SW1694 0 26878 -cellosaurus:CVCL_1721 SW1710 0 26879 -cellosaurus:CVCL_A683 SW1738 0 26880 -cellosaurus:CVCL_1722 SW1783 0 26881 -cellosaurus:CVCL_UE97 SW193 0 26882 -cellosaurus:CVCL_R777 SW2 0 26883 -cellosaurus:CVCL_S185 SW210.5 0 26884 -cellosaurus:CVCL_1E93 SW213 0 26885 -cellosaurus:CVCL_1E53 SW267 0 26886 -cellosaurus:CVCL_0545 SW403 0 26887 -cellosaurus:CVCL_1E94 SW409 0 26888 -cellosaurus:CVCL_1E95 SW419 0 26889 -cellosaurus:CVCL_1E55 SW451 0 26890 -cellosaurus:CVCL_1E54 SW47 0 26891 -cellosaurus:CVCL_1E89 SW489 0 26892 -cellosaurus:CVCL_1E56 SW534 0 26893 -cellosaurus:CVCL_1E57 SW594 0 26894 -cellosaurus:CVCL_1725 SW626 0 26895 -cellosaurus:CVCL_1726 SW684 0 26896 -cellosaurus:CVCL_1E24 SW690 0 26897 -cellosaurus:CVCL_0L89 SW691 0 26898 -cellosaurus:CVCL_6230 SW707 0 26899 -cellosaurus:CVCL_3884 SW742 0 26900 -cellosaurus:CVCL_1727 SW756 0 26901 -cellosaurus:CVCL_1E58 SW80 0 26902 -cellosaurus:CVCL_A684 SW800 0 26903 -cellosaurus:CVCL_L214 SW802 0 26904 -cellosaurus:CVCL_1729 SW837 0 26905 -cellosaurus:CVCL_3604 SW839 0 26906 -cellosaurus:CVCL_1E59 SW843 0 26907 -cellosaurus:CVCL_A424 SW850 0 26908 -cellosaurus:CVCL_1730 SW872 0 26909 -cellosaurus:CVCL_1E60 SW897 0 26910 -cellosaurus:CVCL_1731 SW900 0 26911 -cellosaurus:CVCL_0632 SW948 0 26912 -cellosaurus:CVCL_1732 SW954 0 26913 -cellosaurus:CVCL_1733 SW962 0 26914 -cellosaurus:CVCL_4057 SW979 0 26915 -cellosaurus:CVCL_1734 SW982 0 26916 -cellosaurus:CVCL_LK63 SW999 0 26917 -cellosaurus:CVCL_4W76 SWT-1 0 26918 -cellosaurus:CVCL_4W77 SWT-2 0 26919 -cellosaurus:CVCL_VK48 SYM-1 0 26920 -cellosaurus:CVCL_W498 SYN-1 0 26921 -cellosaurus:CVCL_W499 SYNb-1 0 26922 -cellosaurus:CVCL_W500 SYNb-2 0 26923 -cellosaurus:CVCL_7146 SYO-1 0 26924 -cellosaurus:CVCL_U955 T 174 0 26925 -cellosaurus:CVCL_F244 T-1387 0 26926 -cellosaurus:CVCL_LM78 T-40 0 26927 -cellosaurus:CVCL_JX99 T-60 0 26928 -cellosaurus:CVCL_QW79 T-67 0 26929 -cellosaurus:CVCL_LK90 T-77 0 26930 -cellosaurus:CVCL_LK91 T-82 0 26931 -cellosaurus:CVCL_IX02 T-85 0 26932 -cellosaurus:CVCL_3174 T.T 0 26933 -cellosaurus:CVCL_3175 T.Tn 0 26934 -cellosaurus:CVCL_E317 T1/CUHK 0 26935 -cellosaurus:CVCL_M809 T1000 0 26936 -cellosaurus:CVCL_ZF13 T101 [Human retinoblastoma] 0 26937 -cellosaurus:CVCL_8926 T11 [Human glioblastoma] 0 26938 -cellosaurus:CVCL_D023 T1682 0 26939 -cellosaurus:CVCL_D024 T1889 0 26940 -cellosaurus:CVCL_E318 T2/CUHK 0 26941 -cellosaurus:CVCL_V486 T201 0 26942 -cellosaurus:CVCL_S811 T222 0 26943 -cellosaurus:CVCL_6478 T235 0 26944 -cellosaurus:CVCL_6299 T238 0 26945 -cellosaurus:CVCL_M975 T241 0 26946 -cellosaurus:CVCL_M976 T243 0 26947 -cellosaurus:CVCL_S805 T265 0 26948 -cellosaurus:CVCL_J352 T34 [Human lymphoma] 0 26949 -cellosaurus:CVCL_M977 T351 0 26950 -cellosaurus:CVCL_8067 T3M-10 0 26951 -cellosaurus:CVCL_8066 T3M-11 0 26952 -cellosaurus:CVCL_4058 T3M-12 0 26953 -cellosaurus:CVCL_Y007 T3M-15 0 26954 -cellosaurus:CVCL_8065 T3M-3 0 26955 -cellosaurus:CVCL_4056 T3M-4 0 26956 -cellosaurus:CVCL_8064 T3M-5 0 26957 -cellosaurus:CVCL_1T20 T404 0 26958 -cellosaurus:CVCL_4570 T406 [Human glioblastoma] 0 26959 -cellosaurus:CVCL_1T19 T406 [Human HNSCC] 0 26960 -cellosaurus:CVCL_M807 T449 0 26961 -cellosaurus:CVCL_JY66 T45 0 26962 -cellosaurus:CVCL_W136 T508 0 26963 -cellosaurus:CVCL_W135 T567 0 26964 -cellosaurus:CVCL_M033 T67 0 26965 -cellosaurus:CVCL_M034 T70 0 26966 -cellosaurus:CVCL_W137 T705 0 26967 -cellosaurus:CVCL_M808 T778 0 26968 -cellosaurus:CVCL_M671 T87/rc 0 26969 -cellosaurus:CVCL_T057 T921 0 26970 -cellosaurus:CVCL_M081 T95-45D 0 26971 -cellosaurus:CVCL_QX04 TA-1 [Human leukemia] 0 26972 -cellosaurus:CVCL_A398 Tahr87 0 26973 -cellosaurus:CVCL_VG89 TAK-N 0 26974 -cellosaurus:CVCL_UW36 TAKA 0 26975 -cellosaurus:CVCL_3176 Takigawa 0 26976 -cellosaurus:CVCL_1736 TALL-1 [Human adult T-ALL] 0 26977 -cellosaurus:CVCL_LK52 TALL-1 [Human childhood T-ALL] 0 26978 -cellosaurus:CVCL_4922 TALL-101 0 26979 -cellosaurus:CVCL_2771 TALL-104 0 26980 -cellosaurus:CVCL_L800 TALL-105 0 26981 -cellosaurus:CVCL_L801 TALL-106 0 26982 -cellosaurus:CVCL_8464 TALL-107 0 26983 -cellosaurus:CVCL_B7V1 TAM-1 0 26984 -cellosaurus:CVCL_UW37 TANI 0 26985 -cellosaurus:CVCL_U987 TAOV 0 26986 -cellosaurus:CVCL_3177 TASK1 0 26987 -cellosaurus:CVCL_M789 Tat-1 0 26988 -cellosaurus:CVCL_M717 TAYA 0 26989 -cellosaurus:CVCL_4Z67 TB [Human] 0 26990 -cellosaurus:CVCL_0T71 TBCN-1 0 26991 -cellosaurus:CVCL_H710 TBCN-6 0 26992 -cellosaurus:CVCL_N709 TC 178 0 26993 -cellosaurus:CVCL_N710 TC 224 0 26994 -cellosaurus:CVCL_5H67 TC 314 0 26995 -cellosaurus:CVCL_5G75 TC 379 0 26996 -cellosaurus:CVCL_5G74 TC 396 0 26997 -cellosaurus:CVCL_5G76 TC 491 0 26998 -cellosaurus:CVCL_N711 TC 501 0 26999 -cellosaurus:CVCL_N712 TC 526 0 27000 -cellosaurus:CVCL_N713 TC 593 0 27001 -cellosaurus:CVCL_5G73 TC 691 0 27002 -cellosaurus:CVCL_M349 TC-1 [Human renal cell carcinoma] 0 27003 -cellosaurus:CVCL_F531 TC-106 0 27004 -cellosaurus:CVCL_7147 TC-131 0 27005 -cellosaurus:CVCL_9698 TC-135 0 27006 -cellosaurus:CVCL_4Z30 TC-138 0 27007 -cellosaurus:CVCL_7148 TC-174 0 27008 -cellosaurus:CVCL_4Z31 TC-205 0 27009 -cellosaurus:CVCL_7149 TC-206 0 27010 -cellosaurus:CVCL_S867 TC-212 0 27011 -cellosaurus:CVCL_4Z32 TC-215 0 27012 -cellosaurus:CVCL_4Z33 TC-240 0 27013 -cellosaurus:CVCL_4Z34 TC-244 0 27014 -cellosaurus:CVCL_4Z35 TC-248 0 27015 -cellosaurus:CVCL_4Z36 TC-249 0 27016 -cellosaurus:CVCL_S866 TC-252 0 27017 -cellosaurus:CVCL_7150 TC-253 0 27018 -cellosaurus:CVCL_F532 TC-268 0 27019 -cellosaurus:CVCL_S871 TC-280 0 27020 -cellosaurus:CVCL_7151 TC-32 0 27021 -cellosaurus:CVCL_4Z37 TC-4C 0 27022 -cellosaurus:CVCL_Y006 TC-78 0 27023 -cellosaurus:CVCL_9716 TC-83 0 27024 -cellosaurus:CVCL_1737 TC-YIK 0 27025 -cellosaurus:CVCL_IS68 TC289 0 27026 -cellosaurus:CVCL_ZV62 TC587 0 27027 -cellosaurus:CVCL_RL78 TC616 0 27028 -cellosaurus:CVCL_S881 TC7 0 27029 -cellosaurus:CVCL_S882 TC71 0 27030 -cellosaurus:CVCL_QX05 TC78 0 27031 -cellosaurus:CVCL_T012 TCam-2 0 27032 -cellosaurus:CVCL_E263 TCC-MESO-1 0 27033 -cellosaurus:CVCL_E264 TCC-MESO-2 0 27034 -cellosaurus:CVCL_E265 TCC-MESO-3 0 27035 -cellosaurus:CVCL_WS42 TCC-NECT-2 0 27036 -cellosaurus:CVCL_W386 TCC-S 0 27037 -cellosaurus:CVCL_B6EB TCL-598 0 27038 -cellosaurus:CVCL_HE32 TCO 0 27039 -cellosaurus:CVCL_M839 TCO-1 [Human thyroid carcinoma] 0 27040 -cellosaurus:CVCL_3630 TCO-2 0 27041 -cellosaurus:CVCL_A1JV TCO-3 0 27042 -cellosaurus:CVCL_M840 TCO-4 0 27043 -cellosaurus:CVCL_A1JW TCO-5 0 27044 -cellosaurus:CVCL_WZ32 TCPH-MM01 0 27045 -cellosaurus:CVCL_WZ37 TCPH-MM01-pleural 0 27046 -cellosaurus:CVCL_WZ33 TCPH-MM02 0 27047 -cellosaurus:CVCL_M193 TCPH-MM03 0 27048 -cellosaurus:CVCL_M192 TCPH-MM04 0 27049 -cellosaurus:CVCL_WZ34 TCPH-MM05 0 27050 -cellosaurus:CVCL_WZ35 TCPH-MM07 0 27051 -cellosaurus:CVCL_WZ36 TCPH-MM08 0 27052 -cellosaurus:CVCL_WZ38 TCPH-MM10 0 27053 -cellosaurus:CVCL_M191 TCPH-MM11 0 27054 -cellosaurus:CVCL_M194 TCPH-MM12 0 27055 -cellosaurus:CVCL_M195 TCPH-MM13 0 27056 -cellosaurus:CVCL_M196 TCPH-MM14 0 27057 -cellosaurus:CVCL_LB92 TDC2 0 27058 -cellosaurus:CVCL_GS49 TDMM1 0 27059 -cellosaurus:CVCL_S336 TE 114.T 0 27060 -cellosaurus:CVCL_S338 TE 131.T 0 27061 -cellosaurus:CVCL_S262 TE 138.T 0 27062 -cellosaurus:CVCL_S339 TE 139.T 0 27063 -cellosaurus:CVCL_S340 TE 141.T 0 27064 -cellosaurus:CVCL_S341 TE 143.T 0 27065 -cellosaurus:CVCL_1742 TE 149.T 0 27066 -cellosaurus:CVCL_1744 TE 161.T 0 27067 -cellosaurus:CVCL_1746 TE 175.T 0 27068 -cellosaurus:CVCL_S261 TE 189.T 0 27069 -cellosaurus:CVCL_S403 TE 193.T 0 27070 -cellosaurus:CVCL_1748 TE 206.T 0 27071 -cellosaurus:CVCL_N531 TE 210.T 0 27072 -cellosaurus:CVCL_N532 TE 211.T 0 27073 -cellosaurus:CVCL_1750 TE 354.T 0 27074 -cellosaurus:CVCL_1751 TE 381.T 0 27075 -cellosaurus:CVCL_N279 TE 415.T 0 27076 -cellosaurus:CVCL_1752 TE 417.T 0 27077 -cellosaurus:CVCL_1753 TE 418.T 0 27078 -cellosaurus:CVCL_1754 TE 441.T 0 27079 -cellosaurus:CVCL_N603 TE 449.T 0 27080 -cellosaurus:CVCL_S397 TE 453.T 0 27081 -cellosaurus:CVCL_S395 TE 491.T 0 27082 -cellosaurus:CVCL_S394 TE 501.T 0 27083 -cellosaurus:CVCL_S396 TE 543.T 0 27084 -cellosaurus:CVCL_S260 TE 585.T 0 27085 -cellosaurus:CVCL_S259 TE 596.T 0 27086 -cellosaurus:CVCL_S098 TE 615.T 0 27087 -cellosaurus:CVCL_1755 TE 617.T 0 27088 -cellosaurus:CVCL_S333 TE 79.T 0 27089 -cellosaurus:CVCL_1758 TE 84.T 0 27090 -cellosaurus:CVCL_N533 TE 87.T 0 27091 -cellosaurus:CVCL_N535 TE 89.T 0 27092 -cellosaurus:CVCL_1759 TE-1 0 27093 -cellosaurus:CVCL_1760 TE-10 0 27094 -cellosaurus:CVCL_1761 TE-11 0 27095 -cellosaurus:CVCL_1762 TE-12 0 27096 -cellosaurus:CVCL_4463 TE-13 0 27097 -cellosaurus:CVCL_3336 TE-14 0 27098 -cellosaurus:CVCL_1763 TE-15 0 27099 -cellosaurus:CVCL_4455 TE-2 0 27100 -cellosaurus:CVCL_9971 TE-3 0 27101 -cellosaurus:CVCL_3337 TE-4 0 27102 -cellosaurus:CVCL_1764 TE-5 0 27103 -cellosaurus:CVCL_9972 TE-7 0 27104 -cellosaurus:CVCL_1766 TE-8 0 27105 -cellosaurus:CVCL_1767 TE-9 0 27106 -cellosaurus:CVCL_A1FS TE110 0 27107 -cellosaurus:CVCL_E063 TEN 0 27108 -cellosaurus:CVCL_Y378 TENN 0 27109 -cellosaurus:CVCL_U375 TER-3 0 27110 -cellosaurus:CVCL_2776 Tera-1 0 27111 -cellosaurus:CVCL_VM17 TES1 0 27112 -cellosaurus:CVCL_VM18 TES2b 0 27113 -cellosaurus:CVCL_VM19 TESPE 0 27114 -cellosaurus:CVCL_H709 TGBC-47 0 27115 -cellosaurus:CVCL_1768 TGBC11TKB 0 27116 -cellosaurus:CVCL_3340 TGBC14TKB 0 27117 -cellosaurus:CVCL_3338 TGBC18TKB 0 27118 -cellosaurus:CVCL_1769 TGBC1TKB 0 27119 -cellosaurus:CVCL_1770 TGBC24TKB 0 27120 -cellosaurus:CVCL_3339 TGBC2TKB 0 27121 -cellosaurus:CVCL_E144 TGBC41TKB 0 27122 -cellosaurus:CVCL_E145 TGBC44TKB 0 27123 -cellosaurus:CVCL_H693 TGBC50TKB 0 27124 -cellosaurus:CVCL_H694 TGBC51TKB 0 27125 -cellosaurus:CVCL_H695 TGBC52TKB 0 27126 -cellosaurus:CVCL_B472 TGBG3 0 27127 -cellosaurus:CVCL_VH05 TH [Human esophageal squamous cell carcinoma] 0 27128 -cellosaurus:CVCL_M528 TH [Human plasma cell myeloma] 0 27129 -cellosaurus:CVCL_G000 TH-1 0 27130 -cellosaurus:CVCL_AS73 TH202 0 27131 -cellosaurus:CVCL_W919 THJ-11T 0 27132 -cellosaurus:CVCL_W920 THJ-16T 0 27133 -cellosaurus:CVCL_W921 THJ-21T 0 27134 -cellosaurus:CVCL_W922 THJ-29T 0 27135 -cellosaurus:CVCL_RP39 THJ529 0 27136 -cellosaurus:CVCL_RP40 THJ560 0 27137 -cellosaurus:CVCL_UI39 THK-72 0 27138 -cellosaurus:CVCL_U958 ThoCu 0 27139 -cellosaurus:CVCL_UB96 Thomas 0 27140 -cellosaurus:CVCL_9252 THP-2 0 27141 -cellosaurus:CVCL_9250 THP-3-1 0 27142 -cellosaurus:CVCL_9251 THP-3-2 0 27143 -cellosaurus:CVCL_9247 THP-4 0 27144 -cellosaurus:CVCL_A441 THP-5 0 27145 -cellosaurus:CVCL_4686 THP-6 0 27146 -cellosaurus:CVCL_9248 THP-7 0 27147 -cellosaurus:CVCL_4687 THP-8 0 27148 -cellosaurus:CVCL_9249 THP-9 0 27149 -cellosaurus:CVCL_9V38 Thr.C1-PI 33 0 27150 -cellosaurus:CVCL_D556 THX 0 27151 -cellosaurus:CVCL_2Z85 Thy0517 0 27152 -cellosaurus:CVCL_HF48 THY28 0 27153 -cellosaurus:CVCL_2Z86 ThyL-6 0 27154 -cellosaurus:CVCL_IU75 TJ-GBC2 0 27155 -cellosaurus:CVCL_B265 TJ8510 0 27156 -cellosaurus:CVCL_B266 TJ861 0 27157 -cellosaurus:CVCL_B264 TJ899 0 27158 -cellosaurus:CVCL_6975 TJ905 0 27159 -cellosaurus:CVCL_B6PX TJU-UM003 0 27160 -cellosaurus:CVCL_B6PY TJU-UM004 0 27161 -cellosaurus:CVCL_3216 TK [Human B-cell lymphoma] 0 27162 -cellosaurus:CVCL_4Z42 TK [Human cholangiocarcinoma] 0 27163 -cellosaurus:CVCL_1773 TK-10 0 27164 -cellosaurus:CVCL_8324 TK-164 0 27165 -cellosaurus:CVCL_X907 TK-6 [Human leukemia] 0 27166 -cellosaurus:CVCL_A1RJ TK-SA 0 27167 -cellosaurus:CVCL_RN48 TK91 0 27168 -cellosaurus:CVCL_S125 TKB-1 0 27169 -cellosaurus:CVCL_A1RM TKB-101 0 27170 -cellosaurus:CVCL_A1RN TKB-102 0 27171 -cellosaurus:CVCL_A1RK TKB-11 0 27172 -cellosaurus:CVCL_S126 TKB-12 0 27173 -cellosaurus:CVCL_A1RL TKB-13 0 27174 -cellosaurus:CVCL_S140 TKB-14 0 27175 -cellosaurus:CVCL_S127 TKB-15 0 27176 -cellosaurus:CVCL_S128 TKB-16 0 27177 -cellosaurus:CVCL_S129 TKB-17 0 27178 -cellosaurus:CVCL_S130 TKB-2 0 27179 -cellosaurus:CVCL_S131 TKB-20 0 27180 -cellosaurus:CVCL_S139 TKB-21 0 27181 -cellosaurus:CVCL_S138 TKB-3 0 27182 -cellosaurus:CVCL_S137 TKB-34 0 27183 -cellosaurus:CVCL_S132 TKB-4 0 27184 -cellosaurus:CVCL_S133 TKB-5 0 27185 -cellosaurus:CVCL_S134 TKB-6 0 27186 -cellosaurus:CVCL_S135 TKB-7 0 27187 -cellosaurus:CVCL_S136 TKB-8 0 27188 -cellosaurus:CVCL_5599 TKKK 0 27189 -cellosaurus:CVCL_8465 TKS-1 0 27190 -cellosaurus:CVCL_B371 TL-1 0 27191 -cellosaurus:CVCL_B473 TL-Om1 0 27192 -cellosaurus:CVCL_L177 TLBR-1 0 27193 -cellosaurus:CVCL_A1EY TLBR-2 0 27194 -cellosaurus:CVCL_A1EZ TLBR-3 0 27195 -cellosaurus:CVCL_A1FA TLBR-4 0 27196 -cellosaurus:CVCL_M032 TM-1 [Human astrocytoma] 0 27197 -cellosaurus:CVCL_A6KK TM-1 [Human leukemia] 0 27198 -cellosaurus:CVCL_A1RP TM-1 [Human melanoma] 0 27199 -cellosaurus:CVCL_6735 TM-31 0 27200 -cellosaurus:CVCL_5939 TM-791 0 27201 -cellosaurus:CVCL_8001 Tm87-16 0 27202 -cellosaurus:CVCL_A1UB TMBL-1 0 27203 -cellosaurus:CVCL_IM28 TMCC-1 0 27204 -cellosaurus:CVCL_5377 TMD2 0 27205 -cellosaurus:CVCL_3218 TMD5 0 27206 -cellosaurus:CVCL_5378 TMD7 0 27207 -cellosaurus:CVCL_A442 TMD8 0 27208 -cellosaurus:CVCL_W391 TMG-L 0 27209 -cellosaurus:CVCL_W376 TMUU-08 0 27210 -cellosaurus:CVCL_6738 TN-1 0 27211 -cellosaurus:CVCL_5602 TN-2 0 27212 -cellosaurus:CVCL_W517 TN-3 0 27213 -cellosaurus:CVCL_RM20 TN922 0 27214 -cellosaurus:CVCL_M836 TNMY1 0 27215 -cellosaurus:CVCL_N528 TO 165.T 0 27216 -cellosaurus:CVCL_N530 TO 167.T 0 27217 -cellosaurus:CVCL_N529 TO 173.T 0 27218 -cellosaurus:CVCL_S257 TO 183.T 0 27219 -cellosaurus:CVCL_S258 TO 184.T 0 27220 -cellosaurus:CVCL_3610 TO 203.T 0 27221 -cellosaurus:CVCL_2734 TO14 0 27222 -cellosaurus:CVCL_Y478 TOC-2 0 27223 -cellosaurus:CVCL_3611 Toledo 0 27224 -cellosaurus:CVCL_1895 TOM-1 0 27225 -cellosaurus:CVCL_5603 TOM-2 0 27226 -cellosaurus:CVCL_VQ06 TOMA 70 0 27227 -cellosaurus:CVCL_LM79 TOMO 0 27228 -cellosaurus:CVCL_V640 Tong/HCC 0 27229 -cellosaurus:CVCL_A753 TOS-1 0 27230 -cellosaurus:CVCL_A754 TOS-2 0 27231 -cellosaurus:CVCL_A755 TOS-3 0 27232 -cellosaurus:CVCL_A756 TOS-3LN 0 27233 -cellosaurus:CVCL_S612 TOTL-1 0 27234 -cellosaurus:CVCL_9T17 TOV-1369 0 27235 -cellosaurus:CVCL_4062 TOV-1946 0 27236 -cellosaurus:CVCL_3613 TOV-21G 0 27237 -cellosaurus:CVCL_4063 TOV-2223 0 27238 -cellosaurus:CVCL_9T18 TOV-2295(R) 0 27239 -cellosaurus:CVCL_A1SR TOV-2414 0 27240 -cellosaurus:CVCL_A1SJ TOV-2835EP 0 27241 -cellosaurus:CVCL_A1SK TOV-2881EP 0 27242 -cellosaurus:CVCL_A1SL TOV-2929D 0 27243 -cellosaurus:CVCL_9U73 TOV-2978G 0 27244 -cellosaurus:CVCL_9T24 TOV-3041G 0 27245 -cellosaurus:CVCL_A1SN TOV-3121EP 0 27246 -cellosaurus:CVCL_9T19 TOV-3133D 0 27247 -cellosaurus:CVCL_4064 TOV-3133G 0 27248 -cellosaurus:CVCL_9T25 TOV-3291G 0 27249 -cellosaurus:CVCL_A1SS TOV-3392D 0 27250 -cellosaurus:CVCL_A453 TOV-81D 0 27251 -cellosaurus:CVCL_M419 Tp 242-C 0 27252 -cellosaurus:CVCL_M420 Tp 362-C 0 27253 -cellosaurus:CVCL_A685 TP17 0 27254 -cellosaurus:CVCL_M432 Tp242MG 0 27255 -cellosaurus:CVCL_A686 Tp265MG 0 27256 -cellosaurus:CVCL_A687 Tp276MG 0 27257 -cellosaurus:CVCL_UH35 Tp301MG 0 27258 -cellosaurus:CVCL_W950 TP31 0 27259 -cellosaurus:CVCL_UH31 Tp323MG 0 27260 -cellosaurus:CVCL_A688 Tp336MG 0 27261 -cellosaurus:CVCL_UH32 Tp347MG 0 27262 -cellosaurus:CVCL_UH33 Tp364MG 0 27263 -cellosaurus:CVCL_A689 Tp365MG 0 27264 -cellosaurus:CVCL_M433 Tp378MG 0 27265 -cellosaurus:CVCL_UH34 Tp385MG 0 27266 -cellosaurus:CVCL_M434 Tp410N 0 27267 -cellosaurus:CVCL_A690 Tp483MG 0 27268 -cellosaurus:CVCL_A1FD TPF-10-741 0 27269 -cellosaurus:CVCL_IU63 TR-LCC-1 0 27270 -cellosaurus:CVCL_A9CG TR-LNN-1 0 27271 -cellosaurus:CVCL_J955 TR126 0 27272 -cellosaurus:CVCL_J954 TR131 0 27273 -cellosaurus:CVCL_J953 TR138 0 27274 -cellosaurus:CVCL_B474 TR14 0 27275 -cellosaurus:CVCL_2736 TR146 0 27276 -cellosaurus:CVCL_B475 TR170 0 27277 -cellosaurus:CVCL_B476 TR175 0 27278 -cellosaurus:CVCL_W398 TRAMA 0 27279 -cellosaurus:CVCL_VQ07 TRAR 60 0 27280 -cellosaurus:CVCL_M659 Tree92 0 27281 -cellosaurus:CVCL_W777 TRL-01 0 27282 -cellosaurus:CVCL_D877 Troja 1 0 27283 -cellosaurus:CVCL_D878 Troja 2 0 27284 -cellosaurus:CVCL_VH06 TS 0 27285 -cellosaurus:CVCL_E294 TS 0111 0 27286 -cellosaurus:CVCL_B7MK TS 0120 0 27287 -cellosaurus:CVCL_E295 TS 0129 0 27288 -cellosaurus:CVCL_E296 TS 0226 0 27289 -cellosaurus:CVCL_B7ML TS 031 0 27290 -cellosaurus:CVCL_B7MM TS 065 0 27291 -cellosaurus:CVCL_A323 TS-2 0 27292 -cellosaurus:CVCL_W501 TS-RM-1 0 27293 -cellosaurus:CVCL_A5HY TS516 0 27294 -cellosaurus:CVCL_A5HW TS603 0 27295 -cellosaurus:CVCL_A5HX TS676 0 27296 -cellosaurus:CVCL_A691 TS9;22 0 27297 -cellosaurus:CVCL_WD19 TSCC-1 0 27298 -cellosaurus:CVCL_XE94 TSCC1 0 27299 -cellosaurus:CVCL_B477 TSG11 0 27300 -cellosaurus:CVCL_S861 TSG6 0 27301 -cellosaurus:CVCL_N030 TSGH-8302 0 27302 -cellosaurus:CVCL_5379 TSGH-9201 0 27303 -cellosaurus:CVCL_B6KJ TSK-CHO1 0 27304 -cellosaurus:CVCL_8763 TSU 0 27305 -cellosaurus:CVCL_A455 TSU-1621MT 0 27306 -cellosaurus:CVCL_W865 TSUS-1 0 27307 -cellosaurus:CVCL_1774 TT 0 27308 -cellosaurus:CVCL_G001 TT1 [Human ovarian carcinoma] 0 27309 -cellosaurus:CVCL_B3S9 TT1 [Human thyroid carcinoma] 0 27310 -cellosaurus:CVCL_C1MK TT10603 0 27311 -cellosaurus:CVCL_C1ML TT10630 0 27312 -cellosaurus:CVCL_C1MM TT10714 0 27313 -cellosaurus:CVCL_C1MN TT10728 0 27314 -cellosaurus:CVCL_C1MP TT10902 0 27315 -cellosaurus:CVCL_C1MQ TT11111 0 27316 -cellosaurus:CVCL_C1MR TT11118 0 27317 -cellosaurus:CVCL_C1MS TT11201 0 27318 -cellosaurus:CVCL_8764 TT1TKB 0 27319 -cellosaurus:CVCL_A594 TT2609-A02 0 27320 -cellosaurus:CVCL_A595 TT2609-B02 0 27321 -cellosaurus:CVCL_2218 TT2609-C02 0 27322 -cellosaurus:CVCL_6297 TTA-1 0 27323 -cellosaurus:CVCL_9570 TTA-2 0 27324 -cellosaurus:CVCL_9571 TTA-3 0 27325 -cellosaurus:CVCL_AQ33 TTC-1318 0 27326 -cellosaurus:CVCL_B255 TTC-442 0 27327 -cellosaurus:CVCL_8003 TTC-445 0 27328 -cellosaurus:CVCL_A444 TTC-466 0 27329 -cellosaurus:CVCL_IW46 TTC-475 0 27330 -cellosaurus:CVCL_B256 TTC-487 0 27331 -cellosaurus:CVCL_8004 TTC-516 0 27332 -cellosaurus:CVCL_7152 TTC-547 0 27333 -cellosaurus:CVCL_8005 TTC-549 0 27334 -cellosaurus:CVCL_B257 TTC-633 0 27335 -cellosaurus:CVCL_8006 TTC-642 0 27336 -cellosaurus:CVCL_8007 TTC-709 0 27337 -cellosaurus:CVCL_EJ25 TTN-45 0 27338 -cellosaurus:CVCL_4910 Tu 138 0 27339 -cellosaurus:CVCL_1T17 Tu 158LN 0 27340 -cellosaurus:CVCL_4911 Tu 159 0 27341 -cellosaurus:CVCL_4913 Tu 177 0 27342 -cellosaurus:CVCL_4914 Tu 182 0 27343 -cellosaurus:CVCL_4915 Tu 212 0 27344 -cellosaurus:CVCL_1T18 Tu 212LN 0 27345 -cellosaurus:CVCL_4916 Tu 686 0 27346 -cellosaurus:CVCL_M530 TU-1 0 27347 -cellosaurus:CVCL_A5VJ Tu-107 0 27348 -cellosaurus:CVCL_4831 Tu-113 0 27349 -cellosaurus:CVCL_4909 Tu-132 0 27350 -cellosaurus:CVCL_W956 Tu-140 0 27351 -cellosaurus:CVCL_A5VK Tu-159 0 27352 -cellosaurus:CVCL_QX94 TU-2 0 27353 -cellosaurus:CVCL_QX95 TU-3 0 27354 -cellosaurus:CVCL_A5VL Tu-323 0 27355 -cellosaurus:CVCL_A5VM Tu-325 0 27356 -cellosaurus:CVCL_IP26 TU-ECS-1 0 27357 -cellosaurus:CVCL_1G72 TU-MM-1 0 27358 -cellosaurus:CVCL_L700 TU-OC-1 0 27359 -cellosaurus:CVCL_HE46 TU-OC-2 0 27360 -cellosaurus:CVCL_W127 TU-OM-1 0 27361 -cellosaurus:CVCL_K033 TU-OS-3 0 27362 -cellosaurus:CVCL_K032 TU-OS-4 0 27363 -cellosaurus:CVCL_5952 TUHR10TKB 0 27364 -cellosaurus:CVCL_5953 TUHR14TKB 0 27365 -cellosaurus:CVCL_5954 TUHR16TKB 0 27366 -cellosaurus:CVCL_5955 TUHR25TKB 0 27367 -cellosaurus:CVCL_5956 TUHR3TKB 0 27368 -cellosaurus:CVCL_5957 TUHR4TKB 0 27369 -cellosaurus:CVCL_VU90 TV 0 27370 -cellosaurus:CVCL_M220 TVMBO 0 27371 -cellosaurus:CVCL_GZ05 TW2.6 0 27372 -cellosaurus:CVCL_AQ50 TX-LY-172h 0 27373 -cellosaurus:CVCL_6853 Tx3095 0 27374 -cellosaurus:CVCL_6854 Tx3868 0 27375 -cellosaurus:CVCL_5643 TXM-1 0 27376 -cellosaurus:CVCL_5645 TXM-13 0 27377 -cellosaurus:CVCL_5646 TXM-18 0 27378 -cellosaurus:CVCL_5647 TXM-34 0 27379 -cellosaurus:CVCL_5648 TXM-40 0 27380 -cellosaurus:CVCL_DG42 TY-1 0 27381 -cellosaurus:CVCL_3220 Ty-82 0 27382 -cellosaurus:CVCL_9V43 TY-E 0 27383 -cellosaurus:CVCL_S804 TY-ES 0 27384 -cellosaurus:CVCL_JY37 TYAE-1 0 27385 -cellosaurus:CVCL_4W80 TYBDC-1 0 27386 -cellosaurus:CVCL_LC37 TYEK-1 0 27387 -cellosaurus:CVCL_B3M7 TYEK-2 0 27388 -cellosaurus:CVCL_J034 TYGBK-1 0 27389 -cellosaurus:CVCL_4W81 TYGBK-8 0 27390 -cellosaurus:CVCL_4W82 TYHPC-1 0 27391 -cellosaurus:CVCL_4W83 TYLMS-1 0 27392 -cellosaurus:CVCL_4V78 TYPK-1 0 27393 -cellosaurus:CVCL_4V79 TYPK-2 0 27394 -cellosaurus:CVCL_5G91 TYS 0 27395 -cellosaurus:CVCL_R882 TZ-1 0 27396 -cellosaurus:CVCL_5903 U-105MG 0 27397 -cellosaurus:CVCL_GR52 U-1073MG 0 27398 -cellosaurus:CVCL_GR53 U-1176MG 0 27399 -cellosaurus:CVCL_T446 U-120MG 0 27400 -cellosaurus:CVCL_5G55 U-1231MG 0 27401 -cellosaurus:CVCL_5G54 U-1240MG 0 27402 -cellosaurus:CVCL_F841 U-1242MG 0 27403 -cellosaurus:CVCL_7155 U-1568 0 27404 -cellosaurus:CVCL_D055 U-1690 0 27405 -cellosaurus:CVCL_0565 U-1752 0 27406 -cellosaurus:CVCL_W848 U-1761 0 27407 -cellosaurus:CVCL_A758 U-178MG 0 27408 -cellosaurus:CVCL_5G61 U-1796MG 0 27409 -cellosaurus:CVCL_D054 U-1810 0 27410 -cellosaurus:CVCL_M493 U-1957 0 27411 -cellosaurus:CVCL_M494 U-1958 0 27412 -cellosaurus:CVCL_M495 U-1996 0 27413 -cellosaurus:CVCL_D076 U-2020 0 27414 -cellosaurus:CVCL_D077 U-2050 0 27415 -cellosaurus:CVCL_W019 U-2149 0 27416 -cellosaurus:CVCL_0043 U-2197 0 27417 -cellosaurus:CVCL_X504 U-2904 0 27418 -cellosaurus:CVCL_1896 U-2932 0 27419 -cellosaurus:CVCL_1897 U-2940 0 27420 -cellosaurus:CVCL_X503 U-2946 0 27421 -cellosaurus:CVCL_1898 U-2973 0 27422 -cellosaurus:CVCL_S471 U-343MG 0 27423 -cellosaurus:CVCL_A1QU U-348MG 0 27424 -cellosaurus:CVCL_5G60 U-372MG 0 27425 -cellosaurus:CVCL_2818 U-373MG Uppsala 0 27426 -cellosaurus:CVCL_1E96 U-399MG 0 27427 -cellosaurus:CVCL_W020 U-410MG 0 27428 -cellosaurus:CVCL_IW55 U-47703 BL 0 27429 -cellosaurus:CVCL_1E97 U-489MG 0 27430 -cellosaurus:CVCL_1E98 U-495MG 0 27431 -cellosaurus:CVCL_1E99 U-539MG 0 27432 -cellosaurus:CVCL_A757 U-563MG 0 27433 -cellosaurus:CVCL_1F00 U-692MG 0 27434 -cellosaurus:CVCL_0017 U-698-M 0 27435 -cellosaurus:CVCL_5G70 U-706MG 0 27436 -cellosaurus:CVCL_5G71 U-706S 0 27437 -cellosaurus:CVCL_4T89 U-715-M 0 27438 -cellosaurus:CVCL_GP63 U-87MG Uppsala 0 27439 -cellosaurus:CVCL_2738 U-BLC1 0 27440 -cellosaurus:CVCL_1D66 U-CH10 0 27441 -cellosaurus:CVCL_1D67 U-CH11 0 27442 -cellosaurus:CVCL_VR46 U-CH11R 0 27443 -cellosaurus:CVCL_IR27 U-CH12 0 27444 -cellosaurus:CVCL_RA86 U-CH14 0 27445 -cellosaurus:CVCL_VR43 U-CH17M 0 27446 -cellosaurus:CVCL_VR44 U-CH17P 0 27447 -cellosaurus:CVCL_B6R8 U-CH17PII 0 27448 -cellosaurus:CVCL_VR45 U-CH17S 0 27449 -cellosaurus:CVCL_A5IE U-CH18 0 27450 -cellosaurus:CVCL_A5IF U-CH19 0 27451 -cellosaurus:CVCL_4989 U-CH2 0 27452 -cellosaurus:CVCL_IR25 U-CH3 0 27453 -cellosaurus:CVCL_IR26 U-CH6 0 27454 -cellosaurus:CVCL_IR23 U-CH7 0 27455 -cellosaurus:CVCL_A5IH U-CHCF359B 0 27456 -cellosaurus:CVCL_A5II U-CHCF365 0 27457 -cellosaurus:CVCL_A2XZ U-DCS 0 27458 -cellosaurus:CVCL_W412 U268 0 27459 -cellosaurus:CVCL_IR56 U3002MG 0 27460 -cellosaurus:CVCL_IR57 U3004MG 0 27461 -cellosaurus:CVCL_IR58 U3005MG 0 27462 -cellosaurus:CVCL_IR59 U3008MG 0 27463 -cellosaurus:CVCL_IR60 U3009MG 0 27464 -cellosaurus:CVCL_IR61 U3013MG 0 27465 -cellosaurus:CVCL_IR62 U3016MG 0 27466 -cellosaurus:CVCL_IR63 U3017MG 0 27467 -cellosaurus:CVCL_IR64 U3019MG 0 27468 -cellosaurus:CVCL_IR65 U3020MG 0 27469 -cellosaurus:CVCL_IR66 U3021MG 0 27470 -cellosaurus:CVCL_IR67 U3024MG 0 27471 -cellosaurus:CVCL_IR68 U3027MG 0 27472 -cellosaurus:CVCL_IR69 U3028MG 0 27473 -cellosaurus:CVCL_IR70 U3029MG 0 27474 -cellosaurus:CVCL_IR71 U3031MG 0 27475 -cellosaurus:CVCL_IR72 U3033MG 0 27476 -cellosaurus:CVCL_IR73 U3034MG 0 27477 -cellosaurus:CVCL_IR74 U3035MG 0 27478 -cellosaurus:CVCL_IR75 U3037MG 0 27479 -cellosaurus:CVCL_IR76 U3039MG 0 27480 -cellosaurus:CVCL_IR77 U3042MG 0 27481 -cellosaurus:CVCL_IR78 U3046MG 0 27482 -cellosaurus:CVCL_IR79 U3047MG 0 27483 -cellosaurus:CVCL_IR80 U3048MG 0 27484 -cellosaurus:CVCL_IR81 U3051MG 0 27485 -cellosaurus:CVCL_IR82 U3053MG 0 27486 -cellosaurus:CVCL_IR83 U3054MG 0 27487 -cellosaurus:CVCL_IR84 U3056MG 0 27488 -cellosaurus:CVCL_IR85 U3060MG 0 27489 -cellosaurus:CVCL_IR86 U3062MG 0 27490 -cellosaurus:CVCL_IR87 U3065MG 0 27491 -cellosaurus:CVCL_IR88 U3067MG 0 27492 -cellosaurus:CVCL_IR89 U3068MG 0 27493 -cellosaurus:CVCL_IR90 U3071MG 0 27494 -cellosaurus:CVCL_IR91 U3073MG 0 27495 -cellosaurus:CVCL_IR92 U3078MG 0 27496 -cellosaurus:CVCL_IR93 U3082MG 0 27497 -cellosaurus:CVCL_IR94 U3084MG 0 27498 -cellosaurus:CVCL_IR95 U3085MG 0 27499 -cellosaurus:CVCL_IR96 U3086MG 0 27500 -cellosaurus:CVCL_IR97 U3088MG 0 27501 -cellosaurus:CVCL_A1FX U3093MG 0 27502 -cellosaurus:CVCL_IR98 U3101MG 0 27503 -cellosaurus:CVCL_A1FY U3102MG 0 27504 -cellosaurus:CVCL_A1FZ U3104MG 0 27505 -cellosaurus:CVCL_IR99 U3110MG 0 27506 -cellosaurus:CVCL_IS00 U3117MG 0 27507 -cellosaurus:CVCL_IS01 U3118MG 0 27508 -cellosaurus:CVCL_IS02 U3121MG 0 27509 -cellosaurus:CVCL_IS03 U3123MG 0 27510 -cellosaurus:CVCL_IS04 U3129MG 0 27511 -cellosaurus:CVCL_A1GA U3137MG 0 27512 -cellosaurus:CVCL_A1GB U3140MG 0 27513 -cellosaurus:CVCL_A1GC U3146MG 0 27514 -cellosaurus:CVCL_A1GD U3155MG 0 27515 -cellosaurus:CVCL_A1GE U3164MG 0 27516 -cellosaurus:CVCL_A1GF U3167MG 0 27517 -cellosaurus:CVCL_A1GG U3169MG 0 27518 -cellosaurus:CVCL_A1GH U3172MG 0 27519 -cellosaurus:CVCL_A1GI U3173MG 0 27520 -cellosaurus:CVCL_A1GJ U3175MG 0 27521 -cellosaurus:CVCL_A1GK U3180MG 0 27522 -cellosaurus:CVCL_A1GL U3189MG 0 27523 -cellosaurus:CVCL_A1GM U3198MG 0 27524 -cellosaurus:CVCL_A1GN U3202MG 0 27525 -cellosaurus:CVCL_L857 U4SS 0 27526 -cellosaurus:CVCL_M448 UACC-1012 0 27527 -cellosaurus:CVCL_4035 UACC-1022 0 27528 -cellosaurus:CVCL_VP00 UACC-1065 0 27529 -cellosaurus:CVCL_M449 UACC-1097 0 27530 -cellosaurus:CVCL_DG48 UACC-1118 0 27531 -cellosaurus:CVCL_4036 UACC-1179 0 27532 -cellosaurus:CVCL_4037 UACC-1227 0 27533 -cellosaurus:CVCL_4038 UACC-1237 0 27534 -cellosaurus:CVCL_M450 UACC-1256 0 27535 -cellosaurus:CVCL_DG39 UACC-1308 0 27536 -cellosaurus:CVCL_VP01 UACC-1460 0 27537 -cellosaurus:CVCL_M451 UACC-1529 0 27538 -cellosaurus:CVCL_4040 UACC-1598 0 27539 -cellosaurus:CVCL_S728 UACC-182 0 27540 -cellosaurus:CVCL_IN96 UACC-1940 0 27541 -cellosaurus:CVCL_4041 UACC-2087 0 27542 -cellosaurus:CVCL_WS78 UACC-2116 0 27543 -cellosaurus:CVCL_S729 UACC-239 0 27544 -cellosaurus:CVCL_WS79 UACC-2436 0 27545 -cellosaurus:CVCL_WS80 UACC-245 0 27546 -cellosaurus:CVCL_M452 UACC-2534 0 27547 -cellosaurus:CVCL_E116 UACC-2561 0 27548 -cellosaurus:CVCL_M453 UACC-2565 0 27549 -cellosaurus:CVCL_1779 UACC-257 0 27550 -cellosaurus:CVCL_W021 UACC-2648 0 27551 -cellosaurus:CVCL_WS81 UACC-265 0 27552 -cellosaurus:CVCL_ZE36 UACC-2715 0 27553 -cellosaurus:CVCL_DG40 UACC-2837 0 27554 -cellosaurus:CVCL_1G28 UACC-2972 0 27555 -cellosaurus:CVCL_M454 UACC-2973 0 27556 -cellosaurus:CVCL_W092 UACC-2996 0 27557 -cellosaurus:CVCL_M455 UACC-3074 0 27558 -cellosaurus:CVCL_A692 UACC-3093 0 27559 -cellosaurus:CVCL_B221 UACC-3133 0 27560 -cellosaurus:CVCL_M456 UACC-3149 0 27561 -cellosaurus:CVCL_4042 UACC-3199 0 27562 -cellosaurus:CVCL_W091 UACC-3247 0 27563 -cellosaurus:CVCL_4043 UACC-325 0 27564 -cellosaurus:CVCL_IN97 UACC-3291 0 27565 -cellosaurus:CVCL_M457 UACC-375 0 27566 -cellosaurus:CVCL_4044 UACC-383 0 27567 -cellosaurus:CVCL_4045 UACC-456 0 27568 -cellosaurus:CVCL_4046 UACC-457 0 27569 -cellosaurus:CVCL_4047 UACC-462 0 27570 -cellosaurus:CVCL_M458 UACC-502 0 27571 -cellosaurus:CVCL_S730 UACC-537 0 27572 -cellosaurus:CVCL_DG41 UACC-558 0 27573 -cellosaurus:CVCL_4048 UACC-608 0 27574 -cellosaurus:CVCL_VP02 UACC-612 0 27575 -cellosaurus:CVCL_4049 UACC-647 0 27576 -cellosaurus:CVCL_4050 UACC-732 0 27577 -cellosaurus:CVCL_S731 UACC-793 0 27578 -cellosaurus:CVCL_1781 UACC-812 0 27579 -cellosaurus:CVCL_4051 UACC-827 0 27580 -cellosaurus:CVCL_1782 UACC-893 0 27581 -cellosaurus:CVCL_4052 UACC-903 0 27582 -cellosaurus:CVCL_M447 UACC-91 0 27583 -cellosaurus:CVCL_M459 UACC-929 0 27584 -cellosaurus:CVCL_4053 UACC-930 0 27585 -cellosaurus:CVCL_A7NG UACC-SARC1 0 27586 -cellosaurus:CVCL_M421 UC-11MG 0 27587 -cellosaurus:CVCL_M422 UC-302MG 0 27588 -cellosaurus:CVCL_W502 UCCA-21 0 27589 -cellosaurus:CVCL_W503 UCCA-22 0 27590 -cellosaurus:CVCL_W504 UCCA-23 0 27591 -cellosaurus:CVCL_W505 UCCA-24 0 27592 -cellosaurus:CVCL_W506 UCCA-25 0 27593 -cellosaurus:CVCL_W507 UCCA-3 0 27594 -cellosaurus:CVCL_ZV45 UCD115 0 27595 -cellosaurus:CVCL_ZV42 UCD12 0 27596 -cellosaurus:CVCL_ZV46 UCD178 0 27597 -cellosaurus:CVCL_ZV41 UCD4 0 27598 -cellosaurus:CVCL_ZV43 UCD46 0 27599 -cellosaurus:CVCL_ZV44 UCD65 0 27600 -cellosaurus:CVCL_4991 UCH1 0 27601 -cellosaurus:CVCL_5380 UCI 101 0 27602 -cellosaurus:CVCL_5381 UCI 107 0 27603 -cellosaurus:CVCL_S961 UCI-VULV-1 0 27604 -cellosaurus:CVCL_M586 UCLA # 1 0 27605 -cellosaurus:CVCL_N513 UCLA-P3 0 27606 -cellosaurus:CVCL_S741 UCLC11 0 27607 -cellosaurus:CVCL_C264 UCO-Mel-2 0 27608 -cellosaurus:CVCL_A693 UCONN-L2 0 27609 -cellosaurus:CVCL_M874 UCRU-BL-12 0 27610 -cellosaurus:CVCL_M873 UCRU-BL-13 0 27611 -cellosaurus:CVCL_4904 UCRU-BL-28 0 27612 -cellosaurus:CVCL_4905 UCRU-Pr-2 0 27613 -cellosaurus:CVCL_W508 UCS-2 0 27614 -cellosaurus:CVCL_W509 UCS-4 0 27615 -cellosaurus:CVCL_W510 UCS-5 0 27616 -cellosaurus:CVCL_M009 UCSD-242L 0 27617 -cellosaurus:CVCL_M010 UCSD-354L 0 27618 -cellosaurus:CVCL_1853 UCSD-AML1 0 27619 -cellosaurus:CVCL_JE76 UCSF-OT-1109 0 27620 -cellosaurus:CVCL_T304 UCT-Mel 1 0 27621 -cellosaurus:CVCL_T305 UCT-Mel 2 0 27622 -cellosaurus:CVCL_T306 UCT-Mel 3 0 27623 -cellosaurus:CVCL_T307 UCT-Mel 4 0 27624 -cellosaurus:CVCL_T308 UCT-Mel 5 0 27625 -cellosaurus:CVCL_T309 UCT-Mel 6 0 27626 -cellosaurus:CVCL_T310 UCT-Mel 7 0 27627 -cellosaurus:CVCL_1G10 UCVA-1 0 27628 -cellosaurus:CVCL_W337 UD-PTC 0 27629 -cellosaurus:CVCL_E324 UD-SCC-1 0 27630 -cellosaurus:CVCL_E325 UD-SCC-2 0 27631 -cellosaurus:CVCL_E326 UD-SCC-3 0 27632 -cellosaurus:CVCL_E327 UD-SCC-4 0 27633 -cellosaurus:CVCL_L548 UD-SCC-5 0 27634 -cellosaurus:CVCL_M120 UD-SCC-6 0 27635 -cellosaurus:CVCL_M118 UD-SCC-7A 0 27636 -cellosaurus:CVCL_M119 UD-SCC-7B 0 27637 -cellosaurus:CVCL_YD75 UD-SCC-7C 0 27638 -cellosaurus:CVCL_YD74 UD-SCC-8 0 27639 -cellosaurus:CVCL_0567 UF-1 0 27640 -cellosaurus:CVCL_5382 UG3 0 27641 -cellosaurus:CVCL_A436 UHG-NP 0 27642 -cellosaurus:CVCL_RI30 UHKT-40 0 27643 -cellosaurus:CVCL_K243 UHKT-42 0 27644 -cellosaurus:CVCL_1K05 UHKT-944 0 27645 -cellosaurus:CVCL_A694 UIA-MM1 0 27646 -cellosaurus:CVCL_A695 UIA-MM2 0 27647 -cellosaurus:CVCL_A696 UIA-MM3 0 27648 -cellosaurus:CVCL_M479 UIA-MM4 0 27649 -cellosaurus:CVCL_A697 UIA-MM5 0 27650 -cellosaurus:CVCL_M480 UIA-MM6 0 27651 -cellosaurus:CVCL_A698 UIA-MM7 0 27652 -cellosaurus:CVCL_A699 UIA-MM8 0 27653 -cellosaurus:CVCL_D249 UISO-BCA-1 0 27654 -cellosaurus:CVCL_D250 UISO-BCA-2 0 27655 -cellosaurus:CVCL_D251 UISO-BCA-3 0 27656 -cellosaurus:CVCL_D252 UISO-BCA-4 0 27657 -cellosaurus:CVCL_XF38 UISO-GCT-1 0 27658 -cellosaurus:CVCL_E996 UISO-MCC-1 0 27659 -cellosaurus:CVCL_XF80 UISO-MEL-1 0 27660 -cellosaurus:CVCL_ZL36 UISO-MEL-11 0 27661 -cellosaurus:CVCL_ZL37 UISO-MEL-16 0 27662 -cellosaurus:CVCL_ZL38 UISO-MEL-23 0 27663 -cellosaurus:CVCL_ZL43 UISO-MEL-29 0 27664 -cellosaurus:CVCL_ZL39 UISO-MEL-3 0 27665 -cellosaurus:CVCL_ZL40 UISO-MEL-6 0 27666 -cellosaurus:CVCL_ZL41 UISO-MEL-7 0 27667 -cellosaurus:CVCL_ZL42 UISO-MEL-8 0 27668 -cellosaurus:CVCL_Y581 UISO-RS-3 0 27669 -cellosaurus:CVCL_UW41 UK Pan-1 0 27670 -cellosaurus:CVCL_A5TT UK1 0 27671 -cellosaurus:CVCL_EJ02 UKEAC-99 0 27672 -cellosaurus:CVCL_XA30 UKF-NB-1 0 27673 -cellosaurus:CVCL_N789 UKRV-Mel-01 0 27674 -cellosaurus:CVCL_A700 UKRV-Mel-02 0 27675 -cellosaurus:CVCL_A701 UKRV-Mel-03 0 27676 -cellosaurus:CVCL_A702 UKRV-Mel-04 0 27677 -cellosaurus:CVCL_A703 UKRV-Mel-05 0 27678 -cellosaurus:CVCL_A704 UKRV-Mel-06a 0 27679 -cellosaurus:CVCL_A705 UKRV-Mel-06b 0 27680 -cellosaurus:CVCL_A706 UKRV-Mel-07 0 27681 -cellosaurus:CVCL_A707 UKRV-Mel-10 0 27682 -cellosaurus:CVCL_A708 UKRV-Mel-11 0 27683 -cellosaurus:CVCL_A709 UKRV-Mel-12 0 27684 -cellosaurus:CVCL_C659 UKRV-Mel-12a 0 27685 -cellosaurus:CVCL_C660 UKRV-Mel-12b 0 27686 -cellosaurus:CVCL_C408 UKRV-Mel-13 0 27687 -cellosaurus:CVCL_A710 UKRV-Mel-14a 0 27688 -cellosaurus:CVCL_A711 UKRV-Mel-14b 0 27689 -cellosaurus:CVCL_C409 UKRV-Mel-14c 0 27690 -cellosaurus:CVCL_A712 UKRV-Mel-15 0 27691 -cellosaurus:CVCL_A713 UKRV-Mel-15a 0 27692 -cellosaurus:CVCL_C397 UKRV-Mel-15b 0 27693 -cellosaurus:CVCL_C398 UKRV-Mel-15c 0 27694 -cellosaurus:CVCL_A714 UKRV-Mel-15d 0 27695 -cellosaurus:CVCL_A715 UKRV-Mel-16 0 27696 -cellosaurus:CVCL_A716 UKRV-Mel-17 0 27697 -cellosaurus:CVCL_A717 UKRV-Mel-18a 0 27698 -cellosaurus:CVCL_A718 UKRV-Mel-18b 0 27699 -cellosaurus:CVCL_A719 UKRV-Mel-19 0 27700 -cellosaurus:CVCL_A720 UKRV-Mel-19a 0 27701 -cellosaurus:CVCL_C399 UKRV-Mel-19b 0 27702 -cellosaurus:CVCL_C400 UKRV-Mel-19c 0 27703 -cellosaurus:CVCL_A721 UKRV-Mel-20a 0 27704 -cellosaurus:CVCL_C401 UKRV-Mel-20b 0 27705 -cellosaurus:CVCL_C402 UKRV-Mel-20c 0 27706 -cellosaurus:CVCL_C403 UKRV-Mel-20e 0 27707 -cellosaurus:CVCL_C404 UKRV-Mel-20f 0 27708 -cellosaurus:CVCL_C405 UKRV-Mel-20h 0 27709 -cellosaurus:CVCL_A722 UKRV-Mel-21a 0 27710 -cellosaurus:CVCL_A723 UKRV-Mel-22 0 27711 -cellosaurus:CVCL_C661 UKRV-Mel-22a 0 27712 -cellosaurus:CVCL_C662 UKRV-Mel-22b 0 27713 -cellosaurus:CVCL_A724 UKRV-Mel-23 0 27714 -cellosaurus:CVCL_A725 UKRV-Mel-24 0 27715 -cellosaurus:CVCL_C406 UKRV-Mel-25 0 27716 -cellosaurus:CVCL_A726 UKRV-Mel-27 0 27717 -cellosaurus:CVCL_A727 UKRV-Mel-29 0 27718 -cellosaurus:CVCL_C407 UKRV-Mel-30 0 27719 -cellosaurus:CVCL_A728 UKRV-Mel-31 0 27720 -cellosaurus:CVCL_VK54 UKRV-Mel-32 0 27721 -cellosaurus:CVCL_A729 UKRV-Mel-37 0 27722 -cellosaurus:CVCL_A730 UKRV-Mel-38 0 27723 -cellosaurus:CVCL_1854 ULA 0 27724 -cellosaurus:CVCL_W392 UM-1 [Human plasma cell myeloma] 0 27725 -cellosaurus:CVCL_W393 UM-2 0 27726 -cellosaurus:CVCL_W394 UM-3 [Human plasma cell myeloma] 0 27727 -cellosaurus:CVCL_W395 UM-6 0 27728 -cellosaurus:CVCL_0J37 UM-CCS-1 0 27729 -cellosaurus:CVCL_1D68 UM-Chor1 0 27730 -cellosaurus:CVCL_5T81 UM-Chor2 0 27731 -cellosaurus:CVCL_UZ98 UM-Chor5 0 27732 -cellosaurus:CVCL_A5IC UM-Chor5C 0 27733 -cellosaurus:CVCL_A5ID UM-Chor5D 0 27734 -cellosaurus:CVCL_A5IG UM-Chor6 0 27735 -cellosaurus:CVCL_5972 UM-EC-1 0 27736 -cellosaurus:CVCL_X001 UM-EC-2 0 27737 -cellosaurus:CVCL_X002 UM-EC-3 0 27738 -cellosaurus:CVCL_W199 UM-FSC-1 0 27739 -cellosaurus:CVCL_HX25 UM-GCC-1 0 27740 -cellosaurus:CVCL_Y473 UM-HMC-1 0 27741 -cellosaurus:CVCL_Y474 UM-HMC-2 0 27742 -cellosaurus:CVCL_Y471 UM-HMC-3A 0 27743 -cellosaurus:CVCL_Y472 UM-HMC-3B 0 27744 -cellosaurus:CVCL_Y475 UM-HPA-1 0 27745 -cellosaurus:CVCL_WN45 UM-LAd-1 0 27746 -cellosaurus:CVCL_VL97 UM-MCC13 0 27747 -cellosaurus:CVCL_UL66 UM-MCC19 0 27748 -cellosaurus:CVCL_UL67 UM-MCC21 0 27749 -cellosaurus:CVCL_VM00 UM-MCC29 0 27750 -cellosaurus:CVCL_VM01 UM-MCC31 0 27751 -cellosaurus:CVCL_VM02 UM-MCC32 0 27752 -cellosaurus:CVCL_VM04 UM-MCC34 0 27753 -cellosaurus:CVCL_VM03 UM-MCC35 0 27754 -cellosaurus:CVCL_VM05 UM-MCC40 0 27755 -cellosaurus:CVCL_VM06 UM-MCC565 0 27756 -cellosaurus:CVCL_VL98 UM-MCC623 0 27757 -cellosaurus:CVCL_VL99 UM-MCC624 0 27758 -cellosaurus:CVCL_VL96 UM-MCC9 0 27759 -cellosaurus:CVCL_WN44 UM-PAd-1 0 27760 -cellosaurus:CVCL_B226 UM-RC-11 0 27761 -cellosaurus:CVCL_2739 UM-RC-2 0 27762 -cellosaurus:CVCL_2740 UM-RC-3 0 27763 -cellosaurus:CVCL_B227 UM-RC-5 0 27764 -cellosaurus:CVCL_2741 UM-RC-6 0 27765 -cellosaurus:CVCL_2742 UM-RC-7 0 27766 -cellosaurus:CVCL_7708 UM-SCC-100 0 27767 -cellosaurus:CVCL_7709 UM-SCC-101A 0 27768 -cellosaurus:CVCL_7710 UM-SCC-101B 0 27769 -cellosaurus:CVCL_7711 UM-SCC-103 0 27770 -cellosaurus:CVCL_7712 UM-SCC-104 0 27771 -cellosaurus:CVCL_0C69 UM-SCC-105 0 27772 -cellosaurus:CVCL_0C70 UM-SCC-106 0 27773 -cellosaurus:CVCL_0C71 UM-SCC-108 0 27774 -cellosaurus:CVCL_0C72 UM-SCC-109 0 27775 -cellosaurus:CVCL_7713 UM-SCC-10A 0 27776 -cellosaurus:CVCL_0C73 UM-SCC-110 0 27777 -cellosaurus:CVCL_0C74 UM-SCC-111 0 27778 -cellosaurus:CVCL_A1FW UM-SCC-118 0 27779 -cellosaurus:CVCL_7715 UM-SCC-11A 0 27780 -cellosaurus:CVCL_7716 UM-SCC-11B 0 27781 -cellosaurus:CVCL_7717 UM-SCC-12 0 27782 -cellosaurus:CVCL_7718 UM-SCC-13 0 27783 -cellosaurus:CVCL_7719 UM-SCC-14A 0 27784 -cellosaurus:CVCL_7720 UM-SCC-14B 0 27785 -cellosaurus:CVCL_7721 UM-SCC-14C 0 27786 -cellosaurus:CVCL_7722 UM-SCC-15 0 27787 -cellosaurus:CVCL_7723 UM-SCC-16 0 27788 -cellosaurus:CVCL_7725 UM-SCC-17B 0 27789 -cellosaurus:CVCL_7726 UM-SCC-18 0 27790 -cellosaurus:CVCL_7727 UM-SCC-19 0 27791 -cellosaurus:CVCL_7728 UM-SCC-2 0 27792 -cellosaurus:CVCL_7729 UM-SCC-20 0 27793 -cellosaurus:CVCL_7730 UM-SCC-21A 0 27794 -cellosaurus:CVCL_L143 UM-SCC-21B 0 27795 -cellosaurus:CVCL_7731 UM-SCC-22A 0 27796 -cellosaurus:CVCL_7732 UM-SCC-22B 0 27797 -cellosaurus:CVCL_7733 UM-SCC-23 0 27798 -cellosaurus:CVCL_7734 UM-SCC-24 0 27799 -cellosaurus:CVCL_7735 UM-SCC-25 0 27800 -cellosaurus:CVCL_7736 UM-SCC-26 0 27801 -cellosaurus:CVCL_7737 UM-SCC-27 0 27802 -cellosaurus:CVCL_7738 UM-SCC-28 0 27803 -cellosaurus:CVCL_7739 UM-SCC-29 0 27804 -cellosaurus:CVCL_7740 UM-SCC-3 0 27805 -cellosaurus:CVCL_7741 UM-SCC-30 0 27806 -cellosaurus:CVCL_7742 UM-SCC-31 0 27807 -cellosaurus:CVCL_7743 UM-SCC-32 0 27808 -cellosaurus:CVCL_7744 UM-SCC-33 0 27809 -cellosaurus:CVCL_7745 UM-SCC-34 0 27810 -cellosaurus:CVCL_7746 UM-SCC-35 0 27811 -cellosaurus:CVCL_7747 UM-SCC-36 0 27812 -cellosaurus:CVCL_7748 UM-SCC-37 0 27813 -cellosaurus:CVCL_7749 UM-SCC-38 0 27814 -cellosaurus:CVCL_7750 UM-SCC-39 0 27815 -cellosaurus:CVCL_7751 UM-SCC-4 0 27816 -cellosaurus:CVCL_7752 UM-SCC-40 0 27817 -cellosaurus:CVCL_7753 UM-SCC-41 0 27818 -cellosaurus:CVCL_7754 UM-SCC-42 0 27819 -cellosaurus:CVCL_7755 UM-SCC-43 0 27820 -cellosaurus:CVCL_7756 UM-SCC-44 0 27821 -cellosaurus:CVCL_7757 UM-SCC-45 0 27822 -cellosaurus:CVCL_7758 UM-SCC-46 0 27823 -cellosaurus:CVCL_7759 UM-SCC-47 0 27824 -cellosaurus:CVCL_7760 UM-SCC-48 0 27825 -cellosaurus:CVCL_7761 UM-SCC-49 0 27826 -cellosaurus:CVCL_7763 UM-SCC-50 0 27827 -cellosaurus:CVCL_7764 UM-SCC-51 0 27828 -cellosaurus:CVCL_7765 UM-SCC-52 0 27829 -cellosaurus:CVCL_7766 UM-SCC-53 0 27830 -cellosaurus:CVCL_7767 UM-SCC-54 0 27831 -cellosaurus:CVCL_7768 UM-SCC-55 0 27832 -cellosaurus:CVCL_7769 UM-SCC-56 0 27833 -cellosaurus:CVCL_7770 UM-SCC-57 0 27834 -cellosaurus:CVCL_7771 UM-SCC-58 0 27835 -cellosaurus:CVCL_7772 UM-SCC-59 0 27836 -cellosaurus:CVCL_7773 UM-SCC-6 0 27837 -cellosaurus:CVCL_7774 UM-SCC-60 0 27838 -cellosaurus:CVCL_L129 UM-SCC-62 0 27839 -cellosaurus:CVCL_L130 UM-SCC-63 0 27840 -cellosaurus:CVCL_A1RA UM-SCC-64 0 27841 -cellosaurus:CVCL_L131 UM-SCC-65 0 27842 -cellosaurus:CVCL_L132 UM-SCC-66 0 27843 -cellosaurus:CVCL_L133 UM-SCC-67 0 27844 -cellosaurus:CVCL_L134 UM-SCC-68A 0 27845 -cellosaurus:CVCL_L135 UM-SCC-68B 0 27846 -cellosaurus:CVCL_7775 UM-SCC-69 0 27847 -cellosaurus:CVCL_7776 UM-SCC-7 0 27848 -cellosaurus:CVCL_7777 UM-SCC-70 0 27849 -cellosaurus:CVCL_L136 UM-SCC-71 0 27850 -cellosaurus:CVCL_L137 UM-SCC-72 0 27851 -cellosaurus:CVCL_9T70 UM-SCC-73A 0 27852 -cellosaurus:CVCL_7778 UM-SCC-73B 0 27853 -cellosaurus:CVCL_7779 UM-SCC-74A 0 27854 -cellosaurus:CVCL_7780 UM-SCC-74B 0 27855 -cellosaurus:CVCL_L138 UM-SCC-75 0 27856 -cellosaurus:CVCL_L139 UM-SCC-76 0 27857 -cellosaurus:CVCL_L140 UM-SCC-77 0 27858 -cellosaurus:CVCL_L141 UM-SCC-78A 0 27859 -cellosaurus:CVCL_L142 UM-SCC-78B 0 27860 -cellosaurus:CVCL_L299 UM-SCC-79 0 27861 -cellosaurus:CVCL_7781 UM-SCC-8 0 27862 -cellosaurus:CVCL_7782 UM-SCC-80 0 27863 -cellosaurus:CVCL_7783 UM-SCC-81A 0 27864 -cellosaurus:CVCL_7784 UM-SCC-81B 0 27865 -cellosaurus:CVCL_L127 UM-SCC-82A 0 27866 -cellosaurus:CVCL_L128 UM-SCC-82B 0 27867 -cellosaurus:CVCL_7785 UM-SCC-83A 0 27868 -cellosaurus:CVCL_7786 UM-SCC-83B 0 27869 -cellosaurus:CVCL_7787 UM-SCC-84 0 27870 -cellosaurus:CVCL_7788 UM-SCC-85 0 27871 -cellosaurus:CVCL_7789 UM-SCC-86 0 27872 -cellosaurus:CVCL_7790 UM-SCC-87 0 27873 -cellosaurus:CVCL_7791 UM-SCC-88 0 27874 -cellosaurus:CVCL_7792 UM-SCC-89 0 27875 -cellosaurus:CVCL_7793 UM-SCC-9 0 27876 -cellosaurus:CVCL_7794 UM-SCC-90 0 27877 -cellosaurus:CVCL_7795 UM-SCC-91 0 27878 -cellosaurus:CVCL_7796 UM-SCC-92 0 27879 -cellosaurus:CVCL_7797 UM-SCC-93 0 27880 -cellosaurus:CVCL_7798 UM-SCC-94 0 27881 -cellosaurus:CVCL_7799 UM-SCC-95 0 27882 -cellosaurus:CVCL_7800 UM-SCC-96 0 27883 -cellosaurus:CVCL_7801 UM-SCC-97 0 27884 -cellosaurus:CVCL_7802 UM-SCC-98 0 27885 -cellosaurus:CVCL_7803 UM-SCC-99 0 27886 -cellosaurus:CVCL_4906 UM-SCP-1 0 27887 -cellosaurus:CVCL_0568 UM-SCV-1A 0 27888 -cellosaurus:CVCL_5973 UM-SCV-1B 0 27889 -cellosaurus:CVCL_5974 UM-SCV-2 0 27890 -cellosaurus:CVCL_5975 UM-SCV-3 0 27891 -cellosaurus:CVCL_5976 UM-SCV-4 0 27892 -cellosaurus:CVCL_HX24 UM-SCV-5 0 27893 -cellosaurus:CVCL_0569 UM-SCV-6 0 27894 -cellosaurus:CVCL_5977 UM-SCV-7 0 27895 -cellosaurus:CVCL_HX28 UM-SCVa-1 0 27896 -cellosaurus:CVCL_2743 UM-UC-1 0 27897 -cellosaurus:CVCL_2744 UM-UC-10 0 27898 -cellosaurus:CVCL_2745 UM-UC-11 0 27899 -cellosaurus:CVCL_S992 UM-UC-12 0 27900 -cellosaurus:CVCL_2746 UM-UC-13 0 27901 -cellosaurus:CVCL_2747 UM-UC-14 0 27902 -cellosaurus:CVCL_R742 UM-UC-15 0 27903 -cellosaurus:CVCL_2748 UM-UC-16 0 27904 -cellosaurus:CVCL_R743 UM-UC-17 0 27905 -cellosaurus:CVCL_R744 UM-UC-18 0 27906 -cellosaurus:CVCL_2749 UM-UC-4 0 27907 -cellosaurus:CVCL_2750 UM-UC-5 0 27908 -cellosaurus:CVCL_2751 UM-UC-6 0 27909 -cellosaurus:CVCL_2752 UM-UC-7 0 27910 -cellosaurus:CVCL_RT31 UM-UC-8 0 27911 -cellosaurus:CVCL_2753 UM-UC-9 0 27912 -cellosaurus:CVCL_VH00 UM1 0 27913 -cellosaurus:CVCL_VH01 UM2 0 27914 -cellosaurus:CVCL_A093 UMB-SCC-745 0 27915 -cellosaurus:CVCL_A094 UMB-SCC-864 0 27916 -cellosaurus:CVCL_A095 UMB-SCC-969 0 27917 -cellosaurus:CVCL_1784 UMC-11 0 27918 -cellosaurus:CVCL_WL40 UMK-1 [Human bladder carcinoma] 0 27919 -cellosaurus:CVCL_WL42 UMK-1 [Human gastric carcinoma] 0 27920 -cellosaurus:CVCL_WL41 UMK-2 0 27921 -cellosaurus:CVCL_IW26 UMMT-ARK-1 0 27922 -cellosaurus:CVCL_IW27 UMMT-ARK-2 0 27923 -cellosaurus:CVCL_WN20 UMRCC1 0 27924 -cellosaurus:CVCL_WN29 UMRCC10 0 27925 -cellosaurus:CVCL_WN21 UMRCC2 0 27926 -cellosaurus:CVCL_WN22 UMRCC3 0 27927 -cellosaurus:CVCL_WN23 UMRCC4 0 27928 -cellosaurus:CVCL_WN24 UMRCC5 0 27929 -cellosaurus:CVCL_WN25 UMRCC6 0 27930 -cellosaurus:CVCL_WN26 UMRCC7 0 27931 -cellosaurus:CVCL_WN27 UMRCC8 0 27932 -cellosaurus:CVCL_WN28 UMRCC9 0 27933 -cellosaurus:CVCL_R739 UMT2 0 27934 -cellosaurus:CVCL_R740 UMT26 0 27935 -cellosaurus:CVCL_R741 UMT33 0 27936 -cellosaurus:CVCL_L890 UNC-10 0 27937 -cellosaurus:CVCL_L891 UNC-7 0 27938 -cellosaurus:CVCL_UD41 UNC4 0 27939 -cellosaurus:CVCL_1911 UO-31 0 27940 -cellosaurus:CVCL_A296 UoC-B1 0 27941 -cellosaurus:CVCL_A301 UoC-B10 0 27942 -cellosaurus:CVCL_A299 UoC-B11 0 27943 -cellosaurus:CVCL_A300 UoC-B12 0 27944 -cellosaurus:CVCL_A302 UoC-B2 0 27945 -cellosaurus:CVCL_A298 UoC-B3 0 27946 -cellosaurus:CVCL_A297 UoC-B4 0 27947 -cellosaurus:CVCL_A303 UoC-B5 0 27948 -cellosaurus:CVCL_A304 UoC-B6 0 27949 -cellosaurus:CVCL_A305 UoC-B7 0 27950 -cellosaurus:CVCL_A306 UoC-B8 0 27951 -cellosaurus:CVCL_A307 UoC-B9 0 27952 -cellosaurus:CVCL_A480 UoC-M1 0 27953 -cellosaurus:CVCL_B076 UOK101 0 27954 -cellosaurus:CVCL_B080 UOK102 0 27955 -cellosaurus:CVCL_B081 UOK103 0 27956 -cellosaurus:CVCL_B082 UOK104 0 27957 -cellosaurus:CVCL_B083 UOK105 0 27958 -cellosaurus:CVCL_B084 UOK106 0 27959 -cellosaurus:CVCL_B085 UOK107 0 27960 -cellosaurus:CVCL_B086 UOK108 0 27961 -cellosaurus:CVCL_B087 UOK109 0 27962 -cellosaurus:CVCL_B088 UOK109LN 0 27963 -cellosaurus:CVCL_B089 UOK110 0 27964 -cellosaurus:CVCL_B090 UOK111 0 27965 -cellosaurus:CVCL_B091 UOK112 0 27966 -cellosaurus:CVCL_B092 UOK113 0 27967 -cellosaurus:CVCL_B093 UOK114 0 27968 -cellosaurus:CVCL_B094 UOK115 0 27969 -cellosaurus:CVCL_B095 UOK116 0 27970 -cellosaurus:CVCL_B097 UOK118 0 27971 -cellosaurus:CVCL_B098 UOK119 0 27972 -cellosaurus:CVCL_B099 UOK120 0 27973 -cellosaurus:CVCL_B100 UOK121 0 27974 -cellosaurus:CVCL_B101 UOK121LN 0 27975 -cellosaurus:CVCL_B102 UOK122 0 27976 -cellosaurus:CVCL_B103 UOK122LN 0 27977 -cellosaurus:CVCL_B104 UOK123 0 27978 -cellosaurus:CVCL_B105 UOK124 0 27979 -cellosaurus:CVCL_B106 UOK124LN 0 27980 -cellosaurus:CVCL_B107 UOK125 0 27981 -cellosaurus:CVCL_B108 UOK126 0 27982 -cellosaurus:CVCL_B109 UOK127 0 27983 -cellosaurus:CVCL_B110 UOK128 0 27984 -cellosaurus:CVCL_B111 UOK129 0 27985 -cellosaurus:CVCL_B113 UOK131 0 27986 -cellosaurus:CVCL_B114 UOK132 0 27987 -cellosaurus:CVCL_B115 UOK133 0 27988 -cellosaurus:CVCL_B116 UOK134 0 27989 -cellosaurus:CVCL_B117 UOK135 0 27990 -cellosaurus:CVCL_IS28 UOK136COL 0 27991 -cellosaurus:CVCL_B118 UOK139 0 27992 -cellosaurus:CVCL_B119 UOK140 0 27993 -cellosaurus:CVCL_B120 UOK141 0 27994 -cellosaurus:CVCL_B121 UOK142 0 27995 -cellosaurus:CVCL_B225 UOK143 0 27996 -cellosaurus:CVCL_B122 UOK145 0 27997 -cellosaurus:CVCL_B123 UOK146 0 27998 -cellosaurus:CVCL_B124 UOK147 0 27999 -cellosaurus:CVCL_B125 UOK150 0 28000 -cellosaurus:CVCL_B126 UOK151 0 28001 -cellosaurus:CVCL_B252 UOK152 0 28002 -cellosaurus:CVCL_B127 UOK154 0 28003 -cellosaurus:CVCL_IS27 UOK154LN 0 28004 -cellosaurus:CVCL_A1UC UOK156 0 28005 -cellosaurus:CVCL_A1UD UOK157 0 28006 -cellosaurus:CVCL_B128 UOK161 0 28007 -cellosaurus:CVCL_B129 UOK162 0 28008 -cellosaurus:CVCL_B130 UOK163 0 28009 -cellosaurus:CVCL_B131 UOK164 0 28010 -cellosaurus:CVCL_B223 UOK171 0 28011 -cellosaurus:CVCL_B224 UOK181 0 28012 -cellosaurus:CVCL_1D73 UOK268 0 28013 -cellosaurus:CVCL_LC28 UOK276 0 28014 -cellosaurus:CVCL_B3PQ UOK353 0 28015 -cellosaurus:CVCL_B3PR UOK360 0 28016 -cellosaurus:CVCL_A5PY UOK85 0 28017 -cellosaurus:CVCL_AP56 UP-007 0 28018 -cellosaurus:CVCL_AP57 UP-019 0 28019 -cellosaurus:CVCL_AU95 UP-029 0 28020 -cellosaurus:CVCL_AP58 UP-032 0 28021 -cellosaurus:CVCL_UD75 UP-ALL13 0 28022 -cellosaurus:CVCL_1R54 UPAB 0 28023 -cellosaurus:CVCL_1T12 UPAM 0 28024 -cellosaurus:CVCL_C024 UPCI-SCC-002 0 28025 -cellosaurus:CVCL_C025 UPCI-SCC-003 0 28026 -cellosaurus:CVCL_C026 UPCI-SCC-013 0 28027 -cellosaurus:CVCL_C027 UPCI-SCC-016 0 28028 -cellosaurus:CVCL_2221 UPCI-SCC-026 0 28029 -cellosaurus:CVCL_1855 UPCI-SCC-029A 0 28030 -cellosaurus:CVCL_C028 UPCI-SCC-030 0 28031 -cellosaurus:CVCL_C029 UPCI-SCC-032 0 28032 -cellosaurus:CVCL_C030 UPCI-SCC-036 0 28033 -cellosaurus:CVCL_2222 UPCI-SCC-040 0 28034 -cellosaurus:CVCL_C031 UPCI-SCC-044 0 28035 -cellosaurus:CVCL_C032 UPCI-SCC-045 0 28036 -cellosaurus:CVCL_C033 UPCI-SCC-051 0 28037 -cellosaurus:CVCL_C034 UPCI-SCC-052 0 28038 -cellosaurus:CVCL_C035 UPCI-SCC-053 0 28039 -cellosaurus:CVCL_C036 UPCI-SCC-056 0 28040 -cellosaurus:CVCL_C037 UPCI-SCC-062 0 28041 -cellosaurus:CVCL_C038 UPCI-SCC-065 0 28042 -cellosaurus:CVCL_C039 UPCI-SCC-066 0 28043 -cellosaurus:CVCL_C040 UPCI-SCC-068 0 28044 -cellosaurus:CVCL_C041 UPCI-SCC-070 0 28045 -cellosaurus:CVCL_2223 UPCI-SCC-072 0 28046 -cellosaurus:CVCL_2224 UPCI-SCC-074 0 28047 -cellosaurus:CVCL_C042 UPCI-SCC-075 0 28048 -cellosaurus:CVCL_C043 UPCI-SCC-077 0 28049 -cellosaurus:CVCL_C044 UPCI-SCC-078 0 28050 -cellosaurus:CVCL_C045 UPCI-SCC-080 0 28051 -cellosaurus:CVCL_C046 UPCI-SCC-081 0 28052 -cellosaurus:CVCL_C048 UPCI-SCC-089 0 28053 -cellosaurus:CVCL_1899 UPCI-SCC-090 0 28054 -cellosaurus:CVCL_2225 UPCI-SCC-099 0 28055 -cellosaurus:CVCL_C049 UPCI-SCC-103 0 28056 -cellosaurus:CVCL_C050 UPCI-SCC-104 0 28057 -cellosaurus:CVCL_C051 UPCI-SCC-105 0 28058 -cellosaurus:CVCL_2226 UPCI-SCC-111 0 28059 -cellosaurus:CVCL_2227 UPCI-SCC-114 0 28060 -cellosaurus:CVCL_2228 UPCI-SCC-116 0 28061 -cellosaurus:CVCL_C052 UPCI-SCC-121 0 28062 -cellosaurus:CVCL_C053 UPCI-SCC-122 0 28063 -cellosaurus:CVCL_C054 UPCI-SCC-125 0 28064 -cellosaurus:CVCL_C055 UPCI-SCC-136 0 28065 -cellosaurus:CVCL_C056 UPCI-SCC-142 0 28066 -cellosaurus:CVCL_C057 UPCI-SCC-143 0 28067 -cellosaurus:CVCL_C058 UPCI-SCC-152 0 28068 -cellosaurus:CVCL_C059 UPCI-SCC-153 0 28069 -cellosaurus:CVCL_2230 UPCI-SCC-154 0 28070 -cellosaurus:CVCL_2231 UPCI-SCC-172 0 28071 -cellosaurus:CVCL_C060 UPCI-SCC-182 0 28072 -cellosaurus:CVCL_C061 UPCI-SCC-192 0 28073 -cellosaurus:CVCL_2232 UPCI-SCC-200 0 28074 -cellosaurus:CVCL_1T13 UPJM 0 28075 -cellosaurus:CVCL_1S99 UPMC 0 28076 -cellosaurus:CVCL_C297 UPMD-1 0 28077 -cellosaurus:CVCL_C298 UPMD-2 0 28078 -cellosaurus:CVCL_C299 UPMM-1 0 28079 -cellosaurus:CVCL_C294 UPMM-2 0 28080 -cellosaurus:CVCL_C295 UPMM-3 0 28081 -cellosaurus:CVCL_C296 UPMM-4 0 28082 -cellosaurus:CVCL_A795 UPN1 0 28083 -cellosaurus:CVCL_A796 UPN2 0 28084 -cellosaurus:CVCL_DG78 UPN251 0 28085 -cellosaurus:CVCL_WZ46 URVIN 0 28086 -cellosaurus:CVCL_DH84 USC-DHL-1 0 28087 -cellosaurus:CVCL_W327 USC-HN2 0 28088 -cellosaurus:CVCL_KR66 USCLS-1 0 28089 -cellosaurus:CVCL_VP41 USM-BC-1 0 28090 -cellosaurus:CVCL_4U90 USP-13-Med 0 28091 -cellosaurus:CVCL_H634 USP-91 0 28092 -cellosaurus:CVCL_IV72 USPC-ARK-1 0 28093 -cellosaurus:CVCL_IV81 USPC-ARK-10 0 28094 -cellosaurus:CVCL_IV82 USPC-ARK-11 0 28095 -cellosaurus:CVCL_IV83 USPC-ARK-12 0 28096 -cellosaurus:CVCL_IV84 USPC-ARK-13 0 28097 -cellosaurus:CVCL_IV85 USPC-ARK-14 0 28098 -cellosaurus:CVCL_IV86 USPC-ARK-15 0 28099 -cellosaurus:CVCL_IV87 USPC-ARK-16 0 28100 -cellosaurus:CVCL_IV88 USPC-ARK-17 0 28101 -cellosaurus:CVCL_IV89 USPC-ARK-18 0 28102 -cellosaurus:CVCL_IV90 USPC-ARK-19 0 28103 -cellosaurus:CVCL_IV73 USPC-ARK-2 0 28104 -cellosaurus:CVCL_IV91 USPC-ARK-20 0 28105 -cellosaurus:CVCL_IV92 USPC-ARK-21 0 28106 -cellosaurus:CVCL_IV93 USPC-ARK-22 0 28107 -cellosaurus:CVCL_IV74 USPC-ARK-3 0 28108 -cellosaurus:CVCL_IV75 USPC-ARK-4 0 28109 -cellosaurus:CVCL_IV76 USPC-ARK-5 0 28110 -cellosaurus:CVCL_IV77 USPC-ARK-6 0 28111 -cellosaurus:CVCL_IV78 USPC-ARK-7 0 28112 -cellosaurus:CVCL_IV79 USPC-ARK-8 0 28113 -cellosaurus:CVCL_IV80 USPC-ARK-9 0 28114 -cellosaurus:CVCL_X003 UT-EC-1 0 28115 -cellosaurus:CVCL_X004 UT-EC-2A 0 28116 -cellosaurus:CVCL_X005 UT-EC-2B 0 28117 -cellosaurus:CVCL_WM05 UT-EC-2C 0 28118 -cellosaurus:CVCL_X006 UT-EC-3 0 28119 -cellosaurus:CVCL_A438 UT-MUC-1 0 28120 -cellosaurus:CVCL_A439 UT-MUC-2 0 28121 -cellosaurus:CVCL_A1QV UT-OC-1 0 28122 -cellosaurus:CVCL_A1QW UT-OC-2 0 28123 -cellosaurus:CVCL_A1QX UT-OC-3 0 28124 -cellosaurus:CVCL_A1QY UT-OC-4 0 28125 -cellosaurus:CVCL_A1QZ UT-OC-5 0 28126 -cellosaurus:CVCL_7804 UT-SCC-10 0 28127 -cellosaurus:CVCL_A5VF UT-SCC-105 0 28128 -cellosaurus:CVCL_JA23 UT-SCC-106A 0 28129 -cellosaurus:CVCL_JA24 UT-SCC-106B 0 28130 -cellosaurus:CVCL_JA25 UT-SCC-107 0 28131 -cellosaurus:CVCL_JA26 UT-SCC-108 0 28132 -cellosaurus:CVCL_7805 UT-SCC-11 0 28133 -cellosaurus:CVCL_A7EB UT-SCC-110A 0 28134 -cellosaurus:CVCL_A091 UT-SCC-110B 0 28135 -cellosaurus:CVCL_A5VE UT-SCC-111 0 28136 -cellosaurus:CVCL_A7ES UT-SCC-112 0 28137 -cellosaurus:CVCL_A7ET UT-SCC-114 0 28138 -cellosaurus:CVCL_A5VG UT-SCC-115 0 28139 -cellosaurus:CVCL_JA27 UT-SCC-116 0 28140 -cellosaurus:CVCL_7806 UT-SCC-118 0 28141 -cellosaurus:CVCL_A7EU UT-SCC-122 0 28142 -cellosaurus:CVCL_A7EC UT-SCC-126A 0 28143 -cellosaurus:CVCL_7807 UT-SCC-12A 0 28144 -cellosaurus:CVCL_7808 UT-SCC-12B 0 28145 -cellosaurus:CVCL_7809 UT-SCC-13 0 28146 -cellosaurus:CVCL_7810 UT-SCC-14 0 28147 -cellosaurus:CVCL_7811 UT-SCC-15 0 28148 -cellosaurus:CVCL_7812 UT-SCC-16A 0 28149 -cellosaurus:CVCL_7813 UT-SCC-16B 0 28150 -cellosaurus:CVCL_7814 UT-SCC-17 0 28151 -cellosaurus:CVCL_7815 UT-SCC-18 0 28152 -cellosaurus:CVCL_7816 UT-SCC-19A 0 28153 -cellosaurus:CVCL_7817 UT-SCC-19B 0 28154 -cellosaurus:CVCL_7818 UT-SCC-1A 0 28155 -cellosaurus:CVCL_7819 UT-SCC-1B 0 28156 -cellosaurus:CVCL_7820 UT-SCC-2 0 28157 -cellosaurus:CVCL_7821 UT-SCC-20A 0 28158 -cellosaurus:CVCL_7822 UT-SCC-20B 0 28159 -cellosaurus:CVCL_7823 UT-SCC-21 0 28160 -cellosaurus:CVCL_7824 UT-SCC-22 0 28161 -cellosaurus:CVCL_7825 UT-SCC-23 0 28162 -cellosaurus:CVCL_7826 UT-SCC-24A 0 28163 -cellosaurus:CVCL_7827 UT-SCC-24B 0 28164 -cellosaurus:CVCL_7828 UT-SCC-25 0 28165 -cellosaurus:CVCL_7829 UT-SCC-26A 0 28166 -cellosaurus:CVCL_7830 UT-SCC-26B 0 28167 -cellosaurus:CVCL_7831 UT-SCC-27 0 28168 -cellosaurus:CVCL_7832 UT-SCC-28 0 28169 -cellosaurus:CVCL_7833 UT-SCC-29 0 28170 -cellosaurus:CVCL_7834 UT-SCC-30 0 28171 -cellosaurus:CVCL_7835 UT-SCC-31 0 28172 -cellosaurus:CVCL_7836 UT-SCC-32 0 28173 -cellosaurus:CVCL_7837 UT-SCC-33 0 28174 -cellosaurus:CVCL_7838 UT-SCC-34 0 28175 -cellosaurus:CVCL_7839 UT-SCC-35 0 28176 -cellosaurus:CVCL_7840 UT-SCC-36 0 28177 -cellosaurus:CVCL_7841 UT-SCC-37 0 28178 -cellosaurus:CVCL_7842 UT-SCC-38 0 28179 -cellosaurus:CVCL_7843 UT-SCC-39 0 28180 -cellosaurus:CVCL_7844 UT-SCC-4 0 28181 -cellosaurus:CVCL_7845 UT-SCC-40 0 28182 -cellosaurus:CVCL_7846 UT-SCC-41 0 28183 -cellosaurus:CVCL_7847 UT-SCC-42A 0 28184 -cellosaurus:CVCL_7848 UT-SCC-42B 0 28185 -cellosaurus:CVCL_7849 UT-SCC-43A 0 28186 -cellosaurus:CVCL_7850 UT-SCC-43B 0 28187 -cellosaurus:CVCL_7851 UT-SCC-44 0 28188 -cellosaurus:CVCL_7852 UT-SCC-45 0 28189 -cellosaurus:CVCL_7853 UT-SCC-46A 0 28190 -cellosaurus:CVCL_7854 UT-SCC-46B 0 28191 -cellosaurus:CVCL_7855 UT-SCC-47 0 28192 -cellosaurus:CVCL_7856 UT-SCC-48 0 28193 -cellosaurus:CVCL_7857 UT-SCC-49 0 28194 -cellosaurus:CVCL_7858 UT-SCC-5 0 28195 -cellosaurus:CVCL_7859 UT-SCC-50 0 28196 -cellosaurus:CVCL_7860 UT-SCC-51 0 28197 -cellosaurus:CVCL_7861 UT-SCC-52 0 28198 -cellosaurus:CVCL_7862 UT-SCC-53 0 28199 -cellosaurus:CVCL_7863 UT-SCC-54A 0 28200 -cellosaurus:CVCL_7864 UT-SCC-54B 0 28201 -cellosaurus:CVCL_A7DW UT-SCC-54C 0 28202 -cellosaurus:CVCL_7865 UT-SCC-55 0 28203 -cellosaurus:CVCL_JA28 UT-SCC-57 0 28204 -cellosaurus:CVCL_A5VI UT-SCC-59A 0 28205 -cellosaurus:CVCL_A7EG UT-SCC-59B 0 28206 -cellosaurus:CVCL_A7EF UT-SCC-59C 0 28207 -cellosaurus:CVCL_A089 UT-SCC-60A 0 28208 -cellosaurus:CVCL_A090 UT-SCC-60B 0 28209 -cellosaurus:CVCL_A7ED UT-SCC-63A 0 28210 -cellosaurus:CVCL_A7EH UT-SCC-63B 0 28211 -cellosaurus:CVCL_A7EK UT-SCC-65 0 28212 -cellosaurus:CVCL_A7EJ UT-SCC-67 0 28213 -cellosaurus:CVCL_7866 UT-SCC-6A 0 28214 -cellosaurus:CVCL_7867 UT-SCC-6B 0 28215 -cellosaurus:CVCL_7868 UT-SCC-7 0 28216 -cellosaurus:CVCL_A7EL UT-SCC-72 0 28217 -cellosaurus:CVCL_A7EM UT-SCC-73 0 28218 -cellosaurus:CVCL_A7DX UT-SCC-74A 0 28219 -cellosaurus:CVCL_A7DY UT-SCC-74B 0 28220 -cellosaurus:CVCL_A092 UT-SCC-75 0 28221 -cellosaurus:CVCL_A7DZ UT-SCC-76A 0 28222 -cellosaurus:CVCL_A7EA UT-SCC-76B 0 28223 -cellosaurus:CVCL_A7EE UT-SCC-79A 0 28224 -cellosaurus:CVCL_A7EI UT-SCC-79B 0 28225 -cellosaurus:CVCL_7869 UT-SCC-8 0 28226 -cellosaurus:CVCL_A7EN UT-SCC-81 0 28227 -cellosaurus:CVCL_A7EP UT-SCC-87 0 28228 -cellosaurus:CVCL_7870 UT-SCC-9 0 28229 -cellosaurus:CVCL_A5VH UT-SCC-91 0 28230 -cellosaurus:CVCL_A7EQ UT-SCC-95 0 28231 -cellosaurus:CVCL_A7ER UT-SCC-99 0 28232 -cellosaurus:CVCL_6468 UT-SCV-1 0 28233 -cellosaurus:CVCL_6469 UT-SCV-2 0 28234 -cellosaurus:CVCL_6470 UT-SCV-3 0 28235 -cellosaurus:CVCL_VJ96 UT14 0 28236 -cellosaurus:CVCL_VJ97 UT16 0 28237 -cellosaurus:CVCL_VJ98 UT33a 0 28238 -cellosaurus:CVCL_VJ99 UT44 0 28239 -cellosaurus:CVCL_VK00 UT48 0 28240 -cellosaurus:CVCL_VK01 UT56 0 28241 -cellosaurus:CVCL_VK02 UT62a 0 28242 -cellosaurus:CVCL_VK03 UTE3 0 28243 -cellosaurus:CVCL_VK04 UTE4 0 28244 -cellosaurus:CVCL_4802 UTMC-2 0 28245 -cellosaurus:CVCL_W452 UTO-EW1 0 28246 -cellosaurus:CVCL_H195 UTOS-1 0 28247 -cellosaurus:CVCL_5383 UTP-2 0 28248 -cellosaurus:CVCL_W267 UTP-5 0 28249 -cellosaurus:CVCL_W268 UTP-6 0 28250 -cellosaurus:CVCL_0C63 UTP-DSAL-1 0 28251 -cellosaurus:CVCL_DH85 UTP-ES1 0 28252 -cellosaurus:CVCL_5385 UTP-L10 0 28253 -cellosaurus:CVCL_A7NN UTP-L12 0 28254 -cellosaurus:CVCL_WZ69 UTP-L2 0 28255 -cellosaurus:CVCL_5386 UTP-L20 0 28256 -cellosaurus:CVCL_5387 UTP-L3 0 28257 -cellosaurus:CVCL_5388 UTP-L5 0 28258 -cellosaurus:CVCL_5389 UTP-L51 0 28259 -cellosaurus:CVCL_5390 UTP-M1 0 28260 -cellosaurus:CVCL_5391 UTP-M2 0 28261 -cellosaurus:CVCL_DF75 UTP-N-1 0 28262 -cellosaurus:CVCL_W195 UTree-O2 0 28263 -cellosaurus:CVCL_8582 UW14 0 28264 -cellosaurus:CVCL_8583 UW15 0 28265 -cellosaurus:CVCL_A3BC UW18 0 28266 -cellosaurus:CVCL_8584 UW19 0 28267 -cellosaurus:CVCL_8586 UW28 0 28268 -cellosaurus:CVCL_8587 UW281 0 28269 -cellosaurus:CVCL_8588 UW35 0 28270 -cellosaurus:CVCL_DH81 UW402 0 28271 -cellosaurus:CVCL_DH82 UW426 0 28272 -cellosaurus:CVCL_M135 UW443 0 28273 -cellosaurus:CVCL_DG13 UW467 0 28274 -cellosaurus:CVCL_DG14 UW473 0 28275 -cellosaurus:CVCL_DG15 UW479 0 28276 -cellosaurus:CVCL_8589 UW5 0 28277 -cellosaurus:CVCL_8590 UW78 0 28278 -cellosaurus:CVCL_YN85 UWG01CTC 0 28279 -cellosaurus:CVCL_YN86 UWG02ASC 0 28280 -cellosaurus:CVCL_YN87 UWG02CTC 0 28281 -cellosaurus:CVCL_B7ME UWO17 0 28282 -cellosaurus:CVCL_B7MF UWO23 0 28283 -cellosaurus:CVCL_B7MG UWO31 0 28284 -cellosaurus:CVCL_B7MH UWO37 0 28285 -cellosaurus:CVCL_9809 UWOV1 0 28286 -cellosaurus:CVCL_IM36 Uyghur-UCSCCL 0 28287 -cellosaurus:CVCL_A8RP V-MG-33 0 28288 -cellosaurus:CVCL_A8RM V-MG-35/CE 0 28289 -cellosaurus:CVCL_A8RN V-MG-35/FTC 0 28290 -cellosaurus:CVCL_A8RQ V-MG-6/STT 0 28291 -cellosaurus:CVCL_IP02 V2387 0 28292 -cellosaurus:CVCL_9880 VA-N-BR 0 28293 -cellosaurus:CVCL_S600 VAB5 0 28294 -cellosaurus:CVCL_VK06 VACC1430 0 28295 -cellosaurus:CVCL_5392 VACO 1 0 28296 -cellosaurus:CVCL_5393 VACO 10MS 0 28297 -cellosaurus:CVCL_5394 VACO 10P 0 28298 -cellosaurus:CVCL_9U74 VACO 143 0 28299 -cellosaurus:CVCL_5395 VACO 206 0 28300 -cellosaurus:CVCL_5396 VACO 241 0 28301 -cellosaurus:CVCL_8629 VACO 264 0 28302 -cellosaurus:CVCL_5397 VACO 3 0 28303 -cellosaurus:CVCL_5398 VACO 310 0 28304 -cellosaurus:CVCL_5399 VACO 330 0 28305 -cellosaurus:CVCL_8630 VACO 364 0 28306 -cellosaurus:CVCL_IZ98 VACO 389 0 28307 -cellosaurus:CVCL_8631 VACO 394 0 28308 -cellosaurus:CVCL_5400 VACO 400 0 28309 -cellosaurus:CVCL_8632 VACO 410 0 28310 -cellosaurus:CVCL_8633 VACO 425 0 28311 -cellosaurus:CVCL_5401 VACO 429 0 28312 -cellosaurus:CVCL_5403 VACO 441 0 28313 -cellosaurus:CVCL_8634 VACO 444 0 28314 -cellosaurus:CVCL_8635 VACO 451 0 28315 -cellosaurus:CVCL_5404 VACO 456 0 28316 -cellosaurus:CVCL_9T31 VACO 457 0 28317 -cellosaurus:CVCL_8636 VACO 459 0 28318 -cellosaurus:CVCL_8637 VACO 478 0 28319 -cellosaurus:CVCL_8638 VACO 481 0 28320 -cellosaurus:CVCL_8639 VACO 486 0 28321 -cellosaurus:CVCL_8640 VACO 489 0 28322 -cellosaurus:CVCL_5405 VACO 4A 0 28323 -cellosaurus:CVCL_5406 VACO 4S 0 28324 -cellosaurus:CVCL_5407 VACO 5 0 28325 -cellosaurus:CVCL_8641 VACO 503 0 28326 -cellosaurus:CVCL_DG24 VACO 531 0 28327 -cellosaurus:CVCL_5408 VACO 576 0 28328 -cellosaurus:CVCL_5409 VACO 5A 0 28329 -cellosaurus:CVCL_5410 VACO 6 0 28330 -cellosaurus:CVCL_9T32 VACO 670 0 28331 -cellosaurus:CVCL_9T33 VACO 703 0 28332 -cellosaurus:CVCL_8642 VACO 784 0 28333 -cellosaurus:CVCL_8643 VACO 786 0 28334 -cellosaurus:CVCL_IZ99 VACO 847 0 28335 -cellosaurus:CVCL_JA00 VACO 865 0 28336 -cellosaurus:CVCL_8644 VACO 866 0 28337 -cellosaurus:CVCL_JA01 VACO 868 0 28338 -cellosaurus:CVCL_JA02 VACO 871 0 28339 -cellosaurus:CVCL_JA03 VACO 872 0 28340 -cellosaurus:CVCL_JA04 VACO 874 0 28341 -cellosaurus:CVCL_JA05 VACO 893 0 28342 -cellosaurus:CVCL_JA06 VACO 896 0 28343 -cellosaurus:CVCL_JA07 VACO 900 0 28344 -cellosaurus:CVCL_JA08 VACO 907 0 28345 -cellosaurus:CVCL_JA09 VACO 909 0 28346 -cellosaurus:CVCL_JA10 VACO 911 0 28347 -cellosaurus:CVCL_JA11 VACO 915 0 28348 -cellosaurus:CVCL_JA12 VACO 920 0 28349 -cellosaurus:CVCL_JA13 VACO 922 0 28350 -cellosaurus:CVCL_JA14 VACO 936 0 28351 -cellosaurus:CVCL_JA15 VACO 940 0 28352 -cellosaurus:CVCL_JA16 VACO 947 0 28353 -cellosaurus:CVCL_JA17 VACO 954 0 28354 -cellosaurus:CVCL_JA18 VACO 957 0 28355 -cellosaurus:CVCL_JA19 VACO 964 0 28356 -cellosaurus:CVCL_JA20 VACO 968 0 28357 -cellosaurus:CVCL_5412 VACO 9M 0 28358 -cellosaurus:CVCL_5413 VACO 9P 0 28359 -cellosaurus:CVCL_1819 VAL 0 28360 -cellosaurus:CVCL_A731 VAMT-1 0 28361 -cellosaurus:CVCL_S601 VAO1 0 28362 -cellosaurus:CVCL_0U25 VAT-39 0 28363 -cellosaurus:CVCL_S587 VBT2 0 28364 -cellosaurus:CVCL_M545 VC5 0 28365 -cellosaurus:CVCL_YD88 VCC1 0 28366 -cellosaurus:CVCL_G707 Vester 0 28367 -cellosaurus:CVCL_0106 VG-1 0 28368 -cellosaurus:CVCL_W084 VGE 0 28369 -cellosaurus:CVCL_Y107 VGH-EPY 0 28370 -cellosaurus:CVCL_Y106 VGH-MED 0 28371 -cellosaurus:CVCL_9672 VH-64 0 28372 -cellosaurus:CVCL_X539 VH-Renal 0 28373 -cellosaurus:CVCL_M381 VHB-1 0 28374 -cellosaurus:CVCL_A440 Vi-856 0 28375 -cellosaurus:CVCL_5177 VIPA 0 28376 -cellosaurus:CVCL_A1YR VIPI 0 28377 -cellosaurus:CVCL_Y578 VK [Human embryonal rhabdomyosarcoma] 0 28378 -cellosaurus:CVCL_B480 VL-68 0 28379 -cellosaurus:CVCL_3169 VL51 0 28380 -cellosaurus:CVCL_1786 VM-CUB-1 0 28381 -cellosaurus:CVCL_9829 VM-CUB-2 0 28382 -cellosaurus:CVCL_9830 VM-CUB-3 0 28383 -cellosaurus:CVCL_A732 VMM1 0 28384 -cellosaurus:CVCL_A733 VMM1040 0 28385 -cellosaurus:CVCL_ZV81 VMM105 0 28386 -cellosaurus:CVCL_A734 VMM12 0 28387 -cellosaurus:CVCL_ZV79 VMM13 0 28388 -cellosaurus:CVCL_A735 VMM14 0 28389 -cellosaurus:CVCL_A736 VMM15 0 28390 -cellosaurus:CVCL_S583 VMM150 0 28391 -cellosaurus:CVCL_S581 VMM17 0 28392 -cellosaurus:CVCL_A737 VMM18 0 28393 -cellosaurus:CVCL_A738 VMM19 0 28394 -cellosaurus:CVCL_ZV82 VMM273 0 28395 -cellosaurus:CVCL_ZV83 VMM330 0 28396 -cellosaurus:CVCL_ZV84 VMM34 0 28397 -cellosaurus:CVCL_A739 VMM39 0 28398 -cellosaurus:CVCL_4D07 VMM425 0 28399 -cellosaurus:CVCL_A740 VMM5A 0 28400 -cellosaurus:CVCL_S584 VMM5B 0 28401 -cellosaurus:CVCL_ZV80 VMM6 0 28402 -cellosaurus:CVCL_4D08 VMM609 0 28403 -cellosaurus:CVCL_ZV85 VMM64 0 28404 -cellosaurus:CVCL_S582 VMM86 0 28405 -cellosaurus:CVCL_4D09 VMM917 0 28406 -cellosaurus:CVCL_1787 VMRC-LCD 0 28407 -cellosaurus:CVCL_S848 VMRC-LCF 0 28408 -cellosaurus:CVCL_1788 VMRC-LCP 0 28409 -cellosaurus:CVCL_RQ27 VMRC-LCR 0 28410 -cellosaurus:CVCL_1789 VMRC-MELG 0 28411 -cellosaurus:CVCL_1790 VMRC-RCW 0 28412 -cellosaurus:CVCL_1791 VMRC-RCZ 0 28413 -cellosaurus:CVCL_V536 VOA1056 0 28414 -cellosaurus:CVCL_A1SF VOA1066 0 28415 -cellosaurus:CVCL_V537 VOA1072 0 28416 -cellosaurus:CVCL_V538 VOA1312 0 28417 -cellosaurus:CVCL_V539 VOA1400 0 28418 -cellosaurus:CVCL_V540 VOA1416 0 28419 -cellosaurus:CVCL_VQ40 VOA3448 0 28420 -cellosaurus:CVCL_VQ41 VOA3723 0 28421 -cellosaurus:CVCL_VQ42 VOA3993 0 28422 -cellosaurus:CVCL_VQ38 VOA4627 0 28423 -cellosaurus:CVCL_VQ43 VOA4698 0 28424 -cellosaurus:CVCL_VQ51 VOA4881 0 28425 -cellosaurus:CVCL_VQ39 VOA5646 0 28426 -cellosaurus:CVCL_VQ52 VOA6406 0 28427 -cellosaurus:CVCL_VQ53 VOA6800 0 28428 -cellosaurus:CVCL_WZ47 VOLIN 0 28429 -cellosaurus:CVCL_YQ09 VP-6 0 28430 -cellosaurus:CVCL_D130 VP185 0 28431 -cellosaurus:CVCL_W115 VP207 0 28432 -cellosaurus:CVCL_W116 VP223 0 28433 -cellosaurus:CVCL_2754 VP229 0 28434 -cellosaurus:CVCL_2755 VP267 0 28435 -cellosaurus:CVCL_W117 VP298 0 28436 -cellosaurus:CVCL_2756 VP303 0 28437 -cellosaurus:CVCL_W118 VP317 0 28438 -cellosaurus:CVCL_W119 VP331 0 28439 -cellosaurus:CVCL_W120 VP342 0 28440 -cellosaurus:CVCL_W180 VP348 0 28441 -cellosaurus:CVCL_IP77 VPC-6 0 28442 -cellosaurus:CVCL_WR52 VR-ALL 0 28443 -cellosaurus:CVCL_N794 VR09 0 28444 -cellosaurus:CVCL_0C28 VT-E 0 28445 -cellosaurus:CVCL_JL62 VU-SCC-040 0 28446 -cellosaurus:CVCL_XX14 VU-SCC-041 0 28447 -cellosaurus:CVCL_XX15 VU-SCC-078 0 28448 -cellosaurus:CVCL_XX16 VU-SCC-080 0 28449 -cellosaurus:CVCL_XX17 VU-SCC-094 0 28450 -cellosaurus:CVCL_JL63 VU-SCC-096 0 28451 -cellosaurus:CVCL_XX18 VU-SCC-1131 0 28452 -cellosaurus:CVCL_JL64 VU-SCC-120 0 28453 -cellosaurus:CVCL_XX19 VU-SCC-1365 0 28454 -cellosaurus:CVCL_L895 VU-SCC-147 0 28455 -cellosaurus:CVCL_XX20 VU-SCC-1604 0 28456 -cellosaurus:CVCL_XX24 VU-SCC-9917 0 28457 -cellosaurus:CVCL_XX21 VU-SCC-OE 0 28458 -cellosaurus:CVCL_XX22 VU-SCC-RO 0 28459 -cellosaurus:CVCL_IT43 VUMC-DIPG-A 0 28460 -cellosaurus:CVCL_IT44 VUMC-DIPG-B 0 28461 -cellosaurus:CVCL_ZF03 VUMC-RB-26 0 28462 -cellosaurus:CVCL_DG19 W-98 0 28463 -cellosaurus:CVCL_W528 W-ES 0 28464 -cellosaurus:CVCL_0C64 W1 0 28465 -cellosaurus:CVCL_M847 Wa-2 0 28466 -cellosaurus:CVCL_8766 WA-hT 0 28467 -cellosaurus:CVCL_E998 WaGa 0 28468 -cellosaurus:CVCL_W202 Waji 0 28469 -cellosaurus:CVCL_M654 Wan-BL 0 28470 -cellosaurus:CVCL_8011 WART 0 28471 -cellosaurus:CVCL_W437 Watanabe 0 28472 -cellosaurus:CVCL_B7HJ WCRC-25 0 28473 -cellosaurus:CVCL_RT59 WD0082 0 28474 -cellosaurus:CVCL_R803 WDC-1 0 28475 -cellosaurus:CVCL_A741 WDS3 0 28476 -cellosaurus:CVCL_9717 WE-68 0 28477 -cellosaurus:CVCL_9718 WE-M1-68 0 28478 -cellosaurus:CVCL_9719 WE-M2-68 0 28479 -cellosaurus:CVCL_YK72 Well5 0 28480 -cellosaurus:CVCL_S609 WERI-Rb-24 0 28481 -cellosaurus:CVCL_0C39 WH 0 28482 -cellosaurus:CVCL_RN49 WH94 0 28483 -cellosaurus:CVCL_LB55 WHIRC01 0 28484 -cellosaurus:CVCL_0G08 WHN2 0 28485 -cellosaurus:CVCL_6958 Wien 133 0 28486 -cellosaurus:CVCL_UM18 Wien 135 0 28487 -cellosaurus:CVCL_6747 WIL1 0 28488 -cellosaurus:CVCL_ZU76 Wilkister 0 28489 -cellosaurus:CVCL_1900 WILL-1 0 28490 -cellosaurus:CVCL_1901 WILL-2 0 28491 -cellosaurus:CVCL_B481 WILTU-1 0 28492 -cellosaurus:CVCL_4907 WISH-PC2 0 28493 -cellosaurus:CVCL_0583 WiT49 0 28494 -cellosaurus:CVCL_M734 Wittier 0 28495 -cellosaurus:CVCL_W352 WJ1 0 28496 -cellosaurus:CVCL_HF83 WK2 0 28497 -cellosaurus:CVCL_HF84 WK3F 0 28498 -cellosaurus:CVCL_RN60 WK93 0 28499 -cellosaurus:CVCL_0C29 WL-E 0 28500 -cellosaurus:CVCL_ZL60 WLM-20 0 28501 -cellosaurus:CVCL_M088 WM1 [Human Waldenstrom macroglobulinemia] 0 28502 -cellosaurus:CVCL_AP84 WM1026 0 28503 -cellosaurus:CVCL_0040 WM115 0 28504 -cellosaurus:CVCL_6785 WM1158 0 28505 -cellosaurus:CVCL_C265 WM1193C 0 28506 -cellosaurus:CVCL_DG74 WM122 0 28507 -cellosaurus:CVCL_6786 WM1232 0 28508 -cellosaurus:CVCL_W887 WM1321 0 28509 -cellosaurus:CVCL_A396 WM1341B 0 28510 -cellosaurus:CVCL_6787 WM1341D 0 28511 -cellosaurus:CVCL_W886 WM1346 0 28512 -cellosaurus:CVCL_6788 WM1361A 0 28513 -cellosaurus:CVCL_6993 WM1361B 0 28514 -cellosaurus:CVCL_6994 WM1361C 0 28515 -cellosaurus:CVCL_6789 WM1366 0 28516 -cellosaurus:CVCL_6790 WM1382 0 28517 -cellosaurus:CVCL_C266 WM139 0 28518 -cellosaurus:CVCL_6472 WM1552C 0 28519 -cellosaurus:CVCL_L027 WM1575 0 28520 -cellosaurus:CVCL_6791 WM1617 0 28521 -cellosaurus:CVCL_L033 WM165-1 0 28522 -cellosaurus:CVCL_RN55 WM165-2 0 28523 -cellosaurus:CVCL_D555 WM1650 0 28524 -cellosaurus:CVCL_AP82 WM1716 0 28525 -cellosaurus:CVCL_A339 WM1727A 0 28526 -cellosaurus:CVCL_6792 WM1789 0 28527 -cellosaurus:CVCL_C267 WM1791A 0 28528 -cellosaurus:CVCL_6793 WM1791C 0 28529 -cellosaurus:CVCL_A341 WM1799 0 28530 -cellosaurus:CVCL_0B65 WM1819 0 28531 -cellosaurus:CVCL_0L86 WM1852 0 28532 -cellosaurus:CVCL_C268 WM1862 0 28533 -cellosaurus:CVCL_6794 WM1922 0 28534 -cellosaurus:CVCL_DI27 WM1942 0 28535 -cellosaurus:CVCL_AP76 WM1960 0 28536 -cellosaurus:CVCL_0B66 WM1963 0 28537 -cellosaurus:CVCL_0B67 WM1985 0 28538 -cellosaurus:CVCL_AP77 WM2013 0 28539 -cellosaurus:CVCL_0B68 WM2032 0 28540 -cellosaurus:CVCL_0B69 WM2044 0 28541 -cellosaurus:CVCL_0L85 WM2067 0 28542 -cellosaurus:CVCL_C269 WM209 0 28543 -cellosaurus:CVCL_0B70 WM2090 0 28544 -cellosaurus:CVCL_L029 WM218 0 28545 -cellosaurus:CVCL_RN56 WM239B 0 28546 -cellosaurus:CVCL_J513 WM245 0 28547 -cellosaurus:CVCL_AP85 WM262 0 28548 -cellosaurus:CVCL_RN57 WM266-1 0 28549 -cellosaurus:CVCL_RN58 WM266-2 0 28550 -cellosaurus:CVCL_RN59 WM266-3 0 28551 -cellosaurus:CVCL_2765 WM266-4 0 28552 -cellosaurus:CVCL_6473 WM278 0 28553 -cellosaurus:CVCL_L034 WM28 0 28554 -cellosaurus:CVCL_AP86 WM3000 0 28555 -cellosaurus:CVCL_DG75 WM3004 0 28556 -cellosaurus:CVCL_6796 WM3060 0 28557 -cellosaurus:CVCL_AP87 WM3061 0 28558 -cellosaurus:CVCL_C270 WM3066 0 28559 -cellosaurus:CVCL_DG76 WM3077 0 28560 -cellosaurus:CVCL_C271 WM3130 0 28561 -cellosaurus:CVCL_A340 WM3152 0 28562 -cellosaurus:CVCL_L028 WM3208V 0 28563 -cellosaurus:CVCL_6797 WM3211 0 28564 -cellosaurus:CVCL_0L87 WM3214 0 28565 -cellosaurus:CVCL_AP88 WM3246 0 28566 -cellosaurus:CVCL_6798 WM3248 0 28567 -cellosaurus:CVCL_0L88 WM3258 0 28568 -cellosaurus:CVCL_L031 WM3268 0 28569 -cellosaurus:CVCL_0B71 WM3282 0 28570 -cellosaurus:CVCL_AP89 WM3301 0 28571 -cellosaurus:CVCL_0B72 WM3311 0 28572 -cellosaurus:CVCL_VI99 WM3314 0 28573 -cellosaurus:CVCL_AP90 WM3406 0 28574 -cellosaurus:CVCL_C272 WM3438 0 28575 -cellosaurus:CVCL_C273 WM3451 0 28576 -cellosaurus:CVCL_AP91 WM3456 0 28577 -cellosaurus:CVCL_AP92 WM3482 0 28578 -cellosaurus:CVCL_AP93 WM3506 0 28579 -cellosaurus:CVCL_0B73 WM3533 0 28580 -cellosaurus:CVCL_AP94 WM3540 0 28581 -cellosaurus:CVCL_0B74 WM3618F 0 28582 -cellosaurus:CVCL_0B75 WM3619 0 28583 -cellosaurus:CVCL_AP95 WM3622 0 28584 -cellosaurus:CVCL_C274 WM3623 0 28585 -cellosaurus:CVCL_C275 WM3629 0 28586 -cellosaurus:CVCL_0B76 WM3630 0 28587 -cellosaurus:CVCL_6799 WM3670 0 28588 -cellosaurus:CVCL_C276 WM3681 0 28589 -cellosaurus:CVCL_AP78 WM3682 0 28590 -cellosaurus:CVCL_0B77 WM3702 0 28591 -cellosaurus:CVCL_0B78 WM3704 0 28592 -cellosaurus:CVCL_C277 WM373 0 28593 -cellosaurus:CVCL_6800 WM3734 0 28594 -cellosaurus:CVCL_0B79 WM3743 0 28595 -cellosaurus:CVCL_AP80 WM3749 0 28596 -cellosaurus:CVCL_0B80 WM3755 0 28597 -cellosaurus:CVCL_AP79 WM3758 0 28598 -cellosaurus:CVCL_0B81 WM3772F 0 28599 -cellosaurus:CVCL_0B82 WM3792 0 28600 -cellosaurus:CVCL_6801 WM3854 0 28601 -cellosaurus:CVCL_0B83 WM3862 0 28602 -cellosaurus:CVCL_2240 WM39 0 28603 -cellosaurus:CVCL_C278 WM3912 0 28604 -cellosaurus:CVCL_C279 WM3918 0 28605 -cellosaurus:CVCL_6802 WM3928 0 28606 -cellosaurus:CVCL_L032 WM4002 0 28607 -cellosaurus:CVCL_A1UG WM4235 0 28608 -cellosaurus:CVCL_6803 WM46 0 28609 -cellosaurus:CVCL_C280 WM47 0 28610 -cellosaurus:CVCL_6995 WM51 0 28611 -cellosaurus:CVCL_L030 WM740V 0 28612 -cellosaurus:CVCL_RN51 WM747 0 28613 -cellosaurus:CVCL_7156 WM75 0 28614 -cellosaurus:CVCL_C281 WM8 0 28615 -cellosaurus:CVCL_RN40 WM806 0 28616 -cellosaurus:CVCL_RN52 WM811M 0 28617 -cellosaurus:CVCL_RN53 WM811P 0 28618 -cellosaurus:CVCL_6804 WM852 0 28619 -cellosaurus:CVCL_C282 WM853-2 0 28620 -cellosaurus:CVCL_C283 WM858 0 28621 -cellosaurus:CVCL_RN54 WM862 0 28622 -cellosaurus:CVCL_C284 WM873-1 0 28623 -cellosaurus:CVCL_C285 WM873-2 0 28624 -cellosaurus:CVCL_C286 WM873-3 0 28625 -cellosaurus:CVCL_6805 WM88 0 28626 -cellosaurus:CVCL_RN41 WM911 0 28627 -cellosaurus:CVCL_RN42 WM918 0 28628 -cellosaurus:CVCL_L073 WM98-1 0 28629 -cellosaurus:CVCL_RN39 WM98-2 0 28630 -cellosaurus:CVCL_6808 WM983A 0 28631 -cellosaurus:CVCL_A338 WM983C 0 28632 -cellosaurus:CVCL_0B84 WM989 0 28633 -cellosaurus:CVCL_W753 WMM1175 0 28634 -cellosaurus:CVCL_W754 WMM1215 0 28635 -cellosaurus:CVCL_A1FT WMN 0 28636 -cellosaurus:CVCL_0C30 WO-E 0 28637 -cellosaurus:CVCL_B6PV Wood 0 28638 -cellosaurus:CVCL_LC74 WoWe 0 28639 -cellosaurus:CVCL_ZC29 WP [Human diffuse large B-cell lymphoma] 0 28640 -cellosaurus:CVCL_0582 WRO 0 28641 -cellosaurus:CVCL_6211 WS1-CLS 0 28642 -cellosaurus:CVCL_J514 WSB 0 28643 -cellosaurus:CVCL_9881 WSN 0 28644 -cellosaurus:CVCL_HG33 WSU-1 0 28645 -cellosaurus:CVCL_5607 WSU-AML 0 28646 -cellosaurus:CVCL_M552 WSU-BL 0 28647 -cellosaurus:CVCL_M580 WSU-DLCL 0 28648 -cellosaurus:CVCL_1902 WSU-DLCL2 0 28649 -cellosaurus:CVCL_1903 WSU-FSCCL 0 28650 -cellosaurus:CVCL_AX28 WSU-HN11 0 28651 -cellosaurus:CVCL_5518 WSU-HN12 0 28652 -cellosaurus:CVCL_5519 WSU-HN13 0 28653 -cellosaurus:CVCL_AX29 WSU-HN14 0 28654 -cellosaurus:CVCL_5520 WSU-HN17 0 28655 -cellosaurus:CVCL_AX30 WSU-HN18 0 28656 -cellosaurus:CVCL_5521 WSU-HN19 0 28657 -cellosaurus:CVCL_5522 WSU-HN22 0 28658 -cellosaurus:CVCL_AX31 WSU-HN24 0 28659 -cellosaurus:CVCL_AX32 WSU-HN25 0 28660 -cellosaurus:CVCL_5523 WSU-HN26 0 28661 -cellosaurus:CVCL_5524 WSU-HN27 0 28662 -cellosaurus:CVCL_AX33 WSU-HN28 0 28663 -cellosaurus:CVCL_W196 WSU-HN3 0 28664 -cellosaurus:CVCL_5525 WSU-HN30 0 28665 -cellosaurus:CVCL_5526 WSU-HN31 0 28666 -cellosaurus:CVCL_5515 WSU-HN4 0 28667 -cellosaurus:CVCL_5516 WSU-HN6 0 28668 -cellosaurus:CVCL_5517 WSU-HN8 0 28669 -cellosaurus:CVCL_1793 WSU-NHL 0 28670 -cellosaurus:CVCL_5608 WSU-Pre-B-ALL 0 28671 -cellosaurus:CVCL_5609 WSU-WM 0 28672 -cellosaurus:CVCL_5904 WT-CLS1 0 28673 -cellosaurus:CVCL_0C31 WT-E 0 28674 -cellosaurus:CVCL_M844 WT-Pe.1 0 28675 -cellosaurus:CVCL_C0YU WU-TSC-1 0 28676 -cellosaurus:CVCL_U798 WW 0 28677 -cellosaurus:CVCL_G321 WW165 0 28678 -cellosaurus:CVCL_A742 Wx67 0 28679 -cellosaurus:CVCL_RL99 X-376 0 28680 -cellosaurus:CVCL_UM88 X3C-5 0 28681 -cellosaurus:CVCL_8928 XF 498 0 28682 -cellosaurus:CVCL_4797 XG-1 0 28683 -cellosaurus:CVCL_HX11 XG-10 0 28684 -cellosaurus:CVCL_HX12 XG-11 0 28685 -cellosaurus:CVCL_HX13 XG-12 0 28686 -cellosaurus:CVCL_HX14 XG-13 0 28687 -cellosaurus:CVCL_HX15 XG-14 0 28688 -cellosaurus:CVCL_HX16 XG-16 0 28689 -cellosaurus:CVCL_HX17 XG-19 0 28690 -cellosaurus:CVCL_4798 XG-2 0 28691 -cellosaurus:CVCL_HX18 XG-20 0 28692 -cellosaurus:CVCL_HX19 XG-21 0 28693 -cellosaurus:CVCL_HX20 XG-24 0 28694 -cellosaurus:CVCL_4799 XG-3 0 28695 -cellosaurus:CVCL_HX21 XG-3E 0 28696 -cellosaurus:CVCL_4800 XG-4 0 28697 -cellosaurus:CVCL_4801 XG-5 0 28698 -cellosaurus:CVCL_A771 XG-6 0 28699 -cellosaurus:CVCL_A772 XG-7 0 28700 -cellosaurus:CVCL_A773 XG-8 0 28701 -cellosaurus:CVCL_A774 XG-9 0 28702 -cellosaurus:CVCL_ZU62 XGC-1 0 28703 -cellosaurus:CVCL_HA22 XGC-2 0 28704 -cellosaurus:CVCL_J033 XLA-07 0 28705 -cellosaurus:CVCL_8013 XP44RO(Mel) 0 28706 -cellosaurus:CVCL_9502 XPA-1 0 28707 -cellosaurus:CVCL_9503 XPA-2 0 28708 -cellosaurus:CVCL_9504 XPA-3 0 28709 -cellosaurus:CVCL_9505 XPA-4 0 28710 -cellosaurus:CVCL_9U60 XPTS-1 0 28711 -cellosaurus:CVCL_9916 XTC.UC1 0 28712 -cellosaurus:CVCL_IQ71 XWLC-05 0 28713 -cellosaurus:CVCL_C0WU XYAM-1 0 28714 -cellosaurus:CVCL_C0WV XYAM-2 0 28715 -cellosaurus:CVCL_C0WW XYAM-3 0 28716 -cellosaurus:CVCL_C0WX XYAM-4 0 28717 -cellosaurus:CVCL_8774 Y-1K 0 28718 -cellosaurus:CVCL_A1JY Y-MESO-11B 0 28719 -cellosaurus:CVCL_5178 Y-MESO-12 0 28720 -cellosaurus:CVCL_5179 Y-MESO-14 0 28721 -cellosaurus:CVCL_5180 Y-MESO-21 0 28722 -cellosaurus:CVCL_5181 Y-MESO-22 0 28723 -cellosaurus:CVCL_5182 Y-MESO-25 0 28724 -cellosaurus:CVCL_5183 Y-MESO-26B 0 28725 -cellosaurus:CVCL_A1KA Y-MESO-26C 0 28726 -cellosaurus:CVCL_5184 Y-MESO-27 0 28727 -cellosaurus:CVCL_5185 Y-MESO-28 0 28728 -cellosaurus:CVCL_5186 Y-MESO-29 0 28729 -cellosaurus:CVCL_5187 Y-MESO-30 0 28730 -cellosaurus:CVCL_M203 Y-MESO-32 0 28731 -cellosaurus:CVCL_M204 Y-MESO-37 0 28732 -cellosaurus:CVCL_A1JZ Y-MESO-38 0 28733 -cellosaurus:CVCL_M205 Y-MESO-43 0 28734 -cellosaurus:CVCL_M206 Y-MESO-45 0 28735 -cellosaurus:CVCL_RP11 Y-MESO-48 0 28736 -cellosaurus:CVCL_RP12 Y-MESO-61 0 28737 -cellosaurus:CVCL_RP13 Y-MESO-72 0 28738 -cellosaurus:CVCL_RP14 Y-MESO-76 0 28739 -cellosaurus:CVCL_5188 Y-MESO-8A 0 28740 -cellosaurus:CVCL_5189 Y-MESO-8D 0 28741 -cellosaurus:CVCL_5190 Y-MESO-9 0 28742 -cellosaurus:CVCL_4779 Y-ML-1B 0 28743 -cellosaurus:CVCL_L809 YaFuSS 0 28744 -cellosaurus:CVCL_7212 Yak-BL 0 28745 -cellosaurus:CVCL_8014 YAM-RTK1 0 28746 -cellosaurus:CVCL_6C44 Yamato-SS 0 28747 -cellosaurus:CVCL_A2BL YAMCL-95 0 28748 -cellosaurus:CVCL_8015 YAMN-73 0 28749 -cellosaurus:CVCL_W272 YAMN-74 0 28750 -cellosaurus:CVCL_A079 YAMN-90 0 28751 -cellosaurus:CVCL_8016 YAMN-91 0 28752 -cellosaurus:CVCL_A080 YAMN-92 0 28753 -cellosaurus:CVCL_EJ26 YAMRT 0 28754 -cellosaurus:CVCL_A081 YAMT-12 0 28755 -cellosaurus:CVCL_1794 YAPC 0 28756 -cellosaurus:CVCL_YJ20 YBT-5 0 28757 -cellosaurus:CVCL_9646 YCC-1 0 28758 -cellosaurus:CVCL_9647 YCC-10 0 28759 -cellosaurus:CVCL_9648 YCC-11 0 28760 -cellosaurus:CVCL_9649 YCC-16 0 28761 -cellosaurus:CVCL_X027 YCC-17 0 28762 -cellosaurus:CVCL_9650 YCC-18 0 28763 -cellosaurus:CVCL_9651 YCC-19 0 28764 -cellosaurus:CVCL_9652 YCC-2 0 28765 -cellosaurus:CVCL_9653 YCC-20 0 28766 -cellosaurus:CVCL_9654 YCC-21 0 28767 -cellosaurus:CVCL_9655 YCC-22 0 28768 -cellosaurus:CVCL_9656 YCC-23 0 28769 -cellosaurus:CVCL_9660 YCC-4 0 28770 -cellosaurus:CVCL_9661 YCC-5 0 28771 -cellosaurus:CVCL_9662 YCC-6 0 28772 -cellosaurus:CVCL_9663 YCC-7 0 28773 -cellosaurus:CVCL_9664 YCC-9 0 28774 -cellosaurus:CVCL_L440 YCCEL1 0 28775 -cellosaurus:CVCL_A397 YCR-1 0 28776 -cellosaurus:CVCL_A2GG YCU-AML1 0 28777 -cellosaurus:CVCL_8018 YCU-L891 0 28778 -cellosaurus:CVCL_8019 YCU-M862 0 28779 -cellosaurus:CVCL_8020 YCU-M911 0 28780 -cellosaurus:CVCL_8021 YCU-MS861 0 28781 -cellosaurus:CVCL_8022 YCU-OR891 0 28782 -cellosaurus:CVCL_8023 YCU-T891 0 28783 -cellosaurus:CVCL_8024 YCU-T892 0 28784 -cellosaurus:CVCL_A082 YCUB-2 0 28785 -cellosaurus:CVCL_A083 YCUB-4 0 28786 -cellosaurus:CVCL_A084 YCUB-4R 0 28787 -cellosaurus:CVCL_A085 YCUB-5 0 28788 -cellosaurus:CVCL_A086 YCUB-5R 0 28789 -cellosaurus:CVCL_A087 YCUB-6 0 28790 -cellosaurus:CVCL_N853 YCUS-5 0 28791 -cellosaurus:CVCL_8929 YD-10B 0 28792 -cellosaurus:CVCL_8930 YD-15 0 28793 -cellosaurus:CVCL_L078 YD-15M 0 28794 -cellosaurus:CVCL_L081 YD-17 0 28795 -cellosaurus:CVCL_L082 YD-17M 0 28796 -cellosaurus:CVCL_L083 YD-38 0 28797 -cellosaurus:CVCL_B482 YD-39 0 28798 -cellosaurus:CVCL_L079 YD-8 0 28799 -cellosaurus:CVCL_L080 YD-9 0 28800 -cellosaurus:CVCL_A1KE YDOV-105 0 28801 -cellosaurus:CVCL_A1KF YDOV-13 0 28802 -cellosaurus:CVCL_A1KB YDOV-139 0 28803 -cellosaurus:CVCL_A1KC YDOV-151 0 28804 -cellosaurus:CVCL_W954 YDOV-157 0 28805 -cellosaurus:CVCL_A1KD YDOV-161 0 28806 -cellosaurus:CVCL_E321 YES-1 0 28807 -cellosaurus:CVCL_E323 YES-3 0 28808 -cellosaurus:CVCL_S528 YES-4 0 28809 -cellosaurus:CVCL_S529 YES-5 0 28810 -cellosaurus:CVCL_B7JH YG-PLL 0 28811 -cellosaurus:CVCL_1795 YH-13 0 28812 -cellosaurus:CVCL_ZV98 YK 0 28813 -cellosaurus:CVCL_9919 YK-M2 0 28814 -cellosaurus:CVCL_1796 YKG-1 0 28815 -cellosaurus:CVCL_L216 YLC-KK1 0 28816 -cellosaurus:CVCL_IU39 YM 0 28817 -cellosaurus:CVCL_AP55 YM-1 0 28818 -cellosaurus:CVCL_TZ88 YM21 0 28819 -cellosaurus:CVCL_WK55 YMMK-1 0 28820 -cellosaurus:CVCL_Y579 YN 0 28821 -cellosaurus:CVCL_1927 YNH-1 0 28822 -cellosaurus:CVCL_H193 YOS-B 0 28823 -cellosaurus:CVCL_H194 YOS-M 0 28824 -cellosaurus:CVCL_W836 Yoshizaki 0 28825 -cellosaurus:CVCL_N819 YOU 0 28826 -cellosaurus:CVCL_L217 YP-MEL 0 28827 -cellosaurus:CVCL_CZ89 YPK-1 0 28828 -cellosaurus:CVCL_WK52 YPK-2 0 28829 -cellosaurus:CVCL_WK53 YPK-3 0 28830 -cellosaurus:CVCL_WK54 YPK-4 0 28831 -cellosaurus:CVCL_0C32 YR-A 0 28832 -cellosaurus:CVCL_A743 YS9;22 0 28833 -cellosaurus:CVCL_E942 YSK-21 0 28834 -cellosaurus:CVCL_5192 YST-1 0 28835 -cellosaurus:CVCL_H524 YT-nu 0 28836 -cellosaurus:CVCL_WK74 YT803 0 28837 -cellosaurus:CVCL_6959 YTMLC-90 0 28838 -cellosaurus:CVCL_6746 YTS-1 0 28839 -cellosaurus:CVCL_EI13 YUAME 0 28840 -cellosaurus:CVCL_K001 YUAVEY 0 28841 -cellosaurus:CVCL_J515 YUBEL 0 28842 -cellosaurus:CVCL_K002 YUBRUSE 0 28843 -cellosaurus:CVCL_J516 YUBUNE 0 28844 -cellosaurus:CVCL_J532 YUCAL 0 28845 -cellosaurus:CVCL_J065 YUCAS 0 28846 -cellosaurus:CVCL_J517 YUCHER 0 28847 -cellosaurus:CVCL_EI14 YUCHIME 0 28848 -cellosaurus:CVCL_K003 YUCHUFA 0 28849 -cellosaurus:CVCL_K004 YUCINJ 0 28850 -cellosaurus:CVCL_J518 YUCLAT 0 28851 -cellosaurus:CVCL_J533 YUCLIR 0 28852 -cellosaurus:CVCL_J066 YUCOT 0 28853 -cellosaurus:CVCL_K005 YUCRENA 0 28854 -cellosaurus:CVCL_EI15 YUCYLO 0 28855 -cellosaurus:CVCL_J541 YUDAN3 0 28856 -cellosaurus:CVCL_K006 YUDATE 0 28857 -cellosaurus:CVCL_G322 YUDEDE 0 28858 -cellosaurus:CVCL_J519 YUDEW 0 28859 -cellosaurus:CVCL_G323 YUDOSO 0 28860 -cellosaurus:CVCL_K007 YUDUTY 0 28861 -cellosaurus:CVCL_G324 YUFIC 0 28862 -cellosaurus:CVCL_G325 YUFULO 0 28863 -cellosaurus:CVCL_K008 YUGAFFE 0 28864 -cellosaurus:CVCL_K009 YUGANK 0 28865 -cellosaurus:CVCL_J520 YUGASP 0 28866 -cellosaurus:CVCL_EI17 YUGATOR 0 28867 -cellosaurus:CVCL_J540 YUGEK 0 28868 -cellosaurus:CVCL_A744 YUGEN8 0 28869 -cellosaurus:CVCL_K010 YUGLIDE 0 28870 -cellosaurus:CVCL_J067 YUGOE 0 28871 -cellosaurus:CVCL_G326 YUHEF 0 28872 -cellosaurus:CVCL_J073 YUHEIK 0 28873 -cellosaurus:CVCL_J521 YUHOIN 0 28874 -cellosaurus:CVCL_G327 YUHUY 0 28875 -cellosaurus:CVCL_K011 YUKADI 0 28876 -cellosaurus:CVCL_K012 YUKARN 0 28877 -cellosaurus:CVCL_G328 YUKIM 0 28878 -cellosaurus:CVCL_G329 YUKOLI 0 28879 -cellosaurus:CVCL_J068 YUKSI 0 28880 -cellosaurus:CVCL_B483 YULAC 0 28881 -cellosaurus:CVCL_K013 YULAPE 0 28882 -cellosaurus:CVCL_K014 YULAXER 0 28883 -cellosaurus:CVCL_J522 YULIN 0 28884 -cellosaurus:CVCL_EI19 YULOCUS 0 28885 -cellosaurus:CVCL_K015 YULOMA 0 28886 -cellosaurus:CVCL_J523 YULONE 0 28887 -cellosaurus:CVCL_G330 YULOVY 0 28888 -cellosaurus:CVCL_A745 YUMAC 0 28889 -cellosaurus:CVCL_J534 YUMAG 0 28890 -cellosaurus:CVCL_VG43 YUMC44 0 28891 -cellosaurus:CVCL_VG44 YUMC63 0 28892 -cellosaurus:CVCL_VG45 YUMC64 0 28893 -cellosaurus:CVCL_VG46 YUMC8 0 28894 -cellosaurus:CVCL_K016 YUMINE 0 28895 -cellosaurus:CVCL_EI20 YUMOBER 0 28896 -cellosaurus:CVCL_B484 Yumoto 0 28897 -cellosaurus:CVCL_G331 YUMUT 0 28898 -cellosaurus:CVCL_EI21 YUNACK 0 28899 -cellosaurus:CVCL_J535 YUNIBO 0 28900 -cellosaurus:CVCL_J524 YUNIGE 0 28901 -cellosaurus:CVCL_K017 YUNUFF 0 28902 -cellosaurus:CVCL_J525 YUNUVO 0 28903 -cellosaurus:CVCL_EI22 YUPAC7 0 28904 -cellosaurus:CVCL_J536 YUPAO 0 28905 -cellosaurus:CVCL_K018 YUPEET 0 28906 -cellosaurus:CVCL_J069 YUPLA 0 28907 -cellosaurus:CVCL_EI23 YUPOM 0 28908 -cellosaurus:CVCL_K019 YURDE 0 28909 -cellosaurus:CVCL_K020 YURED 0 28910 -cellosaurus:CVCL_B485 YURIF 0 28911 -cellosaurus:CVCL_K021 YURKEN 0 28912 -cellosaurus:CVCL_B486 YUROB 0 28913 -cellosaurus:CVCL_J070 YUROL 0 28914 -cellosaurus:CVCL_A746 YUSAC2 0 28915 -cellosaurus:CVCL_J526 YUSAN 0 28916 -cellosaurus:CVCL_K022 YUSARI 0 28917 -cellosaurus:CVCL_B487 YUSIK 0 28918 -cellosaurus:CVCL_EI16 YUSIPU 0 28919 -cellosaurus:CVCL_G332 YUSIV 0 28920 -cellosaurus:CVCL_J527 YUSTE 0 28921 -cellosaurus:CVCL_K023 YUSUBA 0 28922 -cellosaurus:CVCL_K024 YUSWI 0 28923 -cellosaurus:CVCL_K025 YUTER 0 28924 -cellosaurus:CVCL_J528 YUTHO 0 28925 -cellosaurus:CVCL_J071 YUTICA 0 28926 -cellosaurus:CVCL_J539 YUTUR 0 28927 -cellosaurus:CVCL_G333 YUVON3 0 28928 -cellosaurus:CVCL_K026 YUWAGE 0 28929 -cellosaurus:CVCL_K027 YUWALI 0 28930 -cellosaurus:CVCL_J530 YUWERA 0 28931 -cellosaurus:CVCL_K028 YUWHIM 0 28932 -cellosaurus:CVCL_J531 YUWIM 0 28933 -cellosaurus:CVCL_EI18 YUZAZ 0 28934 -cellosaurus:CVCL_K029 YUZEAL 0 28935 -cellosaurus:CVCL_EI24 YUZEST 0 28936 -cellosaurus:CVCL_J072 YUZOR 0 28937 -cellosaurus:CVCL_WY40 YY-8103 0 28938 -cellosaurus:CVCL_IU88 Z-119 0 28939 -cellosaurus:CVCL_B077 Z-138 0 28940 -cellosaurus:CVCL_IU89 Z-181 0 28941 -cellosaurus:CVCL_4796 Z-33 0 28942 -cellosaurus:CVCL_WG52 Z-43 0 28943 -cellosaurus:CVCL_WG53 Z-55 0 28944 -cellosaurus:CVCL_WG54 Z-6 0 28945 -cellosaurus:CVCL_D596 ZA 0 28946 -cellosaurus:CVCL_WJ12 ZE 0 28947 -cellosaurus:CVCL_VT79 ZEC-014 0 28948 -cellosaurus:CVCL_VT80 ZEC-043 0 28949 -cellosaurus:CVCL_VT81 ZEC-056 0 28950 -cellosaurus:CVCL_VT82 ZEC-061 0 28951 -cellosaurus:CVCL_VT83 ZEC-118 0 28952 -cellosaurus:CVCL_VT84 ZEC-127 0 28953 -cellosaurus:CVCL_VT85 ZEC-134 0 28954 -cellosaurus:CVCL_VT86 ZEC-145 0 28955 -cellosaurus:CVCL_VT87 ZEC-157 0 28956 -cellosaurus:CVCL_VT88 ZEC-166 0 28957 -cellosaurus:CVCL_VT89 ZEC-219 0 28958 -cellosaurus:CVCL_JZ64 ZH-161 0 28959 -cellosaurus:CVCL_JZ65 ZH-305 0 28960 -cellosaurus:CVCL_XI70 ZJB-ATC1 0 28961 -cellosaurus:CVCL_XI65 ZJB-ENC1 0 28962 -cellosaurus:CVCL_XC09 ZJU-0327 0 28963 -cellosaurus:CVCL_XE03 ZJU-0430 0 28964 -cellosaurus:CVCL_XC10 ZJU-0725 0 28965 -cellosaurus:CVCL_XE04 ZJU-0826 0 28966 -cellosaurus:CVCL_XE05 ZJU-1125 0 28967 -cellosaurus:CVCL_XC11 ZJU-1127 0 28968 -cellosaurus:CVCL_A5XI ZK 0 28969 -cellosaurus:CVCL_A5XH ZK-1 0 28970 -cellosaurus:CVCL_A5XP ZK-2 0 28971 -cellosaurus:CVCL_9920 ZK-58 0 28972 -cellosaurus:CVCL_W465 ZK-H 0 28973 -cellosaurus:CVCL_5906 ZL34 0 28974 -cellosaurus:CVCL_5907 ZL5 0 28975 -cellosaurus:CVCL_5908 ZL55 0 28976 -cellosaurus:CVCL_T735 ZL92 0 28977 -cellosaurus:CVCL_XB87 ZLSC-423 0 28978 -cellosaurus:CVCL_M694 ZO 0 28979 -cellosaurus:CVCL_R779 Zos 0 28980 -cellosaurus:CVCL_R780 Zos-M 0 28981 -cellosaurus:CVCL_4U93 ZQNK-29 0 28982 -cellosaurus:CVCL_5612 ZR-75-27 0 28983 -cellosaurus:CVCL_1661 ZR-75-30 0 28984 -cellosaurus:CVCL_B6ZD ZX2021H 0 28985 -cellosaurus:CVCL_B6YM ZYXY-M2 0 28986 -cellosaurus:CVCL_B6YT ZYXY-T1 0 28987 -cellosaurus:CVCL_2270 143B 0 28988 -cellosaurus:CVCL_3476 143.98.2 1 28989 -cellosaurus:CVCL_K049 184 0 28990 -cellosaurus:CVCL_3040 184A1 1 28991 -cellosaurus:CVCL_9665 184A1N4 2 28992 -cellosaurus:CVCL_6946 SUNE1 0 28993 -cellosaurus:CVCL_C528 5-8F 1 28994 -cellosaurus:CVCL_S665 5-8F/Erbitux 2 28995 -cellosaurus:CVCL_6946 SUNE1 0 28996 -cellosaurus:CVCL_C529 6-10B 1 28997 -cellosaurus:CVCL_3653 BJ [Human fibroblast 0 28998 -cellosaurus:CVCL_6573 BJ1-hTERT 1 28999 -cellosaurus:CVCL_0030 HeLa 0 29000 -cellosaurus:CVCL_6888 CNE-1 1 29001 -cellosaurus:CVCL_YT53 CNE1 SRPK1 KO 2 29002 -cellosaurus:CVCL_YT54 CNE1 SRPK2 KO 2 29003 -cellosaurus:CVCL_0030 HeLa 0 29004 -cellosaurus:CVCL_6889 CNE-2 1 29005 -cellosaurus:CVCL_6890 CNE-2Z 2 29006 -cellosaurus:CVCL_B0U9 S18 2 29007 -cellosaurus:CVCL_B0UB S26 2 29008 -cellosaurus:CVCL_H615 GM1500-6TG-A11 0 29009 -cellosaurus:CVCL_2526 HuNS1 1 29010 -cellosaurus:CVCL_0347 IMR-90 0 29011 -cellosaurus:CVCL_C434 IPS(IMR90)-1 1 29012 -cellosaurus:CVCL_3633 MCF-10F 0 29013 -cellosaurus:CVCL_0598 MCF-10A 1 29014 -cellosaurus:CVCL_A4BW MCF 10A Ecadherin EmGFP 2 29015 -cellosaurus:CVCL_IV14 MCF 10A-H2B-mCherry 2 29016 -cellosaurus:CVCL_A2PV MCF-10A ARID1A (Q456*/Q456*) 2 29017 -cellosaurus:CVCL_LD72 MCF-10A BRAF (V600K/+) 2 29018 -cellosaurus:CVCL_A2PT MCF-10A BRCA1 (185delAG/+) 2 29019 -cellosaurus:CVCL_A2PU MCF-10A CTNNB1 (T41A/+/+) 2 29020 -cellosaurus:CVCL_LE03 MCF-10A EGFR (delE746-A750/+) 2 29021 -cellosaurus:CVCL_LD15 MCF-10A EGFR (L858R/+) 2 29022 -cellosaurus:CVCL_LD16 MCF-10A EGFR (L861Q/+) 2 29023 -cellosaurus:CVCL_LD17 MCF-10A EGFR (T790M/+) 2 29024 -cellosaurus:CVCL_LD73 MCF-10A IDH1 (R132H/+) 2 29025 -cellosaurus:CVCL_LD74 MCF-10A KRAS (G12V/+) 2 29026 -cellosaurus:CVCL_LD75 MCF-10A PIK3CA (E545K/+) 2 29027 -cellosaurus:CVCL_LD55 MCF-10A PIK3CA (H1047R/+) 2 29028 -cellosaurus:CVCL_JM26 MCF-10A PTEN(-/-) 2 29029 -cellosaurus:CVCL_LD76 MCF-10A RAC1 (Q61L/+) 2 29030 -cellosaurus:CVCL_RA88 MCF-10A shPARG 2 29031 -cellosaurus:CVCL_JM25 MCF-10A TP53(-/-) 2 29032 -cellosaurus:CVCL_IP85 MCF-10A-erbB-2 2 29033 -cellosaurus:CVCL_6C54 MCF-10A-neo 2 29034 -cellosaurus:CVCL_6C55 MCF-10A-neoN 2 29035 -cellosaurus:CVCL_5554 MCF-10A-neoT 2 29036 -cellosaurus:CVCL_DS00 MCF-10A/Twist 2 29037 -cellosaurus:CVCL_RQ97 MCF10A AKT2 (-/-) 2 29038 -cellosaurus:CVCL_RQ98 MCF10A APC (-/-) 2 29039 -cellosaurus:CVCL_RQ99 MCF10A BCR (-/-) 2 29040 -cellosaurus:CVCL_B7JN MCF10A BLV 2 29041 -cellosaurus:CVCL_RR08 MCF10A CDC25B (-/-) 2 29042 -cellosaurus:CVCL_RR00 MCF10A CDH1 (-/-) 2 29043 -cellosaurus:CVCL_RR01 MCF10A EEF2K (-/-) 2 29044 -cellosaurus:CVCL_RR09 MCF10A ESR2 (-/-) 2 29045 -cellosaurus:CVCL_RR02 MCF10A GSK3B (-/-) 2 29046 -cellosaurus:CVCL_RR10 MCF10A H2AFX (-/-) 2 29047 -cellosaurus:CVCL_RR03 MCF10A HER2 (-/-) 2 29048 -cellosaurus:CVCL_RR04 MCF10A PARP2 (-/-) 2 29049 -cellosaurus:CVCL_RR05 MCF10A PTEN (-/-) 2 29050 -cellosaurus:CVCL_RR11 MCF10A PVRL4 (-/-) 2 29051 -cellosaurus:CVCL_RQ96 MCF10A RFP-TUBA1B 2 29052 -cellosaurus:CVCL_RR12 MCF10A RICTOR (-/-) 2 29053 -cellosaurus:CVCL_RR07 MCF10A SYK (-/-) 2 29054 -cellosaurus:CVCL_RR06 MCF10A TP53 (-/-) 2 29055 -cellosaurus:CVCL_C7Q0 MCF10A-AKTm-1 2 29056 -cellosaurus:CVCL_C7Q1 MCF10A-AKTm-Control 2 29057 -cellosaurus:CVCL_C7Q2 MCF10A-EGFR1m-1 2 29058 -cellosaurus:CVCL_C7QB MCF10A-EGFR1m-10 2 29059 -cellosaurus:CVCL_C7QC MCF10A-EGFR1m-11 2 29060 -cellosaurus:CVCL_C7QD MCF10A-EGFR1m-12 2 29061 -cellosaurus:CVCL_C7QE MCF10A-EGFR1m-13 2 29062 -cellosaurus:CVCL_C7QF MCF10A-EGFR1m-14 2 29063 -cellosaurus:CVCL_C7QG MCF10A-EGFR1m-15 2 29064 -cellosaurus:CVCL_C7QH MCF10A-EGFR1m-16 2 29065 -cellosaurus:CVCL_C7QI MCF10A-EGFR1m-17 2 29066 -cellosaurus:CVCL_C7QJ MCF10A-EGFR1m-18 2 29067 -cellosaurus:CVCL_C7QK MCF10A-EGFR1m-19 2 29068 -cellosaurus:CVCL_C7Q3 MCF10A-EGFR1m-2 2 29069 -cellosaurus:CVCL_C7QL MCF10A-EGFR1m-20 2 29070 -cellosaurus:CVCL_C7QM MCF10A-EGFR1m-21 2 29071 -cellosaurus:CVCL_C7Q4 MCF10A-EGFR1m-3 2 29072 -cellosaurus:CVCL_C7Q5 MCF10A-EGFR1m-4 2 29073 -cellosaurus:CVCL_C7Q6 MCF10A-EGFR1m-5 2 29074 -cellosaurus:CVCL_C7Q7 MCF10A-EGFR1m-6 2 29075 -cellosaurus:CVCL_C7Q8 MCF10A-EGFR1m-7 2 29076 -cellosaurus:CVCL_C7Q9 MCF10A-EGFR1m-8 2 29077 -cellosaurus:CVCL_C7QA MCF10A-EGFR1m-9 2 29078 -cellosaurus:CVCL_C7QN MCF10A-EGFR1m-control 2 29079 -cellosaurus:CVCL_N805 MCF10A-Er-Src 2 29080 -cellosaurus:CVCL_C7QP MCF10A-ERBB2m-1 2 29081 -cellosaurus:CVCL_C7QY MCF10A-ERBB2m-10 2 29082 -cellosaurus:CVCL_C7QZ MCF10A-ERBB2m-11 2 29083 -cellosaurus:CVCL_C7R0 MCF10A-ERBB2m-12 2 29084 -cellosaurus:CVCL_C7R1 MCF10A-ERBB2m-13 2 29085 -cellosaurus:CVCL_C7QQ MCF10A-ERBB2m-2 2 29086 -cellosaurus:CVCL_C7QR MCF10A-ERBB2m-3 2 29087 -cellosaurus:CVCL_C7QS MCF10A-ERBB2m-4 2 29088 -cellosaurus:CVCL_C7QT MCF10A-ERBB2m-5 2 29089 -cellosaurus:CVCL_C7QU MCF10A-ERBB2m-6 2 29090 -cellosaurus:CVCL_C7QV MCF10A-ERBB2m-7 2 29091 -cellosaurus:CVCL_C7QW MCF10A-ERBB2m-8 2 29092 -cellosaurus:CVCL_C7QX MCF10A-ERBB2m-9 2 29093 -cellosaurus:CVCL_C7R2 MCF10A-ERRB2m-Control 2 29094 -cellosaurus:CVCL_VH36 MCF10A-JSB 2 29095 -cellosaurus:CVCL_YI68 MCF10A-KRAS 2 29096 -cellosaurus:CVCL_0411 MCF10A-Myc 2 29097 -cellosaurus:CVCL_C7R3 MCF10A-PTENm-1 2 29098 -cellosaurus:CVCL_C7R4 MCF10A-PTENm-2 2 29099 -cellosaurus:CVCL_C7R5 MCF10A-PTENm-3 2 29100 -cellosaurus:CVCL_C7R6 MCF10A-PTENm-4 2 29101 -cellosaurus:CVCL_C7R7 MCF10A-PTENm-5 2 29102 -cellosaurus:CVCL_C7R8 MCF10A-PTENm-Control 2 29103 -cellosaurus:CVCL_C0ZJ MCF10A_APC_7 2 29104 -cellosaurus:CVCL_C0ZK MCF10A_APC_735 2 29105 -cellosaurus:CVCL_C0ZL MCF10A_APC_753 2 29106 -cellosaurus:CVCL_C0ZM MCF10A_ARID1A_B4 2 29107 -cellosaurus:CVCL_C0ZN MCF10A_ARID1A_C11_SC1 2 29108 -cellosaurus:CVCL_C0ZP MCF10A_ATRX_718 2 29109 -cellosaurus:CVCL_C0ZQ MCF10A_ATRX_722 2 29110 -cellosaurus:CVCL_C0ZR MCF10A_ATRX_734 2 29111 -cellosaurus:CVCL_C0ZS MCF10A_CDKN2C_161 2 29112 -cellosaurus:CVCL_C0ZT MCF10A_CDKN2C_163 2 29113 -cellosaurus:CVCL_C0ZU MCF10A_DAXX_703_SC1 2 29114 -cellosaurus:CVCL_C0ZV MCF10A_DAXX_704 2 29115 -cellosaurus:CVCL_C0ZW MCF10A_DAXX_715 2 29116 -cellosaurus:CVCL_C0ZX MCF10A_EZH2_10A3 2 29117 -cellosaurus:CVCL_C0ZY MCF10A_EZH2_10B4 2 29118 -cellosaurus:CVCL_C0ZZ MCF10A_EZH2_19 2 29119 -cellosaurus:CVCL_C1A0 MCF10A_MLH1_4 2 29120 -cellosaurus:CVCL_C1A1 MCF10A_MLH1_5 2 29121 -cellosaurus:CVCL_C1A2 MCF10A_MLL2_7 2 29122 -cellosaurus:CVCL_C1A3 MCF10A_MSH2_104 2 29123 -cellosaurus:CVCL_C1A4 MCF10A_MSH2_173 2 29124 -cellosaurus:CVCL_C1A5 MCF10A_MSH6_54 2 29125 -cellosaurus:CVCL_C1CE MCF10A_MTAP_15 2 29126 -cellosaurus:CVCL_C1CF MCF10A_MTAP_8 2 29127 -cellosaurus:CVCL_C1A6 MCF10A_NF1_1 2 29128 -cellosaurus:CVCL_C1A7 MCF10A_NF1_7A1 2 29129 -cellosaurus:CVCL_C1A8 MCF10A_NF1_7B2 2 29130 -cellosaurus:CVCL_C1A9 MCF10A_NOTCH1_1 2 29131 -cellosaurus:CVCL_C1AA MCF10A_NOTCH1_14 2 29132 -cellosaurus:CVCL_C1AB MCF10A_PTCH1_2 2 29133 -cellosaurus:CVCL_C1AC MCF10A_PTCH1_5 2 29134 -cellosaurus:CVCL_C1AD MCF10A_PTEN_1 2 29135 -cellosaurus:CVCL_C1AE MCF10A_STAG2_9 2 29136 -cellosaurus:CVCL_C1AF MCF10A_STAG2_A4 2 29137 -cellosaurus:CVCL_C1AG MCF10A_STAG2_C5 2 29138 -cellosaurus:CVCL_C1AH MCF10A_TET2_B3 2 29139 -cellosaurus:CVCL_C1AI MCF10A_TET2_E3 2 29140 -cellosaurus:CVCL_C1AJ MCF10A_TET2_E7 2 29141 -cellosaurus:CVCL_C1AK MCF10A_TP53_137 2 29142 -cellosaurus:CVCL_C1AL MCF10A_TP53_142 2 29143 -cellosaurus:CVCL_WM99 MCF10A1 2 29144 -cellosaurus:CVCL_VC35 UFH-001 2 29145 -cellosaurus:CVCL_5555 MCF-10AT 1 29146 -cellosaurus:CVCL_5552 MCF10DCIS.com 2 29147 -cellosaurus:CVCL_WM98 MCF10AT1k.cl2 0 29148 -cellosaurus:CVCL_6675 MCF10CA1a 1 29149 -cellosaurus:CVCL_6676 MCF10CA1a.cl1 2 29150 -cellosaurus:CVCL_WM98 MCF10AT1k.cl2 0 29151 -cellosaurus:CVCL_6683 MCF10CA1h 1 29152 -cellosaurus:CVCL_C5B5 NL20T 0 29153 -cellosaurus:CVCL_3757 NL20T-A 1 29154 -cellosaurus:CVCL_4W02 HTori-3 0 29155 -cellosaurus:CVCL_2659 Nthy-ori 3-1 1 29156 -cellosaurus:CVCL_DG84 PHMLEB 0 29157 -cellosaurus:CVCL_DG85 PHMLER 1 29158 -cellosaurus:CVCL_3791 RWPE-1 0 29159 -cellosaurus:CVCL_3792 RWPE-2 1 29160 -cellosaurus:CVCL_3793 RWPE2-W99 2 29161 -cellosaurus:CVCL_DG34 SVpgC2a 0 29162 -cellosaurus:CVCL_DH25 SVpgC2a-FOXM1B 1 29163 -cellosaurus:CVCL_DH26 SVpgC2a-FOXM1B/SVFN1 2 29164 -cellosaurus:CVCL_DH27 SVpgC2a-FOXM1B/SVFN2 2 29165 -cellosaurus:CVCL_DH28 SVpgC2a-FOXM1B/SVFN3 2 29166 -cellosaurus:CVCL_DH29 SVpgC2a-FOXM1B/SVFN4 2 29167 -cellosaurus:CVCL_DH30 SVpgC2a-FOXM1B/SVFN5 2 29168 -cellosaurus:CVCL_DH31 SVpgC2a-FOXM1B/SVFN6 2 29169 -cellosaurus:CVCL_DH32 SVpgC2a-FOXM1B/SVFN7 2 29170 -cellosaurus:CVCL_DH33 SVpgC2a-FOXM1B/SVFN8 2 29171 -cellosaurus:CVCL_6F32 H4-1 [Human bone marrow 0 29172 -cellosaurus:CVCL_3236 UE6E7T-2 1 29173 -cellosaurus:CVCL_V826 WI-26 0 29174 -cellosaurus:CVCL_2758 WI-26 VA4 1 29175 -cellosaurus:CVCL_0579 WI-38 0 29176 -cellosaurus:CVCL_2759 WI-38 VA13 subline 2RA 1 29177 -cellosaurus:CVCL_U971 VA13-TS4 2 29178 -cellosaurus:CVCL_6544 WIL2 0 29179 -cellosaurus:CVCL_2761 WIL2 NS 1 29180 -cellosaurus:CVCL_Z045 HO-323 2 29181 -cellosaurus:CVCL_6416 LTR228 2 29182 -cellosaurus:CVCL_2762 WIL2.NS.6TG 2 29183 -cellosaurus:CVCL_6742 WTK-1 2 29184 -cellosaurus:CVCL_3791 RWPE-1 0 29185 -cellosaurus:CVCL_3810 WPE1-NA22 1 29186 -cellosaurus:CVCL_3791 RWPE-1 0 29187 -cellosaurus:CVCL_3811 WPE1-NB11 1 29188 -cellosaurus:CVCL_3791 RWPE-1 0 29189 -cellosaurus:CVCL_3812 WPE1-NB14 1 29190 -cellosaurus:CVCL_3791 RWPE-1 0 29191 -cellosaurus:CVCL_3813 WPE1-NB26 1 29192 -cellosaurus:CVCL_K284 WPE1-NB26-64 2 29193 -cellosaurus:CVCL_K285 WPE1-NB26-65 2 29194 -cellosaurus:CVCL_0347 IMR-90 0 29195 -cellosaurus:CVCL_M230 AG03204 1 29196 -cellosaurus:CVCL_A5QQ Ep-1 1 29197 -cellosaurus:CVCL_ZW31 GM09925 1 29198 -cellosaurus:CVCL_ZW32 GM09926 1 29199 -cellosaurus:CVCL_ZW33 GM09927 1 29200 -cellosaurus:CVCL_ZW34 GM09928 1 29201 -cellosaurus:CVCL_ZW35 GM09929 1 29202 -cellosaurus:CVCL_ZW36 GM09930 1 29203 -cellosaurus:CVCL_ZW37 GM09931 1 29204 -cellosaurus:CVCL_ZW38 GM09932 1 29205 -cellosaurus:CVCL_ZW39 GM09933 1 29206 -cellosaurus:CVCL_ZW40 GM09934 1 29207 -cellosaurus:CVCL_ZW41 GM09935 1 29208 -cellosaurus:CVCL_ZW42 GM09936 1 29209 -cellosaurus:CVCL_ZW43 GM09937 1 29210 -cellosaurus:CVCL_ZW44 GM09938 1 29211 -cellosaurus:CVCL_ZW45 GM09940 1 29212 -cellosaurus:CVCL_3874 IDH4 1 29213 -cellosaurus:CVCL_RM51 IM23-16 1 29214 -cellosaurus:CVCL_RM52 IM23-9 1 29215 -cellosaurus:CVCL_RM53 IM25-2 1 29216 -cellosaurus:CVCL_2963 IMR-90-40 1 29217 -cellosaurus:CVCL_2964 IMR-90-50 1 29218 -cellosaurus:CVCL_6269 IMR-90-SV 1 29219 -cellosaurus:CVCL_HA48 IMR-90/GFPdeltaRaf-1[YY:ER 1 29220 -cellosaurus:CVCL_ZX70 IMR90-830 1 29221 -cellosaurus:CVCL_ZX71 IMR90-890 1 29222 -cellosaurus:CVCL_C434 IPS(IMR90)-1 1 29223 -cellosaurus:CVCL_C435 IPS(IMR90)-2 1 29224 -cellosaurus:CVCL_C436 IPS(IMR90)-3 1 29225 -cellosaurus:CVCL_C437 IPS(IMR90)-4 1 29226 -cellosaurus:CVCL_U243 ITV 1 29227 -cellosaurus:CVCL_V155 MSUH-001 1 29228 -cellosaurus:CVCL_A4DT Nor-iPSC 1 29229 -cellosaurus:CVCL_YS96 UNIPDi005-A 1 29230 -cellosaurus:CVCL_JW74 YZ1 1 29231 -cellosaurus:CVCL_0168 BEAS-2B 0 29232 -cellosaurus:CVCL_4400 BBM 1 29233 -cellosaurus:CVCL_C2UN BEAS-2B IRF1 KO 1 29234 -cellosaurus:CVCL_LJ64 BEAS-2B/c-myc 1 29235 -cellosaurus:CVCL_LJ65 BEAS-2B/c-raf-1 1 29236 -cellosaurus:CVCL_LJ66 BEAS-2B/c-raf-1/c-myc 1 29237 -cellosaurus:CVCL_WZ50 BEAS-2B/CYP1A2 1 29238 -cellosaurus:CVCL_WZ48 BEAS-2B/CYP2A13 1 29239 -cellosaurus:CVCL_WZ49 BEAS-2B/CYP2A6 1 29240 -cellosaurus:CVCL_LJ61 BEAS-2B/EJ-ras 1 29241 -cellosaurus:CVCL_LJ62 BEAS-2B/N-ras 1 29242 -cellosaurus:CVCL_UR57 BEAS-2B/R1 1 29243 -cellosaurus:CVCL_LJ63 BEAS-2B/S6 1 29244 -cellosaurus:CVCL_LJ68 BERB 1 29245 -cellosaurus:CVCL_LJ71 Bp53MT143 1 29246 -cellosaurus:CVCL_LJ70 Bp53WT 1 29247 -cellosaurus:CVCL_LJ60 BVK-Tll 1 29248 -cellosaurus:CVCL_3658 BZR 1 29249 -cellosaurus:CVCL_1091 BPH-1 0 29250 -cellosaurus:CVCL_4751 BPH-1 TETD-A 1 29251 -cellosaurus:CVCL_4752 BPH-1 TETD-B 1 29252 -cellosaurus:CVCL_4753 BPH-1-CAFTD-01 1 29253 -cellosaurus:CVCL_4755 BPH-1-CAFTD-03 1 29254 -cellosaurus:CVCL_4757 BPH-1-CAFTD-05 1 29255 -cellosaurus:CVCL_4759 BPH-1-CAFTD-07 1 29256 -cellosaurus:CVCL_1099 C8166 0 29257 -cellosaurus:CVCL_0195 C8166/45 1 29258 -cellosaurus:CVCL_A6UT C8166/CCR5 1 29259 -cellosaurus:CVCL_1H07 M8166 1 29260 -cellosaurus:CVCL_3791 RWPE-1 0 29261 -cellosaurus:CVCL_4794 CTPE 1 29262 -cellosaurus:CVCL_3792 RWPE-2 1 29263 -cellosaurus:CVCL_K282 WPE-int 1 29264 -cellosaurus:CVCL_K283 WPE-stem 1 29265 -cellosaurus:CVCL_3810 WPE1-NA22 1 29266 -cellosaurus:CVCL_3811 WPE1-NB11 1 29267 -cellosaurus:CVCL_3812 WPE1-NB14 1 29268 -cellosaurus:CVCL_3813 WPE1-NB26 1 29269 -cellosaurus:CVCL_3696 HBE4-E6/E7 0 29270 -cellosaurus:CVCL_3697 HBE4-E6/E7-C1 1 29271 -cellosaurus:CVCL_0302 HK-2 [Human kidney 0 29272 -cellosaurus:CVCL_UC05 HK-2-KIM-1 1 29273 -cellosaurus:CVCL_WZ51 HKC 1 29274 -cellosaurus:CVCL_DG84 PHMLEB 0 29275 -cellosaurus:CVCL_DG85 PHMLER 1 29276 -cellosaurus:CVCL_0579 WI-38 0 29277 -cellosaurus:CVCL_3142 PSV811 1 29278 -cellosaurus:CVCL_7871 UTHs 1 29279 -cellosaurus:CVCL_YU09 WI-38 (HSV-2)Tr 1 29280 -cellosaurus:CVCL_L281 WI-38 CT-1 1 29281 -cellosaurus:CVCL_5605 WI-38 Tr 1 29282 -cellosaurus:CVCL_2759 WI-38 VA13 subline 2RA 1 29283 -cellosaurus:CVCL_2812 WI-38-30 1 29284 -cellosaurus:CVCL_2813 WI-38-40 1 29285 -cellosaurus:CVCL_N806 WI-38/hTERT/GFP-RAF-ER 1 29286 -cellosaurus:CVCL_1R80 GM08854 1 29287 -cellosaurus:CVCL_1R88 GM10322 1 29288 -cellosaurus:CVCL_1R89 GM10323 1 29289 -cellosaurus:CVCL_A5BN WIF12 1 29290 \ No newline at end of file diff --git a/rsrc/classificationTrees/cellosaurus/uodated_diagnoses.txt b/rsrc/classificationTrees/cellosaurus/uodated_diagnoses.txt deleted file mode 100644 index b89b8e46..00000000 --- a/rsrc/classificationTrees/cellosaurus/uodated_diagnoses.txt +++ /dev/null @@ -1,831 +0,0 @@ -CVCL_0393 NCIT:C3058 Glioblastoma -CVCL_0371 NCIT:C5250 Gastric signet ring cell adenocarcinoma -CVCL_0099 NCIT:C4004 Gastric adenocarcinoma -CVCL_0078 NCIT:C4004 Gastric adenocarcinoma -CVCL_0076 NCIT:C4004 Gastric adenocarcinoma -CVCL_1124 NCIT:C4827 Adrenal gland neuroblastoma -CVCL_1234 NCIT:C4827 Adrenal gland neuroblastoma -CVCL_1605 NCIT:C4827 Adrenal gland neuroblastoma -CVCL_1771 NCIT:C4827 Adrenal gland neuroblastoma -CVCL_0179 NCIT:C4194 Invasive breast carcinoma of no special type -CVCL_1115 NCIT:C4017 Ductal breast carcinoma -CVCL_0031 NCIT:C4194 Invasive breast carcinoma of no special type -CVCL_0621 NCIT:C4017 Ductal breast carcinoma -CVCL_0623 NCIT:C4194 Invasive breast carcinoma of no special type -CVCL_0033 NCIT:C4017 Ductal breast carcinoma -CVCL_0588 NCIT:C4194 Invasive breast carcinoma of no special type -CVCL_1114 NCIT:C4017 Ductal breast carcinoma -CVCL_1207 NCIT:C4017 Ductal breast carcinoma -CVCL_1782 NCIT:C4194 Invasive breast carcinoma of no special type -CVCL_1252 NCIT:C4017 Ductal breast carcinoma -CVCL_1661 NCIT:C4194 Invasive breast carcinoma of no special type -CVCL_1405 NCIT:C6287 Endometrial Endometrioid Adenocarcinoma -CVCL_0505 NCIT:C114656 Endometrial adenosquamous carcinoma -CVCL_0028 NCIT:C7359 Endometrial adenocarcinoma -CVCL_1329 NCIT:C7359 Endometrial adenocarcinoma -CVCL_1074 NCIT:C4017 Ductal breast carcinoma -CVCL_1092 NCIT:C7439 Breast Papillary Ductal Carcinoma In Situ with Invasion -CVCL_0332 NCIT:C4194 Invasive breast carcinoma of no special type -CVCL_0062 NCIT:C4194 Invasive breast carcinoma of no special type -CVCL_0417 NCIT:C3802 Amelanotic melanoma -CVCL_0419 NCIT:C4017 Ductal breast carcinoma -CVCL_1781 NCIT:C4194 Invasive breast carcinoma of no special type -CVCL_1104 NCIT:C4017 Ductal breast carcinoma -CVCL_1258 NCIT:C40359 Breast squamous cell carcinoma, acantholytic variant -CVCL_2319 NCIT:C4194 Invasive breast carcinoma of no special type -CVCL_1400 NCIT:C4194 Invasive breast carcinoma of no special type -CVCL_0620 NCIT:C4017 Ductal breast carcinoma -CVCL_0418 NCIT:C4017 Ductal breast carcinoma -CVCL_0553 NCIT:C6393 Invasive Breast Ductal Carcinoma and Invasive Lobular Carcinoma -CVCL_1183 NCIT:C4017 Ductal breast carcinoma -CVCL_1110 NCIT:C4017 Ductal breast carcinoma -CVCL_1812 NCIT:C4017 Ductal breast carcinoma -CVCL_2094 NCIT:C4194 Invasive breast carcinoma of no special type -CVCL_1408 NCIT:C4017 Ductal breast carcinoma -CVCL_1106 NCIT:C4017 Ductal breast carcinoma -CVCL_2529 NCIT:C6287 Endometrial Endometrioid Adenocarcinoma -CVCL_1406 NCIT:C6287 Endometrial Endometrioid Adenocarcinoma -CVCL_1191 NCIT:C6287 Endometrial Endometrioid Adenocarcinoma -CVCL_1550 NCIT:C3512 Lung adenocarcinoma -CVCL_1555 NCIT:C45663 Pleural sarcomatoid mesothelioma -CVCL_1557 NCIT:C7270 Minimally Invasive Lung Mixed Non-Mucinous and Mucinous Adenocarcinoma -CVCL_1518 NCIT:C45663 Pleural sarcomatoid mesothelioma -CVCL_0459 NCIT:C4450 Lung large cell carcinoma -CVCL_1195 NCIT:C3512 Lung adenocarcinoma -CVCL_5160 NCIT:C3512 Lung adenocarcinoma -CVCL_0236 NCIT:C3512 Lung adenocarcinoma -CVCL_1517 NCIT:C3512 Lung adenocarcinoma -CVCL_1547 NCIT:C3512 Lung adenocarcinoma -CVCL_0580 NCIT:C9152 Superficial Spreading Melanoma -CVCL_6805 NCIT:C3510 Cutaneous Melanoma -CVCL_A338 NCIT:C3510 Cutaneous Melanoma -CVCL_1438 NCIT:C3510 Cutaneous Melanoma -CVCL_1780 NCIT:C3510 Cutaneous Melanoma -CVCL_5239 NCIT:C3510 Cutaneous Melanoma -CVCL_1395 NCIT:C3802 Amelanotic melanoma -CVCL_8787 NCIT:C3510 Cutaneous Melanoma -CVCL_4633 NCIT:C3510 Cutaneous Melanoma -CVCL_1531 NCIT:C3512 Lung adenocarcinoma -CVCL_1559 NCIT:C7270 Minimally Invasive Lung Mixed Non-Mucinous and Mucinous Adenocarcinoma -CVCL_1532 NCIT:C4450 Lung large cell carcinoma -CVCL_1524 NCIT:C3512 Lung adenocarcinoma -CVCL_1543 NCIT:C3512 Lung adenocarcinoma -CVCL_1556 NCIT:C7270 Minimally Invasive Lung Mixed Non-Mucinous and Mucinous Adenocarcinoma -CVCL_1490 NCIT:C3493 Lung squamous cell carcinoma -CVCL_1529 NCIT:C4917 Lung small cell carcinoma -CVCL_1779 ['NCIT:C3224', 'NCIT:C3510'] NCIT:C3224 Melanoma -CVCL_DG74 NCIT:C3510 Cutaneous Melanoma -CVCL_6795 NCIT:C3510 Cutaneous Melanoma -CVCL_V620 ['NCIT:C2926'] NCIT:C3512 Lung adenocarcinoma -CVCL_V621 ['NCIT:C2926'] NCIT:C3512 Lung adenocarcinoma -CVCL_V622 ['NCIT:C2926'] NCIT:C3512 Lung adenocarcinoma -CVCL_V623 ['NCIT:C2926'] NCIT:C3512 Lung adenocarcinoma -CVCL_V624 ['NCIT:C2926'] NCIT:C3512 Lung adenocarcinoma -CVCL_V625 ['NCIT:C2926'] NCIT:C3512 Lung adenocarcinoma -CVCL_DI28 ['NCIT:C2926'] NCIT:C3512 Lung adenocarcinoma -CVCL_DI29 ['NCIT:C2926'] NCIT:C3512 Lung adenocarcinoma -CVCL_DI30 ['NCIT:C2926'] NCIT:C3512 Lung adenocarcinoma -CVCL_DI31 ['NCIT:C2926'] NCIT:C3512 Lung adenocarcinoma -CVCL_DI32 ['NCIT:C2926'] NCIT:C3512 Lung adenocarcinoma -CVCL_DI33 ['NCIT:C2926'] NCIT:C3512 Lung adenocarcinoma -CVCL_DI34 ['NCIT:C2926'] NCIT:C3512 Lung adenocarcinoma -CVCL_DI35 ['NCIT:C2926'] NCIT:C3512 Lung adenocarcinoma -CVCL_DI36 ['NCIT:C2926'] NCIT:C3512 Lung adenocarcinoma -CVCL_DI37 ['NCIT:C2926'] NCIT:C3512 Lung adenocarcinoma -CVCL_DI38 ['NCIT:C2926'] NCIT:C3512 Lung adenocarcinoma -CVCL_3612 ['NCIT:C7979', 'NCIT:C2855', 'NCIT:C3769'] NCIT:C7979 Ovarian endometrioid adenocarcinoma -CVCL_1288 ['NCIT:C8181', 'NCIT:C4648', 'NCIT:C4833'] NCIT:C4648 Tongue squamous cell carcinoma -CVCL_3425 ['NCIT:C4017'] NCIT:C4872 Breast carcinoma -CVCL_0598 ['NCIT:C4017'] NCIT:C132256 Unspecified tissue -CVCL_1729 ['NCIT:C4349', 'NCIT:C9383'] NCIT:C9383 Rectal adenocarcinoma -CVCL_1102 ['NCIT:C8181', 'NCIT:C4833'] NCIT:C129857 Gingival squamous cell carcinoma -CVCL_1287 ['NCIT:C8181', 'NCIT:C4833'] NCIT:C4833 Oral cavity squamous cell carcinoma -CVCL_1171 ['NCIT:C8181', 'NCIT:C102872'] NCIT:C102872 Pharyngeal squamous cell carcinoma -CVCL_0178 ['NCIT:C4017', 'NCIT:C4194'] NCIT:C4194 Invasive breast carcinoma of no special type -CVCL_3375 ['NCIT:C3771'] NCIT:C76328 Metastatic breast lobular carcinoma -CVCL_3424 ['NCIT:C3771'] NCIT:C7950 Invasive breast lobular carcinoma -CVCL_3421 ['NCIT:C4017'] NCIT:C4872 Breast carcinoma -CVCL_0617 ['NCIT:C4017', 'NCIT:C7950'] NCIT:C7950 Invasive breast lobular carcinoma -CVCL_0618 ['NCIT:C4017', 'NCIT:C4872'] NCIT:C4872 Breast carcinoma -CVCL_0291 ['NCIT:C4910', 'NCIT:C4349'] NCIT:C4910 Colon carcinoma -CVCL_9875 ['NCIT:C4017'] NCIT:C4194 Invasive breast carcinoma of no special type -CVCL_1544 ['NCIT:C2926', 'NCIT:C45662', 'NCIT:C7985', 'NCIT:C4456', 'NCIT:C3234'] NCIT:C45662 Pleural epithelioid mesothelioma -CVCL_0395 ['NCIT:C2919'] NCIT:C4863 Prostate carcinoma -CVCL_0035 ['NCIT:C4863', 'NCIT:C2919'] NCIT:C4863 Prostate carcinoma -CVCL_CZ98 ['NCIT:C7978'] NCIT:C5228 Ovarian cystadenocarcinoma -CVCL_DA03 ['NCIT:C7978'] NCIT:C105555 High grade ovarian serous adenocarcinoma -CVCL_3936 ['NCIT:C7978'] NCIT:C5228 Ovarian cystadenocarcinoma -CVCL_DA02 ['NCIT:C7978'] NCIT:C105555 High grade ovarian serous adenocarcinoma -CVCL_2754 ['NCIT:C4017'] NCIT:C4194 Invasive breast carcinoma of no special type -CVCL_1100 ['NCIT:C4028'] NCIT:C27676 Human papillomavirus-related cervical squamous cell carcinoma -CVCL_4747 ['NCIT:C2919'] NCIT:C4863 Prostate carcinoma -CVCL_4748 ['NCIT:C4863', 'NCIT:C2919'] NCIT:C4863 Prostate carcinoma -CVCL_4744 ['NCIT:C2919'] NCIT:C4863 Prostate carcinoma -CVCL_CZ95 ['NCIT:C4908'] NCIT:C40078 Ovarian clear cell adenocarcinoma -CVCL_0475 ['NCIT:C7978'] NCIT:C7550 Ovarian serous adenocarcinoma -CVCL_CZ93 ['NCIT:C3769'] NCIT:C7979 Ovarian endometrioid adenocarcinoma -CVCL_CZ94 ['NCIT:C4908'] NCIT:C40078 Ovarian clear cell adenocarcinoma -CVCL_D130 ['NCIT:C4017'] NCIT:C4194 Invasive breast carcinoma of no special type -CVCL_0126 ['NCIT:C4912', 'NCIT:C39851'] NCIT:C4912 Bladder carcinoma -CVCL_1292 ['NCIT:C4912', 'NCIT:C39851'] NCIT:C4912 Bladder carcinoma -CVCL_1738 ['NCIT:C4912', 'NCIT:C39851'] NCIT:C4912 Bladder carcinoma -CVCL_4778 ['NCIT:C2919'] NCIT:C4863 Prostate carcinoma -CVCL_DA00 ['NCIT:C7978'] NCIT:C7550 Ovarian serous adenocarcinoma -CVCL_H619 ['NCIT:C3769'] NCIT:C7979 Ovarian endometrioid adenocarcinoma -CVCL_CZ99 ['NCIT:C7978'] NCIT:C5228 Ovarian cystadenocarcinoma -CVCL_DA01 ['NCIT:C7978'] NCIT:C7550 Ovarian serous adenocarcinoma -CVCL_0465 ['NCIT:C105555', 'NCIT:C7978'] NCIT:C105555 High grade ovarian serous adenocarcinoma -CVCL_2755 ['NCIT:C4017'] NCIT:C4194 Invasive breast carcinoma of no special type -CVCL_C301 ['NCIT:C3510'] NCIT:C7712 Uveal melanoma -CVCL_1047 ['NCIT:C3211'] NCIT:C9140 Childhood B acute lymphoblastic leukemia -CVCL_1291 ['NCIT:C7899', 'NCIT:C39851'] NCIT:C7899 Recurrent bladder carcinoma -CVCL_0473 ['NCIT:C4908'] NCIT:C27676 Human papillomavirus-related cervical squamous cell carcinoma -CVCL_1058 ['NCIT:C3043', 'NCIT:C8971'] NCIT:C8971 Embryonal rhabdomyosarcoma -CVCL_0134 ['NCIT:C7979', 'NCIT:C2855', 'NCIT:C3769'] NCIT:C7979 Ovarian endometrioid adenocarcinoma -CVCL_F638 ['NCIT:C3769'] NCIT:C7979 Ovarian endometrioid adenocarcinoma -CVCL_0201 ['NCIT:C105555', 'NCIT:C7978'] NCIT:C105555 High grade ovarian serous adenocarcinoma -CVCL_0135 ['NCIT:C3769'] NCIT:C7979 Ovarian endometrioid adenocarcinoma -CVCL_DG88 ['NCIT:C7978'] NCIT:C7550 Ovarian serous adenocarcinoma -CVCL_1627 ['NCIT:C105555', 'NCIT:C7978'] NCIT:C105555 High grade ovarian serous adenocarcinoma -CVCL_1628 ['NCIT:C7978'] NCIT:C105555 High grade ovarian serous adenocarcinoma -CVCL_1629 ['NCIT:C105555', 'NCIT:C7978'] NCIT:C105555 High grade ovarian serous adenocarcinoma -CVCL_2686 ['NCIT:C7978'] NCIT:C36101 BRCA2 syndrome -CVCL_3605 ['NCIT:C9145'] NCIT:C132256 Unspecified tissue -CVCL_6785 NCIT:C3510 Cutaneous Melanoma -CVCL_C265 NCIT:C3510 Cutaneous Melanoma -CVCL_W886 NCIT:C3510 Cutaneous Melanoma -CVCL_0B67 NCIT:C3510 Cutaneous Melanoma -CVCL_DG75 NCIT:C3510 Cutaneous Melanoma -CVCL_DG76 NCIT:C3510 Cutaneous Melanoma -CVCL_L028 NCIT:C3510 Cutaneous Melanoma -CVCL_7156 NCIT:C3510 Cutaneous Melanoma -CVCL_C281 NCIT:C3510 Cutaneous Melanoma -CVCL_DF84 ['NCIT:C4017'] NCIT:C36100 BRCA1 syndrome -CVCL_F639 ['NCIT:C3769'] NCIT:C7979 Ovarian endometrioid adenocarcinoma -CVCL_1229 ['NCIT:C4247', 'NCIT:C3359'] NCIT:C4247 Undifferentiated pleomorphic sarcoma -CVCL_DG89 ['NCIT:C7978'] NCIT:C7550 Ovarian serous adenocarcinoma -CVCL_2690 ['NCIT:C7978'] NCIT:C36101 BRCA2 syndrome -CVCL_6786 NCIT:C3510 Cutaneous Melanoma -CVCL_C270 NCIT:C3510 Cutaneous Melanoma -CVCL_6808 NCIT:C3510 Cutaneous Melanoma -CVCL_AP86 NCIT:C3510 Cutaneous Melanoma -CVCL_1345 ['NCIT:C105555', 'NCIT:C7978'] NCIT:C105555 High grade ovarian serous adenocarcinoma -CVCL_0479 ['NCIT:C3756'] NCIT:C8114 Ovarian mixed germ cell tumor -CVCL_DG02 ['NCIT:C3359'] NCIT:C3749 Alveolar rhabdomyosarcoma -CVCL_0041 ['NCIT:C3749', 'NCIT:C3359'] NCIT:C3749 Alveolar rhabdomyosarcoma -CVCL_M599 ['NCIT:C3359'] NCIT:C8971 Embryonal rhabdomyosarcoma -CVCL_A339 NCIT:C3510 Cutaneous Melanoma -CVCL_6792 ['NCIT:C9152'] NCIT:C3224 Melanoma -CVCL_A341 NCIT:C3510 Cutaneous Melanoma -CVCL_6796 NCIT:C3510 Cutaneous Melanoma -CVCL_2240 NCIT:C3510 Cutaneous Melanoma -CVCL_6803 NCIT:C3510 Cutaneous Melanoma -CVCL_C280 NCIT:C3510 Cutaneous Melanoma -CVCL_6995 NCIT:C3510 Cutaneous Melanoma -CVCL_C283 NCIT:C3510 Cutaneous Melanoma -CVCL_6806 NCIT:C3510 Cutaneous Melanoma -CVCL_6807 NCIT:C3510 Cutaneous Melanoma -CVCL_1775 ['NCIT:C4861'] NCIT:C8263 Adult acute monocytic leukemia -CVCL_0336 ['NCIT:C3099', 'NCIT:C7956'] NCIT:C7956 Adult hepatocellular carcinoma -CVCL_0027 ['NCIT:C3728', 'NCIT:C3099'] NCIT:C3728 Hepatoblastoma -CVCL_0326 ['NCIT:C7955', 'NCIT:C3099'] NCIT:C7955 Childhood hepatocellular carcinoma -CVCL_0485 ['NCIT:C3099', 'NCIT:C7956'] NCIT:C7956 Adult hepatocellular carcinoma -CVCL_S678 NCIT:C3510 Cutaneous Melanoma -CVCL_DI15 NCIT:C3510 Cutaneous Melanoma -CVCL_4632 NCIT:C3510 Cutaneous Melanoma -CVCL_7943 NCIT:C3510 Cutaneous Melanoma -CVCL_DI14 NCIT:C3510 Cutaneous Melanoma -CVCL_DI12 NCIT:C3510 Cutaneous Melanoma -CVCL_C586 NCIT:C3510 Cutaneous Melanoma -CVCL_8030 NCIT:C3510 Cutaneous Melanoma -CVCL_8058 NCIT:C3510 Cutaneous Melanoma -CVCL_C588 NCIT:C3510 Cutaneous Melanoma -CVCL_DI13 NCIT:C3510 Cutaneous Melanoma -CVCL_DI11 NCIT:C3510 Cutaneous Melanoma -CVCL_8051 NCIT:C3510 Cutaneous Melanoma -CVCL_8033 NCIT:C3510 Cutaneous Melanoma -CVCL_8032 NCIT:C3510 Cutaneous Melanoma -CVCL_W875 NCIT:C3510 Cutaneous Melanoma -CVCL_S856 NCIT:C3510 Cutaneous Melanoma -CVCL_S857 NCIT:C3510 Cutaneous Melanoma -CVCL_W878 NCIT:C3510 Cutaneous Melanoma -CVCL_DH61 NCIT:C3510 Cutaneous Melanoma -CVCL_U801 NCIT:C3510 Cutaneous Melanoma -CVCL_1097 ['NCIT:C3802', 'NCIT:C3510'] NCIT:C3802 Amelanotic melanoma -CVCL_U797 NCIT:C3510 Cutaneous Melanoma -CVCL_DH62 NCIT:C3510 Cutaneous Melanoma -CVCL_DH63 NCIT:C3510 Cutaneous Melanoma -CVCL_H604 NCIT:C3510 Cutaneous Melanoma -CVCL_H607 NCIT:C3510 Cutaneous Melanoma -CVCL_H608 NCIT:C3510 Cutaneous Melanoma -CVCL_H945 NCIT:C3510 Cutaneous Melanoma -CVCL_H946 NCIT:C3510 Cutaneous Melanoma -CVCL_H944 NCIT:C3510 Cutaneous Melanoma -CVCL_W869 NCIT:C3510 Cutaneous Melanoma -CVCL_H943 NCIT:C3510 Cutaneous Melanoma -CVCL_DH67 NCIT:C3510 Cutaneous Melanoma -CVCL_W871 NCIT:C3510 Cutaneous Melanoma -CVCL_W872 NCIT:C3510 Cutaneous Melanoma -CVCL_DH69 NCIT:C3510 Cutaneous Melanoma -CVCL_DH71 NCIT:C3510 Cutaneous Melanoma -CVCL_DH70 NCIT:C3510 Cutaneous Melanoma -CVCL_DH72 NCIT:C3510 Cutaneous Melanoma -CVCL_DG37 NCIT:C3510 Cutaneous Melanoma -CVCL_DH73 NCIT:C3510 Cutaneous Melanoma -CVCL_DH74 NCIT:C3510 Cutaneous Melanoma -CVCL_DH75 NCIT:C3510 Cutaneous Melanoma -CVCL_0359 ['NCIT:C4912', 'NCIT:C39851'] NCIT:C4912 Bladder carcinoma -CVCL_0554 ['NCIT:C4912', 'NCIT:C39851'] NCIT:C4912 Bladder carcinoma -CVCL_DH76 NCIT:C3510 Cutaneous Melanoma -CVCL_0318 ['NCIT:C3224', 'NCIT:C3510'] NCIT:C3224 Melanoma -CVCL_W874 NCIT:C3510 Cutaneous Melanoma -CVCL_2601 ['NCIT:C3510'] NCIT:C3802 Amelanotic melanoma -CVCL_2602 NCIT:C3510 Cutaneous Melanoma -CVCL_C836 NCIT:C3510 Cutaneous Melanoma -CVCL_C837 NCIT:C3510 Cutaneous Melanoma -CVCL_2604 ['NCIT:C3510'] NCIT:C3802 Amelanotic melanoma -CVCL_C838 NCIT:C3510 Cutaneous Melanoma -CVCL_C839 NCIT:C3510 Cutaneous Melanoma -CVCL_2605 NCIT:C3510 Cutaneous Melanoma -CVCL_C840 NCIT:C3510 Cutaneous Melanoma -CVCL_2607 NCIT:C3510 Cutaneous Melanoma -CVCL_C841 NCIT:C3510 Cutaneous Melanoma -CVCL_C842 NCIT:C3510 Cutaneous Melanoma -CVCL_2608 NCIT:C3510 Cutaneous Melanoma -CVCL_C843 NCIT:C3510 Cutaneous Melanoma -CVCL_2609 NCIT:C3510 Cutaneous Melanoma -CVCL_4449 NCIT:C3510 Cutaneous Melanoma -CVCL_C845 NCIT:C3510 Cutaneous Melanoma -CVCL_4450 NCIT:C3510 Cutaneous Melanoma -CVCL_2610 ['NCIT:C3510'] NCIT:C3802 Amelanotic melanoma -CVCL_C846 NCIT:C3510 Cutaneous Melanoma -CVCL_4451 NCIT:C3510 Cutaneous Melanoma -CVCL_C847 NCIT:C3510 Cutaneous Melanoma -CVCL_C848 NCIT:C3510 Cutaneous Melanoma -CVCL_4452 NCIT:C3510 Cutaneous Melanoma -CVCL_DG38 NCIT:C3510 Cutaneous Melanoma -CVCL_2612 NCIT:C3510 Cutaneous Melanoma -CVCL_C850 NCIT:C3510 Cutaneous Melanoma -CVCL_C851 NCIT:C3510 Cutaneous Melanoma -CVCL_DH58 NCIT:C3510 Cutaneous Melanoma -CVCL_C852 NCIT:C3510 Cutaneous Melanoma -CVCL_A777 NCIT:C3510 Cutaneous Melanoma -CVCL_A776 NCIT:C3510 Cutaneous Melanoma -CVCL_U799 NCIT:C3510 Cutaneous Melanoma -CVCL_2713 NCIT:C3510 Cutaneous Melanoma -CVCL_U798 NCIT:C3510 Cutaneous Melanoma -CVCL_DH60 NCIT:C3510 Cutaneous Melanoma -CVCL_W879 NCIT:C3510 Cutaneous Melanoma -CVCL_DH66 NCIT:C3510 Cutaneous Melanoma -CVCL_DH65 NCIT:C3510 Cutaneous Melanoma -CVCL_DH64 NCIT:C3510 Cutaneous Melanoma -CVCL_D853 NCIT:C3510 Cutaneous Melanoma -CVCL_DH59 NCIT:C3510 Cutaneous Melanoma -CVCL_1382 ['NCIT:C5543', 'NCIT:C4349'] NCIT:C5543 Cecum adenocarcinoma -CVCL_S808 NCIT:C3510 Cutaneous Melanoma -CVCL_7948 ['NCIT:C39851'] NCIT:C4912 Bladder carcinoma -CVCL_8253 ['NCIT:C39851'] NCIT:C4912 Bladder carcinoma -CVCL_0021 ['NCIT:C3058', 'NCIT:C60781'] NCIT:C60781 Astrocytoma -CVCL_1331 ['NCIT:C4910', 'NCIT:C4349'] NCIT:C4910 Colon carcinoma -CVCL_0207 ['NCIT:C7953', 'NCIT:C3167'] NCIT:C7953 Childhood T acute lymphoblastic leukemia -CVCL_0002 ['NCIT:C9154', 'NCIT:C27753'] NCIT:C9154 Adult acute myeloid leukemia -CVCL_0004 ['NCIT:C3174'] NCIT:C9110 Blast phase chronic myelogenous leukemia, BCR-ABL1 positive -CVCL_0013 ['NCIT:C9142', 'NCIT:C3167'] NCIT:C9142 Adult T acute lymphoblastic leukemia -CVCL_1452 ['NCIT:C7978'] NCIT:C105555 High grade ovarian serous adenocarcinoma -CVCL_0014 ['NCIT:C9349', 'NCIT:C3242'] NCIT:C3242 Plasma cell myeloma -CVCL_1711 ['NCIT:C3468', 'NCIT:C3720', 'NCIT:C37193'] NCIT:C37193 Anaplastic large cell lymphoma, ALK-positive -CVCL_1381 ['NCIT:C3802', 'NCIT:C3510'] NCIT:C3802 Amelanotic melanoma -CVCL_1304 ['NCIT:C7979', 'NCIT:C5228', 'NCIT:C3769'] NCIT:C7979 Ovarian endometrioid adenocarcinoma -CVCL_1067 ['NCIT:C6975', 'NCIT:C9385'] NCIT:C6975 Papillary renal cell carcinoma -CVCL_1773 ['NCIT:C27893', 'NCIT:C4033', 'NCIT:C9385'] NCIT:C4033 Clear cell renal cell carcinoma -CVCL_DH83 ['NCIT:C4017'] NCIT:C5214 Breast adenocarcinoma -CVCL_M372 ['NCIT:C4017'] NCIT:C5214 Breast adenocarcinoma -CVCL_A116 ['NCIT:C3510'] NCIT:C9151 Lentigo maligna melanoma -CVCL_A118 NCIT:C3510 Cutaneous Melanoma -CVCL_A119 NCIT:C3510 Cutaneous Melanoma -CVCL_A121 ['NCIT:C3510'] NCIT:C4225 Cutaneous nodular melanoma -CVCL_A123 NCIT:C3510 Cutaneous Melanoma -CVCL_A133 ['NCIT:C3510'] NCIT:C3802 Amelanotic melanoma -CVCL_A139 NCIT:C3510 Cutaneous Melanoma -CVCL_A146 NCIT:C3510 Cutaneous Melanoma -CVCL_A155 NCIT:C3510 Cutaneous Melanoma -CVCL_A156 NCIT:C3510 Cutaneous Melanoma -CVCL_A158 NCIT:C3510 Cutaneous Melanoma -CVCL_A160 NCIT:C3510 Cutaneous Melanoma -CVCL_A162 NCIT:C3510 Cutaneous Melanoma -CVCL_A163 ['NCIT:C3510'] NCIT:C4022 Acral lentiginous melanoma -CVCL_A165 NCIT:C3510 Cutaneous Melanoma -CVCL_A167 NCIT:C3510 Cutaneous Melanoma -CVCL_A170 NCIT:C3510 Cutaneous Melanoma -CVCL_A171 NCIT:C3510 Cutaneous Melanoma -CVCL_A172 NCIT:C3510 Cutaneous Melanoma -CVCL_A174 NCIT:C3510 Cutaneous Melanoma -CVCL_A175 NCIT:C3510 Cutaneous Melanoma -CVCL_A176 NCIT:C3510 Cutaneous Melanoma -CVCL_A180 NCIT:C3510 Cutaneous Melanoma -CVCL_A186 NCIT:C3510 Cutaneous Melanoma -CVCL_A188 NCIT:C3510 Cutaneous Melanoma -CVCL_A192 NCIT:C3510 Cutaneous Melanoma -CVCL_A193 NCIT:C3510 Cutaneous Melanoma -CVCL_A194 NCIT:C3510 Cutaneous Melanoma -CVCL_A195 NCIT:C3510 Cutaneous Melanoma -CVCL_C291 NCIT:C3510 Cutaneous Melanoma -CVCL_A197 NCIT:C3510 Cutaneous Melanoma -CVCL_A198 NCIT:C3510 Cutaneous Melanoma -CVCL_A201 NCIT:C3510 Cutaneous Melanoma -CVCL_A203 NCIT:C3510 Cutaneous Melanoma -CVCL_A205 NCIT:C3510 Cutaneous Melanoma -CVCL_A207 NCIT:C3510 Cutaneous Melanoma -CVCL_A208 NCIT:C3510 Cutaneous Melanoma -CVCL_A211 NCIT:C3510 Cutaneous Melanoma -CVCL_A212 NCIT:C3510 Cutaneous Melanoma -CVCL_A214 NCIT:C3510 Cutaneous Melanoma -CVCL_A215 NCIT:C3510 Cutaneous Melanoma -CVCL_A220 NCIT:C3510 Cutaneous Melanoma -CVCL_A221 NCIT:C3510 Cutaneous Melanoma -CVCL_A228 NCIT:C3510 Cutaneous Melanoma -CVCL_A229 NCIT:C3510 Cutaneous Melanoma -CVCL_A232 NCIT:C3510 Cutaneous Melanoma -CVCL_A125 NCIT:C3510 Cutaneous Melanoma -CVCL_A127 NCIT:C3510 Cutaneous Melanoma -CVCL_A131 NCIT:C3510 Cutaneous Melanoma -CVCL_A134 NCIT:C3510 Cutaneous Melanoma -CVCL_A136 NCIT:C3510 Cutaneous Melanoma -CVCL_A137 NCIT:C3510 Cutaneous Melanoma -CVCL_A138 NCIT:C3510 Cutaneous Melanoma -CVCL_A144 NCIT:C3510 Cutaneous Melanoma -CVCL_A145 NCIT:C3510 Cutaneous Melanoma -CVCL_A147 NCIT:C3510 Cutaneous Melanoma -CVCL_A148 NCIT:C3510 Cutaneous Melanoma -CVCL_A149 NCIT:C3510 Cutaneous Melanoma -CVCL_A152 NCIT:C3510 Cutaneous Melanoma -CVCL_C505 NCIT:C3510 Cutaneous Melanoma -CVCL_3114 ['NCIT:C105555', 'NCIT:C7978'] NCIT:C105555 High grade ovarian serous adenocarcinoma -CVCL_4992 ['NCIT:C4908'] NCIT:C8114 Ovarian mixed germ cell tumor -CVCL_1617 ['NCIT:C7978'] NCIT:C7550 Ovarian serous adenocarcinoma -CVCL_2682 ['NCIT:C7978'] NCIT:C5228 Ovarian cystadenocarcinoma -CVCL_2691 ['NCIT:C5228', 'NCIT:C7978'] NCIT:C36101 BRCA2 syndrome -CVCL_2689 ['NCIT:C7978'] NCIT:C5228 Ovarian cystadenocarcinoma -CVCL_DI16 ['NCIT:C3769'] NCIT:C7979 Ovarian endometrioid adenocarcinoma -CVCL_B476 ['NCIT:C7978'] NCIT:C5228 Ovarian cystadenocarcinoma -CVCL_3352 ['NCIT:C4017'] NCIT:C4872 Breast carcinoma -CVCL_1616 ['NCIT:C7550', 'NCIT:C7978'] NCIT:C7550 Ovarian serous adenocarcinoma -CVCL_5381 ['NCIT:C7978'] NCIT:C7550 Ovarian serous adenocarcinoma -CVCL_2683 ['NCIT:C7978'] NCIT:C5228 Ovarian cystadenocarcinoma -CVCL_2687 ['NCIT:C7978'] NCIT:C5228 Ovarian cystadenocarcinoma -CVCL_0589 ['NCIT:C9381', 'NCIT:C27753'] NCIT:C9381 Childhood acute myeloid leukemia with maturation -CVCL_1650 ['NCIT:C8644', 'NCIT:C9140'] NCIT:C9140 Childhood B acute lymphoblastic leukemia -CVCL_0219 ['NCIT:C4910', 'NCIT:C4349'] NCIT:C4349 Colon adenocarcinoma -CVCL_1563 ['NCIT:C4349'] NCIT:C5543 Cecum adenocarcinoma -CVCL_1587 ['NCIT:C5543', 'NCIT:C4349'] NCIT:C5543 Cecum adenocarcinoma -CVCL_S959 ['NCIT:C4349'] NCIT:C5105 Colorectal adenocarcinoma -CVCL_1515 ['NCIT:C2926', 'NCIT:C3512'] NCIT:C3512 Lung adenocarcinoma -CVCL_1549 ['NCIT:C2926', 'NCIT:C3512'] NCIT:C3512 Lung adenocarcinoma -CVCL_1386 ['NCIT:C5543', 'NCIT:C4349'] NCIT:C5543 Cecum adenocarcinoma -CVCL_1581 ['NCIT:C5543', 'NCIT:C4349'] NCIT:C5543 Cecum adenocarcinoma -CVCL_1484 ['NCIT:C2926', 'NCIT:C3512'] NCIT:C3512 Lung adenocarcinoma -CVCL_1385 ['NCIT:C5543', 'NCIT:C4349'] NCIT:C5543 Cecum adenocarcinoma -CVCL_1564 ['NCIT:C5543', 'NCIT:C4349'] NCIT:C5543 Cecum adenocarcinoma -CVCL_1718 ['NCIT:C9383', 'NCIT:C4349'] NCIT:C9383 Rectal adenocarcinoma -CVCL_1488 ['NCIT:C2926', 'NCIT:C3512'] NCIT:C3512 Lung adenocarcinoma -CVCL_1523 ['NCIT:C2926', 'NCIT:C3512'] NCIT:C3512 Lung adenocarcinoma -CVCL_1551 ['NCIT:C2926', 'NCIT:C3512'] NCIT:C3512 Lung adenocarcinoma -CVCL_1129 ['NCIT:C4910', 'NCIT:C4349'] NCIT:C4910 Colon carcinoma -CVCL_1521 ['NCIT:C2926', 'NCIT:C3512'] NCIT:C3512 Lung adenocarcinoma -CVCL_1546 ['NCIT:C2926', 'NCIT:C3512'] NCIT:C3512 Lung adenocarcinoma -CVCL_5113 ['NCIT:C45662', 'NCIT:C7985'] NCIT:C45662 Pleural epithelioid mesothelioma -CVCL_5114 ['NCIT:C7985'] NCIT:C45662 Pleural epithelioid mesothelioma -CVCL_5190 ['NCIT:C7376'] NCIT:C45662 Pleural epithelioid mesothelioma -CVCL_5178 ['NCIT:C7376'] NCIT:C45662 Pleural epithelioid mesothelioma -CVCL_5179 ['NCIT:C7376'] NCIT:C45665 Pleural biphasic mesothelioma -CVCL_5180 ['NCIT:C7376'] NCIT:C45662 Pleural epithelioid mesothelioma -CVCL_5181 ['NCIT:C7376'] NCIT:C45663 Pleural sarcomatoid mesothelioma -CVCL_5182 ['NCIT:C7376'] NCIT:C45662 Pleural epithelioid mesothelioma -CVCL_5183 ['NCIT:C7376'] NCIT:C27779 Lymphohistiocytoid mesothelioma -CVCL_5184 ['NCIT:C7376'] NCIT:C45662 Pleural epithelioid mesothelioma -CVCL_5185 ['NCIT:C7376'] NCIT:C45662 Pleural epithelioid mesothelioma -CVCL_5186 ['NCIT:C7376'] NCIT:C45662 Pleural epithelioid mesothelioma -CVCL_5187 ['NCIT:C7376'] NCIT:C45662 Pleural epithelioid mesothelioma -CVCL_6031 NCIT:C3510 Cutaneous Melanoma -CVCL_6224 NCIT:C3510 Cutaneous Melanoma -CVCL_3880 NCIT:C3510 Cutaneous Melanoma -CVCL_6069 NCIT:C3510 Cutaneous Melanoma -CVCL_6090 NCIT:C3510 Cutaneous Melanoma -CVCL_3876 NCIT:C3510 Cutaneous Melanoma -CVCL_6097 NCIT:C3510 Cutaneous Melanoma -CVCL_6101 NCIT:C3510 Cutaneous Melanoma -CVCL_8082 NCIT:C3510 Cutaneous Melanoma -CVCL_0525 ['NCIT:C3099', 'NCIT:C7956'] NCIT:C7106 Liver and intrahepatic bile duct epithelial neoplasm -CVCL_3840 ['NCIT:C3099', 'NCIT:C7956'] NCIT:C7956 Adult hepatocellular carcinoma -CVCL_0090 ['NCIT:C3099', 'NCIT:C7956'] NCIT:C7956 Adult hepatocellular carcinoma -CVCL_0497 ['NCIT:C3099', 'NCIT:C7956'] NCIT:C7956 Adult hepatocellular carcinoma -CVCL_0250 ['NCIT:C3099', 'NCIT:C7956'] NCIT:C7956 Adult hepatocellular carcinoma -CVCL_0077 ['NCIT:C3099', 'NCIT:C7956'] NCIT:C7956 Adult hepatocellular carcinoma -CVCL_0366 ['NCIT:C3099', 'NCIT:C7956'] NCIT:C7956 Adult hepatocellular carcinoma -CVCL_0454 ['NCIT:C3099', 'NCIT:C7956'] NCIT:C7956 Adult hepatocellular carcinoma -CVCL_D748 NCIT:C3510 Cutaneous Melanoma -CVCL_D751 NCIT:C3510 Cutaneous Melanoma -CVCL_2047 ['NCIT:C105555', 'NCIT:C7978'] NCIT:C105555 High grade ovarian serous adenocarcinoma -CVCL_3495 ['NCIT:C132256'] NCIT:C4863 Prostate carcinoma -CVCL_2235 ['NCIT:C4863', 'NCIT:C2919'] NCIT:C4863 Prostate carcinoma -CVCL_2945 ['NCIT:C27753'] NCIT:C9154 Adult acute myeloid leukemia -CVCL_4784 ['NCIT:C2919'] NCIT:C4863 Prostate carcinoma -CVCL_1107 ['NCIT:C4648'] NCIT:C173807 Tongue adenosquamous carcinoma -CVCL_0313 ['NCIT:C8294', 'NCIT:C9120'] NCIT:C9120 Pancreatic ductal adenocarcinoma -CVCL_1584 ['NCIT:C4878', 'NCIT:C2926', 'NCIT:C4038', 'NCIT:C3512'] NCIT:C4038 Lung carcinoid tumor -CVCL_1720 ['NCIT:C2923', 'NCIT:C7270'] NCIT:C2923 Minimally invasive lung adenocarcinoma -CVCL_1060 ['NCIT:C4648', 'NCIT:C7991'] NCIT:C5943 Submandibular gland squamous cell carcinoma -CVCL_2253 ['NCIT:C4028', 'NCIT:C27676'] NCIT:C27676 Human papillomavirus-related cervical squamous cell carcinoma -CVCL_1401 ['NCIT:C4028', 'NCIT:C2929'] NCIT:C27676 Human papillomavirus-related cervical squamous cell carcinoma -CVCL_0032 ['NCIT:C4028', 'NCIT:C27676'] NCIT:C27676 Human papillomavirus-related cervical squamous cell carcinoma -CVCL_2075 ['NCIT:C3224', 'NCIT:C3510'] NCIT:C3224 Melanoma -CVCL_1094 ['NCIT:C4028'] NCIT:C180839 Cervical squamous cell carcinoma, not otherwise specified -CVCL_1095 ['NCIT:C4028', 'NCIT:C27676'] NCIT:C27676 Human papillomavirus-related cervical squamous cell carcinoma -CVCL_1293 ['NCIT:C4028', 'NCIT:C9039'] NCIT:C9039 Cervical carcinoma -CVCL_4996 ['NCIT:C4028'] NCIT:C27676 Human papillomavirus-related cervical squamous cell carcinoma -CVCL_1727 ['NCIT:C4028', 'NCIT:C27676'] NCIT:C27676 Human papillomavirus-related cervical squamous cell carcinoma -CVCL_2076 ['NCIT:C3224', 'NCIT:C3510'] NCIT:C3224 Melanoma -CVCL_DI25 ['NCIT:C3510'] NCIT:C132256 Unspecified tissue -CVCL_0018 ['NCIT:C3222'] NCIT:C129445 Medulloblastoma, non-WNT/non-SHH, group 3 -CVCL_1275 ['NCIT:C3222'] NCIT:C129445 Medulloblastoma, non-WNT/non-SHH, group 3 -CVCL_1161 ['NCIT:C3222'] NCIT:C129445 Medulloblastoma, non-WNT/non-SHH, group 3 -CVCL_1167 ['NCIT:C3222'] NCIT:C129442 Medulloblastoma, SHH-activated, TP53-mutant -CVCL_M137 ['NCIT:C3222'] NCIT:C129445 Medulloblastoma, non-WNT/non-SHH, group 3 -CVCL_1624 ['NCIT:C3222'] NCIT:C129443 Medulloblastoma, SHH-activated, TP53-wildtype -CVCL_8585 ['NCIT:C3222'] NCIT:C129442 Medulloblastoma, SHH-activated, TP53-mutant -CVCL_1786 ['NCIT:C4912', 'NCIT:C39851'] NCIT:C4912 Bladder carcinoma -CVCL_3502 ['NCIT:C3183'] NCIT:C7953 Childhood T acute lymphoblastic leukemia -CVCL_0367 ['NCIT:C3183'] NCIT:C7953 Childhood T acute lymphoblastic leukemia -CVCL_1049 ['NCIT:C4912', 'NCIT:C39851'] NCIT:C4912 Bladder carcinoma -CVCL_3088 ['NCIT:C4910', 'NCIT:C4349'] NCIT:C4910 Colon carcinoma -CVCL_0941 ['NCIT:C3224', 'NCIT:C3510'] NCIT:C132256 Unspecified tissue -CVCL_3160 ['NCIT:C4833'] NCIT:C34447 Head and neck squamous cell carcinoma -CVCL_3002 ['NCIT:C8294'] NCIT:C9120 Pancreatic ductal adenocarcinoma -CVCL_1632 ['NCIT:C9160', 'NCIT:C27753'] NCIT:C9160 Childhood acute myeloid leukemia -CVCL_1428 ['NCIT:C4017'] NCIT:C4872 Breast carcinoma -CVCL_2814 ['NCIT:C4017', 'NCIT:C4194'] NCIT:C4194 Invasive breast carcinoma of no special type -CVCL_1321 ['NCIT:C8923', 'NCIT:C9154'] NCIT:C9154 Adult acute myeloid leukemia -CVCL_2786 ['NCIT:C3099', 'NCIT:C7956'] NCIT:C7956 Adult hepatocellular carcinoma -CVCL_1604 ['NCIT:C5027'] NCIT:C6341 Testicular embryonal carcinoma -CVCL_0390 ['NCIT:C3088'] NCIT:C3800 Epithelioid hemangioendothelioma -CVCL_0302 ['NCIT:C9384'] NCIT:C132256 Unspecified tissue -CVCL_1728 ['NCIT:C4912', 'NCIT:C39851'] NCIT:C4912 Bladder carcinoma -CVCL_3077 ['NCIT:C3172'] NCIT:C8263 Adult acute monocytic leukemia -CVCL_2067 ['NCIT:C4017', 'NCIT:C4872'] NCIT:C4017 Breast ductal carcinoma -CVCL_2785 ['NCIT:C3099', 'NCIT:C27688'] NCIT:C3098 Hepatitis C infection -CVCL_3143 ['NCIT:C67369', 'NCIT:C95595'] NCIT:C95595 Pancreatic somatostatinoma -CVCL_2320 ['NCIT:C4028'] NCIT:C27677 Human papillomavirus-related endocervical adenocarcinoma -CVCL_2307 ['NCIT:C4833'] NCIT:C4040 Buccal mucosa squamous cell carcinoma -CVCL_C171 ['NCIT:C8181'] NCIT:C4044 Laryngeal squamous cell carcinoma -CVCL_6410 ['NCIT:C3183'] NCIT:C7953 Childhood T acute lymphoblastic leukemia -CVCL_6429 ['NCIT:C3183'] NCIT:C7953 Childhood T acute lymphoblastic leukemia -CVCL_1048 ['NCIT:C4912', 'NCIT:C39851'] NCIT:C4830 Ureter urothelial carcinoma -CVCL_1059 ['NCIT:C3802', 'NCIT:C3510'] NCIT:C3802 Amelanotic melanoma -CVCL_1083 ['NCIT:C4912', 'NCIT:C39851'] NCIT:C4912 Bladder carcinoma -CVCL_1808 ['NCIT:C4912', 'NCIT:C39851'] NCIT:C4912 Bladder carcinoma -CVCL_1221 ['NCIT:C159209', 'NCIT:C3486'] NCIT:C3150 Kidney neoplasm -CVCL_1281 ['NCIT:C3099', 'NCIT:C7956'] NCIT:C7956 Adult hepatocellular carcinoma -CVCL_1721 ['NCIT:C4912', 'NCIT:C39851'] NCIT:C4912 Bladder carcinoma -CVCL_1284 ['NCIT:C4833'] NCIT:C4040 Buccal mucosa squamous cell carcinoma -CVCL_3001 ['NCIT:C4833'] NCIT:C4041 Floor of mouth squamous cell carcinoma -CVCL_1337 ['NCIT:C4833'] NCIT:C4041 Floor of mouth squamous cell carcinoma -CVCL_2788 ['NCIT:C3099', 'NCIT:C27688'] NCIT:C3098 Hepatitis C infection -CVCL_1289 ['NCIT:C4648', 'NCIT:C4833'] NCIT:C4648 Tongue squamous cell carcinoma -CVCL_2787 ['NCIT:C3099', 'NCIT:C27688'] NCIT:C3098 Hepatitis C infection -CVCL_2795 ['NCIT:C4028'] NCIT:C27676 Human papillomavirus-related cervical squamous cell carcinoma -CVCL_2784 ['NCIT:C4041', 'NCIT:C4833'] NCIT:C4041 Floor of mouth squamous cell carcinoma -CVCL_2956 ['NCIT:C3099', 'NCIT:C7956'] NCIT:C7956 Adult hepatocellular carcinoma -CVCL_3827 ['NCIT:C3174'] NCIT:C9110 Blast phase chronic myelogenous leukemia, BCR-ABL1 positive -CVCL_1075 ['NCIT:C3167'] NCIT:C9143 Adult B acute lymphoblastic leukemia -CVCL_3119 ['NCIT:C2912'] NCIT:C27694 EBV-related Burkitt lymphoma -CVCL_2792 ['NCIT:C3183'] NCIT:C9142 Adult T acute lymphoblastic leukemia -CVCL_1683 ['NCIT:C3211'] NCIT:C3457 B-cell non-Hodgkin lymphoma -CVCL_1707 ['NCIT:C6287', 'NCIT:C7359'] NCIT:C7359 Endometrial adenocarcinoma -CVCL_1941 ['NCIT:C7700'] NCIT:C7979 Ovarian endometrioid adenocarcinoma -CVCL_1615 ['NCIT:C5228', 'NCIT:C7978'] NCIT:C7978 Ovarian serous cystadenocarcinoma -CVCL_0697 ['NCIT:C39851'] NCIT:C4912 Bladder carcinoma -CVCL_1470 ['NCIT:C2926', 'NCIT:C3512'] NCIT:C3512 Lung adenocarcinoma -CVCL_2461 ['NCIT:C3167'] NCIT:C7953 Childhood T acute lymphoblastic leukemia -CVCL_1282 ['NCIT:C3510'] NCIT:C27394 Vaginal melanoma -CVCL_1294 ['NCIT:C4910', 'NCIT:C4349'] NCIT:C9383 Rectal adenocarcinoma -CVCL_6543 ['NCIT:C7359', 'NCIT:C3769'] NCIT:C7359 Endometrial adenocarcinoma -CVCL_1784 ['NCIT:C4878'] NCIT:C4038 Lung carcinoid tumor -CVCL_2862 ['NCIT:C4004', 'NCIT:C7889'] NCIT:C7889 Duodenal adenocarcinoma -CVCL_2765 ['NCIT:C3224', 'NCIT:C3510'] NCIT:C3224 Melanoma -CVCL_2714 ['NCIT:C4912', 'NCIT:C39851'] NCIT:C4912 Bladder carcinoma -CVCL_1888 ['NCIT:C80280', 'NCIT:C3209', 'NCIT:C8851'] NCIT:C3209 Follicular lymphoma -CVCL_1238 ['NCIT:C2946'] NCIT:C27502 Extraskeletal myxoid chondrosarcoma -CVCL_2892 ['NCIT:C27753'] NCIT:C9154 Adult acute myeloid leukemia -CVCL_1942 ['NCIT:C7700'] NCIT:C7979 Ovarian endometrioid adenocarcinoma -CVCL_1133 ['NCIT:C3224', 'NCIT:C3510'] NCIT:C3224 Melanoma -CVCL_0040 ['NCIT:C3224', 'NCIT:C3510'] NCIT:C3224 Melanoma -CVCL_1666 ['NCIT:C3224', 'NCIT:C3510'] NCIT:C3224 Melanoma -CVCL_0068 ['NCIT:C3224', 'NCIT:C3510'] NCIT:C3224 Melanoma -CVCL_0938 ['NCIT:C3510'] NCIT:C132256 Unspecified tissue -CVCL_0993 ['NCIT:C3224', 'NCIT:C3510'] NCIT:C132256 Unspecified tissue -CVCL_1033 ['NCIT:C3224', 'NCIT:C3510'] NCIT:C3224 Melanoma -CVCL_3112 ['NCIT:C7978'] NCIT:C105555 High grade ovarian serous adenocarcinoma -CVCL_1631 ['NCIT:C8644'] NCIT:C9140 Childhood B acute lymphoblastic leukemia -CVCL_3216 ['NCIT:C3211'] NCIT:C3457 B-cell non-Hodgkin lymphoma -CVCL_1638 ['NCIT:C8294', 'NCIT:C9120'] NCIT:C9120 Pancreatic ductal adenocarcinoma -CVCL_3007 ['NCIT:C3749'] NCIT:C8971 Embryonal rhabdomyosarcoma -CVCL_1274 ['NCIT:C3769'] NCIT:C7359 Endometrial adenocarcinoma -CVCL_1374 ['NCIT:C3167'] NCIT:C9140 Childhood B acute lymphoblastic leukemia -CVCL_0471 ['NCIT:C3513', 'NCIT:C7027'] NCIT:C7027 Barrett adenocarcinoma -CVCL_1219 ['NCIT:C8054', 'NCIT:C65200'] NCIT:C8054 Thyroid gland follicular carcinoma -CVCL_2447 ['NCIT:C8054', 'NCIT:C65200'] NCIT:C8054 Thyroid gland follicular carcinoma -CVCL_2295 ['NCIT:C3510'] NCIT:C3802 Amelanotic melanoma -CVCL_2520 ['NCIT:C4910', 'NCIT:C4349'] NCIT:C4910 Colon carcinoma -CVCL_2027 ['NCIT:C27694', 'NCIT:C2912'] NCIT:C27694 EBV-related Burkitt lymphoma -CVCL_1222 ['NCIT:C7954', 'NCIT:C2912'] NCIT:C7954 Adult Burkitt leukemia -CVCL_2588 ['NCIT:C4910', 'NCIT:C4349'] NCIT:C4910 Colon carcinoma -CVCL_0814 ['NCIT:C3224', 'NCIT:C3510'] NCIT:C132256 Unspecified tissue -CVCL_2514 ['NCIT:C4349', 'NCIT:C9383'] NCIT:C4349 Colon adenocarcinoma -CVCL_1614 ['NCIT:C105555', 'NCIT:C7978'] NCIT:C105555 High grade ovarian serous adenocarcinoma -CVCL_0582 ['NCIT:C65200'] NCIT:C8054 Thyroid gland follicular carcinoma -CVCL_0036 ['NCIT:C4912', 'NCIT:C39851'] NCIT:C4912 Bladder carcinoma -CVCL_2443 ['NCIT:C39851'] NCIT:C4912 Bladder carcinoma -CVCL_0878 ['NCIT:C66759', 'NCIT:C4304'] NCIT:C132256 Unspecified tissue -CVCL_1180 ['NCIT:C3792'] NCIT:C129863 Oral epithelial dysplasia -CVCL_2315 ['NCIT:C4833'] NCIT:C170774 Alveolar ridge squamous cell carcinoma -CVCL_1134 ['NCIT:C3224', 'NCIT:C3510'] NCIT:C3224 Melanoma -CVCL_2761 ['NCIT:C3211'] NCIT:C97074 Hereditary spherocytosis -CVCL_1121 ['NCIT:C35875', 'NCIT:C3512'] NCIT:C35875 Bronchogenic carcinoma -CVCL_3317 ['NCIT:C3224', 'NCIT:C3510'] NCIT:C3224 Melanoma -CVCL_1220 ['NCIT:C3224', 'NCIT:C3510'] NCIT:C3224 Melanoma -CVCL_0891 ['NCIT:C9357'] NCIT:C132256 Unspecified tissue -CVCL_1553 ['NCIT:C45665', 'NCIT:C4456'] NCIT:C45665 Pleural biphasic mesothelioma -CVCL_0950 ['NCIT:C3224', 'NCIT:C3510'] NCIT:C3224 Melanoma -CVCL_1009 NCIT:C3510 Cutaneous Melanoma -CVCL_1430 ['NCIT:C45665', 'NCIT:C4456'] NCIT:C45665 Pleural biphasic mesothelioma -CVCL_2995 ['NCIT:C9349'] NCIT:C3242 Plasma cell myeloma -CVCL_5121 ['NCIT:C4028'] NCIT:C27676 Human papillomavirus-related cervical squamous cell carcinoma -CVCL_0030 ['NCIT:C4029'] NCIT:C27677 Human papillomavirus-related endocervical adenocarcinoma -CVCL_M172 ['NCIT:C3099'] NCIT:C7955 Childhood hepatocellular carcinoma -CVCL_W086 ['NCIT:C4456'] NCIT:C7376 Pleural malignant mesothelioma -CVCL_2536 ['NCIT:C4456'] NCIT:C45662 Pleural epithelioid mesothelioma -CVCL_H669 ['NCIT:C4456'] NCIT:C7376 Pleural malignant mesothelioma -CVCL_H677 ['NCIT:C4456'] NCIT:C7376 Pleural malignant mesothelioma -CVCL_W085 ['NCIT:C4456'] NCIT:C7376 Pleural malignant mesothelioma -CVCL_W083 ['NCIT:C4456'] NCIT:C7376 Pleural malignant mesothelioma -CVCL_2671 ['NCIT:C4456'] NCIT:C45662 Pleural epithelioid mesothelioma -CVCL_W082 ['NCIT:C4456'] NCIT:C7376 Pleural malignant mesothelioma -CVCL_W084 ['NCIT:C4456'] NCIT:C7376 Pleural malignant mesothelioma -CVCL_7956 ['NCIT:C4456'] NCIT:C45662 Pleural epithelioid mesothelioma -CVCL_A533 ['NCIT:C45655'] NCIT:C45663 Pleural sarcomatoid mesothelioma -CVCL_M005 ['NCIT:C4456'] NCIT:C45665 Pleural biphasic mesothelioma -CVCL_2581 ['NCIT:C4456'] NCIT:C45662 Pleural epithelioid mesothelioma -CVCL_H668 ['NCIT:C4456'] NCIT:C7376 Pleural malignant mesothelioma -CVCL_H681 ['NCIT:C7985'] NCIT:C45662 Pleural epithelioid mesothelioma -CVCL_F504 ['NCIT:C4456'] NCIT:C45665 Pleural biphasic mesothelioma -CVCL_S993 ['NCIT:C4456'] NCIT:C7376 Pleural malignant mesothelioma -CVCL_A731 ['NCIT:C45655'] NCIT:C45663 Pleural sarcomatoid mesothelioma -CVCL_2658 ['NCIT:C4456'] NCIT:C7376 Pleural malignant mesothelioma -CVCL_8063 ['NCIT:C4833'] NCIT:C8173 Upper gingival squamous cell carcinoma -CVCL_Y285 ['NCIT:C8863'] NCIT:C4663 Splenic marginal zone lymphoma -CVCL_DH35 NCIT:C3510 Cutaneous Melanoma -CVCL_7674 ['NCIT:C4833'] NCIT:C6064 Maxillary sinus squamous cell carcinoma -CVCL_2539 ['NCIT:C8863'] NCIT:C4663 Splenic marginal zone lymphoma -CVCL_C123 ['NCIT:C8863', 'NCIT:C4341'] NCIT:C4663 Splenic marginal zone lymphoma -CVCL_1290 ['NCIT:C80280', 'NCIT:C36080'] NCIT:C36080 Diffuse large B-cell lymphoma germinal center B-cell type -CVCL_1660 ['NCIT:C80280', 'NCIT:C8851'] NCIT:C8851 Diffuse large B-cell lymphoma -CVCL_1168 ['NCIT:C80280', 'NCIT:C36080'] NCIT:C36080 Diffuse large B-cell lymphoma germinal center B-cell type -CVCL_H633 ['NCIT:C3468'] NCIT:C37193 Anaplastic large cell lymphoma, ALK-positive -CVCL_H614 ['NCIT:C3468'] NCIT:C37194 Anaplastic large cell lymphoma, ALK-negative -CVCL_2098 ['NCIT:C3468', 'NCIT:C37193'] NCIT:C37193 Anaplastic large cell lymphoma, ALK-positive -CVCL_1735 ['NCIT:C80280', 'NCIT:C36080'] NCIT:C36080 Diffuse large B-cell lymphoma germinal center B-cell type -CVCL_B228 ['NCIT:C3720'] NCIT:C37193 Anaplastic large cell lymphoma, ALK-positive -CVCL_H631 ['NCIT:C3211'] NCIT:C3467 Primary cutaneous T-cell non-Hodgkin lymphoma -CVCL_1324 ['NCIT:C3468', 'NCIT:C37193'] NCIT:C37193 Anaplastic large cell lymphoma, ALK-positive -CVCL_0538 ['NCIT:C3468', 'NCIT:C37193'] NCIT:C37193 Anaplastic large cell lymphoma, ALK-positive -CVCL_DH37 ['NCIT:C7978'] NCIT:C105555 High grade ovarian serous adenocarcinoma -CVCL_DH38 ['NCIT:C7978'] NCIT:C105555 High grade ovarian serous adenocarcinoma -CVCL_DH39 ['NCIT:C7978'] NCIT:C105555 High grade ovarian serous adenocarcinoma -CVCL_DH40 ['NCIT:C7978'] NCIT:C105555 High grade ovarian serous adenocarcinoma -CVCL_DH41 ['NCIT:C7978'] NCIT:C105555 High grade ovarian serous adenocarcinoma -CVCL_7166 ['NCIT:C3270'] NCIT:C4817 Ewing sarcoma -CVCL_1136 ['NCIT:C4017'] NCIT:C4872 Breast carcinoma -CVCL_DG69 ['NCIT:C3058'] NCIT:C4325 Giant cell glioblastoma -CVCL_1889 ['NCIT:C80280', 'NCIT:C36080'] NCIT:C36080 Diffuse large B-cell lymphoma germinal center B-cell type -CVCL_A442 ['NCIT:C80280'] NCIT:C36081 Diffuse large B-cell lymphoma activated B-cell type -CVCL_A480 ['NCIT:C3170'] NCIT:C7965 Adult acute megakaryoblastic leukemia -CVCL_8800 ['NCIT:C80280', 'NCIT:C36081'] NCIT:C36081 Diffuse large B-cell lymphoma activated B-cell type -CVCL_1879 ['NCIT:C80280'] NCIT:C8851 Diffuse large B-cell lymphoma -CVCL_1325 ['NCIT:C80280', 'NCIT:C36080'] NCIT:C36080 Diffuse large B-cell lymphoma germinal center B-cell type -CVCL_8795 ['NCIT:C80280', 'NCIT:C8851', 'NCIT:C36081'] NCIT:C36081 Diffuse large B-cell lymphoma activated B-cell type -CVCL_4213 ['NCIT:C80280'] NCIT:C36081 Diffuse large B-cell lymphoma activated B-cell type -CVCL_1881 ['NCIT:C80280'] NCIT:C36080 Diffuse large B-cell lymphoma germinal center B-cell type -CVCL_DG36 ['NCIT:C3510'] NCIT:C114828 Mucosal melanoma -CVCL_T324 ['NCIT:C3224'] NCIT:C3510 Cutaneous melanoma -CVCL_1896 ['NCIT:C80280'] NCIT:C36081 Diffuse large B-cell lymphoma activated B-cell type -CVCL_0A72 ['NCIT:C4878'] NCIT:C4450 Lung large cell carcinoma -CVCL_1885 ['NCIT:C80280', 'NCIT:C36081', 'NCIT:C8851'] NCIT:C36081 Diffuse large B-cell lymphoma activated B-cell type -CVCL_0067 ['NCIT:C3211', 'NCIT:C27694'] NCIT:C27694 EBV-related Burkitt lymphoma -CVCL_3302 ['NCIT:C80280', 'NCIT:C36080'] NCIT:C36080 Diffuse large B-cell lymphoma germinal center B-cell type -CVCL_V744 ['NCIT:C3510'] NCIT:C114828 Mucosal melanoma -CVCL_3611 ['NCIT:C80280', 'NCIT:C36080'] NCIT:C36080 Diffuse large B-cell lymphoma germinal center B-cell type -CVCL_7933 ['NCIT:C4017'] NCIT:C4872 Breast carcinoma -CVCL_A222 NCIT:C3510 Cutaneous Melanoma -CVCL_S607 ['NCIT:C27753'] NCIT:C9154 Adult acute myeloid leukemia -CVCL_2037 ['NCIT:C3247', 'NCIT:C27753'] NCIT:C3247 Myelodysplastic syndrome -CVCL_2119 ['NCIT:C8923', 'NCIT:C9154', 'NCIT:C27753'] NCIT:C9154 Adult acute myeloid leukemia -CVCL_A662 ['NCIT:C27912'] NCIT:C3247 Myelodysplastic syndrome -CVCL_0098 ['NCIT:C9154', 'NCIT:C27753'] NCIT:C9154 Adult acute myeloid leukemia -CVCL_IR87 ['NCIT:C3058', 'NCIT:C3059'] NCIT:C3058 Glioblastoma -CVCL_IS01 ['NCIT:C3058', 'NCIT:C3059'] NCIT:C3058 Glioblastoma -CVCL_IR63 ['NCIT:C3058', 'NCIT:C3059'] NCIT:C3058 Glioblastoma -CVCL_IS00 ['NCIT:C3058', 'NCIT:C3059'] NCIT:C3058 Glioblastoma -CVCL_IS02 ['NCIT:C3058', 'NCIT:C3059'] NCIT:C3058 Glioblastoma -CVCL_6809 ['NCIT:C3224', 'NCIT:C3510'] NCIT:C3224 Melanoma -CVCL_1910 ['NCIT:C3802', 'NCIT:C3510'] NCIT:C3802 Amelanotic melanoma -CVCL_0001 ['NCIT:C8923', 'NCIT:C7152'] NCIT:C7152 Erythroleukemia -CVCL_0006 ['NCIT:C9163', 'NCIT:C4861', 'NCIT:C27753'] NCIT:C9163 Childhood acute monocytic leukemia -CVCL_0007 ['NCIT:C4861', 'NCIT:C8263'] NCIT:C8263 Adult acute monocytic leukemia -CVCL_0026 ['NCIT:C8294', 'NCIT:C9120'] NCIT:C9120 Pancreatic ductal adenocarcinoma -CVCL_C434 ['NCIT:C5214'] NCIT:C132256 Unspecified tissue -CVCL_0278 ['NCIT:C4017'] NCIT:C4872 Breast carcinoma -CVCL_G209 ['NCIT:C4017'] NCIT:C4872 Breast carcinoma -CVCL_1621 ['NCIT:C4017'] NCIT:C4872 Breast carcinoma -CVCL_2756 ['NCIT:C4017'] NCIT:C4194 Invasive breast carcinoma of no special type -CVCL_0064 ['NCIT:C9163', 'NCIT:C27753'] NCIT:C9163 Childhood acute monocytic leukemia -CVCL_F645 ['NCIT:C4004'] NCIT:C4911 Gastric carcinoma -CVCL_5215 ['NCIT:C4017'] NCIT:C4872 Breast carcinoma -CVCL_5218 ['NCIT:C4017'] NCIT:C4872 Breast carcinoma -CVCL_5589 ['NCIT:C4017'] NCIT:C4194 Invasive breast carcinoma of no special type -CVCL_M891 ['NCIT:C39851'] NCIT:C4912 Bladder carcinoma -CVCL_0065 ['NCIT:C7953', 'NCIT:C3167'] NCIT:C7953 Childhood T acute lymphoblastic leukemia -CVCL_1087 ['NCIT:C3211', 'NCIT:C2912'] NCIT:C2912 Burkitt lymphoma -CVCL_AP77 NCIT:C3510 Cutaneous Melanoma -CVCL_AP95 NCIT:C3510 Cutaneous Melanoma -CVCL_0B66 NCIT:C3510 Cutaneous Melanoma -CVCL_C269 NCIT:C3510 Cutaneous Melanoma -CVCL_0B72 NCIT:C3510 Cutaneous Melanoma -CVCL_C279 NCIT:C3510 Cutaneous Melanoma -CVCL_DH08 ['NCIT:C2996'] NCIT:C8106 Ovarian dysgerminoma -CVCL_DH20 ['NCIT:C7978'] NCIT:C7550 Ovarian serous adenocarcinoma -CVCL_DH12 ['NCIT:C2855'] NCIT:C7979 Ovarian endometrioid adenocarcinoma -CVCL_DH15 ['NCIT:C7978'] NCIT:C7550 Ovarian serous adenocarcinoma -CVCL_DH11 ['NCIT:C2855'] NCIT:C7979 Ovarian endometrioid adenocarcinoma -CVCL_DH14 ['NCIT:C7978'] NCIT:C7550 Ovarian serous adenocarcinoma -CVCL_1994 ['NCIT:C105555', 'NCIT:C7978'] NCIT:C105555 High grade ovarian serous adenocarcinoma -CVCL_DH24 ['NCIT:C34448'] NCIT:C9192 Ovarian carcinosarcoma -CVCL_0152 ['NCIT:C8294', 'NCIT:C9120'] NCIT:C9120 Pancreatic ductal adenocarcinoma -CVCL_0B68 NCIT:C3510 Cutaneous Melanoma -CVCL_C273 NCIT:C3510 Cutaneous Melanoma -CVCL_AP88 NCIT:C3510 Cutaneous Melanoma -CVCL_C272 NCIT:C3510 Cutaneous Melanoma -CVCL_6802 NCIT:C3510 Cutaneous Melanoma -CVCL_DH18 ['NCIT:C7978'] NCIT:C7550 Ovarian serous adenocarcinoma -CVCL_5213 ['NCIT:C4033'] NCIT:C9385 Renal cell carcinoma -CVCL_6186 ['NCIT:C4033'] NCIT:C9385 Renal cell carcinoma -CVCL_6192 ['NCIT:C4033'] NCIT:C9385 Renal cell carcinoma -CVCL_V606 ['NCIT:C4033'] NCIT:C4912 Bladder carcinoma -CVCL_V612 ['NCIT:C4033', 'NCIT:C9385'] NCIT:C4033 Clear cell renal cell carcinoma -CVCL_0237 ['NCIT:C8294', 'NCIT:C9120'] NCIT:C9120 Pancreatic ductal adenocarcinoma -CVCL_DH09 ['NCIT:C2855'] NCIT:C7979 Ovarian endometrioid adenocarcinoma -CVCL_DH17 ['NCIT:C7978'] NCIT:C7550 Ovarian serous adenocarcinoma -CVCL_0202 ['NCIT:C105555', 'NCIT:C7978'] NCIT:C105555 High grade ovarian serous adenocarcinoma -CVCL_AX39 ['NCIT:C7700'] NCIT:C4817 Ewing sarcoma -CVCL_0186 ['NCIT:C8294', 'NCIT:C9120'] NCIT:C9120 Pancreatic ductal adenocarcinoma -CVCL_0235 ['NCIT:C4033', 'NCIT:C6975'] NCIT:C6975 Papillary renal cell carcinoma -CVCL_0425 ['NCIT:C3174'] NCIT:C9110 Blast phase chronic myelogenous leukemia, BCR-ABL1 positive -CVCL_0428 ['NCIT:C8294', 'NCIT:C9120'] NCIT:C9120 Pancreatic ductal adenocarcinoma -CVCL_4012 ['NCIT:C8294'] NCIT:C9120 Pancreatic ductal adenocarcinoma -CVCL_3172 ['NCIT:C8294', 'NCIT:C9120'] NCIT:C9120 Pancreatic ductal adenocarcinoma -CVCL_0455 ['NCIT:C45544', 'NCIT:C2926'] NCIT:C45544 Lung mucoepidermoid carcinoma -CVCL_0480 ['NCIT:C8294', 'NCIT:C9120'] NCIT:C9120 Pancreatic ductal adenocarcinoma -CVCL_0599 ['NCIT:C3224', 'NCIT:C3510'] NCIT:C3224 Melanoma -CVCL_0619 ['NCIT:C4017'] NCIT:C7950 Invasive breast lobular carcinoma -CVCL_1119 ['NCIT:C8294', 'NCIT:C9120'] NCIT:C2975 Cystic fibrosis -CVCL_5707 ['NCIT:C80326'] NCIT:C9140 Childhood B acute lymphoblastic leukemia -CVCL_1179 ['NCIT:C8851', 'NCIT:C36080'] NCIT:C36080 Diffuse large B-cell lymphoma germinal center B-cell type -CVCL_2206 ['NCIT:C80280', 'NCIT:C8851', 'NCIT:C36080'] NCIT:C36080 Diffuse large B-cell lymphoma germinal center B-cell type -CVCL_DH43 ['NCIT:C3211'] NCIT:C8851 Diffuse large B-cell lymphoma -CVCL_X904 ['NCIT:C4033'] NCIT:C9385 Renal cell carcinoma -CVCL_4019 ['NCIT:C4033'] NCIT:C9385 Renal cell carcinoma -CVCL_6189 ['NCIT:C4033'] NCIT:C9385 Renal cell carcinoma -CVCL_6198 ['NCIT:C4033'] NCIT:C9385 Renal cell carcinoma -CVCL_9549 ['NCIT:C4033'] NCIT:C9385 Renal cell carcinoma -CVCL_1887 ['NCIT:C8851'] NCIT:C9143 Adult B acute lymphoblastic leukemia -CVCL_1157 ['NCIT:C3222'] NCIT:C129445 Medulloblastoma, non-WNT/non-SHH, group 3 -CVCL_1425 ['NCIT:C4861', 'NCIT:C8263'] NCIT:C8263 Adult acute monocytic leukemia -CVCL_1695 ['NCIT:C4827', 'NCIT:C3270'] NCIT:C4827 Adrenal gland neuroblastoma -CVCL_1609 ['NCIT:C8263', 'NCIT:C27753'] NCIT:C8263 Adult acute monocytic leukemia -CVCL_1619 ['NCIT:C8923', 'NCIT:C9154'] NCIT:C9154 Adult acute myeloid leukemia -CVCL_1639 ['NCIT:C8294', 'NCIT:C9120'] NCIT:C9120 Pancreatic ductal adenocarcinoma -CVCL_1793 ['NCIT:C3209'] NCIT:C36080 Diffuse large B-cell lymphoma germinal center B-cell type -CVCL_2973 ['NCIT:C8644'] NCIT:C7954 Adult Burkitt leukemia -CVCL_1897 ['NCIT:C9280'] NCIT:C8851 Diffuse large B-cell lymphoma -CVCL_1878 ['NCIT:C80280', 'NCIT:C36080'] NCIT:C36080 Diffuse large B-cell lymphoma germinal center B-cell type -CVCL_1880 ['NCIT:C80280'] NCIT:C8851 Diffuse large B-cell lymphoma -CVCL_2010 ['NCIT:C6261'] NCIT:C40439 Ovarian small cell carcinoma, hypercalcemic type -CVCL_0539 ['NCIT:C80280', 'NCIT:C36080'] NCIT:C36080 Diffuse large B-cell lymphoma germinal center B-cell type -CVCL_0858 ['NCIT:C8294'] NCIT:C3262 Neoplasm -CVCL_M574 ['NCIT:C3211'] NCIT:C5051 AIDS-related non-Hodgkin lymphoma -CVCL_M653 ['NCIT:C2912'] NCIT:C27694 EBV-related Burkitt lymphoma -CVCL_E219 ['NCIT:C2912'] NCIT:C27694 EBV-related Burkitt lymphoma -CVCL_M646 ['NCIT:C2912'] NCIT:C27694 EBV-related Burkitt lymphoma -CVCL_M710 ['NCIT:C80280', 'NCIT:C8851'] NCIT:C8851 Diffuse large B-cell lymphoma -CVCL_1822 ['NCIT:C9280'] NCIT:C8851 Diffuse large B-cell lymphoma -CVCL_1819 ['NCIT:C80280'] NCIT:C8851 Diffuse large B-cell lymphoma -CVCL_8803 ['NCIT:C80280', 'NCIT:C8851'] NCIT:C36080 Diffuse large B-cell lymphoma germinal center B-cell type -CVCL_1165 ['NCIT:C3222'] NCIT:C129445 Medulloblastoma, non-WNT/non-SHH, group 3 -CVCL_1418 ['NCIT:C9154', 'NCIT:C27753'] NCIT:C9154 Adult acute myeloid leukemia -CVCL_1714 ['NCIT:C3167', 'NCIT:C7210'] NCIT:C7210 Childhood T lymphoblastic lymphoma -CVCL_1883 ['NCIT:C8851'] NCIT:C36080 Diffuse large B-cell lymphoma germinal center B-cell type -CVCL_1844 ['NCIT:C7464', 'NCIT:C9154'] NCIT:C9154 Adult acute myeloid leukemia -CVCL_2421 ['NCIT:C7978'] NCIT:C105555 High grade ovarian serous adenocarcinoma -CVCL_3326 ['NCIT:C80280', 'NCIT:C36080'] NCIT:C36080 Diffuse large B-cell lymphoma germinal center B-cell type -CVCL_4042 ['NCIT:C4017'] NCIT:C4194 Invasive breast carcinoma of no special type -CVCL_4380 ['NCIT:C80280'] NCIT:C8851 Diffuse large B-cell lymphoma -CVCL_4995 ['NCIT:C7978'] NCIT:C105555 High grade ovarian serous adenocarcinoma -CVCL_5400 ['NCIT:C4349'] NCIT:C4910 Colon carcinoma -CVCL_5412 ['NCIT:C4349'] NCIT:C9383 Rectal adenocarcinoma -CVCL_6073 NCIT:C3510 Cutaneous Melanoma -CVCL_6076 NCIT:C3510 Cutaneous Melanoma -CVCL_6080 NCIT:C3510 Cutaneous Melanoma -CVCL_6093 NCIT:C3510 Cutaneous Melanoma -CVCL_6102 NCIT:C3510 Cutaneous Melanoma -CVCL_6104 NCIT:C3510 Cutaneous Melanoma -CVCL_6109 NCIT:C3510 Cutaneous Melanoma -CVCL_6121 NCIT:C3510 Cutaneous Melanoma -CVCL_C529 ['NCIT:C3871'] NCIT:C132256 Unspecified tissue -CVCL_7041 ['NCIT:C27243'] NCIT:C3868 Gastrointestinal stromal tumor -CVCL_7043 ['NCIT:C27243'] NCIT:C3868 Gastrointestinal stromal tumor -CVCL_R580 ['NCIT:C4833'] NCIT:C132256 Unspecified tissue -CVCL_8801 ['NCIT:C80280'] NCIT:C8851 Diffuse large B-cell lymphoma -CVCL_9990 ['NCIT:C9145'] NCIT:C4023 Small cell osteosarcoma -CVCL_A183 NCIT:C3510 Cutaneous Melanoma -CVCL_N787 NCIT:C3510 Cutaneous Melanoma -CVCL_S666 NCIT:C3510 Cutaneous Melanoma -CVCL_S669 NCIT:C3510 Cutaneous Melanoma -CVCL_C288 NCIT:C3510 Cutaneous Melanoma -CVCL_A344 ['NCIT:C4286'] NCIT:C3877 Testicular teratoma -CVCL_D702 NCIT:C3510 Cutaneous Melanoma -CVCL_D880 ['NCIT:C4277'] NCIT:C6534 Monophasic synovial sarcoma -CVCL_DF76 ['NCIT:C4028'] NCIT:C27677 Human papillomavirus-related endocervical adenocarcinoma -CVCL_DF77 ['NCIT:C4028'] NCIT:C27677 Human papillomavirus-related endocervical adenocarcinoma -CVCL_DF79 ['NCIT:C4519'] NCIT:C40212 Cervical adenosquamous carcinoma, glassy cell variant -CVCL_DF80 ['NCIT:C4519'] NCIT:C40212 Cervical adenosquamous carcinoma, glassy cell variant -CVCL_DG01 ['NCIT:C4349'] NCIT:C5105 Colorectal adenocarcinoma -CVCL_DH78 ['NCIT:C4908'] NCIT:C40093 Ovarian squamous cell carcinoma -CVCL_DI27 NCIT:C3510 Cutaneous Melanoma -CVCL_DI44 NCIT:C3510 Cutaneous Melanoma -CVCL_DI46 NCIT:C3510 Cutaneous Melanoma -CVCL_DI48 NCIT:C3510 Cutaneous Melanoma -CVCL_F641 ['NCIT:C8294'] NCIT:C4349 Colon adenocarcinoma -CVCL_2207 ['NCIT:C80280', 'NCIT:C36080'] NCIT:C36080 Diffuse large B-cell lymphoma germinal center B-cell type -CVCL_2291 ['NCIT:C105555', 'NCIT:C7978'] NCIT:C105555 High grade ovarian serous adenocarcinoma -CVCL_2419 ['NCIT:C105555', 'NCIT:C7978'] NCIT:C105555 High grade ovarian serous adenocarcinoma -CVCL_2425 ['NCIT:C4908'] NCIT:C5243 Ovarian mucinous adenocarcinoma -CVCL_L791 ['NCIT:C7985'] NCIT:C45662 Pleural epithelioid mesothelioma -CVCL_S807 NCIT:C3510 Cutaneous Melanoma -CVCL_UE17 ['NCIT:C2919'] NCIT:C39903 Prostate adenocarcinoma with neuroendocrine differentiation -CVCL_W527 ['NCIT:C3359'] NCIT:C8971 Embryonal rhabdomyosarcoma -CVCL_4993 ['NCIT:C7978'] NCIT:C105555 High grade ovarian serous adenocarcinoma -CVCL_5393 ['NCIT:C4349'] NCIT:C5543 Cecum adenocarcinoma -CVCL_5401 ['NCIT:C4349'] NCIT:C4910 Colon carcinoma -CVCL_5408 ['NCIT:C4349'] NCIT:C2955 Colorectal carcinoma -CVCL_6021 NCIT:C3510 Cutaneous Melanoma -CVCL_6026 NCIT:C3510 Cutaneous Melanoma -CVCL_6030 NCIT:C3510 Cutaneous Melanoma -CVCL_6070 NCIT:C3510 Cutaneous Melanoma -CVCL_6074 NCIT:C3510 Cutaneous Melanoma -CVCL_6105 NCIT:C3510 Cutaneous Melanoma -CVCL_6111 NCIT:C3510 Cutaneous Melanoma -CVCL_6122 NCIT:C3510 Cutaneous Melanoma -CVCL_C528 ['NCIT:C3871'] NCIT:C132256 Unspecified tissue -CVCL_7040 ['NCIT:C27243'] NCIT:C3868 Gastrointestinal stromal tumor -CVCL_7042 ['NCIT:C27243'] NCIT:C3868 Gastrointestinal stromal tumor -CVCL_7044 ['NCIT:C27243'] NCIT:C3868 Gastrointestinal stromal tumor -CVCL_7165 ['NCIT:C8294'] NCIT:C9120 Pancreatic ductal adenocarcinoma -CVCL_7820 ['NCIT:C4833'] NCIT:C4041 Floor of mouth squamous cell carcinoma -CVCL_8719 ['NCIT:C4277'] NCIT:C6534 Monophasic synovial sarcoma -CVCL_A124 NCIT:C3510 Cutaneous Melanoma -CVCL_N786 NCIT:C3510 Cutaneous Melanoma -CVCL_C292 NCIT:C3510 Cutaneous Melanoma -CVCL_S667 NCIT:C3510 Cutaneous Melanoma -CVCL_S670 NCIT:C3510 Cutaneous Melanoma -CVCL_A189 NCIT:C3510 Cutaneous Melanoma -CVCL_L280 ['NCIT:C5027'] NCIT:C3877 Testicular teratoma -CVCL_C827 ['NCIT:C8294'] NCIT:C9120 Pancreatic ductal adenocarcinoma -CVCL_DF87 ['NCIT:C7978'] NCIT:C7550 Ovarian serous adenocarcinoma -CVCL_DH79 ['NCIT:C3769'] NCIT:C7979 Ovarian endometrioid adenocarcinoma -CVCL_DH81 ['NCIT:C3222'] NCIT:C129442 Medulloblastoma, SHH-activated, TP53-mutant -CVCL_DI43 NCIT:C3510 Cutaneous Melanoma -CVCL_DI45 NCIT:C3510 Cutaneous Melanoma -CVCL_DI47 NCIT:C3510 Cutaneous Melanoma -CVCL_L296 NCIT:C132256 Unspecified tissue -CVCL_L297 NCIT:C132256 Unspecified tissue -CVCL_M821 ['NCIT:C3194'] NCIT:C3705 Pleomorphic liposarcoma -CVCL_U957 ['NCIT:C4017'] NCIT:C5214 Breast adenocarcinoma -CVCL_7772 ['NCIT:C34447'] NCIT:C4648 Tongue squamous cell carcinoma -CVCL_1851 ['NCIT:C80347'] NCIT:C9140 Childhood B acute lymphoblastic leukemia -CVCL_0337 ['NCIT:C9265'] NCIT:C3366 Sezary syndrome -CVCL_3806 ['NCIT:C9357'] NCIT:C132256 Unspecified tissue -CVCL_0590 ['NCIT:C80347'] NCIT:C9140 Childhood B acute lymphoblastic leukemia -CVCL_1084 ['NCIT:C7716'] NCIT:C7355 Renal pelvis urothelial carcinoma -CVCL_0216 ['NCIT:C43223'] NCIT:C2993 Down syndrome -CVCL_2804 ['NCIT:C43223'] NCIT:C2993 Down syndrome -CVCL_1194 ['NCIT:C3812'] NCIT:C132256 Unspecified tissue - diff --git a/rsrc/classificationTrees/icdom/numbered_hierarchies.tsv b/rsrc/classificationTrees/icdom/numbered_hierarchies.tsv deleted file mode 100644 index 758a87c6..00000000 --- a/rsrc/classificationTrees/icdom/numbered_hierarchies.tsv +++ /dev/null @@ -1,1135 +0,0 @@ -pgx:icdom-800 Neoplasms, NOS 0 1 -pgx:icdom-80000 Neoplasm, benign 2 2 -pgx:icdom-80001 Neoplasm, uncertain whether benign or malignant 2 3 -pgx:icdom-80003 Neoplasm, malignant 2 4 -pgx:icdom-80006 Neoplasm, metastatic 2 5 -pgx:icdom-80009 Neoplasm, malignant, uncertain whether primary or metastatic 2 6 -pgx:icdom-80010 Tumor cells, benign 2 7 -pgx:icdom-80011 Tumor cells, uncertain whether benign or malignant 2 8 -pgx:icdom-80013 Tumor cells, malignant 2 9 -pgx:icdom-80023 Malignant tumor, small cell type 2 10 -pgx:icdom-80033 Malignant tumor, giant cell type 2 11 -pgx:icdom-80043 Malignant tumor, spindle cell type 2 12 -pgx:icdom-80050 Clear cell tumor, NOS 2 13 -pgx:icdom-80053 Malignant tumor, clear cell type 2 14 -pgx:icdom-801-804 Epithelial neoplasms, NOS 0 15 -pgx:icdom-80100 Epithelial tumor, benign 2 16 -pgx:icdom-80102 Carcinoma in situ, NOS 2 17 -pgx:icdom-80103 Carcinoma, NOS 2 18 -pgx:icdom-80106 Carcinoma, metastatic, NOS 2 19 -pgx:icdom-80109 Carcinomatosis 2 20 -pgx:icdom-80110 Epithelioma, benign 2 21 -pgx:icdom-80113 Epithelioma, malignant 2 22 -pgx:icdom-80123 Large cell carcinoma, NOS 2 23 -pgx:icdom-80133 Large cell neuroendocrine carcinoma 2 24 -pgx:icdom-80143 Large cell carcinoma with rhabdoid phenotype 2 25 -pgx:icdom-80153 Glassy cell carcinoma 2 26 -pgx:icdom-80203 Carcinoma, undifferentiated, NOS 2 27 -pgx:icdom-80213 Carcinoma, anaplastic, NOS 2 28 -pgx:icdom-80223 Pleomorphic carcinoma 2 29 -pgx:icdom-80303 Giant cell and spindle cell carcinoma 2 30 -pgx:icdom-80313 Giant cell carcinoma 2 31 -pgx:icdom-80323 Spindle cell carcinoma, NOS 2 32 -pgx:icdom-80333 Pseudosarcomatous carcinoma 2 33 -pgx:icdom-80343 Polygonal cell carcinoma 2 34 -pgx:icdom-80353 Carcinoma with osteoclast-like giant cells 2 35 -pgx:icdom-80400 Tumorlet, benign 2 36 -pgx:icdom-80401 Tumorlet, NOS 2 37 -pgx:icdom-80413 Small cell carcinoma, NOS 2 38 -pgx:icdom-80423 Oat cell carcinoma 2 39 -pgx:icdom-80433 Small cell carcinoma, fusiform cell 2 40 -pgx:icdom-80443 Small cell carcinoma, intermediate cell 2 41 -pgx:icdom-80453 Combined small cell carcinoma 2 42 -pgx:icdom-80463 Non-small cell carcinoma 2 43 -pgx:icdom-805-808 Squamous cell neoplasms 0 44 -pgx:icdom-80500 Papilloma, NOS 2 45 -pgx:icdom-80502 Papillary carcinoma in situ 2 46 -pgx:icdom-80503 Papillary carcinoma, NOS 2 47 -pgx:icdom-80510 Verrucous papilloma 2 48 -pgx:icdom-80513 Verrucous carcinoma, NOS 2 49 -pgx:icdom-80520 Squamous cell papilloma, NOS 2 50 -pgx:icdom-80522 Papillary squamous cell carcinoma, non-invasive 2 51 -pgx:icdom-80523 Papillary squamous cell carcinoma 2 52 -pgx:icdom-80530 Squamous cell papilloma, inverted 2 53 -pgx:icdom-80600 Squamous papillomatosis 2 54 -pgx:icdom-80702 Squamous cell carcinoma in situ, NOS 2 55 -pgx:icdom-80703 Squamous cell carcinoma, NOS 2 56 -pgx:icdom-80706 Squamous cell carcinoma, metastatic, NOS 2 57 -pgx:icdom-80713 Squamous cell carcinoma, keratinizing, NOS 2 58 -pgx:icdom-80723 Squamous cell carcinoma, large cell, nonkeratinizing, NOS 2 59 -pgx:icdom-80733 Squamous cell carcinoma, small cell, nonkeratinizing 2 60 -pgx:icdom-80743 Squamous cell carcinoma, spindle cell 2 61 -pgx:icdom-80753 Squamous cell carcinoma, adenoid 2 62 -pgx:icdom-80762 Squamous cell carcinoma in situ with questionable stromal invasion 2 63 -pgx:icdom-80763 Squamous cell carcinoma, microinvasive 2 64 -pgx:icdom-80770 Squamous intraepithelial neoplasia, low grade 2 65 -pgx:icdom-80772 Squamous intraepithelial neoplasia, high grade 2 66 -pgx:icdom-80783 Squamous cell carcinoma with horn formation 2 67 -pgx:icdom-80802 Queyrat erythroplasia 2 68 -pgx:icdom-80812 Bowen disease 2 69 -pgx:icdom-80823 Lymphoepithelial carcinoma 2 70 -pgx:icdom-80833 Basaloid squamous cell carcinoma 2 71 -pgx:icdom-80843 Squamous cell carcinoma, clear cell type 2 72 -pgx:icdom-809-811 Basal cell neoplasms 0 73 -pgx:icdom-80901 Basal cell tumor 2 74 -pgx:icdom-80903 Basal cell carcinoma, NOS 2 75 -pgx:icdom-80913 Multifocal superficial basal cell carcinoma 2 76 -pgx:icdom-80923 Infiltrating basal cell carcinoma, NOS 2 77 -pgx:icdom-80933 Basal cell carcinoma, fibroepithelial 2 78 -pgx:icdom-80943 Basosquamous carcinoma 2 79 -pgx:icdom-80953 Metatypical carcinoma 2 80 -pgx:icdom-80960 Intraepidermal epithelioma of Jadassohn 2 81 -pgx:icdom-80973 Basal cell carcinoma, nodular 2 82 -pgx:icdom-80983 Adenoid basal carcinoma 2 83 -pgx:icdom-81000 Trichoepithelioma 2 84 -pgx:icdom-81010 Trichofolliculoma 2 85 -pgx:icdom-81020 Trichilemmoma 2 86 -pgx:icdom-81023 Trichilemmocarcinoma 2 87 -pgx:icdom-81030 Pilar tumor 2 88 -pgx:icdom-81100 Pilomatrixoma, NOS 2 89 -pgx:icdom-81103 Pilomatrix carcinoma 2 90 -pgx:icdom-812-813 Transitional cell papillomas and carcinomas 0 91 -pgx:icdom-81200 Transitional cell papilloma, benign 2 92 -pgx:icdom-81201 Urothelial papilloma, NOS 2 93 -pgx:icdom-81202 Transitional cell carcinoma in situ 2 94 -pgx:icdom-81203 Transitional cell carcinoma, NOS 2 95 -pgx:icdom-81210 Schneiderian papilloma, NOS 2 96 -pgx:icdom-81211 Transitional cell papilloma, inverted, NOS 2 97 -pgx:icdom-81213 Schneiderian carcinoma 2 98 -pgx:icdom-81223 Transitional cell carcinoma, spindle cell 2 99 -pgx:icdom-81233 Basaloid carcinoma 2 100 -pgx:icdom-81243 Cloacogenic carcinoma 2 101 -pgx:icdom-81301 Papillary transitional cell neoplasm of low malignant potential 2 102 -pgx:icdom-81302 Papillary transitional cell carcinoma, non-invasive 2 103 -pgx:icdom-81303 Papillary transitional cell carcinoma 2 104 -pgx:icdom-81313 Transitional cell carcinoma, micropapillary 2 105 -pgx:icdom-814-838 Adenomas and adenocarcinomas 0 106 -pgx:icdom-81400 Adenoma, NOS 2 107 -pgx:icdom-81401 Atypical adenoma 2 108 -pgx:icdom-81402 Adenocarcinoma in situ, NOS 2 109 -pgx:icdom-81403 Adenocarcinoma, NOS 2 110 -pgx:icdom-81406 Adenocarcinoma, metastatic, NOS 2 111 -pgx:icdom-81413 Scirrhous adenocarcinoma 2 112 -pgx:icdom-81423 Linitis plastica 2 113 -pgx:icdom-81433 Superficial spreading adenocarcinoma 2 114 -pgx:icdom-81443 Adenocarcinoma, intestinal type 2 115 -pgx:icdom-81453 Carcinoma, diffuse type 2 116 -pgx:icdom-81460 Monomorphic adenoma 2 117 -pgx:icdom-81470 Basal cell adenoma 2 118 -pgx:icdom-81473 Basal cell adenocarcinoma 2 119 -pgx:icdom-81480 Glandular intraepithelial neoplasia, low grade 2 120 -pgx:icdom-81482 Glandular intraepithelial neoplasia, high grade 2 121 -pgx:icdom-81490 Canalicular adenoma 2 122 -pgx:icdom-81500 Pancreatic endocrine tumor, benign 2 123 -pgx:icdom-81501 Pancreatic endocrine tumor, NOS 2 124 -pgx:icdom-81503 Pancreatic endocrine tumor, malignant 2 125 -pgx:icdom-81510 Insulinoma, NOS 2 126 -pgx:icdom-81513 Insulinoma, malignant 2 127 -pgx:icdom-81521 Glucagonoma, NOS 2 128 -pgx:icdom-81523 Glucagonoma, malignant 2 129 -pgx:icdom-81531 Gastrinoma, NOS 2 130 -pgx:icdom-81533 Gastrinoma, malignant 2 131 -pgx:icdom-81543 Mixed pancreatic endocrine and exocrine tumor, malignant 2 132 -pgx:icdom-81551 Vipoma, NOS 2 133 -pgx:icdom-81553 Vipoma, malignant 2 134 -pgx:icdom-81561 Somatostatinoma, NOS 2 135 -pgx:icdom-81563 Somatostatinoma, malignant 2 136 -pgx:icdom-81581 Endocrine tumor, functioning, NOS 2 137 -pgx:icdom-81600 Bile duct adenoma 2 138 -pgx:icdom-81603 Cholangiocarcinoma 2 139 -pgx:icdom-81610 Bile duct cystadenoma 2 140 -pgx:icdom-81613 Bile duct cystadenocarcinoma 2 141 -pgx:icdom-81623 Klatskin tumor 2 142 -pgx:icdom-81630 Pancreatobiliary neoplasm, non-invasive 2 143 -pgx:icdom-81632 Papillary neoplasm, pancreatobiliary-type, with high grade intraepithelial neoplasia 2 144 -pgx:icdom-81633 Pancreatobiliary-type carcinoma 2 145 -pgx:icdom-81700 Liver cell adenoma 2 146 -pgx:icdom-81703 Hepatocellular carcinoma, NOS 2 147 -pgx:icdom-81713 Hepatocellular carcinoma, fibrolamellar 2 148 -pgx:icdom-81723 Hepatocellular carcinoma, scirrhous 2 149 -pgx:icdom-81733 Hepatocellular carcinoma, spindle cell variant 2 150 -pgx:icdom-81743 Hepatocellular carcinoma, clear cell type 2 151 -pgx:icdom-81753 Hepatocellular carcinoma, pleomorphic type 2 152 -pgx:icdom-81803 Combined hepatocellular carcinoma and cholangiocarcinoma 2 153 -pgx:icdom-81900 Trabecular adenoma 2 154 -pgx:icdom-81903 Trabecular adenocarcinoma 2 155 -pgx:icdom-81910 Embryonal adenoma 2 156 -pgx:icdom-82000 Eccrine dermal cylindroma 2 157 -pgx:icdom-82003 Adenoid cystic carcinoma 2 158 -pgx:icdom-82012 Cribriform carcinoma in situ 2 159 -pgx:icdom-82013 Cribriform carcinoma, NOS 2 160 -pgx:icdom-82020 Microcystic adenoma 2 161 -pgx:icdom-82040 Lactating adenoma 2 162 -pgx:icdom-82100 Adenomatous polyp, NOS 2 163 -pgx:icdom-82102 Adenocarcinoma in situ in adenomatous polyp 2 164 -pgx:icdom-82103 Adenocarcinoma in adenomatous polyp 2 165 -pgx:icdom-82110 Tubular adenoma, NOS 2 166 -pgx:icdom-82113 Tubular adenocarcinoma 2 167 -pgx:icdom-82120 Flat adenoma 2 168 -pgx:icdom-82130 Serrated adenoma 2 169 -pgx:icdom-82133 Serrated adenocarcinoma 2 170 -pgx:icdom-82143 Parietal cell carcinoma 2 171 -pgx:icdom-82153 Adenocarcinoma of anal glands 2 172 -pgx:icdom-82200 Adenomatous polyposis coli 2 173 -pgx:icdom-82203 Adenocarcinoma in adenomatous polyposis coli 2 174 -pgx:icdom-82210 Multiple adenomatous polyps 2 175 -pgx:icdom-82213 Adenocarcinoma in multiple adenomatous polyps 2 176 -pgx:icdom-82302 Ductal carcinoma in situ, solid type 2 177 -pgx:icdom-82303 Solid carcinoma, NOS 2 178 -pgx:icdom-82313 Carcinoma simplex 2 179 -pgx:icdom-82401 Carcinoid tumor of uncertain malignant potential 2 180 -pgx:icdom-82403 Carcinoid tumor, NOS 2 181 -pgx:icdom-82413 Enterochromaffin cell carcinoid 2 182 -pgx:icdom-82421 Enterochromaffin-like cell carcinoid, NOS 2 183 -pgx:icdom-82423 Enterochromaffin-like cell tumor, malignant 2 184 -pgx:icdom-82433 Goblet cell carcinoid 2 185 -pgx:icdom-82443 Mixed adenoneuroendocrine carcinoma 2 186 -pgx:icdom-82451 Tubular carcinoid 2 187 -pgx:icdom-82453 Adenocarcinoid tumor 2 188 -pgx:icdom-82463 Neuroendocrine carcinoma, NOS 2 189 -pgx:icdom-82473 Merkel cell carcinoma 2 190 -pgx:icdom-82481 Apudoma 2 191 -pgx:icdom-82493 Atypical carcinoid tumor 2 192 -pgx:icdom-82501 Pulmonary adenomatosis 2 193 -pgx:icdom-82503 Bronchiolo-alveolar adenocarcinoma, NOS 2 194 -pgx:icdom-82510 Alveolar adenoma 2 195 -pgx:icdom-82513 Alveolar adenocarcinoma 2 196 -pgx:icdom-82523 Bronchiolo-alveolar carcinoma, non- mucinous 2 197 -pgx:icdom-82533 Bronchiolo-alveolar carcinoma, mucinous 2 198 -pgx:icdom-82543 Bronchiolo-alveolar carcinoma, mixed mucinous and non-mucinous 2 199 -pgx:icdom-82553 Adenocarcinoma with mixed subtypes 2 200 -pgx:icdom-82600 Papillary adenoma, NOS 2 201 -pgx:icdom-82603 Papillary adenocarcinoma, NOS 2 202 -pgx:icdom-82610 Villous adenoma, NOS 2 203 -pgx:icdom-82612 Adenocarcinoma in situ in villous adenoma 2 204 -pgx:icdom-82613 Adenocarcinoma in villous adenoma 2 205 -pgx:icdom-82623 Villous adenocarcinoma 2 206 -pgx:icdom-82630 Tubulovillous adenoma, NOS 2 207 -pgx:icdom-82632 Adenocarcinoma in situ in tubulovillous adenoma 2 208 -pgx:icdom-82633 Adenocarcinoma in tubulovillous adenoma 2 209 -pgx:icdom-82640 Papillomatosis, glandular 2 210 -pgx:icdom-82653 Micropapillary carcinoma, NOS 2 211 -pgx:icdom-82700 Chromophobe adenoma 2 212 -pgx:icdom-82703 Chromophobe carcinoma 2 213 -pgx:icdom-82710 Prolactinoma 2 214 -pgx:icdom-82720 Pituitary adenoma, NOS 2 215 -pgx:icdom-82723 Pituitary carcinoma, NOS 2 216 -pgx:icdom-82800 Acidophil adenoma 2 217 -pgx:icdom-82803 Acidophil carcinoma 2 218 -pgx:icdom-82810 Mixed acidophil-basophil adenoma 2 219 -pgx:icdom-82813 Mixed acidophil-basophil carcinoma 2 220 -pgx:icdom-82900 Oxyphilic adenoma 2 221 -pgx:icdom-82903 Oxyphilic adenocarcinoma 2 222 -pgx:icdom-83000 Basophil adenoma 2 223 -pgx:icdom-83003 Basophil carcinoma 2 224 -pgx:icdom-83100 Clear cell adenoma 2 225 -pgx:icdom-83103 Clear cell adenocarcinoma, NOS 2 226 -pgx:icdom-83111 Hypernephroid tumor 2 227 -pgx:icdom-83123 Renal cell carcinoma, NOS 2 228 -pgx:icdom-83130 Clear cell adenofibroma 2 229 -pgx:icdom-83131 Clear cell adenofibroma of borderline malignancy 2 230 -pgx:icdom-83133 Clear cell adenocarcinofibroma 2 231 -pgx:icdom-83143 Lipid-rich carcinoma 2 232 -pgx:icdom-83153 Glycogen-rich carcinoma 2 233 -pgx:icdom-83163 Cyst-associated renal cell carcinoma 2 234 -pgx:icdom-83173 Renal cell carcinoma, chromophobe type 2 235 -pgx:icdom-83183 Renal cell carcinoma, sarcomatoid 2 236 -pgx:icdom-83193 Collecting duct carcinoma 2 237 -pgx:icdom-83203 Granular cell carcinoma 2 238 -pgx:icdom-83210 Chief cell adenoma 2 239 -pgx:icdom-83220 Water-clear cell adenoma 2 240 -pgx:icdom-83223 Water-clear cell adenocarcinoma 2 241 -pgx:icdom-83230 Mixed cell adenoma 2 242 -pgx:icdom-83233 Mixed cell adenocarcinoma 2 243 -pgx:icdom-83240 Lipoadenoma 2 244 -pgx:icdom-83250 Metanephric adenoma 2 245 -pgx:icdom-83300 Follicular adenoma 2 246 -pgx:icdom-83301 Atypical follicular adenoma 2 247 -pgx:icdom-83303 Follicular adenocarcinoma, NOS 2 248 -pgx:icdom-83313 Follicular adenocarcinoma, well differentiated 2 249 -pgx:icdom-83323 Follicular adenocarcinoma, trabecular 2 250 -pgx:icdom-83330 Microfollicular adenoma, NOS 2 251 -pgx:icdom-83333 Fetal adenocarcinoma 2 252 -pgx:icdom-83340 Macrofollicular adenoma 2 253 -pgx:icdom-83353 Follicular carcinoma, minimally invasive 2 254 -pgx:icdom-83360 Hyalinizing trabecular adenoma 2 255 -pgx:icdom-83373 Insular carcinoma 2 256 -pgx:icdom-83403 Papillary carcinoma, follicular variant 2 257 -pgx:icdom-83413 Papillary microcarcinoma 2 258 -pgx:icdom-83423 Papillary carcinoma, oxyphilic cell 2 259 -pgx:icdom-83433 Papillary carcinoma, encapsulated 2 260 -pgx:icdom-83443 Papillary carcinoma, columnar cell 2 261 -pgx:icdom-83453 Medullary carcinoma with amyloid stroma 2 262 -pgx:icdom-83463 Mixed medullary-follicular carcinoma 2 263 -pgx:icdom-83473 Mixed medullary-papillary carcinoma 2 264 -pgx:icdom-83503 Nonencapsulated sclerosing carcinoma 2 265 -pgx:icdom-83601 Multiple endocrine adenomas 2 266 -pgx:icdom-83610 Juxtaglomerular tumor 2 267 -pgx:icdom-83700 Adrenal cortical adenoma, NOS 2 268 -pgx:icdom-83703 Adrenal cortical carcinoma 2 269 -pgx:icdom-83710 Adrenal cortical adenoma, compact cell 2 270 -pgx:icdom-83720 Adrenal cortical adenoma, pigmented 2 271 -pgx:icdom-83730 Adrenal cortical adenoma, clear cell 2 272 -pgx:icdom-83740 Adrenal cortical adenoma, glomerulosa cell 2 273 -pgx:icdom-83750 Adrenal cortical adenoma, mixed cell 2 274 -pgx:icdom-83800 Endometrioid adenoma, NOS 2 275 -pgx:icdom-83801 Endometrioid adenoma, borderline malignancy 2 276 -pgx:icdom-83803 Endometrioid adenocarcinoma, NOS 2 277 -pgx:icdom-83810 Endometrioid adenofibroma, NOS 2 278 -pgx:icdom-83811 Endometrioid adenofibroma, borderline malignancy 2 279 -pgx:icdom-83813 Endometrioid adenofibroma, malignant 2 280 -pgx:icdom-83823 Endometrioid adenocarcinoma, secretory variant 2 281 -pgx:icdom-83833 Endometrioid adenocarcinoma, ciliated cell variant 2 282 -pgx:icdom-83843 Adenocarcinoma, endocervical type 2 283 -pgx:icdom-839-842 Adnexal and skin appendage neoplasms 0 284 -pgx:icdom-83900 Skin appendage adenoma 2 285 -pgx:icdom-83903 Skin appendage carcinoma 2 286 -pgx:icdom-83910 Follicular fibroma 2 287 -pgx:icdom-83920 Syringofibroadenoma 2 288 -pgx:icdom-84000 Sweat gland adenoma 2 289 -pgx:icdom-84001 Sweat gland tumor, NOS 2 290 -pgx:icdom-84003 Sweat gland adenocarcinoma 2 291 -pgx:icdom-84010 Apocrine adenoma 2 292 -pgx:icdom-84013 Apocrine adenocarcinoma 2 293 -pgx:icdom-84020 Nodular hidradenoma 2 294 -pgx:icdom-84023 Nodular hidradenoma, malignant 2 295 -pgx:icdom-84030 Eccrine spiradenoma 2 296 -pgx:icdom-84033 Malignant eccrine spiradenoma 2 297 -pgx:icdom-84040 Hidrocystoma 2 298 -pgx:icdom-84050 Papillary hidradenoma 2 299 -pgx:icdom-84060 Papillary syringadenoma 2 300 -pgx:icdom-84070 Syringoma, NOS 2 301 -pgx:icdom-84073 Sclerosing sweat duct carcinoma 2 302 -pgx:icdom-84080 Eccrine papillary adenoma 2 303 -pgx:icdom-84081 Aggressive digital papillary adenoma 2 304 -pgx:icdom-84083 Eccrine papillary adenocarcinoma 2 305 -pgx:icdom-84090 Eccrine poroma 2 306 -pgx:icdom-84093 Eccrine poroma, malignant 2 307 -pgx:icdom-84100 Sebaceous adenoma 2 308 -pgx:icdom-84103 Sebaceous adenocarcinoma 2 309 -pgx:icdom-84133 Eccrine adenocarcinoma 2 310 -pgx:icdom-84200 Ceruminous adenoma 2 311 -pgx:icdom-84203 Ceruminous adenocarcinoma 2 312 -pgx:icdom-843 Mucoepidermoid neoplasms 0 313 -pgx:icdom-84301 Mucoepidermoid tumor 2 314 -pgx:icdom-84303 Mucoepidermoid carcinoma 2 315 -pgx:icdom-844-849 Cystic, mucinous and serous neoplasms 0 316 -pgx:icdom-84400 Cystadenoma, NOS 2 317 -pgx:icdom-84403 Cystadenocarcinoma, NOS 2 318 -pgx:icdom-84410 Serous cystadenoma, NOS 2 319 -pgx:icdom-84413 Serous cystadenocarcinoma, NOS 2 320 -pgx:icdom-84421 Serous cystadenoma, borderline malignancy 2 321 -pgx:icdom-84430 Clear cell cystadenoma 2 322 -pgx:icdom-84441 Clear cell cystic tumor of borderline malignancy 2 323 -pgx:icdom-84500 Papillary cystadenoma, NOS 2 324 -pgx:icdom-84503 Papillary cystadenocarcinoma, NOS 2 325 -pgx:icdom-84511 Papillary cystadenoma, borderline malignancy 2 326 -pgx:icdom-84521 Solid pseudopapillary tumor 2 327 -pgx:icdom-84523 Solid pseudopapillary carcinoma 2 328 -pgx:icdom-84530 Intraductal papillary-mucinous adenoma 2 329 -pgx:icdom-84532 Intraductal papillary-mucinous carcinoma, non-invasive 2 330 -pgx:icdom-84533 Intraductal papillary-mucinous carcinoma, invasive 2 331 -pgx:icdom-84540 Cystic tumor of atrio-ventricular node 2 332 -pgx:icdom-84600 Papillary serous cystadenoma, NOS 2 333 -pgx:icdom-84603 Papillary serous cystadenocarcinoma 2 334 -pgx:icdom-84610 Serous surface papilloma 2 335 -pgx:icdom-84613 Serous surface papillary carcinoma 2 336 -pgx:icdom-84621 Serous papillary cystic tumor of borderline malignancy 2 337 -pgx:icdom-84631 Serous surface papillary tumor of borderline malignancy 2 338 -pgx:icdom-84700 Mucinous cystadenoma, NOS 2 339 -pgx:icdom-84702 Mucinous cystadenocarcinoma, non-invasive 2 340 -pgx:icdom-84703 Mucinous cystadenocarcinoma, NOS 2 341 -pgx:icdom-84710 Papillary mucinous cystadenoma, NOS 2 342 -pgx:icdom-84713 Papillary mucinous cystadenocarcinoma 2 343 -pgx:icdom-84721 Mucinous cystic tumor of borderline malignancy 2 344 -pgx:icdom-84731 Papillary mucinous cystadenoma, borderline malignancy 2 345 -pgx:icdom-84800 Mucinous adenoma 2 346 -pgx:icdom-84801 Low grade appendiceal mucinous neoplasm 2 347 -pgx:icdom-84803 Mucinous adenocarcinoma 2 348 -pgx:icdom-84806 Pseudomyxoma peritonei 2 349 -pgx:icdom-84813 Mucin-producing adenocarcinoma 2 350 -pgx:icdom-84823 Mucinous adenocarcinoma, endocervical type 2 351 -pgx:icdom-84903 Signet ring cell carcinoma 2 352 -pgx:icdom-84906 Metastatic signet ring cell carcinoma 2 353 -pgx:icdom-850-854 Ductal and lobular neoplasms 0 354 -pgx:icdom-85002 Intraductal carcinoma, noninfiltrating, NOS 2 355 -pgx:icdom-85003 Infiltrating duct carcinoma, NOS 2 356 -pgx:icdom-85012 Comedocarcinoma, noninfiltrating 2 357 -pgx:icdom-85013 Comedocarcinoma, NOS 2 358 -pgx:icdom-85023 Secretory carcinoma of breast 2 359 -pgx:icdom-85030 Intraductal papilloma 2 360 -pgx:icdom-85032 Noninfiltrating intraductal papillary adenocarcinoma 2 361 -pgx:icdom-85033 Intraductal papillary adenocarcinoma with invasion 2 362 -pgx:icdom-85040 Intracystic papillary adenoma 2 363 -pgx:icdom-85042 Noninfiltrating intracystic carcinoma 2 364 -pgx:icdom-85043 Intracystic carcinoma, NOS 2 365 -pgx:icdom-85050 Intraductal papillomatosis, NOS 2 366 -pgx:icdom-85060 Adenoma of nipple 2 367 -pgx:icdom-85072 Intraductal micropapillary carcinoma 2 368 -pgx:icdom-85083 Cystic hypersecretory carcinoma 2 369 -pgx:icdom-85103 Medullary carcinoma, NOS 2 370 -pgx:icdom-85123 Medullary carcinoma with lymphoid stroma 2 371 -pgx:icdom-85133 Atypical medullary carcinoma 2 372 -pgx:icdom-85143 Duct carcinoma, desmoplastic type 2 373 -pgx:icdom-85202 Lobular carcinoma in situ, NOS 2 374 -pgx:icdom-85203 Lobular carcinoma, NOS 2 375 -pgx:icdom-85213 Infiltrating ductular carcinoma 2 376 -pgx:icdom-85222 Intraductal carcinoma and lobular carcinoma in situ 2 377 -pgx:icdom-85223 Infiltrating duct and lobular carcinoma 2 378 -pgx:icdom-85233 Infiltrating duct mixed with other types of carcinoma 2 379 -pgx:icdom-85243 Infiltrating lobular mixed with other types of carcinoma 2 380 -pgx:icdom-85253 Polymorphous low grade adenocarcinoma 2 381 -pgx:icdom-85303 Inflammatory carcinoma 2 382 -pgx:icdom-85403 Paget disease, mammary 2 383 -pgx:icdom-85413 Paget disease and infiltrating duct carcinoma of breast 2 384 -pgx:icdom-85423 Paget disease, extramammary 2 385 -pgx:icdom-85433 Paget disease and intraductal carcinoma of breast 2 386 -pgx:icdom-855 Acinar cell neoplasms 0 387 -pgx:icdom-85500 Acinar cell adenoma 2 388 -pgx:icdom-85501 Acinar cell tumor 2 389 -pgx:icdom-85503 Acinar cell carcinoma 2 390 -pgx:icdom-85513 Acinar cell cystadenocarcinoma 2 391 -pgx:icdom-85523 Mixed acinar-ductal carcinoma 2 392 -pgx:icdom-856-857 Complex epithelial neoplasms 0 393 -pgx:icdom-85600 Mixed squamous cell and glandular papilloma 2 394 -pgx:icdom-85603 Adenosquamous carcinoma 2 395 -pgx:icdom-85610 Adenolymphoma 2 396 -pgx:icdom-85623 Epithelial-myoepithelial carcinoma 2 397 -pgx:icdom-85703 Adenocarcinoma with squamous metaplasia 2 398 -pgx:icdom-85713 Adenocarcinoma with cartilaginous and osseous metaplasia 2 399 -pgx:icdom-85723 Adenocarcinoma with spindle cell metaplasia 2 400 -pgx:icdom-85733 Adenocarcinoma with apocrine metaplasia 2 401 -pgx:icdom-85743 Adenocarcinoma with neuroendocrine differentiation 2 402 -pgx:icdom-85753 Metaplastic carcinoma, NOS 2 403 -pgx:icdom-85763 Hepatoid adenocarcinoma 2 404 -pgx:icdom-858 Thymic epithelial neoplasms 0 405 -pgx:icdom-85800 Thymoma, benign 2 406 -pgx:icdom-85801 Thymoma, NOS 2 407 -pgx:icdom-85803 Thymoma, malignant, NOS 2 408 -pgx:icdom-85811 Thymoma, type A, NOS 2 409 -pgx:icdom-85813 Thymoma, type A, malignant 2 410 -pgx:icdom-85821 Thymoma, type AB, NOS 2 411 -pgx:icdom-85823 Thymoma, type AB, malignant 2 412 -pgx:icdom-85831 Thymoma, type B1, NOS 2 413 -pgx:icdom-85833 Thymoma, type B1, malignant 2 414 -pgx:icdom-85841 Thymoma, type B2, NOS 2 415 -pgx:icdom-85843 Thymoma, type B2, malignant 2 416 -pgx:icdom-85851 Thymoma, type B3, NOS 2 417 -pgx:icdom-85853 Thymoma, type B3, malignant 2 418 -pgx:icdom-85863 Thymic carcinoma, NOS 2 419 -pgx:icdom-85870 Ectopic hamartomatous thymoma 2 420 -pgx:icdom-85883 Spindle epithelial tumor with thymus-like element 2 421 -pgx:icdom-85893 Carcinoma showing thymus-like element 2 422 -pgx:icdom-859-867 Specialized gonadal neoplasms 0 423 -pgx:icdom-85901 Sex cord-gonadal stromal tumor, NOS 2 424 -pgx:icdom-85911 Sex cord-gonadal stromal tumor, incompletely differentiated 2 425 -pgx:icdom-85921 Sex cord-gonadal stromal tumor, mixed forms 2 426 -pgx:icdom-85931 Stromal tumor with minor sex cord elements 2 427 -pgx:icdom-86000 Thecoma, NOS 2 428 -pgx:icdom-86003 Thecoma, malignant 2 429 -pgx:icdom-86010 Thecoma, luteinized 2 430 -pgx:icdom-86020 Sclerosing stromal tumor 2 431 -pgx:icdom-86100 Luteoma, NOS 2 432 -pgx:icdom-86201 Granulosa cell tumor, adult type 2 433 -pgx:icdom-86203 Granulosa cell tumor, malignant 2 434 -pgx:icdom-86211 Granulosa cell-theca cell tumor 2 435 -pgx:icdom-86221 Granulosa cell tumor, juvenile 2 436 -pgx:icdom-86231 Sex cord tumor with annular tubules 2 437 -pgx:icdom-86300 Androblastoma, benign 2 438 -pgx:icdom-86301 Androblastoma, NOS 2 439 -pgx:icdom-86303 Androblastoma, malignant 2 440 -pgx:icdom-86310 Sertoli-Leydig cell tumor, well differentiated 2 441 -pgx:icdom-86311 Sertoli-Leydig cell tumor of intermediate differentiation 2 442 -pgx:icdom-86313 Sertoli-Leydig cell tumor, poorly differentiated 2 443 -pgx:icdom-86321 Gynandroblastoma 2 444 -pgx:icdom-86331 Sertoli-Leydig cell tumor, retiform 2 445 -pgx:icdom-86341 Sertoli-Leydig cell tumor, intermediate differentiation, with heterologous elements 2 446 -pgx:icdom-86343 Sertoli-Leydig cell tumor, poorly differentiated, with heterologous elements 2 447 -pgx:icdom-86401 Sertoli cell tumor, NOS 2 448 -pgx:icdom-86403 Sertoli cell carcinoma 2 449 -pgx:icdom-86410 Sertoli cell tumor with lipid storage 2 450 -pgx:icdom-86421 Large cell calcifying Sertoli cell tumor 2 451 -pgx:icdom-86500 Leydig cell tumor, benign 2 452 -pgx:icdom-86501 Leydig cell tumor, NOS 2 453 -pgx:icdom-86503 Leydig cell tumor, malignant 2 454 -pgx:icdom-86600 Hilus cell tumor 2 455 -pgx:icdom-86700 Lipid cell tumor of ovary 2 456 -pgx:icdom-86703 Steroid cell tumor, malignant 2 457 -pgx:icdom-86710 Adrenal rest tumor 2 458 -pgx:icdom-868-871 Paragangliomas and glomus tumors 0 459 -pgx:icdom-86800 Paraganglioma, benign 2 460 -pgx:icdom-86801 Paraganglioma, NOS 2 461 -pgx:icdom-86803 Paraganglioma, malignant 2 462 -pgx:icdom-86811 Sympathetic paraganglioma 2 463 -pgx:icdom-86821 Parasympathetic paraganglioma 2 464 -pgx:icdom-86830 Gangliocytic paraganglioma 2 465 -pgx:icdom-86901 Glomus jugulare tumor, NOS 2 466 -pgx:icdom-86911 Aortic body tumor 2 467 -pgx:icdom-86921 Carotid body tumor 2 468 -pgx:icdom-86931 Extra-adrenal paraganglioma, NOS 2 469 -pgx:icdom-86933 Extra-adrenal paraganglioma, malignant 2 470 -pgx:icdom-87000 Pheochromocytoma, NOS 2 471 -pgx:icdom-87003 Pheochromocytoma, malignant 2 472 -pgx:icdom-87103 Glomangiosarcoma 2 473 -pgx:icdom-87110 Glomus tumor, NOS 2 474 -pgx:icdom-87113 Glomus tumor, malignant 2 475 -pgx:icdom-87120 Glomangioma 2 476 -pgx:icdom-87130 Glomangiomyoma 2 477 -pgx:icdom-872-879 Nevi and melanomas 0 478 -pgx:icdom-87200 Pigmented nevus, NOS 2 479 -pgx:icdom-87202 Melanoma in situ 2 480 -pgx:icdom-87203 Malignant melanoma, NOS 2 481 -pgx:icdom-87213 Nodular melanoma 2 482 -pgx:icdom-87220 Balloon cell nevus 2 483 -pgx:icdom-87223 Balloon cell melanoma 2 484 -pgx:icdom-87230 Halo nevus 2 485 -pgx:icdom-87233 Malignant melanoma, regressing 2 486 -pgx:icdom-87250 Neuronevus 2 487 -pgx:icdom-87260 Magnocellular nevus 2 488 -pgx:icdom-87270 Dysplastic nevus 2 489 -pgx:icdom-87280 Diffuse melanocytosis 2 490 -pgx:icdom-87281 Meningeal melanocytoma 2 491 -pgx:icdom-87283 Meningeal melanomatosis 2 492 -pgx:icdom-87300 Nonpigmented nevus 2 493 -pgx:icdom-87303 Amelanotic melanoma 2 494 -pgx:icdom-87400 Junctional nevus, NOS 2 495 -pgx:icdom-87403 Malignant melanoma in junctional nevus 2 496 -pgx:icdom-87412 Precancerous melanosis, NOS 2 497 -pgx:icdom-87413 Malignant melanoma in precancerous melanosis 2 498 -pgx:icdom-87422 Lentigo maligna 2 499 -pgx:icdom-87423 Lentigo maligna melanoma 2 500 -pgx:icdom-87433 Superficial spreading melanoma 2 501 -pgx:icdom-87443 Acral lentiginous melanoma, malignant 2 502 -pgx:icdom-87453 Desmoplastic melanoma, malignant 2 503 -pgx:icdom-87463 Mucosal lentiginous melanoma 2 504 -pgx:icdom-87500 Intradermal nevus 2 505 -pgx:icdom-87600 Compound nevus 2 506 -pgx:icdom-87610 Small congenital nevus 2 507 -pgx:icdom-87611 Giant pigmented nevus, NOS 2 508 -pgx:icdom-87613 Malignant melanoma in giant pigmented nevus 2 509 -pgx:icdom-87621 Proliferative dermal lesion in congenital nevus 2 510 -pgx:icdom-87700 Epithelioid and spindle cell nevus 2 511 -pgx:icdom-87703 Mixed epithelioid and spindle cell melanoma 2 512 -pgx:icdom-87710 Epithelioid cell nevus 2 513 -pgx:icdom-87713 Epithelioid cell melanoma 2 514 -pgx:icdom-87720 Spindle cell nevus, NOS 2 515 -pgx:icdom-87723 Spindle cell melanoma, NOS 2 516 -pgx:icdom-87733 Spindle cell melanoma, type A 2 517 -pgx:icdom-87743 Spindle cell melanoma, type B 2 518 -pgx:icdom-87800 Blue nevus, NOS 2 519 -pgx:icdom-87803 Blue nevus, malignant 2 520 -pgx:icdom-87900 Cellular blue nevus 2 521 -pgx:icdom-880 Soft tissue tumors and sarcomas, NOS 0 522 -pgx:icdom-88000 Soft tissue tumor, benign 2 523 -pgx:icdom-88003 Sarcoma, NOS 2 524 -pgx:icdom-88009 Sarcomatosis, NOS 2 525 -pgx:icdom-88013 Spindle cell sarcoma 2 526 -pgx:icdom-88023 Giant cell sarcoma 2 527 -pgx:icdom-88033 Small cell sarcoma 2 528 -pgx:icdom-88043 Epithelioid sarcoma 2 529 -pgx:icdom-88053 Undifferentiated sarcoma 2 530 -pgx:icdom-88063 Desmoplastic small round cell tumor 2 531 -pgx:icdom-881-883 Fibromatous neoplasms 0 532 -pgx:icdom-88100 Fibroma, NOS 2 533 -pgx:icdom-88101 Cellular fibroma 2 534 -pgx:icdom-88103 Fibrosarcoma, NOS 2 535 -pgx:icdom-88110 Fibromyxoma 2 536 -pgx:icdom-88113 Fibromyxosarcoma 2 537 -pgx:icdom-88120 Periosteal fibroma 2 538 -pgx:icdom-88123 Periosteal fibrosarcoma 2 539 -pgx:icdom-88130 Fascial fibroma 2 540 -pgx:icdom-88133 Fascial fibrosarcoma 2 541 -pgx:icdom-88143 Infantile fibrosarcoma 2 542 -pgx:icdom-88150 Solitary fibrous tumor 2 543 -pgx:icdom-88153 Solitary fibrous tumor, malignant 2 544 -pgx:icdom-88200 Elastofibroma 2 545 -pgx:icdom-88211 Aggressive fibromatosis 2 546 -pgx:icdom-88221 Abdominal fibromatosis 2 547 -pgx:icdom-88230 Desmoplastic fibroma 2 548 -pgx:icdom-88240 Myofibroma 2 549 -pgx:icdom-88241 Myofibromatosis 2 550 -pgx:icdom-88250 Myofibroblastoma 2 551 -pgx:icdom-88251 Myofibroblastic tumor, NOS 2 552 -pgx:icdom-88260 Angiomyofibroblastoma 2 553 -pgx:icdom-88271 Myofibroblastic tumor, peribronchial 2 554 -pgx:icdom-88300 Benign fibrous histiocytoma 2 555 -pgx:icdom-88301 Atypical fibrous histiocytoma 2 556 -pgx:icdom-88303 Malignant fibrous histiocytoma 2 557 -pgx:icdom-88310 Histiocytoma, NOS 2 558 -pgx:icdom-88320 Dermatofibroma, NOS 2 559 -pgx:icdom-88323 Dermatofibrosarcoma, NOS 2 560 -pgx:icdom-88333 Pigmented dermatofibrosarcoma protuberans 2 561 -pgx:icdom-88341 Giant cell fibroblastoma 2 562 -pgx:icdom-88351 Plexiform fibrohistiocytic tumor 2 563 -pgx:icdom-88361 Angiomatoid fibrous histiocytoma 2 564 -pgx:icdom-884 Myxomatous neoplasms 0 565 -pgx:icdom-88400 Myxoma, NOS 2 566 -pgx:icdom-88403 Myxosarcoma 2 567 -pgx:icdom-88411 Angiomyxoma 2 568 -pgx:icdom-88420 Ossifying fibromyxoid tumor 2 569 -pgx:icdom-885-888 Lipomatous neoplasms 0 570 -pgx:icdom-88500 Lipoma, NOS 2 571 -pgx:icdom-88501 Atypical lipoma 2 572 -pgx:icdom-88503 Liposarcoma, NOS 2 573 -pgx:icdom-88510 Fibrolipoma 2 574 -pgx:icdom-88513 Liposarcoma, well differentiated 2 575 -pgx:icdom-88520 Fibromyxolipoma 2 576 -pgx:icdom-88523 Myxoid liposarcoma 2 577 -pgx:icdom-88533 Round cell liposarcoma 2 578 -pgx:icdom-88540 Pleomorphic lipoma 2 579 -pgx:icdom-88543 Pleomorphic liposarcoma 2 580 -pgx:icdom-88553 Mixed liposarcoma 2 581 -pgx:icdom-88560 Intramuscular lipoma 2 582 -pgx:icdom-88570 Spindle cell lipoma 2 583 -pgx:icdom-88573 Fibroblastic liposarcoma 2 584 -pgx:icdom-88583 Dedifferentiated liposarcoma 2 585 -pgx:icdom-88600 Angiomyolipoma 2 586 -pgx:icdom-88610 Angiolipoma, NOS 2 587 -pgx:icdom-88620 Chondroid lipoma 2 588 -pgx:icdom-88700 Myelolipoma 2 589 -pgx:icdom-88800 Hibernoma 2 590 -pgx:icdom-88810 Lipoblastomatosis 2 591 -pgx:icdom-889-892 Myomatous neoplasms 0 592 -pgx:icdom-88900 Leiomyoma, NOS 2 593 -pgx:icdom-88901 Leiomyomatosis, NOS 2 594 -pgx:icdom-88903 Leiomyosarcoma, NOS 2 595 -pgx:icdom-88910 Epithelioid leiomyoma 2 596 -pgx:icdom-88913 Epithelioid leiomyosarcoma 2 597 -pgx:icdom-88920 Cellular leiomyoma 2 598 -pgx:icdom-88930 Bizarre leiomyoma 2 599 -pgx:icdom-88940 Angiomyoma 2 600 -pgx:icdom-88943 Angiomyosarcoma 2 601 -pgx:icdom-88950 Myoma 2 602 -pgx:icdom-88953 Myosarcoma 2 603 -pgx:icdom-88963 Myxoid leiomyosarcoma 2 604 -pgx:icdom-88971 Smooth muscle tumor of uncertain malignant potential 2 605 -pgx:icdom-88981 Metastasizing leiomyoma 2 606 -pgx:icdom-89000 Rhabdomyoma, NOS 2 607 -pgx:icdom-89003 Rhabdomyosarcoma, NOS 2 608 -pgx:icdom-89013 Pleomorphic rhabdomyosarcoma, adult type 2 609 -pgx:icdom-89023 Mixed type rhabdomyosarcoma 2 610 -pgx:icdom-89030 Fetal rhabdomyoma 2 611 -pgx:icdom-89040 Adult rhabdomyoma 2 612 -pgx:icdom-89050 Genital rhabdomyoma 2 613 -pgx:icdom-89103 Embryonal rhabdomyosarcoma, NOS 2 614 -pgx:icdom-89123 Spindle cell rhabdomyosarcoma 2 615 -pgx:icdom-89203 Alveolar rhabdomyosarcoma 2 616 -pgx:icdom-89213 Rhabdomyosarcoma with ganglionic differentiation 2 617 -pgx:icdom-893-899 Complex mixed and stromal neoplasms 0 618 -pgx:icdom-89300 Endometrial stromal nodule 2 619 -pgx:icdom-89303 Endometrial stromal sarcoma, NOS 2 620 -pgx:icdom-89313 Endometrial stromal sarcoma, low grade 2 621 -pgx:icdom-89320 Adenomyoma 2 622 -pgx:icdom-89333 Adenosarcoma 2 623 -pgx:icdom-89343 Carcinofibroma 2 624 -pgx:icdom-89350 Stromal tumor, benign 2 625 -pgx:icdom-89351 Stromal tumor, NOS 2 626 -pgx:icdom-89353 Stromal sarcoma, NOS 2 627 -pgx:icdom-89360 Gastrointestinal stromal tumor, benign 2 628 -pgx:icdom-89361 Gastrointestinal stromal tumor, NOS 2 629 -pgx:icdom-89363 Gastrointestinal stromal sarcoma 2 630 -pgx:icdom-89400 Pleomorphic adenoma 2 631 -pgx:icdom-89403 Mixed tumor, malignant, NOS 2 632 -pgx:icdom-89413 Carcinoma in pleomorphic adenoma 2 633 -pgx:icdom-89503 Mullerian mixed tumor 2 634 -pgx:icdom-89513 Mesodermal mixed tumor 2 635 -pgx:icdom-89590 Benign cystic nephroma 2 636 -pgx:icdom-89591 Cystic partially differentiated nephroblastoma 2 637 -pgx:icdom-89593 Malignant cystic nephroma 2 638 -pgx:icdom-89601 Mesoblastic nephroma 2 639 -pgx:icdom-89603 Nephroblastoma, NOS 2 640 -pgx:icdom-89633 Malignant rhabdoid tumor 2 641 -pgx:icdom-89643 Clear cell sarcoma of kidney 2 642 -pgx:icdom-89650 Nephrogenic adenofibroma 2 643 -pgx:icdom-89660 Renomedullary interstitial cell tumor 2 644 -pgx:icdom-89670 Ossifying renal tumor 2 645 -pgx:icdom-89703 Hepatoblastoma 2 646 -pgx:icdom-89713 Pancreatoblastoma 2 647 -pgx:icdom-89723 Pulmonary blastoma 2 648 -pgx:icdom-89733 Pleuropulmonary blastoma 2 649 -pgx:icdom-89741 Sialoblastoma 2 650 -pgx:icdom-89751 Calcifying nested epithelial stromal tumor 2 651 -pgx:icdom-89803 Carcinosarcoma, NOS 2 652 -pgx:icdom-89813 Carcinosarcoma, embryonal 2 653 -pgx:icdom-89820 Myoepithelioma 2 654 -pgx:icdom-89823 Malignant myoepithelioma 2 655 -pgx:icdom-89830 Adenomyoepithelioma 2 656 -pgx:icdom-89900 Mesenchymoma, benign 2 657 -pgx:icdom-89901 Mesenchymoma, NOS 2 658 -pgx:icdom-89903 Mesenchymoma, malignant 2 659 -pgx:icdom-89913 Embryonal sarcoma 2 660 -pgx:icdom-900-903 Fibroepithelial neoplasms 0 661 -pgx:icdom-90000 Brenner tumor, NOS 2 662 -pgx:icdom-90001 Brenner tumor, borderline malignancy 2 663 -pgx:icdom-90003 Brenner tumor, malignant 2 664 -pgx:icdom-90100 Fibroadenoma, NOS 2 665 -pgx:icdom-90110 Intracanalicular fibroadenoma 2 666 -pgx:icdom-90120 Pericanalicular fibroadenoma 2 667 -pgx:icdom-90130 Adenofibroma, NOS 2 668 -pgx:icdom-90140 Serous adenofibroma, NOS 2 669 -pgx:icdom-90141 Serous adenofibroma of borderline malignancy 2 670 -pgx:icdom-90143 Serous adenocarcinofibroma 2 671 -pgx:icdom-90150 Mucinous adenofibroma, NOS 2 672 -pgx:icdom-90151 Mucinous adenofibroma of borderline malignancy 2 673 -pgx:icdom-90153 Mucinous adenocarcinofibroma 2 674 -pgx:icdom-90160 Giant fibroadenoma 2 675 -pgx:icdom-90200 Phyllodes tumor, benign 2 676 -pgx:icdom-90201 Phyllodes tumor, borderline 2 677 -pgx:icdom-90203 Phyllodes tumor, malignant 2 678 -pgx:icdom-90300 Juvenile fibroadenoma 2 679 -pgx:icdom-904 Synovial-like neoplasms 0 680 -pgx:icdom-90400 Synovioma, benign 2 681 -pgx:icdom-90403 Synovial sarcoma, NOS 2 682 -pgx:icdom-90413 Synovial sarcoma, spindle cell 2 683 -pgx:icdom-90423 Synovial sarcoma, epithelioid cell 2 684 -pgx:icdom-90433 Synovial sarcoma, biphasic 2 685 -pgx:icdom-90443 Clear cell sarcoma, NOS 2 686 -pgx:icdom-905 Mesothelial neoplasms 0 687 -pgx:icdom-90500 Mesothelioma, benign 2 688 -pgx:icdom-90503 Mesothelioma, malignant 2 689 -pgx:icdom-90510 Fibrous mesothelioma, benign 2 690 -pgx:icdom-90513 Fibrous mesothelioma, malignant 2 691 -pgx:icdom-90520 Epithelioid mesothelioma, benign 2 692 -pgx:icdom-90523 Epithelioid mesothelioma, malignant 2 693 -pgx:icdom-90533 Mesothelioma, biphasic, malignant 2 694 -pgx:icdom-90540 Adenomatoid tumor, NOS 2 695 -pgx:icdom-90550 Multicystic mesothelioma, benign 2 696 -pgx:icdom-90551 Cystic mesothelioma, NOS 2 697 -pgx:icdom-906-909 Germ cell neoplasms 0 698 -pgx:icdom-90603 Dysgerminoma 2 699 -pgx:icdom-90613 Seminoma, NOS 2 700 -pgx:icdom-90623 Seminoma, anaplastic 2 701 -pgx:icdom-90633 Spermatocytic seminoma 2 702 -pgx:icdom-90642 Intratubular malignant germ cells 2 703 -pgx:icdom-90643 Germinoma 2 704 -pgx:icdom-90653 Germ cell tumor, nonseminomatous 2 705 -pgx:icdom-90703 Embryonal carcinoma, NOS 2 706 -pgx:icdom-90713 Yolk sac tumor 2 707 -pgx:icdom-90723 Polyembryoma 2 708 -pgx:icdom-90731 Gonadoblastoma 2 709 -pgx:icdom-90800 Teratoma, benign 2 710 -pgx:icdom-90801 Teratoma, NOS 2 711 -pgx:icdom-90803 Teratoma, malignant, NOS 2 712 -pgx:icdom-90813 Teratocarcinoma 2 713 -pgx:icdom-90823 Malignant teratoma, undifferentiated 2 714 -pgx:icdom-90833 Malignant teratoma, intermediate 2 715 -pgx:icdom-90840 Dermoid cyst, NOS 2 716 -pgx:icdom-90843 Teratoma with malignant transformation 2 717 -pgx:icdom-90853 Mixed germ cell tumor 2 718 -pgx:icdom-90900 Struma ovarii, NOS 2 719 -pgx:icdom-90903 Struma ovarii, malignant 2 720 -pgx:icdom-90911 Strumal carcinoid 2 721 -pgx:icdom-910 Trophoblastic neoplasms 0 722 -pgx:icdom-91000 Hydatidiform mole, NOS 2 723 -pgx:icdom-91001 Invasive hydatidiform mole 2 724 -pgx:icdom-91003 Choriocarcinoma, NOS 2 725 -pgx:icdom-91013 Choriocarcinoma combined with other germ cell elements 2 726 -pgx:icdom-91023 Malignant teratoma, trophoblastic 2 727 -pgx:icdom-91030 Partial hydatidiform mole 2 728 -pgx:icdom-91041 Placental site trophoblastic tumor 2 729 -pgx:icdom-91053 Trophoblastic tumor, epithelioid 2 730 -pgx:icdom-911 Mesonephromas 0 731 -pgx:icdom-91100 Mesonephroma, benign 2 732 -pgx:icdom-91101 Mesonephric tumor, NOS 2 733 -pgx:icdom-91103 Mesonephroma, malignant 2 734 -pgx:icdom-912-916 Blood vessel tumors 0 735 -pgx:icdom-91200 Hemangioma, NOS 2 736 -pgx:icdom-91203 Hemangiosarcoma 2 737 -pgx:icdom-91210 Cavernous hemangioma 2 738 -pgx:icdom-91220 Venous hemangioma 2 739 -pgx:icdom-91230 Racemose hemangioma 2 740 -pgx:icdom-91243 Kupffer cell sarcoma 2 741 -pgx:icdom-91250 Epithelioid hemangioma 2 742 -pgx:icdom-91300 Hemangioendothelioma, benign 2 743 -pgx:icdom-91301 Hemangioendothelioma, NOS 2 744 -pgx:icdom-91303 Hemangioendothelioma, malignant 2 745 -pgx:icdom-91310 Capillary hemangioma 2 746 -pgx:icdom-91320 Intramuscular hemangioma 2 747 -pgx:icdom-91331 Epithelioid hemangioendothelioma, NOS 2 748 -pgx:icdom-91333 Epithelioid hemangioendothelioma, malignant 2 749 -pgx:icdom-91351 Endovascular papillary angioendothelioma 2 750 -pgx:icdom-91361 Spindle cell hemangioendothelioma 2 751 -pgx:icdom-91403 Kaposi sarcoma 2 752 -pgx:icdom-91410 Angiokeratoma 2 753 -pgx:icdom-91420 Verrucous keratotic hemangioma 2 754 -pgx:icdom-91500 Hemangiopericytoma, benign 2 755 -pgx:icdom-91501 Hemangiopericytoma, NOS 2 756 -pgx:icdom-91503 Hemangiopericytoma, malignant 2 757 -pgx:icdom-91600 Angiofibroma, NOS 2 758 -pgx:icdom-91610 Acquired tufted hemangioma 2 759 -pgx:icdom-91611 Hemangioblastoma 2 760 -pgx:icdom-917 Lymphatic vessel tumors 0 761 -pgx:icdom-91700 Lymphangioma, NOS 2 762 -pgx:icdom-91703 Lymphangiosarcoma 2 763 -pgx:icdom-91710 Capillary lymphangioma 2 764 -pgx:icdom-91720 Cavernous lymphangioma 2 765 -pgx:icdom-91730 Cystic lymphangioma 2 766 -pgx:icdom-91740 Lymphangiomyoma 2 767 -pgx:icdom-91741 Lymphangiomyomatosis 2 768 -pgx:icdom-91750 Hemolymphangioma 2 769 -pgx:icdom-918-924 Osseous and chondromatous neoplasms 0 770 -pgx:icdom-91800 Osteoma, NOS 2 771 -pgx:icdom-91803 Osteosarcoma, NOS 2 772 -pgx:icdom-91813 Chondroblastic osteosarcoma 2 773 -pgx:icdom-91823 Fibroblastic osteosarcoma 2 774 -pgx:icdom-91833 Telangiectatic osteosarcoma 2 775 -pgx:icdom-91843 Osteosarcoma in Paget disease of bone 2 776 -pgx:icdom-91853 Small cell osteosarcoma 2 777 -pgx:icdom-91863 Central osteosarcoma 2 778 -pgx:icdom-91873 Intraosseous well differentiated osteosarcoma 2 779 -pgx:icdom-91910 Osteoid osteoma, NOS 2 780 -pgx:icdom-91923 Parosteal osteosarcoma 2 781 -pgx:icdom-91933 Periosteal osteosarcoma 2 782 -pgx:icdom-91943 High grade surface osteosarcoma 2 783 -pgx:icdom-91953 Intracortical osteosarcoma 2 784 -pgx:icdom-92000 Osteoblastoma, NOS 2 785 -pgx:icdom-92001 Aggressive osteoblastoma 2 786 -pgx:icdom-92100 Osteochondroma 2 787 -pgx:icdom-92101 Osteochondromatosis, NOS 2 788 -pgx:icdom-92200 Chondroma, NOS 2 789 -pgx:icdom-92201 Chondromatosis, NOS 2 790 -pgx:icdom-92203 Chondrosarcoma, NOS 2 791 -pgx:icdom-92210 Juxtacortical chondroma 2 792 -pgx:icdom-92213 Juxtacortical chondrosarcoma 2 793 -pgx:icdom-92300 Chondroblastoma, NOS 2 794 -pgx:icdom-92303 Chondroblastoma, malignant 2 795 -pgx:icdom-92313 Myxoid chondrosarcoma 2 796 -pgx:icdom-92403 Mesenchymal chondrosarcoma 2 797 -pgx:icdom-92410 Chondromyxoid fibroma 2 798 -pgx:icdom-92423 Clear cell chondrosarcoma 2 799 -pgx:icdom-92433 Dedifferentiated chondrosarcoma 2 800 -pgx:icdom-925 Giant cell tumors 0 801 -pgx:icdom-92501 Giant cell tumor of bone, NOS 2 802 -pgx:icdom-92503 Giant cell tumor of bone, malignant 2 803 -pgx:icdom-92511 Giant cell tumor of soft parts, NOS 2 804 -pgx:icdom-92513 Malignant giant cell tumor of soft parts 2 805 -pgx:icdom-92520 Tenosynovial giant cell tumor 2 806 -pgx:icdom-92523 Malignant tenosynovial giant cell tumor 2 807 -pgx:icdom-926 Miscellaneous bone tumors 0 808 -pgx:icdom-92603 Ewing sarcoma 2 809 -pgx:icdom-92613 Adamantinoma of long bones 2 810 -pgx:icdom-92620 Ossifying fibroma 2 811 -pgx:icdom-927-934 Odontogenic tumors 0 812 -pgx:icdom-92700 Odontogenic tumor, benign 2 813 -pgx:icdom-92701 Odontogenic tumor, NOS 2 814 -pgx:icdom-92703 Odontogenic tumor, malignant 2 815 -pgx:icdom-92710 Ameloblastic fibrodentinoma 2 816 -pgx:icdom-92720 Cementoma, NOS 2 817 -pgx:icdom-92730 Cementoblastoma, benign 2 818 -pgx:icdom-92740 Cementifying fibroma 2 819 -pgx:icdom-92750 Gigantiform cementoma 2 820 -pgx:icdom-92800 Odontoma, NOS 2 821 -pgx:icdom-92810 Compound odontoma 2 822 -pgx:icdom-92820 Complex odontoma 2 823 -pgx:icdom-92900 Ameloblastic fibro-odontoma 2 824 -pgx:icdom-92903 Ameloblastic odontosarcoma 2 825 -pgx:icdom-93000 Adenomatoid odontogenic tumor 2 826 -pgx:icdom-93010 Calcifying odontogenic cyst 2 827 -pgx:icdom-93020 Odontogenic ghost cell tumor 2 828 -pgx:icdom-93100 Ameloblastoma, NOS 2 829 -pgx:icdom-93103 Ameloblastoma, malignant 2 830 -pgx:icdom-93110 Odontoameloblastoma 2 831 -pgx:icdom-93120 Squamous odontogenic tumor 2 832 -pgx:icdom-93200 Odontogenic myxoma 2 833 -pgx:icdom-93210 Central odontogenic fibroma 2 834 -pgx:icdom-93220 Peripheral odontogenic fibroma 2 835 -pgx:icdom-93300 Ameloblastic fibroma 2 836 -pgx:icdom-93303 Ameloblastic fibrosarcoma 2 837 -pgx:icdom-93400 Calcifying epithelial odontogenic tumor 2 838 -pgx:icdom-93411 Clear cell odontogenic tumor 2 839 -pgx:icdom-93423 Odontogenic carcinosarcoma 2 840 -pgx:icdom-935-937 Miscellaneous tumors 0 841 -pgx:icdom-93501 Craniopharyngioma 2 842 -pgx:icdom-93511 Craniopharyngioma, adamantinomatous 2 843 -pgx:icdom-93521 Craniopharyngioma, papillary 2 844 -pgx:icdom-93601 Pinealoma 2 845 -pgx:icdom-93611 Pineocytoma 2 846 -pgx:icdom-93623 Pineoblastoma 2 847 -pgx:icdom-93630 Melanotic neuroectodermal tumor 2 848 -pgx:icdom-93643 Peripheral neuroectodermal tumor 2 849 -pgx:icdom-93653 Askin tumor 2 850 -pgx:icdom-93703 Chordoma, NOS 2 851 -pgx:icdom-93713 Chondroid chordoma 2 852 -pgx:icdom-93723 Dedifferentiated chordoma 2 853 -pgx:icdom-93730 Parachordoma 2 854 -pgx:icdom-938-948 Gliomas 0 855 -pgx:icdom-93803 Glioma, malignant 2 856 -pgx:icdom-93813 Gliomatosis cerebri 2 857 -pgx:icdom-93823 Mixed glioma 2 858 -pgx:icdom-93831 Subependymoma 2 859 -pgx:icdom-93841 Subependymal giant cell astrocytoma 2 860 -pgx:icdom-93900 Choroid plexus papilloma, NOS 2 861 -pgx:icdom-93901 Atypical choroid plexus papilloma 2 862 -pgx:icdom-93903 Choroid plexus carcinoma 2 863 -pgx:icdom-93913 Ependymoma, NOS 2 864 -pgx:icdom-93923 Ependymoma, anaplastic 2 865 -pgx:icdom-93933 Papillary ependymoma 2 866 -pgx:icdom-93941 Myxopapillary ependymoma 2 867 -pgx:icdom-93953 Papillary tumor of the pineal region 2 868 -pgx:icdom-94003 Astrocytoma, NOS 2 869 -pgx:icdom-94013 Astrocytoma, anaplastic 2 870 -pgx:icdom-94103 Protoplasmic astrocytoma 2 871 -pgx:icdom-94113 Gemistocytic astrocytoma 2 872 -pgx:icdom-94121 Desmoplastic infantile astrocytoma 2 873 -pgx:icdom-94130 Dysembryoplastic neuroepithelial tumor 2 874 -pgx:icdom-94203 Fibrillary astrocytoma 2 875 -pgx:icdom-94211 Pilocytic astrocytoma 2 876 -pgx:icdom-94233 Polar spongioblastoma 2 877 -pgx:icdom-94243 Pleomorphic xanthoastrocytoma 2 878 -pgx:icdom-94253 Pilomyxoid astrocytoma 2 879 -pgx:icdom-94303 Astroblastoma 2 880 -pgx:icdom-94311 Angiocentric glioma 2 881 -pgx:icdom-94321 Pituicytoma 2 882 -pgx:icdom-94403 Glioblastoma, NOS 2 883 -pgx:icdom-94413 Giant cell glioblastoma 2 884 -pgx:icdom-94421 Gliofibroma 2 885 -pgx:icdom-94423 Gliosarcoma 2 886 -pgx:icdom-94441 Chordoid glioma 2 887 -pgx:icdom-94503 Oligodendroglioma, NOS 2 888 -pgx:icdom-94513 Oligodendroglioma, anaplastic 2 889 -pgx:icdom-94603 Oligodendroblastoma 2 890 -pgx:icdom-94703 Medulloblastoma, NOS 2 891 -pgx:icdom-94713 Desmoplastic nodular medulloblastoma 2 892 -pgx:icdom-94723 Medullomyoblastoma 2 893 -pgx:icdom-94733 Primitive neuroectodermal tumor, NOS 2 894 -pgx:icdom-94743 Large cell medulloblastoma 2 895 -pgx:icdom-94803 Cerebellar sarcoma, NOS 2 896 -pgx:icdom-949-952 Neuroepitheliomatous neoplasms 0 897 -pgx:icdom-94900 Ganglioneuroma 2 898 -pgx:icdom-94903 Ganglioneuroblastoma 2 899 -pgx:icdom-94910 Ganglioneuromatosis 2 900 -pgx:icdom-94920 Gangliocytoma 2 901 -pgx:icdom-94930 Dysplastic gangliocytoma of cerebellum (Lhermitte-Duclos) 2 902 -pgx:icdom-95003 Neuroblastoma, NOS 2 903 -pgx:icdom-95010 Medulloepithelioma, benign 2 904 -pgx:icdom-95013 Medulloepithelioma, NOS 2 905 -pgx:icdom-95020 Teratoid medulloepithelioma, benign 2 906 -pgx:icdom-95023 Teratoid medulloepithelioma 2 907 -pgx:icdom-95033 Neuroepithelioma, NOS 2 908 -pgx:icdom-95043 Spongioneuroblastoma 2 909 -pgx:icdom-95051 Ganglioglioma, NOS 2 910 -pgx:icdom-95053 Ganglioglioma, anaplastic 2 911 -pgx:icdom-95061 Central neurocytoma 2 912 -pgx:icdom-95070 Pacinian tumor 2 913 -pgx:icdom-95083 Atypical teratoid/rhabdoid tumor 2 914 -pgx:icdom-95091 Papillary glioneuronal tumor 2 915 -pgx:icdom-95100 Retinocytoma 2 916 -pgx:icdom-95103 Retinoblastoma, NOS 2 917 -pgx:icdom-95113 Retinoblastoma, differentiated 2 918 -pgx:icdom-95123 Retinoblastoma, undifferentiated 2 919 -pgx:icdom-95133 Retinoblastoma, diffuse 2 920 -pgx:icdom-95141 Retinoblastoma, spontaneously regressed 2 921 -pgx:icdom-95203 Olfactory neurogenic tumor 2 922 -pgx:icdom-95213 Olfactory neurocytoma 2 923 -pgx:icdom-95223 Olfactory neuroblastoma 2 924 -pgx:icdom-95233 Olfactory neuroepithelioma 2 925 -pgx:icdom-953 Meningiomas 0 926 -pgx:icdom-95300 Meningioma, NOS 2 927 -pgx:icdom-95301 Meningiomatosis, NOS 2 928 -pgx:icdom-95303 Meningioma, malignant 2 929 -pgx:icdom-95310 Meningothelial meningioma 2 930 -pgx:icdom-95320 Fibrous meningioma 2 931 -pgx:icdom-95330 Psammomatous meningioma 2 932 -pgx:icdom-95340 Angiomatous meningioma 2 933 -pgx:icdom-95350 Hemangioblastic meningioma 2 934 -pgx:icdom-95370 Transitional meningioma 2 935 -pgx:icdom-95381 Clear cell meningioma 2 936 -pgx:icdom-95383 Papillary meningioma 2 937 -pgx:icdom-95391 Atypical meningioma 2 938 -pgx:icdom-95393 Meningeal sarcomatosis 2 939 -pgx:icdom-954-957 Nerve sheath tumors 0 940 -pgx:icdom-95400 Neurofibroma, NOS 2 941 -pgx:icdom-95401 Neurofibromatosis, NOS 2 942 -pgx:icdom-95403 Malignant peripheral nerve sheath tumor 2 943 -pgx:icdom-95410 Melanotic neurofibroma 2 944 -pgx:icdom-95500 Plexiform neurofibroma 2 945 -pgx:icdom-95600 Neurilemoma, NOS 2 946 -pgx:icdom-95601 Neurinomatosis 2 947 -pgx:icdom-95603 Neurilemoma, malignant 2 948 -pgx:icdom-95613 Malignant peripheral nerve sheath tumor with rhabdomyoblastic differentiation 2 949 -pgx:icdom-95620 Neurothekeoma 2 950 -pgx:icdom-95700 Neuroma, NOS 2 951 -pgx:icdom-95710 Perineurioma, NOS 2 952 -pgx:icdom-95713 Perineurioma, malignant 2 953 -pgx:icdom-958 Granular cell tumors and alveolar soft part sarcomas 0 954 -pgx:icdom-95800 Granular cell tumor, NOS 2 955 -pgx:icdom-95803 Granular cell tumor, malignant 2 956 -pgx:icdom-95813 Alveolar soft part sarcoma 2 957 -pgx:icdom-95820 Granular cell tumor of the sellar region 2 958 -pgx:icdom-959-972 Hodgkin and non-Hodgkin lymphomas 0 959 -pgx:icdom-959 Malignant lymphomas, NOS or diffuse 1 960 -pgx:icdom-95903 Malignant lymphoma, NOS 2 961 -pgx:icdom-95913 Malignant lymphoma, non-Hodgkin, NOS 2 962 -pgx:icdom-95963 Composite Hodgkin and non-Hodgkin lymphoma 2 963 -pgx:icdom-95973 Primary cutaneous follicle centre lymphoma 2 964 -pgx:icdom-965-966 Hodgkin lymphoma 1 965 -pgx:icdom-96503 Hodgkin lymphoma, NOS 2 966 -pgx:icdom-96513 Hodgkin lymphoma, lymphocyte-rich 2 967 -pgx:icdom-96523 Hodgkin lymphoma, mixed cellularity, NOS 2 968 -pgx:icdom-96533 Hodgkin lymphoma, lymphocyte depletion, NOS 2 969 -pgx:icdom-96543 Hodgkin lymphoma, lymphocyte depletion, diffuse fibrosis 2 970 -pgx:icdom-96553 Hodgkin lymphoma, lymphocyte depletion, reticular 2 971 -pgx:icdom-96593 Hodgkin lymphoma, nodular lymphocyte predominance 2 972 -pgx:icdom-96613 Hodgkin granuloma 2 973 -pgx:icdom-96623 Hodgkin sarcoma 2 974 -pgx:icdom-96633 Hodgkin lymphoma, nodular sclerosis, NOS 2 975 -pgx:icdom-96643 Hodgkin lymphoma, nodular sclerosis, cellular phase 2 976 -pgx:icdom-96653 Hodgkin lymphoma, nodular sclerosis, grade 1 2 977 -pgx:icdom-96673 Hodgkin lymphoma, nodular sclerosis, grade 2 2 978 -pgx:icdom-967-972 Non-hodgkin lymphomas 1 979 -pgx:icdom-967-969 Mature B-cell lymphomas 1 980 -pgx:icdom-96703 Malignant lymphoma, small B lymphocytic, NOS 2 981 -pgx:icdom-96713 Malignant lymphoma, lymphoplasmacytic 2 982 -pgx:icdom-96733 Mantle cell lymphoma 2 983 -pgx:icdom-96753 Malignant lymphoma, mixed small and large cell, diffuse 2 984 -pgx:icdom-96783 Primary effusion lymphoma 2 985 -pgx:icdom-96793 Mediastinal large B-cell lymphoma 2 986 -pgx:icdom-96803 Malignant lymphoma, large B-cell, diffuse, NOS 2 987 -pgx:icdom-96843 Malignant lymphoma, large B-cell, diffuse, immunoblastic, NOS 2 988 -pgx:icdom-96873 Burkitt lymphoma, NOS 2 989 -pgx:icdom-96883 T-cell/histiocyte rich large B-cell lymphoma 2 990 -pgx:icdom-96893 Splenic marginal zone B-cell lymphoma 2 991 -pgx:icdom-96903 Follicular lymphoma, NOS 2 992 -pgx:icdom-96913 Follicular lymphoma, grade 2 2 993 -pgx:icdom-96953 Follicular lymphoma, grade 1 2 994 -pgx:icdom-96983 Follicular lymphoma, grade 3 2 995 -pgx:icdom-96993 Marginal zone B-cell lymphoma, NOS 2 996 -pgx:icdom-970-971 Mature T- and NK-cell lymphomas 1 997 -pgx:icdom-97003 Mycosis fungoides 2 998 -pgx:icdom-97013 Sezary syndrome 2 999 -pgx:icdom-97023 Mature T-cell lymphoma, NOS 2 1000 -pgx:icdom-97053 Angioimmunoblastic T-cell lymphoma 2 1001 -pgx:icdom-97083 Subcutaneous panniculitis-like T-cell lymphoma 2 1002 -pgx:icdom-97093 Cutaneous T-cell lymphoma, NOS 2 1003 -pgx:icdom-97123 Intravascular large B-cell lymphoma 2 1004 -pgx:icdom-97143 Anaplastic large cell lymphoma, T cell and Null cell type 2 1005 -pgx:icdom-97163 Hepatosplenic T-cell lymphoma 2 1006 -pgx:icdom-97173 Intestinal T-cell lymphoma 2 1007 -pgx:icdom-97183 Primary cutaneous CD30+ T-cell lymphoproliferative disorder 2 1008 -pgx:icdom-97193 NK/T-cell lymphoma, nasal and nasal-type 2 1009 -pgx:icdom-972 Precursor cell lymphoblastic lymphoma 1 1010 -pgx:icdom-97243 Systemic EBV positive T-cell lymphoproliferative disease of childhood 2 1011 -pgx:icdom-97253 Hydroa vacciniforme-like lymphoma 2 1012 -pgx:icdom-97263 Primary cutaneous gamma-delta T-cell lymphoma 2 1013 -pgx:icdom-97273 Precursor cell lymphoblastic lymphoma, NOS 2 1014 -pgx:icdom-97283 Precursor B-cell lymphoblastic lymphoma 2 1015 -pgx:icdom-97293 Precursor T-cell lymphoblastic lymphoma 2 1016 -pgx:icdom-973 Plasma cell tumors 0 1017 -pgx:icdom-97313 Plasmacytoma, NOS 2 1018 -pgx:icdom-97323 Multiple myeloma 2 1019 -pgx:icdom-97333 Plasma cell leukemia 2 1020 -pgx:icdom-97343 Plasmacytoma, extramedullary 2 1021 -pgx:icdom-97353 Plasmablastic lymphoma 2 1022 -pgx:icdom-97373 ALK positive large B-cell lymphoma 2 1023 -pgx:icdom-97383 Large B-cell lymphoma arising in HHV8-associated multicentric Castleman disease 2 1024 -pgx:icdom-974 Mast cell tumors 0 1025 -pgx:icdom-97401 Mastocytoma, NOS 2 1026 -pgx:icdom-97403 Mast cell sarcoma 2 1027 -pgx:icdom-97411 Indolent systemic mastocytosis 2 1028 -pgx:icdom-97413 Malignant mastocytosis 2 1029 -pgx:icdom-97423 Mast cell leukemia 2 1030 -pgx:icdom-975 Neoplasms of histiocytes and accessory lymphoid cells 0 1031 -pgx:icdom-97503 Malignant histiocytosis 2 1032 -pgx:icdom-97513 Langerhans cell histiocytosis, NOS 2 1033 -pgx:icdom-97553 Histiocytic sarcoma 2 1034 -pgx:icdom-97563 Langerhans cell sarcoma 2 1035 -pgx:icdom-97573 Interdigitating dendritic cell sarcoma 2 1036 -pgx:icdom-97583 Follicular dendritic cell sarcoma 2 1037 -pgx:icdom-97593 Fibroblastic reticular cell tumor 2 1038 -pgx:icdom-976 Immunoproliferative diseases 0 1039 -pgx:icdom-97603 Immunoproliferative disease, NOS 2 1040 -pgx:icdom-97613 Waldenstrom macroglobulinemia 2 1041 -pgx:icdom-97623 Heavy chain disease, NOS 2 1042 -pgx:icdom-97643 Immunoproliferative small intestinal disease 2 1043 -pgx:icdom-97651 Monoclonal gammopathy of undetermined significance 2 1044 -pgx:icdom-97661 Angiocentric immunoproliferative lesion 2 1045 -pgx:icdom-97671 Angioimmunoblastic lymphadenopathy (AIC) 2 1046 -pgx:icdom-97681 T-gamma lymphoproliferative disease 2 1047 -pgx:icdom-97691 Immunoglobulin deposition disease 2 1048 -pgx:icdom-980-994 Leukemias 0 1049 -pgx:icdom-980 Leukemias, NOS 1 1050 -pgx:icdom-98003 Leukemia, NOS 2 1051 -pgx:icdom-98013 Acute leukemia, NOS 2 1052 -pgx:icdom-98053 Acute biphenotypic leukemia 2 1053 -pgx:icdom-98063 Mixed phenotype acute leukemia with t(9;22)(q34;q11.2); BCR-ABL1 2 1054 -pgx:icdom-98073 Mixed phenotype acute leukemia with t(v;11q23); MLL rearranged 2 1055 -pgx:icdom-98083 Mixed phenotype acute leukemia, B/myeloid, NOS 2 1056 -pgx:icdom-98093 Mixed phenotype acute leukemia, T/myeloid, NOS 2 1057 -pgx:icdom-981-983 Lymphoid leukemias 1 1058 -pgx:icdom-98113 B lymphoblastic leukemia/lymphoma, NOS 2 1059 -pgx:icdom-98123 B lymphoblastic leukemia/lymphoma with t(9;22)(q34;q11.2); BCR-ABL1 2 1060 -pgx:icdom-98133 B lymphoblastic leukemia/lymphoma with t(v;11q23); MLL rearranged 2 1061 -pgx:icdom-98143 B lymphoblastic leukemia/lymphoma with t(12;21)(p13;q22); TEL-AML1 (ETV6-RUNX1) 2 1062 -pgx:icdom-98153 B lymphoblastic leukemia/lymphoma with hyperdiploidy 2 1063 -pgx:icdom-98163 B lymphoblastic leukemia/lymphoma with hypodiploidy (Hypodiploid ALL) 2 1064 -pgx:icdom-98173 B lymphoblastic leukemia/lymphoma with t(5;14)(q31;q32); IL3-IGH 2 1065 -pgx:icdom-98183 B lymphoblastic leukemia/lymphoma with t(1;19)(q23;p13.3); E2A-PBX1 (TCF3-PBX1) 2 1066 -pgx:icdom-98203 Lymphoid leukemia, NOS 2 1067 -pgx:icdom-98233 B-cell chronic lymphocytic leukemia/small lymphocytic lymphoma 2 1068 -pgx:icdom-98263 Burkitt cell leukemia 2 1069 -pgx:icdom-98273 Adult T-cell leukemia/lymphoma (HTLV-1 positive) 2 1070 -pgx:icdom-98313 T-cell large granular lymphocytic leukemia 2 1071 -pgx:icdom-98323 Prolymphocytic leukemia, NOS 2 1072 -pgx:icdom-98333 Prolymphocytic leukemia, B-cell type 2 1073 -pgx:icdom-98343 Prolymphocytic leukemia, T-cell type 2 1074 -pgx:icdom-98353 Precursor cell lymphoblastic leukemia, NOS 2 1075 -pgx:icdom-98363 Precursor B-cell lymphoblastic leukemia 2 1076 -pgx:icdom-98373 Precursor T-cell lymphoblastic leukemia 2 1077 -pgx:icdom-984-993 Myeloid leukemias 1 1078 -pgx:icdom-98403 Acute myeloid leukemia, M6 type 2 1079 -pgx:icdom-98603 Myeloid leukemia, NOS 2 1080 -pgx:icdom-98613 Acute myeloid leukemia, NOS 2 1081 -pgx:icdom-98633 Chronic myeloid leukemia, NOS 2 1082 -pgx:icdom-98653 Acute myeloid leukemia with t(6;9)(p23;q34); DEK-NUP214 2 1083 -pgx:icdom-98663 Acute promyelocytic leukemia, t(15;17)(q22;q11-12) 2 1084 -pgx:icdom-98673 Acute myelomonocytic leukemia 2 1085 -pgx:icdom-98693 Acute myeloid leukemia with inv(3)(q21;q26.2) or t(13.3)(q21;q26.2); RPN1-EVI1 2 1086 -pgx:icdom-98703 Acute basophilic leukemia 2 1087 -pgx:icdom-98713 Acute myeloid leukemia with abnormal marrow eosinophils 2 1088 -pgx:icdom-98723 Acute myeloid leukemia, minimal differentiation 2 1089 -pgx:icdom-98733 Acute myeloid leukemia without maturation 2 1090 -pgx:icdom-98743 Acute myeloid leukemia with maturation 2 1091 -pgx:icdom-98753 Chronic myelogenous leukemia, BCR/ABL positive 2 1092 -pgx:icdom-98763 Atypical chronic myeloid leukemia, BCR/ABL negative 2 1093 -pgx:icdom-98913 Acute monocytic leukemia 2 1094 -pgx:icdom-98953 Acute myeloid leukemia with myelodysplasia-related changes 2 1095 -pgx:icdom-98963 Acute myeloid leukemia, t(8;21)(q22;q22) 2 1096 -pgx:icdom-98973 Acute myeloid leukemia, 11q23 abnormalities 2 1097 -pgx:icdom-98981 Transient abnormal myelopoiesis 2 1098 -pgx:icdom-98983 Myeloid leukemia associated with Down Syndrome 2 1099 -pgx:icdom-99103 Acute megakaryoblastic leukemia 2 1100 -pgx:icdom-99113 Acute myeloid leukemia (megakaryoblastic) with t(1;22)(p13;q13); RBM15-MKL1 2 1101 -pgx:icdom-99203 Therapy related myeloid neoplasm 2 1102 -pgx:icdom-99303 Myeloid sarcoma 2 1103 -pgx:icdom-99313 Acute panmyelosis with myelofibrosis 2 1104 -pgx:icdom-994 Other leukemias 1 1105 -pgx:icdom-99403 Hairy cell leukemia 2 1106 -pgx:icdom-99453 Chronic myelomonocytic leukemia, NOS 2 1107 -pgx:icdom-99463 Juvenile myelomonocytic leukemia 2 1108 -pgx:icdom-99483 Aggressive NK-cell leukemia 2 1109 -pgx:icdom-995-996 Chronic myeloproliferative disorders 0 1110 -pgx:icdom-99503 Polycythemia vera 2 1111 -pgx:icdom-99603 Myeloproliferative neoplasm, NOS 2 1112 -pgx:icdom-99613 Primary myelofibrosis 2 1113 -pgx:icdom-99623 Essential thrombocythemia 2 1114 -pgx:icdom-99633 Chronic neutrophilic leukemia 2 1115 -pgx:icdom-99643 Chronic eosinophilic leukemia, NOS 2 1116 -pgx:icdom-99653 Myeloid and lymphoid neoplasms with PDGFRA rearrangement 2 1117 -pgx:icdom-99663 Myeloid neoplasms with PDGFRB rearrangement 2 1118 -pgx:icdom-99673 Myeloid and lymphoid neoplasms with FGFR1 abnormalities 2 1119 -pgx:icdom-997 Other hematologic disorders 0 1120 -pgx:icdom-99701 Lymphoproliferative disorder, NOS 2 1121 -pgx:icdom-99711 Post transplant lymphoproliferative disorder, NOS 2 1122 -pgx:icdom-99713 Polymorphic post transplant lymphoproliferative disorder 2 1123 -pgx:icdom-99753 Myloproliferative neoplasm, unclassifiable 2 1124 -pgx:icdom-998-999 Myelodysplastic syndromes 0 1125 -pgx:icdom-99803 Refractory anemia 2 1126 -pgx:icdom-99823 Refractory anemia with sideroblasts 2 1127 -pgx:icdom-99833 Refractory anemia with excess blasts 2 1128 -pgx:icdom-99843 Refractory anemia with excess blasts in transformation 2 1129 -pgx:icdom-99853 Refractory cytopenia with multilineage dysplasia 2 1130 -pgx:icdom-99863 Myelodysplastic syndrome with 5q deletion (5q-) syndrome 2 1131 -pgx:icdom-99873 Therapy-related myelodysplastic syndrome, NOS 2 1132 -pgx:icdom-99893 Myelodysplastic syndrome, NOS 2 1133 -pgx:icdom-99913 Refractory neutropenia 2 1134 -pgx:icdom-99923 Refractory thrombocytopenia 2 1135 diff --git a/rsrc/classificationTrees/icdot/numbered_hierarchies.tsv b/rsrc/classificationTrees/icdot/numbered_hierarchies.tsv deleted file mode 100644 index aac19d09..00000000 --- a/rsrc/classificationTrees/icdot/numbered_hierarchies.tsv +++ /dev/null @@ -1,409 +0,0 @@ -pgx:icdot-C00-C14 LIP, ORAL CAVITY AND PHARYNX 0 1 -pgx:icdot-C00 LIP 1 2 -pgx:icdot-C00.0 External upper lip 2 3 -pgx:icdot-C00.1 External lower lip 2 4 -pgx:icdot-C00.2 External lip, NOS 2 5 -pgx:icdot-C00.3 Mucosa of upper lip 2 6 -pgx:icdot-C00.4 Mucosa of lower lip 2 7 -pgx:icdot-C00.5 Mucosa of lip, NOS 2 8 -pgx:icdot-C00.6 Commissure of lip 2 9 -pgx:icdot-C00.8 Overlapping lesion of lip 2 10 -pgx:icdot-C00.9 Lip, NOS 2 11 -pgx:icdot-C01 BASE OF TONGUE 1 12 -pgx:icdot-C01.9 Base of tongue, NOS 2 13 -pgx:icdot-C02 OTHER AND UNSPECIFIED PARTS OF TONGUE 1 14 -pgx:icdot-C02.0 Dorsal surface of tongue, NOS 2 15 -pgx:icdot-C02.1 Border of tongue 2 16 -pgx:icdot-C02.2 Ventral surface of tongue, NOS 2 17 -pgx:icdot-C02.3 Anterior 2/3 of tongue, NOS 2 18 -pgx:icdot-C02.4 Lingual tonsil 2 19 -pgx:icdot-C02.8 Overlapping lesion of tongue 2 20 -pgx:icdot-C02.9 Tongue, NOS 2 21 -pgx:icdot-C03 GUM 1 22 -pgx:icdot-C03.0 Upper gum 2 23 -pgx:icdot-C03.1 Lower gum 2 24 -pgx:icdot-C03.9 Gum, NOS 2 25 -pgx:icdot-C04 FLOOR OF MOUTH 1 26 -pgx:icdot-C04.0 Anterior floor of mouth 2 27 -pgx:icdot-C04.1 Lateral floor of mouth 2 28 -pgx:icdot-C04.8 Overlapping lesion of floor of mouth 2 29 -pgx:icdot-C04.9 Floor of mouth, NOS 2 30 -pgx:icdot-C05 PALATE 1 31 -pgx:icdot-C05.0 Hard palate 2 32 -pgx:icdot-C05.1 Soft palate, NOS 2 33 -pgx:icdot-C05.2 Uvula 2 34 -pgx:icdot-C05.8 Overlapping lesion of palate 2 35 -pgx:icdot-C05.9 Palate, NOS 2 36 -pgx:icdot-C06 OTHER AND UNSPECIFIED PARTS OF MOUTH 1 37 -pgx:icdot-C06.0 Cheek mucosa 2 38 -pgx:icdot-C06.1 Vestibule of mouth 2 39 -pgx:icdot-C06.2 Retromolar area 2 40 -pgx:icdot-C06.8 Overlapping lesion of other and unspecified parts of mouth 2 41 -pgx:icdot-C06.9 Mouth, NOS 2 42 -pgx:icdot-C07 PAROTID GLAND 1 43 -pgx:icdot-C07.9 Parotid gland 2 44 -pgx:icdot-C08 OTHER AND UNSPECIFIED MAJOR SALIVARY GLANDS 1 45 -pgx:icdot-C08.0 Submandibular gland 2 46 -pgx:icdot-C08.1 Sublingual gland 2 47 -pgx:icdot-C08.8 Overlapping lesion of major salivary glands 2 48 -pgx:icdot-C08.9 Major salivary gland, NOS 2 49 -pgx:icdot-C09 TONSIL 1 50 -pgx:icdot-C09.0 Tonsillar fossa 2 51 -pgx:icdot-C09.1 Tonsillar pillar 2 52 -pgx:icdot-C09.8 Overlapping lesion of tonsil 2 53 -pgx:icdot-C09.9 Tonsil, NOS 2 54 -pgx:icdot-C10 OROPHARYNX 1 55 -pgx:icdot-C10.0 Vallecula 2 56 -pgx:icdot-C10.1 Anterior surface of epiglottis 2 57 -pgx:icdot-C10.2 Lateral wall of oropharynx 2 58 -pgx:icdot-C10.3 Posterior wall of oropharynx 2 59 -pgx:icdot-C10.4 Branchial cleft 2 60 -pgx:icdot-C10.8 Overlapping lesion of oropharynx 2 61 -pgx:icdot-C10.9 Oropharynx, NOS 2 62 -pgx:icdot-C11 NASOPHARYNX 1 63 -pgx:icdot-C11.0 Superior wall of nasopharynx 2 64 -pgx:icdot-C11.1 Posterior wall of nasopharynx 2 65 -pgx:icdot-C11.2 Lateral wall of nasopharynx 2 66 -pgx:icdot-C11.3 Anterior wall of nasopharynx 2 67 -pgx:icdot-C11.8 Overlapping lesion of nasopharynx 2 68 -pgx:icdot-C11.9 Nasopharynx, NOS 2 69 -pgx:icdot-C12 PYRIFORM SINUS 1 70 -pgx:icdot-C12.9 Pyriform sinus 2 71 -pgx:icdot-C13 HYPOPHARYNX 1 72 -pgx:icdot-C13.0 Postcricoid region 2 73 -pgx:icdot-C13.1 Hypopharyngeal aspect of aryepiglottic fold 2 74 -pgx:icdot-C13.2 Posterior wall of hypopharynx 2 75 -pgx:icdot-C13.8 Overlapping lesion of hypopharynx 2 76 -pgx:icdot-C13.9 Hypopharynx, NOS 2 77 -pgx:icdot-C14 OTHER AND ILL-DEFINED SITES IN LIP, ORAL CAVITY AND PHARYNX 1 78 -pgx:icdot-C14.0 Pharynx, NOS 2 79 -pgx:icdot-C14.2 Waldeyer ring 2 80 -pgx:icdot-C14.8 Overlapping lesion of lip, oral cavity and pharynx 2 81 -pgx:icdot-C15-C26 DIGESTIVE ORGANS 0 82 -pgx:icdot-C15 ESOPHAGUS 1 83 -pgx:icdot-C15.0 Cervical esophagus 2 84 -pgx:icdot-C15.1 Thoracic esophagus 2 85 -pgx:icdot-C15.2 Abdominal esophagus 2 86 -pgx:icdot-C15.3 Upper third of esophagus 2 87 -pgx:icdot-C15.4 Middle third of esophagus 2 88 -pgx:icdot-C15.5 Lower third of esophagus 2 89 -pgx:icdot-C15.8 Overlapping lesion of esophagus 2 90 -pgx:icdot-C15.9 Esophagus, NOS 2 91 -pgx:icdot-C16 STOMACH 1 92 -pgx:icdot-C16.0 Cardia, NOS 2 93 -pgx:icdot-C16.1 Fundus of stomach 2 94 -pgx:icdot-C16.2 Body of stomach 2 95 -pgx:icdot-C16.3 Gastric antrum 2 96 -pgx:icdot-C16.4 Pylorus 2 97 -pgx:icdot-C16.5 Lesser curvature of stomach, NOS 2 98 -pgx:icdot-C16.6 Greater curvature of stomach, NOS 2 99 -pgx:icdot-C16.8 Overlapping lesion of stomach 2 100 -pgx:icdot-C16.9 Stomach, NOS 2 101 -pgx:icdot-C17 SMALL INTESTINE 1 102 -pgx:icdot-C17.0 Duodenum 2 103 -pgx:icdot-C17.1 Jejunum 2 104 -pgx:icdot-C17.2 Ileum 2 105 -pgx:icdot-C17.3 Meckel diverticulum 2 106 -pgx:icdot-C17.8 Overlapping lesion of small intestine 2 107 -pgx:icdot-C17.9 Small intestine, NOS 2 108 -pgx:icdot-C18 COLON 1 109 -pgx:icdot-C18.0 Cecum 2 110 -pgx:icdot-C18.1 Appendix 2 111 -pgx:icdot-C18.2 Ascending colon 2 112 -pgx:icdot-C18.3 Hepatic flexure of colon 2 113 -pgx:icdot-C18.4 Transverse colon 2 114 -pgx:icdot-C18.5 Splenic flexure of colon 2 115 -pgx:icdot-C18.6 Descending colon 2 116 -pgx:icdot-C18.7 Sigmoid colon 2 117 -pgx:icdot-C18.8 Overlapping lesion of colon 2 118 -pgx:icdot-C18.9 Colon, NOS 2 119 -pgx:icdot-C19 RECTOSIGMOID JUNCTION 1 120 -pgx:icdot-C19.9 Rectosigmoid junction 2 121 -pgx:icdot-C20 RECTUM 1 122 -pgx:icdot-C20.9 Rectum, NOS 2 123 -pgx:icdot-C21 ANUS AND ANAL CANAL 1 124 -pgx:icdot-C21.0 Anus, NOS 2 125 -pgx:icdot-C21.1 Anal canal 2 126 -pgx:icdot-C21.2 Cloacogenic zone 2 127 -pgx:icdot-C21.8 Overlapping lesion of rectum, anus and anal canal 2 128 -pgx:icdot-C22 LIVER AND INTRAHEPATIC BILE DUCTS 1 129 -pgx:icdot-C22.0 Liver 2 130 -pgx:icdot-C22.1 Intrahepatic bile duct 2 131 -pgx:icdot-C23 GALLBLADDER 1 132 -pgx:icdot-C23.9 Gallbladder 2 133 -pgx:icdot-C24 OTHER AND UNSPECIFIED PARTS OF BILIARY TRACT 1 134 -pgx:icdot-C24.0 Extrahepatic bile duct 2 135 -pgx:icdot-C24.1 Ampulla of Vater 2 136 -pgx:icdot-C24.8 Overlapping lesion of biliary tract 2 137 -pgx:icdot-C24.9 Biliary tract, NOS 2 138 -pgx:icdot-C25 PANCREAS 1 139 -pgx:icdot-C25.0 Head of pancreas 2 140 -pgx:icdot-C25.1 Body of pancreas 2 141 -pgx:icdot-C25.2 Tail of pancreas 2 142 -pgx:icdot-C25.3 Pancreatic duct 2 143 -pgx:icdot-C25.4 Islets of Langerhans 2 144 -pgx:icdot-C25.7 Other specified parts of pancreas 2 145 -pgx:icdot-C25.8 Overlapping lesion of pancreas 2 146 -pgx:icdot-C25.9 Pancreas, NOS 2 147 -pgx:icdot-C26 OTHER AND ILL-DEFINED DIGESTIVE ORGANS 1 148 -pgx:icdot-C26.0 Intestinal tract, NOS 2 149 -pgx:icdot-C26.8 Overlapping lesion of digestive system 2 150 -pgx:icdot-C26.9 Gastrointestinal tract, NOS 2 151 -pgx:icdot-C30-C39 RESPIRATORY SYSTEM AND INTRATORACIC ORGANS 0 152 -pgx:icdot-C30 NASAL CAVITY AND MIDDLE EAR 1 153 -pgx:icdot-C30.0 Nasal cavity 2 154 -pgx:icdot-C30.1 Middle ear 2 155 -pgx:icdot-C31 ACCESSORY SINUSES 1 156 -pgx:icdot-C31.0 Maxillary sinus 2 157 -pgx:icdot-C31.1 Ethmoid sinus 2 158 -pgx:icdot-C31.2 Frontal sinus 2 159 -pgx:icdot-C31.3 Sphenoid sinus 2 160 -pgx:icdot-C31.8 Overlapping lesion of accessory sinuses 2 161 -pgx:icdot-C31.9 Accessory sinus, NOS 2 162 -pgx:icdot-C32 LARYNX 1 163 -pgx:icdot-C32.0 Glottis 2 164 -pgx:icdot-C32.1 Supraglottis 2 165 -pgx:icdot-C32.2 Subglottis 2 166 -pgx:icdot-C32.3 Laryngeal cartilage 2 167 -pgx:icdot-C32.8 Overlapping lesion of larynx 2 168 -pgx:icdot-C32.9 Larynx, NOS 2 169 -pgx:icdot-C33 TRACHEA 1 170 -pgx:icdot-C33.9 Trachea 2 171 -pgx:icdot-C34 BRONCHUS AND LUNG 1 172 -pgx:icdot-C34.0 Main bronchus 2 173 -pgx:icdot-C34.1 Upper lobe, lung 2 174 -pgx:icdot-C34.2 Middle lobe, lung 2 175 -pgx:icdot-C34.3 Lower lobe, lung 2 176 -pgx:icdot-C34.8 Overlapping lesion of lung 2 177 -pgx:icdot-C34.9 Lung, NOS 2 178 -pgx:icdot-C37 THYMUS 1 179 -pgx:icdot-C37.9 Thymus 2 180 -pgx:icdot-C38 HEART, MEDIASTINUM, AND PLEURA 1 181 -pgx:icdot-C38.0 Heart 2 182 -pgx:icdot-C38.1 Anterior mediastinum 2 183 -pgx:icdot-C38.2 Posterior mediastinum 2 184 -pgx:icdot-C38.3 Mediastinum, NOS 2 185 -pgx:icdot-C38.4 Pleura, NOS 2 186 -pgx:icdot-C38.8 Overlapping lesion of heart, mediastinum and pleura 2 187 -pgx:icdot-C39 OTHER AND ILL-DEFINED SITES WITHIN RESPIRATORY SYSTEM AND INTRATHORACIC ORGANS 1 188 -pgx:icdot-C39.0 Upper respiratory tract, NOS 2 189 -pgx:icdot-C39.8 Overlapping lesion of respiratory system and intrathoracic organs 2 190 -pgx:icdot-C39.9 Ill-defined sites within respiratory system 2 191 -pgx:icdot-C40-C41 BONES, JOINTS and ARTICULAR CARTILAGE 0 192 -pgx:icdot-C40 BONES, JOINTS AND ARTICULAR CARTILAGE OF LIMBS 1 193 -pgx:icdot-C40.0 Long bones of upper limb, scapula and associated joints 2 194 -pgx:icdot-C40.1 Short bones of upper limb and associated joints 2 195 -pgx:icdot-C40.2 Long bones of lower limb and associated joints 2 196 -pgx:icdot-C40.3 Short bones of lower limb and associated joints 2 197 -pgx:icdot-C40.8 Overlapping lesion of bones, joints and articular cartilage of limbs 2 198 -pgx:icdot-C40.9 Bone of limb, NOS 2 199 -pgx:icdot-C41 BONES, JOINTS AND ARTICULAR CARTILAGE OF OTHER AND UNSPECIFIED SITES 1 200 -pgx:icdot-C41.0 Bones of skull and face and associated joints 2 201 -pgx:icdot-C41.1 Mandible 2 202 -pgx:icdot-C41.2 Vertebral column 2 203 -pgx:icdot-C41.3 Rib, sternum, clavicle and associated joints 2 204 -pgx:icdot-C41.4 Pelvic bones, sacrum, coccyx and associated joints 2 205 -pgx:icdot-C41.8 Overlapping lesion of bones, joints and articular cartilage 2 206 -pgx:icdot-C41.9 Bone, NOS 2 207 -pgx:icdot-C42 HEMATOPOIETIC AND RETICULOENDOTHELIAL SYSTEMS 1 208 -pgx:icdot-C42.0 Blood 2 209 -pgx:icdot-C42.1 Bone marrow 2 210 -pgx:icdot-C42.2 Spleen 2 211 -pgx:icdot-C42.3 Reticuloendothelial system, NOS 2 212 -pgx:icdot-C42.4 Hematopoietic system, NOS 2 213 -pgx:icdot-C44 SKIN 1 214 -pgx:icdot-C44.0 Skin of lip, NOS 2 215 -pgx:icdot-C44.1 Eyelid 2 216 -pgx:icdot-C44.2 External ear 2 217 -pgx:icdot-C44.3 Skin of other and unspecified parts of face 2 218 -pgx:icdot-C44.4 Skin of scalp and neck 2 219 -pgx:icdot-C44.5 Skin of trunk 2 220 -pgx:icdot-C44.6 Skin of upper limb and shoulder 2 221 -pgx:icdot-C44.7 Skin of lower limb and hip 2 222 -pgx:icdot-C44.8 Overlapping lesion of skin 2 223 -pgx:icdot-C44.9 Skin, NOS 2 224 -pgx:icdot-C47 PERIPHERAL NERVES AND AUTONOMIC NERVOUS SYSTEM 1 225 -pgx:icdot-C47.0 Peripheral nerves and autonomic nervous system of head, face, and neck 2 226 -pgx:icdot-C47.1 Peripheral nerves and autonomic nervous system of upper limb and shoulder 2 227 -pgx:icdot-C47.2 Peripheral nerves and autonomic nervous system of lower limband hip 2 228 -pgx:icdot-C47.3 Peripheral nerves and autonomic nervous system of thorax 2 229 -pgx:icdot-C47.4 Peripheral nerves and autonomic nervous system of abdomen 2 230 -pgx:icdot-C47.5 Peripheral nerves and autonomic nervous system of pelvis 2 231 -pgx:icdot-C47.6 Peripheral nerves and autonomic nervous system of trunk, NOS 2 232 -pgx:icdot-C47.8 Overlapping lesion of peripheral nerves and autonomic nervous system 2 233 -pgx:icdot-C47.9 Autonomic nervous system, NOS 2 234 -pgx:icdot-C48 RETROPERITONEUM AND PERITONEUM 1 235 -pgx:icdot-C48.0 Retroperitoneum 2 236 -pgx:icdot-C48.1 Specified parts of peritoneum 2 237 -pgx:icdot-C48.2 Peritoneum, NOS 2 238 -pgx:icdot-C48.8 Overlapping lesion of retroperitoneum and peritoneum 2 239 -pgx:icdot-C49 CONNECTIVE, SUBCUTANEOUS AND OTHER SOFT TISSUES 1 240 -pgx:icdot-C49.0 Connective, subcutaneous and other soft tissues of head, face, and neck 2 241 -pgx:icdot-C49.1 Connective, subcutaneous and other soft tissues of upper limb and shoulder 2 242 -pgx:icdot-C49.2 Connective, subcutaneous and other soft tissues of lower limb and hip 2 243 -pgx:icdot-C49.3 Connective, subcutaneous and other soft tissues of thorax 2 244 -pgx:icdot-C49.4 Connective, subcutaneous and other soft tissues of abdomen 2 245 -pgx:icdot-C49.5 Connective, subcutaneous and other soft tissues of pelvis 2 246 -pgx:icdot-C49.6 Connective, subcutaneous and other soft tissues of trunk NOS 2 247 -pgx:icdot-C49.8 Overlapping lesion of connective, subcutaneous and other soft tissues 2 248 -pgx:icdot-C49.9 Connective, subcutaneous and other soft tissues, NOS 2 249 -pgx:icdot-C50 BREAST 1 250 -pgx:icdot-C50.0 Nipple 2 251 -pgx:icdot-C50.1 Central portion of breast 2 252 -pgx:icdot-C50.2 Upper-inner quadrant of breast 2 253 -pgx:icdot-C50.3 Lower-inner quadrant of breast 2 254 -pgx:icdot-C50.4 Upper-outer quadrant of breast 2 255 -pgx:icdot-C50.5 Lower-outer quadrant of breast 2 256 -pgx:icdot-C50.6 Axillary tail of breast 2 257 -pgx:icdot-C50.8 Overlapping lesion of breast 2 258 -pgx:icdot-C50.9 Breast, NOS 2 259 -pgx:icdot-C51-C58 FEMALE GENITAL ORGANS 0 260 -pgx:icdot-C51 VULVA 1 261 -pgx:icdot-C51.0 Labium majus 2 262 -pgx:icdot-C51.1 Labium minus 2 263 -pgx:icdot-C51.2 Clitoris 2 264 -pgx:icdot-C51.8 Overlapping lesion of vulva 2 265 -pgx:icdot-C51.9 Vulva, NOS 2 266 -pgx:icdot-C52 VAGINA 1 267 -pgx:icdot-C52.9 Vagina, NOS 2 268 -pgx:icdot-C53 CERVIX UTERI 1 269 -pgx:icdot-C53.0 Endocervix 2 270 -pgx:icdot-C53.1 Exocervix 2 271 -pgx:icdot-C53.8 Overlapping lesion of cervix uteri 2 272 -pgx:icdot-C53.9 Cervix uteri 2 273 -pgx:icdot-C54 CORPUS UTERI 1 274 -pgx:icdot-C54.0 Isthmus uteri 2 275 -pgx:icdot-C54.1 Endometrium 2 276 -pgx:icdot-C54.2 Myometrium 2 277 -pgx:icdot-C54.3 Fundus uteri 2 278 -pgx:icdot-C54.8 Overlapping lesion of corpus uteri 2 279 -pgx:icdot-C54.9 Corpus uteri 2 280 -pgx:icdot-C55 UTERUS, NOS 1 281 -pgx:icdot-C55.9 Uterus, NOS 2 282 -pgx:icdot-C56 OVARY 1 283 -pgx:icdot-C56.9 Ovary 2 284 -pgx:icdot-C57 OTHER AND UNSPECIFIED FEMALE GENITAL ORGANS 1 285 -pgx:icdot-C57.0 Fallopian tube 2 286 -pgx:icdot-C57.1 Broad ligament 2 287 -pgx:icdot-C57.2 Round ligament 2 288 -pgx:icdot-C57.3 Parametrium 2 289 -pgx:icdot-C57.4 Uterine adnexa 2 290 -pgx:icdot-C57.7 Other specified parts of female genital organs 2 291 -pgx:icdot-C57.8 Overlapping lesion of female genital organs 2 292 -pgx:icdot-C57.9 Female genital tract, NOS 2 293 -pgx:icdot-C58 PLACENTA 1 294 -pgx:icdot-C58.9 Placenta 2 295 -pgx:icdot-C60-C63 MALE GENITAL ORGANS 0 296 -pgx:icdot-C60 PENIS 1 297 -pgx:icdot-C60.0 Prepuce 2 298 -pgx:icdot-C60.1 Glans penis 2 299 -pgx:icdot-C60.2 Body of penis 2 300 -pgx:icdot-C60.8 Overlapping lesion of penis 2 301 -pgx:icdot-C60.9 Penis, NOS 2 302 -pgx:icdot-C61 PROSTATE GLAND 1 303 -pgx:icdot-C61.9 Prostate gland 2 304 -pgx:icdot-C62 TESTIS 1 305 -pgx:icdot-C62.0 Undescended testis 2 306 -pgx:icdot-C62.1 Descended testis 2 307 -pgx:icdot-C62.9 Testis, NOS 2 308 -pgx:icdot-C63 OTHER AND UNSPECIFIED MALE GENITAL ORGANS 1 309 -pgx:icdot-C63.0 Epididymis 2 310 -pgx:icdot-C63.1 Spermatic cord 2 311 -pgx:icdot-C63.2 Scrotum, NOS 2 312 -pgx:icdot-C63.7 Other specified parts of male genital organs 2 313 -pgx:icdot-C63.8 Overlapping lesion of male genital organs 2 314 -pgx:icdot-C63.9 Male genital organs, NOS 2 315 -pgx:icdot-C64-C68 URINARY TRACT 0 316 -pgx:icdot-C64 KIDNEY 1 317 -pgx:icdot-C64.9 Kidney, NOS 2 318 -pgx:icdot-C65 RENAL PELVIS 1 319 -pgx:icdot-C65.9 Renal pelvis 2 320 -pgx:icdot-C66 URETER 1 321 -pgx:icdot-C66.9 Ureter 2 322 -pgx:icdot-C67 BLADDER 1 323 -pgx:icdot-C67.0 Trigone of bladder 2 324 -pgx:icdot-C67.1 Dome of bladder 2 325 -pgx:icdot-C67.2 Lateral wall of bladder 2 326 -pgx:icdot-C67.3 Anterior wall of bladder 2 327 -pgx:icdot-C67.4 Posterior wall of bladder 2 328 -pgx:icdot-C67.5 Bladder neck 2 329 -pgx:icdot-C67.6 Ureteric orifice 2 330 -pgx:icdot-C67.7 Urachus 2 331 -pgx:icdot-C67.8 Overlapping lesion of bladder 2 332 -pgx:icdot-C67.9 Bladder, NOS 2 333 -pgx:icdot-C68 OTHER AND UNSPECIFIED URINARY ORGANS 1 334 -pgx:icdot-C68.0 Urethra 2 335 -pgx:icdot-C68.1 Paraurethral gland 2 336 -pgx:icdot-C68.8 Overlapping lesion of urinary organs 2 337 -pgx:icdot-C68.9 Urinary system, NOS 2 338 -pgx:icdot-C69-C72 EYE, BRAIN AND OTHER PARTS OF CENTRAL NERVOUS SYSTEM 0 339 -pgx:icdot-C69 EYE AND ADNEXA 1 340 -pgx:icdot-C69.0 Conjunctiva 2 341 -pgx:icdot-C69.1 Cornea, NOS 2 342 -pgx:icdot-C69.2 Retina 2 343 -pgx:icdot-C69.3 Choroid 2 344 -pgx:icdot-C69.4 Ciliary body 2 345 -pgx:icdot-C69.5 Lacrimal gland 2 346 -pgx:icdot-C69.6 Orbit, NOS 2 347 -pgx:icdot-C69.8 Overlapping lesion of eye and adnexa 2 348 -pgx:icdot-C69.9 Eye, NOS 2 349 -pgx:icdot-C70 MENINGES 1 350 -pgx:icdot-C70.0 Cerebral meninges 2 351 -pgx:icdot-C70.1 Spinal meninges 2 352 -pgx:icdot-C70.9 Meninges, NOS 2 353 -pgx:icdot-C71 BRAIN 1 354 -pgx:icdot-C71.0 Cerebrum 2 355 -pgx:icdot-C71.1 Frontal lobe 2 356 -pgx:icdot-C71.2 Temporal lobe 2 357 -pgx:icdot-C71.3 Parietal lobe 2 358 -pgx:icdot-C71.4 Occipital lobe 2 359 -pgx:icdot-C71.5 Ventricle, NOS 2 360 -pgx:icdot-C71.6 Cerebellum, NOS 2 361 -pgx:icdot-C71.7 Brain stem 2 362 -pgx:icdot-C71.8 Overlapping lesion of brain 2 363 -pgx:icdot-C71.9 Brain, NOS 2 364 -pgx:icdot-C72 SPINAL CORD, CRANIAL NERVES, AND OTHER PARTS OF CENTRAL NERVOUS SYSTEM 1 365 -pgx:icdot-C72.0 Spinal cord 2 366 -pgx:icdot-C72.1 Cauda equina 2 367 -pgx:icdot-C72.2 Olfactory nerve 2 368 -pgx:icdot-C72.3 Optic nerve 2 369 -pgx:icdot-C72.4 Acoustic nerve 2 370 -pgx:icdot-C72.5 Cranial nerve, NOS 2 371 -pgx:icdot-C72.8 Overlapping lesion of brain and central nervous system 2 372 -pgx:icdot-C72.9 Nervous system, NOS 2 373 -pgx:icdot-C73-C75 THYROID AND OTHER ENDOCRINE GLANDS 0 374 -pgx:icdot-C73 THYROID GLAND 1 375 -pgx:icdot-C73.9 Thyroid gland 2 376 -pgx:icdot-C74 ADRENAL GLAND 1 377 -pgx:icdot-C74.0 Cortex of adrenal gland 2 378 -pgx:icdot-C74.1 Medulla of adrenal gland 2 379 -pgx:icdot-C74.9 Adrenal gland, NOS 2 380 -pgx:icdot-C75 OTHER ENDOCRINE GLANDS AND RELATED STRUCTURES 1 381 -pgx:icdot-C75.0 Parathyroid gland 2 382 -pgx:icdot-C75.1 Pituitary gland 2 383 -pgx:icdot-C75.2 Craniopharyngeal duct 2 384 -pgx:icdot-C75.3 Pineal gland 2 385 -pgx:icdot-C75.4 Carotid body 2 386 -pgx:icdot-C75.5 Aortic body and other paraganglia 2 387 -pgx:icdot-C75.8 Overlapping lesion of endocrine glands and related structures 2 388 -pgx:icdot-C75.9 Endocrine gland, NOS 2 389 -pgx:icdot-C76 OTHER AND ILL-DEFINED SITES 1 390 -pgx:icdot-C76.0 Head, face or neck, NOS 2 391 -pgx:icdot-C76.1 Thorax, NOS 2 392 -pgx:icdot-C76.2 Abdomen, NOS 2 393 -pgx:icdot-C76.3 Pelvis, NOS 2 394 -pgx:icdot-C76.4 Upper limb, NOS 2 395 -pgx:icdot-C76.5 Lower limb, NOS 2 396 -pgx:icdot-C76.7 Other ill-defined sites 2 397 -pgx:icdot-C76.8 Overlapping lesion of ill-defined sites 2 398 -pgx:icdot-C77 LYMPH NODES 1 399 -pgx:icdot-C77.0 Lymph nodes of head, face and neck 2 400 -pgx:icdot-C77.1 Intrathoracic lymph nodes 2 401 -pgx:icdot-C77.2 Intra-abdominal lymph nodes 2 402 -pgx:icdot-C77.3 Lymph nodes of axilla or arm 2 403 -pgx:icdot-C77.4 Lymph nodes of inguinal region or leg 2 404 -pgx:icdot-C77.5 Pelvic lymph nodes 2 405 -pgx:icdot-C77.8 Lymph nodes of multiple regions 2 406 -pgx:icdot-C77.9 Lymph node, NOS 2 407 -pgx:icdot-C80 UNKNOWN PRIMARY SITE 1 408 -pgx:icdot-C80.9 Unknown primary site 2 409 diff --git a/rsrc/classificationTrees/pgxcohorts/numbered_hierarchies.tsv b/rsrc/classificationTrees/pgxcohorts/numbered_hierarchies.tsv deleted file mode 100644 index 2240045b..00000000 --- a/rsrc/classificationTrees/pgxcohorts/numbered_hierarchies.tsv +++ /dev/null @@ -1,10 +0,0 @@ -pgx:cohort-2021progenetix Version at Progenetix Update 2021 0 1 -pgx:cohort-DIPG DIPG samples 0 2 -pgx:cohort-TCGA TCGA samples 0 3 -pgx:cohort-TCGAcancers TCGA Cancer samples 0 4 -pgx:cohort-arraymap arrayMap collection 0 5 -pgx:cohort-carriocordo2021heterogeneity Carrio-Cordo and Baudis - Genomic Heterogeneity in Cancer Types (2021) 0 6 -pgx:cohort-celllines Cancer cell lines 0 7 -pgx:cohort-excluded Excluded samples 0 8 -pgx:cohort-gao2021signatures Gao and Baudis - Cancer CNV Signatures (2021) 0 9 -pgx:cohort-oneKgenomes 1000 genomes reference samples 0 10 diff --git a/rsrc/templates/analysis_template.tsv b/rsrc/templates/analysis_template.tsv deleted file mode 100644 index 16661b33..00000000 --- a/rsrc/templates/analysis_template.tsv +++ /dev/null @@ -1,34 +0,0 @@ -analysis_id biosample_id individual_id analysis_operation_id analysis_operation_label experiment_id series_id platform_id platform_label data_provenance calling_pipeline analysis_legacy_id -testingana-lybel87b testingbios-lybel87b testingind-lybel87b -testingana-lybel87c testingbios-lybel87c testingind-lybel87c -testingana-lybel87d testingbios-lybel87d testingind-lybel87d -testingana-lybel87f testingbios-lybel87f testingind-lybel87f -testingana-lybel87g testingbios-lybel87g testingind-lybel87g -testingana-lybel87i testingbios-lybel87i testingind-lybel87i -testingana-lybel87j testingbios-lybel87j testingind-lybel87j -testingana-lybel87k testingbios-lybel87k testingind-lybel87k -testingana-lybel87l testingbios-lybel87l testingind-lybel87l -testingana-lybel87n testingbios-lybel87n testingind-lybel87n -testingana-lybel87o testingbios-lybel87o testingind-lybel87o -testingana-lybel87q testingbios-lybel87q testingind-lybel87q -testingana-lybel87r testingbios-lybel87r testingind-lybel87r -testingana-lybel87s testingbios-lybel87s testingind-lybel87s -testingana-lybel87u testingbios-lybel87u testingind-lybel87u -testingana-lybel87v testingbios-lybel87v testingind-lybel87v -testingana-lybel87w testingbios-lybel87w testingind-lybel87w -testingana-lybel87y testingbios-lybel87y testingind-lybel87y -testingana-lybel87z testingbios-lybel87z testingind-lybel87z -testingana-lybel881 testingbios-lybel881 testingind-lybel881 -testingana-lybel882 testingbios-lybel882 testingind-lybel882 -testingana-lybel884 testingbios-lybel884 testingind-lybel884 -testingana-lybel885 testingbios-lybel885 testingind-lybel885 -testingana-lybel886 testingbios-lybel886 testingind-lybel886 -testingana-lybel888 testingbios-lybel888 testingind-lybel888 -testingana-lybel889 testingbios-lybel889 testingind-lybel889 -testingana-lybel88a testingbios-lybel88a testingind-lybel88a -testingana-lybel88c testingbios-lybel88c testingind-lybel88c -testingana-lybel88d testingbios-lybel88d testingind-lybel88d -testingana-lybel88f testingbios-lybel88f testingind-lybel88f -testingana-lybel88h testingbios-lybel88h testingind-lybel88h -testingana-lybel88i testingbios-lybel88i testingind-lybel88i -testingana-lybel88k testingbios-lybel88k testingind-lybel88k \ No newline at end of file diff --git a/rsrc/templates/biosample_template.tsv b/rsrc/templates/biosample_template.tsv deleted file mode 100644 index 719bb018..00000000 --- a/rsrc/templates/biosample_template.tsv +++ /dev/null @@ -1,34 +0,0 @@ -biosample_id individual_id notes histological_diagnosis_id histological_diagnosis_label pathological_stage_id pathological_stage_label biosample_status_id biosample_status_label sample_origin_type_id sample_origin_type_label sampled_tissue_id sampled_tissue_label tnm_id tnm_label stage_id stage_label tumor_grade_id tumor_grade_label age_iso biosample_label icdo_morphology_id icdo_morphology_label icdo_topography_id icdo_topography_label pubmed_id pubmed_label cellosaurus_id cellosaurus_label cbioportal_id cbioportal_label tcgaproject_id tcgaproject_label cohort_ids biosample_legacy_id geoprov_city geoprov_country geoprov_iso_alpha3 geoprov_long_lat group_id group_label cnv_fraction cnv_del_fraction cnv_dup_fraction -testingbios-lybel87b testingind-lybel87b -testingbios-lybel87c testingind-lybel87c -testingbios-lybel87d testingind-lybel87d -testingbios-lybel87f testingind-lybel87f -testingbios-lybel87g testingind-lybel87g -testingbios-lybel87i testingind-lybel87i -testingbios-lybel87j testingind-lybel87j -testingbios-lybel87k testingind-lybel87k -testingbios-lybel87l testingind-lybel87l -testingbios-lybel87n testingind-lybel87n -testingbios-lybel87o testingind-lybel87o -testingbios-lybel87q testingind-lybel87q -testingbios-lybel87r testingind-lybel87r -testingbios-lybel87s testingind-lybel87s -testingbios-lybel87u testingind-lybel87u -testingbios-lybel87v testingind-lybel87v -testingbios-lybel87w testingind-lybel87w -testingbios-lybel87y testingind-lybel87y -testingbios-lybel87z testingind-lybel87z -testingbios-lybel881 testingind-lybel881 -testingbios-lybel882 testingind-lybel882 -testingbios-lybel884 testingind-lybel884 -testingbios-lybel885 testingind-lybel885 -testingbios-lybel886 testingind-lybel886 -testingbios-lybel888 testingind-lybel888 -testingbios-lybel889 testingind-lybel889 -testingbios-lybel88a testingind-lybel88a -testingbios-lybel88c testingind-lybel88c -testingbios-lybel88d testingind-lybel88d -testingbios-lybel88f testingind-lybel88f -testingbios-lybel88h testingind-lybel88h -testingbios-lybel88i testingind-lybel88i -testingbios-lybel88k testingind-lybel88k \ No newline at end of file diff --git a/rsrc/templates/genomicVariant_template.tsv b/rsrc/templates/genomicVariant_template.tsv deleted file mode 100644 index 3527425f..00000000 --- a/rsrc/templates/genomicVariant_template.tsv +++ /dev/null @@ -1 +0,0 @@ -variant_id variant_internal_id analysis_id biosample_id individual_id sequence_id reference_name start end variant_state_id variant_state_label reference_sequence sequence annotation_derived aminoacid_changes genomic_hgvs_id var_length variant_fusion_id log2 \ No newline at end of file diff --git a/rsrc/templates/individual_template.tsv b/rsrc/templates/individual_template.tsv deleted file mode 100644 index 60a251a3..00000000 --- a/rsrc/templates/individual_template.tsv +++ /dev/null @@ -1,34 +0,0 @@ -individual_id sex_id sex_label age_iso age_days data_use_conditions_id data_use_conditions_label histological_diagnosis_id histological_diagnosis_label index_disease_notes index_disease_followup_time index_disease_followup_state_id index_disease_followup_state_label auxiliary_disease_id auxiliary_disease_label auxiliary_disease_notes cell_line_donation_id cell_line_donation_label individual_legacy_id -testingind-lybel87b -testingind-lybel87c -testingind-lybel87d -testingind-lybel87f -testingind-lybel87g -testingind-lybel87i -testingind-lybel87j -testingind-lybel87k -testingind-lybel87l -testingind-lybel87n -testingind-lybel87o -testingind-lybel87q -testingind-lybel87r -testingind-lybel87s -testingind-lybel87u -testingind-lybel87v -testingind-lybel87w -testingind-lybel87y -testingind-lybel87z -testingind-lybel881 -testingind-lybel882 -testingind-lybel884 -testingind-lybel885 -testingind-lybel886 -testingind-lybel888 -testingind-lybel889 -testingind-lybel88a -testingind-lybel88c -testingind-lybel88d -testingind-lybel88f -testingind-lybel88h -testingind-lybel88i -testingind-lybel88k \ No newline at end of file diff --git a/rsrc/templates/metadata_template.tsv b/rsrc/templates/metadata_template.tsv deleted file mode 100644 index a534842f..00000000 --- a/rsrc/templates/metadata_template.tsv +++ /dev/null @@ -1 +0,0 @@ -biosample_id individual_id notes histological_diagnosis_id histological_diagnosis_label pathological_stage_id pathological_stage_label biosample_status_id biosample_status_label sample_origin_type_id sample_origin_type_label sampled_tissue_id sampled_tissue_label tnm_id tnm_label stage_id stage_label tumor_grade_id tumor_grade_label age_iso biosample_label icdo_morphology_id icdo_morphology_label icdo_topography_id icdo_topography_label pubmed_id pubmed_label cellosaurus_id cellosaurus_label cbioportal_id cbioportal_label tcgaproject_id tcgaproject_label cohort_ids biosample_legacy_id geoprov_city geoprov_country geoprov_iso_alpha3 geoprov_long_lat group_id group_label cnv_fraction cnv_del_fraction cnv_dup_fraction sex_id sex_label age_days data_use_conditions_id data_use_conditions_label index_disease_notes index_disease_followup_time index_disease_followup_state_id index_disease_followup_state_label auxiliary_disease_id auxiliary_disease_label auxiliary_disease_notes cell_line_donation_id cell_line_donation_label individual_legacy_id analysis_id analysis_operation_id analysis_operation_label experiment_id series_id platform_id platform_label data_provenance calling_pipeline analysis_legacy_id diff --git a/housekeepers/config/relabel.tsv b/tmp/relabel.tsv similarity index 100% rename from housekeepers/config/relabel.tsv rename to tmp/relabel.tsv